diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..31fc5973c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,54 @@ +--- +name: Bug Report +about: You're experiencing an issue with Consul that is different than the documented behavior. + +--- + +When filing a bug, please include the following headings if +possible. Any example text in this template can be deleted. + +#### Overview of the Issue + +A paragraph or two about the issue you're experiencing. + +#### Reproduction Steps + +Steps to reproduce this issue, eg: + +1. Create a cluster with n client nodes n and n server nodes +1. Run `curl ...` +1. View error + +### Consul info for both Client and Server + +
+ Client info + +``` +output from client 'consul info' command here +``` + +
+ +
+ Server info + +``` +output from server 'consul info' command here +``` + +
+ +### Operating system and Environment details + +OS, Architecture, and any other information you can provide +about the environment. + +### Log Fragments + +Include appropriate Client or Server log fragments. +If the log is longer than a few dozen lines, please +include the URL to the [gist](https://gist.github.com/) +of the log instead of posting it in the issue. + +Use `-log-level=TRACE` on the client and server to capture the maximum log detail. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..fb9b6b4ef --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,15 @@ +--- +name: Feature Request +about: If you have something you think Consul could improve or add support for. + +--- + +Please search the existing issues for relevant feature requests, and use the reaction feature (https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to add upvotes to pre-existing requests. + +#### Feature Description + +A written overview of the feature. + +#### Use Case(s) + +Any relevant use-cases that you see. diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 000000000..d85f76d9a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,11 @@ +--- +name: Question +about: If you have a question, please check out our other community resources instead of opening an issue. + +--- + +Issues on GitHub are intended to be related to bugs or feature requests, so we recommend using our other community resources instead of asking here. + +- [FAQ (Frequently asked questions)](https://www.consul.io/docs/faq.html) +- [Consul Guides](https://www.consul.io/docs/guides/index.html) +- Any other questions can be sent to the [consul mailing list](https://www.consul.io/community.html) diff --git a/.github/ISSUE_TEMPLATE/ui_issues.md b/.github/ISSUE_TEMPLATE/ui_issues.md new file mode 100644 index 000000000..edac9bf2d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ui_issues.md @@ -0,0 +1,19 @@ +--- +name: Web UI Feedback +about: You have usage feedback for either version of the web UI + +--- + +**Old UI or New UI** +If you're using Consul 1.1.0 or later, you can use the new UI with the change of +an environment variable. Let us know which UI you're using so that we can help. + +**Describe the problem you're having** +A clear and concise description of what could be better. If you have screenshots +of a bug, place them here. + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Share inspiration** +How have you seen this problem solved well in other UIs? diff --git a/.gitignore b/.gitignore index 70c75111b..f373cf40e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ *.swp *.test .DS_Store +.fseventsd .vagrant/ /pkg Thumbs.db diff --git a/CHANGELOG.md b/CHANGELOG.md index 80adca4b9..7a5dfd551 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,54 @@ -## (UNRELEASED) +## UNRELEASED + +FEATURES: + +* dns: Enable PTR record lookups for services with IPs that have no registered node [[PR-4083](https://github.com/hashicorp/consul/pull/4083)] + +IMPROVEMENTS: + +* agent: A Consul user-agent string is now sent to providers when making retry-join requests [GH-4013](https://github.com/hashicorp/consul/pull/4013) + +BUG FIXES: + +* agent: Fixed an issue where watches were being duplicated on reload. [[GH-4179](https://github.com/hashicorp/consul/issues/4179)] +* agent: Fixed an issue with Agent watches on a HTTPS only agent would fail to use TLS. [[GH-4076](https://github.com/hashicorp/consul/issues/4076)] +* agent: Fixed bug that would cause unnecessary and frequent logging yamux keepalives [[GH-3040](https://github.com/hashicorp/consul/issues/3040)] +* dns: Re-enable full DNS compression [[GH-4071](https://github.com/hashicorp/consul/issues/4071)] + +## 1.1.0 (May 11, 2018) + +FEATURES: + +* UI: The web UI has been completely redesigned and rebuilt and is in an opt-in beta period. +Setting the `CONSUL_UI_BETA` environment variable to `1` or `true` will replace the existing UI +with the new one. The existing UI will be deprecated and removed in a future release. [[GH-4086](https://github.com/hashicorp/consul/pull/4086)] +* api: Added support for Prometheus client format in metrics endpoint with `?format=prometheus` (see [docs](https://www.consul.io/api/agent.html#view-metrics)) [[GH-4014](https://github.com/hashicorp/consul/issues/4014)] +* agent: New Cloud Auto-join provider: Joyent Triton. [[GH-4108](https://github.com/hashicorp/consul/pull/4108)] +* agent: (Consul Enterprise) Implemented license management with license propagation within a datacenter. + +BREAKING CHANGES: + +* agent: The following previously deprecated fields and config options have been removed [[GH-4097](https://github.com/hashicorp/consul/pull/4097)]: + - `CheckID` has been removed from config file check definitions (use `id` instead). + - `script` has been removed from config file check definitions (use `args` instead). + - `enableTagOverride` is no longer valid in service definitions (use `enable_tag_override` instead). + - The [deprecated set of metric names](https://consul.io/docs/upgrade-specific.html#metric-names-updated) (beginning with `consul.consul.`) has been removed along with the `enable_deprecated_names` option from the metrics configuration. + +IMPROVEMENTS: + +* agent: Improve DNS performance on large clusters [[GH-4036](https://github.com/hashicorp/consul/issues/4036)] +* agent: `start_join`, `start_join_wan`, `retry_join`, `retry_join_wan` config params now all support go-sockaddr templates [[GH-4102](https://github.com/hashicorp/consul/pull/4102)] +* server: Added new configuration options `raft_snapshot_interval` and `raft_snapshot_threshold` to allow operators to configure how often servers take raft snapshots. The default values for these have been tuned for large and busy clusters with high write load. [[GH-4105](https://github.com/hashicorp/consul/pull/4105/)] + +BUG FIXES: + +* agent: Only call signal.Notify once during agent startup [[PR-4024](https://github.com/hashicorp/consul/pull/4024)] +* agent: Add support for the new Service Meta field in agent config [[GH-4045](https://github.com/hashicorp/consul/issues/4045)] +* api: Add support for the new Service Meta field in API client [[GH-4045](https://github.com/hashicorp/consul/issues/4045)] +* agent: Updated serf library for two bug fixes - allow enough time for leave intents to propagate [[GH-510](https://github.com/hashicorp/serf/pull/510)] and preventing a deadlock [[GH-507](https://github.com/hashicorp/serf/pull/510)] +* agent: When node-level checks (e.g. maintenance mode) were deleted, some watchers currently in between blocking calls may have missed the change in index. See [[GH-3970](https://github.com/hashicorp/consul/pull/3970)] + +## 1.0.7 (April 13, 2018) IMPROVEMENTS: @@ -13,7 +63,9 @@ IMPROVEMENTS: * dns: Introduced a new config param to limit the number of A/AAAA records returned. [[GH-3940](https://github.com/hashicorp/consul/issues/3940)] * dns: Upgrade vendored DNS library to pick up bugfixes and improvements. [[GH-3978](https://github.com/hashicorp/consul/issues/3978)] * server: Updated yamux library to pick up a performance improvement. [[GH-3982](https://github.com/hashicorp/consul/issues/3982)] +* server: Add near=\_ip support for prepared queries [[GH-3798](https://github.com/hashicorp/consul/issues/3798)] * api: Add support for GZIP compression in HTTP responses. [[GH-3687](https://github.com/hashicorp/consul/issues/3687)] +* api: Add `IgnoreCheckIDs` to Prepared Query definition to allow temporarily bypassing faulty health checks [[GH-3727](https://github.com/hashicorp/consul/issues/3727)] BUG FIXES: diff --git a/GNUmakefile b/GNUmakefile index 81fc1a91c..bebe8bce5 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -121,8 +121,7 @@ ui: # also run as part of the release build script when it verifies that there are no # changes to the UI assets that aren't checked in. static-assets: - @go-bindata-assetfs -pkg agent -prefix pkg ./pkg/web_ui/... - @mv bindata_assetfs.go agent/ + @go-bindata-assetfs -pkg agent -prefix pkg -o agent/bindata_assetfs.go ./pkg/web_ui/... $(MAKE) format tools: diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md deleted file mode 100644 index 9729186aa..000000000 --- a/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,35 +0,0 @@ -If you have a question, please direct it to the -[consul mailing list](https://www.consul.io/community.html) if it hasn't been -addressed in either the [FAQ](https://www.consul.io/docs/faq.html) or in one -of the [Consul Guides](https://www.consul.io/docs/guides/index.html). - -When filing a bug, please include the following: - -### Description of the Issue (and unexpected/desired result) - -### Reproduction steps - -### `consul version` for both Client and Server -Client: `[client version here]` -Server: `[server version here]` - -### `consul info` for both Client and Server -Client: -``` -[Client `consul info` here] -``` - -Server: -``` -[Server `consul info` here] -``` - -### Operating system and Environment details - -### Log Fragments or Link to [gist](https://gist.github.com/) - -Include appropriate Client or Server log fragments. If the log is longer -than a few dozen lines, please include the URL to the -[gist](https://gist.github.com/). - -TIP: Use `-log-level=TRACE` on the client and server to capture the maximum log detail. diff --git a/agent/acl.go b/agent/acl.go index 4245c53a0..0bf4180eb 100644 --- a/agent/acl.go +++ b/agent/acl.go @@ -143,11 +143,9 @@ func (m *aclManager) lookupACL(a *Agent, id string) (acl.ACL, error) { cached = raw.(*aclCacheEntry) } if cached != nil && time.Now().Before(cached.Expires) { - metrics.IncrCounter([]string{"consul", "acl", "cache_hit"}, 1) metrics.IncrCounter([]string{"acl", "cache_hit"}, 1) return cached.ACL, nil } - metrics.IncrCounter([]string{"consul", "acl", "cache_miss"}, 1) metrics.IncrCounter([]string{"acl", "cache_miss"}, 1) // At this point we might have a stale cached ACL, or none at all, so diff --git a/agent/agent.go b/agent/agent.go index caf515084..6d9f80252 100644 --- a/agent/agent.go +++ b/agent/agent.go @@ -74,6 +74,7 @@ type delegate interface { Shutdown() error Stats() map[string]map[string]string ReloadConfig(config *consul.Config) error + enterpriseDelegate } // notifier is called after a successful JoinLAN. @@ -647,14 +648,19 @@ func (a *Agent) reloadWatches(cfg *config.RuntimeConfig) error { // Determine the primary http(s) endpoint. var netaddr net.Addr + https := false if len(cfg.HTTPAddrs) > 0 { netaddr = cfg.HTTPAddrs[0] } else { netaddr = cfg.HTTPSAddrs[0] + https = true } addr := netaddr.String() if netaddr.Network() == "unix" { addr = "unix://" + addr + https = false + } else if https { + addr = "https://" + addr } // Fire off a goroutine for each new watch plan. @@ -670,7 +676,19 @@ func (a *Agent) reloadWatches(cfg *config.RuntimeConfig) error { wp.Handler = makeHTTPWatchHandler(a.LogOutput, httpConfig) } wp.LogOutput = a.LogOutput - if err := wp.Run(addr); err != nil { + + config := api.DefaultConfig() + if https { + if a.config.CAPath != "" { + config.TLSConfig.CAPath = a.config.CAPath + } + if a.config.CAFile != "" { + config.TLSConfig.CAFile = a.config.CAFile + } + config.TLSConfig.Address = addr + } + + if err := wp.RunWithConfig(addr, config); err != nil { a.logger.Printf("[ERR] agent: Failed to run watch: %v", err) } }(wp) @@ -764,6 +782,12 @@ func (a *Agent) consulConfig() (*consul.Config, error) { if a.config.RaftProtocol != 0 { base.RaftConfig.ProtocolVersion = raft.ProtocolVersion(a.config.RaftProtocol) } + if a.config.RaftSnapshotThreshold != 0 { + base.RaftConfig.SnapshotThreshold = uint64(a.config.RaftSnapshotThreshold) + } + if a.config.RaftSnapshotInterval != 0 { + base.RaftConfig.SnapshotInterval = a.config.RaftSnapshotInterval + } if a.config.ACLMasterToken != "" { base.ACLMasterToken = a.config.ACLMasterToken } @@ -1845,7 +1869,6 @@ func (a *Agent) AddCheck(check *structs.HealthCheck, chkType *structs.CheckType, CheckID: check.CheckID, DockerContainerID: chkType.DockerContainerID, Shell: chkType.Shell, - Script: chkType.Script, ScriptArgs: chkType.ScriptArgs, Interval: chkType.Interval, Logger: a.logger, @@ -1876,7 +1899,6 @@ func (a *Agent) AddCheck(check *structs.HealthCheck, chkType *structs.CheckType, monitor := &checks.CheckMonitor{ Notify: a.State, CheckID: check.CheckID, - Script: chkType.Script, ScriptArgs: chkType.ScriptArgs, Interval: chkType.Interval, Timeout: chkType.Timeout, diff --git a/agent/agent_endpoint.go b/agent/agent_endpoint.go index 0e2b4b480..8d7728f1c 100644 --- a/agent/agent_endpoint.go +++ b/agent/agent_endpoint.go @@ -19,6 +19,8 @@ import ( "github.com/hashicorp/logutils" "github.com/hashicorp/serf/coordinate" "github.com/hashicorp/serf/serf" + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promhttp" ) type Self struct { @@ -75,6 +77,14 @@ func (s *HTTPServer) AgentSelf(resp http.ResponseWriter, req *http.Request) (int }, nil } +// enablePrometheusOutput will look for Prometheus mime-type or format Query parameter the same way as Nomad +func enablePrometheusOutput(req *http.Request) bool { + if format := req.URL.Query().Get("format"); format == "prometheus" { + return true + } + return false +} + func (s *HTTPServer) AgentMetrics(resp http.ResponseWriter, req *http.Request) (interface{}, error) { // Fetch the ACL token, if any, and enforce agent policy. var token string @@ -86,7 +96,21 @@ func (s *HTTPServer) AgentMetrics(resp http.ResponseWriter, req *http.Request) ( if rule != nil && !rule.AgentRead(s.agent.config.NodeName) { return nil, acl.ErrPermissionDenied } + if enablePrometheusOutput(req) { + if s.agent.config.TelemetryPrometheusRetentionTime < 1 { + resp.WriteHeader(http.StatusUnsupportedMediaType) + fmt.Fprint(resp, "Prometheus is not enable since its retention time is not positive") + return nil, nil + } + handlerOptions := promhttp.HandlerOpts{ + ErrorLog: s.agent.logger, + ErrorHandling: promhttp.ContinueOnError, + } + handler := promhttp.HandlerFor(prometheus.DefaultGatherer, handlerOptions) + handler.ServeHTTP(resp, req) + return nil, nil + } return s.agent.MemSink.DisplayMetrics(resp, req) } @@ -131,9 +155,18 @@ func (s *HTTPServer) AgentServices(resp http.ResponseWriter, req *http.Request) // Use empty list instead of nil for id, s := range services { - if s.Tags == nil { + if s.Tags == nil || s.Meta == nil { clone := *s - clone.Tags = make([]string, 0) + if s.Tags == nil { + clone.Tags = make([]string, 0) + } else { + clone.Tags = s.Tags + } + if s.Meta == nil { + clone.Meta = make(map[string]string) + } else { + clone.Meta = s.Meta + } services[id] = &clone } } diff --git a/agent/agent_endpoint_test.go b/agent/agent_endpoint_test.go index f4a800b81..50b672b16 100644 --- a/agent/agent_endpoint_test.go +++ b/agent/agent_endpoint_test.go @@ -732,14 +732,6 @@ func TestAgent_RegisterCheck_Scripts(t *testing.T) { name string check map[string]interface{} }{ - { - "< Consul 1.0.0", - map[string]interface{}{ - "Name": "test", - "Interval": "2s", - "Script": "true", - }, - }, { "== Consul 1.0.0", map[string]interface{}{ @@ -1220,6 +1212,7 @@ func TestAgent_RegisterService(t *testing.T) { args := &structs.ServiceDefinition{ Name: "test", + Meta: map[string]string{"hello": "world"}, Tags: []string{"master"}, Port: 8000, Check: structs.CheckType{ @@ -1248,6 +1241,9 @@ func TestAgent_RegisterService(t *testing.T) { if _, ok := a.State.Services()["test"]; !ok { t.Fatalf("missing test service") } + if val := a.State.Service("test").Meta["hello"]; val != "world" { + t.Fatalf("Missing meta: %v", a.State.Service("test").Meta) + } // Ensure we have a check mapping checks := a.State.Checks() @@ -1270,7 +1266,7 @@ func TestAgent_RegisterService_TranslateKeys(t *testing.T) { a := NewTestAgent(t.Name(), "") defer a.Shutdown() - json := `{"name":"test", "port":8000, "enable_tag_override": true}` + json := `{"name":"test", "port":8000, "enable_tag_override": true, "meta": {"some": "meta"}}` req, _ := http.NewRequest("PUT", "/v1/agent/service/register", strings.NewReader(json)) obj, err := a.srv.AgentRegisterService(nil, req) @@ -1280,10 +1276,10 @@ func TestAgent_RegisterService_TranslateKeys(t *testing.T) { if obj != nil { t.Fatalf("bad: %v", obj) } - svc := &structs.NodeService{ ID: "test", Service: "test", + Meta: map[string]string{"some": "meta"}, Port: 8000, EnableTagOverride: true, } diff --git a/agent/agent_test.go b/agent/agent_test.go index 69a7d124a..58ada5561 100644 --- a/agent/agent_test.go +++ b/agent/agent_test.go @@ -651,8 +651,8 @@ func TestAgent_AddCheck(t *testing.T) { Status: api.HealthCritical, } chk := &structs.CheckType{ - Script: "exit 0", - Interval: 15 * time.Second, + ScriptArgs: []string{"exit", "0"}, + Interval: 15 * time.Second, } err := a.AddCheck(health, chk, false, "") if err != nil { @@ -690,8 +690,8 @@ func TestAgent_AddCheck_StartPassing(t *testing.T) { Status: api.HealthPassing, } chk := &structs.CheckType{ - Script: "exit 0", - Interval: 15 * time.Second, + ScriptArgs: []string{"exit", "0"}, + Interval: 15 * time.Second, } err := a.AddCheck(health, chk, false, "") if err != nil { @@ -729,8 +729,8 @@ func TestAgent_AddCheck_MinInterval(t *testing.T) { Status: api.HealthCritical, } chk := &structs.CheckType{ - Script: "exit 0", - Interval: time.Microsecond, + ScriptArgs: []string{"exit", "0"}, + Interval: time.Microsecond, } err := a.AddCheck(health, chk, false, "") if err != nil { @@ -764,8 +764,8 @@ func TestAgent_AddCheck_MissingService(t *testing.T) { ServiceID: "baz", } chk := &structs.CheckType{ - Script: "exit 0", - Interval: time.Microsecond, + ScriptArgs: []string{"exit", "0"}, + Interval: time.Microsecond, } err := a.AddCheck(health, chk, false, "") if err == nil || err.Error() != `ServiceID "baz" does not exist` { @@ -829,8 +829,8 @@ func TestAgent_AddCheck_ExecDisable(t *testing.T) { Status: api.HealthCritical, } chk := &structs.CheckType{ - Script: "exit 0", - Interval: 15 * time.Second, + ScriptArgs: []string{"exit", "0"}, + Interval: 15 * time.Second, } err := a.AddCheck(health, chk, false, "") if err == nil || !strings.Contains(err.Error(), "Scripts are disabled on this agent") { @@ -904,8 +904,8 @@ func TestAgent_RemoveCheck(t *testing.T) { Status: api.HealthCritical, } chk := &structs.CheckType{ - Script: "exit 0", - Interval: 15 * time.Second, + ScriptArgs: []string{"exit", "0"}, + Interval: 15 * time.Second, } err := a.AddCheck(health, chk, false, "") if err != nil { @@ -1315,8 +1315,8 @@ func TestAgent_PersistCheck(t *testing.T) { Status: api.HealthPassing, } chkType := &structs.CheckType{ - Script: "/bin/true", - Interval: 10 * time.Second, + ScriptArgs: []string{"/bin/true"}, + Interval: 10 * time.Second, } file := filepath.Join(a.Config.DataDir, checksDir, checkIDHash(check.CheckID)) @@ -1473,7 +1473,7 @@ func TestAgent_PurgeCheckOnDuplicate(t *testing.T) { id = "mem" name = "memory check" notes = "my cool notes" - script = "/bin/check-redis.py" + args = ["/bin/check-redis.py"] interval = "30s" } `) @@ -2206,3 +2206,23 @@ func TestAgent_reloadWatches(t *testing.T) { t.Fatalf("bad: %s", err) } } + +func TestAgent_reloadWatchesHTTPS(t *testing.T) { + t.Parallel() + a := TestAgent{Name: t.Name(), UseTLS: true} + a.Start() + defer a.Shutdown() + + // Normal watch with http addr set, should succeed + newConf := *a.config + newConf.Watches = []map[string]interface{}{ + { + "type": "key", + "key": "asdf", + "args": []interface{}{"ls"}, + }, + } + if err := a.reloadWatches(&newConf); err != nil { + t.Fatalf("bad: %s", err) + } +} diff --git a/agent/bindata_assetfs.go b/agent/bindata_assetfs.go index 6b9d65950..9e46ac238 100644 --- a/agent/bindata_assetfs.go +++ b/agent/bindata_assetfs.go @@ -1,36 +1,69 @@ // Code generated by go-bindata. // sources: -// pkg/web_ui/index.html -// pkg/web_ui/static/android-chrome-192x192.png -// pkg/web_ui/static/android-chrome-512x512.png -// pkg/web_ui/static/apple-touch-icon-114x114.png -// pkg/web_ui/static/apple-touch-icon-120x120.png -// pkg/web_ui/static/apple-touch-icon-144x144.png -// pkg/web_ui/static/apple-touch-icon-152x152.png -// pkg/web_ui/static/apple-touch-icon-57x57.png -// pkg/web_ui/static/apple-touch-icon-60x60.png -// pkg/web_ui/static/apple-touch-icon-72x72.png -// pkg/web_ui/static/apple-touch-icon-76x76.png -// pkg/web_ui/static/apple-touch-icon.png -// pkg/web_ui/static/application.min.js -// pkg/web_ui/static/base.css -// pkg/web_ui/static/base.css.map -// pkg/web_ui/static/bootstrap.min.css -// pkg/web_ui/static/consul-logo.png -// pkg/web_ui/static/favicon-128.png -// pkg/web_ui/static/favicon-16x16.png -// pkg/web_ui/static/favicon-196x196.png -// pkg/web_ui/static/favicon-32x32.png -// pkg/web_ui/static/favicon-96x96.png -// pkg/web_ui/static/favicon.ico -// pkg/web_ui/static/favicon.png -// pkg/web_ui/static/loading-cylon-pink.svg -// pkg/web_ui/static/mstile-144x144.png -// pkg/web_ui/static/mstile-150x150.png -// pkg/web_ui/static/mstile-310x150.png -// pkg/web_ui/static/mstile-310x310.png -// pkg/web_ui/static/mstile-70x70.png -// pkg/web_ui/static/safari-pinned-tab.svg +// pkg/web_ui/v1/index.html +// pkg/web_ui/v1/static/android-chrome-192x192.png +// pkg/web_ui/v1/static/android-chrome-512x512.png +// pkg/web_ui/v1/static/apple-touch-icon-114x114.png +// pkg/web_ui/v1/static/apple-touch-icon-120x120.png +// pkg/web_ui/v1/static/apple-touch-icon-144x144.png +// pkg/web_ui/v1/static/apple-touch-icon-152x152.png +// pkg/web_ui/v1/static/apple-touch-icon-57x57.png +// pkg/web_ui/v1/static/apple-touch-icon-60x60.png +// pkg/web_ui/v1/static/apple-touch-icon-72x72.png +// pkg/web_ui/v1/static/apple-touch-icon-76x76.png +// pkg/web_ui/v1/static/apple-touch-icon.png +// pkg/web_ui/v1/static/application.min.js +// pkg/web_ui/v1/static/base.css +// pkg/web_ui/v1/static/base.css.map +// pkg/web_ui/v1/static/bootstrap.min.css +// pkg/web_ui/v1/static/consul-logo.png +// pkg/web_ui/v1/static/favicon-128.png +// pkg/web_ui/v1/static/favicon-16x16.png +// pkg/web_ui/v1/static/favicon-196x196.png +// pkg/web_ui/v1/static/favicon-32x32.png +// pkg/web_ui/v1/static/favicon-96x96.png +// pkg/web_ui/v1/static/favicon.ico +// pkg/web_ui/v1/static/favicon.png +// pkg/web_ui/v1/static/loading-cylon-pink.svg +// pkg/web_ui/v1/static/mstile-144x144.png +// pkg/web_ui/v1/static/mstile-150x150.png +// pkg/web_ui/v1/static/mstile-310x150.png +// pkg/web_ui/v1/static/mstile-310x310.png +// pkg/web_ui/v1/static/mstile-70x70.png +// pkg/web_ui/v1/static/safari-pinned-tab.svg +// pkg/web_ui/v1/static/tada.png +// pkg/web_ui/v2/assets/android-chrome-192x192-501b0811835ea92d42937aaf9edfbe08.png +// pkg/web_ui/v2/assets/android-chrome-512x512-707625c5eb04f602ade1f89a8868a329.png +// pkg/web_ui/v2/assets/apple-touch-icon-114x114-49e20f98710f64b0cae7545628a94496.png +// pkg/web_ui/v2/assets/apple-touch-icon-120x120-c9cc4fc809a6cbff9b9c261c70309819.png +// pkg/web_ui/v2/assets/apple-touch-icon-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png +// pkg/web_ui/v2/assets/apple-touch-icon-152x152-08c9aa1c11a83650b824e3549b33a832.png +// pkg/web_ui/v2/assets/apple-touch-icon-57x57-ae96d6d27e61e25514af459bc8b20960.png +// pkg/web_ui/v2/assets/apple-touch-icon-60x60-522fca33a44f77c679561313def843b9.png +// pkg/web_ui/v2/assets/apple-touch-icon-72x72-da5dd17cb4f094262b19223464fc9541.png +// pkg/web_ui/v2/assets/apple-touch-icon-76x76-c5fff53d5f3e96dbd2fe49c5cc472022.png +// pkg/web_ui/v2/assets/apple-touch-icon-d2b583b1104a1e6810fb3984f8f132ae.png +// pkg/web_ui/v2/assets/consul-logo-707625c5eb04f602ade1f89a8868a329.png +// pkg/web_ui/v2/assets/consul-ui-5b92b4b084738a6c8d4662cd5dd81e58.js +// pkg/web_ui/v2/assets/consul-ui-fd032aa6d4c81cb6714bde7019fca516.css +// pkg/web_ui/v2/assets/favicon-128-08e1368e84f412f6ad30279d849b1df9.png +// pkg/web_ui/v2/assets/favicon-16x16-672c31374646b24b235b9511857cdade.png +// pkg/web_ui/v2/assets/favicon-196x196-57be5a82d3da06c261f9e4eb972a8a3a.png +// pkg/web_ui/v2/assets/favicon-32x32-646753a205c6a6db7f93d0d1ba30bd93.png +// pkg/web_ui/v2/assets/favicon-672c31374646b24b235b9511857cdade.png +// pkg/web_ui/v2/assets/favicon-96x96-6f8f8393df02b51582417746da41b274.png +// pkg/web_ui/v2/assets/favicon.ico +// pkg/web_ui/v2/assets/loading-cylon-pink.svg +// pkg/web_ui/v2/assets/mstile-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png +// pkg/web_ui/v2/assets/mstile-150x150-6b13ab220a09a9e72328a3b05d5b9eec.png +// pkg/web_ui/v2/assets/mstile-310x150-ccc673174b188a92f1e78bc25aa6f3f8.png +// pkg/web_ui/v2/assets/mstile-310x310-49242d1935854126c10457d1cdb1762b.png +// pkg/web_ui/v2/assets/mstile-70x70-08e1368e84f412f6ad30279d849b1df9.png +// pkg/web_ui/v2/assets/safari-pinned-tab.svg +// pkg/web_ui/v2/assets/vendor-314559974db7480f89eff5585c15bd34.js +// pkg/web_ui/v2/assets/vendor-c3a9380433ef2f2efb4ed437d3b54b31.css +// pkg/web_ui/v2/index.html +// pkg/web_ui/v2/robots.txt // DO NOT EDIT! package agent @@ -99,622 +132,1282 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _web_uiIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xcf\x76\xdb\x38\xb2\xf7\x3e\x4f\x51\x1f\x7b\xe1\xc5\x17\x52\xb2\x6c\xc7\x8e\x47\xd6\x3d\x89\xe3\x9e\xce\x24\x9d\xee\x93\x38\x99\xdb\xab\x7b\x20\x12\x12\x31\x06\x01\x0e\x00\x4a\x56\xeb\xe8\xdd\xef\x01\x40\x52\xfc\x03\x52\x92\x1d\xfb\xf6\xf4\xcc\x22\xb1\x48\x02\x28\x54\xa1\x50\xf5\xab\x02\x40\x8e\xff\xdf\xbb\x5f\xae\x6f\x7f\xfb\xf5\x06\x62\x95\xd0\xc9\x8b\x71\xf1\x07\xa3\x68\xf2\x02\x60\x9c\x60\x85\x20\x8c\x91\x90\x58\x5d\x79\x99\x9a\xf9\x17\xde\xf6\x41\xac\x54\xea\xe3\x7f\x66\x64\x71\xe5\xfd\xb7\xff\xf5\x8d\x7f\xcd\x93\x14\x29\x32\xa5\xd8\x83\x90\x33\x85\x99\xba\xf2\xde\xdf\x5c\xe1\x68\x8e\x2b\xf5\x18\x4a\xf0\x95\xb7\x20\x78\x99\x72\xa1\x2a\x45\x97\x24\x52\xf1\x55\x84\x17\x24\xc4\xbe\xb9\x78\x09\x84\x11\x45\x10\xf5\x65\x88\x28\xbe\x1a\x06\xe7\x2f\x21\x93\x58\x98\x6b\x34\xa5\xf8\x8a\x71\xdb\xb4\x22\x8a\xe2\xc9\x35\x67\x32\xa3\x30\x5d\xc1\x4f\x48\xc6\xe4\x9a\x8b\x74\x3c\xb0\x8f\x74\x21\x4a\xd8\x1d\x08\x4c\xaf\x3c\xa9\x56\x14\xcb\x18\x63\xe5\x41\x2c\xf0\x4c\xdf\x41\x8a\x84\x83\x29\xe7\x4a\x2a\x81\xd2\x20\x21\x2c\x08\xa5\xf4\xf6\xae\x89\x24\x76\x55\x20\x21\x67\x1e\xa8\x55\x8a\xaf\x3c\x92\xa0\x39\x1e\xa4\x6c\xde\xa8\x3b\x43\x0b\x5d\xcc\x3f\x19\xdd\x9f\x8c\x02\xf3\x5c\x92\xdf\xb1\xbc\xf2\xcc\x9d\xc7\x34\x79\xfc\xea\xfe\xf8\x55\xad\x49\x73\xc7\x9b\xbc\xd0\x6d\xca\x50\x90\x54\xe5\x4d\x29\x7c\xaf\x06\xff\x40\x0b\x64\xef\x1a\xaa\x00\x83\x01\x5c\xc7\x88\xcd\x31\xa8\x98\x48\x58\x20\x9a\x61\x50\x1c\x56\x3c\x13\x7a\xf0\xb4\xc0\x63\x2e\x15\x90\x99\xbe\x07\x48\x60\x60\x5c\x81\xc8\x18\x23\x6c\x5e\xb4\xa1\x62\x0c\x5f\xdf\x03\x67\xe6\x97\x44\x09\xb6\xb5\x90\x04\x54\x34\x43\x98\x54\x88\x85\x38\x28\x2a\xe1\x60\x1e\x80\xa7\x35\xed\x72\x30\x48\x56\x12\x8b\x05\x16\x41\xc8\x93\xcb\x8b\xb3\xe1\xd0\x33\xc5\x16\xa8\xe8\xc6\x4f\xba\xbd\x2b\x38\x3a\xd2\x9c\x0d\x2c\x13\x93\x17\x2f\xc6\x03\xab\xd1\xe3\x29\x8f\x56\x96\x6d\xc6\x8b\xa7\xba\x85\x71\x88\x99\xc2\xc2\x5e\x00\x8c\xe3\xd1\xe4\x6f\x68\x81\xbe\x58\xd9\x7c\xd6\x3a\x2e\x70\x34\x1e\xc4\xa3\xb2\x48\x3a\xf9\x95\x62\x24\x31\x60\xa6\xd5\x10\x2a\xe5\x09\xb3\xa2\x59\xe2\x29\x4c\x05\x5f\x4a\x2c\xb4\xb8\x32\x89\x21\x57\xcf\xaf\xef\x83\xf1\x20\xcd\x69\x0f\xb6\xc4\xc7\x83\x6d\xbf\xf4\x65\x44\x16\x10\x52\x24\xe5\x95\xb7\x14\x28\x4d\xb1\xc8\x87\xa4\xfa\x44\x4f\x1f\x44\x58\xf9\xac\xf9\x94\xfa\x49\xe4\x1f\x8f\xca\xa7\xf9\x73\x12\x5d\x79\x28\x4d\xab\xb7\x07\x11\x59\x94\x6d\x6c\x2f\xf2\x9f\x2d\xc2\x69\x26\x63\x6f\x52\x16\xec\x2a\x36\xe3\x5c\x55\x3a\xb7\xab\xf3\xfb\x30\xd0\xe8\x6b\x47\x6f\x1d\xba\x7d\xef\xc7\x88\x45\x14\x4f\x91\x90\x79\x7b\xeb\x35\xcf\x14\xc5\x6a\xb3\xa9\x2b\xcd\xee\xfa\x10\x21\x85\x7c\x85\x93\x94\x22\x85\x7d\x6b\xd6\xb0\x10\xdc\x35\x4a\x82\x2f\xfb\xc6\xe7\x02\xf2\x1f\x7c\x36\x93\x58\xf9\x23\x73\x2d\x13\xff\xd8\xfe\xba\x97\x8e\x21\xcc\x9b\xd0\x3d\xf3\xad\x12\xc1\x02\x0b\x45\x42\x44\xf3\xeb\x9a\xcc\xd6\xeb\x1f\xc8\xcc\x58\x5b\xc1\x29\xc5\x22\x48\x78\x84\x69\xa0\xcd\x45\x26\x6f\xf1\xbd\x02\x23\x83\x8a\x90\xd3\x82\xc4\x94\xd3\xc8\x9b\xfc\x74\x7b\xfb\x2b\x18\x06\x21\xe4\x11\x86\x99\xe0\x49\xae\xd2\x97\x30\xd6\xb7\x26\xeb\x75\x47\xfb\x9b\x0d\x74\x3e\xd3\xb4\x37\x9b\xf1\xc0\xb4\x50\x4e\x8c\xa2\xd3\x03\x32\xab\xf5\xab\x83\x0d\x81\x65\xca\x99\xc4\xfb\x30\x72\x63\x78\x48\xb0\x94\x68\xde\xc1\x06\x25\x09\x51\x3b\xa8\x8c\xce\xce\xf6\xef\xf6\x38\x2d\x9c\x93\xc0\x2a\x13\x0c\x47\x80\x98\x95\x66\x00\xbf\xf1\x0c\x12\xb4\x82\x18\x2d\x30\x2c\x88\x24\x4a\x3f\x86\xaf\x9f\x3f\x82\x8a\x91\x02\x22\x81\x72\x14\x11\x36\xd7\x95\x32\x76\xc7\xf8\x92\x81\xc0\x92\x67\x22\xc4\x2f\x41\x1a\x6b\x5c\xe3\x39\x44\x0c\x94\x58\xc1\x9c\xeb\x5a\x53\x14\xde\x69\x23\xa4\x4d\xaf\xe0\x5c\x05\xf0\x7e\x66\xad\xd4\x9b\xeb\x8f\xa0\xf8\x1d\x66\xb0\x44\xd2\xd8\xed\x19\xcf\x58\x64\x2c\xb9\x6e\x43\x60\x89\x15\x10\xf5\x12\x10\x8b\x74\x7d\xd6\x22\xb5\x24\x94\xc2\x14\x83\xc0\x11\x11\x38\xd4\x7d\xcf\x49\x49\xac\x14\x61\x73\x09\xa9\x16\xb4\xe2\x60\xb5\x14\x01\xc3\xcb\x2d\xe5\xa0\x21\xbc\xba\xf5\x10\x89\x3f\x17\x3c\x4b\x6b\xba\x0c\x30\x9e\x66\x4a\x71\x06\xeb\x35\xa0\x50\x11\xce\xc0\x33\x5d\xbd\xd5\x2d\x7a\x60\xf4\x0d\xa6\x84\x45\x3e\x52\x4a\x14\xcd\x5d\x4e\x15\x03\xfd\x9f\x1f\x69\x8f\x26\x74\xc1\xc9\x67\xc3\xa2\xee\x8e\xa9\x3c\x1e\xd8\xa6\x77\xd2\xd3\x42\xfd\x89\x27\x78\x1f\x6a\x78\x86\x32\xaa\x0c\xb9\xbf\x72\x78\x9b\x0f\xc7\x67\xce\x95\x8b\x5c\xb7\x79\x73\xd9\xba\xef\x61\xb7\xa2\x70\x90\x31\x94\xa9\x98\x0b\xf2\x3b\x8e\xfe\x98\x16\xac\x39\x8f\xdf\x84\x21\x96\x12\xde\x61\x46\xb4\x7b\xae\x2b\x51\x3a\xf9\xad\xae\xdf\x11\xc7\x56\xc1\xcd\x2c\xd3\xea\x89\xd2\x54\xf0\x54\x10\xa4\x30\xa4\x58\x24\x44\x4a\xc2\x99\xd4\x23\x93\x62\xa1\x55\xcf\x14\xc3\xf7\xa9\xd5\x6a\x3b\xf0\x2d\x75\x4d\x27\x1f\x31\x12\x0c\x12\x2e\xb0\xf6\xfe\xba\xce\x18\xe5\x68\x4c\x63\x17\x79\x39\x18\x2c\x97\xcb\xc0\xa2\x94\x80\xf0\x41\xc4\x43\x39\x98\x67\x24\xc2\x72\x80\x42\x1a\x68\xe4\xed\x81\x42\x62\xae\x91\xf6\xff\x4c\x29\x62\x77\xde\x44\xf7\x3d\xe2\x61\x96\x60\xa6\x31\x1d\x67\xe3\x01\x9a\xd4\xc9\x3f\x8f\x6a\xa0\x90\xca\x88\x48\x8d\x74\xfe\x55\x54\xe3\xfa\xa3\x84\x77\x79\x97\xdb\x03\x66\x1e\x6b\xa0\x5a\x70\x65\xc7\x8d\xc8\x02\xa2\x85\x34\x93\x0a\x8b\x00\x6e\xf5\x4d\x22\xcd\xa0\xe6\xb3\x18\xa6\x38\x46\x0b\xc2\xc5\x4b\x0d\x5e\xb5\xa1\xb4\x1a\xc5\xb5\xa6\x50\x12\x12\x45\x57\x05\x2e\x54\x31\x4e\xfe\xdd\x14\x26\x77\x55\x7f\x50\x45\x21\xc9\x1c\xa4\x08\xcb\x38\x29\xef\xad\x1f\xae\x28\x67\x7e\x4a\xd8\x5d\x20\x17\x73\x0f\x6c\x34\xea\x9d\x5c\x9c\x7a\x10\x63\x32\x8f\xd5\x95\x77\x7a\xd1\x50\xba\xc9\x58\x26\x88\xd2\xc9\x47\xdb\x48\x10\x04\xe3\x81\xbd\xf3\x94\x42\x37\xd8\xdd\xd8\xa2\x29\x3a\x04\x6c\xda\x3a\xfe\xb6\x52\x59\xc0\xe5\xbd\x24\x46\x22\x8c\xdf\x22\x71\x59\x60\xf0\x61\xf1\xeb\xcc\xb8\xbc\x83\x7d\xf6\x7a\x0d\x84\xa5\x59\x95\x33\xcf\xc6\x93\x57\x33\x42\xf5\xc8\x55\x5b\xc8\xc1\x17\x54\x2f\xfc\x84\x30\xe2\x41\x4a\x51\x88\x63\x4e\x23\x2c\xf2\x9a\x16\x43\xee\xe9\x42\x0b\x10\xc9\xf0\xf2\x4d\x48\xdf\x5a\xc7\x5e\xaf\xdd\x56\xce\x51\x13\x80\xec\xc3\xb1\xa1\xa4\xe3\x76\x5f\x71\x38\xd2\x66\xf4\x28\xaf\x73\xa4\xb1\x81\x86\x06\x9a\x23\xa8\x60\x04\xf3\x9b\x71\x3d\x56\x0b\x0c\x69\x46\xa9\x2f\xb4\xf6\x1d\x6d\x36\x9f\x2c\x6a\x5a\xaf\x07\x79\x93\x4d\x9c\x5b\x67\xd2\xc1\x75\x1d\x95\x5a\x29\x58\x10\x8e\x65\xe5\x81\x83\xfd\xb3\xce\x08\xad\x67\xb8\x17\x04\x2f\xe1\x26\x99\x62\x11\x7c\xc1\x14\x87\xaa\x4c\xf6\x14\x44\xf3\xe1\xb7\x97\x7b\x0e\xff\x41\xe3\xec\xe2\x38\x46\xf2\xe6\x3e\x45\x2c\xc2\x11\xf4\x73\x3d\x82\x98\x44\x11\x66\xfe\xbd\x2c\x7e\xc9\xe4\x70\x49\x54\xc0\x63\x0f\x48\x34\x9a\x70\xb9\x1d\x71\x2d\xac\x08\x33\x89\xa3\x2a\x86\x34\xbf\x53\x41\x12\x24\x56\x39\xf2\xcc\x01\xa9\xe2\xf3\x39\xc5\xd7\x45\x25\x8d\x35\x2d\x9b\x87\x42\xcc\xa6\xdc\x9e\x0a\x57\xec\x63\xba\x9c\x22\x2b\x93\x02\x70\xb9\xf5\x10\x97\xa5\x8b\x80\x4b\xc5\x53\x6d\xe5\xb4\x08\x5e\xf4\x8d\xef\x71\xe1\x61\x4a\x07\x73\x51\xdc\xc9\x7d\xd0\xb0\x78\x90\x5f\x1f\xd7\x47\xbf\xf0\xda\x3f\x78\x93\x9a\x37\xe2\xa9\x3f\x15\x88\x45\x45\x82\x44\x3b\xe2\x2e\x61\x3b\xf5\x2e\xef\xc5\xc9\xc3\xfa\x55\xb5\x3a\x12\x8b\x05\x09\x71\xdb\xf2\x14\x06\xa7\x94\xdb\xd1\x66\xf3\x25\x2f\xec\xb4\x31\xd5\x14\xcf\x33\x74\x9c\xf1\x68\xcf\x5e\x7f\xd2\x25\xff\x08\x5d\xbe\x5b\xec\xd5\xdf\x0f\x78\x35\xf8\xa6\x0d\xdf\xa3\xfb\xdc\xd0\xdb\x2d\x76\x1a\x36\x78\x18\xed\xcd\x83\xd3\x4b\xb9\xb8\xe8\x72\x45\x0f\xea\xff\xab\x1d\xfd\x3f\xdd\x35\x0f\xd7\x6b\xb7\x9d\xc8\x2d\x82\x66\x24\x46\xf2\x47\x44\x28\x61\xf3\xeb\x18\x87\x77\xd2\x98\xd2\x25\x12\x8c\xb0\xb9\xf9\x2d\x33\x13\x51\x7a\x55\xab\xea\x59\xb3\xea\x6d\x36\x13\x18\xcb\x14\xb1\xa2\x75\x4c\x49\xea\xf3\x05\x16\x33\xaa\x8d\xd6\x7a\x6d\x52\x44\x9b\x4d\xbd\x54\x88\x04\x56\xda\x0a\xe8\x9b\xc5\x1f\x30\xe6\xa0\x95\xd4\x22\xf2\x9d\xe0\x69\xc4\x97\xec\x1b\x91\x64\x4a\x71\xd3\xbf\x9b\xc0\xc4\x34\x1b\xe5\x05\xfd\x04\xb3\xac\xd4\x01\x0f\xcc\xea\xc4\x95\x17\x11\x99\x52\xb4\xba\x9c\x52\x1e\xde\xfd\xc5\x05\x4a\x30\x0a\x63\x88\x42\x1d\x7e\x44\xa1\x6c\x10\x32\xc4\x28\xa9\x08\x21\x26\x11\xd6\x9d\xd3\x62\x70\x1b\x97\x28\xdc\x6c\xd6\x6b\xfb\xff\x56\x29\xc6\x03\x4a\xda\xd4\x07\x9a\x7a\x0b\xbc\x64\xd4\x95\x42\x3b\x44\xad\xda\xe6\x7c\xb4\x43\xad\x9a\x53\x7b\xd8\x63\x46\x6d\x2e\x6b\xd7\xd4\x78\x05\x24\xe4\xec\xa8\x0e\x52\xe4\x62\x0e\xf7\x09\x65\xf2\xaa\x58\xcc\xd0\xe1\xdd\xf2\x24\xe0\x62\x3e\x18\x0d\x87\xc3\x81\x89\x39\x8c\x9b\xd4\xd5\x35\x47\x73\x0f\x34\x7e\x7a\xcb\xef\xaf\xbc\x21\x0c\xe1\x64\x04\xa7\xc3\x26\xb0\x48\x91\x8a\x21\xba\xf2\x7e\x3e\x3e\x85\x21\xf5\x8f\x83\x93\xe3\x13\x38\x0d\xfd\x63\x08\x4e\xfc\xe3\xe0\xf5\xf9\x59\xf0\xea\xe2\xc2\x1f\x05\x17\xe7\x67\x70\x1c\x1c\x5f\x5c\x50\xff\x24\x38\x1f\xf9\xc7\xfa\x8e\x3f\x0a\xce\x2f\xc0\xfc\x67\xae\x41\x3f\x0a\xfd\xe0\x2c\x78\xed\x07\x17\x17\xf9\x5d\xdf\xd4\x03\xd3\xc6\xc7\x21\x1c\x9f\x2e\x4e\xe9\x29\x68\x52\xa7\x61\x70\x02\xc7\x10\xbc\xba\x38\x07\x43\xcc\x90\x38\xb7\x45\x75\x6f\xce\x2f\x74\x93\xc7\x39\x8d\x51\x7e\x6d\xa9\x9f\x86\xc1\xeb\x40\xd7\x78\x3d\x3c\x0b\x2e\x4c\xad\xd7\xc3\xa2\x93\xc7\xc1\xe8\x02\x4e\xe3\x53\x6a\xc8\xf8\xa7\xe1\xb1\x1f\x9c\xc0\x28\x18\x0e\x5f\xf9\x9a\x23\x53\xf8\x95\xed\xd9\xc7\xd1\x2b\x18\x5d\x04\x67\xaf\x4f\xe9\x28\xb8\x38\x3e\x31\x5c\x69\xe6\x87\xaf\x0c\xaf\x61\x70\xe6\x07\xaf\x35\x09\x73\x33\x27\xe1\x1b\x72\x1f\x4f\x46\x70\x7c\xb1\xf0\x4f\xa9\x7f\x6a\xa4\xa7\xd9\x3f\xf1\x8f\x35\x91\x73\x2b\x40\x43\xe4\xdc\x8a\x90\x6a\x96\xac\x00\x0d\x91\x51\x71\x69\x25\x15\xfa\x5a\x70\x67\x96\x8c\x91\xa0\xa5\x92\xf7\xf3\xf8\x02\x86\xb1\x7f\xfa\x7b\x32\x82\xd7\xe1\x49\xf0\x1a\x86\x70\x0e\x27\xc1\x31\x9c\xc3\xb9\xf4\xcd\x0f\xff\x5c\xff\xd3\xbf\x7d\xfd\xdb\xfc\xd5\x77\x7e\xf7\x06\x75\xf4\x26\x17\xf3\xc6\x6c\xe9\x34\xc4\xad\x8b\xea\x4c\xfa\xce\xeb\x1f\x77\x8b\x81\x8c\x4b\x0c\x77\x40\xec\x6f\xed\x3f\x9d\xfb\x67\x90\xa2\x28\xc2\x91\xc5\xc0\x7e\x42\xa2\x88\xe2\x6a\xbc\x1a\x9f\x96\xa9\x1e\x81\x51\x14\x8a\x2c\x99\x4a\x6f\x52\x42\x31\x6f\x6b\xb6\x8e\xb4\x4c\x6e\xf9\x07\xbc\x3a\x82\xb9\x86\x63\xbf\x22\x81\x99\xfa\x80\x57\x60\xec\x58\x5a\x5c\x6a\x43\x85\x26\xb0\xab\x8d\xb4\x5a\xfd\xff\xeb\x2a\xe3\x41\x7c\xba\x63\x1d\xea\xfb\x8a\xe1\x45\xdb\x8a\x13\x85\x13\x6d\xc7\x8d\xff\x69\xae\x7d\x54\x4c\x98\x2e\x17\x58\x6e\x3e\xf3\x4c\x61\x7b\x43\x73\xa3\xd0\xfc\x93\xc5\xe4\x64\x91\x2f\x23\xcf\x10\x95\xb8\xe8\x1c\x25\x52\xd9\xc0\xc6\x37\xc4\xcc\x75\x19\x9d\xf8\xba\x4d\xaf\x49\xb8\xc4\xef\x2d\xb7\x6c\xc8\x12\xf9\xa3\x89\xdf\x2f\xa7\x73\x7f\x2e\xb4\xab\x9a\xfb\xd4\xb0\xaa\xaf\xe0\xd2\x90\x98\x22\xe1\x9b\x8c\x34\x67\x0a\x51\xed\x7b\x5a\x21\x6e\x53\x8e\x5a\x0d\x5b\xfe\x4e\x8b\xc1\x50\xbd\xc3\xab\xbf\x13\x15\xf3\x4c\x59\x4d\x68\xf7\xb9\xdd\x7e\x6d\x6a\xd5\xa7\x5c\xcd\x8d\xd5\xfd\x53\xb5\x4f\x53\x2e\x22\x2c\x7c\x8a\x67\xaa\x37\x9e\xec\x6e\x61\x61\xf1\x80\xae\x56\xfc\xac\xc5\xa1\xe3\x58\xec\x6e\xa4\xa9\x62\xe7\x50\xe9\x58\x47\x5a\x2d\x57\x42\x5b\xb0\x33\xf0\x4d\x11\xc3\xd4\x95\x1f\x71\x46\x6f\xa6\xb4\x1e\x5b\x20\x32\x4f\x9c\xe9\xd1\xe7\x02\xb1\x39\xae\xeb\x81\x89\xe0\x76\x8e\xb9\x6d\x30\xc6\xd5\xb4\x63\xad\xec\xd6\x64\xd8\xa2\x66\x47\x88\xa3\x20\xc0\xb5\xc0\x48\x61\xf8\x80\x57\xed\x56\x6a\x53\xdd\x25\xec\xee\xbe\x4d\x79\xb4\x02\xfb\x73\xc6\x45\xe2\xea\xa3\x59\x6e\xa8\x24\x12\xbc\x56\xb3\xcd\xa6\x7b\xb2\x4e\x79\xe1\x74\xb2\x5e\x9b\x25\xc6\x9f\xed\x5a\xa7\x36\x73\xa9\xab\xac\x9b\x0f\xe8\x1d\xc6\x2d\x79\x60\x78\xf9\x01\xaf\xf4\xec\xfa\x86\x28\x89\x2e\x17\xfa\x7f\x1b\x7d\x3b\xfb\x55\x61\xc2\x24\x04\x7b\xb9\x80\x3a\xa0\xae\x54\xf0\x51\x14\x71\xe6\x35\x0d\xb9\x81\xd8\x1d\x4d\x95\x29\x48\x9b\x77\xca\x3b\xae\x6d\xa0\x23\xf7\xe4\x81\xc8\xf7\x7e\x5c\x29\x91\xe1\xb6\x85\xab\x09\x6f\x67\xcf\x63\x4c\x53\xdf\x20\x72\x6f\x72\xcb\x21\xb4\xaa\x86\x60\x66\x0c\xe1\x4b\xc0\x76\x81\x15\xee\xf0\x0a\x96\x44\xc5\xf9\x62\xf4\xa0\x5c\x62\xee\x62\xac\x7b\xf4\xca\x3c\xa7\xe6\xb2\x30\xb9\x6e\x3e\xc6\xe9\xe4\x13\xcf\x77\xf7\x30\x8c\x23\x1c\xc1\x8c\x0b\x60\x58\x2a\x1c\xe9\x3e\xc9\xe6\x3a\xc6\x96\x08\xa6\xb2\x19\xab\xe4\x8d\x1e\xa0\x3d\x46\x69\x90\xc2\x7f\x93\x9c\x5d\x16\x17\xdb\xbe\x1b\xcd\x32\xcf\xf2\x28\xed\xd2\xee\xb5\xe8\xd4\xb2\xf5\x1a\x34\x68\x41\x02\xa3\xfa\x68\x9b\xc8\xdb\x39\xde\x5d\x03\xdc\x35\x8a\x79\x4b\x88\xc1\x14\x03\x62\x2b\x93\xac\x44\xca\x2c\x95\x53\xcc\xe6\x2a\xde\x39\x68\xae\x7e\x37\x02\x9f\x4a\x9d\xf6\x22\xb4\xd5\xa2\x0f\x78\x65\x83\xd6\xad\xa0\x8b\x95\xad\xab\x52\x82\xef\x99\x91\x6a\xef\x6a\x75\x5d\xdc\xd5\xa0\xb8\xb5\x8e\x6d\x4d\xa5\x7b\xb5\xbc\xe0\xe4\x87\x8c\x51\x2c\xe5\x9e\x1a\x48\xd1\x14\xd3\xfa\xc0\xe8\x38\x7d\xca\xef\xf5\x1c\xaf\xae\x1d\x14\xf7\xc1\xfc\xd8\x32\x59\xd5\x21\xd8\x6c\xbe\x15\x5a\xf4\xb7\x2f\xbf\x7c\x1a\x0f\x4c\xfb\x1d\x22\xb7\x1d\x75\xf7\xab\x2d\xf5\x08\x53\xac\xb0\x65\xc6\xeb\x5d\xfd\xaf\xa4\x73\x2b\xde\xae\x91\x77\xb0\x9b\x11\x80\xc8\xcf\x9c\xab\x4b\x0b\x0c\x8c\x8c\xdf\x19\x3a\xb9\x85\xe8\x16\xf5\x78\xa0\xa5\xd5\xe1\x9c\x7a\x6e\x3d\xc3\x62\xe0\xdd\x62\x80\x23\xa2\xfe\x2d\x03\x82\x67\x08\x07\x6a\x93\xad\x16\x0d\x68\x94\x68\xf6\xde\xfc\x27\x20\x78\xca\x80\xa0\x76\xfb\x4f\x14\x0f\x80\x54\x24\xbc\x5b\xf9\x32\x14\x9c\xd2\x3d\xa3\x83\xe7\x09\x0f\xe6\x02\x63\x66\x1e\x6a\xd3\xbf\x5f\xc0\xb0\x7f\xb8\xa0\xcd\x89\x2b\x97\x5c\x89\x1c\xb6\xb4\xa9\xf9\xe3\xb9\x20\x48\x9e\x0f\x0e\x8c\x31\x71\x3c\xd5\xc0\xcc\x96\x28\x5a\x73\x25\x61\xcd\x66\x82\xed\x8e\xdb\xc2\x97\x38\x14\xfa\xc3\xcd\x6f\xf0\xf1\x97\xeb\x0f\x37\xef\x1c\xee\xc1\xee\x49\x70\xf4\xa2\xb9\x4d\x11\x9c\x81\x8e\x0b\x60\x1e\x1e\xe4\xec\x1d\xbb\x34\x83\x96\xdd\x53\xd2\x1d\x3f\xb5\xe4\xb0\x0f\x1a\xb5\x63\xe2\x06\xa3\xc5\x78\x1d\x88\x45\xdb\x48\xb4\x24\x92\xe1\x77\x58\xa3\xfb\xc8\x1d\x7f\x94\x20\x6e\xb7\xa6\xb8\xe1\xe4\x16\xbb\x14\xd0\x25\x4b\xa3\x1d\x80\xb1\x9c\x76\x8d\x02\x55\x5c\xd3\x8d\x65\x6a\x6b\x28\x1d\xad\x5b\x1e\x26\x5f\x4d\x57\x7a\x60\x4d\xab\xf3\x21\x62\x21\xa6\x37\x1a\x50\x3c\x4d\xef\x0b\x80\xab\xf1\xad\xa1\xd5\xd3\xbb\x47\xc0\xd5\xb6\x92\xed\x8d\x56\xdb\x42\xb1\x60\xf4\xb1\x23\x7a\x08\x52\xdd\x67\x70\x73\xe8\x7a\x87\x57\x5d\x22\x74\xa1\xd6\xae\x2d\x2c\x75\xa0\xb3\xcb\x74\x8e\xe3\xb3\x89\x7e\x00\x5f\xb0\xd9\xd2\x39\x1e\xc4\x67\x0d\xf3\xd5\x5a\x68\x0e\x64\xcc\x97\x47\x79\xbb\xd2\xd6\x0b\x3e\xf1\x08\x3f\x25\x18\x2a\x00\x41\x0d\xea\xb8\x90\xce\x23\x70\x0e\xe4\xcc\x68\x1e\x8a\xdf\xae\x00\xec\x00\x5f\xa3\x9b\xad\x8a\xc8\x69\x8f\x9c\x3e\xe7\x20\x38\xe5\x5c\xff\xab\x5d\x7c\xef\x68\x45\x8f\xdf\xe0\x3f\xfb\x17\x9f\x61\xff\x62\xb1\x70\xfc\xd8\x3d\x40\xaf\xec\xbe\x1f\x13\x22\x5d\x3a\x62\x24\x20\xf2\x4b\xcc\x97\x84\xcd\xdf\x2b\x9c\x5c\x6e\xe1\xb6\xf3\xbe\x4c\xea\x3e\x3c\xdf\xc2\xf6\x26\x4d\x83\x37\xc6\xda\xbe\x45\xe2\x9b\xbe\x53\x55\x4c\x6b\x90\xec\x3e\x44\x1c\x5d\xdb\x1d\x6e\xed\x04\x4e\x79\x70\xa5\xdc\x9e\xd5\x4e\xf1\xac\xd7\x3f\x84\x9c\x52\x6c\x2d\xbb\xdd\x39\xf7\x91\x48\x65\x68\xe6\x7b\xe7\xde\x12\xa6\xc7\xea\xca\x6b\x50\x2c\x87\xf9\x62\x38\x04\xc1\x97\x3f\xd9\xab\xd3\x53\x77\xb6\xc5\xb5\x8a\x9f\xdb\x40\x63\x29\x9e\xc6\xea\xd5\x46\xb5\x35\xa8\xed\x0d\x1a\x6d\xdc\x7f\x50\x20\xd8\x9e\x67\x1d\x66\xb2\x90\x89\x66\xb9\xa3\xd3\x07\x5a\xc8\xa2\x45\xeb\xf3\x73\x2c\xdb\x25\x90\x1e\x8c\x0e\x3b\x72\x85\xee\xad\xa0\xf9\xc3\xad\x32\xb9\xf4\x31\x4f\xdb\x3e\x87\x16\x1e\x8f\x86\xcf\xa8\x86\x4f\xaf\x7c\xbb\x34\x6e\x9b\x93\x6a\x74\xb0\x67\x99\x6a\x3f\x81\xe4\xbb\x4f\x64\x36\x55\x14\x1f\x6d\x36\x85\xce\xf6\xaa\x42\x85\xf3\x32\x8d\x6d\xdd\x46\x8c\x69\xda\x70\x31\x8d\x4a\xa8\xdc\x10\x6e\x48\x7a\xdb\x1d\x8f\xeb\x75\x55\xb7\x6d\xca\xac\x53\xbd\xbb\x65\xe5\x58\x57\xcb\x9f\x6c\xf7\x3b\x19\x29\x12\x46\x09\xeb\x9b\xbd\x36\x03\xa6\xe1\x1c\x10\x66\xfe\xb6\xd2\x5f\x95\xd6\x29\xa9\x9f\x19\x59\xaf\x99\xc1\x32\xae\x3d\x4b\x5b\x1a\xae\xbd\x4b\x5b\x56\xb2\xae\xfc\xf2\x23\xa6\x69\x03\x07\xb5\x96\x5b\xb6\x67\x5f\xa8\xb5\x46\xb7\x31\x16\x38\x3f\x87\x0d\x85\x0e\x81\xe2\xa0\xd5\xa8\xbe\x8a\xd3\x68\xfd\x5f\x3d\x67\x65\x92\x55\x3a\x14\xe9\x40\x59\x82\x2f\xa1\x7b\x49\xbb\xb6\x17\xa6\xd6\x93\xd6\xc5\xe3\x91\x4f\x27\x90\xb4\x1b\x16\xb7\xc8\x71\x97\xdc\x2a\x06\x63\x8b\xaa\xca\x61\x6b\x6c\x52\xd3\xbf\xed\xe2\x15\x6c\x36\xc5\x31\x44\xed\xd4\x64\xef\xc6\xdf\xce\xa1\x89\x4f\x4a\xc7\xca\xfd\x04\x89\x39\x31\xeb\xb1\x79\x18\x35\x0c\xf2\xfd\xc4\xc5\x5f\xd0\xb3\x2b\x3e\x29\x1b\xd3\xed\x96\xbf\xcf\x26\xb7\x68\x2e\x6d\xac\x56\xb2\x46\x66\xda\x05\xd4\x0e\x27\xa4\x93\xf5\xda\xde\xab\xa8\xb2\x63\x56\x4c\x3e\x71\x53\xb7\x56\xaa\xae\xee\xf1\xd9\xc4\xec\x1d\xae\x05\x88\x4d\x3b\x52\xee\xab\x71\x89\xbc\x16\x3c\xea\xdf\x26\x20\xda\x2f\x70\x34\xb9\xb2\x3c\x63\x66\x5e\xee\x50\xfc\x94\xca\x73\x9c\x47\x71\xf8\x2c\x43\x70\x2f\xc7\x55\x66\x55\xdd\xb0\xa9\x2f\x73\xdb\xe1\xb2\x2a\x63\xdf\xb7\xab\xc2\x5a\xd5\xad\x54\xda\x81\xb0\x05\x3e\xd5\x72\x6f\xa2\x48\x98\xd5\xb8\xae\x28\xb2\xba\x20\x6b\x89\x33\xae\x70\x61\xc2\x83\xa6\x5b\x6a\xaf\xc1\x56\xb5\xb0\xad\xd6\xe0\x70\x3e\x19\x33\x7b\x6b\xa3\xd6\x21\x17\xab\x2c\x86\x64\xe1\x75\x02\x3b\x10\x8e\xa0\x7f\xeb\x73\xf6\xc1\xcf\xae\x70\x5e\x97\x7b\x8b\x84\x25\x18\x7c\xc9\x4f\xd7\xbb\x73\x9d\xbb\x30\x6f\xee\xc0\x83\x4e\xd4\x5b\x8e\x4d\x4e\xce\xf0\xf5\xfe\x1d\x74\x8e\x0c\x1c\x9e\x48\xd8\xc1\x48\x0f\x34\x76\xe7\x44\x5a\xde\xdb\xe5\xb3\xad\xa7\xae\xba\xc1\xd6\x1e\xaf\x6a\xb5\xc3\xad\xbc\x31\x0b\x7f\x82\xe0\x76\xef\xf0\xd6\x19\xe0\xb6\x07\xf3\x59\x63\x5c\xe8\xb1\xd5\x4f\x98\xda\xab\xa8\xd9\xf3\x06\xba\x4d\x65\xeb\x0d\x76\xad\x70\x3a\xd2\x77\x95\xf6\x0e\x0f\x7a\x6d\xcb\xc0\xb2\xa4\x38\x4e\x04\x9b\x4d\x89\x30\xfa\x68\xf5\x05\xc1\xd0\x1f\x46\xec\x40\xd9\xb0\x1b\x69\xf7\x85\xc4\xcf\x1b\x14\x3f\x85\xd6\xee\xd0\xd5\xe7\x88\x8a\x1f\x15\x17\xef\xa1\xac\xa5\xb7\xda\x85\x1f\x1a\x6c\x1f\x1a\x12\x7f\xaf\xa0\x78\x87\x3e\x77\x07\xc6\x07\x87\xc6\x5b\x9c\x92\xcf\x42\xb3\x43\x24\x9f\x90\xfd\xd3\xbf\x1d\x25\xcb\x3a\xa6\xef\x0f\x98\x77\x85\xcc\xdd\x41\xf3\xce\x09\xbd\xc7\x74\x6e\xed\xa4\x73\xec\x55\xec\x0f\x9f\x6d\x12\xc1\x19\x3b\x77\x1c\x93\x7d\x92\xe0\xf9\x4f\x10\xf7\x6a\x49\x3e\x49\xd0\x6b\xa1\xd6\xc1\x11\x2f\xeb\x3e\x34\x7a\x58\xb8\x5b\xe9\x54\x1e\xf7\x1a\x2b\x6d\x4e\x02\x1a\xeb\xb3\x7d\x90\x1b\xa6\x36\x7e\xee\x8b\x8a\x0b\x27\xea\x0c\x52\x2b\xf3\xd9\x92\xa8\xb8\x5c\x67\xbc\xda\xc8\x29\x36\x26\xf3\xf7\x40\x44\x10\xf1\x4c\x0f\x98\xb1\x48\xdd\xef\x55\x70\xc0\x1b\xa8\xef\xe5\xd9\xb5\x91\xc7\x09\x6f\x1c\xf6\xc9\x19\x70\xee\x85\x68\xb6\x8d\x95\x2e\xe5\x72\x7b\xef\x57\x2e\x5c\x1b\xc6\x1c\x2e\xc7\xc5\x88\xd3\x82\x83\xcc\xa6\x9d\xc7\x35\x15\x9a\x57\xec\x76\x70\x5b\xcf\x8b\x94\x0d\x53\x62\x13\x24\x87\x9c\xbe\xac\xb0\x7a\x8b\xe6\xc5\x6a\x45\x0f\xa5\xba\xd5\xee\x8f\x9f\x2a\xba\x6c\x41\x84\x53\x93\xcb\x08\xda\xea\xf1\x36\x84\x76\x5a\xb4\xf6\x9e\xb2\xf5\xda\xe6\x4f\x9a\xc1\x71\xb7\x06\x7e\x97\xec\x46\x4f\x04\x5d\xe2\x91\x5a\xf0\xfc\x90\xac\x46\x3d\x46\x7e\x60\x42\xc3\xb9\x61\xab\xc5\xf6\xd9\xe4\x13\x57\xb8\x96\x86\xcb\x1f\xa5\xdb\x3c\x80\x29\x02\x8e\xe3\x24\xba\xfe\x2f\x99\x4a\x33\xe5\x6a\x40\xe0\x92\x17\x5b\xc8\xb4\x20\xb0\xa3\xe3\x6e\x3e\x9c\x3a\x55\xdd\xe9\xd1\x52\x2d\x32\x2b\xf6\x3c\x34\x2c\x62\x63\x8b\x59\xd5\x56\xe6\x86\xd5\xee\x94\x30\x13\xae\xdd\x80\xc3\x96\x75\x5a\xc5\x9a\x41\xec\x36\x67\x0f\xdb\x05\xb2\x87\x41\xdc\x6f\x07\x88\x63\x9b\x3b\x61\xc5\x16\xa5\x5c\xbc\x5e\x51\x3d\x30\x49\xa0\xbd\xde\xb1\x57\xdb\x59\x64\xee\x6b\xd6\xdc\x7b\x8c\x4c\x82\xe2\x7d\x49\xb5\xe3\x55\x7c\xee\x43\x57\xfb\xdb\x53\x87\xcd\x29\xd8\xb2\x56\xa7\xe3\x78\x42\x0b\x09\x9b\xea\x5d\xf8\xb7\xcb\xd0\xb6\x0f\xba\x17\xd4\x7f\xc6\x0a\xb9\xc7\xa7\xfd\x7a\x96\xfa\x34\xd8\xb5\x26\x04\xc6\xe0\x78\x93\x4f\xbc\x54\xe6\x1d\x59\x71\xac\x96\x5c\xdc\xc1\x2d\x4f\xf8\x5c\xa0\x34\x5e\x35\x26\x16\xa8\xf2\xc9\x5f\xf5\xff\x95\x6b\x38\x39\x79\x55\xb1\xdb\x9d\x5d\x89\xf0\x65\x6e\xf3\x34\x3c\xdc\xd6\xf7\x35\x32\xf3\x09\x9b\xf1\xca\x7b\x13\xca\xce\x76\x34\xf7\x33\x61\x24\xc9\x92\xcb\x7a\xd7\x82\x84\x68\x49\x26\x72\x8f\x06\x70\x44\x10\x6b\xd5\x37\x77\xf7\x6d\x02\xdd\x3b\xfb\x80\xee\xab\x0d\x3c\xe4\x5d\x5f\xf4\xcf\x9d\x4a\x6c\x4d\xce\xe7\x49\x10\x36\xdf\x7a\x92\x43\xe2\xf7\xef\x9e\x30\x2f\xf8\x3d\xb6\xfd\x35\xdb\xe9\x49\xf3\x19\x63\x4e\x8d\xe1\x37\xff\x19\xb3\xed\x6a\xce\x4d\xa7\x27\x02\x6f\x46\xdf\xd5\x27\x8e\xf3\x80\xfd\x51\xb6\x79\x1f\xe3\xff\x49\x90\x5d\xbc\x79\xa5\xa2\xe4\x5b\x5a\x7f\xc0\x00\xdc\x65\xeb\x1f\x70\xc6\xfb\x90\xde\xed\x3e\xcc\xf1\xe4\xa7\xbd\x0f\x3b\xef\x7d\xd0\x89\x6f\x80\xfc\xb5\x7a\xce\x59\xe1\xca\xc0\x75\x1d\xb7\x7d\xc8\xb1\xef\xee\x53\x11\x3d\x47\xb2\xf7\x38\xea\xd0\xd7\x72\x47\x1e\xae\x7d\x34\xfa\x4d\x48\x83\xca\x9e\xa3\xc6\xd9\x84\x9e\x6d\x72\x1d\xc7\x65\xbf\x60\x65\x0e\x38\xf3\x54\xdb\x0c\x44\xcd\xa7\x20\xcc\x29\x63\x7d\xf7\xcd\xf5\xc7\xa0\xef\xf0\x76\xb7\x40\x1e\xc0\x6a\xf7\x9b\x09\xb5\x27\x96\x75\x19\xdc\xae\x52\xa7\x0c\x76\xbd\x9b\x70\x2f\xa1\xdc\xc6\xd8\x78\x7f\xe0\x33\xfb\xb2\x62\xfb\xc2\xd9\xe7\x12\x85\x3d\xc5\x30\xf9\x9c\x51\x1d\xf3\x75\x9e\x90\x85\xae\x03\xd5\x5a\x3e\xa6\xf2\xf7\x52\x92\x1f\xb9\x28\x5e\x8c\x6b\x4f\x53\x6b\x10\xc0\x19\x08\x4d\xe4\xa5\x7d\x3b\xfa\x13\xbe\x31\x37\xb0\x87\x38\x1f\x28\xfb\xae\xf3\xd9\x6f\x42\xda\x7f\x4c\xb8\x7a\x72\x66\xbf\xc3\xd5\xee\x33\xbf\x9d\x8b\xe2\xfd\x6f\x06\x6d\x38\x98\xad\xc3\x7d\xd4\x1b\x6a\xe9\x81\x5b\xe8\x1f\x93\x04\x36\x18\xf9\xe0\x1c\xb0\xc6\x1d\x7b\xa6\x80\x5d\x63\xdf\xef\x17\x9f\xd4\x27\x1e\x76\xa0\x71\x2f\x5f\x58\xc1\x8a\x9e\x3d\x9a\xa5\xe5\xe3\xe5\xf9\x38\x17\x72\x7c\xee\x93\x82\x1d\x91\xff\xbe\x47\xff\xf6\xb3\x8a\x0d\x3f\x98\x67\xf4\x0f\x73\x83\x4f\xe0\x02\xf7\x41\x1d\x3b\x39\xdb\xcf\xed\x59\x96\x1f\xeb\xf5\xbe\x9b\xc7\xfb\x0e\x9c\xef\xe9\xe5\xba\x0e\x6a\x1e\xea\xe0\xfe\x25\x9d\x5b\xa7\x98\xdb\x4e\xcd\x9e\x21\x3d\xd8\xa9\xed\x7f\xde\x73\xeb\x3e\x29\x67\x87\x7e\x60\xe3\x5a\xd7\x39\x88\x8a\xc4\xea\x40\x1a\x5f\x25\xee\xfb\x5a\x88\x55\xa6\x1f\xa0\x72\x50\xf1\x13\x57\x6f\x58\xc7\xc9\xbb\xae\x17\x8c\xf4\x8a\x77\xe7\xeb\x44\x2a\x79\xd7\xca\xcb\x44\xfa\x3a\xec\x7c\xf1\xcc\x21\xc7\x34\xf3\x8b\x58\x3c\x0c\x32\x10\x16\xe1\x7b\x07\x68\xe8\x3d\x5f\x57\x79\x79\x67\xd7\xcb\x3d\xeb\xa8\xa2\xe3\x74\x9d\x5d\x6a\x35\x46\x11\x99\xc3\x81\xf6\x79\x63\x3f\x72\xfb\x8d\x7b\x3b\xd6\x59\x8f\x6c\xe9\x66\x3a\xa4\xe9\x13\xdb\xdb\x80\x65\xcc\x45\x7b\x4d\xd2\xe1\x4c\x91\xd8\x63\xdd\xf4\xd0\x37\xa6\xed\xb5\xfa\x05\xe5\x8b\x34\x76\x9b\xc1\xea\x82\x56\xb7\x09\xaa\x2f\x62\x39\x55\xcd\x95\x0d\x6f\x02\xb8\x7a\xee\xfd\x51\x9b\xf5\xed\x5b\x5f\x9f\x58\x29\x2b\x4a\x78\xa2\x31\x82\xa1\x59\xdb\x13\x90\x6a\xb7\x29\x2b\x9f\x54\x42\x94\xf2\xa5\xf9\xfa\x88\xe2\xda\x8b\xcf\xc8\x3c\x13\xd8\x7e\xd4\xa9\xf8\xec\x5c\x81\x2b\xf2\x8f\x9a\xfc\x1d\x4f\xe1\xeb\xfb\x00\x6e\x16\x58\xac\x54\x4c\xd8\x1c\x88\x04\x89\x16\xf6\x8b\x4d\x94\x87\x88\x4a\xc5\x05\x9a\xe3\x97\x39\x5d\xc4\x22\x90\x31\xcf\x68\x04\x29\x16\x92\x48\xed\x9e\x04\xcf\xe6\xb1\x75\x56\xd2\x94\x28\xe8\x65\x12\xcd\x71\x50\x4b\x94\x97\xdc\x98\x54\x1f\xca\x14\xd7\x5e\x2f\x44\x94\xae\x8a\x16\x71\x04\x59\xca\xcd\x6c\x22\x33\x12\x1a\x4f\x65\xbe\x69\xc5\x38\x24\x88\x65\x88\x9a\x3e\xea\xbe\x16\xef\x63\xab\xd1\x88\xcf\x26\x95\x8f\x37\x6d\x67\xeb\x4e\x7c\xd0\xf3\x3d\x0a\x6b\xb5\xed\x87\x83\x3a\x31\x50\xc2\x19\xaf\x7f\x8c\xc2\x33\x35\xaa\x78\xa8\x1f\x05\x99\xf6\xf5\x18\x60\xa6\xec\x3b\xdf\x34\x87\x58\x6a\xb9\xda\x6f\xce\xd8\x77\xc0\xfd\x97\xb2\xcc\x99\x0b\x48\x91\x40\x09\xae\x7d\x9e\x26\x93\x76\x0c\x8b\xfe\xe5\x68\xb2\xd0\x80\xb2\x3b\x4b\xab\x02\xf5\x09\x58\x37\xde\xbb\xa4\xd6\xf5\xe5\xad\x87\x7c\x74\xeb\x9d\x75\xa9\xb2\xed\x94\xdc\x58\x40\x3e\x00\x0b\xc8\x96\xcb\xdb\xb1\x9f\x69\x6b\x1b\xf4\x83\xc1\x00\x6e\xec\xb7\x7c\xfe\x99\x61\xb1\xb2\xc2\x97\x2f\x21\xc9\xa4\x82\x29\x36\x1f\x66\xc3\x11\x4c\xf1\x4c\xe3\x3a\xac\xb1\x35\x10\xf9\x02\x2c\xcc\xbe\xf9\xf4\x0d\xae\x60\xfd\xe3\xcd\x9b\xdb\xaf\x9f\x6f\xbe\x5c\xc2\xfa\xc8\x34\xe3\xdb\x66\x7c\x86\x97\x47\x97\xa0\x44\x86\x37\x9b\xbf\x34\xba\x51\x18\xa8\xea\x69\x6f\x94\xa6\x34\x9f\x22\xe6\x03\xa5\xff\x90\xc6\x9a\xda\x3a\xe3\x81\xfd\xc2\xe5\x78\x60\xbf\xe4\xfa\xbf\x01\x00\x00\xff\xff\xeb\x13\x0c\x4a\xe1\x75\x00\x00") +var _web_uiV1IndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x73\xdb\x38\xb2\xff\x7b\x3e\x45\xff\x39\x0f\x7e\xf8\x87\x94\x25\xdb\xb1\xe3\x95\x75\x2a\x93\x64\x76\xb2\xc9\x64\xa6\x12\x67\xf6\xcc\xd3\x29\x88\x6c\x89\x58\x53\x00\x17\x00\x25\x6b\x54\xfa\xee\xa7\x00\x90\x14\x2f\x20\x25\x39\xb1\xcf\xec\xec\xa6\x2a\x16\x2f\xb8\x36\x1a\xdd\xbf\x6e\x34\xc0\xf1\xff\x7b\xf3\xf3\xeb\xdb\xdf\x7e\x79\x0b\xb1\x5a\x24\x93\x67\xe3\xe2\x07\x49\x34\x79\x06\x30\x5e\xa0\x22\x10\xc6\x44\x48\x54\x37\x5e\xa6\x66\xfe\x95\xb7\x7b\x11\x2b\x95\xfa\xf8\xcf\x8c\x2e\x6f\xbc\xff\xf6\xbf\xbc\xf2\x5f\xf3\x45\x4a\x14\x9d\x26\xe8\x41\xc8\x99\x42\xa6\x6e\xbc\x77\x6f\x6f\x30\x9a\x63\x25\x1f\x23\x0b\xbc\xf1\x96\x14\x57\x29\x17\xaa\x92\x74\x45\x23\x15\xdf\x44\xb8\xa4\x21\xfa\xe6\xe6\x39\x50\x46\x15\x25\x89\x2f\x43\x92\xe0\xcd\x69\x70\xf9\x1c\x32\x89\xc2\xdc\x93\x69\x82\x37\x8c\xdb\xa2\x15\x55\x09\x4e\x5e\x73\x26\xb3\x04\xa6\x6b\xf8\x91\xc8\x98\xbe\xe6\x22\x1d\x0f\xec\x2b\x9d\x28\xa1\xec\x0e\x04\x26\x37\x9e\x54\xeb\x04\x65\x8c\xa8\x3c\x88\x05\xce\xf4\x13\xa2\x68\x38\x98\x72\xae\xa4\x12\x24\x0d\x16\x94\x05\xa1\x94\xde\xc1\x39\x89\x44\x57\x06\x1a\x72\xe6\x81\x5a\xa7\x78\xe3\xd1\x05\x99\xe3\x20\x65\xf3\x46\xde\x19\x59\xea\x64\xfe\xd9\xe8\xfe\x6c\x14\x98\xf7\x92\xfe\x8e\xf2\xc6\x33\x4f\xbe\xa6\xc8\xe1\x8b\xfb\xe1\x8b\x5a\x91\xe6\x89\x37\x79\xa6\xcb\x94\xa1\xa0\xa9\xca\x8b\x52\x78\xaf\x06\xff\x20\x4b\x62\x9f\x9a\x5a\x01\x06\x03\x78\x1d\x13\x36\x47\x50\x31\x95\xb0\x24\x49\x86\xa0\x38\xac\x79\x26\xf4\xe0\x69\x82\xc7\x5c\x2a\xa0\x33\xfd\x0c\x88\x40\x60\x5c\x81\xc8\x18\xa3\x6c\x5e\x94\xa1\x62\x84\x2f\xef\x80\x33\x73\x25\xc9\x02\x6d\x2e\x22\x81\x14\xc5\x50\x26\x15\x61\x21\x06\x45\x26\x0c\xe6\x01\x78\x9a\xd3\xae\x07\x83\xc5\x5a\xa2\x58\xa2\x08\x42\xbe\xb8\xbe\xba\x38\x3d\xf5\x4c\xb2\x25\x29\x9a\xf1\xa3\x2e\xef\x06\x4e\x4e\x74\xcf\x06\xb6\x13\x93\x67\xcf\xc6\x03\xcb\xd1\xe3\x29\x8f\xd6\xb6\xdb\x8c\x17\x6f\x75\x09\xe3\x10\x99\x42\x61\x6f\x00\xc6\xf1\x68\xf2\x37\xb2\x24\x9f\x2d\x6d\x3e\x69\x1e\x17\x18\x8d\x07\xf1\xa8\x4c\x92\x4e\x7e\x49\x90\x48\x04\x64\x9a\x0d\xa1\x92\x9e\x32\x4b\x9a\x15\x4e\x61\x2a\xf8\x4a\xa2\xd0\xe4\xca\x24\x42\xce\x9e\x5f\xde\x05\xe3\x41\x9a\xd7\x3d\xd8\x55\x3e\x1e\xec\xda\xa5\x6f\x23\xba\x84\x30\x21\x52\xde\x78\x2b\x41\xd2\x14\x45\x3e\x24\xd5\x37\x7a\xfa\x10\xca\xca\x77\xcd\xb7\x89\xbf\x88\xfc\xe1\xa8\x7c\x9b\xbf\xa7\xd1\x8d\x47\xd2\xb4\xfa\x78\x10\xd1\x65\x59\xc6\xee\x26\xbf\x6c\x55\x9c\x66\x32\xf6\x26\x65\xc2\xae\x64\x33\xce\x55\xa5\x71\xfb\x1a\x7f\x48\x07\x1a\x6d\xed\x68\xad\x83\xb7\xef\xfd\x98\xb0\x28\xc1\x29\x11\x32\x2f\x6f\xb3\xe1\x99\x4a\x50\x6d\xb7\x75\xa6\xd9\x9f\x1f\x22\xa2\x88\xaf\x70\x91\x26\x44\xa1\x6f\xc5\x1a\x0a\xc1\x5d\xa3\x24\xf8\xaa\x6f\x7c\xae\x20\xbf\xe0\xb3\x99\x44\xe5\x8f\xcc\xbd\x5c\xf8\x43\x7b\x75\x2f\x1d\x43\x98\x17\xa1\x5b\xe6\x5b\x26\x82\x25\x0a\x45\x43\x92\xe4\xf7\x35\x9a\x6d\x36\xdf\xd1\x99\x91\xb6\x82\x27\x09\x8a\x60\xc1\x23\x4c\x02\x2d\x2e\x32\x79\x8b\xf7\x0a\x0c\x0d\x2a\x44\x4e\x8b\x2a\xa6\x3c\x89\xbc\xc9\x8f\xb7\xb7\xbf\x80\xe9\x20\x84\x3c\x42\x98\x09\xbe\xc8\x59\xfa\x1a\xc6\xfa\xd1\x64\xb3\xe9\x28\x7f\xbb\x85\xce\x77\xba\xee\xed\x76\x3c\x30\x25\x94\x13\xa3\x68\xf4\x80\xce\x6a\xed\xea\xe8\x86\x40\x99\x72\x26\xf1\x90\x8e\xbc\x35\x7d\x58\xa0\x94\x64\xde\xd1\x8d\x84\x2e\xa8\xda\x53\xcb\xe8\xe2\xe2\xf0\x66\x8f\xd3\x42\x39\x09\x54\x99\x60\x18\x01\x61\x96\x9a\x01\xfc\xc6\x33\x58\x90\x35\xc4\x64\x89\xb0\xa4\x92\x2a\xfd\x1a\xbe\x7c\xfa\x00\x2a\x26\x0a\xa8\x84\x84\x93\x88\xb2\xb9\xce\x94\xb1\x3b\xc6\x57\x0c\x04\x4a\x9e\x89\x10\x9f\x83\x34\xd2\xb8\xd6\xe7\x90\x30\x50\x62\x0d\x73\xae\x73\x4d\x49\x78\xa7\x85\x90\x16\xbd\x82\x73\x15\xc0\xbb\x99\x95\x52\xaf\x5e\x7f\x00\xc5\xef\x90\xc1\x8a\x48\x23\xb7\x67\x3c\x63\x91\x91\xe4\xba\x0c\x81\x12\x15\x50\xf5\x1c\x08\x8b\x74\x7e\xd6\xaa\x6a\x45\x93\x04\xa6\x08\x02\x23\x2a\x30\xd4\x6d\xcf\xab\x92\xa8\x14\x65\x73\x09\xa9\x26\xb4\xe2\x60\xb9\x94\x00\xc3\xd5\xae\xe6\xa0\x41\xbc\xba\xf4\x10\x0b\x7f\x2e\x78\x96\xd6\x78\x19\x60\x3c\xcd\x94\xe2\x0c\x36\x1b\x20\xa1\xa2\x9c\x81\x67\x9a\x7a\xab\x4b\xf4\xc0\xf0\x1b\x4c\x29\x8b\x7c\xa2\x94\x28\x8a\xbb\x9e\x2a\x06\xfa\x8f\x1f\x69\x8d\x26\x74\xc2\xc9\x27\xd3\x45\xdd\x1c\x93\x79\x3c\xb0\x45\xef\xad\x4f\x13\xf5\x47\xbe\xc0\x43\x6a\xc3\x19\xc9\x12\x65\xaa\xfb\x2b\x87\xef\xf3\xe1\xf8\xc4\xb9\x72\x55\xd7\x2d\xde\x5c\xb2\xee\x5b\xc8\xad\x28\x1c\x64\x8c\x64\x2a\xe6\x82\xfe\x8e\xd1\x1f\x53\x82\x35\xe7\xf1\xab\x30\x44\x29\xe1\x0d\x32\xaa\xd5\x73\x9d\x89\xd2\xc9\x6f\x75\xfe\x8e\x38\x5a\x06\x37\xb3\x4c\xb3\x27\x49\x53\xc1\x53\x41\x89\x42\x48\x51\x2c\xa8\x94\x94\x33\xa9\x47\x26\x45\xa1\x59\xcf\x24\xc3\xfb\xd4\x72\xb5\x1d\xf8\x16\xbb\xa6\x93\x0f\x48\x04\x83\x05\x17\xa8\xb5\xbf\xce\x33\x26\x39\x1a\xd3\xd8\x45\x5e\x0f\x06\xab\xd5\x2a\xb0\x28\x25\xa0\x7c\x10\xf1\x50\x0e\xe6\x19\x8d\x50\x0e\x48\x98\x04\x1a\x79\x7b\xa0\x88\x98\x6b\xa4\xfd\x3f\xd3\x84\xb0\x3b\x6f\xa2\xdb\x1e\xf1\x30\x5b\x20\xd3\x98\x8e\xb3\xf1\x80\x4c\xea\xd5\x3f\x0d\x6b\x90\x30\x91\x11\x95\x1a\xe9\xfc\xab\xb0\xc6\xeb\x0f\x12\xde\xe4\x4d\x6e\x0f\x98\x79\xad\x81\x6a\xd1\x2b\x3b\x6e\x54\x16\x10\x2d\x4c\x32\xa9\x50\x04\x70\xab\x1f\x52\x69\x06\x35\x9f\xc5\x30\xc5\x98\x2c\x29\x17\xcf\x35\x78\xd5\x82\xd2\x72\x14\xd7\x9c\x92\xd0\x90\xaa\x64\x5d\xe0\x42\x15\xe3\xe2\xdf\x8d\x61\x72\x55\xf5\x07\x65\x14\xba\x98\x83\x14\x61\x69\x27\xe5\xad\xf5\xc3\x75\xc2\x99\x9f\x52\x76\x17\xc8\xe5\xdc\x03\x6b\x8d\x7a\x67\x57\xe7\x1e\xc4\x48\xe7\xb1\xba\xf1\xce\xaf\x1a\x4c\x37\x19\xcb\x05\x49\x92\xc9\x07\x5b\x48\x10\x04\xe3\x81\x7d\xf2\x98\x44\x37\xd8\xdd\xc8\xa2\x29\x39\x06\x6c\xda\x3c\xfe\x2e\x53\x99\xc0\xa5\xbd\x24\x12\x11\xc6\xdf\x13\x71\x5d\x60\xf0\xd3\xe2\xea\xc2\xa8\xbc\xa3\x75\xf6\x66\x03\x94\xa5\x59\xb5\x67\x9e\xb5\x27\x6f\x66\x34\xd1\x23\x57\x2d\x21\x07\x5f\x50\xbd\xf1\x17\x94\x51\x0f\xd2\x84\x84\x18\xf3\x24\x42\x91\xe7\xb4\x18\xf2\x40\x15\x5a\x80\x48\x86\xab\x57\x61\xf2\xbd\x55\xec\xf5\xdc\x6d\xe6\x1c\x35\x01\xc8\x21\x3d\x36\x35\x69\xbb\xdd\x57\x1c\x4e\xb4\x18\x3d\xc9\xf3\x9c\x68\x6c\xa0\xa1\x81\xee\x11\x54\x30\x82\xb9\x66\x5c\x8f\xd5\x12\x21\xcd\x92\xc4\x17\x9a\xfb\x4e\xb6\xdb\x8f\x16\x35\x6d\x36\x83\xbc\xc8\x26\xce\xad\x77\xd2\xd1\xeb\x3a\x2a\xb5\x54\xb0\x20\x1c\x65\xe5\x85\xa3\xfb\x17\x9d\x16\x5a\xcf\x70\x2f\x29\xae\xe0\xed\x62\x8a\x22\xf8\x8c\x09\x86\xaa\x74\xf6\x14\x95\xe6\xc3\x6f\x6f\x0f\x1c\xfe\xa3\xc6\xd9\xd5\xe3\x98\xc8\xb7\xf7\x29\x61\x11\x46\xd0\xdf\xeb\x11\xc4\x34\x8a\x90\xf9\xf7\xb2\xb8\x92\x8b\xe3\x29\x51\x01\x8f\x3d\x20\xd1\x70\xc2\xf5\x6e\xc4\x35\xb1\x22\x64\x12\xa3\x2a\x86\x34\xd7\xa9\xa0\x0b\x22\xd6\x39\xf2\xcc\x01\xa9\xe2\xf3\x79\x82\xaf\x8b\x4c\x1a\x6b\xda\x6e\x1e\x0b\x31\x9b\x74\x7b\x2c\x5c\x51\x9a\xe0\x7a\x50\xa8\xfc\xc8\x15\x9d\xd1\xd0\x28\xae\x5f\xa9\xa4\xd3\x04\x77\x4d\x28\x7c\x16\xcb\x91\xcf\x2a\xe9\xaa\x82\xac\x2a\x5b\xc2\x18\xc3\xbb\x29\xbf\xf7\x5c\x99\x7c\x4b\x29\x0f\x4c\x2a\x8c\xf2\xe4\x18\x79\x3b\x62\x7a\x31\x8d\xb0\xda\x22\x6f\xbb\x85\xc1\x31\x5e\x8c\x43\xfc\x18\xed\x74\x55\xd9\xdd\x9d\x2a\x2f\xed\x65\xa1\x20\xaf\x0a\xfd\x78\x55\x3c\xc9\x55\xe8\x69\xf1\x22\xbf\x1f\x76\x14\x0e\x56\x9d\x75\xbe\xd3\xff\xfe\x8e\x27\x4b\x63\xe5\xa1\xa4\x73\x6d\xc0\x6a\xdc\xb2\xc2\x29\x50\xad\x65\x67\x24\x44\x3d\x59\x73\x04\x15\xc0\x58\xa6\x84\x4d\x0a\xd3\x96\xa7\xca\xd7\x50\xc7\x1a\x86\xda\xfe\xdb\xe5\x5a\x51\x15\x03\x01\x49\x17\x69\x82\x80\x6c\x49\x05\x67\x1a\xc3\xc0\x92\x08\xaa\x71\x54\x00\xef\x18\x10\x98\x65\x2a\x13\xba\x09\xc6\xf7\xf6\xbc\x2c\xea\xcb\xbb\xc2\x08\x0d\xf9\x02\x6b\x58\xcd\x5a\xad\x54\x56\xd2\x40\x84\xa9\xc0\x90\x28\x8c\xb4\xba\xd6\xad\xec\xa6\xc9\xa0\x83\x28\x2d\x59\xdb\x3b\x50\xc3\x62\x58\xce\x8b\xf1\x78\xd1\x37\x10\xfd\x58\x90\x6a\x59\x38\x98\x5b\xdb\xda\x97\x8a\x08\x85\xd1\x20\xa3\x06\x14\x7e\x17\xf3\x95\xaf\xb8\x9f\x49\xf4\x55\x8c\x3e\xc3\x95\x9f\xd1\x16\x54\xb4\x7e\x64\xc6\x79\x8a\x0c\x05\x30\x2e\x70\x86\x42\x68\x8b\xb8\xc0\xd1\xb9\x7e\x2a\x08\xb9\x6b\x37\xec\xd0\xab\xc6\x97\xdf\x92\x3c\xc3\x06\x02\xec\x65\xd7\x84\x4c\xd1\xe8\x87\xce\x09\x3e\x19\x0f\x4c\xa2\xa3\xda\xe8\x78\x7c\xa0\x3d\x5e\x95\x9a\xbd\x78\xcc\xa9\x07\x4a\x09\x01\xd7\x3b\xd8\x7b\x5d\xe2\x5e\xb8\x56\x3c\xd5\xd0\x4d\xcb\xf5\x67\x7d\x4a\xab\xa4\xe6\xe8\x61\x52\xa1\x64\xbf\xef\xbc\x49\x0d\x62\xf3\xd4\x9f\x0a\xc2\xa2\xc2\xeb\x5b\x1b\xfd\x26\x8d\x5c\xca\x34\x6f\xc5\xd9\xc3\xda\x55\x85\x52\x12\xc5\x92\x86\xd8\x86\x53\x0d\x76\x1d\x8e\x4e\xb6\xdb\xcf\x79\x62\x27\x70\xaa\xfa\xad\x9f\xa0\xe1\x8c\x47\x07\xb6\xfa\xa3\x4e\xf9\x47\x68\xf2\xdd\xf2\xa0\xf6\xbe\xc7\xf5\xe0\x57\x8d\xe6\xbe\xba\xcd\x0d\xbe\xdd\x89\x83\xd3\x46\x1f\x46\x07\xf7\xc1\x09\xbd\x5d\xbd\xe8\xc2\xd7\x0f\x6a\xff\x8b\x3d\xed\x3f\xdf\x37\x0f\x37\x1b\xb7\x9c\xc8\x25\x82\xee\x48\x4c\xe4\x0f\x84\x26\x94\xcd\x5f\x6b\x10\x23\x0d\x3e\x5c\x11\xc1\x28\x9b\x9b\x6b\x99\x19\x37\x99\x57\x85\x8a\x5e\x2e\x20\xb7\xdb\x89\xd5\xd3\x45\xe9\x98\xd0\xd4\xe7\x4b\x14\xb3\x44\x0b\xad\xcd\xc6\xf8\xbd\xb7\xdb\x7a\xaa\x90\x08\x54\x5a\x0a\x18\xe5\x99\xff\x80\x11\x07\x2d\x4f\x3d\x95\x6f\x04\x4f\x23\xbe\x6a\x61\xba\xbc\x97\xc6\xdb\x62\x8a\x8d\xf2\x84\xfe\x02\x59\x56\xf2\x80\x07\x66\xc9\xf5\xc6\x8b\xa8\x4c\x13\xb2\xbe\x9e\x26\x3c\xbc\xfb\x8b\xcb\xd2\x42\x12\xc6\x10\x85\x40\x19\x44\xa1\x6c\x54\x64\x2a\x4b\x68\x03\xe2\xe9\xc6\x69\x32\xb8\x85\x4b\x14\x6e\xb7\x9b\x8d\xfd\xbb\x63\x8a\xf1\x20\xa1\xed\xda\x07\xba\xf6\x96\x45\x96\x25\xae\x75\x81\x63\xd8\xaa\x2d\xce\x47\x7b\xd8\xaa\x39\xb5\x4f\x7b\xc4\xa8\x75\xd0\xef\x9b\x1a\x2f\x80\x86\x9c\x9d\xd4\x2d\x2f\xb9\x9c\xc3\xfd\x22\x61\xf2\xa6\x58\xa1\xd5\x38\x65\x75\x16\x70\x31\x1f\x8c\x4e\x4f\x4f\x07\xc6\x91\x62\xb0\xbf\xce\xae\x7b\x34\xf7\x40\x1b\x85\xdf\xf3\xfb\x1b\xef\x14\x4e\xe1\x6c\x04\xe7\xa7\x4d\xd8\x9c\x12\x15\x43\x74\xe3\xfd\x34\x3c\x87\xd3\xc4\x1f\x06\x67\xc3\x33\x38\x0f\xfd\x21\x04\x67\xfe\x30\x78\x79\x79\x11\xbc\xb8\xba\xf2\x47\xc1\xd5\xe5\x05\x0c\x83\xe1\xd5\x55\xe2\x9f\x05\x97\x23\x7f\xa8\x9f\xf8\xa3\xe0\xf2\x0a\xcc\x1f\x73\x0f\xfa\x55\xe8\x07\x17\xc1\x4b\x3f\xb8\xba\xca\x9f\xfa\x26\x1f\x98\x32\x3e\x9c\xc2\xf0\x7c\x79\x9e\x9c\x83\xae\xea\x3c\x0c\xce\x60\x08\xc1\x8b\xab\x4b\x30\x95\x99\x2a\x2e\x6d\x52\xdd\x9a\xcb\x2b\x5d\xe4\x30\xaf\x63\x94\xdf\xdb\xda\xcf\xc3\xe0\x65\xa0\x73\xbc\x3c\xbd\x08\xae\x4c\xae\x97\xa7\x45\x23\x87\xc1\xe8\x0a\xce\xe3\xf3\xc4\x54\xe3\x9f\x87\x43\x3f\x38\x83\x51\x70\x7a\xfa\xc2\xd7\x3d\x32\x89\x5f\xd8\x96\x7d\x18\xbd\x80\xd1\x55\x70\xf1\xf2\x3c\x19\x05\x57\xc3\x33\xd3\x2b\xdd\xf9\xd3\x17\xa6\xaf\x61\x70\xe1\x07\x2f\x75\x15\xe6\x61\x5e\x85\x6f\xaa\xfb\x70\x36\x82\xe1\xd5\xd2\x3f\x4f\xfc\x73\x43\x3d\xdd\xfd\x33\x7f\xa8\x2b\xb9\xb4\x04\x34\x95\x5c\x5a\x12\x26\xba\x4b\x96\x80\xa6\x92\x51\x71\x6b\x29\x15\xfa\x9a\x70\x17\xb6\x1a\x43\x41\x5b\x4b\xde\xce\xe1\x15\x9c\xc6\xfe\xf9\xef\x8b\x11\xbc\x0c\xcf\x82\x97\x70\x0a\x97\x70\x16\x0c\xe1\x12\x2e\xa5\x6f\x2e\xfc\x4b\xfd\x5f\x5f\xfb\xfa\xda\xfc\xea\x27\xbf\x7b\x83\xba\x49\x2a\x97\xf3\xc6\x6c\xe9\x14\xc4\xad\x9b\xea\x4c\xfa\xc6\x8b\xba\x77\xcb\x81\x8c\x4b\x0c\x77\x84\x43\xd3\xca\xff\x64\xee\x5f\x40\x4a\xa2\x08\x23\x6b\xd8\xfb\x0b\x1a\x45\x09\x56\x6d\xd7\xf8\xbc\xc4\xdd\x02\x49\x14\x8a\x6c\x31\x95\xde\xa4\x84\x62\x15\xcb\xf4\x44\xd3\xe4\x96\xbf\xc7\xf5\x09\xcc\x35\x1c\xfb\x85\x08\x64\xea\x3d\xae\xc1\xc8\xb1\xb4\xb8\xd5\x82\x8a\x4c\x60\x5f\x19\x69\x35\xfb\xff\xd7\x59\xc6\x83\xf8\x7c\xcf\xe2\xfa\xb7\x25\xc3\xb3\xb6\x14\xa7\x0a\x17\x5a\x8e\x1b\xfd\xd3\x5c\xd0\xad\x88\x30\x9d\x2e\xb0\xbd\xf9\xc4\x33\x85\xf6\x81\xee\x8d\x22\xf3\x8f\xd6\xd1\x40\x97\x79\x6c\xcc\x8c\x24\x12\x8b\xc6\x25\x54\x2a\xeb\xad\xf1\x4d\x65\xe6\xbe\x74\xb9\xf8\xba\x4c\xaf\x59\x71\x89\xdf\x5b\x6a\xd9\x54\x4b\xe5\x0f\xc6\x29\x79\x3d\x9d\xfb\x73\xa1\x55\xd5\xdc\x4f\x4c\x57\xf5\x1d\x5c\x9b\x2a\xa6\x44\xf8\x66\x99\x8d\x33\x45\x12\xad\x7b\x9c\x86\x48\x95\x8e\x9a\x0d\x1d\x96\xd0\x66\x63\x6a\xbd\xc3\xf5\xdf\xa9\x8a\x79\xa6\x2c\x27\xb4\xdb\xdc\x2e\xbf\x36\xb5\xea\x53\xae\xa6\xc6\xea\xfa\xa9\xda\xa6\x29\x17\x11\x0a\x3f\xc1\x99\xea\x75\x92\x75\x97\xb0\xb4\x78\x40\x67\x2b\x2e\x6b\xce\xb5\x71\x2c\xf6\x17\xd2\x64\xb1\x4b\xa8\x34\xac\x63\xad\x20\x67\x42\x9b\xb0\xd3\x9b\x97\x12\x86\x89\xcb\xa3\xe3\xb4\xde\x4c\x6a\x3d\xb6\x40\x65\xbe\x1a\xa0\x47\x9f\x0b\xc2\xe6\x58\xe7\x03\x63\xc1\xed\x1d\x73\x5b\x60\x8c\xd5\xb5\x94\x5a\xda\x9d\xc8\xb0\x49\x4d\x98\x9b\xd3\x5e\x7e\x2d\x90\x28\x84\xf7\xb8\x76\x18\xbb\xd5\xa9\xee\x22\x76\x77\xdb\xa6\x3c\x5a\x83\xbd\x9c\x71\xb1\x70\xb5\xd1\xac\xa1\x56\xbc\xa3\x5e\xab\xd8\x66\xd1\x3d\xae\xf4\x3c\x71\x3a\xd9\x6c\x4c\xdc\xc4\x4f\x36\x80\x43\x8b\x39\xa7\x93\xc6\xdd\x0f\xe8\x1d\xc6\x5d\xf5\xc0\x70\xf5\x1e\xd7\x7a\x76\xfd\x4a\x12\x1a\x5d\x2f\xf5\x5f\x6b\x7d\x3b\xdb\x55\xe9\x84\xf1\x44\xf6\xf6\x02\xea\x80\xba\x92\xc1\x27\x51\xc4\x99\xd7\x14\xe4\x7d\x6e\xaa\x72\x5d\xc5\x3a\xd3\xf3\x86\x6b\x19\xe8\x70\xa8\x7b\x20\xf2\x80\xb6\x1b\x25\x32\x6c\x4b\xb8\x1a\xf1\xf6\xb6\x3c\xc6\x24\xf5\x0d\x22\xf7\x26\xb7\x1c\x42\xcb\x6a\x04\x66\x46\x10\x3e\x07\xb4\x51\x23\x70\x87\x6b\xeb\xe7\xb3\x11\x36\x83\x32\x6e\xa6\xab\x63\xdd\xa3\x57\x2e\xde\xe8\x5e\x16\x22\xd7\xdd\x8f\x71\x3a\xf9\xc8\xf3\x90\x45\x86\x18\x61\x64\x5c\x94\x0c\xa5\xc2\x48\xb7\x49\x36\x17\x67\x77\x95\x60\x22\x9b\xb6\x4a\x5e\xe8\x11\xdc\x63\x98\x86\x28\xfc\x9b\xe4\xec\xba\xb8\xd9\xb5\xdd\x70\x96\x79\x97\x5b\x69\xd7\x36\x80\xac\x93\xcb\x36\x1b\xd0\xa0\x85\x08\x24\xf5\xd1\x36\x96\xb7\x73\xbc\xbb\x06\xb8\x6b\x14\xf3\x92\x08\x83\x29\x02\x61\x6b\xb3\x02\x43\xac\x27\x35\x41\x36\x57\xf1\xde\x41\x73\xb5\xbb\x61\xf8\x54\xf2\xb4\x23\x6b\x2c\x17\xbd\xc7\xb5\x35\x5a\x77\x84\x2e\x96\xeb\x6f\x4a\x0a\xbe\x63\x86\xaa\xbd\x21\x38\x75\x72\x57\x8d\xe2\x56\x70\x8e\x15\x95\xee\x10\xa0\xa2\x27\xdf\x65\x2c\x41\x29\x0f\xe4\x40\xeb\xa5\xac\x0d\x4c\xb1\x36\x31\xa9\x2f\x88\x16\xcf\xcb\x65\x09\x07\x0f\xc1\x76\xfb\x6b\xc1\x45\x7f\xfb\xfc\xf3\xc7\x1e\x07\xe7\x66\x33\xb0\x0d\x75\xb7\xab\x4d\xf5\x08\x13\x54\x68\x3b\xe3\xf5\x86\x34\x55\xd6\xa8\x2a\xda\xae\xe1\x77\xb0\x11\x56\x40\xe5\x27\xce\xd5\xb5\x05\x06\x86\xc6\x6f\x4c\x3d\xb9\x84\xe8\x26\xf5\x78\xa0\xa9\xd5\xa1\x9c\x7a\x1e\x3d\x41\x84\xc3\xdd\x72\x80\x11\x55\xff\x96\x06\xc1\x13\x98\x03\xb5\xc9\x56\xb3\x06\x34\x4a\x34\x01\x85\xff\x31\x08\x1e\xd3\x20\xa8\x3d\xfe\x13\xd9\x03\x20\x15\x0d\xef\xd6\xbe\x0c\x05\x4f\x92\x03\xad\x83\xa7\x31\x0f\xe6\x02\x91\x99\x97\x5a\xf4\x1f\x66\x30\x1c\x6e\x2e\x68\x71\xe2\xf2\x25\x57\x2c\x87\x5d\xdd\x89\xf9\xf1\x5c\x10\x24\xf7\x07\x07\x46\x98\x38\xde\x6a\x60\x66\x53\x14\xa5\xb9\x9c\xb0\x26\x42\x6a\xb7\x8d\xa0\xd0\x25\x0e\x86\x7e\xff\xf6\x37\xf8\xf0\xf3\xeb\xf7\x6f\xdf\x38\xd4\x83\x0d\xb4\x72\xb4\xa2\x19\x7b\x0d\x4e\x43\xc7\x05\x30\x8f\x37\x72\x0e\xb6\x5d\x9a\x46\xcb\xfe\x29\xe9\xb6\x9f\x5a\x74\x38\x04\x8d\xda\x31\x71\x83\xd1\x62\xbc\x8e\xc4\xa2\x6d\x24\x5a\x56\x92\xe1\x1b\xd4\xe8\x3e\x72\xdb\x1f\x25\x88\xdb\xcf\x29\x1d\x2b\xb4\x25\x76\x29\xa0\x4b\x96\x46\x7b\x00\x63\x39\xed\x1a\x09\xaa\xb8\xa6\x1b\xcb\xd4\xd6\x50\x3a\x4a\xb7\x7d\x98\x7c\x31\x4d\xe9\x81\x35\xad\xc6\x87\x84\x85\x98\xbc\xd5\x80\xe2\x71\x5a\x5f\x00\x5c\x8d\x6f\x4d\x5d\x3d\xad\xfb\x0a\xb8\xda\x66\xb2\x83\xd1\x6a\x9b\x28\x16\x8c\x7e\xed\x88\x1e\x83\x54\x0f\x19\xdc\x1c\xba\xde\xe1\xba\x8b\x84\x2e\xd4\xda\x15\x97\x57\x07\x3a\xfb\x44\xe7\x38\xbe\x98\xe8\x17\xf0\x19\x4d\x9c\xfa\x78\x10\x5f\x34\xc4\x57\x6b\xa1\x39\x90\x31\x5f\x9d\xe4\xe5\x4a\x9b\x2f\xf8\xc8\x23\x7c\x4c\x30\x54\x00\x82\x1a\xd4\x71\x21\x9d\xaf\xc0\x39\x90\x77\x46\xf7\xa1\xb8\x76\x19\x60\x47\xe8\x1a\x5d\x6c\x95\x44\x4e\x79\xe4\xd4\x39\x47\xc1\x29\xe7\xfa\x5f\xed\xe6\x5b\x5b\x2b\x7a\xfc\x06\xff\x09\xca\x7e\x82\xa0\xec\x62\xe1\xf8\x10\x2a\xf7\xc5\x00\xbd\xb0\x71\x3f\xc6\x44\xba\x76\xd8\x48\x40\xe5\xe7\x98\xaf\x28\x9b\xbf\x53\xb8\xb8\xde\xc1\x6d\xe7\x73\xb9\xa8\xeb\xf0\x3c\x2e\xf7\x55\x9a\x06\xaf\x8c\xb4\xfd\x9e\x88\x5f\xf5\x93\x2a\x63\x5a\x81\x64\x83\xab\x31\x7a\x6d\xc3\x76\xdb\x0e\x9c\x72\x37\x5e\x19\x73\xda\x76\xf1\x6c\x36\xdf\x85\x3c\x49\xd0\x4a\x76\x1b\x0e\xfc\x81\x4a\x65\xea\xcc\x03\x82\xbf\xa7\x4c\x8f\xd5\x8d\xd7\xa8\xb1\x1c\xe6\xab\xd3\x53\x10\x7c\xf5\xa3\xbd\x3b\x3f\x77\x7b\x5b\x5c\xab\xf8\xb9\x0c\x34\x92\xe2\x71\xa4\x5e\x6d\x54\x5b\x83\xda\x0e\xd0\x68\xe3\xfe\xa3\x0c\xc1\xf6\x3c\xeb\x10\x93\x05\x4d\x74\x97\x3b\x1a\x7d\xa4\x84\x2c\x4a\xb4\x3a\x3f\xc7\xb2\x5d\x04\xe9\xc1\xe8\xb0\xc7\x57\xe8\x8e\x6f\xcf\x5f\xee\x98\xc9\xc5\x8f\xb9\xdb\xf6\x29\xb8\x70\x38\x3a\x7d\x42\x36\x7c\x7c\xe6\xdb\xc7\x71\x3b\x9f\x54\xa3\x81\x3d\xcb\x54\x87\x11\x24\x8f\x3e\x91\xd9\x54\x25\x78\xb2\xdd\x16\x3c\xdb\xcb\x0a\x95\x9e\x97\x6e\x6c\xab\x36\x62\x4c\xd2\x56\x34\x76\x2d\x13\x29\x77\xb9\x98\x2a\xbd\x5d\xc4\xe3\x66\x53\xe5\x6d\xeb\x32\xeb\x64\xef\x6e\x5a\x39\xd6\xd5\xf2\x37\xbb\x78\x27\x43\x45\xca\x12\xca\xfa\x66\xaf\xf5\x80\x69\x38\x07\x94\x99\xdf\x96\xfb\xab\x52\x7a\x42\xeb\x1b\xe1\x36\x1b\x66\xb0\x8c\x2b\x66\x69\x57\x87\x2b\x76\x69\xd7\x95\xac\xcb\xbf\xfc\x15\xd3\xb4\x81\x83\x5a\xcb\x2d\xbb\x0d\x7d\x89\x95\x46\xb7\x31\x0a\xcc\x0f\x97\x80\x82\x87\x40\x71\xd0\x6c\x54\x5f\xc5\x69\x94\xfe\xaf\xee\xb3\x32\xce\x2a\x6d\x8a\x74\xa0\x2c\xc1\x57\xd0\xbd\xa4\x5d\x8b\x85\xa9\xb5\xa4\x75\xf3\xf5\xc8\xa7\x13\x48\xda\x80\xc5\x1d\x72\xdc\x47\xb7\x8a\xc0\xd8\xa1\xaa\xae\xd0\x74\x7d\x6d\x17\xaf\x60\xbb\x2d\xf6\x56\x6b\xa5\x26\x7b\x03\x7f\x3b\x87\x26\x3e\x2b\x15\x2b\xf7\x17\x44\xcc\xa9\x59\x8f\xcd\xcd\xa8\xd3\x20\x8f\x27\x2e\x7e\x41\xcf\xae\xf8\xac\x2c\x4c\x97\x5b\x5e\x5f\x4c\x6e\xc9\x5c\x5a\x5b\xad\xec\x1a\x9d\x69\x15\x50\xdb\x71\x95\x4e\x36\x1b\xfb\xac\xc2\xca\x8e\x59\x31\xf9\xc8\x4d\xde\x5a\xaa\x3a\xbb\xc7\x17\x13\x13\x3b\x5c\x33\x10\x9b\x72\xa4\x8c\xab\x71\x91\xbc\x66\x3c\xea\x6b\x63\x10\x1d\x66\x38\x1a\x5f\x59\xee\x31\x33\x27\xd6\x14\x97\x52\x79\x8e\x4d\x76\x0e\x9d\x65\x2a\x3c\x48\x71\x95\x5e\x55\x37\x6c\xea\xf3\xdc\x76\xa8\xac\xca\xd8\xf7\x45\x55\x58\xa9\xba\xa3\x4a\xdb\x10\xb6\xc0\xa7\x9a\xee\x55\x14\x09\xb3\x1a\xd7\x65\x45\x56\x17\x64\x6d\xe5\x8c\x2b\x2c\x44\x78\xd0\x54\x4b\xed\x35\xd8\x2a\x17\xb6\xd9\x1a\x1c\xca\x27\x63\x26\xb6\x36\x6a\xed\xdc\xb3\xcc\x62\xaa\x2c\xb4\x4e\x60\x07\xc2\x61\xf4\xef\x74\xce\x21\xf8\xd9\x65\xce\xeb\x74\xdf\x13\x61\x2b\x0c\x3e\xe7\x47\x86\xb8\x7d\x9d\xfb\x30\x6f\xae\xc0\x83\x4e\xd4\x5b\x8e\x4d\x5e\x9d\xe9\xd7\xbb\x37\xd0\x39\x32\x70\xbc\x23\x61\x4f\x47\x7a\xa0\xb1\xdb\x27\xd2\xd2\xde\x2e\x9d\x6d\x35\x75\x55\x0d\xb6\x62\xbc\xaa\xd9\x8e\x97\xf2\x46\x2c\xfc\x09\x8c\xdb\x83\xcd\x5b\xa7\x81\xdb\x1e\xcc\x27\xb5\x71\xa1\x47\x56\x3f\xa2\x6b\xaf\xc2\x66\x4f\x6b\xe8\x36\x99\xad\xd7\xd8\xb5\xc4\xe9\x70\xdf\x55\xca\x3b\xde\xe8\xb5\x25\x03\xcb\x16\xc5\x76\x22\xd8\x6e\x4b\x84\xd1\x57\x57\x9f\x11\x0c\xfd\x66\xc4\x1e\x94\x0d\xfb\x91\x76\x9f\x49\xfc\xb4\x46\xf1\x63\x70\xed\x1e\x5e\x7d\x0a\xab\xf8\xab\xec\xe2\x03\x98\xb5\xd4\x56\xfb\xf0\x43\xa3\xdb\xc7\x9a\xc4\xdf\xca\x28\xde\xc3\xcf\xdd\x86\xf1\xd1\xa6\xf1\x0e\xa7\xe4\xb3\xd0\x44\x88\xe4\x13\xb2\x7f\xfa\xb7\xad\x64\x59\xc7\xf4\xfd\x06\xf3\x3e\x93\xb9\xdb\x68\xde\x3b\xa1\x0f\x98\xce\xad\x48\x3a\x47\xac\x62\xbf\xf9\x6c\x9d\x08\x4e\xdb\xb9\x63\xef\xff\xa3\x18\xcf\x7f\x02\xbb\x57\x53\xf2\x51\x8c\x5e\x0b\xb5\x8e\xb6\x78\x59\xf7\xa6\xd1\xe3\xcc\xdd\x4a\xa3\x72\xbb\xd7\x48\x69\xb3\x13\xd0\x48\x9f\xdd\x8b\x5c\x30\xb5\xf1\x73\x9f\x55\x5c\x28\x51\xa7\x91\x5a\x99\xcf\xb6\x8a\x8a\xca\x75\xda\xab\x0d\x9f\x62\x63\x32\x7f\x0b\x44\x04\x11\xcf\xf4\x80\x19\x89\xd4\x7d\x58\x8c\x03\xde\x40\x3d\x96\x67\x5f\x20\x8f\x13\xde\x38\xe4\x93\xd3\xe0\x3c\x08\xd1\xec\x0a\x2b\x55\xca\xf5\xee\xd9\x2f\x5c\xb8\x02\xc6\x1c\x2a\xc7\xd5\x11\xa7\x04\x07\x99\x4d\x3b\xb7\x6b\x2a\x32\xaf\xc8\xed\xe0\xb6\xee\x17\x29\x0b\x4e\xa8\x75\x90\x1c\xb3\xfb\xb2\xd2\xd5\x5b\x32\x2f\x56\x2b\x7a\x6a\xaa\x4b\xed\x7e\xfb\xa9\xc2\xcb\x16\x44\x38\x39\xb9\xb4\xa0\x2d\x1f\xef\x4c\x68\xa7\x44\x6b\xc7\x94\x6d\x36\xd6\x7f\xd2\x34\x8e\xbb\x39\xf0\x9b\x78\x37\x7a\x2c\xe8\x12\x8f\xd4\x8c\xe7\x87\x78\x35\xea\x36\xf2\x03\x1d\x1a\xce\x80\xad\x56\xb7\x2f\x26\x1f\xb9\xc2\x9a\x1b\x2e\x7f\x95\xee\xfc\x00\x26\x09\x38\xb6\x93\xe8\xfc\x3f\x67\x2a\xcd\x94\xab\x00\x81\x65\x5f\x6c\x22\x53\x82\x40\x47\xc3\xdd\xfd\x70\xf2\x54\x35\xd2\xa3\xc5\x5a\x74\x56\xc4\x3c\x34\x24\x62\x23\xc4\xac\x2a\x2b\x73\xc1\x6a\x23\x25\xcc\x84\x6b\x17\xe0\x90\x65\x9d\x52\xb1\x26\x10\xbb\xc5\xd9\xc3\xa2\x40\x0e\x10\x88\x87\x45\x80\x38\xc2\xdc\x29\x2b\x42\x94\x72\xf2\x7a\x45\xf6\xc0\x38\x81\x0e\x3a\x38\xb4\x16\x59\x64\x9e\xeb\xae\xb9\x63\x8c\x8c\x83\xe2\x5d\x59\x6b\xc7\xf9\xa2\xee\x4d\x57\x87\xcb\x53\x87\xcc\x29\xba\x65\xa5\x4e\xc7\xf6\x84\x16\x12\x36\xd9\xbb\xf0\x6f\x97\xa0\x6d\x6f\x74\x2f\x6a\xff\x09\x15\x71\x8f\x4f\xfb\xcc\xa9\xfa\x34\xd8\xb7\x26\x04\x46\xe0\x78\x93\x8f\xbc\x64\xe6\x3d\x5e\x71\x54\x2b\x2e\xee\xe0\x96\x2f\xf8\x5c\x90\x34\x5e\x37\x26\x16\xa8\xf2\xcd\x5f\xf5\xdf\xca\x3d\x9c\x9d\xbd\xa8\xc8\xed\xce\xa6\x44\x78\x9d\xcb\x3c\x0d\x0f\x77\xf9\x7d\x8d\xcc\x7c\xca\x66\xbc\x72\x6e\x42\xd9\xd8\x8e\xe2\x7e\xa2\x8c\x2e\xb2\xc5\x75\xbd\x69\xc1\x82\x6a\x4a\x2e\xe4\x01\x05\x60\x44\x09\x6b\xe5\x37\x4f\x0f\x2d\x82\xdc\x3b\xdb\x40\xee\xab\x05\x3c\xe4\x00\xc3\xe4\xcf\xed\x4a\x6c\x4d\xce\xa7\x71\x10\x36\x4f\x3d\xc9\x21\xf1\xbb\x37\x8f\xe8\x17\xfc\x16\x61\x7f\xcd\x72\x7a\xdc\x7c\x46\x98\x27\x46\xf0\x9b\x3f\x46\x6c\xbb\x8a\x73\xd7\xd3\x63\x81\x37\xad\xef\xea\x1b\xc7\x7e\xc0\x7e\x2b\xdb\x1c\x32\xfb\x7f\x62\x64\x17\x27\xaf\x54\x98\xbc\x7e\x92\xde\x1f\xcc\x00\x77\xc9\xfa\x07\xec\xf1\x3e\xa6\x75\xfb\x37\x73\x3c\xfa\x6e\xef\xe3\xf6\x7b\x1f\xb5\xe3\x1b\x20\x3f\x2b\xd4\x39\x2b\x5c\x1e\xb8\xae\xed\xb6\x0f\xd9\xf6\xdd\xbd\x2b\xa2\x67\x4b\xf6\x01\x5b\x1d\xfa\x4a\xee\xf0\xc3\xb5\xb7\x46\xbf\x0a\x93\xa0\x12\x73\xd4\xd8\x9b\xd0\x13\x26\xd7\xb1\x5d\xf6\x33\x2a\xb3\xc1\x99\xa7\x5a\x66\x90\xc4\x7c\xdf\xc6\xec\x32\xd6\x4f\x5f\xbd\xfe\xd0\x7b\xc6\x60\x37\x41\x1e\xd0\xd5\xee\xe3\x56\xb5\x26\x96\x75\x1a\xdc\xae\x53\x27\x0d\xf6\x1d\xb8\x7a\x10\x51\x6e\x63\x34\xda\x1f\xf8\xcc\x9e\xc0\x6e\x4f\xd1\x7e\x2a\x52\xd8\x5d\x0c\x93\x4f\x59\xa2\x6d\xbe\x9e\x23\x00\x3b\x36\x54\x6b\xfa\x98\xcc\xdf\x8a\x49\x7e\xe0\xa2\x38\xed\xdb\xee\xa6\xd6\x20\x80\x33\x10\xba\x92\xe7\xf6\x93\x0f\x8f\x78\x0c\x78\x60\x37\x71\x3e\x90\xf6\x5d\xfb\xb3\x5f\x85\x49\xff\x36\xe1\xea\xce\x99\xc3\x36\x57\xbb\xf7\xfc\x76\x2e\x8a\xf7\x1f\x77\xdc\x50\x30\x95\xb3\x19\xbf\xe6\xd8\xed\xe4\xc8\x10\xfa\xaf\x71\x02\x1b\x8c\x7c\xb4\x0f\x58\xe3\x8e\x03\x5d\xc0\xae\xb1\xef\xd7\x8b\x8f\xaa\x13\x8f\xdb\xd0\x78\x90\x2e\xac\x60\x45\xcf\x6e\xcd\xd2\xf4\xf1\x72\x7f\x9c\x0b\x39\x3e\xf5\x4e\xc1\x0e\xcb\xff\xd0\xad\x7f\x87\x49\xc5\x86\x1e\xcc\x3d\xfa\xc7\xa9\xc1\x47\x50\x81\x87\xa0\x8e\xbd\x3d\x3b\x4c\xed\xd9\x2e\x7f\xad\xd6\xfb\x66\x1a\xef\x1b\xf4\xfc\x40\x2d\xd7\xb5\x51\xf3\x58\x05\xf7\x2f\xa9\xdc\x3a\xc9\xdc\x56\x6a\x76\x0f\xe9\xd1\x4a\xed\xf0\xfd\x9e\x3b\xf5\x99\x70\x76\xec\x57\x83\x5e\xeb\x3c\x47\xd5\x22\x51\x1d\x59\xc7\x17\x89\x7d\x9f\x40\xb2\xcc\xf4\x1d\x54\x36\x2a\x7e\xe4\xea\x15\xeb\xd8\x79\xd7\x75\xc0\x48\x2f\x79\xf7\x1e\x27\x52\xf1\xbb\x56\x0e\x13\xe9\x6b\xb0\xf3\xe0\x99\x63\xb6\x69\xe6\x37\xb1\x78\x18\x64\xa0\x2c\xc2\x7b\x07\x68\xe8\xdd\x5f\x57\x39\xbc\xb3\xeb\x70\xcf\x3a\xaa\xe8\xd8\x5d\x67\x97\x5a\x8d\x50\x24\x66\x73\xa0\x7d\xdf\x88\x47\x6e\x9f\xb8\xb7\x67\x9d\xf5\xc4\xa6\x6e\xba\x43\x9a\x3a\xb1\x1d\x06\x2c\x63\x2e\xda\x6b\x92\x0e\x65\x4a\xc4\x01\xeb\xa6\xc7\x9e\x98\x76\xd0\xea\x17\x94\x07\x69\xec\x17\x83\xd5\x05\xad\x6e\x11\x54\x5f\xc4\x72\xb2\x9a\xcb\x1b\xde\x04\x70\x75\xdf\xfb\x57\x05\xeb\xdb\x53\x5f\x1f\x99\x29\x2b\x4c\x78\xa6\x31\x82\xa9\xb3\x16\x13\x90\x6a\xb5\x29\x2b\xdf\x89\x23\x49\xc2\x57\xe6\x93\x4a\x8a\x6b\x2d\x3e\xa3\xf3\x4c\xa0\xfd\x52\x5d\xf1\x2d\xcd\x02\x57\xe4\x5f\x6a\xfa\x3b\x4e\xe1\xcb\xbb\x00\xde\x2e\x51\xac\x55\x4c\xd9\x1c\xa8\x04\x49\x96\xf6\x33\x74\x09\x0f\x49\x22\x15\x17\x64\x8e\xcf\xf3\x7a\x09\x8b\x40\xc6\x3c\x4b\x22\x48\x51\x48\x2a\xb5\x7a\x12\x3c\x9b\xc7\x56\x59\x49\x93\xa2\xa8\x2f\x93\x64\x8e\x41\xcd\x51\x5e\xf6\xc6\xb8\xfa\x48\xa6\xb8\xd6\x7a\x21\x49\x92\x75\x51\x22\x46\x90\xa5\xdc\xcc\xa6\xf2\x58\x7a\xf3\xa1\x3e\xc6\x61\x41\x58\x46\x12\xd3\x46\xdd\xd6\xe2\x3c\xb6\x5a\x1d\xf1\xc5\xa4\xf2\x45\xba\xdd\x6c\xdd\x8b\x0f\x7a\x3e\xb2\x63\xa5\xb6\xfd\x1a\x5a\x27\x06\x5a\x70\xc6\xeb\x5f\xd8\xf1\x4c\x8e\x2a\x1e\xea\x47\x41\xa6\x7c\x3d\x06\xc8\x94\x3d\xf3\x4d\xf7\x10\xa5\xa6\xab\xfd\x90\x96\x3d\x03\xee\xbf\x94\xed\x9c\xb9\x81\x94\x08\xb2\xc0\xda\x37\xb7\x32\x69\xc7\xb0\x68\x5f\x8e\x26\x0b\x0e\x28\x9b\xb3\xb2\x2c\x50\x9f\x80\x75\xe1\xbd\x8f\x6a\x5d\x9f\x13\x7c\xc8\x97\x04\xdf\x58\x95\x2a\xdb\x4a\xc9\x8d\x05\xe4\x03\xb0\x80\x6c\xa9\xbc\x3d\xf1\x4c\x3b\xd9\xa0\x5f\x0c\x06\xf0\xd6\x7e\xa0\xec\x9f\x19\x8a\xb5\x25\xbe\x7c\x0e\x8b\x4c\x2a\x98\xa2\xf9\xda\x24\x46\x30\xc5\x99\xc6\x75\xa8\xb1\x35\x50\xf9\x0c\x2c\xcc\x7e\xfb\xf1\x57\xb8\x81\xcd\x0f\x6f\x5f\xdd\x7e\xf9\xf4\xf6\xf3\x35\x6c\x4e\x4c\x31\xbe\x2d\xc6\x67\xb8\x3a\xb9\x06\x25\x32\xdc\x6e\xff\xd2\x68\x46\x21\xa0\xaa\xbb\xbd\x49\x9a\x26\xf9\x14\x31\x5f\x5d\xfe\x87\x34\xd2\xd4\xe6\x19\x0f\xec\x67\x7b\xc7\x03\xfb\x79\xea\xff\x0d\x00\x00\xff\xff\x32\x69\x2c\xe9\xb6\x7a\x00\x00") -func web_uiIndexHtmlBytes() ([]byte, error) { +func web_uiV1IndexHtmlBytes() ([]byte, error) { return bindataRead( - _web_uiIndexHtml, - "web_ui/index.html", + _web_uiV1IndexHtml, + "web_ui/v1/index.html", ) } -func web_uiIndexHtml() (*asset, error) { - bytes, err := web_uiIndexHtmlBytes() +func web_uiV1IndexHtml() (*asset, error) { + bytes, err := web_uiV1IndexHtmlBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/index.html", size: 30177, mode: os.FileMode(420), modTime: time.Unix(1516661098, 0)} + info := bindataFileInfo{name: "web_ui/v1/index.html", size: 31414, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticAndroidChrome192x192Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x9a\x55\x53\xdc\x0d\xb3\xc4\xff\xbb\xb8\xbb\x43\x70\x87\xa0\xc1\x65\x71\x0b\xee\xee\x12\x9c\xe0\xbe\x10\xdc\xdd\x9d\x20\xc1\x03\x09\x21\xb8\xbb\xbb\x6b\x70\x77\x87\x53\xcf\xf9\x00\x6f\x4d\xcd\x5c\xcc\x6d\x57\xf5\xaf\x2f\x3a\x52\x45\x49\x06\x0d\x99\x18\x19\x00\x00\x34\x39\x59\x49\x35\x00\x00\x3a\xff\x5b\x44\x78\x00\x00\xd4\x56\xed\x11\x00\x00\x80\xb5\x16\x53\x14\x03\x80\x9f\xf1\x28\x2f\xa6\x70\x00\x00\x50\x98\xcb\xaa\x29\x02\x80\x0f\x1d\x00\x40\x43\x00\xe0\x09\x00\x00\xe8\x01\x00\xb8\xb3\x03\xc0\x91\x09\x00\x08\x64\x00\x00\x81\x73\x4e\xb3\xaa\x10\x00\x00\xf0\x66\x0a\x32\x92\xc0\xfb\x7f\x53\xd0\x56\x96\x0c\x00\x00\x82\x9b\x9c\xa2\x14\xc2\x16\x0c\x39\xc0\x4c\x50\xf9\x9b\x9e\x1d\x00\xa4\x8e\xe5\x24\xc5\x34\xbc\x96\x4f\xdb\xbe\x24\xd0\xc8\x78\xd0\xdd\xad\x0a\xd7\xb4\x72\x1d\xb7\x37\x57\x3a\x71\x37\x83\x50\xa1\xfd\x1c\x36\x00\xcc\x28\x90\x01\xb2\x0e\xe3\x52\x40\x0f\xff\x17\xa1\x10\xfb\x85\xef\x68\x97\xf2\x0c\xdd\x93\x71\xca\x46\xcf\xa5\x24\x35\x8d\x53\x75\x1a\xc3\x56\xb1\x1e\x6f\xd4\x42\xef\x8b\x9c\x0b\xbf\xc1\x0e\xfa\x5e\x3b\xc6\xaa\x36\x0c\x1a\xf7\x93\x48\x65\xf3\x19\xf5\x79\x4c\xcc\x8c\xa1\x68\x3d\xd5\x0c\x35\x27\xd5\x79\x73\xf3\x35\x97\xeb\x48\x79\x55\x05\x9f\xd0\xba\x6b\xe0\xdb\x4b\xdb\x39\xe8\x66\x4a\x86\xdc\xff\x7f\x9c\x01\x07\xc4\x5f\x6b\xbc\xce\x2d\x5b\xb3\x3f\xd4\x85\x0f\x67\x08\x8c\xbc\x82\x1c\xee\x1b\x56\x91\x0e\x98\x21\x08\x36\xaa\x83\x2d\x87\x2b\x61\xdd\x1b\xda\x71\xeb\x85\xb5\x00\x2b\x05\x64\x53\x35\x5b\xd4\x37\x70\x41\x36\x42\xb7\x93\x03\xf6\xd5\xd8\x98\x51\x40\xc2\x18\xe4\xb7\x49\x7d\x31\xb8\xdf\x34\xa7\x7c\xee\x82\x99\xb1\x3f\xc3\x6f\xa5\x18\x70\xfe\x8a\x0e\x3c\x21\x4f\x31\x3d\x21\xd7\x81\xe2\x27\x7d\xe3\x13\xf7\x17\xcf\xad\x3b\xe0\x37\x6b\x31\x8d\x2e\x82\x4f\x84\xd1\x6d\x31\x2f\xb8\xde\x91\x00\x7f\x4b\x9b\x10\x41\x3d\x10\x38\x44\x44\xb6\xe9\xe7\x84\xcb\x64\xd9\xfd\xe2\xf9\x0b\x30\x16\x9a\xfb\x44\x3a\x03\x3d\xff\x86\x1b\xf2\x7e\xc2\xfc\x0d\xc1\x33\x07\xcc\x8d\xf9\x44\x11\x34\x20\x12\xeb\x15\x4f\x8b\x82\xf2\xa3\xbe\x80\x66\x44\x9c\x4f\x17\xdf\xac\x3e\xb4\xa7\x3e\x94\xba\x3e\xb4\x98\x4a\x0a\xeb\xb3\x98\x24\xb4\x37\x56\x79\x14\xb3\x81\x11\xda\x87\xc9\xc5\xda\xad\x81\xd3\x50\x2f\xa7\x23\x87\xf3\xe5\x07\xc3\x4a\x68\xab\x7d\xea\x55\x94\xa6\x52\x38\xeb\x58\xff\x68\x58\xd6\xa6\x3a\x70\xf1\x76\xe2\x60\xb4\x0b\x1c\x30\x7f\x63\x3b\x23\x84\xbb\xc0\x7a\xa1\x28\xdc\x87\xcb\xf6\x8a\x83\x1b\xea\xde\xd6\x11\x8b\x8a\xc3\xff\xde\x25\xa6\x49\x1a\xff\xc5\xc2\x69\xb0\xd7\x57\x92\x24\x1e\x09\x17\x0d\x07\x19\x26\xa3\x90\x0f\xac\x82\x09\x83\x05\x4a\x82\x82\x40\x40\x88\xed\x02\xb0\x88\xa9\x06\xdf\x09\x80\xe0\x80\x68\x50\x03\x21\x38\x97\x8a\x41\xb5\x17\x99\x27\x38\x46\xea\xa0\x5e\x6c\x51\x5c\xf7\xfb\xb5\x77\x5f\xf3\x6f\xe2\x4f\x04\xf8\x3b\x3e\x3e\xac\x66\x15\x3c\x56\xf8\x1a\x29\x5d\x2b\x2f\xb8\xdd\x95\xa8\xfe\x52\x50\x41\x08\x88\xaf\xeb\x3e\xee\x6e\x1d\x2b\xcf\x2b\x0b\x00\xc4\x07\x7b\xa7\x83\x6e\x27\x2f\x24\x95\xf2\x94\x7e\x74\x27\x46\x88\x9d\xa5\xb1\xfa\xa9\x14\xd8\xa0\x72\xa5\xf4\xa2\x8a\x93\x04\x76\xfc\x30\x49\x5d\x12\xff\xcd\xf1\x9d\x75\x14\xdf\x2d\xc8\x88\x71\xf8\x2e\xf4\xb6\xce\x7b\x57\x4b\xbe\xe5\x53\xf6\x2c\x57\x18\x04\x0d\x70\x4e\x09\xd6\x8e\x2b\x20\xea\xfe\xc4\xbc\x1a\x19\xe5\xac\xcf\x04\xe9\xb4\xc1\xd8\xc4\xf7\xb1\x76\x23\x80\xe2\x78\x01\x98\xf4\x5f\xbf\xbe\x4c\xea\xd9\x6c\xd8\x88\x35\xf3\x96\x26\x23\xe0\xe1\x90\xe3\x30\x10\x0f\xa0\x4a\x15\xf2\x04\x3b\x09\x12\x42\xa5\x38\x46\xf4\x33\xd6\xa6\x25\x7d\x44\xca\x74\xce\x59\xfb\x63\x31\xd8\x62\xcb\x1b\x0e\xeb\x74\xc1\x00\x0e\x53\xd4\x66\x2e\x23\xf1\x18\xaa\x67\x0a\xd5\xaa\x07\xf2\x26\xd1\xe5\xeb\x28\xc9\x02\x22\x06\x40\x05\x44\xa8\xeb\xf2\xbb\x58\x7c\xf2\xb3\x60\x61\x13\x26\x9e\x09\x8d\x97\xe7\x11\x10\x67\x90\xef\xc2\x8f\x39\x6b\x03\xc3\xd4\xd9\x8f\x6a\xb9\x05\xe5\x4d\x30\xdf\x65\xa3\x20\xbd\x9e\xba\x9a\x97\x54\xe6\x70\xf2\x21\x6f\x8d\x62\x06\x58\x4d\xf7\xff\x38\x43\x95\x6a\x72\xc0\x2d\x88\xdc\x7c\x46\xf6\x37\xc0\xe9\x1e\x48\xa7\x7a\x2e\x9b\x19\x4e\x46\x52\xf4\x92\xaf\x9f\x52\x15\x57\xbd\xe2\x39\x24\xb0\x35\x6f\x2c\x45\xba\xf9\x66\x3f\xf8\xd4\x77\xdb\x75\x45\x62\x4d\x2f\xcf\x05\x5f\x28\xd0\x94\xda\xa5\x1a\x21\xa8\x86\xe5\xf1\x1a\x7d\xf7\xf3\xb2\xcd\x2a\x8e\xfa\x61\x5b\x3a\xf9\xae\x24\xb5\xcb\x97\xa0\x38\x1e\x95\xa0\x6f\xbf\x1b\xde\x5b\xb2\xc0\x06\xd5\x23\xe1\xcb\x8c\x1d\x3b\x30\x42\x65\x5f\xc3\xb0\x54\xcb\xd2\x77\x4b\xde\x21\xaa\x2b\xd4\x80\xcb\xf5\x15\x30\x81\x76\x64\xf6\x32\xc3\x74\x3a\x54\x21\xb6\x68\x81\xc0\x27\x7e\xb5\x99\x3b\x88\x6d\xb2\x0c\x6a\x71\x6c\x52\xa5\x67\x7a\x48\xa2\x9f\x0a\xa2\xf2\xd3\x58\xfd\x30\xac\x30\xd7\xcf\xf6\x17\x6d\x55\x7a\xaf\x2c\x13\xdb\x5b\x88\x3f\x75\xf8\x7b\x14\x3d\x0c\xff\xee\xba\x62\x02\x1e\xc6\x90\x03\xa2\xf7\x56\x94\x90\x3c\x4a\xc0\x0f\x19\x82\xad\xcf\x49\xbc\xae\x34\xe2\x89\x5f\xcf\xcd\xdc\x9e\xce\x76\x2f\xca\xd4\x2d\xb7\xb8\x8a\x42\x31\x8a\x86\xcf\xcf\x6d\xd8\x61\x9b\x3f\x4e\x62\x2c\xf4\xec\xfd\x59\xcf\x67\x78\x3b\xb8\x8a\x68\x86\xc5\x93\xda\xb4\x86\x0b\x90\x76\xf6\x8e\x73\x24\x90\x5a\xd4\x44\xc6\x34\xd9\xf7\x85\x33\x5e\xb6\xb9\xf2\x47\x99\x6a\x1b\x48\xa7\xca\x97\xfb\xd1\xbd\x4f\x43\x42\x0e\x35\xfc\x55\xb0\xc6\xc4\x0e\xa8\x13\x1c\xfc\x9d\x2b\x7f\xbc\x3f\x57\xc6\x0f\xf0\x73\x2f\x6f\x45\xfd\x24\xb5\xb9\x56\xc1\xe3\xd5\x2a\xfd\xe7\x1b\xf6\x09\x31\x9c\x0d\xfb\x51\x8b\xb4\x1f\xa0\x72\x57\x92\xba\x15\x6e\xb5\x93\xff\xe1\x63\x64\xc7\x47\xfd\x07\xf6\x1b\xb8\x0e\x46\x42\xb0\x04\xce\x41\x66\x5f\xd3\x1b\xaf\x93\xd2\x7e\xe0\x4f\x52\x2e\xce\x4d\x51\xea\x55\x2d\xab\xa9\x1a\x15\x28\xda\xd6\xfd\xf5\xc9\x45\x30\x5b\x99\x06\xa5\xcb\x95\xd5\x76\xe4\x50\xce\x8b\x3e\x65\xb2\x50\x08\xa1\xec\x8a\xff\x79\x0b\x1a\xae\xd8\x0f\x9a\xa5\xda\x55\x42\x96\xf7\x8e\x5a\xd2\xc1\x76\x3b\xcc\x52\xf1\x3a\xaa\x13\x1f\xda\xc5\x29\xe4\xc9\xee\x72\x36\x10\x14\x15\x28\x0c\xb7\xde\x91\x89\x63\x93\x6a\x27\x5d\x18\xbc\xce\x28\x5c\xf4\xd8\x78\x76\x0c\x0f\x5d\x92\xa7\xb3\x7f\x7d\xcd\x1c\xea\x5e\x98\x88\x4d\xb5\x02\x41\x60\xfe\x50\xcd\x7a\x47\x7b\x14\x63\x9f\xe8\xcc\x74\x52\xbf\x04\x50\x07\x20\x02\xdd\xe6\xde\x5f\x1e\xd4\x09\x10\xda\x9d\x2d\x3e\xbd\xd0\x63\x7d\x13\x8a\x03\x86\x56\xfc\xcf\xff\xc0\xb0\x4b\x24\xd6\x89\x7d\xc8\x18\x1d\xc1\x88\xc3\xff\xde\xad\xb6\xaa\xc3\x03\x2b\x2d\x1c\xb8\x87\xfd\x30\x53\xa6\xec\x74\xef\xf0\x27\x96\xec\x07\x90\x73\x71\xed\xa8\xb8\x10\x81\x01\x24\xca\x58\x6f\xdf\x0b\x05\x70\x5d\x0e\xf4\xd0\x1e\x8a\xe2\x31\x10\x87\x91\x89\x14\x9f\xf2\x50\x00\x2c\x2a\xdc\x69\x2c\x28\xf1\xe7\x0a\xe1\x49\xb8\x0d\x4b\xa9\x19\xba\xdb\x6f\xbd\xbb\x44\x02\x2e\xdb\xbd\x35\xea\xc1\x64\x65\x40\x4e\xdb\xf9\x27\xcf\x7f\xb1\xf8\x4a\x36\xe2\x57\x8f\xd1\x30\x1d\x7e\x0b\xf2\x0f\xca\x3d\x74\xde\xdf\xcf\xe7\x57\x0d\x4c\x20\xf2\x8b\x34\xe4\x99\x83\x23\xf7\xe8\x69\xbd\x25\xd9\x30\xcb\x54\x12\x6f\x41\xee\xf4\x4a\x39\x90\x16\x39\x24\x8f\x98\x4d\xd8\xc5\xe7\x17\xab\x34\x30\x50\x28\x61\x57\x38\x34\xe0\x48\xd3\x9e\xc5\x84\xd2\x51\x8f\x95\xd3\xb8\xd3\x89\xa9\x42\xc2\x11\x4d\x65\xb5\x44\xc8\x42\xa2\x1d\xc7\x08\xce\xa6\x2c\x40\x25\xa4\x08\xc3\x84\xef\xcc\xa0\x12\x27\x8c\xc8\xa0\x0a\x62\xa7\x31\x41\x06\x5b\x45\x14\xe4\xf2\x66\x9b\xf6\xf5\x62\x90\xe9\xa2\xbd\xf7\x99\xc8\xbd\xf0\x8a\xf2\x65\xbd\x55\xde\x46\x1c\xc6\x72\xc3\xd9\x24\x4d\x76\xcc\xd4\x51\xe3\x76\x0e\xac\xef\x87\x1a\x07\x47\x5d\x84\x93\xb7\x64\x36\x9d\xe7\xf5\x0d\x8a\xa2\x93\xfc\xa3\x59\x06\x35\x10\x48\x40\x58\x47\x51\x0d\x0b\x4a\xea\x65\xaf\xa5\x96\x86\x71\x69\x05\xb5\x53\x4e\xfd\x54\x1b\x51\x2c\x13\xd3\xdc\x83\x8e\x9a\x21\xee\x28\x5c\xd1\x54\x26\xb8\x1c\xc3\x98\xec\xa3\x00\x65\x58\x1d\x04\x0b\xcb\x81\x46\x9e\x27\x4d\x9c\x4e\xab\x1b\x1e\x5d\x06\x0d\x3b\xde\x56\x9c\xca\x2c\x41\xb2\xb7\x73\x28\x41\xce\x2c\x29\xb6\x3b\x84\xca\xa5\x25\x3f\x53\x85\x1b\xff\xd3\xe0\x40\x11\xfc\x63\xbf\x4f\x2f\x8b\x98\xc3\x7e\x93\x6e\xd1\x7b\x5c\x6f\x23\x33\x04\x7a\x21\x18\x6d\x48\x04\xe0\x4e\x49\x4f\xed\x7f\x44\x13\xfa\xc3\x56\xfd\x52\x68\xb1\xf3\x6d\xc5\xbd\x16\x15\x9a\x09\x66\x25\xa0\xf5\x15\x26\xa9\xd7\x9a\xa7\xde\xdb\x96\x9f\x35\x18\x0f\x19\xb3\x57\x6d\x54\x10\x28\x24\x96\x08\x8a\x64\xac\xa1\xc1\x3d\xcb\x84\x49\x76\x41\x94\x12\x1f\xec\x2d\x6c\xa2\xeb\x45\xd0\x74\x31\x69\x62\x88\x43\x4b\xeb\xbd\x6c\xa2\x8b\x09\xf9\x4c\x4a\xc0\xb0\xfc\x95\xb7\x96\x72\x52\xdf\x7a\x40\xe1\xdd\x91\xae\x84\x48\x05\x85\x71\x5f\x62\xdc\x13\xaf\x51\x13\x04\x16\x12\x86\x6d\xea\x73\x34\xc0\x49\x9a\x30\x24\x7e\xd8\x96\x34\x7a\x92\x09\x29\xea\xaa\x6e\x97\x89\x82\xda\x16\xe5\x2a\x87\x57\x3d\xee\x36\x71\x08\xe6\x4f\x3a\x55\x4b\xc6\xce\x25\x59\x10\x10\x55\x3c\xf5\x65\xf7\xad\x3d\xd3\x16\x3e\x30\xb6\x2b\x80\xec\x47\x43\x8a\xec\x51\xa4\x96\xf0\xf1\xb1\x9b\x01\xa0\x08\x92\x98\xc3\x82\x12\x79\xd9\x2a\xc4\x93\x98\x5c\x2a\x13\x35\xed\xf6\x19\x27\x8c\x96\x24\x94\xa7\x85\xcd\x7e\x34\x2a\x3d\x7c\x24\xf0\xfa\xa9\x7d\xf5\xd3\x99\x91\x67\xf5\x05\x8c\x7d\x31\x98\xdb\xd9\x55\xa0\x9b\xfc\xc3\x88\x42\x4f\x7e\x53\xd2\xd3\xb0\x8a\xdc\x0b\xeb\xa8\x8a\x45\xe5\x59\x2c\x88\xdd\xb0\xa0\xef\x36\xc2\xdb\xee\xe3\x0f\xe3\x4c\xb9\x2f\x5c\x95\xaa\xe6\x73\x34\x55\xa8\x9f\x44\x9b\xae\x0f\x09\xf4\x56\x59\x2e\x7b\xc5\x1a\xdc\x3e\x83\x84\x28\x57\xf1\xad\xb6\xf5\x7a\x3f\xd7\x4a\x8d\x3e\x36\xec\x38\xf3\x98\x25\x2c\x4a\x2a\x7d\x58\xc9\xd7\x42\x8f\xdd\xdf\x95\xe0\x88\x8d\xb1\xef\x1f\xed\xc4\x5c\x6c\x90\x7b\xa5\xef\xe0\xcb\xf0\x1e\x59\xd3\x6c\x99\x38\xd9\xfa\xc9\x8a\x3c\x29\xf9\x80\x07\x20\x2a\x97\xa5\x46\x96\xd5\x96\xbc\xb1\xeb\xe2\x8b\x74\x68\x0a\x36\xe3\x72\x30\xd7\x2e\x8e\xb8\xca\xbd\x4e\xcf\x51\xde\x4e\xfb\x89\x1b\xb3\xdb\x09\x16\x2a\x71\x35\xcd\x47\x5d\x3c\xc7\xbe\x09\xb5\x32\x66\xb9\x7b\x0f\x6e\xaa\x82\x37\xb7\x73\xe5\x93\x72\x5b\x38\xab\x6a\x8c\x88\xb4\xd8\x06\x3e\x51\xfe\x14\xad\x3e\x11\x6d\xc2\x17\xe0\x31\x48\x41\x67\xa0\x8b\xbb\xb5\xe5\x68\x23\xe6\x10\xf1\x3a\x34\xd9\x0b\xa7\x33\x15\x68\xa2\x96\x26\x11\x5e\x89\x1b\x48\x63\x86\xe0\x6c\x61\x80\x20\x0f\x9b\x7a\x36\x47\x43\xc7\x43\x81\x59\x0c\x28\xf9\xeb\x51\x7d\x35\xa1\x99\x89\xe8\xd9\x0d\x0b\xe1\xc3\xe4\x06\xc4\xaa\x6c\x96\xe2\x5a\xc4\x4c\x82\xf9\x4a\xd7\xea\x50\x8a\x2d\xa7\xb4\x98\x33\xa9\xe2\x5e\xbf\xf6\xc0\x97\x14\xc8\x5e\x56\x92\x76\xd5\xcb\x33\x4e\xdf\x9c\xab\x79\x89\x6b\x32\xbf\xf7\xf6\xc1\xd7\x87\x75\x61\xdd\x5d\x9d\x5e\x0a\x98\x08\xf7\xbc\x73\x95\x84\xd3\xc7\x85\xfb\xdd\x8e\x54\x24\xed\xe7\x3e\xa4\xfc\xbd\x1e\x2a\x0f\xda\x46\x0d\x90\x1e\xd6\x5b\x8b\x56\xf7\xf3\x87\x8e\xc4\x87\x9d\x26\x3a\x21\x84\xec\x9c\xef\x66\xa6\x56\x55\x52\xa3\xd9\xe9\xd2\x73\x9e\x1f\x63\xcb\xd3\x35\xa7\xc6\x61\x20\xde\xc5\x5f\x56\xcb\x36\x06\x37\x64\x2f\x5e\x9b\x7c\x80\x17\x45\x8a\x73\xeb\xe2\x10\xff\x5a\x2a\x0d\x6b\x70\xf9\x68\x0e\x32\xc0\x80\x6f\xd5\x97\x99\x92\x96\xaf\x68\xcb\x45\x2d\x75\x78\xea\x8b\x4f\x4d\xbe\x94\x8e\xee\x4f\x53\x91\x5c\xe8\x61\x0d\xfb\x6d\xb2\x3b\x73\xa8\xdb\xd3\x11\x35\xcd\x09\x80\x20\x01\xb3\xb1\x22\x5b\xd4\x52\x9e\xa7\x2c\x75\x64\x74\x2a\x05\x17\xe4\x7a\x28\xa7\xfe\x2f\xd2\xdb\x1d\x51\x76\xdd\x0d\x75\x91\x28\xcc\x51\x19\xbf\x3f\xfc\xb4\x62\x8b\x49\x5b\x6f\xe5\xab\x30\x52\x93\x12\x44\x49\x25\xd0\x0f\x5b\x46\xb9\xc3\x79\xd3\x92\x7e\xd1\x82\xdd\xa8\x55\x6e\xcd\x3f\x1d\x45\x7c\xb1\x2f\xb0\xbf\xb1\x8e\xa0\x44\x64\x1b\x88\x99\x96\x9f\xd5\x21\x66\x4d\x59\xef\x70\xe2\x78\xda\x6c\xff\xf5\x35\x70\x91\xe2\x87\xd6\xf3\xe1\xb0\xf3\xa3\xf5\xb9\x22\xde\x06\x1c\x14\x0c\xe0\xfe\x0d\xf8\xfa\x64\xae\x3d\x00\xe3\x90\x09\x86\x3d\xb9\xd0\x72\x78\x6b\x23\xb2\xbc\x8a\x3c\x1e\x12\x8d\xb2\xeb\xe6\xaa\x93\xeb\x9e\x00\x74\xc4\x7e\x6a\x7d\xc4\x48\xdf\x78\x32\x29\xf2\xa2\xab\xd5\x39\x56\xf1\x2e\x1c\x1f\xd4\xda\x23\x76\xba\x7a\xd8\x9d\xf0\xd9\xd9\xc9\x46\xf2\xa7\xee\xb2\x09\x2d\xfc\x18\x31\x55\xf4\x11\x03\x6c\xdb\x20\x46\xc8\x14\x85\xa9\x1b\x45\x52\xb2\xab\xe3\xf3\xc5\x49\xfa\xf1\x22\xe8\x71\xd1\x3c\x99\xff\xb1\x69\xb1\xd7\xf5\x57\x02\xfb\xba\xbf\x43\xe0\xd9\x3e\xee\x4f\x52\x0d\xdc\x82\xba\x29\x6d\x31\xae\xce\x9a\x9e\x34\x06\x28\x7d\xce\xd2\xf1\x3e\x46\xfc\x7e\xc9\x54\x59\x2d\xdd\x7b\xb4\xa4\xee\x03\xed\x22\x4d\xc3\x00\xc5\xe7\xb6\xd4\xe9\xf5\x40\x5f\xe5\xb7\xb9\x92\xa6\x9f\x40\x2a\xc1\x21\x37\x9e\x2d\xf2\x66\xac\xcf\x0d\xc9\x25\x09\x96\x22\x1c\x92\x78\x25\xf2\xe6\xbd\x21\x35\x36\x9b\xd3\x3a\x57\x2d\x22\x93\x86\x15\x0c\x1e\xd0\x8d\x1a\x24\xc0\x55\x90\x4a\x80\xfd\xd4\xfd\xb3\x64\x30\xf4\x19\xbf\x58\x19\xb5\x7c\xfb\xd7\xc6\x13\x05\x49\xbd\x63\x6b\xa3\xe8\x7d\x6e\x92\x45\x2d\x18\x12\x50\x9c\x5a\xc0\xc3\x77\x81\x55\xd8\xf2\xf5\x06\x61\x31\x18\xce\x0a\x7a\x21\x48\x1d\x48\x53\x9a\x1c\xa4\x6c\x48\xfc\x22\xf3\xad\xe2\xe6\x38\x1b\x6b\xa6\x07\xd0\xa1\xb3\x5f\xf7\xf1\x75\x7a\x6b\xa9\x3d\x9d\x68\x4b\xd2\x3e\xa1\x05\x06\xbf\xb2\xfe\x99\xca\x99\x1a\xf3\x1e\x1a\x67\x20\x48\xc1\x9c\x1e\x9c\x3f\x9f\xaa\x7e\xfe\x1a\xee\x83\x97\x70\x2f\xa4\x9b\xb7\xe7\xbe\xa0\x07\x98\xa8\xa1\xee\x7d\x5d\xd5\x69\x4b\x9d\xad\x19\xc2\x6f\xdc\x69\x66\x67\x99\xd4\xc3\xad\xa6\x9b\xbe\xc9\x9e\x79\xac\x35\x26\x61\x32\xde\x7e\x8a\xd0\x06\xd6\x5f\x4c\x81\x4e\x8f\xe2\x0b\x18\xfb\x2b\x54\xcc\xba\x03\x77\xe9\x37\x4c\x2b\x86\xa7\xd5\x92\x20\x36\x74\xbc\xbe\x0d\x08\xaa\x4f\xfb\x98\x13\x76\xe9\x58\xe9\x2f\xcf\x8d\x8c\xf1\x57\xb3\x4f\xb6\x1f\xc5\xfb\xc2\xdc\xf5\x04\xbb\xd7\x93\x0c\x3b\x88\xc4\x9d\x8f\x66\x19\xdf\x64\xce\xe9\x88\x43\x97\x37\xcd\x9c\x6e\x38\xd8\x1e\x04\x34\xe0\x49\xc8\x6c\x3f\x54\x57\x64\xa6\x23\xe9\xef\x92\x93\x0f\x7d\x8f\x67\x25\x4a\x27\xcf\x89\x16\x4e\x67\x42\x41\x70\x18\xbd\x51\xe8\x39\xf2\x1c\x8f\x23\xd8\xf8\x96\xb5\x49\x50\x10\x70\x49\xf2\xab\xa5\xad\xb2\xee\x0b\x8a\x22\xf9\xd6\xfe\x58\x1e\x22\x20\x99\xdf\xc1\xfe\xa0\x10\x3e\x2f\x1e\xc8\xa4\xc2\x3d\x79\x7c\x9c\x4e\xe3\x7b\xfa\x1a\xb9\xad\x3c\xf1\x19\x6f\xfd\x13\xe2\x88\xf8\x58\x98\x7b\xc8\x06\x87\xb7\x9e\x12\x2c\xc2\xc4\xc8\x7a\x9c\x2a\x5b\x81\x87\x18\xb5\x3c\xe1\x80\xc3\x30\x5b\x42\x0f\xc9\x39\x45\xbd\x4b\x55\x0c\xde\xf7\x2e\xfa\x1a\xfa\xfc\xdf\x1c\xcc\x81\xe7\x07\x4f\x1b\x76\x54\x63\x90\xb1\x1b\x17\x2b\x19\xeb\x1b\xcf\xa5\xb7\xea\x3b\x89\xca\xdd\xe2\xc6\x7a\x63\x5e\x7d\x90\x9f\x4c\x00\x10\x21\xec\xc1\x75\x39\x09\x73\x3d\xf5\x6e\x54\x7f\xe1\xc6\x56\x3b\x02\x2c\xea\xcd\xb6\xde\xf5\xbb\x9d\x3d\x2f\x84\x0d\x6b\x17\xd0\x3d\x28\xb9\x9e\xf8\xaf\xcf\x3b\xd1\x3c\x08\xa6\x49\x36\x22\xcd\xfc\x5e\xb0\xeb\xf5\x8d\xae\x40\xf9\x17\x5b\x0a\x40\x0b\x74\x74\x68\x70\xa7\x92\x2c\x04\x5f\x7b\x27\xd2\x5a\x0f\x67\xea\x2f\xfe\xa8\xd8\xd3\x4c\xea\xd6\xe1\xbd\xb6\x31\x22\x6f\xfe\x7c\xce\x25\xd8\x44\x0c\xbc\xd9\xd4\xb3\xd9\x18\xa8\x2d\x7d\xb3\xd4\xa0\x8f\xbf\xbb\x6a\xc6\xe5\xb0\xe3\x29\xe9\xb8\x1f\x0e\x3a\xc1\x98\xa7\xda\xa3\x6a\x92\x61\x7f\x93\x12\x50\xf7\x56\x89\x3b\x8e\xc3\xf7\x13\xe5\x36\xe9\x40\xa7\xc1\x58\xb4\x89\x7b\xd6\x80\x66\x31\x5a\xda\xdf\x60\x9d\x13\x5e\x94\x8a\x37\x52\xbf\x88\xc1\x49\x7b\xc1\xe2\xbd\x2e\xce\xbe\x9d\xff\x05\x3f\x58\xb8\x5e\xb6\xbf\xc9\x1a\xe0\x84\x89\xdc\x6f\x4d\x8a\x92\x31\x45\x76\xc0\x0b\xdf\x3c\xe8\x64\x7c\xd1\x0e\x9b\xd3\x36\x16\x49\x78\xfe\xc1\xb4\x64\xb7\xd9\x68\xec\xbd\xb5\x2f\x57\xe0\xd5\x1c\xbf\x12\x7c\x5f\x1a\x49\x75\xe1\x8b\x88\xdd\xd4\x26\x6d\xb1\x73\xce\xa0\x01\x0f\x17\x70\x9f\x7d\x5e\x5b\x6a\x94\x4f\xc7\x9d\x1a\xa0\xe9\xd6\x1a\xfd\xc2\xba\x43\xb9\xcc\x02\x77\xb1\xfc\x8a\xac\x71\x32\xf6\xb0\x2f\x4a\xfa\x14\x7b\xe8\x76\x10\xcf\x63\xd3\xe7\x0b\xfe\x36\x39\x1d\xbe\x53\x42\xde\xd6\xce\x76\x5f\x21\xa7\x43\xfc\x12\x2a\x6a\x83\xf2\xde\x88\xe9\xc7\xa6\x67\x32\x8e\x23\x34\x86\xa5\x34\xd0\xf0\x2f\xd6\xed\x54\xe3\xa1\x4d\x4a\xea\x61\x9b\x6a\xfc\xd6\xab\xeb\x8f\x70\xfe\xdc\x7d\x03\xd1\x79\x69\x19\xf2\xa6\xf9\x13\x5f\x37\x39\x3c\x74\xb1\x98\xeb\x12\x87\xde\xb1\xef\x2d\xd5\x62\x47\xb8\xad\xb9\xf4\xe3\x7f\x4e\xb4\x7d\xbf\x9e\x33\xde\xa1\x84\x35\x02\x5d\xa9\x3e\x3c\x31\xf0\x29\xbb\x58\x09\x9b\x2f\x26\x22\x76\x2e\xe3\xc1\x96\x95\x01\x5e\x79\x5e\xf5\xf0\xde\x3a\x73\x8f\x13\x83\x71\x97\xd3\x55\xe1\x7b\xe0\x23\x17\x23\x96\x2a\x55\xa9\x5d\x5d\x55\x46\x6c\xc1\xb7\xfd\xda\x97\xb8\xb1\xd9\x45\xb0\xc2\xea\x50\x60\xa6\xac\xf9\x20\x77\x70\x28\x79\xc2\x98\xf4\x81\xc0\x45\xd1\xab\x42\x7b\x61\x16\x36\x2b\xd0\xb3\xe2\xe2\xf4\xcf\xfd\xde\x86\xc9\xe0\xee\x8c\xa7\xdf\x7c\x40\x77\xe0\x4a\xdc\x53\xec\x64\xb0\x6e\x77\x76\xf1\x7a\x5b\x58\x1a\x4f\x0b\xd8\xe3\xb9\xd2\x6a\x7e\x6d\x24\x31\xf1\x19\xbf\x68\x82\x66\xa4\xbb\xa1\x28\x16\xbd\x30\x4a\xd3\x64\x25\xa2\xda\x96\x4a\x58\x38\x7f\xb2\xe3\xf9\x2a\x68\xd5\xb7\xc2\x42\x10\xc5\x71\x5d\x4c\x55\xb1\xe5\x64\xf7\xf9\xe8\x37\xd8\x4b\x31\x1f\x53\xe3\x03\xe7\x65\xe8\xbd\x4c\x3b\x67\x6a\x72\xe0\x1f\xed\xb7\x00\xc3\x82\x50\xcf\x32\xe4\x8d\x00\x3b\xa7\xb7\xdf\x68\x5b\x13\xe2\x75\x17\x1b\x5a\x16\x4a\x6b\x14\x10\x2c\x60\xb5\x7e\xb3\x85\xc2\x41\xf5\xc1\x7b\x40\x66\xee\xf8\x26\x92\xf9\x07\x02\x7a\x6d\xd8\x7b\xa4\xd9\x76\x32\xe2\x4b\xcf\x8a\xc3\xa8\x56\x3d\xe5\xf1\xbb\xef\xa1\xc9\xdd\xc6\xf8\xf7\x5f\x9f\x2e\xf2\xff\xfa\x3e\x9d\xf9\xd4\xe3\xac\x8e\x1e\x5f\x1f\x7c\x7e\xe9\x4d\x9c\xbb\x20\xc7\x8e\xc2\x6e\x6b\xca\x93\xcb\x78\x7a\xb3\xb8\xf4\x75\x52\x22\x30\xb2\x44\xe4\xdc\xc4\x0f\x58\xdf\xdb\xe7\x75\x38\xf3\xda\x42\x28\x77\xbe\xcf\xe1\x73\x09\x36\xf6\x13\xc8\x17\x43\x03\xf4\xb0\x03\xa0\x50\xbe\xda\xb2\xda\xd2\x0f\xcd\xbe\xfc\x2f\xa2\x0c\xf8\x01\x4d\xaa\x5e\x82\x56\x0c\xd8\x9c\x43\x91\x97\xad\xa4\xfa\x51\x24\xe7\x04\x96\x2b\x37\x2d\x04\xfb\xfc\x3e\x41\x46\xe7\xb0\x0b\x52\xde\xe8\xe5\xdb\x9d\x6b\x23\x89\x1b\xd8\x0e\xdc\xeb\xd1\x28\x8b\x19\x44\x04\xd2\x0a\xa2\x01\xfe\xc6\x6f\x96\x51\x3a\xc4\xb6\x94\x68\x71\x17\x82\x48\x2c\x0e\xac\xeb\x67\x34\x7c\xfe\x75\x94\x4d\x55\xa9\x1d\x0e\xa0\xf6\xad\x8f\x08\xf3\x12\x38\x32\x5a\x12\xc6\xc9\xf6\x7e\x9e\xd1\xf4\x58\x38\x59\x17\x24\xca\x06\x0a\xe3\x2f\xe1\xcf\xda\x6f\xc8\xe0\x6e\x25\xa5\x5c\x81\x50\x9f\xcb\x8f\x2d\x5a\x50\x78\xd5\x3c\x4e\x20\x44\x69\x5d\xd6\x8f\xb3\x06\x49\xd9\xcd\x97\x0c\x00\xa2\x3a\xdb\x45\x74\x02\x6e\xe7\xe4\x43\x8a\xb8\xae\xac\xbb\x58\x5f\x88\x67\x43\x02\xb5\xc3\x8f\x1c\x79\x7c\x56\xc9\x03\xf6\x94\x0f\xde\x1e\x0f\xca\xc4\xe9\xbc\xbf\x57\xe3\x70\x24\x84\x2b\x6c\xd7\x92\xeb\xc7\xb5\x7e\x0d\xf8\xe5\x86\x76\x24\x31\xe1\xdb\x0f\x99\x4a\x25\x5f\x1f\xc8\x73\x13\x7e\x49\x4c\xbd\x68\x1f\xca\x79\x91\x1a\x85\x1c\xf6\x8d\x7d\xa4\xb9\xe1\x62\x23\x1b\x7d\x83\x10\x1c\x08\xcc\x66\x0b\xfb\x6f\x6d\xc0\x3b\xc3\x50\x40\xad\x17\x02\x21\x78\xea\x30\x15\x0f\x97\x4a\xf3\xfe\x49\xb1\xf7\xe7\xc6\x18\xc2\xa8\x78\x5c\xf2\xb0\xbc\x30\x52\x13\x93\xd1\xb1\x0c\xa2\x5b\xda\x00\xc5\x4b\x62\xe8\x81\xb5\x04\x9d\xc8\x6a\x34\xc9\x58\x48\x55\x76\xed\xd9\x44\xc0\x1f\x8a\x95\x91\x49\x83\x87\x67\xab\x89\xf9\xe2\x71\x58\x62\x56\x59\xf3\xa4\xd0\x3b\x4f\x37\x4e\x78\xb5\xa2\xcf\x67\xa1\x51\xb4\x94\x41\xbe\xb5\x60\xd0\xaf\x0f\xfa\xb3\x88\x64\xcc\x90\x86\x9b\x7e\x84\x7d\xb3\x81\xb0\xe8\xed\xb2\x96\xbf\x61\xdf\xea\x65\xb9\xce\x4f\xc6\x02\xad\x39\x1c\x47\x21\xaf\x74\x04\x1d\x2d\xfa\xe9\x05\x53\x04\x6f\xac\x12\xb9\xa4\x92\xa8\x42\x93\x68\xbe\xf9\x16\x3b\x2e\x7d\xdd\xa6\xe5\xa9\xf5\xb7\x67\x34\x9e\xb1\x8e\x0b\xc0\xba\x83\x07\x12\x80\x3b\xd4\x3f\xd5\x92\xde\x93\x9f\x6e\x2f\x34\x75\x8a\xb6\x1c\x91\x99\x2e\x3d\x9b\x9f\x4b\xc2\x9c\x1b\x9a\x75\x21\x48\x2d\x4a\x5e\x36\xad\x1a\x62\x46\x2e\x1c\xaa\xf0\x81\x65\x94\xdd\xcd\xba\x12\xa5\xa9\x3b\x4c\x9b\xf7\xe9\x1e\x99\x2c\x76\x1c\x6d\xfb\x85\x16\x50\x11\xe1\x24\x17\xce\x63\x89\x26\x3f\xee\x43\xfb\xd8\x17\x7b\xbf\xb1\x9c\x1d\x08\x67\x1b\xbc\x31\xb8\x77\x8e\xf2\x7e\xd7\xd9\x92\x0f\x05\x80\xb2\x1e\xad\x29\x1a\x96\x8d\x43\xb9\x11\x2a\x43\x75\xda\x15\xdd\x9b\x33\x52\xb8\x0b\x11\x06\x67\x14\xf2\xa1\xfe\x29\xea\xca\xad\x89\x08\x1e\xe2\xb3\xbb\xbd\xa8\xfa\xb6\x9b\xf9\xf5\x17\x0c\xde\xe0\x15\xe2\x4c\xe1\xf5\xfa\x3c\xff\x13\x80\xa5\x2f\xd6\x40\xb5\xd1\xd1\xed\xaa\x03\x97\xc3\x9c\xb1\xc6\x78\xf1\xc4\xd7\x5e\x1f\xa4\x47\xf8\x1a\x4f\x3b\xb2\xd6\x22\xcc\xfb\x39\x3f\x7f\x02\xd5\x66\xa1\x90\xea\x61\x3d\x71\xc3\x29\xfc\x8f\xd3\xb5\x13\xc6\x0b\xcf\xa4\xfd\x37\x95\x9d\xa7\x82\xbb\xac\xd0\xcc\xe5\x33\x24\x94\x7a\xff\xdb\x55\x9b\x43\x52\xd8\x59\xda\x63\x3c\x81\x5c\x10\x38\xd9\x10\xbd\x26\x34\xef\xb8\xef\xa0\x83\x98\x6b\xa2\x4d\x50\xd3\x0b\x67\x35\xd3\x20\x96\xef\xcb\x53\x77\xc7\xeb\x26\xcc\x21\x0b\xc0\xbe\x91\xcd\xe4\x57\x47\xc8\x6b\x64\xe9\x90\x60\x4d\x14\xb2\x3b\x11\x9f\xda\xde\x82\xff\x89\x6b\x92\x22\xac\x92\xe0\x20\x14\xac\x21\x91\x17\xcf\x2a\x85\xfe\x7d\xb8\x7b\xc8\xd1\x49\x9e\xc0\xe6\xec\x3f\x90\x28\x24\xb5\xa1\x77\xf9\x71\xbf\x26\x06\x5a\x07\x61\xd8\x35\x9a\x50\xd3\xeb\xe2\xd8\x6c\x95\x7c\xcb\x24\x48\xdf\xee\x5f\x21\x91\xfa\x44\xdc\x4d\x51\xe5\xec\xf2\xeb\x66\x5b\xd0\x17\xa5\xac\xeb\xb5\xfd\xd1\xfd\x03\x24\x3e\xa5\x80\x95\x2d\x01\xa3\x07\x46\xf4\x89\xd9\xb3\x3a\x24\x3f\x89\x55\x68\xe9\x54\x71\x8c\xf6\xf6\xbf\x38\x46\x40\xc9\x97\xd9\xf7\x89\xea\x26\x34\x70\xa5\x0b\xa5\x23\x59\xc1\x04\xb2\x9b\x9b\xaa\x55\xbc\xb7\x8d\x11\x57\xf3\x7e\x2b\xe3\x44\xa7\x55\xca\x35\x6c\x1e\x15\x7a\x5c\x4e\xec\x30\x1a\x93\x63\x36\x96\x43\xc2\xfc\x7a\xd1\xf6\x63\x5b\x1f\x97\xc3\x89\xaa\x9d\xd7\xfb\x07\xfd\x37\xa3\x32\xc7\xc9\x66\xc9\xfb\xa1\x1c\x21\x4e\x03\x6c\x51\x78\xc3\xa7\x57\x85\xa4\x36\x37\xab\xfa\x87\x2b\x69\x84\x07\xa4\x8e\x91\xb3\xff\x64\xda\x0e\x25\x30\x32\x31\xf8\x9c\x98\xfc\x79\xc7\x22\x25\xb5\x90\x8a\x5c\x9c\xc7\x62\x8b\xfc\x83\x62\xa0\xab\xb2\x56\xc0\x7b\xa7\xcf\xc1\x22\x44\x2e\x23\x89\x95\xb4\x18\xd1\x5e\xb3\x7e\x81\x60\xa7\xff\x37\x73\xcf\xd1\xa3\xfd\xa0\x1e\x88\x57\x11\x2d\x3f\x62\xc3\x55\x46\x66\x04\x79\x92\xe6\x44\x4c\xa4\x1e\xbb\x5d\x99\xe3\x32\xc8\xd1\x31\x0c\x54\xb7\x94\x72\x77\x57\xfd\x9d\x07\xc6\xf1\x2e\x6c\x25\x2c\xf2\x84\x27\xbc\x41\xc7\xfd\x33\x05\x9e\x2d\x87\x59\x0c\x95\xd5\xd8\xf7\x5f\x57\x9f\xe5\xb3\xc5\x50\x69\x12\xcd\x12\xa9\xfa\x59\x46\x49\x91\x09\xe8\xb1\x36\x5c\x7c\x60\x9b\x9b\x7d\xdd\x7b\x4e\xc7\x81\x80\xc7\x92\x24\x8b\xe2\x0b\x0b\xa5\x00\x6c\xae\x59\xcd\x51\x65\xb9\xc6\xf4\xf1\xb8\xf4\x75\x58\x5e\x73\x92\xfc\xe1\x45\xe3\x9b\x33\x03\xbe\xf3\x6e\xf8\xf7\x56\x63\xfa\xa5\x76\x54\x80\x53\x82\x82\x38\x04\xbb\x7c\x8c\x78\xfc\xdc\xab\x42\x5e\xa4\xde\x53\xbd\x7b\x69\xe5\x93\xf6\x8b\xb8\xd1\x6e\x4f\xe5\x96\xbf\x4b\xee\xea\x86\x03\xc2\x38\xed\xad\x27\x3e\xf6\x13\xe9\xec\xf5\xdd\x2c\x9e\xd5\x19\xca\x7b\x1c\x9c\x13\x3c\xbf\xb8\x61\x48\x94\x6e\x32\x08\xea\x0e\xe8\xc0\x40\x35\x01\x9d\xad\x65\x26\x80\x6f\xeb\x54\x08\xe1\x4b\x6e\x0f\x4c\x01\xaf\x0b\x04\x60\x1d\x07\x40\x58\x81\x9a\xcf\x81\xc6\x7a\xde\x90\x5f\x17\xb2\xbc\xbc\x6a\xf8\x87\x4f\xa1\x89\xd3\x82\x9b\xf8\x6f\x90\xc0\x40\xf2\x95\x78\x78\xf1\x03\x86\x20\xd7\xd1\x6c\x29\xcb\xf2\x5d\x84\x6b\x54\x4f\x23\x26\x99\xfd\x36\x84\xe5\xb7\xf1\xdb\x16\x22\x54\x41\x8e\x20\x83\x3d\xe5\xc1\xde\xc4\xc2\xa4\x1b\x95\x3f\xa1\x2c\x5a\x66\xfd\xe1\x0d\x8c\x0e\xf8\xab\x92\xbf\x5f\xc7\x6a\xc8\x22\x00\xf1\x8f\xe7\x1c\x6c\x0f\x42\x33\x21\x3d\x3a\x03\xe1\x3c\xd7\x31\x98\xe3\x27\x5b\x64\x17\x0f\x9f\xca\xa3\xab\x6b\x49\xa4\x6c\x64\x40\xad\x99\x6f\x54\x80\x2c\xc2\xbc\x84\x2f\x95\x40\x7b\x65\x36\xfa\x27\x24\x66\x23\x22\xb5\x0d\xab\xc1\x85\xb3\x0e\x07\x2f\x06\x4f\x41\x70\xb9\xd6\x4b\x9c\xf7\x45\xe4\x2d\xfe\x03\xc1\x02\x0a\xd5\xdb\x6d\x5e\xf6\xfb\x4a\xf3\x7c\x24\x15\xb7\x26\x90\x1f\xee\x61\xf9\x7c\x3e\xc6\x70\x1f\xc5\xf3\xe1\xa8\xd4\xdc\x35\xea\x93\xab\xbf\x4a\x0b\xfc\xa7\x86\xfd\x46\x24\xf7\xc5\x48\xbf\x0c\x43\x11\x19\xcc\x29\xbc\xbd\x80\xf3\xb5\xaa\x0a\xb5\x0a\x88\x43\xe2\x2a\x62\x00\x8d\x5e\x67\x6e\xf4\x3e\xd6\x11\x93\x61\xfd\x1c\x51\x27\xdb\xa1\x21\x2e\x83\x1a\xbc\xc2\xb6\xff\x5a\x86\x28\x2a\x28\x57\xf9\xc0\x5a\x63\x68\x5c\xac\x6d\xad\xe3\x58\xfa\x1d\x08\x72\xba\xeb\xce\xbc\x7f\xf7\x48\x12\x87\xbd\x78\x7d\x48\x34\xbc\x9c\x80\x74\x19\xcb\x3e\xae\x99\xc0\x9f\x65\xf6\xd4\xaa\xd1\xdd\xe5\xac\x8c\xe8\xff\x93\xd1\xdf\xa8\xc7\x76\xb3\x05\x23\x01\x14\x4a\xff\xfe\x6d\x45\x88\x35\x0f\x3f\x4c\xc3\x66\xb5\x8b\x68\x88\x20\xbc\x15\xbf\xd7\xc8\xd9\xd9\x43\x34\x46\x02\xe1\x0b\x1d\x7b\x4f\xfa\xc0\xb5\x03\x13\x7d\x38\xb6\x97\x16\xda\x54\x40\x82\xb0\x2e\xad\x40\x62\xb2\x5a\x08\x95\x5a\x8a\xc3\xad\x96\xda\x88\x65\x77\x1a\xfc\xad\x3b\xca\x8b\x0e\xfd\x8b\xb8\x5d\x6f\x86\x74\x8a\x2f\x41\xb1\x2f\xdd\xd5\xd5\x1a\x25\x8e\x32\x3b\x50\x8a\xe2\xe6\xcd\xe8\x68\xe0\x15\x58\xc4\x97\xac\x5d\xc5\x39\x4b\xc0\x0c\x6b\x23\x81\x44\xcc\x04\x01\xc6\x0c\xdd\x41\x42\xa9\xa9\x18\xb2\x3c\xc4\xa7\xa5\xdf\x5c\xa3\xdc\xcd\x29\x6b\xd8\x82\xf5\x1f\x3c\x63\x4f\x37\xa0\xd1\x33\x13\x04\x67\x9a\x21\xa5\xbf\x68\x56\x7e\x20\x8a\xb8\xd1\x7f\x2c\xfd\x12\x44\xf5\x58\xcc\x8b\x13\x7e\x5f\x96\xba\x4f\x25\xc0\xcf\xa8\xc2\x8d\x04\x84\x50\x32\x64\x86\x18\x4d\x30\xce\x4f\x88\x64\x30\xbc\x9e\x74\xdb\x7c\x81\x63\x3a\xc7\xfb\xb6\x52\x7d\x78\x13\x99\x2e\xa9\xf0\xb6\xf8\xfb\xdf\x4f\x09\xbb\xc2\x0d\x54\x92\x7f\x5f\xc4\xa7\x08\x2b\x42\x56\xd8\xe1\x4d\x62\xf1\xbf\x97\xf4\x54\x16\xe6\x1b\x93\x31\xbd\xdf\x2a\x20\x34\x10\x14\xd0\xf1\x22\x0a\xc9\x4f\x9e\x10\xe9\x67\x82\xc0\xba\x61\x32\x51\xd3\xaa\xe2\xaa\x4d\x33\xe8\x56\x88\x27\x25\x4d\x2e\xeb\x34\x55\xb0\x8e\x54\xf3\x64\xa2\x4f\x7f\x3a\xfb\x4f\x3c\x4f\xca\x80\xd6\x2f\x9b\x9e\xad\x6b\x51\x9b\x03\xf7\x34\x18\x69\xbd\xbd\x0d\xe9\x08\x01\xee\x4d\x34\x01\x52\x75\x53\x22\x17\x27\x8c\x91\x3c\xfc\xf8\x9c\x83\xf4\xea\x96\x97\xd5\xc2\xba\x8f\x81\xcf\x5b\x86\x87\x7f\x0a\xa9\xca\x11\x99\xba\x8f\x84\x44\xc1\x1f\x0b\x92\x54\x70\xdf\x46\x1f\xbb\xac\xef\x2d\x52\x45\xf1\x1d\xdc\x06\x7d\xd9\xca\xcd\x7c\xce\x23\xed\xba\x9d\x36\x5a\x08\xfd\xb9\x6b\x90\x02\x2f\x4f\x77\xec\x44\x77\x6b\xce\xb3\x0c\x95\x72\x05\xe6\xea\x26\x96\x97\x10\x77\xca\x44\x55\x1b\x9d\x19\x6a\x12\x25\x1c\x5e\x02\xc9\x50\xc5\xaf\x1b\x18\x4f\x39\x67\xe3\xdf\x04\x97\xf7\x37\x42\x60\x92\xcb\xc8\xef\xf1\x8b\x23\x00\x88\x5b\xf1\xe5\x06\xbf\xc1\x2b\xf2\xac\x4e\xb6\x37\x5d\x48\xc5\xd5\x8d\x2d\x4c\x79\x9f\xf5\xcd\xc8\xbd\x96\x19\xb1\x9c\x48\xa0\xcb\xc5\xac\x8d\xd8\x93\x7a\x97\x34\x02\x05\x24\x0e\x13\xfa\x3d\xe3\x21\xb2\xa7\x72\xeb\xfd\x50\x9d\x00\x41\xa4\xf1\x32\xc7\x2f\x49\xd0\x49\x9a\x11\xc0\x0c\x38\x9b\xee\x9c\xf1\xe5\x1a\xce\x7f\x44\x0c\x24\x93\x24\x21\xcb\x1c\x67\x78\x1f\xe3\x4a\x57\x8f\x77\xd9\x77\x8c\x16\x2b\x5a\x93\x72\x76\xaf\x20\xfe\x18\xf5\x23\x41\xae\x99\xea\x2f\xab\xdc\x5d\xb7\xda\xa8\x0e\xf8\x9d\x89\x55\x70\xfa\xe5\x4b\x3d\xc5\x3f\xe3\x72\x8a\x1f\xdc\x29\x06\x8d\xd2\x3d\xba\xbe\xf9\xe5\x0d\x72\x66\x3f\x4d\x25\x29\xc1\x40\x84\x29\xc3\x12\x6c\x75\x26\x72\x16\x33\xfd\xe0\x67\x47\x0d\x9d\x69\xaa\xc5\x9f\x5f\x72\x15\x29\x07\x02\xce\x6c\x82\x16\x8a\xad\xff\xc9\x04\xc2\x01\xdd\x13\x06\x44\x0f\x27\x26\x72\x0f\x64\xa3\x14\xd3\xc3\x8f\x92\x24\xa7\xa2\x75\x1f\x9e\xd8\xce\xf3\xe3\x3f\xe6\x66\xb2\x18\x6d\x8d\x9f\xa6\xb8\x27\x01\x10\xfe\x7a\xec\xf5\x06\xb6\xe2\x97\x20\x88\xea\xc8\xdf\x7f\x45\xb1\xa5\x18\x35\xe1\x01\xe7\x5f\x1b\xfd\x76\xb4\xd4\xf4\x43\x9e\xa4\x78\x6d\xb9\x51\xdc\xcc\xc0\x58\x00\xa6\x34\xca\x74\x88\x4d\x71\xcd\x6a\xfe\x61\x9d\xbb\x61\xea\x09\x55\xd3\xb1\xeb\xa9\x0e\xfa\x04\x1d\x4a\x37\x13\xd2\x49\x67\x2b\x3f\x0f\xbb\x53\x5e\x8a\xc2\xcd\x17\xb3\x6e\x17\xc9\x25\x86\x8a\xc9\x2e\xdf\x36\xcb\x14\x4a\x86\x01\xed\xd3\xb9\xc2\xec\x7e\x6f\xe1\xe0\xc0\xbc\x4c\x4c\x63\xc3\x0d\xea\x8f\xd0\xec\xf4\x8d\x43\x02\x68\x96\xdc\xaf\xa5\xd7\x6d\x05\x2f\x67\xaf\x4f\xad\xd6\x2c\x6c\xaf\x3c\x56\x0c\xf3\xe3\x43\x16\x28\xe4\xa2\x8d\xb8\x8f\xdb\x99\x43\xdb\xc6\xc1\x82\x8e\x88\x3d\x61\x66\x64\xc6\x51\x42\xcc\xd9\x0f\xeb\x1e\x4e\xdc\x16\x49\xe1\x22\xf5\x98\xaf\x8b\xd5\xdf\xef\xa8\x9a\x08\x7a\x15\xaf\x31\xc0\x8a\x05\xc0\x7b\xe0\xad\x25\x46\x5a\x6f\x5b\x88\xbb\xe3\xfb\x4a\x04\x11\x33\xc7\x0e\x71\x93\xcc\x7b\x73\xc6\x79\x6e\x30\xf0\xa6\xd0\x7e\xa2\x4e\xd3\x6e\xab\x48\x1a\x20\xf1\x7a\x3a\x84\xf2\xd4\x11\x59\x7a\xfa\xae\x3a\xbb\xb8\x5f\x37\x86\x4e\x05\xaf\x7a\xe1\x89\x67\xde\x4b\x11\xec\xd0\xa8\x3c\xbb\x54\x56\x4c\xf4\x6c\xac\x68\x30\x6b\xcc\x77\xd5\xfc\x94\xfa\x2f\xe9\x37\x02\xd3\x9e\x2a\xa2\xad\x7a\x4b\x34\x99\x29\xca\x68\xa1\x40\x7b\x59\x8b\x56\x77\xfc\x10\x8f\xc8\xf4\xd0\x5f\xec\xac\x8b\x9b\xad\xb9\x8b\x0f\xce\xd9\x3e\xd8\xc0\xa0\x6a\x6e\xaf\xba\xe5\x96\xcb\xac\x58\x84\x88\x59\x01\x6a\x4a\x48\x72\x70\x6c\xb7\x0a\x57\x6d\x4e\x30\x39\x9a\xe2\x80\x15\xc1\xb5\x0f\x67\x05\xb5\xd1\x67\xfa\xe4\x08\xf7\xb3\x77\x5e\x24\xe6\x2a\xe9\x58\x38\xe7\x19\x93\x67\xec\x25\x47\x5e\x70\x2b\xa5\xdf\x58\xf5\xe4\x3f\xef\xd7\xa0\x7f\x49\x8f\xcf\x45\x5d\x4a\x60\x98\xbf\xc5\x28\x1c\x98\x91\x7d\x71\xe1\xae\x77\x89\x3f\x5c\x97\xe9\xcd\xec\xba\xdf\x39\x3c\x3f\x7b\x47\x9b\x52\xa8\xe8\x43\x04\x0e\x16\x49\xb7\x43\xbb\x9e\x3b\x40\x79\x1d\x15\xb9\x79\x2c\x28\xf7\xd4\x7b\x13\x67\xab\xa8\x45\xb1\xf4\x65\xf5\x57\x86\xda\x61\x73\x70\xe5\xa7\xc8\x38\xe5\x75\x83\x68\xb2\x3c\x79\x47\x37\x64\x8c\xf8\x22\xec\xe5\x51\x3f\x76\x33\x54\xc1\xf7\xcb\x3f\x28\x53\xcd\x64\x8c\x28\x86\xba\xbf\x2e\xd2\x18\x5a\x06\x7c\xa1\x32\x34\x8c\xce\xb0\xdb\xbc\xdb\x39\xe3\xbb\x2e\x8b\xbc\x08\xaf\xeb\x2b\x9a\x39\xb7\x9b\x18\x98\x3f\xad\x35\xcd\x56\xbc\xff\x57\x84\x2a\xd9\x65\x12\x5f\x86\x3f\xfa\xaa\x96\xf9\x7a\x9c\x7d\xcf\xcc\xb6\x4c\x85\xac\x37\x3b\x65\x25\x3f\x69\x53\x6a\x53\xe7\xa2\x9d\xfe\x58\xa6\xc3\x47\xa3\x32\xeb\x32\x49\x6d\x46\xc1\x98\x5a\x20\x47\xc4\x74\xbe\x4a\xa4\x21\xb5\xd4\xcd\x31\x5a\x60\x1e\x0d\xe6\xc2\x4d\xb3\x37\xc6\xae\xee\x7f\x5f\x38\x6a\x73\x25\x13\xc3\x26\x8e\x1c\x36\x94\x0e\xc4\xb7\xf4\xfd\x49\xb1\x22\x55\xfe\x67\xc9\x63\x74\xf0\xdc\x3b\xc0\x89\xd0\x0b\x51\x35\xe2\x4c\xb0\xf8\x55\xde\x6f\xec\x69\x5f\x18\x27\x00\x7d\x31\x2c\xd2\x66\xf9\x29\xf9\xf5\x3c\xad\x23\xc4\x01\x1f\xe6\x0f\xff\xac\x5b\x94\xa8\xfb\x11\x2e\x32\xe1\xd4\x6b\xd6\xc6\x7a\xa8\xdd\xda\x1f\x8e\x2b\x4f\xa5\xd2\x30\xa8\x6e\x06\x68\x36\x07\x4e\x33\xba\x88\x66\xa9\x31\x16\x72\x7e\x33\x4b\x67\x15\xda\x6a\xaf\xab\xc2\xf6\x82\x96\x5a\x90\x09\x7e\xf0\x90\xac\x67\xa1\x93\x22\x29\x11\x38\x43\x04\xb4\x12\xaa\xa5\x2e\xc8\x5f\x3d\x63\x9e\x1b\x74\x53\x9f\xdb\xac\x7f\xef\x17\x1d\xcf\x93\x53\x22\x7f\xcb\x76\xc7\x88\x10\xe7\x4c\xfa\xfd\x6e\xf2\xe4\x7f\xda\xa0\xa2\x8b\xc3\x77\xe7\xba\x26\xbb\x8f\x28\x48\xff\x10\x70\x3e\xa1\x5f\x1f\x01\xf1\x0f\x29\xdd\xf8\x80\x30\x0f\x37\xec\x16\xb4\x27\xe0\x8f\x1f\x95\x91\x87\x94\x4d\x54\xce\xe8\x74\xeb\x63\xa7\xaa\xce\x2a\x77\xe7\x57\xb6\xaf\x45\xeb\xfb\xb3\x40\x67\xbc\x6a\x9a\xd3\xdf\x8c\x99\x0b\x62\x48\x2f\xed\x9e\x44\x81\xeb\x6e\xf0\x2f\x8e\xca\x6a\x4f\x7c\x1e\x7b\x36\xfe\xad\xa6\xea\xfd\x94\x3b\x30\x0b\xf7\x09\x3d\xde\x80\x37\x6e\x40\xbb\x5a\xb4\x17\xb7\xb9\x14\xfa\x05\x5e\xd2\x94\xa2\xd1\xf1\xfd\xed\xc1\xf2\x15\x64\xb3\x7d\x8e\xee\x6c\x3a\xef\x5d\x21\x34\xa6\x6b\x72\x2d\xaf\x69\x2d\xae\x02\x5b\x87\xfd\xe9\x23\x87\xc6\x9a\x83\x03\x0a\xbc\xe9\x52\x6a\xf9\xdf\x7e\x7f\x4d\xff\x05\xf8\xc2\x3d\xb5\xd5\x87\x82\x64\x57\xf5\xde\x98\xbe\x26\x97\xb8\xa2\x4d\xb5\x3f\x62\x17\x9a\x50\xe8\x76\xff\x1c\x16\x8d\x6d\x02\x68\x54\xc5\x1a\x45\x18\xa8\x63\xb7\x59\x4a\xf8\x0d\xff\x69\xeb\x9e\x59\xbb\x19\x67\x13\x8f\x0a\x09\x10\x4f\x92\x57\xff\xe6\xba\x97\x1e\x39\xe4\xd3\xed\xb7\x86\x5c\xd7\x57\xaa\x8e\x32\xaf\x2d\xee\x2d\x00\x7b\xa6\xdb\x39\xe1\x77\x79\xa6\x78\x01\x57\x9f\x3b\xc6\xdf\xce\xb8\x79\x37\xfa\xb0\x34\x89\x0a\x9c\x8c\x50\xef\xba\x56\x2c\x2e\xc9\xe6\xa2\x65\x12\xec\xe1\x3c\x09\x34\x59\xfb\xee\xaf\xad\x58\x0f\x44\x9f\xef\x59\x1e\xeb\xb5\xec\x8f\x31\xdf\xa5\x62\x0c\x44\x5b\x77\x89\x5a\xb7\xee\xe8\x14\x50\x64\x27\x48\xba\x71\x46\xe8\xec\x37\x16\xc4\x66\xea\x25\x9c\x0a\xcd\xb2\xf9\xe9\xd3\x29\x2f\x7f\x86\xb5\xf7\xd0\x34\xcc\x2b\x5e\x88\x49\x56\xcb\x0c\x30\xab\x3c\x57\x98\x3d\xc0\x29\x5e\xb8\x89\xdf\xf0\xa3\xb8\xa1\x6a\x42\xc0\x28\xdb\xc8\x49\x3f\xd5\x26\xd5\x27\x65\x89\xdc\xda\x51\x48\x6c\xeb\x91\x3a\x4c\xb0\x28\x0e\x89\xd5\xfd\x4b\xb3\xa4\xb0\x80\xf0\xbb\x52\x3b\x6c\xce\x1d\x85\x6b\x9d\xc6\xbd\x95\x1e\x91\xaf\xbe\x52\x5f\xce\x61\xb7\xbf\xe0\x2e\xd9\x5c\x61\x2b\x30\x82\xc8\x76\x89\xe4\x3b\x8a\xdb\xeb\x4b\xc6\x13\x4a\x4b\x12\x30\x81\x30\x60\xba\xb8\x89\xa9\x17\x47\x64\x67\x4d\x1f\xb5\xe1\xe7\xc5\xf3\xa6\xb9\xd4\xcd\x9a\xb9\xd8\x0c\x99\xf9\xef\xa1\x17\x9d\x71\x3c\x29\x76\x67\x22\x43\x62\x5a\x1f\x8a\x53\x8e\xf2\x84\x93\x3c\x69\x26\x57\xaf\xa0\x62\xfc\x68\x4e\x1f\xf7\xf6\xf1\x5a\x46\xeb\x0b\x67\x5a\xa3\x68\x38\x83\xdb\xe7\xe7\xb5\x4b\x34\x0e\x15\x2a\xdd\xe7\x74\x09\xef\x27\x79\xfe\xb8\xdc\x57\x1c\xa7\xe1\x82\x05\x4f\xb6\x50\x34\xec\x80\x23\xbd\xab\xc2\x1f\x55\x2f\xd9\x51\xa1\xe4\xfd\xb8\x68\xd4\x40\x90\x26\xcf\xf6\xec\x61\xcc\xd7\xd7\xa0\xbf\x07\x7f\xd6\xb3\x99\x02\x8e\xbb\x6d\xbe\x0c\xb9\x1a\x01\x9e\xf2\xc5\x77\x4f\xed\xab\x23\x1c\xb9\x27\x4b\xc9\xaa\x22\x71\xfa\x84\x88\xac\xa3\xf2\xe9\xd2\xb3\x4e\x01\x7c\x5a\xad\x88\x67\x09\x04\x03\x56\x03\x24\x1b\x95\x65\x65\xc8\xe7\x72\x3c\x6f\x4f\x6d\x28\x53\xc6\x68\x99\x4d\x85\xde\xba\xf8\x87\x47\xcf\x38\x7d\x1d\xbe\x9e\xf5\xce\xf0\xb6\x8f\x3b\x41\xee\x5b\x2f\x93\x72\x0c\xb0\xf8\x8c\xb6\x5f\x50\x84\x10\xe9\x4c\xe1\x14\xbf\x5b\x96\xd7\x2e\xb5\xcc\xa8\xfc\x79\x50\x1c\xcb\xf6\x44\x21\x6e\x0b\x6c\x71\x94\x65\x5f\xbc\x0c\xf2\xbe\x6e\x7f\x6c\xca\x81\xf7\xbc\xa0\xc8\x4f\xd8\x86\xad\x66\xfc\x46\xcb\x71\x39\xa4\x00\x63\x4c\xcc\x14\x59\x16\x31\x10\x1a\x09\x20\x9a\x25\x24\xb0\xbc\x74\x3a\xab\x36\xef\x9b\x2f\x24\x29\xa3\x97\x77\xbf\x5f\x1d\xbd\xad\x7a\x9f\xad\xc6\x01\x99\x24\x1b\x3f\x68\x87\xc6\x5f\xfe\x39\xef\x89\x8a\x04\x50\x17\x9e\x2a\x33\x2b\xcb\xe1\xc7\x21\xac\x7e\x64\x96\xbb\xbb\x0a\x55\xbd\x6d\x71\x52\xda\x0f\xf8\x99\x78\x39\xb0\xef\xc7\x87\x95\x33\x2e\xac\x80\x1a\x74\xf3\xe4\x76\x36\x77\x5b\x97\xf9\xd7\x89\xf2\x29\xb2\x30\xc9\x2b\xdd\x62\x27\x43\xe2\x7b\x1f\xe6\xa2\x40\x61\xe8\xef\x08\xef\xc3\x6f\x43\xdb\xca\x1f\x31\x2a\x09\x0a\x92\x24\xcf\x4b\x26\xbe\x0c\xe5\xae\x8f\x4b\xeb\xcc\x59\xd2\x2d\xe7\x12\x08\x03\x00\x3b\x07\x73\x66\xea\xe1\xbc\xd3\xcd\xc6\xbc\x2e\x45\xe7\xcb\x0f\x26\x08\xb7\xb9\x68\x30\xa3\xdb\x0e\xe8\x18\x39\x42\x9c\x3b\xe7\x37\x39\x1c\x94\xb7\x80\xe7\x88\xff\x86\x0a\xd5\xc0\x9d\x58\xe5\x66\x69\x04\xa6\xe3\x93\x41\xca\x9b\x5c\x43\x13\x19\x2c\x45\xd8\xe7\x97\x4b\x5f\x82\xe2\xa9\x7a\xd9\xf7\xc7\x16\xf5\x50\x66\x12\xff\x4d\x86\x20\x09\x8f\x12\x30\x34\x45\xbb\x6a\x97\x9c\x4c\x2e\xf0\x7a\xd0\xf6\x61\xd8\xb0\x72\x4b\x06\x41\xc3\x25\xdf\xa2\x90\xcf\x0c\x51\x7d\xf4\xb3\xe6\xaf\x85\x74\xf3\xfe\x12\x94\xe2\x23\xfd\x06\xc6\x53\x01\x8d\xc5\x0f\x5e\x01\xda\x64\xb6\x85\x23\x31\xc7\xd6\xdd\x98\x05\x0a\xd4\x47\xe1\xbc\xf0\xbf\xfe\xfe\xc8\xf9\x8f\x57\xa7\x91\x84\x34\x48\x80\x4a\xca\xe9\xa8\x99\x41\xbe\x61\x04\x89\x6b\x18\xa4\x41\xc5\x98\xad\x7b\x84\x7c\x0e\xd3\x61\x02\x48\x8a\x95\x2a\x8c\xc6\xb4\x01\x80\x68\xf6\xb9\xfe\x51\xa7\x2c\xdb\x1f\x2c\xfb\xf8\x9d\xbc\x30\x4a\xb3\x3a\x1a\x4c\x0d\xbe\x8d\x97\xed\x00\x00\x99\x3e\xe0\x28\x91\x4d\xd6\xc3\x4d\x2f\x30\xcb\xe2\x17\x47\xee\x4c\x2d\xf7\xdf\xf6\xb9\x9a\xda\x2a\x7a\x98\xd3\xfa\x36\x0f\x00\xb8\x38\xa2\x7e\x1b\xe2\x37\x95\xe9\xe1\x73\xa2\x6c\xc3\x1e\xf8\x47\x4b\xeb\xa4\xe1\x40\x3d\xa2\xf9\xfe\x80\xbc\xf5\xc7\xb8\x0a\xed\x64\x4b\xca\xd4\x49\x59\xf1\xba\x9f\xe5\x48\x1a\x23\x21\x63\x6e\xaa\x8d\xae\x2a\xa6\x8f\x0c\x90\xd8\xd3\x31\x05\x4f\x44\x15\x94\xe8\xbd\x86\x76\x7b\x89\x82\xa7\xdb\xae\xaf\x6f\x4f\x26\x8f\xc8\xb3\xe2\x72\xf6\xe5\x3f\xc7\x53\x0b\xa4\xbf\xef\x6a\x13\xff\x39\x34\x59\x1e\x27\x06\x40\x00\x15\xae\x2c\xef\x07\x0a\x00\x48\x9e\xc4\x9e\x1d\xe8\x38\xe7\xc6\x19\xdc\x7d\x04\x03\x8c\x29\x7f\xc2\x23\x86\x9a\xf7\x44\x4e\xf1\x17\x83\x23\x55\xd6\x3f\x4c\x15\x79\xc1\xd9\xd6\x28\x58\x4f\x31\x81\xa1\xa4\x1c\xb2\x7e\x4e\xd2\x8f\xbf\x95\x3c\x1c\xcd\x05\xbc\xef\x0a\xf5\x2f\xcf\xdf\x5f\x54\xf6\x3e\x39\x67\xff\x80\xbf\xb7\x1e\x6f\x86\x94\x45\xfc\x38\xac\xcb\x54\x0c\x57\x1c\x60\x96\x2a\x2c\x4a\x21\x9e\xf5\x0a\xf2\xca\x52\x10\xb9\x1b\xe1\x27\x38\xff\xed\x42\x48\x33\xac\x82\x92\xbf\x87\x07\xb5\x4e\xda\xc9\x26\xf7\xb4\xef\xe9\xfa\x85\x87\x13\x21\x2a\x9d\x41\x39\xad\x88\x8a\x09\x40\x63\x0d\x3e\x1b\x1b\x61\xf4\x2b\x41\x37\xe0\x33\x28\xd2\x0f\x29\x8a\x58\xd6\xe7\x32\x7d\x81\xcf\xba\x1a\x5a\x4b\xec\x4d\xaf\xf7\xe3\x0c\x4c\x20\xe8\x57\x67\xd6\x5f\x6c\x66\x09\x38\xb9\x39\xf9\x2a\x29\xc4\x23\x0a\xf1\x30\x9d\x2d\x9b\x46\x75\x57\xdf\xd2\xa8\xbf\x13\x37\x85\xce\x46\xb6\xb8\x34\xf9\x93\xd2\x3a\x67\x79\x16\x22\x6f\x7e\xf8\x41\x16\x9f\xdc\x43\xd9\xdb\xe2\x9b\xbb\x21\xb8\x3f\x5f\x68\xa5\xe4\x2e\x99\xb3\x3a\x8a\x36\x4c\x4e\x0d\x40\x22\x40\x47\x5a\x20\x42\x33\x25\xc7\x72\xcf\xac\x65\x39\x23\x8a\xfd\xbf\x95\x6f\x6e\x66\x75\x7c\x47\xdc\x93\xd5\xe9\x26\x14\x58\xdf\x68\x0b\xf7\x1a\x3c\xad\x80\x01\x43\x66\x34\x82\x3e\x98\x90\xa2\x38\xcf\x72\x6a\xf8\xbf\x82\xa5\xc9\x36\x62\x8d\x64\x01\xca\x32\x07\x64\xa0\x4a\x9f\xd0\xce\x36\x2e\xb4\x4d\x2d\x4c\x19\x95\x5c\xe5\x0e\x37\xed\xf6\x4b\xe4\x82\x20\x5f\x63\x70\xd3\x46\xb6\x48\xb5\x43\x99\x7c\x25\x9d\xca\x2d\x21\x57\x48\x8b\x4b\x90\xe3\x4d\x9c\x67\x50\x3d\x75\x48\xbb\x5c\x16\x75\x17\x2e\xae\xc9\x9a\xb0\x2f\x1b\x14\xc0\x2c\x1d\x1d\x62\xdb\xf4\x74\xe4\x6f\xd7\x12\x9a\x1c\x33\x42\x33\x4d\x40\xcc\xa4\x51\x4b\x70\x38\x3f\x18\xa9\x45\x22\x05\xed\x7b\x26\x80\x56\x85\x20\xf8\xf7\x7f\x02\xb2\xf3\x5e\xbc\xdb\x50\x67\xc2\xf6\x1f\x5b\xe5\xbb\xf3\x6b\x3f\xa6\x94\x2e\x54\x61\x92\x28\xcf\xab\xeb\x3a\x78\x0f\x38\x66\x6f\x5e\x41\x7f\x0e\xaf\xdb\xc4\xb7\x14\xf8\xb3\x03\xfd\xec\x5f\x85\xe8\xd7\xa5\x01\x48\x1d\xfb\xf1\x91\x11\x23\x78\xa5\x77\x96\x3f\xdf\xce\xa5\xd9\xe5\x04\x31\xb7\xe7\x6e\xcf\x60\xe3\x51\x30\xa0\xff\x02\xb9\x7c\xe1\xc4\x32\xcf\x8e\x2f\xf0\x9b\xf0\x7e\xf5\xfa\x87\x26\xcf\xa4\x63\xbf\xb7\xb6\x3d\x38\xf0\x3e\x3c\x11\xd8\xa4\x5c\x10\xab\x13\xd5\x5d\x5f\xc4\x95\x59\xd5\x3d\x5a\x8f\x6a\x9a\x10\xfa\x9b\x56\xee\x6f\xec\xf9\x60\x63\xaf\x6d\x00\xd4\x69\x24\xa4\xda\x9d\x84\x43\xf1\xa0\x4e\xa9\x96\x69\x79\xc4\xbb\x6f\xef\xdb\x08\xb0\x6a\x55\xd9\x20\x11\x53\x98\xb6\xa4\x99\x5e\x0b\x38\x52\x3a\xec\x5d\x6c\x5a\xc3\xee\x5b\xef\x07\x26\x4c\x78\xb6\x67\x1b\x9e\x7a\x61\xae\xe4\x8d\x13\x81\xfb\x6d\x8b\x21\x32\x36\x96\xf7\xce\x08\xc1\x99\xc8\x1f\x39\x63\x7e\x39\x74\x60\x85\xb8\x51\x87\xb8\x4e\x9a\x6c\xfc\xeb\x87\x78\xb7\xb3\x4c\xff\x1d\x1f\xc7\x98\x97\x1f\x15\x72\x32\x9f\x3f\x10\xf6\x55\xd4\xa9\x25\x9b\x40\xf9\xb1\xf1\xce\x0d\xb6\x6d\x00\xdd\x2f\xe1\xbb\x40\x04\x91\x3b\x01\xc0\xbe\x97\x41\xa2\x8a\x19\x8e\x02\x35\x72\xf3\x03\xab\x07\x67\x05\x5b\x23\x69\x0f\xbf\xbe\x64\xe6\x69\x3b\xa5\x3e\xb4\x0a\xbf\x4f\xb7\x9c\xa0\xd9\xd6\x79\xc9\xa7\x77\x74\x82\xf6\xf7\x82\x60\x64\x0d\x8b\xfc\xdd\xe8\xe3\xd4\x34\xc2\x66\x47\x39\x2a\x72\x13\x8a\x6d\x00\xde\xfa\x6b\x30\x6b\xe2\xc4\x23\xb1\x54\x6d\xd4\x26\xfa\xbe\x23\x3f\x6c\x96\xcc\x0a\x17\xd0\x17\xe3\x91\xdc\x04\x00\x14\xcb\x73\x2a\x51\x8d\x66\x7f\x78\x49\x44\xd4\xcb\x14\x9a\x62\xd8\x3f\x66\x21\x67\x2d\x9d\x3d\x73\xe3\x09\x95\xf5\xc9\xe2\x1f\x9d\xda\xae\x7f\xe4\x5d\x5f\x52\xf7\x72\x17\xb6\xcf\x73\x38\x5e\x0d\xc1\x63\x8b\x4d\x69\x6f\x49\x98\xd4\x2e\x94\xc2\x66\x2e\x97\xca\xbc\x52\x5c\x7a\x20\xcb\x9f\x20\xfd\x8e\x5a\x33\xca\xb5\x69\x63\x49\x05\x1f\x49\x66\x88\xa4\x9c\xd3\x9a\xc9\xf7\xf5\xca\x6a\x7b\x70\x6b\x6e\x32\x03\xa2\x8a\xbb\xca\xcd\x19\xd7\xfd\x2b\x97\x6d\x2d\x8a\x71\x3b\xeb\x08\xb5\xdb\x3e\xb9\xee\x2b\x2f\x9b\xca\x2f\xd5\x0c\x15\x49\xfb\x51\x8f\x90\x4d\x5e\x2f\xc7\xf4\x81\x20\x4a\x76\x05\xb9\xaf\x22\x39\xbf\xf3\xc5\x51\x7b\x1d\xfe\x32\xc2\x7a\xf0\xc7\x4d\xa8\x6f\x2f\x5f\xed\x0b\x33\x6b\xbe\x3f\xfb\xf4\x1a\xf8\xde\x42\xee\x8e\xc9\x5b\xd2\x90\x4b\x34\xb6\x3e\xda\x4c\x2f\xd0\x99\x96\x8c\xf4\x1c\xfd\xd9\x58\x4c\x0f\xc4\x39\xe2\xad\x22\x6d\xe9\x18\x46\x83\x03\xb6\x25\x8d\xe2\xfc\x2d\x44\x7c\xfc\x20\x78\xe7\xc9\xac\xdc\xa0\x54\xb8\x07\x3d\xb1\x46\x36\x23\x22\xad\x8d\x77\xe7\xd6\x5f\xa8\x67\x6d\xb0\x22\x2f\x5d\xfc\x65\xbc\x6e\xfa\xc4\x2a\x7d\x07\x38\x0b\x38\xf1\xe8\x04\x25\xca\x43\xf8\xcd\x08\x5c\x29\x60\xc0\xc2\xbc\xb1\x2a\xf2\xe6\xc6\x4f\xfc\xfd\x8d\xf9\xd9\xd5\x5a\x73\x48\xeb\xef\xb5\x60\x01\x30\x26\xf7\x13\x20\x66\x86\xe6\x07\xe6\x81\x80\x95\xc5\xa1\x53\xc2\xe0\xd8\xe2\xfa\x50\x29\xcd\xfa\xd7\x93\xa6\x4e\xd8\x3d\xd6\x90\x7c\x5d\x53\x10\x34\x93\x04\xe7\x63\x29\xfe\x98\x94\xaa\xb9\xef\x9f\x9d\x7e\x7b\xac\x6a\xab\x81\x90\xeb\x4d\x25\xba\x6d\x45\x3c\x54\x83\xf2\xce\x58\xd0\x69\x33\xdd\xf7\xf7\x53\x19\xeb\xed\xfc\x0f\x13\x72\x18\xb2\x3c\x35\xc5\x5c\x85\x88\x55\xc1\x66\x63\xb9\xe4\xac\xaf\x07\xb9\xc2\xa1\x0b\xf6\xa3\xad\xb7\x7f\x73\xa4\x6c\x34\x1f\x90\xa4\x86\xb9\xb4\xd5\xe8\xef\x4a\x52\x6b\x19\xe8\x02\x50\xb9\x52\x80\xf1\x22\xd9\xd4\xbe\x2b\x2f\xb1\x66\x37\x3f\xc6\xab\x73\xe3\xb5\xfc\xe7\x71\x03\xb5\x09\xa0\x09\xff\x2c\x8e\xe8\x94\x01\xf2\x7b\xf9\xa0\x2d\x7a\xea\x47\xb8\xb5\x79\x07\xc1\x5c\xe8\x84\x29\x3c\xd2\x9b\x11\x5c\xd4\xdd\x30\x7e\x00\x43\x45\x72\x20\xbb\x5e\xc2\xdb\xdd\xdc\xeb\xdf\xf7\xfd\x27\x13\x6f\xf7\x9d\xd5\x9a\x81\x60\x7c\x59\x98\x65\xdd\x18\xad\xd0\xee\x72\x15\x22\x0f\xd4\xc4\x22\x9d\xc5\xce\x28\x19\x90\xc7\xf2\xe7\xcd\x5b\xb9\x6c\xc0\x24\x25\xc9\xa2\x24\x85\xca\x89\x9e\xa0\x9a\xf1\xe0\xab\xe8\x77\x9c\x72\xb9\x2b\x47\x53\xd9\x0c\x84\xfb\xb8\x8a\x62\x00\x3d\x07\x4b\x0f\x00\xea\x09\x17\x9c\x02\x9e\x17\x97\x37\x48\x0d\x50\xda\x1a\xd8\xc8\x04\xd2\x98\x50\xd4\x93\x62\xa9\x78\xc0\xea\xa9\x27\x37\x6a\xab\x4d\x3e\xde\x3a\xc2\x7f\xf0\x39\x08\x0a\xb0\x1b\x92\x11\x3c\x23\xa9\x8c\x40\x34\xe2\xaa\x0f\xae\xfb\x61\x22\x5c\x99\xa9\xef\x3a\x05\x83\xe9\x43\x20\x0e\x44\x39\xfc\xf6\xc0\x2a\x0a\x72\xff\xb3\xe9\x4e\xff\x5a\xd2\xc1\xd7\xdd\x54\x53\x77\xac\xd5\xf3\xec\x32\xe9\x14\x10\x85\xdb\xfd\x57\x8b\x09\x19\xa7\xfe\x77\x16\xb3\x84\x7d\x0a\x1d\x3a\xcc\x42\x1b\xfb\x02\x9a\xb7\xb7\x19\xed\x64\x1c\xdc\x9f\xef\x8f\x7b\xd0\xc6\x7f\xd7\x6f\x59\xe8\xa5\xd5\x59\x90\x9a\x52\x14\xee\x09\x26\xa2\xaf\x64\x48\x50\x9b\x62\x1d\x03\x02\x2a\x3b\xd5\x86\xa5\x6d\x9b\x96\xad\x6a\x9f\x72\x18\x68\x63\xa3\xb6\x0f\x6b\xd2\x4f\xf2\xf5\x23\xdd\xce\xa4\xa9\xe9\xe5\x0f\x97\x96\xce\x04\x98\x97\x9c\xd4\x82\xcf\x30\xad\x6d\x63\x9f\xbb\xab\xa2\x8b\x2b\x7c\x5c\x34\xda\x68\x96\x65\x13\xed\x59\x96\x32\x54\xbf\xb1\xc7\x52\x95\x06\xb5\x88\x17\xe3\x18\xf4\xcb\xd8\x0b\xa0\x3a\x6e\x59\xd7\x7c\xcf\xcb\x18\x1d\x0e\xa4\x52\xe1\x5e\x3f\xc9\xc3\x82\xa1\x2d\x44\xea\x70\xb9\x92\xee\x56\x0a\x1f\x7b\x77\x17\x36\x2b\xcd\x35\x0e\xf2\xbd\xd7\x43\x22\xa1\x79\xbb\xb0\x3f\xd1\xe8\xa5\x98\x10\x47\xa9\x87\x02\xbd\x19\x74\x2f\xc3\x3b\xbc\x49\xc7\x0a\x97\xa9\x81\xd5\x48\xb3\x13\xc2\xcb\x93\xb8\xb6\x9a\x50\x43\x3a\x31\xd5\x46\x2e\x92\x2d\x54\xb2\x20\x15\xdc\x48\x3b\x1a\xa4\xae\xc8\x45\xfd\xfe\xa0\xc3\x3e\x69\x99\xc7\x53\x79\xad\x6f\x2d\x51\x30\x16\x22\x5c\x1f\xdf\x32\x4c\x17\x39\xd3\x19\x24\x4c\xac\x64\x42\xf3\xf7\x64\x42\xb2\x55\xc8\xd5\x77\x32\x44\x03\xfa\x0e\xaf\x54\x98\x95\xfe\x20\x03\x95\x74\xa6\xd1\xb4\x43\x79\x33\xb0\x02\xca\x58\xfa\xeb\x0f\x01\x68\x4c\x52\x47\x39\xe5\x8a\xfb\xc4\xe3\xa3\x54\x9d\xd2\xc2\x07\x87\xbf\xae\x04\xab\x11\x45\x11\x92\x26\x43\x8c\xfd\x4f\xac\xb6\x89\xca\x4b\x4c\xae\xd6\x49\x89\x00\xf1\xf8\xd1\x7e\x72\x79\x9b\x6e\xeb\xc2\xd8\x20\x3c\x10\x22\x4c\xc5\x85\x1d\x79\x5b\xa6\x17\xa1\x6d\x15\xd1\x7a\xee\x21\x84\xfb\x19\x46\x94\x97\x84\x75\x50\x6b\xbe\x3f\xd7\x37\x18\x51\x42\x5e\x1e\x4f\xa6\x2b\x3f\xd6\xa4\x6c\x14\x76\xfd\x13\x94\x0b\x26\x05\x54\xf0\xcb\x4f\xc5\xa7\x98\x9d\xa1\x15\xdd\x46\x61\x9a\x4f\x97\x51\x6a\xdd\x48\x84\xa6\x03\xf5\xf7\xa0\x0c\x5b\x26\xfb\x46\xc5\x10\xb3\x0a\x8a\x94\x92\x44\xb5\xc0\x0e\x13\xc0\x22\x51\x2d\x50\x4c\xfd\xa2\xeb\x9c\x2d\xea\x67\xfb\x1d\x11\x18\xfe\x59\x32\x28\x41\x89\x23\x3a\x79\x06\x63\x02\x9f\xf8\x33\xf8\xe6\x11\xa4\xf9\x59\x4c\x11\x94\x53\x0a\x40\xbc\x38\xe9\x85\x25\x18\x88\x6d\xee\x57\x43\x8a\x0a\x85\x75\x1f\xd3\xd9\x5d\x39\x7a\xfe\xc2\xcf\x2b\x65\x6e\x55\xb0\x01\x7c\xf1\xb2\x62\x8d\x28\x3c\x66\x96\x58\xcb\x3b\xe1\x6e\x50\x42\x44\x17\xc5\x0c\xa8\x0f\x7c\x70\x2e\xc5\x43\xc0\xc4\x28\x42\xc0\x0f\xa0\x60\x91\x6a\x98\x85\x34\xb5\x43\x71\xbc\x5e\x92\xc6\x4e\xb4\x2e\xf3\xde\x28\x2e\xd9\xf5\xda\x73\x84\x2d\x8b\x53\x0f\xc1\x53\x2d\x12\x47\xfd\x9c\x16\xf7\x1a\xdd\x40\x89\x45\x74\x42\xe0\x74\xb5\xf6\x8f\x78\xf1\xc2\x75\x8f\xaf\x7f\x4a\x61\xd2\x03\xa6\x55\xae\x25\x2c\x13\x5d\xbb\xaf\xb1\xde\x52\x3e\x7a\x36\x5c\xf9\x98\x16\x2c\xf0\x3d\xb1\x88\x1b\x93\x47\x76\xa5\xb5\x00\xbd\x1b\xfe\xaf\x13\x15\x3d\xda\x04\xad\x3b\x9e\x2d\x3f\x36\x3e\xb7\x4b\xd5\x2f\xce\xb9\xd9\x31\xe0\x6f\x42\x2a\x6f\xf3\x66\x38\x08\x88\x20\xb6\x48\x52\xc1\xfd\x47\xbe\xae\xe5\x7c\x47\x75\x0e\xef\x2e\xad\x39\xf0\x8b\xc1\x46\xb5\x95\xcf\xd3\xe0\xb1\x45\x2d\xaa\x75\x84\xc7\x9a\xce\xc4\x36\xd8\x8f\xdd\xd3\xe0\x6d\xe5\x6b\xce\xa8\x98\x25\xb7\x27\x67\x7e\x30\x15\x73\x5b\x69\xc2\x42\xfb\x84\x98\xe5\xf7\xfd\x6c\xf3\xbb\x07\xda\x54\xc0\xfe\xe1\x0d\x0f\x25\xdc\x02\xc5\x73\x14\x31\x8e\x28\x8a\x96\xdb\x14\xdb\x76\x6b\x26\x4e\x5c\xde\x25\x16\x15\xd1\x50\xb2\x16\x19\x17\x0d\xad\xbc\x08\x87\xea\x2c\x56\x11\xb9\xbd\x4c\x3a\x17\xe3\x96\x3a\x12\x0d\xf0\x50\x6d\xd4\x54\xfc\x6e\x37\xa6\xb4\x8e\x68\x0a\xa3\x8c\x96\xda\xcb\xf7\x30\x01\x5e\xa9\x81\x25\x7d\xb1\x3f\xb6\x4d\x53\xe7\x8f\xdb\xb7\x3a\x57\x7f\xe3\xe1\x65\x7a\x89\xc1\x9e\x9d\x7b\x8b\x38\x2e\x82\xbd\x79\x89\xb8\xb8\x3a\xf1\x1f\xee\x60\xa3\x1d\x42\xd5\xf8\x8c\x23\x23\x4b\x06\x87\x38\x5c\xb1\x23\x13\x20\xf2\x71\xe3\x47\xf7\x99\x85\x1a\xbf\x1c\x93\x9f\xea\x57\x27\x79\x53\xf7\x6b\x14\x75\x1a\x6a\x78\xf9\xb2\x89\x10\x26\x8b\x4e\x53\xe7\x7d\x0e\x44\x80\x42\x2f\xc3\x1d\xcf\x0c\x03\x88\xa1\xc2\xff\xf5\x4c\x8a\x68\x0c\x77\x51\x95\x71\x9c\xd2\xd9\x3d\xca\x22\x7f\x67\xc6\xeb\xc9\xbc\xe4\xe5\x55\x45\x11\x1b\xe4\x4b\xc0\x16\xf1\xef\xcb\xc8\x96\x2e\xaa\xaf\xf9\x2c\xd9\x8a\x00\x06\x40\x24\x1c\x43\x60\x75\xae\x6e\x64\x20\xc0\xf2\x1a\x8b\xdf\xb7\x20\x48\x1b\x07\x5e\x94\x7d\x8a\xdb\xcc\xdc\xfd\x76\xb5\x60\x7d\xa6\xfe\x66\x14\xbd\xad\xaf\xa2\xdb\xeb\xa3\x8e\xfc\x78\x61\xe6\x24\x94\xe0\xf9\xba\xed\x15\xfd\x40\x83\x5d\xc6\x2f\xbe\x51\xce\x87\x04\x06\xec\xb1\xa3\x58\xba\x05\x8c\x1e\xd4\x7b\x59\x34\xbf\x13\x37\x21\x08\xa3\x02\x7c\x04\xf5\x6e\xdf\xea\xe2\xaa\x91\x35\xeb\xf7\x1d\x4b\x6e\x50\x7f\x7d\x91\xfb\xd5\x0c\x7f\xe1\x88\xa8\xcb\xdf\xa7\x67\x86\x78\xa2\x94\x6c\x0e\x1b\x45\x45\x0d\xf7\x45\x14\x68\x45\xe8\x8a\xde\x3a\x5d\xc7\x84\x71\xf6\xfd\x86\x39\x6b\x6b\x78\x79\x3f\xc8\x20\x76\x37\x1c\x70\x38\xb6\x1a\xe1\x6c\x6e\xb2\xde\xca\xd6\x6e\xbb\xc6\x56\x69\x8f\xad\xcf\x02\x3b\x66\x0c\x5f\x0c\xfb\x45\x9a\x90\xf5\x5f\x78\x08\xc6\xb4\xfa\x36\x11\x6b\x54\x7a\x61\xda\xc5\xe9\xc3\x5e\xdb\x5e\xbc\xc2\xc3\x63\x90\x9d\xf9\xc5\x85\x02\xf7\x36\x2f\x19\xc9\xae\x85\x17\xb5\x47\xa2\x1c\xe1\xd8\xc8\x5d\x75\x97\x9a\x75\xf6\xa6\x65\xe2\xf8\x04\x6a\xca\x7e\x97\x0c\x84\x8b\xb2\x32\x07\x45\x57\xdb\x5c\x80\x7f\x7d\x48\x50\x0f\x23\x9b\xe0\x6b\xd4\x5c\xe3\x57\x1e\x75\x68\x81\x09\xb3\x1d\xab\xed\x47\x9d\x8c\x1f\x45\x6b\x8f\xe2\x5e\x75\x34\x1f\xfa\x50\x69\xa2\x96\xcd\x6f\xd6\x98\x5a\x2f\xba\x51\x62\x70\x68\x02\xb8\x6f\xc3\x5e\xb5\x08\x86\x7d\x60\xed\xa2\x65\xfe\xdd\xce\x7d\x39\x6c\xb3\x59\xce\x8b\xb2\xaa\xf2\x97\x0f\x52\x42\x84\x57\xc0\x8a\x0e\xc5\xaa\xbe\xe1\xef\x31\x51\x0d\x1e\x2e\x8d\xa9\xf7\xc1\x65\xc3\x55\xb7\x28\xe5\x63\x18\xcd\xe2\x1c\x0e\x5e\x91\xdc\x7a\xbd\x7a\x39\xd8\x60\x3f\x9f\x7b\x7c\x9c\xfd\xa1\xfe\xd2\x12\x02\xff\x4a\x72\xe3\xab\x3d\x3d\x3c\x0a\x79\x5c\xd5\x50\x1a\x8f\xe4\x91\x87\xf8\x9a\x30\xab\xee\xb4\xf5\x35\x25\xc2\xfd\x59\xd2\x4a\xad\xac\x94\x38\x5a\xa1\x86\x3b\x64\x1c\x92\x1e\xf2\x50\xaa\x42\x72\x3b\xbd\x8a\xf0\x21\x3e\xca\x05\x29\x4e\xc5\x11\x0c\x6a\x66\xbb\xf3\x5b\xb1\x1c\x83\x0d\x09\x1c\xa6\x13\xc1\x00\xd0\xeb\xf6\xd5\xeb\x3b\x05\x1a\x8b\xa6\x40\x9f\x1d\xfc\x69\x04\x91\x89\x04\x52\x0e\x39\x99\xd8\xfe\x96\x21\x8d\x1d\xa0\xd2\x68\xa1\x31\x1c\x87\x72\xbc\xe4\xb2\x45\x55\x44\x81\x42\xa7\x1e\xd1\x25\xbe\x68\x85\x07\x47\x31\x58\x2f\xf9\x5d\x17\x9b\x89\xcb\x60\xec\x8b\xfb\x95\xb5\xb7\xbe\xf0\xa0\xb4\x13\xe3\xf9\xef\xae\x2a\x4c\xd8\x00\x84\xdf\x8e\xa6\xfe\xa6\x1a\x6d\x3e\x16\x9f\x5e\xc6\x25\x95\x02\x4a\x73\x03\x34\x68\x7d\xb7\x56\x75\x0e\xd1\x9c\xb3\x1d\xe3\x08\x06\xc1\xc0\x75\xcf\xe5\x74\xc9\x61\xcc\xd5\x74\xbb\xdb\x01\x57\xb5\x1e\x3e\x6e\xd0\xa7\xec\xe9\x00\x8f\x2f\x3a\xb9\x97\x39\x2d\xd6\x55\x98\x01\xeb\x70\xcc\x24\xf5\x57\xb4\x43\x46\x31\x47\x16\xc6\x82\x64\x5d\x12\x3f\x2f\x1e\xdc\xa4\x97\xfe\xe0\xf2\x3a\x8a\x09\x73\x54\xe2\x4c\xfe\xfa\x71\x5b\xa7\x07\x2a\x83\x8d\xd3\x0e\xd9\x70\x47\xbb\x6a\xd6\x78\xe4\x21\x82\x1f\x4a\x49\x34\x19\x8e\xb8\xff\x7c\xc1\x15\x5e\x2c\x14\x97\x1e\xe9\x24\xb6\x6b\xbe\x62\x35\x6d\x53\x42\xfe\xd7\x3d\xbd\x56\x5b\x8e\xa0\xfc\x69\xcf\xed\x4d\x30\xbf\x29\x67\x39\x7b\x32\x24\xad\x49\x55\xb1\x1b\x99\x40\x7a\xce\xc9\x90\x84\x69\x02\xea\x3b\xb6\x25\x14\x8d\x0e\x34\x87\x66\x3e\x4d\x07\x9d\x78\xd2\xa2\x60\xc4\xec\xef\x0e\x38\xe3\xd0\x16\x20\x56\x3d\x86\xdc\x0d\x8f\x20\xd4\x8b\x9a\x95\x0f\x23\x6f\xad\x91\xda\x47\x74\xa2\xe4\xf0\xb9\x74\x2b\x60\xf6\x71\xa1\x8e\xe0\x06\x71\xa6\x6a\x96\x86\xc9\x6f\x0b\x4f\x16\x2e\x05\x13\x25\x11\x06\xef\xa2\x14\x1f\x11\x39\xb7\xdc\x1a\xf0\xf7\x94\x29\xe7\x9f\xfd\xbb\x11\x86\x5b\x20\x07\x1c\x57\x9a\x3f\x9a\xa0\xdb\xb2\x65\x90\xcf\x3d\x26\xb6\x21\xde\xd2\xc5\xcd\xb4\xae\x13\x75\x1c\x65\x66\x6b\x89\xdc\xdd\x1c\xce\x38\x6f\xf7\x22\x41\x9f\x9a\xde\x2b\x06\xe8\x08\xea\x47\x8b\xcc\xd8\xd0\x2b\xb6\x6d\x06\xa9\x60\x62\xc5\xcd\x86\xa9\x0c\x05\x79\xb5\x9e\xfa\x2b\x11\xbe\xb2\x71\xfc\x6b\x49\xd8\x37\xac\x96\xc4\x61\xcc\x55\x3e\xe2\x32\xfd\x56\x57\x2e\x26\x0d\x1b\x85\x7b\x91\xc8\xa6\x58\x90\x69\x27\xb1\x9b\xff\xf2\xe2\xbc\xd7\x17\x6c\x56\x0b\x71\x88\xfd\xa7\x10\x8f\x3d\xab\x1c\x84\x5c\x37\x85\x15\x70\xb9\x3c\x47\x78\x51\x4e\x29\x59\x56\x7f\x25\xd1\x94\xb4\x39\x8d\xc5\x2e\xe1\xc5\x53\xd2\xa6\x97\x66\x83\x04\x1e\x54\xf4\x0c\x06\x3b\xbf\x6e\x75\xb2\x3d\x47\x2a\x83\x3d\x71\xa1\xe4\x73\x9a\x17\xbc\x2e\x2f\x06\x49\x7e\xad\x13\x69\x5a\x13\x97\x42\xf4\xc6\xfb\x4d\x02\x12\x65\x3d\x69\x02\xe9\xb3\xb5\xd8\xc8\xb4\x43\xfd\xc8\xa6\xb2\xe2\x40\x04\xa5\x09\x0f\x7c\x03\xcb\xf4\x8d\x78\xb7\xd7\x7d\xf5\xe1\x0b\xef\xf8\x67\xfc\x75\xd3\xf2\xe6\x91\x13\x06\xe8\xb5\xfd\xba\x01\xcc\x77\x94\xd9\x66\x91\xef\x63\x35\x32\xa3\x76\xb8\x3f\xc1\x12\x26\xcb\x19\x99\xcd\x90\x6b\xef\xbe\xbc\x8e\xd4\x59\xe5\x8e\x06\xde\xf7\x5c\xcf\x3b\x7c\xa3\x05\xb8\x66\xf4\x33\x40\xa4\x83\xfd\x0c\x42\x64\xbb\x00\xbb\x5d\x66\xef\x4a\x59\x38\xf1\x85\xca\x30\xf6\xc8\xa2\x79\x66\x1c\x3d\xd3\x6b\xa3\xf0\xf7\xe4\xd6\x6d\xc4\x5f\xd4\x33\x71\xe7\x38\xa2\x5f\x87\x96\x62\xfa\xa1\x13\xdd\x49\x04\x83\x14\xa5\xb0\xed\xde\xd7\x76\xb9\xef\xae\x4f\x73\x77\x8f\x37\x96\x13\x2b\xc1\x6f\x17\xe6\x36\x0c\xae\x13\xa1\xd3\xa6\xc9\xaf\xff\x64\xf7\x5a\x5c\x14\xbd\x5c\x7f\x51\xc4\xf5\xb9\x53\x46\x32\x52\x59\x4e\x7d\xac\x96\x1e\xdb\xfd\x1d\xf1\xd7\xcc\x7c\xaf\x29\xda\x55\xe5\xda\xec\xb2\x65\x71\xdc\xa7\x67\x17\xbe\x2c\x62\x69\x01\x61\x64\xf9\xb6\xeb\x0a\x6d\xa9\x3b\xb1\x2e\x52\x02\x15\x9a\x2a\x55\x71\x08\x76\x87\x5d\x8b\x74\xbf\x42\x0e\x54\xce\xdc\x6a\xcd\x55\x3d\x4d\x98\x8b\x48\x1c\x67\x9e\xff\xcc\x8b\x4c\xa1\x82\x9b\x3d\xce\x40\xee\xef\x2a\xf0\x8e\xdf\xf4\x68\x99\xe5\x68\xee\x44\xd0\xf4\x09\xd4\x61\x72\x93\x25\x5e\x83\x85\x73\xc4\xfb\xe8\xb7\x53\x55\x20\x32\x62\x57\x09\xd7\x91\x78\xaf\xb0\x93\xd7\x97\x88\x20\x5c\xab\x63\x6b\xf4\x33\xad\x90\x4e\x19\xdd\x3b\x95\x6b\xe5\x92\x8e\xfc\xbc\x7f\x17\x65\xd1\x5b\xd8\x6e\xfc\x16\xd7\xb0\x80\xdf\xb0\xc0\xc8\x8a\x0f\x6d\xb5\xc1\x06\xf3\x93\x99\xf6\xa8\xb3\xd0\x91\x15\x10\x06\x31\x8e\x23\x4e\xef\xbf\xba\x1a\x72\xc4\x5e\x53\xaf\x78\x98\x6c\xff\xc5\x19\xe0\x0a\x61\x16\x77\xc0\x5f\x1c\xfa\xd4\xd3\x2a\xbe\xad\x09\xbb\x6e\x6f\x8f\xfb\x8f\x00\xb7\x65\xe7\xb5\xc6\x67\x8c\x35\xe0\x73\xc0\xe6\x35\xa7\xe4\xc5\x4d\x28\xf2\xec\x3a\x09\x44\x11\x9a\xfb\x29\x01\xa7\x73\x1f\x6d\x0b\xd1\x2c\x68\xd3\x9a\xb4\xdd\x06\x21\xd0\x30\x40\x22\x3e\x5f\x73\x39\x29\x3b\xac\xf2\x04\x0a\x97\xc8\xec\x84\x03\x4a\x78\x3d\x9c\x44\x2a\x44\x19\xbe\x41\x3b\x8a\xcb\xfe\xff\x12\x4d\xde\x6e\x34\x08\xc8\xe1\x73\x31\x93\xa9\x82\x6b\x7d\xdd\xd1\x25\x79\xb0\x9c\x7c\xdc\x3d\xb9\x02\xd9\x07\xe4\xf0\xbb\x07\x77\xcc\x4d\x9c\x35\xec\x5d\x8a\xa4\xbb\x6e\xbc\xe8\x0d\x60\xb9\x59\x1b\xee\xf8\x3d\x21\x05\x72\x59\xf1\xad\xe7\xdc\x5c\x41\xd3\x0a\x8c\x7e\xb4\x1e\xcb\x1c\xdd\x18\x16\xef\xdb\x1f\xd9\x39\x6c\xa2\x25\x01\x90\x8f\x72\x3c\xa4\x06\x18\x6b\x78\x9f\x04\xd8\xb2\xa3\x80\x08\x0b\x73\x17\x2b\x48\xa0\x21\xce\x0f\x64\xd0\x59\x7b\x6e\x29\x80\xee\x87\x0b\xea\x34\x26\xd2\x23\xba\xac\x5c\x44\xef\xba\x17\x59\xe8\x07\x0e\xfc\x3f\xa4\x2b\x90\x1e\x49\xb0\x90\x76\xdd\x5c\x05\xcd\xbb\x78\xc2\xdf\xa4\x8f\xcc\xde\xf1\x8b\x9e\xd3\x5c\x30\xcd\x95\x72\xf4\x3c\x3e\xb6\xba\x27\xd7\x5d\xa9\x8d\xf2\x89\xaa\xa5\x28\xb9\xf5\x10\x11\x7f\x1a\xbc\xf4\x25\xa0\xbe\xef\x70\x63\x6f\x41\xbf\x15\x3a\x67\xa5\xe7\x77\xa2\xcf\xb2\x17\xf8\xed\xb6\x21\x78\xf3\x98\xe3\xfb\xd5\xca\xa2\x96\xd4\xab\x47\xa7\xd5\x8e\x8a\x8d\x1f\x1f\x22\x7c\xcf\x02\x5d\x29\xde\xcb\x10\x58\x5f\xcc\x93\xb6\xa3\xdb\xf7\x14\xb6\x0e\xb3\xc3\xb5\x2c\x37\x26\x67\xc9\x17\xad\x27\x56\xe2\x65\xfe\x32\x83\x18\x52\x74\xe0\x26\xed\xcd\x63\xb1\xcd\x3b\x92\xaa\xdb\x49\xf4\x29\x47\xca\x42\xdb\x40\x52\x3f\x96\x8c\x69\x90\x4c\x34\x3c\x7e\x7f\x04\xab\xbd\xc0\x0f\x7d\xc3\x1d\x95\x3b\x1e\xe2\x51\xd3\xd5\xd0\xf5\x49\xc0\x49\x3b\x2e\xb8\x94\xba\xd1\x5a\xb4\xd3\x1b\x48\x27\xd2\x50\xb1\x6f\x14\xad\x3e\x89\x3e\x16\x1f\x58\xa7\x00\x80\xa1\x7e\x09\xc4\xcd\xe9\xea\x14\x11\x8c\xdb\x63\x28\x59\x0b\x7e\x13\x4e\x67\xa6\x44\x40\x62\x77\x80\x26\xb9\xb7\x16\x9f\x4c\x40\xab\x7b\x94\xd4\x99\x75\xc7\x74\x55\x00\x97\x5c\x41\x38\x6a\xc1\x6b\x50\x99\xa1\x15\xdf\x46\x75\x60\x94\x8e\xb7\x15\xc4\x77\xa2\xbf\x8a\xb9\x9b\x25\xa8\xa8\xb7\xeb\xf7\x64\x19\x35\x7c\xa4\x84\x3f\xe3\xa4\x83\xb5\x65\xfb\xcc\x56\x32\xc3\xbf\x4f\x2e\x2f\x4c\xdc\x02\xc1\xc6\x63\xaf\x70\xd0\x3a\x88\xaa\x5b\x39\x0d\xdd\x4e\x56\x02\xe0\xf9\x57\x6b\xe0\xb8\x87\xf9\x5b\xfe\x50\x4f\xfc\xdb\x45\x37\x0a\x9b\x9b\x86\x76\x73\x09\x26\xfc\x47\x91\x90\xda\x74\x3c\x30\x94\x0f\xf8\x0e\x98\x78\x41\xf0\xee\xfd\xdf\x4e\x26\x45\x15\x6c\xba\x83\x1c\x05\x96\xfa\xab\x2e\xba\xbc\x2e\x8d\xdf\xb6\x55\xee\xe8\x55\x2a\x99\xfb\x9c\x72\xb8\x57\x97\xcf\xcc\x8f\x37\x25\xe8\xcf\xfd\x9e\x42\x27\x64\xeb\x43\x77\x65\xac\x76\x10\xee\x2d\xfe\x25\x9b\x26\x93\x6e\x94\x1b\x9b\x10\x87\x8c\xef\x8a\xcf\x0b\x92\xc7\xa5\xae\x37\x0b\x15\xd5\x04\x65\xcb\x8e\xb0\xed\x36\x44\x39\xee\x16\xec\x12\xe6\xc5\x86\xef\xda\xed\x31\x01\x98\x70\x50\x1a\x00\x15\xd4\x79\x51\xf6\x11\xfd\x65\x79\x6a\x77\x90\x40\x25\x9d\x72\xcc\xbb\xcf\x67\x47\x70\x60\xfe\xbd\xef\xeb\x68\xc6\xb7\xe5\x8f\xe4\x1d\xde\xd3\xf3\xe2\x65\xf1\x63\x52\xdf\x8e\x6e\x34\x3d\x1f\x0b\x7f\x4f\x0e\x9a\xf3\xe2\x18\xcb\xa7\x84\xb2\x39\x3a\x23\xfd\x1d\x75\x0a\x2b\xa8\xc2\x79\x3a\x33\x50\x0b\xdc\x92\xf1\x2c\x31\x9e\x82\x1b\x0e\x57\xf8\xa5\x79\x57\x4e\xf6\xcb\x4e\xcb\x6b\x8c\x42\x64\x4d\xa9\x85\xaf\x22\xef\x63\xb4\xdb\xef\x95\xec\xa8\xa3\xee\x6f\x18\x6b\x51\xfe\x60\x5b\x6e\x82\x17\xf4\x4b\x25\x85\xcc\x93\x1e\x34\x27\xcb\xb1\xc9\xa9\xd4\x8b\xbc\xb2\x9a\xd2\x37\xfb\x02\x9a\x00\xc5\x02\x1b\x62\xbf\xf9\xbc\x08\x31\xd9\x9f\x17\x3b\xcf\x33\xc3\xc6\x7e\x7b\x2f\x9b\xb5\x49\xc8\xef\xf4\x1d\x5d\x8d\x8c\xfc\x3b\x6b\x4c\x00\x39\xd8\x20\x4f\xd1\xd6\x95\x99\x63\xe7\x5b\x8d\x53\x54\xd0\x2f\xfa\x4a\xbf\xad\x45\xb5\x7f\x14\xb3\x29\x50\x65\x0f\xc7\x68\xe0\x77\x3c\x2b\xc8\xe9\x49\x63\x64\x98\x8e\x9b\xf2\xf1\xe0\xf3\xf6\xbd\xb9\xc0\xa3\xe5\x6c\xf0\x42\xa2\x0a\xb7\x40\x62\xf2\xfb\x52\x43\xba\x3a\xf9\xb7\xe1\xe6\xce\x91\xeb\x99\x84\xbd\xef\x86\xbf\xaa\x80\x3c\xb8\x04\x5e\x59\x79\x04\x28\xa7\x44\x81\x11\xb1\xea\xc6\x74\x8b\x45\x0c\x00\xa8\x7c\xf6\xbb\x78\x7b\x3c\xa8\x65\xc6\x8f\x0b\xf2\x75\xf9\xc5\x48\x36\x25\xa3\xbc\x49\xf6\xda\x13\xbf\xf6\x59\x28\x93\x21\x79\x42\x82\xa4\x9e\x4e\x85\x9b\x27\x57\x35\xc0\x5a\x59\xeb\x43\xa8\x8f\xb5\xac\xb2\x75\x90\x92\x30\xf3\xfa\x2b\xd4\x76\xf5\x79\x8e\xf2\xf6\x48\x7e\xf6\xc4\x07\x1f\x00\xb8\xcb\xa3\xf2\xfd\xae\xf4\xae\x18\x9d\x7d\x11\x9f\x4a\x27\xd1\xc5\xa1\xaf\x6c\x00\x94\x94\xd3\xc5\x8d\x85\xcd\x9f\xb8\xe1\x6e\xc6\x0a\x2f\x59\xc8\x6b\xc2\xec\x86\xa3\xbc\xed\x5e\x51\x2e\xd3\x41\x01\x04\xce\xc0\x36\xf8\x45\x92\x7a\x92\x3f\x5d\x19\x06\xb9\x5e\x5b\x27\x2d\x64\xf0\x30\x11\xbe\xd9\x45\x53\x1f\xcc\x44\xcf\x1d\x2f\xf7\x90\x0d\xc4\x5f\xf4\x78\xe8\x8f\x52\xdc\xfb\xf7\x33\x21\x32\xde\xfd\xab\xf8\x28\x84\x88\x25\x32\x1e\xf2\x2d\xa8\x96\xe0\xbc\x2d\x9b\x08\x9a\x0f\xf7\xe0\x53\x77\x94\x6a\x7a\x3b\xfc\xd5\xc9\x0a\x84\x98\xf9\x70\x10\xf9\x77\x31\x1d\x27\x2b\x21\xf8\xcd\xc7\x84\xbe\xd8\x11\x2d\x61\x32\xc4\x54\x7c\x45\xc1\x79\x9f\x72\xc9\x86\xc9\x2c\x81\x61\x96\x2d\x04\xe4\xc3\x8d\x73\x23\x0e\xf2\xb3\x0e\x72\xdd\xe9\x4b\xe7\x0e\xb2\xf2\x71\x49\x66\xd4\xf4\x3b\xdb\xd1\x56\xcb\x1f\xa8\xd2\x23\xea\x55\x46\x7a\x3a\x0e\x3a\x0d\x5f\x78\x67\x93\xf0\x24\xc9\xe8\x96\xa6\xc4\x16\x1d\xce\xc9\x2b\x38\xcd\x46\x29\x40\x73\x6b\xa2\xcf\xd5\x2d\x70\xfb\xa2\xd3\xc6\x99\x3f\xbb\x11\xfc\xa1\xf7\xca\x1c\x7e\xd8\x42\xe9\xed\x4a\x7d\x21\x29\x5e\xa2\x0f\x17\x39\xc8\x57\xaf\xea\x0c\xf7\x3e\xd5\x44\x7f\x53\xfb\x2a\xe2\x1f\x6e\xa5\xbd\x79\xa9\x87\x8f\x9a\x66\xd1\x88\xd4\xd2\xde\x48\x89\x63\x0b\x49\x4a\xb8\xb1\x73\x4e\xf2\x7b\x05\x27\x6c\x1f\x57\x72\x5f\x7a\x74\x7d\xdb\x6c\xdf\xa7\x0a\x4c\x07\x6e\x3f\x0b\xda\x17\xdf\xfb\x09\x99\xf3\xb0\xe5\xa2\x45\x97\xc4\xdf\xbd\xb0\xab\x03\xf3\x66\xfc\x56\xff\x86\xa9\x0c\x0f\xfe\x05\x32\x82\xcd\x19\xad\x0c\x56\x4f\x7c\x4f\x64\x41\x59\xa3\xe0\xb9\xef\xe7\xfa\x72\x0e\x77\x4f\x26\x8f\x96\xcb\x70\x9a\x14\xf1\x09\x91\xe7\x22\x2e\xcc\x6f\xf1\x18\xd5\xa1\x77\x60\x08\xec\xd3\xd9\x54\x2e\x58\x44\xb2\x50\x80\x1d\xdf\xa2\xa5\x35\x61\x72\xe3\x30\x84\xa9\x9e\x65\x19\x25\x3d\x7c\x2e\x7a\x92\x42\xa2\x86\xe0\x80\xa7\x93\xc5\x06\xbf\xbc\xfe\x43\x4e\x1e\x53\x6b\xe3\x07\x0e\xb6\xdb\xa3\x30\x73\x01\xfe\xc7\x87\xd8\x5e\xf2\x98\xfd\x12\xd5\x0b\xcf\xf8\xbb\x54\x93\x67\x95\x3f\xaa\x4f\xeb\x16\x5b\xd5\xf6\x83\xcd\x93\xe3\x72\x0c\x66\x7b\x63\xa0\xd3\x7d\x92\x54\xa6\x47\x01\x1b\x61\x6d\x68\x1c\x8e\x8e\x1f\x67\x81\xc1\x5d\xfe\x8c\x5b\x22\x18\x3c\x49\x7f\x7d\xe5\x22\x9e\xb8\xfa\xcd\x57\x3a\x4a\x0e\x3d\x06\x7f\x77\x52\xcd\x40\xb4\x4c\x7e\x36\x04\xbe\xb8\x27\x12\x87\x5e\x45\xd4\xcf\xe7\x7a\xb3\x70\x7c\xab\x0d\x02\x06\x64\x2b\x24\xbb\x68\x58\x04\xf5\x52\xd0\xe5\x78\xe2\x78\x05\xc9\xa5\x4c\xc6\x68\x6f\xd3\x03\x5c\x18\x9e\x59\x25\x4c\x88\xca\xf7\xb1\x8e\x18\x2d\x95\xb4\x53\x66\xf3\xdc\xe4\x44\xcc\x66\x77\xd1\x74\x62\xb3\x4a\x12\x83\x71\x95\x7f\x6c\x07\x39\xc2\xec\xf2\x7c\x0c\xeb\xa1\xfb\x6b\xf7\x8b\x22\xd2\x55\xee\xb5\x95\xee\x2e\xd5\xa4\x65\x33\x99\x79\xbb\xf5\xde\x76\xf5\xdd\x76\x96\xa5\x22\xa9\x2d\x85\x29\x5a\x22\x4a\x4a\x4d\x4c\x52\x2f\x0c\x72\xbd\x80\x30\x22\xfa\xf8\x58\x78\xc2\xcb\x3b\x58\x43\x5a\xc4\x4e\xcf\x3e\x9e\x4a\xb9\x18\x0d\x6d\xaa\xc1\xa5\xa0\x70\xc9\xb2\x96\xa0\x00\x20\x84\xe0\x24\x34\xfd\xa5\x1f\x39\xad\xa2\x16\x49\x8d\x0a\x9b\x0f\x20\x50\x42\x9d\x5c\x5c\xdc\xbe\xa5\x0b\xa5\xa9\x01\x4b\xf4\xac\x29\xd1\x05\x13\x08\x0c\xcc\x6b\x07\xef\xf1\xb9\x1f\xe1\xda\xfe\xc9\x17\xea\x45\x1a\xa7\x27\xe7\x8f\x01\x01\xb5\x52\xa3\xdd\x06\x6a\x1d\xb6\xe6\x69\xf8\x84\xe2\x2a\x94\x53\xf5\xac\xdd\xc3\xb4\x43\x46\x86\x9f\x0f\xce\xf3\xd7\xd5\x5f\xee\xf4\x67\x1e\xb5\x79\x6c\x95\xf9\x58\xbe\xfa\xf1\xb5\x46\x9f\x7d\x27\x38\x6f\x30\x67\xc2\xc1\x78\xe1\xe9\x87\x2d\xb7\xa9\x81\x05\xae\xe4\x67\x75\xbc\x02\xeb\x1f\xda\x92\x79\xb1\x8d\xd3\xaa\xf7\xd4\x4d\x99\x3b\x51\x53\xa6\x8a\x6e\x30\xf2\x3b\xd8\x29\xde\xfe\xc9\xee\xbd\x1b\xc4\x11\x31\xab\x9c\xc7\xb9\xaa\x31\x56\xd2\xfc\x79\x65\x3f\x42\x0e\x9e\x97\x5d\x3f\xd7\x3f\xa9\x95\x96\xd4\x23\x04\x28\xc8\x78\x4e\xd3\x31\x2c\x66\xea\x43\x37\x3e\xa7\x85\xa6\x98\x99\x86\x52\x49\x5f\x47\xe5\xb2\x0d\x7a\xc4\x51\xed\xe1\x7e\xd8\x8a\x0e\x72\x93\xf4\x9c\x66\x6a\xae\x1e\x9e\xb2\xc1\x77\x16\xa9\x54\xdf\xb6\x9d\x65\x41\xaf\x30\xb3\x81\xe0\x61\x14\x7d\xb0\xf4\xa2\x04\x28\xed\x93\x5a\xe8\xaf\xbe\x72\x92\xd4\x7f\xdc\x15\x4f\xe3\x65\xae\x76\xc2\xf6\xde\x8c\xb9\x21\x11\x85\x77\x21\xe4\xef\xb0\x5b\x36\xce\x73\x7d\xec\xda\x65\xf8\xc9\x31\x23\x5f\x9f\x3b\x16\x5a\x75\xdb\x6a\x56\x7b\x04\x1e\x63\xd7\xb0\xf4\x72\x0d\xd9\xd0\x47\xa9\xb6\xac\xaf\xf4\x98\xfc\x0d\x06\x66\xa7\xac\xf9\xca\xb3\x91\x89\xc0\xad\xc4\x9f\x16\xe8\xaf\xae\x74\x34\xe8\xcd\xdb\x9a\xee\xfa\x43\x65\x07\x69\x64\xca\xbe\x5e\xa5\x50\xd6\x8d\x54\xaa\x36\xc0\x2a\x4a\x47\x0a\xaa\x22\xf9\xc1\x92\x23\x70\x9f\x87\xe1\xd8\xa6\x44\x93\xb1\x23\x0a\x5c\x58\xe2\x80\x3c\x87\xe8\xd8\xe4\x9c\x13\x2e\xee\x73\xa8\xca\xe8\x91\x81\x4d\x41\x64\x2f\x19\x6c\x54\x40\x92\x80\x81\x79\xd0\xc3\x8a\xa9\x8c\x34\xc9\x61\xd5\xc5\x01\xc4\x86\x09\xa4\xb1\xfa\x99\xb4\x52\xac\xd1\xae\x78\xed\x69\xa9\x4d\xcc\xbe\x47\x1e\xe3\x28\xe5\xf0\xb9\x0c\x30\x04\xd3\xdb\xce\xb4\xe8\xb8\xe3\x57\xad\xcb\x0b\xd7\x1c\x8c\xe0\xa7\x40\xdf\x2b\xb0\x96\xf0\x94\x09\x4f\x4a\x78\xed\x25\x3d\xe6\x5c\x7d\x06\xf3\x18\xa1\xd6\xb8\x88\x7a\x84\x82\xb7\x05\xdc\xdd\x05\x42\x69\xe9\x71\x98\xf3\x38\x0b\x36\xb7\x02\x45\xb1\xf4\xe1\xd1\xdb\xdf\xa8\xa5\x18\x45\xb3\xa7\xf7\x1d\x46\x5f\x04\x2a\x1d\xdd\x5a\x0c\xf1\x82\x48\x6e\x5f\x61\x3b\xb2\x6a\x51\x80\xed\xcb\x12\xd9\xab\xad\xa5\x87\xbc\xd0\x90\xc2\xac\x90\xc7\xb8\x83\xd8\x94\x02\x50\xb2\x01\x66\x62\x5a\x31\xa2\xd0\x92\x66\x8f\x1e\x62\x9b\x51\xc7\xed\x67\x10\x40\x9c\x25\x3e\x6e\x7d\x4b\xcb\xd2\x37\x66\xf0\x99\xde\x42\x16\x0f\xc3\x24\xcc\xc7\x87\x3c\xa4\x50\x43\x0d\xe7\x43\xde\x38\x43\x61\xb0\xfd\xc4\x3f\xf1\x34\xd0\x26\x89\xcc\xf6\xd3\x63\x6f\x24\x8e\x83\xaf\x98\x07\x13\xf1\xe2\x63\x8d\x00\x86\x92\xa0\x37\xf5\xcf\xf7\x2d\xfd\x4b\x51\x32\xa6\x48\x63\x45\x9b\xee\x70\xed\xb0\x91\x2f\x17\x65\x8c\x48\x1a\xc1\x74\xb8\x57\xeb\xba\xd0\x32\x61\x37\x62\xb6\x87\xd6\xb1\x8e\x2f\xfc\x9b\xc2\x78\xad\xb1\xe3\x97\x5c\xa1\x50\x41\x69\x15\x5d\x8c\x82\xbe\xa6\x9f\x02\x1a\xd8\xe6\x72\x8a\xab\x2b\xd1\xaf\xa0\x0f\x19\x94\xb4\x66\x09\xcf\xf7\xff\x52\x7a\x4c\xbf\xb1\x8c\xd3\xdf\xa0\x4a\xbc\x45\x0b\x9d\x5f\x3a\x6a\x85\x00\x82\xf9\xbc\xee\x5e\x5d\x18\x52\xa8\xd8\xbe\x6f\xdb\x9b\xf4\x67\x7a\x48\xef\x7f\xa2\x42\xf3\x7b\x50\x63\x65\x3e\x73\x1a\x25\x1d\xac\xd8\xa9\xce\xb8\x30\xcc\xfe\x4d\x5f\x51\x01\xef\xbf\x93\x99\xee\x7d\xc1\x68\x1b\x1b\xc9\x6e\x3e\xac\x5a\x14\xd6\x86\xd2\xa1\x50\x2d\x84\x45\x4a\x11\xb2\x0c\xc4\xa4\xfe\x0c\x16\xc2\x3e\xde\x2a\xca\x68\x21\x4c\xb3\x17\x12\x36\x48\xfa\xb0\x96\xac\xe9\x2c\xf6\x93\xe0\x2a\x6a\xb7\x8e\x74\x67\x39\xff\x91\xb9\xcf\x51\x2d\x04\x1e\xc5\x20\x2f\x42\x3e\x58\xef\xb0\x74\x70\x6d\x24\xb1\x6d\xc2\x40\xee\x75\xdf\xdc\xfb\xd0\x8e\xaa\x0f\x21\xc7\x9a\x80\x21\xeb\x83\x0a\x9c\x9b\x65\xd3\x4b\x90\x5c\x86\xf6\x43\x65\xbe\x98\x7f\x8f\x4b\x09\x78\x76\x00\xd1\x7b\x8c\x8a\xcd\xbd\x88\x8d\xff\xc2\xea\x76\xa5\xb4\x6f\xd8\x9e\xa5\xf9\x85\x69\x24\x04\x44\x01\x8f\x27\x90\x8a\x0b\xa0\xc6\xec\xef\xc2\x4c\x18\x29\xbd\xd2\x7f\xa3\xfd\x59\x92\xa5\x9e\x0b\xa5\x64\x97\x4f\x7a\xed\xbf\xed\xba\x7a\x7f\x5d\x7e\x5b\x5d\xd1\x2b\x19\x04\x77\x4c\x22\x33\xc9\x82\xea\xa4\xd8\x8a\x7b\x44\x3c\x30\x7f\x61\xed\xfe\xbe\xdd\xb5\xd0\x95\x15\x0a\xa0\xbe\x9c\xcd\xab\xba\xb2\xec\xeb\xbd\x0f\x9a\x80\xc8\x62\x31\xaf\x92\x4e\xbe\xbd\x64\xdf\x57\xf9\xe3\x1c\x29\x60\xfc\x3e\x49\xba\x59\xb2\xbb\x58\x6f\xb8\x0f\xfc\xf3\xab\x96\x57\x1f\x94\x63\xc7\x37\x53\xcb\x05\x96\xea\x2c\x86\x7d\x9e\x1e\x4e\x2c\xab\x2d\x6d\x4f\x61\xf1\x94\xa9\x5d\x44\xe5\xb1\xb2\x5b\x4a\xb8\x5d\x43\x29\x2e\xe9\xf0\x75\xaa\xf7\xea\xeb\x8f\x61\x93\xc2\x95\xec\xc5\x25\xb4\xfa\x99\x8a\x3c\x05\xc9\x68\xfd\xc9\xb7\xde\x6c\x84\x0d\x0c\x16\xc5\x8a\xc7\x8f\xd3\x9c\x09\xb7\xe2\x3f\xa9\x7d\xa6\x9e\xe0\x1e\x99\xfb\x84\xd8\xf6\x78\x96\xd7\x1d\xf8\xda\xef\xf6\x26\x7c\x50\xf0\xa6\x85\x72\x7f\x1e\x5d\x7d\x32\xa3\x18\x9b\x76\xc3\x3e\xec\xad\xbb\x7b\x94\xb2\x79\x61\x7b\xb0\x98\xbc\x90\xdc\x41\xb4\x10\x12\xa9\x18\xe0\x68\x85\xe9\xc1\x45\xc6\xd1\xe1\xe2\x58\x75\xb3\xd6\xb0\xd3\x47\x54\x6e\x1c\xe2\x8d\x17\x54\xf6\x5c\x99\x4d\xe4\x75\x73\x04\x07\x8f\x18\xb3\x41\x5c\xf9\xf1\x0d\xb9\x49\x35\x5f\xe5\xbb\x10\x1f\x81\xa0\xdf\x82\xfc\xc3\xf5\x50\xfd\x85\x6e\x50\x51\xda\xd8\x58\xb0\x7d\xc7\xd5\x0e\xf5\xe1\xbb\xa3\x15\x24\x1b\xce\x33\x94\x40\x3b\x64\x4f\x29\x8b\x68\xa5\xab\x34\x1c\xc5\xb5\x34\x21\x9a\x03\xb0\x1d\xfd\xda\x8a\xfd\xfd\x4c\x0f\x69\xc3\xf5\x4a\x7a\x1b\x05\x49\x31\x63\xf9\xc4\xd7\x1c\x68\xa4\x9c\xb4\xcb\xac\xbb\x3d\x45\x29\x2e\x39\x0f\xe4\xd3\xca\x5a\xda\xe4\xdd\x1d\xa3\x5a\xc7\x23\xc0\xcd\x5e\xe7\x41\xf3\x89\xb6\xb1\xd8\xe6\x76\x77\x60\xa2\x43\xf7\xb7\xa0\xf4\x79\x98\xd4\x7b\x98\x19\xaa\xbf\x68\xb5\x29\x6e\x9b\xdc\x13\xb4\x06\xee\xe4\x47\x1f\x8e\x09\xce\x75\x9f\x37\x34\x87\x8c\x10\xde\xf5\x0c\x5a\xd2\x7e\xd4\xee\x47\x9b\xb0\x81\x0d\x8a\xc5\xa8\x19\xf4\xe2\x33\x42\xfd\x06\x8d\x88\x19\xe5\x71\x28\x71\xe8\x79\xaf\xd7\x31\x01\x7c\x06\xe2\x98\x83\x7f\x89\x43\x39\x2f\xff\x12\xe7\x2e\xbc\x0c\x70\x86\x33\xeb\x7e\x10\x83\x77\x14\x79\x3b\x72\xd5\x02\x06\x66\xb3\xab\xc8\x68\xaa\xaa\x79\xce\xff\xb6\x51\xfb\xad\x31\x60\xfc\x16\xa3\x15\xd2\xc1\x56\x27\xcf\x55\xcc\xe1\xf3\xe6\xba\xcc\x3f\x55\x0e\x7f\xa3\x28\x4d\x8e\xc7\x09\x4b\x9a\xec\x82\x86\x03\xce\x83\xbd\x08\x38\x59\x75\x7e\x96\x4d\x7e\x64\x2f\x95\x4b\x1a\x1b\xb7\x8e\x3d\xa5\xcc\x00\xc0\xbd\x42\x57\xab\x1e\xf6\x79\x91\xc9\xb2\x7b\xbe\xdb\x59\x95\x18\x49\xbb\x48\x86\xd7\xbd\x54\x1c\xc8\x60\x4f\x41\xce\xfe\xd7\x95\x58\x74\x73\x49\x5d\xb9\x65\xee\x5b\x1f\x15\x43\x98\xc2\x65\x3a\x62\x56\xee\x58\x96\xa2\x8d\x1c\x5e\xd1\xc3\x96\xd2\x59\x0b\x31\xa2\x2e\x1c\xc8\xbb\x7e\x8a\x3d\x51\xda\x09\x15\xa1\x59\x62\xf0\xf1\x63\x6c\x7e\xff\x99\x1d\xb9\xaf\x34\xda\x17\xe0\xc9\x49\xff\xae\xd4\x4b\x11\x8f\x1d\x86\xbd\x76\x47\x0e\x4f\xd3\x87\xfa\x15\xe0\x72\x73\x14\xf9\x51\x1b\xfc\x4e\xfc\x45\x5b\x6d\xc1\x29\x12\xcc\x7d\x81\x76\x3d\x50\xb3\x44\x41\x50\x3f\xbb\x9b\xe1\xc2\xac\x89\x8f\xc3\x61\x48\x78\xa8\x79\x61\x80\x43\x31\xaa\x22\xd9\x78\x91\xf8\x9d\x4e\xa4\x8d\xb7\x52\xc8\xdb\x8d\xd6\xcf\x99\x93\x9e\x19\xdc\x67\x25\x62\xa1\x4e\xc2\x15\x70\xe3\x9e\x95\x1f\x7c\x01\x8e\xe9\x0a\xe4\xa1\x14\x19\xf3\x75\x34\xda\x34\x14\xaf\xcd\xe0\xf3\x71\xa3\x6d\xbd\x4f\x5c\xea\x4d\x8e\x1f\xa5\x09\x78\x9e\xd4\x7b\xf0\x44\x18\xde\x16\x4d\x60\xf5\x23\xe4\xc2\x0d\xfe\x80\x4e\x1a\x52\x64\x51\xcf\x12\x67\xd5\xbd\x77\x68\x3f\xc8\x24\x06\xc5\x3e\xe1\x81\x5b\x9c\x4e\x11\xcb\x97\xe2\x98\xa0\x18\x65\x8b\xc1\x51\xd1\x25\xa0\xd9\xce\x62\xbf\xfb\x77\xdb\x4b\x8f\x51\x15\xfe\x81\x1a\x57\x6e\x65\x4a\x0e\x37\xc8\x16\x4b\x40\x1f\xff\x70\xa9\xd5\x2c\x57\x37\x8a\x68\xdf\x91\xf6\xf6\xb1\xa4\x29\x91\x17\xf1\xd6\x27\x4e\xcf\x90\x99\xcf\xc6\x6a\x45\x1b\x4f\xaa\xfe\x27\x5f\x5a\xfa\xf6\x0c\x91\xe5\x84\xac\x98\xc0\x87\x85\xc1\x6f\x94\x38\x1b\xcc\x6a\x42\xa1\x84\x0c\xd9\x6b\x18\xa8\x9d\x46\xb1\xc4\x81\xb7\xdb\x6d\x76\x81\xba\x15\xd5\x08\xad\x99\x7a\x2d\xb6\xac\x75\xbb\xfc\x0d\xac\x4c\x62\xb8\x4c\xf2\x09\x00\x34\xc4\x7e\xab\x2b\x7e\x3d\x46\xd4\xc5\x9e\xff\x2a\xd2\x68\x17\xdb\x0d\x19\xde\x44\x75\x94\x93\xce\xd4\x55\xa0\x70\x41\x63\xa8\x3d\x45\xfd\xe4\x78\x29\xe1\xf7\x2f\xe2\x4f\xf3\xf3\xd4\x56\x3f\x29\x56\xc2\x62\x89\x8c\x95\x2b\x35\xe1\xca\x97\x9f\x86\xea\x29\x30\xca\xcd\x2c\x9a\x18\xd0\xd1\xcb\xb7\x2d\x3e\x53\x3f\x53\xd1\xfd\x55\xe0\xb9\x34\x4d\x2c\x62\xfc\xac\x8a\x7d\xfb\x31\xbf\xd8\x52\xa5\x17\x99\x8b\xf1\x75\xc2\xb8\xd5\xf3\x56\x14\x32\xf6\xe9\x08\x59\xfb\x8c\x19\x82\x03\xcb\x00\x3a\x27\xfb\x9a\x42\xd1\x3e\x95\x14\x21\xb6\x9d\x57\x72\xd0\x86\xb1\x16\xf5\xaa\x56\xd4\xfa\xf8\xa1\x88\xa7\x93\x21\x98\x53\x8a\xc5\xc9\xbc\xd1\xd6\xb4\xd1\x16\xab\xd1\x16\xb3\xd1\x16\x3b\x8b\x07\x69\x84\x24\x04\x5f\xb1\x5b\x83\x84\x23\x99\xb2\x8e\x11\x1c\x46\x08\x58\x41\xd8\x25\x8a\x2c\x8a\xeb\x4c\x76\xea\x2c\x8a\x43\x2c\x76\xc4\xa6\xa4\x25\x8a\x62\xa5\xe1\xa2\xc2\x90\xa4\xbe\x65\x14\xd2\x58\x4d\xaa\x27\x97\x92\xa4\x48\x3d\xf5\x63\xc4\x97\x76\x78\x98\x17\x08\x21\xfc\x5e\x46\xd3\xfc\x73\xe0\xa8\x06\x65\x25\x17\x03\x0c\xa4\x4a\x7f\x4c\xd4\xbe\x82\xcb\x19\x24\x4c\x72\xc9\xd8\xda\xd3\xd1\xb3\x0f\x93\x79\xb1\x27\xe2\xf7\x4b\x76\x32\x0a\x1d\xfe\x06\x62\x60\x5a\x61\xf6\xa3\x86\xc2\x45\xf5\x0b\x15\x56\xc7\x80\x16\xa1\x9d\x66\x80\xd6\xae\x4c\x01\x6a\x27\xd2\xef\x5e\x00\x91\x1a\x00\xa3\x86\xc4\x62\xf9\xcb\x20\x7a\x03\x3a\x72\xf5\x13\x46\xc4\xaa\xef\x6b\x06\xe2\xea\x5d\x1d\x35\x0b\x35\xdd\x69\x2c\xc1\xaf\x9d\xac\x31\x6d\x3f\xa9\x80\xdb\x6c\xe5\x39\x38\x6d\xb1\x9f\x73\x99\xa0\xd3\x30\x1b\x73\xe1\x42\x24\x6a\x2a\xa9\x6c\xc7\x67\x0f\x50\x08\xc0\x0e\xc6\xc4\x84\x86\x00\x43\x88\x09\xc1\x20\xc6\xf2\xe9\x7f\xc3\xf7\x14\x45\x59\xbc\x5f\x64\xba\xfb\xab\x5a\x09\x79\x03\xee\xa2\x25\x96\xfe\x0f\x14\x07\xeb\xf8\xff\xeb\x83\x89\xe2\x05\x8a\x83\x43\x23\x76\xd3\x42\x78\xdb\x14\x00\xc0\x57\x09\x00\xfc\x2b\xac\xbb\x66\x03\x93\x30\x73\x66\x40\x9b\x2f\x2a\xf6\x52\x42\x13\x93\x21\x93\x24\xb7\xc8\x4b\x74\x47\xa2\x28\xdb\x0b\x1f\x4c\x14\xbf\xf1\x8b\x43\xd9\xef\xad\x47\xcc\x65\x70\xef\x08\x6f\x4a\xb2\xfa\x56\x61\x5b\x15\x00\xa0\xa1\x8b\xd4\x1b\x39\xe8\xae\x48\x88\x80\xae\x45\xcc\xec\xad\x94\x76\x5d\xb2\xb1\x15\xd3\x85\xa1\x1d\x3e\x1b\xec\x3a\x58\x98\x69\x73\x49\xfd\xdd\x97\x0e\xe6\xfe\xe3\xb9\xf1\xd2\x07\x16\x61\x59\xa8\x25\xab\xfb\xc6\x05\x01\xf4\x15\xa0\x6d\xb4\xa0\x04\xde\x72\x9c\xd5\xa6\x89\x54\xbb\x39\xa8\xdd\xca\x85\xac\xb9\xa8\x4e\xc2\x61\x93\xa4\x7a\x9d\x60\x73\xa7\x81\x21\xa0\xd9\xb0\x75\xeb\xbd\xa9\xc2\xf7\x5f\x39\x90\xfb\x69\x3a\x6c\x2e\x40\x85\xa6\xc4\x4b\x55\xe2\x55\x00\x00\xe8\x2b\x40\x47\x68\x90\x4d\xc4\xaf\x05\xea\x14\x00\x00\x6c\x86\xc0\x4e\x47\xcc\xec\x8d\x41\xed\x1a\xc5\x90\x8d\x1a\x24\x21\xdb\x38\xda\xeb\x24\x9b\x3b\x01\xaa\x64\xa7\xaf\x0e\x97\x5f\x7b\xe9\x60\xf6\x3b\x57\x87\xca\x17\x6d\xcc\x32\x50\x13\xfe\x3c\xd4\x5c\x9f\x7c\x3c\xd0\xae\x0d\x8a\xdb\x31\x0a\x00\x50\x97\x48\xc1\x23\xd8\x14\xe2\x62\xf9\x4d\xc2\x8c\xb9\xa4\xbe\x74\x2b\xa9\x5f\x25\x0c\xe9\x11\x83\x24\x45\x1b\x87\xfa\x8a\xd0\x1c\xba\x40\x8b\xb7\x92\xfa\x99\x57\xf7\xe7\xbe\xf3\xde\x54\xe1\x6d\x55\xa2\xab\x50\x11\xfa\x2c\xd4\x14\xa0\x08\xf5\x5c\x3d\x2e\xce\xce\xdd\x34\xfa\x03\xec\x30\x05\x70\xe0\xc9\x26\xf2\x32\x51\x7b\x67\x02\x0b\x3c\x29\x76\x65\x89\x96\x6f\x0c\x94\x67\x96\x63\xc6\x0d\x81\x21\x33\x6c\xe2\xb8\x60\x63\xa5\xaf\x08\xf5\x30\x08\x55\x17\x92\xfa\x87\x6f\x4d\xe7\x7f\xf0\xd6\x74\xfe\xd5\x74\xc4\x9a\x07\x04\x59\x80\x6a\x73\xb8\x7a\xbc\x54\x25\x9b\x56\xbb\x77\x2b\xb1\xa3\x05\xc2\xa7\x00\x9b\x5f\x8a\x9f\x0c\x95\x1d\x64\x67\x17\xd9\x69\x51\x00\x88\x60\x86\xa2\x93\x39\x79\xf2\x9e\xc5\xc8\x89\xa9\xac\x7c\x3c\x6c\x92\x14\x62\x7d\x8f\x91\x2e\xd0\xe2\x72\xcc\xb8\x72\x71\x44\x3d\x7d\x75\x58\xbd\x66\x10\xe6\x14\x24\x77\x46\x79\x3f\x9a\x12\xde\xed\xe9\x8a\x05\xda\x8d\xc2\x0f\xb0\xc3\x15\x00\xc0\x57\x09\xf8\x30\x65\x6f\x38\x30\xaf\x08\x61\xe0\x14\x02\x33\x14\x19\x2b\x48\xe3\x47\x97\xc3\xf7\xec\xcd\x28\xf7\xc4\x35\x32\xba\x43\x36\xd2\xb6\x0c\x0c\x01\x2d\x8b\x76\x76\x31\x6e\x5c\xba\x38\x52\x3a\x73\x73\x40\x9b\x31\x09\x73\xd8\x97\xbd\x42\xef\x8c\xf6\x7e\x19\x73\xae\x78\xa7\xdd\x2a\xfc\x00\xbb\x40\x01\x1c\x34\x98\x0d\x1c\x45\x70\xa2\x25\x9d\xa4\xef\x10\x54\x94\xc0\x51\x04\xe7\x38\x9c\x52\x85\xc1\x23\xab\xe1\xbb\xa6\xd3\xca\xb1\x41\x55\xdc\x2b\x59\x38\x72\x3b\x9b\x47\x16\x66\x7a\x5e\xb1\x96\x66\x53\xfa\xf9\xcb\xc3\xea\x85\xa5\xb8\xbe\x48\x51\x55\xc8\x1d\xe1\xe7\x7f\x0e\x12\x7c\xaf\xf0\xef\x4a\xb3\x87\xc7\xae\x7a\xe9\x01\xb3\x01\xaf\x08\x4e\xe8\xb0\x43\xfb\xe1\x28\x02\xaf\x0c\x4e\x8d\xb1\x90\x64\xe1\xe8\x54\x4e\x9e\x3c\xb8\x16\x3a\x3a\x9e\x97\x0e\xc7\x74\x61\x58\xb4\x6f\x8f\xbd\x04\x1b\x31\x4b\x95\x68\x66\x25\x66\x5c\xbf\x99\xd2\x2e\xde\x1c\x2c\xdf\x2c\xc8\x76\x16\x6a\x8c\x6c\x4e\x25\x1f\x95\x3b\x76\x84\xbe\x25\xb2\x80\xdd\x2e\xfc\x00\xbb\x4c\x01\x1c\x04\xcc\x06\x7e\x8a\xc0\xc7\xcf\xf3\xca\xe0\x28\x84\xf3\x9d\x12\xd3\x49\x62\x2a\xab\x4c\xed\xcd\xc8\x07\x47\x0b\xd2\xfe\xa8\x4e\x86\x76\x9b\x07\xc9\xc2\xcc\x28\x4b\x34\xbb\x16\x36\x67\xe7\x92\xda\xb5\xd9\x94\x76\x73\x3d\x62\xae\x53\xe4\x62\x5f\xf3\x6b\x8e\xe0\x1b\x50\x2f\xf8\x7e\x51\xad\xb7\x85\xf0\x03\xec\xa2\x97\xeb\x85\x47\x09\x00\x9a\x24\x86\x83\x7b\x56\xe0\x15\x42\xf1\x34\x39\xaa\x93\xf8\x78\x5e\x1e\x9d\xc8\x4b\x7b\x47\x0a\xd2\x9e\x84\x26\x8c\x29\x26\x8e\x11\x8a\xa4\x9d\xa4\x10\x36\x62\x96\x21\x30\xb5\x28\xdb\x6b\x6b\x11\xe3\xd6\x62\xdc\x98\x9d\x4f\xe8\xf3\x99\xb0\x99\xa1\xc8\x65\xc6\xf0\xb4\x83\xfc\x31\x3f\xda\x37\x1b\xf1\x6f\x9b\x51\x9f\xc7\x8e\x79\x99\x9d\xa2\x81\x59\xe4\xa5\x06\xf1\xce\x0a\xbc\x42\xf0\x8a\xc1\xff\x4e\x12\x28\x52\x52\xaa\x90\x1a\x2e\x4a\xc3\xc3\x45\x71\x6c\x50\x15\xc7\x62\xba\x30\xa4\x98\x38\x2e\xda\x48\x21\x14\x89\x5b\xa1\x14\x14\x31\xdb\x22\x4c\xd7\x05\x56\x2c\x49\x76\x26\x13\x32\x97\x56\xa3\xe6\xe2\x4a\xd4\x58\x5e\x8f\x98\xe9\xb2\x48\x4b\x50\x4f\x35\xa8\x71\x9f\x1a\xd4\xd3\x10\x7a\xa9\x08\xef\x18\xc1\x77\xb0\xeb\x15\xc0\x41\x0b\x8a\xe0\x37\x2b\x38\xeb\x05\xaf\x52\xf0\xdf\x49\xdc\xdf\x8a\x98\x81\x14\x31\x48\x24\xae\x09\xf1\x64\x59\x48\xa6\x54\x71\x30\xae\x93\x54\xd8\x20\x09\xc5\xc4\x11\xc9\x46\x11\xd1\xc6\x32\x66\x20\x60\x86\x08\x66\x40\x10\x43\xa4\xda\xd1\x8c\xeb\x73\x54\x11\x2e\x06\x8c\x51\x54\xd9\xd1\xb6\x37\x04\xdd\x24\xac\xac\x13\xaa\xaa\x92\x9d\x2b\xca\x76\x36\xaf\x58\x99\x74\xd8\x4a\x67\x42\x56\xb6\x28\x5b\x45\x93\x30\x27\x13\xcb\xe1\xd8\x74\x9a\xee\xd3\x0c\x70\xd3\xbe\x38\xcd\x4b\xff\x52\x27\xf8\x00\xb7\xaf\xf0\x57\x5e\xc1\x6d\x04\x1f\xa6\x34\xbf\xc5\xb2\x33\x2b\x38\x6b\x05\x5e\x21\x24\x70\xcf\x12\x92\xcf\xef\x44\xee\xff\xaa\x39\xc1\x84\x22\x51\xa4\x48\x0a\x99\x58\x0e\x19\x24\x24\xdb\x58\x96\x2c\x24\xcb\x16\x96\x25\x0b\xcb\x84\x01\x21\x0c\x11\x4c\x11\x41\x00\x88\x22\x46\x19\x02\x6a\x23\x66\x19\x84\x19\x86\x40\x0d\x83\x30\x5d\x17\xa8\xae\x4a\x76\x59\x13\xa8\xa6\x0b\xd4\xb0\x30\x33\x36\xca\x8c\xf2\xc4\xb2\x5e\x82\x59\x03\xdc\x64\xb3\xde\xef\x78\x81\xf7\x1b\xed\xef\x38\xc1\x77\x70\x5b\x29\x80\x83\x16\x14\xc1\x8f\x4b\xc7\xab\x10\xde\x26\x79\x7e\xe7\x97\x18\xef\x4d\x84\xf7\x63\x84\x70\xee\xa9\xae\xae\x2e\xd4\x87\x7b\xf0\x8d\x17\x5e\xb3\xc5\xd6\x88\x78\x36\xb0\xfe\xee\x9d\x20\xf8\x0e\x6e\x4b\x05\x70\xd0\x02\x77\xa6\x77\x66\xf0\x32\x33\xf0\x9b\x6d\x42\x40\xe3\x15\xc8\x7b\x2e\x2f\xc7\x4f\xab\x0a\xe0\x17\xf9\xca\x0b\x32\x3f\x13\x04\x35\x3f\x81\x6f\x48\xf7\x78\x27\x09\xbe\x83\xdb\x5a\x01\x78\x34\x99\x15\x9a\x29\x44\x10\x7d\x09\x81\xc6\xb4\x27\xed\xcc\x00\x7e\x49\x40\xbe\x21\xe0\x50\x2f\xe0\x5e\x61\xf7\x8e\xf2\x7e\x26\xce\x1d\x2d\xf8\x0e\xee\x18\x05\x70\xd0\x64\x56\x08\x52\x08\x3f\xc2\x2a\xef\x71\x33\xf6\x38\xaf\xdb\xb6\x11\x6d\x78\xc3\x8c\x38\x9f\x63\xef\x08\xdf\x94\x96\xe5\x4e\x16\x7a\x1e\x77\x9c\x02\xf0\x68\xa2\x0c\xfc\x71\x10\x15\x22\x0e\xf8\xde\x7b\x0c\x3e\x9f\x00\xc1\x4a\xe0\xa7\x0c\x8d\x3e\x83\x1a\x7f\x0d\x00\xe8\x0b\xbe\x17\x77\xb4\x02\x38\x68\x81\xc3\x3e\x68\xa6\xf0\xfb\x2e\x68\xc4\x6f\xd4\xd7\x7e\x8a\xe0\xfd\xb9\x91\x80\x37\x64\xad\xee\x0b\x7d\x30\xfa\x0a\xe0\x83\x16\x14\xa2\x9d\x4f\xef\x71\x10\x58\x87\x9f\xde\x63\x00\xe8\x0b\x7d\xab\xe8\x2b\x40\x13\x34\x28\xea\x80\xda\xfc\xd9\xfb\xbb\x20\x01\x65\x6d\xfe\x0c\x00\x7d\x81\xef\x14\x7d\x05\xe8\x00\x2d\x56\x3a\xe9\xb4\x6f\x9b\x0a\x72\x5f\xd8\x7b\x87\xbe\x02\xf4\x18\xad\x96\x01\x6a\x86\xbe\x90\xf7\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x3d\xc5\xff\x0f\xa9\x40\x1f\x73\x75\xc7\xd3\x6b\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x37\x2d\x30\x33\x2d\x33\x31\x54\x30\x30\x3a\x34\x33\x3a\x32\x33\x2b\x30\x32\x3a\x30\x30\xc3\x2e\x30\xd9\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x37\x2d\x30\x33\x2d\x33\x31\x54\x30\x30\x3a\x34\x33\x3a\x32\x33\x2b\x30\x32\x3a\x30\x30\xb2\x73\x88\x65\x00\x00\x00\x57\x7a\x54\x58\x74\x52\x61\x77\x20\x70\x72\x6f\x66\x69\x6c\x65\x20\x74\x79\x70\x65\x20\x69\x70\x74\x63\x00\x00\x78\x9c\xe3\xf2\x0c\x08\x71\x56\x28\x28\xca\x4f\xcb\xcc\x49\xe5\x52\x00\x03\x23\x0b\x2e\x63\x0b\x13\x23\x13\x4b\x93\x14\x03\x13\x20\x44\x80\x34\xc3\x64\x03\x23\xb3\x54\x20\xcb\xd8\xd4\xc8\xc4\xcc\xc4\x1c\xc4\x07\xcb\x80\x48\xa0\x4a\x2e\x00\xea\x17\x11\x74\xf2\x42\x35\x95\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x85\x3c\x99\xda\x4a\x47\x00\x00") +var _web_uiV1StaticAndroidChrome192x192Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x9a\x55\x53\xdc\x0d\xb3\xc4\xff\xbb\xb8\xbb\x43\x70\x87\xa0\xc1\x65\x71\x0b\xee\xee\x12\x9c\xe0\xbe\x10\xdc\xdd\x9d\x20\xc1\x03\x09\x21\xb8\xbb\xbb\x6b\x70\x77\x87\x53\xcf\xf9\x00\x6f\x4d\xcd\x5c\xcc\x6d\x57\xf5\xaf\x2f\x3a\x52\x45\x49\x06\x0d\x99\x18\x19\x00\x00\x34\x39\x59\x49\x35\x00\x00\x3a\xff\x5b\x44\x78\x00\x00\xd4\x56\xed\x11\x00\x00\x80\xb5\x16\x53\x14\x03\x80\x9f\xf1\x28\x2f\xa6\x70\x00\x00\x50\x98\xcb\xaa\x29\x02\x80\x0f\x1d\x00\x40\x43\x00\xe0\x09\x00\x00\xe8\x01\x00\xb8\xb3\x03\xc0\x91\x09\x00\x08\x64\x00\x00\x81\x73\x4e\xb3\xaa\x10\x00\x00\xf0\x66\x0a\x32\x92\xc0\xfb\x7f\x53\xd0\x56\x96\x0c\x00\x00\x82\x9b\x9c\xa2\x14\xc2\x16\x0c\x39\xc0\x4c\x50\xf9\x9b\x9e\x1d\x00\xa4\x8e\xe5\x24\xc5\x34\xbc\x96\x4f\xdb\xbe\x24\xd0\xc8\x78\xd0\xdd\xad\x0a\xd7\xb4\x72\x1d\xb7\x37\x57\x3a\x71\x37\x83\x50\xa1\xfd\x1c\x36\x00\xcc\x28\x90\x01\xb2\x0e\xe3\x52\x40\x0f\xff\x17\xa1\x10\xfb\x85\xef\x68\x97\xf2\x0c\xdd\x93\x71\xca\x46\xcf\xa5\x24\x35\x8d\x53\x75\x1a\xc3\x56\xb1\x1e\x6f\xd4\x42\xef\x8b\x9c\x0b\xbf\xc1\x0e\xfa\x5e\x3b\xc6\xaa\x36\x0c\x1a\xf7\x93\x48\x65\xf3\x19\xf5\x79\x4c\xcc\x8c\xa1\x68\x3d\xd5\x0c\x35\x27\xd5\x79\x73\xf3\x35\x97\xeb\x48\x79\x55\x05\x9f\xd0\xba\x6b\xe0\xdb\x4b\xdb\x39\xe8\x66\x4a\x86\xdc\xff\x7f\x9c\x01\x07\xc4\x5f\x6b\xbc\xce\x2d\x5b\xb3\x3f\xd4\x85\x0f\x67\x08\x8c\xbc\x82\x1c\xee\x1b\x56\x91\x0e\x98\x21\x08\x36\xaa\x83\x2d\x87\x2b\x61\xdd\x1b\xda\x71\xeb\x85\xb5\x00\x2b\x05\x64\x53\x35\x5b\xd4\x37\x70\x41\x36\x42\xb7\x93\x03\xf6\xd5\xd8\x98\x51\x40\xc2\x18\xe4\xb7\x49\x7d\x31\xb8\xdf\x34\xa7\x7c\xee\x82\x99\xb1\x3f\xc3\x6f\xa5\x18\x70\xfe\x8a\x0e\x3c\x21\x4f\x31\x3d\x21\xd7\x81\xe2\x27\x7d\xe3\x13\xf7\x17\xcf\xad\x3b\xe0\x37\x6b\x31\x8d\x2e\x82\x4f\x84\xd1\x6d\x31\x2f\xb8\xde\x91\x00\x7f\x4b\x9b\x10\x41\x3d\x10\x38\x44\x44\xb6\xe9\xe7\x84\xcb\x64\xd9\xfd\xe2\xf9\x0b\x30\x16\x9a\xfb\x44\x3a\x03\x3d\xff\x86\x1b\xf2\x7e\xc2\xfc\x0d\xc1\x33\x07\xcc\x8d\xf9\x44\x11\x34\x20\x12\xeb\x15\x4f\x8b\x82\xf2\xa3\xbe\x80\x66\x44\x9c\x4f\x17\xdf\xac\x3e\xb4\xa7\x3e\x94\xba\x3e\xb4\x98\x4a\x0a\xeb\xb3\x98\x24\xb4\x37\x56\x79\x14\xb3\x81\x11\xda\x87\xc9\xc5\xda\xad\x81\xd3\x50\x2f\xa7\x23\x87\xf3\xe5\x07\xc3\x4a\x68\xab\x7d\xea\x55\x94\xa6\x52\x38\xeb\x58\xff\x68\x58\xd6\xa6\x3a\x70\xf1\x76\xe2\x60\xb4\x0b\x1c\x30\x7f\x63\x3b\x23\x84\xbb\xc0\x7a\xa1\x28\xdc\x87\xcb\xf6\x8a\x83\x1b\xea\xde\xd6\x11\x8b\x8a\xc3\xff\xde\x25\xa6\x49\x1a\xff\xc5\xc2\x69\xb0\xd7\x57\x92\x24\x1e\x09\x17\x0d\x07\x19\x26\xa3\x90\x0f\xac\x82\x09\x83\x05\x4a\x82\x82\x40\x40\x88\xed\x02\xb0\x88\xa9\x06\xdf\x09\x80\xe0\x80\x68\x50\x03\x21\x38\x97\x8a\x41\xb5\x17\x99\x27\x38\x46\xea\xa0\x5e\x6c\x51\x5c\xf7\xfb\xb5\x77\x5f\xf3\x6f\xe2\x4f\x04\xf8\x3b\x3e\x3e\xac\x66\x15\x3c\x56\xf8\x1a\x29\x5d\x2b\x2f\xb8\xdd\x95\xa8\xfe\x52\x50\x41\x08\x88\xaf\xeb\x3e\xee\x6e\x1d\x2b\xcf\x2b\x0b\x00\xc4\x07\x7b\xa7\x83\x6e\x27\x2f\x24\x95\xf2\x94\x7e\x74\x27\x46\x88\x9d\xa5\xb1\xfa\xa9\x14\xd8\xa0\x72\xa5\xf4\xa2\x8a\x93\x04\x76\xfc\x30\x49\x5d\x12\xff\xcd\xf1\x9d\x75\x14\xdf\x2d\xc8\x88\x71\xf8\x2e\xf4\xb6\xce\x7b\x57\x4b\xbe\xe5\x53\xf6\x2c\x57\x18\x04\x0d\x70\x4e\x09\xd6\x8e\x2b\x20\xea\xfe\xc4\xbc\x1a\x19\xe5\xac\xcf\x04\xe9\xb4\xc1\xd8\xc4\xf7\xb1\x76\x23\x80\xe2\x78\x01\x98\xf4\x5f\xbf\xbe\x4c\xea\xd9\x6c\xd8\x88\x35\xf3\x96\x26\x23\xe0\xe1\x90\xe3\x30\x10\x0f\xa0\x4a\x15\xf2\x04\x3b\x09\x12\x42\xa5\x38\x46\xf4\x33\xd6\xa6\x25\x7d\x44\xca\x74\xce\x59\xfb\x63\x31\xd8\x62\xcb\x1b\x0e\xeb\x74\xc1\x00\x0e\x53\xd4\x66\x2e\x23\xf1\x18\xaa\x67\x0a\xd5\xaa\x07\xf2\x26\xd1\xe5\xeb\x28\xc9\x02\x22\x06\x40\x05\x44\xa8\xeb\xf2\xbb\x58\x7c\xf2\xb3\x60\x61\x13\x26\x9e\x09\x8d\x97\xe7\x11\x10\x67\x90\xef\xc2\x8f\x39\x6b\x03\xc3\xd4\xd9\x8f\x6a\xb9\x05\xe5\x4d\x30\xdf\x65\xa3\x20\xbd\x9e\xba\x9a\x97\x54\xe6\x70\xf2\x21\x6f\x8d\x62\x06\x58\x4d\xf7\xff\x38\x43\x95\x6a\x72\xc0\x2d\x88\xdc\x7c\x46\xf6\x37\xc0\xe9\x1e\x48\xa7\x7a\x2e\x9b\x19\x4e\x46\x52\xf4\x92\xaf\x9f\x52\x15\x57\xbd\xe2\x39\x24\xb0\x35\x6f\x2c\x45\xba\xf9\x66\x3f\xf8\xd4\x77\xdb\x75\x45\x62\x4d\x2f\xcf\x05\x5f\x28\xd0\x94\xda\xa5\x1a\x21\xa8\x86\xe5\xf1\x1a\x7d\xf7\xf3\xb2\xcd\x2a\x8e\xfa\x61\x5b\x3a\xf9\xae\x24\xb5\xcb\x97\xa0\x38\x1e\x95\xa0\x6f\xbf\x1b\xde\x5b\xb2\xc0\x06\xd5\x23\xe1\xcb\x8c\x1d\x3b\x30\x42\x65\x5f\xc3\xb0\x54\xcb\xd2\x77\x4b\xde\x21\xaa\x2b\xd4\x80\xcb\xf5\x15\x30\x81\x76\x64\xf6\x32\xc3\x74\x3a\x54\x21\xb6\x68\x81\xc0\x27\x7e\xb5\x99\x3b\x88\x6d\xb2\x0c\x6a\x71\x6c\x52\xa5\x67\x7a\x48\xa2\x9f\x0a\xa2\xf2\xd3\x58\xfd\x30\xac\x30\xd7\xcf\xf6\x17\x6d\x55\x7a\xaf\x2c\x13\xdb\x5b\x88\x3f\x75\xf8\x7b\x14\x3d\x0c\xff\xee\xba\x62\x02\x1e\xc6\x90\x03\xa2\xf7\x56\x94\x90\x3c\x4a\xc0\x0f\x19\x82\xad\xcf\x49\xbc\xae\x34\xe2\x89\x5f\xcf\xcd\xdc\x9e\xce\x76\x2f\xca\xd4\x2d\xb7\xb8\x8a\x42\x31\x8a\x86\xcf\xcf\x6d\xd8\x61\x9b\x3f\x4e\x62\x2c\xf4\xec\xfd\x59\xcf\x67\x78\x3b\xb8\x8a\x68\x86\xc5\x93\xda\xb4\x86\x0b\x90\x76\xf6\x8e\x73\x24\x90\x5a\xd4\x44\xc6\x34\xd9\xf7\x85\x33\x5e\xb6\xb9\xf2\x47\x99\x6a\x1b\x48\xa7\xca\x97\xfb\xd1\xbd\x4f\x43\x42\x0e\x35\xfc\x55\xb0\xc6\xc4\x0e\xa8\x13\x1c\xfc\x9d\x2b\x7f\xbc\x3f\x57\xc6\x0f\xf0\x73\x2f\x6f\x45\xfd\x24\xb5\xb9\x56\xc1\xe3\xd5\x2a\xfd\xe7\x1b\xf6\x09\x31\x9c\x0d\xfb\x51\x8b\xb4\x1f\xa0\x72\x57\x92\xba\x15\x6e\xb5\x93\xff\xe1\x63\x64\xc7\x47\xfd\x07\xf6\x1b\xb8\x0e\x46\x42\xb0\x04\xce\x41\x66\x5f\xd3\x1b\xaf\x93\xd2\x7e\xe0\x4f\x52\x2e\xce\x4d\x51\xea\x55\x2d\xab\xa9\x1a\x15\x28\xda\xd6\xfd\xf5\xc9\x45\x30\x5b\x99\x06\xa5\xcb\x95\xd5\x76\xe4\x50\xce\x8b\x3e\x65\xb2\x50\x08\xa1\xec\x8a\xff\x79\x0b\x1a\xae\xd8\x0f\x9a\xa5\xda\x55\x42\x96\xf7\x8e\x5a\xd2\xc1\x76\x3b\xcc\x52\xf1\x3a\xaa\x13\x1f\xda\xc5\x29\xe4\xc9\xee\x72\x36\x10\x14\x15\x28\x0c\xb7\xde\x91\x89\x63\x93\x6a\x27\x5d\x18\xbc\xce\x28\x5c\xf4\xd8\x78\x76\x0c\x0f\x5d\x92\xa7\xb3\x7f\x7d\xcd\x1c\xea\x5e\x98\x88\x4d\xb5\x02\x41\x60\xfe\x50\xcd\x7a\x47\x7b\x14\x63\x9f\xe8\xcc\x74\x52\xbf\x04\x50\x07\x20\x02\xdd\xe6\xde\x5f\x1e\xd4\x09\x10\xda\x9d\x2d\x3e\xbd\xd0\x63\x7d\x13\x8a\x03\x86\x56\xfc\xcf\xff\xc0\xb0\x4b\x24\xd6\x89\x7d\xc8\x18\x1d\xc1\x88\xc3\xff\xde\xad\xb6\xaa\xc3\x03\x2b\x2d\x1c\xb8\x87\xfd\x30\x53\xa6\xec\x74\xef\xf0\x27\x96\xec\x07\x90\x73\x71\xed\xa8\xb8\x10\x81\x01\x24\xca\x58\x6f\xdf\x0b\x05\x70\x5d\x0e\xf4\xd0\x1e\x8a\xe2\x31\x10\x87\x91\x89\x14\x9f\xf2\x50\x00\x2c\x2a\xdc\x69\x2c\x28\xf1\xe7\x0a\xe1\x49\xb8\x0d\x4b\xa9\x19\xba\xdb\x6f\xbd\xbb\x44\x02\x2e\xdb\xbd\x35\xea\xc1\x64\x65\x40\x4e\xdb\xf9\x27\xcf\x7f\xb1\xf8\x4a\x36\xe2\x57\x8f\xd1\x30\x1d\x7e\x0b\xf2\x0f\xca\x3d\x74\xde\xdf\xcf\xe7\x57\x0d\x4c\x20\xf2\x8b\x34\xe4\x99\x83\x23\xf7\xe8\x69\xbd\x25\xd9\x30\xcb\x54\x12\x6f\x41\xee\xf4\x4a\x39\x90\x16\x39\x24\x8f\x98\x4d\xd8\xc5\xe7\x17\xab\x34\x30\x50\x28\x61\x57\x38\x34\xe0\x48\xd3\x9e\xc5\x84\xd2\x51\x8f\x95\xd3\xb8\xd3\x89\xa9\x42\xc2\x11\x4d\x65\xb5\x44\xc8\x42\xa2\x1d\xc7\x08\xce\xa6\x2c\x40\x25\xa4\x08\xc3\x84\xef\xcc\xa0\x12\x27\x8c\xc8\xa0\x0a\x62\xa7\x31\x41\x06\x5b\x45\x14\xe4\xf2\x66\x9b\xf6\xf5\x62\x90\xe9\xa2\xbd\xf7\x99\xc8\xbd\xf0\x8a\xf2\x65\xbd\x55\xde\x46\x1c\xc6\x72\xc3\xd9\x24\x4d\x76\xcc\xd4\x51\xe3\x76\x0e\xac\xef\x87\x1a\x07\x47\x5d\x84\x93\xb7\x64\x36\x9d\xe7\xf5\x0d\x8a\xa2\x93\xfc\xa3\x59\x06\x35\x10\x48\x40\x58\x47\x51\x0d\x0b\x4a\xea\x65\xaf\xa5\x96\x86\x71\x69\x05\xb5\x53\x4e\xfd\x54\x1b\x51\x2c\x13\xd3\xdc\x83\x8e\x9a\x21\xee\x28\x5c\xd1\x54\x26\xb8\x1c\xc3\x98\xec\xa3\x00\x65\x58\x1d\x04\x0b\xcb\x81\x46\x9e\x27\x4d\x9c\x4e\xab\x1b\x1e\x5d\x06\x0d\x3b\xde\x56\x9c\xca\x2c\x41\xb2\xb7\x73\x28\x41\xce\x2c\x29\xb6\x3b\x84\xca\xa5\x25\x3f\x53\x85\x1b\xff\xd3\xe0\x40\x11\xfc\x63\xbf\x4f\x2f\x8b\x98\xc3\x7e\x93\x6e\xd1\x7b\x5c\x6f\x23\x33\x04\x7a\x21\x18\x6d\x48\x04\xe0\x4e\x49\x4f\xed\x7f\x44\x13\xfa\xc3\x56\xfd\x52\x68\xb1\xf3\x6d\xc5\xbd\x16\x15\x9a\x09\x66\x25\xa0\xf5\x15\x26\xa9\xd7\x9a\xa7\xde\xdb\x96\x9f\x35\x18\x0f\x19\xb3\x57\x6d\x54\x10\x28\x24\x96\x08\x8a\x64\xac\xa1\xc1\x3d\xcb\x84\x49\x76\x41\x94\x12\x1f\xec\x2d\x6c\xa2\xeb\x45\xd0\x74\x31\x69\x62\x88\x43\x4b\xeb\xbd\x6c\xa2\x8b\x09\xf9\x4c\x4a\xc0\xb0\xfc\x95\xb7\x96\x72\x52\xdf\x7a\x40\xe1\xdd\x91\xae\x84\x48\x05\x85\x71\x5f\x62\xdc\x13\xaf\x51\x13\x04\x16\x12\x86\x6d\xea\x73\x34\xc0\x49\x9a\x30\x24\x7e\xd8\x96\x34\x7a\x92\x09\x29\xea\xaa\x6e\x97\x89\x82\xda\x16\xe5\x2a\x87\x57\x3d\xee\x36\x71\x08\xe6\x4f\x3a\x55\x4b\xc6\xce\x25\x59\x10\x10\x55\x3c\xf5\x65\xf7\xad\x3d\xd3\x16\x3e\x30\xb6\x2b\x80\xec\x47\x43\x8a\xec\x51\xa4\x96\xf0\xf1\xb1\x9b\x01\xa0\x08\x92\x98\xc3\x82\x12\x79\xd9\x2a\xc4\x93\x98\x5c\x2a\x13\x35\xed\xf6\x19\x27\x8c\x96\x24\x94\xa7\x85\xcd\x7e\x34\x2a\x3d\x7c\x24\xf0\xfa\xa9\x7d\xf5\xd3\x99\x91\x67\xf5\x05\x8c\x7d\x31\x98\xdb\xd9\x55\xa0\x9b\xfc\xc3\x88\x42\x4f\x7e\x53\xd2\xd3\xb0\x8a\xdc\x0b\xeb\xa8\x8a\x45\xe5\x59\x2c\x88\xdd\xb0\xa0\xef\x36\xc2\xdb\xee\xe3\x0f\xe3\x4c\xb9\x2f\x5c\x95\xaa\xe6\x73\x34\x55\xa8\x9f\x44\x9b\xae\x0f\x09\xf4\x56\x59\x2e\x7b\xc5\x1a\xdc\x3e\x83\x84\x28\x57\xf1\xad\xb6\xf5\x7a\x3f\xd7\x4a\x8d\x3e\x36\xec\x38\xf3\x98\x25\x2c\x4a\x2a\x7d\x58\xc9\xd7\x42\x8f\xdd\xdf\x95\xe0\x88\x8d\xb1\xef\x1f\xed\xc4\x5c\x6c\x90\x7b\xa5\xef\xe0\xcb\xf0\x1e\x59\xd3\x6c\x99\x38\xd9\xfa\xc9\x8a\x3c\x29\xf9\x80\x07\x20\x2a\x97\xa5\x46\x96\xd5\x96\xbc\xb1\xeb\xe2\x8b\x74\x68\x0a\x36\xe3\x72\x30\xd7\x2e\x8e\xb8\xca\xbd\x4e\xcf\x51\xde\x4e\xfb\x89\x1b\xb3\xdb\x09\x16\x2a\x71\x35\xcd\x47\x5d\x3c\xc7\xbe\x09\xb5\x32\x66\xb9\x7b\x0f\x6e\xaa\x82\x37\xb7\x73\xe5\x93\x72\x5b\x38\xab\x6a\x8c\x88\xb4\xd8\x06\x3e\x51\xfe\x14\xad\x3e\x11\x6d\xc2\x17\xe0\x31\x48\x41\x67\xa0\x8b\xbb\xb5\xe5\x68\x23\xe6\x10\xf1\x3a\x34\xd9\x0b\xa7\x33\x15\x68\xa2\x96\x26\x11\x5e\x89\x1b\x48\x63\x86\xe0\x6c\x61\x80\x20\x0f\x9b\x7a\x36\x47\x43\xc7\x43\x81\x59\x0c\x28\xf9\xeb\x51\x7d\x35\xa1\x99\x89\xe8\xd9\x0d\x0b\xe1\xc3\xe4\x06\xc4\xaa\x6c\x96\xe2\x5a\xc4\x4c\x82\xf9\x4a\xd7\xea\x50\x8a\x2d\xa7\xb4\x98\x33\xa9\xe2\x5e\xbf\xf6\xc0\x97\x14\xc8\x5e\x56\x92\x76\xd5\xcb\x33\x4e\xdf\x9c\xab\x79\x89\x6b\x32\xbf\xf7\xf6\xc1\xd7\x87\x75\x61\xdd\x5d\x9d\x5e\x0a\x98\x08\xf7\xbc\x73\x95\x84\xd3\xc7\x85\xfb\xdd\x8e\x54\x24\xed\xe7\x3e\xa4\xfc\xbd\x1e\x2a\x0f\xda\x46\x0d\x90\x1e\xd6\x5b\x8b\x56\xf7\xf3\x87\x8e\xc4\x87\x9d\x26\x3a\x21\x84\xec\x9c\xef\x66\xa6\x56\x55\x52\xa3\xd9\xe9\xd2\x73\x9e\x1f\x63\xcb\xd3\x35\xa7\xc6\x61\x20\xde\xc5\x5f\x56\xcb\x36\x06\x37\x64\x2f\x5e\x9b\x7c\x80\x17\x45\x8a\x73\xeb\xe2\x10\xff\x5a\x2a\x0d\x6b\x70\xf9\x68\x0e\x32\xc0\x80\x6f\xd5\x97\x99\x92\x96\xaf\x68\xcb\x45\x2d\x75\x78\xea\x8b\x4f\x4d\xbe\x94\x8e\xee\x4f\x53\x91\x5c\xe8\x61\x0d\xfb\x6d\xb2\x3b\x73\xa8\xdb\xd3\x11\x35\xcd\x09\x80\x20\x01\xb3\xb1\x22\x5b\xd4\x52\x9e\xa7\x2c\x75\x64\x74\x2a\x05\x17\xe4\x7a\x28\xa7\xfe\x2f\xd2\xdb\x1d\x51\x76\xdd\x0d\x75\x91\x28\xcc\x51\x19\xbf\x3f\xfc\xb4\x62\x8b\x49\x5b\x6f\xe5\xab\x30\x52\x93\x12\x44\x49\x25\xd0\x0f\x5b\x46\xb9\xc3\x79\xd3\x92\x7e\xd1\x82\xdd\xa8\x55\x6e\xcd\x3f\x1d\x45\x7c\xb1\x2f\xb0\xbf\xb1\x8e\xa0\x44\x64\x1b\x88\x99\x96\x9f\xd5\x21\x66\x4d\x59\xef\x70\xe2\x78\xda\x6c\xff\xf5\x35\x70\x91\xe2\x87\xd6\xf3\xe1\xb0\xf3\xa3\xf5\xb9\x22\xde\x06\x1c\x14\x0c\xe0\xfe\x0d\xf8\xfa\x64\xae\x3d\x00\xe3\x90\x09\x86\x3d\xb9\xd0\x72\x78\x6b\x23\xb2\xbc\x8a\x3c\x1e\x12\x8d\xb2\xeb\xe6\xaa\x93\xeb\x9e\x00\x74\xc4\x7e\x6a\x7d\xc4\x48\xdf\x78\x32\x29\xf2\xa2\xab\xd5\x39\x56\xf1\x2e\x1c\x1f\xd4\xda\x23\x76\xba\x7a\xd8\x9d\xf0\xd9\xd9\xc9\x46\xf2\xa7\xee\xb2\x09\x2d\xfc\x18\x31\x55\xf4\x11\x03\x6c\xdb\x20\x46\xc8\x14\x85\xa9\x1b\x45\x52\xb2\xab\xe3\xf3\xc5\x49\xfa\xf1\x22\xe8\x71\xd1\x3c\x99\xff\xb1\x69\xb1\xd7\xf5\x57\x02\xfb\xba\xbf\x43\xe0\xd9\x3e\xee\x4f\x52\x0d\xdc\x82\xba\x29\x6d\x31\xae\xce\x9a\x9e\x34\x06\x28\x7d\xce\xd2\xf1\x3e\x46\xfc\x7e\xc9\x54\x59\x2d\xdd\x7b\xb4\xa4\xee\x03\xed\x22\x4d\xc3\x00\xc5\xe7\xb6\xd4\xe9\xf5\x40\x5f\xe5\xb7\xb9\x92\xa6\x9f\x40\x2a\xc1\x21\x37\x9e\x2d\xf2\x66\xac\xcf\x0d\xc9\x25\x09\x96\x22\x1c\x92\x78\x25\xf2\xe6\xbd\x21\x35\x36\x9b\xd3\x3a\x57\x2d\x22\x93\x86\x15\x0c\x1e\xd0\x8d\x1a\x24\xc0\x55\x90\x4a\x80\xfd\xd4\xfd\xb3\x64\x30\xf4\x19\xbf\x58\x19\xb5\x7c\xfb\xd7\xc6\x13\x05\x49\xbd\x63\x6b\xa3\xe8\x7d\x6e\x92\x45\x2d\x18\x12\x50\x9c\x5a\xc0\xc3\x77\x81\x55\xd8\xf2\xf5\x06\x61\x31\x18\xce\x0a\x7a\x21\x48\x1d\x48\x53\x9a\x1c\xa4\x6c\x48\xfc\x22\xf3\xad\xe2\xe6\x38\x1b\x6b\xa6\x07\xd0\xa1\xb3\x5f\xf7\xf1\x75\x7a\x6b\xa9\x3d\x9d\x68\x4b\xd2\x3e\xa1\x05\x06\xbf\xb2\xfe\x99\xca\x99\x1a\xf3\x1e\x1a\x67\x20\x48\xc1\x9c\x1e\x9c\x3f\x9f\xaa\x7e\xfe\x1a\xee\x83\x97\x70\x2f\xa4\x9b\xb7\xe7\xbe\xa0\x07\x98\xa8\xa1\xee\x7d\x5d\xd5\x69\x4b\x9d\xad\x19\xc2\x6f\xdc\x69\x66\x67\x99\xd4\xc3\xad\xa6\x9b\xbe\xc9\x9e\x79\xac\x35\x26\x61\x32\xde\x7e\x8a\xd0\x06\xd6\x5f\x4c\x81\x4e\x8f\xe2\x0b\x18\xfb\x2b\x54\xcc\xba\x03\x77\xe9\x37\x4c\x2b\x86\xa7\xd5\x92\x20\x36\x74\xbc\xbe\x0d\x08\xaa\x4f\xfb\x98\x13\x76\xe9\x58\xe9\x2f\xcf\x8d\x8c\xf1\x57\xb3\x4f\xb6\x1f\xc5\xfb\xc2\xdc\xf5\x04\xbb\xd7\x93\x0c\x3b\x88\xc4\x9d\x8f\x66\x19\xdf\x64\xce\xe9\x88\x43\x97\x37\xcd\x9c\x6e\x38\xd8\x1e\x04\x34\xe0\x49\xc8\x6c\x3f\x54\x57\x64\xa6\x23\xe9\xef\x92\x93\x0f\x7d\x8f\x67\x25\x4a\x27\xcf\x89\x16\x4e\x67\x42\x41\x70\x18\xbd\x51\xe8\x39\xf2\x1c\x8f\x23\xd8\xf8\x96\xb5\x49\x50\x10\x70\x49\xf2\xab\xa5\xad\xb2\xee\x0b\x8a\x22\xf9\xd6\xfe\x58\x1e\x22\x20\x99\xdf\xc1\xfe\xa0\x10\x3e\x2f\x1e\xc8\xa4\xc2\x3d\x79\x7c\x9c\x4e\xe3\x7b\xfa\x1a\xb9\xad\x3c\xf1\x19\x6f\xfd\x13\xe2\x88\xf8\x58\x98\x7b\xc8\x06\x87\xb7\x9e\x12\x2c\xc2\xc4\xc8\x7a\x9c\x2a\x5b\x81\x87\x18\xb5\x3c\xe1\x80\xc3\x30\x5b\x42\x0f\xc9\x39\x45\xbd\x4b\x55\x0c\xde\xf7\x2e\xfa\x1a\xfa\xfc\xdf\x1c\xcc\x81\xe7\x07\x4f\x1b\x76\x54\x63\x90\xb1\x1b\x17\x2b\x19\xeb\x1b\xcf\xa5\xb7\xea\x3b\x89\xca\xdd\xe2\xc6\x7a\x63\x5e\x7d\x90\x9f\x4c\x00\x10\x21\xec\xc1\x75\x39\x09\x73\x3d\xf5\x6e\x54\x7f\xe1\xc6\x56\x3b\x02\x2c\xea\xcd\xb6\xde\xf5\xbb\x9d\x3d\x2f\x84\x0d\x6b\x17\xd0\x3d\x28\xb9\x9e\xf8\xaf\xcf\x3b\xd1\x3c\x08\xa6\x49\x36\x22\xcd\xfc\x5e\xb0\xeb\xf5\x8d\xae\x40\xf9\x17\x5b\x0a\x40\x0b\x74\x74\x68\x70\xa7\x92\x2c\x04\x5f\x7b\x27\xd2\x5a\x0f\x67\xea\x2f\xfe\xa8\xd8\xd3\x4c\xea\xd6\xe1\xbd\xb6\x31\x22\x6f\xfe\x7c\xce\x25\xd8\x44\x0c\xbc\xd9\xd4\xb3\xd9\x18\xa8\x2d\x7d\xb3\xd4\xa0\x8f\xbf\xbb\x6a\xc6\xe5\xb0\xe3\x29\xe9\xb8\x1f\x0e\x3a\xc1\x98\xa7\xda\xa3\x6a\x92\x61\x7f\x93\x12\x50\xf7\x56\x89\x3b\x8e\xc3\xf7\x13\xe5\x36\xe9\x40\xa7\xc1\x58\xb4\x89\x7b\xd6\x80\x66\x31\x5a\xda\xdf\x60\x9d\x13\x5e\x94\x8a\x37\x52\xbf\x88\xc1\x49\x7b\xc1\xe2\xbd\x2e\xce\xbe\x9d\xff\x05\x3f\x58\xb8\x5e\xb6\xbf\xc9\x1a\xe0\x84\x89\xdc\x6f\x4d\x8a\x92\x31\x45\x76\xc0\x0b\xdf\x3c\xe8\x64\x7c\xd1\x0e\x9b\xd3\x36\x16\x49\x78\xfe\xc1\xb4\x64\xb7\xd9\x68\xec\xbd\xb5\x2f\x57\xe0\xd5\x1c\xbf\x12\x7c\x5f\x1a\x49\x75\xe1\x8b\x88\xdd\xd4\x26\x6d\xb1\x73\xce\xa0\x01\x0f\x17\x70\x9f\x7d\x5e\x5b\x6a\x94\x4f\xc7\x9d\x1a\xa0\xe9\xd6\x1a\xfd\xc2\xba\x43\xb9\xcc\x02\x77\xb1\xfc\x8a\xac\x71\x32\xf6\xb0\x2f\x4a\xfa\x14\x7b\xe8\x76\x10\xcf\x63\xd3\xe7\x0b\xfe\x36\x39\x1d\xbe\x53\x42\xde\xd6\xce\x76\x5f\x21\xa7\x43\xfc\x12\x2a\x6a\x83\xf2\xde\x88\xe9\xc7\xa6\x67\x32\x8e\x23\x34\x86\xa5\x34\xd0\xf0\x2f\xd6\xed\x54\xe3\xa1\x4d\x4a\xea\x61\x9b\x6a\xfc\xd6\xab\xeb\x8f\x70\xfe\xdc\x7d\x03\xd1\x79\x69\x19\xf2\xa6\xf9\x13\x5f\x37\x39\x3c\x74\xb1\x98\xeb\x12\x87\xde\xb1\xef\x2d\xd5\x62\x47\xb8\xad\xb9\xf4\xe3\x7f\x4e\xb4\x7d\xbf\x9e\x33\xde\xa1\x84\x35\x02\x5d\xa9\x3e\x3c\x31\xf0\x29\xbb\x58\x09\x9b\x2f\x26\x22\x76\x2e\xe3\xc1\x96\x95\x01\x5e\x79\x5e\xf5\xf0\xde\x3a\x73\x8f\x13\x83\x71\x97\xd3\x55\xe1\x7b\xe0\x23\x17\x23\x96\x2a\x55\xa9\x5d\x5d\x55\x46\x6c\xc1\xb7\xfd\xda\x97\xb8\xb1\xd9\x45\xb0\xc2\xea\x50\x60\xa6\xac\xf9\x20\x77\x70\x28\x79\xc2\x98\xf4\x81\xc0\x45\xd1\xab\x42\x7b\x61\x16\x36\x2b\xd0\xb3\xe2\xe2\xf4\xcf\xfd\xde\x86\xc9\xe0\xee\x8c\xa7\xdf\x7c\x40\x77\xe0\x4a\xdc\x53\xec\x64\xb0\x6e\x77\x76\xf1\x7a\x5b\x58\x1a\x4f\x0b\xd8\xe3\xb9\xd2\x6a\x7e\x6d\x24\x31\xf1\x19\xbf\x68\x82\x66\xa4\xbb\xa1\x28\x16\xbd\x30\x4a\xd3\x64\x25\xa2\xda\x96\x4a\x58\x38\x7f\xb2\xe3\xf9\x2a\x68\xd5\xb7\xc2\x42\x10\xc5\x71\x5d\x4c\x55\xb1\xe5\x64\xf7\xf9\xe8\x37\xd8\x4b\x31\x1f\x53\xe3\x03\xe7\x65\xe8\xbd\x4c\x3b\x67\x6a\x72\xe0\x1f\xed\xb7\x00\xc3\x82\x50\xcf\x32\xe4\x8d\x00\x3b\xa7\xb7\xdf\x68\x5b\x13\xe2\x75\x17\x1b\x5a\x16\x4a\x6b\x14\x10\x2c\x60\xb5\x7e\xb3\x85\xc2\x41\xf5\xc1\x7b\x40\x66\xee\xf8\x26\x92\xf9\x07\x02\x7a\x6d\xd8\x7b\xa4\xd9\x76\x32\xe2\x4b\xcf\x8a\xc3\xa8\x56\x3d\xe5\xf1\xbb\xef\xa1\xc9\xdd\xc6\xf8\xf7\x5f\x9f\x2e\xf2\xff\xfa\x3e\x9d\xf9\xd4\xe3\xac\x8e\x1e\x5f\x1f\x7c\x7e\xe9\x4d\x9c\xbb\x20\xc7\x8e\xc2\x6e\x6b\xca\x93\xcb\x78\x7a\xb3\xb8\xf4\x75\x52\x22\x30\xb2\x44\xe4\xdc\xc4\x0f\x58\xdf\xdb\xe7\x75\x38\xf3\xda\x42\x28\x77\xbe\xcf\xe1\x73\x09\x36\xf6\x13\xc8\x17\x43\x03\xf4\xb0\x03\xa0\x50\xbe\xda\xb2\xda\xd2\x0f\xcd\xbe\xfc\x2f\xa2\x0c\xf8\x01\x4d\xaa\x5e\x82\x56\x0c\xd8\x9c\x43\x91\x97\xad\xa4\xfa\x51\x24\xe7\x04\x96\x2b\x37\x2d\x04\xfb\xfc\x3e\x41\x46\xe7\xb0\x0b\x52\xde\xe8\xe5\xdb\x9d\x6b\x23\x89\x1b\xd8\x0e\xdc\xeb\xd1\x28\x8b\x19\x44\x04\xd2\x0a\xa2\x01\xfe\xc6\x6f\x96\x51\x3a\xc4\xb6\x94\x68\x71\x17\x82\x48\x2c\x0e\xac\xeb\x67\x34\x7c\xfe\x75\x94\x4d\x55\xa9\x1d\x0e\xa0\xf6\xad\x8f\x08\xf3\x12\x38\x32\x5a\x12\xc6\xc9\xf6\x7e\x9e\xd1\xf4\x58\x38\x59\x17\x24\xca\x06\x0a\xe3\x2f\xe1\xcf\xda\x6f\xc8\xe0\x6e\x25\xa5\x5c\x81\x50\x9f\xcb\x8f\x2d\x5a\x50\x78\xd5\x3c\x4e\x20\x44\x69\x5d\xd6\x8f\xb3\x06\x49\xd9\xcd\x97\x0c\x00\xa2\x3a\xdb\x45\x74\x02\x6e\xe7\xe4\x43\x8a\xb8\xae\xac\xbb\x58\x5f\x88\x67\x43\x02\xb5\xc3\x8f\x1c\x79\x7c\x56\xc9\x03\xf6\x94\x0f\xde\x1e\x0f\xca\xc4\xe9\xbc\xbf\x57\xe3\x70\x24\x84\x2b\x6c\xd7\x92\xeb\xc7\xb5\x7e\x0d\xf8\xe5\x86\x76\x24\x31\xe1\xdb\x0f\x99\x4a\x25\x5f\x1f\xc8\x73\x13\x7e\x49\x4c\xbd\x68\x1f\xca\x79\x91\x1a\x85\x1c\xf6\x8d\x7d\xa4\xb9\xe1\x62\x23\x1b\x7d\x83\x10\x1c\x08\xcc\x66\x0b\xfb\x6f\x6d\xc0\x3b\xc3\x50\x40\xad\x17\x02\x21\x78\xea\x30\x15\x0f\x97\x4a\xf3\xfe\x49\xb1\xf7\xe7\xc6\x18\xc2\xa8\x78\x5c\xf2\xb0\xbc\x30\x52\x13\x93\xd1\xb1\x0c\xa2\x5b\xda\x00\xc5\x4b\x62\xe8\x81\xb5\x04\x9d\xc8\x6a\x34\xc9\x58\x48\x55\x76\xed\xd9\x44\xc0\x1f\x8a\x95\x91\x49\x83\x87\x67\xab\x89\xf9\xe2\x71\x58\x62\x56\x59\xf3\xa4\xd0\x3b\x4f\x37\x4e\x78\xb5\xa2\xcf\x67\xa1\x51\xb4\x94\x41\xbe\xb5\x60\xd0\xaf\x0f\xfa\xb3\x88\x64\xcc\x90\x86\x9b\x7e\x84\x7d\xb3\x81\xb0\xe8\xed\xb2\x96\xbf\x61\xdf\xea\x65\xb9\xce\x4f\xc6\x02\xad\x39\x1c\x47\x21\xaf\x74\x04\x1d\x2d\xfa\xe9\x05\x53\x04\x6f\xac\x12\xb9\xa4\x92\xa8\x42\x93\x68\xbe\xf9\x16\x3b\x2e\x7d\xdd\xa6\xe5\xa9\xf5\xb7\x67\x34\x9e\xb1\x8e\x0b\xc0\xba\x83\x07\x12\x80\x3b\xd4\x3f\xd5\x92\xde\x93\x9f\x6e\x2f\x34\x75\x8a\xb6\x1c\x91\x99\x2e\x3d\x9b\x9f\x4b\xc2\x9c\x1b\x9a\x75\x21\x48\x2d\x4a\x5e\x36\xad\x1a\x62\x46\x2e\x1c\xaa\xf0\x81\x65\x94\xdd\xcd\xba\x12\xa5\xa9\x3b\x4c\x9b\xf7\xe9\x1e\x99\x2c\x76\x1c\x6d\xfb\x85\x16\x50\x11\xe1\x24\x17\xce\x63\x89\x26\x3f\xee\x43\xfb\xd8\x17\x7b\xbf\xb1\x9c\x1d\x08\x67\x1b\xbc\x31\xb8\x77\x8e\xf2\x7e\xd7\xd9\x92\x0f\x05\x80\xb2\x1e\xad\x29\x1a\x96\x8d\x43\xb9\x11\x2a\x43\x75\xda\x15\xdd\x9b\x33\x52\xb8\x0b\x11\x06\x67\x14\xf2\xa1\xfe\x29\xea\xca\xad\x89\x08\x1e\xe2\xb3\xbb\xbd\xa8\xfa\xb6\x9b\xf9\xf5\x17\x0c\xde\xe0\x15\xe2\x4c\xe1\xf5\xfa\x3c\xff\x13\x80\xa5\x2f\xd6\x40\xb5\xd1\xd1\xed\xaa\x03\x97\xc3\x9c\xb1\xc6\x78\xf1\xc4\xd7\x5e\x1f\xa4\x47\xf8\x1a\x4f\x3b\xb2\xd6\x22\xcc\xfb\x39\x3f\x7f\x02\xd5\x66\xa1\x90\xea\x61\x3d\x71\xc3\x29\xfc\x8f\xd3\xb5\x13\xc6\x0b\xcf\xa4\xfd\x37\x95\x9d\xa7\x82\xbb\xac\xd0\xcc\xe5\x33\x24\x94\x7a\xff\xdb\x55\x9b\x43\x52\xd8\x59\xda\x63\x3c\x81\x5c\x10\x38\xd9\x10\xbd\x26\x34\xef\xb8\xef\xa0\x83\x98\x6b\xa2\x4d\x50\xd3\x0b\x67\x35\xd3\x20\x96\xef\xcb\x53\x77\xc7\xeb\x26\xcc\x21\x0b\xc0\xbe\x91\xcd\xe4\x57\x47\xc8\x6b\x64\xe9\x90\x60\x4d\x14\xb2\x3b\x11\x9f\xda\xde\x82\xff\x89\x6b\x92\x22\xac\x92\xe0\x20\x14\xac\x21\x91\x17\xcf\x2a\x85\xfe\x7d\xb8\x7b\xc8\xd1\x49\x9e\xc0\xe6\xec\x3f\x90\x28\x24\xb5\xa1\x77\xf9\x71\xbf\x26\x06\x5a\x07\x61\xd8\x35\x9a\x50\xd3\xeb\xe2\xd8\x6c\x95\x7c\xcb\x24\x48\xdf\xee\x5f\x21\x91\xfa\x44\xdc\x4d\x51\xe5\xec\xf2\xeb\x66\x5b\xd0\x17\xa5\xac\xeb\xb5\xfd\xd1\xfd\x03\x24\x3e\xa5\x80\x95\x2d\x01\xa3\x07\x46\xf4\x89\xd9\xb3\x3a\x24\x3f\x89\x55\x68\xe9\x54\x71\x8c\xf6\xf6\xbf\x38\x46\x40\xc9\x97\xd9\xf7\x89\xea\x26\x34\x70\xa5\x0b\xa5\x23\x59\xc1\x04\xb2\x9b\x9b\xaa\x55\xbc\xb7\x8d\x11\x57\xf3\x7e\x2b\xe3\x44\xa7\x55\xca\x35\x6c\x1e\x15\x7a\x5c\x4e\xec\x30\x1a\x93\x63\x36\x96\x43\xc2\xfc\x7a\xd1\xf6\x63\x5b\x1f\x97\xc3\x89\xaa\x9d\xd7\xfb\x07\xfd\x37\xa3\x32\xc7\xc9\x66\xc9\xfb\xa1\x1c\x21\x4e\x03\x6c\x51\x78\xc3\xa7\x57\x85\xa4\x36\x37\xab\xfa\x87\x2b\x69\x84\x07\xa4\x8e\x91\xb3\xff\x64\xda\x0e\x25\x30\x32\x31\xf8\x9c\x98\xfc\x79\xc7\x22\x25\xb5\x90\x8a\x5c\x9c\xc7\x62\x8b\xfc\x83\x62\xa0\xab\xb2\x56\xc0\x7b\xa7\xcf\xc1\x22\x44\x2e\x23\x89\x95\xb4\x18\xd1\x5e\xb3\x7e\x81\x60\xa7\xff\x37\x73\xcf\xd1\xa3\xfd\xa0\x1e\x88\x57\x11\x2d\x3f\x62\xc3\x55\x46\x66\x04\x79\x92\xe6\x44\x4c\xa4\x1e\xbb\x5d\x99\xe3\x32\xc8\xd1\x31\x0c\x54\xb7\x94\x72\x77\x57\xfd\x9d\x07\xc6\xf1\x2e\x6c\x25\x2c\xf2\x84\x27\xbc\x41\xc7\xfd\x33\x05\x9e\x2d\x87\x59\x0c\x95\xd5\xd8\xf7\x5f\x57\x9f\xe5\xb3\xc5\x50\x69\x12\xcd\x12\xa9\xfa\x59\x46\x49\x91\x09\xe8\xb1\x36\x5c\x7c\x60\x9b\x9b\x7d\xdd\x7b\x4e\xc7\x81\x80\xc7\x92\x24\x8b\xe2\x0b\x0b\xa5\x00\x6c\xae\x59\xcd\x51\x65\xb9\xc6\xf4\xf1\xb8\xf4\x75\x58\x5e\x73\x92\xfc\xe1\x45\xe3\x9b\x33\x03\xbe\xf3\x6e\xf8\xf7\x56\x63\xfa\xa5\x76\x54\x80\x53\x82\x82\x38\x04\xbb\x7c\x8c\x78\xfc\xdc\xab\x42\x5e\xa4\xde\x53\xbd\x7b\x69\xe5\x93\xf6\x8b\xb8\xd1\x6e\x4f\xe5\x96\xbf\x4b\xee\xea\x86\x03\xc2\x38\xed\xad\x27\x3e\xf6\x13\xe9\xec\xf5\xdd\x2c\x9e\xd5\x19\xca\x7b\x1c\x9c\x13\x3c\xbf\xb8\x61\x48\x94\x6e\x32\x08\xea\x0e\xe8\xc0\x40\x35\x01\x9d\xad\x65\x26\x80\x6f\xeb\x54\x08\xe1\x4b\x6e\x0f\x4c\x01\xaf\x0b\x04\x60\x1d\x07\x40\x58\x81\x9a\xcf\x81\xc6\x7a\xde\x90\x5f\x17\xb2\xbc\xbc\x6a\xf8\x87\x4f\xa1\x89\xd3\x82\x9b\xf8\x6f\x90\xc0\x40\xf2\x95\x78\x78\xf1\x03\x86\x20\xd7\xd1\x6c\x29\xcb\xf2\x5d\x84\x6b\x54\x4f\x23\x26\x99\xfd\x36\x84\xe5\xb7\xf1\xdb\x16\x22\x54\x41\x8e\x20\x83\x3d\xe5\xc1\xde\xc4\xc2\xa4\x1b\x95\x3f\xa1\x2c\x5a\x66\xfd\xe1\x0d\x8c\x0e\xf8\xab\x92\xbf\x5f\xc7\x6a\xc8\x22\x00\xf1\x8f\xe7\x1c\x6c\x0f\x42\x33\x21\x3d\x3a\x03\xe1\x3c\xd7\x31\x98\xe3\x27\x5b\x64\x17\x0f\x9f\xca\xa3\xab\x6b\x49\xa4\x6c\x64\x40\xad\x99\x6f\x54\x80\x2c\xc2\xbc\x84\x2f\x95\x40\x7b\x65\x36\xfa\x27\x24\x66\x23\x22\xb5\x0d\xab\xc1\x85\xb3\x0e\x07\x2f\x06\x4f\x41\x70\xb9\xd6\x4b\x9c\xf7\x45\xe4\x2d\xfe\x03\xc1\x02\x0a\xd5\xdb\x6d\x5e\xf6\xfb\x4a\xf3\x7c\x24\x15\xb7\x26\x90\x1f\xee\x61\xf9\x7c\x3e\xc6\x70\x1f\xc5\xf3\xe1\xa8\xd4\xdc\x35\xea\x93\xab\xbf\x4a\x0b\xfc\xa7\x86\xfd\x46\x24\xf7\xc5\x48\xbf\x0c\x43\x11\x19\xcc\x29\xbc\xbd\x80\xf3\xb5\xaa\x0a\xb5\x0a\x88\x43\xe2\x2a\x62\x00\x8d\x5e\x67\x6e\xf4\x3e\xd6\x11\x93\x61\xfd\x1c\x51\x27\xdb\xa1\x21\x2e\x83\x1a\xbc\xc2\xb6\xff\x5a\x86\x28\x2a\x28\x57\xf9\xc0\x5a\x63\x68\x5c\xac\x6d\xad\xe3\x58\xfa\x1d\x08\x72\xba\xeb\xce\xbc\x7f\xf7\x48\x12\x87\xbd\x78\x7d\x48\x34\xbc\x9c\x80\x74\x19\xcb\x3e\xae\x99\xc0\x9f\x65\xf6\xd4\xaa\xd1\xdd\xe5\xac\x8c\xe8\xff\x93\xd1\xdf\xa8\xc7\x76\xb3\x05\x23\x01\x14\x4a\xff\xfe\x6d\x45\x88\x35\x0f\x3f\x4c\xc3\x66\xb5\x8b\x68\x88\x20\xbc\x15\xbf\xd7\xc8\xd9\xd9\x43\x34\x46\x02\xe1\x0b\x1d\x7b\x4f\xfa\xc0\xb5\x03\x13\x7d\x38\xb6\x97\x16\xda\x54\x40\x82\xb0\x2e\xad\x40\x62\xb2\x5a\x08\x95\x5a\x8a\xc3\xad\x96\xda\x88\x65\x77\x1a\xfc\xad\x3b\xca\x8b\x0e\xfd\x8b\xb8\x5d\x6f\x86\x74\x8a\x2f\x41\xb1\x2f\xdd\xd5\xd5\x1a\x25\x8e\x32\x3b\x50\x8a\xe2\xe6\xcd\xe8\x68\xe0\x15\x58\xc4\x97\xac\x5d\xc5\x39\x4b\xc0\x0c\x6b\x23\x81\x44\xcc\x04\x01\xc6\x0c\xdd\x41\x42\xa9\xa9\x18\xb2\x3c\xc4\xa7\xa5\xdf\x5c\xa3\xdc\xcd\x29\x6b\xd8\x82\xf5\x1f\x3c\x63\x4f\x37\xa0\xd1\x33\x13\x04\x67\x9a\x21\xa5\xbf\x68\x56\x7e\x20\x8a\xb8\xd1\x7f\x2c\xfd\x12\x44\xf5\x58\xcc\x8b\x13\x7e\x5f\x96\xba\x4f\x25\xc0\xcf\xa8\xc2\x8d\x04\x84\x50\x32\x64\x86\x18\x4d\x30\xce\x4f\x88\x64\x30\xbc\x9e\x74\xdb\x7c\x81\x63\x3a\xc7\xfb\xb6\x52\x7d\x78\x13\x99\x2e\xa9\xf0\xb6\xf8\xfb\xdf\x4f\x09\xbb\xc2\x0d\x54\x92\x7f\x5f\xc4\xa7\x08\x2b\x42\x56\xd8\xe1\x4d\x62\xf1\xbf\x97\xf4\x54\x16\xe6\x1b\x93\x31\xbd\xdf\x2a\x20\x34\x10\x14\xd0\xf1\x22\x0a\xc9\x4f\x9e\x10\xe9\x67\x82\xc0\xba\x61\x32\x51\xd3\xaa\xe2\xaa\x4d\x33\xe8\x56\x88\x27\x25\x4d\x2e\xeb\x34\x55\xb0\x8e\x54\xf3\x64\xa2\x4f\x7f\x3a\xfb\x4f\x3c\x4f\xca\x80\xd6\x2f\x9b\x9e\xad\x6b\x51\x9b\x03\xf7\x34\x18\x69\xbd\xbd\x0d\xe9\x08\x01\xee\x4d\x34\x01\x52\x75\x53\x22\x17\x27\x8c\x91\x3c\xfc\xf8\x9c\x83\xf4\xea\x96\x97\xd5\xc2\xba\x8f\x81\xcf\x5b\x86\x87\x7f\x0a\xa9\xca\x11\x99\xba\x8f\x84\x44\xc1\x1f\x0b\x92\x54\x70\xdf\x46\x1f\xbb\xac\xef\x2d\x52\x45\xf1\x1d\xdc\x06\x7d\xd9\xca\xcd\x7c\xce\x23\xed\xba\x9d\x36\x5a\x08\xfd\xb9\x6b\x90\x02\x2f\x4f\x77\xec\x44\x77\x6b\xce\xb3\x0c\x95\x72\x05\xe6\xea\x26\x96\x97\x10\x77\xca\x44\x55\x1b\x9d\x19\x6a\x12\x25\x1c\x5e\x02\xc9\x50\xc5\xaf\x1b\x18\x4f\x39\x67\xe3\xdf\x04\x97\xf7\x37\x42\x60\x92\xcb\xc8\xef\xf1\x8b\x23\x00\x88\x5b\xf1\xe5\x06\xbf\xc1\x2b\xf2\xac\x4e\xb6\x37\x5d\x48\xc5\xd5\x8d\x2d\x4c\x79\x9f\xf5\xcd\xc8\xbd\x96\x19\xb1\x9c\x48\xa0\xcb\xc5\xac\x8d\xd8\x93\x7a\x97\x34\x02\x05\x24\x0e\x13\xfa\x3d\xe3\x21\xb2\xa7\x72\xeb\xfd\x50\x9d\x00\x41\xa4\xf1\x32\xc7\x2f\x49\xd0\x49\x9a\x11\xc0\x0c\x38\x9b\xee\x9c\xf1\xe5\x1a\xce\x7f\x44\x0c\x24\x93\x24\x21\xcb\x1c\x67\x78\x1f\xe3\x4a\x57\x8f\x77\xd9\x77\x8c\x16\x2b\x5a\x93\x72\x76\xaf\x20\xfe\x18\xf5\x23\x41\xae\x99\xea\x2f\xab\xdc\x5d\xb7\xda\xa8\x0e\xf8\x9d\x89\x55\x70\xfa\xe5\x4b\x3d\xc5\x3f\xe3\x72\x8a\x1f\xdc\x29\x06\x8d\xd2\x3d\xba\xbe\xf9\xe5\x0d\x72\x66\x3f\x4d\x25\x29\xc1\x40\x84\x29\xc3\x12\x6c\x75\x26\x72\x16\x33\xfd\xe0\x67\x47\x0d\x9d\x69\xaa\xc5\x9f\x5f\x72\x15\x29\x07\x02\xce\x6c\x82\x16\x8a\xad\xff\xc9\x04\xc2\x01\xdd\x13\x06\x44\x0f\x27\x26\x72\x0f\x64\xa3\x14\xd3\xc3\x8f\x92\x24\xa7\xa2\x75\x1f\x9e\xd8\xce\xf3\xe3\x3f\xe6\x66\xb2\x18\x6d\x8d\x9f\xa6\xb8\x27\x01\x10\xfe\x7a\xec\xf5\x06\xb6\xe2\x97\x20\x88\xea\xc8\xdf\x7f\x45\xb1\xa5\x18\x35\xe1\x01\xe7\x5f\x1b\xfd\x76\xb4\xd4\xf4\x43\x9e\xa4\x78\x6d\xb9\x51\xdc\xcc\xc0\x58\x00\xa6\x34\xca\x74\x88\x4d\x71\xcd\x6a\xfe\x61\x9d\xbb\x61\xea\x09\x55\xd3\xb1\xeb\xa9\x0e\xfa\x04\x1d\x4a\x37\x13\xd2\x49\x67\x2b\x3f\x0f\xbb\x53\x5e\x8a\xc2\xcd\x17\xb3\x6e\x17\xc9\x25\x86\x8a\xc9\x2e\xdf\x36\xcb\x14\x4a\x86\x01\xed\xd3\xb9\xc2\xec\x7e\x6f\xe1\xe0\xc0\xbc\x4c\x4c\x63\xc3\x0d\xea\x8f\xd0\xec\xf4\x8d\x43\x02\x68\x96\xdc\xaf\xa5\xd7\x6d\x05\x2f\x67\xaf\x4f\xad\xd6\x2c\x6c\xaf\x3c\x56\x0c\xf3\xe3\x43\x16\x28\xe4\xa2\x8d\xb8\x8f\xdb\x99\x43\xdb\xc6\xc1\x82\x8e\x88\x3d\x61\x66\x64\xc6\x51\x42\xcc\xd9\x0f\xeb\x1e\x4e\xdc\x16\x49\xe1\x22\xf5\x98\xaf\x8b\xd5\xdf\xef\xa8\x9a\x08\x7a\x15\xaf\x31\xc0\x8a\x05\xc0\x7b\xe0\xad\x25\x46\x5a\x6f\x5b\x88\xbb\xe3\xfb\x4a\x04\x11\x33\xc7\x0e\x71\x93\xcc\x7b\x73\xc6\x79\x6e\x30\xf0\xa6\xd0\x7e\xa2\x4e\xd3\x6e\xab\x48\x1a\x20\xf1\x7a\x3a\x84\xf2\xd4\x11\x59\x7a\xfa\xae\x3a\xbb\xb8\x5f\x37\x86\x4e\x05\xaf\x7a\xe1\x89\x67\xde\x4b\x11\xec\xd0\xa8\x3c\xbb\x54\x56\x4c\xf4\x6c\xac\x68\x30\x6b\xcc\x77\xd5\xfc\x94\xfa\x2f\xe9\x37\x02\xd3\x9e\x2a\xa2\xad\x7a\x4b\x34\x99\x29\xca\x68\xa1\x40\x7b\x59\x8b\x56\x77\xfc\x10\x8f\xc8\xf4\xd0\x5f\xec\xac\x8b\x9b\xad\xb9\x8b\x0f\xce\xd9\x3e\xd8\xc0\xa0\x6a\x6e\xaf\xba\xe5\x96\xcb\xac\x58\x84\x88\x59\x01\x6a\x4a\x48\x72\x70\x6c\xb7\x0a\x57\x6d\x4e\x30\x39\x9a\xe2\x80\x15\xc1\xb5\x0f\x67\x05\xb5\xd1\x67\xfa\xe4\x08\xf7\xb3\x77\x5e\x24\xe6\x2a\xe9\x58\x38\xe7\x19\x93\x67\xec\x25\x47\x5e\x70\x2b\xa5\xdf\x58\xf5\xe4\x3f\xef\xd7\xa0\x7f\x49\x8f\xcf\x45\x5d\x4a\x60\x98\xbf\xc5\x28\x1c\x98\x91\x7d\x71\xe1\xae\x77\x89\x3f\x5c\x97\xe9\xcd\xec\xba\xdf\x39\x3c\x3f\x7b\x47\x9b\x52\xa8\xe8\x43\x04\x0e\x16\x49\xb7\x43\xbb\x9e\x3b\x40\x79\x1d\x15\xb9\x79\x2c\x28\xf7\xd4\x7b\x13\x67\xab\xa8\x45\xb1\xf4\x65\xf5\x57\x86\xda\x61\x73\x70\xe5\xa7\xc8\x38\xe5\x75\x83\x68\xb2\x3c\x79\x47\x37\x64\x8c\xf8\x22\xec\xe5\x51\x3f\x76\x33\x54\xc1\xf7\xcb\x3f\x28\x53\xcd\x64\x8c\x28\x86\xba\xbf\x2e\xd2\x18\x5a\x06\x7c\xa1\x32\x34\x8c\xce\xb0\xdb\xbc\xdb\x39\xe3\xbb\x2e\x8b\xbc\x08\xaf\xeb\x2b\x9a\x39\xb7\x9b\x18\x98\x3f\xad\x35\xcd\x56\xbc\xff\x57\x84\x2a\xd9\x65\x12\x5f\x86\x3f\xfa\xaa\x96\xf9\x7a\x9c\x7d\xcf\xcc\xb6\x4c\x85\xac\x37\x3b\x65\x25\x3f\x69\x53\x6a\x53\xe7\xa2\x9d\xfe\x58\xa6\xc3\x47\xa3\x32\xeb\x32\x49\x6d\x46\xc1\x98\x5a\x20\x47\xc4\x74\xbe\x4a\xa4\x21\xb5\xd4\xcd\x31\x5a\x60\x1e\x0d\xe6\xc2\x4d\xb3\x37\xc6\xae\xee\x7f\x5f\x38\x6a\x73\x25\x13\xc3\x26\x8e\x1c\x36\x94\x0e\xc4\xb7\xf4\xfd\x49\xb1\x22\x55\xfe\x67\xc9\x63\x74\xf0\xdc\x3b\xc0\x89\xd0\x0b\x51\x35\xe2\x4c\xb0\xf8\x55\xde\x6f\xec\x69\x5f\x18\x27\x00\x7d\x31\x2c\xd2\x66\xf9\x29\xf9\xf5\x3c\xad\x23\xc4\x01\x1f\xe6\x0f\xff\xac\x5b\x94\xa8\xfb\x11\x2e\x32\xe1\xd4\x6b\xd6\xc6\x7a\xa8\xdd\xda\x1f\x8e\x2b\x4f\xa5\xd2\x30\xa8\x6e\x06\x68\x36\x07\x4e\x33\xba\x88\x66\xa9\x31\x16\x72\x7e\x33\x4b\x67\x15\xda\x6a\xaf\xab\xc2\xf6\x82\x96\x5a\x90\x09\x7e\xf0\x90\xac\x67\xa1\x93\x22\x29\x11\x38\x43\x04\xb4\x12\xaa\xa5\x2e\xc8\x5f\x3d\x63\x9e\x1b\x74\x53\x9f\xdb\xac\x7f\xef\x17\x1d\xcf\x93\x53\x22\x7f\xcb\x76\xc7\x88\x10\xe7\x4c\xfa\xfd\x6e\xf2\xe4\x7f\xda\xa0\xa2\x8b\xc3\x77\xe7\xba\x26\xbb\x8f\x28\x48\xff\x10\x70\x3e\xa1\x5f\x1f\x01\xf1\x0f\x29\xdd\xf8\x80\x30\x0f\x37\xec\x16\xb4\x27\xe0\x8f\x1f\x95\x91\x87\x94\x4d\x54\xce\xe8\x74\xeb\x63\xa7\xaa\xce\x2a\x77\xe7\x57\xb6\xaf\x45\xeb\xfb\xb3\x40\x67\xbc\x6a\x9a\xd3\xdf\x8c\x99\x0b\x62\x48\x2f\xed\x9e\x44\x81\xeb\x6e\xf0\x2f\x8e\xca\x6a\x4f\x7c\x1e\x7b\x36\xfe\xad\xa6\xea\xfd\x94\x3b\x30\x0b\xf7\x09\x3d\xde\x80\x37\x6e\x40\xbb\x5a\xb4\x17\xb7\xb9\x14\xfa\x05\x5e\xd2\x94\xa2\xd1\xf1\xfd\xed\xc1\xf2\x15\x64\xb3\x7d\x8e\xee\x6c\x3a\xef\x5d\x21\x34\xa6\x6b\x72\x2d\xaf\x69\x2d\xae\x02\x5b\x87\xfd\xe9\x23\x87\xc6\x9a\x83\x03\x0a\xbc\xe9\x52\x6a\xf9\xdf\x7e\x7f\x4d\xff\x05\xf8\xc2\x3d\xb5\xd5\x87\x82\x64\x57\xf5\xde\x98\xbe\x26\x97\xb8\xa2\x4d\xb5\x3f\x62\x17\x9a\x50\xe8\x76\xff\x1c\x16\x8d\x6d\x02\x68\x54\xc5\x1a\x45\x18\xa8\x63\xb7\x59\x4a\xf8\x0d\xff\x69\xeb\x9e\x59\xbb\x19\x67\x13\x8f\x0a\x09\x10\x4f\x92\x57\xff\xe6\xba\x97\x1e\x39\xe4\xd3\xed\xb7\x86\x5c\xd7\x57\xaa\x8e\x32\xaf\x2d\xee\x2d\x00\x7b\xa6\xdb\x39\xe1\x77\x79\xa6\x78\x01\x57\x9f\x3b\xc6\xdf\xce\xb8\x79\x37\xfa\xb0\x34\x89\x0a\x9c\x8c\x50\xef\xba\x56\x2c\x2e\xc9\xe6\xa2\x65\x12\xec\xe1\x3c\x09\x34\x59\xfb\xee\xaf\xad\x58\x0f\x44\x9f\xef\x59\x1e\xeb\xb5\xec\x8f\x31\xdf\xa5\x62\x0c\x44\x5b\x77\x89\x5a\xb7\xee\xe8\x14\x50\x64\x27\x48\xba\x71\x46\xe8\xec\x37\x16\xc4\x66\xea\x25\x9c\x0a\xcd\xb2\xf9\xe9\xd3\x29\x2f\x7f\x86\xb5\xf7\xd0\x34\xcc\x2b\x5e\x88\x49\x56\xcb\x0c\x30\xab\x3c\x57\x98\x3d\xc0\x29\x5e\xb8\x89\xdf\xf0\xa3\xb8\xa1\x6a\x42\xc0\x28\xdb\xc8\x49\x3f\xd5\x26\xd5\x27\x65\x89\xdc\xda\x51\x48\x6c\xeb\x91\x3a\x4c\xb0\x28\x0e\x89\xd5\xfd\x4b\xb3\xa4\xb0\x80\xf0\xbb\x52\x3b\x6c\xce\x1d\x85\x6b\x9d\xc6\xbd\x95\x1e\x91\xaf\xbe\x52\x5f\xce\x61\xb7\xbf\xe0\x2e\xd9\x5c\x61\x2b\x30\x82\xc8\x76\x89\xe4\x3b\x8a\xdb\xeb\x4b\xc6\x13\x4a\x4b\x12\x30\x81\x30\x60\xba\xb8\x89\xa9\x17\x47\x64\x67\x4d\x1f\xb5\xe1\xe7\xc5\xf3\xa6\xb9\xd4\xcd\x9a\xb9\xd8\x0c\x99\xf9\xef\xa1\x17\x9d\x71\x3c\x29\x76\x67\x22\x43\x62\x5a\x1f\x8a\x53\x8e\xf2\x84\x93\x3c\x69\x26\x57\xaf\xa0\x62\xfc\x68\x4e\x1f\xf7\xf6\xf1\x5a\x46\xeb\x0b\x67\x5a\xa3\x68\x38\x83\xdb\xe7\xe7\xb5\x4b\x34\x0e\x15\x2a\xdd\xe7\x74\x09\xef\x27\x79\xfe\xb8\xdc\x57\x1c\xa7\xe1\x82\x05\x4f\xb6\x50\x34\xec\x80\x23\xbd\xab\xc2\x1f\x55\x2f\xd9\x51\xa1\xe4\xfd\xb8\x68\xd4\x40\x90\x26\xcf\xf6\xec\x61\xcc\xd7\xd7\xa0\xbf\x07\x7f\xd6\xb3\x99\x02\x8e\xbb\x6d\xbe\x0c\xb9\x1a\x01\x9e\xf2\xc5\x77\x4f\xed\xab\x23\x1c\xb9\x27\x4b\xc9\xaa\x22\x71\xfa\x84\x88\xac\xa3\xf2\xe9\xd2\xb3\x4e\x01\x7c\x5a\xad\x88\x67\x09\x04\x03\x56\x03\x24\x1b\x95\x65\x65\xc8\xe7\x72\x3c\x6f\x4f\x6d\x28\x53\xc6\x68\x99\x4d\x85\xde\xba\xf8\x87\x47\xcf\x38\x7d\x1d\xbe\x9e\xf5\xce\xf0\xb6\x8f\x3b\x41\xee\x5b\x2f\x93\x72\x0c\xb0\xf8\x8c\xb6\x5f\x50\x84\x10\xe9\x4c\xe1\x14\xbf\x5b\x96\xd7\x2e\xb5\xcc\xa8\xfc\x79\x50\x1c\xcb\xf6\x44\x21\x6e\x0b\x6c\x71\x94\x65\x5f\xbc\x0c\xf2\xbe\x6e\x7f\x6c\xca\x81\xf7\xbc\xa0\xc8\x4f\xd8\x86\xad\x66\xfc\x46\xcb\x71\x39\xa4\x00\x63\x4c\xcc\x14\x59\x16\x31\x10\x1a\x09\x20\x9a\x25\x24\xb0\xbc\x74\x3a\xab\x36\xef\x9b\x2f\x24\x29\xa3\x97\x77\xbf\x5f\x1d\xbd\xad\x7a\x9f\xad\xc6\x01\x99\x24\x1b\x3f\x68\x87\xc6\x5f\xfe\x39\xef\x89\x8a\x04\x50\x17\x9e\x2a\x33\x2b\xcb\xe1\xc7\x21\xac\x7e\x64\x96\xbb\xbb\x0a\x55\xbd\x6d\x71\x52\xda\x0f\xf8\x99\x78\x39\xb0\xef\xc7\x87\x95\x33\x2e\xac\x80\x1a\x74\xf3\xe4\x76\x36\x77\x5b\x97\xf9\xd7\x89\xf2\x29\xb2\x30\xc9\x2b\xdd\x62\x27\x43\xe2\x7b\x1f\xe6\xa2\x40\x61\xe8\xef\x08\xef\xc3\x6f\x43\xdb\xca\x1f\x31\x2a\x09\x0a\x92\x24\xcf\x4b\x26\xbe\x0c\xe5\xae\x8f\x4b\xeb\xcc\x59\xd2\x2d\xe7\x12\x08\x03\x00\x3b\x07\x73\x66\xea\xe1\xbc\xd3\xcd\xc6\xbc\x2e\x45\xe7\xcb\x0f\x26\x08\xb7\xb9\x68\x30\xa3\xdb\x0e\xe8\x18\x39\x42\x9c\x3b\xe7\x37\x39\x1c\x94\xb7\x80\xe7\x88\xff\x86\x0a\xd5\xc0\x9d\x58\xe5\x66\x69\x04\xa6\xe3\x93\x41\xca\x9b\x5c\x43\x13\x19\x2c\x45\xd8\xe7\x97\x4b\x5f\x82\xe2\xa9\x7a\xd9\xf7\xc7\x16\xf5\x50\x66\x12\xff\x4d\x86\x20\x09\x8f\x12\x30\x34\x45\xbb\x6a\x97\x9c\x4c\x2e\xf0\x7a\xd0\xf6\x61\xd8\xb0\x72\x4b\x06\x41\xc3\x25\xdf\xa2\x90\xcf\x0c\x51\x7d\xf4\xb3\xe6\xaf\x85\x74\xf3\xfe\x12\x94\xe2\x23\xfd\x06\xc6\x53\x01\x8d\xc5\x0f\x5e\x01\xda\x64\xb6\x85\x23\x31\xc7\xd6\xdd\x98\x05\x0a\xd4\x47\xe1\xbc\xf0\xbf\xfe\xfe\xc8\xf9\x8f\x57\xa7\x91\x84\x34\x48\x80\x4a\xca\xe9\xa8\x99\x41\xbe\x61\x04\x89\x6b\x18\xa4\x41\xc5\x98\xad\x7b\x84\x7c\x0e\xd3\x61\x02\x48\x8a\x95\x2a\x8c\xc6\xb4\x01\x80\x68\xf6\xb9\xfe\x51\xa7\x2c\xdb\x1f\x2c\xfb\xf8\x9d\xbc\x30\x4a\xb3\x3a\x1a\x4c\x0d\xbe\x8d\x97\xed\x00\x00\x99\x3e\xe0\x28\x91\x4d\xd6\xc3\x4d\x2f\x30\xcb\xe2\x17\x47\xee\x4c\x2d\xf7\xdf\xf6\xb9\x9a\xda\x2a\x7a\x98\xd3\xfa\x36\x0f\x00\xb8\x38\xa2\x7e\x1b\xe2\x37\x95\xe9\xe1\x73\xa2\x6c\xc3\x1e\xf8\x47\x4b\xeb\xa4\xe1\x40\x3d\xa2\xf9\xfe\x80\xbc\xf5\xc7\xb8\x0a\xed\x64\x4b\xca\xd4\x49\x59\xf1\xba\x9f\xe5\x48\x1a\x23\x21\x63\x6e\xaa\x8d\xae\x2a\xa6\x8f\x0c\x90\xd8\xd3\x31\x05\x4f\x44\x15\x94\xe8\xbd\x86\x76\x7b\x89\x82\xa7\xdb\xae\xaf\x6f\x4f\x26\x8f\xc8\xb3\xe2\x72\xf6\xe5\x3f\xc7\x53\x0b\xa4\xbf\xef\x6a\x13\xff\x39\x34\x59\x1e\x27\x06\x40\x00\x15\xae\x2c\xef\x07\x0a\x00\x48\x9e\xc4\x9e\x1d\xe8\x38\xe7\xc6\x19\xdc\x7d\x04\x03\x8c\x29\x7f\xc2\x23\x86\x9a\xf7\x44\x4e\xf1\x17\x83\x23\x55\xd6\x3f\x4c\x15\x79\xc1\xd9\xd6\x28\x58\x4f\x31\x81\xa1\xa4\x1c\xb2\x7e\x4e\xd2\x8f\xbf\x95\x3c\x1c\xcd\x05\xbc\xef\x0a\xf5\x2f\xcf\xdf\x5f\x54\xf6\x3e\x39\x67\xff\x80\xbf\xb7\x1e\x6f\x86\x94\x45\xfc\x38\xac\xcb\x54\x0c\x57\x1c\x60\x96\x2a\x2c\x4a\x21\x9e\xf5\x0a\xf2\xca\x52\x10\xb9\x1b\xe1\x27\x38\xff\xed\x42\x48\x33\xac\x82\x92\xbf\x87\x07\xb5\x4e\xda\xc9\x26\xf7\xb4\xef\xe9\xfa\x85\x87\x13\x21\x2a\x9d\x41\x39\xad\x88\x8a\x09\x40\x63\x0d\x3e\x1b\x1b\x61\xf4\x2b\x41\x37\xe0\x33\x28\xd2\x0f\x29\x8a\x58\xd6\xe7\x32\x7d\x81\xcf\xba\x1a\x5a\x4b\xec\x4d\xaf\xf7\xe3\x0c\x4c\x20\xe8\x57\x67\xd6\x5f\x6c\x66\x09\x38\xb9\x39\xf9\x2a\x29\xc4\x23\x0a\xf1\x30\x9d\x2d\x9b\x46\x75\x57\xdf\xd2\xa8\xbf\x13\x37\x85\xce\x46\xb6\xb8\x34\xf9\x93\xd2\x3a\x67\x79\x16\x22\x6f\x7e\xf8\x41\x16\x9f\xdc\x43\xd9\xdb\xe2\x9b\xbb\x21\xb8\x3f\x5f\x68\xa5\xe4\x2e\x99\xb3\x3a\x8a\x36\x4c\x4e\x0d\x40\x22\x40\x47\x5a\x20\x42\x33\x25\xc7\x72\xcf\xac\x65\x39\x23\x8a\xfd\xbf\x95\x6f\x6e\x66\x75\x7c\x47\xdc\x93\xd5\xe9\x26\x14\x58\xdf\x68\x0b\xf7\x1a\x3c\xad\x80\x01\x43\x66\x34\x82\x3e\x98\x90\xa2\x38\xcf\x72\x6a\xf8\xbf\x82\xa5\xc9\x36\x62\x8d\x64\x01\xca\x32\x07\x64\xa0\x4a\x9f\xd0\xce\x36\x2e\xb4\x4d\x2d\x4c\x19\x95\x5c\xe5\x0e\x37\xed\xf6\x4b\xe4\x82\x20\x5f\x63\x70\xd3\x46\xb6\x48\xb5\x43\x99\x7c\x25\x9d\xca\x2d\x21\x57\x48\x8b\x4b\x90\xe3\x4d\x9c\x67\x50\x3d\x75\x48\xbb\x5c\x16\x75\x17\x2e\xae\xc9\x9a\xb0\x2f\x1b\x14\xc0\x2c\x1d\x1d\x62\xdb\xf4\x74\xe4\x6f\xd7\x12\x9a\x1c\x33\x42\x33\x4d\x40\xcc\xa4\x51\x4b\x70\x38\x3f\x18\xa9\x45\x22\x05\xed\x7b\x26\x80\x56\x85\x20\xf8\xf7\x7f\x02\xb2\xf3\x5e\xbc\xdb\x50\x67\xc2\xf6\x1f\x5b\xe5\xbb\xf3\x6b\x3f\xa6\x94\x2e\x54\x61\x92\x28\xcf\xab\xeb\x3a\x78\x0f\x38\x66\x6f\x5e\x41\x7f\x0e\xaf\xdb\xc4\xb7\x14\xf8\xb3\x03\xfd\xec\x5f\x85\xe8\xd7\xa5\x01\x48\x1d\xfb\xf1\x91\x11\x23\x78\xa5\x77\x96\x3f\xdf\xce\xa5\xd9\xe5\x04\x31\xb7\xe7\x6e\xcf\x60\xe3\x51\x30\xa0\xff\x02\xb9\x7c\xe1\xc4\x32\xcf\x8e\x2f\xf0\x9b\xf0\x7e\xf5\xfa\x87\x26\xcf\xa4\x63\xbf\xb7\xb6\x3d\x38\xf0\x3e\x3c\x11\xd8\xa4\x5c\x10\xab\x13\xd5\x5d\x5f\xc4\x95\x59\xd5\x3d\x5a\x8f\x6a\x9a\x10\xfa\x9b\x56\xee\x6f\xec\xf9\x60\x63\xaf\x6d\x00\xd4\x69\x24\xa4\xda\x9d\x84\x43\xf1\xa0\x4e\xa9\x96\x69\x79\xc4\xbb\x6f\xef\xdb\x08\xb0\x6a\x55\xd9\x20\x11\x53\x98\xb6\xa4\x99\x5e\x0b\x38\x52\x3a\xec\x5d\x6c\x5a\xc3\xee\x5b\xef\x07\x26\x4c\x78\xb6\x67\x1b\x9e\x7a\x61\xae\xe4\x8d\x13\x81\xfb\x6d\x8b\x21\x32\x36\x96\xf7\xce\x08\xc1\x99\xc8\x1f\x39\x63\x7e\x39\x74\x60\x85\xb8\x51\x87\xb8\x4e\x9a\x6c\xfc\xeb\x87\x78\xb7\xb3\x4c\xff\x1d\x1f\xc7\x98\x97\x1f\x15\x72\x32\x9f\x3f\x10\xf6\x55\xd4\xa9\x25\x9b\x40\xf9\xb1\xf1\xce\x0d\xb6\x6d\x00\xdd\x2f\xe1\xbb\x40\x04\x91\x3b\x01\xc0\xbe\x97\x41\xa2\x8a\x19\x8e\x02\x35\x72\xf3\x03\xab\x07\x67\x05\x5b\x23\x69\x0f\xbf\xbe\x64\xe6\x69\x3b\xa5\x3e\xb4\x0a\xbf\x4f\xb7\x9c\xa0\xd9\xd6\x79\xc9\xa7\x77\x74\x82\xf6\xf7\x82\x60\x64\x0d\x8b\xfc\xdd\xe8\xe3\xd4\x34\xc2\x66\x47\x39\x2a\x72\x13\x8a\x6d\x00\xde\xfa\x6b\x30\x6b\xe2\xc4\x23\xb1\x54\x6d\xd4\x26\xfa\xbe\x23\x3f\x6c\x96\xcc\x0a\x17\xd0\x17\xe3\x91\xdc\x04\x00\x14\xcb\x73\x2a\x51\x8d\x66\x7f\x78\x49\x44\xd4\xcb\x14\x9a\x62\xd8\x3f\x66\x21\x67\x2d\x9d\x3d\x73\xe3\x09\x95\xf5\xc9\xe2\x1f\x9d\xda\xae\x7f\xe4\x5d\x5f\x52\xf7\x72\x17\xb6\xcf\x73\x38\x5e\x0d\xc1\x63\x8b\x4d\x69\x6f\x49\x98\xd4\x2e\x94\xc2\x66\x2e\x97\xca\xbc\x52\x5c\x7a\x20\xcb\x9f\x20\xfd\x8e\x5a\x33\xca\xb5\x69\x63\x49\x05\x1f\x49\x66\x88\xa4\x9c\xd3\x9a\xc9\xf7\xf5\xca\x6a\x7b\x70\x6b\x6e\x32\x03\xa2\x8a\xbb\xca\xcd\x19\xd7\xfd\x2b\x97\x6d\x2d\x8a\x71\x3b\xeb\x08\xb5\xdb\x3e\xb9\xee\x2b\x2f\x9b\xca\x2f\xd5\x0c\x15\x49\xfb\x51\x8f\x90\x4d\x5e\x2f\xc7\xf4\x81\x20\x4a\x76\x05\xb9\xaf\x22\x39\xbf\xf3\xc5\x51\x7b\x1d\xfe\x32\xc2\x7a\xf0\xc7\x4d\xa8\x6f\x2f\x5f\xed\x0b\x33\x6b\xbe\x3f\xfb\xf4\x1a\xf8\xde\x42\xee\x8e\xc9\x5b\xd2\x90\x4b\x34\xb6\x3e\xda\x4c\x2f\xd0\x99\x96\x8c\xf4\x1c\xfd\xd9\x58\x4c\x0f\xc4\x39\xe2\xad\x22\x6d\xe9\x18\x46\x83\x03\xb6\x25\x8d\xe2\xfc\x2d\x44\x7c\xfc\x20\x78\xe7\xc9\xac\xdc\xa0\x54\xb8\x07\x3d\xb1\x46\x36\x23\x22\xad\x8d\x77\xe7\xd6\x5f\xa8\x67\x6d\xb0\x22\x2f\x5d\xfc\x65\xbc\x6e\xfa\xc4\x2a\x7d\x07\x38\x0b\x38\xf1\xe8\x04\x25\xca\x43\xf8\xcd\x08\x5c\x29\x60\xc0\xc2\xbc\xb1\x2a\xf2\xe6\xc6\x4f\xfc\xfd\x8d\xf9\xd9\xd5\x5a\x73\x48\xeb\xef\xb5\x60\x01\x30\x26\xf7\x13\x20\x66\x86\xe6\x07\xe6\x81\x80\x95\xc5\xa1\x53\xc2\xe0\xd8\xe2\xfa\x50\x29\xcd\xfa\xd7\x93\xa6\x4e\xd8\x3d\xd6\x90\x7c\x5d\x53\x10\x34\x93\x04\xe7\x63\x29\xfe\x98\x94\xaa\xb9\xef\x9f\x9d\x7e\x7b\xac\x6a\xab\x81\x90\xeb\x4d\x25\xba\x6d\x45\x3c\x54\x83\xf2\xce\x58\xd0\x69\x33\xdd\xf7\xf7\x53\x19\xeb\xed\xfc\x0f\x13\x72\x18\xb2\x3c\x35\xc5\x5c\x85\x88\x55\xc1\x66\x63\xb9\xe4\xac\xaf\x07\xb9\xc2\xa1\x0b\xf6\xa3\xad\xb7\x7f\x73\xa4\x6c\x34\x1f\x90\xa4\x86\xb9\xb4\xd5\xe8\xef\x4a\x52\x6b\x19\xe8\x02\x50\xb9\x52\x80\xf1\x22\xd9\xd4\xbe\x2b\x2f\xb1\x66\x37\x3f\xc6\xab\x73\xe3\xb5\xfc\xe7\x71\x03\xb5\x09\xa0\x09\xff\x2c\x8e\xe8\x94\x01\xf2\x7b\xf9\xa0\x2d\x7a\xea\x47\xb8\xb5\x79\x07\xc1\x5c\xe8\x84\x29\x3c\xd2\x9b\x11\x5c\xd4\xdd\x30\x7e\x00\x43\x45\x72\x20\xbb\x5e\xc2\xdb\xdd\xdc\xeb\xdf\xf7\xfd\x27\x13\x6f\xf7\x9d\xd5\x9a\x81\x60\x7c\x59\x98\x65\xdd\x18\xad\xd0\xee\x72\x15\x22\x0f\xd4\xc4\x22\x9d\xc5\xce\x28\x19\x90\xc7\xf2\xe7\xcd\x5b\xb9\x6c\xc0\x24\x25\xc9\xa2\x24\x85\xca\x89\x9e\xa0\x9a\xf1\xe0\xab\xe8\x77\x9c\x72\xb9\x2b\x47\x53\xd9\x0c\x84\xfb\xb8\x8a\x62\x00\x3d\x07\x4b\x0f\x00\xea\x09\x17\x9c\x02\x9e\x17\x97\x37\x48\x0d\x50\xda\x1a\xd8\xc8\x04\xd2\x98\x50\xd4\x93\x62\xa9\x78\xc0\xea\xa9\x27\x37\x6a\xab\x4d\x3e\xde\x3a\xc2\x7f\xf0\x39\x08\x0a\xb0\x1b\x92\x11\x3c\x23\xa9\x8c\x40\x34\xe2\xaa\x0f\xae\xfb\x61\x22\x5c\x99\xa9\xef\x3a\x05\x83\xe9\x43\x20\x0e\x44\x39\xfc\xf6\xc0\x2a\x0a\x72\xff\xb3\xe9\x4e\xff\x5a\xd2\xc1\xd7\xdd\x54\x53\x77\xac\xd5\xf3\xec\x32\xe9\x14\x10\x85\xdb\xfd\x57\x8b\x09\x19\xa7\xfe\x77\x16\xb3\x84\x7d\x0a\x1d\x3a\xcc\x42\x1b\xfb\x02\x9a\xb7\xb7\x19\xed\x64\x1c\xdc\x9f\xef\x8f\x7b\xd0\xc6\x7f\xd7\x6f\x59\xe8\xa5\xd5\x59\x90\x9a\x52\x14\xee\x09\x26\xa2\xaf\x64\x48\x50\x9b\x62\x1d\x03\x02\x2a\x3b\xd5\x86\xa5\x6d\x9b\x96\xad\x6a\x9f\x72\x18\x68\x63\xa3\xb6\x0f\x6b\xd2\x4f\xf2\xf5\x23\xdd\xce\xa4\xa9\xe9\xe5\x0f\x97\x96\xce\x04\x98\x97\x9c\xd4\x82\xcf\x30\xad\x6d\x63\x9f\xbb\xab\xa2\x8b\x2b\x7c\x5c\x34\xda\x68\x96\x65\x13\xed\x59\x96\x32\x54\xbf\xb1\xc7\x52\x95\x06\xb5\x88\x17\xe3\x18\xf4\xcb\xd8\x0b\xa0\x3a\x6e\x59\xd7\x7c\xcf\xcb\x18\x1d\x0e\xa4\x52\xe1\x5e\x3f\xc9\xc3\x82\xa1\x2d\x44\xea\x70\xb9\x92\xee\x56\x0a\x1f\x7b\x77\x17\x36\x2b\xcd\x35\x0e\xf2\xbd\xd7\x43\x22\xa1\x79\xbb\xb0\x3f\xd1\xe8\xa5\x98\x10\x47\xa9\x87\x02\xbd\x19\x74\x2f\xc3\x3b\xbc\x49\xc7\x0a\x97\xa9\x81\xd5\x48\xb3\x13\xc2\xcb\x93\xb8\xb6\x9a\x50\x43\x3a\x31\xd5\x46\x2e\x92\x2d\x54\xb2\x20\x15\xdc\x48\x3b\x1a\xa4\xae\xc8\x45\xfd\xfe\xa0\xc3\x3e\x69\x99\xc7\x53\x79\xad\x6f\x2d\x51\x30\x16\x22\x5c\x1f\xdf\x32\x4c\x17\x39\xd3\x19\x24\x4c\xac\x64\x42\xf3\xf7\x64\x42\xb2\x55\xc8\xd5\x77\x32\x44\x03\xfa\x0e\xaf\x54\x98\x95\xfe\x20\x03\x95\x74\xa6\xd1\xb4\x43\x79\x33\xb0\x02\xca\x58\xfa\xeb\x0f\x01\x68\x4c\x52\x47\x39\xe5\x8a\xfb\xc4\xe3\xa3\x54\x9d\xd2\xc2\x07\x87\xbf\xae\x04\xab\x11\x45\x11\x92\x26\x43\x8c\xfd\x4f\xac\xb6\x89\xca\x4b\x4c\xae\xd6\x49\x89\x00\xf1\xf8\xd1\x7e\x72\x79\x9b\x6e\xeb\xc2\xd8\x20\x3c\x10\x22\x4c\xc5\x85\x1d\x79\x5b\xa6\x17\xa1\x6d\x15\xd1\x7a\xee\x21\x84\xfb\x19\x46\x94\x97\x84\x75\x50\x6b\xbe\x3f\xd7\x37\x18\x51\x42\x5e\x1e\x4f\xa6\x2b\x3f\xd6\xa4\x6c\x14\x76\xfd\x13\x94\x0b\x26\x05\x54\xf0\xcb\x4f\xc5\xa7\x98\x9d\xa1\x15\xdd\x46\x61\x9a\x4f\x97\x51\x6a\xdd\x48\x84\xa6\x03\xf5\xf7\xa0\x0c\x5b\x26\xfb\x46\xc5\x10\xb3\x0a\x8a\x94\x92\x44\xb5\xc0\x0e\x13\xc0\x22\x51\x2d\x50\x4c\xfd\xa2\xeb\x9c\x2d\xea\x67\xfb\x1d\x11\x18\xfe\x59\x32\x28\x41\x89\x23\x3a\x79\x06\x63\x02\x9f\xf8\x33\xf8\xe6\x11\xa4\xf9\x59\x4c\x11\x94\x53\x0a\x40\xbc\x38\xe9\x85\x25\x18\x88\x6d\xee\x57\x43\x8a\x0a\x85\x75\x1f\xd3\xd9\x5d\x39\x7a\xfe\xc2\xcf\x2b\x65\x6e\x55\xb0\x01\x7c\xf1\xb2\x62\x8d\x28\x3c\x66\x96\x58\xcb\x3b\xe1\x6e\x50\x42\x44\x17\xc5\x0c\xa8\x0f\x7c\x70\x2e\xc5\x43\xc0\xc4\x28\x42\xc0\x0f\xa0\x60\x91\x6a\x98\x85\x34\xb5\x43\x71\xbc\x5e\x92\xc6\x4e\xb4\x2e\xf3\xde\x28\x2e\xd9\xf5\xda\x73\x84\x2d\x8b\x53\x0f\xc1\x53\x2d\x12\x47\xfd\x9c\x16\xf7\x1a\xdd\x40\x89\x45\x74\x42\xe0\x74\xb5\xf6\x8f\x78\xf1\xc2\x75\x8f\xaf\x7f\x4a\x61\xd2\x03\xa6\x55\xae\x25\x2c\x13\x5d\xbb\xaf\xb1\xde\x52\x3e\x7a\x36\x5c\xf9\x98\x16\x2c\xf0\x3d\xb1\x88\x1b\x93\x47\x76\xa5\xb5\x00\xbd\x1b\xfe\xaf\x13\x15\x3d\xda\x04\xad\x3b\x9e\x2d\x3f\x36\x3e\xb7\x4b\xd5\x2f\xce\xb9\xd9\x31\xe0\x6f\x42\x2a\x6f\xf3\x66\x38\x08\x88\x20\xb6\x48\x52\xc1\xfd\x47\xbe\xae\xe5\x7c\x47\x75\x0e\xef\x2e\xad\x39\xf0\x8b\xc1\x46\xb5\x95\xcf\xd3\xe0\xb1\x45\x2d\xaa\x75\x84\xc7\x9a\xce\xc4\x36\xd8\x8f\xdd\xd3\xe0\x6d\xe5\x6b\xce\xa8\x98\x25\xb7\x27\x67\x7e\x30\x15\x73\x5b\x69\xc2\x42\xfb\x84\x98\xe5\xf7\xfd\x6c\xf3\xbb\x07\xda\x54\xc0\xfe\xe1\x0d\x0f\x25\xdc\x02\xc5\x73\x14\x31\x8e\x28\x8a\x96\xdb\x14\xdb\x76\x6b\x26\x4e\x5c\xde\x25\x16\x15\xd1\x50\xb2\x16\x19\x17\x0d\xad\xbc\x08\x87\xea\x2c\x56\x11\xb9\xbd\x4c\x3a\x17\xe3\x96\x3a\x12\x0d\xf0\x50\x6d\xd4\x54\xfc\x6e\x37\xa6\xb4\x8e\x68\x0a\xa3\x8c\x96\xda\xcb\xf7\x30\x01\x5e\xa9\x81\x25\x7d\xb1\x3f\xb6\x4d\x53\xe7\x8f\xdb\xb7\x3a\x57\x7f\xe3\xe1\x65\x7a\x89\xc1\x9e\x9d\x7b\x8b\x38\x2e\x82\xbd\x79\x89\xb8\xb8\x3a\xf1\x1f\xee\x60\xa3\x1d\x42\xd5\xf8\x8c\x23\x23\x4b\x06\x87\x38\x5c\xb1\x23\x13\x20\xf2\x71\xe3\x47\xf7\x99\x85\x1a\xbf\x1c\x93\x9f\xea\x57\x27\x79\x53\xf7\x6b\x14\x75\x1a\x6a\x78\xf9\xb2\x89\x10\x26\x8b\x4e\x53\xe7\x7d\x0e\x44\x80\x42\x2f\xc3\x1d\xcf\x0c\x03\x88\xa1\xc2\xff\xf5\x4c\x8a\x68\x0c\x77\x51\x95\x71\x9c\xd2\xd9\x3d\xca\x22\x7f\x67\xc6\xeb\xc9\xbc\xe4\xe5\x55\x45\x11\x1b\xe4\x4b\xc0\x16\xf1\xef\xcb\xc8\x96\x2e\xaa\xaf\xf9\x2c\xd9\x8a\x00\x06\x40\x24\x1c\x43\x60\x75\xae\x6e\x64\x20\xc0\xf2\x1a\x8b\xdf\xb7\x20\x48\x1b\x07\x5e\x94\x7d\x8a\xdb\xcc\xdc\xfd\x76\xb5\x60\x7d\xa6\xfe\x66\x14\xbd\xad\xaf\xa2\xdb\xeb\xa3\x8e\xfc\x78\x61\xe6\x24\x94\xe0\xf9\xba\xed\x15\xfd\x40\x83\x5d\xc6\x2f\xbe\x51\xce\x87\x04\x06\xec\xb1\xa3\x58\xba\x05\x8c\x1e\xd4\x7b\x59\x34\xbf\x13\x37\x21\x08\xa3\x02\x7c\x04\xf5\x6e\xdf\xea\xe2\xaa\x91\x35\xeb\xf7\x1d\x4b\x6e\x50\x7f\x7d\x91\xfb\xd5\x0c\x7f\xe1\x88\xa8\xcb\xdf\xa7\x67\x86\x78\xa2\x94\x6c\x0e\x1b\x45\x45\x0d\xf7\x45\x14\x68\x45\xe8\x8a\xde\x3a\x5d\xc7\x84\x71\xf6\xfd\x86\x39\x6b\x6b\x78\x79\x3f\xc8\x20\x76\x37\x1c\x70\x38\xb6\x1a\xe1\x6c\x6e\xb2\xde\xca\xd6\x6e\xbb\xc6\x56\x69\x8f\xad\xcf\x02\x3b\x66\x0c\x5f\x0c\xfb\x45\x9a\x90\xf5\x5f\x78\x08\xc6\xb4\xfa\x36\x11\x6b\x54\x7a\x61\xda\xc5\xe9\xc3\x5e\xdb\x5e\xbc\xc2\xc3\x63\x90\x9d\xf9\xc5\x85\x02\xf7\x36\x2f\x19\xc9\xae\x85\x17\xb5\x47\xa2\x1c\xe1\xd8\xc8\x5d\x75\x97\x9a\x75\xf6\xa6\x65\xe2\xf8\x04\x6a\xca\x7e\x97\x0c\x84\x8b\xb2\x32\x07\x45\x57\xdb\x5c\x80\x7f\x7d\x48\x50\x0f\x23\x9b\xe0\x6b\xd4\x5c\xe3\x57\x1e\x75\x68\x81\x09\xb3\x1d\xab\xed\x47\x9d\x8c\x1f\x45\x6b\x8f\xe2\x5e\x75\x34\x1f\xfa\x50\x69\xa2\x96\xcd\x6f\xd6\x98\x5a\x2f\xba\x51\x62\x70\x68\x02\xb8\x6f\xc3\x5e\xb5\x08\x86\x7d\x60\xed\xa2\x65\xfe\xdd\xce\x7d\x39\x6c\xb3\x59\xce\x8b\xb2\xaa\xf2\x97\x0f\x52\x42\x84\x57\xc0\x8a\x0e\xc5\xaa\xbe\xe1\xef\x31\x51\x0d\x1e\x2e\x8d\xa9\xf7\xc1\x65\xc3\x55\xb7\x28\xe5\x63\x18\xcd\xe2\x1c\x0e\x5e\x91\xdc\x7a\xbd\x7a\x39\xd8\x60\x3f\x9f\x7b\x7c\x9c\xfd\xa1\xfe\xd2\x12\x02\xff\x4a\x72\xe3\xab\x3d\x3d\x3c\x0a\x79\x5c\xd5\x50\x1a\x8f\xe4\x91\x87\xf8\x9a\x30\xab\xee\xb4\xf5\x35\x25\xc2\xfd\x59\xd2\x4a\xad\xac\x94\x38\x5a\xa1\x86\x3b\x64\x1c\x92\x1e\xf2\x50\xaa\x42\x72\x3b\xbd\x8a\xf0\x21\x3e\xca\x05\x29\x4e\xc5\x11\x0c\x6a\x66\xbb\xf3\x5b\xb1\x1c\x83\x0d\x09\x1c\xa6\x13\xc1\x00\xd0\xeb\xf6\xd5\xeb\x3b\x05\x1a\x8b\xa6\x40\x9f\x1d\xfc\x69\x04\x91\x89\x04\x52\x0e\x39\x99\xd8\xfe\x96\x21\x8d\x1d\xa0\xd2\x68\xa1\x31\x1c\x87\x72\xbc\xe4\xb2\x45\x55\x44\x81\x42\xa7\x1e\xd1\x25\xbe\x68\x85\x07\x47\x31\x58\x2f\xf9\x5d\x17\x9b\x89\xcb\x60\xec\x8b\xfb\x95\xb5\xb7\xbe\xf0\xa0\xb4\x13\xe3\xf9\xef\xae\x2a\x4c\xd8\x00\x84\xdf\x8e\xa6\xfe\xa6\x1a\x6d\x3e\x16\x9f\x5e\xc6\x25\x95\x02\x4a\x73\x03\x34\x68\x7d\xb7\x56\x75\x0e\xd1\x9c\xb3\x1d\xe3\x08\x06\xc1\xc0\x75\xcf\xe5\x74\xc9\x61\xcc\xd5\x74\xbb\xdb\x01\x57\xb5\x1e\x3e\x6e\xd0\xa7\xec\xe9\x00\x8f\x2f\x3a\xb9\x97\x39\x2d\xd6\x55\x98\x01\xeb\x70\xcc\x24\xf5\x57\xb4\x43\x46\x31\x47\x16\xc6\x82\x64\x5d\x12\x3f\x2f\x1e\xdc\xa4\x97\xfe\xe0\xf2\x3a\x8a\x09\x73\x54\xe2\x4c\xfe\xfa\x71\x5b\xa7\x07\x2a\x83\x8d\xd3\x0e\xd9\x70\x47\xbb\x6a\xd6\x78\xe4\x21\x82\x1f\x4a\x49\x34\x19\x8e\xb8\xff\x7c\xc1\x15\x5e\x2c\x14\x97\x1e\xe9\x24\xb6\x6b\xbe\x62\x35\x6d\x53\x42\xfe\xd7\x3d\xbd\x56\x5b\x8e\xa0\xfc\x69\xcf\xed\x4d\x30\xbf\x29\x67\x39\x7b\x32\x24\xad\x49\x55\xb1\x1b\x99\x40\x7a\xce\xc9\x90\x84\x69\x02\xea\x3b\xb6\x25\x14\x8d\x0e\x34\x87\x66\x3e\x4d\x07\x9d\x78\xd2\xa2\x60\xc4\xec\xef\x0e\x38\xe3\xd0\x16\x20\x56\x3d\x86\xdc\x0d\x8f\x20\xd4\x8b\x9a\x95\x0f\x23\x6f\xad\x91\xda\x47\x74\xa2\xe4\xf0\xb9\x74\x2b\x60\xf6\x71\xa1\x8e\xe0\x06\x71\xa6\x6a\x96\x86\xc9\x6f\x0b\x4f\x16\x2e\x05\x13\x25\x11\x06\xef\xa2\x14\x1f\x11\x39\xb7\xdc\x1a\xf0\xf7\x94\x29\xe7\x9f\xfd\xbb\x11\x86\x5b\x20\x07\x1c\x57\x9a\x3f\x9a\xa0\xdb\xb2\x65\x90\xcf\x3d\x26\xb6\x21\xde\xd2\xc5\xcd\xb4\xae\x13\x75\x1c\x65\x66\x6b\x89\xdc\xdd\x1c\xce\x38\x6f\xf7\x22\x41\x9f\x9a\xde\x2b\x06\xe8\x08\xea\x47\x8b\xcc\xd8\xd0\x2b\xb6\x6d\x06\xa9\x60\x62\xc5\xcd\x86\xa9\x0c\x05\x79\xb5\x9e\xfa\x2b\x11\xbe\xb2\x71\xfc\x6b\x49\xd8\x37\xac\x96\xc4\x61\xcc\x55\x3e\xe2\x32\xfd\x56\x57\x2e\x26\x0d\x1b\x85\x7b\x91\xc8\xa6\x58\x90\x69\x27\xb1\x9b\xff\xf2\xe2\xbc\xd7\x17\x6c\x56\x0b\x71\x88\xfd\xa7\x10\x8f\x3d\xab\x1c\x84\x5c\x37\x85\x15\x70\xb9\x3c\x47\x78\x51\x4e\x29\x59\x56\x7f\x25\xd1\x94\xb4\x39\x8d\xc5\x2e\xe1\xc5\x53\xd2\xa6\x97\x66\x83\x04\x1e\x54\xf4\x0c\x06\x3b\xbf\x6e\x75\xb2\x3d\x47\x2a\x83\x3d\x71\xa1\xe4\x73\x9a\x17\xbc\x2e\x2f\x06\x49\x7e\xad\x13\x69\x5a\x13\x97\x42\xf4\xc6\xfb\x4d\x02\x12\x65\x3d\x69\x02\xe9\xb3\xb5\xd8\xc8\xb4\x43\xfd\xc8\xa6\xb2\xe2\x40\x04\xa5\x09\x0f\x7c\x03\xcb\xf4\x8d\x78\xb7\xd7\x7d\xf5\xe1\x0b\xef\xf8\x67\xfc\x75\xd3\xf2\xe6\x91\x13\x06\xe8\xb5\xfd\xba\x01\xcc\x77\x94\xd9\x66\x91\xef\x63\x35\x32\xa3\x76\xb8\x3f\xc1\x12\x26\xcb\x19\x99\xcd\x90\x6b\xef\xbe\xbc\x8e\xd4\x59\xe5\x8e\x06\xde\xf7\x5c\xcf\x3b\x7c\xa3\x05\xb8\x66\xf4\x33\x40\xa4\x83\xfd\x0c\x42\x64\xbb\x00\xbb\x5d\x66\xef\x4a\x59\x38\xf1\x85\xca\x30\xf6\xc8\xa2\x79\x66\x1c\x3d\xd3\x6b\xa3\xf0\xf7\xe4\xd6\x6d\xc4\x5f\xd4\x33\x71\xe7\x38\xa2\x5f\x87\x96\x62\xfa\xa1\x13\xdd\x49\x04\x83\x14\xa5\xb0\xed\xde\xd7\x76\xb9\xef\xae\x4f\x73\x77\x8f\x37\x96\x13\x2b\xc1\x6f\x17\xe6\x36\x0c\xae\x13\xa1\xd3\xa6\xc9\xaf\xff\x64\xf7\x5a\x5c\x14\xbd\x5c\x7f\x51\xc4\xf5\xb9\x53\x46\x32\x52\x59\x4e\x7d\xac\x96\x1e\xdb\xfd\x1d\xf1\xd7\xcc\x7c\xaf\x29\xda\x55\xe5\xda\xec\xb2\x65\x71\xdc\xa7\x67\x17\xbe\x2c\x62\x69\x01\x61\x64\xf9\xb6\xeb\x0a\x6d\xa9\x3b\xb1\x2e\x52\x02\x15\x9a\x2a\x55\x71\x08\x76\x87\x5d\x8b\x74\xbf\x42\x0e\x54\xce\xdc\x6a\xcd\x55\x3d\x4d\x98\x8b\x48\x1c\x67\x9e\xff\xcc\x8b\x4c\xa1\x82\x9b\x3d\xce\x40\xee\xef\x2a\xf0\x8e\xdf\xf4\x68\x99\xe5\x68\xee\x44\xd0\xf4\x09\xd4\x61\x72\x93\x25\x5e\x83\x85\x73\xc4\xfb\xe8\xb7\x53\x55\x20\x32\x62\x57\x09\xd7\x91\x78\xaf\xb0\x93\xd7\x97\x88\x20\x5c\xab\x63\x6b\xf4\x33\xad\x90\x4e\x19\xdd\x3b\x95\x6b\xe5\x92\x8e\xfc\xbc\x7f\x17\x65\xd1\x5b\xd8\x6e\xfc\x16\xd7\xb0\x80\xdf\xb0\xc0\xc8\x8a\x0f\x6d\xb5\xc1\x06\xf3\x93\x99\xf6\xa8\xb3\xd0\x91\x15\x10\x06\x31\x8e\x23\x4e\xef\xbf\xba\x1a\x72\xc4\x5e\x53\xaf\x78\x98\x6c\xff\xc5\x19\xe0\x0a\x61\x16\x77\xc0\x5f\x1c\xfa\xd4\xd3\x2a\xbe\xad\x09\xbb\x6e\x6f\x8f\xfb\x8f\x00\xb7\x65\xe7\xb5\xc6\x67\x8c\x35\xe0\x73\xc0\xe6\x35\xa7\xe4\xc5\x4d\x28\xf2\xec\x3a\x09\x44\x11\x9a\xfb\x29\x01\xa7\x73\x1f\x6d\x0b\xd1\x2c\x68\xd3\x9a\xb4\xdd\x06\x21\xd0\x30\x40\x22\x3e\x5f\x73\x39\x29\x3b\xac\xf2\x04\x0a\x97\xc8\xec\x84\x03\x4a\x78\x3d\x9c\x44\x2a\x44\x19\xbe\x41\x3b\x8a\xcb\xfe\xff\x12\x4d\xde\x6e\x34\x08\xc8\xe1\x73\x31\x93\xa9\x82\x6b\x7d\xdd\xd1\x25\x79\xb0\x9c\x7c\xdc\x3d\xb9\x02\xd9\x07\xe4\xf0\xbb\x07\x77\xcc\x4d\x9c\x35\xec\x5d\x8a\xa4\xbb\x6e\xbc\xe8\x0d\x60\xb9\x59\x1b\xee\xf8\x3d\x21\x05\x72\x59\xf1\xad\xe7\xdc\x5c\x41\xd3\x0a\x8c\x7e\xb4\x1e\xcb\x1c\xdd\x18\x16\xef\xdb\x1f\xd9\x39\x6c\xa2\x25\x01\x90\x8f\x72\x3c\xa4\x06\x18\x6b\x78\x9f\x04\xd8\xb2\xa3\x80\x08\x0b\x73\x17\x2b\x48\xa0\x21\xce\x0f\x64\xd0\x59\x7b\x6e\x29\x80\xee\x87\x0b\xea\x34\x26\xd2\x23\xba\xac\x5c\x44\xef\xba\x17\x59\xe8\x07\x0e\xfc\x3f\xa4\x2b\x90\x1e\x49\xb0\x90\x76\xdd\x5c\x05\xcd\xbb\x78\xc2\xdf\xa4\x8f\xcc\xde\xf1\x8b\x9e\xd3\x5c\x30\xcd\x95\x72\xf4\x3c\x3e\xb6\xba\x27\xd7\x5d\xa9\x8d\xf2\x89\xaa\xa5\x28\xb9\xf5\x10\x11\x7f\x1a\xbc\xf4\x25\xa0\xbe\xef\x70\x63\x6f\x41\xbf\x15\x3a\x67\xa5\xe7\x77\xa2\xcf\xb2\x17\xf8\xed\xb6\x21\x78\xf3\x98\xe3\xfb\xd5\xca\xa2\x96\xd4\xab\x47\xa7\xd5\x8e\x8a\x8d\x1f\x1f\x22\x7c\xcf\x02\x5d\x29\xde\xcb\x10\x58\x5f\xcc\x93\xb6\xa3\xdb\xf7\x14\xb6\x0e\xb3\xc3\xb5\x2c\x37\x26\x67\xc9\x17\xad\x27\x56\xe2\x65\xfe\x32\x83\x18\x52\x74\xe0\x26\xed\xcd\x63\xb1\xcd\x3b\x92\xaa\xdb\x49\xf4\x29\x47\xca\x42\xdb\x40\x52\x3f\x96\x8c\x69\x90\x4c\x34\x3c\x7e\x7f\x04\xab\xbd\xc0\x0f\x7d\xc3\x1d\x95\x3b\x1e\xe2\x51\xd3\xd5\xd0\xf5\x49\xc0\x49\x3b\x2e\xb8\x94\xba\xd1\x5a\xb4\xd3\x1b\x48\x27\xd2\x50\xb1\x6f\x14\xad\x3e\x89\x3e\x16\x1f\x58\xa7\x00\x80\xa1\x7e\x09\xc4\xcd\xe9\xea\x14\x11\x8c\xdb\x63\x28\x59\x0b\x7e\x13\x4e\x67\xa6\x44\x40\x62\x77\x80\x26\xb9\xb7\x16\x9f\x4c\x40\xab\x7b\x94\xd4\x99\x75\xc7\x74\x55\x00\x97\x5c\x41\x38\x6a\xc1\x6b\x50\x99\xa1\x15\xdf\x46\x75\x60\x94\x8e\xb7\x15\xc4\x77\xa2\xbf\x8a\xb9\x9b\x25\xa8\xa8\xb7\xeb\xf7\x64\x19\x35\x7c\xa4\x84\x3f\xe3\xa4\x83\xb5\x65\xfb\xcc\x56\x32\xc3\xbf\x4f\x2e\x2f\x4c\xdc\x02\xc1\xc6\x63\xaf\x70\xd0\x3a\x88\xaa\x5b\x39\x0d\xdd\x4e\x56\x02\xe0\xf9\x57\x6b\xe0\xb8\x87\xf9\x5b\xfe\x50\x4f\xfc\xdb\x45\x37\x0a\x9b\x9b\x86\x76\x73\x09\x26\xfc\x47\x91\x90\xda\x74\x3c\x30\x94\x0f\xf8\x0e\x98\x78\x41\xf0\xee\xfd\xdf\x4e\x26\x45\x15\x6c\xba\x83\x1c\x05\x96\xfa\xab\x2e\xba\xbc\x2e\x8d\xdf\xb6\x55\xee\xe8\x55\x2a\x99\xfb\x9c\x72\xb8\x57\x97\xcf\xcc\x8f\x37\x25\xe8\xcf\xfd\x9e\x42\x27\x64\xeb\x43\x77\x65\xac\x76\x10\xee\x2d\xfe\x25\x9b\x26\x93\x6e\x94\x1b\x9b\x10\x87\x8c\xef\x8a\xcf\x0b\x92\xc7\xa5\xae\x37\x0b\x15\xd5\x04\x65\xcb\x8e\xb0\xed\x36\x44\x39\xee\x16\xec\x12\xe6\xc5\x86\xef\xda\xed\x31\x01\x98\x70\x50\x1a\x00\x15\xd4\x79\x51\xf6\x11\xfd\x65\x79\x6a\x77\x90\x40\x25\x9d\x72\xcc\xbb\xcf\x67\x47\x70\x60\xfe\xbd\xef\xeb\x68\xc6\xb7\xe5\x8f\xe4\x1d\xde\xd3\xf3\xe2\x65\xf1\x63\x52\xdf\x8e\x6e\x34\x3d\x1f\x0b\x7f\x4f\x0e\x9a\xf3\xe2\x18\xcb\xa7\x84\xb2\x39\x3a\x23\xfd\x1d\x75\x0a\x2b\xa8\xc2\x79\x3a\x33\x50\x0b\xdc\x92\xf1\x2c\x31\x9e\x82\x1b\x0e\x57\xf8\xa5\x79\x57\x4e\xf6\xcb\x4e\xcb\x6b\x8c\x42\x64\x4d\xa9\x85\xaf\x22\xef\x63\xb4\xdb\xef\x95\xec\xa8\xa3\xee\x6f\x18\x6b\x51\xfe\x60\x5b\x6e\x82\x17\xf4\x4b\x25\x85\xcc\x93\x1e\x34\x27\xcb\xb1\xc9\xa9\xd4\x8b\xbc\xb2\x9a\xd2\x37\xfb\x02\x9a\x00\xc5\x02\x1b\x62\xbf\xf9\xbc\x08\x31\xd9\x9f\x17\x3b\xcf\x33\xc3\xc6\x7e\x7b\x2f\x9b\xb5\x49\xc8\xef\xf4\x1d\x5d\x8d\x8c\xfc\x3b\x6b\x4c\x00\x39\xd8\x20\x4f\xd1\xd6\x95\x99\x63\xe7\x5b\x8d\x53\x54\xd0\x2f\xfa\x4a\xbf\xad\x45\xb5\x7f\x14\xb3\x29\x50\x65\x0f\xc7\x68\xe0\x77\x3c\x2b\xc8\xe9\x49\x63\x64\x98\x8e\x9b\xf2\xf1\xe0\xf3\xf6\xbd\xb9\xc0\xa3\xe5\x6c\xf0\x42\xa2\x0a\xb7\x40\x62\xf2\xfb\x52\x43\xba\x3a\xf9\xb7\xe1\xe6\xce\x91\xeb\x99\x84\xbd\xef\x86\xbf\xaa\x80\x3c\xb8\x04\x5e\x59\x79\x04\x28\xa7\x44\x81\x11\xb1\xea\xc6\x74\x8b\x45\x0c\x00\xa8\x7c\xf6\xbb\x78\x7b\x3c\xa8\x65\xc6\x8f\x0b\xf2\x75\xf9\xc5\x48\x36\x25\xa3\xbc\x49\xf6\xda\x13\xbf\xf6\x59\x28\x93\x21\x79\x42\x82\xa4\x9e\x4e\x85\x9b\x27\x57\x35\xc0\x5a\x59\xeb\x43\xa8\x8f\xb5\xac\xb2\x75\x90\x92\x30\xf3\xfa\x2b\xd4\x76\xf5\x79\x8e\xf2\xf6\x48\x7e\xf6\xc4\x07\x1f\x00\xb8\xcb\xa3\xf2\xfd\xae\xf4\xae\x18\x9d\x7d\x11\x9f\x4a\x27\xd1\xc5\xa1\xaf\x6c\x00\x94\x94\xd3\xc5\x8d\x85\xcd\x9f\xb8\xe1\x6e\xc6\x0a\x2f\x59\xc8\x6b\xc2\xec\x86\xa3\xbc\xed\x5e\x51\x2e\xd3\x41\x01\x04\xce\xc0\x36\xf8\x45\x92\x7a\x92\x3f\x5d\x19\x06\xb9\x5e\x5b\x27\x2d\x64\xf0\x30\x11\xbe\xd9\x45\x53\x1f\xcc\x44\xcf\x1d\x2f\xf7\x90\x0d\xc4\x5f\xf4\x78\xe8\x8f\x52\xdc\xfb\xf7\x33\x21\x32\xde\xfd\xab\xf8\x28\x84\x88\x25\x32\x1e\xf2\x2d\xa8\x96\xe0\xbc\x2d\x9b\x08\x9a\x0f\xf7\xe0\x53\x77\x94\x6a\x7a\x3b\xfc\xd5\xc9\x0a\x84\x98\xf9\x70\x10\xf9\x77\x31\x1d\x27\x2b\x21\xf8\xcd\xc7\x84\xbe\xd8\x11\x2d\x61\x32\xc4\x54\x7c\x45\xc1\x79\x9f\x72\xc9\x86\xc9\x2c\x81\x61\x96\x2d\x04\xe4\xc3\x8d\x73\x23\x0e\xf2\xb3\x0e\x72\xdd\xe9\x4b\xe7\x0e\xb2\xf2\x71\x49\x66\xd4\xf4\x3b\xdb\xd1\x56\xcb\x1f\xa8\xd2\x23\xea\x55\x46\x7a\x3a\x0e\x3a\x0d\x5f\x78\x67\x93\xf0\x24\xc9\xe8\x96\xa6\xc4\x16\x1d\xce\xc9\x2b\x38\xcd\x46\x29\x40\x73\x6b\xa2\xcf\xd5\x2d\x70\xfb\xa2\xd3\xc6\x99\x3f\xbb\x11\xfc\xa1\xf7\xca\x1c\x7e\xd8\x42\xe9\xed\x4a\x7d\x21\x29\x5e\xa2\x0f\x17\x39\xc8\x57\xaf\xea\x0c\xf7\x3e\xd5\x44\x7f\x53\xfb\x2a\xe2\x1f\x6e\xa5\xbd\x79\xa9\x87\x8f\x9a\x66\xd1\x88\xd4\xd2\xde\x48\x89\x63\x0b\x49\x4a\xb8\xb1\x73\x4e\xf2\x7b\x05\x27\x6c\x1f\x57\x72\x5f\x7a\x74\x7d\xdb\x6c\xdf\xa7\x0a\x4c\x07\x6e\x3f\x0b\xda\x17\xdf\xfb\x09\x99\xf3\xb0\xe5\xa2\x45\x97\xc4\xdf\xbd\xb0\xab\x03\xf3\x66\xfc\x56\xff\x86\xa9\x0c\x0f\xfe\x05\x32\x82\xcd\x19\xad\x0c\x56\x4f\x7c\x4f\x64\x41\x59\xa3\xe0\xb9\xef\xe7\xfa\x72\x0e\x77\x4f\x26\x8f\x96\xcb\x70\x9a\x14\xf1\x09\x91\xe7\x22\x2e\xcc\x6f\xf1\x18\xd5\xa1\x77\x60\x08\xec\xd3\xd9\x54\x2e\x58\x44\xb2\x50\x80\x1d\xdf\xa2\xa5\x35\x61\x72\xe3\x30\x84\xa9\x9e\x65\x19\x25\x3d\x7c\x2e\x7a\x92\x42\xa2\x86\xe0\x80\xa7\x93\xc5\x06\xbf\xbc\xfe\x43\x4e\x1e\x53\x6b\xe3\x07\x0e\xb6\xdb\xa3\x30\x73\x01\xfe\xc7\x87\xd8\x5e\xf2\x98\xfd\x12\xd5\x0b\xcf\xf8\xbb\x54\x93\x67\x95\x3f\xaa\x4f\xeb\x16\x5b\xd5\xf6\x83\xcd\x93\xe3\x72\x0c\x66\x7b\x63\xa0\xd3\x7d\x92\x54\xa6\x47\x01\x1b\x61\x6d\x68\x1c\x8e\x8e\x1f\x67\x81\xc1\x5d\xfe\x8c\x5b\x22\x18\x3c\x49\x7f\x7d\xe5\x22\x9e\xb8\xfa\xcd\x57\x3a\x4a\x0e\x3d\x06\x7f\x77\x52\xcd\x40\xb4\x4c\x7e\x36\x04\xbe\xb8\x27\x12\x87\x5e\x45\xd4\xcf\xe7\x7a\xb3\x70\x7c\xab\x0d\x02\x06\x64\x2b\x24\xbb\x68\x58\x04\xf5\x52\xd0\xe5\x78\xe2\x78\x05\xc9\xa5\x4c\xc6\x68\x6f\xd3\x03\x5c\x18\x9e\x59\x25\x4c\x88\xca\xf7\xb1\x8e\x18\x2d\x95\xb4\x53\x66\xf3\xdc\xe4\x44\xcc\x66\x77\xd1\x74\x62\xb3\x4a\x12\x83\x71\x95\x7f\x6c\x07\x39\xc2\xec\xf2\x7c\x0c\xeb\xa1\xfb\x6b\xf7\x8b\x22\xd2\x55\xee\xb5\x95\xee\x2e\xd5\xa4\x65\x33\x99\x79\xbb\xf5\xde\x76\xf5\xdd\x76\x96\xa5\x22\xa9\x2d\x85\x29\x5a\x22\x4a\x4a\x4d\x4c\x52\x2f\x0c\x72\xbd\x80\x30\x22\xfa\xf8\x58\x78\xc2\xcb\x3b\x58\x43\x5a\xc4\x4e\xcf\x3e\x9e\x4a\xb9\x18\x0d\x6d\xaa\xc1\xa5\xa0\x70\xc9\xb2\x96\xa0\x00\x20\x84\xe0\x24\x34\xfd\xa5\x1f\x39\xad\xa2\x16\x49\x8d\x0a\x9b\x0f\x20\x50\x42\x9d\x5c\x5c\xdc\xbe\xa5\x0b\xa5\xa9\x01\x4b\xf4\xac\x29\xd1\x05\x13\x08\x0c\xcc\x6b\x07\xef\xf1\xb9\x1f\xe1\xda\xfe\xc9\x17\xea\x45\x1a\xa7\x27\xe7\x8f\x01\x01\xb5\x52\xa3\xdd\x06\x6a\x1d\xb6\xe6\x69\xf8\x84\xe2\x2a\x94\x53\xf5\xac\xdd\xc3\xb4\x43\x46\x86\x9f\x0f\xce\xf3\xd7\xd5\x5f\xee\xf4\x67\x1e\xb5\x79\x6c\x95\xf9\x58\xbe\xfa\xf1\xb5\x46\x9f\x7d\x27\x38\x6f\x30\x67\xc2\xc1\x78\xe1\xe9\x87\x2d\xb7\xa9\x81\x05\xae\xe4\x67\x75\xbc\x02\xeb\x1f\xda\x92\x79\xb1\x8d\xd3\xaa\xf7\xd4\x4d\x99\x3b\x51\x53\xa6\x8a\x6e\x30\xf2\x3b\xd8\x29\xde\xfe\xc9\xee\xbd\x1b\xc4\x11\x31\xab\x9c\xc7\xb9\xaa\x31\x56\xd2\xfc\x79\x65\x3f\x42\x0e\x9e\x97\x5d\x3f\xd7\x3f\xa9\x95\x96\xd4\x23\x04\x28\xc8\x78\x4e\xd3\x31\x2c\x66\xea\x43\x37\x3e\xa7\x85\xa6\x98\x99\x86\x52\x49\x5f\x47\xe5\xb2\x0d\x7a\xc4\x51\xed\xe1\x7e\xd8\x8a\x0e\x72\x93\xf4\x9c\x66\x6a\xae\x1e\x9e\xb2\xc1\x77\x16\xa9\x54\xdf\xb6\x9d\x65\x41\xaf\x30\xb3\x81\xe0\x61\x14\x7d\xb0\xf4\xa2\x04\x28\xed\x93\x5a\xe8\xaf\xbe\x72\x92\xd4\x7f\xdc\x15\x4f\xe3\x65\xae\x76\xc2\xf6\xde\x8c\xb9\x21\x11\x85\x77\x21\xe4\xef\xb0\x5b\x36\xce\x73\x7d\xec\xda\x65\xf8\xc9\x31\x23\x5f\x9f\x3b\x16\x5a\x75\xdb\x6a\x56\x7b\x04\x1e\x63\xd7\xb0\xf4\x72\x0d\xd9\xd0\x47\xa9\xb6\xac\xaf\xf4\x98\xfc\x0d\x06\x66\xa7\xac\xf9\xca\xb3\x91\x89\xc0\xad\xc4\x9f\x16\xe8\xaf\xae\x74\x34\xe8\xcd\xdb\x9a\xee\xfa\x43\x65\x07\x69\x64\xca\xbe\x5e\xa5\x50\xd6\x8d\x54\xaa\x36\xc0\x2a\x4a\x47\x0a\xaa\x22\xf9\xc1\x92\x23\x70\x9f\x87\xe1\xd8\xa6\x44\x93\xb1\x23\x0a\x5c\x58\xe2\x80\x3c\x87\xe8\xd8\xe4\x9c\x13\x2e\xee\x73\xa8\xca\xe8\x91\x81\x4d\x41\x64\x2f\x19\x6c\x54\x40\x92\x80\x81\x79\xd0\xc3\x8a\xa9\x8c\x34\xc9\x61\xd5\xc5\x01\xc4\x86\x09\xa4\xb1\xfa\x99\xb4\x52\xac\xd1\xae\x78\xed\x69\xa9\x4d\xcc\xbe\x47\x1e\xe3\x28\xe5\xf0\xb9\x0c\x30\x04\xd3\xdb\xce\xb4\xe8\xb8\xe3\x57\xad\xcb\x0b\xd7\x1c\x8c\xe0\xa7\x40\xdf\x2b\xb0\x96\xf0\x94\x09\x4f\x4a\x78\xed\x25\x3d\xe6\x5c\x7d\x06\xf3\x18\xa1\xd6\xb8\x88\x7a\x84\x82\xb7\x05\xdc\xdd\x05\x42\x69\xe9\x71\x98\xf3\x38\x0b\x36\xb7\x02\x45\xb1\xf4\xe1\xd1\xdb\xdf\xa8\xa5\x18\x45\xb3\xa7\xf7\x1d\x46\x5f\x04\x2a\x1d\xdd\x5a\x0c\xf1\x82\x48\x6e\x5f\x61\x3b\xb2\x6a\x51\x80\xed\xcb\x12\xd9\xab\xad\xa5\x87\xbc\xd0\x90\xc2\xac\x90\xc7\xb8\x83\xd8\x94\x02\x50\xb2\x01\x66\x62\x5a\x31\xa2\xd0\x92\x66\x8f\x1e\x62\x9b\x51\xc7\xed\x67\x10\x40\x9c\x25\x3e\x6e\x7d\x4b\xcb\xd2\x37\x66\xf0\x99\xde\x42\x16\x0f\xc3\x24\xcc\xc7\x87\x3c\xa4\x50\x43\x0d\xe7\x43\xde\x38\x43\x61\xb0\xfd\xc4\x3f\xf1\x34\xd0\x26\x89\xcc\xf6\xd3\x63\x6f\x24\x8e\x83\xaf\x98\x07\x13\xf1\xe2\x63\x8d\x00\x86\x92\xa0\x37\xf5\xcf\xf7\x2d\xfd\x4b\x51\x32\xa6\x48\x63\x45\x9b\xee\x70\xed\xb0\x91\x2f\x17\x65\x8c\x48\x1a\xc1\x74\xb8\x57\xeb\xba\xd0\x32\x61\x37\x62\xb6\x87\xd6\xb1\x8e\x2f\xfc\x9b\xc2\x78\xad\xb1\xe3\x97\x5c\xa1\x50\x41\x69\x15\x5d\x8c\x82\xbe\xa6\x9f\x02\x1a\xd8\xe6\x72\x8a\xab\x2b\xd1\xaf\xa0\x0f\x19\x94\xb4\x66\x09\xcf\xf7\xff\x52\x7a\x4c\xbf\xb1\x8c\xd3\xdf\xa0\x4a\xbc\x45\x0b\x9d\x5f\x3a\x6a\x85\x00\x82\xf9\xbc\xee\x5e\x5d\x18\x52\xa8\xd8\xbe\x6f\xdb\x9b\xf4\x67\x7a\x48\xef\x7f\xa2\x42\xf3\x7b\x50\x63\x65\x3e\x73\x1a\x25\x1d\xac\xd8\xa9\xce\xb8\x30\xcc\xfe\x4d\x5f\x51\x01\xef\xbf\x93\x99\xee\x7d\xc1\x68\x1b\x1b\xc9\x6e\x3e\xac\x5a\x14\xd6\x86\xd2\xa1\x50\x2d\x84\x45\x4a\x11\xb2\x0c\xc4\xa4\xfe\x0c\x16\xc2\x3e\xde\x2a\xca\x68\x21\x4c\xb3\x17\x12\x36\x48\xfa\xb0\x96\xac\xe9\x2c\xf6\x93\xe0\x2a\x6a\xb7\x8e\x74\x67\x39\xff\x91\xb9\xcf\x51\x2d\x04\x1e\xc5\x20\x2f\x42\x3e\x58\xef\xb0\x74\x70\x6d\x24\xb1\x6d\xc2\x40\xee\x75\xdf\xdc\xfb\xd0\x8e\xaa\x0f\x21\xc7\x9a\x80\x21\xeb\x83\x0a\x9c\x9b\x65\xd3\x4b\x90\x5c\x86\xf6\x43\x65\xbe\x98\x7f\x8f\x4b\x09\x78\x76\x00\xd1\x7b\x8c\x8a\xcd\xbd\x88\x8d\xff\xc2\xea\x76\xa5\xb4\x6f\xd8\x9e\xa5\xf9\x85\x69\x24\x04\x44\x01\x8f\x27\x90\x8a\x0b\xa0\xc6\xec\xef\xc2\x4c\x18\x29\xbd\xd2\x7f\xa3\xfd\x59\x92\xa5\x9e\x0b\xa5\x64\x97\x4f\x7a\xed\xbf\xed\xba\x7a\x7f\x5d\x7e\x5b\x5d\xd1\x2b\x19\x04\x77\x4c\x22\x33\xc9\x82\xea\xa4\xd8\x8a\x7b\x44\x3c\x30\x7f\x61\xed\xfe\xbe\xdd\xb5\xd0\x95\x15\x0a\xa0\xbe\x9c\xcd\xab\xba\xb2\xec\xeb\xbd\x0f\x9a\x80\xc8\x62\x31\xaf\x92\x4e\xbe\xbd\x64\xdf\x57\xf9\xe3\x1c\x29\x60\xfc\x3e\x49\xba\x59\xb2\xbb\x58\x6f\xb8\x0f\xfc\xf3\xab\x96\x57\x1f\x94\x63\xc7\x37\x53\xcb\x05\x96\xea\x2c\x86\x7d\x9e\x1e\x4e\x2c\xab\x2d\x6d\x4f\x61\xf1\x94\xa9\x5d\x44\xe5\xb1\xb2\x5b\x4a\xb8\x5d\x43\x29\x2e\xe9\xf0\x75\xaa\xf7\xea\xeb\x8f\x61\x93\xc2\x95\xec\xc5\x25\xb4\xfa\x99\x8a\x3c\x05\xc9\x68\xfd\xc9\xb7\xde\x6c\x84\x0d\x0c\x16\xc5\x8a\xc7\x8f\xd3\x9c\x09\xb7\xe2\x3f\xa9\x7d\xa6\x9e\xe0\x1e\x99\xfb\x84\xd8\xf6\x78\x96\xd7\x1d\xf8\xda\xef\xf6\x26\x7c\x50\xf0\xa6\x85\x72\x7f\x1e\x5d\x7d\x32\xa3\x18\x9b\x76\xc3\x3e\xec\xad\xbb\x7b\x94\xb2\x79\x61\x7b\xb0\x98\xbc\x90\xdc\x41\xb4\x10\x12\xa9\x18\xe0\x68\x85\xe9\xc1\x45\xc6\xd1\xe1\xe2\x58\x75\xb3\xd6\xb0\xd3\x47\x54\x6e\x1c\xe2\x8d\x17\x54\xf6\x5c\x99\x4d\xe4\x75\x73\x04\x07\x8f\x18\xb3\x41\x5c\xf9\xf1\x0d\xb9\x49\x35\x5f\xe5\xbb\x10\x1f\x81\xa0\xdf\x82\xfc\xc3\xf5\x50\xfd\x85\x6e\x50\x51\xda\xd8\x58\xb0\x7d\xc7\xd5\x0e\xf5\xe1\xbb\xa3\x15\x24\x1b\xce\x33\x94\x40\x3b\x64\x4f\x29\x8b\x68\xa5\xab\x34\x1c\xc5\xb5\x34\x21\x9a\x03\xb0\x1d\xfd\xda\x8a\xfd\xfd\x4c\x0f\x69\xc3\xf5\x4a\x7a\x1b\x05\x49\x31\x63\xf9\xc4\xd7\x1c\x68\xa4\x9c\xb4\xcb\xac\xbb\x3d\x45\x29\x2e\x39\x0f\xe4\xd3\xca\x5a\xda\xe4\xdd\x1d\xa3\x5a\xc7\x23\xc0\xcd\x5e\xe7\x41\xf3\x89\xb6\xb1\xd8\xe6\x76\x77\x60\xa2\x43\xf7\xb7\xa0\xf4\x79\x98\xd4\x7b\x98\x19\xaa\xbf\x68\xb5\x29\x6e\x9b\xdc\x13\xb4\x06\xee\xe4\x47\x1f\x8e\x09\xce\x75\x9f\x37\x34\x87\x8c\x10\xde\xf5\x0c\x5a\xd2\x7e\xd4\xee\x47\x9b\xb0\x81\x0d\x8a\xc5\xa8\x19\xf4\xe2\x33\x42\xfd\x06\x8d\x88\x19\xe5\x71\x28\x71\xe8\x79\xaf\xd7\x31\x01\x7c\x06\xe2\x98\x83\x7f\x89\x43\x39\x2f\xff\x12\xe7\x2e\xbc\x0c\x70\x86\x33\xeb\x7e\x10\x83\x77\x14\x79\x3b\x72\xd5\x02\x06\x66\xb3\xab\xc8\x68\xaa\xaa\x79\xce\xff\xb6\x51\xfb\xad\x31\x60\xfc\x16\xa3\x15\xd2\xc1\x56\x27\xcf\x55\xcc\xe1\xf3\xe6\xba\xcc\x3f\x55\x0e\x7f\xa3\x28\x4d\x8e\xc7\x09\x4b\x9a\xec\x82\x86\x03\xce\x83\xbd\x08\x38\x59\x75\x7e\x96\x4d\x7e\x64\x2f\x95\x4b\x1a\x1b\xb7\x8e\x3d\xa5\xcc\x00\xc0\xbd\x42\x57\xab\x1e\xf6\x79\x91\xc9\xb2\x7b\xbe\xdb\x59\x95\x18\x49\xbb\x48\x86\xd7\xbd\x54\x1c\xc8\x60\x4f\x41\xce\xfe\xd7\x95\x58\x74\x73\x49\x5d\xb9\x65\xee\x5b\x1f\x15\x43\x98\xc2\x65\x3a\x62\x56\xee\x58\x96\xa2\x8d\x1c\x5e\xd1\xc3\x96\xd2\x59\x0b\x31\xa2\x2e\x1c\xc8\xbb\x7e\x8a\x3d\x51\xda\x09\x15\xa1\x59\x62\xf0\xf1\x63\x6c\x7e\xff\x99\x1d\xb9\xaf\x34\xda\x17\xe0\xc9\x49\xff\xae\xd4\x4b\x11\x8f\x1d\x86\xbd\x76\x47\x0e\x4f\xd3\x87\xfa\x15\xe0\x72\x73\x14\xf9\x51\x1b\xfc\x4e\xfc\x45\x5b\x6d\xc1\x29\x12\xcc\x7d\x81\x76\x3d\x50\xb3\x44\x41\x50\x3f\xbb\x9b\xe1\xc2\xac\x89\x8f\xc3\x61\x48\x78\xa8\x79\x61\x80\x43\x31\xaa\x22\xd9\x78\x91\xf8\x9d\x4e\xa4\x8d\xb7\x52\xc8\xdb\x8d\xd6\xcf\x99\x93\x9e\x19\xdc\x67\x25\x62\xa1\x4e\xc2\x15\x70\xe3\x9e\x95\x1f\x7c\x01\x8e\xe9\x0a\xe4\xa1\x14\x19\xf3\x75\x34\xda\x34\x14\xaf\xcd\xe0\xf3\x71\xa3\x6d\xbd\x4f\x5c\xea\x4d\x8e\x1f\xa5\x09\x78\x9e\xd4\x7b\xf0\x44\x18\xde\x16\x4d\x60\xf5\x23\xe4\xc2\x0d\xfe\x80\x4e\x1a\x52\x64\x51\xcf\x12\x67\xd5\xbd\x77\x68\x3f\xc8\x24\x06\xc5\x3e\xe1\x81\x5b\x9c\x4e\x11\xcb\x97\xe2\x98\xa0\x18\x65\x8b\xc1\x51\xd1\x25\xa0\xd9\xce\x62\xbf\xfb\x77\xdb\x4b\x8f\x51\x15\xfe\x81\x1a\x57\x6e\x65\x4a\x0e\x37\xc8\x16\x4b\x40\x1f\xff\x70\xa9\xd5\x2c\x57\x37\x8a\x68\xdf\x91\xf6\xf6\xb1\xa4\x29\x91\x17\xf1\xd6\x27\x4e\xcf\x90\x99\xcf\xc6\x6a\x45\x1b\x4f\xaa\xfe\x27\x5f\x5a\xfa\xf6\x0c\x91\xe5\x84\xac\x98\xc0\x87\x85\xc1\x6f\x94\x38\x1b\xcc\x6a\x42\xa1\x84\x0c\xd9\x6b\x18\xa8\x9d\x46\xb1\xc4\x81\xb7\xdb\x6d\x76\x81\xba\x15\xd5\x08\xad\x99\x7a\x2d\xb6\xac\x75\xbb\xfc\x0d\xac\x4c\x62\xb8\x4c\xf2\x09\x00\x34\xc4\x7e\xab\x2b\x7e\x3d\x46\xd4\xc5\x9e\xff\x2a\xd2\x68\x17\xdb\x0d\x19\xde\x44\x75\x94\x93\xce\xd4\x55\xa0\x70\x41\x63\xa8\x3d\x45\xfd\xe4\x78\x29\xe1\xf7\x2f\xe2\x4f\xf3\xf3\xd4\x56\x3f\x29\x56\xc2\x62\x89\x8c\x95\x2b\x35\xe1\xca\x97\x9f\x86\xea\x29\x30\xca\xcd\x2c\x9a\x18\xd0\xd1\xcb\xb7\x2d\x3e\x53\x3f\x53\xd1\xfd\x55\xe0\xb9\x34\x4d\x2c\x62\xfc\xac\x8a\x7d\xfb\x31\xbf\xd8\x52\xa5\x17\x99\x8b\xf1\x75\xc2\xb8\xd5\xf3\x56\x14\x32\xf6\xe9\x08\x59\xfb\x8c\x19\x82\x03\xcb\x00\x3a\x27\xfb\x9a\x42\xd1\x3e\x95\x14\x21\xb6\x9d\x57\x72\xd0\x86\xb1\x16\xf5\xaa\x56\xd4\xfa\xf8\xa1\x88\xa7\x93\x21\x98\x53\x8a\xc5\xc9\xbc\xd1\xd6\xb4\xd1\x16\xab\xd1\x16\xb3\xd1\x16\x3b\x8b\x07\x69\x84\x24\x04\x5f\xb1\x5b\x83\x84\x23\x99\xb2\x8e\x11\x1c\x46\x08\x58\x41\xd8\x25\x8a\x2c\x8a\xeb\x4c\x76\xea\x2c\x8a\x43\x2c\x76\xc4\xa6\xa4\x25\x8a\x62\xa5\xe1\xa2\xc2\x90\xa4\xbe\x65\x14\xd2\x58\x4d\xaa\x27\x97\x92\xa4\x48\x3d\xf5\x63\xc4\x97\x76\x78\x98\x17\x08\x21\xfc\x5e\x46\xd3\xfc\x73\xe0\xa8\x06\x65\x25\x17\x03\x0c\xa4\x4a\x7f\x4c\xd4\xbe\x82\xcb\x19\x24\x4c\x72\xc9\xd8\xda\xd3\xd1\xb3\x0f\x93\x79\xb1\x27\xe2\xf7\x4b\x76\x32\x0a\x1d\xfe\x06\x62\x60\x5a\x61\xf6\xa3\x86\xc2\x45\xf5\x0b\x15\x56\xc7\x80\x16\xa1\x9d\x66\x80\xd6\xae\x4c\x01\x6a\x27\xd2\xef\x5e\x00\x91\x1a\x00\xa3\x86\xc4\x62\xf9\xcb\x20\x7a\x03\x3a\x72\xf5\x13\x46\xc4\xaa\xef\x6b\x06\xe2\xea\x5d\x1d\x35\x0b\x35\xdd\x69\x2c\xc1\xaf\x9d\xac\x31\x6d\x3f\xa9\x80\xdb\x6c\xe5\x39\x38\x6d\xb1\x9f\x73\x99\xa0\xd3\x30\x1b\x73\xe1\x42\x24\x6a\x2a\xa9\x6c\xc7\x67\x0f\x50\x08\xc0\x0e\xc6\xc4\x84\x86\x00\x43\x88\x09\xc1\x20\xc6\xf2\xe9\x7f\xc3\xf7\x14\x45\x59\xbc\x5f\x64\xba\xfb\xab\x5a\x09\x79\x03\xee\xa2\x25\x96\xfe\x0f\x14\x07\xeb\xf8\xff\xeb\x83\x89\xe2\x05\x8a\x83\x43\x23\x76\xd3\x42\x78\xdb\x14\x00\xc0\x57\x09\x00\xfc\x2b\xac\xbb\x66\x03\x93\x30\x73\x66\x40\x9b\x2f\x2a\xf6\x52\x42\x13\x93\x21\x93\x24\xb7\xc8\x4b\x74\x47\xa2\x28\xdb\x0b\x1f\x4c\x14\xbf\xf1\x8b\x43\xd9\xef\xad\x47\xcc\x65\x70\xef\x08\x6f\x4a\xb2\xfa\x56\x61\x5b\x15\x00\xa0\xa1\x8b\xd4\x1b\x39\xe8\xae\x48\x88\x80\xae\x45\xcc\xec\xad\x94\x76\x5d\xb2\xb1\x15\xd3\x85\xa1\x1d\x3e\x1b\xec\x3a\x58\x98\x69\x73\x49\xfd\xdd\x97\x0e\xe6\xfe\xe3\xb9\xf1\xd2\x07\x16\x61\x59\xa8\x25\xab\xfb\xc6\x05\x01\xf4\x15\xa0\x6d\xb4\xa0\x04\xde\x72\x9c\xd5\xa6\x89\x54\xbb\x39\xa8\xdd\xca\x85\xac\xb9\xa8\x4e\xc2\x61\x93\xa4\x7a\x9d\x60\x73\xa7\x81\x21\xa0\xd9\xb0\x75\xeb\xbd\xa9\xc2\xf7\x5f\x39\x90\xfb\x69\x3a\x6c\x2e\x40\x85\xa6\xc4\x4b\x55\xe2\x55\x00\x00\xe8\x2b\x40\x47\x68\x90\x4d\xc4\xaf\x05\xea\x14\x00\x00\x6c\x86\xc0\x4e\x47\xcc\xec\x8d\x41\xed\x1a\xc5\x90\x8d\x1a\x24\x21\xdb\x38\xda\xeb\x24\x9b\x3b\x01\xaa\x64\xa7\xaf\x0e\x97\x5f\x7b\xe9\x60\xf6\x3b\x57\x87\xca\x17\x6d\xcc\x32\x50\x13\xfe\x3c\xd4\x5c\x9f\x7c\x3c\xd0\xae\x0d\x8a\xdb\x31\x0a\x00\x50\x97\x48\xc1\x23\xd8\x14\xe2\x62\xf9\x4d\xc2\x8c\xb9\xa4\xbe\x74\x2b\xa9\x5f\x25\x0c\xe9\x11\x83\x24\x45\x1b\x87\xfa\x8a\xd0\x1c\xba\x40\x8b\xb7\x92\xfa\x99\x57\xf7\xe7\xbe\xf3\xde\x54\xe1\x6d\x55\xa2\xab\x50\x11\xfa\x2c\xd4\x14\xa0\x08\xf5\x5c\x3d\x2e\xce\xce\xdd\x34\xfa\x03\xec\x30\x05\x70\xe0\xc9\x26\xf2\x32\x51\x7b\x67\x02\x0b\x3c\x29\x76\x65\x89\x96\x6f\x0c\x94\x67\x96\x63\xc6\x0d\x81\x21\x33\x6c\xe2\xb8\x60\x63\xa5\xaf\x08\xf5\x30\x08\x55\x17\x92\xfa\x87\x6f\x4d\xe7\x7f\xf0\xd6\x74\xfe\xd5\x74\xc4\x9a\x07\x04\x59\x80\x6a\x73\xb8\x7a\xbc\x54\x25\x9b\x56\xbb\x77\x2b\xb1\xa3\x05\xc2\xa7\x00\x9b\x5f\x8a\x9f\x0c\x95\x1d\x64\x67\x17\xd9\x69\x51\x00\x88\x60\x86\xa2\x93\x39\x79\xf2\x9e\xc5\xc8\x89\xa9\xac\x7c\x3c\x6c\x92\x14\x62\x7d\x8f\x91\x2e\xd0\xe2\x72\xcc\xb8\x72\x71\x44\x3d\x7d\x75\x58\xbd\x66\x10\xe6\x14\x24\x77\x46\x79\x3f\x9a\x12\xde\xed\xe9\x8a\x05\xda\x8d\xc2\x0f\xb0\xc3\x15\x00\xc0\x57\x09\xf8\x30\x65\x6f\x38\x30\xaf\x08\x61\xe0\x14\x02\x33\x14\x19\x2b\x48\xe3\x47\x97\xc3\xf7\xec\xcd\x28\xf7\xc4\x35\x32\xba\x43\x36\xd2\xb6\x0c\x0c\x01\x2d\x8b\x76\x76\x31\x6e\x5c\xba\x38\x52\x3a\x73\x73\x40\x9b\x31\x09\x73\xd8\x97\xbd\x42\xef\x8c\xf6\x7e\x19\x73\xae\x78\xa7\xdd\x2a\xfc\x00\xbb\x40\x01\x1c\x34\x98\x0d\x1c\x45\x70\xa2\x25\x9d\xa4\xef\x10\x54\x94\xc0\x51\x04\xe7\x38\x9c\x52\x85\xc1\x23\xab\xe1\xbb\xa6\xd3\xca\xb1\x41\x55\xdc\x2b\x59\x38\x72\x3b\x9b\x47\x16\x66\x7a\x5e\xb1\x96\x66\x53\xfa\xf9\xcb\xc3\xea\x85\xa5\xb8\xbe\x48\x51\x55\xc8\x1d\xe1\xe7\x7f\x0e\x12\x7c\xaf\xf0\xef\x4a\xb3\x87\xc7\xae\x7a\xe9\x01\xb3\x01\xaf\x08\x4e\xe8\xb0\x43\xfb\xe1\x28\x02\xaf\x0c\x4e\x8d\xb1\x90\x64\xe1\xe8\x54\x4e\x9e\x3c\xb8\x16\x3a\x3a\x9e\x97\x0e\xc7\x74\x61\x58\xb4\x6f\x8f\xbd\x04\x1b\x31\x4b\x95\x68\x66\x25\x66\x5c\xbf\x99\xd2\x2e\xde\x1c\x2c\xdf\x2c\xc8\x76\x16\x6a\x8c\x6c\x4e\x25\x1f\x95\x3b\x76\x84\xbe\x25\xb2\x80\xdd\x2e\xfc\x00\xbb\x4c\x01\x1c\x04\xcc\x06\x7e\x8a\xc0\xc7\xcf\xf3\xca\xe0\x28\x84\xf3\x9d\x12\xd3\x49\x62\x2a\xab\x4c\xed\xcd\xc8\x07\x47\x0b\xd2\xfe\xa8\x4e\x86\x76\x9b\x07\xc9\xc2\xcc\x28\x4b\x34\xbb\x16\x36\x67\xe7\x92\xda\xb5\xd9\x94\x76\x73\x3d\x62\xae\x53\xe4\x62\x5f\xf3\x6b\x8e\xe0\x1b\x50\x2f\xf8\x7e\x51\xad\xb7\x85\xf0\x03\xec\xa2\x97\xeb\x85\x47\x09\x00\x9a\x24\x86\x83\x7b\x56\xe0\x15\x42\xf1\x34\x39\xaa\x93\xf8\x78\x5e\x1e\x9d\xc8\x4b\x7b\x47\x0a\xd2\x9e\x84\x26\x8c\x29\x26\x8e\x11\x8a\xa4\x9d\xa4\x10\x36\x62\x96\x21\x30\xb5\x28\xdb\x6b\x6b\x11\xe3\xd6\x62\xdc\x98\x9d\x4f\xe8\xf3\x99\xb0\x99\xa1\xc8\x65\xc6\xf0\xb4\x83\xfc\x31\x3f\xda\x37\x1b\xf1\x6f\x9b\x51\x9f\xc7\x8e\x79\x99\x9d\xa2\x81\x59\xe4\xa5\x06\xf1\xce\x0a\xbc\x42\xf0\x8a\xc1\xff\x4e\x12\x28\x52\x52\xaa\x90\x1a\x2e\x4a\xc3\xc3\x45\x71\x6c\x50\x15\xc7\x62\xba\x30\xa4\x98\x38\x2e\xda\x48\x21\x14\x89\x5b\xa1\x14\x14\x31\xdb\x22\x4c\xd7\x05\x56\x2c\x49\x76\x26\x13\x32\x97\x56\xa3\xe6\xe2\x4a\xd4\x58\x5e\x8f\x98\xe9\xb2\x48\x4b\x50\x4f\x35\xa8\x71\x9f\x1a\xd4\xd3\x10\x7a\xa9\x08\xef\x18\xc1\x77\xb0\xeb\x15\xc0\x41\x0b\x8a\xe0\x37\x2b\x38\xeb\x05\xaf\x52\xf0\xdf\x49\xdc\xdf\x8a\x98\x81\x14\x31\x48\x24\xae\x09\xf1\x64\x59\x48\xa6\x54\x71\x30\xae\x93\x54\xd8\x20\x09\xc5\xc4\x11\xc9\x46\x11\xd1\xc6\x32\x66\x20\x60\x86\x08\x66\x40\x10\x43\xa4\xda\xd1\x8c\xeb\x73\x54\x11\x2e\x06\x8c\x51\x54\xd9\xd1\xb6\x37\x04\xdd\x24\xac\xac\x13\xaa\xaa\x92\x9d\x2b\xca\x76\x36\xaf\x58\x99\x74\xd8\x4a\x67\x42\x56\xb6\x28\x5b\x45\x93\x30\x27\x13\xcb\xe1\xd8\x74\x9a\xee\xd3\x0c\x70\xd3\xbe\x38\xcd\x4b\xff\x52\x27\xf8\x00\xb7\xaf\xf0\x57\x5e\xc1\x6d\x04\x1f\xa6\x34\xbf\xc5\xb2\x33\x2b\x38\x6b\x05\x5e\x21\x24\x70\xcf\x12\x92\xcf\xef\x44\xee\xff\xaa\x39\xc1\x84\x22\x51\xa4\x48\x0a\x99\x58\x0e\x19\x24\x24\xdb\x58\x96\x2c\x24\xcb\x16\x96\x25\x0b\xcb\x84\x01\x21\x0c\x11\x4c\x11\x41\x00\x88\x22\x46\x19\x02\x6a\x23\x66\x19\x84\x19\x86\x40\x0d\x83\x30\x5d\x17\xa8\xae\x4a\x76\x59\x13\xa8\xa6\x0b\xd4\xb0\x30\x33\x36\xca\x8c\xf2\xc4\xb2\x5e\x82\x59\x03\xdc\x64\xb3\xde\xef\x78\x81\xf7\x1b\xed\xef\x38\xc1\x77\x70\x5b\x29\x80\x83\x16\x14\xc1\x8f\x4b\xc7\xab\x10\xde\x26\x79\x7e\xe7\x97\x18\xef\x4d\x84\xf7\x63\x84\x70\xee\xa9\xae\xae\x2e\xd4\x87\x7b\xf0\x8d\x17\x5e\xb3\xc5\xd6\x88\x78\x36\xb0\xfe\xee\x9d\x20\xf8\x0e\x6e\x4b\x05\x70\xd0\x02\x77\xa6\x77\x66\xf0\x32\x33\xf0\x9b\x6d\x42\x40\xe3\x15\xc8\x7b\x2e\x2f\xc7\x4f\xab\x0a\xe0\x17\xf9\xca\x0b\x32\x3f\x13\x04\x35\x3f\x81\x6f\x48\xf7\x78\x27\x09\xbe\x83\xdb\x5a\x01\x78\x34\x99\x15\x9a\x29\x44\x10\x7d\x09\x81\xc6\xb4\x27\xed\xcc\x00\x7e\x49\x40\xbe\x21\xe0\x50\x2f\xe0\x5e\x61\xf7\x8e\xf2\x7e\x26\xce\x1d\x2d\xf8\x0e\xee\x18\x05\x70\xd0\x64\x56\x08\x52\x08\x3f\xc2\x2a\xef\x71\x33\xf6\x38\xaf\xdb\xb6\x11\x6d\x78\xc3\x8c\x38\x9f\x63\xef\x08\xdf\x94\x96\xe5\x4e\x16\x7a\x1e\x77\x9c\x02\xf0\x68\xa2\x0c\xfc\x71\x10\x15\x22\x0e\xf8\xde\x7b\x0c\x3e\x9f\x00\xc1\x4a\xe0\xa7\x0c\x8d\x3e\x83\x1a\x7f\x0d\x00\xe8\x0b\xbe\x17\x77\xb4\x02\x38\x68\x81\xc3\x3e\x68\xa6\xf0\xfb\x2e\x68\xc4\x6f\xd4\xd7\x7e\x8a\xe0\xfd\xb9\x91\x80\x37\x64\xad\xee\x0b\x7d\x30\xfa\x0a\xe0\x83\x16\x14\xa2\x9d\x4f\xef\x71\x10\x58\x87\x9f\xde\x63\x00\xe8\x0b\x7d\xab\xe8\x2b\x40\x13\x34\x28\xea\x80\xda\xfc\xd9\xfb\xbb\x20\x01\x65\x6d\xfe\x0c\x00\x7d\x81\xef\x14\x7d\x05\xe8\x00\x2d\x56\x3a\xe9\xb4\x6f\x9b\x0a\x72\x5f\xd8\x7b\x87\xbe\x02\xf4\x18\xad\x96\x01\x6a\x86\xbe\x90\xf7\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x3d\xc5\xff\x0f\xa9\x40\x1f\x73\x75\xc7\xd3\x6b\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x37\x2d\x30\x33\x2d\x33\x31\x54\x30\x30\x3a\x34\x33\x3a\x32\x33\x2b\x30\x32\x3a\x30\x30\xc3\x2e\x30\xd9\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x37\x2d\x30\x33\x2d\x33\x31\x54\x30\x30\x3a\x34\x33\x3a\x32\x33\x2b\x30\x32\x3a\x30\x30\xb2\x73\x88\x65\x00\x00\x00\x57\x7a\x54\x58\x74\x52\x61\x77\x20\x70\x72\x6f\x66\x69\x6c\x65\x20\x74\x79\x70\x65\x20\x69\x70\x74\x63\x00\x00\x78\x9c\xe3\xf2\x0c\x08\x71\x56\x28\x28\xca\x4f\xcb\xcc\x49\xe5\x52\x00\x03\x23\x0b\x2e\x63\x0b\x13\x23\x13\x4b\x93\x14\x03\x13\x20\x44\x80\x34\xc3\x64\x03\x23\xb3\x54\x20\xcb\xd8\xd4\xc8\xc4\xcc\xc4\x1c\xc4\x07\xcb\x80\x48\xa0\x4a\x2e\x00\xea\x17\x11\x74\xf2\x42\x35\x95\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x85\x3c\x99\xda\x4a\x47\x00\x00") -func web_uiStaticAndroidChrome192x192PngBytes() ([]byte, error) { +func web_uiV1StaticAndroidChrome192x192PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticAndroidChrome192x192Png, - "web_ui/static/android-chrome-192x192.png", + _web_uiV1StaticAndroidChrome192x192Png, + "web_ui/v1/static/android-chrome-192x192.png", ) } -func web_uiStaticAndroidChrome192x192Png() (*asset, error) { - bytes, err := web_uiStaticAndroidChrome192x192PngBytes() +func web_uiV1StaticAndroidChrome192x192Png() (*asset, error) { + bytes, err := web_uiV1StaticAndroidChrome192x192PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/android-chrome-192x192.png", size: 18250, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/android-chrome-192x192.png", size: 18250, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticAndroidChrome512x512Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xba\xf7\x57\x13\xdf\xf7\xc6\x3b\xc1\x20\xa1\x08\xa1\x09\x0a\x52\xa4\x83\x74\xa5\x48\x49\x68\xd2\x7b\x97\x0e\x02\x22\xd2\xa4\xd7\x04\x08\x5d\x45\x69\x52\xa4\x4a\x15\x10\x90\x0e\x42\xa4\xaa\x14\xe1\x8d\x74\xe9\x4a\xe8\x84\x1e\x4a\xca\x5d\x7e\xbe\xf7\xfe\x11\x77\xcd\x9a\x35\xbf\xcc\xec\x39\x67\x9f\xd7\x7e\x9e\x73\x66\x4e\x92\x91\x81\xe6\x0d\xaa\xdb\x54\x00\x00\xdc\xd0\xd6\x52\x37\x01\x00\x32\xe0\xdf\x09\xb9\x0e\x00\xc0\x49\xc8\xe4\x25\x00\x00\x60\x77\x15\x7d\x15\x00\x68\x48\xa5\xc6\x3b\x91\x03\x00\xc0\xe5\xa2\x65\xa2\x0f\x00\x61\xfc\x00\x80\x44\x01\xc0\xbf\x5b\x90\x9b\x00\x10\x28\x01\x00\xdb\x8e\x00\xf0\x30\x1b\x00\x58\x7c\xdf\x77\x18\x2b\x02\x00\x70\xdd\x59\x57\x53\x1d\x20\xfd\x3b\x8a\xba\x2a\xd2\x01\x00\xa0\x08\xd0\xd6\xd7\xa0\x58\xbd\xc6\x09\x88\xb0\x54\x37\x0b\x48\x00\x00\x12\xd0\x56\x57\x31\x0b\x99\xdf\x25\xe0\xd2\x79\x2c\x0b\x56\x28\xa3\x96\xc3\xc5\x8a\xaf\x15\x6b\x6c\x3f\x49\xcb\xd1\xe3\xff\xa1\xf3\x19\xfc\x63\xc2\xce\xee\x41\x6d\x79\x85\x7b\x47\x75\x79\x85\xa7\x5b\x87\x7b\xde\xaf\x4e\x05\xcf\x16\x77\x17\xf7\xe0\x16\x77\xdc\x31\xe1\x86\xa5\x4b\x90\x7b\x70\x4b\x90\x9b\xc0\xf4\xae\x1b\x0e\xf3\x58\x6f\x34\xf3\x6e\x8a\x94\x50\xda\x13\x37\xa9\x66\xc8\x9d\x68\x64\xfc\x30\x6e\x89\x00\xc8\xf5\xae\xfa\x52\x40\xdf\xc2\xe1\xfd\x57\xd9\xa1\x64\xc5\x6f\x88\xec\xaf\x71\x53\xcb\xe2\x48\x38\x17\x14\x02\x26\x8b\xfe\xff\xc7\x85\x07\x7c\xfb\x8c\x12\x02\x8e\xe9\x3b\xc6\xe4\xf9\x28\x9f\xba\x9f\xbb\xc3\xae\x6e\x71\x9e\x3d\x04\x93\xf5\xfc\xc7\xc3\x04\x44\x3b\x82\x37\x13\xb8\x38\xaf\xab\x86\x42\x21\x83\xef\x1a\x16\x02\xc0\x31\x7e\x6b\x42\x71\x57\x95\x11\x8f\xe8\xf8\x36\xe3\x62\xb8\xa0\x2f\xc5\x3e\x7c\x6e\x87\x80\x5d\x46\x41\x71\x11\xad\xcb\x91\xf3\x85\x30\xd1\x45\x94\x0c\x22\x19\xed\x75\x37\xe3\x5a\xb4\x63\x1b\x84\x1c\xce\x25\xc7\xa5\x44\x15\x1e\xf0\x1d\x7b\xe7\x0c\x1b\x26\x9f\xd0\x07\x39\xb3\xef\x9e\xd9\x59\x3e\x7d\x41\xab\x2a\x09\x85\xbc\x86\x14\x03\x10\xf0\x9d\x4d\x95\xd9\x60\xc6\x95\x4d\x60\x8c\xee\xa8\xd3\xd8\x21\xf8\xd2\xba\x4e\x35\x87\xf3\x48\x1e\xd6\xef\x19\xa4\x20\x0b\x40\x75\xa2\xe1\x12\x10\x14\x19\x17\xf4\xfe\xe6\xdd\xdd\x4e\xeb\xd5\xca\x04\x6c\x71\x22\xf6\xf4\x52\x61\xb1\x7b\x66\xcb\x96\x70\x72\xf7\x3d\xdd\x51\x48\x36\x3a\x5a\x6c\xac\xaf\xdb\xfb\x2e\x13\x59\xf4\xca\x16\x3d\x15\x72\x65\xf6\x05\x10\xbd\xac\x5f\x49\xc1\x19\x3b\xd6\xd7\xbd\x7f\x1a\xee\x54\x37\xb7\x45\x7f\xb7\xfb\x2c\x91\xe1\xf3\x22\x38\xfc\xe0\x42\xa5\x9b\xe5\xf4\x01\xdc\x9d\xbc\xe4\xd7\x45\x0b\x77\x06\x59\xf4\x8a\x23\x84\x1c\xee\xfb\x7c\x93\xeb\xe0\x03\xca\x5d\x96\x9b\x93\xaf\xbf\x8f\x36\x62\xbc\x90\x31\xde\x68\x81\xff\xf3\xb6\x73\x89\x91\xba\x19\xcb\xb0\x24\x9b\x88\x64\xc2\xa6\x94\x86\x14\x26\x11\x1a\xcf\x3b\xa2\xf2\x4c\x91\x61\x64\x27\x35\x91\x27\x46\x5e\x2b\x9b\x67\x24\xda\x3f\x1e\xf9\x02\x9c\xc1\xf3\x93\x95\x6c\x08\x1a\xcc\xb6\xec\xc2\xe4\x37\xc3\xb7\x20\xf3\xc4\x6d\xf2\xc9\xb3\xc7\x0c\xfe\xb6\xbd\x55\xfa\x6d\x9e\x8c\x8f\x44\x93\xda\xe3\x47\x04\x07\xde\xab\x74\xd6\xe3\x38\x17\xa3\x96\xf6\x90\x62\x63\xc5\xc3\xc7\xfc\xaa\xb7\xa0\x90\x0e\x1e\x26\xa0\x47\x9d\x91\xfb\x24\x9c\xfe\x3c\x81\x79\xdf\x69\xcc\x86\x83\x99\x25\xbd\x54\x23\xa3\x54\xa3\xa9\x4d\xbf\xe9\x25\x77\x59\x7a\xd6\xfd\xb2\x36\x41\x6e\x53\x26\x01\x9a\x01\x3e\x7b\x04\x2f\x0d\x9f\x44\x82\x1c\x46\xf0\xf5\xad\x64\x17\xe0\x8e\x9f\x11\x80\xe4\x02\x68\xd8\x21\x40\x2f\x80\x34\x26\x9c\x76\x61\x5d\x96\x49\xd4\x46\x2c\x3f\x5f\x7e\x28\x7f\xf3\x09\x71\xe3\x2b\x20\x77\x0d\x2c\x46\x51\x2f\x4f\x96\x70\xcd\x8a\xc6\x2f\x96\x5b\x82\x75\xed\x41\xfc\x57\xc7\xec\x19\xdb\x91\x61\x31\x0c\x9f\x8d\x33\x9f\xa9\x73\x5c\x6e\xaf\x0e\xdf\xa8\xe8\xd4\x13\xb7\x5c\xa9\x46\x91\x64\x4f\x4b\x66\xcc\x2c\xc3\x07\x40\x94\x64\x38\xeb\x92\xd1\x0b\xc5\x73\xc0\xdd\xb1\xd1\x24\xc9\xf3\x2f\x49\x46\x10\x70\x4c\x10\x8a\x8c\x2b\x5b\x30\xac\xe9\x48\xc1\xfa\x64\x09\xd7\x7b\xef\x4c\x22\x7a\x29\x42\x4c\x52\x1d\xa2\x96\xed\xcb\xf5\x31\xb6\xec\xa5\xd0\x96\xb6\x69\xf2\x80\x57\x9a\x56\xce\x93\xc7\xc1\x5a\x16\x81\x87\x2f\x55\xff\x6b\x52\xff\xaf\xa9\x7f\xfc\xbe\x93\x60\x8a\xbc\x8e\x23\xad\x24\x60\x04\x45\xbe\x94\xd3\x3a\x9d\xd1\x00\x87\x92\x28\x28\x62\xce\x48\x63\x2b\x61\x97\x1a\xa6\x45\x2f\x80\xeb\x57\x43\x64\xeb\x00\x3b\xd2\x94\x76\x85\x8c\x2c\x8f\x5b\x42\x1e\x39\xb0\x43\xa5\x9a\xe3\x6c\x5f\x9a\xc8\xc2\xde\xeb\xdf\xd2\x1f\x44\x93\xe3\xf5\xce\xbc\xc3\x74\x72\x31\x42\xa3\xb8\x39\x66\x7f\x92\x26\x47\x9e\x06\x54\x96\x2d\x9d\x2c\x1f\x28\x59\xb1\x62\xfa\x68\xc5\x31\xb9\xd7\x49\x0d\xf2\x2f\xbb\xb7\x21\xe4\x70\x89\xb3\x13\xc7\xf5\x60\xc6\xf3\x7c\x70\xe4\x41\xbb\xc0\x66\x92\xea\xdb\xd2\x36\x2b\x9d\x59\x75\xdd\x5b\x26\x8a\x2e\x3a\x39\x2f\xb9\x45\x07\xbc\x3e\xd7\x74\x84\x68\xfb\xfd\xc7\xe0\xf4\xf4\xb5\x6f\xc6\x23\xf6\x00\x70\x11\xcf\x6b\x33\xf0\x0d\xd0\x58\x0f\xe3\x01\x64\xf0\xb8\x71\x93\xd2\x04\x63\xca\x2a\x48\xb1\xef\x0b\xbe\xa9\x66\xe4\x9a\xf8\x4e\x10\xd3\x49\x8b\xb1\x11\x5b\x55\xc8\xea\x6f\xf9\x48\xb5\xf8\x7d\x67\xff\x91\x4a\x70\xca\x45\xb6\x4d\x95\xd0\x64\x90\x44\xb0\x57\x52\xfb\x8d\x32\xa4\x4a\xa7\xc9\x78\x8a\x33\x30\xde\x59\x51\xf4\x2f\x73\xdf\x32\xfd\xfe\x15\x55\x2c\x15\xa1\x8f\x2a\x9c\x0c\xb0\x0a\x6c\x28\x95\xb7\x7a\xad\xa0\xae\xcf\x66\x12\xf1\x91\xdf\xd5\x24\xeb\x7e\x9e\xc4\x8f\xcf\xfb\x6b\xcc\x03\x03\xba\x52\x6a\xc3\xa8\x62\xeb\x11\xee\x24\xb9\x64\x6e\x40\x88\x6b\x25\x76\x23\x98\x7d\xe5\x15\x62\x3b\x4b\x99\x6c\x08\xc4\x6e\x4f\x27\xce\x64\x3b\x22\xfb\xbc\xd7\x42\x34\xa9\xd6\xc2\xfc\xb2\xad\xf2\xbf\xd3\x34\x0c\x86\xba\xc3\xe6\x63\xe5\xe4\xfd\x27\xcf\xd8\xa4\xfc\x55\x33\x62\x24\xc8\xb9\x87\x4c\x01\xe8\x27\x26\x70\xe1\x35\xa4\xd1\x75\xf0\xb7\x94\x3f\x2d\xdc\x94\x83\xd9\x62\xaa\x68\x16\x11\xf4\x68\x2e\x9d\xbc\xd6\x08\xff\x8b\x5e\xfe\x67\x13\xbc\x0d\xcf\xf5\x0d\x2a\xf4\x3d\xf8\xbd\xb4\x2a\xd6\x64\x94\x2b\xda\xcf\x6b\xd4\x0f\x29\x7b\xb9\x53\xe4\x92\xb9\x69\x9f\x25\x32\x8b\x2b\x5b\xe6\x53\xc6\xdf\xb6\xa5\x5d\x78\x02\xd1\x11\xc3\xd8\xd0\xae\x56\x67\xf5\x73\x64\x3d\xc0\x79\x1b\xfb\xcf\x1c\x49\xca\x5a\x8e\x2f\xbe\xb0\x2e\x7b\xa4\xed\x2f\x5a\xa8\x0a\x2d\x63\x3d\x49\x7b\xb3\x09\x4b\x5d\xf1\x2f\x86\x40\x5e\x93\x3b\x7f\x60\x78\xa9\xc8\x1d\x83\x7e\x57\xda\x55\x19\x12\x99\x12\x48\x07\xf0\x62\xa0\xae\xe5\x77\xbf\x49\xc5\x67\x8c\xb0\x9a\xc8\xb8\xea\x50\x53\xa6\xbc\xff\xef\x4e\x84\x41\xd9\x79\x86\xfa\x7f\x54\x18\xc1\x58\xb9\xa7\x95\xc4\x60\x22\xc9\x66\x1c\x96\xab\xda\x5a\xf0\xf2\xfb\x8d\x64\xa7\x6f\xdc\xbb\x6f\xf9\x0e\x13\xcc\xe3\x96\x44\xaa\xf7\xff\x94\x3c\x6a\xa5\xee\x30\x9d\x4d\xe9\xcc\xec\xca\x76\x69\xcb\xee\x1c\xff\x04\x0d\x18\x12\xdf\xfc\xcb\x0d\x40\x87\x90\x2b\xd9\x5c\x32\x92\x3d\x5a\x2f\xe0\xc5\x9c\x99\xa1\xcb\xfc\xbb\x20\x24\x34\xfe\x7b\x80\xfe\xeb\xd1\x77\x99\x01\x2d\xfc\xa3\x06\x53\x7f\xd3\x29\x53\x6c\xc7\x6d\x23\x2c\xca\x37\x4b\xfb\xc7\xef\x62\x04\xe7\xbe\xb7\xb0\x14\xbe\xfd\x0f\xf9\xe0\x23\x03\x95\xd8\x6a\xb5\x8c\x13\x9d\x27\x55\xa7\xdd\xc4\xc2\x55\x78\x47\x67\x41\x8a\x42\xfb\x5e\xa9\x9d\xd8\xb3\x4f\xe4\x81\xab\xd8\x3b\x51\x71\x45\x36\xdf\x01\xb8\xe0\xb5\x18\x17\xd4\xec\x02\x98\x47\x8d\xa2\x18\xab\x84\xa3\x26\x09\x16\x1b\xaa\x72\x24\xed\x3b\xba\x56\x55\x96\x6f\x08\x0f\xe9\xb5\xf0\xd7\xf2\x8a\x6e\xe9\x8d\x0c\x8e\x7d\x14\x53\x16\x97\x0c\x60\x90\xce\x78\xc6\xbb\x41\x39\x78\xed\x27\xbd\x15\xd3\xa1\x5d\xc2\x41\x42\x79\xff\xfe\x34\x53\x58\x45\x69\x3b\x1d\xce\x79\x1f\xe3\x36\xb4\x64\x67\x68\xed\xfa\x18\x47\x7b\x9e\x19\x5d\x5f\xaf\x22\x8b\x45\x92\xe8\x01\xd4\x5d\xae\x6c\x1a\x14\x19\x17\xeb\x43\x8a\xfa\xb3\xce\x81\xc3\x24\x52\xf6\xa7\xa1\x06\xd3\x50\xaf\xa0\x72\x61\xf1\x32\xbd\x2d\xbd\x05\xfe\x0d\x73\x96\xfc\x77\x42\xca\x7c\x92\xf7\x53\xe5\x9e\xf6\xd9\x77\x16\xf9\x48\xc4\x87\x0c\x0c\x44\xf4\x71\xe3\xdf\x0a\x35\x86\x9b\xc7\x2d\x2d\xa6\xb4\xe3\x66\x7e\x4d\xcf\xf7\x09\x49\xfb\xe8\x8e\xc4\x07\x61\xe1\x66\x53\xd1\x46\xd7\xc1\x8c\xa9\x46\x00\x58\x6d\x15\xa9\x0a\xd3\x3b\x68\xb5\x3a\x37\x6a\x5d\xd2\x1e\x7c\x73\x72\xdc\x79\xd9\x1b\x61\xad\x94\x27\x59\xaa\xdb\x11\x5b\x98\x29\xf4\x50\xd4\xb8\x49\x5d\x4e\xa7\x27\x8a\xc6\x41\xa2\xc7\x17\x78\xe7\xd4\xbd\x01\x25\xce\xa6\xcd\xee\x25\xab\xfa\xdc\x0c\xc0\xed\x3f\x1e\x0c\x3b\xe7\xf2\xfc\x4b\xd3\x5e\x45\x13\xc2\x11\x63\xb0\x14\x6d\x9f\x06\x89\xbb\xcb\xc5\xaa\x80\x22\xe3\x92\x33\xe9\x80\x10\x2b\x47\x08\x82\x22\x0e\x64\x40\x9a\x14\xdf\x1e\xfe\x53\x77\x9b\xad\x59\xa1\x76\xce\x44\x59\xf6\x2b\x71\x21\xa6\x42\x3e\x1a\x51\x67\xda\x87\x89\x57\xf8\xb6\x3e\x41\x0c\x39\xcb\xb1\xb9\xae\x33\xee\x99\x54\xa7\xf5\xe4\xa2\xb8\xa5\xf4\x74\x57\xa7\x74\xf3\x1d\x35\x37\xfb\x25\x78\x85\xaf\x4a\xc5\x7b\x10\x89\x07\x80\xb8\xc2\x25\x38\x12\x5f\x19\xfb\xf2\x82\xc1\x24\x15\x5b\xbc\x53\x56\x37\x53\x6b\xd2\xe5\x6e\xd0\x73\x8f\xf6\x4a\x7b\x2d\xb6\x09\xd7\xc5\x1e\x16\xe6\xe4\x31\x68\x3c\x86\xcd\xee\xb4\xbf\x4b\x14\x12\x2b\xd9\xaf\x2b\x86\xb1\x69\xe9\xe7\x9c\x7c\x72\x79\x61\xbf\x40\x38\x59\x6a\xf2\xbb\x22\x36\x35\x68\x4a\x06\x3b\x3a\xd0\x1f\x84\x53\x84\x1d\xd2\x00\x10\x0d\xb8\xc4\xa3\x44\x7d\x13\x09\x89\xb0\xfa\x33\xd0\x7c\xfa\xc5\xdd\x38\x65\x27\xad\xee\x7a\xc6\x3c\xa5\xd6\x6a\x18\xcc\x55\x4b\x7c\x87\xb6\x9b\xd7\x34\x22\x57\xe2\x7e\xac\x7c\xbf\xca\xc2\x58\x4c\x6c\x0f\xeb\x9a\x2b\xcb\xf1\x0d\xdd\xb5\x56\x91\x8f\x57\x3f\x2c\x26\x2e\x4e\xce\x9e\xef\x11\xc3\xe6\x85\x55\xec\x40\x07\xaf\x1d\xcd\x55\x32\xa4\x00\xee\x54\x55\x7a\xe8\x4b\x5e\xe7\x3e\xa6\x93\xfc\x6b\x1d\x17\x0a\x1d\x38\x10\xbc\xa0\x5a\x30\x29\xc5\xa6\xa1\x31\x85\xef\x34\xb3\x54\xdb\xde\x5c\xb0\x9b\x0b\xd5\x5d\x54\x78\xff\xc5\xf5\x64\x31\xcc\x4e\x56\xbf\x37\xf3\x83\x30\xaf\x07\x2e\x51\x47\xeb\xb6\x7b\xda\x2a\xc1\x9e\xe3\xfb\xcc\x9b\x0f\x1c\x00\xb8\x20\x59\x0c\xbd\xc6\xf3\x82\x98\x6e\x3f\xa0\x87\x93\x79\xe6\x9d\xe3\xf2\x40\x5d\xfe\xe8\x96\xbf\xfb\x8b\xf9\xcc\xad\x5c\x7c\x2e\x66\x45\x84\x41\x43\x37\xfb\x43\xa9\xe0\x0c\x23\x0d\xf4\x27\xfd\x2c\xcd\x61\x5a\xec\x05\xa3\x9a\x53\xe1\x6e\xff\x5e\x2b\x76\xe4\xb6\x83\xe2\x50\x6e\xb8\x8c\x93\x0c\x20\x07\xcd\x87\xcf\xea\x32\x47\x1b\x81\xc1\x3c\xd1\x46\x00\xd8\x50\x1f\xb5\x82\x9d\xcc\x19\xc3\xae\xbd\x03\x90\x5a\x34\x3f\xa4\x34\xb6\x6d\x35\xb4\xf3\x7f\x4f\x8d\x89\x66\x64\xd4\xf1\x89\x6e\x79\x4a\x69\x6c\x40\x34\x4d\x4b\x84\x52\x1d\x21\x07\x8f\x8e\x8b\xdf\x0b\x35\x8a\x53\x75\x5c\x4d\xff\x11\x3a\xee\xeb\x94\x1e\x7c\x66\xec\x7f\x23\xb9\xfd\x46\x6d\x41\x74\xe5\x67\xd5\xb7\x02\x5c\xac\xda\xfd\xf1\xc2\x72\xf7\x95\x20\xc4\xca\x4f\x11\xa2\x7e\x84\x52\x8d\x93\xf4\x50\xaf\xfd\xe7\x06\x88\xd0\x0e\x7e\x84\xae\xff\x41\xca\xab\x27\xca\x37\xd4\xe7\x0a\x1c\xcf\x7d\x69\xe1\xf2\x6b\xcc\x79\x07\x14\xe6\x99\xdd\x9d\x39\x4d\xcb\xdd\x30\xaf\x85\x39\x9d\xf9\xb8\x64\x1d\xfd\xa7\x63\x2c\x9b\x18\x66\x00\x9a\x8c\x74\xfc\xfe\xcf\xa9\x1d\xff\xc1\x54\xda\x7d\xb3\xa7\xae\xcd\x6a\x74\xba\xf4\xbc\xea\x4b\x4b\x84\x70\x5d\xa4\xa8\x8b\xd6\xb2\xb9\x1d\x5e\xd1\x4d\x70\x71\xb3\x55\x7c\x5f\xbf\x47\xb0\x57\x8e\xec\xdb\x40\xc4\x70\xc6\xec\xb7\x70\xc9\x0d\x59\xba\x46\xcc\xb7\xea\x5b\xfe\x9e\xe2\x18\x8b\x48\x73\x70\x17\x86\x0a\x48\x1c\x47\x3a\x6a\x25\xea\x5b\x8c\x4b\xdf\x01\x23\xac\x6e\x39\x8c\x8f\x8a\x83\x90\xa5\x0a\x56\x36\xf7\xaa\x72\x4c\xc3\xe7\x73\x06\xd2\x8e\x1e\x0f\x65\x74\x57\x19\x45\xf4\x58\x76\x08\xec\x6b\xf7\xc8\x7d\x05\x21\x8d\xfb\x75\xb3\x46\x94\xc5\x37\xf7\xff\x81\x79\x45\x57\x31\x22\x60\xa3\xdd\xb9\x4b\x4d\x77\xce\x1c\x6d\xb0\x0a\x02\xfe\x49\x1d\x6b\xc3\x1c\x55\xc7\xc4\x87\x81\x65\xc9\x2a\x71\x57\x9d\x06\x46\xf2\x40\x8c\x99\x7d\xb8\x77\xcb\x5d\x34\x7d\xeb\x77\xd9\x27\xf1\x86\x49\xb3\xdd\x8e\x64\x2b\x34\x2a\x53\x59\xb3\xef\xf8\x46\x09\x53\x61\x43\x51\x38\xa7\xe9\x90\xfa\x82\xcf\x5d\x67\x7d\xc4\x25\xb2\x7f\xac\xd0\x38\xff\x61\x0e\xe0\x2d\x8d\x36\x94\x18\x5c\xd6\x3e\x18\x16\x32\x9d\x28\x9c\xfb\xcf\xd2\x80\xa9\x49\x64\x2e\xf7\x64\x34\x5b\xdf\xfe\x2d\xeb\x63\x30\xfd\x6f\x16\x3d\x2e\xf6\x68\x57\xc6\xa0\xba\x92\x89\xd6\x56\xc6\x33\x1f\x4e\xb7\x51\x71\x4e\xc3\x9c\xce\xf8\x91\xde\x23\x30\xea\x2e\x17\xab\xb0\x2a\x08\x8a\x9a\x28\xf6\x77\xb0\x7a\x84\xc8\x5b\x49\xfd\xad\x8e\x6e\x63\x56\xf0\x93\xaa\xb3\x1b\x9d\xfe\x8b\xdd\xa6\x25\x52\x39\x3d\xbd\xdd\xaf\x24\x20\x77\xdd\x17\x98\xe1\xc6\x1b\xeb\x17\x63\xf7\x06\xf3\x5b\xf7\xc7\x58\x67\xb0\x3f\x59\x7f\xcb\x38\xdd\xdc\x0d\xff\xbf\x38\xce\xd2\x37\x9b\x0e\x9a\x62\x1c\x82\xeb\xcf\xf0\x6e\xf8\xbf\x55\x4a\x7b\x53\x42\x6a\xc4\xac\xfd\x95\x6a\xd5\x03\xea\xd7\x22\xec\x5f\x03\x29\x1d\xaa\x85\x4f\xf2\x17\xdb\x8e\x77\x14\x1a\x9b\x0d\xff\x3d\xfe\x8a\x3d\x3a\x56\x90\xac\xc4\x19\x3e\x1e\xdc\x5f\x7e\x0f\x40\x7e\x8a\x81\xdd\x1b\x14\xbf\xa0\xb5\x2e\xb6\x8a\x74\xe2\x89\xda\x0e\x30\xb8\xda\xce\xe0\x46\x98\x06\x1f\xfc\x73\x39\x28\x2e\x1b\xbe\x22\x44\x66\xf8\x31\x30\xf5\x6b\x9d\xcf\xa8\x25\x2c\xea\xcd\x83\xe0\xc8\x64\xb8\x84\x61\x91\x4d\xb0\x4a\x31\x18\x52\x70\xbb\x41\x9e\xba\x64\x0d\xaf\xb2\xca\xd9\x74\xee\x0a\xbc\xa1\x54\x1b\x4a\xd9\x49\x32\x75\x7f\x71\x39\x53\x4e\xb3\x65\x93\x1b\xeb\x90\xc1\x9a\x7b\xcd\xcf\x87\x12\xec\xe5\x0b\x7c\xe3\xc6\xfb\xe9\x17\x73\xee\xf2\xee\x3a\x2c\x66\xd7\x45\x9e\x38\xce\x7f\x07\x7d\x55\x51\x24\x03\x54\xe9\xa1\x27\xa0\x06\x6d\x4e\x97\x87\x56\x04\x27\xc6\x8b\xc7\x60\x18\x20\x38\xe6\x33\xf8\xae\xe0\x77\x32\x5a\xd2\x55\x6b\xf9\x3f\x76\xbc\xaa\xda\xc1\x1f\xa7\x3a\x5d\x2e\xd6\x40\x39\xb2\xe1\x1e\xbc\xb6\x7e\x31\xa7\x37\xff\x5e\x21\xa2\xc3\x96\xf8\x94\xc7\x95\xa5\xb8\xf1\x2e\xf4\xb9\x20\x98\x8b\x09\xd4\x63\xca\xc5\x84\x74\x49\x36\x3c\xd7\x1c\xb8\xe8\x7a\x48\xc4\x18\x15\x0c\x16\xd7\x30\x4d\x56\xbd\x9b\x4e\x73\xc8\x13\x17\x21\x69\x05\x1f\x58\xde\x8e\x71\x78\x72\x4a\x0d\xa6\x40\xf1\xd4\xb3\xf7\x72\x64\x31\x5f\xfe\x2b\x17\x2c\x4c\xd1\x9a\x58\xf2\xd1\xe8\xda\x63\x66\x10\xa2\x7a\xf5\xf5\x05\x48\x95\x12\xca\x0e\x2e\x06\xd8\xa5\x3b\xda\xae\xfa\x1e\xe2\x42\x63\x1c\x0a\x3e\x6a\xff\x78\x37\x93\xf6\xce\xf0\x6f\xf3\xb2\xee\xec\xdf\xc0\xa4\x12\x57\x33\x52\x0e\x9c\x4b\x4e\xf1\x3d\xb7\x7d\x33\x25\xda\x66\x72\x91\xf4\xc2\xbd\xe5\xec\x78\x47\x37\x93\x42\x66\xf5\x66\x93\x08\x99\x31\xc7\xff\x10\xa4\x4d\x34\x02\x5e\x53\x2a\x75\x5c\xc5\xc6\x38\x90\x01\x7c\xde\xe9\xb3\xc7\x79\x87\xd2\x1b\xc1\x27\x9c\xe5\xfa\x5b\x57\x54\x03\xee\x46\x5d\x86\xe8\x36\x04\x38\x86\xd8\x23\xb4\xa6\xa1\xeb\xe6\xb0\x3b\x98\x8f\xee\x92\x74\x20\x9c\x12\x6e\xf9\x0f\xf3\x8f\xa0\x0e\xd4\x55\xa8\xee\xf4\x92\xa9\x52\x42\x03\xd4\x9e\xaf\x7c\x43\xd2\x5a\xa0\x97\x17\x97\x6f\x6e\xcc\xdc\xa9\x29\xfc\xb1\x45\xcd\xd2\xba\xb6\x9c\x5b\x35\x84\xae\xeb\xd8\x64\xc0\x08\x82\xd6\xba\xe9\x21\xd7\xaf\x53\x14\xd1\x1c\x77\xe5\x8e\x28\x2f\xe8\x59\x93\x86\xdd\x53\xa6\xe8\x66\x26\xa6\xed\x3f\x38\x73\xd5\x0c\xd4\x43\xa8\x21\xb4\x71\xb3\xdf\x05\xb2\x39\x16\x09\xf6\xef\x97\x15\x98\x7a\xdf\x7c\xb6\x35\x6b\x7c\x27\xbb\x56\x77\x2f\x73\x12\x36\x71\x07\x6f\xde\x6b\x74\x5d\x3d\xa6\x10\xee\xfb\xc4\x17\x78\xc7\xd0\x6d\x6d\xb2\x58\xb8\x9c\x27\x49\xdc\x60\x3b\x6e\xee\xbc\xc8\x36\x8d\x26\xd4\x23\xaf\xad\xee\xc5\xc5\xc9\xc2\xc7\x19\x55\x41\xd9\x46\x1d\x56\x04\xa7\x53\x3c\x15\xf0\xdd\xf4\x81\x7c\xa8\x87\xc8\xd9\x48\xbb\x1d\x81\xce\xb4\xfc\xe4\x5a\xef\xb8\xe2\x47\x92\x2d\x17\x94\x5d\xe9\x3d\x4f\xbd\x68\xd2\xe2\x6c\x92\x02\xe9\x70\x3a\xe2\x74\x06\x57\xf1\x2a\x50\xcd\xed\x7a\x53\x3c\x39\xde\x25\xf1\xff\x8b\x23\x41\x9b\xfd\x77\xe6\xe5\xb1\x08\x93\xe7\x46\xf0\x49\xd9\x46\x8b\x4b\xdd\x98\x79\x06\xcc\xd8\x0e\xff\x85\x75\x92\x07\xfa\x92\xe6\xbd\x73\x41\x9d\xf0\x49\xed\xd4\xcb\x53\xd8\x72\x76\x5d\x54\x47\x6e\xc3\x59\xd1\x14\xdb\xb8\xd0\x3d\x80\xeb\x0b\x28\x06\x70\xf6\x2f\xe4\x0a\xab\xbf\x8c\xad\x0d\x67\x06\x8c\x6e\xea\xea\x60\x26\xdc\xf0\x71\x8c\xe4\x7b\x74\xe9\x37\x2f\x68\x9d\x04\xa9\xd7\x96\xa0\x90\x47\xb4\xb4\xf0\x3b\xbd\x9c\x37\x03\x36\x7c\xb0\x86\x79\xa4\x0b\x4c\xc4\x69\x94\x71\x70\x67\x1c\x39\x4a\x16\x0e\x4d\xae\x5c\x2c\x80\x92\x05\x12\x8c\x19\x2f\x73\x9b\xf1\x40\x91\x07\xed\x6b\x74\x5b\x81\x1c\xee\xe8\xf1\x11\x9d\x65\xf2\xbc\xc3\xa0\xd7\x51\x87\xd6\x11\x23\xe4\x11\x0b\x18\x49\xa9\x69\xbd\xc8\xfd\xae\xc2\x73\x62\xae\x3d\xb9\xf7\x56\xbc\xaa\xd8\xfe\xec\xf8\xc7\x93\x6b\x01\x17\xec\x0e\x5d\x61\xcc\x76\x9d\x41\x5e\xb3\xba\x0c\x34\xf4\x0d\xff\xa5\xca\x53\x34\x5d\x2a\x91\xc3\x95\x32\x67\xdc\xc4\x7c\xfa\x1d\xec\x04\xab\xd0\x9c\xad\x87\x9e\xd9\x1f\x26\xeb\x67\xee\x42\x21\xb4\xe0\x60\xc9\xe5\x7b\x1e\xfb\x30\xc5\x6c\x19\xd2\x2f\x81\xe1\xf5\x3c\xd7\x4c\x8e\x59\x36\x2e\x45\xd0\x37\x96\x62\xe0\xa5\x24\xfd\x22\xbe\x24\x0d\xff\x04\x30\xfa\x23\x93\xd4\xd5\x56\xd0\xe6\xcb\x5f\x41\x92\xf0\x7a\xc3\xf9\x9d\xa9\xf0\x51\x2f\x23\x2f\xf4\xa5\x28\x7b\xb4\xc7\xf7\x93\x3f\x7b\xa8\x63\x4e\x98\xdd\x47\x3c\xa6\xa7\xa9\xe1\x06\x60\xac\x8f\x2a\x79\x44\x4b\xad\xb1\xc2\x7a\x97\x09\x29\x59\xaa\x5b\x52\x88\x8e\xab\x83\x4d\xd7\x89\x65\x4e\x56\xd5\x29\x6a\x77\x77\x5b\x99\x10\x93\xf6\xdf\x58\x4a\x24\x9c\xff\xaf\x15\x97\x64\xc1\x10\x07\x11\x8f\xfd\x31\xac\x21\x1b\xa9\x30\xf5\x9d\x48\xeb\x33\xaa\x5a\xd5\x90\x34\xc7\x49\x24\x77\x31\x98\x5d\x1a\xb5\x2e\xeb\x16\xe0\x77\x71\x75\x75\x26\xf2\x4a\xcd\x54\x30\xd9\x61\x4e\xab\x20\xfc\x54\xfb\xc8\x70\x63\x78\xc8\xe1\xa9\x58\x7b\x0c\x68\xd2\xa9\x4e\x83\x0b\x7a\x72\x43\x5d\x4e\xc7\x43\x2c\x94\xdf\x53\xcb\x1d\x33\x2c\xcc\x4a\x35\xcc\x1c\x28\x7b\x4f\xb6\x68\x1d\x8b\x4f\xbd\x2b\xbe\x12\xc2\xcd\x84\x94\xbc\xbb\x72\x44\x37\x78\x41\xf8\x44\x2c\x3f\x30\xcc\x31\xb9\x7c\x45\x91\xe3\xa3\xd8\x7a\x87\x34\xdc\x24\x44\x28\x18\x39\xb8\xcb\x70\x23\x12\x1c\x93\x04\x06\x09\x32\x0c\x0c\x53\xe6\x29\xb6\x5a\x59\x94\x07\x50\x60\xf7\x78\xf7\xa4\x06\x96\x52\x6d\x38\x40\xdb\xd3\xb0\x23\x25\x2a\xbe\x15\x56\xee\xdb\x5f\x5e\x82\x28\xb4\x4e\x3c\xdd\x2e\x18\xe3\x9b\xa4\xc3\xe7\x7b\x87\xab\x7f\x20\xee\x9b\x66\x92\xb4\x8a\xcf\x23\x3e\x7c\x72\xe0\x82\xea\x49\x40\x90\xdf\x99\xf2\xdf\x7f\xd4\x46\x04\xb9\x2a\xf9\x89\xd9\xa4\x93\xb0\xd8\x02\x31\xa2\x4c\x5d\xa7\x6b\x25\x96\x25\x68\xc5\xd0\x6a\xc5\xd8\x57\x0f\xca\x81\xa4\xaf\x48\x39\xf0\x19\xde\xa7\x00\xf4\xfd\xfd\xd6\x76\x52\x27\xc4\xbb\x9b\xb2\xf0\xd5\xcf\xf5\x89\x02\x54\x03\x15\xea\xb2\xb0\xe8\x95\x90\x68\x40\x48\xaa\x6f\x58\x28\x45\xb1\xd5\xca\x8c\x4f\xd7\x8d\x4d\xe3\xd5\xe3\x2f\x0f\xa0\xe3\x32\xda\x50\x78\x08\xe8\x35\xb5\x2a\x88\xd5\x49\xd5\x96\xa8\xd2\x83\x0d\xbe\xa8\x46\x71\x47\x56\x95\xfe\x8c\xd8\x59\x9a\x4c\xfd\xb9\xbb\xe5\x33\xe8\x75\x74\x7b\x55\xf0\xc6\xdd\x39\x53\x2e\xb9\x2c\x2e\x40\x95\x75\x68\x90\xfd\x68\x41\xd5\x3a\x3f\x45\x3e\x24\x5c\x64\x9d\x49\x10\xd3\x23\x8c\x6c\xf9\x0b\x2b\x06\xeb\x29\xab\x82\x58\x8d\xef\xae\x11\x8a\xf3\xf1\x00\x9c\x87\x66\x40\xcc\x6b\xc0\x10\xb1\x67\x7c\x29\x8e\x11\x1e\x72\x10\x14\x53\x4e\x55\x69\xc3\x0b\x30\xef\x2f\xd7\xdb\xec\xc0\xdb\x48\x2b\xaf\x78\x0e\x08\xe3\x19\x12\xbc\x4c\x03\xda\xe4\x4e\xaf\x9d\x85\x07\xdc\x1b\x1f\x5c\x2c\x44\x58\x57\x65\x3c\xe8\xf0\x1a\x1a\x71\x12\x34\xa3\x7c\xba\x64\xa3\x0a\xca\x7e\x8e\xb2\x09\xe9\xdf\xe4\x5e\x5a\xb6\x58\xaa\x68\x97\x3b\x1b\xfa\x33\xb9\x4e\xad\x70\x69\xc8\x78\xf3\x22\x6b\x13\x23\x5b\xe0\x5b\x49\xed\x4e\xfb\x55\xfe\xa0\x03\xa8\xa3\x8b\x75\xa2\xf1\x1b\x84\x1a\x61\xff\x1b\x58\x08\xa4\x6c\xbd\xb5\x96\xc1\xfd\x73\x1b\x7d\xed\x25\xf7\x4f\xf9\xfb\x51\x9c\xd7\xfe\x00\xec\x20\x60\x0d\x29\xa9\xc9\xea\xff\x35\xf1\x9a\x2a\xbb\x13\x0d\x92\x52\x4d\xdd\x59\x8b\xff\x34\xd6\x91\x16\x3c\x45\x7e\x7d\x90\x1d\xe2\x96\x58\x14\xff\x38\x1a\x28\x1e\xf4\x2f\xbe\xf7\x92\x3b\x31\xf6\x93\xfc\xf9\x54\x3a\xb9\x97\xb2\xab\xb6\x08\xa7\xf8\x3b\x92\x83\xec\xcd\x8f\x6c\xf5\x0e\x0c\x89\x3d\xef\x68\x20\xdc\xf6\xa0\x9e\x27\xdc\xca\xfd\x3c\xea\xa8\x03\x3a\xb6\xdf\xbf\x03\xae\xc6\xcc\x33\xaa\x2c\x39\x04\x1c\x1c\x84\x9e\x92\x54\x83\x0f\x53\xee\xfe\xe7\xd3\xe4\x01\x09\xf8\x49\xef\xce\x8e\x94\xee\x17\x1a\x58\x31\x19\xb1\x63\xf1\xff\x96\x96\xed\xa1\x53\xe3\x36\x54\xe3\xa6\x33\xd2\xc4\xe7\xa6\x80\xfa\x9d\xd5\x7f\x2f\x45\xe2\x77\x46\x8e\xab\xf6\x42\x90\xa4\xbf\x90\xb7\x30\x98\x7d\xbb\xce\x1c\xe1\x55\x89\x56\xae\x86\xe1\xbc\x79\x51\x72\x5c\x23\xf4\x64\x00\x8a\xad\x1b\xe8\xa5\x1f\x64\xa7\xef\x05\x74\x69\xb4\xa9\x06\x3e\xaf\x39\x5b\x17\x6b\x19\xdb\xd5\x6c\xd3\x4e\x9b\xb1\x78\xe6\xc6\x06\x4e\x0d\xe4\xea\x34\x94\xb7\x69\x65\xb2\x9a\xf0\xc6\x3f\x49\xe2\x9e\x33\x65\x80\x6a\x06\xae\xab\xee\x8a\xf0\xa4\xaa\x9d\xef\x7d\x33\xc5\x90\x56\x11\xa1\x51\x38\x12\x05\x70\xbd\x49\xe6\xc6\x11\x0e\x02\xed\x02\xf1\xb3\xae\x82\x58\xe9\x3b\x02\x4e\x3d\xfd\xaf\x18\xe3\x9b\xfc\x3b\x2f\x27\x52\x76\x92\x38\x47\x2d\xfe\xc2\xcc\x05\x95\x6f\x94\x7c\xf1\x29\x5d\x01\xde\x3b\x19\xdc\x22\xd3\x91\xac\xa0\xc5\xb4\xa8\x65\x7b\x7c\xaf\x79\x6c\xfe\xb4\xac\xbc\xfe\x23\xf7\xaf\xc7\xe6\xc5\xcd\x1f\x7b\x3f\x32\x67\x4e\xdf\x4b\x9a\xa3\x75\x7a\xad\xd6\xd6\x07\xad\xa8\xe7\xac\x70\x65\xdf\x93\xf5\x5e\xbd\xba\xf5\x3b\xdf\xb9\x9d\xb8\x21\xf8\x37\x54\x77\xf9\xfc\x51\xe8\xd3\x5f\x3b\xa8\x90\x63\xa2\x1a\x8a\x5b\xdb\x59\x2b\x4d\x28\x8d\x37\x7e\x3d\xfb\x55\x73\x29\x1f\x1f\xc3\xcd\xa4\x6f\x5e\x69\x89\xbf\xe5\x3e\x29\xf0\x7e\x92\x97\x2b\x37\x2a\xfd\xc1\x24\xc2\xa0\x26\x85\x81\x4b\x68\x82\xfd\x8a\x99\x5e\x52\xd1\x1c\x3e\xd3\x28\xe3\x5c\xce\xad\x56\x42\x12\x22\x07\xe2\x36\xed\x41\x31\x94\x1a\x82\x00\x0f\x5c\xfd\x73\xe1\xcc\x94\xb8\x20\xde\x7c\x74\xa0\x81\x65\x9a\x91\xa5\xe0\xf7\x6b\xc2\xaf\x97\xdc\x04\x9e\xde\xf1\x93\xfa\x19\xdf\x85\x43\x54\x97\x4d\xeb\x5f\x51\x5d\xe7\x72\x3e\xbf\x0f\xe5\xe3\x2f\xac\xcb\xca\x3e\x6f\x67\xe9\xde\x16\x65\x0e\x6c\xb5\x35\xaf\x74\xd2\x1e\x29\xc9\xee\xbc\xa1\xc2\xb1\xfb\xf3\xe6\xee\xe4\xcd\x88\x13\x18\x05\xc4\x63\x87\xea\xbf\xfd\xdf\x46\xab\x74\x40\x22\x56\x24\xff\xb4\xce\xf8\x58\xde\x0d\xe5\x92\xe0\xfb\xfc\x3b\x12\x24\xb8\x94\x02\xba\x5e\x2f\x01\x38\x82\xe1\xbc\xc9\x4f\x72\x9c\xad\xfd\x1b\xb2\xa4\xb4\x15\xbd\xb4\xaa\x9a\x84\xca\xd2\x6f\x6a\x7f\x13\x4d\x9b\xb4\x65\x37\xb5\xab\x09\x2d\x88\x75\x7b\xaa\xe2\x5b\xea\x0b\xf6\xd6\x28\x9b\x81\x59\x8b\x91\x2a\x14\x1a\x9b\xa5\x26\x71\x99\xe5\x25\x2c\x72\xa8\x75\xd8\x2a\x84\xdc\xf1\x7b\xc0\xf7\x13\xba\xc0\x0b\x77\x1a\xa1\xd3\xa1\xf4\x49\x91\x8a\xb3\x26\xce\x99\x0a\x5c\xb4\xf2\xee\x03\x76\xcd\x90\x48\xe5\xce\x1d\xa8\xf7\xef\xc0\xea\x6e\x13\x63\x8f\x86\xca\xce\xb8\xae\xec\x74\xf1\x4d\xef\x86\x9a\x89\x64\x21\xd3\x5f\xfc\x0b\xf1\x91\xdc\x9c\xec\x3f\x19\x22\x14\x13\x19\xa0\x32\x98\x07\x52\xd5\x6c\xf3\x5d\x80\x0a\xdf\x57\x71\xb0\x44\x53\x42\x51\x2f\x6d\x2f\xa8\x5e\x4d\xce\x0f\xc2\xf7\x20\x6e\xad\x2b\xfb\x8f\xd0\x27\xf5\xf2\xca\x62\x26\xad\xa4\x97\xdc\x65\xbf\xe2\x33\x7e\x66\x4f\x98\x4d\xf0\x7a\x2c\x72\x53\x0e\x0c\x74\x2c\x18\x51\xa1\xde\x39\xd6\xfb\x02\x16\xe9\x5b\xe9\x79\xc7\xcd\xe8\xab\x80\xaa\xcf\xb4\xb5\x58\xbf\xec\x53\xf1\x0c\x24\xa5\xa6\x20\xa0\x56\xaa\x9b\xe3\xa0\xeb\xc2\x09\x8c\x5b\x50\x6d\x8f\x4c\x09\x54\x61\xc5\xb3\x32\x61\xa6\x77\xf0\x5f\x58\xd7\xfc\x9b\x8c\x46\xec\x74\x9d\xe3\xb9\x1b\x9e\xe9\x17\xaf\x7f\x7e\x44\x4d\x3e\x2a\xfa\xd7\xc5\x3b\x4a\x1c\xc3\x34\x24\x5c\xfb\x90\xa1\x31\x64\xe7\x80\x99\x74\x5c\xff\x21\x8f\xe1\x6b\x71\x97\x4f\xf8\xe4\x4b\x9c\x41\xef\x32\xcf\xbd\x49\x26\x45\x89\x93\x72\x30\xf4\x69\x97\x03\xc1\x41\x17\x80\x2b\x0e\x14\xd5\x98\x7c\xce\x6a\xe1\xad\x14\x21\xd7\x59\xe0\x3f\x7c\xae\x6f\x60\x38\x55\x5a\x25\xa4\x56\xa0\x93\xcb\x9b\x5e\xaf\xad\x13\xec\xab\x5a\x15\x4e\xf5\xd7\x09\xbd\x9c\x1e\x2f\xda\xb0\x46\xf0\xf8\xc3\x32\x63\x31\xe4\xa0\xba\x71\xf6\x35\xc6\x25\xc6\x08\x88\x57\x4f\x68\xe9\x2e\x58\x5f\x7e\xbe\xaf\xc6\x3a\x31\xb6\x7e\x52\xf6\xce\x92\x11\x21\x67\x6a\x4e\xcc\xd1\xfb\x2f\xc9\xa9\x90\xe4\x87\xe4\x59\x91\x71\x2a\x17\x6a\x7c\xa6\x51\x3c\x50\xb2\xbf\xbf\xee\x6c\x20\xc6\x12\xfc\xe2\x22\xdb\xa6\x46\xb0\x49\x47\x12\xc7\x50\xf1\x25\x36\x5e\x31\xd5\xe4\x7a\xd8\x21\x70\xe2\x4c\xb8\x16\x30\x06\x02\x36\xdf\x53\x8c\xeb\xd3\xcb\x25\x32\xac\xc0\x4a\x57\x3e\xa8\xb5\x99\x8d\x2f\x3a\xab\x04\xb7\x3a\xde\xe6\x1d\x79\xfb\xbe\x5e\x2b\x62\xe8\xcd\xc4\x2f\x73\xf9\xbc\xda\x1f\xd2\xb7\xd4\x86\x06\x45\xd3\xa6\xef\xb0\x5b\x0a\x4e\x4b\xb0\x5c\x88\x1a\xc6\xa6\xb4\xb7\xe7\x36\x2c\xa1\x83\x4a\xf0\x0d\xa2\x92\x14\x25\x99\x5a\xb0\xde\xcb\x42\x5f\x14\x99\x6f\x7f\xc0\x8f\x13\x9f\x14\x1c\x63\xfc\xc9\x70\xde\x61\xa3\x78\x8d\x00\xf1\xbe\x8b\x16\x5a\x5c\xf2\xbe\xc2\xee\x03\x3d\x29\x26\xff\x99\x0c\xab\xe6\x8f\x13\x26\xc6\xfe\xc7\xa1\x8b\x8b\xa3\x03\xf9\x0b\xf6\x23\x3f\x58\x02\x5b\x9f\x33\x7a\xab\x56\x7f\x0d\x76\x82\x85\x77\xb0\xf0\x71\xe9\x80\x36\x5b\x7f\xa3\x6d\x68\x91\xb8\x2f\x85\xc9\x70\x71\x1d\xf8\xef\x1e\xe8\x3b\x9d\x5c\x1b\x61\x8f\xfd\xfd\x0f\x42\xc7\x6f\xf5\xde\xe6\x4a\x95\x3d\x69\xe1\x77\x2f\xf7\x9c\x38\x31\xd3\x2f\x30\x60\x9b\x08\x98\xb8\x7b\x6b\xb4\xc7\xaf\xf7\xed\x41\xc4\x1d\x20\x1e\xe9\x2d\xb0\x6b\x33\x63\x31\x84\xbd\xf9\xa0\x95\x66\x15\xe7\x34\xd9\xc5\x97\xed\x88\x22\xf3\x45\x9d\x08\xe2\xf3\xc4\x10\xbd\x6f\x88\xdb\xe9\x7f\xcb\x36\x5a\xd6\x48\x77\x3d\xd2\xb0\xf4\xaf\x4d\xfa\xec\xfb\x78\x55\xe9\x2b\xe2\x7b\x85\x35\x46\x47\xd7\xd7\x7e\x4e\x7b\x2f\xcc\xfd\xf8\xf6\x3e\xc2\x3e\x38\xe5\x41\x9c\xc5\xad\x67\xb7\x2a\x6e\x9f\xb2\x2a\x76\xb4\x93\x0a\xf9\x97\xe8\x7c\x7d\x67\x10\xd0\xc9\xd5\x06\x4b\x0d\xae\x10\xd2\xa3\x50\x30\x2f\xc4\x12\xfc\xf7\xcd\xc6\x67\xb5\xb6\x8c\x14\x85\x01\xdb\x85\xb9\x0e\x6a\xae\x1d\x99\xa4\xd0\xa5\xe8\xb9\x64\xc5\x77\xb5\x3f\xfc\x3d\x4c\x87\xb6\x69\x0d\xa0\xf1\xfd\x1c\xd3\x71\x25\xfb\x35\x51\x1d\xb6\xa1\x9e\xd2\xae\x3e\xfe\xe0\x9b\x4d\xaf\x21\xb4\x4b\xa9\xaa\x07\x9c\x3c\xfd\x09\x1b\x89\x10\xa1\xe3\x63\x19\x23\x12\xff\x1c\x13\x51\x4a\xa3\x41\x96\xe3\x89\xbd\x52\x67\x35\xe9\xbe\x77\x7a\x5d\xca\x13\x34\xb1\x17\x5a\x11\x3f\xf2\x51\x63\x71\x71\x31\x49\x21\x4f\x81\x32\x3c\x5c\x76\xf5\x2f\x55\x87\x4d\x13\xaf\xdb\x01\xe1\x86\xd4\xae\xef\xb5\xb1\x3e\x14\xda\x01\xb4\xf9\xe0\x27\x27\xf3\x9f\x04\xda\x31\x50\x58\x23\x9e\x50\x94\x58\xc7\x23\x02\x5e\x59\x91\x27\x33\x2e\x06\x19\xae\x5c\x61\x43\xd1\x0c\x5c\x57\xdd\x02\xfe\x40\x7b\xf9\xf8\x0b\xfd\xe2\xf0\x1d\x0f\x4f\xf3\xc0\x86\x02\xc9\xd2\x80\x16\x61\x77\xf7\xea\xa3\x05\x3d\x8d\x82\x31\xd6\x23\xbd\x91\x41\xa1\xd5\x5b\x4f\x2b\x3e\x8e\x77\xb1\x1d\x37\x2f\x2f\x15\xca\x70\x48\xf5\x7b\x02\x8e\x32\xb4\xd4\xf3\x99\x48\x99\x1d\x87\x13\x20\xfb\x39\x8a\xcc\x17\xac\x0e\x41\x90\x1e\xcd\xa5\xed\xbe\xab\xd7\x3a\xca\xc3\x49\x2f\x2b\xbf\xb5\x44\x7c\xec\xfc\x4b\xfe\xdf\x42\x05\xcc\x17\x3c\x92\x61\xf5\x80\xd3\x3f\x28\x68\xed\x27\xc6\x62\x62\x69\x64\x20\xbf\x2b\x0d\x73\x53\x3f\xe7\x56\xc4\xb2\xd4\x91\x8d\x56\x7e\x06\x52\xb0\x67\x39\xa5\x79\x79\xb4\x19\xc1\x2a\x4b\x52\x91\xdd\xb1\x67\x02\x61\x25\xf5\x84\x36\x9b\x9f\x15\xe5\x59\x16\x0d\x5c\x03\xf6\x86\x90\x64\x37\x5c\xbf\x66\x58\xb9\x4a\x7b\xb0\xb4\xa6\x9d\x0d\x2a\xb1\x2c\x1b\xe6\xf0\x66\xd6\xfe\x98\x1b\x48\xfb\x2c\xe1\x60\x91\x25\x1d\xaf\x58\xdd\x2e\x17\xaf\xfe\x13\x98\x45\xcd\xec\x1b\xb2\x71\x2e\xbd\xaf\x5b\xf2\x85\x88\xab\x75\xad\xa6\x82\xae\xa8\x90\x37\xae\x70\xde\x12\xff\x99\x41\x88\x2e\x48\x23\xe0\xba\x5e\xaa\x6b\xd4\x68\x01\xb1\x91\x59\xfe\xea\x32\x76\x24\xf5\xa6\xee\x10\xcc\xd2\x16\xff\xf2\xfb\x09\xe2\xa1\x1c\x10\x4c\x19\xac\xf3\x31\xef\xb7\xc1\xbc\x67\xf5\xad\x9d\x1f\x06\xbd\x73\xa2\xd5\xde\x3f\x32\xac\x45\xd5\x37\x83\x4d\xc9\xc2\xe8\xf1\x4e\x59\x51\x68\xdb\x2b\x43\x91\x93\x3e\xf8\x9d\x6e\xe5\xca\xe0\x22\x16\xd7\xaf\xa6\x10\xde\xa7\x38\x9a\x00\x33\x32\x47\x87\x5b\x46\xf7\x92\xcc\x83\x18\x6a\xda\xf2\x7c\x5b\x38\xf4\x73\x52\x27\xca\x33\x72\x6b\xbf\x37\xea\x6a\x04\x86\x7e\x2a\xb9\x57\xa1\x97\x96\x29\x64\x91\xea\x82\x06\xc5\xb7\x75\x66\xc9\xa0\xcf\x9f\x57\x5d\x1a\x6b\x94\x85\x02\x95\x20\x38\xf3\x3c\x33\x30\x76\x8d\x4b\x15\xf8\xf6\xc6\x05\xd7\x23\xa7\x43\x6b\x84\xa9\x20\x43\x06\x3d\x33\xb4\x39\xdf\xfe\x33\x09\x2b\xa8\x16\x44\xf0\x9b\x36\x91\xad\x11\xe4\x99\x5e\xdd\xec\x1c\xc9\xb0\xe6\x63\x09\x96\xb1\xfc\x35\xfd\xa1\xf9\x65\xb3\xfd\xf8\x62\x8c\x50\xa3\xb0\xc6\xc2\x6f\x7c\x8c\x66\x06\x19\xf4\xe5\xa9\xa6\xeb\xc9\x15\x39\x49\x25\xfd\xbc\x17\x85\x57\x41\x11\x9c\x64\xbc\x03\x90\x85\x81\x7b\xbc\x10\x0a\x53\x48\x47\x1c\xa4\xb7\x97\x4c\x45\x83\x2b\xe4\x3b\x8a\x47\x3f\xd0\xf7\x9e\x8b\xce\x56\x5c\xda\x67\xdf\x92\xa2\x82\xdc\x5a\xc1\xe1\x8e\x57\xe9\xd9\x3c\x11\xec\x19\x20\xda\xaf\xc1\x0c\x67\x5d\xc1\x86\xef\x88\x44\x95\xe9\xb6\x3e\x7a\x26\x50\xae\xe6\x2d\x40\xd8\xc8\xf2\x3a\xbe\x18\xe9\xa8\x5a\xe4\x4b\xe2\xbc\x86\xa2\x70\x84\x9f\x08\xe2\x99\x9f\x42\x48\xc7\x9d\x97\x47\xd5\xa9\xa6\x88\x87\x76\x99\xa4\xaa\xfe\xf1\x85\xfa\x31\x04\xfb\x2a\x24\x3b\x36\xc7\x6e\xe2\xa9\xb7\xb4\x2b\x2c\x54\xd1\x55\x79\x5e\x67\x56\xe1\x41\x9c\x05\x7b\x6f\x57\xd4\xc6\x12\xbd\x19\x59\x49\x0d\xb1\xb2\xbf\xdb\xfb\x16\x5e\xa5\x87\x6e\x3c\x6f\x9c\x4e\x39\x81\xa3\x1b\xb1\xa9\x3b\xbd\xbe\x51\x39\x8c\xa3\xfd\xc8\xa4\xbe\x4e\x1b\x40\x45\x8f\x5a\x87\xa8\x0b\x83\x98\xfc\x9a\xcb\xc7\x75\xf4\x8b\xe3\xf6\x50\x5d\x81\xc1\x83\x6d\xb2\x96\x6f\xdd\x0d\xb1\x5b\x15\x2c\xba\x43\x55\x19\x42\xae\x6c\xfa\x09\xfc\x32\xea\x46\xd3\x0b\x7b\x6c\xd4\x53\xc1\x9c\xfa\x39\x74\xf2\x31\xc2\xf0\xe3\xca\x9e\x6e\x0a\xb8\x15\x29\xe6\xc7\x4c\x7c\x82\x0a\xcb\x2a\x76\xf9\xfb\x7d\x60\xbc\x60\xf1\x75\x7e\x5b\x47\x2e\xfe\x30\xc0\x9c\x28\x50\x52\x8b\xed\x71\x4a\x34\xd5\x5d\x1b\xb4\x1f\x99\x8b\xc8\x78\x80\x55\x7a\x2f\x55\xc8\x14\xd0\xba\xc2\xe0\x26\x31\xb9\xb0\x7b\x0f\xc2\x82\x8f\x22\xe7\xd2\x3b\xa0\xa8\x25\x18\x64\x75\xe3\xd8\x8b\x82\x45\x60\xdb\x3b\xde\xcb\x30\x9d\xb0\x53\xa6\x80\x1d\xe9\x15\xd2\x65\xd1\x10\xdc\x2a\x84\xab\x12\x52\xc9\x3d\x66\x3e\xa2\x92\x29\xf4\x5a\xff\x96\x09\x66\xb2\x20\xe8\x48\x5d\x45\x21\xbd\x56\x9b\xfa\x63\xac\x4b\x7a\x96\xdc\x53\x9d\x9a\x08\xff\xe2\xcb\x3c\x9c\x61\x56\x94\xe7\xf7\xe7\x2c\x67\xa2\x24\x86\x5d\x1b\x62\x14\xdf\xd7\xba\x71\xaa\x1d\x52\x36\x37\x13\x52\xf9\xd7\x87\x03\x9c\x8c\x20\x61\xc2\x0d\x7f\x32\xec\xf9\x83\xd3\xdd\x73\x82\x93\x31\x5e\xaa\x4f\x99\xe4\xd7\x3b\xb0\x20\xe9\x6a\x31\x97\xa4\xb0\x43\x57\xfe\xaa\x33\xb5\x7c\x44\x80\xf9\x55\x16\xab\x6f\xb5\xf1\xfe\x5f\x58\x8c\x0e\xd2\xfd\xf0\xaa\xa2\x88\x9c\x1c\x51\xa1\xde\xed\x7d\xe7\x22\xac\x76\x14\x76\xf2\xe8\x37\x56\xff\xa1\x51\x79\x18\x34\xec\x94\xe9\x64\xfb\xce\xe6\xa4\x03\xd7\x3d\x45\x68\x19\xa4\xb2\x5b\x4d\x85\xfd\xfe\xc8\xdb\x9b\xad\xda\x6b\xea\x2a\x76\xca\x79\xbf\xc6\xc6\x32\x33\x99\x17\x7b\x7e\x68\x6f\x2a\x6e\x3a\x7b\xc3\x46\x72\x67\x96\xe4\x4d\xf1\x1a\x62\x98\x1a\xb5\xea\x03\x9c\x2d\x49\x85\x0e\x99\x4d\x0c\x7e\x49\x4f\x05\xe7\x94\x47\x1e\xcc\x40\xd4\x2e\xcb\x6a\xcf\xe7\x58\x66\x18\x60\x39\x52\xa5\xb0\xbb\x7a\x93\xe7\x38\x55\x9e\xaa\xb1\x4f\xc2\x4d\x6d\x99\x4d\x85\x0b\x85\x32\xfb\x4a\x3f\xac\x3c\xe3\x55\x45\xd8\xe7\x51\xdd\xcb\x97\x74\xfe\x17\x9a\xed\x17\x74\x22\x27\x7d\x1c\xdc\x6b\x3b\x46\x83\x4e\xc7\x4a\xc8\x12\xdf\x6c\xe1\x58\xfb\xcc\xe8\x4a\x45\x10\x42\x8b\x4b\x8f\xde\x08\x04\x57\x03\x3e\x62\x56\xce\x93\x62\x5a\x02\x82\x2c\x61\x68\x23\x0b\x83\x41\xaf\xb4\x2c\x41\x93\x41\x49\x43\x24\xb7\xa3\x8d\xf6\xd5\x99\x42\x45\x0a\x82\x14\x32\xf4\x85\x6e\xb5\x77\x99\x1a\xa4\x4e\x89\x28\x06\xd8\xa5\x07\xf7\x1f\x71\x9a\x87\x31\x11\x85\x27\x3b\xaf\x06\x3e\x3d\xe7\xfd\xe9\x60\x9f\x4a\x4a\x11\x52\xbb\x54\x1a\x31\x76\x9e\xdd\x80\x6d\xfb\x02\xfb\x50\xb7\xcc\xfb\x1d\x9d\x05\x2d\x1c\x8b\x85\x32\xfb\x75\x15\xb5\xfa\x79\xf7\x3d\xf3\x08\xaa\xb0\x91\x4b\x2c\xef\xb9\x82\xf5\x55\x7e\x39\x16\x74\xe2\xbd\x25\x9b\xf3\xf7\x46\x0b\xc5\x7a\x91\xe9\xf7\x22\x9b\x1c\x27\xd9\x3a\xb8\x80\x46\x91\x06\xe8\x00\x51\x6b\xc4\xe4\x20\xfc\x91\x7a\xe3\xc5\x65\xfb\x40\x49\x98\xb0\xc7\xdb\x9a\x35\x67\x2f\x5b\x26\x10\xed\xd7\x94\x8e\xce\xa8\x3d\xf5\x8b\x8d\x42\x51\x0b\xe5\xb8\x8e\x71\x9c\x00\x21\xd3\xc9\xe1\x3c\x7c\x49\x1c\xbd\xe3\x00\x21\xb9\x0c\x59\x2d\xac\x7c\xf8\xa9\x82\x42\xeb\x19\xe3\x87\xc2\xd6\x7a\xd7\x47\xfb\x0d\x7f\xc5\x9f\xa8\x8d\x70\xcb\xec\x1e\x73\x06\x3e\xef\x1d\x29\x31\x08\x9e\xf9\x35\x1d\xab\x20\xdd\xdc\xc9\x26\x14\x9e\xe2\xbc\xef\xe5\x56\x8e\x95\x14\xc4\xc7\xfa\x11\x0d\xbc\x89\x7d\x8f\x2f\x7b\x36\x44\x13\x6f\x34\x57\x9b\x8c\xeb\xfe\x70\xb2\xa2\xf4\x12\xb7\x07\x21\x9e\x72\xe9\x50\x8e\x7f\xd9\x40\x71\x47\x36\x94\x8e\x14\xfe\x9e\x1a\xab\x65\x9a\x92\xf6\x50\xcb\x35\x17\x9c\x8e\x8f\x24\x74\x18\xa7\x7b\xac\xa6\x0c\x6c\xd7\x2d\xc1\xac\xc3\xbe\x71\x2b\xd2\xed\xf5\x2e\xa7\x5c\x5d\x79\x92\x34\x16\x1c\xb8\x98\x90\x15\xeb\x40\xaf\x43\xba\x50\x72\xd7\x97\xac\x2f\x01\x1e\xd2\x44\x71\xd3\xf2\x13\x85\xec\xbe\xef\x3e\x62\x7d\xfd\xfc\x0b\xf7\xb6\xf7\xf7\xc3\x86\xc2\x42\x7c\x06\xdb\x3a\x0b\x5a\x64\xec\x46\x3c\xc7\x85\x0f\xfa\xc0\x68\x87\x73\x0a\x51\xa2\x7d\x0d\xc1\x20\x06\x76\xfe\x25\x69\x16\x1e\x5e\x11\x6b\xe2\xfb\x26\x5a\xc3\xc9\x35\xce\xc9\xee\x7a\xec\x14\x99\x13\x15\xfc\xd8\xb3\xf7\x6d\xb7\x99\x19\xcb\xcf\xbd\xed\x8d\x77\x29\xdb\x5b\x1d\x77\x91\x8f\x8e\x1a\xb7\xa1\xde\x0b\x79\x32\xca\x21\x57\xcf\x57\x59\x5c\x33\xbd\x7b\xba\x7f\x2f\xfb\x13\xc2\xe7\x48\xc4\x52\x18\x3d\x8e\x05\x40\x1a\x01\x05\xc9\xb1\x10\x44\xaf\xf1\xee\xd4\xb7\x1f\xc3\xef\x64\xfe\x20\x32\x9b\x4a\x7d\xb8\xb9\xf1\x3c\x7e\x90\x56\xea\x8e\xce\xae\x82\xcf\x1c\xca\xd9\x32\xfb\xb5\x65\xb5\x37\x12\x9a\x9a\x24\x6f\x30\x12\x89\x21\x68\x74\x69\x5d\x7a\x1e\x7a\x86\x32\xbc\x67\x03\xe0\x92\x19\x8d\x62\x28\x86\x9e\x7c\xa4\x39\xf7\xbf\xde\xcb\x14\x5d\xa4\xf9\xb5\x90\xad\x48\xe3\x0e\x83\x5a\xc3\x7a\x49\x87\xaf\x4c\x45\xa1\x8d\xf0\x47\x77\xa9\xf8\xfb\x02\xa6\xf7\xa5\xec\xe4\x6f\xad\xed\x87\xcd\x77\x5f\x4c\xe7\xf4\x2e\xfb\x94\xef\x7e\x83\xde\xc1\xe1\x94\x79\x88\x63\xaa\xc3\x5d\x62\xfb\xeb\x7f\x92\x8c\x00\xda\x1f\x2a\x28\x18\xb0\x59\xa7\xa8\x6d\x17\xe1\xa4\x44\x9c\x11\xd2\xbd\xa4\x5d\x2b\xa2\xbd\xc2\x6b\xd2\x27\xb7\xdb\x4c\x2e\xe4\x0b\xdc\xda\x59\x8a\xf5\xf8\x43\x7c\x34\xb4\x54\xcf\x8b\x79\x70\xef\xf0\xf3\xbb\x0f\xf7\x48\x82\x96\x24\x95\x9a\x48\xe4\x26\xaf\x32\x00\x65\x5b\x37\xfe\x4f\x83\x7b\xf3\x81\x3a\x34\x53\x00\x9a\xc5\x09\x2d\x07\x6f\x02\x45\x0f\x5e\x80\x6f\x8e\x61\x4e\xfc\x45\xc8\x4f\x6d\xe7\x33\xdc\xe2\x95\x50\x89\x3c\x8e\xa1\x8b\xd6\x91\xb8\x80\x2d\xac\xf7\xd8\xb4\xb7\x6a\xdb\x01\x9d\xcc\x15\xbd\x1f\x42\x85\x5a\x15\x24\x07\xa6\x48\xba\xb8\x06\xdf\x2d\x6b\xee\x97\x16\xaf\xe5\x23\x55\x67\x08\x45\x3a\xd0\x9c\x7a\x24\xf0\xac\x30\xc7\x61\x66\xa4\xfe\xf7\xc5\xff\x77\xb5\x87\xe7\x62\x86\xf5\xad\xb3\xb8\x2f\xa0\x3d\x1d\xe4\xf2\xe2\xf2\xe8\x1a\x96\xf7\x1c\xf4\x10\x12\xd9\x20\x4f\x5b\xa8\x26\x7c\xcd\x78\x35\xba\x9e\xa1\xd7\xd1\x1b\x9e\x42\xb6\xa2\xf4\x8c\xd6\xa0\x40\xf0\xe9\xf0\xc6\x8b\x4b\xe9\x61\xf2\x53\xdb\x5e\xfe\x1c\xa7\xfb\x4c\x6b\xc0\x97\xf2\xf1\x2e\xc3\x2c\x11\x18\xe9\x69\x59\xc4\x2b\x67\x7b\xe4\x4f\x3f\x52\x91\xd4\x3d\x14\x1a\x00\x50\x64\xbe\x8e\x0f\x69\xce\x3c\x44\x4e\xaf\x01\x84\x8b\xd1\xf3\xb9\x6a\xc3\x34\x44\xa6\x64\x29\xa7\xf3\xeb\xb5\x3e\x65\x92\x71\x5f\x86\x75\xa0\xb4\x07\xac\x4d\xc1\xf4\xea\xe8\xbf\x8c\x8b\xb6\x9a\xff\xc8\x76\xa9\xaf\x24\x7a\xb0\x58\x17\x8e\x9a\x3f\xa9\x0c\xf8\xae\x27\x87\xb2\xf4\x79\x6b\x9b\x13\xb1\x52\x2b\x08\x8e\xa9\x27\x95\x79\x77\xa1\x65\xff\x92\xc1\xa7\x9f\x26\x9f\x39\x63\xf0\x7e\x78\x6b\x4c\x2c\x63\x52\x3a\x37\xf6\x8f\xa6\xb5\xa4\x23\xa3\x45\xe7\x03\x87\xf0\x9d\x45\xd3\xb2\xd6\x67\x54\x8b\xd1\xbe\xab\xd8\xf5\x21\xf5\x20\x3c\x23\xae\x1d\xde\x44\x16\xf5\x30\xe6\xd3\x23\xf1\x55\xad\x6b\x00\x61\x6e\x6f\xb6\xea\x9d\x65\x3a\xe2\xad\x4c\xd9\x32\x7d\x2f\x9a\x39\xc1\xd7\x53\x76\xbf\x66\x31\xaf\x6a\x31\xe2\xcd\x03\xce\xbf\x2e\x06\xaf\x8b\xcb\xc7\x53\x19\x88\x4e\x94\x51\xc6\x31\x68\x53\x7e\x18\xb8\x20\x65\xd4\x57\xef\x00\x6d\xa8\xec\xca\xb5\x1b\xa9\xf1\x6a\x03\xb2\x8d\x03\xc5\x5f\x76\xad\x2a\x75\x18\x91\x46\x1e\x1a\x91\x16\x2e\x6d\xd4\xc3\xe5\xf9\x1e\xff\x31\x4e\x20\x84\x1b\x89\x7b\x4e\x76\x34\x18\x89\xd6\x56\xec\x8d\x4a\xcb\xef\xfd\xd7\xfe\x9e\xb8\xf0\x5c\x43\x9e\xdb\xf4\xfe\xc1\x38\x87\xc6\x82\xdd\xb0\x95\xac\xb2\xf5\xa7\x08\x2b\xd3\xa7\x1c\x8f\x7f\xe3\xe3\x9b\x2f\xbd\x74\xcf\x19\x21\x8a\x28\x8a\x15\x00\x5c\x83\x40\xa7\x34\x8c\x1e\xc1\xde\xfd\xb2\xec\x3e\x93\x38\xfd\xb5\x95\x8b\xd7\x2c\xe9\x5b\x56\xa6\xf1\x7b\x3c\xb9\xf5\x93\xe0\xf1\x07\xb3\x98\x33\x9f\xbf\xd8\xd6\xf8\x07\xba\xdf\x2e\xd2\xc7\x84\x94\xa8\x86\xd5\x84\x8e\xa9\xac\x5d\x01\x5c\x28\x22\x2f\xfd\xda\x2d\x39\xad\x02\xb8\xd5\x85\xe3\x38\x4f\x51\xc2\x1d\x06\xb5\xc3\x9c\x64\xc5\x70\x27\x81\xb3\x91\xb9\xf7\x51\x42\xae\x69\xb7\x14\x8b\xce\x7a\x97\xde\x14\xb6\x8e\xdd\x24\x9d\xf9\x0d\x7e\xd9\x60\x3b\xfa\xe3\x4a\x08\x1f\x82\x4b\xec\x8b\xe7\x12\x20\xaa\xf4\x54\xf0\x54\x54\x3f\x81\x67\x91\x58\x71\x34\xbf\x26\xcb\x51\x4a\xba\xd0\x8b\xac\x37\x0c\x9a\xdd\x50\xa6\xf2\x05\xbc\x7f\xd4\x74\xe4\xb6\xec\x2f\x58\x55\x46\x75\x67\xb5\x4c\x7b\xf5\x0e\x45\x2c\x6f\xe3\x6a\x58\xd0\xeb\x9c\xf7\x76\xa8\x45\x36\x8e\x2f\x8f\x34\x6f\x2c\x1f\xc2\xc8\x90\xb3\x78\xfe\x1c\xb1\x64\x24\x6e\x93\x8e\x0e\xec\x4e\x17\x30\x44\x07\x89\xbf\xe6\xbc\xe4\x3f\xda\xf3\x23\xb3\xa4\x23\xc2\x4f\x84\xd8\xfb\xc2\x58\xa9\x82\x96\xeb\x9e\xd1\xc4\x42\x2d\x9d\x41\x16\x69\x1f\x13\x71\xea\xcf\x22\xbb\x43\x50\x5a\xc5\x62\x4f\x58\x2c\xb0\xe2\x28\x74\xd1\x8d\x62\xe0\x04\x4e\xb1\x8a\x2d\xdc\xae\x00\x21\xbb\x6d\xcd\x36\x1c\xc2\xdf\x10\xdd\x8f\x5d\xd7\x05\x18\xd4\x1a\xfb\x94\x71\xc6\x5f\x07\x16\x7e\x7c\x5b\x18\x15\xdf\x78\x36\x83\x1d\x99\xde\xcf\x30\x93\x1d\x33\x4e\xf9\x4a\x47\x85\xc0\x42\x86\x77\xb1\x03\x53\x74\x5c\x28\x62\x43\x85\x66\x1d\xbc\x1e\x25\x51\x09\x39\x17\xb9\x1e\xd3\x0e\x12\xd5\x01\x30\x50\x5d\xab\x89\x49\x69\x85\xcb\x0b\xf7\x56\x17\xcb\xcf\x0f\x42\x1b\x1c\xa4\xaf\xeb\x25\x65\xc2\x1c\x6a\x88\x6b\xf3\x49\x13\x57\xce\xdf\x53\x8b\x1c\x20\xe4\x45\xd4\xf4\xbd\xcb\x85\x5a\x93\x4d\xb4\x98\xe1\xa1\x91\x1d\xba\x09\xc4\x17\x2b\x13\x92\x6a\xf9\x53\xbf\xd9\x0d\xe5\xe7\x72\x64\x16\xe9\x1e\x5b\x3f\x32\x02\xaf\x8e\xe3\x86\x4e\x47\x33\xba\xb6\x9c\xf7\x6f\xf0\x56\xa9\xb4\x1d\xd0\xb9\xe1\x12\x06\x2e\xc2\x7f\x6c\x52\x00\x0d\xab\x94\xb4\x4c\x1c\x90\xe1\xad\xc3\x70\x70\xcc\x14\x99\x0a\x1f\xd7\xf5\xd3\x7a\xb8\xf3\xa7\x9a\x11\x18\xfa\x16\x3a\x42\xb8\x4e\x89\xa5\x55\xfb\xd2\xe3\x23\xb9\x20\xe6\xac\xcb\xe3\x0f\xa1\x75\x8c\x09\x61\x3c\xb9\xa8\xff\x94\x85\xe8\xa4\x16\x15\x73\x8b\x64\x1b\x71\x13\xac\xa2\xce\xe0\x48\xf1\x10\x82\x40\xf4\x16\x92\x01\x8f\xe7\x33\x26\xea\x94\x0d\x22\x11\xc5\xa5\xf8\x1c\x28\xf1\x54\x2c\xaa\xbd\xad\xf1\x6c\xdd\xf6\xf4\x72\x4f\xfe\x8f\xb7\x7e\xb9\xc6\x53\xe6\xcb\xa8\x1e\x4e\x26\xa2\xf1\xe2\x55\x18\x03\xde\xf9\x03\xe3\x39\xa5\x36\x3b\x0d\xff\x8d\xb0\x42\x9f\xb1\xbc\xbf\x71\x99\x5f\x9e\xa8\x90\x9c\x34\xd9\x47\xd9\x99\x59\xfc\xc3\x95\xbc\x72\xc2\x25\x05\xd0\xcd\x8c\x36\xe8\x36\x66\x84\x47\xb9\x70\x1d\x3b\xbf\xf6\x9b\x99\x04\xfc\x42\x7b\xb7\xd9\x45\x51\x65\x67\x27\xb4\xe0\x64\x83\xb4\x80\x6a\x27\x0c\x6c\xa8\x40\x93\x0f\x00\x75\xa8\xf1\x0e\xe7\xc8\x99\x25\x08\x3e\x73\xe7\x7d\x18\x41\x05\x73\xea\xdf\x79\x89\x9e\xba\x83\xc7\xd7\x8f\x45\x66\xfb\x82\x6b\x4a\xc6\xf1\x1f\x6a\x42\x77\x1a\x07\x86\xdc\x7f\x6b\x87\xa7\xb7\x52\x47\x61\x21\x83\x97\x84\x7d\xa2\xa3\x1b\xc2\xd2\x12\x0d\xc5\xc7\xd8\x53\x86\x90\x3f\x8c\xbb\xde\x9b\x4b\x49\x9e\x0e\xee\x5a\x00\xd0\x02\x5c\xd7\x01\x49\x30\x34\x4f\x5c\x88\xda\x52\x86\x41\xbc\x60\xc4\x73\x6c\x90\x6e\x56\x81\x8b\xd3\xdf\x12\x26\x67\x7c\x99\x60\x73\xdc\x2c\xce\xfa\x6c\xfa\x4a\x73\x80\xa0\xd1\xc8\xd9\x13\x0d\xe5\x40\x2e\x41\x3a\x88\x79\x7e\x88\x9c\x92\x73\x4b\x8b\x74\x4b\x03\xac\x07\xe2\x93\xc2\xf9\x44\xbd\x61\x40\xb6\x1c\xca\xa6\x3d\xbb\x31\xca\xb3\xfb\xf2\xc7\xe8\xc5\xbc\x97\xae\x33\xdf\x53\x96\x4b\x63\x31\x92\x44\x30\xc2\xcc\x0d\x86\x84\xe2\x63\x2a\xbe\x76\xba\x3f\x0c\x01\xe3\x53\xa3\x52\x91\xcb\xd2\x2b\x38\xb3\xb9\xee\x6f\x6e\xcd\x54\x14\xbe\x32\xa6\x2d\xa6\x93\xd4\x03\xee\xad\x7f\xf2\xc6\xbc\xbe\xd9\xbf\xff\x34\x34\xdc\x15\x72\xed\x19\xd5\xe8\x72\x41\x6d\x57\xb0\xcf\x60\x5b\x1f\x14\x17\x8c\x3b\xfe\x76\xd5\xf9\x98\xb8\x76\xcc\x9d\xa8\x1a\x02\xa8\x26\x0a\xe2\xa8\x83\x2e\x7e\x51\x6a\x36\x88\x78\x26\x6d\xd8\xdb\x1a\xe2\x03\xe7\xdf\x74\x27\xbc\x6e\x50\x35\x37\x7d\xea\xf7\xc0\x65\xb1\xbb\xdb\xea\xe2\xc9\x03\x97\x5a\x15\xbb\xf1\x2b\xbb\xcc\x9e\x87\xae\x08\x0f\x87\x3a\xbf\x28\x80\xfb\x9c\xfc\x5a\x91\x66\x2a\xdc\x2c\x0a\xee\xfb\x09\x9e\xc2\x02\x9c\x75\x81\x0e\xcb\x4a\x3a\x02\x42\x79\xa2\xd6\xd5\x55\xc2\x65\xbc\xdf\xea\x99\x95\x21\xf5\x43\xf6\x96\xf4\xf6\x16\x83\x0d\xde\x45\xd9\x4d\x2c\x88\xce\x72\x1e\xee\x70\x1e\x31\xea\x5d\x32\xaa\x45\x81\x29\xd6\x66\xa9\x6a\x04\xc3\x9e\x1e\x57\x03\x48\x1d\xb9\x89\x31\xec\xa6\x40\xe1\xf2\x4b\x92\xf5\x50\x46\x77\xa8\x6d\x1c\x6c\x60\x61\x74\x67\x1f\xb3\x38\x37\x7f\xca\x76\xdc\x9c\xc7\x37\xba\x18\x6b\xb1\x8a\x55\x0a\x6a\xbc\x54\x68\xde\x23\x87\xc6\x38\x48\xc0\xc3\x4e\x20\x21\x9a\x12\x86\x5f\x0b\x45\xa0\x27\x54\xf7\x87\x2d\xe5\x91\x8d\x59\x2d\xbb\x31\xfb\x37\xc5\xbc\x3a\x6c\x58\x82\x9c\xc5\x5d\x3d\x27\x18\x28\xcd\xa8\x24\xfa\x17\x6b\x4b\x03\x77\x2e\x4d\xd6\x63\xd3\x30\xfb\x5f\xa3\x4a\x0a\x11\x9f\x1d\x8c\x42\xcf\x6c\x48\x64\x2a\x86\x10\x3a\x64\x2a\xc7\x10\x41\x51\x14\xd6\x62\x62\xc4\x62\x8f\x78\x73\xb1\xe1\xcf\x7c\x31\x06\x51\xdb\x72\x2a\xbc\x92\xa8\xe7\xb5\xb0\x33\xb4\xc1\x79\x8f\xcc\x28\x77\xc1\xbc\x14\x4b\xb3\xdf\x71\x3f\x3e\x4f\xb0\x26\xe4\x0f\x5d\x02\x64\x94\x7a\xaa\x07\xd4\xaf\x93\xa1\xa9\x48\xf4\x69\xb0\xd5\x9c\xa3\x15\x16\x40\x64\xc2\x69\x80\xb5\x57\x9a\xf9\x12\x4c\xb0\xc6\x8a\xfc\x88\x28\x9e\xc3\x09\x13\xed\x50\x8b\x40\x3f\xb2\xa2\x25\x71\x17\xf1\xfd\x85\xab\x95\x27\x5b\x58\xef\xd1\x29\x6f\x95\xc5\x79\x5c\x4d\x14\x09\x05\xbb\x76\xc6\xfc\x72\x65\x43\xd3\x8a\x14\x53\x00\xa5\x82\xc7\x5e\xcb\xb8\x1a\xf8\xfc\x40\xfe\x2a\xbf\x33\x07\x66\x7d\xaf\x8a\x64\x52\xfe\xf4\xe6\xeb\xb9\xc0\xbf\xc0\x97\x9a\xf6\xce\x60\xf7\x97\x63\xde\xf7\xcc\xd0\xdf\x07\xde\x7b\xbd\xce\x6d\xd0\x46\x1f\xe0\xdc\x2f\x70\xce\xa7\x09\x2d\x7b\xcc\x6c\x39\x8e\x56\xea\x82\x64\xf9\xbd\x64\x3d\x69\x3d\x95\x6f\x90\xaf\xe5\x9e\x4a\x9b\xbb\x62\x8e\x1e\xe1\x2f\x1a\xe5\x09\x22\xda\x29\xf7\xcc\x98\x3b\x02\x23\xab\x8e\x5a\x39\x0b\x04\x11\xea\x92\x38\x06\x42\x2f\x0a\x4d\x6a\xe4\x45\xa1\x57\x8c\x68\x4a\x5d\xd7\xe5\x5e\x9c\x6e\x4f\xad\x24\x28\x08\xff\x81\x5d\xd4\x5e\xe5\x70\xd6\x30\x4d\x15\x0a\x33\x89\xf7\x48\x32\x12\x69\xfc\x3a\xf2\x7c\x39\x1c\x1c\x3e\x7e\xc1\x6d\x99\xac\x87\x69\x7f\x50\x40\x3e\x96\x11\xf2\xf9\x70\xd4\x79\x8f\xd0\xa0\x83\xf8\x22\xd5\xa4\x2f\x04\x59\x15\x67\xa5\xff\x64\xd7\x89\xd9\xbb\x11\x15\x83\xab\x22\x11\x4f\xc3\x1b\x62\x34\x3d\xef\x72\x93\xb5\x96\x8f\x0f\x05\x0d\xd9\x6f\x40\x82\x28\x35\xa7\xdd\x86\x88\xbb\xf3\x49\x47\xe1\x59\xfd\x54\xf5\x24\xf9\x23\xea\xa8\xb1\x14\x0c\x09\x9f\x58\x0a\xeb\x29\x96\xb3\xe8\x15\x49\x16\xd3\x46\xe8\xaf\xd2\x01\x87\xd8\x85\xd1\x2f\x67\xbb\x41\xf8\xe5\x2d\xda\xee\xd9\xf3\x2e\x97\x58\xb5\xb6\xf6\xac\x96\xfd\x88\x16\xb3\xf6\xb3\xa7\x43\x11\x7f\xa7\xed\x88\x2a\xc3\xcb\x0e\x6b\x2c\xcc\xd5\x34\x3b\x6b\x14\x5c\x60\xb4\x23\x6a\xeb\x8d\x20\xeb\xcd\x9b\x10\x7e\xc8\x65\x17\x68\xe9\x03\x2e\x52\xbb\x58\xeb\xa7\xc5\x7a\x9b\xa8\x9f\xbf\x38\xe6\x6f\x31\x71\x8e\x92\x7f\xe2\xf2\x37\x3e\xd9\x0d\x16\x53\x81\xb1\xe2\xff\x74\xb1\x95\x76\x32\x33\x81\xc1\x0d\x34\xf7\x4b\xbb\xfb\x5f\x1a\xde\x67\x71\x40\xba\xf0\xe3\x3d\xa5\x44\x17\x0b\x25\xeb\x1c\x1c\x3e\x46\x7c\x66\x6b\x95\xb5\x5e\x5c\xc7\x8a\xeb\x52\x51\x91\x8a\x86\x61\xf7\xa6\xc5\x17\x08\x31\x0d\xc5\x6a\x25\x5c\xb1\xd3\xea\x3d\x12\xc3\xcb\x85\xbc\x9b\xa1\xbd\x66\x95\x58\xc9\x34\x7d\xb9\x25\xbd\xb9\xce\xee\xe5\x06\xae\x2f\xc6\x16\x66\xa9\x88\xc3\x76\x7a\xf6\x6c\x97\x3d\xd0\x66\xda\xc9\xc6\x83\xab\x71\x10\x57\x90\x54\x9d\x68\xe4\x8e\x3d\xa6\xae\xf1\xc1\x16\x2e\xf5\xd7\x53\x87\xd7\x48\xe6\x07\xc1\x1b\x98\x88\xd3\x3e\x36\xea\x29\x36\xd7\x4c\x8c\xa3\xc3\xe6\xd5\x22\x5e\x85\xc5\xd5\xaa\xa4\xd0\x17\x47\xcd\x1f\x23\xe6\x1a\x6b\xdc\x0e\x22\xb6\x93\x3d\xfb\x63\xec\x8d\x5f\x08\xbf\x61\x68\x5d\xef\x44\x6a\xfc\x4b\x57\x48\x0e\x33\xec\x3d\x15\x97\xbb\xff\xcd\x02\xb4\x39\xbe\x35\x56\x78\x52\x01\x82\xdf\x73\xd5\x31\x45\xfb\x87\x6f\x1b\xbe\x4b\xde\x36\xe4\x8b\x77\x8b\x8f\xdc\xd7\x24\x1f\x58\x58\x4c\x52\x48\x55\xb6\xfb\xf4\xe5\x9f\x06\xb8\x33\x62\x38\x15\xd7\x84\x00\x27\x31\x52\xa5\x3a\xcc\xe9\x94\x9a\x3f\xf9\x1a\x2f\xe5\xf5\x0d\xaa\xf3\x38\xb4\xec\xdb\xf1\xe5\x80\xca\xda\x2a\x68\x93\xec\x0f\x86\x5e\x87\x03\x33\xf6\x2b\x28\x3c\xb6\x92\x12\x21\x8c\xd1\x22\x5d\x7e\x98\x64\x3b\x76\x5d\x4f\xe5\x8d\x2f\x4f\x88\x2c\xd1\x8c\x53\x6b\x6b\x2e\xf8\xbc\x1f\x11\xf2\x19\xff\xbb\xb9\xa9\x7d\xc8\x48\x57\xd5\x64\x7c\x8f\xf3\xfd\x12\xcb\xf4\x68\xdd\xe8\x36\x4b\x5e\x96\xe3\x42\x12\x84\x1a\x75\x4a\x0b\x39\xa3\xf3\x2d\x36\x3f\x0f\xe7\xd6\x40\x7c\x2e\x12\x38\xd1\xa8\x80\xf5\xc0\xe5\xb2\xa8\xe0\x09\xa5\xe8\x9b\xab\x74\xc0\xa5\x25\xa7\x40\xdd\xfb\x11\x4f\x92\x99\xdf\xa1\x87\x1c\x3f\x07\xa3\xae\xf3\x94\xa6\x29\xe6\x15\x9d\x61\xd6\xf2\x62\xd2\xef\xbc\x2f\x9d\x07\xd8\xbf\x47\x2c\x16\x68\xc7\xb5\x8b\xb9\xb1\xa8\x41\xb5\x17\xd7\x80\x79\x11\x30\x9e\x0a\xe9\x70\x1e\x1e\xae\x6b\xb6\xb3\x5a\xcf\x6f\xfd\xed\x36\x1a\xa7\xb1\x2b\x90\xf0\xc7\x0a\x72\x1f\x76\x67\x8d\x28\xea\x15\x05\xe2\x3a\x5b\x08\xda\xdd\xb5\xe4\x2c\x23\x56\xbf\xe4\x26\x89\x61\x8a\x6e\x5c\x2d\x50\xdc\xa0\x58\x89\x57\xd5\xc5\xb9\xbd\x34\x54\xb6\x15\x42\x18\x4d\x2c\x2c\xd2\xf6\xc2\xee\x2d\x71\x4e\xf5\x71\xc2\xad\x44\x62\x5c\x54\x1d\x53\x0f\x39\x08\x83\x8f\x0e\x0e\x64\x6f\x53\x99\xde\xc4\x17\xf2\x21\xd2\x6b\x92\x48\x8a\x71\x2f\x5f\x28\x43\xd3\xa3\x22\x0b\xb2\xfe\x7c\x04\x50\x03\x04\xa5\x61\x07\x0a\xe4\xac\xb3\x76\x0e\x09\x43\x18\x31\xc4\x0c\x0f\xa5\x52\xaa\xe5\x38\x15\xe2\x8a\x56\x21\x56\xd6\x81\xfe\xad\x98\x67\x9c\x51\x9f\x6d\x2f\x4a\xcb\xc7\x95\x2a\xa9\xc3\xeb\x26\xc5\xad\x66\xb0\x85\x2b\x33\x3f\xd6\xc5\x6b\xa2\x7a\x1a\x3e\xe8\x7a\xc3\x7d\xd7\x1c\xb3\xc9\xa0\xef\xa3\x6e\xd1\x7c\xd0\xdf\xdd\xa8\x8a\x1d\x87\x25\x7e\xa1\xea\x92\x49\x0f\x1b\xa5\x1d\x6e\x30\x01\xee\xda\x92\x88\xf4\x85\xb7\x81\x7e\x67\x19\x6d\xc4\x86\x37\x46\xb3\xe2\x78\xde\x41\x44\x4c\x59\x72\xf7\x98\xe3\x3e\x0d\x48\x74\xf3\xe7\xa0\x7b\xca\x14\xae\xdb\xaa\x26\xca\x89\xd1\x02\xbc\xf9\xf4\x42\x33\xf3\x3c\xae\x03\x3f\x90\x60\xe0\x6b\xbb\x55\x04\x41\x45\xee\xad\xe2\x72\xef\xe4\x41\x1f\x27\xae\x68\x2a\x29\xd2\xf5\x86\x87\x28\xbf\x9d\xc1\x4a\xb0\xb3\x91\x73\xf5\x9e\x62\x59\x88\xa3\x6e\xb0\x3a\x25\x2d\xf4\x11\xde\x0d\x8f\x4e\xfa\xfd\x77\xbb\x7e\x2c\x7c\x5c\xa2\x7f\x31\x1f\x75\x7c\x9e\xbe\x3e\xa4\x10\xec\xe6\x19\x6c\x3b\x12\xdb\xbb\x5c\xb8\xc5\xf9\x5c\x7d\xcd\x47\xed\x76\xd6\xae\x80\xf2\xd3\x18\x17\xc3\x84\x34\x15\x92\x0b\x94\xe3\x50\xce\xaf\xb0\x8a\xa3\xce\xd0\xc8\x98\xaa\xd3\xfb\x4b\x9f\x4b\xa5\x94\x84\xc7\xcc\x51\x11\x3b\x35\x79\x51\x42\x18\xc9\x6d\x81\x84\xff\x14\xb5\xbd\x43\xf7\x8b\xe4\xd6\xc1\x4f\x02\xad\x15\xd1\x5c\x2d\x50\x50\x0e\x2c\x2c\xea\xcc\xe3\x94\x1f\x0b\x91\xce\x54\xa6\xbf\x2c\xb3\x62\xfe\xf8\xac\xb3\x59\x60\x58\x98\xb1\xb0\x9b\x16\xc9\x70\x5f\xab\x0e\xab\x36\x63\xbd\xdd\x8d\xaa\x04\xfa\x11\x27\x0a\x94\xe2\xf5\xb8\xf0\x49\x10\xf7\x18\xc8\xf1\xe8\x93\x57\x1d\xbb\x2c\xf9\xd7\x94\xf6\x38\x83\xf3\xbc\x8f\xda\xbf\x96\xbb\x65\x4f\xbf\x89\x90\x9f\x8a\x0b\x74\xfd\x4d\x75\xde\x7f\x5e\xba\xab\xc0\x59\x9b\x81\xb8\x92\xf0\x54\x74\x84\x74\x50\x92\xea\x6f\x96\x8a\x7a\x69\xa9\xb4\xe1\xc9\x63\x3e\xb1\xdf\x6f\xf0\x9a\x50\x36\x54\x82\x44\xb1\x1f\xb2\x96\xd3\x9c\x53\x0e\x17\x42\x94\x39\xaa\xeb\x75\x64\xf9\xed\x41\x9b\x46\x47\x1b\xe2\xb8\x94\x2a\x31\x83\xc8\x3d\xe3\x6d\x4f\x96\xd6\x35\x52\xfe\xfe\xca\x46\x7c\xe4\x52\x6c\xff\xc0\x82\xbd\xa1\x8d\x43\x54\x93\x49\xd4\xc6\x61\xc6\xc5\xb8\x00\x5e\x89\xfc\x6b\xca\x45\x42\x33\xd7\x8d\x46\x3c\x08\x75\xc0\x02\xa1\xd5\x13\x70\x75\x64\x80\xe9\x2a\xc9\x18\x50\x29\x40\xd4\x05\x0c\xc8\x50\xd4\x44\xc7\x10\xa9\x7b\x66\xa1\x35\xcc\xd1\x49\x16\x40\x47\x06\xbe\xb9\x9f\x20\xee\x3d\x30\x86\xd8\x33\xde\x46\x1b\xb0\x4d\xe0\xc6\xc1\x86\xda\x01\x92\xad\x96\xd2\xd3\xa3\x74\x86\x19\x4b\xf6\xba\x36\xa9\xf2\xcf\xa8\x22\xd1\xa7\x9c\x16\x18\x96\xf7\x4b\x02\x6b\x04\xb2\xe8\x22\xf7\xbb\x1d\x75\xd7\xc9\x61\x94\x0a\x69\x37\x8d\x2d\xa8\x9e\x85\x55\x95\x8a\x95\xd2\x78\x18\x3b\x0b\xbe\x06\x24\xd6\xe0\x00\xf4\x85\x64\x9d\x85\x79\x47\x66\x8a\xbc\x4d\x9e\x50\x67\x7d\x7e\x7d\x75\x56\x7f\xcc\xd2\x50\x7d\x14\xd5\xb7\x87\x11\xa1\xb6\xb7\x41\x71\x42\xc0\xe8\x08\x29\xe7\xe3\xfb\xc8\x28\x69\x62\xa7\x76\x4a\x84\x4b\x5a\x1c\x5a\xad\xed\x94\xd7\x25\xea\x70\x35\xe9\xc8\x67\xe6\xd7\x34\x23\xf2\x1a\x25\xa9\x52\x8f\xe4\x72\xec\x44\x0f\x01\x27\x7c\xe8\x1b\x6f\x76\xec\xfc\xeb\x66\x1d\x34\xd2\x33\x94\x79\xda\x9f\xc4\x18\xba\xb7\xde\xa6\x5f\x60\x2a\xf8\x90\xcf\xb8\x09\x29\x3f\x54\xd2\x41\xc1\xe2\x88\x8e\x2d\xe9\x83\x66\x18\xf0\xd4\xc2\x25\x97\xa5\x9e\x04\x79\x2a\x78\x20\x42\x3c\x3f\x05\x5d\x1d\x66\x58\xc7\x4c\xd3\xff\x25\x12\x68\x54\xb4\x52\xe3\x64\x97\x23\x18\xef\x24\x44\x7a\x39\x2b\x01\x4a\x6d\xc4\x07\x40\xa2\x07\xad\x01\xfa\x90\x8b\xb0\xe7\x1e\xe4\x4c\xca\xdf\x5e\x4b\xef\x53\xc6\xaa\xac\x42\xbd\x95\x72\xa5\x60\xff\xfc\x70\xaf\xb6\xb4\xeb\xfa\x55\x0c\x3a\xfd\x00\x87\xe3\xa4\x9b\xca\x4a\xed\x4b\x50\xe7\x82\xb2\x17\x40\x0c\x9f\xcf\xbe\x07\x6b\x3b\x6b\xfd\x98\xfe\x7b\x3e\x30\x3a\xdb\x9e\x59\x72\x36\x5a\xaa\xb1\xf4\x46\xe8\x61\x82\xbc\xce\x5d\x5a\xe1\x00\xd9\x71\x39\x0a\x5f\xf9\x35\xf3\x64\xa7\x5f\x19\xb3\x1b\x1a\x8b\x84\xbd\xc5\x9c\xf9\x2b\xd9\x0d\x4f\xb6\xac\xfe\x98\xab\xc7\x93\x45\x9f\x5d\x1a\xd0\xfa\xa5\x64\xe3\x1f\x76\x60\xf1\xf2\x3a\xb6\x4b\x89\x30\xdc\xf6\x9f\x49\x92\xb0\xd3\x5b\x4b\xfe\xa9\xcb\x60\xc9\x56\x0e\xc3\x9c\x42\xb4\x7f\xc7\x79\x5e\x3e\xaa\x91\x76\xfc\xe6\x31\x96\x17\x4f\xf8\x11\xf5\xed\x23\x75\x0e\x9c\x2b\xe4\xe1\xbf\x79\xeb\xdd\x16\x30\x90\xbc\xef\x48\x38\x7a\xb4\xf6\xd7\xff\x77\x03\xe2\x7d\xd3\xf7\x60\xbe\x64\x03\xc7\xd7\x0c\xbe\xe7\x91\x39\xfe\x40\x82\x93\xbd\x04\xdf\xd9\x7f\x8f\x86\x88\x85\xca\x8f\x85\x10\xf5\x99\x4d\x29\x4c\xc7\xf5\xed\x7c\xdf\x7e\xf6\xc9\xbf\x25\xc3\x6e\x4f\x55\x3b\x59\x93\x88\xde\x88\xdb\xc0\x66\x23\xb3\xeb\x99\x67\xaa\x29\x49\xd1\x45\x6b\xb9\x07\xc9\xff\xf9\xef\xd8\xc0\x82\xfd\xb0\x55\xeb\x92\x92\xdd\xe5\x69\xd0\x67\xfd\xf3\x70\x3b\x22\x9e\x12\xd1\xf3\xc3\xe5\xee\x92\x38\x14\x42\xab\xc7\xb2\x8a\x95\x1d\x6c\xca\xf9\xf8\x3e\x94\xa0\x82\xd9\x19\xdb\xef\x27\xfe\x2e\xe5\x23\x44\xf7\x8f\x4b\x91\x95\xf6\x74\xa7\x90\x24\xb8\xc0\x70\x09\x4d\xbf\x9c\xb5\x5f\x42\xba\x61\x1e\xed\x95\x6e\xf7\x93\xfd\xc9\x17\x6b\xe7\x19\xb0\x1e\x74\x9d\x61\xa7\xc2\x1d\x41\x7b\xf3\xf5\xe2\x1b\xf0\x6c\x39\xf2\xa2\xd8\x1d\x74\xd9\x0c\x7a\x6d\xed\xaf\x2c\x47\x59\x77\x97\xed\x64\xd4\xdd\x29\x1b\x82\xc1\x7b\xd9\x52\xe3\xed\xe0\xab\x45\xd3\x32\x07\x2f\xbe\x3d\xf3\x4a\x01\x7c\x66\x51\xf0\xb0\x03\x04\x11\x0d\xf7\x75\x7c\x08\x41\xa0\xb9\xcb\xc9\x90\x67\xbb\x41\xcf\xb7\x9a\x13\x72\x60\xd6\xc2\x1f\x49\x16\x81\x87\xba\x6d\xde\x45\xa7\x81\xb0\x47\x40\xb6\x6f\xc6\xb4\xdd\x11\x3e\x40\x5f\xf9\x5d\x7d\xe9\x5e\x57\x5b\xba\xac\xeb\x60\xd8\x05\x9a\xdf\x9c\x32\xbb\x92\xf7\x2b\x6d\x12\xbf\x0a\x39\xbc\xab\x9e\x51\xa1\xd1\x64\x9c\xa8\x55\xf2\xf4\x26\xbf\xe9\x79\x67\x9e\xf6\xd5\xfe\x55\x45\x32\x7a\x5e\xcf\xba\xfa\x8b\xf9\x79\x70\x23\x5e\x2d\x0e\x0d\xc5\x93\x45\x17\xb1\xd9\xa1\xd0\xee\x17\x22\x40\x91\x52\x23\xa3\x4d\xc4\xa9\xdf\xb6\x78\x39\xcd\x56\x61\x5a\x18\x36\x53\x65\x7f\x00\xe2\x97\xb8\x25\x13\xba\xf7\xdc\x20\x95\xfe\x35\xb1\x2f\x5c\x20\x05\x8b\x71\xf1\x16\x5a\xc3\x09\x44\x6d\xaf\xfd\x6a\xb3\x7c\x94\xaf\x55\x2b\xed\xa5\xb3\xa5\x6b\xd3\xc0\x39\xf8\x3c\x22\x94\xe1\x0f\x91\xc6\x2f\x58\x61\x75\x01\x41\x7a\xb2\x65\xe9\xe9\xb1\x23\xa9\x66\x44\xc6\x8d\x27\x27\xeb\xf9\xef\xbf\x1f\x10\x53\x00\x0e\xeb\xaa\x10\xfd\x72\xc4\x7b\x91\x2e\xa4\x76\xe9\x8e\x2a\xbe\x25\x77\x57\x8d\x06\xa4\xd5\x11\x8b\x7e\xf1\xb0\x82\xd0\x39\xc3\x51\x8e\xce\x97\x29\x63\x9a\xec\xa2\xa5\xda\xdd\xe0\x6d\x7a\xf5\x2c\x6a\xfe\x07\xea\xc3\xf7\x7e\x08\x1a\x5a\xfb\xab\xf0\xc9\x84\x14\x06\xd7\x9c\xb0\x35\x63\x80\x69\x2e\xfc\x4e\x63\xf8\xfe\x74\x0c\x3a\x9e\x8f\x3a\x3e\x88\x4d\x2f\x73\x50\x1e\xca\xa5\xbb\xdd\x8b\x36\x4d\xe7\xfc\xf7\x3e\x15\x87\x4d\x93\x48\x3e\x35\xbb\xf1\x67\xba\x1a\x81\x67\x6c\xa9\x13\xa4\x80\x96\x12\xbc\xba\xf3\xd3\x20\x48\x45\x32\x6f\xbc\xdb\x1f\x19\xf9\xaa\xf6\xf3\x1f\x7f\x84\x3c\x53\x3e\xfc\xcc\x27\x03\xf1\x8b\x33\x49\x78\x70\x20\x0d\x72\xca\x0b\x86\xb7\xfa\xab\x94\xf6\x70\xcc\xc9\xef\x9c\x7a\x51\x30\x8a\x95\x70\x49\xf7\xd3\x0f\x99\x47\x3e\x1c\x6e\xa3\x57\xdc\xbd\xcb\xa6\x00\xbe\x17\x6d\x9a\x8f\x86\x12\xc9\xa2\x8b\x04\xc2\x20\x3d\xc2\x40\xd1\x10\xd3\x40\xdd\x27\x7e\xb4\xb4\x8d\x31\xd1\xcc\xf9\x69\x54\x62\xc5\x4b\xf3\xe4\x42\xa5\xcc\x99\xa8\x08\x0f\x91\xa8\xeb\x25\x5d\x80\x71\x6d\xc2\xb7\x82\x24\x23\xe0\xee\xbc\x6e\x4b\x33\xfe\x95\xbc\x9c\x5f\x28\x0f\xb1\x0b\xa5\xd1\x1d\x13\xd2\xf8\xb6\xbf\xdf\x68\x62\xb1\x76\x47\x37\xb3\x15\x6b\xc8\x16\x2c\x84\x21\x3e\x81\x61\xff\x2b\x3c\x60\xe1\xc7\xa7\xea\x5f\xa4\xc0\xb9\x58\x59\xf3\x8f\xea\x9a\xde\x4d\xa7\x8d\xfd\x7c\x97\x09\xcb\x10\x7a\x7c\xeb\x32\xe9\xc5\x9b\x3f\x37\x2f\x2e\x8f\xd9\x0e\x61\xb9\xb5\x82\xd6\xb3\x96\x64\x31\x4e\x80\x8f\x1d\x23\x33\x15\x6b\x38\x79\xd1\xb7\x7e\x18\x39\xd0\xf4\xce\x22\xdd\xd2\xad\xfa\x08\xc7\x66\x4d\x62\xd4\xd0\x28\x6b\x67\x3b\x9e\x0a\x46\xbf\xaf\x5e\x7c\x01\x11\x57\x0d\xaf\x2a\x44\xd4\xa7\xfe\xaf\x0b\x3e\xe0\x33\x27\x64\x62\x1a\xba\xfd\x73\x9a\x52\xde\x2f\x44\x91\xc2\x39\x39\x2b\xfd\x85\x9a\x9c\x8e\xdb\x8d\xad\xe0\x7f\xbd\x02\x2d\xfa\x83\xf8\x1f\x9d\x5f\x7b\xf9\x9d\x6d\x5c\xe0\x21\x15\xc9\x34\xd4\x6b\xf5\xb9\x01\xa9\x18\xf3\xc6\x5f\xc2\xc9\xa7\x84\xbb\x71\x22\x3f\x67\x3e\xa1\x50\xdc\xa2\xce\x86\x61\x58\xad\x73\x78\xb9\x11\x1f\xcb\x48\x78\xed\x8a\x13\x89\x86\x4b\x48\xe0\xe3\xad\x24\xc0\xd5\xf6\x4b\x2f\xd1\x8a\xe6\xe9\xdd\xfa\xac\x3a\xb4\x57\xea\x84\xef\x4c\xe2\xe2\x19\x19\xd8\xc2\xef\x9e\xfe\xd0\x7d\xf2\xa7\xf4\xc4\xf4\x35\x72\x56\x4f\xf2\xa2\x84\x47\x8c\x52\x40\x25\x83\xda\xe5\xfa\xab\xf3\x1d\x21\xd3\xcb\x87\xff\xe6\x0f\x5f\xae\x92\xf4\xad\xf6\x9c\xa6\xcf\xff\xfe\x5a\x1f\x6a\xfe\xa8\xea\x5f\x2f\x7e\x4e\x98\x23\x12\xdf\x76\x3b\xdd\x21\xfe\xf3\x03\xb0\xa1\xee\xf8\xa5\x4f\xd5\xd7\xc7\x82\x22\xbf\x8e\x5d\xd7\x3d\x85\x07\x2a\x12\x22\x4b\xbc\x04\x7e\xaa\x4c\xdf\x89\xd8\xea\x7d\x1d\x45\xbe\x5d\x9c\x5c\x2f\x81\x3c\x00\x5e\x72\xd9\x79\x12\x0b\x97\x13\x0b\x0b\xc5\x45\x96\x4d\x37\x8d\x18\x0d\x2e\x0d\x5c\x3e\x2f\xbf\x4a\xb5\x14\xc6\xb2\x04\x04\x53\x3c\xfe\x43\x20\x3e\x47\xa0\xd7\xc5\x51\x68\x38\xd7\x26\x9b\xdd\x8b\xfa\xdc\x7d\x52\x66\x4c\x90\xb0\xd3\xdb\xe1\xc4\x3e\xad\x20\xbb\x4c\xa1\xdc\xbc\x6a\xc1\x3a\x37\x1a\x21\xf2\x3d\x27\x00\x7d\x50\xc8\xca\xe7\xf8\x9c\x19\xc9\xe1\xfd\xf0\x16\x90\xd1\x24\x54\x36\xb6\x7e\x22\xbb\x26\x13\xca\xc1\xbf\xf9\xca\x25\xb1\xd3\x46\xfb\x6a\xff\x9b\x48\x66\x70\x0b\xe3\xd9\xf5\x80\x9f\x67\x74\x3b\x07\x02\xff\x0b\xcc\x92\x4f\x23\x69\xed\xef\xf7\xbc\xb8\xd4\xd6\xc4\x2e\xe2\xd9\xac\xc0\x6d\x72\x8c\x56\xea\xef\xbf\x6b\x39\x4a\x84\xfb\x4d\xc2\x40\x31\x07\x52\x1b\x72\xed\x65\x19\x99\x2f\xf2\x35\x62\xbe\x6c\xf4\x7c\x60\xeb\x23\xfe\xba\x93\xe0\x83\xdd\xe3\x7d\x16\x76\xe4\x86\xcb\xfe\xfc\x69\xd9\x90\x82\xa1\x14\xc6\x25\xf1\xf5\xc5\xd5\x0e\xfe\xc3\x1a\x51\xf5\x9c\x1a\x1c\x13\x05\xb5\x26\xca\x3a\x98\xb8\x49\xc5\x9f\xe0\x2b\x05\x1c\x45\xc4\x72\x0b\x6b\xbf\xbb\x17\xfb\xcb\xaf\xf4\xa3\xc8\x06\x4d\x40\x90\x15\xf4\xdc\x63\x06\x83\x9b\xba\xdb\x23\x3f\xbe\x9c\xe9\x2f\x72\xb3\xc4\x47\xa6\x11\x4a\x3f\x4e\x74\xd9\xf8\x37\xe3\xb0\x23\xd3\xfb\x5f\xbb\x57\x70\x9d\x04\xc2\x1c\xb1\xe4\x47\x2a\x9c\x8b\x15\xc2\x6d\xe1\xfb\xf4\x5a\x51\x93\x90\xbe\xa7\x18\x47\xd8\x9c\x83\x2c\x6f\xbc\x94\x87\xda\x43\x96\x46\x6d\xf6\xc7\xc7\x00\x5e\xe7\x6b\xbf\x44\x10\x15\x3c\x35\x09\x41\x85\xd1\xea\xac\xaf\x45\x4b\x98\xa7\xdb\xf7\x9d\xca\x4f\x30\x46\xf3\x35\x6c\xc7\xd6\x1c\x1e\xba\xa7\x64\x8e\xb1\x3e\x6b\xc4\xc7\x7a\x93\x0c\x6e\x91\xfe\xaf\x91\xf4\x4d\xaf\x95\x8a\x85\x40\xc8\xf7\xf5\xdf\x9b\xd4\xff\x9b\xac\x37\xfc\xcc\x96\xcd\x63\xee\x7f\x70\xf4\xdc\xfc\x67\x2f\x71\x37\x46\x82\x0e\x00\x5e\x22\x58\x1d\x77\x99\x00\x4e\xa7\xfd\xf2\xf2\x53\x44\x98\xa1\xcd\x43\xe3\xf1\xee\xda\x8e\xf3\xbf\xf5\x86\x4d\x0e\x6d\xd9\xbf\xd9\x84\xae\xa6\xbf\x89\x64\xd2\xe9\xe5\x30\x73\xcd\x1f\xd1\x0d\x9f\xb1\xf4\x3a\x70\x41\x69\x62\x0c\x1e\xdd\x7a\xcb\x6a\xe2\x4c\x9b\x93\xc5\xaa\x43\x77\xa5\x1e\x6e\x9d\xd2\xeb\x2b\xe3\xaa\x63\x5d\x39\xcc\x88\x3e\x85\xf9\x65\x02\x2e\x65\xc0\xc9\xf8\x73\xd5\xeb\x00\x1f\x66\xa5\xff\xe2\x0e\xa1\xac\x49\x28\x32\xd0\x24\x9e\x20\x01\x7e\x2e\x8e\x51\x24\x86\x94\xe1\x7f\x77\x65\x37\xde\xd8\xfb\x44\x2a\x3a\xc0\xd9\x10\xef\xae\x1a\x72\x41\xd9\xc9\xbd\xe4\x81\xdc\xd8\xc0\xc5\x1e\x69\x14\x4f\xe4\xac\xc0\x0c\x35\xaa\xc4\x6c\x61\xf0\x56\xe2\x19\x00\xe8\x25\x32\x48\x58\x50\xc1\x63\x5f\x7f\x42\x00\x46\x86\x7b\x1e\x22\xba\x7c\xa7\x9d\x47\xa8\x0c\x82\x1f\x60\x6f\xbc\xb8\x37\x96\xf5\x11\x1d\xf9\x5e\x92\x53\xc5\x7d\x78\x19\x7b\x46\xd7\x41\x8c\xfb\x07\x6c\x24\x77\x09\xc3\x30\x5a\xd6\xa5\x32\x1c\x78\xd2\xfb\x86\xd6\xe5\xee\x7d\x4a\x0a\xfd\x40\x3f\x86\x79\x17\x92\xca\x2a\xec\xe6\xce\x56\xff\xac\x20\xd0\x95\x45\x28\xd3\x13\x0a\x8c\x92\x3d\x6b\x2e\xd5\xb0\xe7\x38\x93\xc7\x51\xeb\x3a\x67\x8a\x6f\x3c\xc3\x2e\xe7\x56\x2f\xfd\x15\x34\x39\xbf\x4a\x27\xc6\x78\x23\xa2\xe1\x5c\x72\x54\xf3\x4c\xa0\x78\x40\xfa\xbe\xc5\xef\x37\xea\xac\x13\x45\x53\xa7\x30\xbf\x7d\x04\x52\xd2\x04\xb8\x8d\xf2\xc8\x19\x9d\x85\x61\xb4\x14\xba\x2a\xf2\xdf\x8b\x8b\x2c\xe7\x65\x7c\x86\x25\xb7\x37\xe6\x36\x28\x93\x9e\x37\x5c\x56\xa9\xb5\xa1\x3b\x1d\x32\x0e\x58\x9a\x89\x64\xd1\x8e\xac\x28\x0c\x99\x6f\x3f\xbd\xda\x1f\x97\x44\xae\xd7\x10\x27\xad\x68\xdf\x55\x98\xe4\x34\xec\x6b\xb6\x20\xd0\xf5\x98\x44\x99\xc2\x3b\x86\x39\xf1\xe9\x7f\x8e\xdf\xad\x1f\x6b\xe7\xf4\x05\x0a\x52\xe4\x53\x3f\x89\x9b\x2f\x89\x57\x7f\x42\x8f\xfa\x98\xd5\xfe\x4f\x12\x1d\xb3\x9b\x4e\x9f\x3a\x41\xa0\x6a\xef\x5f\x8d\x5d\xef\x0f\xed\x73\xa1\x37\xbf\x82\xd1\xf7\x2e\xdb\xac\xb4\x41\xdd\x08\xad\x19\x84\xfc\xa5\x5f\x06\xa3\x16\x7f\x7d\x9c\x5e\xf3\x97\x2c\x23\xf4\x8b\xc3\x65\x37\x3c\xb1\xb5\x15\xb5\x53\xf1\x3b\xcb\x3e\x17\x14\x7f\x88\x25\xd3\x0e\x5c\xd0\x97\xec\xb4\x4e\x93\x69\xd9\x3d\xf4\xc1\xf1\x91\x62\x5d\x70\x49\xab\x07\x71\xe6\x8e\x64\x76\x44\x95\x47\xf6\xa0\x4d\x47\x42\xf8\xad\xdc\xd3\x11\x04\x9b\xc0\xcf\xbd\xed\xba\x2d\xda\x82\x44\x0f\x04\xed\x2a\x26\xd6\xe3\xf8\xc3\x6f\xff\x66\x1b\x31\x4c\x4f\x8f\xb2\xf1\x7a\x54\xef\x11\x0b\x04\xcc\x13\xa7\x2f\x27\xea\x11\x30\xc6\xff\xe5\xfe\xae\xff\x16\x79\x42\xbd\x8e\x75\xe0\x70\x9f\x72\xea\x07\xc7\xbf\xcc\xc8\xeb\x4e\x0f\x48\xa3\x32\xe9\xd9\x3c\x7b\xcf\x0d\x60\x4a\x36\x99\x68\x79\xca\x69\x98\xe6\xd7\x96\xb4\xb3\xbd\x31\x16\xe1\x42\x33\xe6\xdc\x84\x83\x36\xf4\xf7\x73\x16\x08\xf8\x43\xf2\x32\x74\x95\x6f\x54\xf4\x31\x83\x08\xcd\x55\x69\x98\xbc\x8f\x9a\x5b\xbb\xed\xc2\x8f\xab\x9f\x08\xe7\x5b\x1e\xe4\x45\xdf\x84\x4c\x93\xf7\x57\xce\x2f\xec\x08\x81\xa3\x3d\xee\x8e\x64\x35\xa4\x12\x8c\xf7\x52\x76\x5d\x54\x7d\x7e\xc0\xf4\xbf\x85\x98\x24\x42\x7c\x9f\x73\x7a\x53\x93\x0b\x0a\x89\x07\xd1\xc9\xb3\x02\xf5\x69\x8f\x86\xe3\xf5\x82\x13\x22\x63\x16\x7d\x25\x65\x75\x73\x3b\xbb\xd9\x82\x75\xea\xd1\x15\x2d\x28\x33\xa7\x98\xb3\xb9\xb7\x16\xc0\x6d\x75\x6b\xd2\x8b\x3f\x46\x85\x73\xff\x8d\xfd\x34\x5b\x97\x85\x6a\xba\x2c\x1f\xcd\xa4\x59\xad\x13\x9b\xfc\xf6\x88\x4d\x7e\xa9\xdc\x1c\x4d\x78\x8d\x89\x42\x38\x17\xab\xeb\x3c\x0a\x06\xd4\xc7\xec\x67\x50\x75\x74\x6e\x3b\x7b\xd3\x5e\x81\x15\x9c\x74\x6b\x9a\xd2\x7d\x39\x14\x50\xbf\xc7\x0b\x0c\x1f\xf8\xe9\x7c\xfd\x2e\x0c\x28\xb9\x11\xab\x3b\x62\xff\x6c\x04\xb9\xf8\x3c\xa5\x55\x8e\x7b\x14\xa2\xd4\xf5\x95\xbe\x7e\xb4\x34\xf2\x6a\x3a\x62\xef\xf8\x51\xf5\xb2\xc4\x2a\xe7\x4d\x1c\x8b\x36\x82\x2c\x7a\x45\x8b\x72\xce\x3d\xa6\x77\xf9\xd8\xa0\x23\x7e\x64\x64\xea\x65\x60\x5d\xf9\xf8\xa8\x53\x61\x30\x13\x3b\x48\xa4\x3a\xe0\xf4\x30\xe3\x62\x56\xc1\x07\xb2\xec\x22\xe0\x86\xb8\x13\x18\x3d\x37\x7a\x69\x59\xf0\x3b\xb9\xb0\xf0\x93\x76\x5d\x31\x65\x22\xe1\x9d\x59\xf0\xce\xcf\xe7\x7b\x7f\xf6\x50\x5d\x94\x81\xc5\x9c\x7c\xf8\xbe\x5c\x02\x64\x55\x1c\x0a\x89\x8f\x5b\x96\x72\xeb\xee\x63\x2c\xfd\xf9\x6c\xf0\xf1\xef\x57\x0a\xc1\xb3\x89\x16\xd7\xe4\x50\xe6\xad\x69\x67\x7b\xb5\xa8\xfc\x58\xb1\x46\x33\x32\x4f\x0e\x9b\x47\x26\xff\x06\xb9\x35\x83\x58\x25\xf6\xba\x70\x78\xcb\xa7\x92\x56\x59\x7e\x7f\x1a\xad\xd6\x76\xf8\x64\xe8\x72\x97\xd8\x14\x4a\x37\x1f\x87\x06\xad\x6a\x23\x18\xcb\x5e\x51\x81\x63\x1a\xfa\xc5\xf1\xb1\x1c\x40\xab\x9f\x9c\xc6\xa8\x68\xad\x5b\x8d\xb8\xa7\xd4\xf0\x8d\x2b\xd4\xef\x9b\x48\x64\xa6\xd9\xe5\xdf\xfd\x97\x7e\xe9\x1f\x6e\x8a\xef\xa8\x87\x83\x1e\xd9\x3d\x8d\xa7\x24\x95\x5f\x91\xda\xf7\x66\xe7\xaa\x72\x4f\xa6\xfc\x6e\x49\xd1\x93\x53\xac\x74\xfa\x6d\xf4\xd4\xb6\x6f\x9f\xe6\xaa\x52\x8f\x3f\xde\xdf\xa0\x44\xac\x5e\xfe\x1b\x73\x1d\xab\x5d\xb4\x07\x41\x6d\x31\xa4\x81\xc3\x75\x94\xa2\x93\x72\x43\x37\xb9\x5d\x69\x97\xf1\xcc\x85\xd1\x22\x4a\xca\x35\xea\x92\xd7\xe5\x93\xec\xcf\x66\xd3\x82\xa9\x7e\x89\x17\x54\x70\xc7\x35\x87\x8c\x2b\x87\x1e\xf6\x26\x69\x79\x82\xf9\xe8\x80\x80\xe3\x88\x34\xc9\x93\x6a\x74\x31\x4f\x52\xd9\x7a\xd4\xca\xd0\xd1\xe1\x20\x38\xe5\x2a\xa5\x14\x16\x0d\x97\x78\x86\xb2\x26\x15\xc0\x9b\x5f\x48\x0a\x04\xfb\x77\x5f\xaa\xa8\x04\x73\x1e\xd2\xd3\x97\x33\xf9\xbb\x0b\xac\x2e\x10\x9d\x8b\x2f\x6f\x69\x7a\xf1\x4d\xab\xc4\x0e\xdb\xf0\x00\x2f\x49\xdd\x0a\x2f\xa8\x90\xa9\x95\x05\x24\x29\x40\x70\x23\xc8\x45\x64\x2e\xf7\x84\xca\x4d\x50\x72\x97\x31\xf2\xb6\xed\x48\xed\x69\x53\xe0\xf1\x70\xfb\xb6\xfe\x26\x3b\x8e\xae\x11\x0f\x72\xc4\xfb\xa8\x46\xc3\x25\x0a\xc0\x67\x05\xf5\x50\xe4\xbb\xc6\x27\x6a\x91\xe2\xd2\xd8\x91\xdb\x38\xec\x08\x2b\x76\x8a\xe9\xe1\x89\x11\xa0\xf9\x55\xe7\xb6\x5d\x67\xb7\x55\x68\xb8\xec\xfe\x2e\xa0\x2e\x0c\xf4\xbc\xd9\x51\xdf\x6d\xe7\x29\x03\xc0\x35\x08\x2c\x7d\x4f\x14\x06\x6d\x79\x55\x57\xb0\x3c\xe5\x30\x7d\xe7\x45\xd0\x7b\x17\x12\x3b\x92\x25\x30\x78\x0f\x13\xb1\xf7\xe7\xb3\x0e\xae\x68\xea\x88\x6e\x90\xc0\x53\xfb\x4f\x77\x58\xa5\xf2\x55\x01\xfd\x55\x3a\x80\x5f\xed\xcb\xd9\x9c\xc9\x7a\xa3\xc0\xad\x1d\x46\x1b\xe7\x29\xee\x02\x89\x3a\xe1\x00\xdc\xb4\xed\xe9\x5e\x67\x63\xfc\xbb\xf0\x75\xd9\x2f\x0f\x5b\xac\x0a\xc1\x8f\xac\x43\x2e\xe3\x10\xba\x7f\x0a\x33\x63\x1e\xca\xda\xbc\x75\x78\xcb\x3a\x44\x73\xc5\x5b\x78\x5d\xd7\x39\x33\xc1\xfa\xf8\xb2\xaf\xe6\x02\xda\x1b\x87\xf6\x25\x50\x83\x63\xfc\x7a\x7f\xe7\xe5\xf2\x21\x8d\x96\xfb\x14\xc9\xbf\x02\xc8\xc7\xe6\xc5\x17\xa9\x16\x43\x58\xc5\x9f\x56\x9c\x74\x6a\x94\x2b\xff\xfb\x85\x24\xbe\xf1\xcc\x07\xd1\x61\x7b\x81\xe2\xb6\x8f\x3e\x7b\xe4\x79\xc7\x1f\xe0\x77\xc2\xde\xd1\x20\xe7\x7a\xf6\xd7\x47\xfa\x02\x9b\x93\x3f\xfb\x6f\x2d\xa5\xc1\x5e\xea\x54\xb8\xeb\xe4\x04\xd9\xb4\x5f\x08\x0d\xf1\xfc\x74\x19\xfa\x61\xd5\x50\xdc\x0f\xf1\xf6\x44\x00\x0a\x79\x44\xb5\xac\xcc\x74\x8f\x9c\xc6\x14\xf8\x12\xf9\xa9\x23\xbf\x49\x76\x49\xc9\x0e\x3f\x45\xa8\xb9\x28\x16\x6a\xe0\xd9\xe9\x1a\x03\x85\x68\x94\x29\xb4\x62\x9e\xf9\x38\xd8\x08\x21\x1c\x75\x6a\x20\x7b\xda\x33\x2a\xe4\x5c\x35\xb7\xc6\x67\xa5\xa5\xc8\xee\x97\x9e\x88\xeb\x9d\x8b\x34\x32\xbb\x3e\x2b\xae\xf9\x72\xd7\x54\x51\x76\xd7\x3f\xea\xb6\x5e\xce\x4d\xac\x21\x5b\xe1\x3e\xef\x7b\x51\x08\x0b\xf1\xdb\x5d\x6a\x73\x2e\xa8\x1e\x53\xc1\x81\xe6\xf8\x47\x00\x5a\x89\xf5\x5a\xb2\x17\x03\x01\x73\xaf\x14\xd8\xb0\xf9\xc2\xc4\x41\xbe\x05\xf9\xf4\x5f\xf6\xaf\xe7\x78\x53\xae\x67\x4f\x8e\x42\x2b\x2e\xb2\x3b\xc3\x3c\x3f\x9d\xed\xbb\xa7\x64\xee\x94\x8f\x9c\x71\x85\xf5\x5f\xf6\x6f\xd8\xbd\xca\xa5\xe0\x92\x0b\x6f\xaf\xc5\x92\x2e\xec\x08\xaa\x13\x77\xc7\x5c\x68\x87\xea\x0d\xcf\xea\x8d\x46\xf2\xf7\x50\xfe\x1b\xc3\xed\xf3\xa2\xb3\xc1\x17\x57\x8b\x86\xbd\xa7\xe2\x50\xc8\x60\x3c\x54\x1c\x09\xa3\x2b\xe2\xa3\x84\x6e\xf7\xb6\xac\xdd\xb9\xc8\xee\x3c\x5d\xaa\x5a\xfb\xcd\x59\x97\x41\x1a\x76\x1b\xea\xd8\x7b\xd3\xd3\x44\x2d\xe3\x6a\x11\x95\xf1\x00\x16\x49\x7a\xb2\x05\x43\x7c\xb6\x25\xf6\x0b\xe0\x63\xa9\x90\x96\xcd\x12\x87\xa1\x96\x3c\xab\xa0\xcd\x86\xbd\xba\xf7\xf7\xb5\x5f\xb4\x57\x46\x69\x04\x1e\x1e\xd5\x8f\x5d\xd4\xfb\x02\xf6\xe9\xd6\xfb\xc3\xed\xf3\x9a\xdc\x49\x88\xbb\x3b\xff\x64\x5a\x21\x8a\x0f\xa9\x1a\x29\x8e\xfb\x02\xc8\xf9\x02\xc0\xc1\x67\x9d\x8b\x6f\xc3\xcc\xfe\x3c\xae\x3e\x0e\xb3\xaf\xed\x1e\x66\xce\x88\xf1\x8b\x4a\xe9\xb2\x86\x09\xdf\x1a\x00\xb5\x89\x36\xcc\xdb\x8f\xd8\x21\xee\xbb\x2e\x7d\x51\xb0\xe9\xec\x62\xf1\x6f\x61\x8d\x91\x9a\x24\x47\xe3\x36\x6f\xd8\x1c\xbf\xa8\xc3\xeb\x23\xf9\xc5\xce\xb0\x92\x0c\xff\x60\x7f\x8b\x96\x02\x2a\x37\x5e\x34\xfc\xf2\x50\x0b\x7b\x2b\xc1\xc4\x76\x96\xc4\x71\x33\xb9\xbd\x31\xab\xa1\x3b\x44\xc2\x4b\x11\x19\xb4\xe3\xf0\xe4\x1f\x25\x0d\x7f\xdd\x61\x57\xb7\x7c\x58\xfd\x7b\x6c\x01\x96\xed\xab\x8e\x1b\x57\x57\x9d\xad\x33\xb2\x22\x14\x82\x98\x00\x51\x2f\xf9\xd0\x45\xd1\x1a\xb7\x1a\x4d\x11\x8d\xd3\x93\x08\x6d\xf9\x4c\xc9\x52\xf9\xcc\x35\xd6\xb5\xae\xf0\x9a\x5b\x64\xcf\xbe\x37\x7d\x66\x0b\x2e\xa8\x71\xab\xb9\xaa\xbe\xb5\x73\xe8\xbd\xb0\x14\x04\x11\x57\xfb\x7a\x0d\x54\x3b\x8d\x98\x59\xa8\xd6\x76\xce\x60\x02\x10\x5b\x0e\xf5\xc7\x85\x77\x25\x4b\xc5\x58\x32\x87\x3b\x62\x0d\x6f\x5c\xa9\xd3\x51\xd7\x8d\x0d\xd8\xa3\xe5\x1d\x08\xb3\x19\x56\x94\xf3\xff\x2f\xac\x0d\x03\x15\x60\xa0\x09\x73\x2d\x44\x07\x19\x8c\xc4\x06\x3f\xbe\xbc\x3e\xc9\xf4\x6c\x39\xbf\xca\xdc\x42\x1a\xf3\x78\xfe\x8d\xb7\x58\x46\x66\x5c\xdc\xe7\x8e\xf7\x52\xda\x16\xc1\x5a\x26\xfe\xbe\xb6\xce\x5a\x2a\x5f\x88\x0f\xd9\x41\x1b\xc0\xc2\xc0\xc8\x27\xa1\x1a\x33\x63\x8f\xe2\xca\xce\xf6\x3d\x54\x57\x43\x4e\x93\x6c\x4a\x47\x5e\xb0\x24\x4e\xd6\xea\xf8\xb2\x16\x9c\x50\x4b\x7e\xa3\x3e\x69\x19\x91\xf0\x09\x08\xf0\x23\xc9\xe6\x91\xde\x7f\xf7\xa4\x36\x7d\x70\xf1\xb9\xdf\x28\x6c\x76\x23\xc2\xca\xb6\x77\x54\xd3\xfa\xf8\xd7\x69\x46\x33\xed\xab\x17\xac\x9b\xb5\xbf\x39\x01\xbd\xa5\x51\x01\x28\x84\xff\x26\xc9\x7e\x3d\x70\x5c\x8d\x1b\xcd\x38\x2f\x93\xcd\x53\x4f\x93\x73\x2b\xfe\xf9\xbb\x20\xc6\x9f\xd3\xf9\xd6\x7f\x5e\x6f\x3b\xdb\x05\xd7\x17\xd4\x6b\xdd\xf5\x4e\x97\x73\xd2\x5a\x4b\xf4\x4f\x46\x4a\x8d\xd8\xa9\xb9\x3d\xd2\x0e\x14\x79\x10\x67\xee\xd5\xab\x97\x70\x70\xbb\x36\x95\xb3\xa5\x68\xea\xf7\xed\xdd\x96\xdb\xf7\x3a\x95\x65\x8a\x67\x8a\x45\x80\x1b\x1d\x99\x44\xa1\x61\x8d\xd3\xe7\xbd\xfc\x63\x5f\xb3\x5b\x08\xeb\xc0\x97\xca\x76\xcf\x56\xf7\x57\x6c\x62\x18\xfb\x2f\x3f\x0a\x4f\x04\x6c\x49\x64\xd1\x8e\xbb\x94\x94\xe4\x21\x54\xc0\x29\xe1\x71\xbd\x9f\xd1\xf0\x08\x50\x89\x4d\xb9\x0d\x54\x8a\x61\x1e\x58\x16\x97\x7d\x54\x75\x05\xde\x48\x50\x50\xfa\xab\x17\x71\x4b\xcb\x01\xd7\xc0\xef\xaf\x55\xd0\xec\xd1\x71\x1e\x75\x65\xa1\x29\xa2\x57\xc3\x97\x3c\x48\x37\xb2\x88\xfa\xbc\x6a\xe6\x40\x58\xfe\xa5\xac\x79\xfa\x84\x3f\xf3\x45\xda\xda\x5a\x9c\x53\x01\xf6\xd7\x0a\x83\xb7\x72\xae\x54\xdd\xc6\xda\x4f\x19\x4d\xd1\xdc\x8a\xca\x0b\x16\x08\x98\x51\x83\x82\xef\xab\xe1\xe6\x24\xbc\x12\x9b\x70\x1b\xa8\x7c\xa5\x16\x4d\x90\x39\x60\x50\x83\xb3\xae\xd9\x73\x80\xce\xed\x61\xcf\x01\x63\x23\x4a\x89\xc8\xb1\xae\xc2\xc0\xdb\x0d\xca\xff\x5d\x61\x2b\x43\x01\xfc\x34\xc2\xff\x60\xcc\x44\xdb\x4e\x8f\x6d\xe2\x38\x3b\xf6\xe1\x2e\xa3\x12\xcd\xab\x2c\x74\x35\xce\xed\xa5\x0d\xad\x9b\xfd\xb7\xaa\xa2\x03\x3a\x7f\x25\xfd\xbf\xfa\xff\x52\x59\x48\xab\x03\xaf\xaf\x32\xb0\xfa\xc5\x45\x7d\xbb\x6c\xf9\x55\x9f\x34\x44\x69\x0e\x6a\x06\xc4\x2c\x52\xc4\xea\x20\x05\x76\x09\xaa\xcb\x67\x84\x4f\x2c\xc7\x30\x8b\xc1\x19\x41\x41\xc0\xf8\x07\x42\x0a\xf8\x2e\xa5\x31\xef\xac\x1d\xc9\x8f\x79\xd3\xd8\xa7\xfc\x5f\xdf\x5a\x23\x31\x58\xee\x61\xc8\x34\x89\x77\x19\x49\x16\xed\xf8\x62\x6b\x8d\x12\x82\x01\xc0\xee\x14\xdf\xa3\xfb\xa8\xa9\xc3\x5f\xdc\x1d\xb9\xb6\x12\xc7\x88\xd7\x41\x22\xb8\xde\xe2\x16\x48\x0a\x4e\xf1\x33\x0d\xb3\xe1\x09\xd3\x10\xc1\x5e\x02\xe7\x2e\x41\x7c\xec\x5d\xe6\xd6\x5c\x32\x3e\x46\xef\xbf\x49\xa3\xba\x49\x53\xa3\xf1\x45\x01\x5c\xc5\x2b\xf1\xda\xb0\xce\xe1\xfa\xa8\x5f\x4e\xfb\x02\x40\x36\x9e\xcd\x88\x0b\xaa\x27\x13\xcd\xaf\x12\x95\x02\xdb\xfc\xe4\xf3\x93\x0a\x49\x30\xe9\x92\x02\x32\x80\x22\x00\xd0\x00\xbe\x6b\xb2\x93\x2f\x1b\x3f\x67\xe7\x7b\x5a\x7b\x5c\x17\x2d\xf1\xe5\x31\x6b\x90\xc0\x57\xc7\x0d\xb4\xe3\x1e\xfa\xb3\x95\x89\x65\x5a\x79\x00\xe5\xe0\xfd\x8b\x31\xee\x85\x10\x45\xd7\xa8\x16\xb6\xe0\x16\xee\x87\x87\xbc\x52\x67\xbc\x50\x08\xf8\x8f\x41\x22\x03\x14\x73\x89\x13\x00\xae\x33\x47\x53\x4d\x92\x77\x04\x33\xa9\xd1\x62\xdd\x5d\x13\x3f\x1d\xd2\x89\x9c\x2a\x58\x78\x23\x60\x6a\xc6\x40\x07\x2f\xe9\x01\x33\xb2\x49\x88\x8f\x65\x68\x88\x6f\x54\xc3\xe5\xf7\x45\x5d\x91\x42\x2a\xe7\x93\x57\xbf\xb3\xfa\x85\xc7\xc5\xf0\x1f\xe6\xf5\xc9\xbe\x1e\xb6\x53\x92\x93\xf5\xfc\x65\x5c\xa5\x4c\x3c\xba\x0e\x96\xc6\x11\x4e\xaf\x32\x69\x35\xeb\x5b\xd0\x79\x3d\x81\xf7\x44\x11\xa9\xc6\xdf\x41\x40\x62\x25\xa1\xb0\xea\xbb\xf4\xdc\xc7\x08\x72\xff\xd2\x1b\x57\x60\xba\xff\xdb\xf8\xe9\x1d\x50\x4f\x8c\x95\x14\x74\xfa\x57\x70\x49\x7c\xbc\x02\x80\x23\x62\x4c\xcd\x68\x99\xa2\xeb\x3c\xea\xe0\xbf\x70\xda\xf1\x79\x23\xc1\x91\xce\x15\x21\x56\xa7\xd4\x9e\xc8\xb3\x59\xca\xa8\x54\x27\x61\xe0\x8e\x27\x89\x2f\xbe\x69\x20\xed\x85\xb0\xf7\x9f\xe3\xbe\x6e\xad\x84\xb2\xd2\xf6\x1d\x43\xa9\x69\x25\x53\x37\xd7\xcd\x2e\x0c\x27\xf0\x7a\x63\x54\x10\x0a\xe1\xe7\xf4\xf1\x49\x31\x02\x43\x9b\x84\xaf\xf5\x48\x48\xa2\x14\xc9\xfe\x1f\x12\xce\x2a\x2a\xea\xf7\xeb\xe2\xdf\x19\xba\x07\x04\x06\x74\x90\x6e\x49\x05\x06\x90\x16\x91\xee\xee\x10\x41\x90\x54\x69\x18\xe9\x90\xee\x6e\x45\x5a\x42\x9a\xa1\x1b\xe9\xee\x46\xba\x7b\x98\x77\xfd\xfe\xef\xc5\x73\xf7\x5c\x9c\x75\xd6\x3e\xeb\xb3\xf6\xc5\xde\x6f\x38\x41\xaf\xd7\x3f\x3c\x22\x85\xff\xdc\x1f\xc6\x72\x02\x62\x9f\x1f\xe3\x01\x49\x15\x3d\x26\x71\x43\xf5\xac\x78\xea\xbf\xc4\xf7\x0c\x34\xd8\xe1\x0d\xd5\x89\x35\xc7\xf6\xac\x07\xca\xb3\xd0\x47\xf3\x69\xbf\xa2\x67\x0a\x74\x10\x5c\x96\xd4\x98\x3f\xed\xab\x5e\x47\xd0\xb3\x4c\x4c\x09\xcc\xc7\x23\xba\xe8\x5e\x9d\x13\xaf\xef\xfe\x38\x6d\xc7\xdb\xb6\x8d\xe8\x6a\x01\xe1\x74\xbe\x42\xc5\xd0\x68\xa5\x94\x75\x49\x2d\x8a\xc6\xea\xb4\xdf\x47\x5a\x5a\x06\x81\x36\xfb\x12\x35\xdb\xe8\xfa\x95\x04\xf0\xb7\x55\x77\xc8\x09\x36\x50\x83\x6f\x8b\x0c\xa1\xb3\x81\xbf\x6d\xf7\x72\xe7\xbe\x9a\xc5\xee\x24\x2b\x6f\x17\x9a\x70\x44\x29\xf2\xcb\xce\x4b\xcb\x0b\xff\x5a\xd8\xbc\x88\xa9\x18\xc9\x5d\xc5\xb5\xe1\x3e\x5a\x34\x55\x35\x2c\x19\x6d\x59\x2a\xa8\x7c\xc4\x02\xb7\xff\xee\xe1\x89\xf1\x3a\xc1\xbf\xa8\x52\x0d\x7e\x8c\x82\x3c\x94\xc1\x7e\x81\x21\xeb\x8f\xd7\x23\x41\x0e\x8d\xe8\x2f\x21\x5d\xdb\x9c\x03\xcc\xa9\x91\x1f\x0e\x91\xf4\x13\x1d\x06\xf3\x8d\x99\x33\x4b\x62\x36\x99\x17\xac\x16\x68\xf0\x37\xc9\xd1\x6f\xb8\xef\x81\xd5\x18\xec\xb8\x59\xcd\x7c\xea\x1f\x38\x74\xa5\xd7\x48\x4c\xe0\x2c\x81\xfe\x3d\x7f\xf0\x67\x3c\x67\xba\xce\x56\xc9\x10\xc4\xce\x97\xeb\xb1\xf8\xef\x97\xb8\x06\x5e\x6a\x04\xff\x21\x00\x97\x58\x32\xe1\x84\x98\x0d\x5b\xba\x8f\x36\xce\x9c\x0d\x30\x37\x41\x58\xdf\x66\x77\xc5\x34\x6a\x69\xa9\xee\x09\x8a\x0b\x1c\x44\xb8\x52\xbd\x08\x4b\x14\xd2\xbc\x5a\x3a\x0c\x6c\x21\x2a\xa3\x41\x07\xfe\x47\x28\x4c\x1f\xc9\x83\x44\xd4\x5a\xdf\x53\xd0\xe5\xec\x83\x9c\x86\x71\x29\x4f\x42\xe2\x0e\x73\xf0\x04\x6f\xf0\x12\x7a\x80\x63\xc9\x33\x8e\xef\xd8\x75\xb2\x7a\xdf\x54\xef\xbf\xb1\xe8\xe0\x2e\xc1\xa9\xe6\xb4\x43\x8f\xc9\x80\x64\x56\xf9\x80\x66\xea\xbc\xbb\x35\x5a\x73\xe8\xb0\x25\xe5\xdc\xe6\xe5\x9c\xc6\x1d\xf4\x3d\x2a\x22\xeb\xbf\x8f\xbc\x1d\x98\x32\x44\x38\xe6\xb0\xab\x8b\x7c\xca\xaa\xf6\x1f\xc4\x5c\xd3\xc8\xae\x98\x46\x23\x2d\xd5\x7f\xc4\xe2\x41\x3d\xa3\x77\x42\xcc\x3a\xb3\x4a\x73\xd7\xca\xa9\xda\x39\x5f\x2e\x0a\x76\xef\x58\x21\xb8\x3d\x49\x9d\xf8\x1d\xce\x10\x7f\xb1\xf2\x73\xba\x7d\x92\x24\xc1\xa8\x83\x2f\x54\x3a\xc4\x92\x7a\x18\x74\xa9\xbc\x05\x43\xc9\x89\x11\x64\x32\xec\x54\x2f\xb1\x10\x8c\x66\xcc\x91\x0e\xa5\xd6\xa5\xbd\xa3\x69\xb7\xc7\xb4\x62\xec\x7b\xff\xad\xba\x6f\x42\x76\xf5\xda\x20\x44\x82\x52\x9a\xd7\xa2\x25\xf3\x8e\x38\xb0\x2c\x1b\xc7\x77\x59\xa3\x03\x5e\x3c\xb3\xf6\x8e\x1c\x11\x1a\xf1\xec\xe0\x91\xb5\x50\x29\x4e\x21\x75\x93\x1a\xd3\xe6\x60\x11\x4d\x6c\xdd\xa3\xd2\xd1\x8a\xcc\xac\x74\xcb\x11\xb8\xa2\x85\x49\x92\xce\x87\x6b\xfc\xe7\x08\xe4\x03\x47\x8f\x6b\x41\xaa\x27\x6e\xf3\x69\x27\xdf\xf3\x20\x84\xfd\xca\xa2\x7d\x96\x83\x77\xe0\x91\xce\xe6\x26\xae\x19\x73\xf2\xf2\x76\x75\xfc\xf9\xca\x71\x64\xd2\x0d\xda\x42\xde\x78\x94\xa6\xca\xff\x66\xb4\x97\x9c\x96\x4a\xc6\xda\xcb\xce\x76\xff\x79\x0d\x01\x3a\x67\x1f\x39\x8c\x41\x07\xc1\xc5\xec\xcc\x0b\xb8\x5c\x90\x3f\xf9\x52\xed\x9f\x2f\x72\x17\x19\x08\x39\xa0\xbb\x09\x18\x11\x1d\x66\xc0\x35\x14\x3d\x76\xaa\x31\x0a\x31\x37\xc5\x40\xac\x05\x03\xf3\x3f\xd0\x5c\x09\x89\xae\xfc\xb2\x9a\xbc\xd6\x47\x7e\xe1\x0d\x9a\xa3\x4b\xbd\xaa\xfc\xd3\x1c\x35\x86\x8f\xed\xa7\xf1\x1d\x28\x1e\x08\xee\x5b\x7f\x6e\x7f\x5e\x05\xaa\x3b\xbf\x19\xd5\x94\x4b\x51\x0d\xe9\xca\x90\xcb\x60\x65\x5a\x42\x5f\x9e\x7a\x5f\xb4\x41\x27\x0b\xc9\xd7\x0c\xe9\x9b\xed\x74\xc7\x3c\xf3\xfe\x6f\xdf\x0c\xe7\x49\xb7\xfc\x3e\xe1\x21\x1a\x03\x2e\x7f\xa5\x7d\xf6\x85\xc9\xa1\x45\x02\x75\x85\x34\xae\x96\xd2\xa4\x5b\x36\x25\xd4\xff\xdb\xf4\xdb\x24\xa1\x15\xef\x27\xb7\x57\xdb\x0e\xcb\xfa\x78\x4f\xdf\x1a\x6c\xa8\x89\xc0\x1e\x57\xce\x1f\x93\x6e\x88\x8f\x6b\x51\x1d\x17\xbf\xaa\x0e\x49\xaa\xac\x57\x92\xcd\x0b\x77\xdb\x2f\x39\x80\x1c\x30\x62\x5b\xf4\x33\x10\x2a\xf0\x1c\x15\x82\x76\x9b\xec\x59\x33\x26\x41\x0b\xe0\x96\xd3\xd2\x4c\xdd\x75\x52\x7d\xc5\xcd\xf1\x68\xdf\xe1\x18\xf8\xbc\xc8\xf2\xa1\xa7\xf2\x21\x7a\xc6\xaa\xf1\xde\x6a\xc0\x1b\xf7\x70\xda\x4f\x6b\x46\x02\x80\x4c\x23\x25\xe9\xe0\x9e\x60\xff\x15\x2f\x42\x83\xa6\x76\x0c\xa9\xc0\x93\x8f\x90\x57\x0e\x7a\x5d\xa4\x35\x71\x62\xd1\x6d\x92\x2d\x20\x52\x3b\xe2\xf2\x88\x37\xb0\x9b\x37\x52\xca\x59\xcb\x13\x3b\x9a\x2c\xa9\xda\xc6\x19\x2c\x84\xb6\x29\x01\x6f\xf8\xf4\x92\xba\xc2\x05\x52\xb7\x23\x44\x86\x1d\x0b\x4a\x1f\x74\xc6\xcb\x1b\x52\xee\xaf\x7d\xd1\xed\x4f\xa3\x97\xeb\x37\x72\x83\x31\xa3\x14\x66\xbf\xee\x3d\xb2\x82\x10\xcd\x5a\x5a\xaa\x45\xdc\x59\x32\x72\xb3\x19\x45\xb4\xaf\x16\xd1\xaa\x4f\x33\xd1\xcd\x55\x12\x23\x97\xb4\x35\x8f\xfa\x1b\x23\x81\xab\x50\x5c\x4c\x39\x05\x1c\x47\xfb\x94\xad\x15\x16\x08\x73\x70\x9f\xb7\x7e\xd8\x70\x62\xa2\xd6\x7c\xc2\x78\x5a\x84\x25\x0c\x3e\x1b\x98\x9e\xd4\xa5\x24\x63\xfe\x56\xca\xb5\x64\xdf\xb6\xc4\x42\x7e\xa8\xc4\x13\xff\x89\x6f\x16\xff\x2a\x9e\x54\xf4\xb7\xfa\x2e\xaf\x8b\xcf\x35\xee\x80\x16\x94\xf3\x83\xeb\xdd\xc5\x2f\xb1\xc3\xc5\x04\x7a\xe3\xef\x73\x9b\x79\xd2\x63\xec\x43\x63\xe4\xeb\x39\xf9\x8d\xef\xa3\x01\x04\x3f\x26\x36\x8e\x89\x39\xd5\x00\xb1\x4a\xa9\x36\x85\xa7\x0f\xa7\xad\x29\xda\xa5\xfc\xca\x4c\xd4\x56\xd7\x68\x08\x95\x68\x56\x73\xea\x77\x97\x88\x48\xb2\x73\x4a\xa0\xff\x66\xee\x0e\x48\x3f\x01\x3e\x14\x9f\x09\x87\xe5\x6e\x92\x66\xa9\x9a\x3a\xf1\x56\x7c\x62\x3e\xc4\x21\x5e\xc3\x7e\xe3\x05\x3c\x38\x56\xfd\xe7\xe0\x57\xdf\xfd\xb3\x00\xe1\x60\xb5\xee\x54\x5d\x61\x9a\x5f\xd9\xab\x78\x09\x1a\xc6\x57\x14\x71\x8b\xb3\x6a\xd6\x84\xc2\x99\x20\x74\x14\x00\x02\x03\x0e\x73\x7e\x06\xd8\x87\x7b\xfc\x4d\x98\xcd\xac\x52\x70\xfc\x54\x78\x20\x1a\xfd\x63\x68\xb8\xb6\x46\x3b\xf8\x4e\x7c\x17\xea\xbf\xbc\x56\x17\x98\x2e\x87\x0c\x34\xc3\x59\x5b\x61\xb9\x00\x49\xea\x18\x95\x8a\x23\xa9\x4d\x1b\x2b\x9f\xdc\xeb\xcc\x33\xad\xc4\xb1\x8b\x2b\x52\x59\x91\xca\xe1\x65\x8f\x3a\x7e\x73\xe7\x51\xfd\x56\x02\xa8\x0c\xb5\xaf\x8c\x4c\x17\x44\x56\x0b\xa3\xb6\x4d\x16\x6f\xb7\x3e\x44\x24\x5e\x3f\xb7\x1a\x16\x0b\x6f\x48\x26\x3f\x7a\x65\x12\x72\x67\x52\xd1\xcd\xe8\xa2\xa5\xd0\x26\xb9\x41\xfc\x2d\xe2\xd8\xf8\x33\xf5\xde\x29\x29\x0d\x40\x06\xc4\x0c\x50\x8d\x77\xd0\x7a\xf3\x9d\xaf\xa8\xce\x6c\x0a\x41\x70\x3c\x46\x23\x8e\xa0\x30\x04\xf4\xf3\x75\xfb\x48\xf6\xd2\x3d\xf2\x15\x07\x70\xf5\xff\x04\x2c\x02\x10\x3f\xc9\xdd\x07\x24\xcf\xdf\x42\x8f\xfc\xa4\x90\x70\xa5\x07\xb5\x45\xbf\xde\x10\xc8\x1a\xed\x41\xc7\x1e\xd4\x3f\xae\x2b\x86\x5f\x57\x87\x2c\xf9\xcf\x3a\x74\x7b\xf0\xac\xc4\x39\xbd\x39\xaf\xfe\x86\x7a\x68\xec\xd5\x7a\x4e\xde\xdd\x31\x96\x58\x6d\xf3\x69\xf4\x20\xa9\x1e\xec\x14\xff\x7f\xf9\xe5\x0f\xa2\x78\x3b\x48\xef\x56\xbd\xdb\x4d\xe7\x1e\x8e\x9b\x40\x33\x35\x6a\x5c\x9d\x77\xce\x88\x9f\x4d\xaa\x32\x81\x7e\x7a\xcd\xa6\xd8\x80\xfe\x97\xdf\x77\x43\x51\xad\x27\x8b\x5f\x1f\x22\xed\xb5\x1f\x63\x15\xc6\x28\x86\xd4\x9e\xd2\x2c\xbf\xdb\x86\x7d\x53\x26\x5d\x29\x63\xff\x5f\x86\x91\x56\xc2\x84\xdb\x74\xa4\x77\x31\xdc\x10\x89\x6d\x6e\xb2\xde\x5a\x8e\x84\x46\x29\x80\x4e\x4c\xdd\x79\x7e\x33\x60\x7f\xc1\xa2\x43\x3d\x58\x3f\x04\xcd\x3c\x2f\x40\xfb\x2c\xb2\xec\xe0\xf8\xa8\xa0\x02\x19\x8e\x5e\x67\x55\xf9\xde\xd7\x41\x5d\xd1\x24\x86\x16\x0b\x40\x4c\x48\x23\x58\x0d\x1b\xc1\x31\x49\x01\xf8\xd1\x22\xac\x87\xe4\xec\xdb\xfc\x03\x5c\xb4\xc2\xa4\xd7\x97\x33\x60\x8d\xf5\xc8\x85\xb8\x07\x8d\x1f\xe4\x4d\x55\x59\x70\x3f\xee\x9f\x68\xa9\x0e\x86\x15\x46\x42\x2e\x7a\xe2\x79\x7a\x2c\xfa\x1d\xdc\x17\xe1\x37\x7f\x72\x2b\xdd\xea\xc8\xae\x56\xfc\x5a\xf5\x6e\xdd\x05\x2c\xb7\x8c\x87\x02\x94\xc7\x19\x58\x0b\x9e\x6f\xfb\x1e\x30\x3c\xa0\xe4\x23\x15\x7a\x62\xc8\x2a\xc4\x55\x5a\xdc\x39\x2a\x50\x0d\x47\xab\x15\x96\xc1\xfc\xaa\xf4\x37\x0b\x3c\x60\xf0\x60\xfb\x83\xba\xba\x1b\x1a\x69\xfa\x42\xeb\x71\x23\xf2\x76\xbe\x98\x8b\x0f\x69\xbf\x7b\x7f\xe7\xb5\xc5\x26\x0d\xa8\xcb\x43\x87\x85\x2c\x5a\x4b\x33\xe2\xd8\xff\x76\x50\xe1\xf9\x01\x80\x42\x7d\x43\x66\xcd\xf1\x02\x59\x89\x94\xdd\x9c\xa9\xd6\x82\x29\x00\x79\x56\x9a\x23\x94\x95\xf7\xcc\x70\x76\xa4\x69\xc9\x55\xfd\xe5\x6c\x37\x4a\xe4\xc7\xc5\xea\xa3\x83\x75\x13\x27\xf7\x74\xd6\xdc\x14\x94\xfb\x53\x0f\xf2\xa5\x71\x22\x5a\xaf\xf0\x86\x6c\x3d\xa7\x73\xe2\xb0\x1f\xd7\x79\x94\x29\x4a\x85\x49\xa9\xaa\x68\x61\x5e\xa8\x4a\xe0\xdf\x71\x6b\x46\x09\x4a\x95\xb6\x42\xeb\x68\x21\x90\xba\xf2\x98\xf8\x3a\xdb\x4e\xb1\xef\x22\xe7\xe8\x84\xbb\x63\xc5\xb4\x3f\xa7\x9c\x7c\xf2\x80\x53\x55\x63\x45\xff\x05\xbb\x84\xb6\xd1\x83\xb7\x04\x96\xdf\x39\x83\x93\x1a\x45\x78\x56\x6a\xb9\x82\xdf\x65\xe2\xd4\x26\xfb\x12\x3d\x7a\xc7\x8e\x75\xc0\x74\x3e\xf0\x36\x9e\x03\x55\x33\x14\x46\xcd\x64\xa5\xc6\x03\x5b\x7f\xbc\x26\xf0\x19\x21\xc8\xb1\x24\x3e\x85\xce\xc4\xaf\xfc\x4d\x19\x27\x48\xc9\xff\xed\x82\xd6\xa5\x68\xbc\x3d\x55\xb8\x4d\x66\x8e\x3c\x92\x5c\x5a\xbf\x2e\xf5\x75\xc4\x55\x2b\x22\x73\x3a\x9c\xaf\x35\xcf\x6e\x35\x7b\xe3\x71\x3e\x2c\x34\x36\x55\xa2\xfb\xdf\x6b\x62\xb6\x0f\x12\x93\xd8\xbd\x16\x11\x90\xb4\x5d\xcf\x1c\x99\x2a\xd1\x8d\xad\x77\xeb\x0d\xe0\xee\x58\x79\xf2\xc0\x01\x14\xe1\x77\xff\xae\x10\x53\x31\x6e\xad\xca\x72\x7f\x69\xd7\xe7\x57\xae\xe6\x4d\x39\x75\xbd\xeb\x4b\x6d\x85\x0b\x82\x0c\xa9\x1b\x7c\xe9\x77\x9d\x10\xb8\xed\xd2\x52\xe6\x20\xff\x52\xa7\xa6\x49\x75\x89\xce\x3a\xf6\x88\x00\x0e\x2e\x97\xf7\xd5\x6f\x4a\x02\xe9\x51\xa9\x4b\xb3\xeb\x33\xcf\x0b\xd1\x9f\x5b\xf3\x1e\x9e\x05\xad\x7f\x18\x05\xb6\xcc\x51\x4f\xe9\xb4\x73\x6f\x86\xb4\x94\x0d\x14\x66\xad\xec\x5e\xda\x1e\x37\x04\xd6\x31\x4b\x61\x53\x6f\xee\x38\x50\x75\x22\x0c\x12\xbe\xd5\xb0\x33\xaf\x53\xea\xf7\x34\x67\xa9\xf1\x73\x3b\x75\xd9\xd2\x6f\x8b\xff\xed\xce\x84\xd5\x08\x3d\xe2\xed\xdf\xf3\x94\xb2\x49\xb1\x19\x1b\x54\x7e\xdd\xd7\xa3\xbc\x6c\x52\x7f\xf3\xc5\x8e\x40\x3c\xaf\x72\x85\x26\xe8\xe8\xbd\x3f\xc6\x13\x96\x07\x8a\xff\xe5\x4f\xfd\x0e\xd5\xf7\xb6\x5c\x9b\xee\x4c\xbb\x61\x67\x22\xeb\xbc\xa3\x3e\x54\xae\xa1\xbd\x9f\xce\x5a\x5c\x85\x7d\xf8\x1c\xe2\xd1\xa7\x2d\x9a\x85\xd9\x15\x3f\xcb\x60\x81\x6c\x59\x6a\x42\x59\xaf\x89\xd7\xf1\x76\x7f\x5c\xd8\x70\x62\x7d\x39\x4a\x64\xed\xa7\x55\xd5\xdd\x42\xd2\x11\xbe\x5f\x0d\x6d\x1e\x09\x0d\xa0\xac\xee\xaf\xcb\x9a\x1b\xb3\x4c\x69\x47\x9f\x26\xef\x10\x1c\xab\x0f\x75\x36\x7f\x59\xfe\x70\x92\x63\x27\x01\x91\xa3\x00\x87\x7e\x17\x1b\x4e\x4e\xd4\x9f\xea\x76\x0d\x25\xd1\xba\xdf\x13\x25\x0f\x68\xc9\xac\xa4\xd5\x23\xab\x68\x6f\x5d\xbd\x76\x43\x9d\x5f\xa3\xfe\x3b\xe5\x67\x62\x7f\xcc\x0e\xa7\x23\xb9\xc6\x5d\x42\xbe\xd2\x13\x43\xb8\x0f\x3a\x45\x12\xbe\xa4\xe9\xf3\x55\x75\x2a\x63\xd2\xb4\x54\x64\x51\x94\x02\x88\xb4\x9a\x77\x67\xb5\x38\xff\x1c\x33\xe6\x27\xd0\x0a\x6e\x27\x9c\x01\x4e\x7e\x72\x92\x5a\x50\x53\x13\x8e\x5f\x7e\xe7\x53\xbd\xec\x0f\xd3\x73\x1d\x2b\xc7\x3d\x99\xcd\xc7\x3b\xed\xbe\x60\xb1\x25\x53\xfa\xf7\x51\xcb\xf3\x28\x85\x68\x41\x53\x9d\x1f\xa6\x3e\x71\x77\x9d\xf6\xda\x8f\xa7\xea\xf8\x7e\x2b\x61\xfd\x8d\x32\x26\xc2\x2d\x3f\x75\x91\x55\x0a\x11\xb4\x19\x2f\x96\x02\xaf\x46\x72\xeb\xb6\xbf\xe9\x44\x13\x29\xed\x0a\x1a\xa5\xa8\x7f\xf2\x6b\x39\x52\xf8\xfd\xa1\xce\x32\x19\xaa\xb8\xf7\xcc\x52\x07\xdc\x47\x94\x7a\xe8\xd3\xaa\x87\x7a\x2f\xbe\x6d\x0f\xf6\xc7\x07\x26\x25\xeb\xd1\x58\x62\xab\x0d\xb7\xcf\x4c\xaf\xc6\x03\x99\xf5\xaa\x26\xe3\x6a\x69\x5c\xfa\x48\x57\xae\xd1\x3e\x86\xd5\xf1\x31\x8c\x1c\x56\xc0\xe3\x0e\xc3\x6b\x5e\x91\x37\xf5\x6d\x01\x49\x48\x16\x4d\x72\xbf\x43\xa9\xbb\x92\x0f\xae\xbf\x91\x61\xc2\x37\x53\xa0\x26\xa4\x0c\x3d\xec\xfd\x67\x9c\x0a\x26\xae\xaa\xea\xc4\xcf\x82\x5c\x61\x58\x21\x85\xb5\xa4\x5f\xb2\xbf\xe8\xb9\x4d\x1c\x92\x00\x9e\x1d\x0c\xbf\x1c\x97\x47\x1e\x8e\x2c\xe4\x51\x8a\xa9\xb9\xcc\x54\x1a\xcb\xd4\x60\x3a\x7e\x99\x73\xbc\x74\x88\x8c\xf5\xf5\xd5\xba\x0a\x51\x5e\x22\xb0\x6c\x7b\xa8\xda\xa9\xfe\x6a\x09\x8f\x13\xcb\xde\xc1\xcc\x56\xc6\x80\x01\xc6\x1c\xb5\xfa\xfa\x0e\x5b\xae\xad\x84\x63\x69\x51\x19\xde\x04\x93\x1a\x61\xa6\xf1\xdf\x50\x26\x39\xd4\x95\xb1\x8b\x37\x47\x0e\x17\xcf\x58\x4c\xae\x24\x4d\xda\x29\x3f\xc5\x40\x50\x59\x43\x58\xb9\x55\xdf\x09\xaa\x0e\xb0\xa8\xf6\xb3\xa8\x92\x26\xb3\xf2\x06\xc0\x2f\xa6\x3b\x6a\x34\x15\x67\x2a\xff\x3a\xb1\x59\xf8\xf8\xaf\x8d\x0d\x63\x95\x9b\xea\xab\xbe\x76\xe5\xa8\x40\xe9\xb9\x9e\x28\xf2\x76\x6d\xda\x4d\x75\x43\x75\xf0\xe7\x91\x9e\x97\xce\x67\x14\xc3\xdd\xce\xb3\x48\x1c\x31\xd9\xcb\x9c\x4f\xae\xa2\x4f\x33\x79\xca\x59\xb9\x79\x92\x26\xb3\xd9\xc8\x33\xa9\xb6\x1b\x41\x00\xaf\xdc\x69\x0d\x3d\x6a\x75\xc0\x73\x3d\x64\x42\x40\xf8\x49\xd5\x57\x97\xb6\x5a\xda\x94\x6f\xf5\xde\x0c\x46\xe9\x9f\xe8\x11\x29\xca\x17\x81\xb2\x49\x78\xcf\x2a\x1e\xd1\x30\xf8\x70\xef\x22\x6b\xb0\x52\xc9\xe8\xde\x63\xf4\xde\x3d\x09\xd0\xa1\xed\x69\x24\xbc\x0a\xc4\xf1\xee\x23\xb7\x62\xeb\x8d\xc2\x29\x6c\x94\x4a\x2a\x13\x2c\x4e\x6a\xac\xce\xc9\x9d\xdd\xb1\x35\x9f\xcb\x11\x6a\x75\x49\xc9\x66\x70\x86\x06\x74\x80\xa8\xe8\xac\x5c\x09\x29\xe5\xcc\x5c\x09\xb1\x13\xd5\x52\x07\x8a\x56\x8b\x8a\xac\xba\x9d\xfa\xdf\xc5\xc7\xc5\x76\xb1\xd4\x7c\xfd\x78\xce\x59\x25\x55\x28\x38\x3b\x57\x35\xf7\x77\xca\xb0\xa2\x7e\x26\x3a\x0b\x17\xea\x3e\x7a\x59\x91\xb9\x3c\x41\x99\xb5\x14\x85\x52\xef\x60\x70\x84\xe5\x2e\x48\xe0\x17\x08\xdf\x04\x69\x7a\x1c\xf6\x3e\x6b\xba\xba\x4b\x76\xad\xc5\x21\x3f\xaf\xbc\x6a\x8f\x0d\xd6\x22\x09\xf3\xc3\x07\x8a\x5c\x29\xde\xdf\x29\xa9\xa0\xc5\xa6\xba\xa1\x66\x6f\x44\xfe\x2a\x10\x0e\xff\xd5\xda\xa2\x35\x59\xfc\xbe\xe2\xbd\x6f\xbf\x86\x61\x73\x1c\x81\xa0\x17\x21\xbf\xbe\x40\xa3\x11\x33\xd0\x3f\xfd\x02\x65\x19\x73\xc5\x19\x53\x34\xfc\xd1\xbd\x45\xb7\x24\x00\x42\xa6\xfe\x77\x66\x25\x6d\x13\xbc\xe6\xd0\xd1\xa9\x1a\x13\xf2\x1c\x61\xa9\x18\xd2\xba\x2f\x56\x67\xc6\xcc\x9d\xfc\x44\x38\x4d\xe5\x60\x4c\xb6\xb6\x47\xc7\x2a\x3e\x9b\x85\xdb\xf4\x6d\x82\x2a\x23\xb6\x7e\x17\x7d\x24\x5c\xf5\x15\x59\xbd\x55\xd1\xce\x44\x1f\x51\x1d\xf7\xce\xa5\xd7\x38\x08\x93\x1b\xa7\x12\x44\x1f\x60\xc9\xe6\x8a\x89\x15\x65\x1e\x4d\x5a\x73\xc8\xb1\x1b\x56\xb6\x16\x62\x4d\x56\x41\xb1\x53\xc0\xf5\x32\x8c\x68\x77\x71\x70\x71\xa5\xb7\x45\x99\x14\xd2\xef\x2f\xc3\x78\xb0\xfc\xd1\x00\x2d\x1f\xc1\xc4\xe3\xc8\xb4\x9c\xc2\xbf\xb9\xd2\x09\xeb\x0e\xf1\xa9\x8a\x7c\xc2\xe2\x1c\xe1\x7d\xb8\xae\x73\xe0\x55\x42\xbd\x8f\xd6\x1f\x37\xf2\x23\xfb\x92\x02\x1e\x55\x0a\x17\x95\xac\x0d\xb8\x1a\x37\x58\x2f\x61\x8f\x68\x8e\x12\xfe\x9e\xd0\xfe\xab\xf1\x26\x75\x2b\xef\xae\xc7\x5b\xbf\x01\x99\x58\x93\x7f\xc7\xe0\x6e\x8c\x71\x9f\x06\x81\xbf\xc3\xa2\xe3\xa0\xcf\xbf\xdd\x1e\xd2\xd9\xf4\x08\xca\xb3\xa5\xaa\xe2\xdc\x46\x38\x69\x5a\x37\x1c\x06\xb6\xf4\xd3\xd7\xe4\x6b\x16\xe0\x48\x3a\x79\xef\x8e\xbb\x89\x0d\x1c\xae\x7c\x1f\x63\xc4\x76\xf1\x1c\xcc\x54\x71\x6c\x82\xd6\xe0\x7b\x65\xc1\x1f\x5e\x7f\xbd\x95\x1f\x32\x23\xe6\xcb\x92\x85\xad\x8f\x6e\xec\xd4\x79\x30\x2c\x7a\xfd\x45\xdd\x4e\xc1\x20\x75\x14\x18\x0a\x06\xa9\x87\x2c\xae\x95\xb1\xc6\x5f\x9e\x8b\x3c\x6d\xd4\x56\x8c\x1f\x39\x57\x3c\x63\x64\x0c\xb2\x1b\x9d\x5f\xe8\x38\xfe\xf7\xd1\x41\x69\x74\x7e\x02\x26\xc9\x06\x96\x7b\x5b\x81\xe7\xc4\x7a\x3e\x3f\xe0\xad\x7f\x9b\xab\x34\xd6\x51\x39\x32\x47\xb2\xc6\xc6\x67\xa8\xed\x7b\x7c\x3b\x7c\xf3\xe1\x38\x93\xc3\x67\x08\x42\xb2\xfc\x21\xab\x03\x0f\x52\xf4\x0e\xaf\x54\xf4\xd5\xf1\xda\x50\xd6\x9f\x7a\x2d\x2d\x3f\x3a\xcd\x66\xf8\x41\x2d\x76\x3b\xec\xe2\x3b\xbd\xcf\xc6\x43\xf9\xe3\xb2\xce\x38\xb7\xa4\x1d\x0f\x35\x7a\xbe\xf7\x2f\x06\x30\x6a\x8e\xe9\xd4\x13\x03\xb5\x0a\xd6\x90\x73\x22\xf6\x09\xc0\x90\x94\xff\x32\x13\x91\x66\x78\xd2\x8d\x16\xd5\x47\x03\x74\x82\x6d\x1b\x6f\x92\x6d\xed\x68\x36\x50\xbf\x19\x94\xad\x74\x33\xcf\x7f\x93\x79\xc9\x0b\xce\x0d\x76\x05\x11\x84\x9e\x62\x75\xd1\x81\x02\x6e\x9b\x19\x56\x73\x18\x88\xab\x03\x4f\xf5\x01\x77\x15\x97\x7a\xe6\xf4\x98\x99\xc1\x03\x79\xcf\x05\x54\x47\xf8\x5a\xf4\xc0\xcb\x4d\x4f\x5f\xf9\x65\x27\x8a\xcd\xe3\x55\xca\x0b\x62\xcc\xfb\x46\x8c\xd0\xca\x36\x75\x32\x2d\x7e\xc3\x40\xb3\x0e\x86\xfe\x97\xc2\xa8\xa9\x94\x80\x0a\xc2\xfb\x37\x9d\x7f\x8d\xbf\x9c\xce\x55\x0b\xa3\xe4\xdc\xac\xed\x48\xbe\x6e\xa8\x24\xa8\x6f\xe9\xc2\x03\xec\xae\x9f\x2f\x78\xfe\xcd\xe8\xff\x97\xfc\x19\xc7\x14\x36\xa5\x73\x5e\x1c\x31\xc2\x0d\x9d\xaa\x18\x4e\x4c\x14\x5d\x90\x17\xb5\xd1\xb2\xc0\x55\x47\xdc\x49\xad\x08\x25\x10\x27\xa9\x0e\xf6\xb0\x6a\x16\x30\x71\x55\xbd\x9b\xb5\xa9\xcf\xf5\x0c\x32\x3f\xda\x5c\x3f\x7a\x62\xb8\x6e\x02\x2d\x51\xc9\x44\x77\x05\xbb\x7d\xdf\x35\x9f\x4f\x5b\xe9\x5e\x19\xf7\x17\xf8\x2d\x37\x31\xa1\x9a\xc1\xf9\x9b\x01\x55\x6e\x75\x5a\x61\xd6\x93\x4c\x1a\xf0\x8a\x30\x5f\x17\x07\x87\xc8\x55\x0f\xb3\x07\x5a\x39\x68\x1a\xa3\x7c\x15\xa0\x17\xbb\x9c\x6e\xe0\xb6\xc2\x3d\x1c\xb7\xb2\xa9\xc2\x41\x02\xa3\x48\x1d\xf5\x3c\xc6\x69\x01\x4b\x45\xb7\xc5\xaa\x08\x8b\xaa\x7c\x4e\x71\x5d\x59\xc7\x36\xe5\x2e\x26\x70\xa5\xd8\x6a\xb2\x7a\xc3\x59\x0e\xc1\x61\x7e\x1f\x57\x91\xd5\xff\x0f\x5d\x09\x75\x55\x24\x3c\xad\xcc\xfd\x98\x19\x88\x34\x6d\x5f\x3e\x76\x79\xa7\x6e\xdf\xc8\x81\xa4\xe3\x7b\x25\x76\x20\xf0\xf6\x9b\x70\x11\x5e\xc4\x6b\x09\xdd\x58\xe8\x9f\xf8\xaf\xad\xce\x47\x52\xcc\x39\xc7\x1e\x82\x72\x5b\x20\x9b\x6a\x6f\xfe\xe0\x84\xc9\x4f\xaf\x43\xe6\xdc\x05\x80\x2a\x3c\x9e\x63\xa6\x03\xed\x10\x27\x82\x0e\x21\x64\xce\x2a\xf4\xd9\x32\x5f\x4e\x27\xcb\x81\xbe\x85\xb9\x4f\xdf\xd6\x66\x79\x7a\xa6\xef\x7a\x33\x8c\xf3\xf7\x4a\xec\x0b\x5f\x0a\xbe\xd6\xc9\x10\xca\x52\x14\x98\x9e\x58\x24\xaf\xd2\x9f\xdd\x94\x89\xbb\x25\x6f\x72\x96\x64\x7c\xe1\x62\xa6\x90\xfa\x6c\x70\x51\xfe\x36\xab\xcc\xd2\x8f\x96\xf0\xb8\x7a\xd5\x03\xfc\xf0\x1c\x04\x90\x92\x51\xbd\x52\x3f\xf4\xa5\x18\x6e\xff\x3d\xe1\x35\x9f\x98\x12\xc9\xd3\x6e\xb3\x68\x98\xbb\xc3\xa3\xf9\x0a\x69\xa4\x65\x7a\xe7\x5e\xe8\x1d\x4f\x8f\xeb\x99\xde\x21\x0d\x52\xdf\xf2\x1b\xc6\x6c\x9b\xf0\xba\xd3\x18\x67\x18\x21\x0d\xb6\xe8\x34\x31\x63\x7d\x05\xcd\xce\x28\xef\x67\x05\x56\x9f\x1f\xe8\xae\x04\x6a\x4b\x7f\x2f\xc7\x69\x93\xd3\x8b\x27\x73\xe4\xd3\xf8\xc3\xa2\xca\x4e\xfe\x61\x2c\xd4\xca\xf2\x2a\x9c\x7e\xc2\x48\xca\xed\x5a\xba\x46\x53\xfd\xd1\x4d\x29\xec\xdd\x1b\x7c\x2e\xaf\xa0\x9e\x1f\x05\xda\x7a\x16\x57\xb1\x3e\xc2\x0d\x8a\xe8\x77\x55\x37\xfb\xa1\xa7\x1e\x5d\xf7\xf3\xbe\xb5\x2b\x90\x2e\x33\x05\x8b\x07\x0e\xe7\x7f\xd5\xe1\xed\xad\xd9\x43\x63\xc8\x05\xc3\x24\x34\x3d\xf2\x45\x99\x06\x9e\x47\x7e\x25\x5f\x8d\x2f\x0b\x60\xd0\x02\x62\x60\xe2\xa5\xea\x48\x43\xbb\x5f\x67\xe4\x35\xc2\xb3\xca\xfa\x47\xa2\x8b\x2f\x91\x48\xdc\x02\x6b\xc2\x7f\x85\xb7\x55\x67\x24\x76\xb6\x83\xcf\x52\x36\x96\x74\xa5\xe8\x67\xb9\x40\x6a\x60\xc0\xe3\x57\x51\x96\xb6\x71\x33\x61\xfe\xfd\x1c\x18\x00\xc2\xd6\xff\xfd\x4a\xf3\x16\xfc\xa4\x30\x13\x9e\x66\x27\x59\x0f\x5e\x2d\xab\xe3\xc9\xce\x94\xc2\x5b\x29\xaf\xfd\x8b\x17\x61\x65\x15\x3e\x8e\x71\x87\xc6\x79\xab\x6d\x2e\x4a\x11\x94\x44\xbf\x78\xc9\x33\x80\x8e\xa2\x16\xb3\xa6\x17\xfa\x60\xfa\x4e\x50\xf5\xaf\x78\xcd\x48\x76\xb3\xc3\x63\xc9\x50\xe3\x3d\x32\x99\xe8\x8a\x35\xe5\xec\x49\x24\xe1\x63\xec\x72\xce\x53\xb3\x2e\x7a\x59\x98\xaf\x2c\xcf\x04\x32\x15\xf9\x01\x75\xac\x62\x22\xe4\x17\xb3\x58\xe8\x1a\x2a\x45\x78\x75\x8f\xf7\x79\x8f\x96\x37\x26\x6d\x7b\xe3\x5d\x48\x65\xfc\x0a\x7e\x52\xb5\x80\xf0\xb3\xea\xfe\x5b\x75\xa1\x7a\x08\x4e\x9e\xe8\xcd\xe2\x3f\xb1\xc3\xd7\x07\x33\x5d\xf7\x58\xe6\x6a\x54\x7f\x1e\x84\x6b\x84\x40\x1a\xeb\x82\xfa\x4c\xde\x35\x14\xb4\x00\x30\x24\x25\x6f\xb0\xe9\xdd\x13\xc3\x3f\x7a\x04\xb2\x31\x74\x93\x10\x97\x90\x9b\xc2\x2d\x2a\xc3\x91\xec\x60\xd1\x1c\xaf\xef\x46\x93\xba\x29\xa6\x35\xd9\x2a\x0e\x05\x36\xae\x1e\x27\xa0\x78\x52\x9c\x88\xe9\x1e\x04\x80\xd1\x0d\x0f\x91\xea\xb3\xa0\xdb\x96\x86\xfb\x2b\x74\x4e\xf2\x2e\x92\x99\x1b\x09\x7f\xeb\x2f\x81\xfb\x96\x90\xbf\xaa\x1b\x99\xb9\xf8\x05\x1d\xb2\x95\xbe\xed\x57\xed\x34\xd3\xf8\x42\xf8\x35\x5e\x99\x72\x90\x88\x83\x95\x34\xde\xee\xb3\x58\xae\x19\xe6\xe0\xc9\x86\xf0\xe6\x82\x46\x1b\x8f\x59\xd6\xb9\x41\x11\xa6\xe0\xf1\x09\xed\x39\x4d\xc0\xca\xe6\x50\x67\x4e\xf1\x8b\xf2\xc4\x3e\x8b\x66\x41\x31\xf7\x80\x60\xb3\x1d\x63\xf4\xfa\x7a\x43\xbd\xec\x78\xeb\x17\x39\x65\xc2\x03\x02\x1f\x6d\xc0\x53\x19\xe8\x82\x15\xd4\xcb\x5a\xf7\x70\x81\x62\x2c\x78\xcf\xf9\x3e\x4c\xd0\x2f\x2a\x22\xf0\xa7\xe5\x70\xc4\x00\x69\xd2\x14\xb5\xc6\x1a\xa3\x4b\xd5\xe6\x49\x48\xc0\xec\x45\xb1\xab\xe7\x6d\xd2\x65\xfc\x24\x31\xca\x74\x90\x12\x2d\xb8\x1e\x13\x78\x4a\xfe\x20\xc5\xa4\x64\xae\x5f\x56\x95\x6d\xa5\x9b\xe9\x87\x7c\x08\xba\xcd\xd4\x8b\x55\x91\x69\x19\x34\x53\xc3\xc3\xb5\xe3\x7b\x91\x80\xf8\xf9\x53\x13\x2f\x27\x10\xce\x36\xa1\x7d\xab\xd4\x89\xff\xfc\xd6\x2e\x12\xde\xd7\x28\x43\x29\x80\x63\x37\x7a\x24\x8b\x6f\xa7\x48\x04\xa1\xb7\xd3\x82\xda\xf1\x77\x53\x0f\x8d\xe9\xb1\x01\x81\x32\x46\x65\x6e\x6f\x08\xed\x26\x68\x6a\xaf\x64\x5e\x92\x93\x20\x8e\x20\xca\x6e\xa7\xaf\xd6\x36\xa6\x40\xa3\x09\x7a\xb9\x45\x63\x62\x50\xd7\x8a\x19\x64\xe5\x63\x34\xbd\xb1\x48\xb4\x47\x07\x72\xd9\x75\x69\xbd\xbf\x7b\x61\x7a\xd0\xf5\xfa\x10\x39\xa6\x78\x51\xc1\xb7\xf5\xc1\xac\x6b\xa9\x32\x04\xe4\x3c\xfa\x3e\x02\x19\x3b\x9f\x8b\xf6\xbd\xfd\x71\xf9\x61\x4e\x60\x87\xa9\xb8\x8e\x36\xea\x0c\x13\x97\x39\x07\x1d\x18\x04\x30\x0d\xc5\x96\x6a\x64\xc8\x5a\xf2\x3b\xd0\x80\x18\x8a\x23\xac\xbf\x84\x74\xe5\xd4\x72\x39\x24\xdc\x4b\x0c\x10\xd0\x31\xdb\x93\xc5\x53\x29\x44\x0d\x56\x0a\x77\xa8\x19\xfd\xe8\x43\x1e\x15\x55\xca\x99\x8a\xf3\x04\x0c\x81\x42\x2f\x00\x2b\x42\xf6\x5f\x22\x70\x51\x6e\xc7\xf0\x90\xdc\xd1\xa5\xb8\x6d\xca\x5c\xd7\x2b\x64\x28\x5a\x95\xb7\xe5\x0f\x0d\x16\x60\x5c\x56\x35\xb4\x9e\x3c\xfd\x6c\xee\xcb\x0e\x52\xd7\xee\x20\x9b\x0e\x3b\xd5\x3c\x1b\x8d\x68\xef\xda\xda\xb1\x94\xbd\xdb\x5e\xf4\xb9\xaf\xb0\xa6\x9d\x1b\x79\x95\x00\x10\x05\x92\x8d\xba\x79\x9e\xd4\x5b\x00\x74\xb8\x92\x1d\x84\xff\x2c\x5d\x9d\x85\xcd\x86\xd4\x95\x8a\x75\x43\x83\xf0\xd0\xab\xa4\x1e\x44\xe4\x50\x3b\x77\xa5\x45\x34\x00\xa4\x30\xa6\x3a\x15\x58\x2c\x3b\x2f\xa1\xee\xd1\xd8\x95\xc1\x2a\x34\x00\x1f\x10\x93\xc0\x5e\xa8\x1d\xfe\xf3\xae\x25\x45\xaa\x03\xe4\x2e\x9b\xbb\xf0\x63\xc8\xdf\x78\xac\x63\x11\xed\x8f\x57\x10\x70\x72\x9d\x7c\xf5\x0b\xc8\xf9\xf7\x5e\xb0\xf6\xa2\xf0\x52\xf4\xdf\xa7\xeb\x15\x79\x4a\xb4\xc8\x77\x1b\x8c\x38\x29\x04\x95\xd5\x14\xc7\x7d\xfc\xbf\xde\xbf\xff\x89\x5f\x2c\xda\xf8\x88\x1d\xf4\xb8\x29\x99\x8b\x49\x18\x2c\xa8\x48\xe5\x1c\xd3\xb7\x9b\x90\x74\xf5\x07\x97\x98\x7f\x7b\xec\x5a\x9e\x64\xbf\x07\x40\xb0\x6f\xb7\xf5\xda\xa8\x5a\x87\x6a\x86\x0b\x1f\x3b\x0f\xab\x0e\xd3\x19\xc7\xc6\xf6\x53\xe3\x45\x14\x30\x89\xdc\xe9\xa7\xfa\x52\x6d\x7f\x95\x72\x13\x52\x0e\xa3\x1e\x35\xbe\x21\x90\x35\xeb\xd8\x65\x78\x30\xf4\x8c\xea\x25\xf8\x6c\x7d\xaa\xb8\x7f\xfd\x44\xf8\xce\x31\xac\x93\xa7\x93\xea\x53\x33\x0a\xec\xfc\x8e\x0d\xfb\xbe\xe5\x20\xed\x7e\x86\xe0\xfa\x20\x39\xb4\xf3\x09\xdd\x6b\x50\x00\x8b\x16\xee\x00\x39\x67\xa4\x2f\xa7\xa5\xab\xb1\x30\x58\x81\x8f\xe4\x69\x4c\xe6\x0b\xf4\xaa\x2b\x26\xd0\x97\x90\xa2\xc8\xe7\xd6\x23\x8b\x57\x89\xc7\xa3\x4d\x6e\xf0\xbe\xe8\x53\x26\x86\xc7\x31\xf6\x14\x4e\x8e\x25\xc1\xa4\x7b\x0b\xd8\xac\x94\x1c\xc0\x39\x37\x90\x77\x75\x15\x34\x7f\xc4\x96\xcc\xbb\x46\xf3\xe5\x84\xa4\xf8\xb9\x0e\x15\xeb\x58\xa7\x06\x2d\x4c\xd3\xf6\x44\x1c\xfc\x9c\xdd\x62\x35\xff\x2e\xb8\xe4\x1b\x00\xb7\x09\xef\x6f\x15\xaa\x3d\xb2\x01\x4e\x68\x05\x47\x38\xb3\xf9\xc9\x3c\x84\xe7\xe7\x3f\x10\x10\xbf\x29\xe0\xcc\xa0\x8f\x82\x3f\xcd\xb7\x8b\x40\x08\x07\x3e\x53\xf1\xe1\x58\x35\x7f\xb1\xb6\xbd\x53\x5b\xac\xd6\xcb\x52\x3a\x40\xaa\xd6\x25\x27\x71\xdd\x13\xa7\xd7\x5a\x3a\x66\xe0\x44\xf3\xad\xb7\x75\xac\x8e\x60\xdc\x9c\x57\x26\x02\x47\xf2\xc7\xbb\xa8\x39\x77\xcf\x45\x05\xe0\x53\x18\x45\x09\x3e\xa7\x33\x79\x1a\xea\x98\x36\x76\xfe\x4d\x17\xba\x37\x3b\x40\xe9\x99\x26\x61\x92\x41\xe3\x27\x14\xaf\x8e\x15\x7a\xbd\x9e\x00\xcd\x02\x23\x9f\x5b\xaf\x78\x2f\xb8\xe8\x27\x76\xdf\xe7\xf1\x77\x86\x93\x0e\x7e\xde\x52\xb8\x28\xef\x0e\x22\x7e\x23\x57\x57\x2f\x03\x77\xc5\x7d\xd9\xd3\x8d\xbf\xdd\x96\xca\x3e\x26\xad\x9c\x7b\x94\x6b\x9a\x77\x6a\x33\x30\xf4\xab\xd8\x3e\xda\xc2\x81\xd8\xcb\xb8\xc5\xac\xaf\xd4\x4c\x61\x92\xb8\x9c\xf1\x64\x56\x08\x9b\x06\x7c\xf2\x18\xfd\xe3\xde\xd4\x2d\xf4\x47\xc3\x86\x66\xd2\x9a\xb9\x7c\xa9\x96\xa6\x0d\xd6\xfc\xcf\xdc\xb0\x31\x64\x6f\x48\x65\x3d\x12\x0c\x3c\x75\x76\xb7\x38\x55\xdc\x6f\x3a\x7d\x8d\x62\x77\xbe\x65\x87\x74\xf8\xd1\x12\x87\xdb\x57\x39\x5a\x67\xc3\xd1\x1f\x3d\xa7\x84\x43\xf4\xac\xc2\x72\x70\xb1\x08\x81\x28\xb8\x90\x95\x0e\xe6\xea\xc5\x3f\xd3\x4f\x27\xbc\x98\x0e\xb2\x85\xc2\x21\xb0\x3d\xef\x00\x73\xbd\x56\xa8\xab\x20\xac\x83\xa3\xd3\x44\x77\xe6\x89\xdc\xea\x34\x79\xa3\xae\x66\x0a\xd6\xe1\xf3\xad\x6f\x7d\x89\x52\xcc\xa0\xb7\xc1\xc0\xba\x60\x14\x3b\xf9\xcf\x9e\x76\x9a\x8d\xde\x18\xfd\xe5\xbd\xe7\x68\xa8\x42\x1b\xe6\x98\x65\x19\x12\x1b\xb8\x5b\xff\xb4\xbf\xdf\x0f\x43\x11\xac\x9f\x9c\xf3\x7e\x7b\xef\xab\xaa\xc8\x08\x3b\x59\x4a\x95\xbb\xca\xfe\xf9\x75\x91\x39\x54\x05\x9f\x3c\xd2\xff\x8e\xe0\x27\xae\x9e\x94\x9b\x1b\x1b\xf6\xfd\x3f\x53\x87\x13\xde\xa1\xc3\xb8\xb7\xae\xa3\xf7\x59\x4f\xff\xa0\x05\xc5\xaa\xd3\xe5\xbd\x26\x62\xe6\x8e\x2a\x67\xa6\x88\xa0\xae\xf9\x05\x0d\x4d\x3f\xba\x5e\xc0\xf3\x2a\xcf\xd4\x87\xc0\xb8\x57\xc0\xe8\x7b\x91\xe7\x44\xec\xaf\xa9\xc0\x06\x9a\x7a\x7f\x63\x52\x41\x65\x1d\x2b\xe9\x9e\x2c\x71\x68\x96\xef\xcf\xed\x50\xda\xc0\xa8\x35\xed\x3c\x54\x43\xf4\xa2\x37\xae\x33\xdb\xf1\xc1\x08\x02\xb6\x88\x51\xb3\x3b\x70\xfb\x40\x3b\xbf\x60\x0d\x46\xaf\x94\xc2\xaf\x1c\x27\x1f\xf3\x2b\x30\x54\xb1\xdb\xcd\x29\xe2\x41\x41\x58\x9d\xd8\x31\x02\x24\xc1\xf0\x05\xf9\xd9\x05\x41\x73\xac\xd4\x38\xcc\xef\x37\xcb\xfb\x16\x26\x0b\x11\xc2\xc2\x36\x24\x15\x57\xfc\x56\xc3\xf7\x3e\x8e\x7e\x3f\x0c\xe5\xbd\x2a\x4a\xc7\x23\xbf\xd3\x1b\xd3\x31\xbe\xf6\x2e\xff\x31\x7a\xb8\x54\x5f\x2d\xcf\x77\x3c\x69\xd2\x5a\x71\xad\x8a\xa4\x40\x54\x16\x60\x1d\x78\x75\x15\x47\x7c\x09\x8b\xd2\x7d\xc8\xa6\x77\xd0\x26\x77\x1b\x29\xb6\xb3\xce\x6c\x44\xe3\xb1\x44\xab\x5c\x3e\x1a\xf0\xcb\xed\x54\xdb\x1d\xd1\x0e\x52\x7a\x5d\xc2\x13\xef\x68\x28\xbb\xcc\x14\x78\x7e\x4b\x18\xd5\xdb\x49\x78\x5c\xe4\x5d\x65\xe7\x7e\x89\x27\x21\x28\x8c\xec\xa2\x5a\x23\x06\x23\xa1\xe6\x03\xf9\x26\x3f\x47\xf6\xf1\xf1\xf1\xb1\x81\xef\x8c\x39\xa2\x78\x1f\x2a\x72\x9a\x48\x2c\x05\xf5\xdf\x32\x96\x02\x4e\x80\xc3\x13\x13\x8e\x5d\x07\xd2\x3c\x2c\x33\x35\x52\x49\x88\xde\xcb\x1b\x72\x40\xd1\x62\x5b\xa5\xc3\xb7\x5e\x4d\xc3\x84\x5a\x1b\x0b\x81\x71\xe2\x7f\x24\xbe\x28\x0f\x6f\x1a\x35\x0c\xf3\x30\x3d\x4a\x67\xbc\x06\x6c\x88\xa3\xa2\x0d\xc1\x39\x32\xee\xb5\xc5\x95\x71\x15\x18\x66\xbd\xdb\x12\x00\x03\xc8\x29\xe3\x5f\xee\x32\x72\x6e\xcb\xf1\x2a\x17\xe5\x53\x3b\xe0\x8b\xc3\xf7\x8e\xf0\xbe\xb9\x17\xf3\x8d\x91\x2f\xff\xef\x9d\xc7\xea\x5b\xaf\xab\xbb\x69\xe1\x2d\x91\x37\xba\x13\x35\x4a\x10\x18\x36\x69\xff\xb0\xf9\x88\x68\xb9\xb0\x15\xcd\xf0\xaf\x50\xc0\x67\x89\x47\x1a\xcb\x5c\xf9\x47\x8f\xf5\x40\xab\x98\xa9\x7a\xb9\xc2\xe7\xcf\xbd\xeb\x67\x77\xcd\x89\x53\xfe\x47\x49\x74\x77\xad\xb8\x8a\x51\x04\xcb\x42\xcb\x2b\x22\xc0\xaa\x78\x5f\x9a\x9b\xea\xb1\x6d\xc9\x47\xed\xfe\xef\x16\x37\x73\x49\x7a\xce\xa2\xe6\x12\x36\xa5\xa2\x4a\xa0\x13\x3f\xca\xbb\x2b\x0f\x2a\x2b\xc6\x9c\xd1\x34\xad\xa5\x6e\xbc\x0e\xb9\x6b\x6c\xc2\xce\x24\xbd\x5f\xc5\x1a\x68\xa2\xb9\x5f\x8f\xa6\xbc\xd4\x9f\x87\xef\xb2\x7d\x6c\x4c\xc3\x28\xfe\xd1\x9a\x0d\x40\x43\x7c\xaa\x2c\xb1\x63\x5f\x3c\x4a\x5b\x77\xde\xf6\x86\x89\x89\xe0\x94\xdd\x02\xb9\x18\x6a\x51\xfc\xd0\xd5\x61\xa1\x95\x37\xcb\x63\x37\x49\x68\x71\xdc\x4f\x0e\xd3\x5b\xb8\x8f\xad\xe8\xda\x18\x34\xfa\x75\x9f\x47\x30\x1b\x51\x3b\x15\x3c\xe0\x6d\x7f\x55\x44\x43\x4b\x1a\x1f\xed\xb4\x55\xa3\x8f\xd6\xcc\x29\x6f\x7d\xca\xb3\x74\xf9\x7b\x87\xfc\x45\x91\xd2\xf9\xe2\x09\x93\x67\x35\x8f\x2d\x2e\x9f\xbc\xc4\x3e\x7d\x92\xe8\xd7\x9b\xf9\xd4\x31\xd0\x69\x62\x49\x85\xb5\xe4\x73\x03\xb7\x14\x3b\x89\x4c\xbd\xd6\x4d\x27\x7a\x01\xcd\xe1\xc1\x97\x4c\x26\x6b\xdb\x8e\x8c\x16\x86\x4c\xb5\xe3\x75\xc4\x88\x57\x72\x0a\x03\x2f\x3a\x06\xfe\x33\x8f\xe5\xb1\x61\x90\xb6\x40\xd2\x71\x13\x81\xa1\x3b\xdd\xf8\xa6\x23\x6f\x97\xe4\x47\xe2\xdf\xb7\xae\x9d\xe2\x3b\xce\x98\xce\xa1\xbf\xb0\xfd\x7c\xb6\x7f\xa3\x44\x6a\x54\x49\x60\x06\x01\x39\xcf\x17\xf6\xff\x28\x65\x10\xc0\x5c\x56\xed\xc0\x87\xa8\x83\xfc\xb4\x05\x98\x02\xa9\xcd\xea\xa1\xc4\x27\x6e\x27\xc0\x49\x18\xec\xc5\x7a\x74\x70\xd4\x95\xb9\x40\xd8\xfe\x4e\x07\xc3\x09\x30\xd1\x9c\xbd\xda\x60\x3f\x37\xcf\x5f\x14\x29\x9e\xe7\xe0\x5f\x01\x19\x04\x21\x37\x44\x0f\x78\x76\x3e\x0a\xe1\x37\xde\x87\x46\xcf\xde\x29\xa7\x6e\xd1\xaa\xa6\xce\xcc\xf0\x4f\x63\x03\xee\xf8\x88\x9f\xcd\x84\x9f\x87\x1e\xe8\x64\x00\xe0\x1b\x49\x4c\x57\x65\x41\x23\x5c\x9e\xea\xfb\x14\x84\xce\x70\xfd\xbd\xe2\x3a\xcb\xe7\x91\x47\x1c\x48\x78\xdb\xec\xb8\xdd\xb0\x84\xb3\xc7\xeb\xa6\xed\xd6\xe2\xc9\xd9\x67\x91\xce\xad\xfe\x32\x08\xe3\x56\x08\x67\xe5\x4a\xaa\xef\xfa\xe2\x50\x66\x0c\x32\xf0\xea\xf6\x29\x55\x54\x5f\x13\x25\xc3\x4d\x4b\xef\x6a\x0b\xa4\x66\x59\xf4\xd2\x96\x24\xc2\xb8\x3a\x74\x87\xcb\xab\x0f\x24\x83\xd1\x0e\x77\x2f\xa2\x2b\x65\x2f\x75\x71\xec\xa9\x17\xd7\x55\xcf\x52\x35\xb0\xda\x7c\x8b\xa1\x39\x54\x16\x99\x70\x39\xf7\x75\x7c\xf9\x9b\x4f\xfb\xa1\x5b\x88\xdb\x20\x16\x2e\x0b\xd0\xa8\x06\x2d\xa2\x04\xf4\x0c\xe5\xbd\xee\xcd\xa7\x1f\xe0\xef\x15\x38\x1b\x03\xaa\x3b\x4d\x78\x24\xc5\xda\xbd\x85\x8e\x16\x1b\x84\x2c\xbd\xfb\x21\x42\xcf\x76\xf6\x74\xc1\xfe\x67\x3f\x2a\x08\xab\x08\x2b\x95\xbd\xa6\x69\x4a\x8b\xb9\x55\xe8\x25\x2d\xe3\xd9\x87\x49\x79\x15\x2d\xde\x2b\x5a\xb0\xd4\x7c\x9c\xb2\x78\x38\xb6\x7a\x32\x7d\xa4\x0b\x02\x04\xaa\xd7\xb2\xc2\x29\x76\x8f\x21\xc9\xd1\x8b\x2c\x22\xd6\x90\x39\x0b\x5d\xfe\x67\x7f\xdd\xc8\x03\x0a\xcd\x56\x08\x20\x2f\x08\x30\xa9\x72\xa0\x39\x01\xeb\x50\xad\xc7\xd7\x24\x31\xba\xa0\x3c\xe9\x7c\xc2\x1a\x67\xcc\xec\x7b\x92\xa9\xeb\x3a\x73\x13\xff\x9f\x34\x89\x8b\xc3\xf8\x7f\xa8\xd7\xa7\x3b\x4b\x6f\x77\x4f\x13\x3c\x86\x69\x5a\x7a\xe0\xcd\xa5\x63\x53\x3c\x3b\x1f\x67\x68\x16\x61\x75\x47\xb4\x8d\xd3\xf2\xb8\xd8\xd7\x66\xe8\x79\x31\xac\x36\x4c\xe0\xbc\xba\x7b\xe0\x92\x55\x73\x5b\x8e\x78\xad\xa7\x12\x4a\x08\xa8\x8d\x2f\xd6\x2e\x54\xd7\x92\x08\xc5\x5f\xe9\x6c\xbc\xce\x27\x47\x7c\xeb\x4b\x95\xd2\x06\xb9\x8f\x18\x6e\xa0\x05\xa7\xb5\xc3\x7b\x8a\x71\x00\x1c\x15\xae\x0e\x8e\x6d\x5f\x2c\x84\x13\x4a\x95\xae\x25\xea\x46\x9b\x30\x49\xe1\x53\x93\xa9\xb6\xd2\x15\x05\xd5\x9a\xfd\x9e\x33\x88\xaf\xcf\x86\xe2\x6a\xf8\xa0\xf8\xbc\x7f\xfb\xe5\x5e\x08\xa4\xe5\x94\xa8\x0b\x1c\x0e\x79\xfc\x74\x38\x48\xcf\x34\x2d\x61\x9c\x58\xbb\x95\x97\xa6\x62\xc0\x94\x2b\xca\x44\xaf\x59\x60\x1e\x65\x15\x05\xaf\xc5\x2d\x99\x23\x13\xfa\xd4\x31\x54\xa5\x50\xb2\x6f\x5b\xa2\x35\x6a\x5c\xd1\x9a\x2e\xed\x2e\xae\x6e\x63\x32\x06\x2a\xa1\xeb\x28\x35\xc3\x79\x2a\x5d\xf9\x63\x74\xbc\xec\x76\xfe\x67\xb5\xf6\xed\xa2\x91\xbe\x87\x6f\x9b\xa3\xe3\xc8\x6c\xa0\x2e\xad\x72\x2a\x6d\x59\x61\x19\x51\x54\x5b\x60\x23\xe4\x82\xd5\xd8\x8d\x2c\xf0\x91\x69\xb0\xb2\x76\x41\x4d\x17\xf8\x1e\xae\x40\x30\xa3\x33\x80\x8c\x9c\x63\x6a\xd2\xd2\x2a\x37\x8b\xc2\x3e\xc4\x8a\x2e\xf8\x31\xda\xd2\xf4\xb2\xa7\x49\x68\xa7\xa4\x0e\x68\xb3\xc9\xc8\x37\x05\x85\xc2\x04\x56\x2a\x0a\xc6\xf2\xd3\xb0\x10\x00\x60\xc7\xad\x43\x01\x8d\xd6\x26\x01\xc2\xdb\xff\x58\xe9\xfc\xc6\xab\xa6\x6f\x3c\x46\x16\x01\x29\x2f\x18\x96\xd0\xfd\x30\xe3\xb1\xc1\x03\xa2\x2e\x3a\xb1\x83\xf8\x0c\x72\xa6\x90\x6c\xc5\x83\xb1\x0a\x0e\xec\xa6\x4f\xfb\xf0\x01\xd4\xbf\x16\x56\x1f\x76\x82\x03\xfa\x69\x5a\xa5\xcd\x78\x40\x72\x60\xda\x0a\xa5\xa4\x92\x9e\x5e\xc2\xc6\xca\x1f\x7c\x61\x3f\x44\x0f\x65\x0a\xa7\xc4\x0d\x61\xef\x8a\x25\xbe\xbc\x0f\xe4\xef\x2a\x81\x49\x25\xd2\x9b\x7c\xe5\x5d\xe1\x27\xff\xfa\xb3\xa8\xc1\xad\x2e\xee\x6a\xaf\xb3\xb4\xa1\x1a\xea\xda\xfc\xc3\x62\x59\x44\x8c\x73\x06\x69\x1d\xdd\x17\xd3\x36\xe2\x7b\xf5\xf2\xc8\x50\x31\x05\xa7\xcd\x35\x40\x88\x6b\x6d\xb8\xa0\xd6\xc3\x6b\xda\x5d\xc2\x3a\x7e\x2e\x50\x76\x3b\x18\xf5\xf8\xb2\x2b\xf3\x3f\x81\xee\x44\x24\xaa\xc2\x3a\x4a\x2a\x1d\xf1\xdc\xaa\xfc\x51\x98\xf1\xb4\x28\x0a\xc0\x97\x04\x01\x02\xf6\xbe\x76\x2c\x3f\xb8\x37\x3c\xd8\x4d\x29\xb3\xfe\x2c\x39\xd3\x7f\x1d\xf8\xfb\x22\xa9\x6b\x20\xfa\xc7\x90\x5d\x36\x77\xb2\xc4\x57\xdc\x8a\x57\x7f\x87\x11\x3e\x58\x39\xd0\x91\x5e\xcd\x09\x55\xac\x1c\x3b\x86\x9c\xae\x18\x7e\x07\x3c\x04\xb9\xf3\x60\xdc\x5e\x27\x13\x9d\x91\x22\x94\x02\x88\x97\x61\xbd\xae\x60\x30\x7c\x9d\xba\xe8\x6c\x1a\xf7\xe2\xab\xed\x2c\xab\x88\x3c\x1d\xb6\x73\x6d\x8f\x49\xbf\x7d\xfd\xb1\x43\xb6\xf6\xc0\xe8\x73\xf4\xa5\x0b\xe8\x6e\x9c\x8e\x4d\xfa\xe6\x9e\xcb\xd7\xef\x2c\x8b\x10\x18\x37\x92\x95\x37\xd2\x57\x7d\x2d\xa4\x9b\x54\xd1\x03\x3b\xf3\x5f\x5f\x27\x20\x93\xe1\x4c\x91\x81\x49\x13\xa5\x25\x39\xfe\x2e\xe8\x1e\x9c\x2b\xae\x69\x34\xd2\x3a\x16\xaf\xa3\x69\x6a\x8d\xad\x5a\x41\x5b\xfd\xf2\x66\xa5\x75\xb5\x8b\xac\x8d\xeb\xf1\x54\xb7\x1c\xc6\x9d\x1f\x44\xe6\x04\x9c\x3d\x79\x11\x76\x8e\x69\x9e\x0e\xf9\x8c\xcb\xb3\x92\x51\xb1\x1c\xba\xe0\xbe\xd7\x50\x76\x53\xf7\x05\x47\x95\xe8\xd1\x98\x38\x04\xe3\xc4\x68\xb1\x05\xfd\xcf\x65\xeb\xb0\x25\xa5\x89\x60\x2d\xc9\xa9\xc2\x9f\x57\x09\x74\x36\xbd\x4c\xb8\xe2\x84\x79\xd6\x59\x7a\xab\xf6\xe5\x94\xc7\xc4\x48\xb5\x32\xb5\xd8\x3b\x89\xf7\xb3\x95\xd8\x6b\xa5\xd4\xc4\xe7\x56\x91\x24\xe2\xaf\xd5\x1f\x3f\xe9\x17\x7a\x01\x6a\x58\x88\xa7\x17\xdb\x20\xaa\x7f\x6f\x25\x01\x1a\x23\x5b\x32\x59\x7c\xea\xea\x02\xf6\x64\xa7\xce\x18\x3d\x0a\x91\x0f\x68\x82\x35\x89\x9e\xcf\x10\x5c\xae\x69\x3f\x8b\x68\xee\x5d\xe6\xab\xa7\x94\xd3\x7e\x2b\xb1\xf6\xbe\xe2\xbf\xe5\x4c\xff\xf2\x9c\x36\x45\x05\x77\x2c\x22\x7d\x2b\xd6\x73\x25\x1c\x41\xc9\x12\x6d\xbe\x8b\x62\x36\x87\x83\x40\x0e\xd3\x8b\x3c\x64\x7d\x16\xdc\xeb\xa3\xea\xbd\xca\x40\x42\x6b\x89\x9a\x37\xa9\x2b\xdc\x46\x48\xec\xbb\xb0\x02\x27\x79\x21\x05\xfe\x48\xaf\xfd\x43\x66\x01\xbb\xcf\x1f\x35\x0d\xdf\x5b\x9b\x01\xef\xfd\xce\x27\x5b\x5e\x5f\xc5\x7a\xfb\x6c\x33\xa2\x3f\xa0\xb0\x8c\x17\x96\x12\x80\x63\xb7\xce\x33\xe0\x35\x96\x24\x08\xa8\x2d\x1e\x7d\xe8\x1d\x4c\x24\x79\x1f\x7e\xf9\xe1\xeb\xc5\xcc\x64\xe3\x87\xab\x77\x6b\xc0\x6b\x5a\xd7\xe7\xbe\x7f\xf4\x6e\x2f\x37\xd8\xcf\x49\x65\x9a\xf1\xef\xf1\xdb\xa4\x36\x56\xcd\x4d\x00\xf4\xbc\x21\xc7\x2b\xb6\xed\xcd\xc1\x86\x79\x2e\x45\x8b\xbf\x8a\x76\x61\x42\x94\x8a\x7b\xae\xe3\x88\x74\xcc\xa9\x12\x98\xcd\xe3\xf2\xf7\xd3\x76\x39\xce\xad\x6b\xfc\xc6\x26\x2c\x80\xa2\x88\xc0\x0f\x89\x43\xf7\x71\x09\x18\x35\x25\x39\xcf\x09\x01\xd5\xb2\x81\xf1\xbb\x39\xb6\xf3\xe7\xc2\xd8\xf1\xc3\x1b\xcc\x07\x4a\xb1\x97\xaa\xd1\xa0\x40\x06\xde\xbf\x9f\x07\x1e\x74\x43\x3b\x2d\xc3\x32\xbc\xd4\xff\xdc\x6c\x99\x67\xef\x32\xf9\x53\x31\xd5\xe2\x7b\x31\xd7\x6e\x64\x21\xa6\xdf\x34\x98\xc9\xd3\x01\x30\x6e\x6a\xde\x4d\xc7\x0e\x85\xbb\xb4\x73\x9a\xbf\xc7\x7b\x04\x12\x8d\x02\x28\xd6\x11\xc7\x1e\x74\xdd\x4b\xed\x5b\xe5\xe1\x6e\xd3\x6e\x58\x96\x48\x60\x98\xb0\xc2\x3e\xb1\xaf\xcf\x0f\x0e\xf4\x4c\xb2\xd0\x06\x3a\x5d\xe2\xc1\xe2\x2e\x5a\x75\xb3\x56\x78\x56\xf5\xf9\x45\xb2\xcc\xd7\xc3\x88\xd5\x27\xb8\xed\x1a\x6d\xbc\x58\x6d\x88\xc6\x6e\x7d\x2e\xdb\xa3\xa3\xff\x06\x3e\x1a\xa6\x3a\x9e\x09\xc1\xa2\xa1\x81\x81\x06\xbb\x33\x43\xb2\x5f\xe8\xfa\x3a\xbb\xb6\x7a\x4e\x74\x37\x13\xde\xfb\x8f\x3a\xe2\x85\x6c\x01\xaf\xc2\x76\x83\x20\x5b\x58\xbc\x4f\xd1\x72\x58\x00\x07\xf9\xf9\x78\x80\xed\xf9\x63\xd3\x4f\x45\x64\xbd\xc4\x27\xa3\x12\xf6\x9a\x36\x9c\x9a\x10\xcd\xa1\xa5\xa5\xc0\xf3\x93\x3b\x8d\xad\xe4\xe3\xec\x17\x2d\x9a\xa3\x4b\x87\x3d\x1e\x5a\xb9\x4b\x18\xa3\x76\xbb\x1b\xbf\xfe\xd5\x81\x21\xd3\xf8\xf5\xfa\x82\x8c\x7c\x05\x66\xc4\x96\x02\x58\xa3\xed\x8b\x95\xd7\x9c\x40\xe0\xa5\x84\xf9\xe7\x30\x2c\xa1\x20\x7f\x03\x4b\xdb\x96\xae\x56\x7f\xf6\x11\xc2\xfb\x0c\x56\x8a\xfe\xed\x1d\x0b\x59\xcf\xe7\xa7\x7f\x9c\xdb\x73\x7d\x40\x59\xfe\xbc\xc9\x7e\xd5\xed\x4f\xcc\xd9\xae\x3a\xde\xae\x5f\xcc\xd0\xfe\x40\xbb\xe4\x16\x3c\xd4\xf1\xa5\x7b\x3f\x71\x9d\x74\x14\x12\x66\x20\x54\xee\xb5\x3f\x3b\x0c\xaa\xba\x3b\x6e\xfd\x22\x71\x5e\xc1\xed\xd8\xa5\x2a\xd5\x44\xb6\xaa\xac\x70\x50\x2b\xac\xa1\x27\x20\xa9\xc8\x00\x9b\x0c\x52\xa6\x00\x8a\xbd\xf8\x3e\xec\xa3\xe2\x0b\xeb\x90\x7a\x45\x8f\x8d\x45\x4d\xcf\x60\xb5\x9b\xcf\x09\x31\xa1\xae\x76\x62\xef\x97\x9a\xbf\xe6\x3d\x98\x3a\xfc\xd5\x75\x14\x09\x4c\x36\x33\xc5\xbd\xa3\x00\x90\xf7\xc8\xe1\xbb\xeb\x40\x3f\x49\xd0\xde\x26\xe8\xb4\xa2\x05\x0c\xbc\x0f\x76\x77\x16\x7b\x2f\xe6\xb9\xa3\x74\xaa\x4b\xcb\xa3\xfb\x38\xf8\x76\xbe\xf1\x30\xe6\x51\xfb\x9d\x13\x66\x69\xf1\xe8\x43\x8b\xed\x46\xa7\x9b\x0a\x14\x7d\x2e\xc7\xb9\x45\xc2\xc9\xb1\x04\x42\x90\x01\x09\xe6\xa6\x78\x27\xbd\x68\x14\x7e\x5b\x5b\xa9\x1f\x42\x9c\x88\xbb\xc1\xf3\xf2\x63\xca\x20\x72\x4b\x06\x0b\xf8\x1d\xef\x71\xb8\xa8\xa1\x8e\xda\x83\xd7\x82\xb9\xff\x5d\xac\xa1\x6c\xcf\xe3\xab\xde\x5e\xe7\xa0\xb6\x09\xcb\xc6\x9a\xbf\x1e\xce\x57\xaa\x1a\x8e\x32\x46\x7a\x41\xe9\x5e\x1f\x55\x80\x11\xc1\xf0\xae\x89\x85\x0b\x6f\xcf\x41\x14\x6b\x4a\xc7\x50\xe5\x88\x87\x86\x14\xec\x73\xd4\x58\x79\x6c\x97\xa9\xc8\xd3\x72\x29\x2f\x53\x04\xa5\xe2\xf5\xde\x54\x49\xd1\xcc\x88\x41\x74\x3c\x8d\x76\x50\xde\x0d\xa7\xaa\x06\xd4\x74\xf1\xdd\x43\x7a\x0d\x3d\xca\x32\x2c\x5f\x98\xca\x7e\x9c\x9f\x01\x56\x28\x00\x95\x78\xa9\xa9\x6d\xfd\x39\xc4\xbe\xdc\xba\xd4\xff\x78\x87\x06\x27\xd2\x63\x1f\xf9\xf5\x30\x0d\x6d\xe2\xd0\xfa\x95\x04\x27\x85\xdf\xb5\xee\xc9\x55\x16\xf3\x79\xdc\x11\xc4\xd8\xcd\x89\xec\xfc\x31\xf9\xa3\x17\xf7\xc9\xfd\xcb\x1e\x39\xda\x8a\x04\xbf\x7b\x36\xbb\x65\x37\x3c\x1e\xe9\x4e\x86\x10\x1d\x37\xf7\x4a\xf2\xca\xf7\xd1\x44\xf8\x1d\x6d\x77\x01\xd1\x8f\x76\xa4\x67\xc4\x80\xd0\x7b\xeb\x4f\xac\x87\x2d\x46\x43\x4b\x5f\xf1\x2a\xde\x11\xc6\xbf\xfd\x9b\xf6\x39\x65\x0e\x8f\xd0\xd9\x60\xda\xc6\x41\xc0\x72\xa9\xf1\xb7\x1a\x6a\xf5\xbc\x7b\x8f\x35\x5d\xde\x2b\x71\x9d\xb2\xfd\xf8\x1a\xc0\xa4\x40\x8c\x3a\x54\xa3\x92\xb8\x54\x33\x31\x20\xb9\x41\x7f\x96\x6c\x52\x30\x92\xd8\x35\xfa\x53\x82\x00\xa3\x21\xe5\x9f\x26\x20\xc8\x7b\x14\x01\x49\xdb\xcd\x84\x3c\x9c\x2d\x6e\xd8\xf2\x54\xec\x3a\xaf\xe8\x9e\x16\xae\xc7\x37\xd7\xed\x1e\xcb\x3d\xc5\x6f\x85\xd3\x21\x87\x45\x0b\xa7\xae\x0c\x38\x71\x74\xbe\xe7\x24\xef\x36\xf1\x88\x6b\xfc\x6c\xfb\xf2\x51\x88\x2f\xbd\x39\x4a\x18\xa6\x3d\xe8\xf2\x86\x2a\x4d\x25\x75\x9c\xd6\x68\xfe\x3b\x2b\x69\x9b\xdf\xcd\xe1\xbf\x75\xe8\xb7\x95\xd3\x8a\xba\x54\xaa\x59\x66\xf6\xd1\x6a\xff\xfc\x81\xa7\xe9\x5e\x75\xec\x2f\x7d\x5d\x5b\xef\x64\x4d\xdc\xf0\xa1\x5f\x2d\x92\x55\xc8\x27\x77\x34\x7e\xbc\x5a\x88\xde\x84\x13\xb7\x29\xa7\x6a\x7f\x25\xbb\xea\xbc\x9f\xe8\x89\xbc\x9f\xd8\x5e\x8a\xdb\x3e\x92\xee\xc4\x0f\xf1\xf9\xb6\x8b\x87\xfe\xf9\x25\xe0\x5e\x86\x1e\xf7\xea\x9c\x3d\xef\xa9\x80\x7a\x51\x9d\xe2\xd7\x99\x89\xa4\x5a\xa8\xdb\xd5\x91\xea\xb3\xeb\x6d\xce\x81\x75\x6f\x79\xfd\xd4\x5f\x03\x8a\xce\xe9\x56\xb8\x32\xfc\xdb\xa1\x74\xc4\x7d\x15\xe4\x4e\xc0\x5f\xd2\x0f\xdc\x6b\x7f\xe8\xab\x15\xf4\x0b\xbd\x1a\x52\xaa\x1b\x92\x7e\x3f\x77\x64\x3e\x18\xae\xda\xde\xa6\xfe\xe8\xf9\xbc\x19\x12\xb8\x13\x74\x52\xd1\x60\x79\xbb\x42\x57\x3c\x18\x95\xf7\x84\x0e\x1b\xf8\x0e\xef\x20\xeb\xc4\x7f\x9e\x1f\x66\x0b\x43\x34\xa4\xa4\xff\xe9\x42\xe1\x23\x20\x8f\x4f\xa4\x93\xed\x4f\xac\xcf\xa1\x73\x66\xec\x2d\x1d\x26\x6f\x2c\xa7\xdb\x5d\x60\xf4\xc4\x12\xb9\xd0\x39\xe1\xf5\x93\x05\xad\xb7\xd8\x35\xc1\xa0\x07\x2e\x23\x92\x34\xc2\x59\xdb\xe2\x7c\x05\xaa\x71\x1e\xfb\x5e\x15\xb1\x26\x8a\xfb\x19\xe7\x74\xef\x6a\xd2\x60\xb8\x06\x6f\x88\xde\x22\xcb\x4a\x43\x25\xcd\xcb\x01\x7c\x14\x49\x36\x97\xf6\xd1\xbd\x2f\x8c\x72\x07\xe7\x84\x1d\xd4\x1a\xd7\x56\x19\x08\x67\x75\x22\x7a\x00\xc7\xca\xf8\x54\xe4\x97\x50\x0f\xfe\xed\xce\x7c\x68\xa9\x72\x39\xb6\x57\xf1\xdb\x7e\x23\xe5\xc3\x62\x2b\x3f\x41\x26\x83\x8f\x89\x69\x4a\x0e\x43\x60\x80\x55\x48\xdd\x88\x52\x13\xdd\x36\xfe\x63\xb0\xc7\x7d\x7f\xc2\x65\x7d\x41\x83\x57\xa4\x3b\x92\x15\x40\x25\x39\x69\x81\xcd\x54\x1d\x4e\x62\x2e\xef\x3b\xa9\x1f\x2f\xb1\xe3\x39\x0d\x15\x58\x94\xc3\xf4\x4b\xa8\x4b\xaa\x52\xab\x84\x6a\xf5\xbd\x45\x2d\xdf\xa5\x7e\xa7\x57\x66\x7e\xc1\x4e\xed\xea\x24\xed\xe6\x64\xe4\xfc\x3b\x1c\x80\x74\x2f\xd6\xe2\x09\x95\xe0\x97\x25\xbc\xaa\x8b\x89\x6e\xb8\xad\x52\x18\x14\x48\xd5\x79\x3a\x65\x69\x32\xdb\x4d\x20\x71\x43\xf1\xad\x28\x46\xce\xa6\xb5\x93\x0e\x1e\xce\x01\x60\x5e\xde\x20\x99\x34\x0b\xe8\xc5\x9d\x0a\xf3\xb3\x39\xd7\xc8\x5d\x07\xe9\x87\xbe\x5d\xe9\xc4\xe7\xe1\xb4\x6d\x42\x28\xef\x59\x01\x3a\x7a\xe2\x70\x13\xeb\xea\xb8\xee\x91\x76\xaa\xcb\x0a\x2a\x5d\xde\xa0\x02\x03\xcb\x1d\x8a\x80\x42\xc2\xd4\x04\xfa\x46\x4d\x13\x1e\xea\x53\x75\x05\x93\xf4\x4b\xa4\x96\xd6\x8e\x89\x91\xea\x23\xdc\x36\xf6\x98\x58\xe6\x46\x68\x66\x44\x4a\xd5\x60\xf3\x9e\xc7\xbe\xeb\xba\x98\x03\x45\x7b\xac\xfa\x6c\x1f\xb2\x2c\x58\x0f\xc5\xea\xbb\x17\xad\xa8\x19\xad\xc0\xbc\xf1\xfb\x29\x0b\x79\xca\xef\xfa\x5c\x35\x75\xea\xb0\xa0\xe5\x4b\x13\xcb\x8a\xc1\x8b\x5f\x8a\xd5\x14\x1e\xce\xc5\x2c\xc3\xcc\xf6\x71\xb1\x6c\x1a\x7c\x72\x54\xa0\x1c\x4f\x4d\x21\x4c\x98\xf3\x5f\x88\x1a\xd4\x75\x21\x41\xbf\x30\x47\xb4\xc9\x10\xef\xc3\xa7\x97\xef\xcb\x76\x2c\x8f\x4c\xb4\x73\x65\xa1\xae\xaa\xbb\x02\xae\x90\x1c\x01\xbc\xbf\x88\x2b\x6c\x49\x9c\x8f\x8d\xd3\xb2\x78\xf8\x26\xe9\x45\x46\x20\x02\x40\x09\x7a\x6e\x20\x5b\xb8\x15\xae\x70\x2d\xa8\xf1\xc7\x5f\xb8\x2f\x90\x3e\xd5\xe9\x4d\xf3\x32\x08\x86\x78\x89\x99\x60\x71\xa4\x31\xf4\x29\xbc\xbe\x53\xdd\x95\xc8\x64\x59\x56\x0d\xef\x24\x2b\x7d\xd4\x72\x24\x40\xaa\x3f\x31\x7f\x17\x73\x97\x1d\x78\x63\xf1\x0e\x47\x72\x63\x12\x2b\xa6\x21\xc5\x90\x78\xdb\x5c\x86\x1a\x60\x48\x00\xda\xf5\xc6\x6c\x6f\xa2\x03\xd9\x74\x2f\xf9\xc5\xc2\x8c\xc5\x89\xa4\x41\x70\xfc\x4a\xab\xd3\xf8\xf0\xf6\x89\xb7\xf8\x7f\x72\x5b\xc8\x00\x8c\x8b\xa4\xa2\xe9\xf7\x7f\x64\x26\xee\xa2\x17\x98\x6e\xf7\xe2\x37\x25\xd2\x8a\xe5\x91\xd1\xb7\x27\xe7\xf1\xb8\x32\xff\xec\x95\x1f\x3b\xa1\x33\x64\x86\x0d\x29\xe7\x68\xee\x3d\x07\xa7\xe3\xd3\x2c\x21\xae\x39\x62\x13\x00\xf1\x55\x91\x0a\x2c\x61\xb7\x9f\xd1\x4b\xaa\x17\x3c\xf4\xfd\x32\x41\x7b\x59\x61\xfe\x19\x99\xac\xe7\x22\xcb\x29\xbb\xcc\x40\x81\x12\x7b\x59\xbd\x5e\x22\x75\xdc\xfb\x70\xab\x2e\x90\x70\xa0\x68\xf0\xd0\x47\xac\x25\xae\x24\x81\x3a\x2d\x1d\xdb\xee\x38\xbd\x48\x06\x07\x97\x49\x8d\x6f\xab\x75\x81\x76\xad\x15\x9d\xfc\xe8\x7b\x7a\xdc\xfc\xa3\x44\xb3\x09\x3a\xbf\x5a\x04\xde\x37\x90\x36\xb9\x6b\x2a\xf8\x1d\xf1\x5a\xfb\x49\x98\xc4\x77\xc8\xb4\x7f\xfd\x5c\x30\xdc\xe9\x66\xe1\xf1\x6d\xed\xeb\xe7\x45\x27\x38\x54\x46\x8c\x39\x7f\x48\xb2\x94\x62\x99\x34\x0b\x68\x59\x72\x2d\xf4\x78\x31\xcb\x23\x1a\xba\x9d\x46\x36\xd8\xb0\x36\xe4\xb5\xa0\xf0\x54\xb5\xd1\x49\x0e\xd1\x90\x28\xee\xe7\xde\x07\xb1\xb0\xd6\x52\xed\x59\x6f\x5b\xe2\xe7\xce\x93\xb5\x64\x39\xc9\x23\xe6\x56\x8e\x38\xc0\x68\x79\x29\x2b\xf7\xb0\x76\x82\x44\x1c\x55\xda\x37\xd2\xb9\x6c\xa6\xe0\xed\x0f\x25\x67\xd1\xdc\x9f\xba\x1d\x5b\x5c\x1b\x6f\xf8\x6a\xf0\xf7\xa2\xbc\xd4\x49\xca\x9d\x4e\x50\xc6\x3f\xa7\x1b\x9e\xca\xe5\x34\x84\x72\x72\x6f\x87\xb3\xbf\x14\xa6\x75\xfd\x03\xa1\xc3\xdb\xa3\xac\x94\x60\x6a\x13\x06\x0f\x7c\x6b\x6a\x16\xf7\x19\xfd\x16\x63\xf2\x50\x59\x81\x49\x35\xca\x0d\x41\x75\x54\x72\xb5\x37\xea\x4a\x51\xe9\x21\xaf\x67\xc7\xd5\xd8\x2d\x0e\x1f\x5d\x89\xfe\x3a\xe0\x26\xbd\xbf\xab\xb0\x9c\x14\xb8\x70\x33\xbb\xa0\x5d\xbe\x46\xc9\x47\xe5\x2e\x47\x49\x79\x25\xe0\x08\x10\xb2\xdd\x84\x32\x07\x33\x85\xd1\x7f\xca\xd8\x06\x78\x31\xa3\x14\xeb\x65\x49\x8f\x05\xc3\x14\x78\xad\x3f\x53\x99\x2f\xc5\xd1\x70\xa7\xbf\xc8\xa5\x7a\x18\x82\x2f\xd5\x6d\x10\xff\x78\x5d\xa2\x33\xc7\xef\xdc\x80\x7f\xaf\x7f\xd7\x0e\x91\x94\x63\x78\xfa\x58\xc3\x0e\xd8\xca\x28\x64\xcf\x4d\xf8\xe6\xd4\xef\x12\x12\xfe\xe1\x19\xf8\x36\x06\xf3\x3e\xb5\x32\x41\x4d\x7b\xeb\xa7\x06\x37\x4a\x9e\x11\xe4\x45\x05\xc4\x49\x2b\x6c\xbc\x5e\x23\x13\x64\xea\x55\x54\xe2\xc4\x90\x24\x05\xf0\x23\x19\x49\x00\xaf\xd6\x5e\xb1\x60\x3a\x39\xd2\x95\xc2\x7a\xdf\xfa\xfb\x5e\x62\x59\xef\x64\xfa\xd9\x8d\xa2\xc7\xa6\x56\xc6\x15\x38\x7e\xe4\xcc\x75\x32\xd2\x63\xda\x4f\x6b\x23\x5b\x66\x2c\xf7\x15\xaf\x3b\x91\x81\x27\xe3\xab\xbf\x65\x9b\x4d\xc4\xcb\x0d\xc7\xb2\xb0\x86\xb6\xfc\x3a\x13\xc7\xb2\xee\x9e\x7d\xac\x73\xd8\xeb\x3a\x3f\xab\x1e\xb4\x7a\x60\x3c\x8e\x4f\xe7\x7d\x31\x00\x11\x1e\xf8\x1a\x81\x42\x30\x1e\x89\xa4\x18\x42\xb8\x1e\x82\x18\x78\x1f\x03\xbf\x94\x33\x01\x92\x10\x1c\xfd\xb2\x2a\xf6\xf5\x13\x66\x2a\xd2\xc1\x13\x38\x82\xaa\x28\xbc\x5d\x45\x81\x32\x5a\x26\xd9\xd6\x03\x30\x4e\x07\xdf\xfa\x21\xcb\x0e\x8e\xbb\x2f\xbb\x22\xd8\x65\x3c\x89\xce\xc7\xec\xd4\xa3\x84\xc3\x95\xa9\xcf\xea\xb8\x0f\xba\xb8\xa5\xef\x0b\xde\x90\x7d\xe5\x7a\xf8\xac\x06\x16\x11\xec\xfb\xa6\x03\xd2\x43\x20\xc8\x80\x43\x7f\x1e\xe8\x19\x2a\xe7\xe4\x3a\x30\x37\xf9\x72\x25\xe2\xc4\x8f\xc3\x7c\xb6\xf3\xae\x93\x3c\xd7\x3a\x1a\xc0\xd5\xc5\xf4\x9f\x69\xaf\x60\xf2\xf0\x47\x02\xf7\xfe\x2b\x86\x76\xac\x6b\x7e\x4c\xd4\x68\xf3\x0b\x45\xd0\xae\x81\x5f\x38\xdc\x4c\x0b\xe9\xd1\x6b\xcd\xf8\x1e\xd7\x28\x84\xd7\xd1\x3f\x79\x17\x0c\xf7\x78\xd3\x8d\xe6\x73\xc7\x97\x8c\x1c\x31\xc3\x96\x5b\x66\xb9\x4c\x09\x08\xeb\xfc\x10\xd6\xf9\x05\x8e\x68\x23\xa0\xb7\x41\xdd\x6f\xa0\x3f\xf6\xc4\x8c\x73\x62\x5d\x8a\xe2\xcb\x0e\xe2\xb8\x0f\x33\xca\x7e\x39\x9d\x2b\xcc\xbb\x8b\x0c\xd2\xe1\x91\xac\x14\x56\x73\x2d\x93\x7a\x5f\x24\xc7\x4c\x67\x83\xe7\xa5\x20\x89\x67\xd0\x02\x6a\xe1\x00\xf9\x72\xd6\x03\x65\x1d\xbc\xc5\x17\x5c\x2f\x1e\x51\x93\x1d\x95\x83\x77\x9d\x46\x68\xf5\x70\x84\x29\xf5\x09\xa7\xdc\xf2\x8c\xaf\xdd\x8a\xe9\xce\xf1\x96\x48\xe0\xb0\x10\x7c\x3c\x10\xc9\x1b\x95\x47\xc1\x8b\xf8\x09\x10\xe6\x34\x74\xd1\xad\x85\x36\x91\xbb\xfa\x61\x01\x92\x25\x39\x50\x69\x3f\x7e\xdc\x43\xa0\x0f\x14\x6a\x5f\xa5\xdf\x55\x8f\xcd\xc8\x41\xc7\x42\xb1\x2e\xad\x53\xe5\x01\x9b\x5f\x58\xbb\xc3\x32\xd9\xf5\x1a\xef\xb4\xc7\xc1\x02\x12\x5c\x85\x51\x4a\x1d\x2c\xc9\x72\x63\x77\x8e\x59\xaf\x71\x84\x6d\x63\xa1\xd6\x9c\x03\xe0\x83\xde\x02\x46\x43\xa6\x10\x52\x7a\xcc\x7c\xcc\x1c\xa4\x61\xd6\x87\xb2\x7b\x8a\x6f\xe0\x1a\xc3\xce\xc7\x8a\x96\x15\xbc\x27\xa1\xe6\x65\xbe\x9d\x2c\x12\x57\xda\x54\xd8\x26\x8c\xa5\x86\x66\x5a\x83\x56\x7e\xdd\xfe\x48\xab\xdf\x30\x17\x4c\xc5\xa7\x4d\x65\x5f\x6c\x1c\xfc\x24\x02\x8a\xc0\xb8\xcb\x31\x45\xa7\x24\x4f\xeb\xe0\x1f\xf3\xbb\x3a\xb1\xf8\x6e\x1d\xe3\xf0\x68\x8c\xb0\x00\x4c\x67\x6e\x79\xca\xec\x60\xbe\x3d\x63\x3e\x76\xb3\x81\x97\x71\xc3\x4f\x42\x03\xba\xd4\x6d\x70\xdb\x18\x8b\x61\xdc\x1c\x35\x1b\xdd\x63\x53\x0d\x55\x2e\x52\x3f\xdc\x77\x37\x9c\x9a\x72\x1b\x6f\x26\xed\x65\xc5\xcb\xd4\x1e\xda\xca\xbd\x98\x3a\xc9\x11\x51\xf2\xb1\x34\xc5\x18\x79\xf3\x3b\xd8\x21\x8c\x1e\xe8\xec\x9d\x30\x3c\x96\x0e\x2c\xae\x83\x1c\xa7\xc2\x6f\xf9\x76\x76\x97\xbe\xf8\x32\xc7\xb5\xd2\x0a\x98\x28\x79\xff\x47\x85\x78\x33\x0c\x66\xb4\x0f\x26\xfd\x8c\xa8\x5e\x6e\x3b\x43\x96\xdc\x76\x1c\x51\x7e\xe0\x43\x9f\x0b\xa0\xd6\xe2\xf0\x79\xe8\x35\xd0\x46\xb5\xde\x9e\xe6\xb7\x86\x47\xe5\xea\xb9\x6b\x22\x0f\x20\xcc\xa0\xe4\xfd\xa4\x5b\x7e\x9d\x80\xe6\xbb\x01\x4a\x55\x0c\xc7\xc6\xa6\x00\x7a\x44\xd2\x75\x97\x97\x2a\x63\x9c\x68\x40\x26\x7a\xb3\x40\x96\xcc\x56\xc6\x33\x89\xf7\x1d\xa1\x57\xd9\x52\x0c\xdb\x80\x92\xee\x56\x84\x6d\x40\x01\x5d\xb3\xa8\x85\xea\xf5\x87\xb6\x27\x10\xf2\x49\x13\x41\x4f\xbd\xed\x56\xa4\xc3\xca\x4a\x77\x39\xcc\xfd\xa2\xee\xcf\xa1\x35\x96\xdb\xc1\x99\x10\x9b\xf9\x2c\xb3\x30\xef\x2e\x11\xee\xe0\xb6\x50\xee\xe5\xfc\x0d\x12\x9a\xb4\x46\xfb\xfe\xb2\x4e\x4b\x88\xb0\xc4\x6f\x28\x47\x06\x18\xde\x21\x22\x69\xd3\x63\x07\xd4\x78\x3e\x85\x8d\x2f\xa6\x21\x5f\x1e\xc4\x93\xbf\x16\xc8\x35\x01\xd6\x5d\x88\x9a\x5e\x13\x31\x26\xd1\xf8\xc2\x24\x33\x38\xe3\x86\xc7\x53\xce\xcc\xa6\xbd\xf4\xe4\xea\xfa\x92\xbf\x4d\x5f\x4f\x29\x02\x09\xc9\x04\x7b\xd2\x43\xed\x3f\x79\xe5\x18\x57\x96\x48\x41\x31\x81\xb2\x59\xf2\xe9\x1a\xd8\xf3\x8a\xe3\xc4\x09\xe4\xd4\x6b\xc4\xd1\x1a\x98\x0f\x91\xce\x1d\x46\x1b\x6f\xfb\x2c\xf5\xe2\x9f\x2d\x5c\x7b\x4a\xb9\xa1\x63\x09\x3a\xdb\xd0\x63\xf2\xa4\x27\xc4\xe8\x86\xfb\x44\x30\x8e\xc1\xcc\xb6\xae\x83\xff\x17\x94\xaf\x63\x9b\x5a\x99\xaf\x84\xdc\x18\xbe\xbb\x04\x89\xd9\xf7\x34\x00\x34\x69\x08\x3a\xbf\xba\x53\x6f\xdf\x84\x90\xb3\x70\xe1\x03\x3f\xe8\x18\x89\xd3\x78\xd1\x21\xe0\x1e\x72\x0b\xa2\x7c\xfa\xa1\xa9\xa5\xab\x3f\x9f\x53\x0f\x66\x35\xc0\x29\x7c\x85\xc2\xa9\xeb\x07\x95\xd0\x39\x4e\x8e\x6e\x02\x79\xcd\x01\xe9\x8b\x94\xd5\x24\xe2\xb0\xcc\x50\xa7\x10\x8c\x9a\xc6\x2e\xd2\x03\x37\x52\x42\xd1\x87\x19\xea\x9c\x25\xc5\xf9\xfe\x25\x9a\x3d\x79\xb1\x8f\xe6\xb3\x6b\x22\x37\x15\x41\x7e\x91\xed\x3b\xed\x2b\x24\xe2\xd1\xaf\xc8\x43\xb8\x6e\xc4\xb0\x0b\x81\x9a\x86\x35\x5e\x39\xf7\x45\x17\x00\x00\x9d\x7b\x00\xc0\xfc\xca\x68\xac\xfb\x13\x2c\x55\x65\x9b\x5e\x78\x57\x7d\x20\x15\x1b\x9d\x34\x20\x47\x82\xf3\x9d\xaa\xa8\x6d\x81\x0c\xf0\xfa\x05\xde\x7d\xb5\xf1\x0d\x40\x94\xd6\xc3\x85\x87\x92\x90\x38\xb2\x79\x6c\x34\xae\x27\x09\x5d\x31\xeb\x16\xcb\xec\x78\x95\x3b\xd4\x78\xad\xcd\x00\xc2\x49\xb6\xcd\x0f\x05\x88\x10\x74\xb1\x81\xa8\xb4\xf9\xc5\xf8\x75\x9c\xa2\xf1\xd5\x9d\x5a\xa4\xdc\x79\x56\x9e\x5d\x19\x04\x10\x8e\x63\x8c\xba\x54\xbf\x62\x61\x8b\x4c\x04\xb7\x7d\x73\x35\x25\x46\x14\xa1\xb2\x5f\x88\x24\x96\x0b\x62\xeb\x4d\x7d\x00\x85\xba\x79\xb1\x99\x0d\xd5\x87\x77\xc4\x2f\x79\x72\x61\x7d\x3f\x03\x20\xa9\x79\x98\xdb\x39\x84\x5e\xb1\x2d\xfe\x00\x79\x77\x37\x5e\x47\xcc\x81\xc5\xf3\x2d\x10\x9c\x17\xb4\x86\x33\x3a\x47\x16\xfc\x1c\x4d\xbb\xdc\x79\x1e\xfb\x24\xf8\xf1\xfc\x9f\x8b\x18\x31\xaa\x31\xbf\x47\x9d\x68\x9b\x7a\x10\x06\x10\x2b\x93\x20\x8e\x0d\xfd\xf1\x18\x07\xba\xc3\x20\x18\xfe\x70\x5d\x29\x77\x20\x0a\xa6\x85\x7c\xc4\xb7\xc8\x98\xac\x8b\x7e\x67\x57\xa7\x49\x81\x40\xbb\x3d\x98\x60\xca\xe7\xc2\xc3\xcc\xbe\x3f\x8d\x77\x6e\x23\x93\xe1\x1b\xca\xe5\x99\xf6\x8b\x81\xac\x41\xb7\x48\xe1\x7d\xfb\x72\x3a\x4c\xb0\xdb\x4b\xaf\xf0\xfd\xb5\x26\x96\x90\xbb\x05\x75\x6b\xb5\x09\x60\x21\xdb\x55\xb2\xe8\x51\xea\x39\x2d\xc4\x09\xdb\x28\xe1\x91\x86\xd6\x40\x06\xc8\xb0\xa4\xaa\xab\x9c\xda\x44\x34\xfb\x9e\x43\x8e\xca\xfe\x1d\x0a\x5c\xd1\xa6\x2b\x00\xdb\x92\xb8\x32\x7b\x70\x6a\xa6\xc8\x20\x4c\xaf\xb1\x90\xaf\x6f\xbd\x0d\x3c\x6b\x02\x49\x50\x69\x1b\x7d\xf5\xd9\x7e\xe4\x01\x4f\xb1\xc9\x41\xb4\x3c\x58\x39\xce\xe3\x74\x81\x68\x67\x0c\x10\xe0\xf4\x1d\x3e\x79\x2f\x89\x1b\x45\x45\xdc\x26\x8c\x9d\xcc\x58\x11\xd9\x97\x1b\x64\x64\x28\x01\x04\x03\xea\x43\xb6\x6d\x4d\x42\xe3\x4e\x98\x8b\xdd\x19\xfc\x93\x79\x43\x9f\x95\x42\x61\x92\x4f\x32\xb7\xed\x68\x37\xaf\xb1\xf2\x07\xd5\x83\x00\x44\x7e\xa3\xa2\xcf\x2c\x81\x38\x6e\xe8\x4c\x3c\x34\xc4\xe7\xb9\x3f\x63\x61\xc3\x2f\x7e\xf0\x77\x73\x2b\x99\x25\x82\x57\x51\x03\xfb\xf0\x4e\x2a\xa9\xaf\x7d\xda\x7e\x69\xd7\xb9\xbf\x70\xe1\x81\x0b\x30\x38\x4d\x72\x5d\x22\x06\xaf\xa1\x05\xa5\xcc\x03\x2f\xdf\x6d\x2b\x43\xe0\xc3\xa6\x53\x42\x47\x64\x74\x7c\xcf\x12\x60\xb9\x7c\x05\x7a\x22\x84\xe6\xfb\xc6\xb8\x0a\x0b\x78\xc9\xc2\x6f\x51\x25\xd9\x06\xc7\x0e\xc9\xdf\xde\x39\xb4\x5d\x09\x4a\x42\x0a\x59\x19\xbc\xa7\x3a\x30\xe7\xa9\xd6\x65\xdb\x7e\xab\x6c\xae\x1d\xee\x81\x2c\x0f\x91\x74\xfa\x8c\x0f\xc8\x65\x44\x67\xe3\x00\x91\xc6\xc7\x60\x29\xf4\x2a\xe6\x58\x8f\x91\x6b\xee\x05\x8d\x58\x06\xa9\x95\xf3\x62\x9d\x38\x8c\xcb\xcf\x54\xc3\x76\xac\xbd\x59\xf0\x40\xf6\x2a\x9c\xf9\xb7\xb4\xfe\x17\x4e\xc2\x6f\x7d\xf2\x64\x17\x91\x8c\x4f\x1c\x08\x41\x3b\xa1\x13\xe6\x3c\x37\x74\x74\xc0\x77\xfd\x05\x01\xb2\xb4\x6b\xab\x09\x7b\x03\x69\x3c\x17\x6a\x29\x6d\x6e\xc1\x05\xc6\x10\xc6\x37\xc6\xd4\x84\x51\x6a\xa3\x36\xf0\x21\xaf\xb1\x69\xb0\x1b\xab\xed\x0e\x61\xea\x51\x54\x84\xba\x86\xf6\xee\x5b\x75\xd7\xc1\xd1\xc2\xec\x66\x49\x27\x48\xd4\x5f\x0c\x35\xda\xd2\x97\x94\xb4\x82\xb4\x1b\xba\x0d\x74\xee\x4f\x0d\x14\xb2\x8b\x08\x89\xb5\xd5\xf0\xba\xb0\xbd\x36\x9d\x08\x7f\x94\xac\xbb\x74\x62\x9c\xbc\xea\xac\xf7\xef\xc8\xc6\x00\x16\x14\x66\x83\xfc\x8f\xc4\x7f\xa4\xa4\x77\x9a\xd8\x09\xb1\x6d\x4f\x3b\x2c\x7a\xe8\xa9\xdb\x12\xe5\xdd\xef\x44\x7f\x8e\x6c\x31\x7b\xf5\xef\x03\x99\x59\xef\xb3\x72\xd2\xc1\x67\x9c\x58\x80\x73\x5b\xca\xb5\xb8\xbd\x0c\xef\x9f\x40\x01\xcf\x75\x20\x54\x18\x7f\x00\x03\xcc\xa2\x85\xc8\x0f\x52\x28\xda\x2c\x2a\x9a\xef\x7b\x86\x4f\x43\x85\x91\x59\xb6\x92\x13\xb4\x38\xbe\x93\xc9\xe8\x54\x17\x77\x95\x9f\x98\x67\x90\x64\x4f\xf6\xec\xca\x53\xd4\x5c\xc1\xde\x91\xd3\x56\x82\xcf\xca\x5a\x7a\x07\xcf\x73\x9d\xfb\xf0\x25\xce\x2f\x34\x09\x3f\xb1\xc2\x2c\x5d\x31\x20\x2d\x2a\x31\xd5\xb4\x17\x99\x0a\x1e\x2d\xa2\x5e\x46\x6b\xb0\x81\x9f\xbc\xdb\x74\x22\x8f\x42\x08\x3f\x1d\x70\xfd\x6e\xdf\x55\x2f\x72\xf0\x44\x4c\x85\x17\x4f\xa1\x3c\xfc\x23\x84\x6b\xd7\x73\xc9\x88\x51\x6e\xb2\xfc\x7d\xe9\x54\xc4\xc2\x29\xd7\x12\x7d\x75\xfe\xe2\x8f\xe6\x82\x31\xd6\x26\xbc\x0f\x38\x06\x3f\x77\x65\x55\xc6\xf7\x85\x42\x28\xfc\x37\xe8\x00\x92\xca\x69\x93\x0a\x29\x3d\x92\xa0\xd8\x16\x4a\x39\x6d\xec\xbe\x5e\x3e\x1c\x00\xde\x11\x48\x5f\x41\x1d\x46\x9b\x8b\xfb\x5d\xa2\xdd\xa5\xf8\xca\x63\x19\xb7\x88\xa6\xd3\x23\xb8\xad\x0b\xe8\x37\xcf\x3e\x71\xee\x48\x54\xff\xa6\xd0\xe7\xef\x14\x51\xa7\xeb\x7f\xe4\x87\xae\xd7\x75\xe3\x34\xdf\x11\x8c\xbf\x2a\x4b\xa0\xcf\xd4\x66\x7b\xda\xff\xbb\x4d\x70\x6d\x2b\x32\xe1\x0b\x67\x45\x13\x16\x6e\x36\xff\xcc\xf5\xbf\x02\x63\x4c\xdf\xba\x96\x68\xb9\x96\xbf\x45\xf8\xed\xa1\x02\x6e\x1c\xb5\x07\x5a\xd4\x94\xd3\xb2\xbf\x6f\xef\xf2\xbf\x12\x61\xff\x02\x6a\x1a\x0b\x21\x4e\x26\xe8\x93\x48\x22\x2a\x04\x64\xda\x1e\xfa\x54\x10\x22\xc3\x06\x8e\x97\x2a\x68\x9a\x0d\x5f\x63\x48\x54\x97\x72\xb9\x21\x0c\xbd\xbe\x7f\xb7\x8a\x6b\x24\xd7\xb9\xa0\xe5\xa0\x0e\x10\xc7\x5d\x50\x5e\x90\x63\xf6\x2e\x89\x00\x66\xae\x98\x57\x65\x0d\x7b\x97\x41\x55\x2e\x1e\x8d\x1c\x12\x42\xe1\x26\x88\x96\x7a\xd7\xeb\xc7\x1a\xe7\x85\xb8\x14\x50\xd9\x86\x35\x8a\xf1\xcb\xfd\x3a\xd6\x2e\x03\x66\x67\x2b\x31\xe3\xc7\xaa\xe5\x77\x06\x5d\xf4\x4f\x98\xbc\x3c\xbe\xfb\x87\xbc\xbe\xab\xc0\xa1\x15\x90\x35\x53\xc3\x97\x5c\x20\x1a\xc5\x05\xa9\xd9\xd4\x35\xbf\xa5\x1c\x92\xd2\x61\xbb\xba\xf6\xa7\x8d\x38\xa7\xbc\x50\x4a\xb9\x9c\xac\x81\x7b\x2c\x61\xa8\x7d\x7d\x55\x53\xfe\xd4\x89\xb8\xde\x1d\x1d\x0d\x7e\xab\x36\xac\xb4\x1a\x19\x8c\x43\x07\x17\x15\xd7\x20\xc5\x55\xaa\x3b\x3f\xe1\x04\xf9\x62\xb5\x81\x00\x3b\xae\x4f\x9f\xc4\x33\xf8\xc5\x15\xd2\xac\xf4\xbf\x38\x7b\xce\xda\x5d\x5b\xf6\xd9\x1f\xaf\x25\xdc\xfe\x7b\x3b\xb0\x0c\x06\x08\xae\x3e\x8c\x84\x04\x01\xc4\xca\x81\x90\x0b\x89\x63\x6d\xc8\x5b\x65\xcc\x37\xdf\x2a\x42\x1c\x48\xdd\x20\x0f\xe6\xf1\x52\x4d\x91\x79\x47\xaf\xf0\xa9\xe9\xac\xb2\xa9\xaf\xee\xc4\xb0\x69\xc0\x36\xdc\x19\x16\x39\xe4\xae\x21\x33\xe9\xe0\xa8\xee\xb7\xe1\xf0\xb8\x42\xcf\x11\xa7\x2e\xf5\xdd\x48\x80\x97\xc5\x8e\xf4\x73\xc1\x12\x6a\x65\xd6\x8a\x1a\x34\x18\xbe\x51\xeb\xfe\x4d\x24\x34\xa0\x0f\x03\x0e\x2e\xfa\xee\xa2\x03\x3b\xe6\x27\xe3\x38\x90\x3e\x0f\x65\x10\x1c\x57\x79\x0e\x10\x00\x2f\xa2\xda\x9a\x7f\xab\xdd\x7b\xff\x2e\x30\x31\x7a\xc1\xce\x63\x11\x15\x55\x2a\xfa\x91\x95\x6a\xfd\xe8\x6b\x47\xeb\x17\xc7\x9e\x7a\xe5\x7d\x14\xbe\xfd\xca\x98\x3a\xde\xae\x76\x11\x4c\x1a\x17\xfc\x59\x07\x9c\x87\x49\x2f\x59\x5f\xe5\xb3\x19\x2e\x99\x2c\x80\xb3\xf0\x22\x64\xd8\x10\xf7\xfc\x21\x58\x3b\x0d\xf3\x3a\x7e\x94\x69\xda\x9c\x13\x1c\xf0\xd9\xa3\x36\x49\xcb\x5c\xc5\x78\x48\x59\x52\xf5\x67\xd9\x73\xe6\x94\x00\x26\xcd\x02\xd2\xe7\x69\x38\xab\x72\x6c\x20\xcb\x37\x7d\x21\x5c\xbb\x8f\xd7\x82\xba\x03\xbc\x2e\x1f\x6d\xab\x06\x70\x9f\xa6\xff\xe0\xdb\x88\xca\xcf\xe5\x32\x94\x93\xb5\x51\x76\x17\xb5\xb9\x35\x54\x3b\xb9\xd9\x40\x13\x4f\x62\xfd\xc2\x02\xac\x4d\xdc\x5c\xb2\xb9\xb4\x97\x39\xf6\x3e\x7f\x21\x6f\x4c\x74\x01\x5a\xa1\xae\xb4\x8b\x7a\x45\xad\xc8\xf8\xca\x3a\x50\x9b\x3d\x8c\xf2\x20\x04\xd4\x11\xe8\x37\xe2\xbf\xc2\x8a\xbb\xd0\x63\x26\xb3\xbf\x6b\x85\xce\xbd\x70\xea\x6b\xed\xbc\x6f\xaa\x3c\xed\xe6\x9a\xd2\x56\x8d\xff\xb4\xc2\x49\xdf\x21\x01\xe7\x98\x47\x5a\xcf\xd5\xb1\x50\x00\xaf\x80\x51\xe6\x60\x8b\xb4\x80\x8d\xb4\x80\x0d\xbc\x08\xa6\x57\x38\xbd\xcc\xc1\x16\xfc\xb2\x8d\xc7\xd7\x5a\x2b\x2b\x77\x15\xa6\xb3\xb8\x1f\x3e\x6b\xed\x93\x6c\x14\xbd\x06\x16\xdb\x33\x44\x02\x53\xbd\xbf\xb3\x80\xe9\xa3\x98\x3a\x62\xa4\xa9\x3a\xb8\xb7\x97\x16\x25\xfd\x4f\x0b\x2c\x9b\x53\x2c\x9d\x86\x30\x97\xbf\x50\xd4\x28\xc3\xc4\x05\x0e\xe2\x33\x3f\xc3\xc1\xbd\xe1\x6b\x02\x72\x9d\xda\xbb\xb0\xe3\xa3\x7f\x5b\x39\x28\xb1\x4f\xa4\x8f\x80\x99\x13\xe6\xde\x12\xf5\x86\xc9\x10\x0b\xf2\x66\xe0\xe3\xd9\xf5\x06\x65\x2a\xcd\x8f\xe4\xaa\x82\x86\x67\x42\x94\xc5\x8e\x4b\xa9\x02\x47\x60\x04\xe8\xbe\x63\xa5\xfa\x31\x60\xa6\xcb\xd0\x4e\x97\x21\xd0\x2c\x81\x6c\x55\x62\xbe\xd4\x3c\x4c\xa0\xa9\xc0\xa5\x6e\x39\x0f\xee\xde\xa2\xdf\x37\xa3\x9e\x95\xf1\xcd\xa0\x13\x14\xd4\xeb\x75\x51\x11\x21\x59\xc2\x20\x09\x20\x6c\xb8\x93\x34\x7e\x14\xfc\x20\x62\x4f\xaa\x79\xa7\xe4\xe6\xf4\xc2\x21\x3e\xe1\x68\x95\xdc\x29\x90\x7d\x3b\x89\xbd\xda\x45\xff\x4b\x84\xc7\x12\xd7\xd6\xba\x4a\x6d\xb1\xc6\x42\x42\xca\x8a\xe2\x86\xae\x59\x7e\x9c\x81\x07\x12\x1b\x4e\x13\xe8\xcb\x09\xa8\x1b\x17\xd7\xcb\xa4\xec\x43\x1c\x5c\x56\xed\x8d\xac\x58\xc1\x92\xfc\x32\x69\x7b\x16\x73\x71\x7a\x3c\xbf\xe9\xda\xdd\xd7\xa2\x55\xff\x4c\x85\xcb\x74\x1a\xd4\x58\xd6\xdb\xb0\x9c\xf8\x14\xf6\xfc\x8d\x9e\xc0\x9d\x73\x0e\x1c\x60\x73\x2c\x38\xb5\x94\x93\xcd\x02\x43\x16\x5f\x37\xb1\x60\x60\xbb\x80\x3a\x5e\x8b\x66\x91\x99\x49\x77\x76\xb8\xf2\xf1\xf8\xfd\x56\x6b\xc9\x15\x85\x7f\xf1\x60\x3c\x15\x1b\x6e\x4f\x35\x67\x03\x69\x07\x6d\x3b\x8c\x4c\x2d\xdf\x7a\xff\xbe\xc3\x92\x69\xc6\x07\x04\x6c\xb4\xc1\x22\x1e\x80\x08\xfe\xc8\xf3\x40\xb3\x22\xba\x04\x2a\x06\xbe\xf4\x3e\xf6\x78\x1b\x5b\xcd\x71\x4b\xc1\x30\x76\x72\xf6\x14\xc6\xf1\xa2\xb8\xf5\x60\xa5\xc8\xb8\xb7\x9c\xc1\x4a\x5c\x9a\x16\x2a\xf4\xdb\x69\x3f\xba\xfc\x8f\xb3\xd1\xc2\xfe\xb8\x24\x6f\x91\x58\xe6\xd1\xcb\x51\x3f\x2e\x79\xf8\x98\x94\xa7\x0a\x66\xbd\xf5\xe5\x79\x12\x27\xe3\xab\x29\x6e\x99\x97\xe8\xa1\xcc\xe1\x94\xb8\x72\xfa\x43\xf4\x58\x30\x72\x4c\x04\x1c\xdc\x03\x7a\x11\xec\xfe\x97\xe5\x41\x4a\xb9\x30\x7b\xcb\xe2\xef\x8e\xa1\xfc\x7d\xff\xdb\x81\xbf\x3b\xeb\x2a\xc3\xdd\x8b\xe8\x2c\x8f\xe8\xe5\x3b\x54\xf8\x68\x6c\x08\x66\x14\xc3\x72\x37\x08\xa0\x02\x6f\x43\x1c\x5c\x30\xb9\x9d\xd4\xa2\x2c\x9c\x55\x09\xd6\x11\x78\x32\x69\x7b\x0c\x58\x1d\x96\x96\xfe\xa7\xac\xa5\xe0\x1c\x7d\x0e\x6c\x80\x3b\x31\x56\xbd\x3f\x4e\x34\x4c\xec\x8e\x68\xfd\x64\xa8\x52\xd5\x3d\xee\xb7\xa5\x7b\x6d\x12\x43\xfa\x68\xd6\xe9\x11\x33\x24\x84\x05\x2d\xdb\x6c\xa4\x47\xd5\x96\x8d\x41\x27\x63\x5c\xcf\x01\xd0\x19\x92\x71\xfa\x56\x19\xdd\x86\xf2\x16\x18\xcd\x86\xf9\x30\x3a\xc4\x1f\xa8\x6b\x63\xff\xaf\x0e\x73\x49\xb4\xba\xd6\x4d\x42\xbf\xdc\xa8\x1a\x8f\x13\x2c\xa9\x06\xda\x25\x47\x1f\xb3\xf1\x12\xd3\x61\xa6\xfb\xf3\x5a\xbe\x9b\x0f\xf3\x17\x14\x30\x8c\x85\x8e\x07\x7f\x66\x30\x8f\xfd\xf0\x0a\x9a\xcd\x4c\x38\xcc\x00\x50\x38\x17\xe4\xdd\xd5\x6e\x90\x9f\x8a\x85\xdf\xfe\x91\xb9\xf9\xc3\xf5\xbb\xd6\x7f\x7b\x79\x59\x69\x2e\x7a\x7a\x5c\xa7\x9c\x1e\x13\xc5\xfc\x5d\x9d\xd2\xf9\xdc\xe5\x42\x11\x6f\xb7\xf2\x68\xd5\xf3\x3d\x10\xf3\xe3\xa3\xcb\xc3\xb8\xce\xc1\x64\x98\xff\xd5\x54\x81\x7c\x6b\x79\xe3\x8d\x47\xc7\x98\x37\x23\xfa\xa7\x98\x1f\xc2\x6b\x86\xa6\x8c\x8d\xbc\xbc\x8b\xe6\x2c\xdf\x5e\x7b\x59\x2c\x71\xc6\x21\x51\xeb\xee\x2a\x9e\xfd\x3c\x53\xb4\xba\x27\xfe\x30\xd0\xd8\xb6\xd9\x8d\xc9\x89\xc6\x3f\xbc\x4d\x32\x21\x87\xed\xae\x10\x78\x33\xa5\xe5\x45\x60\x46\xe8\xbc\x6d\x71\xc4\xdb\x95\xc9\x17\x97\xf9\xce\xe2\x5d\x3c\x7b\x52\xee\xbd\xd2\x59\xe5\x19\xb4\xfd\x06\x32\xcd\xdb\x83\x05\x84\x98\xf3\x96\x50\x57\x39\xec\xdb\x68\x43\xf1\xdb\xda\x56\xa9\x5e\x30\x86\xd1\xea\x39\x67\x84\xa0\x94\x50\x39\x4d\x4d\xac\xc9\x6e\xa1\xd0\xb6\x6a\x11\x94\x02\x02\xaf\x75\x98\x16\x78\xa7\x9d\x7b\xd3\xa2\x59\xe8\x56\x8c\x5f\x26\x8e\xa4\xf6\xe3\xb2\x7c\xa7\x18\xa0\x42\x58\x10\xda\x14\x94\xd2\x74\xd5\x2d\x7d\x59\x67\xfa\x42\x4b\xa2\x9a\xe9\x0f\xce\x97\xb5\x63\x5d\xa0\x19\x82\x40\x92\x48\xaa\x4e\xfb\x85\x42\x2e\x4a\x1f\x05\x73\x49\x80\x33\x25\xed\xa8\xec\xfe\x7f\x04\xac\xf8\x7b\x04\x9a\x02\xb7\xe9\x69\x11\x15\x10\x6c\x82\xd0\x7c\x78\xb1\x69\x89\xe0\xe6\xdd\x9f\x3e\x10\xc2\x15\xf3\xeb\x1f\x8e\xe3\x17\xd0\xa9\x91\xec\xa5\x28\x9f\xca\x78\x27\x71\x9f\x18\x81\xa3\x95\x74\xbe\xab\x1c\xed\xdf\xe7\x04\x52\x48\x39\x20\x87\x44\x41\xb2\xab\x31\x80\x12\x49\x08\x54\x1d\x99\xa1\xe6\x0e\x67\xd7\x6f\x97\x66\x85\x7e\x94\x9c\xd1\x16\x71\xfb\x52\xbb\x86\xca\xb8\x99\x4f\xe5\x91\xd3\x11\x37\x76\x8d\xe1\xf5\xb3\x70\xa6\xc9\xb4\xc6\x0a\x16\xaa\xea\xe2\xef\xf9\xf9\xbe\x7e\xdf\xe2\x6a\x99\x7b\x57\x59\xd4\x50\xdb\x23\xd0\xd6\x6a\xb7\xba\xa6\x4a\xf5\x9a\x8c\x79\xf5\xd7\x52\xaa\x6e\x85\x09\x51\x53\xdf\x63\x44\x09\x18\x81\x8f\x5b\x13\x54\xd5\x58\xa3\xa6\x53\xd1\x47\xd8\x8d\xd3\x50\xe4\x6b\xa1\x60\xef\xc5\x65\xe9\xa3\x33\xba\x24\x66\x33\xd3\xb1\x20\x1e\x38\x53\x6e\xfc\xec\x8a\x9d\xc0\x73\x75\xbe\xd6\x6e\xb9\xe5\xd9\xe7\x90\x3b\x21\x5c\x9e\x54\xf9\x35\x2a\x79\xcf\x20\x65\x5b\x0a\x52\x6c\x2a\xf2\xa8\xe0\x3a\xfc\x88\x33\xc3\xa9\x17\x1e\xe0\xb1\x8e\x8a\x43\x57\xe8\x65\xea\xf9\xa1\x32\x80\xc3\x76\x99\x97\x52\x9d\x59\xa0\x59\xc4\x5e\x0a\xa9\x0b\x2b\xd7\xc8\xa0\x23\x94\x47\x11\xe3\x39\x01\x0e\xf2\xa5\x8d\x99\x2e\x47\xbe\x9f\xf3\x1e\xf6\x9f\x11\x4c\x3d\xe3\x5e\x93\x05\xd8\x30\x24\x0b\x9d\x27\x9f\xca\xa5\xe0\xe4\x74\x8f\xe2\x37\x11\xd3\x04\x9a\xf1\xce\x29\x6b\x1b\x97\x22\x9b\x93\x5e\x9f\x9f\x7d\x3c\xc3\xf9\x79\x5d\x93\x6d\x4d\x74\xdb\x9b\x16\x61\x4a\x0f\x1b\x66\x90\x7c\xba\xc7\xcd\x03\x01\xe8\x30\xe9\xcc\xa3\xc6\xf1\xbb\x77\x36\x88\x6f\xf7\xb4\x94\x3d\x3d\x72\x4b\xad\x7e\xda\x55\x69\x6b\xea\x95\x15\x6b\x60\x1f\xce\x88\x69\x8d\x1a\xb7\x78\x52\xd0\x58\xab\x1e\x32\x3c\xa0\xf0\x22\xf7\x94\x64\xff\x36\x3f\xf2\x9e\xd7\x7e\x70\x5b\x47\x8b\x18\xc6\xfb\xe6\xa9\x79\xff\x5e\x9b\x73\x4f\xbb\x7e\x46\x0f\xc8\x5a\xef\x5a\x2d\xb2\x98\xa6\x96\xf7\x7f\xb0\x2e\xae\xd2\x8e\x9f\x33\x91\x77\x13\xcb\xa5\xd5\x51\x1e\x3d\x6b\xe9\x2c\x47\xea\x62\xe7\x02\x37\x02\x83\x3e\x58\x80\x64\x76\x59\x1f\x81\x22\xf3\x65\xb8\xb4\xf3\x47\x33\xce\xbd\x97\x7f\xba\xce\x9f\xb1\xdf\x7b\x72\x1f\x1d\x48\x7e\x66\x88\x52\x03\x7a\x20\xd9\x60\xc8\x36\xd9\xa5\x63\x0c\x7f\xef\xbb\x8e\x04\xc5\xdf\x60\x31\x39\x23\xaa\xf4\x7b\x37\xa3\x55\xdc\x94\x58\x96\xec\x2d\x9d\x4d\x12\x63\x0a\x0f\xca\x4a\x53\xd0\x89\xb8\xeb\xa3\x11\x00\x84\x3e\x0e\xc9\xb2\x79\x40\xdc\x9f\xef\x4d\x59\xe2\xde\x98\x0c\xb1\x1f\xb2\x64\x70\x45\xb5\xc5\x50\x25\x51\x84\x0b\x8c\xb3\x3a\x22\xb8\xf8\x2c\x79\xb6\x4b\x97\xd3\xf9\xc4\x1f\x6d\x0a\x1f\x8e\x36\xd8\xcf\x41\x72\x5c\xfe\x48\xf0\xbd\x09\x82\x97\xb9\xa8\xe4\xd2\x8f\x8e\x5e\x2f\xf1\x65\x85\x98\x92\xdf\x65\x87\xca\x01\xcf\xcf\x8f\xe3\xd9\x25\xe4\xa6\x3d\x30\xe6\xd5\x7f\x41\x39\x4a\xf0\xb4\x09\x23\x17\x66\xcb\x77\x50\xca\x81\xe2\xe7\xae\xef\x3c\x84\x8e\x26\xd9\xb6\x47\x07\xf7\x69\xb5\x70\xaf\xea\x1d\x28\x80\x9a\xad\x3c\x11\xd4\x7c\xe7\xc5\x71\x39\xf9\x14\x32\x6c\x6e\x33\x3d\x52\xe0\x9a\x02\xf3\x5d\x22\xbb\x78\x66\x65\x61\xc4\x4b\x01\x6a\xcb\xa8\xaf\x75\x71\x5f\x47\xb4\x65\x37\xf2\x00\xa0\xc6\x31\x47\xf9\x90\x0c\xb8\xb0\x95\xc9\xd2\xe7\x2e\xd6\xd5\x82\x46\x2b\x0b\xd6\x2a\xba\xbf\x17\x35\xf7\xfb\x93\x58\x25\x94\xa3\x4d\x70\xed\xf8\x16\x30\x2e\x25\x6d\xdf\x25\xb5\xa0\x0f\xfe\x44\x79\x79\x4f\xf5\x6d\x08\x57\xda\x33\xe8\xfd\xd4\x53\xd1\xa0\x28\xa7\xb8\x6d\x67\x44\xb1\x4d\x5d\x25\x1b\x52\xdb\x28\xc6\x41\xa6\xe4\x5e\x74\x68\x7f\xfa\x3b\xd4\xcd\x35\x16\x7b\x79\x83\x4e\xbd\xf6\xc0\xe4\x5a\x43\x47\xfb\x57\x43\xd2\x9f\x3f\x67\x7c\x6e\xe9\x8c\x0e\x16\x92\x54\xae\x6f\x70\x71\xfc\x01\x9a\xdd\xe7\x66\xa1\x9a\x9a\xdb\x53\xde\x43\x73\xee\x31\x02\x12\x68\xab\xc2\xb3\x65\x68\x44\x22\x0f\x07\xc7\x52\x50\x63\x1b\x8f\x4c\xd3\xe5\x31\xf4\xb1\xdd\x0e\x62\x8b\x72\xfb\xfd\x80\xba\xaf\xfa\x5f\x9d\xd9\x7e\xf4\xb8\x5f\xa5\x96\x16\x9a\x63\x3b\x66\x86\xef\x75\xed\x2a\x49\xd3\x68\x5c\xd7\xa8\xcb\x62\x0f\x8f\x95\xdd\x99\xf4\x3c\x53\xd0\x61\x41\xf5\x0e\xe4\xef\xb5\x5f\xe1\xf9\xfd\xec\xe0\xf2\xbc\xec\x8d\x90\xe2\x3d\xae\xcc\xdd\x5c\x46\xeb\x49\x6d\xef\x2f\x09\x13\xb6\x12\xbf\x5f\x6a\x0f\xf6\xc8\x19\x58\x33\x66\x60\x3e\xfb\x52\x3b\xf4\xa7\x9d\x8b\x81\xeb\xe9\xf4\xc7\x1e\x8e\xbb\xc7\x91\x3e\x61\x68\xc0\x05\x98\x90\x1f\x73\xd5\x2d\xf7\x23\x90\xf3\x9e\xd0\xe3\xee\x8d\x54\x53\x5e\x83\xbb\x35\x5d\x09\x35\x40\x1e\x90\x18\xd1\x94\x5d\x61\x5d\xca\x3a\x6a\xf3\x1c\x5c\xf6\x1c\x51\xee\x00\x6f\xb7\x21\xab\x84\xe4\xc7\x05\xa6\x3d\x63\x49\x84\xb0\x90\x17\xe8\x85\x65\xb1\x70\x7f\xb7\x3a\xbe\xf9\x8d\x09\x2a\x29\xec\x8b\x5c\x64\xbf\x35\x96\xeb\x16\x9e\xad\xf3\xed\x8c\x5b\x21\xde\x74\x3e\x6f\xe9\xbd\x47\x1b\xbe\xca\x2d\xb4\x27\xc4\xe0\xda\x73\xf0\x10\xfb\xe4\x78\xd4\x9d\x39\x5c\xf5\xd6\x35\x78\x68\x80\xdc\x15\x07\x52\xd9\x53\xa0\xc9\x43\x5d\xfa\x9c\x50\x2e\x43\x9d\xb0\x5c\xa6\xfe\x7d\x5f\xa9\x51\x68\x43\xba\x9d\xed\xfd\x11\x8a\x7a\xe3\xfc\x19\x41\xad\xaa\xc3\x0b\x2d\x64\x11\x27\x85\xf2\xb7\x63\xe8\x43\xd6\xd9\x93\x42\xa0\xf6\x40\x58\x8a\xb9\x48\xae\x0e\x89\x0f\xdc\x75\x97\xdd\x0c\x70\x96\xfc\x92\xc8\xfe\x35\x20\xa1\xcd\x26\xbe\x12\x90\x8e\x66\x5f\xf9\x58\xc0\x49\x98\x2d\x6f\x60\xc5\x6c\xd7\xd7\xbd\x54\x5f\x6d\x39\x50\xfa\x93\xf2\xb4\xe5\xa0\xac\xf5\x7a\xde\x74\x69\xf5\xd8\x32\x07\x8c\xf0\xcd\xcb\x19\xf6\xdd\x50\xbf\x63\xad\xa6\xd8\xe2\xb1\x0a\xd6\x31\xab\xec\x40\x36\x78\x0f\xa9\x2b\xe5\xde\x18\x0d\x24\x68\x90\xc9\x45\xcf\x4c\xfc\xf1\x5b\x74\xb7\xe2\xdf\xc9\x49\x40\x48\x29\x63\x10\x8a\x19\x75\xc0\xc2\x1b\x04\x10\x68\x57\xb3\x77\x84\xff\xd2\x22\x9e\xa4\x60\x58\xb3\xbd\xb2\x9e\xed\xe0\xfd\x28\x8c\xe5\x43\x5f\x4c\x66\x86\x74\x80\x7d\xd3\xef\x8f\x63\x7d\x1b\xbe\x98\xf4\xc2\xcd\x81\xdc\xab\x37\x9a\xb1\xfc\x3b\x7e\xe2\x8b\x06\x6d\x45\x52\xbf\x14\x2e\x8e\xc9\xaf\xab\xad\xd7\xc6\x64\x60\x9a\x95\x8a\xe0\x44\x42\xc1\x12\xec\x17\x61\xfa\xd1\x3f\x86\xce\xf2\xd9\xcf\xe5\x87\x58\xc2\xec\x95\xd3\xd2\xf8\x37\x7f\xa5\x44\x3e\x09\x8f\x10\x48\xb4\xd0\xce\x7d\x87\x05\x54\xe2\xd5\xbd\x08\x4b\x15\x34\xd7\xd1\xce\xdd\xf2\x1e\x1a\x3e\xee\xce\x68\x66\xff\xfd\x54\x6e\xb8\x47\x9c\xe5\xc0\xf0\xd6\x37\xd7\x51\xb2\x7e\x6b\xe5\x07\x80\xf5\x2f\xee\xf2\x08\xfa\x38\xdf\x60\xec\x73\xba\x35\xd5\x95\xad\x3c\x55\x40\xfb\x24\xf8\x47\xf4\x1e\xea\x2d\x6c\x32\x45\xb9\xd5\xd7\x45\x55\x51\x9e\x9c\x79\x45\x5c\xf3\xc1\x83\xfb\x88\x9c\xce\x08\xf7\x3a\x83\x1c\x9a\x7b\x73\x13\xa9\x8e\x05\x4c\x26\xb0\x17\x9a\x78\xc4\x3d\xb4\xfc\x2b\x7e\xf8\x40\x26\x73\xee\xf4\xaa\x03\x89\xb7\x0d\x51\x34\xd8\xc4\x19\x71\x64\x81\xa5\x9f\xa0\x27\x2e\x0b\x07\x30\x56\xa2\x03\x94\x33\x89\x27\x77\xd6\x72\x60\xda\x8c\x74\xd8\xc0\x10\xcb\xa2\x33\x9f\x10\xf6\x83\xdf\x15\x45\x87\xe4\x84\x51\x46\x0c\x55\x92\x7d\x87\xbf\x71\x06\x10\x75\xb3\x4d\x4a\x18\x68\xc6\x39\x52\x54\xee\x9c\x44\xd1\xe9\x55\xa8\xff\x8f\xa0\xe5\x0d\x4f\x1f\x8b\x29\xd5\x55\x58\xb4\x28\x0c\x24\xf0\xe4\xc6\xd7\x56\xa5\x91\xe8\xbe\xf6\x28\x2b\x99\x8b\x7f\x8d\x68\x55\xad\x76\xfc\x71\xe5\x27\xa9\xc4\xb5\x21\xfa\x93\x31\x46\xee\xd1\xb0\xd6\x47\xfc\xb2\x29\xf2\x34\xd3\x61\x3d\x32\x00\xa2\xe1\xf8\x94\xa5\xbf\x26\x8b\x71\x15\x72\xd4\x98\xd2\x00\x03\x6d\x95\x9d\xe3\xa4\x5d\x93\x1d\x10\x78\xa2\xd7\x8e\xef\x66\x94\xf1\xf6\xbe\x12\x75\x18\xa1\x39\x00\x1b\x56\xfc\xf9\x45\x4e\x55\x0d\xbf\xb8\xb2\x7e\xf4\x01\x5b\x10\x92\x24\xaf\xe1\xe6\xcc\x45\x1d\x35\xa8\x9b\xc5\x54\x82\x14\x36\xf4\x2e\xf9\xa1\x86\xf6\xda\x34\xfd\xa0\xe9\x11\xa1\x01\x6e\x64\x13\x57\x5e\x53\x85\x87\xfb\x6c\x98\xef\x5d\xde\x56\x9d\x6d\x98\xe3\xfa\x91\x0c\xa9\x33\xbc\x8f\xa3\x6d\xad\x8c\x2d\xd2\xa1\xb8\xf3\x6b\x11\xb2\x2c\x95\x72\x5f\x58\xb5\xf6\xdf\xa4\xfb\x3e\xf8\xf3\x8f\x59\xe3\xc5\xaa\x83\xf0\x8b\x30\xfd\xa4\xae\x01\x5e\xba\x4f\xd6\x10\x3a\xc9\xb8\xbd\xbc\x84\x23\x33\x8a\x79\x51\xcb\xb0\x56\xc0\x52\x65\xf5\xf1\x72\xa5\x22\xf7\x93\x25\xe8\x9b\x7e\x1a\xf3\x35\xa7\xfe\xbf\x97\x51\xed\xcf\xaf\x6e\xa3\x45\xcb\xc3\xbf\x46\xb8\x8e\xb3\xd6\xbe\x3a\x35\x58\xbe\x13\x03\xcc\xf3\x1d\x41\xc4\xbf\xfd\x30\x0d\x30\xe5\x3c\x3c\x5f\xd3\x9b\x06\xf8\xb8\x79\x7f\xba\x56\x7e\x02\x00\x16\xd3\xf2\x6f\xa4\xb4\x7e\x3b\x6f\x3e\xeb\xcd\x3a\x1e\x13\x3d\x23\x3f\xcd\x50\x9e\x55\xd1\xce\x4d\xd7\x0e\x72\x98\x0f\x3c\xe4\xc5\x14\x3e\xba\xcf\x8c\xc9\x1f\x75\x3f\x24\x9b\x94\x01\x1e\x9b\x43\x54\x12\x49\x5a\x1a\x1f\x03\xb8\x9d\xa8\x81\xc9\xef\xf4\x85\xc8\xaa\xb4\x9b\x47\x25\xed\xab\xc0\xd5\x4a\xc9\xe2\x88\x6c\xd1\xd4\x99\xc7\x2d\x45\xbb\xb0\x9d\xf7\xe1\xeb\x6a\xba\x6a\x69\xef\x53\x21\xad\x2b\x5f\x7d\x8c\x6d\xae\x3d\xd9\x80\x1c\x9f\x2d\xf9\xb3\xf5\xfe\xe6\xab\x11\x0a\x68\xb6\x68\xdb\x3e\x11\x66\x87\x9a\x88\xe5\x3b\x09\x4f\x73\xc6\xd3\xa5\x7a\xe5\xb8\xca\x15\x69\xbd\x60\x9f\x91\x6e\x49\x43\x6c\x92\x8e\x20\xea\x4b\x29\x4b\x6b\x19\x10\x55\x90\xef\x42\x8b\x3f\xdc\x6c\xaa\x9b\x7d\xb8\xfd\xe9\x85\x20\x95\x34\x6f\xd6\x1b\x0f\x90\x3f\x65\x8e\xed\x3e\xdc\x54\x2f\xa6\xdc\xd0\xf9\xc1\x7d\x96\x55\xec\x2f\x2f\xd8\x5a\x40\xc6\x81\x9c\x72\x8b\x07\x64\xb0\xb8\xde\xfe\x3a\xbd\x55\xa9\x95\x40\x1d\xec\xcf\xe5\x9f\x9f\x80\x20\x9b\xc4\xfa\x92\xeb\x8c\x49\x81\xc8\x38\x1e\xf3\xbb\xf1\xfb\x3f\x92\xcc\x82\x2b\xea\xef\xeb\xe2\xdf\x19\x06\x18\x42\x19\x4a\x40\x05\x86\x2e\x09\x09\x01\xa9\x19\x69\xa4\x53\x1a\xa4\x41\x1a\x04\xc9\x01\x01\x11\x41\x60\x08\x29\xe9\xee\xee\x46\x50\xba\xbb\xa5\x41\xba\x73\x9e\xf5\xfb\x3f\x6f\xe0\xec\xbb\x3e\xf7\xec\x7b\xf6\x5d\x67\x2a\x93\x07\x51\x74\x74\xf9\xfb\xde\x5b\xcf\x9f\x28\xde\x3f\x81\x60\xe1\xed\x4d\x13\x8f\xb1\xf6\x43\x85\xe2\xe8\x98\x5a\xcb\x34\x75\xfb\xcb\x2f\x3e\x1b\x9d\xca\xff\x8c\x53\x96\x23\x4a\x60\x21\x6e\x33\x14\x81\xa9\x24\x23\x95\xc3\x38\xc1\x26\x44\xba\x18\xde\x09\x43\xcc\xce\x69\xd3\x4d\xa4\x1b\xae\x31\x95\x5b\xa9\x64\xd9\x1f\x32\xce\x21\xed\xf5\x65\x6f\x67\x4e\x67\xaa\x8b\x2d\xa8\xa7\x9d\x44\xf8\x89\x6b\xf9\xb7\xe5\xad\xe9\x6f\x49\x38\xdd\x20\x54\x22\x6f\x95\xd2\x57\x2d\xca\xbf\x07\xa6\x98\xcf\x74\x28\x32\x8a\x3c\x5f\x7c\x44\x9e\xa0\x34\x2b\xd6\x9a\xd2\xb6\x28\x60\xad\x05\x26\x04\x78\xfa\xf9\xd6\x9d\x6d\x64\x6e\x82\xfa\xf2\xf9\xff\xc5\xd0\x68\xd4\x97\xac\xd5\xdc\xa1\xef\x2a\xb2\x32\xe8\xdd\x0e\x3f\x61\xaa\x0f\x30\x2b\xcb\xee\xe1\x97\x82\x43\xdd\xdf\x06\xbd\x67\xaf\x99\x66\x74\x80\xcc\x58\x94\xf2\xf2\x29\x81\x9f\x7f\x4b\x9b\xc4\xea\xcb\x17\x07\xcb\x93\xfb\xb4\x63\x9b\x82\x2f\x6e\x0d\x0d\x5f\x14\xf0\x59\xb9\xde\x1c\xee\x3e\xfe\xb4\x2a\xb7\xbc\xff\x18\xfe\x58\x61\x8c\x7e\xb9\xb1\x9e\xfc\xd6\x6f\xa0\x43\xde\x3a\x48\x37\x7d\x92\x60\xe4\x1b\xd3\xf3\x8d\x07\x1d\x10\xc2\xdb\x94\xc1\x4f\xd8\x5e\xc1\xd1\x44\x5c\xcf\xd7\xda\xed\x8b\x81\x78\x55\x1e\x66\x5b\x51\xd9\x38\xc8\x97\x1b\x91\x8d\x9b\x9d\x66\x84\x42\xb2\xbc\xbc\x16\xd4\x38\x78\x7f\xa0\x47\x52\xa4\xfa\x6b\x10\x84\x69\xf3\x95\xce\x65\x2d\x68\x78\xf7\xe5\x48\x5e\xb9\x93\x80\x67\x53\x2a\x08\x94\xb9\xd0\xc5\x0c\x4c\x50\x22\xe3\xee\xd0\x77\x9f\x38\x95\x1c\x5c\x16\xd0\x72\xcc\xdb\x20\x1d\x64\xf0\xdf\x66\xb7\x12\x7e\x16\xb1\xa0\x0b\xbf\xcb\x0e\xf5\x79\x49\x26\x8c\xf4\xa8\x99\x50\x7b\xd9\xd1\x64\xba\x21\x31\xd4\x0b\xd2\x19\x1b\xc8\xea\xe1\x3f\xb2\x7b\xd8\x30\xe9\x48\x14\xa6\x52\x3e\x6e\x3c\x8e\x5d\xda\x28\xf4\xd1\x86\xef\xe2\x44\x53\xe9\xe6\xa7\xda\x33\x7b\x25\x4a\x85\x21\xcd\xf5\x65\xb1\x36\x52\x91\xcf\xc2\x27\x64\x40\x1b\x47\xb3\x85\x17\x1c\xb1\xad\x29\x89\x72\xda\x33\xee\xa5\x54\xbf\x31\x37\xba\xfd\xfe\x97\x46\xb7\xc7\x7f\xd8\xe4\xb1\xde\x1c\x63\x59\x5a\xff\x8e\x8e\x89\xf1\x35\x5e\x08\x12\x87\xde\x0a\x87\x1c\x0c\x3d\x07\x10\x8b\x04\xaa\xee\xbd\x9e\x4c\x60\x76\x32\x2b\xf4\x13\x79\xc9\x22\x19\x66\x34\x88\x25\x92\x27\x00\x46\x88\xe5\xd9\xab\x27\xc0\x10\x5c\xe7\xc2\xb2\x7e\x39\xe0\xc5\x6a\xf2\xe1\x44\x2f\xe4\x11\xc3\x9f\x62\xf3\x5e\xab\x86\x98\xbe\xbc\xe7\x02\x25\xcb\xe9\x60\xd8\x2b\x6c\x18\x70\xc3\xc7\x9a\x83\xab\x82\x22\xb8\x6d\x80\x22\xa5\xdb\x8d\xab\x8c\xcf\xa8\x83\xdb\xa7\x97\xd4\x02\xa7\x9e\x62\xca\xb9\xbe\xa8\x95\x44\x36\xe1\x63\x1e\x4b\xfa\xe9\x19\xac\x68\x84\xf0\xd7\x68\xaa\xb7\x31\x68\x88\xe2\x97\x62\xe0\x72\xae\xc7\x7c\x5b\x1e\xe7\x87\xdd\x1f\x52\x50\x47\x06\x28\xa3\xb9\x0a\xdc\xe9\x52\x00\x75\x73\x67\x79\xa7\xde\x17\x6b\xd4\xfd\xbc\x3b\xa4\x65\x84\xc7\x9c\x82\x7b\x58\x7b\x5d\x47\x07\x7f\xf7\x85\x14\x07\xb0\xf4\xf4\x76\x13\x7b\x3b\x0f\xdc\x2e\xd9\xea\x50\x54\x20\x60\xae\x4d\x5d\xa7\x00\x24\x66\x68\x2e\xd0\x53\x75\xaa\xc6\xca\x3c\x21\x8f\x21\x09\xc7\xc3\x3d\x03\xf3\xc7\xa1\xfe\x36\xbb\xb5\x95\xb3\xb6\x1d\xe6\xb3\x0a\xfe\x13\x08\xc7\x7a\x0e\x12\x88\xb9\x7a\x18\xb2\xd9\xa0\xd6\x97\xf4\x1e\xd1\x3b\xa4\x99\xb4\x2e\x72\x9c\x6a\x4b\x7b\x9c\x0a\x94\x81\xe1\xc5\xf8\xed\x1a\x10\x51\x8b\x76\x0d\xe8\x9d\x02\xb2\x3c\x23\xb2\xad\x22\xda\xbf\xe4\xa7\xcc\x1d\xcd\xc4\xc9\x25\xf4\xa3\x59\x1c\x80\xe8\x79\x6e\xd3\x8f\x7d\x6e\xbe\x40\xaf\x23\x53\xf3\x95\x7c\x53\x6e\x78\x6a\xdd\xf1\xe7\x72\xc4\xcf\x00\x27\xba\x99\x4d\x6c\x68\xb1\xb0\xe2\x71\x34\x08\xf1\x93\x83\x83\x9b\xd5\x2d\x1f\x2f\x92\x1a\x09\x30\x5a\x28\x70\x97\x90\x55\xf3\xc1\x68\x70\x28\x9f\x11\x01\x08\xef\x37\x5a\x7c\xb9\xb6\xf2\x03\xcf\x05\xb1\x01\xbe\xec\x6e\x7b\xde\x92\x06\x6a\x0e\x10\x24\x06\xc9\xed\x60\xca\x2d\x5f\xdc\x43\xac\xe9\xca\x71\x62\xb5\xa1\xbb\x43\xca\x9e\xb1\x5b\xae\xe2\x97\x8d\x6c\xff\x40\xed\x78\x90\x1a\xb5\x5c\x6a\xf9\xe7\x69\xb5\x5e\xa7\xe9\xbe\xc3\xfc\xee\xd2\xad\x21\xce\x24\xf2\x98\x40\x39\xf8\x8c\x05\x0f\x87\x1c\xd9\xa6\x0e\x13\x0d\x64\xf2\xeb\xe0\x95\xc5\xa8\xa6\x94\x0b\x1f\xb7\x94\x0a\x17\xe7\xb8\x8f\xe3\x4f\x51\x3f\xd7\xe7\x2a\xd4\x21\x0b\x7b\x62\xe2\x76\xf9\x22\x5b\xb5\xba\x59\x5d\xd3\x18\x8a\x87\x15\x14\x6c\x24\x52\xd2\x96\x78\xcb\x63\xac\x5d\x89\x97\x2c\xca\x67\x5b\x81\x81\x17\x7e\x53\xe6\x8c\x8d\xa3\xe0\x0d\x89\x0d\xf4\xdd\x60\x7a\x41\x64\x62\xee\x0a\xdc\x09\x3a\x78\x42\x11\xef\x43\x24\xaf\xde\xd9\xc7\x26\x7c\x26\xab\xeb\xfd\xb0\xc0\xfc\xba\x7a\x29\x7c\xd1\x41\xa1\x83\x72\xf4\x33\x05\x7c\xfb\x71\x29\x08\x31\xa9\xa5\xe6\x77\x5b\x7d\xe2\x60\x91\x64\x60\x05\x89\xd0\xf2\xeb\x27\xee\xa4\x26\xdf\x3f\x28\xf9\xd3\xc6\xf6\xa2\xcf\x18\x6c\x6b\xe7\x43\x5a\xfd\x40\xc4\x7f\x70\x61\x73\x35\x3b\xec\xd7\xd3\xe4\x89\x15\x98\x01\x52\xa1\x3a\x9b\x3e\xbb\x25\xc7\xe2\x5b\xbf\xed\xd8\x94\x31\x35\x73\x9e\x2f\x7e\x70\xe8\x94\x58\xb1\x0f\x27\x0b\xa4\x92\xec\x33\xb7\x3b\xd1\x79\x1a\xe8\x6e\xde\xf1\x7c\x27\x31\xc9\x4d\xd8\x26\x9a\xb1\x5a\xaf\x43\x2d\x55\x07\x33\x6d\x6a\xdf\x1c\x17\x17\xe8\xa5\xee\x7a\x84\xf7\x0b\x77\xe9\x72\xb3\x60\x3a\x95\xb7\xd7\x55\x43\x40\x78\x4f\xbf\x49\xe7\xd1\x08\xb3\xd9\xcd\xaa\x0d\xcd\x04\x36\x1e\xf9\x03\xd0\x4e\x18\x4c\xf5\xca\x94\x1c\x9a\xe8\xc3\xdf\x09\x1f\xec\xe6\x6b\x1c\x57\x84\xfc\x13\x60\x66\xa2\x54\xb9\x33\xac\x6f\xfe\xee\xcc\x35\xb1\xec\x4a\xa0\x27\x48\x89\x07\x30\xf2\x7d\xad\xab\x1d\x62\x6b\xeb\x98\xd0\x5e\xf3\x3e\xb0\x18\x40\x50\x5d\xd0\xcb\xe0\xc9\x4a\x5f\xb7\x58\x5c\xd7\x35\xe5\xad\xab\x50\xd9\x4c\x35\xcb\x76\x77\xde\x26\x5d\x2f\x73\x2c\xed\x09\xbe\x9a\x4a\xe7\xa5\x9c\x3a\xcd\xfa\xf1\x3c\xbd\xfc\x55\x59\xc7\xd6\xc3\xef\x3c\x43\xab\x91\x47\x5c\xa6\xdf\x63\x67\xc3\x9a\xd3\x45\xae\x5e\x84\x5f\x19\x05\x0b\xc9\xbd\xc4\x4d\x33\x66\xcb\x7f\xdb\x8d\x5d\x07\xdc\x9a\x02\x8e\x41\xa5\x18\xaf\xdb\x32\x0d\xcd\x43\xff\x4f\xb9\xec\x69\xf1\x3b\x9e\xd5\x69\x3a\x86\xcd\x29\xd5\x72\x4f\x00\x6d\x3a\x83\xeb\x1d\x0e\xdf\x63\xc0\xcd\x06\x67\x9d\x08\xc4\x23\x99\x9b\xcb\x74\xcc\x2b\x99\xf1\xb3\x5e\xe6\x49\x77\xb7\xc6\x71\xa3\xf6\xd3\x38\x28\x2b\x1a\xc4\x82\x42\x31\x41\x61\x46\x24\x94\x2f\x48\x8b\x00\x44\x4e\x3c\xf3\x9e\xbe\x55\x9c\xf1\x34\xef\x7a\x6d\x3e\xe1\xcc\x6f\x2d\xd5\x8a\x72\xd6\xb6\x3a\x57\xbd\xeb\x50\x85\x7c\x68\x49\x85\x73\x9b\x5d\xb3\x19\xc9\x82\xda\x68\x86\xb0\xa6\xbe\x1c\xa9\x5e\x0b\x56\x75\xff\xe5\x9d\xff\xbc\xf6\xec\xc8\xb7\x6e\x5a\xe4\x84\xd4\x5b\x30\xc0\xbb\x99\x9e\xfd\xc8\x26\x80\x27\x36\x68\x74\x39\x2d\x4a\xf1\xf8\x9f\x81\xae\xf0\x23\x43\x05\x90\x48\x71\x5b\x22\x06\xae\x91\xdd\x63\x5f\xa9\x38\xe3\x39\x70\xa0\xca\x9a\xda\x4f\x39\x16\xf8\x2b\xea\x07\x64\x56\x69\x49\x94\xfc\xf3\x19\xe0\x19\xc9\x59\xca\x2f\xf9\x3e\x9e\x6e\x9c\x5e\x72\xa1\xc7\xf7\x69\xc9\x27\x32\x56\x32\x25\xa6\x0f\xe8\x9e\xe7\x8c\x21\x7a\x8d\xfc\x11\xe6\x6f\x22\xd2\xb9\xaf\xe2\x00\xfc\xfd\x27\x21\xfe\x55\x74\x00\x82\x5d\xf7\xc4\xf3\xb6\xf8\xa4\xa8\xe1\xf6\xd5\x2f\xfc\xb3\x4e\xe7\x4b\x48\x3d\x7b\x1f\xc5\x93\xec\x4b\x0f\xe5\x7e\xda\x7a\xfc\xb9\xcf\x1f\x57\x0f\x69\x2f\x9f\x09\xef\x1f\xe4\x6f\xd9\x5d\x61\xda\xb8\x68\x02\x56\x3e\x49\xfb\xd2\x66\xb6\x2e\xff\xae\x09\xc6\x43\xbe\xa1\x54\x27\x79\x95\xf8\x9b\x41\xfb\x86\x02\x7b\x33\xbd\xe7\xb9\x28\xc1\x2d\x4d\x6d\x39\x0c\x21\xc8\x84\x00\x03\x24\xae\x72\x8a\xee\xce\x4f\xb0\x9e\x7e\x1b\xa6\x33\x65\x4d\xac\xce\x66\x5a\xec\xf0\xd2\xcd\xb1\x08\xdd\x86\xce\x70\xe3\x08\x10\xfe\xf1\x3e\xbb\x7c\x65\x09\xb4\x0b\x81\xf5\xd4\x6c\x3a\xe8\x9a\xd9\x2b\x46\x5f\xf4\x42\x25\xdf\xb3\x46\xf3\xf7\x56\xbf\xa9\x78\xaf\xf0\x42\x81\xe1\x99\xf5\xb2\x65\xc7\xe8\xca\x33\x1a\xd2\x29\xea\x91\x00\x27\xe9\x74\x3f\x38\x22\x87\x6a\x47\xfc\x77\xe8\xa0\x78\xf9\xfe\x2f\x9a\x96\x20\x36\xda\x9d\xfa\xbd\x74\x27\xfe\xea\x64\x63\xf4\xf2\xbc\x70\x8e\x81\x2b\x7f\x35\xd6\xed\xec\xb1\xda\xf8\x41\xe7\xdc\xc3\xe3\x9f\x30\x0b\x60\x05\x00\xb7\xce\xdb\x5d\x7c\xcd\x47\x0a\x91\x80\xa3\x04\xbe\x0c\xd0\x53\x3e\xfb\xfc\x8d\x95\x2c\x2f\xe3\x52\xef\xca\xe4\xda\xcc\xf5\x01\x39\xd0\xf3\xb2\x53\xd5\xc7\x00\xc7\x83\xee\x31\x7a\x37\x33\x5c\xb1\x02\x1f\x91\xc5\x0e\x0f\xc4\xdf\xc9\x10\xee\x7b\x8e\xca\xe5\x28\x2e\x1c\xc9\x94\x7c\xa7\x55\x66\xf7\xc9\x0c\x64\x29\xa7\xa4\x3b\x86\xde\x34\x19\x8c\x7d\x97\xe7\x07\x04\xe2\xc1\xd3\x21\x9e\x97\xe5\x12\xb4\xed\x21\x53\xde\x26\x18\x23\x04\xaa\x4f\xf7\x24\x54\x21\x4c\xe4\xb2\xbd\x16\x2d\x72\x26\xfd\xf7\xa4\x42\xed\xe3\x2d\x50\xf7\xde\xd3\xd5\x51\xda\x4f\xd0\xe3\xcd\x43\xb5\xe9\xf5\x97\x88\xa6\x47\x45\xb7\x12\xd6\xf3\xf3\x0c\x39\x92\x98\x7b\xac\x7b\x43\x09\xe8\x75\x9b\xa4\xe1\x6a\xd8\x37\xad\xb8\xcc\x17\xe1\x5f\xeb\x48\x9c\xe1\xbc\xd2\x36\x83\xdd\xb6\x66\x65\xfb\x16\xcc\x08\x6b\xf2\x20\xa9\x8a\xb0\xdd\xb0\x5f\x33\x28\x21\xf5\xd7\xc5\x0d\x25\xeb\x77\x36\x07\x25\x7e\x1c\x40\xc7\xaf\xd6\x11\x51\x54\x98\x42\xff\xab\xd5\x0d\xa4\xd1\x2f\xbf\xcf\x80\xd3\x02\x7d\x3f\xde\xb7\x5f\x04\x8d\xcf\x26\x14\x8e\x1f\xca\xce\x55\x44\x48\xc3\x09\x1f\x54\x01\x84\x27\xcb\x9f\x29\x2c\xd0\x84\x7a\x90\x63\xaa\xc6\xb2\x0b\x79\x53\xfc\x92\x8b\x31\x5a\x49\x3c\xbc\xc0\x4e\xd6\x3b\x83\xa7\x5e\x06\x2d\x3a\xa7\x1f\xbd\x3c\xcc\xad\x20\x58\x10\x8e\x3f\xa2\xf7\xec\x90\x09\x83\xdd\xff\xd0\xd9\xf8\x10\x11\x7b\x44\x64\xf6\x6b\x68\x38\xed\xd1\xb2\x26\x98\x07\xd7\x66\x82\x6f\x05\xab\x1f\x11\x94\x51\xaf\x18\xfd\x5e\x01\x77\xb7\x75\x2e\x17\xe2\xf4\x8b\x98\x96\x61\x8d\x10\x04\xff\x85\xec\x11\x75\x7b\xd2\x6e\xcd\x0c\x92\x81\x25\xf2\x6b\x8c\x59\xcf\xc6\xea\x82\x7a\x14\x55\x77\x1f\x1b\xc9\x25\xa2\xa7\x89\x79\x0a\xf9\xb1\x4d\xc2\x1d\x84\x90\xfc\x86\x21\xbf\x83\x94\xa2\xec\xec\x29\xbe\xa5\x9b\x33\x1f\xf7\x4c\x09\x9f\xff\xdc\xe7\xeb\xe3\x0e\x27\xf3\xfb\xf3\xfb\xc5\xf5\x39\x5c\x15\x6f\x52\xa1\x6a\x2c\x2f\x79\x98\x55\x62\x59\x3f\x5a\x22\x8f\xb7\xaf\xcb\x6f\x6f\x3e\xbf\xf5\x32\xba\x14\x43\x4c\x5a\x9a\xa5\xfc\x0e\x0a\x80\x80\xdc\x50\x86\xd7\xda\x97\xd4\x5b\x84\xce\xd3\xdd\xcf\xd3\xb5\x12\x77\x98\xaf\xee\x87\x89\x81\xf4\x42\x05\xea\x1f\x4e\x31\x91\x31\xc5\xc8\x41\x7f\xdc\x54\x73\xbf\xf5\x12\x14\x08\xa5\xad\xa9\x27\x60\xae\x4d\x59\x95\x81\x48\x57\x15\x15\xb3\x90\x73\xe5\x95\xc6\x72\x1c\x81\x53\x3e\x7a\x3d\xf1\xe5\xcb\x79\xf8\x65\xb1\xbe\xff\xf0\x15\x3a\x2b\x73\x71\x01\xef\xfa\x66\x93\x6f\x77\xb8\xbf\x6a\xcc\x9d\x3d\x63\xae\x7c\x7a\x52\xc5\xb3\xa5\x63\x78\x68\x09\xef\x7a\x3f\x82\x60\x97\xfb\x2d\xdf\x98\x6f\x48\x06\xb0\xda\x29\xf1\xe2\xc0\xdf\x5c\x00\x43\x8a\xbf\x7b\xf4\x5c\xad\x53\xb8\x7b\x21\xf8\x65\x43\xe9\x73\xd4\x7c\xd0\xb3\xc7\xab\xa9\xb2\xd7\xe9\xb7\xb6\xae\x12\xa5\xbd\x03\x15\xd0\xa2\xa3\x97\xd1\x02\xf1\xbf\x2e\x6a\x49\x2e\xee\x2b\x15\xee\xb3\x7a\x70\xb5\x4d\x3f\x92\x75\xa1\xe6\x9e\xda\xce\x04\xcd\x0a\x24\x6e\xfe\x2e\x61\x80\x9b\xb2\xbe\xd2\x8a\xd1\xd1\xa4\xb0\x1b\xd9\x05\x51\xbe\xcb\xc2\xe9\x38\xc2\x63\x05\x21\x23\xb5\xcb\x91\x51\x6d\x3a\xcd\x82\xfc\xb9\x7f\xa0\x7d\x3f\x2c\x73\xbc\xf7\x86\x0b\xdb\x66\xc4\x38\x31\x63\x8a\x2b\x93\x15\xdc\xe4\x52\xed\x05\xe1\xb6\x71\x36\x3b\xdf\x22\x08\xfa\x96\x1d\x7f\x6a\x2d\x09\x90\x7a\x62\xa9\xbe\xa5\xbd\x33\xf9\x6b\x5c\xe7\x87\x31\x5b\xbd\xa1\xc5\x4a\xba\x25\x96\x06\xc8\x4e\x8f\x1b\xa6\x61\x3c\xfa\xef\x05\x28\x5c\xb9\x0f\x37\x47\x70\xe2\x95\x28\x6b\xcc\xb5\x2d\xad\x45\xc5\xed\xb4\x82\x1d\x8a\x95\x13\x55\x5e\x7c\xbd\x26\x8f\xaf\x35\x22\xbe\xcf\x74\x74\xa6\x33\x1e\x8b\xf5\xc8\xa4\xb6\xb3\xe2\x60\x1f\x6c\x0a\x4a\xc6\x0f\x9e\x00\x4a\xd7\x10\xed\xcf\xb3\xb3\xa5\xb5\xf9\x29\xec\xc8\xe3\x70\xfa\x35\xa4\x78\x57\x8e\x3b\x9a\xf2\x44\xee\x9b\x95\x8e\x37\xa0\x06\x7c\x01\x3f\x4b\xaa\x14\x1a\x78\xa5\xa7\x2a\xed\x0e\x08\xbe\xa6\xdc\x16\x9b\x9f\x92\xfd\xcd\x7a\x99\xd6\xcc\x02\x73\x0a\xe9\xa8\x78\xef\x59\x54\x0f\x37\x1e\xe6\x56\x30\x9e\x7b\xbd\xb4\x56\x6f\xb3\x71\x7b\xbb\x8c\xcb\xb2\x84\xb7\xea\xff\xcb\xe9\x57\x03\x5b\x05\x09\xee\xd0\x08\xe5\x07\x95\xe7\xa8\xd9\xa0\x69\xbd\x36\x77\xf8\xb0\xea\xe9\xa5\x30\x58\x3b\xc6\xe6\xeb\x7b\x07\xf9\x0f\xd5\xfa\x20\x57\x40\x7b\x6c\xdb\x4b\x2d\x8b\xdc\x9a\xe8\xeb\x23\x29\x3c\xa1\xb0\x5f\x30\x7f\x2a\x93\x2a\x92\xf4\xcc\x31\xf4\xe7\xdf\x45\x4c\x3c\x00\x7c\xb1\xe3\xad\x8d\xa4\xc2\x61\xcf\x4f\xa5\xed\xd4\x02\xb6\x57\x95\x78\x74\xd9\xfc\xb0\x74\x43\xbc\x50\x42\xef\x80\xb2\xb8\x17\x0c\x7f\xd8\x54\xde\xc6\x47\xd3\x37\x4c\xbc\xfa\x94\x30\xeb\xc6\xbd\xc3\xe4\xa5\xe0\xe2\xf9\xbc\x82\x58\x79\xea\x4d\x3b\x95\x4c\x6d\x56\x46\x4b\x1f\x7f\x43\x8c\x71\xac\xe3\xd4\x98\x67\x0c\xb1\x66\xc0\xfd\x73\x28\x26\x2a\xa5\x1c\x29\x61\x16\x73\x2c\xb1\xc9\x7f\x28\x19\x86\xda\xf8\x3b\x74\xb3\x23\xb6\xa8\xba\xbd\x7d\x99\x53\x8e\xc7\xbd\xdf\xf3\xf3\xd1\xb6\xe1\x91\x07\xbe\xc8\xe9\x62\x7d\x95\x8d\x7c\x71\x7a\xa3\x90\xc8\xbf\x1a\xf7\x4e\xa6\x85\x99\x6f\xc2\x45\x16\x93\x25\x48\xb8\x73\xeb\xef\x3d\x27\x13\x9c\x49\xdc\x76\x63\xf1\x0d\x8a\x87\xc1\xc1\xf2\xe2\x46\x69\xfd\xbf\x39\x48\x83\x3f\xc8\xcc\x06\x4f\x2e\x33\xb9\xf1\x20\xba\xe0\xf7\x5c\xa2\xc0\xef\x50\x9a\x58\x94\xb2\xfc\xe7\x12\xc9\x60\x98\x50\x69\x60\xf1\x5d\xa5\x01\xe7\xb0\x5c\x51\xaf\xe1\xa5\x94\xd7\xbc\xef\x2b\xed\x6c\x96\xaf\x5d\x31\x09\x01\x10\x1f\xfe\x03\xa6\xef\x28\xde\xc0\x0f\xfa\xb2\x0d\x0a\xda\x8d\xfa\x06\x51\x07\x94\x6c\xcd\x4a\x78\x85\x80\xad\xde\xa5\x5f\x00\xed\xbf\x63\xda\x57\xe7\xca\x50\xcc\xc3\x68\x81\x2b\x9d\x55\x68\xd5\xcf\xa0\x2a\xfb\xb7\xc5\xf9\xaa\xe8\x40\xe2\xa5\x2c\xca\xbf\x43\x0e\x9d\xad\xce\x56\xa5\x17\xb0\xd7\x6e\x4a\xff\x5c\x38\xf5\xc4\xbd\x55\x78\xa7\x7a\x72\x38\x1b\x53\xcb\xb3\x63\x3c\x83\x8a\xe8\x14\xbf\x6e\x7c\x5c\x1b\xca\x95\xac\x7f\x34\xba\xc8\xa3\x3f\x85\xa9\x4e\x4b\xcc\x58\x07\x00\x94\xfe\xc8\x22\x9a\xad\xa2\xb3\xde\x42\x9a\x34\x0c\xcd\xa7\x75\x1d\xfb\x26\x1a\x7f\xd4\x9e\x5d\x9a\xa6\x3d\x68\x8c\x8e\x8d\x47\x48\x80\x67\x86\xbd\x3e\x91\x68\x44\xe8\x04\x50\x5d\x81\x9e\x7c\x0f\xa9\xbd\x88\xdf\xe0\x4e\x35\x98\x7a\x30\xbd\x17\xde\x3f\xc4\x27\x38\x11\x60\xf8\xaa\x63\x88\x1d\x27\x1c\xb2\xca\xe8\x48\xb7\x12\x0e\xef\x9f\x3a\x36\x12\x78\x7b\x70\x90\x8a\xf6\x3f\x5d\xaf\xbc\x48\x9b\x4a\xd3\x58\x2e\x34\xef\xc5\x62\xcf\x78\x0e\x67\x05\xf8\x89\x1c\x0d\x1f\xb2\xdb\xca\xc5\x31\xa6\xf2\xfe\x6f\xae\x24\xc4\x4c\x4b\xdf\x3f\x8e\xd8\xb4\xc3\x5e\xe4\xd4\x22\x6f\x7c\xb9\x4b\x31\xcb\xdc\x7c\x62\xdd\x77\x97\xc9\xae\x81\xf5\x9a\xe8\x2d\x3e\x3b\x24\x3a\xb5\x2e\xf3\x40\xfb\xe3\xda\x10\xd6\x8f\xf2\x68\xe5\x56\x4e\xbb\x83\x1b\xa3\x85\xd9\x60\xae\x30\xde\x33\x67\x09\xa1\x42\x19\x84\xbd\xa3\x82\x56\x46\x4d\xd8\xee\x41\xfd\xbb\x0a\xf3\xd7\xe2\xd4\xa0\x97\xb2\x0a\xb5\xcc\x69\xd3\xd4\x99\xcf\x78\xf7\xf8\x0b\x14\x78\x32\xdc\x8e\x21\x9e\x60\x11\xdb\xe2\x0f\x57\xfc\xc2\x90\xdc\x22\x38\x43\x1b\x6b\x1c\xc1\xe9\x98\x64\x49\x67\x2e\x89\xf7\x81\x8b\xa8\x8a\xce\x04\x7b\xf2\x8f\x0f\xa9\x70\x32\x4d\xa9\x06\xde\xf4\x52\xcb\x94\xb5\xc6\x1c\x15\x26\x73\xa1\xa7\xec\x94\xf2\xcd\x46\x89\xf1\xa9\x9a\x7c\xe6\xe3\x6a\x6a\x54\xaa\xfd\xd5\x22\x0c\x7f\xa1\x8d\xb7\x5d\x06\x0f\x6f\xae\x88\x70\xfc\xdb\xf0\x1f\x8b\x7f\x2e\x2a\x1c\xd1\xe3\x3a\x10\x4d\x28\xe8\xe3\x8e\xf6\x4a\xbb\x8e\xfe\xcc\x60\xa2\x15\xe7\x20\x9a\x5a\x49\xe3\x4a\xf6\xfa\xe5\x4b\x05\x20\x84\x69\xa7\xd6\x73\x51\x9b\x6f\xea\x3e\xe6\x93\xbd\x8e\xf3\xb1\xdc\x66\x8a\x2e\x09\x87\x43\xf6\x3f\x6e\xd7\x97\x2c\x44\xa3\xa4\x0c\xb7\x34\x38\xdb\x76\x7f\x47\x6b\xec\xa6\x57\x76\x27\x8b\xd4\x3e\xb3\x31\x5a\x87\xe7\x42\x00\x72\x58\x7e\x15\xb9\x85\x65\x69\xa6\x41\xd4\xef\x7c\x26\x9e\x42\x4c\x57\x2d\xfa\x42\x16\x7b\x71\xd0\x75\xe2\x93\x5f\x83\x87\x21\x24\x26\xf8\xd0\xe8\x12\x5a\x25\xf5\x7a\x03\xeb\xea\x4b\x77\x3d\x27\x2e\x78\x5e\x4b\xad\x26\x9e\x6e\x3e\x47\x77\xa7\x22\x9a\xb9\x48\x3b\xf0\x83\xf0\x53\x2e\x55\xaa\x49\x21\x50\xb2\x59\xfa\x73\x06\x7c\xa8\x73\xbe\x20\xd1\x8e\xe1\x75\x31\xcb\x71\x83\xe2\x9b\x57\x31\xd1\xab\x85\xf5\x1f\xba\x8f\x3f\x72\x2a\xd1\xfc\xb0\xca\xe1\x3e\x7d\x7b\x62\xd5\x10\x73\x92\x17\x2c\x7d\x5d\x9b\xf8\x4b\x5f\xf1\x8d\x34\x62\x90\xcb\xaf\xa3\x2b\xed\x6c\xeb\x70\x7f\x99\x73\x89\x3b\x08\xa3\x41\x52\xb9\x8c\xc3\x02\x7a\x75\xa9\x1f\x52\x1f\x28\xdc\xf9\x8d\x69\xa3\x79\xf7\xef\x40\xf9\xb0\x18\x61\x48\xc3\xa9\x67\x9f\xcf\xe1\xa6\xcf\xf9\xeb\x2e\x25\x22\xf5\x77\xb3\xd6\xaa\xb0\x10\x25\xf0\xd9\x14\x37\x16\x4a\x5d\x8d\x2d\xb9\x88\x75\xb6\x9a\xad\x04\xf6\x5d\xa6\x84\x0f\xbe\xac\x24\x24\x28\x61\x58\xda\xac\x35\xb2\x68\x6f\x9d\x86\xa6\x9a\xe2\xf8\x8c\x25\xda\xf2\x81\xca\x5c\x94\xd1\x96\xf4\x83\x83\xdf\x75\x42\x95\x1d\xa9\xf6\xd4\xcf\x63\xca\xc9\xed\x8c\x46\x4f\x87\x8c\xec\x14\x4f\x7e\x0b\x71\x93\xa0\x2f\xe7\x76\x4f\x8c\x50\x66\x88\x50\x96\x76\x0e\xfd\x13\x68\xcb\x61\x46\x8d\x3f\x0a\x1b\xd0\x5b\x53\xf5\x8d\x64\x07\x58\x15\xdf\x4c\xee\x92\xb1\x69\xe5\xfd\x79\xfa\x37\x1d\x96\xbc\xa7\x17\x97\x13\xf7\xf4\x6d\xef\x13\x15\xb9\x27\x91\xfd\xaf\xde\xc2\x70\xdd\x0c\x2e\x1f\xc3\x7e\xa1\xe0\x43\x78\x13\x62\xd8\x29\x59\x8d\x95\xaa\xfe\x90\x3e\x46\xf3\x06\xde\xc2\x46\xf6\xc2\xd7\xec\x85\x42\xec\xa5\xef\xf0\x0c\xca\xdf\xe7\x0f\x40\x4f\x88\x36\xf1\x92\x3f\x1d\xa6\x79\x1c\xfa\x9f\xe9\xdf\x99\x72\x29\xd2\xdd\xe1\xbe\x9d\x59\x08\xdb\xbc\xef\x21\x9e\xd9\xb3\xb1\x33\xe3\xb0\xf1\x8f\x2e\xcf\xde\x50\x0b\x0f\x4e\x26\x99\xf7\x16\xb5\xf0\x95\x77\x36\xff\x93\xaf\x21\x8e\x70\x3a\x50\xfc\x56\x37\x88\x7e\xb7\xdf\xe3\x73\x9e\x95\x58\xe8\x43\xa7\x1f\x33\x1c\x39\xf6\x01\xd0\x78\xdf\xcd\x42\x75\x7a\x3a\x98\xdd\x82\xbd\x9a\x96\x51\xa1\x00\x3e\x23\x65\xbb\x03\xa1\x0e\x7a\x7e\xa6\xb0\x55\xb5\xc4\xe2\xe5\x8d\x5e\x41\x95\xa4\x28\xc3\x06\xb5\xe3\x4e\x49\x24\x0f\x85\x6f\xf1\x11\xef\xb8\x50\x94\x84\xfc\xab\x41\xb1\x6d\xe0\x20\x47\x4d\xd3\x55\xa0\x8d\xde\xa4\xb3\x75\x45\xa7\xe3\x34\x76\x92\xd6\x02\x50\x15\x02\xcf\x6a\x45\x6b\xaa\xc9\x3f\xae\x94\x02\x03\xea\x14\x57\x06\xf1\x1f\x4a\x49\x28\xc8\xa4\x1a\x82\xa8\x60\xbf\x84\x90\xc5\xad\xbd\xce\x81\xac\x5d\x08\x61\x9c\x1f\xc4\xeb\x8d\xf8\x95\xf9\x41\xff\x64\x68\xc1\xf8\x3f\x25\xc9\x4c\x15\x50\x98\x23\xc7\x77\xc8\x8e\xc3\xe5\xe6\x04\xcc\xd3\xaf\xc3\x92\xc6\xc7\x2c\x46\xb8\x45\xa5\x49\x87\x05\x74\x55\x73\xf7\x36\xa7\xdf\xba\xd1\x37\xea\x9d\xf4\x6f\xbb\xc4\x6d\x24\xc8\x5c\xbd\xc5\xec\x0d\xfd\x45\x2d\xc4\x4d\x43\xbf\x08\x84\x65\x8e\x08\x13\xf3\x28\x0e\x5d\x91\xeb\xee\x1d\xc7\x36\xdc\x58\xf7\xdd\xb1\x9a\x46\x63\xbb\x4b\xbd\x01\x11\x82\x16\x95\x84\x3c\x0e\x54\x9e\x19\x8f\x79\x19\xa7\x28\xe3\x55\xf9\x1e\xc6\x0a\xff\x79\x0e\x60\x72\x29\x5f\xd8\xa4\x03\x2b\xf1\xfc\x75\x06\x5a\xdb\x5c\x5d\x0b\x34\x93\xf5\x9a\x94\xa1\x9f\x63\x79\x73\x4e\xe5\x35\x14\x28\x2b\x7f\xe2\x5a\xef\xcc\x3f\x2f\x84\x40\x99\x29\x0e\x3f\x53\x46\x53\x8c\xb4\xd0\x9b\x18\xb7\xb3\x13\x7f\xd9\xea\x3b\x5f\x48\x1a\x7c\x59\xf0\x1c\xb4\x0a\x21\xd6\x97\x5d\x6c\x54\x97\xb9\x58\x47\x99\x40\x33\xcf\x9b\xef\x14\x14\x54\xd9\x9c\xd2\xab\x56\x88\xf6\x0f\x58\x82\x30\x08\xa8\xc6\xab\x96\xcb\x71\x1c\x20\x99\xce\x41\xbc\x37\x41\x25\xd5\xbc\x3a\x32\x6d\x76\xb4\x8a\x44\x92\x81\x2f\xa7\x32\xbf\x21\xd2\xf1\x85\xa6\x44\x71\x6f\x35\xe1\x2a\x5d\x76\x79\xe3\x95\x09\x25\xbc\xfe\xe2\x09\x76\x32\x03\x4f\xdb\xbb\x62\xa3\xb4\xd2\xbe\x3c\xed\xb0\x5d\xad\xce\x10\x71\xfa\x04\x0a\xf7\xcb\xde\x1f\xae\x35\x97\xcf\xa6\xda\xda\xde\xf7\xdc\xfa\x04\x07\xc7\xc9\x8a\xe3\x8d\x88\xf4\x7e\x7f\x12\x25\x59\xaf\x35\xb1\xc0\x49\xe1\xea\x5a\x4c\x86\xf2\x92\x40\xc5\x75\x57\x56\xd6\x27\x97\x0b\x52\xe1\xdb\x43\xd7\x6f\xdd\x33\x20\xcf\x71\xdf\x30\x43\x6f\xe2\xda\x95\x4f\x21\xcd\x89\xe0\xd4\xf4\x1f\xbe\x5f\x30\x76\x6d\x60\x44\x7a\x0d\x7e\x77\x32\x15\xcd\x93\x10\x7c\x2f\xe6\x3b\x8b\x86\x0e\x51\x08\x8b\x93\xd1\xc7\x5f\xa7\xe9\x63\x2b\xfe\x83\x72\x3a\x25\xb0\x07\x2c\x96\x3e\xfc\x5a\xa0\xbd\x38\xbf\xda\xd3\x2c\xe3\x44\x6d\x0e\xde\xff\xcd\xe2\xbc\x8f\xb5\xbe\x93\xf3\x6b\xdc\xe1\x20\x25\x6d\x71\xce\x3f\xf7\xef\x73\x85\x32\x5e\xee\xc1\xb2\x9f\x92\xee\x69\x5e\x31\x50\xb8\x7e\x14\x37\x62\xc3\xc8\xe4\x08\x09\xeb\x68\x73\xfd\xa5\x7b\xb5\x52\xc8\xce\xef\xe1\x5d\x7b\x31\x54\xd2\xb0\xbb\xdf\xd3\xd8\x65\x69\x2e\x15\x87\x75\x11\xdc\xca\xbd\xf4\x83\x92\x3c\x1e\x2a\x67\xe2\xaf\xa1\x01\x20\x06\x13\xd4\x2d\x33\xb2\x8d\x34\x59\x95\x2f\x30\x24\x44\x84\x41\x40\x28\x53\x05\x2e\x51\xee\xa0\x77\x73\x2a\x35\xf5\xc0\xdc\x87\xde\x77\xe4\x5f\x51\xbf\x3f\x47\xad\x23\x24\xec\x95\x14\xe0\x7a\x94\xde\xcf\x50\xcb\xf8\x87\x4f\x22\x0f\x63\x7f\x1a\x9f\x8a\x79\xc9\x0a\x1c\x89\x16\xc6\x2f\xb7\xbd\x0c\xb6\x1f\xfa\xf9\xaa\x30\xb7\xdf\xd8\x07\xe7\x46\x05\x4e\x0c\x83\xfb\x0c\x9f\xc7\x4a\xe3\x01\xd9\x85\x9d\x06\x41\x51\x22\x86\x71\x3f\xaa\xe9\x9a\x3a\xd9\x36\x2f\xd6\xc2\xdd\xf7\xd7\xe2\xfa\x1c\x39\x9e\x2e\x06\xdf\xaf\x8f\xa5\xa2\x57\xc0\x90\x18\x3a\xfd\x1e\x7a\x6f\x59\x35\x57\x7b\xfd\xbf\x71\x1f\x94\x52\x27\xa9\x79\x05\xc2\x8f\x5c\x0d\x77\x5e\x2e\x37\x7d\xcc\xbc\x4b\x65\xab\x12\xad\x56\xe9\x3b\xeb\x84\x23\x37\x70\x81\x9b\x3c\xb9\x4b\x43\xd0\xb6\x93\xe4\x8d\xa3\x14\x77\x6b\x01\x49\xc8\x84\xc6\xa7\x7d\xf4\x41\x54\x85\x02\x44\x0a\x05\x93\x54\xf5\xe1\xb1\xf7\xb1\x7d\xbb\x80\xe2\x7a\x3a\x3f\x59\xa4\x13\x3d\x03\x44\xe2\x4e\x97\x1a\x12\xb0\x83\x4d\x2d\xde\x22\xa5\xdb\x97\x59\xfb\x9b\x22\xef\xa6\x3c\x47\xa8\x69\x73\xa1\x57\x44\x5d\x97\x94\x64\xdb\x6a\xc3\x11\xed\xcb\xd8\xc1\x7e\x82\x1d\xb4\x7a\x85\x4c\xc5\x0f\x1d\x24\xaa\x42\x5d\x85\x60\xbd\x20\xb8\x2c\xa2\x2f\xc9\xae\x90\x2b\x24\x9c\x8d\xf3\x0f\xd9\x5e\x97\x90\x63\x58\x43\x55\x7c\x6d\xa9\xb1\x88\xda\xc3\xe4\xc7\x31\xa3\x53\xad\xa4\x20\x0b\xcc\xed\x61\x15\x4f\x27\x0e\xfd\x6a\xd4\x67\x00\x6c\x30\x61\xd8\x45\xd7\x9c\xf4\x2a\xa7\x78\x13\x4d\xf6\xd4\x47\x25\x85\x39\x77\x40\xe1\xd2\x2a\xfc\xb2\xec\x27\x6b\x9b\xc6\xd8\x02\x35\x94\x36\x5e\x60\xe4\x9f\x7f\x64\x40\xbd\x04\xbd\x82\xc6\x9b\x7e\x0d\x56\x9c\x6b\x37\x23\x7f\x66\xd3\x68\x26\x88\xf5\xf6\x41\xbe\x11\x12\xa0\x04\xb5\x1b\x0d\xdc\xf3\x53\x78\xb8\xc0\xc4\xa6\x9b\xbf\xaa\x02\xdf\x29\x88\x97\x50\xca\x86\xf3\x5e\x11\x83\x75\x8c\x82\xc8\x7a\x7a\xd8\x19\x3e\x24\x0e\x8b\x61\xfd\x96\xd9\x4d\xe5\x88\x80\x63\xcf\x2c\xe0\x1c\x40\x95\xdf\x44\x86\x41\xb3\x38\x06\xb0\xe6\x35\x21\x06\x9d\xa6\xdc\x9b\xf1\x78\x5d\xca\x7d\x68\x4b\xf2\xb0\xc8\x6a\xb2\x64\xba\x03\x87\xec\xfd\x67\xb4\x29\x2f\x30\xef\x05\xcc\xc4\xfe\xe6\xb3\x41\xba\x9e\xca\x5d\x93\x2b\xa1\x86\x1c\x9c\xc8\x9c\xab\x0d\x70\x43\x00\xfc\x46\xfd\x92\xc2\x17\xb4\xae\xa1\x4f\xea\x7a\xc9\x36\xad\xd3\x57\x81\xc7\xed\x76\xf8\x83\xcb\x49\x65\x2d\xe7\xab\x5f\x4f\x9a\x22\xd0\x12\x98\xc6\xc8\x89\x1b\x5c\x4a\x9f\xc7\x08\x27\x21\x55\x7d\x1a\x84\x52\x46\x0d\x7a\xd3\x61\xe8\x07\xf9\xb3\xf1\x51\x0e\xa5\x1d\x40\x9d\x35\x55\x24\x71\x3a\xf5\xde\xa5\xf4\x23\xae\x9e\x59\x55\xe6\x73\x55\x00\xa0\x26\x85\x7c\x16\x06\x1b\xe1\x65\x2c\xbb\xcf\xee\x11\x0b\x88\x3c\x07\x63\x68\x11\xde\x57\x74\x57\xa2\xd6\xa3\xb8\xfe\xbf\x31\x94\x71\x51\x4c\xc5\x0f\xab\x2b\x8b\x1a\x4b\x2d\xeb\x44\x2c\xba\x30\x39\xfa\x92\x7c\x7e\x8f\x7d\xa9\x1d\x49\x0a\xd7\x8f\x36\x1c\x17\x32\x63\xb1\x9b\xdf\x3b\xa9\x0f\x60\x0e\x0e\xcc\x25\xfa\xb4\x3f\x59\x31\xbb\xf2\x3d\x3e\x03\x6a\xc9\x93\xb4\x4c\x80\xe4\xa9\x3c\x78\x51\xfb\xde\x54\x80\xf0\xd6\xb4\xda\xf2\xef\x87\xb5\xdb\x19\xba\xe7\xcb\xc9\x2f\x0f\x34\x35\xeb\x2e\xfe\x7a\x55\x7a\xda\xaa\x78\xab\xb9\x3a\xb9\xc0\xa6\x51\xf4\x07\xf1\x6e\x8d\x9f\xcc\x5a\x6f\x86\xb6\xbe\xc5\x0d\x13\x26\x6e\xa4\xbb\x5b\x6b\xe7\x5d\xf9\x97\xd9\x47\x11\x0d\xc0\xc5\x00\x1a\x53\x23\x54\xbc\x28\x8a\x4d\x32\x55\x8f\x95\x83\xe2\x77\x01\x9d\xaa\xaf\x29\x14\x2b\xf0\xa4\xab\xf8\xfa\x2b\x14\x0b\xfa\x9a\x98\xe4\xc9\x51\xa8\x2d\x9c\x8c\x29\x21\xeb\x29\x14\x9b\xf4\xbc\x93\xf7\x22\xab\xf2\x4a\x44\xf7\xda\x14\x1f\xf9\x7b\x69\xfd\x2f\x8d\x84\xd7\x9b\x83\x22\x56\x8e\x99\x36\x0a\x86\x1f\x4e\xb5\x31\x4e\x27\x64\x92\x02\x9b\x2b\xf5\xbb\x7f\x85\x36\xad\xe1\x21\x94\xb2\xed\xb6\xf8\x83\xcb\xc9\x2f\xc5\xaf\x56\xcc\xaf\x4b\x6a\xaa\xcf\x85\x4c\xae\x6f\x4b\x30\xe5\xec\x00\x2a\x8a\x77\x2c\x6a\x98\x1c\xff\x13\xe1\xe9\x77\x40\x16\x20\x8f\x4b\x9a\xc7\xb3\xfa\x4d\xd7\x9c\xcd\xf3\x82\x83\x2b\xcc\x14\x91\x4d\x1b\x06\x14\x95\x35\x1c\xb1\xda\xf9\x5d\x8c\x7e\x3d\x71\x3c\x18\x78\x6a\xac\x77\xfb\x12\xa3\x6c\x44\x84\x8b\xa3\x79\xb3\x65\x05\xc7\x47\x48\x7d\x61\x87\x94\x7c\x02\x06\x79\x80\x4d\x78\x5a\x9f\x1d\x85\x00\x85\x4a\x07\xa5\xee\xa0\x11\x65\x7a\xfe\xf8\xf0\x47\x52\xe5\xc7\x17\x82\xef\x47\xc9\x55\x61\x0a\x41\xf4\x30\x66\xc5\xae\x37\x58\xa6\x4c\x3e\x1d\x4e\xc8\x77\xdb\xf0\x84\x55\xda\xbb\xc5\x15\xbb\x97\xa1\x17\x60\x68\x87\x44\xa0\x14\xeb\x8f\xfc\x1f\xb2\x61\xc2\xf3\xf2\x42\xc1\x8b\x41\x55\x5f\x85\x5d\xdc\xbf\x30\x9a\x87\xc4\xfa\x05\x9b\x0b\x83\x37\x49\x1c\x36\xde\x0f\xc5\x0c\xc7\x17\x3a\xfa\xfa\x64\xfa\x94\xa4\x37\xe9\xa3\x1a\xf1\x3b\xfe\x44\xd9\x1e\x19\x7d\x83\x7e\xbe\xa2\x65\x50\x21\x02\xea\x99\x5e\x7a\x8b\xd8\x1c\x96\xe4\x95\x08\xbc\xfd\x2b\x1d\x4c\xdf\xe0\xf7\x08\x60\xf8\x3e\x82\x8c\x05\x7d\x47\x69\x0c\x18\x6a\x58\xc6\x95\x64\xfb\x62\xc6\x37\x76\xe7\xd3\x8a\x35\xc5\xe7\x94\x66\xf6\xb8\x56\xa5\x97\x93\xba\x2c\x2d\x3d\xf1\x36\x32\x64\xcc\xdb\x24\xcc\x64\x57\x5d\x0e\xe7\x08\x2d\x04\x57\xff\xc5\x69\x79\x30\x58\xa0\x35\x3c\xcf\xe6\xf8\x3f\x82\xd9\xc8\x86\x53\x59\xf3\x87\x97\x52\xca\x96\x42\xb4\x05\x49\x03\xb4\x07\xb5\xe0\xd6\x24\x7f\x5b\x09\x8b\x4e\xf7\xcd\x3b\xa4\xee\x9f\xc3\xbd\xaa\xfe\x52\xd3\x64\xa5\x7e\x11\xab\x2d\x91\xe4\x71\xb9\xea\x52\xe0\xaa\xf6\x06\xee\x2e\x09\xf3\x12\xaa\x22\x62\xcf\x31\x8e\x87\x83\xfe\x8c\xf2\x95\x22\x6d\x56\x96\x7e\xbf\x13\xa3\x75\x2c\x2c\x16\x7d\xb5\x96\xc7\x35\x16\x5d\x23\xff\x50\x5b\x37\x90\xe1\x36\x19\xa0\x9b\x18\xbb\x83\xff\x6c\x70\x4d\xf8\x87\xfb\x19\xc8\x37\x8d\x98\x50\xc0\x9e\x80\x6b\xa2\xaa\x61\x50\x24\x98\xed\x91\xb4\x73\xfc\x07\x27\xcb\x77\xe3\xe3\xe3\x8b\xe3\x56\xd4\xba\x71\x97\xc4\x1e\x41\x69\x96\xb9\xb4\xf4\xa2\xe3\x5d\x5d\x62\xdf\x8b\x07\xc2\xc3\x43\x2f\x41\x84\x07\x54\x54\xe4\x3b\x34\xe4\xa6\x87\x76\x87\x62\xde\xdc\xac\x56\x77\xbb\xae\x5f\x36\xc7\x29\x88\x8a\xa7\xdf\x72\xba\x2f\x42\xad\x95\x89\xa5\xc4\x06\x3f\x22\x91\x8c\x97\x09\x6e\xbb\x32\xe5\x98\xea\x6d\xbf\x87\x8d\xca\xfb\x59\xbf\xa9\xf9\x0d\x4d\x99\x88\x87\xf4\x1e\xb5\x3c\x36\x5a\xea\xc5\x13\xfc\xc5\x69\x39\xbd\x70\x99\x65\x86\xc7\x00\x12\x61\xe1\x94\x70\xbc\x18\xa6\xcb\x2d\x61\x50\x49\xbb\x94\x4f\x29\xa8\xf3\x6c\xb7\x26\xb8\xb6\xf1\xfd\x75\x75\xba\x4b\xa1\x06\x5e\xb8\xdc\x1b\x3c\x60\x07\xc7\x20\x1b\xae\x2e\x07\xd0\x41\x43\x51\x78\x75\x05\xa7\x7d\xc8\x9e\xe5\xb9\x17\x8d\xcf\xe6\xb1\x3d\x8a\x32\x70\xc9\x91\x5e\x1f\xe7\xa4\xfa\xad\xf2\x36\x44\x0c\xe4\xba\x8a\x5d\xf5\xed\x65\x99\x6b\xeb\xf7\x96\x01\x80\x14\x70\x01\x54\x01\x14\x36\xc0\x7a\xdf\xc2\x4d\xe1\x77\x1f\xb7\x38\xe0\x58\x98\x62\x3e\xb4\x97\x34\x84\x85\xcc\xf6\x8e\x3a\xf7\xbf\xf2\x6f\x75\x39\x2b\xdb\x93\x29\x27\xfa\xe9\x60\x6d\xaa\xc8\x52\x91\x80\xa5\x9c\x24\x47\x82\xf7\x93\xa1\x37\xea\x54\x2d\xdc\x8f\xc4\xe5\xcf\x75\x7b\x26\xc3\xd5\x75\x4b\xb3\x94\xb8\xa4\x4d\xef\xb4\x69\x83\x4d\x91\x48\x25\x10\xf5\xf5\x39\x27\x3d\x9d\xd9\xf5\x8b\x36\xed\xf1\x52\xa3\xb2\xa7\x82\x3a\x49\x73\xe7\x29\xfd\x0a\xec\x2c\x38\x71\x41\x6a\xa0\xf0\x10\x19\xd8\xeb\x5e\x7b\x04\xc0\x28\xd7\xc1\x06\x11\x27\x2d\xed\x37\x6f\x32\x85\xc8\xea\x63\x5f\x8e\x76\x49\xdf\x9a\xce\xe2\x3f\x16\x8e\xcb\xe8\xf8\xf6\xac\xa3\x9e\x2e\xdc\xb1\x48\xfc\x09\xd0\x25\xee\x8d\x75\x90\x26\x7d\x20\x71\x43\x93\xb0\xea\x2b\x1b\x82\x07\xe0\x44\x9b\xe4\x07\x26\x7d\xfa\xb2\xa1\xf3\x6c\xae\xcf\x45\xc3\x70\xa8\x51\xa1\x03\x6a\x9d\xcb\x11\x26\x87\xb0\x58\x61\xcf\xb4\x2f\xca\xb4\x28\x6a\xd6\xaa\x08\x3c\x71\x58\x9a\x2f\x7a\x8a\x2c\xd1\x9f\xe5\x4e\x72\x4b\xae\xbe\x7f\x45\x73\x1b\xe9\x15\x35\xdc\xe2\x76\x21\xed\x0d\xa8\x13\x64\xfc\xb3\x68\xc9\x1b\xe6\xab\x2a\x70\x79\xa5\x05\x46\x29\x64\x5a\x18\x5c\x2c\x9c\x17\xb6\x3e\x1c\xc7\xc1\x8b\xf1\x13\xb4\x9f\x0a\xf9\x48\xc0\xb2\x23\x89\x9b\xc1\xf2\x91\x2c\x54\x0f\x48\x79\x54\x17\x8d\x8a\x0f\xcd\xd3\xfb\x1d\xb8\x76\x38\xfb\x81\x6f\x78\x59\x60\x97\x70\x43\x99\x23\xe2\xed\xda\xd0\x8f\xfe\x8f\xf7\xab\xe8\x7b\xa1\x43\xd6\xe0\x22\x77\xdf\x9a\x19\x6d\x05\xaa\xc8\x8d\x17\x69\x9b\x84\x69\xba\x8a\x28\x7a\x3c\x39\x24\xca\x43\xfb\xb6\xd3\x9e\xb2\x59\xbd\xf6\x2e\xab\x2b\xdc\x5f\xb5\x36\x50\x41\x7f\x4d\x69\x7b\xd1\x97\x44\x00\xa5\xd6\x95\x16\x7f\x2e\xa1\x0d\x5e\x80\x5e\x12\x55\x4c\x2b\xb2\x3f\xfb\x07\xa0\xe8\xf0\x28\x69\x48\x4b\xba\xc2\xf3\x69\x2d\xef\x0c\xc1\xe9\xec\x29\xf9\x85\xe9\xec\xe4\xed\x50\xe0\x48\xd9\x93\x01\x9a\x7f\x84\xbd\x33\x5f\x12\xa3\x99\xc6\x60\xa4\xcf\xd0\x38\x79\x5c\x6d\x14\xa9\xe1\xea\x00\x86\x6b\x33\x88\xf9\x8c\x8f\xcf\x65\xe1\x78\x0b\x3b\x0e\x6b\x77\x67\x6c\x54\x6d\xf4\xab\xfe\xb4\x25\x0c\x1d\xda\xe9\xab\x29\xf4\xbb\x5c\xe3\x28\x19\x4e\xf7\x17\x04\x82\x49\x75\x9e\x5f\xe0\x20\x42\x48\x30\x1f\xb2\xa1\xe0\x50\xd1\x57\xd6\x45\xa6\x4f\x25\xd3\x3e\xa7\x8d\x26\xc2\x69\xf0\x43\xc5\x69\xca\x52\x29\x04\x0d\x42\xe0\xe9\x3a\x83\xe9\x5a\x02\x9f\xb1\x00\xd5\x7c\x88\xd6\x86\xe6\x24\x56\x61\x51\x0a\x6b\x8a\x02\xb1\x6a\x2f\x36\xf6\xd0\x57\x42\x51\x69\xcf\xca\x3a\x29\xb7\xfa\x4c\x15\x0e\x45\xf2\x45\x3f\x2f\x1a\xae\xa3\x7a\x58\xe8\x61\x88\x7c\x61\xc2\xcc\x78\x54\x91\x88\x26\x5e\xfa\x95\x22\x6f\xda\xf1\x76\x27\x97\xc3\x34\xfa\x40\xcc\x46\xc4\xa1\x39\x5f\xdb\x76\x01\x23\xda\xf6\x85\xa2\x66\xdf\xc1\x9a\x06\xb1\x08\xdd\xd5\xe2\x9b\x31\x28\x8f\xa3\x48\x48\xf1\x8c\xd8\xac\x30\x09\x5c\x7f\xa2\xbf\x5b\xf4\x96\xf3\xbc\xec\x31\x9f\xdf\xb3\xd7\xf4\xf0\x12\x7e\x9e\xc0\x70\xe9\x31\x48\x14\xbc\x74\xf8\xce\x11\x3e\x2e\xff\xe6\x87\x02\x6a\xdd\x20\x3b\x95\x52\xe8\x0c\x1f\x55\x4f\xac\x09\x42\x90\x43\x12\x8a\xa0\x9b\xec\xf4\xe2\x65\x5f\x63\xa7\x15\xf4\xf0\x7e\xef\x29\x4b\x45\x98\x88\xee\x38\x7e\x60\x10\x5a\x7f\x58\x03\xc3\x1d\xea\xb3\x22\x1a\x32\x5b\x84\x3a\x85\xc5\x5e\x97\x7d\x29\x23\x6d\xd5\x76\x53\x13\xc9\xff\xaa\xdd\xbc\xb6\x2c\x15\x2e\xd1\xde\x1d\x0c\xa0\xd1\x5c\x5e\x6f\x00\xf1\x98\x03\xd3\x1e\x7f\x97\xac\xcc\x26\xc2\xdc\xb7\x80\x2a\x9e\xed\x94\x96\x51\xbd\xab\xb5\xb8\x47\xc2\x31\x11\x9d\xe9\x30\xdb\x59\x6d\x58\x77\xef\x93\x4f\xcc\x23\x26\x0c\x9f\xe5\x6c\xb4\xa8\x99\x0a\x8e\x34\x35\x81\xb3\x12\x54\x86\xbf\xd1\xdb\xc2\x53\x92\x92\xf7\x89\xda\x0d\xbc\x25\xd9\x6e\x7a\x5a\xbd\x55\xf5\x98\x6d\x6f\x18\xc2\x4b\xe8\x75\xf3\x52\xb6\xf8\xf3\xe3\x11\x87\x33\xf7\x98\x66\x3c\xf9\x79\x97\x98\xa7\xd6\x4c\x07\xd5\x0d\xa1\x87\x57\x0d\xda\xe2\x4f\x2b\x68\xda\x8f\x3f\x22\xa4\x61\xfb\x32\xdd\x3e\x5a\x87\x67\xd8\x09\x85\x5a\x7c\x20\x55\xa6\x80\x2e\xee\xf8\xfd\x48\xa6\x1d\x57\x8b\xee\xa2\x1c\x53\x25\x00\x82\x1c\x8a\x03\xb9\xb3\xfc\x15\x11\x47\xd7\xc6\xf7\xd8\xbd\x65\xd4\x4a\x09\x6f\x3a\x8b\xb9\x51\xfc\x45\xba\x94\x59\xf1\xb0\xcd\x2e\x74\x77\xeb\x5b\x71\x3b\xfe\xb4\x93\x6e\xde\x7e\x8d\xc1\xc8\x8a\x81\x2d\x35\x4d\xd3\x99\x8f\xb3\x3a\x5a\xd3\x86\xcf\x6f\xb8\xc0\x90\x8f\x5b\x61\x25\xad\x08\xa0\x54\xcd\x44\x77\x7e\xcd\x7c\xcd\x85\xff\xab\xc0\x5c\x90\xa3\xc7\x55\x57\xa5\xc1\x25\xba\x26\x71\x38\xf0\xe0\x42\xba\x2c\xe7\x54\x25\x92\xd7\x8f\xfc\xc6\x50\xc4\x77\xbe\x48\x15\x80\x43\x5d\x52\xc3\x67\x53\xd8\x97\x64\x84\x0e\xfa\x88\x48\xd7\x71\x04\xd2\xc2\x2e\x13\xe5\x78\x03\x47\xc3\x2f\x01\x75\xed\x76\x60\xd8\x01\x8a\xbb\xe0\xaf\x67\x31\x60\x6d\x56\x9a\x0f\x0d\xab\xeb\x56\xde\xeb\x88\xd6\xd4\xf6\x8e\xea\x97\xe0\x92\xe2\x9a\x68\xf2\x18\x95\x79\x95\xea\x36\x96\xc5\x3f\x5f\x68\x4d\x6b\x11\xf8\x3b\xf0\xcf\x0a\xd5\x43\x4f\x36\x3c\x57\xc5\xd1\xa8\x6c\x9b\x1b\xd9\x36\xcf\xda\x7a\xf8\xb1\xb0\xf9\x19\x34\x50\x91\x9b\xf8\x33\x3a\xf6\x8a\xc2\x51\x9e\x7a\x70\x2a\xf2\x60\xb2\x0c\x0b\x51\x22\x52\x88\x25\x53\x72\xbb\xf0\xfa\x6c\xaa\x3e\x32\x2c\xc0\x33\xae\xed\x97\x76\x9b\x95\x05\xd4\xac\x2c\xe6\x8c\x46\xaa\x8b\x36\xe3\x8f\x73\xfa\x74\x32\x71\x89\x36\x65\x2b\x6d\xc4\x4c\xa8\xa3\x5d\xf8\x8f\x57\xdf\x4b\xef\x58\x48\x4e\x23\x5d\x0f\x5a\xa2\xcc\x76\x39\x0a\xa4\xcd\x66\xa8\x55\xb1\x80\xc1\x15\x4d\xe3\xb2\xa7\x65\xf9\xef\x1b\x77\x41\x00\xa0\x2a\xef\x06\x57\x5d\xee\xff\x94\x56\x2d\x30\x1a\x42\xe7\x40\x43\x88\x05\x87\xba\x10\x13\x6e\x2b\x53\x0d\x12\x53\x4e\xc5\xb2\x37\x92\x7c\x7f\xec\xd1\xfe\xf2\x29\x2e\x6d\xec\xd1\x94\x19\x64\xd8\xcb\xe8\x79\x06\x78\x2b\x3d\x0a\xa1\xfe\x0e\x7e\x40\x2d\xf7\xf4\x58\x21\xb9\xe0\xf2\xf9\xd2\xe5\xec\x43\x19\xd1\x16\x3d\x36\x42\xdd\x70\x77\xa9\xb2\x1d\xe2\xa6\x1c\x60\x54\xb6\xeb\xc1\x2b\xde\x14\xd5\x43\x66\x85\x07\x32\x91\x02\xcf\x24\x5d\xbd\x6f\x5a\xd9\xef\x58\xe1\x01\x00\x13\x4a\x00\x19\xf5\xcd\x34\x54\x44\x94\x0b\x82\x13\x97\xac\xcc\xeb\x47\x43\xf8\x2a\x48\xde\x22\x97\x7b\x01\xfa\x7d\x36\x83\xaf\xe4\xdf\xc7\xbb\x16\xb9\x1b\x61\xaf\xb6\x82\x83\x87\xa3\x54\x16\x0b\xdc\x21\x43\x20\x7b\x1d\xc4\xa8\x95\xaf\x0e\x42\x90\x42\x26\x72\xe2\x6b\xeb\x27\xd4\xd3\x24\x0e\x2f\xc2\xb7\x40\x71\x52\x6b\x64\x1f\x05\x15\x86\xb6\x52\x14\x88\xbc\xb4\x4c\x8c\xdb\xdc\xce\xc0\x70\xa8\x8b\x1a\x63\x71\x10\x2e\x55\x1b\x52\x86\x67\xf0\x88\x89\xaa\x63\x42\xd1\x23\xa1\x1d\xff\x8a\xea\xa9\x6b\xf7\x29\x04\xfd\xd4\x3d\xc7\x7d\x04\x92\xb0\x22\x96\xe7\x4c\x87\xf3\xaa\x9b\x00\xc6\x3d\x9a\x0f\x46\x31\xe3\x59\x7b\x21\x6a\xec\x04\xcc\x76\x1b\xb1\xc0\x6e\x9d\x80\x14\x49\x5b\xce\xe9\x30\x11\x9f\x1f\x36\x4e\xec\x47\xc2\x48\x56\x00\x06\x69\x90\x93\xf9\x20\x47\x6e\x5c\xc3\x4c\xd5\x9c\x1d\x77\xf0\xce\x90\x91\xa5\x06\x4c\x53\xf1\x52\x47\xbd\xd2\x44\xd4\x86\x57\x9e\x9f\x69\xe8\x3c\xa6\x75\x4b\x88\x82\x13\x00\xd0\x75\x58\x34\x5f\x40\x8c\x20\x2d\x12\xd5\xb2\xc9\x33\x7d\xdd\xc8\x92\xce\xd8\x60\x10\x00\x24\x30\xca\x20\x36\xc6\x59\x98\xb6\x2a\xe0\xbe\x5c\xe5\xe2\x14\x30\x2f\x10\x0c\xd2\x60\x8d\x53\x1c\x04\xc2\xf9\xfd\x7b\x0d\x87\xc7\xa6\xfb\x99\x44\x64\xdb\x41\xce\xcb\x40\x33\x2f\xc8\xd8\x52\x4c\xc0\xa5\xd7\xec\x81\xf0\x7a\x67\xb8\x5d\x1d\xab\x64\x35\xa7\x53\xc2\x9d\x15\x22\x8f\x4a\x72\xe6\x79\xbe\x39\xc4\x6d\xa3\x89\x28\xac\xed\xe1\x24\xf5\xfc\x9e\x6d\xef\x31\x25\x3d\x51\xe5\x43\x1a\x66\x70\x7f\xb7\xcd\xdb\xc0\x85\x06\xc9\x62\xc6\x3f\xb7\xf5\x9a\x0c\xfb\xb7\xb7\x11\xcb\x3e\xfe\x1b\x98\x79\xab\xbc\xb5\x0c\xf6\x88\x23\x83\x8c\x4d\x99\xc8\xf6\x56\x41\xc2\x9e\xfa\xd2\x37\x0d\xe7\xc4\xc3\xcb\x4c\x05\xd0\x6f\xf9\xb9\x30\x97\xe6\xad\x09\xb3\xb1\x25\xae\x7a\xa2\xc3\xe7\x89\xee\xe3\x2c\xdf\x62\xfc\x62\x94\x41\xbd\xc2\xff\x6a\x9e\x91\xaf\x05\xff\x66\xb2\x22\x78\xfd\xe6\xf7\xe7\xa5\x3e\x94\x69\xae\x4d\xb3\x1e\x79\x20\xfc\x4f\x30\xa9\x80\x26\xd6\x8d\x8a\x94\x3f\x4d\x43\xe5\x8e\xc5\xab\xc0\x2c\x83\x43\xa1\x40\x93\xa4\x83\xf3\x4c\x31\x60\x75\x39\x5c\x1b\x3c\xb1\x9a\xcd\x64\x46\xf3\x7a\x3f\x80\x42\xfb\xd9\x5c\xc9\xa1\x6f\xc5\x11\x6e\xd1\xa3\xfd\x08\xf9\x36\xf9\x3c\x24\x09\xf4\xa3\xcb\x01\xe6\x21\x6b\xab\x08\xe3\x27\xb8\x65\x8f\xb4\x4a\xb3\x26\x50\xbe\x08\xba\x60\xc2\x51\x1e\xc7\xc5\x45\x46\x5d\x9b\x2e\x90\xbf\x1c\xb2\x18\xef\xc8\x16\x05\x80\x5e\xec\x80\xef\xc9\xac\xfc\xe1\xe9\x7e\x09\xc7\xb4\x5c\x82\x93\x3a\xf9\x8c\x31\xcd\x43\x1a\x48\x46\x56\x69\xd9\xeb\xbe\x88\xb0\xe3\xac\xc5\x14\x0f\x80\xe5\xeb\xf7\x63\xdf\xf2\x19\x5a\x00\x19\xf5\xf6\xd1\xd3\xb3\xd9\xf5\xce\xda\xd9\x88\x7a\xea\x23\xcf\xb7\xf0\xbc\xf4\x77\xe2\x7c\xd3\xbb\x37\xdf\xc6\xeb\x9f\x01\x00\x0a\x2f\x29\x0e\xb8\xbd\x15\xc6\x04\x94\xe0\xe3\x2a\x07\x3d\x7e\x82\xf3\x06\x06\x41\x32\xf7\x31\x6a\x4f\xc9\x47\xb0\xde\x14\x2a\xe1\xd1\x2f\xde\x17\xd7\xe9\xf0\xdd\xb3\xc4\x97\x71\x2b\xdd\x44\xbc\x7e\xa4\x19\xd8\x3a\xa3\xbd\xdc\xa0\x3d\xb9\xcc\xa1\xef\x47\xae\xdc\xa8\x88\x3d\xa2\x4f\x43\xd9\x02\x40\x03\xe1\x0c\x24\x44\xf2\xe9\x5f\xfe\xba\x29\xce\xd5\xa4\x4e\xc9\x8c\x62\x01\x65\x96\x38\x71\x8b\x29\x97\xdd\x2e\x1a\xde\xd2\xc4\xbf\x12\x8e\x6a\x52\xf1\xc7\xb3\x86\x97\xd9\x9f\x5d\xbe\x52\x18\x92\x19\x84\xa2\x6d\xdf\x5c\x7a\x82\x96\x7c\x2f\x0d\x03\x69\x2d\x21\xc8\xa8\x51\x57\x22\x1c\x31\xa2\xad\x71\x37\xae\xea\xb1\x25\xa8\x29\xca\x9a\x15\x41\x90\xaf\xe9\xa6\x5c\xc3\xe1\xbe\xff\x9d\x78\xa4\x33\x7b\xb9\x78\x1c\x11\x90\x5f\x98\xee\xa5\xb1\xd5\x26\x3a\x70\x63\x21\x1f\x72\xd9\xd2\xc3\x03\x04\xc2\x4f\xfb\x9a\x0e\x5b\xdf\x1e\x2c\x36\xc9\x92\x5c\x6c\xc4\xbc\xec\x79\xb9\x6a\x67\x1a\x5a\x93\x46\xc0\x5d\x23\xf2\x46\x2d\xdd\xda\x02\xa1\xa5\xda\xab\x9d\x34\x67\x3b\xaa\xed\xa8\xac\xef\x88\x82\x49\x47\x89\xc6\xad\x3b\x35\xad\xf8\xed\xb0\x77\x06\xbb\x81\x50\x0d\x00\x34\x70\x80\x9a\x4d\x46\xc2\x48\xf8\xd5\x8e\x68\xef\x51\xde\x4f\x2c\xfc\x00\x23\x66\x6a\x30\x40\xa9\x4a\x04\x00\xcd\x49\x1d\x76\x22\xc2\x87\x1d\x7a\x4a\x98\xbe\x09\x2f\x10\xe3\x4b\xed\xa4\x5d\x0f\x87\xb8\x08\x5a\xff\xea\x29\x5b\x28\x7d\x17\x0f\x82\xd5\xf3\x0d\xf1\xff\x57\x79\x84\x57\xea\x8d\x76\x62\x64\x6b\xfb\xc6\x97\x1f\xee\x58\xbd\x14\x46\x88\x39\x68\xfe\x82\xcb\xb5\x80\xc5\xc3\x48\x08\x5b\x26\x4e\x97\x07\xb3\xc7\x48\x19\xda\x5b\x4f\xf3\xd1\xe8\xa7\x9e\x3d\xfb\xa8\x10\x4a\x2f\xf7\x1d\x4f\xdd\xaf\x71\xc5\xe7\x80\x8d\xf7\x0c\x2c\x25\x06\x02\xea\x19\x00\x64\x94\x30\x9d\xe5\xdd\x5a\xd1\xfd\x15\x94\xe2\x2d\xff\x47\x45\x2f\x9f\x84\x2f\xf0\x3b\x6f\xd7\x43\xe2\x74\xd2\xbb\x79\x1b\x25\xe6\x9b\x1b\x65\x5a\xf3\x96\xcf\x5d\xe1\x98\xfc\x79\x43\x47\xf6\x0c\x34\x65\x3f\xe7\x79\x93\xc7\xf7\x81\x64\x4d\x12\xac\xd7\x93\x20\xad\x6d\x28\x35\x0e\xd6\xfb\x77\xd0\x40\x78\x55\xe7\x7f\x78\xde\x07\xaf\x8e\xbd\xe9\x10\xd3\xef\x5a\xcd\x76\x4a\x99\x12\xdb\xad\x48\xab\x99\x81\x62\x94\x84\x7e\xcb\x60\x4b\x0f\x1b\x78\xc7\xe7\xf8\xe7\x7d\xfd\x5a\x3d\x1f\xe1\x8e\x4b\x18\x79\xfc\x38\xe0\x37\xe6\x18\x14\xf3\x62\xed\xa5\x6b\x4d\xc1\xe2\x98\xd0\xa0\xd2\x95\x98\x08\x67\x10\x1e\x5a\x0b\x52\x20\xa6\xeb\x24\xfe\xcd\x13\x84\xb6\x05\xa7\x53\x00\xc8\xa8\x44\x33\xd4\x6a\x64\xd9\x2e\xf9\x36\x05\xf0\x14\xc8\x97\x41\xb8\xf7\x9b\x85\x6c\xa8\x2d\x9e\x15\x64\x38\x17\xb2\x05\x5a\x2b\xc2\x04\x4c\x78\x77\xc9\xa1\xc6\xae\xef\x52\x01\x60\x20\x4f\xd0\x84\x1e\x0c\x7f\x82\x13\x1a\xf9\xcb\x1c\x81\xd7\xae\x9d\x3c\xe7\xb5\xa4\x56\xda\x39\x51\x1a\x85\x37\x0e\xe9\xf5\x52\xf4\xab\xfd\x71\x49\xd4\x24\x02\x1e\x9b\xb3\x00\x03\x61\x00\x04\x69\xf9\x19\xb2\x46\x6b\x7c\x7c\xf9\xe2\x2e\xbd\x09\x3d\x2c\x12\x56\x63\x34\xfe\x4d\x90\xa3\xe7\x84\xe0\xcb\xd4\x79\xd3\xed\xd4\x5b\xee\x7d\xab\x25\x9f\x87\x3f\x3e\xfb\x1f\x67\x7d\x56\x95\x67\x3d\x1f\x86\xa2\x3f\xed\x79\x4d\xbe\x33\xb2\xb1\xb1\x9c\xd2\xe2\x67\x48\x67\xcf\x43\xf8\x32\x77\x6d\xba\x7e\xe5\xf0\x97\xc3\x23\x18\xe8\x4f\x11\xd9\x61\x6c\x37\x95\x0e\x10\xdd\x26\x1b\x76\x26\xaa\x7a\x58\x45\x4e\x79\xd7\x8f\x69\x1a\x4f\x81\x93\x7e\x1e\xb9\xa7\xe1\x83\x11\x8f\xd2\x96\x7c\x56\x47\x6e\x86\x69\x39\x5f\x47\xf6\xc7\x1f\x76\xca\xd7\x33\x9c\xe1\x04\x45\x04\x6e\xbe\x16\xc6\x46\x46\xcd\x9a\x4a\xfd\xc0\x1c\xf7\x19\x13\xff\x77\x8b\xb3\x7b\x5a\xbe\x1b\x0a\x86\xfe\x05\x26\x1c\x8e\xbb\x29\x0b\xda\x10\x5d\xb3\xc0\x62\x98\x7c\x25\x04\xf5\x67\xad\x41\x1d\x1f\x99\xde\x5b\xb0\x70\x92\xe0\xf3\x97\xfd\x2f\x72\x90\x50\xfc\x93\x9e\x9b\xb8\x7f\xb9\x39\x2d\xbf\xdb\x41\xfb\x57\xc3\xaf\xda\xe6\x1b\x8b\x7b\xbb\x36\x97\x22\xdc\xe7\xef\x98\xff\x82\x00\x39\x25\x1c\x45\x0e\xa2\x62\x79\x70\x21\x7d\x68\xe5\xdc\x84\xc3\x3b\xf1\xe4\x9e\xc7\x01\x8b\xc9\x8c\x8a\x1b\xd9\x08\xd0\xab\x57\x0a\x43\xcc\x67\x2c\x58\x3d\x7c\xef\xb6\x14\xa2\xe9\xa1\xbc\xfa\xd9\xc5\x77\x31\xda\x77\xaf\x81\x6d\x41\x76\x99\x9d\xfd\xbc\x6b\x41\xe3\xc5\xc1\x3b\x0a\x41\xf6\x4d\xda\xd8\x0f\x1b\x1e\x9c\x69\xbe\x3a\x1b\x67\xd2\xcc\x7f\xc8\xd9\xe5\xbf\x03\xdb\x10\xc4\x1e\x8d\x3b\xf8\x57\x3a\x7a\x9d\x1c\x59\xba\x93\xd2\xfa\xfe\xe6\xdf\xb3\x4f\xb2\x9f\xac\x1a\x0a\x16\x8d\xca\x76\x64\x3a\xb4\x3c\xbb\x56\x4a\x8b\x42\xb7\xdd\x01\xc2\x23\xe6\xe1\xae\x66\x91\x97\x20\x60\xe4\x07\x01\x8f\x1c\x90\x0f\xa4\xcf\x15\xc2\x8a\x94\xec\x0b\xac\x39\xa6\x73\x2b\x90\xaa\x9e\x65\x8a\x24\x1a\x44\xac\x62\x7d\x57\x6d\xc5\xcf\x9a\xb1\x5b\xe8\xe1\x67\x41\x67\x3c\x7b\xb4\x52\x10\xa4\x65\x24\x9d\x03\x26\xbf\xc8\x58\xd0\x37\xe9\xd3\x96\xcd\x43\xb7\x60\x5d\x55\xdb\xa7\x9a\x52\x4c\x7f\x4a\x91\x8f\xf1\xc6\x3a\x36\xbb\xfc\x93\x9e\xb7\xef\x58\x20\x28\x35\x79\xfc\xd7\x79\x1e\x55\x34\x4d\x75\x13\xea\x69\x6d\x7a\xd3\x5a\x40\x7e\x7c\x49\x7b\x8c\x79\xb5\xf9\x9e\x2e\x05\xe8\x87\x34\x00\x10\x3a\x90\xb8\xa5\x10\x5a\x43\x34\xf5\x6d\x6c\xeb\xce\x50\x9b\x2c\x9f\xf6\x87\xc1\x20\x93\xb0\x74\xec\x88\xf1\xfb\x2f\x6f\x87\x24\xe5\x49\x08\xb0\x4c\x9d\xe1\x10\x64\x6e\x3c\x88\x03\xd3\xaa\x85\xd9\xaf\xac\x38\xd9\x97\xed\x3e\x5c\xe4\x7a\xe6\xaf\xe9\x14\xeb\x5f\x8c\xef\xf5\x39\x45\x29\x34\x49\x55\x9e\x97\x3d\x6f\x58\x97\xc6\xdb\xb7\xa0\x84\xdc\x85\xab\x68\x7f\xab\x59\xaf\xdd\xdc\xd3\x1e\x2b\x71\xa3\xc1\x23\x13\x6c\x12\x94\x04\xf8\xd2\x52\xca\xc6\xfd\x55\x90\x34\xee\x17\xf9\x10\x01\x24\x6e\x9f\x4b\x10\x68\x92\x48\xae\x49\x79\x90\x1d\xcf\x22\xa7\xca\xde\xb8\xb0\x02\x6f\x21\x0c\x50\x5e\xf7\xf0\xed\x0b\x41\xa0\xdd\xd3\x79\x59\x0f\x73\x13\x73\x77\x58\xca\x5f\x23\xf1\x0a\xec\x15\xd9\x7e\x7d\xe6\x9b\x81\x5e\x3f\x43\xb5\x6a\x3a\xc5\xee\x11\xd4\xea\x2d\xf6\x7a\xe3\x8a\xc7\x30\x74\x5f\x5b\x69\x41\x14\x17\x50\x8f\xd9\x1e\x2d\x50\xe0\x3b\x91\x23\x5d\x4b\xdf\x73\xd5\x4d\xe8\xb3\xe7\x69\xcc\x32\xd7\x7b\x67\xc5\xe2\xa1\xc7\x85\x4a\xc4\xf4\xdc\xc4\xd7\x34\x6f\x46\xec\xee\x2a\x84\x60\x81\x70\x8d\xdf\x40\x1d\xc6\x59\x99\xc2\x2d\x02\xc3\xd1\x94\xf8\xcc\x51\x62\x10\x53\xa5\xae\x7f\x2f\x26\x1d\xe5\x2e\xb4\x45\x6d\x04\x41\x4c\x0a\xb5\xa4\x9e\xcf\x44\x74\xc7\xeb\x2d\xf7\x7b\x37\x95\xd2\x67\x7e\x45\x39\x7f\xa7\x4d\xee\x6e\xf0\xf8\x0b\x36\x41\xf0\x9a\xec\xc6\x23\x54\x88\xff\xda\x2a\xb5\xa5\x9e\xc7\x5a\xf0\xce\xbe\x97\x19\x86\xc4\x49\xe9\x60\x57\x40\xdb\xb3\x4a\x32\xbd\x01\x16\xdd\x82\x7a\x4e\x18\x32\xaa\x80\xd1\xf4\x9b\x87\xdb\x63\xa2\x6f\x17\x94\x65\xfb\x96\x0e\xbe\xee\x7c\x97\x5f\x08\x6a\x4f\xe6\x15\xa3\xa4\xeb\xeb\xf7\x17\x35\x89\xcd\x05\xd6\x2a\x92\xb1\x65\x39\x25\x0c\x9d\x6a\xc1\xec\x59\x04\xa5\x13\xb7\x49\x35\xff\x89\x00\x70\x01\x2a\x9e\x5e\xfb\x6c\x00\x35\x37\x15\xf4\x62\xd6\xd6\xaf\x22\x67\x49\x13\x32\xca\xe2\x7b\x3f\x0c\xa8\x41\x7a\x77\x52\x4e\x2a\xc9\x7d\xa6\x78\xea\x1f\x49\xbe\xc6\x06\x0f\xe4\x92\x48\xc3\xcc\x6f\xbe\x96\x3c\xac\xe1\xf9\x67\x1c\x0b\x96\x4d\xd4\xe4\x38\x7e\x20\x7b\xe8\x57\xd7\xbf\xa7\x66\x96\xc3\xe3\x6a\xad\x25\x30\x0d\x7c\xa1\x27\xde\x94\xe4\x3e\x7b\x91\x25\x6d\x45\x71\xf3\xad\x62\xf0\x0e\xfc\xaf\xb2\x24\x15\x37\x0e\xe7\xb1\x1d\x58\x08\x58\x11\x67\x9f\x4d\x13\x74\x6f\x65\xc9\xf3\x69\x13\x8d\xfb\x65\x50\x1e\xe7\xd8\x5a\xf1\xf3\xde\xb2\x4e\xaa\xfc\x31\xcb\x06\xc7\x9a\x45\x20\xc8\xc4\xaf\x5f\x9b\x1e\xea\xf2\x89\xaa\x7c\x5a\x62\xf7\x66\x5a\x4b\xb9\xb8\x2e\x6d\xd3\xbf\x66\x46\xdb\x3f\xcb\xee\x8e\x05\x0c\x32\x91\x41\x18\xb7\x18\xbe\xc2\x1c\xfd\x64\xb9\xfe\x91\x41\x1a\x1f\x3a\xd4\x26\x1f\x07\xb1\x0a\x7b\xbb\x0a\xa2\xa4\x23\x1c\xf9\x41\x30\x32\x81\x6d\x6c\x6f\xfb\x8d\xa0\xd6\xeb\xa7\x7c\xa6\xf2\x0d\x4d\x6a\xb0\x32\x17\x30\x8a\x1d\xf0\xa5\xe9\x53\x19\x21\xf5\x2a\x29\x7e\x46\x83\x6a\x26\x34\x50\x51\x90\x58\xc5\xc1\x9a\xdf\xdb\xb6\x01\xf1\xbb\x5d\x6f\x79\x86\xd5\x67\x63\x28\xfa\x5a\xd6\x12\x61\x1c\x82\xf7\x6c\x72\xe8\xfb\x8b\xca\xd8\x63\xca\x7f\x56\x2d\x2a\x49\xaf\x3d\x32\xfc\x0f\x1e\x25\x36\x18\x14\xf7\xef\x82\xe4\x0a\x09\xb7\x25\xeb\xd8\xe1\x80\x50\xa0\xdc\xd6\x6a\xe6\xbd\xbc\xfe\x86\x2c\xcf\x86\x11\x00\xc0\xa9\x22\x5b\x1e\x3a\x03\xae\x5b\xe2\x72\x6b\xa1\x3f\xb9\x15\x34\x83\x87\x9a\xff\x03\xe6\xf5\xb5\xe4\x01\xa4\xbe\x80\xa9\xeb\xeb\xd9\xfd\xc9\x70\x7a\x9b\x3b\xbc\x84\x7a\xfb\xde\x3f\x9f\x31\xb1\xb9\xcb\x6f\xa3\xa4\x64\xa1\x2e\x9d\xef\x32\x64\x30\xc8\x72\x89\xc0\x89\x4d\x14\x00\xbe\x1a\x01\x28\xba\xb8\xac\xa4\x46\xa8\xf6\xb3\xb9\xf7\x1d\x89\xbb\x9d\x08\x00\x40\x30\x8d\xf2\x2b\x7f\x53\x44\x97\x44\xa0\x9b\xa8\x0a\x1e\xc1\xb4\xb2\xe8\xf8\xf2\xa4\x88\x21\x89\x46\xef\x8b\x30\xd6\x53\xfe\xf5\xd3\xcb\x00\xb0\xb7\x34\xbe\x30\x5d\x36\x75\xbe\xac\x8d\xdd\xa0\x59\xb2\x58\xc0\x48\x15\x41\x3a\xa9\xb6\x91\xf7\x45\xb7\x0d\xe4\xaa\xfe\x63\x43\x9d\xb5\x9c\xd2\xc6\x3e\x30\x8b\x33\xd0\x10\x70\x12\x65\x4e\x32\xe6\x9a\xa7\xad\x15\xf0\xe3\xdf\x6f\x00\x00\x40\x06\xe1\x68\x54\xf6\xb4\xed\x62\xac\xd5\x9d\x40\x39\x76\xbb\xdd\x93\x6c\x13\x0b\x0e\xe5\x95\x27\xd1\xc6\xc8\x4b\xfb\x9f\x71\x3c\xb2\x77\xce\x29\x68\xc9\x72\x69\x14\xdf\xb1\xfb\x2e\x09\x90\x8d\x5b\x95\x2d\x09\xf3\x2e\x87\xc4\x4c\x75\x8e\x8a\x16\x27\x9e\x81\x0d\x64\x40\x30\x92\x30\x54\x39\x42\x59\x9d\x37\xbd\xaa\x62\xe5\xc3\xbf\xcd\x66\x15\x29\x2b\xda\xfb\x6a\xc9\xd3\xc7\xde\x5b\x39\xbe\x7b\x4d\x39\xb5\x7a\x41\xc4\xd2\x40\x20\xfc\x0f\x13\x5d\xeb\xf9\xe1\x3b\x60\xe1\x35\x6f\x5a\x7f\xc3\x3f\x4e\xf6\x55\xf5\x83\x05\x75\x88\xae\x81\x6d\x81\x71\x9b\xe1\xab\x69\x13\x27\x4a\x00\xb0\x34\x3b\x76\x2f\x80\x20\xb2\x6f\xd5\x9b\xdf\x9a\xb0\x82\x33\xc1\xf0\x33\x70\x75\xeb\xbb\x5a\xff\xd1\xa9\x5f\xab\x2f\x3c\x41\x09\xf0\xe0\xc9\x90\x0b\x22\xa3\xc5\xde\xe6\x0c\xec\x89\x40\x23\x81\xa7\x8e\x76\x78\x40\xd5\x31\x52\x0a\x66\x5e\x48\x15\x5b\x5f\xb2\x61\x10\x6f\x68\x67\xed\xb8\x2d\xde\x22\xbc\x43\xa0\xd4\x02\xc2\x0b\xdb\x18\x6d\xaa\xfb\x1e\xfe\x83\xee\x93\x20\xc2\x9a\xdb\xca\xb2\xb5\x45\x13\x0c\x97\x11\x25\x84\xd5\xba\xfc\x3b\x06\xcb\x81\x2f\xc6\xb1\xb7\x76\x94\x87\xee\xa5\x54\xa9\x14\x6f\x32\x87\xc1\x5d\x79\xc3\xcb\x6c\xc9\x98\xa3\x6b\x86\x53\x9c\xf0\x84\xd8\x40\xfa\xff\xc2\x3e\xf3\xab\x43\xc6\x49\x27\x35\x10\xc2\xd0\xd6\xf6\x9b\xee\x8f\x96\x76\xc6\x5e\xc5\x9b\x24\xdc\x0c\x68\x65\xbd\x09\x07\xb7\x6d\x4a\x42\xd4\xc1\x27\xec\x04\x62\x62\xa7\x1d\x08\xa2\x18\xd7\x15\x0d\xdd\x3e\x05\xd7\x2b\xf2\x5b\xf5\x12\x20\x80\x77\x4b\x96\xcb\x5e\x16\x82\xa7\x97\x3a\x4f\xf5\xf0\xc6\x24\x41\x62\xb4\x0a\x64\x20\x68\xa0\x62\x82\xe7\x9d\x31\x08\xe0\x3c\xac\x44\x3f\x19\xe1\x88\x69\xad\x37\xe5\x41\xf2\xea\xfe\x10\xf3\xa8\xc9\xe5\xee\xea\x4d\x49\xae\x26\x25\x00\x72\xfd\x87\x5a\xdc\xc0\xf0\x37\x63\x1f\xdb\x3d\x29\xdb\x03\x4a\x29\x4c\xaa\xb6\x3f\x38\x6c\x2d\x1a\x2b\xf0\x3e\x33\x02\x98\xe5\x2d\x73\x0a\x1e\x7a\x92\xe7\x67\xcb\xa8\xc4\x07\xdb\xe5\x59\xe1\x37\x01\xbf\x44\x01\x08\x92\x0b\xeb\xf3\x1b\xc0\x76\x48\x4d\x9b\xdf\xaf\x81\x17\x33\x7e\x20\x49\xb4\x1d\xd7\x1d\xdf\x88\xff\x59\x0c\xe0\xeb\xc8\x21\x03\xb0\x9a\x01\x9b\x5e\x54\x6d\xd1\x9f\xcd\x1f\x6f\x2f\xb8\xf5\x1a\x85\x52\xce\xce\xd3\xc8\xf5\x10\x65\x8b\xf9\x94\x6d\xee\x1e\xcb\x5e\xdf\x15\xde\x77\xca\x1b\xb0\x6b\xc5\x29\x37\xd1\x4b\xc3\xcc\x77\x29\x27\x7e\x4b\x8f\x62\x15\x5a\x89\xd5\x66\x42\xd5\x13\xce\x82\xbf\x83\x63\x18\xad\xae\x8b\x21\xf7\xee\xef\x2c\xb9\x40\xb7\xea\xf8\x28\xa8\x8d\x11\x0a\x78\x6f\x0a\x20\xcd\xbd\x9b\x56\x1c\xec\xb7\x16\x23\xbb\xc3\x3d\x41\x00\xca\x5c\xf4\xa6\x87\xa3\x29\x71\xd9\xa0\xc8\xae\x3f\xca\xa8\x90\xe4\xbf\x46\x88\x61\x2c\xc9\x11\xd1\x10\x1e\xd5\x52\x76\xd1\x24\xb1\x1f\xa3\x10\xc6\xd7\x44\xd9\x5c\x55\x43\xbb\xea\x40\xca\xf7\xa2\xde\x36\xd8\xed\x94\x46\x40\x9e\xc8\xbf\xda\xbe\x3d\x63\xae\x59\xda\x57\x6e\xad\x22\x3b\x7b\x12\x1c\xf9\x8c\x3d\x81\x25\x7e\x87\x25\x83\x0b\x65\x4f\xc5\x07\xdf\xf8\xb3\xc2\xd5\x12\x33\xa1\x08\xd8\xba\xa8\x7c\x82\x19\xc9\xb3\x06\x62\x00\x9b\x31\x9f\x87\x09\x27\x46\x21\x93\x2d\xd0\x3c\x5f\xf1\xa7\x99\x55\xc8\x5b\x0e\x80\xfe\x57\x3f\xd6\x17\x30\x7c\x17\x5b\x68\x08\x7b\x86\xab\x5e\x3f\x59\xfa\x92\x22\x45\xc1\x71\x8c\xc2\x4f\x06\x16\x17\xd3\x7d\x9e\xf4\xa0\x7f\x28\x3a\xd8\x86\x0d\x30\x9f\xb1\x60\x5f\xd8\x3f\x92\x82\x41\x12\x01\xdf\x06\x40\x0a\xfd\x1d\x9a\x40\xd3\xf9\x1a\x47\x4d\xa5\x67\xa0\xe4\x01\xc4\xd5\x00\xc8\x1d\x81\x09\xf7\x48\xac\xeb\xf8\x8d\x6e\xdf\x37\xdc\x3b\x77\x13\xa6\x2a\xde\xdc\x0c\xc3\x6c\x21\x67\xd7\x14\x8f\x07\x96\xfd\xcd\x44\x6e\x45\x53\x82\xc0\xe8\x42\x2d\x6a\x02\xd0\xff\x7e\x71\x01\x51\x41\x48\x79\xc7\xb1\x93\x1c\x59\x92\xa8\x40\x39\xb6\x3f\x15\xa1\x89\xf2\x6b\x44\x4e\xbd\xd8\x88\xa0\xe8\x16\x00\x30\x39\x5c\x6f\xd9\x8f\x40\x9f\x06\xfc\x36\xf7\x1e\xa3\xf0\xd3\x86\xe1\xd9\x4e\x59\x5c\x1a\x2d\xf7\x3e\xc4\xec\x69\x99\x91\xdf\x48\x03\x53\xb8\x08\xd8\x7a\xa5\x93\x28\x11\xb6\x66\x1f\x4a\xc1\x51\xaf\xd6\x9a\x80\xde\x57\x25\xfa\xf1\x19\x8b\x20\x98\x91\x12\x63\x93\x6a\xc6\xdd\x02\x50\xfe\xc5\x0e\xbd\xc4\x2d\x07\xb5\x7f\x24\x1f\xf5\x2c\xb7\xf6\xf7\x8a\x3d\xa6\xf9\xef\x64\x24\xec\xf2\x96\x19\x25\x3e\x87\x3f\x59\x1a\x96\xff\x88\x28\x80\xbc\x4e\x41\x3c\x6c\x30\x64\xd4\xdb\x2f\x59\xa1\xe9\x39\xa7\x49\xe9\x63\x89\x67\x35\xe1\x81\xc3\xe6\x2d\xef\x6f\x64\x79\x3e\xbf\xc4\x08\xfd\x30\x02\xa4\x28\x1b\xb8\x00\x60\xc6\x5b\xd8\xf1\xd2\xb9\xf7\x3a\xb8\x24\x6c\x37\x9b\xfb\xee\x85\x1a\x44\xd7\xc0\xde\x1a\xb3\xfd\xec\xd9\xf5\xa1\xaa\xfc\x8b\xf6\x5c\x24\x34\xd0\xe0\xbd\x50\x5c\x66\xc1\x71\xa3\xac\xb4\xd9\xd8\x34\x2f\xb8\xb2\xe4\xf8\xfe\x3e\x85\xb6\x36\x31\xf2\x31\x8a\xed\xf8\x7d\x78\x9f\x26\x14\x45\xfc\x11\x22\x55\x07\x99\x03\x4c\x5c\xd9\xe7\x89\x28\xf6\xb9\x2f\xaa\x96\xb6\xd0\xa8\x84\x33\xb1\x14\x3a\x29\x82\xed\xc1\x67\xe4\x6b\x1e\xad\xad\xd1\xfe\xa4\x5e\x31\xe0\x2e\x1f\x40\x11\x5f\x0a\x66\x4e\xf2\xeb\xb6\x5e\x0e\x88\x7a\xf4\x79\x5a\x4c\x7a\x8a\xc5\xd7\xb9\x6b\x45\xb3\xd1\xfd\xe7\x21\x8d\xe5\xdd\xeb\xb3\x3a\xb0\x32\xa3\x65\x5a\x6e\x58\x01\x0c\x20\x46\x37\x03\xf2\x0d\xc0\x2b\x60\x06\x57\xd7\x1f\x33\x9a\x79\x6f\xaa\xb1\x86\x1b\xd3\x7a\x54\x15\x04\xf0\xf4\x9b\x39\xb6\x3a\x99\x3c\x0c\x71\x34\x25\xce\xa3\xe4\x03\xa0\x81\x8a\xa9\xf5\xc7\x44\x5d\x35\x99\x0e\x90\xf3\xda\x9e\x4b\x16\xdf\x80\xae\xa3\x84\x0f\xf1\x9c\xfe\xfd\x66\x9d\xdf\x0c\xda\x82\x8c\x5e\xf2\x68\x92\x29\x12\x68\x30\x00\x32\xc5\x04\x4e\x06\x94\xd0\x46\xfa\x95\xd1\xcc\x53\x13\xee\x2d\xdf\x1e\xab\x2c\xc3\xa3\x97\x9a\x81\x46\x4e\xb1\x87\xad\x15\x31\xf7\x83\xc9\xe4\x66\x8f\xfe\x07\xb1\x97\xd4\x38\x1b\x0f\x58\x91\x8d\x37\x96\xf8\x73\x45\xe4\xcb\x9c\x1c\xd3\xda\x8e\xac\x16\x68\xad\x33\x74\x4a\x7b\xf3\x3b\x37\xc8\x74\x33\x1f\x9a\xc0\x96\x2b\x03\x48\xc9\xdd\xa0\x98\x9e\xe0\x80\x81\x26\x4b\xc8\x06\x2e\x9f\xf6\x73\xd6\x20\x3c\xb4\xf1\x87\x82\x65\xff\x5b\x9b\x83\xdb\xa2\x47\xf6\x78\x68\x69\x20\x9e\x40\x06\xb6\x3e\x20\xaf\x1b\x7b\x5e\x7c\x97\x61\x27\xe5\xcb\xbc\xb8\x1f\xd8\x34\x3a\xc6\x75\x28\xfa\x5c\xd5\x86\xd6\xe2\xee\x8b\x3e\xb6\x07\xad\xb2\x68\xbf\x33\x31\x0f\x5f\x91\x3f\x8a\x8d\x14\x30\xd3\xc6\xad\x5e\x9d\x21\x30\x91\x98\x7b\xd1\x48\xfb\x49\xb1\x9a\xd9\x97\xc8\x2a\xa2\xaf\xf7\xc4\x56\xf2\xb6\xc4\x23\x75\xbd\x4d\xa7\x3a\x8e\x3e\xbb\x8e\x48\x86\x18\x05\xff\xf3\x29\xe6\x49\xe6\xa3\x8f\xa7\x4b\x0e\xb3\x27\xb4\x86\x53\xea\xfb\xdf\xd9\xd9\x93\xb1\x2f\x09\xd2\xe4\x71\x5f\xd7\x32\xb2\x83\xd1\x27\xa0\x5c\x23\xa8\x62\x1c\x10\x3a\xb2\xf5\x3e\x30\xb6\x13\x01\x98\x88\x84\xe5\xfb\x57\xce\xdd\xa4\xa7\xe0\xbd\xb2\x7c\x41\x07\x03\x80\x6a\xd4\xd2\xbb\xb2\x9d\xb6\xdb\xa1\x98\xbb\x3a\x5e\x9a\x7e\xd0\x7f\xf1\x9e\xeb\x7b\xf5\x8c\xbf\x5b\x5e\xbc\x31\x5f\xe0\xcd\x78\xe6\xad\xfc\x5b\x52\xef\x98\xd6\x15\xa1\xc0\x3f\xe9\xb6\x38\x2a\xaf\x9e\xa4\xb0\x8c\x54\xd0\xad\x3e\x39\xcd\xc7\x35\xd9\x6c\x06\x3e\x8c\x51\xf0\x70\x5d\x1e\x2e\x7f\xf1\xbe\x3c\xe8\xfe\xc6\xfb\xab\x5f\xe5\x62\x22\x13\x07\x98\xe2\xa9\x77\x84\x84\x73\xd6\x4c\xb8\x47\x68\xd8\x8d\x5d\x3a\x4f\xe5\x07\xbe\xb0\x10\xad\xcd\xc6\x6f\xac\xf9\x71\xfa\x58\x38\xce\x86\x76\x2a\x95\xe8\xa0\xc5\xfb\xf2\xcf\xfd\xed\x25\x8b\xef\x35\x34\x50\x91\x2e\xba\x81\x12\xde\x42\x5d\x0e\xfe\x69\xdf\xa7\xa7\xb1\x65\xd4\xab\x4d\x80\x2d\xab\x6b\x85\xce\x8f\x69\x7d\x88\xaa\x65\x7e\x2c\xa1\x6f\x83\x99\xec\x62\xba\x25\x00\xac\xdd\x65\x9f\xbd\x26\x90\xa7\x50\xfe\x85\x60\x85\x00\x26\x8d\x1e\x00\xa0\x98\x01\x00\xdb\xb7\x23\xc1\xd9\xe7\x59\x8f\x25\x82\x8a\x1d\x20\x17\xea\x6f\x39\x36\xa9\x37\xf0\xe3\xcc\x93\x6c\x35\x22\xc1\x6a\xc2\x86\xbd\x5e\xc5\x50\x08\x0d\xad\xf9\x7d\x52\x7a\x56\x43\x89\x2a\x04\x0e\x75\x79\x4a\x4f\x50\xd9\x4a\xd2\x3e\x22\x82\x29\x04\xd2\xbd\xc2\xb2\x53\x02\xdb\x16\xc6\xa6\x5e\x44\x72\xa2\xdf\x96\x6b\xcd\x5a\x8d\x2d\xb1\x0a\x4b\x5c\x37\x3d\x8b\xb8\xf4\x61\x2e\x72\xa2\x07\x3e\x6c\x53\xfa\x13\xa9\xbf\x01\x8d\x8b\x3b\x2a\xe7\x00\xa1\x9f\x40\x80\xba\xad\xaa\xe4\x00\xc1\x0a\x1b\xda\x89\xfd\x7e\x32\xb7\xd6\xe1\xaa\xd8\x89\x4a\xdc\xc7\x0a\x0f\x94\xce\x9e\x67\xf7\x49\xa7\xd7\x53\x51\x54\xb4\x0f\xe7\x91\xbc\x0c\xc7\xfb\x80\xff\x26\xce\x38\x8c\x18\x00\xf0\xf6\x51\x74\x9b\x78\xf9\xc9\x0b\xfd\x9e\x8a\x6c\xb3\x7d\x02\xee\x9d\x4b\xef\x90\x28\x5a\xf3\x7b\x15\x7f\x97\xac\x87\x2e\x97\x9e\xe5\xe0\xa5\x49\x7f\x03\x40\xaa\x0b\x00\x50\x60\x93\xf7\xbf\x62\xad\x62\x19\x89\x11\xab\x33\x04\xed\x2d\x29\x79\xd6\xdf\xec\xcf\x93\xe8\x43\xc5\x77\x6e\x85\xec\xa0\xa8\x4c\xdc\x75\xdb\x51\x35\x4e\x7d\xf2\xc8\x42\xed\x91\xb0\x50\x54\xc0\x01\xfb\x7f\x53\x28\xbc\x3f\xaa\xfb\xdd\x30\x3d\x21\x40\x26\x8f\xd2\x1a\x4c\xb7\xf8\xa4\xc8\x26\xd4\x17\x27\x3f\xd8\x45\x82\x78\x35\x60\x72\xbb\xb5\x17\x41\x2b\x6e\x50\x4d\x0b\x04\xe0\x00\xfc\xab\xe6\xe7\x87\xed\x5f\x8f\x23\xf1\x01\x20\xc1\xef\x52\xa2\x9d\x8c\x00\x40\xfd\x22\x32\xf2\x54\x3c\x01\xab\x02\x26\x68\xc0\x7e\x77\xc1\xc8\xde\xb6\x5f\xf7\x07\x27\x29\x7c\x3c\x09\x9a\x88\x0f\xca\xdc\x49\x31\xe2\xae\xd1\xca\xca\x39\x95\x15\x88\x99\x5f\x5c\xff\x9d\x41\xfb\xee\x7f\xaa\x92\x9d\xef\x5f\xd8\x13\x3f\x39\xef\x79\x33\x8b\x5f\xa8\x1b\x59\xf0\x49\x47\x57\x0d\x32\xca\x75\x92\xc4\x84\x2a\x4e\xec\xb8\xf8\x62\x37\x88\xb9\x8c\xe1\xd8\x8f\x14\x8e\x13\x10\x7a\xf9\xb0\x7f\x10\xda\x84\xf1\x7e\xa2\x5e\xc5\xa3\xa2\x5c\x03\x50\x9e\x74\xbc\xbd\x07\x5e\x87\x45\x41\xe0\xef\xec\xb7\x05\xf9\x95\xf9\xaa\x9e\xe0\x03\x40\x3a\xda\xfa\x75\x9e\xa0\x82\xbd\x96\xdd\xf6\x9d\xe9\x24\xfe\xbf\x83\xb2\x11\x52\x14\xfc\x4f\x22\x1a\x9d\x40\xad\xf4\xe7\x3b\x77\x4f\x7e\x11\xbe\x5a\xed\x9d\xed\x94\x46\x75\x4a\x7f\x7c\x22\x7c\x57\x7a\xa0\x1b\x8d\xca\x7f\xf7\x30\x7e\x59\x26\x80\xf9\xfb\x9f\x9a\xa8\xb4\x66\x86\xd9\x5d\x16\x18\x6e\x70\x2f\x1b\x83\xf1\xda\x1c\xd2\x4d\x60\xc8\xd3\x03\x00\x46\x66\x48\x4f\x37\xe2\x8a\x4e\xd4\x59\x92\xd8\xe4\xd1\xe7\x26\x69\xfd\x0a\x05\xfb\xf3\x39\x42\x66\x08\x18\x80\xb1\x7f\x75\x80\x9c\x59\x16\x94\x54\x26\x75\xd0\x4e\x0e\xb6\x07\x3c\x70\x8a\x7c\x4d\x87\x22\x60\xe6\x9a\x32\x29\x5f\xd6\x3e\x0b\x15\x42\xbf\xf3\x3e\x10\xc7\xfd\x1a\xf6\x52\x50\x23\x9f\x10\x55\x21\x6e\x2f\x38\x23\xe2\x7b\x58\xbb\x9d\x4e\xf6\xbf\xee\x56\xb8\xe5\x53\x89\xd6\x42\x99\x4d\xfb\x4f\xdc\xd3\x1a\xde\xe3\xc2\xf4\xef\x87\x03\x6f\x69\x4d\x70\x20\xed\xd0\x79\x30\x69\x0b\x90\x22\x37\x37\x55\xdf\x32\x36\xa1\xcd\x99\x16\xf7\xe7\x6c\x4a\x8a\x12\x92\x81\x4e\x90\x41\x38\x72\xd5\x92\xe7\xeb\x75\xac\x85\x74\x18\x52\x56\x34\x91\xff\xe7\x46\x19\xd3\x5f\x9f\x84\x9c\x85\x0a\x8f\x3c\x4e\x97\x32\x4a\x4e\x14\x7a\xcc\xa8\x18\xd2\x75\xe9\xf1\x44\xde\xd2\xc1\xa1\xa1\xb5\x3d\x45\x91\x0a\x43\xb7\x12\x2d\x6a\x98\xd1\x18\xf4\xe9\x1f\xab\x4a\x1c\xea\x35\x5a\x7c\x14\xe3\x34\x46\x91\x19\x13\xac\xd8\x02\x00\x72\x8b\x4f\xa0\x3c\x72\x10\x98\x49\x2d\xbb\x10\xe8\x48\x27\x69\xce\x3d\x62\x7c\x20\xfb\x70\xad\x39\x1d\xfd\x2e\x77\xd8\x21\x7e\xce\x56\xb5\x26\x30\x22\x64\xa8\xe5\xa0\xec\x7f\xa6\x60\x26\x4c\xf8\x02\xf2\x92\x46\xde\xbd\x5c\xd1\x3c\xc9\x52\x54\x15\x19\xf0\x6a\x0a\x63\x34\x58\x9b\x30\x41\xb3\x92\x41\x7d\x9f\xd0\xc1\x43\xd7\x4b\xe9\xe7\x71\x85\x0f\x47\x71\xf7\x06\xdb\x1e\x66\xcf\x7b\x86\xd9\xb5\xcb\x59\x58\x27\x56\x7f\x5d\xb1\xec\xdf\xaa\xf4\xdd\xa5\x15\x4c\x4a\xb4\x87\x43\x51\xb1\xf6\x01\xab\x2f\xdd\xbd\xc3\x18\x11\x76\x32\x26\x5b\x06\xb9\x3f\x3e\x9c\xab\x93\xe7\x0a\xd9\xe5\x33\x52\xf1\x99\x08\xbe\xb5\xd7\xe2\x0f\x37\xa9\x5a\x3a\x86\x00\xff\x91\x5d\x27\xa4\xe4\x21\x92\x1d\x8e\x09\x6f\x80\x00\x6c\x78\xa1\xf1\x3d\x3f\x07\x33\x9b\x7c\x13\x8e\xeb\x84\xe3\x5e\xc5\x04\xbd\x44\x52\x02\x30\xde\x4c\x4a\x98\x94\x4b\x5a\xc0\xf4\xd8\x27\x0b\xee\x2d\x89\x9b\x0f\x35\xf7\x55\x97\x65\x02\x7e\x95\x6a\x2e\x34\xb7\x8a\x53\x28\x04\xb5\xb2\xc1\xc3\x6a\xa8\xc3\x2d\x41\x3f\x20\x6b\x86\x11\xbb\x14\xe6\x18\x08\x02\x00\x39\x25\x68\xd0\x9f\x4f\xef\x79\x15\xda\x19\x6d\x76\x32\x5b\x26\xd4\x29\xaa\x4a\x2b\x45\xb3\x32\x00\x00\x30\x41\xaf\x2b\xa6\x2d\x72\xd5\x68\xcd\x4e\x5d\x59\xd6\xc4\x90\x02\xa8\x26\x2c\x18\x44\x18\x4b\xbd\xd6\x4a\x76\x6b\xbd\xe3\x51\x10\x14\xaa\x6c\xa1\xca\xf7\xb9\x27\x06\xdd\x54\xf3\xe3\xfc\xd5\x7c\x63\xbe\x50\xa1\xb5\x57\x58\x39\x16\x7e\x6a\x36\x1a\x97\x0c\x3c\x94\x4d\xa1\xba\x83\xab\x79\x43\x13\xe3\xa0\xbf\x16\x11\xd2\x11\xd9\x47\xe5\x7f\x6b\x33\x7a\xff\xaf\xab\x68\xf0\x56\xc2\xd8\xb1\xb5\x4d\xcd\x85\xa6\x56\x40\x2d\x3a\xfb\xf7\x22\xad\xca\xcd\x33\xf3\x3b\x2b\x97\x73\xa2\x91\xd9\x67\x12\x76\x41\x18\x24\xbd\x0b\x61\xba\xd9\x8c\xd8\x36\xa7\x52\x01\x18\xf5\xd1\xfc\xfa\x96\xd6\xd8\xe6\x5e\x68\xab\x72\x23\xb0\xc4\xe0\xe7\xd9\xa3\x14\x16\x76\x96\x22\x8e\x47\xfb\x97\x6d\xad\x6a\xaa\x89\x70\xcc\x71\x3f\x93\x77\xd5\x6d\x51\x76\x12\xfe\x68\x2b\xde\xc9\xa2\xc7\x32\x53\xd5\x05\x36\x02\xb6\x6e\x10\x3a\x44\xba\x2a\x4a\x62\x9c\xf2\xc8\x76\x7b\xd3\x85\xfe\xe7\x62\xf3\xf4\xd2\xa0\x77\x93\x22\x4c\x6c\xad\x62\xe0\x8d\x3e\x1b\x19\x75\x4e\x3a\xb6\x26\x2e\xa0\x60\xb1\x55\xe3\xc3\xdc\xd2\x48\xc3\x6f\x6b\xa9\xea\xb8\xdb\xbc\xc3\xde\xf9\x24\x3b\x4f\xac\x19\x8b\x25\xa4\x95\x9a\xea\xe3\xfa\xa5\xe9\x94\xbf\x26\xf0\xdc\x1b\xb0\x74\x3e\x48\xa6\x22\x02\xda\xdb\xf1\x03\x46\x4f\xc5\x1d\x11\x75\xaf\x50\x76\xd7\xe1\x71\xaf\xb1\x03\xb9\xdc\x54\x76\xa5\x25\x99\x7a\x29\xc5\x5b\x5a\x4c\x8a\x14\xda\xd7\x37\x4d\x7b\x1c\x3d\xfc\xc9\x31\xa8\xcb\x86\xf9\xff\x59\x13\x4e\xb2\xb9\x1a\x75\xf5\x38\xdb\x73\x6f\xa5\xf5\x71\xe0\x88\x7d\x1f\x03\x5e\x7d\x29\xfd\x9c\x00\x5f\xfe\xc1\x46\x73\xcb\x7e\x60\x53\x8b\xa1\x53\x5d\x5d\xd8\xc1\x94\xf6\xe8\xe2\x42\xaf\xf7\xfc\x86\x62\xf9\xf2\x94\x94\x80\x49\x25\x5d\xaf\xb3\x81\x44\xeb\x1c\x51\xa4\x69\xad\x3f\xff\x9a\xbf\x83\x01\x86\x8e\x8f\x09\x00\x70\x1a\xd3\xc7\xc2\x34\xa5\xde\x80\x16\xd8\x6a\x26\xdf\x2c\xa9\x69\x5b\x09\x93\x01\x23\x4a\x84\x84\xdb\xfb\xd8\xfa\x93\xd8\x71\xfa\xb8\xba\x12\x73\xec\xba\x9d\xa8\x77\xf3\x2d\xde\x97\x50\x7c\x10\x04\x39\x46\x49\x0f\xfe\xcb\xb0\x24\xc6\xb3\xfb\x08\x2a\x06\x5e\x75\x62\xc8\xca\xdb\x17\x49\x29\xde\xcd\xea\x91\xe0\x82\xfc\xe5\xc0\x78\xf6\x60\x0c\xea\x1f\x24\x2d\x95\x01\x20\xbc\x9a\x45\xe0\x25\x6d\xbb\x36\xf6\x0f\xc8\x5d\x4e\x7c\xa3\xed\x4d\xb1\xd0\xce\xad\x90\x63\xa3\x3e\xc4\x91\xdc\x7e\x92\x04\x52\xfb\xbd\xd2\x4f\xe3\x7b\xb4\xe3\xb7\xff\x9e\x6f\x7e\x9c\x50\x54\x14\x23\x37\xa2\x3a\xd8\x89\x9f\x11\xf6\x98\x85\x17\x1d\xee\xaf\x09\xfc\x92\xbd\x6a\x1e\x39\xfa\x6d\xf6\xe0\x6a\x71\x07\xb2\xd4\x04\xb2\x7d\x8e\xc6\x76\xb5\x64\xeb\x70\xc6\x72\x87\x0c\x19\xd2\x8b\x27\xb4\xcb\x0a\x03\x29\x63\x5a\x7f\x9c\x86\x28\xbc\xdf\x06\xb5\xd4\x58\x17\x61\x33\xff\x19\x42\x4e\x15\x11\xbc\xe6\x61\x2b\x67\xf9\xfe\xe5\x7f\xb5\x43\x42\x51\xf5\x14\xf0\x41\x2c\xa7\x14\x0a\x60\x84\x62\x9a\x28\xc2\x6b\x01\x0b\x16\x79\x2a\xab\x73\x67\xc3\x85\x69\xe0\x7d\x00\xf8\xd8\x01\x80\xe4\xad\x46\xc8\x16\x56\x0b\x28\x45\x61\x6c\x22\xd8\xd0\xe9\x5d\xee\x88\xcd\x33\xd1\xaa\x43\x35\x28\x76\xe6\x1e\xa8\xa5\xc1\x84\x43\xe7\x45\xda\xfe\xe1\x46\x33\x7e\x1e\xaf\xe2\x42\x07\x35\x18\x1a\x98\x92\x44\x46\x0c\x1b\xc4\x0d\x7d\xba\x5c\x0f\x0d\xf5\x02\xf9\xc8\x51\x80\x8e\x57\x11\x8e\x81\xc6\xd6\x67\x59\x21\x12\x07\x27\x87\x89\xa7\x96\x8b\x57\x58\x03\xe5\x00\xe5\x28\x01\x8c\xc6\xfb\x0d\xe8\x3b\x7b\x7d\x9e\x9c\x77\x46\x49\x2c\x6f\x2a\x6f\x91\x16\x78\xcd\x31\xbc\xd0\xb9\xd1\xa8\x3a\x2e\x59\x5a\xb6\xe0\xdf\x46\x0b\x56\xa4\xfc\xcb\xdd\x36\x59\x62\x14\x3c\x6f\xeb\xbf\x16\x34\x75\x18\x7c\xe1\xf7\x43\x46\x91\x30\xfc\xe9\xdf\x7a\x28\x14\x2e\x46\x01\xe7\x82\x1a\x6c\x1b\xef\x7f\x09\x59\xfe\x62\xe4\xe1\xbf\x5c\x48\x6b\x22\x1e\x2e\xd1\x4e\xf8\xaa\xe3\xeb\xe9\x41\xd3\x61\xcf\x23\xdf\x19\x52\x04\x36\x40\x0d\x10\x02\x7f\x00\xc4\x93\xff\xdf\x74\x83\xa3\x55\x7d\xec\x05\x6f\x7b\x5a\xf2\x1a\x8c\x39\xe6\xfa\x6e\xb2\x0f\xd7\x32\xa3\x80\x80\xa2\x50\xee\x5a\xfc\x03\xcc\xd9\xd2\xfe\x1c\xc6\x35\xf6\xb8\xc8\xe9\xc4\x22\x8c\x7d\xcb\x7a\xc1\x81\xab\x4d\x14\xea\xa2\x47\x7f\x3a\xa6\x6a\xb9\x73\x4b\xd6\x74\x88\x64\x9a\x5f\xfb\x2c\x9d\x4a\x7a\x2f\x48\x37\xaa\xfa\x46\x53\x2a\x34\x36\x3a\x36\x5c\xc8\xf5\xf0\x92\xc7\x72\x0a\x0b\xc6\x6b\xc9\xba\xb2\x2e\x29\x87\xd2\xe2\x6c\xb3\xbf\x89\xe5\x9c\xd9\x9d\x13\x5d\xc7\x72\x5b\x26\x2c\x84\x56\x26\x9c\xc7\x52\x68\xeb\x25\x15\x27\x76\x58\x76\x09\x71\x51\x8b\x7e\x18\xeb\x6c\x06\x20\x54\x88\xfa\xb1\x48\x51\xfe\x7c\x65\x71\x60\x60\xaa\x34\x99\xb8\x13\x24\x1f\x22\x3a\xc8\x00\x1b\x24\x86\xa6\x7b\x04\xfc\x95\x4d\x95\xb0\xee\x5e\x36\xbb\xb2\x5a\x15\xa3\xf9\x92\x48\x01\x98\x31\x43\x7a\x4e\x40\x28\x4d\xa5\x25\x83\xf2\x38\xc5\x25\x2d\xed\x99\x0f\x1f\x1f\x29\x06\xf2\xc8\xe3\xc7\xff\x36\x32\xb0\xb1\x4d\xca\xfb\x53\x52\x48\x25\x84\x27\x02\x19\xeb\xf3\xcb\x84\x22\xa2\x28\x25\xb5\xdb\x46\x27\xed\xcf\x2e\x57\xaf\x07\xa0\x01\xb7\x97\x87\x91\x0c\x10\xf4\x47\xbc\x5f\x91\x6a\x0c\xb4\xb4\x36\x45\x0f\xdb\xcb\xc9\x45\x5a\xfe\xb1\x89\x44\xa0\x20\xc6\x20\x30\x6b\x8a\x26\x64\x22\x9d\x14\xbf\x7c\x85\x91\x2c\xea\x8b\xb2\x50\x7a\xbd\xd1\xb8\xa3\xef\xad\xe9\xea\x74\x19\x7f\xf5\x8f\x4d\x3a\x36\x1e\xfc\xbc\x4a\x6d\xc1\x2b\x22\x09\x43\x9b\xfb\x2f\x44\x53\xc9\x69\xaf\xc3\xac\x91\x8e\x4f\xec\xaf\xb0\x53\x6e\x3d\x9f\x06\x32\x46\x9b\x5c\x75\x99\xe9\xed\xb8\xa0\xcc\xcd\x3c\xef\xae\x5e\xf8\xe6\xe1\x34\x4b\xc8\x1f\xea\xdc\x7d\x52\x5b\x47\x65\x29\x7a\x2e\x29\xb6\x44\xe6\x99\x3a\x84\xcf\x46\x19\x81\x56\x87\xbf\xa6\xa2\x42\x3a\x0c\xe5\xdb\xf5\x6d\x6d\x74\xce\x50\x9b\x43\x55\xc6\xe7\x16\x9f\x15\xde\x53\x82\x5a\xaa\x4c\x8a\xa6\x09\x6a\xd5\xcb\xf4\x3a\xa2\x4b\xf0\x1f\xf7\xc6\xe8\x64\xe6\x59\x3c\xd1\xe6\x84\xf2\x72\xbd\xf4\xf0\x3f\x99\x5a\x5b\x6a\xce\xf6\x5c\x10\x79\x38\xfc\x9e\x98\x73\xa8\x19\x26\x0b\xef\xf5\x64\xf9\xc9\xf2\x89\x00\x6d\x70\x27\x16\xe2\x47\xb3\x78\x2f\x3f\x10\x01\x00\x94\x45\x86\x16\x69\x50\x56\x7d\x64\xff\x19\x9b\xe1\x87\x61\x15\x71\xc4\x7a\x84\x1a\xbf\x72\x19\xc5\xf3\x8d\xeb\x9c\xf8\xa7\xf5\x61\xa2\xc5\x7a\x48\x51\x6e\x93\x74\xca\x04\xf2\x4b\xa6\xc0\xf0\x37\x61\x4d\x12\xb6\x57\x5d\x19\x41\x5b\x45\x8f\x06\x3d\x1f\x46\x06\x60\xe0\xec\x02\x57\xd4\x52\x50\x9d\xb8\xe5\xfe\x2d\x3f\x9c\x1f\x88\x5a\x92\x62\x7d\x99\x4a\x2b\x22\x81\xf3\xc8\x9f\xdb\xb5\x0a\xfd\x48\x1e\x0f\x3b\xa8\x09\xcc\xbf\xfd\x8f\xb0\x3c\xbd\x8a\x0f\x4e\x88\xbd\x0e\x4a\x8f\x3a\x9f\xe9\xf3\xa0\x21\x6b\xbb\x5c\x88\xbe\x16\x88\x23\x75\x1d\xbb\xe4\xc5\x03\xb3\x7b\xf4\xc7\x63\xfc\x7d\x2a\xe7\x1e\xc6\x23\xa7\x92\x22\x7d\x98\xe7\x9d\x2a\x25\x4d\xac\x4d\x1f\x01\x6e\x4d\x74\x55\x4a\x1f\xbe\xe3\x45\x66\xbc\x8c\x2c\xbd\x89\x8c\xdc\x13\x58\xbc\x1a\xea\xea\xd4\x71\x2d\x3d\xf1\xea\x3e\xc1\x5c\x48\xb4\x3a\x1f\xb9\x6e\x47\x5a\x0c\x1b\xe6\x34\x3a\x7f\x7c\xcb\xf8\xb2\xff\x70\x50\x97\xc7\x03\x0c\xac\x5c\x49\x92\x53\x8f\x96\x04\x7c\x3e\x01\xe1\x73\x28\xed\xcf\x79\xd0\x3c\xf1\xb3\x6f\xc9\x6d\xeb\x81\xa8\xb1\xf8\x72\xc7\x20\x60\xb3\xd6\xdb\x77\x65\x34\x5c\x73\x98\xbd\xfb\xbd\x08\xa2\xa4\xd7\x8e\x08\xff\xe8\x88\xea\xb1\x24\x56\x48\x54\xa2\x39\x02\x6d\xec\x23\xa2\x5f\x7f\xa2\x43\x86\x8c\xfd\x71\xc9\xfb\xcd\xf1\x83\x15\x66\xe9\x8d\xfe\xb5\x95\x22\xfa\xc7\x73\xe9\xbb\x9d\x2f\x3a\xc9\x98\xdd\x16\xfd\x1a\xa5\xed\x41\x2f\x22\x57\x7b\xa1\x81\x68\xa8\x1c\xc3\x8d\xdf\xf0\xda\x7d\x1a\xb6\x2b\x39\x18\x4a\x45\x82\x0f\xc8\x2d\xc7\x4b\xce\xb3\x13\xcd\x35\x5a\xc7\xea\xed\x66\x6e\x54\x05\x7f\xea\xc3\x15\xfa\xe4\x1a\x5a\xea\xea\xd5\xb4\xc2\x2a\xf8\x23\x59\x6f\x25\x3f\x73\x61\xa2\x61\x79\x91\x89\xe7\x85\xda\x56\x82\xae\xab\x29\xfd\xe9\xdb\x0f\x93\x69\xeb\x27\x91\xb5\x74\xd3\x20\xc4\x34\xd8\xd6\x6f\x5f\xfe\xa1\x7b\xfa\x63\xa5\xbf\xaa\x5b\xac\x7f\x29\xf4\x84\x17\x34\x92\x18\x24\xd0\x6f\xa6\x3c\x48\x48\xa3\x39\x08\x0f\xbd\x2f\x90\x92\x14\x8c\x5c\xce\xe1\x31\xe7\x71\xbc\xf4\x8d\x1f\xc8\x01\x28\x33\xe4\xa5\x17\x82\x29\x1a\x0f\x59\x61\xf0\x47\x9f\x9b\x40\x31\xfb\xdd\xb5\x95\xef\x6f\x8a\x79\x76\x6e\x13\x21\x10\x54\x41\x4a\xa9\x85\xd8\x46\x4e\x5c\x6e\xfc\xb8\x70\xc9\x3f\xab\x16\xcb\xba\x48\x84\xde\x7e\xf0\x91\x50\x8c\x77\x4a\xf4\x35\x03\xd3\x28\x77\xe3\xdf\xc8\xa7\x0f\x3c\xbf\xac\xc9\x3e\x30\x5d\x72\x10\x7d\x5b\xf6\x3a\x18\xb9\xa3\xd0\x55\xb9\x96\x55\x44\x5b\x08\xf9\x11\xa3\xd5\x20\x86\x83\x9e\xff\x56\x76\x02\x9b\x76\xf8\x84\xad\xdd\xbd\xef\x44\xee\x1e\xd3\xad\xf1\xfe\x00\x03\x70\x35\x08\x23\x5e\xa0\x14\x37\x8a\x11\x61\x6b\x39\x92\x8b\xbe\xca\xa9\x6d\x2c\x74\x4d\x4a\x3c\xbb\x57\x84\x76\x32\xb2\x25\x88\xfb\x66\x4c\x68\x3b\x16\xf3\x0b\xd4\xbd\xc7\x96\xb5\x57\x72\x92\x2b\x9d\x89\xbb\xa0\x19\xde\xc0\xc7\x49\x34\x92\xf9\x73\x44\x14\x73\xab\xb9\x2d\xf0\xb0\xb9\xe8\x6b\x77\xaf\x1f\x49\x80\x39\xb2\x35\xc4\x98\x75\x59\x2d\xa7\x03\xbe\xd7\x52\x8a\x68\x34\xcd\x48\x66\x4f\x6f\x4c\x04\xda\x75\xc6\xd7\x33\x3d\xf9\x59\x9b\xe4\x9f\xfa\x81\x12\x00\x90\x5b\x78\x0a\xe5\x11\x2a\xba\xf7\x84\xe2\x67\xdb\x62\x73\x46\x68\xbc\x2b\x9f\xe4\x28\x84\xdf\x64\x1f\x5a\xa9\xc3\xe0\x8d\x7d\x3b\xe7\x29\xbf\x8d\x9a\xf5\xa6\x39\x01\xa1\x85\xe1\xeb\xfd\xa0\xcb\x47\xf4\x91\xc8\x7f\x2f\xcf\x70\xe0\x1a\x1d\x28\x42\x0c\x4f\x05\xb7\xf3\xa4\x23\x84\xff\x76\x5f\x36\xb8\xce\x68\xb9\xf7\x41\xad\xa0\xe4\xa1\xb6\x67\xc7\x1e\x2d\x8e\x4b\x2a\x8d\x26\xef\xb2\x2a\x1c\x5e\xef\xfa\x5c\xbc\x1c\xb4\x9a\x78\xc8\x0a\x8e\xaa\x48\xb0\x03\x01\x3c\xea\xe2\x08\x39\xe3\xee\x52\x94\xbc\x2e\xdf\xe7\xdc\x8d\x97\x16\x1d\xda\xd3\x9b\xf9\xea\x26\x63\xc9\x92\xe4\x48\x85\x5c\x15\x63\x03\x1b\x5b\x1d\x8a\x0f\x35\xad\x3f\x4e\xfb\xc5\x63\x56\xbd\x29\x68\x34\xea\x04\x90\xbf\x9e\xa1\x48\xa9\x5c\x66\xe5\xde\x9d\xb3\x30\x5d\x32\x95\xde\x38\x6a\x87\x4f\x62\xfe\x21\x8f\x6f\x05\x39\x36\x69\xad\x44\x2f\xec\x99\xe5\x89\x43\xd6\xff\xc0\x00\x69\x52\xf3\xc1\x93\x44\xc3\xda\xbb\xdf\x4a\x3f\x9b\x78\xa4\x80\xff\x72\x99\x8c\xd5\x01\x76\x3b\xf4\x1a\x00\xb0\x14\x70\x9b\xc2\x56\x94\x3e\x0b\x9e\x3e\xae\x3a\x29\xad\xe4\x75\x8c\x03\x9b\xc1\xd8\xbf\x16\x38\x7b\x55\x6d\xb3\x72\x97\x4c\xbb\x45\x68\x7c\xf2\x8c\x3d\xa6\xde\x26\xca\x79\x8e\x49\x9e\x39\xbe\x7a\x1e\x0c\xb8\x50\x51\xae\x1c\x44\x0a\x52\xee\xe9\x9f\x17\xa5\x98\xb7\x3e\x64\x1f\xcd\xe9\x08\xba\xfa\xd7\x2f\x8c\xf9\xe9\x6c\x9d\x7d\x1a\xbb\xbe\x97\x73\x23\x70\x36\x1c\x15\x9e\x9f\xef\xf5\x9e\x17\x8f\x29\xd8\xb7\x03\x9d\x82\xa2\x5e\x26\x5a\x99\xb9\x0f\x84\x5e\x03\xa3\xbf\xbd\x99\x51\xf1\x3d\x62\xb2\xe4\x25\x99\x25\x64\xbc\xa9\x95\x42\x91\x22\x58\x99\x51\x43\x17\xb9\x71\xe1\xbf\x8d\x1a\xc6\x46\x1c\xb8\x6a\x6b\xb4\x27\x09\x6d\x6b\xd9\x21\x88\xf7\x46\xdd\xed\xa2\x20\x32\xd0\x1f\x46\xca\x0a\xb4\x31\x7f\x97\xf1\xe7\x99\x42\x4c\x13\xd1\x37\x7f\xcc\x50\xc6\x35\x77\x55\xea\x09\x87\x22\x1a\x5b\x48\xda\xee\xd8\x21\x75\x10\x0c\xf3\xac\xfe\x71\xda\x17\x78\x61\x5f\xb6\x8f\xd5\xc6\xf7\x87\x35\x1d\xd8\xe6\xfd\x45\x1a\x35\x95\xbe\x26\x34\x5a\xe2\x00\x51\x6e\xcf\x6e\x31\x29\x22\x88\x1f\xc6\x3f\xe5\x02\xa7\xaf\x3d\x2a\xe7\x57\x76\xe4\x9c\xe9\xdb\xd3\xb1\x6b\xec\x86\xb0\x4d\x0f\xb4\xe3\x29\x77\x82\xb7\x1f\x21\xb8\xa8\xb1\x5e\x5f\x74\x1b\x3e\x7c\xad\x78\xc0\xd6\x67\x6b\x3e\xe5\xc7\xdc\xe8\xeb\x37\x48\xe8\x39\xd8\xb6\x95\x39\xdf\x80\xf7\xef\x0e\xaa\x5d\xc1\x6a\xd8\x86\x43\x9e\x8a\xf6\xbb\x7f\xbf\xb9\xf4\x38\x76\x44\x0d\x7d\x04\x58\xc1\x51\xab\xe9\x40\x28\x4f\xba\xbb\xd3\x5d\xc5\xd5\x1a\x04\x1a\x55\x48\x55\x8d\x8d\x9d\x67\xcd\xf1\x2d\x64\xf8\x84\x15\xfc\x7a\x1e\x3b\x11\xce\xd4\x9f\x57\x56\xc2\x5f\xb3\x15\xaf\x57\xb8\x96\x9f\x39\x35\x06\xf9\xc1\x58\x43\xa0\x77\x06\x1d\x4d\x53\x83\xc2\xb7\xe4\xdf\x04\xd2\x06\x9f\x69\xf9\x4f\x1c\xed\x85\xa8\xf0\x71\x53\xbf\x9b\x6e\xbb\xc8\x3e\xba\xd7\xb7\x58\x6b\x1b\xf2\xfa\x27\xa2\x88\x06\x0b\x77\x17\x4a\x3c\x06\x99\x3c\xcd\xb3\x8b\xff\x3d\x87\x2b\x7c\x68\xaa\x4f\x4a\xc3\x38\xdd\x7a\x08\x6a\xe3\xf8\x03\x57\x05\xa4\x28\xe9\x68\xe1\xad\xbf\x5b\xb6\x0c\x48\x50\x2e\x3d\x8e\x24\xf0\xa5\xc0\xac\x17\x3b\xa0\xc1\x4c\x28\x00\x00\x24\x07\x64\xac\xf5\x7d\xc9\x3a\xbb\x5e\x4b\x27\xba\x83\xda\xc1\x66\x76\xf4\x3e\x2a\xb8\xc1\x58\x23\x0c\xa8\x14\x0e\xc9\xbf\x77\xa3\xff\x1e\x5a\x19\x25\x98\x43\x3f\xd5\x94\x72\xb7\x9c\xf2\x63\x6a\x74\x2e\x78\x31\xcd\x13\xda\x98\xaf\x3d\x3b\x8f\xc6\x3e\x3d\x24\xfa\x62\x0a\x18\x93\x76\xc6\x05\xc4\xd2\x45\x16\x7d\x50\x80\x57\xf2\x0a\x60\x22\x0e\xf0\xe2\xb0\x02\xef\x53\x78\xd9\x78\x44\x49\x90\xc0\x63\x3e\x3f\x49\xe2\x20\x0a\x7b\x77\xe9\xb5\x09\x29\xe2\x91\x00\x40\x95\x59\x7e\x88\x70\xa6\xe8\x1b\xe7\x79\x4e\x5c\x6e\x2e\x25\xc8\xbe\xce\xed\xc0\xab\xcf\xf9\x1d\xbc\x80\xe0\x29\x3e\x68\x7d\x00\x2f\xe2\x01\x25\xe4\x5f\x6d\xe4\x8f\x6e\x32\x36\x76\x28\x24\x70\xfc\x67\x6e\xec\xe5\x2a\x72\xab\xbf\x27\x70\x1f\xa9\x94\xd6\xa2\xc4\x54\xb1\xe2\xd3\x7a\x1a\xa4\x80\x1e\xbc\xfa\xa0\x4b\xe2\x59\xae\x71\xd4\x87\x3e\x0b\x06\xdf\xb4\x1f\xe2\xa2\x71\xf0\x51\x10\x19\x32\x90\xf3\x77\x16\x62\x24\x92\xc6\xfc\x3e\x69\xe8\xeb\x8b\xb9\xbe\xca\x9e\x1d\x83\x57\x8f\x15\x02\x60\x80\x34\xb9\x39\xe7\x5e\x65\x5d\xbc\xde\xdc\xe0\x46\x3c\x73\x22\xe3\x7e\x63\xaf\x98\xf2\x06\xab\x69\x80\x26\x1d\x2a\x86\x9a\x37\x1c\xf4\xf2\x01\x49\x7d\xfb\xa6\xab\x0c\x84\x8a\x76\xd5\xbd\xa8\x59\xfc\xf7\xb3\xae\xd6\x05\xb3\xa2\x3d\x7b\x47\x81\x2d\x7b\xed\x2e\x1d\xb5\x51\xe5\x74\x49\x14\xf8\x7f\xbc\x97\x57\x34\xdb\x0f\xfc\xf7\xbf\x89\x84\x20\xad\xad\x56\x25\x46\xd1\x58\xb1\x4a\xd5\x48\xd4\xa6\x46\xad\x1a\x35\x6a\x14\xa5\x76\x6d\x22\x54\x55\x6d\x35\x6a\xd7\xae\xd9\x2a\x4a\x6b\x6b\x51\x7b\x54\x8d\x9a\x8d\xad\x45\xad\x18\x21\xcf\xf9\xfd\x9f\xab\xe7\xe2\xb9\xfd\x9f\xf3\xb9\x7d\x9d\xcf\x7e\x9f\xf3\x06\x0c\x4c\x46\xbf\x55\xf5\x1e\x96\x0e\x2b\x8b\x5b\x82\xd6\x28\x90\x65\x94\x50\x0c\x8d\xfd\x1f\x78\x0c\x39\x0f\x00\x96\x8d\xfb\xbb\xab\x6c\x24\x42\xd5\x69\x13\xea\x14\x3c\x44\xa3\x34\x70\x06\xc8\xe8\xe1\xcd\xdc\x96\xa2\x96\xe6\xf1\x1f\xa6\x19\x16\x15\xb0\x4c\xb7\x9f\xf2\x47\x23\x04\x15\xdb\xe2\x51\x00\x08\x82\x26\x39\xe4\x8d\xed\x6d\x8f\x7a\x11\x2d\xfd\x89\x52\xdb\xc4\xbc\xb5\xb0\xd5\xd3\xbb\xdb\xed\x16\xce\xc2\x76\xd8\x7c\xda\x27\xf0\x9f\x43\x54\x0f\x86\x9a\x63\x3f\x65\x13\xdb\xea\x4d\x06\xa9\x30\x7a\x54\x34\x38\x50\x4e\x17\xd3\xa8\x7d\x31\x58\x60\xd5\xb0\xa7\xd6\x42\xc9\xe8\x20\xa1\xae\x0a\x26\xb9\x7f\xb9\x78\x1b\x6f\xa0\xe5\x1d\x84\xb1\x41\xc9\xf5\x0b\x9b\x71\x04\xbd\xfb\x61\x1a\x6a\xc9\xf2\x37\x7d\x18\x7a\xe8\x64\x5d\x44\x8f\xe9\x11\xf8\xb6\x57\x76\x83\x78\xa3\xfa\xc4\x0f\x40\x3f\x4d\x8b\x4f\xab\xf5\x60\x6e\xf3\xf2\x5f\x3c\x6b\x5d\x2d\x3d\x0e\x56\xc7\x2c\x16\x60\x74\x33\x31\x31\x89\xda\x85\x9c\x39\x35\x16\xdc\x77\x02\xea\x96\x94\x56\x8d\xd5\xef\x40\x1e\x29\x01\x92\x8c\x42\x40\x74\x52\x9d\x14\x72\x73\x7d\xc3\xbe\x57\x43\x3f\xb9\xc5\xed\x74\xb2\xaa\x6c\x23\x30\x43\x74\xe8\x09\xed\xb2\x9d\xef\x01\x05\xeb\x10\xae\xd5\xa2\x3e\xed\x5a\xed\xcf\xa3\xe7\xdf\x1a\xfb\xb3\xe5\x3d\x34\x18\xa1\xa9\x51\x1d\x48\x2c\x6e\x39\xe2\xb6\x23\x26\x44\xf9\xec\xf4\x65\xcf\x49\x51\x34\xb9\xc9\x1e\x01\xb0\xc9\xa2\x7a\xf6\x65\x6f\xed\xdb\x84\xfb\xc9\x1e\xdc\xa9\xbc\xf7\x97\x28\x92\x18\xea\xf3\x5a\x3b\x6c\x1d\xfe\x16\xef\x20\x9a\x9f\xce\xac\x75\xeb\xd6\xab\x1d\x1e\x60\x8d\x02\x49\x88\x00\xdb\xc2\xf8\x82\x40\x2a\x14\x69\x3f\xa8\x13\xe5\x2a\x60\x15\x4e\x06\x0d\x0a\xa5\x6b\x56\x8d\x31\x79\x38\xdf\x2e\x12\x30\x50\x56\x2b\x3a\xbd\x35\xbf\x2d\x13\xfa\xee\x87\x69\xe4\x67\x86\x7a\x2e\x13\xdf\x7c\x49\x03\x18\xbc\x42\x1c\x67\x1d\xc1\xfe\x58\x55\x96\x5c\x20\x1a\xda\x2b\x7c\xd9\xf0\xd9\xf4\xec\x27\xa1\x6b\xca\xfa\xd7\x77\xd2\xc4\x64\xe9\xf1\x17\x73\xfd\xd3\x1a\xde\x3e\x9a\x66\xfe\x03\xa7\x32\xd2\x2d\x51\x47\x05\x57\xb9\x8a\x93\x7d\x21\x82\xec\xff\x08\x55\xc7\x9f\x43\x06\xad\x0d\xe2\x75\x0f\x62\xa0\x15\x08\x0e\x88\x00\x7d\x60\x4c\xcd\x9d\x7d\x55\x95\xb0\x0f\xd5\xd6\xa7\x5b\x4e\x3b\x9c\xfe\x57\x87\x6a\x39\x40\x43\x7a\x67\x79\xa5\x20\xac\x43\xb7\xd1\xca\xba\x9f\x62\x80\xc7\xc7\x8d\xcb\x8d\xc8\xa3\xb5\x32\x19\x3e\x67\x0a\xdc\xe2\x75\x10\xb0\xd7\x17\x93\xae\x75\x2f\x1b\x12\x2c\xf0\x15\x41\x5a\xa2\xf2\x3e\x49\x43\x66\xa4\x4d\x2f\x84\xe2\x3a\xe3\x5b\x52\x54\x31\xd2\xdd\x36\x0f\xdd\x9d\x4f\xa7\xfc\xeb\x6a\x6b\x27\x1b\x6c\xbe\x7f\xfe\xc3\xc9\x51\xf6\xe9\x65\x94\x4e\x76\x1f\xa7\x81\xf9\xfc\x40\x20\x79\x59\xdc\xa6\x9c\x34\xf2\x82\x9d\x0c\x00\xb3\xc0\x12\x80\xa3\x15\x5c\x4c\x56\xda\x05\xc2\x76\x18\x98\x01\x7b\xb4\x2a\xe4\x50\x9a\x8c\x63\x62\x48\x82\xe2\x14\x80\x95\x98\xa8\x90\x31\x43\xd3\xc5\xd9\xc1\xd6\x8b\xae\x88\xa3\x84\xcd\x09\x52\xf1\xae\x8b\xc5\x06\x4d\x84\x38\xa7\x7c\xf8\xae\xcb\xd8\x29\x59\xc9\xea\x49\x98\xf5\x07\xbc\x40\x8e\xae\xa7\x96\x0a\x52\x0b\x8e\xe9\xfa\xc7\x96\xc3\x5c\x16\x09\x29\xa2\x4b\xb2\x2a\xe2\xdb\xba\xa9\x2d\xbc\x5c\x09\xe0\x82\xaa\x2b\xc4\x5b\x1a\xb3\x43\x7d\x4a\xde\x86\xc9\x12\x3e\x7c\x32\xd1\xf3\x30\xa2\xfe\x59\xbc\xeb\xc7\x6c\xa5\xe6\xa6\x20\x76\x9b\x7c\x2c\x6e\x5d\x4e\x7a\x53\x16\x23\x0f\x4c\x7b\xf2\x82\xbb\x76\x35\x0e\xef\x44\xe4\xfb\x41\xa0\x1d\x4d\xc5\x31\x38\xe7\x6b\xef\xcb\x61\x7d\xbe\x1a\x62\x92\xfb\x81\x1a\xe6\x97\xfd\xa6\xc7\x95\xfe\xc4\xea\x5a\x4b\x6e\xe1\xff\xa6\x05\xbb\x19\xe3\x16\xa0\xab\xf4\x74\x93\x54\x16\x6c\xbe\x5b\x1b\x1e\x58\x72\x34\xe6\x34\x56\xdd\xe1\xc9\x93\xb4\xc6\x80\x91\x40\xdf\x88\xb3\x3d\xec\xb6\x57\x58\x50\x1e\xdd\x53\x0e\x77\x16\x5b\x9c\x1f\x08\xf1\x6b\x7e\x77\x59\xb1\x39\x51\x2b\x84\xaf\x99\xd0\x69\xf9\xad\x8f\xad\x97\xbe\xbc\xec\x35\xb3\x20\xaf\xb5\xfe\x6a\x68\xa7\xc0\xb1\xe6\xc4\x00\x74\x7a\x6d\xd7\x84\xc0\x49\xf6\x06\x40\x0e\x1e\xc4\x8b\xe4\xb8\x8a\x2e\x58\x64\xf2\x14\x81\xd4\x89\x59\x06\xd9\xdf\x39\x4f\x33\x3b\x96\x5c\x1c\xfc\x5c\x25\xbd\x19\x9c\x25\x59\x8c\xb4\xf5\x41\xf9\xff\x42\x85\x93\x85\x08\xe4\x8d\x83\xb4\xe3\x8b\x17\xaf\x86\x23\x7a\xa3\xa8\x36\xdf\x46\x48\xf3\xe0\x1e\x2d\xa5\x78\xd3\x14\xe5\x9b\x7e\x6a\xef\xdd\xe3\x54\x92\xc9\xbb\x23\x69\x66\xa3\xf0\xbe\xcd\xd4\xf5\x5d\xbb\x2b\xe5\xe1\x15\x81\x3e\xc9\xe4\x82\xce\xd7\xc3\xaf\x52\x70\x96\x12\x17\xe4\x73\x41\xd9\x2d\xf2\xf1\xc4\xe4\xf1\x5d\x39\x06\xd0\x98\x01\xc6\x86\x8f\x87\xe4\x36\x22\x6e\x74\x8a\x6d\x87\x7f\x55\xc5\x34\x8d\x6b\xce\xde\xc9\x41\x81\x45\x12\x45\xdb\xda\x52\x03\x09\x0d\xf3\x7f\x64\x7d\xae\x5a\xe6\x1d\x2a\xde\xe3\xb9\xcf\xb8\x27\x97\xec\x68\xc6\xd0\x5e\xf5\xa0\xd3\x46\x11\x35\xa3\x1c\xf6\xde\xc1\x43\xc6\xf7\xa9\x0f\x8a\x60\x0d\x02\x5d\x54\x16\x7c\xf8\x06\x00\x7a\x59\xeb\x6a\xb1\x9d\x54\x6c\xf3\x1b\xbd\xad\xde\xbd\x3d\x36\xb4\xe5\xd6\xbe\xaf\x07\x0f\xa8\xd6\xe2\xb7\x4d\x08\xd9\xd0\x17\xa1\x96\x74\x1b\x0f\x51\x7d\x5d\xe6\x19\x7f\x73\x99\x73\xfa\xb7\xf4\x16\xce\x53\xc9\xbe\x65\x67\xed\x7f\x56\x5b\x42\x3b\x42\x00\x07\xc0\x88\x1c\x91\xcf\x4f\xcd\x6b\xfb\x40\x0f\xc3\x76\x55\x8e\x15\xac\x8e\xb9\x66\xfd\xeb\x7b\xdb\xe5\xd9\xb3\xb5\x5f\x81\x1a\xe6\x9d\x75\x9d\x65\x2a\xda\x80\x58\x8c\x5b\x50\x2c\xa9\xf0\x2d\x55\xf8\xc7\x54\x62\x18\xa9\x69\x45\x41\xa1\x2f\x50\x46\x83\xe1\xa9\x27\x2f\x65\x8a\x02\xb8\x28\x36\xe2\xe4\x54\x42\x2e\x22\x2f\x81\x01\x1e\x76\xa8\xe0\xfe\x49\x23\xa4\x21\xdc\xea\x53\x3e\x75\xa1\x93\x82\x53\xd5\xad\xfa\xe7\x77\x34\x7a\xe6\x27\xa3\x8f\xe7\xe3\x7a\xdb\x6a\xbc\xbd\x73\x35\x1f\x3d\x4c\x8f\xbb\xfc\xf8\xd5\xe4\x6b\x4f\x91\xda\x3a\x95\xf2\x67\xa3\x0b\x3b\x4b\x82\x49\x47\x08\xc0\x0f\x95\xbe\x35\x82\xd1\x5e\x7f\x6f\xa8\x8a\x49\x14\xc4\x10\xea\x4f\xb6\xf4\xd6\x26\x65\x9f\xd5\x2d\xa2\x66\xfb\x39\x92\xd7\x2d\xf5\x7c\x7b\x18\x52\x70\x9c\x06\xcd\x8f\x2b\x49\xeb\x2c\x52\x01\x1e\x95\x4b\x61\x4d\xe6\xbe\xfe\xa8\xf4\xc5\x3a\x93\x65\x15\x0d\x20\x2a\x75\xa9\xfc\x11\x00\x40\x3b\xa5\x7c\x68\x22\x11\xdc\x54\xec\x17\x6d\x2a\x4a\xa5\xfa\x47\xdf\x1a\xb3\x5a\x2d\x26\x6a\xad\x2a\xb7\x3c\xc4\xea\x27\x77\xb3\x94\x42\x53\xb5\xea\xa4\x87\x9e\x5e\x32\x24\xdf\xcb\x5d\x24\x3b\x57\x9f\x2e\x92\x57\xd4\x09\xeb\xf8\x3e\x01\x5f\x05\x90\x98\xad\x12\xc0\x68\x97\xde\x0e\xb9\xa6\x32\x48\x0b\xa0\xad\x20\x51\xdf\x23\x14\x79\x31\xcb\xfc\xe1\xfe\x8b\x9f\xcf\x7b\x9e\x1d\x5b\xbe\x72\x3f\x92\x67\x52\x7d\x73\xd8\x7a\xef\x36\x23\xa0\x3a\x25\xbc\x57\x50\xf2\x2f\x9f\xcb\x81\x94\xff\x94\x65\x5e\xdc\xdf\xe7\x69\xb3\x1b\x54\x54\xcf\x51\xc1\x05\xad\x05\xe3\x4f\x33\xbb\x5e\x5f\xed\xb9\xc4\x2f\xaf\x9f\xfa\x07\xb0\xa7\x43\x57\xb5\x3e\xdb\x0d\xbc\xaf\x62\xb3\xe8\x6a\x43\x5b\xde\x38\x6d\x2a\x69\xb6\x75\x36\x3e\xf9\xf9\xb8\xeb\x91\x4e\x68\xef\xfe\xb4\x99\x8c\x5e\x5e\x51\x8a\x03\x6f\xad\xc4\x81\x26\x38\x6c\x66\x9f\x5c\x8b\x58\xac\x22\x7f\x19\xc9\xf8\x95\x08\x1c\x80\x92\x20\x6b\xbf\x07\x3c\x17\xe2\x6e\x82\xe1\x1b\x47\x90\x28\x15\xa4\x0e\xff\xca\xce\xeb\xa1\x3b\x1e\xee\x6b\x6d\xad\xb3\xa3\x3b\xe5\x39\x1b\xa9\x6d\x9f\xd8\xb1\xda\x38\x9c\x51\xe0\x52\xf9\xef\xa2\xcf\x0c\xa4\x95\xbe\xfd\xf0\xc0\xa4\x23\x59\xa2\xb7\xf5\x2a\x9a\xd0\xfb\x0d\x73\xbf\xa6\x03\x3d\xd2\x81\x64\x40\xfb\xde\xcf\xfd\xf9\xd2\x3f\x26\x99\x8e\xdd\x58\xcd\x87\x99\x18\x66\xf1\xdd\xba\x07\x62\xa8\xed\xfe\xed\xf3\xf8\xe8\xb5\xa9\xad\xd9\xa1\x92\xf4\xb3\xb4\xaa\x81\x85\x9f\x14\x67\xde\xb2\x8d\x23\xb6\x7a\xeb\xb7\xf5\x1c\x43\xef\xec\x5e\x9c\xb7\xb7\x19\x5d\x2c\xf2\x9e\x02\xb7\x7c\x5b\x80\x4c\x3a\xdc\xe0\xfa\x35\x82\x02\x1b\x16\xf2\xf5\x15\xf4\xdb\x27\x6a\x6e\xda\x88\x4a\x99\x8b\xd9\xd6\xa1\x39\xd9\x5a\x93\xa3\x8c\x23\x9c\xde\x37\xa5\x95\x9b\x2a\xda\x60\x3d\xcc\x6a\x42\x51\x8c\xbe\x85\x3c\x59\xed\xdb\xa1\xf2\xcc\xc8\x99\xfe\x27\xda\x9d\x65\xbb\x1e\x0f\xff\x54\xaa\x22\xeb\x08\xc3\x6f\x1d\x72\x6f\xf1\x1f\x04\x67\x5e\xe5\x65\x6a\x48\xef\x78\xa9\xcb\x1c\x2f\x7b\x19\x17\x85\xbb\x91\xde\x20\xb7\xb4\x8d\x86\xaa\x26\x8f\x4a\x56\x4b\x83\x5a\x9d\x2b\xfd\x3f\x8a\x05\x77\xc3\x36\x9e\xc4\x22\xcd\x62\x20\xcc\xc3\x0f\x15\xd4\x14\x4e\xbd\xc7\x2e\xa7\xc2\x43\xcb\x8e\x33\x32\xe9\x70\x5f\xb1\x20\xcf\xe8\xb8\x9b\xe0\x2e\x77\xfc\x5b\x58\x4c\x34\xa4\xee\x95\xa8\xdf\xd1\x82\xd3\xce\x93\x4f\x09\x83\xb2\xba\xf9\x6b\xe8\xdb\x7b\x56\x49\xf3\x21\x11\xee\x66\x0c\xf9\x0d\xd2\x97\x86\x93\x70\x25\xc5\xfe\x13\x7d\x59\xda\x9d\x4b\xeb\xe1\x27\xea\x5f\x3b\x0a\x42\x22\xb0\x32\x94\xd1\x7f\x51\x9a\xd9\x6e\xe2\xdb\xfc\x0a\xda\x70\xe5\xb3\x83\xa6\x99\x73\x2d\xb1\xb0\x1e\x88\xa1\x19\xa7\xc5\x71\x90\x89\xcd\x43\xd7\x77\xb2\xb4\x8d\xde\x53\xfb\x33\x95\x41\x18\x1b\x03\x48\xf3\xac\xcc\xd9\xc9\xf5\x4d\x8d\x46\xe9\xcb\x8f\x74\x35\xb7\xc8\xbf\x88\xb5\x32\x4a\x7b\xe6\xae\x4a\x98\xfa\x37\xf4\xb1\xb8\xdb\xa0\x76\xf4\xe3\x41\x7a\x06\x7a\x56\x5a\x9a\xec\x78\xfe\x97\x38\x7b\x7d\xcc\x4f\xc7\x57\x36\x33\xfd\xad\x47\xbf\x23\x4e\x27\x73\x8a\x44\xde\xc2\xe4\x6c\x54\x46\x70\xbd\x5f\x29\x2c\x59\xf2\x3f\x49\x5f\xbe\x77\xa2\xe4\xa4\x32\x0f\x7f\x6c\xdf\x79\xbb\x82\x33\x82\xa2\x8c\x89\x22\x32\xaa\xe3\x3d\x29\xc2\x4b\xf0\xb7\x61\xbe\xf2\xce\xe3\x97\xf0\x40\x37\xae\x48\xe5\x94\xb1\x91\x20\xdd\x76\xf3\x5b\xac\x66\x1c\xb3\x16\x63\x86\x4f\x9d\xac\x8e\x73\x36\x27\xbe\x70\x94\x8d\x08\xe3\xab\x7e\x6b\x87\x4b\xf3\x83\xda\x1f\x9d\x85\x1f\x2f\xfc\x9d\x25\xef\x39\x8f\xcd\x2c\xa9\xaa\x1f\x80\x14\x36\xc4\x8b\x44\x0d\x81\x41\x2a\x67\x83\xe1\x88\xd7\xf3\x20\xbb\x5c\xdc\x7b\x53\xcc\x74\x00\xbf\x05\x5a\x68\x8b\xba\x0f\x8c\x31\xa5\x73\xfe\x77\x94\x3b\xf8\xa4\xf6\x8f\xd3\x82\xf9\xfb\xc9\xca\xa6\xbb\x4b\x8f\x92\x00\xa5\xb2\x3a\x2e\x83\x66\x82\xf0\xfe\x87\xea\xbd\x17\xf7\x72\x95\x85\x2c\x3b\x53\xab\xf1\x5f\x3e\x9a\xf8\x6e\x73\x33\x29\x15\xbf\x8a\x28\xa7\x67\x4b\xd7\x94\x3b\x16\xa3\x90\xb3\xa1\xeb\x2c\xef\x51\x0a\xca\x4b\x6f\xc9\x70\xd8\x63\x9a\x3f\xe7\x28\xdb\x4a\xfb\x9c\xde\x6a\x3d\x39\xa5\xed\x7e\xa4\xfe\xd3\xd1\x5f\x37\x5f\xa9\x0c\x7a\x98\xce\xdb\x67\x22\xd0\xc7\xbb\x19\xf3\xd8\x41\x81\xbf\xac\xae\x2d\xfb\xe0\xd2\x21\x2e\x0c\xb4\x01\xcd\xa4\x30\x00\x72\x98\xf8\x62\x71\xce\xbf\xc6\xca\x61\x31\x6b\x50\x07\x16\xec\xbe\xf8\x8e\xa5\x78\x4b\x5b\xea\xc5\x99\xb6\x51\x6b\xfc\x1d\x88\x58\xce\xfb\xfd\x25\x3b\xcc\x6a\x63\xef\xd7\xe8\xa2\xd8\x5e\xf7\x78\xe5\x6a\xf6\x90\x27\xca\xeb\x7f\xdd\x59\xe7\xb4\xe7\x61\x56\x9a\x23\xec\x31\xaf\x70\x84\x97\xac\x3d\x07\x8c\xfc\x17\x39\xc7\xd3\xe5\x71\x4f\xf6\x34\x24\xce\x5c\x28\xc9\xd3\x7b\xd9\x4a\x26\x53\x4f\x82\xec\xaa\x4b\x6d\x6e\xce\xf6\x07\xf5\xd8\xcb\xc6\xe1\x16\x7e\x50\x04\x19\x31\x38\xe4\x52\xd7\xa9\xde\x70\x00\xd6\xdf\x7d\xc4\x04\xe9\xba\x29\x59\xf8\x5e\x0e\xd1\xd9\x88\x90\x9b\x47\x1c\x28\xf4\x54\x31\x99\xcc\x31\x5f\xc0\x6b\x70\xd2\xa3\x5c\x3e\x6a\x5e\x64\xdb\xbe\x16\x23\x68\xcc\x1d\xdf\x1b\x49\x9d\xf2\xc5\x7a\xd2\xa3\xed\x43\x6e\xe8\xb9\xc5\xbd\xf6\x4a\xa8\xef\xac\x6b\xda\x08\x9c\x11\x99\xa4\xda\x28\xf7\x9c\x43\x70\x5f\xc8\xd6\x7b\xca\xfe\xd1\x84\xe9\x37\x75\xa3\xf5\xec\x17\xec\xe1\x3e\x95\x4b\xdc\xa6\x22\x8b\x8d\x93\xf6\xe2\x9d\x72\x6f\xf1\x76\x79\xf8\x93\xc0\xf1\x11\x02\xfa\x29\x49\x29\x88\x5b\xf6\xe4\xdf\xb3\xa1\xe5\x2d\xeb\x9b\x0d\xcc\x3e\xd5\x35\x19\xe9\x16\x5b\x69\x39\x03\x3f\x45\x13\xe7\xc7\x29\x82\xee\xfe\xad\xda\xc9\xc8\xc4\xf1\x26\xf3\xff\xaa\xee\x7f\x91\x23\xc1\x88\xfb\xc5\x41\x5e\x2a\x12\xae\x0e\x3f\x5a\xf8\x3b\x1b\x0a\x38\x77\x2d\x55\x47\x08\x01\x4e\x5c\xcc\xc0\xfa\x20\x1b\x2f\xb2\xed\x1e\xba\xcd\x04\xad\xc3\xbf\x92\x6e\xb1\xb5\xf5\xe4\xce\x8c\x6c\xfe\x1d\xc9\xf6\x14\xbf\x99\xae\xe2\x5d\x3a\x10\x6e\x67\x18\x8c\x75\x48\x65\x2a\xf7\x53\x84\x7e\xc9\xe3\x7d\x66\xa5\xf6\x67\xba\x62\xfa\xc9\x46\xc8\x2e\x72\xfb\x3a\x97\x13\x49\xfd\x1b\x0d\x57\xe2\xcb\xd1\x55\x94\x1d\xa9\x3a\x9a\x2f\x4d\x58\x2f\x30\x24\xe7\xc1\xe5\x7b\xb9\xb0\x45\xed\x7c\xea\x2e\x6f\xb1\x09\x56\xb7\x49\x0b\xf7\xf2\x57\xb4\xee\x7e\xa2\x84\x0f\x32\xdd\x65\xdb\xf2\x65\x66\x2c\x7a\xa6\x99\x51\x6a\xa8\x3e\x70\x1a\xff\x2f\xf7\xcf\x52\x3e\x93\x27\x62\xc2\x78\x9c\x91\x2c\x1e\x71\xf9\xb7\x7a\x36\x9c\xb8\xa9\x7d\xce\x70\xe8\x71\xe5\xab\x15\xee\x36\x18\xda\x01\x95\x28\x48\xf3\xbc\x2f\xd8\x59\xdc\x82\x23\x24\xfb\x99\x6f\x96\x84\x6e\xef\x08\x07\xbf\xf9\xa4\xe3\x3e\x48\xdb\x14\xa5\x49\xdd\x71\x03\x64\xc6\xb8\xa9\x09\x58\x1a\x98\x13\x20\x28\x25\xa6\x60\xee\xd4\x3b\x35\xbc\xcf\xb8\x4c\xb8\x1a\x4d\xac\xdf\x71\xb6\x58\xc9\xe2\x9d\x8c\xd6\x9f\xdd\x5d\xb7\xd6\x21\x28\x95\x49\xde\x74\x03\x92\xb8\xc5\x62\xf2\x05\x2f\x14\x5c\xed\x73\xf7\x32\xe5\x74\xf3\x51\xe6\x19\x2e\xe9\xbd\x87\x85\xd5\x0e\xd7\xdc\x1a\x5e\xfb\xcc\xd4\x2d\x4f\xdc\x88\x9f\x70\x8c\x4f\x75\x7c\x9e\xfa\xdf\xf5\xa5\x3a\x44\x68\xf7\x31\x52\x53\x26\x7f\xcd\x4c\xcb\x3a\x9f\x80\x97\xd5\x79\x67\xfe\x23\xaf\x88\x5b\x57\x91\x12\xcf\xcd\x77\xe9\xf5\x1a\x29\x1f\x89\x75\xe4\x44\xd8\x7c\xa5\xe5\xc7\x42\x8a\xfd\x18\x75\xb5\xaf\xfe\x61\x00\xc7\x22\x9b\xef\x68\xac\xe5\x4e\x7d\xfa\xb8\x5b\x35\xd9\xb0\xce\x8c\xad\xd7\x5a\x44\x48\x32\xf3\x50\x43\x18\x3b\x52\x91\xa1\x5a\x1d\xe9\x90\x59\xbc\xa6\x25\x7d\xb9\x7f\xea\xd5\x01\x50\xaa\x63\xe2\xcb\xd8\x5e\x87\x6f\xf6\x85\x9b\xa8\xc2\xcd\xf2\x42\xc7\xca\xc2\xbf\xa8\xae\x83\x37\x70\x2e\xb5\x93\x1a\x5e\xb0\x19\x83\x42\xc1\x7d\x5f\x28\x05\x80\x5b\x71\x08\x90\xc3\xa9\xa9\x16\xf5\xdf\x9c\xa0\xe8\x8a\xc3\xa1\x2c\x30\x2c\x6a\xf4\xa5\xde\x85\x15\x39\x15\xec\x89\x4e\x92\xdc\xc2\x1c\x4a\xc2\xce\x39\xcc\x26\x7a\x34\xb1\x48\xa8\x5a\x12\x2f\x53\x71\x31\xac\x4e\x53\x5e\xf8\x14\x0e\x42\xbf\x84\xa4\x01\x86\x58\xbc\xe4\x88\x5a\x80\xd8\xed\x71\xa3\xaf\xd7\xe8\x58\xff\x92\xd7\x46\x76\xd3\xc9\x34\x41\x4c\x60\x09\x38\x5a\xc3\xb6\xea\x2f\xf8\xb4\x93\x2e\x0c\xf9\x85\x17\x79\xf6\x9c\x31\xf9\x80\x9f\xe8\x51\xde\x53\xf4\x6b\x24\x00\x73\x83\xec\xfd\xee\x22\xf0\x21\x1d\x87\xcd\x4c\xff\xe4\x53\x93\x38\xb3\x2b\xf9\x6b\x02\xa1\x89\x7d\x18\xa1\xe4\x02\x06\xe0\x0a\x0e\xd0\xdc\x88\xf6\x8c\x89\xaa\x99\x02\x60\x9e\xd4\x48\xc0\x01\x49\xdd\xc4\xd8\x91\x0a\x09\x01\xf6\x6e\x68\xea\xd3\x3b\xd3\x82\x45\xb1\x8e\x3a\xf4\x33\x8c\x10\x2e\xad\x8e\x8c\xdc\x75\x2a\xa0\xe3\xce\x02\x15\xbb\x26\xd8\xca\x97\xe8\xcf\x04\xa8\x00\x6c\x9a\xb6\x10\x18\x1f\x23\x1b\xc8\x56\x15\xaf\x72\x63\xec\x1d\x24\x55\xfb\x51\xf2\x4e\xb2\x36\x9a\x1a\xa7\xc7\x3f\xf6\x12\x92\x0b\xb0\xe5\x72\x9c\xa9\xf2\xbc\x25\x56\x9c\x73\xe0\xd4\xc3\xb2\x92\x72\xfa\x83\x8c\x08\x88\xdd\x55\xd2\x5d\xb9\x99\xe7\x0c\x23\x84\x98\x11\xa3\x3e\x38\x1e\xbc\x84\x67\xe7\x05\xa7\xd4\x7d\x25\x50\x3b\xf4\x2a\xee\x40\x41\x6d\x19\x07\xf8\xf6\x66\x23\x77\xd9\xc6\x8f\x93\x19\xc7\xd5\xc1\xe6\x66\xe6\xc5\x6c\x8c\x99\xb7\x60\xbe\x70\x69\x28\x35\x8a\x1a\x21\x7f\x1a\xd5\x97\x5a\x86\x15\x62\x95\xcf\x67\x92\xac\x17\x8f\x88\x23\x5d\x89\xc9\x25\x2a\xfd\xbc\x98\x4b\xb2\xe6\xa3\x0f\xe7\x96\x2c\xd1\x04\xcf\x99\x7c\x5d\x78\xb6\x70\xf1\x31\xbf\x56\x96\xec\xf6\x65\x69\x47\x85\x4c\xf6\x63\x66\x06\x49\x5d\x15\x58\xd4\xc5\x9d\x13\x77\xbb\x5b\x83\x89\x85\x36\x4d\xf5\x0e\x35\x27\xd6\xfb\x97\x22\xde\xe0\x2e\xa3\xe2\xf6\x0c\x62\x22\x97\xda\x8f\x3a\xee\x01\x36\xd0\x90\x81\xd6\x1e\xf9\xd9\xb3\x0d\x9d\x16\xbe\xdc\xce\xcf\x77\xb5\xd8\x5d\xfb\x35\x83\xc4\xb6\xdb\x9c\xa4\x23\x95\x87\xd0\x48\x23\xca\xb2\xf1\xca\xac\xce\xc8\xc4\x29\x8b\xf0\x33\x42\xf6\x51\xfb\xed\xbe\xb3\x17\xf8\x43\x37\x90\xae\xdb\x55\xc8\xe8\x9b\xda\xa4\x19\x48\xfc\xd7\x28\x4d\x7a\x90\x61\x4a\x4a\x5b\x0a\xcd\x00\x17\x2d\x58\xef\x86\xf2\xe0\x59\x83\xb7\x80\x1c\x1a\xdc\x2f\x92\xef\xc8\xa2\x65\x5c\xc5\x1d\x83\x3c\x78\xf5\xe7\xeb\x79\xf6\x2f\xe8\x6e\x64\xfe\x82\x33\xe9\x54\xdc\xec\x57\x7e\x53\x85\x33\xc6\x43\x1f\x40\xdc\xdf\x02\x80\x02\x20\xd3\xd1\x00\xd0\x4d\xe2\xe1\x05\x90\xb7\x0f\xee\xb8\x88\x37\xe3\xf4\xf0\x6f\xdc\xd8\x5a\x5a\x1f\xee\x3d\x83\x26\x37\xae\x7e\xa8\x1a\x7e\xf7\x72\x01\x80\xbc\x51\x86\x80\x16\xa4\xf1\xdd\xe2\xe9\xbf\xc2\xcf\x09\x96\x47\xe4\xfa\xec\x83\x46\xe8\x73\x56\xdf\x94\xcb\x14\x14\x48\x5d\x07\x4c\xe1\xbb\x8e\x60\x06\x3e\xd2\x72\x44\x53\xfb\x90\x2f\x2f\xa4\x79\x92\x98\x07\xee\x31\x82\x43\xd5\x9c\x42\x04\x2e\xe6\xf1\xfe\xd3\xa3\xa7\xc9\x0c\xe8\xc9\x3d\x17\x56\x7f\x6a\x64\x1f\x69\x49\x6a\x93\xcb\xa1\xb5\xb7\xbd\x69\xf6\x6c\x9b\x38\x95\xad\xec\xb1\xd9\x02\x87\x58\x00\xbd\x7c\x5b\x20\x58\x36\x58\xed\x89\x51\x01\x95\xed\x55\x0c\xc8\x53\x8b\x4d\x82\x3f\x89\x99\x46\x53\xe4\xb6\x30\x75\x4c\x05\xbb\x34\xd1\x7b\x81\x1b\xfa\x3b\x5b\x69\xc0\x39\x27\x13\x02\x13\x80\xf1\xf6\xc5\xf1\x52\xc7\x94\x0e\x0f\x24\xb2\xfe\xa5\x0b\x0f\x2a\xba\x5c\x28\x52\x3b\xb7\xeb\x70\xb8\x2e\x6f\x42\xee\x4a\x5e\x03\x6d\xcc\x90\x11\x78\xb0\xed\x33\x2c\xc8\xf3\x25\x5b\x0a\x57\xe6\x1a\x48\x93\x48\x49\x4f\x9f\x80\x9a\xcb\xc5\xfb\x2f\x95\x17\x3a\x41\x74\xa5\x42\xd2\x1d\x19\x83\xa9\x91\x7d\x55\xcb\x52\x9b\x3b\x8f\x2f\x04\x11\xd5\x0d\x61\xa4\x8f\xdb\xf1\xf9\x26\x55\xb6\xfa\x8c\xce\x00\x86\x42\x2f\x2e\x9c\x0d\x0c\x53\x04\xc6\xf8\x3b\x3c\x77\x80\x0e\x0e\xc0\x07\x44\x83\xd3\xe9\x89\x09\x04\x15\x45\x81\x13\xa8\xca\x52\x10\x8e\x24\x8b\x99\x7d\xba\xf2\xa8\x0e\xf8\x03\x75\xc2\x8f\x0e\x08\x16\xf2\x26\x8c\x1f\x34\x36\x1e\x78\xe4\xf5\xfd\x72\xef\xf1\x14\x67\xf8\xf9\x6a\xdd\x45\x49\xaf\xc3\x15\x79\x4a\xe5\xa7\xa4\xa2\x9d\xf0\x39\x10\x7a\xbd\x00\x68\x8a\x82\xd3\x83\x5c\xb8\x23\xb0\x79\xc0\xd5\x5c\x08\x76\xec\x47\x60\xb0\xf8\x3a\xa2\xa9\xa2\xbc\x32\x07\xb5\x71\x05\x93\xb4\x29\x50\x30\xae\xdc\x77\xa6\xaf\xd4\x36\x7e\xb6\x79\x3e\x95\xb5\x8b\x70\xba\x78\xa8\x85\xf4\x3d\xa5\x93\xbc\xb4\xfb\xa3\x7c\xf3\x1c\x61\x46\xf6\x01\xd3\xe0\x74\xfa\x71\x2b\x18\xdc\x58\x2a\xf8\xfc\xec\xc7\xb9\x2e\xe5\x0b\xf3\xf6\xfb\x8d\x24\x0a\xad\x62\x7b\xc8\xe0\xb8\x5c\xc3\x28\x27\x0e\x39\x11\x09\x49\x12\xcd\x35\x43\x88\xce\x22\x2e\x49\x16\x07\x82\xf9\xe2\xbf\xf2\xbf\x54\x94\x77\xbc\x5c\xf6\xc0\xd4\xc2\x62\x38\xc9\x1b\x3f\xdb\xf3\xc6\xdb\x79\x9a\xce\xf2\x43\x0d\x00\x2b\x6f\xca\x15\xa8\x6a\x38\xb7\x06\x7c\x6f\x94\xf3\x7d\xf6\xc1\x55\x0e\x4a\x71\x61\x3c\x6e\x55\x6a\xee\x26\x0e\x69\x84\x1b\x29\xfe\x92\x4d\xe4\x0e\x6b\xfa\x49\xfa\xfe\xc2\xcc\x12\xf1\x67\xbd\xe5\xef\xd3\xaa\xff\xfa\x92\x08\xa7\xa2\xf4\x38\xef\x9e\x24\x73\xe1\xc1\xb6\x34\x6c\x52\xfc\x49\xe9\xb4\x1d\x6f\x89\xb4\x23\x14\x02\x17\xb1\xab\x53\x74\xde\x97\x6d\x95\x31\xa5\x9b\x52\x46\xeb\x3f\x0a\x19\xfd\x69\x90\x7d\x8e\x77\xe9\xe9\x65\xa4\xa6\xc9\x6e\x25\xa1\xe4\xf5\x29\x0e\xe5\xd0\x96\x0d\x85\xba\x54\xb3\x0b\xad\x9e\xc5\xe7\x61\x84\xfc\x69\x2f\xc6\x78\x32\x09\xf7\x74\xf1\x26\x5f\x49\x91\x6d\x7d\xa5\xed\xb4\x39\xda\x4d\x9c\xeb\x19\x2b\xfc\x0b\xad\xfa\x1d\xb8\xc5\xf2\xa8\xdc\x50\xf5\x64\x7d\x43\x06\x51\xb2\x76\xbe\x7c\xcb\xff\x5e\xe2\x2a\x5a\x04\x87\x4c\xd5\x00\x6b\x9a\xb1\x54\xff\x6d\x39\x5f\xca\xa8\xac\xa6\xfb\x14\xbb\x53\x5a\x1d\xcb\xe1\x6b\x75\x36\xd6\xa5\xb4\x0c\x7b\x78\xe1\xe5\x1f\x9e\x32\x80\xf8\x78\xb9\xce\x76\x08\xe8\xb2\xdf\x55\x01\x1b\x26\x76\x8c\x3a\xa9\x8c\x75\xbe\x83\x6f\xa9\x8f\xce\x0d\x05\x07\xbb\x9b\x18\x0f\xe2\xd8\x83\x30\xa2\x28\xea\xbb\x3c\x38\x64\x2a\x4f\xc1\xb8\xf8\x63\x7c\x75\xe2\x4f\x0b\xe5\x30\xb2\x05\xe1\xf1\x97\x40\x8f\x89\xdd\x91\xbd\xc4\x1a\x52\x11\x2f\xf2\xf3\x56\xa2\xc0\xf9\x37\xb3\x4b\x00\xd7\x13\xce\x8d\x05\xa1\x9f\x2b\x74\x9b\x62\xf3\x3c\xc3\x78\x21\x30\x4f\xfd\xe4\x05\xbb\x9f\xb5\x7f\xd6\x5b\xae\xeb\x95\xb8\x53\x0e\xfe\x90\x93\x78\x9f\x83\xc6\x5b\x71\xe1\x35\x17\xd0\x01\xab\x9d\x29\x07\x9d\x8b\xf3\xe5\xe4\xbf\x19\x03\xc7\x19\xee\xf7\x5e\xdf\xd8\xf4\x22\xbe\xe0\x1b\xdc\x4b\xbc\x76\xa2\x35\xbb\x36\xb5\xbe\x4f\x85\x21\x28\xd7\x2e\xf5\x3f\xed\x7f\xf9\x1c\xd2\xc5\x17\x1f\x87\xe6\xa7\xbf\x42\xbb\x31\xcf\x10\x0d\xad\xea\x1b\x03\x03\xaf\x34\xdf\x1b\x63\x3f\x3e\x91\x71\xff\xbb\x7a\x31\x58\x39\x55\x71\x76\x90\xae\x41\x2b\x04\xa1\x5f\x21\xd1\x43\xa2\x8a\xf6\xd7\x9e\x0e\x07\x93\x36\x5d\xcf\xbb\x05\xd5\x1e\x4f\x98\xa8\x3e\x4c\x21\x98\x84\xce\x4d\x22\x12\x3c\x1b\x10\x1c\x17\x76\xd1\x88\x87\x97\xb0\x20\xa0\x34\x97\x81\x09\x32\xd1\x4f\x55\xf6\x02\x0a\xf3\xd4\x2b\xb1\x91\x8a\xec\x71\xea\x9c\x77\x61\x23\x69\xb2\xbc\x76\x05\xc9\x7c\x18\x40\xe2\x73\x44\x19\x31\x9f\x63\x9d\x77\xd7\x5b\x04\x11\x0f\xdd\x2f\x56\x2e\x8f\x7a\x16\xff\xae\xb5\x54\xe3\xbe\x73\x24\x29\xf9\x87\xfb\x3e\xb1\x91\x5e\x4b\xac\x0c\x73\x10\x31\x00\x06\x81\xbb\x59\xd4\x25\x0d\x2c\x09\x2f\x28\x7e\x13\x02\xb2\x0d\x3a\x8a\xc3\x33\x8f\x2a\x7f\x41\x3d\x7e\x19\xa9\xde\x25\x18\x4f\xca\x8d\xbd\x41\xd2\xd0\x80\x20\x81\xb7\x14\x04\x72\xb5\x05\xa6\x2f\x42\x4a\x2e\x2e\xf5\x3d\xa4\xc3\x48\x9e\x63\x61\x1b\x37\x5f\x46\x2b\xbf\xcb\xf1\x18\x5f\xb8\x2c\xee\x0f\x73\x26\x25\x2b\x79\xee\xe7\x49\xf0\xf2\x80\x70\x97\x0f\xc1\xff\xde\xe3\x68\xbe\x7f\x81\xa6\xa8\x50\x08\x00\x99\x90\x0e\xab\xa7\xce\xc2\xfe\xc4\xea\x2f\xb2\xa8\x1e\x5a\xa8\x86\xb9\xe9\xed\x31\xc1\xd0\x45\x98\xa4\x3b\x44\x37\xe8\x4a\x6e\xc6\x27\x9a\x9d\x48\x7d\x33\x8b\x7c\xb7\x6b\x73\xd7\xb1\x09\xf3\xa4\xb7\x5e\x89\x5f\xce\xba\xff\x84\x89\x4b\x76\xe9\x85\x8d\xc1\xc9\x01\x29\x88\xcf\xa4\x64\xa5\x51\x0a\xb4\x7d\xdc\xf2\x95\x98\x1d\xc6\x0d\x7d\x98\xee\x3f\x4a\x00\xf0\xd8\x6c\x69\x35\xf7\x25\xba\x3a\x79\x22\xa9\x9b\x74\x19\xd5\x58\x8c\xbb\xeb\xba\x60\x92\x39\x38\xed\x76\xa7\xfd\x48\x41\xda\xe1\x32\x44\x95\x6c\xf8\x59\xe7\xe4\xda\x0b\x13\xe1\xe9\x8c\x62\x8f\x12\xc4\x25\xd7\xbd\x7d\x9d\xd9\xdf\xd7\x58\x80\xa6\x2d\x0d\x75\x4a\x45\x40\x6a\x90\xde\x03\x88\x48\xfd\x0c\xd2\x6a\xa0\xe8\xe2\xef\xe4\x4f\xec\xf8\x37\x2a\x37\x64\x55\xb9\xb5\xed\x9f\x30\xb8\xfe\x9f\x5d\x0a\xe9\xe5\xc3\xb1\x40\x19\xf8\x29\xcb\xc6\x3d\x36\x5a\xea\xb2\x89\xb7\xb8\xc5\x66\x6d\xdc\x44\xe4\xf4\x1f\xaa\x49\xbf\xf5\x7f\x8e\x40\x18\xda\x23\x6a\x4e\x52\xe3\x94\x6a\xce\x92\x3f\x60\x41\x68\x02\x7f\x0c\x6e\x4f\x93\xa7\x19\x37\x8a\xe4\xb1\x7d\x96\x68\xc8\x63\x0b\xe0\xde\x51\x49\x07\x57\x97\xda\xb4\xfa\x39\xcc\x35\x5b\x4c\x79\xb0\xb8\x39\xb2\xeb\xd0\xf2\xc1\x00\xc1\x14\xd9\x2b\xd6\x0b\xdf\x03\x39\x13\x75\x8e\x33\xf4\xb5\x77\x9c\x2c\x57\xfd\x36\xd8\x8e\xbd\xae\x84\xdf\xc7\x23\x6a\xce\x92\x8d\x22\xc0\xb6\x7a\x6c\x4b\x57\x62\xd6\xa8\x8a\xa9\x23\x36\x1a\x3b\x03\x4c\x3a\xcb\xe9\xd1\xf0\xfc\xb5\x9f\xdb\x67\xb3\x43\x75\x5e\x8f\x5b\x4b\x17\x77\x68\x40\x7e\xe3\xc4\x44\xe4\xb5\x78\x64\x8a\xac\x9f\xf5\xcc\xf7\x60\xce\x44\x9d\xe1\x0c\xfd\x57\xc3\xa6\x46\xeb\x76\xd0\xf6\xa6\x7f\xfe\x05\x8b\x7b\xbd\x9f\x8e\xd4\xba\xbd\x9c\x4f\x92\x1f\x53\x42\x3b\x72\x92\xef\xcb\x22\x6f\x6a\xa1\x45\x0d\xd1\xdf\xf9\x6c\x7b\x86\xaf\x4c\x94\x35\x57\xfa\x5d\xf4\x0f\xd5\x79\x05\xb7\x96\x2e\x62\x79\x70\x83\xb4\x39\xfd\x05\x35\x07\x45\xb9\x2d\xe7\x27\x9b\xf8\xf3\x80\x8f\x4b\x6e\xb2\x57\xac\xd3\x04\x7b\x14\x9f\x1e\x16\xbd\x21\xb9\x50\x87\xf1\x35\x9f\x83\x46\x4f\xf8\x8a\x22\xc1\xb6\x57\xb5\xfe\x51\x02\x87\x2f\xa0\x42\x87\x41\x14\xbf\xb9\x23\xa4\x25\x3c\x43\xea\x43\xd2\x2d\xdd\xcb\x85\x65\x51\x3d\xd5\x95\x32\x17\x3f\x55\x2c\xcd\x27\xe5\x64\x04\x2e\xb8\x91\x7d\xe6\x4c\x06\x9b\x26\x43\x4b\xb6\x95\x4b\x4a\x41\x75\x4b\x0a\x0b\xff\xbd\x70\xfc\x94\x7d\xb4\xf2\xe6\x86\xca\x6e\x6c\xb8\x71\x77\x62\x65\xd8\xca\x1b\x0c\x08\xdd\x1b\xc7\xc6\xaa\x59\x21\x20\x27\x64\x8e\x46\x81\x13\x5e\x70\x8f\xba\xbd\xab\x4e\xaf\x31\x3b\xda\x96\x45\xf5\xe4\x96\xa4\x07\x99\xd0\x39\x47\x6b\x92\xe0\xbc\x13\xaf\x20\x49\x4a\xa9\x4f\xbf\xed\x13\xf3\x58\xe7\xa9\x38\x6f\x3c\x26\xa0\x09\xd7\x67\x2b\x9c\x3b\xbe\xc7\x2a\x6d\xcd\x26\x7e\x39\x4d\x35\x25\x8d\x95\x2a\x6e\xec\x68\x0c\x5f\xc9\x09\x59\xcf\x01\x69\xe1\xbb\xf7\x29\x98\xe5\x18\x40\x2e\x81\x60\x43\x6c\x01\x05\xee\xad\xf7\xa3\xd5\xeb\x25\x4d\xd6\x13\xb5\x0b\x28\x4e\x7f\xd3\xac\x59\xbf\x89\xa2\x40\x14\xf5\xb7\x42\x95\xbe\x7a\x24\x0c\xa6\xcf\xf0\x97\x6f\x60\x31\xb4\x6e\x49\x61\xfa\x81\xe7\x2d\x94\xa9\xc1\xa6\xd3\xd1\x8b\x68\xc5\xef\x1b\xbd\x84\xf3\x48\xc9\xf3\xdb\x87\x66\xfb\x10\x0c\x21\x31\x87\x41\x6e\x99\x17\x40\x1b\xc3\x0c\xd8\x46\xf8\xe8\x59\xc0\x63\x79\x14\xbd\x89\x52\x58\xdd\x81\xb2\x19\x61\xbf\xd0\xa3\xe1\xe4\x7f\x73\x16\x0f\xdb\xd3\xfc\x66\xc0\xa9\xaa\xd8\x5a\xc0\x9b\x3d\x19\x48\x31\x62\xaf\x97\xb1\x5e\x1c\x39\xcb\xe6\xbc\xb1\xde\x69\xda\x39\xef\xb2\x81\x1d\x7a\x2c\x39\x1b\xd5\xab\xc5\xee\xd5\x8d\x18\xda\xd2\x17\x5e\x61\x72\x9f\x7a\x15\x8d\xb8\x6d\xe4\x59\xa8\x16\xc4\x26\xa1\x8c\xdc\x62\x60\x7b\x2d\xc2\xc6\x42\xe1\xb5\x8b\xbb\x0a\x50\xa6\xd9\x3a\x83\x1a\x4c\xb3\x66\xf7\xff\xd6\x79\x05\x57\x97\x2e\x8a\xc8\xf7\xa7\x70\xd0\x33\xb5\x82\xfb\x1c\x31\xf4\xf4\x4a\x4c\x4f\xe7\x97\x5e\xfc\x82\x12\xff\x15\xa5\x5c\x04\x28\x6f\x23\x9a\x2a\x9c\xbd\x78\xbb\xd5\x15\x5c\x7a\x94\x6f\xb6\x29\xc7\x2e\x6b\xf8\x2b\x7b\xef\x2c\xad\xc4\xf2\x4b\xf2\x2b\xdb\x72\xf1\x24\xa5\x4b\x4f\xf3\xc1\x63\x20\xb9\x5a\x8f\xd6\xb8\x6e\x84\xb7\x56\xd4\xda\xd4\x6e\x7d\x4a\xcf\x9e\x35\x19\x28\x0a\x54\x33\x88\xd7\x2e\x48\x0d\xd3\x4f\x3a\x7d\xfb\x65\x96\x78\xdd\xa4\x7e\xe0\xba\x2c\xb9\x3b\x1e\xba\xee\x32\x09\x47\x81\x52\x1b\x15\x24\xb6\xbc\xba\x11\xa1\x22\xdf\x87\x94\x2b\x2a\x11\xf3\x17\x7d\xcd\x91\x60\x40\xcb\x31\x8a\x84\x33\x8c\xc2\x64\x99\x21\x77\xd8\xe5\xc2\x72\x80\x0d\x57\x4c\xf5\x64\xe9\x67\xdf\xa2\x47\x73\x4d\x16\x13\x1e\xcc\x5c\x8e\xdf\xf7\xde\x7d\x83\x3c\xe3\x55\x1d\xa6\xd3\x73\x5c\x92\x70\x91\x3d\x2c\x08\x4a\x3a\xfa\x94\x27\x22\xc7\x69\x09\xf5\x2f\x2b\x39\x88\xfe\xf3\x70\x48\x90\x1a\x87\xad\xbc\xc0\x4e\x9e\x8f\xee\xf1\x31\x81\x04\xef\x3b\x08\x8d\x08\x41\xd4\xff\xd1\x7c\x85\x62\xe5\xa4\xc1\x05\xeb\x5c\x37\xc2\xab\x2b\x6c\x5a\xad\x27\x3d\x44\x64\x1b\x1a\xe2\x7a\x63\x39\x04\x29\x99\xa6\x83\x81\xc0\x67\x90\xe4\x39\xfb\x71\x17\x97\x16\xeb\xe1\x93\xe0\x5f\x81\xbb\x9b\x4e\x63\x33\x62\x96\xd8\xe7\x46\xec\xb2\x7f\xb4\x7a\xc2\x5f\x4f\x2a\x71\x84\xad\x8c\x47\x80\x01\xf6\x37\x46\xb0\x88\xf7\x09\x1d\xe8\x5a\x4c\x16\x72\x83\x81\x02\x25\xb8\xe6\x6d\x64\xd9\x62\x3a\x39\x65\x96\x3d\x3b\x59\x58\x2d\x62\xce\x3d\xf0\x04\x24\xf1\x86\x7f\x7a\x9a\x86\x9d\x5d\x0b\x73\xa6\xdb\xe4\x6e\x22\x5d\xe1\xe4\xf9\x3e\xe3\xa0\x51\xf6\xd5\xf0\x9a\xf5\x4f\xe5\x43\xe6\xb1\x68\xa6\xbb\x3b\x09\xe8\xe8\xea\xe3\xb1\xc9\x44\x2b\x6d\x03\x00\x69\x2f\x55\x4a\x1f\xe3\xc1\xe3\x30\x2a\x0c\x51\x67\xa0\xb0\xf8\x63\x25\x15\x9a\x65\xfe\xd4\xf5\x95\xd9\xd6\x6c\xda\x6a\xfa\xb3\x12\x67\x61\x1d\xf3\x0c\x96\x43\xbd\x7d\x64\x2c\xa8\x98\x4e\x0b\x13\xa4\x2b\xd7\x88\xe2\xf0\xe3\x13\x42\x38\x91\x5a\x73\x5b\x3e\xb5\xa6\xfa\x13\x2d\xe5\x3d\xfa\xad\xed\xf3\x1c\x56\x08\xeb\x5e\x45\x88\xea\x09\x04\xc6\xa3\xec\x9e\x34\xa9\xaf\x84\x02\x0a\x78\xbb\xea\xf1\x40\x0a\x2d\x61\x54\x81\xd0\x71\x08\xf6\x50\xe2\x8a\x3c\x0f\x78\x68\xef\x5d\xc3\xdc\x0f\x56\x33\xce\xd9\x2d\x6f\xa3\x87\xa2\xb3\xfd\xde\xc3\x26\xb1\x42\x94\xf4\xd4\x48\x45\x35\x39\xd1\xf8\x29\x57\x27\x4f\x5f\x87\xd3\xf3\xe0\xdb\xe1\x1e\xca\xdb\xd7\x6f\xc5\x15\x88\xf5\x79\xe9\xcc\xf3\x13\x10\xca\xfa\xde\xff\x04\xab\x8f\x35\xde\xcd\xbd\x88\x46\xbc\x91\x13\x02\x92\x1e\x3b\xa9\xf2\x24\x31\x73\xc7\x5c\x63\xe5\x58\x63\x8f\x79\x85\x2f\x7f\x60\x40\x8d\x73\x0a\x12\xf9\x38\x7d\x5f\xa7\xf2\x9e\x9f\xe3\xbb\x77\xd5\xcc\xee\x8e\x37\xb7\x3f\xe0\x97\x27\xe0\xc7\xbc\x99\x74\x90\xe4\x39\x93\xe2\xf9\xf1\x80\x56\x57\xca\x17\x2f\xcc\x3d\x76\x91\x04\x04\x97\xd3\x45\x51\x34\xb7\x34\x64\x53\x6a\xcd\xb0\x1b\xa1\x98\xf0\xe8\x30\xb5\xf1\xdf\xdb\x65\x8d\x52\x30\x33\xd0\xf7\x46\x02\x03\x8b\xea\x0d\x10\x8d\xc0\x9a\x50\xa6\x46\xe1\x68\x2e\xa2\x95\x5d\xca\x21\x98\x8f\x0a\xe9\x37\xa7\xb5\xdf\xfe\x30\x65\xd5\x76\xf7\xf3\xea\x34\x65\x3d\x48\xb8\xdf\xdf\x24\x52\xeb\xe5\xfa\xfb\x67\xd7\x0c\x06\xdc\x87\xd3\xaa\xad\xde\x77\xea\x5e\x4a\xab\x60\xe7\x4a\x13\x25\xbf\x77\x3b\x5d\xad\x63\x31\xce\x0a\x1a\x8d\x63\x0b\x45\x8c\x5f\x21\xbb\xc4\x5d\xbe\xff\xbf\xcb\xc5\x83\x81\xdb\x3e\x8f\x54\x80\x82\x4f\x05\x06\x3f\x38\x93\xd2\x85\xd1\x15\x8f\x31\x91\x2b\xa3\xd8\x43\x2f\x16\xc0\x38\x8d\x49\x71\xbb\xce\xaa\xd3\x70\x9f\xb6\xd1\x42\xa4\xe1\x75\xc9\x7d\xcb\x87\xc3\xcd\x6e\x9d\xfb\x0f\x58\x3f\x5d\xd3\xbb\x96\xa3\xb9\x83\x2a\x9c\xff\x11\xd8\xe0\x4a\xa9\xb1\x1a\x17\x1e\xe0\x00\xd5\xf0\xe3\x2b\x9f\x8c\x2f\x58\x2e\xef\x4a\x6f\xa5\x54\x18\x3a\xe9\x8d\xbf\x40\x17\x21\x12\xff\x0a\x7e\x23\x82\x46\xf7\xf8\x8c\x00\xbd\x80\xbe\xe6\x64\x5e\x48\x17\x41\xa8\x19\xac\x75\x0a\xd6\x5a\x88\x38\x31\xd4\x39\xcd\xa5\x01\x68\xd2\x0a\xd8\x41\x32\x52\x35\x29\xa2\x72\x22\xed\xd3\xf7\xaf\xe9\xb8\xfb\xdd\xdc\x15\xa2\x35\xcf\x60\x89\x2b\x30\xf2\x00\x14\x21\x19\x14\xd4\x48\x68\xda\x9c\x63\xd7\xd3\xcd\xc2\x85\xd1\x48\xed\x49\x78\xbf\x06\x3b\xf9\xfd\x23\xca\xc9\x68\x06\x69\x77\x93\x7a\x0a\x54\x77\x40\x58\x08\x7f\xf5\x65\xa8\xe6\xad\x33\x10\x3c\x61\x9b\x4e\x7b\x6b\x5b\xea\x0c\x70\x3e\x49\x1e\xa0\xa5\x01\x56\xe6\xd8\xff\x4b\x8b\xac\xc5\xdc\xdf\x5f\x2a\xc7\x23\xc3\xb8\xaf\xd3\x80\x0c\x58\xf4\x7c\x15\x0b\x4a\x37\x8d\xa4\xb6\x51\x33\x50\xcb\x9b\x62\xf5\x69\xf7\x3b\x0d\x59\xbd\x6b\xee\x4b\x2b\x66\x19\x41\xc7\xca\x91\xf0\x56\xc8\xfa\x2b\x48\x52\x8a\xaf\xeb\xce\x97\x58\x67\x59\x19\xeb\x4a\x4e\x6c\xc9\x23\xa8\x86\xe3\x80\xf8\x54\x7c\xc1\xd8\x4f\xd5\x01\xc3\x28\x82\xd4\x32\x6c\xfc\x71\x13\x41\xf8\x52\xfa\x6e\xfe\xeb\x56\xc4\xc3\xd5\x44\xfb\xc3\xb1\x3d\x3e\x23\x6a\x3d\xa7\xbe\xe7\x29\x29\x82\xf4\x79\x74\x07\x34\x70\x1a\xa6\xe2\xe7\xb4\xd1\xf1\xdc\x3c\x58\x80\x19\x15\x53\xea\x55\xf8\x04\x34\x29\xc5\x3d\xc0\xcc\x75\xa3\x7d\xfa\xbe\xb6\x9a\xa5\xe8\xea\xf5\x46\xdb\x53\x91\x32\xef\x42\x29\x2c\x33\xea\x4b\x21\x06\x5c\x20\xc7\x76\x9d\x1a\x19\x01\x68\x26\xe1\x8d\x60\x21\x02\x0a\x96\x0c\x43\xe9\xc3\xdb\x57\x72\xa7\xfa\xd3\xc3\x8d\x1b\xf1\xda\x4d\x9f\x89\x6f\x3c\x29\x50\xad\x35\x9d\x74\xf1\x47\x42\x3d\xca\xdf\x47\x7b\x1f\x9e\xff\x4b\x0b\xbb\x6f\x15\x3e\xca\xaa\x24\x4d\xea\x33\xc6\x33\xb1\x4a\x32\xf4\xec\xd1\xc4\xfd\x66\xd7\xdc\xbf\xca\x1f\x08\xfb\x0d\xe6\xd9\xf4\xff\x17\x3e\x90\xc9\x8f\x62\x2a\xb8\x99\xe3\x5a\xaa\x3f\x14\xd7\x5b\xd5\x32\xe0\x0d\xb5\xbc\xb9\xc6\x75\x23\xff\xe8\xc1\xf0\xbe\xb3\x35\x5d\xf9\x3b\x58\x21\x0a\x5f\xae\x0a\xe6\xc1\xc0\x34\x91\x07\x28\xb8\x5e\x9c\x82\x26\xf5\x7d\x6d\x30\xde\x88\xfd\xc4\x38\xa8\x51\x20\xeb\x5e\xfc\x54\x96\xba\x41\x6d\x26\xb6\xc4\x95\xb2\xa1\x74\x38\xbb\xb1\xdf\x3d\x51\x2b\xc3\x68\xd3\x07\xa5\x38\xe3\x51\x5e\x44\xa9\xf0\xfd\x7d\x19\xfb\x39\xb6\x92\x54\x0c\xbf\xac\x4f\x53\xe2\x08\x75\x70\xca\x1c\x78\x49\xdd\xac\x00\xa7\x07\x2f\x07\x66\x3d\x46\xba\x5b\x2e\x23\xb1\x49\xfc\xf0\x94\x04\xed\xae\x91\xde\x5a\x35\x80\x79\xd6\xc5\xb2\xca\x00\xcb\x1c\xcf\x34\x04\x2b\x4f\xf6\x31\x2f\x75\xae\x7c\xde\xd2\xbd\x6f\x6e\xf6\xfd\xb1\x42\x96\x54\x88\xeb\xbb\x9c\x2d\x6d\xc1\x32\x9c\x04\x96\x19\x8c\x71\x52\x43\x46\x89\x05\x6f\xb0\x05\xdc\x84\xc1\xb0\xfc\x74\xe5\x87\x14\x02\x8a\x1a\x0c\xee\x96\x2c\xd5\xe9\x3d\xd9\xa2\xf1\xb2\xd9\xf2\x1e\x3f\x06\x0b\x16\x46\x03\x37\x7a\x88\x90\x08\x0c\x23\xbb\x26\x0e\x93\xa2\x1a\x99\xef\x44\x9a\x80\x87\x58\xec\x2f\x14\x98\x5c\x96\x9b\x93\x9c\x4f\x92\xdf\xd8\xb9\x0a\x72\x3b\x1c\xb3\x4d\x08\xa3\x13\xfc\x91\x5a\xf4\xc5\x81\xb4\xea\xec\x63\x53\xf6\xa3\x0c\x50\x38\xc0\x96\xdc\x01\xc0\x8c\xe4\x0c\x8f\xf4\xd8\xb0\x52\xa1\xae\x0e\x8a\xe9\xdf\x9b\x06\xeb\x42\x9c\xde\x28\x35\xe8\xe6\x5b\x7c\xd6\x17\xcd\x35\xba\xbb\xaa\xba\xcd\x7f\x9d\x51\xfd\x86\xc1\xb8\x7b\xa4\xae\x8a\xd7\x28\x0b\xad\xea\xb3\x85\x17\x07\xcc\x70\x86\xa9\x96\x3f\x79\x03\xa3\x7d\xfe\x09\x29\x3e\xa8\xdb\x82\xf4\x9e\xa8\xd0\x7c\xad\x45\xfb\x2e\x2f\x16\xbb\x3b\xb1\xef\xdd\xef\xd5\x5b\x72\x78\xc8\x1c\x16\x8c\xa1\x03\x06\x4c\x9f\x13\x24\x96\x03\x75\x83\x52\x00\xaa\x24\x2b\xc6\xa5\xba\x45\x64\x6f\xfc\x11\x1a\x84\x76\x2e\xae\xde\x9b\x38\xde\xa2\xd3\x59\xbb\x5b\x94\x38\xc8\x2f\x04\x24\xe9\x68\xe0\xe9\x01\xb9\x56\x36\xcd\xfe\xeb\x9a\x4c\x94\x5e\x86\x49\x2b\x58\x5b\x8a\x84\x7f\x58\xa6\x84\xd7\xda\x5d\xc6\x7a\xc6\x6a\xf4\x6a\xbb\x2b\xec\x6c\xec\x89\x16\x41\x18\xbf\x34\x26\x13\xda\xf2\x52\x9a\xc2\xe7\x1a\x69\x4c\x26\xcb\xc6\x46\x50\xc3\x37\x48\x14\xd3\xe8\xd0\x1d\x64\x14\x30\x6a\x20\x44\xaf\x05\xc3\x04\x70\xc7\x52\xa9\xe0\x7c\xe3\x03\xbf\x26\xbd\xf8\xe7\x4f\x0d\xa4\xe0\x92\x54\x69\xb0\x18\x4f\x5e\x0a\x3d\x47\x7a\xf4\x26\x95\xf1\x59\x18\x71\xae\x6c\xfc\x80\x79\x59\x3e\xd6\xd3\xcd\x44\xae\xb1\xe7\x6f\x23\x8a\xcb\x8c\xa1\x66\xc4\x61\xc9\xdf\x94\x14\x81\x94\x9c\x13\xb8\x26\xd3\x34\x66\xff\x63\xa9\x77\x44\x83\x01\xa4\x35\x42\xb8\x69\x3f\xfa\xac\xf5\x43\x9c\x12\xc0\x11\xe6\x70\x8c\x01\xe1\xac\x5c\xf3\xb0\xf0\x38\x5e\x98\x3a\x03\x65\x37\xbc\x4d\x72\x49\x86\x92\x26\x22\x6a\xcc\x67\xc8\x18\x5c\x92\x62\x80\x82\xd9\xe7\xee\x81\x4c\x6e\x1b\x4a\xeb\x99\x08\xc8\x2f\x80\x7f\x5e\x84\x12\x9b\x57\x4e\x16\x35\x0b\x74\x7d\x15\xa8\x19\x31\x34\xbc\x77\x89\x2d\x1b\x4d\x5b\x77\x28\x6d\x46\x87\xc7\xca\x24\xf7\x98\x97\x83\x75\xcf\x72\xb4\xc5\x62\x98\x5b\x0e\x82\xb9\x3f\x1f\xbd\x5d\xc4\x5d\xe5\xf0\xe2\xcb\xb9\x85\x67\x48\x8c\x8c\x0b\x9d\x1b\x3d\x98\x96\xb9\x2a\x75\x62\xd8\x9d\x50\x19\xea\xf0\x14\x03\xc2\xe9\x5e\xb1\x8f\x8d\xd8\xb8\x1d\x9f\x5b\xb6\x4a\x1f\xc7\x0b\xef\x61\x67\x4e\x51\xeb\x40\xf2\x60\x18\x13\xba\xd5\xc7\xcf\xd1\x31\xc5\x93\x3b\x05\xc9\xf5\x41\xdc\x0e\x27\xa9\xa6\x17\x91\x51\x1d\x05\x26\x21\x59\x6f\x11\xcc\xdd\xd7\xee\xee\x08\x06\xed\xfe\xf3\x91\x3e\xeb\x9b\xc3\x81\x81\x37\xda\x3d\xf4\x14\xcb\x5e\x99\x2f\x6c\x33\xcb\x90\x5a\x5c\xf0\x20\xb7\xd1\xfe\xf0\xa4\x6b\xc8\xef\x27\x74\x4c\x60\x2d\x22\x97\x32\xd5\x86\x6c\x50\x11\x0c\x27\x4d\x40\x28\x26\x72\xda\x5f\x2d\x7a\x15\x81\x5d\x8f\x84\x5f\xc8\x89\x85\x4a\x9f\xc1\x52\x00\x1a\xc0\x61\x8b\x9d\x97\xb2\x70\x5d\x6b\x21\x82\x1f\x8b\xd6\x65\x2e\x8e\xb7\x53\x0f\x63\x26\x92\x5d\x5a\x80\x7f\xc1\xaf\x16\xc3\x5f\x4f\xd4\x5c\x4e\xc4\x91\x85\xde\xe2\xec\x54\xec\xa6\x63\xc8\x7f\x8b\x9f\x50\x68\xde\x3a\x66\x9b\xd0\x48\x62\x36\x00\x90\x52\xdf\x32\x1f\x21\xc3\xb8\xa4\x85\xe0\x44\x8e\x62\x6a\x4a\xc9\x2e\x7b\x17\xf5\xf0\x1f\x93\x64\xa1\x1e\x65\xfe\x21\xdb\x04\x5e\x20\x3a\x90\x42\x9d\x01\x16\x99\x97\x5f\x9f\x85\x78\xec\x97\xff\xb9\x9f\x0a\x53\x94\x88\x34\xfc\x0f\xd5\x89\x65\x03\x34\x65\xd3\x5d\xd4\xfd\x98\xed\xd0\x7d\x91\xe8\x0d\xb9\x9a\x4e\xc1\xbb\x35\x52\x9b\x6d\x2a\x29\x71\x84\xf2\x3c\x1c\x16\x8f\xbc\xc7\x05\x97\x4f\x60\xac\x44\xdc\xd0\x09\x2f\xe8\xfc\x1f\xd4\xa5\x00\xc0\xac\x45\x1b\xd1\xe0\x4f\xbc\x92\x84\x62\x94\x95\x62\x25\x10\x8f\x9f\x87\x5b\x74\xe7\xab\x66\x01\x31\x79\x03\xa0\x44\x3a\xa9\x05\x02\x9b\x3f\x6e\xec\x8a\x22\x47\x08\xe4\x36\x9f\x01\x80\xf4\x19\x88\xc1\x23\x2f\x0f\xde\xd3\xab\xcc\x9e\x0a\xf5\x84\x4c\x3f\x81\x9f\x9f\x47\xee\x80\x0a\x16\x6d\xaf\x6a\xd3\xe8\x06\xb9\x25\x69\xb2\xad\x7e\x30\xbc\xbc\x8a\xa9\xfb\xa0\x7f\x76\xca\x26\x7d\x06\x93\x54\x12\x02\xe8\x8b\x07\x00\x2c\x80\xce\x12\x8a\xc9\x4b\xf4\xe1\x22\x2e\xc2\xe5\xf5\xcf\x6e\xf7\xa3\x19\xe8\x95\x11\x02\x34\x3d\xa1\xc3\xef\x7b\xc7\xc3\x94\x28\xe3\x15\xf1\x39\x57\x84\x00\x7a\xfe\xe7\x3c\x78\x00\x79\x7a\x2e\x55\x63\x10\x93\x97\x78\x30\x87\x9d\x4a\x3a\xfc\x82\x55\xf7\xb1\x32\xa4\x57\x44\xac\x37\x17\x5d\xce\x51\xfc\x57\x0e\xc2\x00\x40\xf6\xb1\xc5\x21\x69\x54\xd4\x19\xa8\xb4\x12\x73\x8f\x17\xe3\xbd\xaf\x74\xc3\xdf\x29\xac\xda\x17\x71\x1c\xbe\x8d\xe6\x8a\x57\xc4\x5b\x71\x09\x01\xf4\x2b\x70\xb6\xbb\x6c\x00\x9c\xbc\xa0\xb8\xbd\x9b\xff\x7c\x22\x26\xca\x2b\x8c\x0e\x70\xde\x60\x58\x91\xc4\x81\x01\xec\xf0\x1b\x89\x6f\xd8\x9c\x81\xbd\xeb\x8a\x0d\x1f\xd4\xef\x26\x22\x33\x32\x06\xd0\xcd\xc8\x3e\xab\x83\x38\xb0\xdd\xa3\x02\x2f\x8d\xa4\x4d\x27\x94\x20\x37\x04\x2b\x9f\xf3\x3c\x00\x73\x37\x01\x09\xc3\xff\x2f\xc7\x20\x9a\xac\xec\x90\xee\x76\xfc\xd4\xf4\xa5\x31\x00\x00\x37\x7c\xd5\x1e\xf8\x3a\xd8\xf9\x3a\xca\xdb\x7b\x3b\xda\xf9\x3a\x02\x92\x68\x09\x59\x51\xb4\x94\xa8\x94\x84\x31\x1a\x2d\x2f\x2d\x25\x2f\x29\x25\x8c\x96\x94\x47\xa3\xbb\xc5\xd0\x33\xff\x0f\xe0\xee\xe1\xe0\xe2\x14\xf8\xff\x07\xea\x7c\x62\x1c\x01\x00\x30\x0b\x32\x7e\xe0\x7b\xdf\xce\x1f\xe9\xe9\xed\xe1\xe4\xe2\xe6\x88\xf4\x0d\xf4\x74\x44\xba\x78\xfa\xda\x03\x40\x40\x0e\x61\x1f\x0e\xf3\x32\x15\x12\xea\xd7\x1f\x18\xd4\x5a\xbd\x0f\x50\xf0\xd1\x8a\xd9\xd3\x32\xf1\x31\xe9\xa4\x32\x53\x30\x21\x55\x71\xd2\xdd\x0e\x14\x7c\x1f\x8d\x91\x03\xd3\x3f\xfa\xbe\x0e\x7e\xe5\xfa\x4a\x35\x80\xd3\x2c\xd0\x16\x03\xb6\xae\x31\xf8\xee\xab\xc8\xa4\x01\x00\x00\x68\xa9\xe9\xa9\xd6\xa8\xd8\xe2\xff\x4f\x00\x00\x00\xff\xff\xf1\x18\xc7\x0e\x41\xe4\x00\x00") +var _web_uiV1StaticAndroidChrome512x512Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xba\xf7\x57\x13\xdf\xf7\xc6\x3b\xc1\x20\xa1\x08\xa1\x09\x0a\x52\xa4\x83\x74\xa5\x48\x49\x68\xd2\x7b\x97\x0e\x02\x22\xd2\xa4\xd7\x04\x08\x5d\x45\x69\x52\xa4\x4a\x15\x10\x90\x0e\x42\xa4\xaa\x14\xe1\x8d\x74\xe9\x4a\xe8\x84\x1e\x4a\xca\x5d\x7e\xbe\xf7\xfe\x11\x77\xcd\x9a\x35\xbf\xcc\xec\x39\x67\x9f\xd7\x7e\x9e\x73\x66\x4e\x92\x91\x81\xe6\x0d\xaa\xdb\x54\x00\x00\xdc\xd0\xd6\x52\x37\x01\x00\x32\xe0\xdf\x09\xb9\x0e\x00\xc0\x49\xc8\xe4\x25\x00\x00\x60\x77\x15\x7d\x15\x00\x68\x48\xa5\xc6\x3b\x91\x03\x00\xc0\xe5\xa2\x65\xa2\x0f\x00\x61\xfc\x00\x80\x44\x01\xc0\xbf\x5b\x90\x9b\x00\x10\x28\x01\x00\xdb\x8e\x00\xf0\x30\x1b\x00\x58\x7c\xdf\x77\x18\x2b\x02\x00\x70\xdd\x59\x57\x53\x1d\x20\xfd\x3b\x8a\xba\x2a\xd2\x01\x00\xa0\x08\xd0\xd6\xd7\xa0\x58\xbd\xc6\x09\x88\xb0\x54\x37\x0b\x48\x00\x00\x12\xd0\x56\x57\x31\x0b\x99\xdf\x25\xe0\xd2\x79\x2c\x0b\x56\x28\xa3\x96\xc3\xc5\x8a\xaf\x15\x6b\x6c\x3f\x49\xcb\xd1\xe3\xff\xa1\xf3\x19\xfc\x63\xc2\xce\xee\x41\x6d\x79\x85\x7b\x47\x75\x79\x85\xa7\x5b\x87\x7b\xde\xaf\x4e\x05\xcf\x16\x77\x17\xf7\xe0\x16\x77\xdc\x31\xe1\x86\xa5\x4b\x90\x7b\x70\x4b\x90\x9b\xc0\xf4\xae\x1b\x0e\xf3\x58\x6f\x34\xf3\x6e\x8a\x94\x50\xda\x13\x37\xa9\x66\xc8\x9d\x68\x64\xfc\x30\x6e\x89\x00\xc8\xf5\xae\xfa\x52\x40\xdf\xc2\xe1\xfd\x57\xd9\xa1\x64\xc5\x6f\x88\xec\xaf\x71\x53\xcb\xe2\x48\x38\x17\x14\x02\x26\x8b\xfe\xff\xc7\x85\x07\x7c\xfb\x8c\x12\x02\x8e\xe9\x3b\xc6\xe4\xf9\x28\x9f\xba\x9f\xbb\xc3\xae\x6e\x71\x9e\x3d\x04\x93\xf5\xfc\xc7\xc3\x04\x44\x3b\x82\x37\x13\xb8\x38\xaf\xab\x86\x42\x21\x83\xef\x1a\x16\x02\xc0\x31\x7e\x6b\x42\x71\x57\x95\x11\x8f\xe8\xf8\x36\xe3\x62\xb8\xa0\x2f\xc5\x3e\x7c\x6e\x87\x80\x5d\x46\x41\x71\x11\xad\xcb\x91\xf3\x85\x30\xd1\x45\x94\x0c\x22\x19\xed\x75\x37\xe3\x5a\xb4\x63\x1b\x84\x1c\xce\x25\xc7\xa5\x44\x15\x1e\xf0\x1d\x7b\xe7\x0c\x1b\x26\x9f\xd0\x07\x39\xb3\xef\x9e\xd9\x59\x3e\x7d\x41\xab\x2a\x09\x85\xbc\x86\x14\x03\x10\xf0\x9d\x4d\x95\xd9\x60\xc6\x95\x4d\x60\x8c\xee\xa8\xd3\xd8\x21\xf8\xd2\xba\x4e\x35\x87\xf3\x48\x1e\xd6\xef\x19\xa4\x20\x0b\x40\x75\xa2\xe1\x12\x10\x14\x19\x17\xf4\xfe\xe6\xdd\xdd\x4e\xeb\xd5\xca\x04\x6c\x71\x22\xf6\xf4\x52\x61\xb1\x7b\x66\xcb\x96\x70\x72\xf7\x3d\xdd\x51\x48\x36\x3a\x5a\x6c\xac\xaf\xdb\xfb\x2e\x13\x59\xf4\xca\x16\x3d\x15\x72\x65\xf6\x05\x10\xbd\xac\x5f\x49\xc1\x19\x3b\xd6\xd7\xbd\x7f\x1a\xee\x54\x37\xb7\x45\x7f\xb7\xfb\x2c\x91\xe1\xf3\x22\x38\xfc\xe0\x42\xa5\x9b\xe5\xf4\x01\xdc\x9d\xbc\xe4\xd7\x45\x0b\x77\x06\x59\xf4\x8a\x23\x84\x1c\xee\xfb\x7c\x93\xeb\xe0\x03\xca\x5d\x96\x9b\x93\xaf\xbf\x8f\x36\x62\xbc\x90\x31\xde\x68\x81\xff\xf3\xb6\x73\x89\x91\xba\x19\xcb\xb0\x24\x9b\x88\x64\xc2\xa6\x94\x86\x14\x26\x11\x1a\xcf\x3b\xa2\xf2\x4c\x91\x61\x64\x27\x35\x91\x27\x46\x5e\x2b\x9b\x67\x24\xda\x3f\x1e\xf9\x02\x9c\xc1\xf3\x93\x95\x6c\x08\x1a\xcc\xb6\xec\xc2\xe4\x37\xc3\xb7\x20\xf3\xc4\x6d\xf2\xc9\xb3\xc7\x0c\xfe\xb6\xbd\x55\xfa\x6d\x9e\x8c\x8f\x44\x93\xda\xe3\x47\x04\x07\xde\xab\x74\xd6\xe3\x38\x17\xa3\x96\xf6\x90\x62\x63\xc5\xc3\xc7\xfc\xaa\xb7\xa0\x90\x0e\x1e\x26\xa0\x47\x9d\x91\xfb\x24\x9c\xfe\x3c\x81\x79\xdf\x69\xcc\x86\x83\x99\x25\xbd\x54\x23\xa3\x54\xa3\xa9\x4d\xbf\xe9\x25\x77\x59\x7a\xd6\xfd\xb2\x36\x41\x6e\x53\x26\x01\x9a\x01\x3e\x7b\x04\x2f\x0d\x9f\x44\x82\x1c\x46\xf0\xf5\xad\x64\x17\xe0\x8e\x9f\x11\x80\xe4\x02\x68\xd8\x21\x40\x2f\x80\x34\x26\x9c\x76\x61\x5d\x96\x49\xd4\x46\x2c\x3f\x5f\x7e\x28\x7f\xf3\x09\x71\xe3\x2b\x20\x77\x0d\x2c\x46\x51\x2f\x4f\x96\x70\xcd\x8a\xc6\x2f\x96\x5b\x82\x75\xed\x41\xfc\x57\xc7\xec\x19\xdb\x91\x61\x31\x0c\x9f\x8d\x33\x9f\xa9\x73\x5c\x6e\xaf\x0e\xdf\xa8\xe8\xd4\x13\xb7\x5c\xa9\x46\x91\x64\x4f\x4b\x66\xcc\x2c\xc3\x07\x40\x94\x64\x38\xeb\x92\xd1\x0b\xc5\x73\xc0\xdd\xb1\xd1\x24\xc9\xf3\x2f\x49\x46\x10\x70\x4c\x10\x8a\x8c\x2b\x5b\x30\xac\xe9\x48\xc1\xfa\x64\x09\xd7\x7b\xef\x4c\x22\x7a\x29\x42\x4c\x52\x1d\xa2\x96\xed\xcb\xf5\x31\xb6\xec\xa5\xd0\x96\xb6\x69\xf2\x80\x57\x9a\x56\xce\x93\xc7\xc1\x5a\x16\x81\x87\x2f\x55\xff\x6b\x52\xff\xaf\xa9\x7f\xfc\xbe\x93\x60\x8a\xbc\x8e\x23\xad\x24\x60\x04\x45\xbe\x94\xd3\x3a\x9d\xd1\x00\x87\x92\x28\x28\x62\xce\x48\x63\x2b\x61\x97\x1a\xa6\x45\x2f\x80\xeb\x57\x43\x64\xeb\x00\x3b\xd2\x94\x76\x85\x8c\x2c\x8f\x5b\x42\x1e\x39\xb0\x43\xa5\x9a\xe3\x6c\x5f\x9a\xc8\xc2\xde\xeb\xdf\xd2\x1f\x44\x93\xe3\xf5\xce\xbc\xc3\x74\x72\x31\x42\xa3\xb8\x39\x66\x7f\x92\x26\x47\x9e\x06\x54\x96\x2d\x9d\x2c\x1f\x28\x59\xb1\x62\xfa\x68\xc5\x31\xb9\xd7\x49\x0d\xf2\x2f\xbb\xb7\x21\xe4\x70\x89\xb3\x13\xc7\xf5\x60\xc6\xf3\x7c\x70\xe4\x41\xbb\xc0\x66\x92\xea\xdb\xd2\x36\x2b\x9d\x59\x75\xdd\x5b\x26\x8a\x2e\x3a\x39\x2f\xb9\x45\x07\xbc\x3e\xd7\x74\x84\x68\xfb\xfd\xc7\xe0\xf4\xf4\xb5\x6f\xc6\x23\xf6\x00\x70\x11\xcf\x6b\x33\xf0\x0d\xd0\x58\x0f\xe3\x01\x64\xf0\xb8\x71\x93\xd2\x04\x63\xca\x2a\x48\xb1\xef\x0b\xbe\xa9\x66\xe4\x9a\xf8\x4e\x10\xd3\x49\x8b\xb1\x11\x5b\x55\xc8\xea\x6f\xf9\x48\xb5\xf8\x7d\x67\xff\x91\x4a\x70\xca\x45\xb6\x4d\x95\xd0\x64\x90\x44\xb0\x57\x52\xfb\x8d\x32\xa4\x4a\xa7\xc9\x78\x8a\x33\x30\xde\x59\x51\xf4\x2f\x73\xdf\x32\xfd\xfe\x15\x55\x2c\x15\xa1\x8f\x2a\x9c\x0c\xb0\x0a\x6c\x28\x95\xb7\x7a\xad\xa0\xae\xcf\x66\x12\xf1\x91\xdf\xd5\x24\xeb\x7e\x9e\xc4\x8f\xcf\xfb\x6b\xcc\x03\x03\xba\x52\x6a\xc3\xa8\x62\xeb\x11\xee\x24\xb9\x64\x6e\x40\x88\x6b\x25\x76\x23\x98\x7d\xe5\x15\x62\x3b\x4b\x99\x6c\x08\xc4\x6e\x4f\x27\xce\x64\x3b\x22\xfb\xbc\xd7\x42\x34\xa9\xd6\xc2\xfc\xb2\xad\xf2\xbf\xd3\x34\x0c\x86\xba\xc3\xe6\x63\xe5\xe4\xfd\x27\xcf\xd8\xa4\xfc\x55\x33\x62\x24\xc8\xb9\x87\x4c\x01\xe8\x27\x26\x70\xe1\x35\xa4\xd1\x75\xf0\xb7\x94\x3f\x2d\xdc\x94\x83\xd9\x62\xaa\x68\x16\x11\xf4\x68\x2e\x9d\xbc\xd6\x08\xff\x8b\x5e\xfe\x67\x13\xbc\x0d\xcf\xf5\x0d\x2a\xf4\x3d\xf8\xbd\xb4\x2a\xd6\x64\x94\x2b\xda\xcf\x6b\xd4\x0f\x29\x7b\xb9\x53\xe4\x92\xb9\x69\x9f\x25\x32\x8b\x2b\x5b\xe6\x53\xc6\xdf\xb6\xa5\x5d\x78\x02\xd1\x11\xc3\xd8\xd0\xae\x56\x67\xf5\x73\x64\x3d\xc0\x79\x1b\xfb\xcf\x1c\x49\xca\x5a\x8e\x2f\xbe\xb0\x2e\x7b\xa4\xed\x2f\x5a\xa8\x0a\x2d\x63\x3d\x49\x7b\xb3\x09\x4b\x5d\xf1\x2f\x86\x40\x5e\x93\x3b\x7f\x60\x78\xa9\xc8\x1d\x83\x7e\x57\xda\x55\x19\x12\x99\x12\x48\x07\xf0\x62\xa0\xae\xe5\x77\xbf\x49\xc5\x67\x8c\xb0\x9a\xc8\xb8\xea\x50\x53\xa6\xbc\xff\xef\x4e\x84\x41\xd9\x79\x86\xfa\x7f\x54\x18\xc1\x58\xb9\xa7\x95\xc4\x60\x22\xc9\x66\x1c\x96\xab\xda\x5a\xf0\xf2\xfb\x8d\x64\xa7\x6f\xdc\xbb\x6f\xf9\x0e\x13\xcc\xe3\x96\x44\xaa\xf7\xff\x94\x3c\x6a\xa5\xee\x30\x9d\x4d\xe9\xcc\xec\xca\x76\x69\xcb\xee\x1c\xff\x04\x0d\x18\x12\xdf\xfc\xcb\x0d\x40\x87\x90\x2b\xd9\x5c\x32\x92\x3d\x5a\x2f\xe0\xc5\x9c\x99\xa1\xcb\xfc\xbb\x20\x24\x34\xfe\x7b\x80\xfe\xeb\xd1\x77\x99\x01\x2d\xfc\xa3\x06\x53\x7f\xd3\x29\x53\x6c\xc7\x6d\x23\x2c\xca\x37\x4b\xfb\xc7\xef\x62\x04\xe7\xbe\xb7\xb0\x14\xbe\xfd\x0f\xf9\xe0\x23\x03\x95\xd8\x6a\xb5\x8c\x13\x9d\x27\x55\xa7\xdd\xc4\xc2\x55\x78\x47\x67\x41\x8a\x42\xfb\x5e\xa9\x9d\xd8\xb3\x4f\xe4\x81\xab\xd8\x3b\x51\x71\x45\x36\xdf\x01\xb8\xe0\xb5\x18\x17\xd4\xec\x02\x98\x47\x8d\xa2\x18\xab\x84\xa3\x26\x09\x16\x1b\xaa\x72\x24\xed\x3b\xba\x56\x55\x96\x6f\x08\x0f\xe9\xb5\xf0\xd7\xf2\x8a\x6e\xe9\x8d\x0c\x8e\x7d\x14\x53\x16\x97\x0c\x60\x90\xce\x78\xc6\xbb\x41\x39\x78\xed\x27\xbd\x15\xd3\xa1\x5d\xc2\x41\x42\x79\xff\xfe\x34\x53\x58\x45\x69\x3b\x1d\xce\x79\x1f\xe3\x36\xb4\x64\x67\x68\xed\xfa\x18\x47\x7b\x9e\x19\x5d\x5f\xaf\x22\x8b\x45\x92\xe8\x01\xd4\x5d\xae\x6c\x1a\x14\x19\x17\xeb\x43\x8a\xfa\xb3\xce\x81\xc3\x24\x52\xf6\xa7\xa1\x06\xd3\x50\xaf\xa0\x72\x61\xf1\x32\xbd\x2d\xbd\x05\xfe\x0d\x73\x96\xfc\x77\x42\xca\x7c\x92\xf7\x53\xe5\x9e\xf6\xd9\x77\x16\xf9\x48\xc4\x87\x0c\x0c\x44\xf4\x71\xe3\xdf\x0a\x35\x86\x9b\xc7\x2d\x2d\xa6\xb4\xe3\x66\x7e\x4d\xcf\xf7\x09\x49\xfb\xe8\x8e\xc4\x07\x61\xe1\x66\x53\xd1\x46\xd7\xc1\x8c\xa9\x46\x00\x58\x6d\x15\xa9\x0a\xd3\x3b\x68\xb5\x3a\x37\x6a\x5d\xd2\x1e\x7c\x73\x72\xdc\x79\xd9\x1b\x61\xad\x94\x27\x59\xaa\xdb\x11\x5b\x98\x29\xf4\x50\xd4\xb8\x49\x5d\x4e\xa7\x27\x8a\xc6\x41\xa2\xc7\x17\x78\xe7\xd4\xbd\x01\x25\xce\xa6\xcd\xee\x25\xab\xfa\xdc\x0c\xc0\xed\x3f\x1e\x0c\x3b\xe7\xf2\xfc\x4b\xd3\x5e\x45\x13\xc2\x11\x63\xb0\x14\x6d\x9f\x06\x89\xbb\xcb\xc5\xaa\x80\x22\xe3\x92\x33\xe9\x80\x10\x2b\x47\x08\x82\x22\x0e\x64\x40\x9a\x14\xdf\x1e\xfe\x53\x77\x9b\xad\x59\xa1\x76\xce\x44\x59\xf6\x2b\x71\x21\xa6\x42\x3e\x1a\x51\x67\xda\x87\x89\x57\xf8\xb6\x3e\x41\x0c\x39\xcb\xb1\xb9\xae\x33\xee\x99\x54\xa7\xf5\xe4\xa2\xb8\xa5\xf4\x74\x57\xa7\x74\xf3\x1d\x35\x37\xfb\x25\x78\x85\xaf\x4a\xc5\x7b\x10\x89\x07\x80\xb8\xc2\x25\x38\x12\x5f\x19\xfb\xf2\x82\xc1\x24\x15\x5b\xbc\x53\x56\x37\x53\x6b\xd2\xe5\x6e\xd0\x73\x8f\xf6\x4a\x7b\x2d\xb6\x09\xd7\xc5\x1e\x16\xe6\xe4\x31\x68\x3c\x86\xcd\xee\xb4\xbf\x4b\x14\x12\x2b\xd9\xaf\x2b\x86\xb1\x69\xe9\xe7\x9c\x7c\x72\x79\x61\xbf\x40\x38\x59\x6a\xf2\xbb\x22\x36\x35\x68\x4a\x06\x3b\x3a\xd0\x1f\x84\x53\x84\x1d\xd2\x00\x10\x0d\xb8\xc4\xa3\x44\x7d\x13\x09\x89\xb0\xfa\x33\xd0\x7c\xfa\xc5\xdd\x38\x65\x27\xad\xee\x7a\xc6\x3c\xa5\xd6\x6a\x18\xcc\x55\x4b\x7c\x87\xb6\x9b\xd7\x34\x22\x57\xe2\x7e\xac\x7c\xbf\xca\xc2\x58\x4c\x6c\x0f\xeb\x9a\x2b\xcb\xf1\x0d\xdd\xb5\x56\x91\x8f\x57\x3f\x2c\x26\x2e\x4e\xce\x9e\xef\x11\xc3\xe6\x85\x55\xec\x40\x07\xaf\x1d\xcd\x55\x32\xa4\x00\xee\x54\x55\x7a\xe8\x4b\x5e\xe7\x3e\xa6\x93\xfc\x6b\x1d\x17\x0a\x1d\x38\x10\xbc\xa0\x5a\x30\x29\xc5\xa6\xa1\x31\x85\xef\x34\xb3\x54\xdb\xde\x5c\xb0\x9b\x0b\xd5\x5d\x54\x78\xff\xc5\xf5\x64\x31\xcc\x4e\x56\xbf\x37\xf3\x83\x30\xaf\x07\x2e\x51\x47\xeb\xb6\x7b\xda\x2a\xc1\x9e\xe3\xfb\xcc\x9b\x0f\x1c\x00\xb8\x20\x59\x0c\xbd\xc6\xf3\x82\x98\x6e\x3f\xa0\x87\x93\x79\xe6\x9d\xe3\xf2\x40\x5d\xfe\xe8\x96\xbf\xfb\x8b\xf9\xcc\xad\x5c\x7c\x2e\x66\x45\x84\x41\x43\x37\xfb\x43\xa9\xe0\x0c\x23\x0d\xf4\x27\xfd\x2c\xcd\x61\x5a\xec\x05\xa3\x9a\x53\xe1\x6e\xff\x5e\x2b\x76\xe4\xb6\x83\xe2\x50\x6e\xb8\x8c\x93\x0c\x20\x07\xcd\x87\xcf\xea\x32\x47\x1b\x81\xc1\x3c\xd1\x46\x00\xd8\x50\x1f\xb5\x82\x9d\xcc\x19\xc3\xae\xbd\x03\x90\x5a\x34\x3f\xa4\x34\xb6\x6d\x35\xb4\xf3\x7f\x4f\x8d\x89\x66\x64\xd4\xf1\x89\x6e\x79\x4a\x69\x6c\x40\x34\x4d\x4b\x84\x52\x1d\x21\x07\x8f\x8e\x8b\xdf\x0b\x35\x8a\x53\x75\x5c\x4d\xff\x11\x3a\xee\xeb\x94\x1e\x7c\x66\xec\x7f\x23\xb9\xfd\x46\x6d\x41\x74\xe5\x67\xd5\xb7\x02\x5c\xac\xda\xfd\xf1\xc2\x72\xf7\x95\x20\xc4\xca\x4f\x11\xa2\x7e\x84\x52\x8d\x93\xf4\x50\xaf\xfd\xe7\x06\x88\xd0\x0e\x7e\x84\xae\xff\x41\xca\xab\x27\xca\x37\xd4\xe7\x0a\x1c\xcf\x7d\x69\xe1\xf2\x6b\xcc\x79\x07\x14\xe6\x99\xdd\x9d\x39\x4d\xcb\xdd\x30\xaf\x85\x39\x9d\xf9\xb8\x64\x1d\xfd\xa7\x63\x2c\x9b\x18\x66\x00\x9a\x8c\x74\xfc\xfe\xcf\xa9\x1d\xff\xc1\x54\xda\x7d\xb3\xa7\xae\xcd\x6a\x74\xba\xf4\xbc\xea\x4b\x4b\x84\x70\x5d\xa4\xa8\x8b\xd6\xb2\xb9\x1d\x5e\xd1\x4d\x70\x71\xb3\x55\x7c\x5f\xbf\x47\xb0\x57\x8e\xec\xdb\x40\xc4\x70\xc6\xec\xb7\x70\xc9\x0d\x59\xba\x46\xcc\xb7\xea\x5b\xfe\x9e\xe2\x18\x8b\x48\x73\x70\x17\x86\x0a\x48\x1c\x47\x3a\x6a\x25\xea\x5b\x8c\x4b\xdf\x01\x23\xac\x6e\x39\x8c\x8f\x8a\x83\x90\xa5\x0a\x56\x36\xf7\xaa\x72\x4c\xc3\xe7\x73\x06\xd2\x8e\x1e\x0f\x65\x74\x57\x19\x45\xf4\x58\x76\x08\xec\x6b\xf7\xc8\x7d\x05\x21\x8d\xfb\x75\xb3\x46\x94\xc5\x37\xf7\xff\x81\x79\x45\x57\x31\x22\x60\xa3\xdd\xb9\x4b\x4d\x77\xce\x1c\x6d\xb0\x0a\x02\xfe\x49\x1d\x6b\xc3\x1c\x55\xc7\xc4\x87\x81\x65\xc9\x2a\x71\x57\x9d\x06\x46\xf2\x40\x8c\x99\x7d\xb8\x77\xcb\x5d\x34\x7d\xeb\x77\xd9\x27\xf1\x86\x49\xb3\xdd\x8e\x64\x2b\x34\x2a\x53\x59\xb3\xef\xf8\x46\x09\x53\x61\x43\x51\x38\xa7\xe9\x90\xfa\x82\xcf\x5d\x67\x7d\xc4\x25\xb2\x7f\xac\xd0\x38\xff\x61\x0e\xe0\x2d\x8d\x36\x94\x18\x5c\xd6\x3e\x18\x16\x32\x9d\x28\x9c\xfb\xcf\xd2\x80\xa9\x49\x64\x2e\xf7\x64\x34\x5b\xdf\xfe\x2d\xeb\x63\x30\xfd\x6f\x16\x3d\x2e\xf6\x68\x57\xc6\xa0\xba\x92\x89\xd6\x56\xc6\x33\x1f\x4e\xb7\x51\x71\x4e\xc3\x9c\xce\xf8\x91\xde\x23\x30\xea\x2e\x17\xab\xb0\x2a\x08\x8a\x9a\x28\xf6\x77\xb0\x7a\x84\xc8\x5b\x49\xfd\xad\x8e\x6e\x63\x56\xf0\x93\xaa\xb3\x1b\x9d\xfe\x8b\xdd\xa6\x25\x52\x39\x3d\xbd\xdd\xaf\x24\x20\x77\xdd\x17\x98\xe1\xc6\x1b\xeb\x17\x63\xf7\x06\xf3\x5b\xf7\xc7\x58\x67\xb0\x3f\x59\x7f\xcb\x38\xdd\xdc\x0d\xff\xbf\x38\xce\xd2\x37\x9b\x0e\x9a\x62\x1c\x82\xeb\xcf\xf0\x6e\xf8\xbf\x55\x4a\x7b\x53\x42\x6a\xc4\xac\xfd\x95\x6a\xd5\x03\xea\xd7\x22\xec\x5f\x03\x29\x1d\xaa\x85\x4f\xf2\x17\xdb\x8e\x77\x14\x1a\x9b\x0d\xff\x3d\xfe\x8a\x3d\x3a\x56\x90\xac\xc4\x19\x3e\x1e\xdc\x5f\x7e\x0f\x40\x7e\x8a\x81\xdd\x1b\x14\xbf\xa0\xb5\x2e\xb6\x8a\x74\xe2\x89\xda\x0e\x30\xb8\xda\xce\xe0\x46\x98\x06\x1f\xfc\x73\x39\x28\x2e\x1b\xbe\x22\x44\x66\xf8\x31\x30\xf5\x6b\x9d\xcf\xa8\x25\x2c\xea\xcd\x83\xe0\xc8\x64\xb8\x84\x61\x91\x4d\xb0\x4a\x31\x18\x52\x70\xbb\x41\x9e\xba\x64\x0d\xaf\xb2\xca\xd9\x74\xee\x0a\xbc\xa1\x54\x1b\x4a\xd9\x49\x32\x75\x7f\x71\x39\x53\x4e\xb3\x65\x93\x1b\xeb\x90\xc1\x9a\x7b\xcd\xcf\x87\x12\xec\xe5\x0b\x7c\xe3\xc6\xfb\xe9\x17\x73\xee\xf2\xee\x3a\x2c\x66\xd7\x45\x9e\x38\xce\x7f\x07\x7d\x55\x51\x24\x03\x54\xe9\xa1\x27\xa0\x06\x6d\x4e\x97\x87\x56\x04\x27\xc6\x8b\xc7\x60\x18\x20\x38\xe6\x33\xf8\xae\xe0\x77\x32\x5a\xd2\x55\x6b\xf9\x3f\x76\xbc\xaa\xda\xc1\x1f\xa7\x3a\x5d\x2e\xd6\x40\x39\xb2\xe1\x1e\xbc\xb6\x7e\x31\xa7\x37\xff\x5e\x21\xa2\xc3\x96\xf8\x94\xc7\x95\xa5\xb8\xf1\x2e\xf4\xb9\x20\x98\x8b\x09\xd4\x63\xca\xc5\x84\x74\x49\x36\x3c\xd7\x1c\xb8\xe8\x7a\x48\xc4\x18\x15\x0c\x16\xd7\x30\x4d\x56\xbd\x9b\x4e\x73\xc8\x13\x17\x21\x69\x05\x1f\x58\xde\x8e\x71\x78\x72\x4a\x0d\xa6\x40\xf1\xd4\xb3\xf7\x72\x64\x31\x5f\xfe\x2b\x17\x2c\x4c\xd1\x9a\x58\xf2\xd1\xe8\xda\x63\x66\x10\xa2\x7a\xf5\xf5\x05\x48\x95\x12\xca\x0e\x2e\x06\xd8\xa5\x3b\xda\xae\xfa\x1e\xe2\x42\x63\x1c\x0a\x3e\x6a\xff\x78\x37\x93\xf6\xce\xf0\x6f\xf3\xb2\xee\xec\xdf\xc0\xa4\x12\x57\x33\x52\x0e\x9c\x4b\x4e\xf1\x3d\xb7\x7d\x33\x25\xda\x66\x72\x91\xf4\xc2\xbd\xe5\xec\x78\x47\x37\x93\x42\x66\xf5\x66\x93\x08\x99\x31\xc7\xff\x10\xa4\x4d\x34\x02\x5e\x53\x2a\x75\x5c\xc5\xc6\x38\x90\x01\x7c\xde\xe9\xb3\xc7\x79\x87\xd2\x1b\xc1\x27\x9c\xe5\xfa\x5b\x57\x54\x03\xee\x46\x5d\x86\xe8\x36\x04\x38\x86\xd8\x23\xb4\xa6\xa1\xeb\xe6\xb0\x3b\x98\x8f\xee\x92\x74\x20\x9c\x12\x6e\xf9\x0f\xf3\x8f\xa0\x0e\xd4\x55\xa8\xee\xf4\x92\xa9\x52\x42\x03\xd4\x9e\xaf\x7c\x43\xd2\x5a\xa0\x97\x17\x97\x6f\x6e\xcc\xdc\xa9\x29\xfc\xb1\x45\xcd\xd2\xba\xb6\x9c\x5b\x35\x84\xae\xeb\xd8\x64\xc0\x08\x82\xd6\xba\xe9\x21\xd7\xaf\x53\x14\xd1\x1c\x77\xe5\x8e\x28\x2f\xe8\x59\x93\x86\xdd\x53\xa6\xe8\x66\x26\xa6\xed\x3f\x38\x73\xd5\x0c\xd4\x43\xa8\x21\xb4\x71\xb3\xdf\x05\xb2\x39\x16\x09\xf6\xef\x97\x15\x98\x7a\xdf\x7c\xb6\x35\x6b\x7c\x27\xbb\x56\x77\x2f\x73\x12\x36\x71\x07\x6f\xde\x6b\x74\x5d\x3d\xa6\x10\xee\xfb\xc4\x17\x78\xc7\xd0\x6d\x6d\xb2\x58\xb8\x9c\x27\x49\xdc\x60\x3b\x6e\xee\xbc\xc8\x36\x8d\x26\xd4\x23\xaf\xad\xee\xc5\xc5\xc9\xc2\xc7\x19\x55\x41\xd9\x46\x1d\x56\x04\xa7\x53\x3c\x15\xf0\xdd\xf4\x81\x7c\xa8\x87\xc8\xd9\x48\xbb\x1d\x81\xce\xb4\xfc\xe4\x5a\xef\xb8\xe2\x47\x92\x2d\x17\x94\x5d\xe9\x3d\x4f\xbd\x68\xd2\xe2\x6c\x92\x02\xe9\x70\x3a\xe2\x74\x06\x57\xf1\x2a\x50\xcd\xed\x7a\x53\x3c\x39\xde\x25\xf1\xff\x8b\x23\x41\x9b\xfd\x77\xe6\xe5\xb1\x08\x93\xe7\x46\xf0\x49\xd9\x46\x8b\x4b\xdd\x98\x79\x06\xcc\xd8\x0e\xff\x85\x75\x92\x07\xfa\x92\xe6\xbd\x73\x41\x9d\xf0\x49\xed\xd4\xcb\x53\xd8\x72\x76\x5d\x54\x47\x6e\xc3\x59\xd1\x14\xdb\xb8\xd0\x3d\x80\xeb\x0b\x28\x06\x70\xf6\x2f\xe4\x0a\xab\xbf\x8c\xad\x0d\x67\x06\x8c\x6e\xea\xea\x60\x26\xdc\xf0\x71\x8c\xe4\x7b\x74\xe9\x37\x2f\x68\x9d\x04\xa9\xd7\x96\xa0\x90\x47\xb4\xb4\xf0\x3b\xbd\x9c\x37\x03\x36\x7c\xb0\x86\x79\xa4\x0b\x4c\xc4\x69\x94\x71\x70\x67\x1c\x39\x4a\x16\x0e\x4d\xae\x5c\x2c\x80\x92\x05\x12\x8c\x19\x2f\x73\x9b\xf1\x40\x91\x07\xed\x6b\x74\x5b\x81\x1c\xee\xe8\xf1\x11\x9d\x65\xf2\xbc\xc3\xa0\xd7\x51\x87\xd6\x11\x23\xe4\x11\x0b\x18\x49\xa9\x69\xbd\xc8\xfd\xae\xc2\x73\x62\xae\x3d\xb9\xf7\x56\xbc\xaa\xd8\xfe\xec\xf8\xc7\x93\x6b\x01\x17\xec\x0e\x5d\x61\xcc\x76\x9d\x41\x5e\xb3\xba\x0c\x34\xf4\x0d\xff\xa5\xca\x53\x34\x5d\x2a\x91\xc3\x95\x32\x67\xdc\xc4\x7c\xfa\x1d\xec\x04\xab\xd0\x9c\xad\x87\x9e\xd9\x1f\x26\xeb\x67\xee\x42\x21\xb4\xe0\x60\xc9\xe5\x7b\x1e\xfb\x30\xc5\x6c\x19\xd2\x2f\x81\xe1\xf5\x3c\xd7\x4c\x8e\x59\x36\x2e\x45\xd0\x37\x96\x62\xe0\xa5\x24\xfd\x22\xbe\x24\x0d\xff\x04\x30\xfa\x23\x93\xd4\xd5\x56\xd0\xe6\xcb\x5f\x41\x92\xf0\x7a\xc3\xf9\x9d\xa9\xf0\x51\x2f\x23\x2f\xf4\xa5\x28\x7b\xb4\xc7\xf7\x93\x3f\x7b\xa8\x63\x4e\x98\xdd\x47\x3c\xa6\xa7\xa9\xe1\x06\x60\xac\x8f\x2a\x79\x44\x4b\xad\xb1\xc2\x7a\x97\x09\x29\x59\xaa\x5b\x52\x88\x8e\xab\x83\x4d\xd7\x89\x65\x4e\x56\xd5\x29\x6a\x77\x77\x5b\x99\x10\x93\xf6\xdf\x58\x4a\x24\x9c\xff\xaf\x15\x97\x64\xc1\x10\x07\x11\x8f\xfd\x31\xac\x21\x1b\xa9\x30\xf5\x9d\x48\xeb\x33\xaa\x5a\xd5\x90\x34\xc7\x49\x24\x77\x31\x98\x5d\x1a\xb5\x2e\xeb\x16\xe0\x77\x71\x75\x75\x26\xf2\x4a\xcd\x54\x30\xd9\x61\x4e\xab\x20\xfc\x54\xfb\xc8\x70\x63\x78\xc8\xe1\xa9\x58\x7b\x0c\x68\xd2\xa9\x4e\x83\x0b\x7a\x72\x43\x5d\x4e\xc7\x43\x2c\x94\xdf\x53\xcb\x1d\x33\x2c\xcc\x4a\x35\xcc\x1c\x28\x7b\x4f\xb6\x68\x1d\x8b\x4f\xbd\x2b\xbe\x12\xc2\xcd\x84\x94\xbc\xbb\x72\x44\x37\x78\x41\xf8\x44\x2c\x3f\x30\xcc\x31\xb9\x7c\x45\x91\xe3\xa3\xd8\x7a\x87\x34\xdc\x24\x44\x28\x18\x39\xb8\xcb\x70\x23\x12\x1c\x93\x04\x06\x09\x32\x0c\x0c\x53\xe6\x29\xb6\x5a\x59\x94\x07\x50\x60\xf7\x78\xf7\xa4\x06\x96\x52\x6d\x38\x40\xdb\xd3\xb0\x23\x25\x2a\xbe\x15\x56\xee\xdb\x5f\x5e\x82\x28\xb4\x4e\x3c\xdd\x2e\x18\xe3\x9b\xa4\xc3\xe7\x7b\x87\xab\x7f\x20\xee\x9b\x66\x92\xb4\x8a\xcf\x23\x3e\x7c\x72\xe0\x82\xea\x49\x40\x90\xdf\x99\xf2\xdf\x7f\xd4\x46\x04\xb9\x2a\xf9\x89\xd9\xa4\x93\xb0\xd8\x02\x31\xa2\x4c\x5d\xa7\x6b\x25\x96\x25\x68\xc5\xd0\x6a\xc5\xd8\x57\x0f\xca\x81\xa4\xaf\x48\x39\xf0\x19\xde\xa7\x00\xf4\xfd\xfd\xd6\x76\x52\x27\xc4\xbb\x9b\xb2\xf0\xd5\xcf\xf5\x89\x02\x54\x03\x15\xea\xb2\xb0\xe8\x95\x90\x68\x40\x48\xaa\x6f\x58\x28\x45\xb1\xd5\xca\x8c\x4f\xd7\x8d\x4d\xe3\xd5\xe3\x2f\x0f\xa0\xe3\x32\xda\x50\x78\x08\xe8\x35\xb5\x2a\x88\xd5\x49\xd5\x96\xa8\xd2\x83\x0d\xbe\xa8\x46\x71\x47\x56\x95\xfe\x8c\xd8\x59\x9a\x4c\xfd\xb9\xbb\xe5\x33\xe8\x75\x74\x7b\x55\xf0\xc6\xdd\x39\x53\x2e\xb9\x2c\x2e\x40\x95\x75\x68\x90\xfd\x68\x41\xd5\x3a\x3f\x45\x3e\x24\x5c\x64\x9d\x49\x10\xd3\x23\x8c\x6c\xf9\x0b\x2b\x06\xeb\x29\xab\x82\x58\x8d\xef\xae\x11\x8a\xf3\xf1\x00\x9c\x87\x66\x40\xcc\x6b\xc0\x10\xb1\x67\x7c\x29\x8e\x11\x1e\x72\x10\x14\x53\x4e\x55\x69\xc3\x0b\x30\xef\x2f\xd7\xdb\xec\xc0\xdb\x48\x2b\xaf\x78\x0e\x08\xe3\x19\x12\xbc\x4c\x03\xda\xe4\x4e\xaf\x9d\x85\x07\xdc\x1b\x1f\x5c\x2c\x44\x58\x57\x65\x3c\xe8\xf0\x1a\x1a\x71\x12\x34\xa3\x7c\xba\x64\xa3\x0a\xca\x7e\x8e\xb2\x09\xe9\xdf\xe4\x5e\x5a\xb6\x58\xaa\x68\x97\x3b\x1b\xfa\x33\xb9\x4e\xad\x70\x69\xc8\x78\xf3\x22\x6b\x13\x23\x5b\xe0\x5b\x49\xed\x4e\xfb\x55\xfe\xa0\x03\xa8\xa3\x8b\x75\xa2\xf1\x1b\x84\x1a\x61\xff\x1b\x58\x08\xa4\x6c\xbd\xb5\x96\xc1\xfd\x73\x1b\x7d\xed\x25\xf7\x4f\xf9\xfb\x51\x9c\xd7\xfe\x00\xec\x20\x60\x0d\x29\xa9\xc9\xea\xff\x35\xf1\x9a\x2a\xbb\x13\x0d\x92\x52\x4d\xdd\x59\x8b\xff\x34\xd6\x91\x16\x3c\x45\x7e\x7d\x90\x1d\xe2\x96\x58\x14\xff\x38\x1a\x28\x1e\xf4\x2f\xbe\xf7\x92\x3b\x31\xf6\x93\xfc\xf9\x54\x3a\xb9\x97\xb2\xab\xb6\x08\xa7\xf8\x3b\x92\x83\xec\xcd\x8f\x6c\xf5\x0e\x0c\x89\x3d\xef\x68\x20\xdc\xf6\xa0\x9e\x27\xdc\xca\xfd\x3c\xea\xa8\x03\x3a\xb6\xdf\xbf\x03\xae\xc6\xcc\x33\xaa\x2c\x39\x04\x1c\x1c\x84\x9e\x92\x54\x83\x0f\x53\xee\xfe\xe7\xd3\xe4\x01\x09\xf8\x49\xef\xce\x8e\x94\xee\x17\x1a\x58\x31\x19\xb1\x63\xf1\xff\x96\x96\xed\xa1\x53\xe3\x36\x54\xe3\xa6\x33\xd2\xc4\xe7\xa6\x80\xfa\x9d\xd5\x7f\x2f\x45\xe2\x77\x46\x8e\xab\xf6\x42\x90\xa4\xbf\x90\xb7\x30\x98\x7d\xbb\xce\x1c\xe1\x55\x89\x56\xae\x86\xe1\xbc\x79\x51\x72\x5c\x23\xf4\x64\x00\x8a\xad\x1b\xe8\xa5\x1f\x64\xa7\xef\x05\x74\x69\xb4\xa9\x06\x3e\xaf\x39\x5b\x17\x6b\x19\xdb\xd5\x6c\xd3\x4e\x9b\xb1\x78\xe6\xc6\x06\x4e\x0d\xe4\xea\x34\x94\xb7\x69\x65\xb2\x9a\xf0\xc6\x3f\x49\xe2\x9e\x33\x65\x80\x6a\x06\xae\xab\xee\x8a\xf0\xa4\xaa\x9d\xef\x7d\x33\xc5\x90\x56\x11\xa1\x51\x38\x12\x05\x70\xbd\x49\xe6\xc6\x11\x0e\x02\xed\x02\xf1\xb3\xae\x82\x58\xe9\x3b\x02\x4e\x3d\xfd\xaf\x18\xe3\x9b\xfc\x3b\x2f\x27\x52\x76\x92\x38\x47\x2d\xfe\xc2\xcc\x05\x95\x6f\x94\x7c\xf1\x29\x5d\x01\xde\x3b\x19\xdc\x22\xd3\x91\xac\xa0\xc5\xb4\xa8\x65\x7b\x7c\xaf\x79\x6c\xfe\xb4\xac\xbc\xfe\x23\xf7\xaf\xc7\xe6\xc5\xcd\x1f\x7b\x3f\x32\x67\x4e\xdf\x4b\x9a\xa3\x75\x7a\xad\xd6\xd6\x07\xad\xa8\xe7\xac\x70\x65\xdf\x93\xf5\x5e\xbd\xba\xf5\x3b\xdf\xb9\x9d\xb8\x21\xf8\x37\x54\x77\xf9\xfc\x51\xe8\xd3\x5f\x3b\xa8\x90\x63\xa2\x1a\x8a\x5b\xdb\x59\x2b\x4d\x28\x8d\x37\x7e\x3d\xfb\x55\x73\x29\x1f\x1f\xc3\xcd\xa4\x6f\x5e\x69\x89\xbf\xe5\x3e\x29\xf0\x7e\x92\x97\x2b\x37\x2a\xfd\xc1\x24\xc2\xa0\x26\x85\x81\x4b\x68\x82\xfd\x8a\x99\x5e\x52\xd1\x1c\x3e\xd3\x28\xe3\x5c\xce\xad\x56\x42\x12\x22\x07\xe2\x36\xed\x41\x31\x94\x1a\x82\x00\x0f\x5c\xfd\x73\xe1\xcc\x94\xb8\x20\xde\x7c\x74\xa0\x81\x65\x9a\x91\xa5\xe0\xf7\x6b\xc2\xaf\x97\xdc\x04\x9e\xde\xf1\x93\xfa\x19\xdf\x85\x43\x54\x97\x4d\xeb\x5f\x51\x5d\xe7\x72\x3e\xbf\x0f\xe5\xe3\x2f\xac\xcb\xca\x3e\x6f\x67\xe9\xde\x16\x65\x0e\x6c\xb5\x35\xaf\x74\xd2\x1e\x29\xc9\xee\xbc\xa1\xc2\xb1\xfb\xf3\xe6\xee\xe4\xcd\x88\x13\x18\x05\xc4\x63\x87\xea\xbf\xfd\xdf\x46\xab\x74\x40\x22\x56\x24\xff\xb4\xce\xf8\x58\xde\x0d\xe5\x92\xe0\xfb\xfc\x3b\x12\x24\xb8\x94\x02\xba\x5e\x2f\x01\x38\x82\xe1\xbc\xc9\x4f\x72\x9c\xad\xfd\x1b\xb2\xa4\xb4\x15\xbd\xb4\xaa\x9a\x84\xca\xd2\x6f\x6a\x7f\x13\x4d\x9b\xb4\x65\x37\xb5\xab\x09\x2d\x88\x75\x7b\xaa\xe2\x5b\xea\x0b\xf6\xd6\x28\x9b\x81\x59\x8b\x91\x2a\x14\x1a\x9b\xa5\x26\x71\x99\xe5\x25\x2c\x72\xa8\x75\xd8\x2a\x84\xdc\xf1\x7b\xc0\xf7\x13\xba\xc0\x0b\x77\x1a\xa1\xd3\xa1\xf4\x49\x91\x8a\xb3\x26\xce\x99\x0a\x5c\xb4\xf2\xee\x03\x76\xcd\x90\x48\xe5\xce\x1d\xa8\xf7\xef\xc0\xea\x6e\x13\x63\x8f\x86\xca\xce\xb8\xae\xec\x74\xf1\x4d\xef\x86\x9a\x89\x64\x21\xd3\x5f\xfc\x0b\xf1\x91\xdc\x9c\xec\x3f\x19\x22\x14\x13\x19\xa0\x32\x98\x07\x52\xd5\x6c\xf3\x5d\x80\x0a\xdf\x57\x71\xb0\x44\x53\x42\x51\x2f\x6d\x2f\xa8\x5e\x4d\xce\x0f\xc2\xf7\x20\x6e\xad\x2b\xfb\x8f\xd0\x27\xf5\xf2\xca\x62\x26\xad\xa4\x97\xdc\x65\xbf\xe2\x33\x7e\x66\x4f\x98\x4d\xf0\x7a\x2c\x72\x53\x0e\x0c\x74\x2c\x18\x51\xa1\xde\x39\xd6\xfb\x02\x16\xe9\x5b\xe9\x79\xc7\xcd\xe8\xab\x80\xaa\xcf\xb4\xb5\x58\xbf\xec\x53\xf1\x0c\x24\xa5\xa6\x20\xa0\x56\xaa\x9b\xe3\xa0\xeb\xc2\x09\x8c\x5b\x50\x6d\x8f\x4c\x09\x54\x61\xc5\xb3\x32\x61\xa6\x77\xf0\x5f\x58\xd7\xfc\x9b\x8c\x46\xec\x74\x9d\xe3\xb9\x1b\x9e\xe9\x17\xaf\x7f\x7e\x44\x4d\x3e\x2a\xfa\xd7\xc5\x3b\x4a\x1c\xc3\x34\x24\x5c\xfb\x90\xa1\x31\x64\xe7\x80\x99\x74\x5c\xff\x21\x8f\xe1\x6b\x71\x97\x4f\xf8\xe4\x4b\x9c\x41\xef\x32\xcf\xbd\x49\x26\x45\x89\x93\x72\x30\xf4\x69\x97\x03\xc1\x41\x17\x80\x2b\x0e\x14\xd5\x98\x7c\xce\x6a\xe1\xad\x14\x21\xd7\x59\xe0\x3f\x7c\xae\x6f\x60\x38\x55\x5a\x25\xa4\x56\xa0\x93\xcb\x9b\x5e\xaf\xad\x13\xec\xab\x5a\x15\x4e\xf5\xd7\x09\xbd\x9c\x1e\x2f\xda\xb0\x46\xf0\xf8\xc3\x32\x63\x31\xe4\xa0\xba\x71\xf6\x35\xc6\x25\xc6\x08\x88\x57\x4f\x68\xe9\x2e\x58\x5f\x7e\xbe\xaf\xc6\x3a\x31\xb6\x7e\x52\xf6\xce\x92\x11\x21\x67\x6a\x4e\xcc\xd1\xfb\x2f\xc9\xa9\x90\xe4\x87\xe4\x59\x91\x71\x2a\x17\x6a\x7c\xa6\x51\x3c\x50\xb2\xbf\xbf\xee\x6c\x20\xc6\x12\xfc\xe2\x22\xdb\xa6\x46\xb0\x49\x47\x12\xc7\x50\xf1\x25\x36\x5e\x31\xd5\xe4\x7a\xd8\x21\x70\xe2\x4c\xb8\x16\x30\x06\x02\x36\xdf\x53\x8c\xeb\xd3\xcb\x25\x32\xac\xc0\x4a\x57\x3e\xa8\xb5\x99\x8d\x2f\x3a\xab\x04\xb7\x3a\xde\xe6\x1d\x79\xfb\xbe\x5e\x2b\x62\xe8\xcd\xc4\x2f\x73\xf9\xbc\xda\x1f\xd2\xb7\xd4\x86\x06\x45\xd3\xa6\xef\xb0\x5b\x0a\x4e\x4b\xb0\x5c\x88\x1a\xc6\xa6\xb4\xb7\xe7\x36\x2c\xa1\x83\x4a\xf0\x0d\xa2\x92\x14\x25\x99\x5a\xb0\xde\xcb\x42\x5f\x14\x99\x6f\x7f\xc0\x8f\x13\x9f\x14\x1c\x63\xfc\xc9\x70\xde\x61\xa3\x78\x8d\x00\xf1\xbe\x8b\x16\x5a\x5c\xf2\xbe\xc2\xee\x03\x3d\x29\x26\xff\x99\x0c\xab\xe6\x8f\x13\x26\xc6\xfe\xc7\xa1\x8b\x8b\xa3\x03\xf9\x0b\xf6\x23\x3f\x58\x02\x5b\x9f\x33\x7a\xab\x56\x7f\x0d\x76\x82\x85\x77\xb0\xf0\x71\xe9\x80\x36\x5b\x7f\xa3\x6d\x68\x91\xb8\x2f\x85\xc9\x70\x71\x1d\xf8\xef\x1e\xe8\x3b\x9d\x5c\x1b\x61\x8f\xfd\xfd\x0f\x42\xc7\x6f\xf5\xde\xe6\x4a\x95\x3d\x69\xe1\x77\x2f\xf7\x9c\x38\x31\xd3\x2f\x30\x60\x9b\x08\x98\xb8\x7b\x6b\xb4\xc7\xaf\xf7\xed\x41\xc4\x1d\x20\x1e\xe9\x2d\xb0\x6b\x33\x63\x31\x84\xbd\xf9\xa0\x95\x66\x15\xe7\x34\xd9\xc5\x97\xed\x88\x22\xf3\x45\x9d\x08\xe2\xf3\xc4\x10\xbd\x6f\x88\xdb\xe9\x7f\xcb\x36\x5a\xd6\x48\x77\x3d\xd2\xb0\xf4\xaf\x4d\xfa\xec\xfb\x78\x55\xe9\x2b\xe2\x7b\x85\x35\x46\x47\xd7\xd7\x7e\x4e\x7b\x2f\xcc\xfd\xf8\xf6\x3e\xc2\x3e\x38\xe5\x41\x9c\xc5\xad\x67\xb7\x2a\x6e\x9f\xb2\x2a\x76\xb4\x93\x0a\xf9\x97\xe8\x7c\x7d\x67\x10\xd0\xc9\xd5\x06\x4b\x0d\xae\x10\xd2\xa3\x50\x30\x2f\xc4\x12\xfc\xf7\xcd\xc6\x67\xb5\xb6\x8c\x14\x85\x01\xdb\x85\xb9\x0e\x6a\xae\x1d\x99\xa4\xd0\xa5\xe8\xb9\x64\xc5\x77\xb5\x3f\xfc\x3d\x4c\x87\xb6\x69\x0d\xa0\xf1\xfd\x1c\xd3\x71\x25\xfb\x35\x51\x1d\xb6\xa1\x9e\xd2\xae\x3e\xfe\xe0\x9b\x4d\xaf\x21\xb4\x4b\xa9\xaa\x07\x9c\x3c\xfd\x09\x1b\x89\x10\xa1\xe3\x63\x19\x23\x12\xff\x1c\x13\x51\x4a\xa3\x41\x96\xe3\x89\xbd\x52\x67\x35\xe9\xbe\x77\x7a\x5d\xca\x13\x34\xb1\x17\x5a\x11\x3f\xf2\x51\x63\x71\x71\x31\x49\x21\x4f\x81\x32\x3c\x5c\x76\xf5\x2f\x55\x87\x4d\x13\xaf\xdb\x01\xe1\x86\xd4\xae\xef\xb5\xb1\x3e\x14\xda\x01\xb4\xf9\xe0\x27\x27\xf3\x9f\x04\xda\x31\x50\x58\x23\x9e\x50\x94\x58\xc7\x23\x02\x5e\x59\x91\x27\x33\x2e\x06\x19\xae\x5c\x61\x43\xd1\x0c\x5c\x57\xdd\x02\xfe\x40\x7b\xf9\xf8\x0b\xfd\xe2\xf0\x1d\x0f\x4f\xf3\xc0\x86\x02\xc9\xd2\x80\x16\x61\x77\xf7\xea\xa3\x05\x3d\x8d\x82\x31\xd6\x23\xbd\x91\x41\xa1\xd5\x5b\x4f\x2b\x3e\x8e\x77\xb1\x1d\x37\x2f\x2f\x15\xca\x70\x48\xf5\x7b\x02\x8e\x32\xb4\xd4\xf3\x99\x48\x99\x1d\x87\x13\x20\xfb\x39\x8a\xcc\x17\xac\x0e\x41\x90\x1e\xcd\xa5\xed\xbe\xab\xd7\x3a\xca\xc3\x49\x2f\x2b\xbf\xb5\x44\x7c\xec\xfc\x4b\xfe\xdf\x42\x05\xcc\x17\x3c\x92\x61\xf5\x80\xd3\x3f\x28\x68\xed\x27\xc6\x62\x62\x69\x64\x20\xbf\x2b\x0d\x73\x53\x3f\xe7\x56\xc4\xb2\xd4\x91\x8d\x56\x7e\x06\x52\xb0\x67\x39\xa5\x79\x79\xb4\x19\xc1\x2a\x4b\x52\x91\xdd\xb1\x67\x02\x61\x25\xf5\x84\x36\x9b\x9f\x15\xe5\x59\x16\x0d\x5c\x03\xf6\x86\x90\x64\x37\x5c\xbf\x66\x58\xb9\x4a\x7b\xb0\xb4\xa6\x9d\x0d\x2a\xb1\x2c\x1b\xe6\xf0\x66\xd6\xfe\x98\x1b\x48\xfb\x2c\xe1\x60\x91\x25\x1d\xaf\x58\xdd\x2e\x17\xaf\xfe\x13\x98\x45\xcd\xec\x1b\xb2\x71\x2e\xbd\xaf\x5b\xf2\x85\x88\xab\x75\xad\xa6\x82\xae\xa8\x90\x37\xae\x70\xde\x12\xff\x99\x41\x88\x2e\x48\x23\xe0\xba\x5e\xaa\x6b\xd4\x68\x01\xb1\x91\x59\xfe\xea\x32\x76\x24\xf5\xa6\xee\x10\xcc\xd2\x16\xff\xf2\xfb\x09\xe2\xa1\x1c\x10\x4c\x19\xac\xf3\x31\xef\xb7\xc1\xbc\x67\xf5\xad\x9d\x1f\x06\xbd\x73\xa2\xd5\xde\x3f\x32\xac\x45\xd5\x37\x83\x4d\xc9\xc2\xe8\xf1\x4e\x59\x51\x68\xdb\x2b\x43\x91\x93\x3e\xf8\x9d\x6e\xe5\xca\xe0\x22\x16\xd7\xaf\xa6\x10\xde\xa7\x38\x9a\x00\x33\x32\x47\x87\x5b\x46\xf7\x92\xcc\x83\x18\x6a\xda\xf2\x7c\x5b\x38\xf4\x73\x52\x27\xca\x33\x72\x6b\xbf\x37\xea\x6a\x04\x86\x7e\x2a\xb9\x57\xa1\x97\x96\x29\x64\x91\xea\x82\x06\xc5\xb7\x75\x66\xc9\xa0\xcf\x9f\x57\x5d\x1a\x6b\x94\x85\x02\x95\x20\x38\xf3\x3c\x33\x30\x76\x8d\x4b\x15\xf8\xf6\xc6\x05\xd7\x23\xa7\x43\x6b\x84\xa9\x20\x43\x06\x3d\x33\xb4\x39\xdf\xfe\x33\x09\x2b\xa8\x16\x44\xf0\x9b\x36\x91\xad\x11\xe4\x99\x5e\xdd\xec\x1c\xc9\xb0\xe6\x63\x09\x96\xb1\xfc\x35\xfd\xa1\xf9\x65\xb3\xfd\xf8\x62\x8c\x50\xa3\xb0\xc6\xc2\x6f\x7c\x8c\x66\x06\x19\xf4\xe5\xa9\xa6\xeb\xc9\x15\x39\x49\x25\xfd\xbc\x17\x85\x57\x41\x11\x9c\x64\xbc\x03\x90\x85\x81\x7b\xbc\x10\x0a\x53\x48\x47\x1c\xa4\xb7\x97\x4c\x45\x83\x2b\xe4\x3b\x8a\x47\x3f\xd0\xf7\x9e\x8b\xce\x56\x5c\xda\x67\xdf\x92\xa2\x82\xdc\x5a\xc1\xe1\x8e\x57\xe9\xd9\x3c\x11\xec\x19\x20\xda\xaf\xc1\x0c\x67\x5d\xc1\x86\xef\x88\x44\x95\xe9\xb6\x3e\x7a\x26\x50\xae\xe6\x2d\x40\xd8\xc8\xf2\x3a\xbe\x18\xe9\xa8\x5a\xe4\x4b\xe2\xbc\x86\xa2\x70\x84\x9f\x08\xe2\x99\x9f\x42\x48\xc7\x9d\x97\x47\xd5\xa9\xa6\x88\x87\x76\x99\xa4\xaa\xfe\xf1\x85\xfa\x31\x04\xfb\x2a\x24\x3b\x36\xc7\x6e\xe2\xa9\xb7\xb4\x2b\x2c\x54\xd1\x55\x79\x5e\x67\x56\xe1\x41\x9c\x05\x7b\x6f\x57\xd4\xc6\x12\xbd\x19\x59\x49\x0d\xb1\xb2\xbf\xdb\xfb\x16\x5e\xa5\x87\x6e\x3c\x6f\x9c\x4e\x39\x81\xa3\x1b\xb1\xa9\x3b\xbd\xbe\x51\x39\x8c\xa3\xfd\xc8\xa4\xbe\x4e\x1b\x40\x45\x8f\x5a\x87\xa8\x0b\x83\x98\xfc\x9a\xcb\xc7\x75\xf4\x8b\xe3\xf6\x50\x5d\x81\xc1\x83\x6d\xb2\x96\x6f\xdd\x0d\xb1\x5b\x15\x2c\xba\x43\x55\x19\x42\xae\x6c\xfa\x09\xfc\x32\xea\x46\xd3\x0b\x7b\x6c\xd4\x53\xc1\x9c\xfa\x39\x74\xf2\x31\xc2\xf0\xe3\xca\x9e\x6e\x0a\xb8\x15\x29\xe6\xc7\x4c\x7c\x82\x0a\xcb\x2a\x76\xf9\xfb\x7d\x60\xbc\x60\xf1\x75\x7e\x5b\x47\x2e\xfe\x30\xc0\x9c\x28\x50\x52\x8b\xed\x71\x4a\x34\xd5\x5d\x1b\xb4\x1f\x99\x8b\xc8\x78\x80\x55\x7a\x2f\x55\xc8\x14\xd0\xba\xc2\xe0\x26\x31\xb9\xb0\x7b\x0f\xc2\x82\x8f\x22\xe7\xd2\x3b\xa0\xa8\x25\x18\x64\x75\xe3\xd8\x8b\x82\x45\x60\xdb\x3b\xde\xcb\x30\x9d\xb0\x53\xa6\x80\x1d\xe9\x15\xd2\x65\xd1\x10\xdc\x2a\x84\xab\x12\x52\xc9\x3d\x66\x3e\xa2\x92\x29\xf4\x5a\xff\x96\x09\x66\xb2\x20\xe8\x48\x5d\x45\x21\xbd\x56\x9b\xfa\x63\xac\x4b\x7a\x96\xdc\x53\x9d\x9a\x08\xff\xe2\xcb\x3c\x9c\x61\x56\x94\xe7\xf7\xe7\x2c\x67\xa2\x24\x86\x5d\x1b\x62\x14\xdf\xd7\xba\x71\xaa\x1d\x52\x36\x37\x13\x52\xf9\xd7\x87\x03\x9c\x8c\x20\x61\xc2\x0d\x7f\x32\xec\xf9\x83\xd3\xdd\x73\x82\x93\x31\x5e\xaa\x4f\x99\xe4\xd7\x3b\xb0\x20\xe9\x6a\x31\x97\xa4\xb0\x43\x57\xfe\xaa\x33\xb5\x7c\x44\x80\xf9\x55\x16\xab\x6f\xb5\xf1\xfe\x5f\x58\x8c\x0e\xd2\xfd\xf0\xaa\xa2\x88\x9c\x1c\x51\xa1\xde\xed\x7d\xe7\x22\xac\x76\x14\x76\xf2\xe8\x37\x56\xff\xa1\x51\x79\x18\x34\xec\x94\xe9\x64\xfb\xce\xe6\xa4\x03\xd7\x3d\x45\x68\x19\xa4\xb2\x5b\x4d\x85\xfd\xfe\xc8\xdb\x9b\xad\xda\x6b\xea\x2a\x76\xca\x79\xbf\xc6\xc6\x32\x33\x99\x17\x7b\x7e\x68\x6f\x2a\x6e\x3a\x7b\xc3\x46\x72\x67\x96\xe4\x4d\xf1\x1a\x62\x98\x1a\xb5\xea\x03\x9c\x2d\x49\x85\x0e\x99\x4d\x0c\x7e\x49\x4f\x05\xe7\x94\x47\x1e\xcc\x40\xd4\x2e\xcb\x6a\xcf\xe7\x58\x66\x18\x60\x39\x52\xa5\xb0\xbb\x7a\x93\xe7\x38\x55\x9e\xaa\xb1\x4f\xc2\x4d\x6d\x99\x4d\x85\x0b\x85\x32\xfb\x4a\x3f\xac\x3c\xe3\x55\x45\xd8\xe7\x51\xdd\xcb\x97\x74\xfe\x17\x9a\xed\x17\x74\x22\x27\x7d\x1c\xdc\x6b\x3b\x46\x83\x4e\xc7\x4a\xc8\x12\xdf\x6c\xe1\x58\xfb\xcc\xe8\x4a\x45\x10\x42\x8b\x4b\x8f\xde\x08\x04\x57\x03\x3e\x62\x56\xce\x93\x62\x5a\x02\x82\x2c\x61\x68\x23\x0b\x83\x41\xaf\xb4\x2c\x41\x93\x41\x49\x43\x24\xb7\xa3\x8d\xf6\xd5\x99\x42\x45\x0a\x82\x14\x32\xf4\x85\x6e\xb5\x77\x99\x1a\xa4\x4e\x89\x28\x06\xd8\xa5\x07\xf7\x1f\x71\x9a\x87\x31\x11\x85\x27\x3b\xaf\x06\x3e\x3d\xe7\xfd\xe9\x60\x9f\x4a\x4a\x11\x52\xbb\x54\x1a\x31\x76\x9e\xdd\x80\x6d\xfb\x02\xfb\x50\xb7\xcc\xfb\x1d\x9d\x05\x2d\x1c\x8b\x85\x32\xfb\x75\x15\xb5\xfa\x79\xf7\x3d\xf3\x08\xaa\xb0\x91\x4b\x2c\xef\xb9\x82\xf5\x55\x7e\x39\x16\x74\xe2\xbd\x25\x9b\xf3\xf7\x46\x0b\xc5\x7a\x91\xe9\xf7\x22\x9b\x1c\x27\xd9\x3a\xb8\x80\x46\x91\x06\xe8\x00\x51\x6b\xc4\xe4\x20\xfc\x91\x7a\xe3\xc5\x65\xfb\x40\x49\x98\xb0\xc7\xdb\x9a\x35\x67\x2f\x5b\x26\x10\xed\xd7\x94\x8e\xce\xa8\x3d\xf5\x8b\x8d\x42\x51\x0b\xe5\xb8\x8e\x71\x9c\x00\x21\xd3\xc9\xe1\x3c\x7c\x49\x1c\xbd\xe3\x00\x21\xb9\x0c\x59\x2d\xac\x7c\xf8\xa9\x82\x42\xeb\x19\xe3\x87\xc2\xd6\x7a\xd7\x47\xfb\x0d\x7f\xc5\x9f\xa8\x8d\x70\xcb\xec\x1e\x73\x06\x3e\xef\x1d\x29\x31\x08\x9e\xf9\x35\x1d\xab\x20\xdd\xdc\xc9\x26\x14\x9e\xe2\xbc\xef\xe5\x56\x8e\x95\x14\xc4\xc7\xfa\x11\x0d\xbc\x89\x7d\x8f\x2f\x7b\x36\x44\x13\x6f\x34\x57\x9b\x8c\xeb\xfe\x70\xb2\xa2\xf4\x12\xb7\x07\x21\x9e\x72\xe9\x50\x8e\x7f\xd9\x40\x71\x47\x36\x94\x8e\x14\xfe\x9e\x1a\xab\x65\x9a\x92\xf6\x50\xcb\x35\x17\x9c\x8e\x8f\x24\x74\x18\xa7\x7b\xac\xa6\x0c\x6c\xd7\x2d\xc1\xac\xc3\xbe\x71\x2b\xd2\xed\xf5\x2e\xa7\x5c\x5d\x79\x92\x34\x16\x1c\xb8\x98\x90\x15\xeb\x40\xaf\x43\xba\x50\x72\xd7\x97\xac\x2f\x01\x1e\xd2\x44\x71\xd3\xf2\x13\x85\xec\xbe\xef\x3e\x62\x7d\xfd\xfc\x0b\xf7\xb6\xf7\xf7\xc3\x86\xc2\x42\x7c\x06\xdb\x3a\x0b\x5a\x64\xec\x46\x3c\xc7\x85\x0f\xfa\xc0\x68\x87\x73\x0a\x51\xa2\x7d\x0d\xc1\x20\x06\x76\xfe\x25\x69\x16\x1e\x5e\x11\x6b\xe2\xfb\x26\x5a\xc3\xc9\x35\xce\xc9\xee\x7a\xec\x14\x99\x13\x15\xfc\xd8\xb3\xf7\x6d\xb7\x99\x19\xcb\xcf\xbd\xed\x8d\x77\x29\xdb\x5b\x1d\x77\x91\x8f\x8e\x1a\xb7\xa1\xde\x0b\x79\x32\xca\x21\x57\xcf\x57\x59\x5c\x33\xbd\x7b\xba\x7f\x2f\xfb\x13\xc2\xe7\x48\xc4\x52\x18\x3d\x8e\x05\x40\x1a\x01\x05\xc9\xb1\x10\x44\xaf\xf1\xee\xd4\xb7\x1f\xc3\xef\x64\xfe\x20\x32\x9b\x4a\x7d\xb8\xb9\xf1\x3c\x7e\x90\x56\xea\x8e\xce\xae\x82\xcf\x1c\xca\xd9\x32\xfb\xb5\x65\xb5\x37\x12\x9a\x9a\x24\x6f\x30\x12\x89\x21\x68\x74\x69\x5d\x7a\x1e\x7a\x86\x32\xbc\x67\x03\xe0\x92\x19\x8d\x62\x28\x86\x9e\x7c\xa4\x39\xf7\xbf\xde\xcb\x14\x5d\xa4\xf9\xb5\x90\xad\x48\xe3\x0e\x83\x5a\xc3\x7a\x49\x87\xaf\x4c\x45\xa1\x8d\xf0\x47\x77\xa9\xf8\xfb\x02\xa6\xf7\xa5\xec\xe4\x6f\xad\xed\x87\xcd\x77\x5f\x4c\xe7\xf4\x2e\xfb\x94\xef\x7e\x83\xde\xc1\xe1\x94\x79\x88\x63\xaa\xc3\x5d\x62\xfb\xeb\x7f\x92\x8c\x00\xda\x1f\x2a\x28\x18\xb0\x59\xa7\xa8\x6d\x17\xe1\xa4\x44\x9c\x11\xd2\xbd\xa4\x5d\x2b\xa2\xbd\xc2\x6b\xd2\x27\xb7\xdb\x4c\x2e\xe4\x0b\xdc\xda\x59\x8a\xf5\xf8\x43\x7c\x34\xb4\x54\xcf\x8b\x79\x70\xef\xf0\xf3\xbb\x0f\xf7\x48\x82\x96\x24\x95\x9a\x48\xe4\x26\xaf\x32\x00\x65\x5b\x37\xfe\x4f\x83\x7b\xf3\x81\x3a\x34\x53\x00\x9a\xc5\x09\x2d\x07\x6f\x02\x45\x0f\x5e\x80\x6f\x8e\x61\x4e\xfc\x45\xc8\x4f\x6d\xe7\x33\xdc\xe2\x95\x50\x89\x3c\x8e\xa1\x8b\xd6\x91\xb8\x80\x2d\xac\xf7\xd8\xb4\xb7\x6a\xdb\x01\x9d\xcc\x15\xbd\x1f\x42\x85\x5a\x15\x24\x07\xa6\x48\xba\xb8\x06\xdf\x2d\x6b\xee\x97\x16\xaf\xe5\x23\x55\x67\x08\x45\x3a\xd0\x9c\x7a\x24\xf0\xac\x30\xc7\x61\x66\xa4\xfe\xf7\xc5\xff\x77\xb5\x87\xe7\x62\x86\xf5\xad\xb3\xb8\x2f\xa0\x3d\x1d\xe4\xf2\xe2\xf2\xe8\x1a\x96\xf7\x1c\xf4\x10\x12\xd9\x20\x4f\x5b\xa8\x26\x7c\xcd\x78\x35\xba\x9e\xa1\xd7\xd1\x1b\x9e\x42\xb6\xa2\xf4\x8c\xd6\xa0\x40\xf0\xe9\xf0\xc6\x8b\x4b\xe9\x61\xf2\x53\xdb\x5e\xfe\x1c\xa7\xfb\x4c\x6b\xc0\x97\xf2\xf1\x2e\xc3\x2c\x11\x18\xe9\x69\x59\xc4\x2b\x67\x7b\xe4\x4f\x3f\x52\x91\xd4\x3d\x14\x1a\x00\x50\x64\xbe\x8e\x0f\x69\xce\x3c\x44\x4e\xaf\x01\x84\x8b\xd1\xf3\xb9\x6a\xc3\x34\x44\xa6\x64\x29\xa7\xf3\xeb\xb5\x3e\x65\x92\x71\x5f\x86\x75\xa0\xb4\x07\xac\x4d\xc1\xf4\xea\xe8\xbf\x8c\x8b\xb6\x9a\xff\xc8\x76\xa9\xaf\x24\x7a\xb0\x58\x17\x8e\x9a\x3f\xa9\x0c\xf8\xae\x27\x87\xb2\xf4\x79\x6b\x9b\x13\xb1\x52\x2b\x08\x8e\xa9\x27\x95\x79\x77\xa1\x65\xff\x92\xc1\xa7\x9f\x26\x9f\x39\x63\xf0\x7e\x78\x6b\x4c\x2c\x63\x52\x3a\x37\xf6\x8f\xa6\xb5\xa4\x23\xa3\x45\xe7\x03\x87\xf0\x9d\x45\xd3\xb2\xd6\x67\x54\x8b\xd1\xbe\xab\xd8\xf5\x21\xf5\x20\x3c\x23\xae\x1d\xde\x44\x16\xf5\x30\xe6\xd3\x23\xf1\x55\xad\x6b\x00\x61\x6e\x6f\xb6\xea\x9d\x65\x3a\xe2\xad\x4c\xd9\x32\x7d\x2f\x9a\x39\xc1\xd7\x53\x76\xbf\x66\x31\xaf\x6a\x31\xe2\xcd\x03\xce\xbf\x2e\x06\xaf\x8b\xcb\xc7\x53\x19\x88\x4e\x94\x51\xc6\x31\x68\x53\x7e\x18\xb8\x20\x65\xd4\x57\xef\x00\x6d\xa8\xec\xca\xb5\x1b\xa9\xf1\x6a\x03\xb2\x8d\x03\xc5\x5f\x76\xad\x2a\x75\x18\x91\x46\x1e\x1a\x91\x16\x2e\x6d\xd4\xc3\xe5\xf9\x1e\xff\x31\x4e\x20\x84\x1b\x89\x7b\x4e\x76\x34\x18\x89\xd6\x56\xec\x8d\x4a\xcb\xef\xfd\xd7\xfe\x9e\xb8\xf0\x5c\x43\x9e\xdb\xf4\xfe\xc1\x38\x87\xc6\x82\xdd\xb0\x95\xac\xb2\xf5\xa7\x08\x2b\xd3\xa7\x1c\x8f\x7f\xe3\xe3\x9b\x2f\xbd\x74\xcf\x19\x21\x8a\x28\x8a\x15\x00\x5c\x83\x40\xa7\x34\x8c\x1e\xc1\xde\xfd\xb2\xec\x3e\x93\x38\xfd\xb5\x95\x8b\xd7\x2c\xe9\x5b\x56\xa6\xf1\x7b\x3c\xb9\xf5\x93\xe0\xf1\x07\xb3\x98\x33\x9f\xbf\xd8\xd6\xf8\x07\xba\xdf\x2e\xd2\xc7\x84\x94\xa8\x86\xd5\x84\x8e\xa9\xac\x5d\x01\x5c\x28\x22\x2f\xfd\xda\x2d\x39\xad\x02\xb8\xd5\x85\xe3\x38\x4f\x51\xc2\x1d\x06\xb5\xc3\x9c\x64\xc5\x70\x27\x81\xb3\x91\xb9\xf7\x51\x42\xae\x69\xb7\x14\x8b\xce\x7a\x97\xde\x14\xb6\x8e\xdd\x24\x9d\xf9\x0d\x7e\xd9\x60\x3b\xfa\xe3\x4a\x08\x1f\x82\x4b\xec\x8b\xe7\x12\x20\xaa\xf4\x54\xf0\x54\x54\x3f\x81\x67\x91\x58\x71\x34\xbf\x26\xcb\x51\x4a\xba\xd0\x8b\xac\x37\x0c\x9a\xdd\x50\xa6\xf2\x05\xbc\x7f\xd4\x74\xe4\xb6\xec\x2f\x58\x55\x46\x75\x67\xb5\x4c\x7b\xf5\x0e\x45\x2c\x6f\xe3\x6a\x58\xd0\xeb\x9c\xf7\x76\xa8\x45\x36\x8e\x2f\x8f\x34\x6f\x2c\x1f\xc2\xc8\x90\xb3\x78\xfe\x1c\xb1\x64\x24\x6e\x93\x8e\x0e\xec\x4e\x17\x30\x44\x07\x89\xbf\xe6\xbc\xe4\x3f\xda\xf3\x23\xb3\xa4\x23\xc2\x4f\x84\xd8\xfb\xc2\x58\xa9\x82\x96\xeb\x9e\xd1\xc4\x42\x2d\x9d\x41\x16\x69\x1f\x13\x71\xea\xcf\x22\xbb\x43\x50\x5a\xc5\x62\x4f\x58\x2c\xb0\xe2\x28\x74\xd1\x8d\x62\xe0\x04\x4e\xb1\x8a\x2d\xdc\xae\x00\x21\xbb\x6d\xcd\x36\x1c\xc2\xdf\x10\xdd\x8f\x5d\xd7\x05\x18\xd4\x1a\xfb\x94\x71\xc6\x5f\x07\x16\x7e\x7c\x5b\x18\x15\xdf\x78\x36\x83\x1d\x99\xde\xcf\x30\x93\x1d\x33\x4e\xf9\x4a\x47\x85\xc0\x42\x86\x77\xb1\x03\x53\x74\x5c\x28\x62\x43\x85\x66\x1d\xbc\x1e\x25\x51\x09\x39\x17\xb9\x1e\xd3\x0e\x12\xd5\x01\x30\x50\x5d\xab\x89\x49\x69\x85\xcb\x0b\xf7\x56\x17\xcb\xcf\x0f\x42\x1b\x1c\xa4\xaf\xeb\x25\x65\xc2\x1c\x6a\x88\x6b\xf3\x49\x13\x57\xce\xdf\x53\x8b\x1c\x20\xe4\x45\xd4\xf4\xbd\xcb\x85\x5a\x93\x4d\xb4\x98\xe1\xa1\x91\x1d\xba\x09\xc4\x17\x2b\x13\x92\x6a\xf9\x53\xbf\xd9\x0d\xe5\xe7\x72\x64\x16\xe9\x1e\x5b\x3f\x32\x02\xaf\x8e\xe3\x86\x4e\x47\x33\xba\xb6\x9c\xf7\x6f\xf0\x56\xa9\xb4\x1d\xd0\xb9\xe1\x12\x06\x2e\xc2\x7f\x6c\x52\x00\x0d\xab\x94\xb4\x4c\x1c\x90\xe1\xad\xc3\x70\x70\xcc\x14\x99\x0a\x1f\xd7\xf5\xd3\x7a\xb8\xf3\xa7\x9a\x11\x18\xfa\x16\x3a\x42\xb8\x4e\x89\xa5\x55\xfb\xd2\xe3\x23\xb9\x20\xe6\xac\xcb\xe3\x0f\xa1\x75\x8c\x09\x61\x3c\xb9\xa8\xff\x94\x85\xe8\xa4\x16\x15\x73\x8b\x64\x1b\x71\x13\xac\xa2\xce\xe0\x48\xf1\x10\x82\x40\xf4\x16\x92\x01\x8f\xe7\x33\x26\xea\x94\x0d\x22\x11\xc5\xa5\xf8\x1c\x28\xf1\x54\x2c\xaa\xbd\xad\xf1\x6c\xdd\xf6\xf4\x72\x4f\xfe\x8f\xb7\x7e\xb9\xc6\x53\xe6\xcb\xa8\x1e\x4e\x26\xa2\xf1\xe2\x55\x18\x03\xde\xf9\x03\xe3\x39\xa5\x36\x3b\x0d\xff\x8d\xb0\x42\x9f\xb1\xbc\xbf\x71\x99\x5f\x9e\xa8\x90\x9c\x34\xd9\x47\xd9\x99\x59\xfc\xc3\x95\xbc\x72\xc2\x25\x05\xd0\xcd\x8c\x36\xe8\x36\x66\x84\x47\xb9\x70\x1d\x3b\xbf\xf6\x9b\x99\x04\xfc\x42\x7b\xb7\xd9\x45\x51\x65\x67\x27\xb4\xe0\x64\x83\xb4\x80\x6a\x27\x0c\x6c\xa8\x40\x93\x0f\x00\x75\xa8\xf1\x0e\xe7\xc8\x99\x25\x08\x3e\x73\xe7\x7d\x18\x41\x05\x73\xea\xdf\x79\x89\x9e\xba\x83\xc7\xd7\x8f\x45\x66\xfb\x82\x6b\x4a\xc6\xf1\x1f\x6a\x42\x77\x1a\x07\x86\xdc\x7f\x6b\x87\xa7\xb7\x52\x47\x61\x21\x83\x97\x84\x7d\xa2\xa3\x1b\xc2\xd2\x12\x0d\xc5\xc7\xd8\x53\x86\x90\x3f\x8c\xbb\xde\x9b\x4b\x49\x9e\x0e\xee\x5a\x00\xd0\x02\x5c\xd7\x01\x49\x30\x34\x4f\x5c\x88\xda\x52\x86\x41\xbc\x60\xc4\x73\x6c\x90\x6e\x56\x81\x8b\xd3\xdf\x12\x26\x67\x7c\x99\x60\x73\xdc\x2c\xce\xfa\x6c\xfa\x4a\x73\x80\xa0\xd1\xc8\xd9\x13\x0d\xe5\x40\x2e\x41\x3a\x88\x79\x7e\x88\x9c\x92\x73\x4b\x8b\x74\x4b\x03\xac\x07\xe2\x93\xc2\xf9\x44\xbd\x61\x40\xb6\x1c\xca\xa6\x3d\xbb\x31\xca\xb3\xfb\xf2\xc7\xe8\xc5\xbc\x97\xae\x33\xdf\x53\x96\x4b\x63\x31\x92\x44\x30\xc2\xcc\x0d\x86\x84\xe2\x63\x2a\xbe\x76\xba\x3f\x0c\x01\xe3\x53\xa3\x52\x91\xcb\xd2\x2b\x38\xb3\xb9\xee\x6f\x6e\xcd\x54\x14\xbe\x32\xa6\x2d\xa6\x93\xd4\x03\xee\xad\x7f\xf2\xc6\xbc\xbe\xd9\xbf\xff\x34\x34\xdc\x15\x72\xed\x19\xd5\xe8\x72\x41\x6d\x57\xb0\xcf\x60\x5b\x1f\x14\x17\x8c\x3b\xfe\x76\xd5\xf9\x98\xb8\x76\xcc\x9d\xa8\x1a\x02\xa8\x26\x0a\xe2\xa8\x83\x2e\x7e\x51\x6a\x36\x88\x78\x26\x6d\xd8\xdb\x1a\xe2\x03\xe7\xdf\x74\x27\xbc\x6e\x50\x35\x37\x7d\xea\xf7\xc0\x65\xb1\xbb\xdb\xea\xe2\xc9\x03\x97\x5a\x15\xbb\xf1\x2b\xbb\xcc\x9e\x87\xae\x08\x0f\x87\x3a\xbf\x28\x80\xfb\x9c\xfc\x5a\x91\x66\x2a\xdc\x2c\x0a\xee\xfb\x09\x9e\xc2\x02\x9c\x75\x81\x0e\xcb\x4a\x3a\x02\x42\x79\xa2\xd6\xd5\x55\xc2\x65\xbc\xdf\xea\x99\x95\x21\xf5\x43\xf6\x96\xf4\xf6\x16\x83\x0d\xde\x45\xd9\x4d\x2c\x88\xce\x72\x1e\xee\x70\x1e\x31\xea\x5d\x32\xaa\x45\x81\x29\xd6\x66\xa9\x6a\x04\xc3\x9e\x1e\x57\x03\x48\x1d\xb9\x89\x31\xec\xa6\x40\xe1\xf2\x4b\x92\xf5\x50\x46\x77\xa8\x6d\x1c\x6c\x60\x61\x74\x67\x1f\xb3\x38\x37\x7f\xca\x76\xdc\x9c\xc7\x37\xba\x18\x6b\xb1\x8a\x55\x0a\x6a\xbc\x54\x68\xde\x23\x87\xc6\x38\x48\xc0\xc3\x4e\x20\x21\x9a\x12\x86\x5f\x0b\x45\xa0\x27\x54\xf7\x87\x2d\xe5\x91\x8d\x59\x2d\xbb\x31\xfb\x37\xc5\xbc\x3a\x6c\x58\x82\x9c\xc5\x5d\x3d\x27\x18\x28\xcd\xa8\x24\xfa\x17\x6b\x4b\x03\x77\x2e\x4d\xd6\x63\xd3\x30\xfb\x5f\xa3\x4a\x0a\x11\x9f\x1d\x8c\x42\xcf\x6c\x48\x64\x2a\x86\x10\x3a\x64\x2a\xc7\x10\x41\x51\x14\xd6\x62\x62\xc4\x62\x8f\x78\x73\xb1\xe1\xcf\x7c\x31\x06\x51\xdb\x72\x2a\xbc\x92\xa8\xe7\xb5\xb0\x33\xb4\xc1\x79\x8f\xcc\x28\x77\xc1\xbc\x14\x4b\xb3\xdf\x71\x3f\x3e\x4f\xb0\x26\xe4\x0f\x5d\x02\x64\x94\x7a\xaa\x07\xd4\xaf\x93\xa1\xa9\x48\xf4\x69\xb0\xd5\x9c\xa3\x15\x16\x40\x64\xc2\x69\x80\xb5\x57\x9a\xf9\x12\x4c\xb0\xc6\x8a\xfc\x88\x28\x9e\xc3\x09\x13\xed\x50\x8b\x40\x3f\xb2\xa2\x25\x71\x17\xf1\xfd\x85\xab\x95\x27\x5b\x58\xef\xd1\x29\x6f\x95\xc5\x79\x5c\x4d\x14\x09\x05\xbb\x76\xc6\xfc\x72\x65\x43\xd3\x8a\x14\x53\x00\xa5\x82\xc7\x5e\xcb\xb8\x1a\xf8\xfc\x40\xfe\x2a\xbf\x33\x07\x66\x7d\xaf\x8a\x64\x52\xfe\xf4\xe6\xeb\xb9\xc0\xbf\xc0\x97\x9a\xf6\xce\x60\xf7\x97\x63\xde\xf7\xcc\xd0\xdf\x07\xde\x7b\xbd\xce\x6d\xd0\x46\x1f\xe0\xdc\x2f\x70\xce\xa7\x09\x2d\x7b\xcc\x6c\x39\x8e\x56\xea\x82\x64\xf9\xbd\x64\x3d\x69\x3d\x95\x6f\x90\xaf\xe5\x9e\x4a\x9b\xbb\x62\x8e\x1e\xe1\x2f\x1a\xe5\x09\x22\xda\x29\xf7\xcc\x98\x3b\x02\x23\xab\x8e\x5a\x39\x0b\x04\x11\xea\x92\x38\x06\x42\x2f\x0a\x4d\x6a\xe4\x45\xa1\x57\x8c\x68\x4a\x5d\xd7\xe5\x5e\x9c\x6e\x4f\xad\x24\x28\x08\xff\x81\x5d\xd4\x5e\xe5\x70\xd6\x30\x4d\x15\x0a\x33\x89\xf7\x48\x32\x12\x69\xfc\x3a\xf2\x7c\x39\x1c\x1c\x3e\x7e\xc1\x6d\x99\xac\x87\x69\x7f\x50\x40\x3e\x96\x11\xf2\xf9\x70\xd4\x79\x8f\xd0\xa0\x83\xf8\x22\xd5\xa4\x2f\x04\x59\x15\x67\xa5\xff\x64\xd7\x89\xd9\xbb\x11\x15\x83\xab\x22\x11\x4f\xc3\x1b\x62\x34\x3d\xef\x72\x93\xb5\x96\x8f\x0f\x05\x0d\xd9\x6f\x40\x82\x28\x35\xa7\xdd\x86\x88\xbb\xf3\x49\x47\xe1\x59\xfd\x54\xf5\x24\xf9\x23\xea\xa8\xb1\x14\x0c\x09\x9f\x58\x0a\xeb\x29\x96\xb3\xe8\x15\x49\x16\xd3\x46\xe8\xaf\xd2\x01\x87\xd8\x85\xd1\x2f\x67\xbb\x41\xf8\xe5\x2d\xda\xee\xd9\xf3\x2e\x97\x58\xb5\xb6\xf6\xac\x96\xfd\x88\x16\xb3\xf6\xb3\xa7\x43\x11\x7f\xa7\xed\x88\x2a\xc3\xcb\x0e\x6b\x2c\xcc\xd5\x34\x3b\x6b\x14\x5c\x60\xb4\x23\x6a\xeb\x8d\x20\xeb\xcd\x9b\x10\x7e\xc8\x65\x17\x68\xe9\x03\x2e\x52\xbb\x58\xeb\xa7\xc5\x7a\x9b\xa8\x9f\xbf\x38\xe6\x6f\x31\x71\x8e\x92\x7f\xe2\xf2\x37\x3e\xd9\x0d\x16\x53\x81\xb1\xe2\xff\x74\xb1\x95\x76\x32\x33\x81\xc1\x0d\x34\xf7\x4b\xbb\xfb\x5f\x1a\xde\x67\x71\x40\xba\xf0\xe3\x3d\xa5\x44\x17\x0b\x25\xeb\x1c\x1c\x3e\x46\x7c\x66\x6b\x95\xb5\x5e\x5c\xc7\x8a\xeb\x52\x51\x91\x8a\x86\x61\xf7\xa6\xc5\x17\x08\x31\x0d\xc5\x6a\x25\x5c\xb1\xd3\xea\x3d\x12\xc3\xcb\x85\xbc\x9b\xa1\xbd\x66\x95\x58\xc9\x34\x7d\xb9\x25\xbd\xb9\xce\xee\xe5\x06\xae\x2f\xc6\x16\x66\xa9\x88\xc3\x76\x7a\xf6\x6c\x97\x3d\xd0\x66\xda\xc9\xc6\x83\xab\x71\x10\x57\x90\x54\x9d\x68\xe4\x8e\x3d\xa6\xae\xf1\xc1\x16\x2e\xf5\xd7\x53\x87\xd7\x48\xe6\x07\xc1\x1b\x98\x88\xd3\x3e\x36\xea\x29\x36\xd7\x4c\x8c\xa3\xc3\xe6\xd5\x22\x5e\x85\xc5\xd5\xaa\xa4\xd0\x17\x47\xcd\x1f\x23\xe6\x1a\x6b\xdc\x0e\x22\xb6\x93\x3d\xfb\x63\xec\x8d\x5f\x08\xbf\x61\x68\x5d\xef\x44\x6a\xfc\x4b\x57\x48\x0e\x33\xec\x3d\x15\x97\xbb\xff\xcd\x02\xb4\x39\xbe\x35\x56\x78\x52\x01\x82\xdf\x73\xd5\x31\x45\xfb\x87\x6f\x1b\xbe\x4b\xde\x36\xe4\x8b\x77\x8b\x8f\xdc\xd7\x24\x1f\x58\x58\x4c\x52\x48\x55\xb6\xfb\xf4\xe5\x9f\x06\xb8\x33\x62\x38\x15\xd7\x84\x00\x27\x31\x52\xa5\x3a\xcc\xe9\x94\x9a\x3f\xf9\x1a\x2f\xe5\xf5\x0d\xaa\xf3\x38\xb4\xec\xdb\xf1\xe5\x80\xca\xda\x2a\x68\x93\xec\x0f\x86\x5e\x87\x03\x33\xf6\x2b\x28\x3c\xb6\x92\x12\x21\x8c\xd1\x22\x5d\x7e\x98\x64\x3b\x76\x5d\x4f\xe5\x8d\x2f\x4f\x88\x2c\xd1\x8c\x53\x6b\x6b\x2e\xf8\xbc\x1f\x11\xf2\x19\xff\xbb\xb9\xa9\x7d\xc8\x48\x57\xd5\x64\x7c\x8f\xf3\xfd\x12\xcb\xf4\x68\xdd\xe8\x36\x4b\x5e\x96\xe3\x42\x12\x84\x1a\x75\x4a\x0b\x39\xa3\xf3\x2d\x36\x3f\x0f\xe7\xd6\x40\x7c\x2e\x12\x38\xd1\xa8\x80\xf5\xc0\xe5\xb2\xa8\xe0\x09\xa5\xe8\x9b\xab\x74\xc0\xa5\x25\xa7\x40\xdd\xfb\x11\x4f\x92\x99\xdf\xa1\x87\x1c\x3f\x07\xa3\xae\xf3\x94\xa6\x29\xe6\x15\x9d\x61\xd6\xf2\x62\xd2\xef\xbc\x2f\x9d\x07\xd8\xbf\x47\x2c\x16\x68\xc7\xb5\x8b\xb9\xb1\xa8\x41\xb5\x17\xd7\x80\x79\x11\x30\x9e\x0a\xe9\x70\x1e\x1e\xae\x6b\xb6\xb3\x5a\xcf\x6f\xfd\xed\x36\x1a\xa7\xb1\x2b\x90\xf0\xc7\x0a\x72\x1f\x76\x67\x8d\x28\xea\x15\x05\xe2\x3a\x5b\x08\xda\xdd\xb5\xe4\x2c\x23\x56\xbf\xe4\x26\x89\x61\x8a\x6e\x5c\x2d\x50\xdc\xa0\x58\x89\x57\xd5\xc5\xb9\xbd\x34\x54\xb6\x15\x42\x18\x4d\x2c\x2c\xd2\xf6\xc2\xee\x2d\x71\x4e\xf5\x71\xc2\xad\x44\x62\x5c\x54\x1d\x53\x0f\x39\x08\x83\x8f\x0e\x0e\x64\x6f\x53\x99\xde\xc4\x17\xf2\x21\xd2\x6b\x92\x48\x8a\x71\x2f\x5f\x28\x43\xd3\xa3\x22\x0b\xb2\xfe\x7c\x04\x50\x03\x04\xa5\x61\x07\x0a\xe4\xac\xb3\x76\x0e\x09\x43\x18\x31\xc4\x0c\x0f\xa5\x52\xaa\xe5\x38\x15\xe2\x8a\x56\x21\x56\xd6\x81\xfe\xad\x98\x67\x9c\x51\x9f\x6d\x2f\x4a\xcb\xc7\x95\x2a\xa9\xc3\xeb\x26\xc5\xad\x66\xb0\x85\x2b\x33\x3f\xd6\xc5\x6b\xa2\x7a\x1a\x3e\xe8\x7a\xc3\x7d\xd7\x1c\xb3\xc9\xa0\xef\xa3\x6e\xd1\x7c\xd0\xdf\xdd\xa8\x8a\x1d\x87\x25\x7e\xa1\xea\x92\x49\x0f\x1b\xa5\x1d\x6e\x30\x01\xee\xda\x92\x88\xf4\x85\xb7\x81\x7e\x67\x19\x6d\xc4\x86\x37\x46\xb3\xe2\x78\xde\x41\x44\x4c\x59\x72\xf7\x98\xe3\x3e\x0d\x48\x74\xf3\xe7\xa0\x7b\xca\x14\xae\xdb\xaa\x26\xca\x89\xd1\x02\xbc\xf9\xf4\x42\x33\xf3\x3c\xae\x03\x3f\x90\x60\xe0\x6b\xbb\x55\x04\x41\x45\xee\xad\xe2\x72\xef\xe4\x41\x1f\x27\xae\x68\x2a\x29\xd2\xf5\x86\x87\x28\xbf\x9d\xc1\x4a\xb0\xb3\x91\x73\xf5\x9e\x62\x59\x88\xa3\x6e\xb0\x3a\x25\x2d\xf4\x11\xde\x0d\x8f\x4e\xfa\xfd\x77\xbb\x7e\x2c\x7c\x5c\xa2\x7f\x31\x1f\x75\x7c\x9e\xbe\x3e\xa4\x10\xec\xe6\x19\x6c\x3b\x12\xdb\xbb\x5c\xb8\xc5\xf9\x5c\x7d\xcd\x47\xed\x76\xd6\xae\x80\xf2\xd3\x18\x17\xc3\x84\x34\x15\x92\x0b\x94\xe3\x50\xce\xaf\xb0\x8a\xa3\xce\xd0\xc8\x98\xaa\xd3\xfb\x4b\x9f\x4b\xa5\x94\x84\xc7\xcc\x51\x11\x3b\x35\x79\x51\x42\x18\xc9\x6d\x81\x84\xff\x14\xb5\xbd\x43\xf7\x8b\xe4\xd6\xc1\x4f\x02\xad\x15\xd1\x5c\x2d\x50\x50\x0e\x2c\x2c\xea\xcc\xe3\x94\x1f\x0b\x91\xce\x54\xa6\xbf\x2c\xb3\x62\xfe\xf8\xac\xb3\x59\x60\x58\x98\xb1\xb0\x9b\x16\xc9\x70\x5f\xab\x0e\xab\x36\x63\xbd\xdd\x8d\xaa\x04\xfa\x11\x27\x0a\x94\xe2\xf5\xb8\xf0\x49\x10\xf7\x18\xc8\xf1\xe8\x93\x57\x1d\xbb\x2c\xf9\xd7\x94\xf6\x38\x83\xf3\xbc\x8f\xda\xbf\x96\xbb\x65\x4f\xbf\x89\x90\x9f\x8a\x0b\x74\xfd\x4d\x75\xde\x7f\x5e\xba\xab\xc0\x59\x9b\x81\xb8\x92\xf0\x54\x74\x84\x74\x50\x92\xea\x6f\x96\x8a\x7a\x69\xa9\xb4\xe1\xc9\x63\x3e\xb1\xdf\x6f\xf0\x9a\x50\x36\x54\x82\x44\xb1\x1f\xb2\x96\xd3\x9c\x53\x0e\x17\x42\x94\x39\xaa\xeb\x75\x64\xf9\xed\x41\x9b\x46\x47\x1b\xe2\xb8\x94\x2a\x31\x83\xc8\x3d\xe3\x6d\x4f\x96\xd6\x35\x52\xfe\xfe\xca\x46\x7c\xe4\x52\x6c\xff\xc0\x82\xbd\xa1\x8d\x43\x54\x93\x49\xd4\xc6\x61\xc6\xc5\xb8\x00\x5e\x89\xfc\x6b\xca\x45\x42\x33\xd7\x8d\x46\x3c\x08\x75\xc0\x02\xa1\xd5\x13\x70\x75\x64\x80\xe9\x2a\xc9\x18\x50\x29\x40\xd4\x05\x0c\xc8\x50\xd4\x44\xc7\x10\xa9\x7b\x66\xa1\x35\xcc\xd1\x49\x16\x40\x47\x06\xbe\xb9\x9f\x20\xee\x3d\x30\x86\xd8\x33\xde\x46\x1b\xb0\x4d\xe0\xc6\xc1\x86\xda\x01\x92\xad\x96\xd2\xd3\xa3\x74\x86\x19\x4b\xf6\xba\x36\xa9\xf2\xcf\xa8\x22\xd1\xa7\x9c\x16\x18\x96\xf7\x4b\x02\x6b\x04\xb2\xe8\x22\xf7\xbb\x1d\x75\xd7\xc9\x61\x94\x0a\x69\x37\x8d\x2d\xa8\x9e\x85\x55\x95\x8a\x95\xd2\x78\x18\x3b\x0b\xbe\x06\x24\xd6\xe0\x00\xf4\x85\x64\x9d\x85\x79\x47\x66\x8a\xbc\x4d\x9e\x50\x67\x7d\x7e\x7d\x75\x56\x7f\xcc\xd2\x50\x7d\x14\xd5\xb7\x87\x11\xa1\xb6\xb7\x41\x71\x42\xc0\xe8\x08\x29\xe7\xe3\xfb\xc8\x28\x69\x62\xa7\x76\x4a\x84\x4b\x5a\x1c\x5a\xad\xed\x94\xd7\x25\xea\x70\x35\xe9\xc8\x67\xe6\xd7\x34\x23\xf2\x1a\x25\xa9\x52\x8f\xe4\x72\xec\x44\x0f\x01\x27\x7c\xe8\x1b\x6f\x76\xec\xfc\xeb\x66\x1d\x34\xd2\x33\x94\x79\xda\x9f\xc4\x18\xba\xb7\xde\xa6\x5f\x60\x2a\xf8\x90\xcf\xb8\x09\x29\x3f\x54\xd2\x41\xc1\xe2\x88\x8e\x2d\xe9\x83\x66\x18\xf0\xd4\xc2\x25\x97\xa5\x9e\x04\x79\x2a\x78\x20\x42\x3c\x3f\x05\x5d\x1d\x66\x58\xc7\x4c\xd3\xff\x25\x12\x68\x54\xb4\x52\xe3\x64\x97\x23\x18\xef\x24\x44\x7a\x39\x2b\x01\x4a\x6d\xc4\x07\x40\xa2\x07\xad\x01\xfa\x90\x8b\xb0\xe7\x1e\xe4\x4c\xca\xdf\x5e\x4b\xef\x53\xc6\xaa\xac\x42\xbd\x95\x72\xa5\x60\xff\xfc\x70\xaf\xb6\xb4\xeb\xfa\x55\x0c\x3a\xfd\x00\x87\xe3\xa4\x9b\xca\x4a\xed\x4b\x50\xe7\x82\xb2\x17\x40\x0c\x9f\xcf\xbe\x07\x6b\x3b\x6b\xfd\x98\xfe\x7b\x3e\x30\x3a\xdb\x9e\x59\x72\x36\x5a\xaa\xb1\xf4\x46\xe8\x61\x82\xbc\xce\x5d\x5a\xe1\x00\xd9\x71\x39\x0a\x5f\xf9\x35\xf3\x64\xa7\x5f\x19\xb3\x1b\x1a\x8b\x84\xbd\xc5\x9c\xf9\x2b\xd9\x0d\x4f\xb6\xac\xfe\x98\xab\xc7\x93\x45\x9f\x5d\x1a\xd0\xfa\xa5\x64\xe3\x1f\x76\x60\xf1\xf2\x3a\xb6\x4b\x89\x30\xdc\xf6\x9f\x49\x92\xb0\xd3\x5b\x4b\xfe\xa9\xcb\x60\xc9\x56\x0e\xc3\x9c\x42\xb4\x7f\xc7\x79\x5e\x3e\xaa\x91\x76\xfc\xe6\x31\x96\x17\x4f\xf8\x11\xf5\xed\x23\x75\x0e\x9c\x2b\xe4\xe1\xbf\x79\xeb\xdd\x16\x30\x90\xbc\xef\x48\x38\x7a\xb4\xf6\xd7\xff\x77\x03\xe2\x7d\xd3\xf7\x60\xbe\x64\x03\xc7\xd7\x0c\xbe\xe7\x91\x39\xfe\x40\x82\x93\xbd\x04\xdf\xd9\x7f\x8f\x86\x88\x85\xca\x8f\x85\x10\xf5\x99\x4d\x29\x4c\xc7\xf5\xed\x7c\xdf\x7e\xf6\xc9\xbf\x25\xc3\x6e\x4f\x55\x3b\x59\x93\x88\xde\x88\xdb\xc0\x66\x23\xb3\xeb\x99\x67\xaa\x29\x49\xd1\x45\x6b\xb9\x07\xc9\xff\xf9\xef\xd8\xc0\x82\xfd\xb0\x55\xeb\x92\x92\xdd\xe5\x69\xd0\x67\xfd\xf3\x70\x3b\x22\x9e\x12\xd1\xf3\xc3\xe5\xee\x92\x38\x14\x42\xab\xc7\xb2\x8a\x95\x1d\x6c\xca\xf9\xf8\x3e\x94\xa0\x82\xd9\x19\xdb\xef\x27\xfe\x2e\xe5\x23\x44\xf7\x8f\x4b\x91\x95\xf6\x74\xa7\x90\x24\xb8\xc0\x70\x09\x4d\xbf\x9c\xb5\x5f\x42\xba\x61\x1e\xed\x95\x6e\xf7\x93\xfd\xc9\x17\x6b\xe7\x19\xb0\x1e\x74\x9d\x61\xa7\xc2\x1d\x41\x7b\xf3\xf5\xe2\x1b\xf0\x6c\x39\xf2\xa2\xd8\x1d\x74\xd9\x0c\x7a\x6d\xed\xaf\x2c\x47\x59\x77\x97\xed\x64\xd4\xdd\x29\x1b\x82\xc1\x7b\xd9\x52\xe3\xed\xe0\xab\x45\xd3\x32\x07\x2f\xbe\x3d\xf3\x4a\x01\x7c\x66\x51\xf0\xb0\x03\x04\x11\x0d\xf7\x75\x7c\x08\x41\xa0\xb9\xcb\xc9\x90\x67\xbb\x41\xcf\xb7\x9a\x13\x72\x60\xd6\xc2\x1f\x49\x16\x81\x87\xba\x6d\xde\x45\xa7\x81\xb0\x47\x40\xb6\x6f\xc6\xb4\xdd\x11\x3e\x40\x5f\xf9\x5d\x7d\xe9\x5e\x57\x5b\xba\xac\xeb\x60\xd8\x05\x9a\xdf\x9c\x32\xbb\x92\xf7\x2b\x6d\x12\xbf\x0a\x39\xbc\xab\x9e\x51\xa1\xd1\x64\x9c\xa8\x55\xf2\xf4\x26\xbf\xe9\x79\x67\x9e\xf6\xd5\xfe\x55\x45\x32\x7a\x5e\xcf\xba\xfa\x8b\xf9\x79\x70\x23\x5e\x2d\x0e\x0d\xc5\x93\x45\x17\xb1\xd9\xa1\xd0\xee\x17\x22\x40\x91\x52\x23\xa3\x4d\xc4\xa9\xdf\xb6\x78\x39\xcd\x56\x61\x5a\x18\x36\x53\x65\x7f\x00\xe2\x97\xb8\x25\x13\xba\xf7\xdc\x20\x95\xfe\x35\xb1\x2f\x5c\x20\x05\x8b\x71\xf1\x16\x5a\xc3\x09\x44\x6d\xaf\xfd\x6a\xb3\x7c\x94\xaf\x55\x2b\xed\xa5\xb3\xa5\x6b\xd3\xc0\x39\xf8\x3c\x22\x94\xe1\x0f\x91\xc6\x2f\x58\x61\x75\x01\x41\x7a\xb2\x65\xe9\xe9\xb1\x23\xa9\x66\x44\xc6\x8d\x27\x27\xeb\xf9\xef\xbf\x1f\x10\x53\x00\x0e\xeb\xaa\x10\xfd\x72\xc4\x7b\x91\x2e\xa4\x76\xe9\x8e\x2a\xbe\x25\x77\x57\x8d\x06\xa4\xd5\x11\x8b\x7e\xf1\xb0\x82\xd0\x39\xc3\x51\x8e\xce\x97\x29\x63\x9a\xec\xa2\xa5\xda\xdd\xe0\x6d\x7a\xf5\x2c\x6a\xfe\x07\xea\xc3\xf7\x7e\x08\x1a\x5a\xfb\xab\xf0\xc9\x84\x14\x06\xd7\x9c\xb0\x35\x63\x80\x69\x2e\xfc\x4e\x63\xf8\xfe\x74\x0c\x3a\x9e\x8f\x3a\x3e\x88\x4d\x2f\x73\x50\x1e\xca\xa5\xbb\xdd\x8b\x36\x4d\xe7\xfc\xf7\x3e\x15\x87\x4d\x93\x48\x3e\x35\xbb\xf1\x67\xba\x1a\x81\x67\x6c\xa9\x13\xa4\x80\x96\x12\xbc\xba\xf3\xd3\x20\x48\x45\x32\x6f\xbc\xdb\x1f\x19\xf9\xaa\xf6\xf3\x1f\x7f\x84\x3c\x53\x3e\xfc\xcc\x27\x03\xf1\x8b\x33\x49\x78\x70\x20\x0d\x72\xca\x0b\x86\xb7\xfa\xab\x94\xf6\x70\xcc\xc9\xef\x9c\x7a\x51\x30\x8a\x95\x70\x49\xf7\xd3\x0f\x99\x47\x3e\x1c\x6e\xa3\x57\xdc\xbd\xcb\xa6\x00\xbe\x17\x6d\x9a\x8f\x86\x12\xc9\xa2\x8b\x04\xc2\x20\x3d\xc2\x40\xd1\x10\xd3\x40\xdd\x27\x7e\xb4\xb4\x8d\x31\xd1\xcc\xf9\x69\x54\x62\xc5\x4b\xf3\xe4\x42\xa5\xcc\x99\xa8\x08\x0f\x91\xa8\xeb\x25\x5d\x80\x71\x6d\xc2\xb7\x82\x24\x23\xe0\xee\xbc\x6e\x4b\x33\xfe\x95\xbc\x9c\x5f\x28\x0f\xb1\x0b\xa5\xd1\x1d\x13\xd2\xf8\xb6\xbf\xdf\x68\x62\xb1\x76\x47\x37\xb3\x15\x6b\xc8\x16\x2c\x84\x21\x3e\x81\x61\xff\x2b\x3c\x60\xe1\xc7\xa7\xea\x5f\xa4\xc0\xb9\x58\x59\xf3\x8f\xea\x9a\xde\x4d\xa7\x8d\xfd\x7c\x97\x09\xcb\x10\x7a\x7c\xeb\x32\xe9\xc5\x9b\x3f\x37\x2f\x2e\x8f\xd9\x0e\x61\xb9\xb5\x82\xd6\xb3\x96\x64\x31\x4e\x80\x8f\x1d\x23\x33\x15\x6b\x38\x79\xd1\xb7\x7e\x18\x39\xd0\xf4\xce\x22\xdd\xd2\xad\xfa\x08\xc7\x66\x4d\x62\xd4\xd0\x28\x6b\x67\x3b\x9e\x0a\x46\xbf\xaf\x5e\x7c\x01\x11\x57\x0d\xaf\x2a\x44\xd4\xa7\xfe\xaf\x0b\x3e\xe0\x33\x27\x64\x62\x1a\xba\xfd\x73\x9a\x52\xde\x2f\x44\x91\xc2\x39\x39\x2b\xfd\x85\x9a\x9c\x8e\xdb\x8d\xad\xe0\x7f\xbd\x02\x2d\xfa\x83\xf8\x1f\x9d\x5f\x7b\xf9\x9d\x6d\x5c\xe0\x21\x15\xc9\x34\xd4\x6b\xf5\xb9\x01\xa9\x18\xf3\xc6\x5f\xc2\xc9\xa7\x84\xbb\x71\x22\x3f\x67\x3e\xa1\x50\xdc\xa2\xce\x86\x61\x58\xad\x73\x78\xb9\x11\x1f\xcb\x48\x78\xed\x8a\x13\x89\x86\x4b\x48\xe0\xe3\xad\x24\xc0\xd5\xf6\x4b\x2f\xd1\x8a\xe6\xe9\xdd\xfa\xac\x3a\xb4\x57\xea\x84\xef\x4c\xe2\xe2\x19\x19\xd8\xc2\xef\x9e\xfe\xd0\x7d\xf2\xa7\xf4\xc4\xf4\x35\x72\x56\x4f\xf2\xa2\x84\x47\x8c\x52\x40\x25\x83\xda\xe5\xfa\xab\xf3\x1d\x21\xd3\xcb\x87\xff\xe6\x0f\x5f\xae\x92\xf4\xad\xf6\x9c\xa6\xcf\xff\xfe\x5a\x1f\x6a\xfe\xa8\xea\x5f\x2f\x7e\x4e\x98\x23\x12\xdf\x76\x3b\xdd\x21\xfe\xf3\x03\xb0\xa1\xee\xf8\xa5\x4f\xd5\xd7\xc7\x82\x22\xbf\x8e\x5d\xd7\x3d\x85\x07\x2a\x12\x22\x4b\xbc\x04\x7e\xaa\x4c\xdf\x89\xd8\xea\x7d\x1d\x45\xbe\x5d\x9c\x5c\x2f\x81\x3c\x00\x5e\x72\xd9\x79\x12\x0b\x97\x13\x0b\x0b\xc5\x45\x96\x4d\x37\x8d\x18\x0d\x2e\x0d\x5c\x3e\x2f\xbf\x4a\xb5\x14\xc6\xb2\x04\x04\x53\x3c\xfe\x43\x20\x3e\x47\xa0\xd7\xc5\x51\x68\x38\xd7\x26\x9b\xdd\x8b\xfa\xdc\x7d\x52\x66\x4c\x90\xb0\xd3\xdb\xe1\xc4\x3e\xad\x20\xbb\x4c\xa1\xdc\xbc\x6a\xc1\x3a\x37\x1a\x21\xf2\x3d\x27\x00\x7d\x50\xc8\xca\xe7\xf8\x9c\x19\xc9\xe1\xfd\xf0\x16\x90\xd1\x24\x54\x36\xb6\x7e\x22\xbb\x26\x13\xca\xc1\xbf\xf9\xca\x25\xb1\xd3\x46\xfb\x6a\xff\x9b\x48\x66\x70\x0b\xe3\xd9\xf5\x80\x9f\x67\x74\x3b\x07\x02\xff\x0b\xcc\x92\x4f\x23\x69\xed\xef\xf7\xbc\xb8\xd4\xd6\xc4\x2e\xe2\xd9\xac\xc0\x6d\x72\x8c\x56\xea\xef\xbf\x6b\x39\x4a\x84\xfb\x4d\xc2\x40\x31\x07\x52\x1b\x72\xed\x65\x19\x99\x2f\xf2\x35\x62\xbe\x6c\xf4\x7c\x60\xeb\x23\xfe\xba\x93\xe0\x83\xdd\xe3\x7d\x16\x76\xe4\x86\xcb\xfe\xfc\x69\xd9\x90\x82\xa1\x14\xc6\x25\xf1\xf5\xc5\xd5\x0e\xfe\xc3\x1a\x51\xf5\x9c\x1a\x1c\x13\x05\xb5\x26\xca\x3a\x98\xb8\x49\xc5\x9f\xe0\x2b\x05\x1c\x45\xc4\x72\x0b\x6b\xbf\xbb\x17\xfb\xcb\xaf\xf4\xa3\xc8\x06\x4d\x40\x90\x15\xf4\xdc\x63\x06\x83\x9b\xba\xdb\x23\x3f\xbe\x9c\xe9\x2f\x72\xb3\xc4\x47\xa6\x11\x4a\x3f\x4e\x74\xd9\xf8\x37\xe3\xb0\x23\xd3\xfb\x5f\xbb\x57\x70\x9d\x04\xc2\x1c\xb1\xe4\x47\x2a\x9c\x8b\x15\xc2\x6d\xe1\xfb\xf4\x5a\x51\x93\x90\xbe\xa7\x18\x47\xd8\x9c\x83\x2c\x6f\xbc\x94\x87\xda\x43\x96\x46\x6d\xf6\xc7\xc7\x00\x5e\xe7\x6b\xbf\x44\x10\x15\x3c\x35\x09\x41\x85\xd1\xea\xac\xaf\x45\x4b\x98\xa7\xdb\xf7\x9d\xca\x4f\x30\x46\xf3\x35\x6c\xc7\xd6\x1c\x1e\xba\xa7\x64\x8e\xb1\x3e\x6b\xc4\xc7\x7a\x93\x0c\x6e\x91\xfe\xaf\x91\xf4\x4d\xaf\x95\x8a\x85\x40\xc8\xf7\xf5\xdf\x9b\xd4\xff\x9b\xac\x37\xfc\xcc\x96\xcd\x63\xee\x7f\x70\xf4\xdc\xfc\x67\x2f\x71\x37\x46\x82\x0e\x00\x5e\x22\x58\x1d\x77\x99\x00\x4e\xa7\xfd\xf2\xf2\x53\x44\x98\xa1\xcd\x43\xe3\xf1\xee\xda\x8e\xf3\xbf\xf5\x86\x4d\x0e\x6d\xd9\xbf\xd9\x84\xae\xa6\xbf\x89\x64\xd2\xe9\xe5\x30\x73\xcd\x1f\xd1\x0d\x9f\xb1\xf4\x3a\x70\x41\x69\x62\x0c\x1e\xdd\x7a\xcb\x6a\xe2\x4c\x9b\x93\xc5\xaa\x43\x77\xa5\x1e\x6e\x9d\xd2\xeb\x2b\xe3\xaa\x63\x5d\x39\xcc\x88\x3e\x85\xf9\x65\x02\x2e\x65\xc0\xc9\xf8\x73\xd5\xeb\x00\x1f\x66\xa5\xff\xe2\x0e\xa1\xac\x49\x28\x32\xd0\x24\x9e\x20\x01\x7e\x2e\x8e\x51\x24\x86\x94\xe1\x7f\x77\x65\x37\xde\xd8\xfb\x44\x2a\x3a\xc0\xd9\x10\xef\xae\x1a\x72\x41\xd9\xc9\xbd\xe4\x81\xdc\xd8\xc0\xc5\x1e\x69\x14\x4f\xe4\xac\xc0\x0c\x35\xaa\xc4\x6c\x61\xf0\x56\xe2\x19\x00\xe8\x25\x32\x48\x58\x50\xc1\x63\x5f\x7f\x42\x00\x46\x86\x7b\x1e\x22\xba\x7c\xa7\x9d\x47\xa8\x0c\x82\x1f\x60\x6f\xbc\xb8\x37\x96\xf5\x11\x1d\xf9\x5e\x92\x53\xc5\x7d\x78\x19\x7b\x46\xd7\x41\x8c\xfb\x07\x6c\x24\x77\x09\xc3\x30\x5a\xd6\xa5\x32\x1c\x78\xd2\xfb\x86\xd6\xe5\xee\x7d\x4a\x0a\xfd\x40\x3f\x86\x79\x17\x92\xca\x2a\xec\xe6\xce\x56\xff\xac\x20\xd0\x95\x45\x28\xd3\x13\x0a\x8c\x92\x3d\x6b\x2e\xd5\xb0\xe7\x38\x93\xc7\x51\xeb\x3a\x67\x8a\x6f\x3c\xc3\x2e\xe7\x56\x2f\xfd\x15\x34\x39\xbf\x4a\x27\xc6\x78\x23\xa2\xe1\x5c\x72\x54\xf3\x4c\xa0\x78\x40\xfa\xbe\xc5\xef\x37\xea\xac\x13\x45\x53\xa7\x30\xbf\x7d\x04\x52\xd2\x04\xb8\x8d\xf2\xc8\x19\x9d\x85\x61\xb4\x14\xba\x2a\xf2\xdf\x8b\x8b\x2c\xe7\x65\x7c\x86\x25\xb7\x37\xe6\x36\x28\x93\x9e\x37\x5c\x56\xa9\xb5\xa1\x3b\x1d\x32\x0e\x58\x9a\x89\x64\xd1\x8e\xac\x28\x0c\x99\x6f\x3f\xbd\xda\x1f\x97\x44\xae\xd7\x10\x27\xad\x68\xdf\x55\x98\xe4\x34\xec\x6b\xb6\x20\xd0\xf5\x98\x44\x99\xc2\x3b\x86\x39\xf1\xe9\x7f\x8e\xdf\xad\x1f\x6b\xe7\xf4\x05\x0a\x52\xe4\x53\x3f\x89\x9b\x2f\x89\x57\x7f\x42\x8f\xfa\x98\xd5\xfe\x4f\x12\x1d\xb3\x9b\x4e\x9f\x3a\x41\xa0\x6a\xef\x5f\x8d\x5d\xef\x0f\xed\x73\xa1\x37\xbf\x82\xd1\xf7\x2e\xdb\xac\xb4\x41\xdd\x08\xad\x19\x84\xfc\xa5\x5f\x06\xa3\x16\x7f\x7d\x9c\x5e\xf3\x97\x2c\x23\xf4\x8b\xc3\x65\x37\x3c\xb1\xb5\x15\xb5\x53\xf1\x3b\xcb\x3e\x17\x14\x7f\x88\x25\xd3\x0e\x5c\xd0\x97\xec\xb4\x4e\x93\x69\xd9\x3d\xf4\xc1\xf1\x91\x62\x5d\x70\x49\xab\x07\x71\xe6\x8e\x64\x76\x44\x95\x47\xf6\xa0\x4d\x47\x42\xf8\xad\xdc\xd3\x11\x04\x9b\xc0\xcf\xbd\xed\xba\x2d\xda\x82\x44\x0f\x04\xed\x2a\x26\xd6\xe3\xf8\xc3\x6f\xff\x66\x1b\x31\x4c\x4f\x8f\xb2\xf1\x7a\x54\xef\x11\x0b\x04\xcc\x13\xa7\x2f\x27\xea\x11\x30\xc6\xff\xe5\xfe\xae\xff\x16\x79\x42\xbd\x8e\x75\xe0\x70\x9f\x72\xea\x07\xc7\xbf\xcc\xc8\xeb\x4e\x0f\x48\xa3\x32\xe9\xd9\x3c\x7b\xcf\x0d\x60\x4a\x36\x99\x68\x79\xca\x69\x98\xe6\xd7\x96\xb4\xb3\xbd\x31\x16\xe1\x42\x33\xe6\xdc\x84\x83\x36\xf4\xf7\x73\x16\x08\xf8\x43\xf2\x32\x74\x95\x6f\x54\xf4\x31\x83\x08\xcd\x55\x69\x98\xbc\x8f\x9a\x5b\xbb\xed\xc2\x8f\xab\x9f\x08\xe7\x5b\x1e\xe4\x45\xdf\x84\x4c\x93\xf7\x57\xce\x2f\xec\x08\x81\xa3\x3d\xee\x8e\x64\x35\xa4\x12\x8c\xf7\x52\x76\x5d\x54\x7d\x7e\xc0\xf4\xbf\x85\x98\x24\x42\x7c\x9f\x73\x7a\x53\x93\x0b\x0a\x89\x07\xd1\xc9\xb3\x02\xf5\x69\x8f\x86\xe3\xf5\x82\x13\x22\x63\x16\x7d\x25\x65\x75\x73\x3b\xbb\xd9\x82\x75\xea\xd1\x15\x2d\x28\x33\xa7\x98\xb3\xb9\xb7\x16\xc0\x6d\x75\x6b\xd2\x8b\x3f\x46\x85\x73\xff\x8d\xfd\x34\x5b\x97\x85\x6a\xba\x2c\x1f\xcd\xa4\x59\xad\x13\x9b\xfc\xf6\x88\x4d\x7e\xa9\xdc\x1c\x4d\x78\x8d\x89\x42\x38\x17\xab\xeb\x3c\x0a\x06\xd4\xc7\xec\x67\x50\x75\x74\x6e\x3b\x7b\xd3\x5e\x81\x15\x9c\x74\x6b\x9a\xd2\x7d\x39\x14\x50\xbf\xc7\x0b\x0c\x1f\xf8\xe9\x7c\xfd\x2e\x0c\x28\xb9\x11\xab\x3b\x62\xff\x6c\x04\xb9\xf8\x3c\xa5\x55\x8e\x7b\x14\xa2\xd4\xf5\x95\xbe\x7e\xb4\x34\xf2\x6a\x3a\x62\xef\xf8\x51\xf5\xb2\xc4\x2a\xe7\x4d\x1c\x8b\x36\x82\x2c\x7a\x45\x8b\x72\xce\x3d\xa6\x77\xf9\xd8\xa0\x23\x7e\x64\x64\xea\x65\x60\x5d\xf9\xf8\xa8\x53\x61\x30\x13\x3b\x48\xa4\x3a\xe0\xf4\x30\xe3\x62\x56\xc1\x07\xb2\xec\x22\xe0\x86\xb8\x13\x18\x3d\x37\x7a\x69\x59\xf0\x3b\xb9\xb0\xf0\x93\x76\x5d\x31\x65\x22\xe1\x9d\x59\xf0\xce\xcf\xe7\x7b\x7f\xf6\x50\x5d\x94\x81\xc5\x9c\x7c\xf8\xbe\x5c\x02\x64\x55\x1c\x0a\x89\x8f\x5b\x96\x72\xeb\xee\x63\x2c\xfd\xf9\x6c\xf0\xf1\xef\x57\x0a\xc1\xb3\x89\x16\xd7\xe4\x50\xe6\xad\x69\x67\x7b\xb5\xa8\xfc\x58\xb1\x46\x33\x32\x4f\x0e\x9b\x47\x26\xff\x06\xb9\x35\x83\x58\x25\xf6\xba\x70\x78\xcb\xa7\x92\x56\x59\x7e\x7f\x1a\xad\xd6\x76\xf8\x64\xe8\x72\x97\xd8\x14\x4a\x37\x1f\x87\x06\xad\x6a\x23\x18\xcb\x5e\x51\x81\x63\x1a\xfa\xc5\xf1\xb1\x1c\x40\xab\x9f\x9c\xc6\xa8\x68\xad\x5b\x8d\xb8\xa7\xd4\xf0\x8d\x2b\xd4\xef\x9b\x48\x64\xa6\xd9\xe5\xdf\xfd\x97\x7e\xe9\x1f\x6e\x8a\xef\xa8\x87\x83\x1e\xd9\x3d\x8d\xa7\x24\x95\x5f\x91\xda\xf7\x66\xe7\xaa\x72\x4f\xa6\xfc\x6e\x49\xd1\x93\x53\xac\x74\xfa\x6d\xf4\xd4\xb6\x6f\x9f\xe6\xaa\x52\x8f\x3f\xde\xdf\xa0\x44\xac\x5e\xfe\x1b\x73\x1d\xab\x5d\xb4\x07\x41\x6d\x31\xa4\x81\xc3\x75\x94\xa2\x93\x72\x43\x37\xb9\x5d\x69\x97\xf1\xcc\x85\xd1\x22\x4a\xca\x35\xea\x92\xd7\xe5\x93\xec\xcf\x66\xd3\x82\xa9\x7e\x89\x17\x54\x70\xc7\x35\x87\x8c\x2b\x87\x1e\xf6\x26\x69\x79\x82\xf9\xe8\x80\x80\xe3\x88\x34\xc9\x93\x6a\x74\x31\x4f\x52\xd9\x7a\xd4\xca\xd0\xd1\xe1\x20\x38\xe5\x2a\xa5\x14\x16\x0d\x97\x78\x86\xb2\x26\x15\xc0\x9b\x5f\x48\x0a\x04\xfb\x77\x5f\xaa\xa8\x04\x73\x1e\xd2\xd3\x97\x33\xf9\xbb\x0b\xac\x2e\x10\x9d\x8b\x2f\x6f\x69\x7a\xf1\x4d\xab\xc4\x0e\xdb\xf0\x00\x2f\x49\xdd\x0a\x2f\xa8\x90\xa9\x95\x05\x24\x29\x40\x70\x23\xc8\x45\x64\x2e\xf7\x84\xca\x4d\x50\x72\x97\x31\xf2\xb6\xed\x48\xed\x69\x53\xe0\xf1\x70\xfb\xb6\xfe\x26\x3b\x8e\xae\x11\x0f\x72\xc4\xfb\xa8\x46\xc3\x25\x0a\xc0\x67\x05\xf5\x50\xe4\xbb\xc6\x27\x6a\x91\xe2\xd2\xd8\x91\xdb\x38\xec\x08\x2b\x76\x8a\xe9\xe1\x89\x11\xa0\xf9\x55\xe7\xb6\x5d\x67\xb7\x55\x68\xb8\xec\xfe\x2e\xa0\x2e\x0c\xf4\xbc\xd9\x51\xdf\x6d\xe7\x29\x03\xc0\x35\x08\x2c\x7d\x4f\x14\x06\x6d\x79\x55\x57\xb0\x3c\xe5\x30\x7d\xe7\x45\xd0\x7b\x17\x12\x3b\x92\x25\x30\x78\x0f\x13\xb1\xf7\xe7\xb3\x0e\xae\x68\xea\x88\x6e\x90\xc0\x53\xfb\x4f\x77\x58\xa5\xf2\x55\x01\xfd\x55\x3a\x80\x5f\xed\xcb\xd9\x9c\xc9\x7a\xa3\xc0\xad\x1d\x46\x1b\xe7\x29\xee\x02\x89\x3a\xe1\x00\xdc\xb4\xed\xe9\x5e\x67\x63\xfc\xbb\xf0\x75\xd9\x2f\x0f\x5b\xac\x0a\xc1\x8f\xac\x43\x2e\xe3\x10\xba\x7f\x0a\x33\x63\x1e\xca\xda\xbc\x75\x78\xcb\x3a\x44\x73\xc5\x5b\x78\x5d\xd7\x39\x33\xc1\xfa\xf8\xb2\xaf\xe6\x02\xda\x1b\x87\xf6\x25\x50\x83\x63\xfc\x7a\x7f\xe7\xe5\xf2\x21\x8d\x96\xfb\x14\xc9\xbf\x02\xc8\xc7\xe6\xc5\x17\xa9\x16\x43\x58\xc5\x9f\x56\x9c\x74\x6a\x94\x2b\xff\xfb\x85\x24\xbe\xf1\xcc\x07\xd1\x61\x7b\x81\xe2\xb6\x8f\x3e\x7b\xe4\x79\xc7\x1f\xe0\x77\xc2\xde\xd1\x20\xe7\x7a\xf6\xd7\x47\xfa\x02\x9b\x93\x3f\xfb\x6f\x2d\xa5\xc1\x5e\xea\x54\xb8\xeb\xe4\x04\xd9\xb4\x5f\x08\x0d\xf1\xfc\x74\x19\xfa\x61\xd5\x50\xdc\x0f\xf1\xf6\x44\x00\x0a\x79\x44\xb5\xac\xcc\x74\x8f\x9c\xc6\x14\xf8\x12\xf9\xa9\x23\xbf\x49\x76\x49\xc9\x0e\x3f\x45\xa8\xb9\x28\x16\x6a\xe0\xd9\xe9\x1a\x03\x85\x68\x94\x29\xb4\x62\x9e\xf9\x38\xd8\x08\x21\x1c\x75\x6a\x20\x7b\xda\x33\x2a\xe4\x5c\x35\xb7\xc6\x67\xa5\xa5\xc8\xee\x97\x9e\x88\xeb\x9d\x8b\x34\x32\xbb\x3e\x2b\xae\xf9\x72\xd7\x54\x51\x76\xd7\x3f\xea\xb6\x5e\xce\x4d\xac\x21\x5b\xe1\x3e\xef\x7b\x51\x08\x0b\xf1\xdb\x5d\x6a\x73\x2e\xa8\x1e\x53\xc1\x81\xe6\xf8\x47\x00\x5a\x89\xf5\x5a\xb2\x17\x03\x01\x73\xaf\x14\xd8\xb0\xf9\xc2\xc4\x41\xbe\x05\xf9\xf4\x5f\xf6\xaf\xe7\x78\x53\xae\x67\x4f\x8e\x42\x2b\x2e\xb2\x3b\xc3\x3c\x3f\x9d\xed\xbb\xa7\x64\xee\x94\x8f\x9c\x71\x85\xf5\x5f\xf6\x6f\xd8\xbd\xca\xa5\xe0\x92\x0b\x6f\xaf\xc5\x92\x2e\xec\x08\xaa\x13\x77\xc7\x5c\x68\x87\xea\x0d\xcf\xea\x8d\x46\xf2\xf7\x50\xfe\x1b\xc3\xed\xf3\xa2\xb3\xc1\x17\x57\x8b\x86\xbd\xa7\xe2\x50\xc8\x60\x3c\x54\x1c\x09\xa3\x2b\xe2\xa3\x84\x6e\xf7\xb6\xac\xdd\xb9\xc8\xee\x3c\x5d\xaa\x5a\xfb\xcd\x59\x97\x41\x1a\x76\x1b\xea\xd8\x7b\xd3\xd3\x44\x2d\xe3\x6a\x11\x95\xf1\x00\x16\x49\x7a\xb2\x05\x43\x7c\xb6\x25\xf6\x0b\xe0\x63\xa9\x90\x96\xcd\x12\x87\xa1\x96\x3c\xab\xa0\xcd\x86\xbd\xba\xf7\xf7\xb5\x5f\xb4\x57\x46\x69\x04\x1e\x1e\xd5\x8f\x5d\xd4\xfb\x02\xf6\xe9\xd6\xfb\xc3\xed\xf3\x9a\xdc\x49\x88\xbb\x3b\xff\x64\x5a\x21\x8a\x0f\xa9\x1a\x29\x8e\xfb\x02\xc8\xf9\x02\xc0\xc1\x67\x9d\x8b\x6f\xc3\xcc\xfe\x3c\xae\x3e\x0e\xb3\xaf\xed\x1e\x66\xce\x88\xf1\x8b\x4a\xe9\xb2\x86\x09\xdf\x1a\x00\xb5\x89\x36\xcc\xdb\x8f\xd8\x21\xee\xbb\x2e\x7d\x51\xb0\xe9\xec\x62\xf1\x6f\x61\x8d\x91\x9a\x24\x47\xe3\x36\x6f\xd8\x1c\xbf\xa8\xc3\xeb\x23\xf9\xc5\xce\xb0\x92\x0c\xff\x60\x7f\x8b\x96\x02\x2a\x37\x5e\x34\xfc\xf2\x50\x0b\x7b\x2b\xc1\xc4\x76\x96\xc4\x71\x33\xb9\xbd\x31\xab\xa1\x3b\x44\xc2\x4b\x11\x19\xb4\xe3\xf0\xe4\x1f\x25\x0d\x7f\xdd\x61\x57\xb7\x7c\x58\xfd\x7b\x6c\x01\x96\xed\xab\x8e\x1b\x57\x57\x9d\xad\x33\xb2\x22\x14\x82\x98\x00\x51\x2f\xf9\xd0\x45\xd1\x1a\xb7\x1a\x4d\x11\x8d\xd3\x93\x08\x6d\xf9\x4c\xc9\x52\xf9\xcc\x35\xd6\xb5\xae\xf0\x9a\x5b\x64\xcf\xbe\x37\x7d\x66\x0b\x2e\xa8\x71\xab\xb9\xaa\xbe\xb5\x73\xe8\xbd\xb0\x14\x04\x11\x57\xfb\x7a\x0d\x54\x3b\x8d\x98\x59\xa8\xd6\x76\xce\x60\x02\x10\x5b\x0e\xf5\xc7\x85\x77\x25\x4b\xc5\x58\x32\x87\x3b\x62\x0d\x6f\x5c\xa9\xd3\x51\xd7\x8d\x0d\xd8\xa3\xe5\x1d\x08\xb3\x19\x56\x94\xf3\xff\x2f\xac\x0d\x03\x15\x60\xa0\x09\x73\x2d\x44\x07\x19\x8c\xc4\x06\x3f\xbe\xbc\x3e\xc9\xf4\x6c\x39\xbf\xca\xdc\x42\x1a\xf3\x78\xfe\x8d\xb7\x58\x46\x66\x5c\xdc\xe7\x8e\xf7\x52\xda\x16\xc1\x5a\x26\xfe\xbe\xb6\xce\x5a\x2a\x5f\x88\x0f\xd9\x41\x1b\xc0\xc2\xc0\xc8\x27\xa1\x1a\x33\x63\x8f\xe2\xca\xce\xf6\x3d\x54\x57\x43\x4e\x93\x6c\x4a\x47\x5e\xb0\x24\x4e\xd6\xea\xf8\xb2\x16\x9c\x50\x4b\x7e\xa3\x3e\x69\x19\x91\xf0\x09\x08\xf0\x23\xc9\xe6\x91\xde\x7f\xf7\xa4\x36\x7d\x70\xf1\xb9\xdf\x28\x6c\x76\x23\xc2\xca\xb6\x77\x54\xd3\xfa\xf8\xd7\x69\x46\x33\xed\xab\x17\xac\x9b\xb5\xbf\x39\x01\xbd\xa5\x51\x01\x28\x84\xff\x26\xc9\x7e\x3d\x70\x5c\x8d\x1b\xcd\x38\x2f\x93\xcd\x53\x4f\x93\x73\x2b\xfe\xf9\xbb\x20\xc6\x9f\xd3\xf9\xd6\x7f\x5e\x6f\x3b\xdb\x05\xd7\x17\xd4\x6b\xdd\xf5\x4e\x97\x73\xd2\x5a\x4b\xf4\x4f\x46\x4a\x8d\xd8\xa9\xb9\x3d\xd2\x0e\x14\x79\x10\x67\xee\xd5\xab\x97\x70\x70\xbb\x36\x95\xb3\xa5\x68\xea\xf7\xed\xdd\x96\xdb\xf7\x3a\x95\x65\x8a\x67\x8a\x45\x80\x1b\x1d\x99\x44\xa1\x61\x8d\xd3\xe7\xbd\xfc\x63\x5f\xb3\x5b\x08\xeb\xc0\x97\xca\x76\xcf\x56\xf7\x57\x6c\x62\x18\xfb\x2f\x3f\x0a\x4f\x04\x6c\x49\x64\xd1\x8e\xbb\x94\x94\xe4\x21\x54\xc0\x29\xe1\x71\xbd\x9f\xd1\xf0\x08\x50\x89\x4d\xb9\x0d\x54\x8a\x61\x1e\x58\x16\x97\x7d\x54\x75\x05\xde\x48\x50\x50\xfa\xab\x17\x71\x4b\xcb\x01\xd7\xc0\xef\xaf\x55\xd0\xec\xd1\x71\x1e\x75\x65\xa1\x29\xa2\x57\xc3\x97\x3c\x48\x37\xb2\x88\xfa\xbc\x6a\xe6\x40\x58\xfe\xa5\xac\x79\xfa\x84\x3f\xf3\x45\xda\xda\x5a\x9c\x53\x01\xf6\xd7\x0a\x83\xb7\x72\xae\x54\xdd\xc6\xda\x4f\x19\x4d\xd1\xdc\x8a\xca\x0b\x16\x08\x98\x51\x83\x82\xef\xab\xe1\xe6\x24\xbc\x12\x9b\x70\x1b\xa8\x7c\xa5\x16\x4d\x90\x39\x60\x50\x83\xb3\xae\xd9\x73\x80\xce\xed\x61\xcf\x01\x63\x23\x4a\x89\xc8\xb1\xae\xc2\xc0\xdb\x0d\xca\xff\x5d\x61\x2b\x43\x01\xfc\x34\xc2\xff\x60\xcc\x44\xdb\x4e\x8f\x6d\xe2\x38\x3b\xf6\xe1\x2e\xa3\x12\xcd\xab\x2c\x74\x35\xce\xed\xa5\x0d\xad\x9b\xfd\xb7\xaa\xa2\x03\x3a\x7f\x25\xfd\xbf\xfa\xff\x52\x59\x48\xab\x03\xaf\xaf\x32\xb0\xfa\xc5\x45\x7d\xbb\x6c\xf9\x55\x9f\x34\x44\x69\x0e\x6a\x06\xc4\x2c\x52\xc4\xea\x20\x05\x76\x09\xaa\xcb\x67\x84\x4f\x2c\xc7\x30\x8b\xc1\x19\x41\x41\xc0\xf8\x07\x42\x0a\xf8\x2e\xa5\x31\xef\xac\x1d\xc9\x8f\x79\xd3\xd8\xa7\xfc\x5f\xdf\x5a\x23\x31\x58\xee\x61\xc8\x34\x89\x77\x19\x49\x16\xed\xf8\x62\x6b\x8d\x12\x82\x01\xc0\xee\x14\xdf\xa3\xfb\xa8\xa9\xc3\x5f\xdc\x1d\xb9\xb6\x12\xc7\x88\xd7\x41\x22\xb8\xde\xe2\x16\x48\x0a\x4e\xf1\x33\x0d\xb3\xe1\x09\xd3\x10\xc1\x5e\x02\xe7\x2e\x41\x7c\xec\x5d\xe6\xd6\x5c\x32\x3e\x46\xef\xbf\x49\xa3\xba\x49\x53\xa3\xf1\x45\x01\x5c\xc5\x2b\xf1\xda\xb0\xce\xe1\xfa\xa8\x5f\x4e\xfb\x02\x40\x36\x9e\xcd\x88\x0b\xaa\x27\x13\xcd\xaf\x12\x95\x02\xdb\xfc\xe4\xf3\x93\x0a\x49\x30\xe9\x92\x02\x32\x80\x22\x00\xd0\x00\xbe\x6b\xb2\x93\x2f\x1b\x3f\x67\xe7\x7b\x5a\x7b\x5c\x17\x2d\xf1\xe5\x31\x6b\x90\xc0\x57\xc7\x0d\xb4\xe3\x1e\xfa\xb3\x95\x89\x65\x5a\x79\x00\xe5\xe0\xfd\x8b\x31\xee\x85\x10\x45\xd7\xa8\x16\xb6\xe0\x16\xee\x87\x87\xbc\x52\x67\xbc\x50\x08\xf8\x8f\x41\x22\x03\x14\x73\x89\x13\x00\xae\x33\x47\x53\x4d\x92\x77\x04\x33\xa9\xd1\x62\xdd\x5d\x13\x3f\x1d\xd2\x89\x9c\x2a\x58\x78\x23\x60\x6a\xc6\x40\x07\x2f\xe9\x01\x33\xb2\x49\x88\x8f\x65\x68\x88\x6f\x54\xc3\xe5\xf7\x45\x5d\x91\x42\x2a\xe7\x93\x57\xbf\xb3\xfa\x85\xc7\xc5\xf0\x1f\xe6\xf5\xc9\xbe\x1e\xb6\x53\x92\x93\xf5\xfc\x65\x5c\xa5\x4c\x3c\xba\x0e\x96\xc6\x11\x4e\xaf\x32\x69\x35\xeb\x5b\xd0\x79\x3d\x81\xf7\x44\x11\xa9\xc6\xdf\x41\x40\x62\x25\xa1\xb0\xea\xbb\xf4\xdc\xc7\x08\x72\xff\xd2\x1b\x57\x60\xba\xff\xdb\xf8\xe9\x1d\x50\x4f\x8c\x95\x14\x74\xfa\x57\x70\x49\x7c\xbc\x02\x80\x23\x62\x4c\xcd\x68\x99\xa2\xeb\x3c\xea\xe0\xbf\x70\xda\xf1\x79\x23\xc1\x91\xce\x15\x21\x56\xa7\xd4\x9e\xc8\xb3\x59\xca\xa8\x54\x27\x61\xe0\x8e\x27\x89\x2f\xbe\x69\x20\xed\x85\xb0\xf7\x9f\xe3\xbe\x6e\xad\x84\xb2\xd2\xf6\x1d\x43\xa9\x69\x25\x53\x37\xd7\xcd\x2e\x0c\x27\xf0\x7a\x63\x54\x10\x0a\xe1\xe7\xf4\xf1\x49\x31\x02\x43\x9b\x84\xaf\xf5\x48\x48\xa2\x14\xc9\xfe\x1f\x12\xce\x2a\x2a\xea\xf7\xeb\xe2\xdf\x19\xba\x07\x04\x06\x74\x90\x6e\x49\x05\x06\x90\x16\x91\xee\xee\x10\x41\x90\x54\x69\x18\xe9\x90\xee\x6e\x45\x5a\x42\x9a\xa1\x1b\xe9\xee\x46\xba\x7b\x98\x77\xfd\xfe\xef\xc5\x73\xf7\x5c\x9c\x75\xd6\x3e\xeb\xb3\xf6\xc5\xde\x6f\x38\x41\xaf\xd7\x3f\x3c\x22\x85\xff\xdc\x1f\xc6\x72\x02\x62\x9f\x1f\xe3\x01\x49\x15\x3d\x26\x71\x43\xf5\xac\x78\xea\xbf\xc4\xf7\x0c\x34\xd8\xe1\x0d\xd5\x89\x35\xc7\xf6\xac\x07\xca\xb3\xd0\x47\xf3\x69\xbf\xa2\x67\x0a\x74\x10\x5c\x96\xd4\x98\x3f\xed\xab\x5e\x47\xd0\xb3\x4c\x4c\x09\xcc\xc7\x23\xba\xe8\x5e\x9d\x13\xaf\xef\xfe\x38\x6d\xc7\xdb\xb6\x8d\xe8\x6a\x01\xe1\x74\xbe\x42\xc5\xd0\x68\xa5\x94\x75\x49\x2d\x8a\xc6\xea\xb4\xdf\x47\x5a\x5a\x06\x81\x36\xfb\x12\x35\xdb\xe8\xfa\x95\x04\xf0\xb7\x55\x77\xc8\x09\x36\x50\x83\x6f\x8b\x0c\xa1\xb3\x81\xbf\x6d\xf7\x72\xe7\xbe\x9a\xc5\xee\x24\x2b\x6f\x17\x9a\x70\x44\x29\xf2\xcb\xce\x4b\xcb\x0b\xff\x5a\xd8\xbc\x88\xa9\x18\xc9\x5d\xc5\xb5\xe1\x3e\x5a\x34\x55\x35\x2c\x19\x6d\x59\x2a\xa8\x7c\xc4\x02\xb7\xff\xee\xe1\x89\xf1\x3a\xc1\xbf\xa8\x52\x0d\x7e\x8c\x82\x3c\x94\xc1\x7e\x81\x21\xeb\x8f\xd7\x23\x41\x0e\x8d\xe8\x2f\x21\x5d\xdb\x9c\x03\xcc\xa9\x91\x1f\x0e\x91\xf4\x13\x1d\x06\xf3\x8d\x99\x33\x4b\x62\x36\x99\x17\xac\x16\x68\xf0\x37\xc9\xd1\x6f\xb8\xef\x81\xd5\x18\xec\xb8\x59\xcd\x7c\xea\x1f\x38\x74\xa5\xd7\x48\x4c\xe0\x2c\x81\xfe\x3d\x7f\xf0\x67\x3c\x67\xba\xce\x56\xc9\x10\xc4\xce\x97\xeb\xb1\xf8\xef\x97\xb8\x06\x5e\x6a\x04\xff\x21\x00\x97\x58\x32\xe1\x84\x98\x0d\x5b\xba\x8f\x36\xce\x9c\x0d\x30\x37\x41\x58\xdf\x66\x77\xc5\x34\x6a\x69\xa9\xee\x09\x8a\x0b\x1c\x44\xb8\x52\xbd\x08\x4b\x14\xd2\xbc\x5a\x3a\x0c\x6c\x21\x2a\xa3\x41\x07\xfe\x47\x28\x4c\x1f\xc9\x83\x44\xd4\x5a\xdf\x53\xd0\xe5\xec\x83\x9c\x86\x71\x29\x4f\x42\xe2\x0e\x73\xf0\x04\x6f\xf0\x12\x7a\x80\x63\xc9\x33\x8e\xef\xd8\x75\xb2\x7a\xdf\x54\xef\xbf\xb1\xe8\xe0\x2e\xc1\xa9\xe6\xb4\x43\x8f\xc9\x80\x64\x56\xf9\x80\x66\xea\xbc\xbb\x35\x5a\x73\xe8\xb0\x25\xe5\xdc\xe6\xe5\x9c\xc6\x1d\xf4\x3d\x2a\x22\xeb\xbf\x8f\xbc\x1d\x98\x32\x44\x38\xe6\xb0\xab\x8b\x7c\xca\xaa\xf6\x1f\xc4\x5c\xd3\xc8\xae\x98\x46\x23\x2d\xd5\x7f\xc4\xe2\x41\x3d\xa3\x77\x42\xcc\x3a\xb3\x4a\x73\xd7\xca\xa9\xda\x39\x5f\x2e\x0a\x76\xef\x58\x21\xb8\x3d\x49\x9d\xf8\x1d\xce\x10\x7f\xb1\xf2\x73\xba\x7d\x92\x24\xc1\xa8\x83\x2f\x54\x3a\xc4\x92\x7a\x18\x74\xa9\xbc\x05\x43\xc9\x89\x11\x64\x32\xec\x54\x2f\xb1\x10\x8c\x66\xcc\x91\x0e\xa5\xd6\xa5\xbd\xa3\x69\xb7\xc7\xb4\x62\xec\x7b\xff\xad\xba\x6f\x42\x76\xf5\xda\x20\x44\x82\x52\x9a\xd7\xa2\x25\xf3\x8e\x38\xb0\x2c\x1b\xc7\x77\x59\xa3\x03\x5e\x3c\xb3\xf6\x8e\x1c\x11\x1a\xf1\xec\xe0\x91\xb5\x50\x29\x4e\x21\x75\x93\x1a\xd3\xe6\x60\x11\x4d\x6c\xdd\xa3\xd2\xd1\x8a\xcc\xac\x74\xcb\x11\xb8\xa2\x85\x49\x92\xce\x87\x6b\xfc\xe7\x08\xe4\x03\x47\x8f\x6b\x41\xaa\x27\x6e\xf3\x69\x27\xdf\xf3\x20\x84\xfd\xca\xa2\x7d\x96\x83\x77\xe0\x91\xce\xe6\x26\xae\x19\x73\xf2\xf2\x76\x75\xfc\xf9\xca\x71\x64\xd2\x0d\xda\x42\xde\x78\x94\xa6\xca\xff\x66\xb4\x97\x9c\x96\x4a\xc6\xda\xcb\xce\x76\xff\x79\x0d\x01\x3a\x67\x1f\x39\x8c\x41\x07\xc1\xc5\xec\xcc\x0b\xb8\x5c\x90\x3f\xf9\x52\xed\x9f\x2f\x72\x17\x19\x08\x39\xa0\xbb\x09\x18\x11\x1d\x66\xc0\x35\x14\x3d\x76\xaa\x31\x0a\x31\x37\xc5\x40\xac\x05\x03\xf3\x3f\xd0\x5c\x09\x89\xae\xfc\xb2\x9a\xbc\xd6\x47\x7e\xe1\x0d\x9a\xa3\x4b\xbd\xaa\xfc\xd3\x1c\x35\x86\x8f\xed\xa7\xf1\x1d\x28\x1e\x08\xee\x5b\x7f\x6e\x7f\x5e\x05\xaa\x3b\xbf\x19\xd5\x94\x4b\x51\x0d\xe9\xca\x90\xcb\x60\x65\x5a\x42\x5f\x9e\x7a\x5f\xb4\x41\x27\x0b\xc9\xd7\x0c\xe9\x9b\xed\x74\xc7\x3c\xf3\xfe\x6f\xdf\x0c\xe7\x49\xb7\xfc\x3e\xe1\x21\x1a\x03\x2e\x7f\xa5\x7d\xf6\x85\xc9\xa1\x45\x02\x75\x85\x34\xae\x96\xd2\xa4\x5b\x36\x25\xd4\xff\xdb\xf4\xdb\x24\xa1\x15\xef\x27\xb7\x57\xdb\x0e\xcb\xfa\x78\x4f\xdf\x1a\x6c\xa8\x89\xc0\x1e\x57\xce\x1f\x93\x6e\x88\x8f\x6b\x51\x1d\x17\xbf\xaa\x0e\x49\xaa\xac\x57\x92\xcd\x0b\x77\xdb\x2f\x39\x80\x1c\x30\x62\x5b\xf4\x33\x10\x2a\xf0\x1c\x15\x82\x76\x9b\xec\x59\x33\x26\x41\x0b\xe0\x96\xd3\xd2\x4c\xdd\x75\x52\x7d\xc5\xcd\xf1\x68\xdf\xe1\x18\xf8\xbc\xc8\xf2\xa1\xa7\xf2\x21\x7a\xc6\xaa\xf1\xde\x6a\xc0\x1b\xf7\x70\xda\x4f\x6b\x46\x02\x80\x4c\x23\x25\xe9\xe0\x9e\x60\xff\x15\x2f\x42\x83\xa6\x76\x0c\xa9\xc0\x93\x8f\x90\x57\x0e\x7a\x5d\xa4\x35\x71\x62\xd1\x6d\x92\x2d\x20\x52\x3b\xe2\xf2\x88\x37\xb0\x9b\x37\x52\xca\x59\xcb\x13\x3b\x9a\x2c\xa9\xda\xc6\x19\x2c\x84\xb6\x29\x01\x6f\xf8\xf4\x92\xba\xc2\x05\x52\xb7\x23\x44\x86\x1d\x0b\x4a\x1f\x74\xc6\xcb\x1b\x52\xee\xaf\x7d\xd1\xed\x4f\xa3\x97\xeb\x37\x72\x83\x31\xa3\x14\x66\xbf\xee\x3d\xb2\x82\x10\xcd\x5a\x5a\xaa\x45\xdc\x59\x32\x72\xb3\x19\x45\xb4\xaf\x16\xd1\xaa\x4f\x33\xd1\xcd\x55\x12\x23\x97\xb4\x35\x8f\xfa\x1b\x23\x81\xab\x50\x5c\x4c\x39\x05\x1c\x47\xfb\x94\xad\x15\x16\x08\x73\x70\x9f\xb7\x7e\xd8\x70\x62\xa2\xd6\x7c\xc2\x78\x5a\x84\x25\x0c\x3e\x1b\x98\x9e\xd4\xa5\x24\x63\xfe\x56\xca\xb5\x64\xdf\xb6\xc4\x42\x7e\xa8\xc4\x13\xff\x89\x6f\x16\xff\x2a\x9e\x54\xf4\xb7\xfa\x2e\xaf\x8b\xcf\x35\xee\x80\x16\x94\xf3\x83\xeb\xdd\xc5\x2f\xb1\xc3\xc5\x04\x7a\xe3\xef\x73\x9b\x79\xd2\x63\xec\x43\x63\xe4\xeb\x39\xf9\x8d\xef\xa3\x01\x04\x3f\x26\x36\x8e\x89\x39\xd5\x00\xb1\x4a\xa9\x36\x85\xa7\x0f\xa7\xad\x29\xda\xa5\xfc\xca\x4c\xd4\x56\xd7\x68\x08\x95\x68\x56\x73\xea\x77\x97\x88\x48\xb2\x73\x4a\xa0\xff\x66\xee\x0e\x48\x3f\x01\x3e\x14\x9f\x09\x87\xe5\x6e\x92\x66\xa9\x9a\x3a\xf1\x56\x7c\x62\x3e\xc4\x21\x5e\xc3\x7e\xe3\x05\x3c\x38\x56\xfd\xe7\xe0\x57\xdf\xfd\xb3\x00\xe1\x60\xb5\xee\x54\x5d\x61\x9a\x5f\xd9\xab\x78\x09\x1a\xc6\x57\x14\x71\x8b\xb3\x6a\xd6\x84\xc2\x99\x20\x74\x14\x00\x02\x03\x0e\x73\x7e\x06\xd8\x87\x7b\xfc\x4d\x98\xcd\xac\x52\x70\xfc\x54\x78\x20\x1a\xfd\x63\x68\xb8\xb6\x46\x3b\xf8\x4e\x7c\x17\xea\xbf\xbc\x56\x17\x98\x2e\x87\x0c\x34\xc3\x59\x5b\x61\xb9\x00\x49\xea\x18\x95\x8a\x23\xa9\x4d\x1b\x2b\x9f\xdc\xeb\xcc\x33\xad\xc4\xb1\x8b\x2b\x52\x59\x91\xca\xe1\x65\x8f\x3a\x7e\x73\xe7\x51\xfd\x56\x02\xa8\x0c\xb5\xaf\x8c\x4c\x17\x44\x56\x0b\xa3\xb6\x4d\x16\x6f\xb7\x3e\x44\x24\x5e\x3f\xb7\x1a\x16\x0b\x6f\x48\x26\x3f\x7a\x65\x12\x72\x67\x52\xd1\xcd\xe8\xa2\xa5\xd0\x26\xb9\x41\xfc\x2d\xe2\xd8\xf8\x33\xf5\xde\x29\x29\x0d\x40\x06\xc4\x0c\x50\x8d\x77\xd0\x7a\xf3\x9d\xaf\xa8\xce\x6c\x0a\x41\x70\x3c\x46\x23\x8e\xa0\x30\x04\xf4\xf3\x75\xfb\x48\xf6\xd2\x3d\xf2\x15\x07\x70\xf5\xff\x04\x2c\x02\x10\x3f\xc9\xdd\x07\x24\xcf\xdf\x42\x8f\xfc\xa4\x90\x70\xa5\x07\xb5\x45\xbf\xde\x10\xc8\x1a\xed\x41\xc7\x1e\xd4\x3f\xae\x2b\x86\x5f\x57\x87\x2c\xf9\xcf\x3a\x74\x7b\xf0\xac\xc4\x39\xbd\x39\xaf\xfe\x86\x7a\x68\xec\xd5\x7a\x4e\xde\xdd\x31\x96\x58\x6d\xf3\x69\xf4\x20\xa9\x1e\xec\x14\xff\x7f\xf9\xe5\x0f\xa2\x78\x3b\x48\xef\x56\xbd\xdb\x4d\xe7\x1e\x8e\x9b\x40\x33\x35\x6a\x5c\x9d\x77\xce\x88\x9f\x4d\xaa\x32\x81\x7e\x7a\xcd\xa6\xd8\x80\xfe\x97\xdf\x77\x43\x51\xad\x27\x8b\x5f\x1f\x22\xed\xb5\x1f\x63\x15\xc6\x28\x86\xd4\x9e\xd2\x2c\xbf\xdb\x86\x7d\x53\x26\x5d\x29\x63\xff\x5f\x86\x91\x56\xc2\x84\xdb\x74\xa4\x77\x31\xdc\x10\x89\x6d\x6e\xb2\xde\x5a\x8e\x84\x46\x29\x80\x4e\x4c\xdd\x79\x7e\x33\x60\x7f\xc1\xa2\x43\x3d\x58\x3f\x04\xcd\x3c\x2f\x40\xfb\x2c\xb2\xec\xe0\xf8\xa8\xa0\x02\x19\x8e\x5e\x67\x55\xf9\xde\xd7\x41\x5d\xd1\x24\x86\x16\x0b\x40\x4c\x48\x23\x58\x0d\x1b\xc1\x31\x49\x01\xf8\xd1\x22\xac\x87\xe4\xec\xdb\xfc\x03\x5c\xb4\xc2\xa4\xd7\x97\x33\x60\x8d\xf5\xc8\x85\xb8\x07\x8d\x1f\xe4\x4d\x55\x59\x70\x3f\xee\x9f\x68\xa9\x0e\x86\x15\x46\x42\x2e\x7a\xe2\x79\x7a\x2c\xfa\x1d\xdc\x17\xe1\x37\x7f\x72\x2b\xdd\xea\xc8\xae\x56\xfc\x5a\xf5\x6e\xdd\x05\x2c\xb7\x8c\x87\x02\x94\xc7\x19\x58\x0b\x9e\x6f\xfb\x1e\x30\x3c\xa0\xe4\x23\x15\x7a\x62\xc8\x2a\xc4\x55\x5a\xdc\x39\x2a\x50\x0d\x47\xab\x15\x96\xc1\xfc\xaa\xf4\x37\x0b\x3c\x60\xf0\x60\xfb\x83\xba\xba\x1b\x1a\x69\xfa\x42\xeb\x71\x23\xf2\x76\xbe\x98\x8b\x0f\x69\xbf\x7b\x7f\xe7\xb5\xc5\x26\x0d\xa8\xcb\x43\x87\x85\x2c\x5a\x4b\x33\xe2\xd8\xff\x76\x50\xe1\xf9\x01\x80\x42\x7d\x43\x66\xcd\xf1\x02\x59\x89\x94\xdd\x9c\xa9\xd6\x82\x29\x00\x79\x56\x9a\x23\x94\x95\xf7\xcc\x70\x76\xa4\x69\xc9\x55\xfd\xe5\x6c\x37\x4a\xe4\xc7\xc5\xea\xa3\x83\x75\x13\x27\xf7\x74\xd6\xdc\x14\x94\xfb\x53\x0f\xf2\xa5\x71\x22\x5a\xaf\xf0\x86\x6c\x3d\xa7\x73\xe2\xb0\x1f\xd7\x79\x94\x29\x4a\x85\x49\xa9\xaa\x68\x61\x5e\xa8\x4a\xe0\xdf\x71\x6b\x46\x09\x4a\x95\xb6\x42\xeb\x68\x21\x90\xba\xf2\x98\xf8\x3a\xdb\x4e\xb1\xef\x22\xe7\xe8\x84\xbb\x63\xc5\xb4\x3f\xa7\x9c\x7c\xf2\x80\x53\x55\x63\x45\xff\x05\xbb\x84\xb6\xd1\x83\xb7\x04\x96\xdf\x39\x83\x93\x1a\x45\x78\x56\x6a\xb9\x82\xdf\x65\xe2\xd4\x26\xfb\x12\x3d\x7a\xc7\x8e\x75\xc0\x74\x3e\xf0\x36\x9e\x03\x55\x33\x14\x46\xcd\x64\xa5\xc6\x03\x5b\x7f\xbc\x26\xf0\x19\x21\xc8\xb1\x24\x3e\x85\xce\xc4\xaf\xfc\x4d\x19\x27\x48\xc9\xff\xed\x82\xd6\xa5\x68\xbc\x3d\x55\xb8\x4d\x66\x8e\x3c\x92\x5c\x5a\xbf\x2e\xf5\x75\xc4\x55\x2b\x22\x73\x3a\x9c\xaf\x35\xcf\x6e\x35\x7b\xe3\x71\x3e\x2c\x34\x36\x55\xa2\xfb\xdf\x6b\x62\xb6\x0f\x12\x93\xd8\xbd\x16\x11\x90\xb4\x5d\xcf\x1c\x99\x2a\xd1\x8d\xad\x77\xeb\x0d\xe0\xee\x58\x79\xf2\xc0\x01\x14\xe1\x77\xff\xae\x10\x53\x31\x6e\xad\xca\x72\x7f\x69\xd7\xe7\x57\xae\xe6\x4d\x39\x75\xbd\xeb\x4b\x6d\x85\x0b\x82\x0c\xa9\x1b\x7c\xe9\x77\x9d\x10\xb8\xed\xd2\x52\xe6\x20\xff\x52\xa7\xa6\x49\x75\x89\xce\x3a\xf6\x88\x00\x0e\x2e\x97\xf7\xd5\x6f\x4a\x02\xe9\x51\xa9\x4b\xb3\xeb\x33\xcf\x0b\xd1\x9f\x5b\xf3\x1e\x9e\x05\xad\x7f\x18\x05\xb6\xcc\x51\x4f\xe9\xb4\x73\x6f\x86\xb4\x94\x0d\x14\x66\xad\xec\x5e\xda\x1e\x37\x04\xd6\x31\x4b\x61\x53\x6f\xee\x38\x50\x75\x22\x0c\x12\xbe\xd5\xb0\x33\xaf\x53\xea\xf7\x34\x67\xa9\xf1\x73\x3b\x75\xd9\xd2\x6f\x8b\xff\xed\xce\x84\xd5\x08\x3d\xe2\xed\xdf\xf3\x94\xb2\x49\xb1\x19\x1b\x54\x7e\xdd\xd7\xa3\xbc\x6c\x52\x7f\xf3\xc5\x8e\x40\x3c\xaf\x72\x85\x26\xe8\xe8\xbd\x3f\xc6\x13\x96\x07\x8a\xff\xe5\x4f\xfd\x0e\xd5\xf7\xb6\x5c\x9b\xee\x4c\xbb\x61\x67\x22\xeb\xbc\xa3\x3e\x54\xae\xa1\xbd\x9f\xce\x5a\x5c\x85\x7d\xf8\x1c\xe2\xd1\xa7\x2d\x9a\x85\xd9\x15\x3f\xcb\x60\x81\x6c\x59\x6a\x42\x59\xaf\x89\xd7\xf1\x76\x7f\x5c\xd8\x70\x62\x7d\x39\x4a\x64\xed\xa7\x55\xd5\xdd\x42\xd2\x11\xbe\x5f\x0d\x6d\x1e\x09\x0d\xa0\xac\xee\xaf\xcb\x9a\x1b\xb3\x4c\x69\x47\x9f\x26\xef\x10\x1c\xab\x0f\x75\x36\x7f\x59\xfe\x70\x92\x63\x27\x01\x91\xa3\x00\x87\x7e\x17\x1b\x4e\x4e\xd4\x9f\xea\x76\x0d\x25\xd1\xba\xdf\x13\x25\x0f\x68\xc9\xac\xa4\xd5\x23\xab\x68\x6f\x5d\xbd\x76\x43\x9d\x5f\xa3\xfe\x3b\xe5\x67\x62\x7f\xcc\x0e\xa7\x23\xb9\xc6\x5d\x42\xbe\xd2\x13\x43\xb8\x0f\x3a\x45\x12\xbe\xa4\xe9\xf3\x55\x75\x2a\x63\xd2\xb4\x54\x64\x51\x94\x02\x88\xb4\x9a\x77\x67\xb5\x38\xff\x1c\x33\xe6\x27\xd0\x0a\x6e\x27\x9c\x01\x4e\x7e\x72\x92\x5a\x50\x53\x13\x8e\x5f\x7e\xe7\x53\xbd\xec\x0f\xd3\x73\x1d\x2b\xc7\x3d\x99\xcd\xc7\x3b\xed\xbe\x60\xb1\x25\x53\xfa\xf7\x51\xcb\xf3\x28\x85\x68\x41\x53\x9d\x1f\xa6\x3e\x71\x77\x9d\xf6\xda\x8f\xa7\xea\xf8\x7e\x2b\x61\xfd\x8d\x32\x26\xc2\x2d\x3f\x75\x91\x55\x0a\x11\xb4\x19\x2f\x96\x02\xaf\x46\x72\xeb\xb6\xbf\xe9\x44\x13\x29\xed\x0a\x1a\xa5\xa8\x7f\xf2\x6b\x39\x52\xf8\xfd\xa1\xce\x32\x19\xaa\xb8\xf7\xcc\x52\x07\xdc\x47\x94\x7a\xe8\xd3\xaa\x87\x7a\x2f\xbe\x6d\x0f\xf6\xc7\x07\x26\x25\xeb\xd1\x58\x62\xab\x0d\xb7\xcf\x4c\xaf\xc6\x03\x99\xf5\xaa\x26\xe3\x6a\x69\x5c\xfa\x48\x57\xae\xd1\x3e\x86\xd5\xf1\x31\x8c\x1c\x56\xc0\xe3\x0e\xc3\x6b\x5e\x91\x37\xf5\x6d\x01\x49\x48\x16\x4d\x72\xbf\x43\xa9\xbb\x92\x0f\xae\xbf\x91\x61\xc2\x37\x53\xa0\x26\xa4\x0c\x3d\xec\xfd\x67\x9c\x0a\x26\xae\xaa\xea\xc4\xcf\x82\x5c\x61\x58\x21\x85\xb5\xa4\x5f\xb2\xbf\xe8\xb9\x4d\x1c\x92\x00\x9e\x1d\x0c\xbf\x1c\x97\x47\x1e\x8e\x2c\xe4\x51\x8a\xa9\xb9\xcc\x54\x1a\xcb\xd4\x60\x3a\x7e\x99\x73\xbc\x74\x88\x8c\xf5\xf5\xd5\xba\x0a\x51\x5e\x22\xb0\x6c\x7b\xa8\xda\xa9\xfe\x6a\x09\x8f\x13\xcb\xde\xc1\xcc\x56\xc6\x80\x01\xc6\x1c\xb5\xfa\xfa\x0e\x5b\xae\xad\x84\x63\x69\x51\x19\xde\x04\x93\x1a\x61\xa6\xf1\xdf\x50\x26\x39\xd4\x95\xb1\x8b\x37\x47\x0e\x17\xcf\x58\x4c\xae\x24\x4d\xda\x29\x3f\xc5\x40\x50\x59\x43\x58\xb9\x55\xdf\x09\xaa\x0e\xb0\xa8\xf6\xb3\xa8\x92\x26\xb3\xf2\x06\xc0\x2f\xa6\x3b\x6a\x34\x15\x67\x2a\xff\x3a\xb1\x59\xf8\xf8\xaf\x8d\x0d\x63\x95\x9b\xea\xab\xbe\x76\xe5\xa8\x40\xe9\xb9\x9e\x28\xf2\x76\x6d\xda\x4d\x75\x43\x75\xf0\xe7\x91\x9e\x97\xce\x67\x14\xc3\xdd\xce\xb3\x48\x1c\x31\xd9\xcb\x9c\x4f\xae\xa2\x4f\x33\x79\xca\x59\xb9\x79\x92\x26\xb3\xd9\xc8\x33\xa9\xb6\x1b\x41\x00\xaf\xdc\x69\x0d\x3d\x6a\x75\xc0\x73\x3d\x64\x42\x40\xf8\x49\xd5\x57\x97\xb6\x5a\xda\x94\x6f\xf5\xde\x0c\x46\xe9\x9f\xe8\x11\x29\xca\x17\x81\xb2\x49\x78\xcf\x2a\x1e\xd1\x30\xf8\x70\xef\x22\x6b\xb0\x52\xc9\xe8\xde\x63\xf4\xde\x3d\x09\xd0\xa1\xed\x69\x24\xbc\x0a\xc4\xf1\xee\x23\xb7\x62\xeb\x8d\xc2\x29\x6c\x94\x4a\x2a\x13\x2c\x4e\x6a\xac\xce\xc9\x9d\xdd\xb1\x35\x9f\xcb\x11\x6a\x75\x49\xc9\x66\x70\x86\x06\x74\x80\xa8\xe8\xac\x5c\x09\x29\xe5\xcc\x5c\x09\xb1\x13\xd5\x52\x07\x8a\x56\x8b\x8a\xac\xba\x9d\xfa\xdf\xc5\xc7\xc5\x76\xb1\xd4\x7c\xfd\x78\xce\x59\x25\x55\x28\x38\x3b\x57\x35\xf7\x77\xca\xb0\xa2\x7e\x26\x3a\x0b\x17\xea\x3e\x7a\x59\x91\xb9\x3c\x41\x99\xb5\x14\x85\x52\xef\x60\x70\x84\xe5\x2e\x48\xe0\x17\x08\xdf\x04\x69\x7a\x1c\xf6\x3e\x6b\xba\xba\x4b\x76\xad\xc5\x21\x3f\xaf\xbc\x6a\x8f\x0d\xd6\x22\x09\xf3\xc3\x07\x8a\x5c\x29\xde\xdf\x29\xa9\xa0\xc5\xa6\xba\xa1\x66\x6f\x44\xfe\x2a\x10\x0e\xff\xd5\xda\xa2\x35\x59\xfc\xbe\xe2\xbd\x6f\xbf\x86\x61\x73\x1c\x81\xa0\x17\x21\xbf\xbe\x40\xa3\x11\x33\xd0\x3f\xfd\x02\x65\x19\x73\xc5\x19\x53\x34\xfc\xd1\xbd\x45\xb7\x24\x00\x42\xa6\xfe\x77\x66\x25\x6d\x13\xbc\xe6\xd0\xd1\xa9\x1a\x13\xf2\x1c\x61\xa9\x18\xd2\xba\x2f\x56\x67\xc6\xcc\x9d\xfc\x44\x38\x4d\xe5\x60\x4c\xb6\xb6\x47\xc7\x2a\x3e\x9b\x85\xdb\xf4\x6d\x82\x2a\x23\xb6\x7e\x17\x7d\x24\x5c\xf5\x15\x59\xbd\x55\xd1\xce\x44\x1f\x51\x1d\xf7\xce\xa5\xd7\x38\x08\x93\x1b\xa7\x12\x44\x1f\x60\xc9\xe6\x8a\x89\x15\x65\x1e\x4d\x5a\x73\xc8\xb1\x1b\x56\xb6\x16\x62\x4d\x56\x41\xb1\x53\xc0\xf5\x32\x8c\x68\x77\x71\x70\x71\xa5\xb7\x45\x99\x14\xd2\xef\x2f\xc3\x78\xb0\xfc\xd1\x00\x2d\x1f\xc1\xc4\xe3\xc8\xb4\x9c\xc2\xbf\xb9\xd2\x09\xeb\x0e\xf1\xa9\x8a\x7c\xc2\xe2\x1c\xe1\x7d\xb8\xae\x73\xe0\x55\x42\xbd\x8f\xd6\x1f\x37\xf2\x23\xfb\x92\x02\x1e\x55\x0a\x17\x95\xac\x0d\xb8\x1a\x37\x58\x2f\x61\x8f\x68\x8e\x12\xfe\x9e\xd0\xfe\xab\xf1\x26\x75\x2b\xef\xae\xc7\x5b\xbf\x01\x99\x58\x93\x7f\xc7\xe0\x6e\x8c\x71\x9f\x06\x81\xbf\xc3\xa2\xe3\xa0\xcf\xbf\xdd\x1e\xd2\xd9\xf4\x08\xca\xb3\xa5\xaa\xe2\xdc\x46\x38\x69\x5a\x37\x1c\x06\xb6\xf4\xd3\xd7\xe4\x6b\x16\xe0\x48\x3a\x79\xef\x8e\xbb\x89\x0d\x1c\xae\x7c\x1f\x63\xc4\x76\xf1\x1c\xcc\x54\x71\x6c\x82\xd6\xe0\x7b\x65\xc1\x1f\x5e\x7f\xbd\x95\x1f\x32\x23\xe6\xcb\x92\x85\xad\x8f\x6e\xec\xd4\x79\x30\x2c\x7a\xfd\x45\xdd\x4e\xc1\x20\x75\x14\x18\x0a\x06\xa9\x87\x2c\xae\x95\xb1\xc6\x5f\x9e\x8b\x3c\x6d\xd4\x56\x8c\x1f\x39\x57\x3c\x63\x64\x0c\xb2\x1b\x9d\x5f\xe8\x38\xfe\xf7\xd1\x41\x69\x74\x7e\x02\x26\xc9\x06\x96\x7b\x5b\x81\xe7\xc4\x7a\x3e\x3f\xe0\xad\x7f\x9b\xab\x34\xd6\x51\x39\x32\x47\xb2\xc6\xc6\x67\xa8\xed\x7b\x7c\x3b\x7c\xf3\xe1\x38\x93\xc3\x67\x08\x42\xb2\xfc\x21\xab\x03\x0f\x52\xf4\x0e\xaf\x54\xf4\xd5\xf1\xda\x50\xd6\x9f\x7a\x2d\x2d\x3f\x3a\xcd\x66\xf8\x41\x2d\x76\x3b\xec\xe2\x3b\xbd\xcf\xc6\x43\xf9\xe3\xb2\xce\x38\xb7\xa4\x1d\x0f\x35\x7a\xbe\xf7\x2f\x06\x30\x6a\x8e\xe9\xd4\x13\x03\xb5\x0a\xd6\x90\x73\x22\xf6\x09\xc0\x90\x94\xff\x32\x13\x91\x66\x78\xd2\x8d\x16\xd5\x47\x03\x74\x82\x6d\x1b\x6f\x92\x6d\xed\x68\x36\x50\xbf\x19\x94\xad\x74\x33\xcf\x7f\x93\x79\xc9\x0b\xce\x0d\x76\x05\x11\x84\x9e\x62\x75\xd1\x81\x02\x6e\x9b\x19\x56\x73\x18\x88\xab\x03\x4f\xf5\x01\x77\x15\x97\x7a\xe6\xf4\x98\x99\xc1\x03\x79\xcf\x05\x54\x47\xf8\x5a\xf4\xc0\xcb\x4d\x4f\x5f\xf9\x65\x27\x8a\xcd\xe3\x55\xca\x0b\x62\xcc\xfb\x46\x8c\xd0\xca\x36\x75\x32\x2d\x7e\xc3\x40\xb3\x0e\x86\xfe\x97\xc2\xa8\xa9\x94\x80\x0a\xc2\xfb\x37\x9d\x7f\x8d\xbf\x9c\xce\x55\x0b\xa3\xe4\xdc\xac\xed\x48\xbe\x6e\xa8\x24\xa8\x6f\xe9\xc2\x03\xec\xae\x9f\x2f\x78\xfe\xcd\xe8\xff\x97\xfc\x19\xc7\x14\x36\xa5\x73\x5e\x1c\x31\xc2\x0d\x9d\xaa\x18\x4e\x4c\x14\x5d\x90\x17\xb5\xd1\xb2\xc0\x55\x47\xdc\x49\xad\x08\x25\x10\x27\xa9\x0e\xf6\xb0\x6a\x16\x30\x71\x55\xbd\x9b\xb5\xa9\xcf\xf5\x0c\x32\x3f\xda\x5c\x3f\x7a\x62\xb8\x6e\x02\x2d\x51\xc9\x44\x77\x05\xbb\x7d\xdf\x35\x9f\x4f\x5b\xe9\x5e\x19\xf7\x17\xf8\x2d\x37\x31\xa1\x9a\xc1\xf9\x9b\x01\x55\x6e\x75\x5a\x61\xd6\x93\x4c\x1a\xf0\x8a\x30\x5f\x17\x07\x87\xc8\x55\x0f\xb3\x07\x5a\x39\x68\x1a\xa3\x7c\x15\xa0\x17\xbb\x9c\x6e\xe0\xb6\xc2\x3d\x1c\xb7\xb2\xa9\xc2\x41\x02\xa3\x48\x1d\xf5\x3c\xc6\x69\x01\x4b\x45\xb7\xc5\xaa\x08\x8b\xaa\x7c\x4e\x71\x5d\x59\xc7\x36\xe5\x2e\x26\x70\xa5\xd8\x6a\xb2\x7a\xc3\x59\x0e\xc1\x61\x7e\x1f\x57\x91\xd5\xff\x0f\x5d\x09\x75\x55\x24\x3c\xad\xcc\xfd\x98\x19\x88\x34\x6d\x5f\x3e\x76\x79\xa7\x6e\xdf\xc8\x81\xa4\xe3\x7b\x25\x76\x20\xf0\xf6\x9b\x70\x11\x5e\xc4\x6b\x09\xdd\x58\xe8\x9f\xf8\xaf\xad\xce\x47\x52\xcc\x39\xc7\x1e\x82\x72\x5b\x20\x9b\x6a\x6f\xfe\xe0\x84\xc9\x4f\xaf\x43\xe6\xdc\x05\x80\x2a\x3c\x9e\x63\xa6\x03\xed\x10\x27\x82\x0e\x21\x64\xce\x2a\xf4\xd9\x32\x5f\x4e\x27\xcb\x81\xbe\x85\xb9\x4f\xdf\xd6\x66\x79\x7a\xa6\xef\x7a\x33\x8c\xf3\xf7\x4a\xec\x0b\x5f\x0a\xbe\xd6\xc9\x10\xca\x52\x14\x98\x9e\x58\x24\xaf\xd2\x9f\xdd\x94\x89\xbb\x25\x6f\x72\x96\x64\x7c\xe1\x62\xa6\x90\xfa\x6c\x70\x51\xfe\x36\xab\xcc\xd2\x8f\x96\xf0\xb8\x7a\xd5\x03\xfc\xf0\x1c\x04\x90\x92\x51\xbd\x52\x3f\xf4\xa5\x18\x6e\xff\x3d\xe1\x35\x9f\x98\x12\xc9\xd3\x6e\xb3\x68\x98\xbb\xc3\xa3\xf9\x0a\x69\xa4\x65\x7a\xe7\x5e\xe8\x1d\x4f\x8f\xeb\x99\xde\x21\x0d\x52\xdf\xf2\x1b\xc6\x6c\x9b\xf0\xba\xd3\x18\x67\x18\x21\x0d\xb6\xe8\x34\x31\x63\x7d\x05\xcd\xce\x28\xef\x67\x05\x56\x9f\x1f\xe8\xae\x04\x6a\x4b\x7f\x2f\xc7\x69\x93\xd3\x8b\x27\x73\xe4\xd3\xf8\xc3\xa2\xca\x4e\xfe\x61\x2c\xd4\xca\xf2\x2a\x9c\x7e\xc2\x48\xca\xed\x5a\xba\x46\x53\xfd\xd1\x4d\x29\xec\xdd\x1b\x7c\x2e\xaf\xa0\x9e\x1f\x05\xda\x7a\x16\x57\xb1\x3e\xc2\x0d\x8a\xe8\x77\x55\x37\xfb\xa1\xa7\x1e\x5d\xf7\xf3\xbe\xb5\x2b\x90\x2e\x33\x05\x8b\x07\x0e\xe7\x7f\xd5\xe1\xed\xad\xd9\x43\x63\xc8\x05\xc3\x24\x34\x3d\xf2\x45\x99\x06\x9e\x47\x7e\x25\x5f\x8d\x2f\x0b\x60\xd0\x02\x62\x60\xe2\xa5\xea\x48\x43\xbb\x5f\x67\xe4\x35\xc2\xb3\xca\xfa\x47\xa2\x8b\x2f\x91\x48\xdc\x02\x6b\xc2\x7f\x85\xb7\x55\x67\x24\x76\xb6\x83\xcf\x52\x36\x96\x74\xa5\xe8\x67\xb9\x40\x6a\x60\xc0\xe3\x57\x51\x96\xb6\x71\x33\x61\xfe\xfd\x1c\x18\x00\xc2\xd6\xff\xfd\x4a\xf3\x16\xfc\xa4\x30\x13\x9e\x66\x27\x59\x0f\x5e\x2d\xab\xe3\xc9\xce\x94\xc2\x5b\x29\xaf\xfd\x8b\x17\x61\x65\x15\x3e\x8e\x71\x87\xc6\x79\xab\x6d\x2e\x4a\x11\x94\x44\xbf\x78\xc9\x33\x80\x8e\xa2\x16\xb3\xa6\x17\xfa\x60\xfa\x4e\x50\xf5\xaf\x78\xcd\x48\x76\xb3\xc3\x63\xc9\x50\xe3\x3d\x32\x99\xe8\x8a\x35\xe5\xec\x49\x24\xe1\x63\xec\x72\xce\x53\xb3\x2e\x7a\x59\x98\xaf\x2c\xcf\x04\x32\x15\xf9\x01\x75\xac\x62\x22\xe4\x17\xb3\x58\xe8\x1a\x2a\x45\x78\x75\x8f\xf7\x79\x8f\x96\x37\x26\x6d\x7b\xe3\x5d\x48\x65\xfc\x0a\x7e\x52\xb5\x80\xf0\xb3\xea\xfe\x5b\x75\xa1\x7a\x08\x4e\x9e\xe8\xcd\xe2\x3f\xb1\xc3\xd7\x07\x33\x5d\xf7\x58\xe6\x6a\x54\x7f\x1e\x84\x6b\x84\x40\x1a\xeb\x82\xfa\x4c\xde\x35\x14\xb4\x00\x30\x24\x25\x6f\xb0\xe9\xdd\x13\xc3\x3f\x7a\x04\xb2\x31\x74\x93\x10\x97\x90\x9b\xc2\x2d\x2a\xc3\x91\xec\x60\xd1\x1c\xaf\xef\x46\x93\xba\x29\xa6\x35\xd9\x2a\x0e\x05\x36\xae\x1e\x27\xa0\x78\x52\x9c\x88\xe9\x1e\x04\x80\xd1\x0d\x0f\x91\xea\xb3\xa0\xdb\x96\x86\xfb\x2b\x74\x4e\xf2\x2e\x92\x99\x1b\x09\x7f\xeb\x2f\x81\xfb\x96\x90\xbf\xaa\x1b\x99\xb9\xf8\x05\x1d\xb2\x95\xbe\xed\x57\xed\x34\xd3\xf8\x42\xf8\x35\x5e\x99\x72\x90\x88\x83\x95\x34\xde\xee\xb3\x58\xae\x19\xe6\xe0\xc9\x86\xf0\xe6\x82\x46\x1b\x8f\x59\xd6\xb9\x41\x11\xa6\xe0\xf1\x09\xed\x39\x4d\xc0\xca\xe6\x50\x67\x4e\xf1\x8b\xf2\xc4\x3e\x8b\x66\x41\x31\xf7\x80\x60\xb3\x1d\x63\xf4\xfa\x7a\x43\xbd\xec\x78\xeb\x17\x39\x65\xc2\x03\x02\x1f\x6d\xc0\x53\x19\xe8\x82\x15\xd4\xcb\x5a\xf7\x70\x81\x62\x2c\x78\xcf\xf9\x3e\x4c\xd0\x2f\x2a\x22\xf0\xa7\xe5\x70\xc4\x00\x69\xd2\x14\xb5\xc6\x1a\xa3\x4b\xd5\xe6\x49\x48\xc0\xec\x45\xb1\xab\xe7\x6d\xd2\x65\xfc\x24\x31\xca\x74\x90\x12\x2d\xb8\x1e\x13\x78\x4a\xfe\x20\xc5\xa4\x64\xae\x5f\x56\x95\x6d\xa5\x9b\xe9\x87\x7c\x08\xba\xcd\xd4\x8b\x55\x91\x69\x19\x34\x53\xc3\xc3\xb5\xe3\x7b\x91\x80\xf8\xf9\x53\x13\x2f\x27\x10\xce\x36\xa1\x7d\xab\xd4\x89\xff\xfc\xd6\x2e\x12\xde\xd7\x28\x43\x29\x80\x63\x37\x7a\x24\x8b\x6f\xa7\x48\x04\xa1\xb7\xd3\x82\xda\xf1\x77\x53\x0f\x8d\xe9\xb1\x01\x81\x32\x46\x65\x6e\x6f\x08\xed\x26\x68\x6a\xaf\x64\x5e\x92\x93\x20\x8e\x20\xca\x6e\xa7\xaf\xd6\x36\xa6\x40\xa3\x09\x7a\xb9\x45\x63\x62\x50\xd7\x8a\x19\x64\xe5\x63\x34\xbd\xb1\x48\xb4\x47\x07\x72\xd9\x75\x69\xbd\xbf\x7b\x61\x7a\xd0\xf5\xfa\x10\x39\xa6\x78\x51\xc1\xb7\xf5\xc1\xac\x6b\xa9\x32\x04\xe4\x3c\xfa\x3e\x02\x19\x3b\x9f\x8b\xf6\xbd\xfd\x71\xf9\x61\x4e\x60\x87\xa9\xb8\x8e\x36\xea\x0c\x13\x97\x39\x07\x1d\x18\x04\x30\x0d\xc5\x96\x6a\x64\xc8\x5a\xf2\x3b\xd0\x80\x18\x8a\x23\xac\xbf\x84\x74\xe5\xd4\x72\x39\x24\xdc\x4b\x0c\x10\xd0\x31\xdb\x93\xc5\x53\x29\x44\x0d\x56\x0a\x77\xa8\x19\xfd\xe8\x43\x1e\x15\x55\xca\x99\x8a\xf3\x04\x0c\x81\x42\x2f\x00\x2b\x42\xf6\x5f\x22\x70\x51\x6e\xc7\xf0\x90\xdc\xd1\xa5\xb8\x6d\xca\x5c\xd7\x2b\x64\x28\x5a\x95\xb7\xe5\x0f\x0d\x16\x60\x5c\x56\x35\xb4\x9e\x3c\xfd\x6c\xee\xcb\x0e\x52\xd7\xee\x20\x9b\x0e\x3b\xd5\x3c\x1b\x8d\x68\xef\xda\xda\xb1\x94\xbd\xdb\x5e\xf4\xb9\xaf\xb0\xa6\x9d\x1b\x79\x95\x00\x10\x05\x92\x8d\xba\x79\x9e\xd4\x5b\x00\x74\xb8\x92\x1d\x84\xff\x2c\x5d\x9d\x85\xcd\x86\xd4\x95\x8a\x75\x43\x83\xf0\xd0\xab\xa4\x1e\x44\xe4\x50\x3b\x77\xa5\x45\x34\x00\xa4\x30\xa6\x3a\x15\x58\x2c\x3b\x2f\xa1\xee\xd1\xd8\x95\xc1\x2a\x34\x00\x1f\x10\x93\xc0\x5e\xa8\x1d\xfe\xf3\xae\x25\x45\xaa\x03\xe4\x2e\x9b\xbb\xf0\x63\xc8\xdf\x78\xac\x63\x11\xed\x8f\x57\x10\x70\x72\x9d\x7c\xf5\x0b\xc8\xf9\xf7\x5e\xb0\xf6\xa2\xf0\x52\xf4\xdf\xa7\xeb\x15\x79\x4a\xb4\xc8\x77\x1b\x8c\x38\x29\x04\x95\xd5\x14\xc7\x7d\xfc\xbf\xde\xbf\xff\x89\x5f\x2c\xda\xf8\x88\x1d\xf4\xb8\x29\x99\x8b\x49\x18\x2c\xa8\x48\xe5\x1c\xd3\xb7\x9b\x90\x74\xf5\x07\x97\x98\x7f\x7b\xec\x5a\x9e\x64\xbf\x07\x40\xb0\x6f\xb7\xf5\xda\xa8\x5a\x87\x6a\x86\x0b\x1f\x3b\x0f\xab\x0e\xd3\x19\xc7\xc6\xf6\x53\xe3\x45\x14\x30\x89\xdc\xe9\xa7\xfa\x52\x6d\x7f\x95\x72\x13\x52\x0e\xa3\x1e\x35\xbe\x21\x90\x35\xeb\xd8\x65\x78\x30\xf4\x8c\xea\x25\xf8\x6c\x7d\xaa\xb8\x7f\xfd\x44\xf8\xce\x31\xac\x93\xa7\x93\xea\x53\x33\x0a\xec\xfc\x8e\x0d\xfb\xbe\xe5\x20\xed\x7e\x86\xe0\xfa\x20\x39\xb4\xf3\x09\xdd\x6b\x50\x00\x8b\x16\xee\x00\x39\x67\xa4\x2f\xa7\xa5\xab\xb1\x30\x58\x81\x8f\xe4\x69\x4c\xe6\x0b\xf4\xaa\x2b\x26\xd0\x97\x90\xa2\xc8\xe7\xd6\x23\x8b\x57\x89\xc7\xa3\x4d\x6e\xf0\xbe\xe8\x53\x26\x86\xc7\x31\xf6\x14\x4e\x8e\x25\xc1\xa4\x7b\x0b\xd8\xac\x94\x1c\xc0\x39\x37\x90\x77\x75\x15\x34\x7f\xc4\x96\xcc\xbb\x46\xf3\xe5\x84\xa4\xf8\xb9\x0e\x15\xeb\x58\xa7\x06\x2d\x4c\xd3\xf6\x44\x1c\xfc\x9c\xdd\x62\x35\xff\x2e\xb8\xe4\x1b\x00\xb7\x09\xef\x6f\x15\xaa\x3d\xb2\x01\x4e\x68\x05\x47\x38\xb3\xf9\xc9\x3c\x84\xe7\xe7\x3f\x10\x10\xbf\x29\xe0\xcc\xa0\x8f\x82\x3f\xcd\xb7\x8b\x40\x08\x07\x3e\x53\xf1\xe1\x58\x35\x7f\xb1\xb6\xbd\x53\x5b\xac\xd6\xcb\x52\x3a\x40\xaa\xd6\x25\x27\x71\xdd\x13\xa7\xd7\x5a\x3a\x66\xe0\x44\xf3\xad\xb7\x75\xac\x8e\x60\xdc\x9c\x57\x26\x02\x47\xf2\xc7\xbb\xa8\x39\x77\xcf\x45\x05\xe0\x53\x18\x45\x09\x3e\xa7\x33\x79\x1a\xea\x98\x36\x76\xfe\x4d\x17\xba\x37\x3b\x40\xe9\x99\x26\x61\x92\x41\xe3\x27\x14\xaf\x8e\x15\x7a\xbd\x9e\x00\xcd\x02\x23\x9f\x5b\xaf\x78\x2f\xb8\xe8\x27\x76\xdf\xe7\xf1\x77\x86\x93\x0e\x7e\xde\x52\xb8\x28\xef\x0e\x22\x7e\x23\x57\x57\x2f\x03\x77\xc5\x7d\xd9\xd3\x8d\xbf\xdd\x96\xca\x3e\x26\xad\x9c\x7b\x94\x6b\x9a\x77\x6a\x33\x30\xf4\xab\xd8\x3e\xda\xc2\x81\xd8\xcb\xb8\xc5\xac\xaf\xd4\x4c\x61\x92\xb8\x9c\xf1\x64\x56\x08\x9b\x06\x7c\xf2\x18\xfd\xe3\xde\xd4\x2d\xf4\x47\xc3\x86\x66\xd2\x9a\xb9\x7c\xa9\x96\xa6\x0d\xd6\xfc\xcf\xdc\xb0\x31\x64\x6f\x48\x65\x3d\x12\x0c\x3c\x75\x76\xb7\x38\x55\xdc\x6f\x3a\x7d\x8d\x62\x77\xbe\x65\x87\x74\xf8\xd1\x12\x87\xdb\x57\x39\x5a\x67\xc3\xd1\x1f\x3d\xa7\x84\x43\xf4\xac\xc2\x72\x70\xb1\x08\x81\x28\xb8\x90\x95\x0e\xe6\xea\xc5\x3f\xd3\x4f\x27\xbc\x98\x0e\xb2\x85\xc2\x21\xb0\x3d\xef\x00\x73\xbd\x56\xa8\xab\x20\xac\x83\xa3\xd3\x44\x77\xe6\x89\xdc\xea\x34\x79\xa3\xae\x66\x0a\xd6\xe1\xf3\xad\x6f\x7d\x89\x52\xcc\xa0\xb7\xc1\xc0\xba\x60\x14\x3b\xf9\xcf\x9e\x76\x9a\x8d\xde\x18\xfd\xe5\xbd\xe7\x68\xa8\x42\x1b\xe6\x98\x65\x19\x12\x1b\xb8\x5b\xff\xb4\xbf\xdf\x0f\x43\x11\xac\x9f\x9c\xf3\x7e\x7b\xef\xab\xaa\xc8\x08\x3b\x59\x4a\x95\xbb\xca\xfe\xf9\x75\x91\x39\x54\x05\x9f\x3c\xd2\xff\x8e\xe0\x27\xae\x9e\x94\x9b\x1b\x1b\xf6\xfd\x3f\x53\x87\x13\xde\xa1\xc3\xb8\xb7\xae\xa3\xf7\x59\x4f\xff\xa0\x05\xc5\xaa\xd3\xe5\xbd\x26\x62\xe6\x8e\x2a\x67\xa6\x88\xa0\xae\xf9\x05\x0d\x4d\x3f\xba\x5e\xc0\xf3\x2a\xcf\xd4\x87\xc0\xb8\x57\xc0\xe8\x7b\x91\xe7\x44\xec\xaf\xa9\xc0\x06\x9a\x7a\x7f\x63\x52\x41\x65\x1d\x2b\xe9\x9e\x2c\x71\x68\x96\xef\xcf\xed\x50\xda\xc0\xa8\x35\xed\x3c\x54\x43\xf4\xa2\x37\xae\x33\xdb\xf1\xc1\x08\x02\xb6\x88\x51\xb3\x3b\x70\xfb\x40\x3b\xbf\x60\x0d\x46\xaf\x94\xc2\xaf\x1c\x27\x1f\xf3\x2b\x30\x54\xb1\xdb\xcd\x29\xe2\x41\x41\x58\x9d\xd8\x31\x02\x24\xc1\xf0\x05\xf9\xd9\x05\x41\x73\xac\xd4\x38\xcc\xef\x37\xcb\xfb\x16\x26\x0b\x11\xc2\xc2\x36\x24\x15\x57\xfc\x56\xc3\xf7\x3e\x8e\x7e\x3f\x0c\xe5\xbd\x2a\x4a\xc7\x23\xbf\xd3\x1b\xd3\x31\xbe\xf6\x2e\xff\x31\x7a\xb8\x54\x5f\x2d\xcf\x77\x3c\x69\xd2\x5a\x71\xad\x8a\xa4\x40\x54\x16\x60\x1d\x78\x75\x15\x47\x7c\x09\x8b\xd2\x7d\xc8\xa6\x77\xd0\x26\x77\x1b\x29\xb6\xb3\xce\x6c\x44\xe3\xb1\x44\xab\x5c\x3e\x1a\xf0\xcb\xed\x54\xdb\x1d\xd1\x0e\x52\x7a\x5d\xc2\x13\xef\x68\x28\xbb\xcc\x14\x78\x7e\x4b\x18\xd5\xdb\x49\x78\x5c\xe4\x5d\x65\xe7\x7e\x89\x27\x21\x28\x8c\xec\xa2\x5a\x23\x06\x23\xa1\xe6\x03\xf9\x26\x3f\x47\xf6\xf1\xf1\xf1\xb1\x81\xef\x8c\x39\xa2\x78\x1f\x2a\x72\x9a\x48\x2c\x05\xf5\xdf\x32\x96\x02\x4e\x80\xc3\x13\x13\x8e\x5d\x07\xd2\x3c\x2c\x33\x35\x52\x49\x88\xde\xcb\x1b\x72\x40\xd1\x62\x5b\xa5\xc3\xb7\x5e\x4d\xc3\x84\x5a\x1b\x0b\x81\x71\xe2\x7f\x24\xbe\x28\x0f\x6f\x1a\x35\x0c\xf3\x30\x3d\x4a\x67\xbc\x06\x6c\x88\xa3\xa2\x0d\xc1\x39\x32\xee\xb5\xc5\x95\x71\x15\x18\x66\xbd\xdb\x12\x00\x03\xc8\x29\xe3\x5f\xee\x32\x72\x6e\xcb\xf1\x2a\x17\xe5\x53\x3b\xe0\x8b\xc3\xf7\x8e\xf0\xbe\xb9\x17\xf3\x8d\x91\x2f\xff\xef\x9d\xc7\xea\x5b\xaf\xab\xbb\x69\xe1\x2d\x91\x37\xba\x13\x35\x4a\x10\x18\x36\x69\xff\xb0\xf9\x88\x68\xb9\xb0\x15\xcd\xf0\xaf\x50\xc0\x67\x89\x47\x1a\xcb\x5c\xf9\x47\x8f\xf5\x40\xab\x98\xa9\x7a\xb9\xc2\xe7\xcf\xbd\xeb\x67\x77\xcd\x89\x53\xfe\x47\x49\x74\x77\xad\xb8\x8a\x51\x04\xcb\x42\xcb\x2b\x22\xc0\xaa\x78\x5f\x9a\x9b\xea\xb1\x6d\xc9\x47\xed\xfe\xef\x16\x37\x73\x49\x7a\xce\xa2\xe6\x12\x36\xa5\xa2\x4a\xa0\x13\x3f\xca\xbb\x2b\x0f\x2a\x2b\xc6\x9c\xd1\x34\xad\xa5\x6e\xbc\x0e\xb9\x6b\x6c\xc2\xce\x24\xbd\x5f\xc5\x1a\x68\xa2\xb9\x5f\x8f\xa6\xbc\xd4\x9f\x87\xef\xb2\x7d\x6c\x4c\xc3\x28\xfe\xd1\x9a\x0d\x40\x43\x7c\xaa\x2c\xb1\x63\x5f\x3c\x4a\x5b\x77\xde\xf6\x86\x89\x89\xe0\x94\xdd\x02\xb9\x18\x6a\x51\xfc\xd0\xd5\x61\xa1\x95\x37\xcb\x63\x37\x49\x68\x71\xdc\x4f\x0e\xd3\x5b\xb8\x8f\xad\xe8\xda\x18\x34\xfa\x75\x9f\x47\x30\x1b\x51\x3b\x15\x3c\xe0\x6d\x7f\x55\x44\x43\x4b\x1a\x1f\xed\xb4\x55\xa3\x8f\xd6\xcc\x29\x6f\x7d\xca\xb3\x74\xf9\x7b\x87\xfc\x45\x91\xd2\xf9\xe2\x09\x93\x67\x35\x8f\x2d\x2e\x9f\xbc\xc4\x3e\x7d\x92\xe8\xd7\x9b\xf9\xd4\x31\xd0\x69\x62\x49\x85\xb5\xe4\x73\x03\xb7\x14\x3b\x89\x4c\xbd\xd6\x4d\x27\x7a\x01\xcd\xe1\xc1\x97\x4c\x26\x6b\xdb\x8e\x8c\x16\x86\x4c\xb5\xe3\x75\xc4\x88\x57\x72\x0a\x03\x2f\x3a\x06\xfe\x33\x8f\xe5\xb1\x61\x90\xb6\x40\xd2\x71\x13\x81\xa1\x3b\xdd\xf8\xa6\x23\x6f\x97\xe4\x47\xe2\xdf\xb7\xae\x9d\xe2\x3b\xce\x98\xce\xa1\xbf\xb0\xfd\x7c\xb6\x7f\xa3\x44\x6a\x54\x49\x60\x06\x01\x39\xcf\x17\xf6\xff\x28\x65\x10\xc0\x5c\x56\xed\xc0\x87\xa8\x83\xfc\xb4\x05\x98\x02\xa9\xcd\xea\xa1\xc4\x27\x6e\x27\xc0\x49\x18\xec\xc5\x7a\x74\x70\xd4\x95\xb9\x40\xd8\xfe\x4e\x07\xc3\x09\x30\xd1\x9c\xbd\xda\x60\x3f\x37\xcf\x5f\x14\x29\x9e\xe7\xe0\x5f\x01\x19\x04\x21\x37\x44\x0f\x78\x76\x3e\x0a\xe1\x37\xde\x87\x46\xcf\xde\x29\xa7\x6e\xd1\xaa\xa6\xce\xcc\xf0\x4f\x63\x03\xee\xf8\x88\x9f\xcd\x84\x9f\x87\x1e\xe8\x64\x00\xe0\x1b\x49\x4c\x57\x65\x41\x23\x5c\x9e\xea\xfb\x14\x84\xce\x70\xfd\xbd\xe2\x3a\xcb\xe7\x91\x47\x1c\x48\x78\xdb\xec\xb8\xdd\xb0\x84\xb3\xc7\xeb\xa6\xed\xd6\xe2\xc9\xd9\x67\x91\xce\xad\xfe\x32\x08\xe3\x56\x08\x67\xe5\x4a\xaa\xef\xfa\xe2\x50\x66\x0c\x32\xf0\xea\xf6\x29\x55\x54\x5f\x13\x25\xc3\x4d\x4b\xef\x6a\x0b\xa4\x66\x59\xf4\xd2\x96\x24\xc2\xb8\x3a\x74\x87\xcb\xab\x0f\x24\x83\xd1\x0e\x77\x2f\xa2\x2b\x65\x2f\x75\x71\xec\xa9\x17\xd7\x55\xcf\x52\x35\xb0\xda\x7c\x8b\xa1\x39\x54\x16\x99\x70\x39\xf7\x75\x7c\xf9\x9b\x4f\xfb\xa1\x5b\x88\xdb\x20\x16\x2e\x0b\xd0\xa8\x06\x2d\xa2\x04\xf4\x0c\xe5\xbd\xee\xcd\xa7\x1f\xe0\xef\x15\x38\x1b\x03\xaa\x3b\x4d\x78\x24\xc5\xda\xbd\x85\x8e\x16\x1b\x84\x2c\xbd\xfb\x21\x42\xcf\x76\xf6\x74\xc1\xfe\x67\x3f\x2a\x08\xab\x08\x2b\x95\xbd\xa6\x69\x4a\x8b\xb9\x55\xe8\x25\x2d\xe3\xd9\x87\x49\x79\x15\x2d\xde\x2b\x5a\xb0\xd4\x7c\x9c\xb2\x78\x38\xb6\x7a\x32\x7d\xa4\x0b\x02\x04\xaa\xd7\xb2\xc2\x29\x76\x8f\x21\xc9\xd1\x8b\x2c\x22\xd6\x90\x39\x0b\x5d\xfe\x67\x7f\xdd\xc8\x03\x0a\xcd\x56\x08\x20\x2f\x08\x30\xa9\x72\xa0\x39\x01\xeb\x50\xad\xc7\xd7\x24\x31\xba\xa0\x3c\xe9\x7c\xc2\x1a\x67\xcc\xec\x7b\x92\xa9\xeb\x3a\x73\x13\xff\x9f\x34\x89\x8b\xc3\xf8\x7f\xa8\xd7\xa7\x3b\x4b\x6f\x77\x4f\x13\x3c\x86\x69\x5a\x7a\xe0\xcd\xa5\x63\x53\x3c\x3b\x1f\x67\x68\x16\x61\x75\x47\xb4\x8d\xd3\xf2\xb8\xd8\xd7\x66\xe8\x79\x31\xac\x36\x4c\xe0\xbc\xba\x7b\xe0\x92\x55\x73\x5b\x8e\x78\xad\xa7\x12\x4a\x08\xa8\x8d\x2f\xd6\x2e\x54\xd7\x92\x08\xc5\x5f\xe9\x6c\xbc\xce\x27\x47\x7c\xeb\x4b\x95\xd2\x06\xb9\x8f\x18\x6e\xa0\x05\xa7\xb5\xc3\x7b\x8a\x71\x00\x1c\x15\xae\x0e\x8e\x6d\x5f\x2c\x84\x13\x4a\x95\xae\x25\xea\x46\x9b\x30\x49\xe1\x53\x93\xa9\xb6\xd2\x15\x05\xd5\x9a\xfd\x9e\x33\x88\xaf\xcf\x86\xe2\x6a\xf8\xa0\xf8\xbc\x7f\xfb\xe5\x5e\x08\xa4\xe5\x94\xa8\x0b\x1c\x0e\x79\xfc\x74\x38\x48\xcf\x34\x2d\x61\x9c\x58\xbb\x95\x97\xa6\x62\xc0\x94\x2b\xca\x44\xaf\x59\x60\x1e\x65\x15\x05\xaf\xc5\x2d\x99\x23\x13\xfa\xd4\x31\x54\xa5\x50\xb2\x6f\x5b\xa2\x35\x6a\x5c\xd1\x9a\x2e\xed\x2e\xae\x6e\x63\x32\x06\x2a\xa1\xeb\x28\x35\xc3\x79\x2a\x5d\xf9\x63\x74\xbc\xec\x76\xfe\x67\xb5\xf6\xed\xa2\x91\xbe\x87\x6f\x9b\xa3\xe3\xc8\x6c\xa0\x2e\xad\x72\x2a\x6d\x59\x61\x19\x51\x54\x5b\x60\x23\xe4\x82\xd5\xd8\x8d\x2c\xf0\x91\x69\xb0\xb2\x76\x41\x4d\x17\xf8\x1e\xae\x40\x30\xa3\x33\x80\x8c\x9c\x63\x6a\xd2\xd2\x2a\x37\x8b\xc2\x3e\xc4\x8a\x2e\xf8\x31\xda\xd2\xf4\xb2\xa7\x49\x68\xa7\xa4\x0e\x68\xb3\xc9\xc8\x37\x05\x85\xc2\x04\x56\x2a\x0a\xc6\xf2\xd3\xb0\x10\x00\x60\xc7\xad\x43\x01\x8d\xd6\x26\x01\xc2\xdb\xff\x58\xe9\xfc\xc6\xab\xa6\x6f\x3c\x46\x16\x01\x29\x2f\x18\x96\xd0\xfd\x30\xe3\xb1\xc1\x03\xa2\x2e\x3a\xb1\x83\xf8\x0c\x72\xa6\x90\x6c\xc5\x83\xb1\x0a\x0e\xec\xa6\x4f\xfb\xf0\x01\xd4\xbf\x16\x56\x1f\x76\x82\x03\xfa\x69\x5a\xa5\xcd\x78\x40\x72\x60\xda\x0a\xa5\xa4\x92\x9e\x5e\xc2\xc6\xca\x1f\x7c\x61\x3f\x44\x0f\x65\x0a\xa7\xc4\x0d\x61\xef\x8a\x25\xbe\xbc\x0f\xe4\xef\x2a\x81\x49\x25\xd2\x9b\x7c\xe5\x5d\xe1\x27\xff\xfa\xb3\xa8\xc1\xad\x2e\xee\x6a\xaf\xb3\xb4\xa1\x1a\xea\xda\xfc\xc3\x62\x59\x44\x8c\x73\x06\x69\x1d\xdd\x17\xd3\x36\xe2\x7b\xf5\xf2\xc8\x50\x31\x05\xa7\xcd\x35\x40\x88\x6b\x6d\xb8\xa0\xd6\xc3\x6b\xda\x5d\xc2\x3a\x7e\x2e\x50\x76\x3b\x18\xf5\xf8\xb2\x2b\xf3\x3f\x81\xee\x44\x24\xaa\xc2\x3a\x4a\x2a\x1d\xf1\xdc\xaa\xfc\x51\x98\xf1\xb4\x28\x0a\xc0\x97\x04\x01\x02\xf6\xbe\x76\x2c\x3f\xb8\x37\x3c\xd8\x4d\x29\xb3\xfe\x2c\x39\xd3\x7f\x1d\xf8\xfb\x22\xa9\x6b\x20\xfa\xc7\x90\x5d\x36\x77\xb2\xc4\x57\xdc\x8a\x57\x7f\x87\x11\x3e\x58\x39\xd0\x91\x5e\xcd\x09\x55\xac\x1c\x3b\x86\x9c\xae\x18\x7e\x07\x3c\x04\xb9\xf3\x60\xdc\x5e\x27\x13\x9d\x91\x22\x94\x02\x88\x97\x61\xbd\xae\x60\x30\x7c\x9d\xba\xe8\x6c\x1a\xf7\xe2\xab\xed\x2c\xab\x88\x3c\x1d\xb6\x73\x6d\x8f\x49\xbf\x7d\xfd\xb1\x43\xb6\xf6\xc0\xe8\x73\xf4\xa5\x0b\xe8\x6e\x9c\x8e\x4d\xfa\xe6\x9e\xcb\xd7\xef\x2c\x8b\x10\x18\x37\x92\x95\x37\xd2\x57\x7d\x2d\xa4\x9b\x54\xd1\x03\x3b\xf3\x5f\x5f\x27\x20\x93\xe1\x4c\x91\x81\x49\x13\xa5\x25\x39\xfe\x2e\xe8\x1e\x9c\x2b\xae\x69\x34\xd2\x3a\x16\xaf\xa3\x69\x6a\x8d\xad\x5a\x41\x5b\xfd\xf2\x66\xa5\x75\xb5\x8b\xac\x8d\xeb\xf1\x54\xb7\x1c\xc6\x9d\x1f\x44\xe6\x04\x9c\x3d\x79\x11\x76\x8e\x69\x9e\x0e\xf9\x8c\xcb\xb3\x92\x51\xb1\x1c\xba\xe0\xbe\xd7\x50\x76\x53\xf7\x05\x47\x95\xe8\xd1\x98\x38\x04\xe3\xc4\x68\xb1\x05\xfd\xcf\x65\xeb\xb0\x25\xa5\x89\x60\x2d\xc9\xa9\xc2\x9f\x57\x09\x74\x36\xbd\x4c\xb8\xe2\x84\x79\xd6\x59\x7a\xab\xf6\xe5\x94\xc7\xc4\x48\xb5\x32\xb5\xd8\x3b\x89\xf7\xb3\x95\xd8\x6b\xa5\xd4\xc4\xe7\x56\x91\x24\xe2\xaf\xd5\x1f\x3f\xe9\x17\x7a\x01\x6a\x58\x88\xa7\x17\xdb\x20\xaa\x7f\x6f\x25\x01\x1a\x23\x5b\x32\x59\x7c\xea\xea\x02\xf6\x64\xa7\xce\x18\x3d\x0a\x91\x0f\x68\x82\x35\x89\x9e\xcf\x10\x5c\xae\x69\x3f\x8b\x68\xee\x5d\xe6\xab\xa7\x94\xd3\x7e\x2b\xb1\xf6\xbe\xe2\xbf\xe5\x4c\xff\xf2\x9c\x36\x45\x05\x77\x2c\x22\x7d\x2b\xd6\x73\x25\x1c\x41\xc9\x12\x6d\xbe\x8b\x62\x36\x87\x83\x40\x0e\xd3\x8b\x3c\x64\x7d\x16\xdc\xeb\xa3\xea\xbd\xca\x40\x42\x6b\x89\x9a\x37\xa9\x2b\xdc\x46\x48\xec\xbb\xb0\x02\x27\x79\x21\x05\xfe\x48\xaf\xfd\x43\x66\x01\xbb\xcf\x1f\x35\x0d\xdf\x5b\x9b\x01\xef\xfd\xce\x27\x5b\x5e\x5f\xc5\x7a\xfb\x6c\x33\xa2\x3f\xa0\xb0\x8c\x17\x96\x12\x80\x63\xb7\xce\x33\xe0\x35\x96\x24\x08\xa8\x2d\x1e\x7d\xe8\x1d\x4c\x24\x79\x1f\x7e\xf9\xe1\xeb\xc5\xcc\x64\xe3\x87\xab\x77\x6b\xc0\x6b\x5a\xd7\xe7\xbe\x7f\xf4\x6e\x2f\x37\xd8\xcf\x49\x65\x9a\xf1\xef\xf1\xdb\xa4\x36\x56\xcd\x4d\x00\xf4\xbc\x21\xc7\x2b\xb6\xed\xcd\xc1\x86\x79\x2e\x45\x8b\xbf\x8a\x76\x61\x42\x94\x8a\x7b\xae\xe3\x88\x74\xcc\xa9\x12\x98\xcd\xe3\xf2\xf7\xd3\x76\x39\xce\xad\x6b\xfc\xc6\x26\x2c\x80\xa2\x88\xc0\x0f\x89\x43\xf7\x71\x09\x18\x35\x25\x39\xcf\x09\x01\xd5\xb2\x81\xf1\xbb\x39\xb6\xf3\xe7\xc2\xd8\xf1\xc3\x1b\xcc\x07\x4a\xb1\x97\xaa\xd1\xa0\x40\x06\xde\xbf\x9f\x07\x1e\x74\x43\x3b\x2d\xc3\x32\xbc\xd4\xff\xdc\x6c\x99\x67\xef\x32\xf9\x53\x31\xd5\xe2\x7b\x31\xd7\x6e\x64\x21\xa6\xdf\x34\x98\xc9\xd3\x01\x30\x6e\x6a\xde\x4d\xc7\x0e\x85\xbb\xb4\x73\x9a\xbf\xc7\x7b\x04\x12\x8d\x02\x28\xd6\x11\xc7\x1e\x74\xdd\x4b\xed\x5b\xe5\xe1\x6e\xd3\x6e\x58\x96\x48\x60\x98\xb0\xc2\x3e\xb1\xaf\xcf\x0f\x0e\xf4\x4c\xb2\xd0\x06\x3a\x5d\xe2\xc1\xe2\x2e\x5a\x75\xb3\x56\x78\x56\xf5\xf9\x45\xb2\xcc\xd7\xc3\x88\xd5\x27\xb8\xed\x1a\x6d\xbc\x58\x6d\x88\xc6\x6e\x7d\x2e\xdb\xa3\xa3\xff\x06\x3e\x1a\xa6\x3a\x9e\x09\xc1\xa2\xa1\x81\x81\x06\xbb\x33\x43\xb2\x5f\xe8\xfa\x3a\xbb\xb6\x7a\x4e\x74\x37\x13\xde\xfb\x8f\x3a\xe2\x85\x6c\x01\xaf\xc2\x76\x83\x20\x5b\x58\xbc\x4f\xd1\x72\x58\x00\x07\xf9\xf9\x78\x80\xed\xf9\x63\xd3\x4f\x45\x64\xbd\xc4\x27\xa3\x12\xf6\x9a\x36\x9c\x9a\x10\xcd\xa1\xa5\xa5\xc0\xf3\x93\x3b\x8d\xad\xe4\xe3\xec\x17\x2d\x9a\xa3\x4b\x87\x3d\x1e\x5a\xb9\x4b\x18\xa3\x76\xbb\x1b\xbf\xfe\xd5\x81\x21\xd3\xf8\xf5\xfa\x82\x8c\x7c\x05\x66\xc4\x96\x02\x58\xa3\xed\x8b\x95\xd7\x9c\x40\xe0\xa5\x84\xf9\xe7\x30\x2c\xa1\x20\x7f\x03\x4b\xdb\x96\xae\x56\x7f\xf6\x11\xc2\xfb\x0c\x56\x8a\xfe\xed\x1d\x0b\x59\xcf\xe7\xa7\x7f\x9c\xdb\x73\x7d\x40\x59\xfe\xbc\xc9\x7e\xd5\xed\x4f\xcc\xd9\xae\x3a\xde\xae\x5f\xcc\xd0\xfe\x40\xbb\xe4\x16\x3c\xd4\xf1\xa5\x7b\x3f\x71\x9d\x74\x14\x12\x66\x20\x54\xee\xb5\x3f\x3b\x0c\xaa\xba\x3b\x6e\xfd\x22\x71\x5e\xc1\xed\xd8\xa5\x2a\xd5\x44\xb6\xaa\xac\x70\x50\x2b\xac\xa1\x27\x20\xa9\xc8\x00\x9b\x0c\x52\xa6\x00\x8a\xbd\xf8\x3e\xec\xa3\xe2\x0b\xeb\x90\x7a\x45\x8f\x8d\x45\x4d\xcf\x60\xb5\x9b\xcf\x09\x31\xa1\xae\x76\x62\xef\x97\x9a\xbf\xe6\x3d\x98\x3a\xfc\xd5\x75\x14\x09\x4c\x36\x33\xc5\xbd\xa3\x00\x90\xf7\xc8\xe1\xbb\xeb\x40\x3f\x49\xd0\xde\x26\xe8\xb4\xa2\x05\x0c\xbc\x0f\x76\x77\x16\x7b\x2f\xe6\xb9\xa3\x74\xaa\x4b\xcb\xa3\xfb\x38\xf8\x76\xbe\xf1\x30\xe6\x51\xfb\x9d\x13\x66\x69\xf1\xe8\x43\x8b\xed\x46\xa7\x9b\x0a\x14\x7d\x2e\xc7\xb9\x45\xc2\xc9\xb1\x04\x42\x90\x01\x09\xe6\xa6\x78\x27\xbd\x68\x14\x7e\x5b\x5b\xa9\x1f\x42\x9c\x88\xbb\xc1\xf3\xf2\x63\xca\x20\x72\x4b\x06\x0b\xf8\x1d\xef\x71\xb8\xa8\xa1\x8e\xda\x83\xd7\x82\xb9\xff\x5d\xac\xa1\x6c\xcf\xe3\xab\xde\x5e\xe7\xa0\xb6\x09\xcb\xc6\x9a\xbf\x1e\xce\x57\xaa\x1a\x8e\x32\x46\x7a\x41\xe9\x5e\x1f\x55\x80\x11\xc1\xf0\xae\x89\x85\x0b\x6f\xcf\x41\x14\x6b\x4a\xc7\x50\xe5\x88\x87\x86\x14\xec\x73\xd4\x58\x79\x6c\x97\xa9\xc8\xd3\x72\x29\x2f\x53\x04\xa5\xe2\xf5\xde\x54\x49\xd1\xcc\x88\x41\x74\x3c\x8d\x76\x50\xde\x0d\xa7\xaa\x06\xd4\x74\xf1\xdd\x43\x7a\x0d\x3d\xca\x32\x2c\x5f\x98\xca\x7e\x9c\x9f\x01\x56\x28\x00\x95\x78\xa9\xa9\x6d\xfd\x39\xc4\xbe\xdc\xba\xd4\xff\x78\x87\x06\x27\xd2\x63\x1f\xf9\xf5\x30\x0d\x6d\xe2\xd0\xfa\x95\x04\x27\x85\xdf\xb5\xee\xc9\x55\x16\xf3\x79\xdc\x11\xc4\xd8\xcd\x89\xec\xfc\x31\xf9\xa3\x17\xf7\xc9\xfd\xcb\x1e\x39\xda\x8a\x04\xbf\x7b\x36\xbb\x65\x37\x3c\x1e\xe9\x4e\x86\x10\x1d\x37\xf7\x4a\xf2\xca\xf7\xd1\x44\xf8\x1d\x6d\x77\x01\xd1\x8f\x76\xa4\x67\xc4\x80\xd0\x7b\xeb\x4f\xac\x87\x2d\x46\x43\x4b\x5f\xf1\x2a\xde\x11\xc6\xbf\xfd\x9b\xf6\x39\x65\x0e\x8f\xd0\xd9\x60\xda\xc6\x41\xc0\x72\xa9\xf1\xb7\x1a\x6a\xf5\xbc\x7b\x8f\x35\x5d\xde\x2b\x71\x9d\xb2\xfd\xf8\x1a\xc0\xa4\x40\x8c\x3a\x54\xa3\x92\xb8\x54\x33\x31\x20\xb9\x41\x7f\x96\x6c\x52\x30\x92\xd8\x35\xfa\x53\x82\x00\xa3\x21\xe5\x9f\x26\x20\xc8\x7b\x14\x01\x49\xdb\xcd\x84\x3c\x9c\x2d\x6e\xd8\xf2\x54\xec\x3a\xaf\xe8\x9e\x16\xae\xc7\x37\xd7\xed\x1e\xcb\x3d\xc5\x6f\x85\xd3\x21\x87\x45\x0b\xa7\xae\x0c\x38\x71\x74\xbe\xe7\x24\xef\x36\xf1\x88\x6b\xfc\x6c\xfb\xf2\x51\x88\x2f\xbd\x39\x4a\x18\xa6\x3d\xe8\xf2\x86\x2a\x4d\x25\x75\x9c\xd6\x68\xfe\x3b\x2b\x69\x9b\xdf\xcd\xe1\xbf\x75\xe8\xb7\x95\xd3\x8a\xba\x54\xaa\x59\x66\xf6\xd1\x6a\xff\xfc\x81\xa7\xe9\x5e\x75\xec\x2f\x7d\x5d\x5b\xef\x64\x4d\xdc\xf0\xa1\x5f\x2d\x92\x55\xc8\x27\x77\x34\x7e\xbc\x5a\x88\xde\x84\x13\xb7\x29\xa7\x6a\x7f\x25\xbb\xea\xbc\x9f\xe8\x89\xbc\x9f\xd8\x5e\x8a\xdb\x3e\x92\xee\xc4\x0f\xf1\xf9\xb6\x8b\x87\xfe\xf9\x25\xe0\x5e\x86\x1e\xf7\xea\x9c\x3d\xef\xa9\x80\x7a\x51\x9d\xe2\xd7\x99\x89\xa4\x5a\xa8\xdb\xd5\x91\xea\xb3\xeb\x6d\xce\x81\x75\x6f\x79\xfd\xd4\x5f\x03\x8a\xce\xe9\x56\xb8\x32\xfc\xdb\xa1\x74\xc4\x7d\x15\xe4\x4e\xc0\x5f\xd2\x0f\xdc\x6b\x7f\xe8\xab\x15\xf4\x0b\xbd\x1a\x52\xaa\x1b\x92\x7e\x3f\x77\x64\x3e\x18\xae\xda\xde\xa6\xfe\xe8\xf9\xbc\x19\x12\xb8\x13\x74\x52\xd1\x60\x79\xbb\x42\x57\x3c\x18\x95\xf7\x84\x0e\x1b\xf8\x0e\xef\x20\xeb\xc4\x7f\x9e\x1f\x66\x0b\x43\x34\xa4\xa4\xff\xe9\x42\xe1\x23\x20\x8f\x4f\xa4\x93\xed\x4f\xac\xcf\xa1\x73\x66\xec\x2d\x1d\x26\x6f\x2c\xa7\xdb\x5d\x60\xf4\xc4\x12\xb9\xd0\x39\xe1\xf5\x93\x05\xad\xb7\xd8\x35\xc1\xa0\x07\x2e\x23\x92\x34\xc2\x59\xdb\xe2\x7c\x05\xaa\x71\x1e\xfb\x5e\x15\xb1\x26\x8a\xfb\x19\xe7\x74\xef\x6a\xd2\x60\xb8\x06\x6f\x88\xde\x22\xcb\x4a\x43\x25\xcd\xcb\x01\x7c\x14\x49\x36\x97\xf6\xd1\xbd\x2f\x8c\x72\x07\xe7\x84\x1d\xd4\x1a\xd7\x56\x19\x08\x67\x75\x22\x7a\x00\xc7\xca\xf8\x54\xe4\x97\x50\x0f\xfe\xed\xce\x7c\x68\xa9\x72\x39\xb6\x57\xf1\xdb\x7e\x23\xe5\xc3\x62\x2b\x3f\x41\x26\x83\x8f\x89\x69\x4a\x0e\x43\x60\x80\x55\x48\xdd\x88\x52\x13\xdd\x36\xfe\x63\xb0\xc7\x7d\x7f\xc2\x65\x7d\x41\x83\x57\xa4\x3b\x92\x15\x40\x25\x39\x69\x81\xcd\x54\x1d\x4e\x62\x2e\xef\x3b\xa9\x1f\x2f\xb1\xe3\x39\x0d\x15\x58\x94\xc3\xf4\x4b\xa8\x4b\xaa\x52\xab\x84\x6a\xf5\xbd\x45\x2d\xdf\xa5\x7e\xa7\x57\x66\x7e\xc1\x4e\xed\xea\x24\xed\xe6\x64\xe4\xfc\x3b\x1c\x80\x74\x2f\xd6\xe2\x09\x95\xe0\x97\x25\xbc\xaa\x8b\x89\x6e\xb8\xad\x52\x18\x14\x48\xd5\x79\x3a\x65\x69\x32\xdb\x4d\x20\x71\x43\xf1\xad\x28\x46\xce\xa6\xb5\x93\x0e\x1e\xce\x01\x60\x5e\xde\x20\x99\x34\x0b\xe8\xc5\x9d\x0a\xf3\xb3\x39\xd7\xc8\x5d\x07\xe9\x87\xbe\x5d\xe9\xc4\xe7\xe1\xb4\x6d\x42\x28\xef\x59\x01\x3a\x7a\xe2\x70\x13\xeb\xea\xb8\xee\x91\x76\xaa\xcb\x0a\x2a\x5d\xde\xa0\x02\x03\xcb\x1d\x8a\x80\x42\xc2\xd4\x04\xfa\x46\x4d\x13\x1e\xea\x53\x75\x05\x93\xf4\x4b\xa4\x96\xd6\x8e\x89\x91\xea\x23\xdc\x36\xf6\x98\x58\xe6\x46\x68\x66\x44\x4a\xd5\x60\xf3\x9e\xc7\xbe\xeb\xba\x98\x03\x45\x7b\xac\xfa\x6c\x1f\xb2\x2c\x58\x0f\xc5\xea\xbb\x17\xad\xa8\x19\xad\xc0\xbc\xf1\xfb\x29\x0b\x79\xca\xef\xfa\x5c\x35\x75\xea\xb0\xa0\xe5\x4b\x13\xcb\x8a\xc1\x8b\x5f\x8a\xd5\x14\x1e\xce\xc5\x2c\xc3\xcc\xf6\x71\xb1\x6c\x1a\x7c\x72\x54\xa0\x1c\x4f\x4d\x21\x4c\x98\xf3\x5f\x88\x1a\xd4\x75\x21\x41\xbf\x30\x47\xb4\xc9\x10\xef\xc3\xa7\x97\xef\xcb\x76\x2c\x8f\x4c\xb4\x73\x65\xa1\xae\xaa\xbb\x02\xae\x90\x1c\x01\xbc\xbf\x88\x2b\x6c\x49\x9c\x8f\x8d\xd3\xb2\x78\xf8\x26\xe9\x45\x46\x20\x02\x40\x09\x7a\x6e\x20\x5b\xb8\x15\xae\x70\x2d\xa8\xf1\xc7\x5f\xb8\x2f\x90\x3e\xd5\xe9\x4d\xf3\x32\x08\x86\x78\x89\x99\x60\x71\xa4\x31\xf4\x29\xbc\xbe\x53\xdd\x95\xc8\x64\x59\x56\x0d\xef\x24\x2b\x7d\xd4\x72\x24\x40\xaa\x3f\x31\x7f\x17\x73\x97\x1d\x78\x63\xf1\x0e\x47\x72\x63\x12\x2b\xa6\x21\xc5\x90\x78\xdb\x5c\x86\x1a\x60\x48\x00\xda\xf5\xc6\x6c\x6f\xa2\x03\xd9\x74\x2f\xf9\xc5\xc2\x8c\xc5\x89\xa4\x41\x70\xfc\x4a\xab\xd3\xf8\xf0\xf6\x89\xb7\xf8\x7f\x72\x5b\xc8\x00\x8c\x8b\xa4\xa2\xe9\xf7\x7f\x64\x26\xee\xa2\x17\x98\x6e\xf7\xe2\x37\x25\xd2\x8a\xe5\x91\xd1\xb7\x27\xe7\xf1\xb8\x32\xff\xec\x95\x1f\x3b\xa1\x33\x64\x86\x0d\x29\xe7\x68\xee\x3d\x07\xa7\xe3\xd3\x2c\x21\xae\x39\x62\x13\x00\xf1\x55\x91\x0a\x2c\x61\xb7\x9f\xd1\x4b\xaa\x17\x3c\xf4\xfd\x32\x41\x7b\x59\x61\xfe\x19\x99\xac\xe7\x22\xcb\x29\xbb\xcc\x40\x81\x12\x7b\x59\xbd\x5e\x22\x75\xdc\xfb\x70\xab\x2e\x90\x70\xa0\x68\xf0\xd0\x47\xac\x25\xae\x24\x81\x3a\x2d\x1d\xdb\xee\x38\xbd\x48\x06\x07\x97\x49\x8d\x6f\xab\x75\x81\x76\xad\x15\x9d\xfc\xe8\x7b\x7a\xdc\xfc\xa3\x44\xb3\x09\x3a\xbf\x5a\x04\xde\x37\x90\x36\xb9\x6b\x2a\xf8\x1d\xf1\x5a\xfb\x49\x98\xc4\x77\xc8\xb4\x7f\xfd\x5c\x30\xdc\xe9\x66\xe1\xf1\x6d\xed\xeb\xe7\x45\x27\x38\x54\x46\x8c\x39\x7f\x48\xb2\x94\x62\x99\x34\x0b\x68\x59\x72\x2d\xf4\x78\x31\xcb\x23\x1a\xba\x9d\x46\x36\xd8\xb0\x36\xe4\xb5\xa0\xf0\x54\xb5\xd1\x49\x0e\xd1\x90\x28\xee\xe7\xde\x07\xb1\xb0\xd6\x52\xed\x59\x6f\x5b\xe2\xe7\xce\x93\xb5\x64\x39\xc9\x23\xe6\x56\x8e\x38\xc0\x68\x79\x29\x2b\xf7\xb0\x76\x82\x44\x1c\x55\xda\x37\xd2\xb9\x6c\xa6\xe0\xed\x0f\x25\x67\xd1\xdc\x9f\xba\x1d\x5b\x5c\x1b\x6f\xf8\x6a\xf0\xf7\xa2\xbc\xd4\x49\xca\x9d\x4e\x50\xc6\x3f\xa7\x1b\x9e\xca\xe5\x34\x84\x72\x72\x6f\x87\xb3\xbf\x14\xa6\x75\xfd\x03\xa1\xc3\xdb\xa3\xac\x94\x60\x6a\x13\x06\x0f\x7c\x6b\x6a\x16\xf7\x19\xfd\x16\x63\xf2\x50\x59\x81\x49\x35\xca\x0d\x41\x75\x54\x72\xb5\x37\xea\x4a\x51\xe9\x21\xaf\x67\xc7\xd5\xd8\x2d\x0e\x1f\x5d\x89\xfe\x3a\xe0\x26\xbd\xbf\xab\xb0\x9c\x14\xb8\x70\x33\xbb\xa0\x5d\xbe\x46\xc9\x47\xe5\x2e\x47\x49\x79\x25\xe0\x08\x10\xb2\xdd\x84\x32\x07\x33\x85\xd1\x7f\xca\xd8\x06\x78\x31\xa3\x14\xeb\x65\x49\x8f\x05\xc3\x14\x78\xad\x3f\x53\x99\x2f\xc5\xd1\x70\xa7\xbf\xc8\xa5\x7a\x18\x82\x2f\xd5\x6d\x10\xff\x78\x5d\xa2\x33\xc7\xef\xdc\x80\x7f\xaf\x7f\xd7\x0e\x91\x94\x63\x78\xfa\x58\xc3\x0e\xd8\xca\x28\x64\xcf\x4d\xf8\xe6\xd4\xef\x12\x12\xfe\xe1\x19\xf8\x36\x06\xf3\x3e\xb5\x32\x41\x4d\x7b\xeb\xa7\x06\x37\x4a\x9e\x11\xe4\x45\x05\xc4\x49\x2b\x6c\xbc\x5e\x23\x13\x64\xea\x55\x54\xe2\xc4\x90\x24\x05\xf0\x23\x19\x49\x00\xaf\xd6\x5e\xb1\x60\x3a\x39\xd2\x95\xc2\x7a\xdf\xfa\xfb\x5e\x62\x59\xef\x64\xfa\xd9\x8d\xa2\xc7\xa6\x56\xc6\x15\x38\x7e\xe4\xcc\x75\x32\xd2\x63\xda\x4f\x6b\x23\x5b\x66\x2c\xf7\x15\xaf\x3b\x91\x81\x27\xe3\xab\xbf\x65\x9b\x4d\xc4\xcb\x0d\xc7\xb2\xb0\x86\xb6\xfc\x3a\x13\xc7\xb2\xee\x9e\x7d\xac\x73\xd8\xeb\x3a\x3f\xab\x1e\xb4\x7a\x60\x3c\x8e\x4f\xe7\x7d\x31\x00\x11\x1e\xf8\x1a\x81\x42\x30\x1e\x89\xa4\x18\x42\xb8\x1e\x82\x18\x78\x1f\x03\xbf\x94\x33\x01\x92\x10\x1c\xfd\xb2\x2a\xf6\xf5\x13\x66\x2a\xd2\xc1\x13\x38\x82\xaa\x28\xbc\x5d\x45\x81\x32\x5a\x26\xd9\xd6\x03\x30\x4e\x07\xdf\xfa\x21\xcb\x0e\x8e\xbb\x2f\xbb\x22\xd8\x65\x3c\x89\xce\xc7\xec\xd4\xa3\x84\xc3\x95\xa9\xcf\xea\xb8\x0f\xba\xb8\xa5\xef\x0b\xde\x90\x7d\xe5\x7a\xf8\xac\x06\x16\x11\xec\xfb\xa6\x03\xd2\x43\x20\xc8\x80\x43\x7f\x1e\xe8\x19\x2a\xe7\xe4\x3a\x30\x37\xf9\x72\x25\xe2\xc4\x8f\xc3\x7c\xb6\xf3\xae\x93\x3c\xd7\x3a\x1a\xc0\xd5\xc5\xf4\x9f\x69\xaf\x60\xf2\xf0\x47\x02\xf7\xfe\x2b\x86\x76\xac\x6b\x7e\x4c\xd4\x68\xf3\x0b\x45\xd0\xae\x81\x5f\x38\xdc\x4c\x0b\xe9\xd1\x6b\xcd\xf8\x1e\xd7\x28\x84\xd7\xd1\x3f\x79\x17\x0c\xf7\x78\xd3\x8d\xe6\x73\xc7\x97\x8c\x1c\x31\xc3\x96\x5b\x66\xb9\x4c\x09\x08\xeb\xfc\x10\xd6\xf9\x05\x8e\x68\x23\xa0\xb7\x41\xdd\x6f\xa0\x3f\xf6\xc4\x8c\x73\x62\x5d\x8a\xe2\xcb\x0e\xe2\xb8\x0f\x33\xca\x7e\x39\x9d\x2b\xcc\xbb\x8b\x0c\xd2\xe1\x91\xac\x14\x56\x73\x2d\x93\x7a\x5f\x24\xc7\x4c\x67\x83\xe7\xa5\x20\x89\x67\xd0\x02\x6a\xe1\x00\xf9\x72\xd6\x03\x65\x1d\xbc\xc5\x17\x5c\x2f\x1e\x51\x93\x1d\x95\x83\x77\x9d\x46\x68\xf5\x70\x84\x29\xf5\x09\xa7\xdc\xf2\x8c\xaf\xdd\x8a\xe9\xce\xf1\x96\x48\xe0\xb0\x10\x7c\x3c\x10\xc9\x1b\x95\x47\xc1\x8b\xf8\x09\x10\xe6\x34\x74\xd1\xad\x85\x36\x91\xbb\xfa\x61\x01\x92\x25\x39\x50\x69\x3f\x7e\xdc\x43\xa0\x0f\x14\x6a\x5f\xa5\xdf\x55\x8f\xcd\xc8\x41\xc7\x42\xb1\x2e\xad\x53\xe5\x01\x9b\x5f\x58\xbb\xc3\x32\xd9\xf5\x1a\xef\xb4\xc7\xc1\x02\x12\x5c\x85\x51\x4a\x1d\x2c\xc9\x72\x63\x77\x8e\x59\xaf\x71\x84\x6d\x63\xa1\xd6\x9c\x03\xe0\x83\xde\x02\x46\x43\xa6\x10\x52\x7a\xcc\x7c\xcc\x1c\xa4\x61\xd6\x87\xb2\x7b\x8a\x6f\xe0\x1a\xc3\xce\xc7\x8a\x96\x15\xbc\x27\xa1\xe6\x65\xbe\x9d\x2c\x12\x57\xda\x54\xd8\x26\x8c\xa5\x86\x66\x5a\x83\x56\x7e\xdd\xfe\x48\xab\xdf\x30\x17\x4c\xc5\xa7\x4d\x65\x5f\x6c\x1c\xfc\x24\x02\x8a\xc0\xb8\xcb\x31\x45\xa7\x24\x4f\xeb\xe0\x1f\xf3\xbb\x3a\xb1\xf8\x6e\x1d\xe3\xf0\x68\x8c\xb0\x00\x4c\x67\x6e\x79\xca\xec\x60\xbe\x3d\x63\x3e\x76\xb3\x81\x97\x71\xc3\x4f\x42\x03\xba\xd4\x6d\x70\xdb\x18\x8b\x61\xdc\x1c\x35\x1b\xdd\x63\x53\x0d\x55\x2e\x52\x3f\xdc\x77\x37\x9c\x9a\x72\x1b\x6f\x26\xed\x65\xc5\xcb\xd4\x1e\xda\xca\xbd\x98\x3a\xc9\x11\x51\xf2\xb1\x34\xc5\x18\x79\xf3\x3b\xd8\x21\x8c\x1e\xe8\xec\x9d\x30\x3c\x96\x0e\x2c\xae\x83\x1c\xa7\xc2\x6f\xf9\x76\x76\x97\xbe\xf8\x32\xc7\xb5\xd2\x0a\x98\x28\x79\xff\x47\x85\x78\x33\x0c\x66\xb4\x0f\x26\xfd\x8c\xa8\x5e\x6e\x3b\x43\x96\xdc\x76\x1c\x51\x7e\xe0\x43\x9f\x0b\xa0\xd6\xe2\xf0\x79\xe8\x35\xd0\x46\xb5\xde\x9e\xe6\xb7\x86\x47\xe5\xea\xb9\x6b\x22\x0f\x20\xcc\xa0\xe4\xfd\xa4\x5b\x7e\x9d\x80\xe6\xbb\x01\x4a\x55\x0c\xc7\xc6\xa6\x00\x7a\x44\xd2\x75\x97\x97\x2a\x63\x9c\x68\x40\x26\x7a\xb3\x40\x96\xcc\x56\xc6\x33\x89\xf7\x1d\xa1\x57\xd9\x52\x0c\xdb\x80\x92\xee\x56\x84\x6d\x40\x01\x5d\xb3\xa8\x85\xea\xf5\x87\xb6\x27\x10\xf2\x49\x13\x41\x4f\xbd\xed\x56\xa4\xc3\xca\x4a\x77\x39\xcc\xfd\xa2\xee\xcf\xa1\x35\x96\xdb\xc1\x99\x10\x9b\xf9\x2c\xb3\x30\xef\x2e\x11\xee\xe0\xb6\x50\xee\xe5\xfc\x0d\x12\x9a\xb4\x46\xfb\xfe\xb2\x4e\x4b\x88\xb0\xc4\x6f\x28\x47\x06\x18\xde\x21\x22\x69\xd3\x63\x07\xd4\x78\x3e\x85\x8d\x2f\xa6\x21\x5f\x1e\xc4\x93\xbf\x16\xc8\x35\x01\xd6\x5d\x88\x9a\x5e\x13\x31\x26\xd1\xf8\xc2\x24\x33\x38\xe3\x86\xc7\x53\xce\xcc\xa6\xbd\xf4\xe4\xea\xfa\x92\xbf\x4d\x5f\x4f\x29\x02\x09\xc9\x04\x7b\xd2\x43\xed\x3f\x79\xe5\x18\x57\x96\x48\x41\x31\x81\xb2\x59\xf2\xe9\x1a\xd8\xf3\x8a\xe3\xc4\x09\xe4\xd4\x6b\xc4\xd1\x1a\x98\x0f\x91\xce\x1d\x46\x1b\x6f\xfb\x2c\xf5\xe2\x9f\x2d\x5c\x7b\x4a\xb9\xa1\x63\x09\x3a\xdb\xd0\x63\xf2\xa4\x27\xc4\xe8\x86\xfb\x44\x30\x8e\xc1\xcc\xb6\xae\x83\xff\x17\x94\xaf\x63\x9b\x5a\x99\xaf\x84\xdc\x18\xbe\xbb\x04\x89\xd9\xf7\x34\x00\x34\x69\x08\x3a\xbf\xba\x53\x6f\xdf\x84\x90\xb3\x70\xe1\x03\x3f\xe8\x18\x89\xd3\x78\xd1\x21\xe0\x1e\x72\x0b\xa2\x7c\xfa\xa1\xa9\xa5\xab\x3f\x9f\x53\x0f\x66\x35\xc0\x29\x7c\x85\xc2\xa9\xeb\x07\x95\xd0\x39\x4e\x8e\x6e\x02\x79\xcd\x01\xe9\x8b\x94\xd5\x24\xe2\xb0\xcc\x50\xa7\x10\x8c\x9a\xc6\x2e\xd2\x03\x37\x52\x42\xd1\x87\x19\xea\x9c\x25\xc5\xf9\xfe\x25\x9a\x3d\x79\xb1\x8f\xe6\xb3\x6b\x22\x37\x15\x41\x7e\x91\xed\x3b\xed\x2b\x24\xe2\xd1\xaf\xc8\x43\xb8\x6e\xc4\xb0\x0b\x81\x9a\x86\x35\x5e\x39\xf7\x45\x17\x00\x00\x9d\x7b\x00\xc0\xfc\xca\x68\xac\xfb\x13\x2c\x55\x65\x9b\x5e\x78\x57\x7d\x20\x15\x1b\x9d\x34\x20\x47\x82\xf3\x9d\xaa\xa8\x6d\x81\x0c\xf0\xfa\x05\xde\x7d\xb5\xf1\x0d\x40\x94\xd6\xc3\x85\x87\x92\x90\x38\xb2\x79\x6c\x34\xae\x27\x09\x5d\x31\xeb\x16\xcb\xec\x78\x95\x3b\xd4\x78\xad\xcd\x00\xc2\x49\xb6\xcd\x0f\x05\x88\x10\x74\xb1\x81\xa8\xb4\xf9\xc5\xf8\x75\x9c\xa2\xf1\xd5\x9d\x5a\xa4\xdc\x79\x56\x9e\x5d\x19\x04\x10\x8e\x63\x8c\xba\x54\xbf\x62\x61\x8b\x4c\x04\xb7\x7d\x73\x35\x25\x46\x14\xa1\xb2\x5f\x88\x24\x96\x0b\x62\xeb\x4d\x7d\x00\x85\xba\x79\xb1\x99\x0d\xd5\x87\x77\xc4\x2f\x79\x72\x61\x7d\x3f\x03\x20\xa9\x79\x98\xdb\x39\x84\x5e\xb1\x2d\xfe\x00\x79\x77\x37\x5e\x47\xcc\x81\xc5\xf3\x2d\x10\x9c\x17\xb4\x86\x33\x3a\x47\x16\xfc\x1c\x4d\xbb\xdc\x79\x1e\xfb\x24\xf8\xf1\xfc\x9f\x8b\x18\x31\xaa\x31\xbf\x47\x9d\x68\x9b\x7a\x10\x06\x10\x2b\x93\x20\x8e\x0d\xfd\xf1\x18\x07\xba\xc3\x20\x18\xfe\x70\x5d\x29\x77\x20\x0a\xa6\x85\x7c\xc4\xb7\xc8\x98\xac\x8b\x7e\x67\x57\xa7\x49\x81\x40\xbb\x3d\x98\x60\xca\xe7\xc2\xc3\xcc\xbe\x3f\x8d\x77\x6e\x23\x93\xe1\x1b\xca\xe5\x99\xf6\x8b\x81\xac\x41\xb7\x48\xe1\x7d\xfb\x72\x3a\x4c\xb0\xdb\x4b\xaf\xf0\xfd\xb5\x26\x96\x90\xbb\x05\x75\x6b\xb5\x09\x60\x21\xdb\x55\xb2\xe8\x51\xea\x39\x2d\xc4\x09\xdb\x28\xe1\x91\x86\xd6\x40\x06\xc8\xb0\xa4\xaa\xab\x9c\xda\x44\x34\xfb\x9e\x43\x8e\xca\xfe\x1d\x0a\x5c\xd1\xa6\x2b\x00\xdb\x92\xb8\x32\x7b\x70\x6a\xa6\xc8\x20\x4c\xaf\xb1\x90\xaf\x6f\xbd\x0d\x3c\x6b\x02\x49\x50\x69\x1b\x7d\xf5\xd9\x7e\xe4\x01\x4f\xb1\xc9\x41\xb4\x3c\x58\x39\xce\xe3\x74\x81\x68\x67\x0c\x10\xe0\xf4\x1d\x3e\x79\x2f\x89\x1b\x45\x45\xdc\x26\x8c\x9d\xcc\x58\x11\xd9\x97\x1b\x64\x64\x28\x01\x04\x03\xea\x43\xb6\x6d\x4d\x42\xe3\x4e\x98\x8b\xdd\x19\xfc\x93\x79\x43\x9f\x95\x42\x61\x92\x4f\x32\xb7\xed\x68\x37\xaf\xb1\xf2\x07\xd5\x83\x00\x44\x7e\xa3\xa2\xcf\x2c\x81\x38\x6e\xe8\x4c\x3c\x34\xc4\xe7\xb9\x3f\x63\x61\xc3\x2f\x7e\xf0\x77\x73\x2b\x99\x25\x82\x57\x51\x03\xfb\xf0\x4e\x2a\xa9\xaf\x7d\xda\x7e\x69\xd7\xb9\xbf\x70\xe1\x81\x0b\x30\x38\x4d\x72\x5d\x22\x06\xaf\xa1\x05\xa5\xcc\x03\x2f\xdf\x6d\x2b\x43\xe0\xc3\xa6\x53\x42\x47\x64\x74\x7c\xcf\x12\x60\xb9\x7c\x05\x7a\x22\x84\xe6\xfb\xc6\xb8\x0a\x0b\x78\xc9\xc2\x6f\x51\x25\xd9\x06\xc7\x0e\xc9\xdf\xde\x39\xb4\x5d\x09\x4a\x42\x0a\x59\x19\xbc\xa7\x3a\x30\xe7\xa9\xd6\x65\xdb\x7e\xab\x6c\xae\x1d\xee\x81\x2c\x0f\x91\x74\xfa\x8c\x0f\xc8\x65\x44\x67\xe3\x00\x91\xc6\xc7\x60\x29\xf4\x2a\xe6\x58\x8f\x91\x6b\xee\x05\x8d\x58\x06\xa9\x95\xf3\x62\x9d\x38\x8c\xcb\xcf\x54\xc3\x76\xac\xbd\x59\xf0\x40\xf6\x2a\x9c\xf9\xb7\xb4\xfe\x17\x4e\xc2\x6f\x7d\xf2\x64\x17\x91\x8c\x4f\x1c\x08\x41\x3b\xa1\x13\xe6\x3c\x37\x74\x74\xc0\x77\xfd\x05\x01\xb2\xb4\x6b\xab\x09\x7b\x03\x69\x3c\x17\x6a\x29\x6d\x6e\xc1\x05\xc6\x10\xc6\x37\xc6\xd4\x84\x51\x6a\xa3\x36\xf0\x21\xaf\xb1\x69\xb0\x1b\xab\xed\x0e\x61\xea\x51\x54\x84\xba\x86\xf6\xee\x5b\x75\xd7\xc1\xd1\xc2\xec\x66\x49\x27\x48\xd4\x5f\x0c\x35\xda\xd2\x97\x94\xb4\x82\xb4\x1b\xba\x0d\x74\xee\x4f\x0d\x14\xb2\x8b\x08\x89\xb5\xd5\xf0\xba\xb0\xbd\x36\x9d\x08\x7f\x94\xac\xbb\x74\x62\x9c\xbc\xea\xac\xf7\xef\xc8\xc6\x00\x16\x14\x66\x83\xfc\x8f\xc4\x7f\xa4\xa4\x77\x9a\xd8\x09\xb1\x6d\x4f\x3b\x2c\x7a\xe8\xa9\xdb\x12\xe5\xdd\xef\x44\x7f\x8e\x6c\x31\x7b\xf5\xef\x03\x99\x59\xef\xb3\x72\xd2\xc1\x67\x9c\x58\x80\x73\x5b\xca\xb5\xb8\xbd\x0c\xef\x9f\x40\x01\xcf\x75\x20\x54\x18\x7f\x00\x03\xcc\xa2\x85\xc8\x0f\x52\x28\xda\x2c\x2a\x9a\xef\x7b\x86\x4f\x43\x85\x91\x59\xb6\x92\x13\xb4\x38\xbe\x93\xc9\xe8\x54\x17\x77\x95\x9f\x98\x67\x90\x64\x4f\xf6\xec\xca\x53\xd4\x5c\xc1\xde\x91\xd3\x56\x82\xcf\xca\x5a\x7a\x07\xcf\x73\x9d\xfb\xf0\x25\xce\x2f\x34\x09\x3f\xb1\xc2\x2c\x5d\x31\x20\x2d\x2a\x31\xd5\xb4\x17\x99\x0a\x1e\x2d\xa2\x5e\x46\x6b\xb0\x81\x9f\xbc\xdb\x74\x22\x8f\x42\x08\x3f\x1d\x70\xfd\x6e\xdf\x55\x2f\x72\xf0\x44\x4c\x85\x17\x4f\xa1\x3c\xfc\x23\x84\x6b\xd7\x73\xc9\x88\x51\x6e\xb2\xfc\x7d\xe9\x54\xc4\xc2\x29\xd7\x12\x7d\x75\xfe\xe2\x8f\xe6\x82\x31\xd6\x26\xbc\x0f\x38\x06\x3f\x77\x65\x55\xc6\xf7\x85\x42\x28\xfc\x37\xe8\x00\x92\xca\x69\x93\x0a\x29\x3d\x92\xa0\xd8\x16\x4a\x39\x6d\xec\xbe\x5e\x3e\x1c\x00\xde\x11\x48\x5f\x41\x1d\x46\x9b\x8b\xfb\x5d\xa2\xdd\xa5\xf8\xca\x63\x19\xb7\x88\xa6\xd3\x23\xb8\xad\x0b\xe8\x37\xcf\x3e\x71\xee\x48\x54\xff\xa6\xd0\xe7\xef\x14\x51\xa7\xeb\x7f\xe4\x87\xae\xd7\x75\xe3\x34\xdf\x11\x8c\xbf\x2a\x4b\xa0\xcf\xd4\x66\x7b\xda\xff\xbb\x4d\x70\x6d\x2b\x32\xe1\x0b\x67\x45\x13\x16\x6e\x36\xff\xcc\xf5\xbf\x02\x63\x4c\xdf\xba\x96\x68\xb9\x96\xbf\x45\xf8\xed\xa1\x02\x6e\x1c\xb5\x07\x5a\xd4\x94\xd3\xb2\xbf\x6f\xef\xf2\xbf\x12\x61\xff\x02\x6a\x1a\x0b\x21\x4e\x26\xe8\x93\x48\x22\x2a\x04\x64\xda\x1e\xfa\x54\x10\x22\xc3\x06\x8e\x97\x2a\x68\x9a\x0d\x5f\x63\x48\x54\x97\x72\xb9\x21\x0c\xbd\xbe\x7f\xb7\x8a\x6b\x24\xd7\xb9\xa0\xe5\xa0\x0e\x10\xc7\x5d\x50\x5e\x90\x63\xf6\x2e\x89\x00\x66\xae\x98\x57\x65\x0d\x7b\x97\x41\x55\x2e\x1e\x8d\x1c\x12\x42\xe1\x26\x88\x96\x7a\xd7\xeb\xc7\x1a\xe7\x85\xb8\x14\x50\xd9\x86\x35\x8a\xf1\xcb\xfd\x3a\xd6\x2e\x03\x66\x67\x2b\x31\xe3\xc7\xaa\xe5\x77\x06\x5d\xf4\x4f\x98\xbc\x3c\xbe\xfb\x87\xbc\xbe\xab\xc0\xa1\x15\x90\x35\x53\xc3\x97\x5c\x20\x1a\xc5\x05\xa9\xd9\xd4\x35\xbf\xa5\x1c\x92\xd2\x61\xbb\xba\xf6\xa7\x8d\x38\xa7\xbc\x50\x4a\xb9\x9c\xac\x81\x7b\x2c\x61\xa8\x7d\x7d\x55\x53\xfe\xd4\x89\xb8\xde\x1d\x1d\x0d\x7e\xab\x36\xac\xb4\x1a\x19\x8c\x43\x07\x17\x15\xd7\x20\xc5\x55\xaa\x3b\x3f\xe1\x04\xf9\x62\xb5\x81\x00\x3b\xae\x4f\x9f\xc4\x33\xf8\xc5\x15\xd2\xac\xf4\xbf\x38\x7b\xce\xda\x5d\x5b\xf6\xd9\x1f\xaf\x25\xdc\xfe\x7b\x3b\xb0\x0c\x06\x08\xae\x3e\x8c\x84\x04\x01\xc4\xca\x81\x90\x0b\x89\x63\x6d\xc8\x5b\x65\xcc\x37\xdf\x2a\x42\x1c\x48\xdd\x20\x0f\xe6\xf1\x52\x4d\x91\x79\x47\xaf\xf0\xa9\xe9\xac\xb2\xa9\xaf\xee\xc4\xb0\x69\xc0\x36\xdc\x19\x16\x39\xe4\xae\x21\x33\xe9\xe0\xa8\xee\xb7\xe1\xf0\xb8\x42\xcf\x11\xa7\x2e\xf5\xdd\x48\x80\x97\xc5\x8e\xf4\x73\xc1\x12\x6a\x65\xd6\x8a\x1a\x34\x18\xbe\x51\xeb\xfe\x4d\x24\x34\xa0\x0f\x03\x0e\x2e\xfa\xee\xa2\x03\x3b\xe6\x27\xe3\x38\x90\x3e\x0f\x65\x10\x1c\x57\x79\x0e\x10\x00\x2f\xa2\xda\x9a\x7f\xab\xdd\x7b\xff\x2e\x30\x31\x7a\xc1\xce\x63\x11\x15\x55\x2a\xfa\x91\x95\x6a\xfd\xe8\x6b\x47\xeb\x17\xc7\x9e\x7a\xe5\x7d\x14\xbe\xfd\xca\x98\x3a\xde\xae\x76\x11\x4c\x1a\x17\xfc\x59\x07\x9c\x87\x49\x2f\x59\x5f\xe5\xb3\x19\x2e\x99\x2c\x80\xb3\xf0\x22\x64\xd8\x10\xf7\xfc\x21\x58\x3b\x0d\xf3\x3a\x7e\x94\x69\xda\x9c\x13\x1c\xf0\xd9\xa3\x36\x49\xcb\x5c\xc5\x78\x48\x59\x52\xf5\x67\xd9\x73\xe6\x94\x00\x26\xcd\x02\xd2\xe7\x69\x38\xab\x72\x6c\x20\xcb\x37\x7d\x21\x5c\xbb\x8f\xd7\x82\xba\x03\xbc\x2e\x1f\x6d\xab\x06\x70\x9f\xa6\xff\xe0\xdb\x88\xca\xcf\xe5\x32\x94\x93\xb5\x51\x76\x17\xb5\xb9\x35\x54\x3b\xb9\xd9\x40\x13\x4f\x62\xfd\xc2\x02\xac\x4d\xdc\x5c\xb2\xb9\xb4\x97\x39\xf6\x3e\x7f\x21\x6f\x4c\x74\x01\x5a\xa1\xae\xb4\x8b\x7a\x45\xad\xc8\xf8\xca\x3a\x50\x9b\x3d\x8c\xf2\x20\x04\xd4\x11\xe8\x37\xe2\xbf\xc2\x8a\xbb\xd0\x63\x26\xb3\xbf\x6b\x85\xce\xbd\x70\xea\x6b\xed\xbc\x6f\xaa\x3c\xed\xe6\x9a\xd2\x56\x8d\xff\xb4\xc2\x49\xdf\x21\x01\xe7\x98\x47\x5a\xcf\xd5\xb1\x50\x00\xaf\x80\x51\xe6\x60\x8b\xb4\x80\x8d\xb4\x80\x0d\xbc\x08\xa6\x57\x38\xbd\xcc\xc1\x16\xfc\xb2\x8d\xc7\xd7\x5a\x2b\x2b\x77\x15\xa6\xb3\xb8\x1f\x3e\x6b\xed\x93\x6c\x14\xbd\x06\x16\xdb\x33\x44\x02\x53\xbd\xbf\xb3\x80\xe9\xa3\x98\x3a\x62\xa4\xa9\x3a\xb8\xb7\x97\x16\x25\xfd\x4f\x0b\x2c\x9b\x53\x2c\x9d\x86\x30\x97\xbf\x50\xd4\x28\xc3\xc4\x05\x0e\xe2\x33\x3f\xc3\xc1\xbd\xe1\x6b\x02\x72\x9d\xda\xbb\xb0\xe3\xa3\x7f\x5b\x39\x28\xb1\x4f\xa4\x8f\x80\x99\x13\xe6\xde\x12\xf5\x86\xc9\x10\x0b\xf2\x66\xe0\xe3\xd9\xf5\x06\x65\x2a\xcd\x8f\xe4\xaa\x82\x86\x67\x42\x94\xc5\x8e\x4b\xa9\x02\x47\x60\x04\xe8\xbe\x63\xa5\xfa\x31\x60\xa6\xcb\xd0\x4e\x97\x21\xd0\x2c\x81\x6c\x55\x62\xbe\xd4\x3c\x4c\xa0\xa9\xc0\xa5\x6e\x39\x0f\xee\xde\xa2\xdf\x37\xa3\x9e\x95\xf1\xcd\xa0\x13\x14\xd4\xeb\x75\x51\x11\x21\x59\xc2\x20\x09\x20\x6c\xb8\x93\x34\x7e\x14\xfc\x20\x62\x4f\xaa\x79\xa7\xe4\xe6\xf4\xc2\x21\x3e\xe1\x68\x95\xdc\x29\x90\x7d\x3b\x89\xbd\xda\x45\xff\x4b\x84\xc7\x12\xd7\xd6\xba\x4a\x6d\xb1\xc6\x42\x42\xca\x8a\xe2\x86\xae\x59\x7e\x9c\x81\x07\x12\x1b\x4e\x13\xe8\xcb\x09\xa8\x1b\x17\xd7\xcb\xa4\xec\x43\x1c\x5c\x56\xed\x8d\xac\x58\xc1\x92\xfc\x32\x69\x7b\x16\x73\x71\x7a\x3c\xbf\xe9\xda\xdd\xd7\xa2\x55\xff\x4c\x85\xcb\x74\x1a\xd4\x58\xd6\xdb\xb0\x9c\xf8\x14\xf6\xfc\x8d\x9e\xc0\x9d\x73\x0e\x1c\x60\x73\x2c\x38\xb5\x94\x93\xcd\x02\x43\x16\x5f\x37\xb1\x60\x60\xbb\x80\x3a\x5e\x8b\x66\x91\x99\x49\x77\x76\xb8\xf2\xf1\xf8\xfd\x56\x6b\xc9\x15\x85\x7f\xf1\x60\x3c\x15\x1b\x6e\x4f\x35\x67\x03\x69\x07\x6d\x3b\x8c\x4c\x2d\xdf\x7a\xff\xbe\xc3\x92\x69\xc6\x07\x04\x6c\xb4\xc1\x22\x1e\x80\x08\xfe\xc8\xf3\x40\xb3\x22\xba\x04\x2a\x06\xbe\xf4\x3e\xf6\x78\x1b\x5b\xcd\x71\x4b\xc1\x30\x76\x72\xf6\x14\xc6\xf1\xa2\xb8\xf5\x60\xa5\xc8\xb8\xb7\x9c\xc1\x4a\x5c\x9a\x16\x2a\xf4\xdb\x69\x3f\xba\xfc\x8f\xb3\xd1\xc2\xfe\xb8\x24\x6f\x91\x58\xe6\xd1\xcb\x51\x3f\x2e\x79\xf8\x98\x94\xa7\x0a\x66\xbd\xf5\xe5\x79\x12\x27\xe3\xab\x29\x6e\x99\x97\xe8\xa1\xcc\xe1\x94\xb8\x72\xfa\x43\xf4\x58\x30\x72\x4c\x04\x1c\xdc\x03\x7a\x11\xec\xfe\x97\xe5\x41\x4a\xb9\x30\x7b\xcb\xe2\xef\x8e\xa1\xfc\x7d\xff\xdb\x81\xbf\x3b\xeb\x2a\xc3\xdd\x8b\xe8\x2c\x8f\xe8\xe5\x3b\x54\xf8\x68\x6c\x08\x66\x14\xc3\x72\x37\x08\xa0\x02\x6f\x43\x1c\x5c\x30\xb9\x9d\xd4\xa2\x2c\x9c\x55\x09\xd6\x11\x78\x32\x69\x7b\x0c\x58\x1d\x96\x96\xfe\xa7\xac\xa5\xe0\x1c\x7d\x0e\x6c\x80\x3b\x31\x56\xbd\x3f\x4e\x34\x4c\xec\x8e\x68\xfd\x64\xa8\x52\xd5\x3d\xee\xb7\xa5\x7b\x6d\x12\x43\xfa\x68\xd6\xe9\x11\x33\x24\x84\x05\x2d\xdb\x6c\xa4\x47\xd5\x96\x8d\x41\x27\x63\x5c\xcf\x01\xd0\x19\x92\x71\xfa\x56\x19\xdd\x86\xf2\x16\x18\xcd\x86\xf9\x30\x3a\xc4\x1f\xa8\x6b\x63\xff\xaf\x0e\x73\x49\xb4\xba\xd6\x4d\x42\xbf\xdc\xa8\x1a\x8f\x13\x2c\xa9\x06\xda\x25\x47\x1f\xb3\xf1\x12\xd3\x61\xa6\xfb\xf3\x5a\xbe\x9b\x0f\xf3\x17\x14\x30\x8c\x85\x8e\x07\x7f\x66\x30\x8f\xfd\xf0\x0a\x9a\xcd\x4c\x38\xcc\x00\x50\x38\x17\xe4\xdd\xd5\x6e\x90\x9f\x8a\x85\xdf\xfe\x91\xb9\xf9\xc3\xf5\xbb\xd6\x7f\x7b\x79\x59\x69\x2e\x7a\x7a\x5c\xa7\x9c\x1e\x13\xc5\xfc\x5d\x9d\xd2\xf9\xdc\xe5\x42\x11\x6f\xb7\xf2\x68\xd5\xf3\x3d\x10\xf3\xe3\xa3\xcb\xc3\xb8\xce\xc1\x64\x98\xff\xd5\x54\x81\x7c\x6b\x79\xe3\x8d\x47\xc7\x98\x37\x23\xfa\xa7\x98\x1f\xc2\x6b\x86\xa6\x8c\x8d\xbc\xbc\x8b\xe6\x2c\xdf\x5e\x7b\x59\x2c\x71\xc6\x21\x51\xeb\xee\x2a\x9e\xfd\x3c\x53\xb4\xba\x27\xfe\x30\xd0\xd8\xb6\xd9\x8d\xc9\x89\xc6\x3f\xbc\x4d\x32\x21\x87\xed\xae\x10\x78\x33\xa5\xe5\x45\x60\x46\xe8\xbc\x6d\x71\xc4\xdb\x95\xc9\x17\x97\xf9\xce\xe2\x5d\x3c\x7b\x52\xee\xbd\xd2\x59\xe5\x19\xb4\xfd\x06\x32\xcd\xdb\x83\x05\x84\x98\xf3\x96\x50\x57\x39\xec\xdb\x68\x43\xf1\xdb\xda\x56\xa9\x5e\x30\x86\xd1\xea\x39\x67\x84\xa0\x94\x50\x39\x4d\x4d\xac\xc9\x6e\xa1\xd0\xb6\x6a\x11\x94\x02\x02\xaf\x75\x98\x16\x78\xa7\x9d\x7b\xd3\xa2\x59\xe8\x56\x8c\x5f\x26\x8e\xa4\xf6\xe3\xb2\x7c\xa7\x18\xa0\x42\x58\x10\xda\x14\x94\xd2\x74\xd5\x2d\x7d\x59\x67\xfa\x42\x4b\xa2\x9a\xe9\x0f\xce\x97\xb5\x63\x5d\xa0\x19\x82\x40\x92\x48\xaa\x4e\xfb\x85\x42\x2e\x4a\x1f\x05\x73\x49\x80\x33\x25\xed\xa8\xec\xfe\x7f\x04\xac\xf8\x7b\x04\x9a\x02\xb7\xe9\x69\x11\x15\x10\x6c\x82\xd0\x7c\x78\xb1\x69\x89\xe0\xe6\xdd\x9f\x3e\x10\xc2\x15\xf3\xeb\x1f\x8e\xe3\x17\xd0\xa9\x91\xec\xa5\x28\x9f\xca\x78\x27\x71\x9f\x18\x81\xa3\x95\x74\xbe\xab\x1c\xed\xdf\xe7\x04\x52\x48\x39\x20\x87\x44\x41\xb2\xab\x31\x80\x12\x49\x08\x54\x1d\x99\xa1\xe6\x0e\x67\xd7\x6f\x97\x66\x85\x7e\x94\x9c\xd1\x16\x71\xfb\x52\xbb\x86\xca\xb8\x99\x4f\xe5\x91\xd3\x11\x37\x76\x8d\xe1\xf5\xb3\x70\xa6\xc9\xb4\xc6\x0a\x16\xaa\xea\xe2\xef\xf9\xf9\xbe\x7e\xdf\xe2\x6a\x99\x7b\x57\x59\xd4\x50\xdb\x23\xd0\xd6\x6a\xb7\xba\xa6\x4a\xf5\x9a\x8c\x79\xf5\xd7\x52\xaa\x6e\x85\x09\x51\x53\xdf\x63\x44\x09\x18\x81\x8f\x5b\x13\x54\xd5\x58\xa3\xa6\x53\xd1\x47\xd8\x8d\xd3\x50\xe4\x6b\xa1\x60\xef\xc5\x65\xe9\xa3\x33\xba\x24\x66\x33\xd3\xb1\x20\x1e\x38\x53\x6e\xfc\xec\x8a\x9d\xc0\x73\x75\xbe\xd6\x6e\xb9\xe5\xd9\xe7\x90\x3b\x21\x5c\x9e\x54\xf9\x35\x2a\x79\xcf\x20\x65\x5b\x0a\x52\x6c\x2a\xf2\xa8\xe0\x3a\xfc\x88\x33\xc3\xa9\x17\x1e\xe0\xb1\x8e\x8a\x43\x57\xe8\x65\xea\xf9\xa1\x32\x80\xc3\x76\x99\x97\x52\x9d\x59\xa0\x59\xc4\x5e\x0a\xa9\x0b\x2b\xd7\xc8\xa0\x23\x94\x47\x11\xe3\x39\x01\x0e\xf2\xa5\x8d\x99\x2e\x47\xbe\x9f\xf3\x1e\xf6\x9f\x11\x4c\x3d\xe3\x5e\x93\x05\xd8\x30\x24\x0b\x9d\x27\x9f\xca\xa5\xe0\xe4\x74\x8f\xe2\x37\x11\xd3\x04\x9a\xf1\xce\x29\x6b\x1b\x97\x22\x9b\x93\x5e\x9f\x9f\x7d\x3c\xc3\xf9\x79\x5d\x93\x6d\x4d\x74\xdb\x9b\x16\x61\x4a\x0f\x1b\x66\x90\x7c\xba\xc7\xcd\x03\x01\xe8\x30\xe9\xcc\xa3\xc6\xf1\xbb\x77\x36\x88\x6f\xf7\xb4\x94\x3d\x3d\x72\x4b\xad\x7e\xda\x55\x69\x6b\xea\x95\x15\x6b\x60\x1f\xce\x88\x69\x8d\x1a\xb7\x78\x52\xd0\x58\xab\x1e\x32\x3c\xa0\xf0\x22\xf7\x94\x64\xff\x36\x3f\xf2\x9e\xd7\x7e\x70\x5b\x47\x8b\x18\xc6\xfb\xe6\xa9\x79\xff\x5e\x9b\x73\x4f\xbb\x7e\x46\x0f\xc8\x5a\xef\x5a\x2d\xb2\x98\xa6\x96\xf7\x7f\xb0\x2e\xae\xd2\x8e\x9f\x33\x91\x77\x13\xcb\xa5\xd5\x51\x1e\x3d\x6b\xe9\x2c\x47\xea\x62\xe7\x02\x37\x02\x83\x3e\x58\x80\x64\x76\x59\x1f\x81\x22\xf3\x65\xb8\xb4\xf3\x47\x33\xce\xbd\x97\x7f\xba\xce\x9f\xb1\xdf\x7b\x72\x1f\x1d\x48\x7e\x66\x88\x52\x03\x7a\x20\xd9\x60\xc8\x36\xd9\xa5\x63\x0c\x7f\xef\xbb\x8e\x04\xc5\xdf\x60\x31\x39\x23\xaa\xf4\x7b\x37\xa3\x55\xdc\x94\x58\x96\xec\x2d\x9d\x4d\x12\x63\x0a\x0f\xca\x4a\x53\xd0\x89\xb8\xeb\xa3\x11\x00\x84\x3e\x0e\xc9\xb2\x79\x40\xdc\x9f\xef\x4d\x59\xe2\xde\x98\x0c\xb1\x1f\xb2\x64\x70\x45\xb5\xc5\x50\x25\x51\x84\x0b\x8c\xb3\x3a\x22\xb8\xf8\x2c\x79\xb6\x4b\x97\xd3\xf9\xc4\x1f\x6d\x0a\x1f\x8e\x36\xd8\xcf\x41\x72\x5c\xfe\x48\xf0\xbd\x09\x82\x97\xb9\xa8\xe4\xd2\x8f\x8e\x5e\x2f\xf1\x65\x85\x98\x92\xdf\x65\x87\xca\x01\xcf\xcf\x8f\xe3\xd9\x25\xe4\xa6\x3d\x30\xe6\xd5\x7f\x41\x39\x4a\xf0\xb4\x09\x23\x17\x66\xcb\x77\x50\xca\x81\xe2\xe7\xae\xef\x3c\x84\x8e\x26\xd9\xb6\x47\x07\xf7\x69\xb5\x70\xaf\xea\x1d\x28\x80\x9a\xad\x3c\x11\xd4\x7c\xe7\xc5\x71\x39\xf9\x14\x32\x6c\x6e\x33\x3d\x52\xe0\x9a\x02\xf3\x5d\x22\xbb\x78\x66\x65\x61\xc4\x4b\x01\x6a\xcb\xa8\xaf\x75\x71\x5f\x47\xb4\x65\x37\xf2\x00\xa0\xc6\x31\x47\xf9\x90\x0c\xb8\xb0\x95\xc9\xd2\xe7\x2e\xd6\xd5\x82\x46\x2b\x0b\xd6\x2a\xba\xbf\x17\x35\xf7\xfb\x93\x58\x25\x94\xa3\x4d\x70\xed\xf8\x16\x30\x2e\x25\x6d\xdf\x25\xb5\xa0\x0f\xfe\x44\x79\x79\x4f\xf5\x6d\x08\x57\xda\x33\xe8\xfd\xd4\x53\xd1\xa0\x28\xa7\xb8\x6d\x67\x44\xb1\x4d\x5d\x25\x1b\x52\xdb\x28\xc6\x41\xa6\xe4\x5e\x74\x68\x7f\xfa\x3b\xd4\xcd\x35\x16\x7b\x79\x83\x4e\xbd\xf6\xc0\xe4\x5a\x43\x47\xfb\x57\x43\xd2\x9f\x3f\x67\x7c\x6e\xe9\x8c\x0e\x16\x92\x54\xae\x6f\x70\x71\xfc\x01\x9a\xdd\xe7\x66\xa1\x9a\x9a\xdb\x53\xde\x43\x73\xee\x31\x02\x12\x68\xab\xc2\xb3\x65\x68\x44\x22\x0f\x07\xc7\x52\x50\x63\x1b\x8f\x4c\xd3\xe5\x31\xf4\xb1\xdd\x0e\x62\x8b\x72\xfb\xfd\x80\xba\xaf\xfa\x5f\x9d\xd9\x7e\xf4\xb8\x5f\xa5\x96\x16\x9a\x63\x3b\x66\x86\xef\x75\xed\x2a\x49\xd3\x68\x5c\xd7\xa8\xcb\x62\x0f\x8f\x95\xdd\x99\xf4\x3c\x53\xd0\x61\x41\xf5\x0e\xe4\xef\xb5\x5f\xe1\xf9\xfd\xec\xe0\xf2\xbc\xec\x8d\x90\xe2\x3d\xae\xcc\xdd\x5c\x46\xeb\x49\x6d\xef\x2f\x09\x13\xb6\x12\xbf\x5f\x6a\x0f\xf6\xc8\x19\x58\x33\x66\x60\x3e\xfb\x52\x3b\xf4\xa7\x9d\x8b\x81\xeb\xe9\xf4\xc7\x1e\x8e\xbb\xc7\x91\x3e\x61\x68\xc0\x05\x98\x90\x1f\x73\xd5\x2d\xf7\x23\x90\xf3\x9e\xd0\xe3\xee\x8d\x54\x53\x5e\x83\xbb\x35\x5d\x09\x35\x40\x1e\x90\x18\xd1\x94\x5d\x61\x5d\xca\x3a\x6a\xf3\x1c\x5c\xf6\x1c\x51\xee\x00\x6f\xb7\x21\xab\x84\xe4\xc7\x05\xa6\x3d\x63\x49\x84\xb0\x90\x17\xe8\x85\x65\xb1\x70\x7f\xb7\x3a\xbe\xf9\x8d\x09\x2a\x29\xec\x8b\x5c\x64\xbf\x35\x96\xeb\x16\x9e\xad\xf3\xed\x8c\x5b\x21\xde\x74\x3e\x6f\xe9\xbd\x47\x1b\xbe\xca\x2d\xb4\x27\xc4\xe0\xda\x73\xf0\x10\xfb\xe4\x78\xd4\x9d\x39\x5c\xf5\xd6\x35\x78\x68\x80\xdc\x15\x07\x52\xd9\x53\xa0\xc9\x43\x5d\xfa\x9c\x50\x2e\x43\x9d\xb0\x5c\xa6\xfe\x7d\x5f\xa9\x51\x68\x43\xba\x9d\xed\xfd\x11\x8a\x7a\xe3\xfc\x19\x41\xad\xaa\xc3\x0b\x2d\x64\x11\x27\x85\xf2\xb7\x63\xe8\x43\xd6\xd9\x93\x42\xa0\xf6\x40\x58\x8a\xb9\x48\xae\x0e\x89\x0f\xdc\x75\x97\xdd\x0c\x70\x96\xfc\x92\xc8\xfe\x35\x20\xa1\xcd\x26\xbe\x12\x90\x8e\x66\x5f\xf9\x58\xc0\x49\x98\x2d\x6f\x60\xc5\x6c\xd7\xd7\xbd\x54\x5f\x6d\x39\x50\xfa\x93\xf2\xb4\xe5\xa0\xac\xf5\x7a\xde\x74\x69\xf5\xd8\x32\x07\x8c\xf0\xcd\xcb\x19\xf6\xdd\x50\xbf\x63\xad\xa6\xd8\xe2\xb1\x0a\xd6\x31\xab\xec\x40\x36\x78\x0f\xa9\x2b\xe5\xde\x18\x0d\x24\x68\x90\xc9\x45\xcf\x4c\xfc\xf1\x5b\x74\xb7\xe2\xdf\xc9\x49\x40\x48\x29\x63\x10\x8a\x19\x75\xc0\xc2\x1b\x04\x10\x68\x57\xb3\x77\x84\xff\xd2\x22\x9e\xa4\x60\x58\xb3\xbd\xb2\x9e\xed\xe0\xfd\x28\x8c\xe5\x43\x5f\x4c\x66\x86\x74\x80\x7d\xd3\xef\x8f\x63\x7d\x1b\xbe\x98\xf4\xc2\xcd\x81\xdc\xab\x37\x9a\xb1\xfc\x3b\x7e\xe2\x8b\x06\x6d\x45\x52\xbf\x14\x2e\x8e\xc9\xaf\xab\xad\xd7\xc6\x64\x60\x9a\x95\x8a\xe0\x44\x42\xc1\x12\xec\x17\x61\xfa\xd1\x3f\x86\xce\xf2\xd9\xcf\xe5\x87\x58\xc2\xec\x95\xd3\xd2\xf8\x37\x7f\xa5\x44\x3e\x09\x8f\x10\x48\xb4\xd0\xce\x7d\x87\x05\x54\xe2\xd5\xbd\x08\x4b\x15\x34\xd7\xd1\xce\xdd\xf2\x1e\x1a\x3e\xee\xce\x68\x66\xff\xfd\x54\x6e\xb8\x47\x9c\xe5\xc0\xf0\xd6\x37\xd7\x51\xb2\x7e\x6b\xe5\x07\x80\xf5\x2f\xee\xf2\x08\xfa\x38\xdf\x60\xec\x73\xba\x35\xd5\x95\xad\x3c\x55\x40\xfb\x24\xf8\x47\xf4\x1e\xea\x2d\x6c\x32\x45\xb9\xd5\xd7\x45\x55\x51\x9e\x9c\x79\x45\x5c\xf3\xc1\x83\xfb\x88\x9c\xce\x08\xf7\x3a\x83\x1c\x9a\x7b\x73\x13\xa9\x8e\x05\x4c\x26\xb0\x17\x9a\x78\xc4\x3d\xb4\xfc\x2b\x7e\xf8\x40\x26\x73\xee\xf4\xaa\x03\x89\xb7\x0d\x51\x34\xd8\xc4\x19\x71\x64\x81\xa5\x9f\xa0\x27\x2e\x0b\x07\x30\x56\xa2\x03\x94\x33\x89\x27\x77\xd6\x72\x60\xda\x8c\x74\xd8\xc0\x10\xcb\xa2\x33\x9f\x10\xf6\x83\xdf\x15\x45\x87\xe4\x84\x51\x46\x0c\x55\x92\x7d\x87\xbf\x71\x06\x10\x75\xb3\x4d\x4a\x18\x68\xc6\x39\x52\x54\xee\x9c\x44\xd1\xe9\x55\xa8\xff\x8f\xa0\xe5\x0d\x4f\x1f\x8b\x29\xd5\x55\x58\xb4\x28\x0c\x24\xf0\xe4\xc6\xd7\x56\xa5\x91\xe8\xbe\xf6\x28\x2b\x99\x8b\x7f\x8d\x68\x55\xad\x76\xfc\x71\xe5\x27\xa9\xc4\xb5\x21\xfa\x93\x31\x46\xee\xd1\xb0\xd6\x47\xfc\xb2\x29\xf2\x34\xd3\x61\x3d\x32\x00\xa2\xe1\xf8\x94\xa5\xbf\x26\x8b\x71\x15\x72\xd4\x98\xd2\x00\x03\x6d\x95\x9d\xe3\xa4\x5d\x93\x1d\x10\x78\xa2\xd7\x8e\xef\x66\x94\xf1\xf6\xbe\x12\x75\x18\xa1\x39\x00\x1b\x56\xfc\xf9\x45\x4e\x55\x0d\xbf\xb8\xb2\x7e\xf4\x01\x5b\x10\x92\x24\xaf\xe1\xe6\xcc\x45\x1d\x35\xa8\x9b\xc5\x54\x82\x14\x36\xf4\x2e\xf9\xa1\x86\xf6\xda\x34\xfd\xa0\xe9\x11\xa1\x01\x6e\x64\x13\x57\x5e\x53\x85\x87\xfb\x6c\x98\xef\x5d\xde\x56\x9d\x6d\x98\xe3\xfa\x91\x0c\xa9\x33\xbc\x8f\xa3\x6d\xad\x8c\x2d\xd2\xa1\xb8\xf3\x6b\x11\xb2\x2c\x95\x72\x5f\x58\xb5\xf6\xdf\xa4\xfb\x3e\xf8\xf3\x8f\x59\xe3\xc5\xaa\x83\xf0\x8b\x30\xfd\xa4\xae\x01\x5e\xba\x4f\xd6\x10\x3a\xc9\xb8\xbd\xbc\x84\x23\x33\x8a\x79\x51\xcb\xb0\x56\xc0\x52\x65\xf5\xf1\x72\xa5\x22\xf7\x93\x25\xe8\x9b\x7e\x1a\xf3\x35\xa7\xfe\xbf\x97\x51\xed\xcf\xaf\x6e\xa3\x45\xcb\xc3\xbf\x46\xb8\x8e\xb3\xd6\xbe\x3a\x35\x58\xbe\x13\x03\xcc\xf3\x1d\x41\xc4\xbf\xfd\x30\x0d\x30\xe5\x3c\x3c\x5f\xd3\x9b\x06\xf8\xb8\x79\x7f\xba\x56\x7e\x02\x00\x16\xd3\xf2\x6f\xa4\xb4\x7e\x3b\x6f\x3e\xeb\xcd\x3a\x1e\x13\x3d\x23\x3f\xcd\x50\x9e\x55\xd1\xce\x4d\xd7\x0e\x72\x98\x0f\x3c\xe4\xc5\x14\x3e\xba\xcf\x8c\xc9\x1f\x75\x3f\x24\x9b\x94\x01\x1e\x9b\x43\x54\x12\x49\x5a\x1a\x1f\x03\xb8\x9d\xa8\x81\xc9\xef\xf4\x85\xc8\xaa\xb4\x9b\x47\x25\xed\xab\xc0\xd5\x4a\xc9\xe2\x88\x6c\xd1\xd4\x99\xc7\x2d\x45\xbb\xb0\x9d\xf7\xe1\xeb\x6a\xba\x6a\x69\xef\x53\x21\xad\x2b\x5f\x7d\x8c\x6d\xae\x3d\xd9\x80\x1c\x9f\x2d\xf9\xb3\xf5\xfe\xe6\xab\x11\x0a\x68\xb6\x68\xdb\x3e\x11\x66\x87\x9a\x88\xe5\x3b\x09\x4f\x73\xc6\xd3\xa5\x7a\xe5\xb8\xca\x15\x69\xbd\x60\x9f\x91\x6e\x49\x43\x6c\x92\x8e\x20\xea\x4b\x29\x4b\x6b\x19\x10\x55\x90\xef\x42\x8b\x3f\xdc\x6c\xaa\x9b\x7d\xb8\xfd\xe9\x85\x20\x95\x34\x6f\xd6\x1b\x0f\x90\x3f\x65\x8e\xed\x3e\xdc\x54\x2f\xa6\xdc\xd0\xf9\xc1\x7d\x96\x55\xec\x2f\x2f\xd8\x5a\x40\xc6\x81\x9c\x72\x8b\x07\x64\xb0\xb8\xde\xfe\x3a\xbd\x55\xa9\x95\x40\x1d\xec\xcf\xe5\x9f\x9f\x80\x20\x9b\xc4\xfa\x92\xeb\x8c\x49\x81\xc8\x38\x1e\xf3\xbb\xf1\xfb\x3f\x92\xcc\x82\x2b\xea\xef\xeb\xe2\xdf\x19\x06\x18\x42\x19\x4a\x40\x05\x86\x2e\x09\x09\x01\xa9\x19\x69\xa4\x53\x1a\xa4\x41\x1a\x04\xc9\x01\x01\x11\x41\x60\x08\x29\xe9\xee\xee\x46\x50\xba\xbb\xa5\x41\xba\x73\x9e\xf5\xfb\x3f\x6f\xe0\xec\xbb\x3e\xf7\xec\x7b\xf6\x5d\x67\x2a\x93\x07\x51\x74\x74\xf9\xfb\xde\x5b\xcf\x9f\x28\xde\x3f\x81\x60\xe1\xed\x4d\x13\x8f\xb1\xf6\x43\x85\xe2\xe8\x98\x5a\xcb\x34\x75\xfb\xcb\x2f\x3e\x1b\x9d\xca\xff\x8c\x53\x96\x23\x4a\x60\x21\x6e\x33\x14\x81\xa9\x24\x23\x95\xc3\x38\xc1\x26\x44\xba\x18\xde\x09\x43\xcc\xce\x69\xd3\x4d\xa4\x1b\xae\x31\x95\x5b\xa9\x64\xd9\x1f\x32\xce\x21\xed\xf5\x65\x6f\x67\x4e\x67\xaa\x8b\x2d\xa8\xa7\x9d\x44\xf8\x89\x6b\xf9\xb7\xe5\xad\xe9\x6f\x49\x38\xdd\x20\x54\x22\x6f\x95\xd2\x57\x2d\xca\xbf\x07\xa6\x98\xcf\x74\x28\x32\x8a\x3c\x5f\x7c\x44\x9e\xa0\x34\x2b\xd6\x9a\xd2\xb6\x28\x60\xad\x05\x26\x04\x78\xfa\xf9\xd6\x9d\x6d\x64\x6e\x82\xfa\xf2\xf9\xff\xc5\xd0\x68\xd4\x97\xac\xd5\xdc\xa1\xef\x2a\xb2\x32\xe8\xdd\x0e\x3f\x61\xaa\x0f\x30\x2b\xcb\xee\xe1\x97\x82\x43\xdd\xdf\x06\xbd\x67\xaf\x99\x66\x74\x80\xcc\x58\x94\xf2\xf2\x29\x81\x9f\x7f\x4b\x9b\xc4\xea\xcb\x17\x07\xcb\x93\xfb\xb4\x63\x9b\x82\x2f\x6e\x0d\x0d\x5f\x14\xf0\x59\xb9\xde\x1c\xee\x3e\xfe\xb4\x2a\xb7\xbc\xff\x18\xfe\x58\x61\x8c\x7e\xb9\xb1\x9e\xfc\xd6\x6f\xa0\x43\xde\x3a\x48\x37\x7d\x92\x60\xe4\x1b\xd3\xf3\x8d\x07\x1d\x10\xc2\xdb\x94\xc1\x4f\xd8\x5e\xc1\xd1\x44\x5c\xcf\xd7\xda\xed\x8b\x81\x78\x55\x1e\x66\x5b\x51\xd9\x38\xc8\x97\x1b\x91\x8d\x9b\x9d\x66\x84\x42\xb2\xbc\xbc\x16\xd4\x38\x78\x7f\xa0\x47\x52\xa4\xfa\x6b\x10\x84\x69\xf3\x95\xce\x65\x2d\x68\x78\xf7\xe5\x48\x5e\xb9\x93\x80\x67\x53\x2a\x08\x94\xb9\xd0\xc5\x0c\x4c\x50\x22\xe3\xee\xd0\x77\x9f\x38\x95\x1c\x5c\x16\xd0\x72\xcc\xdb\x20\x1d\x64\xf0\xdf\x66\xb7\x12\x7e\x16\xb1\xa0\x0b\xbf\xcb\x0e\xf5\x79\x49\x26\x8c\xf4\xa8\x99\x50\x7b\xd9\xd1\x64\xba\x21\x31\xd4\x0b\xd2\x19\x1b\xc8\xea\xe1\x3f\xb2\x7b\xd8\x30\xe9\x48\x14\xa6\x52\x3e\x6e\x3c\x8e\x5d\xda\x28\xf4\xd1\x86\xef\xe2\x44\x53\xe9\xe6\xa7\xda\x33\x7b\x25\x4a\x85\x21\xcd\xf5\x65\xb1\x36\x52\x91\xcf\xc2\x27\x64\x40\x1b\x47\xb3\x85\x17\x1c\xb1\xad\x29\x89\x72\xda\x33\xee\xa5\x54\xbf\x31\x37\xba\xfd\xfe\x97\x46\xb7\xc7\x7f\xd8\xe4\xb1\xde\x1c\x63\x59\x5a\xff\x8e\x8e\x89\xf1\x35\x5e\x08\x12\x87\xde\x0a\x87\x1c\x0c\x3d\x07\x10\x8b\x04\xaa\xee\xbd\x9e\x4c\x60\x76\x32\x2b\xf4\x13\x79\xc9\x22\x19\x66\x34\x88\x25\x92\x27\x00\x46\x88\xe5\xd9\xab\x27\xc0\x10\x5c\xe7\xc2\xb2\x7e\x39\xe0\xc5\x6a\xf2\xe1\x44\x2f\xe4\x11\xc3\x9f\x62\xf3\x5e\xab\x86\x98\xbe\xbc\xe7\x02\x25\xcb\xe9\x60\xd8\x2b\x6c\x18\x70\xc3\xc7\x9a\x83\xab\x82\x22\xb8\x6d\x80\x22\xa5\xdb\x8d\xab\x8c\xcf\xa8\x83\xdb\xa7\x97\xd4\x02\xa7\x9e\x62\xca\xb9\xbe\xa8\x95\x44\x36\xe1\x63\x1e\x4b\xfa\xe9\x19\xac\x68\x84\xf0\xd7\x68\xaa\xb7\x31\x68\x88\xe2\x97\x62\xe0\x72\xae\xc7\x7c\x5b\x1e\xe7\x87\xdd\x1f\x52\x50\x47\x06\x28\xa3\xb9\x0a\xdc\xe9\x52\x00\x75\x73\x67\x79\xa7\xde\x17\x6b\xd4\xfd\xbc\x3b\xa4\x65\x84\xc7\x9c\x82\x7b\x58\x7b\x5d\x47\x07\x7f\xf7\x85\x14\x07\xb0\xf4\xf4\x76\x13\x7b\x3b\x0f\xdc\x2e\xd9\xea\x50\x54\x20\x60\xae\x4d\x5d\xa7\x00\x24\x66\x68\x2e\xd0\x53\x75\xaa\xc6\xca\x3c\x21\x8f\x21\x09\xc7\xc3\x3d\x03\xf3\xc7\xa1\xfe\x36\xbb\xb5\x95\xb3\xb6\x1d\xe6\xb3\x0a\xfe\x13\x08\xc7\x7a\x0e\x12\x88\xb9\x7a\x18\xb2\xd9\xa0\xd6\x97\xf4\x1e\xd1\x3b\xa4\x99\xb4\x2e\x72\x9c\x6a\x4b\x7b\x9c\x0a\x94\x81\xe1\xc5\xf8\xed\x1a\x10\x51\x8b\x76\x0d\xe8\x9d\x02\xb2\x3c\x23\xb2\xad\x22\xda\xbf\xe4\xa7\xcc\x1d\xcd\xc4\xc9\x25\xf4\xa3\x59\x1c\x80\xe8\x79\x6e\xd3\x8f\x7d\x6e\xbe\x40\xaf\x23\x53\xf3\x95\x7c\x53\x6e\x78\x6a\xdd\xf1\xe7\x72\xc4\xcf\x00\x27\xba\x99\x4d\x6c\x68\xb1\xb0\xe2\x71\x34\x08\xf1\x93\x83\x83\x9b\xd5\x2d\x1f\x2f\x92\x1a\x09\x30\x5a\x28\x70\x97\x90\x55\xf3\xc1\x68\x70\x28\x9f\x11\x01\x08\xef\x37\x5a\x7c\xb9\xb6\xf2\x03\xcf\x05\xb1\x01\xbe\xec\x6e\x7b\xde\x92\x06\x6a\x0e\x10\x24\x06\xc9\xed\x60\xca\x2d\x5f\xdc\x43\xac\xe9\xca\x71\x62\xb5\xa1\xbb\x43\xca\x9e\xb1\x5b\xae\xe2\x97\x8d\x6c\xff\x40\xed\x78\x90\x1a\xb5\x5c\x6a\xf9\xe7\x69\xb5\x5e\xa7\xe9\xbe\xc3\xfc\xee\xd2\xad\x21\xce\x24\xf2\x98\x40\x39\xf8\x8c\x05\x0f\x87\x1c\xd9\xa6\x0e\x13\x0d\x64\xf2\xeb\xe0\x95\xc5\xa8\xa6\x94\x0b\x1f\xb7\x94\x0a\x17\xe7\xb8\x8f\xe3\x4f\x51\x3f\xd7\xe7\x2a\xd4\x21\x0b\x7b\x62\xe2\x76\xf9\x22\x5b\xb5\xba\x59\x5d\xd3\x18\x8a\x87\x15\x14\x6c\x24\x52\xd2\x96\x78\xcb\x63\xac\x5d\x89\x97\x2c\xca\x67\x5b\x81\x81\x17\x7e\x53\xe6\x8c\x8d\xa3\xe0\x0d\x89\x0d\xf4\xdd\x60\x7a\x41\x64\x62\xee\x0a\xdc\x09\x3a\x78\x42\x11\xef\x43\x24\xaf\xde\xd9\xc7\x26\x7c\x26\xab\xeb\xfd\xb0\xc0\xfc\xba\x7a\x29\x7c\xd1\x41\xa1\x83\x72\xf4\x33\x05\x7c\xfb\x71\x29\x08\x31\xa9\xa5\xe6\x77\x5b\x7d\xe2\x60\x91\x64\x60\x05\x89\xd0\xf2\xeb\x27\xee\xa4\x26\xdf\x3f\x28\xf9\xd3\xc6\xf6\xa2\xcf\x18\x6c\x6b\xe7\x43\x5a\xfd\x40\xc4\x7f\x70\x61\x73\x35\x3b\xec\xd7\xd3\xe4\x89\x15\x98\x01\x52\xa1\x3a\x9b\x3e\xbb\x25\xc7\xe2\x5b\xbf\xed\xd8\x94\x31\x35\x73\x9e\x2f\x7e\x70\xe8\x94\x58\xb1\x0f\x27\x0b\xa4\x92\xec\x33\xb7\x3b\xd1\x79\x1a\xe8\x6e\xde\xf1\x7c\x27\x31\xc9\x4d\xd8\x26\x9a\xb1\x5a\xaf\x43\x2d\x55\x07\x33\x6d\x6a\xdf\x1c\x17\x17\xe8\xa5\xee\x7a\x84\xf7\x0b\x77\xe9\x72\xb3\x60\x3a\x95\xb7\xd7\x55\x43\x40\x78\x4f\xbf\x49\xe7\xd1\x08\xb3\xd9\xcd\xaa\x0d\xcd\x04\x36\x1e\xf9\x03\xd0\x4e\x18\x4c\xf5\xca\x94\x1c\x9a\xe8\xc3\xdf\x09\x1f\xec\xe6\x6b\x1c\x57\x84\xfc\x13\x60\x66\xa2\x54\xb9\x33\xac\x6f\xfe\xee\xcc\x35\xb1\xec\x4a\xa0\x27\x48\x89\x07\x30\xf2\x7d\xad\xab\x1d\x62\x6b\xeb\x98\xd0\x5e\xf3\x3e\xb0\x18\x40\x50\x5d\xd0\xcb\xe0\xc9\x4a\x5f\xb7\x58\x5c\xd7\x35\xe5\xad\xab\x50\xd9\x4c\x35\xcb\x76\x77\xde\x26\x5d\x2f\x73\x2c\xed\x09\xbe\x9a\x4a\xe7\xa5\x9c\x3a\xcd\xfa\xf1\x3c\xbd\xfc\x55\x59\xc7\xd6\xc3\xef\x3c\x43\xab\x91\x47\x5c\xa6\xdf\x63\x67\xc3\x9a\xd3\x45\xae\x5e\x84\x5f\x19\x05\x0b\xc9\xbd\xc4\x4d\x33\x66\xcb\x7f\xdb\x8d\x5d\x07\xdc\x9a\x02\x8e\x41\xa5\x18\xaf\xdb\x32\x0d\xcd\x43\xff\x4f\xb9\xec\x69\xf1\x3b\x9e\xd5\x69\x3a\x86\xcd\x29\xd5\x72\x4f\x00\x6d\x3a\x83\xeb\x1d\x0e\xdf\x63\xc0\xcd\x06\x67\x9d\x08\xc4\x23\x99\x9b\xcb\x74\xcc\x2b\x99\xf1\xb3\x5e\xe6\x49\x77\xb7\xc6\x71\xa3\xf6\xd3\x38\x28\x2b\x1a\xc4\x82\x42\x31\x41\x61\x46\x24\x94\x2f\x48\x8b\x00\x44\x4e\x3c\xf3\x9e\xbe\x55\x9c\xf1\x34\xef\x7a\x6d\x3e\xe1\xcc\x6f\x2d\xd5\x8a\x72\xd6\xb6\x3a\x57\xbd\xeb\x50\x85\x7c\x68\x49\x85\x73\x9b\x5d\xb3\x19\xc9\x82\xda\x68\x86\xb0\xa6\xbe\x1c\xa9\x5e\x0b\x56\x75\xff\xe5\x9d\xff\xbc\xf6\xec\xc8\xb7\x6e\x5a\xe4\x84\xd4\x5b\x30\xc0\xbb\x99\x9e\xfd\xc8\x26\x80\x27\x36\x68\x74\x39\x2d\x4a\xf1\xf8\x9f\x81\xae\xf0\x23\x43\x05\x90\x48\x71\x5b\x22\x06\xae\x91\xdd\x63\x5f\xa9\x38\xe3\x39\x70\xa0\xca\x9a\xda\x4f\x39\x16\xf8\x2b\xea\x07\x64\x56\x69\x49\x94\xfc\xf3\x19\xe0\x19\xc9\x59\xca\x2f\xf9\x3e\x9e\x6e\x9c\x5e\x72\xa1\xc7\xf7\x69\xc9\x27\x32\x56\x32\x25\xa6\x0f\xe8\x9e\xe7\x8c\x21\x7a\x8d\xfc\x11\xe6\x6f\x22\xd2\xb9\xaf\xe2\x00\xfc\xfd\x27\x21\xfe\x55\x74\x00\x82\x5d\xf7\xc4\xf3\xb6\xf8\xa4\xa8\xe1\xf6\xd5\x2f\xfc\xb3\x4e\xe7\x4b\x48\x3d\x7b\x1f\xc5\x93\xec\x4b\x0f\xe5\x7e\xda\x7a\xfc\xb9\xcf\x1f\x57\x0f\x69\x2f\x9f\x09\xef\x1f\xe4\x6f\xd9\x5d\x61\xda\xb8\x68\x02\x56\x3e\x49\xfb\xd2\x66\xb6\x2e\xff\xae\x09\xc6\x43\xbe\xa1\x54\x27\x79\x95\xf8\x9b\x41\xfb\x86\x02\x7b\x33\xbd\xe7\xb9\x28\xc1\x2d\x4d\x6d\x39\x0c\x21\xc8\x84\x00\x03\x24\xae\x72\x8a\xee\xce\x4f\xb0\x9e\x7e\x1b\xa6\x33\x65\x4d\xac\xce\x66\x5a\xec\xf0\xd2\xcd\xb1\x08\xdd\x86\xce\x70\xe3\x08\x10\xfe\xf1\x3e\xbb\x7c\x65\x09\xb4\x0b\x81\xf5\xd4\x6c\x3a\xe8\x9a\xd9\x2b\x46\x5f\xf4\x42\x25\xdf\xb3\x46\xf3\xf7\x56\xbf\xa9\x78\xaf\xf0\x42\x81\xe1\x99\xf5\xb2\x65\xc7\xe8\xca\x33\x1a\xd2\x29\xea\x91\x00\x27\xe9\x74\x3f\x38\x22\x87\x6a\x47\xfc\x77\xe8\xa0\x78\xf9\xfe\x2f\x9a\x96\x20\x36\xda\x9d\xfa\xbd\x74\x27\xfe\xea\x64\x63\xf4\xf2\xbc\x70\x8e\x81\x2b\x7f\x35\xd6\xed\xec\xb1\xda\xf8\x41\xe7\xdc\xc3\xe3\x9f\x30\x0b\x60\x05\x00\xb7\xce\xdb\x5d\x7c\xcd\x47\x0a\x91\x80\xa3\x04\xbe\x0c\xd0\x53\x3e\xfb\xfc\x8d\x95\x2c\x2f\xe3\x52\xef\xca\xe4\xda\xcc\xf5\x01\x39\xd0\xf3\xb2\x53\xd5\xc7\x00\xc7\x83\xee\x31\x7a\x37\x33\x5c\xb1\x02\x1f\x91\xc5\x0e\x0f\xc4\xdf\xc9\x10\xee\x7b\x8e\xca\xe5\x28\x2e\x1c\xc9\x94\x7c\xa7\x55\x66\xf7\xc9\x0c\x64\x29\xa7\xa4\x3b\x86\xde\x34\x19\x8c\x7d\x97\xe7\x07\x04\xe2\xc1\xd3\x21\x9e\x97\xe5\x12\xb4\xed\x21\x53\xde\x26\x18\x23\x04\xaa\x4f\xf7\x24\x54\x21\x4c\xe4\xb2\xbd\x16\x2d\x72\x26\xfd\xf7\xa4\x42\xed\xe3\x2d\x50\xf7\xde\xd3\xd5\x51\xda\x4f\xd0\xe3\xcd\x43\xb5\xe9\xf5\x97\x88\xa6\x47\x45\xb7\x12\xd6\xf3\xf3\x0c\x39\x92\x98\x7b\xac\x7b\x43\x09\xe8\x75\x9b\xa4\xe1\x6a\xd8\x37\xad\xb8\xcc\x17\xe1\x5f\xeb\x48\x9c\xe1\xbc\xd2\x36\x83\xdd\xb6\x66\x65\xfb\x16\xcc\x08\x6b\xf2\x20\xa9\x8a\xb0\xdd\xb0\x5f\x33\x28\x21\xf5\xd7\xc5\x0d\x25\xeb\x77\x36\x07\x25\x7e\x1c\x40\xc7\xaf\xd6\x11\x51\x54\x98\x42\xff\xab\xd5\x0d\xa4\xd1\x2f\xbf\xcf\x80\xd3\x02\x7d\x3f\xde\xb7\x5f\x04\x8d\xcf\x26\x14\x8e\x1f\xca\xce\x55\x44\x48\xc3\x09\x1f\x54\x01\x84\x27\xcb\x9f\x29\x2c\xd0\x84\x7a\x90\x63\xaa\xc6\xb2\x0b\x79\x53\xfc\x92\x8b\x31\x5a\x49\x3c\xbc\xc0\x4e\xd6\x3b\x83\xa7\x5e\x06\x2d\x3a\xa7\x1f\xbd\x3c\xcc\xad\x20\x58\x10\x8e\x3f\xa2\xf7\xec\x90\x09\x83\xdd\xff\xd0\xd9\xf8\x10\x11\x7b\x44\x64\xf6\x6b\x68\x38\xed\xd1\xb2\x26\x98\x07\xd7\x66\x82\x6f\x05\xab\x1f\x11\x94\x51\xaf\x18\xfd\x5e\x01\x77\xb7\x75\x2e\x17\xe2\xf4\x8b\x98\x96\x61\x8d\x10\x04\xff\x85\xec\x11\x75\x7b\xd2\x6e\xcd\x0c\x92\x81\x25\xf2\x6b\x8c\x59\xcf\xc6\xea\x82\x7a\x14\x55\x77\x1f\x1b\xc9\x25\xa2\xa7\x89\x79\x0a\xf9\xb1\x4d\xc2\x1d\x84\x90\xfc\x86\x21\xbf\x83\x94\xa2\xec\xec\x29\xbe\xa5\x9b\x33\x1f\xf7\x4c\x09\x9f\xff\xdc\xe7\xeb\xe3\x0e\x27\xf3\xfb\xf3\xfb\xc5\xf5\x39\x5c\x15\x6f\x52\xa1\x6a\x2c\x2f\x79\x98\x55\x62\x59\x3f\x5a\x22\x8f\xb7\xaf\xcb\x6f\x6f\x3e\xbf\xf5\x32\xba\x14\x43\x4c\x5a\x9a\xa5\xfc\x0e\x0a\x80\x80\xdc\x50\x86\xd7\xda\x97\xd4\x5b\x84\xce\xd3\xdd\xcf\xd3\xb5\x12\x77\x98\xaf\xee\x87\x89\x81\xf4\x42\x05\xea\x1f\x4e\x31\x91\x31\xc5\xc8\x41\x7f\xdc\x54\x73\xbf\xf5\x12\x14\x08\xa5\xad\xa9\x27\x60\xae\x4d\x59\x95\x81\x48\x57\x15\x15\xb3\x90\x73\xe5\x95\xc6\x72\x1c\x81\x53\x3e\x7a\x3d\xf1\xe5\xcb\x79\xf8\x65\xb1\xbe\xff\xf0\x15\x3a\x2b\x73\x71\x01\xef\xfa\x66\x93\x6f\x77\xb8\xbf\x6a\xcc\x9d\x3d\x63\xae\x7c\x7a\x52\xc5\xb3\xa5\x63\x78\x68\x09\xef\x7a\x3f\x82\x60\x97\xfb\x2d\xdf\x98\x6f\x48\x06\xb0\xda\x29\xf1\xe2\xc0\xdf\x5c\x00\x43\x8a\xbf\x7b\xf4\x5c\xad\x53\xb8\x7b\x21\xf8\x65\x43\xe9\x73\xd4\x7c\xd0\xb3\xc7\xab\xa9\xb2\xd7\xe9\xb7\xb6\xae\x12\xa5\xbd\x03\x15\xd0\xa2\xa3\x97\xd1\x02\xf1\xbf\x2e\x6a\x49\x2e\xee\x2b\x15\xee\xb3\x7a\x70\xb5\x4d\x3f\x92\x75\xa1\xe6\x9e\xda\xce\x04\xcd\x0a\x24\x6e\xfe\x2e\x61\x80\x9b\xb2\xbe\xd2\x8a\xd1\xd1\xa4\xb0\x1b\xd9\x05\x51\xbe\xcb\xc2\xe9\x38\xc2\x63\x05\x21\x23\xb5\xcb\x91\x51\x6d\x3a\xcd\x82\xfc\xb9\x7f\xa0\x7d\x3f\x2c\x73\xbc\xf7\x86\x0b\xdb\x66\xc4\x38\x31\x63\x8a\x2b\x93\x15\xdc\xe4\x52\xed\x05\xe1\xb6\x71\x36\x3b\xdf\x22\x08\xfa\x96\x1d\x7f\x6a\x2d\x09\x90\x7a\x62\xa9\xbe\xa5\xbd\x33\xf9\x6b\x5c\xe7\x87\x31\x5b\xbd\xa1\xc5\x4a\xba\x25\x96\x06\xc8\x4e\x8f\x1b\xa6\x61\x3c\xfa\xef\x05\x28\x5c\xb9\x0f\x37\x47\x70\xe2\x95\x28\x6b\xcc\xb5\x2d\xad\x45\xc5\xed\xb4\x82\x1d\x8a\x95\x13\x55\x5e\x7c\xbd\x26\x8f\xaf\x35\x22\xbe\xcf\x74\x74\xa6\x33\x1e\x8b\xf5\xc8\xa4\xb6\xb3\xe2\x60\x1f\x6c\x0a\x4a\xc6\x0f\x9e\x00\x4a\xd7\x10\xed\xcf\xb3\xb3\xa5\xb5\xf9\x29\xec\xc8\xe3\x70\xfa\x35\xa4\x78\x57\x8e\x3b\x9a\xf2\x44\xee\x9b\x95\x8e\x37\xa0\x06\x7c\x01\x3f\x4b\xaa\x14\x1a\x78\xa5\xa7\x2a\xed\x0e\x08\xbe\xa6\xdc\x16\x9b\x9f\x92\xfd\xcd\x7a\x99\xd6\xcc\x02\x73\x0a\xe9\xa8\x78\xef\x59\x54\x0f\x37\x1e\xe6\x56\x30\x9e\x7b\xbd\xb4\x56\x6f\xb3\x71\x7b\xbb\x8c\xcb\xb2\x84\xb7\xea\xff\xcb\xe9\x57\x03\x5b\x05\x09\xee\xd0\x08\xe5\x07\x95\xe7\xa8\xd9\xa0\x69\xbd\x36\x77\xf8\xb0\xea\xe9\xa5\x30\x58\x3b\xc6\xe6\xeb\x7b\x07\xf9\x0f\xd5\xfa\x20\x57\x40\x7b\x6c\xdb\x4b\x2d\x8b\xdc\x9a\xe8\xeb\x23\x29\x3c\xa1\xb0\x5f\x30\x7f\x2a\x93\x2a\x92\xf4\xcc\x31\xf4\xe7\xdf\x45\x4c\x3c\x00\x7c\xb1\xe3\xad\x8d\xa4\xc2\x61\xcf\x4f\xa5\xed\xd4\x02\xb6\x57\x95\x78\x74\xd9\xfc\xb0\x74\x43\xbc\x50\x42\xef\x80\xb2\xb8\x17\x0c\x7f\xd8\x54\xde\xc6\x47\xd3\x37\x4c\xbc\xfa\x94\x30\xeb\xc6\xbd\xc3\xe4\xa5\xe0\xe2\xf9\xbc\x82\x58\x79\xea\x4d\x3b\x95\x4c\x6d\x56\x46\x4b\x1f\x7f\x43\x8c\x71\xac\xe3\xd4\x98\x67\x0c\xb1\x66\xc0\xfd\x73\x28\x26\x2a\xa5\x1c\x29\x61\x16\x73\x2c\xb1\xc9\x7f\x28\x19\x86\xda\xf8\x3b\x74\xb3\x23\xb6\xa8\xba\xbd\x7d\x99\x53\x8e\xc7\xbd\xdf\xf3\xf3\xd1\xb6\xe1\x91\x07\xbe\xc8\xe9\x62\x7d\x95\x8d\x7c\x71\x7a\xa3\x90\xc8\xbf\x1a\xf7\x4e\xa6\x85\x99\x6f\xc2\x45\x16\x93\x25\x48\xb8\x73\xeb\xef\x3d\x27\x13\x9c\x49\xdc\x76\x63\xf1\x0d\x8a\x87\xc1\xc1\xf2\xe2\x46\x69\xfd\xbf\x39\x48\x83\x3f\xc8\xcc\x06\x4f\x2e\x33\xb9\xf1\x20\xba\xe0\xf7\x5c\xa2\xc0\xef\x50\x9a\x58\x94\xb2\xfc\xe7\x12\xc9\x60\x98\x50\x69\x60\xf1\x5d\xa5\x01\xe7\xb0\x5c\x51\xaf\xe1\xa5\x94\xd7\xbc\xef\x2b\xed\x6c\x96\xaf\x5d\x31\x09\x01\x10\x1f\xfe\x03\xa6\xef\x28\xde\xc0\x0f\xfa\xb2\x0d\x0a\xda\x8d\xfa\x06\x51\x07\x94\x6c\xcd\x4a\x78\x85\x80\xad\xde\xa5\x5f\x00\xed\xbf\x63\xda\x57\xe7\xca\x50\xcc\xc3\x68\x81\x2b\x9d\x55\x68\xd5\xcf\xa0\x2a\xfb\xb7\xc5\xf9\xaa\xe8\x40\xe2\xa5\x2c\xca\xbf\x43\x0e\x9d\xad\xce\x56\xa5\x17\xb0\xd7\x6e\x4a\xff\x5c\x38\xf5\xc4\xbd\x55\x78\xa7\x7a\x72\x38\x1b\x53\xcb\xb3\x63\x3c\x83\x8a\xe8\x14\xbf\x6e\x7c\x5c\x1b\xca\x95\xac\x7f\x34\xba\xc8\xa3\x3f\x85\xa9\x4e\x4b\xcc\x58\x07\x00\x94\xfe\xc8\x22\x9a\xad\xa2\xb3\xde\x42\x9a\x34\x0c\xcd\xa7\x75\x1d\xfb\x26\x1a\x7f\xd4\x9e\x5d\x9a\xa6\x3d\x68\x8c\x8e\x8d\x47\x48\x80\x67\x86\xbd\x3e\x91\x68\x44\xe8\x04\x50\x5d\x81\x9e\x7c\x0f\xa9\xbd\x88\xdf\xe0\x4e\x35\x98\x7a\x30\xbd\x17\xde\x3f\xc4\x27\x38\x11\x60\xf8\xaa\x63\x88\x1d\x27\x1c\xb2\xca\xe8\x48\xb7\x12\x0e\xef\x9f\x3a\x36\x12\x78\x7b\x70\x90\x8a\xf6\x3f\x5d\xaf\xbc\x48\x9b\x4a\xd3\x58\x2e\x34\xef\xc5\x62\xcf\x78\x0e\x67\x05\xf8\x89\x1c\x0d\x1f\xb2\xdb\xca\xc5\x31\xa6\xf2\xfe\x6f\xae\x24\xc4\x4c\x4b\xdf\x3f\x8e\xd8\xb4\xc3\x5e\xe4\xd4\x22\x6f\x7c\xb9\x4b\x31\xcb\xdc\x7c\x62\xdd\x77\x97\xc9\xae\x81\xf5\x9a\xe8\x2d\x3e\x3b\x24\x3a\xb5\x2e\xf3\x40\xfb\xe3\xda\x10\xd6\x8f\xf2\x68\xe5\x56\x4e\xbb\x83\x1b\xa3\x85\xd9\x60\xae\x30\xde\x33\x67\x09\xa1\x42\x19\x84\xbd\xa3\x82\x56\x46\x4d\xd8\xee\x41\xfd\xbb\x0a\xf3\xd7\xe2\xd4\xa0\x97\xb2\x0a\xb5\xcc\x69\xd3\xd4\x99\xcf\x78\xf7\xf8\x0b\x14\x78\x32\xdc\x8e\x21\x9e\x60\x11\xdb\xe2\x0f\x57\xfc\xc2\x90\xdc\x22\x38\x43\x1b\x6b\x1c\xc1\xe9\x98\x64\x49\x67\x2e\x89\xf7\x81\x8b\xa8\x8a\xce\x04\x7b\xf2\x8f\x0f\xa9\x70\x32\x4d\xa9\x06\xde\xf4\x52\xcb\x94\xb5\xc6\x1c\x15\x26\x73\xa1\xa7\xec\x94\xf2\xcd\x46\x89\xf1\xa9\x9a\x7c\xe6\xe3\x6a\x6a\x54\xaa\xfd\xd5\x22\x0c\x7f\xa1\x8d\xb7\x5d\x06\x0f\x6f\xae\x88\x70\xfc\xdb\xf0\x1f\x8b\x7f\x2e\x2a\x1c\xd1\xe3\x3a\x10\x4d\x28\xe8\xe3\x8e\xf6\x4a\xbb\x8e\xfe\xcc\x60\xa2\x15\xe7\x20\x9a\x5a\x49\xe3\x4a\xf6\xfa\xe5\x4b\x05\x20\x84\x69\xa7\xd6\x73\x51\x9b\x6f\xea\x3e\xe6\x93\xbd\x8e\xf3\xb1\xdc\x66\x8a\x2e\x09\x87\x43\xf6\x3f\x6e\xd7\x97\x2c\x44\xa3\xa4\x0c\xb7\x34\x38\xdb\x76\x7f\x47\x6b\xec\xa6\x57\x76\x27\x8b\xd4\x3e\xb3\x31\x5a\x87\xe7\x42\x00\x72\x58\x7e\x15\xb9\x85\x65\x69\xa6\x41\xd4\xef\x7c\x26\x9e\x42\x4c\x57\x2d\xfa\x42\x16\x7b\x71\xd0\x75\xe2\x93\x5f\x83\x87\x21\x24\x26\xf8\xd0\xe8\x12\x5a\x25\xf5\x7a\x03\xeb\xea\x4b\x77\x3d\x27\x2e\x78\x5e\x4b\xad\x26\x9e\x6e\x3e\x47\x77\xa7\x22\x9a\xb9\x48\x3b\xf0\x83\xf0\x53\x2e\x55\xaa\x49\x21\x50\xb2\x59\xfa\x73\x06\x7c\xa8\x73\xbe\x20\xd1\x8e\xe1\x75\x31\xcb\x71\x83\xe2\x9b\x57\x31\xd1\xab\x85\xf5\x1f\xba\x8f\x3f\x72\x2a\xd1\xfc\xb0\xca\xe1\x3e\x7d\x7b\x62\xd5\x10\x73\x92\x17\x2c\x7d\x5d\x9b\xf8\x4b\x5f\xf1\x8d\x34\x62\x90\xcb\xaf\xa3\x2b\xed\x6c\xeb\x70\x7f\x99\x73\x89\x3b\x08\xa3\x41\x52\xb9\x8c\xc3\x02\x7a\x75\xa9\x1f\x52\x1f\x28\xdc\xf9\x8d\x69\xa3\x79\xf7\xef\x40\xf9\xb0\x18\x61\x48\xc3\xa9\x67\x9f\xcf\xe1\xa6\xcf\xf9\xeb\x2e\x25\x22\xf5\x77\xb3\xd6\xaa\xb0\x10\x25\xf0\xd9\x14\x37\x16\x4a\x5d\x8d\x2d\xb9\x88\x75\xb6\x9a\xad\x04\xf6\x5d\xa6\x84\x0f\xbe\xac\x24\x24\x28\x61\x58\xda\xac\x35\xb2\x68\x6f\x9d\x86\xa6\x9a\xe2\xf8\x8c\x25\xda\xf2\x81\xca\x5c\x94\xd1\x96\xf4\x83\x83\xdf\x75\x42\x95\x1d\xa9\xf6\xd4\xcf\x63\xca\xc9\xed\x8c\x46\x4f\x87\x8c\xec\x14\x4f\x7e\x0b\x71\x93\xa0\x2f\xe7\x76\x4f\x8c\x50\x66\x88\x50\x96\x76\x0e\xfd\x13\x68\xcb\x61\x46\x8d\x3f\x0a\x1b\xd0\x5b\x53\xf5\x8d\x64\x07\x58\x15\xdf\x4c\xee\x92\xb1\x69\xe5\xfd\x79\xfa\x37\x1d\x96\xbc\xa7\x17\x97\x13\xf7\xf4\x6d\xef\x13\x15\xb9\x27\x91\xfd\xaf\xde\xc2\x70\xdd\x0c\x2e\x1f\xc3\x7e\xa1\xe0\x43\x78\x13\x62\xd8\x29\x59\x8d\x95\xaa\xfe\x90\x3e\x46\xf3\x06\xde\xc2\x46\xf6\xc2\xd7\xec\x85\x42\xec\xa5\xef\xf0\x0c\xca\xdf\xe7\x0f\x40\x4f\x88\x36\xf1\x92\x3f\x1d\xa6\x79\x1c\xfa\x9f\xe9\xdf\x99\x72\x29\xd2\xdd\xe1\xbe\x9d\x59\x08\xdb\xbc\xef\x21\x9e\xd9\xb3\xb1\x33\xe3\xb0\xf1\x8f\x2e\xcf\xde\x50\x0b\x0f\x4e\x26\x99\xf7\x16\xb5\xf0\x95\x77\x36\xff\x93\xaf\x21\x8e\x70\x3a\x50\xfc\x56\x37\x88\x7e\xb7\xdf\xe3\x73\x9e\x95\x58\xe8\x43\xa7\x1f\x33\x1c\x39\xf6\x01\xd0\x78\xdf\xcd\x42\x75\x7a\x3a\x98\xdd\x82\xbd\x9a\x96\x51\xa1\x00\x3e\x23\x65\xbb\x03\xa1\x0e\x7a\x7e\xa6\xb0\x55\xb5\xc4\xe2\xe5\x8d\x5e\x41\x95\xa4\x28\xc3\x06\xb5\xe3\x4e\x49\x24\x0f\x85\x6f\xf1\x11\xef\xb8\x50\x94\x84\xfc\xab\x41\xb1\x6d\xe0\x20\x47\x4d\xd3\x55\xa0\x8d\xde\xa4\xb3\x75\x45\xa7\xe3\x34\x76\x92\xd6\x02\x50\x15\x02\xcf\x6a\x45\x6b\xaa\xc9\x3f\xae\x94\x02\x03\xea\x14\x57\x06\xf1\x1f\x4a\x49\x28\xc8\xa4\x1a\x82\xa8\x60\xbf\x84\x90\xc5\xad\xbd\xce\x81\xac\x5d\x08\x61\x9c\x1f\xc4\xeb\x8d\xf8\x95\xf9\x41\xff\x64\x68\xc1\xf8\x3f\x25\xc9\x4c\x15\x50\x98\x23\xc7\x77\xc8\x8e\xc3\xe5\xe6\x04\xcc\xd3\xaf\xc3\x92\xc6\xc7\x2c\x46\xb8\x45\xa5\x49\x87\x05\x74\x55\x73\xf7\x36\xa7\xdf\xba\xd1\x37\xea\x9d\xf4\x6f\xbb\xc4\x6d\x24\xc8\x5c\xbd\xc5\xec\x0d\xfd\x45\x2d\xc4\x4d\x43\xbf\x08\x84\x65\x8e\x08\x13\xf3\x28\x0e\x5d\x91\xeb\xee\x1d\xc7\x36\xdc\x58\xf7\xdd\xb1\x9a\x46\x63\xbb\x4b\xbd\x01\x11\x82\x16\x95\x84\x3c\x0e\x54\x9e\x19\x8f\x79\x19\xa7\x28\xe3\x55\xf9\x1e\xc6\x0a\xff\x79\x0e\x60\x72\x29\x5f\xd8\xa4\x03\x2b\xf1\xfc\x75\x06\x5a\xdb\x5c\x5d\x0b\x34\x93\xf5\x9a\x94\xa1\x9f\x63\x79\x73\x4e\xe5\x35\x14\x28\x2b\x7f\xe2\x5a\xef\xcc\x3f\x2f\x84\x40\x99\x29\x0e\x3f\x53\x46\x53\x8c\xb4\xd0\x9b\x18\xb7\xb3\x13\x7f\xd9\xea\x3b\x5f\x48\x1a\x7c\x59\xf0\x1c\xb4\x0a\x21\xd6\x97\x5d\x6c\x54\x97\xb9\x58\x47\x99\x40\x33\xcf\x9b\xef\x14\x14\x54\xd9\x9c\xd2\xab\x56\x88\xf6\x0f\x58\x82\x30\x08\xa8\xc6\xab\x96\xcb\x71\x1c\x20\x99\xce\x41\xbc\x37\x41\x25\xd5\xbc\x3a\x32\x6d\x76\xb4\x8a\x44\x92\x81\x2f\xa7\x32\xbf\x21\xd2\xf1\x85\xa6\x44\x71\x6f\x35\xe1\x2a\x5d\x76\x79\xe3\x95\x09\x25\xbc\xfe\xe2\x09\x76\x32\x03\x4f\xdb\xbb\x62\xa3\xb4\xd2\xbe\x3c\xed\xb0\x5d\xad\xce\x10\x71\xfa\x04\x0a\xf7\xcb\xde\x1f\xae\x35\x97\xcf\xa6\xda\xda\xde\xf7\xdc\xfa\x04\x07\xc7\xc9\x8a\xe3\x8d\x88\xf4\x7e\x7f\x12\x25\x59\xaf\x35\xb1\xc0\x49\xe1\xea\x5a\x4c\x86\xf2\x92\x40\xc5\x75\x57\x56\xd6\x27\x97\x0b\x52\xe1\xdb\x43\xd7\x6f\xdd\x33\x20\xcf\x71\xdf\x30\x43\x6f\xe2\xda\x95\x4f\x21\xcd\x89\xe0\xd4\xf4\x1f\xbe\x5f\x30\x76\x6d\x60\x44\x7a\x0d\x7e\x77\x32\x15\xcd\x93\x10\x7c\x2f\xe6\x3b\x8b\x86\x0e\x51\x08\x8b\x93\xd1\xc7\x5f\xa7\xe9\x63\x2b\xfe\x83\x72\x3a\x25\xb0\x07\x2c\x96\x3e\xfc\x5a\xa0\xbd\x38\xbf\xda\xd3\x2c\xe3\x44\x6d\x0e\xde\xff\xcd\xe2\xbc\x8f\xb5\xbe\x93\xf3\x6b\xdc\xe1\x20\x25\x6d\x71\xce\x3f\xf7\xef\x73\x85\x32\x5e\xee\xc1\xb2\x9f\x92\xee\x69\x5e\x31\x50\xb8\x7e\x14\x37\x62\xc3\xc8\xe4\x08\x09\xeb\x68\x73\xfd\xa5\x7b\xb5\x52\xc8\xce\xef\xe1\x5d\x7b\x31\x54\xd2\xb0\xbb\xdf\xd3\xd8\x65\x69\x2e\x15\x87\x75\x11\xdc\xca\xbd\xf4\x83\x92\x3c\x1e\x2a\x67\xe2\xaf\xa1\x01\x20\x06\x13\xd4\x2d\x33\xb2\x8d\x34\x59\x95\x2f\x30\x24\x44\x84\x41\x40\x28\x53\x05\x2e\x51\xee\xa0\x77\x73\x2a\x35\xf5\xc0\xdc\x87\xde\x77\xe4\x5f\x51\xbf\x3f\x47\xad\x23\x24\xec\x95\x14\xe0\x7a\x94\xde\xcf\x50\xcb\xf8\x87\x4f\x22\x0f\x63\x7f\x1a\x9f\x8a\x79\xc9\x0a\x1c\x89\x16\xc6\x2f\xb7\xbd\x0c\xb6\x1f\xfa\xf9\xaa\x30\xb7\xdf\xd8\x07\xe7\x46\x05\x4e\x0c\x83\xfb\x0c\x9f\xc7\x4a\xe3\x01\xd9\x85\x9d\x06\x41\x51\x22\x86\x71\x3f\xaa\xe9\x9a\x3a\xd9\x36\x2f\xd6\xc2\xdd\xf7\xd7\xe2\xfa\x1c\x39\x9e\x2e\x06\xdf\xaf\x8f\xa5\xa2\x57\xc0\x90\x18\x3a\xfd\x1e\x7a\x6f\x59\x35\x57\x7b\xfd\xbf\x71\x1f\x94\x52\x27\xa9\x79\x05\xc2\x8f\x5c\x0d\x77\x5e\x2e\x37\x7d\xcc\xbc\x4b\x65\xab\x12\xad\x56\xe9\x3b\xeb\x84\x23\x37\x70\x81\x9b\x3c\xb9\x4b\x43\xd0\xb6\x93\xe4\x8d\xa3\x14\x77\x6b\x01\x49\xc8\x84\xc6\xa7\x7d\xf4\x41\x54\x85\x02\x44\x0a\x05\x93\x54\xf5\xe1\xb1\xf7\xb1\x7d\xbb\x80\xe2\x7a\x3a\x3f\x59\xa4\x13\x3d\x03\x44\xe2\x4e\x97\x1a\x12\xb0\x83\x4d\x2d\xde\x22\xa5\xdb\x97\x59\xfb\x9b\x22\xef\xa6\x3c\x47\xa8\x69\x73\xa1\x57\x44\x5d\x97\x94\x64\xdb\x6a\xc3\x11\xed\xcb\xd8\xc1\x7e\x82\x1d\xb4\x7a\x85\x4c\xc5\x0f\x1d\x24\xaa\x42\x5d\x85\x60\xbd\x20\xb8\x2c\xa2\x2f\xc9\xae\x90\x2b\x24\x9c\x8d\xf3\x0f\xd9\x5e\x97\x90\x63\x58\x43\x55\x7c\x6d\xa9\xb1\x88\xda\xc3\xe4\xc7\x31\xa3\x53\xad\xa4\x20\x0b\xcc\xed\x61\x15\x4f\x27\x0e\xfd\x6a\xd4\x67\x00\x6c\x30\x61\xd8\x45\xd7\x9c\xf4\x2a\xa7\x78\x13\x4d\xf6\xd4\x47\x25\x85\x39\x77\x40\xe1\xd2\x2a\xfc\xb2\xec\x27\x6b\x9b\xc6\xd8\x02\x35\x94\x36\x5e\x60\xe4\x9f\x7f\x64\x40\xbd\x04\xbd\x82\xc6\x9b\x7e\x0d\x56\x9c\x6b\x37\x23\x7f\x66\xd3\x68\x26\x88\xf5\xf6\x41\xbe\x11\x12\xa0\x04\xb5\x1b\x0d\xdc\xf3\x53\x78\xb8\xc0\xc4\xa6\x9b\xbf\xaa\x02\xdf\x29\x88\x97\x50\xca\x86\xf3\x5e\x11\x83\x75\x8c\x82\xc8\x7a\x7a\xd8\x19\x3e\x24\x0e\x8b\x61\xfd\x96\xd9\x4d\xe5\x88\x80\x63\xcf\x2c\xe0\x1c\x40\x95\xdf\x44\x86\x41\xb3\x38\x06\xb0\xe6\x35\x21\x06\x9d\xa6\xdc\x9b\xf1\x78\x5d\xca\x7d\x68\x4b\xf2\xb0\xc8\x6a\xb2\x64\xba\x03\x87\xec\xfd\x67\xb4\x29\x2f\x30\xef\x05\xcc\xc4\xfe\xe6\xb3\x41\xba\x9e\xca\x5d\x93\x2b\xa1\x86\x1c\x9c\xc8\x9c\xab\x0d\x70\x43\x00\xfc\x46\xfd\x92\xc2\x17\xb4\xae\xa1\x4f\xea\x7a\xc9\x36\xad\xd3\x57\x81\xc7\xed\x76\xf8\x83\xcb\x49\x65\x2d\xe7\xab\x5f\x4f\x9a\x22\xd0\x12\x98\xc6\xc8\x89\x1b\x5c\x4a\x9f\xc7\x08\x27\x21\x55\x7d\x1a\x84\x52\x46\x0d\x7a\xd3\x61\xe8\x07\xf9\xb3\xf1\x51\x0e\xa5\x1d\x40\x9d\x35\x55\x24\x71\x3a\xf5\xde\xa5\xf4\x23\xae\x9e\x59\x55\xe6\x73\x55\x00\xa0\x26\x85\x7c\x16\x06\x1b\xe1\x65\x2c\xbb\xcf\xee\x11\x0b\x88\x3c\x07\x63\x68\x11\xde\x57\x74\x57\xa2\xd6\xa3\xb8\xfe\xbf\x31\x94\x71\x51\x4c\xc5\x0f\xab\x2b\x8b\x1a\x4b\x2d\xeb\x44\x2c\xba\x30\x39\xfa\x92\x7c\x7e\x8f\x7d\xa9\x1d\x49\x0a\xd7\x8f\x36\x1c\x17\x32\x63\xb1\x9b\xdf\x3b\xa9\x0f\x60\x0e\x0e\xcc\x25\xfa\xb4\x3f\x59\x31\xbb\xf2\x3d\x3e\x03\x6a\xc9\x93\xb4\x4c\x80\xe4\xa9\x3c\x78\x51\xfb\xde\x54\x80\xf0\xd6\xb4\xda\xf2\xef\x87\xb5\xdb\x19\xba\xe7\xcb\xc9\x2f\x0f\x34\x35\xeb\x2e\xfe\x7a\x55\x7a\xda\xaa\x78\xab\xb9\x3a\xb9\xc0\xa6\x51\xf4\x07\xf1\x6e\x8d\x9f\xcc\x5a\x6f\x86\xb6\xbe\xc5\x0d\x13\x26\x6e\xa4\xbb\x5b\x6b\xe7\x5d\xf9\x97\xd9\x47\x11\x0d\xc0\xc5\x00\x1a\x53\x23\x54\xbc\x28\x8a\x4d\x32\x55\x8f\x95\x83\xe2\x77\x01\x9d\xaa\xaf\x29\x14\x2b\xf0\xa4\xab\xf8\xfa\x2b\x14\x0b\xfa\x9a\x98\xe4\xc9\x51\xa8\x2d\x9c\x8c\x29\x21\xeb\x29\x14\x9b\xf4\xbc\x93\xf7\x22\xab\xf2\x4a\x44\xf7\xda\x14\x1f\xf9\x7b\x69\xfd\x2f\x8d\x84\xd7\x9b\x83\x22\x56\x8e\x99\x36\x0a\x86\x1f\x4e\xb5\x31\x4e\x27\x64\x92\x02\x9b\x2b\xf5\xbb\x7f\x85\x36\xad\xe1\x21\x94\xb2\xed\xb6\xf8\x83\xcb\xc9\x2f\xc5\xaf\x56\xcc\xaf\x4b\x6a\xaa\xcf\x85\x4c\xae\x6f\x4b\x30\xe5\xec\x00\x2a\x8a\x77\x2c\x6a\x98\x1c\xff\x13\xe1\xe9\x77\x40\x16\x20\x8f\x4b\x9a\xc7\xb3\xfa\x4d\xd7\x9c\xcd\xf3\x82\x83\x2b\xcc\x14\x91\x4d\x1b\x06\x14\x95\x35\x1c\xb1\xda\xf9\x5d\x8c\x7e\x3d\x71\x3c\x18\x78\x6a\xac\x77\xfb\x12\xa3\x6c\x44\x84\x8b\xa3\x79\xb3\x65\x05\xc7\x47\x48\x7d\x61\x87\x94\x7c\x02\x06\x79\x80\x4d\x78\x5a\x9f\x1d\x85\x00\x85\x4a\x07\xa5\xee\xa0\x11\x65\x7a\xfe\xf8\xf0\x47\x52\xe5\xc7\x17\x82\xef\x47\xc9\x55\x61\x0a\x41\xf4\x30\x66\xc5\xae\x37\x58\xa6\x4c\x3e\x1d\x4e\xc8\x77\xdb\xf0\x84\x55\xda\xbb\xc5\x15\xbb\x97\xa1\x17\x60\x68\x87\x44\xa0\x14\xeb\x8f\xfc\x1f\xb2\x61\xc2\xf3\xf2\x42\xc1\x8b\x41\x55\x5f\x85\x5d\xdc\xbf\x30\x9a\x87\xc4\xfa\x05\x9b\x0b\x83\x37\x49\x1c\x36\xde\x0f\xc5\x0c\xc7\x17\x3a\xfa\xfa\x64\xfa\x94\xa4\x37\xe9\xa3\x1a\xf1\x3b\xfe\x44\xd9\x1e\x19\x7d\x83\x7e\xbe\xa2\x65\x50\x21\x02\xea\x99\x5e\x7a\x8b\xd8\x1c\x96\xe4\x95\x08\xbc\xfd\x2b\x1d\x4c\xdf\xe0\xf7\x08\x60\xf8\x3e\x82\x8c\x05\x7d\x47\x69\x0c\x18\x6a\x58\xc6\x95\x64\xfb\x62\xc6\x37\x76\xe7\xd3\x8a\x35\xc5\xe7\x94\x66\xf6\xb8\x56\xa5\x97\x93\xba\x2c\x2d\x3d\xf1\x36\x32\x64\xcc\xdb\x24\xcc\x64\x57\x5d\x0e\xe7\x08\x2d\x04\x57\xff\xc5\x69\x79\x30\x58\xa0\x35\x3c\xcf\xe6\xf8\x3f\x82\xd9\xc8\x86\x53\x59\xf3\x87\x97\x52\xca\x96\x42\xb4\x05\x49\x03\xb4\x07\xb5\xe0\xd6\x24\x7f\x5b\x09\x8b\x4e\xf7\xcd\x3b\xa4\xee\x9f\xc3\xbd\xaa\xfe\x52\xd3\x64\xa5\x7e\x11\xab\x2d\x91\xe4\x71\xb9\xea\x52\xe0\xaa\xf6\x06\xee\x2e\x09\xf3\x12\xaa\x22\x62\xcf\x31\x8e\x87\x83\xfe\x8c\xf2\x95\x22\x6d\x56\x96\x7e\xbf\x13\xa3\x75\x2c\x2c\x16\x7d\xb5\x96\xc7\x35\x16\x5d\x23\xff\x50\x5b\x37\x90\xe1\x36\x19\xa0\x9b\x18\xbb\x83\xff\x6c\x70\x4d\xf8\x87\xfb\x19\xc8\x37\x8d\x98\x50\xc0\x9e\x80\x6b\xa2\xaa\x61\x50\x24\x98\xed\x91\xb4\x73\xfc\x07\x27\xcb\x77\xe3\xe3\xe3\x8b\xe3\x56\xd4\xba\x71\x97\xc4\x1e\x41\x69\x96\xb9\xb4\xf4\xa2\xe3\x5d\x5d\x62\xdf\x8b\x07\xc2\xc3\x43\x2f\x41\x84\x07\x54\x54\xe4\x3b\x34\xe4\xa6\x87\x76\x87\x62\xde\xdc\xac\x56\x77\xbb\xae\x5f\x36\xc7\x29\x88\x8a\xa7\xdf\x72\xba\x2f\x42\xad\x95\x89\xa5\xc4\x06\x3f\x22\x91\x8c\x97\x09\x6e\xbb\x32\xe5\x98\xea\x6d\xbf\x87\x8d\xca\xfb\x59\xbf\xa9\xf9\x0d\x4d\x99\x88\x87\xf4\x1e\xb5\x3c\x36\x5a\xea\xc5\x13\xfc\xc5\x69\x39\xbd\x70\x99\x65\x86\xc7\x00\x12\x61\xe1\x94\x70\xbc\x18\xa6\xcb\x2d\x61\x50\x49\xbb\x94\x4f\x29\xa8\xf3\x6c\xb7\x26\xb8\xb6\xf1\xfd\x75\x75\xba\x4b\xa1\x06\x5e\xb8\xdc\x1b\x3c\x60\x07\xc7\x20\x1b\xae\x2e\x07\xd0\x41\x43\x51\x78\x75\x05\xa7\x7d\xc8\x9e\xe5\xb9\x17\x8d\xcf\xe6\xb1\x3d\x8a\x32\x70\xc9\x91\x5e\x1f\xe7\xa4\xfa\xad\xf2\x36\x44\x0c\xe4\xba\x8a\x5d\xf5\xed\x65\x99\x6b\xeb\xf7\x96\x01\x80\x14\x70\x01\x54\x01\x14\x36\xc0\x7a\xdf\xc2\x4d\xe1\x77\x1f\xb7\x38\xe0\x58\x98\x62\x3e\xb4\x97\x34\x84\x85\xcc\xf6\x8e\x3a\xf7\xbf\xf2\x6f\x75\x39\x2b\xdb\x93\x29\x27\xfa\xe9\x60\x6d\xaa\xc8\x52\x91\x80\xa5\x9c\x24\x47\x82\xf7\x93\xa1\x37\xea\x54\x2d\xdc\x8f\xc4\xe5\xcf\x75\x7b\x26\xc3\xd5\x75\x4b\xb3\x94\xb8\xa4\x4d\xef\xb4\x69\x83\x4d\x91\x48\x25\x10\xf5\xf5\x39\x27\x3d\x9d\xd9\xf5\x8b\x36\xed\xf1\x52\xa3\xb2\xa7\x82\x3a\x49\x73\xe7\x29\xfd\x0a\xec\x2c\x38\x71\x41\x6a\xa0\xf0\x10\x19\xd8\xeb\x5e\x7b\x04\xc0\x28\xd7\xc1\x06\x11\x27\x2d\xed\x37\x6f\x32\x85\xc8\xea\x63\x5f\x8e\x76\x49\xdf\x9a\xce\xe2\x3f\x16\x8e\xcb\xe8\xf8\xf6\xac\xa3\x9e\x2e\xdc\xb1\x48\xfc\x09\xd0\x25\xee\x8d\x75\x90\x26\x7d\x20\x71\x43\x93\xb0\xea\x2b\x1b\x82\x07\xe0\x44\x9b\xe4\x07\x26\x7d\xfa\xb2\xa1\xf3\x6c\xae\xcf\x45\xc3\x70\xa8\x51\xa1\x03\x6a\x9d\xcb\x11\x26\x87\xb0\x58\x61\xcf\xb4\x2f\xca\xb4\x28\x6a\xd6\xaa\x08\x3c\x71\x58\x9a\x2f\x7a\x8a\x2c\xd1\x9f\xe5\x4e\x72\x4b\xae\xbe\x7f\x45\x73\x1b\xe9\x15\x35\xdc\xe2\x76\x21\xed\x0d\xa8\x13\x64\xfc\xb3\x68\xc9\x1b\xe6\xab\x2a\x70\x79\xa5\x05\x46\x29\x64\x5a\x18\x5c\x2c\x9c\x17\xb6\x3e\x1c\xc7\xc1\x8b\xf1\x13\xb4\x9f\x0a\xf9\x48\xc0\xb2\x23\x89\x9b\xc1\xf2\x91\x2c\x54\x0f\x48\x79\x54\x17\x8d\x8a\x0f\xcd\xd3\xfb\x1d\xb8\x76\x38\xfb\x81\x6f\x78\x59\x60\x97\x70\x43\x99\x23\xe2\xed\xda\xd0\x8f\xfe\x8f\xf7\xab\xe8\x7b\xa1\x43\xd6\xe0\x22\x77\xdf\x9a\x19\x6d\x05\xaa\xc8\x8d\x17\x69\x9b\x84\x69\xba\x8a\x28\x7a\x3c\x39\x24\xca\x43\xfb\xb6\xd3\x9e\xb2\x59\xbd\xf6\x2e\xab\x2b\xdc\x5f\xb5\x36\x50\x41\x7f\x4d\x69\x7b\xd1\x97\x44\x00\xa5\xd6\x95\x16\x7f\x2e\xa1\x0d\x5e\x80\x5e\x12\x55\x4c\x2b\xb2\x3f\xfb\x07\xa0\xe8\xf0\x28\x69\x48\x4b\xba\xc2\xf3\x69\x2d\xef\x0c\xc1\xe9\xec\x29\xf9\x85\xe9\xec\xe4\xed\x50\xe0\x48\xd9\x93\x01\x9a\x7f\x84\xbd\x33\x5f\x12\xa3\x99\xc6\x60\xa4\xcf\xd0\x38\x79\x5c\x6d\x14\xa9\xe1\xea\x00\x86\x6b\x33\x88\xf9\x8c\x8f\xcf\x65\xe1\x78\x0b\x3b\x0e\x6b\x77\x67\x6c\x54\x6d\xf4\xab\xfe\xb4\x25\x0c\x1d\xda\xe9\xab\x29\xf4\xbb\x5c\xe3\x28\x19\x4e\xf7\x17\x04\x82\x49\x75\x9e\x5f\xe0\x20\x42\x48\x30\x1f\xb2\xa1\xe0\x50\xd1\x57\xd6\x45\xa6\x4f\x25\xd3\x3e\xa7\x8d\x26\xc2\x69\xf0\x43\xc5\x69\xca\x52\x29\x04\x0d\x42\xe0\xe9\x3a\x83\xe9\x5a\x02\x9f\xb1\x00\xd5\x7c\x88\xd6\x86\xe6\x24\x56\x61\x51\x0a\x6b\x8a\x02\xb1\x6a\x2f\x36\xf6\xd0\x57\x42\x51\x69\xcf\xca\x3a\x29\xb7\xfa\x4c\x15\x0e\x45\xf2\x45\x3f\x2f\x1a\xae\xa3\x7a\x58\xe8\x61\x88\x7c\x61\xc2\xcc\x78\x54\x91\x88\x26\x5e\xfa\x95\x22\x6f\xda\xf1\x76\x27\x97\xc3\x34\xfa\x40\xcc\x46\xc4\xa1\x39\x5f\xdb\x76\x01\x23\xda\xf6\x85\xa2\x66\xdf\xc1\x9a\x06\xb1\x08\xdd\xd5\xe2\x9b\x31\x28\x8f\xa3\x48\x48\xf1\x8c\xd8\xac\x30\x09\x5c\x7f\xa2\xbf\x5b\xf4\x96\xf3\xbc\xec\x31\x9f\xdf\xb3\xd7\xf4\xf0\x12\x7e\x9e\xc0\x70\xe9\x31\x48\x14\xbc\x74\xf8\xce\x11\x3e\x2e\xff\xe6\x87\x02\x6a\xdd\x20\x3b\x95\x52\xe8\x0c\x1f\x55\x4f\xac\x09\x42\x90\x43\x12\x8a\xa0\x9b\xec\xf4\xe2\x65\x5f\x63\xa7\x15\xf4\xf0\x7e\xef\x29\x4b\x45\x98\x88\xee\x38\x7e\x60\x10\x5a\x7f\x58\x03\xc3\x1d\xea\xb3\x22\x1a\x32\x5b\x84\x3a\x85\xc5\x5e\x97\x7d\x29\x23\x6d\xd5\x76\x53\x13\xc9\xff\xaa\xdd\xbc\xb6\x2c\x15\x2e\xd1\xde\x1d\x0c\xa0\xd1\x5c\x5e\x6f\x00\xf1\x98\x03\xd3\x1e\x7f\x97\xac\xcc\x26\xc2\xdc\xb7\x80\x2a\x9e\xed\x94\x96\x51\xbd\xab\xb5\xb8\x47\xc2\x31\x11\x9d\xe9\x30\xdb\x59\x6d\x58\x77\xef\x93\x4f\xcc\x23\x26\x0c\x9f\xe5\x6c\xb4\xa8\x99\x0a\x8e\x34\x35\x81\xb3\x12\x54\x86\xbf\xd1\xdb\xc2\x53\x92\x92\xf7\x89\xda\x0d\xbc\x25\xd9\x6e\x7a\x5a\xbd\x55\xf5\x98\x6d\x6f\x18\xc2\x4b\xe8\x75\xf3\x52\xb6\xf8\xf3\xe3\x11\x87\x33\xf7\x98\x66\x3c\xf9\x79\x97\x98\xa7\xd6\x4c\x07\xd5\x0d\xa1\x87\x57\x0d\xda\xe2\x4f\x2b\x68\xda\x8f\x3f\x22\xa4\x61\xfb\x32\xdd\x3e\x5a\x87\x67\xd8\x09\x85\x5a\x7c\x20\x55\xa6\x80\x2e\xee\xf8\xfd\x48\xa6\x1d\x57\x8b\xee\xa2\x1c\x53\x25\x00\x82\x1c\x8a\x03\xb9\xb3\xfc\x15\x11\x47\xd7\xc6\xf7\xd8\xbd\x65\xd4\x4a\x09\x6f\x3a\x8b\xb9\x51\xfc\x45\xba\x94\x59\xf1\xb0\xcd\x2e\x74\x77\xeb\x5b\x71\x3b\xfe\xb4\x93\x6e\xde\x7e\x8d\xc1\xc8\x8a\x81\x2d\x35\x4d\xd3\x99\x8f\xb3\x3a\x5a\xd3\x86\xcf\x6f\xb8\xc0\x90\x8f\x5b\x61\x25\xad\x08\xa0\x54\xcd\x44\x77\x7e\xcd\x7c\xcd\x85\xff\xab\xc0\x5c\x90\xa3\xc7\x55\x57\xa5\xc1\x25\xba\x26\x71\x38\xf0\xe0\x42\xba\x2c\xe7\x54\x25\x92\xd7\x8f\xfc\xc6\x50\xc4\x77\xbe\x48\x15\x80\x43\x5d\x52\xc3\x67\x53\xd8\x97\x64\x84\x0e\xfa\x88\x48\xd7\x71\x04\xd2\xc2\x2e\x13\xe5\x78\x03\x47\xc3\x2f\x01\x75\xed\x76\x60\xd8\x01\x8a\xbb\xe0\xaf\x67\x31\x60\x6d\x56\x9a\x0f\x0d\xab\xeb\x56\xde\xeb\x88\xd6\xd4\xf6\x8e\xea\x97\xe0\x92\xe2\x9a\x68\xf2\x18\x95\x79\x95\xea\x36\x96\xc5\x3f\x5f\x68\x4d\x6b\x11\xf8\x3b\xf0\xcf\x0a\xd5\x43\x4f\x36\x3c\x57\xc5\xd1\xa8\x6c\x9b\x1b\xd9\x36\xcf\xda\x7a\xf8\xb1\xb0\xf9\x19\x34\x50\x91\x9b\xf8\x33\x3a\xf6\x8a\xc2\x51\x9e\x7a\x70\x2a\xf2\x60\xb2\x0c\x0b\x51\x22\x52\x88\x25\x53\x72\xbb\xf0\xfa\x6c\xaa\x3e\x32\x2c\xc0\x33\xae\xed\x97\x76\x9b\x95\x05\xd4\xac\x2c\xe6\x8c\x46\xaa\x8b\x36\xe3\x8f\x73\xfa\x74\x32\x71\x89\x36\x65\x2b\x6d\xc4\x4c\xa8\xa3\x5d\xf8\x8f\x57\xdf\x4b\xef\x58\x48\x4e\x23\x5d\x0f\x5a\xa2\xcc\x76\x39\x0a\xa4\xcd\x66\xa8\x55\xb1\x80\xc1\x15\x4d\xe3\xb2\xa7\x65\xf9\xef\x1b\x77\x41\x00\xa0\x2a\xef\x06\x57\x5d\xee\xff\x94\x56\x2d\x30\x1a\x42\xe7\x40\x43\x88\x05\x87\xba\x10\x13\x6e\x2b\x53\x0d\x12\x53\x4e\xc5\xb2\x37\x92\x7c\x7f\xec\xd1\xfe\xf2\x29\x2e\x6d\xec\xd1\x94\x19\x64\xd8\xcb\xe8\x79\x06\x78\x2b\x3d\x0a\xa1\xfe\x0e\x7e\x40\x2d\xf7\xf4\x58\x21\xb9\xe0\xf2\xf9\xd2\xe5\xec\x43\x19\xd1\x16\x3d\x36\x42\xdd\x70\x77\xa9\xb2\x1d\xe2\xa6\x1c\x60\x54\xb6\xeb\xc1\x2b\xde\x14\xd5\x43\x66\x85\x07\x32\x91\x02\xcf\x24\x5d\xbd\x6f\x5a\xd9\xef\x58\xe1\x01\x00\x13\x4a\x00\x19\xf5\xcd\x34\x54\x44\x94\x0b\x82\x13\x97\xac\xcc\xeb\x47\x43\xf8\x2a\x48\xde\x22\x97\x7b\x01\xfa\x7d\x36\x83\xaf\xe4\xdf\xc7\xbb\x16\xb9\x1b\x61\xaf\xb6\x82\x83\x87\xa3\x54\x16\x0b\xdc\x21\x43\x20\x7b\x1d\xc4\xa8\x95\xaf\x0e\x42\x90\x42\x26\x72\xe2\x6b\xeb\x27\xd4\xd3\x24\x0e\x2f\xc2\xb7\x40\x71\x52\x6b\x64\x1f\x05\x15\x86\xb6\x52\x14\x88\xbc\xb4\x4c\x8c\xdb\xdc\xce\xc0\x70\xa8\x8b\x1a\x63\x71\x10\x2e\x55\x1b\x52\x86\x67\xf0\x88\x89\xaa\x63\x42\xd1\x23\xa1\x1d\xff\x8a\xea\xa9\x6b\xf7\x29\x04\xfd\xd4\x3d\xc7\x7d\x04\x92\xb0\x22\x96\xe7\x4c\x87\xf3\xaa\x9b\x00\xc6\x3d\x9a\x0f\x46\x31\xe3\x59\x7b\x21\x6a\xec\x04\xcc\x76\x1b\xb1\xc0\x6e\x9d\x80\x14\x49\x5b\xce\xe9\x30\x11\x9f\x1f\x36\x4e\xec\x47\xc2\x48\x56\x00\x06\x69\x90\x93\xf9\x20\x47\x6e\x5c\xc3\x4c\xd5\x9c\x1d\x77\xf0\xce\x90\x91\xa5\x06\x4c\x53\xf1\x52\x47\xbd\xd2\x44\xd4\x86\x57\x9e\x9f\x69\xe8\x3c\xa6\x75\x4b\x88\x82\x13\x00\xd0\x75\x58\x34\x5f\x40\x8c\x20\x2d\x12\xd5\xb2\xc9\x33\x7d\xdd\xc8\x92\xce\xd8\x60\x10\x00\x24\x30\xca\x20\x36\xc6\x59\x98\xb6\x2a\xe0\xbe\x5c\xe5\xe2\x14\x30\x2f\x10\x0c\xd2\x60\x8d\x53\x1c\x04\xc2\xf9\xfd\x7b\x0d\x87\xc7\xa6\xfb\x99\x44\x64\xdb\x41\xce\xcb\x40\x33\x2f\xc8\xd8\x52\x4c\xc0\xa5\xd7\xec\x81\xf0\x7a\x67\xb8\x5d\x1d\xab\x64\x35\xa7\x53\xc2\x9d\x15\x22\x8f\x4a\x72\xe6\x79\xbe\x39\xc4\x6d\xa3\x89\x28\xac\xed\xe1\x24\xf5\xfc\x9e\x6d\xef\x31\x25\x3d\x51\xe5\x43\x1a\x66\x70\x7f\xb7\xcd\xdb\xc0\x85\x06\xc9\x62\xc6\x3f\xb7\xf5\x9a\x0c\xfb\xb7\xb7\x11\xcb\x3e\xfe\x1b\x98\x79\xab\xbc\xb5\x0c\xf6\x88\x23\x83\x8c\x4d\x99\xc8\xf6\x56\x41\xc2\x9e\xfa\xd2\x37\x0d\xe7\xc4\xc3\xcb\x4c\x05\xd0\x6f\xf9\xb9\x30\x97\xe6\xad\x09\xb3\xb1\x25\xae\x7a\xa2\xc3\xe7\x89\xee\xe3\x2c\xdf\x62\xfc\x62\x94\x41\xbd\xc2\xff\x6a\x9e\x91\xaf\x05\xff\x66\xb2\x22\x78\xfd\xe6\xf7\xe7\xa5\x3e\x94\x69\xae\x4d\xb3\x1e\x79\x20\xfc\x4f\x30\xa9\x80\x26\xd6\x8d\x8a\x94\x3f\x4d\x43\xe5\x8e\xc5\xab\xc0\x2c\x83\x43\xa1\x40\x93\xa4\x83\xf3\x4c\x31\x60\x75\x39\x5c\x1b\x3c\xb1\x9a\xcd\x64\x46\xf3\x7a\x3f\x80\x42\xfb\xd9\x5c\xc9\xa1\x6f\xc5\x11\x6e\xd1\xa3\xfd\x08\xf9\x36\xf9\x3c\x24\x09\xf4\xa3\xcb\x01\xe6\x21\x6b\xab\x08\xe3\x27\xb8\x65\x8f\xb4\x4a\xb3\x26\x50\xbe\x08\xba\x60\xc2\x51\x1e\xc7\xc5\x45\x46\x5d\x9b\x2e\x90\xbf\x1c\xb2\x18\xef\xc8\x16\x05\x80\x5e\xec\x80\xef\xc9\xac\xfc\xe1\xe9\x7e\x09\xc7\xb4\x5c\x82\x93\x3a\xf9\x8c\x31\xcd\x43\x1a\x48\x46\x56\x69\xd9\xeb\xbe\x88\xb0\xe3\xac\xc5\x14\x0f\x80\xe5\xeb\xf7\x63\xdf\xf2\x19\x5a\x00\x19\xf5\xf6\xd1\xd3\xb3\xd9\xf5\xce\xda\xd9\x88\x7a\xea\x23\xcf\xb7\xf0\xbc\xf4\x77\xe2\x7c\xd3\xbb\x37\xdf\xc6\xeb\x9f\x01\x00\x0a\x2f\x29\x0e\xb8\xbd\x15\xc6\x04\x94\xe0\xe3\x2a\x07\x3d\x7e\x82\xf3\x06\x06\x41\x32\xf7\x31\x6a\x4f\xc9\x47\xb0\xde\x14\x2a\xe1\xd1\x2f\xde\x17\xd7\xe9\xf0\xdd\xb3\xc4\x97\x71\x2b\xdd\x44\xbc\x7e\xa4\x19\xd8\x3a\xa3\xbd\xdc\xa0\x3d\xb9\xcc\xa1\xef\x47\xae\xdc\xa8\x88\x3d\xa2\x4f\x43\xd9\x02\x40\x03\xe1\x0c\x24\x44\xf2\xe9\x5f\xfe\xba\x29\xce\xd5\xa4\x4e\xc9\x8c\x62\x01\x65\x96\x38\x71\x8b\x29\x97\xdd\x2e\x1a\xde\xd2\xc4\xbf\x12\x8e\x6a\x52\xf1\xc7\xb3\x86\x97\xd9\x9f\x5d\xbe\x52\x18\x92\x19\x84\xa2\x6d\xdf\x5c\x7a\x82\x96\x7c\x2f\x0d\x03\x69\x2d\x21\xc8\xa8\x51\x57\x22\x1c\x31\xa2\xad\x71\x37\xae\xea\xb1\x25\xa8\x29\xca\x9a\x15\x41\x90\xaf\xe9\xa6\x5c\xc3\xe1\xbe\xff\x9d\x78\xa4\x33\x7b\xb9\x78\x1c\x11\x90\x5f\x98\xee\xa5\xb1\xd5\x26\x3a\x70\x63\x21\x1f\x72\xd9\xd2\xc3\x03\x04\xc2\x4f\xfb\x9a\x0e\x5b\xdf\x1e\x2c\x36\xc9\x92\x5c\x6c\xc4\xbc\xec\x79\xb9\x6a\x67\x1a\x5a\x93\x46\xc0\x5d\x23\xf2\x46\x2d\xdd\xda\x02\xa1\xa5\xda\xab\x9d\x34\x67\x3b\xaa\xed\xa8\xac\xef\x88\x82\x49\x47\x89\xc6\xad\x3b\x35\xad\xf8\xed\xb0\x77\x06\xbb\x81\x50\x0d\x00\x34\x70\x80\x9a\x4d\x46\xc2\x48\xf8\xd5\x8e\x68\xef\x51\xde\x4f\x2c\xfc\x00\x23\x66\x6a\x30\x40\xa9\x4a\x04\x00\xcd\x49\x1d\x76\x22\xc2\x87\x1d\x7a\x4a\x98\xbe\x09\x2f\x10\xe3\x4b\xed\xa4\x5d\x0f\x87\xb8\x08\x5a\xff\xea\x29\x5b\x28\x7d\x17\x0f\x82\xd5\xf3\x0d\xf1\xff\x57\x79\x84\x57\xea\x8d\x76\x62\x64\x6b\xfb\xc6\x97\x1f\xee\x58\xbd\x14\x46\x88\x39\x68\xfe\x82\xcb\xb5\x80\xc5\xc3\x48\x08\x5b\x26\x4e\x97\x07\xb3\xc7\x48\x19\xda\x5b\x4f\xf3\xd1\xe8\xa7\x9e\x3d\xfb\xa8\x10\x4a\x2f\xf7\x1d\x4f\xdd\xaf\x71\xc5\xe7\x80\x8d\xf7\x0c\x2c\x25\x06\x02\xea\x19\x00\x64\x94\x30\x9d\xe5\xdd\x5a\xd1\xfd\x15\x94\xe2\x2d\xff\x47\x45\x2f\x9f\x84\x2f\xf0\x3b\x6f\xd7\x43\xe2\x74\xd2\xbb\x79\x1b\x25\xe6\x9b\x1b\x65\x5a\xf3\x96\xcf\x5d\xe1\x98\xfc\x79\x43\x47\xf6\x0c\x34\x65\x3f\xe7\x79\x93\xc7\xf7\x81\x64\x4d\x12\xac\xd7\x93\x20\xad\x6d\x28\x35\x0e\xd6\xfb\x77\xd0\x40\x78\x55\xe7\x7f\x78\xde\x07\xaf\x8e\xbd\xe9\x10\xd3\xef\x5a\xcd\x76\x4a\x99\x12\xdb\xad\x48\xab\x99\x81\x62\x94\x84\x7e\xcb\x60\x4b\x0f\x1b\x78\xc7\xe7\xf8\xe7\x7d\xfd\x5a\x3d\x1f\xe1\x8e\x4b\x18\x79\xfc\x38\xe0\x37\xe6\x18\x14\xf3\x62\xed\xa5\x6b\x4d\xc1\xe2\x98\xd0\xa0\xd2\x95\x98\x08\x67\x10\x1e\x5a\x0b\x52\x20\xa6\xeb\x24\xfe\xcd\x13\x84\xb6\x05\xa7\x53\x00\xc8\xa8\x44\x33\xd4\x6a\x64\xd9\x2e\xf9\x36\x05\xf0\x14\xc8\x97\x41\xb8\xf7\x9b\x85\x6c\xa8\x2d\x9e\x15\x64\x38\x17\xb2\x05\x5a\x2b\xc2\x04\x4c\x78\x77\xc9\xa1\xc6\xae\xef\x52\x01\x60\x20\x4f\xd0\x84\x1e\x0c\x7f\x82\x13\x1a\xf9\xcb\x1c\x81\xd7\xae\x9d\x3c\xe7\xb5\xa4\x56\xda\x39\x51\x1a\x85\x37\x0e\xe9\xf5\x52\xf4\xab\xfd\x71\x49\xd4\x24\x02\x1e\x9b\xb3\x00\x03\x61\x00\x04\x69\xf9\x19\xb2\x46\x6b\x7c\x7c\xf9\xe2\x2e\xbd\x09\x3d\x2c\x12\x56\x63\x34\xfe\x4d\x90\xa3\xe7\x84\xe0\xcb\xd4\x79\xd3\xed\xd4\x5b\xee\x7d\xab\x25\x9f\x87\x3f\x3e\xfb\x1f\x67\x7d\x56\x95\x67\x3d\x1f\x86\xa2\x3f\xed\x79\x4d\xbe\x33\xb2\xb1\xb1\x9c\xd2\xe2\x67\x48\x67\xcf\x43\xf8\x32\x77\x6d\xba\x7e\xe5\xf0\x97\xc3\x23\x18\xe8\x4f\x11\xd9\x61\x6c\x37\x95\x0e\x10\xdd\x26\x1b\x76\x26\xaa\x7a\x58\x45\x4e\x79\xd7\x8f\x69\x1a\x4f\x81\x93\x7e\x1e\xb9\xa7\xe1\x83\x11\x8f\xd2\x96\x7c\x56\x47\x6e\x86\x69\x39\x5f\x47\xf6\xc7\x1f\x76\xca\xd7\x33\x9c\xe1\x04\x45\x04\x6e\xbe\x16\xc6\x46\x46\xcd\x9a\x4a\xfd\xc0\x1c\xf7\x19\x13\xff\x77\x8b\xb3\x7b\x5a\xbe\x1b\x0a\x86\xfe\x05\x26\x1c\x8e\xbb\x29\x0b\xda\x10\x5d\xb3\xc0\x62\x98\x7c\x25\x04\xf5\x67\xad\x41\x1d\x1f\x99\xde\x5b\xb0\x70\x92\xe0\xf3\x97\xfd\x2f\x72\x90\x50\xfc\x93\x9e\x9b\xb8\x7f\xb9\x39\x2d\xbf\xdb\x41\xfb\x57\xc3\xaf\xda\xe6\x1b\x8b\x7b\xbb\x36\x97\x22\xdc\xe7\xef\x98\xff\x82\x00\x39\x25\x1c\x45\x0e\xa2\x62\x79\x70\x21\x7d\x68\xe5\xdc\x84\xc3\x3b\xf1\xe4\x9e\xc7\x01\x8b\xc9\x8c\x8a\x1b\xd9\x08\xd0\xab\x57\x0a\x43\xcc\x67\x2c\x58\x3d\x7c\xef\xb6\x14\xa2\xe9\xa1\xbc\xfa\xd9\xc5\x77\x31\xda\x77\xaf\x81\x6d\x41\x76\x99\x9d\xfd\xbc\x6b\x41\xe3\xc5\xc1\x3b\x0a\x41\xf6\x4d\xda\xd8\x0f\x1b\x1e\x9c\x69\xbe\x3a\x1b\x67\xd2\xcc\x7f\xc8\xd9\xe5\xbf\x03\xdb\x10\xc4\x1e\x8d\x3b\xf8\x57\x3a\x7a\x9d\x1c\x59\xba\x93\xd2\xfa\xfe\xe6\xdf\xb3\x4f\xb2\x9f\xac\x1a\x0a\x16\x8d\xca\x76\x64\x3a\xb4\x3c\xbb\x56\x4a\x8b\x42\xb7\xdd\x01\xc2\x23\xe6\xe1\xae\x66\x91\x97\x20\x60\xe4\x07\x01\x8f\x1c\x90\x0f\xa4\xcf\x15\xc2\x8a\x94\xec\x0b\xac\x39\xa6\x73\x2b\x90\xaa\x9e\x65\x8a\x24\x1a\x44\xac\x62\x7d\x57\x6d\xc5\xcf\x9a\xb1\x5b\xe8\xe1\x67\x41\x67\x3c\x7b\xb4\x52\x10\xa4\x65\x24\x9d\x03\x26\xbf\xc8\x58\xd0\x37\xe9\xd3\x96\xcd\x43\xb7\x60\x5d\x55\xdb\xa7\x9a\x52\x4c\x7f\x4a\x91\x8f\xf1\xc6\x3a\x36\xbb\xfc\x93\x9e\xb7\xef\x58\x20\x28\x35\x79\xfc\xd7\x79\x1e\x55\x34\x4d\x75\x13\xea\x69\x6d\x7a\xd3\x5a\x40\x7e\x7c\x49\x7b\x8c\x79\xb5\xf9\x9e\x2e\x05\xe8\x87\x34\x00\x10\x3a\x90\xb8\xa5\x10\x5a\x43\x34\xf5\x6d\x6c\xeb\xce\x50\x9b\x2c\x9f\xf6\x87\xc1\x20\x93\xb0\x74\xec\x88\xf1\xfb\x2f\x6f\x87\x24\xe5\x49\x08\xb0\x4c\x9d\xe1\x10\x64\x6e\x3c\x88\x03\xd3\xaa\x85\xd9\xaf\xac\x38\xd9\x97\xed\x3e\x5c\xe4\x7a\xe6\xaf\xe9\x14\xeb\x5f\x8c\xef\xf5\x39\x45\x29\x34\x49\x55\x9e\x97\x3d\x6f\x58\x97\xc6\xdb\xb7\xa0\x84\xdc\x85\xab\x68\x7f\xab\x59\xaf\xdd\xdc\xd3\x1e\x2b\x71\xa3\xc1\x23\x13\x6c\x12\x94\x04\xf8\xd2\x52\xca\xc6\xfd\x55\x90\x34\xee\x17\xf9\x10\x01\x24\x6e\x9f\x4b\x10\x68\x92\x48\xae\x49\x79\x90\x1d\xcf\x22\xa7\xca\xde\xb8\xb0\x02\x6f\x21\x0c\x50\x5e\xf7\xf0\xed\x0b\x41\xa0\xdd\xd3\x79\x59\x0f\x73\x13\x73\x77\x58\xca\x5f\x23\xf1\x0a\xec\x15\xd9\x7e\x7d\xe6\x9b\x81\x5e\x3f\x43\xb5\x6a\x3a\xc5\xee\x11\xd4\xea\x2d\xf6\x7a\xe3\x8a\xc7\x30\x74\x5f\x5b\x69\x41\x14\x17\x50\x8f\xd9\x1e\x2d\x50\xe0\x3b\x91\x23\x5d\x4b\xdf\x73\xd5\x4d\xe8\xb3\xe7\x69\xcc\x32\xd7\x7b\x67\xc5\xe2\xa1\xc7\x85\x4a\xc4\xf4\xdc\xc4\xd7\x34\x6f\x46\xec\xee\x2a\x84\x60\x81\x70\x8d\xdf\x40\x1d\xc6\x59\x99\xc2\x2d\x02\xc3\xd1\x94\xf8\xcc\x51\x62\x10\x53\xa5\xae\x7f\x2f\x26\x1d\xe5\x2e\xb4\x45\x6d\x04\x41\x4c\x0a\xb5\xa4\x9e\xcf\x44\x74\xc7\xeb\x2d\xf7\x7b\x37\x95\xd2\x67\x7e\x45\x39\x7f\xa7\x4d\xee\x6e\xf0\xf8\x0b\x36\x41\xf0\x9a\xec\xc6\x23\x54\x88\xff\xda\x2a\xb5\xa5\x9e\xc7\x5a\xf0\xce\xbe\x97\x19\x86\xc4\x49\xe9\x60\x57\x40\xdb\xb3\x4a\x32\xbd\x01\x16\xdd\x82\x7a\x4e\x18\x32\xaa\x80\xd1\xf4\x9b\x87\xdb\x63\xa2\x6f\x17\x94\x65\xfb\x96\x0e\xbe\xee\x7c\x97\x5f\x08\x6a\x4f\xe6\x15\xa3\xa4\xeb\xeb\xf7\x17\x35\x89\xcd\x05\xd6\x2a\x92\xb1\x65\x39\x25\x0c\x9d\x6a\xc1\xec\x59\x04\xa5\x13\xb7\x49\x35\xff\x89\x00\x70\x01\x2a\x9e\x5e\xfb\x6c\x00\x35\x37\x15\xf4\x62\xd6\xd6\xaf\x22\x67\x49\x13\x32\xca\xe2\x7b\x3f\x0c\xa8\x41\x7a\x77\x52\x4e\x2a\xc9\x7d\xa6\x78\xea\x1f\x49\xbe\xc6\x06\x0f\xe4\x92\x48\xc3\xcc\x6f\xbe\x96\x3c\xac\xe1\xf9\x67\x1c\x0b\x96\x4d\xd4\xe4\x38\x7e\x20\x7b\xe8\x57\xd7\xbf\xa7\x66\x96\xc3\xe3\x6a\xad\x25\x30\x0d\x7c\xa1\x27\xde\x94\xe4\x3e\x7b\x91\x25\x6d\x45\x71\xf3\xad\x62\xf0\x0e\xfc\xaf\xb2\x24\x15\x37\x0e\xe7\xb1\x1d\x58\x08\x58\x11\x67\x9f\x4d\x13\x74\x6f\x65\xc9\xf3\x69\x13\x8d\xfb\x65\x50\x1e\xe7\xd8\x5a\xf1\xf3\xde\xb2\x4e\xaa\xfc\x31\xcb\x06\xc7\x9a\x45\x20\xc8\xc4\xaf\x5f\x9b\x1e\xea\xf2\x89\xaa\x7c\x5a\x62\xf7\x66\x5a\x4b\xb9\xb8\x2e\x6d\xd3\xbf\x66\x46\xdb\x3f\xcb\xee\x8e\x05\x0c\x32\x91\x41\x18\xb7\x18\xbe\xc2\x1c\xfd\x64\xb9\xfe\x91\x41\x1a\x1f\x3a\xd4\x26\x1f\x07\xb1\x0a\x7b\xbb\x0a\xa2\xa4\x23\x1c\xf9\x41\x30\x32\x81\x6d\x6c\x6f\xfb\x8d\xa0\xd6\xeb\xa7\x7c\xa6\xf2\x0d\x4d\x6a\xb0\x32\x17\x30\x8a\x1d\xf0\xa5\xe9\x53\x19\x21\xf5\x2a\x29\x7e\x46\x83\x6a\x26\x34\x50\x51\x90\x58\xc5\xc1\x9a\xdf\xdb\xb6\x01\xf1\xbb\x5d\x6f\x79\x86\xd5\x67\x63\x28\xfa\x5a\xd6\x12\x61\x1c\x82\xf7\x6c\x72\xe8\xfb\x8b\xca\xd8\x63\xca\x7f\x56\x2d\x2a\x49\xaf\x3d\x32\xfc\x0f\x1e\x25\x36\x18\x14\xf7\xef\x82\xe4\x0a\x09\xb7\x25\xeb\xd8\xe1\x80\x50\xa0\xdc\xd6\x6a\xe6\xbd\xbc\xfe\x86\x2c\xcf\x86\x11\x00\xc0\xa9\x22\x5b\x1e\x3a\x03\xae\x5b\xe2\x72\x6b\xa1\x3f\xb9\x15\x34\x83\x87\x9a\xff\x03\xe6\xf5\xb5\xe4\x01\xa4\xbe\x80\xa9\xeb\xeb\xd9\xfd\xc9\x70\x7a\x9b\x3b\xbc\x84\x7a\xfb\xde\x3f\x9f\x31\xb1\xb9\xcb\x6f\xa3\xa4\x64\xa1\x2e\x9d\xef\x32\x64\x30\xc8\x72\x89\xc0\x89\x4d\x14\x00\xbe\x1a\x01\x28\xba\xb8\xac\xa4\x46\xa8\xf6\xb3\xb9\xf7\x1d\x89\xbb\x9d\x08\x00\x40\x30\x8d\xf2\x2b\x7f\x53\x44\x97\x44\xa0\x9b\xa8\x0a\x1e\xc1\xb4\xb2\xe8\xf8\xf2\xa4\x88\x21\x89\x46\xef\x8b\x30\xd6\x53\xfe\xf5\xd3\xcb\x00\xb0\xb7\x34\xbe\x30\x5d\x36\x75\xbe\xac\x8d\xdd\xa0\x59\xb2\x58\xc0\x48\x15\x41\x3a\xa9\xb6\x91\xf7\x45\xb7\x0d\xe4\xaa\xfe\x63\x43\x9d\xb5\x9c\xd2\xc6\x3e\x30\x8b\x33\xd0\x10\x70\x12\x65\x4e\x32\xe6\x9a\xa7\xad\x15\xf0\xe3\xdf\x6f\x00\x00\x40\x06\xe1\x68\x54\xf6\xb4\xed\x62\xac\xd5\x9d\x40\x39\x76\xbb\xdd\x93\x6c\x13\x0b\x0e\xe5\x95\x27\xd1\xc6\xc8\x4b\xfb\x9f\x71\x3c\xb2\x77\xce\x29\x68\xc9\x72\x69\x14\xdf\xb1\xfb\x2e\x09\x90\x8d\x5b\x95\x2d\x09\xf3\x2e\x87\xc4\x4c\x75\x8e\x8a\x16\x27\x9e\x81\x0d\x64\x40\x30\x92\x30\x54\x39\x42\x59\x9d\x37\xbd\xaa\x62\xe5\xc3\xbf\xcd\x66\x15\x29\x2b\xda\xfb\x6a\xc9\xd3\xc7\xde\x5b\x39\xbe\x7b\x4d\x39\xb5\x7a\x41\xc4\xd2\x40\x20\xfc\x0f\x13\x5d\xeb\xf9\xe1\x3b\x60\xe1\x35\x6f\x5a\x7f\xc3\x3f\x4e\xf6\x55\xf5\x83\x05\x75\x88\xae\x81\x6d\x81\x71\x9b\xe1\xab\x69\x13\x27\x4a\x00\xb0\x34\x3b\x76\x2f\x80\x20\xb2\x6f\xd5\x9b\xdf\x9a\xb0\x82\x33\xc1\xf0\x33\x70\x75\xeb\xbb\x5a\xff\xd1\xa9\x5f\xab\x2f\x3c\x41\x09\xf0\xe0\xc9\x90\x0b\x22\xa3\xc5\xde\xe6\x0c\xec\x89\x40\x23\x81\xa7\x8e\x76\x78\x40\xd5\x31\x52\x0a\x66\x5e\x48\x15\x5b\x5f\xb2\x61\x10\x6f\x68\x67\xed\xb8\x2d\xde\x22\xbc\x43\xa0\xd4\x02\xc2\x0b\xdb\x18\x6d\xaa\xfb\x1e\xfe\x83\xee\x93\x20\xc2\x9a\xdb\xca\xb2\xb5\x45\x13\x0c\x97\x11\x25\x84\xd5\xba\xfc\x3b\x06\xcb\x81\x2f\xc6\xb1\xb7\x76\x94\x87\xee\xa5\x54\xa9\x14\x6f\x32\x87\xc1\x5d\x79\xc3\xcb\x6c\xc9\x98\xa3\x6b\x86\x53\x9c\xf0\x84\xd8\x40\xfa\xff\xc2\x3e\xf3\xab\x43\xc6\x49\x27\x35\x10\xc2\xd0\xd6\xf6\x9b\xee\x8f\x96\x76\xc6\x5e\xc5\x9b\x24\xdc\x0c\x68\x65\xbd\x09\x07\xb7\x6d\x4a\x42\xd4\xc1\x27\xec\x04\x62\x62\xa7\x1d\x08\xa2\x18\xd7\x15\x0d\xdd\x3e\x05\xd7\x2b\xf2\x5b\xf5\x12\x20\x80\x77\x4b\x96\xcb\x5e\x16\x82\xa7\x97\x3a\x4f\xf5\xf0\xc6\x24\x41\x62\xb4\x0a\x64\x20\x68\xa0\x62\x82\xe7\x9d\x31\x08\xe0\x3c\xac\x44\x3f\x19\xe1\x88\x69\xad\x37\xe5\x41\xf2\xea\xfe\x10\xf3\xa8\xc9\xe5\xee\xea\x4d\x49\xae\x26\x25\x00\x72\xfd\x87\x5a\xdc\xc0\xf0\x37\x63\x1f\xdb\x3d\x29\xdb\x03\x4a\x29\x4c\xaa\xb6\x3f\x38\x6c\x2d\x1a\x2b\xf0\x3e\x33\x02\x98\xe5\x2d\x73\x0a\x1e\x7a\x92\xe7\x67\xcb\xa8\xc4\x07\xdb\xe5\x59\xe1\x37\x01\xbf\x44\x01\x08\x92\x0b\xeb\xf3\x1b\xc0\x76\x48\x4d\x9b\xdf\xaf\x81\x17\x33\x7e\x20\x49\xb4\x1d\xd7\x1d\xdf\x88\xff\x59\x0c\xe0\xeb\xc8\x21\x03\xb0\x9a\x01\x9b\x5e\x54\x6d\xd1\x9f\xcd\x1f\x6f\x2f\xb8\xf5\x1a\x85\x52\xce\xce\xd3\xc8\xf5\x10\x65\x8b\xf9\x94\x6d\xee\x1e\xcb\x5e\xdf\x15\xde\x77\xca\x1b\xb0\x6b\xc5\x29\x37\xd1\x4b\xc3\xcc\x77\x29\x27\x7e\x4b\x8f\x62\x15\x5a\x89\xd5\x66\x42\xd5\x13\xce\x82\xbf\x83\x63\x18\xad\xae\x8b\x21\xf7\xee\xef\x2c\xb9\x40\xb7\xea\xf8\x28\xa8\x8d\x11\x0a\x78\x6f\x0a\x20\xcd\xbd\x9b\x56\x1c\xec\xb7\x16\x23\xbb\xc3\x3d\x41\x00\xca\x5c\xf4\xa6\x87\xa3\x29\x71\xd9\xa0\xc8\xae\x3f\xca\xa8\x90\xe4\xbf\x46\x88\x61\x2c\xc9\x11\xd1\x10\x1e\xd5\x52\x76\xd1\x24\xb1\x1f\xa3\x10\xc6\xd7\x44\xd9\x5c\x55\x43\xbb\xea\x40\xca\xf7\xa2\xde\x36\xd8\xed\x94\x46\x40\x9e\xc8\xbf\xda\xbe\x3d\x63\xae\x59\xda\x57\x6e\xad\x22\x3b\x7b\x12\x1c\xf9\x8c\x3d\x81\x25\x7e\x87\x25\x83\x0b\x65\x4f\xc5\x07\xdf\xf8\xb3\xc2\xd5\x12\x33\xa1\x08\xd8\xba\xa8\x7c\x82\x19\xc9\xb3\x06\x62\x00\x9b\x31\x9f\x87\x09\x27\x46\x21\x93\x2d\xd0\x3c\x5f\xf1\xa7\x99\x55\xc8\x5b\x0e\x80\xfe\x57\x3f\xd6\x17\x30\x7c\x17\x5b\x68\x08\x7b\x86\xab\x5e\x3f\x59\xfa\x92\x22\x45\xc1\x71\x8c\xc2\x4f\x06\x16\x17\xd3\x7d\x9e\xf4\xa0\x7f\x28\x3a\xd8\x86\x0d\x30\x9f\xb1\x60\x5f\xd8\x3f\x92\x82\x41\x12\x01\xdf\x06\x40\x0a\xfd\x1d\x9a\x40\xd3\xf9\x1a\x47\x4d\xa5\x67\xa0\xe4\x01\xc4\xd5\x00\xc8\x1d\x81\x09\xf7\x48\xac\xeb\xf8\x8d\x6e\xdf\x37\xdc\x3b\x77\x13\xa6\x2a\xde\xdc\x0c\xc3\x6c\x21\x67\xd7\x14\x8f\x07\x96\xfd\xcd\x44\x6e\x45\x53\x82\xc0\xe8\x42\x2d\x6a\x02\xd0\xff\x7e\x71\x01\x51\x41\x48\x79\xc7\xb1\x93\x1c\x59\x92\xa8\x40\x39\xb6\x3f\x15\xa1\x89\xf2\x6b\x44\x4e\xbd\xd8\x88\xa0\xe8\x16\x00\x30\x39\x5c\x6f\xd9\x8f\x40\x9f\x06\xfc\x36\xf7\x1e\xa3\xf0\xd3\x86\xe1\xd9\x4e\x59\x5c\x1a\x2d\xf7\x3e\xc4\xec\x69\x99\x91\xdf\x48\x03\x53\xb8\x08\xd8\x7a\xa5\x93\x28\x11\xb6\x66\x1f\x4a\xc1\x51\xaf\xd6\x9a\x80\xde\x57\x25\xfa\xf1\x19\x8b\x20\x98\x91\x12\x63\x93\x6a\xc6\xdd\x02\x50\xfe\xc5\x0e\xbd\xc4\x2d\x07\xb5\x7f\x24\x1f\xf5\x2c\xb7\xf6\xf7\x8a\x3d\xa6\xf9\xef\x64\x24\xec\xf2\x96\x19\x25\x3e\x87\x3f\x59\x1a\x96\xff\x88\x28\x80\xbc\x4e\x41\x3c\x6c\x30\x64\xd4\xdb\x2f\x59\xa1\xe9\x39\xa7\x49\xe9\x63\x89\x67\x35\xe1\x81\xc3\xe6\x2d\xef\x6f\x64\x79\x3e\xbf\xc4\x08\xfd\x30\x02\xa4\x28\x1b\xb8\x00\x60\xc6\x5b\xd8\xf1\xd2\xb9\xf7\x3a\xb8\x24\x6c\x37\x9b\xfb\xee\x85\x1a\x44\xd7\xc0\xde\x1a\xb3\xfd\xec\xd9\xf5\xa1\xaa\xfc\x8b\xf6\x5c\x24\x34\xd0\xe0\xbd\x50\x5c\x66\xc1\x71\xa3\xac\xb4\xd9\xd8\x34\x2f\xb8\xb2\xe4\xf8\xfe\x3e\x85\xb6\x36\x31\xf2\x31\x8a\xed\xf8\x7d\x78\x9f\x26\x14\x45\xfc\x11\x22\x55\x07\x99\x03\x4c\x5c\xd9\xe7\x89\x28\xf6\xb9\x2f\xaa\x96\xb6\xd0\xa8\x84\x33\xb1\x14\x3a\x29\x82\xed\xc1\x67\xe4\x6b\x1e\xad\xad\xd1\xfe\xa4\x5e\x31\xe0\x2e\x1f\x40\x11\x5f\x0a\x66\x4e\xf2\xeb\xb6\x5e\x0e\x88\x7a\xf4\x79\x5a\x4c\x7a\x8a\xc5\xd7\xb9\x6b\x45\xb3\xd1\xfd\xe7\x21\x8d\xe5\xdd\xeb\xb3\x3a\xb0\x32\xa3\x65\x5a\x6e\x58\x01\x0c\x20\x46\x37\x03\xf2\x0d\xc0\x2b\x60\x06\x57\xd7\x1f\x33\x9a\x79\x6f\xaa\xb1\x86\x1b\xd3\x7a\x54\x15\x04\xf0\xf4\x9b\x39\xb6\x3a\x99\x3c\x0c\x71\x34\x25\xce\xa3\xe4\x03\xa0\x81\x8a\xa9\xf5\xc7\x44\x5d\x35\x99\x0e\x90\xf3\xda\x9e\x4b\x16\xdf\x80\xae\xa3\x84\x0f\xf1\x9c\xfe\xfd\x66\x9d\xdf\x0c\xda\x82\x8c\x5e\xf2\x68\x92\x29\x12\x68\x30\x00\x32\xc5\x04\x4e\x06\x94\xd0\x46\xfa\x95\xd1\xcc\x53\x13\xee\x2d\xdf\x1e\xab\x2c\xc3\xa3\x97\x9a\x81\x46\x4e\xb1\x87\xad\x15\x31\xf7\x83\xc9\xe4\x66\x8f\xfe\x07\xb1\x97\xd4\x38\x1b\x0f\x58\x91\x8d\x37\x96\xf8\x73\x45\xe4\xcb\x9c\x1c\xd3\xda\x8e\xac\x16\x68\xad\x33\x74\x4a\x7b\xf3\x3b\x37\xc8\x74\x33\x1f\x9a\xc0\x96\x2b\x03\x48\xc9\xdd\xa0\x98\x9e\xe0\x80\x81\x26\x4b\xc8\x06\x2e\x9f\xf6\x73\xd6\x20\x3c\xb4\xf1\x87\x82\x65\xff\x5b\x9b\x83\xdb\xa2\x47\xf6\x78\x68\x69\x20\x9e\x40\x06\xb6\x3e\x20\xaf\x1b\x7b\x5e\x7c\x97\x61\x27\xe5\xcb\xbc\xb8\x1f\xd8\x34\x3a\xc6\x75\x28\xfa\x5c\xd5\x86\xd6\xe2\xee\x8b\x3e\xb6\x07\xad\xb2\x68\xbf\x33\x31\x0f\x5f\x91\x3f\x8a\x8d\x14\x30\xd3\xc6\xad\x5e\x9d\x21\x30\x91\x98\x7b\xd1\x48\xfb\x49\xb1\x9a\xd9\x97\xc8\x2a\xa2\xaf\xf7\xc4\x56\xf2\xb6\xc4\x23\x75\xbd\x4d\xa7\x3a\x8e\x3e\xbb\x8e\x48\x86\x18\x05\xff\xf3\x29\xe6\x49\xe6\xa3\x8f\xa7\x4b\x0e\xb3\x27\xb4\x86\x53\xea\xfb\xdf\xd9\xd9\x93\xb1\x2f\x09\xd2\xe4\x71\x5f\xd7\x32\xb2\x83\xd1\x27\xa0\x5c\x23\xa8\x62\x1c\x10\x3a\xb2\xf5\x3e\x30\xb6\x13\x01\x98\x88\x84\xe5\xfb\x57\xce\xdd\xa4\xa7\xe0\xbd\xb2\x7c\x41\x07\x03\x80\x6a\xd4\xd2\xbb\xb2\x9d\xb6\xdb\xa1\x98\xbb\x3a\x5e\x9a\x7e\xd0\x7f\xf1\x9e\xeb\x7b\xf5\x8c\xbf\x5b\x5e\xbc\x31\x5f\xe0\xcd\x78\xe6\xad\xfc\x5b\x52\xef\x98\xd6\x15\xa1\xc0\x3f\xe9\xb6\x38\x2a\xaf\x9e\xa4\xb0\x8c\x54\xd0\xad\x3e\x39\xcd\xc7\x35\xd9\x6c\x06\x3e\x8c\x51\xf0\x70\x5d\x1e\x2e\x7f\xf1\xbe\x3c\xe8\xfe\xc6\xfb\xab\x5f\xe5\x62\x22\x13\x07\x98\xe2\xa9\x77\x84\x84\x73\xd6\x4c\xb8\x47\x68\xd8\x8d\x5d\x3a\x4f\xe5\x07\xbe\xb0\x10\xad\xcd\xc6\x6f\xac\xf9\x71\xfa\x58\x38\xce\x86\x76\x2a\x95\xe8\xa0\xc5\xfb\xf2\xcf\xfd\xed\x25\x8b\xef\x35\x34\x50\x91\x2e\xba\x81\x12\xde\x42\x5d\x0e\xfe\x69\xdf\xa7\xa7\xb1\x65\xd4\xab\x4d\x80\x2d\xab\x6b\x85\xce\x8f\x69\x7d\x88\xaa\x65\x7e\x2c\xa1\x6f\x83\x99\xec\x62\xba\x25\x00\xac\xdd\x65\x9f\xbd\x26\x90\xa7\x50\xfe\x85\x60\x85\x00\x26\x8d\x1e\x00\xa0\x98\x01\x00\xdb\xb7\x23\xc1\xd9\xe7\x59\x8f\x25\x82\x8a\x1d\x20\x17\xea\x6f\x39\x36\xa9\x37\xf0\xe3\xcc\x93\x6c\x35\x22\xc1\x6a\xc2\x86\xbd\x5e\xc5\x50\x08\x0d\xad\xf9\x7d\x52\x7a\x56\x43\x89\x2a\x04\x0e\x75\x79\x4a\x4f\x50\xd9\x4a\xd2\x3e\x22\x82\x29\x04\xd2\xbd\xc2\xb2\x53\x02\xdb\x16\xc6\xa6\x5e\x44\x72\xa2\xdf\x96\x6b\xcd\x5a\x8d\x2d\xb1\x0a\x4b\x5c\x37\x3d\x8b\xb8\xf4\x61\x2e\x72\xa2\x07\x3e\x6c\x53\xfa\x13\xa9\xbf\x01\x8d\x8b\x3b\x2a\xe7\x00\xa1\x9f\x40\x80\xba\xad\xaa\xe4\x00\xc1\x0a\x1b\xda\x89\xfd\x7e\x32\xb7\xd6\xe1\xaa\xd8\x89\x4a\xdc\xc7\x0a\x0f\x94\xce\x9e\x67\xf7\x49\xa7\xd7\x53\x51\x54\xb4\x0f\xe7\x91\xbc\x0c\xc7\xfb\x80\xff\x26\xce\x38\x8c\x18\x00\xf0\xf6\x51\x74\x9b\x78\xf9\xc9\x0b\xfd\x9e\x8a\x6c\xb3\x7d\x02\xee\x9d\x4b\xef\x90\x28\x5a\xf3\x7b\x15\x7f\x97\xac\x87\x2e\x97\x9e\xe5\xe0\xa5\x49\x7f\x03\x40\xaa\x0b\x00\x50\x60\x93\xf7\xbf\x62\xad\x62\x19\x89\x11\xab\x33\x04\xed\x2d\x29\x79\xd6\xdf\xec\xcf\x93\xe8\x43\xc5\x77\x6e\x85\xec\xa0\xa8\x4c\xdc\x75\xdb\x51\x35\x4e\x7d\xf2\xc8\x42\xed\x91\xb0\x50\x54\xc0\x01\xfb\x7f\x53\x28\xbc\x3f\xaa\xfb\xdd\x30\x3d\x21\x40\x26\x8f\xd2\x1a\x4c\xb7\xf8\xa4\xc8\x26\xd4\x17\x27\x3f\xd8\x45\x82\x78\x35\x60\x72\xbb\xb5\x17\x41\x2b\x6e\x50\x4d\x0b\x04\xe0\x00\xfc\xab\xe6\xe7\x87\xed\x5f\x8f\x23\xf1\x01\x20\xc1\xef\x52\xa2\x9d\x8c\x00\x40\xfd\x22\x32\xf2\x54\x3c\x01\xab\x02\x26\x68\xc0\x7e\x77\xc1\xc8\xde\xb6\x5f\xf7\x07\x27\x29\x7c\x3c\x09\x9a\x88\x0f\xca\xdc\x49\x31\xe2\xae\xd1\xca\xca\x39\x95\x15\x88\x99\x5f\x5c\xff\x9d\x41\xfb\xee\x7f\xaa\x92\x9d\xef\x5f\xd8\x13\x3f\x39\xef\x79\x33\x8b\x5f\xa8\x1b\x59\xf0\x49\x47\x57\x0d\x32\xca\x75\x92\xc4\x84\x2a\x4e\xec\xb8\xf8\x62\x37\x88\xb9\x8c\xe1\xd8\x8f\x14\x8e\x13\x10\x7a\xf9\xb0\x7f\x10\xda\x84\xf1\x7e\xa2\x5e\xc5\xa3\xa2\x5c\x03\x50\x9e\x74\xbc\xbd\x07\x5e\x87\x45\x41\xe0\xef\xec\xb7\x05\xf9\x95\xf9\xaa\x9e\xe0\x03\x40\x3a\xda\xfa\x75\x9e\xa0\x82\xbd\x96\xdd\xf6\x9d\xe9\x24\xfe\xbf\x83\xb2\x11\x52\x14\xfc\x4f\x22\x1a\x9d\x40\xad\xf4\xe7\x3b\x77\x4f\x7e\x11\xbe\x5a\xed\x9d\xed\x94\x46\x75\x4a\x7f\x7c\x22\x7c\x57\x7a\xa0\x1b\x8d\xca\x7f\xf7\x30\x7e\x59\x26\x80\xf9\xfb\x9f\x9a\xa8\xb4\x66\x86\xd9\x5d\x16\x18\x6e\x70\x2f\x1b\x83\xf1\xda\x1c\xd2\x4d\x60\xc8\xd3\x03\x00\x46\x66\x48\x4f\x37\xe2\x8a\x4e\xd4\x59\x92\xd8\xe4\xd1\xe7\x26\x69\xfd\x0a\x05\xfb\xf3\x39\x42\x66\x08\x18\x80\xb1\x7f\x75\x80\x9c\x59\x16\x94\x54\x26\x75\xd0\x4e\x0e\xb6\x07\x3c\x70\x8a\x7c\x4d\x87\x22\x60\xe6\x9a\x32\x29\x5f\xd6\x3e\x0b\x15\x42\xbf\xf3\x3e\x10\xc7\xfd\x1a\xf6\x52\x50\x23\x9f\x10\x55\x21\x6e\x2f\x38\x23\xe2\x7b\x58\xbb\x9d\x4e\xf6\xbf\xee\x56\xb8\xe5\x53\x89\xd6\x42\x99\x4d\xfb\x4f\xdc\xd3\x1a\xde\xe3\xc2\xf4\xef\x87\x03\x6f\x69\x4d\x70\x20\xed\xd0\x79\x30\x69\x0b\x90\x22\x37\x37\x55\xdf\x32\x36\xa1\xcd\x99\x16\xf7\xe7\x6c\x4a\x8a\x12\x92\x81\x4e\x90\x41\x38\x72\xd5\x92\xe7\xeb\x75\xac\x85\x74\x18\x52\x56\x34\x91\xff\xe7\x46\x19\xd3\x5f\x9f\x84\x9c\x85\x0a\x8f\x3c\x4e\x97\x32\x4a\x4e\x14\x7a\xcc\xa8\x18\xd2\x75\xe9\xf1\x44\xde\xd2\xc1\xa1\xa1\xb5\x3d\x45\x91\x0a\x43\xb7\x12\x2d\x6a\x98\xd1\x18\xf4\xe9\x1f\xab\x4a\x1c\xea\x35\x5a\x7c\x14\xe3\x34\x46\x91\x19\x13\xac\xd8\x02\x00\x72\x8b\x4f\xa0\x3c\x72\x10\x98\x49\x2d\xbb\x10\xe8\x48\x27\x69\xce\x3d\x62\x7c\x20\xfb\x70\xad\x39\x1d\xfd\x2e\x77\xd8\x21\x7e\xce\x56\xb5\x26\x30\x22\x64\xa8\xe5\xa0\xec\x7f\xa6\x60\x26\x4c\xf8\x02\xf2\x92\x46\xde\xbd\x5c\xd1\x3c\xc9\x52\x54\x15\x19\xf0\x6a\x0a\x63\x34\x58\x9b\x30\x41\xb3\x92\x41\x7d\x9f\xd0\xc1\x43\xd7\x4b\xe9\xe7\x71\x85\x0f\x47\x71\xf7\x06\xdb\x1e\x66\xcf\x7b\x86\xd9\xb5\xcb\x59\x58\x27\x56\x7f\x5d\xb1\xec\xdf\xaa\xf4\xdd\xa5\x15\x4c\x4a\xb4\x87\x43\x51\xb1\xf6\x01\xab\x2f\xdd\xbd\xc3\x18\x11\x76\x32\x26\x5b\x06\xb9\x3f\x3e\x9c\xab\x93\xe7\x0a\xd9\xe5\x33\x52\xf1\x99\x08\xbe\xb5\xd7\xe2\x0f\x37\xa9\x5a\x3a\x86\x00\xff\x91\x5d\x27\xa4\xe4\x21\x92\x1d\x8e\x09\x6f\x80\x00\x6c\x78\xa1\xf1\x3d\x3f\x07\x33\x9b\x7c\x13\x8e\xeb\x84\xe3\x5e\xc5\x04\xbd\x44\x52\x02\x30\xde\x4c\x4a\x98\x94\x4b\x5a\xc0\xf4\xd8\x27\x0b\xee\x2d\x89\x9b\x0f\x35\xf7\x55\x97\x65\x02\x7e\x95\x6a\x2e\x34\xb7\x8a\x53\x28\x04\xb5\xb2\xc1\xc3\x6a\xa8\xc3\x2d\x41\x3f\x20\x6b\x86\x11\xbb\x14\xe6\x18\x08\x02\x00\x39\x25\x68\xd0\x9f\x4f\xef\x79\x15\xda\x19\x6d\x76\x32\x5b\x26\xd4\x29\xaa\x4a\x2b\x45\xb3\x32\x00\x00\x30\x41\xaf\x2b\xa6\x2d\x72\xd5\x68\xcd\x4e\x5d\x59\xd6\xc4\x90\x02\xa8\x26\x2c\x18\x44\x18\x4b\xbd\xd6\x4a\x76\x6b\xbd\xe3\x51\x10\x14\xaa\x6c\xa1\xca\xf7\xb9\x27\x06\xdd\x54\xf3\xe3\xfc\xd5\x7c\x63\xbe\x50\xa1\xb5\x57\x58\x39\x16\x7e\x6a\x36\x1a\x97\x0c\x3c\x94\x4d\xa1\xba\x83\xab\x79\x43\x13\xe3\xa0\xbf\x16\x11\xd2\x11\xd9\x47\xe5\x7f\x6b\x33\x7a\xff\xaf\xab\x68\xf0\x56\xc2\xd8\xb1\xb5\x4d\xcd\x85\xa6\x56\x40\x2d\x3a\xfb\xf7\x22\xad\xca\xcd\x33\xf3\x3b\x2b\x97\x73\xa2\x91\xd9\x67\x12\x76\x41\x18\x24\xbd\x0b\x61\xba\xd9\x8c\xd8\x36\xa7\x52\x01\x18\xf5\xd1\xfc\xfa\x96\xd6\xd8\xe6\x5e\x68\xab\x72\x23\xb0\xc4\xe0\xe7\xd9\xa3\x14\x16\x76\x96\x22\x8e\x47\xfb\x97\x6d\xad\x6a\xaa\x89\x70\xcc\x71\x3f\x93\x77\xd5\x6d\x51\x76\x12\xfe\x68\x2b\xde\xc9\xa2\xc7\x32\x53\xd5\x05\x36\x02\xb6\x6e\x10\x3a\x44\xba\x2a\x4a\x62\x9c\xf2\xc8\x76\x7b\xd3\x85\xfe\xe7\x62\xf3\xf4\xd2\xa0\x77\x93\x22\x4c\x6c\xad\x62\xe0\x8d\x3e\x1b\x19\x75\x4e\x3a\xb6\x26\x2e\xa0\x60\xb1\x55\xe3\xc3\xdc\xd2\x48\xc3\x6f\x6b\xa9\xea\xb8\xdb\xbc\xc3\xde\xf9\x24\x3b\x4f\xac\x19\x8b\x25\xa4\x95\x9a\xea\xe3\xfa\xa5\xe9\x94\xbf\x26\xf0\xdc\x1b\xb0\x74\x3e\x48\xa6\x22\x02\xda\xdb\xf1\x03\x46\x4f\xc5\x1d\x11\x75\xaf\x50\x76\xd7\xe1\x71\xaf\xb1\x03\xb9\xdc\x54\x76\xa5\x25\x99\x7a\x29\xc5\x5b\x5a\x4c\x8a\x14\xda\xd7\x37\x4d\x7b\x1c\x3d\xfc\xc9\x31\xa8\xcb\x86\xf9\xff\x59\x13\x4e\xb2\xb9\x1a\x75\xf5\x38\xdb\x73\x6f\xa5\xf5\x71\xe0\x88\x7d\x1f\x03\x5e\x7d\x29\xfd\x9c\x00\x5f\xfe\xc1\x46\x73\xcb\x7e\x60\x53\x8b\xa1\x53\x5d\x5d\xd8\xc1\x94\xf6\xe8\xe2\x42\xaf\xf7\xfc\x86\x62\xf9\xf2\x94\x94\x80\x49\x25\x5d\xaf\xb3\x81\x44\xeb\x1c\x51\xa4\x69\xad\x3f\xff\x9a\xbf\x83\x01\x86\x8e\x8f\x09\x00\x70\x1a\xd3\xc7\xc2\x34\xa5\xde\x80\x16\xd8\x6a\x26\xdf\x2c\xa9\x69\x5b\x09\x93\x01\x23\x4a\x84\x84\xdb\xfb\xd8\xfa\x93\xd8\x71\xfa\xb8\xba\x12\x73\xec\xba\x9d\xa8\x77\xf3\x2d\xde\x97\x50\x7c\x10\x04\x39\x46\x49\x0f\xfe\xcb\xb0\x24\xc6\xb3\xfb\x08\x2a\x06\x5e\x75\x62\xc8\xca\xdb\x17\x49\x29\xde\xcd\xea\x91\xe0\x82\xfc\xe5\xc0\x78\xf6\x60\x0c\xea\x1f\x24\x2d\x95\x01\x20\xbc\x9a\x45\xe0\x25\x6d\xbb\x36\xf6\x0f\xc8\x5d\x4e\x7c\xa3\xed\x4d\xb1\xd0\xce\xad\x90\x63\xa3\x3e\xc4\x91\xdc\x7e\x92\x04\x52\xfb\xbd\xd2\x4f\xe3\x7b\xb4\xe3\xb7\xff\x9e\x6f\x7e\x9c\x50\x54\x14\x23\x37\xa2\x3a\xd8\x89\x9f\x11\xf6\x98\x85\x17\x1d\xee\xaf\x09\xfc\x92\xbd\x6a\x1e\x39\xfa\x6d\xf6\xe0\x6a\x71\x07\xb2\xd4\x04\xb2\x7d\x8e\xc6\x76\xb5\x64\xeb\x70\xc6\x72\x87\x0c\x19\xd2\x8b\x27\xb4\xcb\x0a\x03\x29\x63\x5a\x7f\x9c\x86\x28\xbc\xdf\x06\xb5\xd4\x58\x17\x61\x33\xff\x19\x42\x4e\x15\x11\xbc\xe6\x61\x2b\x67\xf9\xfe\xe5\x7f\xb5\x43\x42\x51\xf5\x14\xf0\x41\x2c\xa7\x14\x0a\x60\x84\x62\x9a\x28\xc2\x6b\x01\x0b\x16\x79\x2a\xab\x73\x67\xc3\x85\x69\xe0\x7d\x00\xf8\xd8\x01\x80\xe4\xad\x46\xc8\x16\x56\x0b\x28\x45\x61\x6c\x22\xd8\xd0\xe9\x5d\xee\x88\xcd\x33\xd1\xaa\x43\x35\x28\x76\xe6\x1e\xa8\xa5\xc1\x84\x43\xe7\x45\xda\xfe\xe1\x46\x33\x7e\x1e\xaf\xe2\x42\x07\x35\x18\x1a\x98\x92\x44\x46\x0c\x1b\xc4\x0d\x7d\xba\x5c\x0f\x0d\xf5\x02\xf9\xc8\x51\x80\x8e\x57\x11\x8e\x81\xc6\xd6\x67\x59\x21\x12\x07\x27\x87\x89\xa7\x96\x8b\x57\x58\x03\xe5\x00\xe5\x28\x01\x8c\xc6\xfb\x0d\xe8\x3b\x7b\x7d\x9e\x9c\x77\x46\x49\x2c\x6f\x2a\x6f\x91\x16\x78\xcd\x31\xbc\xd0\xb9\xd1\xa8\x3a\x2e\x59\x5a\xb6\xe0\xdf\x46\x0b\x56\xa4\xfc\xcb\xdd\x36\x59\x62\x14\x3c\x6f\xeb\xbf\x16\x34\x75\x18\x7c\xe1\xf7\x43\x46\x91\x30\xfc\xe9\xdf\x7a\x28\x14\x2e\x46\x01\xe7\x82\x1a\x6c\x1b\xef\x7f\x09\x59\xfe\x62\xe4\xe1\xbf\x5c\x48\x6b\x22\x1e\x2e\xd1\x4e\xf8\xaa\xe3\xeb\xe9\x41\xd3\x61\xcf\x23\xdf\x19\x52\x04\x36\x40\x0d\x10\x02\x7f\x00\xc4\x93\xff\xdf\x74\x83\xa3\x55\x7d\xec\x05\x6f\x7b\x5a\xf2\x1a\x8c\x39\xe6\xfa\x6e\xb2\x0f\xd7\x32\xa3\x80\x80\xa2\x50\xee\x5a\xfc\x03\xcc\xd9\xd2\xfe\x1c\xc6\x35\xf6\xb8\xc8\xe9\xc4\x22\x8c\x7d\xcb\x7a\xc1\x81\xab\x4d\x14\xea\xa2\x47\x7f\x3a\xa6\x6a\xb9\x73\x4b\xd6\x74\x88\x64\x9a\x5f\xfb\x2c\x9d\x4a\x7a\x2f\x48\x37\xaa\xfa\x46\x53\x2a\x34\x36\x3a\x36\x5c\xc8\xf5\xf0\x92\xc7\x72\x0a\x0b\xc6\x6b\xc9\xba\xb2\x2e\x29\x87\xd2\xe2\x6c\xb3\xbf\x89\xe5\x9c\xd9\x9d\x13\x5d\xc7\x72\x5b\x26\x2c\x84\x56\x26\x9c\xc7\x52\x68\xeb\x25\x15\x27\x76\x58\x76\x09\x71\x51\x8b\x7e\x18\xeb\x6c\x06\x20\x54\x88\xfa\xb1\x48\x51\xfe\x7c\x65\x71\x60\x60\xaa\x34\x99\xb8\x13\x24\x1f\x22\x3a\xc8\x00\x1b\x24\x86\xa6\x7b\x04\xfc\x95\x4d\x95\xb0\xee\x5e\x36\xbb\xb2\x5a\x15\xa3\xf9\x92\x48\x01\x98\x31\x43\x7a\x4e\x40\x28\x4d\xa5\x25\x83\xf2\x38\xc5\x25\x2d\xed\x99\x0f\x1f\x1f\x29\x06\xf2\xc8\xe3\xc7\xff\x36\x32\xb0\xb1\x4d\xca\xfb\x53\x52\x48\x25\x84\x27\x02\x19\xeb\xf3\xcb\x84\x22\xa2\x28\x25\xb5\xdb\x46\x27\xed\xcf\x2e\x57\xaf\x07\xa0\x01\xb7\x97\x87\x91\x0c\x10\xf4\x47\xbc\x5f\x91\x6a\x0c\xb4\xb4\x36\x45\x0f\xdb\xcb\xc9\x45\x5a\xfe\xb1\x89\x44\xa0\x20\xc6\x20\x30\x6b\x8a\x26\x64\x22\x9d\x14\xbf\x7c\x85\x91\x2c\xea\x8b\xb2\x50\x7a\xbd\xd1\xb8\xa3\xef\xad\xe9\xea\x74\x19\x7f\xf5\x8f\x4d\x3a\x36\x1e\xfc\xbc\x4a\x6d\xc1\x2b\x22\x09\x43\x9b\xfb\x2f\x44\x53\xc9\x69\xaf\xc3\xac\x91\x8e\x4f\xec\xaf\xb0\x53\x6e\x3d\x9f\x06\x32\x46\x9b\x5c\x75\x99\xe9\xed\xb8\xa0\xcc\xcd\x3c\xef\xae\x5e\xf8\xe6\xe1\x34\x4b\xc8\x1f\xea\xdc\x7d\x52\x5b\x47\x65\x29\x7a\x2e\x29\xb6\x44\xe6\x99\x3a\x84\xcf\x46\x19\x81\x56\x87\xbf\xa6\xa2\x42\x3a\x0c\xe5\xdb\xf5\x6d\x6d\x74\xce\x50\x9b\x43\x55\xc6\xe7\x16\x9f\x15\xde\x53\x82\x5a\xaa\x4c\x8a\xa6\x09\x6a\xd5\xcb\xf4\x3a\xa2\x4b\xf0\x1f\xf7\xc6\xe8\x64\xe6\x59\x3c\xd1\xe6\x84\xf2\x72\xbd\xf4\xf0\x3f\x99\x5a\x5b\x6a\xce\xf6\x5c\x10\x79\x38\xfc\x9e\x98\x73\xa8\x19\x26\x0b\xef\xf5\x64\xf9\xc9\xf2\x89\x00\x6d\x70\x27\x16\xe2\x47\xb3\x78\x2f\x3f\x10\x01\x00\x94\x45\x86\x16\x69\x50\x56\x7d\x64\xff\x19\x9b\xe1\x87\x61\x15\x71\xc4\x7a\x84\x1a\xbf\x72\x19\xc5\xf3\x8d\xeb\x9c\xf8\xa7\xf5\x61\xa2\xc5\x7a\x48\x51\x6e\x93\x74\xca\x04\xf2\x4b\xa6\xc0\xf0\x37\x61\x4d\x12\xb6\x57\x5d\x19\x41\x5b\x45\x8f\x06\x3d\x1f\x46\x06\x60\xe0\xec\x02\x57\xd4\x52\x50\x9d\xb8\xe5\xfe\x2d\x3f\x9c\x1f\x88\x5a\x92\x62\x7d\x99\x4a\x2b\x22\x81\xf3\xc8\x9f\xdb\xb5\x0a\xfd\x48\x1e\x0f\x3b\xa8\x09\xcc\xbf\xfd\x8f\xb0\x3c\xbd\x8a\x0f\x4e\x88\xbd\x0e\x4a\x8f\x3a\x9f\xe9\xf3\xa0\x21\x6b\xbb\x5c\x88\xbe\x16\x88\x23\x75\x1d\xbb\xe4\xc5\x03\xb3\x7b\xf4\xc7\x63\xfc\x7d\x2a\xe7\x1e\xc6\x23\xa7\x92\x22\x7d\x98\xe7\x9d\x2a\x25\x4d\xac\x4d\x1f\x01\x6e\x4d\x74\x55\x4a\x1f\xbe\xe3\x45\x66\xbc\x8c\x2c\xbd\x89\x8c\xdc\x13\x58\xbc\x1a\xea\xea\xd4\x71\x2d\x3d\xf1\xea\x3e\xc1\x5c\x48\xb4\x3a\x1f\xb9\x6e\x47\x5a\x0c\x1b\xe6\x34\x3a\x7f\x7c\xcb\xf8\xb2\xff\x70\x50\x97\xc7\x03\x0c\xac\x5c\x49\x92\x53\x8f\x96\x04\x7c\x3e\x01\xe1\x73\x28\xed\xcf\x79\xd0\x3c\xf1\xb3\x6f\xc9\x6d\xeb\x81\xa8\xb1\xf8\x72\xc7\x20\x60\xb3\xd6\xdb\x77\x65\x34\x5c\x73\x98\xbd\xfb\xbd\x08\xa2\xa4\xd7\x8e\x08\xff\xe8\x88\xea\xb1\x24\x56\x48\x54\xa2\x39\x02\x6d\xec\x23\xa2\x5f\x7f\xa2\x43\x86\x8c\xfd\x71\xc9\xfb\xcd\xf1\x83\x15\x66\xe9\x8d\xfe\xb5\x95\x22\xfa\xc7\x73\xe9\xbb\x9d\x2f\x3a\xc9\x98\xdd\x16\xfd\x1a\xa5\xed\x41\x2f\x22\x57\x7b\xa1\x81\x68\xa8\x1c\xc3\x8d\xdf\xf0\xda\x7d\x1a\xb6\x2b\x39\x18\x4a\x45\x82\x0f\xc8\x2d\xc7\x4b\xce\xb3\x13\xcd\x35\x5a\xc7\xea\xed\x66\x6e\x54\x05\x7f\xea\xc3\x15\xfa\xe4\x1a\x5a\xea\xea\xd5\xb4\xc2\x2a\xf8\x23\x59\x6f\x25\x3f\x73\x61\xa2\x61\x79\x91\x89\xe7\x85\xda\x56\x82\xae\xab\x29\xfd\xe9\xdb\x0f\x93\x69\xeb\x27\x91\xb5\x74\xd3\x20\xc4\x34\xd8\xd6\x6f\x5f\xfe\xa1\x7b\xfa\x63\xa5\xbf\xaa\x5b\xac\x7f\x29\xf4\x84\x17\x34\x92\x18\x24\xd0\x6f\xa6\x3c\x48\x48\xa3\x39\x08\x0f\xbd\x2f\x90\x92\x14\x8c\x5c\xce\xe1\x31\xe7\x71\xbc\xf4\x8d\x1f\xc8\x01\x28\x33\xe4\xa5\x17\x82\x29\x1a\x0f\x59\x61\xf0\x47\x9f\x9b\x40\x31\xfb\xdd\xb5\x95\xef\x6f\x8a\x79\x76\x6e\x13\x21\x10\x54\x41\x4a\xa9\x85\xd8\x46\x4e\x5c\x6e\xfc\xb8\x70\xc9\x3f\xab\x16\xcb\xba\x48\x84\xde\x7e\xf0\x91\x50\x8c\x77\x4a\xf4\x35\x03\xd3\x28\x77\xe3\xdf\xc8\xa7\x0f\x3c\xbf\xac\xc9\x3e\x30\x5d\x72\x10\x7d\x5b\xf6\x3a\x18\xb9\xa3\xd0\x55\xb9\x96\x55\x44\x5b\x08\xf9\x11\xa3\xd5\x20\x86\x83\x9e\xff\x56\x76\x02\x9b\x76\xf8\x84\xad\xdd\xbd\xef\x44\xee\x1e\xd3\xad\xf1\xfe\x00\x03\x70\x35\x08\x23\x5e\xa0\x14\x37\x8a\x11\x61\x6b\x39\x92\x8b\xbe\xca\xa9\x6d\x2c\x74\x4d\x4a\x3c\xbb\x57\x84\x76\x32\xb2\x25\x88\xfb\x66\x4c\x68\x3b\x16\xf3\x0b\xd4\xbd\xc7\x96\xb5\x57\x72\x92\x2b\x9d\x89\xbb\xa0\x19\xde\xc0\xc7\x49\x34\x92\xf9\x73\x44\x14\x73\xab\xb9\x2d\xf0\xb0\xb9\xe8\x6b\x77\xaf\x1f\x49\x80\x39\xb2\x35\xc4\x98\x75\x59\x2d\xa7\x03\xbe\xd7\x52\x8a\x68\x34\xcd\x48\x66\x4f\x6f\x4c\x04\xda\x75\xc6\xd7\x33\x3d\xf9\x59\x9b\xe4\x9f\xfa\x81\x12\x00\x90\x5b\x78\x0a\xe5\x11\x2a\xba\xf7\x84\xe2\x67\xdb\x62\x73\x46\x68\xbc\x2b\x9f\xe4\x28\x84\xdf\x64\x1f\x5a\xa9\xc3\xe0\x8d\x7d\x3b\xe7\x29\xbf\x8d\x9a\xf5\xa6\x39\x01\xa1\x85\xe1\xeb\xfd\xa0\xcb\x47\xf4\x91\xc8\x7f\x2f\xcf\x70\xe0\x1a\x1d\x28\x42\x0c\x4f\x05\xb7\xf3\xa4\x23\x84\xff\x76\x5f\x36\xb8\xce\x68\xb9\xf7\x41\xad\xa0\xe4\xa1\xb6\x67\xc7\x1e\x2d\x8e\x4b\x2a\x8d\x26\xef\xb2\x2a\x1c\x5e\xef\xfa\x5c\xbc\x1c\xb4\x9a\x78\xc8\x0a\x8e\xaa\x48\xb0\x03\x01\x3c\xea\xe2\x08\x39\xe3\xee\x52\x94\xbc\x2e\xdf\xe7\xdc\x8d\x97\x16\x1d\xda\xd3\x9b\xf9\xea\x26\x63\xc9\x92\xe4\x48\x85\x5c\x15\x63\x03\x1b\x5b\x1d\x8a\x0f\x35\xad\x3f\x4e\xfb\xc5\x63\x56\xbd\x29\x68\x34\xea\x04\x90\xbf\x9e\xa1\x48\xa9\x5c\x66\xe5\xde\x9d\xb3\x30\x5d\x32\x95\xde\x38\x6a\x87\x4f\x62\xfe\x21\x8f\x6f\x05\x39\x36\x69\xad\x44\x2f\xec\x99\xe5\x89\x43\xd6\xff\xc0\x00\x69\x52\xf3\xc1\x93\x44\xc3\xda\xbb\xdf\x4a\x3f\x9b\x78\xa4\x80\xff\x72\x99\x8c\xd5\x01\x76\x3b\xf4\x1a\x00\xb0\x14\x70\x9b\xc2\x56\x94\x3e\x0b\x9e\x3e\xae\x3a\x29\xad\xe4\x75\x8c\x03\x9b\xc1\xd8\xbf\x16\x38\x7b\x55\x6d\xb3\x72\x97\x4c\xbb\x45\x68\x7c\xf2\x8c\x3d\xa6\xde\x26\xca\x79\x8e\x49\x9e\x39\xbe\x7a\x1e\x0c\xb8\x50\x51\xae\x1c\x44\x0a\x52\xee\xe9\x9f\x17\xa5\x98\xb7\x3e\x64\x1f\xcd\xe9\x08\xba\xfa\xd7\x2f\x8c\xf9\xe9\x6c\x9d\x7d\x1a\xbb\xbe\x97\x73\x23\x70\x36\x1c\x15\x9e\x9f\xef\xf5\x9e\x17\x8f\x29\xd8\xb7\x03\x9d\x82\xa2\x5e\x26\x5a\x99\xb9\x0f\x84\x5e\x03\xa3\xbf\xbd\x99\x51\xf1\x3d\x62\xb2\xe4\x25\x99\x25\x64\xbc\xa9\x95\x42\x91\x22\x58\x99\x51\x43\x17\xb9\x71\xe1\xbf\x8d\x1a\xc6\x46\x1c\xb8\x6a\x6b\xb4\x27\x09\x6d\x6b\xd9\x21\x88\xf7\x46\xdd\xed\xa2\x20\x32\xd0\x1f\x46\xca\x0a\xb4\x31\x7f\x97\xf1\xe7\x99\x42\x4c\x13\xd1\x37\x7f\xcc\x50\xc6\x35\x77\x55\xea\x09\x87\x22\x1a\x5b\x48\xda\xee\xd8\x21\x75\x10\x0c\xf3\xac\xfe\x71\xda\x17\x78\x61\x5f\xb6\x8f\xd5\xc6\xf7\x87\x35\x1d\xd8\xe6\xfd\x45\x1a\x35\x95\xbe\x26\x34\x5a\xe2\x00\x51\x6e\xcf\x6e\x31\x29\x22\x88\x1f\xc6\x3f\xe5\x02\xa7\xaf\x3d\x2a\xe7\x57\x76\xe4\x9c\xe9\xdb\xd3\xb1\x6b\xec\x86\xb0\x4d\x0f\xb4\xe3\x29\x77\x82\xb7\x1f\x21\xb8\xa8\xb1\x5e\x5f\x74\x1b\x3e\x7c\xad\x78\xc0\xd6\x67\x6b\x3e\xe5\xc7\xdc\xe8\xeb\x37\x48\xe8\x39\xd8\xb6\x95\x39\xdf\x80\xf7\xef\x0e\xaa\x5d\xc1\x6a\xd8\x86\x43\x9e\x8a\xf6\xbb\x7f\xbf\xb9\xf4\x38\x76\x44\x0d\x7d\x04\x58\xc1\x51\xab\xe9\x40\x28\x4f\xba\xbb\xd3\x5d\xc5\xd5\x1a\x04\x1a\x55\x48\x55\x8d\x8d\x9d\x67\xcd\xf1\x2d\x64\xf8\x84\x15\xfc\x7a\x1e\x3b\x11\xce\xd4\x9f\x57\x56\xc2\x5f\xb3\x15\xaf\x57\xb8\x96\x9f\x39\x35\x06\xf9\xc1\x58\x43\xa0\x77\x06\x1d\x4d\x53\x83\xc2\xb7\xe4\xdf\x04\xd2\x06\x9f\x69\xf9\x4f\x1c\xed\x85\xa8\xf0\x71\x53\xbf\x9b\x6e\xbb\xc8\x3e\xba\xd7\xb7\x58\x6b\x1b\xf2\xfa\x27\xa2\x88\x06\x0b\x77\x17\x4a\x3c\x06\x99\x3c\xcd\xb3\x8b\xff\x3d\x87\x2b\x7c\x68\xaa\x4f\x4a\xc3\x38\xdd\x7a\x08\x6a\xe3\xf8\x03\x57\x05\xa4\x28\xe9\x68\xe1\xad\xbf\x5b\xb6\x0c\x48\x50\x2e\x3d\x8e\x24\xf0\xa5\xc0\xac\x17\x3b\xa0\xc1\x4c\x28\x00\x00\x24\x07\x64\xac\xf5\x7d\xc9\x3a\xbb\x5e\x4b\x27\xba\x83\xda\xc1\x66\x76\xf4\x3e\x2a\xb8\xc1\x58\x23\x0c\xa8\x14\x0e\xc9\xbf\x77\xa3\xff\x1e\x5a\x19\x25\x98\x43\x3f\xd5\x94\x72\xb7\x9c\xf2\x63\x6a\x74\x2e\x78\x31\xcd\x13\xda\x98\xaf\x3d\x3b\x8f\xc6\x3e\x3d\x24\xfa\x62\x0a\x18\x93\x76\xc6\x05\xc4\xd2\x45\x16\x7d\x50\x80\x57\xf2\x0a\x60\x22\x0e\xf0\xe2\xb0\x02\xef\x53\x78\xd9\x78\x44\x49\x90\xc0\x63\x3e\x3f\x49\xe2\x20\x0a\x7b\x77\xe9\xb5\x09\x29\xe2\x91\x00\x40\x95\x59\x7e\x88\x70\xa6\xe8\x1b\xe7\x79\x4e\x5c\x6e\x2e\x25\xc8\xbe\xce\xed\xc0\xab\xcf\xf9\x1d\xbc\x80\xe0\x29\x3e\x68\x7d\x00\x2f\xe2\x01\x25\xe4\x5f\x6d\xe4\x8f\x6e\x32\x36\x76\x28\x24\x70\xfc\x67\x6e\xec\xe5\x2a\x72\xab\xbf\x27\x70\x1f\xa9\x94\xd6\xa2\xc4\x54\xb1\xe2\xd3\x7a\x1a\xa4\x80\x1e\xbc\xfa\xa0\x4b\xe2\x59\xae\x71\xd4\x87\x3e\x0b\x06\xdf\xb4\x1f\xe2\xa2\x71\xf0\x51\x10\x19\x32\x90\xf3\x77\x16\x62\x24\x92\xc6\xfc\x3e\x69\xe8\xeb\x8b\xb9\xbe\xca\x9e\x1d\x83\x57\x8f\x15\x02\x60\x80\x34\xb9\x39\xe7\x5e\x65\x5d\xbc\xde\xdc\xe0\x46\x3c\x73\x22\xe3\x7e\x63\xaf\x98\xf2\x06\xab\x69\x80\x26\x1d\x2a\x86\x9a\x37\x1c\xf4\xf2\x01\x49\x7d\xfb\xa6\xab\x0c\x84\x8a\x76\xd5\xbd\xa8\x59\xfc\xf7\xb3\xae\xd6\x05\xb3\xa2\x3d\x7b\x47\x81\x2d\x7b\xed\x2e\x1d\xb5\x51\xe5\x74\x49\x14\xf8\x7f\xbc\x97\x57\x34\xdb\x0f\xfc\xf7\xbf\x89\x84\x20\xad\xad\x56\x25\x46\xd1\x58\xb1\x4a\xd5\x48\xd4\xa6\x46\xad\x1a\x35\x6a\x14\xa5\x76\x6d\x22\x54\x55\x6d\x35\x6a\xd7\xae\xd9\x2a\x4a\x6b\x6b\x51\x7b\x54\x8d\x9a\x8d\xad\x45\xad\x18\x21\xcf\xf9\xfd\x9f\xab\xe7\xe2\xb9\xfd\x9f\xf3\xb9\x7d\x9d\xcf\x7e\x9f\xf3\x06\x0c\x4c\x46\xbf\x55\xf5\x1e\x96\x0e\x2b\x8b\x5b\x82\xd6\x28\x90\x65\x94\x50\x0c\x8d\xfd\x1f\x78\x0c\x39\x0f\x00\x96\x8d\xfb\xbb\xab\x6c\x24\x42\xd5\x69\x13\xea\x14\x3c\x44\xa3\x34\x70\x06\xc8\xe8\xe1\xcd\xdc\x96\xa2\x96\xe6\xf1\x1f\xa6\x19\x16\x15\xb0\x4c\xb7\x9f\xf2\x47\x23\x04\x15\xdb\xe2\x51\x00\x08\x82\x26\x39\xe4\x8d\xed\x6d\x8f\x7a\x11\x2d\xfd\x89\x52\xdb\xc4\xbc\xb5\xb0\xd5\xd3\xbb\xdb\xed\x16\xce\xc2\x76\xd8\x7c\xda\x27\xf0\x9f\x43\x54\x0f\x86\x9a\x63\x3f\x65\x13\xdb\xea\x4d\x06\xa9\x30\x7a\x54\x34\x38\x50\x4e\x17\xd3\xa8\x7d\x31\x58\x60\xd5\xb0\xa7\xd6\x42\xc9\xe8\x20\xa1\xae\x0a\x26\xb9\x7f\xb9\x78\x1b\x6f\xa0\xe5\x1d\x84\xb1\x41\xc9\xf5\x0b\x9b\x71\x04\xbd\xfb\x61\x1a\x6a\xc9\xf2\x37\x7d\x18\x7a\xe8\x64\x5d\x44\x8f\xe9\x11\xf8\xb6\x57\x76\x83\x78\xa3\xfa\xc4\x0f\x40\x3f\x4d\x8b\x4f\xab\xf5\x60\x6e\xf3\xf2\x5f\x3c\x6b\x5d\x2d\x3d\x0e\x56\xc7\x2c\x16\x60\x74\x33\x31\x31\x89\xda\x85\x9c\x39\x35\x16\xdc\x77\x02\xea\x96\x94\x56\x8d\xd5\xef\x40\x1e\x29\x01\x92\x8c\x42\x40\x74\x52\x9d\x14\x72\x73\x7d\xc3\xbe\x57\x43\x3f\xb9\xc5\xed\x74\xb2\xaa\x6c\x23\x30\x43\x74\xe8\x09\xed\xb2\x9d\xef\x01\x05\xeb\x10\xae\xd5\xa2\x3e\xed\x5a\xed\xcf\xa3\xe7\xdf\x1a\xfb\xb3\xe5\x3d\x34\x18\xa1\xa9\x51\x1d\x48\x2c\x6e\x39\xe2\xb6\x23\x26\x44\xf9\xec\xf4\x65\xcf\x49\x51\x34\xb9\xc9\x1e\x01\xb0\xc9\xa2\x7a\xf6\x65\x6f\xed\xdb\x84\xfb\xc9\x1e\xdc\xa9\xbc\xf7\x97\x28\x92\x18\xea\xf3\x5a\x3b\x6c\x1d\xfe\x16\xef\x20\x9a\x9f\xce\xac\x75\xeb\xd6\xab\x1d\x1e\x60\x8d\x02\x49\x88\x00\xdb\xc2\xf8\x82\x40\x2a\x14\x69\x3f\xa8\x13\xe5\x2a\x60\x15\x4e\x06\x0d\x0a\xa5\x6b\x56\x8d\x31\x79\x38\xdf\x2e\x12\x30\x50\x56\x2b\x3a\xbd\x35\xbf\x2d\x13\xfa\xee\x87\x69\xe4\x67\x86\x7a\x2e\x13\xdf\x7c\x49\x03\x18\xbc\x42\x1c\x67\x1d\xc1\xfe\x58\x55\x96\x5c\x20\x1a\xda\x2b\x7c\xd9\xf0\xd9\xf4\xec\x27\xa1\x6b\xca\xfa\xd7\x77\xd2\xc4\x64\xe9\xf1\x17\x73\xfd\xd3\x1a\xde\x3e\x9a\x66\xfe\x03\xa7\x32\xd2\x2d\x51\x47\x05\x57\xb9\x8a\x93\x7d\x21\x82\xec\xff\x08\x55\xc7\x9f\x43\x06\xad\x0d\xe2\x75\x0f\x62\xa0\x15\x08\x0e\x88\x00\x7d\x60\x4c\xcd\x9d\x7d\x55\x95\xb0\x0f\xd5\xd6\xa7\x5b\x4e\x3b\x9c\xfe\x57\x87\x6a\x39\x40\x43\x7a\x67\x79\xa5\x20\xac\x43\xb7\xd1\xca\xba\x9f\x62\x80\xc7\xc7\x8d\xcb\x8d\xc8\xa3\xb5\x32\x19\x3e\x67\x0a\xdc\xe2\x75\x10\xb0\xd7\x17\x93\xae\x75\x2f\x1b\x12\x2c\xf0\x15\x41\x5a\xa2\xf2\x3e\x49\x43\x66\xa4\x4d\x2f\x84\xe2\x3a\xe3\x5b\x52\x54\x31\xd2\xdd\x36\x0f\xdd\x9d\x4f\xa7\xfc\xeb\x6a\x6b\x27\x1b\x6c\xbe\x7f\xfe\xc3\xc9\x51\xf6\xe9\x65\x94\x4e\x76\x1f\xa7\x81\xf9\xfc\x40\x20\x79\x59\xdc\xa6\x9c\x34\xf2\x82\x9d\x0c\x00\xb3\xc0\x12\x80\xa3\x15\x5c\x4c\x56\xda\x05\xc2\x76\x18\x98\x01\x7b\xb4\x2a\xe4\x50\x9a\x8c\x63\x62\x48\x82\xe2\x14\x80\x95\x98\xa8\x90\x31\x43\xd3\xc5\xd9\xc1\xd6\x8b\xae\x88\xa3\x84\xcd\x09\x52\xf1\xae\x8b\xc5\x06\x4d\x84\x38\xa7\x7c\xf8\xae\xcb\xd8\x29\x59\xc9\xea\x49\x98\xf5\x07\xbc\x40\x8e\xae\xa7\x96\x0a\x52\x0b\x8e\xe9\xfa\xc7\x96\xc3\x5c\x16\x09\x29\xa2\x4b\xb2\x2a\xe2\xdb\xba\xa9\x2d\xbc\x5c\x09\xe0\x82\xaa\x2b\xc4\x5b\x1a\xb3\x43\x7d\x4a\xde\x86\xc9\x12\x3e\x7c\x32\xd1\xf3\x30\xa2\xfe\x59\xbc\xeb\xc7\x6c\xa5\xe6\xa6\x20\x76\x9b\x7c\x2c\x6e\x5d\x4e\x7a\x53\x16\x23\x0f\x4c\x7b\xf2\x82\xbb\x76\x35\x0e\xef\x44\xe4\xfb\x41\xa0\x1d\x4d\xc5\x31\x38\xe7\x6b\xef\xcb\x61\x7d\xbe\x1a\x62\x92\xfb\x81\x1a\xe6\x97\xfd\xa6\xc7\x95\xfe\xc4\xea\x5a\x4b\x6e\xe1\xff\xa6\x05\xbb\x19\xe3\x16\xa0\xab\xf4\x74\x93\x54\x16\x6c\xbe\x5b\x1b\x1e\x58\x72\x34\xe6\x34\x56\xdd\xe1\xc9\x93\xb4\xc6\x80\x91\x40\xdf\x88\xb3\x3d\xec\xb6\x57\x58\x50\x1e\xdd\x53\x0e\x77\x16\x5b\x9c\x1f\x08\xf1\x6b\x7e\x77\x59\xb1\x39\x51\x2b\x84\xaf\x99\xd0\x69\xf9\xad\x8f\xad\x97\xbe\xbc\xec\x35\xb3\x20\xaf\xb5\xfe\x6a\x68\xa7\xc0\xb1\xe6\xc4\x00\x74\x7a\x6d\xd7\x84\xc0\x49\xf6\x06\x40\x0e\x1e\xc4\x8b\xe4\xb8\x8a\x2e\x58\x64\xf2\x14\x81\xd4\x89\x59\x06\xd9\xdf\x39\x4f\x33\x3b\x96\x5c\x1c\xfc\x5c\x25\xbd\x19\x9c\x25\x59\x8c\xb4\xf5\x41\xf9\xff\x42\x85\x93\x85\x08\xe4\x8d\x83\xb4\xe3\x8b\x17\xaf\x86\x23\x7a\xa3\xa8\x36\xdf\x46\x48\xf3\xe0\x1e\x2d\xa5\x78\xd3\x14\xe5\x9b\x7e\x6a\xef\xdd\xe3\x54\x92\xc9\xbb\x23\x69\x66\xa3\xf0\xbe\xcd\xd4\xf5\x5d\xbb\x2b\xe5\xe1\x15\x81\x3e\xc9\xe4\x82\xce\xd7\xc3\xaf\x52\x70\x96\x12\x17\xe4\x73\x41\xd9\x2d\xf2\xf1\xc4\xe4\xf1\x5d\x39\x06\xd0\x98\x01\xc6\x86\x8f\x87\xe4\x36\x22\x6e\x74\x8a\x6d\x87\x7f\x55\xc5\x34\x8d\x6b\xce\xde\xc9\x41\x81\x45\x12\x45\xdb\xda\x52\x03\x09\x0d\xf3\x7f\x64\x7d\xae\x5a\xe6\x1d\x2a\xde\xe3\xb9\xcf\xb8\x27\x97\xec\x68\xc6\xd0\x5e\xf5\xa0\xd3\x46\x11\x35\xa3\x1c\xf6\xde\xc1\x43\xc6\xf7\xa9\x0f\x8a\x60\x0d\x02\x5d\x54\x16\x7c\xf8\x06\x00\x7a\x59\xeb\x6a\xb1\x9d\x54\x6c\xf3\x1b\xbd\xad\xde\xbd\x3d\x36\xb4\xe5\xd6\xbe\xaf\x07\x0f\xa8\xd6\xe2\xb7\x4d\x08\xd9\xd0\x17\xa1\x96\x74\x1b\x0f\x51\x7d\x5d\xe6\x19\x7f\x73\x99\x73\xfa\xb7\xf4\x16\xce\x53\xc9\xbe\x65\x67\xed\x7f\x56\x5b\x42\x3b\x42\x00\x07\xc0\x88\x1c\x91\xcf\x4f\xcd\x6b\xfb\x40\x0f\xc3\x76\x55\x8e\x15\xac\x8e\xb9\x66\xfd\xeb\x7b\xdb\xe5\xd9\xb3\xb5\x5f\x81\x1a\xe6\x9d\x75\x9d\x65\x2a\xda\x80\x58\x8c\x5b\x50\x2c\xa9\xf0\x2d\x55\xf8\xc7\x54\x62\x18\xa9\x69\x45\x41\xa1\x2f\x50\x46\x83\xe1\xa9\x27\x2f\x65\x8a\x02\xb8\x28\x36\xe2\xe4\x54\x42\x2e\x22\x2f\x81\x01\x1e\x76\xa8\xe0\xfe\x49\x23\xa4\x21\xdc\xea\x53\x3e\x75\xa1\x93\x82\x53\xd5\xad\xfa\xe7\x77\x34\x7a\xe6\x27\xa3\x8f\xe7\xe3\x7a\xdb\x6a\xbc\xbd\x73\x35\x1f\x3d\x4c\x8f\xbb\xfc\xf8\xd5\xe4\x6b\x4f\x91\xda\x3a\x95\xf2\x67\xa3\x0b\x3b\x4b\x82\x49\x47\x08\xc0\x0f\x95\xbe\x35\x82\xd1\x5e\x7f\x6f\xa8\x8a\x49\x14\xc4\x10\xea\x4f\xb6\xf4\xd6\x26\x65\x9f\xd5\x2d\xa2\x66\xfb\x39\x92\xd7\x2d\xf5\x7c\x7b\x18\x52\x70\x9c\x06\xcd\x8f\x2b\x49\xeb\x2c\x52\x01\x1e\x95\x4b\x61\x4d\xe6\xbe\xfe\xa8\xf4\xc5\x3a\x93\x65\x15\x0d\x20\x2a\x75\xa9\xfc\x11\x00\x40\x3b\xa5\x7c\x68\x22\x11\xdc\x54\xec\x17\x6d\x2a\x4a\xa5\xfa\x47\xdf\x1a\xb3\x5a\x2d\x26\x6a\xad\x2a\xb7\x3c\xc4\xea\x27\x77\xb3\x94\x42\x53\xb5\xea\xa4\x87\x9e\x5e\x32\x24\xdf\xcb\x5d\x24\x3b\x57\x9f\x2e\x92\x57\xd4\x09\xeb\xf8\x3e\x01\x5f\x05\x90\x98\xad\x12\xc0\x68\x97\xde\x0e\xb9\xa6\x32\x48\x0b\xa0\xad\x20\x51\xdf\x23\x14\x79\x31\xcb\xfc\xe1\xfe\x8b\x9f\xcf\x7b\x9e\x1d\x5b\xbe\x72\x3f\x92\x67\x52\x7d\x73\xd8\x7a\xef\x36\x23\xa0\x3a\x25\xbc\x57\x50\xf2\x2f\x9f\xcb\x81\x94\xff\x94\x65\x5e\xdc\xdf\xe7\x69\xb3\x1b\x54\x54\xcf\x51\xc1\x05\xad\x05\xe3\x4f\x33\xbb\x5e\x5f\xed\xb9\xc4\x2f\xaf\x9f\xfa\x07\xb0\xa7\x43\x57\xb5\x3e\xdb\x0d\xbc\xaf\x62\xb3\xe8\x6a\x43\x5b\xde\x38\x6d\x2a\x69\xb6\x75\x36\x3e\xf9\xf9\xb8\xeb\x91\x4e\x68\xef\xfe\xb4\x99\x8c\x5e\x5e\x51\x8a\x03\x6f\xad\xc4\x81\x26\x38\x6c\x66\x9f\x5c\x8b\x58\xac\x22\x7f\x19\xc9\xf8\x95\x08\x1c\x80\x92\x20\x6b\xbf\x07\x3c\x17\xe2\x6e\x82\xe1\x1b\x47\x90\x28\x15\xa4\x0e\xff\xca\xce\xeb\xa1\x3b\x1e\xee\x6b\x6d\xad\xb3\xa3\x3b\xe5\x39\x1b\xa9\x6d\x9f\xd8\xb1\xda\x38\x9c\x51\xe0\x52\xf9\xef\xa2\xcf\x0c\xa4\x95\xbe\xfd\xf0\xc0\xa4\x23\x59\xa2\xb7\xf5\x2a\x9a\xd0\xfb\x0d\x73\xbf\xa6\x03\x3d\xd2\x81\x64\x40\xfb\xde\xcf\xfd\xf9\xd2\x3f\x26\x99\x8e\xdd\x58\xcd\x87\x99\x18\x66\xf1\xdd\xba\x07\x62\xa8\xed\xfe\xed\xf3\xf8\xe8\xb5\xa9\xad\xd9\xa1\x92\xf4\xb3\xb4\xaa\x81\x85\x9f\x14\x67\xde\xb2\x8d\x23\xb6\x7a\xeb\xb7\xf5\x1c\x43\xef\xec\x5e\x9c\xb7\xb7\x19\x5d\x2c\xf2\x9e\x02\xb7\x7c\x5b\x80\x4c\x3a\xdc\xe0\xfa\x35\x82\x02\x1b\x16\xf2\xf5\x15\xf4\xdb\x27\x6a\x6e\xda\x88\x4a\x99\x8b\xd9\xd6\xa1\x39\xd9\x5a\x93\xa3\x8c\x23\x9c\xde\x37\xa5\x95\x9b\x2a\xda\x60\x3d\xcc\x6a\x42\x51\x8c\xbe\x85\x3c\x59\xed\xdb\xa1\xf2\xcc\xc8\x99\xfe\x27\xda\x9d\x65\xbb\x1e\x0f\xff\x54\xaa\x22\xeb\x08\xc3\x6f\x1d\x72\x6f\xf1\x1f\x04\x67\x5e\xe5\x65\x6a\x48\xef\x78\xa9\xcb\x1c\x2f\x7b\x19\x17\x85\xbb\x91\xde\x20\xb7\xb4\x8d\x86\xaa\x26\x8f\x4a\x56\x4b\x83\x5a\x9d\x2b\xfd\x3f\x8a\x05\x77\xc3\x36\x9e\xc4\x22\xcd\x62\x20\xcc\xc3\x0f\x15\xd4\x14\x4e\xbd\xc7\x2e\xa7\xc2\x43\xcb\x8e\x33\x32\xe9\x70\x5f\xb1\x20\xcf\xe8\xb8\x9b\xe0\x2e\x77\xfc\x5b\x58\x4c\x34\xa4\xee\x95\xa8\xdf\xd1\x82\xd3\xce\x93\x4f\x09\x83\xb2\xba\xf9\x6b\xe8\xdb\x7b\x56\x49\xf3\x21\x11\xee\x66\x0c\xf9\x0d\xd2\x97\x86\x93\x70\x25\xc5\xfe\x13\x7d\x59\xda\x9d\x4b\xeb\xe1\x27\xea\x5f\x3b\x0a\x42\x22\xb0\x32\x94\xd1\x7f\x51\x9a\xd9\x6e\xe2\xdb\xfc\x0a\xda\x70\xe5\xb3\x83\xa6\x99\x73\x2d\xb1\xb0\x1e\x88\xa1\x19\xa7\xc5\x71\x90\x89\xcd\x43\xd7\x77\xb2\xb4\x8d\xde\x53\xfb\x33\x95\x41\x18\x1b\x03\x48\xf3\xac\xcc\xd9\xc9\xf5\x4d\x8d\x46\xe9\xcb\x8f\x74\x35\xb7\xc8\xbf\x88\xb5\x32\x4a\x7b\xe6\xae\x4a\x98\xfa\x37\xf4\xb1\xb8\xdb\xa0\x76\xf4\xe3\x41\x7a\x06\x7a\x56\x5a\x9a\xec\x78\xfe\x97\x38\x7b\x7d\xcc\x4f\xc7\x57\x36\x33\xfd\xad\x47\xbf\x23\x4e\x27\x73\x8a\x44\xde\xc2\xe4\x6c\x54\x46\x70\xbd\x5f\x29\x2c\x59\xf2\x3f\x49\x5f\xbe\x77\xa2\xe4\xa4\x32\x0f\x7f\x6c\xdf\x79\xbb\x82\x33\x82\xa2\x8c\x89\x22\x32\xaa\xe3\x3d\x29\xc2\x4b\xf0\xb7\x61\xbe\xf2\xce\xe3\x97\xf0\x40\x37\xae\x48\xe5\x94\xb1\x91\x20\xdd\x76\xf3\x5b\xac\x66\x1c\xb3\x16\x63\x86\x4f\x9d\xac\x8e\x73\x36\x27\xbe\x70\x94\x8d\x08\xe3\xab\x7e\x6b\x87\x4b\xf3\x83\xda\x1f\x9d\x85\x1f\x2f\xfc\x9d\x25\xef\x39\x8f\xcd\x2c\xa9\xaa\x1f\x80\x14\x36\xc4\x8b\x44\x0d\x81\x41\x2a\x67\x83\xe1\x88\xd7\xf3\x20\xbb\x5c\xdc\x7b\x53\xcc\x74\x00\xbf\x05\x5a\x68\x8b\xba\x0f\x8c\x31\xa5\x73\xfe\x77\x94\x3b\xf8\xa4\xf6\x8f\xd3\x82\xf9\xfb\xc9\xca\xa6\xbb\x4b\x8f\x92\x00\xa5\xb2\x3a\x2e\x83\x66\x82\xf0\xfe\x87\xea\xbd\x17\xf7\x72\x95\x85\x2c\x3b\x53\xab\xf1\x5f\x3e\x9a\xf8\x6e\x73\x33\x29\x15\xbf\x8a\x28\xa7\x67\x4b\xd7\x94\x3b\x16\xa3\x90\xb3\xa1\xeb\x2c\xef\x51\x0a\xca\x4b\x6f\xc9\x70\xd8\x63\x9a\x3f\xe7\x28\xdb\x4a\xfb\x9c\xde\x6a\x3d\x39\xa5\xed\x7e\xa4\xfe\xd3\xd1\x5f\x37\x5f\xa9\x0c\x7a\x98\xce\xdb\x67\x22\xd0\xc7\xbb\x19\xf3\xd8\x41\x81\xbf\xac\xae\x2d\xfb\xe0\xd2\x21\x2e\x0c\xb4\x01\xcd\xa4\x30\x00\x72\x98\xf8\x62\x71\xce\xbf\xc6\xca\x61\x31\x6b\x50\x07\x16\xec\xbe\xf8\x8e\xa5\x78\x4b\x5b\xea\xc5\x99\xb6\x51\x6b\xfc\x1d\x88\x58\xce\xfb\xfd\x25\x3b\xcc\x6a\x63\xef\xd7\xe8\xa2\xd8\x5e\xf7\x78\xe5\x6a\xf6\x90\x27\xca\xeb\x7f\xdd\x59\xe7\xb4\xe7\x61\x56\x9a\x23\xec\x31\xaf\x70\x84\x97\xac\x3d\x07\x8c\xfc\x17\x39\xc7\xd3\xe5\x71\x4f\xf6\x34\x24\xce\x5c\x28\xc9\xd3\x7b\xd9\x4a\x26\x53\x4f\x82\xec\xaa\x4b\x6d\x6e\xce\xf6\x07\xf5\xd8\xcb\xc6\xe1\x16\x7e\x50\x04\x19\x31\x38\xe4\x52\xd7\xa9\xde\x70\x00\xd6\xdf\x7d\xc4\x04\xe9\xba\x29\x59\xf8\x5e\x0e\xd1\xd9\x88\x90\x9b\x47\x1c\x28\xf4\x54\x31\x99\xcc\x31\x5f\xc0\x6b\x70\xd2\xa3\x5c\x3e\x6a\x5e\x64\xdb\xbe\x16\x23\x68\xcc\x1d\xdf\x1b\x49\x9d\xf2\xc5\x7a\xd2\xa3\xed\x43\x6e\xe8\xb9\xc5\xbd\xf6\x4a\xa8\xef\xac\x6b\xda\x08\x9c\x11\x99\xa4\xda\x28\xf7\x9c\x43\x70\x5f\xc8\xd6\x7b\xca\xfe\xd1\x84\xe9\x37\x75\xa3\xf5\xec\x17\xec\xe1\x3e\x95\x4b\xdc\xa6\x22\x8b\x8d\x93\xf6\xe2\x9d\x72\x6f\xf1\x76\x79\xf8\x93\xc0\xf1\x11\x02\xfa\x29\x49\x29\x88\x5b\xf6\xe4\xdf\xb3\xa1\xe5\x2d\xeb\x9b\x0d\xcc\x3e\xd5\x35\x19\xe9\x16\x5b\x69\x39\x03\x3f\x45\x13\xe7\xc7\x29\x82\xee\xfe\xad\xda\xc9\xc8\xc4\xf1\x26\xf3\xff\xaa\xee\x7f\x91\x23\xc1\x88\xfb\xc5\x41\x5e\x2a\x12\xae\x0e\x3f\x5a\xf8\x3b\x1b\x0a\x38\x77\x2d\x55\x47\x08\x01\x4e\x5c\xcc\xc0\xfa\x20\x1b\x2f\xb2\xed\x1e\xba\xcd\x04\xad\xc3\xbf\x92\x6e\xb1\xb5\xf5\xe4\xce\x8c\x6c\xfe\x1d\xc9\xf6\x14\xbf\x99\xae\xe2\x5d\x3a\x10\x6e\x67\x18\x8c\x75\x48\x65\x2a\xf7\x53\x84\x7e\xc9\xe3\x7d\x66\xa5\xf6\x67\xba\x62\xfa\xc9\x46\xc8\x2e\x72\xfb\x3a\x97\x13\x49\xfd\x1b\x0d\x57\xe2\xcb\xd1\x55\x94\x1d\xa9\x3a\x9a\x2f\x4d\x58\x2f\x30\x24\xe7\xc1\xe5\x7b\xb9\xb0\x45\xed\x7c\xea\x2e\x6f\xb1\x09\x56\xb7\x49\x0b\xf7\xf2\x57\xb4\xee\x7e\xa2\x84\x0f\x32\xdd\x65\xdb\xf2\x65\x66\x2c\x7a\xa6\x99\x51\x6a\xa8\x3e\x70\x1a\xff\x2f\xf7\xcf\x52\x3e\x93\x27\x62\xc2\x78\x9c\x91\x2c\x1e\x71\xf9\xb7\x7a\x36\x9c\xb8\xa9\x7d\xce\x70\xe8\x71\xe5\xab\x15\xee\x36\x18\xda\x01\x95\x28\x48\xf3\xbc\x2f\xd8\x59\xdc\x82\x23\x24\xfb\x99\x6f\x96\x84\x6e\xef\x08\x07\xbf\xf9\xa4\xe3\x3e\x48\xdb\x14\xa5\x49\xdd\x71\x03\x64\xc6\xb8\xa9\x09\x58\x1a\x98\x13\x20\x28\x25\xa6\x60\xee\xd4\x3b\x35\xbc\xcf\xb8\x4c\xb8\x1a\x4d\xac\xdf\x71\xb6\x58\xc9\xe2\x9d\x8c\xd6\x9f\xdd\x5d\xb7\xd6\x21\x28\x95\x49\xde\x74\x03\x92\xb8\xc5\x62\xf2\x05\x2f\x14\x5c\xed\x73\xf7\x32\xe5\x74\xf3\x51\xe6\x19\x2e\xe9\xbd\x87\x85\xd5\x0e\xd7\xdc\x1a\x5e\xfb\xcc\xd4\x2d\x4f\xdc\x88\x9f\x70\x8c\x4f\x75\x7c\x9e\xfa\xdf\xf5\xa5\x3a\x44\x68\xf7\x31\x52\x53\x26\x7f\xcd\x4c\xcb\x3a\x9f\x80\x97\xd5\x79\x67\xfe\x23\xaf\x88\x5b\x57\x91\x12\xcf\xcd\x77\xe9\xf5\x1a\x29\x1f\x89\x75\xe4\x44\xd8\x7c\xa5\xe5\xc7\x42\x8a\xfd\x18\x75\xb5\xaf\xfe\x61\x00\xc7\x22\x9b\xef\x68\xac\xe5\x4e\x7d\xfa\xb8\x5b\x35\xd9\xb0\xce\x8c\xad\xd7\x5a\x44\x48\x32\xf3\x50\x43\x18\x3b\x52\x91\xa1\x5a\x1d\xe9\x90\x59\xbc\xa6\x25\x7d\xb9\x7f\xea\xd5\x01\x50\xaa\x63\xe2\xcb\xd8\x5e\x87\x6f\xf6\x85\x9b\xa8\xc2\xcd\xf2\x42\xc7\xca\xc2\xbf\xa8\xae\x83\x37\x70\x2e\xb5\x93\x1a\x5e\xb0\x19\x83\x42\xc1\x7d\x5f\x28\x05\x80\x5b\x71\x08\x90\xc3\xa9\xa9\x16\xf5\xdf\x9c\xa0\xe8\x8a\xc3\xa1\x2c\x30\x2c\x6a\xf4\xa5\xde\x85\x15\x39\x15\xec\x89\x4e\x92\xdc\xc2\x1c\x4a\xc2\xce\x39\xcc\x26\x7a\x34\xb1\x48\xa8\x5a\x12\x2f\x53\x71\x31\xac\x4e\x53\x5e\xf8\x14\x0e\x42\xbf\x84\xa4\x01\x86\x58\xbc\xe4\x88\x5a\x80\xd8\xed\x71\xa3\xaf\xd7\xe8\x58\xff\x92\xd7\x46\x76\xd3\xc9\x34\x41\x4c\x60\x09\x38\x5a\xc3\xb6\xea\x2f\xf8\xb4\x93\x2e\x0c\xf9\x85\x17\x79\xf6\x9c\x31\xf9\x80\x9f\xe8\x51\xde\x53\xf4\x6b\x24\x00\x73\x83\xec\xfd\xee\x22\xf0\x21\x1d\x87\xcd\x4c\xff\xe4\x53\x93\x38\xb3\x2b\xf9\x6b\x02\xa1\x89\x7d\x18\xa1\xe4\x02\x06\xe0\x0a\x0e\xd0\xdc\x88\xf6\x8c\x89\xaa\x99\x02\x60\x9e\xd4\x48\xc0\x01\x49\xdd\xc4\xd8\x91\x0a\x09\x01\xf6\x6e\x68\xea\xd3\x3b\xd3\x82\x45\xb1\x8e\x3a\xf4\x33\x8c\x10\x2e\xad\x8e\x8c\xdc\x75\x2a\xa0\xe3\xce\x02\x15\xbb\x26\xd8\xca\x97\xe8\xcf\x04\xa8\x00\x6c\x9a\xb6\x10\x18\x1f\x23\x1b\xc8\x56\x15\xaf\x72\x63\xec\x1d\x24\x55\xfb\x51\xf2\x4e\xb2\x36\x9a\x1a\xa7\xc7\x3f\xf6\x12\x92\x0b\xb0\xe5\x72\x9c\xa9\xf2\xbc\x25\x56\x9c\x73\xe0\xd4\xc3\xb2\x92\x72\xfa\x83\x8c\x08\x88\xdd\x55\xd2\x5d\xb9\x99\xe7\x0c\x23\x84\x98\x11\xa3\x3e\x38\x1e\xbc\x84\x67\xe7\x05\xa7\xd4\x7d\x25\x50\x3b\xf4\x2a\xee\x40\x41\x6d\x19\x07\xf8\xf6\x66\x23\x77\xd9\xc6\x8f\x93\x19\xc7\xd5\xc1\xe6\x66\xe6\xc5\x6c\x8c\x99\xb7\x60\xbe\x70\x69\x28\x35\x8a\x1a\x21\x7f\x1a\xd5\x97\x5a\x86\x15\x62\x95\xcf\x67\x92\xac\x17\x8f\x88\x23\x5d\x89\xc9\x25\x2a\xfd\xbc\x98\x4b\xb2\xe6\xa3\x0f\xe7\x96\x2c\xd1\x04\xcf\x99\x7c\x5d\x78\xb6\x70\xf1\x31\xbf\x56\x96\xec\xf6\x65\x69\x47\x85\x4c\xf6\x63\x66\x06\x49\x5d\x15\x58\xd4\xc5\x9d\x13\x77\xbb\x5b\x83\x89\x85\x36\x4d\xf5\x0e\x35\x27\xd6\xfb\x97\x22\xde\xe0\x2e\xa3\xe2\xf6\x0c\x62\x22\x97\xda\x8f\x3a\xee\x01\x36\xd0\x90\x81\xd6\x1e\xf9\xd9\xb3\x0d\x9d\x16\xbe\xdc\xce\xcf\x77\xb5\xd8\x5d\xfb\x35\x83\xc4\xb6\xdb\x9c\xa4\x23\x95\x87\xd0\x48\x23\xca\xb2\xf1\xca\xac\xce\xc8\xc4\x29\x8b\xf0\x33\x42\xf6\x51\xfb\xed\xbe\xb3\x17\xf8\x43\x37\x90\xae\xdb\x55\xc8\xe8\x9b\xda\xa4\x19\x48\xfc\xd7\x28\x4d\x7a\x90\x61\x4a\x4a\x5b\x0a\xcd\x00\x17\x2d\x58\xef\x86\xf2\xe0\x59\x83\xb7\x80\x1c\x1a\xdc\x2f\x92\xef\xc8\xa2\x65\x5c\xc5\x1d\x83\x3c\x78\xf5\xe7\xeb\x79\xf6\x2f\xe8\x6e\x64\xfe\x82\x33\xe9\x54\xdc\xec\x57\x7e\x53\x85\x33\xc6\x43\x1f\x40\xdc\xdf\x02\x80\x02\x20\xd3\xd1\x00\xd0\x4d\xe2\xe1\x05\x90\xb7\x0f\xee\xb8\x88\x37\xe3\xf4\xf0\x6f\xdc\xd8\x5a\x5a\x1f\xee\x3d\x83\x26\x37\xae\x7e\xa8\x1a\x7e\xf7\x72\x01\x80\xbc\x51\x86\x80\x16\xa4\xf1\xdd\xe2\xe9\xbf\xc2\xcf\x09\x96\x47\xe4\xfa\xec\x83\x46\xe8\x73\x56\xdf\x94\xcb\x14\x14\x48\x5d\x07\x4c\xe1\xbb\x8e\x60\x06\x3e\xd2\x72\x44\x53\xfb\x90\x2f\x2f\xa4\x79\x92\x98\x07\xee\x31\x82\x43\xd5\x9c\x42\x04\x2e\xe6\xf1\xfe\xd3\xa3\xa7\xc9\x0c\xe8\xc9\x3d\x17\x56\x7f\x6a\x64\x1f\x69\x49\x6a\x93\xcb\xa1\xb5\xb7\xbd\x69\xf6\x6c\x9b\x38\x95\xad\xec\xb1\xd9\x02\x87\x58\x00\xbd\x7c\x5b\x20\x58\x36\x58\xed\x89\x51\x01\x95\xed\x55\x0c\xc8\x53\x8b\x4d\x82\x3f\x89\x99\x46\x53\xe4\xb6\x30\x75\x4c\x05\xbb\x34\xd1\x7b\x81\x1b\xfa\x3b\x5b\x69\xc0\x39\x27\x13\x02\x13\x80\xf1\xf6\xc5\xf1\x52\xc7\x94\x0e\x0f\x24\xb2\xfe\xa5\x0b\x0f\x2a\xba\x5c\x28\x52\x3b\xb7\xeb\x70\xb8\x2e\x6f\x42\xee\x4a\x5e\x03\x6d\xcc\x90\x11\x78\xb0\xed\x33\x2c\xc8\xf3\x25\x5b\x0a\x57\xe6\x1a\x48\x93\x48\x49\x4f\x9f\x80\x9a\xcb\xc5\xfb\x2f\x95\x17\x3a\x41\x74\xa5\x42\xd2\x1d\x19\x83\xa9\x91\x7d\x55\xcb\x52\x9b\x3b\x8f\x2f\x04\x11\xd5\x0d\x61\xa4\x8f\xdb\xf1\xf9\x26\x55\xb6\xfa\x8c\xce\x00\x86\x42\x2f\x2e\x9c\x0d\x0c\x53\x04\xc6\xf8\x3b\x3c\x77\x80\x0e\x0e\xc0\x07\x44\x83\xd3\xe9\x89\x09\x04\x15\x45\x81\x13\xa8\xca\x52\x10\x8e\x24\x8b\x99\x7d\xba\xf2\xa8\x0e\xf8\x03\x75\xc2\x8f\x0e\x08\x16\xf2\x26\x8c\x1f\x34\x36\x1e\x78\xe4\xf5\xfd\x72\xef\xf1\x14\x67\xf8\xf9\x6a\xdd\x45\x49\xaf\xc3\x15\x79\x4a\xe5\xa7\xa4\xa2\x9d\xf0\x39\x10\x7a\xbd\x00\x68\x8a\x82\xd3\x83\x5c\xb8\x23\xb0\x79\xc0\xd5\x5c\x08\x76\xec\x47\x60\xb0\xf8\x3a\xa2\xa9\xa2\xbc\x32\x07\xb5\x71\x05\x93\xb4\x29\x50\x30\xae\xdc\x77\xa6\xaf\xd4\x36\x7e\xb6\x79\x3e\x95\xb5\x8b\x70\xba\x78\xa8\x85\xf4\x3d\xa5\x93\xbc\xb4\xfb\xa3\x7c\xf3\x1c\x61\x46\xf6\x01\xd3\xe0\x74\xfa\x71\x2b\x18\xdc\x58\x2a\xf8\xfc\xec\xc7\xb9\x2e\xe5\x0b\xf3\xf6\xfb\x8d\x24\x0a\xad\x62\x7b\xc8\xe0\xb8\x5c\xc3\x28\x27\x0e\x39\x11\x09\x49\x12\xcd\x35\x43\x88\xce\x22\x2e\x49\x16\x07\x82\xf9\xe2\xbf\xf2\xbf\x54\x94\x77\xbc\x5c\xf6\xc0\xd4\xc2\x62\x38\xc9\x1b\x3f\xdb\xf3\xc6\xdb\x79\x9a\xce\xf2\x43\x0d\x00\x2b\x6f\xca\x15\xa8\x6a\x38\xb7\x06\x7c\x6f\x94\xf3\x7d\xf6\xc1\x55\x0e\x4a\x71\x61\x3c\x6e\x55\x6a\xee\x26\x0e\x69\x84\x1b\x29\xfe\x92\x4d\xe4\x0e\x6b\xfa\x49\xfa\xfe\xc2\xcc\x12\xf1\x67\xbd\xe5\xef\xd3\xaa\xff\xfa\x92\x08\xa7\xa2\xf4\x38\xef\x9e\x24\x73\xe1\xc1\xb6\x34\x6c\x52\xfc\x49\xe9\xb4\x1d\x6f\x89\xb4\x23\x14\x02\x17\xb1\xab\x53\x74\xde\x97\x6d\x95\x31\xa5\x9b\x52\x46\xeb\x3f\x0a\x19\xfd\x69\x90\x7d\x8e\x77\xe9\xe9\x65\xa4\xa6\xc9\x6e\x25\xa1\xe4\xf5\x29\x0e\xe5\xd0\x96\x0d\x85\xba\x54\xb3\x0b\xad\x9e\xc5\xe7\x61\x84\xfc\x69\x2f\xc6\x78\x32\x09\xf7\x74\xf1\x26\x5f\x49\x91\x6d\x7d\xa5\xed\xb4\x39\xda\x4d\x9c\xeb\x19\x2b\xfc\x0b\xad\xfa\x1d\xb8\xc5\xf2\xa8\xdc\x50\xf5\x64\x7d\x43\x06\x51\xb2\x76\xbe\x7c\xcb\xff\x5e\xe2\x2a\x5a\x04\x87\x4c\xd5\x00\x6b\x9a\xb1\x54\xff\x6d\x39\x5f\xca\xa8\xac\xa6\xfb\x14\xbb\x53\x5a\x1d\xcb\xe1\x6b\x75\x36\xd6\xa5\xb4\x0c\x7b\x78\xe1\xe5\x1f\x9e\x32\x80\xf8\x78\xb9\xce\x76\x08\xe8\xb2\xdf\x55\x01\x1b\x26\x76\x8c\x3a\xa9\x8c\x75\xbe\x83\x6f\xa9\x8f\xce\x0d\x05\x07\xbb\x9b\x18\x0f\xe2\xd8\x83\x30\xa2\x28\xea\xbb\x3c\x38\x64\x2a\x4f\xc1\xb8\xf8\x63\x7c\x75\xe2\x4f\x0b\xe5\x30\xb2\x05\xe1\xf1\x97\x40\x8f\x89\xdd\x91\xbd\xc4\x1a\x52\x11\x2f\xf2\xf3\x56\xa2\xc0\xf9\x37\xb3\x4b\x00\xd7\x13\xce\x8d\x05\xa1\x9f\x2b\x74\x9b\x62\xf3\x3c\xc3\x78\x21\x30\x4f\xfd\xe4\x05\xbb\x9f\xb5\x7f\xd6\x5b\xae\xeb\x95\xb8\x53\x0e\xfe\x90\x93\x78\x9f\x83\xc6\x5b\x71\xe1\x35\x17\xd0\x01\xab\x9d\x29\x07\x9d\x8b\xf3\xe5\xe4\xbf\x19\x03\xc7\x19\xee\xf7\x5e\xdf\xd8\xf4\x22\xbe\xe0\x1b\xdc\x4b\xbc\x76\xa2\x35\xbb\x36\xb5\xbe\x4f\x85\x21\x28\xd7\x2e\xf5\x3f\xed\x7f\xf9\x1c\xd2\xc5\x17\x1f\x87\xe6\xa7\xbf\x42\xbb\x31\xcf\x10\x0d\xad\xea\x1b\x03\x03\xaf\x34\xdf\x1b\x63\x3f\x3e\x91\x71\xff\xbb\x7a\x31\x58\x39\x55\x71\x76\x90\xae\x41\x2b\x04\xa1\x5f\x21\xd1\x43\xa2\x8a\xf6\xd7\x9e\x0e\x07\x93\x36\x5d\xcf\xbb\x05\xd5\x1e\x4f\x98\xa8\x3e\x4c\x21\x98\x84\xce\x4d\x22\x12\x3c\x1b\x10\x1c\x17\x76\xd1\x88\x87\x97\xb0\x20\xa0\x34\x97\x81\x09\x32\xd1\x4f\x55\xf6\x02\x0a\xf3\xd4\x2b\xb1\x91\x8a\xec\x71\xea\x9c\x77\x61\x23\x69\xb2\xbc\x76\x05\xc9\x7c\x18\x40\xe2\x73\x44\x19\x31\x9f\x63\x9d\x77\xd7\x5b\x04\x11\x0f\xdd\x2f\x56\x2e\x8f\x7a\x16\xff\xae\xb5\x54\xe3\xbe\x73\x24\x29\xf9\x87\xfb\x3e\xb1\x91\x5e\x4b\xac\x0c\x73\x10\x31\x00\x06\x81\xbb\x59\xd4\x25\x0d\x2c\x09\x2f\x28\x7e\x13\x02\xb2\x0d\x3a\x8a\xc3\x33\x8f\x2a\x7f\x41\x3d\x7e\x19\xa9\xde\x25\x18\x4f\xca\x8d\xbd\x41\xd2\xd0\x80\x20\x81\xb7\x14\x04\x72\xb5\x05\xa6\x2f\x42\x4a\x2e\x2e\xf5\x3d\xa4\xc3\x48\x9e\x63\x61\x1b\x37\x5f\x46\x2b\xbf\xcb\xf1\x18\x5f\xb8\x2c\xee\x0f\x73\x26\x25\x2b\x79\xee\xe7\x49\xf0\xf2\x80\x70\x97\x0f\xc1\xff\xde\xe3\x68\xbe\x7f\x81\xa6\xa8\x50\x08\x00\x99\x90\x0e\xab\xa7\xce\xc2\xfe\xc4\xea\x2f\xb2\xa8\x1e\x5a\xa8\x86\xb9\xe9\xed\x31\xc1\xd0\x45\x98\xa4\x3b\x44\x37\xe8\x4a\x6e\xc6\x27\x9a\x9d\x48\x7d\x33\x8b\x7c\xb7\x6b\x73\xd7\xb1\x09\xf3\xa4\xb7\x5e\x89\x5f\xce\xba\xff\x84\x89\x4b\x76\xe9\x85\x8d\xc1\xc9\x01\x29\x88\xcf\xa4\x64\xa5\x51\x0a\xb4\x7d\xdc\xf2\x95\x98\x1d\xc6\x0d\x7d\x98\xee\x3f\x4a\x00\xf0\xd8\x6c\x69\x35\xf7\x25\xba\x3a\x79\x22\xa9\x9b\x74\x19\xd5\x58\x8c\xbb\xeb\xba\x60\x92\x39\x38\xed\x76\xa7\xfd\x48\x41\xda\xe1\x32\x44\x95\x6c\xf8\x59\xe7\xe4\xda\x0b\x13\xe1\xe9\x8c\x62\x8f\x12\xc4\x25\xd7\xbd\x7d\x9d\xd9\xdf\xd7\x58\x80\xa6\x2d\x0d\x75\x4a\x45\x40\x6a\x90\xde\x03\x88\x48\xfd\x0c\xd2\x6a\xa0\xe8\xe2\xef\xe4\x4f\xec\xf8\x37\x2a\x37\x64\x55\xb9\xb5\xed\x9f\x30\xb8\xfe\x9f\x5d\x0a\xe9\xe5\xc3\xb1\x40\x19\xf8\x29\xcb\xc6\x3d\x36\x5a\xea\xb2\x89\xb7\xb8\xc5\x66\x6d\xdc\x44\xe4\xf4\x1f\xaa\x49\xbf\xf5\x7f\x8e\x40\x18\xda\x23\x6a\x4e\x52\xe3\x94\x6a\xce\x92\x3f\x60\x41\x68\x02\x7f\x0c\x6e\x4f\x93\xa7\x19\x37\x8a\xe4\xb1\x7d\x96\x68\xc8\x63\x0b\xe0\xde\x51\x49\x07\x57\x97\xda\xb4\xfa\x39\xcc\x35\x5b\x4c\x79\xb0\xb8\x39\xb2\xeb\xd0\xf2\xc1\x00\xc1\x14\xd9\x2b\xd6\x0b\xdf\x03\x39\x13\x75\x8e\x33\xf4\xb5\x77\x9c\x2c\x57\xfd\x36\xd8\x8e\xbd\xae\x84\xdf\xc7\x23\x6a\xce\x92\x8d\x22\xc0\xb6\x7a\x6c\x4b\x57\x62\xd6\xa8\x8a\xa9\x23\x36\x1a\x3b\x03\x4c\x3a\xcb\xe9\xd1\xf0\xfc\xb5\x9f\xdb\x67\xb3\x43\x75\x5e\x8f\x5b\x4b\x17\x77\x68\x40\x7e\xe3\xc4\x44\xe4\xb5\x78\x64\x8a\xac\x9f\xf5\xcc\xf7\x60\xce\x44\x9d\xe1\x0c\xfd\x57\xc3\xa6\x46\xeb\x76\xd0\xf6\xa6\x7f\xfe\x05\x8b\x7b\xbd\x9f\x8e\xd4\xba\xbd\x9c\x4f\x92\x1f\x53\x42\x3b\x72\x92\xef\xcb\x22\x6f\x6a\xa1\x45\x0d\xd1\xdf\xf9\x6c\x7b\x86\xaf\x4c\x94\x35\x57\xfa\x5d\xf4\x0f\xd5\x79\x05\xb7\x96\x2e\x62\x79\x70\x83\xb4\x39\xfd\x05\x35\x07\x45\xb9\x2d\xe7\x27\x9b\xf8\xf3\x80\x8f\x4b\x6e\xb2\x57\xac\xd3\x04\x7b\x14\x9f\x1e\x16\xbd\x21\xb9\x50\x87\xf1\x35\x9f\x83\x46\x4f\xf8\x8a\x22\xc1\xb6\x57\xb5\xfe\x51\x02\x87\x2f\xa0\x42\x87\x41\x14\xbf\xb9\x23\xa4\x25\x3c\x43\xea\x43\xd2\x2d\xdd\xcb\x85\x65\x51\x3d\xd5\x95\x32\x17\x3f\x55\x2c\xcd\x27\xe5\x64\x04\x2e\xb8\x91\x7d\xe6\x4c\x06\x9b\x26\x43\x4b\xb6\x95\x4b\x4a\x41\x75\x4b\x0a\x0b\xff\xbd\x70\xfc\x94\x7d\xb4\xf2\xe6\x86\xca\x6e\x6c\xb8\x71\x77\x62\x65\xd8\xca\x1b\x0c\x08\xdd\x1b\xc7\xc6\xaa\x59\x21\x20\x27\x64\x8e\x46\x81\x13\x5e\x70\x8f\xba\xbd\xab\x4e\xaf\x31\x3b\xda\x96\x45\xf5\xe4\x96\xa4\x07\x99\xd0\x39\x47\x6b\x92\xe0\xbc\x13\xaf\x20\x49\x4a\xa9\x4f\xbf\xed\x13\xf3\x58\xe7\xa9\x38\x6f\x3c\x26\xa0\x09\xd7\x67\x2b\x9c\x3b\xbe\xc7\x2a\x6d\xcd\x26\x7e\x39\x4d\x35\x25\x8d\x95\x2a\x6e\xec\x68\x0c\x5f\xc9\x09\x59\xcf\x01\x69\xe1\xbb\xf7\x29\x98\xe5\x18\x40\x2e\x81\x60\x43\x6c\x01\x05\xee\xad\xf7\xa3\xd5\xeb\x25\x4d\xd6\x13\xb5\x0b\x28\x4e\x7f\xd3\xac\x59\xbf\x89\xa2\x40\x14\xf5\xb7\x42\x95\xbe\x7a\x24\x0c\xa6\xcf\xf0\x97\x6f\x60\x31\xb4\x6e\x49\x61\xfa\x81\xe7\x2d\x94\xa9\xc1\xa6\xd3\xd1\x8b\x68\xc5\xef\x1b\xbd\x84\xf3\x48\xc9\xf3\xdb\x87\x66\xfb\x10\x0c\x21\x31\x87\x41\x6e\x99\x17\x40\x1b\xc3\x0c\xd8\x46\xf8\xe8\x59\xc0\x63\x79\x14\xbd\x89\x52\x58\xdd\x81\xb2\x19\x61\xbf\xd0\xa3\xe1\xe4\x7f\x73\x16\x0f\xdb\xd3\xfc\x66\xc0\xa9\xaa\xd8\x5a\xc0\x9b\x3d\x19\x48\x31\x62\xaf\x97\xb1\x5e\x1c\x39\xcb\xe6\xbc\xb1\xde\x69\xda\x39\xef\xb2\x81\x1d\x7a\x2c\x39\x1b\xd5\xab\xc5\xee\xd5\x8d\x18\xda\xd2\x17\x5e\x61\x72\x9f\x7a\x15\x8d\xb8\x6d\xe4\x59\xa8\x16\xc4\x26\xa1\x8c\xdc\x62\x60\x7b\x2d\xc2\xc6\x42\xe1\xb5\x8b\xbb\x0a\x50\xa6\xd9\x3a\x83\x1a\x4c\xb3\x66\xf7\xff\xd6\x79\x05\x57\x97\x2e\x8a\xc8\xf7\xa7\x70\xd0\x33\xb5\x82\xfb\x1c\x31\xf4\xf4\x4a\x4c\x4f\xe7\x97\x5e\xfc\x82\x12\xff\x15\xa5\x5c\x04\x28\x6f\x23\x9a\x2a\x9c\xbd\x78\xbb\xd5\x15\x5c\x7a\x94\x6f\xb6\x29\xc7\x2e\x6b\xf8\x2b\x7b\xef\x2c\xad\xc4\xf2\x4b\xf2\x2b\xdb\x72\xf1\x24\xa5\x4b\x4f\xf3\xc1\x63\x20\xb9\x5a\x8f\xd6\xb8\x6e\x84\xb7\x56\xd4\xda\xd4\x6e\x7d\x4a\xcf\x9e\x35\x19\x28\x0a\x54\x33\x88\xd7\x2e\x48\x0d\xd3\x4f\x3a\x7d\xfb\x65\x96\x78\xdd\xa4\x7e\xe0\xba\x2c\xb9\x3b\x1e\xba\xee\x32\x09\x47\x81\x52\x1b\x15\x24\xb6\xbc\xba\x11\xa1\x22\xdf\x87\x94\x2b\x2a\x11\xf3\x17\x7d\xcd\x91\x60\x40\xcb\x31\x8a\x84\x33\x8c\xc2\x64\x99\x21\x77\xd8\xe5\xc2\x72\x80\x0d\x57\x4c\xf5\x64\xe9\x67\xdf\xa2\x47\x73\x4d\x16\x13\x1e\xcc\x5c\x8e\xdf\xf7\xde\x7d\x83\x3c\xe3\x55\x1d\xa6\xd3\x73\x5c\x92\x70\x91\x3d\x2c\x08\x4a\x3a\xfa\x94\x27\x22\xc7\x69\x09\xf5\x2f\x2b\x39\x88\xfe\xf3\x70\x48\x90\x1a\x87\xad\xbc\xc0\x4e\x9e\x8f\xee\xf1\x31\x81\x04\xef\x3b\x08\x8d\x08\x41\xd4\xff\xd1\x7c\x85\x62\xe5\xa4\xc1\x05\xeb\x5c\x37\xc2\xab\x2b\x6c\x5a\xad\x27\x3d\x44\x64\x1b\x1a\xe2\x7a\x63\x39\x04\x29\x99\xa6\x83\x81\xc0\x67\x90\xe4\x39\xfb\x71\x17\x97\x16\xeb\xe1\x93\xe0\x5f\x81\xbb\x9b\x4e\x63\x33\x62\x96\xd8\xe7\x46\xec\xb2\x7f\xb4\x7a\xc2\x5f\x4f\x2a\x71\x84\xad\x8c\x47\x80\x01\xf6\x37\x46\xb0\x88\xf7\x09\x1d\xe8\x5a\x4c\x16\x72\x83\x81\x02\x25\xb8\xe6\x6d\x64\xd9\x62\x3a\x39\x65\x96\x3d\x3b\x59\x58\x2d\x62\xce\x3d\xf0\x04\x24\xf1\x86\x7f\x7a\x9a\x86\x9d\x5d\x0b\x73\xa6\xdb\xe4\x6e\x22\x5d\xe1\xe4\xf9\x3e\xe3\xa0\x51\xf6\xd5\xf0\x9a\xf5\x4f\xe5\x43\xe6\xb1\x68\xa6\xbb\x3b\x09\xe8\xe8\xea\xe3\xb1\xc9\x44\x2b\x6d\x03\x00\x69\x2f\x55\x4a\x1f\xe3\xc1\xe3\x30\x2a\x0c\x51\x67\xa0\xb0\xf8\x63\x25\x15\x9a\x65\xfe\xd4\xf5\x95\xd9\xd6\x6c\xda\x6a\xfa\xb3\x12\x67\x61\x1d\xf3\x0c\x96\x43\xbd\x7d\x64\x2c\xa8\x98\x4e\x0b\x13\xa4\x2b\xd7\x88\xe2\xf0\xe3\x13\x42\x38\x91\x5a\x73\x5b\x3e\xb5\xa6\xfa\x13\x2d\xe5\x3d\xfa\xad\xed\xf3\x1c\x56\x08\xeb\x5e\x45\x88\xea\x09\x04\xc6\xa3\xec\x9e\x34\xa9\xaf\x84\x02\x0a\x78\xbb\xea\xf1\x40\x0a\x2d\x61\x54\x81\xd0\x71\x08\xf6\x50\xe2\x8a\x3c\x0f\x78\x68\xef\x5d\xc3\xdc\x0f\x56\x33\xce\xd9\x2d\x6f\xa3\x87\xa2\xb3\xfd\xde\xc3\x26\xb1\x42\x94\xf4\xd4\x48\x45\x35\x39\xd1\xf8\x29\x57\x27\x4f\x5f\x87\xd3\xf3\xe0\xdb\xe1\x1e\xca\xdb\xd7\x6f\xc5\x15\x88\xf5\x79\xe9\xcc\xf3\x13\x10\xca\xfa\xde\xff\x04\xab\x8f\x35\xde\xcd\xbd\x88\x46\xbc\x91\x13\x02\x92\x1e\x3b\xa9\xf2\x24\x31\x73\xc7\x5c\x63\xe5\x58\x63\x8f\x79\x85\x2f\x7f\x60\x40\x8d\x73\x0a\x12\xf9\x38\x7d\x5f\xa7\xf2\x9e\x9f\xe3\xbb\x77\xd5\xcc\xee\x8e\x37\xb7\x3f\xe0\x97\x27\xe0\xc7\xbc\x99\x74\x90\xe4\x39\x93\xe2\xf9\xf1\x80\x56\x57\xca\x17\x2f\xcc\x3d\x76\x91\x04\x04\x97\xd3\x45\x51\x34\xb7\x34\x64\x53\x6a\xcd\xb0\x1b\xa1\x98\xf0\xe8\x30\xb5\xf1\xdf\xdb\x65\x8d\x52\x30\x33\xd0\xf7\x46\x02\x03\x8b\xea\x0d\x10\x8d\xc0\x9a\x50\xa6\x46\xe1\x68\x2e\xa2\x95\x5d\xca\x21\x98\x8f\x0a\xe9\x37\xa7\xb5\xdf\xfe\x30\x65\xd5\x76\xf7\xf3\xea\x34\x65\x3d\x48\xb8\xdf\xdf\x24\x52\xeb\xe5\xfa\xfb\x67\xd7\x0c\x06\xdc\x87\xd3\xaa\xad\xde\x77\xea\x5e\x4a\xab\x60\xe7\x4a\x13\x25\xbf\x77\x3b\x5d\xad\x63\x31\xce\x0a\x1a\x8d\x63\x0b\x45\x8c\x5f\x21\xbb\xc4\x5d\xbe\xff\xbf\xcb\xc5\x83\x81\xdb\x3e\x8f\x54\x80\x82\x4f\x05\x06\x3f\x38\x93\xd2\x85\xd1\x15\x8f\x31\x91\x2b\xa3\xd8\x43\x2f\x16\xc0\x38\x8d\x49\x71\xbb\xce\xaa\xd3\x70\x9f\xb6\xd1\x42\xa4\xe1\x75\xc9\x7d\xcb\x87\xc3\xcd\x6e\x9d\xfb\x0f\x58\x3f\x5d\xd3\xbb\x96\xa3\xb9\x83\x2a\x9c\xff\x11\xd8\xe0\x4a\xa9\xb1\x1a\x17\x1e\xe0\x00\xd5\xf0\xe3\x2b\x9f\x8c\x2f\x58\x2e\xef\x4a\x6f\xa5\x54\x18\x3a\xe9\x8d\xbf\x40\x17\x21\x12\xff\x0a\x7e\x23\x82\x46\xf7\xf8\x8c\x00\xbd\x80\xbe\xe6\x64\x5e\x48\x17\x41\xa8\x19\xac\x75\x0a\xd6\x5a\x88\x38\x31\xd4\x39\xcd\xa5\x01\x68\xd2\x0a\xd8\x41\x32\x52\x35\x29\xa2\x72\x22\xed\xd3\xf7\xaf\xe9\xb8\xfb\xdd\xdc\x15\xa2\x35\xcf\x60\x89\x2b\x30\xf2\x00\x14\x21\x19\x14\xd4\x48\x68\xda\x9c\x63\xd7\xd3\xcd\xc2\x85\xd1\x48\xed\x49\x78\xbf\x06\x3b\xf9\xfd\x23\xca\xc9\x68\x06\x69\x77\x93\x7a\x0a\x54\x77\x40\x58\x08\x7f\xf5\x65\xa8\xe6\xad\x33\x10\x3c\x61\x9b\x4e\x7b\x6b\x5b\xea\x0c\x70\x3e\x49\x1e\xa0\xa5\x01\x56\xe6\xd8\xff\x4b\x8b\xac\xc5\xdc\xdf\x5f\x2a\xc7\x23\xc3\xb8\xaf\xd3\x80\x0c\x58\xf4\x7c\x15\x0b\x4a\x37\x8d\xa4\xb6\x51\x33\x50\xcb\x9b\x62\xf5\x69\xf7\x3b\x0d\x59\xbd\x6b\xee\x4b\x2b\x66\x19\x41\xc7\xca\x91\xf0\x56\xc8\xfa\x2b\x48\x52\x8a\xaf\xeb\xce\x97\x58\x67\x59\x19\xeb\x4a\x4e\x6c\xc9\x23\xa8\x86\xe3\x80\xf8\x54\x7c\xc1\xd8\x4f\xd5\x01\xc3\x28\x82\xd4\x32\x6c\xfc\x71\x13\x41\xf8\x52\xfa\x6e\xfe\xeb\x56\xc4\xc3\xd5\x44\xfb\xc3\xb1\x3d\x3e\x23\x6a\x3d\xa7\xbe\xe7\x29\x29\x82\xf4\x79\x74\x07\x34\x70\x1a\xa6\xe2\xe7\xb4\xd1\xf1\xdc\x3c\x58\x80\x19\x15\x53\xea\x55\xf8\x04\x34\x29\xc5\x3d\xc0\xcc\x75\xa3\x7d\xfa\xbe\xb6\x9a\xa5\xe8\xea\xf5\x46\xdb\x53\x91\x32\xef\x42\x29\x2c\x33\xea\x4b\x21\x06\x5c\x20\xc7\x76\x9d\x1a\x19\x01\x68\x26\xe1\x8d\x60\x21\x02\x0a\x96\x0c\x43\xe9\xc3\xdb\x57\x72\xa7\xfa\xd3\xc3\x8d\x1b\xf1\xda\x4d\x9f\x89\x6f\x3c\x29\x50\xad\x35\x9d\x74\xf1\x47\x42\x3d\xca\xdf\x47\x7b\x1f\x9e\xff\x4b\x0b\xbb\x6f\x15\x3e\xca\xaa\x24\x4d\xea\x33\xc6\x33\xb1\x4a\x32\xf4\xec\xd1\xc4\xfd\x66\xd7\xdc\xbf\xca\x1f\x08\xfb\x0d\xe6\xd9\xf4\xff\x17\x3e\x90\xc9\x8f\x62\x2a\xb8\x99\xe3\x5a\xaa\x3f\x14\xd7\x5b\xd5\x32\xe0\x0d\xb5\xbc\xb9\xc6\x75\x23\xff\xe8\xc1\xf0\xbe\xb3\x35\x5d\xf9\x3b\x58\x21\x0a\x5f\xae\x0a\xe6\xc1\xc0\x34\x91\x07\x28\xb8\x5e\x9c\x82\x26\xf5\x7d\x6d\x30\xde\x88\xfd\xc4\x38\xa8\x51\x20\xeb\x5e\xfc\x54\x96\xba\x41\x6d\x26\xb6\xc4\x95\xb2\xa1\x74\x38\xbb\xb1\xdf\x3d\x51\x2b\xc3\x68\xd3\x07\xa5\x38\xe3\x51\x5e\x44\xa9\xf0\xfd\x7d\x19\xfb\x39\xb6\x92\x54\x0c\xbf\xac\x4f\x53\xe2\x08\x75\x70\xca\x1c\x78\x49\xdd\xac\x00\xa7\x07\x2f\x07\x66\x3d\x46\xba\x5b\x2e\x23\xb1\x49\xfc\xf0\x94\x04\xed\xae\x91\xde\x5a\x35\x80\x79\xd6\xc5\xb2\xca\x00\xcb\x1c\xcf\x34\x04\x2b\x4f\xf6\x31\x2f\x75\xae\x7c\xde\xd2\xbd\x6f\x6e\xf6\xfd\xb1\x42\x96\x54\x88\xeb\xbb\x9c\x2d\x6d\xc1\x32\x9c\x04\x96\x19\x8c\x71\x52\x43\x46\x89\x05\x6f\xb0\x05\xdc\x84\xc1\xb0\xfc\x74\xe5\x87\x14\x02\x8a\x1a\x0c\xee\x96\x2c\xd5\xe9\x3d\xd9\xa2\xf1\xb2\xd9\xf2\x1e\x3f\x06\x0b\x16\x46\x03\x37\x7a\x88\x90\x08\x0c\x23\xbb\x26\x0e\x93\xa2\x1a\x99\xef\x44\x9a\x80\x87\x58\xec\x2f\x14\x98\x5c\x96\x9b\x93\x9c\x4f\x92\xdf\xd8\xb9\x0a\x72\x3b\x1c\xb3\x4d\x08\xa3\x13\xfc\x91\x5a\xf4\xc5\x81\xb4\xea\xec\x63\x53\xf6\xa3\x0c\x50\x38\xc0\x96\xdc\x01\xc0\x8c\xe4\x0c\x8f\xf4\xd8\xb0\x52\xa1\xae\x0e\x8a\xe9\xdf\x9b\x06\xeb\x42\x9c\xde\x28\x35\xe8\xe6\x5b\x7c\xd6\x17\xcd\x35\xba\xbb\xaa\xba\xcd\x7f\x9d\x51\xfd\x86\xc1\xb8\x7b\xa4\xae\x8a\xd7\x28\x0b\xad\xea\xb3\x85\x17\x07\xcc\x70\x86\xa9\x96\x3f\x79\x03\xa3\x7d\xfe\x09\x29\x3e\xa8\xdb\x82\xf4\x9e\xa8\xd0\x7c\xad\x45\xfb\x2e\x2f\x16\xbb\x3b\xb1\xef\xdd\xef\xd5\x5b\x72\x78\xc8\x1c\x16\x8c\xa1\x03\x06\x4c\x9f\x13\x24\x96\x03\x75\x83\x52\x00\xaa\x24\x2b\xc6\xa5\xba\x45\x64\x6f\xfc\x11\x1a\x84\x76\x2e\xae\xde\x9b\x38\xde\xa2\xd3\x59\xbb\x5b\x94\x38\xc8\x2f\x04\x24\xe9\x68\xe0\xe9\x01\xb9\x56\x36\xcd\xfe\xeb\x9a\x4c\x94\x5e\x86\x49\x2b\x58\x5b\x8a\x84\x7f\x58\xa6\x84\xd7\xda\x5d\xc6\x7a\xc6\x6a\xf4\x6a\xbb\x2b\xec\x6c\xec\x89\x16\x41\x18\xbf\x34\x26\x13\xda\xf2\x52\x9a\xc2\xe7\x1a\x69\x4c\x26\xcb\xc6\x46\x50\xc3\x37\x48\x14\xd3\xe8\xd0\x1d\x64\x14\x30\x6a\x20\x44\xaf\x05\xc3\x04\x70\xc7\x52\xa9\xe0\x7c\xe3\x03\xbf\x26\xbd\xf8\xe7\x4f\x0d\xa4\xe0\x92\x54\x69\xb0\x18\x4f\x5e\x0a\x3d\x47\x7a\xf4\x26\x95\xf1\x59\x18\x71\xae\x6c\xfc\x80\x79\x59\x3e\xd6\xd3\xcd\x44\xae\xb1\xe7\x6f\x23\x8a\xcb\x8c\xa1\x66\xc4\x61\xc9\xdf\x94\x14\x81\x94\x9c\x13\xb8\x26\xd3\x34\x66\xff\x63\xa9\x77\x44\x83\x01\xa4\x35\x42\xb8\x69\x3f\xfa\xac\xf5\x43\x9c\x12\xc0\x11\xe6\x70\x8c\x01\xe1\xac\x5c\xf3\xb0\xf0\x38\x5e\x98\x3a\x03\x65\x37\xbc\x4d\x72\x49\x86\x92\x26\x22\x6a\xcc\x67\xc8\x18\x5c\x92\x62\x80\x82\xd9\xe7\xee\x81\x4c\x6e\x1b\x4a\xeb\x99\x08\xc8\x2f\x80\x7f\x5e\x84\x12\x9b\x57\x4e\x16\x35\x0b\x74\x7d\x15\xa8\x19\x31\x34\xbc\x77\x89\x2d\x1b\x4d\x5b\x77\x28\x6d\x46\x87\xc7\xca\x24\xf7\x98\x97\x83\x75\xcf\x72\xb4\xc5\x62\x98\x5b\x0e\x82\xb9\x3f\x1f\xbd\x5d\xc4\x5d\xe5\xf0\xe2\xcb\xb9\x85\x67\x48\x8c\x8c\x0b\x9d\x1b\x3d\x98\x96\xb9\x2a\x75\x62\xd8\x9d\x50\x19\xea\xf0\x14\x03\xc2\xe9\x5e\xb1\x8f\x8d\xd8\xb8\x1d\x9f\x5b\xb6\x4a\x1f\xc7\x0b\xef\x61\x67\x4e\x51\xeb\x40\xf2\x60\x18\x13\xba\xd5\xc7\xcf\xd1\x31\xc5\x93\x3b\x05\xc9\xf5\x41\xdc\x0e\x27\xa9\xa6\x17\x91\x51\x1d\x05\x26\x21\x59\x6f\x11\xcc\xdd\xd7\xee\xee\x08\x06\xed\xfe\xf3\x91\x3e\xeb\x9b\xc3\x81\x81\x37\xda\x3d\xf4\x14\xcb\x5e\x99\x2f\x6c\x33\xcb\x90\x5a\x5c\xf0\x20\xb7\xd1\xfe\xf0\xa4\x6b\xc8\xef\x27\x74\x4c\x60\x2d\x22\x97\x32\xd5\x86\x6c\x50\x11\x0c\x27\x4d\x40\x28\x26\x72\xda\x5f\x2d\x7a\x15\x81\x5d\x8f\x84\x5f\xc8\x89\x85\x4a\x9f\xc1\x52\x00\x1a\xc0\x61\x8b\x9d\x97\xb2\x70\x5d\x6b\x21\x82\x1f\x8b\xd6\x65\x2e\x8e\xb7\x53\x0f\x63\x26\x92\x5d\x5a\x80\x7f\xc1\xaf\x16\xc3\x5f\x4f\xd4\x5c\x4e\xc4\x91\x85\xde\xe2\xec\x54\xec\xa6\x63\xc8\x7f\x8b\x9f\x50\x68\xde\x3a\x66\x9b\xd0\x48\x62\x36\x00\x90\x52\xdf\x32\x1f\x21\xc3\xb8\xa4\x85\xe0\x44\x8e\x62\x6a\x4a\xc9\x2e\x7b\x17\xf5\xf0\x1f\x93\x64\xa1\x1e\x65\xfe\x21\xdb\x04\x5e\x20\x3a\x90\x42\x9d\x01\x16\x99\x97\x5f\x9f\x85\x78\xec\x97\xff\xb9\x9f\x0a\x53\x94\x88\x34\xfc\x0f\xd5\x89\x65\x03\x34\x65\xd3\x5d\xd4\xfd\x98\xed\xd0\x7d\x91\xe8\x0d\xb9\x9a\x4e\xc1\xbb\x35\x52\x9b\x6d\x2a\x29\x71\x84\xf2\x3c\x1c\x16\x8f\xbc\xc7\x05\x97\x4f\x60\xac\x44\xdc\xd0\x09\x2f\xe8\xfc\x1f\xd4\xa5\x00\xc0\xac\x45\x1b\xd1\xe0\x4f\xbc\x92\x84\x62\x94\x95\x62\x25\x10\x8f\x9f\x87\x5b\x74\xe7\xab\x66\x01\x31\x79\x03\xa0\x44\x3a\xa9\x05\x02\x9b\x3f\x6e\xec\x8a\x22\x47\x08\xe4\x36\x9f\x01\x80\xf4\x19\x88\xc1\x23\x2f\x0f\xde\xd3\xab\xcc\x9e\x0a\xf5\x84\x4c\x3f\x81\x9f\x9f\x47\xee\x80\x0a\x16\x6d\xaf\x6a\xd3\xe8\x06\xb9\x25\x69\xb2\xad\x7e\x30\xbc\xbc\x8a\xa9\xfb\xa0\x7f\x76\xca\x26\x7d\x06\x93\x54\x12\x02\xe8\x8b\x07\x00\x2c\x80\xce\x12\x8a\xc9\x4b\xf4\xe1\x22\x2e\xc2\xe5\xf5\xcf\x6e\xf7\xa3\x19\xe8\x95\x11\x02\x34\x3d\xa1\xc3\xef\x7b\xc7\xc3\x94\x28\xe3\x15\xf1\x39\x57\x84\x00\x7a\xfe\xe7\x3c\x78\x00\x79\x7a\x2e\x55\x63\x10\x93\x97\x78\x30\x87\x9d\x4a\x3a\xfc\x82\x55\xf7\xb1\x32\xa4\x57\x44\xac\x37\x17\x5d\xce\x51\xfc\x57\x0e\xc2\x00\x40\xf6\xb1\xc5\x21\x69\x54\xd4\x19\xa8\xb4\x12\x73\x8f\x17\xe3\xbd\xaf\x74\xc3\xdf\x29\xac\xda\x17\x71\x1c\xbe\x8d\xe6\x8a\x57\xc4\x5b\x71\x09\x01\xf4\x2b\x70\xb6\xbb\x6c\x00\x9c\xbc\xa0\xb8\xbd\x9b\xff\x7c\x22\x26\xca\x2b\x8c\x0e\x70\xde\x60\x58\x91\xc4\x81\x01\xec\xf0\x1b\x89\x6f\xd8\x9c\x81\xbd\xeb\x8a\x0d\x1f\xd4\xef\x26\x22\x33\x32\x06\xd0\xcd\xc8\x3e\xab\x83\x38\xb0\xdd\xa3\x02\x2f\x8d\xa4\x4d\x27\x94\x20\x37\x04\x2b\x9f\xf3\x3c\x00\x73\x37\x01\x09\xc3\xff\x2f\xc7\x20\x9a\xac\xec\x90\xee\x76\xfc\xd4\xf4\xa5\x31\x00\x00\x37\x7c\xd5\x1e\xf8\x3a\xd8\xf9\x3a\xca\xdb\x7b\x3b\xda\xf9\x3a\x02\x92\x68\x09\x59\x51\xb4\x94\xa8\x94\x84\x31\x1a\x2d\x2f\x2d\x25\x2f\x29\x25\x8c\x96\x94\x47\xa3\xbb\xc5\xd0\x33\xff\x0f\xe0\xee\xe1\xe0\xe2\x14\xf8\xff\x07\xea\x7c\x62\x1c\x01\x00\x30\x0b\x32\x7e\xe0\x7b\xdf\xce\x1f\xe9\xe9\xed\xe1\xe4\xe2\xe6\x88\xf4\x0d\xf4\x74\x44\xba\x78\xfa\xda\x03\x40\x40\x0e\x61\x1f\x0e\xf3\x32\x15\x12\xea\xd7\x1f\x18\xd4\x5a\xbd\x0f\x50\xf0\xd1\x8a\xd9\xd3\x32\xf1\x31\xe9\xa4\x32\x53\x30\x21\x55\x71\xd2\xdd\x0e\x14\x7c\x1f\x8d\x91\x03\xd3\x3f\xfa\xbe\x0e\x7e\xe5\xfa\x4a\x35\x80\xd3\x2c\xd0\x16\x03\xb6\xae\x31\xf8\xee\xab\xc8\xa4\x01\x00\x00\x68\xa9\xe9\xa9\xd6\xa8\xd8\xe2\xff\x4f\x00\x00\x00\xff\xff\xf1\x18\xc7\x0e\x41\xe4\x00\x00") -func web_uiStaticAndroidChrome512x512PngBytes() ([]byte, error) { +func web_uiV1StaticAndroidChrome512x512PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticAndroidChrome512x512Png, - "web_ui/static/android-chrome-512x512.png", + _web_uiV1StaticAndroidChrome512x512Png, + "web_ui/v1/static/android-chrome-512x512.png", ) } -func web_uiStaticAndroidChrome512x512Png() (*asset, error) { - bytes, err := web_uiStaticAndroidChrome512x512PngBytes() +func web_uiV1StaticAndroidChrome512x512Png() (*asset, error) { + bytes, err := web_uiV1StaticAndroidChrome512x512PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/android-chrome-512x512.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/android-chrome-512x512.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticAppleTouchIcon114x114Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xd8\x3c\x27\xc3\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x72\x00\x00\x00\x72\x08\x06\x00\x00\x00\x8f\xdd\x85\x7d\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xbd\x79\x70\x1c\x57\x7a\x27\xf8\xfb\x5e\x66\x65\x9d\xa8\xc2\x7d\x11\x04\x08\x10\x04\xc1\x53\xa4\x28\x52\x14\x49\x91\x52\x5b\x52\x77\x4b\xb2\xa7\x2f\xb7\xa7\x7d\x6f\xc4\xba\x3d\x0e\x4f\x78\xc3\x31\x13\xe1\xd8\xd8\xf0\x4e\x78\x1d\xb3\xde\x0d\xaf\x63\xd7\x31\xe3\xe8\xe8\x9d\xe8\xe9\xb1\x3d\x3d\x3d\x76\x77\xbb\x65\x75\xdb\x56\x4b\x6c\x49\x2d\x91\x94\x78\x88\x27\x44\x82\x04\x08\x92\x00\x08\x80\x40\xa1\x50\xa8\xbb\xb2\xb2\xde\xb7\x7f\x54\x66\x56\x56\x22\xab\x00\x48\x6a\xcf\x7a\x63\x3f\x44\x21\x33\xdf\xf9\xbd\xef\xe5\xfb\xae\x77\x24\x01\x10\xd8\x3c\x48\x33\x9f\x75\xf5\x8a\x6b\x94\xef\x1f\xbb\xcc\x8d\xa4\xdd\x0c\x7c\x5c\x5c\x7f\x9a\x6d\xfc\xff\xe1\xff\x4b\xe0\xee\xd9\x46\xcf\x5e\x71\xc2\xe3\xde\x9d\xde\x7d\xdd\x6c\x1a\x2f\xd8\x0c\x2e\x1b\x79\xde\x08\x4e\x1b\xa5\xcd\x7a\xf9\xd7\x6b\xe3\x86\xea\x53\x1d\x81\xb2\x4e\xa2\x7a\x61\xf5\xd2\x3b\xcb\x72\x97\x5b\xaf\x2c\xeb\xd9\xc9\x7a\xdc\xe5\x79\xb1\xa4\xcd\xe0\xec\x2c\xd7\x8b\x1d\x59\xf1\xf5\xe2\x1a\x95\xeb\x55\x47\x23\xd8\x48\x67\x7a\xd1\xa2\x2e\x2e\x54\xa7\x90\x7f\xca\x50\x4f\x66\x6c\x56\x2e\xfd\xbf\x11\xbc\x5e\xe8\x0d\xb5\xe1\x93\x68\xe4\x7a\x6f\xf7\x3f\x35\xd8\x08\xb7\xda\x48\x1b\x37\x2b\x3e\x1a\x82\xea\x7a\xde\x28\x6b\x58\x2f\xad\x9b\x1d\x3a\xc1\x1d\xee\xc5\x3a\xeb\x5e\xdb\xdb\xdb\x45\x7b\x7b\x3b\xda\xdb\xdb\xd1\xda\xda\x8a\x58\x2c\x06\xbf\xdf\x2f\x88\xc8\x2a\x4b\x10\x11\x98\x19\xd6\xd5\xaa\xd7\x7c\x96\xcc\x8c\xd5\xd5\x55\x99\xcb\xe5\x10\x8f\xc7\xb1\xb2\xb2\x82\xa5\xa5\x25\xac\xae\xae\x42\x4a\xe9\xc4\xab\x11\xce\xce\xf0\x7a\xe9\xdd\xed\x76\xa7\xf3\xa2\x97\x57\x19\x8d\xe8\x02\x00\xc2\x8b\xb5\x7e\x5c\xd5\x78\x23\xc3\xbe\x51\x1d\x35\x71\xed\xed\xed\xd8\xb6\x6d\x1b\x7a\x7a\x7a\xd0\xd6\xd6\x26\x7c\x3e\x9f\x20\x22\x01\x86\x2a\x18\x5a\x48\x57\x22\x61\x5d\xe9\x8e\x16\x94\x5e\xbf\x21\x5a\x43\x25\xa5\x59\x33\x28\xa2\x30\xf9\x89\xa1\x32\xc1\x30\x04\xe7\x0b\xaa\x4c\x15\x7c\x32\x99\xf7\x95\x17\xd3\xfe\xf2\x42\xc6\x5f\x8e\x17\x7c\x32\xc3\x04\x03\x80\xc1\xcc\x32\x9f\xcf\xcb\x44\x22\x21\xef\xdf\xbf\x8f\x9b\x37\x6f\xfe\x34\xd9\xee\x47\x31\x43\x1a\x75\x2c\x68\x93\x08\x6c\x46\x98\x6f\x74\x64\xaf\x81\x96\x96\x16\xb1\x7b\xf7\x6e\x6c\xdb\xb6\x0d\xa1\x50\x48\x25\x22\x55\x91\x08\xc4\xf2\x6a\x77\x77\x5a\xdb\xdb\x9d\xf2\x1f\x6e\xcf\xfa\xf6\xb6\xe4\xd4\x11\xad\x2c\xba\x05\x23\x00\x8f\xc6\x13\x03\xf6\x78\xac\x6d\xa9\x94\x84\x4c\xc1\x27\x67\x97\x43\xa5\x3b\x4b\x11\xfd\xfa\x42\x54\xff\xe0\x51\x44\xbf\x99\xf6\x97\xe3\x2c\xa0\x33\xb3\x9e\x4e\xa7\xe5\xf8\xf8\x38\xa6\xa6\xa6\x90\x4a\xa5\xd6\x6b\xcf\x47\x6d\xf3\xc7\xa2\x95\x05\x56\xf3\xd6\xd3\x14\x37\x8a\xc0\x46\x90\xaa\x9b\x66\xf7\xee\xdd\x62\x74\x74\x14\x6d\x6d\x6d\x2a\x00\x55\x93\x22\xba\x75\xc5\x7f\x60\x68\x39\xf8\xe9\xbe\x55\xff\x89\xa6\x82\xba\x5b\x30\x42\x60\x02\x11\x1c\xbd\x64\xb6\x84\x1d\xf7\x00\x98\x01\xa2\x4a\x30\x99\x71\x8c\xda\x3e\x65\x32\x3b\x9c\x18\x65\x81\x64\x32\x58\xba\x3e\xdd\x52\x7c\xe7\x6e\x5b\xfe\x47\xf3\xd1\xe2\x78\x99\x38\xc7\xcc\xfa\xdc\xdc\x9c\xbc\x79\xf3\x26\x66\x66\x66\x50\x2e\x97\x1b\x69\x94\x1b\xa5\x5b\x23\x56\xb9\x61\x9a\x59\x71\xee\x8e\xac\xa7\xea\xaf\xcb\xa3\xd7\xc9\x07\xc7\xb3\x13\x01\x44\x22\x11\x3c\xf6\xd8\x63\x18\x1a\x1a\x12\x81\x40\x40\x55\x98\x22\x3d\x29\xff\xde\xdd\x8f\x42\x5f\x1c\x8a\x07\x5f\x0c\x18\x62\x1b\x98\x84\xd5\x4f\xe4\xe8\x05\xab\xa3\xec\xde\x31\xaf\x76\x7f\xda\x09\xac\x0c\xa8\xed\x64\x98\x1d\xe9\x2a\x8f\x2b\x25\x18\x19\x7f\x79\xfc\x4e\x47\xee\xd5\xf1\xae\xdc\xf7\xe3\xe1\xd2\x24\x13\x72\xd9\x6c\xd6\xb8\x72\xe5\x8a\xc5\x7a\x6b\xda\x52\xaf\x8d\x1e\x34\x84\xc7\x3d\x5c\x69\x37\x9a\x7f\xd3\xe6\xc7\x27\x2a\x33\xc2\xe1\x30\x0e\x1e\x3c\x88\x91\x91\x11\xa1\xaa\xaa\xe6\x2f\x51\xf3\xe8\x62\xf8\xc5\x7d\xf3\xe1\xff\xae\x35\xeb\x3b\x42\x80\x4a\xce\xde\xb1\xc1\xfd\x8c\x35\x1d\x59\x3f\x8f\x33\xdc\x2b\xcc\x8a\xe1\xca\x08\x26\x00\x20\x94\x89\x73\x0b\x51\xfd\xed\x6b\xbd\x99\x6f\xdc\x6d\xcb\x9d\x29\x2b\x48\xe9\xba\xae\x5f\xbc\x78\x11\xe3\xe3\xe3\x28\x97\xcb\x1f\x9f\x20\x1f\x13\x36\x2b\x23\x3f\x11\x38\x78\xf0\xa0\xd8\xb7\x6f\x9f\x08\x04\x02\x5a\xa0\x24\x3a\xf7\xcf\x45\xbe\xf4\xd8\xc3\xc8\x6f\x85\x4a\x62\x88\xd6\x10\xda\x7a\x62\x10\xc8\x63\x18\xc2\x95\xde\x2b\x1c\x70\x0f\xc5\x4a\x31\x55\xed\xb6\x26\xbd\xa3\x13\xed\x78\x66\x30\x41\x26\x03\xc6\xd5\x0f\xb6\xa6\xff\xdd\x78\x57\xee\x35\x43\xe1\x64\x26\x93\xd1\x2f\x5e\xbc\x88\xc9\xc9\x49\x30\x73\x3d\xe7\x87\x97\xd8\xaa\x97\xce\x2b\xbd\x05\x75\xc5\x1f\x79\x24\x76\xc3\x7a\xac\xb2\xae\x26\xe5\x4e\xd7\xd3\xd3\x83\xe3\xc7\x8f\xa3\xb5\xb5\x55\x53\xca\xd4\xbc\x6f\x3e\xfc\x85\x27\x66\xa2\xbf\x1b\xd6\xc5\x30\x00\x80\x6d\xfa\xd5\x90\xbf\x42\x57\x8b\xa8\xb5\xa1\x30\x33\xda\x72\xd0\xea\x00\xab\xe3\x2d\x46\x59\x29\xc1\xd5\xdd\x66\xbc\xcd\xb3\xd9\x4e\x45\x66\x18\xdb\x98\x38\x4b\x80\x5c\x09\x1a\x97\xdf\xdb\xb6\xfa\xbf\x4f\x76\xe4\xdf\x64\x42\x66\x7e\x7e\xde\x78\xf7\xdd\x77\x91\x4c\x26\x37\x6a\x5e\xc1\x11\xef\xa6\x67\x23\x3d\xc3\xb3\x1c\xc2\x5a\xe2\x7f\xe2\x9e\x76\xbf\xdf\x8f\xc3\x87\x0f\x63\xd7\xae\x5d\x2a\x81\x42\xdb\x12\x81\x63\x4f\x4f\x35\xff\x9b\xd6\x9c\x7a\xa4\xca\x09\xdd\xda\x0b\xd6\x0c\x32\xb7\xc8\x5b\x93\x6e\x03\xe1\xce\x0e\xac\x16\x6a\xc5\x92\x99\x86\xd7\x65\x55\x26\xa6\x72\x36\x56\xfc\xfb\x77\xb6\x27\xff\x70\x29\x52\xba\x59\x96\xe5\xc2\xf9\xf3\xe7\xe5\xcd\x9b\x37\x2d\x7b\x74\x3d\xd3\x62\xb3\x74\xaf\x2b\x3b\x15\x13\x27\x67\x44\xa3\x36\xd4\x23\x99\x55\xe0\x9a\xb8\xce\xce\x4e\xbc\xf0\xc2\x0b\xe8\xef\xef\x0f\x84\x4b\x4a\xdf\xb3\x93\x2d\xbf\x7f\xfc\x7e\xec\x8f\xc2\xba\x18\x70\x2a\x1b\x55\xed\xd1\x7c\x66\x47\x1f\x9a\x37\x6b\x38\xaa\xf3\x9e\x1c\x8f\xce\x72\xac\x68\x47\x1e\x72\xbc\x14\x6c\xe6\xb5\x4c\x15\x32\x03\xad\xf4\xd6\x48\xb7\xdf\x29\xaa\xd6\x01\x80\x62\x05\x75\x64\xd7\x62\xf8\xe7\x55\x49\xfc\x28\x66\x8c\x6f\x19\xd8\x5a\xea\xe8\xe8\x28\xcf\xcf\xcf\x53\xa9\x54\x72\x93\xc3\x49\x1f\xe9\x0a\x6b\x44\x77\x67\x1a\x77\x3a\x82\x47\xa0\x05\x8d\x54\xe2\x46\x5a\x6b\x4d\x9a\x7d\xfb\xf6\x89\x27\x9f\x7c\x52\x08\x12\x91\x81\x95\xc0\x89\x9f\xb9\xd3\xf2\xc7\x4d\x45\x65\xb4\x2a\xaf\xaa\x98\x30\x39\xee\xcd\x38\x9b\x98\xeb\x8c\x38\xeb\x05\x70\x36\x88\x1d\xf1\x40\x95\xed\x3a\x07\xb9\x9d\xdf\x55\x67\xcd\xbb\xe2\x2a\x83\x1d\x15\xd8\x2f\x82\xd9\xdb\x8b\x91\xd2\xdb\xaf\xef\x4c\xfc\xde\x72\xb8\x34\xb6\x9c\x58\x2e\x7c\xef\x7b\xdf\xdb\xa8\x49\xf7\x51\x4d\x0f\x1b\x3e\x8a\xf9\xe1\xac\xc0\x1d\x67\xa7\x79\xf6\xd9\x67\xc5\x8e\x1d\x3b\x54\x45\xa2\xf5\xc9\x07\xb1\xaf\x1e\x9a\x69\xfa\x3d\x85\x29\x54\x3b\x14\xaa\x58\xd4\xca\x38\xd4\xb5\x11\x19\x6c\x8f\x1a\x36\x4d\x05\x5d\xe5\x42\x56\x2b\x67\x32\x7e\x23\x95\xf7\xc9\x5c\x41\x95\x85\xb2\x60\x43\x12\xa4\xc2\x24\xd4\x32\x69\x01\x43\x84\x42\xba\x08\x45\x8a\x6a\x34\xac\x8b\x88\x2a\x49\xf5\xb4\x47\xed\xca\xeb\xbd\xe3\x2e\xfc\x6b\x70\x03\x74\x55\x2e\xbc\xba\x37\xfe\xf3\xb3\xb1\xc2\x85\x9f\xfc\xe4\x27\xc6\x9d\x3b\x77\xac\x8c\x9e\x66\x03\xd6\x17\x57\x1b\x31\x07\xa1\x3a\x22\xeb\x5d\xeb\x85\x79\xc6\xf9\x7c\x3e\xf1\xdc\x73\xcf\xa1\xaf\xaf\x4f\x0b\xe9\xa2\xff\x85\xf1\xd6\x3f\x1a\x58\x09\x7c\x81\xd8\x92\x3f\x54\x43\xa2\x8a\x62\xe1\xe0\x9d\xf6\xc8\x71\x2a\x1e\x66\x5e\x62\x18\x82\x8d\xe5\xb0\xbe\x38\x17\xd5\xa7\xe7\x62\xc5\xa9\xe5\x70\x69\x36\xed\x2f\x3f\x2a\x0b\x4e\x31\x90\x03\xa0\xa3\xea\x76\x03\x11\x09\x00\x02\xcc\x1a\x40\x01\x02\x42\x9a\x41\xcd\xb1\x82\xda\xd3\x99\xd6\xb6\xf5\xa4\xfc\xfd\x5b\x56\xb5\xfe\xa6\xa2\xda\x2c\x18\xa2\xa2\x54\x59\xea\x12\x6a\xf8\xb0\xcd\xf2\xb9\x06\xbb\x2a\xee\x60\x2c\x87\x4b\x8b\x8b\x11\xbd\x40\x44\x6a\x53\x53\x93\xd1\x88\x56\x0d\x68\x0a\x54\x3b\x69\x23\xb4\x87\x8a\x4f\xc0\x3d\x64\x41\x38\x1c\x16\x2f\xbf\xfc\x32\x62\xb1\x58\xa0\x39\xa7\xee\x7e\xf9\xc3\xf6\xaf\xb5\xe5\xd4\x27\xac\x2e\xb4\xd5\x0c\x8b\x30\xb6\x43\xbb\xea\xe0\xae\xc8\x9f\xda\x61\x59\x52\xa4\x31\xd3\x5c\x9c\x9a\xe8\xc8\x5d\x9f\x6d\x2e\xde\x4c\xfb\xcb\x0f\x18\x1c\x27\xa2\x24\x33\xa7\x00\xe4\x88\x48\x67\x66\x9d\x88\x0c\xd3\x0c\x90\xb0\xea\xaa\x34\x58\x25\x82\x2a\x99\xd5\xa2\x0f\xa1\x47\xaa\x1e\x7a\x14\xd1\xa3\x37\x7a\x32\xad\x0a\x53\x67\x6b\xce\xb7\x7d\x68\x39\xb0\x7f\x38\x1e\xda\xdb\x9e\xf1\x75\x13\x3b\x74\x54\x58\x72\xd1\x31\x74\x4d\xc9\x44\x96\x39\x03\x20\xab\x95\x93\xaf\x8d\x2e\xff\x87\x92\xca\x09\x66\x36\x52\xa9\x14\x5c\xf4\xdd\x2c\xad\xd7\x4b\x6f\xc7\xbb\x67\x3f\xdc\xe0\x1c\xca\x5e\x71\x76\x78\x24\x12\x11\x2f\xbd\xf4\x12\x62\xd1\x58\xa8\x2b\xa5\x3d\xf1\xb3\x1f\xb6\x7f\x23\xac\x2b\x43\x55\x85\xb0\x42\x84\x2a\x61\x9c\xda\x4b\x25\xc6\xad\x91\xae\x04\x8d\xc4\x58\x77\xf6\xd2\xed\xce\xdc\xd9\x8c\xbf\x3c\xc9\xe0\x05\x00\x71\x00\x49\x22\xca\x31\xb3\x0e\x40\x07\x20\xa5\x94\x52\xd7\x75\x00\x90\x89\x44\x02\x86\x51\x1d\x0c\x7e\xbf\x1f\xb1\x58\x0c\x44\x24\x34\x4d\xb3\x70\x57\x89\x48\x05\x10\x28\x83\x23\xf1\x48\xa9\x35\x1e\x29\xbd\x71\x71\x6b\xba\xaf\x33\xeb\xdb\xb7\x77\x3e\x72\x6c\xc7\x62\x68\xaf\xbf\x8c\xc0\x5a\x6d\xcb\xc4\x1f\xb0\x4d\x94\x32\xb1\xf1\xc6\xce\x95\xff\xb4\x1a\x30\x2e\x80\x11\x5f\x5d\x5d\x35\x26\x26\x26\xea\x79\x71\x36\xea\x9a\xf3\xa2\xb5\xa7\x3e\x62\x99\x1f\x1b\x81\xba\xbc\x3c\x1c\x0e\xc3\x1c\x89\xa1\xde\xa4\x76\xec\xe5\x9b\xed\xdf\x08\x95\x44\xdf\x9a\x84\xf5\xcc\x01\x97\xfd\x17\x0f\x97\x16\x2e\x6d\x4d\xbf\x7d\xb7\x3d\xff\x6e\x49\xc8\x29\x22\x9a\x03\x90\x00\x90\x61\xe6\x02\x11\x19\x89\x44\x42\x2e\x2c\x2c\x20\x1e\x8f\x23\x1e\x8f\x23\x9f\xcf\x23\x9b\xcd\x36\x6c\x00\x11\x21\x1a\x8d\x22\x12\x89\xa0\xa3\xa3\x03\xed\xed\xed\xe8\xea\xea\xb2\x1d\xf3\x00\x02\xcc\x1c\x05\xd0\x49\x44\x7d\xe1\xa2\xb2\x7b\xff\x5c\xf8\x67\xf6\xcf\x45\x8e\x04\x0c\x11\xaa\x3a\x24\x6a\xdb\xc2\x00\xde\xdb\x96\x7a\xf5\x42\x7f\xea\x4f\x19\x3c\x26\xa5\x4c\xfc\xe0\x07\x3f\x90\x8b\x8b\x8b\x8d\xcc\x8d\x4d\xd1\xb8\x4e\xfc\xa6\x5d\x74\x75\x2b\xf0\xf9\x7c\xf8\xc2\x17\xbe\x80\x58\x2c\x16\xea\x4a\x69\x47\x3e\x77\xa3\xfd\x5b\x41\x43\xe9\xae\x49\xe4\x6c\xb4\xd3\x16\xac\x31\x13\x18\x29\x7f\x39\x79\x7e\xdb\xea\xe9\xdb\x9d\xb9\x37\x0c\xe2\x49\x00\xb3\x30\x3b\xb0\x5c\x2e\x1b\xf3\xf3\xf3\x72\x6a\x6a\x0a\x73\x73\x73\x48\xa7\xd3\x1b\x69\xf8\xba\x40\x44\x88\xc5\x62\xd8\xbe\x7d\x3b\x06\x07\x07\xd1\xd2\xd2\xa2\x02\xd0\x00\x44\x00\x74\x12\xa8\x3f\xac\x8b\xbd\x4f\xcc\x44\x7f\x76\xef\x7c\xf8\x88\x5a\x16\xaa\xdb\x7c\xb9\xdb\x96\xbb\xfa\xf7\xbb\x97\xff\x50\x0a\x5c\x00\xb0\x78\xee\xdc\x39\x63\x6c\x6c\xec\xe3\xa0\xb5\xf9\x76\xb8\x9e\x1b\xb1\x52\x37\x08\x00\xf2\xb3\x9f\xfd\xac\xd8\xba\x75\x6b\xa0\x2d\xeb\x3b\xf0\xf9\xeb\x1d\xdf\x8a\x14\x95\x6d\x76\xc9\x6e\x6d\xd0\x5d\x9b\xd9\xc1\x06\xb1\x71\x6d\x4b\xe6\xfd\x0b\xfd\xab\xdf\x2b\xfa\x78\x0c\xc0\x7d\x54\x58\x68\x2e\x95\x4a\x19\xe3\xe3\xe3\xb8\x7a\xf5\xea\x27\x26\xcb\xd7\x83\x93\x27\x4f\x8a\xc1\xc1\x41\xe1\xf7\xfb\x35\x66\x8e\x10\x51\x37\x18\x43\xed\x59\xdf\x53\xa7\xee\x36\x7f\xa9\x2f\xe9\x1f\xb2\xe4\xfd\x4a\xb0\xb4\xf8\xd7\x07\x16\x7f\x3f\xaf\xc9\xb7\x01\xcc\xde\xb9\x73\xa7\xf0\xf6\xdb\x6f\xff\xa3\xe1\x6a\xc1\x46\xcc\x8f\xba\x7c\xfe\xc4\x89\x13\x62\xf7\xee\xdd\x5a\xb8\x28\x86\xbf\x78\xad\xf3\xdb\xad\x39\xdf\xde\x1a\xb6\xe3\xe9\x0e\xad\x06\x32\x18\x89\x90\xb1\x78\x7a\x24\xf1\x5f\xe7\xa3\xfa\x5b\x20\xdc\x01\xb0\x08\x20\x95\x48\x24\x8c\x0f\x3e\xf8\x00\xf7\xee\xdd\xdb\x88\xc9\x83\x3a\xe1\x6e\x95\xdd\x5d\x46\xa3\x32\xe5\xa1\x43\x87\xc4\xde\xbd\x7b\x85\xdf\xef\xd7\x00\x34\x03\xe8\x13\x12\xbb\xf7\xcf\x45\x3e\xff\xd4\xfd\xd8\x0b\x04\xe0\x6f\xf6\x2f\xfd\x1f\x0b\x51\xfd\x7b\x00\xa6\x12\x89\x44\xe6\xbb\xdf\xfd\x6e\x23\x8f\xce\x7a\xf8\x7a\xe5\x71\x87\x79\xb6\x81\xb0\xb6\x21\x6e\xf0\x9c\x6a\x19\x1d\x1d\xc5\xc9\x93\x27\x55\xb5\x4c\xbd\xff\x6c\xac\xfd\xeb\x7d\x49\xff\x0b\xe4\xc9\x3f\x4d\xb0\x3b\xd7\x54\xd9\x89\x71\xb3\x2b\x77\xe9\x9d\xed\x2b\x7f\x5e\x50\xe5\x65\x54\x46\x61\x32\x9f\xcf\xeb\x17\x2f\x5e\x94\x77\xee\xdc\x71\x2e\xd3\xf8\xa8\xf0\x71\x65\x12\x34\x4d\xc3\xd1\xa3\x47\xb1\x63\xc7\x0e\xa1\x28\x4a\x88\x99\x3b\x09\x34\xdc\x99\xf1\x3d\xd1\x9c\xf7\xb5\xdc\xee\xc8\x7e\x0f\xc0\xb8\xae\xeb\xa9\x57\x5e\x79\x45\xae\xae\xae\x7e\x1c\x7c\x36\x0b\x35\x32\xd2\x09\x1b\xf2\x22\x74\x76\x76\x8a\x9f\xfb\xb9\x9f\x13\x82\x44\xeb\x33\x93\xcd\xbf\xff\xd8\x5c\xe4\x5f\xda\x7e\x4b\xab\x54\xfb\xd6\xad\xc4\x33\xca\x0a\x8c\x33\x83\xc9\x1f\x5e\xdb\x92\xf9\x2b\x26\x8c\x31\xf3\x2c\x33\xe7\xc6\xc7\xc7\x8d\x33\x67\xce\x6c\x64\xa6\xe0\xe3\xc0\x47\x2a\xb3\xab\xab\x4b\x1c\x3d\x7a\x14\x9d\x9d\x9d\x1a\x80\x28\x11\xb5\x02\x00\x33\xc7\x01\x24\x7f\xfc\xe3\x1f\xcb\xa9\xa9\xa9\x8d\xcc\x7e\xd4\x40\x7b\x7b\xbb\x88\xc7\xe3\x1b\x71\x92\x37\x0c\xaf\x27\x23\x2d\xf0\x64\x6b\x5f\xfa\xd2\x97\x44\x6b\x6b\x6b\x64\xf4\x51\xe8\xcb\x2f\x8c\xb7\x7e\x4d\x78\x98\x31\x8e\x01\x58\xe3\x23\x2d\xa8\x5c\x78\x7d\xe7\xf2\x7f\x9e\x6a\x2b\x7c\x1f\x84\x9b\x00\x16\xb3\xd9\x6c\xe1\xcd\x37\xdf\xc4\xfc\xfc\xfc\xa6\x09\xb1\x89\x74\x9e\x6a\xfb\x26\xca\x15\x00\xe4\xc1\x83\x07\xc5\x81\x03\x07\x84\xcf\xe7\x53\x01\xc0\x30\x0c\xe3\xca\x95\x2b\xf2\xca\x95\x2b\x8d\xca\xae\x79\x7e\xfa\xe9\xa7\xc5\xd0\xd0\x90\xf0\xfb\xfd\x02\x00\x98\x59\x2e\x2f\x2f\xcb\x5b\xb7\x6e\xe1\xd6\xad\x5b\x1f\xe9\xc5\x6d\xc4\x5a\x3d\x5d\x42\x27\x4e\x9c\x10\xbb\x76\xed\x0a\x34\x17\x7c\x7b\x7f\xe1\x4a\xe7\xf7\x43\xba\xd2\x5b\x53\xda\x1a\x27\x27\x6c\x87\x65\x4e\x2b\x67\xfe\x6e\x77\xfc\xff\x7e\x18\xd3\xff\x8e\xc1\xe3\x00\x12\xb3\xb3\xb3\xfa\x9b\x6f\xbe\x89\x62\xb1\xb8\x51\x79\x51\x4f\xee\x35\x92\xed\xee\x72\x36\xe2\xf6\x6a\x98\x76\xf7\xee\xdd\xc2\xef\xf7\x63\x72\x72\x12\xe9\x74\xba\x91\x2c\xb6\x61\xe7\xce\x9d\x38\x71\xe2\x84\x50\x84\x12\x68\xce\xab\x7d\x7d\xab\xfe\x03\x6a\x99\x22\x2b\x21\x63\xf2\x61\xac\x38\x56\x12\x32\x13\x8f\xc7\xf5\xd7\x5f\x7f\x1d\xd9\x6c\x76\xa3\xb8\x01\x1b\x94\x91\x36\x6c\xdd\xba\x15\x9f\xf9\xcc\x67\x54\x01\xea\xfc\xdc\x8d\x8e\xff\x30\xb0\x12\xf8\x8c\x33\xbe\x2a\x1a\x9d\x0a\x4d\xe5\x2e\xaf\x96\x73\x7f\xbb\x2f\xfe\xef\x17\xa2\xfa\xdf\x01\x18\x67\xe6\xe4\xcd\x9b\x37\x8d\x73\xe7\xce\x6d\x44\x16\x36\xc2\xed\x93\x96\x3b\x1b\x81\x4d\xd7\xb9\x73\xe7\x4e\x3c\xfd\xf4\xd3\xaa\xc6\x4a\xeb\xc9\xbb\xcd\xff\x6a\xf7\x42\xf8\xab\x0a\x53\xd4\x34\xbd\x64\x32\x68\x5c\x7e\x73\xc7\xca\xff\x38\xd3\x52\x7c\x7f\x75\x75\x35\xf7\xca\x2b\xaf\xa0\x58\x2c\xae\x57\x9f\x1d\x6e\x4d\x63\x55\xdd\x2b\x0d\x7e\x9f\xfe\xf4\xa7\x29\x10\x08\x44\xf6\x2c\x44\xbe\x7c\xf0\x61\xe4\x5f\xae\xd1\x68\xc8\x79\x53\xf5\xaa\x96\x14\x59\xf8\xe1\x9e\xe5\xaf\xcf\xc5\xf4\x57\x18\x7c\x1b\x40\xf2\xcc\x99\x33\xc6\xe5\xcb\x97\xa5\xab\x0e\x32\x91\x73\x3f\x37\xc2\x0d\x0d\xf2\xff\xb4\x7e\x58\xa7\xae\x9a\xb8\x58\x2c\x46\xcf\x3f\xff\xbc\x50\x15\xb5\xe5\xf9\xdb\xad\xff\xeb\x9e\x47\xe1\xdf\x16\x0c\xbf\xc3\x53\x44\x01\x43\xf4\x0e\xc7\x43\x2f\x4e\x37\x17\xcf\x96\xa2\xea\xa3\x50\x28\x64\xdc\xbf\x7f\x5f\x3a\xea\x6b\xd8\x76\xa7\x53\xd6\x02\xa7\x93\xd6\x8e\x3b\x78\xf0\xa0\x68\x69\x69\xd1\x22\xba\x32\x74\xec\x5e\xec\xf7\x08\x24\xc8\x74\x19\x13\x33\xec\x7b\xf3\xd9\x02\x49\x2c\x4f\x8f\xac\xfc\x97\xd9\xe6\xe2\xdf\x9a\xe6\x45\xf2\xcc\x99\x33\xc6\xad\x5b\xb7\xdc\xf5\x79\xe1\x50\x2f\xbc\x1e\xde\x5e\x32\x7d\xbd\xfc\x8d\x1c\xd8\x8d\xe2\x9c\xe1\x5e\x65\xd9\xcf\x7b\xf6\xec\x81\xa6\x69\x5a\x5f\xd2\x7f\x6c\xe7\x62\xe8\x57\x09\x64\xfa\x9a\x51\xf1\xfc\x99\x7f\x9a\x21\xda\x8f\xdf\x8b\xfd\x4f\x04\x6a\xde\xbe\x7d\xbb\x08\x87\xc3\x5e\xf5\x7b\xe2\xe1\x6e\x98\x67\xe3\xc2\xe1\xb0\x78\xfc\xf1\xc7\x05\x18\xd1\x23\xd3\xb1\xdf\x0c\x95\x44\x1f\x73\x65\x89\x04\x73\x45\x27\xb5\xef\x2b\x6b\x5b\x2a\x5e\x1b\x30\x2e\xf6\xa7\x5e\xbb\xd3\x91\xfb\x0e\x08\x77\x98\xd9\xdd\x89\xc0\xc6\xd8\x94\x97\xac\x70\xc7\x3b\xcb\x71\x13\xc0\x2d\xbf\xea\xca\xb1\x06\xe1\x8d\xd8\x5b\x43\x05\x65\x60\x60\x00\x00\x22\xdb\x97\x83\x2f\x11\xa8\xa2\x18\x5a\x74\xaa\x99\xd1\x63\xf4\xa4\xb4\xa3\x11\x5d\xe9\x57\x14\x45\xdd\xb6\x6d\xdb\x46\xf0\x02\x00\x61\x11\xa0\xe1\xef\xe0\xc1\x83\x10\x42\x68\x6d\x59\xdf\xde\x3d\x0b\xe1\x5f\x24\xae\x4e\x55\x57\x98\x27\x81\xcc\x69\x9e\xca\x88\xac\x84\xdd\x6b\x2d\x8c\x5d\xe8\x4f\x7d\x13\x84\x9b\xcc\x9c\xb8\x7a\xf5\xaa\x61\x6a\x65\xee\xc6\xbb\x09\x5c\xef\xba\xd1\x30\x59\xe7\xde\x49\x8c\xcd\xe0\xe1\x8e\xf7\x8a\xab\x9b\xdf\x1c\x59\x81\xb0\xae\xf4\x5a\xb3\x28\x44\x16\x27\xb3\x38\x58\x85\x23\xab\x92\x42\xe1\xa2\xd2\x07\x40\x0d\x87\xc3\xee\xb2\x9d\xf8\xd6\x28\x71\x8d\xd8\x2a\x80\xca\xac\xc6\xc8\xc8\x88\x20\x50\xf3\xe1\xe9\xa6\xdf\x52\x24\x22\x4c\x66\x97\x11\x81\x89\x1c\x26\x64\x35\x2c\xeb\x2f\x27\xdf\xdc\xb1\xf2\x75\x29\x30\xc6\xcc\xf1\x7b\xf7\xee\xe9\x17\x2f\x5e\xf4\x22\xe8\x46\x47\xc5\x7a\xcf\x3f\x0d\xd8\x48\x1d\x6e\x6e\x56\x03\xcd\xcd\xcd\xd6\x5e\x14\x91\xd1\xca\x29\x66\x80\x89\xc0\x5c\x11\x46\xce\x2b\x00\x94\x09\x46\xc1\x57\x36\x1a\xd4\x5d\x97\xb5\x3a\x7f\x6e\xf6\x24\x1e\x7b\xec\x31\x28\x8a\xa2\xb5\x67\x7d\x7b\x87\xe3\xa1\x17\x89\xa9\x46\xcc\x92\xf5\x83\xc3\xf2\x00\xe3\x9d\xed\x2b\xff\x35\xed\x37\x2e\x30\xf3\x5c\x3a\x9d\x2e\xbc\xf3\xce\x3b\xf5\x10\xb1\xea\x5c\x0f\x17\x27\xbe\x8d\xda\xe0\x95\xde\x2b\xbe\x91\xbc\xac\x4b\x0f\x8f\x7b\xaf\x51\x62\x5f\x53\xa9\x14\xcc\xb5\x3b\xfa\x64\x47\xee\x3c\x13\x4b\x32\xb5\x7b\x4b\x37\x74\x6a\x8c\xf3\xd1\xe2\x78\x2a\x50\x5e\x00\xe0\x9c\x94\xae\xfb\xa2\x58\x71\x0d\xdf\xf2\x50\x28\x84\xd1\xd1\x51\x41\x44\xd1\x83\x0f\x23\xbf\xa6\x4a\x0a\xb9\x78\xaa\x7d\xcf\xc4\x20\xaa\xf0\xfd\xa9\xb6\xc2\xd5\x89\x8e\xfc\x0f\x88\x68\x5a\x4a\x99\x3b\x7d\xfa\x34\xcc\xb9\x42\x4f\x24\x1c\x04\xd9\x28\x38\x09\x56\x2f\x9f\xd7\x0b\xe3\xbe\x6f\x54\xb7\x97\x5d\xed\xae\x73\x3d\xae\x02\x29\x25\x12\x89\x84\x24\xa2\xcc\x5c\x54\xbf\xfc\x61\x77\xf6\x1d\xb6\xf6\x2f\x90\xa9\xf7\x9b\xbf\xa2\x2a\x0b\xef\x6e\x4f\x7e\x4b\x82\xe3\x00\x8c\x87\x0f\x1f\x3a\xeb\xf6\x92\xd1\x36\x2e\x0d\x57\x08\x8c\x8c\x8c\x08\x45\x51\xb4\x48\x41\xd9\xb6\x63\x31\xf4\xb2\x39\x4d\x5e\x35\x2e\xa8\xba\x7a\xd4\x1a\x93\x25\x21\xf5\xb3\x83\xc9\xbf\x94\xe0\x49\x02\x25\xaf\x5e\xbd\x2a\x5d\x2e\xa8\x7a\xf2\xc7\x2b\xac\x51\x5a\xd1\x20\xbe\x5e\x9b\xbc\x0c\xf7\x46\xf5\x6d\x54\x46\xba\x95\x30\xe7\x55\xdc\xb8\x71\x03\xdd\xdd\xdd\x05\x10\xee\xbf\xbd\x63\xe5\xcf\x8a\x3e\x69\xec\x9f\x8b\x9c\xf4\x95\x85\x66\xb1\xb7\x78\xb8\x34\xf7\xd6\xf0\xca\x5f\x2c\x36\x95\xde\x06\x23\x1e\x8f\xc7\x8d\x87\x0f\x1f\xae\xd7\x2e\xbb\x1e\x6b\xcd\x8e\xe7\x1b\xba\x63\xc7\x0e\x00\x08\xed\x7a\x14\xfa\xbc\x4f\x52\xd4\x59\x82\x35\x43\x6e\xed\xaf\xb0\x3c\xaa\x1f\xf6\x64\xdf\x49\x84\x8c\x0b\x00\x16\x97\x97\x97\xf5\x0f\x3e\xf8\xa0\x9e\xa6\x59\x0f\x36\x3a\x42\xdd\xf2\x76\xa3\xe5\xd7\xd3\x78\xbd\xca\x59\xef\xd9\x5d\xae\x67\xfa\x7b\xf7\xee\xe1\xee\xdd\xbb\xc6\xf6\xed\xdb\xe3\x65\x81\xcb\x67\x06\x57\xff\xe4\x6a\x6f\xe6\x8d\x9e\xb4\xb6\x47\x33\x44\x68\x25\x68\xcc\x3d\x8a\x16\xaf\x94\x05\x6e\x02\x98\x62\xe6\xcc\xd9\xb3\x67\xd7\xc3\xad\x06\x0f\x6b\x44\xae\x19\xb2\xbd\xbd\xbd\x68\x69\x69\x51\x15\x89\xd6\xd1\xc5\xf0\xcb\xce\x25\x53\x15\xfd\xca\xb9\xfc\xa1\x12\xa6\x2b\x9c\xbb\xdc\x97\xfe\x0e\x08\xd3\x60\xe4\xde\x7f\xff\x7d\x60\x2d\x1b\xdc\xa8\x6a\xdf\x48\xd1\xf0\x62\x7b\x5e\xe5\x6f\xd4\x03\xd3\xc8\x5e\xac\xc7\xce\xdc\x26\x51\x23\xbc\xf0\xd6\x5b\x6f\x41\x55\xd5\x42\x7f\x7f\xff\x1c\x11\x65\xd2\x7e\xe3\x7e\xda\x6f\xbc\x4d\x44\x2a\x33\xe7\x88\x28\x09\x20\x51\x2e\x97\x73\x6f\xbf\xfd\xb6\x7c\xf4\xe8\x51\x3d\xdc\x3c\xeb\x53\x1d\x01\xce\x4c\x72\x74\x74\x54\x30\xb3\xd6\x9d\x0a\x1c\x68\xc9\xa9\xa3\x55\x7f\x46\x65\xf4\xc1\xd6\x52\xad\x3a\x08\xe3\x9d\x99\x73\x69\x7f\xf9\x3a\x33\x27\x67\x67\x67\xbd\x58\x83\xb3\x72\x2f\x36\x51\x6f\x04\xd4\x4b\xef\xf5\xec\xee\xd4\x7a\x6f\xf4\x46\xa1\x5e\xbe\x46\x6c\x76\x4d\x3a\x29\x25\x7e\xf4\xa3\x1f\xe1\x89\x27\x9e\xd0\xf7\xef\xdf\x9f\x50\x14\x25\x65\xad\xf0\x23\x22\xc9\xcc\xc6\xc2\xc2\x82\xf1\xde\x7b\xef\x61\x9d\xd9\x10\xcf\xfa\xdc\xa7\x7a\xd8\x09\xfa\xfb\xfb\x05\x80\xc8\x70\x3c\xf8\x69\xc1\x24\x6c\xef\x29\x5b\x52\xb2\xfa\x0c\x00\x65\xc1\xc6\xf5\xde\xec\xdf\x81\xb0\x40\xa0\xc2\xe5\xcb\x97\x1b\x11\xa2\x1e\xbb\xfa\x28\x32\xb2\x51\xf9\x8d\x46\x64\xa3\xfc\xeb\x29\x51\x8d\x5e\x3a\xaf\xf4\x36\x4e\x97\x2e\x5d\xc2\xa5\x4b\x97\x0c\x00\xc6\x81\x03\x07\x44\x20\x10\x40\x2a\x95\x72\x6f\xd3\x6b\x58\x86\x57\x9c\x73\x5d\xab\x1d\xb8\x65\xcb\x16\xf8\x7c\x3e\x21\x40\xd1\xa1\xe5\xe0\x33\x4e\xa7\x9e\xcd\x4e\xd9\x19\x06\xcc\xc5\x8a\xe3\xcb\xe1\xd2\x55\x66\x4e\x3e\x7c\xf8\xd0\x30\x59\x83\x97\x56\xb7\x91\x91\x57\x8f\x85\x34\x52\x30\xdc\x8d\xf3\x1a\x91\xce\xb8\x7a\x2f\x49\xbd\x51\xdc\x48\x46\xad\xc1\xa3\xa7\xa7\x47\x6c\xdd\xba\x15\xcd\xcd\xcd\x00\x80\x72\xb9\x2c\xa6\xa7\xa7\xe1\x58\x59\x67\x2d\x5f\xb1\x69\xe3\xf7\xfb\xc5\xde\xbd\x7b\xd1\xdf\xdf\x8f\x48\x24\x22\xcc\x7c\x72\x7a\x7a\x1a\x77\xee\xdc\xc1\xe2\xe2\xa2\x17\x9e\x35\x23\xd2\xd9\x50\xf4\xf7\xf7\x83\x88\xb4\xb6\x8c\x6f\xa4\xa9\xa0\x6c\xab\x75\x8d\x3b\xa6\xa7\x50\x5d\xa6\x7b\xab\x2b\xfb\x36\x08\x73\x04\xca\x8d\x8f\x8f\xa3\x01\xd4\x33\x1d\xbc\x6c\xb9\x7a\x71\x1b\x91\x89\x1b\x29\x67\x3d\x1c\x37\x93\x5f\x00\x95\x8d\xbb\xa7\x4e\x9d\xc2\x96\x2d\x5b\x54\x30\x34\x5f\x99\x02\x0a\x93\x28\xaa\xb2\xb0\x7d\xfb\x76\xfd\xa9\xa7\x9e\x32\xde\x7f\xff\x7d\xe9\x58\x81\x0e\x00\x18\x1e\x1e\x16\xc7\x8f\x1f\x17\x7e\xbf\x5f\xd3\x0c\x8a\x76\xa5\xb5\x21\x45\x92\x96\x08\x95\x66\x23\xbb\x76\x2f\xec\xde\xbd\xbb\x70\xe3\xc6\x0d\x9c\x3f\x7f\x1e\xd5\xf3\x2a\xaa\x78\x78\x9a\x1f\x3d\x3d\x3d\x82\x99\x03\x5b\x93\xfe\xe3\x04\x88\xea\xca\x6b\xb2\x77\xf4\x52\x75\x65\x27\x4a\x0a\xe7\xee\xb5\x16\xde\x65\xe6\x64\x2e\x97\xab\x37\x53\x5e\x0f\x36\xcb\x36\xdd\xf9\xec\xf8\x58\x2c\x26\x7a\x7a\x7a\x10\x8b\xc5\x10\x8b\xc5\x00\x00\xb9\x5c\x0e\xe9\x74\x1a\xf1\x78\x1c\x75\x64\xf6\x27\x06\xed\xed\xed\xe2\xc5\x17\x5f\x14\x01\x7f\x20\xd0\xbb\xaa\xed\x7f\x62\x3a\xfa\xdb\x3d\x29\xed\x98\xc2\xa4\xa5\xfd\xe5\xfb\x1f\x76\x67\xbf\x75\x6d\x0b\xfe\xfa\xd4\xa9\x53\xa9\x70\x38\x6c\x98\x93\xd1\x62\xfb\xf6\xed\x78\xe6\x99\x67\x84\x0a\xd1\x7c\xf8\x7e\xf4\x57\x1f\x9b\x8b\xfc\x76\xb0\x24\xfa\x01\x88\x32\x21\x75\xbf\x2d\xff\xca\x5b\xc3\xc9\x7f\xbb\x77\xef\xde\xd9\x70\x38\xac\x9f\x3e\x7d\x7a\x4d\x3b\x3c\x8f\x67\x69\x6f\x6f\x17\xcc\x1c\xea\x4b\xfa\x9f\x20\x54\x8c\x7d\xa0\x3a\xc3\xe8\x5c\x2c\x0f\x00\x0f\x63\xc5\xf1\x82\x4f\x4e\x13\x51\xce\x5c\x2c\xe5\xc5\x1a\x9d\x75\xb8\xc3\x6a\xea\x6f\x40\x2b\xcf\xf8\x9d\x3b\x77\x8a\x7d\xfb\xf6\xa1\xa5\xa5\x45\x98\x5a\xa0\x4a\x30\x9d\x0d\x44\x12\x15\x2f\x89\x51\x2c\x16\xe5\xed\xdb\xb7\xe5\xfb\xef\xbf\xff\x49\x74\xe8\x1a\x5c\x9e\x7f\xfe\x79\x04\x02\x81\xd0\x9e\xf9\xf0\x97\x3e\x35\xd1\xf2\xa7\x0a\x53\xc4\x8a\x6b\xcb\x89\xde\xa7\xa7\x62\xc7\xfa\x57\xfc\xcf\xfe\xdd\xee\xe5\xdf\x3d\x7c\xf8\xf0\x62\x3a\x9d\x36\x26\x27\x27\xe5\xa9\x53\xa7\x54\x85\x44\xeb\x73\xb7\x5b\xff\x60\xd7\xa3\xd0\xbf\x70\x6e\xf6\x55\x99\x9a\xb7\xc7\x43\xbf\xde\x92\xf3\xed\xfe\xee\x63\x8b\xbf\x32\x34\x34\x74\x7f\xe7\xce\x9d\xc6\xed\xdb\xb7\xd7\x98\x1f\x35\x08\x0d\x0c\x0c\x08\x00\xaa\x2a\xa9\xb9\x23\xa3\x8d\x00\xce\x85\x6f\x15\x6d\x95\xa9\xaa\xee\x30\x18\x0f\x5a\x0a\x97\x41\x48\x30\xb3\x7e\xf7\xee\x5d\x67\x43\xdd\xf7\xf5\x3a\x74\x23\x1d\xe8\x26\xa0\xe8\xea\xea\xc2\xc9\x93\x27\xd1\xdc\xdc\xac\x11\x23\xd4\x14\x2f\x1f\x88\x2e\x19\xcf\x87\x92\xe5\xfd\x6a\x89\x3b\xc1\x50\xa5\x4a\xc9\x42\x44\xdc\x49\xb7\x29\x3f\x59\xed\xd2\xde\xd9\xbf\x6f\x5f\x62\x74\x74\x54\xbf\x7e\xfd\xba\x34\xe7\x43\x1b\xc9\xe3\xf5\x64\xbb\x8d\xcf\xc1\x83\x07\x45\x53\x53\x53\xa0\x2d\xe3\xdb\x7f\x6a\xb2\xf9\x4f\x14\x46\xa4\x42\x31\x7b\x77\x08\x08\x84\x81\x95\xc0\x97\x0e\xcf\x44\x27\xcf\x6d\x5b\xfd\xe3\xa3\x47\x8f\x26\xf7\xef\xdf\x2f\x14\x45\x09\x0c\x2e\x07\x9e\x1b\x7d\x14\xfa\xef\x2b\x0b\x2a\xac\x5d\xd4\xd5\x01\xd3\x9a\x53\x8f\x1c\x99\x8e\xfe\xf6\xdb\xdb\x57\xfe\xe0\xc9\x27\x9f\x4c\xde\xbe\x7d\xbb\x46\x7e\xbb\x59\xab\xec\xee\xee\x16\x00\xd4\xa6\xa2\xda\x1b\xd6\x95\x6e\xdb\x73\x63\x29\x37\x4e\x8b\xc3\xdc\x8e\xfd\xb0\xb9\x78\x05\x40\x4a\xd7\x75\xf9\xe8\xd1\xa3\xcd\xa8\xce\xee\xb0\xf5\xae\x36\xec\xdd\xbb\x17\xc7\x8e\x1d\x13\x60\x8e\xc4\x1e\x19\xcf\x74\x4f\xe8\xbf\x17\xc8\xc8\x23\x64\x11\xdf\xb1\x58\x28\x98\x96\xcf\x34\xcf\x97\xbe\xda\x3b\x5e\x9c\x8d\x0f\x68\x5f\x5f\x1c\xd4\xfe\xd3\xa1\x43\x87\xe2\xbd\xbd\xbd\xfa\x1b\x6f\xbc\xe1\x9e\x89\xaf\x57\x6f\x43\x33\x64\xf7\xee\xdd\x00\x23\xb4\x6f\x3e\xfc\x6b\xbe\xb2\x68\xb6\x55\x09\xd3\x19\xee\x98\x43\xc6\xde\xf9\xf0\xaf\x5e\xdc\x9a\xfa\xf3\x60\x30\x98\x09\x85\x42\x12\x8c\xc8\xe8\x62\xf8\xe7\x89\x2b\x53\x5c\x4e\x95\x84\x4c\x82\x13\x03\x23\x8b\xa1\x2f\x9c\x19\x4a\xfe\x19\x05\x02\x19\x54\xb6\x4a\xd8\x38\xac\x11\xda\x1d\x1d\x1d\x00\xa0\xb6\xe4\xd5\x21\xc1\xd0\x6c\x73\xdf\x9a\xf0\x70\x26\x26\x42\xc1\x27\x93\xc9\x80\x31\x05\xa0\xb0\x81\x4e\xdc\x2c\x78\x2a\x25\x7b\xf6\xec\x11\x4f\x3d\xf5\x94\x4a\x65\xee\xdc\x3a\x56\xfc\x83\x6d\x57\x0a\x7f\x15\xcc\x94\x8f\x12\x20\x6a\x56\xf2\x81\xad\x89\x52\x10\x08\xaa\xc1\x7d\x5d\x77\xf5\x3f\xdc\x71\x3e\xf7\x57\x81\x8c\xdc\xdd\xdb\xd3\x13\x78\xf1\xc5\x17\xa1\x69\xda\x46\x6c\xcc\x86\xf1\xe6\x54\x55\xb4\x33\xa3\x1d\x70\xaf\x68\x73\xae\xf1\x25\x00\x81\x92\xe8\x8e\x15\xd4\x61\x22\xd2\x98\x59\x00\x88\xc4\xf2\xea\x90\xed\x77\x35\x81\x5d\x79\x03\x86\xe8\x0c\x94\x44\x27\x00\x75\xef\xde\xbd\x35\xb4\x11\x0e\x62\x09\x00\xc2\x54\x12\xb4\xb6\xac\x6f\x47\x75\xa6\x83\xea\x2e\x7a\x48\x84\x4a\xb3\x25\x85\xe3\x00\xf4\xf9\xf9\x79\x77\xd9\x9b\xb9\xd6\x0b\x73\xe2\x29\x86\x87\x87\xc5\xb1\x63\xc7\x54\xc1\x68\x1f\xb8\x56\xf8\xe3\xd6\xd9\xd2\xef\x10\xa0\x55\xb5\x69\x97\x37\x9f\x08\xce\x15\x29\x04\x20\x98\x96\xc7\x86\x2f\xe6\xbf\xe3\xcf\xca\xbd\x1d\x1d\x1d\x81\x53\xa7\x4e\x55\xb7\xdf\xd5\xa9\xd7\xf5\x03\x1c\x1d\xbb\x75\xeb\x56\x2b\x5c\x23\x86\x66\xe7\xb6\x44\x92\x73\xbf\x88\x99\xd7\x10\xac\x31\xb3\x30\xeb\x55\xf3\xbe\x72\x0e\x6e\x70\x2e\x2a\x41\x45\xa9\x2c\xaa\xec\xa9\x99\xab\xae\x00\x84\x42\x21\x01\x40\x8b\x15\xd4\xbe\x9a\xf5\x8c\x9e\x57\x60\x39\x6c\x4c\x83\x90\x61\x66\x23\x1e\x8f\xd7\x94\xe5\x55\xe1\x3a\x57\xeb\xde\xd3\xc6\xd4\x34\x0d\xc7\x8f\x1f\x17\x04\x44\xba\x26\xf5\xdf\x8e\x3d\x32\x7e\xd1\x61\xdd\x56\xdd\x86\x55\x1d\x1b\xd5\xa3\x20\xe0\x48\xc7\x50\x8b\x3c\x34\x70\xb5\xf0\xef\x26\x8f\x86\xbe\x32\x38\x38\x38\x3b\x38\x38\x68\x4c\x4d\x4d\xad\xc1\x21\x16\x8b\x61\xf7\xee\xdd\xe8\xed\xed\x45\x30\x18\x14\x00\x90\xc9\x64\x30\x33\x33\x83\x1b\x37\x6e\x40\xd7\x75\x39\x33\x33\x63\xe1\x6b\x2c\x44\xf5\xc9\xee\xb4\x7f\xbf\x35\xc1\xe1\xd5\x99\x05\x9f\x4c\xa5\xfd\xe5\x38\x00\x69\x6e\x01\xd4\xef\xb5\x15\x2e\x0f\xac\x04\x8e\xda\x7b\x45\x6d\x91\x66\x17\x80\xb9\x68\xf1\x8e\x21\x38\x87\xda\x29\xae\x1a\x84\x25\x00\x69\xb2\x55\x01\x20\xd0\x54\x50\xba\x2d\x36\x65\x2d\xe7\xb0\x3d\x73\x8e\xe7\x64\xb0\x34\xcb\xcc\x05\x00\xd2\x54\xef\x3f\x89\x9f\x05\x35\x86\xfb\xd1\xa3\x47\xe1\xf7\xfb\xb5\x60\x4a\x1e\xe8\xbc\xa7\xff\x0e\xec\xe6\x92\xc3\x1c\x5a\xeb\x13\xae\xc4\xad\x9d\x7b\x0b\xa6\xe5\x91\xce\x7b\xfa\x6f\x80\x39\x72\xfc\xf8\x71\x38\xeb\x02\x80\x03\x07\x0e\xe0\x8b\x5f\xfc\xa2\xd8\xb7\x77\x5f\xa8\x3f\xd2\xd1\x3b\xa2\xb7\x3c\xbe\xbd\xd4\xbc\x7f\x6b\x4b\x77\xe7\xa1\x43\x87\x02\x5f\xf9\xca\x57\xc4\xc8\xc8\x88\x00\x00\x29\xa5\x64\x70\xee\x46\x4f\xe6\x47\x25\x45\x16\x60\x9a\x69\xf6\xa4\x3b\x99\x13\xc8\x04\x8c\x77\xe6\xce\x18\x42\x26\x89\xc8\xa0\x8a\x56\x9d\xba\xd9\x95\x7d\x23\x1e\x2e\x4d\xd7\xbc\x71\xa8\xa2\xab\x2b\x5c\x38\x3f\x90\xfa\x0e\x08\x49\x66\x96\xd3\xd3\xd3\x35\xf8\xae\x91\x41\xe6\x99\x33\x5a\x44\x57\x5a\x9d\x9c\x15\x8e\x7b\x7b\xad\x09\x01\x29\x7f\xf9\x21\x11\xe9\xa6\xc2\x50\xc3\xa6\x5d\xf7\xf5\x58\x97\xd7\xb3\xa7\x6c\x1c\x1c\x1c\x14\x60\x8e\x76\xdc\xd7\x7f\x43\x94\x11\x21\x53\xfe\x55\x1a\x6e\x1e\xa9\x62\xc9\x44\x46\xf5\x8d\x66\x86\x9d\x96\xab\x69\x89\x19\xed\x0f\xf4\x5f\x57\x0c\xf4\x06\x83\x41\x6d\xfb\xf6\xed\x76\xbd\x9f\xfa\xd4\xa7\xc4\x91\x23\x47\xb4\x08\x6b\xbd\xcf\xdf\x69\xf9\xc3\x5f\xbd\xd8\x73\xfe\x8b\xd7\x3a\xce\x7e\xf9\x6a\xe7\x7b\xbf\x7e\xb1\xfb\xec\xb1\x7b\xb1\xdf\x09\xa9\xfe\xd6\x67\x9e\x79\x46\x3d\x7a\xf4\xa8\x98\x9f\x9f\x97\x44\x94\x4a\x84\x8c\xab\x6f\x0f\x27\xff\xb3\x41\x6c\x90\xa3\x33\x2d\x59\x34\x17\xd5\xef\x9c\x1f\x58\xfd\x36\x80\xb8\x94\xd2\x58\x5a\x5a\x92\x44\x94\x2b\xa9\x7c\xe7\x87\x7b\x96\xff\xcf\x47\x11\x7d\x9a\xcd\xf9\x5d\x36\x69\x9c\x57\xcb\x99\x1f\x8d\x26\xfe\xe3\xa3\x26\xfd\x1c\x80\xc4\xd2\xd2\x92\xe1\x3e\x1b\xaf\x86\xb5\xb6\xb6\xb6\x56\xee\x19\xaa\x66\x88\xca\x9a\xcb\x1a\xbf\xb8\xf3\x35\xa9\xa0\x96\xd3\xca\x71\x00\x7a\xa1\x50\xf0\x1a\x4d\xf0\x78\xae\xe7\x8e\x83\x47\xbc\x9d\x77\x64\x64\x44\xf8\xfd\x7e\x55\xd1\xb9\x3b\xb6\x68\xbc\x50\xc1\xc7\xb1\x5a\xc1\x39\xda\x6a\xd4\x3e\xaa\x22\x6b\x3d\x3a\x8e\x12\x51\x4b\xe8\x8e\x2e\x1a\x9f\x5a\xd9\xe2\x9b\xdd\xbd\x7b\xb7\x7e\xf7\xee\x5d\x0c\x0f\x0f\x8b\xe1\xe1\x61\xd5\x5f\xa2\xde\xcf\x5f\xef\xf8\x66\x67\xc6\x77\xd2\x59\x64\xb0\x24\x86\x0e\x4f\x37\xfd\x51\x5b\xd6\xb7\xef\xef\x77\xc7\xff\xd5\xde\xbd\x7b\xe3\xd7\xae\x5d\x93\xbd\xbd\xbd\x05\x22\xba\x7f\xb3\x2b\xfb\xed\x95\x60\x29\x71\x78\x3a\xfa\x72\x77\x5a\xeb\x57\x24\xa9\xa9\x80\x91\xbc\xdd\x99\xbb\x74\x75\x4b\xe6\x3b\x86\xc2\x57\x09\x94\xbc\x75\xeb\x96\xbc\x70\xe1\x02\xbe\xf8\xc5\x2f\x16\x9a\x9a\x9a\x66\x57\x83\xc6\x9b\x7f\x7d\xf0\x51\x62\x68\x39\xf8\xec\x96\xa4\x7f\x44\x91\xa4\x2d\x45\x4a\xd3\x93\x1d\xb9\x77\x73\x9a\xbc\x04\x60\x52\x4a\x99\xfb\xe0\x83\x0f\xec\x3e\xb3\xa0\xc6\xd7\xea\xf3\xf9\xc0\xcc\xc2\x27\x45\x40\x2b\x53\x88\xcd\x06\xdb\x66\xa4\xd5\x81\xb6\xbb\x95\x65\xc1\x27\x93\xcc\x6c\x6d\x5e\xa9\xe7\xda\xaa\x17\xd7\xc8\x5d\x57\xd3\x99\x3d\x3d\x3d\x60\x66\x2d\x94\x2a\xef\x17\x06\xb7\xba\xcf\x98\x63\x9b\x91\x3a\x65\x24\xec\xb5\x30\x96\x0a\x6f\xc7\x9a\xb2\x88\x98\x10\x59\x36\x8e\x27\x7a\xd5\xef\xb6\xb5\xb5\x65\x60\xb2\x70\x00\x91\xc3\x33\xd1\xdf\xae\x74\x62\x2d\xbb\xb6\x60\x68\x39\xf0\xcf\x77\x2d\x84\xdf\xbb\xd1\x93\xf9\x8b\x2d\x5b\xb6\x64\x2e\x5c\xb8\x20\x8f\x1c\x39\x92\x04\x30\x36\x1f\xd3\x53\xaf\xee\x8d\x9f\xf7\x49\xea\x16\x12\x9a\xae\x72\x82\xc1\xb3\x0c\x4c\x13\x68\x21\x9d\x4e\x17\x2e\x5c\xb8\x00\x5d\xd7\xf1\xd6\x5b\x6f\xe1\xb3\x9f\xfd\x6c\x4e\x55\xd5\xfb\x65\x41\xa9\x3b\xed\xb9\x3b\x13\x1d\xf9\x66\x53\x19\xca\x30\xf3\x22\x18\x8b\x00\x32\xef\xbc\xf3\x8e\x9c\x99\x99\x81\x1b\xdc\x76\xa4\xa0\xca\x7a\x4b\x95\x98\xd4\xaa\xbd\x88\x9a\x9e\xb4\x6c\x22\x16\x90\x65\xc1\x05\x93\xcf\x03\x6b\x47\xe1\x66\xc1\x6b\x14\x0b\xa0\x72\x6e\x2b\x11\x69\xfe\x8c\xdc\x55\x43\x56\xfb\xc4\x2a\x0b\x51\x38\x9e\xad\x01\x69\xf7\x60\x25\x9c\x1c\xdc\x0e\x8c\x40\x56\x0e\x11\x10\x32\xcd\x10\x04\x83\x41\x55\x91\x68\xdf\xb5\x10\xfe\x32\xb9\xde\xe4\x5a\x9a\x90\xd8\xf3\x28\xfc\x95\xb1\x9e\xec\xab\x9d\x9d\x9d\xb9\x57\x5e\x79\xc5\x90\x52\x1a\x87\x0f\x1f\x4e\xa8\xaa\x9a\x63\xf0\x6c\x49\x41\x00\x0a\x84\x79\xbe\x41\x86\x80\xc2\xd2\xd2\x92\xfe\xfd\xef\x7f\xdf\x6e\xeb\xc2\xc2\x82\xf8\xe6\x37\xbf\x69\xbc\xfc\xf2\xcb\x99\xde\xde\xde\x02\x2a\x7b\x43\x55\x22\x12\xcc\x6c\x10\x91\x9e\xcb\xe5\xf4\x77\xdf\x7d\x17\x0f\x1e\x3c\xf0\xe4\x6c\xee\xd9\x0f\x30\xb3\x20\x90\x20\x86\xb0\x8f\xf2\xb2\x24\xb6\x83\x4b\x99\xb7\x52\x9a\x87\xd6\x7a\x14\x0e\xac\x65\x91\x9e\x9d\xe4\x7a\xf6\xf4\xac\x84\x42\x21\xc1\xcc\x9a\x52\xe2\x66\x06\xaa\x67\xde\x38\xcf\x8a\x73\x8f\x48\x82\xb9\x1d\x81\xec\x8e\x66\x54\x0e\x70\x60\xb2\x94\x6f\x82\x52\x42\x33\x18\x01\x06\x8b\xaf\x7e\xf5\xab\x82\x99\xd5\x90\xae\xf4\x06\x0c\xd1\x69\x2b\x9b\x8e\x13\x99\xc9\x31\x99\x1e\xcb\xab\x43\xaa\xa4\x66\x43\xe1\xc5\x2d\x5b\xb6\xc8\x1b\x37\x6e\xc8\xf9\xf9\x79\xec\xdb\xb7\x2f\xd7\xdf\xdf\x5f\xd0\x34\xcd\x32\x6d\x64\x22\x91\x90\x37\x6e\xdc\x80\xcb\xbd\x66\x73\xa5\x1f\xfe\xf0\x87\xe8\xee\xee\x36\x06\x06\x06\x8c\xee\xee\xca\xa6\xef\x74\x3a\x8d\xb9\xb9\x39\x4c\x4e\x4e\xc2\x30\x8c\x7a\x0e\x09\x51\xef\x30\x08\x01\x54\xad\x0c\x8b\x2d\x55\x55\x69\x54\x0f\xde\xd8\xb8\x6b\xcd\xae\xb4\x4e\x5c\x23\xb0\xd3\x72\x05\x33\x6f\x0d\xd5\x89\x1b\xd7\xc6\x5b\x43\xd1\x69\xce\xb1\x39\x34\x99\x20\x41\xb5\xac\x5f\x12\xab\x4c\x90\x00\x83\xad\x55\xe1\x0e\xb0\x58\xb9\x21\x58\x4a\x62\x0d\xa6\xcb\xf0\xe1\xc3\x87\x88\xc7\xe3\x78\xeb\xad\xb7\x6c\x2e\xd5\xd1\xd1\x21\x96\x96\x96\xbc\xda\xe4\xd6\x29\xc4\xc2\xc2\x02\x16\x16\x16\x1a\xf9\xa9\x9d\xdc\xcf\x7e\x76\x76\xa4\x84\xc9\x5a\x99\x20\x99\x20\x6d\x05\xc1\xb5\xef\xd1\x21\x9e\x84\xe0\x75\x4f\x06\x71\x56\xba\x99\xce\x5b\x03\x44\x84\x92\x5f\x24\xe1\x18\x15\x55\x3f\x00\xd9\xef\x19\x59\xab\xdf\xcd\x31\x5a\xeb\x8e\x72\xe2\x5f\x91\x95\xa5\x00\x25\x01\x92\x0e\x09\x28\xb3\x9a\x4c\x2d\x87\x4a\xd3\x9d\x19\xdf\x88\xed\xd9\xe2\x5a\x16\x4e\x60\xcc\xc5\x8a\xe3\x92\x50\x00\x20\x9d\x76\x74\x20\x10\x10\x3d\x3d\x3d\xf6\xbc\x62\x2c\x16\xc3\xfc\xfc\xbc\xfb\xc0\x0a\x4f\x7f\xf4\x93\x4f\x3e\x29\x22\x91\x8a\xbf\xdd\x9a\xc7\x74\xcc\x28\x79\xea\x1e\x9e\x6b\x76\x24\x20\x25\xb1\xc1\x0e\x16\x42\x16\xd5\xa8\xba\x6d\x55\x30\x84\x2a\x49\x33\x59\x87\x99\xd5\x59\xcc\x9a\x37\xc8\x8d\x40\xbd\xd1\xbc\x46\xfb\x2d\x16\x8b\x08\x06\x83\x7a\x3e\x2a\x26\x6a\xcf\x0e\x83\xcd\x3a\x6a\x94\x55\x3b\xda\xc9\x3e\x1c\xa3\xcb\x7a\x29\x01\xe4\xa3\xca\x14\x08\x05\x02\xc9\x3b\x77\xee\x60\xc7\x8e\x1d\x06\x83\x13\x17\x06\x52\xaf\xbc\x74\xb3\xed\x5f\x57\x56\x48\xb0\x43\x21\xae\xd0\x41\x17\x5c\xf8\xa0\x2f\xfd\x03\x10\x52\xcc\x6c\x98\x0a\x9f\x3c\x7a\xf4\xa8\xd8\xb5\x6b\x57\x65\x0f\x25\x9b\xb4\x25\x48\x66\x36\x1e\x3e\x7c\x28\xcf\x9d\x3b\x27\xcc\x53\x24\x6d\x3a\xb4\xb4\xb4\x88\x13\x27\x4e\xa0\xbb\xbb\x5b\x23\x90\xa6\x95\x29\x20\x24\x89\xa2\x4f\x16\x76\xec\xd8\x51\x38\x74\xe8\x90\x71\xee\xdc\x39\xe7\x54\xdc\x1a\xa7\x79\x0d\x30\xb3\x2c\x0b\xe8\x25\x85\x73\xc1\x12\xb5\xae\x35\x50\xc9\x26\x02\x08\x22\x58\x52\xa2\xcc\xf6\xe1\x79\x5e\x1d\xea\x8c\x6b\xf4\x56\xb9\xcd\x97\x9a\xb8\x78\x3c\x8e\xe6\xe6\x66\xbd\x18\x11\x53\xc5\x10\xcd\xfa\x73\xdc\x47\xae\xf1\xe1\xde\xd2\x57\xd5\x51\x1d\x1d\x00\x54\x8c\x73\x9b\x17\x03\xa9\x4e\xf5\x3c\x33\xe7\x74\x5d\x97\x6f\xbf\xfd\xb6\xec\xe9\xe9\x31\x9a\x9a\x9a\x12\x77\xdb\xf2\x3f\x3a\xb7\x6d\x75\xf8\xa9\xfb\xb1\xcf\x29\xb2\xf2\xb2\x5a\x87\x1f\x96\x54\x2e\x9c\x1e\x59\xf9\x8b\xa5\x48\xe9\x7d\x66\x4e\xce\xcf\xcf\xcb\x62\xb1\x88\x2f\x7c\xe1\x0b\xa2\xad\xad\x2d\x10\x2d\xaa\xdd\xfb\x66\x23\x5f\xe8\x4e\x69\x87\x05\x93\xb6\x1c\xd6\x6f\x7e\xd8\x9d\xfd\x0e\xb6\x6c\x99\xfc\xfc\xe7\x3f\x5f\x78\xfd\xf5\xd7\x61\xae\x5b\x95\xcd\xcd\xcd\xe2\xa5\x97\x5e\x12\xa1\x60\x28\xd0\xbf\xe2\x3f\x72\x78\x26\xfa\x5b\x1d\x19\xdf\x13\x82\x49\x5b\x09\x1a\x37\xaf\xf7\x66\xbe\x71\xb3\x9b\x5e\xfb\xcc\x67\x3e\x93\xf9\xe0\x83\x0f\xac\x95\x05\x35\x2f\xbb\xe2\x20\x2a\x75\x76\x76\x62\xeb\xd6\xad\x82\x88\x5a\x77\x2d\x84\x7f\x62\x54\x13\xfa\x00\x00\x1c\x93\x49\x44\x41\x54\x2e\x5c\x12\xed\x35\x9d\x57\xe1\x5b\x26\xd1\x2a\x6c\xeb\x41\x6b\xe1\xdc\x72\xb8\x74\xad\x58\x2c\xe6\x6f\xdf\xbe\x6d\x15\xbc\xd6\x8d\xb2\xf6\xbe\x5e\x1c\xb9\xc2\x25\x00\x21\x84\xc0\xd0\xd0\x10\x00\x68\x24\x69\x4b\xd3\x72\xf9\x31\x62\x27\x2e\xae\x52\xab\x3d\xec\xe8\xc4\xea\x19\xae\x96\xbf\x27\xd7\xac\x4c\x2e\x0c\x6b\xdf\x20\x41\xd3\xf3\xf3\xf3\x85\xc9\xc9\x49\xce\xe5\x72\x34\x34\x34\x64\x80\x50\x98\x8b\xea\xd3\xd3\xad\x85\x05\x02\xfc\x4c\x40\xc6\x6f\xac\x4e\x74\xe4\xaf\x9f\x1e\x59\xf9\xe6\xc3\x58\xf1\x87\x20\x4c\x00\x48\x9d\x3b\x77\x8e\x4f\x9d\x3a\x85\xf6\xf6\xf6\xd0\x60\x22\x78\xea\xf3\x37\x3a\xbe\x33\xb0\x12\xf8\xf9\xe6\x82\xba\x27\x5a\x54\x47\xbb\xd2\xda\xd3\x7b\x16\x22\xbf\x0c\xa2\xf4\xa3\x16\xe3\xd6\xe0\xd0\x90\x3e\x35\x35\xc5\x00\xe8\x73\x9f\xfb\x1c\xc2\xa1\x70\x78\xff\x5c\xf8\x2b\x9f\xbe\xdd\xf6\xe7\xb1\xbc\xef\x31\x1f\x8b\x66\x85\xa9\x29\xa2\x2b\x43\x43\xcb\x81\x2f\x44\x0b\x6a\xec\x41\x7b\xf1\x52\x57\x4f\x77\xfe\xe1\xc3\x87\xc8\x66\xb3\x64\x37\x0a\xd5\x63\x3e\x19\x00\x2f\x2e\x2e\xf2\xa1\x43\x87\x54\x22\x8a\x0e\x2d\x07\x3f\xdd\x92\x57\xfb\x2a\x5a\xdb\x5a\xca\x58\x67\xb6\x2d\x36\xe9\xb7\xe6\x62\xc5\x73\xaa\xaa\x66\xaf\x5d\xbb\x26\x9d\xe5\x7d\x84\x1f\x99\x1d\xe7\x0c\x03\x00\x5e\x59\x59\xe1\xfd\xfb\xf7\x43\x08\x41\x85\x26\x45\x6f\x5e\x28\x3d\xad\x18\x88\xd8\xb8\x50\x65\x23\x91\xb5\x74\xdb\x1a\x71\x44\x56\x1c\x4c\x37\x99\xa5\xf7\x10\x58\x90\x9c\xd9\x1b\xf8\xba\x1e\x51\xce\x32\x73\xfc\xf2\xe5\xcb\xe5\x44\x22\xc1\x2b\x2b\x2b\x1c\x0c\x06\xb9\xbd\xbd\xbd\x08\x60\x35\x1b\x90\xd3\x77\xdb\xf2\x97\xc7\x7a\xb2\xef\x8c\xf5\x64\x4f\x3f\x68\x2b\xbc\x9e\x57\xcb\x97\x00\x4c\x11\xd1\xea\xf9\xf3\xe7\xcb\xc1\x60\x10\x23\x23\x23\x5a\x34\xaf\x8c\x7e\xee\x46\xc7\xb7\x83\x25\xa5\xcf\x66\x5c\x26\x4e\x02\xa4\x6d\x49\xfa\x9f\x5d\x0d\x1a\x13\x89\x68\xf9\x4e\x7b\x7b\x7b\xa9\xad\xad\x0d\x3d\x3d\x3d\x5a\x7b\x4e\x3b\xf4\xd2\xcd\xb6\x6f\xa8\x2c\x9a\x80\xea\xc1\x89\x56\x09\x1d\x59\xdf\xa1\x82\x4f\x2e\x3c\x8a\x95\x6e\x74\x77\x77\xeb\xe6\x62\x2d\x9b\x3e\x35\x2c\xae\xa3\xa3\x43\x98\x36\xa1\x9e\x0a\x18\x8b\x95\xb7\xdd\x39\x1a\x2b\x84\xb2\xd7\x96\x13\xd0\x9a\xf3\x6d\x23\x22\xcd\xb2\xc1\x36\x01\x5e\xda\xab\x5b\x5e\xd7\xdc\x8f\x8f\x8f\x4b\x00\x29\xe9\xa3\x9b\x33\xfb\x02\xff\x91\x05\x74\x8b\x9b\xd6\xc8\x44\xa0\x46\x02\x98\x6d\xad\x9a\x50\x26\x8d\x96\xb6\xf9\x5e\x4f\xb7\x2b\x3f\x66\xe6\xc5\x74\x3a\xad\x4f\x4e\x4e\xda\x75\x9d\x39\x73\x46\x5e\xbb\x76\x4d\x2f\x97\xcb\x71\x66\x1e\x07\xf0\x3e\x08\x6f\x33\xf8\x4d\x66\xbe\x00\x60\x52\xd7\xf5\xe4\x99\x33\x67\x8c\xb1\xb1\x31\xec\xd9\xb3\x07\x60\x44\xf6\xcd\x47\x7e\x2d\x60\x88\x5e\x00\xf6\xcb\xc5\x0e\xf9\x2d\x00\xed\xc8\x74\xf4\x5f\x11\xa3\xbd\xbb\xbb\x5b\x1d\x1d\x1d\x15\x00\x22\xfb\xe6\xc2\xbf\xa4\x4a\x6a\xae\xa0\x6e\xd9\xae\x0c\xeb\x30\x43\x02\xc4\xa1\xd9\xa6\xdf\x52\x99\x3a\x9b\x9b\x9b\xd5\xbe\xbe\xbe\x1a\x37\x68\x8d\x1d\xb9\xbc\xbc\x6c\x9d\xcb\xad\x27\x03\xc6\x1c\x7b\x68\xab\x36\x61\xb8\xf2\xa6\xb5\x65\x7d\xdb\xc0\x08\x11\x91\xe8\xee\xee\x16\x2e\xd5\xb9\x11\xb8\x4d\x11\x4f\xfb\xd1\x71\x2f\xaf\x5d\xbb\x26\x86\x87\x87\xf5\x60\x30\x38\x97\x6d\x51\x7e\x34\xbd\x2f\xd0\xb9\x75\xac\xf0\xab\xc2\xa8\x4e\x1d\x55\x8f\x88\xa1\x9a\xc3\x77\xd9\x71\xa4\x27\x13\x61\x65\x8b\xfa\xfe\xfc\x88\xff\x1b\x20\x9a\x24\x20\x73\xe5\xca\x15\xab\xed\x76\xdd\x17\x2e\x5c\xc0\xc4\xc4\x84\xdc\xb1\x63\x47\xa1\xbf\xbf\xbf\xd0\xda\xda\x2a\x00\x60\x69\x69\x49\x3e\x78\xf0\x00\x37\x6f\xde\x44\xb1\x58\x94\xe1\x70\x58\x44\x22\x11\x01\x46\xa4\x77\xd5\x7f\xa4\x96\x99\xb3\x45\x2e\xfb\x7f\x2c\xaf\x8e\x44\x8a\x4a\x7f\x3a\x50\x5e\x24\x22\x03\x8c\x68\x57\x5a\x7b\xdc\x42\x98\x89\x6d\x73\xc7\x79\x5e\x6c\xb8\xa8\x0c\x45\x0b\xea\xb6\x95\x90\x31\xd7\xd1\xd1\x61\xcc\xce\xce\xd6\x38\x04\xaa\x94\x95\x12\x52\x4a\x08\x21\xf4\xe5\xb0\x71\xaf\x4a\x05\xe7\x1b\x6f\x53\x0c\x60\x46\x73\x5e\xdd\x16\x2c\x89\xd6\xbc\x26\xa7\x3b\x3a\x3a\x8c\x85\x85\x85\x8d\x8e\x4c\xf7\x48\xf4\x0a\xaf\x49\x9f\xcb\xe5\x70\xe6\xcc\x19\xf9\xfc\xf3\xcf\x67\x18\xb8\x93\xec\x51\xbf\x5d\x0a\x04\x53\x5b\xc7\x0a\xbf\xec\xcf\x72\x27\xb9\x90\xb4\xcf\x41\x47\xd5\xd7\x23\x55\xe8\x8f\x86\xb5\xd7\x16\xb7\x69\xdf\x62\xc2\x55\x02\xe2\x13\x13\x13\xd6\x1a\x98\x35\x75\xaf\xac\xac\xe0\xc2\x85\x0b\xf2\xc2\x85\x0b\x16\xb7\x5a\xd3\xe1\xad\xad\xad\x96\x23\x25\xa0\x4a\x8a\x58\x3e\x4c\xe7\x79\xe8\x4e\xc7\x05\x01\x42\xa9\x6c\xc1\x50\x99\x59\x12\x48\x93\x04\xe1\x3c\xda\xad\x32\x28\x4d\xcd\xca\x7a\x26\x58\x36\xab\x6a\xfa\xc5\x6d\xda\xd4\x4c\x63\x01\x90\xa6\x37\x5e\x4f\x06\x4b\xd3\x65\x82\x4e\x16\x7b\x05\xd9\x32\x07\x20\x7b\x09\x82\x56\xa6\x68\x5b\xd6\x37\x02\x40\xed\xe9\xe9\x71\x76\x8a\xd7\xd4\x54\xbd\x69\x2b\xe1\x8a\xaf\x5b\xce\xbd\x7b\xf7\xe4\xb5\x6b\xd7\x0c\x00\x09\x06\xc6\xb2\xad\xea\x77\xee\x3c\x15\xfe\x83\xb9\x51\xff\x0f\x0b\x61\x8a\xb3\xc9\x96\xc8\x41\x3c\x26\x42\x59\xa3\x5c\x7c\xab\xef\xc2\x9d\x63\xa1\xff\x6d\x71\x50\xfb\x1a\x13\x2e\x10\xd1\xdc\xec\xec\x6c\xc1\x69\xbc\xd7\xc1\x17\x40\x65\xee\xd0\xe1\xc5\xb2\xe3\x66\x66\x66\xa4\x65\xd7\xae\x84\x4a\x0b\xd6\x7d\xe5\xa8\x50\xf3\xcf\x36\xe5\x08\x69\x7f\x39\x9e\xf1\x97\x53\xcc\x2c\x89\x48\x82\x60\x2c\x44\x8b\x53\x56\xaf\x54\x3a\xdc\x31\x41\x47\x15\x7a\xc7\xc3\xa5\xa9\xd5\x40\x39\x01\xc0\x79\x30\x93\x84\x63\x44\xda\x2c\x6d\x71\x71\x11\xdd\xdd\xdd\x7a\xc6\x5f\x9e\xcb\xf8\x8d\x78\x73\xde\x57\x3d\x7e\xc5\xaa\xc8\xfa\x67\xda\x67\xfd\xc9\xc0\x93\xb3\xcd\x85\xd7\xba\xba\xba\x72\x8e\x86\xd7\x03\x2f\xfb\xd1\xcb\x36\xaa\x9b\xfe\xfc\xf9\xf3\x52\xd7\x75\xe3\xd0\xa1\x43\x09\x22\xd2\xcb\x2a\x12\x4b\xdb\x7c\x77\x96\x06\x7c\xdf\x0f\x64\xe5\x8e\x60\x4a\x6e\xf3\x15\x64\x2b\x31\x84\xa1\x51\xa6\x10\x11\x73\xf9\xa8\x72\x5b\x2a\xb8\xcf\xc0\x34\x11\xcd\x81\x39\x35\x33\x33\xa3\xbf\xfe\xfa\xeb\x35\xed\xaf\x73\xf5\x4a\x53\x83\x9b\xd9\x29\xb9\x9b\xdd\xd9\xb7\x46\x96\x42\x9f\x12\x6c\xda\xd6\x55\x37\x92\x49\x3c\xc6\x87\x3d\x99\x37\x4b\x42\xc6\xad\xb3\x65\x89\x28\x73\xbd\x37\xf3\x0f\xbb\x17\xc2\x9f\x09\x1a\x4a\xc4\xe9\x41\xb3\x09\x44\x2c\x3f\xd8\x9a\xfa\x21\x83\x13\x60\xe8\x0e\xe7\x83\x84\xa9\xb5\xda\xe6\x07\x00\x34\x35\x35\x61\x60\x60\x80\x98\x10\xee\x49\xf9\x8f\xb6\xe7\x7c\x03\xd5\x58\x67\x4a\x58\x83\x14\x6a\x99\xd4\xb1\x9e\xec\xdf\xfa\x7c\xbe\xd4\xbd\x7b\xf7\x38\x9f\xcf\x5b\xa9\xdc\xa6\x84\xa5\x95\x0a\x8f\x78\x5a\x5b\xba\x0d\xec\xce\x63\xba\xb2\xb8\xbb\xbb\xbb\x18\x08\x04\x32\x20\x8a\x83\x68\xce\xf0\x8b\xbb\x85\xa8\x72\x2d\xdb\xaa\x5e\xc8\xb6\xaa\x67\xf3\x31\xe5\xbd\x52\x50\x5c\x60\x41\x1f\x82\x68\x12\xc0\xbc\x94\x32\x73\xf1\xe2\x45\xe3\xbd\xf7\xde\x73\x7e\x7c\xc5\xc5\xd8\x6a\x9e\xdd\xb2\x9b\x5c\xe9\xa8\xaf\xaf\x8f\x23\x91\x08\x56\x03\xe5\xa2\xdf\x10\x7d\xdd\x69\x6d\x7b\xad\xa2\x58\x91\x7d\xb3\xcd\xc5\xf1\x9f\x6c\x4f\xfe\x7b\xa9\xe0\x0e\x33\x67\x0a\x85\x82\xf4\xf9\x7c\x5c\xf4\x71\x39\x11\x2e\x19\xdb\x96\x83\xfb\x55\x86\xcf\x69\xf2\x49\x62\x5c\xda\x9a\xfe\x87\x6b\x5b\x32\x7f\xc9\xc0\xdd\x5c\x2e\x97\x3b\x7b\xf6\xac\x75\xac\x0d\x01\xb5\xc7\xb3\x30\x00\x8e\xc7\xe3\x7c\xe8\xd0\x21\xc1\xcc\x81\xa0\x21\x86\x07\x13\x81\xc3\x54\x4d\x6f\xb6\xcc\xf4\x72\x98\xe1\x41\x43\xb4\x4e\x74\xe6\x5e\xcb\xab\xe5\x39\xc3\x30\x4a\xa6\xf7\xa1\x9e\x89\x81\x06\x71\x9b\xca\x93\x4e\xa7\x79\x6c\x6c\x8c\xb3\xd9\xac\x0c\x85\x42\x85\x50\x28\x94\x06\x90\x20\xa2\x45\x66\x9e\x23\xa2\x79\x66\x9e\x03\xf0\x08\x40\x22\x9f\xcf\x67\x26\x27\x27\x8d\x1f\xff\xf8\xc7\x3c\x33\x33\x23\x99\x79\x23\x75\x61\x9d\x70\x06\xc0\x52\x4a\xda\xb6\x6d\x5b\x19\x80\x3e\xd3\x5a\x9c\x4d\xfb\xcb\xdc\x9c\x57\xbb\xb4\xb2\xf0\x33\x80\xac\x56\x4e\x5f\xdb\x92\x7d\xf7\xad\xe1\x95\x3f\xd3\x15\x79\x19\xc0\xd2\xd8\xd8\x58\xe9\xec\xd9\xb3\x18\x19\x19\x29\x0b\x21\x0a\xc9\x60\x79\x69\xa2\x33\x7f\x1f\x40\xc0\x27\x49\x2b\xaa\xb2\xf0\x30\x56\xbc\xff\xce\xf0\xea\x77\xc6\x7a\xb2\xdf\x62\xf0\x2d\x00\x89\x0b\x17\x2e\x58\x67\xc1\xda\xf5\x7b\x6d\x19\x90\xd9\x6c\xd6\x08\x85\x42\x99\x99\xe6\xe2\x07\x0c\x48\x22\x08\x80\xbd\xbf\xbb\x41\x0c\x85\xa1\xed\x58\x0a\x7d\xfa\x7c\xff\xea\xe5\x91\x91\x91\xdc\xa5\x4b\x97\x84\xe3\x43\x60\xc0\xc6\x26\x92\xe1\x91\x66\x23\x2c\x0f\xe3\xe3\xe3\xd2\xdc\xa6\x20\x87\x87\x87\x65\x57\x57\x57\xcd\xf6\xe8\x74\x3a\x8d\xeb\xd7\xaf\xaf\xc7\xf2\xeb\x41\x23\x57\xa2\x0d\x13\x13\x13\x72\x60\x60\xc0\x18\x1a\x1a\x8a\x4b\xe6\xab\x1f\xf6\x64\x93\xb7\xba\xb2\x6f\x84\x4a\x4a\xaf\x60\x88\x9c\x4f\x2e\x1a\x0a\xdf\x67\xe6\x29\x22\x5a\x58\x5d\x5d\x2d\xbc\xf7\xde\x7b\x12\x00\xce\x9f\x3f\x8f\x13\x27\x4e\xa4\x00\x8c\xaf\x06\x8d\xe4\x4f\x86\x93\xd7\xc1\x68\x25\x40\x65\x42\x12\xc0\x1c\x80\x59\x02\x25\xc6\xc7\xc7\x0d\xaf\x0d\x3f\x16\x6b\x75\x28\xb9\xa0\xf6\xf6\x76\xb4\xb5\xb5\x89\x82\x2a\xb5\x9d\x4b\xa1\xe7\x82\x25\x25\x66\xfa\x50\x6a\x78\x77\x55\xcb\x22\x44\x74\xa5\x6d\xac\x37\xfb\xaa\xa2\xf9\x56\x1f\x3d\x7a\x24\x53\xa9\x94\xc5\x46\xdd\x6c\xaa\x1e\x3b\xe5\x3a\x57\x37\xab\x75\x97\x51\xc3\x76\x13\x89\x84\x9c\x99\x99\xa1\x99\x99\x19\x58\x3f\x73\x43\x91\x4b\xea\xd8\x9d\xe4\xc6\x87\x5d\xf1\xa8\x93\x66\x4d\xde\xfb\xf7\xef\x23\x16\x8b\x95\x5b\x5a\x5a\x72\x44\x94\x60\xc2\x9c\xae\xf2\x9d\x82\x22\x6f\xb1\xc0\x6d\x00\x0f\x00\xc4\x17\x17\x17\x0b\xa7\x4f\x9f\x46\xb1\x58\x24\x00\xb4\xb4\xb4\x84\x54\x2a\x25\x7b\x7b\x7b\x8b\xaa\xaa\xa6\x98\x79\x81\x88\x66\x40\xb8\x87\xca\xa9\x99\x73\x52\xca\xd5\xb1\xb1\x31\xe3\xec\xd9\xb3\xee\x41\xc0\x80\xf7\x07\x5c\x60\xbb\xc3\x08\xc1\x48\x51\xd9\xd9\xbb\xaa\xed\xb2\x3c\x23\x56\x0f\x92\xa9\x1e\x93\x69\x97\x05\x0c\xd1\xf2\xa8\x49\xbf\x9a\x08\x96\xee\x84\x42\x21\x7d\x62\x62\xc2\x49\x7c\x0b\xdc\xcf\x5e\x71\x5e\x32\xb2\x51\x19\xec\x0a\x5b\xaf\x0e\xe7\x4f\x3a\xd2\x5b\xf7\xce\x4e\xf2\x82\xba\x76\x32\x33\xe3\xde\xbd\x7b\x48\xa5\x52\x32\x12\x89\x14\xc3\xe1\x70\x86\x99\x57\x89\x68\x85\x99\x57\x53\xa9\x54\xee\xd2\xa5\x4b\xe5\xf7\xdf\x7f\x1f\xf9\x7c\xde\x59\x37\x12\x89\x84\x1c\x1f\x1f\x87\x61\x18\x86\xcf\xe7\x2b\x84\xc3\xe1\x1c\x33\x67\xb2\xd9\x6c\x76\x7a\x7a\xba\xf4\xee\xbb\xef\xb2\xe9\x02\x75\x0f\x02\xd3\x87\x55\x0b\x02\x80\x0c\x85\x42\xe2\x97\x7e\xe9\x97\x04\x80\xee\xee\xb4\xff\x4b\xbf\x70\xa5\xf3\x4f\x6c\x2d\x8c\xaa\x4e\x07\x37\x0d\xa7\x5b\x0a\x6f\x7f\x7f\xff\xd2\xaf\x49\xf0\xdc\x77\xbf\xfb\x5d\xb9\xb2\xb2\x52\x8f\x25\x35\x62\xaf\x8d\xd2\xd5\x83\x8f\x9b\xff\xa7\x06\x3d\x3d\x3d\x02\xa8\xb0\xf7\x4c\x26\xf3\x53\xc3\x45\x31\xaf\xd6\x10\x65\x00\xa2\x54\x2a\xc9\x2d\x5b\xb6\xa0\xa9\xa9\x89\xf2\xbe\xb2\x18\x4a\x04\x4f\x86\x4b\x4a\x8b\xe5\x04\xb0\xce\x16\xa9\x98\x21\xa6\x7d\x44\x40\xb4\xa0\xf4\xcd\x36\x17\xcf\xa5\x83\xe5\x07\xc1\x60\xb0\x34\x35\x35\xe5\x64\x55\xc2\x71\xef\x0e\x73\xb3\x3c\xb8\xd2\x39\xd3\x0a\xac\x4d\x4f\x75\xe2\x9c\xa3\xcb\x1d\xef\x55\x9e\x3b\xac\xde\xd5\x09\x5e\xf9\x6d\xc8\x64\x32\x94\xc9\x64\xa4\xae\xeb\x76\xf8\x73\xcf\x3d\x27\x4e\x9e\x3c\xa9\x1c\x3e\x7c\x58\x7d\xe2\x89\x27\x94\xc7\x1f\x7f\x9c\x86\x87\x87\x81\x0a\x9b\xad\x57\x5f\xc3\x30\xb7\xf9\x61\xb3\x35\x45\x51\x30\x30\x30\xc0\x4c\xf0\xa9\x92\xfa\x06\x56\x02\x07\xac\x33\xd4\xac\xc4\x8e\x7f\x56\xdf\x8a\xa6\xa2\xda\x31\xde\x95\x7b\x3d\xd6\x1c\xcb\xcc\xcf\xcf\x73\x26\x93\x71\xcb\x39\x27\x51\x9d\x61\xeb\xc9\x21\x6c\xa0\x1c\x2f\xd3\x06\x75\xf2\x36\x32\x27\xe0\x7a\x76\xa7\x75\xb3\x67\x27\x2b\xae\xab\x03\xec\xda\xb5\x4b\x7c\xee\x73\x9f\x53\x5a\x5b\x5a\x83\x5d\x85\xc0\xf0\x48\x3c\xf4\xfc\xc0\x4a\xe0\x58\xb8\xa4\x34\x1b\x31\xdf\xea\x96\x6d\x5b\x8d\x81\x81\x01\x39\x33\x33\x03\x5d\xd7\xdd\xe5\x79\xb5\xc1\x0e\x5b\x63\x7e\x58\xbf\x78\x3c\xce\xfb\xf6\xed\x83\xa2\x28\x94\x0a\x18\xbc\x6f\x3e\xf2\x59\x95\xc9\x67\xf9\x5f\xed\x3e\xb4\x3c\x48\xa6\x23\xb6\xa9\xa8\x6e\x8d\x47\x4a\x63\x2b\x21\x63\x32\x16\x8b\xe9\xa6\xeb\xcb\x5d\xbe\xc5\xf2\x36\x6d\x72\xac\x93\x66\x23\x79\x36\x9a\x17\x0d\xe2\x36\x5d\xe7\xae\x5d\xbb\xc4\xf1\xe3\xc7\x55\xbf\x54\x3a\x7e\x66\xa2\xe5\x7f\x7e\x76\xb2\xe5\xcf\x06\x97\x83\xbf\xd0\xbf\x1a\x78\x71\xc7\x52\xf0\x97\x47\x17\xc3\x9f\x4e\x84\x8c\xc9\x52\x9b\x36\x3f\x30\x30\x50\x1a\x1b\x1b\xdb\xd4\x4c\x92\xc5\x5a\x2d\xa8\x61\x0d\xe6\xf7\x31\xb8\xa4\xb0\xd2\x54\x50\x47\xba\x32\xbe\x21\xe7\xbb\x46\x80\xb9\x58\xd9\xec\x51\x73\x54\x76\x64\xb4\x91\xf1\xee\xdc\x3f\x04\xa3\x91\x74\xb1\x58\x94\x8b\x8b\x8b\x6e\x6d\xd0\x6b\xc4\xad\xc7\xc2\x1a\xc1\x47\x65\x85\x9f\x14\x34\x2c\xb3\xb9\xb9\x59\x3c\xff\xfc\xf3\xc2\xa7\xa8\x2d\x9f\xbe\xdd\xf6\xc7\xa3\x8b\xa1\xdf\x20\x86\xe6\x9c\x84\xf0\x97\x45\xd7\xf6\x78\xf0\xc5\xd9\xe6\xe2\xfb\xa5\x98\x3a\x1f\x8d\x46\xcb\xf7\xef\xdf\x6f\x84\x67\x4d\x9d\xc2\xf5\xab\x09\x3f\x73\xe6\x8c\x64\xe6\x02\x33\x2f\x5c\xdb\x92\xfe\x81\x21\x58\xb7\x97\x3f\x5b\x5a\x0f\x5b\x7b\x14\xc8\xbc\x27\xb4\xe4\xd5\xdd\x47\x1e\x44\x7f\x13\x8c\xc8\x13\x4f\x3c\x21\xa2\xd1\xa8\xbb\x3e\xb7\xe6\xd7\x48\x29\xaa\x99\xae\xf1\xb8\x5f\xcf\xf9\xee\x4e\xe3\x2e\xdf\x2b\x4d\x43\xba\x6c\xb0\x2c\xfb\xf9\xc0\x81\x03\x50\x55\x35\xb0\x75\xc5\x7f\x62\xc7\x52\xf0\x9f\x93\x73\xa9\x3e\x9b\x7e\x6b\x26\x68\x52\xb4\x3e\x3d\xd5\xfc\xfb\xc4\x68\x1d\x1a\x1a\xda\x08\xfe\x76\xdd\x4e\x83\xdd\x8d\x10\x00\x88\x85\x85\x05\x49\x44\xc9\x44\xc8\xb8\x3c\xd1\x91\xbf\xe0\x58\x8b\x6f\xb2\x54\x36\x97\x08\xb2\x19\x56\x79\x49\x0e\x3c\x6c\xfa\x6a\x5f\xd2\x7f\x42\xd3\xb4\xc0\x73\xcf\x3d\x07\x45\x51\xdc\x86\xbf\xbb\x5e\x67\xfd\x5e\x1d\xed\xa5\x81\xd6\xeb\x38\x2b\xce\x1d\x5f\xef\x85\xf0\x4a\xe3\xc6\x69\xa3\x1d\xed\x74\xaa\x0b\xa0\x72\x26\x03\x80\xd0\x90\x75\xcc\x27\x01\x20\x36\x77\x82\x3b\xae\x60\x74\xa5\xb5\x23\xb1\xbc\x3a\xac\x28\x8a\x76\xe0\xc0\x01\x77\xd9\x75\xdb\xe1\xae\x18\x8e\x7b\x09\x40\x7e\xf0\xc1\x07\x60\xe6\x02\x83\x67\x2f\x6e\x4d\x7d\xc7\x10\xac\x13\xd8\xf4\xec\x03\x80\x39\xd1\x6c\x79\xfa\xcd\x37\x4c\x65\x0a\xfd\xcc\x44\xcb\x1f\x05\x75\xb1\xad\xad\xad\x4d\x7b\xea\xa9\xa7\xd6\x94\x8d\xc6\x9d\x53\x2f\x5d\xa3\xd9\x11\x77\x3b\xdc\xf1\xff\x18\xbf\x35\xb8\xf9\xfd\x7e\x41\x44\x81\x50\x49\xe9\xb5\x78\x61\xed\xac\x48\x75\x96\x44\x30\xb4\x60\x49\xf4\x02\x50\x43\xa1\x50\xbd\xf6\xad\xf9\x79\xbd\x95\xce\xd1\x20\xe6\xe6\xe6\xe4\xfc\xfc\xbc\x41\x44\x89\x95\x90\x71\x69\xac\x27\xfb\x76\x05\x19\x86\x3d\xd3\x4c\xe6\xf8\x34\x57\xd8\x59\x8b\xd6\x9a\xf3\xea\xe8\xf3\x77\x5a\xff\x50\x61\x6a\xdf\xb5\x6b\x97\x35\x1b\xee\xae\xcf\x4d\x74\xaf\x37\xbf\xae\x11\xee\x2a\x6f\xa3\xa3\xa9\x51\xda\xcd\x3c\x37\xaa\x07\x00\x84\xf3\x98\xcf\x94\xdf\x48\x58\x52\xcd\x3e\xa4\x18\xb0\x17\x4c\x03\x40\x49\xe1\x42\x2a\x60\xa4\x80\xca\xc7\xd9\x1a\xe0\x58\xd3\x26\x2f\x16\xe3\x24\x9c\x04\x20\x5c\xa3\xf2\xaf\xb2\x9a\x4c\x5a\x13\xa7\xce\x93\x0e\xad\x83\x06\x6d\xb6\x0b\xc2\xe0\x72\xe0\x73\x27\xee\x35\xff\x2e\x81\x9a\x8f\x1f\x3f\x2e\xcc\x33\x0a\xdc\xf5\x35\x92\x85\x8d\xd2\xd6\x63\x91\xf5\xca\xa8\x97\x66\xa3\x75\xaf\x87\x83\x3b\x0f\x52\xa9\x94\x75\x32\x66\x61\xb2\x3d\x7f\x9e\x05\xcb\xda\xef\xa3\x54\xb7\x28\x02\xc0\x4c\x73\x71\x2c\xab\xc9\x05\x00\x86\x63\x3f\x8d\xf3\xe7\x29\x2e\xea\x99\x1f\x70\x5e\x33\x99\x0c\xb7\xb7\xb7\x73\x4b\x4b\x8b\xa1\x2b\xb2\x5c\x54\x39\x34\xb4\x1c\x78\xdc\x62\xa7\x16\x54\x59\x6d\xed\x7d\x57\x5a\x3b\x5c\x52\x64\xfc\x51\xcc\xb8\x39\x38\x38\xa8\x27\x12\x09\x5e\x5d\x5d\xdd\x94\x7a\xbd\x89\x1f\xd6\x89\xa7\x4d\x96\xe3\x4e\x6f\xd9\x8e\x5e\xe5\x4a\x47\x3e\x00\x60\x66\xe6\xb6\xb6\x36\xb4\xb4\xb4\x50\xd6\x2f\x65\xb0\x24\x06\xba\x32\xda\x90\x45\xaf\x2a\xfd\x08\x05\x5f\x39\xf3\xda\xae\xe5\xff\x2b\xe7\x2b\x5f\x01\xb0\x7a\xfe\xfc\x79\x99\xcb\xe5\xe0\xaa\xcf\x49\x6e\x3b\xdc\xe9\xd9\xa9\x67\x12\x00\x00\x96\x97\x97\x69\x74\x74\xb4\x4c\x44\xc6\x72\xb8\x94\xee\x49\xfb\x0f\x34\x17\x94\x0e\xb7\xe9\x6b\x2d\x26\x60\x47\x98\x20\x88\xbe\x64\xe0\x64\x5e\x2b\xcf\x2d\x45\x8d\x09\xb3\x33\xb1\xba\xba\xfa\x49\x9b\x01\x1b\x81\xcd\xd6\xe9\x36\x9d\xea\xe5\x77\x86\x0b\xe7\x33\x33\xd3\xf0\xf0\xb0\x04\xa1\x3c\xd3\x52\x98\x03\x10\xeb\xc8\x6a\x7d\x0a\x5b\x8a\x0f\xf0\x28\xaa\x4f\xff\xc3\xee\xe5\xaf\xc5\x23\xc6\x8f\x89\x68\x36\x1e\x8f\x17\x1c\x5f\x61\x58\xb7\x1d\x4e\xcf\x4e\x3d\x4d\x91\x00\x70\xa1\x50\x20\x00\xdc\xdb\xdb\x5b\x62\x82\x31\x1f\xd3\xd3\xa3\x8b\xa1\x13\x95\x33\x47\x1d\x82\x9b\xab\x63\xb1\x1a\x06\x08\x26\x75\x60\x25\xf0\x33\x45\x9f\x5c\x5c\x8c\x1a\xb7\x07\x07\x07\xf5\x4c\x26\x83\x44\x22\x51\xcf\x8e\xac\xe7\xe5\x71\xdf\xc3\x95\xcf\x6d\x3f\xba\x5f\x4c\xaf\xb4\x8d\xe2\xe4\x3a\x69\xe1\xaa\x87\x5d\x69\x29\x99\x4c\x22\x16\x8b\xc9\x96\x96\x96\x82\x24\xa4\x67\x9b\xf5\x89\x9b\xdd\xd9\x9b\x73\x31\x7d\xf6\x7e\x5b\xe1\xd6\xa5\xad\xa9\x1f\x5d\xec\x4f\xff\x97\xb4\xbf\x7c\x8e\x88\xa6\xa4\x94\x99\xd3\xa7\x4f\xb3\x7b\xed\x6a\xa3\x36\x2a\x58\xeb\xfe\x81\xc7\x33\x01\xc0\xd2\xd2\x12\xb6\x6f\xdf\x5e\x0e\x04\x02\x7a\x51\x2d\x17\x73\x9a\xd4\x86\x96\x83\x8f\xdb\x33\xe1\x56\x4a\xcb\x49\x60\xad\xcd\x37\xef\x05\x2a\x9d\x09\x20\x3f\xdf\x52\xba\xb9\x6d\x70\x50\x27\x22\xb9\xb0\xb0\x00\x66\x7b\xbd\x98\x1b\x0f\xa0\xca\xba\xbc\xf0\x72\xe7\xf3\x72\x63\x39\xd3\xbb\xb5\x60\x77\x3e\x27\x3b\xf5\x2a\x17\x54\x51\x35\x25\x00\x68\x9a\x26\xca\xe5\x32\xbb\xd2\x3b\xeb\x95\x00\xf8\xc1\x83\x07\xd4\xd6\xd6\x56\x6e\x69\x69\xc9\x83\xb0\x5c\x52\x79\x7a\x25\x64\x7c\xb8\x14\xd6\x2f\x66\x03\xf2\x03\x26\xdc\x26\xa2\x87\xe5\x72\x39\xf3\xe6\x9b\x6f\x5a\xdb\xf8\xbd\x70\x72\xbe\x60\xc0\x3a\x32\xd2\x53\x1e\x30\x33\x2f\x2f\x2f\xd3\xf6\xed\xdb\x0d\x12\x42\x8f\x47\x8c\x95\x48\x51\xd9\xd6\x99\xf1\xf5\xdb\x8e\x01\xeb\x5f\xc5\xc8\x74\xbc\xb3\xe6\x48\x65\x52\xfa\x56\xfd\xcf\x44\x0b\x6a\xf3\x4c\x73\xe1\x4a\x47\x6f\x77\xa1\xab\xab\xab\x3c\x37\x37\x47\xa5\x52\xa9\x9e\xdc\x44\x9d\xf0\x8d\xc8\xc4\x46\xf2\xdf\x42\xcc\xaa\x97\x5c\xe9\xd6\xc8\xc3\xce\xce\x4e\x7a\xee\xb9\xe7\x70\xf2\xe4\x49\xe5\xf0\xa1\x27\xd4\xd1\x5d\xa3\xc8\xe7\xf3\x58\x5e\x5e\x76\xd2\xcb\x79\x65\x98\xc4\xbb\x7b\xf7\x2e\xeb\xba\x2e\x5b\x5b\x5b\x8b\x3e\x9f\x6f\x95\x88\xe2\x00\x96\x88\x68\x89\x99\x57\xe7\xe6\xe6\x8a\xa7\x4f\x9f\xe6\xb9\xb9\x39\xe9\xaa\x1f\xce\xb2\x5c\xf8\xdb\x32\xd2\x8b\x45\x58\xbd\xee\x2c\x40\x00\xa0\x4c\x26\x23\x85\x10\xe8\xe9\xe9\x29\x01\xd0\x67\x9b\x8b\xf1\xad\xc9\xc0\x63\x11\x5d\x6d\xb1\xbf\x9b\x6c\xa9\xd5\xe6\xca\xee\x8a\xeb\xce\xdc\x40\x53\xd9\x6a\x40\xed\x59\xdf\xa1\xfe\x95\xe0\xa1\xf9\x58\xf1\xaa\xda\x16\x5e\x1d\x1d\x1d\x2d\x3b\x08\xe2\xc5\x3e\xdc\xb8\xb9\x65\x87\x57\x98\x3b\xde\x2d\xef\x2c\x42\x58\x79\xbd\x5c\x89\x04\x80\x15\x45\x11\xfb\xf6\xed\xa3\x67\x9f\x7d\x56\x34\x45\x9a\xc2\x43\x89\xe0\x53\x27\xa6\x62\xbf\xf9\xa0\xbb\xf4\xc1\xd6\x81\xfe\xe2\xea\xea\x2a\x56\x56\x56\xe0\x2a\x67\x0d\xfb\x5f\x5c\x5c\xa4\x1b\x37\x6e\x94\x2f\x5f\xbe\x5c\xce\xe5\x72\xe5\x95\x95\x95\xd2\xed\xdb\xb7\xcb\xaf\xbf\xfe\x7a\x79\x62\x62\x82\xcc\x79\x4a\x67\xfd\x5e\x9d\xb7\x06\x2c\xd6\xea\x66\x09\x0d\xd9\xec\xc2\xc2\x02\xba\xbb\xbb\xcb\x4d\x4d\x4d\xba\x54\x90\x9f\x6e\x29\xc4\x87\xe3\xc1\x23\x9a\x21\x82\xeb\xe7\xae\x6e\x46\x8d\xe8\xca\xc0\xe8\x62\xf8\xe7\x8a\xaa\x5c\x4a\xc4\xe4\xfd\x81\x6d\xdb\x4a\x5d\x5d\x5d\xbc\xba\xba\x8a\x6c\x36\xeb\x24\x84\x45\x68\x2f\xb9\x05\x8f\x30\x2f\x79\xea\x56\x1c\x9c\xb2\xd3\xfd\xd6\x3b\x3b\x56\xf6\xf5\xf5\x89\x17\x5e\x78\x01\x3b\x76\xec\xd0\x34\x56\xda\x9f\xba\x1f\xfb\x1f\x4e\xde\x6d\xf9\xd3\xb6\x9c\xef\x24\x13\x72\x0f\x9b\xf5\x6b\x5b\xb6\x6c\xd1\xef\xdf\xbf\xcf\xc5\x62\xb1\x5e\x47\xb2\xab\x0e\xc4\xe3\x71\x7a\xf8\xf0\xa1\x34\x5f\xde\x7a\xf5\xd7\x93\xf5\x4e\x10\xf5\x58\xab\x9b\x45\xac\x49\x33\x3b\x3b\x4b\x23\x23\x23\x25\x55\x55\x8b\x45\x55\x66\xe6\x63\x7a\x7a\x38\x1e\x7c\xc2\xc7\xc2\x67\xaf\xe7\xb4\xb7\x17\x38\xee\xc9\x52\x84\x2a\x22\x54\x95\x14\x19\x4c\x04\x5e\xee\x5d\xf5\xef\x5a\x8a\x94\x6e\xab\x6d\x91\xf4\x8e\x91\x1d\x46\x53\x53\x93\x73\x9b\xb5\x9b\x95\xac\x17\xe6\x36\x05\xbc\xde\x66\x37\xbb\x5d\x53\x4e\x67\x67\x27\x3d\xfb\xec\xb3\x74\xf0\xe0\x41\x35\x18\x08\x46\xb6\x26\xfd\xc7\x5e\xba\xd9\xf6\xb5\xe1\x78\xf0\x17\x05\x93\x46\x44\xd4\x9d\xf2\x3f\xb9\x10\x2d\x5e\xc9\x36\xe1\x41\x4f\x4f\x4f\xe9\xd6\xad\x5b\xf5\x58\xb8\xbb\x0e\xaf\x78\x77\xbe\x35\x2c\xb4\x5e\x99\xee\xd9\x0f\x77\x81\x5e\x9a\x21\x00\xc0\x30\x0c\x9a\x9d\x9d\xc5\xe8\xe8\x68\x49\x08\x51\xc8\x6a\xe5\xd5\xa5\x26\x3d\xbf\x3d\x1e\x7c\x5c\x30\x14\xb8\x74\x1d\x8b\xd5\x3a\xb7\xb0\x57\x16\x0f\x33\x88\x41\xd1\xa2\xba\x73\xf7\xa3\xf0\x97\xc3\xba\xd2\x94\x68\x2a\xdf\x8b\x76\xb5\x15\x0e\x1c\x3c\x20\xbb\xbb\xbb\x51\x28\x14\x28\x9d\x4e\xbb\xdf\xc4\x46\xac\xb4\x11\xdb\xad\xc7\xae\xed\xfb\xc1\xc1\x41\x71\xf2\xe4\x49\x3a\x74\xe8\x90\x1a\x6d\x8a\x86\xda\x72\xbe\x91\x67\x27\x5b\xfe\xcd\xb1\xfb\xb1\x7f\x1b\xd6\x95\x6d\x36\x65\x00\x08\x86\xaf\x6f\x35\x70\xf8\x4e\x47\xfe\xb4\xda\x14\x58\x09\x06\x83\x72\x7a\x7a\xda\x5d\xd7\x46\xea\xf7\x1a\x71\x1b\xc5\xdb\x36\x3f\xea\xa9\xb8\xce\x42\xd7\x0c\xfb\x7c\x3e\x8f\xd5\xd5\x55\x1e\x18\x18\x28\x0a\x21\x72\xc9\x80\x91\x88\x47\x4a\xf9\xc1\xe5\xe0\x7e\x1f\x0b\xd5\xc6\xcb\xb9\xf1\xc7\x1a\xa1\xd6\xb3\xc3\xd7\x28\x98\x02\xdd\x19\xed\xd8\x9e\x85\xc8\x17\x83\x25\xd1\xb4\x1a\x2a\xcf\x05\x5a\x9b\x0a\x3b\x46\x76\xc8\x1d\x3b\x76\xc8\x40\x20\x40\x86\x61\x90\xa9\x96\xc3\x83\x00\xf5\xcc\x18\x67\x5a\x37\x5b\x26\x53\x0b\xe5\xa7\x9e\x7a\x8a\x4e\x9d\x3a\x45\x3b\x77\xee\x54\x9b\x22\x4d\x91\x8e\xac\xb6\xeb\xf8\xbd\xd8\xbf\x7e\xf6\x6e\xeb\x9f\x74\x64\xb4\xa3\x82\x49\x75\xf0\x13\xfb\xea\x2f\x8b\x96\xb6\xac\xda\x7f\xa7\x23\xf7\x66\x7b\x67\x47\x7e\x75\x75\x95\x13\x89\x04\x3b\x70\x72\xca\x3d\x77\x67\x58\x61\x4e\xee\xe7\xa6\xbf\x33\x9d\x53\xcc\xd8\xe5\x90\x23\xd1\x47\x86\x3d\x7b\xf6\xe0\xd8\xb1\x63\x2a\x80\x56\x02\x8d\x6e\x59\xf5\xff\xec\x4b\x37\xdb\xbe\x1a\xd2\x95\x88\x5b\x5e\x3a\xbf\x14\xe2\x44\xb5\xe6\x3c\x1f\x33\x9d\x21\x38\x71\xaf\xad\xf0\xea\xcd\xae\xec\xb7\x67\x9b\x8b\x57\x0d\xc1\x19\x06\x1b\xb9\x5c\xce\x98\x9f\x9f\xc7\xfc\xfc\x3c\x56\x57\x57\xf1\xe8\xd1\x23\x48\x29\xad\x05\xbb\xf5\xfc\xb2\x12\x80\xe5\xf7\x94\x5d\x5d\x5d\xa2\xa3\xa3\x03\x3d\x3d\x3d\xe8\xed\xed\xad\x7c\x5d\x95\xa1\x69\x65\x8a\x0e\x24\x02\x47\xf6\x2e\x44\x7e\xa5\x2f\xe9\x7f\x41\x30\x45\xbc\xec\x21\x77\x5b\x18\x8c\xf7\x07\x52\xff\xcb\xf9\x81\xd4\x9f\x96\x8c\x52\xea\x6f\xfe\xe6\x6f\xdc\xdf\x5b\x6e\xe4\x2f\xf6\x8a\xf3\x9a\x54\xf0\xb2\xf9\x2b\xed\xaa\x53\xf0\x46\xa0\xa6\x92\x23\x47\x8e\x88\xc7\x1e\x7b\x4c\x45\xe5\xeb\xe0\x23\xed\x39\xed\xf9\x97\x3e\x6c\xfb\x17\x2d\x79\xb5\x13\x16\x37\xb5\xb4\x58\x53\xb9\xb5\x4f\xe2\x20\x73\xcd\xac\xd5\xab\xae\x33\xef\x98\x20\x33\xfe\xf2\xf8\xfd\xd6\xc2\x6b\xf7\x5a\xf3\x6f\xcc\x47\xf5\xb1\xbc\x4f\xa6\x18\x6c\xa0\x72\x2e\x9b\xcc\x64\x32\xd0\x75\x5d\x26\x93\x49\xe7\xb1\x9d\x36\x84\x42\x21\x34\x35\x35\x21\x10\x08\x88\x70\x38\x0c\xf3\x54\x46\x95\x40\x5a\x58\x17\xcd\xbd\xab\xfe\x03\x43\xcb\xc1\x4f\x0f\xac\x04\x5e\x08\x96\xc4\x90\xbd\x1b\xca\x12\x11\x8e\x0e\x23\xc0\xdc\xc2\x5e\x79\x13\xad\xa1\x51\x16\x9c\x7b\x75\xef\xd2\xaf\x4c\xb7\x16\x5f\x5f\x58\x58\xc8\xbd\xfa\xea\xab\xf5\xe6\x59\x3f\x71\x70\x77\xa4\x93\xf5\xb8\x7b\xdd\x19\xef\x05\xe2\xf1\xc7\x1f\xc7\xe3\x8f\x3f\x2e\x84\x10\xcd\xcc\x3c\x14\xd1\x95\x13\x2f\xdc\x6e\xfd\xcd\xfe\x95\xc0\x88\xb5\xe7\xaf\x22\x2b\x2b\x19\xd8\xec\xd5\x8a\x1e\x5b\xdd\xdc\x69\x1f\xbb\x02\xaa\x12\xd2\x36\x49\x59\xea\x0a\x2f\xae\x84\x4a\xd7\xe7\xa3\xfa\xe5\x78\xb8\xf4\xe1\x72\xb8\x74\x27\xed\x2f\x2f\xe6\x7d\xe5\x1c\x13\x0c\xf6\x38\x74\x8f\x00\x55\x30\xd4\x40\x49\x09\x45\x0b\x4a\x77\x6b\xce\x37\xd2\x99\xf1\xed\xeb\x4e\xf9\x1f\x6f\xc9\xa9\xfb\x7d\x92\x5a\x09\x24\xaa\x2f\x17\x6c\x8e\xc1\x26\xb2\xd5\xbd\x8e\x96\x59\x55\x99\xce\xab\x9e\x2f\x40\x48\xf9\x8d\xa9\xbf\x3e\xb8\xf8\xcf\xd2\x9a\x71\xe7\x8d\x37\xde\x30\xee\xdf\xbf\xef\x44\xc3\x4d\xdb\x7a\x23\x11\x1e\xe1\x5e\xf1\x76\xfe\x35\xe7\xec\xd4\x29\xc0\x6b\x36\xc0\x5d\xb8\xbc\x7c\xf9\xb2\x48\x26\x93\xf2\xd9\x67\x9f\x4d\x0a\x21\xee\x64\xfd\xb2\xf0\xea\xde\x78\xfc\xc9\xfb\xb1\x5f\x3b\x34\xdb\xf4\x8c\x30\x09\x05\x50\xf5\x73\xbc\x0e\x09\x56\xfb\x69\x5f\x33\xce\xfe\xa8\x28\x59\xf7\xc2\x5f\x16\xdd\x5d\x29\xad\xbb\x2b\xe5\x7f\xc1\x1c\x2e\x52\x12\x72\x86\xe0\x44\x51\x95\xc9\x82\x2a\x53\x65\xc1\x3a\x13\x0c\x62\xa8\xaa\x24\xcd\x6f\x88\xa8\xdf\x10\xad\xaa\xa4\x66\xc1\x08\x01\x10\x64\xee\xa1\xb4\x0f\x4f\xa4\xea\xb8\xf3\xd2\x10\x6c\xa1\x64\x6d\x75\xe3\x8a\xb2\x66\x49\x2c\x26\x86\xae\x48\xf8\x4b\xa2\x3b\xe3\xa7\xa9\xb6\xb6\x36\x67\x47\x7a\x0d\x00\xaf\xce\x5c\xcf\x65\xea\x09\x6b\x4e\xbe\xf2\xa8\xb4\xee\x08\xf4\x88\x93\x53\x53\x53\xc8\xe7\xf3\x78\xee\xb9\xe7\x32\xc1\x60\x70\xaa\x2c\x90\x3b\x37\xb8\x9a\x7c\xd8\x5c\xbc\xf3\xa9\x89\x96\x2f\x47\x0b\x4a\x2b\x00\x7b\xf4\xd9\x7d\xe6\xf2\x02\xd9\xcb\x80\x1c\xe1\xf6\x91\x2c\x36\x1b\xae\xa4\x05\x43\x28\x8c\x88\x22\x29\xe2\x2f\x8b\xfe\x68\x11\x35\x1d\x50\xc9\xc3\x55\x56\x80\xda\x38\x72\x86\x13\xad\x61\x53\x8e\x69\xd7\xea\x7f\x1b\x95\x4a\xfa\xb2\x60\x39\xd6\x9d\x7d\xff\xec\x50\xf2\xeb\x45\x45\xde\x27\x90\x34\xa7\xaf\x1a\x4d\x9c\xbb\xc3\xdc\x50\x2f\xef\x9a\x72\xdc\xeb\x5a\x1b\x69\x58\x6e\xa8\x1b\x97\xc9\x64\xf8\xfa\xf5\xeb\xb2\xbf\xbf\xdf\x08\x87\xc3\x59\x06\xaf\xac\x86\xca\x73\xb7\x3b\x73\x13\x01\x43\xb4\xb6\x65\x7d\x3d\xa2\x66\x5d\xa5\x09\xe4\xb8\x38\x3b\xa2\x91\x83\xc1\x1d\x66\x8d\xb0\xb5\x9b\x54\xec\x41\x5d\x13\x65\xcb\x6b\x77\xb9\x0e\x0d\xcc\x99\xc7\x21\x16\xc8\x7c\x4e\x86\x4a\xf1\xd7\x77\x26\xbe\x75\xb5\x2f\xf3\x97\x65\x05\x57\x89\x68\x21\x97\xcb\xe5\xbd\xbe\x06\x80\xf5\x3d\x50\x1f\x29\xbd\x65\x7e\x38\x3d\x1b\x6e\x8f\x48\x3d\xd3\xa4\xde\xd4\x97\xfd\x9b\x98\x98\x80\xdf\xef\x2f\x77\x74\x74\x14\x00\x24\x4b\x0a\x2f\xdd\x6b\x2b\xdc\x99\x8f\x15\x97\xdb\x33\xbe\x2d\xa1\x92\x68\xaa\x79\xff\x3d\x09\xea\x0a\x77\xc7\x7b\x76\x32\xd5\xed\x6c\x2b\xda\x2a\x67\x4d\x32\x3b\x8e\xd6\xd6\xe3\x22\x67\x49\x91\xfa\x95\xbe\xf4\xbb\xaf\xef\x4c\x7c\x2d\x1e\x2e\x9d\x26\xa2\x31\x66\x5e\x48\xa5\x52\xb9\xd7\x5e\x7b\x0d\xe6\x8c\x91\x9b\x46\x70\x94\x54\x6f\x46\xc3\xed\x26\x5d\x8f\xfe\xf8\x44\xcc\x8f\xf5\x60\x68\x68\x08\xc7\x8f\x1f\x17\xc1\x60\x50\x03\xd0\x0a\xa0\x5f\x91\xd8\xbd\x7b\x21\xfc\xd9\xc3\xd3\xd1\x4f\x35\x15\x95\x66\x27\xb3\xac\xe2\xbe\x01\xa5\xba\x4e\xb2\xda\x7e\xaf\x1a\x0a\xd5\x70\xe7\xc9\x75\x5e\xb9\x01\xaf\x37\x87\xc1\x90\x04\x39\xd9\x9e\x1f\x7b\x6f\xdb\xea\xab\xc9\xa0\x71\x1e\x84\x49\x00\x8b\xcc\x9c\x99\x9c\x9c\x34\xce\x9e\x3d\x5b\xef\x7b\x99\x3f\x35\xf8\x38\xe6\xc7\xa6\xe1\xd4\xa9\x53\x62\x64\x64\x44\x25\xa2\x10\x33\xb7\x13\xd1\x36\xbf\x41\x7b\xf7\xcc\x87\x9f\x3f\xf0\xb0\xe9\x58\x53\x51\x69\xb6\xf7\xfd\x9b\x1a\x22\x08\xa6\x66\xe8\xb4\x4a\xac\x2d\x7e\x96\x02\x64\xf1\x3f\xd8\xec\xd0\xd6\x2e\x6d\x3b\xa2\xda\x64\xab\x23\xed\x21\x69\x7e\xf3\xd8\x3a\xc4\xae\xaa\xb5\x72\x4d\xbd\x65\x01\x79\xaf\x2d\x3f\x7e\x69\x6b\xfa\xb5\x47\x4d\xfa\x79\x06\x4f\x12\xd1\x9c\xf9\xe1\x1a\xfd\xcc\x99\x33\x4e\xb7\xe2\x46\xa1\x91\x25\xb0\x61\xf0\xea\x48\xf7\x5c\x97\x5b\x1d\xae\x17\xd7\x48\xb5\xb6\xc3\xb6\x6c\xd9\x22\x8e\x1c\x39\x82\x8e\x8e\x0e\x0d\x40\x08\x40\x27\x80\x7e\xb5\x4c\x23\x3b\x96\x82\x4f\x3f\x36\x17\x39\xd6\x99\xd6\x7a\x09\x10\x55\x5a\x57\xf9\x5a\xed\xf8\x20\x47\x28\x1c\xb2\x6c\xed\x99\xe6\x56\x63\xd9\xd1\x91\x6b\x1b\xef\xb4\x15\xab\xf7\x79\x9f\xcc\x4d\x74\xe4\xc6\xae\xf5\x66\xde\x4c\x84\x8c\x2b\xa0\xca\x56\x37\x00\xc9\x72\xb9\x5c\xb8\x7e\xfd\xba\x74\x7d\x3f\x7a\xa3\xf0\x89\x74\xa2\x85\xf9\x66\x58\x6b\x23\xfb\x67\xe3\x95\x12\x61\xd7\xae\x5d\x38\x78\xf0\x20\xc2\xe1\xb0\x06\x20\xc2\xcc\xad\x00\xfa\x04\xa8\xbf\x33\xad\x3d\xb6\xeb\x51\xe8\xe8\xf6\xe5\xe0\xee\x48\x51\x89\x82\xc9\xd6\x1c\xed\xd1\x63\x6a\x2e\xd5\x05\x5f\xb5\x22\xcc\xee\x08\xdb\xcc\x31\x3b\xd0\xa9\xed\x38\x4f\xff\xa7\x6a\x37\x33\x18\x65\x01\x63\x3e\x5a\x9c\xbd\xd5\x99\xbb\x34\xd5\x9e\x3f\x5f\x50\xe5\x24\x08\xd3\xcc\xbc\x08\x20\x09\xa0\x30\x39\x39\x29\xaf\x5c\xb9\x82\x64\x32\xf9\x51\x49\xe1\x84\x7a\xe6\x86\x57\x38\xe0\x1a\x48\x9f\x14\x6b\xf5\x72\x25\x6d\xe8\x4d\xdb\xb3\x67\x8f\xd8\xbf\x7f\x3f\x9a\x9a\x9a\x54\x54\x46\x68\x14\x40\x27\x33\xf7\xaa\x4c\x7d\x3d\x29\xff\xbe\xc1\xe5\xc0\xfe\xad\xc9\xc0\x50\x6b\xce\xd7\xae\x48\xa8\xb4\xd6\x9f\x67\xda\x73\xb4\x46\x23\xb5\x2f\x84\x9a\xa3\x3a\x9d\x2c\xd3\x52\x93\x73\x3e\x99\x99\x8f\x16\x67\xef\xb7\x16\xc6\x1f\xb4\x16\xae\xa4\xfd\xe5\x29\x10\x66\x01\x2c\x00\x48\x00\xc8\x94\xcb\x65\x7d\x6a\x6a\x4a\x3a\x4e\x02\xd9\x2c\x7c\x62\xa3\xd0\x09\xeb\x75\x64\x23\xf6\x59\x2f\xec\x23\xc1\xf0\xf0\xb0\xd8\xbf\x7f\x3f\xda\xda\xda\x54\x22\xb2\xd8\x6e\x14\x40\x3b\x80\x76\x62\x74\x86\x8b\x4a\x5f\x67\xc6\xb7\xbd\x3b\xe5\x1f\x6a\xcf\xfa\xba\xdb\x72\xbe\xf6\x90\x2e\x22\x8a\x74\x9c\xf6\x0c\x97\xda\xc4\x56\x47\x56\x7b\x91\x09\x52\x57\x58\x4f\x05\x8c\x64\x3c\x5c\x5a\x7c\xd4\xa4\x4f\x2f\x34\x15\xa7\x12\x21\xe3\x5e\x49\xe1\x05\x06\x2f\x9a\xb3\xf7\x09\x66\xce\x10\x51\x41\xd7\x75\x63\x62\x62\x42\x3a\x76\x0c\x7f\xd4\x36\xff\x54\xf2\x39\x59\x6b\xbd\x0e\xa9\xe7\xb8\xb5\x60\x23\xce\x5d\xaf\x6b\xbd\xb2\xe5\x53\x4f\x3d\x25\x06\x07\x07\x11\x89\x44\x54\x00\x1a\x33\x07\x4c\x05\x29\x4a\x44\x51\x54\xfc\xb9\x51\x30\xa2\x5a\x99\x9a\xc3\xba\xd2\x16\x29\x2a\xad\x81\x92\x88\x04\x0c\x11\xd2\xca\x22\xa0\x48\x52\x89\x21\x24\xb1\x51\x16\x6c\x14\x54\x59\x28\xfa\x38\x93\xd5\xca\xc9\xac\x56\x4e\xe4\xb4\xf2\x72\x99\x90\x02\x21\x05\x20\xc9\xcc\x29\x00\x49\xf3\x0c\xf1\x1c\x11\xe9\x86\x61\x18\x0b\x0b\x0b\x72\x62\x62\xc2\xfa\xee\xe3\x7a\x9c\xa7\x51\x5b\xbd\xd2\xbb\xa1\x11\x1d\x1b\xa6\x25\xd4\x56\xea\x05\x5e\x4a\x4b\xa3\xb8\x46\x9e\xfc\x46\x65\xaf\x89\xeb\xea\xea\x12\xc3\xc3\xc3\xd8\xb2\x65\x0b\x62\xb1\x98\xfd\x25\x3a\x00\x9a\x39\x6a\x03\x00\x02\x66\x47\x6b\xcc\x6c\x85\x0b\xd4\x7e\x76\x58\xa2\xe2\x7f\xd5\xcd\x5f\x81\x99\x0b\x44\x54\x70\x84\xe9\x00\x0c\x5d\xd7\xe5\xfc\xfc\xbc\x7c\xf0\xe0\x01\xee\xdd\xbb\xe7\xe9\x80\x5f\x07\x3e\x96\xfe\xf0\x51\xeb\x71\xb3\xd6\x86\x4e\xf1\x06\x71\x9b\x85\x8f\x54\xd6\xd0\xd0\x90\xe8\xe9\xe9\x41\x47\x47\x07\x22\x91\x88\x08\x06\x83\x40\x65\x6a\x4a\x98\xb3\x19\xd6\x27\x8a\x84\xbd\x8f\xd3\x9c\xb6\x32\x8b\x90\x00\x24\x55\xbe\x69\x2c\xcb\xe5\xb2\xcc\xe7\xf3\x72\x71\x71\x11\xf1\x78\x1c\xe6\xe9\x96\xff\x24\xa1\x5e\x47\x6e\xb4\x43\x1b\xb1\x16\xa0\xfe\xe8\xf4\x2a\x6b\xa3\xf5\x57\x12\x0a\x21\xa4\xf9\x69\xd3\xc1\xc1\x41\xd1\xde\xde\x0e\x61\x6e\x2e\x6b\x6a\x6a\x82\xb9\x01\x06\x00\x90\x48\x24\x50\x2a\x55\x0e\x07\x5e\x5d\x5d\x45\xb1\x58\x84\xf9\x9d\xcb\x8f\x02\x9f\xd4\x0b\xfd\x53\x51\x7a\xac\x82\x85\xeb\xde\xed\x95\xf7\x4a\xe3\x2e\x03\x58\x9b\xaf\x5e\x9c\x57\xbd\x8d\xd2\x7a\xd5\xd5\x28\x9f\x17\xfe\x9b\xc5\x75\x33\x65\x6c\xf4\xea\x05\x5e\xf4\x74\xc7\x6f\x38\xcf\x27\xc5\xdb\xff\x31\x64\xc4\x7f\x6b\xf8\x6f\xdd\xc6\x86\xf5\x6f\xe4\x0d\xda\xc8\xdb\xf5\x8f\x0d\x1b\xe1\x0c\xf5\xd2\x6e\xa6\xdc\x9f\x36\x7c\x64\xdc\x36\x32\xb1\xec\xa5\x89\x36\xca\xb3\x9e\x8c\xf4\x4a\xe7\x7c\x6e\xe4\xe2\xf3\xba\xf7\xc2\xb5\x51\x1d\x6e\x68\x64\x2a\x01\xde\xb8\xb8\xeb\x6a\xd4\x0e\xd4\x89\x73\xd7\xef\x05\x5e\xb8\x79\xa6\xfb\x7f\x00\xaf\xaa\xf6\x12\x47\x65\x14\xb8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x18\x1c\x34\x88\xd8\x3c\x00\x00") +var _web_uiV1StaticAppleTouchIcon114x114Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xd8\x3c\x27\xc3\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x72\x00\x00\x00\x72\x08\x06\x00\x00\x00\x8f\xdd\x85\x7d\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xbd\x79\x70\x1c\x57\x7a\x27\xf8\xfb\x5e\x66\x65\x9d\xa8\xc2\x7d\x11\x04\x08\x10\x04\xc1\x53\xa4\x28\x52\x14\x49\x91\x52\x5b\x52\x77\x4b\xb2\xa7\x2f\xb7\xa7\x7d\x6f\xc4\xba\x3d\x0e\x4f\x78\xc3\x31\x13\xe1\xd8\xd8\xf0\x4e\x78\x1d\xb3\xde\x0d\xaf\x63\xd7\x31\xe3\xe8\xe8\x9d\xe8\xe9\xb1\x3d\x3d\x3d\x76\x77\xbb\x65\x75\xdb\x56\x4b\x6c\x49\x2d\x91\x94\x78\x88\x27\x44\x82\x04\x08\x92\x00\x08\x80\x40\xa1\x50\xa8\xbb\xb2\xb2\xde\xb7\x7f\x54\x66\x56\x56\x22\xab\x00\x48\x6a\xcf\x7a\x63\x3f\x44\x21\x33\xdf\xf9\xbd\xef\xe5\xfb\xae\x77\x24\x01\x10\xd8\x3c\x48\x33\x9f\x75\xf5\x8a\x6b\x94\xef\x1f\xbb\xcc\x8d\xa4\xdd\x0c\x7c\x5c\x5c\x7f\x9a\x6d\xfc\xff\xe1\xff\x4b\xe0\xee\xd9\x46\xcf\x5e\x71\xc2\xe3\xde\x9d\xde\x7d\xdd\x6c\x1a\x2f\xd8\x0c\x2e\x1b\x79\xde\x08\x4e\x1b\xa5\xcd\x7a\xf9\xd7\x6b\xe3\x86\xea\x53\x1d\x81\xb2\x4e\xa2\x7a\x61\xf5\xd2\x3b\xcb\x72\x97\x5b\xaf\x2c\xeb\xd9\xc9\x7a\xdc\xe5\x79\xb1\xa4\xcd\xe0\xec\x2c\xd7\x8b\x1d\x59\xf1\xf5\xe2\x1a\x95\xeb\x55\x47\x23\xd8\x48\x67\x7a\xd1\xa2\x2e\x2e\x54\xa7\x90\x7f\xca\x50\x4f\x66\x6c\x56\x2e\xfd\xbf\x11\xbc\x5e\xe8\x0d\xb5\xe1\x93\x68\xe4\x7a\x6f\xf7\x3f\x35\xd8\x08\xb7\xda\x48\x1b\x37\x2b\x3e\x1a\x82\xea\x7a\xde\x28\x6b\x58\x2f\xad\x9b\x1d\x3a\xc1\x1d\xee\xc5\x3a\xeb\x5e\xdb\xdb\xdb\x45\x7b\x7b\x3b\xda\xdb\xdb\xd1\xda\xda\x8a\x58\x2c\x06\xbf\xdf\x2f\x88\xc8\x2a\x4b\x10\x11\x98\x19\xd6\xd5\xaa\xd7\x7c\x96\xcc\x8c\xd5\xd5\x55\x99\xcb\xe5\x10\x8f\xc7\xb1\xb2\xb2\x82\xa5\xa5\x25\xac\xae\xae\x42\x4a\xe9\xc4\xab\x11\xce\xce\xf0\x7a\xe9\xdd\xed\x76\xa7\xf3\xa2\x97\x57\x19\x8d\xe8\x02\x00\xc2\x8b\xb5\x7e\x5c\xd5\x78\x23\xc3\xbe\x51\x1d\x35\x71\xed\xed\xed\xd8\xb6\x6d\x1b\x7a\x7a\x7a\xd0\xd6\xd6\x26\x7c\x3e\x9f\x20\x22\x01\x86\x2a\x18\x5a\x48\x57\x22\x61\x5d\xe9\x8e\x16\x94\x5e\xbf\x21\x5a\x43\x25\xa5\x59\x33\x28\xa2\x30\xf9\x89\xa1\x32\xc1\x30\x04\xe7\x0b\xaa\x4c\x15\x7c\x32\x99\xf7\x95\x17\xd3\xfe\xf2\x42\xc6\x5f\x8e\x17\x7c\x32\xc3\x04\x03\x80\xc1\xcc\x32\x9f\xcf\xcb\x44\x22\x21\xef\xdf\xbf\x8f\x9b\x37\x6f\xfe\x34\xd9\xee\x47\x31\x43\x1a\x75\x2c\x68\x93\x08\x6c\x46\x98\x6f\x74\x64\xaf\x81\x96\x96\x16\xb1\x7b\xf7\x6e\x6c\xdb\xb6\x0d\xa1\x50\x48\x25\x22\x55\x91\x08\xc4\xf2\x6a\x77\x77\x5a\xdb\xdb\x9d\xf2\x1f\x6e\xcf\xfa\xf6\xb6\xe4\xd4\x11\xad\x2c\xba\x05\x23\x00\x8f\xc6\x13\x03\xf6\x78\xac\x6d\xa9\x94\x84\x4c\xc1\x27\x67\x97\x43\xa5\x3b\x4b\x11\xfd\xfa\x42\x54\xff\xe0\x51\x44\xbf\x99\xf6\x97\xe3\x2c\xa0\x33\xb3\x9e\x4e\xa7\xe5\xf8\xf8\x38\xa6\xa6\xa6\x90\x4a\xa5\xd6\x6b\xcf\x47\x6d\xf3\xc7\xa2\x95\x05\x56\xf3\xd6\xd3\x14\x37\x8a\xc0\x46\x90\xaa\x9b\x66\xf7\xee\xdd\x62\x74\x74\x14\x6d\x6d\x6d\x2a\x00\x55\x93\x22\xba\x75\xc5\x7f\x60\x68\x39\xf8\xe9\xbe\x55\xff\x89\xa6\x82\xba\x5b\x30\x42\x60\x02\x11\x1c\xbd\x64\xb6\x84\x1d\xf7\x00\x98\x01\xa2\x4a\x30\x99\x71\x8c\xda\x3e\x65\x32\x3b\x9c\x18\x65\x81\x64\x32\x58\xba\x3e\xdd\x52\x7c\xe7\x6e\x5b\xfe\x47\xf3\xd1\xe2\x78\x99\x38\xc7\xcc\xfa\xdc\xdc\x9c\xbc\x79\xf3\x26\x66\x66\x66\x50\x2e\x97\x1b\x69\x94\x1b\xa5\x5b\x23\x56\xb9\x61\x9a\x59\x71\xee\x8e\xac\xa7\xea\xaf\xcb\xa3\xd7\xc9\x07\xc7\xb3\x13\x01\x44\x22\x11\x3c\xf6\xd8\x63\x18\x1a\x1a\x12\x81\x40\x40\x55\x98\x22\x3d\x29\xff\xde\xdd\x8f\x42\x5f\x1c\x8a\x07\x5f\x0c\x18\x62\x1b\x98\x84\xd5\x4f\xe4\xe8\x05\xab\xa3\xec\xde\x31\xaf\x76\x7f\xda\x09\xac\x0c\xa8\xed\x64\x98\x1d\xe9\x2a\x8f\x2b\x25\x18\x19\x7f\x79\xfc\x4e\x47\xee\xd5\xf1\xae\xdc\xf7\xe3\xe1\xd2\x24\x13\x72\xd9\x6c\xd6\xb8\x72\xe5\x8a\xc5\x7a\x6b\xda\x52\xaf\x8d\x1e\x34\x84\xc7\x3d\x5c\x69\x37\x9a\x7f\xd3\xe6\xc7\x27\x2a\x33\xc2\xe1\x30\x0e\x1e\x3c\x88\x91\x91\x11\xa1\xaa\xaa\xe6\x2f\x51\xf3\xe8\x62\xf8\xc5\x7d\xf3\xe1\xff\xae\x35\xeb\x3b\x42\x80\x4a\xce\xde\xb1\xc1\xfd\x8c\x35\x1d\x59\x3f\x8f\x33\xdc\x2b\xcc\x8a\xe1\xca\x08\x26\x00\x20\x94\x89\x73\x0b\x51\xfd\xed\x6b\xbd\x99\x6f\xdc\x6d\xcb\x9d\x29\x2b\x48\xe9\xba\xae\x5f\xbc\x78\x11\xe3\xe3\xe3\x28\x97\xcb\x1f\x9f\x20\x1f\x13\x36\x2b\x23\x3f\x11\x38\x78\xf0\xa0\xd8\xb7\x6f\x9f\x08\x04\x02\x5a\xa0\x24\x3a\xf7\xcf\x45\xbe\xf4\xd8\xc3\xc8\x6f\x85\x4a\x62\x88\xd6\x10\xda\x7a\x62\x10\xc8\x63\x18\xc2\x95\xde\x2b\x1c\x70\x0f\xc5\x4a\x31\x55\xed\xb6\x26\xbd\xa3\x13\xed\x78\x66\x30\x41\x26\x03\xc6\xd5\x0f\xb6\xa6\xff\xdd\x78\x57\xee\x35\x43\xe1\x64\x26\x93\xd1\x2f\x5e\xbc\x88\xc9\xc9\x49\x30\x73\x3d\xe7\x87\x97\xd8\xaa\x97\xce\x2b\xbd\x05\x75\xc5\x1f\x79\x24\x76\xc3\x7a\xac\xb2\xae\x26\xe5\x4e\xd7\xd3\xd3\x83\xe3\xc7\x8f\xa3\xb5\xb5\x55\x53\xca\xd4\xbc\x6f\x3e\xfc\x85\x27\x66\xa2\xbf\x1b\xd6\xc5\x30\x00\x80\x6d\xfa\xd5\x90\xbf\x42\x57\x8b\xa8\xb5\xa1\x30\x33\xda\x72\xd0\xea\x00\xab\xe3\x2d\x46\x59\x29\xc1\xd5\xdd\x66\xbc\xcd\xb3\xd9\x4e\x45\x66\x18\xdb\x98\x38\x4b\x80\x5c\x09\x1a\x97\xdf\xdb\xb6\xfa\xbf\x4f\x76\xe4\xdf\x64\x42\x66\x7e\x7e\xde\x78\xf7\xdd\x77\x91\x4c\x26\x37\x6a\x5e\xc1\x11\xef\xa6\x67\x23\x3d\xc3\xb3\x1c\xc2\x5a\xe2\x7f\xe2\x9e\x76\xbf\xdf\x8f\xc3\x87\x0f\x63\xd7\xae\x5d\x2a\x81\x42\xdb\x12\x81\x63\x4f\x4f\x35\xff\x9b\xd6\x9c\x7a\xa4\xca\x09\xdd\xda\x0b\xd6\x0c\x32\xb7\xc8\x5b\x93\x6e\x03\xe1\xce\x0e\xac\x16\x6a\xc5\x92\x99\x86\xd7\x65\x55\x26\xa6\x72\x36\x56\xfc\xfb\x77\xb6\x27\xff\x70\x29\x52\xba\x59\x96\xe5\xc2\xf9\xf3\xe7\xe5\xcd\x9b\x37\x2d\x7b\x74\x3d\xd3\x62\xb3\x74\xaf\x2b\x3b\x15\x13\x27\x67\x44\xa3\x36\xd4\x23\x99\x55\xe0\x9a\xb8\xce\xce\x4e\xbc\xf0\xc2\x0b\xe8\xef\xef\x0f\x84\x4b\x4a\xdf\xb3\x93\x2d\xbf\x7f\xfc\x7e\xec\x8f\xc2\xba\x18\x70\x2a\x1b\x55\xed\xd1\x7c\x66\x47\x1f\x9a\x37\x6b\x38\xaa\xf3\x9e\x1c\x8f\xce\x72\xac\x68\x47\x1e\x72\xbc\x14\x6c\xe6\xb5\x4c\x15\x32\x03\xad\xf4\xd6\x48\xb7\xdf\x29\xaa\xd6\x01\x80\x62\x05\x75\x64\xd7\x62\xf8\xe7\x55\x49\xfc\x28\x66\x8c\x6f\x19\xd8\x5a\xea\xe8\xe8\x28\xcf\xcf\xcf\x53\xa9\x54\x72\x93\xc3\x49\x1f\xe9\x0a\x6b\x44\x77\x67\x1a\x77\x3a\x82\x47\xa0\x05\x8d\x54\xe2\x46\x5a\x6b\x4d\x9a\x7d\xfb\xf6\x89\x27\x9f\x7c\x52\x08\x12\x91\x81\x95\xc0\x89\x9f\xb9\xd3\xf2\xc7\x4d\x45\x65\xb4\x2a\xaf\xaa\x98\x30\x39\xee\xcd\x38\x9b\x98\xeb\x8c\x38\xeb\x05\x70\x36\x88\x1d\xf1\x40\x95\xed\x3a\x07\xb9\x9d\xdf\x55\x67\xcd\xbb\xe2\x2a\x83\x1d\x15\xd8\x2f\x82\xd9\xdb\x8b\x91\xd2\xdb\xaf\xef\x4c\xfc\xde\x72\xb8\x34\xb6\x9c\x58\x2e\x7c\xef\x7b\xdf\xdb\xa8\x49\xf7\x51\x4d\x0f\x1b\x3e\x8a\xf9\xe1\xac\xc0\x1d\x67\xa7\x79\xf6\xd9\x67\xc5\x8e\x1d\x3b\x54\x45\xa2\xf5\xc9\x07\xb1\xaf\x1e\x9a\x69\xfa\x3d\x85\x29\x54\x3b\x14\xaa\x58\xd4\xca\x38\xd4\xb5\x11\x19\x6c\x8f\x1a\x36\x4d\x05\x5d\xe5\x42\x56\x2b\x67\x32\x7e\x23\x95\xf7\xc9\x5c\x41\x95\x85\xb2\x60\x43\x12\xa4\xc2\x24\xd4\x32\x69\x01\x43\x84\x42\xba\x08\x45\x8a\x6a\x34\xac\x8b\x88\x2a\x49\xf5\xb4\x47\xed\xca\xeb\xbd\xe3\x2e\xfc\x6b\x70\x03\x74\x55\x2e\xbc\xba\x37\xfe\xf3\xb3\xb1\xc2\x85\x9f\xfc\xe4\x27\xc6\x9d\x3b\x77\xac\x8c\x9e\x66\x03\xd6\x17\x57\x1b\x31\x07\xa1\x3a\x22\xeb\x5d\xeb\x85\x79\xc6\xf9\x7c\x3e\xf1\xdc\x73\xcf\xa1\xaf\xaf\x4f\x0b\xe9\xa2\xff\x85\xf1\xd6\x3f\x1a\x58\x09\x7c\x81\xd8\x92\x3f\x54\x43\xa2\x8a\x62\xe1\xe0\x9d\xf6\xc8\x71\x2a\x1e\x66\x5e\x62\x18\x82\x8d\xe5\xb0\xbe\x38\x17\xd5\xa7\xe7\x62\xc5\xa9\xe5\x70\x69\x36\xed\x2f\x3f\x2a\x0b\x4e\x31\x90\x03\xa0\xa3\xea\x76\x03\x11\x09\x00\x02\xcc\x1a\x40\x01\x02\x42\x9a\x41\xcd\xb1\x82\xda\xd3\x99\xd6\xb6\xf5\xa4\xfc\xfd\x5b\x56\xb5\xfe\xa6\xa2\xda\x2c\x18\xa2\xa2\x54\x59\xea\x12\x6a\xf8\xb0\xcd\xf2\xb9\x06\xbb\x2a\xee\x60\x2c\x87\x4b\x8b\x8b\x11\xbd\x40\x44\x6a\x53\x53\x93\xd1\x88\x56\x0d\x68\x0a\x54\x3b\x69\x23\xb4\x87\x8a\x4f\xc0\x3d\x64\x41\x38\x1c\x16\x2f\xbf\xfc\x32\x62\xb1\x58\xa0\x39\xa7\xee\x7e\xf9\xc3\xf6\xaf\xb5\xe5\xd4\x27\xac\x2e\xb4\xd5\x0c\x8b\x30\xb6\x43\xbb\xea\xe0\xae\xc8\x9f\xda\x61\x59\x52\xa4\x31\xd3\x5c\x9c\x9a\xe8\xc8\x5d\x9f\x6d\x2e\xde\x4c\xfb\xcb\x0f\x18\x1c\x27\xa2\x24\x33\xa7\x00\xe4\x88\x48\x67\x66\x9d\x88\x0c\xd3\x0c\x90\xb0\xea\xaa\x34\x58\x25\x82\x2a\x99\xd5\xa2\x0f\xa1\x47\xaa\x1e\x7a\x14\xd1\xa3\x37\x7a\x32\xad\x0a\x53\x67\x6b\xce\xb7\x7d\x68\x39\xb0\x7f\x38\x1e\xda\xdb\x9e\xf1\x75\x13\x3b\x74\x54\x58\x72\xd1\x31\x74\x4d\xc9\x44\x96\x39\x03\x20\xab\x95\x93\xaf\x8d\x2e\xff\x87\x92\xca\x09\x66\x36\x52\xa9\x14\x5c\xf4\xdd\x2c\xad\xd7\x4b\x6f\xc7\xbb\x67\x3f\xdc\xe0\x1c\xca\x5e\x71\x76\x78\x24\x12\x11\x2f\xbd\xf4\x12\x62\xd1\x58\xa8\x2b\xa5\x3d\xf1\xb3\x1f\xb6\x7f\x23\xac\x2b\x43\x55\x85\xb0\x42\x84\x2a\x61\x9c\xda\x4b\x25\xc6\xad\x91\xae\x04\x8d\xc4\x58\x77\xf6\xd2\xed\xce\xdc\xd9\x8c\xbf\x3c\xc9\xe0\x05\x00\x71\x00\x49\x22\xca\x31\xb3\x0e\x40\x07\x20\xa5\x94\x52\xd7\x75\x00\x90\x89\x44\x02\x86\x51\x1d\x0c\x7e\xbf\x1f\xb1\x58\x0c\x44\x24\x34\x4d\xb3\x70\x57\x89\x48\x05\x10\x28\x83\x23\xf1\x48\xa9\x35\x1e\x29\xbd\x71\x71\x6b\xba\xaf\x33\xeb\xdb\xb7\x77\x3e\x72\x6c\xc7\x62\x68\xaf\xbf\x8c\xc0\x5a\x6d\xcb\xc4\x1f\xb0\x4d\x94\x32\xb1\xf1\xc6\xce\x95\xff\xb4\x1a\x30\x2e\x80\x11\x5f\x5d\x5d\x35\x26\x26\x26\xea\x79\x71\x36\xea\x9a\xf3\xa2\xb5\xa7\x3e\x62\x99\x1f\x1b\x81\xba\xbc\x3c\x1c\x0e\xc3\x1c\x89\xa1\xde\xa4\x76\xec\xe5\x9b\xed\xdf\x08\x95\x44\xdf\x9a\x84\xf5\xcc\x01\x97\xfd\x17\x0f\x97\x16\x2e\x6d\x4d\xbf\x7d\xb7\x3d\xff\x6e\x49\xc8\x29\x22\x9a\x03\x90\x00\x90\x61\xe6\x02\x11\x19\x89\x44\x42\x2e\x2c\x2c\x20\x1e\x8f\x23\x1e\x8f\x23\x9f\xcf\x23\x9b\xcd\x36\x6c\x00\x11\x21\x1a\x8d\x22\x12\x89\xa0\xa3\xa3\x03\xed\xed\xed\xe8\xea\xea\xb2\x1d\xf3\x00\x02\xcc\x1c\x05\xd0\x49\x44\x7d\xe1\xa2\xb2\x7b\xff\x5c\xf8\x67\xf6\xcf\x45\x8e\x04\x0c\x11\xaa\x3a\x24\x6a\xdb\xc2\x00\xde\xdb\x96\x7a\xf5\x42\x7f\xea\x4f\x19\x3c\x26\xa5\x4c\xfc\xe0\x07\x3f\x90\x8b\x8b\x8b\x8d\xcc\x8d\x4d\xd1\xb8\x4e\xfc\xa6\x5d\x74\x75\x2b\xf0\xf9\x7c\xf8\xc2\x17\xbe\x80\x58\x2c\x16\xea\x4a\x69\x47\x3e\x77\xa3\xfd\x5b\x41\x43\xe9\xae\x49\xe4\x6c\xb4\xd3\x16\xac\x31\x13\x18\x29\x7f\x39\x79\x7e\xdb\xea\xe9\xdb\x9d\xb9\x37\x0c\xe2\x49\x00\xb3\x30\x3b\xb0\x5c\x2e\x1b\xf3\xf3\xf3\x72\x6a\x6a\x0a\x73\x73\x73\x48\xa7\xd3\x1b\x69\xf8\xba\x40\x44\x88\xc5\x62\xd8\xbe\x7d\x3b\x06\x07\x07\xd1\xd2\xd2\xa2\x02\xd0\x00\x44\x00\x74\x12\xa8\x3f\xac\x8b\xbd\x4f\xcc\x44\x7f\x76\xef\x7c\xf8\x88\x5a\x16\xaa\xdb\x7c\xb9\xdb\x96\xbb\xfa\xf7\xbb\x97\xff\x50\x0a\x5c\x00\xb0\x78\xee\xdc\x39\x63\x6c\x6c\xec\xe3\xa0\xb5\xf9\x76\xb8\x9e\x1b\xb1\x52\x37\x08\x00\xf2\xb3\x9f\xfd\xac\xd8\xba\x75\x6b\xa0\x2d\xeb\x3b\xf0\xf9\xeb\x1d\xdf\x8a\x14\x95\x6d\x76\xc9\x6e\x6d\xd0\x5d\x9b\xd9\xc1\x06\xb1\x71\x6d\x4b\xe6\xfd\x0b\xfd\xab\xdf\x2b\xfa\x78\x0c\xc0\x7d\x54\x58\x68\x2e\x95\x4a\x19\xe3\xe3\xe3\xb8\x7a\xf5\xea\x27\x26\xcb\xd7\x83\x93\x27\x4f\x8a\xc1\xc1\x41\xe1\xf7\xfb\x35\x66\x8e\x10\x51\x37\x18\x43\xed\x59\xdf\x53\xa7\xee\x36\x7f\xa9\x2f\xe9\x1f\xb2\xe4\xfd\x4a\xb0\xb4\xf8\xd7\x07\x16\x7f\x3f\xaf\xc9\xb7\x01\xcc\xde\xb9\x73\xa7\xf0\xf6\xdb\x6f\xff\xa3\xe1\x6a\xc1\x46\xcc\x8f\xba\x7c\xfe\xc4\x89\x13\x62\xf7\xee\xdd\x5a\xb8\x28\x86\xbf\x78\xad\xf3\xdb\xad\x39\xdf\xde\x1a\xb6\xe3\xe9\x0e\xad\x06\x32\x18\x89\x90\xb1\x78\x7a\x24\xf1\x5f\xe7\xa3\xfa\x5b\x20\xdc\x01\xb0\x08\x20\x95\x48\x24\x8c\x0f\x3e\xf8\x00\xf7\xee\xdd\xdb\x88\xc9\x83\x3a\xe1\x6e\x95\xdd\x5d\x46\xa3\x32\xe5\xa1\x43\x87\xc4\xde\xbd\x7b\x85\xdf\xef\xd7\x00\x34\x03\xe8\x13\x12\xbb\xf7\xcf\x45\x3e\xff\xd4\xfd\xd8\x0b\x04\xe0\x6f\xf6\x2f\xfd\x1f\x0b\x51\xfd\x7b\x00\xa6\x12\x89\x44\xe6\xbb\xdf\xfd\x6e\x23\x8f\xce\x7a\xf8\x7a\xe5\x71\x87\x79\xb6\x81\xb0\xb6\x21\x6e\xf0\x9c\x6a\x19\x1d\x1d\xc5\xc9\x93\x27\x55\xb5\x4c\xbd\xff\x6c\xac\xfd\xeb\x7d\x49\xff\x0b\xe4\xc9\x3f\x4d\xb0\x3b\xd7\x54\xd9\x89\x71\xb3\x2b\x77\xe9\x9d\xed\x2b\x7f\x5e\x50\xe5\x65\x54\x46\x61\x32\x9f\xcf\xeb\x17\x2f\x5e\x94\x77\xee\xdc\x71\x2e\xd3\xf8\xa8\xf0\x71\x65\x12\x34\x4d\xc3\xd1\xa3\x47\xb1\x63\xc7\x0e\xa1\x28\x4a\x88\x99\x3b\x09\x34\xdc\x99\xf1\x3d\xd1\x9c\xf7\xb5\xdc\xee\xc8\x7e\x0f\xc0\xb8\xae\xeb\xa9\x57\x5e\x79\x45\xae\xae\xae\x7e\x1c\x7c\x36\x0b\x35\x32\xd2\x09\x1b\xf2\x22\x74\x76\x76\x8a\x9f\xfb\xb9\x9f\x13\x82\x44\xeb\x33\x93\xcd\xbf\xff\xd8\x5c\xe4\x5f\xda\x7e\x4b\xab\x54\xfb\xd6\xad\xc4\x33\xca\x0a\x8c\x33\x83\xc9\x1f\x5e\xdb\x92\xf9\x2b\x26\x8c\x31\xf3\x2c\x33\xe7\xc6\xc7\xc7\x8d\x33\x67\xce\x6c\x64\xa6\xe0\xe3\xc0\x47\x2a\xb3\xab\xab\x4b\x1c\x3d\x7a\x14\x9d\x9d\x9d\x1a\x80\x28\x11\xb5\x02\x00\x33\xc7\x01\x24\x7f\xfc\xe3\x1f\xcb\xa9\xa9\xa9\x8d\xcc\x7e\xd4\x40\x7b\x7b\xbb\x88\xc7\xe3\x1b\x71\x92\x37\x0c\xaf\x27\x23\x2d\xf0\x64\x6b\x5f\xfa\xd2\x97\x44\x6b\x6b\x6b\x64\xf4\x51\xe8\xcb\x2f\x8c\xb7\x7e\x4d\x78\x98\x31\x8e\x01\x58\xe3\x23\x2d\xa8\x5c\x78\x7d\xe7\xf2\x7f\x9e\x6a\x2b\x7c\x1f\x84\x9b\x00\x16\xb3\xd9\x6c\xe1\xcd\x37\xdf\xc4\xfc\xfc\xfc\xa6\x09\xb1\x89\x74\x9e\x6a\xfb\x26\xca\x15\x00\xe4\xc1\x83\x07\xc5\x81\x03\x07\x84\xcf\xe7\x53\x01\xc0\x30\x0c\xe3\xca\x95\x2b\xf2\xca\x95\x2b\x8d\xca\xae\x79\x7e\xfa\xe9\xa7\xc5\xd0\xd0\x90\xf0\xfb\xfd\x02\x00\x98\x59\x2e\x2f\x2f\xcb\x5b\xb7\x6e\xe1\xd6\xad\x5b\x1f\xe9\xc5\x6d\xc4\x5a\x3d\x5d\x42\x27\x4e\x9c\x10\xbb\x76\xed\x0a\x34\x17\x7c\x7b\x7f\xe1\x4a\xe7\xf7\x43\xba\xd2\x5b\x53\xda\x1a\x27\x27\x6c\x87\x65\x4e\x2b\x67\xfe\x6e\x77\xfc\xff\x7e\x18\xd3\xff\x8e\xc1\xe3\x00\x12\xb3\xb3\xb3\xfa\x9b\x6f\xbe\x89\x62\xb1\xb8\x51\x79\x51\x4f\xee\x35\x92\xed\xee\x72\x36\xe2\xf6\x6a\x98\x76\xf7\xee\xdd\xc2\xef\xf7\x63\x72\x72\x12\xe9\x74\xba\x91\x2c\xb6\x61\xe7\xce\x9d\x38\x71\xe2\x84\x50\x84\x12\x68\xce\xab\x7d\x7d\xab\xfe\x03\x6a\x99\x22\x2b\x21\x63\xf2\x61\xac\x38\x56\x12\x32\x13\x8f\xc7\xf5\xd7\x5f\x7f\x1d\xd9\x6c\x76\xa3\xb8\x01\x1b\x94\x91\x36\x6c\xdd\xba\x15\x9f\xf9\xcc\x67\x54\x01\xea\xfc\xdc\x8d\x8e\xff\x30\xb0\x12\xf8\x8c\x33\xbe\x2a\x1a\x9d\x0a\x4d\xe5\x2e\xaf\x96\x73\x7f\xbb\x2f\xfe\xef\x17\xa2\xfa\xdf\x01\x18\x67\xe6\xe4\xcd\x9b\x37\x8d\x73\xe7\xce\x6d\x44\x16\x36\xc2\xed\x93\x96\x3b\x1b\x81\x4d\xd7\xb9\x73\xe7\x4e\x3c\xfd\xf4\xd3\xaa\xc6\x4a\xeb\xc9\xbb\xcd\xff\x6a\xf7\x42\xf8\xab\x0a\x53\xd4\x34\xbd\x64\x32\x68\x5c\x7e\x73\xc7\xca\xff\x38\xd3\x52\x7c\x7f\x75\x75\x35\xf7\xca\x2b\xaf\xa0\x58\x2c\xae\x57\x9f\x1d\x6e\x4d\x63\x55\xdd\x2b\x0d\x7e\x9f\xfe\xf4\xa7\x29\x10\x08\x44\xf6\x2c\x44\xbe\x7c\xf0\x61\xe4\x5f\xae\xd1\x68\xc8\x79\x53\xf5\xaa\x96\x14\x59\xf8\xe1\x9e\xe5\xaf\xcf\xc5\xf4\x57\x18\x7c\x1b\x40\xf2\xcc\x99\x33\xc6\xe5\xcb\x97\xa5\xab\x0e\x32\x91\x73\x3f\x37\xc2\x0d\x0d\xf2\xff\xb4\x7e\x58\xa7\xae\x9a\xb8\x58\x2c\x46\xcf\x3f\xff\xbc\x50\x15\xb5\xe5\xf9\xdb\xad\xff\xeb\x9e\x47\xe1\xdf\x16\x0c\xbf\xc3\x53\x44\x01\x43\xf4\x0e\xc7\x43\x2f\x4e\x37\x17\xcf\x96\xa2\xea\xa3\x50\x28\x64\xdc\xbf\x7f\x5f\x3a\xea\x6b\xd8\x76\xa7\x53\xd6\x02\xa7\x93\xd6\x8e\x3b\x78\xf0\xa0\x68\x69\x69\xd1\x22\xba\x32\x74\xec\x5e\xec\xf7\x08\x24\xc8\x74\x19\x13\x33\xec\x7b\xf3\xd9\x02\x49\x2c\x4f\x8f\xac\xfc\x97\xd9\xe6\xe2\xdf\x9a\xe6\x45\xf2\xcc\x99\x33\xc6\xad\x5b\xb7\xdc\xf5\x79\xe1\x50\x2f\xbc\x1e\xde\x5e\x32\x7d\xbd\xfc\x8d\x1c\xd8\x8d\xe2\x9c\xe1\x5e\x65\xd9\xcf\x7b\xf6\xec\x81\xa6\x69\x5a\x5f\xd2\x7f\x6c\xe7\x62\xe8\x57\x09\x64\xfa\x9a\x51\xf1\xfc\x99\x7f\x9a\x21\xda\x8f\xdf\x8b\xfd\x4f\x04\x6a\xde\xbe\x7d\xbb\x08\x87\xc3\x5e\xf5\x7b\xe2\xe1\x6e\x98\x67\xe3\xc2\xe1\xb0\x78\xfc\xf1\xc7\x05\x18\xd1\x23\xd3\xb1\xdf\x0c\x95\x44\x1f\x73\x65\x89\x04\x73\x45\x27\xb5\xef\x2b\x6b\x5b\x2a\x5e\x1b\x30\x2e\xf6\xa7\x5e\xbb\xd3\x91\xfb\x0e\x08\x77\x98\xd9\xdd\x89\xc0\xc6\xd8\x94\x97\xac\x70\xc7\x3b\xcb\x71\x13\xc0\x2d\xbf\xea\xca\xb1\x06\xe1\x8d\xd8\x5b\x43\x05\x65\x60\x60\x00\x00\x22\xdb\x97\x83\x2f\x11\xa8\xa2\x18\x5a\x74\xaa\x99\xd1\x63\xf4\xa4\xb4\xa3\x11\x5d\xe9\x57\x14\x45\xdd\xb6\x6d\xdb\x46\xf0\x02\x00\x61\x11\xa0\xe1\xef\xe0\xc1\x83\x10\x42\x68\x6d\x59\xdf\xde\x3d\x0b\xe1\x5f\x24\xae\x4e\x55\x57\x98\x27\x81\xcc\x69\x9e\xca\x88\xac\x84\xdd\x6b\x2d\x8c\x5d\xe8\x4f\x7d\x13\x84\x9b\xcc\x9c\xb8\x7a\xf5\xaa\x61\x6a\x65\xee\xc6\xbb\x09\x5c\xef\xba\xd1\x30\x59\xe7\xde\x49\x8c\xcd\xe0\xe1\x8e\xf7\x8a\xab\x9b\xdf\x1c\x59\x81\xb0\xae\xf4\x5a\xb3\x28\x44\x16\x27\xb3\x38\x58\x85\x23\xab\x92\x42\xe1\xa2\xd2\x07\x40\x0d\x87\xc3\xee\xb2\x9d\xf8\xd6\x28\x71\x8d\xd8\x2a\x80\xca\xac\xc6\xc8\xc8\x88\x20\x50\xf3\xe1\xe9\xa6\xdf\x52\x24\x22\x4c\x66\x97\x11\x81\x89\x1c\x26\x64\x35\x2c\xeb\x2f\x27\xdf\xdc\xb1\xf2\x75\x29\x30\xc6\xcc\xf1\x7b\xf7\xee\xe9\x17\x2f\x5e\xf4\x22\xe8\x46\x47\xc5\x7a\xcf\x3f\x0d\xd8\x48\x1d\x6e\x6e\x56\x03\xcd\xcd\xcd\xd6\x5e\x14\x91\xd1\xca\x29\x66\x80\x89\xc0\x5c\x11\x46\xce\x2b\x00\x94\x09\x46\xc1\x57\x36\x1a\xd4\x5d\x97\xb5\x3a\x7f\x6e\xf6\x24\x1e\x7b\xec\x31\x28\x8a\xa2\xb5\x67\x7d\x7b\x87\xe3\xa1\x17\x89\xa9\x46\xcc\x92\xf5\x83\xc3\xf2\x00\xe3\x9d\xed\x2b\xff\x35\xed\x37\x2e\x30\xf3\x5c\x3a\x9d\x2e\xbc\xf3\xce\x3b\xf5\x10\xb1\xea\x5c\x0f\x17\x27\xbe\x8d\xda\xe0\x95\xde\x2b\xbe\x91\xbc\xac\x4b\x0f\x8f\x7b\xaf\x51\x62\x5f\x53\xa9\x14\xcc\xb5\x3b\xfa\x64\x47\xee\x3c\x13\x4b\x32\xb5\x7b\x4b\x37\x74\x6a\x8c\xf3\xd1\xe2\x78\x2a\x50\x5e\x00\xe0\x9c\x94\xae\xfb\xa2\x58\x71\x0d\xdf\xf2\x50\x28\x84\xd1\xd1\x51\x41\x44\xd1\x83\x0f\x23\xbf\xa6\x4a\x0a\xb9\x78\xaa\x7d\xcf\xc4\x20\xaa\xf0\xfd\xa9\xb6\xc2\xd5\x89\x8e\xfc\x0f\x88\x68\x5a\x4a\x99\x3b\x7d\xfa\x34\xcc\xb9\x42\x4f\x24\x1c\x04\xd9\x28\x38\x09\x56\x2f\x9f\xd7\x0b\xe3\xbe\x6f\x54\xb7\x97\x5d\xed\xae\x73\x3d\xae\x02\x29\x25\x12\x89\x84\x24\xa2\xcc\x5c\x54\xbf\xfc\x61\x77\xf6\x1d\xb6\xf6\x2f\x90\xa9\xf7\x9b\xbf\xa2\x2a\x0b\xef\x6e\x4f\x7e\x4b\x82\xe3\x00\x8c\x87\x0f\x1f\x3a\xeb\xf6\x92\xd1\x36\x2e\x0d\x57\x08\x8c\x8c\x8c\x08\x45\x51\xb4\x48\x41\xd9\xb6\x63\x31\xf4\xb2\x39\x4d\x5e\x35\x2e\xa8\xba\x7a\xd4\x1a\x93\x25\x21\xf5\xb3\x83\xc9\xbf\x94\xe0\x49\x02\x25\xaf\x5e\xbd\x2a\x5d\x2e\xa8\x7a\xf2\xc7\x2b\xac\x51\x5a\xd1\x20\xbe\x5e\x9b\xbc\x0c\xf7\x46\xf5\x6d\x54\x46\xba\x95\x30\xe7\x55\xdc\xb8\x71\x03\xdd\xdd\xdd\x05\x10\xee\xbf\xbd\x63\xe5\xcf\x8a\x3e\x69\xec\x9f\x8b\x9c\xf4\x95\x85\x66\xb1\xb7\x78\xb8\x34\xf7\xd6\xf0\xca\x5f\x2c\x36\x95\xde\x06\x23\x1e\x8f\xc7\x8d\x87\x0f\x1f\xae\xd7\x2e\xbb\x1e\x6b\xcd\x8e\xe7\x1b\xba\x63\xc7\x0e\x00\x08\xed\x7a\x14\xfa\xbc\x4f\x52\xd4\x59\x82\x35\x43\x6e\xed\xaf\xb0\x3c\xaa\x1f\xf6\x64\xdf\x49\x84\x8c\x0b\x00\x16\x97\x97\x97\xf5\x0f\x3e\xf8\xa0\x9e\xa6\x59\x0f\x36\x3a\x42\xdd\xf2\x76\xa3\xe5\xd7\xd3\x78\xbd\xca\x59\xef\xd9\x5d\xae\x67\xfa\x7b\xf7\xee\xe1\xee\xdd\xbb\xc6\xf6\xed\xdb\xe3\x65\x81\xcb\x67\x06\x57\xff\xe4\x6a\x6f\xe6\x8d\x9e\xb4\xb6\x47\x33\x44\x68\x25\x68\xcc\x3d\x8a\x16\xaf\x94\x05\x6e\x02\x98\x62\xe6\xcc\xd9\xb3\x67\xd7\xc3\xad\x06\x0f\x6b\x44\xae\x19\xb2\xbd\xbd\xbd\x68\x69\x69\x51\x15\x89\xd6\xd1\xc5\xf0\xcb\xce\x25\x53\x15\xfd\xca\xb9\xfc\xa1\x12\xa6\x2b\x9c\xbb\xdc\x97\xfe\x0e\x08\xd3\x60\xe4\xde\x7f\xff\x7d\x60\x2d\x1b\xdc\xa8\x6a\xdf\x48\xd1\xf0\x62\x7b\x5e\xe5\x6f\xd4\x03\xd3\xc8\x5e\xac\xc7\xce\xdc\x26\x51\x23\xbc\xf0\xd6\x5b\x6f\x41\x55\xd5\x42\x7f\x7f\xff\x1c\x11\x65\xd2\x7e\xe3\x7e\xda\x6f\xbc\x4d\x44\x2a\x33\xe7\x88\x28\x09\x20\x51\x2e\x97\x73\x6f\xbf\xfd\xb6\x7c\xf4\xe8\x51\x3d\xdc\x3c\xeb\x53\x1d\x01\xce\x4c\x72\x74\x74\x54\x30\xb3\xd6\x9d\x0a\x1c\x68\xc9\xa9\xa3\x55\x7f\x46\x65\xf4\xc1\xd6\x52\xad\x3a\x08\xe3\x9d\x99\x73\x69\x7f\xf9\x3a\x33\x27\x67\x67\x67\xbd\x58\x83\xb3\x72\x2f\x36\x51\x6f\x04\xd4\x4b\xef\xf5\xec\xee\xd4\x7a\x6f\xf4\x46\xa1\x5e\xbe\x46\x6c\x76\x4d\x3a\x29\x25\x7e\xf4\xa3\x1f\xe1\x89\x27\x9e\xd0\xf7\xef\xdf\x9f\x50\x14\x25\x65\xad\xf0\x23\x22\xc9\xcc\xc6\xc2\xc2\x82\xf1\xde\x7b\xef\x61\x9d\xd9\x10\xcf\xfa\xdc\xa7\x7a\xd8\x09\xfa\xfb\xfb\x05\x80\xc8\x70\x3c\xf8\x69\xc1\x24\x6c\xef\x29\x5b\x52\xb2\xfa\x0c\x00\x65\xc1\xc6\xf5\xde\xec\xdf\x81\xb0\x40\xa0\xc2\xe5\xcb\x97\x1b\x11\xa2\x1e\xbb\xfa\x28\x32\xb2\x51\xf9\x8d\x46\x64\xa3\xfc\xeb\x29\x51\x8d\x5e\x3a\xaf\xf4\x36\x4e\x97\x2e\x5d\xc2\xa5\x4b\x97\x0c\x00\xc6\x81\x03\x07\x44\x20\x10\x40\x2a\x95\x72\x6f\xd3\x6b\x58\x86\x57\x9c\x73\x5d\xab\x1d\xb8\x65\xcb\x16\xf8\x7c\x3e\x21\x40\xd1\xa1\xe5\xe0\x33\x4e\xa7\x9e\xcd\x4e\xd9\x19\x06\xcc\xc5\x8a\xe3\xcb\xe1\xd2\x55\x66\x4e\x3e\x7c\xf8\xd0\x30\x59\x83\x97\x56\xb7\x91\x91\x57\x8f\x85\x34\x52\x30\xdc\x8d\xf3\x1a\x91\xce\xb8\x7a\x2f\x49\xbd\x51\xdc\x48\x46\xad\xc1\xa3\xa7\xa7\x47\x6c\xdd\xba\x15\xcd\xcd\xcd\x00\x80\x72\xb9\x2c\xa6\xa7\xa7\xe1\x58\x59\x67\x2d\x5f\xb1\x69\xe3\xf7\xfb\xc5\xde\xbd\x7b\xd1\xdf\xdf\x8f\x48\x24\x22\xcc\x7c\x72\x7a\x7a\x1a\x77\xee\xdc\xc1\xe2\xe2\xa2\x17\x9e\x35\x23\xd2\xd9\x50\xf4\xf7\xf7\x83\x88\xb4\xb6\x8c\x6f\xa4\xa9\xa0\x6c\xab\x75\x8d\x3b\xa6\xa7\x50\x5d\xa6\x7b\xab\x2b\xfb\x36\x08\x73\x04\xca\x8d\x8f\x8f\xa3\x01\xd4\x33\x1d\xbc\x6c\xb9\x7a\x71\x1b\x91\x89\x1b\x29\x67\x3d\x1c\x37\x93\x5f\x00\x95\x8d\xbb\xa7\x4e\x9d\xc2\x96\x2d\x5b\x54\x30\x34\x5f\x99\x02\x0a\x93\x28\xaa\xb2\xb0\x7d\xfb\x76\xfd\xa9\xa7\x9e\x32\xde\x7f\xff\x7d\xe9\x58\x81\x0e\x00\x18\x1e\x1e\x16\xc7\x8f\x1f\x17\x7e\xbf\x5f\xd3\x0c\x8a\x76\xa5\xb5\x21\x45\x92\x96\x08\x95\x66\x23\xbb\x76\x2f\xec\xde\xbd\xbb\x70\xe3\xc6\x0d\x9c\x3f\x7f\x1e\xd5\xf3\x2a\xaa\x78\x78\x9a\x1f\x3d\x3d\x3d\x82\x99\x03\x5b\x93\xfe\xe3\x04\x88\xea\xca\x6b\xb2\x77\xf4\x52\x75\x65\x27\x4a\x0a\xe7\xee\xb5\x16\xde\x65\xe6\x64\x2e\x97\xab\x37\x53\x5e\x0f\x36\xcb\x36\xdd\xf9\xec\xf8\x58\x2c\x26\x7a\x7a\x7a\x10\x8b\xc5\x10\x8b\xc5\x00\x00\xb9\x5c\x0e\xe9\x74\x1a\xf1\x78\x1c\x75\x64\xf6\x27\x06\xed\xed\xed\xe2\xc5\x17\x5f\x14\x01\x7f\x20\xd0\xbb\xaa\xed\x7f\x62\x3a\xfa\xdb\x3d\x29\xed\x98\xc2\xa4\xa5\xfd\xe5\xfb\x1f\x76\x67\xbf\x75\x6d\x0b\xfe\xfa\xd4\xa9\x53\xa9\x70\x38\x6c\x98\x93\xd1\x62\xfb\xf6\xed\x78\xe6\x99\x67\x84\x0a\xd1\x7c\xf8\x7e\xf4\x57\x1f\x9b\x8b\xfc\x76\xb0\x24\xfa\x01\x88\x32\x21\x75\xbf\x2d\xff\xca\x5b\xc3\xc9\x7f\xbb\x77\xef\xde\xd9\x70\x38\xac\x9f\x3e\x7d\x7a\x4d\x3b\x3c\x8f\x67\x69\x6f\x6f\x17\xcc\x1c\xea\x4b\xfa\x9f\x20\x54\x8c\x7d\xa0\x3a\xc3\xe8\x5c\x2c\x0f\x00\x0f\x63\xc5\xf1\x82\x4f\x4e\x13\x51\xce\x5c\x2c\xe5\xc5\x1a\x9d\x75\xb8\xc3\x6a\xea\x6f\x40\x2b\xcf\xf8\x9d\x3b\x77\x8a\x7d\xfb\xf6\xa1\xa5\xa5\x45\x98\x5a\xa0\x4a\x30\x9d\x0d\x44\x12\x15\x2f\x89\x51\x2c\x16\xe5\xed\xdb\xb7\xe5\xfb\xef\xbf\xff\x49\x74\xe8\x1a\x5c\x9e\x7f\xfe\x79\x04\x02\x81\xd0\x9e\xf9\xf0\x97\x3e\x35\xd1\xf2\xa7\x0a\x53\xc4\x8a\x6b\xcb\x89\xde\xa7\xa7\x62\xc7\xfa\x57\xfc\xcf\xfe\xdd\xee\xe5\xdf\x3d\x7c\xf8\xf0\x62\x3a\x9d\x36\x26\x27\x27\xe5\xa9\x53\xa7\x54\x85\x44\xeb\x73\xb7\x5b\xff\x60\xd7\xa3\xd0\xbf\x70\x6e\xf6\x55\x99\x9a\xb7\xc7\x43\xbf\xde\x92\xf3\xed\xfe\xee\x63\x8b\xbf\x32\x34\x34\x74\x7f\xe7\xce\x9d\xc6\xed\xdb\xb7\xd7\x98\x1f\x35\x08\x0d\x0c\x0c\x08\x00\xaa\x2a\xa9\xb9\x23\xa3\x8d\x00\xce\x85\x6f\x15\x6d\x95\xa9\xaa\xee\x30\x18\x0f\x5a\x0a\x97\x41\x48\x30\xb3\x7e\xf7\xee\x5d\x67\x43\xdd\xf7\xf5\x3a\x74\x23\x1d\xe8\x26\xa0\xe8\xea\xea\xc2\xc9\x93\x27\xd1\xdc\xdc\xac\x11\x23\xd4\x14\x2f\x1f\x88\x2e\x19\xcf\x87\x92\xe5\xfd\x6a\x89\x3b\xc1\x50\xa5\x4a\xc9\x42\x44\xdc\x49\xb7\x29\x3f\x59\xed\xd2\xde\xd9\xbf\x6f\x5f\x62\x74\x74\x54\xbf\x7e\xfd\xba\x34\xe7\x43\x1b\xc9\xe3\xf5\x64\xbb\x8d\xcf\xc1\x83\x07\x45\x53\x53\x53\xa0\x2d\xe3\xdb\x7f\x6a\xb2\xf9\x4f\x14\x46\xa4\x42\x31\x7b\x77\x08\x08\x84\x81\x95\xc0\x97\x0e\xcf\x44\x27\xcf\x6d\x5b\xfd\xe3\xa3\x47\x8f\x26\xf7\xef\xdf\x2f\x14\x45\x09\x0c\x2e\x07\x9e\x1b\x7d\x14\xfa\xef\x2b\x0b\x2a\xac\x5d\xd4\xd5\x01\xd3\x9a\x53\x8f\x1c\x99\x8e\xfe\xf6\xdb\xdb\x57\xfe\xe0\xc9\x27\x9f\x4c\xde\xbe\x7d\xbb\x46\x7e\xbb\x59\xab\xec\xee\xee\x16\x00\xd4\xa6\xa2\xda\x1b\xd6\x95\x6e\xdb\x73\x63\x29\x37\x4e\x8b\xc3\xdc\x8e\xfd\xb0\xb9\x78\x05\x40\x4a\xd7\x75\xf9\xe8\xd1\xa3\xcd\xa8\xce\xee\xb0\xf5\xae\x36\xec\xdd\xbb\x17\xc7\x8e\x1d\x13\x60\x8e\xc4\x1e\x19\xcf\x74\x4f\xe8\xbf\x17\xc8\xc8\x23\x64\x11\xdf\xb1\x58\x28\x98\x96\xcf\x34\xcf\x97\xbe\xda\x3b\x5e\x9c\x8d\x0f\x68\x5f\x5f\x1c\xd4\xfe\xd3\xa1\x43\x87\xe2\xbd\xbd\xbd\xfa\x1b\x6f\xbc\xe1\x9e\x89\xaf\x57\x6f\x43\x33\x64\xf7\xee\xdd\x00\x23\xb4\x6f\x3e\xfc\x6b\xbe\xb2\x68\xb6\x55\x09\xd3\x19\xee\x98\x43\xc6\xde\xf9\xf0\xaf\x5e\xdc\x9a\xfa\xf3\x60\x30\x98\x09\x85\x42\x12\x8c\xc8\xe8\x62\xf8\xe7\x89\x2b\x53\x5c\x4e\x95\x84\x4c\x82\x13\x03\x23\x8b\xa1\x2f\x9c\x19\x4a\xfe\x19\x05\x02\x19\x54\xb6\x4a\xd8\x38\xac\x11\xda\x1d\x1d\x1d\x00\xa0\xb6\xe4\xd5\x21\xc1\xd0\x6c\x73\xdf\x9a\xf0\x70\x26\x26\x42\xc1\x27\x93\xc9\x80\x31\x05\xa0\xb0\x81\x4e\xdc\x2c\x78\x2a\x25\x7b\xf6\xec\x11\x4f\x3d\xf5\x94\x4a\x65\xee\xdc\x3a\x56\xfc\x83\x6d\x57\x0a\x7f\x15\xcc\x94\x8f\x12\x20\x6a\x56\xf2\x81\xad\x89\x52\x10\x08\xaa\xc1\x7d\x5d\x77\xf5\x3f\xdc\x71\x3e\xf7\x57\x81\x8c\xdc\xdd\xdb\xd3\x13\x78\xf1\xc5\x17\xa1\x69\xda\x46\x6c\xcc\x86\xf1\xe6\x54\x55\xb4\x33\xa3\x1d\x70\xaf\x68\x73\xae\xf1\x25\x00\x81\x92\xe8\x8e\x15\xd4\x61\x22\xd2\x98\x59\x00\x88\xc4\xf2\xea\x90\xed\x77\x35\x81\x5d\x79\x03\x86\xe8\x0c\x94\x44\x27\x00\x75\xef\xde\xbd\x35\xb4\x11\x0e\x62\x09\x00\xc2\x54\x12\xb4\xb6\xac\x6f\x47\x75\xa6\x83\xea\x2e\x7a\x48\x84\x4a\xb3\x25\x85\xe3\x00\xf4\xf9\xf9\x79\x77\xd9\x9b\xb9\xd6\x0b\x73\xe2\x29\x86\x87\x87\xc5\xb1\x63\xc7\x54\xc1\x68\x1f\xb8\x56\xf8\xe3\xd6\xd9\xd2\xef\x10\xa0\x55\xb5\x69\x97\x37\x9f\x08\xce\x15\x29\x04\x20\x98\x96\xc7\x86\x2f\xe6\xbf\xe3\xcf\xca\xbd\x1d\x1d\x1d\x81\x53\xa7\x4e\x55\xb7\xdf\xd5\xa9\xd7\xf5\x03\x1c\x1d\xbb\x75\xeb\x56\x2b\x5c\x23\x86\x66\xe7\xb6\x44\x92\x73\xbf\x88\x99\xd7\x10\xac\x31\xb3\x30\xeb\x55\xf3\xbe\x72\x0e\x6e\x70\x2e\x2a\x41\x45\xa9\x2c\xaa\xec\xa9\x99\xab\xae\x00\x84\x42\x21\x01\x40\x8b\x15\xd4\xbe\x9a\xf5\x8c\x9e\x57\x60\x39\x6c\x4c\x83\x90\x61\x66\x23\x1e\x8f\xd7\x94\xe5\x55\xe1\x3a\x57\xeb\xde\xd3\xc6\xd4\x34\x0d\xc7\x8f\x1f\x17\x04\x44\xba\x26\xf5\xdf\x8e\x3d\x32\x7e\xd1\x61\xdd\x56\xdd\x86\x55\x1d\x1b\xd5\xa3\x20\xe0\x48\xc7\x50\x8b\x3c\x34\x70\xb5\xf0\xef\x26\x8f\x86\xbe\x32\x38\x38\x38\x3b\x38\x38\x68\x4c\x4d\x4d\xad\xc1\x21\x16\x8b\x61\xf7\xee\xdd\xe8\xed\xed\x45\x30\x18\x14\x00\x90\xc9\x64\x30\x33\x33\x83\x1b\x37\x6e\x40\xd7\x75\x39\x33\x33\x63\xe1\x6b\x2c\x44\xf5\xc9\xee\xb4\x7f\xbf\x35\xc1\xe1\xd5\x99\x05\x9f\x4c\xa5\xfd\xe5\x38\x00\x69\x6e\x01\xd4\xef\xb5\x15\x2e\x0f\xac\x04\x8e\xda\x7b\x45\x6d\x91\x66\x17\x80\xb9\x68\xf1\x8e\x21\x38\x87\xda\x29\xae\x1a\x84\x25\x00\x69\xb2\x55\x01\x20\xd0\x54\x50\xba\x2d\x36\x65\x2d\xe7\xb0\x3d\x73\x8e\xe7\x64\xb0\x34\xcb\xcc\x05\x00\xd2\x54\xef\x3f\x89\x9f\x05\x35\x86\xfb\xd1\xa3\x47\xe1\xf7\xfb\xb5\x60\x4a\x1e\xe8\xbc\xa7\xff\x0e\xec\xe6\x92\xc3\x1c\x5a\xeb\x13\xae\xc4\xad\x9d\x7b\x0b\xa6\xe5\x91\xce\x7b\xfa\x6f\x80\x39\x72\xfc\xf8\x71\x38\xeb\x02\x80\x03\x07\x0e\xe0\x8b\x5f\xfc\xa2\xd8\xb7\x77\x5f\xa8\x3f\xd2\xd1\x3b\xa2\xb7\x3c\xbe\xbd\xd4\xbc\x7f\x6b\x4b\x77\xe7\xa1\x43\x87\x02\x5f\xf9\xca\x57\xc4\xc8\xc8\x88\x00\x00\x29\xa5\x64\x70\xee\x46\x4f\xe6\x47\x25\x45\x16\x60\x9a\x69\xf6\xa4\x3b\x99\x13\xc8\x04\x8c\x77\xe6\xce\x18\x42\x26\x89\xc8\xa0\x8a\x56\x9d\xba\xd9\x95\x7d\x23\x1e\x2e\x4d\xd7\xbc\x71\xa8\xa2\xab\x2b\x5c\x38\x3f\x90\xfa\x0e\x08\x49\x66\x96\xd3\xd3\xd3\x35\xf8\xae\x91\x41\xe6\x99\x33\x5a\x44\x57\x5a\x9d\x9c\x15\x8e\x7b\x7b\xad\x09\x01\x29\x7f\xf9\x21\x11\xe9\xa6\xc2\x50\xc3\xa6\x5d\xf7\xf5\x58\x97\xd7\xb3\xa7\x6c\x1c\x1c\x1c\x14\x60\x8e\x76\xdc\xd7\x7f\x43\x94\x11\x21\x53\xfe\x55\x1a\x6e\x1e\xa9\x62\xc9\x44\x46\xf5\x8d\x66\x86\x9d\x96\xab\x69\x89\x19\xed\x0f\xf4\x5f\x57\x0c\xf4\x06\x83\x41\x6d\xfb\xf6\xed\x76\xbd\x9f\xfa\xd4\xa7\xc4\x91\x23\x47\xb4\x08\x6b\xbd\xcf\xdf\x69\xf9\xc3\x5f\xbd\xd8\x73\xfe\x8b\xd7\x3a\xce\x7e\xf9\x6a\xe7\x7b\xbf\x7e\xb1\xfb\xec\xb1\x7b\xb1\xdf\x09\xa9\xfe\xd6\x67\x9e\x79\x46\x3d\x7a\xf4\xa8\x98\x9f\x9f\x97\x44\x94\x4a\x84\x8c\xab\x6f\x0f\x27\xff\xb3\x41\x6c\x90\xa3\x33\x2d\x59\x34\x17\xd5\xef\x9c\x1f\x58\xfd\x36\x80\xb8\x94\xd2\x58\x5a\x5a\x92\x44\x94\x2b\xa9\x7c\xe7\x87\x7b\x96\xff\xcf\x47\x11\x7d\x9a\xcd\xf9\x5d\x36\x69\x9c\x57\xcb\x99\x1f\x8d\x26\xfe\xe3\xa3\x26\xfd\x1c\x80\xc4\xd2\xd2\x92\xe1\x3e\x1b\xaf\x86\xb5\xb6\xb6\xb6\x56\xee\x19\xaa\x66\x88\xca\x9a\xcb\x1a\xbf\xb8\xf3\x35\xa9\xa0\x96\xd3\xca\x71\x00\x7a\xa1\x50\xf0\x1a\x4d\xf0\x78\xae\xe7\x8e\x83\x47\xbc\x9d\x77\x64\x64\x44\xf8\xfd\x7e\x55\xd1\xb9\x3b\xb6\x68\xbc\x50\xc1\xc7\xb1\x5a\xc1\x39\xda\x6a\xd4\x3e\xaa\x22\x6b\x3d\x3a\x8e\x12\x51\x4b\xe8\x8e\x2e\x1a\x9f\x5a\xd9\xe2\x9b\xdd\xbd\x7b\xb7\x7e\xf7\xee\x5d\x0c\x0f\x0f\x8b\xe1\xe1\x61\xd5\x5f\xa2\xde\xcf\x5f\xef\xf8\x66\x67\xc6\x77\xd2\x59\x64\xb0\x24\x86\x0e\x4f\x37\xfd\x51\x5b\xd6\xb7\xef\xef\x77\xc7\xff\xd5\xde\xbd\x7b\xe3\xd7\xae\x5d\x93\xbd\xbd\xbd\x05\x22\xba\x7f\xb3\x2b\xfb\xed\x95\x60\x29\x71\x78\x3a\xfa\x72\x77\x5a\xeb\x57\x24\xa9\xa9\x80\x91\xbc\xdd\x99\xbb\x74\x75\x4b\xe6\x3b\x86\xc2\x57\x09\x94\xbc\x75\xeb\x96\xbc\x70\xe1\x02\xbe\xf8\xc5\x2f\x16\x9a\x9a\x9a\x66\x57\x83\xc6\x9b\x7f\x7d\xf0\x51\x62\x68\x39\xf8\xec\x96\xa4\x7f\x44\x91\xa4\x2d\x45\x4a\xd3\x93\x1d\xb9\x77\x73\x9a\xbc\x04\x60\x52\x4a\x99\xfb\xe0\x83\x0f\xec\x3e\xb3\xa0\xc6\xd7\xea\xf3\xf9\xc0\xcc\xc2\x27\x45\x40\x2b\x53\x88\xcd\x06\xdb\x66\xa4\xd5\x81\xb6\xbb\x95\x65\xc1\x27\x93\xcc\x6c\x6d\x5e\xa9\xe7\xda\xaa\x17\xd7\xc8\x5d\x57\xd3\x99\x3d\x3d\x3d\x60\x66\x2d\x94\x2a\xef\x17\x06\xb7\xba\xcf\x98\x63\x9b\x91\x3a\x65\x24\xec\xb5\x30\x96\x0a\x6f\xc7\x9a\xb2\x88\x98\x10\x59\x36\x8e\x27\x7a\xd5\xef\xb6\xb5\xb5\x65\x60\xb2\x70\x00\x91\xc3\x33\xd1\xdf\xae\x74\x62\x2d\xbb\xb6\x60\x68\x39\xf0\xcf\x77\x2d\x84\xdf\xbb\xd1\x93\xf9\x8b\x2d\x5b\xb6\x64\x2e\x5c\xb8\x20\x8f\x1c\x39\x92\x04\x30\x36\x1f\xd3\x53\xaf\xee\x8d\x9f\xf7\x49\xea\x16\x12\x9a\xae\x72\x82\xc1\xb3\x0c\x4c\x13\x68\x21\x9d\x4e\x17\x2e\x5c\xb8\x00\x5d\xd7\xf1\xd6\x5b\x6f\xe1\xb3\x9f\xfd\x6c\x4e\x55\xd5\xfb\x65\x41\xa9\x3b\xed\xb9\x3b\x13\x1d\xf9\x66\x53\x19\xca\x30\xf3\x22\x18\x8b\x00\x32\xef\xbc\xf3\x8e\x9c\x99\x99\x81\x1b\xdc\x76\xa4\xa0\xca\x7a\x4b\x95\x98\xd4\xaa\xbd\x88\x9a\x9e\xb4\x6c\x22\x16\x90\x65\xc1\x05\x93\xcf\x03\x6b\x47\xe1\x66\xc1\x6b\x14\x0b\xa0\x72\x6e\x2b\x11\x69\xfe\x8c\xdc\x55\x43\x56\xfb\xc4\x2a\x0b\x51\x38\x9e\xad\x01\x69\xf7\x60\x25\x9c\x1c\xdc\x0e\x8c\x40\x56\x0e\x11\x10\x32\xcd\x10\x04\x83\x41\x55\x91\x68\xdf\xb5\x10\xfe\x32\xb9\xde\xe4\x5a\x9a\x90\xd8\xf3\x28\xfc\x95\xb1\x9e\xec\xab\x9d\x9d\x9d\xb9\x57\x5e\x79\xc5\x90\x52\x1a\x87\x0f\x1f\x4e\xa8\xaa\x9a\x63\xf0\x6c\x49\x41\x00\x0a\x84\x79\xbe\x41\x86\x80\xc2\xd2\xd2\x92\xfe\xfd\xef\x7f\xdf\x6e\xeb\xc2\xc2\x82\xf8\xe6\x37\xbf\x69\xbc\xfc\xf2\xcb\x99\xde\xde\xde\x02\x2a\x7b\x43\x55\x22\x12\xcc\x6c\x10\x91\x9e\xcb\xe5\xf4\x77\xdf\x7d\x17\x0f\x1e\x3c\xf0\xe4\x6c\xee\xd9\x0f\x30\xb3\x20\x90\x20\x86\xb0\x8f\xf2\xb2\x24\xb6\x83\x4b\x99\xb7\x52\x9a\x87\xd6\x7a\x14\x0e\xac\x65\x91\x9e\x9d\xe4\x7a\xf6\xf4\xac\x84\x42\x21\xc1\xcc\x9a\x52\xe2\x66\x06\xaa\x67\xde\x38\xcf\x8a\x73\x8f\x48\x82\xb9\x1d\x81\xec\x8e\x66\x54\x0e\x70\x60\xb2\x94\x6f\x82\x52\x42\x33\x18\x01\x06\x8b\xaf\x7e\xf5\xab\x82\x99\xd5\x90\xae\xf4\x06\x0c\xd1\x69\x2b\x9b\x8e\x13\x99\xc9\x31\x99\x1e\xcb\xab\x43\xaa\xa4\x66\x43\xe1\xc5\x2d\x5b\xb6\xc8\x1b\x37\x6e\xc8\xf9\xf9\x79\xec\xdb\xb7\x2f\xd7\xdf\xdf\x5f\xd0\x34\xcd\x32\x6d\x64\x22\x91\x90\x37\x6e\xdc\x80\xcb\xbd\x66\x73\xa5\x1f\xfe\xf0\x87\xe8\xee\xee\x36\x06\x06\x06\x8c\xee\xee\xca\xa6\xef\x74\x3a\x8d\xb9\xb9\x39\x4c\x4e\x4e\xc2\x30\x8c\x7a\x0e\x09\x51\xef\x30\x08\x01\x54\xad\x0c\x8b\x2d\x55\x55\x69\x54\x0f\xde\xd8\xb8\x6b\xcd\xae\xb4\x4e\x5c\x23\xb0\xd3\x72\x05\x33\x6f\x0d\xd5\x89\x1b\xd7\xc6\x5b\x43\xd1\x69\xce\xb1\x39\x34\x99\x20\x41\xb5\xac\x5f\x12\xab\x4c\x90\x00\x83\xad\x55\xe1\x0e\xb0\x58\xb9\x21\x58\x4a\x62\x0d\xa6\xcb\xf0\xe1\xc3\x87\x88\xc7\xe3\x78\xeb\xad\xb7\x6c\x2e\xd5\xd1\xd1\x21\x96\x96\x96\xbc\xda\xe4\xd6\x29\xc4\xc2\xc2\x02\x16\x16\x16\x1a\xf9\xa9\x9d\xdc\xcf\x7e\x76\x76\xa4\x84\xc9\x5a\x99\x20\x99\x20\x6d\x05\xc1\xb5\xef\xd1\x21\x9e\x84\xe0\x75\x4f\x06\x71\x56\xba\x99\xce\x5b\x03\x44\x84\x92\x5f\x24\xe1\x18\x15\x55\x3f\x00\xd9\xef\x19\x59\xab\xdf\xcd\x31\x5a\xeb\x8e\x72\xe2\x5f\x91\x95\xa5\x00\x25\x01\x92\x0e\x09\x28\xb3\x9a\x4c\x2d\x87\x4a\xd3\x9d\x19\xdf\x88\xed\xd9\xe2\x5a\x16\x4e\x60\xcc\xc5\x8a\xe3\x92\x50\x00\x20\x9d\x76\x74\x20\x10\x10\x3d\x3d\x3d\xf6\xbc\x62\x2c\x16\xc3\xfc\xfc\xbc\xfb\xc0\x0a\x4f\x7f\xf4\x93\x4f\x3e\x29\x22\x91\x8a\xbf\xdd\x9a\xc7\x74\xcc\x28\x79\xea\x1e\x9e\x6b\x76\x24\x20\x25\xb1\xc1\x0e\x16\x42\x16\xd5\xa8\xba\x6d\x55\x30\x84\x2a\x49\x33\x59\x87\x99\xd5\x59\xcc\x9a\x37\xc8\x8d\x40\xbd\xd1\xbc\x46\xfb\x2d\x16\x8b\x08\x06\x83\x7a\x3e\x2a\x26\x6a\xcf\x0e\x83\xcd\x3a\x6a\x94\x55\x3b\xda\xc9\x3e\x1c\xa3\xcb\x7a\x29\x01\xe4\xa3\xca\x14\x08\x05\x02\xc9\x3b\x77\xee\x60\xc7\x8e\x1d\x06\x83\x13\x17\x06\x52\xaf\xbc\x74\xb3\xed\x5f\x57\x56\x48\xb0\x43\x21\xae\xd0\x41\x17\x5c\xf8\xa0\x2f\xfd\x03\x10\x52\xcc\x6c\x98\x0a\x9f\x3c\x7a\xf4\xa8\xd8\xb5\x6b\x57\x65\x0f\x25\x9b\xb4\x25\x48\x66\x36\x1e\x3e\x7c\x28\xcf\x9d\x3b\x27\xcc\x53\x24\x6d\x3a\xb4\xb4\xb4\x88\x13\x27\x4e\xa0\xbb\xbb\x5b\x23\x90\xa6\x95\x29\x20\x24\x89\xa2\x4f\x16\x76\xec\xd8\x51\x38\x74\xe8\x90\x71\xee\xdc\x39\xe7\x54\xdc\x1a\xa7\x79\x0d\x30\xb3\x2c\x0b\xe8\x25\x85\x73\xc1\x12\xb5\xae\x35\x50\xc9\x26\x02\x08\x22\x58\x52\xa2\xcc\xf6\xe1\x79\x5e\x1d\xea\x8c\x6b\xf4\x56\xb9\xcd\x97\x9a\xb8\x78\x3c\x8e\xe6\xe6\x66\xbd\x18\x11\x53\xc5\x10\xcd\xfa\x73\xdc\x47\xae\xf1\xe1\xde\xd2\x57\xd5\x51\x1d\x1d\x00\x54\x8c\x73\x9b\x17\x03\xa9\x4e\xf5\x3c\x33\xe7\x74\x5d\x97\x6f\xbf\xfd\xb6\xec\xe9\xe9\x31\x9a\x9a\x9a\x12\x77\xdb\xf2\x3f\x3a\xb7\x6d\x75\xf8\xa9\xfb\xb1\xcf\x29\xb2\xf2\xb2\x5a\x87\x1f\x96\x54\x2e\x9c\x1e\x59\xf9\x8b\xa5\x48\xe9\x7d\x66\x4e\xce\xcf\xcf\xcb\x62\xb1\x88\x2f\x7c\xe1\x0b\xa2\xad\xad\x2d\x10\x2d\xaa\xdd\xfb\x66\x23\x5f\xe8\x4e\x69\x87\x05\x93\xb6\x1c\xd6\x6f\x7e\xd8\x9d\xfd\x0e\xb6\x6c\x99\xfc\xfc\xe7\x3f\x5f\x78\xfd\xf5\xd7\x61\xae\x5b\x95\xcd\xcd\xcd\xe2\xa5\x97\x5e\x12\xa1\x60\x28\xd0\xbf\xe2\x3f\x72\x78\x26\xfa\x5b\x1d\x19\xdf\x13\x82\x49\x5b\x09\x1a\x37\xaf\xf7\x66\xbe\x71\xb3\x9b\x5e\xfb\xcc\x67\x3e\x93\xf9\xe0\x83\x0f\xac\x95\x05\x35\x2f\xbb\xe2\x20\x2a\x75\x76\x76\x62\xeb\xd6\xad\x82\x88\x5a\x77\x2d\x84\x7f\x62\x54\x13\xfa\x00\x00\x1c\x93\x49\x44\x41\x54\x2e\x5c\x12\xed\x35\x9d\x57\xe1\x5b\x26\xd1\x2a\x6c\xeb\x41\x6b\xe1\xdc\x72\xb8\x74\xad\x58\x2c\xe6\x6f\xdf\xbe\x6d\x15\xbc\xd6\x8d\xb2\xf6\xbe\x5e\x1c\xb9\xc2\x25\x00\x21\x84\xc0\xd0\xd0\x10\x00\x68\x24\x69\x4b\xd3\x72\xf9\x31\x62\x27\x2e\xae\x52\xab\x3d\xec\xe8\xc4\xea\x19\xae\x96\xbf\x27\xd7\xac\x4c\x2e\x0c\x6b\xdf\x20\x41\xd3\xf3\xf3\xf3\x85\xc9\xc9\x49\xce\xe5\x72\x34\x34\x34\x64\x80\x50\x98\x8b\xea\xd3\xd3\xad\x85\x05\x02\xfc\x4c\x40\xc6\x6f\xac\x4e\x74\xe4\xaf\x9f\x1e\x59\xf9\xe6\xc3\x58\xf1\x87\x20\x4c\x00\x48\x9d\x3b\x77\x8e\x4f\x9d\x3a\x85\xf6\xf6\xf6\xd0\x60\x22\x78\xea\xf3\x37\x3a\xbe\x33\xb0\x12\xf8\xf9\xe6\x82\xba\x27\x5a\x54\x47\xbb\xd2\xda\xd3\x7b\x16\x22\xbf\x0c\xa2\xf4\xa3\x16\xe3\xd6\xe0\xd0\x90\x3e\x35\x35\xc5\x00\xe8\x73\x9f\xfb\x1c\xc2\xa1\x70\x78\xff\x5c\xf8\x2b\x9f\xbe\xdd\xf6\xe7\xb1\xbc\xef\x31\x1f\x8b\x66\x85\xa9\x29\xa2\x2b\x43\x43\xcb\x81\x2f\x44\x0b\x6a\xec\x41\x7b\xf1\x52\x57\x4f\x77\xfe\xe1\xc3\x87\xc8\x66\xb3\x64\x37\x0a\xd5\x63\x3e\x19\x00\x2f\x2e\x2e\xf2\xa1\x43\x87\x54\x22\x8a\x0e\x2d\x07\x3f\xdd\x92\x57\xfb\x2a\x5a\xdb\x5a\xca\x58\x67\xb6\x2d\x36\xe9\xb7\xe6\x62\xc5\x73\xaa\xaa\x66\xaf\x5d\xbb\x26\x9d\xe5\x7d\x84\x1f\x99\x1d\xe7\x0c\x03\x00\x5e\x59\x59\xe1\xfd\xfb\xf7\x43\x08\x41\x85\x26\x45\x6f\x5e\x28\x3d\xad\x18\x88\xd8\xb8\x50\x65\x23\x91\xb5\x74\xdb\x1a\x71\x44\x56\x1c\x4c\x37\x99\xa5\xf7\x10\x58\x90\x9c\xd9\x1b\xf8\xba\x1e\x51\xce\x32\x73\xfc\xf2\xe5\xcb\xe5\x44\x22\xc1\x2b\x2b\x2b\x1c\x0c\x06\xb9\xbd\xbd\xbd\x08\x60\x35\x1b\x90\xd3\x77\xdb\xf2\x97\xc7\x7a\xb2\xef\x8c\xf5\x64\x4f\x3f\x68\x2b\xbc\x9e\x57\xcb\x97\x00\x4c\x11\xd1\xea\xf9\xf3\xe7\xcb\xc1\x60\x10\x23\x23\x23\x5a\x34\xaf\x8c\x7e\xee\x46\xc7\xb7\x83\x25\xa5\xcf\x66\x5c\x26\x4e\x02\xa4\x6d\x49\xfa\x9f\x5d\x0d\x1a\x13\x89\x68\xf9\x4e\x7b\x7b\x7b\xa9\xad\xad\x0d\x3d\x3d\x3d\x5a\x7b\x4e\x3b\xf4\xd2\xcd\xb6\x6f\xa8\x2c\x9a\x80\xea\xc1\x89\x56\x09\x1d\x59\xdf\xa1\x82\x4f\x2e\x3c\x8a\x95\x6e\x74\x77\x77\xeb\xe6\x62\x2d\x9b\x3e\x35\x2c\xae\xa3\xa3\x43\x98\x36\xa1\x9e\x0a\x18\x8b\x95\xb7\xdd\x39\x1a\x2b\x84\xb2\xd7\x96\x13\xd0\x9a\xf3\x6d\x23\x22\xcd\xb2\xc1\x36\x01\x5e\xda\xab\x5b\x5e\xd7\xdc\x8f\x8f\x8f\x4b\x00\x29\xe9\xa3\x9b\x33\xfb\x02\xff\x91\x05\x74\x8b\x9b\xd6\xc8\x44\xa0\x46\x02\x98\x6d\xad\x9a\x50\x26\x8d\x96\xb6\xf9\x5e\x4f\xb7\x2b\x3f\x66\xe6\xc5\x74\x3a\xad\x4f\x4e\x4e\xda\x75\x9d\x39\x73\x46\x5e\xbb\x76\x4d\x2f\x97\xcb\x71\x66\x1e\x07\xf0\x3e\x08\x6f\x33\xf8\x4d\x66\xbe\x00\x60\x52\xd7\xf5\xe4\x99\x33\x67\x8c\xb1\xb1\x31\xec\xd9\xb3\x07\x60\x44\xf6\xcd\x47\x7e\x2d\x60\x88\x5e\x00\xf6\xcb\xc5\x0e\xf9\x2d\x00\xed\xc8\x74\xf4\x5f\x11\xa3\xbd\xbb\xbb\x5b\x1d\x1d\x1d\x15\x00\x22\xfb\xe6\xc2\xbf\xa4\x4a\x6a\xae\xa0\x6e\xd9\xae\x0c\xeb\x30\x43\x02\xc4\xa1\xd9\xa6\xdf\x52\x99\x3a\x9b\x9b\x9b\xd5\xbe\xbe\xbe\x1a\x37\x68\x8d\x1d\xb9\xbc\xbc\x6c\x9d\xcb\xad\x27\x03\xc6\x1c\x7b\x68\xab\x36\x61\xb8\xf2\xa6\xb5\x65\x7d\xdb\xc0\x08\x11\x91\xe8\xee\xee\x16\x2e\xd5\xb9\x11\xb8\x4d\x11\x4f\xfb\xd1\x71\x2f\xaf\x5d\xbb\x26\x86\x87\x87\xf5\x60\x30\x38\x97\x6d\x51\x7e\x34\xbd\x2f\xd0\xb9\x75\xac\xf0\xab\xc2\xa8\x4e\x1d\x55\x8f\x88\xa1\x9a\xc3\x77\xd9\x71\xa4\x27\x13\x61\x65\x8b\xfa\xfe\xfc\x88\xff\x1b\x20\x9a\x24\x20\x73\xe5\xca\x15\xab\xed\x76\xdd\x17\x2e\x5c\xc0\xc4\xc4\x84\xdc\xb1\x63\x47\xa1\xbf\xbf\xbf\xd0\xda\xda\x2a\x00\x60\x69\x69\x49\x3e\x78\xf0\x00\x37\x6f\xde\x44\xb1\x58\x94\xe1\x70\x58\x44\x22\x11\x01\x46\xa4\x77\xd5\x7f\xa4\x96\x99\xb3\x45\x2e\xfb\x7f\x2c\xaf\x8e\x44\x8a\x4a\x7f\x3a\x50\x5e\x24\x22\x03\x8c\x68\x57\x5a\x7b\xdc\x42\x98\x89\x6d\x73\xc7\x79\x5e\x6c\xb8\xa8\x0c\x45\x0b\xea\xb6\x95\x90\x31\xd7\xd1\xd1\x61\xcc\xce\xce\xd6\x38\x04\xaa\x94\x95\x12\x52\x4a\x08\x21\xf4\xe5\xb0\x71\xaf\x4a\x05\xe7\x1b\x6f\x53\x0c\x60\x46\x73\x5e\xdd\x16\x2c\x89\xd6\xbc\x26\xa7\x3b\x3a\x3a\x8c\x85\x85\x85\x8d\x8e\x4c\xf7\x48\xf4\x0a\xaf\x49\x9f\xcb\xe5\x70\xe6\xcc\x19\xf9\xfc\xf3\xcf\x67\x18\xb8\x93\xec\x51\xbf\x5d\x0a\x04\x53\x5b\xc7\x0a\xbf\xec\xcf\x72\x27\xb9\x90\xb4\xcf\x41\x47\xd5\xd7\x23\x55\xe8\x8f\x86\xb5\xd7\x16\xb7\x69\xdf\x62\xc2\x55\x02\xe2\x13\x13\x13\xd6\x1a\x98\x35\x75\xaf\xac\xac\xe0\xc2\x85\x0b\xf2\xc2\x85\x0b\x16\xb7\x5a\xd3\xe1\xad\xad\xad\x96\x23\x25\xa0\x4a\x8a\x58\x3e\x4c\xe7\x79\xe8\x4e\xc7\x05\x01\x42\xa9\x6c\xc1\x50\x99\x59\x12\x48\x93\x04\xe1\x3c\xda\xad\x32\x28\x4d\xcd\xca\x7a\x26\x58\x36\xab\x6a\xfa\xc5\x6d\xda\xd4\x4c\x63\x01\x90\xa6\x37\x5e\x4f\x06\x4b\xd3\x65\x82\x4e\x16\x7b\x05\xd9\x32\x07\x20\x7b\x09\x82\x56\xa6\x68\x5b\xd6\x37\x02\x40\xed\xe9\xe9\x71\x76\x8a\xd7\xd4\x54\xbd\x69\x2b\xe1\x8a\xaf\x5b\xce\xbd\x7b\xf7\xe4\xb5\x6b\xd7\x0c\x00\x09\x06\xc6\xb2\xad\xea\x77\xee\x3c\x15\xfe\x83\xb9\x51\xff\x0f\x0b\x61\x8a\xb3\xc9\x96\xc8\x41\x3c\x26\x42\x59\xa3\x5c\x7c\xab\xef\xc2\x9d\x63\xa1\xff\x6d\x71\x50\xfb\x1a\x13\x2e\x10\xd1\xdc\xec\xec\x6c\xc1\x69\xbc\xd7\xc1\x17\x40\x65\xee\xd0\xe1\xc5\xb2\xe3\x66\x66\x66\xa4\x65\xd7\xae\x84\x4a\x0b\xd6\x7d\xe5\xa8\x50\xf3\xcf\x36\xe5\x08\x69\x7f\x39\x9e\xf1\x97\x53\xcc\x2c\x89\x48\x82\x60\x2c\x44\x8b\x53\x56\xaf\x54\x3a\xdc\x31\x41\x47\x15\x7a\xc7\xc3\xa5\xa9\xd5\x40\x39\x01\xc0\x79\x30\x93\x84\x63\x44\xda\x2c\x6d\x71\x71\x11\xdd\xdd\xdd\x7a\xc6\x5f\x9e\xcb\xf8\x8d\x78\x73\xde\x57\x3d\x7e\xc5\xaa\xc8\xfa\x67\xda\x67\xfd\xc9\xc0\x93\xb3\xcd\x85\xd7\xba\xba\xba\x72\x8e\x86\xd7\x03\x2f\xfb\xd1\xcb\x36\xaa\x9b\xfe\xfc\xf9\xf3\x52\xd7\x75\xe3\xd0\xa1\x43\x09\x22\xd2\xcb\x2a\x12\x4b\xdb\x7c\x77\x96\x06\x7c\xdf\x0f\x64\xe5\x8e\x60\x4a\x6e\xf3\x15\x64\x2b\x31\x84\xa1\x51\xa6\x10\x11\x73\xf9\xa8\x72\x5b\x2a\xb8\xcf\xc0\x34\x11\xcd\x81\x39\x35\x33\x33\xa3\xbf\xfe\xfa\xeb\x35\xed\xaf\x73\xf5\x4a\x53\x83\x9b\xd9\x29\xb9\x9b\xdd\xd9\xb7\x46\x96\x42\x9f\x12\x6c\xda\xd6\x55\x37\x92\x49\x3c\xc6\x87\x3d\x99\x37\x4b\x42\xc6\xad\xb3\x65\x89\x28\x73\xbd\x37\xf3\x0f\xbb\x17\xc2\x9f\x09\x1a\x4a\xc4\xe9\x41\xb3\x09\x44\x2c\x3f\xd8\x9a\xfa\x21\x83\x13\x60\xe8\x0e\xe7\x83\x84\xa9\xb5\xda\xe6\x07\x00\x34\x35\x35\x61\x60\x60\x80\x98\x10\xee\x49\xf9\x8f\xb6\xe7\x7c\x03\xd5\x58\x67\x4a\x58\x83\x14\x6a\x99\xd4\xb1\x9e\xec\xdf\xfa\x7c\xbe\xd4\xbd\x7b\xf7\x38\x9f\xcf\x5b\xa9\xdc\xa6\x84\xa5\x95\x0a\x8f\x78\x5a\x5b\xba\x0d\xec\xce\x63\xba\xb2\xb8\xbb\xbb\xbb\x18\x08\x04\x32\x20\x8a\x83\x68\xce\xf0\x8b\xbb\x85\xa8\x72\x2d\xdb\xaa\x5e\xc8\xb6\xaa\x67\xf3\x31\xe5\xbd\x52\x50\x5c\x60\x41\x1f\x82\x68\x12\xc0\xbc\x94\x32\x73\xf1\xe2\x45\xe3\xbd\xf7\xde\x73\x7e\x7c\xc5\xc5\xd8\x6a\x9e\xdd\xb2\x9b\x5c\xe9\xa8\xaf\xaf\x8f\x23\x91\x08\x56\x03\xe5\xa2\xdf\x10\x7d\xdd\x69\x6d\x7b\xad\xa2\x58\x91\x7d\xb3\xcd\xc5\xf1\x9f\x6c\x4f\xfe\x7b\xa9\xe0\x0e\x33\x67\x0a\x85\x82\xf4\xf9\x7c\x5c\xf4\x71\x39\x11\x2e\x19\xdb\x96\x83\xfb\x55\x86\xcf\x69\xf2\x49\x62\x5c\xda\x9a\xfe\x87\x6b\x5b\x32\x7f\xc9\xc0\xdd\x5c\x2e\x97\x3b\x7b\xf6\xac\x75\xac\x0d\x01\xb5\xc7\xb3\x30\x00\x8e\xc7\xe3\x7c\xe8\xd0\x21\xc1\xcc\x81\xa0\x21\x86\x07\x13\x81\xc3\x54\x4d\x6f\xb6\xcc\xf4\x72\x98\xe1\x41\x43\xb4\x4e\x74\xe6\x5e\xcb\xab\xe5\x39\xc3\x30\x4a\xa6\xf7\xa1\x9e\x89\x81\x06\x71\x9b\xca\x93\x4e\xa7\x79\x6c\x6c\x8c\xb3\xd9\xac\x0c\x85\x42\x85\x50\x28\x94\x06\x90\x20\xa2\x45\x66\x9e\x23\xa2\x79\x66\x9e\x03\xf0\x08\x40\x22\x9f\xcf\x67\x26\x27\x27\x8d\x1f\xff\xf8\xc7\x3c\x33\x33\x23\x99\x79\x23\x75\x61\x9d\x70\x06\xc0\x52\x4a\xda\xb6\x6d\x5b\x19\x80\x3e\xd3\x5a\x9c\x4d\xfb\xcb\xdc\x9c\x57\xbb\xb4\xb2\xf0\x33\x80\xac\x56\x4e\x5f\xdb\x92\x7d\xf7\xad\xe1\x95\x3f\xd3\x15\x79\x19\xc0\xd2\xd8\xd8\x58\xe9\xec\xd9\xb3\x18\x19\x19\x29\x0b\x21\x0a\xc9\x60\x79\x69\xa2\x33\x7f\x1f\x40\xc0\x27\x49\x2b\xaa\xb2\xf0\x30\x56\xbc\xff\xce\xf0\xea\x77\xc6\x7a\xb2\xdf\x62\xf0\x2d\x00\x89\x0b\x17\x2e\x58\x67\xc1\xda\xf5\x7b\x6d\x19\x90\xd9\x6c\xd6\x08\x85\x42\x99\x99\xe6\xe2\x07\x0c\x48\x22\x08\x80\xbd\xbf\xbb\x41\x0c\x85\xa1\xed\x58\x0a\x7d\xfa\x7c\xff\xea\xe5\x91\x91\x91\xdc\xa5\x4b\x97\x84\xe3\x43\x60\xc0\xc6\x26\x92\xe1\x91\x66\x23\x2c\x0f\xe3\xe3\xe3\xd2\xdc\xa6\x20\x87\x87\x87\x65\x57\x57\x57\xcd\xf6\xe8\x74\x3a\x8d\xeb\xd7\xaf\xaf\xc7\xf2\xeb\x41\x23\x57\xa2\x0d\x13\x13\x13\x72\x60\x60\xc0\x18\x1a\x1a\x8a\x4b\xe6\xab\x1f\xf6\x64\x93\xb7\xba\xb2\x6f\x84\x4a\x4a\xaf\x60\x88\x9c\x4f\x2e\x1a\x0a\xdf\x67\xe6\x29\x22\x5a\x58\x5d\x5d\x2d\xbc\xf7\xde\x7b\x12\x00\xce\x9f\x3f\x8f\x13\x27\x4e\xa4\x00\x8c\xaf\x06\x8d\xe4\x4f\x86\x93\xd7\xc1\x68\x25\x40\x65\x42\x12\xc0\x1c\x80\x59\x02\x25\xc6\xc7\xc7\x0d\xaf\x0d\x3f\x16\x6b\x75\x28\xb9\xa0\xf6\xf6\x76\xb4\xb5\xb5\x89\x82\x2a\xb5\x9d\x4b\xa1\xe7\x82\x25\x25\x66\xfa\x50\x6a\x78\x77\x55\xcb\x22\x44\x74\xa5\x6d\xac\x37\xfb\xaa\xa2\xf9\x56\x1f\x3d\x7a\x24\x53\xa9\x94\xc5\x46\xdd\x6c\xaa\x1e\x3b\xe5\x3a\x57\x37\xab\x75\x97\x51\xc3\x76\x13\x89\x84\x9c\x99\x99\xa1\x99\x99\x19\x58\x3f\x73\x43\x91\x4b\xea\xd8\x9d\xe4\xc6\x87\x5d\xf1\xa8\x93\x66\x4d\xde\xfb\xf7\xef\x23\x16\x8b\x95\x5b\x5a\x5a\x72\x44\x94\x60\xc2\x9c\xae\xf2\x9d\x82\x22\x6f\xb1\xc0\x6d\x00\x0f\x00\xc4\x17\x17\x17\x0b\xa7\x4f\x9f\x46\xb1\x58\x24\x00\xb4\xb4\xb4\x84\x54\x2a\x25\x7b\x7b\x7b\x8b\xaa\xaa\xa6\x98\x79\x81\x88\x66\x40\xb8\x87\xca\xa9\x99\x73\x52\xca\xd5\xb1\xb1\x31\xe3\xec\xd9\xb3\xee\x41\xc0\x80\xf7\x07\x5c\x60\xbb\xc3\x08\xc1\x48\x51\xd9\xd9\xbb\xaa\xed\xb2\x3c\x23\x56\x0f\x92\xa9\x1e\x93\x69\x97\x05\x0c\xd1\xf2\xa8\x49\xbf\x9a\x08\x96\xee\x84\x42\x21\x7d\x62\x62\xc2\x49\x7c\x0b\xdc\xcf\x5e\x71\x5e\x32\xb2\x51\x19\xec\x0a\x5b\xaf\x0e\xe7\x4f\x3a\xd2\x5b\xf7\xce\x4e\xf2\x82\xba\x76\x32\x33\xe3\xde\xbd\x7b\x48\xa5\x52\x32\x12\x89\x14\xc3\xe1\x70\x86\x99\x57\x89\x68\x85\x99\x57\x53\xa9\x54\xee\xd2\xa5\x4b\xe5\xf7\xdf\x7f\x1f\xf9\x7c\xde\x59\x37\x12\x89\x84\x1c\x1f\x1f\x87\x61\x18\x86\xcf\xe7\x2b\x84\xc3\xe1\x1c\x33\x67\xb2\xd9\x6c\x76\x7a\x7a\xba\xf4\xee\xbb\xef\xb2\xe9\x02\x75\x0f\x02\xd3\x87\x55\x0b\x02\x80\x0c\x85\x42\xe2\x97\x7e\xe9\x97\x04\x80\xee\xee\xb4\xff\x4b\xbf\x70\xa5\xf3\x4f\x6c\x2d\x8c\xaa\x4e\x07\x37\x0d\xa7\x5b\x0a\x6f\x7f\x7f\xff\xd2\xaf\x49\xf0\xdc\x77\xbf\xfb\x5d\xb9\xb2\xb2\x52\x8f\x25\x35\x62\xaf\x8d\xd2\xd5\x83\x8f\x9b\xff\xa7\x06\x3d\x3d\x3d\x02\xa8\xb0\xf7\x4c\x26\xf3\x53\xc3\x45\x31\xaf\xd6\x10\x65\x00\xa2\x54\x2a\xc9\x2d\x5b\xb6\xa0\xa9\xa9\x89\xf2\xbe\xb2\x18\x4a\x04\x4f\x86\x4b\x4a\x8b\xe5\x04\xb0\xce\x16\xa9\x98\x21\xa6\x7d\x44\x40\xb4\xa0\xf4\xcd\x36\x17\xcf\xa5\x83\xe5\x07\xc1\x60\xb0\x34\x35\x35\xe5\x64\x55\xc2\x71\xef\x0e\x73\xb3\x3c\xb8\xd2\x39\xd3\x0a\xac\x4d\x4f\x75\xe2\x9c\xa3\xcb\x1d\xef\x55\x9e\x3b\xac\xde\xd5\x09\x5e\xf9\x6d\xc8\x64\x32\x94\xc9\x64\xa4\xae\xeb\x76\xf8\x73\xcf\x3d\x27\x4e\x9e\x3c\xa9\x1c\x3e\x7c\x58\x7d\xe2\x89\x27\x94\xc7\x1f\x7f\x9c\x86\x87\x87\x81\x0a\x9b\xad\x57\x5f\xc3\x30\xb7\xf9\x61\xb3\x35\x45\x51\x30\x30\x30\xc0\x4c\xf0\xa9\x92\xfa\x06\x56\x02\x07\xac\x33\xd4\xac\xc4\x8e\x7f\x56\xdf\x8a\xa6\xa2\xda\x31\xde\x95\x7b\x3d\xd6\x1c\xcb\xcc\xcf\xcf\x73\x26\x93\x71\xcb\x39\x27\x51\x9d\x61\xeb\xc9\x21\x6c\xa0\x1c\x2f\xd3\x06\x75\xf2\x36\x32\x27\xe0\x7a\x76\xa7\x75\xb3\x67\x27\x2b\xae\xab\x03\xec\xda\xb5\x4b\x7c\xee\x73\x9f\x53\x5a\x5b\x5a\x83\x5d\x85\xc0\xf0\x48\x3c\xf4\xfc\xc0\x4a\xe0\x58\xb8\xa4\x34\x1b\x31\xdf\xea\x96\x6d\x5b\x8d\x81\x81\x01\x39\x33\x33\x03\x5d\xd7\xdd\xe5\x79\xb5\xc1\x0e\x5b\x63\x7e\x58\xbf\x78\x3c\xce\xfb\xf6\xed\x83\xa2\x28\x94\x0a\x18\xbc\x6f\x3e\xf2\x59\x95\xc9\x67\xf9\x5f\xed\x3e\xb4\x3c\x48\xa6\x23\xb6\xa9\xa8\x6e\x8d\x47\x4a\x63\x2b\x21\x63\x32\x16\x8b\xe9\xa6\xeb\xcb\x5d\xbe\xc5\xf2\x36\x6d\x72\xac\x93\x66\x23\x79\x36\x9a\x17\x0d\xe2\x36\x5d\xe7\xae\x5d\xbb\xc4\xf1\xe3\xc7\x55\xbf\x54\x3a\x7e\x66\xa2\xe5\x7f\x7e\x76\xb2\xe5\xcf\x06\x97\x83\xbf\xd0\xbf\x1a\x78\x71\xc7\x52\xf0\x97\x47\x17\xc3\x9f\x4e\x84\x8c\xc9\x52\x9b\x36\x3f\x30\x30\x50\x1a\x1b\x1b\xdb\xd4\x4c\x92\xc5\x5a\x2d\xa8\x61\x0d\xe6\xf7\x31\xb8\xa4\xb0\xd2\x54\x50\x47\xba\x32\xbe\x21\xe7\xbb\x46\x80\xb9\x58\xd9\xec\x51\x73\x54\x76\x64\xb4\x91\xf1\xee\xdc\x3f\x04\xa3\x91\x74\xb1\x58\x94\x8b\x8b\x8b\x6e\x6d\xd0\x6b\xc4\xad\xc7\xc2\x1a\xc1\x47\x65\x85\x9f\x14\x34\x2c\xb3\xb9\xb9\x59\x3c\xff\xfc\xf3\xc2\xa7\xa8\x2d\x9f\xbe\xdd\xf6\xc7\xa3\x8b\xa1\xdf\x20\x86\xe6\x9c\x84\xf0\x97\x45\xd7\xf6\x78\xf0\xc5\xd9\xe6\xe2\xfb\xa5\x98\x3a\x1f\x8d\x46\xcb\xf7\xef\xdf\x6f\x84\x67\x4d\x9d\xc2\xf5\xab\x09\x3f\x73\xe6\x8c\x64\xe6\x02\x33\x2f\x5c\xdb\x92\xfe\x81\x21\x58\xb7\x97\x3f\x5b\x5a\x0f\x5b\x7b\x14\xc8\xbc\x27\xb4\xe4\xd5\xdd\x47\x1e\x44\x7f\x13\x8c\xc8\x13\x4f\x3c\x21\xa2\xd1\xa8\xbb\x3e\xb7\xe6\xd7\x48\x29\xaa\x99\xae\xf1\xb8\x5f\xcf\xf9\xee\x4e\xe3\x2e\xdf\x2b\x4d\x43\xba\x6c\xb0\x2c\xfb\xf9\xc0\x81\x03\x50\x55\x35\xb0\x75\xc5\x7f\x62\xc7\x52\xf0\x9f\x93\x73\xa9\x3e\x9b\x7e\x6b\x26\x68\x52\xb4\x3e\x3d\xd5\xfc\xfb\xc4\x68\x1d\x1a\x1a\xda\x08\xfe\x76\xdd\x4e\x83\xdd\x8d\x10\x00\x88\x85\x85\x05\x49\x44\xc9\x44\xc8\xb8\x3c\xd1\x91\xbf\xe0\x58\x8b\x6f\xb2\x54\x36\x97\x08\xb2\x19\x56\x79\x49\x0e\x3c\x6c\xfa\x6a\x5f\xd2\x7f\x42\xd3\xb4\xc0\x73\xcf\x3d\x07\x45\x51\xdc\x86\xbf\xbb\x5e\x67\xfd\x5e\x1d\xed\xa5\x81\xd6\xeb\x38\x2b\xce\x1d\x5f\xef\x85\xf0\x4a\xe3\xc6\x69\xa3\x1d\xed\x74\xaa\x0b\xa0\x72\x26\x03\x80\xd0\x90\x75\xcc\x27\x01\x20\x36\x77\x82\x3b\xae\x60\x74\xa5\xb5\x23\xb1\xbc\x3a\xac\x28\x8a\x76\xe0\xc0\x01\x77\xd9\x75\xdb\xe1\xae\x18\x8e\x7b\x09\x40\x7e\xf0\xc1\x07\x60\xe6\x02\x83\x67\x2f\x6e\x4d\x7d\xc7\x10\xac\x13\xd8\xf4\xec\x03\x80\x39\xd1\x6c\x79\xfa\xcd\x37\x4c\x65\x0a\xfd\xcc\x44\xcb\x1f\x05\x75\xb1\xad\xad\xad\x4d\x7b\xea\xa9\xa7\xd6\x94\x8d\xc6\x9d\x53\x2f\x5d\xa3\xd9\x11\x77\x3b\xdc\xf1\xff\x18\xbf\x35\xb8\xf9\xfd\x7e\x41\x44\x81\x50\x49\xe9\xb5\x78\x61\xed\xac\x48\x75\x96\x44\x30\xb4\x60\x49\xf4\x02\x50\x43\xa1\x50\xbd\xf6\xad\xf9\x79\xbd\x95\xce\xd1\x20\xe6\xe6\xe6\xe4\xfc\xfc\xbc\x41\x44\x89\x95\x90\x71\x69\xac\x27\xfb\x76\x05\x19\x86\x3d\xd3\x4c\xe6\xf8\x34\x57\xd8\x59\x8b\xd6\x9a\xf3\xea\xe8\xf3\x77\x5a\xff\x50\x61\x6a\xdf\xb5\x6b\x97\x35\x1b\xee\xae\xcf\x4d\x74\xaf\x37\xbf\xae\x11\xee\x2a\x6f\xa3\xa3\xa9\x51\xda\xcd\x3c\x37\xaa\x07\x00\x84\xf3\x98\xcf\x94\xdf\x48\x58\x52\xcd\x3e\xa4\x18\xb0\x17\x4c\x03\x40\x49\xe1\x42\x2a\x60\xa4\x80\xca\xc7\xd9\x1a\xe0\x58\xd3\x26\x2f\x16\xe3\x24\x9c\x04\x20\x5c\xa3\xf2\xaf\xb2\x9a\x4c\x5a\x13\xa7\xce\x93\x0e\xad\x83\x06\x6d\xb6\x0b\xc2\xe0\x72\xe0\x73\x27\xee\x35\xff\x2e\x81\x9a\x8f\x1f\x3f\x2e\xcc\x33\x0a\xdc\xf5\x35\x92\x85\x8d\xd2\xd6\x63\x91\xf5\xca\xa8\x97\x66\xa3\x75\xaf\x87\x83\x3b\x0f\x52\xa9\x94\x75\x32\x66\x61\xb2\x3d\x7f\x9e\x05\xcb\xda\xef\xa3\x54\xb7\x28\x02\xc0\x4c\x73\x71\x2c\xab\xc9\x05\x00\x86\x63\x3f\x8d\xf3\xe7\x29\x2e\xea\x99\x1f\x70\x5e\x33\x99\x0c\xb7\xb7\xb7\x73\x4b\x4b\x8b\xa1\x2b\xb2\x5c\x54\x39\x34\xb4\x1c\x78\xdc\x62\xa7\x16\x54\x59\x6d\xed\x7d\x57\x5a\x3b\x5c\x52\x64\xfc\x51\xcc\xb8\x39\x38\x38\xa8\x27\x12\x09\x5e\x5d\x5d\xdd\x94\x7a\xbd\x89\x1f\xd6\x89\xa7\x4d\x96\xe3\x4e\x6f\xd9\x8e\x5e\xe5\x4a\x47\x3e\x00\x60\x66\xe6\xb6\xb6\x36\xb4\xb4\xb4\x50\xd6\x2f\x65\xb0\x24\x06\xba\x32\xda\x90\x45\xaf\x2a\xfd\x08\x05\x5f\x39\xf3\xda\xae\xe5\xff\x2b\xe7\x2b\x5f\x01\xb0\x7a\xfe\xfc\x79\x99\xcb\xe5\xe0\xaa\xcf\x49\x6e\x3b\xdc\xe9\xd9\xa9\x67\x12\x00\x00\x96\x97\x97\x69\x74\x74\xb4\x4c\x44\xc6\x72\xb8\x94\xee\x49\xfb\x0f\x34\x17\x94\x0e\xb7\xe9\x6b\x2d\x26\x60\x47\x98\x20\x88\xbe\x64\xe0\x64\x5e\x2b\xcf\x2d\x45\x8d\x09\xb3\x33\xb1\xba\xba\xfa\x49\x9b\x01\x1b\x81\xcd\xd6\xe9\x36\x9d\xea\xe5\x77\x86\x0b\xe7\x33\x33\xd3\xf0\xf0\xb0\x04\xa1\x3c\xd3\x52\x98\x03\x10\xeb\xc8\x6a\x7d\x0a\x5b\x8a\x0f\xf0\x28\xaa\x4f\xff\xc3\xee\xe5\xaf\xc5\x23\xc6\x8f\x89\x68\x36\x1e\x8f\x17\x1c\x5f\x61\x58\xb7\x1d\x4e\xcf\x4e\x3d\x4d\x91\x00\x70\xa1\x50\x20\x00\xdc\xdb\xdb\x5b\x62\x82\x31\x1f\xd3\xd3\xa3\x8b\xa1\x13\x95\x33\x47\x1d\x82\x9b\xab\x63\xb1\x1a\x06\x08\x26\x75\x60\x25\xf0\x33\x45\x9f\x5c\x5c\x8c\x1a\xb7\x07\x07\x07\xf5\x4c\x26\x83\x44\x22\x51\xcf\x8e\xac\xe7\xe5\x71\xdf\xc3\x95\xcf\x6d\x3f\xba\x5f\x4c\xaf\xb4\x8d\xe2\xe4\x3a\x69\xe1\xaa\x87\x5d\x69\x29\x99\x4c\x22\x16\x8b\xc9\x96\x96\x96\x82\x24\xa4\x67\x9b\xf5\x89\x9b\xdd\xd9\x9b\x73\x31\x7d\xf6\x7e\x5b\xe1\xd6\xa5\xad\xa9\x1f\x5d\xec\x4f\xff\x97\xb4\xbf\x7c\x8e\x88\xa6\xa4\x94\x99\xd3\xa7\x4f\xb3\x7b\xed\x6a\xa3\x36\x2a\x58\xeb\xfe\x81\xc7\x33\x01\xc0\xd2\xd2\x12\xb6\x6f\xdf\x5e\x0e\x04\x02\x7a\x51\x2d\x17\x73\x9a\xd4\x86\x96\x83\x8f\xdb\x33\xe1\x56\x4a\xcb\x49\x60\xad\xcd\x37\xef\x05\x2a\x9d\x09\x20\x3f\xdf\x52\xba\xb9\x6d\x70\x50\x27\x22\xb9\xb0\xb0\x00\x66\x7b\xbd\x98\x1b\x0f\xa0\xca\xba\xbc\xf0\x72\xe7\xf3\x72\x63\x39\xd3\xbb\xb5\x60\x77\x3e\x27\x3b\xf5\x2a\x17\x54\x51\x35\x25\x00\x68\x9a\x26\xca\xe5\x32\xbb\xd2\x3b\xeb\x95\x00\xf8\xc1\x83\x07\xd4\xd6\xd6\x56\x6e\x69\x69\xc9\x83\xb0\x5c\x52\x79\x7a\x25\x64\x7c\xb8\x14\xd6\x2f\x66\x03\xf2\x03\x26\xdc\x26\xa2\x87\xe5\x72\x39\xf3\xe6\x9b\x6f\x5a\xdb\xf8\xbd\x70\x72\xbe\x60\xc0\x3a\x32\xd2\x53\x1e\x30\x33\x2f\x2f\x2f\xd3\xf6\xed\xdb\x0d\x12\x42\x8f\x47\x8c\x95\x48\x51\xd9\xd6\x99\xf1\xf5\xdb\x8e\x01\xeb\x5f\xc5\xc8\x74\xbc\xb3\xe6\x48\x65\x52\xfa\x56\xfd\xcf\x44\x0b\x6a\xf3\x4c\x73\xe1\x4a\x47\x6f\x77\xa1\xab\xab\xab\x3c\x37\x37\x47\xa5\x52\xa9\x9e\xdc\x44\x9d\xf0\x8d\xc8\xc4\x46\xf2\xdf\x42\xcc\xaa\x97\x5c\xe9\xd6\xc8\xc3\xce\xce\x4e\x7a\xee\xb9\xe7\x70\xf2\xe4\x49\xe5\xf0\xa1\x27\xd4\xd1\x5d\xa3\xc8\xe7\xf3\x58\x5e\x5e\x76\xd2\xcb\x79\x65\x98\xc4\xbb\x7b\xf7\x2e\xeb\xba\x2e\x5b\x5b\x5b\x8b\x3e\x9f\x6f\x95\x88\xe2\x00\x96\x88\x68\x89\x99\x57\xe7\xe6\xe6\x8a\xa7\x4f\x9f\xe6\xb9\xb9\x39\xe9\xaa\x1f\xce\xb2\x5c\xf8\xdb\x32\xd2\x8b\x45\x58\xbd\xee\x2c\x40\x00\xa0\x4c\x26\x23\x85\x10\xe8\xe9\xe9\x29\x01\xd0\x67\x9b\x8b\xf1\xad\xc9\xc0\x63\x11\x5d\x6d\xb1\xbf\x9b\x6c\xa9\xd5\xe6\xca\xee\x8a\xeb\xce\xdc\x40\x53\xd9\x6a\x40\xed\x59\xdf\xa1\xfe\x95\xe0\xa1\xf9\x58\xf1\xaa\xda\x16\x5e\x1d\x1d\x1d\x2d\x3b\x08\xe2\xc5\x3e\xdc\xb8\xb9\x65\x87\x57\x98\x3b\xde\x2d\xef\x2c\x42\x58\x79\xbd\x5c\x89\x04\x80\x15\x45\x11\xfb\xf6\xed\xa3\x67\x9f\x7d\x56\x34\x45\x9a\xc2\x43\x89\xe0\x53\x27\xa6\x62\xbf\xf9\xa0\xbb\xf4\xc1\xd6\x81\xfe\xe2\xea\xea\x2a\x56\x56\x56\xe0\x2a\x67\x0d\xfb\x5f\x5c\x5c\xa4\x1b\x37\x6e\x94\x2f\x5f\xbe\x5c\xce\xe5\x72\xe5\x95\x95\x95\xd2\xed\xdb\xb7\xcb\xaf\xbf\xfe\x7a\x79\x62\x62\x82\xcc\x79\x4a\x67\xfd\x5e\x9d\xb7\x06\x2c\xd6\xea\x66\x09\x0d\xd9\xec\xc2\xc2\x02\xba\xbb\xbb\xcb\x4d\x4d\x4d\xba\x54\x90\x9f\x6e\x29\xc4\x87\xe3\xc1\x23\x9a\x21\x82\xeb\xe7\xae\x6e\x46\x8d\xe8\xca\xc0\xe8\x62\xf8\xe7\x8a\xaa\x5c\x4a\xc4\xe4\xfd\x81\x6d\xdb\x4a\x5d\x5d\x5d\xbc\xba\xba\x8a\x6c\x36\xeb\x24\x84\x45\x68\x2f\xb9\x05\x8f\x30\x2f\x79\xea\x56\x1c\x9c\xb2\xd3\xfd\xd6\x3b\x3b\x56\xf6\xf5\xf5\x89\x17\x5e\x78\x01\x3b\x76\xec\xd0\x34\x56\xda\x9f\xba\x1f\xfb\x1f\x4e\xde\x6d\xf9\xd3\xb6\x9c\xef\x24\x13\x72\x0f\x9b\xf5\x6b\x5b\xb6\x6c\xd1\xef\xdf\xbf\xcf\xc5\x62\xb1\x5e\x47\xb2\xab\x0e\xc4\xe3\x71\x7a\xf8\xf0\xa1\x34\x5f\xde\x7a\xf5\xd7\x93\xf5\x4e\x10\xf5\x58\xab\x9b\x45\xac\x49\x33\x3b\x3b\x4b\x23\x23\x23\x25\x55\x55\x8b\x45\x55\x66\xe6\x63\x7a\x7a\x38\x1e\x7c\xc2\xc7\xc2\x67\xaf\xe7\xb4\xb7\x17\x38\xee\xc9\x52\x84\x2a\x22\x54\x95\x14\x19\x4c\x04\x5e\xee\x5d\xf5\xef\x5a\x8a\x94\x6e\xab\x6d\x91\xf4\x8e\x91\x1d\x46\x53\x53\x93\x73\x9b\xb5\x9b\x95\xac\x17\xe6\x36\x05\xbc\xde\x66\x37\xbb\x5d\x53\x4e\x67\x67\x27\x3d\xfb\xec\xb3\x74\xf0\xe0\x41\x35\x18\x08\x46\xb6\x26\xfd\xc7\x5e\xba\xd9\xf6\xb5\xe1\x78\xf0\x17\x05\x93\x46\x44\xd4\x9d\xf2\x3f\xb9\x10\x2d\x5e\xc9\x36\xe1\x41\x4f\x4f\x4f\xe9\xd6\xad\x5b\xf5\x58\xb8\xbb\x0e\xaf\x78\x77\xbe\x35\x2c\xb4\x5e\x99\xee\xd9\x0f\x77\x81\x5e\x9a\x21\x00\xc0\x30\x0c\x9a\x9d\x9d\xc5\xe8\xe8\x68\x49\x08\x51\xc8\x6a\xe5\xd5\xa5\x26\x3d\xbf\x3d\x1e\x7c\x5c\x30\x14\xb8\x74\x1d\x8b\xd5\x3a\xb7\xb0\x57\x16\x0f\x33\x88\x41\xd1\xa2\xba\x73\xf7\xa3\xf0\x97\xc3\xba\xd2\x94\x68\x2a\xdf\x8b\x76\xb5\x15\x0e\x1c\x3c\x20\xbb\xbb\xbb\x51\x28\x14\x28\x9d\x4e\xbb\xdf\xc4\x46\xac\xb4\x11\xdb\xad\xc7\xae\xed\xfb\xc1\xc1\x41\x71\xf2\xe4\x49\x3a\x74\xe8\x90\x1a\x6d\x8a\x86\xda\x72\xbe\x91\x67\x27\x5b\xfe\xcd\xb1\xfb\xb1\x7f\x1b\xd6\x95\x6d\x36\x65\x00\x08\x86\xaf\x6f\x35\x70\xf8\x4e\x47\xfe\xb4\xda\x14\x58\x09\x06\x83\x72\x7a\x7a\xda\x5d\xd7\x46\xea\xf7\x1a\x71\x1b\xc5\xdb\x36\x3f\xea\xa9\xb8\xce\x42\xd7\x0c\xfb\x7c\x3e\x8f\xd5\xd5\x55\x1e\x18\x18\x28\x0a\x21\x72\xc9\x80\x91\x88\x47\x4a\xf9\xc1\xe5\xe0\x7e\x1f\x0b\xd5\xc6\xcb\xb9\xf1\xc7\x1a\xa1\xd6\xb3\xc3\xd7\x28\x98\x02\xdd\x19\xed\xd8\x9e\x85\xc8\x17\x83\x25\xd1\xb4\x1a\x2a\xcf\x05\x5a\x9b\x0a\x3b\x46\x76\xc8\x1d\x3b\x76\xc8\x40\x20\x40\x86\x61\x90\xa9\x96\xc3\x83\x00\xf5\xcc\x18\x67\x5a\x37\x5b\x26\x53\x0b\xe5\xa7\x9e\x7a\x8a\x4e\x9d\x3a\x45\x3b\x77\xee\x54\x9b\x22\x4d\x91\x8e\xac\xb6\xeb\xf8\xbd\xd8\xbf\x7e\xf6\x6e\xeb\x9f\x74\x64\xb4\xa3\x82\x49\x75\xf0\x13\xfb\xea\x2f\x8b\x96\xb6\xac\xda\x7f\xa7\x23\xf7\x66\x7b\x67\x47\x7e\x75\x75\x95\x13\x89\x04\x3b\x70\x72\xca\x3d\x77\x67\x58\x61\x4e\xee\xe7\xa6\xbf\x33\x9d\x53\xcc\xd8\xe5\x90\x23\xd1\x47\x86\x3d\x7b\xf6\xe0\xd8\xb1\x63\x2a\x80\x56\x02\x8d\x6e\x59\xf5\xff\xec\x4b\x37\xdb\xbe\x1a\xd2\x95\x88\x5b\x5e\x3a\xbf\x14\xe2\x44\xb5\xe6\x3c\x1f\x33\x9d\x21\x38\x71\xaf\xad\xf0\xea\xcd\xae\xec\xb7\x67\x9b\x8b\x57\x0d\xc1\x19\x06\x1b\xb9\x5c\xce\x98\x9f\x9f\xc7\xfc\xfc\x3c\x56\x57\x57\xf1\xe8\xd1\x23\x48\x29\xad\x05\xbb\xf5\xfc\xb2\x12\x80\xe5\xf7\x94\x5d\x5d\x5d\xa2\xa3\xa3\x03\x3d\x3d\x3d\xe8\xed\xed\xad\x7c\x5d\x95\xa1\x69\x65\x8a\x0e\x24\x02\x47\xf6\x2e\x44\x7e\xa5\x2f\xe9\x7f\x41\x30\x45\xbc\xec\x21\x77\x5b\x18\x8c\xf7\x07\x52\xff\xcb\xf9\x81\xd4\x9f\x96\x8c\x52\xea\x6f\xfe\xe6\x6f\xdc\xdf\x5b\x6e\xe4\x2f\xf6\x8a\xf3\x9a\x54\xf0\xb2\xf9\x2b\xed\xaa\x53\xf0\x46\xa0\xa6\x92\x23\x47\x8e\x88\xc7\x1e\x7b\x4c\x45\xe5\xeb\xe0\x23\xed\x39\xed\xf9\x97\x3e\x6c\xfb\x17\x2d\x79\xb5\x13\x16\x37\xb5\xb4\x58\x53\xb9\xb5\x4f\xe2\x20\x73\xcd\xac\xd5\xab\xae\x33\xef\x98\x20\x33\xfe\xf2\xf8\xfd\xd6\xc2\x6b\xf7\x5a\xf3\x6f\xcc\x47\xf5\xb1\xbc\x4f\xa6\x18\x6c\xa0\x72\x2e\x9b\xcc\x64\x32\xd0\x75\x5d\x26\x93\x49\xe7\xb1\x9d\x36\x84\x42\x21\x34\x35\x35\x21\x10\x08\x88\x70\x38\x0c\xf3\x54\x46\x95\x40\x5a\x58\x17\xcd\xbd\xab\xfe\x03\x43\xcb\xc1\x4f\x0f\xac\x04\x5e\x08\x96\xc4\x90\xbd\x1b\xca\x12\x11\x8e\x0e\x23\xc0\xdc\xc2\x5e\x79\x13\xad\xa1\x51\x16\x9c\x7b\x75\xef\xd2\xaf\x4c\xb7\x16\x5f\x5f\x58\x58\xc8\xbd\xfa\xea\xab\xf5\xe6\x59\x3f\x71\x70\x77\xa4\x93\xf5\xb8\x7b\xdd\x19\xef\x05\xe2\xf1\xc7\x1f\xc7\xe3\x8f\x3f\x2e\x84\x10\xcd\xcc\x3c\x14\xd1\x95\x13\x2f\xdc\x6e\xfd\xcd\xfe\x95\xc0\x88\xb5\xe7\xaf\x22\x2b\x2b\x19\xd8\xec\xd5\x8a\x1e\x5b\xdd\xdc\x69\x1f\xbb\x02\xaa\x12\xd2\x36\x49\x59\xea\x0a\x2f\xae\x84\x4a\xd7\xe7\xa3\xfa\xe5\x78\xb8\xf4\xe1\x72\xb8\x74\x27\xed\x2f\x2f\xe6\x7d\xe5\x1c\x13\x0c\xf6\x38\x74\x8f\x00\x55\x30\xd4\x40\x49\x09\x45\x0b\x4a\x77\x6b\xce\x37\xd2\x99\xf1\xed\xeb\x4e\xf9\x1f\x6f\xc9\xa9\xfb\x7d\x92\x5a\x09\x24\xaa\x2f\x17\x6c\x8e\xc1\x26\xb2\xd5\xbd\x8e\x96\x59\x55\x99\xce\xab\x9e\x2f\x40\x48\xf9\x8d\xa9\xbf\x3e\xb8\xf8\xcf\xd2\x9a\x71\xe7\x8d\x37\xde\x30\xee\xdf\xbf\xef\x44\xc3\x4d\xdb\x7a\x23\x11\x1e\xe1\x5e\xf1\x76\xfe\x35\xe7\xec\xd4\x29\xc0\x6b\x36\xc0\x5d\xb8\xbc\x7c\xf9\xb2\x48\x26\x93\xf2\xd9\x67\x9f\x4d\x0a\x21\xee\x64\xfd\xb2\xf0\xea\xde\x78\xfc\xc9\xfb\xb1\x5f\x3b\x34\xdb\xf4\x8c\x30\x09\x05\x50\xf5\x73\xbc\x0e\x09\x56\xfb\x69\x5f\x33\xce\xfe\xa8\x28\x59\xf7\xc2\x5f\x16\xdd\x5d\x29\xad\xbb\x2b\xe5\x7f\xc1\x1c\x2e\x52\x12\x72\x86\xe0\x44\x51\x95\xc9\x82\x2a\x53\x65\xc1\x3a\x13\x0c\x62\xa8\xaa\x24\xcd\x6f\x88\xa8\xdf\x10\xad\xaa\xa4\x66\xc1\x08\x01\x10\x64\xee\xa1\xb4\x0f\x4f\xa4\xea\xb8\xf3\xd2\x10\x6c\xa1\x64\x6d\x75\xe3\x8a\xb2\x66\x49\x2c\x26\x86\xae\x48\xf8\x4b\xa2\x3b\xe3\xa7\xa9\xb6\xb6\x36\x67\x47\x7a\x0d\x00\xaf\xce\x5c\xcf\x65\xea\x09\x6b\x4e\xbe\xf2\xa8\xb4\xee\x08\xf4\x88\x93\x53\x53\x53\xc8\xe7\xf3\x78\xee\xb9\xe7\x32\xc1\x60\x70\xaa\x2c\x90\x3b\x37\xb8\x9a\x7c\xd8\x5c\xbc\xf3\xa9\x89\x96\x2f\x47\x0b\x4a\x2b\x00\x7b\xf4\xd9\x7d\xe6\xf2\x02\xd9\xcb\x80\x1c\xe1\xf6\x91\x2c\x36\x1b\xae\xa4\x05\x43\x28\x8c\x88\x22\x29\xe2\x2f\x8b\xfe\x68\x11\x35\x1d\x50\xc9\xc3\x55\x56\x80\xda\x38\x72\x86\x13\xad\x61\x53\x8e\x69\xd7\xea\x7f\x1b\x95\x4a\xfa\xb2\x60\x39\xd6\x9d\x7d\xff\xec\x50\xf2\xeb\x45\x45\xde\x27\x90\x34\xa7\xaf\x1a\x4d\x9c\xbb\xc3\xdc\x50\x2f\xef\x9a\x72\xdc\xeb\x5a\x1b\x69\x58\x6e\xa8\x1b\x97\xc9\x64\xf8\xfa\xf5\xeb\xb2\xbf\xbf\xdf\x08\x87\xc3\x59\x06\xaf\xac\x86\xca\x73\xb7\x3b\x73\x13\x01\x43\xb4\xb6\x65\x7d\x3d\xa2\x66\x5d\xa5\x09\xe4\xb8\x38\x3b\xa2\x91\x83\xc1\x1d\x66\x8d\xb0\xb5\x9b\x54\xec\x41\x5d\x13\x65\xcb\x6b\x77\xb9\x0e\x0d\xcc\x99\xc7\x21\x16\xc8\x7c\x4e\x86\x4a\xf1\xd7\x77\x26\xbe\x75\xb5\x2f\xf3\x97\x65\x05\x57\x89\x68\x21\x97\xcb\xe5\xbd\xbe\x06\x80\xf5\x3d\x50\x1f\x29\xbd\x65\x7e\x38\x3d\x1b\x6e\x8f\x48\x3d\xd3\xa4\xde\xd4\x97\xfd\x9b\x98\x98\x80\xdf\xef\x2f\x77\x74\x74\x14\x00\x24\x4b\x0a\x2f\xdd\x6b\x2b\xdc\x99\x8f\x15\x97\xdb\x33\xbe\x2d\xa1\x92\x68\xaa\x79\xff\x3d\x09\xea\x0a\x77\xc7\x7b\x76\x32\xd5\xed\x6c\x2b\xda\x2a\x67\x4d\x32\x3b\x8e\xd6\xd6\xe3\x22\x67\x49\x91\xfa\x95\xbe\xf4\xbb\xaf\xef\x4c\x7c\x2d\x1e\x2e\x9d\x26\xa2\x31\x66\x5e\x48\xa5\x52\xb9\xd7\x5e\x7b\x0d\xe6\x8c\x91\x9b\x46\x70\x94\x54\x6f\x46\xc3\xed\x26\x5d\x8f\xfe\xf8\x44\xcc\x8f\xf5\x60\x68\x68\x08\xc7\x8f\x1f\x17\xc1\x60\x50\x03\xd0\x0a\xa0\x5f\x91\xd8\xbd\x7b\x21\xfc\xd9\xc3\xd3\xd1\x4f\x35\x15\x95\x66\x27\xb3\xac\xe2\xbe\x01\xa5\xba\x4e\xb2\xda\x7e\xaf\x1a\x0a\xd5\x70\xe7\xc9\x75\x5e\xb9\x01\xaf\x37\x87\xc1\x90\x04\x39\xd9\x9e\x1f\x7b\x6f\xdb\xea\xab\xc9\xa0\x71\x1e\x84\x49\x00\x8b\xcc\x9c\x99\x9c\x9c\x34\xce\x9e\x3d\x5b\xef\x7b\x99\x3f\x35\xf8\x38\xe6\xc7\xa6\xe1\xd4\xa9\x53\x62\x64\x64\x44\x25\xa2\x10\x33\xb7\x13\xd1\x36\xbf\x41\x7b\xf7\xcc\x87\x9f\x3f\xf0\xb0\xe9\x58\x53\x51\x69\xb6\xf7\xfd\x9b\x1a\x22\x08\xa6\x66\xe8\xb4\x4a\xac\x2d\x7e\x96\x02\x64\xf1\x3f\xd8\xec\xd0\xd6\x2e\x6d\x3b\xa2\xda\x64\xab\x23\xed\x21\x69\x7e\xf3\xd8\x3a\xc4\xae\xaa\xb5\x72\x4d\xbd\x65\x01\x79\xaf\x2d\x3f\x7e\x69\x6b\xfa\xb5\x47\x4d\xfa\x79\x06\x4f\x12\xd1\x9c\xf9\xe1\x1a\xfd\xcc\x99\x33\x4e\xb7\xe2\x46\xa1\x91\x25\xb0\x61\xf0\xea\x48\xf7\x5c\x97\x5b\x1d\xae\x17\xd7\x48\xb5\xb6\xc3\xb6\x6c\xd9\x22\x8e\x1c\x39\x82\x8e\x8e\x0e\x0d\x40\x08\x40\x27\x80\x7e\xb5\x4c\x23\x3b\x96\x82\x4f\x3f\x36\x17\x39\xd6\x99\xd6\x7a\x09\x10\x55\x5a\x57\xf9\x5a\xed\xf8\x20\x47\x28\x1c\xb2\x6c\xed\x99\xe6\x56\x63\xd9\xd1\x91\x6b\x1b\xef\xb4\x15\xab\xf7\x79\x9f\xcc\x4d\x74\xe4\xc6\xae\xf5\x66\xde\x4c\x84\x8c\x2b\xa0\xca\x56\x37\x00\xc9\x72\xb9\x5c\xb8\x7e\xfd\xba\x74\x7d\x3f\x7a\xa3\xf0\x89\x74\xa2\x85\xf9\x66\x58\x6b\x23\xfb\x67\xe3\x95\x12\x61\xd7\xae\x5d\x38\x78\xf0\x20\xc2\xe1\xb0\x06\x20\xc2\xcc\xad\x00\xfa\x04\xa8\xbf\x33\xad\x3d\xb6\xeb\x51\xe8\xe8\xf6\xe5\xe0\xee\x48\x51\x89\x82\xc9\xd6\x1c\xed\xd1\x63\x6a\x2e\xd5\x05\x5f\xb5\x22\xcc\xee\x08\xdb\xcc\x31\x3b\xd0\xa9\xed\x38\x4f\xff\xa7\x6a\x37\x33\x18\x65\x01\x63\x3e\x5a\x9c\xbd\xd5\x99\xbb\x34\xd5\x9e\x3f\x5f\x50\xe5\x24\x08\xd3\xcc\xbc\x08\x20\x09\xa0\x30\x39\x39\x29\xaf\x5c\xb9\x82\x64\x32\xf9\x51\x49\xe1\x84\x7a\xe6\x86\x57\x38\xe0\x1a\x48\x9f\x14\x6b\xf5\x72\x25\x6d\xe8\x4d\xdb\xb3\x67\x8f\xd8\xbf\x7f\x3f\x9a\x9a\x9a\x54\x54\x46\x68\x14\x40\x27\x33\xf7\xaa\x4c\x7d\x3d\x29\xff\xbe\xc1\xe5\xc0\xfe\xad\xc9\xc0\x50\x6b\xce\xd7\xae\x48\xa8\xb4\xd6\x9f\x67\xda\x73\xb4\x46\x23\xb5\x2f\x84\x9a\xa3\x3a\x9d\x2c\xd3\x52\x93\x73\x3e\x99\x99\x8f\x16\x67\xef\xb7\x16\xc6\x1f\xb4\x16\xae\xa4\xfd\xe5\x29\x10\x66\x01\x2c\x00\x48\x00\xc8\x94\xcb\x65\x7d\x6a\x6a\x4a\x3a\x4e\x02\xd9\x2c\x7c\x62\xa3\xd0\x09\xeb\x75\x64\x23\xf6\x59\x2f\xec\x23\xc1\xf0\xf0\xb0\xd8\xbf\x7f\x3f\xda\xda\xda\x54\x22\xb2\xd8\x6e\x14\x40\x3b\x80\x76\x62\x74\x86\x8b\x4a\x5f\x67\xc6\xb7\xbd\x3b\xe5\x1f\x6a\xcf\xfa\xba\xdb\x72\xbe\xf6\x90\x2e\x22\x8a\x74\x9c\xf6\x0c\x97\xda\xc4\x56\x47\x56\x7b\x91\x09\x52\x57\x58\x4f\x05\x8c\x64\x3c\x5c\x5a\x7c\xd4\xa4\x4f\x2f\x34\x15\xa7\x12\x21\xe3\x5e\x49\xe1\x05\x06\x2f\x9a\xb3\xf7\x09\x66\xce\x10\x51\x41\xd7\x75\x63\x62\x62\x42\x3a\x76\x0c\x7f\xd4\x36\xff\x54\xf2\x39\x59\x6b\xbd\x0e\xa9\xe7\xb8\xb5\x60\x23\xce\x5d\xaf\x6b\xbd\xb2\xe5\x53\x4f\x3d\x25\x06\x07\x07\x11\x89\x44\x54\x00\x1a\x33\x07\x4c\x05\x29\x4a\x44\x51\x54\xfc\xb9\x51\x30\xa2\x5a\x99\x9a\xc3\xba\xd2\x16\x29\x2a\xad\x81\x92\x88\x04\x0c\x11\xd2\xca\x22\xa0\x48\x52\x89\x21\x24\xb1\x51\x16\x6c\x14\x54\x59\x28\xfa\x38\x93\xd5\xca\xc9\xac\x56\x4e\xe4\xb4\xf2\x72\x99\x90\x02\x21\x05\x20\xc9\xcc\x29\x00\x49\xf3\x0c\xf1\x1c\x11\xe9\x86\x61\x18\x0b\x0b\x0b\x72\x62\x62\xc2\xfa\xee\xe3\x7a\x9c\xa7\x51\x5b\xbd\xd2\xbb\xa1\x11\x1d\x1b\xa6\x25\xd4\x56\xea\x05\x5e\x4a\x4b\xa3\xb8\x46\x9e\xfc\x46\x65\xaf\x89\xeb\xea\xea\x12\xc3\xc3\xc3\xd8\xb2\x65\x0b\x62\xb1\x98\xfd\x25\x3a\x00\x9a\x39\x6a\x03\x00\x02\x66\x47\x6b\xcc\x6c\x85\x0b\xd4\x7e\x76\x58\xa2\xe2\x7f\xd5\xcd\x5f\x81\x99\x0b\x44\x54\x70\x84\xe9\x00\x0c\x5d\xd7\xe5\xfc\xfc\xbc\x7c\xf0\xe0\x01\xee\xdd\xbb\xe7\xe9\x80\x5f\x07\x3e\x96\xfe\xf0\x51\xeb\x71\xb3\xd6\x86\x4e\xf1\x06\x71\x9b\x85\x8f\x54\xd6\xd0\xd0\x90\xe8\xe9\xe9\x41\x47\x47\x07\x22\x91\x88\x08\x06\x83\x40\x65\x6a\x4a\x98\xb3\x19\xd6\x27\x8a\x84\xbd\x8f\xd3\x9c\xb6\x32\x8b\x90\x00\x24\x55\xbe\x69\x2c\xcb\xe5\xb2\xcc\xe7\xf3\x72\x71\x71\x11\xf1\x78\x1c\xe6\xe9\x96\xff\x24\xa1\x5e\x47\x6e\xb4\x43\x1b\xb1\x16\xa0\xfe\xe8\xf4\x2a\x6b\xa3\xf5\x57\x12\x0a\x21\xa4\xf9\x69\xd3\xc1\xc1\x41\xd1\xde\xde\x0e\x61\x6e\x2e\x6b\x6a\x6a\x82\xb9\x01\x06\x00\x90\x48\x24\x50\x2a\x55\x0e\x07\x5e\x5d\x5d\x45\xb1\x58\x84\xf9\x9d\xcb\x8f\x02\x9f\xd4\x0b\xfd\x53\x51\x7a\xac\x82\x85\xeb\xde\xed\x95\xf7\x4a\xe3\x2e\x03\x58\x9b\xaf\x5e\x9c\x57\xbd\x8d\xd2\x7a\xd5\xd5\x28\x9f\x17\xfe\x9b\xc5\x75\x33\x65\x6c\xf4\xea\x05\x5e\xf4\x74\xc7\x6f\x38\xcf\x27\xc5\xdb\xff\x31\x64\xc4\x7f\x6b\xf8\x6f\xdd\xc6\x86\xf5\x6f\xe4\x0d\xda\xc8\xdb\xf5\x8f\x0d\x1b\xe1\x0c\xf5\xd2\x6e\xa6\xdc\x9f\x36\x7c\x64\xdc\x36\x32\xb1\xec\xa5\x89\x36\xca\xb3\x9e\x8c\xf4\x4a\xe7\x7c\x6e\xe4\xe2\xf3\xba\xf7\xc2\xb5\x51\x1d\x6e\x68\x64\x2a\x01\xde\xb8\xb8\xeb\x6a\xd4\x0e\xd4\x89\x73\xd7\xef\x05\x5e\xb8\x79\xa6\xfb\x7f\x00\xaf\xaa\xf6\x12\x47\x65\x14\xb8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x18\x1c\x34\x88\xd8\x3c\x00\x00") -func web_uiStaticAppleTouchIcon114x114PngBytes() ([]byte, error) { +func web_uiV1StaticAppleTouchIcon114x114PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticAppleTouchIcon114x114Png, - "web_ui/static/apple-touch-icon-114x114.png", + _web_uiV1StaticAppleTouchIcon114x114Png, + "web_ui/v1/static/apple-touch-icon-114x114.png", ) } -func web_uiStaticAppleTouchIcon114x114Png() (*asset, error) { - bytes, err := web_uiStaticAppleTouchIcon114x114PngBytes() +func web_uiV1StaticAppleTouchIcon114x114Png() (*asset, error) { + bytes, err := web_uiV1StaticAppleTouchIcon114x114PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/apple-touch-icon-114x114.png", size: 15576, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-114x114.png", size: 15576, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticAppleTouchIcon120x120Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x7b\x3f\x84\xc0\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x78\x00\x00\x00\x78\x08\x06\x00\x00\x00\x39\x64\x36\xd2\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xbd\x7b\x70\x1c\x47\x7a\x27\xf8\xfb\xb2\xaa\xab\xdf\x8d\x46\xa3\xf1\x06\x01\x10\x04\x01\xf0\x29\xbe\x44\x91\x1c\x8e\x44\x51\x8f\x95\x34\x1c\x4b\x96\x3c\x1e\xdb\xe7\x47\x78\xbc\x7b\x8e\xbb\x3d\x3b\x6e\xcf\xbb\xe1\x70\x5c\x38\x36\x1c\x0e\xc7\x86\xcf\xe1\xb8\xf0\xeb\x6e\x7c\xb3\xde\x59\xef\x7a\x66\x35\xb6\xc7\x33\x9a\xd1\xcb\x96\x34\xa2\x24\x4a\xe4\x90\xa2\xf8\x82\x40\x12\x04\x41\x10\x04\xf1\x6c\x00\xdd\x8d\x7e\x54\x57\x57\x65\xde\x1f\x5d\xd5\x5d\x5d\xa8\x6e\x00\x24\x35\xe3\xd9\xd8\x44\x34\xaa\x2a\x2b\x7f\x99\x59\x99\xf5\x3d\xf2\xfb\x32\xb3\x80\xff\x11\xfe\xbb\x0f\xcc\x71\xac\x17\xc7\x1c\x71\xce\x34\x6b\xc5\xaf\x37\xad\x5b\xb9\xb5\xc2\x83\xc2\xba\x3d\xdf\x4f\x3c\x96\x6c\x11\xdc\x3c\xe7\x2e\x09\x39\xdc\x0b\x75\xc3\xb8\x9d\xd7\xab\xb4\x3d\x0f\xb7\x32\x6b\x95\x7d\xaf\xd8\x7a\xf9\xd5\x4a\xb7\x9e\xba\xfc\x73\xc5\xd6\x0d\x6b\x51\xf5\x7a\xee\xd5\xca\xaf\x16\x7e\xbd\x6f\xf2\xfd\x62\x9d\x6f\x7f\xad\xe3\x4f\x34\x56\xae\x71\xc3\xde\xfb\xd6\x1b\xb4\x16\x35\xd6\x6a\x5c\xe7\x9b\xe4\x56\x96\x5b\xbc\x13\x53\x8b\x1a\xef\x05\xcb\xab\x93\xd7\xc4\xbb\x51\xc3\x4f\x22\xf6\xc7\x16\x36\xf2\xa2\xac\x75\xaf\xee\xfd\x48\x24\xc2\x00\x40\x92\xa4\xf5\x70\x91\x8d\x94\xf9\xcf\x1a\x6b\xc9\xe0\xb5\xe4\x2f\x1c\xf7\xe1\x12\xe7\x26\x73\x9d\x32\xa4\xd6\xfd\x7a\xa1\xae\xfc\x6f\x6a\x6a\x42\x3c\x1e\x87\xcf\xe7\x43\x73\x73\x33\x88\x08\xad\xad\xad\xe5\x32\xbc\x5e\x2f\x18\x63\x20\x22\x00\x80\xaa\xaa\xe0\x9c\x03\x00\xd7\x34\x0d\x4b\x4b\x4b\xc8\xe7\xf3\x48\xa5\x52\x58\x5e\x5e\x46\x3a\x9d\xc6\xca\xca\xca\xbd\xd4\x67\x3d\xe1\x47\x8e\xa5\x3a\xf7\x6a\x75\xcc\x83\x0e\x1b\xca\xbf\xb7\xb7\x97\x75\x74\x74\xa0\xa9\xa9\x09\xcd\xcd\xcd\x4c\x92\x24\xa0\x24\x6a\x18\x81\x18\x01\x32\x09\xc8\x32\x27\xc5\xa7\x33\x9f\x6c\x90\xc2\x04\xc9\x24\xc0\x04\x41\x37\x98\xd0\x0b\x32\x57\x35\x49\x68\x9c\x84\xc6\x09\x3a\x08\x5c\x08\xa1\x03\xe0\x42\x08\x5e\x2c\x16\xf9\xf4\xf4\x34\x12\x89\x04\x6e\xdf\xbe\x8d\xa5\xa5\xa5\x5a\x2f\xf6\x7a\x5f\xe2\x1f\x1b\x96\xdc\x22\x6d\xd7\x56\xa8\x95\x29\x5c\xd2\xb8\xc5\x39\xa9\xbc\x96\x8c\x71\xad\xe8\xae\x5d\xbb\x58\x4f\x4f\x0f\x5a\x5b\x5b\x99\xc9\x62\x65\xc6\xa1\x04\x8a\x52\x34\x96\x95\xbb\x9b\x72\x9e\xa1\x58\xce\x33\x18\x51\xe5\xde\xb0\x2a\x75\x04\x34\xa9\x45\x16\x14\x61\x1c\x01\x00\x8c\x4c\xc5\x44\x98\xba\x84\x20\x68\x9c\x44\x4e\x93\xc5\x52\x46\x31\xe6\x57\x7c\xfa\x64\xd2\xa7\x4f\x2c\x05\x8b\x57\x13\xc1\xe2\x68\xca\xa7\x4f\x17\x64\x91\x03\x41\x03\xc0\xf3\xf9\xbc\x7e\xe7\xce\x1d\xdc\xbd\x7b\x17\x37\x6e\xdc\x58\x6b\x44\x51\x2f\xfe\x47\x8e\xad\x47\xc1\xf6\xf0\x59\x53\xf1\xaa\xb0\x75\xeb\x56\xd6\xdf\xdf\x8f\xce\xce\x4e\x46\x44\x32\x81\x94\x90\x26\xc5\x3a\x52\xde\xdd\xdd\xcb\xde\xc7\xda\xd2\xca\xc1\x06\x55\x1e\x92\x39\xc5\x20\xc0\x2c\x16\x2c\x04\x40\x04\x40\x00\x02\x02\x00\xa1\x74\x29\x00\xa0\xcc\xaa\x2b\x09\x2b\x41\x94\x52\x69\x05\x99\x4f\x2d\x06\xf5\xe1\xbb\x0d\x85\x0f\xef\x44\xd5\x8f\xe6\xc2\xda\x58\x51\x16\x19\x00\x5a\x3e\x9f\xe7\x13\x13\x13\xfc\xfa\xf5\xeb\x98\x9f\x9f\xaf\x27\xb2\x36\x1a\x3e\x13\xac\xb3\x83\xeb\xc9\xd4\x8d\xa4\xb1\xdf\xdb\x50\x9e\x07\x0f\x1e\x64\xdb\xb6\x6d\x83\xd7\xeb\x95\x85\x10\xbe\x90\x26\xc5\xb7\x24\x02\xc7\xb6\x26\xfc\x5f\x6c\x5d\x51\x8e\x78\x0c\x8a\xa3\xc4\x8a\x4b\x41\xa0\xd4\x8d\x64\x5d\x10\x40\xb6\x53\x81\xf2\x75\xd5\x11\xd5\xe7\x42\x88\xd2\xab\x60\x4b\x63\x75\x78\x5e\xe1\xe3\x93\x51\xf5\x07\xa3\x2d\xb9\xef\x4f\x46\xd5\x4f\x0c\x09\x19\x21\x84\xbe\xb0\xb0\xa0\x5f\xbb\x76\x0d\xa3\xa3\xa3\x65\xb9\x8e\xda\xfa\x8b\xdb\x35\x1c\x69\x1f\x38\x76\xbd\x14\xfc\x99\x86\x68\x34\xca\xf6\xef\xdf\x8f\xbe\xbe\x3e\x46\x44\xb2\xc4\x11\xe9\x5e\xf6\xed\xdb\x3e\x1b\xfc\xf9\xde\x25\xdf\x73\x32\xa7\x38\x99\xbd\x25\x4a\x84\x68\x76\xa8\x49\x9b\xc2\xa4\x4c\xf3\x5e\x55\xa7\x11\xca\x3d\x2d\x04\x2a\x9d\xb8\x3a\x71\x39\xbf\x0a\x65\xdb\xd2\x08\x01\x41\xe0\x59\x85\x8f\x5e\x6f\xc9\xfe\xfd\x48\x5b\xf6\xef\x16\x03\xfa\x24\x08\xb9\x4c\x26\xa3\x0f\x0f\x0f\xe3\xda\xb5\x6b\xd0\x34\x6d\xa3\x54\x78\x3f\xba\xce\x9a\x58\x42\x6d\x0a\xab\x37\x6e\xdc\x48\xe1\x35\x83\xdf\xef\x67\x87\x0f\x1f\xc6\x96\x2d\x5b\x18\x00\xc5\xa7\xb3\xd8\xb6\xf9\xe0\x33\xbb\xa6\x43\xbf\x16\xcb\xc9\x07\x09\xc4\x4a\x94\x85\x2a\x66\x5b\xee\x14\x1b\x2b\x26\x22\xb3\x43\xa9\xcc\x7e\xeb\x62\x9d\xad\x60\xb1\x6c\xe1\x20\xf1\x32\x4b\xaf\x86\x18\x4c\x64\x26\x1b\xd5\x57\x2f\x74\x66\xfe\x6a\x2a\xaa\x7e\xc2\x19\x72\x2b\x2b\x2b\xda\x85\x0b\x17\x70\xe3\xc6\x0d\x18\x86\x01\xb8\x53\xe1\x7a\xe5\xe8\x03\xc1\xfe\xd8\x28\x78\xdf\xbe\x7d\x6c\xf7\xee\xdd\x4c\x51\x14\xc5\xa3\x53\x74\xd7\x4c\xe8\x85\x3d\x77\x43\xff\x4b\xb8\x20\xed\x24\x1b\x65\x56\x08\x8e\xca\x72\x14\xa8\xc4\x5b\xd4\x2b\x4a\xe4\x89\xf5\x61\x09\x64\xa3\x7c\x61\xf2\x79\xe7\x79\x25\x1f\xab\xe3\x57\x63\x39\x84\x36\xdd\xa0\xfd\xd3\xd9\xee\xf4\x9f\x4d\x36\xaa\x1f\x83\x90\x49\xa7\xd3\xfa\xa9\x53\xa7\x30\x35\x35\xb5\x1e\xc2\xf8\x4c\xe5\xb6\x5b\x07\xbb\x69\xc9\x0f\x54\xc1\x7a\xf1\xc5\x17\x59\x3c\x1e\x57\x48\x20\x34\x30\x1f\x38\x7e\x78\xa2\xe1\x77\x1a\x54\x69\x8f\xc5\x86\x2d\x39\x2a\xca\x54\x65\x29\x4e\x02\xa2\x8a\xb8\x4c\xd6\x09\x8b\xf5\xae\x03\x5b\xc5\xce\x2b\x9d\x66\xc9\x60\x81\x0a\xae\xdc\x48\x56\x7e\xa8\x8d\x15\x04\x6d\x22\xa6\xfe\xc3\x47\x9b\x53\x7f\x9c\x08\x16\x47\x05\x44\x6e\x6c\x6c\x8c\xbf\xfb\xee\xbb\x3f\x76\x2d\x7a\x3d\x06\x07\xb7\x0e\xaf\x55\xb0\xeb\x35\x63\x0c\x47\x8e\x1c\xc1\xf6\xed\xdb\x19\x04\x02\xcd\x19\xcf\xd0\x63\x37\xa3\xbf\xdb\x99\xf2\x3e\x47\xa0\xea\xb2\xdd\x38\x69\x0d\xee\xba\x2a\x3c\x00\xec\x7a\x93\xbb\x61\x75\x26\xd2\x97\x3a\x32\x7f\x7a\xb6\x3b\xfd\xb5\x82\x87\x27\x72\xb9\x9c\xfa\xe1\x87\x1f\xe2\xd6\xad\x5b\x1b\xcd\xf1\x81\x04\x09\x95\x77\x55\xb8\xfc\x08\x15\xea\x75\xbb\x76\xc3\xba\xa6\x7d\xf1\xc5\x17\xa9\xa7\xa7\x47\x91\x0d\x8a\x1f\x9c\x8c\xfc\xcb\xa7\x46\x63\xff\x4f\xa3\xea\x79\x88\x40\x24\x9c\x4d\x4a\x15\x6a\x2a\xcb\x4e\x6b\x18\x64\x0d\x77\x60\xbf\x5e\x3f\xb6\x74\xcf\xaa\xa2\x25\xc6\xad\x74\xe5\x4c\xec\xb1\xb6\xeb\xb5\xb1\x4c\x90\xb7\x3d\xad\x3c\xda\x9f\xf0\x3f\x9e\xf4\xeb\x63\xb9\x30\x2d\x6c\xd9\xb2\xa5\xa8\x28\x8a\x30\x59\xb6\xbd\x6d\xec\x47\x7b\xb0\xd2\xd9\xd3\x3a\xaf\xd7\x85\x95\xcc\x48\x66\x46\xb0\x72\xbd\x2b\x54\x58\xeb\xda\x19\x98\xe3\x1e\x01\xa0\xa1\xa1\x21\x3a\x71\xe2\x84\x14\x0e\x85\xfd\xb1\x9c\xbc\xfd\x0b\x23\xf1\x3f\x1d\x9a\x0f\xfc\xba\x24\x98\xbf\xd2\x35\xd5\x0a\x10\x39\x8e\x95\xae\xb2\x98\x31\xe1\x5e\xb1\xa8\xfa\x4f\x8e\xff\xd6\x1f\xcc\x32\xec\x79\x6d\x0c\xeb\xd3\xa5\xb6\xad\x0b\x81\x17\xbc\x06\xc9\xd3\x0d\xda\x48\xbc\xb5\x59\x95\x24\x49\x4c\x4f\x4f\x5b\x1d\x62\x75\x50\x2d\xe3\x90\xfd\xc1\xec\xbf\x0d\x61\xeb\x71\xa2\xfb\x36\x55\x1e\x3d\x7a\x94\x6d\xdb\xb6\x8d\x11\x28\x32\x38\x1f\x78\xe6\xf1\xb1\xc6\x3f\xf6\xea\xd4\x56\x6e\x24\xbb\x55\xa2\xe6\x7b\x63\xbb\x2f\x2c\x4a\xa9\xc6\x5a\x28\x9d\x09\x3d\xab\x18\xe9\xb4\xcf\x48\x67\xbd\x46\x26\x2f\xf3\x5c\x41\xe6\x39\x83\x09\x2e\x08\x9c\x71\x30\x0f\x67\x8a\xaf\xc8\x02\x81\x22\x0b\x85\x55\x39\x12\x2e\x48\x11\xaf\xce\x7c\x4c\x54\x1b\xe8\xdd\xeb\xe0\x3c\x2f\x05\xb7\x21\xb6\xfd\xde\x64\x63\xe1\x6f\xbe\xb3\x7b\xe1\x37\x0a\x85\x42\xfa\x9b\xdf\xfc\x26\x8a\xc5\x62\x2d\x0d\xb9\x9e\x2d\x1f\x2e\xe7\x6b\x62\x65\xd4\x97\xc1\xcc\x71\x74\x33\x55\xae\x3a\x97\x24\x09\x8f\x3d\xf6\x18\xfa\xfb\xfb\x65\xc9\x40\xfc\xc8\x44\xf4\x5f\xef\x9d\x0a\xfd\x5b\x12\xa4\x58\x0f\x6d\x05\x12\xd6\xb5\xa5\xf6\x56\x1b\x2b\x56\x75\xba\xa9\x88\x71\x06\xbe\xe2\xd5\xd3\xd3\x91\xc2\xe4\x4c\x43\x61\x62\x2e\xac\x4d\xa6\x7c\xfa\xdd\x82\x2c\x92\x20\xe4\x00\xa8\x00\x34\x21\x84\x4e\x44\xf6\x87\x97\x01\x28\x00\x14\x08\x11\x60\x82\x42\x41\x4d\x6a\x8e\x67\x3d\x5d\x6d\x69\xa5\xb7\x33\xe5\xed\x6d\xce\x28\x2d\x8a\x41\xbe\x52\xd1\x56\x5d\xcc\xae\x2b\x9f\x5b\x43\xb3\x8a\x92\x6d\x57\xb6\xad\xe7\x31\x98\xd0\x2e\x74\xae\x9c\x07\xe0\xf3\x7a\xbd\x19\x45\x51\x78\xb1\x58\x74\xb6\xb5\xb3\x9d\xeb\xc5\x6f\x08\x2b\xa3\xd2\xf3\xeb\xa5\x52\xb7\xf4\x55\xe7\xcf\x3f\xff\x3c\x6b\x6a\x6a\x52\xbc\x45\xea\x78\x72\x34\xf6\xfb\xfd\x09\xff\xcf\x11\x88\xa1\xaa\x01\x80\x32\xc3\xa3\x0a\xcb\x15\xc2\x64\xa9\xa2\x3a\x0d\x00\x08\x06\x9e\x08\x6a\xf3\x63\xf1\xfc\xc8\xad\x58\xfe\xf2\x52\xb0\x78\xcb\x60\x98\x17\x42\x2c\x11\x51\x5a\x08\x91\x03\x90\x83\x80\x06\x40\x37\x7f\x5c\x54\x17\x0a\x22\x92\x01\xc8\x20\x92\x39\xc1\xb7\xe2\x33\x02\x2b\x3e\x23\x34\x1e\xcb\x47\x09\x14\x0f\x14\x59\x47\x67\xca\xbb\x6d\xcb\x82\x7f\x77\xcf\xb2\xaf\xcf\xa7\xb3\x40\xb9\xae\xe5\xf7\xcf\xaa\xbb\xb3\x96\xb6\x7a\x93\xc0\x99\xde\xd4\xf7\x26\x62\xea\x27\x42\x08\xad\x50\x28\xf0\x6c\x36\x5b\xcf\xa1\xb0\x96\x2d\x1f\x8e\xb4\x6b\x62\x65\xd4\x0f\x6e\x66\xb2\x9a\x2f\x82\xcf\xe7\x63\xcf\x3d\xf7\x1c\xe2\xf1\xb8\x2f\xa0\xb1\xee\x13\x9f\xc6\xff\xa2\x3d\xad\x1c\x07\x50\x36\x20\x58\x1c\xb6\x32\xae\x2c\xfd\xa3\xca\xa8\x03\xb0\x0c\x16\x26\x4e\xf5\x08\xf5\x7a\x73\x6e\x78\xa4\x2d\x7b\x66\x21\xa4\x7d\xca\x19\xa6\x01\xcc\x03\x48\x02\x48\x13\x91\x0a\x40\x23\x22\xdd\xac\x5f\xb9\x8e\x0b\x0b\x0b\x55\xf5\x55\x14\x05\x0d\x0d\x0d\xf6\xb7\xde\xfa\xc9\x44\xe4\x03\x10\xc8\x29\x3c\x7a\xa3\x39\xff\xd1\x8d\x78\xbe\xcd\x5f\x64\xbd\x5b\x16\xfd\x0f\xef\x9c\x09\x1e\x6c\x5d\x51\x3a\x4a\x75\xb5\x0d\xa5\xca\x3d\x5b\x61\xe1\x84\xd2\x90\x6c\x2c\x9e\xff\xe4\x93\xae\x95\x6f\x81\x30\x41\xa0\xcc\xc8\xc8\x88\xbd\x0d\x6b\x51\x22\x6c\xf7\xed\xf5\xac\xe7\xe8\xa9\x89\xdd\xf0\x68\xa0\x46\x60\x5e\xaf\x17\x27\x4e\x9c\x40\x2c\x16\xf3\x85\x0b\x72\xdf\x4f\x0d\xc7\xff\xb2\x39\xeb\x39\x62\xc9\xdb\x4a\x9b\xd8\x65\x99\x8b\x74\x33\x3b\x57\x40\x20\xe7\xe1\x99\x4b\x9d\x99\x33\xc3\xed\x99\x77\x73\x1e\x3e\x26\x20\xa6\x50\xea\xd8\x34\x80\x1c\x00\x5d\x08\xa1\xa7\x52\x29\x9e\x48\x24\xb0\xb8\xb8\x88\xc5\xc5\x45\xcb\xa7\xbb\x26\x47\x6a\x6f\x6f\x67\x7e\xbf\x1f\xf1\x78\x1c\xf1\x78\x1c\x6d\x6d\x6d\x4c\x92\x24\x66\x52\xb8\x22\x84\x08\x11\x51\x0c\x42\x74\x10\xa8\xab\x2b\xe9\x7d\xe4\xc0\x9d\xc8\xf1\x4d\xcb\xde\x5e\xb2\xd9\xc3\xdd\x64\xf0\x92\xbf\x38\xfb\xb7\x7b\xe6\xff\x7d\xde\x63\xbc\x0f\x60\x6a\x7e\x7e\x3e\xf7\xca\x2b\xaf\xd4\xa3\xc4\xcf\xcc\x54\x59\x0f\x64\x85\x7a\x66\x33\xae\x28\x0a\xfb\xe2\x17\xbf\x88\xa6\xa6\x26\x5f\xb0\xc0\xfa\x5e\xb8\xd2\xfc\x57\xf1\xac\xe7\x60\x25\x73\x37\x45\xaa\x32\x94\x29\x77\xba\x69\x84\x50\x65\xae\x5e\xec\x58\xf9\xe8\x62\x67\xe6\x1f\xf3\x1e\xe3\x1a\x80\x49\x22\x4a\xa0\xd4\xb1\x9a\xa6\x69\xfa\xdd\xbb\x77\xf9\x9d\x3b\x77\x30\x39\x39\x89\x5c\x2e\x67\xaf\x67\xad\xfa\xaf\x67\xbc\x8f\x96\x96\x16\xf4\xf4\xf4\xa0\xa7\xa7\x07\x8d\x8d\x8d\x8c\x88\x14\x00\x01\x00\x51\x00\x1d\x10\xe8\xdb\x94\xf4\x1e\x3e\x3c\xd1\xf0\x4c\x7b\x5a\xe9\x76\x7b\x32\x4d\x12\xea\xb7\x1f\x9a\xff\xbf\xe6\xc3\xc5\xef\x03\x18\x53\x55\x35\xfd\xca\x2b\xaf\x20\x95\x4a\xd5\x2b\xfa\x33\x09\x0f\x84\x82\x1f\x7f\xfc\x71\xd6\xdf\xdf\xaf\xf8\x75\xa9\xfb\xf9\x2b\xf1\xbf\x6c\x5b\x51\x8e\x51\x55\xd6\xee\xfa\xa5\x73\xa8\xc3\x01\x8c\x35\xe7\x87\x3f\xdc\x9c\xfa\x6e\xca\xa7\x9f\x07\x61\x42\x08\x31\x0b\x20\x43\x44\xea\xec\xec\x2c\xbf\x7e\xfd\x3a\xae\x5f\xbf\xfe\x59\x9a\x00\xcb\xb8\x78\x3c\xce\x86\x86\x86\xd0\xdf\xdf\xcf\x14\x45\x91\x51\xea\xe8\x18\x80\x2e\xc6\x31\xb0\x6d\x2e\xf8\xd4\xe1\x89\xc8\xd3\x41\x4d\x8e\x58\x83\x32\x0e\xf0\x77\x06\x96\xff\xe6\xd3\xb6\xec\xd7\x41\x18\x31\x0c\x63\xe9\x9d\x77\xde\xe1\x13\x13\x13\x6b\xd5\xe5\xc7\xe2\x2e\xb4\x42\x4d\xc5\xe0\xd0\xa1\x43\x6c\xd7\xae\x5d\xb2\x2c\xa8\xed\x8b\xc3\xf1\x3f\xe9\x59\xf6\xbd\x60\x69\x9c\x15\xad\xb2\x22\x7f\x2b\xa6\x5d\x51\xa5\x5c\x65\x14\x3d\x7d\xb2\x3f\xf9\xdd\x9b\xf1\xfc\x5b\x82\x30\x0a\x60\x0a\x25\x8a\x55\xc7\xc6\xc6\xf8\xc5\x8b\x17\xdd\x66\x56\xd4\xab\xfb\x7a\x1b\xab\x96\xb2\x52\x85\xdf\xb6\x6d\x1b\xdb\xb7\x6f\x1f\x82\xc1\xa0\x45\xd1\x2d\x10\xe8\x0d\x6a\x6c\xdf\xa3\xe3\xd1\x2f\x0f\xcc\x07\x76\x03\xc0\x70\x5b\xf6\xd4\x0f\x06\x96\xff\x88\x43\x7c\x42\x44\xf3\xe7\xcf\x9f\xd7\xcf\x9f\x3f\xbf\x2a\xbf\xf5\x96\x5b\xe3\x59\xd6\x8d\xbd\x2f\x0a\xde\xba\x75\x2b\x3b\x76\xec\x98\x4c\xa0\xd8\xf1\x1b\x8d\xbf\xbb\x6b\x26\xf8\xbf\x12\x6c\xca\x87\x35\x6e\x2d\x73\x65\x93\x2d\x0b\x5b\x47\x03\xb8\x15\x53\xaf\xbd\x33\xb0\xfc\xd7\x59\xaf\xf1\x31\x80\x71\x00\x09\x21\x84\x7a\xe7\xce\x1d\xfd\xcc\x99\x33\x48\x26\x93\x0f\xd4\x16\x7e\x3f\x61\xfb\xf6\xed\xec\xe0\xc1\x83\x50\x14\xc5\x07\x20\x82\x12\xdb\x1e\xda\x3e\x17\xf8\x17\x43\x73\xc1\xdd\xaf\xee\x48\xfc\xb1\x26\x8b\xb3\x00\xa6\xee\xdc\xb9\xa3\xbe\xf1\xc6\x1b\x3f\xd6\xba\x13\xee\xc3\x5d\xf8\xab\xbf\xfa\xab\xb2\x47\xf6\x44\x76\x4f\x07\x7f\xf9\xd8\x58\xe3\x1f\x31\x41\xf2\x2a\x71\x6b\x57\x36\xed\x9c\x5a\x00\x06\x13\xfc\x5c\x77\xfa\xed\xb3\xdd\xe9\xff\x66\x90\x18\x26\xa2\x49\x21\x44\x3a\x9d\x4e\x6b\x3f\xfc\xe1\x0f\x61\xb2\xb5\x7a\x6e\xb4\x7a\xd6\x9c\x8d\xde\x43\x8d\xf8\x55\xfa\x87\xcf\xe7\x63\x87\x0f\x1f\x46\x5f\x5f\x1f\x63\x8c\x05\x00\xc4\x09\xd4\xc1\x04\x14\x83\xc4\x14\x80\xe9\x95\x95\x95\xdc\xcb\x2f\xbf\xfc\x93\xeb\x2e\xfc\xd2\x97\xbe\xc4\x1a\x1b\x1b\x03\xed\x29\xe5\xd1\x9f\xbe\xd2\xfc\x0d\x8f\x41\xd1\xca\x10\x02\xb0\xf7\xa4\x5d\xd6\x5a\x0a\x95\x26\x09\xf5\x9d\x81\xe5\xbf\x1d\x6d\xce\xbd\x02\xc2\x08\x80\x69\xc3\x30\x72\x23\x23\x23\xfc\xf4\xe9\xd3\x3f\x8e\xb7\x7e\xc3\x32\xb0\xad\xad\x8d\x3d\xf6\xd8\x63\x68\x68\x68\x50\x00\xf8\xcc\x3c\x54\x5d\xd7\xb5\xd7\x5f\x7f\x9d\xcf\xce\xce\x6e\x48\x57\x38\x74\xe8\x10\xf3\xfb\xfd\x68\x6c\x6c\xc4\xf2\xf2\x32\x16\x16\x16\x30\x3c\x3c\xbc\x5e\xb1\xe4\x1a\x36\xaa\x45\x03\x00\x1e\x7d\xf4\x51\x36\x34\x34\xa4\x78\x8b\xac\xf7\xcb\x17\x5a\xbe\x15\xcb\x7b\x76\x97\xdc\x76\x95\x71\x6e\xa9\x53\xcd\xff\x02\x20\xaa\xc4\xa8\xb2\x91\x7b\x75\xc7\xe2\x7f\xbc\xdb\x50\x78\x43\x40\x5c\x03\x30\x9f\xcf\xe7\xd5\xf7\xde\x7b\x0f\x77\xee\xdc\x01\xaa\x29\xad\xd6\x83\xac\x87\x4a\xdd\xb0\x1b\xa5\x60\x67\x7c\x55\x1a\x8f\xc7\x83\xdd\xbb\x77\x63\x70\x70\x10\xa1\x50\x08\x93\x93\x93\x38\x77\xee\x1c\x16\x17\x17\xd7\xc4\x02\x40\x43\x43\x03\x0e\x1d\x3a\x84\x4d\x9b\x36\x31\xc6\x98\x22\x84\xb0\xac\x8b\x3a\x11\xe9\x86\x61\xe8\x17\x2f\x5e\xe4\xe7\xcf\x9f\xbf\xa7\x3a\xdb\x59\x74\xbd\xe1\x43\xf9\x7e\x77\x77\x37\x9e\x79\xe6\x19\x06\x81\xf8\x93\xa3\x8d\x7f\xb0\x63\x36\xf8\x95\x8a\x97\xa5\x14\x9c\xfa\xb3\x3d\x3e\xab\x18\xe9\xef\xed\x48\x7c\x75\x2e\xa2\xfd\x23\x80\x6b\x00\x96\xe6\xe6\xe6\xb4\xb7\xde\x7a\xcb\x6d\xb8\xe3\xac\x03\xb0\xfa\xc5\xab\xd5\xc1\x0f\x12\xfb\x99\xc4\x45\xa3\x51\x7c\xe1\x0b\x5f\x40\x30\x10\x0c\xc4\x72\x72\xdf\xbe\xa9\xf0\xaf\xf4\x2c\xfb\x1e\xf5\x18\x2c\x92\xf6\xe9\x13\xd7\x5a\x72\xdf\xb9\xd2\x9e\xf9\x6e\x51\x16\xc9\xe9\xe9\x69\xed\xd5\x57\x5f\xdd\x70\x19\x12\xaa\x07\xa9\x1c\x95\xfe\xe1\xb6\x38\x06\x80\x7b\x3c\x1e\x7a\xf6\xd9\x67\xa1\x28\x4a\xb0\x77\xc9\xf7\xd4\xd1\xf1\xe8\xef\x11\xc0\x2c\xfd\xd8\x92\xb3\x96\xa1\x82\xec\x02\x17\x80\xea\xe1\x99\xef\xef\x48\xfc\xe5\x6c\x83\xf6\x3a\x80\xab\x00\x16\x47\x47\x47\x8b\xef\xbe\xfb\x2e\x54\x55\xe5\xa8\xed\x72\xb4\xbf\x27\x4e\xd7\xa4\x3d\xcd\xbd\x60\xed\x8d\x52\x0b\x2b\x1e\x34\xd6\xeb\xf5\xe2\x85\x17\x5e\x40\x30\x18\x0c\xf4\x2d\xfa\x9e\x7c\x7e\xb8\xf9\xe5\xf6\x15\xe5\x29\xc5\x90\x3a\x3c\x9c\x9a\x02\x1a\xdb\xd2\xb3\xec\x3b\xd1\xbd\xec\xdf\x33\xde\x94\xff\xd0\xd7\x18\xca\x44\x22\x11\x3e\x31\x31\x81\x8d\x94\xeb\xa4\x5e\xeb\xda\x19\x07\x00\xd8\xbb\x77\x2f\x42\xa1\x90\xe2\xd5\xa9\xe3\xb1\x9b\xd1\xdf\x65\x20\xd9\xee\x9e\x13\x20\x9b\x6d\xd6\xea\xf4\x52\x47\xeb\x4c\x68\x6f\x0c\x2d\xfe\xa7\x99\x88\xf6\x1a\x4c\xca\x1d\x19\x19\xd1\x4f\x9e\x3c\xc9\x35\x4d\xb3\xca\x71\xe3\x22\x6e\x66\x45\xb7\x34\x1b\xc1\x3a\x29\xd9\x6d\xc8\xb1\xd6\xf1\xbe\xb0\x87\x0e\x1d\x42\x30\x18\x54\x22\x79\x69\xe8\xe9\xeb\xb1\xbf\xf0\x1a\xac\x8d\x6c\x24\x61\x39\x1f\xdb\x32\xca\x93\x4f\xdc\x88\xfd\x01\x04\xa2\x5b\xb7\x6e\x65\x6d\x6d\x6d\x1b\x2a\xb7\x9e\xb5\xca\x1e\xc7\xa3\xd1\x28\xdb\xbd\x7b\x37\x83\x40\x64\xff\x64\xe4\xd7\xa2\x79\x79\x3b\x20\xcc\xa9\x2c\xe6\xcf\x36\x33\xd1\x6e\x92\xe4\x10\xfc\xdd\xad\xcb\x2f\x4f\x36\x16\xbe\x8f\xd2\x18\x77\x69\x64\x64\x44\x3f\x75\xea\x14\x77\x94\x55\xeb\x65\xb3\xdf\x77\x53\x2a\x36\x82\xad\x25\x92\x6a\x75\xdc\x7a\xe4\xf7\x86\xb0\x44\x84\xde\xde\x5e\x06\x20\xb4\xe7\x6e\xf8\x57\xbc\x3a\xeb\x10\xab\x18\x50\xe5\xbc\x77\xc9\xf7\x53\x2d\x19\xcf\x1e\x00\xbe\xa1\xa1\xa1\x0d\x95\x5b\xeb\xad\x5e\x95\xc1\xa1\x43\x87\x40\x44\x4a\x63\x5e\x1e\x7a\x68\x3a\xf4\x15\x32\xeb\x50\x72\x99\x91\x0b\x23\x2c\xf9\xa7\x05\x04\x2e\x76\x66\x4e\x8e\xb4\xe6\xfe\x4e\x40\xd8\x3b\xd7\xad\x7c\xb7\x37\xd1\x49\x9d\xcc\x25\x7e\x23\xd8\x7a\x1d\xe4\x86\xb5\xe7\xf1\x40\xb0\x1d\x1d\x1d\xf0\x7a\xbd\x0c\x02\x91\xce\x94\xf7\x90\xd5\x56\x80\xd9\x74\x02\x66\x9b\x96\x5c\x57\x4c\x40\xe9\x4a\xfa\x3e\x2f\x84\xf0\xf5\xf4\xf4\x6c\xa8\x5c\xcb\x9b\x54\x4b\xe3\xe4\x00\x58\x4b\x4b\x0b\xeb\xea\xea\x62\x04\x8a\x1e\xbc\x1d\xf9\x75\x45\x67\xb1\x8a\x45\xca\x4c\x69\x59\x2d\x2c\x1f\xaa\x59\xd1\xe9\x06\x6d\xec\xa3\xcd\xa9\xaf\x83\x70\x8d\x40\x89\xd9\xd9\x59\xcd\x41\xb9\xf5\x82\x9b\xf6\xfc\x20\xb0\xb5\xf2\x58\x4f\xde\xf7\x8d\x6d\x69\x69\x61\x28\x69\xb8\x01\x99\x53\xa4\xe2\x5c\x33\x45\x1c\x55\x18\x35\x04\x40\x82\xe0\x2f\xb2\x16\x00\x8a\xc7\xe3\x71\xeb\xa3\x9a\xc1\xed\x8d\x5e\xf5\xc6\xef\xdd\xbb\x17\x8c\x31\x5f\x3c\xeb\xd9\xb9\x75\x21\xf0\x02\x48\x00\x64\xb2\xe1\x55\xe7\x28\xab\x1f\x05\x8f\x91\x7b\x67\x60\xe9\xaf\x74\x49\x5c\x06\x30\xbb\xb2\xb2\xa2\xbe\xf9\xe6\x9b\x56\xbe\xb5\xca\x74\xc6\xb9\x71\x98\x07\x89\xb5\x53\x98\x3d\xce\x0d\xf3\xa0\xb0\x00\x4a\xb4\x90\xf2\xe9\xf3\xe5\x36\x24\x4b\xe4\x59\x42\xae\xd4\x9e\x82\x04\x92\x7e\x3d\x41\x44\xce\xbc\xd6\x2c\xd7\xc9\x3e\x9c\x32\x8e\x37\x37\x37\xb3\xee\xee\x6e\x06\x81\xc8\x81\x3b\xe1\x5f\x93\x04\x05\x08\x04\x12\xe6\xcf\xfa\x33\x1d\xf5\x65\x1e\x43\x02\x67\x7a\xd2\xdf\x5d\x0a\xe8\x1f\x09\x21\xa6\x0c\xc3\x50\xdf\x7e\xfb\x6d\x6b\xe6\xbf\x53\x66\xd6\x93\xab\x6e\x54\xf7\xa0\xb1\x6e\xe3\x7e\x37\x2a\x79\x20\xd8\xb9\xb9\x39\x08\x21\x38\x08\xb9\x6b\xad\xd9\x53\x96\xa5\x9e\x04\x95\xfd\xe0\x64\xf3\x91\xe7\x3d\x3c\x39\xde\x94\x3f\x8f\xd2\x0c\x95\x0d\x95\x5b\xeb\x2d\x2c\x87\xbd\x7b\xf7\x82\x88\x7c\x0d\xaa\xdc\xdf\x9f\x08\x3c\x47\x96\xf3\xc0\x7c\xeb\x4a\xc1\xa2\x62\x94\xa9\x78\x26\xa2\x8d\x5d\xee\xc8\x7c\x47\x40\x4c\x10\x51\xe6\x87\x3f\xfc\x21\x5f\x58\x58\x80\xad\x8c\xb5\x64\x56\x2d\x59\xfa\x20\xb0\xdc\x11\x6f\x7f\x7e\x27\x55\x38\xeb\x7c\xdf\xd8\x44\x22\x01\x5e\x5a\xcc\x94\xbe\xd1\x9c\x7f\xf7\x46\x3c\x7f\x56\xa0\xc2\x09\xcb\x0a\x17\x01\x06\x09\xfe\x41\x5f\xf2\xe5\xbc\xc2\xc7\x01\xe4\x6e\xdf\xbe\x6d\xcb\x76\xed\x72\x99\xcb\xcd\x32\x28\x14\x0a\xb1\x4d\x9b\x36\x31\x00\xa1\xdd\xd3\xa1\x9f\x97\x38\x42\xd5\x66\x48\xcb\xc0\x61\xf2\x65\xd3\x8b\x64\x10\xf8\xa9\xbe\xe4\xcb\x9c\x61\x94\x88\x96\x66\x67\x67\xf5\xe1\xe1\x61\x67\x85\x6a\xfd\xdc\x2a\x5f\x4b\x23\xbe\x57\x2c\x5c\xae\xdd\xd8\x5f\xad\xb4\xf7\x85\xd5\x34\x8d\x8f\x8e\x8e\x72\x00\x19\x0e\x31\xfe\xd6\xd0\xd2\x9f\x5d\xec\xcc\x9c\xd4\x98\xd0\xac\x01\x92\x00\x90\xf6\x1a\x4b\x6f\x0d\x2e\xfd\xe7\xab\xad\xb9\xef\x00\x98\x06\xa0\x5e\xbe\x7c\xd9\xfe\x7c\x6b\x96\x6b\x9f\xb2\x63\x7f\x33\x39\x00\xf4\xf7\xf7\x83\x31\x26\x7b\x8b\xd4\x36\x34\x1f\x38\x51\x5a\x02\x62\x05\xfb\xc4\xb8\x72\x0c\x84\x20\x8c\x35\xe7\x3e\x9e\x8e\x68\x1f\x00\x98\xd6\x75\x5d\x7d\xef\xbd\xf7\xac\x24\x6e\x8a\x4f\xad\xe0\x4c\x5b\x8f\x25\x6f\x04\xeb\x96\x8f\x5b\x7a\xb7\x72\x1e\x18\xf6\x83\x0f\x3e\xe0\x5d\x5d\x5d\x5a\x28\x14\x9a\xd5\x18\xff\xf8\xbd\x2d\xc9\xf4\x85\xae\x95\xb7\xda\xd2\xde\x6d\xbe\x22\x0b\xa5\xfc\xfa\xfc\x4c\xa4\x70\x49\x93\xc4\x88\x80\x18\x83\x40\xf2\xfa\xf5\xeb\xdc\xb6\x64\x75\x5d\xe5\x3a\xe7\x64\xd9\x1b\x80\x0d\x0e\x0e\x02\x40\x60\xf3\x92\xff\xd1\x80\xc6\xba\xca\xde\x5b\x6b\x95\x5f\x79\x98\x04\x58\x3d\x6d\x48\xd0\x3f\xee\x4e\x7f\x5b\x40\x4c\x10\x28\x33\x3c\x3c\xcc\x53\xa9\xd4\x7a\x3b\xb5\xdc\x00\x2e\x95\xdd\x88\x86\x5b\x0f\x5b\x4b\x66\xaf\xa7\x9c\x07\x8a\x7d\xf5\xd5\x57\x71\xe2\xc4\x89\x5c\x38\x1c\x9e\x04\x90\x4e\x79\xf5\xf1\x74\x8b\xf1\x3e\x00\x59\x08\xa1\x02\x58\x22\xa2\x25\x08\xa4\xef\xdc\xb9\xa3\xbf\xff\xfe\xfb\xb5\xca\xaa\x59\xae\x73\xda\x6c\x99\xc4\xbb\xba\xba\x10\x89\x44\x64\x02\x45\xb6\xcd\x05\x9e\x27\xfb\xb4\x51\x9b\xc5\x05\xb0\xb4\xfa\xd2\x98\xe9\x56\x2c\xff\xc9\x42\xb0\xf8\x31\x11\x25\xf2\xf9\xbc\x7e\xf6\xec\xd9\x8d\x74\x2e\x5c\xea\xf3\x59\x63\x9d\xb2\x74\xa3\x9c\xe2\x9e\xb1\x2b\x2b\x2b\x78\xf5\xd5\x57\xf1\xb9\xcf\x7d\x4e\xdd\xb4\x69\xd3\x3c\x80\xa4\xe9\x6c\xb0\xf2\xd0\x35\x4d\xd3\x2f\x5c\xb8\xc0\x2f\x5d\xba\xe4\xc6\x91\xd6\x2c\xb7\xe6\xb4\xd9\x9e\x9e\x1e\x10\x91\x1c\x2a\x48\x5d\xed\x69\xef\x01\x4b\xe8\x97\x57\x70\x59\xc1\x76\xca\x09\xfc\x52\x67\xe6\x35\x10\xa6\x84\x10\xb9\x35\x5c\x5d\xb5\x42\x2d\x2a\xfc\xac\xb0\x6b\x51\xe5\x67\x8a\x5d\x59\x59\xc1\x9b\x6f\xbe\x89\x78\x3c\x8e\x9e\x9e\x1e\x35\x12\x89\x20\x14\x0a\x61\x79\x79\x19\xa9\x54\x0a\x57\xae\x5c\x59\x6f\x19\xae\xe5\xd6\x9c\x36\xdb\xd3\xd3\x03\x21\x84\xaf\x67\xc9\x77\xc4\x63\x50\xc4\xbe\x08\xc2\x9a\x97\x6e\x9f\x38\x07\x08\x24\x42\xc5\x89\xe9\x48\xe1\x2c\x80\xa5\x42\xa1\xa0\x5f\xb8\x70\xe1\x5e\xe5\xe5\x7a\xa9\xf0\xb3\xc0\xae\x75\xef\xbe\xb0\x83\x83\x83\xcc\xe7\xf3\x01\x00\x2e\x5d\xba\xc4\xbd\x5e\x2f\x2b\x14\x0a\x3c\x91\x48\x20\x91\x48\xc0\x05\x0b\xa0\xb4\xdc\xb6\xb9\xb9\xb9\x7c\x23\x9d\x4e\x63\x6c\x6c\xcc\x3e\x2d\xd8\xb5\x5c\xd7\x95\x0d\xcd\xcd\xcd\x08\x85\x42\x0c\x02\xa1\xde\x25\xdf\xe3\x15\x6d\xb9\x62\x64\x11\x55\x4c\xba\x44\xc8\x57\x5b\xb3\xef\x9b\x73\x96\x73\xe3\xe3\xe3\x55\x79\x9a\xc1\xa9\xfd\x59\x71\xab\x8c\x00\x35\xd2\xfd\xa8\xb0\xf6\xb4\xf7\x8d\x6d\x68\x68\x60\xc7\x8e\x1d\x43\x6b\x6b\x2b\x43\x45\x2c\xe2\x91\x47\x1e\xe1\x00\xf4\xb1\xb1\x31\x9c\x3e\x7d\x1a\xf9\x7c\xbe\x0a\xab\x28\x0a\x0e\x1f\x3e\xcc\x06\x07\x07\x19\x00\x85\x71\x28\x92\x20\x85\x93\xd0\x0d\x82\xba\x6b\xd7\x2e\x6d\x66\x66\x06\x6f\xbf\xfd\xf6\x2a\xac\x55\x0f\x57\x25\xab\xbd\xbd\x1d\x00\x64\x99\x53\xac\x33\xe5\xdd\x03\xd3\x61\x5f\x19\x12\xd9\x9c\xf9\x26\xd0\x20\x68\x63\xf1\xfc\x7b\x00\x96\x00\x68\xe6\x24\x6f\x3b\x35\xd9\x55\xfa\xf5\xb0\x98\x5a\x94\xf8\xa0\xb1\xce\x7b\x6e\xd8\xb5\xb8\x41\x4d\xec\xd0\xd0\x10\x0e\x1d\x3a\xc4\x14\x8f\xe2\x6b\xcc\xca\xdd\x83\x0b\x81\xe7\x5a\x57\x94\x87\x74\x26\xd4\x99\x88\x76\xfe\x7a\x4b\xf6\xcd\xfe\x2d\xfd\xf3\x5d\x5d\x5d\xea\xeb\xaf\xbf\x8e\x44\x22\x51\xc6\x3e\xf7\xdc\x73\x68\x69\x69\x51\x02\x1a\x6b\xdb\x3b\x15\xfe\x85\x2d\x09\xff\x17\x43\x9a\xd4\x51\x90\xf9\xd2\xed\x46\xf5\xe4\xc7\x9b\x56\xfe\x0a\x6d\xed\xe3\x5f\xfa\xd2\x97\x56\x61\xad\x3a\xc8\x70\x69\xfc\x9e\x9e\x1e\x06\x40\x89\x67\x3d\x03\xfe\x22\x6b\xb1\x66\x63\xb8\x4d\xff\xb0\x62\xe7\xc2\xda\xf8\x8a\xd7\x18\x07\x90\x99\x9b\x9b\xe3\x4b\x4b\x4b\xe5\xfc\x9c\xf9\xbb\x34\x20\xb0\xfa\xed\xb3\xc7\x3b\x29\xa6\x2e\xf6\xd0\xa1\x43\xac\xa7\xa7\xa7\xa4\x24\x52\x69\x1b\x08\x00\x96\x95\x88\xe7\x72\x39\x7e\xf7\xee\x5d\x5c\xbb\x76\x0d\x33\x33\x33\xb5\xf2\x72\xd6\xd5\xad\xee\x75\xb1\xdd\xdd\xdd\xec\xe8\xd1\xa3\x8c\x11\x8b\xec\x9b\x0a\xff\xdc\xa1\xdb\x91\xdf\xf3\x18\x2c\x6e\xb5\x63\x7f\xc2\xff\x2f\xf7\xdf\x09\x8f\xbd\x3d\xb8\xf4\x6f\x6e\x35\xe1\xfd\x67\x9f\x7d\x36\xf3\xbd\xef\x7d\x8f\xa5\x52\x29\xfe\x85\x2f\x7c\x81\xb5\xb4\xb4\xf8\x62\x59\x79\xe8\xa7\x86\x9b\xbf\xde\xa0\x4a\xbb\xad\xb6\x56\x0c\xd6\xbd\x63\x36\xb4\x67\x4b\xc2\xff\xe2\xab\x3b\x16\x7f\xed\x6e\x14\x67\x8e\x1d\x3b\x96\xfb\xce\x77\xbe\xc3\x0c\xc3\xa8\xaa\xab\xb5\x7c\xb4\xec\xec\x97\x24\x89\x1e\x7e\xf8\x61\xe6\xf1\x78\xc2\x5b\x17\xfc\x3f\xdd\xbb\xec\xfb\x3c\x9c\x41\xd8\x58\xb5\x79\x7e\xa5\x23\xf3\xe6\x74\x54\xfb\x27\x00\x0b\x57\xae\x5c\x31\xe6\xe7\xe7\x6d\xa9\xab\x7e\x6e\x9d\x6b\x77\x56\x33\x47\x3a\x37\xc7\xf9\x2a\x6c\x38\x1c\xa6\x63\xc7\x8e\xd1\xe3\x8f\x3f\x2e\xb5\xb5\xb6\x7a\xfd\x8a\x37\xe2\x5f\xe1\x7d\xe1\x84\x71\x28\xbc\x64\x1c\x0d\x26\xf9\x5e\x5f\xc6\xe8\x21\x0e\x2f\x05\x95\x62\xac\x29\x86\x81\x81\x01\xa3\xb7\xb7\x17\x0b\x0b\x0b\x94\xcb\xe5\x9c\x13\x1f\xec\xe5\x5a\xe5\xd8\x27\x40\xd8\xef\x31\x37\xec\x89\x13\x27\xc8\xeb\xf5\x06\x77\xcc\x06\x7f\xe6\xd8\x58\xf4\xcf\x65\xc1\x42\x36\x61\x07\x02\xe0\x31\x28\xd6\xb7\xe4\x7f\xfa\x76\xa3\x7a\x4a\x0b\xb2\xb9\xa6\xa6\x26\xdd\xeb\xf5\xd2\xb6\x6d\xdb\x64\x0f\x67\x6d\x2f\x5c\x69\xfe\x4f\x4d\x79\x79\x7f\x65\xd2\xb1\x85\x15\x90\x0d\x6a\xe8\x59\xf6\x1d\xb9\xda\x9a\x7b\xc3\x13\xf2\xa5\x89\xc8\x98\x9e\x9e\xae\x9a\x58\x50\x96\x07\xd6\x31\x16\x8b\xc1\xe7\xf3\x31\x00\x81\xf6\xb4\x77\x77\x65\x6b\x0a\x73\x1f\x0c\xcb\xe3\x61\xa3\x0a\x01\x81\xc9\x68\xe1\xbc\x10\x22\x0d\x40\x77\x98\xd3\xac\xbc\x9d\x6c\xcc\x2d\x8d\xf3\x7c\x2d\x39\x0a\xa0\x34\x67\xf9\xf0\xe1\xc3\x4c\x96\x65\xc5\x93\xe7\x1d\xf1\x49\xed\xe7\x1a\xa7\x8b\x5f\xf2\xa8\x62\x08\x10\x8a\x95\xce\x9c\x82\xa0\x1b\x1e\x9a\x48\xb6\xc9\xdf\x5b\xe8\xf5\xfc\x75\xbc\xa9\x69\xfc\xc5\x17\x5f\x54\x2f\x5d\xba\xc4\xcf\x9d\x3b\xc7\xcc\xed\x90\x6a\xc9\x57\xb7\xba\x3b\xeb\xca\xcc\x3a\x21\x10\x08\x28\x8a\x4e\x1d\x87\x26\x22\xbf\xc3\x04\xc9\x80\x80\x30\x5d\x70\x15\x87\x11\xc1\xa3\x53\xfc\xc8\xad\xe8\xbf\xfb\xee\xae\x85\x7f\xd5\xd6\xd6\x36\xdf\xd6\xd6\xc6\x01\xf8\xb6\x2c\xfa\x9f\x8e\x67\x3d\x87\xac\x91\x8b\x1b\x36\xa8\x49\xfd\x3b\x66\x83\x3f\x73\x6e\x53\xfa\xcf\x07\x06\x06\xb4\x73\xe7\xce\x55\xd5\x6f\x95\x89\xab\xa9\xa9\x09\x44\xc4\x20\x10\x88\x67\x3c\xfd\x96\xe9\xac\x94\x1f\x95\x5d\x84\x02\x54\x9a\xe7\x2c\x4a\xc6\xf0\xa5\x40\x71\x0c\x40\x2e\x93\xc9\xf0\x74\x3a\x5d\xce\xaf\x4e\x43\xad\xe7\x07\xc7\xf9\x2a\xec\x9e\x3d\x7b\x70\xf4\xe8\x51\x59\x66\x52\xb4\xe9\xb6\xf6\x0b\x83\x1f\xe6\xde\x69\x19\x2f\xfc\xbe\x47\xe5\xbb\x01\x28\x36\xc7\x9b\xa5\x35\xc8\x72\x91\xf7\xc7\x27\xb5\xff\x63\xe0\xa3\xdc\xbb\x6d\x37\xb4\xdf\x24\x43\xc4\x77\xef\xde\x2d\x3f\xf5\xd4\x53\x6b\xd5\xcd\x79\xbf\xe6\x33\x99\xc3\x4c\xa5\x2d\xad\x1c\x08\x69\x52\x6f\xb9\x16\xa2\x2c\x2a\x4a\xc3\x11\x73\xf4\xd9\x91\x56\x8e\x06\x34\xd6\x45\x44\x0a\x11\x31\x22\x0a\x75\xa4\x94\xcf\x95\xed\x0f\xb5\xb0\x82\xd0\x95\xf4\x7e\x9e\x88\x42\xc1\x60\xd0\xd2\xb4\xcb\xf5\x58\x25\xdf\x1a\x1a\x1a\x20\x84\x90\x7d\x3a\x8b\x86\x34\xa9\x8d\x2c\x33\x33\x84\xe9\x88\x5e\xed\x22\x5c\x0c\x14\x27\x8b\x92\x48\x10\x91\x36\x3b\x3b\x6b\x65\x55\x4b\x56\x31\xdb\xcf\x1e\xe7\x0c\xae\x94\x61\x3f\xdf\xb3\x67\x0f\x7b\xf8\xe1\x87\x65\x26\x10\xeb\x1a\x29\xfc\x9f\x5d\x23\x85\xff\x57\x2e\x8a\x6e\xaa\x72\xa0\x5b\xe7\xa6\x8d\x57\x98\x3f\x22\x30\x1d\xb1\xd6\x9b\xda\xef\xf7\x5e\xc8\xff\x89\xa4\xa3\xa3\xa7\xa7\x47\x79\xf2\xc9\x27\xeb\xd5\xcf\x19\xe7\xa6\x69\x33\x00\xac\xa3\xa3\x03\x42\x08\x25\xa8\x49\xdd\x00\x31\x61\xb6\x99\xb5\xaa\xc3\x6a\x47\x32\xe3\x65\x83\x02\x5e\x9d\xb5\xc1\xd4\xb2\x85\x10\x8a\xa2\xb3\xa8\xe5\x2e\xac\x87\x95\x38\x85\x20\x4a\xd3\x76\x65\x59\xb6\xd7\x6f\x95\x8d\x96\xb7\xb6\xb6\x82\x88\xe4\xb0\x2a\x75\xc8\x06\x85\xcc\x56\x2a\xd3\x31\x91\xcd\x3d\x68\xba\x0b\x17\x43\xc5\x09\x94\x96\x99\xe8\x33\x33\x33\xb0\xe5\xe9\x16\xec\x6f\x7a\x3d\xcb\x8f\x1b\xe5\x94\xef\x75\x77\x77\xb3\x87\x1f\x7e\x98\x11\x10\x69\xbf\x5e\xf8\xad\xa6\x3b\xc5\xdf\x24\x40\xb6\x56\x53\x90\xb9\x47\x96\x75\xac\x88\x14\x6b\x9e\x58\xa9\x81\x48\x08\x16\x59\x30\x7e\xb6\xe7\x72\xfe\x0f\x89\x8b\xd8\xe6\xcd\x9b\xe5\x9d\x3b\x77\xae\x2a\xcf\xd1\x4e\x88\xc7\xe3\xe8\xec\xec\x44\x67\x67\x27\xa2\xd1\xa8\x53\x94\x70\x73\x87\x5b\xa6\x7a\xb8\x0a\xcb\x56\x60\x13\x77\xa5\xdd\x7a\x2a\x2f\x5f\x51\x12\xaa\xea\xe1\xaa\x5d\x21\x5c\x08\x15\xa7\xc5\x1a\x58\x01\xc2\x62\xb0\x38\x0d\xb3\xf3\x9d\x75\xb6\x8f\x83\x39\x00\xf8\xfd\x7e\x00\x90\xc3\x05\xa9\x83\x00\xb6\xda\x9b\x40\x15\xc7\xbe\x19\xb9\x18\x28\x4e\xa0\xb4\xaa\x9e\x9b\x83\x75\xd8\xf2\x75\x72\x09\xa7\x1c\x73\xa3\x5e\x37\x5c\x39\x5e\x96\x65\x3c\xf2\xc8\x23\x20\xa2\x40\xc3\x6c\xf1\x99\xe6\x89\xe2\xff\x0e\x73\x0b\x06\x41\x96\x1f\x95\x2a\x3b\x3e\x94\xa7\x9f\x98\x47\xab\xee\x56\xa3\x01\x88\xcc\x1b\x3f\xdb\x3c\xa1\x5d\x9a\xef\xf3\x7e\x75\xff\xfe\xfd\xe9\x89\x89\x09\x64\x32\x99\x72\x43\x01\x60\x8a\xa2\x60\xdf\xbe\x7d\x18\x18\x18\x60\x3e\x9f\xaf\xaa\xed\x32\x99\x0c\x2e\x5c\xb8\x80\xab\x57\xaf\x02\x00\x4b\xa7\xd3\x88\x46\xa3\xfa\x4c\x44\x1b\xcd\x7b\x78\x32\x50\x64\xd1\xca\x76\x15\x95\xf6\xb4\x34\xb3\xa5\x40\x71\x32\xef\xe1\x69\xa0\xb4\xe3\x2d\x11\xa9\x63\xf1\xdc\xe9\x47\x6e\x47\x7e\xd9\x6b\x20\x50\x0b\x2b\x08\x7c\xb4\x39\xff\x21\x4a\x3b\x1a\x70\x55\x55\xed\xed\x58\xed\x2e\x24\x22\x66\x2e\x8e\x96\x23\xaa\xdc\x5e\x79\x7c\x5b\xae\xab\xdc\x85\x02\x29\xbf\x7e\x07\x80\xa6\xeb\x3a\xb7\x8d\xc5\x5c\x29\xcf\x76\xac\x27\xe7\x6a\xa5\x05\x00\xbe\x6d\xdb\x36\x34\x36\x36\xca\x4c\x17\x6d\xed\xd7\x0b\xbf\x4d\x02\x72\x59\xc6\x3a\xde\xc7\x55\xdb\x90\xb8\xe9\xe2\xa6\xd4\x69\xb9\xa9\xfd\x1b\x4f\x9e\xf7\x79\xbd\x5e\x65\xef\xde\xbd\xab\xea\xfe\xd2\x4b\x2f\x61\xf7\xee\xdd\x4a\x44\xf6\xb7\x0c\xcc\xfb\x9f\x3c\x72\xab\xe1\x7f\x7b\x64\x22\xf2\x3f\xf7\x2e\xfa\x8e\x36\xf8\x43\xb1\xa3\x47\x8f\x2a\xcf\x3f\xff\x3c\x03\xc0\xcd\x89\xef\x9a\x2a\xf3\xe9\x4f\xba\x56\x5e\xaf\xa8\xe4\x4e\xd1\x01\x70\x80\x9f\xdf\xb4\xf2\x2a\x08\x4b\x44\x64\x6d\x39\x91\x4b\xfb\x8d\x6b\x67\x7a\x52\xdf\xe5\x75\xb0\xc3\x6d\xd9\x93\xd3\x0d\x85\x4f\x00\x64\x56\x56\x56\xf8\xf2\xf2\x72\x55\x9d\x57\xb9\x0b\x4d\x32\x97\xfd\x45\x16\xb7\xfc\xbb\x36\x67\x91\x2d\x94\x3a\x9b\x13\xf4\xac\x62\xcc\x0b\x21\x34\x5d\xd7\xdd\xc6\xb8\xf5\xcc\x78\xf5\x82\x5b\x3e\x00\xc0\xb7\x6f\xdf\x0e\x00\x81\x86\x79\xfd\x49\x6f\x4e\xec\xb4\xb6\x32\xac\xaa\xab\xad\x5f\xab\xde\x7d\xdb\x60\x88\x6c\xe9\x89\x00\x49\x47\xbc\xe9\x4e\xf1\xcb\x33\x5b\x95\x3f\xec\xeb\xeb\xd3\x3e\xf8\xe0\x83\x72\xf9\x5f\xf9\xca\x57\x64\x59\x92\x03\xbd\x8b\xbe\x23\x8f\x8f\x35\xfe\x87\x88\x2a\xed\x86\x20\x66\xca\x2f\x7d\x21\x54\x7c\xff\x9f\x06\x97\x7e\x07\x2d\x2d\xc3\xbf\xf4\x4b\xbf\xa4\x9e\x3f\x7f\x1e\x5b\xb6\x6c\x51\x05\xc4\xec\x27\x5d\x2b\xdf\x0a\x17\xe4\x8e\x5d\xd3\xc1\x63\xa5\xcd\xde\x4a\xe4\x27\x50\xda\x6b\xe4\x4c\x4f\xea\x7b\x63\xf1\xfc\x5b\x42\x88\x25\x5d\xd7\xf5\xeb\xd7\xaf\x63\xe7\xce\x9d\xaa\x10\x62\xea\x42\x57\xe6\x1b\x9c\x41\x3e\x34\x11\x39\xe1\x2b\x4a\x01\x0b\xab\x49\x5c\xbb\xd4\x99\x39\x79\xa6\x37\xf5\x57\x28\x2d\xb3\xcd\x99\xc6\xa5\xaa\x50\x65\xc9\x32\xa7\x83\x30\x00\xb2\x4f\x67\x11\x5b\x93\x81\xaa\x5a\xa6\xe2\x2e\xe4\x4c\xe8\xaa\xcc\xd3\x00\x74\x73\xa7\xf4\x5a\xc6\x80\xf5\x76\x6c\xad\xf4\xe5\xeb\x86\x86\x06\x06\x21\x22\xd1\x99\xe2\x17\x4b\x52\xa3\xd2\x9b\x64\x0e\x27\xec\x83\xda\xf2\x9e\x2e\x4e\x06\x64\xbb\x6f\x59\xeb\xa2\xb3\xfa\x33\x73\xfd\xca\xd7\xbc\x5e\x6f\x7a\xeb\xd6\xad\xec\xc6\x8d\x1b\xfc\x85\x17\x5e\x60\xb2\x2c\xfb\x36\x2d\x7b\x8f\x7e\x61\xa4\xe9\x1b\x1e\xce\xa2\x16\x58\x94\xc0\x72\x73\xc6\x73\xfc\xa7\x2f\x37\x7f\xeb\xef\x1f\x9a\xff\xf2\x72\x90\x86\x7b\x7b\x7b\xd5\xb9\xb9\x39\xde\xd2\xd2\x92\xe4\x0c\x23\xef\xf6\x2f\xff\xc9\xcd\xa6\xdc\xc8\x8e\xd9\xd0\xd1\x78\xd6\xd3\xc6\x49\xf0\xd9\x88\x36\x39\xdc\x96\x3d\x39\x17\xd6\xde\x03\x61\x14\x02\x99\xe1\xe1\x61\x7e\xee\xdc\x39\x1e\x8d\x46\xf5\xce\xce\xce\x25\x10\x86\x2f\x75\x64\xbe\x76\xbd\x25\x77\xba\x2b\xe9\x7d\x28\x5c\x90\xe2\x39\x0f\x4f\xdf\x8d\x16\xae\x64\x14\xe3\x32\x4a\xd3\x90\xe7\x93\xc9\xa4\x76\xf9\xf2\xe5\x55\x6d\x5c\x65\x8b\x6e\x6f\x6f\x87\x69\xf9\x91\x7d\x45\x16\xa9\x34\x82\x4d\x55\xa7\xea\x18\x9d\x71\xb5\x28\x89\x0c\x11\xf1\x6c\x36\xbb\xaa\x33\xee\x21\xd4\xb3\x76\x61\xc7\x8e\x1d\x0c\x80\xcc\x0c\xc4\x02\x29\xbe\xbb\x54\x1b\xcb\xd2\x56\x6d\x71\x5b\x7d\xed\x1e\xc8\xf6\x4f\xc9\xf3\x3e\x8f\x2a\xba\x0a\x7e\x4c\x77\x74\x74\xe8\xba\xae\xb3\xe6\xe6\x66\x99\x71\xc4\x1f\x1b\x8b\xfe\xbe\x87\x53\xa9\x73\x6d\x5c\xc0\xe2\x74\x41\x4d\xea\x3d\x7a\xab\xe1\xb7\xbf\xbf\x63\xf1\x5f\x77\x76\x76\x6a\x5f\xfb\xda\xd7\xf4\x97\x5e\x7a\x49\x8d\xc5\x62\xd3\x00\xb4\xdb\x8d\xea\xec\x64\x63\xe1\x1d\x94\x96\x9d\x72\x40\x24\x05\x30\x4d\x44\xd3\x42\x88\xa5\x44\x22\xa1\x9d\x3b\x77\x8e\x03\xc0\xeb\xaf\xbf\xce\x5f\x7a\xe9\x25\x2d\x16\x8b\xcd\x03\x50\xf3\xb2\x31\x3d\xd6\x9c\x3f\x8b\xd2\x22\x37\x4d\x08\x91\x04\x90\x20\x50\x7a\x79\x79\x59\x7d\xed\xb5\xd7\x5c\x9f\xcd\xe9\x2e\xb4\x58\x34\x63\x82\x94\xf2\x93\xdb\x37\x4c\x71\xb8\x0b\x39\x83\x26\x08\xba\x73\x27\x9b\xfb\x08\x75\x29\x3e\x1e\x8f\x03\x80\x2c\x15\x45\x5c\x2a\x8a\x58\xa5\x62\xf6\x23\x56\x5f\x0b\x97\xdb\x2e\x81\x38\x02\x4a\x9e\x77\x6b\x01\xf9\x93\x8e\x8e\x0e\x44\x22\x11\x10\x91\xd2\x9a\x56\x76\x37\xe5\x3c\x7b\xca\xda\x0d\x84\x9d\xf4\x4b\x45\x08\x81\x4d\x49\xdf\xf1\xa0\x26\x75\x67\x14\x3d\x7d\xe0\xc0\x01\xfe\xed\x6f\x7f\x9b\x3f\xff\xfc\xf3\x6a\x4b\x4b\xcb\x2c\x11\x25\x01\x4c\x08\x21\x14\x73\xa2\x84\x4a\x44\x39\x00\xda\x9d\x3b\x77\xf4\x37\xdf\x7c\xb3\xea\x99\xbf\xfd\xed\x6f\xf3\xc3\x87\x0f\x6b\x43\x43\x43\x4b\x1e\x8f\x27\x8d\xd2\xbe\x21\xcc\x94\xd1\x3a\x11\x69\x63\x63\x63\xfc\xcc\x99\x33\xc8\xe5\x72\xae\xed\x55\xcb\x5d\xc8\x98\x20\xb9\xac\xb5\x38\xf8\x9a\xc3\x5d\xc8\x85\xb9\x5d\x91\x33\x0f\x97\x38\xd7\xb2\xe0\x2e\xb3\x5d\xf1\xa6\xab\x4d\x66\xba\x88\x90\x28\xd5\x5f\xc0\xbe\x6d\xb0\xc9\x36\x4b\x27\xe5\x5d\x63\xcb\x8b\xcf\xab\x52\x56\x42\xc5\x75\x42\x30\x5f\x1c\x39\x1c\x0e\x23\x1c\x0e\x43\x08\xe1\x8b\xe6\xe5\xa1\xd2\x9e\x9a\x56\x87\x56\x2b\x9a\x64\x92\xb3\xc7\xa0\x68\x44\x95\x7a\xb3\x5e\xe3\x5a\x24\x12\x01\x00\xf6\xca\x2b\xaf\xf0\xed\xdb\xb7\xeb\x7d\x7d\x7d\x99\x8e\x8e\x8e\x5c\x79\xe6\x24\x11\xee\xde\xbd\xcb\xaf\x5c\xb9\x62\xad\xaa\x5c\xd5\x16\xa7\x4f\x9f\xe6\x97\x2f\x5f\xc6\xe6\xcd\x9b\xb5\xf6\xf6\x76\xcd\xef\xf7\x83\x73\x8e\xe9\xe9\x69\xdc\xbe\x7d\x1b\x8b\x8b\x8b\x56\x5b\xb9\xb6\xa3\x5b\x07\x3b\x86\x2d\xd6\x4e\xac\xa2\x3c\xc4\x70\x71\x3b\x70\x72\x6a\xab\x1b\x97\xb9\xce\xeb\xfa\x78\x32\xeb\x29\xec\xcc\xd9\x1c\x03\x93\x65\x23\xa7\x32\xa1\x95\xbb\xc4\xb9\x2f\xb4\xd5\xff\x40\xb9\xcf\x4c\x99\x5e\xe6\x66\x44\xc4\x74\x26\x58\x65\xeb\xe2\x0a\xd4\xaa\x83\x95\x8f\x20\xf0\xa2\x24\x98\x10\xc2\xbe\x8e\x08\x23\x23\x23\xdc\xe6\x61\x43\x34\x1a\x65\xe6\xce\x05\xf5\x08\x81\x03\x40\x36\x9b\xe5\xc3\xc3\xc3\x30\x27\x2e\x02\x70\x1d\x7a\xba\x62\x57\x75\xb0\x65\x73\xe6\x24\x74\x6b\xcc\x41\x55\x4f\xe2\x48\x2f\x88\x91\x70\x1d\xcb\x6e\x44\x63\xde\x70\x30\x3c\x94\xe3\x0c\xaa\x24\x44\xa8\xc2\x25\x2b\xe2\x83\xca\xfb\x44\xd8\x15\x44\xd8\x06\xc6\xa8\x8c\xa9\xaa\x5f\x4e\x5e\xf4\x51\x12\x95\x97\x96\x03\xe0\x33\x11\x6d\xcc\x60\x42\x93\x45\xc5\xfc\x09\x2b\x2b\x2b\x4f\x02\x32\x5e\x63\x3e\xe5\xd7\xe7\x89\x88\xdb\xd6\x08\x97\x83\xb9\x2b\x00\x00\x20\x99\x4c\x5a\xf9\xaf\x19\x06\x07\x07\xab\x1c\xfe\xa9\x54\x8a\xd5\x98\xed\x51\x15\xec\xce\x86\xf2\x03\x12\x11\x37\x98\xd0\xab\x2d\x02\xf6\xc7\xaa\x5c\x4b\x82\x14\x26\xaa\x5e\x94\x5a\x06\x0d\x67\xa8\x35\x94\x82\x23\xde\x9e\x9e\x1e\x96\x4a\xb6\x00\x00\x1f\x36\x49\x44\x41\x54\xe9\xba\x0e\x00\xba\xee\xa1\xa4\xe6\x67\x09\x7f\xc6\x08\x55\xb8\xae\xe3\x05\xac\xe2\xdb\x8e\x47\x58\xfd\x28\x00\x00\xc3\x83\x8c\xe6\x67\xb3\x00\xf4\x74\x3a\x0d\x5d\xd7\x11\x8b\xc5\xb4\x8c\xd7\x98\xba\xd6\x9a\x3d\xb5\x63\x36\x74\xbc\x8a\x7a\xab\xe0\x02\x97\x3a\x33\xff\x54\x64\x22\x01\x40\xb7\xb6\x4d\x6a\x6a\x6a\x62\x7b\xf7\xee\x45\x6f\x6f\x2f\x33\xed\xcc\x0c\x00\x8e\x1f\x3f\xce\x55\x55\xd5\xaf\x5d\xbb\x86\xf3\xe7\xcf\x5b\xbb\xc4\x57\xb5\xd1\x81\x03\x07\xd8\xce\x9d\x3b\x4b\xbb\xfc\x94\xc6\xfb\xa5\xaf\xc7\x10\xf4\x03\x07\x0e\xe8\x9f\x7e\xfa\x29\xaf\x85\x85\xe9\xf0\xaf\xb2\x1a\x99\xbb\xdf\x70\x55\xe6\x99\x4a\x0b\xd8\x8f\x16\x97\x2b\x5d\xcb\x9c\x7c\x1e\x83\xf9\x0a\x1e\xc3\xd9\xb1\x6b\xf9\x77\x6b\x85\x7a\x32\x98\x27\x12\x09\xb6\x65\xcb\x16\x1d\x44\xe9\x95\xb8\x74\xd9\x97\x31\x7a\x61\xe3\xba\x95\xa1\x9d\x8d\x6a\x2d\x05\xd0\x7a\x04\xfb\x7b\x6b\x21\x4c\x93\x66\xae\x41\x1a\x35\x3c\x48\x00\xd0\xef\xde\xbd\x8b\xe9\xe9\x69\x3c\xf1\xc4\x13\x2a\x08\xb3\x1f\xf4\x25\xff\xba\x31\xef\xe9\xee\x48\x29\xfd\xe5\x8c\xac\x21\x23\x01\xd7\x5b\x72\x67\x2e\x74\xae\x7c\x1b\x84\x04\xe7\x5c\x3b\x73\xe6\x0c\xef\xee\xee\x66\x4f\x3d\xf5\x14\x93\x98\xe4\x6b\x50\xa5\x96\x2d\x89\xc0\xb1\x68\x5e\xde\xaa\x33\x91\x9f\x69\x28\x9c\xbd\x15\xa3\x8f\xf7\xec\xd9\x93\xe9\xeb\xeb\xd3\x5e\x7b\xed\xb5\xaa\x0d\xdc\x9e\x79\xe6\x19\xd6\xdd\xdd\xad\x78\x74\x8a\xee\x9c\x0a\x9e\xe8\x5f\x08\x7c\x21\x54\x90\x3a\x72\x8a\x31\x3f\x16\xcf\xbf\x36\xdc\x9e\xf9\xde\x9e\x3d\x7b\x96\xba\xba\xba\xb4\x7f\xf8\x87\x7f\x70\x6d\x53\xc9\xde\xa0\xe1\x70\x18\xe6\xf4\x90\x70\xdb\x8a\x72\xa8\x2b\xe5\xdb\x53\x69\x91\xca\x8f\xc8\x76\x2d\x80\x6b\xad\xb9\x37\x72\x5e\x7e\x33\x95\x4a\x15\x6e\xde\xbc\xe9\xa6\xca\x5a\xad\xcd\xe0\x96\x61\x75\x1c\x1c\x47\x0b\x27\x00\xb0\x42\xa1\x80\x1d\x3b\x76\x10\x08\x1e\x5d\x21\x6f\x6c\x4a\x7f\x8a\x01\xcc\xa6\xcc\x56\xe0\x54\x83\xd4\x56\xd5\xb0\xf4\x4c\x82\x08\x33\x03\xde\xbf\x29\x84\xa5\xd3\x00\x16\xaf\x5c\xb9\xc2\x6f\xdd\xba\x85\xee\xee\x6e\x1e\x08\x04\x8a\x86\x84\xfc\x8d\xe6\xdc\x4d\x9d\x41\x09\x15\xa4\x46\x99\x93\x62\x10\xf4\xe5\xa0\xbe\x70\xba\x37\xfd\xea\xe9\xcd\xe9\xaf\x0b\x86\xcb\x00\x16\x26\x27\x27\x8b\xba\xae\x93\xd9\xb9\x91\x7d\x53\xe1\xff\xe9\xb9\x91\xa6\xff\xda\xb7\xe4\xff\x85\xd6\x8c\x72\xb4\x7d\xc5\xfb\xf8\xd6\x05\xff\x2f\xf6\x27\x02\x47\xe7\xc2\x85\xcb\x7a\xc4\xb3\xd8\xdb\xdb\xab\x8f\x8e\x8e\x92\x61\x18\xf4\xe4\x93\x4f\x52\x6f\x6f\xaf\x12\x2a\x48\xbd\x2f\x5e\x69\xfe\xfa\xf6\xb9\xe0\x6f\x46\x0a\xf2\x90\xcf\x60\x9d\x61\x4d\x1e\xe8\x4e\x7a\x4f\x6c\x49\x04\x3e\x3f\x19\x55\xcf\xb2\xa8\x2f\xb9\x69\xd3\x26\x63\x74\x74\x94\x84\x10\x55\xed\x5a\xb5\x21\x78\x26\x93\x11\xfb\xf7\xef\x27\x21\x44\xb0\x29\xef\xd9\xdb\xbb\xe4\x3b\xe4\x36\x8f\xc3\x2e\x76\x40\x60\xb7\x62\xea\x07\xc9\x80\xfe\xa9\xcf\xe7\xcb\x9b\xd3\x3b\x85\xcb\x0f\x35\xe2\xd7\xfa\xc1\x7e\x54\x55\x55\xf4\xf7\xf7\x0b\x9f\xcf\x07\xdd\x4b\xc2\x97\xe5\xdb\xfc\x19\xbe\x69\x55\x47\x92\xad\x9e\xf6\x57\xa7\xdc\xf1\x36\xcd\xcb\xb4\xaf\xe7\x1a\xa4\xb1\x99\x21\xef\x57\x41\x34\xae\xeb\x7a\xee\x9d\x77\xde\x31\x84\x10\x62\x61\x61\x81\xb6\x6c\xd9\x62\x48\x92\x94\xe3\x0c\xcb\x77\xa3\x85\x1b\xc3\xed\x99\x73\xc3\xed\xb9\x1f\x5e\xec\x5a\xf9\xc1\x85\xce\xcc\xf7\xe6\x23\xc5\x77\x51\xda\x4c\x66\x2e\x93\xc9\xe4\x4f\x9d\x3a\x85\xa7\x9e\x7a\x0a\x1e\x8f\x27\xb8\x6b\x26\xf4\xb3\x8f\xdd\x8c\xfe\x99\x2c\x58\xb8\xea\xbd\x02\x21\x50\x94\x36\xf5\x2d\xfa\x9f\x1c\x6f\xca\x9f\x14\x21\xcf\x62\x20\x10\x30\x18\x63\xd8\xbf\x7f\xbf\x4c\x1c\x4d\x27\x46\xe2\x7f\xde\x91\xf6\x3e\xe5\xec\x07\x02\xc1\xaf\x4b\x9d\x9b\x92\xbe\x87\xaf\xb5\x66\xff\xd1\x17\x0e\xae\x68\x9a\xc6\xe7\xe6\xe6\xac\xf6\x27\x98\xee\xc2\x32\x3b\xb5\x4d\x6f\xd1\xd3\x5e\x63\xc6\x9e\xa1\xb0\xb7\xb5\x30\x57\xd0\x98\x8a\x4c\x34\x2f\x6f\x12\x42\xc8\x8e\x0f\x3f\xda\xd9\x34\x73\xf9\xc1\x91\xd6\x79\xac\x85\x87\xa9\x8d\xaa\x02\x98\x9e\x1e\xf4\xfe\x57\xcd\xcb\x92\x96\x8f\xc8\xea\x35\x61\xf3\xb6\x54\xc5\x9b\xc3\x1a\x01\xd8\x5c\x87\x80\x21\x91\x76\x77\xbb\xef\xaf\x05\xa3\x09\x21\x44\xe6\xda\xb5\x6b\x65\x51\x93\x48\x24\xf0\xc6\x1b\x6f\xf0\x62\xb1\x98\x41\x69\x83\xb6\x8f\x75\x12\x3f\xc8\x7a\x8d\xef\xe5\x14\xfe\x2a\x27\x71\x12\xc0\x45\x00\xd3\x99\x4c\x26\xf7\xea\xab\xaf\xa2\xad\xad\x0d\x5e\xaf\x57\xf1\x1a\xac\xe3\xd0\xed\xc8\xef\x90\x80\x5c\x59\x75\x54\x59\x20\x2f\x84\x40\xa0\xc8\x7a\x0f\x4f\x44\x7e\x0b\x02\xd1\x81\x81\x01\xf6\xd8\x63\x8f\x41\x08\xa1\x74\x27\x7d\x47\xbb\x92\xde\xa7\x85\xa8\x20\x9c\xd8\x58\x4e\xde\xb7\x6b\x26\xf4\x73\x42\x88\xd0\x9e\x3d\x7b\x60\xca\xf7\x72\xfb\xda\x3d\x49\x4c\x08\xc1\xb3\xd9\x2c\x27\x22\x6d\xc5\xa7\xcf\x0a\x4b\x06\x9a\x43\x11\x4b\x66\x11\xd9\xdc\x85\x44\x88\x67\x95\x7e\x02\xf9\x3c\x1e\x8f\xbd\xd3\x9c\xae\x3e\x37\xa7\x82\x53\x4e\xd7\x74\x30\xd8\xaf\xaf\x5c\xb9\xc2\x73\xb9\x9c\x06\x20\x51\xf4\xd1\x27\xb7\xf7\xf8\xbe\x6a\xc8\xc8\x55\xe4\x2f\x2a\xdd\xea\xe6\x2e\x14\xe6\x7d\xd3\x75\x28\x18\xf4\xa9\x1d\xbe\xbf\xc9\x35\xb0\xf7\x01\xcc\xea\xba\xae\xd9\xd6\x00\x71\x00\x7c\x6e\x6e\x8e\xbf\xfc\xf2\xcb\xb8\x7a\xf5\xaa\xaa\x69\x5a\x92\x88\xa6\x84\x10\xe3\x00\xc6\x89\x68\x3a\x97\xcb\x25\xcf\x9e\x3d\xab\x7d\xf3\x9b\xdf\xe4\xe9\x74\xba\xec\xf0\x6f\x4f\x2b\x07\x82\x9a\xd4\x4d\xa6\x97\xcb\x14\x72\xe5\xf6\xb4\xdc\xaf\xdd\xcb\xbe\xe3\x8a\x41\x6d\x42\x08\xd9\xe3\xf1\x30\x22\x0a\xf5\x2c\xf9\x9e\x22\x90\xbc\x16\x76\x4b\xc2\xff\x2c\x81\x22\x5e\xaf\x57\x36\x3f\xcc\x59\x6e\x2b\xbb\xa9\x12\x00\x58\x36\x9b\x45\x30\x18\xd4\x57\xbc\xc6\xbc\x26\x8b\x8c\x4f\x87\x69\xb2\xb4\x6d\x1e\x5a\x9e\x36\x52\x12\x91\xcd\x59\x4f\x3f\x01\x01\x01\xc8\x83\x83\x83\xdc\xdc\x4b\xb2\xa6\xbb\x0f\xd5\xa1\x9e\xa6\x5d\x33\x9c\x3a\x75\x0a\x4f\x3e\xf9\x64\x86\x18\x9b\xc8\x36\xca\x6f\xdc\xda\x1f\x90\xbb\x2f\xe7\xbf\xa2\xe4\x11\xb3\x2b\x4f\x15\x93\x8c\xb5\xc4\x86\xaa\x86\xc1\x86\x42\xb9\xa9\x1d\xde\x6f\x26\xdb\xe4\xbf\x13\xc0\x18\x01\x99\x8f\x3f\xfe\x98\x9b\xae\xc2\x2a\xc5\x31\x9f\xcf\xe3\x83\x0f\x3e\xe0\x1f\x7d\xf4\x11\x5a\x5b\x5b\x79\x2c\x16\xc3\xf0\xf0\x30\x6f\x69\x69\x61\xb6\x39\x68\x00\xc0\x4c\x8b\x9b\x12\xd4\xe4\x5e\x54\x94\xd7\xea\xcf\xff\x50\x45\xf6\x78\x0c\x16\xf1\xea\xac\xa5\x20\xf1\x31\xb3\x3c\x9f\xbf\xc8\x5a\xca\x5f\x95\xa9\x83\xf5\x17\x59\x0b\x13\x08\x19\x54\x2a\x77\x76\x76\xb6\xdc\xf6\x4e\xa7\x00\x37\x55\x7b\x5d\x93\x44\x72\xc5\xab\xcf\x5b\x0b\xce\x9c\x1b\x79\x8b\xb2\xa7\x89\x10\xcd\xc9\xbd\xbe\x22\x8b\x09\x21\x64\xdb\x58\x6d\x3d\xd4\x78\xcf\xbf\x89\x89\x09\xfe\xe9\xa7\x9f\x72\x00\x49\x01\x31\x9a\x69\x64\xaf\xdc\x38\x14\xf8\x83\xc5\x4d\x9e\x33\x5c\x86\x66\xef\xdf\xf2\xae\xf2\x36\x59\x2c\x18\x78\xaa\x55\x1e\xbe\x71\x28\xf0\x87\xcb\x6d\xf2\xb7\x04\x30\x02\x60\xe9\xc6\x8d\x1b\xfa\xa7\x9f\x7e\x5a\xaf\xde\x30\x0c\x83\x4f\x4f\x4f\x73\x73\xe5\x06\x33\x17\x84\x95\x39\x21\x00\xee\xf1\x78\x20\x84\x60\x05\x99\x6b\xe5\x8a\x94\xb5\xfa\x8a\xe6\x0e\x51\xe2\x28\xba\x24\xb4\xa2\x24\x74\x4b\x4c\x0a\x21\x90\xf2\xeb\x4b\x15\xab\x59\x6d\xec\x6c\x58\x1b\xe7\x54\x1a\xb7\xdb\xc6\xee\x00\x2a\x13\xdf\xad\x48\x96\x48\x24\xb0\x75\xeb\x56\x1d\x84\xdc\x42\xa8\x38\xd1\x9c\x51\xfa\xad\x02\x2c\x2a\xa8\xda\xba\x41\x00\x1e\x4e\xa1\xd6\x15\x65\xfb\x44\x93\x3a\xd2\xde\xde\x9e\x83\x3b\xf5\xda\x3b\xbe\xde\x50\x69\xd5\xb8\xbc\x56\xfa\xd3\xa7\x4f\x73\x9f\xcf\xa7\xf7\xf7\xf7\x2f\x11\xd1\xb5\xa2\x17\xe9\xa9\x1d\xde\x89\xf9\xcd\xca\x43\xd1\xd9\xe2\xa1\x70\xc2\x18\xf0\x65\x78\x9c\x19\x42\x81\x00\x13\x12\x69\x85\x20\x2d\x65\x62\xf2\xf8\x72\xbb\x7c\x56\x0d\xb3\xf3\x20\x1a\x83\x10\x53\x44\x94\x1c\x1b\x1b\xd3\x4e\x9e\x3c\x69\x79\xd5\x50\xab\x5c\x47\xbc\xab\xb8\xc9\x66\xb3\x08\x87\xc3\x7c\x36\xac\x8d\x69\x92\xc8\x78\x75\x0a\x95\x37\x69\x35\xdb\xcd\xae\x38\x4d\x34\xe6\x2f\xaa\x32\x4f\xc2\x34\xfb\x12\x91\x76\xb3\x29\xff\xc3\x03\x93\x91\x5f\x90\x05\x29\xb5\xb0\x82\x04\xae\xb7\xe4\x3e\xc4\xea\x09\x17\x00\xaa\x9d\x0d\x00\xc0\xd3\xe9\x34\x03\xc0\x85\x10\x99\x99\x48\xe1\xda\xf6\xd9\xc0\x93\xa5\x8c\x2b\x9d\x8c\xb2\x90\xb7\x58\x07\xa1\x67\xd9\xf7\xb9\x5b\xb1\xfc\xab\xd1\x68\x94\x05\x02\x01\x6e\x6e\x6a\x56\xd7\x04\xb7\x81\x7b\x35\xd3\xbf\xfb\xee\xbb\x7c\x69\x69\x49\x7f\xf8\xe1\x87\x93\x44\xa4\x82\x68\xa9\x10\xc0\xc4\xfc\x16\xef\xe9\xf9\x3e\x11\x27\x81\x28\xd3\x4b\x9f\x99\xe5\x12\x72\x82\x21\x29\x4a\xab\xf6\x66\x85\x10\xf3\x54\xda\x35\x3e\x37\x32\x32\xc2\x5d\xf6\x0e\xd9\x48\xfd\xab\xe2\x12\x89\x04\x42\xa1\x90\x9a\x55\x8c\xc9\xcb\x1d\x99\xb7\x0f\xdc\x09\xbf\x00\x41\x55\x46\x33\x61\x1a\x67\x8a\x4c\xa8\xe7\xbb\x57\xbe\x23\x20\x92\x84\x92\xc3\x5f\x08\x91\x5b\x08\x15\x87\x2f\x75\xae\xbc\xbd\x6f\x2a\xfc\x5c\x2d\xec\x8d\xe6\xfc\xd9\xdb\x31\xf5\x23\x21\x44\x46\xd3\x34\xdd\x39\xcf\xdb\x1a\x07\x97\xc7\x9a\xaa\xaa\xd2\xee\xdd\xbb\xc1\x18\xf3\x0a\x42\x6c\xe7\x4c\xe8\x39\x56\x92\xe6\xb0\xf6\xc1\x12\xb6\xad\x1b\x4a\xf2\x01\xf0\x17\x59\xf0\x72\x67\xf6\xbb\x02\x48\xa5\xd3\x69\x23\x91\x48\xd8\xc7\xaf\x70\x96\x53\x23\x8e\xa1\x7a\x7c\xbc\x2e\xec\xdc\xdc\x1c\x9f\x9c\x9c\x44\x43\x43\x43\x31\x1c\x0e\xe7\x01\x24\x89\x68\x5e\x00\xd3\x82\x70\x9b\x4b\x18\xe3\x12\xae\x9b\xdb\x14\x8f\x01\xb8\x45\x44\xb3\x00\x52\xc9\x64\x52\x3d\x79\xf2\xa4\x30\xed\xbc\xf5\xca\x75\x8e\xdd\x9d\xe3\xfb\x2a\xac\xae\xeb\xb4\x75\xeb\x56\x01\x82\x98\x8e\x14\x16\xc3\x05\xb9\x27\x9e\xf5\x74\x10\xa8\x6a\x3b\xcf\x82\x2c\x72\x6f\x0f\x2c\xfd\xf5\x9d\xa8\xfa\x06\x80\xc9\x42\xa1\x90\x1f\x1b\x1b\x43\x73\x73\xb3\x01\x82\x31\x15\x2d\xcc\x31\x50\x43\x4b\xd6\xd3\xcd\x04\x24\xcb\xb0\xce\x99\xe0\xd7\x5a\x73\x3f\x7c\x67\xeb\xf2\x9f\xeb\x4c\x0c\x03\x48\x5c\xbe\x7c\xd9\x30\x3f\xdb\x53\xae\x93\x73\xa7\x3b\x32\x0c\x03\x3d\x3d\x3d\x22\x18\x0c\xb2\x82\xcc\x03\x3b\x66\x83\xcf\x28\x06\x0b\x96\x25\x2e\x99\x42\x8d\x50\x3e\x27\x10\x14\x9d\x45\x6f\xc7\xd4\xf7\xb2\x3e\x3e\xe1\xf1\x78\xb4\xd1\xd1\x51\xa7\xb1\xc2\x79\x74\xb3\x58\x59\x18\xee\x68\x44\x38\x8e\xe4\xc4\xe6\x72\x39\xba\x71\xe3\x06\xa6\xa7\xa7\x39\x11\x15\xfd\x7e\x7f\xde\xe3\xf1\x64\x88\x28\x65\x76\xf8\x32\x80\x65\x22\xca\x68\x9a\x96\x9d\x9c\x9c\x2c\x9e\x3b\x77\x8e\x7f\xf4\xd1\x47\x3c\x9d\x4e\xaf\xa7\x5c\x7b\xb0\x8f\xf5\xed\xac\xb9\x8c\x4d\xa7\xd3\xd8\xb4\x69\x13\x0f\x06\x83\x45\xc1\xa0\x8e\x37\xe5\xc7\xe7\xc2\xda\xb2\x00\x64\x43\x12\x3c\xe9\x37\x16\x47\x5b\x72\x17\xdf\xdd\xba\xfc\x9f\xa7\x1b\xb4\x37\x41\x74\x83\x88\xd2\x1f\x7e\xf8\x21\xbf\x70\xe1\x82\x85\xd5\x04\x21\x77\x27\x5a\xb8\x75\xa3\x39\x3f\x96\x0c\xe8\x2b\xcb\x01\x7d\x71\x3c\x9e\xff\xf4\xa3\xcd\xa9\xef\x5c\xee\xc8\xfe\xad\xc1\xc4\x25\x53\x8b\x57\x4f\x9e\x3c\x69\x99\x2c\xcb\x75\x76\xb2\x68\x00\xc0\xcc\xcc\x0c\x9a\x9b\x9b\x35\x83\x90\x98\x8a\x16\xae\x0d\xcd\x49\x2d\x00\xca\xde\x99\xd2\x39\x2a\x82\xb8\xf4\x52\xb1\xc1\xb9\xc0\x17\x66\xc2\x85\x8f\x3a\x3a\x3a\x72\x91\x48\x84\xa7\xd3\x69\xeb\xc1\xed\xe3\xd9\x7a\x32\xd8\x4d\xeb\x5e\x6f\xe0\x00\xd8\xec\xec\x2c\xb7\x69\x91\xbc\xbb\xbb\xbb\x4a\xa6\x4f\x4e\x4e\xba\xc9\x57\x37\x7d\xa1\x9e\xad\x7c\x4d\xac\x10\x02\x3f\xf8\xc1\x0f\xd8\x89\x13\x27\xd4\x50\x28\x34\x2d\x08\xda\x44\x93\x3a\x3d\x11\x53\xdf\x02\x10\x02\xa0\x83\x90\x44\x69\x6b\x86\x69\x00\xe9\x89\x89\x09\xdd\xda\xcd\xde\x8e\x05\x21\x97\x0c\xe8\x53\xc9\x40\xe6\x14\x4c\x87\x3f\x4a\xa2\x65\x96\x40\xc9\x6c\x36\x9b\x7b\xed\xb5\xd7\x50\x28\x14\x56\xd5\x51\xb2\x45\x94\xad\x47\x92\x24\x51\x7f\x7f\x3f\x40\x50\x24\x41\x1d\x5b\x13\xfe\xd2\xc7\x35\x2c\x77\xa1\xa5\xd9\x55\xb4\x36\x10\x08\x11\x55\x6e\xf9\xb4\x3d\xfb\x7d\x43\xc2\xb2\xa6\x69\xfa\xf4\xf4\x34\x77\xe6\x6d\xbb\x86\xcb\x39\x6a\xa4\xa9\x15\xd6\xc4\xa6\x52\x29\x61\xff\xb9\xa4\xb5\xd8\xb0\xc5\x59\xec\xf5\x5c\xab\x9c\xba\xd8\x42\xa1\x20\xae\x5c\xb9\x22\x7a\x7a\x7a\x74\xbf\xdf\x9f\x25\xa2\x25\x01\x31\x8d\xd2\x37\x28\x6e\x03\xb8\x2d\x84\x98\x15\x42\x64\x2e\x5f\xbe\x5c\xb5\x82\xdf\xc2\x36\x36\x36\x1a\x0d\x0d\x0d\x39\x22\x4a\x0a\x21\xe6\x01\xdc\x25\xa2\xbb\x00\xe6\x85\x10\xe9\xd9\xd9\xd9\xc2\xdf\xff\xfd\xdf\x73\x55\x55\x5d\xeb\x28\xc1\x25\xa4\x52\x29\xb1\x6b\xd7\x2e\x92\x24\x49\xca\x79\x0c\x65\xe7\x6c\xe8\x59\xd9\xfc\xa8\xd5\xea\x50\x11\x59\x1e\x4e\xe1\x94\xcf\x18\x9f\x0f\x17\x2f\xc7\x62\x31\xf5\xd2\xa5\x4b\xeb\xe9\xa4\x1f\x77\xd8\xc8\x0b\x75\x4f\xd8\xab\x57\xaf\x0a\x55\x55\x85\xd7\xeb\xd5\xbc\x5e\xaf\x2a\x49\x52\x06\x40\x26\x9b\xcd\xe6\xc6\xc7\xc7\xf5\xf7\xdf\x7f\x5f\xdc\xb8\x71\xc3\x95\x5b\x8d\x8f\x8f\x8b\x4f\x3e\xf9\x84\xcb\xb2\x6c\x48\x92\x54\xe0\x9c\xab\xaa\xaa\x16\x6e\xdd\xba\x55\x3c\x7f\xfe\x3c\xb7\xa6\xf8\xd4\x0a\x84\x1a\xc3\x92\x13\x27\x4e\xa0\xa3\xa3\x23\x04\x81\x9d\x27\x3e\x6d\xfa\xe3\xfe\xc5\xc0\xa1\xea\xe7\x22\xc7\x59\xe9\x3c\x11\xd4\x2e\xbe\xbc\x6f\xee\xcb\x06\xc3\xc4\xfb\xef\xbf\xaf\x5f\xbb\x76\xad\x56\xd9\xf5\x58\xa0\x3d\xbe\xaa\x5e\x2e\xe9\xee\x05\x5b\x6f\x28\xb6\xd6\xd0\xee\xbe\xb0\x5e\xaf\x17\xd6\xea\x03\xf3\x23\x59\xe5\x7b\xc1\x60\x10\xe1\x70\xb8\xbc\xc2\xdf\x36\x5b\xe3\x9e\xcb\xb5\x9c\x0d\x96\xd2\x52\x56\x60\x88\x88\x7a\x7b\x7b\x39\x08\x8a\x41\x68\x1a\x58\xf0\x7f\xae\xdc\x91\xe6\x58\xb8\x74\x51\x7d\x1e\x28\x4a\x2d\x8b\xc1\xe2\xd5\xc5\x80\x7e\xbd\x31\xd6\x58\x30\x8d\x01\x76\xf6\x65\x95\x65\x0f\xb5\x34\x57\x3b\x16\x70\xa7\x94\x8d\x62\xad\x7b\x76\xc5\xca\x9e\x0f\x39\xb0\xc2\x76\x9f\xee\x17\x6b\x18\x06\x15\x8b\x45\xfb\xf7\x0b\xa9\xa7\xa7\x87\x8e\x1f\x3f\x8e\x83\x07\x0f\xb2\xa1\xa1\x21\x69\xf3\xe6\xcd\x6c\xdb\xb6\x6d\x6c\xcf\x9e\x3d\x14\x89\x44\xc4\xe2\xe2\x22\x99\x1b\xc8\x6d\xb8\xdc\x2a\x77\xa1\xbd\xd1\x72\xb9\x1c\x76\xec\xd8\x01\xc6\x18\x65\xbc\x06\x0d\xcd\x07\x8f\x7b\x0d\x29\x68\xd9\xa2\xcb\x96\x51\xbb\xeb\xb0\x74\x4d\xd1\xbc\xdc\x35\xd2\x96\x7d\x43\xf1\x7b\x33\xba\xae\xf3\xb9\xb9\x39\xbb\xe6\x8c\x2a\xc0\x6a\xed\x18\x8e\x63\xbd\x61\xd4\xbd\x60\xed\x69\x6a\x61\xdd\xca\x82\x23\xcd\x7d\x63\x89\x88\x8e\x1e\x3d\x8a\x43\x87\x0e\xc9\xa1\x40\x30\xd0\x9a\x55\xb6\x0e\x2c\x04\x9e\xd9\xbc\xe8\x7b\x34\x52\xf0\xb4\xa8\x5e\xb1\x12\x69\x69\xd2\x06\x06\x07\x78\x36\x9b\x85\xb9\xe6\x7a\x43\xe5\xd6\xfc\x7e\xb0\xae\xeb\x14\x8d\x46\x45\x53\x53\x13\x0c\x12\xb2\x5f\x67\xbd\x9d\x29\xef\xb6\xca\xfc\xa7\x52\xca\xca\x04\xbc\x0a\x25\x07\x8a\xac\x2d\xab\xf0\xa9\xb9\x88\x76\xa5\xb9\xb9\x59\xbb\x74\xe9\x92\xe1\x56\xc6\x3a\x7f\x40\x8d\x3a\x7e\x86\x58\x27\x07\x70\xa3\x90\xfb\xc6\x1e\x3d\x7a\x94\xb6\x6f\xdf\x2e\xfb\x74\xa9\xed\xa9\xeb\x8d\xbf\xf7\xe8\x78\xe3\x9f\x6c\x5e\xf2\x7f\xa9\x2b\xe5\xfb\x17\x7d\x8b\xbe\x2f\x6f\x9f\x0d\xfe\x74\x51\x12\x4b\x8b\x51\x7e\xb3\xa7\xb7\xa7\xb8\xb4\xb4\x24\xcc\x79\x5c\xeb\x2e\xd7\xa2\x60\xb7\x01\x3b\x54\x55\xc5\xe0\xe0\xa0\x20\x22\x96\xf2\xeb\x62\xd7\x4c\xe8\x69\x49\x40\x2e\xc3\xcb\x0c\x82\x50\x5e\xf4\x85\x92\x46\xdd\xb2\xa2\x6c\xbb\xde\x92\x7d\x93\x7b\xa5\xe5\xc6\xc6\x46\x63\x7c\x7c\xdc\x49\x79\x76\x76\x5b\xcf\xe0\xe1\x76\x8d\xfb\xc0\x3a\x8d\x25\xae\xcf\xee\xa8\x2b\x1e\x34\xb6\xaf\xaf\x8f\x1e\x79\xe4\x11\x99\x71\xc4\xbf\xf8\x69\xfc\xcf\xfa\x96\xfc\xbf\x48\x80\x52\x4a\x51\x82\x79\x04\x45\x7b\x96\x7c\xcf\x66\x15\x63\x72\x21\xa2\xdf\xe8\xe8\xe8\x28\x8c\x8e\x8e\x92\xae\xeb\xeb\x2e\xd7\xa2\x60\xd7\x37\x20\x93\xc9\xf0\x2d\x5b\xb6\x08\x9f\xcf\x07\x4d\x12\x2c\x9a\x97\x87\x9a\xb3\xde\x9e\xb2\xbb\xd0\x64\xd1\x56\xa7\x96\xc6\xc6\xa5\xb2\x3d\x9c\x22\x01\x4d\x0a\xde\x8c\xe7\x4f\x45\x1b\xa3\xea\xe2\xe2\xa2\xb5\x21\x9a\x9d\xba\x98\xe3\xda\x8d\xda\xdc\xae\xef\x07\x2b\x1c\x58\xa7\x1c\xab\x45\x71\x0f\x14\xfb\xec\xb3\xcf\x92\xa2\x28\xa1\x6d\xb3\xc1\x97\xf6\xdd\x0d\xfd\x5b\xfb\x66\xa4\xa5\xf9\x08\x04\x08\x80\x88\xa4\xf6\xb4\xf2\xf0\xb5\xd6\xdc\x6b\xc2\x27\x2d\x1b\x86\x61\x4c\x4f\x4f\x63\xbd\xe5\x56\x39\x87\x6d\xd7\x65\xc3\xc4\x95\x2b\x57\x20\x84\x50\x41\x98\xfe\x78\xd3\xca\xb7\x75\xc6\xb5\xca\x1a\xe1\x4a\xbb\x0a\x73\x8e\x96\xb5\x05\x2e\x00\x0c\x2e\x04\x7e\x76\xeb\x82\xff\x19\x02\x05\x8e\x1d\x3b\x56\xb3\x8c\x7b\xfc\xdd\x0f\x96\x3b\xf2\xb1\xd7\x6d\xad\x7a\xde\x37\x36\x1e\x8f\x33\x6b\x17\xa3\xc1\x85\xc0\x4b\x30\xc5\x1e\x4c\x46\x58\xf2\x26\x59\xd7\x02\x3e\x9d\xb5\xf5\x2d\xfa\x9e\x06\x10\xd8\xba\x75\xab\xa3\xd8\xfa\xe5\x3a\x2d\x32\xab\x7e\x57\xaf\x5e\xe5\x99\x4c\x46\x03\x90\x5c\x0e\xe8\x17\x47\x5b\x72\x67\x80\x6a\x77\xa1\x00\x40\x82\xca\x86\xad\xd2\x6e\xe5\x04\x26\x48\x79\xec\x66\xe3\xbf\x8f\xa8\xd2\x80\xd7\xeb\xf5\xbd\xf0\xc2\x0b\xac\x56\x39\x3f\xe2\x9f\xf3\x79\x9d\xf5\x72\x5e\xe3\x41\x62\xad\xd5\x19\x04\x44\xc2\x05\xa9\x8b\xca\xed\x66\xf7\xb3\x03\x95\x5e\x27\x34\xe4\xe5\x41\x00\xbe\x60\x30\xc8\x6a\x94\xe3\x5a\xae\xdb\x9b\x06\x54\xbf\x09\xec\xd2\xa5\x4b\x10\x42\xe4\x04\xc4\xd4\xd9\xee\x95\xbf\x2b\x78\x78\xf9\xfb\x37\x36\x82\x85\x9d\xfd\x5b\x62\x39\xa8\x49\xdd\x4f\x5f\x6f\xfa\x0f\x92\x81\x96\xe6\xe6\x66\xe5\xd1\x47\x1f\x75\x7b\xfb\xed\xa1\x16\xa5\xae\x27\x6c\x04\x6b\x8f\xb7\x8f\x8f\x99\xe3\xfa\x81\x63\xcd\x35\xd8\x10\x80\x5c\x90\x4a\xfe\x62\x2a\xeb\x32\xa5\x44\x25\xde\x6f\x3a\x05\x49\x20\xa7\xf0\x8c\xb9\x6c\x65\x43\xe5\xda\x7b\xdd\x02\x39\xa9\x1a\x23\x23\x23\x16\x15\x2f\xa5\x7c\xfa\xc5\x4b\x1d\x2b\x6f\xc3\xdc\x9d\xbc\xb2\x67\x47\x89\xed\x97\xac\x99\xc2\xd4\xb9\x4a\xf4\xdd\x99\x52\x8e\x1f\xbb\xd9\xf8\xdb\x0c\x14\x1d\x1c\x1c\xb4\x56\xd0\xd7\x0a\xb5\xa8\x6d\x3d\x61\x23\x58\xb7\x78\xee\x88\xff\x4c\xb0\xe6\x6c\x11\x80\xa0\xdd\x69\x2c\x8c\x08\x6b\x3b\x0c\x5b\xe7\x96\x42\x29\xc2\x20\x68\x13\xb1\xfc\x25\x22\x72\x5b\x03\x56\xb7\xdc\x55\xee\x42\x54\x2b\x0e\x65\x6d\x4c\xd7\x75\xea\xe9\xe9\x31\x00\x18\xf3\xe1\x62\xb6\x3f\x11\x38\x12\x28\x4a\x21\xeb\xc5\xab\x8c\x89\xed\x55\xb4\x94\x30\x42\x4b\xc6\xb3\xcf\x20\x91\x9e\x6e\xd0\xae\x74\x6d\xea\x2a\x68\x9a\x86\xf9\xf9\xf9\xb5\xc6\xb9\x4e\x65\xcc\xa9\xc5\xde\x0b\xd6\x99\xae\x9e\xa6\x5e\x0f\x73\xcf\xd8\x42\xa1\x80\xdd\xbb\x77\x0b\x00\xf2\x52\x40\xe7\x83\xf3\xc1\xc7\x15\x83\xf9\x60\xcb\xa0\x64\x5e\x28\xb5\xe3\x68\x4b\xee\xf4\x70\x7b\xf6\x6f\x41\x98\x9a\x9b\x9b\x2b\x5c\xbf\x7e\x7d\xdd\xe5\xae\x72\x17\x5a\x1d\x6a\x8b\x03\x00\x4a\x24\x12\xbc\xbb\xbb\x5b\x84\x42\x21\x6e\x30\x18\x69\x9f\x4e\x03\x0b\x81\x47\x4a\x4a\x9f\xe9\x27\x36\xcb\x28\xbb\x11\xcd\x85\x5f\x66\x46\xd4\x99\xf2\x1d\x51\x3d\x7c\x6e\x3e\x5c\xbc\xde\xb5\xa9\x4b\xd3\x34\x4d\x98\x9d\x6c\xb7\xcc\x00\x15\xcd\xd0\x39\x04\x80\x2d\xce\xc9\x6d\xd6\x8b\x85\x2d\x9d\x7d\x04\xb1\x16\xd6\x1e\xee\x0b\x5b\x2c\x16\x45\x67\x67\x27\x82\xc1\x20\x8a\xb2\xd0\xe7\xc2\x5a\xbe\x67\xd9\xb7\x5b\x31\xc8\x6b\xeb\x57\x00\xc0\x64\xac\x30\xf2\xd6\xe0\xd2\x9f\x1a\x12\x3e\x05\xb0\x74\xf1\xe2\x45\x6e\xee\x4f\xb9\xae\x72\xed\x86\x0e\x7b\x65\xec\x15\xb7\x32\x61\xc9\x64\x12\x03\x03\x03\x3a\x11\x15\x93\x7e\x3d\x1f\x29\xc8\x9b\x9b\x57\x3c\xdd\x64\x9b\xc3\x53\xce\x84\x2c\x93\x08\xca\x72\x9a\x09\x92\xbb\x93\xbe\xc7\xf2\x8a\x71\x77\x3e\x52\x1c\xeb\xea\x2a\x77\xb2\x7d\x28\xe1\x1c\x7a\x38\x55\x7f\xfb\xd0\xc3\xfe\xe6\x6e\x04\xeb\xe4\x06\x4e\x2c\x1c\x78\x67\x7e\xf7\x8d\xcd\x64\x32\x34\x30\x30\xa0\x03\x28\xae\x78\x8d\xa5\xd1\xe6\xdc\xb8\xc1\x20\xcb\x9c\x79\x8b\x4c\x14\xe6\xc2\xda\xd4\xd9\x9e\xf4\x3f\x7e\xb4\x39\xf5\xf5\xa2\x8c\xf3\x00\x66\x53\xa9\x94\x7a\xf2\xe4\x49\xbe\x91\x72\x5d\xdd\x85\x8e\x6b\x2b\x13\x91\xc9\x64\x84\xd7\xeb\x45\x6b\x6b\xab\x0e\x82\x3e\xdd\x50\x58\xee\x5f\xf4\x1f\xf6\xeb\x52\xb0\xbc\x3a\xc0\x36\x36\xb6\xb4\xed\x8a\x7b\x11\x60\x20\x4f\xef\x92\xef\xe9\xa2\x24\x16\x66\x23\xda\x68\xd7\xa6\xae\x62\x30\x18\x14\x93\x93\x93\xf6\x72\xed\xc7\x7a\xc1\x99\xe6\x5e\xb0\x4e\xd1\x64\x6f\x83\xb5\xca\xb9\x67\xec\xca\xca\x0a\xe9\xba\x2e\x3a\x3b\x3b\x35\x22\x5a\x29\x48\x7c\x7e\x2a\x56\xb8\x32\xdc\x91\xfd\xe8\x62\xe7\xca\x3b\xd7\x5a\x73\xff\x94\x08\xeb\xef\x71\x88\x4f\x01\xcc\x16\x8b\xc5\xdc\x3b\xef\xbc\x23\x32\x99\x8c\x9b\x38\xad\x59\xae\xab\xbb\xd0\x16\xec\x2c\x10\x00\xd8\xd4\xd4\x14\x1f\x1a\x1a\xe2\x8a\xa2\x14\x75\x49\xe8\x89\x60\xb1\x30\xb0\xe0\x3f\x28\x09\x48\x76\x79\x6c\x95\x67\xed\x84\x67\x67\x3b\x04\x48\x9b\x96\x7d\x4f\x2a\x06\xb1\xbb\xd1\xc2\x95\xa6\x96\x66\xad\xa5\xa5\x85\x8f\x8d\x8d\xad\xa7\x63\x1e\x74\xd8\xc8\x4b\x51\x13\x7b\xf4\xe8\x51\x76\xe0\xc0\x01\x0a\x04\x02\x34\x33\x33\xb3\xae\x17\x6c\x6e\x6e\x4e\x18\x86\x21\xda\xda\xda\x0a\x92\x24\xa5\x00\x2c\x00\x98\x22\xa2\x49\x22\xba\x65\x9e\x2f\xaf\xac\xac\xe4\xdf\x79\xe7\x1d\x61\xfb\x5c\xed\xba\xeb\x6c\x37\x55\xba\x29\x0d\x70\xc4\x13\x4a\xf2\x18\x5b\xb7\x6e\xd5\x89\x48\x5b\xf1\x1a\x19\x83\x21\xd2\xbd\xec\xdb\x0e\x54\x28\xb7\x0a\x5e\x9e\x30\x66\x53\xbe\x40\xac\x3d\xad\x1c\x8e\x67\x95\xee\xa9\xa8\xfa\x49\x20\x16\xc9\x0d\x0d\x0d\x19\xa9\x54\x8a\x6c\x8e\x79\xa7\x12\x61\x67\x8d\xb0\xa5\x71\x7b\xd0\x7a\xd8\x5a\xcf\xbc\x96\x12\x56\x75\x9f\x88\xe8\xf0\xe1\xc3\xf4\xf4\xd3\x4f\x4b\xad\x2d\xad\xde\x2e\x44\xa2\x8d\x3d\x6d\xfa\xd0\xd0\x10\x9f\x9c\x9c\xa4\x42\xa1\xb0\xa6\x12\x39\x37\x37\x47\x37\x6f\xde\x14\x92\x24\xe9\xe1\x70\x38\x2f\xcb\x72\x16\x40\x46\x08\x91\x49\x26\x93\xea\xf0\xf0\xb0\xf1\xf6\xdb\x6f\xf3\x4c\x26\xb3\xae\x3a\x39\xef\x5b\x2d\x6e\x1f\x3c\x03\xd5\x0a\x8c\xf3\x08\x00\xec\xe0\xc1\x83\xd8\xb3\x67\x8f\x02\xa0\x85\x04\x0e\x3c\x75\x3d\xf6\xef\xb6\xcd\x05\x0e\x59\xb3\x2e\x2b\x82\xc1\x3e\x51\x1e\xd5\xae\x46\xb3\x16\x49\xbf\x7e\xf9\xed\x81\xe5\xdf\xba\xdb\x50\xf8\x58\x40\x64\x6e\xde\xbc\xc9\x3f\xf8\xe0\x03\xbb\x4b\xad\x5e\x70\x8e\x01\x9d\x75\xad\x95\xde\xfe\xac\xeb\xc1\x56\xb5\x4d\x5b\x5b\x1b\x0e\x1f\x3e\x8c\xe6\xe6\x66\x85\x71\x44\x1e\x9e\x8c\xfc\xc2\xfe\xa9\xf0\x6f\x7c\x7f\x47\xe2\x5f\xdd\x69\x2c\x9c\xcd\x64\x32\xb9\x6f\x7e\xf3\x9b\xce\xb1\xe9\x7d\x97\xbb\x51\x6c\x4d\x77\x61\x9d\x23\x01\xc0\xdd\xbb\x77\xd1\xd5\xd5\x65\x84\x42\x21\x0d\x04\x75\xb2\x51\x9d\xed\x4c\xf9\x76\x85\x0b\x72\xac\x94\xc8\x46\xc5\x54\xde\x27\xaf\xca\xbd\x28\xcc\x74\x7e\x5d\x6a\x1d\x9c\x0f\xbc\x28\x0b\x32\xe6\xc2\xda\xcd\x86\xa6\x46\x6d\xdb\xb6\x6d\x5c\x08\x81\xb9\xb9\xb9\xb5\xde\x54\xb8\x9c\x5b\x47\x37\xac\x3d\x4d\x2d\xac\x5b\x59\x00\x80\x86\x86\x06\x3a\x74\xe8\x10\x0e\x1f\x3e\xcc\x42\xc1\x50\xb0\x31\x2f\x0f\x3e\x77\xb5\xe9\xff\xde\x3e\x17\xfc\x4d\x59\xb0\xc6\x8e\x94\xf7\xe1\xd1\x96\xdc\xdb\xe4\xf7\xa4\x9a\x9a\x9a\xb8\x63\xb5\xe5\x3d\x97\x7b\xaf\xd8\x9a\xee\x42\xac\x43\x13\xbd\x7e\xfd\xba\xd8\xb6\x6d\x9b\x21\xcb\xb2\xc6\x19\xd4\xdb\x8d\xea\x7c\xcf\xb2\xf7\xa1\x40\x51\x76\xac\xa2\xab\x04\xbb\xca\x67\x9f\xf8\xcd\x40\x4a\x47\x4a\x79\x7c\xcb\x62\xe0\x73\x2b\x3e\xe3\x4e\x36\x8c\xf9\xce\xae\x4e\x7d\xcb\x96\x2d\xa2\x58\x2c\x62\x69\x69\xa9\x9e\x46\x5c\x4f\xd3\xae\xf5\x7c\x6b\x69\xd8\xab\x34\xd2\x03\x07\x0e\xd0\xf1\xe3\xc7\x59\x73\x73\xb3\xd7\x6b\xb0\xe6\xfd\x53\x91\x5f\x7d\xfa\x7a\xec\x2f\x1a\xf3\x9e\xbd\x64\xfa\x4d\xbd\x3a\x6b\x8e\xaa\x72\xcb\x8d\xe6\xfc\x07\xd1\xc6\x68\x5e\xd3\x34\xeb\x53\x38\xf7\x5c\xee\xfd\x60\xeb\xba\x0b\x51\xfd\x36\xb8\xfe\xa6\xa7\xa7\x31\x38\x38\xa8\x13\x51\xbe\x28\x8b\xec\x64\x63\x21\xb1\x79\xd1\xbf\xc7\xab\xb3\x40\xa5\xfb\x6c\x0a\x9f\xbd\x87\xe1\x60\xe8\x02\xf0\xeb\xac\x73\x60\x3e\xf0\x33\x6d\x2b\x4a\x5f\xca\x6f\x4c\x19\x0d\x4a\x7a\xf3\xe6\xcd\xc6\xf6\xed\xdb\x85\xd7\xeb\x25\x73\x3f\x64\x7b\xa8\x67\xc8\xa8\x75\xed\x94\xc5\x35\x9f\xbd\xbd\xbd\x9d\x0e\x1c\x38\x80\x27\x9e\x78\x42\xea\xe8\xe8\xf0\xc8\x60\xd1\xa1\xb9\xc0\x73\xcf\x5c\x6b\xfa\xd3\xad\x09\xff\x2f\xcb\x82\x05\x2d\xcf\x80\xb5\x28\x3e\x96\xf3\x0c\x15\x24\x3e\x3f\x13\x29\x0c\x77\x76\x76\x6a\x77\xee\xdc\x81\x6d\x3f\xea\x75\x95\x6b\xbb\xde\x70\x9d\xed\xd8\xba\xee\x42\x54\x06\xd1\xdc\x11\x57\x4e\x93\xcb\xe5\x78\x32\x99\x44\x6f\x6f\x6f\x91\x31\xa6\xe6\x65\x23\x3d\x11\x53\xe7\x7a\x96\x7d\xbb\xfc\x45\x16\x04\x50\xd9\x3f\x92\x6c\x2b\x13\x89\x6c\xb5\x32\x57\xcf\x51\x79\x42\xbd\x14\xcd\xcb\x3b\xb7\xcf\x05\x7f\xbe\x35\xa3\x6c\xc9\x2a\xc6\x82\x1a\xa2\x54\x5b\x7b\x3b\xdf\xbb\x77\x2f\x36\x6d\xda\x04\x49\x92\x68\x61\x61\x61\x2d\x4a\xad\x75\xcd\x50\xfd\x9c\xe5\x67\x23\x22\x8a\xc5\x62\xd8\xb5\x6b\x17\x8e\x1e\x3d\x8a\x5d\xbb\x76\xc9\xf1\xa6\xb8\xa2\x08\xa9\x69\xdb\x7c\xf0\x8b\x4f\x5f\x8f\xfd\xd1\xae\x99\xd0\x6f\xfa\x75\xa9\xa3\x6a\x95\x9f\xa9\x44\x9a\xcf\x46\x9d\x29\xef\x23\x77\xa3\x85\x73\x2b\x3e\x63\xba\xab\xab\x4b\xb3\xd6\x31\xd5\x2a\xd7\xa5\x6d\xd7\x5d\xe7\x7a\x58\x82\xbb\x0c\x76\x0b\x4e\x85\xcb\x1e\x8f\x9d\x3b\x77\xb2\x23\x47\x8e\xc8\x42\x88\x08\x11\xf5\x87\x55\xe9\xd1\x2f\x7e\x1a\xff\x8d\xe6\x8c\xa7\x8b\x00\xdb\x32\x17\x51\xb1\xa9\x5b\x71\x16\x65\xc3\xba\x2e\x49\xe8\xb2\xcb\x0c\xd0\xe6\xc3\xda\xa9\xab\xad\xb9\xff\x76\x33\x9e\xff\x41\x46\x31\x12\x20\x68\x42\x08\x3d\x9d\x4e\xf3\x99\x99\x19\xcc\xcc\xcc\x20\x9d\x4e\x23\x9d\x4e\x5b\x1f\xa8\x58\xf3\x59\x18\x63\xf0\x7a\xbd\x68\x68\x68\x40\x53\x53\x13\x3a\x3a\x3a\xd0\xda\xda\x8a\x40\x20\x20\x0b\x21\x64\x26\xc8\x17\xcf\x79\x7a\x07\xe6\x03\x27\x86\xe6\x02\x3f\x1f\xd2\xa4\x21\x6b\x75\x25\xa8\x22\x62\xec\x2c\xc5\x7a\x56\x40\x20\x19\xd0\x47\xfe\x6e\xcf\xfc\xcf\x67\x3d\xc6\xd8\xc4\xc4\x84\xfa\xd6\x5b\x6f\xb9\xb5\xdd\x7a\xaf\xef\x09\x6b\x17\x8f\xeb\x09\xf5\xb4\x53\x1c\x3c\x78\x90\x3d\xf4\xd0\x43\x32\x11\x45\x84\x10\x7d\xfe\xa2\x74\xe8\xe9\xeb\xb1\x5f\xdf\xbc\xe4\xdb\x6e\xc9\xa8\x8a\xad\xbc\x74\x62\x2d\x85\x01\xcc\xbd\xae\x08\x25\xd7\x63\xf9\x9e\xc9\xfe\x00\x08\x12\x28\x4a\x62\x76\x3a\x52\x78\x7f\xbc\x29\xff\xc6\x54\xb4\xf0\xf1\xb2\x5f\x9f\xe6\x24\x34\x54\xf6\xea\xb2\x36\x24\xc7\xfc\xfc\x3c\xcc\x1d\xdc\xab\x82\xdf\xef\x47\x43\x43\x03\x64\x59\x66\xc1\x60\x10\x42\x08\xcb\x23\xa3\x78\x38\xf3\xc5\xb3\x9e\xde\x9e\x25\xdf\xa3\x7d\x8b\xfe\x67\xe3\x59\xcf\x41\xc6\x11\x2a\x8f\x09\xac\x3d\x39\x40\xb6\xfa\x95\x6a\x28\xcc\xde\xad\x6c\xb5\x24\x30\x16\xcf\xff\xed\x1b\xdb\x16\x7f\xcb\x20\x31\xff\xee\xbb\xef\xea\x63\x63\x63\x55\x76\x05\x47\x7b\xd6\x6d\xdf\x35\xfa\xc2\x15\x6b\x51\x30\x50\x9b\x42\xdd\x42\xad\xe1\x13\xf6\xef\xdf\xcf\xf6\xec\xd9\xc3\x18\x63\x11\x00\xdd\x1e\xce\xf6\x1d\xb9\xd5\xf0\x2b\x7b\xee\x86\x1e\x25\x61\x5b\x9b\x0b\x87\xf2\x45\x28\x2f\xf3\xb4\x0b\x2b\x7b\x45\x61\x8f\x27\x01\x4e\xc8\xac\x78\xf5\x6b\xb3\x11\xed\xe2\x5c\x58\xbb\xb0\x14\xd0\xaf\x25\xfd\xc5\xc9\x8c\xc2\xd3\x3a\xe3\x3a\x4a\x9d\x0e\xa0\x6a\x1f\x2f\x66\x75\xa8\x62\x30\x25\x5c\x90\x62\xd1\xbc\xa7\x37\x9e\xf5\x6c\x6f\x4b\x2b\x7b\x5b\x32\xca\xbe\x80\xc6\x7a\x09\xf0\x41\xb8\x6f\x9b\xe6\xbc\xb6\x87\x55\xcf\x41\x82\x7f\xd0\x97\xfa\xed\x4f\x36\xad\xfc\x7f\x99\x4c\x26\xf3\xf2\xcb\x2f\x5b\x5f\x1e\xb5\x87\x5a\xc3\x1f\x67\x70\x8b\xaf\x8b\x5d\xb5\xba\x10\xab\x3b\xae\x56\x61\xae\x2e\xc6\xf3\xe7\xcf\xf3\xc5\xc5\x45\x3c\xf1\xc4\x13\x69\x49\x92\xc6\x8b\x8c\x6b\xef\x6f\x49\xa6\xe7\xc2\xda\xe4\xe3\x63\x8d\x2f\x7a\x75\x0a\x00\x40\x65\x60\x8c\x0a\x5f\xb3\x76\xa5\xb3\xbe\x45\x6c\xbe\x0c\x36\x9d\xac\x9c\x8e\x40\x90\x38\x42\x51\xd5\x73\xa0\x21\x2f\x1f\x18\x9c\x0f\x00\x00\x17\x80\xa6\x4b\x62\x49\x93\x78\x22\xef\xe1\x49\xd5\xc3\xd3\x06\x09\x4d\x10\x38\x09\x30\x99\x93\xcf\x57\x64\x11\x7f\x51\x8a\x29\x06\xc5\x25\x4e\x51\x02\x14\xc0\xe2\x1c\x15\x8e\x51\x09\x66\x25\x09\xab\xc7\xf1\x26\xa5\x96\xb1\xf6\x65\x9e\x28\x5d\x36\xa8\xd2\x36\x21\x44\x20\x18\x0c\xe6\x38\xe7\x3a\x56\x07\x67\xfb\x6e\xd4\x4d\x59\xf3\xda\x29\x83\xeb\xca\x59\x97\x34\x35\xe3\x3a\x3a\x3a\x70\xfc\xf8\x71\x04\x02\x81\x00\x80\x38\x84\x18\x88\xe5\x3c\x9f\x7f\xe2\x46\xec\x17\x3b\x52\x4a\x6f\x79\xad\x31\x2a\xda\x00\x09\x1b\x05\x90\xed\x9e\x40\x99\xf2\xab\x0c\x26\xf7\x80\xad\xda\xe0\xce\xf6\xf2\x38\x39\x47\x99\x72\x6d\xfa\x82\x75\x63\x5d\x58\x12\xc8\x78\x8d\xe4\x7b\x5b\x92\x2f\x8f\xc5\xf3\xdf\x12\x10\xc3\x42\x88\xe4\x37\xbe\xf1\x0d\x6e\xd3\x11\xd6\xd3\xce\xb5\xc2\xba\xb0\xeb\x76\x17\x3a\x9e\xc3\xae\xa6\xdb\xd3\x97\x0b\x58\x59\x59\xa1\x3b\x77\xee\xa0\xb5\xb5\xb5\x18\x08\x04\xf2\x20\x4a\xe5\x15\xbe\x30\xda\x9c\xbb\x61\x30\x78\x5a\x57\x94\x6e\x89\x97\x6c\xe1\xe5\xdd\x8e\xc8\x92\xc5\xa5\x9e\x22\xc0\xd4\xae\xed\x0d\x57\xcd\x1e\x37\x8c\x2d\x2b\x47\xd5\x5f\x2f\x29\x7f\x1b\x8a\x2a\xdf\x74\x2b\x63\xcd\x7c\xd6\x8b\xe5\x04\xdc\x68\xce\x5f\x7e\x7d\xfb\xe2\x57\x67\x23\xda\x5b\x20\xdc\x20\xa2\xa4\x6d\x71\x99\x7d\xe4\x62\x75\x8e\x73\x88\xe3\x26\x05\x36\x8c\xdd\x90\xbb\xd0\xe5\x58\x6e\x67\xdb\xaf\x7c\x4f\x55\x55\x5c\xbd\x7a\x95\x07\x83\x41\x1e\x8f\xc7\x0b\x42\x88\x94\x60\x58\xbe\xdb\x50\x18\x1f\x8f\xab\x53\xd1\xbc\xa7\xad\xa1\x20\xc7\x4a\x8e\x45\xdb\xb0\xc9\xb4\x76\x95\x14\x17\x6b\xd3\x11\xb3\x85\xcd\x62\x2a\xdb\x15\x6c\x0c\x4b\x55\x6d\x40\xe5\x5e\x2c\xaf\x7d\xb6\xd2\x90\xa3\xcd\xc8\xd9\x7e\x6e\x58\x20\xe5\xd7\x97\xde\x1e\x5c\xfe\xd6\xb9\xee\xf4\x7f\xd1\x64\xf1\x43\x94\xd6\x23\x2f\xcf\xcf\xcf\x6b\xaf\xbf\xfe\xba\x7d\xa8\x64\xb5\xb3\x53\xcc\x3f\x50\x37\x65\x2d\x5d\xc1\x1e\xd6\x63\xd7\x5d\x33\x6d\x7f\x7f\x3f\x3b\x72\xe4\x08\x7c\xa5\xed\x62\xa3\x00\xba\x49\x60\xa0\x2f\xe1\x7f\xe2\xc8\x44\xc3\x33\xb1\x9c\xdc\xe2\xb6\x8a\xdd\x6a\x38\xaa\xa1\xd9\xac\x12\xe1\x6b\x60\xdd\x58\x75\x29\xde\xbe\x49\x8a\x6d\x1f\x03\x7b\x7a\xd4\xc0\x42\x40\x95\x79\xee\x93\xae\x95\x53\x17\x3b\x33\xdf\x2f\xca\x62\x44\x08\x31\x01\x20\x61\x7d\x85\xf5\xcc\x99\x33\x6e\xca\xd1\x5a\x76\xf3\x5a\x61\xdd\xd8\xb5\x3a\xf8\x41\xaa\xf1\x00\x4a\xdb\xf3\x6d\xda\xb4\x49\x26\xa2\x92\x6c\x06\xba\x65\x83\x86\xb6\xcd\x05\x9e\xda\x37\x15\x3e\x1a\xcd\xcb\xf1\x9a\x95\xaa\xa7\xbe\x02\xa8\x96\x84\x6b\x60\xed\xd7\x0e\xb9\x4d\x6b\x95\x55\x19\x9f\xa3\x20\x73\xf5\xd3\xb6\xec\xc7\x9f\x74\x65\xde\xc8\x7a\x8d\xcb\x00\x26\x00\xcc\x02\xc8\x24\x93\x49\xed\xd4\xa9\x53\xb0\x2d\xa3\xfd\x91\x07\xc2\x6a\x41\x5e\x4b\xb8\xbb\xc5\x6f\x64\x20\x5e\x0e\xbd\xbd\xbd\xf8\xfc\xe7\x3f\x0f\xbf\xdf\xaf\x08\x21\x42\x44\xd4\x02\xa0\xdb\xa3\xd3\xc0\xd6\x84\xff\xf3\x0f\xdd\x0d\x1f\x69\xc9\x78\x3a\x2c\x89\xb7\x9e\x50\xd9\x0b\xda\xba\xae\xff\x2e\x54\xdd\xaf\x93\xd8\xed\x96\x80\x40\x56\x31\xd2\xc3\xed\xd9\x8f\x87\xdb\xb2\xef\x66\xbc\xc6\x08\x08\x13\x30\x17\x72\x17\x8b\x45\xed\xf2\xe5\xcb\xfc\xd2\xa5\x4b\x70\x7c\xc7\xa2\x56\xfb\xad\xd5\xe6\xf7\x8c\xb5\xea\xee\xe6\x42\xab\x37\x5c\x5a\x53\x8b\x76\x14\x64\x0f\xe5\x74\xfb\xf7\xef\x67\x0f\x3d\xf4\x10\x93\x65\x59\x41\x69\xd5\x7b\x5c\x08\xd1\x21\x09\xea\xeb\x48\x79\xf7\x6e\x9f\x0b\x1e\xda\x92\xf0\x0f\x29\x06\xf9\xd6\xee\x68\xb7\x0d\xbf\x6b\x50\xb3\x8b\xbe\x5c\xb6\xb4\xc1\x52\xb2\xaa\xd3\x08\x08\x70\x02\x9f\x89\x14\x26\x87\xdb\xb3\x67\xc7\x9b\xf2\xa7\x35\x49\x8c\x83\x30\x85\x12\xc5\xa6\x85\x10\xea\xed\xdb\xb7\xf9\xe9\xd3\xa7\xab\x36\x15\x85\x3b\x11\xd4\x6b\x3f\x67\x7b\xdd\x33\x96\x50\xff\x2d\x78\x90\xc1\xb5\x0c\xbf\xdf\x8f\x3d\x7b\xf6\x60\xdb\xb6\x6d\x56\x47\x07\x84\x10\x51\x22\x6a\x03\xd0\xe1\x2b\xb2\xbe\xde\x25\xdf\xde\xad\x0b\xfe\xdd\x1d\x29\x6f\xb7\x4f\x67\x01\xaa\xea\xcc\x52\xb0\xcc\x9b\x16\xaf\xad\x50\x5e\xf9\xce\xda\xdc\xc0\x2e\xab\xcd\xce\xd5\x99\xd0\x13\xc1\xe2\xec\xcd\x78\x7e\x64\x2c\x9e\xff\x38\xe9\xd7\xaf\x83\xca\xdb\x2e\x2c\x01\xc8\x70\xce\xd5\xc9\xc9\x49\x7e\xfe\xfc\x79\xfb\x9a\xde\x07\xd6\x46\xf7\x83\xad\xf7\xcc\xf7\x22\xfc\xef\x2b\x1c\x3e\x7c\x98\xf5\xf7\xf7\xc3\xef\xf7\x2b\x28\x7d\x9f\x20\x02\x20\x46\x44\x2d\x10\x68\xf1\xe9\xac\xab\x65\xc5\x33\xd8\xbd\xec\x1b\x68\x4f\x7b\xbb\x63\x39\xb9\xc5\xa7\x33\x5f\x15\x2b\x5f\x57\x4f\xba\x07\x01\x01\x9d\x09\x3d\xed\x33\x92\xb3\xe1\xc2\xd4\x9d\xc6\xc2\xd8\x74\x43\xe1\xda\x8a\xd7\xb8\x25\x08\xb3\x00\xe6\x01\x24\x50\xfa\xca\x9b\xca\x39\xd7\x6e\xdf\xbe\xcd\x2f\x5c\xb8\x60\xff\x76\xef\x67\x6e\x7e\xdc\x08\xd6\x2e\x83\x1f\x14\x15\x3b\xd9\x74\x3d\x19\xe1\xac\x1c\x03\xc0\x77\xee\xdc\xc9\x06\x07\x07\x11\x8b\xc5\x18\x00\x85\x88\x7c\x42\x88\x00\x11\x45\x51\xd2\xc0\x63\x10\x88\x7b\x75\x8a\x37\xa8\x72\x67\x2c\xe7\xe9\x68\xca\x7a\xda\x22\xaa\x1c\x0b\x17\xa4\x48\x50\x93\x42\x8a\x4e\x8a\xcc\x49\x21\x41\x55\x06\x77\x01\x70\x83\x09\x5e\x94\x84\x96\xf7\x18\xb9\x8c\xd7\x48\xa7\x7d\x7a\x72\xd9\xaf\xcf\x2f\x06\x8b\xd3\x4b\x01\xfd\x4e\xde\x63\xcc\x73\x42\x02\x84\x25\x21\x44\x92\x4a\x1f\xd3\xc8\x08\x21\x72\x44\xa4\xe5\xf3\x79\xfd\xea\xd5\xab\x18\x1d\x1d\x85\x69\xf7\xde\x88\x69\x77\x3d\x6d\xf3\xc0\xb0\xf6\x67\xaf\xf5\xf6\xd4\x92\xbd\xeb\xb9\x5e\x2b\xd4\x4d\x1f\x8b\xc5\x58\x7f\x7f\x3f\x36\x6f\xde\x8c\x48\x24\xc2\x88\x48\x46\xc9\xac\xe8\x43\x89\x95\x07\x88\x28\x64\x2a\x6a\x21\x08\x04\x00\x04\x08\xf0\x31\x01\x45\x36\xc8\x27\x09\x52\x18\x27\x8f\x69\xe8\xe0\x06\x89\x62\x51\x12\x2a\x27\xa1\x72\x82\x06\x20\x87\xd2\x2e\x71\x56\x07\xa6\x01\xe4\x84\x10\x19\x22\x52\x51\xfa\x84\x8d\xae\xaa\x2a\xbf\x7d\xfb\x36\x1f\x1f\x1f\xc7\xd4\xd4\x54\x2d\x19\xb8\xd6\xf3\xd7\xd3\x5d\x3e\x13\xec\x46\x64\xf0\x7a\xcc\x98\xeb\x49\x7b\x4f\x5c\xa2\xa9\xa9\x09\x9b\x36\x6d\x42\x47\x47\x07\x9a\x9b\x9b\x99\xd7\xeb\x65\xe6\x5a\x1d\x19\x80\x2c\x84\x90\x89\x48\x71\x1c\xad\x2f\x79\x32\x00\x30\x77\x90\xe3\x64\x7e\x96\xc6\xfc\x69\xe6\x4f\x17\x42\xe8\x44\xa4\x03\xd0\x8b\xc5\x22\xcf\x64\x32\xfc\xf6\xed\xdb\x38\x7b\xf6\x2c\xb7\x6d\xb5\xbc\xd6\x33\xd5\xbb\xfe\x91\x63\x37\x2a\xad\x7e\xe4\x72\xb9\x5e\xd8\xbe\x7d\x3b\x8b\xc7\xe3\xd6\x47\xad\x11\x0e\x87\x19\xcc\x87\x34\x8d\x16\xd6\x03\xb3\xb2\x11\xc3\xac\xbf\xd9\xc9\x00\xc0\x35\x4d\x43\x2e\x97\xe3\xb3\xb3\xb3\x48\xa7\xd3\x48\x24\x12\x76\x2a\x5d\x2b\xfc\xb3\x92\xb9\xce\x44\x6e\x32\xf8\x5e\xa8\x79\xad\x21\x41\x2d\x6c\xad\x8a\x6f\x24\x7d\x39\x78\xbd\x5e\xe6\xf5\x7a\xd1\xd8\xd8\x58\x8e\x8b\xc5\x62\x50\x94\xca\x0e\x50\x4b\x4b\x4b\xd0\xb4\xd2\x06\xb0\xb7\x6f\xdf\x76\x1b\xc2\x59\x65\x5a\xd7\xb5\x86\x2e\x3f\x69\xd8\x55\x00\xe7\x71\x3d\x98\x5a\xd7\xff\x23\xfc\x98\x42\xd5\xb7\x0b\x51\xfb\xed\xb0\x5f\xd7\x52\xbc\x6a\xe1\xd7\x32\x88\xac\x65\xad\x79\xd0\xd8\x7a\x5c\xa5\x1e\xb6\x56\xf8\x67\x8d\xad\xa5\x64\xad\x47\x71\x72\x2a\x00\xb0\x61\x6a\x29\x00\xf5\x8e\xf6\xf2\x3e\xeb\xe1\x83\x5b\x9d\xff\x7b\xc7\x82\xd9\x7e\xb5\xae\x9d\x47\xb7\xdf\x46\xf2\x72\x9e\xbb\x95\xb3\x56\x9d\x3f\x0b\xec\x5a\x22\xe7\x27\x06\xfb\xff\x03\x63\xf3\x13\xf9\xa3\x12\xaf\x6e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x7a\x51\x44\xbe\x7b\x3f\x00\x00") +var _web_uiV1StaticAppleTouchIcon120x120Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x7b\x3f\x84\xc0\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x78\x00\x00\x00\x78\x08\x06\x00\x00\x00\x39\x64\x36\xd2\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xbd\x7b\x70\x1c\x47\x7a\x27\xf8\xfb\xb2\xaa\xab\xdf\x8d\x46\xa3\xf1\x06\x01\x10\x04\x01\xf0\x29\xbe\x44\x91\x1c\x8e\x44\x51\x8f\x95\x34\x1c\x4b\x96\x3c\x1e\xdb\xe7\x47\x78\xbc\x7b\x8e\xbb\x3d\x3b\x6e\xcf\xbb\xe1\x70\x5c\x38\x36\x1c\x0e\xc7\x86\xcf\xe1\xb8\xf0\xeb\x6e\x7c\xb3\xde\x59\xef\x7a\x66\x35\xb6\xc7\x33\x9a\xd1\xcb\x96\x34\xa2\x24\x4a\xe4\x90\xa2\xf8\x82\x40\x12\x04\x41\x10\x04\xf1\x6c\x00\xdd\x8d\x7e\x54\x57\x57\x65\xde\x1f\x5d\xd5\x5d\x5d\xa8\x6e\x00\x24\x35\xe3\xd9\xd8\x44\x34\xaa\x2a\x2b\x7f\x99\x59\x99\xf5\x3d\xf2\xfb\x32\xb3\x80\xff\x11\xfe\xbb\x0f\xcc\x71\xac\x17\xc7\x1c\x71\xce\x34\x6b\xc5\xaf\x37\xad\x5b\xb9\xb5\xc2\x83\xc2\xba\x3d\xdf\x4f\x3c\x96\x6c\x11\xdc\x3c\xe7\x2e\x09\x39\xdc\x0b\x75\xc3\xb8\x9d\xd7\xab\xb4\x3d\x0f\xb7\x32\x6b\x95\x7d\xaf\xd8\x7a\xf9\xd5\x4a\xb7\x9e\xba\xfc\x73\xc5\xd6\x0d\x6b\x51\xf5\x7a\xee\xd5\xca\xaf\x16\x7e\xbd\x6f\xf2\xfd\x62\x9d\x6f\x7f\xad\xe3\x4f\x34\x56\xae\x71\xc3\xde\xfb\xd6\x1b\xb4\x16\x35\xd6\x6a\x5c\xe7\x9b\xe4\x56\x96\x5b\xbc\x13\x53\x8b\x1a\xef\x05\xcb\xab\x93\xd7\xc4\xbb\x51\xc3\x4f\x22\xf6\xc7\x16\x36\xf2\xa2\xac\x75\xaf\xee\xfd\x48\x24\xc2\x00\x40\x92\xa4\xf5\x70\x91\x8d\x94\xf9\xcf\x1a\x6b\xc9\xe0\xb5\xe4\x2f\x1c\xf7\xe1\x12\xe7\x26\x73\x9d\x32\xa4\xd6\xfd\x7a\xa1\xae\xfc\x6f\x6a\x6a\x42\x3c\x1e\x87\xcf\xe7\x43\x73\x73\x33\x88\x08\xad\xad\xad\xe5\x32\xbc\x5e\x2f\x18\x63\x20\x22\x00\x80\xaa\xaa\xe0\x9c\x03\x00\xd7\x34\x0d\x4b\x4b\x4b\xc8\xe7\xf3\x48\xa5\x52\x58\x5e\x5e\x46\x3a\x9d\xc6\xca\xca\xca\xbd\xd4\x67\x3d\xe1\x47\x8e\xa5\x3a\xf7\x6a\x75\xcc\x83\x0e\x1b\xca\xbf\xb7\xb7\x97\x75\x74\x74\xa0\xa9\xa9\x09\xcd\xcd\xcd\x4c\x92\x24\xa0\x24\x6a\x18\x81\x18\x01\x32\x09\xc8\x32\x27\xc5\xa7\x33\x9f\x6c\x90\xc2\x04\xc9\x24\xc0\x04\x41\x37\x98\xd0\x0b\x32\x57\x35\x49\x68\x9c\x84\xc6\x09\x3a\x08\x5c\x08\xa1\x03\xe0\x42\x08\x5e\x2c\x16\xf9\xf4\xf4\x34\x12\x89\x04\x6e\xdf\xbe\x8d\xa5\xa5\xa5\x5a\x2f\xf6\x7a\x5f\xe2\x1f\x1b\x96\xdc\x22\x6d\xd7\x56\xa8\x95\x29\x5c\xd2\xb8\xc5\x39\xa9\xbc\x96\x8c\x71\xad\xe8\xae\x5d\xbb\x58\x4f\x4f\x0f\x5a\x5b\x5b\x99\xc9\x62\x65\xc6\xa1\x04\x8a\x52\x34\x96\x95\xbb\x9b\x72\x9e\xa1\x58\xce\x33\x18\x51\xe5\xde\xb0\x2a\x75\x04\x34\xa9\x45\x16\x14\x61\x1c\x01\x00\x8c\x4c\xc5\x44\x98\xba\x84\x20\x68\x9c\x44\x4e\x93\xc5\x52\x46\x31\xe6\x57\x7c\xfa\x64\xd2\xa7\x4f\x2c\x05\x8b\x57\x13\xc1\xe2\x68\xca\xa7\x4f\x17\x64\x91\x03\x41\x03\xc0\xf3\xf9\xbc\x7e\xe7\xce\x1d\xdc\xbd\x7b\x17\x37\x6e\xdc\x58\x6b\x44\x51\x2f\xfe\x47\x8e\xad\x47\xc1\xf6\xf0\x59\x53\xf1\xaa\xb0\x75\xeb\x56\xd6\xdf\xdf\x8f\xce\xce\x4e\x46\x44\x32\x81\x94\x90\x26\xc5\x3a\x52\xde\xdd\xdd\xcb\xde\xc7\xda\xd2\xca\xc1\x06\x55\x1e\x92\x39\xc5\x20\xc0\x2c\x16\x2c\x04\x40\x04\x40\x00\x02\x02\x00\xa1\x74\x29\x00\xa0\xcc\xaa\x2b\x09\x2b\x41\x94\x52\x69\x05\x99\x4f\x2d\x06\xf5\xe1\xbb\x0d\x85\x0f\xef\x44\xd5\x8f\xe6\xc2\xda\x58\x51\x16\x19\x00\x5a\x3e\x9f\xe7\x13\x13\x13\xfc\xfa\xf5\xeb\x98\x9f\x9f\xaf\x27\xb2\x36\x1a\x3e\x13\xac\xb3\x83\xeb\xc9\xd4\x8d\xa4\xb1\xdf\xdb\x50\x9e\x07\x0f\x1e\x64\xdb\xb6\x6d\x83\xd7\xeb\x95\x85\x10\xbe\x90\x26\xc5\xb7\x24\x02\xc7\xb6\x26\xfc\x5f\x6c\x5d\x51\x8e\x78\x0c\x8a\xa3\xc4\x8a\x4b\x41\xa0\xd4\x8d\x64\x5d\x10\x40\xb6\x53\x81\xf2\x75\xd5\x11\xd5\xe7\x42\x88\xd2\xab\x60\x4b\x63\x75\x78\x5e\xe1\xe3\x93\x51\xf5\x07\xa3\x2d\xb9\xef\x4f\x46\xd5\x4f\x0c\x09\x19\x21\x84\xbe\xb0\xb0\xa0\x5f\xbb\x76\x0d\xa3\xa3\xa3\x65\xb9\x8e\xda\xfa\x8b\xdb\x35\x1c\x69\x1f\x38\x76\xbd\x14\xfc\x99\x86\x68\x34\xca\xf6\xef\xdf\x8f\xbe\xbe\x3e\x46\x44\xb2\xc4\x11\xe9\x5e\xf6\xed\xdb\x3e\x1b\xfc\xf9\xde\x25\xdf\x73\x32\xa7\x38\x99\xbd\x25\x4a\x84\x68\x76\xa8\x49\x9b\xc2\xa4\x4c\xf3\x5e\x55\xa7\x11\xca\x3d\x2d\x04\x2a\x9d\xb8\x3a\x71\x39\xbf\x0a\x65\xdb\xd2\x08\x01\x41\xe0\x59\x85\x8f\x5e\x6f\xc9\xfe\xfd\x48\x5b\xf6\xef\x16\x03\xfa\x24\x08\xb9\x4c\x26\xa3\x0f\x0f\x0f\xe3\xda\xb5\x6b\xd0\x34\x6d\xa3\x54\x78\x3f\xba\xce\x9a\x58\x42\x6d\x0a\xab\x37\x6e\xdc\x48\xe1\x35\x83\xdf\xef\x67\x87\x0f\x1f\xc6\x96\x2d\x5b\x18\x00\xc5\xa7\xb3\xd8\xb6\xf9\xe0\x33\xbb\xa6\x43\xbf\x16\xcb\xc9\x07\x09\xc4\x4a\x94\x85\x2a\x66\x5b\xee\x14\x1b\x2b\x26\x22\xb3\x43\xa9\xcc\x7e\xeb\x62\x9d\xad\x60\xb1\x6c\xe1\x20\xf1\x32\x4b\xaf\x86\x18\x4c\x64\x26\x1b\xd5\x57\x2f\x74\x66\xfe\x6a\x2a\xaa\x7e\xc2\x19\x72\x2b\x2b\x2b\xda\x85\x0b\x17\x70\xe3\xc6\x0d\x18\x86\x01\xb8\x53\xe1\x7a\xe5\xe8\x03\xc1\xfe\xd8\x28\x78\xdf\xbe\x7d\x6c\xf7\xee\xdd\x4c\x51\x14\xc5\xa3\x53\x74\xd7\x4c\xe8\x85\x3d\x77\x43\xff\x4b\xb8\x20\xed\x24\x1b\x65\x56\x08\x8e\xca\x72\x14\xa8\xc4\x5b\xd4\x2b\x4a\xe4\x89\xf5\x61\x09\x64\xa3\x7c\x61\xf2\x79\xe7\x79\x25\x1f\xab\xe3\x57\x63\x39\x84\x36\xdd\xa0\xfd\xd3\xd9\xee\xf4\x9f\x4d\x36\xaa\x1f\x83\x90\x49\xa7\xd3\xfa\xa9\x53\xa7\x30\x35\x35\xb5\x1e\xc2\xf8\x4c\xe5\xb6\x5b\x07\xbb\x69\xc9\x0f\x54\xc1\x7a\xf1\xc5\x17\x59\x3c\x1e\x57\x48\x20\x34\x30\x1f\x38\x7e\x78\xa2\xe1\x77\x1a\x54\x69\x8f\xc5\x86\x2d\x39\x2a\xca\x54\x65\x29\x4e\x02\xa2\x8a\xb8\x4c\xd6\x09\x8b\xf5\xae\x03\x5b\xc5\xce\x2b\x9d\x66\xc9\x60\x81\x0a\xae\xdc\x48\x56\x7e\xa8\x8d\x15\x04\x6d\x22\xa6\xfe\xc3\x47\x9b\x53\x7f\x9c\x08\x16\x47\x05\x44\x6e\x6c\x6c\x8c\xbf\xfb\xee\xbb\x3f\x76\x2d\x7a\x3d\x06\x07\xb7\x0e\xaf\x55\xb0\xeb\x35\x63\x0c\x47\x8e\x1c\xc1\xf6\xed\xdb\x19\x04\x02\xcd\x19\xcf\xd0\x63\x37\xa3\xbf\xdb\x99\xf2\x3e\x47\xa0\xea\xb2\xdd\x38\x69\x0d\xee\xba\x2a\x3c\x00\xec\x7a\x93\xbb\x61\x75\x26\xd2\x97\x3a\x32\x7f\x7a\xb6\x3b\xfd\xb5\x82\x87\x27\x72\xb9\x9c\xfa\xe1\x87\x1f\xe2\xd6\xad\x5b\x1b\xcd\xf1\x81\x04\x09\x95\x77\x55\xb8\xfc\x08\x15\xea\x75\xbb\x76\xc3\xba\xa6\x7d\xf1\xc5\x17\xa9\xa7\xa7\x47\x91\x0d\x8a\x1f\x9c\x8c\xfc\xcb\xa7\x46\x63\xff\x4f\xa3\xea\x79\x88\x40\x24\x9c\x4d\x4a\x15\x6a\x2a\xcb\x4e\x6b\x18\x64\x0d\x77\x60\xbf\x5e\x3f\xb6\x74\xcf\xaa\xa2\x25\xc6\xad\x74\xe5\x4c\xec\xb1\xb6\xeb\xb5\xb1\x4c\x90\xb7\x3d\xad\x3c\xda\x9f\xf0\x3f\x9e\xf4\xeb\x63\xb9\x30\x2d\x6c\xd9\xb2\xa5\xa8\x28\x8a\x30\x59\xb6\xbd\x6d\xec\x47\x7b\xb0\xd2\xd9\xd3\x3a\xaf\xd7\x85\x95\xcc\x48\x66\x46\xb0\x72\xbd\x2b\x54\x58\xeb\xda\x19\x98\xe3\x1e\x01\xa0\xa1\xa1\x21\x3a\x71\xe2\x84\x14\x0e\x85\xfd\xb1\x9c\xbc\xfd\x0b\x23\xf1\x3f\x1d\x9a\x0f\xfc\xba\x24\x98\xbf\xd2\x35\xd5\x0a\x10\x39\x8e\x95\xae\xb2\x98\x31\xe1\x5e\xb1\xa8\xfa\x4f\x8e\xff\xd6\x1f\xcc\x32\xec\x79\x6d\x0c\xeb\xd3\xa5\xb6\xad\x0b\x81\x17\xbc\x06\xc9\xd3\x0d\xda\x48\xbc\xb5\x59\x95\x24\x49\x4c\x4f\x4f\x5b\x1d\x62\x75\x50\x2d\xe3\x90\xfd\xc1\xec\xbf\x0d\x61\xeb\x71\xa2\xfb\x36\x55\x1e\x3d\x7a\x94\x6d\xdb\xb6\x8d\x11\x28\x32\x38\x1f\x78\xe6\xf1\xb1\xc6\x3f\xf6\xea\xd4\x56\x6e\x24\xbb\x55\xa2\xe6\x7b\x63\xbb\x2f\x2c\x4a\xa9\xc6\x5a\x28\x9d\x09\x3d\xab\x18\xe9\xb4\xcf\x48\x67\xbd\x46\x26\x2f\xf3\x5c\x41\xe6\x39\x83\x09\x2e\x08\x9c\x71\x30\x0f\x67\x8a\xaf\xc8\x02\x81\x22\x0b\x85\x55\x39\x12\x2e\x48\x11\xaf\xce\x7c\x4c\x54\x1b\xe8\xdd\xeb\xe0\x3c\x2f\x05\xb7\x21\xb6\xfd\xde\x64\x63\xe1\x6f\xbe\xb3\x7b\xe1\x37\x0a\x85\x42\xfa\x9b\xdf\xfc\x26\x8a\xc5\x62\x2d\x0d\xb9\x9e\x2d\x1f\x2e\xe7\x6b\x62\x65\xd4\x97\xc1\xcc\x71\x74\x33\x55\xae\x3a\x97\x24\x09\x8f\x3d\xf6\x18\xfa\xfb\xfb\x65\xc9\x40\xfc\xc8\x44\xf4\x5f\xef\x9d\x0a\xfd\x5b\x12\xa4\x58\x0f\x6d\x05\x12\xd6\xb5\xa5\xf6\x56\x1b\x2b\x56\x75\xba\xa9\x88\x71\x06\xbe\xe2\xd5\xd3\xd3\x91\xc2\xe4\x4c\x43\x61\x62\x2e\xac\x4d\xa6\x7c\xfa\xdd\x82\x2c\x92\x20\xe4\x00\xa8\x00\x34\x21\x84\x4e\x44\xf6\x87\x97\x01\x28\x00\x14\x08\x11\x60\x82\x42\x41\x4d\x6a\x8e\x67\x3d\x5d\x6d\x69\xa5\xb7\x33\xe5\xed\x6d\xce\x28\x2d\x8a\x41\xbe\x52\xd1\x56\x5d\xcc\xae\x2b\x9f\x5b\x43\xb3\x8a\x92\x6d\x57\xb6\xad\xe7\x31\x98\xd0\x2e\x74\xae\x9c\x07\xe0\xf3\x7a\xbd\x19\x45\x51\x78\xb1\x58\x74\xb6\xb5\xb3\x9d\xeb\xc5\x6f\x08\x2b\xa3\xd2\xf3\xeb\xa5\x52\xb7\xf4\x55\xe7\xcf\x3f\xff\x3c\x6b\x6a\x6a\x52\xbc\x45\xea\x78\x72\x34\xf6\xfb\xfd\x09\xff\xcf\x11\x88\xa1\xaa\x01\x80\x32\xc3\xa3\x0a\xcb\x15\xc2\x64\xa9\xa2\x3a\x0d\x00\x08\x06\x9e\x08\x6a\xf3\x63\xf1\xfc\xc8\xad\x58\xfe\xf2\x52\xb0\x78\xcb\x60\x98\x17\x42\x2c\x11\x51\x5a\x08\x91\x03\x90\x83\x80\x06\x40\x37\x7f\x5c\x54\x17\x0a\x22\x92\x01\xc8\x20\x92\x39\xc1\xb7\xe2\x33\x02\x2b\x3e\x23\x34\x1e\xcb\x47\x09\x14\x0f\x14\x59\x47\x67\xca\xbb\x6d\xcb\x82\x7f\x77\xcf\xb2\xaf\xcf\xa7\xb3\x40\xb9\xae\xe5\xf7\xcf\xaa\xbb\xb3\x96\xb6\x7a\x93\xc0\x99\xde\xd4\xf7\x26\x62\xea\x27\x42\x08\xad\x50\x28\xf0\x6c\x36\x5b\xcf\xa1\xb0\x96\x2d\x1f\x8e\xb4\x6b\x62\x65\xd4\x0f\x6e\x66\xb2\x9a\x2f\x82\xcf\xe7\x63\xcf\x3d\xf7\x1c\xe2\xf1\xb8\x2f\xa0\xb1\xee\x13\x9f\xc6\xff\xa2\x3d\xad\x1c\x07\x50\x36\x20\x58\x1c\xb6\x32\xae\x2c\xfd\xa3\xca\xa8\x03\xb0\x0c\x16\x26\x4e\xf5\x08\xf5\x7a\x73\x6e\x78\xa4\x2d\x7b\x66\x21\xa4\x7d\xca\x19\xa6\x01\xcc\x03\x48\x02\x48\x13\x91\x0a\x40\x23\x22\xdd\xac\x5f\xb9\x8e\x0b\x0b\x0b\x55\xf5\x55\x14\x05\x0d\x0d\x0d\xf6\xb7\xde\xfa\xc9\x44\xe4\x03\x10\xc8\x29\x3c\x7a\xa3\x39\xff\xd1\x8d\x78\xbe\xcd\x5f\x64\xbd\x5b\x16\xfd\x0f\xef\x9c\x09\x1e\x6c\x5d\x51\x3a\x4a\x75\xb5\x0d\xa5\xca\x3d\x5b\x61\xe1\x84\xd2\x90\x6c\x2c\x9e\xff\xe4\x93\xae\x95\x6f\x81\x30\x41\xa0\xcc\xc8\xc8\x88\xbd\x0d\x6b\x51\x22\x6c\xf7\xed\xf5\xac\xe7\xe8\xa9\x89\xdd\xf0\x68\xa0\x46\x60\x5e\xaf\x17\x27\x4e\x9c\x40\x2c\x16\xf3\x85\x0b\x72\xdf\x4f\x0d\xc7\xff\xb2\x39\xeb\x39\x62\xc9\xdb\x4a\x9b\xd8\x65\x99\x8b\x74\x33\x3b\x57\x40\x20\xe7\xe1\x99\x4b\x9d\x99\x33\xc3\xed\x99\x77\x73\x1e\x3e\x26\x20\xa6\x50\xea\xd8\x34\x80\x1c\x00\x5d\x08\xa1\xa7\x52\x29\x9e\x48\x24\xb0\xb8\xb8\x88\xc5\xc5\x45\xcb\xa7\xbb\x26\x47\x6a\x6f\x6f\x67\x7e\xbf\x1f\xf1\x78\x1c\xf1\x78\x1c\x6d\x6d\x6d\x4c\x92\x24\x66\x52\xb8\x22\x84\x08\x11\x51\x0c\x42\x74\x10\xa8\xab\x2b\xe9\x7d\xe4\xc0\x9d\xc8\xf1\x4d\xcb\xde\x5e\xb2\xd9\xc3\xdd\x64\xf0\x92\xbf\x38\xfb\xb7\x7b\xe6\xff\x7d\xde\x63\xbc\x0f\x60\x6a\x7e\x7e\x3e\xf7\xca\x2b\xaf\xd4\xa3\xc4\xcf\xcc\x54\x59\x0f\x64\x85\x7a\x66\x33\xae\x28\x0a\xfb\xe2\x17\xbf\x88\xa6\xa6\x26\x5f\xb0\xc0\xfa\x5e\xb8\xd2\xfc\x57\xf1\xac\xe7\x60\x25\x73\x37\x45\xaa\x32\x94\x29\x77\xba\x69\x84\x50\x65\xae\x5e\xec\x58\xf9\xe8\x62\x67\xe6\x1f\xf3\x1e\xe3\x1a\x80\x49\x22\x4a\xa0\xd4\xb1\x9a\xa6\x69\xfa\xdd\xbb\x77\xf9\x9d\x3b\x77\x30\x39\x39\x89\x5c\x2e\x67\xaf\x67\xad\xfa\xaf\x67\xbc\x8f\x96\x96\x16\xf4\xf4\xf4\xa0\xa7\xa7\x07\x8d\x8d\x8d\x8c\x88\x14\x00\x01\x00\x51\x00\x1d\x10\xe8\xdb\x94\xf4\x1e\x3e\x3c\xd1\xf0\x4c\x7b\x5a\xe9\x76\x7b\x32\x4d\x12\xea\xb7\x1f\x9a\xff\xbf\xe6\xc3\xc5\xef\x03\x18\x53\x55\x35\xfd\xca\x2b\xaf\x20\x95\x4a\xd5\x2b\xfa\x33\x09\x0f\x84\x82\x1f\x7f\xfc\x71\xd6\xdf\xdf\xaf\xf8\x75\xa9\xfb\xf9\x2b\xf1\xbf\x6c\x5b\x51\x8e\x51\x55\xd6\xee\xfa\xa5\x73\xa8\xc3\x01\x8c\x35\xe7\x87\x3f\xdc\x9c\xfa\x6e\xca\xa7\x9f\x07\x61\x42\x08\x31\x0b\x20\x43\x44\xea\xec\xec\x2c\xbf\x7e\xfd\x3a\xae\x5f\xbf\xfe\x59\x9a\x00\xcb\xb8\x78\x3c\xce\x86\x86\x86\xd0\xdf\xdf\xcf\x14\x45\x91\x51\xea\xe8\x18\x80\x2e\xc6\x31\xb0\x6d\x2e\xf8\xd4\xe1\x89\xc8\xd3\x41\x4d\x8e\x58\x83\x32\x0e\xf0\x77\x06\x96\xff\xe6\xd3\xb6\xec\xd7\x41\x18\x31\x0c\x63\xe9\x9d\x77\xde\xe1\x13\x13\x13\x6b\xd5\xe5\xc7\xe2\x2e\xb4\x42\x4d\xc5\xe0\xd0\xa1\x43\x6c\xd7\xae\x5d\xb2\x2c\xa8\xed\x8b\xc3\xf1\x3f\xe9\x59\xf6\xbd\x60\x69\x9c\x15\xad\xb2\x22\x7f\x2b\xa6\x5d\x51\xa5\x5c\x65\x14\x3d\x7d\xb2\x3f\xf9\xdd\x9b\xf1\xfc\x5b\x82\x30\x0a\x60\x0a\x25\x8a\x55\xc7\xc6\xc6\xf8\xc5\x8b\x17\xdd\x66\x56\xd4\xab\xfb\x7a\x1b\xab\x96\xb2\x52\x85\xdf\xb6\x6d\x1b\xdb\xb7\x6f\x1f\x82\xc1\xa0\x45\xd1\x2d\x10\xe8\x0d\x6a\x6c\xdf\xa3\xe3\xd1\x2f\x0f\xcc\x07\x76\x03\xc0\x70\x5b\xf6\xd4\x0f\x06\x96\xff\x88\x43\x7c\x42\x44\xf3\xe7\xcf\x9f\xd7\xcf\x9f\x3f\xbf\x2a\xbf\xf5\x96\x5b\xe3\x59\xd6\x8d\xbd\x2f\x0a\xde\xba\x75\x2b\x3b\x76\xec\x98\x4c\xa0\xd8\xf1\x1b\x8d\xbf\xbb\x6b\x26\xf8\xbf\x12\x6c\xca\x87\x35\x6e\x2d\x73\x65\x93\x2d\x0b\x5b\x47\x03\xb8\x15\x53\xaf\xbd\x33\xb0\xfc\xd7\x59\xaf\xf1\x31\x80\x71\x00\x09\x21\x84\x7a\xe7\xce\x1d\xfd\xcc\x99\x33\x48\x26\x93\x0f\xd4\x16\x7e\x3f\x61\xfb\xf6\xed\xec\xe0\xc1\x83\x50\x14\xc5\x07\x20\x82\x12\xdb\x1e\xda\x3e\x17\xf8\x17\x43\x73\xc1\xdd\xaf\xee\x48\xfc\xb1\x26\x8b\xb3\x00\xa6\xee\xdc\xb9\xa3\xbe\xf1\xc6\x1b\x3f\xd6\xba\x13\xee\xc3\x5d\xf8\xab\xbf\xfa\xab\xb2\x47\xf6\x44\x76\x4f\x07\x7f\xf9\xd8\x58\xe3\x1f\x31\x41\xf2\x2a\x71\x6b\x57\x36\xed\x9c\x5a\x00\x06\x13\xfc\x5c\x77\xfa\xed\xb3\xdd\xe9\xff\x66\x90\x18\x26\xa2\x49\x21\x44\x3a\x9d\x4e\x6b\x3f\xfc\xe1\x0f\x61\xb2\xb5\x7a\x6e\xb4\x7a\xd6\x9c\x8d\xde\x43\x8d\xf8\x55\xfa\x87\xcf\xe7\x63\x87\x0f\x1f\x46\x5f\x5f\x1f\x63\x8c\x05\x00\xc4\x09\xd4\xc1\x04\x14\x83\xc4\x14\x80\xe9\x95\x95\x95\xdc\xcb\x2f\xbf\xfc\x93\xeb\x2e\xfc\xd2\x97\xbe\xc4\x1a\x1b\x1b\x03\xed\x29\xe5\xd1\x9f\xbe\xd2\xfc\x0d\x8f\x41\xd1\xca\x10\x02\xb0\xf7\xa4\x5d\xd6\x5a\x0a\x95\x26\x09\xf5\x9d\x81\xe5\xbf\x1d\x6d\xce\xbd\x02\xc2\x08\x80\x69\xc3\x30\x72\x23\x23\x23\xfc\xf4\xe9\xd3\x3f\x8e\xb7\x7e\xc3\x32\xb0\xad\xad\x8d\x3d\xf6\xd8\x63\x68\x68\x68\x50\x00\xf8\xcc\x3c\x54\x5d\xd7\xb5\xd7\x5f\x7f\x9d\xcf\xce\xce\x6e\x48\x57\x38\x74\xe8\x10\xf3\xfb\xfd\x68\x6c\x6c\xc4\xf2\xf2\x32\x16\x16\x16\x30\x3c\x3c\xbc\x5e\xb1\xe4\x1a\x36\xaa\x45\x03\x00\x1e\x7d\xf4\x51\x36\x34\x34\xa4\x78\x8b\xac\xf7\xcb\x17\x5a\xbe\x15\xcb\x7b\x76\x97\xdc\x76\x95\x71\x6e\xa9\x53\xcd\xff\x02\x20\xaa\xc4\xa8\xb2\x91\x7b\x75\xc7\xe2\x7f\xbc\xdb\x50\x78\x43\x40\x5c\x03\x30\x9f\xcf\xe7\xd5\xf7\xde\x7b\x0f\x77\xee\xdc\x01\xaa\x29\xad\xd6\x83\xac\x87\x4a\xdd\xb0\x1b\xa5\x60\x67\x7c\x55\x1a\x8f\xc7\x83\xdd\xbb\x77\x63\x70\x70\x10\xa1\x50\x08\x93\x93\x93\x38\x77\xee\x1c\x16\x17\x17\xd7\xc4\x02\x40\x43\x43\x03\x0e\x1d\x3a\x84\x4d\x9b\x36\x31\xc6\x98\x22\x84\xb0\xac\x8b\x3a\x11\xe9\x86\x61\xe8\x17\x2f\x5e\xe4\xe7\xcf\x9f\xbf\xa7\x3a\xdb\x59\x74\xbd\xe1\x43\xf9\x7e\x77\x77\x37\x9e\x79\xe6\x19\x06\x81\xf8\x93\xa3\x8d\x7f\xb0\x63\x36\xf8\x95\x8a\x97\xa5\x14\x9c\xfa\xb3\x3d\x3e\xab\x18\xe9\xef\xed\x48\x7c\x75\x2e\xa2\xfd\x23\x80\x6b\x00\x96\xe6\xe6\xe6\xb4\xb7\xde\x7a\xcb\x6d\xb8\xe3\xac\x03\xb0\xfa\xc5\xab\xd5\xc1\x0f\x12\xfb\x99\xc4\x45\xa3\x51\x7c\xe1\x0b\x5f\x40\x30\x10\x0c\xc4\x72\x72\xdf\xbe\xa9\xf0\xaf\xf4\x2c\xfb\x1e\xf5\x18\x2c\x92\xf6\xe9\x13\xd7\x5a\x72\xdf\xb9\xd2\x9e\xf9\x6e\x51\x16\xc9\xe9\xe9\x69\xed\xd5\x57\x5f\xdd\x70\x19\x12\xaa\x07\xa9\x1c\x95\xfe\xe1\xb6\x38\x06\x80\x7b\x3c\x1e\x7a\xf6\xd9\x67\xa1\x28\x4a\xb0\x77\xc9\xf7\xd4\xd1\xf1\xe8\xef\x11\xc0\x2c\xfd\xd8\x92\xb3\x96\xa1\x82\xec\x02\x17\x80\xea\xe1\x99\xef\xef\x48\xfc\xe5\x6c\x83\xf6\x3a\x80\xab\x00\x16\x47\x47\x47\x8b\xef\xbe\xfb\x2e\x54\x55\xe5\xa8\xed\x72\xb4\xbf\x27\x4e\xd7\xa4\x3d\xcd\xbd\x60\xed\x8d\x52\x0b\x2b\x1e\x34\xd6\xeb\xf5\xe2\x85\x17\x5e\x40\x30\x18\x0c\xf4\x2d\xfa\x9e\x7c\x7e\xb8\xf9\xe5\xf6\x15\xe5\x29\xc5\x90\x3a\x3c\x9c\x9a\x02\x1a\xdb\xd2\xb3\xec\x3b\xd1\xbd\xec\xdf\x33\xde\x94\xff\xd0\xd7\x18\xca\x44\x22\x11\x3e\x31\x31\x81\x8d\x94\xeb\xa4\x5e\xeb\xda\x19\x07\x00\xd8\xbb\x77\x2f\x42\xa1\x90\xe2\xd5\xa9\xe3\xb1\x9b\xd1\xdf\x65\x20\xd9\xee\x9e\x13\x20\x9b\x6d\xd6\xea\xf4\x52\x47\xeb\x4c\x68\x6f\x0c\x2d\xfe\xa7\x99\x88\xf6\x1a\x4c\xca\x1d\x19\x19\xd1\x4f\x9e\x3c\xc9\x35\x4d\xb3\xca\x71\xe3\x22\x6e\x66\x45\xb7\x34\x1b\xc1\x3a\x29\xd9\x6d\xc8\xb1\xd6\xf1\xbe\xb0\x87\x0e\x1d\x42\x30\x18\x54\x22\x79\x69\xe8\xe9\xeb\xb1\xbf\xf0\x1a\xac\x8d\x6c\x24\x61\x39\x1f\xdb\x32\xca\x93\x4f\xdc\x88\xfd\x01\x04\xa2\x5b\xb7\x6e\x65\x6d\x6d\x6d\x1b\x2a\xb7\x9e\xb5\xca\x1e\xc7\xa3\xd1\x28\xdb\xbd\x7b\x37\x83\x40\x64\xff\x64\xe4\xd7\xa2\x79\x79\x3b\x20\xcc\xa9\x2c\xe6\xcf\x36\x33\xd1\x6e\x92\xe4\x10\xfc\xdd\xad\xcb\x2f\x4f\x36\x16\xbe\x8f\xd2\x18\x77\x69\x64\x64\x44\x3f\x75\xea\x14\x77\x94\x55\xeb\x65\xb3\xdf\x77\x53\x2a\x36\x82\xad\x25\x92\x6a\x75\xdc\x7a\xe4\xf7\x86\xb0\x44\x84\xde\xde\x5e\x06\x20\xb4\xe7\x6e\xf8\x57\xbc\x3a\xeb\x10\xab\x18\x50\xe5\xbc\x77\xc9\xf7\x53\x2d\x19\xcf\x1e\x00\xbe\xa1\xa1\xa1\x0d\x95\x5b\xeb\xad\x5e\x95\xc1\xa1\x43\x87\x40\x44\x4a\x63\x5e\x1e\x7a\x68\x3a\xf4\x15\x32\xeb\x50\x72\x99\x91\x0b\x23\x2c\xf9\xa7\x05\x04\x2e\x76\x66\x4e\x8e\xb4\xe6\xfe\x4e\x40\xd8\x3b\xd7\xad\x7c\xb7\x37\xd1\x49\x9d\xcc\x25\x7e\x23\xd8\x7a\x1d\xe4\x86\xb5\xe7\xf1\x40\xb0\x1d\x1d\x1d\xf0\x7a\xbd\x0c\x02\x91\xce\x94\xf7\x90\xd5\x56\x80\xd9\x74\x02\x66\x9b\x96\x5c\x57\x4c\x40\xe9\x4a\xfa\x3e\x2f\x84\xf0\xf5\xf4\xf4\x6c\xa8\x5c\xcb\x9b\x54\x4b\xe3\xe4\x00\x58\x4b\x4b\x0b\xeb\xea\xea\x62\x04\x8a\x1e\xbc\x1d\xf9\x75\x45\x67\xb1\x8a\x45\xca\x4c\x69\x59\x2d\x2c\x1f\xaa\x59\xd1\xe9\x06\x6d\xec\xa3\xcd\xa9\xaf\x83\x70\x8d\x40\x89\xd9\xd9\x59\xcd\x41\xb9\xf5\x82\x9b\xf6\xfc\x20\xb0\xb5\xf2\x58\x4f\xde\xf7\x8d\x6d\x69\x69\x61\x28\x69\xb8\x01\x99\x53\xa4\xe2\x5c\x33\x45\x1c\x55\x18\x35\x04\x40\x82\xe0\x2f\xb2\x16\x00\x8a\xc7\xe3\x71\xeb\xa3\x9a\xc1\xed\x8d\x5e\xf5\xc6\xef\xdd\xbb\x17\x8c\x31\x5f\x3c\xeb\xd9\xb9\x75\x21\xf0\x02\x48\x00\x64\xb2\xe1\x55\xe7\x28\xab\x1f\x05\x8f\x91\x7b\x67\x60\xe9\xaf\x74\x49\x5c\x06\x30\xbb\xb2\xb2\xa2\xbe\xf9\xe6\x9b\x56\xbe\xb5\xca\x74\xc6\xb9\x71\x98\x07\x89\xb5\x53\x98\x3d\xce\x0d\xf3\xa0\xb0\x00\x4a\xb4\x90\xf2\xe9\xf3\xe5\x36\x24\x4b\xe4\x59\x42\xae\xd4\x9e\x82\x04\x92\x7e\x3d\x41\x44\xce\xbc\xd6\x2c\xd7\xc9\x3e\x9c\x32\x8e\x37\x37\x37\xb3\xee\xee\x6e\x06\x81\xc8\x81\x3b\xe1\x5f\x93\x04\x05\x08\x04\x12\xe6\xcf\xfa\x33\x1d\xf5\x65\x1e\x43\x02\x67\x7a\xd2\xdf\x5d\x0a\xe8\x1f\x09\x21\xa6\x0c\xc3\x50\xdf\x7e\xfb\x6d\x6b\xe6\xbf\x53\x66\xd6\x93\xab\x6e\x54\xf7\xa0\xb1\x6e\xe3\x7e\x37\x2a\x79\x20\xd8\xb9\xb9\x39\x08\x21\x38\x08\xb9\x6b\xad\xd9\x53\x96\xa5\x9e\x04\x95\xfd\xe0\x64\xf3\x91\xe7\x3d\x3c\x39\xde\x94\x3f\x8f\xd2\x0c\x95\x0d\x95\x5b\xeb\x2d\x2c\x87\xbd\x7b\xf7\x82\x88\x7c\x0d\xaa\xdc\xdf\x9f\x08\x3c\x47\x96\xf3\xc0\x7c\xeb\x4a\xc1\xa2\x62\x94\xa9\x78\x26\xa2\x8d\x5d\xee\xc8\x7c\x47\x40\x4c\x10\x51\xe6\x87\x3f\xfc\x21\x5f\x58\x58\x80\xad\x8c\xb5\x64\x56\x2d\x59\xfa\x20\xb0\xdc\x11\x6f\x7f\x7e\x27\x55\x38\xeb\x7c\xdf\xd8\x44\x22\x01\x5e\x5a\xcc\x94\xbe\xd1\x9c\x7f\xf7\x46\x3c\x7f\x56\xa0\xc2\x09\xcb\x0a\x17\x01\x06\x09\xfe\x41\x5f\xf2\xe5\xbc\xc2\xc7\x01\xe4\x6e\xdf\xbe\x6d\xcb\x76\xed\x72\x99\xcb\xcd\x32\x28\x14\x0a\xb1\x4d\x9b\x36\x31\x00\xa1\xdd\xd3\xa1\x9f\x97\x38\x42\xd5\x66\x48\xcb\xc0\x61\xf2\x65\xd3\x8b\x64\x10\xf8\xa9\xbe\xe4\xcb\x9c\x61\x94\x88\x96\x66\x67\x67\xf5\xe1\xe1\x61\x67\x85\x6a\xfd\xdc\x2a\x5f\x4b\x23\xbe\x57\x2c\x5c\xae\xdd\xd8\x5f\xad\xb4\xf7\x85\xd5\x34\x8d\x8f\x8e\x8e\x72\x00\x19\x0e\x31\xfe\xd6\xd0\xd2\x9f\x5d\xec\xcc\x9c\xd4\x98\xd0\xac\x01\x92\x00\x90\xf6\x1a\x4b\x6f\x0d\x2e\xfd\xe7\xab\xad\xb9\xef\x00\x98\x06\xa0\x5e\xbe\x7c\xd9\xfe\x7c\x6b\x96\x6b\x9f\xb2\x63\x7f\x33\x39\x00\xf4\xf7\xf7\x83\x31\x26\x7b\x8b\xd4\x36\x34\x1f\x38\x51\x5a\x02\x62\x05\xfb\xc4\xb8\x72\x0c\x84\x20\x8c\x35\xe7\x3e\x9e\x8e\x68\x1f\x00\x98\xd6\x75\x5d\x7d\xef\xbd\xf7\xac\x24\x6e\x8a\x4f\xad\xe0\x4c\x5b\x8f\x25\x6f\x04\xeb\x96\x8f\x5b\x7a\xb7\x72\x1e\x18\xf6\x83\x0f\x3e\xe0\x5d\x5d\x5d\x5a\x28\x14\x9a\xd5\x18\xff\xf8\xbd\x2d\xc9\xf4\x85\xae\x95\xb7\xda\xd2\xde\x6d\xbe\x22\x0b\xa5\xfc\xfa\xfc\x4c\xa4\x70\x49\x93\xc4\x88\x80\x18\x83\x40\xf2\xfa\xf5\xeb\xdc\xb6\x64\x75\x5d\xe5\x3a\xe7\x64\xd9\x1b\x80\x0d\x0e\x0e\x02\x40\x60\xf3\x92\xff\xd1\x80\xc6\xba\xca\xde\x5b\x6b\x95\x5f\x79\x98\x04\x58\x3d\x6d\x48\xd0\x3f\xee\x4e\x7f\x5b\x40\x4c\x10\x28\x33\x3c\x3c\xcc\x53\xa9\xd4\x7a\x3b\xb5\xdc\x00\x2e\x95\xdd\x88\x86\x5b\x0f\x5b\x4b\x66\xaf\xa7\x9c\x07\x8a\x7d\xf5\xd5\x57\x71\xe2\xc4\x89\x5c\x38\x1c\x9e\x04\x90\x4e\x79\xf5\xf1\x74\x8b\xf1\x3e\x00\x59\x08\xa1\x02\x58\x22\xa2\x25\x08\xa4\xef\xdc\xb9\xa3\xbf\xff\xfe\xfb\xb5\xca\xaa\x59\xae\x73\xda\x6c\x99\xc4\xbb\xba\xba\x10\x89\x44\x64\x02\x45\xb6\xcd\x05\x9e\x27\xfb\xb4\x51\x9b\xc5\x05\xb0\xb4\xfa\xd2\x98\xe9\x56\x2c\xff\xc9\x42\xb0\xf8\x31\x11\x25\xf2\xf9\xbc\x7e\xf6\xec\xd9\x8d\x74\x2e\x5c\xea\xf3\x59\x63\x9d\xb2\x74\xa3\x9c\xe2\x9e\xb1\x2b\x2b\x2b\x78\xf5\xd5\x57\xf1\xb9\xcf\x7d\x4e\xdd\xb4\x69\xd3\x3c\x80\xa4\xe9\x6c\xb0\xf2\xd0\x35\x4d\xd3\x2f\x5c\xb8\xc0\x2f\x5d\xba\xe4\xc6\x91\xd6\x2c\xb7\xe6\xb4\xd9\x9e\x9e\x1e\x10\x91\x1c\x2a\x48\x5d\xed\x69\xef\x01\x4b\xe8\x97\x57\x70\x59\xc1\x76\xca\x09\xfc\x52\x67\xe6\x35\x10\xa6\x84\x10\xb9\x35\x5c\x5d\xb5\x42\x2d\x2a\xfc\xac\xb0\x6b\x51\xe5\x67\x8a\x5d\x59\x59\xc1\x9b\x6f\xbe\x89\x78\x3c\x8e\x9e\x9e\x1e\x35\x12\x89\x20\x14\x0a\x61\x79\x79\x19\xa9\x54\x0a\x57\xae\x5c\x59\x6f\x19\xae\xe5\xd6\x9c\x36\xdb\xd3\xd3\x03\x21\x84\xaf\x67\xc9\x77\xc4\x63\x50\xc4\xbe\x08\xc2\x9a\x97\x6e\x9f\x38\x07\x08\x24\x42\xc5\x89\xe9\x48\xe1\x2c\x80\xa5\x42\xa1\xa0\x5f\xb8\x70\xe1\x5e\xe5\xe5\x7a\xa9\xf0\xb3\xc0\xae\x75\xef\xbe\xb0\x83\x83\x83\xcc\xe7\xf3\x01\x00\x2e\x5d\xba\xc4\xbd\x5e\x2f\x2b\x14\x0a\x3c\x91\x48\x20\x91\x48\xc0\x05\x0b\xa0\xb4\xdc\xb6\xb9\xb9\xb9\x7c\x23\x9d\x4e\x63\x6c\x6c\xcc\x3e\x2d\xd8\xb5\x5c\xd7\x95\x0d\xcd\xcd\xcd\x08\x85\x42\x0c\x02\xa1\xde\x25\xdf\xe3\x15\x6d\xb9\x62\x64\x11\x55\x4c\xba\x44\xc8\x57\x5b\xb3\xef\x9b\x73\x96\x73\xe3\xe3\xe3\x55\x79\x9a\xc1\xa9\xfd\x59\x71\xab\x8c\x00\x35\xd2\xfd\xa8\xb0\xf6\xb4\xf7\x8d\x6d\x68\x68\x60\xc7\x8e\x1d\x43\x6b\x6b\x2b\x43\x45\x2c\xe2\x91\x47\x1e\xe1\x00\xf4\xb1\xb1\x31\x9c\x3e\x7d\x1a\xf9\x7c\xbe\x0a\xab\x28\x0a\x0e\x1f\x3e\xcc\x06\x07\x07\x19\x00\x85\x71\x28\x92\x20\x85\x93\xd0\x0d\x82\xba\x6b\xd7\x2e\x6d\x66\x66\x06\x6f\xbf\xfd\xf6\x2a\xac\x55\x0f\x57\x25\xab\xbd\xbd\x1d\x00\x64\x99\x53\xac\x33\xe5\xdd\x03\xd3\x61\x5f\x19\x12\xd9\x9c\xf9\x26\xd0\x20\x68\x63\xf1\xfc\x7b\x00\x96\x00\x68\xe6\x24\x6f\x3b\x35\xd9\x55\xfa\xf5\xb0\x98\x5a\x94\xf8\xa0\xb1\xce\x7b\x6e\xd8\xb5\xb8\x41\x4d\xec\xd0\xd0\x10\x0e\x1d\x3a\xc4\x14\x8f\xe2\x6b\xcc\xca\xdd\x83\x0b\x81\xe7\x5a\x57\x94\x87\x74\x26\xd4\x99\x88\x76\xfe\x7a\x4b\xf6\xcd\xfe\x2d\xfd\xf3\x5d\x5d\x5d\xea\xeb\xaf\xbf\x8e\x44\x22\x51\xc6\x3e\xf7\xdc\x73\x68\x69\x69\x51\x02\x1a\x6b\xdb\x3b\x15\xfe\x85\x2d\x09\xff\x17\x43\x9a\xd4\x51\x90\xf9\xd2\xed\x46\xf5\xe4\xc7\x9b\x56\xfe\x0a\x6d\xed\xe3\x5f\xfa\xd2\x97\x56\x61\xad\x3a\xc8\x70\x69\xfc\x9e\x9e\x1e\x06\x40\x89\x67\x3d\x03\xfe\x22\x6b\xb1\x66\x63\xb8\x4d\xff\xb0\x62\xe7\xc2\xda\xf8\x8a\xd7\x18\x07\x90\x99\x9b\x9b\xe3\x4b\x4b\x4b\xe5\xfc\x9c\xf9\xbb\x34\x20\xb0\xfa\xed\xb3\xc7\x3b\x29\xa6\x2e\xf6\xd0\xa1\x43\xac\xa7\xa7\xa7\xa4\x24\x52\x69\x1b\x08\x00\x96\x95\x88\xe7\x72\x39\x7e\xf7\xee\x5d\x5c\xbb\x76\x0d\x33\x33\x33\xb5\xf2\x72\xd6\xd5\xad\xee\x75\xb1\xdd\xdd\xdd\xec\xe8\xd1\xa3\x8c\x11\x8b\xec\x9b\x0a\xff\xdc\xa1\xdb\x91\xdf\xf3\x18\x2c\x6e\xb5\x63\x7f\xc2\xff\x2f\xf7\xdf\x09\x8f\xbd\x3d\xb8\xf4\x6f\x6e\x35\xe1\xfd\x67\x9f\x7d\x36\xf3\xbd\xef\x7d\x8f\xa5\x52\x29\xfe\x85\x2f\x7c\x81\xb5\xb4\xb4\xf8\x62\x59\x79\xe8\xa7\x86\x9b\xbf\xde\xa0\x4a\xbb\xad\xb6\x56\x0c\xd6\xbd\x63\x36\xb4\x67\x4b\xc2\xff\xe2\xab\x3b\x16\x7f\xed\x6e\x14\x67\x8e\x1d\x3b\x96\xfb\xce\x77\xbe\xc3\x0c\xc3\xa8\xaa\xab\xb5\x7c\xb4\xec\xec\x97\x24\x89\x1e\x7e\xf8\x61\xe6\xf1\x78\xc2\x5b\x17\xfc\x3f\xdd\xbb\xec\xfb\x3c\x9c\x41\xd8\x58\xb5\x79\x7e\xa5\x23\xf3\xe6\x74\x54\xfb\x27\x00\x0b\x57\xae\x5c\x31\xe6\xe7\xe7\x6d\xa9\xab\x7e\x6e\x9d\x6b\x77\x56\x33\x47\x3a\x37\xc7\xf9\x2a\x6c\x38\x1c\xa6\x63\xc7\x8e\xd1\xe3\x8f\x3f\x2e\xb5\xb5\xb6\x7a\xfd\x8a\x37\xe2\x5f\xe1\x7d\xe1\x84\x71\x28\xbc\x64\x1c\x0d\x26\xf9\x5e\x5f\xc6\xe8\x21\x0e\x2f\x05\x95\x62\xac\x29\x86\x81\x81\x01\xa3\xb7\xb7\x17\x0b\x0b\x0b\x94\xcb\xe5\x9c\x13\x1f\xec\xe5\x5a\xe5\xd8\x27\x40\xd8\xef\x31\x37\xec\x89\x13\x27\xc8\xeb\xf5\x06\x77\xcc\x06\x7f\xe6\xd8\x58\xf4\xcf\x65\xc1\x42\x36\x61\x07\x02\xe0\x31\x28\xd6\xb7\xe4\x7f\xfa\x76\xa3\x7a\x4a\x0b\xb2\xb9\xa6\xa6\x26\xdd\xeb\xf5\xd2\xb6\x6d\xdb\x64\x0f\x67\x6d\x2f\x5c\x69\xfe\x4f\x4d\x79\x79\x7f\x65\xd2\xb1\x85\x15\x90\x0d\x6a\xe8\x59\xf6\x1d\xb9\xda\x9a\x7b\xc3\x13\xf2\xa5\x89\xc8\x98\x9e\x9e\xae\x9a\x58\x50\x96\x07\xd6\x31\x16\x8b\xc1\xe7\xf3\x31\x00\x81\xf6\xb4\x77\x77\x65\x6b\x0a\x73\x1f\x0c\xcb\xe3\x61\xa3\x0a\x01\x81\xc9\x68\xe1\xbc\x10\x22\x0d\x40\x77\x98\xd3\xac\xbc\x9d\x6c\xcc\x2d\x8d\xf3\x7c\x2d\x39\x0a\xa0\x34\x67\xf9\xf0\xe1\xc3\x4c\x96\x65\xc5\x93\xe7\x1d\xf1\x49\xed\xe7\x1a\xa7\x8b\x5f\xf2\xa8\x62\x08\x10\x8a\x95\xce\x9c\x82\xa0\x1b\x1e\x9a\x48\xb6\xc9\xdf\x5b\xe8\xf5\xfc\x75\xbc\xa9\x69\xfc\xc5\x17\x5f\x54\x2f\x5d\xba\xc4\xcf\x9d\x3b\xc7\xcc\xed\x90\x6a\xc9\x57\xb7\xba\x3b\xeb\xca\xcc\x3a\x21\x10\x08\x28\x8a\x4e\x1d\x87\x26\x22\xbf\xc3\x04\xc9\x80\x80\x30\x5d\x70\x15\x87\x11\xc1\xa3\x53\xfc\xc8\xad\xe8\xbf\xfb\xee\xae\x85\x7f\xd5\xd6\xd6\x36\xdf\xd6\xd6\xc6\x01\xf8\xb6\x2c\xfa\x9f\x8e\x67\x3d\x87\xac\x91\x8b\x1b\x36\xa8\x49\xfd\x3b\x66\x83\x3f\x73\x6e\x53\xfa\xcf\x07\x06\x06\xb4\x73\xe7\xce\x55\xd5\x6f\x95\x89\xab\xa9\xa9\x09\x44\xc4\x20\x10\x88\x67\x3c\xfd\x96\xe9\xac\x94\x1f\x95\x5d\x84\x02\x54\x9a\xe7\x2c\x4a\xc6\xf0\xa5\x40\x71\x0c\x40\x2e\x93\xc9\xf0\x74\x3a\x5d\xce\xaf\x4e\x43\xad\xe7\x07\xc7\xf9\x2a\xec\x9e\x3d\x7b\x70\xf4\xe8\x51\x59\x66\x52\xb4\xe9\xb6\xf6\x0b\x83\x1f\xe6\xde\x69\x19\x2f\xfc\xbe\x47\xe5\xbb\x01\x28\x36\xc7\x9b\xa5\x35\xc8\x72\x91\xf7\xc7\x27\xb5\xff\x63\xe0\xa3\xdc\xbb\x6d\x37\xb4\xdf\x24\x43\xc4\x77\xef\xde\x2d\x3f\xf5\xd4\x53\x6b\xd5\xcd\x79\xbf\xe6\x33\x99\xc3\x4c\xa5\x2d\xad\x1c\x08\x69\x52\x6f\xb9\x16\xa2\x2c\x2a\x4a\xc3\x11\x73\xf4\xd9\x91\x56\x8e\x06\x34\xd6\x45\x44\x0a\x11\x31\x22\x0a\x75\xa4\x94\xcf\x95\xed\x0f\xb5\xb0\x82\xd0\x95\xf4\x7e\x9e\x88\x42\xc1\x60\xd0\xd2\xb4\xcb\xf5\x58\x25\xdf\x1a\x1a\x1a\x20\x84\x90\x7d\x3a\x8b\x86\x34\xa9\x8d\x2c\x33\x33\x84\xe9\x88\x5e\xed\x22\x5c\x0c\x14\x27\x8b\x92\x48\x10\x91\x36\x3b\x3b\x6b\x65\x55\x4b\x56\x31\xdb\xcf\x1e\xe7\x0c\xae\x94\x61\x3f\xdf\xb3\x67\x0f\x7b\xf8\xe1\x87\x65\x26\x10\xeb\x1a\x29\xfc\x9f\x5d\x23\x85\xff\x57\x2e\x8a\x6e\xaa\x72\xa0\x5b\xe7\xa6\x8d\x57\x98\x3f\x22\x30\x1d\xb1\xd6\x9b\xda\xef\xf7\x5e\xc8\xff\x89\xa4\xa3\xa3\xa7\xa7\x47\x79\xf2\xc9\x27\xeb\xd5\xcf\x19\xe7\xa6\x69\x33\x00\xac\xa3\xa3\x03\x42\x08\x25\xa8\x49\xdd\x00\x31\x61\xb6\x99\xb5\xaa\xc3\x6a\x47\x32\xe3\x65\x83\x02\x5e\x9d\xb5\xc1\xd4\xb2\x85\x10\x8a\xa2\xb3\xa8\xe5\x2e\xac\x87\x95\x38\x85\x20\x4a\xd3\x76\x65\x59\xb6\xd7\x6f\x95\x8d\x96\xb7\xb6\xb6\x82\x88\xe4\xb0\x2a\x75\xc8\x06\x85\xcc\x56\x2a\xd3\x31\x91\xcd\x3d\x68\xba\x0b\x17\x43\xc5\x09\x94\x96\x99\xe8\x33\x33\x33\xb0\xe5\xe9\x16\xec\x6f\x7a\x3d\xcb\x8f\x1b\xe5\x94\xef\x75\x77\x77\xb3\x87\x1f\x7e\x98\x11\x10\x69\xbf\x5e\xf8\xad\xa6\x3b\xc5\xdf\x24\x40\xb6\x56\x53\x90\xb9\x47\x96\x75\xac\x88\x14\x6b\x9e\x58\xa9\x81\x48\x08\x16\x59\x30\x7e\xb6\xe7\x72\xfe\x0f\x89\x8b\xd8\xe6\xcd\x9b\xe5\x9d\x3b\x77\xae\x2a\xcf\xd1\x4e\x88\xc7\xe3\xe8\xec\xec\x44\x67\x67\x27\xa2\xd1\xa8\x53\x94\x70\x73\x87\x5b\xa6\x7a\xb8\x0a\xcb\x56\x60\x13\x77\xa5\xdd\x7a\x2a\x2f\x5f\x51\x12\xaa\xea\xe1\xaa\x5d\x21\x5c\x08\x15\xa7\xc5\x1a\x58\x01\xc2\x62\xb0\x38\x0d\xb3\xf3\x9d\x75\xb6\x8f\x83\x39\x00\xf8\xfd\x7e\x00\x90\xc3\x05\xa9\x83\x00\xb6\xda\x9b\x40\x15\xc7\xbe\x19\xb9\x18\x28\x4e\xa0\xb4\xaa\x9e\x9b\x83\x75\xd8\xf2\x75\x72\x09\xa7\x1c\x73\xa3\x5e\x37\x5c\x39\x5e\x96\x65\x3c\xf2\xc8\x23\x20\xa2\x40\xc3\x6c\xf1\x99\xe6\x89\xe2\xff\x0e\x73\x0b\x06\x41\x96\x1f\x95\x2a\x3b\x3e\x94\xa7\x9f\x98\x47\xab\xee\x56\xa3\x01\x88\xcc\x1b\x3f\xdb\x3c\xa1\x5d\x9a\xef\xf3\x7e\x75\xff\xfe\xfd\xe9\x89\x89\x09\x64\x32\x99\x72\x43\x01\x60\x8a\xa2\x60\xdf\xbe\x7d\x18\x18\x18\x60\x3e\x9f\xaf\xaa\xed\x32\x99\x0c\x2e\x5c\xb8\x80\xab\x57\xaf\x02\x00\x4b\xa7\xd3\x88\x46\xa3\xfa\x4c\x44\x1b\xcd\x7b\x78\x32\x50\x64\xd1\xca\x76\x15\x95\xf6\xb4\x34\xb3\xa5\x40\x71\x32\xef\xe1\x69\xa0\xb4\xe3\x2d\x11\xa9\x63\xf1\xdc\xe9\x47\x6e\x47\x7e\xd9\x6b\x20\x50\x0b\x2b\x08\x7c\xb4\x39\xff\x21\x4a\x3b\x1a\x70\x55\x55\xed\xed\x58\xed\x2e\x24\x22\x66\x2e\x8e\x96\x23\xaa\xdc\x5e\x79\x7c\x5b\xae\xab\xdc\x85\x02\x29\xbf\x7e\x07\x80\xa6\xeb\x3a\xb7\x8d\xc5\x5c\x29\xcf\x76\xac\x27\xe7\x6a\xa5\x05\x00\xbe\x6d\xdb\x36\x34\x36\x36\xca\x4c\x17\x6d\xed\xd7\x0b\xbf\x4d\x02\x72\x59\xc6\x3a\xde\xc7\x55\xdb\x90\xb8\xe9\xe2\xa6\xd4\x69\xb9\xa9\xfd\x1b\x4f\x9e\xf7\x79\xbd\x5e\x65\xef\xde\xbd\xab\xea\xfe\xd2\x4b\x2f\x61\xf7\xee\xdd\x4a\x44\xf6\xb7\x0c\xcc\xfb\x9f\x3c\x72\xab\xe1\x7f\x7b\x64\x22\xf2\x3f\xf7\x2e\xfa\x8e\x36\xf8\x43\xb1\xa3\x47\x8f\x2a\xcf\x3f\xff\x3c\x03\xc0\xcd\x89\xef\x9a\x2a\xf3\xe9\x4f\xba\x56\x5e\xaf\xa8\xe4\x4e\xd1\x01\x70\x80\x9f\xdf\xb4\xf2\x2a\x08\x4b\x44\x64\x6d\x39\x91\x4b\xfb\x8d\x6b\x67\x7a\x52\xdf\xe5\x75\xb0\xc3\x6d\xd9\x93\xd3\x0d\x85\x4f\x00\x64\x56\x56\x56\xf8\xf2\xf2\x72\x55\x9d\x57\xb9\x0b\x4d\x32\x97\xfd\x45\x16\xb7\xfc\xbb\x36\x67\x91\x2d\x94\x3a\x9b\x13\xf4\xac\x62\xcc\x0b\x21\x34\x5d\xd7\xdd\xc6\xb8\xf5\xcc\x78\xf5\x82\x5b\x3e\x00\xc0\xb7\x6f\xdf\x0e\x00\x81\x86\x79\xfd\x49\x6f\x4e\xec\xb4\xb6\x32\xac\xaa\xab\xad\x5f\xab\xde\x7d\xdb\x60\x88\x6c\xe9\x89\x00\x49\x47\xbc\xe9\x4e\xf1\xcb\x33\x5b\x95\x3f\xec\xeb\xeb\xd3\x3e\xf8\xe0\x83\x72\xf9\x5f\xf9\xca\x57\x64\x59\x92\x03\xbd\x8b\xbe\x23\x8f\x8f\x35\xfe\x87\x88\x2a\xed\x86\x20\x66\xca\x2f\x7d\x21\x54\x7c\xff\x9f\x06\x97\x7e\x07\x2d\x2d\xc3\xbf\xf4\x4b\xbf\xa4\x9e\x3f\x7f\x1e\x5b\xb6\x6c\x51\x05\xc4\xec\x27\x5d\x2b\xdf\x0a\x17\xe4\x8e\x5d\xd3\xc1\x63\xa5\xcd\xde\x4a\xe4\x27\x50\xda\x6b\xe4\x4c\x4f\xea\x7b\x63\xf1\xfc\x5b\x42\x88\x25\x5d\xd7\xf5\xeb\xd7\xaf\x63\xe7\xce\x9d\xaa\x10\x62\xea\x42\x57\xe6\x1b\x9c\x41\x3e\x34\x11\x39\xe1\x2b\x4a\x01\x0b\xab\x49\x5c\xbb\xd4\x99\x39\x79\xa6\x37\xf5\x57\x28\x2d\xb3\xcd\x99\xc6\xa5\xaa\x50\x65\xc9\x32\xa7\x83\x30\x00\xb2\x4f\x67\x11\x5b\x93\x81\xaa\x5a\xa6\xe2\x2e\xe4\x4c\xe8\xaa\xcc\xd3\x00\x74\x73\xa7\xf4\x5a\xc6\x80\xf5\x76\x6c\xad\xf4\xe5\xeb\x86\x86\x06\x06\x21\x22\xd1\x99\xe2\x17\x4b\x52\xa3\xd2\x9b\x64\x0e\x27\xec\x83\xda\xf2\x9e\x2e\x4e\x06\x64\xbb\x6f\x59\xeb\xa2\xb3\xfa\x33\x73\xfd\xca\xd7\xbc\x5e\x6f\x7a\xeb\xd6\xad\xec\xc6\x8d\x1b\xfc\x85\x17\x5e\x60\xb2\x2c\xfb\x36\x2d\x7b\x8f\x7e\x61\xa4\xe9\x1b\x1e\xce\xa2\x16\x58\x94\xc0\x72\x73\xc6\x73\xfc\xa7\x2f\x37\x7f\xeb\xef\x1f\x9a\xff\xf2\x72\x90\x86\x7b\x7b\x7b\xd5\xb9\xb9\x39\xde\xd2\xd2\x92\xe4\x0c\x23\xef\xf6\x2f\xff\xc9\xcd\xa6\xdc\xc8\x8e\xd9\xd0\xd1\x78\xd6\xd3\xc6\x49\xf0\xd9\x88\x36\x39\xdc\x96\x3d\x39\x17\xd6\xde\x03\x61\x14\x02\x99\xe1\xe1\x61\x7e\xee\xdc\x39\x1e\x8d\x46\xf5\xce\xce\xce\x25\x10\x86\x2f\x75\x64\xbe\x76\xbd\x25\x77\xba\x2b\xe9\x7d\x28\x5c\x90\xe2\x39\x0f\x4f\xdf\x8d\x16\xae\x64\x14\xe3\x32\x4a\xd3\x90\xe7\x93\xc9\xa4\x76\xf9\xf2\xe5\x55\x6d\x5c\x65\x8b\x6e\x6f\x6f\x87\x69\xf9\x91\x7d\x45\x16\xa9\x34\x82\x4d\x55\xa7\xea\x18\x9d\x71\xb5\x28\x89\x0c\x11\xf1\x6c\x36\xbb\xaa\x33\xee\x21\xd4\xb3\x76\x61\xc7\x8e\x1d\x0c\x80\xcc\x0c\xc4\x02\x29\xbe\xbb\x54\x1b\xcb\xd2\x56\x6d\x71\x5b\x7d\xed\x1e\xc8\xf6\x4f\xc9\xf3\x3e\x8f\x2a\xba\x0a\x7e\x4c\x77\x74\x74\xe8\xba\xae\xb3\xe6\xe6\x66\x99\x71\xc4\x1f\x1b\x8b\xfe\xbe\x87\x53\xa9\x73\x6d\x5c\xc0\xe2\x74\x41\x4d\xea\x3d\x7a\xab\xe1\xb7\xbf\xbf\x63\xf1\x5f\x77\x76\x76\x6a\x5f\xfb\xda\xd7\xf4\x97\x5e\x7a\x49\x8d\xc5\x62\xd3\x00\xb4\xdb\x8d\xea\xec\x64\x63\xe1\x1d\x94\x96\x9d\x72\x40\x24\x05\x30\x4d\x44\xd3\x42\x88\xa5\x44\x22\xa1\x9d\x3b\x77\x8e\x03\xc0\xeb\xaf\xbf\xce\x5f\x7a\xe9\x25\x2d\x16\x8b\xcd\x03\x50\xf3\xb2\x31\x3d\xd6\x9c\x3f\x8b\xd2\x22\x37\x4d\x08\x91\x04\x90\x20\x50\x7a\x79\x79\x59\x7d\xed\xb5\xd7\x5c\x9f\xcd\xe9\x2e\xb4\x58\x34\x63\x82\x94\xf2\x93\xdb\x37\x4c\x71\xb8\x0b\x39\x83\x26\x08\xba\x73\x27\x9b\xfb\x08\x75\x29\x3e\x1e\x8f\x03\x80\x2c\x15\x45\x5c\x2a\x8a\x58\xa5\x62\xf6\x23\x56\x5f\x0b\x97\xdb\x2e\x81\x38\x02\x4a\x9e\x77\x6b\x01\xf9\x93\x8e\x8e\x0e\x44\x22\x11\x10\x91\xd2\x9a\x56\x76\x37\xe5\x3c\x7b\xca\xda\x0d\x84\x9d\xf4\x4b\x45\x08\x81\x4d\x49\xdf\xf1\xa0\x26\x75\x67\x14\x3d\x7d\xe0\xc0\x01\xfe\xed\x6f\x7f\x9b\x3f\xff\xfc\xf3\x6a\x4b\x4b\xcb\x2c\x11\x25\x01\x4c\x08\x21\x14\x73\xa2\x84\x4a\x44\x39\x00\xda\x9d\x3b\x77\xf4\x37\xdf\x7c\xb3\xea\x99\xbf\xfd\xed\x6f\xf3\xc3\x87\x0f\x6b\x43\x43\x43\x4b\x1e\x8f\x27\x8d\xd2\xbe\x21\xcc\x94\xd1\x3a\x11\x69\x63\x63\x63\xfc\xcc\x99\x33\xc8\xe5\x72\xae\xed\x55\xcb\x5d\xc8\x98\x20\xb9\xac\xb5\x38\xf8\x9a\xc3\x5d\xc8\x85\xb9\x5d\x91\x33\x0f\x97\x38\xd7\xb2\xe0\x2e\xb3\x5d\xf1\xa6\xab\x4d\x66\xba\x88\x90\x28\xd5\x5f\xc0\xbe\x6d\xb0\xc9\x36\x4b\x27\xe5\x5d\x63\xcb\x8b\xcf\xab\x52\x56\x42\xc5\x75\x42\x30\x5f\x1c\x39\x1c\x0e\x23\x1c\x0e\x43\x08\xe1\x8b\xe6\xe5\xa1\xd2\x9e\x9a\x56\x87\x56\x2b\x9a\x64\x92\xb3\xc7\xa0\x68\x44\x95\x7a\xb3\x5e\xe3\x5a\x24\x12\x01\x00\xf6\xca\x2b\xaf\xf0\xed\xdb\xb7\xeb\x7d\x7d\x7d\x99\x8e\x8e\x8e\x5c\x79\xe6\x24\x11\xee\xde\xbd\xcb\xaf\x5c\xb9\x62\xad\xaa\x5c\xd5\x16\xa7\x4f\x9f\xe6\x97\x2f\x5f\xc6\xe6\xcd\x9b\xb5\xf6\xf6\x76\xcd\xef\xf7\x83\x73\x8e\xe9\xe9\x69\xdc\xbe\x7d\x1b\x8b\x8b\x8b\x56\x5b\xb9\xb6\xa3\x5b\x07\x3b\x86\x2d\xd6\x4e\xac\xa2\x3c\xc4\x70\x71\x3b\x70\x72\x6a\xab\x1b\x97\xb9\xce\xeb\xfa\x78\x32\xeb\x29\xec\xcc\xd9\x1c\x03\x93\x65\x23\xa7\x32\xa1\x95\xbb\xc4\xb9\x2f\xb4\xd5\xff\x40\xb9\xcf\x4c\x99\x5e\xe6\x66\x44\xc4\x74\x26\x58\x65\xeb\xe2\x0a\xd4\xaa\x83\x95\x8f\x20\xf0\xa2\x24\x98\x10\xc2\xbe\x8e\x08\x23\x23\x23\xdc\xe6\x61\x43\x34\x1a\x65\xe6\xce\x05\xf5\x08\x81\x03\x40\x36\x9b\xe5\xc3\xc3\xc3\x30\x27\x2e\x02\x70\x1d\x7a\xba\x62\x57\x75\xb0\x65\x73\xe6\x24\x74\x6b\xcc\x41\x55\x4f\xe2\x48\x2f\x88\x91\x70\x1d\xcb\x6e\x44\x63\xde\x70\x30\x3c\x94\xe3\x0c\xaa\x24\x44\xa8\xc2\x25\x2b\xe2\x83\xca\xfb\x44\xd8\x15\x44\xd8\x06\xc6\xa8\x8c\xa9\xaa\x5f\x4e\x5e\xf4\x51\x12\x95\x97\x96\x03\xe0\x33\x11\x6d\xcc\x60\x42\x93\x45\xc5\xfc\x09\x2b\x2b\x2b\x4f\x02\x32\x5e\x63\x3e\xe5\xd7\xe7\x89\x88\xdb\xd6\x08\x97\x83\xb9\x2b\x00\x00\x20\x99\x4c\x5a\xf9\xaf\x19\x06\x07\x07\xab\x1c\xfe\xa9\x54\x8a\xd5\x98\xed\x51\x15\xec\xce\x86\xf2\x03\x12\x11\x37\x98\xd0\xab\x2d\x02\xf6\xc7\xaa\x5c\x4b\x82\x14\x26\xaa\x5e\x94\x5a\x06\x0d\x67\xa8\x35\x94\x82\x23\xde\x9e\x9e\x1e\x96\x4a\xb6\x00\x00\x1f\x36\x49\x44\x41\x54\xe9\xba\x0e\x00\xba\xee\xa1\xa4\xe6\x67\x09\x7f\xc6\x08\x55\xb8\xae\xe3\x05\xac\xe2\xdb\x8e\x47\x58\xfd\x28\x00\x00\xc3\x83\x8c\xe6\x67\xb3\x00\xf4\x74\x3a\x0d\x5d\xd7\x11\x8b\xc5\xb4\x8c\xd7\x98\xba\xd6\x9a\x3d\xb5\x63\x36\x74\xbc\x8a\x7a\xab\xe0\x02\x97\x3a\x33\xff\x54\x64\x22\x01\x40\xb7\xb6\x4d\x6a\x6a\x6a\x62\x7b\xf7\xee\x45\x6f\x6f\x2f\x33\xed\xcc\x0c\x00\x8e\x1f\x3f\xce\x55\x55\xd5\xaf\x5d\xbb\x86\xf3\xe7\xcf\x5b\xbb\xc4\x57\xb5\xd1\x81\x03\x07\xd8\xce\x9d\x3b\x4b\xbb\xfc\x94\xc6\xfb\xa5\xaf\xc7\x10\xf4\x03\x07\x0e\xe8\x9f\x7e\xfa\x29\xaf\x85\x85\xe9\xf0\xaf\xb2\x1a\x99\xbb\xdf\x70\x55\xe6\x99\x4a\x0b\xd8\x8f\x16\x97\x2b\x5d\xcb\x9c\x7c\x1e\x83\xf9\x0a\x1e\xc3\xd9\xb1\x6b\xf9\x77\x6b\x85\x7a\x32\x98\x27\x12\x09\xb6\x65\xcb\x16\x1d\x44\xe9\x95\xb8\x74\xd9\x97\x31\x7a\x61\xe3\xba\x95\xa1\x9d\x8d\x6a\x2d\x05\xd0\x7a\x04\xfb\x7b\x6b\x21\x4c\x93\x66\xae\x41\x1a\x35\x3c\x48\x00\xd0\xef\xde\xbd\x8b\xe9\xe9\x69\x3c\xf1\xc4\x13\x2a\x08\xb3\x1f\xf4\x25\xff\xba\x31\xef\xe9\xee\x48\x29\xfd\xe5\x8c\xac\x21\x23\x01\xd7\x5b\x72\x67\x2e\x74\xae\x7c\x1b\x84\x04\xe7\x5c\x3b\x73\xe6\x0c\xef\xee\xee\x66\x4f\x3d\xf5\x14\x93\x98\xe4\x6b\x50\xa5\x96\x2d\x89\xc0\xb1\x68\x5e\xde\xaa\x33\x91\x9f\x69\x28\x9c\xbd\x15\xa3\x8f\xf7\xec\xd9\x93\xe9\xeb\xeb\xd3\x5e\x7b\xed\xb5\xaa\x0d\xdc\x9e\x79\xe6\x19\xd6\xdd\xdd\xad\x78\x74\x8a\xee\x9c\x0a\x9e\xe8\x5f\x08\x7c\x21\x54\x90\x3a\x72\x8a\x31\x3f\x16\xcf\xbf\x36\xdc\x9e\xf9\xde\x9e\x3d\x7b\x96\xba\xba\xba\xb4\x7f\xf8\x87\x7f\x70\x6d\x53\xc9\xde\xa0\xe1\x70\x18\xe6\xf4\x90\x70\xdb\x8a\x72\xa8\x2b\xe5\xdb\x53\x69\x91\xca\x8f\xc8\x76\x2d\x80\x6b\xad\xb9\x37\x72\x5e\x7e\x33\x95\x4a\x15\x6e\xde\xbc\xe9\xa6\xca\x5a\xad\xcd\xe0\x96\x61\x75\x1c\x1c\x47\x0b\x27\x00\xb0\x42\xa1\x80\x1d\x3b\x76\x10\x08\x1e\x5d\x21\x6f\x6c\x4a\x7f\x8a\x01\xcc\xa6\xcc\x56\xe0\x54\x83\xd4\x56\xd5\xb0\xf4\x4c\x82\x08\x33\x03\xde\xbf\x29\x84\xa5\xd3\x00\x16\xaf\x5c\xb9\xc2\x6f\xdd\xba\x85\xee\xee\x6e\x1e\x08\x04\x8a\x86\x84\xfc\x8d\xe6\xdc\x4d\x9d\x41\x09\x15\xa4\x46\x99\x93\x62\x10\xf4\xe5\xa0\xbe\x70\xba\x37\xfd\xea\xe9\xcd\xe9\xaf\x0b\x86\xcb\x00\x16\x26\x27\x27\x8b\xba\xae\x93\xd9\xb9\x91\x7d\x53\xe1\xff\xe9\xb9\x91\xa6\xff\xda\xb7\xe4\xff\x85\xd6\x8c\x72\xb4\x7d\xc5\xfb\xf8\xd6\x05\xff\x2f\xf6\x27\x02\x47\xe7\xc2\x85\xcb\x7a\xc4\xb3\xd8\xdb\xdb\xab\x8f\x8e\x8e\x92\x61\x18\xf4\xe4\x93\x4f\x52\x6f\x6f\xaf\x12\x2a\x48\xbd\x2f\x5e\x69\xfe\xfa\xf6\xb9\xe0\x6f\x46\x0a\xf2\x90\xcf\x60\x9d\x61\x4d\x1e\xe8\x4e\x7a\x4f\x6c\x49\x04\x3e\x3f\x19\x55\xcf\xb2\xa8\x2f\xb9\x69\xd3\x26\x63\x74\x74\x94\x84\x10\x55\xed\x5a\xb5\x21\x78\x26\x93\x11\xfb\xf7\xef\x27\x21\x44\xb0\x29\xef\xd9\xdb\xbb\xe4\x3b\xe4\x36\x8f\xc3\x2e\x76\x40\x60\xb7\x62\xea\x07\xc9\x80\xfe\xa9\xcf\xe7\xcb\x9b\xd3\x3b\x85\xcb\x0f\x35\xe2\xd7\xfa\xc1\x7e\x54\x55\x55\xf4\xf7\xf7\x0b\x9f\xcf\x07\xdd\x4b\xc2\x97\xe5\xdb\xfc\x19\xbe\x69\x55\x47\x92\xad\x9e\xf6\x57\xa7\xdc\xf1\x36\xcd\xcb\xb4\xaf\xe7\x1a\xa4\xb1\x99\x21\xef\x57\x41\x34\xae\xeb\x7a\xee\x9d\x77\xde\x31\x84\x10\x62\x61\x61\x81\xb6\x6c\xd9\x62\x48\x92\x94\xe3\x0c\xcb\x77\xa3\x85\x1b\xc3\xed\x99\x73\xc3\xed\xb9\x1f\x5e\xec\x5a\xf9\xc1\x85\xce\xcc\xf7\xe6\x23\xc5\x77\x51\xda\x4c\x66\x2e\x93\xc9\xe4\x4f\x9d\x3a\x85\xa7\x9e\x7a\x0a\x1e\x8f\x27\xb8\x6b\x26\xf4\xb3\x8f\xdd\x8c\xfe\x99\x2c\x58\xb8\xea\xbd\x02\x21\x50\x94\x36\xf5\x2d\xfa\x9f\x1c\x6f\xca\x9f\x14\x21\xcf\x62\x20\x10\x30\x18\x63\xd8\xbf\x7f\xbf\x4c\x1c\x4d\x27\x46\xe2\x7f\xde\x91\xf6\x3e\xe5\xec\x07\x02\xc1\xaf\x4b\x9d\x9b\x92\xbe\x87\xaf\xb5\x66\xff\xd1\x17\x0e\xae\x68\x9a\xc6\xe7\xe6\xe6\xac\xf6\x27\x98\xee\xc2\x32\x3b\xb5\x4d\x6f\xd1\xd3\x5e\x63\xc6\x9e\xa1\xb0\xb7\xb5\x30\x57\xd0\x98\x8a\x4c\x34\x2f\x6f\x12\x42\xc8\x8e\x0f\x3f\xda\xd9\x34\x73\xf9\xc1\x91\xd6\x79\xac\x85\x87\xa9\x8d\xaa\x02\x98\x9e\x1e\xf4\xfe\x57\xcd\xcb\x92\x96\x8f\xc8\xea\x35\x61\xf3\xb6\x54\xc5\x9b\xc3\x1a\x01\xd8\x5c\x87\x80\x21\x91\x76\x77\xbb\xef\xaf\x05\xa3\x09\x21\x44\xe6\xda\xb5\x6b\x65\x51\x93\x48\x24\xf0\xc6\x1b\x6f\xf0\x62\xb1\x98\x41\x69\x83\xb6\x8f\x75\x12\x3f\xc8\x7a\x8d\xef\xe5\x14\xfe\x2a\x27\x71\x12\xc0\x45\x00\xd3\x99\x4c\x26\xf7\xea\xab\xaf\xa2\xad\xad\x0d\x5e\xaf\x57\xf1\x1a\xac\xe3\xd0\xed\xc8\xef\x90\x80\x5c\x59\x75\x54\x59\x20\x2f\x84\x40\xa0\xc8\x7a\x0f\x4f\x44\x7e\x0b\x02\xd1\x81\x81\x01\xf6\xd8\x63\x8f\x41\x08\xa1\x74\x27\x7d\x47\xbb\x92\xde\xa7\x85\xa8\x20\x9c\xd8\x58\x4e\xde\xb7\x6b\x26\xf4\x73\x42\x88\xd0\x9e\x3d\x7b\x60\xca\xf7\x72\xfb\xda\x3d\x49\x4c\x08\xc1\xb3\xd9\x2c\x27\x22\x6d\xc5\xa7\xcf\x0a\x4b\x06\x9a\x43\x11\x4b\x66\x11\xd9\xdc\x85\x44\x88\x67\x95\x7e\x02\xf9\x3c\x1e\x8f\xbd\xd3\x9c\xae\x3e\x37\xa7\x82\x53\x4e\xd7\x74\x30\xd8\xaf\xaf\x5c\xb9\xc2\x73\xb9\x9c\x06\x20\x51\xf4\xd1\x27\xb7\xf7\xf8\xbe\x6a\xc8\xc8\x55\xe4\x2f\x2a\xdd\xea\xe6\x2e\x14\xe6\x7d\xd3\x75\x28\x18\xf4\xa9\x1d\xbe\xbf\xc9\x35\xb0\xf7\x01\xcc\xea\xba\xae\xd9\xd6\x00\x71\x00\x7c\x6e\x6e\x8e\xbf\xfc\xf2\xcb\xb8\x7a\xf5\xaa\xaa\x69\x5a\x92\x88\xa6\x84\x10\xe3\x00\xc6\x89\x68\x3a\x97\xcb\x25\xcf\x9e\x3d\xab\x7d\xf3\x9b\xdf\xe4\xe9\x74\xba\xec\xf0\x6f\x4f\x2b\x07\x82\x9a\xd4\x4d\xa6\x97\xcb\x14\x72\xe5\xf6\xb4\xdc\xaf\xdd\xcb\xbe\xe3\x8a\x41\x6d\x42\x08\xd9\xe3\xf1\x30\x22\x0a\xf5\x2c\xf9\x9e\x22\x90\xbc\x16\x76\x4b\xc2\xff\x2c\x81\x22\x5e\xaf\x57\x36\x3f\xcc\x59\x6e\x2b\xbb\xa9\x12\x00\x58\x36\x9b\x45\x30\x18\xd4\x57\xbc\xc6\xbc\x26\x8b\x8c\x4f\x87\x69\xb2\xb4\x6d\x1e\x5a\x9e\x36\x52\x12\x91\xcd\x59\x4f\x3f\x01\x01\x01\xc8\x83\x83\x83\xdc\xdc\x4b\xb2\xa6\xbb\x0f\xd5\xa1\x9e\xa6\x5d\x33\x9c\x3a\x75\x0a\x4f\x3e\xf9\x64\x86\x18\x9b\xc8\x36\xca\x6f\xdc\xda\x1f\x90\xbb\x2f\xe7\xbf\xa2\xe4\x11\xb3\x2b\x4f\x15\x93\x8c\xb5\xc4\x86\xaa\x86\xc1\x86\x42\xb9\xa9\x1d\xde\x6f\x26\xdb\xe4\xbf\x13\xc0\x18\x01\x99\x8f\x3f\xfe\x98\x9b\xae\xc2\x2a\xc5\x31\x9f\xcf\xe3\x83\x0f\x3e\xe0\x1f\x7d\xf4\x11\x5a\x5b\x5b\x79\x2c\x16\xc3\xf0\xf0\x30\x6f\x69\x69\x61\xb6\x39\x68\x00\xc0\x4c\x8b\x9b\x12\xd4\xe4\x5e\x54\x94\xd7\xea\xcf\xff\x50\x45\xf6\x78\x0c\x16\xf1\xea\xac\xa5\x20\xf1\x31\xb3\x3c\x9f\xbf\xc8\x5a\xca\x5f\x95\xa9\x83\xf5\x17\x59\x0b\x13\x08\x19\x54\x2a\x77\x76\x76\xb6\xdc\xf6\x4e\xa7\x00\x37\x55\x7b\x5d\x93\x44\x72\xc5\xab\xcf\x5b\x0b\xce\x9c\x1b\x79\x8b\xb2\xa7\x89\x10\xcd\xc9\xbd\xbe\x22\x8b\x09\x21\x64\xdb\x58\x6d\x3d\xd4\x78\xcf\xbf\x89\x89\x09\xfe\xe9\xa7\x9f\x72\x00\x49\x01\x31\x9a\x69\x64\xaf\xdc\x38\x14\xf8\x83\xc5\x4d\x9e\x33\x5c\x86\x66\xef\xdf\xf2\xae\xf2\x36\x59\x2c\x18\x78\xaa\x55\x1e\xbe\x71\x28\xf0\x87\xcb\x6d\xf2\xb7\x04\x30\x02\x60\xe9\xc6\x8d\x1b\xfa\xa7\x9f\x7e\x5a\xaf\xde\x30\x0c\x83\x4f\x4f\x4f\x73\x73\xe5\x06\x33\x17\x84\x95\x39\x21\x00\xee\xf1\x78\x20\x84\x60\x05\x99\x6b\xe5\x8a\x94\xb5\xfa\x8a\xe6\x0e\x51\xe2\x28\xba\x24\xb4\xa2\x24\x74\x4b\x4c\x0a\x21\x90\xf2\xeb\x4b\x15\xab\x59\x6d\xec\x6c\x58\x1b\xe7\x54\x1a\xb7\xdb\xc6\xee\x00\x2a\x13\xdf\xad\x48\x96\x48\x24\xb0\x75\xeb\x56\x1d\x84\xdc\x42\xa8\x38\xd1\x9c\x51\xfa\xad\x02\x2c\x2a\xa8\xda\xba\x41\x00\x1e\x4e\xa1\xd6\x15\x65\xfb\x44\x93\x3a\xd2\xde\xde\x9e\x83\x3b\xf5\xda\x3b\xbe\xde\x50\x69\xd5\xb8\xbc\x56\xfa\xd3\xa7\x4f\x73\x9f\xcf\xa7\xf7\xf7\xf7\x2f\x11\xd1\xb5\xa2\x17\xe9\xa9\x1d\xde\x89\xf9\xcd\xca\x43\xd1\xd9\xe2\xa1\x70\xc2\x18\xf0\x65\x78\x9c\x19\x42\x81\x00\x13\x12\x69\x85\x20\x2d\x65\x62\xf2\xf8\x72\xbb\x7c\x56\x0d\xb3\xf3\x20\x1a\x83\x10\x53\x44\x94\x1c\x1b\x1b\xd3\x4e\x9e\x3c\x69\x79\xd5\x50\xab\x5c\x47\xbc\xab\xb8\xc9\x66\xb3\x08\x87\xc3\x7c\x36\xac\x8d\x69\x92\xc8\x78\x75\x0a\x95\x37\x69\x35\xdb\xcd\xae\x38\x4d\x34\xe6\x2f\xaa\x32\x4f\xc2\x34\xfb\x12\x91\x76\xb3\x29\xff\xc3\x03\x93\x91\x5f\x90\x05\x29\xb5\xb0\x82\x04\xae\xb7\xe4\x3e\xc4\xea\x09\x17\x00\xaa\x9d\x0d\x00\xc0\xd3\xe9\x34\x03\xc0\x85\x10\x99\x99\x48\xe1\xda\xf6\xd9\xc0\x93\xa5\x8c\x2b\x9d\x8c\xb2\x90\xb7\x58\x07\xa1\x67\xd9\xf7\xb9\x5b\xb1\xfc\xab\xd1\x68\x94\x05\x02\x01\x6e\x6e\x6a\x56\xd7\x04\xb7\x81\x7b\x35\xd3\xbf\xfb\xee\xbb\x7c\x69\x69\x49\x7f\xf8\xe1\x87\x93\x44\xa4\x82\x68\xa9\x10\xc0\xc4\xfc\x16\xef\xe9\xf9\x3e\x11\x27\x81\x28\xd3\x4b\x9f\x99\xe5\x12\x72\x82\x21\x29\x4a\xab\xf6\x66\x85\x10\xf3\x54\xda\x35\x3e\x37\x32\x32\xc2\x5d\xf6\x0e\xd9\x48\xfd\xab\xe2\x12\x89\x04\x42\xa1\x90\x9a\x55\x8c\xc9\xcb\x1d\x99\xb7\x0f\xdc\x09\xbf\x00\x41\x55\x46\x33\x61\x1a\x67\x8a\x4c\xa8\xe7\xbb\x57\xbe\x23\x20\x92\x84\x92\xc3\x5f\x08\x91\x5b\x08\x15\x87\x2f\x75\xae\xbc\xbd\x6f\x2a\xfc\x5c\x2d\xec\x8d\xe6\xfc\xd9\xdb\x31\xf5\x23\x21\x44\x46\xd3\x34\xdd\x39\xcf\xdb\x1a\x07\x97\xc7\x9a\xaa\xaa\xd2\xee\xdd\xbb\xc1\x18\xf3\x0a\x42\x6c\xe7\x4c\xe8\x39\x56\x92\xe6\xb0\xf6\xc1\x12\xb6\xad\x1b\x4a\xf2\x01\xf0\x17\x59\xf0\x72\x67\xf6\xbb\x02\x48\xa5\xd3\x69\x23\x91\x48\xd8\xc7\xaf\x70\x96\x53\x23\x8e\xa1\x7a\x7c\xbc\x2e\xec\xdc\xdc\x1c\x9f\x9c\x9c\x44\x43\x43\x43\x31\x1c\x0e\xe7\x01\x24\x89\x68\x5e\x00\xd3\x82\x70\x9b\x4b\x18\xe3\x12\xae\x9b\xdb\x14\x8f\x01\xb8\x45\x44\xb3\x00\x52\xc9\x64\x52\x3d\x79\xf2\xa4\x30\xed\xbc\xf5\xca\x75\x8e\xdd\x9d\xe3\xfb\x2a\xac\xae\xeb\xb4\x75\xeb\x56\x01\x82\x98\x8e\x14\x16\xc3\x05\xb9\x27\x9e\xf5\x74\x10\xa8\x6a\x3b\xcf\x82\x2c\x72\x6f\x0f\x2c\xfd\xf5\x9d\xa8\xfa\x06\x80\xc9\x42\xa1\x90\x1f\x1b\x1b\x43\x73\x73\xb3\x01\x82\x31\x15\x2d\xcc\x31\x50\x43\x4b\xd6\xd3\xcd\x04\x24\xcb\xb0\xce\x99\xe0\xd7\x5a\x73\x3f\x7c\x67\xeb\xf2\x9f\xeb\x4c\x0c\x03\x48\x5c\xbe\x7c\xd9\x30\x3f\xdb\x53\xae\x93\x73\xa7\x3b\x32\x0c\x03\x3d\x3d\x3d\x22\x18\x0c\xb2\x82\xcc\x03\x3b\x66\x83\xcf\x28\x06\x0b\x96\x25\x2e\x99\x42\x8d\x50\x3e\x27\x10\x14\x9d\x45\x6f\xc7\xd4\xf7\xb2\x3e\x3e\xe1\xf1\x78\xb4\xd1\xd1\x51\xa7\xb1\xc2\x79\x74\xb3\x58\x59\x18\xee\x68\x44\x38\x8e\xe4\xc4\xe6\x72\x39\xba\x71\xe3\x06\xa6\xa7\xa7\x39\x11\x15\xfd\x7e\x7f\xde\xe3\xf1\x64\x88\x28\x65\x76\xf8\x32\x80\x65\x22\xca\x68\x9a\x96\x9d\x9c\x9c\x2c\x9e\x3b\x77\x8e\x7f\xf4\xd1\x47\x3c\x9d\x4e\xaf\xa7\x5c\x7b\xb0\x8f\xf5\xed\xac\xb9\x8c\x4d\xa7\xd3\xd8\xb4\x69\x13\x0f\x06\x83\x45\xc1\xa0\x8e\x37\xe5\xc7\xe7\xc2\xda\xb2\x00\x64\x43\x12\x3c\xe9\x37\x16\x47\x5b\x72\x17\xdf\xdd\xba\xfc\x9f\xa7\x1b\xb4\x37\x41\x74\x83\x88\xd2\x1f\x7e\xf8\x21\xbf\x70\xe1\x82\x85\xd5\x04\x21\x77\x27\x5a\xb8\x75\xa3\x39\x3f\x96\x0c\xe8\x2b\xcb\x01\x7d\x71\x3c\x9e\xff\xf4\xa3\xcd\xa9\xef\x5c\xee\xc8\xfe\xad\xc1\xc4\x25\x53\x8b\x57\x4f\x9e\x3c\x69\x99\x2c\xcb\x75\x76\xb2\x68\x00\xc0\xcc\xcc\x0c\x9a\x9b\x9b\x35\x83\x90\x98\x8a\x16\xae\x0d\xcd\x49\x2d\x00\xca\xde\x99\xd2\x39\x2a\x82\xb8\xf4\x52\xb1\xc1\xb9\xc0\x17\x66\xc2\x85\x8f\x3a\x3a\x3a\x72\x91\x48\x84\xa7\xd3\x69\xeb\xc1\xed\xe3\xd9\x7a\x32\xd8\x4d\xeb\x5e\x6f\xe0\x00\xd8\xec\xec\x2c\xb7\x69\x91\xbc\xbb\xbb\xbb\x4a\xa6\x4f\x4e\x4e\xba\xc9\x57\x37\x7d\xa1\x9e\xad\x7c\x4d\xac\x10\x02\x3f\xf8\xc1\x0f\xd8\x89\x13\x27\xd4\x50\x28\x34\x2d\x08\xda\x44\x93\x3a\x3d\x11\x53\xdf\x02\x10\x02\xa0\x83\x90\x44\x69\x6b\x86\x69\x00\xe9\x89\x89\x09\xdd\xda\xcd\xde\x8e\x05\x21\x97\x0c\xe8\x53\xc9\x40\xe6\x14\x4c\x87\x3f\x4a\xa2\x65\x96\x40\xc9\x6c\x36\x9b\x7b\xed\xb5\xd7\x50\x28\x14\x56\xd5\x51\xb2\x45\x94\xad\x47\x92\x24\x51\x7f\x7f\x3f\x40\x50\x24\x41\x1d\x5b\x13\xfe\xd2\xc7\x35\x2c\x77\xa1\xa5\xd9\x55\xb4\x36\x10\x08\x11\x55\x6e\xf9\xb4\x3d\xfb\x7d\x43\xc2\xb2\xa6\x69\xfa\xf4\xf4\x34\x77\xe6\x6d\xbb\x86\xcb\x39\x6a\xa4\xa9\x15\xd6\xc4\xa6\x52\x29\x61\xff\xb9\xa4\xb5\xd8\xb0\xc5\x59\xec\xf5\x5c\xab\x9c\xba\xd8\x42\xa1\x20\xae\x5c\xb9\x22\x7a\x7a\x7a\x74\xbf\xdf\x9f\x25\xa2\x25\x01\x31\x8d\xd2\x37\x28\x6e\x03\xb8\x2d\x84\x98\x15\x42\x64\x2e\x5f\xbe\x5c\xb5\x82\xdf\xc2\x36\x36\x36\x1a\x0d\x0d\x0d\x39\x22\x4a\x0a\x21\xe6\x01\xdc\x25\xa2\xbb\x00\xe6\x85\x10\xe9\xd9\xd9\xd9\xc2\xdf\xff\xfd\xdf\x73\x55\x55\x5d\xeb\x28\xc1\x25\xa4\x52\x29\xb1\x6b\xd7\x2e\x92\x24\x49\xca\x79\x0c\x65\xe7\x6c\xe8\x59\xd9\xfc\xa8\xd5\xea\x50\x11\x59\x1e\x4e\xe1\x94\xcf\x18\x9f\x0f\x17\x2f\xc7\x62\x31\xf5\xd2\xa5\x4b\xeb\xe9\xa4\x1f\x77\xd8\xc8\x0b\x75\x4f\xd8\xab\x57\xaf\x0a\x55\x55\x85\xd7\xeb\xd5\xbc\x5e\xaf\x2a\x49\x52\x06\x40\x26\x9b\xcd\xe6\xc6\xc7\xc7\xf5\xf7\xdf\x7f\x5f\xdc\xb8\x71\xc3\x95\x5b\x8d\x8f\x8f\x8b\x4f\x3e\xf9\x84\xcb\xb2\x6c\x48\x92\x54\xe0\x9c\xab\xaa\xaa\x16\x6e\xdd\xba\x55\x3c\x7f\xfe\x3c\xb7\xa6\xf8\xd4\x0a\x84\x1a\xc3\x92\x13\x27\x4e\xa0\xa3\xa3\x23\x04\x81\x9d\x27\x3e\x6d\xfa\xe3\xfe\xc5\xc0\xa1\xea\xe7\x22\xc7\x59\xe9\x3c\x11\xd4\x2e\xbe\xbc\x6f\xee\xcb\x06\xc3\xc4\xfb\xef\xbf\xaf\x5f\xbb\x76\xad\x56\xd9\xf5\x58\xa0\x3d\xbe\xaa\x5e\x2e\xe9\xee\x05\x5b\x6f\x28\xb6\xd6\xd0\xee\xbe\xb0\x5e\xaf\x17\xd6\xea\x03\xf3\x23\x59\xe5\x7b\xc1\x60\x10\xe1\x70\xb8\xbc\xc2\xdf\x36\x5b\xe3\x9e\xcb\xb5\x9c\x0d\x96\xd2\x52\x56\x60\x88\x88\x7a\x7b\x7b\x39\x08\x8a\x41\x68\x1a\x58\xf0\x7f\xae\xdc\x91\xe6\x58\xb8\x74\x51\x7d\x1e\x28\x4a\x2d\x8b\xc1\xe2\xd5\xc5\x80\x7e\xbd\x31\xd6\x58\x30\x8d\x01\x76\xf6\x65\x95\x65\x0f\xb5\x34\x57\x3b\x16\x70\xa7\x94\x8d\x62\xad\x7b\x76\xc5\xca\x9e\x0f\x39\xb0\xc2\x76\x9f\xee\x17\x6b\x18\x06\x15\x8b\x45\xfb\xf7\x0b\xa9\xa7\xa7\x87\x8e\x1f\x3f\x8e\x83\x07\x0f\xb2\xa1\xa1\x21\x69\xf3\xe6\xcd\x6c\xdb\xb6\x6d\x6c\xcf\x9e\x3d\x14\x89\x44\xc4\xe2\xe2\x22\x99\x1b\xc8\x6d\xb8\xdc\x2a\x77\xa1\xbd\xd1\x72\xb9\x1c\x76\xec\xd8\x01\xc6\x18\x65\xbc\x06\x0d\xcd\x07\x8f\x7b\x0d\x29\x68\xd9\xa2\xcb\x96\x51\xbb\xeb\xb0\x74\x4d\xd1\xbc\xdc\x35\xd2\x96\x7d\x43\xf1\x7b\x33\xba\xae\xf3\xb9\xb9\x39\xbb\xe6\x8c\x2a\xc0\x6a\xed\x18\x8e\x63\xbd\x61\xd4\xbd\x60\xed\x69\x6a\x61\xdd\xca\x82\x23\xcd\x7d\x63\x89\x88\x8e\x1e\x3d\x8a\x43\x87\x0e\xc9\xa1\x40\x30\xd0\x9a\x55\xb6\x0e\x2c\x04\x9e\xd9\xbc\xe8\x7b\x34\x52\xf0\xb4\xa8\x5e\xb1\x12\x69\x69\xd2\x06\x06\x07\x78\x36\x9b\x85\xb9\xe6\x7a\x43\xe5\xd6\xfc\x7e\xb0\xae\xeb\x14\x8d\x46\x45\x53\x53\x13\x0c\x12\xb2\x5f\x67\xbd\x9d\x29\xef\xb6\xca\xfc\xa7\x52\xca\xca\x04\xbc\x0a\x25\x07\x8a\xac\x2d\xab\xf0\xa9\xb9\x88\x76\xa5\xb9\xb9\x59\xbb\x74\xe9\x92\xe1\x56\xc6\x3a\x7f\x40\x8d\x3a\x7e\x86\x58\x27\x07\x70\xa3\x90\xfb\xc6\x1e\x3d\x7a\x94\xb6\x6f\xdf\x2e\xfb\x74\xa9\xed\xa9\xeb\x8d\xbf\xf7\xe8\x78\xe3\x9f\x6c\x5e\xf2\x7f\xa9\x2b\xe5\xfb\x17\x7d\x8b\xbe\x2f\x6f\x9f\x0d\xfe\x74\x51\x12\x4b\x8b\x51\x7e\xb3\xa7\xb7\xa7\xb8\xb4\xb4\x24\xcc\x79\x5c\xeb\x2e\xd7\xa2\x60\xb7\x01\x3b\x54\x55\xc5\xe0\xe0\xa0\x20\x22\x96\xf2\xeb\x62\xd7\x4c\xe8\x69\x49\x40\x2e\xc3\xcb\x0c\x82\x50\x5e\xf4\x85\x92\x46\xdd\xb2\xa2\x6c\xbb\xde\x92\x7d\x93\x7b\xa5\xe5\xc6\xc6\x46\x63\x7c\x7c\xdc\x49\x79\x76\x76\x5b\xcf\xe0\xe1\x76\x8d\xfb\xc0\x3a\x8d\x25\xae\xcf\xee\xa8\x2b\x1e\x34\xb6\xaf\xaf\x8f\x1e\x79\xe4\x11\x99\x71\xc4\xbf\xf8\x69\xfc\xcf\xfa\x96\xfc\xbf\x48\x80\x52\x4a\x51\x82\x79\x04\x45\x7b\x96\x7c\xcf\x66\x15\x63\x72\x21\xa2\xdf\xe8\xe8\xe8\x28\x8c\x8e\x8e\x92\xae\xeb\xeb\x2e\xd7\xa2\x60\xd7\x37\x20\x93\xc9\xf0\x2d\x5b\xb6\x08\x9f\xcf\x07\x4d\x12\x2c\x9a\x97\x87\x9a\xb3\xde\x9e\xb2\xbb\xd0\x64\xd1\x56\xa7\x96\xc6\xc6\xa5\xb2\x3d\x9c\x22\x01\x4d\x0a\xde\x8c\xe7\x4f\x45\x1b\xa3\xea\xe2\xe2\xa2\xb5\x21\x9a\x9d\xba\x98\xe3\xda\x8d\xda\xdc\xae\xef\x07\x2b\x1c\x58\xa7\x1c\xab\x45\x71\x0f\x14\xfb\xec\xb3\xcf\x92\xa2\x28\xa1\x6d\xb3\xc1\x97\xf6\xdd\x0d\xfd\x5b\xfb\x66\xa4\xa5\xf9\x08\x04\x08\x80\x88\xa4\xf6\xb4\xf2\xf0\xb5\xd6\xdc\x6b\xc2\x27\x2d\x1b\x86\x61\x4c\x4f\x4f\x63\xbd\xe5\x56\x39\x87\x6d\xd7\x65\xc3\xc4\x95\x2b\x57\x20\x84\x50\x41\x98\xfe\x78\xd3\xca\xb7\x75\xc6\xb5\xca\x1a\xe1\x4a\xbb\x0a\x73\x8e\x96\xb5\x05\x2e\x00\x0c\x2e\x04\x7e\x76\xeb\x82\xff\x19\x02\x05\x8e\x1d\x3b\x56\xb3\x8c\x7b\xfc\xdd\x0f\x96\x3b\xf2\xb1\xd7\x6d\xad\x7a\xde\x37\x36\x1e\x8f\x33\x6b\x17\xa3\xc1\x85\xc0\x4b\x30\xc5\x1e\x4c\x46\x58\xf2\x26\x59\xd7\x02\x3e\x9d\xb5\xf5\x2d\xfa\x9e\x06\x10\xd8\xba\x75\xab\xa3\xd8\xfa\xe5\x3a\x2d\x32\xab\x7e\x57\xaf\x5e\xe5\x99\x4c\x46\x03\x90\x5c\x0e\xe8\x17\x47\x5b\x72\x67\x80\x6a\x77\xa1\x00\x40\x82\xca\x86\xad\xd2\x6e\xe5\x04\x26\x48\x79\xec\x66\xe3\xbf\x8f\xa8\xd2\x80\xd7\xeb\xf5\xbd\xf0\xc2\x0b\xac\x56\x39\x3f\xe2\x9f\xf3\x79\x9d\xf5\x72\x5e\xe3\x41\x62\xad\xd5\x19\x04\x44\xc2\x05\xa9\x8b\xca\xed\x66\xf7\xb3\x03\x95\x5e\x27\x34\xe4\xe5\x41\x00\xbe\x60\x30\xc8\x6a\x94\xe3\x5a\xae\xdb\x9b\x06\x54\xbf\x09\xec\xd2\xa5\x4b\x10\x42\xe4\x04\xc4\xd4\xd9\xee\x95\xbf\x2b\x78\x78\xf9\xfb\x37\x36\x82\x85\x9d\xfd\x5b\x62\x39\xa8\x49\xdd\x4f\x5f\x6f\xfa\x0f\x92\x81\x96\xe6\xe6\x66\xe5\xd1\x47\x1f\x75\x7b\xfb\xed\xa1\x16\xa5\xae\x27\x6c\x04\x6b\x8f\xb7\x8f\x8f\x99\xe3\xfa\x81\x63\xcd\x35\xd8\x10\x80\x5c\x90\x4a\xfe\x62\x2a\xeb\x32\xa5\x44\x25\xde\x6f\x3a\x05\x49\x20\xa7\xf0\x8c\xb9\x6c\x65\x43\xe5\xda\x7b\xdd\x02\x39\xa9\x1a\x23\x23\x23\x16\x15\x2f\xa5\x7c\xfa\xc5\x4b\x1d\x2b\x6f\xc3\xdc\x9d\xbc\xb2\x67\x47\x89\xed\x97\xac\x99\xc2\xd4\xb9\x4a\xf4\xdd\x99\x52\x8e\x1f\xbb\xd9\xf8\xdb\x0c\x14\x1d\x1c\x1c\xb4\x56\xd0\xd7\x0a\xb5\xa8\x6d\x3d\x61\x23\x58\xb7\x78\xee\x88\xff\x4c\xb0\xe6\x6c\x11\x80\xa0\xdd\x69\x2c\x8c\x08\x6b\x3b\x0c\x5b\xe7\x96\x42\x29\xc2\x20\x68\x13\xb1\xfc\x25\x22\x72\x5b\x03\x56\xb7\xdc\x55\xee\x42\x54\x2b\x0e\x65\x6d\x4c\xd7\x75\xea\xe9\xe9\x31\x00\x18\xf3\xe1\x62\xb6\x3f\x11\x38\x12\x28\x4a\x21\xeb\xc5\xab\x8c\x89\xed\x55\xb4\x94\x30\x42\x4b\xc6\xb3\xcf\x20\x91\x9e\x6e\xd0\xae\x74\x6d\xea\x2a\x68\x9a\x86\xf9\xf9\xf9\xb5\xc6\xb9\x4e\x65\xcc\xa9\xc5\xde\x0b\xd6\x99\xae\x9e\xa6\x5e\x0f\x73\xcf\xd8\x42\xa1\x80\xdd\xbb\x77\x0b\x00\xf2\x52\x40\xe7\x83\xf3\xc1\xc7\x15\x83\xf9\x60\xcb\xa0\x64\x5e\x28\xb5\xe3\x68\x4b\xee\xf4\x70\x7b\xf6\x6f\x41\x98\x9a\x9b\x9b\x2b\x5c\xbf\x7e\x7d\xdd\xe5\xae\x72\x17\x5a\x1d\x6a\x8b\x03\x00\x4a\x24\x12\xbc\xbb\xbb\x5b\x84\x42\x21\x6e\x30\x18\x69\x9f\x4e\x03\x0b\x81\x47\x4a\x4a\x9f\xe9\x27\x36\xcb\x28\xbb\x11\xcd\x85\x5f\x66\x46\xd4\x99\xf2\x1d\x51\x3d\x7c\x6e\x3e\x5c\xbc\xde\xb5\xa9\x4b\xd3\x34\x4d\x98\x9d\x6c\xb7\xcc\x00\x15\xcd\xd0\x39\x04\x80\x2d\xce\xc9\x6d\xd6\x8b\x85\x2d\x9d\x7d\x04\xb1\x16\xd6\x1e\xee\x0b\x5b\x2c\x16\x45\x67\x67\x27\x82\xc1\x20\x8a\xb2\xd0\xe7\xc2\x5a\xbe\x67\xd9\xb7\x5b\x31\xc8\x6b\xeb\x57\x00\xc0\x64\xac\x30\xf2\xd6\xe0\xd2\x9f\x1a\x12\x3e\x05\xb0\x74\xf1\xe2\x45\x6e\xee\x4f\xb9\xae\x72\xed\x86\x0e\x7b\x65\xec\x15\xb7\x32\x61\xc9\x64\x12\x03\x03\x03\x3a\x11\x15\x93\x7e\x3d\x1f\x29\xc8\x9b\x9b\x57\x3c\xdd\x64\x9b\xc3\x53\xce\x84\x2c\x93\x08\xca\x72\x9a\x09\x92\xbb\x93\xbe\xc7\xf2\x8a\x71\x77\x3e\x52\x1c\xeb\xea\x2a\x77\xb2\x7d\x28\xe1\x1c\x7a\x38\x55\x7f\xfb\xd0\xc3\xfe\xe6\x6e\x04\xeb\xe4\x06\x4e\x2c\x1c\x78\x67\x7e\xf7\x8d\xcd\x64\x32\x34\x30\x30\xa0\x03\x28\xae\x78\x8d\xa5\xd1\xe6\xdc\xb8\xc1\x20\xcb\x9c\x79\x8b\x4c\x14\xe6\xc2\xda\xd4\xd9\x9e\xf4\x3f\x7e\xb4\x39\xf5\xf5\xa2\x8c\xf3\x00\x66\x53\xa9\x94\x7a\xf2\xe4\x49\xbe\x91\x72\x5d\xdd\x85\x8e\x6b\x2b\x13\x91\xc9\x64\x84\xd7\xeb\x45\x6b\x6b\xab\x0e\x82\x3e\xdd\x50\x58\xee\x5f\xf4\x1f\xf6\xeb\x52\xb0\xbc\x3a\xc0\x36\x36\xb6\xb4\xed\x8a\x7b\x11\x60\x20\x4f\xef\x92\xef\xe9\xa2\x24\x16\x66\x23\xda\x68\xd7\xa6\xae\x62\x30\x18\x14\x93\x93\x93\xf6\x72\xed\xc7\x7a\xc1\x99\xe6\x5e\xb0\x4e\xd1\x64\x6f\x83\xb5\xca\xb9\x67\xec\xca\xca\x0a\xe9\xba\x2e\x3a\x3b\x3b\x35\x22\x5a\x29\x48\x7c\x7e\x2a\x56\xb8\x32\xdc\x91\xfd\xe8\x62\xe7\xca\x3b\xd7\x5a\x73\xff\x94\x08\xeb\xef\x71\x88\x4f\x01\xcc\x16\x8b\xc5\xdc\x3b\xef\xbc\x23\x32\x99\x8c\x9b\x38\xad\x59\xae\xab\xbb\xd0\x16\xec\x2c\x10\x00\xd8\xd4\xd4\x14\x1f\x1a\x1a\xe2\x8a\xa2\x14\x75\x49\xe8\x89\x60\xb1\x30\xb0\xe0\x3f\x28\x09\x48\x76\x79\x6c\x95\x67\xed\x84\x67\x67\x3b\x04\x48\x9b\x96\x7d\x4f\x2a\x06\xb1\xbb\xd1\xc2\x95\xa6\x96\x66\xad\xa5\xa5\x85\x8f\x8d\x8d\xad\xa7\x63\x1e\x74\xd8\xc8\x4b\x51\x13\x7b\xf4\xe8\x51\x76\xe0\xc0\x01\x0a\x04\x02\x34\x33\x33\xb3\xae\x17\x6c\x6e\x6e\x4e\x18\x86\x21\xda\xda\xda\x0a\x92\x24\xa5\x00\x2c\x00\x98\x22\xa2\x49\x22\xba\x65\x9e\x2f\xaf\xac\xac\xe4\xdf\x79\xe7\x1d\x61\xfb\x5c\xed\xba\xeb\x6c\x37\x55\xba\x29\x0d\x70\xc4\x13\x4a\xf2\x18\x5b\xb7\x6e\xd5\x89\x48\x5b\xf1\x1a\x19\x83\x21\xd2\xbd\xec\xdb\x0e\x54\x28\xb7\x0a\x5e\x9e\x30\x66\x53\xbe\x40\xac\x3d\xad\x1c\x8e\x67\x95\xee\xa9\xa8\xfa\x49\x20\x16\xc9\x0d\x0d\x0d\x19\xa9\x54\x8a\x6c\x8e\x79\xa7\x12\x61\x67\x8d\xb0\xa5\x71\x7b\xd0\x7a\xd8\x5a\xcf\xbc\x96\x12\x56\x75\x9f\x88\xe8\xf0\xe1\xc3\xf4\xf4\xd3\x4f\x4b\xad\x2d\xad\xde\x2e\x44\xa2\x8d\x3d\x6d\xfa\xd0\xd0\x10\x9f\x9c\x9c\xa4\x42\xa1\xb0\xa6\x12\x39\x37\x37\x47\x37\x6f\xde\x14\x92\x24\xe9\xe1\x70\x38\x2f\xcb\x72\x16\x40\x46\x08\x91\x49\x26\x93\xea\xf0\xf0\xb0\xf1\xf6\xdb\x6f\xf3\x4c\x26\xb3\xae\x3a\x39\xef\x5b\x2d\x6e\x1f\x3c\x03\xd5\x0a\x8c\xf3\x08\x00\xec\xe0\xc1\x83\xd8\xb3\x67\x8f\x02\xa0\x85\x04\x0e\x3c\x75\x3d\xf6\xef\xb6\xcd\x05\x0e\x59\xb3\x2e\x2b\x82\xc1\x3e\x51\x1e\xd5\xae\x46\xb3\x16\x49\xbf\x7e\xf9\xed\x81\xe5\xdf\xba\xdb\x50\xf8\x58\x40\x64\x6e\xde\xbc\xc9\x3f\xf8\xe0\x03\xbb\x4b\xad\x5e\x70\x8e\x01\x9d\x75\xad\x95\xde\xfe\xac\xeb\xc1\x56\xb5\x4d\x5b\x5b\x1b\x0e\x1f\x3e\x8c\xe6\xe6\x66\x85\x71\x44\x1e\x9e\x8c\xfc\xc2\xfe\xa9\xf0\x6f\x7c\x7f\x47\xe2\x5f\xdd\x69\x2c\x9c\xcd\x64\x32\xb9\x6f\x7e\xf3\x9b\xce\xb1\xe9\x7d\x97\xbb\x51\x6c\x4d\x77\x61\x9d\x23\x01\xc0\xdd\xbb\x77\xd1\xd5\xd5\x65\x84\x42\x21\x0d\x04\x75\xb2\x51\x9d\xed\x4c\xf9\x76\x85\x0b\x72\xac\x94\xc8\x46\xc5\x54\xde\x27\xaf\xca\xbd\x28\xcc\x74\x7e\x5d\x6a\x1d\x9c\x0f\xbc\x28\x0b\x32\xe6\xc2\xda\xcd\x86\xa6\x46\x6d\xdb\xb6\x6d\x5c\x08\x81\xb9\xb9\xb9\xb5\xde\x54\xb8\x9c\x5b\x47\x37\xac\x3d\x4d\x2d\xac\x5b\x59\x00\x80\x86\x86\x06\x3a\x74\xe8\x10\x0e\x1f\x3e\xcc\x42\xc1\x50\xb0\x31\x2f\x0f\x3e\x77\xb5\xe9\xff\xde\x3e\x17\xfc\x4d\x59\xb0\xc6\x8e\x94\xf7\xe1\xd1\x96\xdc\xdb\xe4\xf7\xa4\x9a\x9a\x9a\xb8\x63\xb5\xe5\x3d\x97\x7b\xaf\xd8\x9a\xee\x42\xac\x43\x13\xbd\x7e\xfd\xba\xd8\xb6\x6d\x9b\x21\xcb\xb2\xc6\x19\xd4\xdb\x8d\xea\x7c\xcf\xb2\xf7\xa1\x40\x51\x76\xac\xa2\xab\x04\xbb\xca\x67\x9f\xf8\xcd\x40\x4a\x47\x4a\x79\x7c\xcb\x62\xe0\x73\x2b\x3e\xe3\x4e\x36\x8c\xf9\xce\xae\x4e\x7d\xcb\x96\x2d\xa2\x58\x2c\x62\x69\x69\xa9\x9e\x46\x5c\x4f\xd3\xae\xf5\x7c\x6b\x69\xd8\xab\x34\xd2\x03\x07\x0e\xd0\xf1\xe3\xc7\x59\x73\x73\xb3\xd7\x6b\xb0\xe6\xfd\x53\x91\x5f\x7d\xfa\x7a\xec\x2f\x1a\xf3\x9e\xbd\x64\xfa\x4d\xbd\x3a\x6b\x8e\xaa\x72\xcb\x8d\xe6\xfc\x07\xd1\xc6\x68\x5e\xd3\x34\xeb\x53\x38\xf7\x5c\xee\xfd\x60\xeb\xba\x0b\x51\xfd\x36\xb8\xfe\xa6\xa7\xa7\x31\x38\x38\xa8\x13\x51\xbe\x28\x8b\xec\x64\x63\x21\xb1\x79\xd1\xbf\xc7\xab\xb3\x40\xa5\xfb\x6c\x0a\x9f\xbd\x87\xe1\x60\xe8\x02\xf0\xeb\xac\x73\x60\x3e\xf0\x33\x6d\x2b\x4a\x5f\xca\x6f\x4c\x19\x0d\x4a\x7a\xf3\xe6\xcd\xc6\xf6\xed\xdb\x85\xd7\xeb\x25\x73\x3f\x64\x7b\xa8\x67\xc8\xa8\x75\xed\x94\xc5\x35\x9f\xbd\xbd\xbd\x9d\x0e\x1c\x38\x80\x27\x9e\x78\x42\xea\xe8\xe8\xf0\xc8\x60\xd1\xa1\xb9\xc0\x73\xcf\x5c\x6b\xfa\xd3\xad\x09\xff\x2f\xcb\x82\x05\x2d\xcf\x80\xb5\x28\x3e\x96\xf3\x0c\x15\x24\x3e\x3f\x13\x29\x0c\x77\x76\x76\x6a\x77\xee\xdc\x81\x6d\x3f\xea\x75\x95\x6b\xbb\xde\x70\x9d\xed\xd8\xba\xee\x42\x54\x06\xd1\xdc\x11\x57\x4e\x93\xcb\xe5\x78\x32\x99\x44\x6f\x6f\x6f\x91\x31\xa6\xe6\x65\x23\x3d\x11\x53\xe7\x7a\x96\x7d\xbb\xfc\x45\x16\x04\x50\xd9\x3f\x92\x6c\x2b\x13\x89\x6c\xb5\x32\x57\xcf\x51\x79\x42\xbd\x14\xcd\xcb\x3b\xb7\xcf\x05\x7f\xbe\x35\xa3\x6c\xc9\x2a\xc6\x82\x1a\xa2\x54\x5b\x7b\x3b\xdf\xbb\x77\x2f\x36\x6d\xda\x04\x49\x92\x68\x61\x61\x61\x2d\x4a\xad\x75\xcd\x50\xfd\x9c\xe5\x67\x23\x22\x8a\xc5\x62\xd8\xb5\x6b\x17\x8e\x1e\x3d\x8a\x5d\xbb\x76\xc9\xf1\xa6\xb8\xa2\x08\xa9\x69\xdb\x7c\xf0\x8b\x4f\x5f\x8f\xfd\xd1\xae\x99\xd0\x6f\xfa\x75\xa9\xa3\x6a\x95\x9f\xa9\x44\x9a\xcf\x46\x9d\x29\xef\x23\x77\xa3\x85\x73\x2b\x3e\x63\xba\xab\xab\x4b\xb3\xd6\x31\xd5\x2a\xd7\xa5\x6d\xd7\x5d\xe7\x7a\x58\x82\xbb\x0c\x76\x0b\x4e\x85\xcb\x1e\x8f\x9d\x3b\x77\xb2\x23\x47\x8e\xc8\x42\x88\x08\x11\xf5\x87\x55\xe9\xd1\x2f\x7e\x1a\xff\x8d\xe6\x8c\xa7\x8b\x00\xdb\x32\x17\x51\xb1\xa9\x5b\x71\x16\x65\xc3\xba\x2e\x49\xe8\xb2\xcb\x0c\xd0\xe6\xc3\xda\xa9\xab\xad\xb9\xff\x76\x33\x9e\xff\x41\x46\x31\x12\x20\x68\x42\x08\x3d\x9d\x4e\xf3\x99\x99\x19\xcc\xcc\xcc\x20\x9d\x4e\x23\x9d\x4e\x5b\x1f\xa8\x58\xf3\x59\x18\x63\xf0\x7a\xbd\x68\x68\x68\x40\x53\x53\x13\x3a\x3a\x3a\xd0\xda\xda\x8a\x40\x20\x20\x0b\x21\x64\x26\xc8\x17\xcf\x79\x7a\x07\xe6\x03\x27\x86\xe6\x02\x3f\x1f\xd2\xa4\x21\x6b\x75\x25\xa8\x22\x62\xec\x2c\xc5\x7a\x56\x40\x20\x19\xd0\x47\xfe\x6e\xcf\xfc\xcf\x67\x3d\xc6\xd8\xc4\xc4\x84\xfa\xd6\x5b\x6f\xb9\xb5\xdd\x7a\xaf\xef\x09\x6b\x17\x8f\xeb\x09\xf5\xb4\x53\x1c\x3c\x78\x90\x3d\xf4\xd0\x43\x32\x11\x45\x84\x10\x7d\xfe\xa2\x74\xe8\xe9\xeb\xb1\x5f\xdf\xbc\xe4\xdb\x6e\xc9\xa8\x8a\xad\xbc\x74\x62\x2d\x85\x01\xcc\xbd\xae\x08\x25\xd7\x63\xf9\x9e\xc9\xfe\x00\x08\x12\x28\x4a\x62\x76\x3a\x52\x78\x7f\xbc\x29\xff\xc6\x54\xb4\xf0\xf1\xb2\x5f\x9f\xe6\x24\x34\x54\xf6\xea\xb2\x36\x24\xc7\xfc\xfc\x3c\xcc\x1d\xdc\xab\x82\xdf\xef\x47\x43\x43\x03\x64\x59\x66\xc1\x60\x10\x42\x08\xcb\x23\xa3\x78\x38\xf3\xc5\xb3\x9e\xde\x9e\x25\xdf\xa3\x7d\x8b\xfe\x67\xe3\x59\xcf\x41\xc6\x11\x2a\x8f\x09\xac\x3d\x39\x40\xb6\xfa\x95\x6a\x28\xcc\xde\xad\x6c\xb5\x24\x30\x16\xcf\xff\xed\x1b\xdb\x16\x7f\xcb\x20\x31\xff\xee\xbb\xef\xea\x63\x63\x63\x55\x76\x05\x47\x7b\xd6\x6d\xdf\x35\xfa\xc2\x15\x6b\x51\x30\x50\x9b\x42\xdd\x42\xad\xe1\x13\xf6\xef\xdf\xcf\xf6\xec\xd9\xc3\x18\x63\x11\x00\xdd\x1e\xce\xf6\x1d\xb9\xd5\xf0\x2b\x7b\xee\x86\x1e\x25\x61\x5b\x9b\x0b\x87\xf2\x45\x28\x2f\xf3\xb4\x0b\x2b\x7b\x45\x61\x8f\x27\x01\x4e\xc8\xac\x78\xf5\x6b\xb3\x11\xed\xe2\x5c\x58\xbb\xb0\x14\xd0\xaf\x25\xfd\xc5\xc9\x8c\xc2\xd3\x3a\xe3\x3a\x4a\x9d\x0e\xa0\x6a\x1f\x2f\x66\x75\xa8\x62\x30\x25\x5c\x90\x62\xd1\xbc\xa7\x37\x9e\xf5\x6c\x6f\x4b\x2b\x7b\x5b\x32\xca\xbe\x80\xc6\x7a\x09\xf0\x41\xb8\x6f\x9b\xe6\xbc\xb6\x87\x55\xcf\x41\x82\x7f\xd0\x97\xfa\xed\x4f\x36\xad\xfc\x7f\x99\x4c\x26\xf3\xf2\xcb\x2f\x5b\x5f\x1e\xb5\x87\x5a\xc3\x1f\x67\x70\x8b\xaf\x8b\x5d\xb5\xba\x10\xab\x3b\xae\x56\x61\xae\x2e\xc6\xf3\xe7\xcf\xf3\xc5\xc5\x45\x3c\xf1\xc4\x13\x69\x49\x92\xc6\x8b\x8c\x6b\xef\x6f\x49\xa6\xe7\xc2\xda\xe4\xe3\x63\x8d\x2f\x7a\x75\x0a\x00\x40\x65\x60\x8c\x0a\x5f\xb3\x76\xa5\xb3\xbe\x45\x6c\xbe\x0c\x36\x9d\xac\x9c\x8e\x40\x90\x38\x42\x51\xd5\x73\xa0\x21\x2f\x1f\x18\x9c\x0f\x00\x00\x17\x80\xa6\x4b\x62\x49\x93\x78\x22\xef\xe1\x49\xd5\xc3\xd3\x06\x09\x4d\x10\x38\x09\x30\x99\x93\xcf\x57\x64\x11\x7f\x51\x8a\x29\x06\xc5\x25\x4e\x51\x02\x14\xc0\xe2\x1c\x15\x8e\x51\x09\x66\x25\x09\xab\xc7\xf1\x26\xa5\x96\xb1\xf6\x65\x9e\x28\x5d\x36\xa8\xd2\x36\x21\x44\x20\x18\x0c\xe6\x38\xe7\x3a\x56\x07\x67\xfb\x6e\xd4\x4d\x59\xf3\xda\x29\x83\xeb\xca\x59\x97\x34\x35\xe3\x3a\x3a\x3a\x70\xfc\xf8\x71\x04\x02\x81\x00\x80\x38\x84\x18\x88\xe5\x3c\x9f\x7f\xe2\x46\xec\x17\x3b\x52\x4a\x6f\x79\xad\x31\x2a\xda\x00\x09\x1b\x05\x90\xed\x9e\x40\x99\xf2\xab\x0c\x26\xf7\x80\xad\xda\xe0\xce\xf6\xf2\x38\x39\x47\x99\x72\x6d\xfa\x82\x75\x63\x5d\x58\x12\xc8\x78\x8d\xe4\x7b\x5b\x92\x2f\x8f\xc5\xf3\xdf\x12\x10\xc3\x42\x88\xe4\x37\xbe\xf1\x0d\x6e\xd3\x11\xd6\xd3\xce\xb5\xc2\xba\xb0\xeb\x76\x17\x3a\x9e\xc3\xae\xa6\xdb\xd3\x97\x0b\x58\x59\x59\xa1\x3b\x77\xee\xa0\xb5\xb5\xb5\x18\x08\x04\xf2\x20\x4a\xe5\x15\xbe\x30\xda\x9c\xbb\x61\x30\x78\x5a\x57\x94\x6e\x89\x97\x6c\xe1\xe5\xdd\x8e\xc8\x92\xc5\xa5\x9e\x22\xc0\xd4\xae\xed\x0d\x57\xcd\x1e\x37\x8c\x2d\x2b\x47\xd5\x5f\x2f\x29\x7f\x1b\x8a\x2a\xdf\x74\x2b\x63\xcd\x7c\xd6\x8b\xe5\x04\xdc\x68\xce\x5f\x7e\x7d\xfb\xe2\x57\x67\x23\xda\x5b\x20\xdc\x20\xa2\xa4\x6d\x71\x99\x7d\xe4\x62\x75\x8e\x73\x88\xe3\x26\x05\x36\x8c\xdd\x90\xbb\xd0\xe5\x58\x6e\x67\xdb\xaf\x7c\x4f\x55\x55\x5c\xbd\x7a\x95\x07\x83\x41\x1e\x8f\xc7\x0b\x42\x88\x94\x60\x58\xbe\xdb\x50\x18\x1f\x8f\xab\x53\xd1\xbc\xa7\xad\xa1\x20\xc7\x4a\x8e\x45\xdb\xb0\xc9\xb4\x76\x95\x14\x17\x6b\xd3\x11\xb3\x85\xcd\x62\x2a\xdb\x15\x6c\x0c\x4b\x55\x6d\x40\xe5\x5e\x2c\xaf\x7d\xb6\xd2\x90\xa3\xcd\xc8\xd9\x7e\x6e\x58\x20\xe5\xd7\x97\xde\x1e\x5c\xfe\xd6\xb9\xee\xf4\x7f\xd1\x64\xf1\x43\x94\xd6\x23\x2f\xcf\xcf\xcf\x6b\xaf\xbf\xfe\xba\x7d\xa8\x64\xb5\xb3\x53\xcc\x3f\x50\x37\x65\x2d\x5d\xc1\x1e\xd6\x63\xd7\x5d\x33\x6d\x7f\x7f\x3f\x3b\x72\xe4\x08\x7c\xa5\xed\x62\xa3\x00\xba\x49\x60\xa0\x2f\xe1\x7f\xe2\xc8\x44\xc3\x33\xb1\x9c\xdc\xe2\xb6\x8a\xdd\x6a\x38\xaa\xa1\xd9\xac\x12\xe1\x6b\x60\xdd\x58\x75\x29\xde\xbe\x49\x8a\x6d\x1f\x03\x7b\x7a\xd4\xc0\x42\x40\x95\x79\xee\x93\xae\x95\x53\x17\x3b\x33\xdf\x2f\xca\x62\x44\x08\x31\x01\x20\x61\x7d\x85\xf5\xcc\x99\x33\x6e\xca\xd1\x5a\x76\xf3\x5a\x61\xdd\xd8\xb5\x3a\xf8\x41\xaa\xf1\x00\x4a\xdb\xf3\x6d\xda\xb4\x49\x26\xa2\x92\x6c\x06\xba\x65\x83\x86\xb6\xcd\x05\x9e\xda\x37\x15\x3e\x1a\xcd\xcb\xf1\x9a\x95\xaa\xa7\xbe\x02\xa8\x96\x84\x6b\x60\xed\xd7\x0e\xb9\x4d\x6b\x95\x55\x19\x9f\xa3\x20\x73\xf5\xd3\xb6\xec\xc7\x9f\x74\x65\xde\xc8\x7a\x8d\xcb\x00\x26\x00\xcc\x02\xc8\x24\x93\x49\xed\xd4\xa9\x53\xb0\x2d\xa3\xfd\x91\x07\xc2\x6a\x41\x5e\x4b\xb8\xbb\xc5\x6f\x64\x20\x5e\x0e\xbd\xbd\xbd\xf8\xfc\xe7\x3f\x0f\xbf\xdf\xaf\x08\x21\x42\x44\xd4\x02\xa0\xdb\xa3\xd3\xc0\xd6\x84\xff\xf3\x0f\xdd\x0d\x1f\x69\xc9\x78\x3a\x2c\x89\xb7\x9e\x50\xd9\x0b\xda\xba\xae\xff\x2e\x54\xdd\xaf\x93\xd8\xed\x96\x80\x40\x56\x31\xd2\xc3\xed\xd9\x8f\x87\xdb\xb2\xef\x66\xbc\xc6\x08\x08\x13\x30\x17\x72\x17\x8b\x45\xed\xf2\xe5\xcb\xfc\xd2\xa5\x4b\x70\x7c\xc7\xa2\x56\xfb\xad\xd5\xe6\xf7\x8c\xb5\xea\xee\xe6\x42\xab\x37\x5c\x5a\x53\x8b\x76\x14\x64\x0f\xe5\x74\xfb\xf7\xef\x67\x0f\x3d\xf4\x10\x93\x65\x59\x41\x69\xd5\x7b\x5c\x08\xd1\x21\x09\xea\xeb\x48\x79\xf7\x6e\x9f\x0b\x1e\xda\x92\xf0\x0f\x29\x06\xf9\xd6\xee\x68\xb7\x0d\xbf\x6b\x50\xb3\x8b\xbe\x5c\xb6\xb4\xc1\x52\xb2\xaa\xd3\x08\x08\x70\x02\x9f\x89\x14\x26\x87\xdb\xb3\x67\xc7\x9b\xf2\xa7\x35\x49\x8c\x83\x30\x85\x12\xc5\xa6\x85\x10\xea\xed\xdb\xb7\xf9\xe9\xd3\xa7\xab\x36\x15\x85\x3b\x11\xd4\x6b\x3f\x67\x7b\xdd\x33\x96\x50\xff\x2d\x78\x90\xc1\xb5\x0c\xbf\xdf\x8f\x3d\x7b\xf6\x60\xdb\xb6\x6d\x56\x47\x07\x84\x10\x51\x22\x6a\x03\xd0\xe1\x2b\xb2\xbe\xde\x25\xdf\xde\xad\x0b\xfe\xdd\x1d\x29\x6f\xb7\x4f\x67\x01\xaa\xea\xcc\x52\xb0\xcc\x9b\x16\xaf\xad\x50\x5e\xf9\xce\xda\xdc\xc0\x2e\xab\xcd\xce\xd5\x99\xd0\x13\xc1\xe2\xec\xcd\x78\x7e\x64\x2c\x9e\xff\x38\xe9\xd7\xaf\x83\xca\xdb\x2e\x2c\x01\xc8\x70\xce\xd5\xc9\xc9\x49\x7e\xfe\xfc\x79\xfb\x9a\xde\x07\xd6\x46\xf7\x83\xad\xf7\xcc\xf7\x22\xfc\xef\x2b\x1c\x3e\x7c\x98\xf5\xf7\xf7\xc3\xef\xf7\x2b\x28\x7d\x9f\x20\x02\x20\x46\x44\x2d\x10\x68\xf1\xe9\xac\xab\x65\xc5\x33\xd8\xbd\xec\x1b\x68\x4f\x7b\xbb\x63\x39\xb9\xc5\xa7\x33\x5f\x15\x2b\x5f\x57\x4f\xba\x07\x01\x01\x9d\x09\x3d\xed\x33\x92\xb3\xe1\xc2\xd4\x9d\xc6\xc2\xd8\x74\x43\xe1\xda\x8a\xd7\xb8\x25\x08\xb3\x00\xe6\x01\x24\x50\xfa\xca\x9b\xca\x39\xd7\x6e\xdf\xbe\xcd\x2f\x5c\xb8\x60\xff\x76\xef\x67\x6e\x7e\xdc\x08\xd6\x2e\x83\x1f\x14\x15\x3b\xd9\x74\x3d\x19\xe1\xac\x1c\x03\xc0\x77\xee\xdc\xc9\x06\x07\x07\x11\x8b\xc5\x18\x00\x85\x88\x7c\x42\x88\x00\x11\x45\x51\xd2\xc0\x63\x10\x88\x7b\x75\x8a\x37\xa8\x72\x67\x2c\xe7\xe9\x68\xca\x7a\xda\x22\xaa\x1c\x0b\x17\xa4\x48\x50\x93\x42\x8a\x4e\x8a\xcc\x49\x21\x41\x55\x06\x77\x01\x70\x83\x09\x5e\x94\x84\x96\xf7\x18\xb9\x8c\xd7\x48\xa7\x7d\x7a\x72\xd9\xaf\xcf\x2f\x06\x8b\xd3\x4b\x01\xfd\x4e\xde\x63\xcc\x73\x42\x02\x84\x25\x21\x44\x92\x4a\x1f\xd3\xc8\x08\x21\x72\x44\xa4\xe5\xf3\x79\xfd\xea\xd5\xab\x18\x1d\x1d\x85\x69\xf7\xde\x88\x69\x77\x3d\x6d\xf3\xc0\xb0\xf6\x67\xaf\xf5\xf6\xd4\x92\xbd\xeb\xb9\x5e\x2b\xd4\x4d\x1f\x8b\xc5\x58\x7f\x7f\x3f\x36\x6f\xde\x8c\x48\x24\xc2\x88\x48\x46\xc9\xac\xe8\x43\x89\x95\x07\x88\x28\x64\x2a\x6a\x21\x08\x04\x00\x04\x08\xf0\x31\x01\x45\x36\xc8\x27\x09\x52\x18\x27\x8f\x69\xe8\xe0\x06\x89\x62\x51\x12\x2a\x27\xa1\x72\x82\x06\x20\x87\xd2\x2e\x71\x56\x07\xa6\x01\xe4\x84\x10\x19\x22\x52\x51\xfa\x84\x8d\xae\xaa\x2a\xbf\x7d\xfb\x36\x1f\x1f\x1f\xc7\xd4\xd4\x54\x2d\x19\xb8\xd6\xf3\xd7\xd3\x5d\x3e\x13\xec\x46\x64\xf0\x7a\xcc\x98\xeb\x49\x7b\x4f\x5c\xa2\xa9\xa9\x09\x9b\x36\x6d\x42\x47\x47\x07\x9a\x9b\x9b\x99\xd7\xeb\x65\xe6\x5a\x1d\x19\x80\x2c\x84\x90\x89\x48\x71\x1c\xad\x2f\x79\x32\x00\x30\x77\x90\xe3\x64\x7e\x96\xc6\xfc\x69\xe6\x4f\x17\x42\xe8\x44\xa4\x03\xd0\x8b\xc5\x22\xcf\x64\x32\xfc\xf6\xed\xdb\x38\x7b\xf6\x2c\xb7\x6d\xb5\xbc\xd6\x33\xd5\xbb\xfe\x91\x63\x37\x2a\xad\x7e\xe4\x72\xb9\x5e\xd8\xbe\x7d\x3b\x8b\xc7\xe3\xd6\x47\xad\x11\x0e\x87\x19\xcc\x87\x34\x8d\x16\xd6\x03\xb3\xb2\x11\xc3\xac\xbf\xd9\xc9\x00\xc0\x35\x4d\x43\x2e\x97\xe3\xb3\xb3\xb3\x48\xa7\xd3\x48\x24\x12\x76\x2a\x5d\x2b\xfc\xb3\x92\xb9\xce\x44\x6e\x32\xf8\x5e\xa8\x79\xad\x21\x41\x2d\x6c\xad\x8a\x6f\x24\x7d\x39\x78\xbd\x5e\xe6\xf5\x7a\xd1\xd8\xd8\x58\x8e\x8b\xc5\x62\x50\x94\xca\x0e\x50\x4b\x4b\x4b\xd0\xb4\xd2\x06\xb0\xb7\x6f\xdf\x76\x1b\xc2\x59\x65\x5a\xd7\xb5\x86\x2e\x3f\x69\xd8\x55\x00\xe7\x71\x3d\x98\x5a\xd7\xff\x23\xfc\x98\x42\xd5\xb7\x0b\x51\xfb\xed\xb0\x5f\xd7\x52\xbc\x6a\xe1\xd7\x32\x88\xac\x65\xad\x79\xd0\xd8\x7a\x5c\xa5\x1e\xb6\x56\xf8\x67\x8d\xad\xa5\x64\xad\x47\x71\x72\x2a\x00\xb0\x61\x6a\x29\x00\xf5\x8e\xf6\xf2\x3e\xeb\xe1\x83\x5b\x9d\xff\x7b\xc7\x82\xd9\x7e\xb5\xae\x9d\x47\xb7\xdf\x46\xf2\x72\x9e\xbb\x95\xb3\x56\x9d\x3f\x0b\xec\x5a\x22\xe7\x27\x06\xfb\xff\x03\x63\xf3\x13\xf9\xa3\x12\xaf\x6e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x7a\x51\x44\xbe\x7b\x3f\x00\x00") -func web_uiStaticAppleTouchIcon120x120PngBytes() ([]byte, error) { +func web_uiV1StaticAppleTouchIcon120x120PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticAppleTouchIcon120x120Png, - "web_ui/static/apple-touch-icon-120x120.png", + _web_uiV1StaticAppleTouchIcon120x120Png, + "web_ui/v1/static/apple-touch-icon-120x120.png", ) } -func web_uiStaticAppleTouchIcon120x120Png() (*asset, error) { - bytes, err := web_uiStaticAppleTouchIcon120x120PngBytes() +func web_uiV1StaticAppleTouchIcon120x120Png() (*asset, error) { + bytes, err := web_uiV1StaticAppleTouchIcon120x120PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/apple-touch-icon-120x120.png", size: 16251, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-120x120.png", size: 16251, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticAppleTouchIcon144x144Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x3c\x40\xc3\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x90\x00\x00\x00\x90\x08\x06\x00\x00\x00\xe7\x46\xe2\xb8\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x69\x90\x1c\x47\x76\x26\xf8\x3d\x8f\xc8\xc8\xb3\xb2\xb2\x32\x13\x75\x5f\x59\x28\x14\x0a\x27\x89\xb3\x41\x80\x40\x93\x68\x76\x83\x0d\x92\xad\x6e\xb5\x34\x23\x69\xa6\xa5\xde\x59\x8d\x64\x63\x2b\x8d\x6c\x4c\xbb\xa3\x95\xc9\xd6\xc6\x34\x63\x6b\xda\x31\x4d\x9b\x56\x1a\x69\x65\x52\x6b\xa5\xd6\x31\xad\xab\x4f\xb5\xd8\x64\xf3\x26\x01\x82\x47\x93\xe0\x01\xa0\x0a\xc4\x51\x55\x40\xdd\x57\x56\x56\xde\x19\x19\xe1\x6f\x7f\x64\x44\x66\x64\x56\x66\xa1\x00\xe2\xd2\xb6\xbc\xac\x2c\x22\x3c\xbe\x74\x7f\xee\xfe\xe2\xf9\xf3\xe7\xcf\xdd\x09\x80\x00\x20\xad\x6b\x6d\x90\xd6\x55\xd4\xc4\xd5\x3e\xd7\x62\x36\x92\xce\xad\x62\xd6\x7b\x7f\xb7\x31\xff\x1c\x1c\xe1\x76\x57\xd6\x46\xd2\xfb\xa7\x82\x11\x8e\x77\xa2\x4e\xdc\x8f\x2c\x86\x6a\xc0\x76\x70\x7e\x7d\xb5\x92\xc1\x7e\xe7\x8c\xbf\x1b\x12\xe6\x7e\x94\x3e\xf7\x1b\x4d\xf7\x1b\xe6\x9e\x86\x5a\xe2\xea\x11\x7b\xb7\x30\xf7\x83\x14\xbc\x2f\x31\xb6\x04\x92\x1b\xb8\xd6\x26\x5a\x4f\x32\xd5\xcb\xb4\x9e\x34\x5b\x0f\xe3\x7c\xae\x27\xed\xee\x05\xa6\x11\xb6\x5e\xf8\x51\xc6\xdc\x17\xe1\xbe\xf9\xba\x1c\x98\x5a\xbd\xa0\xf6\xb7\x3f\xb2\x18\x15\x6b\x25\x4c\xbd\x67\x34\xc0\xd4\x72\xe4\x7a\xa3\xb9\x9b\xc1\xd4\xe6\x71\xaf\x31\xf6\xfd\x7a\xdd\xdf\x8f\x24\x86\xea\x44\xde\xae\x50\xaf\xeb\xbb\x6f\x30\xdb\xb6\x6d\x13\x81\x40\x00\x2d\x2d\x2d\x65\x40\x30\x18\x44\x30\x18\xac\xfa\xd1\xd2\xd2\x12\xf2\xf9\x7c\xf9\x79\x75\x75\x15\xc9\x64\x12\xa3\xa3\xa3\xeb\xe5\x77\x5f\x97\xfd\x76\x62\xa8\x4e\xe4\xcd\x48\xa0\x3b\x89\xa9\x27\xe5\xea\x49\x85\xba\x57\x55\x55\x61\x18\x86\xdc\xbb\x77\xaf\x68\x69\x69\x41\x24\x12\x41\x73\x73\x33\x88\x48\x38\xf2\x72\xde\x83\x99\x05\x51\xdd\x6f\xca\xa6\x51\x32\x33\x88\x48\xda\x71\xc5\x62\x51\x66\x32\x19\xac\xac\xac\x20\x1e\x8f\xe3\xdd\x77\xdf\x5d\x4f\x57\x58\xaf\x3c\xff\x24\x31\xb5\x4a\x74\x6d\xb8\xdf\x86\x85\x0d\x31\x2e\x97\x0b\xe1\x70\x18\xb1\x58\x0c\x1d\x1d\x1d\x88\x46\xa3\x20\x22\x61\x31\x45\xa9\xab\x66\xa8\xaa\x24\xcd\x6d\x90\xcf\x53\x54\x42\xc1\xbc\x12\xf5\x18\x22\xec\x36\x44\xc8\xa7\x2b\x21\xcd\x24\xbf\xc2\xa4\x09\x49\x1a\x00\x48\x62\xc3\x14\xac\xe7\x55\xb9\x9a\x77\xc9\x64\xde\x25\x13\x39\x97\x5c\x4a\x6b\x66\x3c\xa7\x99\x89\x82\x22\xb3\xa6\x80\xce\x60\x03\x80\xe1\x60\x2c\xb9\xbc\xbc\x8c\xf1\xf1\x71\xcc\xcc\xcc\x60\x61\x61\x01\x52\xde\xe8\xe3\xfe\xa7\x19\x6e\xa6\x0b\xdb\xa8\x04\x91\x0d\xde\x6d\x14\xd3\x48\xaa\xac\xa1\x83\x88\x44\x4f\x4f\x0f\x06\x07\x07\xd1\xdd\xdd\x0d\x8f\xc7\x63\x4b\x15\x15\x0c\xcd\x25\xc9\x13\xca\xa9\xd1\xd6\x94\x36\x1c\x4d\xbb\x76\x45\xb2\xae\xe1\xe6\xbc\x3a\xe8\x29\x8a\x76\x55\x52\x50\x30\x3c\x25\x3c\x09\x80\x4b\xa9\x32\x50\x92\x42\x6c\xc7\xa0\x54\x4d\x6c\x97\x5d\x4a\x42\xde\x10\x9c\xc8\xb9\xcc\x99\x94\xc7\x9c\x58\xf4\x17\x2f\x2c\x05\x8a\xe7\x17\x02\xfa\xc5\x84\xd7\x88\x1b\x82\xf3\x20\xe8\x00\x0c\x00\x32\x93\xc9\xc8\xf9\xf9\x79\x8c\x8c\x8c\x60\x76\x76\x16\xcc\x7c\xcb\x92\xf5\x7e\xc3\x50\x0d\xb0\xb6\x11\x9d\x0d\xe6\x0c\xb5\x0c\xb0\x9e\xe4\x58\x2f\x9d\x9b\xc1\x94\x43\x38\x1c\xc6\xd0\xd0\x10\xfa\xfb\xfb\xd1\xd4\xd4\x64\x4b\x18\x55\x91\xf0\x85\xb3\xae\xce\xee\x84\xfb\xc1\xde\x15\xcf\x27\x37\xa5\xb5\xbd\xbe\xa2\x18\x24\x86\x0f\x20\x80\x19\x04\x02\x97\xf9\x81\x01\xa2\x12\x7b\x70\xe9\xbe\x1e\x86\x40\x16\x33\x55\x30\x00\x55\xd8\x0a\x5c\x4a\x9e\x90\xce\xba\xe4\x95\xf9\x26\xfd\xec\x64\x28\x7f\x6a\x3a\x54\x38\xbb\xec\x2b\xce\x98\xc4\x79\x94\x24\x94\x91\x4e\xa7\xe5\xd8\xd8\x18\x46\x46\x46\x90\x4c\x26\x37\x52\xdc\xfb\x3a\xdc\x09\x25\xfa\x46\x12\xe4\x46\x18\x27\x13\x95\xdf\x29\x8a\x22\x3a\x3b\x3b\xb1\x77\xef\x5e\x44\xa3\x51\xa1\x28\x8a\x60\x66\x4d\x61\xf2\x6d\x4a\x6b\xfd\x83\x4b\xde\xe3\x03\xcb\xde\xcf\x36\xe7\xd4\xdd\x0a\x23\x04\x26\x87\xe0\xc0\xc7\xbf\x87\xf5\x4c\x8e\x2b\xd6\xc1\x80\xa5\x49\x48\x26\x7c\xc5\xb3\x13\xe1\xfc\xf3\x97\x36\x65\x5f\x58\xf2\x17\xaf\x9b\xc4\x59\x00\xba\x94\x52\xce\xcc\xcc\xc8\x8b\x17\x2f\x62\x62\x62\xa2\xc4\xc0\xd5\x61\xbd\x7a\xb9\x6f\x30\xf7\xbd\x21\x51\x55\x55\xb1\x75\xeb\x56\x3c\xf8\xe0\x83\xf0\xfb\xfd\x76\xf7\xe4\x69\x2a\x28\xad\x43\x8b\xbe\xc7\x86\xe7\x7d\x5f\x0c\x67\x5d\x07\x05\x53\xa0\xd4\x86\xce\x56\xb6\x8b\x58\xea\x90\xa8\x2e\x27\x6c\x04\x53\xf9\xce\xaa\x31\xa8\xc1\x36\xc6\x98\xc4\xe9\x65\x7f\xf1\xed\x8f\x5a\xb3\xdf\xbc\xb4\x29\xfb\x42\xca\x6d\x2e\x80\x90\x07\x60\x2c\x2f\x2f\xcb\xf7\xde\x7b\x0f\x53\x53\x53\xd0\x75\x7d\x4d\x1d\xa0\xb1\x64\xbe\xe7\x98\xfb\x76\x18\xaf\xaa\xaa\xd8\xb6\x6d\x1b\x76\xed\xda\x85\x40\x20\x60\x4b\x9b\x40\x47\x52\x1b\x7a\x60\xa6\xe9\x5f\xf5\xc5\x3d\x9f\xd3\x4c\xea\x2c\x75\x2f\xf5\x1a\xbe\x3a\xdc\x19\x4c\xfd\xb0\x1e\x86\xc1\xd0\x15\x9e\x1a\x0f\xe7\xfe\xe1\x5c\x67\xe6\xaf\x67\x83\x85\x8b\x26\x71\x96\x88\xf4\x6c\x36\x2b\x4f\x9f\x3e\x8d\x89\x89\x89\x8f\xab\x47\xde\x35\x0c\xd5\x00\xd1\x00\xdc\xa8\xab\xd9\xa8\x42\x7d\x33\x18\xf4\xf5\xf5\x89\x03\x07\x0e\x20\x1c\x0e\x0b\x00\x1a\x49\x04\xfa\x57\x3c\x7b\xf7\x4d\x36\xfd\x62\x47\xd2\xfd\x98\xc2\x14\xa8\x53\xd0\x52\xa8\xdf\xee\x1f\x0f\xc3\x28\xf5\x88\xb5\x42\xe9\x63\x62\x4c\xe2\xf4\x4c\x73\xe1\xd9\xb3\xdd\xa9\xaf\x4e\x84\xf3\xef\x33\x21\xcd\xcc\xfa\xf2\xf2\xb2\xfc\xd6\xb7\xbe\xb5\x5e\x7d\xd7\x53\x70\xef\x09\xe6\x4e\x4a\xa0\x5b\x0a\x27\x4f\x9e\x14\x5d\x5d\x5d\x82\x88\x34\x62\xf8\x7a\x57\x3c\xfb\x0f\x5e\x0b\xfe\xbb\x8e\xa4\xf6\x19\x02\x3c\x8d\xbb\x21\x60\x2d\x57\xdc\x2e\x0c\x4a\x8a\x33\x35\xe2\x8c\x5b\xc7\x70\x69\xb4\x97\x9f\x0d\xea\xcf\xbe\xd5\xbf\xfa\x07\x93\xa1\xc2\xfb\x4c\xc8\x32\xb3\x7e\xed\xda\x35\xf9\xdc\x73\xcf\xdd\xd7\xe3\xff\xfb\xc6\x90\xb8\x6f\xdf\x3e\xb1\x73\xe7\x4e\xb8\xdd\x6e\x0d\x0c\x4f\x24\xe3\x1a\x78\x68\x22\xf8\x2b\xb1\xb8\xf7\x27\x14\x26\x5f\x09\x6e\x57\x7a\x85\xf8\x4a\x2c\x70\xa7\x30\x4e\x16\xa8\x27\xbc\x6e\x17\xc6\x24\x4e\x8f\x45\x72\x7f\xf7\x46\xff\xea\x7f\x8f\xfb\x8c\x09\x06\x67\x8b\xc5\xa2\xf1\xde\x7b\xef\xe1\x83\x0f\x3e\x70\x42\xd7\x1b\x76\xdf\x55\xcc\x3d\x37\x24\x6e\xda\xb4\x09\xc7\x8e\x1d\x43\x24\x12\x51\x99\x59\xf3\x1a\x4a\xeb\xfe\xeb\x4d\x3f\xf3\xc0\x4c\xe0\x3f\xb8\xa4\x08\xdb\xb8\x7a\x8d\xed\x7c\xbe\xdb\x18\x3b\xfe\x4e\x60\x8a\x42\x2e\xbc\xdf\x9d\xfe\x9d\x77\xbb\x53\x7f\x53\x70\xc9\x25\x00\xf9\xb9\xb9\x39\xf9\xea\xab\xaf\x62\x75\x75\x15\xf7\x53\x50\x50\x29\x17\xd7\xf9\x77\xc6\xdb\x65\x94\x35\x71\x5c\xf3\x2c\xeb\xdc\xd7\xa6\x23\x01\xf0\xd6\xad\x5b\xe9\xd1\x47\x1f\x45\x53\x53\x93\x06\x46\x53\x2c\xee\x3d\x74\x72\x24\xf2\x7b\x03\x71\xef\xbf\x56\x58\xf8\xca\xa6\x3c\xcb\xb8\x47\x55\xc6\x3d\xa0\x2a\xe6\x0e\x62\x9c\x16\x9f\x46\xe1\x76\x62\x04\xc3\xdf\xb5\xea\x3e\x3e\xb0\xec\xfd\x44\xc2\x57\x1c\x5b\xf5\x98\xcb\x81\xa6\x80\x1c\x1e\x1e\x36\x93\xc9\x24\x56\x56\x56\x24\x2a\xf5\x58\xef\x8a\x75\xde\xdd\x56\x8c\x82\x92\x64\xb0\x4b\x26\x6a\xae\x70\xbc\xb7\x7f\x58\xcf\x5a\xe2\xc4\xd8\xbf\x41\x0d\xb6\x0a\x73\xe2\xc4\x09\xf1\xc0\x03\x0f\x08\x45\x51\xbc\x1e\x53\xb4\x1f\x1b\x6b\xf9\xf7\x47\xc7\x42\xbf\xed\xd7\xc5\x00\x11\x11\xc0\xa0\x72\x63\xda\xa9\x11\x88\x4b\xcf\xb6\xb5\xf8\x6e\x60\xec\xa6\x27\x50\x09\xc3\x8e\x67\xdc\x31\x0c\xf9\x0c\xa5\x67\xcb\x82\xef\xc7\xbc\x86\x50\x67\x83\x85\x4b\x52\xa1\x42\x2c\x16\x93\xa6\x69\x62\x7e\x7e\xde\xae\xdf\x7a\xd7\xf5\xde\xdd\x56\x8c\x2d\x81\x6c\x26\xb0\x19\xc0\xf9\x99\xd4\x93\x46\xa8\xc1\xd5\x8b\x77\x32\x54\x19\xd3\xdc\xdc\x2c\x7e\xfc\xc7\x7f\x9c\x5a\x5b\x5b\x55\x30\xfc\xed\x29\xf7\xee\x27\x46\xa2\xbf\x37\xb0\xec\xf9\x19\x01\xd2\xaa\x94\x50\xb2\x74\x10\x22\x4b\xf1\xb4\x52\xbd\x4d\x18\x2e\x63\xac\x67\x00\x52\x40\x32\x81\xed\x7f\x54\x5a\xd4\xaa\x32\x2a\x25\x41\x54\x89\xb3\xee\x99\x4a\xef\xd8\xce\xfe\x36\x60\x14\x90\xbb\x3d\xa5\x1d\xe9\x4d\x78\x76\x2c\x34\x15\xcf\x65\xdd\x32\xde\xde\xde\x6e\x8c\x8d\x8d\xa1\x50\x28\x34\x92\x18\xb5\xd2\xfe\x8e\x61\x08\x0d\x0c\x78\xb8\x3d\xba\x4f\x55\x88\xc5\x62\x38\x7e\xfc\x38\x14\x45\xd1\x88\x11\xdc\x3e\xe7\x7f\xfc\xe8\x58\xe8\xb7\x3c\x86\xe8\xb4\x31\xb6\x0d\x85\xeb\x8c\x64\xc8\x7a\x5f\xba\xbf\x15\x0c\x50\x14\xac\x67\xdc\x66\x7a\xc5\x6b\xc4\x93\x1e\x23\x91\xf4\x98\x89\xac\x66\x26\x73\x2e\x99\x2d\xa8\x32\x6b\x12\x1b\x52\xc0\x00\x00\x21\xed\xc9\x57\xe1\xf1\x16\x45\xc0\xaf\x2b\xc1\x60\x5e\x0d\x35\xe7\xd4\x70\x28\xaf\x86\xfc\xba\x08\x28\x92\x54\x38\x72\xae\xba\x32\x57\x7f\xcb\x1f\x13\x33\x15\x2a\xfc\xdd\x37\x76\x2f\xfc\x32\x80\xc4\xdb\x6f\xbf\x6d\xd4\x28\xd6\xf7\x24\xa8\x68\x6c\xec\x5b\x6f\xf8\x58\x6f\x44\x55\x0f\x53\x7e\x1f\x8b\xc5\xc4\xa7\x3e\xf5\x29\x21\x84\xd0\x5c\x26\x45\x8f\x8c\x35\xff\x2f\xbb\x66\x03\xff\x5e\x30\x79\xaa\xb5\x02\xe7\x67\x0f\x7b\xda\xc9\xc1\x18\x56\xfc\x06\x30\x12\x8c\xbc\x4b\x66\x17\xfd\xc5\xb9\xe9\x50\xe1\xfa\x5c\xb0\x30\xb1\xec\x2b\xce\xe4\x5d\x72\xc5\x24\xa4\x41\xc8\x02\xc8\x03\xd0\xad\x7f\xa3\x4e\x99\x54\xc7\xbf\x07\x80\x07\x0c\x9f\x22\x11\xf0\xeb\x4a\x24\x9a\x71\x75\x77\x24\xdd\xfd\x5d\xab\xee\xde\x48\xc6\xd5\xaa\x99\xd0\xca\x24\xd8\xf3\x6c\x35\xe5\x73\x14\x60\xc3\x98\x94\xdb\x58\x78\x71\xcb\xca\xb7\xad\x79\x3f\xb8\xdd\x6e\xbb\xfe\x6f\xd5\xde\x76\x5b\x30\x6a\xcd\x4b\x38\x00\xeb\x19\x12\xeb\x11\xde\xd0\xaa\x7c\xf8\xf0\x61\xb1\x63\xc7\x0e\x41\x44\x1e\x77\x91\xda\x4f\x7c\x14\xf9\xcd\xd8\xb2\xe7\xa7\xc0\x10\x55\xee\x37\xe5\x0f\x8f\x51\x96\xe1\x70\x7c\x8b\xf6\xfc\x16\x1a\x63\x00\x20\xa3\x99\xe9\x89\x70\xee\xca\x58\x24\x37\x32\x17\xd4\xaf\x64\x5d\x72\x9e\xc1\x09\x22\x4a\x30\x73\x16\x40\x9a\x88\xca\x8c\xc3\xcc\x06\x11\x49\x66\x96\xd6\xb5\x94\x66\x89\x38\xc1\xcc\x02\x80\x20\x22\x95\x99\x35\x00\x1e\x53\x21\xcf\xaa\xc7\xf0\x25\xbd\x66\x70\x2c\x9a\x0f\x12\x23\x1c\x28\x28\x1d\xdd\x09\xf7\xd0\xc0\xb2\x77\x7b\x4f\xc2\xd3\xef\x36\x84\x07\x5c\xe9\x35\x9d\x43\x91\xaa\x61\xfc\x0d\x30\x45\x21\xf5\x17\x86\x56\xfe\x22\xe1\x35\xae\x5b\xf4\xca\x44\x22\x51\xaf\xaa\x45\x9d\xfb\x7a\x4c\x71\xdb\x30\x4e\x06\xaa\x05\xc8\x3a\xf7\xf5\xe2\xd6\x7d\x76\x30\x8f\x2f\x98\x53\x06\x4e\x8e\x46\xbe\xd2\x96\xd2\x8e\x13\x08\x20\x47\x07\xc3\x6c\x55\xa2\x83\x49\x88\xcb\xf2\x86\x9c\xf1\x16\xcc\xc6\x00\x80\xae\x48\x7d\xaa\xb9\x30\x31\xd2\x9e\x79\xe7\x7a\x4b\xfe\x82\xae\xf0\x0c\x08\x71\x00\x71\x00\x49\x02\xa5\x01\xe4\x89\x68\x8d\xb4\xb1\xfd\x78\x6c\x67\xb2\x5a\xa7\x32\xa7\x13\x9a\xf5\x4e\x05\xa0\x5a\xd2\x40\x03\xe0\x63\x42\x20\xe5\x31\x43\xa3\xed\xd9\x1f\x8e\xb6\x65\xa3\x3e\x5d\xf4\x0c\xc4\xbd\xbb\xb7\xcf\xf9\xf7\xb6\xa5\xb4\x4e\x85\x49\x38\x3f\x0e\xaa\xcb\x3d\x40\x2d\x46\x82\xf1\x56\x5f\xf2\xfb\xd7\x5b\xf2\xa7\x40\x98\x03\x90\x2d\x16\x8b\xf2\xd2\xa5\x4b\x1b\x69\x93\x7a\xf1\xb7\x15\x63\xeb\x40\x77\xc4\x48\xf8\xd0\x43\x0f\x61\xe7\xce\x9d\x82\x88\x7c\xcd\x39\x75\xf0\x73\xe7\xa3\x7f\x18\xce\xaa\x07\xcb\x5d\x8f\x05\x74\x76\x4a\xb5\xb6\x92\xaa\x2f\xb5\x06\x03\x00\x05\xd5\xcc\x8f\xb6\x65\xdf\x3f\xd7\x91\x3e\xb3\xe2\x33\x2e\x73\xa9\x92\x17\x00\x24\x00\x24\x51\xea\xa2\xf2\xb6\x94\xb1\x68\x94\xb3\xb3\xb3\x30\x0c\x03\xf6\xf5\xfc\xf9\xf3\xb2\xb5\xb5\x55\x2c\x2c\x2c\xc8\xe6\xe6\x66\xb1\xba\xba\x2a\x9b\x9b\x9b\x85\xcb\xe5\xc2\xd2\xd2\x92\xdc\xb9\x73\xa7\xf0\xf9\x7c\x88\x44\x22\xf0\xfb\xfd\x08\x87\xc3\x76\xb9\xed\x7f\x0d\x56\x17\xc7\xcc\x41\x22\x8a\x02\x88\x0a\x89\xce\xb6\x94\xb6\x63\xcf\x74\xd3\xc3\xb1\x65\xcf\x90\x4b\x0a\x75\x6d\xb9\xea\x95\xb5\xf4\x7c\x25\x9a\x3d\xfb\xec\xb6\xe5\xdf\x31\x05\xde\x07\x30\x05\x20\xfd\xf2\xcb\x2f\xcb\xcb\x97\x2f\xdb\xf5\xfd\xff\x4f\x43\xe2\xe1\xc3\x87\xb1\x63\xc7\x0e\x01\xc0\x17\xcd\xba\x76\x3e\x75\x7e\xd3\x1f\x34\xe7\xd5\x07\x6f\x54\x69\x76\x1c\xb0\xb6\x32\xed\x38\x06\x23\xe7\x92\xd9\x0b\xed\x99\x77\xde\xef\x4a\xbd\x92\x71\xcb\xab\xcc\x3c\x83\x0a\xe3\xd8\xd2\xc6\x60\x66\x99\xcb\xe5\xe4\xe4\xe4\x24\x66\x67\x67\xb1\xb2\xb2\x82\xc5\xc5\xc5\xdb\x32\x48\xe8\xea\xea\x42\x4b\x4b\x0b\x3a\x3a\x3a\xd0\xda\xda\x6a\x7b\x0b\x38\x99\x29\xc0\xcc\x61\x00\xad\x04\xea\x0e\x67\xd5\x6d\xfb\x27\x83\xc7\x07\x17\xbd\xdb\x35\x29\xb4\x7a\x75\xe0\xfc\x38\x96\x7d\xc5\x99\x6f\x3e\xb0\xf0\x5b\x39\x4d\xbe\xc9\xcc\x13\x00\x92\xa3\xa3\xa3\xc6\xe9\xd3\xa7\x6f\x40\xfa\xdd\x0b\xb5\x6d\xb7\x5e\xd8\xa8\x24\x92\x7b\xf6\xec\x11\x07\x0e\x1c\x10\x00\x7c\xc1\x9c\x32\xf8\xf9\x73\x9b\xbe\xda\x92\x73\xed\x2d\x41\xaa\x47\x45\x25\x22\xd6\x8e\x96\xea\x19\xf7\x18\x0c\x53\xc0\x18\x6d\xcb\x9c\xfd\x61\x4f\xf2\x85\xa4\xc7\x1c\x05\x61\x0a\x25\xc6\x89\x03\xc8\xc2\xd2\x69\x56\x57\x57\xe5\xf8\xf8\x38\xc6\xc6\xc6\xb0\xbc\xbc\xdc\x48\x67\xb3\xcb\x53\x6f\xb2\xf8\x46\x98\xda\x0f\x4f\x76\x76\x76\x8a\x58\x2c\x86\x58\x2c\x06\xaf\xd7\x6b\x3b\xba\x79\x00\x04\x00\x84\x01\xb4\x83\xd1\xdb\x96\xd2\x1e\x38\x74\x2d\xf8\x99\xbe\xb8\x67\x90\x6a\x98\xd4\x2e\x77\x41\xe1\xec\x77\x76\x2f\xfe\xde\x5c\x50\xff\x01\x80\x4b\x00\xe2\xf1\x78\x5c\xff\xf6\xb7\xbf\x0d\xd3\x34\x37\x44\xcf\xdd\xc0\xd0\x0d\x80\xf5\x2a\x11\x35\xef\xaa\xe2\x63\xb1\x98\x38\x7e\xfc\xb8\x50\x14\xc5\x17\xc8\x2b\x03\x3f\x76\x3e\xfa\x07\xd1\x8c\xeb\xf0\x8d\x5c\x20\xd6\x28\xd0\xe0\x8a\xb1\x84\x19\x4c\xc0\x74\xb3\x3e\x71\x7a\x20\xf1\x8f\x73\x4d\xfa\xbb\x20\x5c\xb7\xa4\x4e\x9c\x88\xb2\xcc\xac\x1b\x86\x61\x8c\x8d\x8d\x61\x74\x74\x14\x0b\x0b\x0b\xeb\xe5\x76\x47\xcc\x14\xce\x30\x30\x30\x80\xcd\x9b\x37\xa3\xbf\xbf\xdf\x96\x4a\x36\x23\x45\x01\x74\x0a\x50\xff\xe6\x25\xef\x91\x23\xe3\xcd\x8f\x87\x72\x6a\x94\xca\x2e\x90\x04\x29\x58\xbe\xb8\x65\xe5\xeb\x17\xda\x33\x7f\xcd\xe0\x11\x22\x5a\x48\xa7\xd3\xf9\xa7\x9f\x7e\xfa\xbe\x9b\xca\x70\xb6\x6a\xc3\x51\xd4\x46\x43\x6b\x6b\xab\x78\xea\xa9\xa7\xa0\x28\x8a\x4f\x33\xa8\xf3\x73\xe7\xa3\xbf\xdb\xb5\xea\x7e\xbc\x6a\xf4\xe4\x08\xb5\x23\x91\x7a\x0f\x0c\xa0\xa0\xca\xfc\xdb\xbd\xc9\x97\x3e\xec\x4c\xff\xc0\x50\xf8\x0a\x80\xeb\x00\x96\x50\xea\xaa\xf4\x74\x3a\x6d\x9c\x3b\x77\x0e\xe7\xce\x9d\xab\x47\x7f\x23\xe9\xf2\x71\x31\xeb\x49\xe4\xf2\x35\x10\x08\x60\xfb\xf6\xed\xd8\xb9\x73\x27\x54\x55\xb5\x25\x52\x10\x40\x2b\x18\xbd\x1e\x43\x0c\x1f\x1e\x6f\xfe\xb1\xed\x73\xfe\xfd\x2a\x93\xca\x60\x9c\xef\xc8\xbc\xf6\xd2\xe0\xca\x1f\x72\x49\xef\x99\x91\x52\x66\x5f\x78\xe1\x05\xe9\xf0\x13\xba\x65\x7a\x6e\x37\xe6\xb6\x19\x12\x83\xc1\x20\x9e\x78\xe2\x09\x34\x35\x35\x79\x84\x44\xf4\xd3\x1f\x85\xff\xd3\xf0\x82\xef\xdf\x50\x8d\x0a\x0c\x54\x04\x0d\x88\xcb\xdd\x53\x05\xc3\x55\xdd\xd7\x7c\x93\x7e\xfd\xa5\x2d\x2b\xdf\x98\x0f\xe8\x3f\x24\xa2\x31\x66\x9e\x03\x90\x20\xa2\x7c\x26\x93\x31\xde\x7f\xff\x7d\x7c\xf4\xd1\x47\x30\x0c\xa3\x1e\x5d\x1b\xd1\xed\x3e\x8e\xfe\xb7\xe1\xe0\xf5\x7a\xf1\xc0\x03\x0f\x60\x78\x78\x18\x2e\x97\x4b\x23\x22\x0f\x33\x87\x89\xa8\x13\x8c\xc1\x58\xdc\x73\xf4\xf8\xe5\x96\xcf\x67\x34\x33\xfe\xad\xdd\x8b\xff\xb5\xa0\xc8\xb3\x44\x34\xc1\xcc\xc9\x0f\x3f\xfc\x50\xbe\xf5\xd6\x5b\xb7\x8b\x94\xdb\x1a\xea\xf5\x2b\x1b\x91\x44\x6b\x30\x27\x4f\x9e\x14\xdd\xdd\xdd\x2a\x18\xe1\x4f\x5c\x0b\xfe\xc2\xa1\x6b\xc1\xff\x04\x50\xc3\x06\xb0\x87\xee\xa0\xfa\x5d\x1b\x13\xcb\xf3\xed\x99\xb7\x4f\x0f\x24\xfe\x5e\x57\x78\x04\x84\x09\x58\x52\x47\x4a\x69\x8c\x8c\x8c\xc8\x33\x67\xce\xd4\xb3\x59\x35\xa2\xf1\xbe\xc1\x9c\x38\x71\x42\xf4\xf5\xf5\xd9\xca\x76\x00\x25\xdd\xa8\x3b\x98\x57\xfa\x09\xd0\x57\xbd\xe6\x87\x00\x26\x00\x24\xae\x5d\xbb\x66\xfc\xe0\x07\x3f\xb8\xa1\xde\x79\xaf\xca\x55\xdb\x85\xc1\x01\xa8\xd5\x83\xea\xe9\x46\x12\x00\x8e\x1c\x39\x22\x76\xec\xd8\xa1\x02\x08\xc4\x96\x3c\x9f\x79\x62\x34\xf2\x55\xc5\xa4\x40\x95\x3d\xa5\x76\xfa\x95\x6c\xdb\x4f\x0d\x86\x4a\x86\xb3\xd7\x36\x27\xfe\xf1\x7c\x47\xe6\x69\x09\xbe\x48\x44\x53\xcc\x9c\x00\x90\x5d\x58\x58\x90\x6f\xbd\xf5\x16\xe6\xe6\xe6\x6a\xca\x7a\xdb\xf4\x9a\xf5\x30\x8d\xf4\xc3\x9b\xc6\xc4\x62\x31\x71\xf8\xf0\x61\xf8\xfd\x7e\x95\x99\x7d\x44\x14\x44\x69\xd4\x66\xa0\x24\x61\x93\xe9\x74\x5a\xff\xfa\xd7\xbf\xfe\xb1\xf3\x8a\x44\x22\xc2\x1a\x48\x7c\xac\x74\xea\x61\x6e\x66\x14\x56\x37\x74\x75\x75\x89\x93\x27\x4f\x0a\x22\xf2\x85\xb2\xea\xce\x9f\xfc\xa0\xf5\x7f\xf8\x74\xa5\xdf\xe9\xa9\x5c\x31\x12\x3a\xa6\x7e\xca\x6b\xaf\xaa\x31\x19\x97\x4c\x3e\xbf\x35\xfe\x77\x13\xe1\xfc\xf3\x20\x5c\x02\x30\x03\x20\x69\x18\x86\xfe\xce\x3b\xef\xe0\xc3\x0f\x3f\xfc\x58\x7a\xda\xfd\x16\x8e\x1d\x3b\x26\xb6\x6e\xdd\x5a\x5e\x9a\x84\x52\x03\x19\x85\x42\xc1\xf8\xf3\x3f\xff\xf3\x5b\x2e\xeb\xe1\xc3\x87\x45\x2c\x16\x83\xdb\xed\x86\xa2\x28\x42\x4a\x89\x7c\x3e\x2f\x67\x67\x67\x31\x3a\x3a\x8a\xd9\xd9\xd9\xdb\x52\x8f\x1f\xdb\x90\xf8\x73\x3f\xf7\x73\xc2\xed\x76\x7b\x54\x93\x3a\x9f\x3a\x1f\xfd\x9d\xbe\x84\xe7\x49\xa0\xb1\x91\xb0\x91\x6d\x07\x60\xa4\x35\x33\xf9\xbd\x1d\x4b\x7f\x32\xdf\x54\x3c\x65\x31\xcf\x1c\x33\xa7\x53\xa9\x94\xf1\xea\xab\xaf\xda\x85\xbe\xab\xc3\xd4\x1b\x60\x9c\xe1\x96\x31\x5d\x5d\x5d\xd8\xb6\x6d\x1b\x06\x06\x06\xc0\xcc\x18\x19\x19\xc1\xeb\xaf\xbf\x7e\xd3\xe9\x28\x8a\x82\x87\x1e\x7a\x08\x5b\xb6\x6c\x81\xcb\xe5\xb2\xad\xe4\xaa\xb5\x3a\x57\xa2\x64\x7d\x37\x00\x18\xe3\xe3\xe3\xf2\xf9\xe7\x9f\xff\xd8\xe5\xaa\x55\xa2\x37\x1c\x88\x08\x8f\x3d\xf6\x18\xfa\xfb\xfb\x55\x02\x85\x0f\x5c\x6f\xfa\xf9\xc3\x13\xcd\xbf\x49\x96\xde\x53\x6b\xf8\x73\x9a\xca\xea\x59\xa2\x13\x9e\xe2\xd2\xf7\x76\x2c\xff\xc9\x92\x5f\x3f\x45\x44\x57\x80\x92\xd9\x7e\x6c\x6c\x4c\xbe\xfe\xfa\xeb\xc8\xe5\x72\xce\xc2\xd4\x2b\x60\xa3\xe7\x3b\x81\xb9\x23\xdd\xc1\xc7\xc5\x3c\xf1\xc4\x13\xa2\xab\xab\x4b\x45\xc9\x25\xb8\x7f\xd7\x9c\xff\x8b\x7d\x71\xcf\x31\x4f\x51\x84\x75\x95\x93\x53\xcd\x85\xb7\xcf\x77\xa4\xff\x7e\x36\xa8\x5f\x64\x70\x36\x97\xcb\x19\xdf\xfb\xde\xf7\xb0\xba\xba\xfa\xb1\xbb\xb0\xba\xba\x4d\x9d\x50\xe6\xc0\xcd\x9b\x37\xe3\x53\x9f\xfa\x94\x00\x10\xd8\x94\x76\xed\xfd\xc9\xf7\x5a\xbf\xe9\x92\x14\xaa\x32\x12\x96\x9d\x5e\xb8\x26\x99\xea\xb8\xb4\xdb\x4c\x7c\x77\xe7\xd2\xff\xb3\x14\x28\x9e\x42\xc9\x68\xb6\xc4\xcc\xd9\x8b\x17\x2f\xca\x53\xa7\x4e\xd5\x53\xec\xec\x02\x35\x0a\x3f\x72\x98\xcf\x7e\xf6\xb3\xa2\xa7\xa7\x47\x05\x23\xb0\x7b\x26\xf0\xb9\xc3\x13\xcd\xff\xc5\x6d\x50\x77\xad\x7b\x88\x21\x38\xfe\x41\x67\xfa\x2b\x67\x62\xab\x7f\x2a\x05\x12\x35\x7a\xd6\x4d\xd3\xa3\x38\x80\x04\xc7\x14\x65\x83\x7f\x00\x20\x55\x55\xf1\x99\xcf\x7c\x06\x6e\xb7\xdb\xad\x98\xe8\x38\x71\x31\xf2\x5b\xe1\xbc\x6b\xbb\xed\x98\x50\xf1\xa9\xab\xf5\xb8\xb3\xfd\xee\x2a\x98\xac\x4b\x26\xbf\xb7\x63\xf9\x8f\x16\x03\xc5\x97\x41\xb8\x0c\x60\x81\x99\x73\x67\xce\x9c\x91\xef\xbc\xf3\x4e\x2d\x2d\xbc\x01\x1a\xef\x26\xa6\x76\x7a\xf7\x9e\x60\x76\xee\xdc\x49\x3b\x77\xee\x14\x00\x9a\x86\x17\x7c\x27\x8f\x5f\x6e\xf9\x43\x4d\x8a\x08\xc1\x5e\x94\x5d\xba\x12\x08\x0a\x93\xb7\x23\xa9\x3d\x4a\x40\x62\x2a\x54\xb8\xa0\xb9\x35\x3d\x18\x0c\xf2\xc4\xc4\xc4\x2d\xd1\x63\x4b\x14\x9b\xcb\xe4\x46\xfe\x0f\x1e\x3c\x88\xa6\xa6\x26\x15\x40\x60\xc7\x5c\xe0\xc9\xae\x55\xf7\x23\xa5\x9f\x3b\x16\xd4\xad\x5d\xaa\x8b\x5a\x4c\x51\x91\xf9\xe7\xb7\xc6\xff\x6a\xbe\x49\x7f\x15\x84\x2b\x28\x31\x4f\xfe\x8d\x37\xde\x90\x17\x2e\x5c\xa8\x47\x57\x23\x1a\x7f\x64\x31\x44\x84\x3d\x7b\xf6\x00\x80\xe6\xd5\x45\xf7\xe1\xf1\xe6\xdf\xb0\x57\xb1\xd8\x93\x42\x65\x87\x29\x2b\x10\x48\xec\x99\x6e\xfa\xd5\x68\xc6\xb5\x1d\x80\x67\x60\x60\x40\x34\x35\x35\xdd\x12\x3d\x02\x25\x26\x72\xf6\x79\xc2\x71\x5d\xf3\x1f\x89\x44\xc4\xd6\xad\x5b\xc1\xcc\x1e\x7f\x41\xe9\xfd\xc4\xf5\xe0\xaf\x08\x90\x5a\xf2\x7d\xb4\x74\x1b\xc7\x30\xdd\x19\x9c\x18\x49\x2c\x4f\x0d\x24\xbe\x63\x8d\xb6\xae\xa0\xd4\x6d\xe5\xcf\x9c\x39\x23\xcf\x9f\x3f\x2f\x51\x4d\xd7\xbd\xbe\xaf\xad\xa7\xfb\x06\xd3\xd5\xd5\x65\xef\x4a\xe2\x8b\xc5\x3d\xc7\x9a\x0a\xca\x10\x97\xcd\xb0\xd6\x95\xac\xba\xe7\xd2\x1b\x06\xc3\x65\x52\x78\x68\xc1\xf7\x14\x33\x07\x84\x10\xa2\xaf\xaf\xef\x96\xe8\x71\x4a\x20\x27\x87\x01\xf5\x39\x50\x1e\x38\x70\xa0\x64\x49\x05\x05\xf7\x4f\x36\xfd\x9c\x4f\x17\xbd\x65\x36\x61\xae\x0c\xd3\xd9\xa1\x28\xb3\x63\x15\x84\x55\x88\x73\xed\x99\xd3\xe7\x3b\x32\xdf\x65\xf0\x25\x00\x0b\x52\xca\xac\x43\xf2\x38\xf3\xbf\x1f\xee\x1b\x7d\x85\x8d\xfe\xef\x1a\xa6\xa3\xa3\xc3\xde\x07\xc9\xd7\x9a\xd2\xf6\x10\x43\xa0\xdc\x06\x95\xb6\xb0\x57\xc3\x12\xac\x7b\x06\xba\x92\xee\xfd\x00\x02\x44\xa4\xc6\x62\xb1\x5b\xa2\xa7\x11\x67\xa1\x4e\xbc\x68\x6d\x6d\x15\xdd\xdd\xdd\x82\x99\x3d\x91\xac\x6b\x78\xfb\x9c\xff\x67\xc8\x22\x8e\x18\x95\xee\xcb\xa2\x9e\xca\x0a\x74\x05\x03\x10\xe6\x9a\xf4\xb1\xd7\x07\x12\xff\x83\x09\x97\x88\x68\x8e\x99\xb3\x63\x63\x63\xf2\xfc\xf9\xf3\xa8\x93\xbf\xf3\xb9\x5e\xdc\xdd\xc0\x34\xfa\xcd\x3d\xc7\x74\x76\x76\x02\x96\xbb\xad\x66\x8a\x90\xad\x7b\x56\x06\x30\x80\xcd\x49\xc4\x56\xbc\x85\xf1\x14\x45\x14\xa5\xb9\x39\x21\x84\xb8\x61\x5e\xf5\xe2\x9c\x3e\xd1\xb2\x06\xb4\x26\xfe\xc1\x07\x1f\x14\x44\xa4\x12\x28\xb8\x6f\xb2\xe9\xe7\x34\x93\xc2\x65\x75\xd3\xf2\xac\x23\xdb\xc5\xd4\xf6\xee\xab\xda\x66\x85\x51\x70\x71\xf6\xc5\xa1\x95\x3f\xd7\x15\x39\x02\xd0\x0c\x33\xa7\x27\x27\x27\x8d\x97\x5e\x7a\xe9\x46\xf9\xd7\xbe\xbf\x9b\x18\xb9\x0e\xf6\x5e\x63\x00\x94\xea\x3b\xe5\x36\x12\x4e\xb5\xbf\xac\x40\x3b\x57\xab\x38\x42\x46\x33\x93\x96\xb7\xa5\x93\x41\x6e\x8a\x9e\x0d\x7f\x8d\x91\x48\x44\xf4\xf7\xf7\x0b\x22\xf2\x44\xb2\xea\xd0\xe0\xa2\xf7\x49\x62\x07\x61\x35\x44\xb2\xa3\xff\xb5\xe3\x99\x80\xb7\x7a\x57\xff\x71\xc9\x5f\x7c\x07\xa5\xe9\x89\x64\x2a\x95\x32\x9e\x7d\xf6\x59\xe9\xcc\xab\x86\x8e\x7a\xd7\xfb\x05\x53\x4f\x3f\xb8\xab\x98\x44\x22\x01\x66\x96\xcc\x6c\x4c\xb6\x14\x2e\x98\xc4\x06\x60\xd5\x7f\x59\x8d\xb0\x35\x22\x94\xaf\x0c\xc6\x58\x24\xf7\x3e\x33\x1b\xd6\x8e\x69\x70\xa4\xbb\x61\x7a\xea\x11\x58\xef\x19\x07\x0f\x1e\x04\x4a\x7b\xf3\x04\xf7\x4c\x35\x7d\xa9\x64\xf3\xa9\x30\x8a\x4d\x54\x25\x54\xd8\xdd\xc6\x4c\x37\x17\x2e\x9d\xeb\xcc\x7c\x0f\x84\x31\x00\x71\xd3\x34\xf5\xd7\x5f\x7f\xdd\x99\x9f\xb3\x10\x58\xe7\xf9\x5e\x63\x80\xb5\x5f\xea\x3d\xc1\xac\xac\xac\x80\x88\x24\x11\x65\x67\x82\x85\x91\x6b\x2d\xf9\xf7\xcb\xed\x40\x76\xcd\x57\x66\x01\xec\x16\x4a\x78\x8d\x99\x8b\x6d\xd9\x53\x44\x94\xb6\x76\x4e\xbb\x25\x7a\x04\xaa\xc5\x52\x43\xc5\xad\xab\xab\x0b\x00\x3c\x4d\x05\xa5\x7f\x70\xd1\x77\x12\x28\xeb\xc9\x40\x99\x85\x9c\x8c\xc4\x55\xca\xb3\x49\x6c\x9c\x1a\x58\xfd\x1b\xcb\x9f\x67\x09\x40\xfe\xdc\xb9\x73\x72\x72\x72\x72\x3d\x45\xad\x96\x96\xda\x42\xdc\x2b\x0c\x1a\xdc\xdf\x75\xcc\x87\x1f\x7e\x28\xa5\x94\x06\x80\xac\x14\x98\x7b\x79\xcb\xca\x5f\xae\x78\x0d\xc7\x4c\x73\x85\x6d\xec\x76\x29\xa8\x32\xfb\xc2\xd0\xca\xd7\xf2\x2e\x39\x06\x20\xcd\xcc\xc6\x8b\x2f\xbe\x78\x4b\xf4\xd4\x93\x3a\xce\x7b\x01\x40\x1c\x3e\x7c\x58\x08\x21\x54\x00\x81\x9d\xb3\xfe\xa7\xdc\xa6\x88\xda\x26\xc1\xf5\x8c\x84\xce\xa5\xc2\xa3\xed\x99\xd3\xf3\x41\xfd\x87\x28\x4d\x8e\xa6\x97\x97\x97\x8d\xf7\xdf\x7f\x1f\xa8\x2f\x79\x6a\xc5\xe8\x7a\x8a\xdc\xbd\xc4\xd4\xd2\x7e\x4f\x30\x13\x13\x13\x40\x69\xf1\xc0\x5c\xca\x63\x9e\xfd\xf6\xee\xc5\xaf\x5c\xda\x94\x3b\x6b\x08\x36\xca\x83\x18\x30\x24\x41\x4e\x35\x17\xae\x7c\x7b\xd7\xc2\xef\x4d\x87\x0a\x2f\xa3\xd2\x16\xf2\x56\xe9\x71\x2a\xd1\x4e\x69\x54\x15\x62\xb1\x98\x00\xa0\x69\x06\x45\x87\x17\xfc\x9f\xa3\x7a\x20\x00\x6b\x0c\x89\x96\x5e\x94\x73\xc9\xe4\x0f\x7b\x92\xdf\x45\xc9\x93\x30\x29\xa5\x34\x4e\x9d\x3a\x85\x62\xb1\x08\x34\xfe\xca\x9c\x05\xb8\x5f\x31\x8d\xea\xec\xae\x62\x5e\x78\xe1\x05\xf9\xa5\x2f\x7d\xc9\xf0\x7a\xbd\x49\x00\x13\x29\x8f\x89\x67\xb7\x2d\x2f\x84\xb3\xae\x1d\x1d\xab\xda\x60\x40\x57\x42\x79\x55\x66\xe7\x9b\xf4\xb1\xf9\x26\xfd\x9c\x14\x18\x43\xc9\xdf\x28\x2e\xa5\x74\x3a\xe9\xdf\x34\x3d\xf6\x51\x07\xf5\x40\x02\x28\xf9\xf6\xfa\x7c\x3e\x01\xc0\xd7\xbb\xe2\x39\xd8\x94\x57\x06\x1a\xaf\x9a\xb0\x5d\x33\x50\x36\x24\x12\x11\x46\xda\x33\xa7\x93\x1e\x73\x84\x99\x97\x88\x28\x7b\xe9\xd2\x25\xe9\xf0\x59\x6e\xd4\xc7\xd6\x93\x4c\xb2\xc1\xfd\x9d\xc6\xd4\x86\xf5\xf4\xb5\x7b\x82\xf9\xfe\xf7\xbf\x8f\x27\x9e\x78\x22\xef\x76\xbb\x97\x00\xe8\x0c\xc4\x97\x7c\xfa\xc4\x92\x4f\x0f\x12\x91\x66\x2d\x6b\x4a\x32\x73\x1c\x8c\x25\x94\x56\xaf\xe8\xa7\x4f\x9f\x6e\xd4\x16\x1b\xa2\xa7\xde\xd2\xe6\xaa\xfe\x6e\xfb\xf6\xed\x02\x25\xe5\x39\xb0\x6d\xde\xff\x94\x00\xa9\x65\xf7\x0c\x2e\xa9\x67\xec\x70\xf6\xa9\xf8\xf7\x94\xba\xb3\xbc\x6a\xa6\xdf\xef\x4c\x3f\xcd\xe0\x19\x00\xc9\x62\xb1\x68\xbc\xf6\xda\x6b\x37\x94\x7a\x68\xfc\x35\xd4\xbb\xbf\x1b\x18\x34\xc0\xd4\x0b\x77\x1d\xb3\xbc\xbc\x8c\xa7\x9f\x7e\x5a\x9c\x38\x71\x42\xf7\xfb\xfd\x09\x6b\xa1\xc1\x02\x11\x69\x28\x2d\x82\x94\xcc\xac\x13\x51\x9e\x99\xf3\xf9\x7c\xde\x78\xf3\xcd\x37\x71\xf9\xf2\xe5\x8d\xb4\x45\x43\x7a\x9c\x87\xad\x38\xbf\xbc\x32\xb8\xad\xad\x0d\x00\x3c\x7e\x5d\x74\x76\x27\xdc\x87\x9d\x63\xf3\x92\x9d\xb0\x62\xfb\xb1\xb5\xfd\xb2\x18\x22\xc2\xa5\x4d\xb9\x37\xd3\x6e\xf3\x12\x4a\x8a\xb3\x7e\xe1\xc2\x85\x5a\x42\x6a\xbf\xf8\x46\x05\xaa\xa5\xef\x6e\x62\x1a\xfd\xe6\xbe\xc2\x2c\x2f\x2f\xe3\xeb\x5f\xff\xba\x7c\xf8\xe1\x87\x8d\xbe\xbe\x3e\xc3\xe7\xf3\xe5\x1d\x58\x00\x90\x86\x61\xc8\x4b\x97\x2e\xe1\xf4\xe9\xd3\x4e\xbd\xe7\x96\xe9\x59\xd7\x90\xb8\x73\xe7\x4e\x5b\x79\xf6\xf4\xae\x78\x0e\x56\x0c\x87\x65\xb7\xc2\x2a\x23\x61\xad\x21\xb1\x28\xa4\x7e\xae\x33\xfd\x3c\x08\x73\x60\x64\x75\x5d\x37\xde\x7e\xfb\xed\x5a\x06\x71\x16\xa0\xde\xd7\xdf\x88\xbe\xbb\x89\x59\x8f\xae\xfb\x0e\x73\xfa\xf4\x69\x69\xe9\x35\x32\x16\x8b\x89\xae\xae\x2e\x4c\x4f\x4f\x43\x4a\x89\x6b\xd7\xae\xdd\x48\x0a\xdf\x54\x5e\xeb\x1e\xf7\xd4\xd9\xd9\x59\x5a\x17\xce\x08\x0c\x2e\xf9\x3e\x55\xb6\x2a\x97\xbb\x2c\x38\x26\xf6\xd7\x1a\x12\xe7\x82\xfa\xa5\x25\x7f\x71\x04\xd6\x2a\x8a\x91\x91\x91\xda\x3c\xd6\xe3\xfe\x5a\x4c\x3d\x49\x79\xaf\x31\xce\x70\x57\x31\x03\x03\x03\xc2\xea\x1d\x00\x00\x85\x42\x01\xe3\xe3\xe3\x58\x59\x59\xa9\x4a\x67\x7c\x7c\x5c\x8e\x8f\x8f\x3b\xd3\x11\x00\x10\x08\x04\xb0\x6d\xdb\x36\x74\x74\x74\xc0\xe3\xf1\x94\xd3\x49\x24\x12\x18\x1f\x1f\xc7\xf8\xf8\xb8\xbd\xd2\x65\x5d\x7a\xec\xcd\x15\xd6\x28\xd2\x8a\xa2\xa0\xa7\xa7\x07\x00\x34\x8f\x21\x5a\xdb\x93\xda\x5e\x7b\x56\x17\xa8\x28\xd0\x8d\xbc\x0d\x01\xe0\x42\x5b\xe6\x35\xa6\x92\x5b\x2a\x11\xd9\xeb\xb9\xeb\x29\xed\xb5\xe1\x7e\xc7\x00\x6b\x1b\xf6\x8e\x63\x3c\x1e\x0f\x8e\x1e\x3d\x0a\x6b\x46\xa0\x76\x00\x24\xf7\xed\xdb\x27\x13\x89\x84\x7c\xf3\xcd\x37\x31\x39\x39\x59\x37\x1d\x9f\xcf\x27\xf6\xee\xdd\x8b\x6d\xdb\xb6\x09\x00\x4e\x5f\x6c\x00\x90\xa1\x50\xc8\xe8\xeb\xeb\x33\x0e\x1d\x3a\x24\x2d\x1d\x69\x5d\x9a\x55\x54\x73\x96\x5d\x00\x69\x9a\x26\x14\x45\x51\x01\x78\x5a\xd3\xae\x61\x6f\x51\x44\x9d\x06\xf1\x92\xae\xe3\x98\xac\xab\xba\x63\xe4\x55\x99\xbc\x16\xce\xbf\x85\xd2\xca\xd1\xfc\xcc\xcc\x8c\x4c\x24\x12\xeb\x89\x47\x3b\x6c\x44\x91\xad\x8d\xbf\x23\x18\x22\xb2\x5d\x52\xd6\x13\xfb\xf5\x74\x84\xdb\x8e\x19\x18\x18\xc0\x43\x0f\x3d\x04\xbf\xdf\xaf\x82\xe1\xf1\xe9\x22\xd4\x9d\x70\xef\x0c\xe6\xd5\xf6\xbc\x2a\xd3\xf3\x4d\xfa\xc8\x52\xa0\x38\xd3\xd2\xd2\x92\x3f\x71\xe2\x84\x7e\xe9\xd2\x25\xe9\x18\xac\x94\xd3\x39\x79\xf2\x24\xc2\xe1\xb0\x0a\x86\xa7\x39\xa7\x76\x6e\x5b\xf0\x3d\xde\x9d\x70\x7f\xc2\x25\x45\x20\xa5\x19\x53\xe3\x91\xfc\xcb\x97\x36\x65\x4f\x93\xc7\x9b\xf8\xe4\x27\x3f\xa9\x77\x74\x74\xd4\x4d\xc7\xa6\xd9\xc9\xc5\x55\x5f\xc1\x91\x23\x47\x00\x6b\x96\xb7\x77\xc5\xf3\x09\x02\xa9\xc4\x28\x6d\xbf\x06\x67\xa8\x7e\xb2\x25\xd2\x54\xa8\x30\x92\x73\xc9\x29\x94\x56\x8f\x1a\xe7\xce\x9d\xab\xcd\xc3\x19\x6a\x15\xb6\x1b\xe1\x6e\x1b\xa6\xa5\xa5\x45\xf4\xf6\xf6\xa2\xb3\xb3\x13\x5e\xaf\x17\xd1\x68\xb4\x0c\x5a\x5d\x5d\x85\x75\x16\x98\x98\x9d\x9d\xc5\xf4\xf4\x34\x0a\x85\x42\x83\x24\x1b\xe6\xf5\xb1\x31\x5b\xb6\x6c\xc1\x23\x8f\x3c\x22\x88\x48\xf3\x14\x45\xeb\x27\xae\x05\x7f\x76\xc7\x9c\xff\xdf\xba\x4c\xea\x84\x75\xd2\x10\x13\xb2\x33\xc1\xc2\xf7\x4f\x0d\xac\x7e\x65\x3e\xa8\x8f\x0c\x0f\x0f\x67\x85\x10\x78\xf5\xd5\x57\xc1\xcc\xf0\x7a\xbd\x78\xe2\x89\x27\x10\x0e\x87\x35\x21\x11\xdc\x3f\x19\xfc\xa9\xfd\x93\x4d\xbf\xe6\x32\x45\xa7\xbd\x82\xa6\x0d\x2e\x6c\x5e\xf6\xfe\xc2\xde\xa9\xa6\xd3\xcf\x6f\x8d\xff\xfa\x5c\x50\x3f\x3f\x3c\x3c\x9c\xcd\x66\xb3\xb0\xbc\x43\xd7\x04\xe7\x1e\x89\x84\x52\xc5\x32\x00\x3e\x70\xe0\x00\xf9\x7c\x3e\x17\x80\xd6\x43\x13\xcd\xbf\x10\x2c\x28\xdd\x6b\x99\xa7\x36\x94\x07\xf1\x78\xa7\x27\xf5\x9d\xa5\xa6\xe2\x19\x00\x8b\xf9\x7c\xbe\x60\x71\x31\xd7\xfc\xdb\x79\x56\x12\x68\x8c\xe1\xdb\x89\x19\x1a\x1a\xa2\x47\x1f\x7d\x14\x7b\xf7\xee\x15\x3d\x3d\x3d\x4a\x73\x73\xb3\xea\xf5\x7a\xdd\x04\xb8\x51\x5a\xcd\xa0\x79\x3c\x1e\xb5\xa9\xa9\x49\x69\x6d\x6d\x15\x03\x03\x03\x3c\x3c\x3c\xcc\x3e\x9f\x0f\x53\x53\x53\xb2\x4e\x9a\x8d\xf2\xfa\x58\x98\xe6\xe6\x66\x3c\xf6\xd8\x63\x70\xb9\x5c\x6e\xaf\x2e\xba\x7f\xec\x7c\xf4\xf7\x07\x97\xbc\xff\x56\x61\x11\x24\x10\xc1\xb2\xb5\x11\xc8\xd5\x54\x50\xb7\x6f\x59\xf2\x3d\xbe\x10\xd0\xcf\xae\x7a\xcc\xc5\x48\x34\x52\x34\x0c\x83\xe7\xe7\xe7\x71\xec\xd8\x31\x58\x0e\xf7\xcd\x87\xae\x35\xff\xfc\x27\xae\x05\x7f\x4b\x65\xd1\x0c\x58\xd6\xbb\x4a\x3a\xe4\x2d\x2a\x7d\x9b\x97\xbd\x8f\x8e\x87\x73\xaf\xe6\x34\xb9\xda\xd6\xd6\x66\x5c\xbf\x7e\x9d\xb3\xd9\x2c\x6a\x69\x6e\x68\x48\x6c\x6e\x6e\x06\x33\x6b\x6e\x53\x84\x22\x19\xd7\x50\x85\x35\x2a\xa1\x91\x21\xd1\x10\x9c\x9f\x6e\x2e\x7c\xc0\xcc\x49\x22\xd2\xa7\xa6\xa6\xec\x74\xeb\x85\x9b\xd1\x0b\xea\x29\xb6\x37\x85\xe9\xe8\xe8\xc0\xb1\x63\xc7\x10\x0c\x06\x05\x00\x8d\x00\x8f\x3b\x65\xb6\x07\x56\xcc\x07\x7d\xab\x72\x87\x5a\x90\xdd\xc2\x84\x8f\x05\x74\x53\xa5\x78\xbe\x49\x7c\x94\x09\x29\xef\x67\x42\xca\x15\xb7\xdb\x9d\xde\xb5\x6b\x97\xbe\x7d\xfb\x76\xe3\xec\xd9\xb3\xb8\x70\xe1\x02\x74\x5d\xdf\x48\xb9\x6e\x19\xb3\x6f\xdf\x3e\x78\x3c\x1e\x8d\x18\xe1\x4f\x5e\x0d\xfd\x5a\x7b\x4a\x7b\xdc\x1e\xfa\xb2\x35\x0a\xb6\x9d\xf6\x40\x80\xdb\xa0\xee\x4f\x5f\x0a\xff\xee\xdf\x3e\xb8\xf0\xd3\x29\xb7\x71\x65\xdf\xbe\x7d\x59\x21\x04\x06\x06\x06\x04\x00\x5f\x67\x52\xdb\xbf\x6f\xaa\xe9\xd7\x08\x50\x2b\x33\x64\x6b\xd3\xf1\x16\xc5\xc0\x23\x57\x5a\xfe\x8f\xef\xec\x5a\xfc\x65\x26\xd2\x8f\x1e\x3d\xaa\x7f\xfb\xdb\xdf\x5e\x43\x73\x43\x43\xa2\xcb\xe5\x12\xcc\xac\x45\x32\xae\x7e\xcd\xa4\x50\xd9\x48\x68\xbb\xba\xad\x63\x48\x8c\xfb\x8c\xa9\x94\xdb\xbc\x8e\xd2\x76\x2b\x72\x7c\x7c\x1c\x75\xf2\xb1\x89\xb9\x91\x6e\xb2\x9e\x4e\xb4\x61\x8c\x10\x42\x7c\xe2\x13\x9f\x80\xb5\x5b\x9a\x46\x8c\x40\xf3\x82\x71\x70\xd3\x44\xf1\x7f\xf2\xad\x9a\x8f\x90\x44\x08\x80\x70\xce\x5b\x33\x00\xcc\x11\x00\xe4\x75\x2f\x9d\x8f\x77\xb9\xfe\x7a\xb9\xd7\xf5\x1d\x68\x62\x61\xff\xfe\xfd\x7a\x2c\x16\x33\xac\x33\x2d\x6e\xa6\x5c\x1b\xc6\x04\x83\x41\x11\x8b\xc5\x04\x33\x7b\xda\x53\xee\xdd\x83\x8b\xbe\x7f\x61\x59\x4b\x2a\x3b\xfc\x59\x5b\x05\x33\x55\x24\x49\xa0\xa0\x0c\xef\x9a\x0d\xfc\xf4\x99\xfe\xc4\xef\xa8\xaa\xaa\x1f\x38\x70\xc0\x40\x69\x7d\x58\x70\xf7\x4c\xe0\x5f\x29\x12\xc1\x8d\xa4\xd3\xb5\xea\x3e\xde\x9a\xd6\x76\xce\x36\x15\x12\xe1\x70\xd8\x08\x06\x83\x32\x99\x4c\x56\xd1\x5c\x1e\xd6\x39\xef\x77\xed\xda\x65\x1f\x15\xa9\x45\x33\xae\x41\x62\x12\x64\x33\x0f\x5b\xb9\x94\xa7\xba\xd6\x7a\x24\xce\x35\x15\x2e\xb1\x40\xd2\xb2\x7a\xca\xf1\xf1\x71\xe7\x10\xd2\x99\x67\x3d\x1a\x50\xe7\xbe\x16\x77\xd3\x98\x47\x1e\x79\x04\xbb\x76\xed\x12\x44\xe4\xf3\x64\xe4\xd0\xc0\xbb\xb9\xdf\xed\x7f\x2f\xff\xcd\xc0\x8a\xf1\xe3\x42\x72\x98\x00\x61\x7b\x4c\xda\xa1\xb2\x77\x33\x3c\xee\x1c\xef\x6f\xbf\xa2\x7f\x65\xe8\x4c\xf6\xbb\x2d\x33\xc6\x49\x02\x82\x91\x48\x44\xfb\xf2\x97\xbf\xbc\xa6\xfe\xd6\xa1\xe7\xa6\x30\x7d\x7d\x7d\x50\x14\x45\x00\xf0\xf5\xc7\x3d\x8f\x2a\xd2\x5a\x2e\x7e\x23\x6f\x43\x10\x06\x97\xbc\x9f\x21\x50\x10\x15\x53\x8d\x2a\x40\xc1\xce\x55\xf7\x7e\xe2\x8d\x79\x2d\x0a\x26\x5f\xe7\xaa\xfb\x00\x00\x8f\xa2\x28\xb6\xdf\x74\x15\x8d\xce\xaf\x40\xda\xf7\x9b\x36\x6d\xb2\xf7\x05\xf4\x44\x33\xae\x2d\x76\xe2\x95\xfa\x65\x54\x2c\x86\x76\x9a\x96\x71\x91\x18\x73\x41\xfd\x22\x80\x24\x33\x1b\xd6\xae\xea\xce\xf4\xed\xff\xda\xbc\x9d\xd7\x7a\x71\x12\x0d\xa4\xe5\x8d\x30\xc7\x8f\x1f\x17\x83\x83\x83\x2a\x98\x83\xcd\x8b\xe6\xb1\xc1\xb7\x72\xdf\x6c\x5a\x32\x7f\x8a\x18\x9a\xd3\x04\x51\x2e\x9b\xa3\x48\x76\xb4\x2d\x6d\xb5\x3c\xef\xec\x3d\x97\xff\xf3\xae\x91\xc2\xaf\x0a\x89\xa8\xa6\x69\x9e\x2f\x7f\xf9\xcb\xa2\xbd\xbd\x7d\x23\xf4\xc8\x9b\xc1\x74\x74\x74\x00\xa5\xa1\xb6\xaf\x39\xaf\x0e\x96\xdb\xba\xec\x6d\x88\x6a\x6f\xc3\xb2\x4d\x0e\xf0\xeb\x4a\xb7\x5a\xf2\xd9\xb2\x87\xe8\xaa\xcb\xa4\xa0\xcb\xa4\x10\x36\x98\x0e\x01\xf0\x14\x45\x3b\x11\x79\x00\x08\x4d\x2b\x6f\xaa\x56\xa6\xb1\xee\x17\x61\x1d\x85\xad\x82\xe1\x69\xc9\xba\xfa\x6d\x2e\x2d\x4f\x59\x90\x95\x83\xd3\x28\x64\x61\x24\xc1\x58\xf2\x17\xaf\x32\x73\x9e\x88\x0c\xc7\x26\x08\xb5\x92\xa6\x96\x89\xea\x61\x1a\x5d\x37\x8c\x39\x72\xe4\x88\x18\x1c\x1c\x14\xcc\x1c\x68\x5a\x32\x1f\xee\xfb\x20\xf7\xff\xba\x0a\x3c\x50\xb6\x7d\x3a\x96\xbc\x94\x74\x00\xbb\x3b\xa6\xaa\x06\xb1\x15\x40\x06\x40\xcc\x9e\xe8\xf5\xe2\x7f\xec\x1a\x2d\xfc\x2a\x49\x0e\x6b\x9a\xa6\x7d\xf2\x93\x9f\x84\xdb\xed\x6e\x44\xc7\x8d\x68\xae\x8b\xf1\x7a\xbd\x60\x66\xc1\xcc\x2a\x97\x75\x96\x52\xe7\xba\x9e\xb7\x21\x00\x18\x42\xea\x92\x58\xb5\x7e\x2f\x98\x19\x45\xa5\xe4\x0b\xb4\xd1\x74\x18\x40\xd2\x63\xc4\xed\xdf\x3b\x56\xd9\x94\xe9\xad\x6b\x48\x0c\x04\x02\x60\x66\xe1\x92\xc2\xd7\x54\x50\x5a\xed\xa4\x89\xea\x6d\x82\x59\x6d\x48\x2c\xa8\x32\x99\x76\x9b\x73\xd6\x36\xba\xd2\xb2\x8c\xde\xa8\x6b\xaa\x0d\xb7\x05\xd3\xdd\xdd\x2d\xec\x7d\x1a\xbd\x69\xb9\xbd\xef\xc3\xfc\x7f\x57\x0c\xb4\x56\x0e\xf5\x72\x92\x5e\xcb\x30\x0e\xc6\x2a\xef\x22\x52\x61\x2e\x22\x16\x91\xc9\xe2\x2f\xe9\x5e\x9a\x9f\x1f\xd0\xfe\x34\x18\x0c\x26\x8e\x1c\x39\x62\xbc\xf4\xd2\x4b\x4e\x12\xd6\x28\xf1\x2d\x2d\x2d\xe8\xe9\xe9\x11\x96\x83\x9e\x00\x50\xde\xec\xf3\xca\x95\x2b\xc8\xe7\xf3\x55\xe5\xb0\x24\x83\x5c\x08\xe8\x13\xdb\xe6\x7d\x15\xf9\x48\x95\xed\xd4\x2b\x5a\x9b\x45\x1e\x18\x71\x9f\x31\x23\x05\x0c\xab\x13\x96\x00\x24\x03\xf9\xeb\x2d\x85\xf3\xbb\x66\x5d\xfd\xd5\x5e\x8b\xf5\xd3\x31\x85\xcc\xcf\x05\xf5\x71\x22\xaa\xdd\x3f\xbb\xb1\x21\xb1\xa9\xa9\x49\xa8\xaa\x2a\x88\x48\xa8\x92\x02\x6e\x43\x84\xab\x8c\x87\x37\x30\x24\x66\x34\x33\x5e\x50\x65\x02\xa5\xad\x74\x9d\xcb\x74\xea\x85\x3b\x66\x48\x54\x55\x15\x07\x0e\x1c\x00\x00\x8d\x24\x47\xbb\x46\x0b\xbf\xa6\xe8\xdc\x5b\x91\x38\x35\x9f\x02\xd9\x3d\x98\x33\xde\x39\xb6\x04\x4a\xdb\x0e\xdb\xa2\x88\x40\x80\xda\x76\x55\xff\xb5\xd4\x26\xf5\xed\x5c\x50\x39\x1b\x8b\xc5\xd2\x9d\x9d\x9d\x98\x99\x99\x59\x53\xd9\xc1\x60\x10\x0f\x3f\xfc\x30\xda\xdb\xdb\x85\xaa\xaa\x02\x35\x5b\x2c\xc7\x62\x31\xb9\x7f\xff\x7e\x63\x74\x74\x14\x6f\xbd\xf5\x96\x04\x80\xd9\xd9\x59\xb4\xb5\xb5\x49\x00\xfa\x78\x24\xf7\xde\xa1\x6b\xcd\x69\xb7\x51\x3a\xda\xd3\xa6\xac\x3c\xa0\x41\xf5\xc6\x5c\xe3\xe1\xdc\xfb\x28\x39\x99\xd9\x3b\x6f\x19\x00\xd2\xe7\x3a\xd2\x2f\x0e\x2f\xf8\x1e\x73\x99\xe4\xb9\x51\x3a\x93\xa1\xc2\xf9\xb8\xaf\x38\x66\xa5\x23\xcf\x9e\x3d\xbb\xa6\x5c\x6b\x94\x68\xaf\xd7\x0b\x45\x51\x00\x40\xf5\xe9\x22\xa4\x99\xc2\x57\xf6\x37\x74\x28\x69\x8d\x3c\x12\x53\x6e\x73\x41\x96\x76\x80\x71\x33\x5a\xe4\x00\x00\x20\x00\x49\x44\x41\x54\x37\x8a\xc5\x62\xbd\xee\xa9\xde\xbf\x13\xb3\x1e\x16\x35\xd8\x86\x98\x58\x2c\x86\x4d\x9b\x36\x09\x00\xbe\xe6\x39\xe3\x91\xc0\xb2\xf9\x78\x95\x19\xa2\x2c\x51\xac\x2a\x77\x74\xcf\xb5\x18\xe7\x66\x9f\xe5\x40\xa5\x5f\x2a\x26\x42\xed\x97\x0a\xbf\x02\xc9\x21\x45\x51\x54\xcb\x77\xbc\x8a\xa6\xfe\xfe\x7e\x7c\xfe\xf3\x9f\x47\x77\x77\xb7\xa6\x2a\x6a\x60\x53\xca\x35\xfc\x89\x6b\xc1\x9f\x3d\x71\x31\xfc\x9b\x8f\x7d\xd4\xf2\xeb\x0f\x4e\x05\x7e\xa2\x39\xa7\xf6\x6b\x9a\x16\x78\xe0\x81\x07\xd4\x9f\xf8\x89\x9f\x10\x6d\x6d\x6d\xc2\x92\xde\x06\x80\xf4\xaa\xc7\xbc\xf2\x5e\x57\xea\x59\x3b\xf3\x7a\xcb\x96\xed\x37\x71\x9f\x31\x35\xda\x9e\x7d\x19\xa5\x6d\x8e\x6d\xe9\x61\x00\x48\x2e\x06\x8a\xe7\xdf\xec\x4b\x7e\x87\x01\xb9\x5e\x3a\x69\xcd\x8c\xbf\xba\x39\xf1\x97\x52\x60\x01\x40\xbe\x58\x2c\x4a\x97\xcb\xb5\xa6\xae\xd7\x78\x24\x5a\xce\x45\x02\x80\xea\x36\x44\x50\x30\x34\xbb\xf6\x36\x62\x48\x4c\xbb\xcd\x25\x50\x69\xa7\x54\xcb\xe3\xd0\x0e\xb7\x2a\x6d\x6e\x09\x63\x75\x5d\x1a\x24\x87\xa2\xd7\x8a\x5f\x22\xeb\x8b\xaf\x98\x21\xe0\x10\x3e\xce\x6e\x78\x2d\xa6\xfc\x86\xaa\xaf\x36\xae\x69\xd9\x3c\xee\x4b\xca\x9d\xd9\x90\x92\x88\x44\x22\x46\x73\x73\xb3\xb4\x76\xbc\x40\x5f\x5f\x9f\x78\xec\xb1\xc7\x84\x10\x42\x73\x17\x45\xeb\x27\xaf\x86\x7e\x79\xcb\xa2\xf7\x67\x55\x49\xd1\xca\x2e\x25\x2c\x0f\x5d\xe3\xa9\xf7\xba\x52\x5f\x79\xa7\x37\xf9\x77\xe1\x70\x38\xf1\xd9\xcf\x7e\x56\x7f\xe5\x95\x57\xa0\xeb\xba\xd4\x34\x2d\x0b\xc2\xdc\x3b\xbd\xc9\xbf\x6f\x2a\x28\xed\xdb\xe7\xfc\x87\x09\xa5\x91\xb1\xd3\xf3\x93\xc1\x48\xba\xcd\xa5\x1f\x0c\x2f\xff\x51\x5e\x95\x63\xb0\x06\x32\x57\xae\x5c\x41\x2c\x16\x33\x54\x55\x4d\x83\x70\xfd\xbd\xee\xd4\xdf\x33\xb1\x7a\xf0\x5a\xf0\xa4\xc7\x28\x09\x08\x3b\x1d\x06\x63\xbe\x49\x9f\x78\x71\x68\xe5\x2f\x12\x3e\xe3\x7d\x58\xfe\xeb\x97\x2e\x5d\xaa\xf5\x20\x15\x00\xa4\xf3\xb8\x27\x00\xe0\x9d\x3b\x77\x8a\x9e\x9e\x1e\x05\x80\x3f\x92\x75\x3d\xb0\x6d\xde\x77\x12\xd6\x31\x32\x55\x5f\x70\x55\x95\x57\x44\xe1\x44\x24\xf7\xc6\x64\x73\xfe\x34\x11\xc5\x33\x99\x8c\x71\xe1\xc2\x05\xe7\xf8\xa0\xf6\x1f\x0d\xe2\xb9\x86\xae\x7a\xf1\x0d\x31\xc1\x60\x50\x1c\x3c\x78\x50\x10\x91\xd7\x93\x92\x0f\xb6\x5f\xd5\xff\x03\x31\x5c\x25\x05\x98\xac\x8a\xb2\xe4\x27\x3b\x86\x1c\xb0\x95\xe4\x6a\x8c\x33\x8b\x6a\xb1\x6f\xa7\x01\xcd\x74\x21\x9e\x8a\x28\x3f\xb4\x1c\xb9\xe4\xd4\xd4\x14\xb9\x5c\x2e\x7a\xe2\x89\x27\xe0\x72\xb9\xdc\x1e\x43\x74\x3e\x75\x21\xfa\x3b\x03\xcb\xde\x2f\x0b\x16\xbe\x32\xc9\xa5\xe1\x1d\xa9\x92\x9a\xbb\x57\xdd\x9f\xf6\xeb\x8a\x36\x1e\xce\xbf\x27\x14\xa1\x87\xc3\x61\xf3\xea\xd5\xab\x68\x6f\x6f\x97\xcc\x6c\x4a\x82\x71\x2d\x9c\x9f\x4c\xf8\x8c\x5c\x73\x5e\x8d\xba\x8b\xc2\x2b\x00\xc1\x28\xad\xf1\x1a\x6d\xcb\xfe\xf0\xc5\xad\x2b\x7f\x16\xf7\x15\xdf\x02\x30\x0e\x60\x75\x69\x69\xc9\x78\xe6\x99\x67\x60\x9a\x26\xba\xbb\xbb\x4d\x66\x2e\x32\x50\x98\x0b\x16\x67\xae\x6c\xca\x5e\xc9\x68\x32\x57\x50\x65\x21\xe5\x31\x93\x93\x2d\x85\x2b\x3f\xec\x4d\xbd\x78\x26\x96\xfc\x9b\x94\xdb\x78\xc7\x4a\x23\x6e\x18\x86\xfe\xf2\xcb\x2f\xdb\x27\x4a\x57\x55\xc8\x1a\x43\xe2\xf9\xf3\xe7\xe5\x43\x0f\x3d\x04\x22\x52\xbd\x45\x11\x84\xdd\x2d\x6c\xc4\x90\x08\x46\xce\x25\x93\x28\xe9\x3f\xf6\x99\x56\xeb\xe9\x40\xb5\x92\xc3\x19\x6e\xd9\x90\x68\x19\xbb\x54\x30\x7c\x81\x15\x73\x3f\x49\xf8\xec\x1e\x7e\xcd\x76\x33\x95\xe1\x58\xb9\xf7\xaf\xc5\x38\x8a\x5c\x11\xf2\xec\x30\x6d\x00\x68\x5a\x36\x0f\x11\x10\x04\x51\xbc\xbd\xbd\xdd\x00\x20\x0f\x1f\x3e\x2c\xbc\x5e\xaf\xca\xcc\xc1\x4f\x5c\x6f\xfe\xc5\xae\x55\xf7\xe7\x2a\x06\xbc\xb5\x86\x3b\x06\xd4\xed\x73\xfe\x5f\x9a\x69\x2e\x9c\x1b\x69\xcf\x7e\x27\x1c\x0e\x1b\x57\xaf\x5e\x95\x33\x33\x33\xb2\xb3\xb3\x33\xcd\xcc\x53\x26\xb1\x71\xb1\x35\x1b\xbf\xbc\x29\xfb\x7a\x53\x41\xed\xf1\xea\x22\x68\x28\xac\xaf\x7a\x8c\x59\x5d\xe1\x29\x06\x5f\x07\x30\x45\x44\x09\x29\xa5\x7e\xea\xd4\x29\x00\xa5\xd5\x1b\xd6\x9c\x5f\x96\x99\x67\x18\xac\xaf\x7a\xcd\x85\x77\x7a\x52\x1f\xa2\xb4\x6b\xac\x00\x90\xb7\xce\x14\x99\x03\x97\x36\x6d\x37\x4d\x33\xff\xdc\x73\xcf\x21\x95\x4a\xd5\x1b\x35\xaf\xf5\x48\xdc\xb7\x6f\x9f\x3d\x0b\x2d\x54\x93\xfc\xe5\xc5\x83\xf6\x57\xea\x30\xb6\xd5\x7a\x24\x32\x01\x05\x55\xa6\x1d\x47\x0a\xa0\x36\xfd\x06\x8d\x0f\x07\xa6\x11\xe3\x88\x9a\xdf\x35\xc4\x58\x1f\x80\x00\xb3\xc7\xbb\x6a\xee\xaa\x30\x80\xa3\x9b\xaa\x08\x5d\xfb\xa5\x35\xf0\x5a\x8b\x71\x46\x97\x31\x54\x99\x10\x02\x00\x2d\x2b\x07\x94\x22\x42\xa6\x06\x6d\xd3\xa6\x4d\x79\x00\xe8\xed\xed\x05\x33\x6b\xfe\xa2\xd2\xb9\x63\xd6\xff\x65\x62\xaa\x5e\x0a\x45\xb6\x04\xb4\x72\x23\x80\x18\xea\x9e\xa9\xa6\x5f\xfc\x68\x53\xee\xb4\xa9\x70\x7e\x68\x68\x28\xff\xcd\x6f\x7e\x13\x8f\x3f\xfe\xb8\xd1\xd9\xd9\x69\xeb\x34\x49\x03\x3c\x95\xf0\x1a\xc1\x84\xb7\xa4\x86\x58\x87\xc8\x24\x88\x28\x01\x94\x0e\xed\x7d\xf5\xd5\x57\xb1\xb4\xb4\x54\xae\xfb\x67\x9f\x7d\x16\x8f\x3e\xfa\xa8\x11\x8b\xc5\xd2\x28\x7d\xe4\x09\x06\x4f\x59\x6e\xaf\x02\x80\x01\x46\x9e\x99\xb3\x44\x94\x37\x0c\x43\x7f\xee\xb9\xe7\x30\x3d\x3d\x8d\x9a\x50\x6e\x8b\x35\x1e\x89\x8e\x93\x69\x84\x60\x2a\xeb\x3f\x95\x43\xdb\x50\xfe\xfa\xaa\x99\xaa\xc4\x45\x92\xb8\x60\x9d\x7a\x03\x67\xba\x58\x2b\x69\xea\xd9\x82\x6e\x64\x48\xac\x0d\x75\x31\xdd\xdd\xdd\xb6\x92\xe7\x71\xe5\xb9\x1d\x55\x52\xc5\xd1\x57\x01\x8e\xf8\xc6\x98\x8a\xc9\xdf\xa1\x6f\xd8\xcf\x16\x03\x08\x13\x01\x55\x97\x51\x53\x53\x54\x00\xe2\x8b\x5f\xfc\x22\xbc\x5e\xaf\x00\xe0\xeb\x4a\xb8\x0f\x6a\x26\x45\x4b\xd5\x65\x31\x6b\x83\xe5\xc6\x20\xa0\x25\xeb\xda\x19\xca\xa9\x03\xcb\x81\xe2\x42\x20\x10\xd0\x0d\xc3\x30\xfe\xf1\x1f\xff\x11\x8f\x3c\xf2\x88\x31\x34\x34\x94\x06\x90\x25\xa2\x38\x4a\x93\xbe\x02\x80\xb4\x86\xda\x06\x00\x23\x99\x4c\x1a\xaf\xbd\xf6\x9a\x73\x34\x28\x01\xc0\x30\x0c\xf9\xfc\xf3\xcf\x63\xf3\xe6\xcd\x78\xf0\xc1\x07\xf3\x91\x48\x44\x27\xa2\x24\x2a\x4a\xb1\x24\x22\x29\xa5\x34\xa6\xa6\xa6\xf0\xcc\x33\xcf\xdc\xc8\x70\xbb\xd6\x23\xd1\xb9\x6b\xaa\x60\x88\x8a\x88\x47\xc5\x34\xd2\xd0\x23\x91\x21\x09\xe5\xa3\x93\x6a\x32\xaf\x27\x69\xd6\x93\x32\xb5\x98\x5a\x49\xd6\x10\x63\x1f\xd3\x04\x40\x53\x4c\x0e\x94\x49\x2d\xaf\xd3\x77\x68\xc6\x8e\x9d\xf1\x1b\x62\x2a\xc5\xb3\xa2\x2b\x8c\x54\x56\xa8\x19\xaa\x30\x11\xb0\x3e\x40\x84\xc3\x61\xd8\xd3\x41\x81\x82\xd2\x57\x1e\x62\x33\x59\xa7\x54\x95\x3b\x4c\x38\xd9\x96\xc1\x50\x18\xbe\x80\x2e\x3a\x97\x98\x35\x21\x04\xac\x5d\x56\xf1\xca\x2b\xaf\xe0\xca\x95\x2b\x32\x16\x8b\xc9\x58\x2c\x66\xb8\xdd\xee\xbc\x83\x42\xb9\xbc\xbc\x8c\xd1\xd1\x51\x5c\xbe\x7c\x19\x86\x61\x34\xac\xbb\xab\x57\xaf\x62\x7c\x7c\x1c\x52\x4a\x63\xef\xde\xbd\x65\xcf\x46\xd3\x34\x31\x33\x33\x83\xeb\xd7\xaf\x23\x99\x4c\xa2\xc1\xef\xab\x7a\x93\x46\x1e\x89\xb6\xd5\x51\x54\x34\x81\x8d\x18\x12\xcb\x0d\xeb\x64\xc4\x1b\x19\xfc\xee\x88\x21\x91\x99\x05\x01\x82\x89\xe4\x7a\x46\xc2\x4a\x41\x1a\x63\x1a\x18\x12\x4b\x7a\x4c\xa5\x07\x92\x25\xdd\xbb\x6a\x6f\x6c\xc1\xcc\xaa\x14\x10\x1b\x31\xdc\x39\xac\xc1\xb2\xa8\x30\x6c\xaf\xc3\xe5\xe5\x65\xc3\x2e\xdf\xd4\xd4\x14\xa6\xa6\xa6\x60\xe9\x36\x46\x77\x77\xb7\xb0\xdc\x4b\x6a\xeb\xa0\x5e\x9d\x95\x1b\x5f\xca\xd2\x4c\xc4\xd9\xb3\x67\x9d\xf1\x37\x9d\x4e\xbd\xf3\xc2\x04\x50\x62\x00\x49\x65\x23\x94\xa5\xe8\xc1\x39\x60\x29\xc7\x3b\x47\x66\x82\x4b\x27\xea\xd5\x6c\x2e\x55\x4f\x72\xd4\xbe\xdb\x08\xa6\x51\x9a\x6b\x9e\xc9\xea\x77\x0c\x8d\xd2\x4e\x69\xc3\xd6\x3b\xe6\x0a\xae\x6a\xbf\xf3\x8d\x60\x6c\x25\x98\x2a\x76\x47\x16\x30\x4c\x17\x65\xed\xb2\x5b\x7a\xa4\x24\x22\x39\xdf\xa4\x8f\x33\x20\x05\x48\x54\xce\xc9\x5b\x2b\x81\xec\xfa\xcc\xb9\xcc\x44\xc2\x6b\xc4\xed\xdf\xf7\xf6\xf6\x8a\xeb\xd7\xaf\x57\xd5\x8f\xb5\x27\x10\x66\x67\x67\x6d\x1a\x85\x25\xf5\x1b\xd5\x21\xea\xd5\x73\x7b\x7b\xbb\x70\x4e\xc1\xac\xae\xae\xc2\xf2\x1c\xdd\x50\x3a\xf5\x4e\x2c\x2c\x37\xbe\x2c\x2f\x8d\xb5\x2a\xca\xa1\x23\x70\x59\x09\xe4\x2a\x8e\x52\x24\xdc\x76\x81\xea\xa5\xdd\x80\x18\xe7\x75\x3d\x3b\xcf\x7a\xa3\xb6\x7a\x4c\xa8\x17\xfc\x62\xa6\xdc\x48\xb6\x1d\xab\x8a\x61\xec\x06\x5d\x1f\xe3\x14\x58\x65\x89\xe1\xc0\x14\x35\x8a\x1b\x1a\xa5\x01\x18\x44\x04\x5d\xd7\xa1\x69\x9a\x64\x66\x7d\xbe\x49\x1f\x5b\x0c\x14\xaf\xb4\xa6\xb4\x21\xd4\x49\xd3\xb9\x03\x9d\xb5\x6b\xc6\x3b\x59\x97\x5c\x22\x22\x9d\x99\x91\xc9\x64\x9c\xe5\xc3\x23\x8f\x3c\x22\xda\xdb\xdb\x6d\x9f\x26\xc1\xcc\x48\xa5\x52\x98\x9b\x9b\x13\xaf\xbc\xf2\x4a\xa3\x41\x48\x55\x3d\x3d\xfc\xf0\xc3\x62\x68\x68\x48\x28\x8a\x22\xec\xb6\xb2\x75\xd7\x85\x85\x05\xbc\xf7\xde\x7b\xf6\x0a\x8e\x75\xd3\x29\x3b\x53\x3b\x1b\xc0\x9e\x7f\x29\x0a\xce\x95\x2a\xad\x62\x8d\xb5\x75\x04\xe7\x01\x2a\x0e\x83\x18\xdc\x86\x08\x60\x7d\x69\xb1\x11\x09\x54\x1b\x6e\xc4\x3c\x55\x98\x78\x3c\x2e\x42\xa1\x90\x04\x91\x9e\x69\x51\x46\x01\x48\xe6\xd2\xd1\x44\x25\xce\x80\xa5\xfc\x56\xee\xcb\x8a\x72\x3d\x4c\xb9\x8c\x76\xb7\x55\x1e\x8b\x97\x31\xd9\x66\x75\x8c\x45\xc9\x7d\x17\x80\xfc\xda\xd7\xbe\x26\x7f\xfe\xe7\x7f\x1e\x42\x88\x3c\x03\x4b\xa7\x06\x12\x7f\xf7\xb9\x0b\xd1\xff\xd5\x65\x0a\x0f\x6a\x42\xa5\xb7\x27\x24\xdd\xc6\xd2\xdb\xbd\xc9\x6f\x83\x4a\xeb\xe8\xb2\xd9\xac\x8c\xc7\xe3\xd0\x34\x0d\x47\x8f\x1e\x15\xfd\xfd\xfd\x42\x51\x14\x15\x0c\x55\x48\xa8\x82\x49\x95\x04\x19\x6c\x0a\xea\xc1\x60\xd0\x18\x1a\x1a\x32\xa6\xa7\xa7\xe5\xd3\x4f\x3f\x5d\xb7\xce\xb6\x6d\xdb\x86\x43\x87\x0e\x09\x97\xcb\xa5\x82\xe1\xf1\x16\x45\xa0\x39\xaf\x46\x35\x83\x3c\x49\x8f\x19\x4f\x7a\x8c\x78\xeb\xa6\xd6\xfc\x89\x13\x27\xf4\xe9\xe9\x69\x34\x4a\xc7\x0e\x6b\x74\x20\x87\x13\xb9\xcc\xb9\xcc\x34\xec\x2a\xa4\x8a\xdd\xc2\x2a\xab\xa5\x3b\x57\x86\xba\x00\xc1\x57\x54\x82\x96\xf2\xe8\xcc\xa7\x9e\x04\x5a\xef\x5a\xdb\x17\xd7\xfb\x7d\x43\xcc\xca\xca\x0a\xac\xa5\xbc\xd9\x4c\x48\x19\x29\xba\x29\xae\x15\x38\x5a\x56\x92\xcb\xe5\x70\x2e\x8a\x74\x48\xa2\x1a\x8c\x03\x51\xc6\x94\x7f\x60\xc5\xaf\xb6\xa9\x6f\x33\x90\x46\xc9\x85\x05\x44\x24\x26\x26\x26\x10\x8b\xc5\xf2\x00\x16\xa6\x42\x85\xd7\x5f\x18\x8a\xb7\x1e\xbf\xdc\xf2\xaf\xdd\x86\xe2\x2b\xdb\x90\xac\xa3\xac\x00\x60\xd5\x63\x2c\x3d\xbb\x2d\xfe\xc7\xab\x1e\xe3\x3c\x18\x09\x22\xd2\x47\x46\x46\xa0\xaa\x2a\x1e\x7f\xfc\x71\xb4\xb5\xb5\xa9\x04\xf2\xb5\xa6\x5c\xfd\xbb\x66\x03\x5f\xec\x58\xd5\x0e\xba\x4d\x11\xd6\x15\x4e\xce\x37\xe9\x67\x2f\xb4\x67\xbe\x39\xdd\x5c\xb8\xd8\xd9\xd9\x99\xfd\xd9\x9f\xfd\x59\xe3\xe9\xa7\x9f\xc6\xf2\xf2\x72\xb9\x7e\x86\x87\x87\xf1\xf0\xc3\x0f\x0b\x00\x1e\x7f\x41\x69\x3f\x78\x3d\xf8\xa5\x2d\x8b\xde\x7f\xe1\x29\x8a\x7e\x02\x54\x93\x90\x58\x0c\xe8\x67\xde\xe9\x4d\xfd\xc1\xd5\x48\xee\x9d\xce\xce\xce\x74\xbd\x74\x9c\x6d\xe1\xf4\x89\x66\x00\xe8\xe8\xe8\xa0\xce\xce\x4e\x01\xc0\xe7\x2d\x2a\x7d\xdb\xe7\xfd\x9f\x15\xd6\xe6\xe1\xf6\x87\x57\x9e\x33\xa9\xa3\x8b\xae\x7a\x8c\x6b\x63\xd1\xfc\xcb\x20\x24\x13\x89\x84\x61\x39\x93\x39\xf3\x20\xab\xf1\xb9\xc1\x3f\x35\xc0\xd1\x46\x31\xb3\xb3\xb3\xbc\x7f\xff\x7e\x02\x20\x58\xc0\xeb\x2a\x70\xbf\x2f\x21\x87\x2a\xfc\xc0\x96\x03\x1c\xec\x02\x39\x58\x64\x2d\xa6\xe4\x2b\xcc\x65\x1b\x50\x55\x3c\x33\x74\x9f\x98\x9b\x19\xf6\x7c\x8d\x55\xba\x4a\x44\xc9\xf1\xf1\x71\xf3\xfa\xf5\xeb\x72\x6c\x6c\x8c\x1f\x7c\xf0\x41\xa9\x28\x8a\x09\x82\xb1\xec\x33\x16\xc7\x22\xb9\x29\x97\x29\x7c\x5e\x43\xf8\x04\x43\x98\x0a\xcc\x94\xc7\x5c\xb9\xd0\x9e\x79\xfb\x85\xa1\x95\x3f\x5b\xf1\x19\x6f\x12\xd1\x18\x11\xad\xe4\x72\x39\xfd\x07\x3f\xf8\x81\x7c\xf2\xc9\x27\xa9\xbd\xbd\x5d\xa5\xd2\xbe\x94\x3f\xf5\xe9\x4b\xe1\x3f\xee\x48\x6a\x27\xfd\x45\x75\xb3\x66\x8a\x4e\x5f\x51\x89\x45\x33\xda\xe1\xad\x8b\xbe\x9f\xf0\xeb\x42\x9d\x0c\x15\x46\x14\x4d\xd5\x63\xb1\x98\x69\x1d\x0d\xc1\xbd\xbd\xbd\xf4\xe8\xa3\x8f\x0a\x21\x84\x27\x9c\x75\x0d\x7d\xe1\xdc\xa6\x3f\xed\x5b\xf1\xfc\x8c\x66\x8a\x68\x49\x59\x27\xa1\x80\x7c\x4d\x05\x75\xeb\xe0\x92\xf7\x0b\x9a\xa4\xfc\x54\x4b\xe1\xa2\xea\x52\x8b\xd1\x68\xd4\xbc\x78\xf1\x62\xdd\x36\xb3\xa7\x32\xd8\xbe\xfa\x7c\x3e\xb2\xfc\x67\xbd\xaa\x49\x9d\xbb\x66\xfd\x4f\x29\x4c\x2a\xb1\x73\x2e\xac\xf2\x85\x56\x0d\x68\x98\x91\x77\xc9\xf8\xc5\xb6\xec\xb3\x20\x24\x3c\x1e\x4f\xf1\xc3\x0f\x3f\x64\x47\x1e\xf6\x8f\xab\xf4\x6e\x67\xfe\x8e\x77\xb5\xbf\x73\xfe\xe6\x86\x98\xcd\x9b\x37\x97\x76\x2f\x25\x52\x0b\x7e\x61\x86\x67\x8c\xa3\xc2\x84\xbb\x32\x44\x27\x07\x1b\x52\x75\xca\x35\x98\xd2\xe7\x62\xdb\xc1\x2a\xd7\x52\x1d\x10\xe6\x07\xdd\xdf\x4a\x45\x94\x97\x89\x68\x86\x99\xb3\xdf\xf9\xce\x77\x4c\x9b\x2e\x29\x25\x75\x77\x77\x9b\x00\x0a\x0c\xce\xe6\x35\x5e\x1a\x8b\xe4\x46\x2e\x74\x64\xce\x8e\xb4\x67\xce\x7e\xd0\x95\x3e\x75\xb6\x3b\xfd\xec\x44\x38\xff\x4a\x51\xe5\x73\x0c\x9e\x20\xa2\xb8\x94\xb2\x70\xea\xd4\x29\x1e\x1c\x1c\xa4\x2d\x5b\xb6\x08\x66\x6e\xde\x3d\x1b\xf8\xfc\xb1\xab\xa1\xff\x5b\x65\x11\x22\x54\x14\x7b\xfb\x2a\x98\x3c\x6d\x29\xed\x61\x8f\x21\xe4\xb5\x70\xfe\x7d\xd5\xe5\x2a\xb4\xb4\xb4\xf0\xd8\xd8\x18\x3f\xf9\xe4\x93\xe4\x76\xbb\xdd\x2e\x83\x3a\x9e\x1a\x89\xfe\xfe\xa6\x8c\x76\x84\xac\x6e\x64\x4d\x3a\x20\xad\x3d\xa9\x1d\xcd\xbb\xe4\xc4\x5c\x53\xe1\x4a\x20\x10\x28\x98\xa6\x89\xb9\xb9\x39\x67\x7d\x0b\x00\xbc\xc6\x88\x97\x4a\xa5\xec\x7b\x23\xe7\x32\x93\xba\xc2\xa5\xad\xab\xaa\x64\xb7\xcd\x30\xa8\xfa\x7a\x41\x84\xa6\x82\xd2\xaa\x48\xf2\xd9\xdd\x98\xb5\x7b\x63\xa3\xa9\x88\xf5\x94\xe3\x1b\xe9\x45\xeb\x62\xae\x5c\xb9\x02\x94\x8e\xbf\x4c\xe8\x5e\x1a\x99\x1b\xd4\xfe\x81\x09\xb2\xa4\xfc\x5b\xce\x51\x16\xfd\xa5\x6e\x9b\xcb\x67\x98\xd5\x62\x9c\x4a\x75\xed\x81\x8a\xd9\x90\xb8\xb2\xd4\xeb\x7a\x86\x88\x16\x98\x39\x6b\x79\x60\x96\xcb\xf3\xc1\x07\x1f\xc8\x77\xdf\x7d\x57\x5a\xd6\xdd\x39\x66\xbe\x08\xc2\xdb\x05\x45\xbe\x92\xf4\x9a\x4f\x27\xdd\xc6\x33\x86\xc2\xaf\x31\xf8\x1d\x66\xbe\x42\x44\x0b\xa6\x69\xe6\x5f\x7e\xf9\x65\x39\x33\x33\x83\x9d\x3b\x77\x82\x99\x3d\x4d\xba\xda\x7b\x68\xa2\xf9\x37\x04\xa8\xac\x43\x95\x4d\x51\x65\x05\x1c\x20\x90\xd8\x39\x1b\xf8\xa5\x9e\x15\xf7\x61\x66\xf6\xc5\x62\x31\xf1\xc5\x2f\x7e\x51\xf8\xfd\x7e\xc1\xcc\xbe\x6d\x0b\xbe\x27\xdb\x52\xda\xb1\xaa\x76\xac\x93\x8e\x00\x69\x07\xaf\x05\x7f\xbd\xa9\xa0\xf6\x33\xb3\x67\xcf\x9e\x3d\xb6\x61\xb4\x8a\x5f\x6c\x0b\x64\xbd\x20\x0d\xc1\xd9\xbc\xcb\x4c\x96\x33\x5a\xa7\x25\xed\xe0\xd3\x95\x56\x4f\x69\x0e\x4d\xf5\x7a\xbd\x42\x5a\x06\x87\x9a\xbc\xea\x29\xd9\x37\xa2\x47\xdc\x0c\xe6\xfc\xf9\xf3\xc8\xe7\xf3\x06\x11\xa5\x41\x34\xb3\xdc\xeb\x7a\x3a\xd1\xa1\xbe\x53\xe2\x18\xcb\x12\x6c\x7d\x14\x55\x56\x61\xb6\x1c\x55\x9c\x18\x38\xf4\xe9\x8a\x29\x08\x45\x0f\xc5\xaf\xef\xf4\xfc\x19\x2b\x34\xc6\xcc\x71\x00\xba\x65\x57\x71\xd2\x23\xde\x7d\xf7\x5d\x9c\x3e\x7d\x5a\xa6\xd3\xe9\x3c\x80\x84\x75\x54\xe7\x15\x66\xbe\x08\xe0\x22\x80\x31\x00\x33\x44\x94\x88\xc7\xe3\xfa\x0f\x7e\xf0\x03\x79\xf5\xea\x55\xd9\xd3\xd3\x03\xcb\x77\xc8\x17\x5b\xf6\x1c\xf7\x15\x45\x3f\x50\x1a\xac\x94\xcd\x07\x15\xdb\x51\x59\xa0\x2a\x4c\xbe\x1d\xf3\xfe\x9f\x44\x69\x8e\x4b\xb5\x8c\x9a\x2a\x80\xe0\xd0\x82\xef\x29\x94\xcf\x33\x59\x3f\x1d\x5f\x51\xf4\xc6\xe2\x9e\x63\x00\x7c\xaa\xaa\x0a\x6b\xa5\xb2\xb3\x0d\xd6\x7a\x24\x2e\x2c\x2c\xa0\x50\x28\x48\x4d\xd3\x0c\x53\x50\x36\xe9\x31\x17\xc2\x59\x0c\x60\x43\x86\x44\x86\xcb\xa4\x40\x73\x5e\xed\x4c\x7b\x4c\x0d\x28\xb9\x33\x5c\xbb\x76\xad\x5e\x23\x37\x7a\xbe\x2d\x18\x5d\xd7\xf1\xee\xbb\xef\xe2\xc8\x91\x23\x79\x00\x4b\x2c\xe8\xd2\xe4\x4e\xcf\x57\x89\xf3\x6a\xf3\x9c\xb1\xd7\x31\xf0\xb1\x48\xb7\xba\xb4\xb2\x5e\x5c\x29\x57\x3d\x43\x62\xd1\x4b\x89\x89\x3d\xde\x3f\x2e\x34\x29\x6f\x5a\x0c\x91\x8e\xc7\xe3\x72\x6c\x6c\xac\xee\x88\x73\x74\x74\x14\xe3\xe3\xe3\x18\x18\x18\x30\x62\xb1\x98\x11\x89\x44\xca\x6b\xd2\x33\x99\x0c\x16\x16\x16\x70\xf9\xf2\x65\x58\xbb\x8d\x01\x00\x5a\x5a\x5a\x6c\x63\xa2\xaf\x2d\xa5\xed\x2b\x9b\x4f\x2c\xfa\xec\x81\x4b\xad\x2d\x89\xc1\x68\x4f\xba\xf7\x12\x28\x08\x42\x1c\xa5\x91\xa1\xa6\x9a\x14\x0a\x67\x5d\xc3\x36\xe6\x46\xe9\x00\x40\x7b\xd2\xbd\xef\x5c\x67\xe6\x5b\x00\x92\x2d\x2d\x2d\x7a\x6d\xb9\xd6\x33\x24\x1a\x00\xf2\x71\x5f\x71\xaa\x3f\xee\xdd\x90\x21\xd1\xc2\x88\xd6\x94\x6b\xdb\x54\x73\xfe\x25\x22\x12\x2d\x2d\x2d\xd2\x61\x4f\xa8\xca\xbc\xe6\xf9\xb6\x1a\x12\x01\xe0\xc2\x85\x0b\x32\x16\x8b\xa1\x3c\x93\xad\x40\xbb\xb6\xcb\xf3\x47\x1d\xde\xc2\x4f\x47\xaf\x15\x1f\x26\x13\xea\xad\x18\x12\x33\x2d\xe2\xfa\xe4\x4e\xcf\x5f\xe4\x03\xe2\x14\x73\x49\x67\x31\x4d\x53\x7f\xee\xb9\xe7\x6a\x48\xac\x2e\x57\x3e\x9f\x97\x23\x23\x23\x62\x64\x64\x44\x6a\x9a\x26\x74\x5d\x97\x81\x40\x40\xa4\xd3\xe9\xba\x65\xb7\x1c\xf5\x05\x33\x7b\x5c\xa6\x08\x56\xd5\x79\xd9\x7e\x55\xdf\x20\xa9\x48\xf8\x04\xc3\x23\x09\xf6\x0a\x1b\x01\xc0\xc3\x4e\x63\xeb\x06\xd2\x21\xc0\xc3\xcc\x1a\x11\xd9\x0b\x07\xaa\xca\x55\x3b\x3c\x16\x00\xb0\xb8\xb8\x08\xcb\xaa\x99\x5f\xf2\x17\x27\x4a\xfa\x81\x3d\xdc\xb4\x45\x9d\xf5\xcc\x15\xa5\xbc\x74\x84\x25\xa3\x33\xe9\xde\x49\x20\x0f\x33\xab\xdd\xdd\xdd\x76\xda\xce\x7c\x6a\x2b\xd9\x79\xdd\x88\x21\x71\xc3\x98\x97\x5e\x7a\x09\xd9\x6c\xd6\xb0\x26\x0d\x27\x58\xa5\xb3\x33\x5b\xdd\x5f\x1d\xdb\xef\xfd\xe3\x4c\x8b\x98\x60\x82\x5c\x63\x48\x2c\x77\x6d\x15\x7d\x07\x04\xe8\x6e\x4a\xce\x6e\xd5\xbe\x7f\xf5\x80\xef\xb7\xf3\x4d\xca\xcb\x5c\x3a\x59\x68\xc1\x34\xcd\xfc\x8b\x2f\xbe\x68\xbb\x3c\x34\xa2\xab\x4a\x37\xb2\x7c\x6b\x60\xed\x8e\x5a\x17\x03\x54\xa4\x5f\x56\x33\xd3\x95\x38\x38\x85\x3e\xaa\xe2\xad\x90\xd1\x64\xc2\xa4\xf2\xc4\x38\x98\x19\x86\x60\x99\xf2\x18\x0b\x37\x93\xce\x78\x38\x37\x62\xd3\x56\xe3\x20\xd8\xd8\x90\xb8\xb2\xb2\x82\xee\xee\x6e\x9b\x81\xae\x32\x20\xc9\x96\x4c\x37\x30\x24\x02\x84\xb6\x94\xb6\xdd\x25\x29\x58\x54\xa0\x5a\x13\x75\x77\xd5\x90\xe8\x8c\xcc\x66\xb3\x78\xfa\xe9\xa7\xf1\xc4\x13\x4f\xe8\x3e\x9f\x2f\x01\xc0\x00\x51\x36\x1d\x51\xe3\x57\x0f\x2a\x17\xfc\x09\xf3\x81\x96\x99\xe2\x5e\x7f\x5c\xf6\xbb\x0a\x32\x28\x24\x54\xb6\x26\x91\xad\xe9\x89\x7c\xae\x49\xcc\x25\xda\xd5\x0f\x57\x5b\xd5\x77\x4d\x8d\x2e\x81\xe8\x3a\x33\xcf\x58\xa3\x25\xfd\xc5\x17\x5f\x84\x75\xa2\xf2\x2d\xd1\xd8\x08\x93\xcd\x66\x61\x4d\x4c\x1b\x93\xa1\xfc\x85\x07\xa6\x03\x52\x80\x44\xd9\x86\x54\x13\x9c\x4a\xf0\x48\x7b\xe6\x0c\x2a\x3e\xd1\x92\x88\x0c\x66\xce\x5e\xda\x94\x7b\xbb\x2d\xa5\xed\x2e\x8f\xc0\xd6\x49\x27\xad\x99\x4b\xd3\xa1\xc2\x05\x58\xfe\xed\x75\x8e\x19\xad\x3f\x99\xba\xbc\xbc\x0c\x00\x06\x33\xeb\x2b\x3e\x63\x2a\xef\x92\x09\x6f\x51\x09\xdb\xa3\xdb\x52\x2e\x0e\x3b\x8a\x45\xb4\x6d\x6c\xf4\xeb\x4a\x67\x24\xe3\x1a\x9c\x6d\x2a\x4c\x28\x8a\x22\x3a\x3a\x3a\xca\x73\x36\x58\x2b\x71\x6e\xbb\x21\xb1\x16\xb3\xb2\xb2\x82\xa7\x9f\x7e\x1a\x47\x8f\x1e\xd5\xdb\xda\xda\x92\xd6\x14\x41\x92\x05\xe6\xd2\x11\x75\x2c\x15\x56\x4e\x09\x46\x54\x2d\xf0\x26\x57\x81\x43\xc2\x60\x8d\x05\xa4\xa1\x89\x64\xd1\x4d\xcb\x52\xc5\x12\x97\x5c\x3b\x17\xac\xd1\x56\x9c\x88\xb2\xa6\x69\xea\x2f\xbd\xf4\x92\xad\xb7\x34\x2a\xcf\x9a\xfa\xdd\x28\x26\x1e\x8f\xa3\xbf\xbf\x5f\x12\x51\xf6\x7a\x4b\xe1\xfd\xf9\x26\xfd\x4a\x7b\x4a\x1b\xb2\x3b\x99\xda\x25\xc9\x76\xdb\x24\x3d\xe6\xc2\xe5\x4d\xd9\x53\xb0\xb6\xf0\xb5\x99\x90\x88\x92\x17\xda\xd3\x2f\x6f\x9b\xf7\x3d\x16\xcd\xb8\xfa\x6f\x94\xce\xbb\x3d\xa9\xef\x67\x4b\x1b\x64\x64\x99\xd9\xe9\xee\x5c\xa6\x71\x8d\x21\x11\x00\x2d\x2f\x2f\xcb\x7d\xfb\xf6\x09\x22\x72\x49\x81\x40\x5f\xdc\xf3\x50\x73\x5e\xed\xd8\x88\x21\xd1\x52\x35\x95\x94\xc7\x9c\x9a\x09\xe9\xef\x02\xc8\xa4\x52\x29\x69\x1d\x57\x79\x57\x0c\x89\xf5\x30\xf9\x7c\x9e\x3f\xfa\xe8\x23\x76\xbb\xdd\x1c\x8d\x46\x0d\x21\x44\xde\xea\xd6\x56\x88\x68\x11\x44\xb3\xd2\x45\xd7\x8a\x1e\x71\x49\xf7\x89\x8b\x45\xaf\xb8\x60\x6a\xf4\x11\x2b\x74\x09\x44\x57\x89\xe8\x1a\x11\xcd\x58\xf8\xec\xdc\xdc\x9c\xf1\xcc\x33\xcf\x60\x6e\x6e\x4e\x6e\xa0\x4c\x1b\x29\xf7\x1a\xcc\xec\xec\x2c\xef\xd9\xb3\x87\x84\x10\x24\x05\x5c\x0b\x01\x3d\xbd\x79\xc9\x77\xc0\x25\x85\x9b\xca\x9e\x00\x8e\xc5\x0d\x44\x28\x2a\x9c\x7f\x7e\x6b\xfc\xab\x8b\x81\xe2\x1b\x44\x34\x43\x44\x59\x5d\xd7\x59\x55\x4b\xcb\xca\x4c\x05\x98\x6e\x2e\xc4\xfb\x56\x3c\xbb\x3d\x86\xf0\xd7\x4b\x87\x09\xf2\x5c\x67\xe6\xd5\x37\xfb\x92\x7f\x01\x81\xab\x44\x14\x4f\x24\x12\xc5\x37\xdf\x7c\x73\x0d\xfd\x6b\x0c\x89\x76\xc5\x5b\xe7\x9b\x2b\x44\xe4\x0f\xe6\xd5\xad\xdd\xab\xee\x5d\xb6\x84\x59\xcf\x90\x58\xc2\x10\x5c\xa6\x50\x47\xda\x32\xcf\x32\x21\xe5\x76\xbb\x8b\xa3\xa3\xa3\xce\x01\x9c\x53\x72\xde\x11\x43\x62\x23\xcc\xd4\xd4\x14\xbf\xf7\xde\x7b\x32\x10\x08\xc8\x68\x34\xaa\xa3\x24\xe6\xd3\x28\xed\x5a\xba\x6c\xed\x24\x3b\x07\x60\xde\xfa\x5f\x64\xe6\x15\x22\x5a\x65\xe6\x7c\x3a\x9d\x2e\xbe\xf1\xc6\x1b\x7c\xe6\xcc\x19\x59\x28\x14\x9c\x0c\xdb\xa8\x3c\xb5\xe5\xba\x29\x4c\x5f\x5f\x1f\xfc\x7e\x3f\x33\xb3\xcc\xba\x65\x6e\x32\x94\x5f\x88\x64\x5c\xdd\x01\x5d\x69\x71\xce\xe1\x81\x18\xcb\x3e\x63\xe6\xb9\xe1\xf8\x5f\x5e\x6f\x29\x3c\xc7\xe0\x71\x22\x4a\xa4\x52\xa9\xe2\x5f\xfd\xd5\x5f\xc9\xde\xde\x5e\xf8\xfd\x7e\xc9\xcc\x66\x5e\xe3\xec\x95\x68\x6e\x42\x30\xf9\x9a\xf3\x6a\x58\x95\x25\xc7\x41\x26\xc8\xb8\xcf\x58\x3c\x3d\x90\xf8\x87\x77\x7b\x52\x7f\xc7\x02\xa3\xcc\x3c\x4f\x44\xd9\x37\xde\x78\x83\xe3\xf1\xf8\x1a\x9a\xeb\x99\x76\x04\x00\x69\x9d\x6d\xee\x01\xd0\xdd\xb9\xaa\x7d\xfe\x8b\x1f\xb4\xfe\x9f\x42\x92\x5a\x35\xc5\xe5\x54\xc2\x6a\xe2\x0c\xe2\xfc\xdf\xec\x9d\xff\x97\x4b\x81\xe2\x69\x66\x4e\x7e\xf5\xab\x5f\x35\xb0\x36\x6c\xd4\x90\xb8\x91\x19\xf8\x5b\xc2\x3c\xf8\xe0\x83\xa2\xb3\xb3\x13\xa1\x50\x08\x7e\xbf\xbf\x32\x42\xb1\x14\xcf\x62\xb1\x28\xf3\xf9\x7c\x79\xdb\x37\xc7\x00\x63\xbd\x70\x23\x3d\x67\xc3\x98\x70\x38\x8c\x2f\x7c\xe1\x0b\x50\x14\xc5\xc7\xcc\x51\x02\xfa\x05\xd3\x60\x7b\x52\x7b\xa0\x6b\xd5\x3d\xe4\xd7\x95\x60\xde\x25\xb3\x73\x4d\xfa\xd8\x54\xa8\xf0\x9e\x21\xf8\x0a\x83\xc7\x2c\x83\x64\xf6\x99\x67\x9e\x91\x33\x33\x33\x70\xa4\xe3\x61\xe6\x30\x80\x6e\x02\xf5\x6b\x26\x75\x47\x32\xae\x3e\x97\x49\x9e\xb4\xdb\x8c\x27\xbc\xc6\x35\x49\xb8\xce\xe0\x09\x94\x6c\x53\xe9\xc9\xc9\x49\xc3\xf2\x4e\x5c\x43\x33\xd5\x89\x14\x00\xe4\xee\xdd\xbb\xc5\xa1\x43\x87\x54\x00\x51\xcd\xa0\x43\x5f\x7a\xa7\xfd\x0f\x9b\xf2\x6a\x2b\x6e\xc4\x40\xe5\x57\x8c\x1f\xf6\xa4\x7e\xff\xcc\xc0\xea\x6f\x03\x98\x1b\x19\x19\xb1\x37\xb4\xae\x55\x9a\x6b\xf3\x6e\x84\x69\x34\xd4\xbf\x6d\x98\xe6\xe6\x66\xb1\xba\xba\x5a\x75\x2d\x14\x0a\xc8\xe7\xf3\xeb\xfd\x1e\x37\xc8\xeb\x63\x63\x36\x6f\xde\x2c\x8e\x1f\x3f\x2e\x00\x68\x44\x14\x62\xe6\x28\x80\x28\x80\x10\x4a\x6e\xad\x06\x80\x24\x11\x2d\x59\x5b\xfb\x26\x98\x39\x7f\xe1\xc2\x05\x79\xe6\xcc\x99\x7a\xe9\xa8\x44\x14\x60\xe6\x10\x80\x30\x00\x1f\x4a\xfa\xb0\x6e\xa5\x13\xb7\xb6\xe6\xc9\x4e\x4f\x4f\x1b\xcf\x3e\xfb\x2c\x4c\xd3\xac\x4b\xb3\x82\x8a\xf9\xac\xca\x8c\x26\xa5\xc4\xf0\xf0\x30\x88\x48\x31\x09\xbe\xb6\xb4\xb6\x2b\x9a\xd5\xfa\xd7\x18\x12\xab\xe6\x33\x9c\x7b\x24\x12\x9a\x74\x25\x3c\xd2\x9e\xf9\xbe\x41\x9c\x68\x6a\x6a\x2a\x8e\x8c\x8c\x40\x4a\xe9\x1c\x38\xd6\xcb\xbb\x2a\xf9\x9a\x77\xce\xcc\x6e\x3b\xc6\xea\x92\xc8\xda\x85\x8c\x0b\x85\x02\x59\x1b\x4d\xd6\xfe\x8e\xb1\xf6\xf3\xb9\x63\x98\x95\x95\x15\x4e\x24\x12\xe8\xee\xee\x36\x14\x45\xc9\x03\x48\x13\x51\x9c\x88\xe6\x2c\x3d\x67\xca\x9a\x87\x9b\x27\xa2\x94\x69\x9a\xf9\x37\xde\x78\x83\x2d\xab\x78\x55\x3a\xd3\xd3\xd3\x68\x6f\x6f\x37\xdd\x6e\x77\x01\x96\x6f\x35\x11\x2d\x13\xd1\x82\x95\xde\xb2\xc5\x3c\xf9\x91\x91\x11\xf3\x95\x57\x5e\x81\x69\x9a\x0d\x69\x56\x1c\x04\x3b\x95\x5c\x64\xb3\x59\xb9\x75\xeb\x56\x68\x9a\x26\x00\xf8\x08\x14\xd9\xb2\xe8\x3d\x52\x19\xb4\x5b\xa5\xad\x5d\xc5\xc0\x28\xdb\x8b\x34\x43\x84\x96\xfd\xc6\x85\x25\x7f\xf1\x92\xaa\xaa\x7a\xa1\x50\x90\x0b\x0b\x0b\xb6\xd2\xe9\x54\x1a\x9d\x57\x38\xee\x6b\x31\x7c\x9f\x60\x6c\x1d\x60\x3d\x9a\x6f\x2b\x66\x65\x65\x45\x4e\x4c\x4c\x90\xc7\xe3\x91\xa1\x50\x48\x27\xa2\x3c\x95\xd6\xa0\xa5\x88\x28\xcd\xcc\x39\x29\x65\x7e\x6c\x6c\xcc\x7c\xe5\x95\x57\x60\x79\x30\xae\x49\x27\x93\xc9\xc8\x8b\x17\x2f\xd2\xea\xea\x2a\xfb\x7c\x3e\xc3\xeb\xf5\xea\x42\x88\x02\x33\xe7\x00\x14\x4c\xd3\x2c\x4c\x4c\x4c\x98\xaf\xbf\xfe\x3a\x8f\x8c\x8c\xd8\xdd\x75\x43\x9a\xeb\x7a\x24\xda\xcf\xb3\xb3\xb3\xd8\xb2\x65\x8b\x01\x20\x39\x15\x2a\xbc\x97\x73\xc9\x84\xb7\x58\x3a\x15\xaf\x9e\x47\xa2\x6d\x98\xaa\x58\x38\x49\x3c\x30\x13\xf8\x97\x97\x37\x65\x9f\x33\x89\xd3\x83\x83\x83\xc6\x85\x0b\x17\x44\x65\x7a\xac\x2a\xdf\x9b\x31\x24\xd6\x0b\x77\x12\xd3\x08\x7f\x57\x31\xab\xab\xab\xf2\xa5\x97\x5e\x82\xdb\xed\x16\x85\x42\xc1\x00\x80\x83\x07\x0f\x8a\xb7\xdf\x7e\x5b\xf6\xf6\xf6\x8a\xf9\xf9\x79\x14\x0a\x85\x1b\xa6\x63\x9a\xa6\xbc\x7c\xf9\xb2\xbd\x03\xab\x04\x20\x3b\x3a\x3a\x84\x35\x52\xae\x67\x26\x69\x48\xb3\x2d\x81\x6a\xa5\x80\x04\x40\xcc\x8c\xc1\xc1\x41\x26\x22\x61\x08\xf6\x45\x33\xae\xed\xd1\xb4\xd6\x57\x5a\xbf\x54\x71\x28\x27\xb2\x57\xca\x03\x95\x91\x5a\x29\xde\x5f\x50\xda\xa7\x43\x85\xb7\x92\x5e\x73\xd2\xef\xf7\x17\x96\x96\x96\x38\x91\x48\x00\x8d\x25\x50\xed\x68\xcd\x7e\x57\xaf\x20\x77\x0b\xb3\x66\x94\x8a\xea\xae\xe6\xae\x62\x4c\xd3\x2c\x63\xa6\xa7\xa7\x09\x00\xaf\xae\xae\x92\xa3\xab\x41\x5b\x5b\x1b\xed\xda\xb5\x8b\xb6\x6c\xd9\x42\x0f\x3f\xfc\x30\x22\x91\x08\xf5\xf5\xf5\x81\x88\x90\x48\x24\xd6\xe4\x95\x4e\xa7\x6f\x89\x1e\xa7\x0e\x84\x5a\x50\x2e\x97\xc3\xf0\xf0\x30\x2b\x8a\x42\x44\xa4\x15\x15\xd9\x34\xbc\xe8\x7b\xd8\xe6\x12\x02\x50\xcf\x90\xe8\xdc\x00\x43\x10\x29\x81\x82\x12\xfa\xa8\x35\xfb\xa2\x04\x67\xc3\xe1\xb0\x61\x6d\x38\x5e\xab\x83\x38\xaf\xb5\x3a\x8b\x93\x3e\x71\x0f\x30\x8d\x68\x85\xe3\xfd\x7d\x81\xe9\xec\xec\xa4\x27\x9f\x7c\x92\x76\xed\xda\x25\xda\xda\xda\x94\x70\x38\xac\x69\x9a\xa6\x86\xc3\x61\x35\x1a\x8d\x8a\x81\x81\x01\xde\xba\x75\x2b\xb2\xd9\x2c\xad\xac\xac\x7c\x6c\x7a\xea\x1a\x12\xad\x7b\x32\x4d\x53\xb6\xb4\xb4\x50\x34\x1a\x25\x00\x6a\x46\x93\x62\x70\xc9\x77\xd8\x57\x14\xcd\xeb\x1a\x12\xc9\xba\xb3\x18\x2a\x50\x50\xba\x17\x9a\xf4\xf7\x13\x3e\x73\xc2\xe3\xf1\x14\x8a\xc5\x22\x5b\xba\x10\xd7\xf9\xaf\x95\x06\xb5\xf1\xf7\x02\x73\xdb\x8d\x84\x77\x02\xb3\x73\xe7\x4e\x3a\x7e\xfc\xb8\x70\xbb\xdd\x6e\x95\xa9\xa9\x67\xd5\xb3\x6b\xc7\x9c\xff\xc9\x6d\xf3\xfe\x27\xba\x92\xee\xdd\x6e\x43\xb8\x52\x1e\x33\xad\x7a\x35\x33\x16\x8b\xc9\x70\x38\xcc\x96\xf7\xc0\x2d\xd3\xd3\xd0\x90\x68\xc7\x4d\x4c\x4c\xc8\x7d\xfb\xf6\x81\x99\x89\x05\x3c\x9a\x49\xed\x3d\x09\xcf\x2e\xcb\x62\x59\xd7\x90\x58\xcb\x50\x82\x49\x09\xe7\x5c\x5d\x23\xed\x99\xe7\x24\x21\x1b\x8d\x46\x6d\x4f\x45\xd4\xc9\xbf\x9e\xe8\x84\xe3\x8a\x7b\x84\xa9\x47\xeb\xc7\x32\x12\xde\x4e\xcc\x8e\x1d\x3b\xe8\xf0\xe1\xc3\xa5\x33\x6d\xd3\xae\xad\x9f\x1d\x8d\xfc\x5f\x07\x26\x83\xff\xa5\x3b\xe1\xf9\x5c\x6b\x46\x7b\xb8\x63\xd5\xfd\xe9\x2d\x4b\xde\x9f\xd9\xbc\xec\x3b\xb8\xe2\x2b\x5e\x49\x7a\xcd\x78\x28\x14\x32\xc3\xe1\x30\x4f\x4c\x4c\x10\x97\xbc\xea\x6e\x9a\x1e\x05\x6b\x2b\x8d\x6a\xe3\x2c\x6b\x28\x00\xa8\xab\x1e\x83\xb7\xcf\xfb\x1f\x29\x99\xd3\x51\x23\xd0\xea\x4b\x25\x10\xe0\xd3\x45\x57\x56\x93\x93\xf3\x4d\xc5\x51\x55\x55\x0b\x3e\x9f\x8f\xaf\x5f\xbf\xbe\x9e\x5e\xe2\x54\x66\x19\xf5\xc3\xdd\xc4\x00\x95\x8a\x93\x8e\xe7\x7b\x8e\x69\x6f\x6f\xc7\x63\x8f\x3d\x26\x88\xc8\x17\xc9\xa8\xdb\xbe\x70\xae\xf5\x2f\x23\x59\xd7\x31\x01\x72\x39\xbd\x0d\x09\x24\xbc\x45\xa5\x7f\x70\xc9\x7b\x72\x3e\xa0\x9f\x4d\xfa\xcc\xb9\x50\x28\x54\xcc\x64\x32\xbc\xb4\xb4\x44\x1b\xc9\xab\x16\xe3\x94\x40\x76\x20\xac\xe5\x3c\xd8\x3b\x74\x16\x15\x76\x05\x0b\xca\x40\x5b\x4a\x1b\xa8\x28\x42\x35\xbf\x06\x60\xcf\xcc\x57\x24\x11\xa1\x35\xa5\x6d\xbb\xba\x29\xf7\x72\xc1\xc5\xcb\xd1\x68\xd4\x98\x9b\x9b\xe3\x54\x2a\xe5\xe4\xf4\x5a\xbd\xc4\x79\x75\x72\xfe\xbd\xc0\xd4\x4a\x68\xa7\x7e\x74\x4f\x31\x27\x4e\x9c\x80\xd7\xeb\x75\xa9\x4c\x9b\x3e\x3b\x1a\xf9\x6f\xd1\xac\x76\xa8\xd4\x08\xf5\x97\x51\x0b\x26\x7f\xd7\xaa\x7b\xcf\xa5\xd6\xec\x0b\x45\x85\x53\xad\xad\xad\xc5\x8b\x17\x2f\x3a\x95\xf3\x0d\xd3\xe3\x1c\x42\xdb\xff\x6b\x9e\xc7\xc7\xc7\xa1\xeb\xba\x01\x20\x0b\xc2\xc2\x7b\x5d\xe9\xef\xe9\x0a\x67\x6d\x46\xa9\x74\x8a\xb5\x7c\x58\x0a\x36\xc6\x57\x54\xba\x8f\x5d\x0d\xfd\x8a\x90\x08\x13\x91\x73\x63\x4a\x67\xde\xa8\xb9\xaf\xf7\x7c\xaf\x31\x40\x7d\x89\x79\xd7\x31\x9d\x9d\x9d\x88\x44\x22\x82\x88\x7c\x3d\x09\xcf\xa1\xce\x55\xf7\xf1\x8d\x9c\xda\x1c\x2c\x28\xdb\xb7\xcd\xf9\x3f\x47\x44\x3e\x9f\xcf\xa7\x0e\x0e\x0e\xde\x12\x3d\xa2\x26\x52\xd6\x7b\xce\xe7\xf3\x18\x1d\x1d\x05\x4a\x4e\xea\xf1\x84\xd7\xb8\x78\xa9\x35\xfb\x36\x93\xd3\xf2\x6c\xc9\x1b\xb6\x89\xb4\x48\x65\x54\x61\x62\xcb\x9e\xcf\x6f\x9f\xf3\x3f\x09\x46\x20\x10\x08\xa8\xc7\x8e\x1d\xab\x47\x78\x6d\x21\xea\xd9\x21\xee\x25\x06\x58\xdb\xed\xde\x13\x8c\xbd\x15\x30\x33\xfb\xba\x12\xee\x23\x84\xd2\xc4\x68\xd9\xaf\xdb\x62\x1b\xa7\x88\xb5\xc3\x40\xdc\xf3\x29\x66\x0e\x02\x10\x03\x03\x03\xb7\x44\x4f\xed\x57\xdf\xf0\xf9\xc3\x0f\x3f\x44\xb1\x58\x34\x00\xa4\x41\x98\x39\xdb\x9d\xfa\x6e\x41\xe5\x74\xad\x47\x62\x89\xa9\xe0\xe0\x1f\x86\x13\x43\x0c\xf5\xc8\x78\xf3\x6f\x44\x33\xae\x9d\x44\xe4\xeb\xef\xef\x17\xbb\x77\xef\x76\xd2\xb2\x11\x43\xe2\xdd\xc6\xac\x6b\x4c\xbb\x97\x98\x4d\x9b\x36\xd9\xbb\x80\x78\xfc\xba\xd2\x69\x83\x37\xe2\x6d\xe8\xd3\x95\x76\xb2\xe6\xc1\xac\x7d\x31\x6f\x9a\x9e\xda\x46\x6b\x74\x45\x2e\x97\x93\xa3\xa3\xa3\xa0\xd2\xf6\xbd\xf1\x15\xaf\x31\x72\xbe\x3d\xfd\x9a\xbd\xc3\x96\x53\xdb\x81\xf3\xae\x3c\x2a\xab\x60\x3c\x86\xd2\xfe\x99\x8f\xc2\xff\xc5\x5d\x14\xdd\x44\xe4\x39\x70\xe0\x80\xe8\xed\xed\xad\x43\x63\x39\xdc\xc8\x7a\x7c\xa7\x31\x4e\x0b\xed\x8d\x7e\x77\x57\x31\x6e\xb7\xdb\xde\x58\x41\x2d\xa8\x32\x5f\x52\x5c\x1c\xbb\x86\xd4\x04\x7b\x39\x1c\x81\x90\x75\xc9\x34\x5b\x5b\xfc\x44\x22\x91\x5b\xa2\x47\xd4\x5c\x1b\xbd\x07\x00\xf1\xc1\x07\x1f\xa0\x58\x2c\x1a\xcc\x9c\x64\xf0\xcc\xd9\x9e\xd4\x77\x33\x9a\x19\x07\x2c\x26\xaf\x31\x24\x32\x73\x15\x13\x39\x31\x9b\xd2\xae\xc3\xc7\xaf\x84\xfe\x37\x45\x22\xaa\x28\x8a\x76\xe4\xc8\x11\x04\x83\xc1\x35\x79\xd6\xa3\xe3\x1e\x60\x6a\xdf\xdd\x37\x18\x5d\xd7\xed\x4d\x11\x8c\xd9\x60\x61\x8c\xc1\x65\x9d\xb3\xac\x95\x5a\x83\xe3\xd2\x82\x81\xca\xdf\x44\x24\x77\x1e\x25\xcf\x53\x69\x79\xa1\xde\x34\x3d\xeb\x1a\x12\x51\x63\x5c\x33\x0c\x43\x6a\x9a\x46\x1d\x1d\x1d\x4c\x44\x5c\x54\x98\x8a\x0a\xfb\xfb\xe3\x9e\x5d\xa2\x62\x3e\x5c\x63\x48\x84\x23\xe1\x32\x06\x84\x48\xc6\xb5\x4b\x30\xe5\xa6\x42\x85\x73\x2e\x4d\xd3\x63\xb1\x98\x39\x31\x31\x01\x5d\xd7\xeb\xe6\x5f\xe7\xfe\x47\xde\x90\x18\x08\x04\xa8\xbb\xbb\x9b\x00\xb8\xd3\x9a\xe9\xda\xbc\xe4\x3b\xec\x35\x94\x20\x01\x68\xe4\xb5\x48\x20\xe4\x55\x99\x7c\x75\x70\xf5\x4f\x0a\x2e\xfe\x88\x88\x56\x17\x16\x16\xcc\x3a\x46\xc5\x8f\x6f\x48\x44\x0d\x63\x4d\x4f\x4f\xf3\xd6\xad\x5b\x59\xd3\x34\x66\x66\x2c\xfb\x8b\xb9\xae\xa4\x7b\x67\x73\x5e\x8d\x36\x32\x24\x3a\xb5\xb7\x6a\x0c\x51\x7b\x4a\x3b\x50\x50\xe5\xcc\x7c\xb0\x78\x55\x73\x6b\xc5\xfe\xfe\x7e\xf3\xfc\xf9\xf3\xf5\xf2\x77\x0e\xf1\x9c\x71\x77\x0b\x83\x3a\x75\x65\x5f\xef\x19\x66\x6e\x6e\x4e\xee\xd9\xb3\x87\xac\xf9\x4a\x25\xe9\x35\x79\x70\xc9\xbb\x5f\x61\x52\x4a\xbd\x00\xaa\x57\xd4\x02\x90\x60\x9c\x89\xad\xfe\xfd\xb5\x70\xfe\x45\x10\xa6\x99\x39\xf3\x8d\x6f\x7c\xc3\xbc\x51\x5e\xf5\xe8\xd9\x90\x21\xd1\x71\x2f\x00\x70\xb1\x58\xa4\xbe\xbe\x3e\x93\x88\x4c\x16\xc0\x92\xbf\x98\x1d\x9e\xf7\x1d\x56\x20\xd4\x2a\x66\x01\x6a\x6e\xb0\xc6\xd8\x28\x40\x6a\x4f\xc2\xf3\xc9\x8c\xdb\x9c\x58\x0c\x14\xc7\x35\x4d\x33\x86\x87\x87\xe5\xc4\xc4\x04\xe9\xba\xfe\xcf\x86\xc4\x0d\x60\x62\xb1\x18\x7b\xbd\x5e\x49\x44\x94\xf0\x1a\xa9\x15\x9f\x51\xe8\x58\xd5\x36\x6b\x26\x79\x6c\x77\x1b\xdb\x1e\x54\x50\x39\x7b\x26\xb6\xfa\xdd\x0f\xba\xd2\x7f\x0b\xc2\x15\x66\x5e\x2e\x14\x0a\xc5\xd1\xd1\x51\xb2\x9c\xc6\x6e\x8a\x9e\x8d\x1a\x12\xab\x0c\x6d\x2b\x2b\x2b\xd4\xdd\xdd\xcd\x7e\xbf\x5f\x02\xe0\xac\x26\x8b\x04\x0a\x75\x27\xdc\xc3\xe5\x4d\x07\x2c\x78\x5d\x5d\xae\xc6\xd8\x28\x40\xae\xde\x15\xf7\xd1\x9c\x26\xaf\x2f\x36\x15\x27\x34\x4d\x33\x1c\x92\xe8\x9f\x0d\x89\x37\xc0\xac\xae\xae\x62\x68\x68\x88\x89\xc8\x60\x70\x71\xc5\x67\x2c\x5e\xde\x94\xbb\x92\x77\x49\x83\x00\x61\x08\x2e\xae\x78\x8d\xc5\x8b\xad\xd9\xf7\x5f\x19\x5c\xf9\xdb\xf1\x48\xfe\x79\x10\x3e\x62\xe6\x79\x00\xb9\xb7\xde\x7a\x8b\xad\x25\x3b\x37\x4d\x4f\x43\x8f\xc4\x9a\x67\x38\xdf\x31\x33\xe6\xe6\xe6\x30\x3c\x3c\x6c\x12\x91\x24\x22\x9e\x6f\xd2\x93\x9d\x49\xf7\xb6\xe6\xbc\x1a\x75\xc2\xc9\xc1\x28\x36\xdb\xd4\x8e\xd8\x08\x80\x60\x78\xfa\xe3\xde\xc7\x74\x45\xce\xce\x37\xe9\x63\x9a\xdb\x5d\xdc\xb6\x6d\x9b\x4c\xa5\x52\x48\x24\x12\xce\x01\x69\xed\x70\xcf\x8e\xbb\x9b\x18\xae\x79\x7f\x4f\x31\xa9\x54\x4a\x16\x8b\x45\x74\x77\x77\x1b\x44\x54\x60\x70\x5a\x57\xe5\xd2\x4c\x48\xff\x68\xb4\x3d\xfb\xf6\x87\x5d\xe9\xd7\x46\x3a\x32\xaf\x4c\xb6\x14\x4e\xe7\x5c\xe6\x07\x44\x74\xd5\x62\x9e\xec\xf5\xeb\xd7\x4d\x6b\xb5\xc5\x2d\xd1\xd3\xd0\x23\xb1\xc1\x73\x39\xe1\x7c\x3e\x2f\xdd\x6e\x37\x59\x87\x81\x18\x92\x98\xe7\x9b\xf4\xd4\x96\x45\xdf\x01\x55\x0a\xb7\xfd\xd3\xd2\x52\xa0\x0a\x3d\xb5\x5e\x8b\x4e\x0c\x81\x5c\xbd\x09\xcf\x23\x8a\xa4\xe2\x74\x73\x61\x44\xd5\x5c\x46\x7f\x7f\xbf\xcc\xe5\x72\xbc\xb4\xb4\x84\x06\xf4\xd8\x71\xb5\xcf\x77\x12\xe3\x14\xe7\xb7\x05\x13\x89\x44\x68\xf3\xe6\xcd\xe8\xe9\xe9\x41\xa1\x50\x40\x2e\x97\xbb\xa9\x74\x16\x16\x16\xc8\x34\x4d\xee\xea\xea\x32\x2c\x6f\xc5\x94\xb5\xc2\x64\x9e\x99\xa7\x89\x68\x92\x99\xaf\x59\xae\xaf\x71\x00\xb9\xeb\xd7\xaf\x9b\x2f\xbc\xf0\x02\xac\x89\xd4\x5b\x2a\x97\x93\x81\xea\x49\x9c\x7a\x9c\x58\x7e\x5e\x58\x58\x40\x57\x57\x97\xf4\xfb\xfd\x26\x00\x23\xef\xe2\x42\xd2\x63\xf0\xc0\xb2\xf7\x81\xd2\x16\xc1\xa5\xfc\xc8\xf9\x6b\x8b\x8c\x8a\x3b\x48\x35\x86\x00\x57\x57\xd2\x7d\x34\x94\x57\x43\x53\xa1\xc2\x79\xa9\x52\xae\xb7\xb7\xd7\x0c\x85\x42\x3c\x3d\x3d\x6d\xf7\xd3\xb5\xfa\x9a\x4d\xab\xd3\x86\x73\x3b\x31\xce\xbe\xbf\x1e\xf6\x96\x31\x3e\x9f\x8f\x0e\x1d\x3a\x44\x47\x8f\x1e\x45\x6f\x6f\xaf\xda\xd1\xd1\x21\xb6\x6f\xdf\x8e\x96\x96\x16\x4c\x4e\x4e\x42\x4a\xb9\xe1\xbc\xe6\xe7\xe7\x71\xf6\xec\x59\xb3\xb3\xb3\xd3\x0c\x04\x02\x05\x00\x39\x22\x4a\x5a\x4b\x92\x56\x2c\xa6\xca\x66\xb3\xd9\xe2\xd7\xbe\xf6\x35\xf3\xea\xd5\xab\xe4\x58\x61\x72\x4b\xe5\x5a\xd7\x23\x11\xf5\x39\xb1\x7c\x35\x4d\x93\x17\x17\x17\x69\x70\x70\xd0\x54\x55\xd5\x44\x69\x5d\x51\xca\x6d\xd2\xa6\x8e\x94\xdb\x9a\x6c\xb5\x86\x90\xeb\x78\x2d\xd6\x62\x08\x44\x91\x8c\x6b\x6f\xef\x8a\x67\xd7\x5c\x50\x3f\x97\xd3\x64\x32\x1c\x09\x9b\x5b\xb6\x6c\x91\xc9\x64\x92\x56\x57\x57\xeb\x35\x7c\x23\x23\xe1\xed\xc0\xd4\xd3\x03\x9c\x9f\xc4\x2d\x61\xba\xba\xba\xe8\xe4\xc9\x93\xe8\xec\xec\x54\x09\xe4\xeb\x5e\x75\x0f\x6d\x9f\xf7\x3f\x34\x1d\xd2\xaf\x87\xc3\x61\x19\x8d\x46\xe5\x95\x2b\x57\x6e\x3a\xaf\x4b\x97\x2e\xf1\xdc\xdc\x1c\x0c\xc3\x30\x93\xc9\xa4\xe1\x72\xb9\x8a\xd3\xd3\xd3\xc6\xcc\xcc\x8c\xf9\xe1\x87\x1f\xb2\xe3\x1c\xf8\x8f\x5d\xae\x75\x3d\x12\x1d\xf1\x70\xdc\x3b\xb1\x22\x97\xcb\xa1\x58\x2c\xa2\xa7\xa7\xc7\x24\xa2\x22\x08\xe6\x4c\xb3\xbe\x35\xd6\xea\x8f\x00\x00\x0d\x00\xff\x0d\x00\xf2\xea\x49\x44\x41\x54\x14\xcd\x68\x03\x2d\x39\xb5\xcd\x66\xa2\x32\x45\x75\xbc\x16\xab\xf6\xe1\x71\xe8\x48\x7e\x5d\xed\x1f\x5a\xf4\x7e\x46\x57\xe5\xc2\xa2\xbf\x38\xe5\x72\x6b\xe6\xe6\xcd\x9b\x65\x20\x10\xc0\xb5\x6b\xd7\x6a\x69\xac\xa2\xab\x41\x39\x6e\x15\x53\xfb\xae\x9e\xa4\xde\x30\xc6\xeb\xf5\xd2\xd1\xa3\x47\x71\xf0\xe0\x41\xa1\x69\x9a\x5b\x48\x84\x76\xcf\x06\x7e\xec\xd3\x97\xc2\x7f\xd2\x93\xf0\xfc\xe4\x52\xa0\xf8\x5e\xdc\x5b\x9c\x6b\x6e\x6e\x36\x54\x55\x65\xc7\x51\x03\x1b\xce\x2b\x95\x4a\x61\x72\x72\x12\xe3\xe3\xe3\x38\x7f\xfe\x3c\xc6\xc6\xc6\x30\x39\x39\x09\xeb\x08\xa9\x9b\xa6\xb9\x11\xe6\xa6\x0c\x89\x8e\x67\x72\xfe\x6e\x71\x71\x91\x23\x91\x08\x5a\x5a\x5a\x4c\x00\x86\x14\x28\x4e\x86\xf2\x8b\x3d\x09\xcf\x0e\xbf\xae\x34\xd7\xa3\xa0\x91\xb1\xd1\xea\xdc\x60\xcb\x2b\x55\x8a\xe6\xfe\xb8\xe7\xb3\xd1\xac\xab\x63\xbe\x49\xff\x48\x57\x39\x17\xdd\x14\x35\x77\xef\xde\xcd\x00\xec\xa5\xc5\x4e\x1a\x6b\xef\xeb\x95\xe3\x66\x31\xb7\xcd\x00\xb8\x6f\xdf\x3e\x7a\xf4\xd1\x47\xd1\xda\xda\xaa\x12\xc8\xdf\x9c\x57\x62\x9f\xf9\x28\xf2\x9f\x1f\x9c\x0e\xfc\x47\xa5\xb4\x75\x9d\xbb\x33\xa9\xed\x1b\x8f\xe6\x5e\x2d\xb8\x38\xd1\xd6\xd6\x66\x2c\x2f\x2f\xb3\x75\x7c\xd4\x6d\xa7\xe7\xe3\x62\x6e\xda\x90\x58\xe7\x5e\x00\xe0\xb1\xb1\x31\xde\xb2\x65\x0b\xbb\xdd\x6e\x03\x40\xd1\x50\x58\x9f\x0a\x15\x96\x63\x71\xcf\x6e\x77\x51\xf1\x95\x1d\x9b\x6e\x60\x6c\xac\xc8\x2a\xe7\x29\x5e\xa4\x84\xb3\xae\x07\xb6\x2e\xf8\x4e\xb0\xe0\xe4\x92\xbf\x38\x4d\xaa\x30\xbb\xba\xba\xcc\x2d\x5b\xb6\xa0\x58\x2c\xd2\xf2\xf2\xb2\xf3\x23\x80\xe3\xbe\xb6\x1c\xb7\x8a\x01\xd6\xd6\xd5\x86\x0d\x6e\x43\x43\x43\x74\xe2\xc4\x09\xea\xef\xef\x57\x15\x45\xf1\xb8\xa4\x88\x3c\x30\x1d\xf8\xf1\xcf\x7c\x14\xf9\xfd\x4d\x19\xd7\x51\x01\x52\xec\xcf\x5d\x33\x45\xa4\x25\xab\xb6\x5d\x8e\xe6\x4e\x49\xe2\x5c\x5f\x5f\x9f\xf1\xd1\x47\x1f\x91\x61\x18\x1b\xca\xeb\x6e\x62\x6e\xc9\x90\xe8\xc0\x54\xe9\x0a\xe3\xe3\xe3\xb4\x79\xf3\x66\x53\xd3\x34\x83\x99\xf5\x82\x8b\x73\x53\xa1\xc2\xd2\xe6\x65\xef\x6e\xcd\xde\x1f\x79\x1d\xaf\xc5\x4a\x20\xab\x6b\xab\xbc\x22\x66\x68\x52\xb4\xf4\xad\x78\x4e\x0e\x2c\x7b\xf7\x65\x5d\x72\x7e\xd5\x6b\xac\xb8\xdc\x9a\xd9\xd7\xd7\x27\x77\xef\xde\x0d\x4d\xd3\x68\x7a\x7a\xda\x49\xb3\x5d\xf0\x7b\x66\x48\xdc\xbf\x7f\x3f\x7d\xfa\xd3\x9f\xa6\xcd\x9b\x37\x0b\xb7\xdb\xed\x16\x12\xa1\xcd\x71\xdf\xc3\x8f\x5f\x0c\xff\xb7\x6d\x0b\xfe\x7f\xa7\x49\xd1\x62\x4b\x5d\x67\x55\x34\xe7\xd5\x2d\x00\xd2\x53\x21\xfd\xbc\x10\x42\xef\xe8\xe8\x30\x2f\x5e\xbc\x58\x9b\xdf\x4d\xd3\x73\xbb\x31\xb7\x64\x48\xac\x73\x15\x00\xa8\x58\x2c\xca\xd5\xd5\x55\x8a\xc5\x62\x06\x11\x19\x44\xa4\x67\x35\x99\x9d\x0b\x16\x92\x7d\x71\xef\x0e\xcd\x14\xee\x72\x0e\x00\x1a\x1b\x1b\x2b\xdc\x53\xd6\x89\x2a\x7b\x32\x93\xbf\xa8\xf4\x6f\x59\xf2\x7e\xa1\x3b\xe1\xde\x9e\xd3\xe4\x62\xd2\x6b\x26\x14\x55\x41\x5b\x5b\x1b\xef\xdd\xbb\x97\x23\x91\x08\x09\x21\xc8\xda\x0c\xa0\x1e\xad\x65\x9a\xd7\x29\x4f\x2d\x66\xc3\xc6\xbd\x81\x81\x01\xb2\xba\x2a\xea\xea\xea\x52\x15\x45\xf1\x08\x50\xb0\x6f\xc5\x73\xf0\xb1\x4b\x2d\xff\x79\xdf\x54\xd3\xff\xee\xd7\x95\xcd\xd6\x96\xe5\x35\x99\x33\xac\xfd\x19\xa9\x3d\xe5\xde\xbb\x10\xd0\xcf\x26\xbc\xc6\x54\x20\x10\xd0\x5d\x2e\x17\xa6\xa6\xa6\x6e\x9a\x9e\x3b\x89\x21\xeb\xe1\xb6\x86\x9e\x9e\x1e\x7c\xfa\xd3\x9f\x16\xaa\xaa\x7a\x00\xb4\x32\xf3\xd0\xa6\x8c\xf6\xc9\xa7\x2e\x44\x7f\x21\x98\x57\xc2\x95\x0d\xa9\x4a\xa1\x5c\x71\x55\x55\x59\xea\xc4\x9c\xce\x98\x15\xae\xae\x60\x18\xac\x2f\x06\x8a\xaf\x7d\xd0\x95\xfe\xf3\xb1\x48\xee\x74\x5e\x95\x09\x10\xf2\xcc\x6c\x00\x90\x63\x63\x63\x98\x9d\x9d\xc5\xf4\xf4\x34\x56\x57\x57\xed\x04\xea\xb9\x28\xd4\xc6\xad\x87\xb1\xbf\x42\x01\x00\xcd\xcd\xcd\xe8\xec\xec\x44\x47\x47\x07\x62\xb1\x18\x14\x45\x11\x28\x1d\x78\xa7\x79\x0c\x11\x8e\x2d\x7b\x0e\x3d\x38\xdd\xf4\x3f\x6f\x4a\xbb\x8e\x11\xec\x23\x44\x2b\xdd\x78\x75\xb9\x9c\x81\x90\x76\x1b\x57\xbe\xf1\xc0\xc2\x97\x12\x1e\x63\x84\x88\xb2\xcf\x3f\xff\xbc\x1c\x1f\x1f\x5f\x97\x9e\x8d\xd0\x7c\xbb\x30\x4e\x06\xaa\xfd\x71\xbd\xe7\x7a\x15\x2c\xeb\x60\xe4\xfe\xfd\xfb\xc5\x9e\x3d\x7b\x04\x4a\x0e\x4b\xad\x00\x06\x23\x59\xd7\x91\xcf\x8e\x46\xfe\x4d\x34\xe3\xea\x74\x32\x8b\xfd\x19\x96\xaa\xcf\x62\x19\x46\x79\xfe\xc6\xd9\xa5\x35\xc6\xc0\xc8\x68\xe6\xa5\xab\x91\xfc\x3f\x5c\x6a\xcd\x7e\x6f\xae\x49\x1f\x33\x05\x67\x41\xa5\xdd\xb5\x98\x59\x66\x32\x19\x39\x3b\x3b\x8b\x5c\x2e\x87\xd9\xd9\x59\xa4\xd3\x69\x2c\x2f\x2f\x4b\x45\x51\x44\x9d\xcd\x03\xaa\xca\x65\x63\x5a\x5a\x5a\x44\x30\xf8\xff\xb5\x77\x75\xbd\x6d\x23\x57\xf4\xdc\x21\x45\x51\xb2\x2c\x5b\x8e\x62\xcb\xb2\xd7\x71\xec\x24\x9b\xe6\xab\x4e\xda\x8d\xf7\x61\x37\x09\x36\x41\x80\x6d\x81\xa2\x0f\x7d\xe9\xf3\xfe\x82\xfd\x0f\xfd\x0f\x7d\x2c\xfa\x10\xa0\x2d\x90\xb6\xd8\x00\x05\xda\xa4\x68\x83\x7d\x08\x62\xac\x8d\x38\x71\x16\x1b\x7f\x24\x8e\x6d\xf8\x23\x96\x65\x59\xa6\x29\x4a\xa4\x66\xfa\x40\x52\xa2\x65\x52\x91\x1c\x39\x71\x93\xbd\x80\x40\x89\x73\x34\x43\xce\x5c\xdd\x19\x1e\x52\xf7\xc4\xd1\xd9\xd9\x89\x44\x22\x81\xde\xde\x5e\xb4\xb7\xb7\x33\xc0\xc9\x45\x08\x52\x24\x81\x68\xcf\xb6\x32\x78\xea\x55\xf4\x97\xc3\x1b\x91\x5f\xc7\x8a\xd2\x69\x00\xf2\xeb\x73\x12\xfa\x9e\x17\x16\x12\xc5\x6f\xbe\x39\xbb\xfe\xb5\xc5\xc4\xaa\xae\xeb\xc6\xad\x5b\xb7\x82\x8e\xd5\x77\x2c\x0e\x12\x73\x20\x11\xc8\xad\x7c\x74\x74\x14\x17\x2e\x5c\x60\x00\x54\xd8\xd9\x24\x4e\xb4\x99\xd2\xa5\x9b\x3f\x74\x7d\x75\x6c\x53\x3d\x65\xf7\x1e\x01\xce\x73\x43\xde\x64\x33\x95\xe4\x9d\xce\x5f\xa7\xed\x8e\x75\xa7\x36\x51\x17\x23\x08\xc6\xb6\x5a\x7e\x3c\xdf\x65\xdc\x7b\x99\x28\x7c\xbb\xd6\x5e\x9a\xde\x51\x78\x4e\x40\x94\xdc\x6c\x5d\x80\xad\x2b\xe6\x12\x69\x6b\x6b\x6b\xa8\xf9\xcb\x75\xf5\x58\x88\x90\x4a\xa5\x5c\x46\x9d\x39\x79\x0b\x99\xa3\x0d\x26\x13\x48\x89\x98\x2c\xde\xb3\xad\x9c\x38\xb6\xa9\x7e\x3e\x98\x55\x6f\x74\x18\xf2\x25\x12\xa4\x56\x83\xa5\x3d\x35\xb9\x17\x0a\x15\x45\x1f\xa7\xa8\x3e\x46\x60\x6c\x20\xff\xbb\x07\x83\xf9\xdf\x83\x90\x79\xfe\xfc\xb9\x75\xef\xde\x3d\xef\x0f\xbc\x76\xc0\xbd\xfb\x0f\x14\x43\xa8\xef\x81\xaf\xf3\x44\xd7\x02\x31\xa3\xa3\xa3\xec\xfc\xf9\xf3\x8c\x31\xa6\xc2\x4e\x25\x32\x18\xb2\xe8\xc2\x67\xcf\x3b\x7e\x7b\x7e\x35\xf6\x29\x13\xc4\x04\x76\x5f\x9d\x79\xad\x9a\x62\xd7\xe9\x60\xbf\x15\x53\x00\xc6\x79\xb0\xaa\x54\x94\xc5\x72\x2e\x62\x4e\xad\xc4\x4b\x13\x6b\xed\xa5\xc9\xcd\xa8\x39\x9f\x8b\x58\x99\x32\x13\x46\x99\x50\x02\x81\x7b\xce\xa7\xd6\x8b\x98\xd3\x06\x23\x10\x63\x02\xb2\xc4\x49\x8d\x17\xe5\xae\x84\x2e\x0f\xf6\x6c\x2b\xe7\xd2\x5b\xe1\x4f\x12\x05\xf9\x9c\x6a\xb2\x01\x02\x14\x3b\x5a\xd6\x6a\x41\xef\x3e\x3a\xaf\x03\x35\x82\xb1\x18\xcf\xff\xe3\xcc\xc6\x57\x2f\x8e\x18\xf7\x84\x10\xda\x9d\x3b\x77\xb8\x43\x61\x04\x0d\x3c\x50\x7f\x2c\x5b\x82\xa9\x8d\x40\x7e\xa0\x20\x6b\x04\x03\xc0\xd6\x0e\xbd\x71\xe3\x06\x24\x49\x52\x89\xa8\x13\xc0\x00\x09\x9c\x3e\xb3\xda\xf6\xe5\xe7\x73\x9d\xbf\x52\x3d\x0a\x36\x5e\xe1\xfb\xbd\x6b\xa2\x6a\x58\xdf\x3f\x46\x40\x00\xba\x29\x89\x8c\x1e\x2a\x2f\x6b\x6a\x79\xb5\x20\xf3\x57\x46\x88\x67\x0b\xa1\xf2\x96\x25\x09\xc3\xd1\x49\xe3\x24\x20\xcb\x9c\x54\xd5\x64\x1d\xaa\xc5\x3a\x23\xa6\xd4\x1d\x2b\x4a\xa9\x58\x51\x4a\xcb\x9c\xba\x99\x40\xb4\xda\x07\x3e\xeb\xf1\x1a\x29\xac\x37\xc5\xbc\x4c\x18\x7f\xf9\xdb\xf9\xf5\xaf\x01\x64\x26\x27\x27\xad\xb1\xb1\xb1\x46\xba\xff\x40\x6d\x8f\x6a\x73\x8d\xf9\x79\xa1\xfb\xbe\xb6\xbc\x16\x53\xb1\x85\x85\x05\xdc\xbd\x7b\x97\x5d\xbf\x7e\xdd\x50\x14\x25\x0b\xc0\x12\x04\xe3\x69\x6a\x47\xcb\xb4\x99\xcb\x5f\xcc\x24\x7e\xd3\xad\x85\xfa\x5d\x0a\x11\xa8\x5e\x9b\xed\xfe\xdf\x87\x67\xda\xda\x37\x86\x40\x40\x34\x5c\xa6\x01\xa5\xcc\x06\x12\x46\xc8\x29\xaf\x6f\xde\x75\x9a\x3b\xdb\xb8\x8d\x56\xf7\x91\x83\xd9\x9d\x0a\xf0\x4d\x31\x16\x83\xf5\xa8\x6f\xfb\x5f\x63\xc7\xf2\x7f\xa4\xdd\x51\x3a\x68\xec\x7c\xc7\xe1\x20\x30\x2d\x23\x12\x7d\xf6\x7b\xcb\x58\x3e\x9f\xe7\x8f\x1e\x3d\x12\x27\x4f\x9e\xe4\xe1\x70\xb8\x04\xa0\x00\xc2\xb6\xa6\x58\xd9\x99\x6e\x7d\x4e\xe6\xac\xfd\xa8\xa6\xf4\x4a\x20\xe6\x1e\xc6\xde\xf8\x52\x6d\xa4\xd5\x18\x78\xca\xc8\xe7\x55\x09\x04\x9e\xed\xee\x7a\x5a\x8f\x01\x01\xb9\x88\x99\xb9\xfb\x71\xf6\x4f\x8f\xd3\x3b\x7f\x2d\x4b\x78\x0e\x20\x23\x84\x28\xde\xb9\x73\xc7\xef\x09\x42\x77\xeb\x3b\x06\x07\x81\x69\x29\x91\xe8\xd3\xe0\x9e\xf5\xd2\xd4\xd4\x94\xe8\xea\xea\x12\x89\x44\xa2\x24\x84\x28\x10\x91\x56\x66\xc8\xbf\x4c\x18\x2f\x56\x3b\x8a\x1b\x47\xb5\x50\x5f\xc4\x94\x62\xbb\xd2\xc7\x00\x7b\x7b\x1b\xd5\x2b\xb3\x83\xc7\x38\x65\xb4\x7b\xeb\xb7\x7e\x69\x15\xa6\x2c\x09\xeb\x69\x6a\x67\xec\x9f\xa7\xb3\x7f\xc8\xc4\xcc\x6f\x61\x3f\x00\xb6\x0a\x5b\x52\xa1\xec\x24\x2d\xad\x1d\x03\xbf\x40\x7a\xa0\x98\x96\x12\x89\xf0\x77\x32\x51\x5b\xcf\xfc\xfc\x3c\x15\x8b\x45\xd1\xdf\xdf\x5f\x26\xa2\x02\x80\x1d\x10\xb4\xad\x48\x79\xed\xd9\x51\x7d\xa6\x4c\x90\xbb\x77\x94\x3e\x49\x90\x54\x4b\x24\x7a\x97\xc8\x41\x64\x63\xab\x31\x8d\xaa\x2d\xb7\x0a\xf3\x2a\x66\x2e\xdf\xfd\x38\xfb\xe7\xc7\x7d\xda\xdf\x4b\x12\x7f\x04\x60\x96\x88\xd6\x00\xec\x6c\x6e\x6e\x5a\xb7\x6f\xdf\xf6\xb2\xe6\xb5\x63\x40\x08\x1e\x8b\xff\x0f\x22\x11\x0d\x2e\xc2\x93\xc9\x24\xbb\x79\xf3\x26\x62\xb1\x98\x2c\x84\x50\x9d\x04\x92\xfd\x04\x1a\xe8\x2c\xc8\x3f\xfd\xf4\x65\xfc\x17\x27\xd6\xa3\x67\x64\x01\xd9\x9d\x8a\x6c\xf3\x4e\x3b\xaf\x27\x1b\xdf\x1c\xe3\xb5\xea\x74\xd7\x5a\x8c\xc0\x76\xb8\x9c\xfb\x6e\x20\xff\xdf\xa7\x3d\x3b\xff\x29\x4b\x98\x05\xb0\x00\xe0\x15\x00\x8d\x73\x5e\x7a\xf6\xec\x19\x77\xd4\x9a\x2b\x7d\x88\xf7\x95\x48\x0c\xd8\xfa\x62\xae\x5e\xbd\xca\x4e\x9d\x3a\x65\x73\x2a\x44\x31\xd8\x9c\x51\x3f\x09\x0c\xf6\x6d\x85\x3f\xf9\xf9\x42\xfb\x17\x1f\xe5\xd4\x21\x26\xc0\xdc\x2e\xdf\x1f\xd9\xd8\x1a\x4c\x23\x04\x60\xe3\x18\x01\x3d\xc4\xb5\x27\x69\x6d\x6c\x32\xad\xfd\xbb\x10\xe2\xd3\x02\x62\x81\x6c\x6d\xb1\x1c\x11\x19\xba\xae\x5b\xf7\xef\xdf\xc7\xe2\xe2\x62\x50\xdf\xbf\x9f\x44\x62\x33\x98\xa3\x47\x8f\xe2\xca\x95\x2b\x38\x72\xe4\x08\x13\x42\xa8\xb0\xb5\xae\x92\x44\x94\x76\x1c\xe9\xe2\xa5\xc5\xf6\x6b\x03\xb9\xf0\x90\xc4\xed\xdc\x8e\x6f\x42\x36\x36\x85\xd9\x37\x01\x58\x07\xe3\x44\x9c\xef\x53\x3b\x13\x4f\x7a\xb5\xfb\x9a\x52\x9e\x25\x5b\x83\x63\x15\x40\x96\x88\x74\xd3\x34\x4b\xb3\xb3\xb3\x78\xf0\xe0\x01\x9c\x6c\xb1\x6f\x95\x24\x6c\x04\x43\xa8\xef\x81\x6f\x4c\x24\x36\x58\x0f\x03\xc0\x19\x63\x6c\x64\x64\x04\xe7\xce\x9d\x83\xaa\xaa\x32\x6c\x06\x3b\x0e\x3b\x22\xa5\x49\xa0\x3f\xa9\x85\x7e\x72\x61\x39\xf6\xd9\xf0\x46\xe4\x4c\xc4\x64\x51\x77\xb0\xf7\x4b\x36\x36\x8a\xa9\x44\x93\x26\x09\x40\xda\x55\x2e\xc0\x09\x3c\xd3\x66\xae\x3e\xed\xdd\xf9\x6e\x3a\xa9\x3f\x34\x42\x7c\x1e\x84\x25\x00\xab\x00\xb2\xb0\x75\x29\x4a\x2b\x2b\x2b\xfc\xe1\xc3\x87\x58\x5f\x5f\x7f\x67\x24\x61\x23\x98\xda\x08\x74\x20\x44\xe2\x3e\x8c\x5f\xbb\x76\x8d\x0d\x0f\x0f\x33\x49\x92\x64\x21\x84\x02\x20\x4e\x44\x5d\x42\x88\x6e\x02\xa5\xa3\x26\x1b\x1c\xce\x44\x7e\x76\x7a\xad\x6d\xa4\x47\x53\xd2\x12\xb7\xd7\x49\x95\xc5\x2a\xdc\xc8\x52\xbb\x4c\x45\xd3\x18\xdf\x6b\x87\x26\x49\x42\x5d\xe1\xda\x8b\xae\xc2\xf4\x0f\x3d\xfa\xc4\x72\xbc\xf8\x84\x33\x2c\x3b\x8a\x3f\x19\x21\x44\x0e\xb6\xdc\x42\x29\x9f\xcf\xf3\x89\x89\x09\xcc\xcd\xcd\x05\xde\x5a\x39\x4c\xb6\xf7\x67\x58\x3f\xca\xf8\x85\x35\xbf\xef\xd6\xb3\xd7\x61\x2a\xed\x77\x74\x74\x60\x64\x64\x04\xc3\xc3\xc3\x4c\x96\x65\x19\xf6\x9d\xec\x28\xec\x0c\xed\x49\x00\xdd\xc4\x91\x4a\x14\xe4\xe1\xe3\x1b\x91\x73\xc3\x1b\x91\xd3\xc9\x9d\x50\x2a\x54\x26\xc5\x75\x26\xd7\xea\x45\x8c\x86\x30\xd5\xe5\xd1\xae\xcf\x41\x18\x01\xc1\x75\x85\x6b\x4b\x9d\xc6\xfc\xdc\x91\xc2\xf7\x8b\x89\xe2\x53\x43\xe6\x4b\x20\xac\xc2\x56\xfe\xc9\x02\xc8\x03\xd0\x01\x94\x36\x37\x37\xf9\xe4\xe4\x24\xa6\xa7\xa7\xdf\x0a\x01\xd8\x2a\x4c\xbd\x29\xac\xb6\x82\x66\xdf\x7b\x3f\x37\x8b\xd9\x73\x02\xce\x42\x1b\x64\x4b\x40\xca\xb0\x1d\x29\x06\xdb\x99\xba\x84\x10\x49\x26\xa8\xbb\xbd\x28\x7d\xd4\x9b\x0f\x0f\x0d\x6c\xaa\x27\x52\xdb\x4a\x7f\x87\x21\x77\x4a\xdc\xb9\x13\x0e\xdf\x89\x0b\x00\xf9\xc4\xa0\xbd\x16\x44\x00\xda\xb5\x08\x14\x65\x6e\x64\xda\xcc\x57\xcb\x1d\xc5\xf9\x85\xce\xe2\xec\x7a\xcc\x9c\x2b\xca\x7c\x15\x84\x0c\x6c\x02\x30\x4b\x44\x79\x61\x0b\xf0\x1a\x42\x08\x6b\x7b\x7b\x9b\x8f\x8f\x8f\x63\x66\x66\x26\xe8\xdc\x1b\xe9\x9f\x77\x86\xa9\x17\x81\xfc\xac\x91\x86\x82\xb0\xcd\x62\x7c\xcb\x46\x46\x46\xd8\xd9\xb3\x67\xe1\xa8\x10\xbb\x51\x49\x85\xed\x4c\x71\x87\x0a\x88\x13\xa8\x8b\x09\x74\xb6\x95\xa4\x9e\xe4\x4e\xa8\x3f\xa9\x29\xe9\xa4\x2e\x77\x27\xf4\x50\x32\x5a\x92\x62\x8a\x45\x8a\xcc\x49\xa6\xca\x34\xec\x89\x58\x35\x1e\xe2\xcd\xbc\xc6\x09\xdc\x62\xc2\x32\x42\x5c\xdf\x0e\x97\xf3\x9b\x11\x33\xb3\x1e\x2b\xad\xae\xc7\xcc\xa5\x6c\xd4\x5c\x2c\xc9\x22\x2b\x80\x2c\x08\x39\xe7\x2a\x2a\x2f\x84\xc8\xc3\x96\x15\x30\x84\x10\x96\x65\x59\xd6\xda\xda\x1a\xa6\xa6\xa6\xdc\x8c\xf2\x41\x76\xa8\xa2\x8d\x1f\x86\x7c\x76\xb6\x7a\x81\xdc\x48\x3d\x4d\xb5\xc5\x18\xc3\xc0\xc0\x00\x86\x86\x86\x70\xfc\xf8\x71\x30\xc6\x18\x11\xc9\x8e\xb6\xa7\x22\x84\x88\x12\x51\x14\x76\x94\x8a\x03\x88\x09\x21\x62\x04\x8a\x12\x10\x0b\x95\x29\x16\xb6\x58\x47\x5b\x49\x8a\xab\x26\x8b\x85\x2d\x16\x55\x2d\x16\x0d\x95\x49\x91\x38\xc9\x92\xb0\x6f\xa7\x94\x09\x56\x99\x09\xab\x28\x73\xa3\x28\x73\xc3\x90\xb9\xae\x2b\x3c\x5f\x08\xf1\x7c\x51\xe6\x5b\x16\x13\x1a\x20\x74\xd8\x52\x03\x1a\xec\x29\x49\x83\x3d\x2d\xe9\x00\x0c\xb2\xc5\xed\x4a\x44\xc4\xb3\xd9\x2c\x7f\xf1\xe2\x05\xc6\xc7\xc7\xeb\xad\x35\xeb\xf5\xef\xa1\xc3\x1c\x9a\xcb\xf8\x06\x31\xbe\x27\x38\x34\x34\xc4\x86\x86\x86\x90\x4e\xa7\x11\x0e\x87\x99\x9b\x70\xc9\x33\xdd\xa9\x00\x14\x87\xac\x74\xb7\xae\x98\xac\xe2\x60\x64\x00\xb2\x93\xed\xab\x7a\x25\x55\x7d\x76\xc8\x82\xad\x66\xe3\xbe\x0c\x21\x84\xeb\x20\x06\x80\x12\x11\xb9\x65\x96\x73\xac\x3c\x93\xc9\x70\x57\x2a\xca\xc9\xd0\xef\x3d\x0f\xef\xb4\x1e\x74\xee\x87\x1a\x73\x28\x88\xc4\x56\x61\x5c\x25\xe4\x8b\x17\x2f\xb2\xde\xde\x5e\xa4\x52\x29\x57\x77\xdd\x7d\xf8\xcb\x55\x2f\x76\x1d\xc5\x75\x1c\x2f\x06\x0e\xc6\x4d\xdc\x04\x00\xae\x64\xa4\xdf\xd6\x75\x2e\xce\x39\x87\xa6\x69\x3c\x9b\xcd\x62\x61\x61\x01\x4b\x4b\x4b\x08\x50\x64\x7e\x27\xfd\x73\x10\x98\xc3\x18\x81\xbc\x8e\x1b\x74\x22\x68\x14\xe3\x8a\x88\x5c\xbe\x7c\x99\xf5\xf5\xf5\x81\x88\xe0\xa4\x73\xab\x44\x1a\xf7\xfb\xce\x67\xef\x7e\x38\x4e\x52\x79\x0f\xd8\x3c\x8f\x65\x59\x7c\x6b\x6b\x0b\xb9\x5c\x0e\x9a\xa6\x61\x65\x65\x05\x8b\x8b\x8b\xf5\x8e\xdd\xbb\xff\xbd\xc1\x1c\x2a\x22\xb1\xce\xc1\xfa\xb5\xd9\x32\x8c\x73\x1b\x05\xf1\x78\xdc\x4d\xb3\x57\xb1\x4c\x26\x03\xc3\x30\x00\x00\xd3\xd3\xd3\x15\x31\x3a\x47\x31\x07\xd8\xdb\x0f\x41\xe7\xfc\x5e\x62\x0e\x2d\x91\x18\x50\xb7\x9f\x23\xbe\x0d\xcc\x8f\xd6\x84\xb1\x9a\x6d\xed\x7e\xbf\xb2\xd7\xed\x6f\x06\xd3\x4c\xfb\x6f\x13\x53\xcf\x3e\x64\xcc\x9e\x4e\x0c\xea\xbc\x66\xdf\x37\x52\x67\x10\x26\x08\xeb\x67\xef\x02\xd3\xc8\x31\x7f\x88\x98\xfa\x05\xcd\x54\xd2\x02\xcc\xdb\x68\xa3\x19\x4c\x2d\xf6\x47\x0c\xaa\x97\xb0\xb5\x0b\x4f\xbf\x2f\x35\x8a\xa9\xad\x8f\xef\x13\xe3\xd7\x46\xd0\x22\xef\x6d\x60\x6a\x8f\xb9\xb6\x33\x3f\x48\xcc\xff\x00\xaf\x7b\x44\x0e\x96\x2e\xd3\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe1\xff\xf0\x7b\x3b\x4e\x00\x00") +var _web_uiV1StaticAppleTouchIcon144x144Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x3c\x40\xc3\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x90\x00\x00\x00\x90\x08\x06\x00\x00\x00\xe7\x46\xe2\xb8\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x69\x90\x1c\x47\x76\x26\xf8\x3d\x8f\xc8\xc8\xb3\xb2\xb2\x32\x13\x75\x5f\x59\x28\x14\x0a\x27\x89\xb3\x41\x80\x40\x93\x68\x76\x83\x0d\x92\xad\x6e\xb5\x34\x23\x69\xa6\xa5\xde\x59\x8d\x64\x63\x2b\x8d\x6c\x4c\xbb\xa3\x95\xc9\xd6\xc6\x34\x63\x6b\xda\x31\x4d\x9b\x56\x1a\x69\x65\x52\x6b\xa5\xd6\x31\xad\xab\x4f\xb5\xd8\x64\xf3\x26\x01\x82\x47\x93\xe0\x01\xa0\x0a\xc4\x51\x55\x40\xdd\x57\x56\x56\xde\x19\x19\xe1\x6f\x7f\x64\x44\x66\x64\x56\x66\xa1\x00\xe2\xd2\xb6\xbc\xac\x2c\x22\x3c\xbe\x74\x7f\xee\xfe\xe2\xf9\xf3\xe7\xcf\xdd\x09\x80\x00\x20\xad\x6b\x6d\x90\xd6\x55\xd4\xc4\xd5\x3e\xd7\x62\x36\x92\xce\xad\x62\xd6\x7b\x7f\xb7\x31\xff\x1c\x1c\xe1\x76\x57\xd6\x46\xd2\xfb\xa7\x82\x11\x8e\x77\xa2\x4e\xdc\x8f\x2c\x86\x6a\xc0\x76\x70\x7e\x7d\xb5\x92\xc1\x7e\xe7\x8c\xbf\x1b\x12\xe6\x7e\x94\x3e\xf7\x1b\x4d\xf7\x1b\xe6\x9e\x86\x5a\xe2\xea\x11\x7b\xb7\x30\xf7\x83\x14\xbc\x2f\x31\xb6\x04\x92\x1b\xb8\xd6\x26\x5a\x4f\x32\xd5\xcb\xb4\x9e\x34\x5b\x0f\xe3\x7c\xae\x27\xed\xee\x05\xa6\x11\xb6\x5e\xf8\x51\xc6\xdc\x17\xe1\xbe\xf9\xba\x1c\x98\x5a\xbd\xa0\xf6\xb7\x3f\xb2\x18\x15\x6b\x25\x4c\xbd\x67\x34\xc0\xd4\x72\xe4\x7a\xa3\xb9\x9b\xc1\xd4\xe6\x71\xaf\x31\xf6\xfd\x7a\xdd\xdf\x8f\x24\x86\xea\x44\xde\xae\x50\xaf\xeb\xbb\x6f\x30\xdb\xb6\x6d\x13\x81\x40\x00\x2d\x2d\x2d\x65\x40\x30\x18\x44\x30\x18\xac\xfa\xd1\xd2\xd2\x12\xf2\xf9\x7c\xf9\x79\x75\x75\x15\xc9\x64\x12\xa3\xa3\xa3\xeb\xe5\x77\x5f\x97\xfd\x76\x62\xa8\x4e\xe4\xcd\x48\xa0\x3b\x89\xa9\x27\xe5\xea\x49\x85\xba\x57\x55\x55\x61\x18\x86\xdc\xbb\x77\xaf\x68\x69\x69\x41\x24\x12\x41\x73\x73\x33\x88\x48\x38\xf2\x72\xde\x83\x99\x05\x51\xdd\x6f\xca\xa6\x51\x32\x33\x88\x48\xda\x71\xc5\x62\x51\x66\x32\x19\xac\xac\xac\x20\x1e\x8f\xe3\xdd\x77\xdf\x5d\x4f\x57\x58\xaf\x3c\xff\x24\x31\xb5\x4a\x74\x6d\xb8\xdf\x86\x85\x0d\x31\x2e\x97\x0b\xe1\x70\x18\xb1\x58\x0c\x1d\x1d\x1d\x88\x46\xa3\x20\x22\x61\x31\x45\xa9\xab\x66\xa8\xaa\x24\xcd\x6d\x90\xcf\x53\x54\x42\xc1\xbc\x12\xf5\x18\x22\xec\x36\x44\xc8\xa7\x2b\x21\xcd\x24\xbf\xc2\xa4\x09\x49\x1a\x00\x48\x62\xc3\x14\xac\xe7\x55\xb9\x9a\x77\xc9\x64\xde\x25\x13\x39\x97\x5c\x4a\x6b\x66\x3c\xa7\x99\x89\x82\x22\xb3\xa6\x80\xce\x60\x03\x80\xe1\x60\x2c\xb9\xbc\xbc\x8c\xf1\xf1\x71\xcc\xcc\xcc\x60\x61\x61\x01\x52\xde\xe8\xe3\xfe\xa7\x19\x6e\xa6\x0b\xdb\xa8\x04\x91\x0d\xde\x6d\x14\xd3\x48\xaa\xac\xa1\x83\x88\x44\x4f\x4f\x0f\x06\x07\x07\xd1\xdd\xdd\x0d\x8f\xc7\x63\x4b\x15\x15\x0c\xcd\x25\xc9\x13\xca\xa9\xd1\xd6\x94\x36\x1c\x4d\xbb\x76\x45\xb2\xae\xe1\xe6\xbc\x3a\xe8\x29\x8a\x76\x55\x52\x50\x30\x3c\x25\x3c\x09\x80\x4b\xa9\x32\x50\x92\x42\x6c\xc7\xa0\x54\x4d\x6c\x97\x5d\x4a\x42\xde\x10\x9c\xc8\xb9\xcc\x99\x94\xc7\x9c\x58\xf4\x17\x2f\x2c\x05\x8a\xe7\x17\x02\xfa\xc5\x84\xd7\x88\x1b\x82\xf3\x20\xe8\x00\x0c\x00\x32\x93\xc9\xc8\xf9\xf9\x79\x8c\x8c\x8c\x60\x76\x76\x16\xcc\x7c\xcb\x92\xf5\x7e\xc3\x50\x0d\xb0\xb6\x11\x9d\x0d\xe6\x0c\xb5\x0c\xb0\x9e\xe4\x58\x2f\x9d\x9b\xc1\x94\x43\x38\x1c\xc6\xd0\xd0\x10\xfa\xfb\xfb\xd1\xd4\xd4\x64\x4b\x18\x55\x91\xf0\x85\xb3\xae\xce\xee\x84\xfb\xc1\xde\x15\xcf\x27\x37\xa5\xb5\xbd\xbe\xa2\x18\x24\x86\x0f\x20\x80\x19\x04\x02\x97\xf9\x81\x01\xa2\x12\x7b\x70\xe9\xbe\x1e\x86\x40\x16\x33\x55\x30\x00\x55\xd8\x0a\x5c\x4a\x9e\x90\xce\xba\xe4\x95\xf9\x26\xfd\xec\x64\x28\x7f\x6a\x3a\x54\x38\xbb\xec\x2b\xce\x98\xc4\x79\x94\x24\x94\x91\x4e\xa7\xe5\xd8\xd8\x18\x46\x46\x46\x90\x4c\x26\x37\x52\xdc\xfb\x3a\xdc\x09\x25\xfa\x46\x12\xe4\x46\x18\x27\x13\x95\xdf\x29\x8a\x22\x3a\x3b\x3b\xb1\x77\xef\x5e\x44\xa3\x51\xa1\x28\x8a\x60\x66\x4d\x61\xf2\x6d\x4a\x6b\xfd\x83\x4b\xde\xe3\x03\xcb\xde\xcf\x36\xe7\xd4\xdd\x0a\x23\x04\x26\x87\xe0\xc0\xc7\xbf\x87\xf5\x4c\x8e\x2b\xd6\xc1\x80\xa5\x49\x48\x26\x7c\xc5\xb3\x13\xe1\xfc\xf3\x97\x36\x65\x5f\x58\xf2\x17\xaf\x9b\xc4\x59\x00\xba\x94\x52\xce\xcc\xcc\xc8\x8b\x17\x2f\x62\x62\x62\xa2\xc4\xc0\xd5\x61\xbd\x7a\xb9\x6f\x30\xf7\xbd\x21\x51\x55\x55\xb1\x75\xeb\x56\x3c\xf8\xe0\x83\xf0\xfb\xfd\x76\xf7\xe4\x69\x2a\x28\xad\x43\x8b\xbe\xc7\x86\xe7\x7d\x5f\x0c\x67\x5d\x07\x05\x53\xa0\xd4\x86\xce\x56\xb6\x8b\x58\xea\x90\xa8\x2e\x27\x6c\x04\x53\xf9\xce\xaa\x31\xa8\xc1\x36\xc6\x98\xc4\xe9\x65\x7f\xf1\xed\x8f\x5a\xb3\xdf\xbc\xb4\x29\xfb\x42\xca\x6d\x2e\x80\x90\x07\x60\x2c\x2f\x2f\xcb\xf7\xde\x7b\x0f\x53\x53\x53\xd0\x75\x7d\x4d\x1d\xa0\xb1\x64\xbe\xe7\x98\xfb\x76\x18\xaf\xaa\xaa\xd8\xb6\x6d\x1b\x76\xed\xda\x85\x40\x20\x60\x4b\x9b\x40\x47\x52\x1b\x7a\x60\xa6\xe9\x5f\xf5\xc5\x3d\x9f\xd3\x4c\xea\x2c\x75\x2f\xf5\x1a\xbe\x3a\xdc\x19\x4c\xfd\xb0\x1e\x86\xc1\xd0\x15\x9e\x1a\x0f\xe7\xfe\xe1\x5c\x67\xe6\xaf\x67\x83\x85\x8b\x26\x71\x96\x88\xf4\x6c\x36\x2b\x4f\x9f\x3e\x8d\x89\x89\x89\x8f\xab\x47\xde\x35\x0c\xd5\x00\xd1\x00\xdc\xa8\xab\xd9\xa8\x42\x7d\x33\x18\xf4\xf5\xf5\x89\x03\x07\x0e\x20\x1c\x0e\x0b\x00\x1a\x49\x04\xfa\x57\x3c\x7b\xf7\x4d\x36\xfd\x62\x47\xd2\xfd\x98\xc2\x14\xa8\x53\xd0\x52\xa8\xdf\xee\x1f\x0f\xc3\x28\xf5\x88\xb5\x42\xe9\x63\x62\x4c\xe2\xf4\x4c\x73\xe1\xd9\xb3\xdd\xa9\xaf\x4e\x84\xf3\xef\x33\x21\xcd\xcc\xfa\xf2\xf2\xb2\xfc\xd6\xb7\xbe\xb5\x5e\x7d\xd7\x53\x70\xef\x09\xe6\x4e\x4a\xa0\x5b\x0a\x27\x4f\x9e\x14\x5d\x5d\x5d\x82\x88\x34\x62\xf8\x7a\x57\x3c\xfb\x0f\x5e\x0b\xfe\xbb\x8e\xa4\xf6\x19\x02\x3c\x8d\xbb\x21\x60\x2d\x57\xdc\x2e\x0c\x4a\x8a\x33\x35\xe2\x8c\x5b\xc7\x70\x69\xb4\x97\x9f\x0d\xea\xcf\xbe\xd5\xbf\xfa\x07\x93\xa1\xc2\xfb\x4c\xc8\x32\xb3\x7e\xed\xda\x35\xf9\xdc\x73\xcf\xdd\xd7\xe3\xff\xfb\xc6\x90\xb8\x6f\xdf\x3e\xb1\x73\xe7\x4e\xb8\xdd\x6e\x0d\x0c\x4f\x24\xe3\x1a\x78\x68\x22\xf8\x2b\xb1\xb8\xf7\x27\x14\x26\x5f\x09\x6e\x57\x7a\x85\xf8\x4a\x2c\x70\xa7\x30\x4e\x16\xa8\x27\xbc\x6e\x17\xc6\x24\x4e\x8f\x45\x72\x7f\xf7\x46\xff\xea\x7f\x8f\xfb\x8c\x09\x06\x67\x8b\xc5\xa2\xf1\xde\x7b\xef\xe1\x83\x0f\x3e\x70\x42\xd7\x1b\x76\xdf\x55\xcc\x3d\x37\x24\x6e\xda\xb4\x09\xc7\x8e\x1d\x43\x24\x12\x51\x99\x59\xf3\x1a\x4a\xeb\xfe\xeb\x4d\x3f\xf3\xc0\x4c\xe0\x3f\xb8\xa4\x08\xdb\xb8\x7a\x8d\xed\x7c\xbe\xdb\x18\x3b\xfe\x4e\x60\x8a\x42\x2e\xbc\xdf\x9d\xfe\x9d\x77\xbb\x53\x7f\x53\x70\xc9\x25\x00\xf9\xb9\xb9\x39\xf9\xea\xab\xaf\x62\x75\x75\x15\xf7\x53\x50\x50\x29\x17\xd7\xf9\x77\xc6\xdb\x65\x94\x35\x71\x5c\xf3\x2c\xeb\xdc\xd7\xa6\x23\x01\xf0\xd6\xad\x5b\xe9\xd1\x47\x1f\x45\x53\x53\x93\x06\x46\x53\x2c\xee\x3d\x74\x72\x24\xf2\x7b\x03\x71\xef\xbf\x56\x58\xf8\xca\xa6\x3c\xcb\xb8\x47\x55\xc6\x3d\xa0\x2a\xe6\x0e\x62\x9c\x16\x9f\x46\xe1\x76\x62\x04\xc3\xdf\xb5\xea\x3e\x3e\xb0\xec\xfd\x44\xc2\x57\x1c\x5b\xf5\x98\xcb\x81\xa6\x80\x1c\x1e\x1e\x36\x93\xc9\x24\x56\x56\x56\x24\x2a\xf5\x58\xef\x8a\x75\xde\xdd\x56\x8c\x82\x92\x64\xb0\x4b\x26\x6a\xae\x70\xbc\xb7\x7f\x58\xcf\x5a\xe2\xc4\xd8\xbf\x41\x0d\xb6\x0a\x73\xe2\xc4\x09\xf1\xc0\x03\x0f\x08\x45\x51\xbc\x1e\x53\xb4\x1f\x1b\x6b\xf9\xf7\x47\xc7\x42\xbf\xed\xd7\xc5\x00\x11\x11\xc0\xa0\x72\x63\xda\xa9\x11\x88\x4b\xcf\xb6\xb5\xf8\x6e\x60\xec\xa6\x27\x50\x09\xc3\x8e\x67\xdc\x31\x0c\xf9\x0c\xa5\x67\xcb\x82\xef\xc7\xbc\x86\x50\x67\x83\x85\x4b\x52\xa1\x42\x2c\x16\x93\xa6\x69\x62\x7e\x7e\xde\xae\xdf\x7a\xd7\xf5\xde\xdd\x56\x8c\x2d\x81\x6c\x26\xb0\x19\xc0\xf9\x99\xd4\x93\x46\xa8\xc1\xd5\x8b\x77\x32\x54\x19\xd3\xdc\xdc\x2c\x7e\xfc\xc7\x7f\x9c\x5a\x5b\x5b\x55\x30\xfc\xed\x29\xf7\xee\x27\x46\xa2\xbf\x37\xb0\xec\xf9\x19\x01\xd2\xaa\x94\x50\xb2\x74\x10\x22\x4b\xf1\xb4\x52\xbd\x4d\x18\x2e\x63\xac\x67\x00\x52\x40\x32\x81\xed\x7f\x54\x5a\xd4\xaa\x32\x2a\x25\x41\x54\x89\xb3\xee\x99\x4a\xef\xd8\xce\xfe\x36\x60\x14\x90\xbb\x3d\xa5\x1d\xe9\x4d\x78\x76\x2c\x34\x15\xcf\x65\xdd\x32\xde\xde\xde\x6e\x8c\x8d\x8d\xa1\x50\x28\x34\x92\x18\xb5\xd2\xfe\x8e\x61\x08\x0d\x0c\x78\xb8\x3d\xba\x4f\x55\x88\xc5\x62\x38\x7e\xfc\x38\x14\x45\xd1\x88\x11\xdc\x3e\xe7\x7f\xfc\xe8\x58\xe8\xb7\x3c\x86\xe8\xb4\x31\xb6\x0d\x85\xeb\x8c\x64\xc8\x7a\x5f\xba\xbf\x15\x0c\x50\x14\xac\x67\xdc\x66\x7a\xc5\x6b\xc4\x93\x1e\x23\x91\xf4\x98\x89\xac\x66\x26\x73\x2e\x99\x2d\xa8\x32\x6b\x12\x1b\x52\xc0\x00\x00\x21\xed\xc9\x57\xe1\xf1\x16\x45\xc0\xaf\x2b\xc1\x60\x5e\x0d\x35\xe7\xd4\x70\x28\xaf\x86\xfc\xba\x08\x28\x92\x54\x38\x72\xae\xba\x32\x57\x7f\xcb\x1f\x13\x33\x15\x2a\xfc\xdd\x37\x76\x2f\xfc\x32\x80\xc4\xdb\x6f\xbf\x6d\xd4\x28\xd6\xf7\x24\xa8\x68\x6c\xec\x5b\x6f\xf8\x58\x6f\x44\x55\x0f\x53\x7e\x1f\x8b\xc5\xc4\xa7\x3e\xf5\x29\x21\x84\xd0\x5c\x26\x45\x8f\x8c\x35\xff\x2f\xbb\x66\x03\xff\x5e\x30\x79\xaa\xb5\x02\xe7\x67\x0f\x7b\xda\xc9\xc1\x18\x56\xfc\x06\x30\x12\x8c\xbc\x4b\x66\x17\xfd\xc5\xb9\xe9\x50\xe1\xfa\x5c\xb0\x30\xb1\xec\x2b\xce\xe4\x5d\x72\xc5\x24\xa4\x41\xc8\x02\xc8\x03\xd0\xad\x7f\xa3\x4e\x99\x54\xc7\xbf\x07\x80\x07\x0c\x9f\x22\x11\xf0\xeb\x4a\x24\x9a\x71\x75\x77\x24\xdd\xfd\x5d\xab\xee\xde\x48\xc6\xd5\xaa\x99\xd0\xca\x24\xd8\xf3\x6c\x35\xe5\x73\x14\x60\xc3\x98\x94\xdb\x58\x78\x71\xcb\xca\xb7\xad\x79\x3f\xb8\xdd\x6e\xbb\xfe\x6f\xd5\xde\x76\x5b\x30\x6a\xcd\x4b\x38\x00\xeb\x19\x12\xeb\x11\xde\xd0\xaa\x7c\xf8\xf0\x61\xb1\x63\xc7\x0e\x41\x44\x1e\x77\x91\xda\x4f\x7c\x14\xf9\xcd\xd8\xb2\xe7\xa7\xc0\x10\x55\xee\x37\xe5\x0f\x8f\x51\x96\xe1\x70\x7c\x8b\xf6\xfc\x16\x1a\x63\x00\x20\xa3\x99\xe9\x89\x70\xee\xca\x58\x24\x37\x32\x17\xd4\xaf\x64\x5d\x72\x9e\xc1\x09\x22\x4a\x30\x73\x16\x40\x9a\x88\xca\x8c\xc3\xcc\x06\x11\x49\x66\x96\xd6\xb5\x94\x66\x89\x38\xc1\xcc\x02\x80\x20\x22\x95\x99\x35\x00\x1e\x53\x21\xcf\xaa\xc7\xf0\x25\xbd\x66\x70\x2c\x9a\x0f\x12\x23\x1c\x28\x28\x1d\xdd\x09\xf7\xd0\xc0\xb2\x77\x7b\x4f\xc2\xd3\xef\x36\x84\x07\x5c\xe9\x35\x9d\x43\x91\xaa\x61\xfc\x0d\x30\x45\x21\xf5\x17\x86\x56\xfe\x22\xe1\x35\xae\x5b\xf4\xca\x44\x22\x51\xaf\xaa\x45\x9d\xfb\x7a\x4c\x71\xdb\x30\x4e\x06\xaa\x05\xc8\x3a\xf7\xf5\xe2\xd6\x7d\x76\x30\x8f\x2f\x98\x53\x06\x4e\x8e\x46\xbe\xd2\x96\xd2\x8e\x13\x08\x20\x47\x07\xc3\x6c\x55\xa2\x83\x49\x88\xcb\xf2\x86\x9c\xf1\x16\xcc\xc6\x00\x80\xae\x48\x7d\xaa\xb9\x30\x31\xd2\x9e\x79\xe7\x7a\x4b\xfe\x82\xae\xf0\x0c\x08\x71\x00\x71\x00\x49\x02\xa5\x01\xe4\x89\x68\x8d\xb4\xb1\xfd\x78\x6c\x67\xb2\x5a\xa7\x32\xa7\x13\x9a\xf5\x4e\x05\xa0\x5a\xd2\x40\x03\xe0\x63\x42\x20\xe5\x31\x43\xa3\xed\xd9\x1f\x8e\xb6\x65\xa3\x3e\x5d\xf4\x0c\xc4\xbd\xbb\xb7\xcf\xf9\xf7\xb6\xa5\xb4\x4e\x85\x49\x38\x3f\x0e\xaa\xcb\x3d\x40\x2d\x46\x82\xf1\x56\x5f\xf2\xfb\xd7\x5b\xf2\xa7\x40\x98\x03\x90\x2d\x16\x8b\xf2\xd2\xa5\x4b\x1b\x69\x93\x7a\xf1\xb7\x15\x63\xeb\x40\x77\xc4\x48\xf8\xd0\x43\x0f\x61\xe7\xce\x9d\x82\x88\x7c\xcd\x39\x75\xf0\x73\xe7\xa3\x7f\x18\xce\xaa\x07\xcb\x5d\x8f\x05\x74\x76\x4a\xb5\xb6\x92\xaa\x2f\xb5\x06\x03\x00\x05\xd5\xcc\x8f\xb6\x65\xdf\x3f\xd7\x91\x3e\xb3\xe2\x33\x2e\x73\xa9\x92\x17\x00\x24\x00\x24\x51\xea\xa2\xf2\xb6\x94\xb1\x68\x94\xb3\xb3\xb3\x30\x0c\x03\xf6\xf5\xfc\xf9\xf3\xb2\xb5\xb5\x55\x2c\x2c\x2c\xc8\xe6\xe6\x66\xb1\xba\xba\x2a\x9b\x9b\x9b\x85\xcb\xe5\xc2\xd2\xd2\x92\xdc\xb9\x73\xa7\xf0\xf9\x7c\x88\x44\x22\xf0\xfb\xfd\x08\x87\xc3\x76\xb9\xed\x7f\x0d\x56\x17\xc7\xcc\x41\x22\x8a\x02\x88\x0a\x89\xce\xb6\x94\xb6\x63\xcf\x74\xd3\xc3\xb1\x65\xcf\x90\x4b\x0a\x75\x6d\xb9\xea\x95\xb5\xf4\x7c\x25\x9a\x3d\xfb\xec\xb6\xe5\xdf\x31\x05\xde\x07\x30\x05\x20\xfd\xf2\xcb\x2f\xcb\xcb\x97\x2f\xdb\xf5\xfd\xff\x4f\x43\xe2\xe1\xc3\x87\xb1\x63\xc7\x0e\x01\xc0\x17\xcd\xba\x76\x3e\x75\x7e\xd3\x1f\x34\xe7\xd5\x07\x6f\x54\x69\x76\x1c\xb0\xb6\x32\xed\x38\x06\x23\xe7\x92\xd9\x0b\xed\x99\x77\xde\xef\x4a\xbd\x92\x71\xcb\xab\xcc\x3c\x83\x0a\xe3\xd8\xd2\xc6\x60\x66\x99\xcb\xe5\xe4\xe4\xe4\x24\x66\x67\x67\xb1\xb2\xb2\x82\xc5\xc5\xc5\xdb\x32\x48\xe8\xea\xea\x42\x4b\x4b\x0b\x3a\x3a\x3a\xd0\xda\xda\x6a\x7b\x0b\x38\x99\x29\xc0\xcc\x61\x00\xad\x04\xea\x0e\x67\xd5\x6d\xfb\x27\x83\xc7\x07\x17\xbd\xdb\x35\x29\xb4\x7a\x75\xe0\xfc\x38\x96\x7d\xc5\x99\x6f\x3e\xb0\xf0\x5b\x39\x4d\xbe\xc9\xcc\x13\x00\x92\xa3\xa3\xa3\xc6\xe9\xd3\xa7\x6f\x40\xfa\xdd\x0b\xb5\x6d\xb7\x5e\xd8\xa8\x24\x92\x7b\xf6\xec\x11\x07\x0e\x1c\x10\x00\x7c\xc1\x9c\x32\xf8\xf9\x73\x9b\xbe\xda\x92\x73\xed\x2d\x41\xaa\x47\x45\x25\x22\xd6\x8e\x96\xea\x19\xf7\x18\x0c\x53\xc0\x18\x6d\xcb\x9c\xfd\x61\x4f\xf2\x85\xa4\xc7\x1c\x05\x61\x0a\x25\xc6\x89\x03\xc8\xc2\xd2\x69\x56\x57\x57\xe5\xf8\xf8\x38\xc6\xc6\xc6\xb0\xbc\xbc\xdc\x48\x67\xb3\xcb\x53\x6f\xb2\xf8\x46\x98\xda\x0f\x4f\x76\x76\x76\x8a\x58\x2c\x86\x58\x2c\x06\xaf\xd7\x6b\x3b\xba\x79\x00\x04\x00\x84\x01\xb4\x83\xd1\xdb\x96\xd2\x1e\x38\x74\x2d\xf8\x99\xbe\xb8\x67\x90\x6a\x98\xd4\x2e\x77\x41\xe1\xec\x77\x76\x2f\xfe\xde\x5c\x50\xff\x01\x80\x4b\x00\xe2\xf1\x78\x5c\xff\xf6\xb7\xbf\x0d\xd3\x34\x37\x44\xcf\xdd\xc0\xd0\x0d\x80\xf5\x2a\x11\x35\xef\xaa\xe2\x63\xb1\x98\x38\x7e\xfc\xb8\x50\x14\xc5\x17\xc8\x2b\x03\x3f\x76\x3e\xfa\x07\xd1\x8c\xeb\xf0\x8d\x5c\x20\xd6\x28\xd0\xe0\x8a\xb1\x84\x19\x4c\xc0\x74\xb3\x3e\x71\x7a\x20\xf1\x8f\x73\x4d\xfa\xbb\x20\x5c\xb7\xa4\x4e\x9c\x88\xb2\xcc\xac\x1b\x86\x61\x8c\x8d\x8d\x61\x74\x74\x14\x0b\x0b\x0b\xeb\xe5\x76\x47\xcc\x14\xce\x30\x30\x30\x80\xcd\x9b\x37\xa3\xbf\xbf\xdf\x96\x4a\x36\x23\x45\x01\x74\x0a\x50\xff\xe6\x25\xef\x91\x23\xe3\xcd\x8f\x87\x72\x6a\x94\xca\x2e\x90\x04\x29\x58\xbe\xb8\x65\xe5\xeb\x17\xda\x33\x7f\xcd\xe0\x11\x22\x5a\x48\xa7\xd3\xf9\xa7\x9f\x7e\xfa\xbe\x9b\xca\x70\xb6\x6a\xc3\x51\xd4\x46\x43\x6b\x6b\xab\x78\xea\xa9\xa7\xa0\x28\x8a\x4f\x33\xa8\xf3\x73\xe7\xa3\xbf\xdb\xb5\xea\x7e\xbc\x6a\xf4\xe4\x08\xb5\x23\x91\x7a\x0f\x0c\xa0\xa0\xca\xfc\xdb\xbd\xc9\x97\x3e\xec\x4c\xff\xc0\x50\xf8\x0a\x80\xeb\x00\x96\x50\xea\xaa\xf4\x74\x3a\x6d\x9c\x3b\x77\x0e\xe7\xce\x9d\xab\x47\x7f\x23\xe9\xf2\x71\x31\xeb\x49\xe4\xf2\x35\x10\x08\x60\xfb\xf6\xed\xd8\xb9\x73\x27\x54\x55\xb5\x25\x52\x10\x40\x2b\x18\xbd\x1e\x43\x0c\x1f\x1e\x6f\xfe\xb1\xed\x73\xfe\xfd\x2a\x93\xca\x60\x9c\xef\xc8\xbc\xf6\xd2\xe0\xca\x1f\x72\x49\xef\x99\x91\x52\x66\x5f\x78\xe1\x05\xe9\xf0\x13\xba\x65\x7a\x6e\x37\xe6\xb6\x19\x12\x83\xc1\x20\x9e\x78\xe2\x09\x34\x35\x35\x79\x84\x44\xf4\xd3\x1f\x85\xff\xd3\xf0\x82\xef\xdf\x50\x8d\x0a\x0c\x54\x04\x0d\x88\xcb\xdd\x53\x05\xc3\x55\xdd\xd7\x7c\x93\x7e\xfd\xa5\x2d\x2b\xdf\x98\x0f\xe8\x3f\x24\xa2\x31\x66\x9e\x03\x90\x20\xa2\x7c\x26\x93\x31\xde\x7f\xff\x7d\x7c\xf4\xd1\x47\x30\x0c\xa3\x1e\x5d\x1b\xd1\xed\x3e\x8e\xfe\xb7\xe1\xe0\xf5\x7a\xf1\xc0\x03\x0f\x60\x78\x78\x18\x2e\x97\x4b\x23\x22\x0f\x33\x87\x89\xa8\x13\x8c\xc1\x58\xdc\x73\xf4\xf8\xe5\x96\xcf\x67\x34\x33\xfe\xad\xdd\x8b\xff\xb5\xa0\xc8\xb3\x44\x34\xc1\xcc\xc9\x0f\x3f\xfc\x50\xbe\xf5\xd6\x5b\xb7\x8b\x94\xdb\x1a\xea\xf5\x2b\x1b\x91\x44\x6b\x30\x27\x4f\x9e\x14\xdd\xdd\xdd\x2a\x18\xe1\x4f\x5c\x0b\xfe\xc2\xa1\x6b\xc1\xff\x04\x50\xc3\x06\xb0\x87\xee\xa0\xfa\x5d\x1b\x13\xcb\xf3\xed\x99\xb7\x4f\x0f\x24\xfe\x5e\x57\x78\x04\x84\x09\x58\x52\x47\x4a\x69\x8c\x8c\x8c\xc8\x33\x67\xce\xd4\xb3\x59\x35\xa2\xf1\xbe\xc1\x9c\x38\x71\x42\xf4\xf5\xf5\xd9\xca\x76\x00\x25\xdd\xa8\x3b\x98\x57\xfa\x09\xd0\x57\xbd\xe6\x87\x00\x26\x00\x24\xae\x5d\xbb\x66\xfc\xe0\x07\x3f\xb8\xa1\xde\x79\xaf\xca\x55\xdb\x85\xc1\x01\xa8\xd5\x83\xea\xe9\x46\x12\x00\x8e\x1c\x39\x22\x76\xec\xd8\xa1\x02\x08\xc4\x96\x3c\x9f\x79\x62\x34\xf2\x55\xc5\xa4\x40\x95\x3d\xa5\x76\xfa\x95\x6c\xdb\x4f\x0d\x86\x4a\x86\xb3\xd7\x36\x27\xfe\xf1\x7c\x47\xe6\x69\x09\xbe\x48\x44\x53\xcc\x9c\x00\x90\x5d\x58\x58\x90\x6f\xbd\xf5\x16\xe6\xe6\xe6\x6a\xca\x7a\xdb\xf4\x9a\xf5\x30\x8d\xf4\xc3\x9b\xc6\xc4\x62\x31\x71\xf8\xf0\x61\xf8\xfd\x7e\x95\x99\x7d\x44\x14\x44\x69\xd4\x66\xa0\x24\x61\x93\xe9\x74\x5a\xff\xfa\xd7\xbf\xfe\xb1\xf3\x8a\x44\x22\xc2\x1a\x48\x7c\xac\x74\xea\x61\x6e\x66\x14\x56\x37\x74\x75\x75\x89\x93\x27\x4f\x0a\x22\xf2\x85\xb2\xea\xce\x9f\xfc\xa0\xf5\x7f\xf8\x74\xa5\xdf\xe9\xa9\x5c\x31\x12\x3a\xa6\x7e\xca\x6b\xaf\xaa\x31\x19\x97\x4c\x3e\xbf\x35\xfe\x77\x13\xe1\xfc\xf3\x20\x5c\x02\x30\x03\x20\x69\x18\x86\xfe\xce\x3b\xef\xe0\xc3\x0f\x3f\xfc\x58\x7a\xda\xfd\x16\x8e\x1d\x3b\x26\xb6\x6e\xdd\x5a\x5e\x9a\x84\x52\x03\x19\x85\x42\xc1\xf8\xf3\x3f\xff\xf3\x5b\x2e\xeb\xe1\xc3\x87\x45\x2c\x16\x83\xdb\xed\x86\xa2\x28\x42\x4a\x89\x7c\x3e\x2f\x67\x67\x67\x31\x3a\x3a\x8a\xd9\xd9\xd9\xdb\x52\x8f\x1f\xdb\x90\xf8\x73\x3f\xf7\x73\xc2\xed\x76\x7b\x54\x93\x3a\x9f\x3a\x1f\xfd\x9d\xbe\x84\xe7\x49\xa0\xb1\x91\xb0\x91\x6d\x07\x60\xa4\x35\x33\xf9\xbd\x1d\x4b\x7f\x32\xdf\x54\x3c\x65\x31\xcf\x1c\x33\xa7\x53\xa9\x94\xf1\xea\xab\xaf\xda\x85\xbe\xab\xc3\xd4\x1b\x60\x9c\xe1\x96\x31\x5d\x5d\x5d\xd8\xb6\x6d\x1b\x06\x06\x06\xc0\xcc\x18\x19\x19\xc1\xeb\xaf\xbf\x7e\xd3\xe9\x28\x8a\x82\x87\x1e\x7a\x08\x5b\xb6\x6c\x81\xcb\xe5\xb2\xad\xe4\xaa\xb5\x3a\x57\xa2\x64\x7d\x37\x00\x18\xe3\xe3\xe3\xf2\xf9\xe7\x9f\xff\xd8\xe5\xaa\x55\xa2\x37\x1c\x88\x08\x8f\x3d\xf6\x18\xfa\xfb\xfb\x55\x02\x85\x0f\x5c\x6f\xfa\xf9\xc3\x13\xcd\xbf\x49\x96\xde\x53\x6b\xf8\x73\x9a\xca\xea\x59\xa2\x13\x9e\xe2\xd2\xf7\x76\x2c\xff\xc9\x92\x5f\x3f\x45\x44\x57\x80\x92\xd9\x7e\x6c\x6c\x4c\xbe\xfe\xfa\xeb\xc8\xe5\x72\xce\xc2\xd4\x2b\x60\xa3\xe7\x3b\x81\xb9\x23\xdd\xc1\xc7\xc5\x3c\xf1\xc4\x13\xa2\xab\xab\x4b\x45\xc9\x25\xb8\x7f\xd7\x9c\xff\x8b\x7d\x71\xcf\x31\x4f\x51\x84\x75\x95\x93\x53\xcd\x85\xb7\xcf\x77\xa4\xff\x7e\x36\xa8\x5f\x64\x70\x36\x97\xcb\x19\xdf\xfb\xde\xf7\xb0\xba\xba\xfa\xb1\xbb\xb0\xba\xba\x4d\x9d\x50\xe6\xc0\xcd\x9b\x37\xe3\x53\x9f\xfa\x94\x00\x10\xd8\x94\x76\xed\xfd\xc9\xf7\x5a\xbf\xe9\x92\x14\xaa\x32\x12\x96\x9d\x5e\xb8\x26\x99\xea\xb8\xb4\xdb\x4c\x7c\x77\xe7\xd2\xff\xb3\x14\x28\x9e\x42\xc9\x68\xb6\xc4\xcc\xd9\x8b\x17\x2f\xca\x53\xa7\x4e\xd5\x53\xec\xec\x02\x35\x0a\x3f\x72\x98\xcf\x7e\xf6\xb3\xa2\xa7\xa7\x47\x05\x23\xb0\x7b\x26\xf0\xb9\xc3\x13\xcd\xff\xc5\x6d\x50\x77\xad\x7b\x88\x21\x38\xfe\x41\x67\xfa\x2b\x67\x62\xab\x7f\x2a\x05\x12\x35\x7a\xd6\x4d\xd3\xa3\x38\x80\x04\xc7\x14\x65\x83\x7f\x00\x20\x55\x55\xf1\x99\xcf\x7c\x06\x6e\xb7\xdb\xad\x98\xe8\x38\x71\x31\xf2\x5b\xe1\xbc\x6b\xbb\xed\x98\x50\xf1\xa9\xab\xf5\xb8\xb3\xfd\xee\x2a\x98\xac\x4b\x26\xbf\xb7\x63\xf9\x8f\x16\x03\xc5\x97\x41\xb8\x0c\x60\x81\x99\x73\x67\xce\x9c\x91\xef\xbc\xf3\x4e\x2d\x2d\xbc\x01\x1a\xef\x26\xa6\x76\x7a\xf7\x9e\x60\x76\xee\xdc\x49\x3b\x77\xee\x14\x00\x9a\x86\x17\x7c\x27\x8f\x5f\x6e\xf9\x43\x4d\x8a\x08\xc1\x5e\x94\x5d\xba\x12\x08\x0a\x93\xb7\x23\xa9\x3d\x4a\x40\x62\x2a\x54\xb8\xa0\xb9\x35\x3d\x18\x0c\xf2\xc4\xc4\xc4\x2d\xd1\x63\x4b\x14\x9b\xcb\xe4\x46\xfe\x0f\x1e\x3c\x88\xa6\xa6\x26\x15\x40\x60\xc7\x5c\xe0\xc9\xae\x55\xf7\x23\xa5\x9f\x3b\x16\xd4\xad\x5d\xaa\x8b\x5a\x4c\x51\x91\xf9\xe7\xb7\xc6\xff\x6a\xbe\x49\x7f\x15\x84\x2b\x28\x31\x4f\xfe\x8d\x37\xde\x90\x17\x2e\x5c\xa8\x47\x57\x23\x1a\x7f\x64\x31\x44\x84\x3d\x7b\xf6\x00\x80\xe6\xd5\x45\xf7\xe1\xf1\xe6\xdf\xb0\x57\xb1\xd8\x93\x42\x65\x87\x29\x2b\x10\x48\xec\x99\x6e\xfa\xd5\x68\xc6\xb5\x1d\x80\x67\x60\x60\x40\x34\x35\x35\xdd\x12\x3d\x02\x25\x26\x72\xf6\x79\xc2\x71\x5d\xf3\x1f\x89\x44\xc4\xd6\xad\x5b\xc1\xcc\x1e\x7f\x41\xe9\xfd\xc4\xf5\xe0\xaf\x08\x90\x5a\xf2\x7d\xb4\x74\x1b\xc7\x30\xdd\x19\x9c\x18\x49\x2c\x4f\x0d\x24\xbe\x63\x8d\xb6\xae\xa0\xd4\x6d\xe5\xcf\x9c\x39\x23\xcf\x9f\x3f\x2f\x51\x4d\xd7\xbd\xbe\xaf\xad\xa7\xfb\x06\xd3\xd5\xd5\x65\xef\x4a\xe2\x8b\xc5\x3d\xc7\x9a\x0a\xca\x10\x97\xcd\xb0\xd6\x95\xac\xba\xe7\xd2\x1b\x06\xc3\x65\x52\x78\x68\xc1\xf7\x14\x33\x07\x84\x10\xa2\xaf\xaf\xef\x96\xe8\x71\x4a\x20\x27\x87\x01\xf5\x39\x50\x1e\x38\x70\xa0\x64\x49\x05\x05\xf7\x4f\x36\xfd\x9c\x4f\x17\xbd\x65\x36\x61\xae\x0c\xd3\xd9\xa1\x28\xb3\x63\x15\x84\x55\x88\x73\xed\x99\xd3\xe7\x3b\x32\xdf\x65\xf0\x25\x00\x0b\x52\xca\xac\x43\xf2\x38\xf3\xbf\x1f\xee\x1b\x7d\x85\x8d\xfe\xef\x1a\xa6\xa3\xa3\xc3\xde\x07\xc9\xd7\x9a\xd2\xf6\x10\x43\xa0\xdc\x06\x95\xb6\xb0\x57\xc3\x12\xac\x7b\x06\xba\x92\xee\xfd\x00\x02\x44\xa4\xc6\x62\xb1\x5b\xa2\xa7\x11\x67\xa1\x4e\xbc\x68\x6d\x6d\x15\xdd\xdd\xdd\x82\x99\x3d\x91\xac\x6b\x78\xfb\x9c\xff\x67\xc8\x22\x8e\x18\x95\xee\xcb\xa2\x9e\xca\x0a\x74\x05\x03\x10\xe6\x9a\xf4\xb1\xd7\x07\x12\xff\x83\x09\x97\x88\x68\x8e\x99\xb3\x63\x63\x63\xf2\xfc\xf9\xf3\xa8\x93\xbf\xf3\xb9\x5e\xdc\xdd\xc0\x34\xfa\xcd\x3d\xc7\x74\x76\x76\x02\x96\xbb\xad\x66\x8a\x90\xad\x7b\x56\x06\x30\x80\xcd\x49\xc4\x56\xbc\x85\xf1\x14\x45\x14\xa5\xb9\x39\x21\x84\xb8\x61\x5e\xf5\xe2\x9c\x3e\xd1\xb2\x06\xb4\x26\xfe\xc1\x07\x1f\x14\x44\xa4\x12\x28\xb8\x6f\xb2\xe9\xe7\x34\x93\xc2\x65\x75\xd3\xf2\xac\x23\xdb\xc5\xd4\xf6\xee\xab\xda\x66\x85\x51\x70\x71\xf6\xc5\xa1\x95\x3f\xd7\x15\x39\x02\xd0\x0c\x33\xa7\x27\x27\x27\x8d\x97\x5e\x7a\xe9\x46\xf9\xd7\xbe\xbf\x9b\x18\xb9\x0e\xf6\x5e\x63\x00\x94\xea\x3b\xe5\x36\x12\x4e\xb5\xbf\xac\x40\x3b\x57\xab\x38\x42\x46\x33\x93\x96\xb7\xa5\x93\x41\x6e\x8a\x9e\x0d\x7f\x8d\x91\x48\x44\xf4\xf7\xf7\x0b\x22\xf2\x44\xb2\xea\xd0\xe0\xa2\xf7\x49\x62\x07\x61\x35\x44\xb2\xa3\xff\xb5\xe3\x99\x80\xb7\x7a\x57\xff\x71\xc9\x5f\x7c\x07\xa5\xe9\x89\x64\x2a\x95\x32\x9e\x7d\xf6\x59\xe9\xcc\xab\x86\x8e\x7a\xd7\xfb\x05\x53\x4f\x3f\xb8\xab\x98\x44\x22\x01\x66\x96\xcc\x6c\x4c\xb6\x14\x2e\x98\xc4\x06\x60\xd5\x7f\x59\x8d\xb0\x35\x22\x94\xaf\x0c\xc6\x58\x24\xf7\x3e\x33\x1b\xd6\x8e\x69\x70\xa4\xbb\x61\x7a\xea\x11\x58\xef\x19\x07\x0f\x1e\x04\x4a\x7b\xf3\x04\xf7\x4c\x35\x7d\xa9\x64\xf3\xa9\x30\x8a\x4d\x54\x25\x54\xd8\xdd\xc6\x4c\x37\x17\x2e\x9d\xeb\xcc\x7c\x0f\x84\x31\x00\x71\xd3\x34\xf5\xd7\x5f\x7f\xdd\x99\x9f\xb3\x10\x58\xe7\xf9\x5e\x63\x80\xb5\x5f\xea\x3d\xc1\xac\xac\xac\x80\x88\x24\x11\x65\x67\x82\x85\x91\x6b\x2d\xf9\xf7\xcb\xed\x40\x76\xcd\x57\x66\x01\xec\x16\x4a\x78\x8d\x99\x8b\x6d\xd9\x53\x44\x94\xb6\x76\x4e\xbb\x25\x7a\x04\xaa\xc5\x52\x43\xc5\xad\xab\xab\x0b\x00\x3c\x4d\x05\xa5\x7f\x70\xd1\x77\x12\x28\xeb\xc9\x40\x99\x85\x9c\x8c\xc4\x55\xca\xb3\x49\x6c\x9c\x1a\x58\xfd\x1b\xcb\x9f\x67\x09\x40\xfe\xdc\xb9\x73\x72\x72\x72\x72\x3d\x45\xad\x96\x96\xda\x42\xdc\x2b\x0c\x1a\xdc\xdf\x75\xcc\x87\x1f\x7e\x28\xa5\x94\x06\x80\xac\x14\x98\x7b\x79\xcb\xca\x5f\xae\x78\x0d\xc7\x4c\x73\x85\x6d\xec\x76\x29\xa8\x32\xfb\xc2\xd0\xca\xd7\xf2\x2e\x39\x06\x20\xcd\xcc\xc6\x8b\x2f\xbe\x78\x4b\xf4\xd4\x93\x3a\xce\x7b\x01\x40\x1c\x3e\x7c\x58\x08\x21\x54\x00\x81\x9d\xb3\xfe\xa7\xdc\xa6\x88\xda\x26\xc1\xf5\x8c\x84\xce\xa5\xc2\xa3\xed\x99\xd3\xf3\x41\xfd\x87\x28\x4d\x8e\xa6\x97\x97\x97\x8d\xf7\xdf\x7f\x1f\xa8\x2f\x79\x6a\xc5\xe8\x7a\x8a\xdc\xbd\xc4\xd4\xd2\x7e\x4f\x30\x13\x13\x13\x40\x69\xf1\xc0\x5c\xca\x63\x9e\xfd\xf6\xee\xc5\xaf\x5c\xda\x94\x3b\x6b\x08\x36\xca\x83\x18\x30\x24\x41\x4e\x35\x17\xae\x7c\x7b\xd7\xc2\xef\x4d\x87\x0a\x2f\xa3\xd2\x16\xf2\x56\xe9\x71\x2a\xd1\x4e\x69\x54\x15\x62\xb1\x98\x00\xa0\x69\x06\x45\x87\x17\xfc\x9f\xa3\x7a\x20\x00\x6b\x0c\x89\x96\x5e\x94\x73\xc9\xe4\x0f\x7b\x92\xdf\x45\xc9\x93\x30\x29\xa5\x34\x4e\x9d\x3a\x85\x62\xb1\x08\x34\xfe\xca\x9c\x05\xb8\x5f\x31\x8d\xea\xec\xae\x62\x5e\x78\xe1\x05\xf9\xa5\x2f\x7d\xc9\xf0\x7a\xbd\x49\x00\x13\x29\x8f\x89\x67\xb7\x2d\x2f\x84\xb3\xae\x1d\x1d\xab\xda\x60\x40\x57\x42\x79\x55\x66\xe7\x9b\xf4\xb1\xf9\x26\xfd\x9c\x14\x18\x43\xc9\xdf\x28\x2e\xa5\x74\x3a\xe9\xdf\x34\x3d\xf6\x51\x07\xf5\x40\x02\x28\xf9\xf6\xfa\x7c\x3e\x01\xc0\xd7\xbb\xe2\x39\xd8\x94\x57\x06\x1a\xaf\x9a\xb0\x5d\x33\x50\x36\x24\x12\x11\x46\xda\x33\xa7\x93\x1e\x73\x84\x99\x97\x88\x28\x7b\xe9\xd2\x25\xe9\xf0\x59\x6e\xd4\xc7\xd6\x93\x4c\xb2\xc1\xfd\x9d\xc6\xd4\x86\xf5\xf4\xb5\x7b\x82\xf9\xfe\xf7\xbf\x8f\x27\x9e\x78\x22\xef\x76\xbb\x97\x00\xe8\x0c\xc4\x97\x7c\xfa\xc4\x92\x4f\x0f\x12\x91\x66\x2d\x6b\x4a\x32\x73\x1c\x8c\x25\x94\x56\xaf\xe8\xa7\x4f\x9f\x6e\xd4\x16\x1b\xa2\xa7\xde\xd2\xe6\xaa\xfe\x6e\xfb\xf6\xed\x02\x25\xe5\x39\xb0\x6d\xde\xff\x94\x00\xa9\x65\xf7\x0c\x2e\xa9\x67\xec\x70\xf6\xa9\xf8\xf7\x94\xba\xb3\xbc\x6a\xa6\xdf\xef\x4c\x3f\xcd\xe0\x19\x00\xc9\x62\xb1\x68\xbc\xf6\xda\x6b\x37\x94\x7a\x68\xfc\x35\xd4\xbb\xbf\x1b\x18\x34\xc0\xd4\x0b\x77\x1d\xb3\xbc\xbc\x8c\xa7\x9f\x7e\x5a\x9c\x38\x71\x42\xf7\xfb\xfd\x09\x6b\xa1\xc1\x02\x11\x69\x28\x2d\x82\x94\xcc\xac\x13\x51\x9e\x99\xf3\xf9\x7c\xde\x78\xf3\xcd\x37\x71\xf9\xf2\xe5\x8d\xb4\x45\x43\x7a\x9c\x87\xad\x38\xbf\xbc\x32\xb8\xad\xad\x0d\x00\x3c\x7e\x5d\x74\x76\x27\xdc\x87\x9d\x63\xf3\x92\x9d\xb0\x62\xfb\xb1\xb5\xfd\xb2\x18\x22\xc2\xa5\x4d\xb9\x37\xd3\x6e\xf3\x12\x4a\x8a\xb3\x7e\xe1\xc2\x85\x5a\x42\x6a\xbf\xf8\x46\x05\xaa\xa5\xef\x6e\x62\x1a\xfd\xe6\xbe\xc2\x2c\x2f\x2f\xe3\xeb\x5f\xff\xba\x7c\xf8\xe1\x87\x8d\xbe\xbe\x3e\xc3\xe7\xf3\xe5\x1d\x58\x00\x90\x86\x61\xc8\x4b\x97\x2e\xe1\xf4\xe9\xd3\x4e\xbd\xe7\x96\xe9\x59\xd7\x90\xb8\x73\xe7\x4e\x5b\x79\xf6\xf4\xae\x78\x0e\x56\x0c\x87\x65\xb7\xc2\x2a\x23\x61\xad\x21\xb1\x28\xa4\x7e\xae\x33\xfd\x3c\x08\x73\x60\x64\x75\x5d\x37\xde\x7e\xfb\xed\x5a\x06\x71\x16\xa0\xde\xd7\xdf\x88\xbe\xbb\x89\x59\x8f\xae\xfb\x0e\x73\xfa\xf4\x69\x69\xe9\x35\x32\x16\x8b\x89\xae\xae\x2e\x4c\x4f\x4f\x43\x4a\x89\x6b\xd7\xae\xdd\x48\x0a\xdf\x54\x5e\xeb\x1e\xf7\xd4\xd9\xd9\x59\x5a\x17\xce\x08\x0c\x2e\xf9\x3e\x55\xb6\x2a\x97\xbb\x2c\x38\x26\xf6\xd7\x1a\x12\xe7\x82\xfa\xa5\x25\x7f\x71\x04\xd6\x2a\x8a\x91\x91\x91\xda\x3c\xd6\xe3\xfe\x5a\x4c\x3d\x49\x79\xaf\x31\xce\x70\x57\x31\x03\x03\x03\xc2\xea\x1d\x00\x00\x85\x42\x01\xe3\xe3\xe3\x58\x59\x59\xa9\x4a\x67\x7c\x7c\x5c\x8e\x8f\x8f\x3b\xd3\x11\x00\x10\x08\x04\xb0\x6d\xdb\x36\x74\x74\x74\xc0\xe3\xf1\x94\xd3\x49\x24\x12\x18\x1f\x1f\xc7\xf8\xf8\xb8\xbd\xd2\x65\x5d\x7a\xec\xcd\x15\xd6\x28\xd2\x8a\xa2\xa0\xa7\xa7\x07\x00\x34\x8f\x21\x5a\xdb\x93\xda\x5e\x7b\x56\x17\xa8\x28\xd0\x8d\xbc\x0d\x01\xe0\x42\x5b\xe6\x35\xa6\x92\x5b\x2a\x11\xd9\xeb\xb9\xeb\x29\xed\xb5\xe1\x7e\xc7\x00\x6b\x1b\xf6\x8e\x63\x3c\x1e\x0f\x8e\x1e\x3d\x0a\x6b\x46\xa0\x76\x00\x24\xf7\xed\xdb\x27\x13\x89\x84\x7c\xf3\xcd\x37\x31\x39\x39\x59\x37\x1d\x9f\xcf\x27\xf6\xee\xdd\x8b\x6d\xdb\xb6\x09\x00\x4e\x5f\x6c\x00\x90\xa1\x50\xc8\xe8\xeb\xeb\x33\x0e\x1d\x3a\x24\x2d\x1d\x69\x5d\x9a\x55\x54\x73\x96\x5d\x00\x69\x9a\x26\x14\x45\x51\x01\x78\x5a\xd3\xae\x61\x6f\x51\x44\x9d\x06\xf1\x92\xae\xe3\x98\xac\xab\xba\x63\xe4\x55\x99\xbc\x16\xce\xbf\x85\xd2\xca\xd1\xfc\xcc\xcc\x8c\x4c\x24\x12\xeb\x89\x47\x3b\x6c\x44\x91\xad\x8d\xbf\x23\x18\x22\xb2\x5d\x52\xd6\x13\xfb\xf5\x74\x84\xdb\x8e\x19\x18\x18\xc0\x43\x0f\x3d\x04\xbf\xdf\xaf\x82\xe1\xf1\xe9\x22\xd4\x9d\x70\xef\x0c\xe6\xd5\xf6\xbc\x2a\xd3\xf3\x4d\xfa\xc8\x52\xa0\x38\xd3\xd2\xd2\x92\x3f\x71\xe2\x84\x7e\xe9\xd2\x25\xe9\x18\xac\x94\xd3\x39\x79\xf2\x24\xc2\xe1\xb0\x0a\x86\xa7\x39\xa7\x76\x6e\x5b\xf0\x3d\xde\x9d\x70\x7f\xc2\x25\x45\x20\xa5\x19\x53\xe3\x91\xfc\xcb\x97\x36\x65\x4f\x93\xc7\x9b\xf8\xe4\x27\x3f\xa9\x77\x74\x74\xd4\x4d\xc7\xa6\xd9\xc9\xc5\x55\x5f\xc1\x91\x23\x47\x00\x6b\x96\xb7\x77\xc5\xf3\x09\x02\xa9\xc4\x28\x6d\xbf\x06\x67\xa8\x7e\xb2\x25\xd2\x54\xa8\x30\x92\x73\xc9\x29\x94\x56\x8f\x1a\xe7\xce\x9d\xab\xcd\xc3\x19\x6a\x15\xb6\x1b\xe1\x6e\x1b\xa6\xa5\xa5\x45\xf4\xf6\xf6\xa2\xb3\xb3\x13\x5e\xaf\x17\xd1\x68\xb4\x0c\x5a\x5d\x5d\x85\x75\x16\x98\x98\x9d\x9d\xc5\xf4\xf4\x34\x0a\x85\x42\x83\x24\x1b\xe6\xf5\xb1\x31\x5b\xb6\x6c\xc1\x23\x8f\x3c\x22\x88\x48\xf3\x14\x45\xeb\x27\xae\x05\x7f\x76\xc7\x9c\xff\xdf\xba\x4c\xea\x84\x75\xd2\x10\x13\xb2\x33\xc1\xc2\xf7\x4f\x0d\xac\x7e\x65\x3e\xa8\x8f\x0c\x0f\x0f\x67\x85\x10\x78\xf5\xd5\x57\xc1\xcc\xf0\x7a\xbd\x78\xe2\x89\x27\x10\x0e\x87\x35\x21\x11\xdc\x3f\x19\xfc\xa9\xfd\x93\x4d\xbf\xe6\x32\x45\xa7\xbd\x82\xa6\x0d\x2e\x6c\x5e\xf6\xfe\xc2\xde\xa9\xa6\xd3\xcf\x6f\x8d\xff\xfa\x5c\x50\x3f\x3f\x3c\x3c\x9c\xcd\x66\xb3\xb0\xbc\x43\xd7\x04\xe7\x1e\x89\x84\x52\xc5\x32\x00\x3e\x70\xe0\x00\xf9\x7c\x3e\x17\x80\xd6\x43\x13\xcd\xbf\x10\x2c\x28\xdd\x6b\x99\xa7\x36\x94\x07\xf1\x78\xa7\x27\xf5\x9d\xa5\xa6\xe2\x19\x00\x8b\xf9\x7c\xbe\x60\x71\x31\xd7\xfc\xdb\x79\x56\x12\x68\x8c\xe1\xdb\x89\x19\x1a\x1a\xa2\x47\x1f\x7d\x14\x7b\xf7\xee\x15\x3d\x3d\x3d\x4a\x73\x73\xb3\xea\xf5\x7a\xdd\x04\xb8\x51\x5a\xcd\xa0\x79\x3c\x1e\xb5\xa9\xa9\x49\x69\x6d\x6d\x15\x03\x03\x03\x3c\x3c\x3c\xcc\x3e\x9f\x0f\x53\x53\x53\xb2\x4e\x9a\x8d\xf2\xfa\x58\x98\xe6\xe6\x66\x3c\xf6\xd8\x63\x70\xb9\x5c\x6e\xaf\x2e\xba\x7f\xec\x7c\xf4\xf7\x07\x97\xbc\xff\x56\x61\x11\x24\x10\xc1\xb2\xb5\x11\xc8\xd5\x54\x50\xb7\x6f\x59\xf2\x3d\xbe\x10\xd0\xcf\xae\x7a\xcc\xc5\x48\x34\x52\x34\x0c\x83\xe7\xe7\xe7\x71\xec\xd8\x31\x58\x0e\xf7\xcd\x87\xae\x35\xff\xfc\x27\xae\x05\x7f\x4b\x65\xd1\x0c\x58\xd6\xbb\x4a\x3a\xe4\x2d\x2a\x7d\x9b\x97\xbd\x8f\x8e\x87\x73\xaf\xe6\x34\xb9\xda\xd6\xd6\x66\x5c\xbf\x7e\x9d\xb3\xd9\x2c\x6a\x69\x6e\x68\x48\x6c\x6e\x6e\x06\x33\x6b\x6e\x53\x84\x22\x19\xd7\x50\x85\x35\x2a\xa1\x91\x21\xd1\x10\x9c\x9f\x6e\x2e\x7c\xc0\xcc\x49\x22\xd2\xa7\xa6\xa6\xec\x74\xeb\x85\x9b\xd1\x0b\xea\x29\xb6\x37\x85\xe9\xe8\xe8\xc0\xb1\x63\xc7\x10\x0c\x06\x05\x00\x8d\x00\x8f\x3b\x65\xb6\x07\x56\xcc\x07\x7d\xab\x72\x87\x5a\x90\xdd\xc2\x84\x8f\x05\x74\x53\xa5\x78\xbe\x49\x7c\x94\x09\x29\xef\x67\x42\xca\x15\xb7\xdb\x9d\xde\xb5\x6b\x97\xbe\x7d\xfb\x76\xe3\xec\xd9\xb3\xb8\x70\xe1\x02\x74\x5d\xdf\x48\xb9\x6e\x19\xb3\x6f\xdf\x3e\x78\x3c\x1e\x8d\x18\xe1\x4f\x5e\x0d\xfd\x5a\x7b\x4a\x7b\xdc\x1e\xfa\xb2\x35\x0a\xb6\x9d\xf6\x40\x80\xdb\xa0\xee\x4f\x5f\x0a\xff\xee\xdf\x3e\xb8\xf0\xd3\x29\xb7\x71\x65\xdf\xbe\x7d\x59\x21\x04\x06\x06\x06\x04\x00\x5f\x67\x52\xdb\xbf\x6f\xaa\xe9\xd7\x08\x50\x2b\x33\x64\x6b\xd3\xf1\x16\xc5\xc0\x23\x57\x5a\xfe\x8f\xef\xec\x5a\xfc\x65\x26\xd2\x8f\x1e\x3d\xaa\x7f\xfb\xdb\xdf\x5e\x43\x73\x43\x43\xa2\xcb\xe5\x12\xcc\xac\x45\x32\xae\x7e\xcd\xa4\x50\xd9\x48\x68\xbb\xba\xad\x63\x48\x8c\xfb\x8c\xa9\x94\xdb\xbc\x8e\xd2\x76\x2b\x72\x7c\x7c\x1c\x75\xf2\xb1\x89\xb9\x91\x6e\xb2\x9e\x4e\xb4\x61\x8c\x10\x42\x7c\xe2\x13\x9f\x80\xb5\x5b\x9a\x46\x8c\x40\xf3\x82\x71\x70\xd3\x44\xf1\x7f\xf2\xad\x9a\x8f\x90\x44\x08\x80\x70\xce\x5b\x33\x00\xcc\x11\x00\xe4\x75\x2f\x9d\x8f\x77\xb9\xfe\x7a\xb9\xd7\xf5\x1d\x68\x62\x61\xff\xfe\xfd\x7a\x2c\x16\x33\xac\x33\x2d\x6e\xa6\x5c\x1b\xc6\x04\x83\x41\x11\x8b\xc5\x04\x33\x7b\xda\x53\xee\xdd\x83\x8b\xbe\x7f\x61\x59\x4b\x2a\x3b\xfc\x59\x5b\x05\x33\x55\x24\x49\xa0\xa0\x0c\xef\x9a\x0d\xfc\xf4\x99\xfe\xc4\xef\xa8\xaa\xaa\x1f\x38\x70\xc0\x40\x69\x7d\x58\x70\xf7\x4c\xe0\x5f\x29\x12\xc1\x8d\xa4\xd3\xb5\xea\x3e\xde\x9a\xd6\x76\xce\x36\x15\x12\xe1\x70\xd8\x08\x06\x83\x32\x99\x4c\x56\xd1\x5c\x1e\xd6\x39\xef\x77\xed\xda\x65\x1f\x15\xa9\x45\x33\xae\x41\x62\x12\x64\x33\x0f\x5b\xb9\x94\xa7\xba\xd6\x7a\x24\xce\x35\x15\x2e\xb1\x40\xd2\xb2\x7a\xca\xf1\xf1\x71\xe7\x10\xd2\x99\x67\x3d\x1a\x50\xe7\xbe\x16\x77\xd3\x98\x47\x1e\x79\x04\xbb\x76\xed\x12\x44\xe4\xf3\x64\xe4\xd0\xc0\xbb\xb9\xdf\xed\x7f\x2f\xff\xcd\xc0\x8a\xf1\xe3\x42\x72\x98\x00\x61\x7b\x4c\xda\xa1\xb2\x77\x33\x3c\xee\x1c\xef\x6f\xbf\xa2\x7f\x65\xe8\x4c\xf6\xbb\x2d\x33\xc6\x49\x02\x82\x91\x48\x44\xfb\xf2\x97\xbf\xbc\xa6\xfe\xd6\xa1\xe7\xa6\x30\x7d\x7d\x7d\x50\x14\x45\x00\xf0\xf5\xc7\x3d\x8f\x2a\xd2\x5a\x2e\x7e\x23\x6f\x43\x10\x06\x97\xbc\x9f\x21\x50\x10\x15\x53\x8d\x2a\x40\xc1\xce\x55\xf7\x7e\xe2\x8d\x79\x2d\x0a\x26\x5f\xe7\xaa\xfb\x00\x00\x8f\xa2\x28\xb6\xdf\x74\x15\x8d\xce\xaf\x40\xda\xf7\x9b\x36\x6d\xb2\xf7\x05\xf4\x44\x33\xae\x2d\x76\xe2\x95\xfa\x65\x54\x2c\x86\x76\x9a\x96\x71\x91\x18\x73\x41\xfd\x22\x80\x24\x33\x1b\xd6\xae\xea\xce\xf4\xed\xff\xda\xbc\x9d\xd7\x7a\x71\x12\x0d\xa4\xe5\x8d\x30\xc7\x8f\x1f\x17\x83\x83\x83\x2a\x98\x83\xcd\x8b\xe6\xb1\xc1\xb7\x72\xdf\x6c\x5a\x32\x7f\x8a\x18\x9a\xd3\x04\x51\x2e\x9b\xa3\x48\x76\xb4\x2d\x6d\xb5\x3c\xef\xec\x3d\x97\xff\xf3\xae\x91\xc2\xaf\x0a\x89\xa8\xa6\x69\x9e\x2f\x7f\xf9\xcb\xa2\xbd\xbd\x7d\x23\xf4\xc8\x9b\xc1\x74\x74\x74\x00\xa5\xa1\xb6\xaf\x39\xaf\x0e\x96\xdb\xba\xec\x6d\x88\x6a\x6f\xc3\xb2\x4d\x0e\xf0\xeb\x4a\xb7\x5a\xf2\xd9\xb2\x87\xe8\xaa\xcb\xa4\xa0\xcb\xa4\x10\x36\x98\x0e\x01\xf0\x14\x45\x3b\x11\x79\x00\x08\x4d\x2b\x6f\xaa\x56\xa6\xb1\xee\x17\x61\x1d\x85\xad\x82\xe1\x69\xc9\xba\xfa\x6d\x2e\x2d\x4f\x59\x90\x95\x83\xd3\x28\x64\x61\x24\xc1\x58\xf2\x17\xaf\x32\x73\x9e\x88\x0c\xc7\x26\x08\xb5\x92\xa6\x96\x89\xea\x61\x1a\x5d\x37\x8c\x39\x72\xe4\x88\x18\x1c\x1c\x14\xcc\x1c\x68\x5a\x32\x1f\xee\xfb\x20\xf7\xff\xba\x0a\x3c\x50\xb6\x7d\x3a\x96\xbc\x94\x74\x00\xbb\x3b\xa6\xaa\x06\xb1\x15\x40\x06\x40\xcc\x9e\xe8\xf5\xe2\x7f\xec\x1a\x2d\xfc\x2a\x49\x0e\x6b\x9a\xa6\x7d\xf2\x93\x9f\x84\xdb\xed\x6e\x44\xc7\x8d\x68\xae\x8b\xf1\x7a\xbd\x60\x66\xc1\xcc\x2a\x97\x75\x96\x52\xe7\xba\x9e\xb7\x21\x00\x18\x42\xea\x92\x58\xb5\x7e\x2f\x98\x19\x45\xa5\xe4\x0b\xb4\xd1\x74\x18\x40\xd2\x63\xc4\xed\xdf\x3b\x56\xd9\x94\xe9\xad\x6b\x48\x0c\x04\x02\x60\x66\xe1\x92\xc2\xd7\x54\x50\x5a\xed\xa4\x89\xea\x6d\x82\x59\x6d\x48\x2c\xa8\x32\x99\x76\x9b\x73\xd6\x36\xba\xd2\xb2\x8c\xde\xa8\x6b\xaa\x0d\xb7\x05\xd3\xdd\xdd\x2d\xec\x7d\x1a\xbd\x69\xb9\xbd\xef\xc3\xfc\x7f\x57\x0c\xb4\x56\x0e\xf5\x72\x92\x5e\xcb\x30\x0e\xc6\x2a\xef\x22\x52\x61\x2e\x22\x16\x91\xc9\xe2\x2f\xe9\x5e\x9a\x9f\x1f\xd0\xfe\x34\x18\x0c\x26\x8e\x1c\x39\x62\xbc\xf4\xd2\x4b\x4e\x12\xd6\x28\xf1\x2d\x2d\x2d\xe8\xe9\xe9\x11\x96\x83\x9e\x00\x50\xde\xec\xf3\xca\x95\x2b\xc8\xe7\xf3\x55\xe5\xb0\x24\x83\x5c\x08\xe8\x13\xdb\xe6\x7d\x15\xf9\x48\x95\xed\xd4\x2b\x5a\x9b\x45\x1e\x18\x71\x9f\x31\x23\x05\x0c\xab\x13\x96\x00\x24\x03\xf9\xeb\x2d\x85\xf3\xbb\x66\x5d\xfd\xd5\x5e\x8b\xf5\xd3\x31\x85\xcc\xcf\x05\xf5\x71\x22\xaa\xdd\x3f\xbb\xb1\x21\xb1\xa9\xa9\x49\xa8\xaa\x2a\x88\x48\xa8\x92\x02\x6e\x43\x84\xab\x8c\x87\x37\x30\x24\x66\x34\x33\x5e\x50\x65\x02\xa5\xad\x74\x9d\xcb\x74\xea\x85\x3b\x66\x48\x54\x55\x15\x07\x0e\x1c\x00\x00\x8d\x24\x47\xbb\x46\x0b\xbf\xa6\xe8\xdc\x5b\x91\x38\x35\x9f\x02\xd9\x3d\x98\x33\xde\x39\xb6\x04\x4a\xdb\x0e\xdb\xa2\x88\x40\x80\xda\x76\x55\xff\xb5\xd4\x26\xf5\xed\x5c\x50\x39\x1b\x8b\xc5\xd2\x9d\x9d\x9d\x98\x99\x99\x59\x53\xd9\xc1\x60\x10\x0f\x3f\xfc\x30\xda\xdb\xdb\x85\xaa\xaa\x02\x35\x5b\x2c\xc7\x62\x31\xb9\x7f\xff\x7e\x63\x74\x74\x14\x6f\xbd\xf5\x96\x04\x80\xd9\xd9\x59\xb4\xb5\xb5\x49\x00\xfa\x78\x24\xf7\xde\xa1\x6b\xcd\x69\xb7\x51\x3a\xda\xd3\xa6\xac\x3c\xa0\x41\xf5\xc6\x5c\xe3\xe1\xdc\xfb\x28\x39\x99\xd9\x3b\x6f\x19\x00\xd2\xe7\x3a\xd2\x2f\x0e\x2f\xf8\x1e\x73\x99\xe4\xb9\x51\x3a\x93\xa1\xc2\xf9\xb8\xaf\x38\x66\xa5\x23\xcf\x9e\x3d\xbb\xa6\x5c\x6b\x94\x68\xaf\xd7\x0b\x45\x51\x00\x40\xf5\xe9\x22\xa4\x99\xc2\x57\xf6\x37\x74\x28\x69\x8d\x3c\x12\x53\x6e\x73\x41\x96\x76\x80\x71\x33\x5a\xe4\x00\x00\x20\x00\x49\x44\x41\x54\x37\x8a\xc5\x62\xbd\xee\xa9\xde\xbf\x13\xb3\x1e\x16\x35\xd8\x86\x98\x58\x2c\x86\x4d\x9b\x36\x09\x00\xbe\xe6\x39\xe3\x91\xc0\xb2\xf9\x78\x95\x19\xa2\x2c\x51\xac\x2a\x77\x74\xcf\xb5\x18\xe7\x66\x9f\xe5\x40\xa5\x5f\x2a\x26\x42\xed\x97\x0a\xbf\x02\xc9\x21\x45\x51\x54\xcb\x77\xbc\x8a\xa6\xfe\xfe\x7e\x7c\xfe\xf3\x9f\x47\x77\x77\xb7\xa6\x2a\x6a\x60\x53\xca\x35\xfc\x89\x6b\xc1\x9f\x3d\x71\x31\xfc\x9b\x8f\x7d\xd4\xf2\xeb\x0f\x4e\x05\x7e\xa2\x39\xa7\xf6\x6b\x9a\x16\x78\xe0\x81\x07\xd4\x9f\xf8\x89\x9f\x10\x6d\x6d\x6d\xc2\x92\xde\x06\x80\xf4\xaa\xc7\xbc\xf2\x5e\x57\xea\x59\x3b\xf3\x7a\xcb\x96\xed\x37\x71\x9f\x31\x35\xda\x9e\x7d\x19\xa5\x6d\x8e\x6d\xe9\x61\x00\x48\x2e\x06\x8a\xe7\xdf\xec\x4b\x7e\x87\x01\xb9\x5e\x3a\x69\xcd\x8c\xbf\xba\x39\xf1\x97\x52\x60\x01\x40\xbe\x58\x2c\x4a\x97\xcb\xb5\xa6\xae\xd7\x78\x24\x5a\xce\x45\x02\x80\xea\x36\x44\x50\x30\x34\xbb\xf6\x36\x62\x48\x4c\xbb\xcd\x25\x50\x69\xa7\x54\xcb\xe3\xd0\x0e\xb7\x2a\x6d\x6e\x09\x63\x75\x5d\x1a\x24\x87\xa2\xd7\x8a\x5f\x22\xeb\x8b\xaf\x98\x21\xe0\x10\x3e\xce\x6e\x78\x2d\xa6\xfc\x86\xaa\xaf\x36\xae\x69\xd9\x3c\xee\x4b\xca\x9d\xd9\x90\x92\x88\x44\x22\x46\x73\x73\xb3\xb4\x76\xbc\x40\x5f\x5f\x9f\x78\xec\xb1\xc7\x84\x10\x42\x73\x17\x45\xeb\x27\xaf\x86\x7e\x79\xcb\xa2\xf7\x67\x55\x49\xd1\xca\x2e\x25\x2c\x0f\x5d\xe3\xa9\xf7\xba\x52\x5f\x79\xa7\x37\xf9\x77\xe1\x70\x38\xf1\xd9\xcf\x7e\x56\x7f\xe5\x95\x57\xa0\xeb\xba\xd4\x34\x2d\x0b\xc2\xdc\x3b\xbd\xc9\xbf\x6f\x2a\x28\xed\xdb\xe7\xfc\x87\x09\xa5\x91\xb1\xd3\xf3\x93\xc1\x48\xba\xcd\xa5\x1f\x0c\x2f\xff\x51\x5e\x95\x63\xb0\x06\x32\x57\xae\x5c\x41\x2c\x16\x33\x54\x55\x4d\x83\x70\xfd\xbd\xee\xd4\xdf\x33\xb1\x7a\xf0\x5a\xf0\xa4\xc7\x28\x09\x08\x3b\x1d\x06\x63\xbe\x49\x9f\x78\x71\x68\xe5\x2f\x12\x3e\xe3\x7d\x58\xfe\xeb\x97\x2e\x5d\xaa\xf5\x20\x15\x00\xa4\xf3\xb8\x27\x00\xe0\x9d\x3b\x77\x8a\x9e\x9e\x1e\x05\x80\x3f\x92\x75\x3d\xb0\x6d\xde\x77\x12\xd6\x31\x32\x55\x5f\x70\x55\x95\x57\x44\xe1\x44\x24\xf7\xc6\x64\x73\xfe\x34\x11\xc5\x33\x99\x8c\x71\xe1\xc2\x05\xe7\xf8\xa0\xf6\x1f\x0d\xe2\xb9\x86\xae\x7a\xf1\x0d\x31\xc1\x60\x50\x1c\x3c\x78\x50\x10\x91\xd7\x93\x92\x0f\xb6\x5f\xd5\xff\x03\x31\x5c\x25\x05\x98\xac\x8a\xb2\xe4\x27\x3b\x86\x1c\xb0\x95\xe4\x6a\x8c\x33\x8b\x6a\xb1\x6f\xa7\x01\xcd\x74\x21\x9e\x8a\x28\x3f\xb4\x1c\xb9\xe4\xd4\xd4\x14\xb9\x5c\x2e\x7a\xe2\x89\x27\xe0\x72\xb9\xdc\x1e\x43\x74\x3e\x75\x21\xfa\x3b\x03\xcb\xde\x2f\x0b\x16\xbe\x32\xc9\xa5\xe1\x1d\xa9\x92\x9a\xbb\x57\xdd\x9f\xf6\xeb\x8a\x36\x1e\xce\xbf\x27\x14\xa1\x87\xc3\x61\xf3\xea\xd5\xab\x68\x6f\x6f\x97\xcc\x6c\x4a\x82\x71\x2d\x9c\x9f\x4c\xf8\x8c\x5c\x73\x5e\x8d\xba\x8b\xc2\x2b\x00\xc1\x28\xad\xf1\x1a\x6d\xcb\xfe\xf0\xc5\xad\x2b\x7f\x16\xf7\x15\xdf\x02\x30\x0e\x60\x75\x69\x69\xc9\x78\xe6\x99\x67\x60\x9a\x26\xba\xbb\xbb\x4d\x66\x2e\x32\x50\x98\x0b\x16\x67\xae\x6c\xca\x5e\xc9\x68\x32\x57\x50\x65\x21\xe5\x31\x93\x93\x2d\x85\x2b\x3f\xec\x4d\xbd\x78\x26\x96\xfc\x9b\x94\xdb\x78\xc7\x4a\x23\x6e\x18\x86\xfe\xf2\xcb\x2f\xdb\x27\x4a\x57\x55\xc8\x1a\x43\xe2\xf9\xf3\xe7\xe5\x43\x0f\x3d\x04\x22\x52\xbd\x45\x11\x84\xdd\x2d\x6c\xc4\x90\x08\x46\xce\x25\x93\x28\xe9\x3f\xf6\x99\x56\xeb\xe9\x40\xb5\x92\xc3\x19\x6e\xd9\x90\x68\x19\xbb\x54\x30\x7c\x81\x15\x73\x3f\x49\xf8\xec\x1e\x7e\xcd\x76\x33\x95\xe1\x58\xb9\xf7\xaf\xc5\x38\x8a\x5c\x11\xf2\xec\x30\x6d\x00\x68\x5a\x36\x0f\x11\x10\x04\x51\xbc\xbd\xbd\xdd\x00\x20\x0f\x1f\x3e\x2c\xbc\x5e\xaf\xca\xcc\xc1\x4f\x5c\x6f\xfe\xc5\xae\x55\xf7\xe7\x2a\x06\xbc\xb5\x86\x3b\x06\xd4\xed\x73\xfe\x5f\x9a\x69\x2e\x9c\x1b\x69\xcf\x7e\x27\x1c\x0e\x1b\x57\xaf\x5e\x95\x33\x33\x33\xb2\xb3\xb3\x33\xcd\xcc\x53\x26\xb1\x71\xb1\x35\x1b\xbf\xbc\x29\xfb\x7a\x53\x41\xed\xf1\xea\x22\x68\x28\xac\xaf\x7a\x8c\x59\x5d\xe1\x29\x06\x5f\x07\x30\x45\x44\x09\x29\xa5\x7e\xea\xd4\x29\x00\xa5\xd5\x1b\xd6\x9c\x5f\x96\x99\x67\x18\xac\xaf\x7a\xcd\x85\x77\x7a\x52\x1f\xa2\xb4\x6b\xac\x00\x90\xb7\xce\x14\x99\x03\x97\x36\x6d\x37\x4d\x33\xff\xdc\x73\xcf\x21\x95\x4a\xd5\x1b\x35\xaf\xf5\x48\xdc\xb7\x6f\x9f\x3d\x0b\x2d\x54\x93\xfc\xe5\xc5\x83\xf6\x57\xea\x30\xb6\xd5\x7a\x24\x32\x01\x05\x55\xa6\x1d\x47\x0a\xa0\x36\xfd\x06\x8d\x0f\x07\xa6\x11\xe3\x88\x9a\xdf\x35\xc4\x58\x1f\x80\x00\xb3\xc7\xbb\x6a\xee\xaa\x30\x80\xa3\x9b\xaa\x08\x5d\xfb\xa5\x35\xf0\x5a\x8b\x71\x46\x97\x31\x54\x99\x10\x02\x00\x2d\x2b\x07\x94\x22\x42\xa6\x06\x6d\xd3\xa6\x4d\x79\x00\xe8\xed\xed\x05\x33\x6b\xfe\xa2\xd2\xb9\x63\xd6\xff\x65\x62\xaa\x5e\x0a\x45\xb6\x04\xb4\x72\x23\x80\x18\xea\x9e\xa9\xa6\x5f\xfc\x68\x53\xee\xb4\xa9\x70\x7e\x68\x68\x28\xff\xcd\x6f\x7e\x13\x8f\x3f\xfe\xb8\xd1\xd9\xd9\x69\xeb\x34\x49\x03\x3c\x95\xf0\x1a\xc1\x84\xb7\xa4\x86\x58\x87\xc8\x24\x88\x28\x01\x94\x0e\xed\x7d\xf5\xd5\x57\xb1\xb4\xb4\x54\xae\xfb\x67\x9f\x7d\x16\x8f\x3e\xfa\xa8\x11\x8b\xc5\xd2\x28\x7d\xe4\x09\x06\x4f\x59\x6e\xaf\x02\x80\x01\x46\x9e\x99\xb3\x44\x94\x37\x0c\x43\x7f\xee\xb9\xe7\x30\x3d\x3d\x8d\x9a\x50\x6e\x8b\x35\x1e\x89\x8e\x93\x69\x84\x60\x2a\xeb\x3f\x95\x43\xdb\x50\xfe\xfa\xaa\x99\xaa\xc4\x45\x92\xb8\x60\x9d\x7a\x03\x67\xba\x58\x2b\x69\xea\xd9\x82\x6e\x64\x48\xac\x0d\x75\x31\xdd\xdd\xdd\xb6\x92\xe7\x71\xe5\xb9\x1d\x55\x52\xc5\xd1\x57\x01\x8e\xf8\xc6\x98\x8a\xc9\xdf\xa1\x6f\xd8\xcf\x16\x03\x08\x13\x01\x55\x97\x51\x53\x53\x54\x00\xe2\x8b\x5f\xfc\x22\xbc\x5e\xaf\x00\xe0\xeb\x4a\xb8\x0f\x6a\x26\x45\x4b\xd5\x65\x31\x6b\x83\xe5\xc6\x20\xa0\x25\xeb\xda\x19\xca\xa9\x03\xcb\x81\xe2\x42\x20\x10\xd0\x0d\xc3\x30\xfe\xf1\x1f\xff\x11\x8f\x3c\xf2\x88\x31\x34\x34\x94\x06\x90\x25\xa2\x38\x4a\x93\xbe\x02\x80\xb4\x86\xda\x06\x00\x23\x99\x4c\x1a\xaf\xbd\xf6\x9a\x73\x34\x28\x01\xc0\x30\x0c\xf9\xfc\xf3\xcf\x63\xf3\xe6\xcd\x78\xf0\xc1\x07\xf3\x91\x48\x44\x27\xa2\x24\x2a\x4a\xb1\x24\x22\x29\xa5\x34\xa6\xa6\xa6\xf0\xcc\x33\xcf\xdc\xc8\x70\xbb\xd6\x23\xd1\xb9\x6b\xaa\x60\x88\x8a\x88\x47\xc5\x34\xd2\xd0\x23\x91\x21\x09\xe5\xa3\x93\x6a\x32\xaf\x27\x69\xd6\x93\x32\xb5\x98\x5a\x49\xd6\x10\x63\x1f\xd3\x04\x40\x53\x4c\x0e\x94\x49\x2d\xaf\xd3\x77\x68\xc6\x8e\x9d\xf1\x1b\x62\x2a\xc5\xb3\xa2\x2b\x8c\x54\x56\xa8\x19\xaa\x30\x11\xb0\x3e\x40\x84\xc3\x61\xd8\xd3\x41\x81\x82\xd2\x57\x1e\x62\x33\x59\xa7\x54\x95\x3b\x4c\x38\xd9\x96\xc1\x50\x18\xbe\x80\x2e\x3a\x97\x98\x35\x21\x04\xac\x5d\x56\xf1\xca\x2b\xaf\xe0\xca\x95\x2b\x32\x16\x8b\xc9\x58\x2c\x66\xb8\xdd\xee\xbc\x83\x42\xb9\xbc\xbc\x8c\xd1\xd1\x51\x5c\xbe\x7c\x19\x86\x61\x34\xac\xbb\xab\x57\xaf\x62\x7c\x7c\x1c\x52\x4a\x63\xef\xde\xbd\x65\xcf\x46\xd3\x34\x31\x33\x33\x83\xeb\xd7\xaf\x23\x99\x4c\xa2\xc1\xef\xab\x7a\x93\x46\x1e\x89\xb6\xd5\x51\x54\x34\x81\x8d\x18\x12\xcb\x0d\xeb\x64\xc4\x1b\x19\xfc\xee\x88\x21\x91\x99\x05\x01\x82\x89\xe4\x7a\x46\xc2\x4a\x41\x1a\x63\x1a\x18\x12\x4b\x7a\x4c\xa5\x07\x92\x25\xdd\xbb\x6a\x6f\x6c\xc1\xcc\xaa\x14\x10\x1b\x31\xdc\x39\xac\xc1\xb2\xa8\x30\x6c\xaf\xc3\xe5\xe5\x65\xc3\x2e\xdf\xd4\xd4\x14\xa6\xa6\xa6\x60\xe9\x36\x46\x77\x77\xb7\xb0\xdc\x4b\x6a\xeb\xa0\x5e\x9d\x95\x1b\x5f\xca\xd2\x4c\xc4\xd9\xb3\x67\x9d\xf1\x37\x9d\x4e\xbd\xf3\xc2\x04\x50\x62\x00\x49\x65\x23\x94\xa5\xe8\xc1\x39\x60\x29\xc7\x3b\x47\x66\x82\x4b\x27\xea\xd5\x6c\x2e\x55\x4f\x72\xd4\xbe\xdb\x08\xa6\x51\x9a\x6b\x9e\xc9\xea\x77\x0c\x8d\xd2\x4e\x69\xc3\xd6\x3b\xe6\x0a\xae\x6a\xbf\xf3\x8d\x60\x6c\x25\x98\x2a\x76\x47\x16\x30\x4c\x17\x65\xed\xb2\x5b\x7a\xa4\x24\x22\x39\xdf\xa4\x8f\x33\x20\x05\x48\x54\xce\xc9\x5b\x2b\x81\xec\xfa\xcc\xb9\xcc\x44\xc2\x6b\xc4\xed\xdf\xf7\xf6\xf6\x8a\xeb\xd7\xaf\x57\xd5\x8f\xb5\x27\x10\x66\x67\x67\x6d\x1a\x85\x25\xf5\x1b\xd5\x21\xea\xd5\x73\x7b\x7b\xbb\x70\x4e\xc1\xac\xae\xae\xc2\xf2\x1c\xdd\x50\x3a\xf5\x4e\x2c\x2c\x37\xbe\x2c\x2f\x8d\xb5\x2a\xca\xa1\x23\x70\x59\x09\xe4\x2a\x8e\x52\x24\xdc\x76\x81\xea\xa5\xdd\x80\x18\xe7\x75\x3d\x3b\xcf\x7a\xa3\xb6\x7a\x4c\xa8\x17\xfc\x62\xa6\xdc\x48\xb6\x1d\xab\x8a\x61\xec\x06\x5d\x1f\xe3\x14\x58\x65\x89\xe1\xc0\x14\x35\x8a\x1b\x1a\xa5\x01\x18\x44\x04\x5d\xd7\xa1\x69\x9a\x64\x66\x7d\xbe\x49\x1f\x5b\x0c\x14\xaf\xb4\xa6\xb4\x21\xd4\x49\xd3\xb9\x03\x9d\xb5\x6b\xc6\x3b\x59\x97\x5c\x22\x22\x9d\x99\x91\xc9\x64\x9c\xe5\xc3\x23\x8f\x3c\x22\xda\xdb\xdb\x6d\x9f\x26\xc1\xcc\x48\xa5\x52\x98\x9b\x9b\x13\xaf\xbc\xf2\x4a\xa3\x41\x48\x55\x3d\x3d\xfc\xf0\xc3\x62\x68\x68\x48\x28\x8a\x22\xec\xb6\xb2\x75\xd7\x85\x85\x05\xbc\xf7\xde\x7b\xf6\x0a\x8e\x75\xd3\x29\x3b\x53\x3b\x1b\xc0\x9e\x7f\x29\x0a\xce\x95\x2a\xad\x62\x8d\xb5\x75\x04\xe7\x01\x2a\x0e\x83\x18\xdc\x86\x08\x60\x7d\x69\xb1\x11\x09\x54\x1b\x6e\xc4\x3c\x55\x98\x78\x3c\x2e\x42\xa1\x90\x04\x91\x9e\x69\x51\x46\x01\x48\xe6\xd2\xd1\x44\x25\xce\x80\xa5\xfc\x56\xee\xcb\x8a\x72\x3d\x4c\xb9\x8c\x76\xb7\x55\x1e\x8b\x97\x31\xd9\x66\x75\x8c\x45\xc9\x7d\x17\x80\xfc\xda\xd7\xbe\x26\x7f\xfe\xe7\x7f\x1e\x42\x88\x3c\x03\x4b\xa7\x06\x12\x7f\xf7\xb9\x0b\xd1\xff\xd5\x65\x0a\x0f\x6a\x42\xa5\xb7\x27\x24\xdd\xc6\xd2\xdb\xbd\xc9\x6f\x83\x4a\xeb\xe8\xb2\xd9\xac\x8c\xc7\xe3\xd0\x34\x0d\x47\x8f\x1e\x15\xfd\xfd\xfd\x42\x51\x14\x15\x0c\x55\x48\xa8\x82\x49\x95\x04\x19\x6c\x0a\xea\xc1\x60\xd0\x18\x1a\x1a\x32\xa6\xa7\xa7\xe5\xd3\x4f\x3f\x5d\xb7\xce\xb6\x6d\xdb\x86\x43\x87\x0e\x09\x97\xcb\xa5\x82\xe1\xf1\x16\x45\xa0\x39\xaf\x46\x35\x83\x3c\x49\x8f\x19\x4f\x7a\x8c\x78\xeb\xa6\xd6\xfc\x89\x13\x27\xf4\xe9\xe9\x69\x34\x4a\xc7\x0e\x6b\x74\x20\x87\x13\xb9\xcc\xb9\xcc\x34\xec\x2a\xa4\x8a\xdd\xc2\x2a\xab\xa5\x3b\x57\x86\xba\x00\xc1\x57\x54\x82\x96\xf2\xe8\xcc\xa7\x9e\x04\x5a\xef\x5a\xdb\x17\xd7\xfb\x7d\x43\xcc\xca\xca\x0a\xac\xa5\xbc\xd9\x4c\x48\x19\x29\xba\x29\xae\x15\x38\x5a\x56\x92\xcb\xe5\x70\x2e\x8a\x74\x48\xa2\x1a\x8c\x03\x51\xc6\x94\x7f\x60\xc5\xaf\xb6\xa9\x6f\x33\x90\x46\xc9\x85\x05\x44\x24\x26\x26\x26\x10\x8b\xc5\xf2\x00\x16\xa6\x42\x85\xd7\x5f\x18\x8a\xb7\x1e\xbf\xdc\xf2\xaf\xdd\x86\xe2\x2b\xdb\x90\xac\xa3\xac\x00\x60\xd5\x63\x2c\x3d\xbb\x2d\xfe\xc7\xab\x1e\xe3\x3c\x18\x09\x22\xd2\x47\x46\x46\xa0\xaa\x2a\x1e\x7f\xfc\x71\xb4\xb5\xb5\xa9\x04\xf2\xb5\xa6\x5c\xfd\xbb\x66\x03\x5f\xec\x58\xd5\x0e\xba\x4d\x11\xd6\x15\x4e\xce\x37\xe9\x67\x2f\xb4\x67\xbe\x39\xdd\x5c\xb8\xd8\xd9\xd9\x99\xfd\xd9\x9f\xfd\x59\xe3\xe9\xa7\x9f\xc6\xf2\xf2\x72\xb9\x7e\x86\x87\x87\xf1\xf0\xc3\x0f\x0b\x00\x1e\x7f\x41\x69\x3f\x78\x3d\xf8\xa5\x2d\x8b\xde\x7f\xe1\x29\x8a\x7e\x02\x54\x93\x90\x58\x0c\xe8\x67\xde\xe9\x4d\xfd\xc1\xd5\x48\xee\x9d\xce\xce\xce\x74\xbd\x74\x9c\x6d\xe1\xf4\x89\x66\x00\xe8\xe8\xe8\xa0\xce\xce\x4e\x01\xc0\xe7\x2d\x2a\x7d\xdb\xe7\xfd\x9f\x15\xd6\xe6\xe1\xf6\x87\x57\x9e\x33\xa9\xa3\x8b\xae\x7a\x8c\x6b\x63\xd1\xfc\xcb\x20\x24\x13\x89\x84\x61\x39\x93\x39\xf3\x20\xab\xf1\xb9\xc1\x3f\x35\xc0\xd1\x46\x31\xb3\xb3\xb3\xbc\x7f\xff\x7e\x02\x20\x58\xc0\xeb\x2a\x70\xbf\x2f\x21\x87\x2a\xfc\xc0\x96\x03\x1c\xec\x02\x39\x58\x64\x2d\xa6\xe4\x2b\xcc\x65\x1b\x50\x55\x3c\x33\x74\x9f\x98\x9b\x19\xf6\x7c\x8d\x55\xba\x4a\x44\xc9\xf1\xf1\x71\xf3\xfa\xf5\xeb\x72\x6c\x6c\x8c\x1f\x7c\xf0\x41\xa9\x28\x8a\x09\x82\xb1\xec\x33\x16\xc7\x22\xb9\x29\x97\x29\x7c\x5e\x43\xf8\x04\x43\x98\x0a\xcc\x94\xc7\x5c\xb9\xd0\x9e\x79\xfb\x85\xa1\x95\x3f\x5b\xf1\x19\x6f\x12\xd1\x18\x11\xad\xe4\x72\x39\xfd\x07\x3f\xf8\x81\x7c\xf2\xc9\x27\xa9\xbd\xbd\x5d\xa5\xd2\xbe\x94\x3f\xf5\xe9\x4b\xe1\x3f\xee\x48\x6a\x27\xfd\x45\x75\xb3\x66\x8a\x4e\x5f\x51\x89\x45\x33\xda\xe1\xad\x8b\xbe\x9f\xf0\xeb\x42\x9d\x0c\x15\x46\x14\x4d\xd5\x63\xb1\x98\x69\x1d\x0d\xc1\xbd\xbd\xbd\xf4\xe8\xa3\x8f\x0a\x21\x84\x27\x9c\x75\x0d\x7d\xe1\xdc\xa6\x3f\xed\x5b\xf1\xfc\x8c\x66\x8a\x68\x49\x59\x27\xa1\x80\x7c\x4d\x05\x75\xeb\xe0\x92\xf7\x0b\x9a\xa4\xfc\x54\x4b\xe1\xa2\xea\x52\x8b\xd1\x68\xd4\xbc\x78\xf1\x62\xdd\x36\xb3\xa7\x32\xd8\xbe\xfa\x7c\x3e\xb2\xfc\x67\xbd\xaa\x49\x9d\xbb\x66\xfd\x4f\x29\x4c\x2a\xb1\x73\x2e\xac\xf2\x85\x56\x0d\x68\x98\x91\x77\xc9\xf8\xc5\xb6\xec\xb3\x20\x24\x3c\x1e\x4f\xf1\xc3\x0f\x3f\x64\x47\x1e\xf6\x8f\xab\xf4\x6e\x67\xfe\x8e\x77\xb5\xbf\x73\xfe\xe6\x86\x98\xcd\x9b\x37\x97\x76\x2f\x25\x52\x0b\x7e\x61\x86\x67\x8c\xa3\xc2\x84\xbb\x32\x44\x27\x07\x1b\x52\x75\xca\x35\x98\xd2\xe7\x62\xdb\xc1\x2a\xd7\x52\x1d\x10\xe6\x07\xdd\xdf\x4a\x45\x94\x97\x89\x68\x86\x99\xb3\xdf\xf9\xce\x77\x4c\x9b\x2e\x29\x25\x75\x77\x77\x9b\x00\x0a\x0c\xce\xe6\x35\x5e\x1a\x8b\xe4\x46\x2e\x74\x64\xce\x8e\xb4\x67\xce\x7e\xd0\x95\x3e\x75\xb6\x3b\xfd\xec\x44\x38\xff\x4a\x51\xe5\x73\x0c\x9e\x20\xa2\xb8\x94\xb2\x70\xea\xd4\x29\x1e\x1c\x1c\xa4\x2d\x5b\xb6\x08\x66\x6e\xde\x3d\x1b\xf8\xfc\xb1\xab\xa1\xff\x5b\x65\x11\x22\x54\x14\x7b\xfb\x2a\x98\x3c\x6d\x29\xed\x61\x8f\x21\xe4\xb5\x70\xfe\x7d\xd5\xe5\x2a\xb4\xb4\xb4\xf0\xd8\xd8\x18\x3f\xf9\xe4\x93\xe4\x76\xbb\xdd\x2e\x83\x3a\x9e\x1a\x89\xfe\xfe\xa6\x8c\x76\x84\xac\x6e\x64\x4d\x3a\x20\xad\x3d\xa9\x1d\xcd\xbb\xe4\xc4\x5c\x53\xe1\x4a\x20\x10\x28\x98\xa6\x89\xb9\xb9\x39\x67\x7d\x0b\x00\xbc\xc6\x88\x97\x4a\xa5\xec\x7b\x23\xe7\x32\x93\xba\xc2\xa5\xad\xab\xaa\x64\xb7\xcd\x30\xa8\xfa\x7a\x41\x84\xa6\x82\xd2\xaa\x48\xf2\xd9\xdd\x98\xb5\x7b\x63\xa3\xa9\x88\xf5\x94\xe3\x1b\xe9\x45\xeb\x62\xae\x5c\xb9\x02\x94\x8e\xbf\x4c\xe8\x5e\x1a\x99\x1b\xd4\xfe\x81\x09\xb2\xa4\xfc\x5b\xce\x51\x16\xfd\xa5\x6e\x9b\xcb\x67\x98\xd5\x62\x9c\x4a\x75\xed\x81\x8a\xd9\x90\xb8\xb2\xd4\xeb\x7a\x86\x88\x16\x98\x39\x6b\x79\x60\x96\xcb\xf3\xc1\x07\x1f\xc8\x77\xdf\x7d\x57\x5a\xd6\xdd\x39\x66\xbe\x08\xc2\xdb\x05\x45\xbe\x92\xf4\x9a\x4f\x27\xdd\xc6\x33\x86\xc2\xaf\x31\xf8\x1d\x66\xbe\x42\x44\x0b\xa6\x69\xe6\x5f\x7e\xf9\x65\x39\x33\x33\x83\x9d\x3b\x77\x82\x99\x3d\x4d\xba\xda\x7b\x68\xa2\xf9\x37\x04\xa8\xac\x43\x95\x4d\x51\x65\x05\x1c\x20\x90\xd8\x39\x1b\xf8\xa5\x9e\x15\xf7\x61\x66\xf6\xc5\x62\x31\xf1\xc5\x2f\x7e\x51\xf8\xfd\x7e\xc1\xcc\xbe\x6d\x0b\xbe\x27\xdb\x52\xda\xb1\xaa\x76\xac\x93\x8e\x00\x69\x07\xaf\x05\x7f\xbd\xa9\xa0\xf6\x33\xb3\x67\xcf\x9e\x3d\xb6\x61\xb4\x8a\x5f\x6c\x0b\x64\xbd\x20\x0d\xc1\xd9\xbc\xcb\x4c\x96\x33\x5a\xa7\x25\xed\xe0\xd3\x95\x56\x4f\x69\x0e\x4d\xf5\x7a\xbd\x42\x5a\x06\x87\x9a\xbc\xea\x29\xd9\x37\xa2\x47\xdc\x0c\xe6\xfc\xf9\xf3\xc8\xe7\xf3\x06\x11\xa5\x41\x34\xb3\xdc\xeb\x7a\x3a\xd1\xa1\xbe\x53\xe2\x18\xcb\x12\x6c\x7d\x14\x55\x56\x61\xb6\x1c\x55\x9c\x18\x38\xf4\xe9\x8a\x29\x08\x45\x0f\xc5\xaf\xef\xf4\xfc\x19\x2b\x34\xc6\xcc\x71\x00\xba\x65\x57\x71\xd2\x23\xde\x7d\xf7\x5d\x9c\x3e\x7d\x5a\xa6\xd3\xe9\x3c\x80\x84\x75\x54\xe7\x15\x66\xbe\x08\xe0\x22\x80\x31\x00\x33\x44\x94\x88\xc7\xe3\xfa\x0f\x7e\xf0\x03\x79\xf5\xea\x55\xd9\xd3\xd3\x03\xcb\x77\xc8\x17\x5b\xf6\x1c\xf7\x15\x45\x3f\x50\x1a\xac\x94\xcd\x07\x15\xdb\x51\x59\xa0\x2a\x4c\xbe\x1d\xf3\xfe\x9f\x44\x69\x8e\x4b\xb5\x8c\x9a\x2a\x80\xe0\xd0\x82\xef\x29\x94\xcf\x33\x59\x3f\x1d\x5f\x51\xf4\xc6\xe2\x9e\x63\x00\x7c\xaa\xaa\x0a\x6b\xa5\xb2\xb3\x0d\xd6\x7a\x24\x2e\x2c\x2c\xa0\x50\x28\x48\x4d\xd3\x0c\x53\x50\x36\xe9\x31\x17\xc2\x59\x0c\x60\x43\x86\x44\x86\xcb\xa4\x40\x73\x5e\xed\x4c\x7b\x4c\x0d\x28\xb9\x33\x5c\xbb\x76\xad\x5e\x23\x37\x7a\xbe\x2d\x18\x5d\xd7\xf1\xee\xbb\xef\xe2\xc8\x91\x23\x79\x00\x4b\x2c\xe8\xd2\xe4\x4e\xcf\x57\x89\xf3\x6a\xf3\x9c\xb1\xd7\x31\xf0\xb1\x48\xb7\xba\xb4\xb2\x5e\x5c\x29\x57\x3d\x43\x62\xd1\x4b\x89\x89\x3d\xde\x3f\x2e\x34\x29\x6f\x5a\x0c\x91\x8e\xc7\xe3\x72\x6c\x6c\xac\xee\x88\x73\x74\x74\x14\xe3\xe3\xe3\x18\x18\x18\x30\x62\xb1\x98\x11\x89\x44\xca\x6b\xd2\x33\x99\x0c\x16\x16\x16\x70\xf9\xf2\x65\x58\xbb\x8d\x01\x00\x5a\x5a\x5a\x6c\x63\xa2\xaf\x2d\xa5\xed\x2b\x9b\x4f\x2c\xfa\xec\x81\x4b\xad\x2d\x89\xc1\x68\x4f\xba\xf7\x12\x28\x08\x42\x1c\xa5\x91\xa1\xa6\x9a\x14\x0a\x67\x5d\xc3\x36\xe6\x46\xe9\x00\x40\x7b\xd2\xbd\xef\x5c\x67\xe6\x5b\x00\x92\x2d\x2d\x2d\x7a\x6d\xb9\xd6\x33\x24\x1a\x00\xf2\x71\x5f\x71\xaa\x3f\xee\xdd\x90\x21\xd1\xc2\x88\xd6\x94\x6b\xdb\x54\x73\xfe\x25\x22\x12\x2d\x2d\x2d\xd2\x61\x4f\xa8\xca\xbc\xe6\xf9\xb6\x1a\x12\x01\xe0\xc2\x85\x0b\x32\x16\x8b\xa1\x3c\x93\xad\x40\xbb\xb6\xcb\xf3\x47\x1d\xde\xc2\x4f\x47\xaf\x15\x1f\x26\x13\xea\xad\x18\x12\x33\x2d\xe2\xfa\xe4\x4e\xcf\x5f\xe4\x03\xe2\x14\x73\x49\x67\x31\x4d\x53\x7f\xee\xb9\xe7\x6a\x48\xac\x2e\x57\x3e\x9f\x97\x23\x23\x23\x62\x64\x64\x44\x6a\x9a\x26\x74\x5d\x97\x81\x40\x40\xa4\xd3\xe9\xba\x65\xb7\x1c\xf5\x05\x33\x7b\x5c\xa6\x08\x56\xd5\x79\xd9\x7e\x55\xdf\x20\xa9\x48\xf8\x04\xc3\x23\x09\xf6\x0a\x1b\x01\xc0\xc3\x4e\x63\xeb\x06\xd2\x21\xc0\xc3\xcc\x1a\x11\xd9\x0b\x07\xaa\xca\x55\x3b\x3c\x16\x00\xb0\xb8\xb8\x08\xcb\xaa\x99\x5f\xf2\x17\x27\x4a\xfa\x81\x3d\xdc\xb4\x45\x9d\xf5\xcc\x15\xa5\xbc\x74\x84\x25\xa3\x33\xe9\xde\x49\x20\x0f\x33\xab\xdd\xdd\xdd\x76\xda\xce\x7c\x6a\x2b\xd9\x79\xdd\x88\x21\x71\xc3\x98\x97\x5e\x7a\x09\xd9\x6c\xd6\xb0\x26\x0d\x27\x58\xa5\xb3\x33\x5b\xdd\x5f\x1d\xdb\xef\xfd\xe3\x4c\x8b\x98\x60\x82\x5c\x63\x48\x2c\x77\x6d\x15\x7d\x07\x04\xe8\x6e\x4a\xce\x6e\xd5\xbe\x7f\xf5\x80\xef\xb7\xf3\x4d\xca\xcb\x5c\x3a\x59\x68\xc1\x34\xcd\xfc\x8b\x2f\xbe\x68\xbb\x3c\x34\xa2\xab\x4a\x37\xb2\x7c\x6b\x60\xed\x8e\x5a\x17\x03\x54\xa4\x5f\x56\x33\xd3\x95\x38\x38\x85\x3e\xaa\xe2\xad\x90\xd1\x64\xc2\xa4\xf2\xc4\x38\x98\x19\x86\x60\x99\xf2\x18\x0b\x37\x93\xce\x78\x38\x37\x62\xd3\x56\xe3\x20\xd8\xd8\x90\xb8\xb2\xb2\x82\xee\xee\x6e\x9b\x81\xae\x32\x20\xc9\x96\x4c\x37\x30\x24\x02\x84\xb6\x94\xb6\xdd\x25\x29\x58\x54\xa0\x5a\x13\x75\x77\xd5\x90\xe8\x8c\xcc\x66\xb3\x78\xfa\xe9\xa7\xf1\xc4\x13\x4f\xe8\x3e\x9f\x2f\x01\xc0\x00\x51\x36\x1d\x51\xe3\x57\x0f\x2a\x17\xfc\x09\xf3\x81\x96\x99\xe2\x5e\x7f\x5c\xf6\xbb\x0a\x32\x28\x24\x54\xb6\x26\x91\xad\xe9\x89\x7c\xae\x49\xcc\x25\xda\xd5\x0f\x57\x5b\xd5\x77\x4d\x8d\x2e\x81\xe8\x3a\x33\xcf\x58\xa3\x25\xfd\xc5\x17\x5f\x84\x75\xa2\xf2\x2d\xd1\xd8\x08\x93\xcd\x66\x61\x4d\x4c\x1b\x93\xa1\xfc\x85\x07\xa6\x03\x52\x80\x44\xd9\x86\x54\x13\x9c\x4a\xf0\x48\x7b\xe6\x0c\x2a\x3e\xd1\x92\x88\x0c\x66\xce\x5e\xda\x94\x7b\xbb\x2d\xa5\xed\x2e\x8f\xc0\xd6\x49\x27\xad\x99\x4b\xd3\xa1\xc2\x05\x58\xfe\xed\x75\x8e\x19\xad\x3f\x99\xba\xbc\xbc\x0c\x00\x06\x33\xeb\x2b\x3e\x63\x2a\xef\x92\x09\x6f\x51\x09\xdb\xa3\xdb\x52\x2e\x0e\x3b\x8a\x45\xb4\x6d\x6c\xf4\xeb\x4a\x67\x24\xe3\x1a\x9c\x6d\x2a\x4c\x28\x8a\x22\x3a\x3a\x3a\xca\x73\x36\x58\x2b\x71\x6e\xbb\x21\xb1\x16\xb3\xb2\xb2\x82\xa7\x9f\x7e\x1a\x47\x8f\x1e\xd5\xdb\xda\xda\x92\xd6\x14\x41\x92\x05\xe6\xd2\x11\x75\x2c\x15\x56\x4e\x09\x46\x54\x2d\xf0\x26\x57\x81\x43\xc2\x60\x8d\x05\xa4\xa1\x89\x64\xd1\x4d\xcb\x52\xc5\x12\x97\x5c\x3b\x17\xac\xd1\x56\x9c\x88\xb2\xa6\x69\xea\x2f\xbd\xf4\x92\xad\xb7\x34\x2a\xcf\x9a\xfa\xdd\x28\x26\x1e\x8f\xa3\xbf\xbf\x5f\x12\x51\xf6\x7a\x4b\xe1\xfd\xf9\x26\xfd\x4a\x7b\x4a\x1b\xb2\x3b\x99\xda\x25\xc9\x76\xdb\x24\x3d\xe6\xc2\xe5\x4d\xd9\x53\xb0\xb6\xf0\xb5\x99\x90\x88\x92\x17\xda\xd3\x2f\x6f\x9b\xf7\x3d\x16\xcd\xb8\xfa\x6f\x94\xce\xbb\x3d\xa9\xef\x67\x4b\x1b\x64\x64\x99\xd9\xe9\xee\x5c\xa6\x71\x8d\x21\x11\x00\x2d\x2f\x2f\xcb\x7d\xfb\xf6\x09\x22\x72\x49\x81\x40\x5f\xdc\xf3\x50\x73\x5e\xed\xd8\x88\x21\xd1\x52\x35\x95\x94\xc7\x9c\x9a\x09\xe9\xef\x02\xc8\xa4\x52\x29\x69\x1d\x57\x79\x57\x0c\x89\xf5\x30\xf9\x7c\x9e\x3f\xfa\xe8\x23\x76\xbb\xdd\x1c\x8d\x46\x0d\x21\x44\xde\xea\xd6\x56\x88\x68\x11\x44\xb3\xd2\x45\xd7\x8a\x1e\x71\x49\xf7\x89\x8b\x45\xaf\xb8\x60\x6a\xf4\x11\x2b\x74\x09\x44\x57\x89\xe8\x1a\x11\xcd\x58\xf8\xec\xdc\xdc\x9c\xf1\xcc\x33\xcf\x60\x6e\x6e\x4e\x6e\xa0\x4c\x1b\x29\xf7\x1a\xcc\xec\xec\x2c\xef\xd9\xb3\x87\x84\x10\x24\x05\x5c\x0b\x01\x3d\xbd\x79\xc9\x77\xc0\x25\x85\x9b\xca\x9e\x00\x8e\xc5\x0d\x44\x28\x2a\x9c\x7f\x7e\x6b\xfc\xab\x8b\x81\xe2\x1b\x44\x34\x43\x44\x59\x5d\xd7\x59\x55\x4b\xcb\xca\x4c\x05\x98\x6e\x2e\xc4\xfb\x56\x3c\xbb\x3d\x86\xf0\xd7\x4b\x87\x09\xf2\x5c\x67\xe6\xd5\x37\xfb\x92\x7f\x01\x81\xab\x44\x14\x4f\x24\x12\xc5\x37\xdf\x7c\x73\x0d\xfd\x6b\x0c\x89\x76\xc5\x5b\xe7\x9b\x2b\x44\xe4\x0f\xe6\xd5\xad\xdd\xab\xee\x5d\xb6\x84\x59\xcf\x90\x58\xc2\x10\x5c\xa6\x50\x47\xda\x32\xcf\x32\x21\xe5\x76\xbb\x8b\xa3\xa3\xa3\xce\x01\x9c\x53\x72\xde\x11\x43\x62\x23\xcc\xd4\xd4\x14\xbf\xf7\xde\x7b\x32\x10\x08\xc8\x68\x34\xaa\xa3\x24\xe6\xd3\x28\xed\x5a\xba\x6c\xed\x24\x3b\x07\x60\xde\xfa\x5f\x64\xe6\x15\x22\x5a\x65\xe6\x7c\x3a\x9d\x2e\xbe\xf1\xc6\x1b\x7c\xe6\xcc\x19\x59\x28\x14\x9c\x0c\xdb\xa8\x3c\xb5\xe5\xba\x29\x4c\x5f\x5f\x1f\xfc\x7e\x3f\x33\xb3\xcc\xba\x65\x6e\x32\x94\x5f\x88\x64\x5c\xdd\x01\x5d\x69\x71\xce\xe1\x81\x18\xcb\x3e\x63\xe6\xb9\xe1\xf8\x5f\x5e\x6f\x29\x3c\xc7\xe0\x71\x22\x4a\xa4\x52\xa9\xe2\x5f\xfd\xd5\x5f\xc9\xde\xde\x5e\xf8\xfd\x7e\xc9\xcc\x66\x5e\xe3\xec\x95\x68\x6e\x42\x30\xf9\x9a\xf3\x6a\x58\x95\x25\xc7\x41\x26\xc8\xb8\xcf\x58\x3c\x3d\x90\xf8\x87\x77\x7b\x52\x7f\xc7\x02\xa3\xcc\x3c\x4f\x44\xd9\x37\xde\x78\x83\xe3\xf1\xf8\x1a\x9a\xeb\x99\x76\x04\x00\x69\x9d\x6d\xee\x01\xd0\xdd\xb9\xaa\x7d\xfe\x8b\x1f\xb4\xfe\x9f\x42\x92\x5a\x35\xc5\xe5\x54\xc2\x6a\xe2\x0c\xe2\xfc\xdf\xec\x9d\xff\x97\x4b\x81\xe2\x69\x66\x4e\x7e\xf5\xab\x5f\x35\xb0\x36\x6c\xd4\x90\xb8\x91\x19\xf8\x5b\xc2\x3c\xf8\xe0\x83\xa2\xb3\xb3\x13\xa1\x50\x08\x7e\xbf\xbf\x32\x42\xb1\x14\xcf\x62\xb1\x28\xf3\xf9\x7c\x79\xdb\x37\xc7\x00\x63\xbd\x70\x23\x3d\x67\xc3\x98\x70\x38\x8c\x2f\x7c\xe1\x0b\x50\x14\xc5\xc7\xcc\x51\x02\xfa\x05\xd3\x60\x7b\x52\x7b\xa0\x6b\xd5\x3d\xe4\xd7\x95\x60\xde\x25\xb3\x73\x4d\xfa\xd8\x54\xa8\xf0\x9e\x21\xf8\x0a\x83\xc7\x2c\x83\x64\xf6\x99\x67\x9e\x91\x33\x33\x33\x70\xa4\xe3\x61\xe6\x30\x80\x6e\x02\xf5\x6b\x26\x75\x47\x32\xae\x3e\x97\x49\x9e\xb4\xdb\x8c\x27\xbc\xc6\x35\x49\xb8\xce\xe0\x09\x94\x6c\x53\xe9\xc9\xc9\x49\xc3\xf2\x4e\x5c\x43\x33\xd5\x89\x14\x00\xe4\xee\xdd\xbb\xc5\xa1\x43\x87\x54\x00\x51\xcd\xa0\x43\x5f\x7a\xa7\xfd\x0f\x9b\xf2\x6a\x2b\x6e\xc4\x40\xe5\x57\x8c\x1f\xf6\xa4\x7e\xff\xcc\xc0\xea\x6f\x03\x98\x1b\x19\x19\xb1\x37\xb4\xae\x55\x9a\x6b\xf3\x6e\x84\x69\x34\xd4\xbf\x6d\x98\xe6\xe6\x66\xb1\xba\xba\x5a\x75\x2d\x14\x0a\xc8\xe7\xf3\xeb\xfd\x1e\x37\xc8\xeb\x63\x63\x36\x6f\xde\x2c\x8e\x1f\x3f\x2e\x00\x68\x44\x14\x62\xe6\x28\x80\x28\x80\x10\x4a\x6e\xad\x06\x80\x24\x11\x2d\x59\x5b\xfb\x26\x98\x39\x7f\xe1\xc2\x05\x79\xe6\xcc\x99\x7a\xe9\xa8\x44\x14\x60\xe6\x10\x80\x30\x00\x1f\x4a\xfa\xb0\x6e\xa5\x13\xb7\xb6\xe6\xc9\x4e\x4f\x4f\x1b\xcf\x3e\xfb\x2c\x4c\xd3\xac\x4b\xb3\x82\x8a\xf9\xac\xca\x8c\x26\xa5\xc4\xf0\xf0\x30\x88\x48\x31\x09\xbe\xb6\xb4\xb6\x2b\x9a\xd5\xfa\xd7\x18\x12\xab\xe6\x33\x9c\x7b\x24\x12\x9a\x74\x25\x3c\xd2\x9e\xf9\xbe\x41\x9c\x68\x6a\x6a\x2a\x8e\x8c\x8c\x40\x4a\xe9\x1c\x38\xd6\xcb\xbb\x2a\xf9\x9a\x77\xce\xcc\x6e\x3b\xc6\xea\x92\xc8\xda\x85\x8c\x0b\x85\x02\x59\x1b\x4d\xd6\xfe\x8e\xb1\xf6\xf3\xb9\x63\x98\x95\x95\x15\x4e\x24\x12\xe8\xee\xee\x36\x14\x45\xc9\x03\x48\x13\x51\x9c\x88\xe6\x2c\x3d\x67\xca\x9a\x87\x9b\x27\xa2\x94\x69\x9a\xf9\x37\xde\x78\x83\x2d\xab\x78\x55\x3a\xd3\xd3\xd3\x68\x6f\x6f\x37\xdd\x6e\x77\x01\x96\x6f\x35\x11\x2d\x13\xd1\x82\x95\xde\xb2\xc5\x3c\xf9\x91\x91\x11\xf3\x95\x57\x5e\x81\x69\x9a\x0d\x69\x56\x1c\x04\x3b\x95\x5c\x64\xb3\x59\xb9\x75\xeb\x56\x68\x9a\x26\x00\xf8\x08\x14\xd9\xb2\xe8\x3d\x52\x19\xb4\x5b\xa5\xad\x5d\xc5\xc0\x28\xdb\x8b\x34\x43\x84\x96\xfd\xc6\x85\x25\x7f\xf1\x92\xaa\xaa\x7a\xa1\x50\x90\x0b\x0b\x0b\xb6\xd2\xe9\x54\x1a\x9d\x57\x38\xee\x6b\x31\x7c\x9f\x60\x6c\x1d\x60\x3d\x9a\x6f\x2b\x66\x65\x65\x45\x4e\x4c\x4c\x90\xc7\xe3\x91\xa1\x50\x48\x27\xa2\x3c\x95\xd6\xa0\xa5\x88\x28\xcd\xcc\x39\x29\x65\x7e\x6c\x6c\xcc\x7c\xe5\x95\x57\x60\x79\x30\xae\x49\x27\x93\xc9\xc8\x8b\x17\x2f\xd2\xea\xea\x2a\xfb\x7c\x3e\xc3\xeb\xf5\xea\x42\x88\x02\x33\xe7\x00\x14\x4c\xd3\x2c\x4c\x4c\x4c\x98\xaf\xbf\xfe\x3a\x8f\x8c\x8c\xd8\xdd\x75\x43\x9a\xeb\x7a\x24\xda\xcf\xb3\xb3\xb3\xd8\xb2\x65\x8b\x01\x20\x39\x15\x2a\xbc\x97\x73\xc9\x84\xb7\x58\x3a\x15\xaf\x9e\x47\xa2\x6d\x98\xaa\x58\x38\x49\x3c\x30\x13\xf8\x97\x97\x37\x65\x9f\x33\x89\xd3\x83\x83\x83\xc6\x85\x0b\x17\x44\x65\x7a\xac\x2a\xdf\x9b\x31\x24\xd6\x0b\x77\x12\xd3\x08\x7f\x57\x31\xab\xab\xab\xf2\xa5\x97\x5e\x82\xdb\xed\x16\x85\x42\xc1\x00\x80\x83\x07\x0f\x8a\xb7\xdf\x7e\x5b\xf6\xf6\xf6\x8a\xf9\xf9\x79\x14\x0a\x85\x1b\xa6\x63\x9a\xa6\xbc\x7c\xf9\xb2\xbd\x03\xab\x04\x20\x3b\x3a\x3a\x84\x35\x52\xae\x67\x26\x69\x48\xb3\x2d\x81\x6a\xa5\x80\x04\x40\xcc\x8c\xc1\xc1\x41\x26\x22\x61\x08\xf6\x45\x33\xae\xed\xd1\xb4\xd6\x57\x5a\xbf\x54\x71\x28\x27\xb2\x57\xca\x03\x95\x91\x5a\x29\xde\x5f\x50\xda\xa7\x43\x85\xb7\x92\x5e\x73\xd2\xef\xf7\x17\x96\x96\x96\x38\x91\x48\x00\x8d\x25\x50\xed\x68\xcd\x7e\x57\xaf\x20\x77\x0b\xb3\x66\x94\x8a\xea\xae\xe6\xae\x62\x4c\xd3\x2c\x63\xa6\xa7\xa7\x09\x00\xaf\xae\xae\x92\xa3\xab\x41\x5b\x5b\x1b\xed\xda\xb5\x8b\xb6\x6c\xd9\x42\x0f\x3f\xfc\x30\x22\x91\x08\xf5\xf5\xf5\x81\x88\x90\x48\x24\xd6\xe4\x95\x4e\xa7\x6f\x89\x1e\xa7\x0e\x84\x5a\x50\x2e\x97\xc3\xf0\xf0\x30\x2b\x8a\x42\x44\xa4\x15\x15\xd9\x34\xbc\xe8\x7b\xd8\xe6\x12\x02\x50\xcf\x90\xe8\xdc\x00\x43\x10\x29\x81\x82\x12\xfa\xa8\x35\xfb\xa2\x04\x67\xc3\xe1\xb0\x61\x6d\x38\x5e\xab\x83\x38\xaf\xb5\x3a\x8b\x93\x3e\x71\x0f\x30\x8d\x68\x85\xe3\xfd\x7d\x81\xe9\xec\xec\xa4\x27\x9f\x7c\x92\x76\xed\xda\x25\xda\xda\xda\x94\x70\x38\xac\x69\x9a\xa6\x86\xc3\x61\x35\x1a\x8d\x8a\x81\x81\x01\xde\xba\x75\x2b\xb2\xd9\x2c\xad\xac\xac\x7c\x6c\x7a\xea\x1a\x12\xad\x7b\x32\x4d\x53\xb6\xb4\xb4\x50\x34\x1a\x25\x00\x6a\x46\x93\x62\x70\xc9\x77\xd8\x57\x14\xcd\xeb\x1a\x12\xc9\xba\xb3\x18\x2a\x50\x50\xba\x17\x9a\xf4\xf7\x13\x3e\x73\xc2\xe3\xf1\x14\x8a\xc5\x22\x5b\xba\x10\xd7\xf9\xaf\x95\x06\xb5\xf1\xf7\x02\x73\xdb\x8d\x84\x77\x02\xb3\x73\xe7\x4e\x3a\x7e\xfc\xb8\x70\xbb\xdd\x6e\x95\xa9\xa9\x67\xd5\xb3\x6b\xc7\x9c\xff\xc9\x6d\xf3\xfe\x27\xba\x92\xee\xdd\x6e\x43\xb8\x52\x1e\x33\xad\x7a\x35\x33\x16\x8b\xc9\x70\x38\xcc\x96\xf7\xc0\x2d\xd3\xd3\xd0\x90\x68\xc7\x4d\x4c\x4c\xc8\x7d\xfb\xf6\x81\x99\x89\x05\x3c\x9a\x49\xed\x3d\x09\xcf\x2e\xcb\x62\x59\xd7\x90\x58\xcb\x50\x82\x49\x09\xe7\x5c\x5d\x23\xed\x99\xe7\x24\x21\x1b\x8d\x46\x6d\x4f\x45\xd4\xc9\xbf\x9e\xe8\x84\xe3\x8a\x7b\x84\xa9\x47\xeb\xc7\x32\x12\xde\x4e\xcc\x8e\x1d\x3b\xe8\xf0\xe1\xc3\xa5\x33\x6d\xd3\xae\xad\x9f\x1d\x8d\xfc\x5f\x07\x26\x83\xff\xa5\x3b\xe1\xf9\x5c\x6b\x46\x7b\xb8\x63\xd5\xfd\xe9\x2d\x4b\xde\x9f\xd9\xbc\xec\x3b\xb8\xe2\x2b\x5e\x49\x7a\xcd\x78\x28\x14\x32\xc3\xe1\x30\x4f\x4c\x4c\x10\x97\xbc\xea\x6e\x9a\x1e\x05\x6b\x2b\x8d\x6a\xe3\x2c\x6b\x28\x00\xa8\xab\x1e\x83\xb7\xcf\xfb\x1f\x29\x99\xd3\x51\x23\xd0\xea\x4b\x25\x10\xe0\xd3\x45\x57\x56\x93\x93\xf3\x4d\xc5\x51\x55\x55\x0b\x3e\x9f\x8f\xaf\x5f\xbf\xbe\x9e\x5e\xe2\x54\x66\x19\xf5\xc3\xdd\xc4\x00\x95\x8a\x93\x8e\xe7\x7b\x8e\x69\x6f\x6f\xc7\x63\x8f\x3d\x26\x88\xc8\x17\xc9\xa8\xdb\xbe\x70\xae\xf5\x2f\x23\x59\xd7\x31\x01\x72\x39\xbd\x0d\x09\x24\xbc\x45\xa5\x7f\x70\xc9\x7b\x72\x3e\xa0\x9f\x4d\xfa\xcc\xb9\x50\x28\x54\xcc\x64\x32\xbc\xb4\xb4\x44\x1b\xc9\xab\x16\xe3\x94\x40\x76\x20\xac\xe5\x3c\xd8\x3b\x74\x16\x15\x76\x05\x0b\xca\x40\x5b\x4a\x1b\xa8\x28\x42\x35\xbf\x06\x60\xcf\xcc\x57\x24\x11\xa1\x35\xa5\x6d\xbb\xba\x29\xf7\x72\xc1\xc5\xcb\xd1\x68\xd4\x98\x9b\x9b\xe3\x54\x2a\xe5\xe4\xf4\x5a\xbd\xc4\x79\x75\x72\xfe\xbd\xc0\xd4\x4a\x68\xa7\x7e\x74\x4f\x31\x27\x4e\x9c\x80\xd7\xeb\x75\xa9\x4c\x9b\x3e\x3b\x1a\xf9\x6f\xd1\xac\x76\xa8\xd4\x08\xf5\x97\x51\x0b\x26\x7f\xd7\xaa\x7b\xcf\xa5\xd6\xec\x0b\x45\x85\x53\xad\xad\xad\xc5\x8b\x17\x2f\x3a\x95\xf3\x0d\xd3\xe3\x1c\x42\xdb\xff\x6b\x9e\xc7\xc7\xc7\xa1\xeb\xba\x01\x20\x0b\xc2\xc2\x7b\x5d\xe9\xef\xe9\x0a\x67\x6d\x46\xa9\x74\x8a\xb5\x7c\x58\x0a\x36\xc6\x57\x54\xba\x8f\x5d\x0d\xfd\x8a\x90\x08\x13\x91\x73\x63\x4a\x67\xde\xa8\xb9\xaf\xf7\x7c\xaf\x31\x40\x7d\x89\x79\xd7\x31\x9d\x9d\x9d\x88\x44\x22\x82\x88\x7c\x3d\x09\xcf\xa1\xce\x55\xf7\xf1\x8d\x9c\xda\x1c\x2c\x28\xdb\xb7\xcd\xf9\x3f\x47\x44\x3e\x9f\xcf\xa7\x0e\x0e\x0e\xde\x12\x3d\xa2\x26\x52\xd6\x7b\xce\xe7\xf3\x18\x1d\x1d\x05\x4a\x4e\xea\xf1\x84\xd7\xb8\x78\xa9\x35\xfb\x36\x93\xd3\xf2\x6c\xc9\x1b\xb6\x89\xb4\x48\x65\x54\x61\x62\xcb\x9e\xcf\x6f\x9f\xf3\x3f\x09\x46\x20\x10\x08\xa8\xc7\x8e\x1d\xab\x47\x78\x6d\x21\xea\xd9\x21\xee\x25\x06\x58\xdb\xed\xde\x13\x8c\xbd\x15\x30\x33\xfb\xba\x12\xee\x23\x84\xd2\xc4\x68\xd9\xaf\xdb\x62\x1b\xa7\x88\xb5\xc3\x40\xdc\xf3\x29\x66\x0e\x02\x10\x03\x03\x03\xb7\x44\x4f\xed\x57\xdf\xf0\xf9\xc3\x0f\x3f\x44\xb1\x58\x34\x00\xa4\x41\x98\x39\xdb\x9d\xfa\x6e\x41\xe5\x74\xad\x47\x62\x89\xa9\xe0\xe0\x1f\x86\x13\x43\x0c\xf5\xc8\x78\xf3\x6f\x44\x33\xae\x9d\x44\xe4\xeb\xef\xef\x17\xbb\x77\xef\x76\xd2\xb2\x11\x43\xe2\xdd\xc6\xac\x6b\x4c\xbb\x97\x98\x4d\x9b\x36\xd9\xbb\x80\x78\xfc\xba\xd2\x69\x83\x37\xe2\x6d\xe8\xd3\x95\x76\xb2\xe6\xc1\xac\x7d\x31\x6f\x9a\x9e\xda\x46\x6b\x74\x45\x2e\x97\x93\xa3\xa3\xa3\xa0\xd2\xf6\xbd\xf1\x15\xaf\x31\x72\xbe\x3d\xfd\x9a\xbd\xc3\x96\x53\xdb\x81\xf3\xae\x3c\x2a\xab\x60\x3c\x86\xd2\xfe\x99\x8f\xc2\xff\xc5\x5d\x14\xdd\x44\xe4\x39\x70\xe0\x80\xe8\xed\xed\xad\x43\x63\x39\xdc\xc8\x7a\x7c\xa7\x31\x4e\x0b\xed\x8d\x7e\x77\x57\x31\x6e\xb7\xdb\xde\x58\x41\x2d\xa8\x32\x5f\x52\x5c\x1c\xbb\x86\xd4\x04\x7b\x39\x1c\x81\x90\x75\xc9\x34\x5b\x5b\xfc\x44\x22\x91\x5b\xa2\x47\xd4\x5c\x1b\xbd\x07\x00\xf1\xc1\x07\x1f\xa0\x58\x2c\x1a\xcc\x9c\x64\xf0\xcc\xd9\x9e\xd4\x77\x33\x9a\x19\x07\x2c\x26\xaf\x31\x24\x32\x73\x15\x13\x39\x31\x9b\xd2\xae\xc3\xc7\xaf\x84\xfe\x37\x45\x22\xaa\x28\x8a\x76\xe4\xc8\x11\x04\x83\xc1\x35\x79\xd6\xa3\xe3\x1e\x60\x6a\xdf\xdd\x37\x18\x5d\xd7\xed\x4d\x11\x8c\xd9\x60\x61\x8c\xc1\x65\x9d\xb3\xac\x95\x5a\x83\xe3\xd2\x82\x81\xca\xdf\x44\x24\x77\x1e\x25\xcf\x53\x69\x79\xa1\xde\x34\x3d\xeb\x1a\x12\x51\x63\x5c\x33\x0c\x43\x6a\x9a\x46\x1d\x1d\x1d\x4c\x44\x5c\x54\x98\x8a\x0a\xfb\xfb\xe3\x9e\x5d\xa2\x62\x3e\x5c\x63\x48\x84\x23\xe1\x32\x06\x84\x48\xc6\xb5\x4b\x30\xe5\xa6\x42\x85\x73\x2e\x4d\xd3\x63\xb1\x98\x39\x31\x31\x01\x5d\xd7\xeb\xe6\x5f\xe7\xfe\x47\xde\x90\x18\x08\x04\xa8\xbb\xbb\x9b\x00\xb8\xd3\x9a\xe9\xda\xbc\xe4\x3b\xec\x35\x94\x20\x01\x68\xe4\xb5\x48\x20\xe4\x55\x99\x7c\x75\x70\xf5\x4f\x0a\x2e\xfe\x88\x88\x56\x17\x16\x16\xcc\x3a\x46\xc5\x8f\x6f\x48\x44\x0d\x63\x4d\x4f\x4f\xf3\xd6\xad\x5b\x59\xd3\x34\x66\x66\x2c\xfb\x8b\xb9\xae\xa4\x7b\x67\x73\x5e\x8d\x36\x32\x24\x3a\xb5\xb7\x6a\x0c\x51\x7b\x4a\x3b\x50\x50\xe5\xcc\x7c\xb0\x78\x55\x73\x6b\xc5\xfe\xfe\x7e\xf3\xfc\xf9\xf3\xf5\xf2\x77\x0e\xf1\x9c\x71\x77\x0b\x83\x3a\x75\x65\x5f\xef\x19\x66\x6e\x6e\x4e\xee\xd9\xb3\x87\xac\xf9\x4a\x25\xe9\x35\x79\x70\xc9\xbb\x5f\x61\x52\x4a\xbd\x00\xaa\x57\xd4\x02\x90\x60\x9c\x89\xad\xfe\xfd\xb5\x70\xfe\x45\x10\xa6\x99\x39\xf3\x8d\x6f\x7c\xc3\xbc\x51\x5e\xf5\xe8\xd9\x90\x21\xd1\x71\x2f\x00\x70\xb1\x58\xa4\xbe\xbe\x3e\x93\x88\x4c\x16\xc0\x92\xbf\x98\x1d\x9e\xf7\x1d\x56\x20\xd4\x2a\x66\x01\x6a\x6e\xb0\xc6\xd8\x28\x40\x6a\x4f\xc2\xf3\xc9\x8c\xdb\x9c\x58\x0c\x14\xc7\x35\x4d\x33\x86\x87\x87\xe5\xc4\xc4\x04\xe9\xba\xfe\xcf\x86\xc4\x0d\x60\x62\xb1\x18\x7b\xbd\x5e\x49\x44\x94\xf0\x1a\xa9\x15\x9f\x51\xe8\x58\xd5\x36\x6b\x26\x79\x6c\x77\x1b\xdb\x1e\x54\x50\x39\x7b\x26\xb6\xfa\xdd\x0f\xba\xd2\x7f\x0b\xc2\x15\x66\x5e\x2e\x14\x0a\xc5\xd1\xd1\x51\xb2\x9c\xc6\x6e\x8a\x9e\x8d\x1a\x12\xab\x0c\x6d\x2b\x2b\x2b\xd4\xdd\xdd\xcd\x7e\xbf\x5f\x02\xe0\xac\x26\x8b\x04\x0a\x75\x27\xdc\xc3\xe5\x4d\x07\x2c\x78\x5d\x5d\xae\xc6\xd8\x28\x40\xae\xde\x15\xf7\xd1\x9c\x26\xaf\x2f\x36\x15\x27\x34\x4d\x33\x1c\x92\xe8\x9f\x0d\x89\x37\xc0\xac\xae\xae\x62\x68\x68\x88\x89\xc8\x60\x70\x71\xc5\x67\x2c\x5e\xde\x94\xbb\x92\x77\x49\x83\x00\x61\x08\x2e\xae\x78\x8d\xc5\x8b\xad\xd9\xf7\x5f\x19\x5c\xf9\xdb\xf1\x48\xfe\x79\x10\x3e\x62\xe6\x79\x00\xb9\xb7\xde\x7a\x8b\xad\x25\x3b\x37\x4d\x4f\x43\x8f\xc4\x9a\x67\x38\xdf\x31\x33\xe6\xe6\xe6\x30\x3c\x3c\x6c\x12\x91\x24\x22\x9e\x6f\xd2\x93\x9d\x49\xf7\xb6\xe6\xbc\x1a\x75\xc2\xc9\xc1\x28\x36\xdb\xd4\x8e\xd8\x08\x80\x60\x78\xfa\xe3\xde\xc7\x74\x45\xce\xce\x37\xe9\x63\x9a\xdb\x5d\xdc\xb6\x6d\x9b\x4c\xa5\x52\x48\x24\x12\xce\x01\x69\xed\x70\xcf\x8e\xbb\x9b\x18\xae\x79\x7f\x4f\x31\xa9\x54\x4a\x16\x8b\x45\x74\x77\x77\x1b\x44\x54\x60\x70\x5a\x57\xe5\xd2\x4c\x48\xff\x68\xb4\x3d\xfb\xf6\x87\x5d\xe9\xd7\x46\x3a\x32\xaf\x4c\xb6\x14\x4e\xe7\x5c\xe6\x07\x44\x74\xd5\x62\x9e\xec\xf5\xeb\xd7\x4d\x6b\xb5\xc5\x2d\xd1\xd3\xd0\x23\xb1\xc1\x73\x39\xe1\x7c\x3e\x2f\xdd\x6e\x37\x59\x87\x81\x18\x92\x98\xe7\x9b\xf4\xd4\x96\x45\xdf\x01\x55\x0a\xb7\xfd\xd3\xd2\x52\xa0\x0a\x3d\xb5\x5e\x8b\x4e\x0c\x81\x5c\xbd\x09\xcf\x23\x8a\xa4\xe2\x74\x73\x61\x44\xd5\x5c\x46\x7f\x7f\xbf\xcc\xe5\x72\xbc\xb4\xb4\x84\x06\xf4\xd8\x71\xb5\xcf\x77\x12\xe3\x14\xe7\xb7\x05\x13\x89\x44\x68\xf3\xe6\xcd\xe8\xe9\xe9\x41\xa1\x50\x40\x2e\x97\xbb\xa9\x74\x16\x16\x16\xc8\x34\x4d\xee\xea\xea\x32\x2c\x6f\xc5\x94\xb5\xc2\x64\x9e\x99\xa7\x89\x68\x92\x99\xaf\x59\xae\xaf\x71\x00\xb9\xeb\xd7\xaf\x9b\x2f\xbc\xf0\x02\xac\x89\xd4\x5b\x2a\x97\x93\x81\xea\x49\x9c\x7a\x9c\x58\x7e\x5e\x58\x58\x40\x57\x57\x97\xf4\xfb\xfd\x26\x00\x23\xef\xe2\x42\xd2\x63\xf0\xc0\xb2\xf7\x81\xd2\x16\xc1\xa5\xfc\xc8\xf9\x6b\x8b\x8c\x8a\x3b\x48\x35\x86\x00\x57\x57\xd2\x7d\x34\x94\x57\x43\x53\xa1\xc2\x79\xa9\x52\xae\xb7\xb7\xd7\x0c\x85\x42\x3c\x3d\x3d\x6d\xf7\xd3\xb5\xfa\x9a\x4d\xab\xd3\x86\x73\x3b\x31\xce\xbe\xbf\x1e\xf6\x96\x31\x3e\x9f\x8f\x0e\x1d\x3a\x44\x47\x8f\x1e\x45\x6f\x6f\xaf\xda\xd1\xd1\x21\xb6\x6f\xdf\x8e\x96\x96\x16\x4c\x4e\x4e\x42\x4a\xb9\xe1\xbc\xe6\xe7\xe7\x71\xf6\xec\x59\xb3\xb3\xb3\xd3\x0c\x04\x02\x05\x00\x39\x22\x4a\x5a\x4b\x92\x56\x2c\xa6\xca\x66\xb3\xd9\xe2\xd7\xbe\xf6\x35\xf3\xea\xd5\xab\xe4\x58\x61\x72\x4b\xe5\x5a\xd7\x23\x11\xf5\x39\xb1\x7c\x35\x4d\x93\x17\x17\x17\x69\x70\x70\xd0\x54\x55\xd5\x44\x69\x5d\x51\xca\x6d\xd2\xa6\x8e\x94\xdb\x9a\x6c\xb5\x86\x90\xeb\x78\x2d\xd6\x62\x08\x44\x91\x8c\x6b\x6f\xef\x8a\x67\xd7\x5c\x50\x3f\x97\xd3\x64\x32\x1c\x09\x9b\x5b\xb6\x6c\x91\xc9\x64\x92\x56\x57\x57\xeb\x35\x7c\x23\x23\xe1\xed\xc0\xd4\xd3\x03\x9c\x9f\xc4\x2d\x61\xba\xba\xba\xe8\xe4\xc9\x93\xe8\xec\xec\x54\x09\xe4\xeb\x5e\x75\x0f\x6d\x9f\xf7\x3f\x34\x1d\xd2\xaf\x87\xc3\x61\x19\x8d\x46\xe5\x95\x2b\x57\x6e\x3a\xaf\x4b\x97\x2e\xf1\xdc\xdc\x1c\x0c\xc3\x30\x93\xc9\xa4\xe1\x72\xb9\x8a\xd3\xd3\xd3\xc6\xcc\xcc\x8c\xf9\xe1\x87\x1f\xb2\xe3\x1c\xf8\x8f\x5d\xae\x75\x3d\x12\x1d\xf1\x70\xdc\x3b\xb1\x22\x97\xcb\xa1\x58\x2c\xa2\xa7\xa7\xc7\x24\xa2\x22\x08\xe6\x4c\xb3\xbe\x35\xd6\xea\x8f\x00\x00\x0d\x00\xff\x0d\x00\xf2\xea\x49\x44\x41\x54\x14\xcd\x68\x03\x2d\x39\xb5\xcd\x66\xa2\x32\x45\x75\xbc\x16\xab\xf6\xe1\x71\xe8\x48\x7e\x5d\xed\x1f\x5a\xf4\x7e\x46\x57\xe5\xc2\xa2\xbf\x38\xe5\x72\x6b\xe6\xe6\xcd\x9b\x65\x20\x10\xc0\xb5\x6b\xd7\x6a\x69\xac\xa2\xab\x41\x39\x6e\x15\x53\xfb\xae\x9e\xa4\xde\x30\xc6\xeb\xf5\xd2\xd1\xa3\x47\x71\xf0\xe0\x41\xa1\x69\x9a\x5b\x48\x84\x76\xcf\x06\x7e\xec\xd3\x97\xc2\x7f\xd2\x93\xf0\xfc\xe4\x52\xa0\xf8\x5e\xdc\x5b\x9c\x6b\x6e\x6e\x36\x54\x55\x65\xc7\x51\x03\x1b\xce\x2b\x95\x4a\x61\x72\x72\x12\xe3\xe3\xe3\x38\x7f\xfe\x3c\xc6\xc6\xc6\x30\x39\x39\x09\xeb\x08\xa9\x9b\xa6\xb9\x11\xe6\xa6\x0c\x89\x8e\x67\x72\xfe\x6e\x71\x71\x91\x23\x91\x08\x5a\x5a\x5a\x4c\x00\x86\x14\x28\x4e\x86\xf2\x8b\x3d\x09\xcf\x0e\xbf\xae\x34\xd7\xa3\xa0\x91\xb1\xd1\xea\xdc\x60\xcb\x2b\x55\x8a\xe6\xfe\xb8\xe7\xb3\xd1\xac\xab\x63\xbe\x49\xff\x48\x57\x39\x17\xdd\x14\x35\x77\xef\xde\xcd\x00\xec\xa5\xc5\x4e\x1a\x6b\xef\xeb\x95\xe3\x66\x31\xb7\xcd\x00\xb8\x6f\xdf\x3e\x7a\xf4\xd1\x47\xd1\xda\xda\xaa\x12\xc8\xdf\x9c\x57\x62\x9f\xf9\x28\xf2\x9f\x1f\x9c\x0e\xfc\x47\xa5\xb4\x75\x9d\xbb\x33\xa9\xed\x1b\x8f\xe6\x5e\x2d\xb8\x38\xd1\xd6\xd6\x66\x2c\x2f\x2f\xb3\x75\x7c\xd4\x6d\xa7\xe7\xe3\x62\x6e\xda\x90\x58\xe7\x5e\x00\xe0\xb1\xb1\x31\xde\xb2\x65\x0b\xbb\xdd\x6e\x03\x40\xd1\x50\x58\x9f\x0a\x15\x96\x63\x71\xcf\x6e\x77\x51\xf1\x95\x1d\x9b\x6e\x60\x6c\xac\xc8\x2a\xe7\x29\x5e\xa4\x84\xb3\xae\x07\xb6\x2e\xf8\x4e\xb0\xe0\xe4\x92\xbf\x38\x4d\xaa\x30\xbb\xba\xba\xcc\x2d\x5b\xb6\xa0\x58\x2c\xd2\xf2\xf2\xb2\xf3\x23\x80\xe3\xbe\xb6\x1c\xb7\x8a\x01\xd6\xd6\xd5\x86\x0d\x6e\x43\x43\x43\x74\xe2\xc4\x09\xea\xef\xef\x57\x15\x45\xf1\xb8\xa4\x88\x3c\x30\x1d\xf8\xf1\xcf\x7c\x14\xf9\xfd\x4d\x19\xd7\x51\x01\x52\xec\xcf\x5d\x33\x45\xa4\x25\xab\xb6\x5d\x8e\xe6\x4e\x49\xe2\x5c\x5f\x5f\x9f\xf1\xd1\x47\x1f\x91\x61\x18\x1b\xca\xeb\x6e\x62\x6e\xc9\x90\xe8\xc0\x54\xe9\x0a\xe3\xe3\xe3\xb4\x79\xf3\x66\x53\xd3\x34\x83\x99\xf5\x82\x8b\x73\x53\xa1\xc2\xd2\xe6\x65\xef\x6e\xcd\xde\x1f\x79\x1d\xaf\xc5\x4a\x20\xab\x6b\xab\xbc\x22\x66\x68\x52\xb4\xf4\xad\x78\x4e\x0e\x2c\x7b\xf7\x65\x5d\x72\x7e\xd5\x6b\xac\xb8\xdc\x9a\xd9\xd7\xd7\x27\x77\xef\xde\x0d\x4d\xd3\x68\x7a\x7a\xda\x49\xb3\x5d\xf0\x7b\x66\x48\xdc\xbf\x7f\x3f\x7d\xfa\xd3\x9f\xa6\xcd\x9b\x37\x0b\xb7\xdb\xed\x16\x12\xa1\xcd\x71\xdf\xc3\x8f\x5f\x0c\xff\xb7\x6d\x0b\xfe\x7f\xa7\x49\xd1\x62\x4b\x5d\x67\x55\x34\xe7\xd5\x2d\x00\xd2\x53\x21\xfd\xbc\x10\x42\xef\xe8\xe8\x30\x2f\x5e\xbc\x58\x9b\xdf\x4d\xd3\x73\xbb\x31\xb7\x64\x48\xac\x73\x15\x00\xa8\x58\x2c\xca\xd5\xd5\x55\x8a\xc5\x62\x06\x11\x19\x44\xa4\x67\x35\x99\x9d\x0b\x16\x92\x7d\x71\xef\x0e\xcd\x14\xee\x72\x0e\x00\x1a\x1b\x1b\x2b\xdc\x53\xd6\x89\x2a\x7b\x32\x93\xbf\xa8\xf4\x6f\x59\xf2\x7e\xa1\x3b\xe1\xde\x9e\xd3\xe4\x62\xd2\x6b\x26\x14\x55\x41\x5b\x5b\x1b\xef\xdd\xbb\x97\x23\x91\x08\x09\x21\xc8\xda\x0c\xa0\x1e\xad\x65\x9a\xd7\x29\x4f\x2d\x66\xc3\xc6\xbd\x81\x81\x01\xb2\xba\x2a\xea\xea\xea\x52\x15\x45\xf1\x08\x50\xb0\x6f\xc5\x73\xf0\xb1\x4b\x2d\xff\x79\xdf\x54\xd3\xff\xee\xd7\x95\xcd\xd6\x96\xe5\x35\x99\x33\xac\xfd\x19\xa9\x3d\xe5\xde\xbb\x10\xd0\xcf\x26\xbc\xc6\x54\x20\x10\xd0\x5d\x2e\x17\xa6\xa6\xa6\x6e\x9a\x9e\x3b\x89\x21\xeb\xe1\xb6\x86\x9e\x9e\x1e\x7c\xfa\xd3\x9f\x16\xaa\xaa\x7a\x00\xb4\x32\xf3\xd0\xa6\x8c\xf6\xc9\xa7\x2e\x44\x7f\x21\x98\x57\xc2\x95\x0d\xa9\x4a\xa1\x5c\x71\x55\x55\x59\xea\xc4\x9c\xce\x98\x15\xae\xae\x60\x18\xac\x2f\x06\x8a\xaf\x7d\xd0\x95\xfe\xf3\xb1\x48\xee\x74\x5e\x95\x09\x10\xf2\xcc\x6c\x00\x90\x63\x63\x63\x98\x9d\x9d\xc5\xf4\xf4\x34\x56\x57\x57\xed\x04\xea\xb9\x28\xd4\xc6\xad\x87\xb1\xbf\x42\x01\x00\xcd\xcd\xcd\xe8\xec\xec\x44\x47\x47\x07\x62\xb1\x18\x14\x45\x11\x28\x1d\x78\xa7\x79\x0c\x11\x8e\x2d\x7b\x0e\x3d\x38\xdd\xf4\x3f\x6f\x4a\xbb\x8e\x11\xec\x23\x44\x2b\xdd\x78\x75\xb9\x9c\x81\x90\x76\x1b\x57\xbe\xf1\xc0\xc2\x97\x12\x1e\x63\x84\x88\xb2\xcf\x3f\xff\xbc\x1c\x1f\x1f\x5f\x97\x9e\x8d\xd0\x7c\xbb\x30\x4e\x06\xaa\xfd\x71\xbd\xe7\x7a\x15\x2c\xeb\x60\xe4\xfe\xfd\xfb\xc5\x9e\x3d\x7b\x04\x4a\x0e\x4b\xad\x00\x06\x23\x59\xd7\x91\xcf\x8e\x46\xfe\x4d\x34\xe3\xea\x74\x32\x8b\xfd\x19\x96\xaa\xcf\x62\x19\x46\x79\xfe\xc6\xd9\xa5\x35\xc6\xc0\xc8\x68\xe6\xa5\xab\x91\xfc\x3f\x5c\x6a\xcd\x7e\x6f\xae\x49\x1f\x33\x05\x67\x41\xa5\xdd\xb5\x98\x59\x66\x32\x19\x39\x3b\x3b\x8b\x5c\x2e\x87\xd9\xd9\x59\xa4\xd3\x69\x2c\x2f\x2f\x4b\x45\x51\x44\x9d\xcd\x03\xaa\xca\x65\x63\x5a\x5a\x5a\x44\x30\xf8\xff\xb5\x77\x75\xbd\x6d\x23\x57\xf4\xdc\x21\x45\x51\xb2\x2c\x5b\x8e\x62\xcb\xb2\xd7\x71\xec\x24\x9b\xe6\xab\x4e\xda\x8d\xf7\x61\x37\x09\x36\x41\x80\x6d\x81\xa2\x0f\x7d\xe9\xf3\xfe\x82\xfd\x0f\xfd\x0f\x7d\x2c\xfa\x10\xa0\x2d\x90\xb6\xd8\x00\x05\xda\xa4\x68\x83\x7d\x08\x62\xac\x8d\x38\x71\x16\x1b\x7f\x24\x8e\x6d\xf8\x23\x96\x65\x59\xa6\x29\x4a\xa4\x66\xfa\x40\x52\xa2\x65\x52\x91\x1c\x39\x71\x93\xbd\x80\x40\x89\x73\x34\x43\xce\x5c\xdd\x19\x1e\x52\xf7\xc4\xd1\xd9\xd9\x89\x44\x22\x81\xde\xde\x5e\xb4\xb7\xb7\x33\xc0\xc9\x45\x08\x52\x24\x81\x68\xcf\xb6\x32\x78\xea\x55\xf4\x97\xc3\x1b\x91\x5f\xc7\x8a\xd2\x69\x00\xf2\xeb\x73\x12\xfa\x9e\x17\x16\x12\xc5\x6f\xbe\x39\xbb\xfe\xb5\xc5\xc4\xaa\xae\xeb\xc6\xad\x5b\xb7\x82\x8e\xd5\x77\x2c\x0e\x12\x73\x20\x11\xc8\xad\x7c\x74\x74\x14\x17\x2e\x5c\x60\x00\x54\xd8\xd9\x24\x4e\xb4\x99\xd2\xa5\x9b\x3f\x74\x7d\x75\x6c\x53\x3d\x65\xf7\x1e\x01\xce\x73\x43\xde\x64\x33\x95\xe4\x9d\xce\x5f\xa7\xed\x8e\x75\xa7\x36\x51\x17\x23\x08\xc6\xb6\x5a\x7e\x3c\xdf\x65\xdc\x7b\x99\x28\x7c\xbb\xd6\x5e\x9a\xde\x51\x78\x4e\x40\x94\xdc\x6c\x5d\x80\xad\x2b\xe6\x12\x69\x6b\x6b\x6b\xa8\xf9\xcb\x75\xf5\x58\x88\x90\x4a\xa5\x5c\x46\x9d\x39\x79\x0b\x99\xa3\x0d\x26\x13\x48\x89\x98\x2c\xde\xb3\xad\x9c\x38\xb6\xa9\x7e\x3e\x98\x55\x6f\x74\x18\xf2\x25\x12\xa4\x56\x83\xa5\x3d\x35\xb9\x17\x0a\x15\x45\x1f\xa7\xa8\x3e\x46\x60\x6c\x20\xff\xbb\x07\x83\xf9\xdf\x83\x90\x79\xfe\xfc\xb9\x75\xef\xde\x3d\xef\x0f\xbc\x76\xc0\xbd\xfb\x0f\x14\x43\xa8\xef\x81\xaf\xf3\x44\xd7\x02\x31\xa3\xa3\xa3\xec\xfc\xf9\xf3\x8c\x31\xa6\xc2\x4e\x25\x32\x18\xb2\xe8\xc2\x67\xcf\x3b\x7e\x7b\x7e\x35\xf6\x29\x13\xc4\x04\x76\x5f\x9d\x79\xad\x9a\x62\xd7\xe9\x60\xbf\x15\x53\x00\xc6\x79\xb0\xaa\x54\x94\xc5\x72\x2e\x62\x4e\xad\xc4\x4b\x13\x6b\xed\xa5\xc9\xcd\xa8\x39\x9f\x8b\x58\x99\x32\x13\x46\x99\x50\x02\x81\x7b\xce\xa7\xd6\x8b\x98\xd3\x06\x23\x10\x63\x02\xb2\xc4\x49\x8d\x17\xe5\xae\x84\x2e\x0f\xf6\x6c\x2b\xe7\xd2\x5b\xe1\x4f\x12\x05\xf9\x9c\x6a\xb2\x01\x02\x14\x3b\x5a\xd6\x6a\x41\xef\x3e\x3a\xaf\x03\x35\x82\xb1\x18\xcf\xff\xe3\xcc\xc6\x57\x2f\x8e\x18\xf7\x84\x10\xda\x9d\x3b\x77\xb8\x43\x61\x04\x0d\x3c\x50\x7f\x2c\x5b\x82\xa9\x8d\x40\x7e\xa0\x20\x6b\x04\x03\xc0\xd6\x0e\xbd\x71\xe3\x06\x24\x49\x52\x89\xa8\x13\xc0\x00\x09\x9c\x3e\xb3\xda\xf6\xe5\xe7\x73\x9d\xbf\x52\x3d\x0a\x36\x5e\xe1\xfb\xbd\x6b\xa2\x6a\x58\xdf\x3f\x46\x40\x00\xba\x29\x89\x8c\x1e\x2a\x2f\x6b\x6a\x79\xb5\x20\xf3\x57\x46\x88\x67\x0b\xa1\xf2\x96\x25\x09\xc3\xd1\x49\xe3\x24\x20\xcb\x9c\x54\xd5\x64\x1d\xaa\xc5\x3a\x23\xa6\xd4\x1d\x2b\x4a\xa9\x58\x51\x4a\xcb\x9c\xba\x99\x40\xb4\xda\x07\x3e\xeb\xf1\x1a\x29\xac\x37\xc5\xbc\x4c\x18\x7f\xf9\xdb\xf9\xf5\xaf\x01\x64\x26\x27\x27\xad\xb1\xb1\xb1\x46\xba\xff\x40\x6d\x8f\x6a\x73\x8d\xf9\x79\xa1\xfb\xbe\xb6\xbc\x16\x53\xb1\x85\x85\x05\xdc\xbd\x7b\x97\x5d\xbf\x7e\xdd\x50\x14\x25\x0b\xc0\x12\x04\xe3\x69\x6a\x47\xcb\xb4\x99\xcb\x5f\xcc\x24\x7e\xd3\xad\x85\xfa\x5d\x0a\x11\xa8\x5e\x9b\xed\xfe\xdf\x87\x67\xda\xda\x37\x86\x40\x40\x34\x5c\xa6\x01\xa5\xcc\x06\x12\x46\xc8\x29\xaf\x6f\xde\x75\x9a\x3b\xdb\xb8\x8d\x56\xf7\x91\x83\xd9\x9d\x0a\xf0\x4d\x31\x16\x83\xf5\xa8\x6f\xfb\x5f\x63\xc7\xf2\x7f\xa4\xdd\x51\x3a\x68\xec\x7c\xc7\xe1\x20\x30\x2d\x23\x12\x7d\xf6\x7b\xcb\x58\x3e\x9f\xe7\x8f\x1e\x3d\x12\x27\x4f\x9e\xe4\xe1\x70\xb8\x04\xa0\x00\xc2\xb6\xa6\x58\xd9\x99\x6e\x7d\x4e\xe6\xac\xfd\xa8\xa6\xf4\x4a\x20\xe6\x1e\xc6\xde\xf8\x52\x6d\xa4\xd5\x18\x78\xca\xc8\xe7\x55\x09\x04\x9e\xed\xee\x7a\x5a\x8f\x01\x01\xb9\x88\x99\xb9\xfb\x71\xf6\x4f\x8f\xd3\x3b\x7f\x2d\x4b\x78\x0e\x20\x23\x84\x28\xde\xb9\x73\xc7\xef\x09\x42\x77\xeb\x3b\x06\x07\x81\x69\x29\x91\xe8\xd3\xe0\x9e\xf5\xd2\xd4\xd4\x94\xe8\xea\xea\x12\x89\x44\xa2\x24\x84\x28\x10\x91\x56\x66\xc8\xbf\x4c\x18\x2f\x56\x3b\x8a\x1b\x47\xb5\x50\x5f\xc4\x94\x62\xbb\xd2\xc7\x00\x7b\x7b\x1b\xd5\x2b\xb3\x83\xc7\x38\x65\xb4\x7b\xeb\xb7\x7e\x69\x15\xa6\x2c\x09\xeb\x69\x6a\x67\xec\x9f\xa7\xb3\x7f\xc8\xc4\xcc\x6f\x61\x3f\x00\xb6\x0a\x5b\x52\xa1\xec\x24\x2d\xad\x1d\x03\xbf\x40\x7a\xa0\x98\x96\x12\x89\xf0\x77\x32\x51\x5b\xcf\xfc\xfc\x3c\x15\x8b\x45\xd1\xdf\xdf\x5f\x26\xa2\x02\x80\x1d\x10\xb4\xad\x48\x79\xed\xd9\x51\x7d\xa6\x4c\x90\xbb\x77\x94\x3e\x49\x90\x54\x4b\x24\x7a\x97\xc8\x41\x64\x63\xab\x31\x8d\xaa\x2d\xb7\x0a\xf3\x2a\x66\x2e\xdf\xfd\x38\xfb\xe7\xc7\x7d\xda\xdf\x4b\x12\x7f\x04\x60\x96\x88\xd6\x00\xec\x6c\x6e\x6e\x5a\xb7\x6f\xdf\xf6\xb2\xe6\xb5\x63\x40\x08\x1e\x8b\xff\x0f\x22\x11\x0d\x2e\xc2\x93\xc9\x24\xbb\x79\xf3\x26\x62\xb1\x98\x2c\x84\x50\x9d\x04\x92\xfd\x04\x1a\xe8\x2c\xc8\x3f\xfd\xf4\x65\xfc\x17\x27\xd6\xa3\x67\x64\x01\xd9\x9d\x8a\x6c\xf3\x4e\x3b\xaf\x27\x1b\xdf\x1c\xe3\xb5\xea\x74\xd7\x5a\x8c\xc0\x76\xb8\x9c\xfb\x6e\x20\xff\xdf\xa7\x3d\x3b\xff\x29\x4b\x98\x05\xb0\x00\xe0\x15\x00\x8d\x73\x5e\x7a\xf6\xec\x19\x77\xd4\x9a\x2b\x7d\x88\xf7\x95\x48\x0c\xd8\xfa\x62\xae\x5e\xbd\xca\x4e\x9d\x3a\x65\x73\x2a\x44\x31\xd8\x9c\x51\x3f\x09\x0c\xf6\x6d\x85\x3f\xf9\xf9\x42\xfb\x17\x1f\xe5\xd4\x21\x26\xc0\xdc\x2e\xdf\x1f\xd9\xd8\x1a\x4c\x23\x04\x60\xe3\x18\x01\x3d\xc4\xb5\x27\x69\x6d\x6c\x32\xad\xfd\xbb\x10\xe2\xd3\x02\x62\x81\x6c\x6d\xb1\x1c\x11\x19\xba\xae\x5b\xf7\xef\xdf\xc7\xe2\xe2\x62\x50\xdf\xbf\x9f\x44\x62\x33\x98\xa3\x47\x8f\xe2\xca\x95\x2b\x38\x72\xe4\x08\x13\x42\xa8\xb0\xb5\xae\x92\x44\x94\x76\x1c\xe9\xe2\xa5\xc5\xf6\x6b\x03\xb9\xf0\x90\xc4\xed\xdc\x8e\x6f\x42\x36\x36\x85\xd9\x37\x01\x58\x07\xe3\x44\x9c\xef\x53\x3b\x13\x4f\x7a\xb5\xfb\x9a\x52\x9e\x25\x5b\x83\x63\x15\x40\x96\x88\x74\xd3\x34\x4b\xb3\xb3\xb3\x78\xf0\xe0\x01\x9c\x6c\xb1\x6f\x95\x24\x6c\x04\x43\xa8\xef\x81\x6f\x4c\x24\x36\x58\x0f\x03\xc0\x19\x63\x6c\x64\x64\x04\xe7\xce\x9d\x83\xaa\xaa\x32\x6c\x06\x3b\x0e\x3b\x22\xa5\x49\xa0\x3f\xa9\x85\x7e\x72\x61\x39\xf6\xd9\xf0\x46\xe4\x4c\xc4\x64\x51\x77\xb0\xf7\x4b\x36\x36\x8a\xa9\x44\x93\x26\x09\x40\xda\x55\x2e\xc0\x09\x3c\xd3\x66\xae\x3e\xed\xdd\xf9\x6e\x3a\xa9\x3f\x34\x42\x7c\x1e\x84\x25\x00\xab\x00\xb2\xb0\x75\x29\x4a\x2b\x2b\x2b\xfc\xe1\xc3\x87\x58\x5f\x5f\x7f\x67\x24\x61\x23\x98\xda\x08\x74\x20\x44\xe2\x3e\x8c\x5f\xbb\x76\x8d\x0d\x0f\x0f\x33\x49\x92\x64\x21\x84\x02\x20\x4e\x44\x5d\x42\x88\x6e\x02\xa5\xa3\x26\x1b\x1c\xce\x44\x7e\x76\x7a\xad\x6d\xa4\x47\x53\xd2\x12\xb7\xd7\x49\x95\xc5\x2a\xdc\xc8\x52\xbb\x4c\x45\xd3\x18\xdf\x6b\x87\x26\x49\x42\x5d\xe1\xda\x8b\xae\xc2\xf4\x0f\x3d\xfa\xc4\x72\xbc\xf8\x84\x33\x2c\x3b\x8a\x3f\x19\x21\x44\x0e\xb6\xdc\x42\x29\x9f\xcf\xf3\x89\x89\x09\xcc\xcd\xcd\x05\xde\x5a\x39\x4c\xb6\xf7\x67\x58\x3f\xca\xf8\x85\x35\xbf\xef\xd6\xb3\xd7\x61\x2a\xed\x77\x74\x74\x60\x64\x64\x04\xc3\xc3\xc3\x4c\x96\x65\x19\xf6\x9d\xec\x28\xec\x0c\xed\x49\x00\xdd\xc4\x91\x4a\x14\xe4\xe1\xe3\x1b\x91\x73\xc3\x1b\x91\xd3\xc9\x9d\x50\x2a\x54\x26\xc5\x75\x26\xd7\xea\x45\x8c\x86\x30\xd5\xe5\xd1\xae\xcf\x41\x18\x01\xc1\x75\x85\x6b\x4b\x9d\xc6\xfc\xdc\x91\xc2\xf7\x8b\x89\xe2\x53\x43\xe6\x4b\x20\xac\xc2\x56\xfe\xc9\x02\xc8\x03\xd0\x01\x94\x36\x37\x37\xf9\xe4\xe4\x24\xa6\xa7\xa7\xdf\x0a\x01\xd8\x2a\x4c\xbd\x29\xac\xb6\x82\x66\xdf\x7b\x3f\x37\x8b\xd9\x73\x02\xce\x42\x1b\x64\x4b\x40\xca\xb0\x1d\x29\x06\xdb\x99\xba\x84\x10\x49\x26\xa8\xbb\xbd\x28\x7d\xd4\x9b\x0f\x0f\x0d\x6c\xaa\x27\x52\xdb\x4a\x7f\x87\x21\x77\x4a\xdc\xb9\x13\x0e\xdf\x89\x0b\x00\xf9\xc4\xa0\xbd\x16\x44\x00\xda\xb5\x08\x14\x65\x6e\x64\xda\xcc\x57\xcb\x1d\xc5\xf9\x85\xce\xe2\xec\x7a\xcc\x9c\x2b\xca\x7c\x15\x84\x0c\x6c\x02\x30\x4b\x44\x79\x61\x0b\xf0\x1a\x42\x08\x6b\x7b\x7b\x9b\x8f\x8f\x8f\x63\x66\x66\x26\xe8\xdc\x1b\xe9\x9f\x77\x86\xa9\x17\x81\xfc\xac\x91\x86\x82\xb0\xcd\x62\x7c\xcb\x46\x46\x46\xd8\xd9\xb3\x67\xe1\xa8\x10\xbb\x51\x49\x85\xed\x4c\x71\x87\x0a\x88\x13\xa8\x8b\x09\x74\xb6\x95\xa4\x9e\xe4\x4e\xa8\x3f\xa9\x29\xe9\xa4\x2e\x77\x27\xf4\x50\x32\x5a\x92\x62\x8a\x45\x8a\xcc\x49\xa6\xca\x34\xec\x89\x58\x35\x1e\xe2\xcd\xbc\xc6\x09\xdc\x62\xc2\x32\x42\x5c\xdf\x0e\x97\xf3\x9b\x11\x33\xb3\x1e\x2b\xad\xae\xc7\xcc\xa5\x6c\xd4\x5c\x2c\xc9\x22\x2b\x80\x2c\x08\x39\xe7\x2a\x2a\x2f\x84\xc8\xc3\x96\x15\x30\x84\x10\x96\x65\x59\xd6\xda\xda\x1a\xa6\xa6\xa6\xdc\x8c\xf2\x41\x76\xa8\xa2\x8d\x1f\x86\x7c\x76\xb6\x7a\x81\xdc\x48\x3d\x4d\xb5\xc5\x18\xc3\xc0\xc0\x00\x86\x86\x86\x70\xfc\xf8\x71\x30\xc6\x18\x11\xc9\x8e\xb6\xa7\x22\x84\x88\x12\x51\x14\x76\x94\x8a\x03\x88\x09\x21\x62\x04\x8a\x12\x10\x0b\x95\x29\x16\xb6\x58\x47\x5b\x49\x8a\xab\x26\x8b\x85\x2d\x16\x55\x2d\x16\x0d\x95\x49\x91\x38\xc9\x92\xb0\x6f\xa7\x94\x09\x56\x99\x09\xab\x28\x73\xa3\x28\x73\xc3\x90\xb9\xae\x2b\x3c\x5f\x08\xf1\x7c\x51\xe6\x5b\x16\x13\x1a\x20\x74\xd8\x52\x03\x1a\xec\x29\x49\x83\x3d\x2d\xe9\x00\x0c\xb2\xc5\xed\x4a\x44\xc4\xb3\xd9\x2c\x7f\xf1\xe2\x05\xc6\xc7\xc7\xeb\xad\x35\xeb\xf5\xef\xa1\xc3\x1c\x9a\xcb\xf8\x06\x31\xbe\x27\x38\x34\x34\xc4\x86\x86\x86\x90\x4e\xa7\x11\x0e\x87\x99\x9b\x70\xc9\x33\xdd\xa9\x00\x14\x87\xac\x74\xb7\xae\x98\xac\xe2\x60\x64\x00\xb2\x93\xed\xab\x7a\x25\x55\x7d\x76\xc8\x82\xad\x66\xe3\xbe\x0c\x21\x84\xeb\x20\x06\x80\x12\x11\xb9\x65\x96\x73\xac\x3c\x93\xc9\x70\x57\x2a\xca\xc9\xd0\xef\x3d\x0f\xef\xb4\x1e\x74\xee\x87\x1a\x73\x28\x88\xc4\x56\x61\x5c\x25\xe4\x8b\x17\x2f\xb2\xde\xde\x5e\xa4\x52\x29\x57\x77\xdd\x7d\xf8\xcb\x55\x2f\x76\x1d\xc5\x75\x1c\x2f\x06\x0e\xc6\x4d\xdc\x04\x00\xae\x64\xa4\xdf\xd6\x75\x2e\xce\x39\x87\xa6\x69\x3c\x9b\xcd\x62\x61\x61\x01\x4b\x4b\x4b\x08\x50\x64\x7e\x27\xfd\x73\x10\x98\xc3\x18\x81\xbc\x8e\x1b\x74\x22\x68\x14\xe3\x8a\x88\x5c\xbe\x7c\x99\xf5\xf5\xf5\x81\x88\xe0\xa4\x73\xab\x44\x1a\xf7\xfb\xce\x67\xef\x7e\x38\x4e\x52\x79\x0f\xd8\x3c\x8f\x65\x59\x7c\x6b\x6b\x0b\xb9\x5c\x0e\x9a\xa6\x61\x65\x65\x05\x8b\x8b\x8b\xf5\x8e\xdd\xbb\xff\xbd\xc1\x1c\x2a\x22\xb1\xce\xc1\xfa\xb5\xd9\x32\x8c\x73\x1b\x05\xf1\x78\xdc\x4d\xb3\x57\xb1\x4c\x26\x03\xc3\x30\x00\x00\xd3\xd3\xd3\x15\x31\x3a\x47\x31\x07\xd8\xdb\x0f\x41\xe7\xfc\x5e\x62\x0e\x2d\x91\x18\x50\xb7\x9f\x23\xbe\x0d\xcc\x8f\xd6\x84\xb1\x9a\x6d\xed\x7e\xbf\xb2\xd7\xed\x6f\x06\xd3\x4c\xfb\x6f\x13\x53\xcf\x3e\x64\xcc\x9e\x4e\x0c\xea\xbc\x66\xdf\x37\x52\x67\x10\x26\x08\xeb\x67\xef\x02\xd3\xc8\x31\x7f\x88\x98\xfa\x05\xcd\x54\xd2\x02\xcc\xdb\x68\xa3\x19\x4c\x2d\xf6\x47\x0c\xaa\x97\xb0\xb5\x0b\x4f\xbf\x2f\x35\x8a\xa9\xad\x8f\xef\x13\xe3\xd7\x46\xd0\x22\xef\x6d\x60\x6a\x8f\xb9\xb6\x33\x3f\x48\xcc\xff\x00\xaf\x7b\x44\x0e\x96\x2e\xd3\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe1\xff\xf0\x7b\x3b\x4e\x00\x00") -func web_uiStaticAppleTouchIcon144x144PngBytes() ([]byte, error) { +func web_uiV1StaticAppleTouchIcon144x144PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticAppleTouchIcon144x144Png, - "web_ui/static/apple-touch-icon-144x144.png", + _web_uiV1StaticAppleTouchIcon144x144Png, + "web_ui/v1/static/apple-touch-icon-144x144.png", ) } -func web_uiStaticAppleTouchIcon144x144Png() (*asset, error) { - bytes, err := web_uiStaticAppleTouchIcon144x144PngBytes() +func web_uiV1StaticAppleTouchIcon144x144Png() (*asset, error) { + bytes, err := web_uiV1StaticAppleTouchIcon144x144PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/apple-touch-icon-144x144.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-144x144.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticAppleTouchIcon152x152Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x4f\x40\xb0\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x98\x00\x00\x00\x98\x08\x06\x00\x00\x00\x18\xc2\x20\x21\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x79\x78\x1c\xc9\x75\x27\xf8\x7b\x91\x59\x59\x27\x0a\x40\xe1\x06\x01\x90\x04\x49\x80\x04\xd9\x68\x36\xd9\x27\x9b\xdd\x6c\xf5\x25\xb6\xa4\x56\x6b\x24\xb9\xbd\xb2\x65\x8d\xec\x59\x79\x76\x3f\xef\xee\xac\xd7\x3b\xab\xdd\xf5\x37\xf3\xed\x8c\x77\xd7\xdf\xec\x7c\xf3\xf9\xf3\xe7\xf1\xce\x6a\x34\x5a\xd9\xb2\x65\xc9\x96\x2c\x79\xd4\x2d\xb5\xfb\x52\x77\xb3\xef\x6e\xb2\x9b\xf7\x4d\x10\x04\x40\xdc\x28\x14\x0a\x75\x66\x65\xc6\xdb\x3f\xf2\xa8\xac\x44\x16\x0e\x1e\x1e\x7b\xbc\x81\xaf\x90\x99\x71\xbc\x7c\x11\xf1\xe2\xbd\x17\x2f\x5e\x44\x12\x00\x81\xda\x20\x03\xe2\x36\x92\x7e\xb3\xe1\x76\xc3\xbf\x15\xc1\xc1\x71\xa3\x6d\x15\x94\xff\x3f\x6b\x58\xc2\x13\x29\x51\x0b\x14\x9e\xab\x37\x0f\xea\x5c\xeb\xfd\x82\xd2\xfd\xf0\xd6\x82\x5f\x2f\xce\x9f\xb6\x5a\xfc\xad\x84\x15\x94\x16\x84\xbb\xf0\xc5\xfd\xbd\x83\x45\x58\x9b\x5b\xac\x87\xa3\xf8\x5f\x54\x2f\xff\x7a\x46\xc5\xdf\x05\x0e\xe6\x84\x8d\xe2\xba\x5a\xfd\xff\x3e\xc0\x5a\x11\x6e\xa6\xa3\xfd\x65\x83\x60\xdd\x2a\x42\x5a\xcf\xbb\xfe\x53\xc0\xfa\x7b\x1f\x84\xe7\x2a\x50\xdb\x98\x41\xf7\xfe\x38\x81\x60\x18\x5e\x31\xeb\x87\x5b\x0f\xe6\x6a\xb0\xfc\xef\xf4\x97\x93\x01\xf9\x6f\x27\x2c\x6f\xdc\x6a\xb0\xfc\xef\xff\xfb\x08\xeb\xef\x44\x58\x8b\xab\x6c\xa4\x22\xb7\x12\xd6\xff\x1f\xd6\x11\x6e\x46\x94\x05\x71\x1d\xff\x7d\x50\x5a\x3d\x38\x41\xb8\x6c\x74\x34\xd4\xcb\x7f\xab\x60\xad\x56\x76\xa3\x69\xff\xd9\xc3\x52\x7d\x09\xb2\x5e\x46\x5f\x9e\xf5\x74\x50\x50\x3e\x7f\x87\xd5\x53\x08\x57\x23\xe8\xb5\xde\xb1\x5a\xfe\x55\x61\x75\x75\x75\x09\x45\x51\xdc\x88\x8e\x8e\x0e\x1c\x3b\x76\x0c\x07\x0e\x1c\x70\xf3\xcf\xcd\xcd\xa1\x58\x2c\x0a\x00\x98\x98\x98\x90\x6d\x6d\x6d\x62\x6e\x6e\xce\x0f\x77\x35\xbc\xea\xb5\x49\xbd\xf6\xfa\x3b\x0d\x8b\xea\x14\x0c\x02\x54\x6f\x4a\xea\x2f\xe3\x47\x6e\x35\xd8\xeb\x81\xb5\x5a\xd8\x68\x7e\x00\xc0\xe0\xe0\xa0\x68\x6d\x6d\x45\x3c\x1e\x47\x73\x73\x33\x1a\x1a\x1a\x00\x40\x10\x11\x88\xdc\x26\xa9\x69\x3c\x66\x76\xd3\xec\x7b\xe9\xdc\x33\xb3\x04\x80\xeb\xd7\xaf\xc3\x34\x4d\x4c\x4d\x4d\x41\xd7\x75\x5c\xb8\x70\xa1\x5e\xdd\x36\x82\x77\xbd\xf6\xfd\x3b\x01\x6b\x3d\x66\x0a\x6f\xf0\x73\xb8\xd5\xcc\x13\xb7\xd2\xd8\x77\x23\xf0\x00\x40\xf6\xf6\xf6\x8a\xae\xae\x2e\x6c\xda\xb4\x09\x0d\x0d\x0d\x88\x44\x22\x2e\x17\x65\x66\x57\x34\x13\x91\x0a\x40\x80\x21\x42\x92\xd4\x90\x49\xaa\x22\x49\x25\x86\x4a\x20\x01\x00\x0c\x96\x92\x60\x18\x0a\xeb\x15\xc1\x86\x29\x58\x82\x60\xd8\x04\x26\x89\x48\x32\xb3\xb4\x89\x4f\x02\x90\xb9\x5c\x0e\xf3\xf3\xf3\x98\x9f\x9f\xc7\x47\x1f\x7d\x14\x54\x1f\xbf\xed\x31\xa8\x4d\xd6\xca\xfb\xb7\x16\x96\x9f\x83\xad\x27\xdc\x10\xd7\xf8\x1b\x80\xe5\x86\xbd\x7b\xf7\x8a\xae\xae\x2e\x74\x76\x76\x22\x14\x0a\x55\xf5\x3b\x86\x0a\x40\x53\x25\x69\x71\x5d\x49\x34\x17\xd4\x9e\xe6\xa2\xda\x9f\x28\xab\x3d\x8d\x45\xa5\xb7\xa1\xac\x76\x87\x4c\x6a\x0a\x99\x94\x0c\x49\x4a\x10\x3b\x04\x66\x35\x18\x13\x24\x03\x86\x29\xb8\x64\x08\xce\x55\x14\xce\x96\x42\x72\x7e\x39\x6c\x4c\x67\x23\xe6\xf8\x52\xc4\x18\x5d\x8a\x18\xa3\x99\x98\x31\x5d\x08\x99\x05\x49\xd0\x01\x18\x0e\x11\x12\x91\x2c\x14\x0a\x72\x7a\x7a\x1a\x57\xaf\x5e\xc5\x95\x2b\x57\x6e\x79\xdd\xff\xb6\x05\x87\xc0\xea\x89\xc0\x20\x31\xe6\xcd\x1f\x14\x17\xc4\x65\xfc\x14\xee\x2f\xe7\xcd\xe3\xcf\x5f\x8f\xab\xb9\xd7\x68\x34\x2a\xb6\x6d\xdb\x86\xc1\xc1\x41\xb4\xb4\xb4\x00\x96\x6e\x29\x00\xa8\x42\x22\xd2\x50\x56\x52\x6d\x39\x6d\x4b\xe7\xb2\xb6\xb7\x33\xab\xed\x6f\x2e\x84\x86\x22\x86\xe8\x11\x8c\x24\x98\x04\x08\x00\x33\x00\xb2\x6e\x6b\x86\x1d\x03\x4c\x20\xb2\xb3\x78\x03\x59\xc9\x8e\x54\xb5\x92\xd9\x30\x05\xd2\xf9\x90\x39\xb2\x90\xa8\x9c\x9d\x6e\xd0\x8f\x4d\x37\x94\x4f\xce\x27\x2a\x63\xc5\x90\xcc\xb1\x43\x74\xd6\x4f\x8e\x8d\x8d\xe1\xc2\x85\x0b\xb8\x7a\xf5\xea\x7a\xb8\x9b\xb7\xcd\xd6\xc3\x59\xfe\x93\xc3\xda\x28\x07\x5b\x8d\x48\xd6\x4b\x44\x41\x71\x37\xcc\xc9\x0e\x1f\x3e\x2c\xba\xba\xba\x1c\x4e\x65\x71\x28\x93\x62\x9d\x59\xad\xbf\x2f\x13\x39\xd0\x9b\x09\x3f\x94\xca\x87\xf6\x69\x26\x75\x02\xa4\x7a\x2b\x6c\x91\xd4\xca\x50\x2f\xde\x9b\x0e\x3b\x0f\xdb\x04\xe6\x94\x09\xba\x32\xb8\x54\x0a\xc9\xd1\xb9\x44\xe5\xe8\x58\x73\xe9\xcd\x6b\xcd\xa5\xf7\x16\xe2\x95\x69\x26\x14\x00\x18\xcc\x6c\x94\xcb\x65\x79\xf9\xf2\x65\xbc\xf3\xce\x3b\x1b\xd5\x41\x81\x9b\xd3\x63\x6f\x2b\x2c\xf2\x47\xd4\x79\x61\x3d\x02\x0a\xe2\x78\xfe\xfb\x8d\x5e\x11\x50\xbe\x06\x8f\xdd\xbb\x77\x8b\xdd\xbb\x77\xa3\xa9\xa9\xc9\x21\x2a\x55\x48\x24\x3a\x97\xb5\xfe\x1d\x73\xb1\x4f\x6e\x5d\x88\x3e\xd9\x50\x56\x86\x05\x23\xe6\x54\x90\x41\x20\x87\xc7\xb8\xf7\xd5\xd4\x5a\xa2\x22\x37\xa6\x5a\xc6\x4b\x38\x56\xba\xcd\xef\x6a\xe2\x9c\x5c\xe4\xc9\x5d\xfb\x56\x86\x29\x38\xbd\x18\x35\x3e\xba\xd4\x56\x78\xee\x52\x5b\xf1\xf5\x4c\xd4\x98\x64\x42\x09\x80\x6e\x9a\xa6\x4c\xa7\xd3\xf2\xd8\xb1\x63\x18\x1b\x1b\x5b\x4d\xc7\x59\x6d\xa0\xaf\xb7\x2f\x6e\x3b\xac\x20\x25\x3f\x88\x5d\xfa\x43\x3d\x02\x41\x9d\xfb\xf5\x8a\xdf\xba\x62\x31\x12\x89\x88\x3b\xef\xbc\x13\xbb\x76\xed\x82\xa6\x69\x02\x80\x06\x46\xa4\xb1\xa4\xb4\x6f\x9f\x8f\x3d\xba\x73\x26\xf6\x85\x96\x7c\xe8\x7e\x01\x8a\x55\xfb\xd9\x2b\xbf\xec\xc8\x1a\x16\x56\x65\x3f\x8c\xea\x2c\xb1\xb6\x9c\x0f\x96\xff\xea\xe4\xf1\xf0\x35\x17\x16\xd7\xf0\xba\x15\xe5\x99\x00\x53\x20\x3d\xd5\x50\x7e\xfd\x4c\x57\xfe\xcf\x47\x53\xa5\x0f\x4a\xaa\x4c\xc3\x16\xa3\x73\x73\x73\xf2\xdc\xb9\x73\x38\x7f\xfe\xfc\x7a\x27\x53\x6b\xb5\xf3\x6a\x7d\x75\x5b\x60\xdd\x88\x92\xef\x0d\xeb\x65\xa1\x1b\x1d\x31\x35\xe1\x9e\x7b\xee\x11\x43\x43\x43\xd0\x34\x4d\x25\x22\x95\x18\xb1\xce\xac\xd6\x7f\xc7\x54\xe2\x17\xfb\x17\x22\x5f\x0c\x1b\xa2\x8f\x36\x2c\xed\x7d\x61\x2d\xb9\x18\x94\x97\x01\x90\xa7\x60\x3d\x39\xe9\x24\x32\xad\x8c\x67\x47\xe7\x63\x63\x39\x6c\x9e\xbd\xd0\x5e\xf8\xde\xe9\xae\xfc\x5f\x2d\x45\x8c\x59\xd8\x22\x74\x61\x61\x41\xfe\xe5\x5f\xfe\x65\x3d\xd1\xb5\x9e\xfb\xd5\xc2\x6d\x85\x55\x8f\x83\xad\xc6\xbd\x82\xc2\x7a\x47\xc5\x5a\x65\xbd\xcf\x72\x70\x70\x50\xdc\x75\xd7\x5d\x48\x26\x93\x02\x80\x46\x12\x89\x9e\xa5\xf0\xd0\xfe\xf1\x86\x7f\xd4\x9b\x89\x7c\x56\x30\x92\x8e\x62\x0e\xf8\x74\x23\xcf\xb5\x5e\x08\xca\xb7\x11\x58\xde\xbc\xf5\xde\xe5\x87\x5d\x0f\x1f\xaf\xb0\xd6\x15\x9e\xb8\xdc\x5a\xfc\xfe\xb1\xde\xec\x77\xd3\x31\x63\x0c\x84\x02\x33\x1b\x0b\x0b\x0b\xf2\xc3\x0f\x3f\xc4\xf8\xf8\x78\x3d\x29\xb3\x5e\xf1\xe7\x2d\x7b\x5b\x61\xdd\x2c\x07\xbb\x1d\x41\x00\x90\xcf\x3c\xf3\x8c\x68\x6f\x6f\xb7\x08\x0b\x14\xeb\xca\x6a\x43\xf7\x8e\x25\xbf\xd6\xb7\x18\xf9\xac\x22\x29\x59\xed\x11\x4f\xf7\x91\xc3\x25\xd8\xee\x75\xaa\x8a\x2f\xb2\xbb\x97\x9d\xbc\x08\xa0\xaa\x75\xc2\x42\x00\x6c\x47\xcc\xfa\x61\x3b\xf0\xbd\x22\xda\x3f\x1d\xad\x03\x4b\x57\x79\xf2\x42\x7b\xe1\x4f\x8f\xf5\x66\xff\x24\x13\x31\x26\x00\x94\x98\xd9\xb8\x72\xe5\x8a\x7c\xed\xb5\xd7\xfe\x4e\x98\x38\x1c\x0e\x56\x4f\x2f\xaa\xa7\x3f\xf9\xd3\x82\xa8\xdd\x9f\x7f\xcd\x20\x84\x10\x0f\x3c\xf0\x00\x06\x06\x06\x10\x0a\x85\x34\x00\x91\x64\x51\xe9\xbe\xff\x5a\xe3\x3f\xde\x31\x17\xfd\xb2\x2a\x29\xe5\x98\x0c\x00\x4f\x87\xba\x81\x6d\x15\x27\x78\x6e\xe8\xe6\x66\x80\xa9\x6a\x7e\xd8\x08\x2c\xc7\xa2\x5f\x55\xed\x9d\x78\x0f\x9d\xf8\xd2\x9c\x18\xe7\xce\x49\x59\x2f\xac\x62\x48\x8e\x1c\xdf\x94\xfb\x83\x13\x9b\x96\x7f\x54\x56\x39\xc3\xcc\x25\x5d\xd7\x8d\x77\xdf\x7d\x17\x17\x2f\x5e\xac\xa7\x7c\x3b\x71\xc0\xea\x5c\x68\x35\x65\xfd\xa6\x61\x6d\xd4\x92\xbf\xd1\xb0\x6e\xf1\xd8\xdd\xdd\x8d\x4f\x7c\xe2\x13\x88\xc5\x62\x2a\x00\x2d\x6c\x8a\xd4\xf0\x64\xe2\xb3\x77\x8f\x27\xff\x69\xc4\x10\x7d\xd5\xf9\x58\xb5\xdb\xfc\x6a\x93\xbf\xa3\x9c\x3c\x4e\xa8\x15\x69\x37\x06\x2b\x48\x2c\xae\x16\xe7\x85\xe7\x9f\xbb\xfa\xe1\xae\x06\x8b\xc1\xc8\x44\x8d\x0f\xde\xde\xba\xf4\xbb\x23\x2d\xc5\x77\x4c\xe2\x1c\x00\x7d\x7c\x7c\x5c\xbe\xf9\xe6\x9b\xc8\xe7\xf3\x5e\x90\xeb\x69\x77\xa0\x96\x68\xea\xe5\xbf\x29\x58\xab\x89\xc8\x8d\xd8\x40\xd6\xcb\xb1\x02\x4d\x11\x77\xdd\x75\x97\xd8\xb7\x6f\x1f\x14\x45\xd1\xc0\x48\x74\x2f\x69\x43\x0f\x8f\x34\xfd\x76\xc7\xb2\xf6\x28\xd8\x63\xbb\x0a\x50\x88\x1c\xe9\xe5\xef\x11\x66\xbb\x72\x5e\x65\xda\xf3\x78\xc3\xb0\xd6\x63\x3c\xab\x77\xef\x7f\xbc\x01\x58\xa6\xe0\xc2\x95\xd6\xe2\x9f\xbe\xd5\x9f\xf9\x83\xa5\xb0\x31\x46\x44\x25\x5d\xd7\x8d\x57\x5e\x79\x05\x13\x13\x13\x41\x1c\x05\xd8\xb8\x2d\xab\x1e\x77\xda\x30\x2c\xc5\x2e\xc8\xf6\x95\x50\xdb\x8c\xe4\x49\xab\x77\xf5\x36\x11\xd5\xf9\x39\x79\x6b\xf2\x44\xa3\x51\x3c\xfd\xf4\xd3\xb4\x7d\xfb\x76\x21\x84\x88\xaa\x26\xb5\xde\x77\x2d\xf9\x2b\x9f\xb8\xdc\xfc\xfb\xc9\x72\xe8\x0e\xcb\xca\xee\xe9\x5d\xf2\xe8\x52\x64\xeb\x33\x36\x75\x38\xa2\x86\x40\x96\xf8\xf3\xea\x3b\x8e\x98\xbb\x15\xb0\xfc\xe9\x0e\xf5\xd9\xb0\xac\x32\x55\xae\xe3\x5b\x20\xaf\xe6\xb9\x41\x58\x02\x14\x4a\x15\xd4\xfd\x3b\xe6\x62\x8f\xe4\xc3\x72\x3c\x1d\xab\xcc\x08\x45\x18\x3b\x76\xec\x60\xc3\x30\x30\x33\x33\xe3\x6f\x6f\x87\xa3\xac\xd6\x7f\xfe\x38\xd4\x89\xdb\x30\x2c\xc5\x6d\x55\xeb\xca\x01\xcf\xf0\x5c\xa9\x4e\x9e\xb5\x7e\x4e\x59\xe9\xc4\x75\x77\x77\xd3\xe7\x3e\xf7\x39\x34\x34\x34\xa8\x04\x8a\xb7\x14\x42\x3b\x3f\x75\xb6\xe5\x5f\xed\x9c\x8d\xfd\xd7\x0a\x8b\xb8\xdb\xf1\x5e\x1a\x75\xf5\x21\xcf\x90\x76\x89\xc3\x43\xe7\x6e\x1c\x6a\x89\x68\xa3\xb0\x5c\x62\xf4\xc2\x25\x0f\x57\x21\x1f\x1c\x3f\xdb\xf1\xe1\xe4\x0d\x37\x03\x0b\x04\xcd\x14\x6d\xdb\x16\xa2\x9f\x49\xe8\x8a\x36\xd5\xa8\x9f\x33\x15\x94\xda\xdb\xdb\x8d\xe3\xc7\x8f\x7b\x75\xa0\xa0\xfe\xf2\x5f\x19\xb5\x1c\xcb\x9f\xff\xa6\x60\x11\x56\x9a\x08\x10\x10\x17\x68\x46\xf0\xc5\xfb\x43\xa0\xc1\x14\x80\xd8\xbf\x7f\x3f\x86\x87\x87\xa1\xaa\xaa\x46\xa0\xe4\x8e\xb9\xe8\xc3\x8f\x5c\x69\xfe\xdd\x98\x2e\xb6\x13\x03\x2b\xe4\x86\x23\xa6\x02\xc4\xd7\x5a\xe2\xad\xa6\x09\x7c\xb0\x98\x01\x26\x86\xa1\xb0\x5e\x0c\xc9\x42\x2e\x6c\xe6\x96\xc3\x46\xa6\x18\x92\x85\x62\x48\x16\x74\x45\x96\x4c\xc1\xd2\x14\x30\x88\x01\xc1\x50\x43\xa6\xd0\x22\x06\x45\xa2\x15\x25\x16\xd3\x95\x44\xa2\xac\x24\x13\x65\x25\x11\x36\x44\x44\x61\xa8\xe4\xb5\x75\x79\xf1\x72\x50\x61\x5f\xed\xfc\x5c\xd6\x8b\xab\x9b\x5e\x1f\x16\x88\xe5\x78\x53\xf9\x8f\xfe\x72\x78\xf6\xeb\x44\x94\x3d\x7e\xfc\xb8\xf1\xc1\x07\x1f\xac\x47\x31\xbf\x11\x33\xc5\x86\x61\xa9\x9e\x04\x51\x27\xe3\x7a\x26\x01\x41\x76\xb0\x20\xa2\x14\xfb\xf7\xef\xc7\xbe\x7d\xfb\x04\x11\x69\x8a\x49\xa9\xfb\xaf\x25\xbf\x7a\xd7\x44\xc3\xd7\x55\x46\x02\xc0\x0a\x2a\xb1\xee\xec\xc5\x66\x9b\xcb\x38\x03\xde\xeb\xa3\x05\xd4\xa6\x33\xb1\xdd\x91\x55\xf1\xc7\x00\x2a\x82\xf5\xe5\x88\x99\x9d\x6e\xd0\x27\xa7\x93\xe5\xb1\xf9\x78\x65\x7a\x29\x62\xcc\x96\x43\x72\x59\x12\x0a\x0c\x6b\xc9\x06\x96\x07\x84\x61\xbb\xe0\xd8\xa8\x91\x80\xe5\xe2\xa3\x02\xa4\x02\x88\x90\xe5\x9d\x91\x88\x97\x95\xe6\xe6\xa2\xda\xd9\xbe\xac\x75\x77\x65\xb5\x9e\xd6\x7c\xa8\x3d\x5a\x51\x12\x82\x21\x18\x80\x35\x63\xe5\xea\xa2\xb9\x2b\xb5\x3d\xf8\x79\xb8\x99\x5b\x7b\x67\x30\xd8\x05\xac\xb8\x2a\x2c\x5d\xe1\xc2\xb1\xde\xe5\x0f\x01\x44\x98\x39\x97\x4c\x26\x83\xfa\x47\xf8\xee\xa5\xaf\xcf\x82\xfa\xb8\x5e\xbf\x6f\x08\x96\x8a\x95\x4a\xdb\x7a\x4c\x14\x7e\xea\x5e\x2d\xdd\x2d\xff\xe4\x93\x4f\x8a\x2d\x5b\xb6\x08\x66\x8e\x44\x2a\xa2\xfb\xb1\x8b\xcd\x5f\xdf\x3e\x1f\xfd\xaa\xe3\x6f\x65\x85\x5a\xd6\xe4\x34\xab\xd7\xa4\x00\xb7\xe1\xab\xc4\x58\xc3\x15\xd8\xee\x0e\x5b\xbf\xc9\x6b\x32\x37\xd9\x58\x1e\xbb\xd6\x5c\xba\x7c\xbd\xb1\x7c\x39\x1b\x31\xa6\x4c\xe2\x0c\x80\x1c\x11\xe5\x98\xb9\x40\x44\x25\x66\x2e\x11\x91\xc1\xcc\x3a\xc1\xf2\xe9\xb2\xdd\x6c\x1c\xc7\x42\x8b\xc8\x00\xc1\xcc\x2a\x00\x8d\x01\x4d\x17\xac\xe9\x51\x19\x5b\x8c\x56\x62\x23\xa9\x62\x82\x40\x49\xcd\xa4\x54\x5b\x4e\xdb\xdc\x9b\x09\x6f\xdf\x9c\x8e\x6c\x6f\xcd\x87\x3a\x55\x49\xaa\x33\x58\x5c\xb6\xe4\x11\xc9\xe4\x5d\x15\x80\xc7\xa6\x06\xa0\x3a\xff\xb4\xf5\x47\x10\x24\xb1\x7c\x67\xcb\xd2\x8f\xae\x35\x97\xce\x13\x91\x01\x40\x56\x2a\x15\xa7\x15\xd6\x33\x49\xab\x67\x66\xf2\xc2\xb8\x29\x58\x8e\x5b\x8b\x3f\x93\xff\x05\xfe\x7b\x3f\x12\xf5\xc4\xa1\x1b\x3e\xf3\x99\xcf\x88\xee\xee\x6e\x15\x40\xa4\xa1\xac\xf6\x3d\x75\xae\xe5\x5f\x77\x67\xb5\xc3\xb5\x53\x77\x9f\x2c\x73\xe3\xc8\x5e\x4e\x71\x78\x52\x55\xf9\xad\xe6\xa8\xa6\x33\x11\x2a\x42\xea\xe3\xcd\xa5\x91\x0b\xed\xf9\x93\x13\x4d\xe5\xf3\x85\x90\x9c\x02\x21\x0d\xc0\x22\x2c\x50\x0e\x40\x01\x40\x89\x88\x74\x00\x86\xed\x28\xe8\x5c\x5d\xaf\x55\x17\x23\x8b\x32\x84\x7d\xef\x70\x69\x9b\xa3\x41\xb3\xaf\x31\x00\x31\x5d\xe5\xc4\xf5\xa6\x72\xd3\xf5\xa6\x72\xd3\x87\x7d\xd9\xd6\xe6\x42\x68\x73\xff\x42\x74\xcf\xc0\x6c\x6c\x4f\xaa\xa0\xb6\x93\x07\xe3\x15\xf8\x63\xc5\x90\x59\x91\xc6\x00\xce\xb7\x17\x3e\x38\xd9\x9d\x7b\x11\x84\x59\xbb\x2e\x72\x64\x64\xc4\xdb\xfe\xf5\xc4\x5e\xbd\xb0\x11\x53\xc5\xba\x60\x79\x45\xa4\x13\xb9\x1e\x63\xaa\x37\x9f\xff\x5a\x13\x42\xa1\x10\x0e\x1f\x3e\x2c\x3a\x3b\x3b\x55\x30\x62\xcd\x45\x75\xe0\x33\x67\x5a\x7f\x3f\x55\x50\xef\x5f\x69\x17\xaa\x2a\xbd\xec\x11\x0d\xce\x84\x6f\x85\x1e\x06\x80\xd9\x23\x32\xc1\x58\x8a\x98\xe9\xb3\x9d\xf9\xe3\xe7\x3b\xf2\x47\xb3\x61\xf3\x2a\x80\x79\x10\xe6\x61\x13\x16\x33\xe7\x6c\x82\x72\xfc\xb2\x1c\x16\x0f\xd3\x34\x65\xb9\x5c\xb6\xe1\x32\xc6\xc7\xc7\x57\xd4\x47\x51\x14\x6c\xda\xb4\xc9\xc2\x96\x08\xd1\x68\xd4\x69\x27\xd7\x43\x96\x88\x54\x66\xd6\x00\xc4\x88\x28\x66\x10\x27\xe7\xe2\xfa\xd9\xf9\x78\xe5\xc3\x63\xbd\xd9\xce\x4d\x99\xf0\xee\x3d\xd3\x89\x7b\xb7\x2c\x44\xb6\x87\x24\x69\xde\xd1\xe2\xf2\x6f\xef\x3c\xc4\x9b\x60\xdf\xce\x26\xf4\xb1\x37\xb6\x2d\xfe\x89\x14\xb8\xcc\xcc\xf3\x00\x4a\xd7\xaf\x5f\x97\xd7\xaf\x5f\xf7\xa2\x1b\xd4\xaf\xf5\xb8\xd4\x7a\xd3\x36\x04\x4b\xf5\x25\xfa\x89\xcb\x5f\x28\xe8\x65\xce\xf3\x8a\xfb\x50\x28\x84\x4f\x7e\xf2\x93\xe8\xea\xea\x52\x99\x39\xd6\x9a\x0f\x0d\x7d\xfa\x6c\xcb\x1f\x34\x15\xd5\x7d\x16\x97\xf7\xba\xb5\xd8\xc1\x99\xa2\xdb\x62\xc9\x9a\xfc\x51\xad\xbe\xe5\xea\xd1\xec\x4e\xc4\x16\xe2\x95\xe9\x8f\x37\xe5\xde\xbb\xdc\x56\xf8\xb0\xac\xf2\x18\x80\x59\xa0\x4a\x58\xb0\x74\x2b\xc3\x16\x81\xb2\x5c\x2e\xcb\xe5\xe5\x65\x5c\xbf\x7e\x1d\x1f\x7c\xf0\x81\x6c\x6d\x6d\x15\xf3\xf3\xf3\x6b\x59\xb2\x6b\x46\xad\x10\x02\xa9\x54\x0a\x42\x08\xd9\xdb\xdb\x2b\x9b\x9b\x9b\xd1\xd8\xd8\x88\x96\x96\x16\x87\xc3\xe5\x00\xa8\x44\xa4\x01\x88\x31\x73\xc2\x14\x94\xba\xd6\x5c\xba\x3c\xd6\x5c\x7e\xbf\x35\x1f\xda\x35\x3c\x99\x38\x30\x38\x1b\xdb\x13\x36\x29\xe2\xe5\x64\xfe\x15\x06\xa6\xaa\x3e\x96\x0f\xc9\xec\x2b\x03\xe9\xef\x94\x43\x7c\x96\x99\x27\x01\x64\xf3\xf9\xbc\xf1\xf6\xdb\x6f\x43\x4a\x19\xd4\x67\x75\xeb\xe0\x7b\x5e\x8f\x2e\xb6\x21\x58\x7e\x3e\x1c\x04\xbc\x5e\x43\xaf\x19\x1c\xb1\xc8\xcc\xb1\x54\x21\xb4\xf3\x1f\x9c\x6a\xfb\x66\x43\x59\xd9\xe3\x8a\x03\xf6\xd8\x30\x6c\x42\x71\xf5\x27\x58\xa2\xce\x6b\x7b\xf2\xb2\x30\xa7\xdc\x52\xc4\x4c\x7f\xd8\x97\x3d\x72\xa9\xad\xf0\xae\xae\xf0\x18\x08\x93\xf6\x88\xce\x10\x51\x81\x99\x5d\x0f\xd2\xf9\xf9\x79\x4c\x4d\x4d\xe1\xbd\xf7\xde\x0b\xe2\xd2\x6b\xb5\xc1\x86\xd2\x77\xec\xd8\x21\x3a\x3b\x3b\xd1\xdf\xdf\xef\xb8\x17\x09\x58\x62\x34\x42\x44\x09\x00\x29\x00\x9d\x60\x74\xa7\x0a\xea\xae\xfd\xe3\xc9\x47\x06\xe7\x62\xc3\x8a\x84\xea\xd8\xc4\xac\x41\xe6\x70\x6f\xeb\xd9\x24\x96\x2f\x0f\xa6\xff\xe8\x7c\x7b\xe1\xc7\x0c\x3e\x4b\x44\xb3\xcc\x5c\xfa\xe6\x37\xbf\x69\x6c\x10\xef\x8d\xe4\xbb\x61\x58\xe4\x4b\xa8\x37\xdd\xac\xb7\xe6\x14\x14\x27\x00\xe0\xe0\xc1\x83\x18\x1a\x1a\x52\x01\xc4\x9a\x0a\xea\xc0\x67\x4f\xb7\xfe\xbb\xe6\xa2\xba\xcf\xab\x6d\xb8\xc4\xc5\xa8\xba\x29\x7b\x67\x58\x4e\x1e\x3b\x8e\x3c\xe2\xb3\xa4\x99\x85\xe3\xdd\xb9\x77\x8e\x6f\x5a\x7e\xad\x1c\xe2\xcb\x00\x26\x61\x71\xad\x0c\x2c\x7d\x44\x07\x20\xe7\xe6\xe6\xe4\x95\x2b\x57\x70\xf2\xe4\xc9\xd5\xf4\x88\x7a\x57\x7f\xdd\xfd\x5c\x3a\x88\x73\x07\x2a\xcc\x87\x0e\x1d\x12\x5b\xb7\x6e\x75\x88\x4d\x05\x10\x01\xe0\x10\x5a\x37\x18\x3d\x1d\xcb\xda\x9d\x07\x46\x1b\x0f\xf7\x2e\x86\xb7\x0b\x47\xe7\xf2\xee\x66\x02\xe3\xa3\x9e\xe5\x57\xde\xec\x5f\xfa\x26\x08\xa7\x01\x4c\x00\x28\x9c\x38\x71\x42\xbe\xff\xfe\xfb\x37\x84\x17\x56\x32\x8f\x7a\x6d\x73\x43\xb0\xfc\x04\xb6\x56\x58\x0f\x27\x13\xfb\xf7\xef\xc7\xfe\xfd\xfb\x05\x80\x58\xbc\xac\x6c\x79\xe6\x74\xeb\x1f\xb6\xe5\x42\x07\xc9\xab\x99\x03\x1e\x7d\xcb\xeb\xec\x87\x00\xbe\x6a\x53\x20\x01\x12\x2c\x47\x53\xa5\x8b\x6f\xf5\x67\x9e\x4f\xc7\x8c\x53\x20\x8c\x01\x98\x06\x90\x86\x4d\x58\xe5\x72\xd9\x18\x1f\x1f\xc7\xcf\x7f\xfe\xf3\x40\xfc\xd6\x59\xd7\x8d\xe4\x5f\xad\xd1\x6b\xc2\xce\x9d\x3b\xc5\xd0\xd0\x10\x5a\x5a\x5a\x9c\x9d\x4c\x11\x66\x4e\x12\x51\x2b\x80\x6e\x45\xa2\x7f\x70\x26\x7e\xe8\x81\x6b\xc9\xc7\x13\x65\xc5\x75\x47\x62\x30\xc6\x9b\xca\xe7\x9f\xdb\x3d\xff\x7b\x15\x95\x8f\x02\x18\x03\x90\x1d\x1d\x1d\x35\x5e\x7a\xe9\xa5\x7a\xef\x5c\x37\x5e\xeb\x08\x37\x04\xcb\x6b\x68\xad\x67\x40\x0b\x02\x5a\xaf\x8c\xd8\xb2\x65\x0b\x9e\x78\xe2\x09\x41\x44\x91\x90\x41\xdd\x4f\x9f\x69\xfd\xd7\xbd\x99\xf0\x67\xab\x2f\x74\x96\x46\xac\xe0\xb7\x2b\x3a\x7c\xab\xea\x82\x5c\x0d\xc5\x90\xcc\xbd\xbd\x75\xe9\xa5\x73\x1d\xf9\xd7\x6c\xe5\x76\x82\x88\xe6\x61\xe9\x3a\x7a\xa5\x52\x31\x4e\x9f\x3e\x8d\x53\xa7\x4e\xa1\x54\x2a\x6d\xb4\x41\xeb\x0e\x98\x75\xd4\x1d\x01\x79\xea\x8e\x6e\x22\x12\x1d\x1d\x1d\xb8\xef\xbe\xfb\xd0\xde\xde\xee\x10\x5a\xcc\x26\xb4\x4e\x30\xfa\x1a\xca\xca\x1d\x0f\x5f\x69\xfa\xdc\xb6\xf9\xe8\x10\x01\x62\x39\x6c\xce\xff\x68\x78\xee\xdf\x64\x62\xc6\x5b\xcc\x3c\x42\x44\xe9\x4c\x26\xa3\x3f\xf7\xdc\x73\x28\x16\x8b\xeb\x95\x3e\xeb\xe1\x3a\xb7\x14\x16\x61\x25\x11\x05\x29\xee\xfe\xe7\xc0\x29\x6a\x7b\x7b\x3b\x3e\xfd\xe9\x4f\x23\x14\x0a\x45\x84\x44\xfb\x63\x97\x9a\xbf\x3e\x34\x1d\xff\xaf\xbc\x3a\x57\x8d\x07\x28\x80\x95\x26\x77\x1f\xfb\xb2\x5d\x8b\x27\x9a\xca\x23\xaf\x6d\x5f\xfc\x61\x3a\x6e\x7c\x0c\x60\x14\x96\x48\xcc\x02\x28\x48\x29\x8d\x13\x27\x4e\xe0\xf4\xe9\xd3\x28\x16\x8b\x7e\xb4\x6e\x47\x58\x4b\xa4\xae\x47\xb4\xb8\x69\xcf\x3c\xf3\x8c\xe8\xe8\xe8\x70\x74\xb4\x18\x80\x56\x00\x3d\x42\x62\xfb\x9e\xe9\xf8\x27\xee\xbd\x96\x7c\xf4\x95\x81\xc5\xef\x5c\x4d\x15\x5f\x24\xa2\x8b\xcc\x3c\x6b\x18\x46\xe9\xc5\x17\x5f\xc4\xe4\xe4\xe4\xba\xdf\xb3\x51\xbc\x6e\x05\xac\xb5\x94\xfc\xb5\x42\x0d\x15\x7f\xf1\x8b\x5f\x14\xa9\x54\x4a\x03\xa3\x69\xff\x44\xc3\x57\x1e\x1c\x69\xfc\x1d\x01\xd2\xdc\xdc\x81\xe2\x6f\xf5\x20\x89\xe5\xf1\xee\xdc\x3b\xef\x6d\x59\xfa\x71\x59\x91\xe7\x89\x68\x14\xd6\xec\x30\x07\x40\x9f\x9c\x9c\x94\xcf\x3f\xff\xfc\x7a\x74\xc4\x1b\x0d\xeb\x1d\xf5\x1b\x81\xb3\xe2\x7e\xe7\xce\x9d\xe2\x81\x07\x1e\x40\x28\x14\x72\xf4\xb3\x26\x00\xed\x60\x74\x36\x94\x95\xd4\x72\xd8\x9c\xb0\xd5\x81\x59\x00\x85\x23\x47\x8e\x48\x8f\xaf\xfe\x6a\xd2\xe7\xa6\xf0\xba\x59\x58\x5e\x11\xe9\x84\x40\xee\x84\x60\xaa\x05\x60\xcd\xf0\x9e\x7c\xf2\x49\xf4\xf5\xf5\xa9\x44\x94\xec\x5b\x0c\x1f\x7c\xfa\x74\xeb\x1f\xab\x92\x92\x80\x4f\xa1\x5f\xe5\xde\x1b\x18\x80\xae\x70\xe9\xc8\xb6\xcc\x4f\xce\x76\xe6\x5f\x64\xc2\x45\x58\x4a\x6d\x1a\x40\xa9\x58\x2c\x1a\x6f\xbd\xf5\x96\x77\x3f\xe1\x5a\x5c\xb8\x5e\x67\x04\x89\xc0\x1b\x51\x70\x11\x10\xbf\x9e\x7c\x35\x79\x1e\x79\xe4\x11\xb1\x7d\xfb\x76\x41\x44\xaa\x3d\xdb\x4c\x00\x50\xed\x55\x86\x2c\x80\xc2\x85\x0b\x17\xe4\x1b\x6f\xbc\xb1\x11\x42\xb8\x69\xbc\x6e\x14\x96\xbf\x5f\xd7\x0b\xb4\x26\x0c\x0e\x0e\x8a\x43\x87\x0e\x09\x00\x89\x64\x51\x19\xf8\xc2\xc9\xf6\x3f\x6e\x2c\xa9\x3b\x1d\x3b\x44\x75\x21\xba\xba\xee\xe6\x06\x67\xfa\xe8\xc6\x5b\x64\x97\xd3\xcc\xec\xcb\x83\x8b\xdf\xbf\xd6\x5c\x7a\x0d\x04\x67\x96\x98\x01\xa0\x5f\xb9\x72\x45\xbe\xfa\xea\xab\xb7\x8a\x43\xfd\xad\x0b\x9b\x37\x6f\x16\x0f\x3e\xf8\x20\xe2\xf1\xb8\xea\x59\x31\x90\x00\x8c\xa9\xa9\x29\xf9\xdc\x73\xcf\xdd\x70\xdd\x07\x06\x06\xc4\x9e\x3d\x7b\xd0\xda\xda\x0a\x1b\x2e\x98\x19\xa5\x52\x49\x2e\x2c\x2c\xe0\xcc\x99\x33\xb8\x76\xed\xda\x2d\x6b\x5b\xbf\x0e\xe6\x84\x75\x8f\xdc\xa6\xa6\x26\xf1\x85\x2f\x7c\x01\x8a\xa2\x44\x14\x89\xce\x4f\x9d\x6d\xfd\xdd\xfe\x85\xc8\xb3\x41\x5b\x31\xd8\xf3\xbf\x7a\xf1\xba\x2a\x5b\xb3\xc5\x6c\xc4\xc8\x3c\xbf\x7b\xfe\x3f\xcc\x26\x2a\xef\x32\x2c\x13\x04\x11\xe5\xa4\x94\xfa\xbb\xef\xbe\x8b\xb3\x67\xcf\xba\xfe\x54\x3e\x9c\xbd\x61\x3d\x3a\x25\x7c\x71\xeb\x81\xb5\x1a\x07\x0c\xe2\x7e\x6b\x29\xd0\x81\xb0\x34\x4d\x13\xc3\xc3\xc3\xe8\xef\xef\x47\x53\x53\x13\x96\x97\x97\xf1\xd1\x47\x1f\x39\x07\xaa\x6c\x08\x96\x73\xff\xec\xb3\xcf\x0a\xcf\x5e\x52\x67\x69\xcb\x29\xef\x2c\xee\x1b\xd7\xaf\x5f\x97\x3f\xfd\xe9\x4f\xd7\x53\x8f\x35\xeb\xb8\x11\x11\xe9\x4f\x97\x42\x08\xf1\xcc\x33\xcf\xa0\xad\xad\x4d\x03\xa3\x69\xef\xf5\xc4\x2f\x3d\x7c\xa5\xe9\x5f\x11\x48\xad\x5d\x51\xab\xce\x1b\x7d\x2b\x3d\x9e\x54\x6b\xd6\xb8\x18\x35\x66\x9f\xdf\x3d\xff\x1f\xd2\x71\xe3\x5d\x00\x97\x61\xe9\x1c\xb9\x6c\x36\x6b\x7c\xff\xfb\xdf\x5f\x2f\x6e\x35\x78\x06\xc4\x6d\xa4\x9e\x41\xb0\x56\x13\xcb\xab\xc1\x0a\xca\x77\xdb\x61\x6d\xdb\xb6\x0d\x8f\x3e\xfa\xa8\x20\x22\x4d\x48\xc4\x36\x2f\x46\xf6\xee\x9a\x89\xff\x83\xae\x25\x6d\xaf\x2a\x29\x56\xd0\xe4\xec\x68\xaa\xf4\xc6\xd9\xce\xdc\xf3\x0b\xf6\x2e\xa6\x72\xb9\x6c\xfc\xec\x67\x3f\xc3\xdc\xdc\xdc\x4d\xe1\xe5\xe5\x60\xfe\xb0\x96\xc2\x27\xee\xba\xeb\x2e\xdc\x7d\xf7\xdd\x82\x88\x12\xa9\xbc\x3a\xfc\xec\xc7\x1d\x3f\x88\x98\xa2\xbd\x76\xd7\xb3\x77\x19\xd7\x0a\xec\xb9\xf3\xae\x47\x66\x22\xc6\xfc\x73\x7b\xe6\xfe\xfd\x42\xdc\x78\x1b\x1e\xe2\x9a\x9b\x9b\x93\x3f\xfe\xf1\x8f\xd7\x1a\xa5\x37\x1a\x6e\x16\xd6\x5a\x93\x80\xd5\xe2\x6e\x3b\xac\xed\xdb\xb7\x8b\x43\x87\x0e\x41\x51\x94\x48\x44\x17\x9d\x9f\xb8\xdc\xfc\x5b\x3b\xe6\xa2\xbf\x46\xa0\x88\xb5\xe6\x59\xdd\x78\x52\x56\x79\xec\xc3\xbe\xec\xff\xf1\x51\xcf\xf2\x5f\x31\x21\x5b\x2a\x95\xf4\xef\x7c\xe7\x3b\xf5\xda\x66\x5d\x71\x0a\x5c\x1f\x90\x9a\x1f\xfb\x9e\x81\xaa\xb7\xa2\x73\xcf\x87\x0f\x1f\x26\x55\x55\xc3\x42\xa2\xe3\x89\x8b\xa9\xff\xad\xb5\xa0\xed\x73\x14\x2e\xaf\x23\x4d\x95\xd4\xbc\xa0\x3d\xc4\xc5\x8c\x5c\x58\x66\x9f\xdb\x3d\xff\x8d\xf9\x78\xe5\x2d\x10\x5d\x66\xe6\x69\x00\xf9\xd1\xd1\x51\x2f\xbb\xf6\xcf\x0f\x7c\x0b\x99\x6e\x25\x1d\x5c\xbd\xe9\xde\xe7\x9b\x81\x25\x7c\x57\xf2\xa5\xf9\xdb\xcb\xdf\x6e\xab\xc1\xbc\xa5\xb0\x1a\x1a\x1a\xe8\x89\x27\x9e\x40\x28\x14\x8a\x84\xa4\x68\x7f\xea\x7c\xcb\xff\xbe\x6d\x21\xfa\x6b\x04\x6b\x39\xca\xed\x21\xfb\x56\x65\xd1\xd8\x9b\x09\x3f\x51\x56\xe5\xc4\x74\x83\x7e\x45\x51\x15\xbd\xb3\xb3\x93\x2f\x5d\xba\x84\x1b\xc5\xcb\xa1\x38\xff\x0f\x01\xcf\xde\x38\x1c\x3e\x7c\x58\x68\x9a\xa6\x82\x91\xd8\x35\x13\x7f\x72\x73\x3a\x72\xb8\x96\x37\x01\xc4\x54\xdd\x02\xc8\x80\xeb\x51\xc7\x6c\x39\xda\xc1\x8a\x2b\x85\x64\xe1\xc5\x9d\x0b\x7f\x34\x97\xa8\xbc\xcd\x16\xe7\x9a\x06\x50\xb8\x7a\xf5\xaa\x7c\xf9\xe5\x97\x6f\x64\xf4\xd6\xe0\x5a\xe7\xf9\x46\x61\x05\x5d\xbd\xa3\xdc\xff\xce\xd5\xca\xdf\x56\x58\x77\xdc\x71\x07\x22\x91\x88\x4a\x44\x89\x3d\x53\xf1\xcf\x6e\x49\x47\x9e\xb5\xda\xdd\xf6\xff\xaf\x3d\x46\x08\xc4\x80\x90\x14\xb9\xff\x5a\xe3\x3f\x4b\x15\xd4\x01\x00\xb1\x4d\x9b\x36\x79\x71\xd9\x30\x5e\xce\x0c\xc5\x1f\xfc\xf1\x35\x9d\xd0\xd3\xd3\x23\xfa\xfa\xfa\x04\x80\x48\xac\x22\xfa\xee\xbb\x96\xfc\x27\x96\xbd\xcb\x1a\x17\x35\x7b\x2b\x00\xdb\x0b\xa0\xca\x0c\xbd\xbe\x4e\x52\xc0\x78\x63\x5b\xe6\x87\xe3\x4d\xe5\x37\x6c\x85\x7e\x96\x99\x0b\x57\xaf\x5e\x95\xaf\xbc\xf2\xca\x6a\x8a\x6c\xbd\xe0\x94\x11\x9e\xbc\xde\xfb\x9b\x85\xe5\x87\xb9\x5a\x58\x4f\xdb\xde\x36\x58\xfd\xfd\xfd\x00\xa0\x09\x89\xd4\x1d\x53\x89\x7f\x48\x4c\xaa\xc3\x87\xc8\xd9\x7f\xe0\x4e\xe2\xab\x7d\x12\x36\xa8\x73\xd7\x4c\xfc\x19\x58\xee\x46\xe2\xe1\x87\x1f\x5e\x0d\xbf\x55\xf1\x0a\x42\xce\x4f\xb1\xfe\x1f\x1e\x78\xe0\x01\x00\x50\xc1\x48\xee\x1b\x6f\xf8\x52\x43\x59\x19\xb0\x96\x75\x2c\xca\x62\x62\xb0\xbd\xd0\xc3\x2e\xb5\x55\x07\x4c\x35\x9d\xf1\x51\xcf\xf2\xcf\xcf\x75\x14\x5e\x00\xe1\x22\x11\xcd\x12\x51\x6e\x74\x74\x54\xbe\xfa\xea\xab\xf5\xf0\x03\xea\x73\x1d\x2f\xfe\xf0\xe5\xbd\x55\xb0\xea\x35\xa8\x1f\xae\x5f\x6f\x5d\x0d\x87\xdb\x02\x2b\x1a\x8d\x0a\x22\xd2\x92\x25\xb5\xbb\xb1\xa8\xee\xac\xe9\x23\xd8\x3e\x29\x8e\x37\x81\xd3\x27\xd6\xa6\x08\xf4\x64\xc2\x07\x14\xa6\x26\x00\xda\xe6\xcd\x9b\xa1\x28\xca\x0d\xe1\x15\xe4\x32\xed\xaf\x68\xcd\x68\x1f\x18\x18\x10\xcd\xcd\xcd\x02\x40\x2c\x55\x50\xb7\xdf\x31\x95\xf8\x4a\x75\xae\x08\x77\x74\x78\x95\x99\x5a\xe5\xa2\xea\xdf\x74\xad\xb9\x74\xf6\xfd\xcd\xd9\x1f\xc0\x32\xa2\x4e\x03\xc8\xcd\xcf\xcf\x3b\x62\x31\x70\x62\x81\xda\x4e\x0e\x52\x40\x83\xca\x02\xb7\x0e\x56\x50\x83\xae\x25\x66\x83\x66\x77\xde\x70\xcb\x61\xed\xdd\xbb\x57\x10\x91\x60\x66\x2d\x56\x11\x9d\x0a\x23\x42\xb6\x58\xf1\xf4\x96\xfd\xdf\x73\x22\x90\x1d\x93\xd0\x95\x6e\xc1\x94\x34\x59\xaa\xd1\x68\x54\x98\xa6\xe9\x77\x07\x5a\x17\x5e\x7e\x97\x69\x7f\x85\x6b\xee\x15\x45\xc1\x9d\x77\xde\x09\x58\x47\x27\x25\xf7\x4d\x34\xfc\x8a\x66\x52\xab\x93\xee\xd8\x52\xc1\x8e\x23\x60\x95\x07\x7b\xb6\x6f\x00\x60\xe4\x35\x33\xf3\xfa\xf6\xcc\x77\x0d\x85\xcf\xc3\x32\xa2\xe6\xb2\xd9\xac\xf1\xa3\x1f\xfd\xc8\xdb\xe9\xfe\xce\xf7\xe3\x56\x0f\xdf\x20\x4e\x73\xab\x60\xad\x55\xc6\xff\x8e\xa0\xb0\x91\xb4\x1b\x82\x15\x0e\x87\x01\x58\x0b\xeb\xba\xc2\x92\x09\x92\xd8\x39\x6b\xb6\x4a\x66\xb4\x42\x44\x5a\x57\xdb\x04\xaf\x3a\x8e\x9f\xaa\xaa\x0a\xc3\xa8\xa1\xb1\x75\xe1\x55\x4f\x4c\x04\x2a\x6c\x5b\xb7\x6e\x75\x0e\x7d\x8b\xb4\xe6\x43\x03\x03\x73\xb1\xcf\x91\xc3\x6f\x1d\xf4\xbc\xfa\x96\x2d\x1d\xc9\xa7\x50\x4a\x82\x3c\xb2\x6d\xe9\x87\x99\xa8\xf1\x11\x80\x09\x66\xce\x9a\xa6\xa9\xdb\x62\xd1\xfb\xfe\x7a\x93\x8e\x20\xa5\x73\x3d\xf9\x6f\x25\xac\x20\x5c\xb1\x0a\xac\xa0\xf6\xbd\x6d\xb0\xde\x7f\xff\x7d\x09\x00\xcc\x2c\xb3\x11\x23\x53\x08\x99\x69\x27\xad\xc6\x64\xb4\xd2\x9d\x05\x0c\xc6\x4c\x83\x3e\x62\x08\xd6\x01\xab\x3f\x0d\xc3\xb8\x21\xbc\x82\xc4\x44\xbd\x11\x2b\xf6\xef\xdf\x0f\x22\x52\xc1\x48\xde\x75\x3d\xf1\xcb\x21\x93\x52\x5e\xa4\xd8\xc6\xbe\xe6\x9e\x19\x4c\xb5\x2e\xc0\x97\x5b\x8b\x1f\x5d\x6a\x2b\xbc\x0c\xc2\x18\x33\xa7\x01\xe8\xef\xbf\xff\x3e\x3c\xe7\xcd\x07\xea\x7e\xbe\x6b\x3d\xee\x12\x54\xe6\x56\xc3\xf2\x07\xff\x40\x0d\x12\x5b\xd2\xf7\xec\xbd\xde\x16\x58\xf6\x8e\x28\x5d\x57\x39\x7b\xb1\xad\xf8\x9e\xdf\xfd\xc9\xe5\x00\xd5\xfc\xd6\x0b\x09\xc6\xb9\x8e\xfc\x3b\xb0\x8f\x8d\x02\x20\x55\x55\xbd\x21\xbc\xbc\x8d\xeb\x1f\x49\x35\xf7\x03\x03\x03\x68\x6c\x6c\x14\x00\x22\xc9\x92\xb2\x65\xc7\x5c\xec\x33\xc4\x64\xaf\x35\x7a\x94\x45\x00\x1e\x2d\x12\x44\xb6\xb5\xcb\x7e\x2e\x84\x64\xf6\xed\xad\x4b\x3f\x60\xc2\x28\x80\x79\x22\x2a\x5d\xbd\x7a\x55\x9e\x3e\x7d\x7a\x3d\x1c\xc3\x9f\x1e\xa4\x33\xad\x97\xfb\xdc\x0c\x2c\x6f\xf9\xd5\x74\x2a\x2f\x2c\xff\x20\xf6\xe3\x70\x4b\x61\x45\xa3\x51\x21\xa5\x94\xcc\xac\x33\x73\xe6\x58\xef\xf2\x73\x99\xa8\x31\xc9\x60\xdb\x44\x01\x4b\xaa\xd8\xdb\xf1\x98\x9d\x85\x3c\xc6\xa5\xb6\xc2\x07\xd7\x9a\x4b\x1f\x32\x73\x0e\x80\x31\x3d\x3d\xed\x70\xb0\x0d\xe3\xe5\x1f\xb9\x75\x47\xc3\xf6\xed\xdb\x61\xef\x05\x4c\xde\x31\x95\x78\x26\x64\x8a\x94\x35\x63\x84\xbd\x0b\xde\xd2\xaf\xd8\x26\x34\xef\xee\x7d\x00\x8e\xac\xc4\xd1\xbe\xec\xcf\x96\x22\xc6\x49\xdb\x90\x9a\x2b\x95\x4a\x86\x6d\x8e\x08\x7c\x6f\x1d\xdc\xea\x89\xf6\x7a\x30\x6e\x25\xac\x7a\xfa\xe1\x5a\xb0\xbc\x75\xac\xc7\x4d\x6f\x19\xac\x62\xb1\x28\x27\x26\x26\x00\xcb\x75\x3c\x9d\x0f\x9b\xe7\x7f\xb6\x6b\xe1\x1b\x8b\x51\x63\xba\xc6\x3c\x61\xf7\x9b\x33\xfb\x1f\x49\x95\x4e\xfe\x7c\xc7\xe2\xb7\x4d\xe2\x31\x58\xfe\x76\xc6\xa9\x53\xa7\xfc\xef\x5a\x37\x5e\xce\x77\x53\x9c\xe9\x83\xd7\x2c\x5a\x13\x7f\xe8\xd0\x21\x45\x08\x11\x89\x54\x44\xdf\xa3\x97\x9a\xff\xb9\x66\x88\x26\x87\x88\xd8\xb3\x29\x96\x80\xaa\xfb\xb3\x2b\x16\x2d\x15\x72\x3e\x5e\x99\x78\x7d\x7b\xe6\x5b\xa6\x82\x73\x44\x34\x03\xa0\xf4\xfa\xeb\xaf\xf3\xe2\xe2\xa2\xff\xbd\xde\xe0\x4f\xf3\x5a\xdd\x85\xe7\xea\xaf\x43\x50\xb8\x15\xb0\x82\x70\x65\xd4\xe6\x17\x75\xee\xfd\x79\x6f\x2b\xac\x2b\x57\xae\xf0\xf0\xf0\x30\x2b\x8a\x62\x02\xe0\x42\x58\xe6\x2e\xb7\x16\xae\x02\xd0\xe2\xba\x92\x0c\x49\x0a\x03\x20\x43\x61\x63\x3e\x6e\x4c\xbe\xbf\x39\xfb\xd7\xef\x6d\xcd\x7e\x4f\x57\xe4\x69\x22\x9a\x00\xb0\x9c\x4e\xa7\x0d\xfb\xe4\xeb\x1b\xc2\x2b\x68\x16\xb9\x82\x4d\x3f\xf8\xe0\x83\x42\x08\x21\x00\x24\xfa\xe7\xa3\x07\x13\xba\xd2\x67\xd9\x4d\x00\xcb\x9a\xea\x91\xee\x9e\xa9\xae\x1d\x01\xc7\xf9\xf9\xc3\xbe\xec\x4f\x74\x95\x2f\xc3\x72\x18\x2c\x5d\xbd\x7a\x55\x8e\x8c\x8c\xf8\xe5\x76\xd0\xc8\xf0\x87\x20\x85\x72\xd5\x3a\xdc\x42\x58\xfe\x11\xbc\xda\x88\xf6\xe7\xf3\xdf\xdf\x76\x58\x1f\x7f\xfc\x31\xee\xbd\xf7\x5e\x9d\x88\xe6\x99\x59\xe6\xc3\xb2\xf4\x66\xff\xd2\xc4\xfb\x9b\xb3\xdd\x89\xb2\xd2\xa1\x4a\x8a\x94\x54\x99\xcb\x6b\xe6\x75\x53\x60\x12\x84\x09\x02\x4d\x02\xc8\x4a\x29\x75\xfb\x6c\xd8\x1b\xc6\xcb\x7f\x36\xc5\x8a\x8c\xaa\xaa\x8a\xcd\x9b\x37\x03\x96\x45\x38\xb9\x73\x36\xf6\x74\xed\x56\x7f\xa0\x6a\x8a\xa8\xae\x32\x56\x53\xac\xd8\xd9\x84\x3e\x72\xa5\xb5\xf8\x26\x6c\x7b\x97\xae\xeb\x86\xc7\xde\xe5\x0f\xab\x89\x39\x7f\x85\x83\xee\xbd\x75\xb8\x1d\xb0\xfc\xb3\xa8\x7a\xa2\xce\x9f\xf7\x6f\x1c\xd6\x89\x13\x27\x24\x11\xe1\x9e\x7b\xee\x29\xd8\xc7\x0b\x14\x40\x98\xd5\x55\x1e\x49\xab\x46\xcc\xce\x6f\xd8\x1b\x92\x33\xb0\x77\x65\x19\x86\xa1\xbf\xf2\xca\x2b\x41\xed\xb4\x21\xbc\x54\x5f\xe2\x0a\x45\x77\xf3\xe6\xcd\x22\x91\x48\x08\x66\xd6\x52\x05\xad\xbf\x2b\xab\xdd\x8d\x3a\xa1\x6a\x49\xe1\xea\x93\x65\x80\xc1\x47\x3d\xcb\x2f\x99\x84\x09\x66\xce\x10\x91\x7e\xee\xdc\x39\x2f\x22\xfe\xfb\xd5\xb8\x4f\xbd\x32\xf5\xca\xdd\x2e\x58\xfe\xfb\xf5\xc0\xaa\x57\xc7\xdb\x0a\xeb\xf8\xf1\xe3\x52\x4a\x89\x7d\xfb\xf6\x95\x34\x4d\xb3\x88\xcc\x92\x22\x8e\x04\x33\x6c\xe2\xd3\x01\xe8\x4b\x4b\x4b\xf2\xc8\x91\x23\x98\x9a\x9a\xba\x69\xbc\xbc\x22\xd2\x3f\x62\x01\x54\x95\x7b\x02\xc5\xfa\x17\xa2\x87\x54\x49\xc9\x95\x9f\xb7\xa8\x3e\x33\x50\xdd\x30\x6a\xc3\x58\x8c\x19\x13\x57\x5b\x8a\x6f\x33\x78\x96\x88\x0a\x86\x61\x18\x27\x4f\x9e\xf4\x23\xe5\x45\x6e\xbd\x1d\x5f\x8f\x78\xea\xb1\xf4\x5b\x05\x2b\x48\x1c\xad\x06\x2b\x88\x43\xd5\x13\x8b\xb7\x05\xd6\xc9\x93\x27\xe5\xc9\x93\x27\xf1\xd0\x43\x0f\x19\xfd\xfd\xfd\x46\x38\x1c\x2e\xf9\x9c\x36\xe5\xf2\xf2\x32\xce\x9c\x39\x83\x53\xa7\x4e\x79\x27\x1b\x37\x85\x57\xd0\x52\x51\x0d\xa0\xde\xde\x5e\x61\x9f\x4d\x9f\xec\x5f\x88\x3e\x62\x59\xeb\xc9\x25\x2a\x6b\xd3\xac\xad\x67\x39\x1f\x18\xb0\xa8\x0c\x80\x65\xc2\x38\xdb\x91\x3f\x52\x56\xe4\x04\x80\x0c\x33\xeb\x67\xce\x9c\x71\xb6\x5a\xd5\x43\xd6\xdf\x60\x41\xb8\xad\x35\x9b\x09\x2a\x7b\xab\x60\xad\xc6\x15\xfd\xb0\xfd\xf9\xeb\xd5\xf5\x6f\x04\xd6\x9b\x6f\xbe\x29\xdf\x7c\xf3\xcd\xf5\xe4\xbd\x25\x78\x79\xcf\xa6\x08\x04\x6c\x2b\xf7\x91\xa6\xa2\xda\xd7\x9a\x0b\x0d\x3b\x4a\xbb\x67\x19\xde\xb2\xd4\x7b\x4f\xe7\xa3\xea\xc8\x28\xab\x9c\xbb\xd4\x56\x78\x13\x16\x4b\x2e\xe8\xba\x6e\xd8\x56\xe6\x7a\xfa\xce\x6a\x3a\x49\x3d\xdd\xc3\x1f\xb7\x16\xa1\xdc\x0c\xac\xb5\xde\xe3\x0f\xf5\xb8\x4a\x3d\xfd\xe5\xa6\x60\x6d\xde\xbc\x59\xf4\xf6\xf6\xba\x05\xde\x7a\xeb\xad\x0d\xc3\x4a\x24\x12\x18\x1a\x1a\x42\x57\x57\x17\xe2\xf1\xb8\x5b\xa0\x52\xa9\x88\xab\x57\xaf\xe2\xe8\xd1\xa3\x41\x6d\x12\x08\x2b\x68\x16\xe9\x22\xfc\xf0\xc3\x0f\x3b\x99\x23\x7d\x8b\x91\x07\x14\x76\x0e\xe8\xf0\x19\xb9\x3c\xf7\xd5\x35\x48\x6b\x59\x7b\xac\xa9\x74\x3a\x1b\x35\x47\x08\x94\x06\xa0\xdb\xa7\xbf\xac\xa6\x78\x07\x21\x1d\x24\xbe\x83\x44\xbb\x37\x8f\x5f\xb7\xbc\x55\xb0\x56\x4b\x0f\xc2\xdf\xfb\xde\x7a\x9c\xf9\xa6\x60\x69\x9a\x86\x83\x07\x0f\x62\xfb\xf6\xed\x8e\x58\x73\x7e\x18\x1a\x1a\x92\x00\xa4\x69\x9a\xf2\xcc\x99\x33\xf8\xf8\xe3\x8f\x85\x73\x82\x90\x1f\x56\x3c\x1e\x17\x7b\xf7\xee\xc5\xee\xdd\xbb\x01\xfb\x1b\x50\x5e\x58\x00\x8c\xe6\xe6\x66\x63\xdf\xbe\x7d\xf2\xda\xb5\x6b\xf2\xf5\xd7\x5f\xaf\x0b\xcb\x29\xe3\x3f\xbe\xa9\x26\xf3\xa6\x4d\x9b\x1c\xe3\x6a\xa2\x6f\x31\x72\xaf\x95\xc4\x2e\x01\x79\x3f\x0a\x55\xfb\x39\xa9\x6a\xdc\x85\xf6\xc2\x5b\xa8\x6e\xeb\x97\x67\xcf\x9e\x0d\x7a\x9f\x3f\x6e\x35\xd6\xef\x27\x9c\xb5\xf2\xae\x06\xfb\x66\x60\xad\x96\x77\x35\x8e\xb4\x56\xdd\x37\x04\x6b\xcb\x96\x2d\xe2\xc0\x81\x03\x48\x24\x12\x2a\x00\x4d\x31\x11\x6b\xcb\x6b\x7d\xa9\x7c\xa8\xdb\x14\x6c\xa4\x63\x95\x89\x74\xbc\x32\x09\x45\x29\x0d\x0f\x0f\xeb\x5b\xb7\x6e\x35\xbe\xf7\xbd\xef\x05\xe2\xf0\xa9\x4f\x7d\x4a\x34\x37\x37\xab\x00\xb4\x48\x45\x34\xf5\x2f\x44\xee\xdf\x9c\x8e\x3c\x18\xad\x28\xad\xa5\x90\x4c\x5f\x6f\x2c\x7f\x78\xb9\xb5\xf8\x4e\x5e\x33\xe7\x37\x6f\xde\x5c\xfa\xfc\xe7\x3f\x5f\x17\x96\x73\xe3\xff\x66\xb7\x9b\xa1\xb9\xb9\x19\x89\x44\x42\x00\xd0\xa2\x86\x92\xea\x58\xd6\x86\xbd\xeb\xf0\xde\xe3\x1e\x6b\x56\x88\x3c\xfa\x57\x31\x24\x33\x13\x4d\xe5\x13\xce\xcc\x71\x61\x61\x41\xda\x3b\x91\xeb\x35\x9c\x3f\xee\x46\xc5\xc8\x5a\x0a\xf0\xaa\xb0\x76\xee\xdc\x29\x3a\x3a\x3a\x90\x4c\x26\xd1\xdc\xdc\xec\xc6\xa7\xd3\x69\x2c\x2f\x2f\x63\x69\x69\x09\x53\x53\x53\x98\x99\x99\x59\x4d\xcc\xd6\x8b\x5f\x4b\x44\xae\x1b\xd6\x8e\x1d\x3b\xc4\xa1\x43\x87\x04\x11\xa9\x42\x22\x39\x34\x13\x7f\x74\xdf\x78\xc3\x6f\x34\x96\xd4\xbd\x82\x11\x03\x20\x25\xa1\x90\x8e\x55\x3e\xf8\xa0\x2f\xfb\xfb\x97\xda\x8a\xef\x25\x12\x89\xdc\x57\xbe\xf2\x15\xfd\x85\x17\x5e\xf0\xae\xfd\xc2\xde\x71\xa4\x82\x91\x18\x98\x8b\x3e\xfc\xe0\xd5\xa6\x7f\x96\x2c\x29\xc3\x00\xa9\x56\xb7\x33\x76\xcc\x45\xe5\xbd\x63\xc9\x8b\xef\x6c\x59\xfa\x17\x67\x3a\xf3\xaf\x38\xb0\x3c\x7e\xfb\x2b\x70\x75\x4e\x99\x5e\x61\x11\x1e\x1c\x1c\xa4\x9e\x9e\x1e\x02\x90\xe8\xc8\x69\x77\x0f\x4f\x26\xbe\x24\x98\x14\xc0\xa1\x9f\xaa\x2f\x37\xc1\xd1\xc1\x6c\xaa\xb3\x19\xd9\xd5\x96\xd2\x47\xe7\x3b\x0a\x3f\x21\xa2\xeb\xcc\x9c\x3f\x7d\xfa\xb4\x9c\x9e\x9e\xae\x67\xbd\xf6\xc7\x39\xcf\xfe\x55\x05\x6f\x67\x04\xf9\xd1\x7b\xad\xf0\x41\xd6\xe5\x40\x58\x7b\xf6\xec\xa1\x87\x1e\x7a\x88\x1e\x7a\xe8\x21\xa5\xaf\xaf\x8f\x5a\x5a\x5a\x42\x89\x44\x22\x14\x0a\x85\x54\x45\x51\x54\x55\x55\xd5\x86\x86\x06\xb5\xa5\xa5\x45\x6c\xda\xb4\x89\x06\x07\x07\xb1\x73\xe7\x4e\xa8\xaa\x8a\xe9\xe9\x69\x2f\x91\xb0\x0f\x07\xff\xbb\xd7\x13\xb7\x2e\x58\x9f\xff\xfc\xe7\x89\x88\xc2\x21\x29\x5a\x1e\xbf\x98\xfa\x9f\xef\x1d\x4b\xfe\x6e\xd4\x10\x5b\x6c\xef\x62\x22\x86\x20\x46\x38\x56\x51\xfb\xb7\x2d\x44\x3f\x17\x92\x54\xb8\xde\x54\x3e\xa7\x84\xd4\x4a\x7f\x7f\xbf\x79\xe2\xc4\x09\x09\x80\x0f\x1f\x3e\x2c\xda\xdb\xdb\x55\x02\x25\xef\x98\x8a\x3f\xfd\xf8\xc5\xd4\x37\x23\x15\x65\x33\x08\xc2\x51\x87\x6c\xb5\x9a\x42\x52\xb4\x6e\x49\x47\x3e\x55\x51\xe5\xe4\x74\xb2\x72\x45\x0d\xa9\x7a\x7b\x7b\x3b\x5f\xbe\x7c\x59\x06\xd5\xc7\x7b\x4e\xbe\x37\x88\x5d\xbb\x76\xa1\xa5\xa5\x25\x04\xa0\x71\xc7\x7c\xec\x53\x5b\xd2\x91\x43\xd5\xc3\x78\xe1\x21\x2e\xeb\xc1\xeb\x0c\x6d\xc5\x31\x3e\xee\xc9\x3d\x37\x97\xd0\xdf\x05\xd1\x1c\x11\x95\x7f\xfa\xd3\x9f\x9a\xf5\xde\x07\xaf\x4f\x62\x35\xce\xbb\x84\xe3\x25\x0e\x0f\x35\x07\x12\xa5\x40\x2d\x11\xf9\x97\x83\x5c\x58\x83\x83\x83\x74\xf8\xf0\x61\xea\xef\xef\x17\xd1\x68\x34\x44\x44\x11\xc5\x40\x73\x3c\x6b\x6e\x4b\x01\xc5\x9b\xce\x00\x00\x20\x00\x49\x44\x41\x54\xce\x99\xf7\x34\xcc\x1b\x0f\x26\xe7\xcd\x03\x89\x8c\x79\x47\x34\x27\x7b\x15\x13\x11\xa9\x0a\x53\x2a\x40\x38\x1c\xa6\xee\xee\x6e\x39\x3c\x3c\x0c\x00\xf0\x0c\x1e\xff\xfb\x82\xea\xca\x75\x9e\xe1\x7b\x0e\x84\xf5\xd4\x53\x4f\x89\xc6\xc6\x46\x8d\x40\x8d\x0f\x8c\x36\xfe\x97\xc3\x53\x89\xff\x89\x98\x94\x1a\x3f\x2f\xcf\xc4\x4b\x80\x42\x9d\xcb\xda\x83\x79\xcd\xbc\x32\x93\xd0\x47\x54\x55\xad\xa4\x52\x29\xd6\x34\x8d\x86\x87\x87\x05\x80\x78\x5b\x5e\xdb\x73\xf8\x5c\xcb\xff\xa3\x99\x22\x65\x35\x72\x7d\x58\x5d\xd9\xf0\x3d\xe3\xcd\xe5\x37\x73\x9a\x31\xdf\xd8\xd8\x58\xc9\xe5\x72\x58\x58\x58\x58\x51\x27\xff\x09\x87\x4e\x90\xed\xed\xed\x82\x99\x85\xf5\x21\xaa\xf0\x1e\xcb\xc6\xe5\xd9\x19\xc4\xd5\x25\xa2\x9a\xd6\xb1\xb7\x40\x55\x04\x97\x26\x1b\xcb\xa7\x40\x94\x03\xa0\x2f\x2c\x2c\xf8\x67\x71\x40\xb0\x28\x40\x40\xbe\x15\xf8\x05\x94\xa9\x07\xd7\xb9\xaf\x81\xd5\xd8\xd8\x88\x07\x1f\x7c\x10\x9b\x36\x6d\x12\x44\xa4\x81\x39\x16\x5f\x34\x07\x5a\xc6\x2b\xbf\xd0\x30\x6f\x3e\xa9\x56\x78\x0b\x18\x91\x15\xef\x25\xe8\xa6\x8a\x89\x5c\x4a\xfd\xf9\x42\x4f\xe8\x07\xb9\x56\xe5\x64\x28\x14\xca\xdd\x7b\xef\xbd\xfa\xae\x5d\xbb\xf0\xb3\x9f\xfd\x0c\x4b\x4b\x4b\x0e\x2e\x6b\xcd\x54\x57\xab\x43\x90\xc8\x71\xef\x7b\x7a\x7a\x04\x11\x45\x5a\xf2\xa1\x81\xe1\xc9\xc4\x7f\xeb\xe6\xb7\x59\x8d\xab\xc2\xb8\x3b\xbc\x18\x42\x22\x72\xff\xb5\xc6\xaf\x5f\x6a\x2b\xbe\x57\x0e\xc9\xd2\x96\x2d\x5b\x0c\x7b\x95\x46\x25\x50\x72\xdf\x44\xc3\xaf\x86\x4d\xea\x64\xb2\x37\xe5\xac\x02\x4b\x33\xa9\x7d\xdf\x44\xe2\x57\x5f\x18\xd2\x2f\x03\x28\x0d\x0c\x0c\xe8\x17\x2e\x5c\x58\x81\x77\x5d\x97\xe9\xa6\xa6\x26\x00\x50\x15\x93\x12\x2d\xf9\x50\xbf\x65\xe2\xaa\x2a\xf7\x8e\xfe\xe5\xf5\x83\x64\x58\xff\x88\x08\xd9\x48\x65\x3a\x1b\x36\x27\xec\x13\x9c\x8d\xe9\xe9\x69\xa0\x56\xdf\xa8\x47\x30\x41\x4a\xf7\x5a\xb3\xc2\x7a\x8a\x3b\x7c\x79\x5d\x58\x4f\x3f\xfd\xb4\x88\x46\xa3\x2a\x11\xc5\x22\x59\x73\x7b\xd7\xa5\xf2\x6f\x34\xcc\x99\x5f\x14\xcc\x09\xb0\x77\xf2\xe2\x70\x6b\x06\x88\x04\x4b\x44\xd4\x0a\xb6\x37\x4e\x1b\xdb\x1b\x67\x8c\xaf\xe4\x9b\x95\xbf\x9e\x1a\xd0\x7e\x2f\xdf\xac\x9c\x6e\x68\x68\x28\x7c\xf1\x8b\x5f\xd4\x5f\x7f\xfd\x75\xff\x07\xdf\xd7\x9a\x4c\x78\x89\x6a\x2d\x3d\x53\x1e\x3c\x78\xd0\x1a\x30\x8c\xd8\xf6\xb9\xe8\x53\x9a\x49\xad\x5e\x75\xb8\x2a\x4f\xaa\x4c\x91\x6c\x39\x17\xd7\xc5\xf6\x2d\x8b\x91\x83\xe7\xdb\xf2\xb3\x00\x74\xfb\x98\x76\x4d\x93\xa2\xb5\x37\x13\x3e\x48\xd5\x02\xab\xc3\x02\xa3\x67\x29\xf2\x70\xc8\xa0\x94\xae\xc8\x4c\x7b\x7b\xbb\x1e\x8f\xc7\x45\x3e\x9f\xaf\xa9\x63\xcd\x94\xd6\x09\x5b\xb6\x6c\x71\xe2\xd4\xb0\x41\x4d\x71\x5d\xe9\xac\x0a\xe2\xaa\x4d\xa2\xba\xb5\xc3\xc5\xc9\x76\x31\x62\xcc\x27\x2a\xa3\xa6\xe0\x0c\x11\x95\x00\xc8\xa9\xa9\x29\x7f\x43\xfa\xaf\xce\xcf\xcf\xe9\x82\xe2\xfc\x41\x60\x65\x27\xad\xe0\x5a\x4e\xda\x2f\xff\xf2\x2f\x8b\x58\x2c\xa6\x11\xd0\x94\x9a\xa8\x1c\xde\xfe\x41\xe1\x07\xc9\x59\xf3\xab\x42\x22\xe1\x70\x66\xa7\xc3\xc8\xf9\x9c\x1f\x00\xeb\x78\x4f\x86\x73\xcc\x27\x01\x91\xc4\xa2\xf1\xb9\xfe\xa3\xc5\x1f\xb4\x8f\xe8\xbf\x04\xc9\x4d\x8a\xa2\x68\x8f\x3c\xf2\x08\xfa\xfb\xfb\x57\x98\x0c\x02\x70\x59\x6f\x9a\xfb\xec\x9c\x2d\x66\x9f\x29\x96\x68\xcf\x69\xc3\x8e\x62\x62\xad\x9e\x10\xfc\xa1\x6a\xb0\xb7\xd2\xda\x97\xb5\xfd\x44\x14\xb3\xcf\xbd\x00\x11\xa9\xe1\x8a\x48\x85\x2b\xa2\x1d\x1b\x80\x15\xae\x88\xd6\x68\x45\xb4\x12\x91\xaa\x28\x8a\xf0\x9d\xd1\x2f\x00\x6b\x5f\x24\xe0\x1b\x35\xb6\x3f\xb7\x00\xa0\x35\x96\xd4\xee\x90\x49\x09\x66\x87\x63\xd6\x52\x72\x90\xcb\x34\x08\x98\x6e\xd0\x2f\x82\xac\x23\x96\xa4\x94\x8e\xd7\x84\xff\x87\x9b\x88\xf3\x8e\x94\x75\xe5\x6f\x6a\x6a\xc2\xaf\xfc\xca\xaf\x88\x78\x3c\xae\x81\xb9\xa9\x63\x44\xff\x72\xcf\xe9\xd2\xb7\xd4\x0a\xb6\x38\x04\x55\xfd\x4e\xa4\x6f\xd2\xb2\xe2\xf3\x34\x56\x5b\x30\x13\x14\x13\xed\x5d\x17\xf5\x7f\xd3\x73\xae\xfc\x9b\x24\xb9\x55\x08\x11\x79\xec\xb1\xc7\xfc\x38\x78\x43\x10\xbe\x41\xf9\x57\xd4\x91\x99\x65\x4b\x4b\x8b\xd3\x3f\x91\x90\x49\x49\x07\x17\xef\xa9\xd4\xe4\xf9\xef\xa7\x13\x45\x22\x66\x9f\x82\x2d\x6c\x22\x53\x99\xa0\x55\xf3\xad\x0f\x96\x14\x2c\x4d\xc1\xaa\x6d\xca\xf2\x07\x09\xd4\x71\x99\xb6\x8f\xe9\x16\xcc\xac\x35\x15\xd5\x6e\xc1\xd0\xe0\xce\x14\xc9\xe5\x5c\xb5\x53\xb4\xaa\x9b\x34\x00\x2c\xc4\x2b\x57\x98\xb9\x04\xc0\xc8\x64\x32\x4e\x83\xac\x36\x62\x81\x80\x11\xbb\x46\x7a\x90\x5e\x13\x38\xfa\x55\x55\x15\x8f\x3c\xf2\x08\xa2\xd1\xa8\xca\xcc\xc9\x96\xf1\xca\x67\x3b\x2e\xe9\xbf\x63\x4f\xe7\xad\x3a\x38\x15\xb0\xb9\xb0\x35\x92\xed\xa5\x2f\xb6\x0d\xc8\xce\x9a\xab\x6d\x50\x76\x57\xcd\x00\xad\x65\xac\xf2\x3f\x74\x5c\xd6\xbf\x4a\x40\x12\x80\xf6\xa5\x2f\x7d\xa9\x9e\xe8\xab\xcb\x8d\x5b\x5b\x5b\xfd\x83\xbe\x86\x38\x1d\xd7\x65\x7b\x1d\x51\x14\x34\x33\x57\x8b\xbf\x7d\x4f\x80\x33\x9f\xf1\xf3\xa1\x4c\xd4\x98\x77\xb8\x97\x0d\x4b\x96\x42\x66\x61\x29\x62\x4c\x6f\x04\x56\x4e\x33\x67\x8b\x21\x59\x72\xbe\x27\xe0\x5b\x1c\x17\x40\xd5\x52\x5b\x53\x09\xcf\xe7\x59\xd4\x86\xb2\xba\xc9\x95\x12\x8e\xa2\xef\xb3\x7f\xb9\x2e\xd3\x36\xfb\x32\x04\x97\x96\xa2\xc6\x24\xac\xa3\xc3\x65\x3a\x9d\x5e\xd1\x50\x9e\xb0\x9a\x31\xb3\x5e\xde\x7a\xb6\xb4\xba\x46\xbf\x1d\x3b\x76\x88\xb6\xb6\x36\xc1\xcc\xb1\x58\x56\xee\xe9\xbe\x50\xfe\x1d\x62\xb8\x1f\x90\x5f\xf1\x1d\x78\xf2\x88\x09\x57\x1f\xf1\xcc\xa0\x81\x9a\x42\x76\x53\xa8\xed\x57\xf5\xaf\x17\x1a\x95\x8b\x4b\xed\xca\xcf\x13\x89\x44\xf6\xde\x7b\xef\x75\xbe\x1d\xe4\xe5\x44\x35\xb8\xed\xdf\xbf\x1f\xbb\x76\xed\x12\x91\x48\x44\x78\x3f\xf6\xa0\xeb\xba\x4c\xa7\xd3\x38\x7a\xf4\xa8\xdb\x79\x86\x61\xc8\x52\xa9\x24\x2c\x29\xc3\xfa\xb5\xe6\xd2\xe9\xc1\xd9\xd8\x61\x67\x75\xae\x76\x01\xdb\xc6\x8d\xaa\x5f\x73\x63\x82\x9c\x6d\xd0\xaf\x38\xbe\xf6\xf6\xcf\x30\x09\xb9\x2b\xad\xc5\xa3\xad\xf9\xd0\xc0\xba\x60\x81\x71\xb5\xa5\x78\xdc\x24\x2e\x80\x61\x00\x40\x57\x57\x97\xb0\xf1\x74\xeb\x18\xa8\xdf\xf4\xf5\xf5\x01\x16\xfb\xd4\x1a\x4a\x96\xfe\x55\xdd\x09\x4c\x16\x1d\x3b\x1d\x63\x0f\x6a\xaf\xcb\x74\x59\x95\xd9\x62\x48\xa6\xed\x0f\x1e\xc8\x5c\x2e\x07\x04\x8c\x56\xac\x24\x88\xf5\xcc\x28\xbd\xdc\x29\x88\xa0\x02\x67\x67\xf7\xdd\x77\x1f\x60\xf9\xb4\xb5\x6f\x3a\x5f\xfe\xa7\xc2\x40\xbb\xa3\xb8\x56\x9d\x41\x3c\xfa\x96\x95\x52\x95\x0c\x76\x3c\x79\xa2\x5d\xc7\x5d\xb2\xf8\xba\xb5\xf5\x9e\x13\xdd\x17\xca\xff\x8b\x5a\x41\x37\x00\xcd\xde\xe6\xe7\xc5\xd5\xe5\xb0\xc3\xc3\xc3\xe2\xab\x5f\xfd\xaa\xd8\xb7\x6f\x9f\x1a\x8d\x46\x23\x2a\x44\x22\x6a\x28\xad\x51\x43\x69\xd7\xa4\x68\x0a\x6b\xe1\x44\x67\x67\xa7\xf6\xf4\xd3\x4f\x8b\xa7\x9f\x7e\xda\xad\x97\x3d\x60\x0d\x10\x15\xae\xb6\x94\x3e\x5c\x8c\x1a\x13\xde\x6f\x38\x51\x4d\x7f\xb1\xc3\x82\x40\x04\xcc\x27\x2a\x23\xd3\x0d\xd6\xcc\x8f\x88\xa4\x4d\xd0\x3a\x08\xd9\x93\xdd\xb9\x97\x33\x51\x63\x72\x3d\xb0\x72\x61\x73\xfe\xf8\xa6\xdc\x8b\xb0\xdd\xaa\x4b\xa5\x92\xf4\x70\x30\xb7\x8e\xfe\xce\xa8\x61\x71\xcc\xac\x25\xcb\x6a\xbb\x37\x83\xd7\x08\xe5\x3c\xb3\x67\x4b\x1a\x01\x28\x68\x32\x5d\x11\x5c\x80\xfd\x25\x0d\x7b\x04\xfb\x67\x75\x41\xa1\x2e\x07\x0a\xb8\x7a\x61\xad\x4a\x74\x7b\xf7\xee\x15\xa1\x50\x48\x10\x51\x2c\x39\x67\xdc\x1f\x5f\x34\x1f\xf5\xea\x15\x04\xfb\x3b\x44\xfe\xb3\x1a\x3c\xe7\xf4\xbb\x1c\xbc\xc6\x2e\xe3\xcd\xef\xb0\x3f\x42\x38\x2f\x87\x53\xd7\x2b\x87\xed\x13\x0a\xd5\x87\x1e\x7a\xc8\x3f\x63\x96\x8f\x3f\xfe\x38\xee\xbb\xef\x3e\xa1\x69\x5a\x44\x33\x45\xeb\xde\xc9\x86\xcf\x7f\xe1\x64\xfb\x37\xbe\xf2\x61\xe7\x8b\x5f\xf9\xb0\xf3\xe5\x5f\x3a\xd6\xf1\x83\xc7\x2e\x35\xff\x56\x5b\x5e\x1b\x00\x23\xd1\xd5\xd5\xa5\x7e\xf9\xcb\x5f\x16\x00\x60\x4f\x98\x0c\x00\xb9\x52\x48\x4e\xbc\xb9\x2d\xf3\xfd\x8a\x90\xba\x43\x10\xb5\x32\x91\xec\x6f\x20\x59\x27\x46\xbe\xd9\x9f\xf9\x0b\x29\xac\x63\x38\x99\xd9\xe5\x60\x00\xb2\x05\x4d\x5e\x7e\x79\x20\xfd\x47\xf9\x90\x99\x5d\x0d\x56\x51\x35\x73\xaf\xee\x58\xfc\xd3\xe5\xb0\x79\xd1\x76\x52\xd4\x3d\x9f\xb0\x71\xeb\x08\x04\x9c\x4d\xe1\x91\xcd\x82\x40\x6a\xb8\x42\x49\x67\xab\x7f\x75\xde\xc8\x70\xb7\x9a\x03\x9e\x7b\xeb\xc0\xde\xbc\x66\xa6\x41\xd6\x97\x35\xb0\x32\xac\x36\x0d\x5f\x8d\xf8\x56\x83\xe1\x17\x3d\x35\x70\x76\xef\xde\x0d\xdb\xd6\xd5\xd4\x32\x5e\xf9\x45\x92\xd0\x5c\xc5\xca\x6b\x6e\xb1\x47\x4f\xed\x64\x86\xbc\x8c\xcc\xe6\x60\xec\x8c\x2c\xfb\x07\x0f\x2c\x06\x31\x8b\x96\xf1\xca\x97\x48\x72\x8a\x88\xb4\x6d\xdb\xb6\x21\x12\x89\xb8\x38\x1d\x38\x70\x40\xf4\xf7\xf7\x0b\x02\xc5\x52\x79\x75\xe7\x17\x4f\xb4\x7f\xeb\x91\xcb\x4d\xdf\xee\x5e\xd2\x9e\x8d\x56\xc4\x70\xac\xa2\x0c\x35\x17\xd5\x47\xf6\x4c\xc5\xff\xf9\x2f\x1c\x6f\x7f\x61\xdf\x44\xc3\x7f\x01\x46\x53\x2c\x16\xd3\x7e\xed\xd7\x7e\x4d\xcc\xcd\xcd\x39\xbb\x7c\x0a\x00\xa6\xaf\xa6\x4a\x6f\xbc\x3c\xb8\xf8\x9d\x7c\xc8\xcc\x3a\x9a\xb1\x57\x4b\x66\x00\x39\xcd\xcc\xbc\x34\x98\xfe\xa3\xf1\xa6\xf2\xdb\xb0\x77\x73\x2d\x2f\x2f\xcb\x97\x5e\x7a\x09\x86\xb5\xa3\x36\x07\x60\x72\xb2\x51\x7f\xe3\xc7\xc3\x73\xff\xf6\x5a\x73\xe9\xbc\x41\x6c\x78\x7a\x16\x26\xb1\xbc\xde\xa8\x8f\xfc\xd5\x1d\xf3\xff\xf7\x68\xaa\xf4\x32\x08\x13\xb0\x3e\xcf\x63\x9c\x39\x73\xc6\xdf\xee\xae\x0e\xe6\x74\x90\x00\x20\x3b\x3b\x3b\x11\x0a\x85\xac\x29\xb1\xf5\xed\xec\x44\xed\x61\x4c\x41\xa1\xaa\x87\x58\x1c\xcc\xcc\x00\xd0\x99\xd9\x90\x52\xca\x86\x86\x06\xb1\xbc\xbc\x5c\xf3\x1e\xac\x14\xcf\xde\xb0\x16\x97\xf3\xdb\xc1\xfc\xf7\x0e\x0c\xd9\xde\xde\x2e\xe2\xf1\xb8\x00\xa0\x85\x4a\xdc\x1d\x5f\x34\x0f\xd4\xe0\xed\xb0\x24\xc7\x97\x0d\x0e\xe7\xb2\x6b\xe4\xde\x7b\xab\xeb\x8d\xf3\xcc\x36\xb9\x9a\x1e\x2e\xc8\xa1\xe8\x92\x1c\x28\x34\x2b\xb3\x9a\xa6\x95\x4a\xa5\x92\x01\x00\xdd\xdd\xdd\x62\xcf\x9e\x3d\x02\x40\xa4\xa1\xac\xf4\x3f\x7d\xa6\xf5\x1b\x4d\xc5\xd0\xdd\xfe\x76\x75\x4c\xda\x61\x93\xba\x0f\x8e\x34\xfe\x3e\xc0\xe2\xa3\x9e\xdc\x0f\x55\x55\xcd\xec\xdb\xb7\xcf\xb8\x72\xe5\x0a\x06\x07\x07\x75\x22\x4a\x83\x70\xf9\x62\x5b\xe1\xb9\x99\x86\xf2\xf8\xf0\x64\xe2\xb1\xcd\x8b\x91\x81\x98\xae\x24\x01\x60\x39\x6c\x66\x46\x53\xc5\xf3\xa7\xbb\xf2\xaf\x2e\x47\xcc\x93\x00\x46\x60\x39\x1f\xe8\x1f\x7f\xfc\x31\x46\x47\x47\xe5\xc9\x93\x27\xc5\xbe\x7d\xfb\x4a\x44\x34\x0f\x82\x98\x4f\x54\x8c\xff\xb8\x67\xee\x6a\x4b\x3e\xb4\xab\x2b\xab\xf5\x47\x2b\x4a\xa2\x18\x92\x85\xe9\x64\x79\x64\x3e\x5e\x39\x27\x05\x46\x60\x9d\xd3\x3f\x0f\xa0\x74\xee\xdc\x39\xd8\x13\xb9\x15\x76\xcb\x15\x2e\xd3\xb6\x1c\xb5\x66\x5e\x92\xb4\x90\x29\x62\x40\xad\x12\x5c\x2f\x38\xc9\x45\x55\x66\x61\xb9\xe1\xc2\x30\x0c\x78\x88\xcb\x7f\xf5\x2a\xe9\x22\x20\x4f\x50\xa8\x57\x26\xb0\xdc\xec\xec\xac\x84\x75\x88\x6e\x24\xb6\x64\xee\x11\x26\x9a\x5c\x6b\x9e\xa3\xb1\x7b\x94\x59\xf2\x10\x0f\xdb\x0e\x95\xd5\xe0\x69\x04\x67\xe6\xe3\x5c\x5d\xd1\x69\x13\x1c\x93\x96\x58\x34\xef\x29\x34\x2b\x1f\x01\xc8\x1d\x3a\x74\x48\xbe\xf1\xc6\x1b\x78\xf0\xc1\x07\x01\x6b\x60\x37\x1d\xb8\xda\xf8\x1b\x4d\x45\xb5\x96\xb8\x1c\x47\xce\x9a\x0a\x93\x76\xef\x58\xf2\x9f\x5d\x4b\x95\x4f\x2e\xc4\x2b\x27\xdb\xdb\xdb\x0b\xa7\x4e\x9d\x92\x89\x44\x42\xf6\xf4\xf4\x14\x00\x4c\x83\x20\x97\xa2\x66\xf6\xcd\xfe\xa5\x8b\xef\xc8\xa5\x76\xcd\x14\x09\x00\xd0\x55\x99\x35\x09\xf3\x20\x4c\xc2\x3a\xa2\x61\x1e\x40\x69\x7c\x7c\x5c\xda\xc7\x71\xe2\xf8\xf1\xe3\xe8\xe8\xe8\xa8\xc2\x02\x4a\x52\x20\x3d\xd7\x50\x19\x9d\x6b\xa8\x24\x6c\x7c\x1d\x2e\x97\x46\xf5\x1b\x50\x85\x4b\x97\x2e\xc9\xb7\xdf\x7e\xdb\x2f\x3d\xdc\x7e\x0c\x74\x99\x76\xbe\x8b\x48\x0c\x55\x91\xd0\xbc\x22\xc2\xdb\x08\xd5\x46\xad\x3e\x33\x00\x5d\xe5\x9c\x47\xbe\xc3\x07\xdf\xcf\x75\xbc\x69\x7e\xee\xe6\x47\x18\xab\xdc\x7b\x83\x0b\xdf\x3e\x7a\x48\x00\x88\x44\xb3\x72\x17\xe0\xd0\x48\xb5\x46\xec\x2c\x81\x38\x2a\x87\x47\x6c\xd6\xcc\x1a\x6b\x38\x35\xb9\x4a\xaf\xf7\x23\xb7\xde\x03\x46\x22\xcb\xe6\x4e\x30\x22\x0c\x16\x9d\x9d\x9d\x00\x20\x1b\x1b\x1b\x55\x66\x8e\x34\x96\xd4\xbe\xed\xf3\xd1\x67\x6b\xbe\x90\x4b\xfe\x77\x54\x43\xd8\x10\x9d\xbb\xa7\xe2\xbf\x70\x64\x5b\x66\x94\xc1\xa5\x81\x81\x01\xf9\xe2\x8b\x2f\xe2\xc9\x27\x9f\x34\x7a\x7b\x7b\x73\xb0\x36\x6e\x64\x01\x4c\x1a\x02\x09\x43\x98\x9a\x55\x57\x2a\x31\x73\x8e\x40\x59\xe7\xbb\x98\x33\x33\x33\xf2\x85\x17\x5e\x70\xdb\xd9\x34\x4d\xf9\xe2\x8b\x2f\x8a\x07\x1f\x7c\x50\x0e\x0e\x0e\x96\xec\x1d\x48\x39\x58\xc4\xa6\x39\xf9\x88\x48\xb7\x4f\xbb\x2e\x49\x29\x8d\x2b\x57\xae\xc8\xd7\x5e\x7b\xcd\xdf\x4f\x35\xfd\xbb\x62\xa9\xa8\xab\xab\x4b\xd8\x07\x5e\x08\x62\x21\x08\x24\xd8\x6e\x7d\xe7\x0b\x69\x6b\xb9\x4c\x4b\x62\x67\x13\x41\x3d\xc5\x3c\x48\x87\x0a\x7a\x0e\xb2\x99\xf9\xd3\xea\x4d\x0c\x04\x00\xf4\xf4\xf4\xc0\xfe\xcc\x5e\x24\x54\x92\xdd\xae\xc9\xc5\x26\x0e\xc7\x9e\x5a\x6b\x7e\x80\xfd\x75\x33\x67\x71\x9f\x3d\xd4\xe7\x99\x4c\x39\x0c\xcd\x53\xde\x55\xdf\x08\xd0\x4a\xdc\x09\x70\x84\x88\x44\x63\x63\x23\x9e\x7d\xf6\x59\xc7\xb0\x19\xd9\xb4\x14\xbe\x57\x95\x94\x74\xbf\x6a\x6b\x41\xb6\xcc\x40\x1e\xa2\x73\xd7\x7f\x89\xd0\x9b\x09\x1f\x14\x8c\x6f\x48\x41\x99\x8e\x8e\x0e\xc3\x34\x4d\xf9\xc2\x0b\x2f\xe0\xc0\x81\x03\xd8\xbd\x7b\xb7\xf3\x7d\xa6\x2c\xac\x43\x4b\x54\x7b\xc7\xb6\xf3\x85\x39\xc3\x34\x4d\xe3\xf4\xe9\xd3\xf0\x7c\x72\xd9\x6d\x3b\xd3\x34\xe5\x91\x23\x47\x70\xe4\xc8\x11\xf9\xe9\x4f\x7f\x5a\x76\x77\x77\x3b\x9b\x43\x1c\x7a\x70\x8e\x22\x90\x99\x4c\x46\x7e\xf0\xc1\x07\x18\x1d\x1d\x5d\x73\xe0\xaf\xb0\xc0\x3a\x22\xd2\x32\x3b\x40\x10\xdb\x5f\x6b\xf0\x8c\xe2\xb5\x5c\xa6\x25\x59\x36\x16\x8f\x1d\x25\x88\x18\xea\xe9\x4e\x7e\x9b\x51\x90\xb1\xb2\x9e\x91\xd5\xcf\xfd\x2c\x8c\xac\x63\x8c\x54\x61\x22\x51\x55\xe2\x9d\x59\x9f\x73\x9c\x54\x6d\x3b\xb8\x42\xca\xa6\x1c\x57\xa4\x7a\x8a\xfa\xf6\x17\xdb\xf7\xec\x0e\x38\x61\x72\x0c\x0c\x8d\xc1\x02\x70\xd7\x77\x05\x80\x48\x5c\x57\x7a\xad\x59\x99\xfb\x92\x1a\xa0\x55\x33\x41\xf5\x1d\xd1\x8a\x68\x57\x25\x25\xcb\x24\x55\x4d\xd3\x84\xa2\x28\x30\x4d\x53\xbe\xf3\xce\x3b\xb8\x72\xe5\x0a\xfa\xfb\xfb\x8d\xad\x5b\xb7\x1a\xb6\x1f\x9f\xdb\x9e\xc5\x62\x11\x23\x23\x23\x38\x7d\xfa\x34\x96\x96\x96\xea\x0d\x50\xb7\xfd\x7e\xf6\xb3\x9f\x81\x99\x8d\xa1\xa1\xa1\x1a\xf7\xeb\x99\x99\x19\xd8\x1f\x9d\xf7\x96\x5f\x15\x56\xd0\x17\x6f\xbd\x05\x6c\xab\xb1\xdd\x08\xde\x4d\xb5\xde\x4f\x9f\xd9\x76\x20\x4f\xb7\x48\xab\xad\xea\x2a\x6d\xf5\x88\x0b\x75\xe2\xd7\x3b\x21\xa8\x67\x21\x17\x00\x04\x0b\x48\x2f\xa7\x72\xef\x9d\x49\x21\x5c\x1e\xe2\x95\x56\x1e\xf1\xe7\x57\xe6\xdd\x42\xd5\x5d\x54\x5e\xae\x46\x2e\xce\x8e\x01\xd5\x51\x3f\x54\x69\x67\xae\x3d\x24\xb9\xaa\xf0\x55\x49\xae\xea\x2d\x6c\x0a\x18\x92\xe0\x9c\x9d\x8f\xbe\xbe\x3e\x5c\xbd\x7a\x55\x00\x56\xe7\xcf\xcc\xcc\xc8\x77\xdf\x7d\x57\x00\x30\xfa\xfa\xfa\x84\x94\x12\xf6\xf1\x01\x41\x6d\xea\x6d\x9b\x9a\x7e\x77\x18\xc3\xd9\xb3\x67\x71\xf6\xec\xd9\x7a\x7d\x11\x14\x56\xc0\x0a\xf4\xa6\xf0\x9c\x3c\x2c\x99\x58\x5a\xa3\x9e\xdc\x1e\x59\xa1\x24\xfb\x66\x98\x82\xc9\xcf\x19\x57\x13\x89\xeb\xb1\xf0\x6f\x34\x6e\x85\xde\x46\x44\x30\x43\x94\x73\xd7\xeb\x9d\x2f\xbc\xb9\x8a\xba\xc7\x81\xb2\x46\xaf\x74\x06\x10\x50\x3b\xa0\xe0\x31\x8e\x01\x8e\x18\xa9\xc2\x24\x18\x9a\xc8\x81\x20\x7d\xc4\x05\x66\x96\x33\x0d\xfa\x35\xb6\xec\x44\xa2\xca\x4d\x1d\xdd\xae\xfa\x7e\xa7\x65\x99\x19\xf3\x71\x7d\xcc\x10\x55\xe9\x60\x7f\xe5\x24\xb0\x3d\xc6\xc6\xc6\xbc\x6d\xb3\x1e\x23\x77\x5d\x58\xed\xed\xed\xce\x64\x69\xc3\xb0\xbc\x4b\x45\x02\x00\xba\xba\xba\x60\xbb\x70\x80\x89\xa4\x24\x48\xe2\xda\x75\x46\xc0\xf3\xc1\x4c\x38\x42\xb3\x4a\x64\x8a\x24\x15\x96\xa1\xd6\xfb\xd2\xf5\x50\x7e\x3d\xe5\x7f\x2d\xc5\x7f\x2d\xf1\x29\x99\xd9\x28\xc7\xc5\x24\xdc\xfe\x77\x78\x46\x2d\xb7\xaa\xea\xda\xb5\x03\xca\xed\x77\x47\xf9\x67\x8b\xa3\xb1\xad\x2f\x79\xf9\x90\xf3\x8e\x72\x8c\xa6\x19\x30\x60\x4d\x78\x5c\x5c\x88\x48\x9f\x4e\x96\x47\x32\x51\x63\x22\x55\x0c\xf5\x55\x5d\x83\x3c\xb0\x7c\xcc\x9f\x09\xd2\x3e\x82\xa9\x00\xb6\xbe\x2b\xae\x28\x8a\x30\x4d\x53\x02\x10\xa1\x50\x08\x7b\xf6\xec\x41\x67\x67\x27\xda\xda\xda\xdc\x76\xd1\x75\x1d\x53\x53\x53\x18\x1d\x1d\x15\x63\x63\x63\xee\x1a\x66\x40\x7b\x3b\x8a\xbc\xd8\xb3\x67\x0f\x76\xef\xde\x8d\x78\x3c\x0e\x45\x51\x9c\x7e\x14\xcc\x2c\x97\x96\x96\x70\xea\xd4\x29\x71\xe1\xc2\x85\x35\x61\x01\xb5\xfe\x60\x35\x66\x0a\x22\x82\x24\x48\x49\x30\xfc\xd3\x66\x78\x3a\xa0\x3a\xea\xab\x39\xc2\xd6\x14\xd9\x51\x68\xdd\x86\xf5\x83\x08\x48\x0b\x1a\x09\xeb\x11\xa1\x75\xb9\xe0\xf2\xf2\xb2\x48\x24\x12\x20\x22\x3d\xdf\xa4\x5c\x60\x82\x24\x69\x97\xa5\x5a\xa9\x0f\xf2\x78\x11\x38\x83\x8a\x2d\xeb\xb5\xbb\xd1\xc5\x99\x25\x7a\xb8\x1d\x3b\x13\x1e\x87\xad\xd9\x44\x97\x6f\x56\xce\xc3\x5a\x92\x31\x72\xb9\x1c\xfe\xec\xcf\xfe\x4c\xfe\xfa\xaf\xff\xba\x04\x50\x30\x05\x66\xdf\xd9\xba\xf4\xa3\xc3\xe7\x5a\xfe\x1b\x95\x2d\x5d\xb8\x46\xa3\xf0\x70\x5a\x26\x60\xac\xb9\x7c\xfa\x72\x6b\xf1\x7d\xfb\x7b\x45\xc6\xfc\xfc\x3c\x6c\xe2\xc2\xbe\x7d\xfb\xb0\x7b\xf7\x6e\x44\xa3\x51\x87\x61\xa8\x60\xab\x93\x23\x91\x88\x4c\x26\x93\xc6\xe0\xe0\xa0\xcc\x66\xb3\xf2\xad\xb7\xde\x12\x13\x13\x13\x41\xed\x2d\x9d\x4f\xd8\x38\x7b\x31\x88\xa1\x85\x2b\x22\x12\x32\x49\xab\x28\xac\x97\x54\x59\x68\x6e\x6e\x36\x1e\x7e\xf8\x61\x7d\xef\xde\xbd\xf2\xf5\xd7\x5f\x17\xb6\xbb\xf8\x0a\x58\xce\xd5\xbf\xd8\x5d\x93\xc9\x14\x6c\xe8\x8a\x2c\x00\x8a\xc5\xb1\x5c\x0d\xd9\x1e\xfd\xae\xc2\xec\xd1\x5e\x88\x10\xd5\x45\x12\xb5\x1c\xac\x9e\x12\xe8\x0d\xf5\xb8\xd2\x6a\xc4\x17\x54\xae\x86\xdb\x2d\x2e\x2e\xa2\xb3\xb3\xd3\x20\xa2\x52\x29\x21\xc6\xca\x51\x9a\x8c\x14\xb8\xc7\x6b\x3c\xad\x9a\xc3\xa8\xa6\x93\x5d\x71\xe7\x8a\x4f\x9f\x49\xc1\x11\x8b\x4e\x7b\x38\x03\x8d\x00\x33\x84\x6c\xbe\x59\x39\xe7\xf8\xc3\x39\x1b\x2c\xf2\xf9\xbc\x8c\xc5\x62\x25\x22\x9a\xbf\xd2\x5a\x7c\xe3\xfd\x2d\x4b\x7d\xf7\x8d\x36\x7e\x56\x65\xa8\xec\x8a\xdf\x5a\xed\x7e\x2e\x51\x19\x7b\x75\x20\xfd\x2d\x53\xb1\x8e\x54\x62\x66\xc3\x3e\x7a\x01\x8f\x3e\xfa\xa8\xb0\xb7\xab\x69\xaa\x49\x89\xcd\xe9\xc8\x9e\xbe\x4c\xf8\x40\xa2\xac\x6e\x32\x05\xeb\x0b\xb1\xca\xb9\x91\x96\xe2\x5b\x73\x89\xca\x44\x32\x99\x2c\x3d\xf5\xd4\x53\xfa\x87\x1f\x7e\x28\x7c\xca\xba\xec\xeb\xeb\x13\x8f\x3d\xf6\x18\x54\x55\xd5\x48\x22\xb1\x6d\x21\xba\x6f\xcf\x54\xfc\x17\x5b\xf3\xda\xdd\x21\x93\x9a\x2a\x8a\xcc\xcc\x34\x54\xde\x3b\xdd\x95\xfb\xde\x68\xaa\x74\x32\x99\x4c\x16\x9e\x7a\xea\x29\xfd\xe3\x8f\x3f\x5e\x01\xcb\x7b\x1f\xe4\x32\x2d\x6d\xf1\x27\x19\x6c\x94\x55\x99\x73\x08\x85\xa9\x3a\x87\x84\x23\x22\xdc\x0e\x61\xf7\x7f\x5c\x57\x9a\x80\xaa\x32\xea\xe9\x74\x51\xe7\xde\x4f\x18\xf5\xd2\xbc\x21\x68\x86\xb9\x02\xd6\x5b\x6f\xbd\x25\x87\x86\x86\x24\x33\x97\x20\x90\xce\x74\x87\xde\xe9\xb8\xac\x3f\xeb\x11\x8e\x2e\x17\x5a\x31\x29\xf1\xda\xf7\x6a\x27\xca\xb6\xea\x56\x9d\x81\xda\xf4\x06\xdb\xa8\x81\x6c\x5b\xe8\x23\x43\xa3\x69\xdb\x65\xc9\x71\xb8\xc4\xa9\x53\xa7\x70\xdf\x7d\xf7\xe9\xcc\x9c\x06\xd1\xc8\x87\xbd\xcb\x7f\x9e\x8e\x19\xe9\xfb\x47\x93\x9f\x4a\x15\x42\x9d\x82\x21\x9c\x25\x9e\xa2\x6a\x16\xce\xb7\x17\x8e\x7e\xb0\x39\xfb\xe3\xa2\x26\x8f\xdb\x67\xaa\x15\x72\xb9\x9c\x3c\x77\xee\x9c\x7c\xec\xb1\xc7\x44\x7f\x7f\xbf\x60\xe6\x58\xe7\x72\x78\xe8\xd1\x4b\xcd\xbf\xdd\x96\x0b\x3d\x4e\x40\xc4\x19\xfd\x3b\x10\xc5\xdd\xe3\x0d\xf3\x17\xda\x0b\xff\xfe\xad\xfe\xa5\x6f\x16\x55\x73\xfe\x9e\x7b\xee\x29\x31\x33\xec\x4d\x1f\x12\x00\x9e\x78\xe2\x09\x08\x21\x22\x21\x83\x5a\x1f\xbd\xd4\xfc\x9b\x03\x73\xb1\x5f\x17\x8c\x98\xe3\xc0\xa0\x99\xd4\xd7\xbf\xa0\x0c\x6f\x49\x47\xbe\x7c\xae\x23\xff\x6f\xdf\xd8\x96\xf9\x43\x56\xd5\xf9\x7b\xee\xb9\xa7\xb4\xb0\xb0\x20\xc6\xc7\xc7\xbd\xcc\x20\x50\x44\x02\x00\xda\xda\xda\xaa\x9d\x44\x64\x94\x42\x32\xeb\x9c\x3e\xcc\xb6\x42\x1c\xe4\x32\x6d\x35\xad\xc5\xd1\x12\xba\xd2\x4a\x0c\x8d\x09\xc2\x5e\x76\xaa\x11\xc3\x01\x04\x53\x2f\x3d\x48\xaf\x0a\x22\xd0\xba\x1c\x0c\x96\x1e\x22\x43\xa1\x50\x89\x81\xf4\x42\x4f\xe8\xd5\x96\xf1\xca\xe3\x6a\x89\x53\x0e\xc2\xcc\xe4\x31\xbe\xd8\xc6\x53\x38\xca\xb5\x45\x38\xe4\xfa\x87\x79\xc5\xaa\x87\xa3\xbb\x17\x82\x54\x50\x9a\xdb\xa2\xbd\x00\xa2\x34\x98\x0b\x52\x4a\xe3\xda\xb5\x6b\x2e\x81\x6d\xdd\xba\x55\xb6\xb7\xb7\x17\x98\x79\x92\x88\xe4\xe5\x96\x42\xe1\x5a\x73\xe9\x44\x5b\x2e\x34\xd8\x52\x08\x75\xab\x26\x69\xb9\xb0\x99\x99\x4e\xea\x17\x72\x9a\x39\x02\xeb\x34\xc8\x09\x58\xd6\x73\xe3\xe8\xd1\xa3\xb8\xef\xbe\xfb\xc4\xb6\x6d\xdb\x04\x80\x44\x47\x56\xdb\xf3\xcc\xe9\xd6\x3f\x8e\x55\x94\xfe\x1a\x57\x6f\x58\x38\x86\x24\xb5\xee\x9e\x8e\xff\xaf\x4d\x45\x75\xe7\xf3\xbb\x17\xbe\x5e\x0a\xc9\xc9\xbb\xee\xba\xab\x34\x31\x31\x21\x72\xb9\x1c\x3e\xf7\xb9\xcf\x41\x51\x14\x8d\x24\x52\x8f\x5c\x6e\xfa\xad\x9d\xb3\xb1\xff\xae\xaa\x57\xc3\x86\x62\xfd\x57\x18\xb1\xdd\xd3\xf1\xff\x51\x91\x94\x78\x79\x30\xfd\xbb\x52\x60\xfe\xe0\xc1\x83\xfa\xf7\xbe\xf7\x3d\x6f\x3f\xb9\x7d\xe1\xec\x2a\x22\x3b\x81\x0b\x85\x02\xdf\x79\xe7\x9d\x50\x14\x25\x04\x20\xd9\x9d\xd5\xee\xef\x5c\x0e\x0f\x56\x07\x33\xa1\x76\x86\x45\x20\xfb\x1c\x56\xb7\x95\x09\xf2\x74\x57\xee\x3f\x1a\x82\xe7\x85\x10\xa5\x89\x89\x09\xe4\xf3\xf9\x2a\x9e\xc1\x57\x0a\x88\x67\x0f\x21\xfa\xd3\x82\xca\xfb\xe3\x18\x00\x35\x36\x36\xa2\xb5\xb5\x95\x01\x28\x52\x25\x01\x50\x53\xc3\x82\xb9\xc7\x69\x34\xf2\xe6\x76\xb9\x5a\xd5\x48\xe0\x28\x6b\xae\xc4\x27\x76\x45\xa1\x57\xc9\x77\x8a\x2f\xf4\x86\x7e\x9e\xee\x09\x3d\xc7\xf6\x77\xb5\xe7\xe6\xe6\x4c\xfb\xb0\x17\x06\xc0\x13\x13\x13\xb4\x79\xf3\x66\x19\x89\x44\x2a\xcc\x5c\x24\xa2\xac\x49\x9c\xce\x45\xe4\xf8\x6c\x43\xe5\xdc\x54\x43\xf9\x44\x3a\x56\x39\xae\x2b\xf2\x02\x11\x5d\x65\xe6\x49\x00\x8b\x00\xca\xef\xbe\xfb\xae\xbc\x76\xed\x1a\x0e\x1d\x3a\x04\x55\x55\xc3\x21\x83\x3a\x3e\x7d\xb6\xe5\xf7\x9a\x4a\xea\x5d\xb5\xba\xb0\x73\xd2\x37\x5c\x1d\xb9\xa1\xac\xec\x0a\x99\x64\x8c\xa6\x4a\xc7\x84\x22\x2a\xed\xed\xed\x66\x32\x99\x74\xce\x1f\x49\x6c\x49\x47\x0e\x3d\x38\xda\xf4\x2f\x09\x08\xad\x01\x8b\x5a\xf2\xa1\x3b\x33\x31\xe3\xfc\x5c\x5c\xbf\xaa\x69\x5a\x45\x55\x55\xb6\x77\xed\xb3\xa7\xdf\x6a\x44\x58\x4d\xb0\x97\x7a\x8c\x6c\xd8\x9c\x76\xa6\xcf\x8e\x5b\x8e\x6d\x84\x75\xaf\x4e\x27\x39\xdb\xda\xc2\x86\x68\x4a\xe8\x4a\xca\x16\x91\xc2\xde\xa0\x1a\xf4\x43\x9d\x78\x3f\x47\x5a\x2b\xaf\x5f\x4f\xab\x29\x7f\xfa\xf4\x69\x48\x29\x25\x11\xe5\x40\x34\x3d\xbf\x39\xf4\x5c\xb6\x4d\x39\xe9\x7a\x6a\x56\x19\x90\xa3\x4d\xb9\x0d\xeb\x35\x9a\x91\xdd\x76\x8e\xd9\xc0\x1e\x6e\x36\x71\x59\xf7\xc5\xa4\x18\x9d\xde\x11\xfe\x4b\x10\x4d\x38\x0a\xf9\x07\x1f\x7c\xe0\xc5\x49\xe4\xf3\x79\xf9\x93\x9f\xfc\x04\xe9\x74\xda\x20\x6b\xd7\xd5\x2c\x11\x5d\x06\x70\x12\xc0\x47\x44\x74\x94\x88\x4e\x12\xd1\x79\x00\x63\x44\x94\x36\x0c\xa3\xf4\xee\xbb\xef\xca\xd3\xa7\x4f\xcb\xc1\xc1\x41\x84\xc3\x61\x01\x20\xb6\x65\x31\xf2\x70\x5b\x4e\x3b\xe8\x9e\xee\xed\x98\x29\x1d\xcc\x6a\x0c\x7f\x84\xdd\xd3\xf1\xaf\x26\x4b\x4a\x3f\x00\xad\xb5\xb5\x55\xec\xd9\xb3\x07\x64\x1d\xec\xdc\x34\x3c\x99\xf8\x65\xc1\x88\xad\x07\x16\x31\x69\xfb\xc6\x1b\xfe\x91\xc2\x94\x02\xa0\xda\xc7\x0d\xac\xd0\xc5\xfc\x22\x07\x00\xb0\xb4\xb4\xe4\x98\x2a\xf4\xe5\x88\x31\xeb\xb8\xeb\x10\x55\x1b\xb3\xae\xcb\x34\x00\xc1\xd0\x9a\x0b\xa1\x3e\xdb\xef\x1b\xf7\xde\x7b\xaf\xf0\xbc\x23\xd0\x08\xea\xb9\xf7\x5f\x83\xf4\xb5\xa0\x32\xfe\x74\x17\xfe\xc2\xc2\x82\x63\x33\x2a\x01\x98\x97\x02\x23\xe3\x7b\x22\xdf\x2e\x26\xc5\x28\x7b\x2c\xe7\xae\xd4\xb3\x95\x77\x47\x89\x77\xc9\x8d\xa8\xc6\xce\xe5\x98\x15\x1c\xe5\xbe\x1c\xa3\xf9\x6b\x77\x46\xbe\x69\x6a\x74\x9e\x99\x67\x01\x94\xa6\xa6\xa6\xa4\xbd\xa3\xaa\xa6\xce\xc5\x62\x51\xfe\xe8\x47\x3f\xc2\x5b\x6f\xbd\x25\xb3\xd9\x6c\xc9\x5e\xfb\x4b\xdb\xe5\x9c\x5f\xa6\x52\xa9\x14\xce\x9f\x3f\x6f\x7c\xfb\xdb\xdf\x76\x0e\x4a\x16\xf6\xf2\x97\x0a\x46\x62\x73\x3a\xf2\x09\x01\xeb\x13\x31\xd5\xdd\xf6\x70\xdd\x9c\x9d\x3e\x83\x85\x32\x54\x49\xa9\xde\x4c\xe4\x00\x11\x39\x87\xcf\x09\x66\xd6\xc2\x26\xb5\x76\x2e\x6b\xfb\xc8\x53\xa7\xb5\x60\xa5\x0a\xa1\xbd\xc9\x92\xda\x4d\x44\x11\x5b\x15\xf2\xf7\xeb\x8a\x59\x24\x00\x20\x93\xc9\xa0\xb5\xb5\x55\x02\x30\x32\x51\x63\x4a\x12\x74\x85\xad\x45\x6f\x47\xd1\x5f\x19\x6a\x63\xdb\x72\xa1\x1d\x97\xdb\x48\x03\xac\x33\x2e\xfc\xef\xb0\x43\xbd\x99\xe1\x6a\x33\xc4\xf5\xa4\xc3\x9f\xfe\xde\x7b\xef\x89\xde\xde\x5e\x43\xd3\xb4\x1c\x11\x4d\x18\x61\x3a\x7e\x75\x5f\xf4\xdf\x6d\x3e\x59\xfa\x5a\x3c\x6d\x6e\xf7\x32\x2b\xab\x36\xa8\x31\xbf\x54\x2d\xf5\x55\x9d\xcb\xdd\xd1\x4e\x40\x31\x21\x26\xaf\xed\x8d\xfc\xbf\xe5\xb8\x38\x0a\x8b\xeb\x64\x2b\x95\x8a\x1e\xf0\x3d\x71\x17\x4f\x29\xa5\x3c\x7b\xf6\x2c\x2e\x5c\xb8\x20\x4c\xd3\x34\xee\xbc\xf3\x4e\xd1\xd1\xd1\x01\x00\x28\x16\x8b\x98\x9e\x9e\xc6\xd8\xd8\x18\xca\xe5\x72\x4d\x1d\x9b\x9a\x9a\x84\xcd\x75\x62\xc9\x92\xda\xe7\x62\xec\x7a\x78\x78\xbc\x40\x56\xd8\x3e\x80\x64\x49\xd9\x06\xeb\xbb\xe0\xc2\x5e\x5f\xd4\xc2\x15\x91\x0a\x99\xd4\xb4\x11\x58\x0a\x23\x96\x28\x2b\x3d\x99\x98\x71\x16\xc1\x93\x30\xf8\xdd\x75\x00\x00\xa6\x69\x02\xb6\x41\x30\x1b\x31\x67\xcb\xaa\xcc\xc5\x2a\xc2\x73\x26\x3e\xbc\xd6\x8a\x5a\x4e\x66\xc7\x77\x2e\x87\x87\x88\x11\x63\x82\x1a\x8b\xc5\xf4\x50\x28\x24\x2a\x95\xca\x6a\xb6\x30\xf8\xf0\x08\x52\xec\xfd\x69\xfe\x99\x63\x50\x39\xc0\x16\x4b\xaf\xbe\xfa\xaa\x78\xea\xa9\xa7\x74\xfb\xac\x8c\xd1\x4a\x54\x60\x64\x7f\xb4\xd0\x79\xa9\xfc\x85\x96\xf1\xca\x01\x61\x42\x73\xeb\xe5\x31\x41\x78\x97\x81\x6a\xbc\x48\x40\x90\x02\x46\xa6\x4b\x3d\x3e\x39\x18\xfe\xf3\x8a\x46\x27\x01\x5c\x26\x60\x9e\x99\xf5\xf7\xdf\x7f\x3f\xa8\x5e\x2b\x9e\xed\xf6\x76\x66\x75\xf5\x26\x2f\x16\x47\x50\x55\x11\x8b\xc5\x60\x6f\x8a\xd6\x24\x71\xb5\x63\x99\x6c\x9f\x79\xb8\xfa\x21\xc1\x63\xa7\xb3\xf9\xb4\x24\x08\x00\x1a\x33\x3b\x9f\x9b\x11\xba\xca\x30\x04\x97\x42\x12\x89\xf5\xc2\x32\x84\x2c\xe5\xc3\x66\x09\xb0\x4d\x2c\x01\x7d\x19\xb4\xdd\x08\xd7\xaf\x5f\xc7\xe0\xe0\xa0\x64\x66\xbd\xa2\xc8\x4c\x2e\x6c\xce\xc7\x2a\x4a\x0a\x70\x69\xca\x33\x4b\xb1\x42\xad\x86\x4d\x48\x15\xd4\xed\x61\x43\x34\x95\x42\x52\x8d\xc7\xe3\xa2\x52\xa9\x38\xde\xad\xab\x59\xf4\x57\xe3\x56\x41\x65\x82\x66\x95\x75\x0d\x7f\xe3\xe3\xe3\xf2\xe4\xc9\x93\xb8\xe3\x8e\x3b\x4a\xb0\x88\x40\x9a\x0a\xf4\xc9\x9d\xe1\x6c\xa6\x2b\x74\xb2\xed\xaa\xfe\x48\x72\xce\xd8\x29\x4c\x68\x8e\x8e\xe9\x2c\x29\x79\x9d\x58\x89\x00\x16\x30\x96\x53\xca\xc8\xdc\x56\xed\xf5\xe5\x16\xe5\x7d\xb6\x3e\x43\x38\x06\xfb\xa3\xf5\x1f\x7f\xfc\xb1\xf4\xac\xe3\xad\xc6\x65\xd7\xaa\x77\xcd\x60\xb2\x3d\x59\xdd\x41\x95\x89\x1a\xd3\xbc\x68\x3d\xf8\xdd\x90\xdc\xc5\x78\x97\x11\x30\x18\x90\x33\x0d\xfa\x55\xf6\xad\x2e\xe8\x8a\x2c\x2c\xc6\x8c\xc9\x68\x56\x69\xe5\x75\xc2\x5a\x88\x57\x46\x32\x51\x23\x6d\x6f\x20\x09\xac\x8f\x5f\x44\x0a\x00\x72\x61\x61\xc1\x06\x46\x86\x09\xe4\xe6\xe2\x95\xd1\xb6\x65\x6d\xa0\x6a\xe7\xa9\x99\xd4\xbb\x2f\x84\x3b\x46\x80\x98\xae\xb4\xb7\xe4\xd5\xfe\xeb\x4d\xfa\x65\x66\x2e\xec\xd9\xb3\x47\xf8\x3e\xb6\x10\x14\x56\x33\xc0\xae\x46\x98\xde\x4a\xad\x96\x5f\xbc\xf7\xde\x7b\x12\x80\x4b\x64\xf6\xc6\x94\x5c\xbe\x51\xcc\x16\xf6\x46\x4e\x69\x45\xde\xd6\x30\x67\x0c\x25\xd2\x66\x7f\x24\x27\xdb\xd5\x0a\x47\xc0\x50\x41\x90\xa6\x4a\xa5\x72\x5c\xcc\xe7\x52\xca\xe8\x72\xab\x72\xb6\x14\x17\x97\x98\x30\x41\x44\x13\x60\x9e\x25\xa2\x2c\x33\x97\x8e\x1d\x3b\x26\x8f\x1d\x3b\x56\x17\x07\x0f\xbe\xeb\x31\xc9\xac\x68\x9b\xc5\xc5\x45\x34\x37\x37\x1b\xcc\xac\x8f\xb4\x14\x3f\xbe\x63\x2a\xf1\x39\x85\xa1\xfa\x0d\x14\xae\x01\xdc\x36\x14\x13\x80\x4c\xd4\x98\x1c\x6f\x2e\x9d\x85\xbd\xe9\xc3\xf9\x1a\x88\x09\xce\x9d\xed\xcc\x1f\xe9\xcc\x6a\x7b\x04\x20\xd6\x82\x05\x00\x67\x3a\xf3\x47\x24\x38\x0b\xcb\x4d\xc8\x8f\x2b\x80\x3a\x47\x68\x2e\x2e\x2e\x4a\x00\x60\x66\x1d\x40\x61\x2a\x59\xbe\x38\x34\x13\x7b\xd2\xd2\xc1\x6c\x9d\x24\x68\xf9\xc8\x99\x4b\x31\x43\x80\xb4\xde\x4c\xe4\x9e\xeb\x8d\xfa\x11\x22\x12\xbd\xbd\xbd\x38\x7d\xfa\xf4\x5a\x86\x53\x3f\x82\xfe\xc6\x15\x1b\x8c\xf3\xc3\x01\x6c\x22\x5b\x58\x58\xc0\x43\x0f\x3d\x54\x52\x14\xc5\x80\xd5\xd8\x69\x66\x9e\x2c\x47\x69\xa4\xdc\x17\x3a\x36\xdf\x17\x4a\x12\x90\x10\x26\x62\x24\xa1\xb2\x80\x21\x15\x94\x18\xc8\xd9\x84\x94\x26\xa2\x79\x30\x67\x98\x39\x03\xa0\x54\xa9\x54\xf4\x93\x27\x4f\xc2\x43\x5c\x41\x75\xa8\x57\xff\x7a\xf8\xaf\xc8\x9b\xcd\x66\xd1\xdc\xdc\x2c\x01\xe4\x26\x9a\xca\x27\x47\x53\xa5\xe3\xfd\x0b\x91\xbb\xc9\xb6\x55\x56\x0d\xc7\x70\x57\x57\xd8\xd2\x9f\xe5\x87\x7d\xd9\xe7\x4d\x81\x59\xb0\xb5\x67\xc2\xde\xd3\x68\x00\xc8\x9c\x6f\x2f\xbc\xb1\x6d\x3e\x7a\x70\x4b\x3a\xb2\x77\x55\x58\x60\x8c\x37\x95\x4f\x9f\x6f\x2f\xbc\x46\x44\x19\x66\xd6\xed\x23\x51\x57\xd4\x51\x41\x6d\x70\x6c\x18\xe8\xeb\xeb\xa3\x58\x2c\xa6\xd8\xb3\x8d\xd4\xd0\x74\xe2\x31\x01\x52\x9c\x69\x79\x8d\x01\xca\x56\xfc\x1d\x33\x85\x63\xbe\x50\x24\xe1\x6c\x57\xfe\xaf\x41\xc8\xc6\x62\xb1\x8a\xbd\xa4\x40\x9e\xf7\x78\x7f\xf0\x5d\xeb\xa5\x7b\x7f\x4e\x85\xd6\x53\xbe\x06\x56\x3a\x9d\xe6\x8f\x3f\xfe\x98\x7b\x7a\x7a\xb8\xa1\xa1\xa1\x02\x6b\x86\xb9\x6c\xef\x92\x99\x87\x65\x3a\x98\x62\x41\x13\x52\xe0\x1a\x14\x1a\x05\xd1\x35\x00\xd7\x88\x68\x0c\xc0\x04\x11\xcd\xdb\xf9\x4b\x8b\x8b\x8b\xc6\xab\xaf\xbe\x8a\x4b\x97\x2e\xc9\x00\xbc\xfc\xb8\x39\x57\x6f\x5b\xd4\xc3\x7f\x05\x2c\x5d\xd7\x69\xfb\xf6\xed\x4c\x44\x60\x82\x3a\x95\x2c\xa7\x7b\x33\x91\xe1\x58\x45\x4d\x7a\xc5\x7a\x75\xe2\x65\xe9\x53\x27\x36\xe5\x5e\xfd\xa8\x67\xf9\x07\x4c\x96\x5f\x3e\x33\x57\xb2\xd9\x2c\xc2\xe1\xb0\x24\x22\x92\x02\x18\x6f\x2e\xcd\xb4\xe5\xb5\x6d\x8d\x25\xb5\x35\x08\x16\x03\xb8\xde\xa8\x5f\x7e\x71\x67\xfa\x1b\x25\x4d\x9e\x02\x30\x05\xa0\x78\xe2\xc4\x09\xe9\x59\x97\x74\xeb\xe1\x35\xb4\x56\x4d\x3a\x80\x68\x6e\x6e\x46\x7b\x7b\x3b\x00\x68\x15\x85\xe3\xbb\x66\xe2\x8f\x59\x1b\x40\xbc\x67\x19\xda\x4f\xee\xa2\xa4\x5d\xdc\x16\xe2\xd1\x8a\xd2\x7c\xa9\xad\xf0\x52\x31\x64\xce\x08\x21\xca\x8b\x8b\x8b\xce\xe6\x80\x15\xef\x0b\xb8\xd6\x4b\x83\x27\x5d\xd6\x29\xbb\x6e\x58\x17\x2e\x5c\xa0\xa9\xa9\x29\x4e\x26\x93\x66\x34\x1a\xd5\x85\x10\x65\xdb\x36\x95\x05\x90\x21\xa2\x05\x00\x73\xb6\x1b\xf1\x3c\x80\x05\xdb\xbe\x95\x67\xe6\xf2\xd2\xd2\x92\x71\xf4\xe8\x51\x3e\x72\xe4\x88\xcc\xe7\xf3\x7e\x42\x81\xef\xfd\xfe\x67\x3f\x7e\x4e\x7a\x10\x61\xba\x65\xb3\xd9\xac\x1c\x1c\x1c\x84\xa6\x69\x0c\x80\xf5\x10\xeb\x57\x5a\x8a\x63\x11\x43\x34\x36\x16\xd5\x56\xc5\xe3\x2e\xc5\x00\x96\xc3\x66\xfa\xed\xfe\xa5\xe7\x8e\xf6\x2e\xff\x85\x49\x7c\x9e\x88\xa6\x89\xa8\x70\xe2\xc4\x09\x7e\xe9\xa5\x97\x1c\x58\x26\x00\xc3\x50\xa1\x5f\x6e\x2d\x5e\xc9\x85\xcd\x72\x5c\x57\x9a\x34\x29\xc2\x00\xc8\x14\x5c\xc9\x44\xcd\x85\x63\xbd\xcb\xaf\x1d\xd9\x96\xf9\x93\x92\x26\x4f\x30\xf3\x18\x11\x65\x4a\xa5\x52\xe5\xd5\x57\x5f\x85\x94\x72\x45\x1d\x83\xec\x0d\x6e\xf8\xda\xd7\xbe\xa6\x02\x68\x22\xa2\xa1\xc3\xe7\x52\xbf\xb3\x73\x26\xfe\xb0\xd7\x28\x59\x33\x06\xfd\xda\x3f\x03\x4c\x8c\xb7\xb7\x2e\xfd\x5f\x47\xfb\x96\xff\x90\x99\x67\xa7\xa6\xa6\xf4\xe7\x9f\x7f\x1e\x58\xc5\x9c\x50\x27\xac\x67\xa6\x78\x4b\x60\xdd\x7d\xf7\xdd\xa2\xab\xab\x0b\x89\x44\x02\x89\x44\x02\x40\xd5\x65\x98\x88\x64\xa9\x54\x42\x2e\x97\xc3\xc4\xc4\x84\xd7\xf5\x38\xe8\x1d\x6b\xcd\x98\xd7\x1b\xea\xc2\xfa\xda\xd7\xbe\xa6\x12\x51\x84\x99\x53\x00\xfa\x08\xb4\xa5\xb1\xa4\x0c\x76\x2f\x85\x07\x1a\xca\x6a\xca\x24\x36\xd2\xf1\xca\xe4\x64\xb2\x7c\xae\xac\xf2\x65\x10\x46\xed\xe5\xa9\x4c\x3a\x9d\x36\x7e\xf8\xc3\x1f\x4a\x1f\x2c\x8d\x99\x9b\x00\x74\x13\x51\x8f\x90\xe8\x6e\x28\x2b\x9b\xc2\x86\x88\x95\x55\x2e\xe4\x34\x63\xc6\x54\x30\x69\x13\xd6\x24\x33\xa7\xa5\x94\xa5\x37\xde\x78\x03\xf6\x01\x74\x2b\x42\xe0\x2c\xd2\x09\xa6\x69\x4a\x55\x55\x75\x00\xd9\xb1\xa6\xd2\xf1\xc1\xd9\xf8\xc3\x2e\x45\x32\xc3\xbf\x59\xc2\x4b\x6f\xb0\xc5\xe6\xe0\x6c\xec\xc9\x8f\x7a\x96\xbf\x2b\x05\x65\xda\xdb\xdb\xf5\x44\x22\x01\x7b\xa7\xb7\x37\x04\xd9\xb5\xfc\xfa\x87\x97\xa0\x82\xf4\x94\x7a\xb0\x82\xf4\xbe\xba\xb0\x02\x4e\x50\x96\xce\xb1\x44\xf6\x6c\x18\xba\xae\xfb\xf1\x5f\xcf\x44\xa4\x9e\x42\xbf\x1a\xde\xab\xc2\x7a\xf7\xdd\x77\xe5\x81\x03\x07\xdc\xc9\x0a\x33\x67\x32\x11\x63\x2c\x13\x31\x3e\x04\x10\xb1\x95\xf8\x02\x9c\x9d\x40\x6c\x9d\x95\x6b\x18\x86\x97\xb8\xbc\xb0\x74\x00\x69\x1b\x56\xda\x24\x8c\x65\x22\x46\x02\x96\xe3\x82\xc1\xcc\x05\x30\x32\xb0\x8e\xa3\x2f\x00\xf0\x1f\x55\xb5\x02\x77\xbf\x88\xac\x31\x66\x6c\xdf\xbe\x9d\xa2\xd1\xa8\x60\xe6\x70\x39\xc4\xda\x1d\x53\xf1\xc3\xc2\xf6\x5d\xf2\x18\x48\x6c\x62\xb2\x9e\xad\xe8\x2a\x4b\x8b\x18\x22\x35\xd9\x58\x7e\x7f\x29\x62\x5c\x53\x14\x45\xcf\xe5\x72\x72\x76\x76\xd6\x2f\x1e\xbd\x6a\x9d\x6b\xd6\xf3\xc4\x39\xf1\x5e\xd1\x2a\x3d\xe9\x14\xf0\xf3\x96\x01\x6e\x02\x56\xa5\x52\x01\x00\xae\x54\x2a\xe4\xd8\x08\x7d\xf8\x7b\xe1\xd7\x8c\x33\x4f\xfd\x82\xde\x7b\x53\xb0\x66\x67\x67\xa9\x5c\x2e\x73\x57\x57\x97\x61\x8b\xf6\x3c\x2c\xb1\x6e\xe9\x8f\xd6\x1a\xe6\x75\xb2\x3e\x3c\xb6\x48\x44\x85\x4c\x26\x63\x7c\xf7\xbb\xdf\x95\x41\xb0\x66\x67\x67\xb9\xab\xab\xcb\x0c\x85\x42\x65\x22\x2a\xda\xb0\xd2\x44\x34\x67\xaf\x30\x38\x3a\x67\x31\x9f\xcf\xeb\x6f\xbc\xf1\x06\xdb\x2b\x24\x75\xeb\xe8\x3f\xa3\xb5\x26\xc4\x62\x31\xb2\xb7\x5b\x85\x2a\x2a\x47\x7b\x17\x23\xfb\x1b\xcb\xa1\x0e\x57\xa5\xe7\xaa\x42\x5f\x55\x28\xab\x71\xf6\x4f\x11\x4c\xc6\x48\x6b\xe9\x6d\x10\xf2\xa9\x54\xca\xb0\xbf\x24\x51\x4f\x21\xc7\x2a\xf1\xfe\x67\x87\x38\xfc\x79\x9d\xf8\x20\x38\xb7\x02\x16\xea\x94\x5b\xc1\xc8\xd7\x78\xef\x4d\xc3\x9a\x9d\x9d\xe5\xe3\xc7\x8f\x73\x47\x47\x07\x37\x36\x36\xea\x64\x6d\x53\x2b\x10\x51\x9e\x88\x72\x44\x94\x67\xe6\x52\xa9\x54\xaa\x1c\x3f\x7e\x9c\x5f\x7d\xf5\xd5\xa0\x76\x01\x00\xce\x66\xb3\x7c\xea\xd4\x29\x2e\x97\xcb\x48\x24\x12\x46\x2c\x16\x33\xec\x6d\x6a\x45\x22\x2a\x11\x91\xbe\xbc\xbc\x5c\xb9\x70\xe1\x82\x7c\xfd\xf5\xd7\x31\x3f\x3f\x5f\x17\x96\xf3\x5b\xe1\x32\x6d\x07\x09\x40\x4c\x4d\x4d\xe1\xae\xbb\xee\x92\x00\x4a\x0c\x64\xae\xb4\x16\x8f\xf6\x2c\x85\x87\x2d\x7b\x48\x7d\x97\x69\x2f\xdb\x00\x80\xad\x0b\xd1\xc7\x9b\x8a\xea\xb7\x16\x63\x46\x3a\x1e\x8f\xeb\xbd\xbd\xbd\xb0\xfd\x87\x9c\x10\x24\xce\x80\x60\x91\x06\xac\x14\x1f\x6b\x89\xd6\x5b\x09\x6b\x35\xdb\x95\x3f\xac\x55\x7e\x3d\xf8\xac\x0b\xd6\x0b\x2f\xbc\x00\x00\x72\x70\x70\x10\xbd\xbd\xbd\x6e\xf9\x6c\x36\x8b\xa9\xa9\x29\xa7\xbd\xeb\x99\x3f\x6a\x60\x9d\x39\x73\x06\x67\xce\x9c\x91\x91\x48\x04\xa5\x52\x49\x0e\x0c\x0c\x08\x00\xb8\x78\xf1\x62\x8d\x9b\xf6\x7a\x60\x39\x1c\x0c\x08\x18\xad\xcb\xcb\xcb\x3c\x3c\x3c\x0c\x45\x51\x40\x44\x5a\x29\x24\xc3\x43\xd3\xf1\x47\x54\x26\xcd\x59\xf4\xf5\xba\x4c\x57\x39\x18\xaa\x7e\x54\x20\x28\x4c\x51\x49\x58\xbe\xd6\x5c\xfa\x10\x84\x62\x2a\x95\x32\xcf\x9d\x3b\x17\x34\x53\x0a\xe2\x62\xf5\x46\xb2\xa8\x53\xc6\x9b\xdf\xdb\x51\xb7\x0a\x96\x9f\xeb\x78\xe1\xb1\xaf\x5c\x50\xbd\xd6\x8a\xbb\x29\x58\x0b\x0b\x0b\x3c\x32\x32\xe2\xfc\xe8\xfa\xf5\xeb\x32\x9b\xcd\xae\x80\xb5\x67\xcf\x1e\xb1\x75\xeb\x56\xc7\xd5\x9a\x5a\x5b\x5b\x31\x37\x37\x57\xc3\x89\x0c\xc3\x70\x61\x2e\x2c\x2c\x10\x00\xe6\xea\x9a\xd0\xba\xf0\xf2\x9f\x32\xed\x17\x93\x22\x99\x4c\xa2\xb5\xb5\x15\x00\x54\x5d\xe5\x70\xe7\x72\x78\x4f\xaa\x18\x51\x4f\x6f\x55\x00\x00\x1c\x88\x49\x44\x41\x54\xda\x04\xa0\xd6\x65\x9a\xaa\x2e\xd3\xee\x71\x0f\xb0\x9d\x00\x8a\x1c\x75\xe3\xf9\x88\xd1\x5c\x0c\x6d\xbe\xd0\x5e\x78\xb1\xac\xc8\x74\x34\x1a\xad\x7c\xf4\xd1\x47\x41\xb3\x3f\x0e\x78\xae\x87\x9b\x93\x16\x34\xad\x0f\xe2\x4a\xb7\x0a\x96\x1f\x57\xe1\xcb\xcb\xbe\xb4\x8d\xde\xdf\x56\x58\x5f\xf8\xc2\x17\xc4\xc1\x83\x07\x95\xbe\xbe\x3e\xa5\xb3\xb3\x53\x34\x36\x36\xaa\x7d\x7d\x7d\xd4\xdb\xdb\x8b\xbb\xee\xba\x0b\x2d\x2d\x2d\x34\x32\x32\xe2\x6f\x8b\x1b\xc6\x4b\xc1\x4a\x65\xbb\xa6\x81\x4d\xd3\xa4\x81\x81\x01\x00\x20\x10\x45\x98\xb8\x71\xfb\x5c\xf4\x3e\x30\x91\xeb\x32\x5d\x63\xec\xa8\xda\xc4\x1c\xc3\x2b\x40\x50\x24\xe2\x04\x2a\x5d\x4b\x95\x8f\x12\x51\x71\xcb\x96\x2d\xd2\xe6\x62\xf5\x6c\x5a\x5e\xe5\xd1\x9b\xcf\x3f\x41\x40\x40\x1e\x2f\x2c\x60\x65\xfd\x6e\x06\x96\x3f\x1f\x7b\xe0\x00\xb5\x70\xfd\x1c\xd4\x29\xef\x57\x8c\x6f\x2b\x2c\x22\xc2\xe3\x8f\x3f\x4e\x8f\x3d\xf6\x98\x12\x8d\x46\x43\x02\x14\x4b\x94\x95\x96\xce\x65\x6d\x7b\x7b\x4e\xdb\x1a\x36\x44\x83\xa1\x00\x52\x21\x34\x35\x37\xc9\xe1\xe1\x61\x36\x0c\x03\xf6\x64\xec\xa6\xf0\xf2\x8a\x48\x3f\x82\x02\xb0\x8c\x7a\xdb\xb6\x6d\x43\x34\x1a\x25\x66\x0e\xe5\xc2\x26\x06\xe6\x62\x0f\x45\x4d\x25\xe1\x12\x11\x9c\x95\xfa\xaa\xe2\x5f\xfb\x4e\x2b\x3d\x55\x08\x6d\x1b\x6d\x29\xbd\x51\xd0\xe4\x5c\x34\x1a\xd5\x2b\x95\x0a\x66\x67\x67\x81\x5a\xf1\xe3\xd7\x71\xbc\x71\xde\x19\x1f\xf9\xe2\xe0\xb9\xf7\xeb\x34\x74\x0b\x61\xf9\x95\x70\x6f\x9c\xff\xe7\x0d\xc2\x57\xce\xfb\xbb\xad\xb0\x1e\x7f\xfc\x71\xea\xef\xef\x17\x44\x14\x4b\x15\x43\x5b\x3f\x71\xb9\xf9\xb7\x1e\xbe\xd2\xf4\x7f\xee\x99\x8e\xff\xf7\x03\x73\xb1\x5f\x1d\x9a\x8e\xff\xc3\x9d\x33\xb1\x27\xc3\xa6\xe0\xf9\x86\xca\x38\xab\xa2\xd2\xd7\xd7\x27\x99\x99\xa7\xa6\xa6\x6e\x0a\xaf\x15\x2e\xd3\x9e\x42\x2e\xc1\x29\x8a\x82\x9e\x9e\x1e\x10\x11\x19\xc4\xe1\x88\xa1\x74\xf4\x2c\x45\x76\xd7\x75\x99\x06\x57\x2f\x9e\x68\x85\x29\x1a\xab\x28\xd1\xcb\x6d\xc5\x77\x40\x54\x48\xa5\x52\xc6\xd5\xab\x57\xa1\xeb\xba\x7f\xea\xee\x9d\xf2\xfa\xa7\xee\x5e\xea\xf5\x8f\x28\x7f\x1c\xe3\xd6\xc3\xf2\x8f\x5c\xf2\xfd\xbc\x62\x24\xc8\x04\x13\xc4\x41\x6f\x1b\xac\x87\x1e\x7a\x88\x76\xec\xd8\x21\x00\x24\xfa\x32\x91\x7b\x9e\x3e\xd3\xf6\xed\xce\x65\xed\xd3\x0a\x53\x33\x81\x14\x30\x48\x10\x85\xc2\xa6\xe8\xda\xb4\x14\x3e\xdc\x95\x0d\x6f\xbd\xda\x5a\x7a\xbf\x22\x64\xa9\xbb\xbb\xdb\xb4\x55\x99\x1b\xc6\x4b\xf1\x21\xe5\x0d\x2e\x95\xe6\xf3\x79\xda\xb5\x6b\x97\x14\x42\x80\x88\x42\x4b\x51\x83\x77\x4f\xc7\x1e\x09\xb1\xd0\xc8\xae\x8b\xbb\x1e\x49\xb0\x15\x7e\x9b\xa3\x79\xcc\x18\x20\x42\x53\x51\xed\x4f\xc7\x2a\x67\xd2\x71\x63\x34\x14\x0a\xe9\x0d\x0d\x0d\xce\x09\xd4\xf5\x46\xa2\xf7\xb9\xde\x28\xf2\xa6\x7b\xaf\xb7\x0b\x96\x57\x6c\x06\x8d\x68\xef\xd5\xfb\x2e\xa0\x96\x83\xe2\x76\xc2\xea\xed\xed\xa5\xfb\xef\xbf\x5f\x10\x51\xac\xa9\x14\xda\xf1\xd9\xd3\xad\xdf\x8a\xeb\xca\x20\x81\xec\xc1\xef\xf4\x11\x9c\x67\x6a\x28\x2b\xbb\x52\x05\x35\x75\xb9\xad\xf8\x2e\x04\x15\x77\xed\xda\x25\x4f\x9e\x3c\xe9\x6f\xab\x75\xe3\xe5\x88\x48\xbf\xfe\x55\x43\x9d\xba\xae\xa3\xa5\xa5\x05\xcd\xcd\xcd\x0c\x40\xe8\x0a\x87\x1a\xca\xca\xe6\x8e\x65\xad\xdf\xdd\x13\xe8\xea\x5d\x80\xbb\x5a\x49\x80\xcb\xe5\xc8\x05\xac\x76\xe4\xc2\x3b\x2e\xb4\x17\x5e\x36\x54\x2c\x37\x35\x35\x19\x4b\x4b\x4b\x58\x5c\x5c\xf4\x8f\x0a\x60\xe5\xc8\xf4\x8f\x1a\x6f\x99\x20\x0e\x75\xbb\x60\x79\x89\xd6\xdb\x5e\x41\x81\x7d\xe9\x7e\x91\x7c\xdb\x60\x3d\xfe\xf8\xe3\x14\x8f\xc7\x43\x00\x9a\x1f\x1e\x69\xfc\x27\x9b\x96\x22\x9f\xac\x6e\xd5\xab\x8a\x18\xb2\x21\x39\xa6\xa7\xa6\x92\x3a\x30\x1f\xaf\x9c\x4c\xc7\x8d\x31\x55\x55\xcb\x86\x61\x60\x66\x66\xc6\x8b\xe3\xba\xf1\x12\xa8\x52\x9b\x97\x8b\x49\xcf\x55\x02\x80\x7d\x44\xa2\x84\xfd\x51\xf1\xe3\xdd\xb9\x17\xca\x2a\x17\xaa\x45\x3c\x66\x8a\x2a\xcf\xaa\x72\x30\x86\x1b\x9b\x2c\x29\x43\x07\x46\x1b\xff\x31\x31\x9a\x88\x48\x7b\xe0\x81\x07\xea\xbe\x37\xe0\xde\x1b\xe7\x9f\xe1\x49\xdf\xcf\x5f\xb7\x5b\x09\x0b\xbe\xbc\xde\x20\xd6\x48\xf7\xe3\x70\x5b\x60\xa5\x52\x29\xc0\xfa\x34\x5f\x7b\xff\x42\xf4\x33\xae\xf7\x9e\x87\xf7\xb8\x3a\x82\xf7\x10\x3e\xa6\xc8\xd0\x4c\xfc\x17\xc0\x48\x12\x91\x6a\x4f\xf2\x6e\x08\x2f\xbf\x91\xcc\x1f\xdc\xf8\xa9\xa9\x29\x39\x35\x35\x25\xed\x8d\xa4\xf3\x8b\x31\xe3\xec\x85\xf6\xc2\x3b\x2b\x36\x7f\xb0\xc5\xc1\x1c\xa2\xaa\xa9\x09\x57\x3d\x31\x86\xa6\xe3\x5f\xdd\x31\x17\x7b\x1c\x8c\x44\x2c\x16\x53\x9f\x7e\xfa\x69\xe1\xdb\x38\xe0\xc7\xcd\x9f\x06\x4f\x7a\x50\x5a\x90\x72\x7e\x2b\x60\x05\x05\x3f\x5c\x59\x27\xde\x9f\xff\xb6\xc2\xb2\x77\x75\x69\xc9\x92\xd2\x13\xae\x88\x4e\xc0\xd9\x17\x65\x75\x8c\x73\xb2\x8f\xed\x2b\x56\xc3\x18\x5a\x73\xa1\x21\x55\x52\x0a\x80\x96\x4a\xa5\xdc\xf3\xf9\x37\x8a\xd7\x6a\x15\xf5\x06\x09\x00\xc7\x8e\x1d\x03\x59\x07\xcb\xe5\x18\x3c\xfd\x51\xcf\xf2\x4f\xcb\xaa\xcc\x39\x48\x39\x57\x97\x97\xd9\x17\xf7\xf8\x7e\x8f\x3e\xa6\x30\x45\x1e\xbe\xd2\xf8\xdb\xcd\x45\x75\x80\x99\x63\x5d\x5d\x5d\x62\xff\xfe\xfd\x2b\xde\x19\x70\xf5\x57\xc2\x5f\xd1\xa0\xfc\xb7\x12\x96\x1f\x66\x50\x3e\x3f\xd1\x06\x71\xc6\xbf\x09\x58\x82\x99\x55\x45\x52\x92\x60\xed\x18\x77\xa4\x0a\x80\x1a\x37\x68\xef\x71\x05\x0c\x40\x91\x14\xa3\xea\xc7\xc0\x1c\x57\xed\x0d\xe3\x25\x10\xdc\xb0\x81\x54\x3a\x39\x39\x29\xaf\x5f\xbf\x2e\x61\x79\x80\xce\x2f\x45\x8c\xb3\x27\xba\x73\x3f\xaf\x39\x71\x1a\x2b\xb5\x41\xf8\x9e\x9d\x6b\x5c\x57\xfa\x9f\xb8\x90\xfa\x17\x61\x53\x74\x02\x88\xdc\x71\xc7\x1d\x62\xd7\xae\x5d\xf5\x46\xe8\x5a\x83\x61\xad\x11\x75\xab\x60\xad\x37\xce\x79\x0e\x12\x2d\xfe\xfc\xb7\x05\x96\x4d\x48\x22\xaf\x99\x05\x53\xb0\xee\x2a\x93\x0c\xc0\xe5\x65\xd5\x5e\xaa\xf2\x35\xc6\x52\xd4\x98\x35\x05\x4b\x58\x44\x8a\xce\xce\xce\x1b\xc2\xab\x5e\xa2\xf4\x65\x74\xc5\xc7\x4f\x7f\xfa\x53\xc9\xcc\x06\x33\xe7\x40\x98\x3c\xbe\x29\xf7\xd3\xa5\x88\x39\xeb\xa0\xc8\x76\x0d\xc8\x79\xf6\x54\xc6\x91\xf3\xe4\xb9\xef\xca\x6a\x8f\x3e\x72\xb9\xf9\x37\x15\x89\x56\x00\xda\xfd\xf7\xdf\x8f\xee\xee\x6e\x81\x95\x8d\xe7\x17\x61\x41\xe2\x3d\x48\x14\xde\x6a\x58\xfe\x10\x94\x2f\x48\xed\xf0\x3e\xd7\x53\x4b\x6e\x19\xac\xa1\xa1\x21\xe1\x6c\x9e\xce\x85\xcd\xcc\x42\xcc\x18\x65\x54\x8f\x3e\x70\xb7\x0c\x3b\x6a\x19\x5b\x84\x65\x7f\xee\x0b\x23\xd6\x57\x3c\x9c\xa3\xe8\xa5\xe7\xa3\xab\x1b\xc2\x2b\x48\x51\xab\xc7\x82\xdd\xfb\x99\x99\x19\x49\x44\x05\x00\xe9\x62\x48\x5e\x7e\x7f\xf3\xd2\x4f\x18\x90\x5e\x33\x05\xe0\x31\x5b\x38\x7f\x9e\x1d\xc6\xce\xd6\x27\x02\x61\xe7\x4c\xec\xd7\xee\xbd\x96\xfc\x0a\x81\x9a\x42\xa1\x90\xf6\xc9\x4f\x7e\xd2\xfb\xbe\x20\x1c\x56\x53\xe2\x83\xf2\xdd\x4a\x58\x08\x48\xf7\xe7\xf3\xc3\xaa\x97\xff\xb6\xc1\x3a\x7b\xf6\xac\x73\x84\xa9\x2e\x05\xb2\xc7\x37\x2d\xbf\xc2\x60\xe9\x8a\x45\x9b\xb2\x82\xdc\xa2\x0b\x21\x99\xbe\xd8\x5e\x78\x1b\xd6\xa9\xd2\x46\x36\x9b\xf5\xc2\xde\x10\x5e\x75\x5d\xa6\x57\x79\xa6\xe9\xe9\x69\x0c\x0d\x0d\x49\xb2\x4e\xe0\xa1\x74\xdc\x28\x76\xe4\xb4\xc1\xa6\x62\xa8\xc3\xe2\x54\x40\x8d\x85\xd5\x09\xd5\x93\x13\x6b\xd2\x89\x21\xba\x96\xc3\x0f\x94\x43\x72\x62\xa6\x41\x1f\x51\x14\xa5\x32\x3c\x3c\x2c\x67\x67\x67\x69\x79\x79\xd9\x6f\x42\x80\x07\x1f\xe9\x89\x5f\xed\x1a\x64\x1c\xbc\x51\x58\xd2\x07\x13\x3e\x78\xf0\xdd\x07\xe5\xf5\xda\xd5\x6e\x1b\x2c\x67\x05\x06\x80\x92\x8e\x55\x4a\xc9\xb2\xda\xd3\x9a\x0f\xf5\x55\x9d\xa9\xe0\xf1\x8a\xb1\x40\x9a\x04\xe3\xf5\x1d\x8b\x7f\x72\xbd\x51\x7f\x13\x96\x2f\x59\xfe\xe2\xc5\x8b\x72\x62\x62\xc2\x6f\xa6\x58\x17\x5e\x41\xdf\xec\xc6\x1a\xcf\x5c\x2e\x97\x39\x1e\x8f\x53\x6b\x6b\x2b\x13\x91\x29\xc1\x62\x2e\x51\xc9\xed\x9c\x89\x1f\x08\x49\x11\x22\x7b\x37\x70\x95\x83\xa1\xba\x84\x64\x6f\x66\xad\x31\x61\x10\x20\x98\xd4\xde\xa5\xf0\xc1\xbc\x26\x47\xe7\x12\x95\x31\x45\x51\x2a\x5b\xb7\x6e\x35\x67\x67\x67\x61\x13\x99\xb7\x52\x5e\x82\x90\x01\x69\x41\xb8\x3b\xf7\x22\x20\xff\x46\x60\xf9\x61\xfa\x1b\xdb\x69\xe0\xd5\xf2\xae\xf5\x7c\x4b\x60\xd9\xfe\x7c\x92\x88\x58\x82\x31\xde\x5c\x9e\x56\xa5\x68\x6c\xcb\x6b\x3d\xc4\x24\x5c\x85\xdf\xe6\x03\xb9\xb0\x99\x79\x7d\x7b\xe6\x2f\x2e\xb4\x17\x9e\x03\xe1\x2a\x80\x05\x29\x65\xf9\xb9\xe7\x9e\x93\x37\x8a\x97\x7f\x57\xd1\x7a\x82\x00\xc0\x73\x73\x73\x34\x30\x30\x20\x43\xa1\x10\x03\xe0\x52\x88\x0d\x53\xe1\xf8\xe6\xc5\xc8\x6e\xc7\xc8\x5a\xb3\x24\xe9\xd4\x83\x60\x2d\x2b\x79\x26\x9a\xce\x19\x5b\x0a\x23\xdc\xbb\x18\x79\xb8\xa0\xc9\xab\x73\x0d\x95\x6b\x42\x08\xa3\xbf\xbf\xdf\x9c\x99\x99\x41\x2e\x97\xf3\x72\x18\x2f\xa1\xd4\x1b\x59\xf5\x38\x18\x50\xcb\xad\x6e\x04\x16\x61\xe5\x88\xf5\x72\xba\x20\xa3\xe4\x6a\xdc\xf3\xb6\xc0\x9a\x9b\x9b\xa3\xfe\xfe\x7e\x0e\x87\xc3\x12\x40\xc5\x14\x5c\x1e\x4f\x95\x47\xaf\x35\x97\xae\x57\x14\x96\x00\xb8\x1c\x92\xc5\xd9\x84\x3e\x79\xaa\x3b\xf7\xfe\x91\xff\xaf\xbd\x6b\x6b\x8e\x1b\xb9\xce\xdf\x69\x00\x33\x18\x92\x73\xe1\x68\xc4\x9b\x48\x5a\x1c\x51\x0a\x75\xf1\xca\xab\x75\x76\xd7\xd2\x6a\x57\x8e\xbd\xa9\xf2\x3a\xb5\xa9\x52\x25\x0f\xa9\xa4\x2a\x65\x3f\xe4\x2f\xa4\xfc\xe0\xca\x7b\xf2\x90\xb7\xbc\xe5\x25\xe5\x5c\x2a\x15\x57\x2a\x76\xbc\xf1\x26\xa9\xf2\x6d\x77\x63\xaf\x6d\xa9\xb4\xa6\xee\xd4\x9d\xe4\x90\x12\x87\x1c\x0e\x67\x06\x33\x18\xa0\x4f\x1e\x30\x98\x69\x80\x98\x0b\x29\xae\xd7\x76\xd2\x55\x28\x00\xdd\xa7\x3f\x74\x37\x0e\xce\x39\x68\x1c\xf4\x99\xdf\xfe\xa7\x42\xca\xfe\x21\x08\x4b\x2d\x0f\x56\xeb\xd6\xad\x5b\xf2\xf1\xe3\xc7\x51\xd2\x7c\xa0\x76\xf5\x74\x99\x8e\xa8\xd0\x7e\xca\x1d\xc7\xa1\x9d\x9d\x1d\xe4\xf3\x79\x49\x44\x12\x04\x3c\x1b\xb1\xcb\x87\x2b\xb1\xf9\x51\x4b\x1f\xef\x4c\xab\x7a\x90\x1d\x91\xa0\xa8\x46\xa8\xef\x30\x9e\x5c\xd3\x98\xcc\xa3\x9b\xe6\x9b\x0d\x5d\xae\x3c\x4d\x36\x1f\x09\x4d\x73\xf2\xf9\xbc\xc3\xcc\xb4\xbe\xbe\x0e\xa5\xad\x12\xe1\xd9\x91\xe0\x06\x74\x06\x02\xca\x5e\xcd\xdf\x2f\x96\x4f\x1f\x66\x4e\x95\x2e\x7c\xe3\xa3\xae\xfb\xb1\x62\x49\x29\xb1\xb6\xb6\x86\xb9\xb9\x39\x57\xd7\xf5\x26\x11\x59\x20\x54\xaa\x71\xb7\xf0\x70\xd4\x5a\x5c\x9c\xac\x7e\xf8\x8b\x23\xd5\x1f\xde\x1a\xaf\xfd\x70\x35\xd5\xf8\x9f\xa6\xce\x37\x18\xfc\x00\xc0\x3a\x11\x55\xb7\xb6\xb6\x9c\xef\x7e\xf7\xbb\xaa\x31\xbf\xe7\x76\xf5\x74\x99\x56\xf2\xc2\x7b\x00\xe0\x52\xa9\xc4\x53\x53\x53\x48\x26\x93\x2e\x33\xbb\x2c\x88\xd6\x93\xf6\xf6\x7c\x31\xf1\x52\xdc\x15\x09\x02\x10\x30\xe8\xdb\x6b\x69\xb5\x16\xd4\x20\x2f\xcf\x57\x99\x7e\x13\x05\x93\x31\x53\x32\x3f\xaf\x31\xaa\xab\xe9\xc6\x6d\xd2\x44\x73\x7a\x7a\x5a\x0a\x21\x78\x75\x75\x55\x15\xd7\x3e\x73\x84\xd5\xbc\x9f\x8f\x88\xb2\x6e\x66\xc0\x5e\xb0\xd0\xa5\x1e\x61\xf7\xe0\xf7\xba\x6e\x5f\xac\xb1\xb1\x31\x0a\xfd\x0e\xb7\x27\x2c\xcb\xb2\x78\x65\x65\x85\xf2\xf9\xbc\xab\xeb\xba\xcd\xcc\x55\x00\xdb\x44\x54\x24\xa2\x35\x00\x2b\xcc\xfc\x84\x88\x9e\x30\x73\x01\xde\x3a\x64\xb5\xcd\xcd\x4d\xf7\x9b\xdf\xfc\xa6\x54\xb1\xf6\xd3\x47\xd5\xe1\xb0\x9b\x61\x1f\x25\x8a\xdb\x79\x4f\x9f\x3e\xa5\x7c\x3e\x2f\x75\x5d\x97\x00\x9c\x86\x21\x9d\xed\x84\xe3\x1c\xdb\x18\x7a\x51\x80\x84\x1a\xc0\x32\x60\xf8\xfb\xf9\x81\x15\x13\x5b\xad\x23\x40\x80\x8c\xa9\xed\xf8\xeb\xa9\x86\x3e\xb2\x3c\xda\x58\x74\x88\xed\xc9\xc9\x49\x67\x72\x72\x12\xeb\xeb\xeb\xd4\x68\x34\xb8\x47\xfb\xba\x19\xe2\xbd\xfa\x33\x28\x56\x94\xaa\x08\x0f\x7a\x14\xed\x20\x79\x6d\xac\x5c\x2e\x47\x6f\xbd\xf5\x16\xbd\xf8\xe2\x8b\xe2\xdc\xb9\x73\xe2\xa5\x97\x5e\x12\x27\x4e\x9c\x40\xb5\x5a\xa5\x52\xa9\xb4\x27\x2c\xcb\xb2\xe8\xda\xb5\x6b\x72\x74\x74\x94\x33\x99\x8c\xd3\xfa\xa1\xa3\x02\x6f\xc5\xc4\x12\x11\x6d\xc1\x63\x3a\x8b\x99\x1b\x8a\xef\xfe\x73\xf7\xb1\xa7\xcb\xb4\x52\x16\xe6\xd6\xf6\xbe\x5e\xaf\xf3\xce\xce\x0e\xcd\xcd\xcd\x49\x21\x84\xcb\x80\x2c\x0d\xb9\x15\xc1\x48\x4f\x6d\xc7\x8f\x0b\x45\xf3\x90\xb2\x57\xcf\xc2\xff\xed\xb6\x5f\x0c\x00\x91\xab\x1a\x9f\x9d\x2d\x99\xa7\xd6\x52\xcd\x45\xcb\x90\x95\x64\x2a\xe9\xcc\xcf\xcf\xcb\x66\xb3\x49\xc5\x62\x11\xec\xaf\x04\xd7\x49\xea\x00\xa8\xaf\xd0\xbd\x9e\x3e\xd5\xf0\xef\x87\x15\x35\x0e\x84\xe8\xf1\x0a\x3f\xd1\xe1\x7a\xbb\xf2\x0c\xc3\xa0\x97\x5f\x7e\x99\x2e\x5d\xba\x24\x12\x89\x84\x41\x8c\xa1\xdf\x7a\x3a\x7c\xc6\xd1\xd8\xe5\x61\xc3\x9e\x9b\x9b\xe3\x72\xb9\xcc\x9b\x9b\x9b\x83\xe0\x07\xda\x71\xff\xfe\x7d\xba\x72\xe5\x8a\x3b\x3c\x3c\xcc\xb1\x58\xcc\xb1\x6d\xbb\x69\x18\x86\xbd\xb3\xb3\xd3\xdc\xdc\xdc\x74\xef\xdc\xb9\x23\xbf\xf3\x9d\xef\xc8\xd5\xd5\xd5\x03\xeb\x63\x5f\x97\x69\x74\x06\x37\xfc\xfa\xec\x97\x73\xa9\x54\xa2\x4c\x26\xc3\xd9\x6c\x56\x12\x51\x13\x04\xb9\x96\xb2\x4b\xa3\x96\x31\x93\xad\xe9\x93\x04\x80\x38\x28\xc5\x7c\x75\xe9\xfd\xf5\xc6\x9d\xc8\x66\xd4\xea\x0d\xa3\x45\x4b\x18\xb1\xb5\xfc\x7c\x71\xe8\x92\x65\xb8\xcb\xc5\xe1\xe6\x9a\x6e\xe8\xee\xcc\xcc\x8c\x1c\x1f\x1f\xe7\x42\xa1\x40\xb6\x6d\xab\xed\xf2\x19\x46\x86\xdb\xd9\xa3\x9f\xac\xd4\xeb\x87\x05\xec\x96\x72\x2a\x2d\x87\xca\x06\x3e\x9e\x99\x99\x11\x97\x2e\x5d\x42\x3e\x9f\x17\x00\x4c\xc3\xa1\xdc\x85\x07\x99\xaf\x5c\x78\x98\xfe\x9b\x51\xcb\x98\x58\x3a\x6c\xfd\x14\x82\xec\xd9\xd9\x59\xe7\xea\xd5\xab\x83\xe0\x46\xb6\xeb\xf1\xe3\xc7\x74\xfd\xfa\x75\xb9\xb8\xb8\xc8\x4b\x4b\x4b\x74\xe5\xca\x15\x79\xe7\xce\x1d\x2e\x14\x0a\x51\x2f\x1b\xcf\xd5\xc7\xbe\x2e\xd3\x08\x1a\x91\x61\xda\xf6\xeb\xfd\xc3\x87\x0f\xe9\xc4\x89\x13\x32\x1e\x8f\x7b\x33\xfd\x02\xee\x93\x4c\x63\x7d\xba\x14\x3f\x35\x62\xeb\x19\x0f\x45\x81\x69\x1f\x72\x6b\xba\xc2\x5f\xb1\x5a\x11\x63\xe8\x2c\x51\x19\x73\x29\x3b\xb7\x99\xf8\x72\xba\xae\x8f\xac\x25\x1b\x4b\x4d\x0d\x8d\x64\x2a\xe9\x9e\x3a\x75\x4a\x1a\x86\x41\x2b\x2b\x2b\x51\xed\x0a\x4b\xa9\x70\xfb\xc3\x26\x41\xaf\x3e\x86\x07\x5b\x7d\x82\xc3\x63\x44\x4a\x5d\x75\x2c\xfd\xfa\xaa\xda\x45\x3a\x9d\xa6\x57\x5f\x7d\x95\x5e\x79\xe5\x15\x31\x3c\x3c\x6c\x80\x31\x72\xb8\x62\x9c\x7e\xeb\xe6\xa1\xbf\x3a\xbe\x91\xf8\x33\x02\x86\xd2\x96\xfe\x82\xa3\xf1\xfa\x6a\xca\xbe\x4d\x44\xcd\x93\x27\x4f\xca\x1b\x37\x6e\x50\x6b\xb6\x5e\x60\xf7\x3d\x1a\xa8\x5d\xca\xc3\xb9\xab\x5d\x07\xd1\xc7\xbe\x2e\xd3\x08\x1a\xbe\xe1\x0b\x06\xa4\xc2\xe2\xe2\x22\x9f\x3d\x7b\x56\x6a\x9a\xe6\x32\xb3\xed\x6a\x70\x56\xd2\x8d\x67\x47\xb7\xcc\x4f\x9b\x8e\x36\x4c\xad\x36\x74\x1c\xde\xfc\x8b\xfa\x4a\x53\x31\xfe\xfd\x06\xb5\xc3\xe5\x11\x08\xd0\x0f\x57\x8d\x97\x8f\x3f\x1b\x7a\xc3\x32\x64\xa1\x34\xec\x3c\x83\x20\x39\x39\x39\xe9\x9e\x38\x71\x02\xcd\x66\x13\xc5\x62\x31\x3c\xa7\x15\xee\x87\x5f\x46\xca\x9e\x42\x79\x50\x8e\xc3\x58\x61\x63\x57\xcd\x0b\x6f\x6a\x0a\xdb\x7a\x0c\x80\x3f\xf7\xb9\xcf\xd1\xa5\x4b\x97\x90\xcb\xe5\x74\x22\x4a\xc4\x9b\x34\xfe\xdb\x4f\x52\x7f\xf2\x85\xbb\xd9\xbf\x4e\xd7\x8d\xcf\x10\xda\xaf\x48\x62\x62\x27\xf6\xd9\xd5\xb4\xfd\xb3\xb2\xe9\x14\x0c\xc3\x70\xb2\xd9\xac\xbc\x77\xef\x5e\xf8\x9a\x07\xd2\xae\x83\xc2\x1a\xc8\x65\x5a\xd9\x10\xba\xe0\xae\x17\x83\xad\xad\x2d\x1c\x3d\x7a\xd4\x11\x42\xb8\xcc\x6c\x37\x0c\x6e\x14\xd2\x8d\x52\xbe\x68\x9e\x31\x1c\x32\x7d\x14\xf5\xd7\x36\xdf\x15\xc9\x9f\xf3\xf3\x4f\x3c\xe3\x9f\xe1\x1b\x69\x7e\x03\xe2\xae\x36\x76\x6c\x33\xf1\x7b\x93\xdb\xf1\xb9\x72\xc2\x79\x5c\x8e\x3b\x95\x58\x2c\xc6\x47\x8f\x1e\x95\xf3\xf3\xf3\x88\xc7\xe3\x28\x95\x4a\xd4\xfa\xed\x2a\xdc\xee\x70\xdf\x10\x91\x17\x2e\x57\x6d\xb1\xf0\x93\x4b\xa1\x4d\x55\x23\x02\xbb\xc7\x8e\x93\xc9\xa4\x38\x7f\xfe\x3c\xbd\xfe\xfa\xeb\x34\x35\x35\xa5\x0b\x21\x4c\xc1\x94\x3e\xfe\x2c\x71\xf1\x77\x6f\x67\xff\xf2\xf8\xc6\xd0\x57\x34\x49\x49\xff\xf3\x0d\x00\x30\x33\x34\xa6\xc4\x64\x39\x7e\x72\x69\xcc\xfa\x7e\x53\xe3\x9d\x4c\x26\xe3\xb4\xfe\x6b\x38\x90\x76\x85\xf2\x0f\x04\x6b\x20\x97\x69\x85\x26\x6c\xc3\xa8\x65\x00\xbc\xa9\x0b\x00\x74\xe4\xc8\x11\x97\x88\x1c\x10\xec\x6a\x4c\x56\xd7\x52\xf6\x76\x7e\x33\xf1\xe9\x98\x14\x31\xcf\xd0\x6a\x49\x2d\xea\x6c\x81\xf3\x8e\x21\x16\xf8\xf7\x12\xdc\x96\x75\x7a\xba\xae\x9d\x5e\x58\x1f\xbe\x7c\xc8\x32\xb2\xe5\x84\xbb\x56\x33\xa4\x65\x9a\x26\x4f\x4d\x4d\xc9\xd3\xa7\x4f\x73\x3a\x9d\xa6\x6a\xb5\x8a\x7a\xbd\xae\xbe\x0c\x84\xfb\x13\xb5\x85\x25\x5a\x58\x72\x87\x27\x6a\xc3\x4f\x74\xd4\xf8\xf0\xd4\xd4\x94\x38\x7f\xfe\x3c\x5d\xb8\x70\x01\xb9\x5c\x4e\xd7\x75\xdd\xd4\x98\x92\x33\x5b\xf1\x97\xde\xbc\x93\xfd\x8b\x73\xcb\xc9\xaf\x0d\x35\xb5\xbc\x27\xe4\x5b\x33\x86\xbe\xa4\x6f\xf5\x3d\xe1\x88\x89\x74\x5d\xcf\xdc\xcf\x59\x3f\x66\x41\xd6\xf8\xf8\xb8\xb3\xba\xba\xea\x2f\x13\xbf\xaf\x76\xb5\xf2\x54\xc9\x7e\x60\x58\x03\xb9\x4c\xb7\xf2\xc2\xe5\xea\x53\x1d\xc0\x58\x5b\x5b\x23\xd3\x34\xf9\xf0\xe1\xc3\x5e\x30\x4c\x70\xb3\x12\x97\xe5\xb5\x94\x5d\x9a\x2d\xc5\x17\x62\x2e\x99\xe4\xeb\xc7\xce\x4f\x94\xca\x23\xd0\x89\x19\xe4\x2f\x68\xd7\x59\xe1\x06\xf0\x0b\x5b\x2a\xd5\xcc\xd5\x8c\x97\x4f\xae\x0f\xff\x7e\xb6\x66\x8c\x57\x63\xee\xb3\x6a\xdc\xb5\x84\x26\x90\xcd\x66\x79\x61\x61\x01\xf3\xf3\xf3\x9c\x4c\x26\xc9\xb6\x6d\xaa\x56\xab\x61\x06\x89\x7a\xbd\x8e\x92\x76\x6a\x9e\xda\x6f\x75\xbc\xa2\x12\x5f\xbc\x78\x51\xbc\xf6\xda\x6b\x74\xfa\xf4\x69\x91\xc9\x64\x0c\x00\x09\x9d\x29\x75\x74\xd3\x7c\xf5\xd2\xd2\xe8\xd7\x5e\x7e\x92\xfa\x7a\xa6\x6e\x9c\x05\x48\xf7\xbb\xd7\x71\x6d\xee\x00\xf9\x9f\xd6\x46\x6b\xc6\x42\x53\xe3\xb5\x42\xca\xbe\x25\x34\xd1\x9c\x9c\x9c\x74\xef\xde\xbd\x0b\xd7\x75\xf7\xd4\xae\x50\x79\xd8\x54\x38\x10\x2c\x42\xf4\x5b\x52\x38\xf5\xa2\x51\xd5\x65\xc0\x56\xf9\xe2\x17\xbf\x28\xf2\xf9\xbc\x0e\x60\x08\xc0\x04\x18\x27\xc6\x2a\xc6\xc5\x2f\xdf\xc8\x7d\x35\x55\xd7\xb2\x1d\x27\xeb\x2e\xad\xe6\xe0\x00\x47\xf7\x8b\x94\x33\x86\x4b\x28\x17\xd2\x8d\xff\xbe\x3e\x51\xfd\xfb\x87\xd9\xfa\xcf\xea\xba\x2c\x83\x60\xc3\x0b\x39\x2c\x2d\xcb\x92\xab\xab\xab\x58\x5b\x5b\xf3\x63\x21\x0e\xd2\xc7\xa8\xf2\x48\xfa\xb1\xb1\x31\x31\x39\x39\x89\x89\x89\x09\x8c\x8d\x8d\x21\x91\x48\x08\xc0\x73\xfc\x23\x90\x39\x6c\x6b\xd9\xe3\xcf\x12\x97\x4e\xad\x0d\xff\x51\xae\x6a\x9c\x27\xc0\x6c\xbf\x31\x73\xab\x4f\x11\xbf\xfd\x75\x6e\xb7\x57\x6e\x6b\x72\xf3\xdf\xce\x6c\xfc\xe9\x4a\xa6\xf1\x01\x80\xca\xbd\x7b\xf7\x1c\x65\xee\xaa\xdf\xbd\x1a\xb4\xec\xb9\xb1\xa8\x0f\x71\x14\xf3\x84\xe9\xa3\xca\xe0\xe7\x5d\xbe\x7c\x59\xe4\x72\x39\x1d\xc0\x10\x33\x8f\x11\xd1\x7c\xda\xd2\x5e\xf9\xd2\x8d\xdc\x57\xc7\x2b\xc6\x34\xa9\x83\x07\xff\x4f\xf0\x8e\x60\xf3\x64\x18\x05\x98\x4d\x11\x7a\x01\xfb\xcd\x2f\x6b\x2d\xf7\x28\x6b\x86\xbc\xf3\x30\x5b\xff\xf7\x7b\xb9\xda\x7f\x15\x52\xf6\x2d\xcb\x90\x15\x10\x6c\xf6\xc2\x0c\x4b\x00\x92\x99\x65\xb1\x58\x84\x65\x59\x58\x5e\x5e\x86\x94\x12\xd7\xaf\x5f\x97\x00\x30\x32\x32\x22\x2a\x95\x8a\xf4\xf7\xea\xc0\x2c\x2c\x2c\x08\x4d\xd3\x10\x8f\xc7\x31\x3e\x3e\x0e\xc3\x30\xd0\x5a\x82\xdc\x8f\x32\xe7\x33\x55\x6c\xc4\xd6\xb2\x47\x4a\xf1\x33\xc7\x37\x12\x5f\x9a\xd9\x32\xdf\x8a\xb9\x34\xdd\xfe\x59\xa6\x65\x0a\xa8\xe7\xfe\xb2\x95\x6d\x35\xd9\x2a\xf0\xff\x9a\xf7\xc7\xa7\x34\xd4\xfc\xe8\x5f\xce\x3e\xfb\x4a\x35\xee\x2e\x01\xa8\x7d\xf0\xc1\x07\x72\x71\x71\xb1\x3d\xf6\x03\xdc\xbf\xf0\x7d\x44\x17\xba\x7d\x63\x0d\xca\x60\x51\x69\x10\xc9\x07\x20\xc8\x64\x00\x72\x00\xf2\x43\xb6\x38\xf7\x85\x3b\xa3\x7f\x9c\x2f\x26\xce\x04\x24\x99\x2a\x98\x29\x9c\x19\x4c\x81\xf8\xd6\xbb\xca\xda\xfc\x09\x49\x5c\xaf\xc5\xe4\xd2\x5a\xb2\xf1\xe3\xc7\xa3\x8d\x1f\x15\xd2\x8d\x8f\xb6\x12\xce\x5a\x53\xc8\xb6\x43\x5d\x6b\x2d\xad\xb6\x7f\x93\xaf\x92\x5b\x65\xed\x28\xb0\x40\x60\x41\x3a\xc0\x63\x24\xd1\x1a\x0f\x1d\x80\x1e\x77\x85\x39\x5a\x33\xa6\xa6\xb7\xe3\xe7\x66\xb6\xe2\x17\xc7\x77\x62\xaf\x9a\x8e\x38\x4a\x08\x06\x6a\x8d\xee\x55\xb0\x54\x89\xbf\x1b\xd9\xff\xa5\x9c\xf5\x0f\xff\x71\xb2\xf8\x75\x97\x78\xad\x56\xab\xd5\x5b\x4b\x33\x75\x4b\xbd\x04\xc3\x5e\xd3\x40\x58\x61\x15\x39\x88\xc4\x0a\xe7\x75\xab\x0f\x3f\xdf\x34\x4d\xf1\xc6\x1b\x6f\x60\x76\x76\x56\x10\xd1\x10\x33\x67\x89\x28\xaf\xbb\xb4\xf0\xea\xa3\xd4\x1f\xbe\xb8\x9c\x7c\x5d\xe3\x56\x58\x1b\xc5\xb8\xf7\x86\x10\x5d\x07\x38\x78\x8b\x22\x6e\x57\x40\xc7\xb6\x3f\xac\x4b\x97\x50\xb6\x0c\xf7\x71\x71\xd8\x59\xdc\x18\xb6\xaf\x6f\x8c\x34\xef\x94\x4d\xe7\xf1\x4e\xdc\xdd\xb4\x0c\x59\x93\xc4\x0e\x13\x24\x63\x97\x43\x1d\x00\x08\x82\x17\xcb\x5c\x30\xc5\x12\x4d\x61\xa6\xea\xfa\x58\xaa\xae\x4d\xe7\xaa\xc6\xc2\xd8\x4e\xec\xf4\xa8\x65\x9c\x49\x34\xc5\xac\x60\x8c\x04\x5b\x47\xca\x31\xb7\x8e\x09\xd1\xab\x39\xfb\x4d\x57\xcf\x79\x17\x96\x04\x3b\x1f\xcc\x6d\xff\xf9\x4f\x67\xca\x7f\x47\x44\xa5\x0f\x3f\xfc\x50\x46\x84\xd7\xeb\xb6\x0f\xf4\xab\xb5\xef\x46\xb7\x2f\xac\xc8\x55\xa6\x43\xa0\xea\x45\xc3\x0d\xe8\x55\xa7\x7d\x5c\xaf\xd7\xe5\xbb\xef\xbe\x2b\x2e\x5c\xb8\x20\x4f\x9d\x3a\x55\x83\xa7\x9a\x9c\xa6\xe0\xfa\x7b\x73\xdb\x95\xa7\x23\xf6\xf2\x1b\xf7\x46\xdf\x1e\xb2\x45\x2a\x60\x6f\xb4\x8e\x83\x8b\xaa\x74\x54\xa6\x6f\xb7\x74\x5c\x80\xfd\xc4\xf0\x3f\xb2\x87\xb1\x00\x16\x3a\x28\x33\xd2\xd0\x33\x23\xb6\xf6\xc2\xd1\x2d\x13\x2d\xcf\x74\x5b\x12\x2a\x8e\xc6\x1b\x0d\x4d\x96\x1a\x86\x2c\xd7\x75\x59\x96\x82\x6d\xe9\x49\x39\x10\xa0\xeb\x92\x62\x71\x47\x8c\xc4\x1d\x91\x89\x37\x45\x4e\x97\x94\x69\x31\x52\xac\xd3\x2e\x28\xed\xf2\x25\x29\x7b\x4d\x68\xaf\xd8\xec\x11\xf5\x5b\x19\x3a\xdc\xc7\x30\x96\x14\x90\xc9\x46\x3b\x72\x87\x9e\xcb\xe5\xfc\xe5\x17\xc3\x0f\x7b\xf8\x3c\xea\xde\x45\x95\x3f\x17\xd6\x7e\x63\x6b\x0f\x72\x1c\x4e\xf2\xfd\xf7\xdf\x87\x6d\xdb\x78\xe1\x85\x17\x6a\x9a\xa6\x49\x78\x86\x77\xfd\xce\x61\xab\x56\x1c\x6e\xae\x7e\xfe\xee\xe8\x1f\x1c\xd9\x8e\xe7\x03\x12\x8b\xe0\x31\x4b\xc8\xf6\x25\xf5\x0d\x14\x08\x49\x81\x50\xfd\x7e\x58\x20\x10\x73\x4c\x30\x65\x75\xa6\xac\xe9\x10\xd0\x50\x86\xa6\x9b\x2e\x0b\x49\xc8\x40\xbb\x28\xd8\xae\xa0\x6b\x72\xa7\xd5\x6a\x1d\x0a\xd4\xe9\x8f\x55\x89\xbb\xa5\x1f\xcc\x97\xbe\x71\x2f\x67\xfd\x2b\x76\x4b\x5b\x19\xda\x03\xd1\xd2\x26\x4c\xb7\x4b\x03\x3d\x0f\xd6\xbe\x5c\xa6\x95\xbc\xf0\xbe\x17\x0d\x01\xa0\xd5\xd5\x55\x6c\x6e\x6e\x62\x6e\x6e\xce\x21\xa2\x26\x80\x2a\x80\xaa\x15\xe3\xcd\x3b\x87\xad\x7b\x92\xa0\x8d\x55\x62\x47\x34\x86\xae\x7a\x61\xa8\xd2\xa0\x1d\x37\xbb\x35\xd5\x11\x1c\x7e\xff\x0d\xa0\x63\xc3\x78\xa5\x07\x87\xd5\xae\x49\xc1\x70\x14\x2a\x56\x87\x1f\x7d\xe3\x3d\xe8\x9a\x1c\x9e\x09\xd8\x0b\x96\x4b\x2c\xef\xe5\xac\xeb\xef\x9c\x2a\xfe\xed\x5a\xca\x7e\x0f\x84\x47\xf0\x56\xbf\xb6\x6f\xdd\xba\xc5\x4f\x9f\x3e\xed\x36\xb5\xa0\x1e\x47\x4d\x4d\xf9\xe7\xe1\xe9\x9b\x7d\x63\xed\xcb\x65\x3a\x74\x81\x28\x1a\xea\x51\x9f\xb6\xb7\xb7\xe5\xd5\xab\x57\xf9\xf8\xf1\xe3\xd2\x34\x4d\xa7\xe5\x26\x52\x63\x81\x9d\x95\x74\xe3\xc9\xf2\x68\x63\x2d\x5b\x33\xc6\x93\x0d\x2d\x43\xed\x70\xc6\xfe\x83\xdc\x62\x01\x4f\xdd\xb5\x9f\xfa\xce\x5b\xbc\x2f\x15\x3a\xab\x2f\xfa\xef\x62\x07\x85\x45\xad\xe3\x36\xff\xb5\x9f\xa9\x8e\x3a\x0c\x63\x75\x5c\x93\x83\x18\x7b\xc5\xda\x89\x3b\xa5\x1f\x1d\x2b\x7d\xfb\xc7\x47\xcb\xff\xdc\x30\xf8\x1a\x08\xf7\x99\xf9\x19\x80\x5a\xa9\x54\x72\xbf\xf7\xbd\xef\xa9\x52\x45\x65\x02\x20\xc8\x24\x1c\x2a\x1f\xe4\x7c\xcf\x58\xfb\x76\x99\x8e\xd8\xab\x29\x4a\x8a\xa9\x65\x0c\x00\xd7\xaf\x5f\xe7\x6c\x36\xeb\xfb\x28\xd5\x01\xd4\x18\x5c\xa9\x9a\xb2\x78\x77\xac\x76\xb7\x66\x48\x67\xac\x12\x9b\x32\xa4\x88\xed\xd2\x7a\x14\x62\x92\xb6\xfa\xe8\x68\xad\xa0\xda\x44\xe7\xef\xe5\xe7\xc2\x52\x42\xe9\x84\x54\x57\xbb\xe3\xa4\xe6\x2a\x12\xc9\xe3\x18\xf8\xf2\xb4\x9d\x3f\x00\x96\x43\xec\xdc\x98\xa8\x5e\xf9\xcf\x85\xcd\x6f\xac\xa4\xed\x1f\x48\xe2\x9b\x00\x1e\x90\xb7\x8e\x7f\x65\x7b\x7b\xdb\x7d\xe7\x9d\x77\xd0\x6c\x36\xa3\xa4\x8e\x00\x94\x0e\x04\x53\xd4\x7d\x0c\x6b\xb0\x7d\x63\xed\xdb\x65\x5a\xa9\x03\xa5\x4c\x95\xfb\x50\x8e\x29\x54\xd6\x3e\xbf\x7f\xff\x3e\x59\x96\xc5\x53\x53\x53\x8e\x10\xa2\x01\xa0\x46\x44\x65\x29\x50\x5e\x4b\x36\x1e\xdf\x1a\xb7\x96\x74\x97\x12\x59\x4b\x3f\x2c\x18\x9a\xda\x48\xcf\xa8\xe6\x0e\x97\x80\x3b\xb7\xc6\x8f\xf7\xa8\x74\xa6\x73\xdb\x3a\xb9\xfb\xc3\xa2\x76\x9d\x60\x60\x0a\x95\x45\x3b\x5d\x25\xe5\x1a\xea\x11\x0f\x80\xe5\x12\xe4\x72\xa6\xf1\xe0\xdd\x93\x9b\xff\xf8\x8b\xa9\xea\xb7\x1b\xba\xbc\x46\x44\x77\x88\x68\x15\x40\x49\x4a\xd9\xb8\x7b\xf7\xae\x6c\x31\x97\x3a\x0b\x1f\xf5\x25\x22\x4a\x8d\x45\xdd\x27\x20\x38\xa3\xbf\x6f\x2c\xe5\x59\x3e\x90\xf4\x5c\x5f\x05\xde\x7e\xfb\x6d\xd1\xfa\x83\x38\x06\x60\x04\x40\x16\xc0\x34\x18\xb3\x63\x15\xe3\xec\x67\x9f\xa4\x7e\x67\xae\x68\x2e\x18\xae\xd0\x15\xad\x12\xec\xae\xb2\xdf\x65\x83\x47\xd0\xb4\x69\xf7\x82\xa5\x26\x65\xd6\x37\xb8\x30\x72\xe7\x3c\x24\x48\x83\xed\xe9\x82\x25\xc1\x58\x4f\xda\xcb\x3f\x9f\xd9\xf9\xfe\x83\x43\xd6\x4f\x1c\xe2\x87\x44\xb4\x0c\x2f\x50\x69\x99\x99\xed\x5a\xad\xe6\xbc\xf7\xde\x7b\x78\xf4\xe8\x51\xbf\x39\xcc\x5e\x53\x0a\x83\xa4\x7d\x63\x51\xa8\x82\x9f\x7a\x4d\x4b\xf4\x9b\x0f\x19\xb4\xde\xae\x0e\x08\x21\xc4\xb1\x63\xc7\x70\xe1\xc2\x05\xc4\x62\x31\x9d\x99\x4d\x22\x1a\x61\xe6\x31\x00\x53\x02\x34\x3d\xbe\x13\x3b\x7b\x6e\x39\xf9\xfa\x5c\xd1\x5c\xd0\x25\xe9\x1d\x75\xb3\x7b\x52\x32\x28\x0f\x54\xd5\xb3\x7b\x4d\xec\x8e\x24\xeb\x87\xd5\x71\x01\x57\xa7\x25\x42\xca\x33\x74\xce\x80\xff\x85\x42\xcd\x03\x76\x61\x31\xb1\x5c\x4f\xda\xab\x57\xa7\x2b\xef\xdd\x3f\x64\xfd\xc4\xd1\xf8\x31\x33\xfb\x8c\x55\x02\x50\x67\x66\x67\x69\x69\x49\xbe\xff\xfe\xfb\xbe\xd4\xea\x36\x87\x15\x95\x37\x08\xcd\x81\x61\x85\x9f\xa1\xfd\xcc\xe8\x77\x4b\xcf\x85\xf5\xe6\x9b\x6f\x8a\xd9\xd9\x59\xa1\x69\x9a\x0e\xc0\x64\xe6\x14\x11\xe5\xe0\x7d\xd3\x9c\xca\xd6\xf4\x93\x9f\x2e\x8c\x9c\x3f\xfe\x6c\xe8\xcc\xb0\x2d\x46\x3a\x9f\x5a\xba\x49\x8d\x8e\xa8\xf2\xe7\x99\x02\xa5\x1c\xf1\x6f\x40\x17\xac\xce\xa4\x67\x04\x86\x32\xcb\x1f\x2d\xf5\x42\x76\x21\x03\x20\x46\x53\x63\xfb\x49\xa6\x71\xff\xa3\xa9\xca\x07\x4f\x32\xf5\x6b\x52\x60\x19\xc0\x2a\xbc\xc0\x5c\x25\x00\x35\x66\xb6\xd7\xd7\xd7\xe5\xb7\xbe\xf5\xad\x41\xef\xc5\x20\x13\xe6\x83\xa6\x7d\x61\x51\x1f\xc2\x5e\x93\xab\xea\x45\x7a\xcd\xfc\x46\xe1\x00\xdd\xb1\x02\xe7\x97\x2f\x5f\x16\x87\x0e\x1d\x12\x44\xe4\x4b\xb4\x14\x80\x2c\x33\x4f\x10\x68\x62\xc8\x16\x73\xc7\x8a\x89\xcf\x2c\xac\x0f\x7f\x66\x7c\x27\x36\xa5\x33\xe9\x81\x5b\xd8\x11\x4d\x68\xbd\x2c\x06\x7c\xd1\x02\x64\x4a\x5e\xe7\x9b\x66\x08\x4b\x51\x85\x1e\x1d\xb7\x24\x18\x75\x95\x60\x3e\x9d\xaf\x3e\xfd\xeb\x48\x30\xca\xa6\xb3\x79\xf7\xb0\x75\xe3\xe6\x78\xf5\xc3\xad\x21\xe7\xae\x04\xaf\x12\xd1\x53\x84\x18\xab\x56\xab\xc9\x6b\xd7\xae\xc1\x8f\xdb\xdd\x63\x9c\xbb\x8d\x79\xaf\x89\xf1\x8f\x0d\x2b\x4a\x45\x76\x9b\xf6\x87\x52\x3e\x88\x18\xed\x57\xa7\x1f\x96\x27\x62\x89\x30\x3b\x3b\x8b\x73\xe7\xce\x21\x97\xcb\x09\x78\x71\x73\x4c\x00\x23\xcc\x9c\x69\x49\xb5\x31\x92\x98\xc8\xd5\x8c\x63\xc7\x36\x12\x2f\xe4\x8b\x89\x13\xd9\x9a\x31\xa6\x49\xe8\xaa\x8a\x0c\x0a\x93\x90\x49\x1d\x32\xf0\xd1\x2e\xe9\xd4\xf7\x67\xdf\x3b\x0e\x90\x9d\xaf\x0b\x3e\xa6\x3f\x33\x1f\x64\xba\xc0\xfb\xbc\xac\xc4\xdd\xf2\x93\xd1\xfa\xfd\xdb\x87\xad\x8f\x56\xd3\x8d\x9b\x8e\xe0\x55\x46\x3b\x54\xcb\x26\x33\x97\xc9\x8b\xd8\x61\x57\xab\x55\xb9\xb8\xb8\x88\xd6\x32\x96\xe1\x14\x65\xde\xf8\x63\x89\x88\xfc\x70\xf9\xc7\x8e\x45\xa1\x4c\xb5\x52\x14\xc3\x75\xe3\xd6\x6e\x69\x50\xdd\x1d\x75\x8d\x5d\xd7\x9a\x9b\x9b\x13\x67\xcf\x9e\xc5\xd8\xd8\x98\xe7\xa9\xe0\x45\x07\x33\x89\x28\xa5\x30\x5b\x4e\x48\xe4\x0e\xd5\x8c\xb9\xe9\x52\xfc\xc4\xcc\x96\x99\x1f\xaf\xc4\xa6\x12\xb6\x18\x22\x90\x08\xdb\x50\x9d\x14\xb6\xd7\x00\xa0\x13\xb7\xbb\x75\xda\xa6\x53\xed\xa6\xdd\xea\xb2\x73\xce\x60\xd8\x1a\xdb\x9b\x43\xcd\xa7\x2b\x99\xc6\xc3\x47\xa3\xf5\x3b\xeb\x49\xfb\x9e\xad\xc9\x35\xf6\x18\x6a\xa3\x15\xd0\xb4\xd4\x5a\x50\xa6\xce\xcc\x4e\xad\x56\x93\x57\xaf\x5e\x0d\xbb\x14\xf5\x1a\xa3\x41\xca\xa2\xd2\xc7\x8a\xe5\x4b\x30\x74\x01\x8f\x4a\x51\x52\x0b\x03\x9c\xef\x27\xed\xc2\x10\x42\x60\x7a\x7a\x1a\xf3\xf3\xf3\x98\x9f\x9f\x07\x33\xeb\xf0\xbc\x18\x4c\xf2\x82\xa7\x8e\x30\x73\x0a\x40\x96\x88\x32\xc4\xc8\x9a\x4d\x91\x1b\xb5\xf4\x99\xf1\x9d\xd8\xec\xe4\x76\x7c\xfa\x50\xcd\x18\x4b\x36\xb4\x94\xe1\x52\x4c\x9d\x3c\xe8\xc4\xb0\xe8\x48\x9d\xc0\xdf\x50\xbe\xb4\x62\x04\x54\xa4\xea\xea\x2d\x09\xd2\x32\xdc\x4a\x71\xc8\xd9\x78\x9a\xb4\x57\x0b\xa9\xc6\xe3\x8d\xe1\xe6\x72\x35\xee\x16\x5c\xc2\x26\x08\x25\x66\xde\x84\xc7\x50\x15\x66\xae\xf8\xd2\x8a\x88\x64\xb1\x58\x94\xb7\x6f\xdf\xc6\xed\xdb\xb7\x55\x03\x7e\x2f\x92\xa5\x57\xfe\x2f\x1d\xab\x9f\x0d\xe6\xa7\x7e\x76\xda\x41\x19\x8e\xbd\xca\x22\x69\xcf\x9d\x3b\x27\x4e\x9f\x3e\x0d\xd3\x34\x7d\x3f\x2c\x1d\xde\x87\x5f\x13\x9e\x7b\xd0\x08\x80\x14\x80\x11\x30\x52\x00\x52\xc4\x18\x89\xbb\x22\x9d\xae\xeb\x63\x69\x4b\xcb\xa5\xea\x7a\x36\x59\xd7\x53\xc9\x86\x96\x32\x1d\x61\xc6\x1c\x32\x0d\x57\xc4\x84\xe7\x31\x21\xa8\x35\x58\x4c\x90\x92\x58\x3a\x82\x1d\x5b\x63\xbb\xa1\xcb\x7a\x35\xe6\x56\x2a\x71\xb7\x54\x36\x9d\x52\x29\xe1\x6c\x6c\x9b\xce\x46\x35\x26\x8b\xae\xe0\x32\xbc\x95\x20\xcb\xe4\x05\x30\x2d\xc3\xfb\xd9\xb5\x02\x2f\xba\xae\xdd\xda\x1c\xdb\xb6\xe5\xa3\x47\x8f\x70\xf3\xe6\x4d\x28\x51\x63\xf7\x32\x26\xfd\x6c\xe5\x4f\x0c\x8b\x94\x0c\x20\xc8\x7d\x83\x70\xfa\x7e\x6c\xb0\x28\x9c\x6e\x58\x51\x18\x5d\x07\xe1\xe2\xc5\x8b\x62\x66\x66\x06\x23\x23\x23\x02\xf0\x1c\xfe\xe0\x31\x5c\x0c\x9e\x84\x33\xe1\x39\x3e\xfa\xd2\x4e\x3d\x8f\x01\x30\xc1\xd0\x09\x88\x69\x92\x74\xc1\xd0\x89\x49\x17\x0c\xcd\xfb\x46\xce\x4d\x49\x90\xae\x60\x5b\x12\x1c\x06\xdb\xe4\xc5\x56\xac\x93\x17\x5c\xbe\x0e\xa0\x06\xcf\x30\xaf\xf9\x5f\x27\x5a\xf9\xbe\xa3\xa3\xc3\xcc\x8e\x6d\xdb\x72\x65\x65\x05\x0f\x1e\x3c\xc0\xf2\xf2\x32\x1a\x8d\xc6\xa0\xa6\x47\x3f\xe3\x7b\x2f\x66\xcc\xc7\x8e\x75\x90\x12\x6c\xaf\xf6\xd9\x20\x69\x2f\x9d\x0a\xa4\xd7\x5e\x7b\x4d\x4c\x4c\x4c\x20\x93\xc9\x40\x08\x21\x5a\xb4\xba\xb2\x8f\x75\xd9\xab\x9b\x3f\x50\xea\xe0\x4b\x66\x96\xad\xb5\x6a\xfd\xcd\x8e\xda\x87\x3d\x67\x2d\xcb\x92\x85\x42\x01\x0f\x1e\x3c\x40\x2b\x36\xc0\x20\xfd\xdc\x6b\xd9\xaf\x14\x16\xf5\x21\xee\x67\x88\x47\xd5\xed\x65\xd3\xed\x85\x91\x7b\xbd\x0c\x74\x7b\xf2\x22\xdb\xfc\xa9\x4f\x7d\x4a\x1c\x39\x72\x04\xd3\xd3\xd3\x30\x4d\x13\xf1\x78\x5c\xa8\xde\xa8\x61\xcf\xd4\x96\xaa\x85\x5f\xd6\xca\x07\xd0\xf6\x6e\x95\xfe\x31\x3a\x0c\x27\xd5\x7c\xc7\x71\xa4\x65\x59\x28\x14\x0a\x28\x14\x0a\xb8\x7d\xfb\x76\xb7\xf6\xf6\xeb\x77\x98\xa6\x57\xdf\x7f\xe5\xb0\x06\x65\xb0\xa8\xb4\x5f\x29\x75\x10\xd2\x2d\x8a\xf9\xb0\x57\xdc\xb3\x67\xcf\x8a\x6c\x36\x8b\x64\x32\x09\x5d\xd7\x71\xe8\xd0\xa1\x36\xbe\xea\x26\x1d\x72\x99\xf6\xcf\x25\x11\xa1\x5c\x2e\xa3\x56\xf3\xc2\x05\xac\xac\xac\xa0\xd1\x68\x60\x65\x65\x05\x5b\x5b\x5b\x07\x25\xcd\x0f\x52\x33\x7c\x22\x58\x22\xe2\x38\x6c\x03\x45\xd9\x44\x51\xb4\x6a\x5e\x54\x7e\xbf\xb4\x9f\xeb\xf4\x2b\x1b\x08\xcb\x97\x5a\xb1\x58\xac\x5d\x36\x33\x33\x23\x00\x60\x7e\x7e\xbe\x9d\x97\x4e\xa7\x77\xd1\xf5\x68\x4f\xb7\x36\xec\xa5\xfd\xbf\xd6\x58\x51\x9f\x8a\x80\xee\x86\x9f\x7a\xdc\x8b\x26\x9c\xa2\x8c\xfc\x30\xed\xa0\x46\x7e\xb7\xbc\x7e\xf5\x0f\x12\x2b\x4a\x75\x77\xeb\x5f\x2f\x95\xff\x7f\x05\xeb\x97\x9a\x0e\xf2\xa2\x9f\x04\xd6\x20\x74\xff\x8f\x15\x22\x54\xb7\x70\x5e\x2f\x9a\xf0\xbe\x17\x4d\xb7\xad\x17\x56\x54\x59\xbf\xf2\x8f\x1b\x2b\x5c\x27\x8c\x17\x4e\x51\xb4\xfd\xce\x7f\xd3\xb0\x0e\x3c\xf5\x6b\xcc\x5e\xe8\xfd\xf2\xa8\xce\x7e\xd2\x58\xbd\xae\x71\x50\xe9\xd7\x1a\x6b\x3f\x17\xec\x25\x0d\x7a\xd1\xf5\x4a\x61\x7b\x2e\xaa\x7e\x94\x7d\x10\x85\x1f\xc6\x8a\x92\x50\xcf\x8b\xb5\x17\x26\xed\x45\xf3\x1b\x8f\xf5\xbf\x71\x3d\xfb\xd8\x8b\xb7\x8f\xd8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xce\x70\x75\x8d\xd9\x5c\x00\x00") +var _web_uiV1StaticAppleTouchIcon152x152Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x4f\x40\xb0\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x98\x00\x00\x00\x98\x08\x06\x00\x00\x00\x18\xc2\x20\x21\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x79\x78\x1c\xc9\x75\x27\xf8\x7b\x91\x59\x59\x27\x0a\x40\xe1\x06\x01\x90\x04\x49\x80\x04\xd9\x68\x36\xd9\x27\x9b\xdd\x6c\xf5\x25\xb6\xa4\x56\x6b\x24\xb9\xbd\xb2\x65\x8d\xec\x59\x79\x76\x3f\xef\xee\xac\xd7\x3b\xab\xdd\xf5\x37\xf3\xed\x8c\x77\xd7\xdf\xec\x7c\xf3\xf9\xf3\xe7\xf1\xce\x6a\x34\x5a\xd9\xb2\x65\xc9\x96\x2c\x79\xd4\x2d\xb5\xfb\x52\x77\xb3\xef\x6e\xb2\x9b\xf7\x4d\x10\x04\x40\xdc\x28\x14\x0a\x75\x66\x65\xc6\xdb\x3f\xf2\xa8\xac\x44\x16\x0e\x1e\x1e\x7b\xbc\x81\xaf\x90\x99\x71\xbc\x7c\x11\xf1\xe2\xbd\x17\x2f\x5e\x44\x12\x00\x81\xda\x20\x03\xe2\x36\x92\x7e\xb3\xe1\x76\xc3\xbf\x15\xc1\xc1\x71\xa3\x6d\x15\x94\xff\x3f\x6b\x58\xc2\x13\x29\x51\x0b\x14\x9e\xab\x37\x0f\xea\x5c\xeb\xfd\x82\xd2\xfd\xf0\xd6\x82\x5f\x2f\xce\x9f\xb6\x5a\xfc\xad\x84\x15\x94\x16\x84\xbb\xf0\xc5\xfd\xbd\x83\x45\x58\x9b\x5b\xac\x87\xa3\xf8\x5f\x54\x2f\xff\x7a\x46\xc5\xdf\x05\x0e\xe6\x84\x8d\xe2\xba\x5a\xfd\xff\x3e\xc0\x5a\x11\x6e\xa6\xa3\xfd\x65\x83\x60\xdd\x2a\x42\x5a\xcf\xbb\xfe\x53\xc0\xfa\x7b\x1f\x84\xe7\x2a\x50\xdb\x98\x41\xf7\xfe\x38\x81\x60\x18\x5e\x31\xeb\x87\x5b\x0f\xe6\x6a\xb0\xfc\xef\xf4\x97\x93\x01\xf9\x6f\x27\x2c\x6f\xdc\x6a\xb0\xfc\xef\xff\xfb\x08\xeb\xef\x44\x58\x8b\xab\x6c\xa4\x22\xb7\x12\xd6\xff\x1f\xd6\x11\x6e\x46\x94\x05\x71\x1d\xff\x7d\x50\x5a\x3d\x38\x41\xb8\x6c\x74\x34\xd4\xcb\x7f\xab\x60\xad\x56\x76\xa3\x69\xff\xd9\xc3\x52\x7d\x09\xb2\x5e\x46\x5f\x9e\xf5\x74\x50\x50\x3e\x7f\x87\xd5\x53\x08\x57\x23\xe8\xb5\xde\xb1\x5a\xfe\x55\x61\x75\x75\x75\x09\x45\x51\xdc\x88\x8e\x8e\x0e\x1c\x3b\x76\x0c\x07\x0e\x1c\x70\xf3\xcf\xcd\xcd\xa1\x58\x2c\x0a\x00\x98\x98\x98\x90\x6d\x6d\x6d\x62\x6e\x6e\xce\x0f\x77\x35\xbc\xea\xb5\x49\xbd\xf6\xfa\x3b\x0d\x8b\xea\x14\x0c\x02\x54\x6f\x4a\xea\x2f\xe3\x47\x6e\x35\xd8\xeb\x81\xb5\x5a\xd8\x68\x7e\x00\xc0\xe0\xe0\xa0\x68\x6d\x6d\x45\x3c\x1e\x47\x73\x73\x33\x1a\x1a\x1a\x00\x40\x10\x11\x88\xdc\x26\xa9\x69\x3c\x66\x76\xd3\xec\x7b\xe9\xdc\x33\xb3\x04\x80\xeb\xd7\xaf\xc3\x34\x4d\x4c\x4d\x4d\x41\xd7\x75\x5c\xb8\x70\xa1\x5e\xdd\x36\x82\x77\xbd\xf6\xfd\x3b\x01\x6b\x3d\x66\x0a\x6f\xf0\x73\xb8\xd5\xcc\x13\xb7\xd2\xd8\x77\x23\xf0\x00\x40\xf6\xf6\xf6\x8a\xae\xae\x2e\x6c\xda\xb4\x09\x0d\x0d\x0d\x88\x44\x22\x2e\x17\x65\x66\x57\x34\x13\x91\x0a\x40\x80\x21\x42\x92\xd4\x90\x49\xaa\x22\x49\x25\x86\x4a\x20\x01\x00\x0c\x96\x92\x60\x18\x0a\xeb\x15\xc1\x86\x29\x58\x82\x60\xd8\x04\x26\x89\x48\x32\xb3\xb4\x89\x4f\x02\x90\xb9\x5c\x0e\xf3\xf3\xf3\x98\x9f\x9f\xc7\x47\x1f\x7d\x14\x54\x1f\xbf\xed\x31\xa8\x4d\xd6\xca\xfb\xb7\x16\x96\x9f\x83\xad\x27\xdc\x10\xd7\xf8\x1b\x80\xe5\x86\xbd\x7b\xf7\x8a\xae\xae\x2e\x74\x76\x76\x22\x14\x0a\x55\xf5\x3b\x86\x0a\x40\x53\x25\x69\x71\x5d\x49\x34\x17\xd4\x9e\xe6\xa2\xda\x9f\x28\xab\x3d\x8d\x45\xa5\xb7\xa1\xac\x76\x87\x4c\x6a\x0a\x99\x94\x0c\x49\x4a\x10\x3b\x04\x66\x35\x18\x13\x24\x03\x86\x29\xb8\x64\x08\xce\x55\x14\xce\x96\x42\x72\x7e\x39\x6c\x4c\x67\x23\xe6\xf8\x52\xc4\x18\x5d\x8a\x18\xa3\x99\x98\x31\x5d\x08\x99\x05\x49\xd0\x01\x18\x0e\x11\x12\x91\x2c\x14\x0a\x72\x7a\x7a\x1a\x57\xaf\x5e\xc5\x95\x2b\x57\x6e\x79\xdd\xff\xb6\x05\x87\xc0\xea\x89\xc0\x20\x31\xe6\xcd\x1f\x14\x17\xc4\x65\xfc\x14\xee\x2f\xe7\xcd\xe3\xcf\x5f\x8f\xab\xb9\xd7\x68\x34\x2a\xb6\x6d\xdb\x86\xc1\xc1\x41\xb4\xb4\xb4\x00\x96\x6e\x29\x00\xa8\x42\x22\xd2\x50\x56\x52\x6d\x39\x6d\x4b\xe7\xb2\xb6\xb7\x33\xab\xed\x6f\x2e\x84\x86\x22\x86\xe8\x11\x8c\x24\x98\x04\x08\x00\x33\x00\xb2\x6e\x6b\x86\x1d\x03\x4c\x20\xb2\xb3\x78\x03\x59\xc9\x8e\x54\xb5\x92\xd9\x30\x05\xd2\xf9\x90\x39\xb2\x90\xa8\x9c\x9d\x6e\xd0\x8f\x4d\x37\x94\x4f\xce\x27\x2a\x63\xc5\x90\xcc\xb1\x43\x74\xd6\x4f\x8e\x8d\x8d\xe1\xc2\x85\x0b\xb8\x7a\xf5\xea\x7a\xb8\x9b\xb7\xcd\xd6\xc3\x59\xfe\x93\xc3\xda\x28\x07\x5b\x8d\x48\xd6\x4b\x44\x41\x71\x37\xcc\xc9\x0e\x1f\x3e\x2c\xba\xba\xba\x1c\x4e\x65\x71\x28\x93\x62\x9d\x59\xad\xbf\x2f\x13\x39\xd0\x9b\x09\x3f\x94\xca\x87\xf6\x69\x26\x75\x02\xa4\x7a\x2b\x6c\x91\xd4\xca\x50\x2f\xde\x9b\x0e\x3b\x0f\xdb\x04\xe6\x94\x09\xba\x32\xb8\x54\x0a\xc9\xd1\xb9\x44\xe5\xe8\x58\x73\xe9\xcd\x6b\xcd\xa5\xf7\x16\xe2\x95\x69\x26\x14\x00\x18\xcc\x6c\x94\xcb\x65\x79\xf9\xf2\x65\xbc\xf3\xce\x3b\x1b\xd5\x41\x81\x9b\xd3\x63\x6f\x2b\x2c\xf2\x47\xd4\x79\x61\x3d\x02\x0a\xe2\x78\xfe\xfb\x8d\x5e\x11\x50\xbe\x06\x8f\xdd\xbb\x77\x8b\xdd\xbb\x77\xa3\xa9\xa9\xc9\x21\x2a\x55\x48\x24\x3a\x97\xb5\xfe\x1d\x73\xb1\x4f\x6e\x5d\x88\x3e\xd9\x50\x56\x86\x05\x23\xe6\x54\x90\x41\x20\x87\xc7\xb8\xf7\xd5\xd4\x5a\xa2\x22\x37\xa6\x5a\xc6\x4b\x38\x56\xba\xcd\xef\x6a\xe2\x9c\x5c\xe4\xc9\x5d\xfb\x56\x86\x29\x38\xbd\x18\x35\x3e\xba\xd4\x56\x78\xee\x52\x5b\xf1\xf5\x4c\xd4\x98\x64\x42\x09\x80\x6e\x9a\xa6\x4c\xa7\xd3\xf2\xd8\xb1\x63\x18\x1b\x1b\x5b\x4d\xc7\x59\x6d\xa0\xaf\xb7\x2f\x6e\x3b\xac\x20\x25\x3f\x88\x5d\xfa\x43\x3d\x02\x41\x9d\xfb\xf5\x8a\xdf\xba\x62\x31\x12\x89\x88\x3b\xef\xbc\x13\xbb\x76\xed\x82\xa6\x69\x02\x80\x06\x46\xa4\xb1\xa4\xb4\x6f\x9f\x8f\x3d\xba\x73\x26\xf6\x85\x96\x7c\xe8\x7e\x01\x8a\x55\xfb\xd9\x2b\xbf\xec\xc8\x1a\x16\x56\x65\x3f\x8c\xea\x2c\xb1\xb6\x9c\x0f\x96\xff\xea\xe4\xf1\xf0\x35\x17\x16\xd7\xf0\xba\x15\xe5\x99\x00\x53\x20\x3d\xd5\x50\x7e\xfd\x4c\x57\xfe\xcf\x47\x53\xa5\x0f\x4a\xaa\x4c\xc3\x16\xa3\x73\x73\x73\xf2\xdc\xb9\x73\x38\x7f\xfe\xfc\x7a\x27\x53\x6b\xb5\xf3\x6a\x7d\x75\x5b\x60\xdd\x88\x92\xef\x0d\xeb\x65\xa1\x1b\x1d\x31\x35\xe1\x9e\x7b\xee\x11\x43\x43\x43\xd0\x34\x4d\x25\x22\x95\x18\xb1\xce\xac\xd6\x7f\xc7\x54\xe2\x17\xfb\x17\x22\x5f\x0c\x1b\xa2\x8f\x36\x2c\xed\x7d\x61\x2d\xb9\x18\x94\x97\x01\x90\xa7\x60\x3d\x39\xe9\x24\x32\xad\x8c\x67\x47\xe7\x63\x63\x39\x6c\x9e\xbd\xd0\x5e\xf8\xde\xe9\xae\xfc\x5f\x2d\x45\x8c\x59\xd8\x22\x74\x61\x61\x41\xfe\xe5\x5f\xfe\x65\x3d\xd1\xb5\x9e\xfb\xd5\xc2\x6d\x85\x55\x8f\x83\xad\xc6\xbd\x82\xc2\x7a\x47\xc5\x5a\x65\xbd\xcf\x72\x70\x70\x50\xdc\x75\xd7\x5d\x48\x26\x93\x02\x80\x46\x12\x89\x9e\xa5\xf0\xd0\xfe\xf1\x86\x7f\xd4\x9b\x89\x7c\x56\x30\x92\x8e\x62\x0e\xf8\x74\x23\xcf\xb5\x5e\x08\xca\xb7\x11\x58\xde\xbc\xf5\xde\xe5\x87\x5d\x0f\x1f\xaf\xb0\xd6\x15\x9e\xb8\xdc\x5a\xfc\xfe\xb1\xde\xec\x77\xd3\x31\x63\x0c\x84\x02\x33\x1b\x0b\x0b\x0b\xf2\xc3\x0f\x3f\xc4\xf8\xf8\x78\x3d\x29\xb3\x5e\xf1\xe7\x2d\x7b\x5b\x61\xdd\x2c\x07\xbb\x1d\x41\x00\x90\xcf\x3c\xf3\x8c\x68\x6f\x6f\xb7\x08\x0b\x14\xeb\xca\x6a\x43\xf7\x8e\x25\xbf\xd6\xb7\x18\xf9\xac\x22\x29\x59\xed\x11\x4f\xf7\x91\xc3\x25\xd8\xee\x75\xaa\x8a\x2f\xb2\xbb\x97\x9d\xbc\x08\xa0\xaa\x75\xc2\x42\x00\x6c\x47\xcc\xfa\x61\x3b\xf0\xbd\x22\xda\x3f\x1d\xad\x03\x4b\x57\x79\xf2\x42\x7b\xe1\x4f\x8f\xf5\x66\xff\x24\x13\x31\x26\x00\x94\x98\xd9\xb8\x72\xe5\x8a\x7c\xed\xb5\xd7\xfe\x4e\x98\x38\x1c\x0e\x56\x4f\x2f\xaa\xa7\x3f\xf9\xd3\x82\xa8\xdd\x9f\x7f\xcd\x20\x84\x10\x0f\x3c\xf0\x00\x06\x06\x06\x10\x0a\x85\x34\x00\x91\x64\x51\xe9\xbe\xff\x5a\xe3\x3f\xde\x31\x17\xfd\xb2\x2a\x29\xe5\x98\x0c\x00\x4f\x87\xba\x81\x6d\x15\x27\x78\x6e\xe8\xe6\x66\x80\xa9\x6a\x7e\xd8\x08\x2c\xc7\xa2\x5f\x55\xed\x9d\x78\x0f\x9d\xf8\xd2\x9c\x18\xe7\xce\x49\x59\x2f\xac\x62\x48\x8e\x1c\xdf\x94\xfb\x83\x13\x9b\x96\x7f\x54\x56\x39\xc3\xcc\x25\x5d\xd7\x8d\x77\xdf\x7d\x17\x17\x2f\x5e\xac\xa7\x7c\x3b\x71\xc0\xea\x5c\x68\x35\x65\xfd\xa6\x61\x6d\xd4\x92\xbf\xd1\xb0\x6e\xf1\xd8\xdd\xdd\x8d\x4f\x7c\xe2\x13\x88\xc5\x62\x2a\x00\x2d\x6c\x8a\xd4\xf0\x64\xe2\xb3\x77\x8f\x27\xff\x69\xc4\x10\x7d\xd5\xf9\x58\xb5\xdb\xfc\x6a\x93\xbf\xa3\x9c\x3c\x4e\xa8\x15\x69\x37\x06\x2b\x48\x2c\xae\x16\xe7\x85\xe7\x9f\xbb\xfa\xe1\xae\x06\x8b\xc1\xc8\x44\x8d\x0f\xde\xde\xba\xf4\xbb\x23\x2d\xc5\x77\x4c\xe2\x1c\x00\x7d\x7c\x7c\x5c\xbe\xf9\xe6\x9b\xc8\xe7\xf3\x5e\x90\xeb\x69\x77\xa0\x96\x68\xea\xe5\xbf\x29\x58\xab\x89\xc8\x8d\xd8\x40\xd6\xcb\xb1\x02\x4d\x11\x77\xdd\x75\x97\xd8\xb7\x6f\x1f\x14\x45\xd1\xc0\x48\x74\x2f\x69\x43\x0f\x8f\x34\xfd\x76\xc7\xb2\xf6\x28\xd8\x63\xbb\x0a\x50\x88\x1c\xe9\xe5\xef\x11\x66\xbb\x72\x5e\x65\xda\xf3\x78\xc3\xb0\xd6\x63\x3c\xab\x77\xef\x7f\xbc\x01\x58\xa6\xe0\xc2\x95\xd6\xe2\x9f\xbe\xd5\x9f\xf9\x83\xa5\xb0\x31\x46\x44\x25\x5d\xd7\x8d\x57\x5e\x79\x05\x13\x13\x13\x41\x1c\x05\xd8\xb8\x2d\xab\x1e\x77\xda\x30\x2c\xc5\x2e\xc8\xf6\x95\x50\xdb\x8c\xe4\x49\xab\x77\xf5\x36\x11\xd5\xf9\x39\x79\x6b\xf2\x44\xa3\x51\x3c\xfd\xf4\xd3\xb4\x7d\xfb\x76\x21\x84\x88\xaa\x26\xb5\xde\x77\x2d\xf9\x2b\x9f\xb8\xdc\xfc\xfb\xc9\x72\xe8\x0e\xcb\xca\xee\xe9\x5d\xf2\xe8\x52\x64\xeb\x33\x36\x75\x38\xa2\x86\x40\x96\xf8\xf3\xea\x3b\x8e\x98\xbb\x15\xb0\xfc\xe9\x0e\xf5\xd9\xb0\xac\x32\x55\xae\xe3\x5b\x20\xaf\xe6\xb9\x41\x58\x02\x14\x4a\x15\xd4\xfd\x3b\xe6\x62\x8f\xe4\xc3\x72\x3c\x1d\xab\xcc\x08\x45\x18\x3b\x76\xec\x60\xc3\x30\x30\x33\x33\xe3\x6f\x6f\x87\xa3\xac\xd6\x7f\xfe\x38\xd4\x89\xdb\x30\x2c\xc5\x6d\x55\xeb\xca\x01\xcf\xf0\x5c\xa9\x4e\x9e\xb5\x7e\x4e\x59\xe9\xc4\x75\x77\x77\xd3\xe7\x3e\xf7\x39\x34\x34\x34\xa8\x04\x8a\xb7\x14\x42\x3b\x3f\x75\xb6\xe5\x5f\xed\x9c\x8d\xfd\xd7\x0a\x8b\xb8\xdb\xf1\x5e\x1a\x75\xf5\x21\xcf\x90\x76\x89\xc3\x43\xe7\x6e\x1c\x6a\x89\x68\xa3\xb0\x5c\x62\xf4\xc2\x25\x0f\x57\x21\x1f\x1c\x3f\xdb\xf1\xe1\xe4\x0d\x37\x03\x0b\x04\xcd\x14\x6d\xdb\x16\xa2\x9f\x49\xe8\x8a\x36\xd5\xa8\x9f\x33\x15\x94\xda\xdb\xdb\x8d\xe3\xc7\x8f\x7b\x75\xa0\xa0\xfe\xf2\x5f\x19\xb5\x1c\xcb\x9f\xff\xa6\x60\x11\x56\x9a\x08\x10\x10\x17\x68\x46\xf0\xc5\xfb\x43\xa0\xc1\x14\x80\xd8\xbf\x7f\x3f\x86\x87\x87\xa1\xaa\xaa\x46\xa0\xe4\x8e\xb9\xe8\xc3\x8f\x5c\x69\xfe\xdd\x98\x2e\xb6\x13\x03\x2b\xe4\x86\x23\xa6\x02\xc4\xd7\x5a\xe2\xad\xa6\x09\x7c\xb0\x98\x01\x26\x86\xa1\xb0\x5e\x0c\xc9\x42\x2e\x6c\xe6\x96\xc3\x46\xa6\x18\x92\x85\x62\x48\x16\x74\x45\x96\x4c\xc1\xd2\x14\x30\x88\x01\xc1\x50\x43\xa6\xd0\x22\x06\x45\xa2\x15\x25\x16\xd3\x95\x44\xa2\xac\x24\x13\x65\x25\x11\x36\x44\x44\x61\xa8\xe4\xb5\x75\x79\xf1\x72\x50\x61\x5f\xed\xfc\x5c\xd6\x8b\xab\x9b\x5e\x1f\x16\x88\xe5\x78\x53\xf9\x8f\xfe\x72\x78\xf6\xeb\x44\x94\x3d\x7e\xfc\xb8\xf1\xc1\x07\x1f\xac\x47\x31\xbf\x11\x33\xc5\x86\x61\xa9\x9e\x04\x51\x27\xe3\x7a\x26\x01\x41\x76\xb0\x20\xa2\x14\xfb\xf7\xef\xc7\xbe\x7d\xfb\x04\x11\x69\x8a\x49\xa9\xfb\xaf\x25\xbf\x7a\xd7\x44\xc3\xd7\x55\x46\x02\xc0\x0a\x2a\xb1\xee\xec\xc5\x66\x9b\xcb\x38\x03\xde\xeb\xa3\x05\xd4\xa6\x33\xb1\xdd\x91\x55\xf1\xc7\x00\x2a\x82\xf5\xe5\x88\x99\x9d\x6e\xd0\x27\xa7\x93\xe5\xb1\xf9\x78\x65\x7a\x29\x62\xcc\x96\x43\x72\x59\x12\x0a\x0c\x6b\xc9\x06\x96\x07\x84\x61\xbb\xe0\xd8\xa8\x91\x80\xe5\xe2\xa3\x02\xa4\x02\x88\x90\xe5\x9d\x91\x88\x97\x95\xe6\xe6\xa2\xda\xd9\xbe\xac\x75\x77\x65\xb5\x9e\xd6\x7c\xa8\x3d\x5a\x51\x12\x82\x21\x18\x80\x35\x63\xe5\xea\xa2\xb9\x2b\xb5\x3d\xf8\x79\xb8\x99\x5b\x7b\x67\x30\xd8\x05\xac\xb8\x2a\x2c\x5d\xe1\xc2\xb1\xde\xe5\x0f\x01\x44\x98\x39\x97\x4c\x26\x83\xfa\x47\xf8\xee\xa5\xaf\xcf\x82\xfa\xb8\x5e\xbf\x6f\x08\x96\x8a\x95\x4a\xdb\x7a\x4c\x14\x7e\xea\x5e\x2d\xdd\x2d\xff\xe4\x93\x4f\x8a\x2d\x5b\xb6\x08\x66\x8e\x44\x2a\xa2\xfb\xb1\x8b\xcd\x5f\xdf\x3e\x1f\xfd\xaa\xe3\x6f\x65\x85\x5a\xd6\xe4\x34\xab\xd7\xa4\x00\xb7\xe1\xab\xc4\x58\xc3\x15\xd8\xee\x0e\x5b\xbf\xc9\x6b\x32\x37\xd9\x58\x1e\xbb\xd6\x5c\xba\x7c\xbd\xb1\x7c\x39\x1b\x31\xa6\x4c\xe2\x0c\x80\x1c\x11\xe5\x98\xb9\x40\x44\x25\x66\x2e\x11\x91\xc1\xcc\x3a\xc1\xf2\xe9\xb2\xdd\x6c\x1c\xc7\x42\x8b\xc8\x00\xc1\xcc\x2a\x00\x8d\x01\x4d\x17\xac\xe9\x51\x19\x5b\x8c\x56\x62\x23\xa9\x62\x82\x40\x49\xcd\xa4\x54\x5b\x4e\xdb\xdc\x9b\x09\x6f\xdf\x9c\x8e\x6c\x6f\xcd\x87\x3a\x55\x49\xaa\x33\x58\x5c\xb6\xe4\x11\xc9\xe4\x5d\x15\x80\xc7\xa6\x06\xa0\x3a\xff\xb4\xf5\x47\x10\x24\xb1\x7c\x67\xcb\xd2\x8f\xae\x35\x97\xce\x13\x91\x01\x40\x56\x2a\x15\xa7\x15\xd6\x33\x49\xab\x67\x66\xf2\xc2\xb8\x29\x58\x8e\x5b\x8b\x3f\x93\xff\x05\xfe\x7b\x3f\x12\xf5\xc4\xa1\x1b\x3e\xf3\x99\xcf\x88\xee\xee\x6e\x15\x40\xa4\xa1\xac\xf6\x3d\x75\xae\xe5\x5f\x77\x67\xb5\xc3\xb5\x53\x77\x9f\x2c\x73\xe3\xc8\x5e\x4e\x71\x78\x52\x55\xf9\xad\xe6\xa8\xa6\x33\x11\x2a\x42\xea\xe3\xcd\xa5\x91\x0b\xed\xf9\x93\x13\x4d\xe5\xf3\x85\x90\x9c\x02\x21\x0d\xc0\x22\x2c\x50\x0e\x40\x01\x40\x89\x88\x74\x00\x86\xed\x28\xe8\x5c\x5d\xaf\x55\x17\x23\x8b\x32\x84\x7d\xef\x70\x69\x9b\xa3\x41\xb3\xaf\x31\x00\x31\x5d\xe5\xc4\xf5\xa6\x72\xd3\xf5\xa6\x72\xd3\x87\x7d\xd9\xd6\xe6\x42\x68\x73\xff\x42\x74\xcf\xc0\x6c\x6c\x4f\xaa\xa0\xb6\x93\x07\xe3\x15\xf8\x63\xc5\x90\x59\x91\xc6\x00\xce\xb7\x17\x3e\x38\xd9\x9d\x7b\x11\x84\x59\xbb\x2e\x72\x64\x64\xc4\xdb\xfe\xf5\xc4\x5e\xbd\xb0\x11\x53\xc5\xba\x60\x79\x45\xa4\x13\xb9\x1e\x63\xaa\x37\x9f\xff\x5a\x13\x42\xa1\x10\x0e\x1f\x3e\x2c\x3a\x3b\x3b\x55\x30\x62\xcd\x45\x75\xe0\x33\x67\x5a\x7f\x3f\x55\x50\xef\x5f\x69\x17\xaa\x2a\xbd\xec\x11\x0d\xce\x84\x6f\x85\x1e\x06\x80\xd9\x23\x32\xc1\x58\x8a\x98\xe9\xb3\x9d\xf9\xe3\xe7\x3b\xf2\x47\xb3\x61\xf3\x2a\x80\x79\x10\xe6\x61\x13\x16\x33\xe7\x6c\x82\x72\xfc\xb2\x1c\x16\x0f\xd3\x34\x65\xb9\x5c\xb6\xe1\x32\xc6\xc7\xc7\x57\xd4\x47\x51\x14\x6c\xda\xb4\xc9\xc2\x96\x08\xd1\x68\xd4\x69\x27\xd7\x43\x96\x88\x54\x66\xd6\x00\xc4\x88\x28\x66\x10\x27\xe7\xe2\xfa\xd9\xf9\x78\xe5\xc3\x63\xbd\xd9\xce\x4d\x99\xf0\xee\x3d\xd3\x89\x7b\xb7\x2c\x44\xb6\x87\x24\x69\xde\xd1\xe2\xf2\x6f\xef\x3c\xc4\x9b\x60\xdf\xce\x26\xf4\xb1\x37\xb6\x2d\xfe\x89\x14\xb8\xcc\xcc\xf3\x00\x4a\xd7\xaf\x5f\x97\xd7\xaf\x5f\xf7\xa2\x1b\xd4\xaf\xf5\xb8\xd4\x7a\xd3\x36\x04\x4b\xf5\x25\xfa\x89\xcb\x5f\x28\xe8\x65\xce\xf3\x8a\xfb\x50\x28\x84\x4f\x7e\xf2\x93\xe8\xea\xea\x52\x99\x39\xd6\x9a\x0f\x0d\x7d\xfa\x6c\xcb\x1f\x34\x15\xd5\x7d\x16\x97\xf7\xba\xb5\xd8\xc1\x99\xa2\xdb\x62\xc9\x9a\xfc\x51\xad\xbe\xe5\xea\xd1\xec\x4e\xc4\x16\xe2\x95\xe9\x8f\x37\xe5\xde\xbb\xdc\x56\xf8\xb0\xac\xf2\x18\x80\x59\xa0\x4a\x58\xb0\x74\x2b\xc3\x16\x81\xb2\x5c\x2e\xcb\xe5\xe5\x65\x5c\xbf\x7e\x1d\x1f\x7c\xf0\x81\x6c\x6d\x6d\x15\xf3\xf3\xf3\x6b\x59\xb2\x6b\x46\xad\x10\x02\xa9\x54\x0a\x42\x08\xd9\xdb\xdb\x2b\x9b\x9b\x9b\xd1\xd8\xd8\x88\x96\x96\x16\x87\xc3\xe5\x00\xa8\x44\xa4\x01\x88\x31\x73\xc2\x14\x94\xba\xd6\x5c\xba\x3c\xd6\x5c\x7e\xbf\x35\x1f\xda\x35\x3c\x99\x38\x30\x38\x1b\xdb\x13\x36\x29\xe2\xe5\x64\xfe\x15\x06\xa6\xaa\x3e\x96\x0f\xc9\xec\x2b\x03\xe9\xef\x94\x43\x7c\x96\x99\x27\x01\x64\xf3\xf9\xbc\xf1\xf6\xdb\x6f\x43\x4a\x19\xd4\x67\x75\xeb\xe0\x7b\x5e\x8f\x2e\xb6\x21\x58\x7e\x3e\x1c\x04\xbc\x5e\x43\xaf\x19\x1c\xb1\xc8\xcc\xb1\x54\x21\xb4\xf3\x1f\x9c\x6a\xfb\x66\x43\x59\xd9\xe3\x8a\x03\xf6\xd8\x30\x6c\x42\x71\xf5\x27\x58\xa2\xce\x6b\x7b\xf2\xb2\x30\xa7\xdc\x52\xc4\x4c\x7f\xd8\x97\x3d\x72\xa9\xad\xf0\xae\xae\xf0\x18\x08\x93\xf6\x88\xce\x10\x51\x81\x99\x5d\x0f\xd2\xf9\xf9\x79\x4c\x4d\x4d\xe1\xbd\xf7\xde\x0b\xe2\xd2\x6b\xb5\xc1\x86\xd2\x77\xec\xd8\x21\x3a\x3b\x3b\xd1\xdf\xdf\xef\xb8\x17\x09\x58\x62\x34\x42\x44\x09\x00\x29\x00\x9d\x60\x74\xa7\x0a\xea\xae\xfd\xe3\xc9\x47\x06\xe7\x62\xc3\x8a\x84\xea\xd8\xc4\xac\x41\xe6\x70\x6f\xeb\xd9\x24\x96\x2f\x0f\xa6\xff\xe8\x7c\x7b\xe1\xc7\x0c\x3e\x4b\x44\xb3\xcc\x5c\xfa\xe6\x37\xbf\x69\x6c\x10\xef\x8d\xe4\xbb\x61\x58\xe4\x4b\xa8\x37\xdd\xac\xb7\xe6\x14\x14\x27\x00\xe0\xe0\xc1\x83\x18\x1a\x1a\x52\x01\xc4\x9a\x0a\xea\xc0\x67\x4f\xb7\xfe\xbb\xe6\xa2\xba\xcf\xab\x6d\xb8\xc4\xc5\xa8\xba\x29\x7b\x67\x58\x4e\x1e\x3b\x8e\x3c\xe2\xb3\xa4\x99\x85\xe3\xdd\xb9\x77\x8e\x6f\x5a\x7e\xad\x1c\xe2\xcb\x00\x26\x61\x71\xad\x0c\x2c\x7d\x44\x07\x20\xe7\xe6\xe6\xe4\x95\x2b\x57\x70\xf2\xe4\xc9\xd5\xf4\x88\x7a\x57\x7f\xdd\xfd\x5c\x3a\x88\x73\x07\x2a\xcc\x87\x0e\x1d\x12\x5b\xb7\x6e\x75\x88\x4d\x05\x10\x01\xe0\x10\x5a\x37\x18\x3d\x1d\xcb\xda\x9d\x07\x46\x1b\x0f\xf7\x2e\x86\xb7\x0b\x47\xe7\xf2\xee\x66\x02\xe3\xa3\x9e\xe5\x57\xde\xec\x5f\xfa\x26\x08\xa7\x01\x4c\x00\x28\x9c\x38\x71\x42\xbe\xff\xfe\xfb\x37\x84\x17\x56\x32\x8f\x7a\x6d\x73\x43\xb0\xfc\x04\xb6\x56\x58\x0f\x27\x13\xfb\xf7\xef\xc7\xfe\xfd\xfb\x05\x80\x58\xbc\xac\x6c\x79\xe6\x74\xeb\x1f\xb6\xe5\x42\x07\xc9\xab\x99\x03\x1e\x7d\xcb\xeb\xec\x87\x00\xbe\x6a\x53\x20\x01\x12\x2c\x47\x53\xa5\x8b\x6f\xf5\x67\x9e\x4f\xc7\x8c\x53\x20\x8c\x01\x98\x06\x90\x86\x4d\x58\xe5\x72\xd9\x18\x1f\x1f\xc7\xcf\x7f\xfe\xf3\x40\xfc\xd6\x59\xd7\x8d\xe4\x5f\xad\xd1\x6b\xc2\xce\x9d\x3b\xc5\xd0\xd0\x10\x5a\x5a\x5a\x9c\x9d\x4c\x11\x66\x4e\x12\x51\x2b\x80\x6e\x45\xa2\x7f\x70\x26\x7e\xe8\x81\x6b\xc9\xc7\x13\x65\xc5\x75\x47\x62\x30\xc6\x9b\xca\xe7\x9f\xdb\x3d\xff\x7b\x15\x95\x8f\x02\x18\x03\x90\x1d\x1d\x1d\x35\x5e\x7a\xe9\xa5\x7a\xef\x5c\x37\x5e\xeb\x08\x37\x04\xcb\x6b\x68\xad\x67\x40\x0b\x02\x5a\xaf\x8c\xd8\xb2\x65\x0b\x9e\x78\xe2\x09\x41\x44\x91\x90\x41\xdd\x4f\x9f\x69\xfd\xd7\xbd\x99\xf0\x67\xab\x2f\x74\x96\x46\xac\xe0\xb7\x2b\x3a\x7c\xab\xea\x82\x5c\x0d\xc5\x90\xcc\xbd\xbd\x75\xe9\xa5\x73\x1d\xf9\xd7\x6c\xe5\x76\x82\x88\xe6\x61\xe9\x3a\x7a\xa5\x52\x31\x4e\x9f\x3e\x8d\x53\xa7\x4e\xa1\x54\x2a\x6d\xb4\x41\xeb\x0e\x98\x75\xd4\x1d\x01\x79\xea\x8e\x6e\x22\x12\x1d\x1d\x1d\xb8\xef\xbe\xfb\xd0\xde\xde\xee\x10\x5a\xcc\x26\xb4\x4e\x30\xfa\x1a\xca\xca\x1d\x0f\x5f\x69\xfa\xdc\xb6\xf9\xe8\x10\x01\x62\x39\x6c\xce\xff\x68\x78\xee\xdf\x64\x62\xc6\x5b\xcc\x3c\x42\x44\xe9\x4c\x26\xa3\x3f\xf7\xdc\x73\x28\x16\x8b\xeb\x95\x3e\xeb\xe1\x3a\xb7\x14\x16\x61\x25\x11\x05\x29\xee\xfe\xe7\xc0\x29\x6a\x7b\x7b\x3b\x3e\xfd\xe9\x4f\x23\x14\x0a\x45\x84\x44\xfb\x63\x97\x9a\xbf\x3e\x34\x1d\xff\xaf\xbc\x3a\x57\x8d\x07\x28\x80\x95\x26\x77\x1f\xfb\xb2\x5d\x8b\x27\x9a\xca\x23\xaf\x6d\x5f\xfc\x61\x3a\x6e\x7c\x0c\x60\x14\x96\x48\xcc\x02\x28\x48\x29\x8d\x13\x27\x4e\xe0\xf4\xe9\xd3\x28\x16\x8b\x7e\xb4\x6e\x47\x58\x4b\xa4\xae\x47\xb4\xb8\x69\xcf\x3c\xf3\x8c\xe8\xe8\xe8\x70\x74\xb4\x18\x80\x56\x00\x3d\x42\x62\xfb\x9e\xe9\xf8\x27\xee\xbd\x96\x7c\xf4\x95\x81\xc5\xef\x5c\x4d\x15\x5f\x24\xa2\x8b\xcc\x3c\x6b\x18\x46\xe9\xc5\x17\x5f\xc4\xe4\xe4\xe4\xba\xdf\xb3\x51\xbc\x6e\x05\xac\xb5\x94\xfc\xb5\x42\x0d\x15\x7f\xf1\x8b\x5f\x14\xa9\x54\x4a\x03\xa3\x69\xff\x44\xc3\x57\x1e\x1c\x69\xfc\x1d\x01\xd2\xdc\xdc\x81\xe2\x6f\xf5\x20\x89\xe5\xf1\xee\xdc\x3b\xef\x6d\x59\xfa\x71\x59\x91\xe7\x89\x68\x14\xd6\xec\x30\x07\x40\x9f\x9c\x9c\x94\xcf\x3f\xff\xfc\x7a\x74\xc4\x1b\x0d\xeb\x1d\xf5\x1b\x81\xb3\xe2\x7e\xe7\xce\x9d\xe2\x81\x07\x1e\x40\x28\x14\x72\xf4\xb3\x26\x00\xed\x60\x74\x36\x94\x95\xd4\x72\xd8\x9c\xb0\xd5\x81\x59\x00\x85\x23\x47\x8e\x48\x8f\xaf\xfe\x6a\xd2\xe7\xa6\xf0\xba\x59\x58\x5e\x11\xe9\x84\x40\xee\x84\x60\xaa\x05\x60\xcd\xf0\x9e\x7c\xf2\x49\xf4\xf5\xf5\xa9\x44\x94\xec\x5b\x0c\x1f\x7c\xfa\x74\xeb\x1f\xab\x92\x92\x80\x4f\xa1\x5f\xe5\xde\x1b\x18\x80\xae\x70\xe9\xc8\xb6\xcc\x4f\xce\x76\xe6\x5f\x64\xc2\x45\x58\x4a\x6d\x1a\x40\xa9\x58\x2c\x1a\x6f\xbd\xf5\x96\x77\x3f\xe1\x5a\x5c\xb8\x5e\x67\x04\x89\xc0\x1b\x51\x70\x11\x10\xbf\x9e\x7c\x35\x79\x1e\x79\xe4\x11\xb1\x7d\xfb\x76\x41\x44\xaa\x3d\xdb\x4c\x00\x50\xed\x55\x86\x2c\x80\xc2\x85\x0b\x17\xe4\x1b\x6f\xbc\xb1\x11\x42\xb8\x69\xbc\x6e\x14\x96\xbf\x5f\xd7\x0b\xb4\x26\x0c\x0e\x0e\x8a\x43\x87\x0e\x09\x00\x89\x64\x51\x19\xf8\xc2\xc9\xf6\x3f\x6e\x2c\xa9\x3b\x1d\x3b\x44\x75\x21\xba\xba\xee\xe6\x06\x67\xfa\xe8\xc6\x5b\x64\x97\xd3\xcc\xec\xcb\x83\x8b\xdf\xbf\xd6\x5c\x7a\x0d\x04\x67\x96\x98\x01\xa0\x5f\xb9\x72\x45\xbe\xfa\xea\xab\xb7\x8a\x43\xfd\xad\x0b\x9b\x37\x6f\x16\x0f\x3e\xf8\x20\xe2\xf1\xb8\xea\x59\x31\x90\x00\x8c\xa9\xa9\x29\xf9\xdc\x73\xcf\xdd\x70\xdd\x07\x06\x06\xc4\x9e\x3d\x7b\xd0\xda\xda\x0a\x1b\x2e\x98\x19\xa5\x52\x49\x2e\x2c\x2c\xe0\xcc\x99\x33\xb8\x76\xed\xda\x2d\x6b\x5b\xbf\x0e\xe6\x84\x75\x8f\xdc\xa6\xa6\x26\xf1\x85\x2f\x7c\x01\x8a\xa2\x44\x14\x89\xce\x4f\x9d\x6d\xfd\xdd\xfe\x85\xc8\xb3\x41\x5b\x31\xd8\xf3\xbf\x7a\xf1\xba\x2a\x5b\xb3\xc5\x6c\xc4\xc8\x3c\xbf\x7b\xfe\x3f\xcc\x26\x2a\xef\x32\x2c\x13\x04\x11\xe5\xa4\x94\xfa\xbb\xef\xbe\x8b\xb3\x67\xcf\xba\xfe\x54\x3e\x9c\xbd\x61\x3d\x3a\x25\x7c\x71\xeb\x81\xb5\x1a\x07\x0c\xe2\x7e\x6b\x29\xd0\x81\xb0\x34\x4d\x13\xc3\xc3\xc3\xe8\xef\xef\x47\x53\x53\x13\x96\x97\x97\xf1\xd1\x47\x1f\x39\x07\xaa\x6c\x08\x96\x73\xff\xec\xb3\xcf\x0a\xcf\x5e\x52\x67\x69\xcb\x29\xef\x2c\xee\x1b\xd7\xaf\x5f\x97\x3f\xfd\xe9\x4f\xd7\x53\x8f\x35\xeb\xb8\x11\x11\xe9\x4f\x97\x42\x08\xf1\xcc\x33\xcf\xa0\xad\xad\x4d\x03\xa3\x69\xef\xf5\xc4\x2f\x3d\x7c\xa5\xe9\x5f\x11\x48\xad\x5d\x51\xab\xce\x1b\x7d\x2b\x3d\x9e\x54\x6b\xd6\xb8\x18\x35\x66\x9f\xdf\x3d\xff\x1f\xd2\x71\xe3\x5d\x00\x97\x61\xe9\x1c\xb9\x6c\x36\x6b\x7c\xff\xfb\xdf\x5f\x2f\x6e\x35\x78\x06\xc4\x6d\xa4\x9e\x41\xb0\x56\x13\xcb\xab\xc1\x0a\xca\x77\xdb\x61\x6d\xdb\xb6\x0d\x8f\x3e\xfa\xa8\x20\x22\x4d\x48\xc4\x36\x2f\x46\xf6\xee\x9a\x89\xff\x83\xae\x25\x6d\xaf\x2a\x29\x56\xd0\xe4\xec\x68\xaa\xf4\xc6\xd9\xce\xdc\xf3\x0b\xf6\x2e\xa6\x72\xb9\x6c\xfc\xec\x67\x3f\xc3\xdc\xdc\xdc\x4d\xe1\xe5\xe5\x60\xfe\xb0\x96\xc2\x27\xee\xba\xeb\x2e\xdc\x7d\xf7\xdd\x82\x88\x12\xa9\xbc\x3a\xfc\xec\xc7\x1d\x3f\x88\x98\xa2\xbd\x76\xd7\xb3\x77\x19\xd7\x0a\xec\xb9\xf3\xae\x47\x66\x22\xc6\xfc\x73\x7b\xe6\xfe\xfd\x42\xdc\x78\x1b\x1e\xe2\x9a\x9b\x9b\x93\x3f\xfe\xf1\x8f\xd7\x1a\xa5\x37\x1a\x6e\x16\xd6\x5a\x93\x80\xd5\xe2\x6e\x3b\xac\xed\xdb\xb7\x8b\x43\x87\x0e\x41\x51\x94\x48\x44\x17\x9d\x9f\xb8\xdc\xfc\x5b\x3b\xe6\xa2\xbf\x46\xa0\x88\xb5\xe6\x59\xdd\x78\x52\x56\x79\xec\xc3\xbe\xec\xff\xf1\x51\xcf\xf2\x5f\x31\x21\x5b\x2a\x95\xf4\xef\x7c\xe7\x3b\xf5\xda\x66\x5d\x71\x0a\x5c\x1f\x90\x9a\x1f\xfb\x9e\x81\xaa\xb7\xa2\x73\xcf\x87\x0f\x1f\x26\x55\x55\xc3\x42\xa2\xe3\x89\x8b\xa9\xff\xad\xb5\xa0\xed\x73\x14\x2e\xaf\x23\x4d\x95\xd4\xbc\xa0\x3d\xc4\xc5\x8c\x5c\x58\x66\x9f\xdb\x3d\xff\x8d\xf9\x78\xe5\x2d\x10\x5d\x66\xe6\x69\x00\xf9\xd1\xd1\x51\x2f\xbb\xf6\xcf\x0f\x7c\x0b\x99\x6e\x25\x1d\x5c\xbd\xe9\xde\xe7\x9b\x81\x25\x7c\x57\xf2\xa5\xf9\xdb\xcb\xdf\x6e\xab\xc1\xbc\xa5\xb0\x1a\x1a\x1a\xe8\x89\x27\x9e\x40\x28\x14\x8a\x84\xa4\x68\x7f\xea\x7c\xcb\xff\xbe\x6d\x21\xfa\x6b\x04\x6b\x39\xca\xed\x21\xfb\x56\x65\xd1\xd8\x9b\x09\x3f\x51\x56\xe5\xc4\x74\x83\x7e\x45\x51\x15\xbd\xb3\xb3\x93\x2f\x5d\xba\x84\x1b\xc5\xcb\xa1\x38\xff\x0f\x01\xcf\xde\x38\x1c\x3e\x7c\x58\x68\x9a\xa6\x82\x91\xd8\x35\x13\x7f\x72\x73\x3a\x72\xb8\x96\x37\x01\xc4\x54\xdd\x02\xc8\x80\xeb\x51\xc7\x6c\x39\xda\xc1\x8a\x2b\x85\x64\xe1\xc5\x9d\x0b\x7f\x34\x97\xa8\xbc\xcd\x16\xe7\x9a\x06\x50\xb8\x7a\xf5\xaa\x7c\xf9\xe5\x97\x6f\x64\xf4\xd6\xe0\x5a\xe7\xf9\x46\x61\x05\x5d\xbd\xa3\xdc\xff\xce\xd5\xca\xdf\x56\x58\x77\xdc\x71\x07\x22\x91\x88\x4a\x44\x89\x3d\x53\xf1\xcf\x6e\x49\x47\x9e\xb5\xda\xdd\xf6\xff\xaf\x3d\x46\x08\xc4\x80\x90\x14\xb9\xff\x5a\xe3\x3f\x4b\x15\xd4\x01\x00\xb1\x4d\x9b\x36\x79\x71\xd9\x30\x5e\xce\x0c\xc5\x1f\xfc\xf1\x35\x9d\xd0\xd3\xd3\x23\xfa\xfa\xfa\x04\x80\x48\xac\x22\xfa\xee\xbb\x96\xfc\x27\x96\xbd\xcb\x1a\x17\x35\x7b\x2b\x00\xdb\x0b\xa0\xca\x0c\xbd\xbe\x4e\x52\xc0\x78\x63\x5b\xe6\x87\xe3\x4d\xe5\x37\x6c\x85\x7e\x96\x99\x0b\x57\xaf\x5e\x95\xaf\xbc\xf2\xca\x6a\x8a\x6c\xbd\xe0\x94\x11\x9e\xbc\xde\xfb\x9b\x85\xe5\x87\xb9\x5a\x58\x4f\xdb\xde\x36\x58\xfd\xfd\xfd\x00\xa0\x09\x89\xd4\x1d\x53\x89\x7f\x48\x4c\xaa\xc3\x87\xc8\xd9\x7f\xe0\x4e\xe2\xab\x7d\x12\x36\xa8\x73\xd7\x4c\xfc\x19\x58\xee\x46\xe2\xe1\x87\x1f\x5e\x0d\xbf\x55\xf1\x0a\x42\xce\x4f\xb1\xfe\x1f\x1e\x78\xe0\x01\x00\x50\xc1\x48\xee\x1b\x6f\xf8\x52\x43\x59\x19\xb0\x96\x75\x2c\xca\x62\x62\xb0\xbd\xd0\xc3\x2e\xb5\x55\x07\x4c\x35\x9d\xf1\x51\xcf\xf2\xcf\xcf\x75\x14\x5e\x00\xe1\x22\x11\xcd\x12\x51\x6e\x74\x74\x54\xbe\xfa\xea\xab\xf5\xf0\x03\xea\x73\x1d\x2f\xfe\xf0\xe5\xbd\x55\xb0\xea\x35\xa8\x1f\xae\x5f\x6f\x5d\x0d\x87\xdb\x02\x2b\x1a\x8d\x0a\x22\xd2\x92\x25\xb5\xbb\xb1\xa8\xee\xac\xe9\x23\xd8\x3e\x29\x8e\x37\x81\xd3\x27\xd6\xa6\x08\xf4\x64\xc2\x07\x14\xa6\x26\x00\xda\xe6\xcd\x9b\xa1\x28\xca\x0d\xe1\x15\xe4\x32\xed\xaf\x68\xcd\x68\x1f\x18\x18\x10\xcd\xcd\xcd\x02\x40\x2c\x55\x50\xb7\xdf\x31\x95\xf8\x4a\x75\xae\x08\x77\x74\x78\x95\x99\x5a\xe5\xa2\xea\xdf\x74\xad\xb9\x74\xf6\xfd\xcd\xd9\x1f\xc0\x32\xa2\x4e\x03\xc8\xcd\xcf\xcf\x3b\x62\x31\x70\x62\x81\xda\x4e\x0e\x52\x40\x83\xca\x02\xb7\x0e\x56\x50\x83\xae\x25\x66\x83\x66\x77\xde\x70\xcb\x61\xed\xdd\xbb\x57\x10\x91\x60\x66\x2d\x56\x11\x9d\x0a\x23\x42\xb6\x58\xf1\xf4\x96\xfd\xdf\x73\x22\x90\x1d\x93\xd0\x95\x6e\xc1\x94\x34\x59\xaa\xd1\x68\x54\x98\xa6\xe9\x77\x07\x5a\x17\x5e\x7e\x97\x69\x7f\x85\x6b\xee\x15\x45\xc1\x9d\x77\xde\x09\x58\x47\x27\x25\xf7\x4d\x34\xfc\x8a\x66\x52\xab\x93\xee\xd8\x52\xc1\x8e\x23\x60\x95\x07\x7b\xb6\x6f\x00\x60\xe4\x35\x33\xf3\xfa\xf6\xcc\x77\x0d\x85\xcf\xc3\x32\xa2\xe6\xb2\xd9\xac\xf1\xa3\x1f\xfd\xc8\xdb\xe9\xfe\xce\xf7\xe3\x56\x0f\xdf\x20\x4e\x73\xab\x60\xad\x55\xc6\xff\x8e\xa0\xb0\x91\xb4\x1b\x82\x15\x0e\x87\x01\x58\x0b\xeb\xba\xc2\x92\x09\x92\xd8\x39\x6b\xb6\x4a\x66\xb4\x42\x44\x5a\x57\xdb\x04\xaf\x3a\x8e\x9f\xaa\xaa\x0a\xc3\xa8\xa1\xb1\x75\xe1\x55\x4f\x4c\x04\x2a\x6c\x5b\xb7\x6e\x75\x0e\x7d\x8b\xb4\xe6\x43\x03\x03\x73\xb1\xcf\x91\xc3\x6f\x1d\xf4\xbc\xfa\x96\x2d\x1d\xc9\xa7\x50\x4a\x82\x3c\xb2\x6d\xe9\x87\x99\xa8\xf1\x11\x80\x09\x66\xce\x9a\xa6\xa9\xdb\x62\xd1\xfb\xfe\x7a\x93\x8e\x20\xa5\x73\x3d\xf9\x6f\x25\xac\x20\x5c\xb1\x0a\xac\xa0\xf6\xbd\x6d\xb0\xde\x7f\xff\x7d\x09\x00\xcc\x2c\xb3\x11\x23\x53\x08\x99\x69\x27\xad\xc6\x64\xb4\xd2\x9d\x05\x0c\xc6\x4c\x83\x3e\x62\x08\xd6\x01\xab\x3f\x0d\xc3\xb8\x21\xbc\x82\xc4\x44\xbd\x11\x2b\xf6\xef\xdf\x0f\x22\x52\xc1\x48\xde\x75\x3d\xf1\xcb\x21\x93\x52\x5e\xa4\xd8\xc6\xbe\xe6\x9e\x19\x4c\xb5\x2e\xc0\x97\x5b\x8b\x1f\x5d\x6a\x2b\xbc\x0c\xc2\x18\x33\xa7\x01\xe8\xef\xbf\xff\x3e\x3c\xe7\xcd\x07\xea\x7e\xbe\x6b\x3d\xee\x12\x54\xe6\x56\xc3\xf2\x07\xff\x40\x0d\x12\x5b\xd2\xf7\xec\xbd\xde\x16\x58\xf6\x8e\x28\x5d\x57\x39\x7b\xb1\xad\xf8\x9e\xdf\xfd\xc9\xe5\x00\xd5\xfc\xd6\x0b\x09\xc6\xb9\x8e\xfc\x3b\xb0\x8f\x8d\x02\x20\x55\x55\xbd\x21\xbc\xbc\x8d\xeb\x1f\x49\x35\xf7\x03\x03\x03\x68\x6c\x6c\x14\x00\x22\xc9\x92\xb2\x65\xc7\x5c\xec\x33\xc4\x64\xaf\x35\x7a\x94\x45\x00\x1e\x2d\x12\x44\xb6\xb5\xcb\x7e\x2e\x84\x64\xf6\xed\xad\x4b\x3f\x60\xc2\x28\x80\x79\x22\x2a\x5d\xbd\x7a\x55\x9e\x3e\x7d\x7a\x3d\x1c\xc3\x9f\x1e\xa4\x33\xad\x97\xfb\xdc\x0c\x2c\x6f\xf9\xd5\x74\x2a\x2f\x2c\xff\x20\xf6\xe3\x70\x4b\x61\x45\xa3\x51\x21\xa5\x94\xcc\xac\x33\x73\xe6\x58\xef\xf2\x73\x99\xa8\x31\xc9\x60\xdb\x44\x01\x4b\xaa\xd8\xdb\xf1\x98\x9d\x85\x3c\xc6\xa5\xb6\xc2\x07\xd7\x9a\x4b\x1f\x32\x73\x0e\x80\x31\x3d\x3d\xed\x70\xb0\x0d\xe3\xe5\x1f\xb9\x75\x47\xc3\xf6\xed\xdb\x61\xef\x05\x4c\xde\x31\x95\x78\x26\x64\x8a\x94\x35\x63\x84\xbd\x0b\xde\xd2\xaf\xd8\x26\x34\xef\xee\x7d\x00\x8e\xac\xc4\xd1\xbe\xec\xcf\x96\x22\xc6\x49\xdb\x90\x9a\x2b\x95\x4a\x86\x6d\x8e\x08\x7c\x6f\x1d\xdc\xea\x89\xf6\x7a\x30\x6e\x25\xac\x7a\xfa\xe1\x5a\xb0\xbc\x75\xac\xc7\x4d\x6f\x19\xac\x62\xb1\x28\x27\x26\x26\x00\xcb\x75\x3c\x9d\x0f\x9b\xe7\x7f\xb6\x6b\xe1\x1b\x8b\x51\x63\xba\xc6\x3c\x61\xf7\x9b\x33\xfb\x1f\x49\x95\x4e\xfe\x7c\xc7\xe2\xb7\x4d\xe2\x31\x58\xfe\x76\xc6\xa9\x53\xa7\xfc\xef\x5a\x37\x5e\xce\x77\x53\x9c\xe9\x83\xd7\x2c\x5a\x13\x7f\xe8\xd0\x21\x45\x08\x11\x89\x54\x44\xdf\xa3\x97\x9a\xff\xb9\x66\x88\x26\x87\x88\xd8\xb3\x29\x96\x80\xaa\xfb\xb3\x2b\x16\x2d\x15\x72\x3e\x5e\x99\x78\x7d\x7b\xe6\x5b\xa6\x82\x73\x44\x34\x03\xa0\xf4\xfa\xeb\xaf\xf3\xe2\xe2\xa2\xff\xbd\xde\xe0\x4f\xf3\x5a\xdd\x85\xe7\xea\xaf\x43\x50\xb8\x15\xb0\x82\x70\x65\xd4\xe6\x17\x75\xee\xfd\x79\x6f\x2b\xac\x2b\x57\xae\xf0\xf0\xf0\x30\x2b\x8a\x62\x02\xe0\x42\x58\xe6\x2e\xb7\x16\xae\x02\xd0\xe2\xba\x92\x0c\x49\x0a\x03\x20\x43\x61\x63\x3e\x6e\x4c\xbe\xbf\x39\xfb\xd7\xef\x6d\xcd\x7e\x4f\x57\xe4\x69\x22\x9a\x00\xb0\x9c\x4e\xa7\x0d\xfb\xe4\xeb\x1b\xc2\x2b\x68\x16\xb9\x82\x4d\x3f\xf8\xe0\x83\x42\x08\x21\x00\x24\xfa\xe7\xa3\x07\x13\xba\xd2\x67\xd9\x4d\x00\xcb\x9a\xea\x91\xee\x9e\xa9\xae\x1d\x01\xc7\xf9\xf9\xc3\xbe\xec\x4f\x74\x95\x2f\xc3\x72\x18\x2c\x5d\xbd\x7a\x55\x8e\x8c\x8c\xf8\xe5\x76\xd0\xc8\xf0\x87\x20\x85\x72\xd5\x3a\xdc\x42\x58\xfe\x11\xbc\xda\x88\xf6\xe7\xf3\xdf\xdf\x76\x58\x1f\x7f\xfc\x31\xee\xbd\xf7\x5e\x9d\x88\xe6\x99\x59\xe6\xc3\xb2\xf4\x66\xff\xd2\xc4\xfb\x9b\xb3\xdd\x89\xb2\xd2\xa1\x4a\x8a\x94\x54\x99\xcb\x6b\xe6\x75\x53\x60\x12\x84\x09\x02\x4d\x02\xc8\x4a\x29\x75\xfb\x6c\xd8\x1b\xc6\xcb\x7f\x36\xc5\x8a\x8c\xaa\xaa\x8a\xcd\x9b\x37\x03\x96\x45\x38\xb9\x73\x36\xf6\x74\xed\x56\x7f\xa0\x6a\x8a\xa8\xae\x32\x56\x53\xac\xd8\xd9\x84\x3e\x72\xa5\xb5\xf8\x26\x6c\x7b\x97\xae\xeb\x86\xc7\xde\xe5\x0f\xab\x89\x39\x7f\x85\x83\xee\xbd\x75\xb8\x1d\xb0\xfc\xb3\xa8\x7a\xa2\xce\x9f\xf7\x6f\x1c\xd6\x89\x13\x27\x24\x11\xe1\x9e\x7b\xee\x29\xd8\xc7\x0b\x14\x40\x98\xd5\x55\x1e\x49\xab\x46\xcc\xce\x6f\xd8\x1b\x92\x33\xb0\x77\x65\x19\x86\xa1\xbf\xf2\xca\x2b\x41\xed\xb4\x21\xbc\x54\x5f\xe2\x0a\x45\x77\xf3\xe6\xcd\x22\x91\x48\x08\x66\xd6\x52\x05\xad\xbf\x2b\xab\xdd\x8d\x3a\xa1\x6a\x49\xe1\xea\x93\x65\x80\xc1\x47\x3d\xcb\x2f\x99\x84\x09\x66\xce\x10\x91\x7e\xee\xdc\x39\x2f\x22\xfe\xfb\xd5\xb8\x4f\xbd\x32\xf5\xca\xdd\x2e\x58\xfe\xfb\xf5\xc0\xaa\x57\xc7\xdb\x0a\xeb\xf8\xf1\xe3\x52\x4a\x89\x7d\xfb\xf6\x95\x34\x4d\xb3\x88\xcc\x92\x22\x8e\x04\x33\x6c\xe2\xd3\x01\xe8\x4b\x4b\x4b\xf2\xc8\x91\x23\x98\x9a\x9a\xba\x69\xbc\xbc\x22\xd2\x3f\x62\x01\x54\x95\x7b\x02\xc5\xfa\x17\xa2\x87\x54\x49\xc9\x95\x9f\xb7\xa8\x3e\x33\x50\xdd\x30\x6a\xc3\x58\x8c\x19\x13\x57\x5b\x8a\x6f\x33\x78\x96\x88\x0a\x86\x61\x18\x27\x4f\x9e\xf4\x23\xe5\x45\x6e\xbd\x1d\x5f\x8f\x78\xea\xb1\xf4\x5b\x05\x2b\x48\x1c\xad\x06\x2b\x88\x43\xd5\x13\x8b\xb7\x05\xd6\xc9\x93\x27\xe5\xc9\x93\x27\xf1\xd0\x43\x0f\x19\xfd\xfd\xfd\x46\x38\x1c\x2e\xf9\x9c\x36\xe5\xf2\xf2\x32\xce\x9c\x39\x83\x53\xa7\x4e\x79\x27\x1b\x37\x85\x57\xd0\x52\x51\x0d\xa0\xde\xde\x5e\x61\x9f\x4d\x9f\xec\x5f\x88\x3e\x62\x59\xeb\xc9\x25\x2a\x6b\xd3\xac\xad\x67\x39\x1f\x18\xb0\xa8\x0c\x80\x65\xc2\x38\xdb\x91\x3f\x52\x56\xe4\x04\x80\x0c\x33\xeb\x67\xce\x9c\x71\xb6\x5a\xd5\x43\xd6\xdf\x60\x41\xb8\xad\x35\x9b\x09\x2a\x7b\xab\x60\xad\xc6\x15\xfd\xb0\xfd\xf9\xeb\xd5\xf5\x6f\x04\xd6\x9b\x6f\xbe\x29\xdf\x7c\xf3\xcd\xf5\xe4\xbd\x25\x78\x79\xcf\xa6\x08\x04\x6c\x2b\xf7\x91\xa6\xa2\xda\xd7\x9a\x0b\x0d\x3b\x4a\xbb\x67\x19\xde\xb2\xd4\x7b\x4f\xe7\xa3\xea\xc8\x28\xab\x9c\xbb\xd4\x56\x78\x13\x16\x4b\x2e\xe8\xba\x6e\xd8\x56\xe6\x7a\xfa\xce\x6a\x3a\x49\x3d\xdd\xc3\x1f\xb7\x16\xa1\xdc\x0c\xac\xb5\xde\xe3\x0f\xf5\xb8\x4a\x3d\xfd\xe5\xa6\x60\x6d\xde\xbc\x59\xf4\xf6\xf6\xba\x05\xde\x7a\xeb\xad\x0d\xc3\x4a\x24\x12\x18\x1a\x1a\x42\x57\x57\x17\xe2\xf1\xb8\x5b\xa0\x52\xa9\x88\xab\x57\xaf\xe2\xe8\xd1\xa3\x41\x6d\x12\x08\x2b\x68\x16\xe9\x22\xfc\xf0\xc3\x0f\x3b\x99\x23\x7d\x8b\x91\x07\x14\x76\x0e\xe8\xf0\x19\xb9\x3c\xf7\xd5\x35\x48\x6b\x59\x7b\xac\xa9\x74\x3a\x1b\x35\x47\x08\x94\x06\xa0\xdb\xa7\xbf\xac\xa6\x78\x07\x21\x1d\x24\xbe\x83\x44\xbb\x37\x8f\x5f\xb7\xbc\x55\xb0\x56\x4b\x0f\xc2\xdf\xfb\xde\x7a\x9c\xf9\xa6\x60\x69\x9a\x86\x83\x07\x0f\x62\xfb\xf6\xed\x8e\x58\x73\x7e\x18\x1a\x1a\x92\x00\xa4\x69\x9a\xf2\xcc\x99\x33\xf8\xf8\xe3\x8f\x85\x73\x82\x90\x1f\x56\x3c\x1e\x17\x7b\xf7\xee\xc5\xee\xdd\xbb\x01\xfb\x1b\x50\x5e\x58\x00\x8c\xe6\xe6\x66\x63\xdf\xbe\x7d\xf2\xda\xb5\x6b\xf2\xf5\xd7\x5f\xaf\x0b\xcb\x29\xe3\x3f\xbe\xa9\x26\xf3\xa6\x4d\x9b\x1c\xe3\x6a\xa2\x6f\x31\x72\xaf\x95\xc4\x2e\x01\x79\x3f\x0a\x55\xfb\x39\xa9\x6a\xdc\x85\xf6\xc2\x5b\xa8\x6e\xeb\x97\x67\xcf\x9e\x0d\x7a\x9f\x3f\x6e\x35\xd6\xef\x27\x9c\xb5\xf2\xae\x06\xfb\x66\x60\xad\x96\x77\x35\x8e\xb4\x56\xdd\x37\x04\x6b\xcb\x96\x2d\xe2\xc0\x81\x03\x48\x24\x12\x2a\x00\x4d\x31\x11\x6b\xcb\x6b\x7d\xa9\x7c\xa8\xdb\x14\x6c\xa4\x63\x95\x89\x74\xbc\x32\x09\x45\x29\x0d\x0f\x0f\xeb\x5b\xb7\x6e\x35\xbe\xf7\xbd\xef\x05\xe2\xf0\xa9\x4f\x7d\x4a\x34\x37\x37\xab\x00\xb4\x48\x45\x34\xf5\x2f\x44\xee\xdf\x9c\x8e\x3c\x18\xad\x28\xad\xa5\x90\x4c\x5f\x6f\x2c\x7f\x78\xb9\xb5\xf8\x4e\x5e\x33\xe7\x37\x6f\xde\x5c\xfa\xfc\xe7\x3f\x5f\x17\x96\x73\xe3\xff\x66\xb7\x9b\xa1\xb9\xb9\x19\x89\x44\x42\x00\xd0\xa2\x86\x92\xea\x58\xd6\x86\xbd\xeb\xf0\xde\xe3\x1e\x6b\x56\x88\x3c\xfa\x57\x31\x24\x33\x13\x4d\xe5\x13\xce\xcc\x71\x61\x61\x41\xda\x3b\x91\xeb\x35\x9c\x3f\xee\x46\xc5\xc8\x5a\x0a\xf0\xaa\xb0\x76\xee\xdc\x29\x3a\x3a\x3a\x90\x4c\x26\xd1\xdc\xdc\xec\xc6\xa7\xd3\x69\x2c\x2f\x2f\x63\x69\x69\x09\x53\x53\x53\x98\x99\x99\x59\x4d\xcc\xd6\x8b\x5f\x4b\x44\xae\x1b\xd6\x8e\x1d\x3b\xc4\xa1\x43\x87\x04\x11\xa9\x42\x22\x39\x34\x13\x7f\x74\xdf\x78\xc3\x6f\x34\x96\xd4\xbd\x82\x11\x03\x20\x25\xa1\x90\x8e\x55\x3e\xf8\xa0\x2f\xfb\xfb\x97\xda\x8a\xef\x25\x12\x89\xdc\x57\xbe\xf2\x15\xfd\x85\x17\x5e\xf0\xae\xfd\xc2\xde\x71\xa4\x82\x91\x18\x98\x8b\x3e\xfc\xe0\xd5\xa6\x7f\x96\x2c\x29\xc3\x00\xa9\x56\xb7\x33\x76\xcc\x45\xe5\xbd\x63\xc9\x8b\xef\x6c\x59\xfa\x17\x67\x3a\xf3\xaf\x38\xb0\x3c\x7e\xfb\x2b\x70\x75\x4e\x99\x5e\x61\x11\x1e\x1c\x1c\xa4\x9e\x9e\x1e\x02\x90\xe8\xc8\x69\x77\x0f\x4f\x26\xbe\x24\x98\x14\xc0\xa1\x9f\xaa\x2f\x37\xc1\xd1\xc1\x6c\xaa\xb3\x19\xd9\xd5\x96\xd2\x47\xe7\x3b\x0a\x3f\x21\xa2\xeb\xcc\x9c\x3f\x7d\xfa\xb4\x9c\x9e\x9e\xae\x67\xbd\xf6\xc7\x39\xcf\xfe\x55\x05\x6f\x67\x04\xf9\xd1\x7b\xad\xf0\x41\xd6\xe5\x40\x58\x7b\xf6\xec\xa1\x87\x1e\x7a\x88\x1e\x7a\xe8\x21\xa5\xaf\xaf\x8f\x5a\x5a\x5a\x42\x89\x44\x22\x14\x0a\x85\x54\x45\x51\x54\x55\x55\xd5\x86\x86\x06\xb5\xa5\xa5\x45\x6c\xda\xb4\x89\x06\x07\x07\xb1\x73\xe7\x4e\xa8\xaa\x8a\xe9\xe9\x69\x2f\x91\xb0\x0f\x07\xff\xbb\xd7\x13\xb7\x2e\x58\x9f\xff\xfc\xe7\x89\x88\xc2\x21\x29\x5a\x1e\xbf\x98\xfa\x9f\xef\x1d\x4b\xfe\x6e\xd4\x10\x5b\x6c\xef\x62\x22\x86\x20\x46\x38\x56\x51\xfb\xb7\x2d\x44\x3f\x17\x92\x54\xb8\xde\x54\x3e\xa7\x84\xd4\x4a\x7f\x7f\xbf\x79\xe2\xc4\x09\x09\x80\x0f\x1f\x3e\x2c\xda\xdb\xdb\x55\x02\x25\xef\x98\x8a\x3f\xfd\xf8\xc5\xd4\x37\x23\x15\x65\x33\x08\xc2\x51\x87\x6c\xb5\x9a\x42\x52\xb4\x6e\x49\x47\x3e\x55\x51\xe5\xe4\x74\xb2\x72\x45\x0d\xa9\x7a\x7b\x7b\x3b\x5f\xbe\x7c\x59\x06\xd5\xc7\x7b\x4e\xbe\x37\x88\x5d\xbb\x76\xa1\xa5\xa5\x25\x04\xa0\x71\xc7\x7c\xec\x53\x5b\xd2\x91\x43\xd5\xc3\x78\xe1\x21\x2e\xeb\xc1\xeb\x0c\x6d\xc5\x31\x3e\xee\xc9\x3d\x37\x97\xd0\xdf\x05\xd1\x1c\x11\x95\x7f\xfa\xd3\x9f\x9a\xf5\xde\x07\xaf\x4f\x62\x35\xce\xbb\x84\xe3\x25\x0e\x0f\x35\x07\x12\xa5\x40\x2d\x11\xf9\x97\x83\x5c\x58\x83\x83\x83\x74\xf8\xf0\x61\xea\xef\xef\x17\xd1\x68\x34\x44\x44\x11\xc5\x40\x73\x3c\x6b\x6e\x4b\x01\xc5\x9b\xce\x00\x00\x20\x00\x49\x44\x41\x54\xce\x99\xf7\x34\xcc\x1b\x0f\x26\xe7\xcd\x03\x89\x8c\x79\x47\x34\x27\x7b\x15\x13\x11\xa9\x0a\x53\x2a\x40\x38\x1c\xa6\xee\xee\x6e\x39\x3c\x3c\x0c\x00\xf0\x0c\x1e\xff\xfb\x82\xea\xca\x75\x9e\xe1\x7b\x0e\x84\xf5\xd4\x53\x4f\x89\xc6\xc6\x46\x8d\x40\x8d\x0f\x8c\x36\xfe\x97\xc3\x53\x89\xff\x89\x98\x94\x1a\x3f\x2f\xcf\xc4\x4b\x80\x42\x9d\xcb\xda\x83\x79\xcd\xbc\x32\x93\xd0\x47\x54\x55\xad\xa4\x52\x29\xd6\x34\x8d\x86\x87\x87\x05\x80\x78\x5b\x5e\xdb\x73\xf8\x5c\xcb\xff\xa3\x99\x22\x65\x35\x72\x7d\x58\x5d\xd9\xf0\x3d\xe3\xcd\xe5\x37\x73\x9a\x31\xdf\xd8\xd8\x58\xc9\xe5\x72\x58\x58\x58\x58\x51\x27\xff\x09\x87\x4e\x90\xed\xed\xed\x82\x99\x85\xf5\x21\xaa\xf0\x1e\xcb\xc6\xe5\xd9\x19\xc4\xd5\x25\xa2\x9a\xd6\xb1\xb7\x40\x55\x04\x97\x26\x1b\xcb\xa7\x40\x94\x03\xa0\x2f\x2c\x2c\xf8\x67\x71\x40\xb0\x28\x40\x40\xbe\x15\xf8\x05\x94\xa9\x07\xd7\xb9\xaf\x81\xd5\xd8\xd8\x88\x07\x1f\x7c\x10\x9b\x36\x6d\x12\x44\xa4\x81\x39\x16\x5f\x34\x07\x5a\xc6\x2b\xbf\xd0\x30\x6f\x3e\xa9\x56\x78\x0b\x18\x91\x15\xef\x25\xe8\xa6\x8a\x89\x5c\x4a\xfd\xf9\x42\x4f\xe8\x07\xb9\x56\xe5\x64\x28\x14\xca\xdd\x7b\xef\xbd\xfa\xae\x5d\xbb\xf0\xb3\x9f\xfd\x0c\x4b\x4b\x4b\x0e\x2e\x6b\xcd\x54\x57\xab\x43\x90\xc8\x71\xef\x7b\x7a\x7a\x04\x11\x45\x5a\xf2\xa1\x81\xe1\xc9\xc4\x7f\xeb\xe6\xb7\x59\x8d\xab\xc2\xb8\x3b\xbc\x18\x42\x22\x72\xff\xb5\xc6\xaf\x5f\x6a\x2b\xbe\x57\x0e\xc9\xd2\x96\x2d\x5b\x0c\x7b\x95\x46\x25\x50\x72\xdf\x44\xc3\xaf\x86\x4d\xea\x64\xb2\x37\xe5\xac\x02\x4b\x33\xa9\x7d\xdf\x44\xe2\x57\x5f\x18\xd2\x2f\x03\x28\x0d\x0c\x0c\xe8\x17\x2e\x5c\x58\x81\x77\x5d\x97\xe9\xa6\xa6\x26\x00\x50\x15\x93\x12\x2d\xf9\x50\xbf\x65\xe2\xaa\x2a\xf7\x8e\xfe\xe5\xf5\x83\x64\x58\xff\x88\x08\xd9\x48\x65\x3a\x1b\x36\x27\xec\x13\x9c\x8d\xe9\xe9\x69\xa0\x56\xdf\xa8\x47\x30\x41\x4a\xf7\x5a\xb3\xc2\x7a\x8a\x3b\x7c\x79\x5d\x58\x4f\x3f\xfd\xb4\x88\x46\xa3\x2a\x11\xc5\x22\x59\x73\x7b\xd7\xa5\xf2\x6f\x34\xcc\x99\x5f\x14\xcc\x09\xb0\x77\xf2\xe2\x70\x6b\x06\x88\x04\x4b\x44\xd4\x0a\xb6\x37\x4e\x1b\xdb\x1b\x67\x8c\xaf\xe4\x9b\x95\xbf\x9e\x1a\xd0\x7e\x2f\xdf\xac\x9c\x6e\x68\x68\x28\x7c\xf1\x8b\x5f\xd4\x5f\x7f\xfd\x75\xff\x07\xdf\xd7\x9a\x4c\x78\x89\x6a\x2d\x3d\x53\x1e\x3c\x78\xd0\x1a\x30\x8c\xd8\xf6\xb9\xe8\x53\x9a\x49\xad\x5e\x75\xb8\x2a\x4f\xaa\x4c\x91\x6c\x39\x17\xd7\xc5\xf6\x2d\x8b\x91\x83\xe7\xdb\xf2\xb3\x00\x74\xfb\x98\x76\x4d\x93\xa2\xb5\x37\x13\x3e\x48\xd5\x02\xab\xc3\x02\xa3\x67\x29\xf2\x70\xc8\xa0\x94\xae\xc8\x4c\x7b\x7b\xbb\x1e\x8f\xc7\x45\x3e\x9f\xaf\xa9\x63\xcd\x94\xd6\x09\x5b\xb6\x6c\x71\xe2\xd4\xb0\x41\x4d\x71\x5d\xe9\xac\x0a\xe2\xaa\x4d\xa2\xba\xb5\xc3\xc5\xc9\x76\x31\x62\xcc\x27\x2a\xa3\xa6\xe0\x0c\x11\x95\x00\xc8\xa9\xa9\x29\x7f\x43\xfa\xaf\xce\xcf\xcf\xe9\x82\xe2\xfc\x41\x60\x65\x27\xad\xe0\x5a\x4e\xda\x2f\xff\xf2\x2f\x8b\x58\x2c\xa6\x11\xd0\x94\x9a\xa8\x1c\xde\xfe\x41\xe1\x07\xc9\x59\xf3\xab\x42\x22\xe1\x70\x66\xa7\xc3\xc8\xf9\x9c\x1f\x00\xeb\x78\x4f\x86\x73\xcc\x27\x01\x91\xc4\xa2\xf1\xb9\xfe\xa3\xc5\x1f\xb4\x8f\xe8\xbf\x04\xc9\x4d\x8a\xa2\x68\x8f\x3c\xf2\x08\xfa\xfb\xfb\x57\x98\x0c\x02\x70\x59\x6f\x9a\xfb\xec\x9c\x2d\x66\x9f\x29\x96\x68\xcf\x69\xc3\x8e\x62\x62\xad\x9e\x10\xfc\xa1\x6a\xb0\xb7\xd2\xda\x97\xb5\xfd\x44\x14\xb3\xcf\xbd\x00\x11\xa9\xe1\x8a\x48\x85\x2b\xa2\x1d\x1b\x80\x15\xae\x88\xd6\x68\x45\xb4\x12\x91\xaa\x28\x8a\xf0\x9d\xd1\x2f\x00\x6b\x5f\x24\xe0\x1b\x35\xb6\x3f\xb7\x00\xa0\x35\x96\xd4\xee\x90\x49\x09\x66\x87\x63\xd6\x52\x72\x90\xcb\x34\x08\x98\x6e\xd0\x2f\x82\xac\x23\x96\xa4\x94\x8e\xd7\x84\xff\x87\x9b\x88\xf3\x8e\x94\x75\xe5\x6f\x6a\x6a\xc2\xaf\xfc\xca\xaf\x88\x78\x3c\xae\x81\xb9\xa9\x63\x44\xff\x72\xcf\xe9\xd2\xb7\xd4\x0a\xb6\x38\x04\x55\xfd\x4e\xa4\x6f\xd2\xb2\xe2\xf3\x34\x56\x5b\x30\x13\x14\x13\xed\x5d\x17\xf5\x7f\xd3\x73\xae\xfc\x9b\x24\xb9\x55\x08\x11\x79\xec\xb1\xc7\xfc\x38\x78\x43\x10\xbe\x41\xf9\x57\xd4\x91\x99\x65\x4b\x4b\x8b\xd3\x3f\x91\x90\x49\x49\x07\x17\xef\xa9\xd4\xe4\xf9\xef\xa7\x13\x45\x22\x66\x9f\x82\x2d\x6c\x22\x53\x99\xa0\x55\xf3\xad\x0f\x96\x14\x2c\x4d\xc1\xaa\x6d\xca\xf2\x07\x09\xd4\x71\x99\xb6\x8f\xe9\x16\xcc\xac\x35\x15\xd5\x6e\xc1\xd0\xe0\xce\x14\xc9\xe5\x5c\xb5\x53\xb4\xaa\x9b\x34\x00\x2c\xc4\x2b\x57\x98\xb9\x04\xc0\xc8\x64\x32\x4e\x83\xac\x36\x62\x81\x80\x11\xbb\x46\x7a\x90\x5e\x13\x38\xfa\x55\x55\x15\x8f\x3c\xf2\x08\xa2\xd1\xa8\xca\xcc\xc9\x96\xf1\xca\x67\x3b\x2e\xe9\xbf\x63\x4f\xe7\xad\x3a\x38\x15\xb0\xb9\xb0\x35\x92\xed\xa5\x2f\xb6\x0d\xc8\xce\x9a\xab\x6d\x50\x76\x57\xcd\x00\xad\x65\xac\xf2\x3f\x74\x5c\xd6\xbf\x4a\x40\x12\x80\xf6\xa5\x2f\x7d\xa9\x9e\xe8\xab\xcb\x8d\x5b\x5b\x5b\xfd\x83\xbe\x86\x38\x1d\xd7\x65\x7b\x1d\x51\x14\x34\x33\x57\x8b\xbf\x7d\x4f\x80\x33\x9f\xf1\xf3\xa1\x4c\xd4\x98\x77\xb8\x97\x0d\x4b\x96\x42\x66\x61\x29\x62\x4c\x6f\x04\x56\x4e\x33\x67\x8b\x21\x59\x72\xbe\x27\xe0\x5b\x1c\x17\x40\xd5\x52\x5b\x53\x09\xcf\xe7\x59\xd4\x86\xb2\xba\xc9\x95\x12\x8e\xa2\xef\xb3\x7f\xb9\x2e\xd3\x36\xfb\x32\x04\x97\x96\xa2\xc6\x24\xac\xa3\xc3\x65\x3a\x9d\x5e\xd1\x50\x9e\xb0\x9a\x31\xb3\x5e\xde\x7a\xb6\xb4\xba\x46\xbf\x1d\x3b\x76\x88\xb6\xb6\x36\xc1\xcc\xb1\x58\x56\xee\xe9\xbe\x50\xfe\x1d\x62\xb8\x1f\x90\x5f\xf1\x1d\x78\xf2\x88\x09\x57\x1f\xf1\xcc\xa0\x81\x9a\x42\x76\x53\xa8\xed\x57\xf5\xaf\x17\x1a\x95\x8b\x4b\xed\xca\xcf\x13\x89\x44\xf6\xde\x7b\xef\x75\xbe\x1d\xe4\xe5\x44\x35\xb8\xed\xdf\xbf\x1f\xbb\x76\xed\x12\x91\x48\x44\x78\x3f\xf6\xa0\xeb\xba\x4c\xa7\xd3\x38\x7a\xf4\xa8\xdb\x79\x86\x61\xc8\x52\xa9\x24\x2c\x29\xc3\xfa\xb5\xe6\xd2\xe9\xc1\xd9\xd8\x61\x67\x75\xae\x76\x01\xdb\xc6\x8d\xaa\x5f\x73\x63\x82\x9c\x6d\xd0\xaf\x38\xbe\xf6\xf6\xcf\x30\x09\xb9\x2b\xad\xc5\xa3\xad\xf9\xd0\xc0\xba\x60\x81\x71\xb5\xa5\x78\xdc\x24\x2e\x80\x61\x00\x40\x57\x57\x97\xb0\xf1\x74\xeb\x18\xa8\xdf\xf4\xf5\xf5\x01\x16\xfb\xd4\x1a\x4a\x96\xfe\x55\xdd\x09\x4c\x16\x1d\x3b\x1d\x63\x0f\x6a\xaf\xcb\x74\x59\x95\xd9\x62\x48\xa6\xed\x0f\x1e\xc8\x5c\x2e\x07\x04\x8c\x56\xac\x24\x88\xf5\xcc\x28\xbd\xdc\x29\x88\xa0\x02\x67\x67\xf7\xdd\x77\x1f\x60\xf9\xb4\xb5\x6f\x3a\x5f\xfe\xa7\xc2\x40\xbb\xa3\xb8\x56\x9d\x41\x3c\xfa\x96\x95\x52\x95\x0c\x76\x3c\x79\xa2\x5d\xc7\x5d\xb2\xf8\xba\xb5\xf5\x9e\x13\xdd\x17\xca\xff\x8b\x5a\x41\x37\x00\xcd\xde\xe6\xe7\xc5\xd5\xe5\xb0\xc3\xc3\xc3\xe2\xab\x5f\xfd\xaa\xd8\xb7\x6f\x9f\x1a\x8d\x46\x23\x2a\x44\x22\x6a\x28\xad\x51\x43\x69\xd7\xa4\x68\x0a\x6b\xe1\x44\x67\x67\xa7\xf6\xf4\xd3\x4f\x8b\xa7\x9f\x7e\xda\xad\x97\x3d\x60\x0d\x10\x15\xae\xb6\x94\x3e\x5c\x8c\x1a\x13\xde\x6f\x38\x51\x4d\x7f\xb1\xc3\x82\x40\x04\xcc\x27\x2a\x23\xd3\x0d\xd6\xcc\x8f\x88\xa4\x4d\xd0\x3a\x08\xd9\x93\xdd\xb9\x97\x33\x51\x63\x72\x3d\xb0\x72\x61\x73\xfe\xf8\xa6\xdc\x8b\xb0\xdd\xaa\x4b\xa5\x92\xf4\x70\x30\xb7\x8e\xfe\xce\xa8\x61\x71\xcc\xac\x25\xcb\x6a\xbb\x37\x83\xd7\x08\xe5\x3c\xb3\x67\x4b\x1a\x01\x28\x68\x32\x5d\x11\x5c\x80\xfd\x25\x0d\x7b\x04\xfb\x67\x75\x41\xa1\x2e\x07\x0a\xb8\x7a\x61\xad\x4a\x74\x7b\xf7\xee\x15\xa1\x50\x48\x10\x51\x2c\x39\x67\xdc\x1f\x5f\x34\x1f\xf5\xea\x15\x04\xfb\x3b\x44\xfe\xb3\x1a\x3c\xe7\xf4\xbb\x1c\xbc\xc6\x2e\xe3\xcd\xef\xb0\x3f\x42\x38\x2f\x87\x53\xd7\x2b\x87\xed\x13\x0a\xd5\x87\x1e\x7a\xc8\x3f\x63\x96\x8f\x3f\xfe\x38\xee\xbb\xef\x3e\xa1\x69\x5a\x44\x33\x45\xeb\xde\xc9\x86\xcf\x7f\xe1\x64\xfb\x37\xbe\xf2\x61\xe7\x8b\x5f\xf9\xb0\xf3\xe5\x5f\x3a\xd6\xf1\x83\xc7\x2e\x35\xff\x56\x5b\x5e\x1b\x00\x23\xd1\xd5\xd5\xa5\x7e\xf9\xcb\x5f\x16\x00\x60\x4f\x98\x0c\x00\xb9\x52\x48\x4e\xbc\xb9\x2d\xf3\xfd\x8a\x90\xba\x43\x10\xb5\x32\x91\xec\x6f\x20\x59\x27\x46\xbe\xd9\x9f\xf9\x0b\x29\xac\x63\x38\x99\xd9\xe5\x60\x00\xb2\x05\x4d\x5e\x7e\x79\x20\xfd\x47\xf9\x90\x99\x5d\x0d\x56\x51\x35\x73\xaf\xee\x58\xfc\xd3\xe5\xb0\x79\xd1\x76\x52\xd4\x3d\x9f\xb0\x71\xeb\x08\x04\x9c\x4d\xe1\x91\xcd\x82\x40\x6a\xb8\x42\x49\x67\xab\x7f\x75\xde\xc8\x70\xb7\x9a\x03\x9e\x7b\xeb\xc0\xde\xbc\x66\xa6\x41\xd6\x97\x35\xb0\x32\xac\x36\x0d\x5f\x8d\xf8\x56\x83\xe1\x17\x3d\x35\x70\x76\xef\xde\x0d\xdb\xd6\xd5\xd4\x32\x5e\xf9\x45\x92\xd0\x5c\xc5\xca\x6b\x6e\xb1\x47\x4f\xed\x64\x86\xbc\x8c\xcc\xe6\x60\xec\x8c\x2c\xfb\x07\x0f\x2c\x06\x31\x8b\x96\xf1\xca\x97\x48\x72\x8a\x88\xb4\x6d\xdb\xb6\x21\x12\x89\xb8\x38\x1d\x38\x70\x40\xf4\xf7\xf7\x0b\x02\xc5\x52\x79\x75\xe7\x17\x4f\xb4\x7f\xeb\x91\xcb\x4d\xdf\xee\x5e\xd2\x9e\x8d\x56\xc4\x70\xac\xa2\x0c\x35\x17\xd5\x47\xf6\x4c\xc5\xff\xf9\x2f\x1c\x6f\x7f\x61\xdf\x44\xc3\x7f\x01\x46\x53\x2c\x16\xd3\x7e\xed\xd7\x7e\x4d\xcc\xcd\xcd\x39\xbb\x7c\x0a\x00\xa6\xaf\xa6\x4a\x6f\xbc\x3c\xb8\xf8\x9d\x7c\xc8\xcc\x3a\x9a\xb1\x57\x4b\x66\x00\x39\xcd\xcc\xbc\x34\x98\xfe\xa3\xf1\xa6\xf2\xdb\xb0\x77\x73\x2d\x2f\x2f\xcb\x97\x5e\x7a\x09\x86\xb5\xa3\x36\x07\x60\x72\xb2\x51\x7f\xe3\xc7\xc3\x73\xff\xf6\x5a\x73\xe9\xbc\x41\x6c\x78\x7a\x16\x26\xb1\xbc\xde\xa8\x8f\xfc\xd5\x1d\xf3\xff\xf7\x68\xaa\xf4\x32\x08\x13\xb0\x3e\xcf\x63\x9c\x39\x73\xc6\xdf\xee\xae\x0e\xe6\x74\x90\x00\x20\x3b\x3b\x3b\x11\x0a\x85\xac\x29\xb1\xf5\xed\xec\x44\xed\x61\x4c\x41\xa1\xaa\x87\x58\x1c\xcc\xcc\x00\xd0\x99\xd9\x90\x52\xca\x86\x86\x06\xb1\xbc\xbc\x5c\xf3\x1e\xac\x14\xcf\xde\xb0\x16\x97\xf3\xdb\xc1\xfc\xf7\x0e\x0c\xd9\xde\xde\x2e\xe2\xf1\xb8\x00\xa0\x85\x4a\xdc\x1d\x5f\x34\x0f\xd4\xe0\xed\xb0\x24\xc7\x97\x0d\x0e\xe7\xb2\x6b\xe4\xde\x7b\xab\xeb\x8d\xf3\xcc\x36\xb9\x9a\x1e\x2e\xc8\xa1\xe8\x92\x1c\x28\x34\x2b\xb3\x9a\xa6\x95\x4a\xa5\x92\x01\x00\xdd\xdd\xdd\x62\xcf\x9e\x3d\x02\x40\xa4\xa1\xac\xf4\x3f\x7d\xa6\xf5\x1b\x4d\xc5\xd0\xdd\xfe\x76\x75\x4c\xda\x61\x93\xba\x0f\x8e\x34\xfe\x3e\xc0\xe2\xa3\x9e\xdc\x0f\x55\x55\xcd\xec\xdb\xb7\xcf\xb8\x72\xe5\x0a\x06\x07\x07\x75\x22\x4a\x83\x70\xf9\x62\x5b\xe1\xb9\x99\x86\xf2\xf8\xf0\x64\xe2\xb1\xcd\x8b\x91\x81\x98\xae\x24\x01\x60\x39\x6c\x66\x46\x53\xc5\xf3\xa7\xbb\xf2\xaf\x2e\x47\xcc\x93\x00\x46\x60\x39\x1f\xe8\x1f\x7f\xfc\x31\x46\x47\x47\xe5\xc9\x93\x27\xc5\xbe\x7d\xfb\x4a\x44\x34\x0f\x82\x98\x4f\x54\x8c\xff\xb8\x67\xee\x6a\x4b\x3e\xb4\xab\x2b\xab\xf5\x47\x2b\x4a\xa2\x18\x92\x85\xe9\x64\x79\x64\x3e\x5e\x39\x27\x05\x46\x60\x9d\xd3\x3f\x0f\xa0\x74\xee\xdc\x39\xd8\x13\xb9\x15\x76\xcb\x15\x2e\xd3\xb6\x1c\xb5\x66\x5e\x92\xb4\x90\x29\x62\x40\xad\x12\x5c\x2f\x38\xc9\x45\x55\x66\x61\xb9\xe1\xc2\x30\x0c\x78\x88\xcb\x7f\xf5\x2a\xe9\x22\x20\x4f\x50\xa8\x57\x26\xb0\xdc\xec\xec\xac\x84\x75\x88\x6e\x24\xb6\x64\xee\x11\x26\x9a\x5c\x6b\x9e\xa3\xb1\x7b\x94\x59\xf2\x10\x0f\xdb\x0e\x95\xd5\xe0\x69\x04\x67\xe6\xe3\x5c\x5d\xd1\x69\x13\x1c\x93\x96\x58\x34\xef\x29\x34\x2b\x1f\x01\xc8\x1d\x3a\x74\x48\xbe\xf1\xc6\x1b\x78\xf0\xc1\x07\x01\x6b\x60\x37\x1d\xb8\xda\xf8\x1b\x4d\x45\xb5\x96\xb8\x1c\x47\xce\x9a\x0a\x93\x76\xef\x58\xf2\x9f\x5d\x4b\x95\x4f\x2e\xc4\x2b\x27\xdb\xdb\xdb\x0b\xa7\x4e\x9d\x92\x89\x44\x42\xf6\xf4\xf4\x14\x00\x4c\x83\x20\x97\xa2\x66\xf6\xcd\xfe\xa5\x8b\xef\xc8\xa5\x76\xcd\x14\x09\x00\xd0\x55\x99\x35\x09\xf3\x20\x4c\xc2\x3a\xa2\x61\x1e\x40\x69\x7c\x7c\x5c\xda\xc7\x71\xe2\xf8\xf1\xe3\xe8\xe8\xe8\xa8\xc2\x02\x4a\x52\x20\x3d\xd7\x50\x19\x9d\x6b\xa8\x24\x6c\x7c\x1d\x2e\x97\x46\xf5\x1b\x50\x85\x4b\x97\x2e\xc9\xb7\xdf\x7e\xdb\x2f\x3d\xdc\x7e\x0c\x74\x99\x76\xbe\x8b\x48\x0c\x55\x91\xd0\xbc\x22\xc2\xdb\x08\xd5\x46\xad\x3e\x33\x00\x5d\xe5\x9c\x47\xbe\xc3\x07\xdf\xcf\x75\xbc\x69\x7e\xee\xe6\x47\x18\xab\xdc\x7b\x83\x0b\xdf\x3e\x7a\x48\x00\x88\x44\xb3\x72\x17\xe0\xd0\x48\xb5\x46\xec\x2c\x81\x38\x2a\x87\x47\x6c\xd6\xcc\x1a\x6b\x38\x35\xb9\x4a\xaf\xf7\x23\xb7\xde\x03\x46\x22\xcb\xe6\x4e\x30\x22\x0c\x16\x9d\x9d\x9d\x00\x20\x1b\x1b\x1b\x55\x66\x8e\x34\x96\xd4\xbe\xed\xf3\xd1\x67\x6b\xbe\x90\x4b\xfe\x77\x54\x43\xd8\x10\x9d\xbb\xa7\xe2\xbf\x70\x64\x5b\x66\x94\xc1\xa5\x81\x81\x01\xf9\xe2\x8b\x2f\xe2\xc9\x27\x9f\x34\x7a\x7b\x7b\x73\xb0\x36\x6e\x64\x01\x4c\x1a\x02\x09\x43\x98\x9a\x55\x57\x2a\x31\x73\x8e\x40\x59\xe7\xbb\x98\x33\x33\x33\xf2\x85\x17\x5e\x70\xdb\xd9\x34\x4d\xf9\xe2\x8b\x2f\x8a\x07\x1f\x7c\x50\x0e\x0e\x0e\x96\xec\x1d\x48\x39\x58\xc4\xa6\x39\xf9\x88\x48\xb7\x4f\xbb\x2e\x49\x29\x8d\x2b\x57\xae\xc8\xd7\x5e\x7b\xcd\xdf\x4f\x35\xfd\xbb\x62\xa9\xa8\xab\xab\x4b\xd8\x07\x5e\x08\x62\x21\x08\x24\xd8\x6e\x7d\xe7\x0b\x69\x6b\xb9\x4c\x4b\x62\x67\x13\x41\x3d\xc5\x3c\x48\x87\x0a\x7a\x0e\xb2\x99\xf9\xd3\xea\x4d\x0c\x04\x00\xf4\xf4\xf4\xc0\xfe\xcc\x5e\x24\x54\x92\xdd\xae\xc9\xc5\x26\x0e\xc7\x9e\x5a\x6b\x7e\x80\xfd\x75\x33\x67\x71\x9f\x3d\xd4\xe7\x99\x4c\x39\x0c\xcd\x53\xde\x55\xdf\x08\xd0\x4a\xdc\x09\x70\x84\x88\x44\x63\x63\x23\x9e\x7d\xf6\x59\xc7\xb0\x19\xd9\xb4\x14\xbe\x57\x95\x94\x74\xbf\x6a\x6b\x41\xb6\xcc\x40\x1e\xa2\x73\xd7\x7f\x89\xd0\x9b\x09\x1f\x14\x8c\x6f\x48\x41\x99\x8e\x8e\x0e\xc3\x34\x4d\xf9\xc2\x0b\x2f\xe0\xc0\x81\x03\xd8\xbd\x7b\xb7\xf3\x7d\xa6\x2c\xac\x43\x4b\x54\x7b\xc7\xb6\xf3\x85\x39\xc3\x34\x4d\xe3\xf4\xe9\xd3\xf0\x7c\x72\xd9\x6d\x3b\xd3\x34\xe5\x91\x23\x47\x70\xe4\xc8\x11\xf9\xe9\x4f\x7f\x5a\x76\x77\x77\x3b\x9b\x43\x1c\x7a\x70\x8e\x22\x90\x99\x4c\x46\x7e\xf0\xc1\x07\x18\x1d\x1d\x5d\x73\xe0\xaf\xb0\xc0\x3a\x22\xd2\x32\x3b\x40\x10\xdb\x5f\x6b\xf0\x8c\xe2\xb5\x5c\xa6\x25\x59\x36\x16\x8f\x1d\x25\x88\x18\xea\xe9\x4e\x7e\x9b\x51\x90\xb1\xb2\x9e\x91\xd5\xcf\xfd\x2c\x8c\xac\x63\x8c\x54\x61\x22\x51\x55\xe2\x9d\x59\x9f\x73\x9c\x54\x6d\x3b\xb8\x42\xca\xa6\x1c\x57\xa4\x7a\x8a\xfa\xf6\x17\xdb\xf7\xec\x0e\x38\x61\x72\x0c\x0c\x8d\xc1\x02\x70\xd7\x77\x05\x80\x48\x5c\x57\x7a\xad\x59\x99\xfb\x92\x1a\xa0\x55\x33\x41\xf5\x1d\xd1\x8a\x68\x57\x25\x25\xcb\x24\x55\x4d\xd3\x84\xa2\x28\x30\x4d\x53\xbe\xf3\xce\x3b\xb8\x72\xe5\x0a\xfa\xfb\xfb\x8d\xad\x5b\xb7\x1a\xb6\x1f\x9f\xdb\x9e\xc5\x62\x11\x23\x23\x23\x38\x7d\xfa\x34\x96\x96\x96\xea\x0d\x50\xb7\xfd\x7e\xf6\xb3\x9f\x81\x99\x8d\xa1\xa1\xa1\x1a\xf7\xeb\x99\x99\x19\xd8\x1f\x9d\xf7\x96\x5f\x15\x56\xd0\x17\x6f\xbd\x05\x6c\xab\xb1\xdd\x08\xde\x4d\xb5\xde\x4f\x9f\xd9\x76\x20\x4f\xb7\x48\xab\xad\xea\x2a\x6d\xf5\x88\x0b\x75\xe2\xd7\x3b\x21\xa8\x67\x21\x17\x00\x04\x0b\x48\x2f\xa7\x72\xef\x9d\x49\x21\x5c\x1e\xe2\x95\x56\x1e\xf1\xe7\x57\xe6\xdd\x42\xd5\x5d\x54\x5e\xae\x46\x2e\xce\x8e\x01\xd5\x51\x3f\x54\x69\x67\xae\x3d\x24\xb9\xaa\xf0\x55\x49\xae\xea\x2d\x6c\x0a\x18\x92\xe0\x9c\x9d\x8f\xbe\xbe\x3e\x5c\xbd\x7a\x55\x00\x56\xe7\xcf\xcc\xcc\xc8\x77\xdf\x7d\x57\x00\x30\xfa\xfa\xfa\x84\x94\x12\xf6\xf1\x01\x41\x6d\xea\x6d\x9b\x9a\x7e\x77\x18\xc3\xd9\xb3\x67\x71\xf6\xec\xd9\x7a\x7d\x11\x14\x56\xc0\x0a\xf4\xa6\xf0\x9c\x3c\x2c\x99\x58\x5a\xa3\x9e\xdc\x1e\x59\xa1\x24\xfb\x66\x98\x82\xc9\xcf\x19\x57\x13\x89\xeb\xb1\xf0\x6f\x34\x6e\x85\xde\x46\x44\x30\x43\x94\x73\xd7\xeb\x9d\x2f\xbc\xb9\x8a\xba\xc7\x81\xb2\x46\xaf\x74\x06\x10\x50\x3b\xa0\xe0\x31\x8e\x01\x8e\x18\xa9\xc2\x24\x18\x9a\xc8\x81\x20\x7d\xc4\x05\x66\x96\x33\x0d\xfa\x35\xb6\xec\x44\xa2\xca\x4d\x1d\xdd\xae\xfa\x7e\xa7\x65\x99\x19\xf3\x71\x7d\xcc\x10\x55\xe9\x60\x7f\xe5\x24\xb0\x3d\xc6\xc6\xc6\xbc\x6d\xb3\x1e\x23\x77\x5d\x58\xed\xed\xed\xce\x64\x69\xc3\xb0\xbc\x4b\x45\x02\x00\xba\xba\xba\x60\xbb\x70\x80\x89\xa4\x24\x48\xe2\xda\x75\x46\xc0\xf3\xc1\x4c\x38\x42\xb3\x4a\x64\x8a\x24\x15\x96\xa1\xd6\xfb\xd2\xf5\x50\x7e\x3d\xe5\x7f\x2d\xc5\x7f\x2d\xf1\x29\x99\xd9\x28\xc7\xc5\x24\xdc\xfe\x77\x78\x46\x2d\xb7\xaa\xea\xda\xb5\x03\xca\xed\x77\x47\xf9\x67\x8b\xa3\xb1\xad\x2f\x79\xf9\x90\xf3\x8e\x72\x8c\xa6\x19\x30\x60\x4d\x78\x5c\x5c\x88\x48\x9f\x4e\x96\x47\x32\x51\x63\x22\x55\x0c\xf5\x55\x5d\x83\x3c\xb0\x7c\xcc\x9f\x09\xd2\x3e\x82\xa9\x00\xb6\xbe\x2b\xae\x28\x8a\x30\x4d\x53\x02\x10\xa1\x50\x08\x7b\xf6\xec\x41\x67\x67\x27\xda\xda\xda\xdc\x76\xd1\x75\x1d\x53\x53\x53\x18\x1d\x1d\x15\x63\x63\x63\xee\x1a\x66\x40\x7b\x3b\x8a\xbc\xd8\xb3\x67\x0f\x76\xef\xde\x8d\x78\x3c\x0e\x45\x51\x9c\x7e\x14\xcc\x2c\x97\x96\x96\x70\xea\xd4\x29\x71\xe1\xc2\x85\x35\x61\x01\xb5\xfe\x60\x35\x66\x0a\x22\x82\x24\x48\x49\x30\xfc\xd3\x66\x78\x3a\xa0\x3a\xea\xab\x39\xc2\xd6\x14\xd9\x51\x68\xdd\x86\xf5\x83\x08\x48\x0b\x1a\x09\xeb\x11\xa1\x75\xb9\xe0\xf2\xf2\xb2\x48\x24\x12\x20\x22\x3d\xdf\xa4\x5c\x60\x82\x24\x69\x97\xa5\x5a\xa9\x0f\xf2\x78\x11\x38\x83\x8a\x2d\xeb\xb5\xbb\xd1\xc5\x99\x25\x7a\xb8\x1d\x3b\x13\x1e\x87\xad\xd9\x44\x97\x6f\x56\xce\xc3\x5a\x92\x31\x72\xb9\x1c\xfe\xec\xcf\xfe\x4c\xfe\xfa\xaf\xff\xba\x04\x50\x30\x05\x66\xdf\xd9\xba\xf4\xa3\xc3\xe7\x5a\xfe\x1b\x95\x2d\x5d\xb8\x46\xa3\xf0\x70\x5a\x26\x60\xac\xb9\x7c\xfa\x72\x6b\xf1\x7d\xfb\x7b\x45\xc6\xfc\xfc\x3c\x6c\xe2\xc2\xbe\x7d\xfb\xb0\x7b\xf7\x6e\x44\xa3\x51\x87\x61\xa8\x60\xab\x93\x23\x91\x88\x4c\x26\x93\xc6\xe0\xe0\xa0\xcc\x66\xb3\xf2\xad\xb7\xde\x12\x13\x13\x13\x41\xed\x2d\x9d\x4f\xd8\x38\x7b\x31\x88\xa1\x85\x2b\x22\x12\x32\x49\xab\x28\xac\x97\x54\x59\x68\x6e\x6e\x36\x1e\x7e\xf8\x61\x7d\xef\xde\xbd\xf2\xf5\xd7\x5f\x17\xb6\xbb\xf8\x0a\x58\xce\xd5\xbf\xd8\x5d\x93\xc9\x14\x6c\xe8\x8a\x2c\x00\x8a\xc5\xb1\x5c\x0d\xd9\x1e\xfd\xae\xc2\xec\xd1\x5e\x88\x10\xd5\x45\x12\xb5\x1c\xac\x9e\x12\xe8\x0d\xf5\xb8\xd2\x6a\xc4\x17\x54\xae\x86\xdb\x2d\x2e\x2e\xa2\xb3\xb3\xd3\x20\xa2\x52\x29\x21\xc6\xca\x51\x9a\x8c\x14\xb8\xc7\x6b\x3c\xad\x9a\xc3\xa8\xa6\x93\x5d\x71\xe7\x8a\x4f\x9f\x49\xc1\x11\x8b\x4e\x7b\x38\x03\x8d\x00\x33\x84\x6c\xbe\x59\x39\xe7\xf8\xc3\x39\x1b\x2c\xf2\xf9\xbc\x8c\xc5\x62\x25\x22\x9a\xbf\xd2\x5a\x7c\xe3\xfd\x2d\x4b\x7d\xf7\x8d\x36\x7e\x56\x65\xa8\xec\x8a\xdf\x5a\xed\x7e\x2e\x51\x19\x7b\x75\x20\xfd\x2d\x53\xb1\x8e\x54\x62\x66\xc3\x3e\x7a\x01\x8f\x3e\xfa\xa8\xb0\xb7\xab\x69\xaa\x49\x89\xcd\xe9\xc8\x9e\xbe\x4c\xf8\x40\xa2\xac\x6e\x32\x05\xeb\x0b\xb1\xca\xb9\x91\x96\xe2\x5b\x73\x89\xca\x44\x32\x99\x2c\x3d\xf5\xd4\x53\xfa\x87\x1f\x7e\x28\x7c\xca\xba\xec\xeb\xeb\x13\x8f\x3d\xf6\x18\x54\x55\xd5\x48\x22\xb1\x6d\x21\xba\x6f\xcf\x54\xfc\x17\x5b\xf3\xda\xdd\x21\x93\x9a\x2a\x8a\xcc\xcc\x34\x54\xde\x3b\xdd\x95\xfb\xde\x68\xaa\x74\x32\x99\x4c\x16\x9e\x7a\xea\x29\xfd\xe3\x8f\x3f\x5e\x01\xcb\x7b\x1f\xe4\x32\x2d\x6d\xf1\x27\x19\x6c\x94\x55\x99\x73\x08\x85\xa9\x3a\x87\x84\x23\x22\xdc\x0e\x61\xf7\x7f\x5c\x57\x9a\x80\xaa\x32\xea\xe9\x74\x51\xe7\xde\x4f\x18\xf5\xd2\xbc\x21\x68\x86\xb9\x02\xd6\x5b\x6f\xbd\x25\x87\x86\x86\x24\x33\x97\x20\x90\xce\x74\x87\xde\xe9\xb8\xac\x3f\xeb\x11\x8e\x2e\x17\x5a\x31\x29\xf1\xda\xf7\x6a\x27\xca\xb6\xea\x56\x9d\x81\xda\xf4\x06\xdb\xa8\x81\x6c\x5b\xe8\x23\x43\xa3\x69\xdb\x65\xc9\x71\xb8\xc4\xa9\x53\xa7\x70\xdf\x7d\xf7\xe9\xcc\x9c\x06\xd1\xc8\x87\xbd\xcb\x7f\x9e\x8e\x19\xe9\xfb\x47\x93\x9f\x4a\x15\x42\x9d\x82\x21\x9c\x25\x9e\xa2\x6a\x16\xce\xb7\x17\x8e\x7e\xb0\x39\xfb\xe3\xa2\x26\x8f\xdb\x67\xaa\x15\x72\xb9\x9c\x3c\x77\xee\x9c\x7c\xec\xb1\xc7\x44\x7f\x7f\xbf\x60\xe6\x58\xe7\x72\x78\xe8\xd1\x4b\xcd\xbf\xdd\x96\x0b\x3d\x4e\x40\xc4\x19\xfd\x3b\x10\xc5\xdd\xe3\x0d\xf3\x17\xda\x0b\xff\xfe\xad\xfe\xa5\x6f\x16\x55\x73\xfe\x9e\x7b\xee\x29\x31\x33\xec\x4d\x1f\x12\x00\x9e\x78\xe2\x09\x08\x21\x22\x21\x83\x5a\x1f\xbd\xd4\xfc\x9b\x03\x73\xb1\x5f\x17\x8c\x98\xe3\xc0\xa0\x99\xd4\xd7\xbf\xa0\x0c\x6f\x49\x47\xbe\x7c\xae\x23\xff\x6f\xdf\xd8\x96\xf9\x43\x56\xd5\xf9\x7b\xee\xb9\xa7\xb4\xb0\xb0\x20\xc6\xc7\xc7\xbd\xcc\x20\x50\x44\x02\x00\xda\xda\xda\xaa\x9d\x44\x64\x94\x42\x32\xeb\x9c\x3e\xcc\xb6\x42\x1c\xe4\x32\x6d\x35\xad\xc5\xd1\x12\xba\xd2\x4a\x0c\x8d\x09\xc2\x5e\x76\xaa\x11\xc3\x01\x04\x53\x2f\x3d\x48\xaf\x0a\x22\xd0\xba\x1c\x0c\x96\x1e\x22\x43\xa1\x50\x89\x81\xf4\x42\x4f\xe8\xd5\x96\xf1\xca\xe3\x6a\x89\x53\x0e\xc2\xcc\xe4\x31\xbe\xd8\xc6\x53\x38\xca\xb5\x45\x38\xe4\xfa\x87\x79\xc5\xaa\x87\xa3\xbb\x17\x82\x54\x50\x9a\xdb\xa2\xbd\x00\xa2\x34\x98\x0b\x52\x4a\xe3\xda\xb5\x6b\x2e\x81\x6d\xdd\xba\x55\xb6\xb7\xb7\x17\x98\x79\x92\x88\xe4\xe5\x96\x42\xe1\x5a\x73\xe9\x44\x5b\x2e\x34\xd8\x52\x08\x75\xab\x26\x69\xb9\xb0\x99\x99\x4e\xea\x17\x72\x9a\x39\x02\xeb\x34\xc8\x09\x58\xd6\x73\xe3\xe8\xd1\xa3\xb8\xef\xbe\xfb\xc4\xb6\x6d\xdb\x04\x80\x44\x47\x56\xdb\xf3\xcc\xe9\xd6\x3f\x8e\x55\x94\xfe\x1a\x57\x6f\x58\x38\x86\x24\xb5\xee\x9e\x8e\xff\xaf\x4d\x45\x75\xe7\xf3\xbb\x17\xbe\x5e\x0a\xc9\xc9\xbb\xee\xba\xab\x34\x31\x31\x21\x72\xb9\x1c\x3e\xf7\xb9\xcf\x41\x51\x14\x8d\x24\x52\x8f\x5c\x6e\xfa\xad\x9d\xb3\xb1\xff\xae\xaa\x57\xc3\x86\x62\xfd\x57\x18\xb1\xdd\xd3\xf1\xff\x51\x91\x94\x78\x79\x30\xfd\xbb\x52\x60\xfe\xe0\xc1\x83\xfa\xf7\xbe\xf7\x3d\x6f\x3f\xb9\x7d\xe1\xec\x2a\x22\x3b\x81\x0b\x85\x02\xdf\x79\xe7\x9d\x50\x14\x25\x04\x20\xd9\x9d\xd5\xee\xef\x5c\x0e\x0f\x56\x07\x33\xa1\x76\x86\x45\x20\xfb\x1c\x56\xb7\x95\x09\xf2\x74\x57\xee\x3f\x1a\x82\xe7\x85\x10\xa5\x89\x89\x09\xe4\xf3\xf9\x2a\x9e\xc1\x57\x0a\x88\x67\x0f\x21\xfa\xd3\x82\xca\xfb\xe3\x18\x00\x35\x36\x36\xa2\xb5\xb5\x95\x01\x28\x52\x25\x01\x50\x53\xc3\x82\xb9\xc7\x69\x34\xf2\xe6\x76\xb9\x5a\xd5\x48\xe0\x28\x6b\xae\xc4\x27\x76\x45\xa1\x57\xc9\x77\x8a\x2f\xf4\x86\x7e\x9e\xee\x09\x3d\xc7\xf6\x77\xb5\xe7\xe6\xe6\x4c\xfb\xb0\x17\x06\xc0\x13\x13\x13\xb4\x79\xf3\x66\x19\x89\x44\x2a\xcc\x5c\x24\xa2\xac\x49\x9c\xce\x45\xe4\xf8\x6c\x43\xe5\xdc\x54\x43\xf9\x44\x3a\x56\x39\xae\x2b\xf2\x02\x11\x5d\x65\xe6\x49\x00\x8b\x00\xca\xef\xbe\xfb\xae\xbc\x76\xed\x1a\x0e\x1d\x3a\x04\x55\x55\xc3\x21\x83\x3a\x3e\x7d\xb6\xe5\xf7\x9a\x4a\xea\x5d\xb5\xba\xb0\x73\xd2\x37\x5c\x1d\xb9\xa1\xac\xec\x0a\x99\x64\x8c\xa6\x4a\xc7\x84\x22\x2a\xed\xed\xed\x66\x32\x99\x74\xce\x1f\x49\x6c\x49\x47\x0e\x3d\x38\xda\xf4\x2f\x09\x08\xad\x01\x8b\x5a\xf2\xa1\x3b\x33\x31\xe3\xfc\x5c\x5c\xbf\xaa\x69\x5a\x45\x55\x55\xb6\x77\xed\xb3\xa7\xdf\x6a\x44\x58\x4d\xb0\x97\x7a\x8c\x6c\xd8\x9c\x76\xa6\xcf\x8e\x5b\x8e\x6d\x84\x75\xaf\x4e\x27\x39\xdb\xda\xc2\x86\x68\x4a\xe8\x4a\xca\x16\x91\xc2\xde\xa0\x1a\xf4\x43\x9d\x78\x3f\x47\x5a\x2b\xaf\x5f\x4f\xab\x29\x7f\xfa\xf4\x69\x48\x29\x25\x11\xe5\x40\x34\x3d\xbf\x39\xf4\x5c\xb6\x4d\x39\xe9\x7a\x6a\x56\x19\x90\xa3\x4d\xb9\x0d\xeb\x35\x9a\x91\xdd\x76\x8e\xd9\xc0\x1e\x6e\x36\x71\x59\xf7\xc5\xa4\x18\x9d\xde\x11\xfe\x4b\x10\x4d\x38\x0a\xf9\x07\x1f\x7c\xe0\xc5\x49\xe4\xf3\x79\xf9\x93\x9f\xfc\x04\xe9\x74\xda\x20\x6b\xd7\xd5\x2c\x11\x5d\x06\x70\x12\xc0\x47\x44\x74\x94\x88\x4e\x12\xd1\x79\x00\x63\x44\x94\x36\x0c\xa3\xf4\xee\xbb\xef\xca\xd3\xa7\x4f\xcb\xc1\xc1\x41\x84\xc3\x61\x01\x20\xb6\x65\x31\xf2\x70\x5b\x4e\x3b\xe8\x9e\xee\xed\x98\x29\x1d\xcc\x6a\x0c\x7f\x84\xdd\xd3\xf1\xaf\x26\x4b\x4a\x3f\x00\xad\xb5\xb5\x55\xec\xd9\xb3\x07\x64\x1d\xec\xdc\x34\x3c\x99\xf8\x65\xc1\x88\xad\x07\x16\x31\x69\xfb\xc6\x1b\xfe\x91\xc2\x94\x02\xa0\xda\xc7\x0d\xac\xd0\xc5\xfc\x22\x07\x00\xb0\xb4\xb4\xe4\x98\x2a\xf4\xe5\x88\x31\xeb\xb8\xeb\x10\x55\x1b\xb3\xae\xcb\x34\x00\xc1\xd0\x9a\x0b\xa1\x3e\xdb\xef\x1b\xf7\xde\x7b\xaf\xf0\xbc\x23\xd0\x08\xea\xb9\xf7\x5f\x83\xf4\xb5\xa0\x32\xfe\x74\x17\xfe\xc2\xc2\x82\x63\x33\x2a\x01\x98\x97\x02\x23\xe3\x7b\x22\xdf\x2e\x26\xc5\x28\x7b\x2c\xe7\xae\xd4\xb3\x95\x77\x47\x89\x77\xc9\x8d\xa8\xc6\xce\xe5\x98\x15\x1c\xe5\xbe\x1c\xa3\xf9\x6b\x77\x46\xbe\x69\x6a\x74\x9e\x99\x67\x01\x94\xa6\xa6\xa6\xa4\xbd\xa3\xaa\xa6\xce\xc5\x62\x51\xfe\xe8\x47\x3f\xc2\x5b\x6f\xbd\x25\xb3\xd9\x6c\xc9\x5e\xfb\x4b\xdb\xe5\x9c\x5f\xa6\x52\xa9\x14\xce\x9f\x3f\x6f\x7c\xfb\xdb\xdf\x76\x0e\x4a\x16\xf6\xf2\x97\x0a\x46\x62\x73\x3a\xf2\x09\x01\xeb\x13\x31\xd5\xdd\xf6\x70\xdd\x9c\x9d\x3e\x83\x85\x32\x54\x49\xa9\xde\x4c\xe4\x00\x11\x39\x87\xcf\x09\x66\xd6\xc2\x26\xb5\x76\x2e\x6b\xfb\xc8\x53\xa7\xb5\x60\xa5\x0a\xa1\xbd\xc9\x92\xda\x4d\x44\x11\x5b\x15\xf2\xf7\xeb\x8a\x59\x24\x00\x20\x93\xc9\xa0\xb5\xb5\x55\x02\x30\x32\x51\x63\x4a\x12\x74\x85\xad\x45\x6f\x47\xd1\x5f\x19\x6a\x63\xdb\x72\xa1\x1d\x97\xdb\x48\x03\xac\x33\x2e\xfc\xef\xb0\x43\xbd\x99\xe1\x6a\x33\xc4\xf5\xa4\xc3\x9f\xfe\xde\x7b\xef\x89\xde\xde\x5e\x43\xd3\xb4\x1c\x11\x4d\x18\x61\x3a\x7e\x75\x5f\xf4\xdf\x6d\x3e\x59\xfa\x5a\x3c\x6d\x6e\xf7\x32\x2b\xab\x36\xa8\x31\xbf\x54\x2d\xf5\x55\x9d\xcb\xdd\xd1\x4e\x40\x31\x21\x26\xaf\xed\x8d\xfc\xbf\xe5\xb8\x38\x0a\x8b\xeb\x64\x2b\x95\x8a\x1e\xf0\x3d\x71\x17\x4f\x29\xa5\x3c\x7b\xf6\x2c\x2e\x5c\xb8\x20\x4c\xd3\x34\xee\xbc\xf3\x4e\xd1\xd1\xd1\x01\x00\x28\x16\x8b\x98\x9e\x9e\xc6\xd8\xd8\x18\xca\xe5\x72\x4d\x1d\x9b\x9a\x9a\x84\xcd\x75\x62\xc9\x92\xda\xe7\x62\xec\x7a\x78\x78\xbc\x40\x56\xd8\x3e\x80\x64\x49\xd9\x06\xeb\xbb\xe0\xc2\x5e\x5f\xd4\xc2\x15\x91\x0a\x99\xd4\xb4\x11\x58\x0a\x23\x96\x28\x2b\x3d\x99\x98\x71\x16\xc1\x93\x30\xf8\xdd\x75\x00\x00\xa6\x69\x02\xb6\x41\x30\x1b\x31\x67\xcb\xaa\xcc\xc5\x2a\xc2\x73\x26\x3e\xbc\xd6\x8a\x5a\x4e\x66\xc7\x77\x2e\x87\x87\x88\x11\x63\x82\x1a\x8b\xc5\xf4\x50\x28\x24\x2a\x95\xca\x6a\xb6\x30\xf8\xf0\x08\x52\xec\xfd\x69\xfe\x99\x63\x50\x39\xc0\x16\x4b\xaf\xbe\xfa\xaa\x78\xea\xa9\xa7\x74\xfb\xac\x8c\xd1\x4a\x54\x60\x64\x7f\xb4\xd0\x79\xa9\xfc\x85\x96\xf1\xca\x01\x61\x42\x73\xeb\xe5\x31\x41\x78\x97\x81\x6a\xbc\x48\x40\x90\x02\x46\xa6\x4b\x3d\x3e\x39\x18\xfe\xf3\x8a\x46\x27\x01\x5c\x26\x60\x9e\x99\xf5\xf7\xdf\x7f\x3f\xa8\x5e\x2b\x9e\xed\xf6\x76\x66\x75\xf5\x26\x2f\x16\x47\x50\x55\x11\x8b\xc5\x60\x6f\x8a\xd6\x24\x71\xb5\x63\x99\x6c\x9f\x79\xb8\xfa\x21\xc1\x63\xa7\xb3\xf9\xb4\x24\x08\x00\x1a\x33\x3b\x9f\x9b\x11\xba\xca\x30\x04\x97\x42\x12\x89\xf5\xc2\x32\x84\x2c\xe5\xc3\x66\x09\xb0\x4d\x2c\x01\x7d\x19\xb4\xdd\x08\xd7\xaf\x5f\xc7\xe0\xe0\xa0\x64\x66\xbd\xa2\xc8\x4c\x2e\x6c\xce\xc7\x2a\x4a\x0a\x70\x69\xca\x33\x4b\xb1\x42\xad\x86\x4d\x48\x15\xd4\xed\x61\x43\x34\x95\x42\x52\x8d\xc7\xe3\xa2\x52\xa9\x38\xde\xad\xab\x59\xf4\x57\xe3\x56\x41\x65\x82\x66\x95\x75\x0d\x7f\xe3\xe3\xe3\xf2\xe4\xc9\x93\xb8\xe3\x8e\x3b\x4a\xb0\x88\x40\x9a\x0a\xf4\xc9\x9d\xe1\x6c\xa6\x2b\x74\xb2\xed\xaa\xfe\x48\x72\xce\xd8\x29\x4c\x68\x8e\x8e\xe9\x2c\x29\x79\x9d\x58\x89\x00\x16\x30\x96\x53\xca\xc8\xdc\x56\xed\xf5\xe5\x16\xe5\x7d\xb6\x3e\x43\x38\x06\xfb\xa3\xf5\x1f\x7f\xfc\xb1\xf4\xac\xe3\xad\xc6\x65\xd7\xaa\x77\xcd\x60\xb2\x3d\x59\xdd\x41\x95\x89\x1a\xd3\xbc\x68\x3d\xf8\xdd\x90\xdc\xc5\x78\x97\x11\x30\x18\x90\x33\x0d\xfa\x55\xf6\xad\x2e\xe8\x8a\x2c\x2c\xc6\x8c\xc9\x68\x56\x69\xe5\x75\xc2\x5a\x88\x57\x46\x32\x51\x23\x6d\x6f\x20\x09\xac\x8f\x5f\x44\x0a\x00\x72\x61\x61\xc1\x06\x46\x86\x09\xe4\xe6\xe2\x95\xd1\xb6\x65\x6d\xa0\x6a\xe7\xa9\x99\xd4\xbb\x2f\x84\x3b\x46\x80\x98\xae\xb4\xb7\xe4\xd5\xfe\xeb\x4d\xfa\x65\x66\x2e\xec\xd9\xb3\x47\xf8\x3e\xb6\x10\x14\x56\x33\xc0\xae\x46\x98\xde\x4a\xad\x96\x5f\xbc\xf7\xde\x7b\x12\x80\x4b\x64\xf6\xc6\x94\x5c\xbe\x51\xcc\x16\xf6\x46\x4e\x69\x45\xde\xd6\x30\x67\x0c\x25\xd2\x66\x7f\x24\x27\xdb\xd5\x0a\x47\xc0\x50\x41\x90\xa6\x4a\xa5\x72\x5c\xcc\xe7\x52\xca\xe8\x72\xab\x72\xb6\x14\x17\x97\x98\x30\x41\x44\x13\x60\x9e\x25\xa2\x2c\x33\x97\x8e\x1d\x3b\x26\x8f\x1d\x3b\x56\x17\x07\x0f\xbe\xeb\x31\xc9\xac\x68\x9b\xc5\xc5\x45\x34\x37\x37\x1b\xcc\xac\x8f\xb4\x14\x3f\xbe\x63\x2a\xf1\x39\x85\xa1\xfa\x0d\x14\xae\x01\xdc\x36\x14\x13\x80\x4c\xd4\x98\x1c\x6f\x2e\x9d\x85\xbd\xe9\xc3\xf9\x1a\x88\x09\xce\x9d\xed\xcc\x1f\xe9\xcc\x6a\x7b\x04\x20\xd6\x82\x05\x00\x67\x3a\xf3\x47\x24\x38\x0b\xcb\x4d\xc8\x8f\x2b\x80\x3a\x47\x68\x2e\x2e\x2e\x4a\x00\x60\x66\x1d\x40\x61\x2a\x59\xbe\x38\x34\x13\x7b\xd2\xd2\xc1\x6c\x9d\x24\x68\xf9\xc8\x99\x4b\x31\x43\x80\xb4\xde\x4c\xe4\x9e\xeb\x8d\xfa\x11\x22\x12\xbd\xbd\xbd\x38\x7d\xfa\xf4\x5a\x86\x53\x3f\x82\xfe\xc6\x15\x1b\x8c\xf3\xc3\x01\x6c\x22\x5b\x58\x58\xc0\x43\x0f\x3d\x54\x52\x14\xc5\x80\xd5\xd8\x69\x66\x9e\x2c\x47\x69\xa4\xdc\x17\x3a\x36\xdf\x17\x4a\x12\x90\x10\x26\x62\x24\xa1\xb2\x80\x21\x15\x94\x18\xc8\xd9\x84\x94\x26\xa2\x79\x30\x67\x98\x39\x03\xa0\x54\xa9\x54\xf4\x93\x27\x4f\xc2\x43\x5c\x41\x75\xa8\x57\xff\x7a\xf8\xaf\xc8\x9b\xcd\x66\xd1\xdc\xdc\x2c\x01\xe4\x26\x9a\xca\x27\x47\x53\xa5\xe3\xfd\x0b\x91\xbb\xc9\xb6\x55\x56\x0d\xc7\x70\x57\x57\xd8\xd2\x9f\xe5\x87\x7d\xd9\xe7\x4d\x81\x59\xb0\xb5\x67\xc2\xde\xd3\x68\x00\xc8\x9c\x6f\x2f\xbc\xb1\x6d\x3e\x7a\x70\x4b\x3a\xb2\x77\x55\x58\x60\x8c\x37\x95\x4f\x9f\x6f\x2f\xbc\x46\x44\x19\x66\xd6\xed\x23\x51\x57\xd4\x51\x41\x6d\x70\x6c\x18\xe8\xeb\xeb\xa3\x58\x2c\xa6\xd8\xb3\x8d\xd4\xd0\x74\xe2\x31\x01\x52\x9c\x69\x79\x8d\x01\xca\x56\xfc\x1d\x33\x85\x63\xbe\x50\x24\xe1\x6c\x57\xfe\xaf\x41\xc8\xc6\x62\xb1\x8a\xbd\xa4\x40\x9e\xf7\x78\x7f\xf0\x5d\xeb\xa5\x7b\x7f\x4e\x85\xd6\x53\xbe\x06\x56\x3a\x9d\xe6\x8f\x3f\xfe\x98\x7b\x7a\x7a\xb8\xa1\xa1\xa1\x02\x6b\x86\xb9\x6c\xef\x92\x99\x87\x65\x3a\x98\x62\x41\x13\x52\xe0\x1a\x14\x1a\x05\xd1\x35\x00\xd7\x88\x68\x0c\xc0\x04\x11\xcd\xdb\xf9\x4b\x8b\x8b\x8b\xc6\xab\xaf\xbe\x8a\x4b\x97\x2e\xc9\x00\xbc\xfc\xb8\x39\x57\x6f\x5b\xd4\xc3\x7f\x05\x2c\x5d\xd7\x69\xfb\xf6\xed\x4c\x44\x60\x82\x3a\x95\x2c\xa7\x7b\x33\x91\xe1\x58\x45\x4d\x7a\xc5\x7a\x75\xe2\x65\xe9\x53\x27\x36\xe5\x5e\xfd\xa8\x67\xf9\x07\x4c\x96\x5f\x3e\x33\x57\xb2\xd9\x2c\xc2\xe1\xb0\x24\x22\x92\x02\x18\x6f\x2e\xcd\xb4\xe5\xb5\x6d\x8d\x25\xb5\x35\x08\x16\x03\xb8\xde\xa8\x5f\x7e\x71\x67\xfa\x1b\x25\x4d\x9e\x02\x30\x05\xa0\x78\xe2\xc4\x09\xe9\x59\x97\x74\xeb\xe1\x35\xb4\x56\x4d\x3a\x80\x68\x6e\x6e\x46\x7b\x7b\x3b\x00\x68\x15\x85\xe3\xbb\x66\xe2\x8f\x59\x1b\x40\xbc\x67\x19\xda\x4f\xee\xa2\xa4\x5d\xdc\x16\xe2\xd1\x8a\xd2\x7c\xa9\xad\xf0\x52\x31\x64\xce\x08\x21\xca\x8b\x8b\x8b\xce\xe6\x80\x15\xef\x0b\xb8\xd6\x4b\x83\x27\x5d\xd6\x29\xbb\x6e\x58\x17\x2e\x5c\xa0\xa9\xa9\x29\x4e\x26\x93\x66\x34\x1a\xd5\x85\x10\x65\xdb\x36\x95\x05\x90\x21\xa2\x05\x00\x73\xb6\x1b\xf1\x3c\x80\x05\xdb\xbe\x95\x67\xe6\xf2\xd2\xd2\x92\x71\xf4\xe8\x51\x3e\x72\xe4\x88\xcc\xe7\xf3\x7e\x42\x81\xef\xfd\xfe\x67\x3f\x7e\x4e\x7a\x10\x61\xba\x65\xb3\xd9\xac\x1c\x1c\x1c\x84\xa6\x69\x0c\x80\xf5\x10\xeb\x57\x5a\x8a\x63\x11\x43\x34\x36\x16\xd5\x56\xc5\xe3\x2e\xc5\x00\x96\xc3\x66\xfa\xed\xfe\xa5\xe7\x8e\xf6\x2e\xff\x85\x49\x7c\x9e\x88\xa6\x89\xa8\x70\xe2\xc4\x09\x7e\xe9\xa5\x97\x1c\x58\x26\x00\xc3\x50\xa1\x5f\x6e\x2d\x5e\xc9\x85\xcd\x72\x5c\x57\x9a\x34\x29\xc2\x00\xc8\x14\x5c\xc9\x44\xcd\x85\x63\xbd\xcb\xaf\x1d\xd9\x96\xf9\x93\x92\x26\x4f\x30\xf3\x18\x11\x65\x4a\xa5\x52\xe5\xd5\x57\x5f\x85\x94\x72\x45\x1d\x83\xec\x0d\x6e\xf8\xda\xd7\xbe\xa6\x02\x68\x22\xa2\xa1\xc3\xe7\x52\xbf\xb3\x73\x26\xfe\xb0\xd7\x28\x59\x33\x06\xfd\xda\x3f\x03\x4c\x8c\xb7\xb7\x2e\xfd\x5f\x47\xfb\x96\xff\x90\x99\x67\xa7\xa6\xa6\xf4\xe7\x9f\x7f\x1e\x58\xc5\x9c\x50\x27\xac\x67\xa6\x78\x4b\x60\xdd\x7d\xf7\xdd\xa2\xab\xab\x0b\x89\x44\x02\x89\x44\x02\x40\xd5\x65\x98\x88\x64\xa9\x54\x42\x2e\x97\xc3\xc4\xc4\x84\xd7\xf5\x38\xe8\x1d\x6b\xcd\x98\xd7\x1b\xea\xc2\xfa\xda\xd7\xbe\xa6\x12\x51\x84\x99\x53\x00\xfa\x08\xb4\xa5\xb1\xa4\x0c\x76\x2f\x85\x07\x1a\xca\x6a\xca\x24\x36\xd2\xf1\xca\xe4\x64\xb2\x7c\xae\xac\xf2\x65\x10\x46\xed\xe5\xa9\x4c\x3a\x9d\x36\x7e\xf8\xc3\x1f\x4a\x1f\x2c\x8d\x99\x9b\x00\x74\x13\x51\x8f\x90\xe8\x6e\x28\x2b\x9b\xc2\x86\x88\x95\x55\x2e\xe4\x34\x63\xc6\x54\x30\x69\x13\xd6\x24\x33\xa7\xa5\x94\xa5\x37\xde\x78\x03\xf6\x01\x74\x2b\x42\xe0\x2c\xd2\x09\xa6\x69\x4a\x55\x55\x75\x00\xd9\xb1\xa6\xd2\xf1\xc1\xd9\xf8\xc3\x2e\x45\x32\xc3\xbf\x59\xc2\x4b\x6f\xb0\xc5\xe6\xe0\x6c\xec\xc9\x8f\x7a\x96\xbf\x2b\x05\x65\xda\xdb\xdb\xf5\x44\x22\x01\x7b\xa7\xb7\x37\x04\xd9\xb5\xfc\xfa\x87\x97\xa0\x82\xf4\x94\x7a\xb0\x82\xf4\xbe\xba\xb0\x02\x4e\x50\x96\xce\xb1\x44\xf6\x6c\x18\xba\xae\xfb\xf1\x5f\xcf\x44\xa4\x9e\x42\xbf\x1a\xde\xab\xc2\x7a\xf7\xdd\x77\xe5\x81\x03\x07\xdc\xc9\x0a\x33\x67\x32\x11\x63\x2c\x13\x31\x3e\x04\x10\xb1\x95\xf8\x02\x9c\x9d\x40\x6c\x9d\x95\x6b\x18\x86\x97\xb8\xbc\xb0\x74\x00\x69\x1b\x56\xda\x24\x8c\x65\x22\x46\x02\x96\xe3\x82\xc1\xcc\x05\x30\x32\xb0\x8e\xa3\x2f\x00\xf0\x1f\x55\xb5\x02\x77\xbf\x88\xac\x31\x66\x6c\xdf\xbe\x9d\xa2\xd1\xa8\x60\xe6\x70\x39\xc4\xda\x1d\x53\xf1\xc3\xc2\xf6\x5d\xf2\x18\x48\x6c\x62\xb2\x9e\xad\xe8\x2a\x4b\x8b\x18\x22\x35\xd9\x58\x7e\x7f\x29\x62\x5c\x53\x14\x45\xcf\xe5\x72\x72\x76\x76\xd6\x2f\x1e\xbd\x6a\x9d\x6b\xd6\xf3\xc4\x39\xf1\x5e\xd1\x2a\x3d\xe9\x14\xf0\xf3\x96\x01\x6e\x02\x56\xa5\x52\x01\x00\xae\x54\x2a\xe4\xd8\x08\x7d\xf8\x7b\xe1\xd7\x8c\x33\x4f\xfd\x82\xde\x7b\x53\xb0\x66\x67\x67\xa9\x5c\x2e\x73\x57\x57\x97\x61\x8b\xf6\x3c\x2c\xb1\x6e\xe9\x8f\xd6\x1a\xe6\x75\xb2\x3e\x3c\xb6\x48\x44\x85\x4c\x26\x63\x7c\xf7\xbb\xdf\x95\x41\xb0\x66\x67\x67\xb9\xab\xab\xcb\x0c\x85\x42\x65\x22\x2a\xda\xb0\xd2\x44\x34\x67\xaf\x30\x38\x3a\x67\x31\x9f\xcf\xeb\x6f\xbc\xf1\x06\xdb\x2b\x24\x75\xeb\xe8\x3f\xa3\xb5\x26\xc4\x62\x31\xb2\xb7\x5b\x85\x2a\x2a\x47\x7b\x17\x23\xfb\x1b\xcb\xa1\x0e\x57\xa5\xe7\xaa\x42\x5f\x55\x28\xab\x71\xf6\x4f\x11\x4c\xc6\x48\x6b\xe9\x6d\x10\xf2\xa9\x54\xca\xb0\xbf\x24\x51\x4f\x21\xc7\x2a\xf1\xfe\x67\x87\x38\xfc\x79\x9d\xf8\x20\x38\xb7\x02\x16\xea\x94\x5b\xc1\xc8\xd7\x78\xef\x4d\xc3\x9a\x9d\x9d\xe5\xe3\xc7\x8f\x73\x47\x47\x07\x37\x36\x36\xea\x64\x6d\x53\x2b\x10\x51\x9e\x88\x72\x44\x94\x67\xe6\x52\xa9\x54\xaa\x1c\x3f\x7e\x9c\x5f\x7d\xf5\xd5\xa0\x76\x01\x00\xce\x66\xb3\x7c\xea\xd4\x29\x2e\x97\xcb\x48\x24\x12\x46\x2c\x16\x33\xec\x6d\x6a\x45\x22\x2a\x11\x91\xbe\xbc\xbc\x5c\xb9\x70\xe1\x82\x7c\xfd\xf5\xd7\x31\x3f\x3f\x5f\x17\x96\xf3\x5b\xe1\x32\x6d\x07\x09\x40\x4c\x4d\x4d\xe1\xae\xbb\xee\x92\x00\x4a\x0c\x64\xae\xb4\x16\x8f\xf6\x2c\x85\x87\x2d\x7b\x48\x7d\x97\x69\x2f\xdb\x00\x80\xad\x0b\xd1\xc7\x9b\x8a\xea\xb7\x16\x63\x46\x3a\x1e\x8f\xeb\xbd\xbd\xbd\xb0\xfd\x87\x9c\x10\x24\xce\x80\x60\x91\x06\xac\x14\x1f\x6b\x89\xd6\x5b\x09\x6b\x35\xdb\x95\x3f\xac\x55\x7e\x3d\xf8\xac\x0b\xd6\x0b\x2f\xbc\x00\x00\x72\x70\x70\x10\xbd\xbd\xbd\x6e\xf9\x6c\x36\x8b\xa9\xa9\x29\xa7\xbd\xeb\x99\x3f\x6a\x60\x9d\x39\x73\x06\x67\xce\x9c\x91\x91\x48\x04\xa5\x52\x49\x0e\x0c\x0c\x08\x00\xb8\x78\xf1\x62\x8d\x9b\xf6\x7a\x60\x39\x1c\x0c\x08\x18\xad\xcb\xcb\xcb\x3c\x3c\x3c\x0c\x45\x51\x40\x44\x5a\x29\x24\xc3\x43\xd3\xf1\x47\x54\x26\xcd\x59\xf4\xf5\xba\x4c\x57\x39\x18\xaa\x7e\x54\x20\x28\x4c\x51\x49\x58\xbe\xd6\x5c\xfa\x10\x84\x62\x2a\x95\x32\xcf\x9d\x3b\x17\x34\x53\x0a\xe2\x62\xf5\x46\xb2\xa8\x53\xc6\x9b\xdf\xdb\x51\xb7\x0a\x96\x9f\xeb\x78\xe1\xb1\xaf\x5c\x50\xbd\xd6\x8a\xbb\x29\x58\x0b\x0b\x0b\x3c\x32\x32\xe2\xfc\xe8\xfa\xf5\xeb\x32\x9b\xcd\xae\x80\xb5\x67\xcf\x1e\xb1\x75\xeb\x56\xc7\xd5\x9a\x5a\x5b\x5b\x31\x37\x37\x57\xc3\x89\x0c\xc3\x70\x61\x2e\x2c\x2c\x10\x00\xe6\xea\x9a\xd0\xba\xf0\xf2\x9f\x32\xed\x17\x93\x22\x99\x4c\xa2\xb5\xb5\x15\x00\x54\x5d\xe5\x70\xe7\x72\x78\x4f\xaa\x18\x51\x4f\x6f\x55\x00\x00\x1c\x88\x49\x44\x41\x54\xda\x04\xa0\xd6\x65\x9a\xaa\x2e\xd3\xee\x71\x0f\xb0\x9d\x00\x8a\x1c\x75\xe3\xf9\x88\xd1\x5c\x0c\x6d\xbe\xd0\x5e\x78\xb1\xac\xc8\x74\x34\x1a\xad\x7c\xf4\xd1\x47\x41\xb3\x3f\x0e\x78\xae\x87\x9b\x93\x16\x34\xad\x0f\xe2\x4a\xb7\x0a\x96\x1f\x57\xe1\xcb\xcb\xbe\xb4\x8d\xde\xdf\x56\x58\x5f\xf8\xc2\x17\xc4\xc1\x83\x07\x95\xbe\xbe\x3e\xa5\xb3\xb3\x53\x34\x36\x36\xaa\x7d\x7d\x7d\xd4\xdb\xdb\x8b\xbb\xee\xba\x0b\x2d\x2d\x2d\x34\x32\x32\xe2\x6f\x8b\x1b\xc6\x4b\xc1\x4a\x65\xbb\xa6\x81\x4d\xd3\xa4\x81\x81\x01\x00\x20\x10\x45\x98\xb8\x71\xfb\x5c\xf4\x3e\x30\x91\xeb\x32\x5d\x63\xec\xa8\xda\xc4\x1c\xc3\x2b\x40\x50\x24\xe2\x04\x2a\x5d\x4b\x95\x8f\x12\x51\x71\xcb\x96\x2d\xd2\xe6\x62\xf5\x6c\x5a\x5e\xe5\xd1\x9b\xcf\x3f\x41\x40\x40\x1e\x2f\x2c\x60\x65\xfd\x6e\x06\x96\x3f\x1f\x7b\xe0\x00\xb5\x70\xfd\x1c\xd4\x29\xef\x57\x8c\x6f\x2b\x2c\x22\xc2\xe3\x8f\x3f\x4e\x8f\x3d\xf6\x98\x12\x8d\x46\x43\x02\x14\x4b\x94\x95\x96\xce\x65\x6d\x7b\x7b\x4e\xdb\x1a\x36\x44\x83\xa1\x00\x52\x21\x34\x35\x37\xc9\xe1\xe1\x61\x36\x0c\x03\xf6\x64\xec\xa6\xf0\xf2\x8a\x48\x3f\x82\x02\xb0\x8c\x7a\xdb\xb6\x6d\x43\x34\x1a\x25\x66\x0e\xe5\xc2\x26\x06\xe6\x62\x0f\x45\x4d\x25\xe1\x12\x11\x9c\x95\xfa\xaa\xe2\x5f\xfb\x4e\x2b\x3d\x55\x08\x6d\x1b\x6d\x29\xbd\x51\xd0\xe4\x5c\x34\x1a\xd5\x2b\x95\x0a\x66\x67\x67\x81\x5a\xf1\xe3\xd7\x71\xbc\x71\xde\x19\x1f\xf9\xe2\xe0\xb9\xf7\xeb\x34\x74\x0b\x61\xf9\x95\x70\x6f\x9c\xff\xe7\x0d\xc2\x57\xce\xfb\xbb\xad\xb0\x1e\x7f\xfc\x71\xea\xef\xef\x17\x44\x14\x4b\x15\x43\x5b\x3f\x71\xb9\xf9\xb7\x1e\xbe\xd2\xf4\x7f\xee\x99\x8e\xff\xf7\x03\x73\xb1\x5f\x1d\x9a\x8e\xff\xc3\x9d\x33\xb1\x27\xc3\xa6\xe0\xf9\x86\xca\x38\xab\xa2\xd2\xd7\xd7\x27\x99\x99\xa7\xa6\xa6\x6e\x0a\xaf\x15\x2e\xd3\x9e\x42\x2e\xc1\x29\x8a\x82\x9e\x9e\x1e\x10\x11\x19\xc4\xe1\x88\xa1\x74\xf4\x2c\x45\x76\xd7\x75\x99\x06\x57\x2f\x9e\x68\x85\x29\x1a\xab\x28\xd1\xcb\x6d\xc5\x77\x40\x54\x48\xa5\x52\xc6\xd5\xab\x57\xa1\xeb\xba\x7f\xea\xee\x9d\xf2\xfa\xa7\xee\x5e\xea\xf5\x8f\x28\x7f\x1c\xe3\xd6\xc3\xf2\x8f\x5c\xf2\xfd\xbc\x62\x24\xc8\x04\x13\xc4\x41\x6f\x1b\xac\x87\x1e\x7a\x88\x76\xec\xd8\x21\x00\x24\xfa\x32\x91\x7b\x9e\x3e\xd3\xf6\xed\xce\x65\xed\xd3\x0a\x53\x33\x81\x14\x30\x48\x10\x85\xc2\xa6\xe8\xda\xb4\x14\x3e\xdc\x95\x0d\x6f\xbd\xda\x5a\x7a\xbf\x22\x64\xa9\xbb\xbb\xdb\xb4\x55\x99\x1b\xc6\x4b\xf1\x21\xe5\x0d\x2e\x95\xe6\xf3\x79\xda\xb5\x6b\x97\x14\x42\x80\x88\x42\x4b\x51\x83\x77\x4f\xc7\x1e\x09\xb1\xd0\xc8\xae\x8b\xbb\x1e\x49\xb0\x15\x7e\x9b\xa3\x79\xcc\x18\x20\x42\x53\x51\xed\x4f\xc7\x2a\x67\xd2\x71\x63\x34\x14\x0a\xe9\x0d\x0d\x0d\xce\x09\xd4\xf5\x46\xa2\xf7\xb9\xde\x28\xf2\xa6\x7b\xaf\xb7\x0b\x96\x57\x6c\x06\x8d\x68\xef\xd5\xfb\x2e\xa0\x96\x83\xe2\x76\xc2\xea\xed\xed\xa5\xfb\xef\xbf\x5f\x10\x51\xac\xa9\x14\xda\xf1\xd9\xd3\xad\xdf\x8a\xeb\xca\x20\x81\xec\xc1\xef\xf4\x11\x9c\x67\x6a\x28\x2b\xbb\x52\x05\x35\x75\xb9\xad\xf8\x2e\x04\x15\x77\xed\xda\x25\x4f\x9e\x3c\xe9\x6f\xab\x75\xe3\xe5\x88\x48\xbf\xfe\x55\x43\x9d\xba\xae\xa3\xa5\xa5\x05\xcd\xcd\xcd\x0c\x40\xe8\x0a\x87\x1a\xca\xca\xe6\x8e\x65\xad\xdf\xdd\x13\xe8\xea\x5d\x80\xbb\x5a\x49\x80\xcb\xe5\xc8\x05\xac\x76\xe4\xc2\x3b\x2e\xb4\x17\x5e\x36\x54\x2c\x37\x35\x35\x19\x4b\x4b\x4b\x58\x5c\x5c\xf4\x8f\x0a\x60\xe5\xc8\xf4\x8f\x1a\x6f\x99\x20\x0e\x75\xbb\x60\x79\x89\xd6\xdb\x5e\x41\x81\x7d\xe9\x7e\x91\x7c\xdb\x60\x3d\xfe\xf8\xe3\x14\x8f\xc7\x43\x00\x9a\x1f\x1e\x69\xfc\x27\x9b\x96\x22\x9f\xac\x6e\xd5\xab\x8a\x18\xb2\x21\x39\xa6\xa7\xa6\x92\x3a\x30\x1f\xaf\x9c\x4c\xc7\x8d\x31\x55\x55\xcb\x86\x61\x60\x66\x66\xc6\x8b\xe3\xba\xf1\x12\xa8\x52\x9b\x97\x8b\x49\xcf\x55\x02\x80\x7d\x44\xa2\x84\xfd\x51\xf1\xe3\xdd\xb9\x17\xca\x2a\x17\xaa\x45\x3c\x66\x8a\x2a\xcf\xaa\x72\x30\x86\x1b\x9b\x2c\x29\x43\x07\x46\x1b\xff\x31\x31\x9a\x88\x48\x7b\xe0\x81\x07\xea\xbe\x37\xe0\xde\x1b\xe7\x9f\xe1\x49\xdf\xcf\x5f\xb7\x5b\x09\x0b\xbe\xbc\xde\x20\xd6\x48\xf7\xe3\x70\x5b\x60\xa5\x52\x29\xc0\xfa\x34\x5f\x7b\xff\x42\xf4\x33\xae\xf7\x9e\x87\xf7\xb8\x3a\x82\xf7\x10\x3e\xa6\xc8\xd0\x4c\xfc\x17\xc0\x48\x12\x91\x6a\x4f\xf2\x6e\x08\x2f\xbf\x91\xcc\x1f\xdc\xf8\xa9\xa9\x29\x39\x35\x35\x25\xed\x8d\xa4\xf3\x8b\x31\xe3\xec\x85\xf6\xc2\x3b\x2b\x36\x7f\xb0\xc5\xc1\x1c\xa2\xaa\xa9\x09\x57\x3d\x31\x86\xa6\xe3\x5f\xdd\x31\x17\x7b\x1c\x8c\x44\x2c\x16\x53\x9f\x7e\xfa\x69\xe1\xdb\x38\xe0\xc7\xcd\x9f\x06\x4f\x7a\x50\x5a\x90\x72\x7e\x2b\x60\x05\x05\x3f\x5c\x59\x27\xde\x9f\xff\xb6\xc2\xb2\x77\x75\x69\xc9\x92\xd2\x13\xae\x88\x4e\xc0\xd9\x17\x65\x75\x8c\x73\xb2\x8f\xed\x2b\x56\xc3\x18\x5a\x73\xa1\x21\x55\x52\x0a\x80\x96\x4a\xa5\xdc\xf3\xf9\x37\x8a\xd7\x6a\x15\xf5\x06\x09\x00\xc7\x8e\x1d\x03\x59\x07\xcb\xe5\x18\x3c\xfd\x51\xcf\xf2\x4f\xcb\xaa\xcc\x39\x48\x39\x57\x97\x97\xd9\x17\xf7\xf8\x7e\x8f\x3e\xa6\x30\x45\x1e\xbe\xd2\xf8\xdb\xcd\x45\x75\x80\x99\x63\x5d\x5d\x5d\x62\xff\xfe\xfd\x2b\xde\x19\x70\xf5\x57\xc2\x5f\xd1\xa0\xfc\xb7\x12\x96\x1f\x66\x50\x3e\x3f\xd1\x06\x71\xc6\xbf\x09\x58\x82\x99\x55\x45\x52\x92\x60\xed\x18\x77\xa4\x0a\x80\x1a\x37\x68\xef\x71\x05\x0c\x40\x91\x14\xa3\xea\xc7\xc0\x1c\x57\xed\x0d\xe3\x25\x10\xdc\xb0\x81\x54\x3a\x39\x39\x29\xaf\x5f\xbf\x2e\x61\x79\x80\xce\x2f\x45\x8c\xb3\x27\xba\x73\x3f\xaf\x39\x71\x1a\x2b\xb5\x41\xf8\x9e\x9d\x6b\x5c\x57\xfa\x9f\xb8\x90\xfa\x17\x61\x53\x74\x02\x88\xdc\x71\xc7\x1d\x62\xd7\xae\x5d\xf5\x46\xe8\x5a\x83\x61\xad\x11\x75\xab\x60\xad\x37\xce\x79\x0e\x12\x2d\xfe\xfc\xb7\x05\x96\x4d\x48\x22\xaf\x99\x05\x53\xb0\xee\x2a\x93\x0c\xc0\xe5\x65\xd5\x5e\xaa\xf2\x35\xc6\x52\xd4\x98\x35\x05\x4b\x58\x44\x8a\xce\xce\xce\x1b\xc2\xab\x5e\xa2\xf4\x65\x74\xc5\xc7\x4f\x7f\xfa\x53\xc9\xcc\x06\x33\xe7\x40\x98\x3c\xbe\x29\xf7\xd3\xa5\x88\x39\xeb\xa0\xc8\x76\x0d\xc8\x79\xf6\x54\xc6\x91\xf3\xe4\xb9\xef\xca\x6a\x8f\x3e\x72\xb9\xf9\x37\x15\x89\x56\x00\xda\xfd\xf7\xdf\x8f\xee\xee\x6e\x81\x95\x8d\xe7\x17\x61\x41\xe2\x3d\x48\x14\xde\x6a\x58\xfe\x10\x94\x2f\x48\xed\xf0\x3e\xd7\x53\x4b\x6e\x19\xac\xa1\xa1\x21\xe1\x6c\x9e\xce\x85\xcd\xcc\x42\xcc\x18\x65\x54\x8f\x3e\x70\xb7\x0c\x3b\x6a\x19\x5b\x84\x65\x7f\xee\x0b\x23\xd6\x57\x3c\x9c\xa3\xe8\xa5\xe7\xa3\xab\x1b\xc2\x2b\x48\x51\xab\xc7\x82\xdd\xfb\x99\x99\x19\x49\x44\x05\x00\xe9\x62\x48\x5e\x7e\x7f\xf3\xd2\x4f\x18\x90\x5e\x33\x05\xe0\x31\x5b\x38\x7f\x9e\x1d\xc6\xce\xd6\x27\x02\x61\xe7\x4c\xec\xd7\xee\xbd\x96\xfc\x0a\x81\x9a\x42\xa1\x90\xf6\xc9\x4f\x7e\xd2\xfb\xbe\x20\x1c\x56\x53\xe2\x83\xf2\xdd\x4a\x58\x08\x48\xf7\xe7\xf3\xc3\xaa\x97\xff\xb6\xc1\x3a\x7b\xf6\xac\x73\x84\xa9\x2e\x05\xb2\xc7\x37\x2d\xbf\xc2\x60\xe9\x8a\x45\x9b\xb2\x82\xdc\xa2\x0b\x21\x99\xbe\xd8\x5e\x78\x1b\xd6\xa9\xd2\x46\x36\x9b\xf5\xc2\xde\x10\x5e\x75\x5d\xa6\x57\x79\xa6\xe9\xe9\x69\x0c\x0d\x0d\x49\xb2\x4e\xe0\xa1\x74\xdc\x28\x76\xe4\xb4\xc1\xa6\x62\xa8\xc3\xe2\x54\x40\x8d\x85\xd5\x09\xd5\x93\x13\x6b\xd2\x89\x21\xba\x96\xc3\x0f\x94\x43\x72\x62\xa6\x41\x1f\x51\x14\xa5\x32\x3c\x3c\x2c\x67\x67\x67\x69\x79\x79\xd9\x6f\x42\x80\x07\x1f\xe9\x89\x5f\xed\x1a\x64\x1c\xbc\x51\x58\xd2\x07\x13\x3e\x78\xf0\xdd\x07\xe5\xf5\xda\xd5\x6e\x1b\x2c\x67\x05\x06\x80\x92\x8e\x55\x4a\xc9\xb2\xda\xd3\x9a\x0f\xf5\x55\x9d\xa9\xe0\xf1\x8a\xb1\x40\x9a\x04\xe3\xf5\x1d\x8b\x7f\x72\xbd\x51\x7f\x13\x96\x2f\x59\xfe\xe2\xc5\x8b\x72\x62\x62\xc2\x6f\xa6\x58\x17\x5e\x41\xdf\xec\xc6\x1a\xcf\x5c\x2e\x97\x39\x1e\x8f\x53\x6b\x6b\x2b\x13\x91\x29\xc1\x62\x2e\x51\xc9\xed\x9c\x89\x1f\x08\x49\x11\x22\x7b\x37\x70\x95\x83\xa1\xba\x84\x64\x6f\x66\xad\x31\x61\x10\x20\x98\xd4\xde\xa5\xf0\xc1\xbc\x26\x47\xe7\x12\x95\x31\x45\x51\x2a\x5b\xb7\x6e\x35\x67\x67\x67\x61\x13\x99\xb7\x52\x5e\x82\x90\x01\x69\x41\xb8\x3b\xf7\x22\x20\xff\x46\x60\xf9\x61\xfa\x1b\xdb\x69\xe0\xd5\xf2\xae\xf5\x7c\x4b\x60\xd9\xfe\x7c\x92\x88\x58\x82\x31\xde\x5c\x9e\x56\xa5\x68\x6c\xcb\x6b\x3d\xc4\x24\x5c\x85\xdf\xe6\x03\xb9\xb0\x99\x79\x7d\x7b\xe6\x2f\x2e\xb4\x17\x9e\x03\xe1\x2a\x80\x05\x29\x65\xf9\xb9\xe7\x9e\x93\x37\x8a\x97\x7f\x57\xd1\x7a\x82\x00\xc0\x73\x73\x73\x34\x30\x30\x20\x43\xa1\x10\x03\xe0\x52\x88\x0d\x53\xe1\xf8\xe6\xc5\xc8\x6e\xc7\xc8\x5a\xb3\x24\xe9\xd4\x83\x60\x2d\x2b\x79\x26\x9a\xce\x19\x5b\x0a\x23\xdc\xbb\x18\x79\xb8\xa0\xc9\xab\x73\x0d\x95\x6b\x42\x08\xa3\xbf\xbf\xdf\x9c\x99\x99\x41\x2e\x97\xf3\x72\x18\x2f\xa1\xd4\x1b\x59\xf5\x38\x18\x50\xcb\xad\x6e\x04\x16\x61\xe5\x88\xf5\x72\xba\x20\xa3\xe4\x6a\xdc\xf3\xb6\xc0\x9a\x9b\x9b\xa3\xfe\xfe\x7e\x0e\x87\xc3\x12\x40\xc5\x14\x5c\x1e\x4f\x95\x47\xaf\x35\x97\xae\x57\x14\x96\x00\xb8\x1c\x92\xc5\xd9\x84\x3e\x79\xaa\x3b\xf7\xfe\x91\xff\xaf\xbd\x6b\x6b\x8e\x1b\xb9\xce\xdf\x69\x00\x33\x18\x92\x73\xe1\x68\xc4\x9b\x48\x5a\x1c\x51\x0a\x75\xf1\xca\xab\x75\x76\xd7\xd2\x6a\x57\x8e\xbd\xa9\xf2\x3a\xb5\xa9\x52\x25\x0f\xa9\xa4\x2a\x65\x3f\xe4\x2f\xa4\xfc\xe0\xca\x7b\xf2\x90\xb7\xbc\xe5\x25\xe5\x5c\x2a\x15\x57\x2a\x76\xbc\xf1\x26\xa9\xf2\x6d\x77\x63\xaf\x6d\xa9\xb4\xa6\xee\xd4\x9d\xe4\x90\x12\x87\x1c\x0e\x67\x06\x33\x18\xa0\x4f\x1e\x30\x98\x69\x80\x98\x0b\x29\xae\xd7\x76\xd2\x55\x28\x00\xdd\xa7\x3f\x74\x37\x0e\xce\x39\x68\x1c\xf4\x99\xdf\xfe\xa7\x42\xca\xfe\x21\x08\x4b\x2d\x0f\x56\xeb\xd6\xad\x5b\xf2\xf1\xe3\xc7\x51\xd2\x7c\xa0\x76\xf5\x74\x99\x8e\xa8\xd0\x7e\xca\x1d\xc7\xa1\x9d\x9d\x1d\xe4\xf3\x79\x49\x44\x12\x04\x3c\x1b\xb1\xcb\x87\x2b\xb1\xf9\x51\x4b\x1f\xef\x4c\xab\x7a\x90\x1d\x91\xa0\xa8\x46\xa8\xef\x30\x9e\x5c\xd3\x98\xcc\xa3\x9b\xe6\x9b\x0d\x5d\xae\x3c\x4d\x36\x1f\x09\x4d\x73\xf2\xf9\xbc\xc3\xcc\xb4\xbe\xbe\x0e\xa5\xad\x12\xe1\xd9\x91\xe0\x06\x74\x06\x02\xca\x5e\xcd\xdf\x2f\x96\x4f\x1f\x66\x4e\x95\x2e\x7c\xe3\xa3\xae\xfb\xb1\x62\x49\x29\xb1\xb6\xb6\x86\xb9\xb9\x39\x57\xd7\xf5\x26\x11\x59\x20\x54\xaa\x71\xb7\xf0\x70\xd4\x5a\x5c\x9c\xac\x7e\xf8\x8b\x23\xd5\x1f\xde\x1a\xaf\xfd\x70\x35\xd5\xf8\x9f\xa6\xce\x37\x18\xfc\x00\xc0\x3a\x11\x55\xb7\xb6\xb6\x9c\xef\x7e\xf7\xbb\xaa\x31\xbf\xe7\x76\xf5\x74\x99\x56\xf2\xc2\x7b\x00\xe0\x52\xa9\xc4\x53\x53\x53\x48\x26\x93\x2e\x33\xbb\x2c\x88\xd6\x93\xf6\xf6\x7c\x31\xf1\x52\xdc\x15\x09\x02\x10\x30\xe8\xdb\x6b\x69\xb5\x16\xd4\x20\x2f\xcf\x57\x99\x7e\x13\x05\x93\x31\x53\x32\x3f\xaf\x31\xaa\xab\xe9\xc6\x6d\xd2\x44\x73\x7a\x7a\x5a\x0a\x21\x78\x75\x75\x55\x15\xd7\x3e\x73\x84\xd5\xbc\x9f\x8f\x88\xb2\x6e\x66\xc0\x5e\xb0\xd0\xa5\x1e\x61\xf7\xe0\xf7\xba\x6e\x5f\xac\xb1\xb1\x31\x0a\xfd\x0e\xb7\x27\x2c\xcb\xb2\x78\x65\x65\x85\xf2\xf9\xbc\xab\xeb\xba\xcd\xcc\x55\x00\xdb\x44\x54\x24\xa2\x35\x00\x2b\xcc\xfc\x84\x88\x9e\x30\x73\x01\xde\x3a\x64\xb5\xcd\xcd\x4d\xf7\x9b\xdf\xfc\xa6\x54\xb1\xf6\xd3\x47\xd5\xe1\xb0\x9b\x61\x1f\x25\x8a\xdb\x79\x4f\x9f\x3e\xa5\x7c\x3e\x2f\x75\x5d\x97\x00\x9c\x86\x21\x9d\xed\x84\xe3\x1c\xdb\x18\x7a\x51\x80\x84\x1a\xc0\x32\x60\xf8\xfb\xf9\x81\x15\x13\x5b\xad\x23\x40\x80\x8c\xa9\xed\xf8\xeb\xa9\x86\x3e\xb2\x3c\xda\x58\x74\x88\xed\xc9\xc9\x49\x67\x72\x72\x12\xeb\xeb\xeb\xd4\x68\x34\xb8\x47\xfb\xba\x19\xe2\xbd\xfa\x33\x28\x56\x94\xaa\x08\x0f\x7a\x14\xed\x20\x79\x6d\xac\x5c\x2e\x47\x6f\xbd\xf5\x16\xbd\xf8\xe2\x8b\xe2\xdc\xb9\x73\xe2\xa5\x97\x5e\x12\x27\x4e\x9c\x40\xb5\x5a\xa5\x52\xa9\xb4\x27\x2c\xcb\xb2\xe8\xda\xb5\x6b\x72\x74\x74\x94\x33\x99\x8c\xd3\xfa\xa1\xa3\x02\x6f\xc5\xc4\x12\x11\x6d\xc1\x63\x3a\x8b\x99\x1b\x8a\xef\xfe\x73\xf7\xb1\xa7\xcb\xb4\x52\x16\xe6\xd6\xf6\xbe\x5e\xaf\xf3\xce\xce\x0e\xcd\xcd\xcd\x49\x21\x84\xcb\x80\x2c\x0d\xb9\x15\xc1\x48\x4f\x6d\xc7\x8f\x0b\x45\xf3\x90\xb2\x57\xcf\xc2\xff\xed\xb6\x5f\x0c\x00\x91\xab\x1a\x9f\x9d\x2d\x99\xa7\xd6\x52\xcd\x45\xcb\x90\x95\x64\x2a\xe9\xcc\xcf\xcf\xcb\x66\xb3\x49\xc5\x62\x11\xec\xaf\x04\xd7\x49\xea\x00\xa8\xaf\xd0\xbd\x9e\x3e\xd5\xf0\xef\x87\x15\x35\x0e\x84\xe8\xf1\x0a\x3f\xd1\xe1\x7a\xbb\xf2\x0c\xc3\xa0\x97\x5f\x7e\x99\x2e\x5d\xba\x24\x12\x89\x84\x41\x8c\xa1\xdf\x7a\x3a\x7c\xc6\xd1\xd8\xe5\x61\xc3\x9e\x9b\x9b\xe3\x72\xb9\xcc\x9b\x9b\x9b\x83\xe0\x07\xda\x71\xff\xfe\x7d\xba\x72\xe5\x8a\x3b\x3c\x3c\xcc\xb1\x58\xcc\xb1\x6d\xbb\x69\x18\x86\xbd\xb3\xb3\xd3\xdc\xdc\xdc\x74\xef\xdc\xb9\x23\xbf\xf3\x9d\xef\xc8\xd5\xd5\xd5\x03\xeb\x63\x5f\x97\x69\x74\x06\x37\xfc\xfa\xec\x97\x73\xa9\x54\xa2\x4c\x26\xc3\xd9\x6c\x56\x12\x51\x13\x04\xb9\x96\xb2\x4b\xa3\x96\x31\x93\xad\xe9\x93\x04\x80\x38\x28\xc5\x7c\x75\xe9\xfd\xf5\xc6\x9d\xc8\x66\xd4\xea\x0d\xa3\x45\x4b\x18\xb1\xb5\xfc\x7c\x71\xe8\x92\x65\xb8\xcb\xc5\xe1\xe6\x9a\x6e\xe8\xee\xcc\xcc\x8c\x1c\x1f\x1f\xe7\x42\xa1\x40\xb6\x6d\xab\xed\xf2\x19\x46\x86\xdb\xd9\xa3\x9f\xac\xd4\xeb\x87\x05\xec\x96\x72\x2a\x2d\x87\xca\x06\x3e\x9e\x99\x99\x11\x97\x2e\x5d\x42\x3e\x9f\x17\x00\x4c\xc3\xa1\xdc\x85\x07\x99\xaf\x5c\x78\x98\xfe\x9b\x51\xcb\x98\x58\x3a\x6c\xfd\x14\x82\xec\xd9\xd9\x59\xe7\xea\xd5\xab\x83\xe0\x46\xb6\xeb\xf1\xe3\xc7\x74\xfd\xfa\x75\xb9\xb8\xb8\xc8\x4b\x4b\x4b\x74\xe5\xca\x15\x79\xe7\xce\x1d\x2e\x14\x0a\x51\x2f\x1b\xcf\xd5\xc7\xbe\x2e\xd3\x08\x1a\x91\x61\xda\xf6\xeb\xfd\xc3\x87\x0f\xe9\xc4\x89\x13\x32\x1e\x8f\x7b\x33\xfd\x02\xee\x93\x4c\x63\x7d\xba\x14\x3f\x35\x62\xeb\x19\x0f\x45\x81\x69\x1f\x72\x6b\xba\xc2\x5f\xb1\x5a\x11\x63\xe8\x2c\x51\x19\x73\x29\x3b\xb7\x99\xf8\x72\xba\xae\x8f\xac\x25\x1b\x4b\x4d\x0d\x8d\x64\x2a\xe9\x9e\x3a\x75\x4a\x1a\x86\x41\x2b\x2b\x2b\x51\xed\x0a\x4b\xa9\x70\xfb\xc3\x26\x41\xaf\x3e\x86\x07\x5b\x7d\x82\xc3\x63\x44\x4a\x5d\x75\x2c\xfd\xfa\xaa\xda\x45\x3a\x9d\xa6\x57\x5f\x7d\x95\x5e\x79\xe5\x15\x31\x3c\x3c\x6c\x80\x31\x72\xb8\x62\x9c\x7e\xeb\xe6\xa1\xbf\x3a\xbe\x91\xf8\x33\x02\x86\xd2\x96\xfe\x82\xa3\xf1\xfa\x6a\xca\xbe\x4d\x44\xcd\x93\x27\x4f\xca\x1b\x37\x6e\x50\x6b\xb6\x5e\x60\xf7\x3d\x1a\xa8\x5d\xca\xc3\xb9\xab\x5d\x07\xd1\xc7\xbe\x2e\xd3\x08\x1a\xbe\xe1\x0b\x06\xa4\xc2\xe2\xe2\x22\x9f\x3d\x7b\x56\x6a\x9a\xe6\x32\xb3\xed\x6a\x70\x56\xd2\x8d\x67\x47\xb7\xcc\x4f\x9b\x8e\x36\x4c\xad\x36\x74\x1c\xde\xfc\x8b\xfa\x4a\x53\x31\xfe\xfd\x06\xb5\xc3\xe5\x11\x08\xd0\x0f\x57\x8d\x97\x8f\x3f\x1b\x7a\xc3\x32\x64\xa1\x34\xec\x3c\x83\x20\x39\x39\x39\xe9\x9e\x38\x71\x02\xcd\x66\x13\xc5\x62\x31\x3c\xa7\x15\xee\x87\x5f\x46\xca\x9e\x42\x79\x50\x8e\xc3\x58\x61\x63\x57\xcd\x0b\x6f\x6a\x0a\xdb\x7a\x0c\x80\x3f\xf7\xb9\xcf\xd1\xa5\x4b\x97\x90\xcb\xe5\x74\x22\x4a\xc4\x9b\x34\xfe\xdb\x4f\x52\x7f\xf2\x85\xbb\xd9\xbf\x4e\xd7\x8d\xcf\x10\xda\xaf\x48\x62\x62\x27\xf6\xd9\xd5\xb4\xfd\xb3\xb2\xe9\x14\x0c\xc3\x70\xb2\xd9\xac\xbc\x77\xef\x5e\xf8\x9a\x07\xd2\xae\x83\xc2\x1a\xc8\x65\x5a\xd9\x10\xba\xe0\xae\x17\x83\xad\xad\x2d\x1c\x3d\x7a\xd4\x11\x42\xb8\xcc\x6c\x37\x0c\x6e\x14\xd2\x8d\x52\xbe\x68\x9e\x31\x1c\x32\x7d\x14\xf5\xd7\x36\xdf\x15\xc9\x9f\xf3\xf3\x4f\x3c\xe3\x9f\xe1\x1b\x69\x7e\x03\xe2\xae\x36\x76\x6c\x33\xf1\x7b\x93\xdb\xf1\xb9\x72\xc2\x79\x5c\x8e\x3b\x95\x58\x2c\xc6\x47\x8f\x1e\x95\xf3\xf3\xf3\x88\xc7\xe3\x28\x95\x4a\xd4\xfa\xed\x2a\xdc\xee\x70\xdf\x10\x91\x17\x2e\x57\x6d\xb1\xf0\x93\x4b\xa1\x4d\x55\x23\x02\xbb\xc7\x8e\x93\xc9\xa4\x38\x7f\xfe\x3c\xbd\xfe\xfa\xeb\x34\x35\x35\xa5\x0b\x21\x4c\xc1\x94\x3e\xfe\x2c\x71\xf1\x77\x6f\x67\xff\xf2\xf8\xc6\xd0\x57\x34\x49\x49\xff\xf3\x0d\x00\x30\x33\x34\xa6\xc4\x64\x39\x7e\x72\x69\xcc\xfa\x7e\x53\xe3\x9d\x4c\x26\xe3\xb4\xfe\x6b\x38\x90\x76\x85\xf2\x0f\x04\x6b\x20\x97\x69\x85\x26\x6c\xc3\xa8\x65\x00\xbc\xa9\x0b\x00\x74\xe4\xc8\x11\x97\x88\x1c\x10\xec\x6a\x4c\x56\xd7\x52\xf6\x76\x7e\x33\xf1\xe9\x98\x14\x31\xcf\xd0\x6a\x49\x2d\xea\x6c\x81\xf3\x8e\x21\x16\xf8\xf7\x12\xdc\x96\x75\x7a\xba\xae\x9d\x5e\x58\x1f\xbe\x7c\xc8\x32\xb2\xe5\x84\xbb\x56\x33\xa4\x65\x9a\x26\x4f\x4d\x4d\xc9\xd3\xa7\x4f\x73\x3a\x9d\xa6\x6a\xb5\x8a\x7a\xbd\xae\xbe\x0c\x84\xfb\x13\xb5\x85\x25\x5a\x58\x72\x87\x27\x6a\xc3\x4f\x74\xd4\xf8\xf0\xd4\xd4\x94\x38\x7f\xfe\x3c\x5d\xb8\x70\x01\xb9\x5c\x4e\xd7\x75\xdd\xd4\x98\x92\x33\x5b\xf1\x97\xde\xbc\x93\xfd\x8b\x73\xcb\xc9\xaf\x0d\x35\xb5\xbc\x27\xe4\x5b\x33\x86\xbe\xa4\x6f\xf5\x3d\xe1\x88\x89\x74\x5d\xcf\xdc\xcf\x59\x3f\x66\x41\xd6\xf8\xf8\xb8\xb3\xba\xba\xea\x2f\x13\xbf\xaf\x76\xb5\xf2\x54\xc9\x7e\x60\x58\x03\xb9\x4c\xb7\xf2\xc2\xe5\xea\x53\x1d\xc0\x58\x5b\x5b\x23\xd3\x34\xf9\xf0\xe1\xc3\x5e\x30\x4c\x70\xb3\x12\x97\xe5\xb5\x94\x5d\x9a\x2d\xc5\x17\x62\x2e\x99\xe4\xeb\xc7\xce\x4f\x94\xca\x23\xd0\x89\x19\xe4\x2f\x68\xd7\x59\xe1\x06\xf0\x0b\x5b\x2a\xd5\xcc\xd5\x8c\x97\x4f\xae\x0f\xff\x7e\xb6\x66\x8c\x57\x63\xee\xb3\x6a\xdc\xb5\x84\x26\x90\xcd\x66\x79\x61\x61\x01\xf3\xf3\xf3\x9c\x4c\x26\xc9\xb6\x6d\xaa\x56\xab\x61\x06\x89\x7a\xbd\x8e\x92\x76\x6a\x9e\xda\x6f\x75\xbc\xa2\x12\x5f\xbc\x78\x51\xbc\xf6\xda\x6b\x74\xfa\xf4\x69\x91\xc9\x64\x0c\x00\x09\x9d\x29\x75\x74\xd3\x7c\xf5\xd2\xd2\xe8\xd7\x5e\x7e\x92\xfa\x7a\xa6\x6e\x9c\x05\x48\xf7\xbb\xd7\x71\x6d\xee\x00\xf9\x9f\xd6\x46\x6b\xc6\x42\x53\xe3\xb5\x42\xca\xbe\x25\x34\xd1\x9c\x9c\x9c\x74\xef\xde\xbd\x0b\xd7\x75\xf7\xd4\xae\x50\x79\xd8\x54\x38\x10\x2c\x42\xf4\x5b\x52\x38\xf5\xa2\x51\xd5\x65\xc0\x56\xf9\xe2\x17\xbf\x28\xf2\xf9\xbc\x0e\x60\x08\xc0\x04\x18\x27\xc6\x2a\xc6\xc5\x2f\xdf\xc8\x7d\x35\x55\xd7\xb2\x1d\x27\xeb\x2e\xad\xe6\xe0\x00\x47\xf7\x8b\x94\x33\x86\x4b\x28\x17\xd2\x8d\xff\xbe\x3e\x51\xfd\xfb\x87\xd9\xfa\xcf\xea\xba\x2c\x83\x60\xc3\x0b\x39\x2c\x2d\xcb\x92\xab\xab\xab\x58\x5b\x5b\xf3\x63\x21\x0e\xd2\xc7\xa8\xf2\x48\xfa\xb1\xb1\x31\x31\x39\x39\x89\x89\x89\x09\x8c\x8d\x8d\x21\x91\x48\x08\xc0\x73\xfc\x23\x90\x39\x6c\x6b\xd9\xe3\xcf\x12\x97\x4e\xad\x0d\xff\x51\xae\x6a\x9c\x27\xc0\x6c\xbf\x31\x73\xab\x4f\x11\xbf\xfd\x75\x6e\xb7\x57\x6e\x6b\x72\xf3\xdf\xce\x6c\xfc\xe9\x4a\xa6\xf1\x01\x80\xca\xbd\x7b\xf7\x1c\x65\xee\xaa\xdf\xbd\x1a\xb4\xec\xb9\xb1\xa8\x0f\x71\x14\xf3\x84\xe9\xa3\xca\xe0\xe7\x5d\xbe\x7c\x59\xe4\x72\x39\x1d\xc0\x10\x33\x8f\x11\xd1\x7c\xda\xd2\x5e\xf9\xd2\x8d\xdc\x57\xc7\x2b\xc6\x34\xa9\x83\x07\xff\x4f\xf0\x8e\x60\xf3\x64\x18\x05\x98\x4d\x11\x7a\x01\xfb\xcd\x2f\x6b\x2d\xf7\x28\x6b\x86\xbc\xf3\x30\x5b\xff\xf7\x7b\xb9\xda\x7f\x15\x52\xf6\x2d\xcb\x90\x15\x10\x6c\xf6\xc2\x0c\x4b\x00\x92\x99\x65\xb1\x58\x84\x65\x59\x58\x5e\x5e\x86\x94\x12\xd7\xaf\x5f\x97\x00\x30\x32\x32\x22\x2a\x95\x8a\xf4\xf7\xea\xc0\x2c\x2c\x2c\x08\x4d\xd3\x10\x8f\xc7\x31\x3e\x3e\x0e\xc3\x30\xd0\x5a\x82\xdc\x8f\x32\xe7\x33\x55\x6c\xc4\xd6\xb2\x47\x4a\xf1\x33\xc7\x37\x12\x5f\x9a\xd9\x32\xdf\x8a\xb9\x34\xdd\xfe\x59\xa6\x65\x0a\xa8\xe7\xfe\xb2\x95\x6d\x35\xd9\x2a\xf0\xff\x9a\xf7\xc7\xa7\x34\xd4\xfc\xe8\x5f\xce\x3e\xfb\x4a\x35\xee\x2e\x01\xa8\x7d\xf0\xc1\x07\x72\x71\x71\xb1\x3d\xf6\x03\xdc\xbf\xf0\x7d\x44\x17\xba\x7d\x63\x0d\xca\x60\x51\x69\x10\xc9\x07\x20\xc8\x64\x00\x72\x00\xf2\x43\xb6\x38\xf7\x85\x3b\xa3\x7f\x9c\x2f\x26\xce\x04\x24\x99\x2a\x98\x29\x9c\x19\x4c\x81\xf8\xd6\xbb\xca\xda\xfc\x09\x49\x5c\xaf\xc5\xe4\xd2\x5a\xb2\xf1\xe3\xc7\xa3\x8d\x1f\x15\xd2\x8d\x8f\xb6\x12\xce\x5a\x53\xc8\xb6\x43\x5d\x6b\x2d\xad\xb6\x7f\x93\xaf\x92\x5b\x65\xed\x28\xb0\x40\x60\x41\x3a\xc0\x63\x24\xd1\x1a\x0f\x1d\x80\x1e\x77\x85\x39\x5a\x33\xa6\xa6\xb7\xe3\xe7\x66\xb6\xe2\x17\xc7\x77\x62\xaf\x9a\x8e\x38\x4a\x08\x06\x6a\x8d\xee\x55\xb0\x54\x89\xbf\x1b\xd9\xff\xa5\x9c\xf5\x0f\xff\x71\xb2\xf8\x75\x97\x78\xad\x56\xab\xd5\x5b\x4b\x33\x75\x4b\xbd\x04\xc3\x5e\xd3\x40\x58\x61\x15\x39\x88\xc4\x0a\xe7\x75\xab\x0f\x3f\xdf\x34\x4d\xf1\xc6\x1b\x6f\x60\x76\x76\x56\x10\xd1\x10\x33\x67\x89\x28\xaf\xbb\xb4\xf0\xea\xa3\xd4\x1f\xbe\xb8\x9c\x7c\x5d\xe3\x56\x58\x1b\xc5\xb8\xf7\x86\x10\x5d\x07\x38\x78\x8b\x22\x6e\x57\x40\xc7\xb6\x3f\xac\x4b\x97\x50\xb6\x0c\xf7\x71\x71\xd8\x59\xdc\x18\xb6\xaf\x6f\x8c\x34\xef\x94\x4d\xe7\xf1\x4e\xdc\xdd\xb4\x0c\x59\x93\xc4\x0e\x13\x24\x63\x97\x43\x1d\x00\x08\x82\x17\xcb\x5c\x30\xc5\x12\x4d\x61\xa6\xea\xfa\x58\xaa\xae\x4d\xe7\xaa\xc6\xc2\xd8\x4e\xec\xf4\xa8\x65\x9c\x49\x34\xc5\xac\x60\x8c\x04\x5b\x47\xca\x31\xb7\x8e\x09\xd1\xab\x39\xfb\x4d\x57\xcf\x79\x17\x96\x04\x3b\x1f\xcc\x6d\xff\xf9\x4f\x67\xca\x7f\x47\x44\xa5\x0f\x3f\xfc\x50\x46\x84\xd7\xeb\xb6\x0f\xf4\xab\xb5\xef\x46\xb7\x2f\xac\xc8\x55\xa6\x43\xa0\xea\x45\xc3\x0d\xe8\x55\xa7\x7d\x5c\xaf\xd7\xe5\xbb\xef\xbe\x2b\x2e\x5c\xb8\x20\x4f\x9d\x3a\x55\x83\xa7\x9a\x9c\xa6\xe0\xfa\x7b\x73\xdb\x95\xa7\x23\xf6\xf2\x1b\xf7\x46\xdf\x1e\xb2\x45\x2a\x60\x6f\xb4\x8e\x83\x8b\xaa\x74\x54\xa6\x6f\xb7\x74\x5c\x80\xfd\xc4\xf0\x3f\xb2\x87\xb1\x00\x16\x3a\x28\x33\xd2\xd0\x33\x23\xb6\xf6\xc2\xd1\x2d\x13\x2d\xcf\x74\x5b\x12\x2a\x8e\xc6\x1b\x0d\x4d\x96\x1a\x86\x2c\xd7\x75\x59\x96\x82\x6d\xe9\x49\x39\x10\xa0\xeb\x92\x62\x71\x47\x8c\xc4\x1d\x91\x89\x37\x45\x4e\x97\x94\x69\x31\x52\xac\xd3\x2e\x28\xed\xf2\x25\x29\x7b\x4d\x68\xaf\xd8\xec\x11\xf5\x5b\x19\x3a\xdc\xc7\x30\x96\x14\x90\xc9\x46\x3b\x72\x87\x9e\xcb\xe5\xfc\xe5\x17\xc3\x0f\x7b\xf8\x3c\xea\xde\x45\x95\x3f\x17\xd6\x7e\x63\x6b\x0f\x72\x1c\x4e\xf2\xfd\xf7\xdf\x87\x6d\xdb\x78\xe1\x85\x17\x6a\x9a\xa6\x49\x78\x86\x77\xfd\xce\x61\xab\x56\x1c\x6e\xae\x7e\xfe\xee\xe8\x1f\x1c\xd9\x8e\xe7\x03\x12\x8b\xe0\x31\x4b\xc8\xf6\x25\xf5\x0d\x14\x08\x49\x81\x50\xfd\x7e\x58\x20\x10\x73\x4c\x30\x65\x75\xa6\xac\xe9\x10\xd0\x50\x86\xa6\x9b\x2e\x0b\x49\xc8\x40\xbb\x28\xd8\xae\xa0\x6b\x72\xa7\xd5\x6a\x1d\x0a\xd4\xe9\x8f\x55\x89\xbb\xa5\x1f\xcc\x97\xbe\x71\x2f\x67\xfd\x2b\x76\x4b\x5b\x19\xda\x03\xd1\xd2\x26\x4c\xb7\x4b\x03\x3d\x0f\xd6\xbe\x5c\xa6\x95\xbc\xf0\xbe\x17\x0d\x01\xa0\xd5\xd5\x55\x6c\x6e\x6e\x62\x6e\x6e\xce\x21\xa2\x26\x80\x2a\x80\xaa\x15\xe3\xcd\x3b\x87\xad\x7b\x92\xa0\x8d\x55\x62\x47\x34\x86\xae\x7a\x61\xa8\xd2\xa0\x1d\x37\xbb\x35\xd5\x11\x1c\x7e\xff\x0d\xa0\x63\xc3\x78\xa5\x07\x87\xd5\xae\x49\xc1\x70\x14\x2a\x56\x87\x1f\x7d\xe3\x3d\xe8\x9a\x1c\x9e\x09\xd8\x0b\x96\x4b\x2c\xef\xe5\xac\xeb\xef\x9c\x2a\xfe\xed\x5a\xca\x7e\x0f\x84\x47\xf0\x56\xbf\xb6\x6f\xdd\xba\xc5\x4f\x9f\x3e\xed\x36\xb5\xa0\x1e\x47\x4d\x4d\xf9\xe7\xe1\xe9\x9b\x7d\x63\xed\xcb\x65\x3a\x74\x81\x28\x1a\xea\x51\x9f\xb6\xb7\xb7\xe5\xd5\xab\x57\xf9\xf8\xf1\xe3\xd2\x34\x4d\xa7\xe5\x26\x52\x63\x81\x9d\x95\x74\xe3\xc9\xf2\x68\x63\x2d\x5b\x33\xc6\x93\x0d\x2d\x43\xed\x70\xc6\xfe\x83\xdc\x62\x01\x4f\xdd\xb5\x9f\xfa\xce\x5b\xbc\x2f\x15\x3a\xab\x2f\xfa\xef\x62\x07\x85\x45\xad\xe3\x36\xff\xb5\x9f\xa9\x8e\x3a\x0c\x63\x75\x5c\x93\x83\x18\x7b\xc5\xda\x89\x3b\xa5\x1f\x1d\x2b\x7d\xfb\xc7\x47\xcb\xff\xdc\x30\xf8\x1a\x08\xf7\x99\xf9\x19\x80\x5a\xa9\x54\x72\xbf\xf7\xbd\xef\xa9\x52\x45\x65\x02\x20\xc8\x24\x1c\x2a\x1f\xe4\x7c\xcf\x58\xfb\x76\x99\x8e\xd8\xab\x29\x4a\x8a\xa9\x65\x0c\x00\xd7\xaf\x5f\xe7\x6c\x36\xeb\xfb\x28\xd5\x01\xd4\x18\x5c\xa9\x9a\xb2\x78\x77\xac\x76\xb7\x66\x48\x67\xac\x12\x9b\x32\xa4\x88\xed\xd2\x7a\x14\x62\x92\xb6\xfa\xe8\x68\xad\xa0\xda\x44\xe7\xef\xe5\xe7\xc2\x52\x42\xe9\x84\x54\x57\xbb\xe3\xa4\xe6\x2a\x12\xc9\xe3\x18\xf8\xf2\xb4\x9d\x3f\x00\x96\x43\xec\xdc\x98\xa8\x5e\xf9\xcf\x85\xcd\x6f\xac\xa4\xed\x1f\x48\xe2\x9b\x00\x1e\x90\xb7\x8e\x7f\x65\x7b\x7b\xdb\x7d\xe7\x9d\x77\xd0\x6c\x36\xa3\xa4\x8e\x00\x94\x0e\x04\x53\xd4\x7d\x0c\x6b\xb0\x7d\x63\xed\xdb\x65\x5a\xa9\x03\xa5\x4c\x95\xfb\x50\x8e\x29\x54\xd6\x3e\xbf\x7f\xff\x3e\x59\x96\xc5\x53\x53\x53\x8e\x10\xa2\x01\xa0\x46\x44\x65\x29\x50\x5e\x4b\x36\x1e\xdf\x1a\xb7\x96\x74\x97\x12\x59\x4b\x3f\x2c\x18\x9a\xda\x48\xcf\xa8\xe6\x0e\x97\x80\x3b\xb7\xc6\x8f\xf7\xa8\x74\xa6\x73\xdb\x3a\xb9\xfb\xc3\xa2\x76\x9d\x60\x60\x0a\x95\x45\x3b\x5d\x25\xe5\x1a\xea\x11\x0f\x80\xe5\x12\xe4\x72\xa6\xf1\xe0\xdd\x93\x9b\xff\xf8\x8b\xa9\xea\xb7\x1b\xba\xbc\x46\x44\x77\x88\x68\x15\x40\x49\x4a\xd9\xb8\x7b\xf7\xae\x6c\x31\x97\x3a\x0b\x1f\xf5\x25\x22\x4a\x8d\x45\xdd\x27\x20\x38\xa3\xbf\x6f\x2c\xe5\x59\x3e\x90\xf4\x5c\x5f\x05\xde\x7e\xfb\x6d\xd1\xfa\x83\x38\x06\x60\x04\x40\x16\xc0\x34\x18\xb3\x63\x15\xe3\xec\x67\x9f\xa4\x7e\x67\xae\x68\x2e\x18\xae\xd0\x15\xad\x12\xec\xae\xb2\xdf\x65\x83\x47\xd0\xb4\x69\xf7\x82\xa5\x26\x65\xd6\x37\xb8\x30\x72\xe7\x3c\x24\x48\x83\xed\xe9\x82\x25\xc1\x58\x4f\xda\xcb\x3f\x9f\xd9\xf9\xfe\x83\x43\xd6\x4f\x1c\xe2\x87\x44\xb4\x0c\x2f\x50\x69\x99\x99\xed\x5a\xad\xe6\xbc\xf7\xde\x7b\x78\xf4\xe8\x51\xbf\x39\xcc\x5e\x53\x0a\x83\xa4\x7d\x63\x51\xa8\x82\x9f\x7a\x4d\x4b\xf4\x9b\x0f\x19\xb4\xde\xae\x0e\x08\x21\xc4\xb1\x63\xc7\x70\xe1\xc2\x05\xc4\x62\x31\x9d\x99\x4d\x22\x1a\x61\xe6\x31\x00\x53\x02\x34\x3d\xbe\x13\x3b\x7b\x6e\x39\xf9\xfa\x5c\xd1\x5c\xd0\x25\xe9\x1d\x75\xb3\x7b\x52\x32\x28\x0f\x54\xd5\xb3\x7b\x4d\xec\x8e\x24\xeb\x87\xd5\x71\x01\x57\xa7\x25\x42\xca\x33\x74\xce\x80\xff\x85\x42\xcd\x03\x76\x61\x31\xb1\x5c\x4f\xda\xab\x57\xa7\x2b\xef\xdd\x3f\x64\xfd\xc4\xd1\xf8\x31\x33\xfb\x8c\x55\x02\x50\x67\x66\x67\x69\x69\x49\xbe\xff\xfe\xfb\xbe\xd4\xea\x36\x87\x15\x95\x37\x08\xcd\x81\x61\x85\x9f\xa1\xfd\xcc\xe8\x77\x4b\xcf\x85\xf5\xe6\x9b\x6f\x8a\xd9\xd9\x59\xa1\x69\x9a\x0e\xc0\x64\xe6\x14\x11\xe5\xe0\x7d\xd3\x9c\xca\xd6\xf4\x93\x9f\x2e\x8c\x9c\x3f\xfe\x6c\xe8\xcc\xb0\x2d\x46\x3a\x9f\x5a\xba\x49\x8d\x8e\xa8\xf2\xe7\x99\x02\xa5\x1c\xf1\x6f\x40\x17\xac\xce\xa4\x67\x04\x86\x32\xcb\x1f\x2d\xf5\x42\x76\x21\x03\x20\x46\x53\x63\xfb\x49\xa6\x71\xff\xa3\xa9\xca\x07\x4f\x32\xf5\x6b\x52\x60\x19\xc0\x2a\xbc\xc0\x5c\x25\x00\x35\x66\xb6\xd7\xd7\xd7\xe5\xb7\xbe\xf5\xad\x41\xef\xc5\x20\x13\xe6\x83\xa6\x7d\x61\x51\x1f\xc2\x5e\x93\xab\xea\x45\x7a\xcd\xfc\x46\xe1\x00\xdd\xb1\x02\xe7\x97\x2f\x5f\x16\x87\x0e\x1d\x12\x44\xe4\x4b\xb4\x14\x80\x2c\x33\x4f\x10\x68\x62\xc8\x16\x73\xc7\x8a\x89\xcf\x2c\xac\x0f\x7f\x66\x7c\x27\x36\xa5\x33\xe9\x81\x5b\xd8\x11\x4d\x68\xbd\x2c\x06\x7c\xd1\x02\x64\x4a\x5e\xe7\x9b\x66\x08\x4b\x51\x85\x1e\x1d\xb7\x24\x18\x75\x95\x60\x3e\x9d\xaf\x3e\xfd\xeb\x48\x30\xca\xa6\xb3\x79\xf7\xb0\x75\xe3\xe6\x78\xf5\xc3\xad\x21\xe7\xae\x04\xaf\x12\xd1\x53\x84\x18\xab\x56\xab\xc9\x6b\xd7\xae\xc1\x8f\xdb\xdd\x63\x9c\xbb\x8d\x79\xaf\x89\xf1\x8f\x0d\x2b\x4a\x45\x76\x9b\xf6\x87\x52\x3e\x88\x18\xed\x57\xa7\x1f\x96\x27\x62\x89\x30\x3b\x3b\x8b\x73\xe7\xce\x21\x97\xcb\x09\x78\x71\x73\x4c\x00\x23\xcc\x9c\x69\x49\xb5\x31\x92\x98\xc8\xd5\x8c\x63\xc7\x36\x12\x2f\xe4\x8b\x89\x13\xd9\x9a\x31\xa6\x49\xe8\xaa\x8a\x0c\x0a\x93\x90\x49\x1d\x32\xf0\xd1\x2e\xe9\xd4\xf7\x67\xdf\x3b\x0e\x90\x9d\xaf\x0b\x3e\xa6\x3f\x33\x1f\x64\xba\xc0\xfb\xbc\xac\xc4\xdd\xf2\x93\xd1\xfa\xfd\xdb\x87\xad\x8f\x56\xd3\x8d\x9b\x8e\xe0\x55\x46\x3b\x54\xcb\x26\x33\x97\xc9\x8b\xd8\x61\x57\xab\x55\xb9\xb8\xb8\x88\xd6\x32\x96\xe1\x14\x65\xde\xf8\x63\x89\x88\xfc\x70\xf9\xc7\x8e\x45\xa1\x4c\xb5\x52\x14\xc3\x75\xe3\xd6\x6e\x69\x50\xdd\x1d\x75\x8d\x5d\xd7\x9a\x9b\x9b\x13\x67\xcf\x9e\xc5\xd8\xd8\x98\xe7\xa9\xe0\x45\x07\x33\x89\x28\xa5\x30\x5b\x4e\x48\xe4\x0e\xd5\x8c\xb9\xe9\x52\xfc\xc4\xcc\x96\x99\x1f\xaf\xc4\xa6\x12\xb6\x18\x22\x90\x08\xdb\x50\x9d\x14\xb6\xd7\x00\xa0\x13\xb7\xbb\x75\xda\xa6\x53\xed\xa6\xdd\xea\xb2\x73\xce\x60\xd8\x1a\xdb\x9b\x43\xcd\xa7\x2b\x99\xc6\xc3\x47\xa3\xf5\x3b\xeb\x49\xfb\x9e\xad\xc9\x35\xf6\x18\x6a\xa3\x15\xd0\xb4\xd4\x5a\x50\xa6\xce\xcc\x4e\xad\x56\x93\x57\xaf\x5e\x0d\xbb\x14\xf5\x1a\xa3\x41\xca\xa2\xd2\xc7\x8a\xe5\x4b\x30\x74\x01\x8f\x4a\x51\x52\x0b\x03\x9c\xef\x27\xed\xc2\x10\x42\x60\x7a\x7a\x1a\xf3\xf3\xf3\x98\x9f\x9f\x07\x33\xeb\xf0\xbc\x18\x4c\xf2\x82\xa7\x8e\x30\x73\x0a\x40\x96\x88\x32\xc4\xc8\x9a\x4d\x91\x1b\xb5\xf4\x99\xf1\x9d\xd8\xec\xe4\x76\x7c\xfa\x50\xcd\x18\x4b\x36\xb4\x94\xe1\x52\x4c\x9d\x3c\xe8\xc4\xb0\xe8\x48\x9d\xc0\xdf\x50\xbe\xb4\x62\x04\x54\xa4\xea\xea\x2d\x09\xd2\x32\xdc\x4a\x71\xc8\xd9\x78\x9a\xb4\x57\x0b\xa9\xc6\xe3\x8d\xe1\xe6\x72\x35\xee\x16\x5c\xc2\x26\x08\x25\x66\xde\x84\xc7\x50\x15\x66\xae\xf8\xd2\x8a\x88\x64\xb1\x58\x94\xb7\x6f\xdf\xc6\xed\xdb\xb7\x55\x03\x7e\x2f\x92\xa5\x57\xfe\x2f\x1d\xab\x9f\x0d\xe6\xa7\x7e\x76\xda\x41\x19\x8e\xbd\xca\x22\x69\xcf\x9d\x3b\x27\x4e\x9f\x3e\x0d\xd3\x34\x7d\x3f\x2c\x1d\xde\x87\x5f\x13\x9e\x7b\xd0\x08\x80\x14\x80\x11\x30\x52\x00\x52\xc4\x18\x89\xbb\x22\x9d\xae\xeb\x63\x69\x4b\xcb\xa5\xea\x7a\x36\x59\xd7\x53\xc9\x86\x96\x32\x1d\x61\xc6\x1c\x32\x0d\x57\xc4\x84\xe7\x31\x21\xa8\x35\x58\x4c\x90\x92\x58\x3a\x82\x1d\x5b\x63\xbb\xa1\xcb\x7a\x35\xe6\x56\x2a\x71\xb7\x54\x36\x9d\x52\x29\xe1\x6c\x6c\x9b\xce\x46\x35\x26\x8b\xae\xe0\x32\xbc\x95\x20\xcb\xe4\x05\x30\x2d\xc3\xfb\xd9\xb5\x02\x2f\xba\xae\xdd\xda\x1c\xdb\xb6\xe5\xa3\x47\x8f\x70\xf3\xe6\x4d\x28\x51\x63\xf7\x32\x26\xfd\x6c\xe5\x4f\x0c\x8b\x94\x0c\x20\xc8\x7d\x83\x70\xfa\x7e\x6c\xb0\x28\x9c\x6e\x58\x51\x18\x5d\x07\xe1\xe2\xc5\x8b\x62\x66\x66\x06\x23\x23\x23\x02\xf0\x1c\xfe\xe0\x31\x5c\x0c\x9e\x84\x33\xe1\x39\x3e\xfa\xd2\x4e\x3d\x8f\x01\x30\xc1\xd0\x09\x88\x69\x92\x74\xc1\xd0\x89\x49\x17\x0c\xcd\xfb\x46\xce\x4d\x49\x90\xae\x60\x5b\x12\x1c\x06\xdb\xe4\xc5\x56\xac\x93\x17\x5c\xbe\x0e\xa0\x06\xcf\x30\xaf\xf9\x5f\x27\x5a\xf9\xbe\xa3\xa3\xc3\xcc\x8e\x6d\xdb\x72\x65\x65\x05\x0f\x1e\x3c\xc0\xf2\xf2\x32\x1a\x8d\xc6\xa0\xa6\x47\x3f\xe3\x7b\x2f\x66\xcc\xc7\x8e\x75\x90\x12\x6c\xaf\xf6\xd9\x20\x69\x2f\x9d\x0a\xa4\xd7\x5e\x7b\x4d\x4c\x4c\x4c\x20\x93\xc9\x40\x08\x21\x5a\xb4\xba\xb2\x8f\x75\xd9\xab\x9b\x3f\x50\xea\xe0\x4b\x66\x96\xad\xb5\x6a\xfd\xcd\x8e\xda\x87\x3d\x67\x2d\xcb\x92\x85\x42\x01\x0f\x1e\x3c\x40\x2b\x36\xc0\x20\xfd\xdc\x6b\xd9\xaf\x14\x16\xf5\x21\xee\x67\x88\x47\xd5\xed\x65\xd3\xed\x85\x91\x7b\xbd\x0c\x74\x7b\xf2\x22\xdb\xfc\xa9\x4f\x7d\x4a\x1c\x39\x72\x04\xd3\xd3\xd3\x30\x4d\x13\xf1\x78\x5c\xa8\xde\xa8\x61\xcf\xd4\x96\xaa\x85\x5f\xd6\xca\x07\xd0\xf6\x6e\x95\xfe\x31\x3a\x0c\x27\xd5\x7c\xc7\x71\xa4\x65\x59\x28\x14\x0a\x28\x14\x0a\xb8\x7d\xfb\x76\xb7\xf6\xf6\xeb\x77\x98\xa6\x57\xdf\x7f\xe5\xb0\x06\x65\xb0\xa8\xb4\x5f\x29\x75\x10\xd2\x2d\x8a\xf9\xb0\x57\xdc\xb3\x67\xcf\x8a\x6c\x36\x8b\x64\x32\x09\x5d\xd7\x71\xe8\xd0\xa1\x36\xbe\xea\x26\x1d\x72\x99\xf6\xcf\x25\x11\xa1\x5c\x2e\xa3\x56\xf3\xc2\x05\xac\xac\xac\xa0\xd1\x68\x60\x65\x65\x05\x5b\x5b\x5b\x07\x25\xcd\x0f\x52\x33\x7c\x22\x58\x22\xe2\x38\x6c\x03\x45\xd9\x44\x51\xb4\x6a\x5e\x54\x7e\xbf\xb4\x9f\xeb\xf4\x2b\x1b\x08\xcb\x97\x5a\xb1\x58\xac\x5d\x36\x33\x33\x23\x00\x60\x7e\x7e\xbe\x9d\x97\x4e\xa7\x77\xd1\xf5\x68\x4f\xb7\x36\xec\xa5\xfd\xbf\xd6\x58\x51\x9f\x8a\x80\xee\x86\x9f\x7a\xdc\x8b\x26\x9c\xa2\x8c\xfc\x30\xed\xa0\x46\x7e\xb7\xbc\x7e\xf5\x0f\x12\x2b\x4a\x75\x77\xeb\x5f\x2f\x95\xff\x7f\x05\xeb\x97\x9a\x0e\xf2\xa2\x9f\x04\xd6\x20\x74\xff\x8f\x15\x22\x54\xb7\x70\x5e\x2f\x9a\xf0\xbe\x17\x4d\xb7\xad\x17\x56\x54\x59\xbf\xf2\x8f\x1b\x2b\x5c\x27\x8c\x17\x4e\x51\xb4\xfd\xce\x7f\xd3\xb0\x0e\x3c\xf5\x6b\xcc\x5e\xe8\xfd\xf2\xa8\xce\x7e\xd2\x58\xbd\xae\x71\x50\xe9\xd7\x1a\x6b\x3f\x17\xec\x25\x0d\x7a\xd1\xf5\x4a\x61\x7b\x2e\xaa\x7e\x94\x7d\x10\x85\x1f\xc6\x8a\x92\x50\xcf\x8b\xb5\x17\x26\xed\x45\xf3\x1b\x8f\xf5\xbf\x71\x3d\xfb\xd8\x8b\xb7\x8f\xd8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xce\x70\x75\x8d\xd9\x5c\x00\x00") -func web_uiStaticAppleTouchIcon152x152PngBytes() ([]byte, error) { +func web_uiV1StaticAppleTouchIcon152x152PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticAppleTouchIcon152x152Png, - "web_ui/static/apple-touch-icon-152x152.png", + _web_uiV1StaticAppleTouchIcon152x152Png, + "web_ui/v1/static/apple-touch-icon-152x152.png", ) } -func web_uiStaticAppleTouchIcon152x152Png() (*asset, error) { - bytes, err := web_uiStaticAppleTouchIcon152x152PngBytes() +func web_uiV1StaticAppleTouchIcon152x152Png() (*asset, error) { + bytes, err := web_uiV1StaticAppleTouchIcon152x152PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/apple-touch-icon-152x152.png", size: 23769, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-152x152.png", size: 23769, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticAppleTouchIcon57x57Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x26\x14\xd9\xeb\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x39\x00\x00\x00\x39\x08\x06\x00\x00\x00\x8c\x18\x83\x85\x00\x00\x13\xed\x49\x44\x41\x54\x68\x81\xc5\x5b\x79\x6c\x5c\xc7\x79\xff\x66\xde\xdb\xfb\xe0\x5e\x5c\x2e\x97\x2b\x8a\xf7\x25\xea\x22\x25\x9a\x92\x65\x59\xb2\x6c\x59\x91\x64\xa5\xb1\xdc\xc4\x75\x1a\x07\xad\x13\x04\x81\x9b\x06\x49\x0a\x18\x41\x11\x04\x45\x10\xa4\x40\x11\x18\x41\x9b\xa3\x6d\xdc\x20\x71\x85\x34\xb5\x5b\xc7\xb1\x22\x59\xa2\x1d\x2b\xba\x4c\x4b\x34\x4d\x89\x14\xc5\x4b\xe4\xf2\x5e\xee\x7d\xbf\x7b\xa6\x7f\x2c\x77\xb9\xbb\x5c\x51\xa4\xac\xb8\x1f\xb1\x1c\xee\xbc\x99\x6f\xe6\x37\xc7\x77\x3e\x22\x00\xc0\x00\x40\x96\xcb\x2c\xe5\x7f\x2f\x7e\xb6\x16\x6d\xa4\xed\xfd\xf6\x5b\xab\x6d\x49\x1c\xd9\x8a\xb5\x06\xd8\xc8\xa4\xef\x07\xe0\x46\x69\xc3\x73\x45\xf7\xe8\xf4\x40\x48\xa7\xd3\x01\xcb\xb2\xa0\xd3\xe9\x40\x92\x24\x10\x04\x01\x04\x41\x00\x45\x51\xfe\xd4\x43\x03\x40\x06\xe4\x03\x25\x9b\xcd\x86\xdd\x6e\x37\x38\x9d\x4e\xec\xb0\xdb\x59\xa7\xce\x62\x36\xcb\x6a\x97\x56\xc2\x36\x96\x20\x2d\x41\x54\x16\x58\x1a\x4f\xab\x14\x7f\x40\x4e\x04\x83\xb1\xb0\x18\x08\x04\x64\x9f\xcf\x07\xb3\xb3\xb3\xe4\x41\xcf\x07\xe0\x01\x81\x34\x1a\x8d\xb8\xa9\xa9\x09\x9a\x1b\x9b\xb4\x4d\xe0\xd8\xb1\x39\xac\x7d\xbc\x2a\xae\x79\xd8\x91\x54\xb5\x6b\x65\xec\x02\x00\x0c\x80\x00\x51\x0a\x00\x08\x28\xa2\x00\x00\xa0\x20\x88\x47\xf5\xd2\x98\xcf\x24\xf6\xcf\x58\x85\x77\x27\xcd\xc9\x0b\x23\x73\x93\xe1\x91\x91\x11\xb2\xb0\xb0\xf0\xc0\x00\x7f\x2c\x90\x56\xab\x15\x77\x76\x76\xe2\xad\xae\xfa\xea\xed\x4b\xe6\x17\x5a\x97\xf4\xcf\x1a\x05\xa6\x6e\x19\x43\x01\x51\x00\x40\x28\xfb\x07\x00\xa5\x85\x83\x53\x04\xa0\x20\x48\x7a\xed\xdc\xdb\x83\x95\xa9\x57\x06\xe8\xc2\x85\x8f\x6e\x0c\x88\x13\x13\x13\x1f\x1b\x6c\x31\xc8\xac\xa4\x2d\xfe\x5e\x50\xaf\x56\xab\xf1\xee\xdd\xbb\x71\x57\x6d\x7b\xcd\xde\x59\xcb\x4b\x2d\x4b\x86\xbf\x64\x08\xd2\xe6\xc1\x29\x0d\x32\xf7\x9b\x2e\xb7\xc8\x43\x9d\x57\x52\x04\x10\x34\x48\x7d\xef\xd7\xc4\xbe\x7f\x1d\xe6\xdf\xbe\x7c\xe5\xb2\xb8\xb4\xb4\x94\x65\x95\x3f\x9f\x62\x79\x52\xfc\x8c\x00\x00\x46\x6b\x74\x28\xee\x08\x00\x00\x1e\x8f\x07\x1e\xdb\x7f\x40\xff\x48\xa8\xe2\x6f\xbb\x66\xcc\x2f\xa9\x14\x6c\xbe\x4b\xbf\x8d\x51\x31\x5e\x00\xa0\x88\xc2\x8c\x55\x78\xfb\xdd\x86\xf0\xb7\x2e\x8d\xf7\x8f\x5c\xbf\x7e\x1d\x08\x21\x1b\x56\x53\xcc\x32\xdb\xb5\x8e\x6d\xee\xd9\xee\xdd\xbb\xe1\xf8\xae\x83\x2d\xcf\x8c\xba\x5f\x6f\xf5\x1b\xbe\xc8\x50\xa4\xc9\xf5\x2e\xf1\xa1\x08\x80\x60\x20\x29\xb5\x92\x8a\xe9\xe5\x70\x4c\x27\x47\x53\x1a\x25\x29\x31\x54\x61\x09\x62\x31\x00\x46\x08\x56\xce\x71\x76\x24\x84\x00\x50\x66\xb7\x2d\x3c\xdb\xb0\x65\xc9\xf8\x79\x5d\x8d\xdd\x1b\x2b\x83\x5b\x73\x73\x73\x1b\xb9\x62\x04\x00\x10\xbb\x9e\x96\x18\x63\x38\x78\xf0\x20\x3e\x60\x6b\x3b\x7c\xec\x23\xfb\x2f\xb5\x32\xe3\xb8\x3b\x57\x0a\x3e\xb3\x38\x33\x69\xe7\x06\xe6\x2c\xc2\x87\x21\xbd\x34\x2c\x31\xd4\x0f\x00\x69\x40\x20\x03\xa5\x18\x00\x69\x31\x05\x8b\x99\x67\x1b\xdc\x71\xf5\xce\x9a\xb0\xae\xa3\x26\xac\x6d\x51\x2b\x58\x5d\x62\x6d\x81\x21\x60\x4c\x6a\x14\xa3\xd5\x6a\x2d\xbe\x4e\xf7\x9c\x3a\x00\x00\xbb\x9e\x4e\x87\x0f\x1f\x66\x1f\xd7\x36\x3f\xfb\xe4\xa0\xfd\xdf\x31\x05\x2d\x85\xd5\x92\x45\xc2\x54\x1c\xaa\x4c\x5d\xbd\xe9\x4e\xbe\x16\xd5\xc9\xbd\x14\xe8\x5c\x3c\x1e\x4f\x06\xbc\x01\x31\x16\x8b\x11\x8e\xe3\x40\x14\x45\x40\x08\x81\xc1\x60\x00\x93\xc9\x84\xed\x76\xfb\x3b\xa1\x72\xbb\x7e\xb8\x22\xe5\x54\x2b\xb8\xbd\xd9\xaf\x3f\xd9\x39\x6b\x3a\x52\xc6\xb3\xb6\x7c\xde\x97\xea\xa2\xff\x39\x6f\x16\x4e\x0f\x5e\x19\x24\x1b\x04\x09\x00\xeb\x90\xae\x87\x0e\x1d\x62\x0f\x9b\xdb\x3f\x7b\xf4\xb6\xfd\x17\x98\x22\xf5\xea\xab\x43\x61\xb8\x22\x7d\xed\x6a\x6d\xf4\xc7\x29\x0d\xb9\x18\x89\x44\x7c\x23\x23\x23\xa2\xd7\xeb\x85\x44\x22\x71\xcf\x09\xb1\x2c\x8b\xab\xab\xab\xa1\xa9\xa9\x09\x7b\x3c\x1e\x0b\x0b\x78\xdb\xd6\x45\xe3\x97\xf7\x78\xcb\xfe\x4c\x23\x63\xed\x58\x79\xfa\xda\xd9\xd6\xd0\x17\x3f\x1a\xf8\x68\xec\xfa\xf5\xeb\xf7\x25\x69\xd7\x04\xd9\xd1\xd1\x81\x8f\x37\xed\x7d\xec\xe4\x8d\xf2\x37\x59\x82\xf5\x79\x32\x01\x00\x00\xd2\x6a\x25\x79\xbe\x39\xfc\x93\x69\x2b\xff\x8b\x70\x24\xec\xfd\xe0\x83\x0f\xc4\x8f\xa3\xd0\xcd\x66\x33\xde\xb5\x6b\x17\xae\xaf\xaf\x77\x98\x04\xf6\x70\xf7\xb4\xf9\xaf\x2e\xd6\x47\xff\x61\xd2\x37\x7b\xf5\xec\xd9\xb3\x32\xa5\xb4\x14\xef\xbb\x1d\xe1\x5c\x7d\xb1\x74\xcd\x95\x1e\x8f\x07\x9f\x3c\x74\xbc\xe6\xb9\xfe\x8a\x3f\x1a\x45\xd6\x53\xa0\x1a\x28\x05\xbf\x49\x9a\x7b\x6b\x4b\xf0\xdb\x31\x95\x78\xe6\xfa\xf5\xeb\xd1\xa1\xa1\xa1\x52\x92\x8f\x14\x0d\x88\x8b\xea\x4b\x4e\xcc\xed\x76\xe3\x47\x1e\x79\x44\x6d\x36\x9b\x2d\xf1\x78\x3c\xfa\xe6\x9b\x6f\x8a\x3c\xcf\x17\xcc\xd1\x66\xb3\x41\x6d\x6d\x2d\xa8\xd5\x6a\x98\x9f\x9f\x87\x99\x99\x99\x52\x63\x15\xa8\x90\x02\xd2\x68\x34\xf0\xcc\x33\xcf\x68\x9f\x9d\xda\xfc\x5a\x7d\x48\x77\x14\xa0\xf0\x88\x2e\x98\x85\xc9\x37\xb7\x06\x5e\x8c\x08\xc9\x8b\xe7\xce\x9d\xe3\x83\xc1\xe0\x7a\x54\xd0\x5a\x9e\xce\x6a\xb4\x18\x83\xc3\xe1\x80\x50\x28\x54\x6c\xe3\x92\xf6\xf6\x76\x7c\x6c\xfb\xfe\xb6\xdd\xb3\xe6\x6f\xa8\x15\x64\x1c\x72\xa5\x7e\x79\x21\x31\x72\xfe\xfc\xf9\xf3\x72\xa9\x31\x4a\x4a\xd7\xdd\xbb\x77\xe3\x9d\xa9\xf2\xe7\xea\x42\xda\xa3\x14\x68\x46\x17\xa0\x8c\x0a\x0f\x1a\xc4\x85\xdf\xb5\x07\x5e\xf4\x27\x23\x17\x4e\x9f\x3e\x2d\xa6\xd3\x69\x80\xb5\xf5\xd6\xdd\x3c\x9d\x35\x75\x1d\x21\x04\xfc\x7e\xff\xaa\x7a\x9b\xcd\x86\x0f\xec\xda\xeb\x7e\xa6\xcf\x79\x4e\x2f\x32\x6e\x00\x0a\x75\x41\xdd\xd3\xe2\xf6\xa6\xa7\xe6\xb7\xcc\x9f\xbf\x75\xeb\xd6\xaa\x31\x56\x0d\x64\xb5\x5a\x61\x5b\x53\x9b\xf3\x91\xc9\xb2\xef\x02\x5d\x56\x76\x00\x80\x00\x01\xcf\x2a\xe9\xb7\xb6\x04\x5f\x0a\xf2\xf1\x8b\x79\x00\x3f\x51\xaa\xa9\xa9\x01\x4f\x5c\xfb\x78\x06\x20\x00\x42\x08\x10\x45\x6c\x63\x50\xff\xb9\x9a\x9a\x9a\x92\x9b\xb6\x4a\x85\x74\x76\x76\xb2\xdb\x16\x4d\x5f\x31\x0a\x8c\x07\x21\x9a\xb1\x31\x51\xe6\x98\xfe\xa1\x31\xf2\x93\xb0\x4a\x38\x7d\xee\xf7\xe7\xf8\x74\x3a\xfd\x27\xf1\x18\xee\x45\x2c\xcb\xe2\xa4\x46\x49\x02\xa2\x99\x49\x2d\x4b\xc2\x94\x5a\x49\x33\x0c\x53\x52\x08\x15\xec\xa4\xd9\x6c\xc6\x0d\x9b\xeb\x1c\x3b\xe7\x8c\x5f\x02\x8a\x80\x2e\xef\x22\xa5\x08\xa6\x6c\xfc\xc0\x78\x39\xf7\xaf\xbd\xbd\xbd\xf1\x70\x38\xfc\xff\x02\x10\x00\x60\x61\x61\x01\xfc\x46\xa9\xf7\x43\x4f\xe2\x74\xf6\xa0\xcd\x5b\x84\xb1\x1b\xee\xe4\xab\x8b\x8b\x8b\x62\xa9\x3e\x05\xdb\xdb\xd2\xd2\x02\xf5\x21\xdd\x09\xa3\xc8\xb8\x57\x74\x0b\x02\x82\x28\xb9\x52\x17\x7b\xd9\xb7\xe4\x9b\x19\x1e\x1e\x7e\x10\x00\xef\x29\xf6\xef\x46\x73\x73\x73\xe4\xf6\xc8\x6d\x1f\xb4\xb4\x7e\x7d\xa0\x2a\xf9\x9a\x8a\x20\x7d\x44\x27\xf7\x86\x23\xe1\x91\x81\x81\x81\x92\x7d\xf2\x41\xe2\xc6\xc6\x46\x6d\xeb\xa4\xe1\x73\x99\x23\xb0\x22\x4f\x27\xed\x5c\x5f\x48\x2f\xbd\x73\xed\xdd\x6b\xf2\x46\x26\xb4\x4e\x5a\x8f\xe7\x53\x20\x31\x2f\x5d\xba\x44\x96\x96\x96\xbc\xb5\xb5\xb5\x73\x2c\xcb\xc2\xe2\xf0\xa2\x3c\x38\x38\x08\x92\x24\x95\xe2\x03\x6c\x96\x41\x79\x79\x39\x58\x34\x46\x57\x75\x54\xb3\x37\xdf\x46\xa0\x08\x60\xd0\x9d\xfa\x8d\x6f\xc9\x17\xf4\xf9\x7c\xc5\x03\x6e\xc4\x1b\x28\x56\x19\x6b\xf1\x59\x25\x91\x9d\x4e\x27\xec\xd8\xb1\x03\x3b\xcc\x56\x7d\x82\x4f\x8b\xb7\x86\x6f\xc9\xe7\xce\x9d\x93\x01\x00\xea\xea\xea\xe0\x33\x27\x3e\xad\xad\x52\x5b\x9d\x01\x25\x19\xbe\x71\x7b\x28\x39\x38\x38\x98\xe3\x95\xdb\xc9\xaa\xaa\x2a\x70\xc7\x35\x7b\x33\x7e\xe1\x8a\x5d\xc3\xa9\x48\x7c\xd6\xc2\x9f\x1f\xb9\x38\x92\xbf\x8b\xeb\x26\xbd\x5e\x0f\x2d\x2d\x2d\xe0\x72\xb9\xd4\x46\xa3\x11\xf3\x3c\x4f\xfc\x7e\xbf\x3c\x3a\x3a\x0a\x91\x48\x64\x5d\x3c\x36\x6d\xda\x04\x4f\x1f\x3c\x5a\x7d\x64\xcc\xf1\xe3\xaa\x19\xcd\xbe\x88\x5e\x1a\xeb\x79\xa8\xfa\x6b\x6f\x99\x2e\x5f\x4b\xa7\xd3\x70\xb2\xeb\x89\x1d\x4f\xdd\x72\xbc\x6a\xe1\xd8\x36\x4e\x45\xe6\xce\xb4\x3a\x5e\xd0\x68\x34\xef\xf4\xf5\xf5\xe5\x0c\x74\x00\x00\x70\xb9\x5c\xac\x3b\xa6\xde\x83\x00\x15\x18\x7b\xb3\x16\x7e\x40\x06\xb2\xe0\xf5\x7a\x37\x0c\xb0\xad\xad\x0d\x1e\xde\xd9\xe5\x72\xcf\xd1\xaf\x95\x4d\xca\x47\x58\x81\xb8\x14\x95\x31\x9c\x70\x58\x2e\x76\x7e\xaa\xed\x9f\xfb\xa7\x6e\x8f\xf4\xf6\xf6\x02\xa5\x25\x42\x09\x79\xb4\x67\xcf\x1e\xf5\x63\x77\x6c\x3f\xda\x1c\xd1\x1c\xa5\x80\xa0\x3c\xa5\xde\x75\x74\xd8\xfe\xea\x52\xe7\xee\xdd\x32\x55\xc4\x03\xc3\xd6\x97\xad\x9c\xaa\x0d\x00\x40\x2f\x31\x9e\x27\xc6\x6c\x3f\x9d\xd9\xb5\xa3\x73\x70\x70\x30\x2e\x08\xc2\x8a\x0a\x71\x38\x1c\xac\x63\x52\xdd\x06\x40\x0b\x7c\xfb\x85\x32\xb1\x3f\x14\x0a\xa5\x45\x51\xdc\xd0\xfd\xdb\xba\x75\x2b\x3e\xb8\xa5\xab\xab\xfe\x03\xee\x35\x15\x4f\x3c\xd9\x7a\x56\x06\x97\x66\x46\x6c\xb3\x2e\x48\xcf\xe9\xb6\xb7\xbe\xa0\x79\x54\xf3\xdb\x0b\x17\x2e\xac\x79\x4a\x2c\x65\x16\xb3\x6b\x44\xdd\x05\x90\x8d\x2e\x00\x94\xf1\x6c\x83\x9e\xb0\xd5\x9c\x0a\xfb\x2c\x1c\xdb\x90\x7f\xfa\x8c\x02\xe3\x51\x01\x63\x2b\x2b\x2b\x8b\xfb\xfd\x7e\x92\xdb\x49\x9d\x4e\xa7\xb5\x70\xac\x27\xa3\xf6\x57\x60\x86\xf4\xd2\xad\xc0\x62\x60\x43\x47\xd5\x6a\xb5\xe2\x3d\x9d\x5d\xce\xda\xab\xdc\x29\x95\x40\x3c\xab\xdc\x00\x04\xc0\x28\xd4\xbc\xf9\x06\xf7\x0a\xff\x70\xc3\x84\xb7\xc6\x7b\xd3\xeb\xf5\x12\xa3\xd1\x88\xbb\xbb\xbb\x71\x43\xf9\x26\x1b\x01\x4a\x46\x17\xa6\xa2\x37\x6f\xde\x24\x14\xa8\xbc\x68\x12\x27\x4c\x82\xce\x95\x65\x10\xd7\xca\x3e\x4e\x45\xe2\x14\xa8\x38\x69\xe7\xfa\x76\x2c\x18\x4f\x64\xd9\xcf\x5a\xf8\x21\x19\x93\x34\xcf\xf3\x99\x85\x5d\x19\x17\x69\xf5\x22\x76\xe4\x66\x01\x99\x3d\x4d\x68\x65\x6f\x2c\x16\xdb\xd0\x2e\x6e\xd9\xb2\x05\xdb\x17\x95\xe7\xd5\x1c\xa9\xbb\xfb\x41\x44\x80\x15\x6a\x76\x7a\xc5\x6f\x6c\xdf\xbe\xfd\xcb\x4b\x4b\x4b\xf2\xd3\x9f\xfe\x8c\xfe\xa9\xd9\xaa\x97\x5b\xfb\xf5\xcf\x53\x04\xf2\x0d\xb7\xf3\x67\x67\x8e\x54\x7d\x27\x1c\x0e\x27\x2f\x34\x30\x3f\xd0\x28\xf8\x87\xee\x98\xba\x21\xaa\x93\x82\xef\x36\x45\x7e\x90\x4a\xa7\xfc\x81\x40\x40\xbc\x54\x87\xbf\x2f\x63\xaa\xf6\x44\xb5\xed\x41\xa3\x38\x73\xa5\x36\xf6\xbd\xa5\xa5\xa5\x70\x3c\x1e\xcf\x49\x57\x70\x3a\x9d\x18\x53\x50\xab\x14\xac\x2d\x74\xa6\x80\xf0\x2c\x0d\x17\xd9\xa7\xc5\x62\x3a\xbf\x0e\x03\x00\xa9\xaa\xaa\x52\x9b\xee\x28\x87\x72\xac\xd0\x72\x78\xae\x04\x19\x43\xf2\xbe\xf2\xd6\x72\x63\x77\x77\x77\x74\x67\xc2\xfe\x7c\xdb\x92\xfe\x4b\x08\x00\x80\x82\x7a\xe7\xbc\xf1\x9b\xb3\x56\xc7\x07\xbf\x5f\xea\x7f\x9d\x61\x98\x3f\xbc\xb1\x95\x9c\x64\x28\x78\x14\x04\x61\x51\x12\xc7\x2e\xf4\x5c\xe0\x03\x81\x00\x30\x87\x98\x7e\xb9\xce\xf3\x02\x42\xc8\x01\x00\xd1\x40\x20\xe0\xeb\xe9\xe9\xc9\x9d\xbe\x9c\x0a\x41\x00\x2c\x02\xc0\x59\x2b\x07\x20\x13\x48\xa2\x88\x66\xad\x88\x7c\x15\x70\x37\x91\x4f\x00\x00\xeb\xf5\x7a\x96\x91\x24\x1b\x42\x79\xe7\x34\xff\xef\x95\x60\x0e\xb0\x12\x58\x30\x42\xda\x86\x86\x06\xd6\x3e\xa9\xea\x04\x8a\x0a\x96\xd9\x9e\x52\x3d\xa4\xd7\xeb\xff\xf7\x8d\x37\xde\x10\xeb\xeb\xeb\x47\xec\x76\xfb\x48\x22\x91\x80\x89\x89\x09\xc8\xda\xce\x67\xcf\x9e\x25\x76\xbb\xdd\xe7\x70\x38\x7c\x89\x44\x02\x8a\x62\xb6\x2b\x2a\x84\x02\x00\x45\x40\x50\x36\x68\x9a\x29\x30\xa6\xeb\x8b\x03\xe5\x83\x25\x84\x10\x49\x8b\xc2\x59\x21\xb6\x02\x8a\x2e\xdf\xf8\xcc\x9d\x47\x00\x20\x6a\x50\x18\x00\x64\x8e\xe3\xc8\xac\x55\x77\xa3\x73\x8e\xe6\x5a\x13\x00\x32\x6b\x11\x6e\xf0\x0b\x3c\x18\x0c\x06\x70\x38\x1c\xd8\x64\x32\x61\x86\x61\x88\xd1\x68\x24\x59\x90\x15\x15\x15\xb0\x63\xc7\x0e\xd6\x6a\x30\xab\x93\x42\x5a\xc4\x18\xcb\x73\x73\x73\xb9\x49\xe5\x00\x10\x04\xa2\x84\x09\xcf\x28\x8c\x36\xdf\x41\xd6\x4a\xd8\x82\x71\x81\xc7\x72\x4f\x03\x20\x14\x0a\x89\x4e\x67\xf9\x25\xeb\x82\x7c\xb8\x30\x56\x82\x96\x9d\x9a\x8c\xc5\x4f\x81\x42\xbc\x82\xed\xe5\x78\x3e\x7d\xf9\xf2\x65\xa2\x7f\xe2\xf0\x6f\xdf\x6b\x88\xee\xdc\x39\x6f\x3c\x4e\x10\x90\xeb\xd5\xf1\xff\xf6\x99\x84\xf3\x89\x44\x82\xfc\xc5\xf1\x93\xce\xc7\xa7\xcb\x7f\xe0\x9e\xd7\x74\x05\x8d\xe2\xf0\x7b\x4f\xb6\x7d\xfb\xcd\xab\x3d\x93\x82\x20\xc0\xc9\x83\x47\x6b\x8e\x8e\x96\xff\xb4\x72\x5a\xd3\x1d\x32\x48\x43\x6f\xef\xdf\xfc\xe2\x5b\x03\x17\x6e\x0e\x0f\x0f\xaf\x80\x4c\xa5\x52\x40\x81\x8a\x29\x8d\x12\xd6\x4a\xd8\x92\x99\x54\x66\x0f\xcc\x3c\x5b\x6d\x36\x6f\x2c\xb4\x3a\x31\x31\x21\xbb\xf7\x55\xbe\x9e\xb2\x32\x5f\x30\x86\xe5\xa6\x5c\x40\x19\xad\x08\x34\x00\x04\x92\x0e\x87\x03\x9b\xd5\xaf\x4c\x8c\x0e\xf1\x5e\xaf\x17\x06\x6e\x0c\xcc\xd1\xed\xdb\x5f\xba\xe9\x4e\xfe\x18\x00\x80\x50\xe2\xed\xbb\xde\x17\x6e\x6c\x6c\x54\x3f\x31\x5d\xfe\xa3\x66\xbf\xfe\xb3\x40\x01\xcc\x82\xae\xcd\x28\xb0\x35\xe1\x7d\x8f\x1c\x94\x64\x49\x7e\x6c\xd2\xfe\xb2\x27\xa6\x39\x0c\x00\xe0\x4c\xaa\xf6\x1e\xbb\xed\x78\x35\xf0\x50\xf7\xc3\x77\xee\xdc\x49\xe6\xf4\x64\x2a\x95\x02\x00\xe0\xa3\x3a\x79\xc1\x9e\x54\xd5\xe5\x2e\x05\x05\x28\x4f\xa9\xb6\x2c\x87\x02\xd7\xad\x46\x46\x46\x46\xa0\xad\xad\xcd\xcb\xee\xb4\x7d\xab\xe6\x23\xfe\x65\x43\x44\x69\x00\x94\xaf\x98\x10\x08\x06\x14\xf4\x76\xe8\xbe\x9d\x90\xb9\xbe\x81\x81\x01\x02\x00\xe4\xda\xb5\x6b\x30\x3e\x3e\x1e\xac\xae\xae\x0e\x12\x42\x60\x7a\x7a\x1a\xe2\xf1\x38\xe9\xda\xdd\x65\xac\x1a\xd1\xec\xcf\x05\xd1\x28\x82\xf2\xa4\xaa\xc3\x84\x35\x1e\x41\xaf\x0e\xbb\x12\xea\x2e\x04\x28\x63\x54\x20\x00\x7b\x9a\x6d\x33\x82\xda\xe3\x74\x3a\x47\x66\x67\x67\x57\xf4\x64\x24\x12\xe1\x03\x86\xb2\xb1\xfa\x80\x7e\x5f\xfe\x84\xdd\x31\xcd\xae\x8a\xda\x0a\xf5\x46\x40\x02\x00\xf4\xf4\xf4\x88\xc7\x8e\x1d\x7b\x47\xee\x32\x7d\xbe\xcc\x2f\x7f\xbe\xcc\x2f\xef\x55\xf1\xd4\x26\xab\x50\x32\xe1\x60\xfa\x23\x6e\xd5\x29\x4e\x12\x7a\xdf\x3e\xf3\x76\x9a\xe3\xb8\x9c\xa0\x88\x44\x22\xa4\x94\xb9\x17\x36\xc8\x0b\x46\x91\x75\x01\x64\xec\xe9\x88\x5e\x5e\x10\x59\xca\x03\x02\x79\xc1\x2c\x8c\x35\xf9\x59\x57\x76\x09\x7d\x26\x61\x82\x67\x49\x3c\xab\x27\x99\x2c\x93\x8a\x8a\x0a\x70\xd8\xec\xee\x56\xbf\xfe\x18\xa0\xe5\x20\x36\x02\x30\x88\x4c\xf9\xad\x5a\xe1\x57\x77\xa6\xa7\xe2\x1c\xc7\xe5\x0b\x3e\x0c\x45\xfa\x26\x9f\x44\x51\x44\x63\x63\x63\x0a\xab\x52\xf9\x74\x1e\xfb\xe5\x44\xa5\xe6\x74\xc4\xa3\x7e\x3d\xea\x62\x4f\xa5\x8c\xe8\x77\x53\xd3\xde\xd1\x9e\x9e\x1e\x31\x1a\x8d\xc2\x32\x9f\x62\x7e\xb9\xef\x9e\x4d\x1e\x39\x51\xa9\x8a\x54\xc5\x35\xdd\x7a\x09\x1b\x63\x3a\x39\x74\xae\x25\xfc\x3d\x9f\x1c\xbb\x12\x0a\x85\xd2\xd1\x4d\xea\x99\x32\x81\x6d\x37\x48\xb8\x6c\xd1\x2c\x4e\xf5\xb4\x84\xbf\xbb\x98\x08\xf5\xf7\xf5\xf5\x49\x00\x79\xd1\xba\xe6\xe6\x66\x7c\x68\xdf\x81\x1d\x5f\xb9\xea\xbe\xc2\x2a\x48\x9b\x6f\xc0\x9e\x6d\x0b\x7e\xf5\x75\xdf\x07\xff\xd6\xdb\xdb\x5b\xca\xf5\x01\x58\x3b\x09\x03\x00\x40\x5c\x2e\x17\x56\xa9\x54\xa0\x28\x0a\x84\x42\x21\x10\x04\x61\xad\x94\x7d\xc1\x33\xab\xd5\x8a\x8f\x1f\x3f\xae\xd7\x69\x75\x4d\x6a\x05\xd5\x48\x0c\x5d\x10\x24\x71\xb8\xa7\xa7\x27\x19\x89\x44\xe0\xe8\xd1\xa3\x6a\xab\xd5\xea\x41\x80\x5c\x80\x20\x9c\x4c\x26\xbd\x67\xce\x9c\xe1\xa3\xd1\x68\x61\xb4\xce\x60\x30\xc0\x73\xcf\x3d\x67\x7b\x6a\xd8\xf1\x56\x7d\x50\xd7\x9d\xaf\xd5\xe6\xca\xc4\xde\x53\xad\xb3\x4f\x9c\x3a\x75\x2a\x2d\xcb\x6b\x9e\xda\x3f\xc5\xfb\x05\x04\x00\xb0\x4e\xa7\x83\xe6\xe6\x66\x28\x2b\x2b\xc3\x89\x44\x82\x8c\x8e\x8e\x82\x20\x08\x20\xcb\x32\xc1\x18\xe3\xea\xea\x6a\x70\x38\x1c\x90\x48\x24\x60\x72\x72\x12\x24\x49\xca\x31\xc8\x26\x7c\x40\x92\x24\xa8\xae\xae\x96\xb4\x26\x83\xa3\x29\xa0\x3f\x94\x91\xf5\x19\xa8\x66\x81\xf1\x2c\xda\x95\x0f\xc2\x0c\x3f\xb6\xec\x53\xde\x8d\x36\x92\x8c\x59\x6f\x5b\x04\x00\x20\xcb\x32\xf8\x7c\x3e\x98\x9e\x9e\xa6\xb1\x58\x0c\x1e\xdd\xbf\x1f\x7f\x7a\xd7\x63\xb5\x8f\xb5\x3f\x54\xed\x6c\xdc\x14\x99\x9c\x9a\x52\xc6\xc6\xc6\x20\x14\x0a\x41\x26\xfc\xbb\x42\x39\x90\xcb\x44\x2c\xcd\x55\xd1\xb6\x25\xc3\x9f\x6b\x15\xac\xcf\xdc\x4b\x04\x08\x10\xd8\xd3\x6c\xb3\x7f\xab\xfe\x37\xe3\x13\xe3\x42\xfe\x2a\x7d\xd2\xc4\xb2\x2c\x9c\x38\x71\x42\xfd\x6c\xa2\xe5\x87\x4f\x8e\xd9\x7f\xb5\x75\xd1\xf8\xd5\x16\xde\xb6\x9f\xec\x71\x9f\x9d\x9c\xf5\xa6\x38\x8e\x5b\xd5\x87\x81\x95\x98\x17\x0d\x06\x83\x74\xcb\xd6\xf6\x14\xcb\x32\xd5\x9b\x23\xda\x4e\x44\x57\x32\x1f\x06\x91\xa9\x94\x35\x28\xc1\x6f\x36\x5c\x9d\x98\x98\x50\xf2\xfb\x7d\x92\x9f\xc6\xc6\x46\xf4\xa8\x7b\xdb\xa3\x87\xc6\xad\xff\x02\x34\xa3\x79\x4d\x02\xbb\x59\x56\x81\x18\x74\xc2\x1f\xa7\xa6\xa6\x56\xcd\x6d\xd5\x9d\x18\x1a\x1a\x4a\x0f\x56\xa6\x5e\x49\x68\x94\x70\xa6\x26\xe3\x44\x23\x8a\x60\xef\x54\xd9\xdf\x77\x5a\xea\xf6\x75\x74\x74\x7c\x12\xaf\xb2\x94\x24\xbb\xdd\x0e\x7a\x11\xd7\x21\x8a\x60\x25\xb7\x09\xa0\x97\x98\x3a\x8b\xc5\x52\xd2\x04\x5d\x35\xd9\xc1\xc1\x41\x48\x4a\xdc\xf0\xe5\xba\xd8\xcf\x29\xa2\x00\x59\x5b\x16\x51\x50\x11\xa4\x7f\xea\x96\xe3\x97\x07\xda\xbb\x9a\x5a\x5a\x5a\xee\x07\xe8\xbd\xfa\x60\x58\x6d\x3e\x16\x94\x91\x48\x04\xe6\x2d\x42\x7f\x42\x23\x87\xb3\x59\x35\x05\x53\x32\xea\x4c\xf7\xc4\xe3\xf1\xe2\x34\x01\x00\x00\x66\x96\x2b\x73\xf9\x61\x45\x51\x40\x14\x45\xc9\xd8\xea\x9e\xaa\x48\xaa\xf7\x5b\xd3\x2b\x4a\x16\x00\x81\x46\xc6\x65\x35\x11\xdd\xe3\x52\x47\xf9\xf9\xb8\x94\x8e\x04\x02\x81\xfc\xfc\x32\x2d\xe2\x97\xd5\x7b\x59\x9d\x97\xdf\xa6\x94\x8e\x5d\xb1\xe4\x57\x9e\x17\x64\x0b\x93\xc9\x24\xaa\x6f\x69\x8a\xcd\xb8\x24\x2f\x26\xc8\x19\xd1\xcb\xfe\x8b\x0d\xd1\x9f\xcd\x9b\x85\x5f\x5f\xbd\x7a\x35\x95\x48\x24\x00\x0a\x79\xd3\xac\xe0\x21\x79\x03\x40\x30\x18\x24\xee\x2a\x77\x32\xba\x49\x35\xd3\xec\x37\x1c\x57\x93\xc2\xb4\xb9\x4e\xc2\x8e\x86\x90\xfe\x18\xda\x5e\x71\x85\x98\x54\x8b\xf3\xf3\xf3\xd9\x38\x4d\xf1\x5b\x11\x59\x40\xf9\x00\xf2\xcb\xe2\xc5\xc9\x81\xad\xac\xac\x44\xbb\x76\xed\x62\x30\xc6\x34\x12\x89\xe4\xfa\xc8\xb2\x0c\x73\x73\x73\x92\xad\xda\x35\xea\xf3\xc0\xd9\x3b\xe5\xdc\x6b\x01\x94\x7e\xef\xf2\xe5\xcb\xb1\xbc\x38\x54\xfe\x42\xe2\xbb\xbd\x33\x80\x16\x17\x17\x49\x6d\x6b\xe3\x62\xd0\xa2\x70\xcd\x7e\xc3\x41\x4c\xb3\x93\x58\xf6\x4e\x64\xc6\xda\xea\xd7\x3f\x6b\xf0\xd8\x03\xc6\x76\xcf\xad\x70\x38\xac\x24\x93\xc9\x12\x81\x8e\x75\x51\xae\x9d\x46\xa3\x81\xee\xee\x6e\x7c\xac\xe3\xd1\xd6\xe7\x97\x9a\x7f\xaa\xd9\x59\x75\xd3\x9f\x8e\x06\xc3\xe1\x70\xae\x31\xc7\x71\x70\xfb\xf6\x6d\x65\x6a\x6a\x2a\x31\x3e\x3e\x1e\xef\xed\xed\x95\x82\xc1\x60\x29\x7e\x08\x60\xb5\x0a\xc9\x91\x28\x8a\x10\x89\x44\x44\xe7\x96\x9a\xb1\xb8\x4e\xd1\xd5\x87\x74\x0f\x21\xb4\x1c\xc9\x5b\x2e\x19\x8a\x34\x75\x21\xdd\x89\x5a\xa9\xac\xc3\xda\x51\x7b\x4b\xe7\xb2\x04\x38\x8e\xa3\xc9\x64\x72\x9d\xd8\x56\x48\xab\xd5\xc2\xb6\x6d\xdb\xe0\xc8\x81\xc7\x2d\xc7\xe5\xa6\xaf\x1f\x19\xb1\xff\x87\x8d\x53\x6d\x77\xc5\xd5\xbb\x93\x9d\xb6\xff\xb9\xe3\x9d\xe4\x05\x41\x28\xe8\xc3\x71\x5c\xc6\x83\xba\x47\xb4\xaf\x40\x85\x14\x7f\x62\xb1\x18\x15\x45\x91\xd3\xb5\x54\x0c\x26\xb4\x8a\xbe\x36\xac\xeb\x40\xb4\x78\x51\x10\x58\x38\xb6\x71\x9b\xcf\xf8\xd7\xf5\x6a\x67\xab\xa7\xbd\xde\x5f\xd1\x56\xe3\xd7\x1b\xf4\x32\x42\x08\x44\x51\x04\x45\x51\x48\x29\xfe\x56\xab\x15\xd5\xd6\xd6\x42\x67\x67\x27\x7e\xb2\xeb\xd1\xca\xa3\xa8\xf9\xab\xc7\xc6\x2b\x7e\x5e\x1f\xd4\x3d\xcd\x00\xd2\x00\x05\x30\x8a\x6c\x95\x96\xb2\x26\xa9\xdd\xf6\xee\xe8\xe8\xa8\xb2\x9c\x6d\xde\x90\xda\x59\xd7\x71\xea\xec\xec\xc4\x1d\x1d\x1d\xae\x9a\x88\xee\xc5\x4f\xdd\xb6\x7d\x53\x2b\x33\xda\xbb\x99\xe6\x14\x51\x88\x6b\x95\x31\xaf\x8d\x3b\x3f\x57\x26\x5c\x0a\x18\xa5\x9b\x01\x48\x2d\xc4\xd3\x49\x91\x2c\x67\xc3\x75\x1a\x2d\xb6\xa9\x8d\xe6\x72\x5e\xdb\x54\x19\x57\x77\x6f\x8e\x68\x0f\xb9\x63\x9a\xfd\x0c\x41\xda\x55\x37\x3a\xc3\x93\x9c\xde\x12\xfa\xc2\xeb\xb3\x57\xff\xeb\x7e\xde\x1b\x58\x57\x68\xe3\xc3\x0f\x3f\x84\x64\x32\xe9\x23\xfb\xf6\xbd\xfc\xeb\x0e\x79\xea\xc8\x6d\xdb\x77\x5c\x09\x75\xf5\xdd\xda\x9b\x79\xa6\x69\xdb\x82\xb1\x69\xdb\x82\xf1\x6f\x00\x00\x08\x82\xb4\xc8\x90\xa8\x8c\x29\x8f\x00\x61\xb5\x8c\xcc\x2a\x82\x2c\x50\x24\xee\x69\xf1\xfb\x6a\xcb\x80\x93\x6a\x25\x29\x32\xc4\xec\x74\x3a\xef\x2b\xff\xc2\x94\xa8\xcb\x49\x25\xc8\x13\xdf\xa1\x50\x88\xf8\x7c\x3e\xde\x51\xe3\xbe\x3d\xb1\x49\x7a\x5f\x66\xa8\xa5\x32\xa1\xa9\x67\x09\x66\x32\x92\xab\xe8\x27\x93\x1c\xcd\xb8\x39\x14\xa9\x54\x04\x9b\x34\x0a\xb6\xaa\x15\x6c\x61\x00\xe9\x10\x45\x28\xd3\x66\xc5\x74\xcc\x28\xf8\x95\x92\x02\xc0\xb0\x2b\xd5\xfb\xfb\x2d\xa1\xbf\xf3\x6b\xf8\xd3\xef\xbf\xff\x3e\x1f\x8f\xc7\x69\x89\x39\x16\x4b\xe9\x02\x97\x8d\x29\xd1\x01\xb2\xc0\x0a\xd7\x13\x50\x32\x99\x84\xf1\xf1\x71\xd9\x60\x32\xce\x73\x35\xfa\x8b\x23\xae\xf4\x2d\x96\xa0\x0a\x7b\x4a\x5d\x89\x00\xe1\x82\xe1\xb2\x3d\x73\xc2\xaa\xc4\x33\x80\x82\x28\x5e\x36\xd9\x0b\x88\xc2\xb4\x95\x1f\x39\xdb\x16\xfa\xa7\xc1\xca\xe4\x3f\x2e\x86\x03\xd7\xcf\x9d\x3b\xc7\x2d\xbf\x5f\x57\xcc\x21\x9f\x8a\xd5\x13\xcd\x8e\x70\x5f\x26\x5a\x55\x55\x15\xec\xd9\xb3\x47\x6d\xb5\x5a\xdd\x46\x91\xdd\xd7\xbe\x68\xf8\x5c\xeb\x92\x61\x6f\x19\xcf\x58\x10\xcd\x5f\xab\xfc\xf1\x69\x51\x09\xb9\x76\x14\x01\xf0\x2c\xe1\xc7\xcb\xb9\xfe\x41\x77\xf2\x8d\x80\x41\x3a\x9f\xe6\xd2\x93\xfd\xfd\xfd\xe9\x6c\x40\xea\x7e\xe9\xbe\x41\x66\xa9\xae\xae\x0e\xb6\x6d\xdb\xc6\x96\x97\x97\xdb\x10\xa0\x06\x67\x52\xb5\x6f\x73\x44\xbb\xc7\x1d\xd3\xb4\x94\x27\x55\x6e\xbd\xc8\x18\xf3\x13\xba\xcb\x41\x1a\x00\x00\x10\x58\xca\x87\xf4\x92\x7f\xd1\x2c\x4c\xcc\x58\xf9\xbe\x79\x8b\xf0\x9e\x82\x61\x24\x91\x48\xf8\x87\x86\x86\xf8\xe1\xe1\xe1\x07\xf2\x76\xf3\x46\xfc\xbf\x35\xc9\x6e\xb7\xe3\xfa\xfa\x7a\xa8\xad\xad\x55\x9b\x33\xe1\x3d\x1b\x02\xe4\x54\x2b\xc8\xa5\x17\x19\xa7\x56\xc6\x16\x86\x20\x0d\x41\x54\x12\x59\x9a\x4c\xab\x14\x3f\xa7\x22\x3e\x0a\xd4\x0f\x00\x41\x8e\xe3\xe2\x33\x33\x33\xfc\xe4\xe4\x24\x99\x9b\x9b\x7b\xa0\xe9\xfa\x07\x06\x32\x9f\x0c\x06\x03\xae\xa8\xa8\x00\xab\xd5\x0a\x66\xb3\x19\x9b\x4c\x26\xcc\xb2\x2c\xd6\x6a\xb5\x58\x92\x24\x22\x08\x02\xe1\x38\x8e\x24\x12\x09\x12\x89\x44\xc0\xef\xf7\x43\x24\x12\xf9\x7f\x7b\x0f\x61\xad\x80\xf2\xc7\xf1\x42\xee\x87\xef\x7d\xff\xc7\xc3\x3d\x5d\x9b\x75\xb4\xbd\x5b\x5d\xa9\x36\x1b\x99\x2c\x86\xd2\xbc\xee\x36\x7e\xa9\x7e\x00\x00\xf8\xff\x00\x76\x62\x7c\x14\xb0\x27\x9e\x60\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x73\xbe\x6c\xe4\x26\x14\x00\x00") +var _web_uiV1StaticAppleTouchIcon57x57Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x26\x14\xd9\xeb\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x39\x00\x00\x00\x39\x08\x06\x00\x00\x00\x8c\x18\x83\x85\x00\x00\x13\xed\x49\x44\x41\x54\x68\x81\xc5\x5b\x79\x6c\x5c\xc7\x79\xff\x66\xde\xdb\xfb\xe0\x5e\x5c\x2e\x97\x2b\x8a\xf7\x25\xea\x22\x25\x9a\x92\x65\x59\xb2\x6c\x59\x91\x64\xa5\xb1\xdc\xc4\x75\x1a\x07\xad\x13\x04\x81\x9b\x06\x49\x0a\x18\x41\x11\x04\x45\x10\xa4\x40\x11\x18\x41\x9b\xa3\x6d\xdc\x20\x71\x85\x34\xb5\x5b\xc7\xb1\x22\x59\xa2\x1d\x2b\xba\x4c\x4b\x34\x4d\x89\x14\xc5\x4b\xe4\xf2\x5e\xee\x7d\xbf\x7b\xa6\x7f\x2c\x77\xb9\xbb\x5c\x51\xa4\xac\xb8\x1f\xb1\x1c\xee\xbc\x99\x6f\xe6\x37\xc7\x77\x3e\x22\x00\xc0\x00\x40\x96\xcb\x2c\xe5\x7f\x2f\x7e\xb6\x16\x6d\xa4\xed\xfd\xf6\x5b\xab\x6d\x49\x1c\xd9\x8a\xb5\x06\xd8\xc8\xa4\xef\x07\xe0\x46\x69\xc3\x73\x45\xf7\xe8\xf4\x40\x48\xa7\xd3\x01\xcb\xb2\xa0\xd3\xe9\x40\x92\x24\x10\x04\x01\x04\x41\x00\x45\x51\xfe\xd4\x43\x03\x40\x06\xe4\x03\x25\x9b\xcd\x86\xdd\x6e\x37\x38\x9d\x4e\xec\xb0\xdb\x59\xa7\xce\x62\x36\xcb\x6a\x97\x56\xc2\x36\x96\x20\x2d\x41\x54\x16\x58\x1a\x4f\xab\x14\x7f\x40\x4e\x04\x83\xb1\xb0\x18\x08\x04\x64\x9f\xcf\x07\xb3\xb3\xb3\xe4\x41\xcf\x07\xe0\x01\x81\x34\x1a\x8d\xb8\xa9\xa9\x09\x9a\x1b\x9b\xb4\x4d\xe0\xd8\xb1\x39\xac\x7d\xbc\x2a\xae\x79\xd8\x91\x54\xb5\x6b\x65\xec\x02\x00\x0c\x80\x00\x51\x0a\x00\x08\x28\xa2\x00\x00\xa0\x20\x88\x47\xf5\xd2\x98\xcf\x24\xf6\xcf\x58\x85\x77\x27\xcd\xc9\x0b\x23\x73\x93\xe1\x91\x91\x11\xb2\xb0\xb0\xf0\xc0\x00\x7f\x2c\x90\x56\xab\x15\x77\x76\x76\xe2\xad\xae\xfa\xea\xed\x4b\xe6\x17\x5a\x97\xf4\xcf\x1a\x05\xa6\x6e\x19\x43\x01\x51\x00\x40\x28\xfb\x07\x00\xa5\x85\x83\x53\x04\xa0\x20\x48\x7a\xed\xdc\xdb\x83\x95\xa9\x57\x06\xe8\xc2\x85\x8f\x6e\x0c\x88\x13\x13\x13\x1f\x1b\x6c\x31\xc8\xac\xa4\x2d\xfe\x5e\x50\xaf\x56\xab\xf1\xee\xdd\xbb\x71\x57\x6d\x7b\xcd\xde\x59\xcb\x4b\x2d\x4b\x86\xbf\x64\x08\xd2\xe6\xc1\x29\x0d\x32\xf7\x9b\x2e\xb7\xc8\x43\x9d\x57\x52\x04\x10\x34\x48\x7d\xef\xd7\xc4\xbe\x7f\x1d\xe6\xdf\xbe\x7c\xe5\xb2\xb8\xb4\xb4\x94\x65\x95\x3f\x9f\x62\x79\x52\xfc\x8c\x00\x00\x46\x6b\x74\x28\xee\x08\x00\x00\x1e\x8f\x07\x1e\xdb\x7f\x40\xff\x48\xa8\xe2\x6f\xbb\x66\xcc\x2f\xa9\x14\x6c\xbe\x4b\xbf\x8d\x51\x31\x5e\x00\xa0\x88\xc2\x8c\x55\x78\xfb\xdd\x86\xf0\xb7\x2e\x8d\xf7\x8f\x5c\xbf\x7e\x1d\x08\x21\x1b\x56\x53\xcc\x32\xdb\xb5\x8e\x6d\xee\xd9\xee\xdd\xbb\xe1\xf8\xae\x83\x2d\xcf\x8c\xba\x5f\x6f\xf5\x1b\xbe\xc8\x50\xa4\xc9\xf5\x2e\xf1\xa1\x08\x80\x60\x20\x29\xb5\x92\x8a\xe9\xe5\x70\x4c\x27\x47\x53\x1a\x25\x29\x31\x54\x61\x09\x62\x31\x00\x46\x08\x56\xce\x71\x76\x24\x84\x00\x50\x66\xb7\x2d\x3c\xdb\xb0\x65\xc9\xf8\x79\x5d\x8d\xdd\x1b\x2b\x83\x5b\x73\x73\x73\x1b\xb9\x62\x04\x00\x10\xbb\x9e\x96\x18\x63\x38\x78\xf0\x20\x3e\x60\x6b\x3b\x7c\xec\x23\xfb\x2f\xb5\x32\xe3\xb8\x3b\x57\x0a\x3e\xb3\x38\x33\x69\xe7\x06\xe6\x2c\xc2\x87\x21\xbd\x34\x2c\x31\xd4\x0f\x00\x69\x40\x20\x03\xa5\x18\x00\x69\x31\x05\x8b\x99\x67\x1b\xdc\x71\xf5\xce\x9a\xb0\xae\xa3\x26\xac\x6d\x51\x2b\x58\x5d\x62\x6d\x81\x21\x60\x4c\x6a\x14\xa3\xd5\x6a\x2d\xbe\x4e\xf7\x9c\x3a\x00\x00\xbb\x9e\x4e\x87\x0f\x1f\x66\x1f\xd7\x36\x3f\xfb\xe4\xa0\xfd\xdf\x31\x05\x2d\x85\xd5\x92\x45\xc2\x54\x1c\xaa\x4c\x5d\xbd\xe9\x4e\xbe\x16\xd5\xc9\xbd\x14\xe8\x5c\x3c\x1e\x4f\x06\xbc\x01\x31\x16\x8b\x11\x8e\xe3\x40\x14\x45\x40\x08\x81\xc1\x60\x00\x93\xc9\x84\xed\x76\xfb\x3b\xa1\x72\xbb\x7e\xb8\x22\xe5\x54\x2b\xb8\xbd\xd9\xaf\x3f\xd9\x39\x6b\x3a\x52\xc6\xb3\xb6\x7c\xde\x97\xea\xa2\xff\x39\x6f\x16\x4e\x0f\x5e\x19\x24\x1b\x04\x09\x00\xeb\x90\xae\x87\x0e\x1d\x62\x0f\x9b\xdb\x3f\x7b\xf4\xb6\xfd\x17\x98\x22\xf5\xea\xab\x43\x61\xb8\x22\x7d\xed\x6a\x6d\xf4\xc7\x29\x0d\xb9\x18\x89\x44\x7c\x23\x23\x23\xa2\xd7\xeb\x85\x44\x22\x71\xcf\x09\xb1\x2c\x8b\xab\xab\xab\xa1\xa9\xa9\x09\x7b\x3c\x1e\x0b\x0b\x78\xdb\xd6\x45\xe3\x97\xf7\x78\xcb\xfe\x4c\x23\x63\xed\x58\x79\xfa\xda\xd9\xd6\xd0\x17\x3f\x1a\xf8\x68\xec\xfa\xf5\xeb\xf7\x25\x69\xd7\x04\xd9\xd1\xd1\x81\x8f\x37\xed\x7d\xec\xe4\x8d\xf2\x37\x59\x82\xf5\x79\x32\x01\x00\x00\xd2\x6a\x25\x79\xbe\x39\xfc\x93\x69\x2b\xff\x8b\x70\x24\xec\xfd\xe0\x83\x0f\xc4\x8f\xa3\xd0\xcd\x66\x33\xde\xb5\x6b\x17\xae\xaf\xaf\x77\x98\x04\xf6\x70\xf7\xb4\xf9\xaf\x2e\xd6\x47\xff\x61\xd2\x37\x7b\xf5\xec\xd9\xb3\x32\xa5\xb4\x14\xef\xbb\x1d\xe1\x5c\x7d\xb1\x74\xcd\x95\x1e\x8f\x07\x9f\x3c\x74\xbc\xe6\xb9\xfe\x8a\x3f\x1a\x45\xd6\x53\xa0\x1a\x28\x05\xbf\x49\x9a\x7b\x6b\x4b\xf0\xdb\x31\x95\x78\xe6\xfa\xf5\xeb\xd1\xa1\xa1\xa1\x52\x92\x8f\x14\x0d\x88\x8b\xea\x4b\x4e\xcc\xed\x76\xe3\x47\x1e\x79\x44\x6d\x36\x9b\x2d\xf1\x78\x3c\xfa\xe6\x9b\x6f\x8a\x3c\xcf\x17\xcc\xd1\x66\xb3\x41\x6d\x6d\x2d\xa8\xd5\x6a\x98\x9f\x9f\x87\x99\x99\x99\x52\x63\x15\xa8\x90\x02\xd2\x68\x34\xf0\xcc\x33\xcf\x68\x9f\x9d\xda\xfc\x5a\x7d\x48\x77\x14\xa0\xf0\x88\x2e\x98\x85\xc9\x37\xb7\x06\x5e\x8c\x08\xc9\x8b\xe7\xce\x9d\xe3\x83\xc1\xe0\x7a\x54\xd0\x5a\x9e\xce\x6a\xb4\x18\x83\xc3\xe1\x80\x50\x28\x54\x6c\xe3\x92\xf6\xf6\x76\x7c\x6c\xfb\xfe\xb6\xdd\xb3\xe6\x6f\xa8\x15\x64\x1c\x72\xa5\x7e\x79\x21\x31\x72\xfe\xfc\xf9\xf3\x72\xa9\x31\x4a\x4a\xd7\xdd\xbb\x77\xe3\x9d\xa9\xf2\xe7\xea\x42\xda\xa3\x14\x68\x46\x17\xa0\x8c\x0a\x0f\x1a\xc4\x85\xdf\xb5\x07\x5e\xf4\x27\x23\x17\x4e\x9f\x3e\x2d\xa6\xd3\x69\x80\xb5\xf5\xd6\xdd\x3c\x9d\x35\x75\x1d\x21\x04\xfc\x7e\xff\xaa\x7a\x9b\xcd\x86\x0f\xec\xda\xeb\x7e\xa6\xcf\x79\x4e\x2f\x32\x6e\x00\x0a\x75\x41\xdd\xd3\xe2\xf6\xa6\xa7\xe6\xb7\xcc\x9f\xbf\x75\xeb\xd6\xaa\x31\x56\x0d\x64\xb5\x5a\x61\x5b\x53\x9b\xf3\x91\xc9\xb2\xef\x02\x5d\x56\x76\x00\x80\x00\x01\xcf\x2a\xe9\xb7\xb6\x04\x5f\x0a\xf2\xf1\x8b\x79\x00\x3f\x51\xaa\xa9\xa9\x01\x4f\x5c\xfb\x78\x06\x20\x00\x42\x08\x10\x45\x6c\x63\x50\xff\xb9\x9a\x9a\x9a\x92\x9b\xb6\x4a\x85\x74\x76\x76\xb2\xdb\x16\x4d\x5f\x31\x0a\x8c\x07\x21\x9a\xb1\x31\x51\xe6\x98\xfe\xa1\x31\xf2\x93\xb0\x4a\x38\x7d\xee\xf7\xe7\xf8\x74\x3a\xfd\x27\xf1\x18\xee\x45\x2c\xcb\xe2\xa4\x46\x49\x02\xa2\x99\x49\x2d\x4b\xc2\x94\x5a\x49\x33\x0c\x53\x52\x08\x15\xec\xa4\xd9\x6c\xc6\x0d\x9b\xeb\x1c\x3b\xe7\x8c\x5f\x02\x8a\x80\x2e\xef\x22\xa5\x08\xa6\x6c\xfc\xc0\x78\x39\xf7\xaf\xbd\xbd\xbd\xf1\x70\x38\xfc\xff\x02\x10\x00\x60\x61\x61\x01\xfc\x46\xa9\xf7\x43\x4f\xe2\x74\xf6\xa0\xcd\x5b\x84\xb1\x1b\xee\xe4\xab\x8b\x8b\x8b\x62\xa9\x3e\x05\xdb\xdb\xd2\xd2\x02\xf5\x21\xdd\x09\xa3\xc8\xb8\x57\x74\x0b\x02\x82\x28\xb9\x52\x17\x7b\xd9\xb7\xe4\x9b\x19\x1e\x1e\x7e\x10\x00\xef\x29\xf6\xef\x46\x73\x73\x73\xe4\xf6\xc8\x6d\x1f\xb4\xb4\x7e\x7d\xa0\x2a\xf9\x9a\x8a\x20\x7d\x44\x27\xf7\x86\x23\xe1\x91\x81\x81\x81\x92\x7d\xf2\x41\xe2\xc6\xc6\x46\x6d\xeb\xa4\xe1\x73\x99\x23\xb0\x22\x4f\x27\xed\x5c\x5f\x48\x2f\xbd\x73\xed\xdd\x6b\xf2\x46\x26\xb4\x4e\x5a\x8f\xe7\x53\x20\x31\x2f\x5d\xba\x44\x96\x96\x96\xbc\xb5\xb5\xb5\x73\x2c\xcb\xc2\xe2\xf0\xa2\x3c\x38\x38\x08\x92\x24\x95\xe2\x03\x6c\x96\x41\x79\x79\x39\x58\x34\x46\x57\x75\x54\xb3\x37\xdf\x46\xa0\x08\x60\xd0\x9d\xfa\x8d\x6f\xc9\x17\xf4\xf9\x7c\xc5\x03\x6e\xc4\x1b\x28\x56\x19\x6b\xf1\x59\x25\x91\x9d\x4e\x27\xec\xd8\xb1\x03\x3b\xcc\x56\x7d\x82\x4f\x8b\xb7\x86\x6f\xc9\xe7\xce\x9d\x93\x01\x00\xea\xea\xea\xe0\x33\x27\x3e\xad\xad\x52\x5b\x9d\x01\x25\x19\xbe\x71\x7b\x28\x39\x38\x38\x98\xe3\x95\xdb\xc9\xaa\xaa\x2a\x70\xc7\x35\x7b\x33\x7e\xe1\x8a\x5d\xc3\xa9\x48\x7c\xd6\xc2\x9f\x1f\xb9\x38\x92\xbf\x8b\xeb\x26\xbd\x5e\x0f\x2d\x2d\x2d\xe0\x72\xb9\xd4\x46\xa3\x11\xf3\x3c\x4f\xfc\x7e\xbf\x3c\x3a\x3a\x0a\x91\x48\x64\x5d\x3c\x36\x6d\xda\x04\x4f\x1f\x3c\x5a\x7d\x64\xcc\xf1\xe3\xaa\x19\xcd\xbe\x88\x5e\x1a\xeb\x79\xa8\xfa\x6b\x6f\x99\x2e\x5f\x4b\xa7\xd3\x70\xb2\xeb\x89\x1d\x4f\xdd\x72\xbc\x6a\xe1\xd8\x36\x4e\x45\xe6\xce\xb4\x3a\x5e\xd0\x68\x34\xef\xf4\xf5\xf5\xe5\x0c\x74\x00\x00\x70\xb9\x5c\xac\x3b\xa6\xde\x83\x00\x15\x18\x7b\xb3\x16\x7e\x40\x06\xb2\xe0\xf5\x7a\x37\x0c\xb0\xad\xad\x0d\x1e\xde\xd9\xe5\x72\xcf\xd1\xaf\x95\x4d\xca\x47\x58\x81\xb8\x14\x95\x31\x9c\x70\x58\x2e\x76\x7e\xaa\xed\x9f\xfb\xa7\x6e\x8f\xf4\xf6\xf6\x02\xa5\x25\x42\x09\x79\xb4\x67\xcf\x1e\xf5\x63\x77\x6c\x3f\xda\x1c\xd1\x1c\xa5\x80\xa0\x3c\xa5\xde\x75\x74\xd8\xfe\xea\x52\xe7\xee\xdd\x32\x55\xc4\x03\xc3\xd6\x97\xad\x9c\xaa\x0d\x00\x40\x2f\x31\x9e\x27\xc6\x6c\x3f\x9d\xd9\xb5\xa3\x73\x70\x70\x30\x2e\x08\xc2\x8a\x0a\x71\x38\x1c\xac\x63\x52\xdd\x06\x40\x0b\x7c\xfb\x85\x32\xb1\x3f\x14\x0a\xa5\x45\x51\xdc\xd0\xfd\xdb\xba\x75\x2b\x3e\xb8\xa5\xab\xab\xfe\x03\xee\x35\x15\x4f\x3c\xd9\x7a\x56\x06\x97\x66\x46\x6c\xb3\x2e\x48\xcf\xe9\xb6\xb7\xbe\xa0\x79\x54\xf3\xdb\x0b\x17\x2e\xac\x79\x4a\x2c\x65\x16\xb3\x6b\x44\xdd\x05\x90\x8d\x2e\x00\x94\xf1\x6c\x83\x9e\xb0\xd5\x9c\x0a\xfb\x2c\x1c\xdb\x90\x7f\xfa\x8c\x02\xe3\x51\x01\x63\x2b\x2b\x2b\x8b\xfb\xfd\x7e\x92\xdb\x49\x9d\x4e\xa7\xb5\x70\xac\x27\xa3\xf6\x57\x60\x86\xf4\xd2\xad\xc0\x62\x60\x43\x47\xd5\x6a\xb5\xe2\x3d\x9d\x5d\xce\xda\xab\xdc\x29\x95\x40\x3c\xab\xdc\x00\x04\xc0\x28\xd4\xbc\xf9\x06\xf7\x0a\xff\x70\xc3\x84\xb7\xc6\x7b\xd3\xeb\xf5\x12\xa3\xd1\x88\xbb\xbb\xbb\x71\x43\xf9\x26\x1b\x01\x4a\x46\x17\xa6\xa2\x37\x6f\xde\x24\x14\xa8\xbc\x68\x12\x27\x4c\x82\xce\x95\x65\x10\xd7\xca\x3e\x4e\x45\xe2\x14\xa8\x38\x69\xe7\xfa\x76\x2c\x18\x4f\x64\xd9\xcf\x5a\xf8\x21\x19\x93\x34\xcf\xf3\x99\x85\x5d\x19\x17\x69\xf5\x22\x76\xe4\x66\x01\x99\x3d\x4d\x68\x65\x6f\x2c\x16\xdb\xd0\x2e\x6e\xd9\xb2\x05\xdb\x17\x95\xe7\xd5\x1c\xa9\xbb\xfb\x41\x44\x80\x15\x6a\x76\x7a\xc5\x6f\x6c\xdf\xbe\xfd\xcb\x4b\x4b\x4b\xf2\xd3\x9f\xfe\x8c\xfe\xa9\xd9\xaa\x97\x5b\xfb\xf5\xcf\x53\x04\xf2\x0d\xb7\xf3\x67\x67\x8e\x54\x7d\x27\x1c\x0e\x27\x2f\x34\x30\x3f\xd0\x28\xf8\x87\xee\x98\xba\x21\xaa\x93\x82\xef\x36\x45\x7e\x90\x4a\xa7\xfc\x81\x40\x40\xbc\x54\x87\xbf\x2f\x63\xaa\xf6\x44\xb5\xed\x41\xa3\x38\x73\xa5\x36\xf6\xbd\xa5\xa5\xa5\x70\x3c\x1e\xcf\x49\x57\x70\x3a\x9d\x18\x53\x50\xab\x14\xac\x2d\x74\xa6\x80\xf0\x2c\x0d\x17\xd9\xa7\xc5\x62\x3a\xbf\x0e\x03\x00\xa9\xaa\xaa\x52\x9b\xee\x28\x87\x72\xac\xd0\x72\x78\xae\x04\x19\x43\xf2\xbe\xf2\xd6\x72\x63\x77\x77\x77\x74\x67\xc2\xfe\x7c\xdb\x92\xfe\x4b\x08\x00\x80\x82\x7a\xe7\xbc\xf1\x9b\xb3\x56\xc7\x07\xbf\x5f\xea\x7f\x9d\x61\x98\x3f\xbc\xb1\x95\x9c\x64\x28\x78\x14\x04\x61\x51\x12\xc7\x2e\xf4\x5c\xe0\x03\x81\x00\x30\x87\x98\x7e\xb9\xce\xf3\x02\x42\xc8\x01\x00\xd1\x40\x20\xe0\xeb\xe9\xe9\xc9\x9d\xbe\x9c\x0a\x41\x00\x2c\x02\xc0\x59\x2b\x07\x20\x13\x48\xa2\x88\x66\xad\x88\x7c\x15\x70\x37\x91\x4f\x00\x00\xeb\xf5\x7a\x96\x91\x24\x1b\x42\x79\xe7\x34\xff\xef\x95\x60\x0e\xb0\x12\x58\x30\x42\xda\x86\x86\x06\xd6\x3e\xa9\xea\x04\x8a\x0a\x96\xd9\x9e\x52\x3d\xa4\xd7\xeb\xff\xf7\x8d\x37\xde\x10\xeb\xeb\xeb\x47\xec\x76\xfb\x48\x22\x91\x80\x89\x89\x09\xc8\xda\xce\x67\xcf\x9e\x25\x76\xbb\xdd\xe7\x70\x38\x7c\x89\x44\x02\x8a\x62\xb6\x2b\x2a\x84\x02\x00\x45\x40\x50\x36\x68\x9a\x29\x30\xa6\xeb\x8b\x03\xe5\x83\x25\x84\x10\x49\x8b\xc2\x59\x21\xb6\x02\x8a\x2e\xdf\xf8\xcc\x9d\x47\x00\x20\x6a\x50\x18\x00\x64\x8e\xe3\xc8\xac\x55\x77\xa3\x73\x8e\xe6\x5a\x13\x00\x32\x6b\x11\x6e\xf0\x0b\x3c\x18\x0c\x06\x70\x38\x1c\xd8\x64\x32\x61\x86\x61\x88\xd1\x68\x24\x59\x90\x15\x15\x15\xb0\x63\xc7\x0e\xd6\x6a\x30\xab\x93\x42\x5a\xc4\x18\xcb\x73\x73\x73\xb9\x49\xe5\x00\x10\x04\xa2\x84\x09\xcf\x28\x8c\x36\xdf\x41\xd6\x4a\xd8\x82\x71\x81\xc7\x72\x4f\x03\x20\x14\x0a\x89\x4e\x67\xf9\x25\xeb\x82\x7c\xb8\x30\x56\x82\x96\x9d\x9a\x8c\xc5\x4f\x81\x42\xbc\x82\xed\xe5\x78\x3e\x7d\xf9\xf2\x65\xa2\x7f\xe2\xf0\x6f\xdf\x6b\x88\xee\xdc\x39\x6f\x3c\x4e\x10\x90\xeb\xd5\xf1\xff\xf6\x99\x84\xf3\x89\x44\x82\xfc\xc5\xf1\x93\xce\xc7\xa7\xcb\x7f\xe0\x9e\xd7\x74\x05\x8d\xe2\xf0\x7b\x4f\xb6\x7d\xfb\xcd\xab\x3d\x93\x82\x20\xc0\xc9\x83\x47\x6b\x8e\x8e\x96\xff\xb4\x72\x5a\xd3\x1d\x32\x48\x43\x6f\xef\xdf\xfc\xe2\x5b\x03\x17\x6e\x0e\x0f\x0f\xaf\x80\x4c\xa5\x52\x40\x81\x8a\x29\x8d\x12\xd6\x4a\xd8\x92\x99\x54\x66\x0f\xcc\x3c\x5b\x6d\x36\x6f\x2c\xb4\x3a\x31\x31\x21\xbb\xf7\x55\xbe\x9e\xb2\x32\x5f\x30\x86\xe5\xa6\x5c\x40\x19\xad\x08\x34\x00\x04\x92\x0e\x87\x03\x9b\xd5\xaf\x4c\x8c\x0e\xf1\x5e\xaf\x17\x06\x6e\x0c\xcc\xd1\xed\xdb\x5f\xba\xe9\x4e\xfe\x18\x00\x80\x50\xe2\xed\xbb\xde\x17\x6e\x6c\x6c\x54\x3f\x31\x5d\xfe\xa3\x66\xbf\xfe\xb3\x40\x01\xcc\x82\xae\xcd\x28\xb0\x35\xe1\x7d\x8f\x1c\x94\x64\x49\x7e\x6c\xd2\xfe\xb2\x27\xa6\x39\x0c\x00\xe0\x4c\xaa\xf6\x1e\xbb\xed\x78\x35\xf0\x50\xf7\xc3\x77\xee\xdc\x49\xe6\xf4\x64\x2a\x95\x02\x00\xe0\xa3\x3a\x79\xc1\x9e\x54\xd5\xe5\x2e\x05\x05\x28\x4f\xa9\xb6\x2c\x87\x02\xd7\xad\x46\x46\x46\x46\xa0\xad\xad\xcd\xcb\xee\xb4\x7d\xab\xe6\x23\xfe\x65\x43\x44\x69\x00\x94\xaf\x98\x10\x08\x06\x14\xf4\x76\xe8\xbe\x9d\x90\xb9\xbe\x81\x81\x01\x02\x00\xe4\xda\xb5\x6b\x30\x3e\x3e\x1e\xac\xae\xae\x0e\x12\x42\x60\x7a\x7a\x1a\xe2\xf1\x38\xe9\xda\xdd\x65\xac\x1a\xd1\xec\xcf\x05\xd1\x28\x82\xf2\xa4\xaa\xc3\x84\x35\x1e\x41\xaf\x0e\xbb\x12\xea\x2e\x04\x28\x63\x54\x20\x00\x7b\x9a\x6d\x33\x82\xda\xe3\x74\x3a\x47\x66\x67\x67\x57\xf4\x64\x24\x12\xe1\x03\x86\xb2\xb1\xfa\x80\x7e\x5f\xfe\x84\xdd\x31\xcd\xae\x8a\xda\x0a\xf5\x46\x40\x02\x00\xf4\xf4\xf4\x88\xc7\x8e\x1d\x7b\x47\xee\x32\x7d\xbe\xcc\x2f\x7f\xbe\xcc\x2f\xef\x55\xf1\xd4\x26\xab\x50\x32\xe1\x60\xfa\x23\x6e\xd5\x29\x4e\x12\x7a\xdf\x3e\xf3\x76\x9a\xe3\xb8\x9c\xa0\x88\x44\x22\xa4\x94\xb9\x17\x36\xc8\x0b\x46\x91\x75\x01\x64\xec\xe9\x88\x5e\x5e\x10\x59\xca\x03\x02\x79\xc1\x2c\x8c\x35\xf9\x59\x57\x76\x09\x7d\x26\x61\x82\x67\x49\x3c\xab\x27\x99\x2c\x93\x8a\x8a\x0a\x70\xd8\xec\xee\x56\xbf\xfe\x18\xa0\xe5\x20\x36\x02\x30\x88\x4c\xf9\xad\x5a\xe1\x57\x77\xa6\xa7\xe2\x1c\xc7\xe5\x0b\x3e\x0c\x45\xfa\x26\x9f\x44\x51\x44\x63\x63\x63\x0a\xab\x52\xf9\x74\x1e\xfb\xe5\x44\xa5\xe6\x74\xc4\xa3\x7e\x3d\xea\x62\x4f\xa5\x8c\xe8\x77\x53\xd3\xde\xd1\x9e\x9e\x1e\x31\x1a\x8d\xc2\x32\x9f\x62\x7e\xb9\xef\x9e\x4d\x1e\x39\x51\xa9\x8a\x54\xc5\x35\xdd\x7a\x09\x1b\x63\x3a\x39\x74\xae\x25\xfc\x3d\x9f\x1c\xbb\x12\x0a\x85\xd2\xd1\x4d\xea\x99\x32\x81\x6d\x37\x48\xb8\x6c\xd1\x2c\x4e\xf5\xb4\x84\xbf\xbb\x98\x08\xf5\xf7\xf5\xf5\x49\x00\x79\xd1\xba\xe6\xe6\x66\x7c\x68\xdf\x81\x1d\x5f\xb9\xea\xbe\xc2\x2a\x48\x9b\x6f\xc0\x9e\x6d\x0b\x7e\xf5\x75\xdf\x07\xff\xd6\xdb\xdb\x5b\xca\xf5\x01\x58\x3b\x09\x03\x00\x40\x5c\x2e\x17\x56\xa9\x54\xa0\x28\x0a\x84\x42\x21\x10\x04\x61\xad\x94\x7d\xc1\x33\xab\xd5\x8a\x8f\x1f\x3f\xae\xd7\x69\x75\x4d\x6a\x05\xd5\x48\x0c\x5d\x10\x24\x71\xb8\xa7\xa7\x27\x19\x89\x44\xe0\xe8\xd1\xa3\x6a\xab\xd5\xea\x41\x80\x5c\x80\x20\x9c\x4c\x26\xbd\x67\xce\x9c\xe1\xa3\xd1\x68\x61\xb4\xce\x60\x30\xc0\x73\xcf\x3d\x67\x7b\x6a\xd8\xf1\x56\x7d\x50\xd7\x9d\xaf\xd5\xe6\xca\xc4\xde\x53\xad\xb3\x4f\x9c\x3a\x75\x2a\x2d\xcb\x6b\x9e\xda\x3f\xc5\xfb\x05\x04\x00\xb0\x4e\xa7\x83\xe6\xe6\x66\x28\x2b\x2b\xc3\x89\x44\x82\x8c\x8e\x8e\x82\x20\x08\x20\xcb\x32\xc1\x18\xe3\xea\xea\x6a\x70\x38\x1c\x90\x48\x24\x60\x72\x72\x12\x24\x49\xca\x31\xc8\x26\x7c\x40\x92\x24\xa8\xae\xae\x96\xb4\x26\x83\xa3\x29\xa0\x3f\x94\x91\xf5\x19\xa8\x66\x81\xf1\x2c\xda\x95\x0f\xc2\x0c\x3f\xb6\xec\x53\xde\x8d\x36\x92\x8c\x59\x6f\x5b\x04\x00\x20\xcb\x32\xf8\x7c\x3e\x98\x9e\x9e\xa6\xb1\x58\x0c\x1e\xdd\xbf\x1f\x7f\x7a\xd7\x63\xb5\x8f\xb5\x3f\x54\xed\x6c\xdc\x14\x99\x9c\x9a\x52\xc6\xc6\xc6\x20\x14\x0a\x41\x26\xfc\xbb\x42\x39\x90\xcb\x44\x2c\xcd\x55\xd1\xb6\x25\xc3\x9f\x6b\x15\xac\xcf\xdc\x4b\x04\x08\x10\xd8\xd3\x6c\xb3\x7f\xab\xfe\x37\xe3\x13\xe3\x42\xfe\x2a\x7d\xd2\xc4\xb2\x2c\x9c\x38\x71\x42\xfd\x6c\xa2\xe5\x87\x4f\x8e\xd9\x7f\xb5\x75\xd1\xf8\xd5\x16\xde\xb6\x9f\xec\x71\x9f\x9d\x9c\xf5\xa6\x38\x8e\x5b\xd5\x87\x81\x95\x98\x17\x0d\x06\x83\x74\xcb\xd6\xf6\x14\xcb\x32\xd5\x9b\x23\xda\x4e\x44\x57\x32\x1f\x06\x91\xa9\x94\x35\x28\xc1\x6f\x36\x5c\x9d\x98\x98\x50\xf2\xfb\x7d\x92\x9f\xc6\xc6\x46\xf4\xa8\x7b\xdb\xa3\x87\xc6\xad\xff\x02\x34\xa3\x79\x4d\x02\xbb\x59\x56\x81\x18\x74\xc2\x1f\xa7\xa6\xa6\x56\xcd\x6d\xd5\x9d\x18\x1a\x1a\x4a\x0f\x56\xa6\x5e\x49\x68\x94\x70\xa6\x26\xe3\x44\x23\x8a\x60\xef\x54\xd9\xdf\x77\x5a\xea\xf6\x75\x74\x74\x7c\x12\xaf\xb2\x94\x24\xbb\xdd\x0e\x7a\x11\xd7\x21\x8a\x60\x25\xb7\x09\xa0\x97\x98\x3a\x8b\xc5\x52\xd2\x04\x5d\x35\xd9\xc1\xc1\x41\x48\x4a\xdc\xf0\xe5\xba\xd8\xcf\x29\xa2\x00\x59\x5b\x16\x51\x50\x11\xa4\x7f\xea\x96\xe3\x97\x07\xda\xbb\x9a\x5a\x5a\x5a\xee\x07\xe8\xbd\xfa\x60\x58\x6d\x3e\x16\x94\x91\x48\x04\xe6\x2d\x42\x7f\x42\x23\x87\xb3\x59\x35\x05\x53\x32\xea\x4c\xf7\xc4\xe3\xf1\xe2\x34\x01\x00\x00\x66\x96\x2b\x73\xf9\x61\x45\x51\x40\x14\x45\xc9\xd8\xea\x9e\xaa\x48\xaa\xf7\x5b\xd3\x2b\x4a\x16\x00\x81\x46\xc6\x65\x35\x11\xdd\xe3\x52\x47\xf9\xf9\xb8\x94\x8e\x04\x02\x81\xfc\xfc\x32\x2d\xe2\x97\xd5\x7b\x59\x9d\x97\xdf\xa6\x94\x8e\x5d\xb1\xe4\x57\x9e\x17\x64\x0b\x93\xc9\x24\xaa\x6f\x69\x8a\xcd\xb8\x24\x2f\x26\xc8\x19\xd1\xcb\xfe\x8b\x0d\xd1\x9f\xcd\x9b\x85\x5f\x5f\xbd\x7a\x35\x95\x48\x24\x00\x0a\x79\xd3\xac\xe0\x21\x79\x03\x40\x30\x18\x24\xee\x2a\x77\x32\xba\x49\x35\xd3\xec\x37\x1c\x57\x93\xc2\xb4\xb9\x4e\xc2\x8e\x86\x90\xfe\x18\xda\x5e\x71\x85\x98\x54\x8b\xf3\xf3\xf3\xd9\x38\x4d\xf1\x5b\x11\x59\x40\xf9\x00\xf2\xcb\xe2\xc5\xc9\x81\xad\xac\xac\x44\xbb\x76\xed\x62\x30\xc6\x34\x12\x89\xe4\xfa\xc8\xb2\x0c\x73\x73\x73\x92\xad\xda\x35\xea\xf3\xc0\xd9\x3b\xe5\xdc\x6b\x01\x94\x7e\xef\xf2\xe5\xcb\xb1\xbc\x38\x54\xfe\x42\xe2\xbb\xbd\x33\x80\x16\x17\x17\x49\x6d\x6b\xe3\x62\xd0\xa2\x70\xcd\x7e\xc3\x41\x4c\xb3\x93\x58\xf6\x4e\x64\xc6\xda\xea\xd7\x3f\x6b\xf0\xd8\x03\xc6\x76\xcf\xad\x70\x38\xac\x24\x93\xc9\x12\x81\x8e\x75\x51\xae\x9d\x46\xa3\x81\xee\xee\x6e\x7c\xac\xe3\xd1\xd6\xe7\x97\x9a\x7f\xaa\xd9\x59\x75\xd3\x9f\x8e\x06\xc3\xe1\x70\xae\x31\xc7\x71\x70\xfb\xf6\x6d\x65\x6a\x6a\x2a\x31\x3e\x3e\x1e\xef\xed\xed\x95\x82\xc1\x60\x29\x7e\x08\x60\xb5\x0a\xc9\x91\x28\x8a\x10\x89\x44\x44\xe7\x96\x9a\xb1\xb8\x4e\xd1\xd5\x87\x74\x0f\x21\xb4\x1c\xc9\x5b\x2e\x19\x8a\x34\x75\x21\xdd\x89\x5a\xa9\xac\xc3\xda\x51\x7b\x4b\xe7\xb2\x04\x38\x8e\xa3\xc9\x64\x72\x9d\xd8\x56\x48\xab\xd5\xc2\xb6\x6d\xdb\xe0\xc8\x81\xc7\x2d\xc7\xe5\xa6\xaf\x1f\x19\xb1\xff\x87\x8d\x53\x6d\x77\xc5\xd5\xbb\x93\x9d\xb6\xff\xb9\xe3\x9d\xe4\x05\x41\x28\xe8\xc3\x71\x5c\xc6\x83\xba\x47\xb4\xaf\x40\x85\x14\x7f\x62\xb1\x18\x15\x45\x91\xd3\xb5\x54\x0c\x26\xb4\x8a\xbe\x36\xac\xeb\x40\xb4\x78\x51\x10\x58\x38\xb6\x71\x9b\xcf\xf8\xd7\xf5\x6a\x67\xab\xa7\xbd\xde\x5f\xd1\x56\xe3\xd7\x1b\xf4\x32\x42\x08\x44\x51\x04\x45\x51\x48\x29\xfe\x56\xab\x15\xd5\xd6\xd6\x42\x67\x67\x27\x7e\xb2\xeb\xd1\xca\xa3\xa8\xf9\xab\xc7\xc6\x2b\x7e\x5e\x1f\xd4\x3d\xcd\x00\xd2\x00\x05\x30\x8a\x6c\x95\x96\xb2\x26\xa9\xdd\xf6\xee\xe8\xe8\xa8\xb2\x9c\x6d\xde\x90\xda\x59\xd7\x71\xea\xec\xec\xc4\x1d\x1d\x1d\xae\x9a\x88\xee\xc5\x4f\xdd\xb6\x7d\x53\x2b\x33\xda\xbb\x99\xe6\x14\x51\x88\x6b\x95\x31\xaf\x8d\x3b\x3f\x57\x26\x5c\x0a\x18\xa5\x9b\x01\x48\x2d\xc4\xd3\x49\x91\x2c\x67\xc3\x75\x1a\x2d\xb6\xa9\x8d\xe6\x72\x5e\xdb\x54\x19\x57\x77\x6f\x8e\x68\x0f\xb9\x63\x9a\xfd\x0c\x41\xda\x55\x37\x3a\xc3\x93\x9c\xde\x12\xfa\xc2\xeb\xb3\x57\xff\xeb\x7e\xde\x1b\x58\x57\x68\xe3\xc3\x0f\x3f\x84\x64\x32\xe9\x23\xfb\xf6\xbd\xfc\xeb\x0e\x79\xea\xc8\x6d\xdb\x77\x5c\x09\x75\xf5\xdd\xda\x9b\x79\xa6\x69\xdb\x82\xb1\x69\xdb\x82\xf1\x6f\x00\x00\x08\x82\xb4\xc8\x90\xa8\x8c\x29\x8f\x00\x61\xb5\x8c\xcc\x2a\x82\x2c\x50\x24\xee\x69\xf1\xfb\x6a\xcb\x80\x93\x6a\x25\x29\x32\xc4\xec\x74\x3a\xef\x2b\xff\xc2\x94\xa8\xcb\x49\x25\xc8\x13\xdf\xa1\x50\x88\xf8\x7c\x3e\xde\x51\xe3\xbe\x3d\xb1\x49\x7a\x5f\x66\xa8\xa5\x32\xa1\xa9\x67\x09\x66\x32\x92\xab\xe8\x27\x93\x1c\xcd\xb8\x39\x14\xa9\x54\x04\x9b\x34\x0a\xb6\xaa\x15\x6c\x61\x00\xe9\x10\x45\x28\xd3\x66\xc5\x74\xcc\x28\xf8\x95\x92\x02\xc0\xb0\x2b\xd5\xfb\xfb\x2d\xa1\xbf\xf3\x6b\xf8\xd3\xef\xbf\xff\x3e\x1f\x8f\xc7\x69\x89\x39\x16\x4b\xe9\x02\x97\x8d\x29\xd1\x01\xb2\xc0\x0a\xd7\x13\x50\x32\x99\x84\xf1\xf1\x71\xd9\x60\x32\xce\x73\x35\xfa\x8b\x23\xae\xf4\x2d\x96\xa0\x0a\x7b\x4a\x5d\x89\x00\xe1\x82\xe1\xb2\x3d\x73\xc2\xaa\xc4\x33\x80\x82\x28\x5e\x36\xd9\x0b\x88\xc2\xb4\x95\x1f\x39\xdb\x16\xfa\xa7\xc1\xca\xe4\x3f\x2e\x86\x03\xd7\xcf\x9d\x3b\xc7\x2d\xbf\x5f\x57\xcc\x21\x9f\x8a\xd5\x13\xcd\x8e\x70\x5f\x26\x5a\x55\x55\x15\xec\xd9\xb3\x47\x6d\xb5\x5a\xdd\x46\x91\xdd\xd7\xbe\x68\xf8\x5c\xeb\x92\x61\x6f\x19\xcf\x58\x10\xcd\x5f\xab\xfc\xf1\x69\x51\x09\xb9\x76\x14\x01\xf0\x2c\xe1\xc7\xcb\xb9\xfe\x41\x77\xf2\x8d\x80\x41\x3a\x9f\xe6\xd2\x93\xfd\xfd\xfd\xe9\x6c\x40\xea\x7e\xe9\xbe\x41\x66\xa9\xae\xae\x0e\xb6\x6d\xdb\xc6\x96\x97\x97\xdb\x10\xa0\x06\x67\x52\xb5\x6f\x73\x44\xbb\xc7\x1d\xd3\xb4\x94\x27\x55\x6e\xbd\xc8\x18\xf3\x13\xba\xcb\x41\x1a\x00\x00\x10\x58\xca\x87\xf4\x92\x7f\xd1\x2c\x4c\xcc\x58\xf9\xbe\x79\x8b\xf0\x9e\x82\x61\x24\x91\x48\xf8\x87\x86\x86\xf8\xe1\xe1\xe1\x07\xf2\x76\xf3\x46\xfc\xbf\x35\xc9\x6e\xb7\xe3\xfa\xfa\x7a\xa8\xad\xad\x55\x9b\x33\xe1\x3d\x1b\x02\xe4\x54\x2b\xc8\xa5\x17\x19\xa7\x56\xc6\x16\x86\x20\x0d\x41\x54\x12\x59\x9a\x4c\xab\x14\x3f\xa7\x22\x3e\x0a\xd4\x0f\x00\x41\x8e\xe3\xe2\x33\x33\x33\xfc\xe4\xe4\x24\x99\x9b\x9b\x7b\xa0\xe9\xfa\x07\x06\x32\x9f\x0c\x06\x03\xae\xa8\xa8\x00\xab\xd5\x0a\x66\xb3\x19\x9b\x4c\x26\xcc\xb2\x2c\xd6\x6a\xb5\x58\x92\x24\x22\x08\x02\xe1\x38\x8e\x24\x12\x09\x12\x89\x44\xc0\xef\xf7\x43\x24\x12\xf9\x7f\x7b\x0f\x61\xad\x80\xf2\xc7\xf1\x42\xee\x87\xef\x7d\xff\xc7\xc3\x3d\x5d\x9b\x75\xb4\xbd\x5b\x5d\xa9\x36\x1b\x99\x2c\x86\xd2\xbc\xee\x36\x7e\xa9\x7e\x00\x00\xf8\xff\x00\x76\x62\x7c\x14\xb0\x27\x9e\x60\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x73\xbe\x6c\xe4\x26\x14\x00\x00") -func web_uiStaticAppleTouchIcon57x57PngBytes() ([]byte, error) { +func web_uiV1StaticAppleTouchIcon57x57PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticAppleTouchIcon57x57Png, - "web_ui/static/apple-touch-icon-57x57.png", + _web_uiV1StaticAppleTouchIcon57x57Png, + "web_ui/v1/static/apple-touch-icon-57x57.png", ) } -func web_uiStaticAppleTouchIcon57x57Png() (*asset, error) { - bytes, err := web_uiStaticAppleTouchIcon57x57PngBytes() +func web_uiV1StaticAppleTouchIcon57x57Png() (*asset, error) { + bytes, err := web_uiV1StaticAppleTouchIcon57x57PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/apple-touch-icon-57x57.png", size: 5158, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-57x57.png", size: 5158, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticAppleTouchIcon60x60Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x15\x6d\xea\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\x00\x00\x15\x59\x49\x44\x41\x54\x68\x81\xed\x3a\x69\x6c\x9b\xc7\x95\x6f\x86\x1f\x3f\xde\xf7\x21\xea\xb0\x6e\x51\xb2\x2d\x3b\xb2\x2d\xdb\x8a\xe3\x23\x8e\xaf\xc4\xb1\xdd\x38\x45\x36\x69\xbb\x8b\xa2\x7b\x60\xb7\xc0\x02\xdd\x76\x17\xdb\x2d\xda\x6c\x51\x60\x8b\x6e\x51\x14\x45\xb6\xdb\x2d\xb6\xbb\x05\x9c\x4d\x8b\xd4\x75\xb1\x75\xea\xb8\x75\xed\xc8\x4e\x64\x39\xf2\x6d\x4b\xb2\x75\x59\x96\x28\x89\xa4\x28\x92\xa2\x78\x7e\x24\x3f\x7e\xdf\xcc\xfe\xe0\xa1\x4f\x34\x29\xc9\x4e\xba\x05\x8a\x3e\xe0\xe3\x7c\x9c\x99\x37\xf3\xde\x9b\xf7\xe6\xcd\x7b\xf3\x01\xfc\x11\xfe\x08\x7f\x50\x80\x72\x25\x06\x00\x92\x2b\x21\xf7\x5e\x0c\xd2\x3e\xc5\x7d\xb1\xb4\x23\x42\x08\x6c\x36\x1b\xd8\xed\x76\xb0\xd9\x6c\xd8\x60\x30\x60\xad\x5a\xc3\xa8\x19\x05\xab\x42\x72\x16\x21\x84\x53\x62\x86\x4f\x23\x91\x8f\xc6\x63\x42\x24\x1a\x11\xc2\xe1\x30\x99\x9b\x9b\x03\x9f\xcf\x07\x99\x4c\x86\x14\xcd\x2b\x05\x52\x54\x5f\x4c\xd3\xb2\xb8\x08\xca\x43\x31\xf2\x8a\x50\x5d\x5d\x8d\x9d\x4e\x27\x6e\xa8\xa9\x55\xd7\xa6\x75\x1b\xab\x23\x8a\x1d\xf6\x38\xbb\xc5\xcc\xc9\x9d\xda\xb4\xac\x4a\x2e\x22\x3d\x02\x60\x73\xdd\x05\x11\x03\x97\x60\x45\x7f\x58\x29\x4c\x04\xb5\xfc\x80\x57\xcf\xf7\xcd\xe8\x93\x1f\xba\xe6\xbd\xe1\x07\x0f\x1e\x08\x13\x13\x13\xc5\xcc\x7f\x64\x40\xf0\xa8\x14\x1e\x0b\x18\x86\x81\xb5\x6b\xd7\x42\xfb\xba\xf5\x6c\x1b\xb5\x75\xad\x9b\x53\x7f\xa6\x31\xa8\x3a\xac\x14\x70\x15\xca\x2b\x10\x85\x45\x5d\x5a\x02\xd9\x86\x7c\x33\x05\x0a\x22\x02\xce\x6b\x48\xf7\x0c\x57\x24\xde\x1e\x32\x44\xde\xbd\xff\x70\x34\x3c\x38\x38\x08\xb1\x58\xec\xa3\x90\x59\x80\xd5\xac\xb0\x54\x20\x05\xb5\x41\x08\x61\xa7\xd3\x09\xdb\xb7\x6e\x53\x3e\x15\xb3\xbc\xd4\x39\xa3\xfb\xa2\x35\x21\xef\x44\x74\xb9\x21\x21\xcf\xd9\x12\x28\x27\x8f\xa4\x5c\xf4\x0d\x54\xc5\x7f\x74\xa3\x32\xfc\xc3\xbb\xe3\x43\xfe\x5b\xb7\x6e\x41\x3a\x9d\x5e\x91\xa9\x95\xa6\x07\x28\xad\xbe\xe5\xec\x02\x0c\x06\x03\xde\xb3\x7b\x37\xb3\x45\x55\xb7\x63\xf7\x43\xd3\xb7\xed\x71\xf9\xb6\xd2\x43\xd3\x47\xab\x9f\x00\x52\x0c\xf1\x5d\xad\x8f\x7e\xf3\x9a\x31\x70\xe2\xf2\x87\xbd\xdc\xe4\xe4\xe4\x13\xab\xb9\x2c\x57\x96\xa2\x8c\x96\x6a\x6b\x6d\x6d\xc5\x87\xf7\x1d\x32\x1e\x0d\xd6\x7d\x6b\xef\xb8\xe9\xdf\xb4\x69\xd9\x9a\xc5\xd5\x41\x8b\x45\xb9\x95\x96\xb4\xa1\xbc\x4c\x10\x00\xa2\xd2\xf6\xa5\xdd\x19\x8a\xb4\xf5\x21\xe5\xe1\xa6\xb8\x6e\xb7\x72\x53\xcd\x75\x5e\x01\x41\xaf\xd7\xfb\x44\xd2\x7c\x2c\x1b\x7e\xfa\xe9\xa7\x61\x57\xd3\xa6\xf6\x17\x87\x2c\x6f\x5a\x13\x6c\x47\x96\xec\xbc\x1d\x66\xcb\x7c\x1d\x05\x00\x01\x53\xc1\xaf\xcb\x78\xe7\x74\xbc\x2b\xa4\xca\xb8\x13\x0a\x31\xc8\xcb\x68\x9c\x22\x4a\xe4\x22\x56\xab\x79\x6c\x36\x26\x99\x2a\x5b\x9c\xad\xaf\x8c\xb2\xb5\x4a\x01\x2b\x0b\x76\x0f\x14\x68\x6e\x3c\xe9\xdb\x8c\x31\xdd\x7b\x6a\xc3\xdc\x0b\x27\x4e\x9c\xe0\x04\x41\x78\x6c\x86\x19\x28\xbf\x13\x2f\x51\xe9\x03\x07\x0e\x30\x3b\xcc\xad\xbb\x8f\xde\xb5\xbe\xad\xce\xc8\xec\x8b\xbc\xe6\x09\x44\x80\x28\x00\xc1\x94\x4c\x9a\x53\x63\xc3\x15\x89\xf7\xa7\x4d\xa9\x4b\x3c\x43\xc7\x01\x20\x08\x00\x1c\x00\xf0\x89\x44\x82\x00\x00\x51\x68\x14\x98\x61\x18\x16\x00\xd4\x00\x60\xc4\x04\xea\x2b\xa3\x8a\xa7\xdb\xfc\xea\xe7\x9c\x7e\xf5\x66\x56\x40\x6c\x6e\x58\x00\x8a\x80\x22\x80\xa4\x9c\xc4\xcf\xb7\x86\xbe\x1f\x8b\xc5\x04\x51\x14\xcb\xf1\xf4\x88\x9b\x94\xd6\x95\xd2\xbb\x47\x6c\xf6\xc0\x81\x03\xcc\x2e\x63\xdb\xc1\x63\xf7\xac\x6f\xcb\x09\xd6\x97\x9a\x85\x22\x4a\x86\xed\xdc\xcd\x1b\xb5\xd1\xb7\xc2\x2a\xa1\x87\x50\xe2\xf6\xfb\xfd\xf1\x99\x99\x19\x21\x10\x08\x40\x28\x14\x02\x8e\xe3\x96\x8c\xab\x50\x28\xb0\xc1\x60\x00\x9b\xcd\x06\xd5\xd5\xd5\xb8\xba\xba\x5a\x2d\x67\xe4\x76\x85\x80\x3b\x3b\x3c\xda\x3f\xdb\xec\xd6\x3d\xc7\x8a\x58\x99\x95\x2d\x25\xef\x6c\x08\xfe\xcb\xa4\x91\x7b\xe3\xdd\x77\xdf\x0d\xfb\x7c\xbe\x27\xb2\xe3\x15\xb6\x54\x80\xae\xae\x2e\x7c\xa0\x61\xcb\xce\x97\xfb\xed\xef\xb0\x22\x32\x4a\x7c\x48\x61\x04\xbf\x36\xe3\xed\x76\x86\x7e\xe0\xd7\x66\x4e\x27\x53\x49\xd7\xbd\x7b\xf7\x52\x63\x63\x63\x90\x5b\xcd\x55\x83\x5c\x2e\xc7\x4d\x4d\x4d\xd0\xde\xde\xce\x9a\xcd\x66\xbb\x26\x8d\x9f\xdb\xf3\xd0\xf4\x85\x96\x80\xaa\xe3\x6a\x5d\xf4\x7f\xaf\xd5\x45\xbf\xd8\x77\xb5\xcf\x3d\x38\x38\xf8\xc4\x9b\xd6\x72\x27\x2d\xdc\xda\xda\x0a\x87\xbb\xf6\x3a\x3f\x75\xbb\xe2\x82\x96\x67\x6a\xf2\xb6\x44\x25\xbb\xca\x9d\x9a\xf8\xc5\xde\x86\xf0\x37\x79\x22\xdc\xec\xef\xef\x8f\xf7\xf7\xf7\xc3\x93\xd8\x56\x11\x90\xe6\xe6\x66\xdc\xd5\xd5\xa5\x54\xab\xd4\xce\xba\x05\xe5\x91\x69\x53\xea\xf4\xf8\xc4\xc3\x91\xee\xee\xee\x95\x98\x2d\xa5\xd2\x05\x28\xbb\xc2\x46\xa3\x11\x7f\xf2\xa5\x97\xf5\xaf\x0e\x55\x9e\xa9\x89\x28\x77\x02\x48\xfd\x25\x05\x11\x01\xb9\xd8\xb2\x70\xe2\xbe\x23\xf1\x5d\x7f\xc0\x3f\x7e\xe9\xd2\x25\x21\x12\x89\x48\x8f\x7d\xc5\x47\xbc\x52\xff\x4b\x1d\x65\x0b\x6d\x2c\xcb\xc2\xf6\xed\xdb\xb1\xd3\xe9\x64\xbd\x5e\x2f\xdf\xdd\xdd\x4d\x78\x9e\x5f\xc2\x94\xcd\x66\x83\x4d\x9b\x36\x61\x93\xc9\xc4\x24\x93\x49\x32\x36\x36\x26\x8c\x8e\x8e\x02\xa5\xb4\xe4\x51\xb3\x2c\xc3\xc7\x8f\x1f\x67\x0f\x27\x1b\x5f\xdf\x31\x61\xfc\xda\xe2\xbe\x99\x65\x58\xc4\x94\x9c\x6b\x9b\xff\xf7\x31\x1b\xf7\xdd\xb1\xb1\x31\xef\x07\x1f\x7c\xf0\x91\x97\xf4\x49\xa0\xa6\xa6\x06\xbf\xf4\xdc\x0b\x8e\x03\x0f\xad\xdf\xab\x0f\x29\x9f\x0d\xab\x04\xd7\xa5\x96\x85\x2f\x5f\x9c\x1d\xe8\xed\xe9\xe9\x29\x49\x13\x2e\xf5\xac\x5b\xb7\x0e\xb7\x68\x2a\x37\x6e\x9b\xd2\x7f\x09\x21\xc8\x72\x89\xb2\x1b\x32\x45\x14\xde\x6f\x5e\x38\xf1\xc0\xc6\x7d\x77\x70\x70\xd0\xfd\xc1\x07\x1f\x90\x72\xe3\xfc\xae\x9f\xdd\xbb\x77\xb3\xfb\x26\xac\x6f\xb4\x04\xd5\x7f\x22\x27\xd8\x6e\x4b\xb0\xdb\x8e\xdc\xb7\x9e\xdc\xd0\xbc\xd6\x61\xb7\xdb\x4b\xe2\x48\x97\x9c\x00\x00\x91\xcb\xe5\xd0\xd9\xd9\xa9\xdc\x39\x61\xf8\x86\x5c\x44\x6a\xa0\x14\x0a\x0f\x50\x18\xac\x4c\x5c\x1c\xac\x4c\x7c\x7b\x78\x64\xc4\x7d\xf5\xea\x55\x28\xc2\x2f\x2e\xc9\x32\xed\x1f\x09\x2c\x16\x0b\x68\x35\x5a\x63\x4d\x58\xb1\x1b\x00\x0a\x34\xaa\x32\xd8\x6e\x8f\xb3\x5d\x55\x55\x55\x25\xf1\x1e\xb1\xa1\xf5\xeb\xd7\x43\x1d\xaf\xdb\xd1\x34\xaf\x7a\x9e\xa2\xac\xff\xcb\x3f\x21\xb5\xe0\xeb\x69\x0a\x7f\xc3\x37\xe7\x73\x5d\xbe\x7c\xf9\x71\x98\x59\x4e\x18\xc5\xcf\xaa\xfa\x51\x4a\x01\x00\x48\x58\x9d\xf1\x03\x00\xe4\x69\x25\x08\x84\xa8\x52\x08\x61\x8c\x4b\xe2\x3f\xb2\x9b\x6d\xd8\xb0\x41\xb9\xc5\xad\xff\x02\x02\x84\x81\xe6\x36\xa9\xdc\x51\xf0\x62\xf3\xc2\x1b\x9c\x98\xbe\xdd\xdd\xdd\xbd\x92\xcd\x7e\x94\x55\x5c\x95\x26\x84\x42\x21\x92\xe0\x12\xd1\x4b\xcd\xe1\x37\xa2\x0a\x21\x0c\x00\x20\x22\x10\x7a\x9a\xc2\x3f\x89\x29\xc5\x7b\x6e\xb7\xbb\x24\x1e\x03\x92\x2d\xbc\xb1\xb1\x11\xac\x58\xdb\xdc\x14\x54\x1d\xa4\x00\x00\x08\x80\x02\x02\x40\x00\x93\xe6\xd4\x5d\xb7\x31\xfd\xf3\xeb\x57\xae\x73\x89\x44\x02\xa4\x78\xbf\x2f\x78\xff\xfd\xf7\xf9\x43\x87\x0e\xfd\xe2\xcd\xad\xb3\x2e\x73\x52\xbe\x31\xce\x8a\xde\xa4\x9c\x7c\x38\x34\x34\x14\xf2\xfb\xfd\x25\x69\xcc\x1f\x2d\x31\x40\x36\x30\x68\xf5\xab\x5e\x91\xd1\xec\xb1\x4e\x1a\xa7\xde\xac\x8d\xfe\x38\x1c\x09\x7b\x87\x87\x87\x41\x8a\x23\x79\x7f\xdc\x52\x0a\x2b\xd5\x95\xc4\xf5\x78\x3c\x70\xe6\xcc\x99\x68\x47\x47\xc7\xfb\x26\x93\xa9\x37\x19\x4b\x92\xd1\xd1\x51\x61\x6c\x6c\xac\x2c\x2e\x23\xa9\x84\xaa\xaa\x2a\x6d\xd3\x80\xfa\x79\x0a\x34\x1b\xbd\xa0\xec\x5e\x10\xd0\x66\x5c\x5e\x3d\x7f\x7e\xe0\xf2\x00\x9f\xf3\x6f\x05\x9c\xa2\xf7\xc7\x2d\x01\x1e\xdd\x47\xca\x85\xa5\x04\x00\x40\x26\x93\xc1\x86\x0d\x1b\xc0\xe1\x70\x30\x00\x40\x66\x66\x66\xc8\x85\x0b\x17\x04\x00\x10\x10\x42\xb8\xbd\xbd\x1d\x5e\x3e\x7e\x5c\xc9\x32\x2c\x0e\x45\x16\xf8\x3b\x77\xee\x40\x20\x10\x28\xcc\x9b\x67\x18\xea\xea\xea\xb0\x9a\x30\x55\x8e\x18\xbb\x31\x1b\xc4\x53\xc8\xdb\xf0\xa8\x9d\xbb\xc8\x67\x78\xef\xf8\xf8\x38\x3c\x29\x58\x2c\x16\x5c\x57\x57\x07\x46\xa3\x11\x03\x00\x44\xa3\x51\x32\x3d\x3d\x0d\x7e\xbf\xbf\xd8\x56\xcb\xda\xb0\x42\xa1\xc0\xc7\x8e\x1e\x65\x76\xa6\xd7\xfc\xe9\x46\xaf\xf6\x2f\x08\xa2\xc2\x2d\x67\xeb\xf7\x2f\x37\x36\x9e\x3e\x73\xe6\x8c\xb0\x77\xef\x5e\xbc\xcf\xdc\x7e\x70\xcf\xb8\xf1\x5b\xba\xb4\xac\xc6\x65\x4e\x9d\x3f\xff\x62\xdd\x17\x4f\x5f\xf8\xb5\xdf\xe3\xf1\x10\x80\xac\x4a\x03\x00\x60\x87\xc3\x01\x15\x31\x45\xa7\x8c\x22\x76\xf1\xfc\x95\x3d\x46\xba\x2c\xc9\xdf\x4e\x4f\x4f\xa7\x72\x47\xc6\x72\xb6\x5b\xf2\x48\xa7\x56\xab\x61\xd7\xae\x5d\xd8\x69\xae\x69\x33\x7b\x85\x57\x95\x61\xb1\x1d\x01\xe0\x94\xb6\x66\x64\xe1\xb9\xa7\x4e\x3e\x8c\xcf\x0d\xf4\xf4\xf4\x90\x68\x34\xba\xa2\xd0\x3a\x3b\x3b\xf1\x36\xa1\xfa\xb5\xfd\x63\xa6\x1f\xe7\x22\x6a\x38\x3c\xc4\xee\xe0\x3a\xc4\x17\x99\xe3\xc7\xdf\xab\xd3\x57\x34\xbe\x78\xdd\xf2\x36\x4b\x90\x1e\x00\x41\x4b\x50\xfd\x5a\x9a\x31\xf3\xc1\x9d\x3b\xff\xfa\xe4\xc9\x93\xbc\x94\x78\x62\xb5\x5a\x19\x7b\x5c\xfe\x14\x64\xdd\x2d\x00\xcd\x86\x7b\x49\x39\x89\x86\xd4\xc2\x40\x4e\x42\xcb\xa9\xf3\x23\x02\xd0\x6a\xb5\x70\xec\xd8\x31\x76\x3b\xef\x78\xbd\xed\x0a\x77\xab\x62\x82\xff\x9a\x21\x20\xbe\xa4\x0f\x88\xc7\xec\x93\x99\x7f\x74\x5e\xe1\xae\x6d\x0d\x9b\xbf\x73\xfc\x13\x2f\xa9\x4d\x26\xd3\x72\xe3\x12\x00\x80\xc6\xc6\x46\xb6\x39\xa8\x7e\x15\x15\x7c\x25\x00\x06\xc4\x34\x05\x55\xaf\x5a\xad\x56\xd6\x11\x63\x77\xb2\x22\xd6\xe7\xdb\x80\x02\xac\x09\x2b\x9f\x35\xe8\xf5\x5a\x8d\x46\x03\x00\x8b\x2b\x0c\x26\x93\x89\x31\x4d\xcb\x9b\x8b\x13\x15\xf3\x9a\x8c\x8b\x02\x0d\xf9\x7c\xbe\x62\x42\x96\xb3\x61\x00\x00\xd8\xb7\x6f\x1f\xd3\x1c\x50\xfc\x43\xc5\x38\xff\xcf\xf9\x30\x7e\x69\x02\x05\x31\xd6\xa9\xcc\xdf\x51\x2c\x87\xfd\xfb\xf7\x7f\xe5\xd4\xa9\x53\xa9\xfc\x18\x4e\xa7\x13\x3b\x1c\x0e\x4c\x29\x05\xb7\xdb\x0d\x93\x93\x93\x84\x61\x18\x9c\x94\x8b\x1c\x45\x4b\x03\xb6\x04\x4b\x38\x00\xc0\x21\xb5\xe0\x23\x88\x12\x04\xa8\xa0\x69\xf3\xea\x8c\x17\x10\x82\xbc\xdf\x2e\x30\xac\x56\xab\x19\x5d\x5a\x56\x55\x18\x26\x57\x84\x95\xc2\xb4\x48\x48\x4a\x12\x18\xac\x0a\x1a\x1a\x1a\x70\xb5\xc1\xd6\xec\xb8\x9b\xf8\xca\x92\x6c\xd1\x92\xf0\x32\xbb\x49\xd8\x5c\x99\xbf\x75\xd4\xe8\x4f\xb6\xb5\xb5\x5d\x1f\x19\x19\x21\xc7\x8e\x1d\x63\x76\x30\xf5\x87\x37\x7a\xb5\x9f\x13\x31\x08\x77\x3a\x63\x3f\xfc\xb0\xf5\x41\xcf\xfc\xfc\x7c\xea\xd6\x1a\xe5\x4f\x9b\x82\xaa\xfd\xda\xb4\xcc\x08\x08\x20\xa2\x14\xfc\xc3\x15\x89\x5f\xc6\xe3\x71\x1e\xe9\x74\x77\x3f\x6c\x88\xfc\xec\x69\x97\xe1\x35\x4c\x01\x47\x95\x62\xe8\x72\x53\xf8\x07\xa1\x50\x28\x9e\x8f\xc5\x19\x00\x00\xad\x56\x8b\x01\x80\x55\x66\xb0\x11\x20\x97\xa8\x41\xd9\x20\x90\x63\xc5\x60\x22\x91\xe0\xe1\x31\xfd\x6e\x43\x43\x03\x36\xf8\x85\x97\x90\x08\xea\x25\xb9\x2e\x89\x30\x0b\xef\x14\x18\xa3\x4f\x78\xa5\xb9\xb9\xf9\xb6\x5e\xaf\x17\xb6\xb3\xf5\x47\x8e\x0c\x5a\x4f\x21\x00\x06\x01\x40\x7d\x48\x79\x24\xd3\x41\x5f\xb8\x11\x1e\xef\x09\xc9\x52\x17\x7f\xd2\x39\xf7\xd9\xc6\x79\xe5\x51\x82\x40\x98\xb0\x24\xdf\x49\x90\xf4\xf5\xb3\x67\xcf\x92\xad\x5b\xb7\xfa\xa1\xb1\xe9\xab\xc3\x15\x89\xdf\x68\x78\x99\x63\x5e\x93\xb9\x9d\x12\x33\x37\xaf\x74\x5f\x29\xd0\x5f\x58\x61\x4a\x29\x66\x08\x62\x17\x73\xc9\x59\xbd\xc9\xc8\x68\x9c\x10\xb2\x92\x3b\x79\x24\x0c\x33\x9b\xcd\x8c\x62\x8e\xac\xcd\x67\x80\x16\x15\x1a\x65\x83\x10\x4a\x01\xe5\x1a\x29\xa5\xa0\x48\x90\x36\x7b\xbd\x9d\xb1\x58\x2c\xcc\xda\x09\xf5\xe7\x10\x05\x06\x72\x87\x1e\x4c\x40\xd9\xe6\x57\x7f\x76\x50\xaf\xfc\xf0\xec\xd9\xb3\xf1\x1d\x3b\x76\x9c\x4b\x55\xd8\x7a\x10\x42\x30\x3b\x3b\xcb\xf5\xf5\xf5\x09\xd1\x68\x94\x5c\xbc\x78\x11\xbc\x5e\xef\xb4\xd3\xe9\xfc\xb9\x5a\xad\xc6\x01\x57\x40\xb8\x73\xe7\x0e\x99\x9f\x9f\x2f\xb8\x3c\x46\x4a\x64\x5e\xe0\x08\x00\x0a\x8e\x78\x11\xca\xb9\x8f\x92\x6d\x18\xe3\xdc\x49\xad\x08\x50\x2e\xc5\x87\xa4\x73\x65\xe5\x2b\x93\xc9\xb0\x4c\x26\x83\x0c\xa6\x4b\xa7\xce\x0a\x1e\x34\x1a\x0d\xf6\xfb\xfd\xe4\xf4\xe9\xd3\x7c\x45\x45\x85\x90\xc9\x64\x20\x14\x0a\x15\xe6\xa6\x94\x92\xe1\xe1\x61\x08\x87\xc3\x82\x5c\x2e\x87\x85\x85\x05\x88\xc5\x62\x4b\xe8\x94\x1e\x2d\x89\x20\xa3\x7c\x71\xca\x95\x15\xb1\x1a\x16\xc3\xab\x55\x43\x3a\x9d\x26\x9c\x5e\x33\x0a\x90\x81\xbc\x0b\x29\xfe\x5d\x9c\x09\x41\x52\x2f\x1b\x8b\xc5\x62\x42\x3a\x9d\x26\x77\x6b\xe4\xa7\x9c\x01\xf5\x41\x85\x88\x94\x00\x00\x9c\x5c\x8c\x0e\x56\xc6\x7f\x19\xf0\x05\x84\x96\x96\x16\xfc\xcc\xb6\xa7\xd5\x4d\xbc\x61\x73\x06\x53\xee\x01\x04\xef\x7d\x70\xb9\x87\xf7\x7a\xbd\x60\xb1\x58\xe0\xe0\xfe\x03\xec\xc6\x8c\xfd\x39\x5d\x9a\xa9\x9a\x34\x71\xef\x5f\x73\xdd\x73\xf5\xf5\xf5\x91\x7c\xd2\x8f\x01\x00\x22\x8a\x22\x46\x08\x09\x49\x39\x89\x16\xaf\x89\x26\x8d\xad\x2c\xcb\x96\xbd\x38\x93\x4a\x4f\xda\xe6\x76\xbb\x85\xca\xa7\xec\xe7\x05\x16\xfd\xbd\x9c\xa7\x4b\x73\x61\x45\x39\x31\x51\x06\xa9\x70\x25\x73\xd6\xfd\xd0\x2d\x4c\x4c\x4c\x10\xcb\xe1\xc3\xbf\xfe\xe9\x16\xdf\xe7\xdb\xfc\x9a\xe3\x04\x51\x61\xb8\x82\x3b\x15\x65\xf8\x9e\x70\x38\x4c\x5e\x7c\x7a\x5f\xfd\x2b\x03\xf6\x77\x4c\x49\xa6\x9d\x02\xc0\x8c\xd1\x70\x4e\x7f\x50\xf3\x99\x33\xe7\x7f\x13\xde\xbf\x6f\x9f\xf2\xe5\xc9\x9a\x1f\xb7\x04\x54\xaf\x01\x00\xec\xc2\x86\xb8\xb1\x5d\xfe\xaa\xb8\x4d\x3c\xd7\xd7\xd7\x07\x90\x27\x30\x99\x4c\x82\x28\x8a\x42\x4c\x21\x64\x43\xad\xdc\x7d\x0f\x00\x02\x63\x52\x5e\xab\x54\x2a\x59\xb9\x5c\x2e\x65\x6c\xb9\x30\x90\x00\x00\x8c\x8e\x8e\x42\x06\x91\x31\x77\xbb\xe2\x3f\x28\x02\x42\x81\x02\xa5\xd9\x8d\x30\x5b\xd2\x82\xcb\xf7\xac\x53\xfe\x37\x2f\x87\xdb\xf7\xef\xdf\x27\x5e\xaf\x17\xde\x7b\xef\xbd\xb0\x57\x8c\xfc\xec\x7a\x5d\xf4\xaf\x6e\xac\x89\x7e\xde\x93\x9c\x3f\x7d\xee\xdc\xb9\x68\x75\x75\x35\xd3\xe9\xd6\x7f\xd9\x98\x63\x16\x00\x60\x4d\x58\xf1\x7c\x7b\x50\xff\xe7\x87\x0f\x1f\xc6\x75\x19\xc3\xce\x3c\xb3\x00\x08\xe4\x04\x6b\x77\x4d\x18\xbf\xb9\x7e\xfd\x7a\x2d\xcb\xb2\x00\x12\xb7\x44\xe2\xf1\x38\x1f\x52\x1b\x27\x16\x93\xe9\x59\xb0\x26\xe4\x8d\x0c\x60\xbd\xd5\x6a\x8d\xce\xce\xce\x16\x33\x57\x0e\x48\x3c\x1e\x87\x9b\x37\x6f\x46\xb7\x6d\xdb\xf6\xc3\xc9\xcd\x2a\xa6\xe6\x7e\xea\x6f\xd8\x14\x59\x92\xe2\xcd\xb0\x88\xf3\xac\x55\x9c\x08\x57\x32\xdf\xeb\xbf\x7b\x37\xbc\xb0\xb0\x40\x00\x00\x5c\x2e\x17\xb8\x5c\xae\x14\x00\xa4\xa4\xfd\xcd\x66\x33\xab\xf3\xcb\x9a\x51\x91\xaa\xe8\x52\xcc\x5a\x84\x10\xab\xca\xe0\x5a\xc8\xa5\x19\xf3\xa0\xc8\x60\x3b\x46\x58\x6b\x34\x1a\xe3\x7e\xbf\x7f\x31\x3c\x0c\x85\x42\x42\xc0\x68\xbf\xbf\xb8\x55\x65\xd1\x58\x11\xe9\xed\x71\x76\xa3\xc3\xe1\x70\xcf\xce\xce\x3e\x96\x1d\xf7\xf7\xf7\x03\xcb\xb2\xde\x8e\x8e\x8e\xef\xc4\x76\x6b\x2e\xe9\x82\xe2\x21\x55\x4c\x74\x02\x05\x48\xe9\xf0\x44\xcc\xca\x5c\x10\x65\x70\xfd\xde\xbd\x7b\xfe\x1b\x37\x6e\x00\xac\xb0\x4f\x24\x93\x49\x61\xca\x9c\xba\xdd\x1c\x54\x3d\x97\x5f\x16\x02\x40\x1e\x5a\x93\x57\x10\x42\x82\xc7\x90\xbe\x1b\x53\x08\x41\x5d\x9a\xb1\x66\x31\x28\xdc\xaf\x4c\x5c\x24\x94\x70\xe1\x70\x18\x00\x00\xcb\xf2\xa2\xd2\xe9\x74\xd4\x52\x5f\x89\x36\xbb\x75\x9f\x45\x14\xc9\x24\xf7\x09\xc0\xb1\x24\xec\xb3\x89\x17\x46\x46\x46\x04\x28\xde\x71\xca\x03\x01\x00\xe4\xf5\x7a\xc1\xe3\xf1\x24\x55\x1a\xf5\xa4\xdc\xa1\xbf\x92\xb0\x30\xbf\x89\x9b\x65\xbf\x4a\x6a\xd0\x6f\xbd\x73\xbe\x91\x2b\x57\xae\xc4\xee\xdf\xbf\x4f\x72\xe3\x4a\x4b\xa9\x9b\x20\x00\x80\x94\x4a\xa5\x28\x6b\xb6\x4c\x13\x44\xab\xf4\x29\x59\x45\x5c\x21\x46\x7a\x9a\x22\x6f\x4e\x99\x93\x27\x6e\xdc\xbc\x19\x35\x57\x58\x23\x53\x76\x7e\x46\x21\xe0\x6a\x9e\x21\x99\xfe\xea\xc4\xf9\x5b\x6b\x62\xff\x3a\xf6\x60\xcc\x33\x31\x31\x21\x82\xe4\x9e\x04\x6c\x36\x1b\x3e\xfe\xd2\x71\xc7\x27\xfb\x6d\xbf\x5d\x13\x51\xb4\x83\x64\xc6\x88\x52\x9c\x3e\xb1\x75\x76\xeb\xc9\x5f\xfc\x3c\x18\x0e\x87\xcb\xa5\x62\xa5\x75\x65\xd3\xb4\x06\x83\x01\x03\x00\x3c\xc6\xc9\xad\x80\x2b\x93\xc9\xf0\x81\x03\x07\x70\x6d\x6d\xad\x03\x28\xd4\x00\x80\x40\x81\x4e\xdf\xbb\x77\x2f\xd8\xd7\xd7\x47\x6a\x6a\x6a\xf0\xde\xbd\x7b\x95\x2a\x95\xca\x01\xd9\x2b\x9c\xe0\xd4\xd4\x54\xb0\xbb\xbb\x9b\x08\x82\x90\x1d\x23\x3f\x2a\xc7\x71\x74\x7d\xfb\x7a\x51\x8d\xd8\x96\x86\x79\x65\xe1\xfa\x13\x01\x80\x42\xc4\x06\xbf\x2e\x33\x14\xd6\x88\xfd\xd3\xd3\xd3\x25\x6f\x15\x8b\xea\x8a\xdb\x0a\xff\xd3\xe9\x34\x4d\xa7\xd3\x8f\x73\xf3\x57\xe8\x4b\x29\xa5\xe3\xe3\xe3\x24\x10\x08\xc4\xe3\x89\xb8\xc7\xe3\xf5\xcc\x5e\xbd\x7a\x95\xcb\x05\xfc\x10\x8d\x46\xe9\xc0\xc0\x40\x66\x61\x61\x21\xe2\xf3\xf9\x02\xb7\x6f\xdf\x4e\xf4\xf7\xf7\x8b\x84\x90\xc2\x18\xb2\x9c\x04\x11\x00\x20\x83\xc1\x40\x14\x35\xc6\xf4\x53\x1e\xdd\xa7\x11\x05\xbc\xa8\x51\x08\x8c\x29\x59\xad\x77\x1d\x7b\xf2\xc1\x83\x07\x3c\xcf\xf3\x92\xe4\xed\xff\xff\x13\x89\x44\xc0\xe3\xf1\xc0\xec\xec\x2c\x38\x9d\x4e\x38\x76\xe0\x05\xc3\xd1\xb6\x9d\x1d\x9b\x37\x6f\xc6\x1a\xbb\x31\x31\x34\x34\x44\xbd\x5e\x2f\xe4\x52\x51\x4b\x70\xf3\x36\x4c\x01\x80\x26\x93\x49\x68\x5c\xe7\x4c\x58\x92\xf2\x1d\xb6\x04\x5b\x9b\xed\x9d\xdd\x1e\x34\xbc\xac\x32\xa2\x21\x53\xa9\x0a\xf6\x4e\xde\x1e\x8a\x56\x82\x14\xd5\x95\xfb\x5f\x5c\x9f\x6f\xa3\x92\x76\x2a\x79\xca\xe1\xc0\xa6\x4d\x9b\xe0\xe8\xda\x67\x76\x7c\xba\xbf\xaa\x7b\x93\x47\xf7\xa5\xa7\x66\x75\x9f\xd7\x59\x8c\x49\xbc\xd6\x7a\x63\x78\x78\x58\x28\x85\x2b\x93\x0e\x90\x48\x24\x68\x7d\x7d\x3d\x9f\x31\xb3\xa4\xdd\xa7\xf9\xc4\x52\x07\x85\xa0\x2a\xaa\xe8\xf4\xb5\xb1\xbf\x0c\x44\x43\x79\x17\x22\x25\xaa\x98\xc8\x62\x06\xa0\xa8\x94\x3e\x50\xd4\x0e\x25\xea\x96\xe0\xc8\xe5\x72\xf4\xfc\xf3\xcf\xab\x8f\x0c\xdb\x7e\x6a\xe1\xe4\x6b\xb3\xf1\x0e\x62\xd6\x44\x14\xcf\x4e\xd7\xd3\x77\xe6\x12\x0b\xfe\xbc\x9b\x93\xe2\x3d\xe2\x06\xee\xdc\xb9\x23\x04\xb4\x99\xf7\x1e\x5a\x93\xd7\x0b\xfd\x50\xb6\x54\xf3\xd8\xb1\x7f\xcc\xfc\xc6\x9e\xdd\xbb\xb5\xf9\x54\x4d\x0e\x56\x9d\xa6\xf9\xb8\xc0\x64\x32\x81\x0c\xcb\xf4\x86\x24\xd3\x08\x92\x63\x0c\xa6\xc0\xea\xd2\x4c\x9b\xc5\x62\x29\x89\x27\xbd\x86\x00\x00\xc0\x93\x93\x93\x30\x1f\x9a\xf7\xf5\x36\x46\xbe\x27\xc8\x28\x8f\xb2\x91\x22\x20\x94\x8d\x72\x1a\xe7\x95\x87\xf7\x78\x6c\xaf\x1f\x3a\x74\x88\xd5\x68\x34\xbf\x97\x2b\x16\x00\xc0\x1c\xc7\x01\x20\xe0\xa7\xcc\xa9\x81\x6c\x50\x95\xa5\x8f\x63\x49\x78\x4e\xc7\x8f\x71\x1c\x57\xcc\x1f\x06\x89\x1f\x96\xaa\x0d\x8a\x44\x22\xa4\x6e\x7d\xf3\x1c\x00\xd4\xd6\x2e\x28\x37\x50\x94\x4d\xf7\xe4\x75\xb4\x2a\xaa\xe8\xc2\x6a\x05\xc7\x6e\x70\xdc\x70\xb9\x5c\x62\x26\x93\x01\x78\xd4\x46\x8b\x55\xbe\xf8\x7f\x31\x4e\x29\x9b\x2d\xd7\x0e\x3c\xcf\x93\xaa\xaa\x2a\x21\xbc\x46\x3e\xa5\x4d\x33\x6b\x35\xbc\xcc\x10\xd0\x66\xbc\xe7\xdb\xe6\xbf\xb5\xc0\xa4\x2f\xf6\xf6\xf6\xf2\x12\xba\x0a\xb8\x4b\x6c\x38\xcf\x74\x2c\x16\xa3\x3a\x9d\x2e\x9d\x69\xd0\x4d\xd4\x84\x95\xfb\x74\x69\xc6\x9c\xdd\xe3\x50\x2e\x86\x45\xa8\x6e\x41\xb1\x5f\xa1\x50\x82\x72\xcb\x9a\xab\xde\x59\xaf\xc0\x71\x5c\xb1\xe0\x96\x8c\x59\xe2\xff\x4a\x7d\x0b\x65\x53\x53\x13\x26\x84\xa0\x9c\x3b\x2b\xe0\x7a\x3c\x1e\x5a\xd3\x50\xeb\x9d\xa9\x26\x17\x6f\xad\x89\xfd\xea\xbe\x23\xf1\x3f\x11\x19\x7f\xa9\xa7\xa7\x27\x3e\x37\x37\x47\x4a\x8d\xbd\xc4\x2d\x49\x1f\xaf\xd7\x4b\x1b\x9b\x9b\x42\x73\x15\x74\xb6\xd5\xaf\x3e\xc8\x12\xac\x58\x74\x52\x59\x15\xaa\x89\x28\x76\x3b\x32\xea\x16\xe5\xf6\xba\xcb\x02\xa6\xdc\xdc\xdc\xdc\xc7\xea\x7e\xaa\xaa\xaa\xd0\xd1\x23\x47\x15\xaf\xe8\xb7\xbc\x5a\xb9\xb9\x65\xd6\x1b\x9c\x4b\xc6\x62\xb1\x42\x7b\x26\x93\x81\x91\x91\x11\x31\x16\x8b\x85\x62\xb1\xd8\xf4\xd4\xd4\xd4\x5c\x6f\x6f\x2f\x9f\xcb\xbf\x95\x1c\xb3\x70\xb4\x84\x22\xd7\x20\x8a\x22\x0a\x04\x02\x62\xed\xda\xa6\x19\x9f\x31\xc3\xb5\xfa\xd5\x7b\x30\x85\xc2\x91\x33\x3f\xa2\x85\x93\xaf\x6f\x0d\x6a\x5f\xd6\x34\xd9\x27\xcd\xeb\xeb\x5c\xf1\x44\x5c\xcc\xa5\x5c\x57\x72\x53\x50\xae\xcd\x64\x32\xc1\xae\x5d\xbb\xf0\xc1\x8d\x3b\x5a\x8e\x4d\x54\xfe\xd7\x26\x8f\xee\x9f\x8c\x69\xb6\x21\xbd\xd9\xfa\xee\xf8\xc3\x71\x21\xa7\xaa\xd9\x25\xa3\x94\xcc\xcf\xcf\x23\xb7\xdb\x0d\x3e\x9f\x0f\x78\x9e\x5f\x76\xde\xbc\x4a\x4b\x23\xd4\x42\xa4\x9a\x48\x24\x48\x22\x91\xe0\x2d\xad\x35\xe3\x01\x6d\x86\x36\x07\x55\x5d\x98\x2e\x66\x04\xf3\xa0\x10\xb0\xa9\xd5\xaf\xfe\x54\x23\x6f\xd8\x6c\x6b\xaf\x9b\x71\xac\x6f\xf0\x31\x72\x39\x49\x24\x12\x52\x02\x4a\xf9\xd6\x82\x7a\x32\x0c\x83\x1a\x1a\x1a\xa0\xab\xab\x0b\xef\xdf\xf4\xcc\x9a\xe7\xa3\xf5\x5f\x3d\x30\x6a\xfe\x4f\x0b\xc7\xb6\x43\x56\xb0\xeb\x78\x35\x0a\xd1\x26\xe3\xcd\xd1\xd1\x51\x01\x1e\x35\x8b\x95\xdc\x61\x2e\xf9\xbc\x0a\xd8\xbc\x79\x33\xee\xec\xec\x74\xd4\x84\x15\x7f\xf9\xe2\x7d\xcb\x97\x55\x02\x56\x2f\xca\xa9\x20\xeb\xc2\xaf\x5f\x9b\xb9\x3e\x62\x4f\xbc\x3d\x69\x49\xfd\x7a\x5a\x08\x4d\xfb\xfd\x7e\x61\x61\x61\x81\x24\x12\x89\xc2\xa7\x83\x32\x99\x0c\x34\x1a\x0d\xe8\xf5\x7a\xb0\x5a\xad\x4c\x8d\xd1\x6e\xac\x8b\xaa\x77\xb6\xfa\xd5\xaf\x36\xcc\xab\x8e\x30\x54\x92\xfc\xcb\xf1\x90\xc1\x84\x3b\xd5\xe1\x7f\xe1\xdc\x83\x6b\xbd\x37\x6f\xde\x7c\x22\x97\x87\x60\x95\xa9\x9b\x8d\x1b\x37\xc2\xf6\xed\xdb\xad\xa6\xa4\xfc\xe5\x17\x87\x2c\xaf\x5b\x13\x6c\x95\x54\x9c\x92\x04\x86\x44\x04\x94\xc4\x14\xe2\xb8\x5f\xc7\x0f\x2c\xa8\x84\xf1\x38\x2b\x7a\x78\x86\x44\x29\x02\xc2\x10\xa4\x54\xf1\xd8\x6e\x48\x31\x0d\xb6\x38\xdb\x6e\x49\xc8\xdb\x65\x14\xb4\x00\xa8\xec\x78\x00\x00\x6e\x43\xaa\xf7\xe4\x06\xdf\x0b\x27\x4e\x9c\xe0\x96\xf9\x56\x6b\x59\x86\x01\x96\x46\x37\x65\x23\x9e\xc6\xc6\x46\xd8\xb3\x67\x8f\x56\x85\xd9\xae\x67\x26\x0d\x5f\x79\xca\xa3\x7d\x76\xc5\x8f\x49\x57\x98\x9c\xae\xf6\x1d\x51\x78\x60\x4b\xde\xbd\xd4\xbc\xf0\xf5\x90\x98\x38\xff\xd6\x5b\x6f\xa5\x4a\xd0\x5a\xcc\x07\x14\xb7\x97\xfa\xd6\xb2\x78\xe1\x70\xae\xa4\x0b\x0b\x0b\x74\x6a\x6a\x2a\x63\xaf\xac\x98\xf6\x57\xe3\xde\x69\x53\x2a\x68\xe5\xe4\x2d\x5a\x5e\xa6\x07\x04\x80\x96\x79\x4a\xb5\xc3\x2a\xde\x29\x02\x08\xab\x85\xe0\x85\xd6\xd0\x8f\xae\xd7\xc6\xbe\x1e\x4e\xc5\xae\x9f\x3f\x7f\x9e\x2f\xe3\x06\x8b\x8f\xa9\xd2\xbd\x03\x60\xb5\x36\x5c\x0a\xb6\x6c\xd9\x82\x3b\x3a\x3a\xf4\x0c\x96\xad\x6b\x0a\xaa\x3e\xd3\x39\xa3\x3b\x56\x11\x63\x6b\xf2\x1f\x89\x2e\x4d\xf2\x66\x2f\xe5\x90\x54\x9c\x8f\x50\x96\xff\x6e\x9a\x16\x28\x0b\xab\x84\xe0\xad\x9a\xd8\xb9\x21\x47\xe2\x4d\x01\xc8\xdd\xd1\xd1\xd1\xf0\xb5\x6b\xd7\x48\x6e\x23\x7c\x22\x58\xb5\x0d\x97\x02\x9d\x4e\x07\x5b\xb7\x6e\xc5\x4d\x4d\x4d\x7a\x04\xc8\xe9\x88\xb1\x07\xd7\xf9\x34\x2f\x34\xcd\xab\xda\xd5\x3c\xd6\x2e\x95\xa7\xf4\xa3\xb6\x32\x72\x46\x14\xd2\x0c\x4d\xb9\xcc\xc9\x91\xe1\x0a\xee\xbd\x69\x53\xea\x2c\x01\x3a\xe4\x76\xbb\x43\x37\x6e\xdc\x20\xc1\x60\xf0\x49\x49\x5d\x9c\x62\x99\xb6\xe2\xe0\xa0\xec\x2d\xbe\xc9\x64\x82\xf6\xf6\x76\xdc\xdc\xdc\xac\x64\x18\xc6\x2e\xa3\xa8\xd9\x9a\x90\x77\x56\x47\x14\x5b\xec\x31\xb6\xd1\xcc\xc9\x1d\xba\xb4\x4c\xcf\x0a\x98\xc5\x34\x7b\xdb\x41\x11\x90\x8c\x8c\xf0\x71\x85\x18\x5d\x50\x09\x41\xbf\x96\x9f\xf0\x1a\xf8\x01\x9f\x2e\x7d\x4d\xc0\x74\x8c\x10\xe2\x75\xb9\x5c\xdc\xe0\xe0\x20\xc9\xdd\x21\x2f\x97\x1e\xce\xd3\xbb\x5c\x06\x66\x55\x0c\x97\x4c\xd3\x94\xeb\xcb\x30\x0c\xae\xab\xab\x83\xfa\xfa\x7a\x5c\x55\x55\xc5\x2a\x95\x4a\x2d\x00\xe8\x11\x20\x23\x00\x18\x31\x05\xb5\x8c\x20\x35\x02\x00\x11\x53\x5e\x44\x10\x07\x80\x28\x05\x1a\x06\x80\x70\x26\x93\x89\xfb\x7c\xbe\xd4\xe4\xe4\x24\x71\xb9\x5c\x90\x4e\xa7\x3f\xf6\x68\xeb\xc9\xb7\xd8\x55\x80\xd1\x68\xc4\x16\x8b\x05\xf4\x7a\x3d\xe8\x74\x3a\xcc\x30\x0c\x68\x34\x1a\x8c\x10\x02\x8e\xe3\x88\x20\x08\x10\x8f\xc7\x49\x24\x12\x81\x50\x28\x04\x92\x3b\xa0\xdf\x19\x48\x6d\x78\x39\xb5\xf9\x83\x06\x5c\x54\x16\xd7\x4b\xff\x17\xf7\xfd\x28\xb8\xe5\xe6\xff\x58\x71\xff\x0f\x53\x0e\xb2\x7c\x11\x33\x9d\x6b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x8a\xd5\xc5\x8c\x92\x15\x00\x00") +var _web_uiV1StaticAppleTouchIcon60x60Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x15\x6d\xea\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\x00\x00\x15\x59\x49\x44\x41\x54\x68\x81\xed\x3a\x69\x6c\x9b\xc7\x95\x6f\x86\x1f\x3f\xde\xf7\x21\xea\xb0\x6e\x51\xb2\x2d\x3b\xb2\x2d\xdb\x8a\xe3\x23\x8e\xaf\xc4\xb1\xdd\x38\x45\x36\x69\xbb\x8b\xa2\x7b\x60\xb7\xc0\x02\xdd\x76\x17\xdb\x2d\xda\x6c\x51\x60\x8b\x6e\x51\x14\x45\xb6\xdb\x2d\xb6\xbb\x05\x9c\x4d\x8b\xd4\x75\xb1\x75\xea\xb8\x75\xed\xc8\x4e\x64\x39\xf2\x6d\x4b\xb2\x75\x59\x96\x28\x89\xa4\x28\x92\xa2\x78\x7e\x24\x3f\x7e\xdf\xcc\xfe\xe0\xa1\x4f\x34\x29\xc9\x4e\xba\x05\x8a\x3e\xe0\xe3\x7c\x9c\x99\x37\xf3\xde\x9b\xf7\xe6\xcd\x7b\xf3\x01\xfc\x11\xfe\x08\x7f\x50\x80\x72\x25\x06\x00\x92\x2b\x21\xf7\x5e\x0c\xd2\x3e\xc5\x7d\xb1\xb4\x23\x42\x08\x6c\x36\x1b\xd8\xed\x76\xb0\xd9\x6c\xd8\x60\x30\x60\xad\x5a\xc3\xa8\x19\x05\xab\x42\x72\x16\x21\x84\x53\x62\x86\x4f\x23\x91\x8f\xc6\x63\x42\x24\x1a\x11\xc2\xe1\x30\x99\x9b\x9b\x03\x9f\xcf\x07\x99\x4c\x86\x14\xcd\x2b\x05\x52\x54\x5f\x4c\xd3\xb2\xb8\x08\xca\x43\x31\xf2\x8a\x50\x5d\x5d\x8d\x9d\x4e\x27\x6e\xa8\xa9\x55\xd7\xa6\x75\x1b\xab\x23\x8a\x1d\xf6\x38\xbb\xc5\xcc\xc9\x9d\xda\xb4\xac\x4a\x2e\x22\x3d\x02\x60\x73\xdd\x05\x11\x03\x97\x60\x45\x7f\x58\x29\x4c\x04\xb5\xfc\x80\x57\xcf\xf7\xcd\xe8\x93\x1f\xba\xe6\xbd\xe1\x07\x0f\x1e\x08\x13\x13\x13\xc5\xcc\x7f\x64\x40\xf0\xa8\x14\x1e\x0b\x18\x86\x81\xb5\x6b\xd7\x42\xfb\xba\xf5\x6c\x1b\xb5\x75\xad\x9b\x53\x7f\xa6\x31\xa8\x3a\xac\x14\x70\x15\xca\x2b\x10\x85\x45\x5d\x5a\x02\xd9\x86\x7c\x33\x05\x0a\x22\x02\xce\x6b\x48\xf7\x0c\x57\x24\xde\x1e\x32\x44\xde\xbd\xff\x70\x34\x3c\x38\x38\x08\xb1\x58\xec\xa3\x90\x59\x80\xd5\xac\xb0\x54\x20\x05\xb5\x41\x08\x61\xa7\xd3\x09\xdb\xb7\x6e\x53\x3e\x15\xb3\xbc\xd4\x39\xa3\xfb\xa2\x35\x21\xef\x44\x74\xb9\x21\x21\xcf\xd9\x12\x28\x27\x8f\xa4\x5c\xf4\x0d\x54\xc5\x7f\x74\xa3\x32\xfc\xc3\xbb\xe3\x43\xfe\x5b\xb7\x6e\x41\x3a\x9d\x5e\x91\xa9\x95\xa6\x07\x28\xad\xbe\xe5\xec\x02\x0c\x06\x03\xde\xb3\x7b\x37\xb3\x45\x55\xb7\x63\xf7\x43\xd3\xb7\xed\x71\xf9\xb6\xd2\x43\xd3\x47\xab\x9f\x00\x52\x0c\xf1\x5d\xad\x8f\x7e\xf3\x9a\x31\x70\xe2\xf2\x87\xbd\xdc\xe4\xe4\xe4\x13\xab\xb9\x2c\x57\x96\xa2\x8c\x96\x6a\x6b\x6d\x6d\xc5\x87\xf7\x1d\x32\x1e\x0d\xd6\x7d\x6b\xef\xb8\xe9\xdf\xb4\x69\xd9\x9a\xc5\xd5\x41\x8b\x45\xb9\x95\x96\xb4\xa1\xbc\x4c\x10\x00\xa2\xd2\xf6\xa5\xdd\x19\x8a\xb4\xf5\x21\xe5\xe1\xa6\xb8\x6e\xb7\x72\x53\xcd\x75\x5e\x01\x41\xaf\xd7\xfb\x44\xd2\x7c\x2c\x1b\x7e\xfa\xe9\xa7\x61\x57\xd3\xa6\xf6\x17\x87\x2c\x6f\x5a\x13\x6c\x47\x96\xec\xbc\x1d\x66\xcb\x7c\x1d\x05\x00\x01\x53\xc1\xaf\xcb\x78\xe7\x74\xbc\x2b\xa4\xca\xb8\x13\x0a\x31\xc8\xcb\x68\x9c\x22\x4a\xe4\x22\x56\xab\x79\x6c\x36\x26\x99\x2a\x5b\x9c\xad\xaf\x8c\xb2\xb5\x4a\x01\x2b\x0b\x76\x0f\x14\x68\x6e\x3c\xe9\xdb\x8c\x31\xdd\x7b\x6a\xc3\xdc\x0b\x27\x4e\x9c\xe0\x04\x41\x78\x6c\x86\x19\x28\xbf\x13\x2f\x51\xe9\x03\x07\x0e\x30\x3b\xcc\xad\xbb\x8f\xde\xb5\xbe\xad\xce\xc8\xec\x8b\xbc\xe6\x09\x44\x80\x28\x00\xc1\x94\x4c\x9a\x53\x63\xc3\x15\x89\xf7\xa7\x4d\xa9\x4b\x3c\x43\xc7\x01\x20\x08\x00\x1c\x00\xf0\x89\x44\x82\x00\x00\x51\x68\x14\x98\x61\x18\x16\x00\xd4\x00\x60\xc4\x04\xea\x2b\xa3\x8a\xa7\xdb\xfc\xea\xe7\x9c\x7e\xf5\x66\x56\x40\x6c\x6e\x58\x00\x8a\x80\x22\x80\xa4\x9c\xc4\xcf\xb7\x86\xbe\x1f\x8b\xc5\x04\x51\x14\xcb\xf1\xf4\x88\x9b\x94\xd6\x95\xd2\xbb\x47\x6c\xf6\xc0\x81\x03\xcc\x2e\x63\xdb\xc1\x63\xf7\xac\x6f\xcb\x09\xd6\x97\x9a\x85\x22\x4a\x86\xed\xdc\xcd\x1b\xb5\xd1\xb7\xc2\x2a\xa1\x87\x50\xe2\xf6\xfb\xfd\xf1\x99\x99\x19\x21\x10\x08\x40\x28\x14\x02\x8e\xe3\x96\x8c\xab\x50\x28\xb0\xc1\x60\x00\x9b\xcd\x06\xd5\xd5\xd5\xb8\xba\xba\x5a\x2d\x67\xe4\x76\x85\x80\x3b\x3b\x3c\xda\x3f\xdb\xec\xd6\x3d\xc7\x8a\x58\x99\x95\x2d\x25\xef\x6c\x08\xfe\xcb\xa4\x91\x7b\xe3\xdd\x77\xdf\x0d\xfb\x7c\xbe\x27\xb2\xe3\x15\xb6\x54\x80\xae\xae\x2e\x7c\xa0\x61\xcb\xce\x97\xfb\xed\xef\xb0\x22\x32\x4a\x7c\x48\x61\x04\xbf\x36\xe3\xed\x76\x86\x7e\xe0\xd7\x66\x4e\x27\x53\x49\xd7\xbd\x7b\xf7\x52\x63\x63\x63\x90\x5b\xcd\x55\x83\x5c\x2e\xc7\x4d\x4d\x4d\xd0\xde\xde\xce\x9a\xcd\x66\xbb\x26\x8d\x9f\xdb\xf3\xd0\xf4\x85\x96\x80\xaa\xe3\x6a\x5d\xf4\x7f\xaf\xd5\x45\xbf\xd8\x77\xb5\xcf\x3d\x38\x38\xf8\xc4\x9b\xd6\x72\x27\x2d\xdc\xda\xda\x0a\x87\xbb\xf6\x3a\x3f\x75\xbb\xe2\x82\x96\x67\x6a\xf2\xb6\x44\x25\xbb\xca\x9d\x9a\xf8\xc5\xde\x86\xf0\x37\x79\x22\xdc\xec\xef\xef\x8f\xf7\xf7\xf7\xc3\x93\xd8\x56\x11\x90\xe6\xe6\x66\xdc\xd5\xd5\xa5\x54\xab\xd4\xce\xba\x05\xe5\x91\x69\x53\xea\xf4\xf8\xc4\xc3\x91\xee\xee\xee\x95\x98\x2d\xa5\xd2\x05\x28\xbb\xc2\x46\xa3\x11\x7f\xf2\xa5\x97\xf5\xaf\x0e\x55\x9e\xa9\x89\x28\x77\x02\x48\xfd\x25\x05\x11\x01\xb9\xd8\xb2\x70\xe2\xbe\x23\xf1\x5d\x7f\xc0\x3f\x7e\xe9\xd2\x25\x21\x12\x89\x48\x8f\x7d\xc5\x47\xbc\x52\xff\x4b\x1d\x65\x0b\x6d\x2c\xcb\xc2\xf6\xed\xdb\xb1\xd3\xe9\x64\xbd\x5e\x2f\xdf\xdd\xdd\x4d\x78\x9e\x5f\xc2\x94\xcd\x66\x83\x4d\x9b\x36\x61\x93\xc9\xc4\x24\x93\x49\x32\x36\x36\x26\x8c\x8e\x8e\x02\xa5\xb4\xe4\x51\xb3\x2c\xc3\xc7\x8f\x1f\x67\x0f\x27\x1b\x5f\xdf\x31\x61\xfc\xda\xe2\xbe\x99\x65\x58\xc4\x94\x9c\x6b\x9b\xff\xf7\x31\x1b\xf7\xdd\xb1\xb1\x31\xef\x07\x1f\x7c\xf0\x91\x97\xf4\x49\xa0\xa6\xa6\x06\xbf\xf4\xdc\x0b\x8e\x03\x0f\xad\xdf\xab\x0f\x29\x9f\x0d\xab\x04\xd7\xa5\x96\x85\x2f\x5f\x9c\x1d\xe8\xed\xe9\xe9\x29\x49\x13\x2e\xf5\xac\x5b\xb7\x0e\xb7\x68\x2a\x37\x6e\x9b\xd2\x7f\x09\x21\xc8\x72\x89\xb2\x1b\x32\x45\x14\xde\x6f\x5e\x38\xf1\xc0\xc6\x7d\x77\x70\x70\xd0\xfd\xc1\x07\x1f\x90\x72\xe3\xfc\xae\x9f\xdd\xbb\x77\xb3\xfb\x26\xac\x6f\xb4\x04\xd5\x7f\x22\x27\xd8\x6e\x4b\xb0\xdb\x8e\xdc\xb7\x9e\xdc\xd0\xbc\xd6\x61\xb7\xdb\x4b\xe2\x48\x97\x9c\x00\x00\x91\xcb\xe5\xd0\xd9\xd9\xa9\xdc\x39\x61\xf8\x86\x5c\x44\x6a\xa0\x14\x0a\x0f\x50\x18\xac\x4c\x5c\x1c\xac\x4c\x7c\x7b\x78\x64\xc4\x7d\xf5\xea\x55\x28\xc2\x2f\x2e\xc9\x32\xed\x1f\x09\x2c\x16\x0b\x68\x35\x5a\x63\x4d\x58\xb1\x1b\x00\x0a\x34\xaa\x32\xd8\x6e\x8f\xb3\x5d\x55\x55\x55\x25\xf1\x1e\xb1\xa1\xf5\xeb\xd7\x43\x1d\xaf\xdb\xd1\x34\xaf\x7a\x9e\xa2\xac\xff\xcb\x3f\x21\xb5\xe0\xeb\x69\x0a\x7f\xc3\x37\xe7\x73\x5d\xbe\x7c\xf9\x71\x98\x59\x4e\x18\xc5\xcf\xaa\xfa\x51\x4a\x01\x00\x48\x58\x9d\xf1\x03\x00\xe4\x69\x25\x08\x84\xa8\x52\x08\x61\x8c\x4b\xe2\x3f\xb2\x9b\x6d\xd8\xb0\x41\xb9\xc5\xad\xff\x02\x02\x84\x81\xe6\x36\xa9\xdc\x51\xf0\x62\xf3\xc2\x1b\x9c\x98\xbe\xdd\xdd\xdd\xbd\x92\xcd\x7e\x94\x55\x5c\x95\x26\x84\x42\x21\x92\xe0\x12\xd1\x4b\xcd\xe1\x37\xa2\x0a\x21\x0c\x00\x20\x22\x10\x7a\x9a\xc2\x3f\x89\x29\xc5\x7b\x6e\xb7\xbb\x24\x1e\x03\x92\x2d\xbc\xb1\xb1\x11\xac\x58\xdb\xdc\x14\x54\x1d\xa4\x00\x00\x08\x80\x02\x02\x40\x00\x93\xe6\xd4\x5d\xb7\x31\xfd\xf3\xeb\x57\xae\x73\x89\x44\x02\xa4\x78\xbf\x2f\x78\xff\xfd\xf7\xf9\x43\x87\x0e\xfd\xe2\xcd\xad\xb3\x2e\x73\x52\xbe\x31\xce\x8a\xde\xa4\x9c\x7c\x38\x34\x34\x14\xf2\xfb\xfd\x25\x69\xcc\x1f\x2d\x31\x40\x36\x30\x68\xf5\xab\x5e\x91\xd1\xec\xb1\x4e\x1a\xa7\xde\xac\x8d\xfe\x38\x1c\x09\x7b\x87\x87\x87\x41\x8a\x23\x79\x7f\xdc\x52\x0a\x2b\xd5\x95\xc4\xf5\x78\x3c\x70\xe6\xcc\x99\x68\x47\x47\xc7\xfb\x26\x93\xa9\x37\x19\x4b\x92\xd1\xd1\x51\x61\x6c\x6c\xac\x2c\x2e\x23\xa9\x84\xaa\xaa\x2a\x6d\xd3\x80\xfa\x79\x0a\x34\x1b\xbd\xa0\xec\x5e\x10\xd0\x66\x5c\x5e\x3d\x7f\x7e\xe0\xf2\x00\x9f\xf3\x6f\x05\x9c\xa2\xf7\xc7\x2d\x01\x1e\xdd\x47\xca\x85\xa5\x04\x00\x40\x26\x93\xc1\x86\x0d\x1b\xc0\xe1\x70\x30\x00\x40\x66\x66\x66\xc8\x85\x0b\x17\x04\x00\x10\x10\x42\xb8\xbd\xbd\x1d\x5e\x3e\x7e\x5c\xc9\x32\x2c\x0e\x45\x16\xf8\x3b\x77\xee\x40\x20\x10\x28\xcc\x9b\x67\x18\xea\xea\xea\xb0\x9a\x30\x55\x8e\x18\xbb\x31\x1b\xc4\x53\xc8\xdb\xf0\xa8\x9d\xbb\xc8\x67\x78\xef\xf8\xf8\x38\x3c\x29\x58\x2c\x16\x5c\x57\x57\x07\x46\xa3\x11\x03\x00\x44\xa3\x51\x32\x3d\x3d\x0d\x7e\xbf\xbf\xd8\x56\xcb\xda\xb0\x42\xa1\xc0\xc7\x8e\x1e\x65\x76\xa6\xd7\xfc\xe9\x46\xaf\xf6\x2f\x08\xa2\xc2\x2d\x67\xeb\xf7\x2f\x37\x36\x9e\x3e\x73\xe6\x8c\xb0\x77\xef\x5e\xbc\xcf\xdc\x7e\x70\xcf\xb8\xf1\x5b\xba\xb4\xac\xc6\x65\x4e\x9d\x3f\xff\x62\xdd\x17\x4f\x5f\xf8\xb5\xdf\xe3\xf1\x10\x80\xac\x4a\x03\x00\x60\x87\xc3\x01\x15\x31\x45\xa7\x8c\x22\x76\xf1\xfc\x95\x3d\x46\xba\x2c\xc9\xdf\x4e\x4f\x4f\xa7\x72\x47\xc6\x72\xb6\x5b\xf2\x48\xa7\x56\xab\x61\xd7\xae\x5d\xd8\x69\xae\x69\x33\x7b\x85\x57\x95\x61\xb1\x1d\x01\xe0\x94\xb6\x66\x64\xe1\xb9\xa7\x4e\x3e\x8c\xcf\x0d\xf4\xf4\xf4\x90\x68\x34\xba\xa2\xd0\x3a\x3b\x3b\xf1\x36\xa1\xfa\xb5\xfd\x63\xa6\x1f\xe7\x22\x6a\x38\x3c\xc4\xee\xe0\x3a\xc4\x17\x99\xe3\xc7\xdf\xab\xd3\x57\x34\xbe\x78\xdd\xf2\x36\x4b\x90\x1e\x00\x41\x4b\x50\xfd\x5a\x9a\x31\xf3\xc1\x9d\x3b\xff\xfa\xe4\xc9\x93\xbc\x94\x78\x62\xb5\x5a\x19\x7b\x5c\xfe\x14\x64\xdd\x2d\x00\xcd\x86\x7b\x49\x39\x89\x86\xd4\xc2\x40\x4e\x42\xcb\xa9\xf3\x23\x02\xd0\x6a\xb5\x70\xec\xd8\x31\x76\x3b\xef\x78\xbd\xed\x0a\x77\xab\x62\x82\xff\x9a\x21\x20\xbe\xa4\x0f\x88\xc7\xec\x93\x99\x7f\x74\x5e\xe1\xae\x6d\x0d\x9b\xbf\x73\xfc\x13\x2f\xa9\x4d\x26\xd3\x72\xe3\x12\x00\x80\xc6\xc6\x46\xb6\x39\xa8\x7e\x15\x15\x7c\x25\x00\x06\xc4\x34\x05\x55\xaf\x5a\xad\x56\xd6\x11\x63\x77\xb2\x22\xd6\xe7\xdb\x80\x02\xac\x09\x2b\x9f\x35\xe8\xf5\x5a\x8d\x46\x03\x00\x8b\x2b\x0c\x26\x93\x89\x31\x4d\xcb\x9b\x8b\x13\x15\xf3\x9a\x8c\x8b\x02\x0d\xf9\x7c\xbe\x62\x42\x96\xb3\x61\x00\x00\xd8\xb7\x6f\x1f\xd3\x1c\x50\xfc\x43\xc5\x38\xff\xcf\xf9\x30\x7e\x69\x02\x05\x31\xd6\xa9\xcc\xdf\x51\x2c\x87\xfd\xfb\xf7\x7f\xe5\xd4\xa9\x53\xa9\xfc\x18\x4e\xa7\x13\x3b\x1c\x0e\x4c\x29\x05\xb7\xdb\x0d\x93\x93\x93\x84\x61\x18\x9c\x94\x8b\x1c\x45\x4b\x03\xb6\x04\x4b\x38\x00\xc0\x21\xb5\xe0\x23\x88\x12\x04\xa8\xa0\x69\xf3\xea\x8c\x17\x10\x82\xbc\xdf\x2e\x30\xac\x56\xab\x19\x5d\x5a\x56\x55\x18\x26\x57\x84\x95\xc2\xb4\x48\x48\x4a\x12\x18\xac\x0a\x1a\x1a\x1a\x70\xb5\xc1\xd6\xec\xb8\x9b\xf8\xca\x92\x6c\xd1\x92\xf0\x32\xbb\x49\xd8\x5c\x99\xbf\x75\xd4\xe8\x4f\xb6\xb5\xb5\x5d\x1f\x19\x19\x21\xc7\x8e\x1d\x63\x76\x30\xf5\x87\x37\x7a\xb5\x9f\x13\x31\x08\x77\x3a\x63\x3f\xfc\xb0\xf5\x41\xcf\xfc\xfc\x7c\xea\xd6\x1a\xe5\x4f\x9b\x82\xaa\xfd\xda\xb4\xcc\x08\x08\x20\xa2\x14\xfc\xc3\x15\x89\x5f\xc6\xe3\x71\x1e\xe9\x74\x77\x3f\x6c\x88\xfc\xec\x69\x97\xe1\x35\x4c\x01\x47\x95\x62\xe8\x72\x53\xf8\x07\xa1\x50\x28\x9e\x8f\xc5\x19\x00\x00\xad\x56\x8b\x01\x80\x55\x66\xb0\x11\x20\x97\xa8\x41\xd9\x20\x90\x63\xc5\x60\x22\x91\xe0\xe1\x31\xfd\x6e\x43\x43\x03\x36\xf8\x85\x97\x90\x08\xea\x25\xb9\x2e\x89\x30\x0b\xef\x14\x18\xa3\x4f\x78\xa5\xb9\xb9\xf9\xb6\x5e\xaf\x17\xb6\xb3\xf5\x47\x8e\x0c\x5a\x4f\x21\x00\x06\x01\x40\x7d\x48\x79\x24\xd3\x41\x5f\xb8\x11\x1e\xef\x09\xc9\x52\x17\x7f\xd2\x39\xf7\xd9\xc6\x79\xe5\x51\x82\x40\x98\xb0\x24\xdf\x49\x90\xf4\xf5\xb3\x67\xcf\x92\xad\x5b\xb7\xfa\xa1\xb1\xe9\xab\xc3\x15\x89\xdf\x68\x78\x99\x63\x5e\x93\xb9\x9d\x12\x33\x37\xaf\x74\x5f\x29\xd0\x5f\x58\x61\x4a\x29\x66\x08\x62\x17\x73\xc9\x59\xbd\xc9\xc8\x68\x9c\x10\xb2\x92\x3b\x79\x24\x0c\x33\x9b\xcd\x8c\x62\x8e\xac\xcd\x67\x80\x16\x15\x1a\x65\x83\x10\x4a\x01\xe5\x1a\x29\xa5\xa0\x48\x90\x36\x7b\xbd\x9d\xb1\x58\x2c\xcc\xda\x09\xf5\xe7\x10\x05\x06\x72\x87\x1e\x4c\x40\xd9\xe6\x57\x7f\x76\x50\xaf\xfc\xf0\xec\xd9\xb3\xf1\x1d\x3b\x76\x9c\x4b\x55\xd8\x7a\x10\x42\x30\x3b\x3b\xcb\xf5\xf5\xf5\x09\xd1\x68\x94\x5c\xbc\x78\x11\xbc\x5e\xef\xb4\xd3\xe9\xfc\xb9\x5a\xad\xc6\x01\x57\x40\xb8\x73\xe7\x0e\x99\x9f\x9f\x2f\xb8\x3c\x46\x4a\x64\x5e\xe0\x08\x00\x0a\x8e\x78\x11\xca\xb9\x8f\x92\x6d\x18\xe3\xdc\x49\xad\x08\x50\x2e\xc5\x87\xa4\x73\x65\xe5\x2b\x93\xc9\xb0\x4c\x26\x83\x0c\xa6\x4b\xa7\xce\x0a\x1e\x34\x1a\x0d\xf6\xfb\xfd\xe4\xf4\xe9\xd3\x7c\x45\x45\x85\x90\xc9\x64\x20\x14\x0a\x15\xe6\xa6\x94\x92\xe1\xe1\x61\x08\x87\xc3\x82\x5c\x2e\x87\x85\x85\x05\x88\xc5\x62\x4b\xe8\x94\x1e\x2d\x89\x20\xa3\x7c\x71\xca\x95\x15\xb1\x1a\x16\xc3\xab\x55\x43\x3a\x9d\x26\x9c\x5e\x33\x0a\x90\x81\xbc\x0b\x29\xfe\x5d\x9c\x09\x41\x52\x2f\x1b\x8b\xc5\x62\x42\x3a\x9d\x26\x77\x6b\xe4\xa7\x9c\x01\xf5\x41\x85\x88\x94\x00\x00\x9c\x5c\x8c\x0e\x56\xc6\x7f\x19\xf0\x05\x84\x96\x96\x16\xfc\xcc\xb6\xa7\xd5\x4d\xbc\x61\x73\x06\x53\xee\x01\x04\xef\x7d\x70\xb9\x87\xf7\x7a\xbd\x60\xb1\x58\xe0\xe0\xfe\x03\xec\xc6\x8c\xfd\x39\x5d\x9a\xa9\x9a\x34\x71\xef\x5f\x73\xdd\x73\xf5\xf5\xf5\x91\x7c\xd2\x8f\x01\x00\x22\x8a\x22\x46\x08\x09\x49\x39\x89\x16\xaf\x89\x26\x8d\xad\x2c\xcb\x96\xbd\x38\x93\x4a\x4f\xda\xe6\x76\xbb\x85\xca\xa7\xec\xe7\x05\x16\xfd\xbd\x9c\xa7\x4b\x73\x61\x45\x39\x31\x51\x06\xa9\x70\x25\x73\xd6\xfd\xd0\x2d\x4c\x4c\x4c\x10\xcb\xe1\xc3\xbf\xfe\xe9\x16\xdf\xe7\xdb\xfc\x9a\xe3\x04\x51\x61\xb8\x82\x3b\x15\x65\xf8\x9e\x70\x38\x4c\x5e\x7c\x7a\x5f\xfd\x2b\x03\xf6\x77\x4c\x49\xa6\x9d\x02\xc0\x8c\xd1\x70\x4e\x7f\x50\xf3\x99\x33\xe7\x7f\x13\xde\xbf\x6f\x9f\xf2\xe5\xc9\x9a\x1f\xb7\x04\x54\xaf\x01\x00\xec\xc2\x86\xb8\xb1\x5d\xfe\xaa\xb8\x4d\x3c\xd7\xd7\xd7\x07\x90\x27\x30\x99\x4c\x82\x28\x8a\x42\x4c\x21\x64\x43\xad\xdc\x7d\x0f\x00\x02\x63\x52\x5e\xab\x54\x2a\x59\xb9\x5c\x2e\x65\x6c\xb9\x30\x90\x00\x00\x8c\x8e\x8e\x42\x06\x91\x31\x77\xbb\xe2\x3f\x28\x02\x42\x81\x02\xa5\xd9\x8d\x30\x5b\xd2\x82\xcb\xf7\xac\x53\xfe\x37\x2f\x87\xdb\xf7\xef\xdf\x27\x5e\xaf\x17\xde\x7b\xef\xbd\xb0\x57\x8c\xfc\xec\x7a\x5d\xf4\xaf\x6e\xac\x89\x7e\xde\x93\x9c\x3f\x7d\xee\xdc\xb9\x68\x75\x75\x35\xd3\xe9\xd6\x7f\xd9\x98\x63\x16\x00\x60\x4d\x58\xf1\x7c\x7b\x50\xff\xe7\x87\x0f\x1f\xc6\x75\x19\xc3\xce\x3c\xb3\x00\x08\xe4\x04\x6b\x77\x4d\x18\xbf\xb9\x7e\xfd\x7a\x2d\xcb\xb2\x00\x12\xb7\x44\xe2\xf1\x38\x1f\x52\x1b\x27\x16\x93\xe9\x59\xb0\x26\xe4\x8d\x0c\x60\xbd\xd5\x6a\x8d\xce\xce\xce\x16\x33\x57\x0e\x48\x3c\x1e\x87\x9b\x37\x6f\x46\xb7\x6d\xdb\xf6\xc3\xc9\xcd\x2a\xa6\xe6\x7e\xea\x6f\xd8\x14\x59\x92\xe2\xcd\xb0\x88\xf3\xac\x55\x9c\x08\x57\x32\xdf\xeb\xbf\x7b\x37\xbc\xb0\xb0\x40\x00\x00\x5c\x2e\x17\xb8\x5c\xae\x14\x00\xa4\xa4\xfd\xcd\x66\x33\xab\xf3\xcb\x9a\x51\x91\xaa\xe8\x52\xcc\x5a\x84\x10\xab\xca\xe0\x5a\xc8\xa5\x19\xf3\xa0\xc8\x60\x3b\x46\x58\x6b\x34\x1a\xe3\x7e\xbf\x7f\x31\x3c\x0c\x85\x42\x42\xc0\x68\xbf\xbf\xb8\x55\x65\xd1\x58\x11\xe9\xed\x71\x76\xa3\xc3\xe1\x70\xcf\xce\xce\x3e\x96\x1d\xf7\xf7\xf7\x03\xcb\xb2\xde\x8e\x8e\x8e\xef\xc4\x76\x6b\x2e\xe9\x82\xe2\x21\x55\x4c\x74\x02\x05\x48\xe9\xf0\x44\xcc\xca\x5c\x10\x65\x70\xfd\xde\xbd\x7b\xfe\x1b\x37\x6e\x00\xac\xb0\x4f\x24\x93\x49\x61\xca\x9c\xba\xdd\x1c\x54\x3d\x97\x5f\x16\x02\x40\x1e\x5a\x93\x57\x10\x42\x82\xc7\x90\xbe\x1b\x53\x08\x41\x5d\x9a\xb1\x66\x31\x28\xdc\xaf\x4c\x5c\x24\x94\x70\xe1\x70\x18\x00\x00\xcb\xf2\xa2\xd2\xe9\x74\xd4\x52\x5f\x89\x36\xbb\x75\x9f\x45\x14\xc9\x24\xf7\x09\xc0\xb1\x24\xec\xb3\x89\x17\x46\x46\x46\x04\x28\xde\x71\xca\x03\x01\x00\xe4\xf5\x7a\xc1\xe3\xf1\x24\x55\x1a\xf5\xa4\xdc\xa1\xbf\x92\xb0\x30\xbf\x89\x9b\x65\xbf\x4a\x6a\xd0\x6f\xbd\x73\xbe\x91\x2b\x57\xae\xc4\xee\xdf\xbf\x4f\x72\xe3\x4a\x4b\xa9\x9b\x20\x00\x80\x94\x4a\xa5\x28\x6b\xb6\x4c\x13\x44\xab\xf4\x29\x59\x45\x5c\x21\x46\x7a\x9a\x22\x6f\x4e\x99\x93\x27\x6e\xdc\xbc\x19\x35\x57\x58\x23\x53\x76\x7e\x46\x21\xe0\x6a\x9e\x21\x99\xfe\xea\xc4\xf9\x5b\x6b\x62\xff\x3a\xf6\x60\xcc\x33\x31\x31\x21\x82\xe4\x9e\x04\x6c\x36\x1b\x3e\xfe\xd2\x71\xc7\x27\xfb\x6d\xbf\x5d\x13\x51\xb4\x83\x64\xc6\x88\x52\x9c\x3e\xb1\x75\x76\xeb\xc9\x5f\xfc\x3c\x18\x0e\x87\xcb\xa5\x62\xa5\x75\x65\xd3\xb4\x06\x83\x01\x03\x00\x3c\xc6\xc9\xad\x80\x2b\x93\xc9\xf0\x81\x03\x07\x70\x6d\x6d\xad\x03\x28\xd4\x00\x80\x40\x81\x4e\xdf\xbb\x77\x2f\xd8\xd7\xd7\x47\x6a\x6a\x6a\xf0\xde\xbd\x7b\x95\x2a\x95\xca\x01\xd9\x2b\x9c\xe0\xd4\xd4\x54\xb0\xbb\xbb\x9b\x08\x82\x90\x1d\x23\x3f\x2a\xc7\x71\x74\x7d\xfb\x7a\x51\x8d\xd8\x96\x86\x79\x65\xe1\xfa\x13\x01\x80\x42\xc4\x06\xbf\x2e\x33\x14\xd6\x88\xfd\xd3\xd3\xd3\x25\x6f\x15\x8b\xea\x8a\xdb\x0a\xff\xd3\xe9\x34\x4d\xa7\xd3\x8f\x73\xf3\x57\xe8\x4b\x29\xa5\xe3\xe3\xe3\x24\x10\x08\xc4\xe3\x89\xb8\xc7\xe3\xf5\xcc\x5e\xbd\x7a\x95\xcb\x05\xfc\x10\x8d\x46\xe9\xc0\xc0\x40\x66\x61\x61\x21\xe2\xf3\xf9\x02\xb7\x6f\xdf\x4e\xf4\xf7\xf7\x8b\x84\x90\xc2\x18\xb2\x9c\x04\x11\x00\x20\x83\xc1\x40\x14\x35\xc6\xf4\x53\x1e\xdd\xa7\x11\x05\xbc\xa8\x51\x08\x8c\x29\x59\xad\x77\x1d\x7b\xf2\xc1\x83\x07\x3c\xcf\xf3\x92\xe4\xed\xff\xff\x13\x89\x44\xc0\xe3\xf1\xc0\xec\xec\x2c\x38\x9d\x4e\x38\x76\xe0\x05\xc3\xd1\xb6\x9d\x1d\x9b\x37\x6f\xc6\x1a\xbb\x31\x31\x34\x34\x44\xbd\x5e\x2f\xe4\x52\x51\x4b\x70\xf3\x36\x4c\x01\x80\x26\x93\x49\x68\x5c\xe7\x4c\x58\x92\xf2\x1d\xb6\x04\x5b\x9b\xed\x9d\xdd\x1e\x34\xbc\xac\x32\xa2\x21\x53\xa9\x0a\xf6\x4e\xde\x1e\x8a\x56\x82\x14\xd5\x95\xfb\x5f\x5c\x9f\x6f\xa3\x92\x76\x2a\x79\xca\xe1\xc0\xa6\x4d\x9b\xe0\xe8\xda\x67\x76\x7c\xba\xbf\xaa\x7b\x93\x47\xf7\xa5\xa7\x66\x75\x9f\xd7\x59\x8c\x49\xbc\xd6\x7a\x63\x78\x78\x58\x28\x85\x2b\x93\x0e\x90\x48\x24\x68\x7d\x7d\x3d\x9f\x31\xb3\xa4\xdd\xa7\xf9\xc4\x52\x07\x85\xa0\x2a\xaa\xe8\xf4\xb5\xb1\xbf\x0c\x44\x43\x79\x17\x22\x25\xaa\x98\xc8\x62\x06\xa0\xa8\x94\x3e\x50\xd4\x0e\x25\xea\x96\xe0\xc8\xe5\x72\xf4\xfc\xf3\xcf\xab\x8f\x0c\xdb\x7e\x6a\xe1\xe4\x6b\xb3\xf1\x0e\x62\xd6\x44\x14\xcf\x4e\xd7\xd3\x77\xe6\x12\x0b\xfe\xbc\x9b\x93\xe2\x3d\xe2\x06\xee\xdc\xb9\x23\x04\xb4\x99\xf7\x1e\x5a\x93\xd7\x0b\xfd\x50\xb6\x54\xf3\xd8\xb1\x7f\xcc\xfc\xc6\x9e\xdd\xbb\xb5\xf9\x54\x4d\x0e\x56\x9d\xa6\xf9\xb8\xc0\x64\x32\x81\x0c\xcb\xf4\x86\x24\xd3\x08\x92\x63\x0c\xa6\xc0\xea\xd2\x4c\x9b\xc5\x62\x29\x89\x27\xbd\x86\x00\x00\xc0\x93\x93\x93\x30\x1f\x9a\xf7\xf5\x36\x46\xbe\x27\xc8\x28\x8f\xb2\x91\x22\x20\x94\x8d\x72\x1a\xe7\x95\x87\xf7\x78\x6c\xaf\x1f\x3a\x74\x88\xd5\x68\x34\xbf\x97\x2b\x16\x00\xc0\x1c\xc7\x01\x20\xe0\xa7\xcc\xa9\x81\x6c\x50\x95\xa5\x8f\x63\x49\x78\x4e\xc7\x8f\x71\x1c\x57\xcc\x1f\x06\x89\x1f\x96\xaa\x0d\x8a\x44\x22\xa4\x6e\x7d\xf3\x1c\x00\xd4\xd6\x2e\x28\x37\x50\x94\x4d\xf7\xe4\x75\xb4\x2a\xaa\xe8\xc2\x6a\x05\xc7\x6e\x70\xdc\x70\xb9\x5c\x62\x26\x93\x01\x78\xd4\x46\x8b\x55\xbe\xf8\x7f\x31\x4e\x29\x9b\x2d\xd7\x0e\x3c\xcf\x93\xaa\xaa\x2a\x21\xbc\x46\x3e\xa5\x4d\x33\x6b\x35\xbc\xcc\x10\xd0\x66\xbc\xe7\xdb\xe6\xbf\xb5\xc0\xa4\x2f\xf6\xf6\xf6\xf2\x12\xba\x0a\xb8\x4b\x6c\x38\xcf\x74\x2c\x16\xa3\x3a\x9d\x2e\x9d\x69\xd0\x4d\xd4\x84\x95\xfb\x74\x69\xc6\x9c\xdd\xe3\x50\x2e\x86\x45\xa8\x6e\x41\xb1\x5f\xa1\x50\x82\x72\xcb\x9a\xab\xde\x59\xaf\xc0\x71\x5c\xb1\xe0\x96\x8c\x59\xe2\xff\x4a\x7d\x0b\x65\x53\x53\x13\x26\x84\xa0\x9c\x3b\x2b\xe0\x7a\x3c\x1e\x5a\xd3\x50\xeb\x9d\xa9\x26\x17\x6f\xad\x89\xfd\xea\xbe\x23\xf1\x3f\x11\x19\x7f\xa9\xa7\xa7\x27\x3e\x37\x37\x47\x4a\x8d\xbd\xc4\x2d\x49\x1f\xaf\xd7\x4b\x1b\x9b\x9b\x42\x73\x15\x74\xb6\xd5\xaf\x3e\xc8\x12\xac\x58\x74\x52\x59\x15\xaa\x89\x28\x76\x3b\x32\xea\x16\xe5\xf6\xba\xcb\x02\xa6\xdc\xdc\xdc\xdc\xc7\xea\x7e\xaa\xaa\xaa\xd0\xd1\x23\x47\x15\xaf\xe8\xb7\xbc\x5a\xb9\xb9\x65\xd6\x1b\x9c\x4b\xc6\x62\xb1\x42\x7b\x26\x93\x81\x91\x91\x11\x31\x16\x8b\x85\x62\xb1\xd8\xf4\xd4\xd4\xd4\x5c\x6f\x6f\x2f\x9f\xcb\xbf\x95\x1c\xb3\x70\xb4\x84\x22\xd7\x20\x8a\x22\x0a\x04\x02\x62\xed\xda\xa6\x19\x9f\x31\xc3\xb5\xfa\xd5\x7b\x30\x85\xc2\x91\x33\x3f\xa2\x85\x93\xaf\x6f\x0d\x6a\x5f\xd6\x34\xd9\x27\xcd\xeb\xeb\x5c\xf1\x44\x5c\xcc\xa5\x5c\x57\x72\x53\x50\xae\xcd\x64\x32\xc1\xae\x5d\xbb\xf0\xc1\x8d\x3b\x5a\x8e\x4d\x54\xfe\xd7\x26\x8f\xee\x9f\x8c\x69\xb6\x21\xbd\xd9\xfa\xee\xf8\xc3\x71\x21\xa7\xaa\xd9\x25\xa3\x94\xcc\xcf\xcf\x23\xb7\xdb\x0d\x3e\x9f\x0f\x78\x9e\x5f\x76\xde\xbc\x4a\x4b\x23\xd4\x42\xa4\x9a\x48\x24\x48\x22\x91\xe0\x2d\xad\x35\xe3\x01\x6d\x86\x36\x07\x55\x5d\x98\x2e\x66\x04\xf3\xa0\x10\xb0\xa9\xd5\xaf\xfe\x54\x23\x6f\xd8\x6c\x6b\xaf\x9b\x71\xac\x6f\xf0\x31\x72\x39\x49\x24\x12\x52\x02\x4a\xf9\xd6\x82\x7a\x32\x0c\x83\x1a\x1a\x1a\xa0\xab\xab\x0b\xef\xdf\xf4\xcc\x9a\xe7\xa3\xf5\x5f\x3d\x30\x6a\xfe\x4f\x0b\xc7\xb6\x43\x56\xb0\xeb\x78\x35\x0a\xd1\x26\xe3\xcd\xd1\xd1\x51\x01\x1e\x35\x8b\x95\xdc\x61\x2e\xf9\xbc\x0a\xd8\xbc\x79\x33\xee\xec\xec\x74\xd4\x84\x15\x7f\xf9\xe2\x7d\xcb\x97\x55\x02\x56\x2f\xca\xa9\x20\xeb\xc2\xaf\x5f\x9b\xb9\x3e\x62\x4f\xbc\x3d\x69\x49\xfd\x7a\x5a\x08\x4d\xfb\xfd\x7e\x61\x61\x61\x81\x24\x12\x89\xc2\xa7\x83\x32\x99\x0c\x34\x1a\x0d\xe8\xf5\x7a\xb0\x5a\xad\x4c\x8d\xd1\x6e\xac\x8b\xaa\x77\xb6\xfa\xd5\xaf\x36\xcc\xab\x8e\x30\x54\x92\xfc\xcb\xf1\x90\xc1\x84\x3b\xd5\xe1\x7f\xe1\xdc\x83\x6b\xbd\x37\x6f\xde\x7c\x22\x97\x87\x60\x95\xa9\x9b\x8d\x1b\x37\xc2\xf6\xed\xdb\xad\xa6\xa4\xfc\xe5\x17\x87\x2c\xaf\x5b\x13\x6c\x95\x54\x9c\x92\x04\x86\x44\x04\x94\xc4\x14\xe2\xb8\x5f\xc7\x0f\x2c\xa8\x84\xf1\x38\x2b\x7a\x78\x86\x44\x29\x02\xc2\x10\xa4\x54\xf1\xd8\x6e\x48\x31\x0d\xb6\x38\xdb\x6e\x49\xc8\xdb\x65\x14\xb4\x00\xa8\xec\x78\x00\x00\x6e\x43\xaa\xf7\xe4\x06\xdf\x0b\x27\x4e\x9c\xe0\x96\xf9\x56\x6b\x59\x86\x01\x96\x46\x37\x65\x23\x9e\xc6\xc6\x46\xd8\xb3\x67\x8f\x56\x85\xd9\xae\x67\x26\x0d\x5f\x79\xca\xa3\x7d\x76\xc5\x8f\x49\x57\x98\x9c\xae\xf6\x1d\x51\x78\x60\x4b\xde\xbd\xd4\xbc\xf0\xf5\x90\x98\x38\xff\xd6\x5b\x6f\xa5\x4a\xd0\x5a\xcc\x07\x14\xb7\x97\xfa\xd6\xb2\x78\xe1\x70\xae\xa4\x0b\x0b\x0b\x74\x6a\x6a\x2a\x63\xaf\xac\x98\xf6\x57\xe3\xde\x69\x53\x2a\x68\xe5\xe4\x2d\x5a\x5e\xa6\x07\x04\x80\x96\x79\x4a\xb5\xc3\x2a\xde\x29\x02\x08\xab\x85\xe0\x85\xd6\xd0\x8f\xae\xd7\xc6\xbe\x1e\x4e\xc5\xae\x9f\x3f\x7f\x9e\x2f\xe3\x06\x8b\x8f\xa9\xd2\xbd\x03\x60\xb5\x36\x5c\x0a\xb6\x6c\xd9\x82\x3b\x3a\x3a\xf4\x0c\x96\xad\x6b\x0a\xaa\x3e\xd3\x39\xa3\x3b\x56\x11\x63\x6b\xf2\x1f\x89\x2e\x4d\xf2\x66\x2f\xe5\x90\x54\x9c\x8f\x50\x96\xff\x6e\x9a\x16\x28\x0b\xab\x84\xe0\xad\x9a\xd8\xb9\x21\x47\xe2\x4d\x01\xc8\xdd\xd1\xd1\xd1\xf0\xb5\x6b\xd7\x48\x6e\x23\x7c\x22\x58\xb5\x0d\x97\x02\x9d\x4e\x07\x5b\xb7\x6e\xc5\x4d\x4d\x4d\x7a\x04\xc8\xe9\x88\xb1\x07\xd7\xf9\x34\x2f\x34\xcd\xab\xda\xd5\x3c\xd6\x2e\x95\xa7\xf4\xa3\xb6\x32\x72\x46\x14\xd2\x0c\x4d\xb9\xcc\xc9\x91\xe1\x0a\xee\xbd\x69\x53\xea\x2c\x01\x3a\xe4\x76\xbb\x43\x37\x6e\xdc\x20\xc1\x60\xf0\x49\x49\x5d\x9c\x62\x99\xb6\xe2\xe0\xa0\xec\x2d\xbe\xc9\x64\x82\xf6\xf6\x76\xdc\xdc\xdc\xac\x64\x18\xc6\x2e\xa3\xa8\xd9\x9a\x90\x77\x56\x47\x14\x5b\xec\x31\xb6\xd1\xcc\xc9\x1d\xba\xb4\x4c\xcf\x0a\x98\xc5\x34\x7b\xdb\x41\x11\x90\x8c\x8c\xf0\x71\x85\x18\x5d\x50\x09\x41\xbf\x96\x9f\xf0\x1a\xf8\x01\x9f\x2e\x7d\x4d\xc0\x74\x8c\x10\xe2\x75\xb9\x5c\xdc\xe0\xe0\x20\xc9\xdd\x21\x2f\x97\x1e\xce\xd3\xbb\x5c\x06\x66\x55\x0c\x97\x4c\xd3\x94\xeb\xcb\x30\x0c\xae\xab\xab\x83\xfa\xfa\x7a\x5c\x55\x55\xc5\x2a\x95\x4a\x2d\x00\xe8\x11\x20\x23\x00\x18\x31\x05\xb5\x8c\x20\x35\x02\x00\x11\x53\x5e\x44\x10\x07\x80\x28\x05\x1a\x06\x80\x70\x26\x93\x89\xfb\x7c\xbe\xd4\xe4\xe4\x24\x71\xb9\x5c\x90\x4e\xa7\x3f\xf6\x68\xeb\xc9\xb7\xd8\x55\x80\xd1\x68\xc4\x16\x8b\x05\xf4\x7a\x3d\xe8\x74\x3a\xcc\x30\x0c\x68\x34\x1a\x8c\x10\x02\x8e\xe3\x88\x20\x08\x10\x8f\xc7\x49\x24\x12\x81\x50\x28\x04\x92\x3b\xa0\xdf\x19\x48\x6d\x78\x39\xb5\xf9\x83\x06\x5c\x54\x16\xd7\x4b\xff\x17\xf7\xfd\x28\xb8\xe5\xe6\xff\x58\x71\xff\x0f\x53\x0e\xb2\x7c\x11\x33\x9d\x6b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x8a\xd5\xc5\x8c\x92\x15\x00\x00") -func web_uiStaticAppleTouchIcon60x60PngBytes() ([]byte, error) { +func web_uiV1StaticAppleTouchIcon60x60PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticAppleTouchIcon60x60Png, - "web_ui/static/apple-touch-icon-60x60.png", + _web_uiV1StaticAppleTouchIcon60x60Png, + "web_ui/v1/static/apple-touch-icon-60x60.png", ) } -func web_uiStaticAppleTouchIcon60x60Png() (*asset, error) { - bytes, err := web_uiStaticAppleTouchIcon60x60PngBytes() +func web_uiV1StaticAppleTouchIcon60x60Png() (*asset, error) { + bytes, err := web_uiV1StaticAppleTouchIcon60x60PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/apple-touch-icon-60x60.png", size: 5522, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-60x60.png", size: 5522, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticAppleTouchIcon72x72Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x79\x1c\x86\xe3\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x48\x00\x00\x00\x48\x08\x06\x00\x00\x00\x55\xed\xb3\x47\x00\x00\x1c\x40\x49\x44\x41\x54\x78\x9c\xed\x7c\x7b\x6c\x1b\x47\x9a\xe7\x57\xd5\xcd\x66\x93\xe2\x9b\x14\x45\x4a\xa4\x24\x4b\xd6\xc3\x7a\xd9\x52\x64\x2b\xc9\x38\x91\x9d\xd8\x8e\xe3\x38\xd9\x64\x32\x98\xdb\xcb\x2d\xb0\x7b\xbb\x59\x04\xb7\xb7\x87\x5d\xdc\x61\x71\x58\x2c\x16\xb3\x83\x60\xb0\x18\x1c\x82\x99\xbb\x60\x76\x2f\xb8\xc9\xe0\x66\x0f\x8b\x99\x9d\x64\x32\x4e\x72\x33\x4e\x3c\x4e\xe2\xc4\x8e\xfc\x94\x62\xcb\xb2\xac\x97\x25\x59\xa2\x24\x4a\xe2\xfb\xd1\x6c\xf6\xa3\xea\xfe\x10\x49\x91\x14\x29\xd1\x8f\xec\x2d\x0e\xf7\x09\x2d\x75\x57\xff\xfa\xfb\xaa\xaa\xab\xbe\xfa\xd5\x57\xd5\x42\x00\x80\xa1\x50\x48\x26\x8d\x14\xdd\x23\x45\x38\x9c\x97\x86\x8b\x30\xa5\x9e\xbb\x17\x4c\x39\x29\xce\xd3\xd7\x8e\x41\x15\x00\xff\xbf\xc0\xd7\x53\x49\x95\xe8\xfc\x17\x8f\x61\x2b\x78\xe8\x6b\x93\x9a\x9a\x1a\x30\x18\x0c\x98\x61\x18\xa8\xaa\xaa\x02\x00\x80\x44\x22\x01\x84\x10\x48\x26\x93\xe0\xf7\xfb\x09\xc6\x18\x08\x29\xe8\xdd\xdb\x75\xfb\x87\x8e\x61\x61\x6b\xad\xe5\xfb\x96\x72\x8a\xf2\xfd\x49\x39\x1f\x96\xd3\xa5\xd5\x6a\x71\x5d\x5d\x1d\xb8\xdd\x6e\xa8\xae\xae\xc6\x56\xab\x95\xe5\xb1\x86\xd7\xcb\x8c\x45\x27\x63\x07\x2f\x33\x16\x96\x00\x0f\x00\xa0\x60\x2a\x88\x1a\x12\x13\x34\x24\x90\xe2\xd4\x88\xa8\x48\x62\x24\x1a\x55\xfc\x7e\x3f\xf1\xfb\xfd\xb0\xb4\xb4\x04\x92\x24\x95\x2b\xf0\x4e\xbe\xe5\x9e\x31\x3b\xf9\xa0\xfb\x76\x78\x2c\xcb\x42\x63\x63\x23\xb4\xb5\xb5\x61\xb7\xcb\xcd\xd9\xd3\x5c\xbd\x37\xcc\x3f\xe9\x8e\x71\x03\xd5\x09\xae\xc7\x24\x32\x4d\x1a\x82\x4c\x00\xc0\x6e\x64\x63\xe3\x37\x05\xc8\xfe\x56\x64\x86\x46\x62\x5a\x65\x76\xdd\x28\x8f\x2d\x9b\xd2\x17\x7d\x96\xf4\x85\x00\x97\x5e\x58\xf1\xaf\x48\xd3\xd3\xd3\x64\x76\x76\x16\x54\x55\xdd\x21\x7b\x0f\x26\xe8\x61\x2b\x34\x18\x0c\xb8\xab\xab\x0b\xda\xda\xda\xb8\x1a\xb5\xaa\xb1\x7d\x4d\xff\xed\xd6\x75\xfd\x4b\x56\x81\xed\x42\xb4\xc2\x2e\x8d\x10\x00\xa5\x5b\x92\x29\x02\x25\xac\x57\x46\xa7\xaa\x85\xf7\x27\x9c\xc2\x2f\xfc\x38\x31\x3f\x39\x39\x29\xdd\xbc\x79\x13\x04\x41\x28\xd7\x4d\x1e\x48\x1e\x5a\x05\x69\xb5\x5a\xdc\xdf\xdf\x0f\xed\x6d\xed\xfc\xae\x98\xfe\xf1\x3e\x9f\xf1\x3f\xd4\x87\xf9\xe3\x08\x10\x07\x34\xcf\xd2\x4e\xe7\xf9\x7f\x4b\xe5\x36\x93\x4e\x31\x95\x16\x2c\xe2\x47\xc3\xde\xf8\x9b\x77\x4d\xc2\xd0\xe8\xcd\x9b\xe2\x95\x2b\x57\x8a\x5d\xc3\x76\xd7\x15\x61\x50\xde\x0d\x80\x42\x0e\x04\x25\xee\x95\x54\xd4\xde\xde\x8e\x07\x06\x06\xb8\x86\xb4\xb1\xff\xe0\xac\xe5\x3b\x75\x51\xee\x29\x44\x11\xa6\x08\x00\x01\x05\x0a\x28\x63\x68\xf3\x9c\x02\x05\x44\x11\x14\x63\x0a\xea\x8c\xe6\xa5\xa2\xac\x86\xc2\x8c\x53\xa0\x64\xc9\x9c\x3e\x7b\xbe\x29\xfa\xdd\xbb\x9a\xe8\xc8\x95\xab\x57\xa5\x89\x89\x89\xfc\x32\xe6\xfb\xcd\x4a\x7c\x6b\x01\x66\x3b\x1f\x54\x8e\xd0\xe5\xae\xf5\x7a\x3d\x1c\x3e\x7c\x18\x37\x3b\xbd\xae\x83\xb3\xe6\xbf\xee\xf0\x57\xfd\x21\xce\x8e\x8c\x14\x01\xa0\xfc\xe2\x94\x38\x2f\x8b\xc9\x93\x02\x4c\x19\xa1\x08\x08\xa2\xca\x2d\x57\xf2\xc7\x17\x9a\x22\xaf\xcf\xf8\x17\xd6\x3e\xfb\xec\x33\x22\x8a\x62\xb9\x27\x2a\xf6\xad\x0c\x94\xef\x66\xb4\x84\x92\x1c\xd6\xe3\xf1\xc0\x73\xcf\x3d\xc7\xed\x03\xf7\x91\x17\x6f\x56\xbf\xeb\x8d\xf2\x4f\x03\x20\x8c\x00\x01\xcd\xc2\x10\x82\x8d\xeb\x8d\x47\xb3\xe7\x85\x98\x4d\x63\xb4\xc0\x10\xca\xb8\x21\xb4\x71\x85\xb2\xcf\x6c\x1e\xf9\x18\x04\x08\xd7\x24\xb9\xfe\xb6\x35\xfd\x4b\x52\xad\x6e\xdc\xb6\xc7\x3b\x3f\x31\x31\x41\x69\x09\x5f\xb6\x4d\x99\xb7\x60\x58\x28\xcf\x01\xa0\xdc\xbd\x3d\x7b\xf6\xe0\x27\xbe\x71\x50\x7f\x60\xd1\xfc\xe7\x8f\xde\x35\xfd\x35\xa2\x88\x2b\xf9\x74\x7e\x7f\x81\x8d\x6e\x95\xd2\x10\x61\xc5\x94\x5e\x58\x35\xca\xf3\x41\xbd\xec\x8b\xf3\x8a\x5f\xd4\x90\xb0\x82\xa9\x04\x00\xc0\xaa\x88\xd7\xc9\x8c\xd5\x94\x66\x5c\xb6\xa4\xa6\xde\x15\xe7\x1a\xdd\x31\xce\xa3\x55\x30\xbf\x51\x21\x99\x02\x23\x54\xd4\xe0\x28\x50\x8a\xc0\x94\x66\x9b\x7a\x97\x8c\x7f\xb1\xd8\x29\x5e\x71\x3a\x9d\xb1\x95\x95\x95\x07\x72\xde\xd9\x51\xa5\x94\x03\xcb\x97\xdc\xfd\x03\x07\x0e\xe0\x47\xba\xf7\xd9\x8e\x4c\xda\x7e\xd0\xbe\xa6\xff\x3d\x94\xd7\x35\xb2\xe7\xb9\x3a\xc9\x94\x21\xa5\x21\xc2\xa4\x53\xb8\x3e\x55\x2d\x5c\x58\x35\x4a\xc3\x2a\xa2\x0b\x08\xa1\x10\xa5\x34\x81\x10\x12\x29\xa5\x4a\xce\xbe\x06\x70\x4c\xa7\xb2\x7e\x4a\x79\x70\x80\x01\x00\x1c\x2c\x41\xf5\xb5\x31\xed\x40\xeb\x9a\xfe\x60\x4b\x40\xdf\xc5\xcb\x88\xdf\xb4\x09\xb0\x59\x53\x14\xc2\x3a\x65\xed\x4c\x5b\xe8\x4d\x4a\xa9\x14\x8b\xc5\x4a\x96\x21\xef\x3a\x2b\x15\xf9\xa0\x1d\x9d\xd9\x81\x03\x07\xa0\xbf\xbb\xd7\xf1\xdc\xb8\xfd\xed\xc6\x10\x7f\x32\xe3\x61\x0b\x24\x9f\xcb\x44\x79\x25\x74\xcd\x1b\x3f\x33\x51\x23\x7c\xa8\x30\x74\x0c\x00\xfc\xaa\xaa\x26\x56\x57\x57\xa5\x40\x20\x40\x82\xc1\x20\xc4\x62\x31\x58\x5d\x5d\x25\x5a\xad\x16\x03\x00\xe8\x74\x3a\xe0\x79\x1e\xcc\x66\x33\xd8\x6c\x36\x70\x3a\x9d\xd8\xe1\x70\x70\x0c\xc3\x98\x00\xa0\x56\x2b\xa3\x9e\x4e\xbf\xe1\xa5\x3e\x9f\xf1\xa9\x2a\x89\x31\xe4\xea\x07\x01\x28\x98\x48\xef\xec\x5b\xfb\xcb\x35\xa3\xfc\x0f\xd7\xae\x5d\x0b\x8d\x8c\x8c\x14\x97\x2b\x7b\x5d\x8a\xdc\x96\xc4\x54\x3c\x59\xed\xee\xee\x86\x83\x03\x8f\xd9\x9e\x1b\x77\xbc\xbd\x2b\xa8\x7b\x01\xe5\x65\xac\x58\xd2\x0c\x11\x2f\x37\x44\x3f\xba\x51\x9b\xf8\x5f\x2a\x03\xd7\x09\x21\x6b\x3e\x9f\x4f\x9c\x9a\x9a\x22\x3e\x9f\x2f\xcb\x84\xb7\x1b\x31\xf3\x33\x8e\x01\x80\xb4\xb4\xb4\xe0\xb6\xb6\x36\xec\x76\xbb\x79\x84\x50\x2d\xa7\xa0\xfe\x47\x16\x8d\xbf\xdf\xe7\x33\x3e\xc5\xaa\x98\x05\x44\xe1\x6c\x6b\xf8\xc7\xb7\xdc\xc9\xef\x2d\x2e\x2e\xfa\x4e\x9f\x3e\x4d\x4a\xe9\xd9\xa6\xbc\x25\x31\x15\xf1\xa0\x86\x86\x06\xfc\xcc\xb1\x63\x86\x23\x53\xb6\xff\xda\xe9\xaf\xfa\x83\x5c\xe5\x14\x09\x45\x00\x0b\xd6\xf4\xd4\xd9\xd6\xd0\x9b\x71\x5e\x3d\xab\xaa\xaa\x6f\x72\x72\x52\xb8\x71\xe3\x06\xc4\xe3\xf1\x87\x42\xe4\x2c\x16\x0b\xee\xeb\xeb\x83\xa6\xa6\x26\x3d\x46\xb8\xc9\x26\xb0\x27\x8e\x4d\xda\xfe\x5d\xa0\x4a\x9e\x3f\xdb\x1a\xfe\xb3\x44\x32\x31\xfe\xde\x7b\xef\x29\xa2\x28\x3e\x14\x7b\xa5\x2a\xa8\xe0\xad\x9a\xcd\x66\xfc\xe2\x8b\x2f\x72\x8f\xae\xdb\xff\xfc\xc9\x3b\x96\xbf\x2d\xf2\xba\x39\x2d\x14\x28\x5c\x69\x88\xfd\xe6\x72\x43\xec\x07\x04\xe8\xf5\x95\x95\x95\xc8\x97\x5f\x7e\x49\xc2\xe1\x70\x45\xbe\xed\x5e\x31\x4e\xa7\x13\x1f\x3c\x78\x10\xdb\xed\x76\x1b\x4b\x50\x07\x00\x08\x12\xa8\x63\xef\xbf\xff\xbe\x18\x08\x04\x4a\xe9\xbc\x2f\x5b\x3b\x12\xc5\x97\x5e\x7a\x89\xed\xe1\xea\x8e\x7c\xeb\x86\xf3\x57\x0c\x41\xfc\x06\x27\xd9\x1c\x9b\x29\x02\x20\x88\x92\x33\x6d\xa1\x9f\x4c\x3a\x85\x1f\x29\xaa\x32\x75\xe9\xd2\x25\x71\x7c\x7c\x1c\xa0\x74\xf7\xd9\x89\xed\x42\x11\x6e\x5b\xcc\xde\xbd\x7b\x71\x4f\x4f\x0f\x4b\x08\x81\xa1\xa1\x21\x65\x6e\x6e\xae\x64\xa0\xaf\xb3\xb3\x13\x77\x77\x77\xb3\x46\xa3\x91\x55\x55\x95\xac\xac\xac\x28\x57\xaf\x5e\x25\x81\x40\x60\x5b\x5b\xdb\x12\xc5\xfe\xfe\x7e\x3c\xd0\xf3\x48\xed\x2b\x23\x35\x9f\x59\x53\x9a\xdd\x40\x69\xa6\x6e\x32\xae\x98\x02\x28\x18\x94\xdf\x74\x04\xfe\x6e\xd6\x21\xfe\x7d\x32\x99\x9c\xfd\xf8\xe3\x8f\x95\x8c\xd1\x52\x05\xcd\x4f\xfb\x67\x8b\x28\x0e\x0e\x0e\x42\x5f\x63\x47\xe3\xa1\x19\xcb\xeb\xf5\x61\xfe\x49\x91\x25\x91\xaf\x3c\xf1\xb7\x46\xdc\xd1\x9f\x7c\xf4\xf1\xc7\xa2\xcf\xe7\x2b\xab\xa7\x2c\x51\x34\x9b\xcd\xe8\xf0\xe1\xc3\xfc\x13\x77\xad\x7f\xd3\x14\xd2\x1f\xcf\x0d\xaa\x28\x0b\x47\x40\x11\x90\x33\xed\xa1\xff\x31\x53\x2d\xfc\xb7\x68\x2c\x36\xf7\xfe\xfb\xef\x2b\xd1\x68\xb4\x58\xd5\xb6\x84\x73\x1b\x4c\x29\xa9\x98\xe0\x65\xa5\xa9\xa9\x09\x1e\xed\x3f\x60\xfb\xd6\xa8\xf3\x94\x37\xcc\x3f\xc3\x52\x64\xd2\xaa\xd8\xd9\x18\xe6\x4f\x88\x5a\x1a\x60\xdb\x9d\xc3\xb7\x6e\xdd\x22\x25\x08\x25\x02\xd8\x6c\x52\x5b\x8e\xc7\x1e\x7b\x0c\x3b\xd3\x7c\xdf\xbe\x25\xe3\xab\x39\x34\xda\xe4\xb2\x00\x14\x2e\x37\xc4\x3e\x98\x74\x0a\x3f\x8a\xc6\x62\xf3\x1f\x7e\xf8\xa1\x92\x99\x51\x17\x1f\x50\xce\xc6\x3d\x62\xee\xeb\x68\x69\x69\xc1\xae\x18\xf7\x78\x75\x42\xd3\x8f\xd0\x06\x5f\xcf\x96\xa1\x7b\xd9\xf0\x47\x3a\x9d\xce\x54\x57\x57\x57\xd6\x7e\xc9\xb7\x56\x53\x53\x83\xbd\x5e\xaf\xfe\xf1\x39\xf3\x5f\x62\x0a\x3c\x85\x8d\x9f\x8d\x6a\xd9\x38\x5b\xb0\xa6\xc7\xaf\x34\xc4\xfe\x8b\x98\x16\x67\xce\x9c\x39\xa3\x08\x82\x50\xac\xa6\x94\xee\x52\xc1\xb9\x9d\xe4\x81\x30\x76\xbb\x1d\x6b\x08\x76\x01\x6c\x4e\x67\xb2\x65\xd0\xc9\xd8\x81\x10\xd2\xeb\x74\xba\xb2\x7a\x8a\x23\x8a\x04\x00\xf0\x23\x8f\x3c\x82\x6b\x12\xdc\xa3\x4d\x41\xdd\x31\x44\xb7\xb6\x6a\x91\x25\xc2\xd9\xd6\xd0\xf7\x09\xd0\xb1\x2f\xbe\xf8\x42\x0a\x87\xc3\xe5\x0c\x94\xe2\x1e\x95\x60\x8a\x65\x3b\x92\xb7\x2d\x26\x91\x48\x10\xbf\xdd\x38\x21\x6a\x48\x4c\x27\x31\xa6\xfc\x07\xee\xd8\xc5\x11\x4a\xa9\x94\x09\xba\xe1\x52\x7a\xb6\x64\xd6\x66\xb3\x41\x5d\x5d\x1d\xdf\xeb\x33\xbe\x86\x28\x62\xb3\xad\x27\x57\xfb\x88\xc2\xe5\x86\xe8\x7b\x71\x5e\x3d\x37\x31\x31\x91\x98\x9f\x9f\xdf\xa6\x5c\x05\x06\xef\x07\x43\x8a\xfe\x96\xc2\x6d\x8b\x99\x9f\x9f\x27\x69\x0d\x9d\x3a\xdd\x1e\xfc\x61\x92\x53\x63\x14\x6d\x94\x61\xde\x96\x1a\xff\xb2\x29\xf2\xa6\x2c\xcb\x91\x8c\x93\x2e\xa9\x87\x2d\x4a\x20\x6d\x6d\x6d\xb8\x4a\x66\x9a\x76\x07\x74\xc7\x51\x41\x94\x62\x63\xd4\x8a\xf0\xea\xda\x68\x6d\xe2\xed\x64\x32\xe9\xbf\x74\xe9\x52\xbe\xc2\x52\x85\xbe\x2f\x8e\x53\x46\x2a\xc1\x6d\xc1\x8c\x8e\x8e\x42\x43\x43\x43\x00\xdc\xee\xb7\xff\xe7\xc0\xca\x0d\x47\x42\xd3\x9b\x66\x49\x34\xa4\x57\x2e\x51\xa0\xa3\x97\x86\x2e\x49\x25\x48\x65\xee\x9a\x2d\x4e\x6c\x69\x69\xe1\x5a\xd7\xf4\x2f\xb2\x2a\xd6\x6f\x44\x12\xf2\xe2\x11\x08\x60\xd8\x1b\x7b\x4f\xc1\x74\x7c\x78\x78\x58\x91\x65\xf9\xa1\xb0\xd5\xaf\x5b\x4e\x9f\x3e\x4d\x0e\x1e\x3c\xe8\x6b\x6e\x6e\x0e\xac\x98\xe9\xa7\x94\x52\x92\x4c\x26\xc5\xcb\x97\x2f\x2b\x77\xee\xdc\xd9\xb6\x0c\xf9\xb3\x79\xf0\x78\x3c\xc0\x6b\x79\x7d\xcb\xba\xfe\x79\x04\x14\x28\xca\x8b\x04\x22\x04\x22\xab\x26\x26\x9c\xc2\x3b\xf1\x78\x3c\x32\x31\x31\xb1\x13\x09\x2c\x96\x7b\xc1\x6c\x87\xab\x08\x83\x31\x06\x87\xc3\x01\x1c\xc7\x81\xcf\xe7\x23\xe7\xce\x9d\xc3\xe7\xce\x9d\x13\x6a\x6a\x6a\xc4\x74\x3a\x0d\x91\x48\x04\x2c\x16\x0b\xec\xd9\xb3\x07\x63\x8c\x21\x12\x89\xc0\xf2\xf2\x32\x14\x0d\xf7\x85\xcb\x3e\x5e\xaf\x17\x74\x32\xae\x77\xc5\xb9\x1e\x80\xc2\x50\x02\x02\x80\xe9\xea\xd4\x90\xcc\xd2\xa9\x89\x89\x09\x05\xb6\x8f\xf1\xe2\xa2\xeb\x8a\x30\x08\xa1\xfc\x0c\x96\x72\xec\xa5\x74\x6d\xc1\xec\xda\xb5\x0b\x9e\x38\x78\x90\x75\x60\x83\xcb\x90\x66\x1c\x41\xbd\x3c\xef\x0b\xfa\x63\xe7\xce\x9d\x83\xd5\xd5\x55\x00\x00\x72\xe8\xd0\x21\xdc\xd1\xdc\x66\x6a\x08\xf3\x07\x39\x05\x19\x16\xad\xe9\x4b\x77\x13\x6b\xbe\xb3\x67\xcf\x42\x86\xcb\x11\x80\xa2\x85\x43\xaf\xd7\xcb\xd6\x45\xb5\x8f\xe3\x4c\x00\xac\x30\xca\x43\x61\xba\x5a\xf8\x98\x10\x12\x9a\x9c\x9c\x2c\x95\xc1\x7b\x49\xc3\x00\x00\xf5\xf5\xf5\xd0\xd2\xd2\x02\x4e\xa7\x93\x33\x1a\x0c\x58\x51\x55\x88\xc5\x62\x64\x65\x65\x45\xb9\x7d\xfb\x36\x84\x42\xa1\x4a\x74\x17\x48\x4b\x4b\x0b\x7e\x7a\xf0\xb0\xe9\xf0\xb4\xf5\x7b\x9d\xfe\xaa\x57\x11\x20\x2e\xcd\x12\xff\x67\xbb\x75\x7f\x61\x7c\xde\xf8\x8b\x53\xa7\x4e\x29\xfb\xf7\xef\xc7\xfd\x9e\xf6\x8e\x17\x87\xab\x7f\x66\x49\x69\xba\x10\x00\xc8\x98\x44\x3e\x6e\xe7\x5e\xe3\x4e\x9c\x38\xf5\xee\xbb\xef\x2a\xb2\x2c\x6f\x71\xd2\x60\x32\x99\xd8\xda\x39\xed\xfe\x6c\xcb\x41\x79\xa4\x54\x62\xa8\xb0\x62\x92\x86\xfc\x7e\xbf\x94\x4a\xa5\xee\xd5\xf7\x14\xe0\xcd\x66\x33\x1e\x1c\x1c\xc4\x1e\xab\xd3\x65\xf3\xc9\xbf\x6b\x1a\x57\x9f\xd6\x88\x49\x0f\x45\x48\x12\x0d\xba\xa9\x88\xab\xf5\xfd\xce\x97\x3a\x7e\x33\x3e\x79\x3b\x71\xe1\xc2\x85\x7b\xb2\x35\x30\x30\xc0\xf5\xfa\x8c\x7f\xda\xe5\xaf\xfa\x93\xec\xab\xe5\x65\xe4\x3a\x3a\x69\x7b\x6b\xad\x5f\x9a\x3a\x79\xf2\xe4\x35\xa3\xd1\x68\x38\x34\x66\x7d\xc3\x9a\x62\xbb\x20\x53\x56\x8d\x8a\x2c\x4f\x4f\x59\xdf\x5c\x18\x10\xaf\x74\x76\x76\x2e\x5c\xbf\x7e\xbd\xb0\x05\x79\x3c\x1e\x8c\x31\xd6\x57\xc7\x35\x1d\x14\xb2\x73\xae\xcd\xfe\xb8\x6a\x94\x66\x14\x86\xfa\x97\x96\x96\x2a\x1d\xb5\x4a\x76\x2f\xab\xd5\x0a\x27\x4f\x9e\xe4\xdc\x11\xf6\x9b\x9e\xf3\xc9\x37\x58\x89\xba\xf2\x01\x7c\x82\xf4\x99\x57\x95\xdf\x75\x1a\xf1\x15\xed\xbe\xb6\xd7\xec\xbf\x63\x1f\x3b\x7d\xfa\x34\x91\x24\x69\xc7\xa8\x80\xd7\xeb\xc5\x7a\xbd\xde\xb0\x3b\xa0\x7b\x79\x23\xf7\xd9\xf0\x2c\x00\x43\x41\xbf\x2b\xa8\x7b\x29\xec\x35\x8d\x22\x02\xb6\xba\xa8\xf6\xd1\xbc\x45\x4a\x00\x04\xc0\x2b\xd8\x59\x9d\xe0\xfa\xeb\xea\xea\x7c\xd9\x0a\xc2\xd9\xc3\x62\xb1\x00\xa2\xa0\xb7\xa6\xd8\x7a\x04\x08\x10\x2d\x3c\xd6\x0c\xd2\x04\xa5\x34\xe6\xf7\xfb\x0b\x9e\xcb\x3b\x8a\xd3\xa1\x38\x5d\xab\xd5\xc2\x89\x13\x27\x58\x77\x84\xfd\x76\xc3\x0d\xf1\xa7\x8c\x0c\x2e\x8a\x32\xf3\x3b\x84\x80\xa2\x8d\x65\x20\x00\x0a\xfa\x38\x39\xb0\xfb\x4a\xea\x7d\x8f\xb1\xba\xfd\x1b\xdf\xf8\xc6\x16\x5d\x66\xb3\x19\xef\xde\xbd\x1b\x37\x37\x37\x63\xa3\xd1\x08\x00\x80\xf5\x7a\x3d\x00\x00\x47\x10\xe0\xe2\xfc\x23\x8a\x40\xc1\x04\x53\x4a\x31\x45\x80\x05\x0d\x49\x14\xdf\x07\x00\x92\xe4\x54\x01\xe5\xe6\x9b\x1b\x4e\x1a\x00\x00\xcc\x66\x33\x68\x54\x64\xe1\x65\xc6\x52\x38\x6d\xdb\xb8\x0a\xeb\x95\x59\x4a\xa9\x58\xe4\x17\x2a\x99\x5d\xe7\xee\xf7\xf6\xf6\x82\x99\xd5\x35\x79\x6e\x25\xdf\x00\x42\xd9\xfc\x85\x30\xba\x65\xc1\x90\x82\x26\x4d\xeb\xbd\xb7\xc4\x37\xa4\xfe\xdd\xff\x6a\x72\x72\x32\xb6\xbc\xbc\x8c\x79\x9e\x87\xc1\xc1\x41\xdc\x5c\xd7\x60\xaa\x8b\xf1\xfb\x08\xa2\xd2\x92\x51\x1c\x1d\x9f\x99\x4c\xcc\xce\xce\x02\x00\x88\xe3\xae\xe4\xa7\xb5\x31\xae\x27\x1b\x14\x47\x00\x20\x33\x44\x9a\xb7\x89\x17\x11\x42\x0a\x00\xc4\xae\x79\x63\xa7\x9e\x9e\xb6\xfe\x49\x3e\xe6\x8e\x3d\x75\x2d\xa2\x53\x66\xc2\x73\xe1\x5c\xb9\x72\x3e\x88\xe7\x79\x96\x97\xb1\x8d\xa1\xc0\xa3\xa2\x95\x03\x8a\x00\xe2\x5a\x65\x51\x96\x65\x25\x9d\x4e\x97\x25\x55\x25\x2a\xa6\xe0\x5e\x7b\x7b\x3b\x6f\x5f\x90\xff\x2d\x2b\x83\x23\xc7\xaf\x36\x57\x88\x60\x73\x81\x70\xb3\xb6\x8c\x01\xf5\x88\x3e\x4e\xfa\x3a\x3a\x3a\xce\x2d\x2f\x2f\x93\x67\x9f\x7d\x96\xed\xe6\xea\x0e\x9e\xbc\xea\x78\xbb\x4a\xc2\x4d\x00\x00\x11\x9d\x32\xf6\x61\xa7\xe6\xf7\x2d\x16\xcb\x68\x3c\x1e\x4f\xdc\x72\xc1\x4f\x0d\x69\xa6\xa9\xcf\x67\x3c\xc6\xa9\x88\x8f\xf0\x6a\xe8\xf3\xdd\xe1\x1f\xc7\x78\xf5\xda\xc4\xc4\x84\xe2\x76\xbb\x63\x63\x6e\x78\x4b\xc5\x94\xeb\x59\x36\x1c\xd7\xa8\x98\x9b\xb7\xa7\x46\x2f\x37\xc4\xde\x20\x94\x2c\xdf\xbe\x7d\x3b\x57\xae\x5c\x0b\xd2\xe9\x74\xa0\x55\xb1\x09\x00\x80\x66\x97\x54\x28\xe4\x32\x9c\xd2\x90\x50\x5e\xd8\xf4\x5e\x18\x30\x00\x00\xb8\x5c\x2e\xcc\x69\x34\x7a\x63\x20\xf5\x54\x36\x96\x94\x2f\x9b\x61\xb8\xec\xcb\xa1\x99\x37\x4b\xb1\x21\xa0\x1e\xf5\x78\x3c\x43\x1d\x1d\x1d\x52\x8d\xbd\xda\xf1\xec\x15\xfb\xdb\x55\x12\xd3\x94\x85\x5b\x04\x4d\xd7\x33\x13\xf6\xbf\x0f\xf5\x29\xcf\x5e\xbf\x71\x3d\xb2\x67\xcf\x9e\x89\xcb\x0d\xb1\xff\x3c\xec\x8d\xff\xa3\x56\xc1\x36\x81\x53\xe7\x09\xd0\xf1\x48\x24\xe2\xbf\x78\xf1\x22\x58\x2c\x16\xe5\xf8\xf1\xe3\x13\xe3\x35\xf4\xf5\xdb\x35\xc2\x4f\x01\x80\xa5\x40\xfd\x00\xe0\xfb\xe2\xf3\x2f\x84\x50\x28\xb4\x85\x49\x63\x00\x00\x4c\x10\xbf\x39\x72\x6d\x12\x45\x0a\x00\x2a\xa6\x5b\xa6\xeb\x79\xb2\x23\x09\xb4\xd9\x6c\x00\x00\x7a\x2e\x45\x6a\x73\x95\x92\xd9\xa4\x80\x10\x02\x44\x69\x66\x91\xa4\xb0\xbf\x51\x84\x80\x4b\x91\x46\x8e\xe3\xd9\x81\x81\x01\xc5\x9e\xd4\xec\x33\xa5\x99\xa6\xbc\x5c\x02\x02\x04\xce\x84\xa6\xdf\x90\x66\x9a\x58\x96\x1d\xf9\xe0\x83\x0f\xa4\x47\x1f\x7d\x74\xa6\xae\xae\x6e\x5e\xd1\x52\x56\x96\x65\x65\x72\x72\x52\xba\x76\xed\x1a\xc8\xb2\x4c\xd6\xd7\xd7\xe1\x9d\x77\xde\x51\xba\xbb\xbb\x7d\x1e\x8f\x67\x59\xa3\xd1\xc0\xfa\xfa\x3a\xb9\x79\xf3\x26\x14\x85\x6b\xb7\xec\x0f\xc2\x05\x9e\x1d\xf2\x46\x82\xad\x93\xc1\x7b\x0a\x67\x64\x1c\x1f\x4b\x31\x90\x4c\xb0\x2d\x7b\x23\x63\x67\xeb\xda\x7b\x2e\x0d\x03\x50\x4a\x31\xcb\xb2\xa0\x60\xca\x16\xe6\x70\xe3\x9c\x20\x20\x2a\xa6\xac\xc1\x60\x80\x70\x38\x0c\xa7\x4f\x9f\x26\x0c\xc3\x48\xaa\xaa\x8a\xa5\xf2\x25\x8a\x22\x5c\xbd\x7a\x15\x26\x27\x27\x09\x42\x08\x92\xc9\x24\x28\x8a\x92\xcd\x73\x81\x0f\xca\x89\x8a\xa9\xb4\x75\x2d\x67\x23\xab\x2c\x41\x7c\x89\x0a\xa9\x58\x64\x59\x06\x00\x90\xc4\x2a\xbc\xac\x15\x54\xcf\x46\xf8\x36\xd3\x5a\xb2\x7e\xa7\xb8\xd4\x99\xbc\xa4\xab\xf0\x02\x42\x88\x04\x02\x01\x82\xec\x8e\x99\x25\x73\x7a\xbc\x2e\xca\x77\x64\x2b\x11\x01\xc0\x8c\x23\x75\x29\xa5\x21\xfe\x70\x38\x0c\x36\x9b\x0d\xf6\xef\xdf\x8f\x3d\x75\x75\x2c\x8b\x59\x1c\x4b\xc6\x95\xe9\xe9\x69\xe5\xfa\xf5\xeb\xa0\x28\x0a\x06\x00\x68\x69\x69\x81\xfd\xfb\xf7\xb3\x0e\xad\xc9\xc4\x10\xc4\x45\x50\x2a\x74\x73\x6c\x4c\x1a\x1e\x1e\x06\x4a\x69\xae\x42\xf3\x23\x8a\x90\x66\x49\xac\x28\x87\xb9\x4a\xd2\x4b\x8c\x0d\x21\x54\x36\x02\xb9\xd3\x31\x35\x35\x45\x00\xa1\x44\xd4\xa5\xf9\x22\xbb\x3e\x0f\xf9\x7f\x33\xeb\xf8\x28\x8f\x9e\x22\x40\x40\x31\x48\xb1\x6a\xf6\x7c\x34\x1a\x95\xce\x9f\x3f\x0f\x14\xa8\xef\xd7\x1d\xc1\xef\xdc\x71\x08\xa3\x32\x26\x8a\xcc\x12\xe9\x96\x2b\x79\xe9\x93\xd6\xd0\xf7\x54\xa2\xae\x85\xc3\x61\x78\xe1\x85\x17\xb8\x93\x9a\x8e\x3f\xf8\xc3\x11\xcf\xc5\xd7\x2e\xd6\xdd\xfe\xbd\xf9\x5d\x3f\x7b\xba\xfd\x40\xc7\xb3\xcf\x3e\x8b\x01\x80\x74\x74\x74\xc0\xd1\x27\x0f\xdb\x5e\x5e\xac\xff\xd1\x1f\x5f\xac\x9d\xfb\xa3\x4b\xee\xb9\x57\x6e\x79\x3e\x3c\xbc\xe7\x40\xfb\xf1\xe3\xc7\x21\x3f\xdf\xb9\x16\x94\x4c\x26\x49\xda\x49\x62\x2a\xa6\x12\x43\x80\x2b\x26\x8a\xc6\x34\x53\x67\xaa\x36\x55\xb4\xc8\x58\x54\xf9\x39\x09\x87\xc3\x02\x72\x5b\x7e\xe5\x9c\xc3\xaf\xf0\x71\x52\x9b\xf3\x35\x34\xbf\x63\xe5\xbd\x22\x44\x21\x50\xcf\x9d\x95\x75\x78\x6c\x76\x62\x56\x59\x5f\x5f\x27\xc3\xc3\xc3\x42\x7f\x7f\xff\xd9\xff\xdd\x11\x5c\xd0\x10\xd4\x44\x01\x88\x82\xc9\x14\x05\x98\xbd\x72\xe9\x8a\xd8\xdf\xdf\xcf\x76\x87\x2d\xaf\x3c\x35\x6d\x7d\x2b\x93\x07\x68\x0c\xf1\xf5\x8e\x44\x75\x9f\xd0\x4f\x0e\x1f\x3a\x74\x68\xa1\xb9\xb9\x99\x7f\x7c\xce\xf2\xdd\xf6\x35\xfd\xab\x59\x5b\xb5\x31\xee\xc8\xf3\x63\x8e\x9f\x25\x1e\x51\x8e\xb6\xb6\xb6\x06\xa6\xa6\xa6\x0a\x89\x62\x32\x99\x04\x99\xa1\xb1\x94\x86\x44\x4a\x11\x45\x7b\x52\xb3\x9b\x65\x59\xd6\x60\x30\x94\x22\x89\xdb\x11\xc7\x9c\x9d\xaf\xbe\xfa\x8a\x10\x0c\x13\xf3\x7b\xf9\xbf\x95\xb5\x28\x01\x59\x62\x98\x23\x8a\x90\x3b\x00\x01\x24\x6c\xec\xd4\x4a\x8b\xf6\x07\xb2\x2c\xfb\xc7\xc6\xc6\x00\x00\x60\x64\x64\x04\x3e\xf9\xe4\x93\xd8\xda\xfa\xda\x48\x1a\xa9\xa7\xd2\xa0\x7c\xb0\xbc\xb2\x32\x76\xfa\xf4\xe9\xc4\xda\xda\x1a\x98\x4c\x26\x7d\xf7\x4a\xd5\x1f\x23\x8a\x0a\xc8\xa2\x31\xcd\x36\x36\x07\x75\xdf\x6c\x69\x69\x61\x59\xcc\x58\xda\xd7\xf4\xdf\xda\x52\x46\x81\xed\x71\x47\xb5\x4f\xee\xde\xbd\x3b\x97\xef\x5c\x0b\x4a\x24\x12\x40\x80\x26\x42\x7a\xc5\x67\x14\x19\x67\xee\x35\x66\x5e\x6a\x4d\x9c\xeb\x40\x80\xf4\x76\xbb\x5d\x48\x24\x12\x95\xb7\xa3\x3c\x07\x39\x33\x33\x03\x4d\x4d\x4d\x91\x86\x86\x86\x53\x33\x8f\xea\xc1\x33\x26\xfe\x99\x21\xa4\xee\x2e\x18\x0a\x00\x80\x62\x44\x02\x5e\xcd\x85\x95\x56\xed\xf7\x09\x03\x57\xce\x7f\x76\x3e\x3b\xff\xc3\x00\x00\x77\xee\xdc\x81\x4c\x1c\x47\x64\x59\x16\x67\x9c\x2b\xb4\xb5\xb5\x01\x00\xf0\x9c\x8a\x2d\xf9\x9b\xae\xb2\x2d\x55\xa3\xa0\x1a\x84\x10\x0b\x14\xf4\x88\x02\xb7\x15\x03\x40\x11\xe8\xcd\x66\x73\xee\x25\xe7\x88\x62\x30\x18\xc4\x08\x21\x61\xcd\x20\xcd\x34\x84\xb4\x7d\x1b\x95\xb3\xd9\xfc\x1d\x49\x4d\xbb\x56\x41\xce\xda\xda\xda\xc0\xdd\xbb\x77\xef\x3b\x50\xf6\xe9\xa7\x9f\xe2\x23\x47\x8e\xf8\xeb\xeb\xeb\x7f\x7e\xe7\x80\x6e\x4c\x1f\x25\x4f\x1b\x03\x4a\x3f\x97\xa2\x0e\x8a\x41\x11\x0d\xd8\x17\x75\xb2\x9f\xcb\x3c\xba\x40\x01\x66\x2e\x5c\xb8\x20\xcc\xcc\xcc\x14\x87\x43\x73\xa2\x28\x4a\x2e\x2d\x95\x4a\x61\x00\x50\xee\x5a\xc5\x51\x67\x5c\xd3\x9e\xef\xf8\x15\x86\x4a\x73\xf6\xd4\x45\x00\x50\x28\x02\x61\xca\x29\x0c\xed\x5d\x32\x9c\xc8\xc7\x84\xf4\x8a\x6f\xc5\x94\x1e\x0d\x2e\x04\x73\x7e\x39\xc7\x83\x56\x57\x57\x89\xaa\xaa\xe2\x8a\x29\xfd\x15\x45\xc6\x6f\x6f\x06\xeb\x37\xfe\xb2\x04\x78\x6f\x84\x3f\xb8\x52\x57\x37\x05\x00\x9b\xdb\x55\xee\x51\x14\x45\x21\x1f\x7d\xf4\x11\xe9\xec\xec\x0c\xf5\xf6\xf6\x0e\x81\x45\x3f\x26\x58\x18\x0b\x00\xe8\x33\x3a\x63\x00\x10\x09\x06\x83\xc2\x97\x5f\x7e\x49\xfc\x7e\x7f\xc5\x76\x16\x16\x16\x48\x3a\x9d\x4e\x5c\xa9\x8f\xbd\x55\x9d\xd0\x74\x35\x84\xf9\x0e\x84\x10\x48\x98\x48\xe7\x5a\xc2\x3f\x89\xf1\xea\x88\xcf\xe7\x53\x9c\x4e\x67\xe8\x7c\x53\xf4\x0d\x8d\x8a\x1d\x6d\x6b\xfa\x7e\x0c\x80\xd7\x0c\xb2\xef\xa3\x3d\xc1\xd7\x09\x86\xf9\xfc\x60\x60\xc1\xca\xea\x8b\x2f\xbe\x88\xeb\xad\xae\x27\x5f\xbd\x54\x7b\x9a\x55\x11\x57\xbc\x4c\x37\xe5\x10\x7e\xf3\xeb\x8e\xc0\xbf\x3e\x75\xea\x54\x62\x7d\x7d\xbd\x54\x44\x11\xa0\x28\xc6\xbd\x1d\x06\x21\x84\xbd\x5e\x2f\x38\x9d\x4e\xe0\xb8\x8d\x3d\x58\x82\x20\xc0\xe2\xe2\x22\x04\x83\xc1\x52\x7a\x8a\x07\x89\x2d\x98\xd6\xd6\x56\x3c\x38\x38\x68\x40\x80\x7a\x1c\x49\xcd\x41\xbd\x84\xab\xd7\x0d\xf2\x8d\x94\x86\x0c\x25\x92\x89\x85\x77\xdf\x7d\x57\x69\x6c\x6c\x84\xc1\xc1\x41\x3d\x02\xd4\xca\x2b\xb8\x87\x25\x88\x4f\x70\xea\x04\x05\x3a\x36\x35\x35\x15\xfa\xfc\xf3\xcf\x73\xdd\xb9\x60\x65\xd5\x68\x34\xd2\xea\x5a\x17\x78\x23\xda\x23\x26\x91\xa9\xd9\x9c\x17\x6d\xd4\xa5\x45\x64\xea\xc6\x5d\xc9\x5f\x49\x0c\x5d\x5d\x58\x58\xc8\xdf\x0f\x97\x2f\xf9\x69\x3b\x62\xa2\xd1\x28\x2c\x2f\x2f\xc3\xe2\xe2\x22\x2c\x2e\x2e\x82\xdf\xef\x87\x54\x2a\x05\x50\xb8\xda\x9a\x3f\x41\xcb\x97\x2d\x98\x60\x30\x88\x62\xb1\x98\x54\xe3\xaa\x59\x91\xf4\xf8\x46\x54\xa7\x5c\x90\x19\x3a\xb6\xb0\xb0\x10\x38\x73\xe6\x8c\x2a\x8a\x22\x09\x06\x83\x68\x6d\x6d\x4d\x36\x5b\xcc\x6b\x9c\x51\x37\x21\x31\xe4\x66\x2a\x95\x9a\xff\xea\xab\xaf\x92\x97\x2f\x5f\x86\x7c\x5b\x05\x2d\xc8\xe5\x72\xc1\xf3\xcf\x3f\x6f\xea\x59\x31\xbc\xfe\xd4\x94\xed\x4f\x4b\x2d\xf4\x5e\xa9\x8f\xfe\xf0\xf3\xba\xc0\x5f\xfd\xfc\xe7\x3f\x17\xb7\xd9\x24\xf9\x7f\x5d\x10\x42\xb9\x98\x74\x28\x14\x82\x54\x2a\x05\x76\xbb\x1d\x1c\x0e\x07\xa4\xd3\x69\xf0\xfb\xfd\x20\x8a\x22\x68\xb5\x5a\xd0\x68\x34\x50\x6e\xe0\x61\x20\x6f\xc1\x31\x91\x48\xd0\xf6\xf6\x76\x22\x1a\x19\x65\xef\xb2\xe1\x5b\x0c\x45\x5b\x36\x7e\xdb\x93\x9a\xd6\x09\x8f\xf8\x4b\xa2\x41\x41\x9f\xcf\x47\xf2\x9f\xff\x97\x76\x08\x82\x40\xe3\xf1\x38\xd5\x6a\xb5\xe8\xc4\x89\x13\xf8\x89\x7d\x03\xf6\x6f\x58\xda\x0e\x74\xd5\xb7\x58\x76\xf5\xed\x89\x20\x8c\x95\xc5\xc5\x45\x22\x49\x52\x59\x1d\x4c\x71\x05\x70\x1c\x47\x9d\x5e\x77\xda\x92\xd2\xec\xaf\x4e\x6a\x1a\x8b\xef\xb3\x04\xe9\x58\x82\xb8\x44\xab\xe1\x93\xb9\xb9\x39\x55\x14\xc5\x2d\xab\xfe\x19\xc1\xb0\x65\xce\x5e\x31\x26\x3f\xfd\x81\x30\x1c\xc7\xa1\x17\x5e\x78\x81\x3d\x00\xde\xe7\x5f\x1e\x75\x7e\xd8\xe5\xaf\xfa\xf7\x5d\xfe\xaa\xd7\x1a\x62\xfa\x01\xa1\xdb\xf2\x29\xd5\xe0\xc4\xf2\xf2\x72\x59\x3d\x4c\x26\x31\xeb\x13\x68\x3c\x1e\x47\x9d\x9d\x9d\x52\x5c\xa7\xe2\xee\x15\xc3\x73\x98\x16\x4e\x02\x36\x66\xce\x5c\xf7\x82\x5d\xfa\x52\x57\x67\x9d\x9f\x9a\x9a\x02\x28\xf4\x35\xc5\x3e\x88\x16\xd9\xa8\x04\x03\x65\xce\xf3\x71\x15\x61\x7a\x7b\x7b\x61\x8f\xa7\xb9\xf1\xe5\x51\xe7\x07\xbc\x8c\xab\xb3\x65\x30\x89\x6c\x13\xaf\x60\x5b\x62\x8f\xf1\xcc\xf4\xf4\xb4\x2a\x49\x52\x49\x3d\x5b\x66\xb9\x89\x44\x02\x66\x67\x67\xc5\x40\x95\x7c\xee\x8e\x23\x75\x0d\x10\x85\x82\x8d\xdc\x88\x02\x43\x10\x77\x74\xd2\xf6\x86\xc7\xe1\x72\xed\xdf\xbf\xbf\xc4\x8b\x2b\xd4\xb9\x13\xa0\x0c\xa6\x54\x60\xae\xdc\x28\x56\x16\xe3\xf5\x7a\xb1\x2b\xc6\x1d\xe4\x65\x6c\x03\x80\x3c\x37\x4f\xa1\x29\xa4\x3b\xc6\x60\xc6\x52\x5b\x5b\x0b\x45\x92\xd3\x53\x72\xf2\x39\x32\x32\x02\x84\x92\xe5\xa1\x5d\xd1\xb7\x14\x04\xca\xe6\xcc\x3a\x4b\xaa\x28\xd8\x05\xb6\xeb\xf0\xb4\xf5\xfb\xfb\x7a\xf6\x1a\x76\xed\xda\x05\xa5\xf4\x3c\xe0\x51\xac\xb3\x94\x8d\x1d\x31\x3c\xcf\xe3\x34\x4b\x14\x8a\xb2\xf9\xdf\x7c\xe1\x49\x4e\x15\x00\x01\xab\xd5\x6a\xcb\xea\xc9\xfa\xa0\x82\xfe\x2c\x8a\x22\x31\x1a\x8d\x4a\x95\xdb\x16\xe1\x14\xd4\x52\x1b\xe3\x5b\x37\x86\xfc\x4c\x80\x1d\x36\x76\xbe\x3b\x92\x9a\x6e\x8a\x91\xac\xd9\xeb\xbe\x1c\x08\x04\xd4\x58\x2c\xb6\x93\xcf\xf9\x67\x17\xa7\xd3\x89\xb4\x2e\x33\xa9\x8f\xf0\x4f\x1b\x25\xd6\x9e\xcd\x3f\x45\x00\x43\xbb\xa2\xff\xb0\x6e\x90\xcf\xde\xb8\x71\x43\x8c\xc7\xe3\x25\xf3\x9e\xf5\x41\x00\x85\x5c\x83\xae\xaf\xaf\xa3\xf6\xf6\x76\x61\xcd\xaa\xae\xb6\xae\xeb\x9e\xe1\x15\xa6\x2a\x87\xca\xc6\x91\x29\x02\x4f\x54\xfb\x84\xa4\x81\xa8\x7e\x9f\xe7\xab\xa2\x4a\x2a\x76\x78\x05\xbe\xee\x3e\x31\xc5\xbe\x6c\x47\x8c\x24\x49\xb4\xa5\xad\x55\x98\xb5\xa7\xee\xea\x64\xa6\x51\x2f\x63\x63\x8c\x57\xc2\x43\xbb\x62\xbf\x18\x77\x09\x7f\x17\x8e\x84\x97\x2e\x5f\xbe\xac\x96\xd3\x53\xbc\x05\x2f\xe7\xa8\x64\x59\x06\x59\x96\xd5\xda\x06\x4f\x64\xdd\x28\x2b\xed\xab\x55\x87\x51\x6e\x2d\x71\xe3\x6b\x0b\x0a\x00\x80\x10\x6a\x0c\xf3\x47\x00\x63\x99\xef\xad\xbb\x96\x96\x24\x65\x7d\x7d\xbd\x62\xa2\xb8\x0d\xa6\x62\xa2\x68\x36\x9b\x41\xaf\xd7\xa3\xcc\x88\x5a\x80\x89\xc7\xe3\x44\x55\x55\xd9\xe9\x75\x2f\xde\x71\xa4\xce\x8f\x78\xe2\x1f\x8f\xd6\x26\xfe\x69\xcd\x20\x7d\x90\x4e\xa7\xe7\xcf\x9c\x39\xa3\xa6\x52\xa9\xb2\xb6\xb6\xfb\x98\x05\x02\x81\x00\xd4\xd4\xd4\xa4\x51\x75\xd5\x12\xc1\xd4\x5d\x1f\xe1\x3b\x0b\xca\xb5\xb9\x5f\x11\x79\x23\xda\xc3\x96\x34\x57\x0b\x7b\x9d\x43\x46\xab\x59\x58\x5e\x5e\x7e\xd0\xaf\x01\x4b\x55\x6a\x81\x70\x1c\x87\x06\x07\x07\xe1\xe8\x63\x83\x96\xfd\x2d\xdd\x16\xc6\xa4\x4b\x2e\x2c\x2c\x6c\xd1\xe3\xf7\xfb\x61\x75\x75\x55\xe2\x79\x3e\xc0\xb2\xec\x7c\x22\x91\x58\x9c\x9d\x9d\x0d\x7f\xf2\xc9\x27\x24\xf3\xb9\x42\x59\x5b\x05\x44\xb1\xd4\xb1\xb4\xb4\x04\x2d\xad\x2d\xf1\x80\x9d\xcc\x59\x52\x6c\xb7\x23\xc9\x79\xca\x95\xa7\x3a\xc9\xed\x6b\x0a\xe8\x8e\xca\x8d\x55\x63\xb5\x5d\xcd\x2b\x19\x5a\xff\xb5\x90\xc9\xb6\xb6\x36\x74\xec\xd8\x31\xb6\x47\xe7\x7d\xfc\x77\x6e\x55\xff\x53\x53\x50\xff\xcd\x40\xa7\xee\x03\x99\x28\xc2\xea\xea\xea\x16\x9b\xf1\x78\x9c\xce\xcc\xcc\x90\x9b\x37\x6f\xaa\xb7\x6f\xdf\x56\x17\x17\x17\xa9\xa2\x28\x3b\xda\xd9\x42\x14\x8b\x45\x96\x65\x1a\x08\x04\x68\xf3\xee\xe6\xc8\x82\x5d\xba\xe3\x8e\x71\xfb\xcd\x22\xe3\x28\x87\xd7\xcb\xd8\xd5\xe1\x37\xbc\x62\xa6\x5a\xbb\xae\xbb\xf6\x96\xa7\xb9\x21\xa9\xaa\x2a\x04\x83\xc1\x9d\xc8\x5e\xb9\xf4\x02\x4c\x6b\x6b\x2b\x3e\x74\xe8\x10\xd3\xd7\xdc\x59\x77\x78\xd1\xf1\x9d\xa7\x66\xac\x3f\xd4\x4b\xb8\xce\x20\x31\x1e\x4e\xc5\x55\x52\x97\xed\xf3\xa5\xa5\x25\x25\x99\x4c\xd2\xed\xf4\x54\x62\x0b\xa0\x04\x51\xcc\xbb\xce\x9d\xc7\xe3\x71\x10\x04\x41\xf6\x36\xd6\x07\x66\x1d\xa9\x3b\xae\xb8\xb6\xcf\x9c\xd2\xd8\x8b\x09\x64\xf6\x07\x53\xc4\xba\xe2\xda\x81\x2e\xbf\xe1\xdf\x58\xb8\x2a\xb3\x79\x8f\x67\x6e\x77\xcf\x9e\xa4\xc9\x64\xa2\xaa\xaa\xa2\x54\x2a\x85\x08\x21\x15\x11\x45\x86\x61\xc0\xed\x76\xa3\x9e\x9e\x1e\x34\x38\x38\xa8\xe9\xf5\xb6\xd7\x3f\x19\xac\xf9\x8f\xcf\x4c\xda\xff\xbb\x27\xc2\x3f\x85\x29\x62\xb3\x76\x5d\x71\xee\x91\x90\x41\x99\xd2\xb7\xd6\x8c\x4f\x4f\x4f\xd3\x4c\x20\xed\x81\x08\x67\xc1\x64\xb5\x48\xb6\x90\xae\xfe\xfe\x7e\xe8\xed\xed\x35\x69\x08\x3e\x78\x74\xd2\xf6\xdd\xd6\x75\x5d\x1f\xca\xff\x22\x30\x7b\x4e\xf3\xca\x8d\x00\x14\x04\xc2\x82\x55\x3c\x33\x5d\x2d\xfc\x72\xc1\x2a\x7e\x11\x63\xe4\x40\x28\x1c\x92\x42\xa1\x10\x49\x26\x93\x50\xf4\xd9\x12\x98\x4c\x26\xa8\xaa\xaa\x02\xb3\xd9\x8c\x1d\x0e\x07\x6b\x22\x9c\xa3\x3e\xcc\x3f\xd9\xba\xae\x7f\xb9\x3e\xc4\x1f\x63\x09\x18\x8a\xa3\x85\xd9\xa2\x89\xac\x1a\xf8\x59\xdf\xea\x33\xd7\xfd\x33\xd7\x7f\xfb\xdb\xdf\x96\x2a\x47\x39\xc2\x59\x12\x53\xd6\x41\x97\x93\x9e\x9e\x1e\x3c\x30\x30\x60\xc0\x80\xfa\x0e\xdc\x35\xfd\xa7\x81\xbb\xa6\x13\x98\x16\x19\xcc\x1f\x80\xf3\x64\xe3\xb3\x05\x10\x23\x3a\x65\x7c\xd5\x28\x8d\x86\xf4\xf2\xed\xb8\x56\xf5\xa5\x34\x24\xa0\x30\x44\xa0\x00\x44\x43\x90\x9e\x97\xb1\xc3\x28\xb2\x1e\x9b\xa0\x69\xab\x49\x68\xf6\x59\x05\x4d\x07\xa6\xa0\x47\x90\xa7\xb7\x8c\x0d\x40\x00\x8b\x96\xf4\xd9\x77\x7b\xd6\x5e\x7a\xef\xbd\xf7\x84\xbc\xb8\xd2\x7d\x49\xa9\x0f\xea\xb6\x5d\x56\x1e\x1d\x1d\x25\x89\x44\x22\x71\xe8\xd0\xa1\x2b\x97\x1b\x62\x7f\xb5\x62\x4e\x4f\x1c\x9d\xb4\xbd\x6a\x14\x59\xcb\x96\x4c\x17\x30\xab\x8d\xc6\xc5\x00\xf0\xf6\xa4\xa6\xcf\x2e\x68\xfa\xb2\xf7\x8a\xcb\x59\xf0\xd6\x8a\x07\xee\x52\xe7\x79\x7a\xfc\xa6\xf4\xc2\xa7\x2d\xe1\x7f\x44\x08\x61\x96\x7d\xf0\x7f\x2c\x51\x96\x28\xe6\x61\xb6\x90\xb7\x70\x38\x8c\x16\x17\x17\x95\xda\xba\xda\x50\xda\xc2\x8e\x8f\xd7\x08\xe3\x5a\x15\xbb\xaa\x13\x1a\xef\xc6\xb7\xa5\x19\x70\x86\x09\x50\xc8\x11\xf0\x9c\xa5\x02\x4c\x41\x79\x29\xe4\xbe\x73\xa5\x79\x9b\xb8\x32\x1f\xd1\x64\xc3\xfb\xc5\x18\x89\x25\xd2\xc5\x5d\xd1\x0f\x3f\x69\x09\xff\x8d\xa0\x51\xcf\xdd\xbd\x7b\x37\x3a\x3a\x3a\x9a\xad\xbe\x6c\x39\xee\x99\x70\x96\x25\x8a\x79\x07\x14\xdd\x47\x00\x1b\xa1\xd1\xa9\xa9\x29\x62\x30\x18\x62\x26\x87\x75\x6e\xde\x2e\x5e\x9d\xb3\xa7\xfc\xe6\x14\x5b\x67\x16\x19\xdb\x06\x4f\xca\xdf\xa5\xb6\xd9\x37\x50\xee\xba\x3c\xa6\xd0\x24\x85\x6c\xc5\x17\x67\x95\x60\x20\xb7\x5d\xc9\xab\xbf\xee\x0c\x7e\x7f\xde\x9a\xfa\xb1\x4a\xc9\xe8\xd5\xab\x57\xe3\x43\x43\x43\x59\x60\xc5\x84\xb3\x14\x66\x3b\x27\x5d\xb1\xd4\xd6\xd6\xc2\x13\x4f\x3c\xc1\x9a\x4c\x26\x0b\x02\xd4\x5e\x17\xd5\x3e\xd7\xe7\x33\x9e\x6c\x0c\xf1\xed\x0c\x45\xb8\x54\x17\xa2\x90\xf1\xe7\xa8\xb4\x3b\x41\x00\xb9\x8f\x8b\xb2\x2d\x70\x13\x43\x41\x62\xa8\x34\xe9\x14\x46\x46\x3c\xf1\x5f\x86\x75\xf2\x39\x00\x98\x59\x5a\x5a\x4a\x0c\x0d\x0d\x91\x48\x24\xf2\xa0\x45\x2a\xc8\xc7\x43\x93\xae\xae\x2e\xbc\x77\xef\x5e\xb6\xaa\xaa\xca\x06\x14\x9a\x8c\x69\xe6\x40\xfb\xaa\xfe\x68\x4b\x40\xdf\xe7\x48\x68\x5c\x9b\xcb\xcd\xb9\xa0\x40\x89\x1c\xe4\xf7\xf2\xbc\xbe\x08\x14\x54\x04\xca\x8a\x39\xed\x9b\xac\x16\x2e\x4d\x57\x0b\x1f\xa7\x35\xf4\x3a\x00\x2c\x04\x02\x81\xd8\xf0\xf0\x30\x79\x90\xe5\xa8\x72\xf2\x50\x2b\x28\x2b\x1d\x1d\x1d\xb8\xb3\xb3\x13\x5b\xad\x56\x03\x00\x38\x81\x42\xbd\x31\xcd\x74\x79\x22\xda\x47\xdc\x31\x6d\x6b\x75\x42\xe3\xb1\xa4\x58\x9b\x56\xc1\x1c\x2a\xd3\x82\x09\x02\x22\xb2\x44\x0c\xeb\xe5\xc0\x9a\x41\x5e\x58\x36\xa7\xc7\x97\xcc\xe9\xe1\x94\x86\x4c\x00\x82\x05\x42\x48\x60\x75\x75\x55\x1c\x1d\x1d\x25\x77\xef\xde\x05\x28\x3d\xb0\x54\x32\xf8\x6c\x8b\x29\xee\x62\xf9\x7c\xa0\x92\xed\x75\xdb\x8a\xcb\xe5\x82\xe6\xe6\x66\x68\x6c\x6c\x64\xf5\x7a\x3d\x0f\x00\x26\x00\xb0\x21\x40\x36\x4c\xc1\xa1\x55\xb0\x43\x27\x63\x9b\x56\xc1\x46\x86\x6c\x6c\x3d\x56\x18\x2a\xa5\x59\x12\x15\x34\x24\x20\xb1\x24\x40\x81\x86\x28\x40\x00\x00\x22\x08\xa1\x58\x28\x14\x92\x66\x67\x67\x95\xd9\xd9\x59\x28\xd3\x95\x2a\xc9\x77\xc5\x98\x7b\x22\x8a\xf7\x2b\x08\x21\xb0\x5a\xad\xe0\x76\xbb\xc1\xed\x76\x83\xc5\x62\x61\x8d\x46\x23\x66\x59\x96\x45\x08\xb1\x99\xed\x26\xb9\x17\x83\x10\x22\x00\xa0\x48\x92\xa4\x44\xa3\x51\x25\x10\x08\x90\xb5\xb5\x35\x58\x5e\x5e\x86\x78\x3c\xbe\x5d\x1e\xef\x89\x04\x56\x82\xf9\x5a\xba\xd8\xbd\x88\xdd\x6e\x2f\xf9\x1f\xa8\x1e\x94\xe0\x3d\x6c\xc1\x65\xce\x2b\xc1\xff\x3f\x2d\xf9\x5b\xf0\xb6\x73\x62\x59\x29\xf7\x56\xef\x6b\xe9\xf9\x3e\x30\x3b\x2e\x3d\x3f\x6c\xcc\xff\x01\x1e\x70\x67\x94\x89\x55\x05\x4a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x11\x5f\x41\x78\x79\x1c\x00\x00") +var _web_uiV1StaticAppleTouchIcon72x72Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x79\x1c\x86\xe3\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x48\x00\x00\x00\x48\x08\x06\x00\x00\x00\x55\xed\xb3\x47\x00\x00\x1c\x40\x49\x44\x41\x54\x78\x9c\xed\x7c\x7b\x6c\x1b\x47\x9a\xe7\x57\xd5\xcd\x66\x93\xe2\x9b\x14\x45\x4a\xa4\x24\x4b\xd6\xc3\x7a\xd9\x52\x64\x2b\xc9\x38\x91\x9d\xd8\x8e\xe3\x38\xd9\x64\x32\x98\xdb\xcb\x2d\xb0\x7b\xbb\x59\x04\xb7\xb7\x87\x5d\xdc\x61\x71\x58\x2c\x16\xb3\x83\x60\xb0\x18\x1c\x82\x99\xbb\x60\x76\x2f\xb8\xc9\xe0\x66\x0f\x8b\x99\x9d\x64\x32\x4e\x72\x33\x4e\x3c\x4e\xe2\xc4\x8e\xfc\x94\x62\xcb\xb2\xac\x97\x25\x59\xa2\x24\x4a\xe2\xfb\xd1\x6c\xf6\xa3\xea\xfe\x10\x49\x91\x14\x29\xd1\x8f\xec\x2d\x0e\xf7\x09\x2d\x75\x57\xff\xfa\xfb\xaa\xaa\xab\xbe\xfa\xd5\x57\xd5\x42\x00\x80\xa1\x50\x48\x26\x8d\x14\xdd\x23\x45\x38\x9c\x97\x86\x8b\x30\xa5\x9e\xbb\x17\x4c\x39\x29\xce\xd3\xd7\x8e\x41\x15\x00\xff\xbf\xc0\xd7\x53\x49\x95\xe8\xfc\x17\x8f\x61\x2b\x78\xe8\x6b\x93\x9a\x9a\x1a\x30\x18\x0c\x98\x61\x18\xa8\xaa\xaa\x02\x00\x80\x44\x22\x01\x84\x10\x48\x26\x93\xe0\xf7\xfb\x09\xc6\x18\x08\x29\xe8\xdd\xdb\x75\xfb\x87\x8e\x61\x61\x6b\xad\xe5\xfb\x96\x72\x8a\xf2\xfd\x49\x39\x1f\x96\xd3\xa5\xd5\x6a\x71\x5d\x5d\x1d\xb8\xdd\x6e\xa8\xae\xae\xc6\x56\xab\x95\xe5\xb1\x86\xd7\xcb\x8c\x45\x27\x63\x07\x2f\x33\x16\x96\x00\x0f\x00\xa0\x60\x2a\x88\x1a\x12\x13\x34\x24\x90\xe2\xd4\x88\xa8\x48\x62\x24\x1a\x55\xfc\x7e\x3f\xf1\xfb\xfd\xb0\xb4\xb4\x04\x92\x24\x95\x2b\xf0\x4e\xbe\xe5\x9e\x31\x3b\xf9\xa0\xfb\x76\x78\x2c\xcb\x42\x63\x63\x23\xb4\xb5\xb5\x61\xb7\xcb\xcd\xd9\xd3\x5c\xbd\x37\xcc\x3f\xe9\x8e\x71\x03\xd5\x09\xae\xc7\x24\x32\x4d\x1a\x82\x4c\x00\xc0\x6e\x64\x63\xe3\x37\x05\xc8\xfe\x56\x64\x86\x46\x62\x5a\x65\x76\xdd\x28\x8f\x2d\x9b\xd2\x17\x7d\x96\xf4\x85\x00\x97\x5e\x58\xf1\xaf\x48\xd3\xd3\xd3\x64\x76\x76\x16\x54\x55\xdd\x21\x7b\x0f\x26\xe8\x61\x2b\x34\x18\x0c\xb8\xab\xab\x0b\xda\xda\xda\xb8\x1a\xb5\xaa\xb1\x7d\x4d\xff\xed\xd6\x75\xfd\x4b\x56\x81\xed\x42\xb4\xc2\x2e\x8d\x10\x00\xa5\x5b\x92\x29\x02\x25\xac\x57\x46\xa7\xaa\x85\xf7\x27\x9c\xc2\x2f\xfc\x38\x31\x3f\x39\x39\x29\xdd\xbc\x79\x13\x04\x41\x28\xd7\x4d\x1e\x48\x1e\x5a\x05\x69\xb5\x5a\xdc\xdf\xdf\x0f\xed\x6d\xed\xfc\xae\x98\xfe\xf1\x3e\x9f\xf1\x3f\xd4\x87\xf9\xe3\x08\x10\x07\x34\xcf\xd2\x4e\xe7\xf9\x7f\x4b\xe5\x36\x93\x4e\x31\x95\x16\x2c\xe2\x47\xc3\xde\xf8\x9b\x77\x4d\xc2\xd0\xe8\xcd\x9b\xe2\x95\x2b\x57\x8a\x5d\xc3\x76\xd7\x15\x61\x50\xde\x0d\x80\x42\x0e\x04\x25\xee\x95\x54\xd4\xde\xde\x8e\x07\x06\x06\xb8\x86\xb4\xb1\xff\xe0\xac\xe5\x3b\x75\x51\xee\x29\x44\x11\xa6\x08\x00\x01\x05\x0a\x28\x63\x68\xf3\x9c\x02\x05\x44\x11\x14\x63\x0a\xea\x8c\xe6\xa5\xa2\xac\x86\xc2\x8c\x53\xa0\x64\xc9\x9c\x3e\x7b\xbe\x29\xfa\xdd\xbb\x9a\xe8\xc8\x95\xab\x57\xa5\x89\x89\x89\xfc\x32\xe6\xfb\xcd\x4a\x7c\x6b\x01\x66\x3b\x1f\x54\x8e\xd0\xe5\xae\xf5\x7a\x3d\x1c\x3e\x7c\x18\x37\x3b\xbd\xae\x83\xb3\xe6\xbf\xee\xf0\x57\xfd\x21\xce\x8e\x8c\x14\x01\xa0\xfc\xe2\x94\x38\x2f\x8b\xc9\x93\x02\x4c\x19\xa1\x08\x08\xa2\xca\x2d\x57\xf2\xc7\x17\x9a\x22\xaf\xcf\xf8\x17\xd6\x3e\xfb\xec\x33\x22\x8a\x62\xb9\x27\x2a\xf6\xad\x0c\x94\xef\x66\xb4\x84\x92\x1c\xd6\xe3\xf1\xc0\x73\xcf\x3d\xc7\xed\x03\xf7\x91\x17\x6f\x56\xbf\xeb\x8d\xf2\x4f\x03\x20\x8c\x00\x01\xcd\xc2\x10\x82\x8d\xeb\x8d\x47\xb3\xe7\x85\x98\x4d\x63\xb4\xc0\x10\xca\xb8\x21\xb4\x71\x85\xb2\xcf\x6c\x1e\xf9\x18\x04\x08\xd7\x24\xb9\xfe\xb6\x35\xfd\x4b\x52\xad\x6e\xdc\xb6\xc7\x3b\x3f\x31\x31\x41\x69\x09\x5f\xb6\x4d\x99\xb7\x60\x58\x28\xcf\x01\xa0\xdc\xbd\x3d\x7b\xf6\xe0\x27\xbe\x71\x50\x7f\x60\xd1\xfc\xe7\x8f\xde\x35\xfd\x35\xa2\x88\x2b\xf9\x74\x7e\x7f\x81\x8d\x6e\x95\xd2\x10\x61\xc5\x94\x5e\x58\x35\xca\xf3\x41\xbd\xec\x8b\xf3\x8a\x5f\xd4\x90\xb0\x82\xa9\x04\x00\xc0\xaa\x88\xd7\xc9\x8c\xd5\x94\x66\x5c\xb6\xa4\xa6\xde\x15\xe7\x1a\xdd\x31\xce\xa3\x55\x30\xbf\x51\x21\x99\x02\x23\x54\xd4\xe0\x28\x50\x8a\xc0\x94\x66\x9b\x7a\x97\x8c\x7f\xb1\xd8\x29\x5e\x71\x3a\x9d\xb1\x95\x95\x95\x07\x72\xde\xd9\x51\xa5\x94\x03\xcb\x97\xdc\xfd\x03\x07\x0e\xe0\x47\xba\xf7\xd9\x8e\x4c\xda\x7e\xd0\xbe\xa6\xff\x3d\x94\xd7\x35\xb2\xe7\xb9\x3a\xc9\x94\x21\xa5\x21\xc2\xa4\x53\xb8\x3e\x55\x2d\x5c\x58\x35\x4a\xc3\x2a\xa2\x0b\x08\xa1\x10\xa5\x34\x81\x10\x12\x29\xa5\x4a\xce\xbe\x06\x70\x4c\xa7\xb2\x7e\x4a\x79\x70\x80\x01\x00\x1c\x2c\x41\xf5\xb5\x31\xed\x40\xeb\x9a\xfe\x60\x4b\x40\xdf\xc5\xcb\x88\xdf\xb4\x09\xb0\x59\x53\x14\xc2\x3a\x65\xed\x4c\x5b\xe8\x4d\x4a\xa9\x14\x8b\xc5\x4a\x96\x21\xef\x3a\x2b\x15\xf9\xa0\x1d\x9d\xd9\x81\x03\x07\xa0\xbf\xbb\xd7\xf1\xdc\xb8\xfd\xed\xc6\x10\x7f\x32\xe3\x61\x0b\x24\x9f\xcb\x44\x79\x25\x74\xcd\x1b\x3f\x33\x51\x23\x7c\xa8\x30\x74\x0c\x00\xfc\xaa\xaa\x26\x56\x57\x57\xa5\x40\x20\x40\x82\xc1\x20\xc4\x62\x31\x58\x5d\x5d\x25\x5a\xad\x16\x03\x00\xe8\x74\x3a\xe0\x79\x1e\xcc\x66\x33\xd8\x6c\x36\x70\x3a\x9d\xd8\xe1\x70\x70\x0c\xc3\x98\x00\xa0\x56\x2b\xa3\x9e\x4e\xbf\xe1\xa5\x3e\x9f\xf1\xa9\x2a\x89\x31\xe4\xea\x07\x01\x28\x98\x48\xef\xec\x5b\xfb\xcb\x35\xa3\xfc\x0f\xd7\xae\x5d\x0b\x8d\x8c\x8c\x14\x97\x2b\x7b\x5d\x8a\xdc\x96\xc4\x54\x3c\x59\xed\xee\xee\x86\x83\x03\x8f\xd9\x9e\x1b\x77\xbc\xbd\x2b\xa8\x7b\x01\xe5\x65\xac\x58\xd2\x0c\x11\x2f\x37\x44\x3f\xba\x51\x9b\xf8\x5f\x2a\x03\xd7\x09\x21\x6b\x3e\x9f\x4f\x9c\x9a\x9a\x22\x3e\x9f\x2f\xcb\x84\xb7\x1b\x31\xf3\x33\x8e\x01\x80\xb4\xb4\xb4\xe0\xb6\xb6\x36\xec\x76\xbb\x79\x84\x50\x2d\xa7\xa0\xfe\x47\x16\x8d\xbf\xdf\xe7\x33\x3e\xc5\xaa\x98\x05\x44\xe1\x6c\x6b\xf8\xc7\xb7\xdc\xc9\xef\x2d\x2e\x2e\xfa\x4e\x9f\x3e\x4d\x4a\xe9\xd9\xa6\xbc\x25\x31\x15\xf1\xa0\x86\x86\x06\xfc\xcc\xb1\x63\x86\x23\x53\xb6\xff\xda\xe9\xaf\xfa\x83\x5c\xe5\x14\x09\x45\x00\x0b\xd6\xf4\xd4\xd9\xd6\xd0\x9b\x71\x5e\x3d\xab\xaa\xaa\x6f\x72\x72\x52\xb8\x71\xe3\x06\xc4\xe3\xf1\x87\x42\xe4\x2c\x16\x0b\xee\xeb\xeb\x83\xa6\xa6\x26\x3d\x46\xb8\xc9\x26\xb0\x27\x8e\x4d\xda\xfe\x5d\xa0\x4a\x9e\x3f\xdb\x1a\xfe\xb3\x44\x32\x31\xfe\xde\x7b\xef\x29\xa2\x28\x3e\x14\x7b\xa5\x2a\xa8\xe0\xad\x9a\xcd\x66\xfc\xe2\x8b\x2f\x72\x8f\xae\xdb\xff\xfc\xc9\x3b\x96\xbf\x2d\xf2\xba\x39\x2d\x14\x28\x5c\x69\x88\xfd\xe6\x72\x43\xec\x07\x04\xe8\xf5\x95\x95\x95\xc8\x97\x5f\x7e\x49\xc2\xe1\x70\x45\xbe\xed\x5e\x31\x4e\xa7\x13\x1f\x3c\x78\x10\xdb\xed\x76\x1b\x4b\x50\x07\x00\x08\x12\xa8\x63\xef\xbf\xff\xbe\x18\x08\x04\x4a\xe9\xbc\x2f\x5b\x3b\x12\xc5\x97\x5e\x7a\x89\xed\xe1\xea\x8e\x7c\xeb\x86\xf3\x57\x0c\x41\xfc\x06\x27\xd9\x1c\x9b\x29\x02\x20\x88\x92\x33\x6d\xa1\x9f\x4c\x3a\x85\x1f\x29\xaa\x32\x75\xe9\xd2\x25\x71\x7c\x7c\x1c\xa0\x74\xf7\xd9\x89\xed\x42\x11\x6e\x5b\xcc\xde\xbd\x7b\x71\x4f\x4f\x0f\x4b\x08\x81\xa1\xa1\x21\x65\x6e\x6e\xae\x64\xa0\xaf\xb3\xb3\x13\x77\x77\x77\xb3\x46\xa3\x91\x55\x55\x95\xac\xac\xac\x28\x57\xaf\x5e\x25\x81\x40\x60\x5b\x5b\xdb\x12\xc5\xfe\xfe\x7e\x3c\xd0\xf3\x48\xed\x2b\x23\x35\x9f\x59\x53\x9a\xdd\x40\x69\xa6\x6e\x32\xae\x98\x02\x28\x18\x94\xdf\x74\x04\xfe\x6e\xd6\x21\xfe\x7d\x32\x99\x9c\xfd\xf8\xe3\x8f\x95\x8c\xd1\x52\x05\xcd\x4f\xfb\x67\x8b\x28\x0e\x0e\x0e\x42\x5f\x63\x47\xe3\xa1\x19\xcb\xeb\xf5\x61\xfe\x49\x91\x25\x91\xaf\x3c\xf1\xb7\x46\xdc\xd1\x9f\x7c\xf4\xf1\xc7\xa2\xcf\xe7\x2b\xab\xa7\x2c\x51\x34\x9b\xcd\xe8\xf0\xe1\xc3\xfc\x13\x77\xad\x7f\xd3\x14\xd2\x1f\xcf\x0d\xaa\x28\x0b\x47\x40\x11\x90\x33\xed\xa1\xff\x31\x53\x2d\xfc\xb7\x68\x2c\x36\xf7\xfe\xfb\xef\x2b\xd1\x68\xb4\x58\xd5\xb6\x84\x73\x1b\x4c\x29\xa9\x98\xe0\x65\xa5\xa9\xa9\x09\x1e\xed\x3f\x60\xfb\xd6\xa8\xf3\x94\x37\xcc\x3f\xc3\x52\x64\xd2\xaa\xd8\xd9\x18\xe6\x4f\x88\x5a\x1a\x60\xdb\x9d\xc3\xb7\x6e\xdd\x22\x25\x08\x25\x02\xd8\x6c\x52\x5b\x8e\xc7\x1e\x7b\x0c\x3b\xd3\x7c\xdf\xbe\x25\xe3\xab\x39\x34\xda\xe4\xb2\x00\x14\x2e\x37\xc4\x3e\x98\x74\x0a\x3f\x8a\xc6\x62\xf3\x1f\x7e\xf8\xa1\x92\x99\x51\x17\x1f\x50\xce\xc6\x3d\x62\xee\xeb\x68\x69\x69\xc1\xae\x18\xf7\x78\x75\x42\xd3\x8f\xd0\x06\x5f\xcf\x96\xa1\x7b\xd9\xf0\x47\x3a\x9d\xce\x54\x57\x57\x57\xd6\x7e\xc9\xb7\x56\x53\x53\x83\xbd\x5e\xaf\xfe\xf1\x39\xf3\x5f\x62\x0a\x3c\x85\x8d\x9f\x8d\x6a\xd9\x38\x5b\xb0\xa6\xc7\xaf\x34\xc4\xfe\x8b\x98\x16\x67\xce\x9c\x39\xa3\x08\x82\x50\xac\xa6\x94\xee\x52\xc1\xb9\x9d\xe4\x81\x30\x76\xbb\x1d\x6b\x08\x76\x01\x6c\x4e\x67\xb2\x65\xd0\xc9\xd8\x81\x10\xd2\xeb\x74\xba\xb2\x7a\x8a\x23\x8a\x04\x00\xf0\x23\x8f\x3c\x82\x6b\x12\xdc\xa3\x4d\x41\xdd\x31\x44\xb7\xb6\x6a\x91\x25\xc2\xd9\xd6\xd0\xf7\x09\xd0\xb1\x2f\xbe\xf8\x42\x0a\x87\xc3\xe5\x0c\x94\xe2\x1e\x95\x60\x8a\x65\x3b\x92\xb7\x2d\x26\x91\x48\x10\xbf\xdd\x38\x21\x6a\x48\x4c\x27\x31\xa6\xfc\x07\xee\xd8\xc5\x11\x4a\xa9\x94\x09\xba\xe1\x52\x7a\xb6\x64\xd6\x66\xb3\x41\x5d\x5d\x1d\xdf\xeb\x33\xbe\x86\x28\x62\xb3\xad\x27\x57\xfb\x88\xc2\xe5\x86\xe8\x7b\x71\x5e\x3d\x37\x31\x31\x91\x98\x9f\x9f\xdf\xa6\x5c\x05\x06\xef\x07\x43\x8a\xfe\x96\xc2\x6d\x8b\x99\x9f\x9f\x27\x69\x0d\x9d\x3a\xdd\x1e\xfc\x61\x92\x53\x63\x14\x6d\x94\x61\xde\x96\x1a\xff\xb2\x29\xf2\xa6\x2c\xcb\x91\x8c\x93\x2e\xa9\x87\x2d\x4a\x20\x6d\x6d\x6d\xb8\x4a\x66\x9a\x76\x07\x74\xc7\x51\x41\x94\x62\x63\xd4\x8a\xf0\xea\xda\x68\x6d\xe2\xed\x64\x32\xe9\xbf\x74\xe9\x52\xbe\xc2\x52\x85\xbe\x2f\x8e\x53\x46\x2a\xc1\x6d\xc1\x8c\x8e\x8e\x42\x43\x43\x43\x00\xdc\xee\xb7\xff\xe7\xc0\xca\x0d\x47\x42\xd3\x9b\x66\x49\x34\xa4\x57\x2e\x51\xa0\xa3\x97\x86\x2e\x49\x25\x48\x65\xee\x9a\x2d\x4e\x6c\x69\x69\xe1\x5a\xd7\xf4\x2f\xb2\x2a\xd6\x6f\x44\x12\xf2\xe2\x11\x08\x60\xd8\x1b\x7b\x4f\xc1\x74\x7c\x78\x78\x58\x91\x65\xf9\xa1\xb0\xd5\xaf\x5b\x4e\x9f\x3e\x4d\x0e\x1e\x3c\xe8\x6b\x6e\x6e\x0e\xac\x98\xe9\xa7\x94\x52\x92\x4c\x26\xc5\xcb\x97\x2f\x2b\x77\xee\xdc\xd9\xb6\x0c\xf9\xb3\x79\xf0\x78\x3c\xc0\x6b\x79\x7d\xcb\xba\xfe\x79\x04\x14\x28\xca\x8b\x04\x22\x04\x22\xab\x26\x26\x9c\xc2\x3b\xf1\x78\x3c\x32\x31\x31\xb1\x13\x09\x2c\x96\x7b\xc1\x6c\x87\xab\x08\x83\x31\x06\x87\xc3\x01\x1c\xc7\x81\xcf\xe7\x23\xe7\xce\x9d\xc3\xe7\xce\x9d\x13\x6a\x6a\x6a\xc4\x74\x3a\x0d\x91\x48\x04\x2c\x16\x0b\xec\xd9\xb3\x07\x63\x8c\x21\x12\x89\xc0\xf2\xf2\x32\x14\x0d\xf7\x85\xcb\x3e\x5e\xaf\x17\x74\x32\xae\x77\xc5\xb9\x1e\x80\xc2\x50\x02\x02\x80\xe9\xea\xd4\x90\xcc\xd2\xa9\x89\x89\x09\x05\xb6\x8f\xf1\xe2\xa2\xeb\x8a\x30\x08\xa1\xfc\x0c\x96\x72\xec\xa5\x74\x6d\xc1\xec\xda\xb5\x0b\x9e\x38\x78\x90\x75\x60\x83\xcb\x90\x66\x1c\x41\xbd\x3c\xef\x0b\xfa\x63\xe7\xce\x9d\x83\xd5\xd5\x55\x00\x00\x72\xe8\xd0\x21\xdc\xd1\xdc\x66\x6a\x08\xf3\x07\x39\x05\x19\x16\xad\xe9\x4b\x77\x13\x6b\xbe\xb3\x67\xcf\x42\x86\xcb\x11\x80\xa2\x85\x43\xaf\xd7\xcb\xd6\x45\xb5\x8f\xe3\x4c\x00\xac\x30\xca\x43\x61\xba\x5a\xf8\x98\x10\x12\x9a\x9c\x9c\x2c\x95\xc1\x7b\x49\xc3\x00\x00\xf5\xf5\xf5\xd0\xd2\xd2\x02\x4e\xa7\x93\x33\x1a\x0c\x58\x51\x55\x88\xc5\x62\x64\x65\x65\x45\xb9\x7d\xfb\x36\x84\x42\xa1\x4a\x74\x17\x48\x4b\x4b\x0b\x7e\x7a\xf0\xb0\xe9\xf0\xb4\xf5\x7b\x9d\xfe\xaa\x57\x11\x20\x2e\xcd\x12\xff\x67\xbb\x75\x7f\x61\x7c\xde\xf8\x8b\x53\xa7\x4e\x29\xfb\xf7\xef\xc7\xfd\x9e\xf6\x8e\x17\x87\xab\x7f\x66\x49\x69\xba\x10\x00\xc8\x98\x44\x3e\x6e\xe7\x5e\xe3\x4e\x9c\x38\xf5\xee\xbb\xef\x2a\xb2\x2c\x6f\x71\xd2\x60\x32\x99\xd8\xda\x39\xed\xfe\x6c\xcb\x41\x79\xa4\x54\x62\xa8\xb0\x62\x92\x86\xfc\x7e\xbf\x94\x4a\xa5\xee\xd5\xf7\x14\xe0\xcd\x66\x33\x1e\x1c\x1c\xc4\x1e\xab\xd3\x65\xf3\xc9\xbf\x6b\x1a\x57\x9f\xd6\x88\x49\x0f\x45\x48\x12\x0d\xba\xa9\x88\xab\xf5\xfd\xce\x97\x3a\x7e\x33\x3e\x79\x3b\x71\xe1\xc2\x85\x7b\xb2\x35\x30\x30\xc0\xf5\xfa\x8c\x7f\xda\xe5\xaf\xfa\x93\xec\xab\xe5\x65\xe4\x3a\x3a\x69\x7b\x6b\xad\x5f\x9a\x3a\x79\xf2\xe4\x35\xa3\xd1\x68\x38\x34\x66\x7d\xc3\x9a\x62\xbb\x20\x53\x56\x8d\x8a\x2c\x4f\x4f\x59\xdf\x5c\x18\x10\xaf\x74\x76\x76\x2e\x5c\xbf\x7e\xbd\xb0\x05\x79\x3c\x1e\x8c\x31\xd6\x57\xc7\x35\x1d\x14\xb2\x73\xae\xcd\xfe\xb8\x6a\x94\x66\x14\x86\xfa\x97\x96\x96\x2a\x1d\xb5\x4a\x76\x2f\xab\xd5\x0a\x27\x4f\x9e\xe4\xdc\x11\xf6\x9b\x9e\xf3\xc9\x37\x58\x89\xba\xf2\x01\x7c\x82\xf4\x99\x57\x95\xdf\x75\x1a\xf1\x15\xed\xbe\xb6\xd7\xec\xbf\x63\x1f\x3b\x7d\xfa\x34\x91\x24\x69\xc7\xa8\x80\xd7\xeb\xc5\x7a\xbd\xde\xb0\x3b\xa0\x7b\x79\x23\xf7\xd9\xf0\x2c\x00\x43\x41\xbf\x2b\xa8\x7b\x29\xec\x35\x8d\x22\x02\xb6\xba\xa8\xf6\xd1\xbc\x45\x4a\x00\x04\xc0\x2b\xd8\x59\x9d\xe0\xfa\xeb\xea\xea\x7c\xd9\x0a\xc2\xd9\xc3\x62\xb1\x00\xa2\xa0\xb7\xa6\xd8\x7a\x04\x08\x10\x2d\x3c\xd6\x0c\xd2\x04\xa5\x34\xe6\xf7\xfb\x0b\x9e\xcb\x3b\x8a\xd3\xa1\x38\x5d\xab\xd5\xc2\x89\x13\x27\x58\x77\x84\xfd\x76\xc3\x0d\xf1\xa7\x8c\x0c\x2e\x8a\x32\xf3\x3b\x84\x80\xa2\x8d\x65\x20\x00\x0a\xfa\x38\x39\xb0\xfb\x4a\xea\x7d\x8f\xb1\xba\xfd\x1b\xdf\xf8\xc6\x16\x5d\x66\xb3\x19\xef\xde\xbd\x1b\x37\x37\x37\x63\xa3\xd1\x08\x00\x80\xf5\x7a\x3d\x00\x00\x47\x10\xe0\xe2\xfc\x23\x8a\x40\xc1\x04\x53\x4a\x31\x45\x80\x05\x0d\x49\x14\xdf\x07\x00\x92\xe4\x54\x01\xe5\xe6\x9b\x1b\x4e\x1a\x00\x00\xcc\x66\x33\x68\x54\x64\xe1\x65\xc6\x52\x38\x6d\xdb\xb8\x0a\xeb\x95\x59\x4a\xa9\x58\xe4\x17\x2a\x99\x5d\xe7\xee\xf7\xf6\xf6\x82\x99\xd5\x35\x79\x6e\x25\xdf\x00\x42\xd9\xfc\x85\x30\xba\x65\xc1\x90\x82\x26\x4d\xeb\xbd\xb7\xc4\x37\xa4\xfe\xdd\xff\x6a\x72\x72\x32\xb6\xbc\xbc\x8c\x79\x9e\x87\xc1\xc1\x41\xdc\x5c\xd7\x60\xaa\x8b\xf1\xfb\x08\xa2\xd2\x92\x51\x1c\x1d\x9f\x99\x4c\xcc\xce\xce\x02\x00\x88\xe3\xae\xe4\xa7\xb5\x31\xae\x27\x1b\x14\x47\x00\x20\x33\x44\x9a\xb7\x89\x17\x11\x42\x0a\x00\xc4\xae\x79\x63\xa7\x9e\x9e\xb6\xfe\x49\x3e\xe6\x8e\x3d\x75\x2d\xa2\x53\x66\xc2\x73\xe1\x5c\xb9\x72\x3e\x88\xe7\x79\x96\x97\xb1\x8d\xa1\xc0\xa3\xa2\x95\x03\x8a\x00\xe2\x5a\x65\x51\x96\x65\x25\x9d\x4e\x97\x25\x55\x25\x2a\xa6\xe0\x5e\x7b\x7b\x3b\x6f\x5f\x90\xff\x2d\x2b\x83\x23\xc7\xaf\x36\x57\x88\x60\x73\x81\x70\xb3\xb6\x8c\x01\xf5\x88\x3e\x4e\xfa\x3a\x3a\x3a\xce\x2d\x2f\x2f\x93\x67\x9f\x7d\x96\xed\xe6\xea\x0e\x9e\xbc\xea\x78\xbb\x4a\xc2\x4d\x00\x00\x11\x9d\x32\xf6\x61\xa7\xe6\xf7\x2d\x16\xcb\x68\x3c\x1e\x4f\xdc\x72\xc1\x4f\x0d\x69\xa6\xa9\xcf\x67\x3c\xc6\xa9\x88\x8f\xf0\x6a\xe8\xf3\xdd\xe1\x1f\xc7\x78\xf5\xda\xc4\xc4\x84\xe2\x76\xbb\x63\x63\x6e\x78\x4b\xc5\x94\xeb\x59\x36\x1c\xd7\xa8\x98\x9b\xb7\xa7\x46\x2f\x37\xc4\xde\x20\x94\x2c\xdf\xbe\x7d\x3b\x57\xae\x5c\x0b\xd2\xe9\x74\xa0\x55\xb1\x09\x00\x80\x66\x97\x54\x28\xe4\x32\x9c\xd2\x90\x50\x5e\xd8\xf4\x5e\x18\x30\x00\x00\xb8\x5c\x2e\xcc\x69\x34\x7a\x63\x20\xf5\x54\x36\x96\x94\x2f\x9b\x61\xb8\xec\xcb\xa1\x99\x37\x4b\xb1\x21\xa0\x1e\xf5\x78\x3c\x43\x1d\x1d\x1d\x52\x8d\xbd\xda\xf1\xec\x15\xfb\xdb\x55\x12\xd3\x94\x85\x5b\x04\x4d\xd7\x33\x13\xf6\xbf\x0f\xf5\x29\xcf\x5e\xbf\x71\x3d\xb2\x67\xcf\x9e\x89\xcb\x0d\xb1\xff\x3c\xec\x8d\xff\xa3\x56\xc1\x36\x81\x53\xe7\x09\xd0\xf1\x48\x24\xe2\xbf\x78\xf1\x22\x58\x2c\x16\xe5\xf8\xf1\xe3\x13\xe3\x35\xf4\xf5\xdb\x35\xc2\x4f\x01\x80\xa5\x40\xfd\x00\xe0\xfb\xe2\xf3\x2f\x84\x50\x28\xb4\x85\x49\x63\x00\x00\x4c\x10\xbf\x39\x72\x6d\x12\x45\x0a\x00\x2a\xa6\x5b\xa6\xeb\x79\xb2\x23\x09\xb4\xd9\x6c\x00\x00\x7a\x2e\x45\x6a\x73\x95\x92\xd9\xa4\x80\x10\x02\x44\x69\x66\x91\xa4\xb0\xbf\x51\x84\x80\x4b\x91\x46\x8e\xe3\xd9\x81\x81\x01\xc5\x9e\xd4\xec\x33\xa5\x99\xa6\xbc\x5c\x02\x02\x04\xce\x84\xa6\xdf\x90\x66\x9a\x58\x96\x1d\xf9\xe0\x83\x0f\xa4\x47\x1f\x7d\x74\xa6\xae\xae\x6e\x5e\xd1\x52\x56\x96\x65\x65\x72\x72\x52\xba\x76\xed\x1a\xc8\xb2\x4c\xd6\xd7\xd7\xe1\x9d\x77\xde\x51\xba\xbb\xbb\x7d\x1e\x8f\x67\x59\xa3\xd1\xc0\xfa\xfa\x3a\xb9\x79\xf3\x26\x14\x85\x6b\xb7\xec\x0f\xc2\x05\x9e\x1d\xf2\x46\x82\xad\x93\xc1\x7b\x0a\x67\x64\x1c\x1f\x4b\x31\x90\x4c\xb0\x2d\x7b\x23\x63\x67\xeb\xda\x7b\x2e\x0d\x03\x50\x4a\x31\xcb\xb2\xa0\x60\xca\x16\xe6\x70\xe3\x9c\x20\x20\x2a\xa6\xac\xc1\x60\x80\x70\x38\x0c\xa7\x4f\x9f\x26\x0c\xc3\x48\xaa\xaa\x8a\xa5\xf2\x25\x8a\x22\x5c\xbd\x7a\x15\x26\x27\x27\x09\x42\x08\x92\xc9\x24\x28\x8a\x92\xcd\x73\x81\x0f\xca\x89\x8a\xa9\xb4\x75\x2d\x67\x23\xab\x2c\x41\x7c\x89\x0a\xa9\x58\x64\x59\x06\x00\x90\xc4\x2a\xbc\xac\x15\x54\xcf\x46\xf8\x36\xd3\x5a\xb2\x7e\xa7\xb8\xd4\x99\xbc\xa4\xab\xf0\x02\x42\x88\x04\x02\x01\x82\xec\x8e\x99\x25\x73\x7a\xbc\x2e\xca\x77\x64\x2b\x11\x01\xc0\x8c\x23\x75\x29\xa5\x21\xfe\x70\x38\x0c\x36\x9b\x0d\xf6\xef\xdf\x8f\x3d\x75\x75\x2c\x8b\x59\x1c\x4b\xc6\x95\xe9\xe9\x69\xe5\xfa\xf5\xeb\xa0\x28\x0a\x06\x00\x68\x69\x69\x81\xfd\xfb\xf7\xb3\x0e\xad\xc9\xc4\x10\xc4\x45\x50\x2a\x74\x73\x6c\x4c\x1a\x1e\x1e\x06\x4a\x69\xae\x42\xf3\x23\x8a\x90\x66\x49\xac\x28\x87\xb9\x4a\xd2\x4b\x8c\x0d\x21\x54\x36\x02\xb9\xd3\x31\x35\x35\x45\x00\xa1\x44\xd4\xa5\xf9\x22\xbb\x3e\x0f\xf9\x7f\x33\xeb\xf8\x28\x8f\x9e\x22\x40\x40\x31\x48\xb1\x6a\xf6\x7c\x34\x1a\x95\xce\x9f\x3f\x0f\x14\xa8\xef\xd7\x1d\xc1\xef\xdc\x71\x08\xa3\x32\x26\x8a\xcc\x12\xe9\x96\x2b\x79\xe9\x93\xd6\xd0\xf7\x54\xa2\xae\x85\xc3\x61\x78\xe1\x85\x17\xb8\x93\x9a\x8e\x3f\xf8\xc3\x11\xcf\xc5\xd7\x2e\xd6\xdd\xfe\xbd\xf9\x5d\x3f\x7b\xba\xfd\x40\xc7\xb3\xcf\x3e\x8b\x01\x80\x74\x74\x74\xc0\xd1\x27\x0f\xdb\x5e\x5e\xac\xff\xd1\x1f\x5f\xac\x9d\xfb\xa3\x4b\xee\xb9\x57\x6e\x79\x3e\x3c\xbc\xe7\x40\xfb\xf1\xe3\xc7\x21\x3f\xdf\xb9\x16\x94\x4c\x26\x49\xda\x49\x62\x2a\xa6\x12\x43\x80\x2b\x26\x8a\xc6\x34\x53\x67\xaa\x36\x55\xb4\xc8\x58\x54\xf9\x39\x09\x87\xc3\x02\x72\x5b\x7e\xe5\x9c\xc3\xaf\xf0\x71\x52\x9b\xf3\x35\x34\xbf\x63\xe5\xbd\x22\x44\x21\x50\xcf\x9d\x95\x75\x78\x6c\x76\x62\x56\x59\x5f\x5f\x27\xc3\xc3\xc3\x42\x7f\x7f\xff\xd9\xff\xdd\x11\x5c\xd0\x10\xd4\x44\x01\x88\x82\xc9\x14\x05\x98\xbd\x72\xe9\x8a\xd8\xdf\xdf\xcf\x76\x87\x2d\xaf\x3c\x35\x6d\x7d\x2b\x93\x07\x68\x0c\xf1\xf5\x8e\x44\x75\x9f\xd0\x4f\x0e\x1f\x3a\x74\x68\xa1\xb9\xb9\x99\x7f\x7c\xce\xf2\xdd\xf6\x35\xfd\xab\x59\x5b\xb5\x31\xee\xc8\xf3\x63\x8e\x9f\x25\x1e\x51\x8e\xb6\xb6\xb6\x06\xa6\xa6\xa6\x0a\x89\x62\x32\x99\x04\x99\xa1\xb1\x94\x86\x44\x4a\x11\x45\x7b\x52\xb3\x9b\x65\x59\xd6\x60\x30\x94\x22\x89\xdb\x11\xc7\x9c\x9d\xaf\xbe\xfa\x8a\x10\x0c\x13\xf3\x7b\xf9\xbf\x95\xb5\x28\x01\x59\x62\x98\x23\x8a\x90\x3b\x00\x01\x24\x6c\xec\xd4\x4a\x8b\xf6\x07\xb2\x2c\xfb\xc7\xc6\xc6\x00\x00\x60\x64\x64\x04\x3e\xf9\xe4\x93\xd8\xda\xfa\xda\x48\x1a\xa9\xa7\xd2\xa0\x7c\xb0\xbc\xb2\x32\x76\xfa\xf4\xe9\xc4\xda\xda\x1a\x98\x4c\x26\x7d\xf7\x4a\xd5\x1f\x23\x8a\x0a\xc8\xa2\x31\xcd\x36\x36\x07\x75\xdf\x6c\x69\x69\x61\x59\xcc\x58\xda\xd7\xf4\xdf\xda\x52\x46\x81\xed\x71\x47\xb5\x4f\xee\xde\xbd\x3b\x97\xef\x5c\x0b\x4a\x24\x12\x40\x80\x26\x42\x7a\xc5\x67\x14\x19\x67\xee\x35\x66\x5e\x6a\x4d\x9c\xeb\x40\x80\xf4\x76\xbb\x5d\x48\x24\x12\x95\xb7\xa3\x3c\x07\x39\x33\x33\x03\x4d\x4d\x4d\x91\x86\x86\x86\x53\x33\x8f\xea\xc1\x33\x26\xfe\x99\x21\xa4\xee\x2e\x18\x0a\x00\x80\x62\x44\x02\x5e\xcd\x85\x95\x56\xed\xf7\x09\x03\x57\xce\x7f\x76\x3e\x3b\xff\xc3\x00\x00\x77\xee\xdc\x81\x4c\x1c\x47\x64\x59\x16\x67\x9c\x2b\xb4\xb5\xb5\x01\x00\xf0\x9c\x8a\x2d\xf9\x9b\xae\xb2\x2d\x55\xa3\xa0\x1a\x84\x10\x0b\x14\xf4\x88\x02\xb7\x15\x03\x40\x11\xe8\xcd\x66\x73\xee\x25\xe7\x88\x62\x30\x18\xc4\x08\x21\x61\xcd\x20\xcd\x34\x84\xb4\x7d\x1b\x95\xb3\xd9\xfc\x1d\x49\x4d\xbb\x56\x41\xce\xda\xda\xda\xc0\xdd\xbb\x77\xef\x3b\x50\xf6\xe9\xa7\x9f\xe2\x23\x47\x8e\xf8\xeb\xeb\xeb\x7f\x7e\xe7\x80\x6e\x4c\x1f\x25\x4f\x1b\x03\x4a\x3f\x97\xa2\x0e\x8a\x41\x11\x0d\xd8\x17\x75\xb2\x9f\xcb\x3c\xba\x40\x01\x66\x2e\x5c\xb8\x20\xcc\xcc\xcc\x14\x87\x43\x73\xa2\x28\x4a\x2e\x2d\x95\x4a\x61\x00\x50\xee\x5a\xc5\x51\x67\x5c\xd3\x9e\xef\xf8\x15\x86\x4a\x73\xf6\xd4\x45\x00\x50\x28\x02\x61\xca\x29\x0c\xed\x5d\x32\x9c\xc8\xc7\x84\xf4\x8a\x6f\xc5\x94\x1e\x0d\x2e\x04\x73\x7e\x39\xc7\x83\x56\x57\x57\x89\xaa\xaa\xe2\x8a\x29\xfd\x15\x45\xc6\x6f\x6f\x06\xeb\x37\xfe\xb2\x04\x78\x6f\x84\x3f\xb8\x52\x57\x37\x05\x00\x9b\xdb\x55\xee\x51\x14\x45\x21\x1f\x7d\xf4\x11\xe9\xec\xec\x0c\xf5\xf6\xf6\x0e\x81\x45\x3f\x26\x58\x18\x0b\x00\xe8\x33\x3a\x63\x00\x10\x09\x06\x83\xc2\x97\x5f\x7e\x49\xfc\x7e\x7f\xc5\x76\x16\x16\x16\x48\x3a\x9d\x4e\x5c\xa9\x8f\xbd\x55\x9d\xd0\x74\x35\x84\xf9\x0e\x84\x10\x48\x98\x48\xe7\x5a\xc2\x3f\x89\xf1\xea\x88\xcf\xe7\x53\x9c\x4e\x67\xe8\x7c\x53\xf4\x0d\x8d\x8a\x1d\x6d\x6b\xfa\x7e\x0c\x80\xd7\x0c\xb2\xef\xa3\x3d\xc1\xd7\x09\x86\xf9\xfc\x60\x60\xc1\xca\xea\x8b\x2f\xbe\x88\xeb\xad\xae\x27\x5f\xbd\x54\x7b\x9a\x55\x11\x57\xbc\x4c\x37\xe5\x10\x7e\xf3\xeb\x8e\xc0\xbf\x3e\x75\xea\x54\x62\x7d\x7d\xbd\x54\x44\x11\xa0\x28\xc6\xbd\x1d\x06\x21\x84\xbd\x5e\x2f\x38\x9d\x4e\xe0\xb8\x8d\x3d\x58\x82\x20\xc0\xe2\xe2\x22\x04\x83\xc1\x52\x7a\x8a\x07\x89\x2d\x98\xd6\xd6\x56\x3c\x38\x38\x68\x40\x80\x7a\x1c\x49\xcd\x41\xbd\x84\xab\xd7\x0d\xf2\x8d\x94\x86\x0c\x25\x92\x89\x85\x77\xdf\x7d\x57\x69\x6c\x6c\x84\xc1\xc1\x41\x3d\x02\xd4\xca\x2b\xb8\x87\x25\x88\x4f\x70\xea\x04\x05\x3a\x36\x35\x35\x15\xfa\xfc\xf3\xcf\x73\xdd\xb9\x60\x65\xd5\x68\x34\xd2\xea\x5a\x17\x78\x23\xda\x23\x26\x91\xa9\xd9\x9c\x17\x6d\xd4\xa5\x45\x64\xea\xc6\x5d\xc9\x5f\x49\x0c\x5d\x5d\x58\x58\xc8\xdf\x0f\x97\x2f\xf9\x69\x3b\x62\xa2\xd1\x28\x2c\x2f\x2f\xc3\xe2\xe2\x22\x2c\x2e\x2e\x82\xdf\xef\x87\x54\x2a\x05\x50\xb8\xda\x9a\x3f\x41\xcb\x97\x2d\x98\x60\x30\x88\x62\xb1\x98\x54\xe3\xaa\x59\x91\xf4\xf8\x46\x54\xa7\x5c\x90\x19\x3a\xb6\xb0\xb0\x10\x38\x73\xe6\x8c\x2a\x8a\x22\x09\x06\x83\x68\x6d\x6d\x4d\x36\x5b\xcc\x6b\x9c\x51\x37\x21\x31\xe4\x66\x2a\x95\x9a\xff\xea\xab\xaf\x92\x97\x2f\x5f\x86\x7c\x5b\x05\x2d\xc8\xe5\x72\xc1\xf3\xcf\x3f\x6f\xea\x59\x31\xbc\xfe\xd4\x94\xed\x4f\x4b\x2d\xf4\x5e\xa9\x8f\xfe\xf0\xf3\xba\xc0\x5f\xfd\xfc\xe7\x3f\x17\xb7\xd9\x24\xf9\x7f\x5d\x10\x42\xb9\x98\x74\x28\x14\x82\x54\x2a\x05\x76\xbb\x1d\x1c\x0e\x07\xa4\xd3\x69\xf0\xfb\xfd\x20\x8a\x22\x68\xb5\x5a\xd0\x68\x34\x50\x6e\xe0\x61\x20\x6f\xc1\x31\x91\x48\xd0\xf6\xf6\x76\x22\x1a\x19\x65\xef\xb2\xe1\x5b\x0c\x45\x5b\x36\x7e\xdb\x93\x9a\xd6\x09\x8f\xf8\x4b\xa2\x41\x41\x9f\xcf\x47\xf2\x9f\xff\x97\x76\x08\x82\x40\xe3\xf1\x38\xd5\x6a\xb5\xe8\xc4\x89\x13\xf8\x89\x7d\x03\xf6\x6f\x58\xda\x0e\x74\xd5\xb7\x58\x76\xf5\xed\x89\x20\x8c\x95\xc5\xc5\x45\x22\x49\x52\x59\x1d\x4c\x71\x05\x70\x1c\x47\x9d\x5e\x77\xda\x92\xd2\xec\xaf\x4e\x6a\x1a\x8b\xef\xb3\x04\xe9\x58\x82\xb8\x44\xab\xe1\x93\xb9\xb9\x39\x55\x14\xc5\x2d\xab\xfe\x19\xc1\xb0\x65\xce\x5e\x31\x26\x3f\xfd\x81\x30\x1c\xc7\xa1\x17\x5e\x78\x81\x3d\x00\xde\xe7\x5f\x1e\x75\x7e\xd8\xe5\xaf\xfa\xf7\x5d\xfe\xaa\xd7\x1a\x62\xfa\x01\xa1\xdb\xf2\x29\xd5\xe0\xc4\xf2\xf2\x72\x59\x3d\x4c\x26\x31\xeb\x13\x68\x3c\x1e\x47\x9d\x9d\x9d\x52\x5c\xa7\xe2\xee\x15\xc3\x73\x98\x16\x4e\x02\x36\x66\xce\x5c\xf7\x82\x5d\xfa\x52\x57\x67\x9d\x9f\x9a\x9a\x02\x28\xf4\x35\xc5\x3e\x88\x16\xd9\xa8\x04\x03\x65\xce\xf3\x71\x15\x61\x7a\x7b\x7b\x61\x8f\xa7\xb9\xf1\xe5\x51\xe7\x07\xbc\x8c\xab\xb3\x65\x30\x89\x6c\x13\xaf\x60\x5b\x62\x8f\xf1\xcc\xf4\xf4\xb4\x2a\x49\x52\x49\x3d\x5b\x66\xb9\x89\x44\x02\x66\x67\x67\xc5\x40\x95\x7c\xee\x8e\x23\x75\x0d\x10\x85\x82\x8d\xdc\x88\x02\x43\x10\x77\x74\xd2\xf6\x86\xc7\xe1\x72\xed\xdf\xbf\xbf\xc4\x8b\x2b\xd4\xb9\x13\xa0\x0c\xa6\x54\x60\xae\xdc\x28\x56\x16\xe3\xf5\x7a\xb1\x2b\xc6\x1d\xe4\x65\x6c\x03\x80\x3c\x37\x4f\xa1\x29\xa4\x3b\xc6\x60\xc6\x52\x5b\x5b\x0b\x45\x92\xd3\x53\x72\xf2\x39\x32\x32\x02\x84\x92\xe5\xa1\x5d\xd1\xb7\x14\x04\xca\xe6\xcc\x3a\x4b\xaa\x28\xd8\x05\xb6\xeb\xf0\xb4\xf5\xfb\xfb\x7a\xf6\x1a\x76\xed\xda\x05\xa5\xf4\x3c\xe0\x51\xac\xb3\x94\x8d\x1d\x31\x3c\xcf\xe3\x34\x4b\x14\x8a\xb2\xf9\xdf\x7c\xe1\x49\x4e\x15\x00\x01\xab\xd5\x6a\xcb\xea\xc9\xfa\xa0\x82\xfe\x2c\x8a\x22\x31\x1a\x8d\x4a\x95\xdb\x16\xe1\x14\xd4\x52\x1b\xe3\x5b\x37\x86\xfc\x4c\x80\x1d\x36\x76\xbe\x3b\x92\x9a\x6e\x8a\x91\xac\xd9\xeb\xbe\x1c\x08\x04\xd4\x58\x2c\xb6\x93\xcf\xf9\x67\x17\xa7\xd3\x89\xb4\x2e\x33\xa9\x8f\xf0\x4f\x1b\x25\xd6\x9e\xcd\x3f\x45\x00\x43\xbb\xa2\xff\xb0\x6e\x90\xcf\xde\xb8\x71\x43\x8c\xc7\xe3\x25\xf3\x9e\xf5\x41\x00\x85\x5c\x83\xae\xaf\xaf\xa3\xf6\xf6\x76\x61\xcd\xaa\xae\xb6\xae\xeb\x9e\xe1\x15\xa6\x2a\x87\xca\xc6\x91\x29\x02\x4f\x54\xfb\x84\xa4\x81\xa8\x7e\x9f\xe7\xab\xa2\x4a\x2a\x76\x78\x05\xbe\xee\x3e\x31\xc5\xbe\x6c\x47\x8c\x24\x49\xb4\xa5\xad\x55\x98\xb5\xa7\xee\xea\x64\xa6\x51\x2f\x63\x63\x8c\x57\xc2\x43\xbb\x62\xbf\x18\x77\x09\x7f\x17\x8e\x84\x97\x2e\x5f\xbe\xac\x96\xd3\x53\xbc\x05\x2f\xe7\xa8\x64\x59\x06\x59\x96\xd5\xda\x06\x4f\x64\xdd\x28\x2b\xed\xab\x55\x87\x51\x6e\x2d\x71\xe3\x6b\x0b\x0a\x00\x80\x10\x6a\x0c\xf3\x47\x00\x63\x99\xef\xad\xbb\x96\x96\x24\x65\x7d\x7d\xbd\x62\xa2\xb8\x0d\xa6\x62\xa2\x68\x36\x9b\x41\xaf\xd7\xa3\xcc\x88\x5a\x80\x89\xc7\xe3\x44\x55\x55\xd9\xe9\x75\x2f\xde\x71\xa4\xce\x8f\x78\xe2\x1f\x8f\xd6\x26\xfe\x69\xcd\x20\x7d\x90\x4e\xa7\xe7\xcf\x9c\x39\xa3\xa6\x52\xa9\xb2\xb6\xb6\xfb\x98\x05\x02\x81\x00\xd4\xd4\xd4\xa4\x51\x75\xd5\x12\xc1\xd4\x5d\x1f\xe1\x3b\x0b\xca\xb5\xb9\x5f\x11\x79\x23\xda\xc3\x96\x34\x57\x0b\x7b\x9d\x43\x46\xab\x59\x58\x5e\x5e\x7e\xd0\xaf\x01\x4b\x55\x6a\x81\x70\x1c\x87\x06\x07\x07\xe1\xe8\x63\x83\x96\xfd\x2d\xdd\x16\xc6\xa4\x4b\x2e\x2c\x2c\x6c\xd1\xe3\xf7\xfb\x61\x75\x75\x55\xe2\x79\x3e\xc0\xb2\xec\x7c\x22\x91\x58\x9c\x9d\x9d\x0d\x7f\xf2\xc9\x27\x24\xf3\xb9\x42\x59\x5b\x05\x44\xb1\xd4\xb1\xb4\xb4\x04\x2d\xad\x2d\xf1\x80\x9d\xcc\x59\x52\x6c\xb7\x23\xc9\x79\xca\x95\xa7\x3a\xc9\xed\x6b\x0a\xe8\x8e\xca\x8d\x55\x63\xb5\x5d\xcd\x2b\x19\x5a\xff\xb5\x90\xc9\xb6\xb6\x36\x74\xec\xd8\x31\xb6\x47\xe7\x7d\xfc\x77\x6e\x55\xff\x53\x53\x50\xff\xcd\x40\xa7\xee\x03\x99\x28\xc2\xea\xea\xea\x16\x9b\xf1\x78\x9c\xce\xcc\xcc\x90\x9b\x37\x6f\xaa\xb7\x6f\xdf\x56\x17\x17\x17\xa9\xa2\x28\x3b\xda\xd9\x42\x14\x8b\x45\x96\x65\x1a\x08\x04\x68\xf3\xee\xe6\xc8\x82\x5d\xba\xe3\x8e\x71\xfb\xcd\x22\xe3\x28\x87\xd7\xcb\xd8\xd5\xe1\x37\xbc\x62\xa6\x5a\xbb\xae\xbb\xf6\x96\xa7\xb9\x21\xa9\xaa\x2a\x04\x83\xc1\x9d\xc8\x5e\xb9\xf4\x02\x4c\x6b\x6b\x2b\x3e\x74\xe8\x10\xd3\xd7\xdc\x59\x77\x78\xd1\xf1\x9d\xa7\x66\xac\x3f\xd4\x4b\xb8\xce\x20\x31\x1e\x4e\xc5\x55\x52\x97\xed\xf3\xa5\xa5\x25\x25\x99\x4c\xd2\xed\xf4\x54\x62\x0b\xa0\x04\x51\xcc\xbb\xce\x9d\xc7\xe3\x71\x10\x04\x41\xf6\x36\xd6\x07\x66\x1d\xa9\x3b\xae\xb8\xb6\xcf\x9c\xd2\xd8\x8b\x09\x64\xf6\x07\x53\xc4\xba\xe2\xda\x81\x2e\xbf\xe1\xdf\x58\xb8\x2a\xb3\x79\x8f\x67\x6e\x77\xcf\x9e\xa4\xc9\x64\xa2\xaa\xaa\xa2\x54\x2a\x85\x08\x21\x15\x11\x45\x86\x61\xc0\xed\x76\xa3\x9e\x9e\x1e\x34\x38\x38\xa8\xe9\xf5\xb6\xd7\x3f\x19\xac\xf9\x8f\xcf\x4c\xda\xff\xbb\x27\xc2\x3f\x85\x29\x62\xb3\x76\x5d\x71\xee\x91\x90\x41\x99\xd2\xb7\xd6\x8c\x4f\x4f\x4f\xd3\x4c\x20\xed\x81\x08\x67\xc1\x64\xb5\x48\xb6\x90\xae\xfe\xfe\x7e\xe8\xed\xed\x35\x69\x08\x3e\x78\x74\xd2\xf6\xdd\xd6\x75\x5d\x1f\xca\xff\x22\x30\x7b\x4e\xf3\xca\x8d\x00\x14\x04\xc2\x82\x55\x3c\x33\x5d\x2d\xfc\x72\xc1\x2a\x7e\x11\x63\xe4\x40\x28\x1c\x92\x42\xa1\x10\x49\x26\x93\x50\xf4\xd9\x12\x98\x4c\x26\xa8\xaa\xaa\x02\xb3\xd9\x8c\x1d\x0e\x07\x6b\x22\x9c\xa3\x3e\xcc\x3f\xd9\xba\xae\x7f\xb9\x3e\xc4\x1f\x63\x09\x18\x8a\xa3\x85\xd9\xa2\x89\xac\x1a\xf8\x59\xdf\xea\x33\xd7\xfd\x33\xd7\x7f\xfb\xdb\xdf\x96\x2a\x47\x39\xc2\x59\x12\x53\xd6\x41\x97\x93\x9e\x9e\x1e\x3c\x30\x30\x60\xc0\x80\xfa\x0e\xdc\x35\xfd\xa7\x81\xbb\xa6\x13\x98\x16\x19\xcc\x1f\x80\xf3\x64\xe3\xb3\x05\x10\x23\x3a\x65\x7c\xd5\x28\x8d\x86\xf4\xf2\xed\xb8\x56\xf5\xa5\x34\x24\xa0\x30\x44\xa0\x00\x44\x43\x90\x9e\x97\xb1\xc3\x28\xb2\x1e\x9b\xa0\x69\xab\x49\x68\xf6\x59\x05\x4d\x07\xa6\xa0\x47\x90\xa7\xb7\x8c\x0d\x40\x00\x8b\x96\xf4\xd9\x77\x7b\xd6\x5e\x7a\xef\xbd\xf7\x84\xbc\xb8\xd2\x7d\x49\xa9\x0f\xea\xb6\x5d\x56\x1e\x1d\x1d\x25\x89\x44\x22\x71\xe8\xd0\xa1\x2b\x97\x1b\x62\x7f\xb5\x62\x4e\x4f\x1c\x9d\xb4\xbd\x6a\x14\x59\xcb\x96\x4c\x17\x30\xab\x8d\xc6\xc5\x00\xf0\xf6\xa4\xa6\xcf\x2e\x68\xfa\xb2\xf7\x8a\xcb\x59\xf0\xd6\x8a\x07\xee\x52\xe7\x79\x7a\xfc\xa6\xf4\xc2\xa7\x2d\xe1\x7f\x44\x08\x61\x96\x7d\xf0\x7f\x2c\x51\x96\x28\xe6\x61\xb6\x90\xb7\x70\x38\x8c\x16\x17\x17\x95\xda\xba\xda\x50\xda\xc2\x8e\x8f\xd7\x08\xe3\x5a\x15\xbb\xaa\x13\x1a\xef\xc6\xb7\xa5\x19\x70\x86\x09\x50\xc8\x11\xf0\x9c\xa5\x02\x4c\x41\x79\x29\xe4\xbe\x73\xa5\x79\x9b\xb8\x32\x1f\xd1\x64\xc3\xfb\xc5\x18\x89\x25\xd2\xc5\x5d\xd1\x0f\x3f\x69\x09\xff\x8d\xa0\x51\xcf\xdd\xbd\x7b\x37\x3a\x3a\x3a\x9a\xad\xbe\x6c\x39\xee\x99\x70\x96\x25\x8a\x79\x07\x14\xdd\x47\x00\x1b\xa1\xd1\xa9\xa9\x29\x62\x30\x18\x62\x26\x87\x75\x6e\xde\x2e\x5e\x9d\xb3\xa7\xfc\xe6\x14\x5b\x67\x16\x19\xdb\x06\x4f\xca\xdf\xa5\xb6\xd9\x37\x50\xee\xba\x3c\xa6\xd0\x24\x85\x6c\xc5\x17\x67\x95\x60\x20\xb7\x5d\xc9\xab\xbf\xee\x0c\x7e\x7f\xde\x9a\xfa\xb1\x4a\xc9\xe8\xd5\xab\x57\xe3\x43\x43\x43\x59\x60\xc5\x84\xb3\x14\x66\x3b\x27\x5d\xb1\xd4\xd6\xd6\xc2\x13\x4f\x3c\xc1\x9a\x4c\x26\x0b\x02\xd4\x5e\x17\xd5\x3e\xd7\xe7\x33\x9e\x6c\x0c\xf1\xed\x0c\x45\xb8\x54\x17\xa2\x90\xf1\xe7\xa8\xb4\x3b\x41\x00\xb9\x8f\x8b\xb2\x2d\x70\x13\x43\x41\x62\xa8\x34\xe9\x14\x46\x46\x3c\xf1\x5f\x86\x75\xf2\x39\x00\x98\x59\x5a\x5a\x4a\x0c\x0d\x0d\x91\x48\x24\xf2\xa0\x45\x2a\xc8\xc7\x43\x93\xae\xae\x2e\xbc\x77\xef\x5e\xb6\xaa\xaa\xca\x06\x14\x9a\x8c\x69\xe6\x40\xfb\xaa\xfe\x68\x4b\x40\xdf\xe7\x48\x68\x5c\x9b\xcb\xcd\xb9\xa0\x40\x89\x1c\xe4\xf7\xf2\xbc\xbe\x08\x14\x54\x04\xca\x8a\x39\xed\x9b\xac\x16\x2e\x4d\x57\x0b\x1f\xa7\x35\xf4\x3a\x00\x2c\x04\x02\x81\xd8\xf0\xf0\x30\x79\x90\xe5\xa8\x72\xf2\x50\x2b\x28\x2b\x1d\x1d\x1d\xb8\xb3\xb3\x13\x5b\xad\x56\x03\x00\x38\x81\x42\xbd\x31\xcd\x74\x79\x22\xda\x47\xdc\x31\x6d\x6b\x75\x42\xe3\xb1\xa4\x58\x9b\x56\xc1\x1c\x2a\xd3\x82\x09\x02\x22\xb2\x44\x0c\xeb\xe5\xc0\x9a\x41\x5e\x58\x36\xa7\xc7\x97\xcc\xe9\xe1\x94\x86\x4c\x00\x82\x05\x42\x48\x60\x75\x75\x55\x1c\x1d\x1d\x25\x77\xef\xde\x05\x28\x3d\xb0\x54\x32\xf8\x6c\x8b\x29\xee\x62\xf9\x7c\xa0\x92\xed\x75\xdb\x8a\xcb\xe5\x82\xe6\xe6\x66\x68\x6c\x6c\x64\xf5\x7a\x3d\x0f\x00\x26\x00\xb0\x21\x40\x36\x4c\xc1\xa1\x55\xb0\x43\x27\x63\x9b\x56\xc1\x46\x86\x6c\x6c\x3d\x56\x18\x2a\xa5\x59\x12\x15\x34\x24\x20\xb1\x24\x40\x81\x86\x28\x40\x00\x00\x22\x08\xa1\x58\x28\x14\x92\x66\x67\x67\x95\xd9\xd9\x59\x28\xd3\x95\x2a\xc9\x77\xc5\x98\x7b\x22\x8a\xf7\x2b\x08\x21\xb0\x5a\xad\xe0\x76\xbb\xc1\xed\x76\x83\xc5\x62\x61\x8d\x46\x23\x66\x59\x96\x45\x08\xb1\x99\xed\x26\xb9\x17\x83\x10\x22\x00\xa0\x48\x92\xa4\x44\xa3\x51\x25\x10\x08\x90\xb5\xb5\x35\x58\x5e\x5e\x86\x78\x3c\xbe\x5d\x1e\xef\x89\x04\x56\x82\xf9\x5a\xba\xd8\xbd\x88\xdd\x6e\x2f\xf9\x1f\xa8\x1e\x94\xe0\x3d\x6c\xc1\x65\xce\x2b\xc1\xff\x3f\x2d\xf9\x5b\xf0\xb6\x73\x62\x59\x29\xf7\x56\xef\x6b\xe9\xf9\x3e\x30\x3b\x2e\x3d\x3f\x6c\xcc\xff\x01\x1e\x70\x67\x94\x89\x55\x05\x4a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x11\x5f\x41\x78\x79\x1c\x00\x00") -func web_uiStaticAppleTouchIcon72x72PngBytes() ([]byte, error) { +func web_uiV1StaticAppleTouchIcon72x72PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticAppleTouchIcon72x72Png, - "web_ui/static/apple-touch-icon-72x72.png", + _web_uiV1StaticAppleTouchIcon72x72Png, + "web_ui/v1/static/apple-touch-icon-72x72.png", ) } -func web_uiStaticAppleTouchIcon72x72Png() (*asset, error) { - bytes, err := web_uiStaticAppleTouchIcon72x72PngBytes() +func web_uiV1StaticAppleTouchIcon72x72Png() (*asset, error) { + bytes, err := web_uiV1StaticAppleTouchIcon72x72PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/apple-touch-icon-72x72.png", size: 7289, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-72x72.png", size: 7289, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticAppleTouchIcon76x76Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x5f\x1f\xa0\xe0\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x4c\x00\x00\x00\x4c\x08\x06\x00\x00\x00\xc7\x97\x51\x2b\x00\x00\x1f\x26\x49\x44\x41\x54\x78\x9c\xed\x7c\x79\x70\x5b\xc7\x99\xe7\xaf\x1b\xef\x01\x0f\x07\x01\x10\x20\x48\xf0\xa6\x48\x8a\x14\x49\x89\xa2\x2e\x4b\xb6\x15\x5b\xbe\x64\x5b\x9a\xd8\x1e\x27\x93\xcd\x1e\x55\xa9\x6c\x65\x6a\xcf\xa9\xd9\x54\xca\x35\x7f\xa4\xb2\x53\x53\xbb\x99\xa9\xdd\xd4\x26\x95\x64\x77\x6a\xbc\x99\x4c\x36\x33\xc9\x78\x22\x27\x9e\xd8\x8e\x65\xc7\xd7\xc8\xb6\x4c\xdd\x12\x75\x92\xe2\x25\x8a\xa4\x48\x10\x04\x71\xe3\x01\x78\x47\xf7\xfe\x81\x83\x0f\x20\x40\x51\x87\x6b\xfe\xc9\xc7\x7a\x7c\xe8\xeb\xeb\xfe\xbe\xd7\xfd\xeb\xaf\xbf\xee\xf7\x08\x00\x8a\x55\x62\x65\xe1\x72\xba\x5d\xfa\x7a\x54\x5e\xb6\x1a\xaf\x8d\xd4\x71\x2f\xed\xb8\x27\x5e\xe4\x3e\x56\xfc\x3b\xfa\x1d\x6d\x8c\x3e\x8b\x1e\x57\x8d\x27\x05\x00\xb3\xd9\x7c\xaf\x75\xde\xcf\x36\xaf\xcb\xcb\x38\x24\x59\x85\xdf\x95\x70\xa7\x9c\x71\xb5\x3c\x6b\x2a\xa6\x94\xc2\xeb\xf5\xc2\xef\xf7\xc3\xeb\xf5\xc2\xeb\xf5\x52\x97\xcb\x45\x4d\x26\x93\x40\x41\xa8\xa0\x13\x33\xe5\x10\x00\x80\x51\x68\x1a\xe5\x0a\x03\x67\xd9\x6c\x56\x8b\xc7\xe3\x2c\x12\x89\xb0\x60\x30\x88\xa5\xa5\x25\x84\xc3\xe1\x4a\x75\x1b\xdb\x50\x2d\xbe\x62\xdb\x36\xca\xeb\x4e\x31\xec\x8e\xc1\x96\x52\x8a\xb6\xb6\x36\x74\x75\x75\xa1\xa9\xa9\x49\xa8\x31\xdb\x6c\x75\x29\xb1\xbb\x21\x61\xde\x5d\x97\x12\xb7\xb9\x65\xa1\xdb\x99\x15\x5a\x2c\x1a\x75\x0b\x3a\x71\x10\x40\x00\xc0\x38\xe1\x9a\x46\xb9\x9c\x16\x59\x28\x2e\xe9\xf3\x51\xab\x3a\xbe\x6c\x57\x2f\x2f\x39\x95\xb3\x2b\x36\x75\x26\x91\x4e\x65\xe6\xe6\xe6\xb4\xc9\xc9\x49\x2c\x2e\x2e\x82\x73\x7e\x27\xcd\xba\x6b\xfa\xcc\x40\xbf\xa6\xa6\x06\xfd\xfd\xfd\xe8\xe9\xe9\x11\xdc\x82\xcd\xd3\xb9\x62\x7d\xb2\x3b\x64\xfb\x7c\x73\xcc\xbc\xdf\xa2\xd1\x26\x02\x52\xb5\x2c\xcf\x37\xac\xfc\x9e\x4b\xe3\x4c\x16\xd9\xec\x5c\x6d\xe6\xd8\x64\x5d\xfa\xcd\x19\x4f\xe6\xe3\x88\x1c\x8f\x8f\x8d\x8d\x69\xd7\xae\x5d\x43\x36\x9b\xfd\x2c\xc4\x29\x52\xf5\x56\xdf\x25\xb9\x5c\x2e\xba\x73\xe7\x4e\x74\x75\x75\x49\x8d\x49\x69\x70\xfb\x82\xe3\x0f\xbb\x43\xd6\x17\x44\x9d\x7a\x6e\x5f\xda\xa8\x9a\x8d\xa4\x73\x64\x05\x16\x18\xab\x97\x8f\x5c\x6a\x4a\xfe\x38\x20\xca\xe3\xe3\xe3\xe3\xca\xf0\xf0\x30\xab\xc6\xe1\x5e\xa9\xbc\x75\x05\xdc\x5a\xef\xb7\x31\x2f\x8c\xf1\xfb\xf6\xed\xa3\xfd\xfd\xfd\xe6\xb6\xa4\x7d\xdf\xbe\x9b\xce\x97\x5a\xa3\x96\x67\xc8\x9a\x1e\x5c\xe8\x33\xeb\x35\x29\x97\x5e\x49\x7d\x25\x71\x86\x00\x03\x94\x69\x6f\xfa\xb5\x93\x1d\xf1\xff\xb5\x68\x91\xaf\x8c\x8c\x8c\x28\x17\x2e\x5c\xa8\xa6\xb8\x4a\xf2\x54\x4a\x5f\x93\xaf\x1a\xe8\xc3\x10\x87\x75\xf2\x30\x00\xb4\xad\xad\x0d\xfb\xf7\xef\x17\x9a\x4c\xae\xce\xcf\x4d\xbb\xff\xb4\x2b\x64\xfd\x22\x05\x11\x0a\x32\xdd\x8e\x56\x87\x1b\x2a\x75\xa2\xb5\x99\x2a\x8d\xd7\xfc\x9d\x11\x9e\xb9\xe6\x4f\xfd\xbf\xe1\x8e\xd8\x5f\xdc\x4a\x86\x16\x8e\x1d\x3b\xc6\x42\xa1\x50\x79\xdb\x37\x8a\xc5\x6b\xca\x98\x0c\x4d\xa9\x34\x16\x48\x85\xe6\x17\xc3\x94\x52\xf2\xe0\x83\x0f\xe2\xa1\x7d\x0f\x3a\xf6\x84\xbc\xff\xf6\xf0\xb5\xba\xbf\xab\x4f\x99\xf7\x10\x10\x5a\x10\x94\x80\x83\x10\x80\x20\x87\x5a\x84\x73\x10\x42\x8a\x8c\x09\x38\xc0\x09\x40\x56\x2b\xcb\xe5\xe7\x20\x9c\xe4\xee\x85\xb2\xe0\xf9\x74\x63\x3c\x5f\x0d\x13\x80\x72\x08\x0d\x09\xcb\xee\xbe\x25\xfb\x1f\xe8\x6e\xf1\x56\xdd\xce\xae\x29\x45\x51\xb4\x60\x30\x48\xf2\x42\x97\xcb\xc4\x50\x59\x76\xa3\x4e\x0a\x1d\x87\x98\xf2\x4a\xd8\xe8\x55\x50\x1a\x77\x38\x1c\xe4\xd9\x67\x9f\xa5\xfd\xcd\x5d\xad\x87\x47\xeb\xfe\xef\xd0\x2d\xc7\xd7\x4d\x9c\x58\x8b\x0f\x3b\x5f\x55\x5e\x17\x25\x1d\x85\x1b\x9a\xc7\x01\x26\x9b\x59\x3a\x6a\xd3\x56\x42\x76\x35\xb8\x62\x57\x97\xa3\x36\x6d\x25\x69\xd1\x13\xaa\xc0\x14\xc2\x89\x49\xe0\xb9\xde\x5a\xe9\xd1\x92\xfc\x3f\x4e\x56\xa7\x11\x0e\x40\xd4\x89\x73\x73\xc8\xf6\x62\x8d\x2a\xb8\x95\x41\xef\xb1\x99\x99\x19\x2d\x9d\x4e\xaf\x2b\xd3\x6d\xe4\x06\x00\x2e\x54\xd1\xec\xba\xe4\xf1\x78\xe8\xd3\x4f\x3f\x2d\x74\xc2\xb3\xfb\xf7\xce\xd7\xfd\xd4\x99\x11\xba\x0d\x0a\x00\xc0\xf3\x7d\x21\x17\x61\xac\x51\xa7\x9c\x05\x6a\x94\xf9\x9b\x9e\xcc\xd8\x82\x33\x3b\xb6\x62\x57\x27\x32\x22\x0b\x70\x20\x09\xf0\x0c\x07\x34\x00\x20\x84\x08\xe0\xb0\x11\xc0\x69\x57\x4c\x4d\xbe\x84\xd8\xdb\x12\xb3\xf4\xb7\x47\xa4\x1e\x4f\x4a\xac\x2f\xa8\x87\xaf\x56\xba\x5a\xe7\xaa\x7c\x74\xd9\xae\x6a\x94\x52\xb3\xd3\xe9\xcc\xe4\x6d\x37\x23\xdd\x0e\xcb\xd6\x90\x80\xea\x00\x57\x11\xf4\x7d\x3e\x1f\x3d\x74\xe8\x90\xb0\x39\xe5\x7c\xe6\xf0\xb5\xba\x9f\x58\x34\xea\xa9\x66\x00\x80\x10\x80\x73\x70\x02\x84\x6d\x5a\xe8\x4a\x63\x72\x78\xc2\x97\xfe\xa7\xa4\x59\xbf\x02\x82\x05\x00\x51\x00\x32\xe7\x5c\xd1\x34\x4d\xcb\x64\x32\xc8\x66\xb3\x0c\x00\x95\x24\x09\x16\x8b\x85\x8a\xa2\x48\x93\x16\x5d\x4a\x5a\x74\xdb\x8d\xba\x4c\xdd\x27\x3c\xd6\xe2\x91\x85\xa1\xbe\x25\xfb\x13\xfd\x01\xfb\x6e\x9b\x4a\x1d\xb9\x2e\x96\x1b\xb2\x3c\x3f\x4c\x39\x01\xae\x35\xc8\xc3\x97\x9a\x92\x3f\xcf\x66\xb3\x72\x20\x10\x28\x97\x8b\x56\x08\x57\x73\x10\x14\xf5\x50\xcd\x0e\xab\x08\x90\x3e\x9f\x0f\x87\x0e\x1d\x12\xfa\x12\xae\x17\x9e\x1d\xf5\xfe\x58\x64\xd4\x51\x0d\xd4\x73\xea\xe3\x58\xb6\xab\x81\x53\xed\xf1\x37\xa6\xeb\xd2\x6f\x33\xf0\x31\x00\x41\x55\x55\xe5\xc5\xc5\x45\x65\x61\x61\x01\xc1\x60\x10\xb1\x58\x0c\x99\x4c\xa6\x52\xdd\x00\xc0\x5a\x5b\x5b\xa9\xd7\xeb\x45\x73\x73\x33\x6d\x6c\x6c\x14\x28\xa5\x4e\x00\x4d\xa2\x4e\xb6\xf6\x07\xec\xbf\xbf\x67\xd6\x79\xd0\xae\xe4\x15\x97\xa7\x65\xbb\x32\xff\xea\x50\xf0\x3f\x28\x26\x76\xec\x83\x0f\x3e\x90\xa7\xa7\xa7\x0b\xbc\x51\xce\xbf\x8a\x22\x2b\xb6\xe7\x76\x86\x6b\x31\xb3\xc3\xe1\xc0\xf3\xcf\x3f\x2f\x6c\x51\x3c\xcf\x3c\x77\xa5\xee\xe7\x22\xa3\x8e\x75\xca\x21\x2d\xe8\xf2\xa7\x9d\xb1\x37\xae\x36\xa4\x5e\xe1\x14\x97\x18\x63\xc1\x5b\xb7\x6e\x29\xa3\xa3\xa3\x6c\x6e\x6e\x0e\xba\xae\xdf\x95\x8b\xc6\x62\xb1\xa0\xab\xab\x0b\xbd\xbd\xbd\xd4\xe7\xf3\xd9\x00\x34\x99\x35\xf2\xc0\x9e\x59\xe7\x57\x76\xcc\xd7\x1c\x10\x38\xa1\x19\x81\xc9\xff\xb0\x63\xe9\xa5\xa8\x4d\x3b\x72\xf9\xf2\xe5\xf0\x89\x13\x27\xee\xb4\x9a\xaa\xb4\x21\xc3\x55\x14\x45\xfa\xdc\x73\xcf\xd1\x1e\xc9\xff\xc0\x1f\x8c\xd4\xbf\x6e\xd1\x48\xdd\x7a\xf9\x67\x3c\x99\xb1\xf7\x7b\xc2\x3f\x4c\x9a\xf5\x0f\x01\xcc\x4f\x4e\x4e\xca\xe7\xcf\x9f\x47\x2c\x16\xbb\xaf\x06\x65\x63\x63\x23\xdd\xbd\x7b\x37\x6d\x6c\x6c\x74\x80\xa3\xbb\x3e\x29\x7e\xfe\xe0\x75\xcf\xd7\x4e\xb6\xc7\x8f\x4c\xfa\xd2\xdf\x0f\x04\x02\xf3\x6f\xbc\xf1\x86\x76\x3f\xeb\x2c\xf4\xb0\x4a\x82\x14\xe3\x1f\x7f\xfc\x71\x3a\xd0\xbe\xb9\xe3\xcb\x17\x1a\xde\xae\x4d\x8b\x3d\xd5\x98\x31\x70\x76\xb2\x23\x7e\xf4\x4c\x5b\xfc\x87\x9c\x60\x24\x14\x0a\x85\x87\x87\x87\x59\x20\x10\xf8\xcc\x2c\x6f\x00\xd8\xbc\x79\x33\xdd\xbb\x77\xaf\x60\xb3\xd9\xea\x4d\x0c\x1d\x3a\x41\x40\x4e\xcb\xb3\xaf\xbd\xf6\x9a\x26\xcb\xf2\x7d\xad\xbb\x92\xc2\x4a\x40\xb0\xa7\xa7\x87\x1e\x78\xf4\x80\xf3\xf0\x35\xef\x8f\x37\x87\x6c\x2f\x96\x1b\x96\x05\x98\xd5\x08\xd7\xde\xdd\xb2\xf2\x37\xe3\xbe\xf4\x8f\x38\xf8\xd8\xc8\xc8\x88\x7c\xf6\xec\x59\x70\xce\x2b\x5a\xcc\x95\xea\xaa\x10\x7f\xbb\xbc\xc5\xdf\x16\x8b\x85\xee\xdd\xbb\x17\xdd\xdd\xdd\x42\x2c\x16\x63\x1f\x7f\xfc\x31\x5b\x5e\x5e\xae\xa8\xac\xb6\xb6\x36\xba\x6b\xd7\x2e\xea\xf3\xf9\xcc\x00\x20\xcb\xb2\x36\x36\x36\xa6\x9d\x3d\x7b\xb6\x12\x9e\x55\xb5\xf4\x81\x32\x80\xab\xa9\xa9\xc1\x17\xbe\xf0\x05\xf3\xd0\x4a\xed\xd7\x9e\x1a\xaf\xfd\x21\xa9\xb2\xac\xd1\x28\xb4\xb7\xfa\x43\xff\xfb\x86\x37\xf3\x23\x45\x51\xa6\x3f\xfc\xf0\x43\x65\x76\x76\xb6\x3c\xdb\x46\x5c\xd4\xf7\x12\x77\xbb\xfa\x00\x80\xf5\xf7\xf7\xd3\x47\x1e\xda\xef\xd8\x33\xe7\xfc\x8f\x5b\x17\xec\x5f\x31\xeb\xd4\x76\xd3\x93\xf9\xf8\x93\xce\xe8\x9f\x4d\x44\x6f\xcd\xbc\xf5\xd6\x5b\x4c\xd7\xf5\xaa\xbc\x8c\x96\x3e\xca\x7e\xe3\xc0\x81\x03\x68\x73\xf8\x7a\x3f\x7f\xb5\xee\x27\x22\xa3\xb6\xd5\x2c\xab\x17\x23\x60\xef\x6c\x59\x79\x79\xaa\x2e\xf3\x97\xe9\x4c\x7a\xea\x37\xbf\xf9\x8d\x6a\x98\xc2\x8d\x54\x8e\x97\xd5\x56\x16\x77\x1b\x77\xdb\x3c\x1e\x8f\x87\x3c\xf5\xd4\x53\xd2\xe7\x66\x6a\xff\xec\x81\x59\xe7\xb7\x2c\xba\xa9\x4e\xe0\xc4\xe5\x95\xc5\xc1\xf6\x88\x74\x60\xb6\x9b\xfc\x5a\x07\x4b\x2e\x2e\x2e\x56\xe5\x55\xe8\x72\x6b\xae\xd6\xd6\x56\x74\xb4\x77\x38\x1e\xbe\xe1\xfe\xa6\xa4\xd2\x3a\x70\xe4\x7c\x4e\x85\x3b\x72\xc3\x71\xb8\x23\xf6\xda\x84\x2f\xfd\x72\x3a\x93\x9e\x7e\xeb\xad\xb7\xb4\x70\x38\x5c\x91\xdf\x7d\xbe\x70\x9b\x70\xc5\xab\xbb\xbb\x1b\x16\x08\xfe\xc1\x05\xc7\xd7\x0a\x72\x14\x2e\x8f\x2c\x0c\x6e\x0a\x4b\x87\x7a\x7b\x7b\x85\xf5\x78\x54\xea\xd6\x14\x00\x76\xef\xde\x4d\x7d\x49\xf1\x81\x2d\x4b\xb6\x2f\x16\x6c\xea\x92\x3b\x07\xa6\xbd\x99\x91\x73\xad\x89\xef\x69\xba\x36\xf9\xde\x7b\xef\x15\x94\xf5\x59\xd1\x46\x4d\x90\xaa\xf9\x1a\x1a\x1a\xa8\x45\xa3\xf5\x22\x23\xce\xd2\x71\x02\x10\x0e\x38\x33\x42\x9f\xc3\xe1\x30\xae\x7e\xd6\x7a\x8d\xcb\x22\x29\x00\xb4\xb7\xb7\x53\x5f\x9d\xcf\xb1\xf7\xa6\xf3\xeb\x84\x13\x81\xe7\x97\xba\xc6\x4b\x36\xeb\xf1\xf7\x7b\xc2\xff\x83\x13\x5c\x3b\x71\xe2\x44\x26\x3f\x0c\x8d\xfc\x68\xd9\x55\x1e\xb7\x91\x3c\xe5\x0d\x5e\x8f\x57\xb9\x80\x6b\xf2\x65\xb3\x59\x26\x9b\xf5\x64\x4c\xd2\x03\x9c\x10\x70\x52\x90\x27\xb7\xbe\x0d\xd4\x64\x27\x50\xd9\xb8\x2d\xf2\x2a\x67\x0a\x00\x18\x1a\x1a\xa2\x1e\x59\x18\xea\x5c\xb1\x1e\xcc\xad\x39\xf2\x6b\x50\xb2\x7a\x7d\xd2\x19\xfd\x99\x2c\xea\xc7\xa7\xa7\xa7\xe3\xa3\xa3\xa3\x65\x72\x55\x7c\xca\x95\x84\xaf\x94\x67\x23\xbd\xb4\xda\x8c\xbb\x6e\xdc\xe2\xe2\x22\x18\x78\xe0\x58\x77\xe4\xaf\x35\xca\x14\x00\xc5\x2e\x76\xa5\x31\x75\xec\x96\x4b\x39\x1e\x08\x04\xb4\xf5\x78\xad\x59\x7c\x7b\xbd\x5e\xd4\xd7\xd7\x4b\xdb\x27\x1d\x5f\xa5\x20\x42\x25\x0f\x41\xa0\x26\x3b\x3d\xd6\x20\xff\x3c\x93\xc9\x04\x8f\x1f\x3f\xbe\x01\xf9\xee\x88\x36\xaa\xd8\x3b\xe1\x01\x00\x18\x1d\x1d\x45\x5f\x5f\x5f\xf4\x86\x07\x3f\x7d\x65\xe7\x52\xa4\x37\x68\x7f\xda\xa2\x11\xdb\x6c\x6d\x66\xe4\x86\x37\xf3\x0a\x07\x9f\x31\x98\x16\x15\x79\x15\x00\xae\x48\xbd\xbd\xbd\xd4\xac\x53\x7f\x4f\xd0\x76\xa8\xf2\x3a\x91\xe3\x54\x7b\xfc\xef\x39\xc1\xf8\xb9\x73\xe7\xb4\x4c\x26\x73\xa7\xb8\x75\xc7\x1e\x82\xfb\x45\x9a\xa6\xe1\xe8\xd1\xa3\x38\x74\xe8\xd0\x0c\x71\xbb\xff\xf6\xc4\xa6\xd8\x51\xe4\x74\x10\xd5\x34\x2d\x74\xfc\xf8\x71\x65\x61\x61\x61\xdd\xb6\x15\xbc\x15\x00\xc0\x08\x21\xb4\xbb\xbb\x5b\x68\x8f\x48\x8f\x4b\x1a\xad\x23\x06\x57\x71\x81\x56\xec\xea\xec\x8c\x27\xf3\x66\x22\x91\x88\x5f\xbb\x76\xed\x76\x6e\xeb\x4a\x8b\xdc\xdb\xba\xba\x0d\xf1\x1b\x31\x5e\xd7\x8b\x5f\xc3\x3f\x99\x4c\xb2\x23\x47\x8e\xb0\xde\xde\xde\x70\x63\x63\x63\x58\x10\x04\x44\xa3\x51\x8c\x8e\x8e\x22\x95\x4a\x95\x7b\x2d\xd6\xf0\x2a\x99\x11\x7c\x3e\x1f\x2c\x16\x8b\xd4\x75\xc3\xfa\x2c\xe1\x24\xe7\xfc\xe3\xa5\x8e\x9b\x2b\xfe\xd4\xbb\x9c\x60\xe6\xd2\xa5\x4b\x5a\x19\xd3\x75\xdd\xd8\x15\x1a\x52\x9e\xbf\x3c\x5c\xcd\xaa\xaf\x14\xb7\x6e\x99\x81\x81\x01\xda\xd6\xd6\x26\x48\x92\x84\x6c\x36\x8b\xa9\xa9\x29\x76\xfd\xfa\x75\x76\xfd\xfa\xf5\x62\xde\x81\x81\x01\xda\xd7\xd7\x27\x38\x1c\x0e\x81\x73\xce\x6e\xdd\xba\xa5\x5d\xb8\x70\x81\xae\xac\xac\x94\xf0\x2a\xc1\xb0\xd6\xd6\x56\x98\x38\xf1\xb4\x46\xa5\x7d\x20\x39\x77\x72\x8e\x72\x3e\x26\x9d\x42\x1b\xf7\xc9\x6f\xa9\xaa\x1a\x9f\x9c\x9c\x84\x81\x51\xc9\x53\x58\x27\x4c\xab\xc5\x39\x9d\x4e\xf8\x7c\x3e\x38\x1c\x0e\xaa\xaa\x2a\x62\xb1\x18\xbd\x75\xeb\x56\xb9\xf2\xab\x96\xaf\x94\x6e\xb5\x5a\xf1\xcc\x33\xcf\x08\x1d\x4e\x7f\xcb\xf6\x05\xc7\x57\x3d\x41\xa1\x3b\x64\x57\xaf\x5e\x7c\xb0\xed\x6f\x7b\x7a\x7a\x02\xef\xbc\xf3\x0e\xd3\x75\x9d\x3e\xf5\xd4\x53\xd8\xd2\xb8\xa9\x69\xef\x4d\xe7\x37\xda\x26\xa5\x47\x32\x22\x0b\x5f\x6c\xae\xfd\x51\xfb\xf3\xed\x6f\x7c\xf0\xe1\x07\xca\xcc\xcc\x0c\xf2\x8a\xa5\x25\x18\xd6\xd2\xd2\x22\xb8\xd3\x42\x8f\x5d\xa1\xfe\xe2\x40\x24\xab\x5e\xcd\x80\x53\x19\x97\xcd\x6c\x6c\x76\x7a\x56\xc9\x3b\xfa\xee\x99\x3a\x3b\x3b\xe9\xd0\xd0\x10\xad\xf3\x78\x25\x8b\xcc\x9a\x84\x2c\xf7\x73\x4a\x32\x59\x1b\x99\x55\x04\x1e\x9d\x9a\x9a\x52\xce\x9e\x3d\x8b\x64\x32\x79\xc7\xf5\x1d\x38\x70\x40\xe8\xb6\x37\xf6\x7f\xe9\x5c\xfd\x5b\x36\x85\xb6\x00\x40\xd7\xb2\x15\x7d\x01\xfb\x57\x8e\xec\x20\x9f\x3f\x70\xe0\xc0\x64\x2c\x16\x43\x77\x4b\x87\xff\x0b\xe7\xeb\xdf\xac\x4b\x09\x43\x20\x00\x4f\x13\x34\xc6\xcd\x8f\x8b\x9b\xc9\x1f\xa9\x8f\x3c\xf2\xd7\xc1\x60\x50\x93\x65\x19\x28\xef\x61\x5e\xaf\x57\x68\x5c\xb6\xec\x2c\xd9\x64\xe5\x05\xbf\x39\xc1\xac\x3b\x73\x1e\x04\xa1\xbc\xc6\x37\x02\xde\xeb\x2e\x98\x0f\x1e\x3c\x48\x3b\x5b\xda\x3d\xbe\x19\xe5\x6b\xde\xcb\xa9\xaf\x8a\x19\xde\x0d\x70\x0a\x10\x70\x02\x39\x55\x6b\x3a\xe6\xea\xee\xfc\x5e\xe7\x97\x3a\x8f\x7f\xf2\xc9\x27\xca\xc4\xc4\xc4\x86\x95\xe6\xf3\xf9\x68\x4b\x4b\x8b\xf4\xd0\xa8\xf3\x4f\xed\xaa\xa9\xc5\xe8\x08\x76\x65\x85\x9e\x3d\xb3\x35\x2f\x25\xbb\x3b\xfe\x18\x80\xd6\x13\xb0\x7d\xd9\x2b\x0b\x43\x05\x53\x20\xff\x9f\xee\xbd\xe9\xfc\x93\xab\x8d\xa9\xd7\x36\x6f\xde\x1c\xbc\x78\xf1\x22\x00\x03\xe8\x7b\x3c\x1e\x98\x4c\x26\xc1\x9b\x12\x07\x8a\x88\x45\x56\xe1\x9e\x03\x58\x74\x66\xcf\x71\xce\x0b\xee\xde\x75\x5d\x42\xeb\x10\x13\x04\x81\x3e\xfd\xf4\xd3\xb4\xa3\xb6\xb1\xa7\xf3\xa4\xfc\x53\x29\xa1\xef\x5e\xed\xd0\x79\x47\x33\x27\x36\xc7\x8a\x76\xc8\x11\xd6\x0f\x2e\x75\x99\xff\xfc\xc0\xa3\x07\xbe\x43\x29\x95\xaf\x5f\xbf\x6e\xac\xbb\x6a\x7d\x4d\x4d\x4d\x20\x20\xce\xfa\xa4\x79\x67\xe9\xb4\x95\x53\x47\x43\xc2\xbc\x1b\x80\x03\x80\xec\x4e\x0b\x03\x64\xcd\x26\x28\x87\x4d\x35\x35\x89\x3a\xa9\x77\xbb\xdd\xc1\x42\x6c\xa1\x87\x31\x97\xcb\x45\x09\x21\x52\x6d\x5a\xe8\xe0\x15\x8c\x2f\x0e\xce\x56\xec\xea\xb5\x44\x22\xa1\x19\x66\x93\xa2\x12\x50\x19\x5f\x50\x16\xcf\x00\xd0\x3d\x7b\xf6\xa0\xb5\xa1\xc9\xdf\x79\x42\x7e\xc5\x9a\xd4\x07\x4b\x72\x93\xd5\x25\x58\xfe\x26\x34\x4c\x29\xff\x55\x17\x49\xea\xe1\x87\x1f\xfe\x41\x20\x10\x50\x62\xb1\x58\xb1\x8e\xda\xda\x5a\xda\xd5\xd5\x05\xab\xd5\x0a\x55\x55\x71\xf3\xe6\x4d\x2c\x2e\x2e\x42\x10\x04\x00\xa0\x29\xb3\x1e\x75\xa7\xc5\x72\x7d\x21\x21\xe9\x51\x42\x08\x05\x80\xa0\x43\xb9\xc1\xd7\x2c\xd5\x09\x62\x92\x1a\x50\x4c\x3c\x63\x88\x2c\xce\x92\xd4\xe5\x72\x01\x80\xe4\xcc\x08\x7e\x52\x61\xcf\x39\x23\xb0\xb8\x6c\x66\x81\x48\x20\x52\xc9\x6d\xb2\x91\x75\x1e\x2b\xd4\x33\x30\x30\x20\x35\x4c\x28\x5f\x97\x92\xfa\xe0\x1a\x6f\x11\x2f\x77\x21\x71\x10\x0e\x34\x8e\x67\xbf\x15\x6b\xb0\xbf\xbf\x6f\xdf\xbe\x91\xdf\xfe\xf6\xb7\x20\x84\x60\xcf\x9e\x3d\x18\xda\xb6\xdd\xb6\x29\x62\xdd\x5f\x9f\x34\x0f\xc6\x6b\xb5\xd9\xc9\x81\xed\xef\x4e\xcc\xdd\x88\xde\xbc\x79\x13\x20\x48\x9e\x6b\x49\xbc\xd1\x14\xb3\x0c\x51\x83\x3c\x0c\x9c\x5d\xf1\x27\x7f\x0b\x40\x06\xa0\x4c\xd5\xa5\xdf\x9d\x77\x65\xff\x75\x6b\x4c\xda\x82\x7c\xed\x8c\x70\x36\xbc\x29\xf6\xf7\x20\x08\xe7\xbd\x17\x45\x4b\x9f\x01\x80\x24\x49\x14\x1c\x66\xab\x4a\xdd\xc6\xad\xab\xc2\xf0\x94\xcd\x2c\xca\xc0\x93\x79\xf0\xbd\x5b\xc0\x67\x3d\x3d\x3d\xd4\xc4\x49\x9d\x77\x5e\xfd\x37\x64\x8d\x72\x50\x21\x9c\x83\x06\xca\xe0\xf0\xcc\xab\x5f\x69\xed\x6e\x1d\x03\x20\x6f\xdb\xb6\x8d\xee\x1a\x1c\xf2\x1c\xbe\x5a\xf7\xf2\xa6\xb0\xf4\x62\xc1\x06\xda\x33\xab\x5d\x7a\x6d\x90\xfe\x0b\x8b\xc5\x32\x9e\x4c\x26\x93\x37\xbc\xf8\xc5\x3b\x7d\xe1\xfa\x7d\x33\xce\x17\x6b\xb2\x26\x4f\x4c\xd2\xc3\xa7\xda\x63\x47\x66\x6b\xb3\xbf\x5e\x59\x59\x91\xc7\xc7\xc7\xd9\xbe\x7d\xfb\xc6\xdf\xd8\x16\x7a\x69\x68\xde\xf1\x87\x2d\x31\xa9\x3f\x2d\xea\xc9\xcb\x8d\xa9\xa3\xb7\x5c\xd9\xbf\x4b\xa5\x52\x71\xe3\x06\x4a\x11\xf4\x2d\x16\x0b\x28\x87\x24\xea\xc4\x56\xba\x6b\x96\x9b\x26\xd3\xa2\x1e\x07\xa0\x24\x93\xc9\xbb\xd4\x55\x8e\x1a\x1b\x1b\xa9\x35\xc1\x86\x4c\x0a\xaf\x2f\x2a\xc4\xa0\xaa\x8a\xdb\xec\x79\x1d\xd6\xac\x68\xfb\xe9\x66\xb3\x63\x60\x60\x20\xb3\x6b\xd7\x2e\xf3\xb6\x05\xc7\xd7\x36\x85\xa5\x17\x8b\xdb\xe6\x20\xa8\x4d\x8b\x83\x8f\x4c\xbb\xbf\x9d\xec\xd3\xbf\x7a\xf2\xd4\xc9\xe4\xd0\xd0\xd0\xe4\x75\x1f\xff\xce\x84\x4f\x7e\xdd\xc4\x88\x47\xa3\x3c\xc4\xc1\x27\x55\x55\x9d\xff\xe8\xa3\x8f\x58\x28\x14\x62\x2e\x97\x2b\xde\xd7\xd7\xf7\xf1\xe9\xb6\xf8\xf8\x69\xc4\x3d\x00\x14\x00\x81\x74\x3a\x1d\x3a\x7a\xf4\xa8\xa6\x69\x5a\xb1\x83\x18\xf7\x25\x41\x39\x11\x08\x08\x25\x46\x08\xe3\xb9\xfd\x45\x9d\x42\x21\x84\x94\x5b\xd7\x40\x29\x00\x1b\xc3\xc6\xb8\x62\xbc\xc7\xe3\xa1\x62\x98\x75\x80\x1b\x9e\x0a\x21\x30\x98\x7c\x39\x45\xe5\xff\x71\x4e\x8a\xbb\xdb\x62\x86\xfb\x01\xd8\xf6\xee\xdd\x0b\x41\x10\x6c\xed\x11\xe9\xe9\x02\x58\xe7\x6e\xb9\xff\xad\x11\xcb\x23\x94\xc3\x23\x08\x42\xf2\xf5\xd7\x5f\xd7\xf6\xed\xdb\x37\xd3\xd2\xd2\xb2\xc0\x28\xa5\x8c\x31\x76\xf3\xe6\x4d\xe5\xcc\x99\x33\x88\xc5\x62\x00\x80\xe3\xc7\x8f\xb3\xe9\xe9\xe9\xe4\x96\x2d\x5b\x26\xeb\xea\xea\xa8\xaa\xaa\x98\x9f\x9f\x67\x97\x2f\x5f\x36\x6e\xff\x01\x46\x0c\x03\x40\x4b\x07\x83\xd1\x0e\xe3\x05\x81\x2b\x2d\x79\xca\xc3\xd5\xdc\xc9\x45\xf0\xe7\x84\x80\x90\x82\x81\x67\x9c\xca\xf3\x55\x16\xaa\xe6\x86\x27\x97\x3b\x82\x91\x33\x1e\x73\x80\x2e\x68\xc5\x16\xf3\x92\x7e\xaa\x99\x38\xe3\x04\xe6\x9a\x9a\x1a\xc4\x62\x31\xe4\x31\x4f\x31\xec\x2f\x18\xdb\x05\x00\x74\x61\x61\x01\x4b\x4b\x4b\x90\x24\x89\x71\xce\x91\xdf\x3c\x59\x23\x97\xd1\x0e\x63\x9c\x70\xc6\xc0\x19\xaf\x80\xe1\x82\x4e\xcc\x9c\xf3\x7b\xf6\x1c\xe8\xba\xce\xb2\x76\xd3\xbc\xd1\x60\x21\x86\xff\xab\xa0\xbf\xaa\x82\xc2\x8e\x76\xd6\x4e\x03\x1c\x50\xa2\x91\x08\xdc\x6e\x77\xe6\x9a\x3f\xf5\x41\x77\xc8\x7a\x80\x80\xc0\xc8\x6f\xb4\x5e\xfe\x98\x81\xc7\xa3\xd1\x28\x6a\x6a\x6a\xb0\x63\xc7\x0e\xb4\xb5\xb5\x09\x66\xd1\x4c\xd3\x99\x34\x9b\x9e\x9e\xd6\x46\x46\x46\x68\xfe\xf0\x1d\xb5\x58\x2c\xd8\xb3\x67\x0f\x7a\x36\x6f\x36\x5b\x89\x59\xd2\x28\xd7\x96\xc3\xa1\xcc\xe9\xd3\xa7\xd9\xfc\xfc\x7c\x89\x0c\x46\x4b\x9f\x32\x02\x4d\x35\x71\x59\xd4\xb9\xad\x60\x0f\x15\xc8\xaa\x52\x27\x0c\x66\xc8\x6d\x94\x54\x95\x42\xa1\x10\xb3\xb6\xb4\x4c\x66\xed\x74\x5e\x4a\xb1\x96\xe2\x40\x22\xab\xfd\xa4\xe4\xdc\x84\x21\x26\x56\x2f\x9c\x04\x20\x9f\x3c\x79\x12\xfb\xf6\xed\x93\x6f\x78\xc8\xaf\x3f\xee\x8a\x0e\x3c\x38\xe3\x7a\x51\xd4\x89\x99\x11\xb0\xd1\x86\xd4\xc9\x53\x1d\xb1\xff\xa3\xeb\x7a\x34\x1c\x0e\xe3\x85\x17\x5e\x10\x7a\x32\xee\xfd\xbb\x26\x6b\xfe\x93\x33\x2b\xb4\x84\xec\xea\xb5\x53\xdd\xb5\xdf\xdb\xb4\x69\xd3\xb5\x37\xdf\x7c\x93\xa5\x52\x29\x76\xf8\xf0\x61\xa1\x57\x6a\x1c\x7c\xec\xaa\xfb\xdb\x0d\x09\xf3\x03\x59\x81\x85\x2f\x36\xd7\xbc\x5c\xf7\xb4\xf7\xaf\x86\x4f\x9d\x90\xaf\x5c\xb9\x52\x82\x61\x00\x40\xd3\xe9\x34\x38\xb8\x92\x36\xeb\x71\xbb\x62\xaa\xe3\x65\xc7\x6c\xec\x8a\xa9\xce\xc4\x89\xe4\x74\x3a\xef\x56\x57\x00\x80\xe9\xe9\x69\xd6\xd2\xd2\x12\x58\xea\x34\xff\xb2\xed\x72\xe6\xbf\x94\xaa\x69\xf5\x11\xad\x4e\xd2\x04\x9c\x70\xa8\x12\x0d\x47\x9a\xc5\xd7\x15\x45\x49\xce\xcd\xcd\x31\x45\x51\x70\xf8\xf0\xe1\xc9\xf3\xcd\x89\xff\x76\xad\x21\xf5\xb6\x3b\x2d\x76\xa5\x2c\xfa\x52\xd2\xac\x9f\xe5\xe0\x63\xe7\xcf\x9f\x57\x1e\x7e\xf8\x61\xda\x93\x71\x1f\x7c\xe1\xb2\xef\x55\xca\x88\x04\x00\xb5\x29\xf1\x81\xb6\x88\xf4\x7b\x47\x86\xf0\xec\xa3\x8f\x3e\x3a\x92\x4a\xa5\xd0\xe2\xaa\xef\xf8\xfd\xb3\xbe\x7f\xb4\x67\x4d\x6d\x84\x00\x42\x96\x7a\x1e\xba\xe1\xfa\x8e\x89\x11\x97\xf6\xc0\x03\xdf\x9e\x9b\x9b\x53\x0a\x9b\xd0\x45\x2f\x82\x2c\xcb\x20\x84\x64\xe2\x16\x3d\xc8\x0b\x47\x6e\x0c\xc0\x62\xd6\x89\xc3\xae\x98\xfc\x4e\xa7\xb3\x92\x97\xb6\xa2\xe7\xd6\x10\x2e\xa6\x4f\x4d\x4d\x21\x9d\x4e\x47\x23\xcd\xc2\xcf\xa3\x8d\xc2\xe9\x55\xaf\x3a\x87\xe1\x14\xd9\xea\x2f\x02\x70\x4a\xb4\xd9\x41\xe9\xfb\x4c\x20\x57\xae\x5c\xb9\xa2\x01\xa0\x4b\x4b\x4b\xec\xe8\xd1\xa3\x4a\x38\x1c\x1e\xcf\x8a\xfc\xb5\x25\xa7\xf2\xfd\xa4\x45\xff\x59\x4a\x4e\x8d\x7c\xf4\xd1\x47\xc9\x48\x24\x02\x67\x8d\xd3\xb1\x67\xd6\xf9\x52\x41\x59\xc8\xd7\x64\x51\x69\xdd\xae\xf9\x9a\x6f\xb4\xb4\xb4\x48\xbd\xbd\xbd\xe6\xde\xa0\xed\x4b\x76\x85\xb6\x01\x58\x9d\x8b\x40\xb0\x63\xbe\xe6\x3f\x4b\x44\xf4\xf7\xf5\xf5\x15\xe5\x29\xf6\xb0\x64\x32\x09\xce\x79\x26\x6c\x53\x67\x37\x85\xa5\x7d\x25\xcf\x39\xa7\x38\xea\x4b\x9a\xfb\x97\xbd\xde\x93\x84\x10\x6a\x38\xb5\x7c\x3b\x0f\x42\x49\x9c\xa6\x69\x18\x1e\x1e\xd6\x9e\x78\xe2\x89\xf1\xd9\x6d\xd2\xb7\x74\x31\xfb\x4d\xef\xac\xfa\x88\xf1\x50\x5d\xd1\x0e\x24\x04\x9a\x85\xc4\x67\x07\xa5\xbf\x4a\x7a\x4c\xff\x10\x89\x44\x42\x97\x2e\x5d\x02\xf2\x80\x1d\x08\x04\xf0\xab\x5f\xfd\x8a\xd5\xd6\xd6\xca\x1e\x8f\x47\x4e\xa5\x52\x58\x5a\x5a\x02\xe7\x9c\xed\xdc\xb9\x93\x02\x70\x38\x33\x42\x47\x71\x16\x29\x1e\x5c\xe3\x70\xa5\x85\x6e\xce\xb9\x0d\x80\x6c\xcf\x9a\xba\x0c\x53\x33\x0a\x99\x45\x9d\x38\x2d\x1a\xf1\x7b\xbd\xde\xf9\x82\x10\x45\x0c\x5b\x59\x59\xa1\x00\x94\x90\x43\x9d\x04\x48\xbe\x6c\xe9\x22\xbc\x39\x66\xde\x33\x5d\x27\xfd\xcc\xe5\x72\x69\xd1\x68\xf4\xae\x71\x6c\x7a\x7a\x1a\x5e\xaf\x37\x39\x34\x34\x74\x72\xbe\xdf\xf2\x52\xb8\x49\xfc\xbc\x77\x4e\x39\xe4\x08\xeb\x9d\x82\xc2\x6d\x9c\x80\x65\xed\x34\x14\xf3\x0b\x23\x2b\x2d\xe6\x57\x75\x33\x39\x9e\x48\x24\xe6\xdf\x79\xe7\x1d\xa6\xaa\xea\x1a\x47\x64\x24\x12\x41\x24\x12\x29\xa9\x83\xb1\x5c\x72\xc4\xa6\x06\xdc\x19\xa1\x0d\x80\xc1\x8a\x21\x08\xd4\x28\xd3\xc8\x39\x4d\xd9\xa2\x2b\x3b\x0a\x52\x93\x9b\x95\x8b\x22\x13\x04\x1d\xca\x74\xca\xcc\xc2\xe9\x74\xba\x68\x21\x14\x67\xc9\x44\x22\xc1\x54\x55\x55\x02\x35\xca\x05\x80\x83\x17\x94\x65\x98\xd9\xdb\x22\xd2\x43\xe0\x31\x47\x73\x73\xb3\x1c\x8d\x46\xef\x56\x5f\x00\x80\x33\x67\xce\xb0\x68\x34\x9a\x7c\xf8\xe1\x87\x47\xb8\x5b\x9c\x95\x6b\xad\xaf\x83\x73\x3f\x61\x70\x72\x02\x0d\x94\x84\x00\x2c\x00\x08\x2c\x2c\x2c\x24\x8f\x1d\x3b\xc6\xee\xc4\xc5\xb3\xb4\xb4\x04\x0e\x1e\x3f\xd9\x1e\xff\x79\x73\xd4\x32\x24\x32\x6a\x2e\xc8\x91\xb4\x68\xe1\x0b\x2d\x89\x57\x00\xc8\x9a\xa6\x29\x33\x9e\xcc\xfb\xa3\x0d\xf2\x70\xdf\x92\xed\xa1\x82\xc0\x8a\x89\x65\x8e\x75\x47\x5e\x06\x41\xe8\xe6\xcd\x9b\x45\xbe\x26\xe4\x86\x0a\x07\x80\xc6\xc6\x46\x22\x79\x6b\x84\xfe\x80\xfd\x45\x8b\x4e\xec\xe5\x8d\xb0\xa9\x26\xcf\x78\xbd\x7c\x54\xb7\x0b\x73\xd7\xaf\x5f\xaf\xe6\xad\xe0\x15\xc2\xe5\xf1\x00\x80\x70\x38\xcc\xaf\x5d\xbb\xc6\x15\x45\x49\x59\xad\xd6\x25\xb3\xd9\x3c\x43\x05\xd3\x75\x10\x32\x9e\xcd\x66\x67\xe6\xe6\xe6\x96\xcf\x9c\x39\x93\x3d\x7d\xfa\xb4\xae\x28\x4a\xb5\xa3\x68\x15\x29\x99\x4c\xf2\xb6\xb6\x36\x1d\x1e\x69\xf1\x86\x37\x13\x30\x71\xb8\xb3\x02\xcb\x4e\x7b\xd3\x17\xdf\xef\x8d\xfc\xcf\x94\x85\x1d\x1b\x1b\x1b\x8b\x8d\x8c\x8c\xf0\xce\xae\xae\xc4\x8d\xba\xcc\x95\xa0\x43\x91\xd3\x66\xa6\xcc\x78\x33\x57\x3e\xdc\x1c\xf9\xc1\x8a\x43\x7b\x23\x14\x0a\x2d\x0f\x0f\x0f\x17\xcf\x0e\x18\xcf\x56\xb0\x1d\x3b\x76\xd0\xdd\xbb\x77\xfb\x9f\x1a\xf7\xfc\x74\x6b\xc0\xf1\x24\xb0\x56\xcc\xd3\xed\xf1\xbf\xfc\xb4\x23\xfa\xd2\x2f\x7e\xf1\x8b\x4c\x3c\x1e\xaf\x66\xc8\x56\xf3\xe9\x57\xf2\xf1\x97\xac\x10\x44\x51\x2c\x62\x5d\xd9\xdb\x1d\x95\x16\xfd\x95\xd2\x8b\x77\xbb\xdd\x4e\x0f\x1f\x3e\x4c\x5d\x2e\x97\x07\x40\x13\x00\x1b\x80\x38\x80\x85\x85\x85\x85\xf8\x7b\xef\xbd\xc7\x14\x45\xc1\xd6\xad\x5b\xb1\x77\xef\x5e\x33\xa5\xb4\x0e\x80\x93\x10\xa2\x71\xce\x43\xa1\x50\x28\xfe\xf6\xdb\x6f\x33\xc3\x46\x4f\xe9\x29\x6a\x4d\xd3\xd0\xd7\xd7\x07\x10\xd4\xf7\x06\x6d\x4f\x90\xf2\x67\x4a\x08\x5c\x69\xa1\xf9\x72\x53\xea\x55\x9d\xf0\xe8\xfc\xfc\x3c\x41\xc9\x5c\xba\x9a\xb3\x42\x7c\xa5\x70\xf9\xb9\x0e\xc2\x72\x64\x8c\x67\x55\xf8\x31\xac\x2d\x6f\xbc\x73\x55\x55\xc9\xf8\xf8\x38\x57\x14\x45\x36\x99\x4c\xcb\x9a\xa6\xdd\x5a\x5e\x5e\x0e\x9d\x3f\x7f\x3e\x7d\xfa\xf4\x69\x5e\x38\x74\x12\x0c\x06\xd9\xc4\xc4\x04\xcb\x66\xb3\x09\x55\x55\x43\xc1\x60\x30\x7c\xf9\xf2\xe5\xcc\x89\x13\x27\xb8\xaa\xaa\xc0\xea\x28\x29\xdd\x97\x0c\x85\x42\x48\xa5\x52\x99\x39\x37\xfd\x58\x16\x59\xd4\xa6\x52\x37\x0a\xd9\xf3\xab\x60\xbb\x42\x9b\xfa\x96\x6c\x5f\x4c\x6f\xd9\xf2\x83\xf3\xe7\xcf\x2b\x9f\xc1\xab\x2a\x1b\x75\x1d\x6d\x68\x85\xa1\xaa\x2a\x2e\x5e\xbc\x88\x8b\x17\x2f\x16\x21\x44\x92\x24\xec\xd8\xb1\x03\x8d\x8d\x8d\xb4\xb0\x6b\x74\xf5\xea\x55\x5c\xb8\x70\xe1\xb6\x6d\x5a\x73\xec\xdc\x6a\xb5\xf2\xfa\x26\xbf\xee\xc8\x9a\x06\x9b\xe2\x96\x9e\xdc\x19\x78\x82\xe2\x9d\x13\xd4\xa5\xc4\xde\xd1\x96\xf4\x2f\xa9\x59\x88\xcd\xcd\xcd\xb1\x72\x1e\xb7\xb9\x08\x72\xbd\xe3\x4e\xca\xdc\xb7\xcb\xe3\xf1\x90\x17\x5e\x78\x41\x78\xa0\xb6\x7b\xe8\xf1\x68\xf3\x1f\xef\x92\xeb\x5f\x6c\x74\xfb\xec\xbe\x9d\x5d\x37\x18\xb8\x9a\x3f\xfc\x57\xb5\x7c\x01\xf4\x8b\xe6\x4f\x22\x91\x20\x03\x03\x03\x6a\xdc\xaa\x63\x70\xd1\xf1\x3c\x59\x5d\xa9\xe4\x88\x00\x66\x9d\xba\x18\x81\x96\xee\x72\x1c\x9f\x9b\x9b\xd3\x65\x59\x2e\x0c\xde\x8d\x80\x7e\x25\xf0\xae\x56\xae\x12\x19\xd3\xd6\xcb\xb7\x86\x2c\x16\x0b\x7d\xfe\xf9\xe7\x85\xc1\x94\xf7\xc5\x17\xae\xf8\xfe\xb1\x29\x61\x7e\xd4\x97\x32\xef\xea\x5a\xb1\x7e\xd1\x95\x15\xfd\x99\x41\xcf\x3f\xad\x84\x57\xd4\x68\x34\x5a\x95\x67\x01\xc3\x0a\x40\xc9\xb3\xd9\x2c\xf1\xfb\xfd\xcc\xec\x71\xa4\xbd\x29\x71\xaf\x47\x16\x9b\xcb\xdf\x3c\x23\x00\xfc\x09\xcb\xd0\x0d\x5f\xf6\x03\x47\xb3\xf7\xd6\xe8\xe8\xa8\x11\x90\x0b\xca\x37\x86\x51\x45\x48\x8a\x52\xec\x21\x55\xc2\xd5\xd2\x8c\xbf\xb9\x81\x5f\xc5\xb8\xc1\xc1\x41\x74\xb6\x75\xd4\x3d\x7f\xc5\xf7\x8a\x55\xa3\x3e\xa3\x3c\x75\x29\x71\xfb\x2d\x57\xf6\x0c\x6d\xac\x99\x30\xc8\xb3\x86\x57\xa5\xa5\x0d\x46\x46\x46\x18\x08\x16\x4e\xb7\xc7\x7f\xc2\x72\x2e\x95\xbc\x84\xb9\xb2\x1c\x80\xc0\x88\xed\xe9\x31\xcf\xf7\xfd\xb5\xbe\xfa\xfd\xfb\xf7\x6f\x04\x77\x2a\x2d\xa5\xee\x27\xdd\xd6\x93\xd2\xd0\xd0\x40\xad\xaa\xa9\xad\x26\x6b\xea\x28\x9c\x42\x2a\xc8\x44\x40\xa8\x3f\x61\xfe\x9c\xd7\xeb\x35\x0b\x82\x50\x95\x97\x71\xe7\xb8\x78\x2d\x2c\x2c\xb0\x85\x85\x05\x39\x64\x57\x8f\x8d\x36\xa4\x3e\x46\xfe\x20\x5d\xe1\x4e\xf2\x6b\x17\x5f\x52\xdc\x79\x60\xd2\xfd\xed\xfe\xbe\x7e\x47\x7e\xbd\x55\xf5\x20\x5a\x85\xeb\x4e\xf3\xdf\xf3\x65\x32\x99\x90\x15\x98\xa6\x98\x78\x92\x70\x83\x0f\x8d\x73\x70\x70\x44\x6c\xda\x12\x00\xe4\x3d\xac\x95\x79\x54\xd1\x24\x8f\xc5\x62\xe8\xed\xed\x4d\x07\x6b\x94\x58\xff\x92\xfd\x59\x91\x51\xb3\x71\x37\x89\x90\xdc\x93\xa9\x4f\x8a\x43\x8c\xf0\x8c\x69\x6b\xfd\xd9\x44\x22\xa1\x85\xc3\xe1\xf2\xf1\x5f\x82\x91\xa8\x8c\x57\xe5\xce\xfd\x6a\xd8\x54\x8d\xd7\xba\x06\x72\x81\x9c\x4e\x27\xfc\xcd\x8d\x54\x60\xa4\xb3\x39\x66\x19\x28\xbe\x08\x05\x82\xe5\x1a\x75\xe6\xd3\xce\xe8\x77\x23\xb1\xe8\xdc\xd5\xab\x57\x59\x35\x5e\xe5\xa0\x5f\xc4\x9d\x54\x2a\x05\xb7\xdb\xad\xd6\xd4\xd7\xc6\x33\x22\xab\xed\x0c\x4b\xbb\x40\x72\xeb\xb0\xdc\x56\xd8\xea\x1b\x65\xad\x51\xcb\xa3\x59\x91\x87\x2d\xdb\x1a\x47\x12\x89\x84\x6e\x50\x5a\xa1\x07\x1b\x85\x2c\xc7\x17\xa3\x9d\x65\xf4\x1e\x12\xac\x55\x4e\x25\x5e\xdc\x10\xae\xa4\xb4\x22\x16\xa5\x52\x29\x6c\xd9\xb2\x25\xbb\x58\xab\xce\x64\x04\xe6\x74\x66\x05\x9f\x4e\xb9\x3e\xe1\x93\x2f\xbc\xd7\x1b\xfe\x0b\x45\xe0\xa7\xce\x9f\x3f\x9f\x0e\x06\x83\xbc\x1a\xaf\x75\x5f\xff\x5b\x5c\x5c\xc4\x96\x2d\x5b\xe4\xb0\x8b\x2d\xfa\x92\xe2\x2e\x4f\x5a\x6c\x34\x66\x34\x48\x46\xda\x23\xd2\x53\xa0\x24\x2b\x0e\x36\x9e\x03\xa0\x05\x02\x81\x0a\xd9\x2a\x1a\x9a\x65\x8e\xa4\x8a\x61\x5a\x96\x56\x3e\xa9\x14\x95\xeb\xf1\x78\x08\xe7\x9c\x68\x9a\x66\xcc\x03\x00\xc8\x66\xb3\x2c\x1a\x8d\xb2\x8e\x4d\x9b\x56\x96\x5c\xea\xb9\x4b\xcd\xc9\x0f\x2e\xb4\x24\x7f\x3d\x5d\x97\x39\xa2\x9a\xf8\xd9\x1b\x37\x6e\x44\x4f\x9f\x3e\x0d\xce\x79\xf9\x83\x2b\xf2\x2a\x3f\x45\x5d\x42\x9a\xa6\x21\x99\x4c\xb2\x4d\x9b\x36\xc5\xe7\x3c\xd9\xc5\x9e\x65\xdb\xe3\x16\xcd\x64\x33\x00\xa5\x11\x38\x49\x6b\xd4\xf2\xb8\x33\x2b\xfa\xf5\x01\xcf\x89\x5a\x9f\x57\x0e\x04\x02\x50\x55\xb5\x2a\xff\x32\xc5\x6d\x24\x5c\xf5\xe1\xba\x5c\x2e\x1c\x3c\x78\xd0\xf4\xd8\x8e\x07\x6b\xfb\xb7\x0e\xf0\xb4\x92\xd5\x97\x97\x97\xd7\xd4\x15\x8d\x46\x31\x37\x37\xa7\x59\xad\xd6\xb0\x24\x49\x73\x9c\xf3\x99\x48\x24\xb2\x78\xee\xdc\xb9\xf4\xa9\x53\xa7\x8c\xcb\xb1\x4a\xf5\xae\x35\x5c\xcb\xaf\x48\x24\xc2\x9d\x4e\xa7\xea\xf4\xd5\xae\xdc\x72\x65\x13\xbd\x41\xdb\x23\x26\x96\x5b\x21\x14\xce\xed\x17\x54\x07\x00\xbe\x94\xb8\x63\xd3\x8a\xf5\x31\xb9\xcd\x7a\xa9\x75\x5b\xf7\x92\xa2\x28\x2c\x14\x0a\x7d\x66\x86\xaa\xc9\x64\x22\xdb\xb7\x6f\xc7\x63\x8f\x3d\x66\xde\xca\x1b\x0e\x3c\x7f\xc5\xf7\x4b\x87\x26\xf8\xf9\xf6\xfa\x13\xc1\x60\x50\xcd\xaf\x77\x4b\xca\xc8\xb2\xcc\xa7\xa6\xa6\xf8\xc5\x8b\x17\xf5\x91\x91\x11\x6d\x74\x74\x94\x85\x42\xa1\x8d\xd5\x97\x57\x5c\x25\x80\x2b\xc6\xcd\xcf\xcf\x93\xf6\xf6\xf6\x34\x77\x5b\x16\x56\xec\x2a\xd9\x1c\xb2\xed\xa1\x9c\xd0\x7c\xc7\xca\xab\xbf\xb0\x13\x44\x60\x53\x4c\x4d\x03\x01\xfb\xbf\x92\x88\x28\x49\x5b\xfd\x57\x5b\x3b\x3b\x32\x8a\xa2\x20\x12\x89\x6c\xd8\xc8\x5c\x87\x8a\xed\xea\xeb\xeb\xa3\x4f\x3e\xf9\x24\xed\x6f\xee\x6a\x7e\x7c\xc6\xfb\xdf\x1f\x9d\x72\x7f\x47\xd2\x4c\xf5\xfe\x84\x79\xef\x72\x8d\x7a\xd5\xd1\xe3\xbf\x3e\x35\x35\xc5\x55\x55\xbd\x6f\x46\x70\x01\xf4\x8d\x9e\x03\x23\xd6\x70\x00\x94\x31\x86\xb9\xb9\x39\xde\xd9\xd9\x99\x4c\x39\xe9\xcd\x98\x4d\x13\x37\xad\x58\x87\x08\x27\x55\xed\x29\xca\x89\xd8\x1c\x37\x7f\x6e\x60\xc9\xf1\x25\xab\xd5\x0a\xd7\xd6\xd6\xe9\xcd\xfd\x5b\x14\x49\x92\x78\x36\x9b\x25\xf9\xb7\x63\x8d\x0d\x2f\x07\xf8\x4a\x33\x27\xa9\xaf\xaf\xc7\xd6\xad\x5b\xc9\x13\x4f\x3c\x21\x6e\x6d\xdd\xdc\xf4\xe0\x92\xf7\x8f\x9e\x19\xf3\xfe\xa8\x29\x6e\x7e\x94\xe4\xde\x30\x06\x05\xa1\x6d\x51\x69\xff\x8d\x26\xf5\xdd\x1a\xbf\x67\x79\x62\x62\x02\x95\x78\xc1\x60\xb0\xa3\x14\x0b\x8d\xb8\x55\x52\xce\xe8\xde\xa9\x44\x25\x2e\x15\xaf\xd7\x8b\xe7\x9e\x7b\xce\x2c\x0a\x62\xe7\xa6\x15\xe9\xdf\x3d\x3b\xe6\xfd\xf7\xa2\x46\xcc\xf9\xf7\x48\x8b\x53\x34\x90\xb7\xdb\xc8\xaa\xcc\x19\x81\x05\xc6\xeb\xe5\x23\xd7\xeb\xe5\x5f\x04\x6a\x94\x2b\x71\x39\x99\x59\x5c\x5c\xd4\x56\x56\x56\x10\x89\x44\x20\xcb\x32\x12\x89\x04\x14\x45\x61\x85\x4f\xcb\x38\x9d\x4e\xd8\x6c\x36\xb8\x5c\x2e\x34\x34\x34\xc0\xef\xf7\x0b\x35\x92\xcd\xd6\x14\xb3\xec\xdc\xb2\x64\xff\x97\x9b\x43\xd6\x17\x45\x9d\x78\xca\x17\x13\x84\xe7\xb6\x53\x16\xdc\xca\xf1\x5f\x0d\x06\xbf\x70\xee\xe2\x85\xd0\x99\x33\x67\x0a\xf2\x00\xa5\x32\x6f\xd4\x6d\x84\x82\x74\x77\x44\x7e\xbf\x9f\x1e\x3c\x78\x50\x90\x24\xa9\xa3\x21\x21\x7e\xf9\xf0\xd5\xba\xaf\x3b\xb3\x82\x7b\xa3\xe5\x39\x38\x4b\x99\xf5\xe9\x39\x77\xf6\xf8\xa2\x53\x39\xb5\xec\x50\x2e\x45\xad\xda\x4c\x46\x60\xc9\xfc\x46\x6d\x51\x28\xc2\x41\xad\x1a\x75\xba\xd2\x42\x5b\x7d\xd2\x3c\xd4\x14\xb3\x3c\xd8\x12\xb5\xec\xb7\xa9\xb4\x83\x18\x8f\xdb\x94\x4b\x91\xef\x13\x9c\x70\x9c\x6b\x4d\x7c\xf7\xa3\xf6\xf0\x37\x5f\x7d\xf5\x55\xc5\xe0\xbf\xbb\x6b\xba\x63\x85\x01\xb9\x8f\x79\x1c\x3a\x74\x88\xd6\xd4\xd4\x34\x59\x15\xfa\xe4\xc1\xeb\x9e\x6f\x74\x84\xa5\xfe\x92\x27\x5d\xe2\x1f\xcf\xc7\x15\xab\x2c\x85\x0a\x0e\x28\x9a\x89\x47\xb3\x02\x8b\x6a\x94\x2b\x00\x20\x30\x62\xce\x7f\x5e\xc6\x4d\x00\x73\x65\xad\x54\xd1\x14\x08\xc0\x01\x9d\x72\xed\x64\x47\xec\x6f\xce\xb6\x25\xfe\xe4\xfd\xf7\xdf\x8f\x4f\x4f\x4f\xdf\xb3\xc2\x4a\x5c\xd4\x58\x6b\xc4\x56\x04\xc4\x6c\x36\xcb\x27\x26\x26\xd0\xd0\xd0\x90\x94\xdc\x8e\x9b\xe3\xf5\xf2\x88\x2c\x32\x73\x73\xcc\xd2\x6d\xca\x7f\x6c\xa8\xfa\xa3\x58\x9b\x40\x00\x93\x89\x13\xbb\x59\xa7\x5e\x49\xa3\xf5\x92\x46\xeb\xcd\x3a\xf5\x9a\x38\xb5\x13\xc0\x54\x49\xc9\xeb\x13\xc1\xb2\x43\x59\x78\x73\x6b\xe8\xbb\x13\xbe\xf4\x4f\x54\x4d\x5d\x3a\x73\xe6\x0c\xbb\x53\x37\x77\x25\x2a\xd8\x61\x46\x8b\xb9\x1c\xf4\x81\xb5\x40\x48\x74\x5d\xc7\xf8\xf8\xb8\x4e\x29\xcd\xd4\x37\x34\x2c\x06\x5d\xea\xa5\xeb\xf5\xf2\xa4\x5d\x31\x35\x79\x64\xd1\x4f\x79\x61\x6f\x31\xef\x4b\xe3\x85\x3b\x40\xca\xff\x0a\xe9\x6b\xfe\xb0\x7a\x37\xf2\x40\x59\x7e\x43\x5c\x56\x64\x99\x13\x1d\xf1\xdf\x7c\xd0\x1b\xfe\xf3\x84\x45\x7f\x4b\x96\xe5\xb9\x77\xdf\x7d\x57\xcb\x7f\x51\x60\x3d\xcf\x46\x35\xc0\x2f\xe9\x38\xb7\x03\xfd\x0d\x91\xdf\xef\xc7\xfe\xfd\xfb\x69\x6d\x6d\xad\x9b\x80\x6c\xf1\x27\xcc\xcf\xee\xbd\xe9\xfc\x62\x7b\x58\xea\xa1\xc8\xcf\x08\x25\x33\x83\x21\x5c\xbc\x17\x1e\x91\x31\xbd\xf0\xcc\x2a\x95\x59\xad\x9f\x93\xdc\x2e\xcf\xe5\xa6\xe4\xc9\x73\x2d\x89\x57\xd2\x66\x36\xcc\x39\x9f\x99\x9c\x9c\x94\x87\x87\x87\x8d\x1f\x30\xaa\x06\xf0\x1b\x06\xfe\xfb\xa2\x30\x00\xa0\x94\x62\xdb\xb6\x6d\xd8\xb9\x73\xa7\x59\x14\x45\x0f\x38\x7a\xea\x52\xe2\x23\xdb\x17\x1c\x87\x37\x2f\xdb\x06\x2d\xda\xea\xee\x73\x55\x32\xf6\xe7\x92\xb8\x82\xc2\xca\xe2\x09\x10\xb1\x6a\xa1\xab\x8d\xa9\xe1\xab\xfe\xd4\x9b\x19\x91\x9d\xe5\x9c\xcf\x46\x22\x91\xf8\xa7\x9f\x7e\xca\x2a\xbc\xf7\x78\xcf\x54\x09\x69\x8c\x76\xd9\x7a\x54\x31\x9f\x24\x49\x74\x70\x70\x10\xfd\xfd\xfd\x66\xb3\xd9\xec\x04\xd0\x26\x6a\xa4\xbf\x23\x22\x3d\xda\x15\xb2\xee\x6e\x89\x4a\x9d\x76\x85\x3a\xd6\xfb\x1c\xd6\x1a\x32\xe0\x3b\x03\x67\x11\x9b\x16\x9a\xf1\xa4\xc7\x26\xeb\xd2\xc3\x01\xa7\x72\x82\x13\x8c\x03\x08\x84\xc3\xe1\xe4\x85\x0b\x17\xd8\xd4\xd4\xd4\x3d\x83\x7b\x35\x32\xf6\x30\xa3\x8d\x62\xdc\xb2\x42\x85\xdf\xc6\xfc\x46\x2a\x51\xe2\xe0\xe0\x20\xed\xeb\xeb\xa3\x4e\xa7\xd3\x06\xc0\x0d\xa0\xc9\xc4\x49\x5b\x6d\x5a\xe8\x69\x48\x58\x06\xea\x52\x62\x8b\x5b\x16\xea\x9d\x59\x93\x5b\x52\x4d\x36\x51\x27\x66\x92\x3b\x6b\xc5\x18\x05\x53\x4d\x4c\x49\x99\xf5\x64\x5c\xd2\xa3\x11\xab\x1a\x08\x3a\xd4\xe9\x25\xa7\x72\x35\x69\xd6\xc7\x39\xf8\x3c\x80\x20\xe7\x3c\x5e\xf8\xbc\xc3\xcc\xcc\xcc\x9d\x2a\xaa\x9a\x8c\x55\x89\x60\xad\x82\x8c\xf7\x02\x55\x8b\x2f\xa4\xa1\x4a\x7e\x00\x40\x7d\x7d\x3d\x36\x6d\xda\x84\x8e\x8e\x0e\xea\x74\x3a\xcd\x84\x10\x1b\x72\x47\xbe\x9d\xf9\xcb\x01\x0e\x1b\xe5\x90\x68\xfe\x3b\x3b\x8c\x70\x85\x11\x64\x40\x90\x04\x90\x44\x6e\x3f\x31\x0e\x20\xa9\xeb\x7a\x66\x69\x69\x49\x9b\x9e\x9e\x66\x33\x33\x33\x28\xbc\x74\x50\xa5\x6d\x77\x03\x39\x55\x79\xdd\x29\x86\xdd\x6d\x03\x8a\x64\xb3\xd9\xd0\xd4\xd4\x04\xaf\xd7\x8b\xda\xda\x5a\xea\x74\x3a\x61\xb7\xdb\x69\x7e\x03\xd7\xe8\xc6\x66\xc8\x9d\x2a\x62\xe9\x74\x9a\x45\x22\x11\x16\x89\x44\x10\x08\x04\xb0\xb2\xb2\x02\x45\x51\xee\xa5\x19\xbf\xa3\x7f\x4e\xba\x97\x1e\x74\xbb\xcd\x8f\x4a\x79\xca\xd3\xd7\x6b\x43\x35\x5e\x77\xb3\xb9\x72\x57\xbc\xca\x87\x01\xbd\x4d\x7c\x35\xe6\xeb\x35\xaa\xda\xe4\x50\x9e\x5e\x49\x80\xf2\x70\x35\x50\x36\x6e\xaa\x54\x7b\x20\xf7\x85\xd7\xff\x07\x1e\x96\xad\x0b\x2f\xb5\x25\x63\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe4\xb2\x09\xb9\x5f\x1f\x00\x00") +var _web_uiV1StaticAppleTouchIcon76x76Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x5f\x1f\xa0\xe0\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x4c\x00\x00\x00\x4c\x08\x06\x00\x00\x00\xc7\x97\x51\x2b\x00\x00\x1f\x26\x49\x44\x41\x54\x78\x9c\xed\x7c\x79\x70\x5b\xc7\x99\xe7\xaf\x1b\xef\x01\x0f\x07\x01\x10\x20\x48\xf0\xa6\x48\x8a\x14\x49\x89\xa2\x2e\x4b\xb6\x15\x5b\xbe\x64\x5b\x9a\xd8\x1e\x27\x93\xcd\x1e\x55\xa9\x6c\x65\x6a\xcf\xa9\xd9\x54\xca\x35\x7f\xa4\xb2\x53\x53\xbb\x99\xa9\xdd\xd4\x26\x95\x64\x77\x6a\xbc\x99\x4c\x36\x33\xc9\x78\x22\x27\x9e\xd8\x8e\x65\xc7\xd7\xc8\xb6\x4c\xdd\x12\x75\x92\xe2\x25\x8a\xa4\x48\x10\x04\x71\xe3\x01\x78\x47\xf7\xfe\x81\x83\x0f\x20\x40\x51\x87\x6b\xfe\xc9\xc7\x7a\x7c\xe8\xeb\xeb\xfe\xbe\xd7\xfd\xeb\xaf\xbf\xee\xf7\x08\x00\x8a\x55\x62\x65\xe1\x72\xba\x5d\xfa\x7a\x54\x5e\xb6\x1a\xaf\x8d\xd4\x71\x2f\xed\xb8\x27\x5e\xe4\x3e\x56\xfc\x3b\xfa\x1d\x6d\x8c\x3e\x8b\x1e\x57\x8d\x27\x05\x00\xb3\xd9\x7c\xaf\x75\xde\xcf\x36\xaf\xcb\xcb\x38\x24\x59\x85\xdf\x95\x70\xa7\x9c\x71\xb5\x3c\x6b\x2a\xa6\x94\xc2\xeb\xf5\xc2\xef\xf7\xc3\xeb\xf5\xc2\xeb\xf5\x52\x97\xcb\x45\x4d\x26\x93\x40\x41\xa8\xa0\x13\x33\xe5\x10\x00\x80\x51\x68\x1a\xe5\x0a\x03\x67\xd9\x6c\x56\x8b\xc7\xe3\x2c\x12\x89\xb0\x60\x30\x88\xa5\xa5\x25\x84\xc3\xe1\x4a\x75\x1b\xdb\x50\x2d\xbe\x62\xdb\x36\xca\xeb\x4e\x31\xec\x8e\xc1\x96\x52\x8a\xb6\xb6\x36\x74\x75\x75\xa1\xa9\xa9\x49\xa8\x31\xdb\x6c\x75\x29\xb1\xbb\x21\x61\xde\x5d\x97\x12\xb7\xb9\x65\xa1\xdb\x99\x15\x5a\x2c\x1a\x75\x0b\x3a\x71\x10\x40\x00\xc0\x38\xe1\x9a\x46\xb9\x9c\x16\x59\x28\x2e\xe9\xf3\x51\xab\x3a\xbe\x6c\x57\x2f\x2f\x39\x95\xb3\x2b\x36\x75\x26\x91\x4e\x65\xe6\xe6\xe6\xb4\xc9\xc9\x49\x2c\x2e\x2e\x82\x73\x7e\x27\xcd\xba\x6b\xfa\xcc\x40\xbf\xa6\xa6\x06\xfd\xfd\xfd\xe8\xe9\xe9\x11\xdc\x82\xcd\xd3\xb9\x62\x7d\xb2\x3b\x64\xfb\x7c\x73\xcc\xbc\xdf\xa2\xd1\x26\x02\x52\xb5\x2c\xcf\x37\xac\xfc\x9e\x4b\xe3\x4c\x16\xd9\xec\x5c\x6d\xe6\xd8\x64\x5d\xfa\xcd\x19\x4f\xe6\xe3\x88\x1c\x8f\x8f\x8d\x8d\x69\xd7\xae\x5d\x43\x36\x9b\xfd\x2c\xc4\x29\x52\xf5\x56\xdf\x25\xb9\x5c\x2e\xba\x73\xe7\x4e\x74\x75\x75\x49\x8d\x49\x69\x70\xfb\x82\xe3\x0f\xbb\x43\xd6\x17\x44\x9d\x7a\x6e\x5f\xda\xa8\x9a\x8d\xa4\x73\x64\x05\x16\x18\xab\x97\x8f\x5c\x6a\x4a\xfe\x38\x20\xca\xe3\xe3\xe3\xe3\xca\xf0\xf0\x30\xab\xc6\xe1\x5e\xa9\xbc\x75\x05\xdc\x5a\xef\xb7\x31\x2f\x8c\xf1\xfb\xf6\xed\xa3\xfd\xfd\xfd\xe6\xb6\xa4\x7d\xdf\xbe\x9b\xce\x97\x5a\xa3\x96\x67\xc8\x9a\x1e\x5c\xe8\x33\xeb\x35\x29\x97\x5e\x49\x7d\x25\x71\x86\x00\x03\x94\x69\x6f\xfa\xb5\x93\x1d\xf1\xff\xb5\x68\x91\xaf\x8c\x8c\x8c\x28\x17\x2e\x5c\xa8\xa6\xb8\x4a\xf2\x54\x4a\x5f\x93\xaf\x1a\xe8\xc3\x10\x87\x75\xf2\x30\x00\xb4\xad\xad\x0d\xfb\xf7\xef\x17\x9a\x4c\xae\xce\xcf\x4d\xbb\xff\xb4\x2b\x64\xfd\x22\x05\x11\x0a\x32\xdd\x8e\x56\x87\x1b\x2a\x75\xa2\xb5\x99\x2a\x8d\xd7\xfc\x9d\x11\x9e\xb9\xe6\x4f\xfd\xbf\xe1\x8e\xd8\x5f\xdc\x4a\x86\x16\x8e\x1d\x3b\xc6\x42\xa1\x50\x79\xdb\x37\x8a\xc5\x6b\xca\x98\x0c\x4d\xa9\x34\x16\x48\x85\xe6\x17\xc3\x94\x52\xf2\xe0\x83\x0f\xe2\xa1\x7d\x0f\x3a\xf6\x84\xbc\xff\xf6\xf0\xb5\xba\xbf\xab\x4f\x99\xf7\x10\x10\x5a\x10\x94\x80\x83\x10\x80\x20\x87\x5a\x84\x73\x10\x42\x8a\x8c\x09\x38\xc0\x09\x40\x56\x2b\xcb\xe5\xe7\x20\x9c\xe4\xee\x85\xb2\xe0\xf9\x74\x63\x3c\x5f\x0d\x13\x80\x72\x08\x0d\x09\xcb\xee\xbe\x25\xfb\x1f\xe8\x6e\xf1\x56\xdd\xce\xae\x29\x45\x51\xb4\x60\x30\x48\xf2\x42\x97\xcb\xc4\x50\x59\x76\xa3\x4e\x0a\x1d\x87\x98\xf2\x4a\xd8\xe8\x55\x50\x1a\x77\x38\x1c\xe4\xd9\x67\x9f\xa5\xfd\xcd\x5d\xad\x87\x47\xeb\xfe\xef\xd0\x2d\xc7\xd7\x4d\x9c\x58\x8b\x0f\x3b\x5f\x55\x5e\x17\x25\x1d\x85\x1b\x9a\xc7\x01\x26\x9b\x59\x3a\x6a\xd3\x56\x42\x76\x35\xb8\x62\x57\x97\xa3\x36\x6d\x25\x69\xd1\x13\xaa\xc0\x14\xc2\x89\x49\xe0\xb9\xde\x5a\xe9\xd1\x92\xfc\x3f\x4e\x56\xa7\x11\x0e\x40\xd4\x89\x73\x73\xc8\xf6\x62\x8d\x2a\xb8\x95\x41\xef\xb1\x99\x99\x19\x2d\x9d\x4e\xaf\x2b\xd3\x6d\xe4\x06\x00\x2e\x54\xd1\xec\xba\xe4\xf1\x78\xe8\xd3\x4f\x3f\x2d\x74\xc2\xb3\xfb\xf7\xce\xd7\xfd\xd4\x99\x11\xba\x0d\x0a\x00\xc0\xf3\x7d\x21\x17\x61\xac\x51\xa7\x9c\x05\x6a\x94\xf9\x9b\x9e\xcc\xd8\x82\x33\x3b\xb6\x62\x57\x27\x32\x22\x0b\x70\x20\x09\xf0\x0c\x07\x34\x00\x20\x84\x08\xe0\xb0\x11\xc0\x69\x57\x4c\x4d\xbe\x84\xd8\xdb\x12\xb3\xf4\xb7\x47\xa4\x1e\x4f\x4a\xac\x2f\xa8\x87\xaf\x56\xba\x5a\xe7\xaa\x7c\x74\xd9\xae\x6a\x94\x52\xb3\xd3\xe9\xcc\xe4\x6d\x37\x23\xdd\x0e\xcb\xd6\x90\x80\xea\x00\x57\x11\xf4\x7d\x3e\x1f\x3d\x74\xe8\x90\xb0\x39\xe5\x7c\xe6\xf0\xb5\xba\x9f\x58\x34\xea\xa9\x66\x00\x80\x10\x80\x73\x70\x02\x84\x6d\x5a\xe8\x4a\x63\x72\x78\xc2\x97\xfe\xa7\xa4\x59\xbf\x02\x82\x05\x00\x51\x00\x32\xe7\x5c\xd1\x34\x4d\xcb\x64\x32\xc8\x66\xb3\x0c\x00\x95\x24\x09\x16\x8b\x85\x8a\xa2\x48\x93\x16\x5d\x4a\x5a\x74\xdb\x8d\xba\x4c\xdd\x27\x3c\xd6\xe2\x91\x85\xa1\xbe\x25\xfb\x13\xfd\x01\xfb\x6e\x9b\x4a\x1d\xb9\x2e\x96\x1b\xb2\x3c\x3f\x4c\x39\x01\xae\x35\xc8\xc3\x97\x9a\x92\x3f\xcf\x66\xb3\x72\x20\x10\x28\x97\x8b\x56\x08\x57\x73\x10\x14\xf5\x50\xcd\x0e\xab\x08\x90\x3e\x9f\x0f\x87\x0e\x1d\x12\xfa\x12\xae\x17\x9e\x1d\xf5\xfe\x58\x64\xd4\x51\x0d\xd4\x73\xea\xe3\x58\xb6\xab\x81\x53\xed\xf1\x37\xa6\xeb\xd2\x6f\x33\xf0\x31\x00\x41\x55\x55\xe5\xc5\xc5\x45\x65\x61\x61\x01\xc1\x60\x10\xb1\x58\x0c\x99\x4c\xa6\x52\xdd\x00\xc0\x5a\x5b\x5b\xa9\xd7\xeb\x45\x73\x73\x33\x6d\x6c\x6c\x14\x28\xa5\x4e\x00\x4d\xa2\x4e\xb6\xf6\x07\xec\xbf\xbf\x67\xd6\x79\xd0\xae\xe4\x15\x97\xa7\x65\xbb\x32\xff\xea\x50\xf0\x3f\x28\x26\x76\xec\x83\x0f\x3e\x90\xa7\xa7\xa7\x0b\xbc\x51\xce\xbf\x8a\x22\x2b\xb6\xe7\x76\x86\x6b\x31\xb3\xc3\xe1\xc0\xf3\xcf\x3f\x2f\x6c\x51\x3c\xcf\x3c\x77\xa5\xee\xe7\x22\xa3\x8e\x75\xca\x21\x2d\xe8\xf2\xa7\x9d\xb1\x37\xae\x36\xa4\x5e\xe1\x14\x97\x18\x63\xc1\x5b\xb7\x6e\x29\xa3\xa3\xa3\x6c\x6e\x6e\x0e\xba\xae\xdf\x95\x8b\xc6\x62\xb1\xa0\xab\xab\x0b\xbd\xbd\xbd\xd4\xe7\xf3\xd9\x00\x34\x99\x35\xf2\xc0\x9e\x59\xe7\x57\x76\xcc\xd7\x1c\x10\x38\xa1\x19\x81\xc9\xff\xb0\x63\xe9\xa5\xa8\x4d\x3b\x72\xf9\xf2\xe5\xf0\x89\x13\x27\xee\xb4\x9a\xaa\xb4\x21\xc3\x55\x14\x45\xfa\xdc\x73\xcf\xd1\x1e\xc9\xff\xc0\x1f\x8c\xd4\xbf\x6e\xd1\x48\xdd\x7a\xf9\x67\x3c\x99\xb1\xf7\x7b\xc2\x3f\x4c\x9a\xf5\x0f\x01\xcc\x4f\x4e\x4e\xca\xe7\xcf\x9f\x47\x2c\x16\xbb\xaf\x06\x65\x63\x63\x23\xdd\xbd\x7b\x37\x6d\x6c\x6c\x74\x80\xa3\xbb\x3e\x29\x7e\xfe\xe0\x75\xcf\xd7\x4e\xb6\xc7\x8f\x4c\xfa\xd2\xdf\x0f\x04\x02\xf3\x6f\xbc\xf1\x86\x76\x3f\xeb\x2c\xf4\xb0\x4a\x82\x14\xe3\x1f\x7f\xfc\x71\x3a\xd0\xbe\xb9\xe3\xcb\x17\x1a\xde\xae\x4d\x8b\x3d\xd5\x98\x31\x70\x76\xb2\x23\x7e\xf4\x4c\x5b\xfc\x87\x9c\x60\x24\x14\x0a\x85\x87\x87\x87\x59\x20\x10\xf8\xcc\x2c\x6f\x00\xd8\xbc\x79\x33\xdd\xbb\x77\xaf\x60\xb3\xd9\xea\x4d\x0c\x1d\x3a\x41\x40\x4e\xcb\xb3\xaf\xbd\xf6\x9a\x26\xcb\xf2\x7d\xad\xbb\x92\xc2\x4a\x40\xb0\xa7\xa7\x87\x1e\x78\xf4\x80\xf3\xf0\x35\xef\x8f\x37\x87\x6c\x2f\x96\x1b\x96\x05\x98\xd5\x08\xd7\xde\xdd\xb2\xf2\x37\xe3\xbe\xf4\x8f\x38\xf8\xd8\xc8\xc8\x88\x7c\xf6\xec\x59\x70\xce\x2b\x5a\xcc\x95\xea\xaa\x10\x7f\xbb\xbc\xc5\xdf\x16\x8b\x85\xee\xdd\xbb\x17\xdd\xdd\xdd\x42\x2c\x16\x63\x1f\x7f\xfc\x31\x5b\x5e\x5e\xae\xa8\xac\xb6\xb6\x36\xba\x6b\xd7\x2e\xea\xf3\xf9\xcc\x00\x20\xcb\xb2\x36\x36\x36\xa6\x9d\x3d\x7b\xb6\x12\x9e\x55\xb5\xf4\x81\x32\x80\xab\xa9\xa9\xc1\x17\xbe\xf0\x05\xf3\xd0\x4a\xed\xd7\x9e\x1a\xaf\xfd\x21\xa9\xb2\xac\xd1\x28\xb4\xb7\xfa\x43\xff\xfb\x86\x37\xf3\x23\x45\x51\xa6\x3f\xfc\xf0\x43\x65\x76\x76\xb6\x3c\xdb\x46\x5c\xd4\xf7\x12\x77\xbb\xfa\x00\x80\xf5\xf7\xf7\xd3\x47\x1e\xda\xef\xd8\x33\xe7\xfc\x8f\x5b\x17\xec\x5f\x31\xeb\xd4\x76\xd3\x93\xf9\xf8\x93\xce\xe8\x9f\x4d\x44\x6f\xcd\xbc\xf5\xd6\x5b\x4c\xd7\xf5\xaa\xbc\x8c\x96\x3e\xca\x7e\xe3\xc0\x81\x03\x68\x73\xf8\x7a\x3f\x7f\xb5\xee\x27\x22\xa3\xb6\xd5\x2c\xab\x17\x23\x60\xef\x6c\x59\x79\x79\xaa\x2e\xf3\x97\xe9\x4c\x7a\xea\x37\xbf\xf9\x8d\x6a\x98\xc2\x8d\x54\x8e\x97\xd5\x56\x16\x77\x1b\x77\xdb\x3c\x1e\x8f\x87\x3c\xf5\xd4\x53\xd2\xe7\x66\x6a\xff\xec\x81\x59\xe7\xb7\x2c\xba\xa9\x4e\xe0\xc4\xe5\x95\xc5\xc1\xf6\x88\x74\x60\xb6\x9b\xfc\x5a\x07\x4b\x2e\x2e\x2e\x56\xe5\x55\xe8\x72\x6b\xae\xd6\xd6\x56\x74\xb4\x77\x38\x1e\xbe\xe1\xfe\xa6\xa4\xd2\x3a\x70\xe4\x7c\x4e\x85\x3b\x72\xc3\x71\xb8\x23\xf6\xda\x84\x2f\xfd\x72\x3a\x93\x9e\x7e\xeb\xad\xb7\xb4\x70\x38\x5c\x91\xdf\x7d\xbe\x70\x9b\x70\xc5\xab\xbb\xbb\x1b\x16\x08\xfe\xc1\x05\xc7\xd7\x0a\x72\x14\x2e\x8f\x2c\x0c\x6e\x0a\x4b\x87\x7a\x7b\x7b\x85\xf5\x78\x54\xea\xd6\x14\x00\x76\xef\xde\x4d\x7d\x49\xf1\x81\x2d\x4b\xb6\x2f\x16\x6c\xea\x92\x3b\x07\xa6\xbd\x99\x91\x73\xad\x89\xef\x69\xba\x36\xf9\xde\x7b\xef\x15\x94\xf5\x59\xd1\x46\x4d\x90\xaa\xf9\x1a\x1a\x1a\xa8\x45\xa3\xf5\x22\x23\xce\xd2\x71\x02\x10\x0e\x38\x33\x42\x9f\xc3\xe1\x30\xae\x7e\xd6\x7a\x8d\xcb\x22\x29\x00\xb4\xb7\xb7\x53\x5f\x9d\xcf\xb1\xf7\xa6\xf3\xeb\x84\x13\x81\xe7\x97\xba\xc6\x4b\x36\xeb\xf1\xf7\x7b\xc2\xff\x83\x13\x5c\x3b\x71\xe2\x44\x26\x3f\x0c\x8d\xfc\x68\xd9\x55\x1e\xb7\x91\x3c\xe5\x0d\x5e\x8f\x57\xb9\x80\x6b\xf2\x65\xb3\x59\x26\x9b\xf5\x64\x4c\xd2\x03\x9c\x10\x70\x52\x90\x27\xb7\xbe\x0d\xd4\x64\x27\x50\xd9\xb8\x2d\xf2\x2a\x67\x0a\x00\x18\x1a\x1a\xa2\x1e\x59\x18\xea\x5c\xb1\x1e\xcc\xad\x39\xf2\x6b\x50\xb2\x7a\x7d\xd2\x19\xfd\x99\x2c\xea\xc7\xa7\xa7\xa7\xe3\xa3\xa3\xa3\x65\x72\x55\x7c\xca\x95\x84\xaf\x94\x67\x23\xbd\xb4\xda\x8c\xbb\x6e\xdc\xe2\xe2\x22\x18\x78\xe0\x58\x77\xe4\xaf\x35\xca\x14\x00\xc5\x2e\x76\xa5\x31\x75\xec\x96\x4b\x39\x1e\x08\x04\xb4\xf5\x78\xad\x59\x7c\x7b\xbd\x5e\xd4\xd7\xd7\x4b\xdb\x27\x1d\x5f\xa5\x20\x42\x25\x0f\x41\xa0\x26\x3b\x3d\xd6\x20\xff\x3c\x93\xc9\x04\x8f\x1f\x3f\xbe\x01\xf9\xee\x88\x36\xaa\xd8\x3b\xe1\x01\x00\x18\x1d\x1d\x45\x5f\x5f\x5f\xf4\x86\x07\x3f\x7d\x65\xe7\x52\xa4\x37\x68\x7f\xda\xa2\x11\xdb\x6c\x6d\x66\xe4\x86\x37\xf3\x0a\x07\x9f\x31\x98\x16\x15\x79\x15\x00\xae\x48\xbd\xbd\xbd\xd4\xac\x53\x7f\x4f\xd0\x76\xa8\xf2\x3a\x91\xe3\x54\x7b\xfc\xef\x39\xc1\xf8\xb9\x73\xe7\xb4\x4c\x26\x73\xa7\xb8\x75\xc7\x1e\x82\xfb\x45\x9a\xa6\xe1\xe8\xd1\xa3\x38\x74\xe8\xd0\x0c\x71\xbb\xff\xf6\xc4\xa6\xd8\x51\xe4\x74\x10\xd5\x34\x2d\x74\xfc\xf8\x71\x65\x61\x61\x61\xdd\xb6\x15\xbc\x15\x00\xc0\x08\x21\xb4\xbb\xbb\x5b\x68\x8f\x48\x8f\x4b\x1a\xad\x23\x06\x57\x71\x81\x56\xec\xea\xec\x8c\x27\xf3\x66\x22\x91\x88\x5f\xbb\x76\xed\x76\x6e\xeb\x4a\x8b\xdc\xdb\xba\xba\x0d\xf1\x1b\x31\x5e\xd7\x8b\x5f\xc3\x3f\x99\x4c\xb2\x23\x47\x8e\xb0\xde\xde\xde\x70\x63\x63\x63\x58\x10\x04\x44\xa3\x51\x8c\x8e\x8e\x22\x95\x4a\x95\x7b\x2d\xd6\xf0\x2a\x99\x11\x7c\x3e\x1f\x2c\x16\x8b\xd4\x75\xc3\xfa\x2c\xe1\x24\xe7\xfc\xe3\xa5\x8e\x9b\x2b\xfe\xd4\xbb\x9c\x60\xe6\xd2\xa5\x4b\x5a\x19\xd3\x75\xdd\xd8\x15\x1a\x52\x9e\xbf\x3c\x5c\xcd\xaa\xaf\x14\xb7\x6e\x99\x81\x81\x01\xda\xd6\xd6\x26\x48\x92\x84\x6c\x36\x8b\xa9\xa9\x29\x76\xfd\xfa\x75\x76\xfd\xfa\xf5\x62\xde\x81\x81\x01\xda\xd7\xd7\x27\x38\x1c\x0e\x81\x73\xce\x6e\xdd\xba\xa5\x5d\xb8\x70\x81\xae\xac\xac\x94\xf0\x2a\xc1\xb0\xd6\xd6\x56\x98\x38\xf1\xb4\x46\xa5\x7d\x20\x39\x77\x72\x8e\x72\x3e\x26\x9d\x42\x1b\xf7\xc9\x6f\xa9\xaa\x1a\x9f\x9c\x9c\x84\x81\x51\xc9\x53\x58\x27\x4c\xab\xc5\x39\x9d\x4e\xf8\x7c\x3e\x38\x1c\x0e\xaa\xaa\x2a\x62\xb1\x18\xbd\x75\xeb\x56\xb9\xf2\xab\x96\xaf\x94\x6e\xb5\x5a\xf1\xcc\x33\xcf\x08\x1d\x4e\x7f\xcb\xf6\x05\xc7\x57\x3d\x41\xa1\x3b\x64\x57\xaf\x5e\x7c\xb0\xed\x6f\x7b\x7a\x7a\x02\xef\xbc\xf3\x0e\xd3\x75\x9d\x3e\xf5\xd4\x53\xd8\xd2\xb8\xa9\x69\xef\x4d\xe7\x37\xda\x26\xa5\x47\x32\x22\x0b\x5f\x6c\xae\xfd\x51\xfb\xf3\xed\x6f\x7c\xf0\xe1\x07\xca\xcc\xcc\x0c\xf2\x8a\xa5\x25\x18\xd6\xd2\xd2\x22\xb8\xd3\x42\x8f\x5d\xa1\xfe\xe2\x40\x24\xab\x5e\xcd\x80\x53\x19\x97\xcd\x6c\x6c\x76\x7a\x56\xc9\x3b\xfa\xee\x99\x3a\x3b\x3b\xe9\xd0\xd0\x10\xad\xf3\x78\x25\x8b\xcc\x9a\x84\x2c\xf7\x73\x4a\x32\x59\x1b\x99\x55\x04\x1e\x9d\x9a\x9a\x52\xce\x9e\x3d\x8b\x64\x32\x79\xc7\xf5\x1d\x38\x70\x40\xe8\xb6\x37\xf6\x7f\xe9\x5c\xfd\x5b\x36\x85\xb6\x00\x40\xd7\xb2\x15\x7d\x01\xfb\x57\x8e\xec\x20\x9f\x3f\x70\xe0\xc0\x64\x2c\x16\x43\x77\x4b\x87\xff\x0b\xe7\xeb\xdf\xac\x4b\x09\x43\x20\x00\x4f\x13\x34\xc6\xcd\x8f\x8b\x9b\xc9\x1f\xa9\x8f\x3c\xf2\xd7\xc1\x60\x50\x93\x65\x19\x28\xef\x61\x5e\xaf\x57\x68\x5c\xb6\xec\x2c\xd9\x64\xe5\x05\xbf\x39\xc1\xac\x3b\x73\x1e\x04\xa1\xbc\xc6\x37\x02\xde\xeb\x2e\x98\x0f\x1e\x3c\x48\x3b\x5b\xda\x3d\xbe\x19\xe5\x6b\xde\xcb\xa9\xaf\x8a\x19\xde\x0d\x70\x0a\x10\x70\x02\x39\x55\x6b\x3a\xe6\xea\xee\xfc\x5e\xe7\x97\x3a\x8f\x7f\xf2\xc9\x27\xca\xc4\xc4\xc4\x86\x95\xe6\xf3\xf9\x68\x4b\x4b\x8b\xf4\xd0\xa8\xf3\x4f\xed\xaa\xa9\xc5\xe8\x08\x76\x65\x85\x9e\x3d\xb3\x35\x2f\x25\xbb\x3b\xfe\x18\x80\xd6\x13\xb0\x7d\xd9\x2b\x0b\x43\x05\x53\x20\xff\x9f\xee\xbd\xe9\xfc\x93\xab\x8d\xa9\xd7\x36\x6f\xde\x1c\xbc\x78\xf1\x22\x00\x03\xe8\x7b\x3c\x1e\x98\x4c\x26\xc1\x9b\x12\x07\x8a\x88\x45\x56\xe1\x9e\x03\x58\x74\x66\xcf\x71\xce\x0b\xee\xde\x75\x5d\x42\xeb\x10\x13\x04\x81\x3e\xfd\xf4\xd3\xb4\xa3\xb6\xb1\xa7\xf3\xa4\xfc\x53\x29\xa1\xef\x5e\xed\xd0\x79\x47\x33\x27\x36\xc7\x8a\x76\xc8\x11\xd6\x0f\x2e\x75\x99\xff\xfc\xc0\xa3\x07\xbe\x43\x29\x95\xaf\x5f\xbf\x6e\xac\xbb\x6a\x7d\x4d\x4d\x4d\x20\x20\xce\xfa\xa4\x79\x67\xe9\xb4\x95\x53\x47\x43\xc2\xbc\x1b\x80\x03\x80\xec\x4e\x0b\x03\x64\xcd\x26\x28\x87\x4d\x35\x35\x89\x3a\xa9\x77\xbb\xdd\xc1\x42\x6c\xa1\x87\x31\x97\xcb\x45\x09\x21\x52\x6d\x5a\xe8\xe0\x15\x8c\x2f\x0e\xce\x56\xec\xea\xb5\x44\x22\xa1\x19\x66\x93\xa2\x12\x50\x19\x5f\x50\x16\xcf\x00\xd0\x3d\x7b\xf6\xa0\xb5\xa1\xc9\xdf\x79\x42\x7e\xc5\x9a\xd4\x07\x4b\x72\x93\xd5\x25\x58\xfe\x26\x34\x4c\x29\xff\x55\x17\x49\xea\xe1\x87\x1f\xfe\x41\x20\x10\x50\x62\xb1\x58\xb1\x8e\xda\xda\x5a\xda\xd5\xd5\x05\xab\xd5\x0a\x55\x55\x71\xf3\xe6\x4d\x2c\x2e\x2e\x42\x10\x04\x00\xa0\x29\xb3\x1e\x75\xa7\xc5\x72\x7d\x21\x21\xe9\x51\x42\x08\x05\x80\xa0\x43\xb9\xc1\xd7\x2c\xd5\x09\x62\x92\x1a\x50\x4c\x3c\x63\x88\x2c\xce\x92\xd4\xe5\x72\x01\x80\xe4\xcc\x08\x7e\x52\x61\xcf\x39\x23\xb0\xb8\x6c\x66\x81\x48\x20\x52\xc9\x6d\xb2\x91\x75\x1e\x2b\xd4\x33\x30\x30\x20\x35\x4c\x28\x5f\x97\x92\xfa\xe0\x1a\x6f\x11\x2f\x77\x21\x71\x10\x0e\x34\x8e\x67\xbf\x15\x6b\xb0\xbf\xbf\x6f\xdf\xbe\x91\xdf\xfe\xf6\xb7\x20\x84\x60\xcf\x9e\x3d\x18\xda\xb6\xdd\xb6\x29\x62\xdd\x5f\x9f\x34\x0f\xc6\x6b\xb5\xd9\xc9\x81\xed\xef\x4e\xcc\xdd\x88\xde\xbc\x79\x13\x20\x48\x9e\x6b\x49\xbc\xd1\x14\xb3\x0c\x51\x83\x3c\x0c\x9c\x5d\xf1\x27\x7f\x0b\x40\x06\xa0\x4c\xd5\xa5\xdf\x9d\x77\x65\xff\x75\x6b\x4c\xda\x82\x7c\xed\x8c\x70\x36\xbc\x29\xf6\xf7\x20\x08\xe7\xbd\x17\x45\x4b\x9f\x01\x80\x24\x49\x14\x1c\x66\xab\x4a\xdd\xc6\xad\xab\xc2\xf0\x94\xcd\x2c\xca\xc0\x93\x79\xf0\xbd\x5b\xc0\x67\x3d\x3d\x3d\xd4\xc4\x49\x9d\x77\x5e\xfd\x37\x64\x8d\x72\x50\x21\x9c\x83\x06\xca\xe0\xf0\xcc\xab\x5f\x69\xed\x6e\x1d\x03\x20\x6f\xdb\xb6\x8d\xee\x1a\x1c\xf2\x1c\xbe\x5a\xf7\xf2\xa6\xb0\xf4\x62\xc1\x06\xda\x33\xab\x5d\x7a\x6d\x90\xfe\x0b\x8b\xc5\x32\x9e\x4c\x26\x93\x37\xbc\xf8\xc5\x3b\x7d\xe1\xfa\x7d\x33\xce\x17\x6b\xb2\x26\x4f\x4c\xd2\xc3\xa7\xda\x63\x47\x66\x6b\xb3\xbf\x5e\x59\x59\x91\xc7\xc7\xc7\xd9\xbe\x7d\xfb\xc6\xdf\xd8\x16\x7a\x69\x68\xde\xf1\x87\x2d\x31\xa9\x3f\x2d\xea\xc9\xcb\x8d\xa9\xa3\xb7\x5c\xd9\xbf\x4b\xa5\x52\x71\xe3\x06\x4a\x11\xf4\x2d\x16\x0b\x28\x87\x24\xea\xc4\x56\xba\x6b\x96\x9b\x26\xd3\xa2\x1e\x07\xa0\x24\x93\xc9\xbb\xd4\x55\x8e\x1a\x1b\x1b\xa9\x35\xc1\x86\x4c\x0a\xaf\x2f\x2a\xc4\xa0\xaa\x8a\xdb\xec\x79\x1d\xd6\xac\x68\xfb\xe9\x66\xb3\x63\x60\x60\x20\xb3\x6b\xd7\x2e\xf3\xb6\x05\xc7\xd7\x36\x85\xa5\x17\x8b\xdb\xe6\x20\xa8\x4d\x8b\x83\x8f\x4c\xbb\xbf\x9d\xec\xd3\xbf\x7a\xf2\xd4\xc9\xe4\xd0\xd0\xd0\xe4\x75\x1f\xff\xce\x84\x4f\x7e\xdd\xc4\x88\x47\xa3\x3c\xc4\xc1\x27\x55\x55\x9d\xff\xe8\xa3\x8f\x58\x28\x14\x62\x2e\x97\x2b\xde\xd7\xd7\xf7\xf1\xe9\xb6\xf8\xf8\x69\xc4\x3d\x00\x14\x00\x81\x74\x3a\x1d\x3a\x7a\xf4\xa8\xa6\x69\x5a\xb1\x83\x18\xf7\x25\x41\x39\x11\x08\x08\x25\x46\x08\xe3\xb9\xfd\x45\x9d\x42\x21\x84\x94\x5b\xd7\x40\x29\x00\x1b\xc3\xc6\xb8\x62\xbc\xc7\xe3\xa1\x62\x98\x75\x80\x1b\x9e\x0a\x21\x30\x98\x7c\x39\x45\xe5\xff\x71\x4e\x8a\xbb\xdb\x62\x86\xfb\x01\xd8\xf6\xee\xdd\x0b\x41\x10\x6c\xed\x11\xe9\xe9\x02\x58\xe7\x6e\xb9\xff\xad\x11\xcb\x23\x94\xc3\x23\x08\x42\xf2\xf5\xd7\x5f\xd7\xf6\xed\xdb\x37\xd3\xd2\xd2\xb2\xc0\x28\xa5\x8c\x31\x76\xf3\xe6\x4d\xe5\xcc\x99\x33\x88\xc5\x62\x00\x80\xe3\xc7\x8f\xb3\xe9\xe9\xe9\xe4\x96\x2d\x5b\x26\xeb\xea\xea\xa8\xaa\xaa\x98\x9f\x9f\x67\x97\x2f\x5f\x36\x6e\xff\x01\x46\x0c\x03\x40\x4b\x07\x83\xd1\x0e\xe3\x05\x81\x2b\x2d\x79\xca\xc3\xd5\xdc\xc9\x45\xf0\xe7\x84\x80\x90\x82\x81\x67\x9c\xca\xf3\x55\x16\xaa\xe6\x86\x27\x97\x3b\x82\x91\x33\x1e\x73\x80\x2e\x68\xc5\x16\xf3\x92\x7e\xaa\x99\x38\xe3\x04\xe6\x9a\x9a\x1a\xc4\x62\x31\xe4\x31\x4f\x31\xec\x2f\x18\xdb\x05\x00\x74\x61\x61\x01\x4b\x4b\x4b\x90\x24\x89\x71\xce\x91\xdf\x3c\x59\x23\x97\xd1\x0e\x63\x9c\x70\xc6\xc0\x19\xaf\x80\xe1\x82\x4e\xcc\x9c\xf3\x7b\xf6\x1c\xe8\xba\xce\xb2\x76\xd3\xbc\xd1\x60\x21\x86\xff\xab\xa0\xbf\xaa\x82\xc2\x8e\x76\xd6\x4e\x03\x1c\x50\xa2\x91\x08\xdc\x6e\x77\xe6\x9a\x3f\xf5\x41\x77\xc8\x7a\x80\x80\xc0\xc8\x6f\xb4\x5e\xfe\x98\x81\xc7\xa3\xd1\x28\x6a\x6a\x6a\xb0\x63\xc7\x0e\xb4\xb5\xb5\x09\x66\xd1\x4c\xd3\x99\x34\x9b\x9e\x9e\xd6\x46\x46\x46\x68\xfe\xf0\x1d\xb5\x58\x2c\xd8\xb3\x67\x0f\x7a\x36\x6f\x36\x5b\x89\x59\xd2\x28\xd7\x96\xc3\xa1\xcc\xe9\xd3\xa7\xd9\xfc\xfc\x7c\x89\x0c\x46\x4b\x9f\x32\x02\x4d\x35\x71\x59\xd4\xb9\xad\x60\x0f\x15\xc8\xaa\x52\x27\x0c\x66\xc8\x6d\x94\x54\x95\x42\xa1\x10\xb3\xb6\xb4\x4c\x66\xed\x74\x5e\x4a\xb1\x96\xe2\x40\x22\xab\xfd\xa4\xe4\xdc\x84\x21\x26\x56\x2f\x9c\x04\x20\x9f\x3c\x79\x12\xfb\xf6\xed\x93\x6f\x78\xc8\xaf\x3f\xee\x8a\x0e\x3c\x38\xe3\x7a\x51\xd4\x89\x99\x11\xb0\xd1\x86\xd4\xc9\x53\x1d\xb1\xff\xa3\xeb\x7a\x34\x1c\x0e\xe3\x85\x17\x5e\x10\x7a\x32\xee\xfd\xbb\x26\x6b\xfe\x93\x33\x2b\xb4\x84\xec\xea\xb5\x53\xdd\xb5\xdf\xdb\xb4\x69\xd3\xb5\x37\xdf\x7c\x93\xa5\x52\x29\x76\xf8\xf0\x61\xa1\x57\x6a\x1c\x7c\xec\xaa\xfb\xdb\x0d\x09\xf3\x03\x59\x81\x85\x2f\x36\xd7\xbc\x5c\xf7\xb4\xf7\xaf\x86\x4f\x9d\x90\xaf\x5c\xb9\x52\x82\x61\x00\x40\xd3\xe9\x34\x38\xb8\x92\x36\xeb\x71\xbb\x62\xaa\xe3\x65\xc7\x6c\xec\x8a\xa9\xce\xc4\x89\xe4\x74\x3a\xef\x56\x57\x00\x80\xe9\xe9\x69\xd6\xd2\xd2\x12\x58\xea\x34\xff\xb2\xed\x72\xe6\xbf\x94\xaa\x69\xf5\x11\xad\x4e\xd2\x04\x9c\x70\xa8\x12\x0d\x47\x9a\xc5\xd7\x15\x45\x49\xce\xcd\xcd\x31\x45\x51\x70\xf8\xf0\xe1\xc9\xf3\xcd\x89\xff\x76\xad\x21\xf5\xb6\x3b\x2d\x76\xa5\x2c\xfa\x52\xd2\xac\x9f\xe5\xe0\x63\xe7\xcf\x9f\x57\x1e\x7e\xf8\x61\xda\x93\x71\x1f\x7c\xe1\xb2\xef\x55\xca\x88\x04\x00\xb5\x29\xf1\x81\xb6\x88\xf4\x7b\x47\x86\xf0\xec\xa3\x8f\x3e\x3a\x92\x4a\xa5\xd0\xe2\xaa\xef\xf8\xfd\xb3\xbe\x7f\xb4\x67\x4d\x6d\x84\x00\x42\x96\x7a\x1e\xba\xe1\xfa\x8e\x89\x11\x97\xf6\xc0\x03\xdf\x9e\x9b\x9b\x53\x0a\x9b\xd0\x45\x2f\x82\x2c\xcb\x20\x84\x64\xe2\x16\x3d\xc8\x0b\x47\x6e\x0c\xc0\x62\xd6\x89\xc3\xae\x98\xfc\x4e\xa7\xb3\x92\x97\xb6\xa2\xe7\xd6\x10\x2e\xa6\x4f\x4d\x4d\x21\x9d\x4e\x47\x23\xcd\xc2\xcf\xa3\x8d\xc2\xe9\x55\xaf\x3a\x87\xe1\x14\xd9\xea\x2f\x02\x70\x4a\xb4\xd9\x41\xe9\xfb\x4c\x20\x57\xae\x5c\xb9\xa2\x01\xa0\x4b\x4b\x4b\xec\xe8\xd1\xa3\x4a\x38\x1c\x1e\xcf\x8a\xfc\xb5\x25\xa7\xf2\xfd\xa4\x45\xff\x59\x4a\x4e\x8d\x7c\xf4\xd1\x47\xc9\x48\x24\x02\x67\x8d\xd3\xb1\x67\xd6\xf9\x52\x41\x59\xc8\xd7\x64\x51\x69\xdd\xae\xf9\x9a\x6f\xb4\xb4\xb4\x48\xbd\xbd\xbd\xe6\xde\xa0\xed\x4b\x76\x85\xb6\x01\x58\x9d\x8b\x40\xb0\x63\xbe\xe6\x3f\x4b\x44\xf4\xf7\xf5\xf5\x15\xe5\x29\xf6\xb0\x64\x32\x09\xce\x79\x26\x6c\x53\x67\x37\x85\xa5\x7d\x25\xcf\x39\xa7\x38\xea\x4b\x9a\xfb\x97\xbd\xde\x93\x84\x10\x6a\x38\xb5\x7c\x3b\x0f\x42\x49\x9c\xa6\x69\x18\x1e\x1e\xd6\x9e\x78\xe2\x89\xf1\xd9\x6d\xd2\xb7\x74\x31\xfb\x4d\xef\xac\xfa\x88\xf1\x50\x5d\xd1\x0e\x24\x04\x9a\x85\xc4\x67\x07\xa5\xbf\x4a\x7a\x4c\xff\x10\x89\x44\x42\x97\x2e\x5d\x02\xf2\x80\x1d\x08\x04\xf0\xab\x5f\xfd\x8a\xd5\xd6\xd6\xca\x1e\x8f\x47\x4e\xa5\x52\x58\x5a\x5a\x02\xe7\x9c\xed\xdc\xb9\x93\x02\x70\x38\x33\x42\x47\x71\x16\x29\x1e\x5c\xe3\x70\xa5\x85\x6e\xce\xb9\x0d\x80\x6c\xcf\x9a\xba\x0c\x53\x33\x0a\x99\x45\x9d\x38\x2d\x1a\xf1\x7b\xbd\xde\xf9\x82\x10\x45\x0c\x5b\x59\x59\xa1\x00\x94\x90\x43\x9d\x04\x48\xbe\x6c\xe9\x22\xbc\x39\x66\xde\x33\x5d\x27\xfd\xcc\xe5\x72\x69\xd1\x68\xf4\xae\x71\x6c\x7a\x7a\x1a\x5e\xaf\x37\x39\x34\x34\x74\x72\xbe\xdf\xf2\x52\xb8\x49\xfc\xbc\x77\x4e\x39\xe4\x08\xeb\x9d\x82\xc2\x6d\x9c\x80\x65\xed\x34\x14\xf3\x0b\x23\x2b\x2d\xe6\x57\x75\x33\x39\x9e\x48\x24\xe6\xdf\x79\xe7\x1d\xa6\xaa\xea\x1a\x47\x64\x24\x12\x41\x24\x12\x29\xa9\x83\xb1\x5c\x72\xc4\xa6\x06\xdc\x19\xa1\x0d\x80\xc1\x8a\x21\x08\xd4\x28\xd3\xc8\x39\x4d\xd9\xa2\x2b\x3b\x0a\x52\x93\x9b\x95\x8b\x22\x13\x04\x1d\xca\x74\xca\xcc\xc2\xe9\x74\xba\x68\x21\x14\x67\xc9\x44\x22\xc1\x54\x55\x55\x02\x35\xca\x05\x80\x83\x17\x94\x65\x98\xd9\xdb\x22\xd2\x43\xe0\x31\x47\x73\x73\xb3\x1c\x8d\x46\xef\x56\x5f\x00\x80\x33\x67\xce\xb0\x68\x34\x9a\x7c\xf8\xe1\x87\x47\xb8\x5b\x9c\x95\x6b\xad\xaf\x83\x73\x3f\x61\x70\x72\x02\x0d\x94\x84\x00\x2c\x00\x08\x2c\x2c\x2c\x24\x8f\x1d\x3b\xc6\xee\xc4\xc5\xb3\xb4\xb4\x04\x0e\x1e\x3f\xd9\x1e\xff\x79\x73\xd4\x32\x24\x32\x6a\x2e\xc8\x91\xb4\x68\xe1\x0b\x2d\x89\x57\x00\xc8\x9a\xa6\x29\x33\x9e\xcc\xfb\xa3\x0d\xf2\x70\xdf\x92\xed\xa1\x82\xc0\x8a\x89\x65\x8e\x75\x47\x5e\x06\x41\xe8\xe6\xcd\x9b\x45\xbe\x26\xe4\x86\x0a\x07\x80\xc6\xc6\x46\x22\x79\x6b\x84\xfe\x80\xfd\x45\x8b\x4e\xec\xe5\x8d\xb0\xa9\x26\xcf\x78\xbd\x7c\x54\xb7\x0b\x73\xd7\xaf\x5f\xaf\xe6\xad\xe0\x15\xc2\xe5\xf1\x00\x80\x70\x38\xcc\xaf\x5d\xbb\xc6\x15\x45\x49\x59\xad\xd6\x25\xb3\xd9\x3c\x43\x05\xd3\x75\x10\x32\x9e\xcd\x66\x67\xe6\xe6\xe6\x96\xcf\x9c\x39\x93\x3d\x7d\xfa\xb4\xae\x28\x4a\xb5\xa3\x68\x15\x29\x99\x4c\xf2\xb6\xb6\x36\x1d\x1e\x69\xf1\x86\x37\x13\x30\x71\xb8\xb3\x02\xcb\x4e\x7b\xd3\x17\xdf\xef\x8d\xfc\xcf\x94\x85\x1d\x1b\x1b\x1b\x8b\x8d\x8c\x8c\xf0\xce\xae\xae\xc4\x8d\xba\xcc\x95\xa0\x43\x91\xd3\x66\xa6\xcc\x78\x33\x57\x3e\xdc\x1c\xf9\xc1\x8a\x43\x7b\x23\x14\x0a\x2d\x0f\x0f\x0f\x17\xcf\x0e\x18\xcf\x56\xb0\x1d\x3b\x76\xd0\xdd\xbb\x77\xfb\x9f\x1a\xf7\xfc\x74\x6b\xc0\xf1\x24\xb0\x56\xcc\xd3\xed\xf1\xbf\xfc\xb4\x23\xfa\xd2\x2f\x7e\xf1\x8b\x4c\x3c\x1e\xaf\x66\xc8\x56\xf3\xe9\x57\xf2\xf1\x97\xac\x10\x44\x51\x2c\x62\x5d\xd9\xdb\x1d\x95\x16\xfd\x95\xd2\x8b\x77\xbb\xdd\x4e\x0f\x1f\x3e\x4c\x5d\x2e\x97\x07\x40\x13\x00\x1b\x80\x38\x80\x85\x85\x85\x85\xf8\x7b\xef\xbd\xc7\x14\x45\xc1\xd6\xad\x5b\xb1\x77\xef\x5e\x33\xa5\xb4\x0e\x80\x93\x10\xa2\x71\xce\x43\xa1\x50\x28\xfe\xf6\xdb\x6f\x33\xc3\x46\x4f\xe9\x29\x6a\x4d\xd3\xd0\xd7\xd7\x07\x10\xd4\xf7\x06\x6d\x4f\x90\xf2\x67\x4a\x08\x5c\x69\xa1\xf9\x72\x53\xea\x55\x9d\xf0\xe8\xfc\xfc\x3c\x41\xc9\x5c\xba\x9a\xb3\x42\x7c\xa5\x70\xf9\xb9\x0e\xc2\x72\x64\x8c\x67\x55\xf8\x31\xac\x2d\x6f\xbc\x73\x55\x55\xc9\xf8\xf8\x38\x57\x14\x45\x36\x99\x4c\xcb\x9a\xa6\xdd\x5a\x5e\x5e\x0e\x9d\x3f\x7f\x3e\x7d\xfa\xf4\x69\x5e\x38\x74\x12\x0c\x06\xd9\xc4\xc4\x04\xcb\x66\xb3\x09\x55\x55\x43\xc1\x60\x30\x7c\xf9\xf2\xe5\xcc\x89\x13\x27\xb8\xaa\xaa\xc0\xea\x28\x29\xdd\x97\x0c\x85\x42\x48\xa5\x52\x99\x39\x37\xfd\x58\x16\x59\xd4\xa6\x52\x37\x0a\xd9\xf3\xab\x60\xbb\x42\x9b\xfa\x96\x6c\x5f\x4c\x6f\xd9\xf2\x83\xf3\xe7\xcf\x2b\x9f\xc1\xab\x2a\x1b\x75\x1d\x6d\x68\x85\xa1\xaa\x2a\x2e\x5e\xbc\x88\x8b\x17\x2f\x16\x21\x44\x92\x24\xec\xd8\xb1\x03\x8d\x8d\x8d\xb4\xb0\x6b\x74\xf5\xea\x55\x5c\xb8\x70\xe1\xb6\x6d\x5a\x73\xec\xdc\x6a\xb5\xf2\xfa\x26\xbf\xee\xc8\x9a\x06\x9b\xe2\x96\x9e\xdc\x19\x78\x82\xe2\x9d\x13\xd4\xa5\xc4\xde\xd1\x96\xf4\x2f\xa9\x59\x88\xcd\xcd\xcd\xb1\x72\x1e\xb7\xb9\x08\x72\xbd\xe3\x4e\xca\xdc\xb7\xcb\xe3\xf1\x90\x17\x5e\x78\x41\x78\xa0\xb6\x7b\xe8\xf1\x68\xf3\x1f\xef\x92\xeb\x5f\x6c\x74\xfb\xec\xbe\x9d\x5d\x37\x18\xb8\x9a\x3f\xfc\x57\xb5\x7c\x01\xf4\x8b\xe6\x4f\x22\x91\x20\x03\x03\x03\x6a\xdc\xaa\x63\x70\xd1\xf1\x3c\x59\x5d\xa9\xe4\x88\x00\x66\x9d\xba\x18\x81\x96\xee\x72\x1c\x9f\x9b\x9b\xd3\x65\x59\x2e\x0c\xde\x8d\x80\x7e\x25\xf0\xae\x56\xae\x12\x19\xd3\xd6\xcb\xb7\x86\x2c\x16\x0b\x7d\xfe\xf9\xe7\x85\xc1\x94\xf7\xc5\x17\xae\xf8\xfe\xb1\x29\x61\x7e\xd4\x97\x32\xef\xea\x5a\xb1\x7e\xd1\x95\x15\xfd\x99\x41\xcf\x3f\xad\x84\x57\xd4\x68\x34\x5a\x95\x67\x01\xc3\x0a\x40\xc9\xb3\xd9\x2c\xf1\xfb\xfd\xcc\xec\x71\xa4\xbd\x29\x71\xaf\x47\x16\x9b\xcb\xdf\x3c\x23\x00\xfc\x09\xcb\xd0\x0d\x5f\xf6\x03\x47\xb3\xf7\xd6\xe8\xe8\xa8\x11\x90\x0b\xca\x37\x86\x51\x45\x48\x8a\x52\xec\x21\x55\xc2\xd5\xd2\x8c\xbf\xb9\x81\x5f\xc5\xb8\xc1\xc1\x41\x74\xb6\x75\xd4\x3d\x7f\xc5\xf7\x8a\x55\xa3\x3e\xa3\x3c\x75\x29\x71\xfb\x2d\x57\xf6\x0c\x6d\xac\x99\x30\xc8\xb3\x86\x57\xa5\xa5\x0d\x46\x46\x46\x18\x08\x16\x4e\xb7\xc7\x7f\xc2\x72\x2e\x95\xbc\x84\xb9\xb2\x1c\x80\xc0\x88\xed\xe9\x31\xcf\xf7\xfd\xb5\xbe\xfa\xfd\xfb\xf7\x6f\x04\x77\x2a\x2d\xa5\xee\x27\xdd\xd6\x93\xd2\xd0\xd0\x40\xad\xaa\xa9\xad\x26\x6b\xea\x28\x9c\x42\x2a\xc8\x44\x40\xa8\x3f\x61\xfe\x9c\xd7\xeb\x35\x0b\x82\x50\x95\x97\x71\xe7\xb8\x78\x2d\x2c\x2c\xb0\x85\x85\x05\x39\x64\x57\x8f\x8d\x36\xa4\x3e\x46\xfe\x20\x5d\xe1\x4e\xf2\x6b\x17\x5f\x52\xdc\x79\x60\xd2\xfd\xed\xfe\xbe\x7e\x47\x7e\xbd\x55\xf5\x20\x5a\x85\xeb\x4e\xf3\xdf\xf3\x65\x32\x99\x90\x15\x98\xa6\x98\x78\x92\x70\x83\x0f\x8d\x73\x70\x70\x44\x6c\xda\x12\x00\xe4\x3d\xac\x95\x79\x54\xd1\x24\x8f\xc5\x62\xe8\xed\xed\x4d\x07\x6b\x94\x58\xff\x92\xfd\x59\x91\x51\xb3\x71\x37\x89\x90\xdc\x93\xa9\x4f\x8a\x43\x8c\xf0\x8c\x69\x6b\xfd\xd9\x44\x22\xa1\x85\xc3\xe1\xf2\xf1\x5f\x82\x91\xa8\x8c\x57\xe5\xce\xfd\x6a\xd8\x54\x8d\xd7\xba\x06\x72\x81\x9c\x4e\x27\xfc\xcd\x8d\x54\x60\xa4\xb3\x39\x66\x19\x28\xbe\x08\x05\x82\xe5\x1a\x75\xe6\xd3\xce\xe8\x77\x23\xb1\xe8\xdc\xd5\xab\x57\x59\x35\x5e\xe5\xa0\x5f\xc4\x9d\x54\x2a\x05\xb7\xdb\xad\xd6\xd4\xd7\xc6\x33\x22\xab\xed\x0c\x4b\xbb\x40\x72\xeb\xb0\xdc\x56\xd8\xea\x1b\x65\xad\x51\xcb\xa3\x59\x91\x87\x2d\xdb\x1a\x47\x12\x89\x84\x6e\x50\x5a\xa1\x07\x1b\x85\x2c\xc7\x17\xa3\x9d\x65\xf4\x1e\x12\xac\x55\x4e\x25\x5e\xdc\x10\xae\xa4\xb4\x22\x16\xa5\x52\x29\x6c\xd9\xb2\x25\xbb\x58\xab\xce\x64\x04\xe6\x74\x66\x05\x9f\x4e\xb9\x3e\xe1\x93\x2f\xbc\xd7\x1b\xfe\x0b\x45\xe0\xa7\xce\x9f\x3f\x9f\x0e\x06\x83\xbc\x1a\xaf\x75\x5f\xff\x5b\x5c\x5c\xc4\x96\x2d\x5b\xe4\xb0\x8b\x2d\xfa\x92\xe2\x2e\x4f\x5a\x6c\x34\x66\x34\x48\x46\xda\x23\xd2\x53\xa0\x24\x2b\x0e\x36\x9e\x03\xa0\x05\x02\x81\x0a\xd9\x2a\x1a\x9a\x65\x8e\xa4\x8a\x61\x5a\x96\x56\x3e\xa9\x14\x95\xeb\xf1\x78\x08\xe7\x9c\x68\x9a\x66\xcc\x03\x00\xc8\x66\xb3\x2c\x1a\x8d\xb2\x8e\x4d\x9b\x56\x96\x5c\xea\xb9\x4b\xcd\xc9\x0f\x2e\xb4\x24\x7f\x3d\x5d\x97\x39\xa2\x9a\xf8\xd9\x1b\x37\x6e\x44\x4f\x9f\x3e\x0d\xce\x79\xf9\x83\x2b\xf2\x2a\x3f\x45\x5d\x42\x9a\xa6\x21\x99\x4c\xb2\x4d\x9b\x36\xc5\xe7\x3c\xd9\xc5\x9e\x65\xdb\xe3\x16\xcd\x64\x33\x00\xa5\x11\x38\x49\x6b\xd4\xf2\xb8\x33\x2b\xfa\xf5\x01\xcf\x89\x5a\x9f\x57\x0e\x04\x02\x50\x55\xb5\x2a\xff\x32\xc5\x6d\x24\x5c\xf5\xe1\xba\x5c\x2e\x1c\x3c\x78\xd0\xf4\xd8\x8e\x07\x6b\xfb\xb7\x0e\xf0\xb4\x92\xd5\x97\x97\x97\xd7\xd4\x15\x8d\x46\x31\x37\x37\xa7\x59\xad\xd6\xb0\x24\x49\x73\x9c\xf3\x99\x48\x24\xb2\x78\xee\xdc\xb9\xf4\xa9\x53\xa7\x8c\xcb\xb1\x4a\xf5\xae\x35\x5c\xcb\xaf\x48\x24\xc2\x9d\x4e\xa7\xea\xf4\xd5\xae\xdc\x72\x65\x13\xbd\x41\xdb\x23\x26\x96\x5b\x21\x14\xce\xed\x17\x54\x07\x00\xbe\x94\xb8\x63\xd3\x8a\xf5\x31\xb9\xcd\x7a\xa9\x75\x5b\xf7\x92\xa2\x28\x2c\x14\x0a\x7d\x66\x86\xaa\xc9\x64\x22\xdb\xb7\x6f\xc7\x63\x8f\x3d\x66\xde\xca\x1b\x0e\x3c\x7f\xc5\xf7\x4b\x87\x26\xf8\xf9\xf6\xfa\x13\xc1\x60\x50\xcd\xaf\x77\x4b\xca\xc8\xb2\xcc\xa7\xa6\xa6\xf8\xc5\x8b\x17\xf5\x91\x91\x11\x6d\x74\x74\x94\x85\x42\xa1\x8d\xd5\x97\x57\x5c\x25\x80\x2b\xc6\xcd\xcf\xcf\x93\xf6\xf6\xf6\x34\x77\x5b\x16\x56\xec\x2a\xd9\x1c\xb2\xed\xa1\x9c\xd0\x7c\xc7\xca\xab\xbf\xb0\x13\x44\x60\x53\x4c\x4d\x03\x01\xfb\xbf\x92\x88\x28\x49\x5b\xfd\x57\x5b\x3b\x3b\x32\x8a\xa2\x20\x12\x89\x6c\xd8\xc8\x5c\x87\x8a\xed\xea\xeb\xeb\xa3\x4f\x3e\xf9\x24\xed\x6f\xee\x6a\x7e\x7c\xc6\xfb\xdf\x1f\x9d\x72\x7f\x47\xd2\x4c\xf5\xfe\x84\x79\xef\x72\x8d\x7a\xd5\xd1\xe3\xbf\x3e\x35\x35\xc5\x55\x55\xbd\x6f\x46\x70\x01\xf4\x8d\x9e\x03\x23\xd6\x70\x00\x94\x31\x86\xb9\xb9\x39\xde\xd9\xd9\x99\x4c\x39\xe9\xcd\x98\x4d\x13\x37\xad\x58\x87\x08\x27\x55\xed\x29\xca\x89\xd8\x1c\x37\x7f\x6e\x60\xc9\xf1\x25\xab\xd5\x0a\xd7\xd6\xd6\xe9\xcd\xfd\x5b\x14\x49\x92\x78\x36\x9b\x25\xf9\xb7\x63\x8d\x0d\x2f\x07\xf8\x4a\x33\x27\xa9\xaf\xaf\xc7\xd6\xad\x5b\xc9\x13\x4f\x3c\x21\x6e\x6d\xdd\xdc\xf4\xe0\x92\xf7\x8f\x9e\x19\xf3\xfe\xa8\x29\x6e\x7e\x94\xe4\xde\x30\x06\x05\xa1\x6d\x51\x69\xff\x8d\x26\xf5\xdd\x1a\xbf\x67\x79\x62\x62\x02\x95\x78\xc1\x60\xb0\xa3\x14\x0b\x8d\xb8\x55\x52\xce\xe8\xde\xa9\x44\x25\x2e\x15\xaf\xd7\x8b\xe7\x9e\x7b\xce\x2c\x0a\x62\xe7\xa6\x15\xe9\xdf\x3d\x3b\xe6\xfd\xf7\xa2\x46\xcc\xf9\xf7\x48\x8b\x53\x34\x90\xb7\xdb\xc8\xaa\xcc\x19\x81\x05\xc6\xeb\xe5\x23\xd7\xeb\xe5\x5f\x04\x6a\x94\x2b\x71\x39\x99\x59\x5c\x5c\xd4\x56\x56\x56\x10\x89\x44\x20\xcb\x32\x12\x89\x04\x14\x45\x61\x85\x4f\xcb\x38\x9d\x4e\xd8\x6c\x36\xb8\x5c\x2e\x34\x34\x34\xc0\xef\xf7\x0b\x35\x92\xcd\xd6\x14\xb3\xec\xdc\xb2\x64\xff\x97\x9b\x43\xd6\x17\x45\x9d\x78\xca\x17\x13\x84\xe7\xb6\x53\x16\xdc\xca\xf1\x5f\x0d\x06\xbf\x70\xee\xe2\x85\xd0\x99\x33\x67\x0a\xf2\x00\xa5\x32\x6f\xd4\x6d\x84\x82\x74\x77\x44\x7e\xbf\x9f\x1e\x3c\x78\x50\x90\x24\xa9\xa3\x21\x21\x7e\xf9\xf0\xd5\xba\xaf\x3b\xb3\x82\x7b\xa3\xe5\x39\x38\x4b\x99\xf5\xe9\x39\x77\xf6\xf8\xa2\x53\x39\xb5\xec\x50\x2e\x45\xad\xda\x4c\x46\x60\xc9\xfc\x46\x6d\x51\x28\xc2\x41\xad\x1a\x75\xba\xd2\x42\x5b\x7d\xd2\x3c\xd4\x14\xb3\x3c\xd8\x12\xb5\xec\xb7\xa9\xb4\x83\x18\x8f\xdb\x94\x4b\x91\xef\x13\x9c\x70\x9c\x6b\x4d\x7c\xf7\xa3\xf6\xf0\x37\x5f\x7d\xf5\x55\xc5\xe0\xbf\xbb\x6b\xba\x63\x85\x01\xb9\x8f\x79\x1c\x3a\x74\x88\xd6\xd4\xd4\x34\x59\x15\xfa\xe4\xc1\xeb\x9e\x6f\x74\x84\xa5\xfe\x92\x27\x5d\xe2\x1f\xcf\xc7\x15\xab\x2c\x85\x0a\x0e\x28\x9a\x89\x47\xb3\x02\x8b\x6a\x94\x2b\x00\x20\x30\x62\xce\x7f\x5e\xc6\x4d\x00\x73\x65\xad\x54\xd1\x14\x08\xc0\x01\x9d\x72\xed\x64\x47\xec\x6f\xce\xb6\x25\xfe\xe4\xfd\xf7\xdf\x8f\x4f\x4f\x4f\xdf\xb3\xc2\x4a\x5c\xd4\x58\x6b\xc4\x56\x04\xc4\x6c\x36\xcb\x27\x26\x26\xd0\xd0\xd0\x90\x94\xdc\x8e\x9b\xe3\xf5\xf2\x88\x2c\x32\x73\x73\xcc\xd2\x6d\xca\x7f\x6c\xa8\xfa\xa3\x58\x9b\x40\x00\x93\x89\x13\xbb\x59\xa7\x5e\x49\xa3\xf5\x92\x46\xeb\xcd\x3a\xf5\x9a\x38\xb5\x13\xc0\x54\x49\xc9\xeb\x13\xc1\xb2\x43\x59\x78\x73\x6b\xe8\xbb\x13\xbe\xf4\x4f\x54\x4d\x5d\x3a\x73\xe6\x0c\xbb\x53\x37\x77\x25\x2a\xd8\x61\x46\x8b\xb9\x1c\xf4\x81\xb5\x40\x48\x74\x5d\xc7\xf8\xf8\xb8\x4e\x29\xcd\xd4\x37\x34\x2c\x06\x5d\xea\xa5\xeb\xf5\xf2\xa4\x5d\x31\x35\x79\x64\xd1\x4f\x79\x61\x6f\x31\xef\x4b\xe3\x85\x3b\x40\xca\xff\x0a\xe9\x6b\xfe\xb0\x7a\x37\xf2\x40\x59\x7e\x43\x5c\x56\x64\x99\x13\x1d\xf1\xdf\x7c\xd0\x1b\xfe\xf3\x84\x45\x7f\x4b\x96\xe5\xb9\x77\xdf\x7d\x57\xcb\x7f\x51\x60\x3d\xcf\x46\x35\xc0\x2f\xe9\x38\xb7\x03\xfd\x0d\x91\xdf\xef\xc7\xfe\xfd\xfb\x69\x6d\x6d\xad\x9b\x80\x6c\xf1\x27\xcc\xcf\xee\xbd\xe9\xfc\x62\x7b\x58\xea\xa1\xc8\xcf\x08\x25\x33\x83\x21\x5c\xbc\x17\x1e\x91\x31\xbd\xf0\xcc\x2a\x95\x59\xad\x9f\x93\xdc\x2e\xcf\xe5\xa6\xe4\xc9\x73\x2d\x89\x57\xd2\x66\x36\xcc\x39\x9f\x99\x9c\x9c\x94\x87\x87\x87\x8d\x1f\x30\xaa\x06\xf0\x1b\x06\xfe\xfb\xa2\x30\x00\xa0\x94\x62\xdb\xb6\x6d\xd8\xb9\x73\xa7\x59\x14\x45\x0f\x38\x7a\xea\x52\xe2\x23\xdb\x17\x1c\x87\x37\x2f\xdb\x06\x2d\xda\xea\xee\x73\x55\x32\xf6\xe7\x92\xb8\x82\xc2\xca\xe2\x09\x10\xb1\x6a\xa1\xab\x8d\xa9\xe1\xab\xfe\xd4\x9b\x19\x91\x9d\xe5\x9c\xcf\x46\x22\x91\xf8\xa7\x9f\x7e\xca\x2a\xbc\xf7\x78\xcf\x54\x09\x69\x8c\x76\xd9\x7a\x54\x31\x9f\x24\x49\x74\x70\x70\x10\xfd\xfd\xfd\x66\xb3\xd9\xec\x04\xd0\x26\x6a\xa4\xbf\x23\x22\x3d\xda\x15\xb2\xee\x6e\x89\x4a\x9d\x76\x85\x3a\xd6\xfb\x1c\xd6\x1a\x32\xe0\x3b\x03\x67\x11\x9b\x16\x9a\xf1\xa4\xc7\x26\xeb\xd2\xc3\x01\xa7\x72\x82\x13\x8c\x03\x08\x84\xc3\xe1\xe4\x85\x0b\x17\xd8\xd4\xd4\xd4\x3d\x83\x7b\x35\x32\xf6\x30\xa3\x8d\x62\xdc\xb2\x42\x85\xdf\xc6\xfc\x46\x2a\x51\xe2\xe0\xe0\x20\xed\xeb\xeb\xa3\x4e\xa7\xd3\x06\xc0\x0d\xa0\xc9\xc4\x49\x5b\x6d\x5a\xe8\x69\x48\x58\x06\xea\x52\x62\x8b\x5b\x16\xea\x9d\x59\x93\x5b\x52\x4d\x36\x51\x27\x66\x92\x3b\x6b\xc5\x18\x05\x53\x4d\x4c\x49\x99\xf5\x64\x5c\xd2\xa3\x11\xab\x1a\x08\x3a\xd4\xe9\x25\xa7\x72\x35\x69\xd6\xc7\x39\xf8\x3c\x80\x20\xe7\x3c\x5e\xf8\xbc\xc3\xcc\xcc\xcc\x9d\x2a\xaa\x9a\x8c\x55\x89\x60\xad\x82\x8c\xf7\x02\x55\x8b\x2f\xa4\xa1\x4a\x7e\x00\x40\x7d\x7d\x3d\x36\x6d\xda\x84\x8e\x8e\x0e\xea\x74\x3a\xcd\x84\x10\x1b\x72\x47\xbe\x9d\xf9\xcb\x01\x0e\x1b\xe5\x90\x68\xfe\x3b\x3b\x8c\x70\x85\x11\x64\x40\x90\x04\x90\x44\x6e\x3f\x31\x0e\x20\xa9\xeb\x7a\x66\x69\x69\x49\x9b\x9e\x9e\x66\x33\x33\x33\x28\xbc\x74\x50\xa5\x6d\x77\x03\x39\x55\x79\xdd\x29\x86\xdd\x6d\x03\x8a\x64\xb3\xd9\xd0\xd4\xd4\x04\xaf\xd7\x8b\xda\xda\x5a\xea\x74\x3a\x61\xb7\xdb\x69\x7e\x03\xd7\xe8\xc6\x66\xc8\x9d\x2a\x62\xe9\x74\x9a\x45\x22\x11\x16\x89\x44\x10\x08\x04\xb0\xb2\xb2\x02\x45\x51\xee\xa5\x19\xbf\xa3\x7f\x4e\xba\x97\x1e\x74\xbb\xcd\x8f\x4a\x79\xca\xd3\xd7\x6b\x43\x35\x5e\x77\xb3\xb9\x72\x57\xbc\xca\x87\x01\xbd\x4d\x7c\x35\xe6\xeb\x35\xaa\xda\xe4\x50\x9e\x5e\x49\x80\xf2\x70\x35\x50\x36\x6e\xaa\x54\x7b\x20\xf7\x85\xd7\xff\x07\x1e\x96\xad\x0b\x2f\xb5\x25\x63\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe4\xb2\x09\xb9\x5f\x1f\x00\x00") -func web_uiStaticAppleTouchIcon76x76PngBytes() ([]byte, error) { +func web_uiV1StaticAppleTouchIcon76x76PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticAppleTouchIcon76x76Png, - "web_ui/static/apple-touch-icon-76x76.png", + _web_uiV1StaticAppleTouchIcon76x76Png, + "web_ui/v1/static/apple-touch-icon-76x76.png", ) } -func web_uiStaticAppleTouchIcon76x76Png() (*asset, error) { - bytes, err := web_uiStaticAppleTouchIcon76x76PngBytes() +func web_uiV1StaticAppleTouchIcon76x76Png() (*asset, error) { + bytes, err := web_uiV1StaticAppleTouchIcon76x76PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/apple-touch-icon-76x76.png", size: 8031, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-76x76.png", size: 8031, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticAppleTouchIconPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x99\x55\x50\xd4\x8f\xf7\xfe\xdf\xb0\x94\xc4\x4a\x0a\xea\x82\x4b\xc9\x52\xee\xd2\x0b\x48\x37\x88\xec\xd2\x08\xd2\x88\x0b\x12\x4b\x4a\x23\x8a\x48\x48\xb7\x20\x2d\x0d\xd2\x88\xb4\x20\x20\x25\xdd\xb5\x74\x4b\xf7\xf2\x9f\xcf\xe5\xff\xe2\x77\xf7\x9d\x33\x67\xe6\xdc\xbc\xe6\xcc\x9c\x8b\xf3\x3c\x33\x4f\x28\xea\xb9\x0a\x15\xf9\x03\x72\x00\x00\xa8\xd4\x54\x15\xb5\x01\x00\xa8\xfe\xaf\xc9\x08\x01\x00\xa8\x2c\x8f\xb1\x01\x00\x80\xc8\x56\x4e\x53\x0e\x00\x2a\xa2\x28\xae\x2d\x88\x01\x00\x80\x5a\xa9\x6a\x6b\x02\x80\xf7\x63\x00\x08\xfc\x00\x00\x97\x00\x00\x04\x6e\x00\x80\x3b\x02\x00\xb6\xcc\x01\x40\x22\x19\x00\x18\x9d\xd3\x1a\xd0\x4f\x01\x00\x20\xb1\xd4\x50\x51\x04\x6e\xff\xab\xcc\xa6\xfc\x38\x00\x00\x48\xdd\xd4\x34\x95\x48\x97\x40\x8f\x00\x5e\x1a\xf9\xf1\x20\x62\x00\x60\xc1\xab\x29\xca\xe9\xbe\x9d\xde\x4d\xf7\x7c\x0b\x59\xf7\x5b\x5f\x4f\x6f\x6e\xb2\x18\xba\xa7\xc8\x2a\x1b\x48\xa4\x1a\x0d\x7c\x21\xab\x08\xed\x4c\x84\xa1\xb5\xad\x55\xf4\xad\x35\x42\x39\x3b\xb9\xa5\x25\x23\xd3\x25\xd7\x59\xd6\x21\xc6\xcd\xe7\x43\x17\x15\x36\xab\x6f\x34\x12\x99\xb9\xb8\xb8\x62\x4d\x38\x8c\xf5\xb3\x5e\x8b\x68\x13\x49\xb2\xc6\x42\x09\x82\xa8\x80\xa1\xde\x53\x41\x49\xbf\xf9\xab\xf7\x3c\xf4\xef\x5e\xf6\x81\x5f\x09\x50\x38\x4b\x07\x10\xee\xef\x34\x0a\x5d\xcd\xd5\x5d\xcf\x9b\x11\x50\xcb\x77\x74\x58\x4b\xa0\x72\x24\xcd\xb5\xeb\x93\x71\x88\x9e\x4f\xdc\xe0\xb8\x88\xff\xd5\xb0\xa8\xec\x69\x5e\x16\x9d\xd5\x1e\x4e\xce\xde\x7d\xe7\x79\x68\x95\x20\x3b\x4c\xcd\x54\x0d\x4b\x0e\x57\x40\x7f\xcc\x8e\x80\x51\x2f\xc2\x5a\x05\x64\x2d\x0a\x3e\xcb\x3b\x70\xac\x65\xa2\x92\x88\x5d\x51\x05\xe9\xf2\xa5\x1c\xad\x02\x44\x4c\x37\xf4\xae\xbd\x41\x0c\xa4\xf4\x36\xe2\xbf\xc3\x72\xb0\x58\xe4\x63\x93\x50\x32\x10\x0d\xf6\x29\xab\xca\xb0\x4b\x90\xce\x30\x61\xbc\xb5\xa2\x6e\x66\x36\x74\xa4\xc1\xc0\x0a\xc8\x84\x41\x11\xb2\xcb\x05\x9f\xdb\xe7\xee\x35\x76\xc8\xc5\x8b\xf7\xd8\x3d\x32\xda\xe5\x24\x74\x9c\x75\x52\x29\x5d\x09\x9a\x20\x37\x54\x9d\x5f\x47\xe9\xaf\x50\xff\x32\x03\x57\xbe\xb4\xf2\x1d\x44\x2e\x30\x26\xfe\xa6\x23\x67\x97\x35\x1a\x5a\x27\x01\xe4\xb8\x09\x8f\x0c\x43\x95\x1c\x1b\x9a\x93\x4d\x4d\x95\xc5\x12\x69\x09\xce\xe4\x19\xfe\xc8\x53\x93\xd2\x5b\x63\x91\x89\xd2\xe2\xf1\xd2\x02\xad\xee\x51\xe1\xec\x02\xc1\x0c\xeb\x8b\xcd\x80\x82\x40\x54\x42\x09\x7f\x65\xad\xbe\xe1\x84\xde\x10\x15\x67\x72\x57\x43\xb4\xae\x60\x46\x27\xab\x02\x56\xf8\x37\xe4\xa1\xf9\xb4\xcf\x94\x50\xce\xb0\xb5\x76\x1d\x0d\x9b\x27\xea\xa1\xda\xf8\xf9\x1b\x07\x91\x53\xcd\x9a\xe3\x4a\xed\xd1\xe7\xf7\x6f\x3c\xdc\xcc\x4d\xc3\x14\x2c\x88\x6a\x5d\x91\x17\xe3\x4a\x6b\xa8\x0c\x24\x44\x08\x45\xa7\xd3\x96\x26\x3c\xa7\xbb\x36\x39\x64\x3e\xa3\xab\x41\x32\x4b\x26\x1a\xa5\x12\xeb\xf5\x18\xcc\xdd\x87\x20\xbd\xa2\x2d\xf7\xc8\xd3\xa2\xe2\xe5\x9e\xdf\xd8\xb3\x26\x01\x59\x07\x77\x35\x97\xce\xbb\xfb\xd0\x8d\xa1\x28\xc9\xfa\x36\xc0\x18\x8b\xf9\x4f\x0a\xe4\x79\xb1\x4e\x69\x51\x2d\x6e\x1f\xb7\x53\x02\xb3\xdf\xb8\x79\x8e\x06\x31\x4e\xed\x1a\x6f\xcf\x9e\x95\xe4\x1a\xc4\x0f\x4a\x86\xf6\x81\xb0\xdd\x43\x6e\xb8\x28\xa9\x03\x46\xc9\x1f\x5f\xb1\x30\x86\xbf\x94\xd9\x2c\x7d\xf6\xee\x6f\x9c\x9c\x17\x66\x2c\x31\x7c\x5f\x54\xe8\x34\xe5\xc2\x15\x96\x14\xbf\x35\xc1\x0f\x33\xba\xa6\x74\x7e\x1d\xbd\xae\xee\x26\x32\xdd\x71\x9e\xfb\x31\xeb\xe7\x44\x61\xb4\x29\xd2\x00\x2f\x82\xe9\x62\x61\xd1\xdb\xf7\xef\xde\x76\x55\x8c\x4a\x32\x26\x54\x9b\xbb\x39\x1d\x83\xa0\xba\x0e\x31\x67\x6d\xee\x03\x33\xa9\x28\x95\xac\xfd\xd7\xe4\x68\x88\x4b\xc4\xe7\x9b\x32\xa1\xcb\x37\x21\x48\x5a\xa1\x06\xb8\x17\x41\x74\xb2\x9f\x55\xe9\x3e\x85\x43\xe2\x1a\x10\x74\x6f\x8f\x4f\xc7\x1c\x17\x48\x36\x23\x0e\xb9\x54\x93\x74\xcd\x0d\xf8\xfa\x04\x3e\xaa\x10\x2f\xde\x74\xb7\xcc\xd5\xcf\x8e\x61\x2d\xf7\xf3\x5e\xef\x31\x7d\x34\x92\x5e\xf9\xd3\x4d\xb3\xd0\x61\x78\x0e\xce\x70\x76\xa3\xb9\x8f\x26\xb0\x75\xc7\x38\xe9\xbc\xa5\x3a\xa5\x08\x2e\xda\x00\x1f\x71\x2f\x97\xed\x60\x05\x77\x05\xc9\x48\x47\x4f\x8e\x50\x05\x3f\x7d\xf2\x94\x20\x32\x5b\x9f\xb6\x06\x9d\xfc\x45\x79\x97\xde\x2e\x1f\xf5\x30\x38\x96\x29\xc8\x0a\x20\x46\xc5\x66\xc1\x78\x31\x4b\x37\xbf\x66\x88\xe0\xf9\xc8\x60\x9a\x4c\x28\xeb\x85\xaf\x9a\xae\x03\xba\x47\x4c\x1a\x63\x5f\xdc\xb3\x2c\x25\x8c\x06\xf2\x2b\xa9\xd5\x3c\x29\x9f\xe3\x17\x99\x6b\x5d\x0d\xcf\xf6\x81\x45\xd8\x5a\x2d\x2d\x01\xa3\x9e\xb1\xdb\xc9\x33\x06\x38\xd6\x9c\x85\xe2\x55\x3e\x41\x30\x88\x10\xc4\x14\x06\x10\x11\x00\x04\x64\x84\x34\x8a\xef\xa8\xe5\x61\x3d\xd1\x49\xf1\xd5\x50\x15\x23\xee\x64\xda\x10\x2b\x5f\x33\xc3\x8d\xbb\x14\xef\x69\xb8\xe3\x83\xd2\x72\x9d\xb8\x56\x39\xee\x92\xbb\x04\xd8\xff\xeb\x26\xb0\xe1\x3c\xb0\xf3\xfc\x17\x7a\xe3\xfd\x9c\x13\x68\x83\x08\x1b\xed\xe6\x19\x10\x95\x94\x32\xe8\xa6\x3f\x82\xbb\x5a\x8a\xda\xe9\x93\x90\x7c\x82\xa5\xc1\x88\x75\xe4\x03\x92\xa5\x84\xda\xbf\xb2\x2c\xc1\x9f\xa9\xd3\x90\xa0\x5f\x5d\x9d\xa2\x52\x61\xf8\x4b\xf0\xa0\x5f\x31\xc5\xbf\x8e\x01\x55\x2c\x2c\x8d\xc9\xaf\x96\xfd\xfa\x98\x55\xbc\x6d\xf3\xf0\x5d\xc1\xe7\xdc\x07\xea\x6f\x1c\x44\x6a\x4f\xc6\x46\x69\x65\xd6\x72\x8f\xaa\x19\x51\x86\x68\xa6\x4f\xdf\xf7\xa9\xf2\xc0\xa7\x2e\xb6\xca\x79\x64\x39\xd8\x3e\xd0\xa7\x75\xbc\x08\xe7\xad\x1f\x69\x26\x85\x39\x59\xc6\xb4\x64\x4e\x07\x2b\x57\xfd\x5f\x1d\xd2\x9c\x41\xcf\x0d\x84\x7a\x4e\x20\x59\xfd\xee\x43\x46\xc9\xda\x89\x91\x7e\x82\x3e\xb9\xc1\xa9\x72\xd4\x92\x62\x96\x58\xbc\xf7\x99\xcb\xe1\x6e\xf8\x75\x5e\x8f\x09\xe3\xb3\xda\xda\xd4\xc3\xae\xbd\x8e\x70\x66\xd7\xd1\x39\x88\x80\x32\xc4\x25\x82\x4a\xba\x42\xe6\xb4\xbd\xd0\x68\xcf\x80\x20\x52\xfb\xa4\x73\x60\xe6\x01\xb3\xe4\x83\x6e\xf5\x72\x8b\x44\xcc\x27\xd5\x25\x7a\xd7\x7a\x19\xbc\x0b\xe3\xd5\x7c\xa6\xba\x13\x6d\xe5\xb0\x31\xfe\xe6\x27\x7f\xff\xea\xef\x63\x23\x62\x92\x4f\x0a\xe4\x42\x71\x0b\x01\x5c\xf8\xc3\xfb\x8a\xe3\xfe\xf6\x81\x59\xa3\xc3\xb4\x67\x52\xfd\x91\xe9\x1a\xd8\x96\x1c\xd9\xc7\x6f\x38\x3b\x85\x54\xca\x3b\x4c\x91\x09\xd2\x12\x99\xce\x53\x1c\x41\x12\x05\x95\x01\xcd\xfd\x5e\x5d\x2e\x39\x3f\xd3\x3e\xff\xb8\x17\x02\xb1\xe5\x62\xf1\xe1\xc5\x87\x08\x4d\x27\xb9\x00\xac\xc5\x8d\x7b\x3e\xc6\x2f\xeb\xc4\x96\x38\x83\x91\x50\x5e\x6e\x69\xf7\x4c\xb1\x4b\x13\x52\x1f\xef\xb7\xd3\x59\x34\xe6\x05\xfb\xf0\x99\x30\xfc\xcc\xab\x40\xc6\xea\xb3\xdb\xb4\x30\x05\xb5\x83\xb8\xa8\xfd\x70\xfc\xa5\x54\xbf\x15\xc9\x5a\x65\xbd\x07\xfc\x6c\xb6\xe5\x63\xc9\x01\x43\xf7\xeb\x98\x3b\xdc\x7d\x1c\xa6\x9b\x61\xd2\x13\xac\x94\xca\xe5\x57\x49\x56\xb6\x0a\x53\x9e\x7b\xad\xb3\xf7\x72\xae\x90\x20\x57\x2e\x70\xb7\x5a\xdb\xa3\x96\x87\x17\x01\x5d\xc2\x65\x42\x08\x73\x87\x97\x2b\x3e\xb9\xfd\xe3\xfa\x42\x4e\x10\x76\x68\xbb\x59\x2a\xe5\xed\xd5\xd0\xca\xfc\xd7\xbb\xb6\xf7\x8b\xb2\x90\xff\xde\xfb\x14\x34\xb0\xe5\x48\x8a\x09\xb9\x72\x82\xef\x2b\xe3\xb7\x15\xff\x85\x5c\x55\x0e\x76\xa4\xb4\xa6\x55\x5f\x35\xeb\xef\x83\xb6\x9d\x5b\xfc\x22\xcd\xfe\xee\xa0\x0d\x05\x2a\xf2\x25\xaf\x8f\x7e\xb5\x27\x90\xed\x55\x25\xdc\xf4\x32\x9f\x96\x6a\x44\xec\xc5\xf3\xac\xa9\x42\x42\xa5\xd6\x7f\x3f\xf2\x7b\x19\x59\xf1\xa0\x2c\xef\x41\xd8\x8d\xd9\xb4\xe5\x42\x43\x6e\xab\xed\xc6\x8e\xb3\x14\x5d\x16\xd7\x4c\x69\x29\xc3\x3c\xe9\xc4\x20\x63\x40\xc6\x0f\x6a\x52\x1f\xbb\xb7\xc7\xdb\x01\xc9\x12\x27\x03\x94\x24\x10\xe3\xa4\xf3\x5b\xfc\xbd\xa2\x01\xa7\xee\x99\x21\xc6\x60\x1a\x20\x92\xb0\x88\x7a\xf7\xe5\x48\xec\x59\x64\x98\x55\x68\x4f\xd7\x19\x06\x45\x92\x89\x1d\xb4\x7d\x11\x8e\xb7\x63\x5f\xab\x79\x70\xe4\x78\x4c\x52\x13\xa3\xec\xc9\x2a\x76\xc8\x0b\x0e\x66\x50\xd0\xaa\xc9\xd7\xa2\x5c\xf1\x66\x5d\xcb\xf5\x0b\x70\xaf\x5a\xaf\xb2\x47\xa5\x22\x76\xe6\x66\xff\xad\x18\x40\x0e\x92\x06\x7f\x9b\x49\x7f\xd9\xd6\x4b\x9e\x78\x71\x5d\xe3\x50\xf6\xf3\x0b\x81\x68\x14\xe3\x7d\x8a\xc0\xa7\x61\xef\xa5\x24\x1f\xe0\xeb\xd8\x7f\xb0\xa4\x2f\xfa\xfb\xf4\x4c\x78\x22\x3d\x45\x18\x2a\x6f\xd3\x58\x65\xd1\x6b\x70\xe2\x11\xae\x90\x8e\x25\xa6\x20\xa8\xe2\x8f\xde\x61\x6d\xb9\x09\xc6\x75\x27\x9a\xb8\xf2\xc1\x04\x3a\x93\xf3\xc2\xf7\x38\x94\xa3\x06\xd5\xac\x2d\xef\x45\x57\xfa\xc0\x4b\x4d\x62\xc7\xc5\x54\x9f\x8e\x8a\xb7\x2b\x8c\x2a\x74\x3e\x3e\xb9\xce\x5b\x37\x74\xe6\x81\xe6\x2c\xc5\x56\x2a\xef\xf7\x97\xa8\xac\xf5\x4c\x67\xa7\x8e\x6a\x8c\x43\xaf\x0f\xcf\x57\xce\xe6\xff\xf4\xcc\x07\xff\xe0\xe7\x34\x5b\x58\x6a\x28\x9e\x82\x08\x95\x29\x40\xc2\x22\x6f\x8e\xb6\xfb\x62\x9a\x31\xcc\x20\x3e\x7e\x06\x9b\xa8\xf9\xe7\xfc\x43\x01\x0a\x49\x49\x6a\xe9\xdb\x29\x9f\xf0\x13\xa1\x69\xf1\xef\x5e\x7c\xca\x86\x3b\x7a\xcc\x61\x78\x96\xbd\xe9\x9f\x53\xe2\x73\xd3\xc5\x67\x93\x7a\x6c\x3e\x48\x89\x40\x7c\x2d\x33\x4c\xa5\x05\x26\xb2\x5b\x90\x50\x2e\xa5\xaf\xe2\x89\x23\xf3\x0c\x8b\x05\xeb\xef\xdc\xbf\xfa\x18\xaf\x85\xbb\xbf\x7e\xa2\x96\xc1\xf4\xac\xd9\x9d\xd5\xe7\xcb\x68\x9b\xf4\x9a\x79\xc6\x5e\xdd\xb8\x19\xa4\x50\xc1\x4f\x48\xba\xcf\x1d\xe9\x64\x7f\x2c\x55\x69\xc1\x62\x14\xb2\x46\xfb\xad\xc9\xf3\x77\x34\xb6\x5b\xa3\xf0\x74\x7e\xaa\x5e\xf6\x59\xf8\x00\x2e\xda\xea\xcd\xf1\x14\x9d\x78\x67\x8b\xb1\x3e\x49\x58\x73\x75\x9e\xb9\x95\x58\x04\xb1\x4b\xec\xdf\x47\xfa\x23\xda\x1b\x54\x7f\x22\x06\x30\xa4\x6e\xf7\x54\x0e\x3f\x1f\x6d\xd2\xbd\xdf\x9a\x59\xf6\xff\x79\xcb\x6b\xdc\xa3\x1e\xd5\x3c\x67\x88\x90\x55\x42\x8f\x4e\x11\xd2\x2b\x07\xa6\x82\x45\xaa\x32\xf3\x91\xb9\x28\x9e\x53\x1c\xe6\x84\x66\x10\x50\x69\x0a\x68\x9e\xaf\x6d\x7e\xb1\xa0\xf2\x42\x15\xa0\xed\xf2\x2b\x7a\x7e\x17\x45\x4a\x75\x5c\xfb\x78\x9b\x3b\x72\xe5\x0b\x63\x7d\x99\xc0\xc9\xee\xae\x71\x52\xfd\xbe\x83\x40\x1d\x97\x11\x80\xb4\x33\xba\x8f\x1a\x19\xae\xe4\x09\x14\x77\xfb\x9a\xea\x4e\x17\x42\xff\x0a\x07\x4f\x47\x67\xbc\x0b\x85\xb9\x5f\xb2\x4c\x99\x3f\x11\x79\xd5\xd1\xec\x7e\xc7\x68\xb9\x77\x9e\xe4\x6c\x26\xbd\xee\xc9\xc8\x9c\x4b\xc1\x17\x64\xf2\xa9\xe9\xde\x6c\xfd\xd6\x0c\xe1\x99\x5f\x69\x62\x02\x83\x84\x4c\xbf\xfc\x87\x92\x83\x0b\x96\xf9\xe8\x55\x45\xc6\xe8\xe4\x75\x57\x7b\x7e\x5e\x5d\x2a\x84\x78\xd6\xe0\x1e\x5a\xed\x20\x74\xa2\x61\xac\x5c\x94\x8f\xf7\xcf\xdc\x59\x89\xb0\xc3\x0a\x0f\x76\xae\x86\xf0\xd0\x72\x23\x3f\x24\xd7\x7c\xab\x21\xc0\xe2\xf9\xf4\xd1\xa2\xc4\x3e\xc8\xfe\xc8\x82\x6d\x58\x05\xb2\xa9\xf3\x6b\x33\x4e\x81\xe7\x21\xe8\xc1\xd9\x6c\xcb\x37\x73\x76\x2f\x72\x6a\x59\xf3\xaf\x57\xe3\x7f\x7b\xd5\xad\xe0\xe9\x16\x5a\x60\xb5\x18\x61\x42\x9a\x3e\x25\xe3\x54\x50\xd9\x4f\x03\xc3\x09\xfd\xd5\x9e\x42\xfd\xbb\xd8\x6e\xc4\xc5\x1a\x71\x30\xfa\x4b\x40\x57\x6d\xed\x9f\x8a\x52\xe9\x47\x77\xab\xa2\xdb\x02\xf3\xdc\x69\x9a\x04\xa1\x21\x4c\xdc\xb1\xca\xd0\x8e\xa7\xfa\x8d\xdd\x89\x06\x66\xf6\xcc\x1d\xac\x94\x2a\x23\x2a\x57\x7a\xa2\xca\x98\xf6\x93\x4d\xbd\xe0\x8c\x83\x02\x04\x01\x53\x58\x12\x72\x8d\xef\x85\x4a\x08\x31\xb7\x6b\xbd\x19\x53\x64\xe1\x9b\x37\x46\x3a\x18\x27\xe3\xa7\x62\x83\xaf\x04\x35\x5e\xf1\x82\xbb\xd5\x0a\x41\x49\x7a\x1f\xcb\x09\x08\x5d\x77\x4d\x1d\xc1\x0f\x8f\x82\xa7\xc2\x14\x98\x3e\x39\xcf\xd9\x79\x7e\xd7\x55\xa8\xd8\x5d\x0b\xea\x35\xb3\x8a\x0d\x9d\x0a\x63\x9f\x13\x80\x12\xc7\xf1\x3c\x94\xf4\x10\x5e\x54\x3a\x82\xf3\x6c\x7e\xb4\xd1\xc7\x05\x06\xf5\x41\x1e\xa2\x52\xea\x88\xe0\x95\x33\x62\x13\xf7\x6f\x1a\x1f\x8b\x23\x8a\xe7\xc2\x84\x53\x56\x06\xb5\x8a\xde\xbc\xc1\x14\x66\xda\xad\xcb\x05\x16\x1c\xc8\x12\x91\xd3\x12\x02\xad\x43\x69\xe0\xaf\x50\x78\x28\x9d\x9a\x78\x2a\x09\xd1\xc7\xab\xdd\xfa\x09\x51\x8d\xde\xc9\x92\x8e\xb6\x97\xc9\xf4\x5c\xb4\x45\xa9\xd9\xad\xb5\xd8\x8a\xcd\x81\x38\x66\xce\x9e\x7c\x49\x92\x94\x5f\x7e\xed\x28\x7a\x39\x00\xbd\x55\x5d\x56\x5a\xed\x50\x90\x22\x50\x42\xe1\xa2\x5d\xd4\x24\x86\x3f\x34\x2a\xb3\x35\x51\x73\x26\xfb\x88\x53\x12\x9d\xd1\x1c\xdb\xd3\xaa\x43\x9d\x74\xa6\xf2\x0f\x55\x5d\xd6\x4e\x0e\xd0\x74\x17\x1f\x8a\xb6\xde\x78\x6c\x6f\x29\x79\x79\xe5\x50\x10\x97\xf9\xf0\x1d\x5b\x4b\xba\x16\xdc\x4e\x1b\x1e\x4d\x86\xe7\xf3\xf3\x33\xe0\xe1\x8e\x95\x65\xc5\x03\xc7\xcc\xbd\x43\x6e\x1b\x3d\xa7\x93\xe1\xe9\x13\x6b\x04\x49\x39\x18\xbc\x36\xc2\x3d\x73\xe2\x76\xcc\x38\x4d\x32\xc9\x4e\xf2\x72\xfc\x09\xb8\x5b\xed\xda\xab\xe6\x8a\xde\xdb\xe8\x8e\x11\x3a\x93\x45\x2a\x8c\x43\x41\x49\x8e\x9a\xa8\x13\x91\xd3\x5e\x30\x39\x10\x53\x11\xe0\x9d\xd0\x42\xdf\xb8\xb7\x8f\x8a\x1f\xe9\x22\x55\x0e\xb1\xca\x5b\x98\xb7\x59\xd0\x95\xd4\x5c\x17\x17\x38\x5f\x3e\xdd\x28\x97\xf8\x76\x42\x43\x4f\xc2\x46\xb7\xe0\x07\x72\x45\x89\x6a\xd6\x72\xee\xe2\xa2\xdb\xb9\x97\xc2\x5e\xc0\x2d\x7b\x8b\xc2\x82\xd4\x93\xb9\xbe\xd5\x1b\x2e\xbc\xfe\xbe\xad\xbe\x73\x08\x13\xba\xcf\x70\x1f\x0c\xc8\x22\xf9\x4e\xb5\xcb\xeb\xb2\xda\x27\x0c\x77\x8b\x9e\xb4\x6d\x8a\x93\x3b\x24\xb4\x3f\xfb\x17\x7a\xa3\x93\x70\x80\x76\x52\x59\x6e\x7b\xb4\x97\x63\xe7\xab\x18\x7c\xd5\x10\x90\x37\xdf\x04\xb9\xf5\xb3\xbd\xb7\x8f\xc6\xb0\xdd\xc7\x4f\x59\x34\x54\x3c\x53\x28\x63\xda\x35\x4b\x46\x30\x25\xc8\x73\x8b\xf0\xa3\x79\x31\x98\xf1\x5b\x59\xa3\x87\x6f\x60\xfe\xab\xfd\x71\x4d\xe5\xcc\x14\x1e\x27\x47\x15\xf4\x69\x96\xcd\x0a\xd8\x3e\x9c\x6b\x62\xf5\xf8\xd8\xdc\x58\xed\xeb\x11\xf2\xe1\x98\x33\xc4\xde\xa8\x24\xa3\x2d\x25\xd7\x9a\xf7\x6f\x3a\x9f\x06\x3f\xb3\xfa\x8b\x69\x19\x79\x53\xf5\xc6\x69\x11\x2b\xbd\xd0\xe3\xcd\x25\xb7\xae\x4c\x2b\x15\x85\x32\xe6\x2f\xc1\x48\x12\x36\xf2\xe2\xad\xef\x54\xf0\xda\x38\x91\xdf\x06\x4c\x68\x45\xcc\xe2\xae\x4e\x7e\xc0\xe9\xf4\xca\xa6\xa9\xd2\x9f\x8d\x97\x99\xaa\x82\x42\x34\xbb\x3e\x37\x1d\x8b\xcd\x03\xad\xfd\x9a\xc5\x78\x6f\xcf\xa9\x69\x92\x68\x31\x4f\x11\xd8\x9f\xbe\xb6\xe6\x14\x2b\x5f\x68\xac\xdd\xfe\xd1\xf5\x54\xaa\xfd\x6e\xaf\x36\xa2\xb3\x70\x92\x5f\xfe\xb9\xa5\x16\xd5\x60\x29\xb2\x4c\x51\xf7\x05\xb2\x9b\x07\xbe\x57\x81\x69\x8e\x79\xf2\x2f\xd4\x6d\x7d\xa4\xdc\x43\xea\x88\x24\x43\xb5\xb8\x51\x11\xf7\xe1\x5d\x9d\x56\x70\x43\x59\xb5\xff\x41\x99\x4d\x80\x07\x85\xf2\x2a\xe7\xbc\x99\xda\x41\x50\x43\x26\x1a\x2b\xfc\xa4\x6b\xca\xbe\x93\x95\x0b\x99\x10\x89\x1f\xb6\xa6\x8d\xb1\x28\x93\x34\xfe\x8c\x0b\x0c\xe2\x2b\x02\x1b\x67\x27\x9e\x7f\x7e\xe9\xfc\xaf\x62\x74\xa8\xcb\xdf\x1d\x2f\xb6\xff\xea\x3e\x42\xb0\xed\x99\x62\x94\xf4\xe9\x53\x46\x8d\x9a\xeb\xfe\x3d\xdf\x0d\x10\x0f\xaa\x34\x6e\x34\xde\xe9\xf4\x66\x76\x97\x47\x36\xbd\x9a\xe4\x4b\xc8\xef\xce\x1f\xed\xff\x70\xf5\x2f\x28\x48\x8d\x76\x75\xc6\x04\x65\x54\xd3\xfe\x1e\x74\xec\x7b\xfb\x37\x99\xbd\x17\x2c\x63\xfb\x76\xa1\xa3\xd5\x34\x7c\x92\xe1\xb4\x96\xa3\xcc\xad\x4e\x97\x6c\x3c\x56\x49\x72\x36\xf5\x37\xea\xe7\x2c\xae\xf3\xb4\x50\x63\x14\x03\x90\xd5\x18\x86\x5f\xa0\x73\x90\x2b\x1c\xf0\x2e\x3d\x62\xdb\x6c\x61\xb9\x27\xda\x07\x80\xd7\x32\x6e\x1f\xfc\xd5\xc7\x7f\x81\xaf\xc5\x20\x74\x55\xeb\x66\x65\x35\xeb\x34\xcd\xf5\x73\x1f\x99\x1d\x7b\x69\x69\x91\x2f\xa6\x70\x9a\xad\xef\xb4\x02\xe4\xd0\x67\x53\xe1\x90\xe6\x15\xa5\x1e\x8f\xe4\x4f\x8d\x78\xf6\xa2\x93\xc6\x2a\x21\x57\x02\x8b\x84\xcd\x3a\x25\xab\x98\x1f\x1f\xaa\xae\x0f\x9a\xc5\x19\x32\xcb\xb7\x4d\x3a\xe3\x46\xe3\xe0\x55\x16\xee\xcb\x9c\x41\x50\xea\x77\xd9\x94\x5e\x18\xe5\x00\x92\x2e\xae\x44\x5a\x9b\x81\x1d\x07\x14\x2f\x66\x41\x5f\xc6\xdd\xce\x79\xd7\xf4\x39\x9c\xbf\xc7\x83\x53\x36\xad\x4e\x0c\x13\xde\x36\x51\x4f\x1f\xcd\x8e\x51\x4a\x77\xa0\x77\x1d\x2e\x18\x81\x92\x82\xc9\xe0\xd7\xa7\xb2\x25\x62\x21\xa8\xd4\x9d\x08\x4f\x93\x1d\x9f\x9b\xb7\x23\xeb\x1e\x7d\xce\xc6\xa6\x96\x83\x11\x88\x90\xcb\x8b\x5e\x39\x18\x77\xfd\xe0\x2b\x23\x23\xc7\x9f\x5e\x02\x34\xce\x5a\x33\x5f\x4d\xf5\xb7\xbc\xcc\x5f\xfe\x33\x3b\xb3\x15\x16\x03\x75\x78\xf9\x8c\x54\xbf\x27\x32\x5a\x3d\xb9\xbd\xe1\x5f\x8e\xda\x4b\x6f\x66\x61\x91\x85\x48\x26\x7a\xdf\x5a\x36\x89\x2e\x7f\xd5\xc7\x72\x88\x17\x38\x92\x77\x3d\xd5\x1f\xb5\x7b\x96\x5d\xdd\xb1\x68\xbd\x30\x4f\x27\xe1\x9f\xc9\xd6\x93\x74\xeb\x5c\xef\x78\x46\xf2\x27\x01\x7b\xc4\x19\xd9\x21\xaf\xf5\x48\x7d\x6f\xf7\x87\x28\x97\xfc\x4e\xde\xf3\xa2\xf1\x7d\x9f\xb7\xef\x5d\x0d\x96\x85\x4d\x33\x60\xff\x66\x5b\x1e\x54\x5a\xae\xa4\x58\xe9\x08\x71\x03\xb4\xae\x7b\x76\x87\x01\x5e\x1a\xdf\x8e\x5f\x9f\xf6\xbb\xaf\x46\xed\x82\xa5\xdc\x11\x7e\x2e\x1b\x39\x4f\xd5\x81\x36\x3f\x8f\xf5\xbd\xc7\x0b\x0a\x0f\x85\xb9\x9c\xc6\x60\x60\xce\xb6\xc2\x88\xcd\xdf\x26\xd5\xe8\x3b\x21\x2a\x51\xa7\x1c\x24\x63\x2c\x0f\x8a\x39\x46\xa5\xa8\xb7\x58\xc8\xaa\x45\x9e\x5f\x99\x61\x39\x44\x4f\xfb\xa5\xfa\xb2\xb8\xa7\xa8\xad\xbb\xcd\xd2\x20\xb7\x03\xa6\xe2\x03\xde\x32\x92\x9a\x4c\x04\xea\x74\xcd\xf0\xea\xa1\xde\x5e\x4b\x78\xda\x5a\x83\xf2\x2a\x32\x04\x46\xed\x8e\xd2\xf5\xab\xd8\x8e\x7c\xdc\x35\x90\x57\x20\x75\xb4\x41\x41\xbd\x3d\x5d\x24\xeb\x87\x6d\xb0\xfa\x24\x25\xc5\x47\xac\x13\xd8\x51\x90\xca\xb6\xdd\xa0\x5e\xe4\xaf\x9f\x30\x5c\x13\x05\xe1\x31\xce\xf6\x98\x8e\x06\x51\xc0\x78\xad\xb8\x9e\x6c\x34\xb7\x50\x6b\xef\x74\xf4\x68\x8c\x84\x81\xc8\x5d\x36\x36\x7f\x8d\xc0\x96\x41\xf1\xf4\x8f\xfc\x2f\xa9\xf5\xd6\x33\x6a\xd3\x1e\x42\x11\x57\x89\x12\x33\x97\x76\x58\xbe\x27\xc4\x3a\x28\xfd\x7f\x6c\x92\x34\xce\x85\x10\x4f\x81\xa4\xce\x8a\xa6\xf9\x8a\x26\x16\xf4\xe2\x95\x5e\xcf\xab\xcf\xe3\x31\xec\xa5\xa2\x99\x0f\x5d\x51\x1f\x15\x7f\x91\x73\x8b\x7a\x7b\x71\x3c\xca\x80\x48\xcb\x14\xa8\x0a\x86\x99\xdd\x86\x5b\x4b\xaa\xc4\x3a\x1d\x5b\xb7\xe8\x93\x0b\x55\x98\x65\x54\x97\x99\xc6\xf7\xf8\x10\xfc\x45\x1a\x2d\x7f\x11\xc0\x0b\x3c\xbc\x6c\x72\x28\x6d\xc1\x8c\x89\x82\x72\x7c\x91\xe7\x8a\xa9\x54\x85\xf3\x46\x2b\x84\x42\xf7\x52\x3c\xae\x7e\x41\x36\x0d\xe2\x5a\x24\xfd\xbc\x0d\xf3\xd4\x46\x9d\x85\xc3\x14\x6e\x9c\x1d\x74\xdb\x5d\xb8\xfb\xd5\xb6\x22\xfd\x5d\x94\x54\x2b\x04\x03\x6e\x5a\xef\x70\x2a\xd9\x24\x32\x88\xa7\xde\x0b\xb1\xfc\xd8\x18\x67\x32\x74\xd9\x5f\x38\x88\xb0\x46\x7d\x24\x86\xf1\x1a\x34\x09\x1f\x1e\xf5\xe8\xb0\x98\xe9\xeb\xea\xef\xcb\x5b\x17\x0c\x93\x9b\x23\x5f\x74\x66\xcd\xa3\xca\x3d\xb3\x79\x6a\x98\x73\xc9\xe2\xbb\x7b\x23\x3e\xc6\x74\x8c\x12\x93\x42\x11\x26\x2f\x23\x3d\x64\x97\x79\x8c\x1f\x44\x2a\x63\x0b\x16\x02\x57\x96\x9f\xca\x53\x7d\x98\x93\x97\x38\xd4\x26\x0f\x3d\x15\x77\xee\x8d\x67\x26\x22\xe7\xe3\x67\xb0\xf3\x17\x5a\x61\x1b\x2c\x19\xff\xe2\xfa\x69\x3c\x06\x64\xf0\xd3\x67\x5c\x0a\x9d\xa0\x0e\xcb\x1f\xa3\xe9\x0e\xaf\xfa\x59\xdc\xe0\xf6\x82\x4b\x60\xa6\x3f\x7c\x93\x53\x28\x21\x97\xf4\x93\xd5\xfa\xf0\x85\xb6\xb6\x6a\x0e\x72\xd4\x20\x24\x3a\xee\x7a\xa7\x57\xd4\x1e\xa8\x43\xe1\x19\x2e\x55\x26\x08\x28\x4f\xc4\xe0\xca\xad\xc2\xec\x44\xe8\xbd\x43\x69\x37\x9d\x53\x13\xa5\xda\x93\xb1\x3d\xad\xf2\xd4\x25\x16\xf2\x0f\x41\x94\xc4\xe2\x13\xf2\xbf\xa3\xe3\x3a\xb2\x60\x13\x22\xbf\xd3\x33\xa2\x73\x36\xa7\x5a\x3c\x3e\x57\x09\x7e\x93\x98\xd7\x53\x73\x41\x69\x03\x98\xc0\x98\xea\xc6\xd2\x83\x9d\x80\x6b\xb4\x2a\x86\xfb\x6e\xc2\x1d\x9f\x94\xf2\x6a\x11\xab\xd7\x89\xae\x06\x71\xb1\x2b\x0a\x5a\xb5\x1a\x16\x6b\x97\xb7\x59\xad\xb5\xcd\x0d\x2b\x01\x7b\x7d\xb4\xec\xf0\x60\xed\xbe\x2c\xfc\xb1\x8f\xc2\xb0\x35\x6d\x66\x20\xcc\xd3\x68\xc2\xc0\x78\x42\xcf\xb2\xec\xfe\x9a\x4a\x30\x9d\xce\xbe\xe9\xf3\xc6\xe1\xce\xf4\x0c\x54\xec\xd3\x56\x74\xf6\xac\xcd\x8c\xc9\x76\x83\x3d\xb1\x51\xe1\x1c\xa9\x56\x31\x32\x4d\xb8\x15\x25\xb2\x7d\x47\x7c\x40\x4e\x4e\x50\x11\xd2\xd9\x1f\x1e\x6e\xbc\xf5\xd1\x5d\xca\xd6\xac\xda\x2b\xb8\x8a\x67\x99\x1b\xd6\x8a\x1e\xf4\x2b\x2e\xe4\xc4\x6f\x94\xcf\x5b\x69\x81\x35\x2a\x84\xd9\x14\x64\x97\x57\xd8\xa2\x96\xe9\x34\xe6\xce\x4a\xfa\x92\x2b\x49\xd8\xfa\xb2\xe6\x17\xb5\xa6\x7f\x54\xe5\x4c\x34\x50\x2a\x07\xf8\xfc\x69\xa8\x2d\xda\x70\x12\x7d\x75\x67\x27\xda\xea\xcd\x46\x17\xa9\x25\xfc\x6b\xb3\xc7\x4f\x8e\xe0\xfb\xb5\xf6\xc2\x27\xa7\x4a\xb7\x06\x75\x53\x62\x13\x6c\xa9\x7f\x61\xe0\x51\x39\x76\x64\x58\x01\x75\x08\xbd\x05\xbd\x72\xb7\x87\x70\xb4\x98\x6a\x88\xfb\x66\x93\xf1\x6f\x2d\x93\x68\xa4\x1f\x25\xcb\xbd\x8c\x2a\xbc\xce\x97\xbf\x3b\xdb\xfc\x94\x86\x13\x7a\x46\xfa\x24\x1d\x31\xf5\xc8\x07\x3a\xc8\x3b\x67\x2f\x42\xff\xfb\xd9\xaf\xa6\xc6\xf2\x4f\xcd\x1e\xdc\x9e\x6e\xeb\xdc\xe4\x43\xe1\x02\xa4\x3e\x9d\x6d\xaa\x9b\x75\x1e\x9a\xf6\x6e\x21\x8d\xf4\xde\x45\x52\x87\xd7\x6e\x59\x77\xa8\x97\x06\xb4\x22\x02\xae\x4e\x0e\xf7\xe7\x2d\xc6\xe2\x07\x75\x96\x53\x41\x47\x2f\xf4\xc6\x51\xda\xb8\x34\xc8\x84\xab\xf9\x60\xe8\xd6\x6e\xa9\xde\x8c\xf1\xf1\x05\x1f\xf0\x00\xef\xe6\xaa\x16\x5e\xe4\x6c\x26\xbb\xb4\x62\x99\xe1\x60\x55\x6a\xa5\xf2\x3e\xcf\x9d\x66\xaf\xca\x06\xfd\x11\x09\xa1\xc0\x6f\xcc\xf1\x7d\x75\x6f\x37\x17\x3e\xff\xe5\x87\x7b\xed\xbb\xd5\x92\xfc\xeb\xa6\x82\xb1\x2a\xf8\xf1\x27\xf6\x8a\xc5\x38\xd2\xfc\x94\x35\xdd\x4c\x34\xa4\xbe\xab\x48\xb0\xff\x63\xdf\x3f\x5c\xfd\x34\xc2\x77\x8e\x75\xe7\x78\x0b\x3e\xb7\x5b\x3a\xc1\xea\x60\x61\xae\x60\x75\xa4\x50\x97\x5d\x54\x87\xd9\x52\x6b\xf6\x7a\xb7\x9d\xc2\xfa\x34\x62\xf7\x81\xe6\x4e\x13\x7e\x91\x24\xcc\xe5\x7a\xac\xec\xbe\x5f\xc4\x54\x9c\x82\x51\x24\xa8\x2a\xd3\xbd\xce\x32\x5f\x97\xa4\x47\xf6\x39\x2d\x09\xfb\xf4\x5e\x36\x45\xf3\xef\x22\xaa\x85\xfa\x05\xe9\x9f\x0e\x0e\x68\x1d\xf7\x99\xdb\xcb\x92\x52\xdd\x5b\x80\xa2\x5b\xad\xaf\x82\x57\xc8\xe9\x19\xb4\x1d\xb2\xd7\x32\x40\xc6\x4b\xac\x63\x57\x49\xa8\x80\x7e\xfe\xa8\x29\xdb\xe2\x28\xdb\x8f\x57\x32\xc7\x76\x26\x84\xcc\x6f\xc9\xc4\xd3\xe6\x52\xfb\x87\xfb\xea\x5a\xc0\x45\xa3\x0f\x36\xa5\xb6\x57\x43\x1f\x3e\x75\x38\xf9\x4b\x49\x73\xec\x62\xe3\x4b\xdf\x3f\x9c\xa1\x89\xa6\x06\xe6\xa9\xff\x1c\x94\xb5\xcb\x30\x41\xa7\x16\x41\x3b\x81\xda\x33\x5a\x0e\xa2\xa7\x4e\xbe\x94\xa2\x0d\xc0\x68\x5b\xbc\x55\x18\xcf\x7d\xe4\xc6\xa8\xeb\x60\x5f\x71\xef\x47\xa4\x0c\xbe\xdd\xd9\x27\x89\xad\x48\x6a\x1a\x5a\x32\x8a\x7b\xb9\x6d\x10\x70\xa1\x65\x32\xc6\xc9\x03\xef\xb9\x4f\xa6\xf7\x15\x21\x4b\x6c\x7a\xb6\x4d\x4a\x44\x32\xaa\xe9\x9a\x9c\x3e\xba\xa8\x97\x73\x73\xfc\xae\xe4\x90\x0d\x40\x0b\x71\x7c\x52\x10\xc0\xb2\xa9\xdd\x87\x81\x89\xe4\xa8\x3b\x16\x1a\xdf\x76\xd1\x05\xf8\x6c\xae\xb2\xaf\x07\x1c\x39\xd6\xdb\x22\x7e\x2a\x3a\x53\xe8\x0d\x6b\xcf\xbc\xbd\x3d\x2d\x62\x2e\xfd\x20\x12\x25\xa5\xc2\xcf\xb1\x86\x76\x1f\x95\x8f\x97\x28\xbf\x7a\xb7\x24\xfd\xd0\x14\x87\xa2\x8b\xb7\x7b\xa9\x93\xd7\xe6\x69\x79\x0f\x57\x70\x90\xad\xaf\xad\x79\x89\xe6\xee\xfb\x97\x14\x14\x1c\xfd\x23\xd8\x65\x26\x49\xa6\xde\xf5\xa0\xd4\x5e\x25\x32\xed\xa1\xb4\xf3\x63\x37\xc7\xc0\xfb\x51\x61\x18\xbc\x9d\x2a\x85\xb2\xf9\x87\x39\x4b\xf8\x19\x43\x79\x49\xe9\x6c\x43\xa5\x9b\xa6\xdf\x3d\x33\x74\x93\xac\x43\x6e\x1e\x27\xc2\x75\xf3\x65\xe0\xa4\x53\x61\xcb\x00\xe2\xb3\x57\x49\x6d\xed\x83\x32\x9f\x8f\x36\xa4\xa6\xb8\xef\x65\xe5\xc3\x7f\xc5\x76\x71\x50\x9e\xa7\x6f\x2b\x14\x3e\xd3\x81\xe8\x6d\x4e\x47\xa3\x8f\xc6\x6d\x52\xf7\xf3\xe0\xe3\x96\x67\xb1\x3f\xa7\xed\x9c\xcc\x06\xbb\x52\x8e\x15\xe3\xa9\xb8\x3a\x84\xa3\x00\xd9\x69\x8c\x46\x4c\xef\x96\xa7\xce\x13\x63\x7c\x90\x55\x3e\xee\x7a\xa5\xb2\x83\xf7\x25\xce\x50\x74\x82\xa3\x68\xc0\x69\x41\xd0\x86\x91\x8a\x7a\x62\xae\xbf\xd0\x8f\xf1\xa2\x37\x2b\xc2\x80\xb0\xa3\xc6\x47\x7c\x0c\x31\x92\x35\xe8\xf6\x9a\x91\x74\xaf\x26\x76\xcc\x34\x81\xe5\xc9\x9b\xf5\x02\x88\xad\xad\x30\x68\x90\xd3\x20\x67\x93\x5f\xba\xa6\x77\xeb\x5a\x0e\xce\x7b\xe2\x8f\xff\xb6\xb8\x7c\x25\x58\x7a\x5f\x80\x6b\xf7\xaa\xbd\x7f\x24\x91\x2f\xdb\x2e\x3c\xac\xa5\xd6\xef\x7a\xa8\x69\xa4\xdc\x0e\xbd\x38\x39\xb4\x78\x73\xad\x39\x3d\xfb\xb6\xe6\x27\x86\x80\x3c\x3f\x29\xa1\xe8\x0d\xdf\x71\xf0\x79\xb8\x5c\xc2\x67\x27\x24\x6a\xf1\xe2\x59\xf1\x2d\xaf\x71\xbe\x48\x19\x1d\xc3\x1e\x2e\x60\x76\x73\x76\x2c\x79\xd3\xee\x6a\x9c\x73\x75\xe1\xe7\x88\xc7\x11\x2e\x2a\x85\x93\x20\xe8\xea\xcd\xbc\x8c\x99\xc1\x65\xbf\x31\x36\xe3\x77\x0f\x56\x7f\x0f\x91\xb8\x06\x64\x62\x45\x44\xf2\x57\x89\xba\x20\xbb\x75\x65\xa5\xa3\x9b\xee\x4f\x84\x81\x60\x9f\x47\x86\xb6\x98\x42\xd5\x9d\xcd\x57\x5a\x51\xaa\x16\x24\x04\x00\xbc\xd2\x68\x42\x5f\xc2\x53\x64\x88\x8a\x73\xaa\xb1\xa7\xfc\xe3\x63\xe1\xf8\xef\x5c\x21\x23\x5c\xa4\x9d\x43\x44\xea\xcb\xd6\x35\x83\x0d\xcd\x61\xa6\xfa\x12\x0f\xc5\xfa\x8d\x18\x98\xef\xa9\x2c\xbf\xbf\x2b\xc5\x6b\x82\xb6\x59\xae\x2c\x29\x32\x3c\x1e\x19\x7c\xdd\x0d\x77\xb5\xca\x92\x15\xef\xe4\x55\x03\x13\x00\x35\x3a\xc9\x52\x9e\x0b\x7e\xf7\xd9\x64\x1f\xed\xf7\x19\x79\xdd\xe2\xfc\x7f\x5e\xa6\x04\xb7\x20\xda\xbe\x0e\x68\x94\xb4\x06\x11\x12\x27\xc7\x3d\x26\x74\xcc\x9e\x0d\x16\xc7\xf0\x2f\x08\x90\x1c\x1f\xce\xa4\x27\x20\x81\x77\x46\x13\x06\x85\x3b\x61\xed\x61\x3d\x75\x27\x51\x82\x82\x3d\x8f\xaa\x3e\x3f\xfc\x5e\x56\xc6\xa1\x9b\x34\x66\x01\x3e\x25\x6f\x62\x4d\xf8\xac\x49\x69\x5b\x8b\x83\xf2\x4a\x1d\xbb\xd4\xd8\xde\xc3\x19\xb2\x1d\xfc\xf6\xca\x79\x34\xa5\xc8\x5f\xc5\x40\x9a\xe9\x7c\xb5\xf6\xe2\x24\x86\xbc\xa7\x69\x5d\x71\xac\xd3\xe8\x59\x84\x52\x88\xb3\xf0\xb6\xa6\x88\xb5\xac\x03\xe1\x8b\x66\xb1\xf8\x49\xd7\x81\x8d\x7c\x51\x74\x30\x18\x07\x05\x39\xce\x7c\xb4\xab\x29\x65\xa5\x0d\xb8\x88\xc8\x94\x98\x4a\xeb\xa9\x91\x35\x8a\x79\x1c\x6b\x32\x48\xe4\xe9\x68\x02\xd1\x28\x80\x77\x15\x52\x49\x59\xb6\x23\x16\x27\xa7\xa8\x03\x4a\x8d\x6d\xa6\x15\xf0\x2e\x30\x3c\x0e\x73\xbb\xe0\x20\x62\x8f\x5e\x0f\xa4\x9c\x1a\x58\xda\x2c\x52\x10\x35\x9e\xd0\x5b\xe5\x86\x7a\xe9\x2b\x7f\xbf\x8b\xd6\xbe\xfe\x67\xe0\xdf\x05\xd9\xd1\x9b\xfa\x0a\x73\x27\xf1\x3f\xc6\xf4\x86\x1d\xfa\x3e\x1d\x6e\x07\x85\xb9\xec\x88\x71\xe5\x97\xf3\x6e\xd7\x9e\xb3\x4c\x2f\xfa\x39\xbf\x94\x8e\xf5\xda\xca\x41\x8e\x3e\xff\xe1\xe8\xa4\x5b\x6e\x86\x7d\x4a\x73\xb3\x8a\xad\x89\xe9\x12\x7b\x7a\x20\x93\x96\xee\xeb\xbb\xa0\x6b\x03\x25\x63\xeb\x9a\x5c\x8c\x23\xcd\x1e\x6c\x49\x8a\xea\x16\x98\xfb\xc8\x3e\xf3\xfb\xc5\xc9\xb8\x36\x91\x5c\xac\x93\xa9\x2a\xbe\x42\xc5\xef\xea\xe1\xbd\x2c\x19\x08\xbe\x33\x86\xcf\x5f\x28\x3a\x8e\x6d\x10\x62\x65\x7b\xb8\xf5\x37\xd0\x11\xd7\x7a\xe3\x31\x31\xc7\x3b\xba\x8f\x61\x78\x4e\x79\x7b\x85\x4e\xe0\xc2\x8b\x09\x16\xde\x24\xbd\xf2\xd5\xc0\xbd\x65\xab\x58\x4f\xdb\x8b\x6c\xf0\x7e\x62\x0d\x91\x4c\x1c\xd6\x70\x65\x7a\x7a\x1e\x1e\x97\x95\x7f\x37\x25\x4e\xe3\x5e\x66\xee\xf7\xf4\x22\x70\xee\xa4\xce\xaf\x2d\xba\x9a\x42\x45\x2d\xec\x22\x27\xf8\x4c\x8a\xd7\xf5\x90\x57\x6d\x47\x8a\xf1\xd6\x2f\xbf\xa2\x79\x33\x98\x92\x9e\x83\xbb\x84\x27\xae\x05\xa2\x51\x5c\xce\x54\x4e\x9b\x5e\x27\x1b\x69\x9c\x64\x34\xca\x69\xef\x7f\xbb\x24\xce\x7d\x5d\xf5\xab\xaf\x82\xf7\xd2\xc3\xaa\x0d\x40\xd1\xeb\xd5\x51\xc9\x95\x72\x14\x79\x5e\x8a\xa4\x77\xbe\xbb\x7a\xf3\xf5\x6a\x22\x33\x11\x52\x44\xf1\x69\x39\x74\x71\x79\x9f\x0c\xa4\x4c\x22\xcd\xc0\x67\x10\x47\x51\x84\x51\x83\xf3\x8e\xcd\x51\xe8\x04\x2c\x87\xfa\x69\xcc\x09\x97\x7d\x37\xb2\x18\x8c\x78\xee\x7f\xeb\xe0\x70\x90\x46\xc1\x32\xf3\x6d\xfa\xbe\x82\x3f\xf0\x79\xa6\x6e\xbc\xbf\x12\xb5\xa1\x7b\xcc\x48\x6a\xc7\xd9\x94\xd1\x12\x0a\xeb\xef\xc7\x8a\x5d\x9c\x76\xfe\x8d\x02\x6f\x48\xdb\x3f\x01\x4a\xec\x79\x6d\xf9\x2a\xad\x17\x0c\x8b\xf9\x23\xa5\x25\xbd\x04\x7e\xbe\xd0\x8f\xff\x29\x33\x92\xfa\xc5\xdd\xe4\x5d\x05\xa3\x56\x88\xbf\x37\x4a\x61\x74\xbe\x9d\x24\xef\xce\x2d\xa3\xd8\xd4\xf4\x3d\x5b\x17\xf6\x9a\x6a\xdd\xf3\x5b\x47\xfb\xd3\x08\xf9\xe9\xd6\xe6\x93\x52\xa7\xcd\x5b\x59\x20\x5a\xc4\xb4\xcc\xde\xf7\x52\x17\x9f\x82\x82\x4e\x48\x7d\x04\xcc\x1d\xc0\x4c\x09\x4d\xd5\x88\x36\x93\x7b\xdb\x0d\xea\x8a\x41\xb8\xd7\xb8\x9c\x06\x6f\xa0\xad\x51\x7f\x62\x6f\x95\xf3\xd6\x2a\xa4\xf6\x85\xa4\x50\xf6\xe0\xd4\x9f\x6a\x84\x4a\x79\x04\xfe\x97\x06\x0f\xaf\xaa\x3f\x99\x3a\xdd\xbc\x8a\xe8\x39\xcb\x54\xa6\xe0\x6d\xd7\x67\x10\xbd\x0d\x5e\xfb\x3f\xb7\x59\xa4\x40\x89\xde\xab\xac\xd6\xfd\x7b\xd2\x79\xd1\x4b\x93\xae\x82\x85\x92\x53\xde\x5c\x3b\x6f\xdc\x36\x7f\x29\x5e\x80\x65\x3a\xef\x83\xec\xc3\xf1\xde\x39\x31\x15\x13\x8f\xbd\x5e\xb8\xfa\xfe\x9b\x6a\x75\x35\x2b\xf6\x33\xf6\x2b\x9b\x90\x33\x0d\x7b\xea\xea\x8b\xf3\x71\x5a\x95\xd8\x4a\xde\xd0\xf0\xcf\xf7\xe8\xb3\x39\x08\xf0\xa2\xd0\xcb\x70\xcd\x7c\x4c\xbf\x3a\x49\x91\xdf\xd5\xf2\x43\x65\x43\xe8\xae\x19\x25\xfb\xfe\xb6\xb4\x5d\xe8\xc2\xed\x2a\x3f\x4f\x15\xa5\x2f\x25\xf1\xe3\x85\x1f\xc8\xc3\xbb\x2d\xb6\xe0\xd3\x07\xb1\x3d\xba\x9e\xb9\x28\x3b\xff\x8b\xc1\x35\xdb\xba\x43\x6c\x01\xcf\xa3\xd6\x8a\x63\x9f\xf7\xdd\x11\xee\x49\xf9\x50\x62\x9d\xbe\x18\x5e\x40\xa1\x50\x42\x06\xfa\x99\xef\xb9\x24\x2f\xb4\xfd\x2b\x73\xfa\xf9\xc0\xfc\x28\xbe\xb7\x96\x6a\xac\xc0\xc1\xbf\x24\x6f\x4d\x1e\x42\x46\x5e\x60\xc3\xa9\x1e\x64\xfb\x53\x59\x24\xad\x82\x1b\xc3\xea\xe7\x2b\xcb\xf4\x09\x25\x22\x3d\x6b\x3f\x92\x47\x32\x64\x92\x8d\x90\xdf\xe9\x1c\xa1\x8b\x6a\xea\x71\x8f\x0a\xff\x85\x56\xfc\x58\xdb\x28\x7e\xba\xd9\x9b\xf6\x09\x24\x07\x44\x1a\x25\x26\x85\xfe\xc2\xe2\x2b\xbf\x19\xfa\xdc\x3f\x4c\x0a\xea\x8b\xf1\x0f\xcc\xd1\xad\x19\x2c\x20\x94\x11\xcf\x91\x2d\xb3\xb5\x3c\x3c\xf0\x64\x6b\x79\xfa\x44\x65\x41\xc6\x64\x15\x4e\x7c\xa0\x4d\x3a\x97\xfc\xde\xe9\x3d\x7a\xc5\x95\x57\x92\x18\xcb\x27\x8d\xef\x97\x2a\xf4\xa8\x29\xfb\x36\xe2\x96\xd4\xf1\x46\x0c\x7e\x7a\xd3\xe9\xad\xb1\xcd\x96\xb3\x45\x5e\xa4\x48\xfe\x0d\x07\x4f\x0f\xc5\x6f\xad\xe8\x6a\x40\xd1\x4b\x60\xdf\x5b\xc7\x5e\x1e\x66\x5a\xf3\xb5\x04\x71\x06\xd2\x20\x68\x7b\x42\xf7\xa4\x4c\x53\xea\x1e\x53\x5a\x7f\x88\xb9\x63\xf8\x51\xad\xf2\x59\x53\xa9\x6e\xd3\x42\xf4\x56\xd0\x54\x0c\x9d\x89\xdd\x42\xde\x86\x2b\xb3\xc9\x84\xe1\xe3\x87\x51\x0e\x0a\x9a\x17\xb7\x3f\xe8\x0c\x98\xd5\xec\xc8\x5c\xf9\xc1\x44\x72\xe7\x1a\x6d\x07\x2a\x67\x03\x69\xc4\xf6\x8f\x3f\x69\xe7\x2f\xc7\x69\xbc\xf4\x14\xd1\x39\xe9\x24\x16\x0c\xee\x15\x48\x14\x1f\x65\xf4\x59\x72\xbb\x5c\xa1\xee\x33\x8d\xbc\x03\x9d\x27\x1d\x67\x08\x70\x30\x66\xd5\x8a\x21\xf9\x04\x92\xa3\xb6\x80\x0a\x1e\xb4\xdc\x22\xbf\x5c\xac\xbe\xdf\x63\xaf\x5f\xb0\x58\xd0\x5e\x9f\x1d\x7b\x8d\x01\x17\xc0\x8f\xb3\x84\xc8\xe9\xbb\x70\x85\xa0\xa6\x50\x83\x9f\x93\x65\x02\x05\x65\xea\x8c\x76\x9c\x1a\xcd\x07\x77\xce\xf2\xf5\xef\x8f\xd8\x32\x30\xb1\x83\x89\xe4\x3a\x86\xce\x57\xce\xe6\xd5\x1b\xbd\x4c\x93\x24\xcc\x0a\xde\x57\x0a\x93\x42\x66\xb6\x1c\x1c\x44\x14\x83\x7d\x06\x12\xd9\x5d\x82\x96\x07\x3e\xe7\x9f\x9a\xa9\x33\xd7\xf3\x81\x15\x5d\xa5\x60\x50\x9e\xd9\x77\x8f\xae\x43\x6d\x6c\xcc\x1d\xbd\xbf\xf0\x7e\x0c\x05\xc9\x51\x8b\xa7\x82\xa5\xa6\x58\x6e\xfa\xb9\x13\x64\x6a\x52\xda\x00\x34\xae\xba\x84\x7c\x52\x74\xd4\x50\x5f\x8f\x9a\x80\xd1\x8e\xf5\x64\xe1\xf2\x0f\x2a\x2c\x2f\xb8\x57\x6e\xed\x5c\xf6\x72\x83\x61\xaf\x3d\xf7\x0f\xaa\x05\xc3\xbd\xd2\x19\x12\x83\x93\xa5\x56\xb4\xe8\xdc\xa8\x62\x5e\x0a\x90\x2c\xf9\xc6\x66\x0f\x36\x07\xce\xa6\x0b\x24\x64\x9a\xb2\xd3\x1c\x79\xf2\xec\x7c\xdf\x86\x82\x6a\xd0\x0f\x92\x1e\x53\xbf\x0b\xe2\xe8\x32\xc2\x0a\x0f\x98\xa5\x59\x0f\x46\xb8\xcc\x59\xb5\xa3\xde\x88\xa6\x9e\x7f\x22\x34\xf5\x65\xe2\x03\x13\xc9\x65\x96\xe4\xce\xff\x60\xf2\xb5\x94\xc9\xc8\x68\x7c\x12\xd8\x8a\x48\x0a\x86\xb9\xd2\x32\x38\x56\x0e\x2b\x10\x99\xbc\xad\x00\x1d\x19\xa2\x25\x83\x5f\x90\xc9\x2e\x01\x0a\x32\x87\x1a\xda\x50\x7a\x1b\x98\xaa\xfa\x8b\xf8\xe5\x12\x88\x5a\xb8\xd5\x1d\x2c\xc7\x63\x4a\xe5\x8e\xa5\x64\xe1\x94\x58\x9d\x4b\x03\x4e\x85\x52\xeb\x29\x4f\x4f\xc6\xe7\x5f\xc7\xa3\x4c\xd3\x97\x70\xf5\xe4\x13\x42\x34\xd7\x13\x7e\xcf\x7c\xcc\xe6\x8f\xe4\x09\x88\xa8\x99\xd4\xe9\x02\x1f\xa3\x1e\x90\x0a\x13\x90\x51\x9a\x03\x04\x00\x1a\x1a\xcf\x00\xeb\x26\xe7\x92\xd7\xd7\x45\xd2\x1c\xd2\xf6\xcd\xad\x64\x18\x7b\x22\x46\x6b\x0b\x6b\xcf\x8b\xeb\x5e\x23\xbf\xf6\x89\x05\xb3\x81\x89\xe4\x56\x54\x25\x0e\x4d\x54\x8e\xa7\x22\xef\x7e\x0e\xa5\x60\xe9\xb3\x3a\x99\x6d\x99\xbe\xfa\x51\xf3\x02\xfc\xf8\x48\x8b\xe0\xbf\x33\xc2\x78\xfb\xb2\xf0\x7f\x75\x76\xdf\xac\x77\xb7\x23\x43\xfb\xc9\xc8\xf9\x78\x41\x4a\x01\x3f\x7b\xc6\xf5\x75\x02\x3d\x1a\x8b\xe9\x13\x91\x65\x6c\x9a\x1c\x39\x83\x2d\x8c\x57\xbb\x85\xc1\x0f\x4a\x02\xaf\xde\x94\x69\x95\x1e\xce\xb6\x48\x18\x3c\xba\x11\xff\x46\xdd\xf9\x0e\x4a\x16\xcf\x70\xba\x82\x3a\x67\x54\x49\x61\xbf\x69\x70\x70\xa3\x00\x64\x97\x6a\xa9\x44\x9a\x43\x9c\x2a\xab\x9f\xf0\x4c\x12\x2c\xe7\xcc\xdf\xfb\x86\x2c\xcb\xe6\xb8\x58\x99\x61\xcc\x1e\x74\xff\x3e\x67\xd5\x30\xf9\x27\x82\x08\x94\xf8\x5b\x70\xd0\x76\x02\x59\x2b\x56\xc0\x17\x65\x8b\x24\xe6\x8f\x2c\x56\xa5\xeb\x39\xb7\x9f\x3b\x48\x1a\xf8\xd7\xd4\xe6\xc5\x4d\x43\x8f\xaa\x51\xda\xf3\xf9\x4f\xb4\x6d\x0a\x91\x26\x81\x7d\x20\x2c\x94\x2c\x48\x56\x11\x12\xce\x75\x9a\x16\xde\xe2\xa2\x5f\x0f\x49\x85\x63\xa2\x09\x3e\xc6\xba\x2b\x95\xcd\x24\x49\x3a\x39\x71\xfc\x99\x3b\x1a\xd0\xc4\x7c\xfd\xb4\xcc\x43\x4d\xd3\x45\x57\x08\x4a\xa2\x2b\xf7\x70\xb5\x55\xa1\x10\x17\x05\xd7\x50\xbb\xe9\xa4\xb8\x1a\xe4\xf8\x19\x4b\xa1\x71\x69\x9e\x95\xf5\x7f\x1a\x69\xbb\x48\xbb\xef\x44\xfa\x39\xc1\x2e\xd6\xbc\xd6\x26\x03\x91\x2c\xf0\xcc\x1f\x24\xc4\x8a\xa1\x23\x0d\x65\xc3\x5e\xf6\x39\x79\x35\xd9\x99\x61\x77\x31\xe6\xa6\x61\xcb\x3c\x28\xed\x8e\x36\x98\x6b\x2e\xdc\xfd\x7b\xd4\x36\x4b\x92\x3c\xf7\xaf\x67\xec\xb0\x56\x29\xfd\x86\xc2\xd1\xe6\xbc\x01\x6f\x1d\x2a\xa3\x4d\x6e\x67\xb8\x48\x42\x9f\x15\xd6\x97\x6c\x85\xc3\x02\x1a\xbb\xc7\xf4\xcc\x93\xd2\x45\x6a\x19\xf7\x56\x5e\xd3\x2f\x73\x0a\x04\x4b\x83\x61\x51\x54\x9c\xe3\x27\x7a\xe3\x63\x09\xd6\x35\x62\xf9\x1d\x1c\xc1\x83\xf2\xd4\x5d\x21\xb2\xe8\x44\x79\x6e\xbc\x7c\xf4\xf6\x83\xd5\x01\x2d\xb2\x1b\x0b\xac\x60\x61\x2e\xf1\xdc\x1a\x33\x7d\xa6\x3e\xed\xd9\x54\xf7\x83\x47\x4d\x25\x1f\x4c\x4d\x9f\x8b\xd1\x2f\x77\x82\x65\x9f\x7c\xc0\x5a\xf2\x50\xa8\x43\x26\x08\x89\x8d\x22\xbf\x75\xc6\x24\x23\xe8\xe9\x48\xd8\xda\x65\x15\x53\x9f\xfd\x19\xaa\x86\xac\xd3\xeb\x7f\xc8\x8e\x50\x25\xd7\x8d\xdf\x54\xe0\x44\x00\x88\xe3\xad\x0b\x88\x5d\x3e\xa2\x3c\x01\xe6\x4e\x4b\xc0\x68\xb4\xcc\x5e\xdc\xa8\xf8\x83\xe2\x6c\x8a\xfc\xdf\x87\x97\x9e\xf7\x4a\x90\x65\xa0\x3f\xe4\x2b\x1c\xc1\x4b\xab\x44\xf0\x2e\xa3\x60\x9a\x78\x8e\x7c\x44\x63\xbb\x1a\x4a\x3b\x13\xc6\x4e\x4d\x48\x49\x8c\x24\xe1\x43\xda\xe5\xa0\x1e\x86\x8a\xc3\xfa\x6c\xe4\x98\x85\x5f\xe5\x07\x26\xc0\x7c\xdf\x7f\xdb\x9b\x85\xe1\x10\x43\xad\x54\x67\xf6\x08\x74\xd4\xff\x32\x24\xbe\x0e\x20\x6a\xb5\x56\xb2\x6e\xa7\x30\x04\x00\x80\xd3\x4d\xc9\xd0\xcd\xda\xc2\xcd\x46\xc2\xca\xc5\xc6\xc2\xcd\x06\x10\x44\x08\x88\xf1\x23\x84\xf8\x85\x04\x74\x11\x08\x09\x61\x21\x09\x01\x31\x5e\x84\xa0\x04\x02\xf1\x63\x8f\x8e\xfb\xff\x03\x1c\x9c\xac\x31\xaf\xbc\xfe\x6f\xa0\xbb\xaa\x38\x01\x00\x00\x03\x6f\x5d\x43\x37\x6d\x0b\x4f\xa8\xb3\x8b\xd3\x2b\xcc\x1b\x1b\xa8\x9b\x97\xb3\x0d\x14\xe3\xec\x66\x05\x00\x6f\xd3\x96\x0f\x29\xc9\xb0\xfa\x30\xd8\x1f\xad\xde\x3e\xb5\x55\x6d\x00\xc4\x4e\xf1\xc4\x8a\x82\x8e\x9d\x4e\x23\x8e\x1e\x44\x07\x55\x0c\x14\xfe\x65\x0d\x62\xaf\xd2\x85\xf6\x4e\x8e\x76\x77\xf4\x75\x40\x3a\x48\x7b\x03\x55\x33\xd5\x9f\x00\x5b\x8c\x34\x6e\x87\xf2\x22\xff\xad\x00\xd4\x94\x9e\x2b\x96\xc9\x9b\x07\xfd\xbf\x00\x00\x00\xff\xff\x4b\xad\xcc\x72\x5d\x20\x00\x00") +var _web_uiV1StaticAppleTouchIconPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x99\x55\x50\xd4\x8f\xf7\xfe\xdf\xb0\x94\xc4\x4a\x0a\xea\x82\x4b\xc9\x52\xee\xd2\x0b\x48\x37\x88\xec\xd2\x08\xd2\x88\x0b\x12\x4b\x4a\x23\x8a\x48\x48\xb7\x20\x2d\x0d\xd2\x88\xb4\x20\x20\x25\xdd\xb5\x74\x4b\xf7\xf2\x9f\xcf\xe5\xff\xe2\x77\xf7\x9d\x33\x67\xe6\xdc\xbc\xe6\xcc\x9c\x8b\xf3\x3c\x33\x4f\x28\xea\xb9\x0a\x15\xf9\x03\x72\x00\x00\xa8\xd4\x54\x15\xb5\x01\x00\xa8\xfe\xaf\xc9\x08\x01\x00\xa8\x2c\x8f\xb1\x01\x00\x80\xc8\x56\x4e\x53\x0e\x00\x2a\xa2\x28\xae\x2d\x88\x01\x00\x80\x5a\xa9\x6a\x6b\x02\x80\xf7\x63\x00\x08\xfc\x00\x00\x97\x00\x00\x04\x6e\x00\x80\x3b\x02\x00\xb6\xcc\x01\x40\x22\x19\x00\x18\x9d\xd3\x1a\xd0\x4f\x01\x00\x20\xb1\xd4\x50\x51\x04\x6e\xff\xab\xcc\xa6\xfc\x38\x00\x00\x48\xdd\xd4\x34\x95\x48\x97\x40\x8f\x00\x5e\x1a\xf9\xf1\x20\x62\x00\x60\xc1\xab\x29\xca\xe9\xbe\x9d\xde\x4d\xf7\x7c\x0b\x59\xf7\x5b\x5f\x4f\x6f\x6e\xb2\x18\xba\xa7\xc8\x2a\x1b\x48\xa4\x1a\x0d\x7c\x21\xab\x08\xed\x4c\x84\xa1\xb5\xad\x55\xf4\xad\x35\x42\x39\x3b\xb9\xa5\x25\x23\xd3\x25\xd7\x59\xd6\x21\xc6\xcd\xe7\x43\x17\x15\x36\xab\x6f\x34\x12\x99\xb9\xb8\xb8\x62\x4d\x38\x8c\xf5\xb3\x5e\x8b\x68\x13\x49\xb2\xc6\x42\x09\x82\xa8\x80\xa1\xde\x53\x41\x49\xbf\xf9\xab\xf7\x3c\xf4\xef\x5e\xf6\x81\x5f\x09\x50\x38\x4b\x07\x10\xee\xef\x34\x0a\x5d\xcd\xd5\x5d\xcf\x9b\x11\x50\xcb\x77\x74\x58\x4b\xa0\x72\x24\xcd\xb5\xeb\x93\x71\x88\x9e\x4f\xdc\xe0\xb8\x88\xff\xd5\xb0\xa8\xec\x69\x5e\x16\x9d\xd5\x1e\x4e\xce\xde\x7d\xe7\x79\x68\x95\x20\x3b\x4c\xcd\x54\x0d\x4b\x0e\x57\x40\x7f\xcc\x8e\x80\x51\x2f\xc2\x5a\x05\x64\x2d\x0a\x3e\xcb\x3b\x70\xac\x65\xa2\x92\x88\x5d\x51\x05\xe9\xf2\xa5\x1c\xad\x02\x44\x4c\x37\xf4\xae\xbd\x41\x0c\xa4\xf4\x36\xe2\xbf\xc3\x72\xb0\x58\xe4\x63\x93\x50\x32\x10\x0d\xf6\x29\xab\xca\xb0\x4b\x90\xce\x30\x61\xbc\xb5\xa2\x6e\x66\x36\x74\xa4\xc1\xc0\x0a\xc8\x84\x41\x11\xb2\xcb\x05\x9f\xdb\xe7\xee\x35\x76\xc8\xc5\x8b\xf7\xd8\x3d\x32\xda\xe5\x24\x74\x9c\x75\x52\x29\x5d\x09\x9a\x20\x37\x54\x9d\x5f\x47\xe9\xaf\x50\xff\x32\x03\x57\xbe\xb4\xf2\x1d\x44\x2e\x30\x26\xfe\xa6\x23\x67\x97\x35\x1a\x5a\x27\x01\xe4\xb8\x09\x8f\x0c\x43\x95\x1c\x1b\x9a\x93\x4d\x4d\x95\xc5\x12\x69\x09\xce\xe4\x19\xfe\xc8\x53\x93\xd2\x5b\x63\x91\x89\xd2\xe2\xf1\xd2\x02\xad\xee\x51\xe1\xec\x02\xc1\x0c\xeb\x8b\xcd\x80\x82\x40\x54\x42\x09\x7f\x65\xad\xbe\xe1\x84\xde\x10\x15\x67\x72\x57\x43\xb4\xae\x60\x46\x27\xab\x02\x56\xf8\x37\xe4\xa1\xf9\xb4\xcf\x94\x50\xce\xb0\xb5\x76\x1d\x0d\x9b\x27\xea\xa1\xda\xf8\xf9\x1b\x07\x91\x53\xcd\x9a\xe3\x4a\xed\xd1\xe7\xf7\x6f\x3c\xdc\xcc\x4d\xc3\x14\x2c\x88\x6a\x5d\x91\x17\xe3\x4a\x6b\xa8\x0c\x24\x44\x08\x45\xa7\xd3\x96\x26\x3c\xa7\xbb\x36\x39\x64\x3e\xa3\xab\x41\x32\x4b\x26\x1a\xa5\x12\xeb\xf5\x18\xcc\xdd\x87\x20\xbd\xa2\x2d\xf7\xc8\xd3\xa2\xe2\xe5\x9e\xdf\xd8\xb3\x26\x01\x59\x07\x77\x35\x97\xce\xbb\xfb\xd0\x8d\xa1\x28\xc9\xfa\x36\xc0\x18\x8b\xf9\x4f\x0a\xe4\x79\xb1\x4e\x69\x51\x2d\x6e\x1f\xb7\x53\x02\xb3\xdf\xb8\x79\x8e\x06\x31\x4e\xed\x1a\x6f\xcf\x9e\x95\xe4\x1a\xc4\x0f\x4a\x86\xf6\x81\xb0\xdd\x43\x6e\xb8\x28\xa9\x03\x46\xc9\x1f\x5f\xb1\x30\x86\xbf\x94\xd9\x2c\x7d\xf6\xee\x6f\x9c\x9c\x17\x66\x2c\x31\x7c\x5f\x54\xe8\x34\xe5\xc2\x15\x96\x14\xbf\x35\xc1\x0f\x33\xba\xa6\x74\x7e\x1d\xbd\xae\xee\x26\x32\xdd\x71\x9e\xfb\x31\xeb\xe7\x44\x61\xb4\x29\xd2\x00\x2f\x82\xe9\x62\x61\xd1\xdb\xf7\xef\xde\x76\x55\x8c\x4a\x32\x26\x54\x9b\xbb\x39\x1d\x83\xa0\xba\x0e\x31\x67\x6d\xee\x03\x33\xa9\x28\x95\xac\xfd\xd7\xe4\x68\x88\x4b\xc4\xe7\x9b\x32\xa1\xcb\x37\x21\x48\x5a\xa1\x06\xb8\x17\x41\x74\xb2\x9f\x55\xe9\x3e\x85\x43\xe2\x1a\x10\x74\x6f\x8f\x4f\xc7\x1c\x17\x48\x36\x23\x0e\xb9\x54\x93\x74\xcd\x0d\xf8\xfa\x04\x3e\xaa\x10\x2f\xde\x74\xb7\xcc\xd5\xcf\x8e\x61\x2d\xf7\xf3\x5e\xef\x31\x7d\x34\x92\x5e\xf9\xd3\x4d\xb3\xd0\x61\x78\x0e\xce\x70\x76\xa3\xb9\x8f\x26\xb0\x75\xc7\x38\xe9\xbc\xa5\x3a\xa5\x08\x2e\xda\x00\x1f\x71\x2f\x97\xed\x60\x05\x77\x05\xc9\x48\x47\x4f\x8e\x50\x05\x3f\x7d\xf2\x94\x20\x32\x5b\x9f\xb6\x06\x9d\xfc\x45\x79\x97\xde\x2e\x1f\xf5\x30\x38\x96\x29\xc8\x0a\x20\x46\xc5\x66\xc1\x78\x31\x4b\x37\xbf\x66\x88\xe0\xf9\xc8\x60\x9a\x4c\x28\xeb\x85\xaf\x9a\xae\x03\xba\x47\x4c\x1a\x63\x5f\xdc\xb3\x2c\x25\x8c\x06\xf2\x2b\xa9\xd5\x3c\x29\x9f\xe3\x17\x99\x6b\x5d\x0d\xcf\xf6\x81\x45\xd8\x5a\x2d\x2d\x01\xa3\x9e\xb1\xdb\xc9\x33\x06\x38\xd6\x9c\x85\xe2\x55\x3e\x41\x30\x88\x10\xc4\x14\x06\x10\x11\x00\x04\x64\x84\x34\x8a\xef\xa8\xe5\x61\x3d\xd1\x49\xf1\xd5\x50\x15\x23\xee\x64\xda\x10\x2b\x5f\x33\xc3\x8d\xbb\x14\xef\x69\xb8\xe3\x83\xd2\x72\x9d\xb8\x56\x39\xee\x92\xbb\x04\xd8\xff\xeb\x26\xb0\xe1\x3c\xb0\xf3\xfc\x17\x7a\xe3\xfd\x9c\x13\x68\x83\x08\x1b\xed\xe6\x19\x10\x95\x94\x32\xe8\xa6\x3f\x82\xbb\x5a\x8a\xda\xe9\x93\x90\x7c\x82\xa5\xc1\x88\x75\xe4\x03\x92\xa5\x84\xda\xbf\xb2\x2c\xc1\x9f\xa9\xd3\x90\xa0\x5f\x5d\x9d\xa2\x52\x61\xf8\x4b\xf0\xa0\x5f\x31\xc5\xbf\x8e\x01\x55\x2c\x2c\x8d\xc9\xaf\x96\xfd\xfa\x98\x55\xbc\x6d\xf3\xf0\x5d\xc1\xe7\xdc\x07\xea\x6f\x1c\x44\x6a\x4f\xc6\x46\x69\x65\xd6\x72\x8f\xaa\x19\x51\x86\x68\xa6\x4f\xdf\xf7\xa9\xf2\xc0\xa7\x2e\xb6\xca\x79\x64\x39\xd8\x3e\xd0\xa7\x75\xbc\x08\xe7\xad\x1f\x69\x26\x85\x39\x59\xc6\xb4\x64\x4e\x07\x2b\x57\xfd\x5f\x1d\xd2\x9c\x41\xcf\x0d\x84\x7a\x4e\x20\x59\xfd\xee\x43\x46\xc9\xda\x89\x91\x7e\x82\x3e\xb9\xc1\xa9\x72\xd4\x92\x62\x96\x58\xbc\xf7\x99\xcb\xe1\x6e\xf8\x75\x5e\x8f\x09\xe3\xb3\xda\xda\xd4\xc3\xae\xbd\x8e\x70\x66\xd7\xd1\x39\x88\x80\x32\xc4\x25\x82\x4a\xba\x42\xe6\xb4\xbd\xd0\x68\xcf\x80\x20\x52\xfb\xa4\x73\x60\xe6\x01\xb3\xe4\x83\x6e\xf5\x72\x8b\x44\xcc\x27\xd5\x25\x7a\xd7\x7a\x19\xbc\x0b\xe3\xd5\x7c\xa6\xba\x13\x6d\xe5\xb0\x31\xfe\xe6\x27\x7f\xff\xea\xef\x63\x23\x62\x92\x4f\x0a\xe4\x42\x71\x0b\x01\x5c\xf8\xc3\xfb\x8a\xe3\xfe\xf6\x81\x59\xa3\xc3\xb4\x67\x52\xfd\x91\xe9\x1a\xd8\x96\x1c\xd9\xc7\x6f\x38\x3b\x85\x54\xca\x3b\x4c\x91\x09\xd2\x12\x99\xce\x53\x1c\x41\x12\x05\x95\x01\xcd\xfd\x5e\x5d\x2e\x39\x3f\xd3\x3e\xff\xb8\x17\x02\xb1\xe5\x62\xf1\xe1\xc5\x87\x08\x4d\x27\xb9\x00\xac\xc5\x8d\x7b\x3e\xc6\x2f\xeb\xc4\x96\x38\x83\x91\x50\x5e\x6e\x69\xf7\x4c\xb1\x4b\x13\x52\x1f\xef\xb7\xd3\x59\x34\xe6\x05\xfb\xf0\x99\x30\xfc\xcc\xab\x40\xc6\xea\xb3\xdb\xb4\x30\x05\xb5\x83\xb8\xa8\xfd\x70\xfc\xa5\x54\xbf\x15\xc9\x5a\x65\xbd\x07\xfc\x6c\xb6\xe5\x63\xc9\x01\x43\xf7\xeb\x98\x3b\xdc\x7d\x1c\xa6\x9b\x61\xd2\x13\xac\x94\xca\xe5\x57\x49\x56\xb6\x0a\x53\x9e\x7b\xad\xb3\xf7\x72\xae\x90\x20\x57\x2e\x70\xb7\x5a\xdb\xa3\x96\x87\x17\x01\x5d\xc2\x65\x42\x08\x73\x87\x97\x2b\x3e\xb9\xfd\xe3\xfa\x42\x4e\x10\x76\x68\xbb\x59\x2a\xe5\xed\xd5\xd0\xca\xfc\xd7\xbb\xb6\xf7\x8b\xb2\x90\xff\xde\xfb\x14\x34\xb0\xe5\x48\x8a\x09\xb9\x72\x82\xef\x2b\xe3\xb7\x15\xff\x85\x5c\x55\x0e\x76\xa4\xb4\xa6\x55\x5f\x35\xeb\xef\x83\xb6\x9d\x5b\xfc\x22\xcd\xfe\xee\xa0\x0d\x05\x2a\xf2\x25\xaf\x8f\x7e\xb5\x27\x90\xed\x55\x25\xdc\xf4\x32\x9f\x96\x6a\x44\xec\xc5\xf3\xac\xa9\x42\x42\xa5\xd6\x7f\x3f\xf2\x7b\x19\x59\xf1\xa0\x2c\xef\x41\xd8\x8d\xd9\xb4\xe5\x42\x43\x6e\xab\xed\xc6\x8e\xb3\x14\x5d\x16\xd7\x4c\x69\x29\xc3\x3c\xe9\xc4\x20\x63\x40\xc6\x0f\x6a\x52\x1f\xbb\xb7\xc7\xdb\x01\xc9\x12\x27\x03\x94\x24\x10\xe3\xa4\xf3\x5b\xfc\xbd\xa2\x01\xa7\xee\x99\x21\xc6\x60\x1a\x20\x92\xb0\x88\x7a\xf7\xe5\x48\xec\x59\x64\x98\x55\x68\x4f\xd7\x19\x06\x45\x92\x89\x1d\xb4\x7d\x11\x8e\xb7\x63\x5f\xab\x79\x70\xe4\x78\x4c\x52\x13\xa3\xec\xc9\x2a\x76\xc8\x0b\x0e\x66\x50\xd0\xaa\xc9\xd7\xa2\x5c\xf1\x66\x5d\xcb\xf5\x0b\x70\xaf\x5a\xaf\xb2\x47\xa5\x22\x76\xe6\x66\xff\xad\x18\x40\x0e\x92\x06\x7f\x9b\x49\x7f\xd9\xd6\x4b\x9e\x78\x71\x5d\xe3\x50\xf6\xf3\x0b\x81\x68\x14\xe3\x7d\x8a\xc0\xa7\x61\xef\xa5\x24\x1f\xe0\xeb\xd8\x7f\xb0\xa4\x2f\xfa\xfb\xf4\x4c\x78\x22\x3d\x45\x18\x2a\x6f\xd3\x58\x65\xd1\x6b\x70\xe2\x11\xae\x90\x8e\x25\xa6\x20\xa8\xe2\x8f\xde\x61\x6d\xb9\x09\xc6\x75\x27\x9a\xb8\xf2\xc1\x04\x3a\x93\xf3\xc2\xf7\x38\x94\xa3\x06\xd5\xac\x2d\xef\x45\x57\xfa\xc0\x4b\x4d\x62\xc7\xc5\x54\x9f\x8e\x8a\xb7\x2b\x8c\x2a\x74\x3e\x3e\xb9\xce\x5b\x37\x74\xe6\x81\xe6\x2c\xc5\x56\x2a\xef\xf7\x97\xa8\xac\xf5\x4c\x67\xa7\x8e\x6a\x8c\x43\xaf\x0f\xcf\x57\xce\xe6\xff\xf4\xcc\x07\xff\xe0\xe7\x34\x5b\x58\x6a\x28\x9e\x82\x08\x95\x29\x40\xc2\x22\x6f\x8e\xb6\xfb\x62\x9a\x31\xcc\x20\x3e\x7e\x06\x9b\xa8\xf9\xe7\xfc\x43\x01\x0a\x49\x49\x6a\xe9\xdb\x29\x9f\xf0\x13\xa1\x69\xf1\xef\x5e\x7c\xca\x86\x3b\x7a\xcc\x61\x78\x96\xbd\xe9\x9f\x53\xe2\x73\xd3\xc5\x67\x93\x7a\x6c\x3e\x48\x89\x40\x7c\x2d\x33\x4c\xa5\x05\x26\xb2\x5b\x90\x50\x2e\xa5\xaf\xe2\x89\x23\xf3\x0c\x8b\x05\xeb\xef\xdc\xbf\xfa\x18\xaf\x85\xbb\xbf\x7e\xa2\x96\xc1\xf4\xac\xd9\x9d\xd5\xe7\xcb\x68\x9b\xf4\x9a\x79\xc6\x5e\xdd\xb8\x19\xa4\x50\xc1\x4f\x48\xba\xcf\x1d\xe9\x64\x7f\x2c\x55\x69\xc1\x62\x14\xb2\x46\xfb\xad\xc9\xf3\x77\x34\xb6\x5b\xa3\xf0\x74\x7e\xaa\x5e\xf6\x59\xf8\x00\x2e\xda\xea\xcd\xf1\x14\x9d\x78\x67\x8b\xb1\x3e\x49\x58\x73\x75\x9e\xb9\x95\x58\x04\xb1\x4b\xec\xdf\x47\xfa\x23\xda\x1b\x54\x7f\x22\x06\x30\xa4\x6e\xf7\x54\x0e\x3f\x1f\x6d\xd2\xbd\xdf\x9a\x59\xf6\xff\x79\xcb\x6b\xdc\xa3\x1e\xd5\x3c\x67\x88\x90\x55\x42\x8f\x4e\x11\xd2\x2b\x07\xa6\x82\x45\xaa\x32\xf3\x91\xb9\x28\x9e\x53\x1c\xe6\x84\x66\x10\x50\x69\x0a\x68\x9e\xaf\x6d\x7e\xb1\xa0\xf2\x42\x15\xa0\xed\xf2\x2b\x7a\x7e\x17\x45\x4a\x75\x5c\xfb\x78\x9b\x3b\x72\xe5\x0b\x63\x7d\x99\xc0\xc9\xee\xae\x71\x52\xfd\xbe\x83\x40\x1d\x97\x11\x80\xb4\x33\xba\x8f\x1a\x19\xae\xe4\x09\x14\x77\xfb\x9a\xea\x4e\x17\x42\xff\x0a\x07\x4f\x47\x67\xbc\x0b\x85\xb9\x5f\xb2\x4c\x99\x3f\x11\x79\xd5\xd1\xec\x7e\xc7\x68\xb9\x77\x9e\xe4\x6c\x26\xbd\xee\xc9\xc8\x9c\x4b\xc1\x17\x64\xf2\xa9\xe9\xde\x6c\xfd\xd6\x0c\xe1\x99\x5f\x69\x62\x02\x83\x84\x4c\xbf\xfc\x87\x92\x83\x0b\x96\xf9\xe8\x55\x45\xc6\xe8\xe4\x75\x57\x7b\x7e\x5e\x5d\x2a\x84\x78\xd6\xe0\x1e\x5a\xed\x20\x74\xa2\x61\xac\x5c\x94\x8f\xf7\xcf\xdc\x59\x89\xb0\xc3\x0a\x0f\x76\xae\x86\xf0\xd0\x72\x23\x3f\x24\xd7\x7c\xab\x21\xc0\xe2\xf9\xf4\xd1\xa2\xc4\x3e\xc8\xfe\xc8\x82\x6d\x58\x05\xb2\xa9\xf3\x6b\x33\x4e\x81\xe7\x21\xe8\xc1\xd9\x6c\xcb\x37\x73\x76\x2f\x72\x6a\x59\xf3\xaf\x57\xe3\x7f\x7b\xd5\xad\xe0\xe9\x16\x5a\x60\xb5\x18\x61\x42\x9a\x3e\x25\xe3\x54\x50\xd9\x4f\x03\xc3\x09\xfd\xd5\x9e\x42\xfd\xbb\xd8\x6e\xc4\xc5\x1a\x71\x30\xfa\x4b\x40\x57\x6d\xed\x9f\x8a\x52\xe9\x47\x77\xab\xa2\xdb\x02\xf3\xdc\x69\x9a\x04\xa1\x21\x4c\xdc\xb1\xca\xd0\x8e\xa7\xfa\x8d\xdd\x89\x06\x66\xf6\xcc\x1d\xac\x94\x2a\x23\x2a\x57\x7a\xa2\xca\x98\xf6\x93\x4d\xbd\xe0\x8c\x83\x02\x04\x01\x53\x58\x12\x72\x8d\xef\x85\x4a\x08\x31\xb7\x6b\xbd\x19\x53\x64\xe1\x9b\x37\x46\x3a\x18\x27\xe3\xa7\x62\x83\xaf\x04\x35\x5e\xf1\x82\xbb\xd5\x0a\x41\x49\x7a\x1f\xcb\x09\x08\x5d\x77\x4d\x1d\xc1\x0f\x8f\x82\xa7\xc2\x14\x98\x3e\x39\xcf\xd9\x79\x7e\xd7\x55\xa8\xd8\x5d\x0b\xea\x35\xb3\x8a\x0d\x9d\x0a\x63\x9f\x13\x80\x12\xc7\xf1\x3c\x94\xf4\x10\x5e\x54\x3a\x82\xf3\x6c\x7e\xb4\xd1\xc7\x05\x06\xf5\x41\x1e\xa2\x52\xea\x88\xe0\x95\x33\x62\x13\xf7\x6f\x1a\x1f\x8b\x23\x8a\xe7\xc2\x84\x53\x56\x06\xb5\x8a\xde\xbc\xc1\x14\x66\xda\xad\xcb\x05\x16\x1c\xc8\x12\x91\xd3\x12\x02\xad\x43\x69\xe0\xaf\x50\x78\x28\x9d\x9a\x78\x2a\x09\xd1\xc7\xab\xdd\xfa\x09\x51\x8d\xde\xc9\x92\x8e\xb6\x97\xc9\xf4\x5c\xb4\x45\xa9\xd9\xad\xb5\xd8\x8a\xcd\x81\x38\x66\xce\x9e\x7c\x49\x92\x94\x5f\x7e\xed\x28\x7a\x39\x00\xbd\x55\x5d\x56\x5a\xed\x50\x90\x22\x50\x42\xe1\xa2\x5d\xd4\x24\x86\x3f\x34\x2a\xb3\x35\x51\x73\x26\xfb\x88\x53\x12\x9d\xd1\x1c\xdb\xd3\xaa\x43\x9d\x74\xa6\xf2\x0f\x55\x5d\xd6\x4e\x0e\xd0\x74\x17\x1f\x8a\xb6\xde\x78\x6c\x6f\x29\x79\x79\xe5\x50\x10\x97\xf9\xf0\x1d\x5b\x4b\xba\x16\xdc\x4e\x1b\x1e\x4d\x86\xe7\xf3\xf3\x33\xe0\xe1\x8e\x95\x65\xc5\x03\xc7\xcc\xbd\x43\x6e\x1b\x3d\xa7\x93\xe1\xe9\x13\x6b\x04\x49\x39\x18\xbc\x36\xc2\x3d\x73\xe2\x76\xcc\x38\x4d\x32\xc9\x4e\xf2\x72\xfc\x09\xb8\x5b\xed\xda\xab\xe6\x8a\xde\xdb\xe8\x8e\x11\x3a\x93\x45\x2a\x8c\x43\x41\x49\x8e\x9a\xa8\x13\x91\xd3\x5e\x30\x39\x10\x53\x11\xe0\x9d\xd0\x42\xdf\xb8\xb7\x8f\x8a\x1f\xe9\x22\x55\x0e\xb1\xca\x5b\x98\xb7\x59\xd0\x95\xd4\x5c\x17\x17\x38\x5f\x3e\xdd\x28\x97\xf8\x76\x42\x43\x4f\xc2\x46\xb7\xe0\x07\x72\x45\x89\x6a\xd6\x72\xee\xe2\xa2\xdb\xb9\x97\xc2\x5e\xc0\x2d\x7b\x8b\xc2\x82\xd4\x93\xb9\xbe\xd5\x1b\x2e\xbc\xfe\xbe\xad\xbe\x73\x08\x13\xba\xcf\x70\x1f\x0c\xc8\x22\xf9\x4e\xb5\xcb\xeb\xb2\xda\x27\x0c\x77\x8b\x9e\xb4\x6d\x8a\x93\x3b\x24\xb4\x3f\xfb\x17\x7a\xa3\x93\x70\x80\x76\x52\x59\x6e\x7b\xb4\x97\x63\xe7\xab\x18\x7c\xd5\x10\x90\x37\xdf\x04\xb9\xf5\xb3\xbd\xb7\x8f\xc6\xb0\xdd\xc7\x4f\x59\x34\x54\x3c\x53\x28\x63\xda\x35\x4b\x46\x30\x25\xc8\x73\x8b\xf0\xa3\x79\x31\x98\xf1\x5b\x59\xa3\x87\x6f\x60\xfe\xab\xfd\x71\x4d\xe5\xcc\x14\x1e\x27\x47\x15\xf4\x69\x96\xcd\x0a\xd8\x3e\x9c\x6b\x62\xf5\xf8\xd8\xdc\x58\xed\xeb\x11\xf2\xe1\x98\x33\xc4\xde\xa8\x24\xa3\x2d\x25\xd7\x9a\xf7\x6f\x3a\x9f\x06\x3f\xb3\xfa\x8b\x69\x19\x79\x53\xf5\xc6\x69\x11\x2b\xbd\xd0\xe3\xcd\x25\xb7\xae\x4c\x2b\x15\x85\x32\xe6\x2f\xc1\x48\x12\x36\xf2\xe2\xad\xef\x54\xf0\xda\x38\x91\xdf\x06\x4c\x68\x45\xcc\xe2\xae\x4e\x7e\xc0\xe9\xf4\xca\xa6\xa9\xd2\x9f\x8d\x97\x99\xaa\x82\x42\x34\xbb\x3e\x37\x1d\x8b\xcd\x03\xad\xfd\x9a\xc5\x78\x6f\xcf\xa9\x69\x92\x68\x31\x4f\x11\xd8\x9f\xbe\xb6\xe6\x14\x2b\x5f\x68\xac\xdd\xfe\xd1\xf5\x54\xaa\xfd\x6e\xaf\x36\xa2\xb3\x70\x92\x5f\xfe\xb9\xa5\x16\xd5\x60\x29\xb2\x4c\x51\xf7\x05\xb2\x9b\x07\xbe\x57\x81\x69\x8e\x79\xf2\x2f\xd4\x6d\x7d\xa4\xdc\x43\xea\x88\x24\x43\xb5\xb8\x51\x11\xf7\xe1\x5d\x9d\x56\x70\x43\x59\xb5\xff\x41\x99\x4d\x80\x07\x85\xf2\x2a\xe7\xbc\x99\xda\x41\x50\x43\x26\x1a\x2b\xfc\xa4\x6b\xca\xbe\x93\x95\x0b\x99\x10\x89\x1f\xb6\xa6\x8d\xb1\x28\x93\x34\xfe\x8c\x0b\x0c\xe2\x2b\x02\x1b\x67\x27\x9e\x7f\x7e\xe9\xfc\xaf\x62\x74\xa8\xcb\xdf\x1d\x2f\xb6\xff\xea\x3e\x42\xb0\xed\x99\x62\x94\xf4\xe9\x53\x46\x8d\x9a\xeb\xfe\x3d\xdf\x0d\x10\x0f\xaa\x34\x6e\x34\xde\xe9\xf4\x66\x76\x97\x47\x36\xbd\x9a\xe4\x4b\xc8\xef\xce\x1f\xed\xff\x70\xf5\x2f\x28\x48\x8d\x76\x75\xc6\x04\x65\x54\xd3\xfe\x1e\x74\xec\x7b\xfb\x37\x99\xbd\x17\x2c\x63\xfb\x76\xa1\xa3\xd5\x34\x7c\x92\xe1\xb4\x96\xa3\xcc\xad\x4e\x97\x6c\x3c\x56\x49\x72\x36\xf5\x37\xea\xe7\x2c\xae\xf3\xb4\x50\x63\x14\x03\x90\xd5\x18\x86\x5f\xa0\x73\x90\x2b\x1c\xf0\x2e\x3d\x62\xdb\x6c\x61\xb9\x27\xda\x07\x80\xd7\x32\x6e\x1f\xfc\xd5\xc7\x7f\x81\xaf\xc5\x20\x74\x55\xeb\x66\x65\x35\xeb\x34\xcd\xf5\x73\x1f\x99\x1d\x7b\x69\x69\x91\x2f\xa6\x70\x9a\xad\xef\xb4\x02\xe4\xd0\x67\x53\xe1\x90\xe6\x15\xa5\x1e\x8f\xe4\x4f\x8d\x78\xf6\xa2\x93\xc6\x2a\x21\x57\x02\x8b\x84\xcd\x3a\x25\xab\x98\x1f\x1f\xaa\xae\x0f\x9a\xc5\x19\x32\xcb\xb7\x4d\x3a\xe3\x46\xe3\xe0\x55\x16\xee\xcb\x9c\x41\x50\xea\x77\xd9\x94\x5e\x18\xe5\x00\x92\x2e\xae\x44\x5a\x9b\x81\x1d\x07\x14\x2f\x66\x41\x5f\xc6\xdd\xce\x79\xd7\xf4\x39\x9c\xbf\xc7\x83\x53\x36\xad\x4e\x0c\x13\xde\x36\x51\x4f\x1f\xcd\x8e\x51\x4a\x77\xa0\x77\x1d\x2e\x18\x81\x92\x82\xc9\xe0\xd7\xa7\xb2\x25\x62\x21\xa8\xd4\x9d\x08\x4f\x93\x1d\x9f\x9b\xb7\x23\xeb\x1e\x7d\xce\xc6\xa6\x96\x83\x11\x88\x90\xcb\x8b\x5e\x39\x18\x77\xfd\xe0\x2b\x23\x23\xc7\x9f\x5e\x02\x34\xce\x5a\x33\x5f\x4d\xf5\xb7\xbc\xcc\x5f\xfe\x33\x3b\xb3\x15\x16\x03\x75\x78\xf9\x8c\x54\xbf\x27\x32\x5a\x3d\xb9\xbd\xe1\x5f\x8e\xda\x4b\x6f\x66\x61\x91\x85\x48\x26\x7a\xdf\x5a\x36\x89\x2e\x7f\xd5\xc7\x72\x88\x17\x38\x92\x77\x3d\xd5\x1f\xb5\x7b\x96\x5d\xdd\xb1\x68\xbd\x30\x4f\x27\xe1\x9f\xc9\xd6\x93\x74\xeb\x5c\xef\x78\x46\xf2\x27\x01\x7b\xc4\x19\xd9\x21\xaf\xf5\x48\x7d\x6f\xf7\x87\x28\x97\xfc\x4e\xde\xf3\xa2\xf1\x7d\x9f\xb7\xef\x5d\x0d\x96\x85\x4d\x33\x60\xff\x66\x5b\x1e\x54\x5a\xae\xa4\x58\xe9\x08\x71\x03\xb4\xae\x7b\x76\x87\x01\x5e\x1a\xdf\x8e\x5f\x9f\xf6\xbb\xaf\x46\xed\x82\xa5\xdc\x11\x7e\x2e\x1b\x39\x4f\xd5\x81\x36\x3f\x8f\xf5\xbd\xc7\x0b\x0a\x0f\x85\xb9\x9c\xc6\x60\x60\xce\xb6\xc2\x88\xcd\xdf\x26\xd5\xe8\x3b\x21\x2a\x51\xa7\x1c\x24\x63\x2c\x0f\x8a\x39\x46\xa5\xa8\xb7\x58\xc8\xaa\x45\x9e\x5f\x99\x61\x39\x44\x4f\xfb\xa5\xfa\xb2\xb8\xa7\xa8\xad\xbb\xcd\xd2\x20\xb7\x03\xa6\xe2\x03\xde\x32\x92\x9a\x4c\x04\xea\x74\xcd\xf0\xea\xa1\xde\x5e\x4b\x78\xda\x5a\x83\xf2\x2a\x32\x04\x46\xed\x8e\xd2\xf5\xab\xd8\x8e\x7c\xdc\x35\x90\x57\x20\x75\xb4\x41\x41\xbd\x3d\x5d\x24\xeb\x87\x6d\xb0\xfa\x24\x25\xc5\x47\xac\x13\xd8\x51\x90\xca\xb6\xdd\xa0\x5e\xe4\xaf\x9f\x30\x5c\x13\x05\xe1\x31\xce\xf6\x98\x8e\x06\x51\xc0\x78\xad\xb8\x9e\x6c\x34\xb7\x50\x6b\xef\x74\xf4\x68\x8c\x84\x81\xc8\x5d\x36\x36\x7f\x8d\xc0\x96\x41\xf1\xf4\x8f\xfc\x2f\xa9\xf5\xd6\x33\x6a\xd3\x1e\x42\x11\x57\x89\x12\x33\x97\x76\x58\xbe\x27\xc4\x3a\x28\xfd\x7f\x6c\x92\x34\xce\x85\x10\x4f\x81\xa4\xce\x8a\xa6\xf9\x8a\x26\x16\xf4\xe2\x95\x5e\xcf\xab\xcf\xe3\x31\xec\xa5\xa2\x99\x0f\x5d\x51\x1f\x15\x7f\x91\x73\x8b\x7a\x7b\x71\x3c\xca\x80\x48\xcb\x14\xa8\x0a\x86\x99\xdd\x86\x5b\x4b\xaa\xc4\x3a\x1d\x5b\xb7\xe8\x93\x0b\x55\x98\x65\x54\x97\x99\xc6\xf7\xf8\x10\xfc\x45\x1a\x2d\x7f\x11\xc0\x0b\x3c\xbc\x6c\x72\x28\x6d\xc1\x8c\x89\x82\x72\x7c\x91\xe7\x8a\xa9\x54\x85\xf3\x46\x2b\x84\x42\xf7\x52\x3c\xae\x7e\x41\x36\x0d\xe2\x5a\x24\xfd\xbc\x0d\xf3\xd4\x46\x9d\x85\xc3\x14\x6e\x9c\x1d\x74\xdb\x5d\xb8\xfb\xd5\xb6\x22\xfd\x5d\x94\x54\x2b\x04\x03\x6e\x5a\xef\x70\x2a\xd9\x24\x32\x88\xa7\xde\x0b\xb1\xfc\xd8\x18\x67\x32\x74\xd9\x5f\x38\x88\xb0\x46\x7d\x24\x86\xf1\x1a\x34\x09\x1f\x1e\xf5\xe8\xb0\x98\xe9\xeb\xea\xef\xcb\x5b\x17\x0c\x93\x9b\x23\x5f\x74\x66\xcd\xa3\xca\x3d\xb3\x79\x6a\x98\x73\xc9\xe2\xbb\x7b\x23\x3e\xc6\x74\x8c\x12\x93\x42\x11\x26\x2f\x23\x3d\x64\x97\x79\x8c\x1f\x44\x2a\x63\x0b\x16\x02\x57\x96\x9f\xca\x53\x7d\x98\x93\x97\x38\xd4\x26\x0f\x3d\x15\x77\xee\x8d\x67\x26\x22\xe7\xe3\x67\xb0\xf3\x17\x5a\x61\x1b\x2c\x19\xff\xe2\xfa\x69\x3c\x06\x64\xf0\xd3\x67\x5c\x0a\x9d\xa0\x0e\xcb\x1f\xa3\xe9\x0e\xaf\xfa\x59\xdc\xe0\xf6\x82\x4b\x60\xa6\x3f\x7c\x93\x53\x28\x21\x97\xf4\x93\xd5\xfa\xf0\x85\xb6\xb6\x6a\x0e\x72\xd4\x20\x24\x3a\xee\x7a\xa7\x57\xd4\x1e\xa8\x43\xe1\x19\x2e\x55\x26\x08\x28\x4f\xc4\xe0\xca\xad\xc2\xec\x44\xe8\xbd\x43\x69\x37\x9d\x53\x13\xa5\xda\x93\xb1\x3d\xad\xf2\xd4\x25\x16\xf2\x0f\x41\x94\xc4\xe2\x13\xf2\xbf\xa3\xe3\x3a\xb2\x60\x13\x22\xbf\xd3\x33\xa2\x73\x36\xa7\x5a\x3c\x3e\x57\x09\x7e\x93\x98\xd7\x53\x73\x41\x69\x03\x98\xc0\x98\xea\xc6\xd2\x83\x9d\x80\x6b\xb4\x2a\x86\xfb\x6e\xc2\x1d\x9f\x94\xf2\x6a\x11\xab\xd7\x89\xae\x06\x71\xb1\x2b\x0a\x5a\xb5\x1a\x16\x6b\x97\xb7\x59\xad\xb5\xcd\x0d\x2b\x01\x7b\x7d\xb4\xec\xf0\x60\xed\xbe\x2c\xfc\xb1\x8f\xc2\xb0\x35\x6d\x66\x20\xcc\xd3\x68\xc2\xc0\x78\x42\xcf\xb2\xec\xfe\x9a\x4a\x30\x9d\xce\xbe\xe9\xf3\xc6\xe1\xce\xf4\x0c\x54\xec\xd3\x56\x74\xf6\xac\xcd\x8c\xc9\x76\x83\x3d\xb1\x51\xe1\x1c\xa9\x56\x31\x32\x4d\xb8\x15\x25\xb2\x7d\x47\x7c\x40\x4e\x4e\x50\x11\xd2\xd9\x1f\x1e\x6e\xbc\xf5\xd1\x5d\xca\xd6\xac\xda\x2b\xb8\x8a\x67\x99\x1b\xd6\x8a\x1e\xf4\x2b\x2e\xe4\xc4\x6f\x94\xcf\x5b\x69\x81\x35\x2a\x84\xd9\x14\x64\x97\x57\xd8\xa2\x96\xe9\x34\xe6\xce\x4a\xfa\x92\x2b\x49\xd8\xfa\xb2\xe6\x17\xb5\xa6\x7f\x54\xe5\x4c\x34\x50\x2a\x07\xf8\xfc\x69\xa8\x2d\xda\x70\x12\x7d\x75\x67\x27\xda\xea\xcd\x46\x17\xa9\x25\xfc\x6b\xb3\xc7\x4f\x8e\xe0\xfb\xb5\xf6\xc2\x27\xa7\x4a\xb7\x06\x75\x53\x62\x13\x6c\xa9\x7f\x61\xe0\x51\x39\x76\x64\x58\x01\x75\x08\xbd\x05\xbd\x72\xb7\x87\x70\xb4\x98\x6a\x88\xfb\x66\x93\xf1\x6f\x2d\x93\x68\xa4\x1f\x25\xcb\xbd\x8c\x2a\xbc\xce\x97\xbf\x3b\xdb\xfc\x94\x86\x13\x7a\x46\xfa\x24\x1d\x31\xf5\xc8\x07\x3a\xc8\x3b\x67\x2f\x42\xff\xfb\xd9\xaf\xa6\xc6\xf2\x4f\xcd\x1e\xdc\x9e\x6e\xeb\xdc\xe4\x43\xe1\x02\xa4\x3e\x9d\x6d\xaa\x9b\x75\x1e\x9a\xf6\x6e\x21\x8d\xf4\xde\x45\x52\x87\xd7\x6e\x59\x77\xa8\x97\x06\xb4\x22\x02\xae\x4e\x0e\xf7\xe7\x2d\xc6\xe2\x07\x75\x96\x53\x41\x47\x2f\xf4\xc6\x51\xda\xb8\x34\xc8\x84\xab\xf9\x60\xe8\xd6\x6e\xa9\xde\x8c\xf1\xf1\x05\x1f\xf0\x00\xef\xe6\xaa\x16\x5e\xe4\x6c\x26\xbb\xb4\x62\x99\xe1\x60\x55\x6a\xa5\xf2\x3e\xcf\x9d\x66\xaf\xca\x06\xfd\x11\x09\xa1\xc0\x6f\xcc\xf1\x7d\x75\x6f\x37\x17\x3e\xff\xe5\x87\x7b\xed\xbb\xd5\x92\xfc\xeb\xa6\x82\xb1\x2a\xf8\xf1\x27\xf6\x8a\xc5\x38\xd2\xfc\x94\x35\xdd\x4c\x34\xa4\xbe\xab\x48\xb0\xff\x63\xdf\x3f\x5c\xfd\x34\xc2\x77\x8e\x75\xe7\x78\x0b\x3e\xb7\x5b\x3a\xc1\xea\x60\x61\xae\x60\x75\xa4\x50\x97\x5d\x54\x87\xd9\x52\x6b\xf6\x7a\xb7\x9d\xc2\xfa\x34\x62\xf7\x81\xe6\x4e\x13\x7e\x91\x24\xcc\xe5\x7a\xac\xec\xbe\x5f\xc4\x54\x9c\x82\x51\x24\xa8\x2a\xd3\xbd\xce\x32\x5f\x97\xa4\x47\xf6\x39\x2d\x09\xfb\xf4\x5e\x36\x45\xf3\xef\x22\xaa\x85\xfa\x05\xe9\x9f\x0e\x0e\x68\x1d\xf7\x99\xdb\xcb\x92\x52\xdd\x5b\x80\xa2\x5b\xad\xaf\x82\x57\xc8\xe9\x19\xb4\x1d\xb2\xd7\x32\x40\xc6\x4b\xac\x63\x57\x49\xa8\x80\x7e\xfe\xa8\x29\xdb\xe2\x28\xdb\x8f\x57\x32\xc7\x76\x26\x84\xcc\x6f\xc9\xc4\xd3\xe6\x52\xfb\x87\xfb\xea\x5a\xc0\x45\xa3\x0f\x36\xa5\xb6\x57\x43\x1f\x3e\x75\x38\xf9\x4b\x49\x73\xec\x62\xe3\x4b\xdf\x3f\x9c\xa1\x89\xa6\x06\xe6\xa9\xff\x1c\x94\xb5\xcb\x30\x41\xa7\x16\x41\x3b\x81\xda\x33\x5a\x0e\xa2\xa7\x4e\xbe\x94\xa2\x0d\xc0\x68\x5b\xbc\x55\x18\xcf\x7d\xe4\xc6\xa8\xeb\x60\x5f\x71\xef\x47\xa4\x0c\xbe\xdd\xd9\x27\x89\xad\x48\x6a\x1a\x5a\x32\x8a\x7b\xb9\x6d\x10\x70\xa1\x65\x32\xc6\xc9\x03\xef\xb9\x4f\xa6\xf7\x15\x21\x4b\x6c\x7a\xb6\x4d\x4a\x44\x32\xaa\xe9\x9a\x9c\x3e\xba\xa8\x97\x73\x73\xfc\xae\xe4\x90\x0d\x40\x0b\x71\x7c\x52\x10\xc0\xb2\xa9\xdd\x87\x81\x89\xe4\xa8\x3b\x16\x1a\xdf\x76\xd1\x05\xf8\x6c\xae\xb2\xaf\x07\x1c\x39\xd6\xdb\x22\x7e\x2a\x3a\x53\xe8\x0d\x6b\xcf\xbc\xbd\x3d\x2d\x62\x2e\xfd\x20\x12\x25\xa5\xc2\xcf\xb1\x86\x76\x1f\x95\x8f\x97\x28\xbf\x7a\xb7\x24\xfd\xd0\x14\x87\xa2\x8b\xb7\x7b\xa9\x93\xd7\xe6\x69\x79\x0f\x57\x70\x90\xad\xaf\xad\x79\x89\xe6\xee\xfb\x97\x14\x14\x1c\xfd\x23\xd8\x65\x26\x49\xa6\xde\xf5\xa0\xd4\x5e\x25\x32\xed\xa1\xb4\xf3\x63\x37\xc7\xc0\xfb\x51\x61\x18\xbc\x9d\x2a\x85\xb2\xf9\x87\x39\x4b\xf8\x19\x43\x79\x49\xe9\x6c\x43\xa5\x9b\xa6\xdf\x3d\x33\x74\x93\xac\x43\x6e\x1e\x27\xc2\x75\xf3\x65\xe0\xa4\x53\x61\xcb\x00\xe2\xb3\x57\x49\x6d\xed\x83\x32\x9f\x8f\x36\xa4\xa6\xb8\xef\x65\xe5\xc3\x7f\xc5\x76\x71\x50\x9e\xa7\x6f\x2b\x14\x3e\xd3\x81\xe8\x6d\x4e\x47\xa3\x8f\xc6\x6d\x52\xf7\xf3\xe0\xe3\x96\x67\xb1\x3f\xa7\xed\x9c\xcc\x06\xbb\x52\x8e\x15\xe3\xa9\xb8\x3a\x84\xa3\x00\xd9\x69\x8c\x46\x4c\xef\x96\xa7\xce\x13\x63\x7c\x90\x55\x3e\xee\x7a\xa5\xb2\x83\xf7\x25\xce\x50\x74\x82\xa3\x68\xc0\x69\x41\xd0\x86\x91\x8a\x7a\x62\xae\xbf\xd0\x8f\xf1\xa2\x37\x2b\xc2\x80\xb0\xa3\xc6\x47\x7c\x0c\x31\x92\x35\xe8\xf6\x9a\x91\x74\xaf\x26\x76\xcc\x34\x81\xe5\xc9\x9b\xf5\x02\x88\xad\xad\x30\x68\x90\xd3\x20\x67\x93\x5f\xba\xa6\x77\xeb\x5a\x0e\xce\x7b\xe2\x8f\xff\xb6\xb8\x7c\x25\x58\x7a\x5f\x80\x6b\xf7\xaa\xbd\x7f\x24\x91\x2f\xdb\x2e\x3c\xac\xa5\xd6\xef\x7a\xa8\x69\xa4\xdc\x0e\xbd\x38\x39\xb4\x78\x73\xad\x39\x3d\xfb\xb6\xe6\x27\x86\x80\x3c\x3f\x29\xa1\xe8\x0d\xdf\x71\xf0\x79\xb8\x5c\xc2\x67\x27\x24\x6a\xf1\xe2\x59\xf1\x2d\xaf\x71\xbe\x48\x19\x1d\xc3\x1e\x2e\x60\x76\x73\x76\x2c\x79\xd3\xee\x6a\x9c\x73\x75\xe1\xe7\x88\xc7\x11\x2e\x2a\x85\x93\x20\xe8\xea\xcd\xbc\x8c\x99\xc1\x65\xbf\x31\x36\xe3\x77\x0f\x56\x7f\x0f\x91\xb8\x06\x64\x62\x45\x44\xf2\x57\x89\xba\x20\xbb\x75\x65\xa5\xa3\x9b\xee\x4f\x84\x81\x60\x9f\x47\x86\xb6\x98\x42\xd5\x9d\xcd\x57\x5a\x51\xaa\x16\x24\x04\x00\xbc\xd2\x68\x42\x5f\xc2\x53\x64\x88\x8a\x73\xaa\xb1\xa7\xfc\xe3\x63\xe1\xf8\xef\x5c\x21\x23\x5c\xa4\x9d\x43\x44\xea\xcb\xd6\x35\x83\x0d\xcd\x61\xa6\xfa\x12\x0f\xc5\xfa\x8d\x18\x98\xef\xa9\x2c\xbf\xbf\x2b\xc5\x6b\x82\xb6\x59\xae\x2c\x29\x32\x3c\x1e\x19\x7c\xdd\x0d\x77\xb5\xca\x92\x15\xef\xe4\x55\x03\x13\x00\x35\x3a\xc9\x52\x9e\x0b\x7e\xf7\xd9\x64\x1f\xed\xf7\x19\x79\xdd\xe2\xfc\x7f\x5e\xa6\x04\xb7\x20\xda\xbe\x0e\x68\x94\xb4\x06\x11\x12\x27\xc7\x3d\x26\x74\xcc\x9e\x0d\x16\xc7\xf0\x2f\x08\x90\x1c\x1f\xce\xa4\x27\x20\x81\x77\x46\x13\x06\x85\x3b\x61\xed\x61\x3d\x75\x27\x51\x82\x82\x3d\x8f\xaa\x3e\x3f\xfc\x5e\x56\xc6\xa1\x9b\x34\x66\x01\x3e\x25\x6f\x62\x4d\xf8\xac\x49\x69\x5b\x8b\x83\xf2\x4a\x1d\xbb\xd4\xd8\xde\xc3\x19\xb2\x1d\xfc\xf6\xca\x79\x34\xa5\xc8\x5f\xc5\x40\x9a\xe9\x7c\xb5\xf6\xe2\x24\x86\xbc\xa7\x69\x5d\x71\xac\xd3\xe8\x59\x84\x52\x88\xb3\xf0\xb6\xa6\x88\xb5\xac\x03\xe1\x8b\x66\xb1\xf8\x49\xd7\x81\x8d\x7c\x51\x74\x30\x18\x07\x05\x39\xce\x7c\xb4\xab\x29\x65\xa5\x0d\xb8\x88\xc8\x94\x98\x4a\xeb\xa9\x91\x35\x8a\x79\x1c\x6b\x32\x48\xe4\xe9\x68\x02\xd1\x28\x80\x77\x15\x52\x49\x59\xb6\x23\x16\x27\xa7\xa8\x03\x4a\x8d\x6d\xa6\x15\xf0\x2e\x30\x3c\x0e\x73\xbb\xe0\x20\x62\x8f\x5e\x0f\xa4\x9c\x1a\x58\xda\x2c\x52\x10\x35\x9e\xd0\x5b\xe5\x86\x7a\xe9\x2b\x7f\xbf\x8b\xd6\xbe\xfe\x67\xe0\xdf\x05\xd9\xd1\x9b\xfa\x0a\x73\x27\xf1\x3f\xc6\xf4\x86\x1d\xfa\x3e\x1d\x6e\x07\x85\xb9\xec\x88\x71\xe5\x97\xf3\x6e\xd7\x9e\xb3\x4c\x2f\xfa\x39\xbf\x94\x8e\xf5\xda\xca\x41\x8e\x3e\xff\xe1\xe8\xa4\x5b\x6e\x86\x7d\x4a\x73\xb3\x8a\xad\x89\xe9\x12\x7b\x7a\x20\x93\x96\xee\xeb\xbb\xa0\x6b\x03\x25\x63\xeb\x9a\x5c\x8c\x23\xcd\x1e\x6c\x49\x8a\xea\x16\x98\xfb\xc8\x3e\xf3\xfb\xc5\xc9\xb8\x36\x91\x5c\xac\x93\xa9\x2a\xbe\x42\xc5\xef\xea\xe1\xbd\x2c\x19\x08\xbe\x33\x86\xcf\x5f\x28\x3a\x8e\x6d\x10\x62\x65\x7b\xb8\xf5\x37\xd0\x11\xd7\x7a\xe3\x31\x31\xc7\x3b\xba\x8f\x61\x78\x4e\x79\x7b\x85\x4e\xe0\xc2\x8b\x09\x16\xde\x24\xbd\xf2\xd5\xc0\xbd\x65\xab\x58\x4f\xdb\x8b\x6c\xf0\x7e\x62\x0d\x91\x4c\x1c\xd6\x70\x65\x7a\x7a\x1e\x1e\x97\x95\x7f\x37\x25\x4e\xe3\x5e\x66\xee\xf7\xf4\x22\x70\xee\xa4\xce\xaf\x2d\xba\x9a\x42\x45\x2d\xec\x22\x27\xf8\x4c\x8a\xd7\xf5\x90\x57\x6d\x47\x8a\xf1\xd6\x2f\xbf\xa2\x79\x33\x98\x92\x9e\x83\xbb\x84\x27\xae\x05\xa2\x51\x5c\xce\x54\x4e\x9b\x5e\x27\x1b\x69\x9c\x64\x34\xca\x69\xef\x7f\xbb\x24\xce\x7d\x5d\xf5\xab\xaf\x82\xf7\xd2\xc3\xaa\x0d\x40\xd1\xeb\xd5\x51\xc9\x95\x72\x14\x79\x5e\x8a\xa4\x77\xbe\xbb\x7a\xf3\xf5\x6a\x22\x33\x11\x52\x44\xf1\x69\x39\x74\x71\x79\x9f\x0c\xa4\x4c\x22\xcd\xc0\x67\x10\x47\x51\x84\x51\x83\xf3\x8e\xcd\x51\xe8\x04\x2c\x87\xfa\x69\xcc\x09\x97\x7d\x37\xb2\x18\x8c\x78\xee\x7f\xeb\xe0\x70\x90\x46\xc1\x32\xf3\x6d\xfa\xbe\x82\x3f\xf0\x79\xa6\x6e\xbc\xbf\x12\xb5\xa1\x7b\xcc\x48\x6a\xc7\xd9\x94\xd1\x12\x0a\xeb\xef\xc7\x8a\x5d\x9c\x76\xfe\x8d\x02\x6f\x48\xdb\x3f\x01\x4a\xec\x79\x6d\xf9\x2a\xad\x17\x0c\x8b\xf9\x23\xa5\x25\xbd\x04\x7e\xbe\xd0\x8f\xff\x29\x33\x92\xfa\xc5\xdd\xe4\x5d\x05\xa3\x56\x88\xbf\x37\x4a\x61\x74\xbe\x9d\x24\xef\xce\x2d\xa3\xd8\xd4\xf4\x3d\x5b\x17\xf6\x9a\x6a\xdd\xf3\x5b\x47\xfb\xd3\x08\xf9\xe9\xd6\xe6\x93\x52\xa7\xcd\x5b\x59\x20\x5a\xc4\xb4\xcc\xde\xf7\x52\x17\x9f\x82\x82\x4e\x48\x7d\x04\xcc\x1d\xc0\x4c\x09\x4d\xd5\x88\x36\x93\x7b\xdb\x0d\xea\x8a\x41\xb8\xd7\xb8\x9c\x06\x6f\xa0\xad\x51\x7f\x62\x6f\x95\xf3\xd6\x2a\xa4\xf6\x85\xa4\x50\xf6\xe0\xd4\x9f\x6a\x84\x4a\x79\x04\xfe\x97\x06\x0f\xaf\xaa\x3f\x99\x3a\xdd\xbc\x8a\xe8\x39\xcb\x54\xa6\xe0\x6d\xd7\x67\x10\xbd\x0d\x5e\xfb\x3f\xb7\x59\xa4\x40\x89\xde\xab\xac\xd6\xfd\x7b\xd2\x79\xd1\x4b\x93\xae\x82\x85\x92\x53\xde\x5c\x3b\x6f\xdc\x36\x7f\x29\x5e\x80\x65\x3a\xef\x83\xec\xc3\xf1\xde\x39\x31\x15\x13\x8f\xbd\x5e\xb8\xfa\xfe\x9b\x6a\x75\x35\x2b\xf6\x33\xf6\x2b\x9b\x90\x33\x0d\x7b\xea\xea\x8b\xf3\x71\x5a\x95\xd8\x4a\xde\xd0\xf0\xcf\xf7\xe8\xb3\x39\x08\xf0\xa2\xd0\xcb\x70\xcd\x7c\x4c\xbf\x3a\x49\x91\xdf\xd5\xf2\x43\x65\x43\xe8\xae\x19\x25\xfb\xfe\xb6\xb4\x5d\xe8\xc2\xed\x2a\x3f\x4f\x15\xa5\x2f\x25\xf1\xe3\x85\x1f\xc8\xc3\xbb\x2d\xb6\xe0\xd3\x07\xb1\x3d\xba\x9e\xb9\x28\x3b\xff\x8b\xc1\x35\xdb\xba\x43\x6c\x01\xcf\xa3\xd6\x8a\x63\x9f\xf7\xdd\x11\xee\x49\xf9\x50\x62\x9d\xbe\x18\x5e\x40\xa1\x50\x42\x06\xfa\x99\xef\xb9\x24\x2f\xb4\xfd\x2b\x73\xfa\xf9\xc0\xfc\x28\xbe\xb7\x96\x6a\xac\xc0\xc1\xbf\x24\x6f\x4d\x1e\x42\x46\x5e\x60\xc3\xa9\x1e\x64\xfb\x53\x59\x24\xad\x82\x1b\xc3\xea\xe7\x2b\xcb\xf4\x09\x25\x22\x3d\x6b\x3f\x92\x47\x32\x64\x92\x8d\x90\xdf\xe9\x1c\xa1\x8b\x6a\xea\x71\x8f\x0a\xff\x85\x56\xfc\x58\xdb\x28\x7e\xba\xd9\x9b\xf6\x09\x24\x07\x44\x1a\x25\x26\x85\xfe\xc2\xe2\x2b\xbf\x19\xfa\xdc\x3f\x4c\x0a\xea\x8b\xf1\x0f\xcc\xd1\xad\x19\x2c\x20\x94\x11\xcf\x91\x2d\xb3\xb5\x3c\x3c\xf0\x64\x6b\x79\xfa\x44\x65\x41\xc6\x64\x15\x4e\x7c\xa0\x4d\x3a\x97\xfc\xde\xe9\x3d\x7a\xc5\x95\x57\x92\x18\xcb\x27\x8d\xef\x97\x2a\xf4\xa8\x29\xfb\x36\xe2\x96\xd4\xf1\x46\x0c\x7e\x7a\xd3\xe9\xad\xb1\xcd\x96\xb3\x45\x5e\xa4\x48\xfe\x0d\x07\x4f\x0f\xc5\x6f\xad\xe8\x6a\x40\xd1\x4b\x60\xdf\x5b\xc7\x5e\x1e\x66\x5a\xf3\xb5\x04\x71\x06\xd2\x20\x68\x7b\x42\xf7\xa4\x4c\x53\xea\x1e\x53\x5a\x7f\x88\xb9\x63\xf8\x51\xad\xf2\x59\x53\xa9\x6e\xd3\x42\xf4\x56\xd0\x54\x0c\x9d\x89\xdd\x42\xde\x86\x2b\xb3\xc9\x84\xe1\xe3\x87\x51\x0e\x0a\x9a\x17\xb7\x3f\xe8\x0c\x98\xd5\xec\xc8\x5c\xf9\xc1\x44\x72\xe7\x1a\x6d\x07\x2a\x67\x03\x69\xc4\xf6\x8f\x3f\x69\xe7\x2f\xc7\x69\xbc\xf4\x14\xd1\x39\xe9\x24\x16\x0c\xee\x15\x48\x14\x1f\x65\xf4\x59\x72\xbb\x5c\xa1\xee\x33\x8d\xbc\x03\x9d\x27\x1d\x67\x08\x70\x30\x66\xd5\x8a\x21\xf9\x04\x92\xa3\xb6\x80\x0a\x1e\xb4\xdc\x22\xbf\x5c\xac\xbe\xdf\x63\xaf\x5f\xb0\x58\xd0\x5e\x9f\x1d\x7b\x8d\x01\x17\xc0\x8f\xb3\x84\xc8\xe9\xbb\x70\x85\xa0\xa6\x50\x83\x9f\x93\x65\x02\x05\x65\xea\x8c\x76\x9c\x1a\xcd\x07\x77\xce\xf2\xf5\xef\x8f\xd8\x32\x30\xb1\x83\x89\xe4\x3a\x86\xce\x57\xce\xe6\xd5\x1b\xbd\x4c\x93\x24\xcc\x0a\xde\x57\x0a\x93\x42\x66\xb6\x1c\x1c\x44\x14\x83\x7d\x06\x12\xd9\x5d\x82\x96\x07\x3e\xe7\x9f\x9a\xa9\x33\xd7\xf3\x81\x15\x5d\xa5\x60\x50\x9e\xd9\x77\x8f\xae\x43\x6d\x6c\xcc\x1d\xbd\xbf\xf0\x7e\x0c\x05\xc9\x51\x8b\xa7\x82\xa5\xa6\x58\x6e\xfa\xb9\x13\x64\x6a\x52\xda\x00\x34\xae\xba\x84\x7c\x52\x74\xd4\x50\x5f\x8f\x9a\x80\xd1\x8e\xf5\x64\xe1\xf2\x0f\x2a\x2c\x2f\xb8\x57\x6e\xed\x5c\xf6\x72\x83\x61\xaf\x3d\xf7\x0f\xaa\x05\xc3\xbd\xd2\x19\x12\x83\x93\xa5\x56\xb4\xe8\xdc\xa8\x62\x5e\x0a\x90\x2c\xf9\xc6\x66\x0f\x36\x07\xce\xa6\x0b\x24\x64\x9a\xb2\xd3\x1c\x79\xf2\xec\x7c\xdf\x86\x82\x6a\xd0\x0f\x92\x1e\x53\xbf\x0b\xe2\xe8\x32\xc2\x0a\x0f\x98\xa5\x59\x0f\x46\xb8\xcc\x59\xb5\xa3\xde\x88\xa6\x9e\x7f\x22\x34\xf5\x65\xe2\x03\x13\xc9\x65\x96\xe4\xce\xff\x60\xf2\xb5\x94\xc9\xc8\x68\x7c\x12\xd8\x8a\x48\x0a\x86\xb9\xd2\x32\x38\x56\x0e\x2b\x10\x99\xbc\xad\x00\x1d\x19\xa2\x25\x83\x5f\x90\xc9\x2e\x01\x0a\x32\x87\x1a\xda\x50\x7a\x1b\x98\xaa\xfa\x8b\xf8\xe5\x12\x88\x5a\xb8\xd5\x1d\x2c\xc7\x63\x4a\xe5\x8e\xa5\x64\xe1\x94\x58\x9d\x4b\x03\x4e\x85\x52\xeb\x29\x4f\x4f\xc6\xe7\x5f\xc7\xa3\x4c\xd3\x97\x70\xf5\xe4\x13\x42\x34\xd7\x13\x7e\xcf\x7c\xcc\xe6\x8f\xe4\x09\x88\xa8\x99\xd4\xe9\x02\x1f\xa3\x1e\x90\x0a\x13\x90\x51\x9a\x03\x04\x00\x1a\x1a\xcf\x00\xeb\x26\xe7\x92\xd7\xd7\x45\xd2\x1c\xd2\xf6\xcd\xad\x64\x18\x7b\x22\x46\x6b\x0b\x6b\xcf\x8b\xeb\x5e\x23\xbf\xf6\x89\x05\xb3\x81\x89\xe4\x56\x54\x25\x0e\x4d\x54\x8e\xa7\x22\xef\x7e\x0e\xa5\x60\xe9\xb3\x3a\x99\x6d\x99\xbe\xfa\x51\xf3\x02\xfc\xf8\x48\x8b\xe0\xbf\x33\xc2\x78\xfb\xb2\xf0\x7f\x75\x76\xdf\xac\x77\xb7\x23\x43\xfb\xc9\xc8\xf9\x78\x41\x4a\x01\x3f\x7b\xc6\xf5\x75\x02\x3d\x1a\x8b\xe9\x13\x91\x65\x6c\x9a\x1c\x39\x83\x2d\x8c\x57\xbb\x85\xc1\x0f\x4a\x02\xaf\xde\x94\x69\x95\x1e\xce\xb6\x48\x18\x3c\xba\x11\xff\x46\xdd\xf9\x0e\x4a\x16\xcf\x70\xba\x82\x3a\x67\x54\x49\x61\xbf\x69\x70\x70\xa3\x00\x64\x97\x6a\xa9\x44\x9a\x43\x9c\x2a\xab\x9f\xf0\x4c\x12\x2c\xe7\xcc\xdf\xfb\x86\x2c\xcb\xe6\xb8\x58\x99\x61\xcc\x1e\x74\xff\x3e\x67\xd5\x30\xf9\x27\x82\x08\x94\xf8\x5b\x70\xd0\x76\x02\x59\x2b\x56\xc0\x17\x65\x8b\x24\xe6\x8f\x2c\x56\xa5\xeb\x39\xb7\x9f\x3b\x48\x1a\xf8\xd7\xd4\xe6\xc5\x4d\x43\x8f\xaa\x51\xda\xf3\xf9\x4f\xb4\x6d\x0a\x91\x26\x81\x7d\x20\x2c\x94\x2c\x48\x56\x11\x12\xce\x75\x9a\x16\xde\xe2\xa2\x5f\x0f\x49\x85\x63\xa2\x09\x3e\xc6\xba\x2b\x95\xcd\x24\x49\x3a\x39\x71\xfc\x99\x3b\x1a\xd0\xc4\x7c\xfd\xb4\xcc\x43\x4d\xd3\x45\x57\x08\x4a\xa2\x2b\xf7\x70\xb5\x55\xa1\x10\x17\x05\xd7\x50\xbb\xe9\xa4\xb8\x1a\xe4\xf8\x19\x4b\xa1\x71\x69\x9e\x95\xf5\x7f\x1a\x69\xbb\x48\xbb\xef\x44\xfa\x39\xc1\x2e\xd6\xbc\xd6\x26\x03\x91\x2c\xf0\xcc\x1f\x24\xc4\x8a\xa1\x23\x0d\x65\xc3\x5e\xf6\x39\x79\x35\xd9\x99\x61\x77\x31\xe6\xa6\x61\xcb\x3c\x28\xed\x8e\x36\x98\x6b\x2e\xdc\xfd\x7b\xd4\x36\x4b\x92\x3c\xf7\xaf\x67\xec\xb0\x56\x29\xfd\x86\xc2\xd1\xe6\xbc\x01\x6f\x1d\x2a\xa3\x4d\x6e\x67\xb8\x48\x42\x9f\x15\xd6\x97\x6c\x85\xc3\x02\x1a\xbb\xc7\xf4\xcc\x93\xd2\x45\x6a\x19\xf7\x56\x5e\xd3\x2f\x73\x0a\x04\x4b\x83\x61\x51\x54\x9c\xe3\x27\x7a\xe3\x63\x09\xd6\x35\x62\xf9\x1d\x1c\xc1\x83\xf2\xd4\x5d\x21\xb2\xe8\x44\x79\x6e\xbc\x7c\xf4\xf6\x83\xd5\x01\x2d\xb2\x1b\x0b\xac\x60\x61\x2e\xf1\xdc\x1a\x33\x7d\xa6\x3e\xed\xd9\x54\xf7\x83\x47\x4d\x25\x1f\x4c\x4d\x9f\x8b\xd1\x2f\x77\x82\x65\x9f\x7c\xc0\x5a\xf2\x50\xa8\x43\x26\x08\x89\x8d\x22\xbf\x75\xc6\x24\x23\xe8\xe9\x48\xd8\xda\x65\x15\x53\x9f\xfd\x19\xaa\x86\xac\xd3\xeb\x7f\xc8\x8e\x50\x25\xd7\x8d\xdf\x54\xe0\x44\x00\x88\xe3\xad\x0b\x88\x5d\x3e\xa2\x3c\x01\xe6\x4e\x4b\xc0\x68\xb4\xcc\x5e\xdc\xa8\xf8\x83\xe2\x6c\x8a\xfc\xdf\x87\x97\x9e\xf7\x4a\x90\x65\xa0\x3f\xe4\x2b\x1c\xc1\x4b\xab\x44\xf0\x2e\xa3\x60\x9a\x78\x8e\x7c\x44\x63\xbb\x1a\x4a\x3b\x13\xc6\x4e\x4d\x48\x49\x8c\x24\xe1\x43\xda\xe5\xa0\x1e\x86\x8a\xc3\xfa\x6c\xe4\x98\x85\x5f\xe5\x07\x26\xc0\x7c\xdf\x7f\xdb\x9b\x85\xe1\x10\x43\xad\x54\x67\xf6\x08\x74\xd4\xff\x32\x24\xbe\x0e\x20\x6a\xb5\x56\xb2\x6e\xa7\x30\x04\x00\x80\xd3\x4d\xc9\xd0\xcd\xda\xc2\xcd\x46\xc2\xca\xc5\xc6\xc2\xcd\x06\x10\x44\x08\x88\xf1\x23\x84\xf8\x85\x04\x74\x11\x08\x09\x61\x21\x09\x01\x31\x5e\x84\xa0\x04\x02\xf1\x63\x8f\x8e\xfb\xff\x03\x1c\x9c\xac\x31\xaf\xbc\xfe\x6f\xa0\xbb\xaa\x38\x01\x00\x00\x03\x6f\x5d\x43\x37\x6d\x0b\x4f\xa8\xb3\x8b\xd3\x2b\xcc\x1b\x1b\xa8\x9b\x97\xb3\x0d\x14\xe3\xec\x66\x05\x00\x6f\xd3\x96\x0f\x29\xc9\xb0\xfa\x30\xd8\x1f\xad\xde\x3e\xb5\x55\x6d\x00\xc4\x4e\xf1\xc4\x8a\x82\x8e\x9d\x4e\x23\x8e\x1e\x44\x07\x55\x0c\x14\xfe\x65\x0d\x62\xaf\xd2\x85\xf6\x4e\x8e\x76\x77\xf4\x75\x40\x3a\x48\x7b\x03\x55\x33\xd5\x9f\x00\x5b\x8c\x34\x6e\x87\xf2\x22\xff\xad\x00\xd4\x94\x9e\x2b\x96\xc9\x9b\x07\xfd\xbf\x00\x00\x00\xff\xff\x4b\xad\xcc\x72\x5d\x20\x00\x00") -func web_uiStaticAppleTouchIconPngBytes() ([]byte, error) { +func web_uiV1StaticAppleTouchIconPngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticAppleTouchIconPng, - "web_ui/static/apple-touch-icon.png", + _web_uiV1StaticAppleTouchIconPng, + "web_ui/v1/static/apple-touch-icon.png", ) } -func web_uiStaticAppleTouchIconPng() (*asset, error) { - bytes, err := web_uiStaticAppleTouchIconPngBytes() +func web_uiV1StaticAppleTouchIconPng() (*asset, error) { + bytes, err := web_uiV1StaticAppleTouchIconPngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/apple-touch-icon.png", size: 8285, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon.png", size: 8285, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticApplicationMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\x6b\x7f\xdb\x36\xb6\x28\x0e\xbf\xdf\x9f\xc2\xe4\xce\x66\x89\x08\xa6\xa5\xa4\x9d\xb3\x4b\x05\xe6\x49\x73\xed\x9e\xa4\xc9\x34\xe9\x74\x66\x28\x36\x3f\x5a\x82\x24\x36\x34\xa0\x92\x90\x2f\x35\x35\x9f\xfd\xf9\xad\x05\x80\x04\x29\x3a\xed\xf3\x3f\xe7\xc5\x79\x61\x8b\x04\x71\xc7\xc2\xc2\xba\xe3\xec\xa1\xf7\x1f\x27\x0f\x4f\x7e\xfd\xdb\x9e\x57\xb7\x27\xff\x93\x5f\xe5\x1f\x96\x55\xb1\x53\x27\x6f\x8a\x8b\x2a\xaf\x6e\x4f\xae\x66\xd1\x6c\x1a\x3d\x82\x4c\x5b\xa5\x76\xf1\xd9\xd9\xaf\xbf\x41\xde\x68\x29\x2f\xcf\xfe\xe3\xe4\x21\x7c\xf8\x5e\x2c\xcb\xfd\x8a\xd7\x27\x1f\x8a\xdf\x7f\x2f\x79\xf4\x6b\xed\x64\xaf\x31\xed\xd7\xda\x2d\xf0\x4c\xee\x6e\xab\x62\xb3\x55\x27\x8f\xa6\xd3\x6f\xe8\xc9\xa3\xe9\xec\xb1\xed\xc3\x4b\xb9\x17\xab\x5c\x15\x52\x50\xa8\x38\x3a\xc9\xc5\xea\x44\xaa\x2d\xaf\x4e\x96\x52\xa8\xaa\xb8\xd8\x2b\x59\x61\x0b\x3f\xf2\x92\xe7\x35\x5f\x9d\xec\xc5\x8a\x57\x27\x6a\xcb\x4f\xde\x7e\xff\xf1\xa4\x2c\x96\x5c\xd4\xfc\xb8\xcb\xb2\xda\x9c\x75\x1f\xe1\xfb\xf3\x5c\xf1\x18\x9b\x3f\x9d\xfe\xaf\xd3\xe9\xe3\x8f\xb3\xc7\xf1\xd7\xff\xfd\xaf\xff\x38\x79\x78\xf6\x1f\xde\x7a\x2f\x96\xd0\x8f\x90\x53\x45\xee\xec\xdb\x89\x08\x39\xb9\xbb\xca\xab\x13\xc5\x78\x54\x72\xb1\x51\x5b\x2a\xd8\x52\x45\xea\x76\xc7\x43\x4e\xe6\x15\x57\xfb\x4a\x9c\x2c\x55\x54\xd4\x3f\x17\x62\x25\xaf\x43\x4e\x12\x6f\x16\xcf\x18\x63\x3c\x12\x72\xc5\x3f\xde\xee\x78\x10\xa8\xc4\x9b\xc6\x7e\x5e\x55\xf9\xad\xcf\x18\x13\x4d\xe3\xdb\x56\x7c\x8f\x31\x11\x04\xe1\x94\x31\xa6\x9a\xc6\x17\xfb\xcb\x0b\x5e\xf9\x8c\x41\x23\x72\x7d\xa2\x82\x40\x9d\x4f\x83\x40\x9d\xce\x4e\x0a\x71\xc2\xc9\xa1\xed\x5f\xd5\xf5\xef\xb3\x4a\x79\xc6\xee\x0e\x4e\x97\x78\xbe\xdc\x86\x3c\xba\xcc\xd5\x72\x1b\xee\x14\x69\x9a\x34\xa3\xce\x48\x05\xb9\x53\xa9\xc8\x98\x37\x3d\x10\xaa\xba\x5a\x0b\xf8\x46\x2b\x5a\x90\xbb\x62\x1d\x2e\x55\x94\x2f\x97\x7c\xa7\x9e\xe7\x2a\x0f\x39\xd1\x0d\x4a\x9a\xd3\x1a\x66\x82\xdf\xec\x72\xb1\x92\x74\xef\x0c\x97\x96\x6c\x9f\x2c\x55\xb4\xcc\x97\x5b\x1e\x73\xba\x64\xfb\x84\xa7\x75\x16\xc3\xbf\x20\xa8\xe7\x50\x6d\x10\x94\xe9\x32\x0b\x82\xb0\x68\x1a\x78\x8a\x56\xb9\xca\x49\xd3\x54\x9e\x9e\x86\x5a\x55\x85\xd8\xf8\x9e\x9d\x06\x41\xec\xc8\x9a\x26\xb4\x35\x32\xa5\xa2\x9d\xdc\x85\xa4\x69\x96\x2a\xda\xec\x8b\xd5\x64\x12\xd7\x84\x42\x85\x4d\x13\xc2\x0f\xdb\x27\x77\x87\xf8\x4e\xc9\xff\xf9\xf0\xee\x87\x78\xa9\x22\x21\xe5\xee\x40\x68\xe8\xcb\x8b\x5f\xf9\x52\x75\x13\xdd\x5b\x94\x2e\x95\x40\x1f\x13\xac\x0a\xc7\xab\xb8\x58\x61\xcd\x54\x90\xb8\xed\xf9\xe0\x1b\xa6\x51\x41\x08\xcd\x19\xe6\x2d\x9a\x26\xcc\x31\xb5\x7d\x60\x77\x07\xf8\xac\x5f\x08\xc5\x81\x07\x41\x98\xa7\x38\x75\x97\xbc\x7c\x96\xd7\x3c\x14\x24\x63\x15\xa1\x76\x3e\xba\x7e\x25\xa1\x64\x79\x2a\x32\x2a\xf6\x65\xc9\x98\x0c\x02\x4c\x18\x16\x26\x24\x96\x2c\xa7\xf2\xd0\x2d\xb0\x04\x30\x87\xe5\xbf\x77\x79\x2b\x5a\x50\xe9\xae\x68\xce\xa4\xbb\xa2\x7b\x26\x13\x9e\x76\xcb\x9f\xc5\xdd\x33\xac\x6e\x9e\xee\x33\xac\x1e\x06\x54\x31\x91\x40\x42\x0c\xff\xf4\x60\xc9\x1d\x6e\x99\xa7\xb0\x1f\x42\x45\x12\xc5\x54\xb4\x94\x62\x99\x2b\xe8\xd0\x65\xbe\x0b\x15\x75\x07\x42\x48\xac\x00\xf8\xab\x44\xb1\x54\x65\x71\xa8\x58\x6f\x9c\x8a\x50\xc5\x4c\x0e\xf8\xae\xa2\x7a\x57\x16\x2a\xf4\x4f\x7c\x42\x68\xc1\x94\xd9\xbd\xf3\xb5\xac\xc2\x79\x71\x7a\x3a\x27\x2b\x5e\x72\xc5\x4f\xaa\x54\xa5\x45\x96\x41\xa7\x45\xe2\xd5\x61\x45\x62\x0f\xfb\xf6\xe2\x72\xa7\x6e\xdf\x21\x88\x84\x15\x31\xc0\x77\x08\x45\xd3\x84\xa6\x68\x3b\x1c\x5a\xeb\x01\x13\x00\x15\x3d\x4f\x25\xcf\x05\xce\x68\xca\x33\xea\x4d\x09\xcc\x4f\xbd\xdf\xed\x64\xa5\x22\x5d\xfc\x85\x9e\xad\xa6\xc9\x3d\x96\x47\xd7\x88\x3c\x12\xa7\x66\x9c\x2d\x06\x6b\x4b\x0e\xce\xda\xe5\x7a\x73\xe2\xe4\x56\x0c\x21\xa6\x8f\x6b\xf4\x02\x16\xcc\x87\x9e\x9d\xfa\x13\x11\x55\x7c\x57\xe6\x4b\x1e\x7e\x50\xd4\x3f\x7d\x30\xf3\x49\xa4\xe4\x1b\x79\xcd\x2b\x9c\x3a\x32\xc7\x9a\x78\xb4\xe1\xea\xa9\xd2\x48\x97\x87\xc5\x08\xc4\x55\xe4\x4e\x55\xb7\x77\x15\xf3\x55\xb5\xe7\x80\xc6\x2a\xc4\x6a\xeb\xbc\xac\xed\xeb\x2c\xf6\xa1\xcb\xfa\x0d\x9e\xe2\x49\x35\xf1\xf5\xeb\xa4\x8a\x5f\xa8\x48\xf1\x1a\x26\x14\x66\x69\x97\x57\x35\x87\x6d\x09\xb3\x5e\x1d\x96\x88\xa8\x24\xb9\x3b\x2c\x15\xce\xab\x19\xea\x81\x97\x35\x3f\xa9\x98\x3a\x18\x0c\x50\x75\xd3\x51\xb7\x18\x10\x97\x56\x69\x0c\x59\xac\xc3\x10\xc7\xef\x6b\x64\x72\xbc\xa2\x3c\x55\x19\x2c\x97\xaf\xf1\x02\xe6\x33\x6b\xec\xcd\x0c\x0e\xf5\xa6\x5d\x3b\xfb\x90\xdc\x1d\xa7\x96\x5d\xea\xac\x4b\x5d\x86\x66\xa2\x74\x6f\x5f\x45\xf9\x52\x15\x57\xfc\x45\xc9\x2f\xb9\x50\x66\x98\x9c\xdc\x39\xab\xba\xd6\x07\xcf\x4a\x9e\x70\x06\x5d\x9b\x5f\x6f\x8b\x92\x87\x3c\x08\x66\x5e\x6f\x71\x2d\x7a\xe7\x5d\xd9\x5d\x7f\x37\x17\xf5\x4b\x8b\xe2\x15\x21\xdd\x69\xb0\xa9\x38\xe4\x74\xf0\x7f\xd5\x76\xde\x83\xbd\x54\x96\x90\x46\x39\x81\xf3\xe8\x80\x60\xa1\xba\x86\xbf\x50\x91\xad\xe6\x84\x03\x3c\x76\xa5\x8f\x00\x48\x61\x1f\x1f\x18\x18\xe8\xf5\x6e\x5d\x94\x8a\x57\xa1\xa2\x70\x2c\xcd\x71\x77\x77\x49\xe4\xf0\x67\x5a\x87\xb1\x0b\x8d\x51\x60\x32\xcf\xd9\x54\x77\xa5\x9b\xa9\x55\x77\x5c\xfe\xd4\x62\x88\xc6\x27\x54\x30\x1e\x2d\x2b\x9e\x2b\xfe\x5c\x2e\xf7\xb0\x4a\x2f\xab\x7c\x03\xbf\x7a\x7b\x08\xf3\xd5\x2c\x21\x41\x2c\xd2\xe2\x14\x32\xf8\x1c\x9a\x33\xa9\x5d\x2c\xd1\x75\x61\xab\x17\xba\xeb\x32\x4c\xf0\x0f\xf9\x25\x0f\x39\xf5\x55\x7e\x51\x72\x9f\x04\x81\x9b\x0e\xbb\xbb\x5b\x87\x44\xc5\x30\x33\x55\xad\x9e\x6d\x8b\x72\x45\x7d\x55\xf9\x24\xc1\xcd\x6b\x5a\xaf\xbf\xbb\xfd\x98\x6f\xb0\xa8\xaf\x2e\xe4\xea\xd6\x27\xe9\x34\x6b\x1a\x1e\xe5\xbb\x1d\x17\x2b\x2c\x17\xf2\x48\x5e\x0b\x5e\xd9\xe1\x0e\x06\x60\x0b\x92\xd8\x81\xb3\x8d\xbb\xd2\x48\x01\xb1\x10\x76\xb8\xc7\xf4\x6a\x89\x55\x94\x2b\x55\xe1\x40\x6e\x77\xdc\x27\x64\xe2\x9f\xf9\x13\x9d\x95\x3a\x15\x5d\x76\xcb\x20\x45\xc4\x6f\xf8\x32\xd4\x99\xda\x09\x53\x89\x69\x40\xa5\xb3\x2c\xe6\x51\xc5\x2f\xe5\x15\xef\xb0\x93\x69\xc0\xad\xf4\xd6\x90\x6e\xb2\x0a\xa1\x6a\x41\x2b\x36\x9d\xeb\xee\x85\x82\xf1\xb4\xca\xc8\xbc\x9a\x4c\xc8\x52\x45\x9f\x10\xb7\x08\xea\x6f\x4a\x79\x91\x97\x2f\xae\xf2\xd2\xa7\x9e\x42\x12\x42\x7f\x53\x69\x95\xf5\x3e\x13\x07\x8a\xae\x74\x4b\xc5\x7a\xb0\x34\xb8\x6c\xdb\xbc\xee\x1d\xa4\x48\x47\x51\xc9\xda\xaa\x39\x1c\xf9\x5d\x43\x54\x12\x5a\x33\x19\xf1\x2b\x58\x3a\x80\xb5\x9a\xdc\xd9\x53\x20\xda\xe6\x62\x55\x72\x9a\x9b\xcf\x40\xde\xc1\x00\x05\x60\xb9\x1a\xa1\xb0\x62\x53\x5a\xb0\x3a\x15\x99\x85\xc6\xe2\xbc\xb2\x03\xc5\x52\x51\xbe\x5a\x85\x8a\x0a\x0a\x99\x60\x1a\x0e\x9a\xe0\x00\x4a\x63\x48\xb9\xdc\x1d\xa8\xa1\x46\x88\x83\x9c\x2e\xf4\x80\xdb\xe1\xcc\x8f\x86\x8e\xb3\x21\x58\x07\xb5\xfd\x13\x86\x7a\xce\xe9\x27\xe4\xb3\x52\x0a\xfe\x02\xfa\x16\x04\xca\x25\x22\xc8\x5d\xe1\x4c\x0d\xc1\xb1\x56\x30\xd6\xc2\x4c\x00\x0c\x4a\xc3\x02\x16\x0f\x15\x74\xc7\xcc\x12\x99\xab\x23\x38\xe9\xea\x26\x07\xbf\x46\x6e\x07\xa9\xef\x20\x00\x1c\x74\xa3\x10\xb7\xc2\x43\x12\x6e\x42\x45\xf0\xd1\xa4\xd0\x4b\x40\x50\x71\x47\x24\x32\x91\x84\x78\x64\x71\xa1\x7e\x90\x2b\x1e\x04\xa1\x8a\xe4\x5e\xf1\xea\xf5\xc7\xb7\x6f\x18\xef\x9e\x09\x75\x86\xbb\x55\x97\xe5\x37\x38\xe2\x20\xe0\x51\x21\x84\xce\x13\x04\x30\x27\xaa\x2a\x2e\x43\xd5\xa5\x12\xac\xb4\x7d\x65\x4e\x01\xe8\x4b\x21\x76\xfb\x76\x00\x42\x63\x51\xb3\x73\xa0\x6f\x2b\xbe\xce\xf7\xa5\x7a\xb6\xe5\xcb\xcf\x7c\x05\x14\x95\x79\xe2\xf6\x89\xaa\xe8\x2a\x2f\xf7\x1c\xc7\x8d\x4f\xd8\x20\x3e\xd9\x14\x1c\xf4\xce\xd0\xc0\x4c\x24\x6d\xbd\x1f\x78\xc9\x97\x0a\x2b\xae\xed\x23\x1f\x7e\x8c\x43\xa7\x97\x4d\xe3\xc3\x54\xe6\x15\xcf\xf1\x5d\x0f\xcf\x94\xf8\xbb\x69\xd4\x7d\x75\xa1\xee\x46\x73\x28\x1d\x35\x3a\xa5\xb9\x3d\x48\xc6\xf1\x9d\xc7\xd8\x3f\xef\x43\x85\xd0\x97\x87\x3e\x89\xdb\x0a\x90\x4d\xd4\xbd\x96\xd5\x53\xc4\x62\x50\x78\x98\xdc\x15\x04\xa8\xf7\x72\xdc\x74\x39\x4b\x33\x5a\xe1\xb4\x16\xe5\x0a\x80\xa1\x6e\x1a\x6e\xb1\x4d\xc1\xaa\x54\x66\x64\x2e\x27\x13\xe2\x09\xc4\x2a\x2d\x32\x2f\xa8\x20\x49\x1e\xed\xf6\xf5\x36\x2c\x90\x28\xbc\xe4\xd5\x86\x87\x39\xbd\xc1\x6f\xdd\x91\xa1\x99\x41\xd1\x3f\x0b\x60\x46\x92\xb6\x10\x90\x96\x39\x89\xf3\x6e\xce\x80\xfb\xbc\x1b\x40\x46\x10\x84\x7c\x08\x1a\x2d\x40\x38\x68\xed\x63\x8b\xd6\x0c\x11\x65\x71\xf1\xbc\xc5\xa9\x08\x52\x79\xf5\x54\x85\x53\xa0\x21\x7f\xda\xed\xec\x0e\x9f\xa8\xa8\x06\x76\x3b\x9c\x11\x5a\x31\x45\x0b\xf6\x59\xb4\x08\x09\xa8\x6d\xa8\x96\x7d\x16\x69\x91\x4d\x04\x1d\x36\x70\x4c\xd6\x3d\xeb\x1d\x93\x1c\xa6\x82\x53\x5f\x48\x81\x74\x26\x10\xd8\x75\x0d\x07\xcd\xaa\xa8\x77\x65\x7e\xeb\x13\x4d\xe3\x2d\xa5\x50\x79\x21\xea\xe1\xf1\x46\x5d\xa6\xf9\x87\xa3\x93\x02\xc1\x2b\xcd\x68\xce\xa6\xb4\x6e\x39\xfd\x79\x7d\x9e\xcf\xf3\xc9\x84\x54\x8c\xa7\x79\x46\xab\xa8\x56\xb7\x25\xec\x18\x99\xe6\x59\x87\xa8\x2a\xea\xcb\x72\xd5\xf6\x84\x0a\x66\x72\x46\x26\x8d\xaa\x04\x8b\x00\x6f\x0f\x23\xf0\x70\x6b\x84\x83\x5c\xcc\xf7\x09\xd5\x94\x72\xff\x43\x10\x3c\x0b\x2b\xf2\x07\xcd\xd2\xa7\x61\xd5\xc2\x09\x21\xc0\xf4\x61\x8b\x61\xc1\xa0\x34\x0d\x45\x10\xb8\xad\x7b\x85\x26\x33\x46\xeb\x2a\x12\x11\x9b\x39\xae\x9c\x39\x26\x44\xa3\xe4\x9c\x4d\xef\x9f\x1b\xe5\xb4\x73\x34\x10\x7f\x24\x75\x64\x26\x54\x62\xa6\xcb\x8f\x75\x5d\x64\x8c\xee\xfd\x6c\xe9\x5e\x44\x11\xec\xca\x90\x12\xaa\xcd\x5b\x25\x6f\x73\xb5\x8d\x2e\xf3\x9b\x70\x4a\xab\x74\x96\x9d\xc2\x6e\x9e\x12\x32\x09\xab\xf4\x11\xd4\xbf\xbb\x81\x9d\xdd\x55\xf9\x42\x57\xa9\x65\x1f\x16\x40\x24\x83\xcd\x18\x56\x89\x7f\x21\xab\x15\xaf\xfc\xd8\x07\x38\xe3\x42\xf9\x24\xf9\x3a\xf6\xaf\x8b\x95\xda\xc2\xba\xa9\x64\x16\x03\x92\x9a\xce\xbf\x3e\x97\x73\x39\x61\x8f\x88\x7f\x99\x57\x9b\x42\x18\x9c\x1d\xe6\x93\x0e\x76\xc5\xe4\x07\x91\x4a\x60\x0e\x69\x41\x08\xad\x92\xb0\xad\xd6\xe6\x3e\x75\x20\x7d\x97\xaf\x56\x40\x4c\xf7\x4b\xd9\xfa\xbd\x91\x12\xa6\xb7\xba\xc0\xc4\xff\x19\xbb\x69\x0a\x92\xb8\xd7\x97\xd1\xda\xbb\x54\xef\xb8\xf7\x5f\xae\xdd\xae\x80\x83\x9a\x3e\xf4\x57\x0b\x32\x32\x77\xea\x78\x24\xd7\xeb\x9a\x2b\xac\x28\xb6\x6f\xaf\x79\xb1\xd9\x2a\x2a\xd9\x5a\xb4\x94\x93\x3d\x59\x2f\xe4\xcd\x87\xe2\xf7\x42\x6c\x82\xc0\xf4\xe6\xf4\x42\xde\xf4\xf1\x43\x9b\xc7\xa7\xde\x8c\x4a\x24\xe6\xa7\xe7\xac\x68\x1a\x2d\x34\xd1\x22\xae\x82\xed\x50\xf2\x07\xc4\x58\x38\x3d\x77\xbe\x06\x41\x58\x30\xae\xc1\x13\x38\x46\x7a\x61\x90\x6b\xd1\x32\x2f\xc5\xbc\x62\x40\x4c\x8d\xf5\xec\x47\x5e\x16\x40\xd3\x37\x4d\x81\x3c\x7a\x57\x4f\xc1\x90\xf9\x7d\x59\xca\x1c\x2a\x6b\x9a\xa9\xe5\x71\x8a\x89\x81\xc2\xa6\x09\xf3\x31\x98\xa3\x15\x95\x64\x02\xb0\xdb\xcd\xee\xd3\x8e\xa4\x7e\x45\x05\xbb\x16\x29\xcf\xda\xa3\xa4\x69\x42\xc1\x7e\x45\xac\x47\x3b\x1c\x10\x04\xf0\x61\x29\x58\xb8\xc4\x43\x2a\xf4\x9f\x14\xeb\x2a\xbf\xe4\x27\xf8\x5f\xb7\xcb\xbe\x9a\x7e\x75\x82\xab\x84\x4f\x5b\x5c\x0e\x78\x3c\x3b\xf7\x09\x4e\xb2\xbf\xac\xeb\x8f\xfc\x46\xf9\x2d\xa2\x88\x2f\x4a\xb9\xfc\x7c\xe2\x15\x97\x30\x19\x39\x74\x99\x18\xde\xe3\xa3\x84\xf3\xdf\x20\x65\xcb\x4c\x51\x05\x5d\x48\xa7\x59\x64\x86\xa8\x05\xa9\x4d\xd3\x4b\xb4\xa8\x9c\xb4\xe5\xa9\x8a\xae\xab\x02\xb8\x81\x27\xde\x4a\x2e\xe1\xb0\x3b\x01\x6a\xeb\xfc\x89\xfe\x0f\x2c\xcc\xb9\x4f\xa8\x8a\x96\xa5\x44\x32\xb4\x9d\x85\xa5\x88\x56\x5c\xe5\xcb\x6d\x48\x08\xc5\xc9\x62\x82\x50\x87\x4d\xfb\xd5\x21\x79\xd9\x12\x38\xba\x3e\x83\xc4\xfb\x43\x82\xa6\xe0\xe0\x33\x80\x07\xfd\x76\xf0\x66\xbb\x10\x86\x3e\x0d\x09\x75\x8e\xba\xe7\x16\xe7\x18\xc1\xcd\xdc\xb2\xf1\x56\x38\x46\xac\x28\x57\x75\x5c\xaf\x02\x04\x25\x9a\xe6\x83\x3d\xeb\x49\x02\x8c\x57\x41\xe2\xe7\x21\x9f\xf8\xa9\x3f\x39\x16\x6f\x16\x89\x8a\x7d\x9f\x4c\xfc\xcc\xa7\x85\x16\xac\x90\x39\x8a\x56\x80\x78\x6f\x1a\x5b\x40\xf3\x73\x28\xe1\x06\x16\x1d\x67\x42\xe7\x03\x8c\x58\xc0\xd9\xad\x88\x6d\xa6\xc0\xea\x54\x5a\x64\xba\xc6\x76\x58\x6f\x1c\x6e\xd1\xe9\xb6\x20\x77\x47\x92\x5d\x15\x04\xc0\x3c\x50\xc5\x80\xd2\x9a\x1b\x8a\x8f\x4d\xa9\x64\xaa\xcf\x48\xf4\x65\xd9\xf3\x23\x81\x87\x20\x9a\x35\xaf\x98\x4c\x8b\xc9\x24\x9b\x13\x7f\x82\x27\x6a\x3a\xcd\x92\xb0\x82\xa3\xc7\x50\x29\x48\xd5\xd1\x10\xf8\x42\x64\x0e\xa1\x3e\x12\xed\x45\xbd\x2d\xd6\x0a\xea\x89\x87\xdf\x90\x66\x13\x2e\x85\xfa\xba\x5b\x39\x47\x76\x5e\xeb\x75\xdc\xdb\x55\x97\x69\x9d\x01\xba\x6b\x05\xf2\x69\x9d\x0d\x25\xf1\xa6\x4c\xc9\xea\x50\x57\x68\x0a\x1f\x4d\x55\xd9\x34\x79\xd3\xc8\xb4\xcc\x92\x3c\xf1\xc2\x3d\x2b\x49\x7c\x25\x8b\xd5\xc9\x34\x0e\xb5\xcc\x0c\xd8\xb1\xba\x1d\x48\x49\x68\x01\xff\xbc\x19\x39\x10\xba\x3f\xe8\xf3\x0c\xd8\x3c\xc6\x19\x63\xbf\x0b\xdb\xcb\xc2\x2d\x9e\x4e\x33\x20\xa8\x64\xea\x3f\xf4\xb3\x20\x28\x42\x58\x97\x6e\xdc\xbf\x0d\x29\xf3\xa5\x8a\xf2\x5f\xf3\x9b\x0f\x5c\xa9\x42\x6c\xea\x68\x5d\xe6\xea\x1d\xb2\x10\x75\xd3\x18\x9e\x15\xe1\x46\x10\xa0\x00\x8d\x9c\x3b\x94\x69\x91\x25\x3c\xae\x80\x02\x60\x77\x07\x42\xd2\x22\x63\x90\xa1\x3b\xc1\x91\x46\x31\xcc\xa9\x37\xa5\x9c\x56\x3d\xa6\xff\x93\x15\x86\xda\xb3\xba\xa0\xa8\x98\x40\x6d\x84\x41\x1c\x35\x2d\x81\xcb\xb0\x63\x9b\xfb\x0f\x01\x22\xca\x74\x9a\xcd\x49\x19\xe9\x69\x22\x54\x6a\x51\x6a\x28\x19\x8f\x2e\x8b\x4b\xe4\x6a\x9b\x46\x00\x33\xf1\x23\xaf\x77\x52\xd4\xfc\x35\xcf\x57\xbc\x0a\xfd\x67\xba\xde\xd3\x8f\x5a\xc8\x01\x50\x28\x11\xec\x6a\x18\xe2\x1e\x48\xdd\x3d\xea\x39\xe0\xbf\xde\x9e\x92\x90\xbb\xb2\x5d\x94\x9a\xcc\x2f\x2a\x9e\x7f\x3e\x14\xeb\x10\xfa\x51\x88\x93\x8a\xe4\xba\x4b\xb0\xcf\xee\xda\xca\xb4\x98\xd7\x2b\x8d\x00\x67\x29\xc5\x15\xaf\x14\xaf\xea\xb4\x9e\xf8\x27\xfe\x04\x3e\x64\xe4\x2e\x67\xb5\xad\x11\x29\xbe\x9a\x1c\x72\x96\x37\x4d\x61\xcf\x94\x3c\x09\x73\x4f\x0f\x3a\x08\xba\x8e\xe4\x84\x56\x69\x9e\x59\x10\xea\xe6\xf5\xed\x00\x27\xd9\x59\xa5\x25\xc0\xce\xd2\x9d\x4f\xb3\xa3\x70\x1a\x96\xe9\x2c\xd3\x0c\x12\x12\xf8\x4e\x7f\x49\x99\xe6\xfd\xad\x9c\xb1\xde\x78\xf2\x0c\xa1\x44\xb2\xa5\x5d\x92\xb9\x44\xae\x81\x47\x95\x99\xff\x97\x05\x2f\x57\x75\x2a\x33\x40\x17\xe9\x48\x7a\xc6\x14\xa1\xde\x3e\x08\x2a\x60\xb5\xa1\x87\x2f\x51\x84\x08\x54\x29\x73\x13\x42\x45\xbb\x11\x10\x42\xf7\x4c\x52\xa7\x65\x68\x56\x43\x89\x24\x92\xed\x5b\x1c\xe9\x3f\x04\xdc\xb8\x0f\x82\xbd\x07\x9f\x60\x69\x60\xd5\xf6\xb8\x14\x32\x6b\x9a\x32\xf5\x1f\xe2\x23\x35\x8c\x22\x02\x7d\x09\xf5\xd5\xac\x70\x54\x12\xb4\x4e\x67\x19\xd3\x3a\x9b\xae\x0a\xd8\x77\x5d\x2d\xf8\x46\x60\x71\x19\xf3\xa6\x09\x64\x2b\xb2\xb8\xd4\xfb\xc7\x9b\x22\xac\x42\x1e\xba\xec\x00\x0b\xe6\xdf\x01\xae\x1c\x73\x42\xf3\x79\x10\xf0\xd4\x57\xdb\x4a\x5e\xd7\x7e\x46\x14\x43\xf9\x0a\x0e\x4c\x55\xb7\x77\xfa\xdd\x48\xa6\xd7\x16\x6f\xdf\xd5\x2a\x57\x3c\xf6\x91\x52\xa9\x78\x55\xc9\xca\xa7\xf8\x13\xe7\xc9\x3a\xf6\x7f\x90\x27\x7a\x05\x6b\x14\x61\x57\xf2\xf2\xc4\x9f\xc0\x50\x94\x84\x59\x38\x1c\x0e\xfd\x7a\xea\xfd\x72\xc9\xeb\xda\xa7\x30\xf5\xb1\x72\x30\xe9\xbb\xbe\xc4\x5c\xf0\xeb\x13\x1e\xfd\xe3\xed\x9b\xd7\x4a\xed\x7e\xe4\xbf\xed\x79\x6d\xc5\xe6\xaa\x27\x36\x7f\x39\x56\xee\x29\x4a\xdb\xff\x61\x04\xfd\xfe\xdb\x62\x59\xc9\x5a\xae\x15\x56\xf8\xf1\xe3\x7b\x9f\x8c\xd6\xf5\x5d\x2b\xcb\x3f\xa9\xb9\xfa\x58\x5c\x72\xb9\x57\x61\x8b\xa4\xc9\xdd\xbf\x04\x53\x07\x42\xff\x85\x0a\x60\x21\xaf\x43\x07\x25\xbe\xb7\xd4\xad\x45\x44\x70\x80\x85\xb2\x4a\x95\x39\x3d\x8c\x72\x4b\x56\x88\x53\x89\x11\x67\x14\x96\xd5\xcc\x91\x61\x98\x10\x54\xc5\x14\xa9\xcc\xb4\x3c\x5e\x50\x60\x5d\xc9\x31\x7f\xfc\x63\x8f\x9a\x6e\xc5\x23\x45\x65\xb5\xd4\xa8\x9b\x7d\xce\xd7\xbc\xaa\xf8\x2a\x24\x51\x5e\x5e\xe7\xb7\xb5\x3b\x1c\x23\x64\xdc\x47\xbc\xe4\x97\x70\x38\x30\xe7\x23\x10\xc5\x9d\x3a\xc4\x0e\x4a\xb1\x7f\x89\xa6\xf9\x0e\x29\x29\x87\xb5\x2a\xa3\x5a\xe5\x15\x4e\xd9\xa4\x8c\x56\xfb\x0a\x55\xfa\xa7\x0a\x28\x22\x71\xd6\xa5\x34\x0d\x1c\xe9\xb3\xd3\x0a\x19\xed\x3d\x2b\x23\x75\xcd\xb9\xa8\xed\x24\xec\x0d\x4f\x69\xd3\xd3\x3c\x8b\xaa\xbd\x08\x65\x7b\x1e\xd4\x91\x90\xaa\x58\xdf\xfe\x5c\xa8\x6d\xc8\x69\x5a\x52\x49\x45\x46\xe8\xec\x5c\x06\xc1\x3e\x11\x71\x58\x03\x5a\x90\xe5\x15\x6f\xb3\x64\xfa\xf4\xa3\x25\xab\xa3\x5d\x25\x2f\x8b\x9a\x87\x77\x30\xe6\x98\xd3\x5d\x25\x77\x75\xdc\x93\x7f\x2a\x42\xe5\x4e\xb9\x89\xde\x94\xde\xd5\x3b\xbe\x2c\xf2\xf2\x45\x5e\x17\x62\x13\xdf\x1d\x0e\x54\x10\x2a\xab\x62\x53\x88\xbc\x7c\x5f\xc9\x1d\xaf\x54\xc1\xeb\x58\xb5\x89\xe6\xfc\x8b\x05\x6d\x27\x27\xb6\xb3\x67\x27\x24\x16\xed\xdc\x50\x3d\xe4\x38\xcd\xa8\xa6\x34\x3f\xc2\x7b\xdc\xa7\x9c\x34\xeb\xb4\x54\x11\x7e\x0c\x39\x2d\x23\xe8\x2b\xa2\x6a\xfd\x18\xf5\x3a\x8a\xd0\x67\x3e\x70\x4c\x69\x67\xb2\x9d\x7b\x24\x6b\x2a\xa0\x48\x69\xad\xe4\xce\x69\xd1\x92\xbf\x53\x5a\x31\x95\x0c\x16\x2b\x9e\xce\x1d\x18\x39\x51\xdb\xa2\xd6\xc7\x3c\xf3\xa6\xf3\xea\x5c\xcc\x85\xbb\x90\x42\x2f\xe4\xcc\x11\xf0\x1f\x2f\x14\x55\x19\x89\x21\x19\xf6\x6d\x2f\x95\x42\xf5\x87\x03\xa1\x4b\x56\x46\xb8\x66\xd8\xd6\xcf\xe1\x72\x74\xd8\x64\xb0\x9d\xaa\x76\x3f\x95\x94\x53\x5b\xa6\xdb\x56\x8e\xc9\xc4\x65\xbe\x0b\x97\xf4\x3d\x2d\x51\x86\xeb\x50\x96\xb6\x1d\x58\x4b\x02\x67\x68\xf7\x6a\x55\x67\xba\xcc\xfa\x26\x52\xc5\x25\xaf\xc2\x0e\x80\xf6\xd4\xc2\x5b\x2e\x8a\xcb\xb8\xa4\xbf\xed\xf9\x9e\xc7\xa6\x0e\x7c\x39\x10\x42\x71\x68\x9b\x8a\xd7\xb5\x6d\xcd\xbe\x03\xcf\x23\xb8\x4d\x85\x67\x3b\xee\xa5\xbc\xdc\xc1\x36\x26\xd1\x3a\x2f\x4a\x9b\x03\x9e\xdb\x2d\x6f\xd2\xf4\x9b\x83\xb2\x7e\x1e\x48\xf5\xe1\x8c\xef\xb4\x0b\x5c\xcf\xdd\xc0\x98\x80\x16\x0c\x55\x23\x92\xf1\x54\x64\xd4\x61\x53\xa4\x66\x95\x65\x3a\xb3\x5f\x99\x04\x32\x92\x0a\x8f\x31\x38\x81\x91\x9a\x96\xd4\x60\x1d\xc8\x60\xd8\xf9\x65\x5d\xbf\x96\xf2\x73\x0d\xf5\xe6\x41\xe0\x6b\x81\xbd\x5f\x88\x93\x9c\xdc\x49\x96\x1b\x09\x7e\x28\x49\x57\xb8\xca\xba\x9e\x4a\xa2\x3b\xdc\x34\xa1\x69\x56\x64\x14\xed\x5a\x0a\xa3\x39\x86\x2e\xb3\xa2\x1b\xf9\x83\x23\xe4\xd9\x52\x37\x00\x68\x74\x09\x44\xce\xda\xb2\xeb\x74\xd7\x33\xe4\x79\x16\x72\x42\x57\x8e\x3e\x87\xfa\xeb\x9b\x7a\x2b\xaf\x7d\x32\x17\x7a\x31\x9b\x26\x44\xf4\xfb\x09\xdf\x70\x70\x3a\x9b\x4f\x8c\xad\x06\x10\xe8\xf8\x71\x15\x04\x61\xf7\x82\x58\xb1\x8e\xf8\xe5\x4e\xdd\x46\xeb\xa2\xe2\xd4\x7d\x71\xf1\x73\x57\xa6\x69\xf6\x21\xd0\xf6\x5d\xca\x64\x42\xcb\x11\x7c\x3f\x96\xd6\x15\x3a\x3d\x85\xd5\xc4\x67\xdb\x57\xb3\xd3\x9b\xc6\xed\x04\xb4\x05\xc0\x3a\xb4\x6f\x0a\x7d\x2d\x1b\x80\x75\x53\x4d\x63\x24\x3b\xc8\x2a\x02\xb9\x16\xc9\x2b\x5e\xad\x4b\x79\xcd\xd2\x75\xfb\x4c\xbb\xc7\x7f\x38\xcf\xff\xcc\xa8\x5f\x88\xb2\xb8\x57\xd6\x6b\x25\x8c\xbd\xaf\xeb\x52\xe6\x0a\xbe\xb9\x82\x18\x5d\xcd\x77\xa5\x5c\x7e\xfe\x81\xf3\x55\xfd\x26\xbf\x95\x7b\x15\x04\xb6\x7e\x8f\xb1\xa7\x21\xef\xe4\xa6\xc9\x3a\xfa\x5d\xca\x4b\x36\x8b\xd7\x9d\x58\x56\xe7\x3d\x45\xa9\x86\x4f\x08\xed\x06\x13\x04\x61\xd7\x6d\xe6\x6f\x8b\xd5\x8a\x0b\xdf\xd5\xfe\xd4\xdb\xaa\x10\x9f\x7f\xae\xf2\x1d\x76\xa2\x06\x74\x7c\xbc\x0c\x4e\x25\x5d\xe5\x40\xda\x39\x13\xe4\x7e\x99\xb9\x5f\xfe\xe9\x7e\x79\x94\x1d\x88\xa3\x37\x53\x04\xa5\x5b\xb8\x67\x55\xa5\xe5\xa3\x05\xc1\xe3\xdd\xec\x25\xb3\x9d\x65\xd3\xf8\x4a\x6e\x36\x25\xce\x6a\x41\x0b\xc6\x58\xb8\x4b\x60\x48\xdc\x8f\x7d\x0d\xdf\x04\x38\xaa\x42\xec\xf9\x7c\x09\x3b\x6a\x15\x04\x2b\xe4\x8e\x61\xbc\xb0\x53\xd0\xa4\x00\xe8\xce\x63\x73\x8b\x25\x21\x77\xab\xc4\xce\x50\x21\x4e\x00\xf0\x77\x6c\x15\xe9\x14\x12\x8f\xee\x28\x7a\x77\x20\x14\x68\x64\x9b\x8f\x79\x3b\x42\x77\xc9\x52\x85\x9c\x44\x90\x25\x24\x71\xa9\x91\xa3\x33\x9d\xfa\x33\x74\x1d\x77\xc6\x71\x06\x6d\x2f\x02\x0d\x6a\x81\xcc\xf3\xe1\x46\x6e\x4d\x49\x96\xc4\x19\x9c\xa2\xcb\x54\x65\xe4\xe0\x4c\xf0\x92\xe4\xec\x7d\xb8\x4b\x60\x22\xe2\x29\xad\xe0\x10\xc0\x0f\xab\xa6\x09\x21\x91\xe5\xfa\x90\xa0\x3b\xd4\xb7\x72\xb1\x6a\x53\xcc\xaf\x23\x05\xad\x9a\xc6\x6e\x23\x34\x98\x99\xc5\xd3\x9e\x22\xf6\x7b\x57\x3c\xed\xd0\xbc\xdf\xc3\x49\xa1\xa4\xba\xdd\xf1\xa8\x10\x85\x72\xb2\x75\x85\x7f\xef\xe1\x7b\x76\xa7\x1b\x8a\xf9\x81\x16\x6c\xaa\x47\xac\x25\xd8\xf3\xaf\xcf\x8b\x79\x31\x61\x8f\x4e\x15\x11\xec\x07\x60\xc8\x69\x95\x5a\x49\xf3\x44\x64\xac\x4a\x3b\x81\xb1\xc8\x18\x6f\x4f\xf5\x20\x08\xab\x48\xee\xf2\x65\xa1\x6e\x59\x15\x69\xc1\x21\xef\x89\xbb\xfe\x31\xb0\xd8\x70\xcc\x26\x79\xfc\x6d\x0f\xab\x24\x9d\x72\xb0\xe0\xd7\xc0\x00\x6b\xed\xab\x2e\x11\x7b\x33\x14\x67\xfc\x44\xff\x4e\xff\xd9\x8a\x92\xe8\xff\x30\x1e\x95\x72\xa9\x89\xaa\x57\xc0\xf6\x59\x71\xe1\xdf\xd8\xab\xa1\xec\x91\xfe\x95\xf1\x48\x1b\xa3\xd2\x7f\x31\x1e\x3d\xa0\x5c\x01\xf2\x57\x8a\xa5\x19\x15\x8a\xf9\xda\x24\xd6\xa7\x95\x62\xca\x9a\xa8\xd1\x02\x5f\x80\x72\xa2\x12\x1f\x91\x07\xa6\x39\x3e\x17\x62\xc5\x6f\xde\xad\x69\xad\x18\x57\x91\x92\x1f\x50\x84\x43\xf7\xf8\xba\xcd\xeb\x77\xd7\xc2\x10\x8c\xb7\xb4\x54\x4c\x68\x2d\x30\x5d\x2a\xd6\x37\x42\x75\xd6\x17\xc8\x0a\xd1\xad\xec\xdf\xc9\x81\xae\x15\x3b\x4b\x27\xa7\x59\x12\x26\xf1\x62\xf5\x70\x11\x35\x64\xb1\x9a\x84\x49\x9c\xf2\x17\x19\x7e\x58\xac\x26\x0d\x39\x8b\x6a\xb9\xaf\x96\x9c\xee\x14\x3b\x5b\x7c\x98\x9c\x6d\xe8\x4a\xb1\xb3\x5f\xd2\x45\xbd\xd8\xbf\x7c\xf1\xf2\xe5\xe2\xe6\xe9\x34\x9b\x34\x83\xf7\x07\x67\x1b\xba\x85\x7c\x50\x7b\xfd\x30\x7c\x92\x2e\xae\x17\x3f\x67\x93\x73\x92\xfe\x72\x9e\x3d\x6c\xfe\x33\x4c\x17\xd7\xa7\xd9\x43\x42\x1e\x9c\xd1\x0d\x64\x7c\x12\x2e\xae\x27\x64\x51\x3f\x5c\x9c\x25\xe7\x61\x12\x3f\x59\x9c\x2d\x66\xe7\x0d\x7c\xbf\xd4\x0d\x66\x34\xbe\x3b\x2c\xea\xec\xe1\x83\x33\x7a\xab\xd8\x59\x98\xc4\xbf\x34\x71\x43\x89\x6e\x63\x91\x12\xe8\xdd\x15\xf4\x73\x01\xe3\xf0\x17\x8b\xc5\xd9\xc5\x5a\x54\x2a\x6b\xf6\xe9\x62\x95\x9f\xae\x9f\x9e\xbe\xcc\xee\xbe\x3e\x90\xb3\x0d\xbd\x50\xec\xcc\x4f\x7f\x81\x4c\xd5\x42\x64\x0f\xfd\x46\x55\x7b\xde\xa0\x29\x1a\x4a\xef\x9b\x53\x3d\x35\x93\x7b\xa7\x66\x43\x6f\xa0\x67\xa7\x97\xf5\xe9\x19\xbd\x56\xec\xec\x34\xc4\x66\x7e\xcf\xc8\xd9\xa6\xa0\x1f\xef\x59\x10\xd5\xd7\x7c\x1e\xe8\x33\x37\x23\xb9\x0b\x5f\x45\xf9\x6a\x85\xf6\x09\x6f\x8a\x5a\x71\xc1\x61\x5b\x97\x32\x5f\xf9\x08\xdd\x0a\x25\x4b\xbe\xa5\xdc\x20\xf1\x55\x54\xf1\x7c\x75\xfb\x01\xd8\x64\x38\xc1\x7e\x50\x21\xd2\x92\x98\x1a\x12\x72\xa0\x3f\x28\xf7\xf4\x3f\x6e\x21\x09\x5f\xb9\x86\x11\x36\x39\xf4\x9f\xbf\x7b\x6b\xe4\x55\x6f\x64\xbe\xe2\x2b\x9f\x3e\x53\xc0\x0f\x51\x3e\x9e\x1f\xfb\x69\xf2\x90\x38\x7c\x65\xe4\xe4\xda\xdc\xc2\x97\x02\xbb\x84\xfc\xfc\x72\x9b\x8b\x0d\x87\xbc\x50\xd9\x20\x9b\xad\x86\x90\xc3\x1c\xa1\x17\xd0\x7b\x8b\xa4\xd8\x9d\xb6\xd2\x8e\x85\xa2\x4b\x29\x6a\x55\xed\x97\x4a\x56\xf1\x52\x51\x00\xf2\xd8\xb5\x51\x76\x64\x50\xa8\x81\xe7\x3d\x96\x63\xcc\xca\x8c\x1b\x9d\x8e\xff\x44\x4f\x78\xab\xb2\x0e\x02\xff\xbc\x97\x64\x35\xbd\xa7\x33\x12\x04\xf6\xe5\x9c\x3d\x4e\x52\x80\x20\xca\x91\x5a\xcb\xe2\xad\x32\x46\x4a\x84\x7a\x45\xd3\x78\x45\x3a\xcb\x82\xc0\xda\x23\x7b\xa2\x69\x44\xa4\x07\x94\x84\xa2\x69\x2a\x82\xc6\x50\x21\x27\x31\xf4\x31\x72\x46\x18\x8a\xf6\x1b\xb2\x4f\xe9\x2c\x33\xa6\x33\x40\xc3\xd6\x2a\x17\x4b\x18\xc1\x52\x25\x22\x9d\x66\xb1\xa0\xad\xae\x5f\x13\xa6\xc6\x64\xf2\xf5\xc7\xb7\x6f\xb0\x30\x15\x41\x20\x3a\x7c\x29\xfa\x5a\xef\xa6\x11\xf1\x2b\xea\x4d\x09\xa1\x1b\x63\x73\x87\x2d\xa2\x50\xb5\xa8\xdf\x97\x79\x21\xcc\xf9\x6c\x04\xe7\x46\x48\x3b\xb0\x22\xdc\x16\x75\x5a\x64\x24\x31\x0f\x21\x8a\x68\xf5\xd8\xd0\xe0\xab\xa0\x3d\xa1\x2d\x32\x6b\xc5\x3a\x94\xec\x95\x63\x8b\xf1\xdd\xed\xf7\xab\xb0\x48\x1f\x65\x78\xa2\x4b\xc7\x90\x06\x67\x40\x46\xc5\xca\x63\x0c\x33\x58\xbe\xac\x9d\x2a\x6c\x4a\xaf\x0e\x9b\x21\x33\x98\x4e\x33\x26\x0f\x4e\x83\x5a\xda\x7b\xa3\xd8\x2b\xfc\x6e\x2c\x54\x64\xc5\xb8\x66\x1e\x5b\xbb\xb5\x76\xb2\xc2\x5e\x31\x5b\xa9\xce\xde\x6f\x0c\xed\x34\x9c\x09\xe1\x24\xa9\xcc\xde\xe4\x24\x0e\x79\xdb\x98\x11\x6c\x0f\x3a\xd0\x3e\xd2\x5e\x8b\xdc\x3e\xe1\x56\xbf\xcc\x3f\xf3\xd6\x76\x11\xda\x24\x07\x6a\xcb\xc5\xbe\x4f\x2d\xd7\x4d\x95\xc4\x6c\xb1\x83\x0e\xac\xa2\xc1\x70\xa2\x58\xfc\x40\x37\xdc\xdd\x48\xdd\x79\x82\x0c\x08\xc7\xc5\x8c\x4c\x65\x21\x89\xa7\xe7\x3a\x29\x75\x86\x3f\xe1\x19\xae\x72\xca\xb3\x03\x85\xd3\xee\x83\xca\x97\x9f\x7b\x95\x6a\xa9\x50\x0f\x4a\x7b\xf0\x4e\xa8\x63\xd4\x17\xed\x2a\x7e\xa5\x01\x4e\x33\x5a\xaa\x37\xfd\xf6\x85\xaa\x03\xe5\xf9\x72\x1b\x8f\xa2\xdf\x56\x19\x06\x15\xc0\x87\x03\xc5\xa5\x18\x1b\xab\x45\xa1\xad\xdc\xc7\x30\xd2\xdc\x48\x14\x28\x9e\xdb\x23\x53\x89\xdd\x69\x47\x1c\x4a\x15\xe5\xbb\x5d\x79\xab\x1b\xcd\xab\x0d\x6e\x2f\x5c\x23\x34\xc5\xbc\xaf\x06\xfe\x5b\x38\x25\x07\x5a\xe6\x5f\xcc\x72\x3a\x23\x07\xca\x7f\x1b\x99\x57\x67\x2d\xa8\x60\x13\x3e\x09\x71\x99\xe2\x69\x6f\xaf\x39\x1d\x15\xe7\x6c\x1a\x04\xea\x5c\x24\xb8\x8e\xa9\xc8\xb2\x38\xcd\xc8\x81\x5e\xe6\xbb\xb1\x09\x1a\x14\xb7\xa6\xf7\x30\xca\xbe\xe4\xa9\xdd\x3e\x1a\xc2\xa8\x80\x89\x87\xf1\x73\xb1\xba\x77\xfe\xda\xd5\x6e\x9a\x63\x44\x88\x76\xed\x08\x55\x71\xa1\x68\x2d\x2b\x15\xa7\x59\x04\xbf\xb4\xde\xe1\xb2\xc0\x2b\x3e\x1d\x68\x47\x00\x39\x87\x08\x26\xd2\x56\xcc\xa2\xdf\xed\xcb\x80\xda\x37\x0e\x2d\x9a\xd3\x67\xed\x0a\xa2\x5e\xe5\xee\x40\xf7\x6c\x46\xcb\x2e\xd9\xce\xf9\x92\x19\xe1\xa7\x7f\x21\x65\xc9\x73\xc7\x2b\xa4\x06\x46\x93\xd5\xbd\xca\x66\xb6\xb2\x47\x84\x1e\x69\x5f\x6b\xe4\x93\x1c\x2c\x52\x13\x94\x13\x00\x8b\x53\x32\x54\x2b\x84\xb5\xde\x16\xa7\xa7\x7b\x32\x2f\xcf\xf7\xf3\xbd\x16\x61\x19\xbb\x32\xe9\x34\xb5\xcf\x1c\x84\x2d\x09\x67\x35\x52\xe9\x4c\xc2\x4f\x6d\x44\x2e\x4b\xd4\x84\x84\x47\xc8\xbe\x22\x68\x11\xe0\x48\x6f\x2a\x42\x48\x12\x8a\x24\x14\xcc\x9b\xd1\x9c\x71\x73\x44\x18\x8c\x04\xa4\x79\x9a\x91\xb8\xfb\xe0\x56\x87\x9f\xef\x0e\x14\xba\xe0\xd8\x92\x2e\x69\x4e\x2b\x42\x62\x8b\x15\xf1\x73\xd5\xd9\x86\xd4\x07\xea\x08\x5e\x8d\x99\x66\xec\x6b\x6a\xdc\x9f\x84\x42\x4d\x50\xc6\x5c\x41\xfa\x65\x48\x48\xeb\xc7\x70\xb6\x78\x7e\xb6\xa1\xbe\x4f\xa8\x90\xcf\xa4\x58\x97\xc5\x52\xf5\xe4\x96\x2d\xb4\x3e\x40\x11\x01\x5a\xc0\x3d\x60\xff\x22\x54\xc1\x31\xaf\x5b\xe8\xbe\x98\xf7\xbf\x02\x1e\x3e\xd0\xa2\xfe\x11\xd1\x89\x37\xd3\x78\xe5\xe7\xbc\x50\xf1\x8c\x6e\x65\xb9\xfa\xf1\x08\xcf\xf0\xc4\xa2\x18\xc8\x36\x99\xc4\x2d\xd1\xe6\x4d\x47\x11\x53\xb1\x0e\xb9\xd6\xe7\x78\xa7\xa7\x6e\x59\xe3\x74\x82\x4d\x68\xa5\xdf\x2b\x6d\x55\x70\xac\x92\xb0\xc5\xc8\xbc\x2b\xc2\xbc\x29\xe5\x46\x2f\xd4\xaf\xf8\x7c\xda\x34\xe1\x4f\x3d\x61\xeb\x2b\x9a\x2e\x55\x46\xcc\xae\x52\x55\xb1\xd9\x70\xd4\xb4\x86\xaf\x88\x7d\x0d\x7d\xac\xc1\x27\x91\x5c\xaf\xdb\x17\x72\x80\x09\xb2\x20\x3c\x82\x51\x5c\xff\x29\xc7\x4f\x0e\x4a\xe9\x63\x0b\xff\x5b\xc8\x6a\x9a\x91\x1a\x5a\x1f\xb9\x7e\x71\xc3\xf4\xdd\x73\xa2\x79\x00\x99\x1c\x48\x3b\xed\x48\x03\x25\x7e\xd8\x5f\xf2\xaa\x58\x8e\x14\xf1\x8a\xfa\x87\xfc\x87\xd0\xb1\xc0\xe1\x84\x04\x41\x51\xbf\x04\x14\xa3\x5b\x84\xa6\xbf\x74\x7e\x6a\xb6\x0e\x08\x80\xa3\xad\xce\x47\xfd\xc8\x78\xc2\x55\x5a\x5b\x69\x31\xc9\x3a\x83\x8b\xd6\x28\x15\x7a\xed\xec\xac\xa3\x13\x41\x68\x0a\x78\xd4\x54\x83\x13\x60\x90\x2d\x75\x63\x90\x4d\xcb\x5b\x77\xba\x1c\x55\xdd\x22\x14\xba\xd8\x38\x08\xbc\x7d\x2b\xc6\xf6\x9d\x0f\x3e\x71\x3f\xb9\x45\x3a\x3c\x4c\xfd\xa2\x7e\x6f\x5f\xde\xad\xfd\xae\x2d\xa3\x66\xab\x1c\x1f\x19\x6d\xb1\x61\xa5\x63\xf2\x5a\xbc\xc9\x6b\xed\x4e\x21\x7a\x36\xa1\x5d\x77\x04\x71\x85\xd2\x03\xf3\x58\x37\x1b\x4c\x9e\x23\x72\x3a\x3e\x4e\x5d\x07\xa1\x63\x4f\x1f\xa3\xd8\x74\x4b\xa1\xba\x14\x19\xf0\x17\xf0\x0d\xc1\xa2\xa5\xbf\x7b\xd4\x89\xf1\xbe\xc1\xa5\x19\x9a\x6c\xb4\x63\x02\xc8\x99\x1f\x9f\x24\x9d\xf5\x0b\xb0\x65\x0a\x86\xf5\x4a\xdb\xc0\xb0\x4d\xc7\x78\x14\xcc\x13\x41\x90\x66\x9d\x6d\x63\x3a\xb4\x49\xaa\x80\xb6\xcf\x62\x2d\xb5\xbf\xd8\x17\xe5\xaa\x75\x62\x49\x79\x46\x15\x2d\x08\x2d\x70\x9b\x17\xa4\xb3\x44\xea\xac\x89\x33\x5a\x39\x06\xcd\xc4\x0e\x16\xdd\x26\x47\xb1\x2b\x7c\x01\x84\x0a\xbf\x9a\x31\x49\xdc\x97\x50\x91\x58\xef\x16\xa6\x12\x15\x1f\x7b\x03\xa1\x5e\xbe\xb5\x82\x47\xec\x7c\x69\x7d\x83\x5a\x64\x7f\xa5\xa8\xff\xbf\xfd\x0e\xf9\x5f\x28\xea\x67\xce\xfb\xad\x82\x93\x80\x90\x04\xd6\xa9\x3d\x5c\x7d\xd3\x49\x7f\xa2\x48\x68\xec\x1b\xe0\xb4\xc1\x75\xf4\xbf\x17\x57\x79\x59\xac\x4e\x70\x68\x98\xc7\x8c\xf5\x1f\xee\xba\x76\x0a\x02\xdc\x76\xe2\x4b\x3e\xa9\xb8\xb6\xb0\xb5\x78\xf4\xfc\xdd\xdb\xf7\xa8\x30\x4f\xc2\x82\x41\xa7\xda\x04\x5a\xb1\x42\x4f\xcd\xcb\x4a\x5e\x1a\x04\x22\x28\xda\xc8\x9f\xdd\x5c\x96\x3e\x70\xdc\x15\x96\xf9\x92\x0e\xfb\xf9\xbb\xb7\x3e\xa1\x55\x94\xd7\xb7\x62\xc9\x8c\xf7\x1d\xad\x22\xe0\xb9\xff\xf1\xf6\x0d\xf0\x72\x9d\x2b\x9d\xeb\x35\x17\x04\xd5\x50\x00\x16\x04\x5e\x75\x8f\xef\x90\xab\xf5\xef\x74\x01\xc7\x93\x08\x73\x76\xe2\x4f\x04\xaa\x10\x85\x74\x55\x88\xe4\xee\x40\x3b\x27\x9a\x1e\x10\x29\x24\x24\xcc\xca\xe3\x31\x0c\x90\xae\x1d\xd2\x9d\x63\x41\x91\x3b\x1e\xf1\xab\xbc\xb4\xfb\x1c\xc8\xce\x10\xd6\xab\x55\x4b\x8d\x21\x69\xde\x82\xc7\x8d\xa2\xfe\x65\x7d\xea\x00\xcc\xb5\xa2\x1f\xa1\x02\x2b\xf4\x1f\x67\x33\x3a\xa5\x00\x40\xf8\xb8\x5b\x0b\xba\xc0\xf4\x52\x46\x18\x17\x47\x7e\x81\x2a\x7a\xde\x69\xe8\x85\x11\x03\x68\x2b\x1f\xed\xcf\x33\xcf\xcf\x25\x6a\xd2\x2c\xcb\xc1\x53\x99\xd1\x8a\xd0\x02\x4e\xf7\x99\xf6\x2a\xe8\xac\xf1\x64\xab\xab\x1b\x29\xc1\xb0\x84\xb6\x06\xb1\x36\x2c\x47\xad\xe8\x79\x85\x22\x92\xc2\xcf\x9f\x6b\x69\xa4\x94\xd3\x5a\x67\xac\x4d\x61\x85\xe3\x12\xe0\xac\x34\xa5\xfc\xc5\x7e\xcd\xd7\xeb\xc5\x4d\x3e\xf5\x49\xf2\x85\x13\xd6\xf7\xe3\xb2\x3d\x2e\x0f\x5f\x3a\x8b\x7d\x3f\x0e\xf9\xc4\x77\x16\x79\x85\x58\x01\xf8\x1e\xc3\x56\x0f\x56\x59\xe3\x57\x85\x56\x84\x43\x32\x22\x14\x61\x4b\xd9\x3a\xde\x16\xd5\xb1\x43\x2c\x4f\x52\x9e\xc5\x9c\xc4\x85\xe9\x67\x45\x39\xc1\x7d\x60\x1c\x11\x8f\x0e\x09\x6c\x17\x3d\x2b\xb5\xf9\x90\xf5\x39\x3d\xc9\x2d\xf3\x4e\xdb\x23\xaf\x6a\xbd\x96\xa9\x60\x22\x99\x9e\x8b\x9e\x3d\xfb\x44\x90\x58\xc4\x9d\xb2\x1d\x18\x05\xd4\xf9\x04\x01\x6a\x3f\x19\xeb\x4e\x1e\x83\x02\x4e\x67\x07\x8a\x83\x89\xfb\x51\x00\xf4\x6c\x58\x87\x0d\x5a\x74\x40\x2a\x19\xea\xf9\x8f\x62\x12\x54\xc6\xce\xd2\xe8\xd9\x39\x5a\x5b\x32\x91\xca\xac\x83\x98\x39\xbc\x02\xf1\x3f\x77\xbe\x4f\x26\xed\x84\xdb\x46\x58\x41\xf9\x81\x6e\x2a\xbe\x1b\x9f\x2e\x5a\xb0\x34\x1b\xec\x1e\x4d\x13\x30\xcf\x13\xad\xae\xbf\x62\x9e\xa7\x0c\x4c\xb6\x6a\xe7\x42\xdb\x37\x20\x88\xb6\xa6\x8e\x43\x76\xf8\x0f\x37\x29\xdd\x33\x6d\x6d\xda\xed\x1e\x6d\x5e\xc0\x6c\x83\xb0\xdf\x34\x00\x15\x41\x10\xee\xd3\xbd\xa9\x20\x63\xc5\xc8\x1e\xfa\x73\xc5\x2c\xda\xb6\xfb\x3a\xcd\xe8\x9e\x1c\xe8\x66\x5f\xac\xe2\x19\xdd\x55\xf2\xe6\x76\x6c\x1d\x81\xcb\x1d\x98\x8f\x76\x31\x03\xb4\x85\x23\x06\x0d\x60\x9c\x72\x26\x87\x76\x0e\x9c\x24\x61\xc5\xac\x28\xa9\x65\x38\xe9\x23\xd8\xe1\xc7\x8c\x3e\x37\x7d\x13\x9a\xc5\x07\x0a\xc2\x18\x3a\x0d\x6b\x20\x40\x50\x14\x18\xa2\x81\x71\xf7\xc7\x89\xdc\x40\x0b\x12\xab\x03\xcd\xd1\x4c\x6c\x20\x05\xb6\xcc\xbb\xb1\xae\x65\x53\x34\xeb\x6c\x19\x75\x8d\x0a\x70\x6b\x39\x2e\x7b\x96\x38\xae\x08\xb9\x93\xcc\xd3\x6a\xae\xbd\xb6\xac\x34\x81\x0f\xb4\x2f\x06\xdd\xd3\x2a\xdd\xa3\xe3\x03\xb4\xd1\xa2\xcb\xc2\xb3\x66\xa1\xda\x82\xd7\x99\xa9\x42\xf3\xef\xde\x94\xd0\x25\xb0\xb7\x49\x28\xec\x21\x55\x10\xd8\xb1\xfb\xb2\x24\x71\xb8\x64\x82\x0a\x36\x04\x6c\x2b\xa0\xd2\x25\x10\xd5\x00\x09\x4b\xe0\xbf\x86\x31\xcb\xff\x8b\x90\x43\xc7\x2a\x5a\x27\x45\x5c\x58\xc4\xbb\xcf\xe8\x9e\xda\x4f\x8e\xc3\x85\x4c\x78\xbc\x4c\x6c\x47\x48\x5c\x26\x90\x69\x0a\x99\xe2\x1c\xce\xbc\xeb\x63\x69\x4d\x88\x44\x4a\xae\x38\x01\x4a\x00\xb8\x4c\x38\xc8\xea\xeb\xe1\x1e\xe9\x9b\x83\x5a\x5f\x54\xa9\xf5\xcc\x79\x2a\xb3\xd6\xc1\x41\x66\xb4\x7b\x64\x0a\xb0\x42\xc1\x84\x3d\x9e\x68\x85\x26\x71\x6e\x69\x27\x37\x54\xd4\xed\xd4\x43\xa7\x07\xb1\x42\x3c\xe6\x12\x07\x40\x98\xfd\x04\xa8\xef\xa7\xbe\xbd\x1b\xbd\x5f\xbf\x32\xca\x49\xdb\xf5\x3e\xd6\xac\x90\xe3\xa4\x2f\x6a\x55\x8e\x33\xbb\x2a\x15\x6d\xdf\xfb\x2a\xca\xd5\x9f\xd2\xaa\x0c\xb2\xb5\x5a\x95\xb9\xb6\xcc\x32\xec\x9c\x30\xd0\xcf\x23\xf4\xdc\x68\x49\xbb\x23\x75\x67\xc7\x90\x1d\x50\x71\xb0\x92\x1f\x96\x95\x2c\xcb\x20\xf0\x1c\x03\x76\x3d\xab\xae\x38\x02\x1b\x69\x73\x87\x7e\xc9\xd7\xaa\xb5\xa2\xe4\x63\x66\x93\x05\xfd\x66\x4a\x0e\x03\x3d\xd6\xe1\x10\xb6\x9e\xfc\x3f\xb5\x32\x59\x24\xe6\x8c\x50\xd7\xff\x4e\x73\x47\x27\x3f\xe0\x79\x73\xa2\x69\xe4\x96\xac\x3f\xc1\x43\x15\x61\xf5\xe4\x47\xbe\x79\x71\xb3\x3b\xd1\x27\xb5\x66\xd0\x7c\xd7\xc2\xb6\x7f\xde\x73\x95\xfa\xa9\xc6\x0b\x40\xef\x4f\xfc\xcc\xcf\x8e\x88\x37\x42\xff\xce\x50\x08\x42\x4d\xa8\x24\x1d\xe3\xe8\xe4\xd9\x87\x0f\x27\xd6\x25\xf4\xe4\x85\xd8\x14\x82\x8f\xc4\x4a\xfa\xa3\xe0\x47\xff\x8f\x84\x3d\xc2\x78\x47\xf7\x87\x3b\xba\xc7\xec\x9b\x2e\xe9\x9a\x6e\xe9\x06\xf0\x6b\xa8\x12\x35\x54\x34\xa9\xf8\x47\xe2\x31\xf6\x3a\x08\xde\x98\x58\x2c\x4d\xf3\x1a\x90\x20\x7a\x3a\xfc\x01\x5f\x8c\xfe\xe4\x1e\x63\x61\xed\xba\x94\x07\xc1\xb7\x1e\x63\xb5\xc9\xa5\xcf\xdf\x4f\xc0\xaf\x18\xf5\xde\x45\xcb\x1c\xa3\x81\x33\x6b\x95\x69\xdf\x32\x28\x86\x4a\x25\xa6\x86\x1a\xa8\x9c\x50\x4f\x36\x8d\xd7\x53\x40\xb9\x1d\x91\x51\xb1\x62\x8c\xe5\x6d\xa2\xa6\x20\x80\xa4\x68\x4f\x85\xc1\xf0\xf1\x7c\x18\xa4\x1d\xb7\x4b\x82\xe0\x3b\xf4\xf7\x0f\x82\x3f\x6a\x03\x07\xe8\x68\xc2\xb8\x25\x01\x04\x55\xe3\xdc\x1a\x90\x9d\xd8\x7d\x9c\x88\xc7\x19\x09\x82\x67\xfd\x9c\xcf\xca\xbc\xae\x35\x3f\xa3\xee\xf9\xf2\xc7\xcd\xb5\x59\x61\x3c\x54\x1c\x8a\x75\xf8\x2c\xfa\xad\xce\x83\x20\xf4\xde\x36\x8d\xf7\xd6\x7a\x23\x69\x1b\xa3\x35\x5b\xb2\xf7\x74\xcb\x14\xdd\x30\x5c\x95\x20\xe0\x68\x39\x56\x07\x81\x23\xc2\xba\x2f\x6c\x80\xb6\xa6\x2e\xd9\x0e\x4e\xc7\x70\xa9\x17\xd3\x09\x02\x51\xac\x7c\x42\x92\x35\x5b\xb6\x64\xff\x47\x45\xfd\xc5\xe2\x41\xe0\x93\x58\x45\xf5\x30\x33\x5d\x13\xba\x66\x7e\x5a\xac\xd8\x57\xfe\x64\x3d\xf1\xbf\xca\x4e\x7c\xb4\x43\xb6\x06\xc8\xa7\xa7\x73\x52\xa6\xfb\x8c\xad\x27\xab\x10\x1e\xc8\x7c\xcb\x56\xca\x8e\x0a\xa6\xae\x03\x9b\xa6\x81\x71\x95\xd1\xaf\xb2\x10\xa1\x4f\x7d\x34\x7d\xda\x10\xc7\x1e\xdd\x99\xc8\xed\xb1\x67\xf9\x06\xa7\x50\x23\xd1\x4b\x72\x77\x58\x17\x22\x2f\xcb\xdb\xbb\x65\xd3\x1c\x47\x32\xc0\xc1\xb6\x16\xf5\x27\xd7\x61\xc7\xe2\x96\x8a\xfa\x0f\x66\x3e\x31\x5b\xd7\x8d\x0e\xe6\xec\x6d\x1e\x8a\x2e\xe0\xcb\x89\x32\xee\x4c\x13\x06\xc8\xf2\xfc\xb3\x0e\xec\xf4\x06\xa7\x21\x08\x5a\x3b\x4b\x65\x5d\x22\x32\x8a\xb6\x95\xd5\x41\x2b\xa6\x3a\xae\x89\xf7\xc2\x86\x75\x74\x61\xfa\x1e\x9d\x9e\x78\x2f\xe8\x94\xd5\x6b\xbd\x1e\x86\x1b\x59\x15\x57\x3e\x99\x77\x33\xe7\x79\xbc\xf3\x47\x10\x6e\x8c\x1d\x33\x47\xfd\x40\x0c\xee\x9b\x99\x39\x1d\xe5\x04\x51\x11\x1c\x8e\x83\x00\x4a\xae\xfb\x37\x50\x2d\x5d\x24\x98\xaa\x63\x31\x2a\x80\x86\xcf\xa8\xe2\x7e\x8d\x11\x26\x52\x91\x56\x59\xc6\x54\x2f\xfa\x50\xe7\x26\xa8\x00\xba\x2b\x26\x86\x01\x99\xf4\xbb\x1b\x27\x24\xfc\xb7\x32\x76\x39\xdf\x8b\x15\xbf\x69\x9a\xff\x21\xa7\xe1\xbf\xf9\x30\x4d\xcb\x06\x5a\x2b\x65\x60\xf0\x34\x6d\x28\x98\x88\x04\xbf\x51\x1f\x8a\x8b\xb2\x10\x1b\xf4\x93\x41\x89\x28\xb1\x7c\x5e\xbb\x3c\xc9\x2c\x3e\x9d\xb9\x61\x8c\xc6\xbc\xf2\xda\x11\xdc\xb3\x11\x2d\x3b\xd1\x8b\x3f\xa1\x03\xb4\x30\xc6\x0f\x6e\x3c\xa4\xff\x83\xea\x07\x91\x23\x2e\xf6\x4a\x99\x18\x14\xe4\x9e\xe6\x96\x4e\x73\x45\x38\x22\xa3\x54\x6c\xa2\xa8\xf3\x65\xe8\x2b\xc6\x50\xec\xd9\x32\xbe\x8a\xd0\x9c\xc9\xd6\x27\x03\xd6\x5f\xa4\x05\x93\x69\x9e\x69\xa7\xa3\x22\x63\x5e\x58\xb5\x6e\x6a\x68\x0b\xeb\x06\x71\x82\x5d\x6c\xdf\x76\x8e\xa4\x81\xf6\x8e\x52\xf6\x7b\xca\x27\xfe\x89\xaf\x1d\x18\x5b\x7b\x96\x64\x1a\x2f\x8d\x37\xd5\x54\x53\xc7\x35\xe3\xc8\x7a\xd2\x92\x7d\x8e\x76\x15\xd7\xde\x4b\xf3\x7a\x4e\xee\x42\xaf\x42\x57\xaf\xb5\x39\x05\x6b\x1d\x7c\xac\x40\x2d\xa2\x75\xca\x2a\xd2\xa9\x0d\x0b\x43\x9a\xa6\x26\x74\x6f\x0e\x1a\x96\x66\x04\x60\xdd\x9b\xd1\xb0\x60\xbb\xae\x0e\x8c\xd6\x56\x74\x5e\x71\x3a\xff\x1d\x06\x06\x89\x2b\xad\x14\xc1\x5a\x5d\xe4\x73\xe2\xa3\x01\x72\xdb\xac\x75\x42\xb1\xe1\x02\x80\xc6\xff\x6c\xc2\x39\x11\x2f\x2c\xd8\xad\x4a\xf3\xac\x6d\xb3\x69\xca\x34\xcf\x82\x00\xbe\xc0\x53\x58\x40\xda\x1f\xf7\x23\xa7\xe8\x0d\xca\xeb\xb8\xb8\xaf\x79\x20\x64\x2b\x23\x01\x73\x3c\x0f\x8c\x31\x45\x9d\x08\x23\xcc\xe4\x24\xfe\x3d\xe4\x74\x4f\xda\xf9\x1f\x04\x8d\xea\x3c\x60\xa6\x18\x2c\xca\x00\x4c\xc5\x7c\x7f\x2e\xce\xd5\x5c\x4d\x26\xa4\x9a\x60\xe8\x2e\x1d\x45\x65\x24\xa6\xc5\xb6\xef\x01\xaf\xa2\x55\x51\xd1\x02\xf6\x92\xdf\xa1\x2f\x34\xfc\xa4\x92\x3d\x98\x4c\x3a\xbb\x09\x34\x32\x48\x5c\x8d\x3c\x95\xba\x4f\x73\x85\xc6\xbd\x88\x01\xfa\x58\xa6\x69\x5a\xe7\x0c\x6e\x4a\x1c\x7a\xee\x24\x34\xd7\x3d\xb1\x40\xf9\xb3\x76\x63\xc3\xe8\x7d\xc7\x95\x8f\xd4\x1e\x04\xdc\xd4\x43\x5a\x2d\x4a\x27\xfc\xf9\x62\xc7\x8a\x75\x58\x32\x95\xbe\xcf\x9a\x26\x84\x1f\xd4\x82\x87\x7b\x56\xa6\x15\x90\x2e\xfb\x74\x9a\x01\xf7\x8e\x44\x44\x58\xb3\x3d\x90\x76\xa8\x36\x6d\x9a\x9a\x31\xf6\x43\xab\x15\xc5\xc4\x96\x2e\xd3\x15\xb0\x74\x99\x51\x28\xc2\x6c\xff\x9a\xe6\x07\x9d\x80\xee\x70\x6d\x67\xef\x0b\x6d\x65\xec\xc0\x66\xfd\x19\x77\x31\x47\x77\x48\xd8\xe0\x26\x1e\x4f\x8b\xcc\xe4\x1b\xd1\x2e\xc5\xc0\x84\xf7\x22\x60\x8d\xc4\x99\xa0\x18\x57\xa6\x46\x2f\x80\x16\xc4\x4a\xa6\x05\x44\x6a\xbe\x3f\xaf\xe7\xf5\x64\x42\x50\x82\x53\xc3\x3c\xa1\x52\x42\x84\x12\xeb\x21\x68\x60\x6c\x09\xc9\x12\x4f\x45\x78\xa9\x47\xc3\x31\xdc\xb6\x3d\x90\x00\x08\x9d\x8a\xc0\xab\xd2\xf7\x19\xa2\x01\x34\x0b\xa0\x32\x08\x3c\xa9\x93\x24\xbb\x0d\x21\x37\x71\x51\x6a\xa1\xf1\x9a\x71\x60\x46\x3e\x61\x07\xc3\x58\xc1\xbf\x2d\xcb\xed\x38\x36\xac\x68\x9a\x9b\x50\x69\xc7\xeb\xba\xb3\xc3\x4a\xeb\x2c\xae\x69\x9a\x11\x7a\xcb\x80\x51\xf0\x8a\x20\x50\xc9\x26\xbe\x0c\x37\x74\x47\x39\x56\x4e\xaf\x98\x48\x24\x20\xbc\x84\xc7\xdb\xa6\xa9\x48\x92\x66\x71\x1e\xdf\xe2\xa1\x18\x04\x22\xbc\xa5\x57\x3a\xa7\x96\x4c\x96\xec\x32\xbc\xa2\x2b\x42\xab\xb0\xa4\x30\xa9\xf0\x69\xd9\x51\x7a\x4b\x58\xb6\x70\x8d\xa1\x39\x61\xe2\xae\xd2\x55\xba\xcc\x00\xbb\xdf\x9a\xa7\xb5\x46\x1f\x3a\x40\x84\x6c\x1a\x63\xa6\x66\x69\xd2\x34\xa3\x4b\x76\x35\xac\xee\x4a\x57\x57\xea\x99\xbf\x4d\x97\x50\xcf\x5c\xa2\x05\x07\xbd\x42\x4c\x4e\xf7\xe4\x00\x55\xdc\x5f\x3a\x2c\x99\x4c\x84\x91\x9f\x15\x74\x4d\xe2\x1d\x7c\x38\x3f\x9d\x01\x82\x4f\x4b\xe8\x65\x0e\x3f\x6b\x42\x0e\x1a\xf6\xaf\x60\xb8\xc0\x51\x24\x57\xc6\x66\x26\xdc\x52\x5b\x3f\x89\xaf\x08\x95\x89\xe9\x45\x4e\xaf\xe8\x9e\xc4\x2d\x69\x9a\xd3\xab\xde\x21\x76\xd5\x43\x77\x1a\x46\x5d\x79\xf0\xe7\xa8\xe2\x65\xae\x8a\x2b\x9e\x02\x4c\xe3\xb1\x9c\xc1\xb1\xd9\x34\xce\x27\x38\xdd\x68\xcd\x24\x46\x44\xd9\xb3\x6d\x38\xa6\xa4\x01\xb4\x70\xa0\x39\xf5\xa6\x84\x96\xe3\x79\x44\x27\x16\x87\x09\xb0\xb9\x97\x2c\x1d\xda\x88\x9a\xad\x26\x01\x74\x9b\x46\x78\x8c\xfd\x0a\xa7\x48\xa8\x98\x20\x1d\xb0\xed\x4d\xf6\xb8\x34\x0f\xe4\x90\xcd\x0b\xb3\xb1\x90\x8a\xea\x8d\xaf\x36\xe3\x23\x4b\x96\x6e\xc3\x4d\xb8\x24\x54\x10\xe3\xa4\x6d\x72\xeb\x63\xcd\xc9\x6b\x49\x7e\xb4\x20\x85\x54\x73\x4a\x11\x2a\xd2\xf7\x99\x9e\xdb\x8a\x4d\x26\xf5\xbc\x38\x87\xfd\xd6\x6b\xb0\x32\x95\x60\x04\x37\xbb\x6d\x6f\xc3\xfa\x7c\x16\x04\xd8\x3c\x3e\xad\x42\x6e\x0f\x2a\x5a\x9f\xce\x5a\xef\x52\x73\x3e\xfa\x27\x68\xe5\x9a\xd6\xa7\x8f\x74\x75\x89\xff\xd0\x8f\x7d\xff\xe0\xd8\xd0\xb4\x4c\x83\xa0\xd5\x79\x1d\x04\x57\x6d\x95\x35\xcc\x0a\xc5\xbe\x5d\x85\x9c\xd9\xe4\x36\x11\xce\x43\x72\x58\xb6\xf1\x10\x4c\x27\xa1\x77\xa3\x21\xe3\x2a\x13\xc8\xc1\x60\x55\x57\xbc\x7e\x3e\xa5\x35\x73\x30\x89\x39\x8a\x74\xb9\x35\xdd\xd1\x15\xdd\xc2\xa6\xd9\xb0\x29\xbd\x65\xfe\xd4\xa7\x57\xac\x08\x82\x34\xa3\x17\x06\x2b\x2e\xe9\x0d\xfb\x95\x5e\x03\x6e\xc9\x83\xe0\xb3\x8e\x42\xf8\xf1\xe9\xab\x10\x90\xcc\x32\x08\xea\x1e\xbf\x56\x13\xfa\x91\xfd\x3c\x31\xe2\xb2\x9b\x64\x16\xf7\x2c\x8c\x9a\x26\xd2\xe6\x5e\x17\x41\x10\xfe\xca\x6a\x2d\xd0\xa8\xe9\x0f\xac\x22\x36\xb8\xd7\x9a\x5d\xa7\xb7\x19\x99\xdf\x4e\x26\x5a\x83\x13\x04\x6b\xbd\xa6\x3b\x36\x9d\xaf\x18\x4f\x77\x18\x77\xa2\x58\x87\xab\x70\x8d\x78\x87\xdc\x19\x7c\xb0\xb6\xae\xd9\x50\xff\xcf\xec\x23\xfd\x81\x4d\x26\x15\x39\x00\xcc\x86\x6b\xe6\xad\xa0\xae\x20\xd8\x9c\x9e\xd2\x22\x08\xae\x6c\x21\xcd\x57\x4e\xd8\x2d\xe0\xe2\x5b\x8f\xb1\x8d\xdb\xa0\x32\x0d\xae\xc2\x2b\xba\xc5\xf6\x3a\xb4\xb5\x39\x9f\x6a\x86\xe1\x16\x30\xcc\x55\x7a\x9b\x35\xcd\x16\xff\x87\xf0\xc3\xfe\x6a\xbc\x22\x09\xb0\xb9\x97\xe1\x96\x1c\x5a\xb4\x50\xd2\x2d\xa1\x17\x41\x00\xd8\x78\xdb\x2e\x57\x10\x6c\x26\xed\x4a\xce\x82\x40\x44\x7b\x51\xfc\xb6\xe7\x1f\x64\xa5\xc2\xb2\x85\x05\x3b\xbe\x5f\xd9\x0d\xa1\x57\x87\x4e\x38\x5d\x84\x35\x89\xeb\x7e\x8c\x37\xd5\x3f\x59\x5d\x60\x99\x4b\xf4\x44\x41\x21\xb8\x8e\x31\x52\x91\x11\xc2\xea\xfa\xfe\x68\x05\x3b\xa3\x62\xf5\x2a\xcd\x85\xd9\x03\xc0\x88\x87\x4a\x20\x34\xe0\x5f\x4b\xf7\x51\x4b\xfe\x9f\x3f\x0a\x02\xff\xfb\xe7\xb0\x93\xc2\x5c\xfb\x32\xe2\x5e\x32\x82\x95\xef\x6e\xbf\x5f\x05\xc1\xb7\x03\xc6\xee\x13\xc0\x60\xbb\x9d\x65\x3a\xb3\xf8\x03\xc3\xaa\xb1\xd0\x00\xe8\xf7\xcf\xc3\xdc\xa2\x05\x97\x98\x7e\xa6\xe8\x0f\xc0\xb2\x62\x74\x13\x92\x4e\x33\xea\xa9\x4e\x38\xd5\xed\x45\x69\x09\x63\x4d\x6b\xda\x31\x1d\xb4\x03\xee\xad\x8a\x04\xe7\xab\xfa\x99\x36\xa7\x6d\x03\xc4\x4c\x63\xe9\x50\x2d\x18\x79\x00\xcd\x05\x5d\x0c\x54\xb3\xdc\xf4\x58\x53\x7d\x7b\xa6\xbb\x6c\xe8\x8d\x8a\xed\xbf\xd8\x73\x2b\x2a\x91\xf6\x64\x38\x16\x99\x18\xd1\x90\xb4\xe7\x54\x41\x67\x84\x72\x66\x89\x76\xc0\x2f\x92\x50\x6f\x4c\x18\x55\x11\x2a\xcc\x0e\xb2\x90\xf6\x14\xfd\x6e\xc3\x8a\x2a\xea\x7d\xa2\x82\x76\xb2\x1a\x42\x05\x0a\x2b\x3e\xd2\x67\xf4\x07\xfa\x99\xbe\xa0\x1f\xe8\x53\xfa\x2b\x7d\x4e\xdf\xd0\xd7\xf4\x37\xfa\x89\xbe\xa5\xef\xe8\x4b\xfa\x1d\x7d\xcf\x7c\x2d\xbb\xf5\x27\xa7\x56\x15\x42\x7f\x74\x3d\x87\x7e\x66\x53\xfa\x80\x4d\xe9\xf7\xac\x0a\x09\xfd\x1d\xff\xff\x03\xff\xff\x04\x2c\xd4\xdf\xc7\x1d\x45\xf0\x7c\x4b\xc2\x9f\x98\x37\xa5\x53\x12\x4f\x0f\x7d\x37\xa5\xd9\x93\x27\x8f\x67\xf4\x15\xbb\x3b\x0c\xbd\x82\xfe\x06\x38\xef\xaf\xec\x6f\xd1\x4e\xee\xe8\xbf\xe0\x77\x5f\x6f\x29\x57\xf6\x49\xc1\x93\x76\x39\x12\xf0\x68\x3c\x8e\xfa\xd6\x74\x7d\x8e\xc5\xb1\x24\x6e\xf9\x15\x00\x49\xb4\xf8\xee\xe9\x8a\x6d\x34\x3e\x38\x6c\x2b\xc5\x7c\x13\x28\xb0\xb1\x21\x1f\x1b\x34\x3b\x69\xf2\xbd\x92\x6b\xb9\xdc\xd7\xf8\x84\x71\xdc\x50\x76\x2d\xcb\xba\x59\xf1\x35\xaf\x9a\x55\x51\xe7\x17\x25\x5f\x35\xda\x75\xaf\x29\xea\xcb\x7c\xd7\x94\x52\xee\x9a\xcb\x7d\xa9\x8a\x5d\xc9\x1b\xb9\xe3\xa2\xa9\x78\xbe\x92\xa2\xbc\x6d\x2a\xfe\xdb\xbe\xa8\xa0\xad\xa5\xdc\xf1\x95\x4f\x0b\xc5\xfc\x74\xb1\xb8\x79\x34\x5d\x2c\xd4\x62\x51\x2d\x16\x62\xb1\x58\x67\x3e\x95\x8a\xf9\x61\x12\x2f\x16\x8b\x45\xd4\xa4\x8b\xc5\xf5\x69\xd6\xa4\xbf\x2c\x16\x37\xd3\xe9\xe9\x62\x71\x93\x4f\x33\x32\xf1\x69\xae\x98\xec\x0c\x89\xfc\x6b\x9f\xfa\xd7\xff\xe9\x13\x5a\x2b\xe6\x2f\x16\xa9\x3f\x29\xd4\xc4\x7f\x18\xfa\x13\xa9\x26\x3e\xb1\xaf\x49\x1c\xa6\x0f\x7f\x79\xd0\x78\xff\xce\x12\xd6\x4b\xfd\x6a\xe1\x67\x24\xec\xda\xfd\x05\x7e\x33\xf2\x30\x21\x8b\xc5\xe3\x26\xf4\x27\x39\xd4\xd3\x90\xc6\x96\x5a\x2c\x32\x9f\xee\x15\xf3\x63\xdb\x08\x16\x0e\xc3\x3f\xac\x6b\xf0\x21\x24\xe9\x62\x91\x65\x8d\x3f\xa9\xbb\x01\x3d\xa6\xff\x4d\x26\x3e\x79\x48\x9a\xe8\x21\x59\x2c\xa0\x59\x74\x28\xe3\xd7\x46\x39\x12\xfa\xbf\xe8\x8e\x4c\xb0\xc2\x5f\xda\x56\x6c\xed\xe4\xa1\xe9\xe9\xe4\x81\x4f\xfd\x8d\x4f\xe8\x7a\xb4\xfc\x43\x6a\x7e\x7d\x42\x77\xe3\x39\xc2\xf4\x7c\xf2\x6f\xe8\x60\xe1\xcc\xa5\x0f\x18\xc1\xcd\x8e\xa9\xe9\xe4\xdf\x99\x4f\xe8\xb6\x5f\x11\x6b\x2b\xfa\x65\xb1\xc8\x60\x7a\x1e\xf6\xa6\x11\xbb\xb7\xe9\x95\xd9\x2b\x42\x2f\x8f\xba\x03\x8b\xf0\xc0\x27\xf4\x56\xb1\xbb\xef\x9f\xc7\xbd\xaf\xff\xd9\x2e\x36\xa1\xcf\xde\x3c\xfd\xf0\xa1\xff\x79\xb1\x88\x9c\x0c\x1f\x9f\xbe\xea\x7f\xc6\x6f\x03\x78\x7a\xe8\x13\x9d\xfb\xe9\xc7\x8f\x3f\xc6\x83\xae\xd4\x8a\xd0\xf7\x1f\x5e\xfc\xf4\xfc\xdd\xf0\x0b\x74\xfd\xd9\xeb\xef\xdf\x0c\xfa\x17\x87\xb8\x11\x90\xdf\x6f\xca\xbc\x56\x8d\x50\x5b\xf8\x3b\x85\x17\x72\x1a\xa2\x7d\x5e\x23\xd7\xa7\x88\x5c\x35\x34\xd9\x89\xe3\x57\x5c\x34\x72\xb5\x6a\xc2\x30\x9d\x9c\x66\x0d\x09\x17\x8b\xd5\x43\x22\x9a\x1e\x10\xe3\x17\x9b\xb0\x58\xac\x26\xa4\x21\xdd\x44\x23\x10\xf9\x85\x4f\xe8\x85\x94\xe5\x60\xf8\x49\xec\x4f\x2a\x98\x9c\x07\x26\x8f\x7b\xcc\x0c\x47\xa8\x97\x1a\x81\x22\xee\xba\xc6\x7f\x6b\x36\xaa\x29\xf5\xb8\xba\x61\x0e\x46\x12\x26\xf1\xe9\x62\xb1\x22\x09\x0e\xc0\xed\x5c\x98\xb0\xf4\x97\xd3\xac\x79\x60\xba\x79\x40\x87\xc1\x5f\xd2\x5f\xee\xb2\xc9\xe2\x0e\xdd\x08\x05\x9e\x64\x27\x8b\xeb\x33\x74\x12\x84\x6e\x1b\x77\xc5\x09\x69\xd0\x4b\xb1\x59\x44\x36\x81\x3c\x38\xd3\x5e\x80\x61\x12\xa3\xf4\xd1\xe0\xb9\xc6\xc6\xad\x6d\xb4\x18\x92\x3c\x38\x2b\xd0\x47\xf0\x97\xed\x62\x05\xcf\x1f\x15\x3b\xfb\xaa\x59\x2c\xce\x36\xf4\x59\x1f\x04\x71\xbf\xa6\x0b\x74\x58\xcc\xee\x66\xf4\x2f\x07\x3d\x80\xa4\x31\xe3\x23\x4d\x84\xbd\x07\x80\xfe\x41\x1d\x99\x06\x68\x9a\xd9\x9f\xde\xf8\x13\x75\xfa\x97\x6f\xbe\x79\xfc\x97\x96\xe4\xf1\xd0\x45\x58\x24\x2a\x9e\x9e\x57\xc6\x02\x39\x5a\x57\xf2\xf2\xd9\x36\xaf\x9e\xc9\x15\x0f\xab\x09\x96\x20\xf1\xe8\xc7\xf3\xf3\xd9\xb4\xf9\xe6\x9b\x47\xdf\xfe\x85\xce\xa6\x8f\x1e\x07\x55\xf3\xcd\x5f\x1e\x3f\x9a\x92\x83\x36\x5d\xb4\x27\xed\xdf\xd0\xd5\x15\x28\xc3\x1f\x5d\x83\x50\xda\x7f\xfb\x5b\xea\xbe\x5b\xc3\x95\x96\x18\x32\xc2\xfb\xcf\xa8\x7c\x65\x77\x58\x73\xfc\x37\x93\x2d\xe9\x1f\x98\xff\x6a\x4d\x03\x6c\xc3\x8a\xf4\x2c\xbe\x86\x02\xfb\x56\xfc\x36\x9d\xf3\x54\x4c\x26\x19\x53\x69\x85\x64\xf0\xbc\xb5\x2a\x82\x13\xec\x70\xf8\xc0\x44\x54\xd4\xff\x78\xfb\x86\x1d\xbb\xd7\x70\xb4\x3b\x1c\x68\x32\x39\x19\x6a\xcd\xbb\x98\x25\xfe\xeb\x8f\x6f\xdf\xf4\x35\x56\xb1\x37\x3b\xd0\x67\x4c\x58\x9b\x66\x76\x77\xa0\x6f\xe0\x95\xb7\x11\x0b\xc7\x5a\x4e\x8e\xdb\x8d\x7f\x84\x73\xda\xf5\x78\x6e\x1b\xd6\x8c\xc8\x90\xd8\x3c\x8a\xa4\x98\x84\xaf\x99\xa2\xbf\xb1\xa3\x0f\xf4\x13\xf3\x3e\x84\x8a\x68\x77\x41\xc7\xa8\x20\x08\x80\x51\x16\x91\x92\xbb\xc1\x97\xd0\x97\xe2\x82\xaf\x65\xc5\xf7\xc6\xec\xc0\xb1\x1b\x79\x83\xca\xf2\x67\xa8\x1a\x41\xf5\x54\xcd\xe4\x28\x87\x1f\x2d\xad\xc2\x90\xf9\x85\x4f\xbd\xc1\x25\x13\x7e\xfb\xd9\xd7\x15\x8e\xe9\x36\xef\xab\xda\x8d\x66\x6f\x4d\xa1\x9f\xc9\x4b\xad\x50\xf2\x09\x31\xad\x8d\x58\xb6\x3e\x6c\xed\x59\x8f\x1b\x6d\x35\x9c\xf7\x35\xdb\x05\xe7\xf6\x9f\xac\x8a\xab\x13\x1c\x02\xfb\x2a\xff\xea\xfc\xc9\xd9\xaa\xb8\x3a\xef\x25\x9e\x14\x36\xd9\xa7\xdc\x09\xdb\x3f\x98\x97\x47\xa8\x2f\xba\x47\xd3\x0a\x68\x6e\xd0\x5d\x60\x3e\xc6\xfb\xf7\x5b\x3f\xc8\x3f\x89\x8a\x15\x7b\x4f\xbd\x81\x1a\x17\xea\x6d\x9a\xb1\xd4\xf0\xfd\x58\x5b\x49\xc7\xb8\x0c\x48\x5d\xa0\x21\x0d\x49\x3b\xd0\x78\x7b\x8c\xfd\x33\x08\x3e\x75\xba\x9f\x81\x42\xdc\xb1\xe5\x07\xd0\xeb\x78\x84\x24\x15\x59\x9c\x66\x87\x03\xb5\xc2\x95\x7e\xb3\xdd\x85\x4c\x7d\xe6\x63\x3e\xd4\x3b\xb9\xab\x76\xac\x38\x46\xe1\xd3\x81\xc4\x36\x10\x46\x3b\xc2\xff\x0b\xcd\x9a\x21\x3b\xb1\xca\xdb\xc6\x61\x84\x7a\x6a\x8e\xd3\x75\xc7\x7a\xd3\xa2\x23\xb3\xeb\xae\xd2\x4e\xbc\xc1\xc6\xb7\x4a\x32\xee\xb0\x7e\xbc\x40\x83\x98\xe9\xf7\x1a\x15\xd8\xc0\x80\x23\xd6\xb3\x82\x56\xc0\xa6\x58\x86\xfd\x9e\x0a\xe6\x6d\x28\x3d\xc3\x92\xcc\x45\x1b\x9a\x13\xf8\x71\xe1\xe0\xb3\xca\x8a\x94\x3a\x16\xdf\x0a\x0e\x0e\x76\xec\x48\xb4\x0d\x47\xef\x98\x36\xfc\xff\x31\x01\x6d\x29\x03\xa9\xc3\x59\xe8\x76\x60\x37\x0f\xf4\x1d\x8c\xf9\x2d\xfc\xd3\x86\x0f\xec\xaa\x75\x58\x18\xea\xf7\xf5\x65\x40\xbd\x4d\xda\xc7\x1e\x9a\xd2\x38\x7f\xa2\x83\xed\x9f\xb4\x31\xf5\xbf\x02\x9c\xa1\x13\xcf\x9f\x9c\x99\x5c\x80\x3f\x8e\x2c\x08\xfc\xd4\x16\xca\x1c\x13\xfd\xb7\x7a\x1e\x5d\x16\x27\x89\x11\x90\x1a\x43\xbf\xf9\x64\xb4\xb6\xd8\xf0\x7a\x23\x75\x75\x9f\x0e\x84\xf6\x07\xd5\x46\x86\xef\xab\xf4\xb5\x2e\x97\xcc\xc5\xc0\x0e\x03\x6f\xee\xa0\x36\x12\x0c\x1a\xb9\x39\x18\x4b\x90\x61\x76\x1f\x1d\xfd\x46\x07\xaf\x7e\x61\x5f\x7d\xd5\x8d\x3c\x08\x6c\x6f\x81\x7f\xcb\x58\x37\xf8\xaf\xbe\x6a\x16\xfe\xe2\xfe\x71\x73\x81\x9c\xea\xd8\xb8\xed\x27\xea\xc7\x96\xa1\xbd\xa7\x96\x87\x34\xbe\xf1\x09\xb5\x25\x69\xf4\x30\xf6\xd1\xa2\x33\x7c\x66\x25\x26\x36\x7f\x0b\x35\x2f\xd9\x6f\xd1\x35\xbf\xf8\x5c\xa8\xb7\xfd\x1c\x4d\xf3\x5b\x74\x29\x7f\x1f\x49\x95\x63\x39\xeb\x41\x22\xc0\x5e\x7f\x95\x9e\x45\xab\xa2\x5e\x4a\x21\x10\x5c\x30\x3b\x7b\xd9\xba\x7c\xa1\xfd\x05\xed\xde\xd3\xda\x83\xa9\xc5\x01\xbd\x33\x03\xf2\x18\xf0\xb2\xb0\xfe\x6f\xd9\xdb\x76\xca\x1d\xca\xf7\xad\xb1\x84\x69\xe0\xf0\x7d\xc7\xde\x8d\xe5\x79\xe7\xe6\xf9\xae\x9d\x87\xdf\xda\xc8\xfd\x04\xc6\xb3\x94\x97\x70\x1e\x58\xe2\xe8\xbd\xac\x0b\x18\x47\x32\x82\x85\xd8\x71\xc8\x98\x3e\xed\x13\x73\x5a\x31\xd5\x17\x43\xcd\x1d\x09\x4d\xd5\x34\x1e\x2a\xd3\x67\x18\x9a\xbe\xd3\x52\x7a\xa1\x68\x7b\x95\x74\x8f\x61\x45\x62\x7e\x5f\x0f\x83\x60\xf6\x97\xe0\xde\xaf\xe8\x66\x3b\xc4\xa5\xe8\x0b\x60\x35\xa6\x6e\x1f\xf5\x95\x09\x9d\x64\xc6\x9b\xce\x5b\x33\x18\xfa\x77\xf6\xa7\x66\x49\xb4\x1e\xa7\xad\xa7\x92\x16\x47\xcd\xad\xc9\xff\xbd\x03\xf9\xc2\x18\xef\x1f\xa0\x83\xbb\x93\x59\x00\x53\xfb\x0c\x5d\xba\x9f\x63\x74\x10\xbe\x82\x23\xed\xbe\xb2\x9c\x60\xcc\x23\xae\x3d\xfb\xbe\x0b\x7f\xa4\x9c\x24\xa7\xb3\x58\x74\x09\x82\x24\xb3\xf8\x79\xab\x1b\x7b\x4e\x39\x39\xed\x5e\x04\x89\xa7\xf1\xd7\x41\x05\x85\x66\xf7\xaf\x11\x7e\x3e\x8c\x5b\xce\xe3\x61\xc6\x9d\x55\xa0\x39\x73\x69\x13\xba\x67\x29\xcf\x68\xc9\x52\x81\xc6\x1b\x63\x33\x5b\xac\x43\xb4\x30\x6c\xad\xfb\xb4\x1c\xd0\x8e\x24\x99\xc5\x12\x5e\xf2\x3f\x1a\x0a\x1a\x23\xba\x56\x82\x75\xe8\xb8\x86\xf0\x79\xc5\xaa\x1e\xb8\xec\xdb\x30\xb0\x95\xcd\x24\x8e\x32\x95\xc3\x4c\xf3\x7d\x5a\x64\x18\x0f\xb9\xc8\xe6\xa4\xe8\xac\x0e\x8a\xa4\x0e\xe1\x1b\x2d\x31\xda\x87\xc9\xf6\x23\x74\xbd\xb4\xcf\xb3\x78\x7a\xa0\x8a\xc4\xaf\x0f\x54\x58\x1c\x77\x4f\x14\xa3\x50\x07\x53\xd1\xff\xd0\xfd\xea\x08\x29\x1e\xed\x8b\x31\xe6\xcc\x1a\x99\x72\x34\x32\x6d\x69\xb1\xad\xa2\x3e\xfb\xea\xc1\x0c\x8e\x03\xea\x85\xde\x11\xca\x6d\x1a\xef\x53\xd3\xbc\x0b\x82\x77\xf6\xf2\xb1\xa6\x79\x0b\x27\x86\xbd\x8a\x0c\xed\xf6\xf4\xae\x78\xd9\x39\x9b\xa1\x09\x56\xd3\x8c\x60\xcf\xa6\xe9\x50\x4d\x10\xcc\xf4\x35\x6d\x36\xe1\xe8\xda\x34\x7b\xb9\x5d\x41\xee\x0e\xed\x94\x28\xfa\x5a\xcf\x47\xca\x33\xd2\xea\x58\x60\x6a\x2c\xb2\x19\x9d\xcc\x3f\x98\x96\xef\xb4\x97\x1c\x45\x76\xae\x37\xab\x82\xdc\x7d\xb9\xac\xc1\x0a\x7d\x9b\xb7\x41\xd8\x66\x5a\xb0\x2a\x08\x5e\xe9\x29\x72\x73\xd2\x41\x4e\x1d\x91\x5e\x50\xef\x13\x89\x5b\x1e\xba\xc0\x2d\xe0\x72\x8e\xb0\x30\xc9\x80\x40\x17\x24\xc6\x6b\x17\x8e\x08\x64\x81\x6e\xda\x3a\xda\xe7\xba\xe0\xab\xa4\xd0\x14\x32\xfa\x99\xc6\x05\x0c\x1a\x0d\x7a\xd8\x97\xdc\x78\xfd\x0f\xb7\x42\xe5\x37\x27\x98\x93\x9e\xec\x45\xc5\x97\x72\x23\x8a\xdf\xf9\xea\x84\xdf\xec\x2a\x5e\xd7\x85\x14\xf1\x89\x3f\xe1\x38\x8d\x9d\x8a\xeb\x98\x1d\xa0\x42\x5f\x05\x34\xc5\x20\x6a\xe8\x87\xe0\x3d\x8b\x56\x5c\xf1\xa5\x7a\xbe\xdf\x95\xc5\x32\x57\xbc\xa6\xcf\x99\x41\x84\x1f\xf0\x8a\x37\x40\xa1\xad\xc2\x89\xe3\x87\xf0\xef\x84\xfe\xd4\x9a\xdd\x70\x43\x22\x23\xfe\x4f\x0b\x6d\x8f\x21\xec\xb5\x41\x66\xe7\xa2\x7d\x22\xb7\x7a\x14\x91\x56\x19\x9d\xb5\x2a\x38\x7e\xa0\x2f\x18\x86\x2f\xff\xc8\x6f\xc6\x3b\xee\xfb\xa6\xe3\xdd\xf1\xd9\xa9\x0e\x81\x38\x2f\x9a\xe6\x5b\xfd\x33\xc3\x57\xfc\x70\xec\x04\x87\xd7\x65\x19\x77\x88\x16\xe7\xb9\x89\xd8\x5d\xce\x5c\x06\x78\xce\x51\x9d\xe5\x18\x31\x12\x31\x61\x2f\x42\xde\xb9\xde\x3c\xd6\x4d\x7f\x8d\x2d\xf7\xbc\x32\xf1\xaa\xa8\x9e\xa9\x11\x46\x04\xad\x26\x13\x5d\x89\x72\x2e\xde\xa3\x9f\x51\x18\xa3\x91\x40\xcd\xee\x1c\x3b\xd7\xf8\x9b\xa9\x89\xb5\xfb\xbe\xe6\xfb\x95\x8c\x0b\x6d\x50\x16\xdf\x2a\xda\x81\x75\x7c\x77\xa0\xc0\x7a\xc0\xaf\x55\x93\xc5\x77\xfe\xb9\x1f\xdf\xad\x8a\x2a\x76\x4d\xb7\x4c\x30\x18\x6f\x7a\xa0\xfe\xc9\xc8\xf7\x03\xf5\x27\x6d\x72\xc5\xaf\x0a\xb9\xaf\xcd\xe8\x7b\x65\xff\x7d\x5f\xa6\xc3\x81\xb6\x56\x80\xf1\x1d\x4a\x9c\xc7\xb8\x5d\x34\x7d\x4a\x67\x47\xda\x39\x9e\x3e\xce\x58\xc8\xd3\xaf\xb3\xa6\xe1\xe9\x37\x78\xc1\x0e\x19\x66\xf2\xff\xcd\xb4\xf5\xc0\xa3\x0c\xa3\xb6\x3e\xce\x98\x0f\x5b\x21\x7d\x9c\x4d\xd0\xb1\xa2\x33\x3d\xf8\x9a\x1c\x8c\x10\xfb\x8b\xbd\xe8\x5f\x05\xe7\x0b\x1d\xeb\x10\x3f\xd9\x9a\x1e\x93\x04\x9b\x6a\x9a\xd6\x22\x0f\x83\xc7\x42\x5f\xd9\x04\xbb\x9c\x40\x8f\xe1\xf1\x2f\x59\xd3\xcc\x48\xfc\xe8\x61\xe8\xf3\x2b\x2e\x74\x5d\x8f\x31\x9c\xc2\x6a\x65\xdf\x08\x94\xfd\x46\x97\xfd\x5f\xd9\x84\xa7\xff\x7d\x94\x21\x86\x1f\x20\x48\x7a\x0d\x1e\xac\xc0\xfe\x88\xc5\xa1\x15\xf3\xa0\xce\x20\x80\xb9\x69\x6d\x33\x54\x84\x53\x60\xd4\x8e\x50\x89\xbe\xf6\x34\xd4\xd5\x43\xd7\x3d\xbc\xdf\x26\x7d\x04\xf3\xf1\x75\x16\x57\x41\xb0\x69\xaf\x41\x45\xe7\xff\x5d\x58\x61\x98\x2e\x7c\xa9\xac\x3e\x2f\xf4\x09\xba\x75\xeb\x10\x65\x82\x9c\xb6\x86\x8d\xb8\x30\x53\xa8\xae\xd3\x5c\x53\x01\x43\x7e\x94\xb5\x77\x5c\x4c\xf1\xf6\x61\xee\xcc\x31\x39\x00\x28\x6b\xe0\xf9\xf8\xf4\xd5\x48\xc0\xa1\xa1\x70\x63\xdc\x0c\x58\xf3\xf3\xc9\x91\x23\x99\x37\x1d\xf5\xd2\xfd\xb3\xae\xd4\x87\x83\xd1\xc9\x1c\xf7\xeb\x7b\x6b\x30\x6b\x39\xfa\xa6\x09\xfb\x52\xf7\xf0\x97\x4e\xf7\xc4\x27\xbe\x11\xb5\x37\x0f\x88\x0f\xd3\xfa\xfd\xf8\x8d\xa1\x66\x15\x46\x50\xda\xb2\x13\x29\x38\x2f\x4d\x33\x2a\xd3\x19\x93\xe7\x18\xd9\xa6\x4f\x70\x93\x1d\xc8\x81\x0e\xb6\xab\xb6\x7b\x18\x0a\x8f\x0a\x73\xbb\x36\x13\x36\xb4\x9a\x23\x27\xd3\xd7\x3c\x27\xc0\x89\xc1\x7c\xc5\x2a\x09\xe5\x04\xd0\xb8\xaf\x13\x12\x20\x17\xab\xd8\x7e\x4f\xa4\x87\xaf\xbf\x98\xd7\x2a\x08\xa6\x8c\x31\xd9\xc2\x57\x45\x62\xff\x61\xf7\xd1\xfd\x70\x7e\x3a\x8b\xfd\x07\xee\x37\x0d\x46\x1d\x0c\xea\xa6\xfe\x6d\xb2\x84\x68\x3b\x8a\x08\x62\x58\x4b\xe3\x76\xae\x69\x64\x0b\x90\xb6\xaa\xc9\x0c\x2b\x9b\xf8\xa7\x7e\xec\xcd\x08\xe0\xc0\x63\xbc\xd2\x99\x4b\xea\xf9\x41\x34\x82\x34\x57\x07\xdf\x34\x67\x7e\x99\xd7\xca\x4d\x3f\xfd\x9a\xd0\x9a\xf9\x46\x63\x86\x3d\xb1\xf3\x09\x67\x9a\x99\x93\x62\xc4\x0f\xdd\xf3\x5c\x46\x60\x60\x3b\xdb\xb7\x77\xa4\x2b\xba\xa5\x1b\x06\xf3\x9d\x27\xbe\x73\xa8\xf9\x23\x88\xfe\xb2\xc7\xe6\xd1\x5b\x56\x03\x73\x7a\xcf\xc5\x99\x57\xcc\xdb\x07\x81\x87\x81\x0e\x2f\x5d\x0b\xc4\xf9\x66\xae\x1f\xd6\x4c\xcd\xd7\x6c\x9d\x6e\xb4\xd1\x51\x9d\xac\xef\xdf\x62\xb7\x78\x2d\xfd\x7a\x48\x9d\x7a\xb3\xf9\x96\x6d\x98\x2f\x45\x89\x81\x77\x78\x10\x78\xdb\x20\xe8\x0d\xe4\xd0\x6e\xf1\x62\x1d\x6e\x59\x9a\x27\x97\xce\x71\x1e\x5f\x46\x30\xf1\xf8\x8c\x51\xbc\xaf\x74\xe7\x96\xec\x52\x1b\xf9\x5e\x5a\x23\xdf\x92\x2d\x53\xae\xef\xbf\x59\x69\xf3\x1b\xc6\x7e\x0e\x82\x32\x9d\x65\x74\xd7\x4b\x78\x94\xd1\x35\x5b\x05\xc1\xa5\xa3\x65\x4a\x57\xd9\x7c\xcd\x26\x93\x55\x10\xac\x83\x00\x06\xdd\x34\xe1\x8e\xad\xd8\x94\x34\xcd\x56\xdf\xba\xdb\x9a\x1c\xaf\x1d\xd9\xe2\x64\xb2\x0b\x82\x35\xba\x48\xdc\x41\x07\x58\xfa\x33\x5d\xd1\x5d\x66\xcd\x49\x2c\xd1\x71\x85\xe6\x97\xe1\xc0\x34\x99\x00\x81\x0e\x7d\xd2\xbd\x23\xd0\xd1\x99\xeb\xe9\x1e\xfe\x51\xa7\x00\x65\x7f\x61\x6d\x3c\x5c\x1b\xaf\xb7\x36\x4d\xe3\x4d\x26\xbb\xa6\xc1\x3e\x85\x6b\xdd\xa3\xb5\xd3\x23\x18\xc3\x2e\x23\x74\x8d\x77\x57\x93\x79\x8b\x28\x76\xa7\xac\xa0\x3b\xbd\xdd\x76\xff\x55\x31\xc6\xa6\x41\xb0\x3b\xab\xce\xd9\xf4\x70\x18\x39\xe0\x3a\x37\x05\xc9\x3e\x47\x3b\x24\x86\x6a\x5c\xa5\xcf\x51\xcd\x95\xa6\x37\xea\x74\xd0\x67\xe7\xb0\xf6\xf7\xc2\xa8\xbf\xf8\xea\x44\x97\xd7\xe4\x73\x77\x07\xd2\xfb\x2c\x91\xa1\x22\xad\x09\xd2\xf9\x2c\x09\x2b\x96\x72\xca\xa9\xef\x53\x95\x51\xb7\xa9\x81\x41\x4c\x38\xf4\x0b\x4b\x1c\xfb\x63\x3e\xbc\x75\x43\xea\x2b\xbe\xdc\xcb\x35\x80\x50\xae\x98\x68\x83\x05\x15\x69\x8e\xc4\x45\x95\x31\x0f\x09\x67\x86\x29\x07\x32\x76\x7c\x41\x7d\x53\xbc\x2c\x2b\x96\x40\x80\xe9\xe9\x89\xef\x84\x54\x71\x71\x24\x09\xd5\x81\x83\x35\x53\xf0\x74\xc4\x49\xab\x13\x90\xc0\x94\xf4\xc6\x01\x78\x65\x60\x0e\x5e\x59\xb6\xb9\x40\x03\x69\xf7\x6e\x4a\xb4\x19\x96\x2c\x37\x96\x59\x1c\x6f\x99\x0a\x15\xfc\x48\xd2\x1f\x0a\x2d\xa8\xec\xce\x3c\x1d\xe5\xb2\x02\x34\x06\x35\x4b\x20\x1c\x3c\xa1\xc1\xf4\x70\x20\x74\x9b\xd7\x83\x71\x8d\x38\xf4\x38\x6c\xbd\x72\x58\xd7\x03\xa1\x96\x75\xfd\xb3\x75\x84\xca\x65\x15\x9a\xc6\x5c\x7f\x0b\x5c\x4b\xd3\x00\x2d\xdf\x1d\x28\xda\x04\x18\x90\x48\x2e\x36\xe3\xf5\xdb\xf8\x41\x1c\x8f\xdd\x7b\x20\x14\x8b\x23\x7c\x52\xfe\x07\x24\x0f\x3d\xf2\x62\x9a\xaf\x24\xde\x97\xc6\x3e\x25\x2a\xc2\x9a\x86\x6e\x89\x37\x97\x65\x0c\x1f\xa0\xfd\xe1\x37\x9d\xde\xda\xf4\xb1\x01\xcf\x4c\x05\xa0\xdf\xa6\x99\xa2\x6a\xa4\x1d\x37\x1c\x8d\xc4\x5c\x09\x1f\xf6\xc5\x84\x64\xe8\x5d\x46\x3a\x29\xe1\x81\x50\x95\x57\xbd\x38\xa0\xad\xd8\xb4\x0b\x92\x8d\x91\x6f\xcd\x33\x6c\xbc\x6d\x4f\x01\x65\xef\x4b\xc3\x36\x8a\xd5\x81\x56\x52\x8e\xc6\x15\xe5\x8c\xb1\xdf\x0e\x14\x6d\xc2\xee\xfb\xfe\xba\x7f\x13\x7e\x10\x84\xde\x6b\x68\xf2\x25\x1a\x92\x35\xdd\x33\x22\x4c\xcf\x0b\x6d\xb4\x64\x1e\x6d\x2b\xbe\x6e\x9a\x7f\xf3\x48\xe5\x17\xe8\x20\x87\xb1\x27\x51\x1e\x3f\x4e\x73\x5a\x69\x3d\x86\xa5\x39\x50\xfb\xfa\xc7\x99\xa7\x07\x6a\x94\x1d\xa3\x04\xf2\x9f\xf4\x90\x53\xd0\xff\xf6\x9a\x5d\xe0\x3d\xda\x2b\x95\xcd\x27\xab\xba\xb1\x71\x5e\xef\xeb\x9b\xeb\xe8\xe8\xbe\xb5\x15\xe0\x74\xd0\xee\xdd\x0c\x02\xef\x6c\x88\x87\x26\x81\x7f\xc8\x86\x63\x6c\x38\x3b\xc8\x73\xff\x7f\xfb\x4d\xf3\xb8\x27\x62\xd7\x2c\x39\x1f\x21\x22\x5a\x12\x81\xea\x5e\x8e\x45\xde\x6b\xcf\x17\x7d\xa7\x04\xc6\x54\xdb\xe2\xc5\x6a\x63\xa3\xbf\xb6\xdb\xb9\xbb\xa2\xe1\x40\x71\x8e\xc7\x72\xdf\x8c\xe5\xd6\xf6\x3b\xff\x87\x4b\xe9\x38\x23\xb6\x01\xbc\xbb\x24\x75\xa0\x68\x01\x75\xd4\xc6\x51\x55\xf7\xb5\x19\x04\x18\x04\xac\xab\x1f\x38\x41\x24\xf7\xf1\xe6\xb2\xcd\xb1\x06\x8d\x20\x72\x19\x12\x78\xe6\xca\x67\x1b\x96\x76\x19\x1e\xf1\x68\xe9\x34\x43\x04\xda\xff\xea\x48\x17\x53\x75\x3a\x83\x2c\xfc\xb7\x41\x86\x2e\x6c\x49\x3a\x3d\x17\x89\x98\xa8\x58\x60\xc6\x2b\x2e\x8e\xea\xea\x8c\x75\xa6\x73\x85\x01\x8a\xd8\x23\xc2\x87\x0a\x5e\x7e\x20\x54\xae\x56\x5f\x28\x3d\xfb\x83\xd2\xe5\x70\x18\x3d\x6a\x80\xb5\x1d\x9d\x9f\x9e\x02\xf9\x33\xb7\xb5\x54\xbd\x5a\x36\x7f\xb6\x96\xc9\xa4\x7a\xa2\xc6\x2b\x41\x7b\x05\x0b\xdb\x42\x6d\x99\x03\xe9\xbf\xa1\x04\xec\xe3\x49\x21\xee\xaa\x7c\x55\xc8\xd8\x9b\x6a\x1c\x73\x21\x6f\xe0\x79\x5d\x94\x1c\x7e\x77\x79\x5d\x5f\xcb\x6a\x05\xcf\xc5\x65\xbe\x81\xc4\x03\xe9\x48\xb2\x8f\x19\xdb\x87\x1f\x49\x57\x5b\xbd\xbf\xb8\x2c\x14\x64\xaf\x78\xcd\xd5\x71\xf6\x12\xb3\x3b\x41\x73\xad\x71\x43\xdd\xf5\xaf\x47\x7a\x21\x53\xbd\xa6\x4f\x8d\x6a\xa8\x28\x39\xfb\x82\xee\x1f\xe3\x32\xfd\xc3\xf1\x66\xf5\x0c\x7b\xa2\x19\xf4\x9d\xb6\xc3\xee\xec\xf9\x05\x50\x2d\x92\x5d\x85\x0a\xef\xff\x41\xb2\xb0\xb2\x3e\x6b\x71\x61\x9f\xe6\x92\xfd\x23\xe4\xf4\x22\x2c\xd0\x43\xa7\xb3\x02\x70\x85\xa8\xec\xbd\xf5\xdb\xf6\x89\x15\xa1\x1a\xed\x22\x5a\x77\xbc\xa7\xc7\x82\x58\xf6\x13\x7d\x13\x12\xda\x57\x4a\x8d\x5b\xd2\xcc\xbe\xa0\xe6\x1a\xf7\x5f\x3f\x56\x8d\x8f\x1a\x0d\xe5\x27\x70\x96\xb1\xaf\xfe\xf3\xab\xf3\x27\x67\xf9\xb9\x4f\xfd\xff\xd4\xfb\xde\x31\x0f\xea\x6f\x78\xc8\xef\x93\x03\x69\x9a\x5c\xef\xfe\x06\x4f\x43\x7d\x81\x47\xa3\x6f\x0f\xa1\xf7\x44\x18\x12\x89\xb9\x1e\x74\x80\x45\x14\xf5\x5b\x86\xb8\x8f\x46\x92\x59\xfc\x68\x68\xde\x35\xd4\x26\x8f\x0e\x0c\xb1\xdc\xd9\xd0\xd2\xa9\xaf\xce\x47\x69\xbd\x56\xe9\xfb\x7f\x30\x6a\x9d\xd5\x0e\xdb\x14\xbc\x6f\x94\x4d\x63\x90\xac\x77\x3f\x92\xed\x66\xc2\xda\xd8\xa1\x1c\xf9\x9e\x45\xb3\x21\x75\xfa\x9d\xea\x6c\x00\x74\xbf\x2a\x75\xd4\x25\x1d\xe2\x6d\x38\xfd\x61\x35\xa6\xcf\x50\x40\xe7\x54\x8e\x3e\xa3\x32\xfa\x0c\xae\xad\xf2\xbd\x69\x32\x58\x1d\xd4\x74\xe8\xa8\x48\xeb\x42\xac\x98\x09\x80\xbd\xab\x5c\x31\xb7\x4d\x4b\xfd\xd8\x37\x21\x99\x77\x55\xbb\xdd\x97\xca\xa8\x34\x98\xab\xdb\x80\x64\x0c\xc5\xde\x2a\x0d\x74\xbc\xab\x7f\xbc\x7d\xf3\x5c\x2e\xad\x15\x25\x75\x2e\xd9\x67\x9d\x9e\xea\x60\x95\x47\x9f\x15\xbb\xc3\x1b\x1f\x9e\xe5\x65\x79\x91\x2f\x3f\xd7\x3d\xd5\x03\x67\x23\x31\xf4\x3e\x2b\xe4\x35\xd1\x0b\xbb\x77\x15\x9f\xa9\x53\xf4\x6e\xe8\x42\xc7\x4b\x8f\x47\x52\x2c\x39\xba\x82\xad\x7b\x01\xa1\xb4\x0b\x0c\x8f\x2e\xf9\xa5\xac\x6e\x83\x40\x51\x0c\xdd\x55\xb3\x7d\xd3\x4c\xe9\x1e\xa3\xbb\x95\x5d\x58\x3d\x6f\x3a\x2f\x83\x20\xef\x1c\x00\xcb\xb4\xb6\x1e\x7c\xc0\x29\x51\x65\x5d\x8f\x67\xa8\xb4\x51\x72\xf7\x4e\xbc\xcc\xcb\x9a\x93\xbb\x82\x79\x33\x23\x3f\xc0\xb0\xd9\x65\x10\x84\xcb\x64\xd9\x9a\x3d\xac\xc3\xee\x46\xd1\xb8\x48\xa0\xeb\xf1\xce\x92\x9a\x78\xab\xc7\x8e\xdd\xe5\xab\x5e\xfc\x74\xe8\x81\x25\x50\x5a\x67\x55\xcf\x89\xe8\xa1\xc8\xdd\xe8\x75\xd0\x06\xf0\x8a\x36\xe4\x99\x20\xf3\x5e\x30\xe6\x22\xe1\x66\xb5\x83\x60\x07\x84\x76\x28\x48\xd3\x94\xf6\x50\x8d\x91\xda\xb7\x5d\xef\x82\xf5\xb0\x22\x08\xaa\x50\x90\x03\x39\x38\xb1\xdc\xa8\x48\xba\x69\x8c\x31\x76\x1d\x53\x74\x1d\x16\x1d\xb6\xd6\x01\xf6\x75\x30\x8e\x91\x08\xf1\xa5\xbe\xd9\x17\xc6\xd1\x05\x99\x1b\xa7\x02\xaa\xb9\x0e\x69\x6b\x62\x2a\x86\x8a\x96\x70\x2c\x9c\x9f\xce\xf0\x02\x5f\xad\xfe\xaa\xe8\x0c\xcd\x5b\xc3\xfc\x9c\x55\x41\x90\x9f\x9e\xd2\x1a\x9f\xea\xd3\x53\xc0\x66\xba\x3b\xc0\xdb\x8e\xe1\xb1\xc4\xa9\x9e\xd3\x12\x05\x97\x5e\xe8\x95\x4d\xe3\xb5\x1e\x63\x47\x14\x75\x37\x16\x00\xca\x9c\x4d\x4d\x23\x66\x85\x47\x33\x2e\x59\xc1\x54\x3f\xdf\x48\xfc\x7c\xaf\x3c\xd0\x52\xba\x57\x2d\x74\x11\xe3\x98\xa2\x45\xd3\x38\x70\x64\x6a\x83\xfc\xa3\x75\x2d\x91\x1a\xc4\xc8\xdf\xa3\xa1\x4e\x61\x94\x32\x08\xbc\x25\x1e\xd9\x18\x12\x93\x2a\x96\x72\x6a\xae\x35\x4a\x94\xbd\xe2\x37\x56\x19\x15\x89\xf1\xfc\x54\x24\x5e\x03\xfe\x32\xcd\x43\x13\x23\xdd\xdd\x45\xb6\xed\xe1\xdd\x09\x4e\xb9\xb1\x5e\x7b\xf2\xd0\xfa\x0d\xee\x7a\x91\xe2\x6d\x90\xb7\x11\x92\x3e\x4d\x7d\x13\xe7\xdc\xa7\xfe\x4a\x0a\x8e\x77\xb1\xb5\xa8\x28\xf4\x01\x69\x9c\x68\xd4\x00\x27\x90\xc9\xbc\xf2\x33\x0a\x25\x31\x1e\x11\xf5\xd7\x79\x51\xfe\x61\xc1\x5f\x91\xd5\xc2\x82\xfa\x4a\x52\x9f\xfa\xf6\xba\xc6\x61\x61\x5b\x2e\xcb\xa8\x60\xfe\x8e\x0b\xbc\x39\x8b\x56\xcc\x5c\x8c\x7b\x3c\x6d\xe2\x40\xf5\x2d\x71\x23\xdf\x0a\x7d\x87\x45\x37\x93\xfa\xea\xc7\xa3\x99\x55\x5b\xf7\xfe\x50\x73\x0d\x42\x77\x85\x80\x73\xe9\x65\x1b\x36\xaf\x8b\x93\x72\x0f\x96\x91\xba\x1a\xed\x0f\xa9\xef\x98\x75\x63\x47\xa6\x2a\x23\x41\x00\x3f\xf3\x02\xbd\x1f\xb3\xe1\xad\x6b\x9c\xd5\x41\x50\x8f\xdf\xa6\x31\xb7\x97\x0b\x74\x15\xda\x20\x71\x24\xe1\xc3\x3b\x3c\x84\x0d\x69\x6f\xc6\x2f\xcc\xc5\xa1\xa4\xbb\x45\x53\x98\xdb\x62\x49\x2c\xd2\x7c\xe2\x03\x14\xfa\x19\xb6\x8a\x96\x46\xa2\xab\x12\xaf\x39\xa1\x35\x86\x73\xed\x3a\x74\x00\xc4\xc1\x75\xfc\x20\xd2\x65\x3e\x50\xf3\xf8\x85\x60\xf4\x49\x07\xb0\x9c\x56\x24\xae\x0e\x07\x5a\xc0\xd1\x68\xa5\x7f\xd1\xae\xd8\x71\x56\x45\xb0\x4a\x74\x64\xae\xb9\x3b\xd7\x8f\xd0\x97\x3e\x7d\x9c\xcd\x2b\x3d\xad\x2c\x8f\xf2\xd5\x8a\xd6\x41\x80\x0f\xee\x2c\x0b\x06\x6b\x9f\xce\x7e\xe1\x59\xfa\x28\xb3\x68\x82\xaa\xf4\x11\xbe\x03\x9a\x20\x14\x56\x67\x9a\x65\x23\x01\x3d\xf5\x97\xe1\x64\x15\x49\x15\x8f\xef\xdf\x7e\x7e\x96\xb7\xfb\xfd\x40\x68\xd5\xce\x59\x41\xa8\xd6\xa4\xe9\x90\x06\x05\xa1\xc5\x81\x5e\xf7\x00\xb4\x33\x4c\xa0\xd6\x10\xeb\x38\x86\xa8\x13\x9e\x87\xd6\x6c\xe6\x31\x96\x37\xcd\x97\xc0\x26\xc7\xf0\x03\x18\x72\x2c\xe1\x71\x3f\x44\x64\xc9\xc6\x63\x08\xf4\xb4\x71\x22\xe5\x99\xbe\x95\xa3\x82\xa7\xe1\x15\x21\xe7\xb3\xe4\xb8\x97\x71\x41\x2b\x54\x79\xed\xdd\xeb\x8a\x31\xec\xc0\xe9\x69\xdd\x34\xfb\xde\x6d\x0c\x18\xb3\xeb\x80\x61\x57\xce\x67\x44\xdf\xc3\x87\x21\xc0\xf1\x34\xca\x31\x94\xa8\xfb\x5a\xf5\x5e\xe7\xb9\x71\x91\x96\x68\x26\xd2\x9f\x08\x48\xeb\xe6\xc2\x7d\xb3\xbb\x08\x56\xa3\xa2\x92\x98\x4d\xb4\x3f\xde\x44\x90\x43\x50\x45\xb0\xef\xed\xdd\x1d\xc3\x41\x40\x1d\x74\xef\xec\x11\x4d\xa2\x5a\xa7\x98\x23\xf9\x23\x1d\x84\x44\xa2\x6b\xf6\x6a\x3c\x28\x58\xb1\x0e\xd7\x03\x26\xa2\xf3\x1a\xa1\xbe\xf2\x09\x5d\xbb\x6c\xc8\xc9\xc9\x93\xb2\x10\x9f\xcf\xce\x9f\x20\x97\x78\xfe\xe4\xcc\xfc\x5a\xbe\xeb\x2c\xff\xea\x3c\x07\xce\x4b\x33\x2c\x68\x1d\xce\xbe\xb2\xec\xf8\x57\xc0\xc0\x08\xb6\xbe\xdf\x75\x04\x0f\xc8\xea\xde\x1c\xb9\xaf\x1d\xb7\xab\xa6\xf1\x2a\x1d\xd6\xb4\x69\x3c\x4b\x5a\x75\x5e\xb6\xf2\x78\xc0\x9a\x7e\xf7\x09\x6c\xf6\x9e\x55\xf4\x51\x4e\x23\x4c\x24\x18\x94\xf7\x9e\x8e\x18\x03\x6c\x0c\xfe\xaa\xfb\x11\x2d\xeb\x1a\xad\x81\x7c\x25\x77\xf1\x6c\x77\x33\xc7\x4b\x53\xe3\x92\xaf\xd5\xdc\xdc\xda\x18\x47\xdf\xf8\x3a\xea\xdf\x07\x67\xce\x99\x8f\x9c\xd5\xba\x53\x85\x53\xe0\xe9\x73\x38\xc8\x7e\xde\x16\x8a\xd7\xbb\x7c\xc9\xd9\x63\xd4\xba\x39\x1c\x9d\x95\x11\x52\x15\xa9\x0b\xb9\xba\x65\xde\x7d\xbd\xc5\xcf\xad\x01\x36\x55\xd1\x56\x5d\x96\x1f\x78\x55\xe4\x65\xf1\x3b\x67\xde\xbd\x05\x61\xb1\xdd\x72\x38\x52\x76\xa6\xe4\xee\xcc\xd8\x58\x0c\x58\x38\xcc\x00\x53\xa7\x50\xa8\xfc\x83\xac\x2e\xb1\x8d\x15\xf3\xcf\x72\x0c\xbf\x34\xca\x7e\x53\xd5\x5e\x6c\x79\xf6\xcb\x34\xfa\xa6\xad\x5d\x4f\xad\xf9\x06\xd9\x96\x75\x8d\x97\x8a\x30\xcf\x73\x26\x1e\x93\xe0\x2b\x00\xda\x3b\xc1\x3c\xcf\xd8\xae\x61\xc5\xea\x83\x15\xde\xd6\xad\x1c\x97\xaa\x88\x8b\x25\x82\xa7\xe7\x1d\x81\xc0\x5a\x56\x97\x3e\xb1\x39\xcc\x84\x7d\xf3\xac\x94\x82\x33\xff\x49\x2c\xf2\xab\xf3\x27\x67\xf8\x03\x2b\x77\x54\x5c\xe4\x57\x3e\x89\x96\x90\x1d\x39\x51\x6f\x4a\x22\xb9\x57\x7a\x17\xd1\xfb\x6e\xce\x05\x36\xe7\xf8\x52\x5b\x9d\xba\x2b\x6e\x78\x69\x45\x24\x3a\x49\xbb\xd6\xbc\xd0\x57\xfb\x00\x1b\xa6\x22\x21\xb1\x8b\xe8\x63\xa6\x53\x2a\x5e\x16\xb0\x43\xdf\xe2\xfd\xa2\x3f\x16\x9b\xad\xf9\x70\x21\x6f\x3e\x14\xbf\x17\x62\xf3\xa3\xc9\x01\xc9\x85\x15\xa9\xf7\xaa\x7b\x66\xd2\x8a\xc1\x88\x4c\x5e\x2a\x3b\x09\x3f\x16\x93\x3b\xf5\xbc\x4d\xa8\xdb\x8f\xe8\x06\x69\xfc\x81\xd6\xb8\xbe\xc6\x6c\x73\x47\xee\x8e\x46\x33\x3b\x14\xc7\xd3\x6a\x36\x1d\x2d\xee\x97\x7b\xc0\xdc\xee\xf6\x8a\xa1\xfc\xa3\x18\x17\x7a\x50\x03\x1b\xb0\xef\x8e\xea\x32\x1e\x14\x28\x49\xc4\xfa\xf0\xe9\xef\x36\x3f\xd6\xaa\x21\x6b\x58\xd2\x3a\x71\x68\xb4\x39\xfc\x2a\x3a\x8c\x9a\xb7\x23\xb3\xb2\xaf\xf6\x2a\x11\x42\xf3\x1e\x6e\x2a\xa0\x07\x36\xa1\x5d\x05\x33\xef\x06\xdc\x35\x54\xe6\xc3\xc5\xe9\xbd\xb5\xf6\x03\x6d\xe1\x75\xdf\x53\x31\x5c\x0f\xfd\x13\x97\x65\xb1\xfc\xdc\x73\x4c\x1c\xc2\xd7\xec\x00\xa7\xc3\xb0\xd9\x62\xf9\x39\x34\x46\x94\xcb\xbe\x14\x55\x47\x5f\x46\x91\xac\x5c\xee\xeb\x42\xa0\x44\x75\x70\xfe\xec\x99\x2f\x85\x3f\x59\xea\xa9\x52\xe9\x72\xe2\x7f\xb7\xbf\xb8\x28\x79\xed\x67\x6c\x6f\xee\x22\x5f\x3b\xd2\xb3\x74\x9f\x99\x4b\xcc\x25\x4a\x12\xe6\x6b\x83\x16\x80\x3f\xd8\x54\x72\x2f\x56\xcf\xca\x62\xc7\xfc\xa5\x56\x82\x9e\x5e\xc8\x1b\xff\xa8\xdf\xe3\x45\x00\x59\x2f\x4b\x9e\x57\x38\xec\x0f\x88\xfc\x7a\xf5\x20\x4a\x1e\x2b\xdb\x8e\xff\x64\x89\x06\xd0\xbd\x9b\x1b\xda\xbb\x79\x98\x3f\xc5\x5b\x86\xe8\x52\x0d\x69\x79\x73\x88\x33\x7b\x17\x70\x3c\x9d\xeb\x3b\x82\xe3\xe9\xfc\x42\x56\x2b\x5e\xc5\xd3\xb9\xb9\x45\x3b\xc6\xdb\xb3\xe7\x17\xf2\xe6\xb4\xc6\x3d\x1d\x3b\x7d\x9c\x9f\x5e\xca\xdf\x4f\xef\xfb\xa6\xfd\x63\xee\xfb\xec\x23\xac\x8e\x1f\x0d\xfa\x48\x49\xa7\xd9\x3c\x47\xcb\xba\x71\x0a\x83\x8a\xe1\xe9\xd8\x76\x1e\x45\xab\xf1\x74\x6e\xae\x4a\x9e\xce\x77\x06\xbd\xc5\xf9\x45\x2d\xcb\xbd\xe2\x73\x38\x49\xa7\x73\x38\x41\xe3\xd3\x6f\xbf\xfd\xf6\xdb\xdd\x8d\x99\x84\x53\x73\xc6\xfa\x83\xfd\x22\x48\xef\x75\x3d\x20\x5f\x2c\xd5\xa2\xaa\xf3\x27\x6a\x05\xd4\xcb\x0a\x1f\x94\x7e\x3a\x83\x74\x43\xd1\xf8\x5f\x38\xfc\xd5\x0a\x36\x38\x9a\x07\xf6\xc7\xf6\x67\xd6\x0a\x2f\x57\xa7\x25\x43\xcb\x28\xa8\x43\xae\xd7\x35\x57\xaf\x71\x16\xdc\x5a\xdb\x2b\xd2\x7d\x5a\xa0\x39\x67\x3f\x55\xd7\xd3\x61\xf8\xd7\xe8\xf3\xf5\x0e\x2b\xab\x59\x69\x4c\xaf\x8e\x1a\xe8\xcd\x07\xec\x83\xa3\xe5\x69\x21\x41\x77\x7d\x14\x86\xdc\x4f\xc7\x20\xe4\x7c\xb5\x33\x02\xf4\x90\x99\x0a\x78\xec\x03\xae\x86\x84\xaf\x07\xab\xfb\x5f\xf7\x00\xc4\xec\xbf\xe6\xfa\x16\xf8\xeb\x7c\x17\xe6\xe6\x86\x87\xdc\x8c\xe3\x77\x29\x2f\x93\x3b\xf8\x1f\xcf\x0e\x68\x5d\xec\xe2\xaf\xf6\xd0\x63\x5f\xe3\xce\xd5\x33\xf3\x33\x34\x0f\xcc\x28\x2c\xf7\x33\x79\xb9\xdb\x2b\xbe\xc2\xcd\x1e\x04\xe1\xf0\xe8\xf5\x67\xff\x05\x5b\x36\x3c\xce\x1c\xae\xb1\x2f\xa4\x69\xee\x0e\x24\x52\x72\x37\x7a\xca\xfa\x5f\xef\x10\x6d\x7c\xb9\x02\x3d\x23\x98\xf7\x40\xf4\x4d\xdf\x48\x15\x7f\x91\x6e\xd5\x7a\x92\x23\x7a\x74\xb8\xc4\xb2\xcd\x71\xe9\x10\x05\x36\x4d\xdf\x2a\xee\x4f\x3b\xd0\x30\x29\xb8\xdb\xee\x21\x28\x9c\xbb\xde\xc6\xc6\x55\xb9\x13\xe3\x34\x0a\x64\xa2\x96\x53\xaf\x9d\xe5\xd3\x06\x9f\xe1\x1f\x00\xaa\x9c\xe8\x9b\xdd\x11\x9c\x5c\x28\xb3\xa0\xa5\x69\xac\xb9\x06\x05\xff\x7e\xa2\xeb\xf1\x10\x12\xda\xa6\xda\xad\x86\x50\xea\x0f\x50\x09\xba\xa3\x1b\xef\xf3\x1e\x59\xde\x9b\xb5\x6f\xf4\xac\x1d\x11\x75\x8f\xbd\x61\xab\xf7\x75\x10\x03\x4f\x76\xb3\xc3\x66\x04\x88\x04\x37\x0e\xb3\x00\x2e\x76\xcd\x0a\x56\xe9\x6b\x31\x0e\xf0\x2e\x59\xce\x6a\x56\xb1\x82\x69\xa7\xa0\x43\x78\x77\xd0\x12\xff\x17\xfa\x7a\xf0\xc5\x5d\xba\xa8\x17\x1f\xb2\x87\x8b\x43\xb3\x48\xed\x73\x46\x1e\x9c\xd1\x0f\x90\x23\x7d\x7a\xfa\xaf\x8c\x9c\x6d\xe6\x8e\x74\x10\xed\xfb\x61\x57\x09\xf9\x3c\x57\x79\x8c\x81\x27\x50\x33\x4a\xf9\xe5\x05\x47\xd5\xaa\x8e\x3c\x1e\xfb\xcb\xb2\x2e\x56\xf1\xf3\x47\xff\xeb\xd9\xf3\xef\xfe\xf2\xe2\xf4\xe9\x8b\xbf\x3c\x3f\x9d\xcd\x96\xeb\xd3\x6f\xff\xf2\xdd\x7f\x9f\x7e\xfd\xf5\xd7\xdf\x7c\xf3\xf8\x9b\xaf\xa7\xd3\xe9\xd4\x47\xd1\x31\x56\x38\x6a\xda\xe2\x38\x20\x2e\x95\x8e\xa5\x9d\xf2\x54\x2b\x5e\xe0\xd8\xcf\xb2\xb8\xf7\x4a\x3d\x8f\x07\x81\x57\xa3\xf9\xc3\xaa\x5f\x6d\x4f\xb1\x55\x98\x77\x2b\x49\x7f\x3e\xcc\xdb\x33\x53\x53\xe4\x40\x3f\xfd\x89\xea\x28\xde\x4e\xf9\xe9\x4f\x55\xa9\xf3\xe6\xcb\x25\xdf\xa9\xa3\x09\x68\x8d\x45\x4c\x9c\x6b\xaf\x1f\xf7\xfa\x5b\x6f\xdc\x50\x64\x68\x80\x81\x72\x0b\xbd\x60\xe9\x7d\xda\x3b\x6b\xfb\xed\xa9\xa6\x51\xe6\xa6\xcb\x51\x93\x6b\xc7\xb9\x9f\xba\x57\xc2\x86\x77\xc3\x99\x71\x6f\xcc\xd1\x30\xa8\x63\xaf\x9a\xbb\xa0\xad\x83\x9f\x71\xd2\xec\x22\x68\x61\x28\xd4\xa5\x8a\xa0\xbe\x70\x4f\x30\xa2\xfd\xde\x19\xb6\xb7\x54\xd1\x27\xfd\x91\xea\x6b\xd4\x56\xd0\xc9\xda\x27\xc4\x86\x7f\xdc\x3b\xe4\xe1\xbc\x7e\x52\xb5\x66\x7d\x78\xab\x50\x95\xd6\x59\x04\xe4\x38\xc5\x13\xb2\x73\x08\x80\x4a\x4f\x7d\x0c\xf4\xcc\x10\xd0\xcc\x1d\x68\x61\x61\x64\xf4\xdf\xc0\xd6\x0b\xf7\x30\x22\x0c\x50\x3d\xbf\xaf\x2b\xb8\xac\xad\x62\xdd\xd8\xa9\x1c\x5d\x64\xa9\x6f\x89\x46\xd9\xa4\x73\x4a\xd9\xa1\xeb\x2b\x98\xc9\x81\xc4\x23\x62\xb1\x3f\x51\x12\x6f\xbc\x89\xf7\x09\x74\x8e\xd3\x76\x42\x29\x27\x46\xcd\x39\x0e\xf4\x83\x0b\x94\x8f\x9b\xe8\x4a\x75\x5d\x34\xd0\x60\x41\xe1\xb7\x3d\xdf\xf3\x7b\x6e\xe7\x6a\x95\x42\xa1\x62\x18\xaf\x76\x7d\xe3\x93\x89\x8f\x45\x7c\x8a\xaa\x28\x3d\xa5\x68\x67\x2a\x82\x00\xdd\x87\x9d\xfb\x72\x05\x49\xfa\xb9\xfa\x17\x7c\x0b\x42\xe2\x36\xd6\x01\x31\xb7\xe1\xb4\x11\x06\x56\xfc\xb8\x6f\xe4\x0e\x15\x33\xd0\x11\x73\xf3\xcb\x12\xe3\x0d\xec\xb9\xee\x43\xef\xee\x2e\xd1\x45\xcd\xc6\x4e\x60\xbe\xd7\x52\x7e\xae\xad\x61\xec\x60\x41\x78\x57\xd3\x61\x0e\x1c\xac\x55\x63\x30\xd4\xfe\x85\x6e\x95\xd5\xe9\x29\x5e\x22\x19\x42\x5f\xb4\x6d\x94\x68\x5d\x4a\xdd\xb2\x84\x1a\x3e\x5a\xa2\xd2\x94\xda\x9b\x8b\x68\x4e\x25\x21\xd4\xab\x82\x00\xaf\x81\x47\x9d\x1a\x0a\x8d\x43\x40\x49\x5d\x67\xc7\x42\x4e\x30\x65\x96\x01\x73\xf8\x8e\x0a\xc3\x4e\xb5\x20\xb8\x12\xed\x2b\xbd\xd3\x4a\xbb\x2f\x68\x73\x86\x02\x74\x28\xee\x40\x10\xa7\xb6\x51\x1f\x21\xa8\xff\x4d\xe8\x10\xf0\x47\xa8\xe6\x68\x0d\xdb\xc0\x4e\x8f\x06\x77\x73\x75\xf7\xa1\x20\x8f\xc2\x29\x67\x30\xb7\x7a\xa6\x87\xfb\xea\x49\x95\xb4\x2b\x6f\xb0\x14\xe5\xc4\x38\x16\x43\x42\x3c\xba\x27\xda\x5b\xda\xbb\x92\xfa\x9a\xb9\x01\x7c\x98\xdd\x42\xcd\xe2\xf2\x20\x70\x97\xd4\x63\x4c\xa5\x53\x2d\x64\xb6\x40\xd3\xed\xaf\x11\xc0\xfd\xc3\x8d\x3a\x5a\x4b\x79\x74\x59\x5f\x7b\xcc\xc2\x1c\xdf\x24\xf8\x3f\xaa\x77\x40\x80\xa0\xe5\x00\x8f\x39\x6d\x37\x88\xbe\x64\xdf\xd4\x3b\xa2\x21\xaf\x98\x73\x4d\x91\xa2\x1c\x23\x54\x28\xb9\xeb\xed\x0a\x60\xa8\x6d\x9e\x0a\x96\xf7\x40\x31\xed\x6f\x5f\x1c\xa1\xd9\x47\xa6\x1f\x78\xef\xfa\xb1\xa6\xc8\xf5\x36\x9f\xe9\x2d\xea\xe8\x24\x72\xad\x6b\xa8\x7b\x57\xbf\xef\xdd\xbe\x9d\x9e\x16\x4d\x23\x7b\xc2\xf7\x9c\xa2\xf5\xba\xbe\xa9\xfc\x7e\xb0\x52\x68\xee\x6c\xd0\x48\xad\x6d\xe2\xdb\xbd\x92\xa7\x75\x46\x79\x6f\x7b\x11\x8a\x37\x86\xe2\x06\x02\x34\x30\x99\x50\xf3\x86\x5b\x66\xdf\xd9\xb2\xef\x75\x88\x7e\x23\xfc\x17\x30\x61\x88\xa7\x9e\x2a\xfa\xab\xa2\xcf\x15\x3b\x4b\x17\x6a\x51\x2d\xc4\x62\x9d\x9d\x6d\xe8\x1b\xc5\xce\x16\xd5\xd9\x86\xbe\xfe\x13\x91\xd7\x1a\x7d\x28\x61\x00\xb6\xdf\x4c\xfe\xbc\x81\x0c\x98\xf4\xc9\x24\x0d\xc3\x54\xe2\xc7\xb7\x08\xf4\xf6\xb6\xe1\x81\x4c\x9b\xbe\xeb\x7d\xc5\x3e\xcc\xfb\xbb\x18\xce\xe8\x71\x58\xec\x2e\x8f\xc3\xf5\x82\x57\xa5\x2a\x0a\xb8\xfe\xf8\x2c\x6c\xa9\xb7\xa7\xfd\xfa\xfe\xe4\x41\x06\xa5\xdc\x2d\xb2\xab\xe4\xee\xcf\xf6\x0a\xf2\xfe\x51\xaf\xde\xf7\xeb\xeb\xef\x37\xa8\xe0\x65\x71\xa3\xf7\x19\x1d\xed\xa8\xaa\x6e\xef\x10\x19\xf1\x8c\x29\x8b\xf6\x4d\x42\x77\x85\x0b\x6e\xa2\x7c\xb5\xc2\xb0\x3a\xf7\xa9\xfd\xf0\x62\xb9\xe9\x11\xf8\x1f\x1b\x0d\x05\x01\xfa\x2a\x0f\xef\x2e\x24\xf7\x4f\x28\x1a\xce\xe0\xbc\x20\xc6\xc7\x6e\x84\x46\x23\x89\xb3\xa5\xcd\x32\x3a\x0d\x07\x21\x07\xd4\x3e\xed\x8d\x4e\xce\xf8\x14\xe8\xc0\x02\xe1\x4e\x07\xe9\x9d\xd7\xe7\xf9\x3c\xb7\xb1\xc3\x71\xd0\x79\x46\x2b\x36\x8c\x6d\x14\x8a\xae\x62\xed\x2c\xe7\x24\x68\xb7\x39\xeb\x86\xf0\x5c\xdf\xa8\x11\xc3\x3f\x4d\x2e\xe2\x25\x9c\x4c\xe9\xcb\x33\x89\xe3\x1f\x7a\xe2\x4f\x0a\x2c\xfc\x64\x1a\x04\x61\x35\x61\xfa\x6d\xee\xd4\xdd\xde\xaf\x5c\x8d\x5a\xe6\xfc\x7f\x59\x0d\xa0\x49\x87\xe0\xd4\xdd\xef\xf5\x7f\x6b\x8d\x9c\xfe\xfd\xbf\xbd\x4c\xe3\xab\xa4\x3d\xf4\x47\x96\x0a\xad\x90\x2b\x56\x75\x71\x44\xed\x27\x7a\xb4\x76\xc8\x4d\x9a\xd5\x8b\x7d\xbf\xbf\x80\x4a\x6e\x36\xe5\xd1\x02\x3a\xb4\x92\x59\x06\x4b\x6f\x8c\x5d\x3c\xde\x2d\x1a\x13\x89\xa6\x20\x9c\xcd\xa1\xcd\x22\xfa\x2b\x41\x1c\x0a\xe3\xe8\xe6\xd0\xbe\xfd\x88\x59\x48\xa7\x9f\xbd\x85\x14\x83\x85\xa4\x18\xf9\xfa\x30\xb0\x86\x73\x7b\x48\xba\x6b\x09\x74\xe0\x02\xdb\x06\x06\x6d\xe9\x2f\xb8\x62\xd2\x44\x84\x2c\xa2\x6d\x5e\xeb\xe6\x15\x49\x8a\xde\x70\x14\x89\x8b\x6e\xc0\x4a\x5f\xcf\x88\x57\x29\xfd\xb3\x69\x9c\x19\xc3\x2b\x88\xc2\x7e\x7f\x91\x0e\xfa\xd4\xb1\x33\xfe\xa7\x4f\xed\xb7\x4f\x9f\xfc\x21\x98\x0e\xde\x59\xff\xb5\x69\x38\xaa\x06\x12\xdf\x8f\xbf\x58\x6d\xe7\x4f\x6c\x47\x75\xe4\xe2\xa1\xa9\x3d\x74\xda\x47\xb0\x12\x6c\x4a\xab\x5e\x04\x68\xe7\xca\x60\x74\x1e\x82\xfd\x20\x32\x77\x1f\x40\x69\x9b\xfc\xe5\x0d\xd0\x82\xb8\x02\xd0\x1e\x8b\x55\xd4\xbb\xfa\x9b\xf7\x75\x07\x96\xd5\xc6\x50\xfa\x03\x9c\x42\xda\x98\x21\x43\x40\x1b\x3b\x87\x0c\x59\x25\xe7\x76\x44\xee\x70\x24\x9a\x3f\xba\xb0\xd7\x82\xe7\x55\x5e\x86\x84\xc4\xda\xcf\x8e\x31\x99\x48\xe6\xfb\xf1\xd1\x85\xc7\x32\x41\x57\xeb\xd8\x61\xf3\x24\xb1\x82\x80\xcb\x7c\x17\xca\x31\x07\x73\xe7\x82\x6a\x3e\xc1\x0b\x18\x34\xff\x78\x95\x97\x48\x63\xa5\xd8\x51\x0c\xb8\x8e\x7c\x4b\x3f\xfd\x1e\x41\x08\x90\x65\x7e\xcd\x95\x5f\x98\x3b\xdd\x6b\xae\x07\x43\x25\xb5\x0a\x44\x0f\x63\x26\x69\x88\xd5\x9a\x44\x69\x11\xa5\x6c\x63\xd2\xf4\x7a\x22\xc7\xba\x21\xbf\xd8\x87\x4d\xdb\x07\x0c\x5b\xb0\xe1\x2a\xec\x7a\x80\x5d\x48\x44\x1c\x0a\x26\x8d\x3a\xf2\xf8\x3a\xe2\x44\xb4\xe0\xf4\x06\x6f\xec\x8e\xf5\x8c\x09\x98\x31\xa0\x23\xfb\x5c\xbb\xed\x57\x7c\xa7\x0d\x20\xe2\xbb\x9e\x73\x1b\x77\x38\x1d\x8c\x16\x88\x2e\xf4\xbc\xed\x52\xff\xa6\x6f\x95\xa8\x58\x87\x29\x39\x58\x17\xac\xe3\xfa\x7a\x17\xa1\x30\x1e\xe9\x76\x6b\x0c\x9a\xd2\xf7\xbf\x92\xcc\xd8\x6f\x9c\x4a\xc1\x5d\x47\xa1\xe9\x79\x41\x73\x26\x75\x54\x88\x54\xdf\x8a\x52\x4c\x66\x71\xe5\x9c\xa8\xe7\x45\x52\xc7\x32\x29\xe2\xe9\xbc\x36\xf7\xfe\xe2\x49\xa5\xef\x24\x0e\x3d\xd1\x36\x16\x04\x7b\x0f\xe3\xa2\x84\x0e\xed\xea\xa8\xb3\x13\xd1\x6a\xb3\x63\x3d\x4e\x6d\xd0\x3d\x6a\xc3\x8e\x0e\x92\x8e\x47\x99\xfd\x62\xe4\x71\x7a\xe5\xc3\x5e\x00\x2c\x5f\xee\xd4\xa6\x92\xfb\x9d\x6f\x02\xf9\xc3\x6c\x87\xc2\xec\x23\x2a\x3b\x03\x97\xdc\xda\x89\xda\x63\x2b\x87\x69\x56\xf7\x45\xf5\x35\xf7\xcc\xd8\x09\x36\xfb\xca\xca\x4c\x46\x1d\x7a\x0b\x38\xc4\xc3\xaa\x73\x7c\x73\xac\x78\x97\xc0\xb8\xb5\x9d\x02\xcc\x84\x50\xea\x4d\x3b\x28\x68\x9a\x70\xb0\x88\xec\x74\x46\xa8\x3c\x1c\x0e\x74\x48\xf9\x0f\xee\x3e\xee\x47\xcc\xe1\x41\xf0\xd8\x63\x2c\x0f\x82\xff\xd6\x3f\x8f\x3c\x27\x6c\xd7\x68\xc8\x08\x38\x61\x12\x43\x5e\xdb\x2b\x69\x10\x17\xe7\xc6\x86\x4b\x9b\xdd\x87\x9c\x34\x4d\x78\xec\x26\x8a\x28\x11\x63\xd4\xe0\x36\x15\x99\x86\x07\x34\xf3\xc7\x73\x30\x82\xb3\x4b\x5b\xa8\x08\x92\xfc\xaa\xe2\xa7\x0a\x71\x0f\xec\xc9\xa2\xdb\xba\x45\x10\x18\x20\x01\x14\x89\x3b\x18\x18\x54\x92\xc8\x58\x63\x36\x77\x1b\x09\xd2\xe2\x48\x15\x4b\x62\xc1\xab\xc2\x0a\xeb\xb6\x42\xac\xa9\xc6\x9a\x2a\xa8\x0b\xf1\x80\x8c\x71\xae\xdd\x18\x4f\xb4\x9a\xf8\xc0\x63\x1a\xd1\x57\x9f\xdd\xc1\x5e\xdc\xc3\x36\x51\xd7\x88\x4c\x87\x1f\x0d\x02\xd5\x9d\xff\x88\xe4\x86\x97\x30\x92\x41\xf0\xd1\xca\x65\x6e\x60\xfe\x5a\x47\x8a\xb1\x09\x7c\xa7\x82\xe0\xad\x6a\x1a\xef\x93\x6a\xd3\xb4\xfb\xf8\x4c\x0b\xf6\x3b\x49\xac\x6f\x9c\x4b\x4e\xfd\x89\x20\x19\xb3\xb9\xcc\x7a\xe1\x5a\xeb\x80\x96\xc3\x1b\x3e\xdf\x02\xb6\xac\x88\x86\x3d\x83\xe6\xf0\x9e\xbb\xbb\xe3\x5d\x63\x2e\x68\xb6\xfb\xbf\x33\x00\x09\x02\x63\x17\xa2\x65\x73\xee\x36\xe6\xd4\x5a\xa7\x74\x3e\xc0\xbd\xab\xea\xf8\xa8\x9d\x89\x11\x71\x9a\xbc\x4c\x10\xaa\x0e\x87\x83\xe6\x42\x5f\x16\x37\xf1\x9d\xbf\x96\x95\x1f\xfb\x5b\x75\x59\xbe\x94\x95\x4f\x4d\xe0\x93\xd8\x31\xd3\x3b\xe6\x59\x87\x97\xb5\x8c\xef\xa8\x5a\xef\xa8\x5a\xef\x28\x7b\x15\xf0\x49\x8e\x96\x9f\x75\xd3\x78\xfd\xad\x42\xb5\x9a\xff\x68\x61\xa5\x4d\xb2\xbb\x85\xd0\x4a\x43\x65\x07\xb8\x12\x05\x9d\xf2\x08\x70\x8b\x58\x5f\x7c\x1a\xcb\x6e\xd7\xc8\x6e\xd7\x40\x91\x6e\xd7\xe8\xcc\x7a\xb4\x76\x05\x8d\xbb\xf2\x9f\x3d\xaa\x54\x7e\x81\x04\x55\x77\x5a\xa9\x04\xe5\xf6\xdf\x0b\x15\x2a\x3a\x9b\x92\xf8\xf5\xb1\x9b\x6b\xd3\xfc\x76\x9c\x18\x04\xda\x6d\x3a\x99\xc6\x18\x0a\xfd\x40\xe8\xaf\x8a\x1d\x41\x93\xa3\x1e\x52\x9a\x06\x3d\xde\x8a\xf1\xe8\x06\xe8\xc3\x8b\xf7\x56\x03\x5c\x7f\xee\x05\xf9\xc3\x0d\x22\xf0\xa6\x58\x71\xe8\xae\x01\x1f\xd9\x89\xfa\x6a\x54\xb3\xc9\xcf\x16\xd7\x93\xb3\x4d\xef\x8e\xef\x56\xba\x67\xcb\xba\x21\xec\x34\x55\xd3\xce\xf3\x7c\x34\x0f\x1b\x1b\x63\x0f\x64\xdb\xe0\x33\xa3\xe5\xe1\x80\x4a\x54\x1c\x8e\x57\xae\x88\xa7\xa3\x39\xd0\x82\x24\x62\xc4\xa7\xcb\x11\x66\x8f\x14\x97\x34\x3f\x1c\xed\x1f\x4b\xc7\x01\x21\xf3\xa5\x39\x1e\x6d\x0f\xc0\xc1\x8e\x38\x74\x4f\x13\xb3\xd1\xbf\x04\x27\xe3\x68\x05\x5d\xdd\xc2\xbe\x77\x1d\x53\x24\x7e\xaa\x82\xe0\xa9\x32\x3b\x0b\x95\x99\x07\x42\xb1\xd9\xa7\xc7\xe0\xd8\x21\x86\x31\x7f\xb9\xce\xe3\xb6\x68\x9a\x3e\xfc\xe1\x77\xa4\x20\x7a\xd7\x70\x6b\x03\x84\x0e\x4a\xf1\x1a\x33\x8b\xcb\x74\xf0\x24\x4d\x1d\xea\x70\x29\x82\x1d\xf9\xfc\x55\x24\x11\xb1\x32\xd0\xd9\x5f\x99\xa8\x58\x8d\xc0\x02\x6a\xee\xc6\xd2\x97\x52\x56\xab\xfa\xc8\xea\x1c\x47\x3b\x77\x16\xf3\x0b\xb1\x0f\x7d\x74\xc9\xd2\xfd\xef\x05\x3f\xc4\xee\x59\xfa\x38\xd2\xa2\x53\x36\xc0\x39\xdd\x26\x19\xad\xbe\xed\xc2\xb8\x4b\xa2\xd2\xe4\x9b\x5e\xc9\x03\xed\x81\x8c\xb1\xc8\xe2\xab\x42\xbb\xe6\x8e\x02\x4f\x0b\x03\xbe\x0e\x08\xe5\xcd\x62\x0d\x0d\xed\xbe\x4f\x7d\xe3\xcc\xea\x6b\x8b\x2b\x3f\x1b\xb8\x84\xf5\xa8\x1e\x95\x1d\x43\x8f\x05\x51\x5f\x8b\x34\x86\x44\x87\xa2\x7e\xbe\x57\xd2\x27\x80\x97\x8c\xc6\xed\x00\x5c\x99\x73\x98\xf6\x8d\x82\x11\x73\x98\xce\xa1\x21\x30\xf5\xeb\x6a\x39\xd6\xb1\xee\x80\x81\x8e\x0d\xb1\x7d\x7b\xc6\x0e\xbc\x70\xbf\x6e\x99\x1c\xdb\xbe\x31\x19\xef\xef\x49\x6d\xd5\x7c\x7f\xad\x3d\xcb\x93\xa6\x51\x63\xa4\xf6\x78\x66\xa6\x26\xbe\xff\x1f\x83\x3e\x38\x06\xc9\xba\x27\xed\xe0\x3a\x62\xfb\x9e\x03\x8d\x8f\xc4\x59\x56\x68\xa5\xd4\xe7\x97\xbe\x70\x83\x77\x2f\xa3\x26\x3a\x2d\x23\xa8\x17\xc2\x1e\xaa\x3e\xf5\x2b\x9e\xaf\xde\x89\xf2\xd6\xa7\xfe\x65\x7e\xa3\x03\x3b\x02\x0d\xc2\xcb\xf2\xc3\x2e\x5f\xa2\xa3\x15\xbe\xbd\xd7\x06\x38\x50\x44\x5e\x7f\xd8\xe5\x02\xd2\x65\x69\x9e\xf6\x35\x7f\x9b\xef\x7c\xea\xaf\xab\xfc\x92\x7f\x87\x66\x60\x98\x01\xe1\xfa\x85\x81\x6b\x77\xd9\xdb\x35\x87\xb3\x4e\xb3\xf1\x3d\x0e\x19\x65\x10\xfd\x59\x35\xb6\xda\xdd\x8c\xbe\x2c\x6e\x5a\x13\x6f\x9f\x8b\xa5\xc4\x1e\xba\x23\xd5\xc4\x1c\xf5\xad\x7b\xc2\x51\x0f\x7a\x12\x83\xe3\x0d\xd1\xd3\x0d\x58\xc1\x85\x82\xb3\xdb\x9a\x51\xf7\x79\x26\x6e\x79\x26\x94\xe6\xb4\x5b\xc4\x1d\x85\x31\x60\xd7\xa3\xe8\x37\x0f\xc0\xcd\xee\x15\x83\x1c\x39\x53\x1b\xb6\x3c\xf1\xa5\xf0\x63\x43\x60\x1e\x88\xd1\x1d\xbd\xfc\x92\x6e\x08\xb5\x3b\xdf\x41\x8e\xcf\xfc\xf6\x8c\xbe\x37\x79\x2f\xe5\xbe\xe6\x78\x0f\x19\xbf\x51\x97\x5c\xec\x49\x83\xd6\xbe\x67\xf4\x47\x93\xc3\x98\xf5\xea\x9b\xcb\xf0\xbf\xdc\xab\x8b\x72\x5f\x91\x07\x67\xf4\x67\xcc\x94\xfe\x12\x65\x0f\xf1\x42\xa2\x28\x8c\x26\xa4\x21\x0f\xce\x90\x60\x40\x8b\xe2\xbb\x4d\x29\x2f\xf2\x32\xbe\x43\x5d\xc6\xe0\xe0\xd2\x71\x96\xd0\x69\xab\xf3\x6b\xb1\xd1\xe1\xe8\x25\xbd\x75\x8c\x02\x90\x4b\xb9\x35\xe6\x20\xd1\x16\x0f\x88\x0a\x83\x8f\x55\xb4\x62\xa5\x4d\xa1\x92\x95\xad\x5f\x37\xa1\x55\xb4\xd9\x17\xb0\x25\xf5\x03\xd4\x07\xbf\x93\x09\xa1\x61\xcd\x6e\x75\x27\x6b\xe0\x19\xbb\x37\x7d\xb7\xf2\x9a\xdd\x9a\x3a\xe1\x6b\xf7\x36\xb6\x5c\x86\x63\x5d\x2a\x2d\x07\xd5\x92\x4e\xac\x2c\x52\x55\xb1\xd9\xf0\x0a\x83\xcc\x68\x01\x47\xa2\xe2\xf6\xeb\xaa\xa8\x77\x48\xb2\x69\xff\xbe\x75\xc4\x4b\x7e\xe9\xf8\x8c\x1d\xa8\x4e\x62\x9c\x50\xc1\x42\x71\x2c\xa9\xf7\xfd\x8c\xee\x5b\x6b\x86\xf9\x1e\x18\xfd\x9c\xfd\x6c\x2e\x28\x17\xe9\x3e\xd3\xfe\x37\x5b\x76\xc9\xf2\x74\x96\xd1\x0d\x0b\xf3\xf4\x91\x09\x65\x6a\xe2\x41\x44\x36\x20\x04\xa1\xdb\x20\x08\x97\xac\xed\x20\x9e\x6a\x79\x99\x6e\xb3\xa6\xb9\x3b\xd0\x2d\x0b\x65\xb2\x44\xc3\xfe\x4d\xae\x90\xfb\x88\x97\x11\x10\xe0\x26\x02\xdb\x96\xde\x5f\x78\xc7\x1c\xc9\x14\x32\x6a\x5b\x2a\xab\x62\x83\xb5\x5c\x6a\xab\xae\x82\x9a\x75\x8c\x2b\x0a\x0b\x15\xeb\x75\xa3\x76\x45\x63\xd9\xbf\x43\x4b\xea\xa9\xee\x68\xdf\xe3\x8b\x1c\x25\xa1\x40\x5f\xa0\xc3\x4d\xbc\x31\x01\x2f\x22\x9f\x1c\x68\x49\x68\xb8\x62\x75\xba\x85\x39\x32\x4f\x78\x13\x73\x3b\xc0\x67\x72\x2f\x14\x9b\xd2\x25\x9c\x8a\xfb\x5d\x10\x98\x87\x36\x2e\x1a\xdd\xd0\x35\xf0\x3d\xde\x0c\x85\x23\xf9\x6a\x85\x86\xf4\x6f\x8a\x5a\x71\xc1\xab\xe4\x38\x29\xdc\xd2\x35\xf5\x66\x24\xe6\x7d\x6b\x7d\x3e\x34\xd6\xf7\x27\x5b\xba\x26\x70\xd4\x42\x1d\xb0\x2c\xf0\x6b\x5b\xde\x11\xba\xb3\x30\x6f\x61\xbc\x9f\xc0\xf4\x0f\x21\x54\x26\x2b\xeb\xf5\x3d\x18\xda\x64\x42\xa7\x74\x47\xe2\x95\x16\x3d\xed\x34\x26\xc5\xc5\xd3\xfb\x16\x66\xc4\x9b\x92\xb9\x71\xea\x3c\xf6\x4f\x1f\xc6\x99\xa4\xa3\x3b\x19\x56\xde\xd8\x03\x86\xc0\x67\x0d\xb6\xf5\x25\x02\xdd\xa5\xdd\x8d\x26\x22\x8a\xb6\x25\x1a\x81\xf7\xb2\x8b\x8f\x52\x9a\xdb\xc4\xeb\x16\xe4\x55\x5a\x1a\x90\x5f\xb1\x0d\xab\x01\xe4\xb7\x2c\xac\xbf\x00\xf2\x2b\x1b\x17\xf2\x08\x70\x57\x1a\x70\x57\x2c\xac\x92\x75\x1f\xea\xd7\x2e\xd4\xaf\x00\xb6\x31\x37\x8a\x2b\x6b\x0c\x05\x3c\x08\xb6\xba\x58\x44\xc4\x9f\x6c\x0d\xfc\x2d\x16\x51\x98\xc4\xd1\xc3\xc5\x22\x6a\x88\x4f\x26\x7e\x08\x4f\x0f\x88\x4f\xe8\x9e\x49\xb6\x6b\xef\x73\xd5\xfb\x79\x97\xca\x8c\x7a\x45\x10\x6c\x3c\xc6\xf2\xc8\xee\x9a\xa6\xc1\x20\x04\xb0\xcc\x98\xae\xe1\xa0\x0e\x02\xaf\xd6\xb0\x9f\x47\x2d\xe8\x93\xa6\x01\x3a\x15\xf3\xd9\xdd\x14\x04\xa1\xff\xf0\xa1\xaf\x6f\x49\xf3\xba\x74\x82\xc0\x64\x40\x46\xd2\x19\xa1\x6e\x99\x5d\x1f\x86\x4e\x4f\xe9\xda\xb0\xbf\x41\x60\x9f\x5a\xe3\x25\x42\xe6\xfb\x20\xf0\x76\x9d\x25\xe0\x3a\x52\x3c\xaf\x56\xf2\x5a\x40\x76\xfb\x6c\x0b\x6c\xe9\xa5\x45\xbb\x66\x5b\xb5\xcc\xb5\xde\x19\x9c\xae\xba\x2c\x56\x79\x0e\x93\x4f\xba\x00\xd7\x2b\x74\xd2\x20\xed\x7a\xea\xf2\x50\x74\x02\xe0\x81\x00\x0b\x50\x8d\x47\xfc\x8b\xcb\x9d\xba\x7d\x87\x36\x13\xe1\x92\x04\x81\xbd\xdf\xc8\x36\x72\x6c\xc3\xe4\x6b\x38\xf5\x31\x3e\xb0\x41\xf0\xdd\x8e\xf8\xd2\xb9\xc6\xd2\xa2\x69\x5e\x01\x44\xee\x8d\x13\xac\x30\x61\x65\x90\xc7\x05\xc0\x12\x74\xe3\x7e\x6c\xd7\x0f\x73\xb4\x6f\x0e\x18\xc7\x29\x1a\x5e\xee\xd1\x5c\x18\xaa\xa7\x8f\x91\xe5\xe9\xb4\x39\xff\x3d\x78\xf7\x7e\x34\xa8\x71\x3b\x39\x3e\xa7\x60\x06\xb6\x9d\x1a\x36\x42\x05\x6c\x10\x84\x1b\xb6\x75\x1a\xa5\x5b\xb6\x69\x6d\xdc\x36\x66\x27\x11\x5a\x33\xa7\x68\xac\xd5\xec\x06\x95\x09\x26\x5c\x83\xde\x44\xe0\xfd\x87\x4b\x15\xe9\x65\xdd\xd2\x23\x63\x4a\x80\x6d\x42\x45\x54\xd4\x1f\x75\xe7\x98\x4c\x1e\xc5\x8f\xa9\x33\x0d\xcc\xc1\xe7\x6e\xfa\xa7\x8a\x33\xe7\x35\x19\xdd\x8b\x9b\x3f\xdc\x8b\xb1\xbe\x81\x21\xaa\x78\xbd\x2f\x15\x53\x54\x44\x3a\x3e\x60\xd3\x84\xf6\x91\x15\x68\x4e\x88\x04\x5b\x85\x57\x71\xf5\xe4\xf0\x15\x45\xf1\xd9\xfd\xa7\xa2\x6c\x1a\x6f\x69\xa7\xbf\x69\xda\x47\x43\x12\x14\xb4\xd2\x1b\x41\x2b\x0f\x3c\x0c\x3c\x11\x09\xa9\x1d\xa8\xb4\xe9\x6c\x51\xff\x5c\x88\x95\xbc\x0e\x0b\x62\x6f\xdb\xef\x9f\xd1\x70\x2e\xdb\x35\x2f\x27\x5b\xd8\xde\x7b\xb6\x77\x83\x22\xce\xf7\xf3\x41\x8a\x39\x12\xf6\x84\xae\xd9\x7e\xbe\x66\x8c\x85\xc5\xf0\x2a\x84\x57\x24\x08\x4c\xbe\xb5\x7b\x0f\x5f\xd3\xac\x4d\x55\xba\x63\x4d\xc3\xf5\x5d\xcb\x3b\x36\x9d\x87\x7b\xb6\xc2\x2b\xb8\x49\x10\x78\xb0\xba\xef\x2b\xb9\xcb\x37\x18\x4e\xf1\x83\x92\xbb\x1d\x5f\x85\x64\x4e\xf4\x76\x60\xbb\xf3\x59\x52\x3a\x34\x06\x0c\x25\x67\xa1\x6b\xa5\x6b\x77\x23\xfa\x22\xa4\xba\x5c\xe6\x9c\x31\x7b\xea\xeb\x9d\xec\xa3\xc0\x33\x37\x33\xbb\xa7\x15\xa1\x39\xab\x83\x60\x9f\xd6\x18\x83\xd7\x58\x03\x69\xb3\xed\x70\x4f\xda\xbc\xfd\x42\x26\xb8\x8d\x88\x76\x15\x36\xfd\x5c\x0f\x3c\xc4\xa3\xcc\x74\x7b\x4b\x71\xa5\x60\x78\xe6\xf3\x7b\x9d\x19\x06\x17\x04\xa1\xb7\x8c\x3e\x99\x09\x83\x35\xb7\xcf\xa6\x95\x95\x0e\x2e\x6a\xdb\x22\xc3\xae\x15\x24\x08\xea\x20\x28\xd2\x6d\x36\x06\x01\xac\x80\x01\xad\x83\x20\x84\x07\xed\x40\x40\x47\x28\xd2\x2d\xba\x6f\x42\x2d\x21\x31\x76\x47\x97\xe4\xee\x30\x92\x53\x75\xb5\xad\x5b\xf5\x94\xdd\x17\x07\x8c\xcc\x82\x74\x6c\xdc\x8f\x5d\xd4\xd6\xb4\x2e\x6e\xc2\x36\x38\x51\xeb\xc9\x0e\xb4\xd6\x7e\x2c\x68\x41\xe9\x2c\xb0\xd6\xe9\xf7\xd7\x98\x5b\xd5\x2b\xc6\x36\x3a\xda\x59\xed\xe7\x3b\x8c\x12\xb0\xd7\x01\x5c\x79\xb7\x25\xf4\xc6\xc5\x9a\xbd\x25\x2c\xe3\x73\xd3\x7f\x58\x0b\xe7\xd5\x51\x80\x9b\xe3\x48\xef\xaf\xba\x6b\xd3\x50\x5c\xb5\x9b\x15\x08\x4b\x01\x90\x2e\x59\x8d\x97\x6d\x02\xa4\xf3\x7b\x21\x1d\xa3\x4c\x46\xcb\x7d\x05\x1b\xc6\xf4\x4d\x1a\x4e\x00\x6a\x29\x98\x6c\x9b\x49\x73\xa7\xba\xef\x2f\x2f\xf9\xaa\xc8\x15\x1f\xaf\x37\xf4\x78\x0f\x23\x36\x4d\xff\x5d\xe3\x83\xc2\x21\x11\x30\x2e\xae\x69\xeb\xdd\xc5\xaf\xac\x80\x49\xcb\x55\xce\x0a\xfc\xa1\x15\x0b\xc3\xa3\xd9\x2e\x5a\x72\x24\xd3\xde\x40\xba\x7c\xd3\x14\xb6\xd7\xc4\x80\xb5\x19\xd4\xde\x68\x13\xb0\x31\x83\x5a\xdb\x5d\x85\xb1\x28\xfa\xdb\x8a\xea\x30\x52\xce\x20\x43\xd2\x99\x52\x2e\xa3\x9d\xac\x95\x5d\x31\xa0\xd0\xdd\xf7\xde\x0a\x52\xde\x41\xac\x9d\xd0\xfb\xdc\x1b\x3a\xf8\x14\x7d\x72\x87\x96\xc0\xc7\xe1\x2a\x21\x70\x05\x41\xe9\x1a\x4e\x78\xdc\xc8\x12\x9b\xc6\xd7\xee\xb6\x5e\x1b\x65\x52\xab\xd4\x4a\x0f\x21\x6f\x5e\xb2\xb2\x7f\xd1\xfb\xb6\xa8\xad\x81\x49\xaf\xca\xb2\x55\x33\xa3\x17\xc7\x58\xc5\xc6\x9e\x4a\x47\x55\x9a\xef\xad\xed\x16\x13\xda\x6a\xab\x68\xa9\x37\xb4\x6f\x91\x69\x95\x69\x75\x57\x88\x8f\x45\x8f\x6b\x4a\x96\x2a\xac\xa8\xb6\xf5\xc0\xb3\x3c\x2c\x51\xb4\x61\x14\x02\xe6\x9b\xb9\x87\xa7\x6c\xef\xe1\x21\x58\x6d\x10\x48\x7b\xe9\xca\x5c\xb6\x34\x5f\xad\xd3\xee\x60\xf9\xe3\xb2\x9b\x7b\x79\x68\x91\xc9\xfe\x89\x18\xcf\x8e\x8d\xb5\x25\x6c\x7c\xdd\x3d\x39\x10\x8a\xd1\x90\x6e\x8e\xfc\x6b\x5c\x32\xa3\xbd\x07\x65\xee\xc6\x4a\xd1\xd3\x46\x25\xe3\xc6\x7e\x18\x10\x94\x16\xcb\x14\x19\x5a\x05\xe7\xd6\x16\xc4\xf9\xc0\x72\xf6\xde\x1c\xa2\x05\xd1\xa6\x5f\x28\x3f\xd1\x8a\xab\xef\x06\x9f\x3e\xf3\x5b\xa3\xd1\x3a\x00\x81\x90\xa3\xfc\xaa\xd6\xdf\xf0\x31\x5a\x4a\xb1\xcc\x81\x46\xc7\x57\x63\x27\x86\xcf\x94\xb3\x1e\x71\x24\x09\x55\xed\x85\xff\x73\x05\x3c\x81\x60\x55\xaa\x32\xaa\x75\x1d\xa9\xc8\x3a\x9d\x64\x4b\xa1\xd8\x47\x26\xa3\xba\x5a\x1a\x97\x42\x38\xb4\xa9\x8e\x4f\xab\xbf\xba\x90\xd6\x96\x68\x3f\x3a\x04\x01\xe5\xd1\x25\x57\xf9\x5f\xf9\x2d\xf3\xbc\xf6\x99\xe6\x26\x3e\x66\x62\x1f\x30\x12\x4f\xcc\xb5\x52\xaf\x8e\xfd\xbc\x54\x7f\xe5\xb7\x27\x17\xda\xe3\xfb\x64\x99\x8b\x25\x2f\x01\x9c\x4f\x96\xaa\x2a\xe1\x53\x0f\xf5\x9d\xe0\xe6\x7f\xbf\xcd\x6b\x7e\x62\xda\x38\xc1\x6b\x64\xf8\xca\x64\x40\xb2\x13\x92\x75\x1f\x4f\x54\x71\xc9\x3f\xa8\xfc\x72\x77\x72\x55\xf0\xeb\x93\xeb\x6d\xf1\xff\x63\xee\xdf\xfb\xdb\xb6\x91\x85\x71\xfc\x7f\xbf\x0a\x09\x9b\x47\x21\x22\x58\x26\x29\xd9\x49\xa8\x20\x7a\xd2\x34\x6d\xb3\x9b\xdb\x36\xee\x6e\xbb\x34\x9b\x87\x12\x21\x99\x6b\x8a\x54\x49\x2a\x76\x2a\xea\xbc\xf6\xdf\x07\x83\x0b\x41\x8a\x72\xd3\x73\xf6\xfc\x3e\xdf\x3f\x6c\x91\x20\xae\x83\xc1\x60\x06\x98\xcb\xe2\x1a\x29\x5e\xb5\x87\x30\x51\x73\xe8\xed\xf6\xa4\x9e\x16\xd9\xbd\xc5\x75\x98\xf7\x16\x32\xe2\x73\xef\x86\x7d\xe1\x7f\xfc\xb9\x55\x05\x44\x01\xe9\x3c\x28\x54\x8e\x0f\xa1\x61\x80\x22\x3c\x51\xa9\x35\x33\x52\x95\xcf\xea\x47\xaf\x1c\xc9\x56\x30\x61\xfb\x3d\x31\xf0\x48\xf5\x4b\x50\x91\x9e\xf8\x29\x7a\x8b\x24\x66\x69\xf9\xb3\xfc\xfd\xa5\xb7\xcc\xb3\xb5\x9c\xd2\x9e\x30\x39\xfc\x59\xfe\xfe\xd2\xdb\x84\x2b\xf6\x33\xfc\xff\xa5\x57\x2c\x72\xc6\xd2\x9f\xe5\xef\x2f\xbd\x32\x93\xa5\xfe\x60\x78\x4d\x5a\x48\x53\x49\xd5\x48\x41\xd3\x91\xd1\xf6\xb4\x05\x03\x68\x5a\xdd\xf6\xa6\x23\xd9\x6b\xb8\x2a\xd6\x38\xd5\x66\x22\x49\xc6\xf7\x97\x56\x00\x66\x4e\xb4\xe6\x59\xf4\x85\xc8\x3a\xeb\xca\x86\x16\xd8\xc1\x14\x8b\x3c\x4b\x92\x37\x6c\x59\x0a\xc1\xb6\x91\x60\xe3\x53\x91\x4b\x94\x31\x72\x99\x09\x10\x4b\x0a\xc0\xa4\x6b\xff\xa5\x51\xfb\x65\xb6\x69\x54\x0e\xef\xad\xba\xeb\x3c\xc6\xbb\x2d\xa2\x29\x37\xf0\x16\x58\x36\xab\x95\x48\x0b\x63\x29\xc2\xb5\xa3\x8a\xc2\x58\xf0\xce\x01\x22\x55\x55\x28\x22\xfa\x69\xcc\x72\x06\xe1\xcc\xf1\xdc\x41\x38\x1b\x7b\x93\x41\x38\x73\x3d\x5b\xe0\x91\xdc\x93\xbd\x5d\x92\x85\x91\xb7\x53\x62\x02\x44\x49\x12\x8e\xc6\x77\x07\xf2\xaa\x36\xd6\xeb\x53\xba\xe0\xcc\xa9\xa0\x7b\x3c\x37\x84\x78\x33\xb5\x8f\x97\xc2\xd7\x38\xe9\x3b\x92\x5f\x64\x78\xb7\x07\x1b\x94\xfa\x64\x04\xc9\x23\x63\xb4\x27\xf3\x64\x9b\x77\xb6\x68\xd4\x49\xcd\x56\x79\x81\x99\xa5\x1f\xa1\x25\xd3\xd2\xeb\xa0\x99\x6c\x5b\xa2\x3d\x81\xfd\xf0\xbe\x86\xcc\xfb\x57\xc1\x50\xca\x2b\xd8\xc1\xa0\xbe\x29\x50\x6a\x90\xc2\x9d\xb4\x54\x37\x8d\x17\x37\x33\xab\x7e\x6e\xf5\x48\xf1\xed\x5d\x77\x4c\x8d\x3b\x5f\x39\xc3\x04\x85\x08\xef\xf7\xc4\x0c\x14\xee\xed\x4c\x86\xa5\xc9\x41\x4b\x7e\x45\x73\x4b\x9c\xd3\x8a\xd3\x30\x79\x25\x8f\x35\x78\x43\xe2\xda\x58\x65\xc5\x7b\x8e\x06\xf1\x7a\x9b\x34\x1c\xe5\xc9\x63\x3a\xc3\xe7\xa5\x3c\x88\x35\xf7\x19\x92\x12\x71\x2e\xcb\x48\x5c\x7c\x94\x75\x08\x03\x60\xb3\x5d\x6f\xb7\xdf\xe3\x29\x18\x56\x35\xe4\x04\x2b\x56\xc1\x0a\x3b\x0e\xb8\x05\x1f\x06\x8e\xcc\x8e\xc8\x44\x87\xf2\x94\xb8\x46\x31\x0e\x7f\xe8\xf7\xe6\x9b\x3e\x64\x6d\xdf\x9b\xb2\xae\x5c\x83\x41\x67\x32\x04\xa7\xe9\x3b\xad\x28\xa3\xf5\xc5\x2f\x9c\x5e\x94\x53\x2e\x3c\x98\xae\x55\x94\x8e\x9a\xe0\xa4\x7e\x81\x78\x12\xb9\x12\xb5\x1a\x99\xad\x5c\x68\x66\x29\x20\x77\x87\x7b\xe4\x18\xd6\x8b\xd3\xa2\xe4\xbb\x23\x5c\x25\x88\xdc\x33\x0b\xdc\xc0\xc1\xbd\x81\x40\xc3\xc6\x54\x50\x69\x61\x02\x32\xa7\xe4\x6a\x20\xe1\x10\xc4\x54\xeb\x19\xe8\x24\x2e\x10\x98\x38\x24\xce\xdb\xe0\xd2\xe9\x43\x63\x2a\xa4\xe1\xf0\x87\xd6\xfc\xcc\xb6\x5e\x22\xd9\x16\xd1\x01\x52\xca\xe3\x78\x40\x2d\x61\x7d\x20\x75\x8f\xf5\x26\x4d\xc5\x80\xd4\x2b\x9c\xef\xa5\xd9\xad\x85\x09\x68\x43\x80\x7e\xb3\xc1\xc0\xd1\xbe\x8d\x71\xf3\xa8\x48\x98\x6d\xab\x57\xc3\x55\xf7\xee\x70\xd4\x5e\x42\xba\xc4\x2e\x48\xbe\x47\x7c\xf2\x12\xd2\x44\xc6\x43\xbf\x90\x87\x93\x31\x3d\x06\xf9\x2d\x61\x1d\x82\xcd\xec\x50\xd2\xf1\x9a\xf3\xc1\xd1\x92\xb4\x44\x9f\x3f\xd3\x91\xc3\x71\xe9\xae\xb4\x6a\x55\xae\x7a\x1b\x32\x16\x61\x23\xc1\xac\x89\x4d\x84\x82\x5d\x3b\xcf\xd5\x05\x38\xb3\x5f\xb2\xf9\x7b\xe0\x4b\xb7\x02\x2b\x0e\xda\x34\x74\x1b\x76\xc0\x14\x71\x08\xe6\x1e\x82\xe7\xec\x33\xcb\x91\xe0\x95\x12\x16\x7e\x66\x2a\x19\xf6\x80\x03\xf5\x82\xd6\x99\x40\x40\x77\x8d\xfd\xa3\x24\xea\x48\xc9\x2b\xa5\x7c\xd1\x19\xc2\x0e\xb0\x38\xa6\xad\x7d\x1b\x0c\x28\xb4\xa0\x2c\xb9\x20\xab\x1f\x57\x55\xdc\x87\x20\x59\x7d\xc3\xef\xb3\x95\x93\x58\xca\xd6\x80\xa7\x99\x96\x98\x49\x5a\xcb\xf6\xdd\x3e\x3e\x89\x2c\x53\x62\x92\x1e\x28\x3e\x80\x1b\x26\xe9\x4a\x49\x2a\xb4\x9a\x83\x96\x19\xe0\x8e\x7b\xbb\xf9\xaa\x6d\x51\x38\x49\x9b\xf5\x1d\xad\x63\x2a\x6a\x0c\x23\xb9\x9e\x85\xec\x39\xfa\x24\xaa\xe6\xbc\x32\xc4\xff\x54\x09\x88\x1c\xc0\x50\xb3\x37\x42\x93\xbf\xd6\x92\xd6\x9b\xb0\xa4\x01\x75\xba\x8c\x14\x81\x67\xe9\x88\x77\xc8\x2b\xa7\xb9\xe9\x24\x20\x27\xa8\x31\x74\xb0\xef\x6f\x74\x55\xe7\xe8\xee\x17\x53\xc9\x9f\xe6\x0a\xb5\x05\x64\x8f\xd4\x0f\xb1\x06\xc1\x92\xf0\xf8\x4e\xdd\xac\xb1\xbe\x46\x68\x7f\x11\x88\x6f\xaa\x72\xc0\x59\x8e\x3c\xe2\x36\x6e\x8e\xd5\x26\x6e\x21\x35\x84\x56\x49\xc2\x44\xbf\x88\xba\x43\xf9\x1f\xcd\xb0\xbc\x23\x11\x99\x34\xd8\x5a\x7e\x29\x47\xc2\xdf\xd7\x3d\x28\x27\x32\x1c\x47\xb9\xef\x54\xf8\x7f\xd3\x5e\x03\xcf\x2c\xab\x9b\x0f\xab\x2a\x43\x3d\x57\x25\x1e\x4c\xb7\xe8\xf4\x46\x46\xbf\x12\x5d\x18\x7d\x12\xbf\xcd\x99\xd7\x1e\xdd\x80\xed\x6e\xb2\x53\xaa\xbc\xb0\x55\x12\x3d\xfc\xf4\xef\x6d\x51\xca\x9a\x22\xa0\x80\xc6\x49\xea\xc1\xa2\xe8\x6a\xf1\xb0\x9a\xf6\x8c\x77\xb6\xe4\x18\xed\xd4\x98\xa0\x1a\x90\xe7\x8c\xd0\x1f\x83\x23\xed\xe8\x99\xe0\x34\x21\x8a\x50\x58\x1e\x01\x8a\xd2\x43\x92\xa7\x5a\x7a\x8a\x4c\xcd\xd8\x7a\xf5\x95\x04\x35\xb0\xe0\x70\xf5\xe9\x1c\xdd\xcd\xf5\x5b\x78\xcc\x59\x0e\x83\xdf\x14\xaf\x97\xfa\x42\xe4\x7e\x28\x1c\xac\x07\x73\x21\x1f\x74\x55\x2f\xe4\x23\x04\xdf\x80\x82\xc1\x98\x09\xdb\xa0\xfb\x3a\x29\x91\xb4\x0f\xb1\x21\x40\x7c\xa8\xd1\x59\x27\xce\x8c\x1d\xe3\x7e\xa2\xaf\xe5\x8b\xfb\x57\x76\xe7\xc2\x95\xc0\xc1\xa4\xdf\xbd\xd4\x5a\x0b\x5a\x0a\x6b\x7a\x45\xeb\xdd\x57\x88\x8b\x5a\x98\x13\xb2\x9c\x29\x74\x75\x99\x50\xda\xa4\x19\x49\xfa\x70\xf2\x4a\xa2\xb7\x83\xd6\xed\x00\x4c\xde\xf4\x60\xe3\x96\x4a\x8b\x4d\x62\x02\xe1\xbe\x86\xc3\xc1\xe0\xfb\x43\xfd\x0a\x26\x2e\x77\xbb\x81\xc7\x0b\x9e\x9e\xa6\xbc\x60\x97\x30\xa0\xca\x1e\xfa\xa7\x68\x44\x44\x3a\xd0\x5d\x9a\xc6\x4b\xeb\xd0\x19\x0c\xde\x1d\x38\x17\x48\x21\x30\x75\x0e\x8a\xde\xb4\x14\x2e\x15\x43\xf0\x80\x88\x05\x1f\x97\x5a\x21\xd4\xce\xfc\x30\x20\x19\x36\xd1\x70\x1f\x2f\x65\x8c\xa3\x5c\x9c\xb0\x50\x1a\xcf\xac\x98\x72\x2e\x85\x57\x26\x4d\xc1\xc0\xd9\xc8\xa1\xe1\x98\x15\x83\xa2\x54\x09\x91\xc2\xf9\x93\xe8\x01\x26\xb1\xb8\x63\x8a\x69\x32\x55\x41\x1d\xfb\xb1\x69\x73\x6c\x86\xff\xcc\x06\x03\xab\xa0\x31\x89\xbb\xd4\xa0\x16\xa5\x85\x47\xd9\x72\xc9\x27\xf3\x88\xcb\xf2\x3d\x89\x85\x72\x4a\xa1\x94\x56\x8a\xb6\x62\x56\xa7\xb1\xa2\x81\x4a\x9a\xb6\x31\x12\x83\xdd\x01\x5f\xcf\x59\xda\x25\xec\x9a\x47\x17\x86\xae\x0a\x67\xab\xb3\xe5\xf2\x98\x79\x85\xb4\xa7\x68\xb3\xe7\x60\x1d\xa0\xd6\x6f\x6d\x6a\x69\x24\x92\x45\x69\xb5\x6f\x99\x04\x40\x8c\x4b\x96\x59\x7d\x5f\x32\x44\x23\x34\x34\x3e\x79\xf5\x27\x52\x1f\xd9\x93\xfa\x1e\x05\x20\x73\x0c\xd7\xe0\x0a\xc0\x44\xa5\xe5\xd2\xca\x48\x4a\x98\x9f\x05\x4d\x3c\x92\xdc\x6a\x2a\x05\x3e\x33\xea\x85\x42\x17\x2c\x02\xa8\x03\x8a\x80\x15\x14\xdc\xcd\xe4\x34\xf9\xa3\xd9\x31\xa9\x11\xd3\xd3\x73\x70\x32\xd3\x96\x7d\x8f\x57\xa8\x0e\x17\x98\x34\x64\x37\xeb\xfb\x41\xea\x8a\x75\x5a\x73\x4b\x43\x59\x1d\x57\xa6\xb3\x46\xf0\xec\xa5\xb5\x36\xc5\x0d\xe5\x83\x92\x9e\xfd\x3a\xf2\x7f\xf5\xfe\x72\xe5\x5f\x8d\x48\xf0\xe8\xc1\x19\x79\x2d\xd5\x21\xc5\x6e\x53\x54\x1c\x35\xac\x99\xf7\x53\x5a\xc6\x49\xf5\x22\x49\x30\x3e\x23\xbf\x97\xf4\xb8\x2e\x1a\xf9\xb9\xa4\x3b\x88\xcb\x9a\xb3\x14\x3c\xa7\x0a\x4d\xd9\x82\x3f\xa7\xec\x0e\x1c\xae\xf1\x5a\xbd\xbe\xbd\x6f\x79\xd5\x80\x68\xea\x1d\x2e\x07\x44\xd0\x4c\x29\xa0\xe8\xeb\x01\xc3\x06\xbc\xf6\x69\xd2\xf0\x21\xb0\xd9\x16\xd7\x1f\xcb\x70\x71\x23\x15\x58\xe5\xb9\xbd\x01\x7d\xa1\x7f\x65\x4f\xe3\xe7\xe5\xb4\x14\xb6\x95\x0d\x79\xc6\x2f\x03\x31\x19\xda\x7c\x79\x2f\xfd\xc3\x9a\xa5\xd4\x8d\x11\x23\x50\xa0\x56\x98\x17\xb3\x63\xf4\x23\x7e\x0e\x46\x34\x22\xdc\x0a\x04\x57\x01\x2f\xa3\x72\x05\x88\xdc\xea\x6d\xd6\x78\x1b\x82\xd9\xb6\xc7\x48\x7a\x18\xac\x44\x81\x69\x01\x67\x06\x60\xf7\x5e\x3b\x7e\x9a\x36\xce\x35\x8f\x42\x20\xef\x86\x80\xb8\x02\xf3\xcb\xc0\x84\xc0\x9e\xa4\xdd\xa1\x1e\x5b\xa3\xdd\xc8\xe5\x01\xf7\xd7\x82\x85\x3f\x38\x80\xff\xba\xb2\x0e\x2f\x1b\x77\x85\x68\xe9\xf7\x65\xce\x2e\x37\x13\xbf\x2b\xdb\x27\x3c\x03\x0c\xf0\x74\x75\x12\x38\x7b\xb2\x48\xb2\x82\x15\xf7\x18\x9f\x82\x3f\x01\xc3\x46\x9e\xc8\xeb\xc7\xba\xee\xda\xc5\x45\x8d\x87\x33\x31\x17\xe2\xb6\x73\x24\x15\x8f\xb1\xc7\x71\x26\x9f\xe6\xc3\x21\x5c\x91\xca\xc5\x9b\x07\xd3\x74\x30\x48\x39\xff\x34\x4d\xa9\x69\x54\x0b\xb6\xbe\xfa\xe2\xea\x99\xc3\x69\x53\x38\x0b\xe5\x75\x65\x0a\xd1\x68\xda\x9e\x2a\x94\x3d\x13\x2c\x4d\x56\x7c\x94\xf8\x63\xa5\x84\x61\x8c\x77\x5c\x10\x57\xe1\xf2\x44\x88\xa2\x6e\xf8\x1b\xe1\x78\x6b\x84\xcd\xb0\x97\x41\x9c\xc5\x88\xdd\x75\x87\xcb\xe9\x88\xe2\x64\x06\xe8\x91\x9e\xa9\x60\x32\xe0\xf4\x54\xc7\xd6\x19\xfd\xfb\xb7\x2d\xcb\xbf\xcc\x98\x6f\x07\x9e\xc4\x62\x4f\xe6\x17\x87\xd4\xbe\x1d\x18\xa0\x99\x49\x7c\xce\x0b\xbe\x19\x73\x82\xf2\x22\x49\x2c\x35\xaf\xde\xa9\x73\xa0\x87\xad\x29\x66\x67\x1f\x21\x43\x53\xa5\x49\x47\xa5\x07\xf7\x8d\x3e\x0b\x3c\x26\xad\xf4\xd7\x2c\x5f\x09\xda\x0f\x36\x7e\xd8\x58\xf2\x07\x84\x47\xc1\x2e\xc7\xc2\xcd\xcd\x37\xa1\x19\xbe\xa7\x85\xff\x7c\xcf\x57\xae\x01\xe4\x35\x29\xfb\x2c\x74\xf6\xbc\xd6\xbb\xbe\x85\xc4\xd8\xb4\x81\xd8\x75\x44\xd8\xbc\xd7\xfe\xc2\x71\xfa\x66\x94\xd8\x59\x29\xad\x86\xe4\x0e\x70\xe4\xc4\x3f\x8a\xc1\x28\xb1\xae\x11\x61\x5d\x04\x36\x8b\x7b\x2c\xc4\x0e\xcb\x82\x1f\xcb\xb4\x1d\x29\x53\x05\xdd\xe0\x99\xcd\x88\xe3\xe0\xe9\x88\x7d\x3e\x9a\xb7\x1d\x58\x5d\xd6\xfd\x22\x49\xee\x1f\x4c\x47\x1b\x7f\x58\xe6\x48\x5b\x5f\x09\x02\xb3\x45\x80\x01\xaf\xee\x6b\xc1\xd7\x0e\x1f\xcf\xcb\x17\xe2\xe5\xd8\xac\xc9\xcf\x96\xc5\x1a\x62\xe9\x6e\x8f\x0d\x27\xb0\x84\xe1\x3d\xd1\x3b\xf8\xfd\x15\x99\x51\xfa\x78\x29\xb5\xd7\xff\xd1\x35\x11\x41\x31\xd8\xd3\x20\x30\x38\x11\xa5\xea\x9b\x52\x9d\x24\x94\xbd\xf4\x9d\xa9\xa7\x97\x9e\x1f\x10\x66\x44\x7f\xc7\xfb\x8e\x73\xd1\x25\x44\x68\x31\xd5\x55\x8d\x5b\xa1\x75\xb8\x51\x5e\x83\xf4\xda\x45\x00\x79\xa1\x6e\x22\xb4\x2f\x4e\xcf\x25\x7f\x88\x85\x6b\x8d\x16\xdd\xc8\x95\xbb\x4d\xb9\x14\xe1\xf8\x93\x18\x7b\xc5\x73\x4e\xb0\x7f\x16\x51\xec\x44\x4e\x49\x0c\x78\xbe\xd7\x7a\x03\x81\x6a\xe2\x11\xe7\xc2\x73\x08\x63\x2e\x2b\x31\xf8\x86\xb6\x9b\xca\x8e\x7b\xfa\xfa\x2e\xa7\x34\xf9\xc1\xc1\xc0\x62\x14\x79\x69\x56\x5a\xe0\xf7\x05\x23\xe1\x97\xb4\xd4\x6a\x28\x0e\x84\xb6\x30\xfd\xd4\x76\x6e\x20\x39\x61\x78\xe6\xe7\x81\xe7\x07\x5e\x2b\x8f\x05\xca\xc3\xab\x9c\x6d\x1a\x91\x8a\xea\x90\x99\x0d\x8b\xfb\x3d\xa7\x84\x51\x7c\xe8\x46\x41\xed\xba\x32\x7c\x28\xf3\xd3\x60\x9a\x09\x67\xb1\x99\xa9\xbe\x91\x8b\x6b\x62\xa7\x91\x0e\x46\xdf\x56\x86\x47\x71\xc1\x69\xed\x14\x83\x18\x67\x14\xd3\x41\x44\x49\xd6\xd0\x24\x89\xf5\xb2\x39\xc6\x04\x50\x3f\xe8\x88\x87\xdc\x1c\xd4\x60\xc0\xfa\xd2\xeb\x25\x34\x53\x87\xb8\x4f\x15\xbf\xfd\x53\x49\x51\x38\x9f\xe7\x55\x98\x97\xf1\x22\x61\x55\x58\xc4\x11\xab\xc2\x6d\x14\x67\xd5\x3c\x8a\xab\x45\x98\x7e\x0e\x8b\x2a\x0a\xcb\x10\xfe\x25\x71\x51\x56\x11\x2b\xc3\x38\x29\xaa\x65\xbc\x5a\x84\xe0\x03\x83\x3f\x6e\x73\x56\x2d\xb3\xac\x64\x79\x25\x82\x24\x57\xd7\xe0\x7c\xa3\x5a\x87\xf9\x4d\xb5\x66\xfc\x43\x1a\x7e\xae\xb2\x6d\xb9\xd9\x96\x95\x72\xd5\x58\x15\x0c\x06\x58\x15\xdb\xf5\x3a\xcc\xbf\x54\x65\xbc\x66\xd5\xe7\x38\x62\x19\x22\xff\x28\xe9\x59\xef\xdf\x7f\xe7\xdb\xf0\x55\x34\xa4\xc8\x9a\xc1\x56\x50\x5d\x45\x43\x8c\xce\x56\xe4\x17\x11\x7e\x48\xe9\x17\x3f\xb3\x66\x1e\x1a\xfe\x54\x0e\x11\xf6\xaf\xae\x8a\xb3\xe7\x01\x22\x28\x46\x98\xfc\x95\xcb\x10\x57\xc5\xf0\x8c\x7c\x5f\xd2\xb3\x67\xd6\xac\x2f\xbc\xf6\xe5\xd5\x22\x4b\x2a\x70\xb6\x5c\x5d\xe7\x55\xbc\x5e\x55\xc2\x86\x2b\x89\x53\xe8\x73\x58\x6d\xc2\x3c\x5c\x63\xcb\xf2\xaf\x6e\xbd\x60\x88\xfd\x5f\x9f\x07\x8f\xf0\xd5\xd9\xf3\xb3\x55\x4c\xfe\x0e\x95\xc9\x2f\x67\xe4\x6f\xfc\x15\x82\xc3\x9c\xc5\xe4\x5f\xfc\xa5\x1a\xfc\x65\x76\x75\x3b\x9c\x9e\x11\x96\x42\xbb\x5e\xb1\xc8\xe3\x4d\x59\x09\xc3\x49\xde\x0a\x3e\x8b\x49\x99\x1a\x8e\x01\xe7\xd9\x5d\x05\x67\x5a\x60\x38\x96\xa6\xf4\x4c\x1e\x9c\x5e\x15\x8f\xac\x99\xe7\xff\x4a\x83\x8a\x5e\x15\x8f\x94\x55\xdc\x88\xd7\x90\xf3\x1a\x1e\x54\x57\x67\xd6\xcc\xfb\x77\xf8\x39\xac\xd8\x62\x1d\x62\xd1\xd8\x59\x4c\x32\xfe\xb9\xcc\xb7\xec\xea\xcc\x1a\x3d\xc2\x67\x24\x4c\x01\x20\x8f\x9e\xf5\xad\x99\x77\xe5\xbf\xfc\xf6\xc5\xe5\x8b\x2b\xbf\x3a\x3d\xc5\x15\x4f\x08\xae\x02\xfe\xfc\xfc\xaa\x78\xf4\xe0\x6c\x45\x8a\x94\x2a\x2f\x36\xbe\x43\xd0\x33\x21\x01\xf4\xd6\xdb\xa4\x8c\x37\x09\xa3\x0f\xd5\xd3\xc3\xe7\x88\xa0\x67\x67\xe2\xfb\x73\x14\x90\x84\xad\x58\x1a\x89\x52\xcb\x98\x25\x51\xc1\x4a\x91\xa7\x7e\x0b\x08\x9f\x0c\x91\x67\x1d\x6e\xc4\x67\x78\x08\x08\x40\x5f\x7c\x12\x72\xb7\xf8\xaa\x9e\xb9\x28\xc4\x42\x59\xbf\x8a\x34\x80\x74\xd0\x81\x80\x94\xb9\xe7\xbb\xa4\x8e\x54\xc0\x27\x47\x66\x81\x47\x23\xeb\x22\x4b\x3a\xf2\xea\x8c\x8b\x2c\x01\x74\x16\xa5\xf5\x9b\xd9\x56\xe4\xf9\xe3\x83\xf2\x65\x2e\xdb\xcb\x9f\x77\x34\xaa\xb5\x18\x4c\xa3\x5e\x33\x9a\xd0\xcc\xb7\x09\x42\x04\xa1\x00\x06\xf9\xf3\x33\xe1\x22\x1d\x49\x5f\xe9\xc1\x9e\x6c\x53\x1a\x59\xdf\x63\x92\xa4\x74\x9b\x7e\x8d\x4b\xfb\x69\x91\x8e\x94\x67\x1c\x2a\x9e\xe3\x2c\x25\x45\x2a\xe3\x1e\xf1\x07\xbe\x90\xf9\x83\x1a\x27\x3c\x8b\xb5\x0e\xdf\x39\xd4\xa1\xc4\x35\xbc\x46\xad\x23\xbb\x83\x10\xe3\xdd\x4e\x1f\x3b\x1d\x39\x52\x5a\xce\x64\x7c\x57\xab\xe6\xb9\x65\x08\x76\x15\x90\xc2\xb2\x0e\x18\xf1\x03\x05\x79\x39\xfa\x4b\x76\x07\x4c\x05\xb0\xa5\x42\x4d\x82\x1d\xb8\x98\xe4\x8c\x30\x54\x7c\x44\x55\x66\x14\x65\xeb\xb7\x61\x1a\x6f\x3a\x23\x80\x82\x1e\xcf\x81\x2f\xaf\xaa\x72\x3a\xd2\x9e\xb6\x93\x14\x33\x7c\xad\x74\x65\xa7\x65\x63\x16\x99\xf0\xe9\xba\xc9\xd9\xff\x77\xfa\x17\xa7\x05\xcb\xcb\x6f\xe0\x82\x83\xef\x4c\x0d\x9e\x8b\xf7\x56\xdc\x7d\xfc\x37\x3b\x7b\x70\x4d\xd7\x4a\x38\x68\x5e\x9d\x4d\x85\xcb\xf2\xa8\xb2\xd3\xff\x46\xa3\x8d\xcd\x77\x8f\x3b\x4d\xf4\x9a\x92\xbb\xe4\x65\xa4\xb2\x66\x8d\xde\x24\xa6\xf6\x54\xa8\xee\x81\x2b\xad\x38\xc0\x10\x29\x4f\xf2\x14\xa9\x31\x41\x0b\x11\x44\x27\x05\x73\x84\x3b\x70\xcb\x9d\x36\x3a\x6e\x09\x55\x10\x7d\x60\x92\x36\x97\x06\x49\xf1\x60\xf0\x85\x97\x24\x48\x6c\x10\xa8\x55\x45\x2b\x1c\x42\xf3\x04\xf3\x30\xb2\xac\x1a\x1f\x23\x65\x3d\x08\xa1\x1c\xe1\x97\x01\x86\x33\x1c\xc8\xd4\x66\x4f\x5a\x23\x61\x70\xa8\x32\x35\x19\xf8\x29\x6e\x76\xa6\xc1\xdc\x4f\xb5\x07\xae\x03\xe7\x41\x2a\x3a\x9d\xd0\xdc\x12\x99\xe4\x4a\xa7\x76\xcb\xb9\x28\x44\x2e\x3a\xe6\xc5\x59\x49\xbe\x7d\x07\xfc\x36\x8b\xd7\x72\xc6\x3c\xe9\xda\x93\x33\xed\x9d\x17\x44\x50\xab\x3a\x8b\x2d\xc5\xc5\x57\xb9\x3e\x26\xba\x1d\x23\x8a\x8d\xf3\x54\xb0\x59\x3a\x38\xfc\xa9\x3d\xff\x1b\x9c\x6d\x8d\x2f\xb3\xb4\x0e\xb3\xa1\xfd\xd7\xfd\x43\xf8\xaf\x03\x2d\xfa\x7e\xc7\x91\x65\x55\xb1\xb4\x3e\x4a\xea\x1f\xdb\x9b\x06\x83\x5f\xca\xee\x6c\x07\xe1\xf6\x06\x83\xbf\x1a\x59\x8b\xd4\xb7\xfe\x2e\x8d\x46\x99\x30\x2d\xe5\x3b\x1c\xf6\x9d\xa0\xe5\x99\x00\xe3\x9d\x50\xb0\x13\x1d\xff\xbe\x24\xe8\xd9\x03\xe7\xf9\xb3\xb3\x07\xee\x73\x84\xc1\x88\x06\x34\xfb\xd5\x19\x96\x3e\xbf\x02\x60\x1d\xb8\x4c\x6d\xaf\x1d\xc0\x38\x62\x80\x88\x32\x3c\x4d\xa9\x2d\x55\x2c\x33\xbc\xdb\xef\x53\x49\x0a\x5a\x1b\x10\xbb\x77\x33\x91\x1d\x6e\x06\x32\x56\x6a\x43\xa6\xb0\x77\x88\x0f\x7e\x83\xa7\x27\xa6\x5c\x1c\xec\x31\xac\xb1\xaf\x25\x6b\xb5\x0f\x15\xbf\x1c\x0e\x03\x12\xcb\x87\x69\xcc\x45\x96\xc1\x20\x37\xea\x16\xe1\xb3\x2d\x79\xe2\x6b\x12\x36\xd2\xf2\x73\x6b\x81\x22\xa1\x49\x0d\xb9\xa8\x84\xf7\xa4\x6f\x63\x62\xba\x76\x57\xd9\xf7\x44\x28\xe5\x1d\x3d\x63\xd2\x46\xa2\x70\x79\xa8\x46\x74\x20\x4a\x32\x9a\x2b\x33\x2d\x2e\x6d\x0b\x11\xa6\x11\x9c\x93\xda\x64\xd1\x38\x19\x5d\x8a\x33\xfa\x0d\x5d\x9c\x3a\x24\xa2\xcc\xb7\x03\x72\xdd\xf2\xd1\x19\x81\xf5\xd8\x75\x55\xf5\x2d\xe7\x39\x5d\x74\x9c\x9d\x0a\xcf\x2a\x0d\xa7\x12\x10\xc2\x0c\x0f\x06\xa9\x5c\x28\xd1\x7d\xbe\x82\xb5\x98\xbf\x1c\xb1\xdf\xac\x1c\x4f\x41\x57\xdd\xb7\x03\x1a\x19\x56\x32\x70\xdd\x54\xae\x13\x90\xb6\xe3\x7a\x62\xa5\x23\x22\xe8\xe5\x02\xc2\x97\x2f\xca\xd1\x7c\x1b\x27\x91\x0e\x74\x27\xb6\x92\x03\x2e\x88\xf4\x1d\xd2\x97\xf8\x8b\x49\x4e\xb7\xe6\x99\x8a\x88\x04\x52\x9f\x58\xd4\x66\xc2\x5b\x9a\x63\x3e\xa3\xb0\xb4\x42\x85\xae\x77\xd6\xb6\xde\x30\xc8\x8a\xcb\xac\xa1\xa2\x41\x8b\xe7\xc9\x34\x01\xb3\x97\x2d\x49\xfa\x94\x6e\x74\xd4\x0f\x20\x83\x31\xe9\xdb\x80\x1d\xc2\x67\x80\x38\x30\x09\xc9\x9d\x15\x1b\x5b\x10\x84\xa3\x54\xc0\xf0\x93\x80\xc4\x24\x91\x4e\x40\x85\xe1\x57\xe8\xab\xf6\x4e\x9d\xf6\x40\x65\x1f\x43\xb2\xc6\x1c\x0b\xa6\x99\xee\x50\xc8\xab\xca\x53\x65\x71\x25\x35\x5b\x50\x43\xaf\x22\x26\x48\xd8\xdc\xbf\xfa\x1c\x26\x08\x37\xb7\xcf\x82\xc4\x70\x1c\x32\x2a\xf2\x05\xdf\xbd\x3f\xb1\xcf\x61\xf2\x53\x9e\x88\x14\x38\xa0\xad\x0b\x5b\xbc\x09\x70\x6b\x23\x7e\x5f\x8a\x53\x23\xfe\xaa\x69\x8c\x30\x86\x57\x24\x2d\x04\x1f\x7b\x18\x4f\xb7\x32\xe0\x50\x63\x77\x32\x8f\x51\x05\xe1\xb9\xcc\x3c\x24\x9e\x90\xe2\x09\x79\x92\x7c\x44\xc4\x5c\x98\x9e\xd4\x41\x51\xa9\x2f\x80\x3f\x42\xc0\x26\x21\x45\xa3\x5e\x24\x89\x87\x0c\x7a\xd5\xa5\xd0\xd7\x3a\xb8\x62\x87\xd7\x11\x70\x3c\x02\x87\xe8\x46\xdc\xe3\x53\x67\x1a\x3e\xa7\x8a\x32\xe7\x94\xd2\xd0\x20\x0f\x02\x37\x38\x5a\x2c\x4a\xb0\x86\xc2\x7e\x19\x58\x29\x26\x71\xa9\x2d\x70\x53\x71\x9a\x7d\xec\x2c\xfb\xe0\x10\xea\x70\x33\x3f\x30\x2d\x23\xb0\x7e\xf4\xf4\xb6\x9c\x70\x11\xe1\x16\xa1\xb5\xe5\x89\x58\xa5\x32\x70\x8a\xe1\xee\xb2\xaf\x36\x40\xf4\x0c\x0d\x6b\x77\x76\x43\xf4\x1c\xe1\x59\x46\x59\x33\x2c\xa2\x67\x25\x8d\xad\xc6\x08\x62\x9a\xa4\x0d\x3e\x27\xa3\x49\x6a\xb2\x3a\x98\xf4\xcd\x2e\x99\x81\x23\x01\x59\x5b\x1f\x64\x70\x4b\xc1\x3b\x36\x82\x1e\x35\x13\xda\x03\x12\x66\x72\x39\xbd\xb3\x32\x4c\x0a\x7a\x27\x66\x53\xf3\x74\x31\x2d\xfc\x30\xc0\xd3\xe1\x30\xc4\xb9\x1f\x06\x83\xc1\xdc\x8a\x49\x0e\x69\xf1\xd2\x2a\xe1\x6e\x48\x2e\xd6\xa2\xaa\xa0\x38\x68\x5c\x40\x7d\x1d\x15\x85\xc3\x21\xfe\xac\xab\x00\x15\x88\xcf\x60\xc3\xa4\xdd\x7b\xf1\xae\x18\x54\x47\xdd\xb4\x3e\xb7\x39\x0b\x9b\x93\xfe\x76\x30\xb8\x03\x86\x4f\x33\xb2\x39\x2d\x54\x94\xae\x6c\x4f\x1a\x64\xb2\x43\x4d\x41\x9f\xef\xb5\x02\x3c\x33\xb5\x81\x6c\x68\x64\x95\x98\x5c\x73\x04\x5f\x51\x7b\xba\x7c\xbe\x9a\xae\xc4\xa5\x64\x46\x99\xbf\x0a\x48\x56\x55\x36\xa5\x34\xc3\x0d\xe5\x00\xf0\x65\xff\x65\xc3\xac\x0c\x63\x4d\xf2\xae\x49\x66\xdc\xde\x64\x81\x97\x61\xad\xf8\xf1\x2f\xed\x33\x45\x19\xba\x16\x55\xb5\x69\x48\x82\xe5\x91\x10\x75\x5b\xaa\xb9\xa9\xec\x3e\x6e\x8a\x2c\x68\x91\xfa\xdb\x80\x33\x60\xda\xee\x99\x14\x06\x4a\x2e\x7c\x27\x18\x66\xc7\xd8\xad\xe1\xc2\x77\x39\x13\xb1\x80\x80\x53\xa7\xa7\x53\x5c\xd0\xa2\x0e\x86\x3a\x6d\x79\xfa\xbc\x87\x09\xcc\xf0\x60\x70\x2d\x7d\xee\xb6\xc5\xf4\xbf\xea\xa1\xf8\x76\xc0\x31\xdf\xa8\x12\x0e\x28\xb0\xb0\xb8\x44\xc2\xcd\x55\x9f\xd2\x6d\x55\xfd\x4d\x57\x3c\xd3\x07\x41\x7d\x0a\xe3\x69\x7c\xb4\xbd\xc2\x2b\xcc\x5d\x30\xa6\xc2\xa0\xa8\xbd\x0d\x8a\xf1\x99\x62\x45\x42\xcd\x6c\x7e\x1c\x10\x15\x08\x7a\x30\xe8\x27\x5d\x1b\x69\xd6\x58\xd3\x89\x8c\xe2\x5a\x23\x43\x61\xde\x17\x90\xc2\xdc\x30\x28\x42\xd3\xa2\x21\x08\x15\x8d\xca\x8a\x86\x20\x54\xd0\x4d\x3d\x0d\xc2\x17\xc7\x31\xe8\x66\x52\x59\xa0\x18\x0c\x36\xcd\x1a\x1b\xba\x69\x8d\x20\xb9\x40\x26\xe0\x28\xfd\xce\xba\xd6\xaa\xc3\xe4\x16\xc3\x8a\xc8\xe8\xb5\xbf\x12\xde\xeb\x97\x16\x84\x97\x3a\x75\x04\xfe\xab\x9b\xd4\x8c\x33\x13\x83\x81\x60\x25\x34\xe1\xcd\x5a\x84\x57\x92\x9c\x26\xca\x67\xd8\x58\xfd\x21\x5f\xf4\x05\x26\xa9\xa0\x53\x31\x34\x5e\x28\x27\xb9\x72\x8b\xcf\xcc\x2d\x3e\x55\x07\xec\x3a\x18\xbc\xa0\x0c\x1b\x11\x23\x27\xed\x88\x27\xd7\x70\xf2\xac\xa3\x4a\xd4\x66\x11\x72\xfb\x08\x17\xd7\x8c\x24\x66\x50\x96\x46\xc8\xe5\x0e\xdb\xf8\x5a\xbc\x67\x9a\xf8\x71\x88\x95\x00\x5e\xc3\xc5\x00\x38\x4f\xb4\x62\x9a\xfa\x05\xdf\x54\xe3\xc1\x60\x0b\xf1\xd1\x76\x9c\xe6\x28\x47\x3d\x40\xa8\x7b\x71\xda\xd3\x29\x0b\x3f\x0f\x66\x6d\x65\x20\x70\xd6\xdc\x72\xe3\xc2\x47\xa6\x54\xdf\xf1\x74\x0b\xb1\xf8\x95\xca\x34\x7f\x23\xc9\x4c\xbe\xf1\x1e\x78\x4a\x2f\xa9\xed\x04\xb8\x4f\xe9\x2f\xb3\x83\x54\xab\xc0\x5e\xaa\x5c\x1f\x90\xb2\x54\x26\xc9\x78\xbf\x27\x8a\x73\x3a\x26\x04\xff\x3b\xbc\xb3\x76\xdb\x3c\xe1\xa2\x36\xd8\x99\x7d\xff\xea\x12\x81\x73\x2a\x61\x76\x26\x11\x81\x84\xc5\x97\x74\xe1\xf5\x1d\x22\x1d\x9c\xf5\x1d\x82\xca\xeb\x3c\xbb\x2d\x10\xc4\x40\x3e\x54\x21\xbc\xcd\xc3\x4d\xfb\xe2\xf4\xbf\x1f\xee\x43\xd6\xd6\x0c\xf5\xa1\x5c\xd6\x4b\x46\xbc\xf6\x99\x7b\x8c\x39\xc7\x5c\x16\x50\xa1\xa5\x39\x7b\x30\x3d\x54\x29\x18\x0c\x5a\x67\x6d\xaa\x76\x52\xb6\x8f\x1e\xf4\x29\x8c\x30\x71\x37\x4f\x4a\x94\x7f\xe9\x8e\x60\xf7\x53\xcc\x1a\x1f\xb4\x2d\xf3\x5e\x0b\xba\xe2\x74\xad\x71\x64\xc2\x01\xf0\x9a\x6f\x1a\xf7\x07\x08\x3a\x1e\x73\xa3\x0d\x4d\xa8\xec\x00\x9e\x6d\xc9\xb9\xac\x83\x68\xa4\xb4\x54\x37\xb2\x85\x85\xa7\x4a\xb3\x68\x96\xd6\x93\x83\xbd\xd2\x90\xd5\xb1\xe8\x75\xb7\x57\xe3\x46\x2f\xa7\xc7\x91\x20\xed\x40\x82\xb2\x19\xac\x01\x7b\xa2\xb1\x6d\xda\x6c\xae\xa5\x54\x04\x33\x6c\xe1\x2e\xdd\xbb\x96\xd1\x80\xd8\x62\x38\x8d\xd0\x42\xb8\x66\xd5\xa5\x75\xa4\x71\xe9\x8c\x47\x7c\xbc\x3a\xa8\xd5\x22\x25\xcb\x94\x6c\x52\x12\xa5\xf4\x2c\x4c\x36\xd7\xe1\x95\xe5\xff\x8a\x83\x47\x57\xf8\x2c\x26\xd7\x29\x3d\xcb\x36\xe1\x22\x2e\xbf\x5c\x15\x8f\xe8\x55\xf1\x48\x7c\xc4\x67\x64\x05\x37\x52\x65\xb6\xa9\xf2\x78\x75\x5d\x56\xf3\xac\x2c\xb3\x75\x95\xb0\x65\x89\x1f\x9c\x91\x35\x7c\x4e\x39\x4f\x0c\x9b\xad\x35\xeb\x9f\x2e\x7c\x16\x06\x78\x34\xc4\x67\xe4\x0b\xff\x2c\x22\xd3\x9e\x91\xcf\x69\xe3\x8e\xee\x57\x0b\x0d\x97\xe5\x10\x61\x6b\xf4\x08\x3f\x90\xf7\x73\xf3\x63\x79\x66\xfd\xcd\x1d\xf6\xc3\xd3\xdf\xff\x4f\x30\x54\x99\xef\xda\x99\xfd\xe1\x69\x80\xa9\x2a\x23\x73\xdd\xa6\x74\xf7\xcd\xfb\x6f\x7f\xf1\x64\xbc\xd9\x3d\xb9\x4c\xe9\x4e\xc7\x40\x46\x2a\x08\x32\x22\x9f\xe3\x22\x9e\xc7\x49\x5c\x7e\xf1\xd0\x35\x84\x7d\x46\x44\x85\xbd\xd5\x85\x5f\xa6\x74\x97\xb0\xb2\x64\xb9\x74\xd5\xe9\xd9\x64\x99\xa5\xe5\x3f\x45\xb8\xed\x89\x6d\xef\xc9\xbb\x94\xfa\xe8\x32\xdb\x20\x82\x20\x20\x2f\x22\xe8\x1b\x80\x1b\x22\xe8\x0d\x5b\x96\x28\x20\x37\x3c\xcb\x3f\x21\xc4\x33\x22\xe8\x3d\x22\xe8\x6d\xf6\x3b\x22\x68\x5d\xa0\xa0\xa5\x7a\xb8\x28\xda\x1e\x32\xfe\xe8\xbc\xb0\xed\xf9\x7f\xb7\x27\x05\xb5\x75\x5c\x23\x1d\xd1\x51\xba\xac\x58\x42\x78\x92\xb8\x56\xcb\x8b\x9f\x17\x10\xd4\x33\xf4\x39\x05\x0f\x60\x9f\x2b\x0a\x5e\x2f\xdf\x89\xfa\x8e\xc1\x98\x87\x8a\x20\x08\xe7\xe4\x0b\xe9\x0a\x56\x85\x07\xa8\x4b\xe2\x3d\xe1\x69\x9d\x21\xbd\x8a\xeb\xec\xb6\x63\x85\xbc\x13\xe3\x82\xb3\xa0\xeb\x38\xea\xba\x45\x78\x27\xa9\x92\x0c\x2c\xd4\x41\x86\x0e\x43\x08\xb1\x99\x54\x60\xe2\xcd\x5a\xf2\x56\x89\xd7\x6f\xe1\xee\x48\x84\x2f\x45\x23\x33\xbd\xf2\x64\x41\xfd\x2e\x0a\x1f\xc4\xeb\x5c\x14\x85\x8e\xfc\x01\x8b\xab\xed\x4f\x5d\x7a\xc5\xd7\xda\x5f\x1b\x9e\x86\x64\x66\xed\x4c\x5d\xba\x05\x46\x0e\xf2\x52\xf0\x62\xbf\x28\x8a\x77\x10\xe9\xc5\xdb\x2d\xb2\x64\xbb\x4e\xc1\x29\x8a\xd7\xb7\xc9\x32\x4e\x92\xf7\xb2\xad\x7e\x03\x2f\xfb\x36\x49\xe2\x94\xfd\xa0\xdf\xb2\x3a\x9b\x88\x1f\x0e\x0f\x9b\xeb\x30\x05\x75\xd8\xdb\x38\xca\x6e\xe1\xe9\x77\xe1\x0a\x9e\x3f\x65\xd9\x1a\xcc\xd8\x17\x05\xd8\x35\x16\xde\x0e\x2d\x93\x2c\x2c\x91\x79\x6b\xb9\x28\x0a\x08\x59\x3d\x43\xea\x09\x79\x08\x90\x42\xbc\xec\x09\xbc\x1c\xa8\xf2\x0b\xc7\x21\xc2\x87\x3e\x6b\x79\x4e\x6b\xe8\x32\x08\x0c\x6b\xf8\x3a\x6c\xc6\x95\x4d\x31\x38\x88\x81\x6c\xe0\x0f\x4a\x22\x30\xf4\x19\xc4\x1e\xab\x99\x40\x2f\xad\x84\x6c\xc1\x77\x9a\xf8\x50\x47\xa8\x30\xdf\xb7\x81\x08\x46\xa1\xb8\x83\xa2\xf6\xae\x5f\x40\x08\x89\x42\xba\xd5\xef\x3b\x24\xd6\x31\x24\x12\x3f\x05\xe7\x70\xa1\x56\xcd\x31\xf4\x41\x69\x08\x05\xef\x52\x21\xea\x08\xf6\x38\xa7\x56\xc6\xe5\x2f\x07\x3f\xca\x7c\x37\x18\x1a\x61\xc0\x8d\xf5\xc4\x05\x69\x15\xf1\x07\x93\xbe\x32\x4b\xa8\xaa\x3a\x0c\x10\xaf\x3d\x2e\xde\x85\xef\x2c\x70\x27\xa8\x3e\xf4\x29\x0d\xd5\xc8\x04\x22\x09\xa0\xe4\x43\x8a\x36\x77\xa8\x69\x6c\x96\xb0\x30\x87\xb3\x84\x8f\xc2\xc5\x33\x92\xae\x0a\x6d\xb8\x8d\xd2\x8e\xe6\xe6\xe1\xe2\x66\x95\x67\xdb\x34\xe2\x7b\x94\xc5\x07\x4d\x51\x9c\x5e\xb3\x3c\xe6\x1c\x7b\x51\x07\x2d\x28\x60\x84\x85\x0e\x5a\x10\x63\x88\x7c\x8c\x31\x78\x3a\x80\x82\xb9\x3c\x76\x5f\xe0\x9d\xc4\xf7\x0e\x6c\xb9\x67\xfa\x6b\x1d\xe7\x3f\x9e\x78\x89\x27\x5f\x37\xfd\xad\x19\x0f\xeb\x19\xb7\xb9\x68\x43\x42\xe9\xd2\x27\x14\x4b\x39\x05\xa5\x2b\x94\x82\x63\x6e\x39\x1f\x29\xe7\xd5\x5f\xa6\x90\xe9\x65\x0a\x8e\xe9\x90\xf4\xe3\x9e\xcf\xac\x8c\x1a\x93\x1d\x4a\xb5\x7f\x5b\x1e\xcf\xbc\xdb\xae\x59\x1e\x73\x81\x78\x96\x55\x95\xed\x85\xd8\x0b\xf7\x9d\x01\xf6\x67\xd6\x32\xa5\x26\x93\x65\x7a\xf2\x6e\x06\x91\x2f\x45\x10\xf9\x3d\xd9\xa4\xdd\x4e\xde\xa5\x1f\xa6\xbc\xaa\xc4\x3e\xb1\xa5\xc5\xac\x10\xa6\xe8\xc2\x56\x0f\x0c\xa5\xad\x14\x57\x15\x87\x99\x57\x1a\x8b\xaf\x5e\x28\x16\x92\x02\xfa\xfd\x47\x6e\xe0\x15\xcf\xdc\x44\x30\xe7\x09\x84\x40\xb7\xc5\x83\xc1\x97\x54\x45\x39\x00\xc9\x28\x91\x31\xfc\x33\x9a\x8c\xd6\x71\x2a\x22\xbe\x87\xfc\x25\xbc\x13\x2f\x75\xba\x91\xaa\xca\xd1\x2d\x1f\x8d\xac\x43\xa5\xc5\x66\x99\x8c\x18\xa5\x42\x8c\xc9\x76\x8f\xbd\xef\xdb\x9e\x52\x94\xe3\x30\x80\xe8\x60\xd0\x00\xbe\xe9\xf0\xdc\xcc\xf6\x27\x01\x7e\x04\xb2\x62\xd1\x6f\x07\x83\x64\x30\xe0\x4b\x07\x0e\xed\x13\xc0\x2a\x13\x6c\xfd\x55\x1b\x6e\x9c\x81\x03\x03\xea\x7c\x9b\x0a\x47\x00\x7c\x11\x84\xe2\x10\x04\x3e\x02\x65\x82\x47\xda\xec\x39\xa4\x61\x22\xea\xa0\x88\x6f\x32\x1f\xe3\xdf\x99\xda\xa5\xd8\x1a\x79\x1c\xae\xc9\x68\x13\xdf\x31\x70\x06\x33\xe4\x64\x45\x15\x88\xcd\x9a\x39\x48\x01\xfd\xb7\x33\xe1\xe4\xde\xdb\x36\x9c\xa6\x4b\x97\xfa\x44\xfa\xd8\xef\xf0\x60\xaf\x97\xe7\xa1\x03\xfb\x86\x01\x52\x3a\xb3\x85\xbd\x29\x38\xe8\x81\x09\x1d\x0c\xd6\x12\x2c\x9a\xac\x22\xc9\xef\x21\x8c\x81\x97\xb9\x0d\x37\x16\x23\x97\x29\x39\x64\x3d\x3e\xc2\xe1\x61\x8e\xf7\xd8\x53\x8f\xda\x66\xf0\x78\x7c\x88\x7c\x30\x58\x9a\xc2\xc5\x8d\xf8\x3c\x7b\x25\xaa\x30\x49\xef\x3c\xbb\xfb\x18\xff\x1e\xa7\xab\xc1\x00\xcd\x61\x8f\x3e\x95\xa6\xb9\x75\x77\x75\x1e\x24\x36\x1d\x12\x63\xcf\x3e\xf0\xce\x2f\xf7\x7a\x4d\xfe\x84\x53\x7c\x99\x7a\x00\xb5\x9a\x5c\x5c\x4b\xf0\x58\x60\x78\x65\xe2\xc0\xac\x85\x12\x52\xe7\x53\xb9\xe9\x17\xaf\x22\xec\xdf\x6c\x64\x3b\x8f\x0c\xaa\x26\xd8\xf5\xd1\x03\x07\x0f\x11\xf2\x4a\xe0\x6b\x10\xea\xf2\xfd\xaf\x4c\xd7\x05\x81\xce\x5b\x68\x48\x64\x88\x3d\x45\x15\x4b\x3c\x43\x20\xd9\x58\x6a\x60\x68\xe8\xd8\xf6\x23\x10\x05\x3c\x84\x48\x46\xe1\xa6\x53\xf4\xad\xaa\x52\xfd\x84\xd0\x34\x1d\x71\xe6\x86\x3a\xc4\x2a\x9f\x53\x87\x27\xc1\x9e\x34\x18\x20\x75\x84\x9b\xc7\x6b\xab\x3e\x10\x8d\xc4\x65\xcd\x60\x70\x70\xee\x01\xf1\x38\xdb\x67\x21\x48\x34\x85\x24\xb2\x0b\x47\x48\xfd\xbc\x86\x93\xa5\x7a\x43\xa3\x54\x9f\x51\x36\x9a\x8b\xb1\x97\x81\xa1\x8d\xba\xea\x68\x49\x8b\x3a\xac\x12\x4b\x62\x2e\x89\xbd\x05\xa9\x0b\xc4\x8f\xd6\xbc\xaf\xeb\x2f\xf7\xcc\x7d\x69\xe0\xff\x4e\x4b\x41\x71\xca\xb9\xc8\x53\x25\x0c\x6d\x52\xe2\x33\x82\x8c\x1a\x51\x60\x98\x72\x35\x8e\x6c\x81\x1a\x7c\x90\x62\x97\xb0\x05\x49\x47\x1b\xf3\x5d\x05\x4a\x00\xc1\x29\x11\x72\xd2\x9f\x5b\xef\xc6\x6a\xb7\x24\x3b\x5d\xd6\x94\x30\x95\xa6\x36\xba\x55\x0b\xfb\x65\x00\xc4\xc9\x6b\x84\xd6\x50\x6c\xfc\x26\xaf\x5d\x9b\x8b\xe9\x29\xa4\x9d\xb5\x91\x32\x12\xa2\x62\x37\xc5\x37\xa8\xcd\x33\x6a\xf3\x55\x24\x52\x04\x1f\xfe\x8c\xda\x4d\x75\x09\x35\x79\x3f\x40\x95\xef\x21\x2b\xe7\x39\x52\x19\x9e\x4f\x71\x2b\x9a\x0b\x1e\xc9\x99\x51\x9c\x4a\x93\x84\xd5\xe1\x5f\x54\x5f\x41\xc4\xed\x74\xa0\xdf\xef\x1e\x16\x1c\x99\x18\xfe\x40\x60\xa6\xf9\x6a\xda\x88\xd0\x14\xfc\x51\x10\x27\x0f\xc1\x30\xbb\x6e\x0d\xf5\x9c\xb1\x21\x9f\x35\x71\x80\xea\x99\xa7\x29\xea\xd0\x4a\xdc\x21\xee\xf6\x10\x99\xb0\x23\xf0\x62\xed\x2f\xcd\xe3\x6c\xf5\x44\x6a\x7b\xc4\x3e\x1b\xbe\x4b\xfd\x3c\xe0\xf5\x67\xa0\xf5\x91\xf9\xf9\xa9\x0b\xbf\xb6\xa1\x4e\xbd\x27\x5f\x0c\x85\x16\xab\xdd\x37\xce\x94\xd2\x1b\x15\xcd\xe1\x55\x4a\xcf\xfe\x8f\x6b\x9f\xad\xc8\xc7\x94\x9e\x5d\xf9\x57\xc1\x83\x33\xf2\x82\x3f\xe6\xb3\xab\xf4\x6c\x45\xfe\x2d\xd5\x75\x85\xa3\x06\x15\xfb\x3b\x5e\x87\x2b\x56\xe5\xac\x60\x65\xb5\x8c\x13\x06\xea\xbb\xdf\xa6\xf7\x45\x0d\xbf\x61\x5f\x56\x2c\xc5\x67\x71\x4b\xf4\x2f\x94\x86\x4d\xb7\xf1\x39\x28\xc5\x5a\xd2\x16\x4f\xe6\x14\xc2\x3d\x9f\xfb\x66\xd2\xb1\x13\xa8\xd6\xe9\xa1\x56\x4c\x81\x20\x7f\xe2\xe4\x89\x09\x2e\xa7\xa8\xc3\x7b\x81\xf6\x9a\x61\x8d\x24\x04\xe7\x7d\x97\x19\xa3\xe1\x20\x87\xcf\x63\xe3\x50\x2d\x05\x2f\x0f\x7d\x2d\x47\xc7\x85\x85\xbc\x3a\xd2\xe3\x60\xf0\x6d\xda\x65\x3e\x3f\x18\xf4\xff\x9d\x1a\x06\x0a\xf2\xf0\x4b\x5e\x51\xf4\x4b\xfd\x0d\xef\x71\x73\x7c\xc6\xb6\xd2\x8c\xa5\xda\xe4\xa7\x52\x11\xf7\xb2\x71\x58\x32\x93\x9a\x05\x69\x87\xa6\xce\x8e\x0f\xc4\x2b\x61\x3c\x44\x04\x1e\xaa\x55\x95\x5e\xa4\x04\x5d\xe5\x57\x29\xf8\xf1\xf0\x3a\xb2\xa6\xdd\x59\xc5\x85\xb7\xdc\xc9\x61\xa6\x69\x93\xd4\xa9\x80\xfc\x70\xe3\xde\x1c\x62\xfb\x30\xb3\xc4\xb3\xd2\x52\xc6\xe9\xe5\x8c\xef\xbb\x24\xf6\x55\x68\xca\x80\x42\x18\x17\xf6\xd3\x8f\xaf\xb9\x6c\x90\xa5\xa0\x49\x82\x87\x88\xa2\x61\xc7\x97\x12\xef\x85\x54\x2d\x64\x1d\x10\xb2\xc2\x7f\x87\x77\x1f\x59\x59\xc6\xe9\x4a\x28\xe1\x99\x09\xa3\x32\x0f\x23\x20\xb8\xa1\x70\x82\xac\xa0\xca\xd7\xa0\xb2\xae\x53\x4e\x94\x3f\x24\x61\x9c\x4a\x57\xf0\x0c\xae\x4c\x81\xf2\x30\x93\x03\xcb\x2c\x8d\x3e\x42\xfb\x0e\x00\xc9\x97\xad\x76\x3f\x9f\x0b\x2b\xec\x6f\xad\x9c\x30\x3f\x0f\x48\x6a\x9c\x59\xc5\xd2\xe9\xf8\xc0\xd0\xbe\x78\x95\x12\x34\x44\xb8\x76\x7d\x84\xe6\xc9\x36\xef\x81\xaf\x85\x9e\x74\xc0\xd0\x53\x9e\x17\x7a\x49\x16\x46\xbd\x9c\x15\xf1\xef\xac\x27\xdc\x12\xf6\x84\x23\xb9\x1e\x78\x21\xe9\x45\xf3\x44\x3c\x80\x73\xa4\x28\xbb\x4d\xc5\xd3\x76\x23\x7e\x39\x77\xd0\xd3\xfe\x94\x7a\xca\x85\x52\xaf\x76\xb7\xd4\xab\x5d\x2c\xf5\x84\x3b\x89\x9e\x54\xb6\xaf\xbd\xfe\x40\xbd\xca\xfb\x0f\x7f\xd8\x6e\x7a\x2c\xcf\xb3\xbc\x67\x44\x93\x69\xfa\x98\xec\xd0\xe7\x28\x03\xda\xb9\x85\x1e\x9c\xd4\xd9\xe2\xd4\x8c\xa3\x93\x52\x78\x4b\x95\xeb\x31\x69\xce\x5d\x76\x5c\xb9\x5c\xf3\x21\xde\x63\x75\x5e\x8f\x99\x6f\xcd\xf5\xb0\xad\x12\x5c\x96\x83\x8b\xa8\xa3\xb1\xff\xb4\x57\x01\x71\xcb\x04\xc7\x8c\xdb\xf4\xa0\x48\xab\xc0\x72\xa9\x4b\xe0\xda\xa5\xe1\x1f\x3b\x2f\x28\x89\xe0\xe5\x79\x1b\x47\x4a\x35\xec\x8a\xda\x20\x9c\x19\xcd\xa3\x47\x8f\x90\x84\x1e\x4f\x28\x09\xab\x2a\x9e\x26\x42\xcd\xc1\xfe\xf3\x26\x25\x3f\xa4\xe4\xb7\x94\x6a\xf7\x6c\x9f\xf8\xe6\x33\x3b\x23\x6f\x53\x7a\xf6\x97\xd1\xa3\x07\x67\xe4\x7d\x4a\xcf\x2c\x7f\x36\x08\xf0\x27\xea\xff\x3a\x08\x1e\x9d\x91\xef\x60\xab\x19\x3d\x9a\x61\xcf\xef\x5d\x95\xc1\x23\xcb\xff\x95\x53\x95\xe0\x11\xbe\xca\x67\x0f\xce\x56\x6b\xf2\x8d\xdc\x8d\xc2\x79\xb6\x2d\xab\x70\xb3\xe1\x7f\xa7\x45\x99\xe5\x7c\xeb\x1a\x0d\x4f\x61\xf2\x0a\x61\xd0\x93\xc0\x66\x56\xdd\xc6\xd1\x8a\x95\xd8\x7b\x70\x46\x3e\xc8\xe2\xdf\xbf\xba\xac\x7e\x78\xf5\xe2\x5b\xfc\xe0\x8c\xfc\x08\x86\x24\x67\x57\x67\x67\xe4\x9f\xf0\xd9\xbf\xba\x1d\x0d\x4f\x83\xa1\x07\x61\x89\xce\xae\xce\x78\x37\xce\x66\x7f\xf1\x44\xa0\x22\xcf\xba\x8a\x86\xb8\xc2\x15\x3e\x23\x0f\x60\x88\xcb\x74\xc4\x97\x10\x79\x9d\x72\x06\xe0\x77\xf8\xff\x73\x4a\xd1\xa3\x33\xa4\xfc\xf4\xa2\x47\x52\xd7\xf3\x87\x94\xfe\x15\x82\x9e\xc9\x93\xa2\x9f\x52\xcc\xd3\x0e\x0c\x1d\x42\x84\xc9\x0f\x29\xe4\xa4\x08\x91\x1f\x52\x2a\xdf\xf6\x6f\x52\xfa\x4f\x79\xea\xf6\x43\x2b\xd4\xa0\x08\x5d\x52\xf7\xe8\x40\x4c\xef\x34\xef\x1f\x0c\x1e\xa4\xea\x64\xf0\x41\xda\xed\x7a\x63\x6a\x0a\xf8\xf0\x6d\x4b\x99\x19\x6f\x5f\xd3\xa8\xad\x88\xf8\x10\x6b\x7b\xbf\x2d\x61\xda\xcb\x33\xd3\xa9\x36\x9c\x5b\x35\x89\x7d\x8a\x67\xda\x6f\x84\x97\x0e\x06\x5d\x41\x1d\xac\x90\xa2\x0f\xef\x3f\x5e\x22\x4c\x0a\x43\x95\xa6\xeb\xf2\x35\x34\x2e\x5e\xaf\xcb\x75\x22\x2e\x62\xbd\x74\x8f\x47\x51\x96\x32\xcb\xdc\x0e\xb3\x1a\xe5\x49\x21\x74\x18\x63\xce\x73\x23\x61\xad\xa2\xaf\x12\xc5\x8e\x56\xb0\x1f\x2e\xdf\xbe\xe1\x54\x5e\xf8\x28\x88\xc5\x9d\xd9\x68\x91\xad\x37\x09\x2b\x99\xc5\x85\xe5\xc6\x2a\x96\x67\xf3\x39\xc9\xaa\xca\x07\x77\x9b\x9b\x2c\x2d\x40\xa9\x81\x94\x84\x05\x9c\x57\x95\xca\xdc\x5a\x9c\x80\x9d\xa8\x0c\xf3\x12\x11\xf9\x0c\xf2\x05\x7f\x7c\x29\x1b\x92\xaf\xaf\x38\xed\x54\xb9\xb6\x70\xb3\xa2\xde\x58\x1a\x75\x09\x23\x6d\xf2\xd9\x45\x31\xda\xb7\x02\xe0\x07\x8a\x79\x36\x49\xc2\xa2\x7c\x9b\x45\x10\xb0\xd0\xdb\xed\x09\x2b\xc3\x15\xc4\xe8\x32\xb6\x4e\x0f\x66\xe2\x87\xd4\xbc\x07\x8f\x8b\x37\xd9\x22\x4c\xbc\x6f\x24\x9f\xf3\x26\xf5\x9d\x00\xeb\x3b\x70\x9b\x6c\xf2\x8c\xf7\x1d\x74\x1a\xfa\xb6\xba\x25\xd7\xee\x2e\xc4\x54\x72\xfc\x8c\x17\xe0\xf2\xef\xec\xee\xf4\xf6\xf6\xf6\x74\x99\xe5\xeb\xd3\x6d\x9e\x88\x2d\x3f\x9a\x82\x47\x66\xce\x10\xff\x74\xf9\xdd\xe9\x13\x44\x84\x66\x42\xe1\xed\xd0\x23\xe4\xfd\x9c\x12\xb0\xed\x41\xfc\xff\xd9\x86\x6f\xda\x48\x28\xb6\x8b\x14\x81\x29\x77\xfc\xbd\xd1\xd2\x3a\x21\x3d\xc8\x70\xc7\xbf\xff\xbb\x80\x1b\x38\x23\x03\x4f\x91\x39\xfe\x1d\x7e\x0e\xe5\x4d\xbf\x61\xbe\xbb\xe3\x75\xf2\xd2\x67\xa2\x39\x68\xe9\x4c\xd4\x04\xa5\xcf\xf6\x44\xe1\xc5\x77\x60\x5a\x26\x8a\x20\x95\xf8\xf3\xdb\x37\x48\xf6\xdd\xc4\x1f\xd5\x19\x95\xf6\xd7\x8f\xef\xdf\x89\x76\x3f\xb3\x9c\x0b\x44\x7c\xdc\xd0\x31\xe4\x7d\x84\xb5\x4f\x60\xa4\x3d\x18\x29\x07\xaf\x78\xe5\xb5\xc0\x7d\x08\x20\x38\xaf\x45\x7e\xe0\x03\xd6\xe9\x3f\xbf\x7d\xb3\x27\xcb\x24\x2c\xdf\x0b\x9b\x04\x31\xcf\x6a\x8e\xc0\x13\xc9\x5e\x63\xc2\x76\x73\x4c\x44\xff\xcd\xfa\x4d\xd8\xb7\x9a\x38\x83\x49\x89\xbd\xdf\xac\x56\x2a\x98\x4e\xf3\x84\x0f\x39\x93\xa7\x35\x6f\xac\xd7\x29\x86\xb4\xcb\x3c\x4c\x0b\x2e\x81\x7a\x6f\xac\xdf\x65\x5a\x4b\xb0\x56\x6f\xbd\xbc\x7d\x04\xbf\x24\x9f\xc9\x9c\xdc\x92\x97\x34\x9d\xba\x7d\x4a\xef\x06\x03\xeb\x8e\xba\x64\x3b\x18\xc0\xed\xc1\x65\xbc\xe6\xcc\x8d\xb5\xc5\x64\x41\x4b\x52\xd0\xb8\xaa\x10\x22\x97\xa3\x9c\x85\xd1\x97\x8f\x65\x58\x32\xca\x9e\xdb\xb3\x89\x67\x93\x8c\xb2\xe7\xd4\xb5\xed\xc1\x60\x6c\xdb\xcf\x59\x55\x8d\xed\x09\xa5\x94\x91\x7c\x30\xb0\xe6\xf4\x93\xb5\x21\x97\x70\xd2\x3e\xa7\x6f\xad\x0d\x99\x93\x4b\x92\x61\x92\xcd\xac\xcd\x28\x5e\xaa\xc5\x34\x18\x58\xb7\xf4\x92\xf3\xcf\x3f\xca\xc9\xfc\x01\xec\x50\x2d\xf4\x26\x2c\xca\x53\x95\x0d\x61\x72\x2b\xc4\x79\x73\x25\xfa\x61\x40\x6f\x31\x39\x52\x01\x5f\xa3\x75\x39\xfe\x26\xf2\x63\xe2\x8a\x8e\x56\x15\xe2\x3b\x22\x17\xd6\x37\xc2\xe3\xd8\x4b\x8a\xd2\x4c\xa2\x2f\xf2\xe4\x78\x44\x6a\xb9\x56\x5d\xf1\xac\x97\x74\x3e\x2a\x38\x2c\xc8\x92\xce\x45\xa8\x87\xcf\x74\x3e\x02\x7e\x8e\x64\xb4\xff\x19\x63\xcf\xfa\x4c\x5f\x12\x8b\x55\x55\xff\x25\x97\x7b\x5e\x52\xc4\x04\xc9\xb2\x9f\x83\x4b\x51\x6a\x63\x8c\xc9\x25\xd4\xb3\x2d\x28\xd3\x8f\x10\x33\xd3\x4a\xab\xea\x25\x1e\x22\x44\xb2\xd9\x8a\xd3\xce\x2c\xf9\x2c\xb4\x07\x22\xe2\x2f\xc9\x4b\x72\x19\x60\x8f\x7f\xe0\xbb\x85\x4a\xbf\x24\x2f\xc9\xe7\xa0\xae\xf4\x65\x16\x31\xeb\x0b\x26\x5f\x68\x49\x92\xc1\xe0\x5a\xb3\x7e\xd9\xac\x41\x37\x3d\x93\xa2\xfa\x97\x64\x43\xb2\xd9\xd2\xe3\x35\xad\x47\xcb\x38\x67\x46\xfd\x01\xe6\x35\x59\x75\x55\x2d\xda\xcc\x4b\x07\x98\x9c\x9e\xc2\x7d\x37\x27\x9e\x86\x47\xba\x46\x19\x20\xed\x18\xe3\xfd\xa1\x6f\x26\x10\x54\x18\x11\x4e\x3c\x69\x0a\x71\x49\x3a\xf4\x3d\x45\x80\x3c\xbd\xee\xac\xdd\x9e\xa4\x98\x44\x74\xa3\xfc\xa4\x54\xd5\x86\x5c\xd7\xaf\x83\x81\x15\x19\x5a\xb4\x91\x14\x66\xe0\xa0\x29\xaa\x7d\x30\x93\x15\xaf\xf6\x5b\xb6\x64\x79\xce\x22\x0b\x8b\x68\x6c\x2f\xc3\x24\x99\x87\x8b\x9b\xc2\x42\x59\xba\x60\xbd\x35\x5b\x67\xf9\x17\xc4\x81\xbb\x31\xc0\x0d\x16\x2c\x9f\x39\x37\x34\xe7\xff\xee\xa8\x4d\x6e\x29\x12\x6e\x61\x59\x84\xc8\x25\xdd\xd5\x2b\xc9\xb3\xc9\x01\xda\x1e\xea\xba\x70\xf9\xcd\xa5\x94\xde\x89\x80\x46\x4b\x2c\x82\xaf\xed\xf6\xd3\x92\x7e\x27\xb9\xa2\x02\x4f\xf1\xd2\x2f\x0f\x4d\x71\x68\xe9\xbb\xc1\xb4\xa4\x4b\x9f\xb5\xbe\xec\x1b\x52\x74\x29\xa4\xe8\x72\xcf\x7b\xf4\x22\x49\x9a\x9d\x2a\x3a\x0e\x24\xa0\x4b\xb3\x42\x7a\xf9\x28\xf8\x38\x7e\xdb\xb2\xa2\x3c\x18\x86\x79\x3a\xdc\xe8\x82\x62\x9f\xee\xaa\xca\x62\x74\xee\xa7\x01\xfc\xab\x2a\x46\x3e\xfb\x2c\xa0\xa5\xe2\x0f\xb8\x50\x92\xc7\x11\x7b\x1b\xaf\x65\x30\xb9\xc3\x4d\xfc\x0e\x42\xb0\xad\x65\x0e\xca\x54\xd9\x7a\x6a\xba\x21\x0b\xbe\x71\xdc\xe7\x77\x00\xd5\x52\x08\xa2\x5f\x38\xa3\xe0\x7f\x11\xf1\x22\xca\x20\x10\x92\xea\xe5\x28\x4c\x6e\xc3\x2f\x85\xc5\x7c\xb5\xc0\x5a\x7e\xc2\x48\x38\xe7\x64\xb9\xc3\x65\x4a\x55\xdd\xea\xf8\x2b\x83\xc1\x62\x04\x19\xad\x12\x93\xdc\xb2\x95\xcb\xe7\x3d\x48\xea\xab\xd1\x26\xcf\xd6\x71\xc1\xac\xcb\x9a\xb9\xa2\xeb\x51\x18\x45\x7c\x5d\x8b\x15\x4b\x2f\x81\x9d\x23\x97\x82\xe4\xd0\xcb\xd1\x32\x8c\x13\xb2\x19\x6d\xf3\x84\x5a\x9c\xe8\xc0\x63\x55\xfd\x90\x72\x1a\x52\x4b\xce\x6f\xe1\x28\x5c\xbf\xfe\x98\x12\x60\x48\x86\xe8\xec\x0c\x61\x22\x88\x20\x4d\x47\x6b\x56\x5e\x67\x51\x55\xa5\x52\x2d\x73\xa3\x53\x44\x16\xb2\x19\x29\x3e\xb3\xd0\x07\xee\x75\x1a\x17\x8e\x10\x6e\x4e\xf6\x41\x50\x42\x81\x77\x9b\xd1\x22\xcf\x8a\xe2\xdb\x6c\x1d\xc6\x29\xf0\xd0\x8a\xd1\x87\x11\xb4\x78\x7d\xd2\xc8\x4e\xfb\xc2\x81\xb0\xef\x04\x94\x52\x18\xc8\x60\x10\xfb\xae\x7c\x73\x03\x08\xc1\x34\x0e\xaa\xca\x42\xd7\x65\xb9\xf1\x38\xa1\xe7\xb9\x67\xe8\x89\x8d\x3c\x34\x99\x8c\x11\xdc\x67\x73\xae\xac\x95\x0d\x6a\x6b\xe4\x83\xd6\xf9\x08\x07\x83\xcd\xc8\xe0\xda\x6a\x7f\x1e\x5a\xbc\x50\xf9\x24\x48\xa8\x3e\xfd\x13\xef\x1c\xce\xc6\x21\x0b\x26\x3f\x58\xaf\x53\xb2\x21\x29\xb9\xc4\x44\xac\x74\x89\x2b\x97\xd3\x84\x6e\xa4\xa1\x0a\xa7\xbb\xb6\xb8\xdf\x10\x84\x75\x38\x3c\x0c\x9b\x6a\x19\x1c\xb4\x9e\x4f\xf1\x33\x2a\xb3\x9f\x36\x1b\xad\x55\xbe\x19\x5d\x87\x85\xd2\x5b\xee\x7f\x90\xec\xa9\xc8\x8a\x49\x48\x01\xfc\x8d\x5c\xb0\xc0\xe4\xc0\xe4\xf7\x21\xb5\x3e\xc9\x92\x21\x9e\xa1\x01\xf2\xd0\x0c\xe1\xa1\x1c\xa6\xd4\x47\x15\x6f\x30\x77\xe1\xe2\x9a\x29\xdf\x78\x02\x59\xdf\xd7\xc5\x43\x8d\x96\xef\x53\x82\x1e\x38\x9f\x28\x1a\xfe\x96\x0e\x87\xd8\x0b\x87\x9d\xcd\x20\x9d\x83\x57\xde\x60\x29\x0e\xf9\x84\xc1\xe0\x72\xd4\x26\x52\x16\x7a\xbd\xd4\x1c\xc6\xe9\xc7\x38\x5d\x30\x44\x0e\x8b\x0a\x89\x40\xb0\x0f\x47\xab\x79\x97\xa5\xec\xf4\x2d\xc7\x71\x64\x64\xc7\x98\x58\x35\xd6\xd4\xb0\xe4\x6f\x06\x87\x2f\x23\x37\xa6\x66\x1a\xee\x6e\x4a\x56\x70\xca\xb3\x20\xd2\xa8\x05\x36\xfe\x83\x02\x2f\x40\x12\x40\xe6\x92\x05\x0b\xfc\x8d\xd4\x5e\x2e\xfc\xe6\x97\x60\x76\xf4\xcb\x90\xcb\xf4\x7d\xbe\x68\xcd\xe4\x19\x22\x3d\x34\xfc\x39\x1d\xa2\x69\xef\x37\x6a\x8f\x6c\xb8\x23\xc4\x5e\x5d\x0d\x7a\x84\x02\xa1\xc0\x0e\xfe\x16\x37\x23\xe1\x6a\xa4\xc0\x1d\xfd\xcd\x88\xfe\x0c\x7e\x18\xe3\xa5\xb5\x19\x09\x83\x28\x2e\xd8\x01\xe2\xd4\xaf\x42\x89\x33\x22\x97\x64\x83\xa5\x77\x46\xb1\x80\xf4\x0a\x92\xa4\x16\x4f\x6f\x29\x82\x47\xa4\x3b\xb2\x93\xd4\xd4\x73\x08\x90\x51\xcf\x21\x8a\xe0\x7a\xce\x1e\x5f\xfa\x59\x60\x6d\x54\x27\x16\xf4\x07\xeb\x77\xb5\x4a\xf1\xae\xc1\x10\x3b\x4d\xee\xaa\x96\x42\x15\x3b\xb4\x19\x81\x5c\xc7\x81\x5e\x0a\x06\x9b\x0b\xf0\xd6\x96\x16\xac\x54\x1c\xb7\xb1\xc3\xaa\x4e\x23\x99\x19\xbc\x48\xa9\x92\x58\x1c\xaa\xdc\x51\x07\xa2\xec\xa6\x91\xf5\x99\xe4\x2a\x1c\xdd\x4b\xc1\x23\xc0\x86\x86\x41\xbb\xba\xf7\x72\x9a\x5b\xa7\x0e\x79\x89\xf7\xc2\xc6\x00\xde\xd0\xbb\xac\xa7\xe5\x88\xfa\x20\xe3\x12\xb6\x7f\x2e\x07\xdd\xe3\x37\x4a\x28\xd1\x94\x24\x25\x08\xe4\x27\x0c\x85\x3e\x82\xf0\x77\x54\xf7\xd1\x28\xa4\x2c\x03\x9a\x11\xd7\x57\x8c\xcb\xfc\x9b\xac\x68\x5d\x24\x82\xf6\x2e\x67\x0d\x8c\x34\xe9\x4b\xb6\xae\xdd\x38\x50\xc9\x31\x28\x69\x65\x55\x15\x13\xe5\xc1\x95\x74\x1d\x95\xa4\xf5\x51\x49\x26\x4e\x49\x72\xa2\x10\x22\xd6\xea\x81\x06\x77\xa9\x45\x6a\x31\x00\x29\x3b\xd7\x82\x2f\xe9\x35\x64\xe3\x23\xe9\x6c\xb1\xee\x4c\xbf\x3b\xad\xbf\x34\x44\x68\xd9\x5a\xa7\x8f\x98\x96\xc8\x0b\xa2\xab\xac\xe2\x88\xba\xbe\x61\xf4\x28\x42\x29\xd5\xc3\xd4\xb2\xa6\xa5\x75\xf6\xcd\x3a\x98\x26\xdf\x22\xb4\x8a\x78\xeb\x3b\x10\xf6\xa0\xb1\x87\x4b\x0f\xfc\xe2\x00\x84\xc9\x26\x79\xce\x93\xba\x31\x8d\x7c\xdd\x8d\x71\xc6\xcc\xac\xb5\x0e\x2f\xf0\x3d\x50\x07\xd0\xac\x46\xfc\x09\x61\x30\xb2\x3f\x50\xf3\x91\x28\xbd\x2b\x1a\xee\x37\x4a\x2e\x09\x77\x1c\x3d\x6a\x6b\x95\x54\xac\x54\xda\xb7\x09\x1b\x89\xd4\x97\xe2\x64\x05\x74\x05\xd4\x29\x4b\xeb\x1b\x38\xdf\xcc\x17\x94\xc1\xa6\x99\x8e\x32\xb8\x5f\xa0\xfc\x01\xc8\x04\xc8\x8a\xd2\xd3\x7b\x93\x31\xb6\xca\xaa\xea\xa7\x06\x31\xa9\xaa\x33\x5e\x96\x45\x95\xa2\x45\x67\xf2\x42\xdc\xc8\x04\x9a\x87\xf7\x37\x23\x23\xb1\x9a\x56\x09\xf7\x78\x8b\xe0\x62\x16\x1c\xb1\x57\x55\x6c\xb9\xb6\x4d\x90\x5c\x0a\x70\x31\x9d\x1f\x18\x8e\x37\xdd\xb5\xb5\xd8\x5e\xbc\x83\x28\xcb\xa2\x77\x56\x29\x1d\x44\xcb\x73\xf2\x7f\x80\x17\xd6\x5f\x52\x7a\x66\x51\x7c\x35\xb3\x66\x74\x50\x3d\xc0\xd5\xd5\xec\x6a\x06\x51\xf0\x8d\x05\xc7\xa9\xcb\xc6\x43\x0b\x29\x79\x89\x43\x9f\x8d\x12\xc4\x0e\x2d\xf4\xff\x91\x8a\x30\xa0\x42\xe2\x14\x26\x3d\x43\xf4\x49\xf0\x08\x26\xa3\xce\x85\x0b\x3e\xc1\xdd\xc8\xcf\x5b\x81\x93\xa1\x8d\x81\x93\x1d\x7a\x8c\xe9\x08\x32\xf5\x25\x3f\xf3\x8b\x52\x5c\xe0\x38\x80\x67\x68\x9b\x27\xa0\x4b\xdb\xba\x17\x97\xcc\x40\xdf\x6a\x6c\xf6\xc2\xba\x58\x9f\x2d\xff\xe1\x79\x1f\xc2\x83\x41\xdd\x20\xf0\x57\x83\x01\xe2\xbf\xc6\xa9\x74\x55\x21\x31\x0c\x70\xa8\xd0\xd8\xb2\xad\x4c\x75\x5f\x81\xb3\x75\x09\xd9\xfa\x8a\x67\xad\x04\x0b\x7b\xad\x14\xb2\x9d\xa5\xfe\x36\xa0\xfc\x9f\xe6\xe4\x7e\x01\x4e\x0e\x0d\x33\x9d\x5d\x81\x2b\x6d\xf1\x8f\x0a\x6c\x8a\xb9\x93\xd9\xe1\x5e\x33\xe3\xeb\xab\xa6\x74\xbe\x5c\xae\xe2\xf8\xce\xd8\x19\x34\xa1\x93\x7e\xd9\xf9\xa6\x6e\x65\x43\xd4\xbb\x0d\x8b\x5e\x9a\x95\x3d\x8e\x4a\x70\x96\xc4\x81\xb0\x27\x4d\xa0\x50\xb1\x9d\x91\x90\x32\x3f\x0b\xc0\x0d\xb4\x59\x75\x51\x1f\x97\xef\x49\xac\x64\x41\x23\x03\x14\x08\x49\xea\x67\x01\x8c\xaf\x09\xde\xbc\x05\xad\x7f\x68\x2b\x37\x50\xb8\x6d\x42\x9f\xcf\x66\x68\x09\x9b\xa1\x82\x86\xb4\xdc\x1b\x16\x75\x4a\xf7\x45\xac\xa7\xbf\xa6\xe4\xfb\x94\xfc\x3d\xa5\x36\xf9\x1b\x97\xb0\x5f\x80\x6c\xf0\xb3\xb8\x94\x35\x8e\xe4\xe5\x22\x01\xe6\x87\x71\x2e\xec\xaf\x29\xfe\x6b\xea\xb3\x40\x2e\xd0\x69\xfb\x1e\xf8\xee\x3a\x6f\x57\x37\x3b\x80\xb4\x08\x4d\x20\x0f\xb9\x07\x83\xf7\x7c\xf1\x7d\x67\xe1\xbd\xf7\x9e\x7c\x7f\x70\xd7\xcc\xab\xb4\x9a\x0a\xcb\x59\x5e\xd0\x7e\xff\xfb\x74\x30\x40\xb7\x71\x79\xfd\x32\x67\x11\x4b\xcb\x38\x4c\x0a\x14\xa7\xbd\xef\x53\x59\x8b\x36\x70\xfc\x77\x78\x07\xf9\xc9\xf7\xa9\xbe\x00\xa9\xb7\x12\x53\x49\x85\xb3\x41\xa9\xb9\x85\x34\xbd\x41\x64\x79\x21\x2f\xe5\xbb\x37\x8a\x66\x40\x72\x9a\x8a\xbe\x8b\x80\xc5\xdb\x82\xe5\x69\xb8\x66\xb3\xed\x28\xdb\xb0\x54\x86\x30\x26\xa9\x24\xfe\xb0\x81\x90\x3a\x1b\x50\xe1\xa2\xb8\xcd\xf2\x08\x7b\xf7\x14\xe1\x48\x7e\x77\x9d\x8b\x73\x70\x61\x90\xcd\xe7\xc9\x4c\xdc\x82\x8d\x5e\x9d\xe0\x17\xc1\x34\xd5\x87\x1e\x83\xc1\x76\xd4\x3e\x2a\xe9\x4a\xb3\xea\x22\xb0\xb0\x4c\x18\xc5\x3e\xfa\xf9\x54\x72\xe4\x2c\x3a\x05\xd7\x02\xe0\x74\xb2\x2b\x9d\xa2\x9f\xdf\xbe\xf9\xa1\x2c\x37\xf2\x83\xe1\xdb\x05\xba\x1e\xe3\xed\x21\x83\x5f\x90\xd8\x2f\x02\xc5\xb0\x26\x78\xb7\xdf\x0a\x36\x36\x6d\xc8\x47\x62\x6d\x56\x95\x88\x10\x66\x46\x49\x50\x74\xb8\x10\xa7\x80\x22\x26\xf3\xd2\x02\x27\x9a\x55\x35\x01\x07\x19\xe6\x56\xc9\xbf\x51\xa1\x22\xbb\xed\xda\x29\xe1\xc2\x36\xdb\x90\xbf\xa5\x83\x81\x14\x59\xff\x9a\x82\xd8\x17\xe3\x49\xbf\x59\x1b\x07\xa7\x12\x28\x38\x37\xbd\x5b\x0a\x7b\x9d\xad\x3c\x10\x22\x09\xdd\x8e\x3a\x4f\xd0\x2c\x7c\xe8\x59\x7a\xdb\xb8\x14\x93\xa1\xfe\xef\x4a\xda\x4c\x17\x40\x5d\xe8\x36\x78\x9a\x84\xde\x06\xef\x16\x14\xa1\x7d\x01\x4c\x84\x5c\x86\x20\x47\xd6\x73\x3a\x73\x5c\x77\x4c\x29\x2d\x20\x12\x81\x6b\x4f\xb0\x57\x50\xd1\xd0\xcc\xb5\x6d\x6f\x62\x4f\xf6\xb2\xba\x08\xef\xe2\xaa\xca\xb8\x80\x10\xe1\xfd\x72\x30\xc8\xac\x02\x0e\x5a\x13\xbc\x57\x58\x3a\x6b\x03\x78\x66\xc8\x30\x39\xf6\xac\x90\x0e\x87\x7f\x4f\x01\x9a\xd6\x5f\xd3\xaa\xb2\xfe\x0a\x97\xc3\x42\x99\x4f\x28\x5e\x58\x7f\x4b\x31\x26\x00\x64\x9a\x63\xd2\x39\x2b\x39\xf6\x72\xab\x8b\xb7\xc8\x07\x83\xbc\xcd\x54\xfc\x2b\x25\x2c\x27\x65\x2e\x6e\xba\x85\x79\x51\x55\x5c\x67\xb7\xd5\x75\x1c\x31\xfc\xe0\x8c\xa4\x79\xcb\xfc\x6c\xe6\x49\x0b\xb4\x0a\x6b\xbb\x35\x61\xb2\x56\x1b\xb8\xe5\x39\x3d\xfb\x6d\xcb\xb6\x22\xd2\xe8\x83\x33\x12\xe7\xd4\x7f\x10\x90\x2c\xa7\x70\xaf\xe6\x77\x1d\x72\x0a\x05\x27\x61\xbf\x7d\xcb\x98\x54\x6b\xcc\x69\x3a\x5a\x40\x80\xc6\x98\xa6\xb9\x38\xe1\x2a\xb1\x30\x14\x96\x67\x54\x0d\x1b\x0f\x16\xcc\x10\xf2\x84\x85\x87\x08\xdf\x6e\x7e\xab\x2a\xfe\xa5\x0f\xe1\x25\x86\x5c\xe2\x51\x55\x4a\xc5\xc2\x54\x04\x8e\x66\x60\x26\xe1\x90\x2d\x75\xc1\xa0\x2c\x1c\x0c\x42\x7f\x1c\xf0\x72\x78\x07\x32\x12\x7f\x25\x31\x8d\xe1\x12\x3d\xa4\xc3\xbc\xaa\x9c\x69\x94\xf5\xc0\x8f\x01\x1a\x9d\x23\x12\x9e\xd1\x82\x68\x25\x7f\x55\x31\x09\x87\x19\x9e\xde\x5e\xc7\x09\xb3\x8a\x3e\xa5\x56\xa1\xc6\x77\xc6\xbb\xe3\xf4\x01\xdf\x4e\x4f\xb7\xda\x06\x35\x86\x53\xa3\x94\xe3\x70\x5e\xd2\x61\x58\x55\xbc\x31\x9b\x93\xc0\x34\x2e\x69\x46\xd2\x11\x4b\x23\x71\x3c\x17\x0e\xad\x58\xda\xd4\xc4\xbe\x1b\x78\x43\xfe\x1f\x93\x74\x1f\xc0\x36\xf5\x22\x8d\xd7\xc0\x1b\x19\x61\x19\x7f\x24\xbb\x92\x43\xfb\xe0\xe4\xf9\xc0\x9c\xd5\x2a\xe1\x6a\x41\x1c\x4a\x78\x70\x3b\xaf\x75\x6e\xa6\x6d\x07\x29\xac\xb6\xb2\x53\x0e\x51\x40\x43\x29\xcb\x21\x8e\x70\x0e\xc7\xd5\xbe\x7c\x1f\x6d\x53\x08\xb5\x6b\x95\xc2\xf3\x5f\x67\x0c\xdc\x72\x16\xe7\x3a\x23\xc3\x5e\x9c\x2b\x3f\xaf\x92\x1b\x05\xa4\xa1\xaf\xc9\x6b\x33\x50\xdf\x22\x4b\x8b\x32\xdf\x2e\xca\x2c\xf7\x5e\x93\x38\x8d\x0f\xdd\x62\x08\x99\x58\xd8\xc4\x25\x6c\xad\x22\x1d\x6e\xf2\x6c\x43\x53\x15\x84\xa2\x88\xd3\x15\x5c\xe9\x15\xb7\xa0\x87\x2e\xae\xbe\xc5\xb5\x26\x2d\x55\x8c\x39\x3e\x43\x52\x8b\xef\x56\xe2\x33\xa0\xae\xa8\x24\x8d\xa8\x08\x69\x2d\x67\xae\x8d\xba\x69\x8d\xba\x7b\xb2\xd8\xe6\x87\x8c\x3a\x0c\x6d\x23\x35\x83\x55\x27\xeb\x88\xcc\x32\x7a\xe2\x0c\xfe\x4b\x6f\x92\x46\x91\x3a\xf8\xbf\xfe\xbc\x27\xf9\x36\xed\x0c\x65\x70\x7f\x53\x22\x25\x2b\xa8\x1c\xaf\x72\x3a\x17\x6d\x73\x40\x30\xb0\xcc\x07\xa0\xf9\x06\x00\x03\xe5\x48\xb0\x9d\xfd\x11\x23\x36\x71\xba\xbf\x61\x4f\x79\x1f\xcc\x6e\xa9\xa5\x20\x79\x5a\x43\x1c\x3f\x2a\x87\xf5\x5b\xb3\x92\xa2\x64\x1b\xe9\xd0\xcc\x4c\xaa\x4d\x98\xc5\xb2\x54\xf5\xcb\xd8\x0d\x20\x85\x15\x10\x26\xb7\xb8\x1f\x90\xfa\xb3\xbc\x88\x30\x91\x6f\xc4\xb1\xcd\xc0\x45\xe3\x13\x31\x2a\xa3\x3b\xed\x15\xb5\xa5\xe9\xad\x2e\x5b\x1a\xf7\x4d\x0c\x7a\xec\x33\x31\x1f\x55\x25\xde\x95\xc2\xb4\x70\xba\x60\xa6\xa9\x9c\x7c\xf9\x2a\xed\x69\x49\x8b\xe0\x03\x41\x08\x93\x72\x30\x10\x86\x29\x60\xcd\x57\x7a\x36\xf6\x9a\xed\xb4\x0d\x17\x84\x5e\xc8\x1d\x00\x53\xb7\x70\x98\x04\x11\x1f\x1a\x1d\xb4\x3a\x7a\x68\x5a\xab\xc9\x82\x2d\xa3\x34\x99\x8a\x0d\xcb\xdb\xc6\x18\x18\x9f\xbc\x21\x83\x75\xd5\xee\x3a\x98\x55\xde\xee\xd5\xdc\xc8\x19\xd4\x61\x96\xe9\x61\xea\x1b\xb6\x14\xa1\x0c\x5b\x81\xf7\xa0\xcb\xa6\x89\x26\x24\x34\x7c\x51\x76\x35\x6d\x86\x9a\xf4\x91\xd8\x63\x11\x41\x7c\x97\x45\x04\xf1\x7d\xf6\x40\xe9\x46\x29\xef\x0a\xd5\x9b\x69\x97\x0a\x23\x48\xd5\x4d\xcc\xa8\xaa\x2e\x33\xe0\x23\x4a\x5a\x42\x29\x2f\x84\x1d\x81\x59\xbf\x0b\xc6\x80\x88\x7a\x0f\xd5\x1b\x97\x61\xc4\x2e\xb3\x3f\xd0\x1d\x94\xe7\x00\x2f\x31\x60\x99\xb6\xf0\x25\xb6\xb2\x25\x16\xd6\xfa\xba\x51\x6d\x30\x5c\xee\xb5\xca\xa1\xfc\x76\x5f\x3c\xe1\xb8\x78\xb5\xde\x94\x5f\xb4\xf6\x2c\x78\xe2\x1a\x15\x1b\xc6\x22\x4b\xe4\x25\x21\x3d\xf0\xa5\xf0\xa3\x00\x80\xa1\xa2\xb4\x27\xbc\x2c\x9e\x72\xe6\xb7\x0e\xe4\x26\x42\x17\xc6\x69\x5c\x5c\x83\xe9\x4b\x09\xa1\x43\x2d\x90\xf4\x94\xce\xe8\x48\x7c\xa7\x21\xe1\x5c\xdf\x08\x38\x1d\x38\x44\x9f\xd5\x96\xd5\xa1\x84\x30\x7c\xb4\x64\x26\x12\xca\xc0\xa6\x47\xec\xa6\x3a\x2e\x40\xa1\xf9\xa9\x0e\xf1\xc8\xdf\x08\xe7\x17\x55\x6f\xba\x54\xf4\xa4\x62\x9c\x52\x04\x10\x9e\xd1\xfb\x8e\x24\x84\xa2\x47\x1c\x5b\x96\x77\x88\xf8\xc1\x91\x40\x4b\xa2\xfd\xbe\x2d\x4f\xb8\xfa\x10\x4e\x77\x88\x6a\xb6\x0e\x09\xc0\x97\xf1\x9a\xe5\x05\x81\xcb\xba\x1a\x86\x42\xe2\xc3\x21\x58\xeb\xf1\xff\xd0\xf3\xc1\x20\xb6\xf8\x8b\xa1\xc2\x0c\x96\xa2\xe1\x61\xc6\x3c\xaf\x6d\xf9\x54\x21\x11\xb2\x45\xb9\x5b\x9b\xa6\xa7\xa7\x53\x9c\xf1\x22\x7c\xd1\xf5\x85\x23\x5f\x21\xf8\x40\x6f\xe1\x13\xf4\xb7\x0f\xab\xc3\x82\x04\x8e\x61\x62\x4e\x73\x4c\x4a\xda\x77\x48\x06\x8c\xcc\x82\x59\x29\x71\x30\x9e\xc2\xc9\x62\x2e\xdc\xe2\x45\x4c\x40\x4b\x78\x36\x05\x57\x17\x62\xee\x3b\x83\xaf\xa8\x23\x1a\x46\x25\x74\xef\x03\x2d\x84\x0b\x32\x21\xc6\x59\x5d\x5f\x41\x18\x71\xee\xb2\x7e\x15\x00\x0f\x5a\x10\xcf\x67\xca\x43\x98\x67\x0b\xe0\x28\xcc\xec\xdb\x1c\xd3\xcd\xbe\xc3\x44\x73\x9e\x59\x4d\x04\xfc\x1a\xbe\x3c\xc0\x9d\x65\x0d\xdc\x52\x00\xb7\x14\xc0\x95\x5e\x92\x39\x4c\xcb\x40\x23\x3c\x47\x35\x48\xa8\x61\x0a\x6e\x0f\x15\x3c\x4b\x80\xa7\x0a\x70\x14\xca\x00\x47\xb9\x5f\x06\x83\x01\xff\x2f\x7b\xdb\x78\xa9\x7b\x84\x15\xd6\xab\x51\xed\x9b\x71\x56\x8a\x24\x8e\xd8\xb7\xd9\x6d\xea\xfd\x6e\x09\x6a\x8a\x09\xa4\xfd\xb4\xe1\x29\x40\x58\x65\xca\xa5\xf0\x9b\xf0\xbb\xa5\xc8\x2f\x26\x9c\xa2\xbd\x4e\x6b\xa7\x05\xa2\x86\x3d\xa4\xbf\xdf\x96\xc6\x07\xa8\x48\x7c\x90\xf5\xd4\xdf\x64\x75\x5f\x11\xfd\x82\x1d\xd2\x4b\x45\x07\xb5\xc2\xb5\xb4\x67\xe4\x94\x8c\x76\x3a\xf5\xe3\x10\x3f\xd4\xfa\x99\xb5\x88\x9a\xb7\xd3\xb7\x71\x29\x97\x6f\x07\x83\x52\xda\x56\x1b\xec\xfc\x60\xc0\x88\x62\xb1\x3c\x46\x04\x83\xe6\x89\xbc\xa5\x32\x53\x30\x4c\x2b\x06\x83\x52\x13\xc0\x5c\x33\x67\x54\xec\xf9\xd9\x72\x39\xb3\xbd\xda\x24\x5f\xf9\x00\xa8\xf9\xc1\xfa\xd1\xab\x1f\xf9\xd2\x97\x4c\x03\x1f\x73\x31\x33\x5f\xfc\x3a\x9f\x08\x77\xa1\x3e\xd4\xbe\xdc\x94\x37\x00\x81\x90\x55\x95\xd7\xa4\xd8\x06\x17\x03\xf2\x5d\x2c\xc5\x7c\x94\x25\x11\xcd\xb5\x6e\x08\xa9\x1f\x69\xd3\xca\xd0\xbc\x15\xe3\x85\xf0\x60\x00\xbf\x06\x6e\x12\x59\xf7\x21\x95\x90\x1f\x38\x6b\x2d\xf7\x7d\x90\x1d\x76\x49\x9c\xb2\xb0\xd3\x85\x10\xdb\x13\x90\x2a\x3a\xbe\x8d\xce\x4f\xdf\x86\xe5\xf5\x68\x91\x15\x16\x7b\x04\x8f\x1f\x5e\xe3\x33\x57\xb0\x14\x82\x10\x50\xa9\xc6\x7d\x47\xdb\xcc\xa7\x48\x1e\x95\xf1\xe2\xa6\xbd\x21\x32\x41\x7e\x24\x29\xc9\xa9\xa0\x1f\xff\xaa\xb5\xf0\xa7\xf9\xb3\x3a\x80\xd9\x70\x88\x19\x4d\xb9\xfc\xc6\x2c\x5c\x55\xfc\x49\x90\xd4\x54\x2d\xf5\xfc\xf4\x94\x38\xb5\x67\x22\xc0\x37\x60\x06\xb3\x8d\x85\xc9\xbf\x52\x5a\xee\x75\x6f\xd6\xac\x19\xbb\x93\x59\x82\xd8\x8a\xce\x28\xa9\x4e\x18\x4f\xde\x09\xae\xde\xc2\xaa\x78\x9c\x96\x2c\xff\x1c\x26\xd4\x19\x13\x23\x83\x39\x3e\x96\x57\x95\xc5\x72\x5a\xb0\xf2\xb5\xcc\x6d\xd5\x90\x68\xd5\x83\x75\xcd\xbc\xaf\x0d\x44\x48\x58\x98\xeb\x0a\x58\x8e\x09\x93\x2e\x4b\x89\x89\x8e\x74\x57\x24\xd9\xad\x77\x61\xdb\x64\x19\x16\xa5\xe7\xda\x76\x1d\xe7\x00\x1c\xe5\xd4\x7c\xb1\x38\xcf\xf9\x6a\x9b\x4b\x49\x20\xa2\xee\x10\x98\xc2\x47\x5d\x3d\x89\x5d\x9e\x10\x20\xcc\x0c\x27\xe0\x7b\x1d\x70\x4d\xb1\x76\xc2\x44\x93\xb6\x2e\x0f\x0f\x9c\x3b\x37\x02\x15\xd4\xde\x4c\x3b\xdc\x85\xc9\x1a\xb9\x4c\x24\x6c\x3a\x4d\x7f\xe0\x53\xed\x64\x8e\xee\x38\xff\x63\x93\x84\x2d\x4b\xcf\xde\x93\x4c\x39\xfc\x56\x76\xf9\x0d\x6f\x09\x70\xfa\x82\xb5\xa7\x8b\xb0\x7d\x5b\x49\x1a\xae\xdf\x49\x86\x67\x96\x24\x3e\x19\x97\x72\xbf\xc9\xb6\x69\x14\xa7\xab\x97\x49\xcc\xd2\xf2\x47\xb6\x28\xfb\x94\xfe\x02\xea\x52\x47\xbe\x5b\xe0\x54\xf3\x67\x2b\xc4\x04\x3a\x1a\x8f\xca\x6c\x33\xb4\xf2\xd1\x26\x5c\xb1\x5f\xc4\xc0\x00\xef\x95\x00\x81\x4f\xad\x74\xb4\x80\xf2\x97\xd9\xa6\xaa\x6c\x2c\x86\x16\x83\xed\xbf\x2a\xf9\x73\xbb\x24\x17\x32\x8c\xa2\xfc\x95\x97\xdd\x63\x2f\x06\x1c\x91\xd3\xb3\xd3\xd0\x3c\x12\x6a\xa8\xb6\x88\x55\xf6\xbe\x08\x4f\x51\x51\x86\x65\xbc\x00\x8f\x1b\x32\x0a\xff\x97\x84\x69\x8b\x60\x8a\x20\xc4\x7c\xfc\x99\x21\xc3\x58\x43\xfa\xb3\x2d\x68\x28\x1b\xb7\xb0\x74\x3a\x22\xea\x07\xb5\x53\xe1\x04\x50\xa6\x80\xf5\x32\x26\x0b\x6a\xd5\xfe\xa5\x84\x93\x0f\xb4\x8c\xef\x44\xec\x6b\xc9\x48\x29\xe7\x88\x42\xcc\x24\xfe\x96\x24\x01\x7e\x7e\xea\x10\x38\x07\xe6\x0b\x63\xba\x98\x59\x1b\x1a\x1a\x66\xcb\x24\xa6\x1b\x0e\x7d\x92\xd1\x8d\x70\xc7\xe0\x59\xb1\xe9\x3a\x64\x8b\xab\xca\x26\x0d\x6f\x22\x09\x86\x19\x38\xdc\xbd\xac\x92\x4a\x87\xcb\x7c\xb3\x2d\x30\x26\x82\x4f\x2c\x47\xc0\x0e\x59\x4b\xfe\x2b\xde\x4e\x0b\x98\xf3\xb8\xce\xc2\x1b\x87\x3c\xe0\xce\x41\xbc\x9f\x16\x62\x82\x33\x4c\xd0\x96\x93\x78\x14\xa7\xbd\x72\x56\x8e\xe0\x45\x35\xb5\xc4\x5e\x08\xe0\x5a\x4a\x31\xd0\x10\xaa\xb4\x77\x2e\x83\xe8\xb4\x5d\xea\xc1\x5c\xb7\x97\x4c\xde\x8a\x39\x5a\x43\x5b\xce\x4d\x6e\x62\xc3\xac\xa4\xf9\x31\x5c\xf7\x64\xe4\x02\x39\xe3\x1f\xa4\xa3\x36\x52\x9a\xa9\xe2\xea\xa9\x0e\x38\xc0\xd7\xaa\x30\x92\x01\x9b\x7e\xed\x6e\xc2\x02\xe7\xf2\x1c\x74\x1a\x47\x20\xab\xb0\x9c\xbe\xcc\x36\xc2\x74\x1a\x38\xcd\x54\x00\xaf\x2b\x23\x5f\x0a\x75\x4e\xb9\x0c\xc5\xc4\x40\xed\xa7\xf5\x20\x85\xa1\x36\xf8\x20\xeb\xab\x75\x27\x67\x47\x34\x70\x90\x17\x1c\x93\xc9\x33\x70\x62\x0e\xfa\x2b\x2d\x87\x9b\x7e\x07\x1b\x60\xab\xaa\xbf\x4f\x85\xa1\x6f\x23\x38\x83\x00\x14\x28\x3b\xaa\x35\xd9\xb9\x66\xc1\x35\xa1\x59\x9f\x3e\xd6\xab\xaa\xbf\xb7\x59\x5f\x4d\x42\x3c\x64\x50\x17\x44\x34\x55\x12\xe9\x92\x5e\x35\xad\xd5\x35\xe9\x38\xfb\x45\x69\x48\xe0\xe9\x21\xc3\x1a\x7f\x85\x07\xb6\xfa\xb2\x8f\xfe\x6c\xb8\xfb\xc8\x60\xb3\x08\x67\x42\xb6\x9b\x71\xe1\xcd\xab\x29\x77\x9b\x84\xfb\x71\xe0\x31\xfe\xef\x73\x16\x47\x10\x5d\x53\x8d\xc2\xca\x67\x8b\xd2\x0a\xb1\x41\x32\x2d\xec\x65\x24\x9f\x65\x9e\xf9\xe1\x92\x33\x19\x18\x2a\xa1\x19\xb8\x60\x8b\x0f\x5c\xb0\x49\x07\x40\x26\x14\xa5\x9b\x30\xed\x7e\x05\x90\xce\x93\x4e\x58\xda\x20\x33\xc2\x3b\x4a\x97\x00\xe0\x47\x18\x0d\x99\x52\x39\xf2\x52\x82\x90\x87\xc0\xcb\x35\x1a\x32\xa3\x02\x38\xab\x11\x10\x8e\x4d\x08\xd7\xd0\x6b\xf7\x96\x33\xaf\xc6\x71\x8e\x16\xee\x63\x2c\x7c\xe6\x58\xb1\x74\x99\x94\xc1\xef\x4c\x62\x37\xf2\xe4\x1a\xaa\x95\x19\x8e\x4d\x9e\xa9\x97\x31\x35\x15\xc2\x44\xc8\x3f\x2b\xc5\xb3\xf4\xf8\x94\x21\xb1\x6b\xa1\x21\x0b\xbc\xa7\xcd\x08\x1c\xa0\x21\xd1\xde\xa5\x81\x73\x5d\x87\x77\x56\x3a\x9a\x67\xd1\x17\x50\x44\xc8\x92\x84\x97\x27\x59\xe3\x4d\x65\x10\x2b\x41\x65\x68\xbe\xd5\x8d\x63\xec\xc5\x2a\x84\x12\xdc\xdf\x90\x9c\x14\x60\x91\x20\xaf\x5d\xe0\x78\xbf\xc0\x7b\x92\x92\x70\x16\x7b\x25\x09\x35\x22\x68\x4e\xa8\x88\x7f\x67\x1d\xba\x10\x65\x1d\x58\x41\x51\xee\x30\x8d\x3e\xb2\x64\x29\xed\x38\x65\x2c\x51\x72\x20\x91\xad\xb3\x68\x9b\xb0\xc1\x40\xfd\x1e\xc9\xc0\x99\xbd\x2c\x2f\x8b\x59\xf3\x95\x2e\x4a\xcf\x62\x23\x11\x07\x8e\xb2\xd1\x03\xba\x28\x49\x47\xe8\xec\x88\x2d\xe3\x94\x0d\x06\xe2\x77\x14\xae\x23\xf5\x6c\x21\x61\xa0\x81\x88\x1f\x74\xf8\xf4\x59\x94\x7b\x8c\xf7\xd6\x2d\x4c\xb4\x60\x00\x44\x7c\xeb\x79\x98\x17\x6d\x41\xe1\x8b\x99\xa0\xcd\xa3\x12\xeb\x5a\x5e\x99\x88\xe3\x27\x7a\xbd\x4f\x0c\xe1\xa3\xcc\x84\xf1\xd8\x21\x54\x11\x1a\x1a\xc5\xb4\x44\x99\xec\x2d\x4c\x3e\xd7\xd9\x13\xa3\xad\x6b\x2b\xd4\x5d\x9f\xfb\x61\x50\x55\x68\x10\xae\x37\x53\xb4\xe7\xfd\x5b\x49\x93\x11\xd0\x7f\x11\xe9\x04\x3d\xe3\xcf\x49\xc9\x1f\x9f\xf3\xc7\x15\x7f\x7c\x88\x1e\x7a\x68\xf0\xdb\x36\x83\xf4\x87\x3c\xfd\x2f\x77\xee\x63\xfe\xf2\xff\xc4\xcb\x85\xcd\xb3\xd1\x87\xde\xc3\xc1\x5f\xee\xc6\xdf\x4e\x1f\xee\x49\x48\xcf\xfc\xc1\xb3\xe7\xe8\xe1\xff\xa3\xc1\xd9\x8a\x2c\xcc\xd7\xe9\x4a\x6e\xe5\x75\xbf\x43\x32\xaf\xf7\x88\x1b\x4e\xfe\xe6\x58\x46\x8b\xad\xa1\x73\x1d\x16\xef\x6f\x53\xe5\x58\x4c\x70\x0a\x73\x72\x03\x3e\xa3\xfd\x9b\x80\xce\xfd\x9b\x00\x0b\xc3\x9d\x88\x1e\x94\x56\xb0\x9d\xae\x6a\x30\x47\x53\xb1\x27\xd5\xfd\xd0\xf0\x36\xf0\x46\x21\x4e\xb8\x9f\x32\xeb\xec\xee\x0c\xe2\x05\xfd\x51\x99\x13\x55\x68\x30\x40\xbe\xc0\xe3\x9e\x62\xac\x02\x9e\x41\x4a\xc5\x21\x67\xf2\x57\x06\xd7\x45\x19\x74\xea\x8e\x02\xe3\xa7\xbc\x21\x54\xd5\x61\x7b\x50\x77\xed\x4a\x5e\x35\x38\xd3\xed\x41\xc9\x66\x63\x5e\xdf\xd9\x43\x73\xf0\x8d\xde\xf1\xb9\x28\x16\xe1\x86\xbd\xba\x03\x47\x01\xbc\x03\xba\xa5\x39\xf0\x55\xf3\x5e\x9c\x16\x65\x98\x2e\x78\xed\x89\x92\x29\xe6\x1a\x8a\x42\x4b\xa5\x3f\x1f\x0c\xec\x3e\xa5\x73\xac\x10\x76\x3a\xa7\x08\x0d\xe7\x53\xe5\x41\x46\xec\x99\x73\x3c\x9b\x7b\xf3\x3a\xae\x05\xb9\xc6\xa2\x43\x70\x38\xdd\x01\xd5\x7e\x28\x2a\x0e\x67\x7d\xdb\xbb\x03\x4d\x25\x9b\x52\x1d\x54\x84\xa7\xf2\x31\xc9\x6e\xad\xf6\xd6\x17\x4c\x36\x47\x16\xdf\x8a\xa3\x19\xec\x1c\xd3\xf9\x60\x30\x17\x4a\x85\x6f\x80\x1a\x58\x21\x35\xde\xc9\x6a\x48\x51\xef\xb4\x87\x86\xe1\x10\x79\x68\x28\x3f\xbd\x04\x87\x9a\xf5\xad\xed\x82\x82\x0d\x9b\x81\x65\xc6\xbd\xa9\x71\x46\x78\xb2\xc2\x24\xa2\xf6\x34\x7a\x76\xad\xce\x06\xa2\xe1\x10\x03\x37\x7a\xed\x47\x41\x40\x17\xe2\x77\x1a\x2a\x8f\x25\x49\x9c\x32\x71\xbf\x49\x43\x71\x1a\x2a\xbc\x79\xd2\x66\x57\x60\x2d\x5f\x53\x14\x31\xa1\xad\xc5\xc7\xb9\x8c\x13\xe0\xa2\x7a\x75\x1d\xbd\x35\x2b\x8a\x70\xc5\x7a\x29\x4f\x17\xe7\x4d\xbd\xa2\x0c\x17\x37\xa6\x07\x88\xa9\x41\x8b\xc4\xc8\x6a\x9b\x29\xa0\x34\xbf\x1b\x94\x86\x5c\x1b\xa0\x5d\x59\x21\xb9\x91\x94\xed\x9a\x25\x1b\x96\x17\x34\x04\x33\x3a\xe5\xc8\x18\x74\xac\xe8\x0d\xa4\xcd\xe5\x25\xaa\x2e\x3e\xe7\xd3\x1d\x8e\x72\xb6\x8a\x8b\x92\xe5\x3f\x40\x0d\x16\x12\x35\xbd\x8d\x0b\x10\x13\x88\x89\x1b\xf1\xd2\x72\xfb\x87\x3e\x14\xa4\x0a\x7a\xca\x6e\x7b\xcc\x42\xb2\x64\x4f\xd4\xe3\xf5\x1e\xc2\x74\x3e\x44\x78\xba\xc7\xd3\xc3\xe6\xc0\x6f\xd5\x0f\x47\xda\xe4\x84\x66\x27\xe6\xfc\x66\x14\xa7\x10\xf0\xd6\x58\x94\x78\xb7\x27\x29\xbd\x19\x2d\xd3\xe9\xd2\x9a\x63\xb0\x47\x3d\x99\x1b\x07\x5f\x0a\x90\x7d\x8e\xbc\xf3\x59\x2a\x6f\x47\xfb\x0e\x7f\x15\x87\xef\x3c\x7d\x21\xd3\xef\xf8\x42\xb1\x9f\xcd\x15\x96\x87\x0a\xac\x82\x9b\xe2\xbd\xf1\x54\x5e\xbe\x50\x3b\x07\xc4\xb3\x9a\x60\x53\xd8\x7f\xc3\x91\x28\x25\x0b\x3a\x57\x23\x21\x8c\xda\xa4\xa4\x08\x91\x68\xba\x84\x35\x66\x85\x34\x6c\x74\x7f\xae\x4c\x71\x22\x9a\x5a\xe2\x05\x63\xa9\xe4\xd1\x41\x85\x70\xbc\xb4\xf8\x6a\xc5\x6a\xad\xac\xea\x38\x40\xec\xd9\x6a\xca\x86\x43\x1c\x81\x81\x24\x28\xa1\x52\x46\x22\x81\xd8\x14\x3c\xf1\x91\x08\x8c\x62\x28\x33\x96\xfa\xa9\x83\x49\x39\xa4\x37\x56\xe8\xb3\x80\xec\x40\x85\x3e\x32\xdd\xba\xac\xe4\x9d\x48\x6b\xa7\xb0\x56\x7c\x3c\xa2\xb1\x1b\xf6\x85\xae\xc8\x91\x46\x75\xf5\x2b\xa3\x7a\xc2\x7b\x3a\xb5\xe5\xb1\x7d\x49\x17\xcd\xf9\xec\x95\x9d\xa0\x8f\x97\x88\x9c\xb4\xb6\xb7\x6e\xb8\x4a\xb4\x98\xf3\x4e\x5f\x8f\xe2\x74\x91\x6c\x23\xf6\x2f\x96\x67\x83\x41\x3f\xac\xaa\x48\x91\x46\x2b\xc4\x33\x3d\x5f\x72\xe6\xf9\x34\xca\xb5\xd4\xd5\x89\x6d\x9a\x80\x97\x82\x26\x12\xeb\xdb\x38\x89\x51\x3e\xef\x6c\x60\x50\xab\x39\xd9\x2d\x53\x4f\x63\x39\x91\xbf\x1e\xc7\x6e\xc2\x7b\xe9\xdd\x40\x67\xf7\xdd\xad\xde\xc6\xe5\x01\xd6\x1d\x19\x3b\xdf\x37\xcc\x01\xd6\x9b\xcb\x32\x15\x3b\xe3\x61\xf5\x49\x76\x74\x59\x0a\x04\x15\x87\x0f\xe2\x6d\x94\xb0\xcf\x2c\x99\xc1\x41\xc7\xeb\xb4\xb4\xcc\x54\xe2\xd8\xd8\x73\xa6\xe1\x28\xc9\x56\xd6\x82\xf0\x35\x54\x53\xa4\x50\xf4\xfb\x06\x3e\xf2\xc7\xbd\x68\x64\xb7\x27\x11\x4d\x08\xa3\xd7\xd3\xc5\xe8\x1f\xaf\x7e\xfc\xf8\xfa\xfd\x3b\x8a\x9c\xd1\x78\x64\xa3\xe9\x62\xf4\xf2\xfd\xdb\x0f\xaf\xdf\xbc\xfa\xf1\xd3\x8f\xaf\xfe\xf1\x1a\xbe\x9d\x4c\xa6\x8b\x91\x7a\xfb\xf4\xf2\x87\x17\xef\xbe\x7f\xf5\x91\xee\x1c\x0f\x3d\xa3\x3d\x67\x64\x8f\xf2\xc5\xc8\x45\xc4\xf5\x10\x15\xef\xf6\x69\xbe\x18\x8d\x11\x19\x37\x53\x26\x88\x4c\x3c\xf4\x5c\xa6\xa0\xbd\x64\x12\x22\xb5\x95\x93\x25\x3c\x2b\x2e\x82\xe4\x34\xaa\x59\x9e\xc5\xa8\x66\x54\x5f\xa5\x9f\xe3\x3c\x4b\x39\xd5\xa4\x9c\x19\x3a\xa2\xf4\xb3\x22\x49\xb6\x5a\xb1\xdc\xbb\xe1\x0f\x5e\x48\x9a\xf3\xe0\x99\xf3\xcb\xe7\x20\x5e\x5a\x9a\xef\x10\xbc\x17\x30\x1e\xb9\x62\x3c\x20\xc7\x4d\x55\xcd\x9b\x24\xfa\x45\xbe\x02\x45\x69\xa9\x27\xcb\xa2\x1e\x47\x1f\x1d\x33\x58\x92\xee\x02\xe1\x69\xa4\xce\x7f\xcc\x4d\x86\x84\x58\x18\x19\xdd\x70\x8a\x3b\x4a\xb3\x92\xde\xc8\xcb\x43\x85\xdd\x61\x40\xe7\x7b\xdd\xfb\x0f\x62\x27\xf2\x9a\xe8\x79\x6f\xcf\x67\xcd\x96\xd5\x5e\x46\xd4\x4d\xb5\x4a\x10\x2d\x89\x89\xb9\xa1\x27\x3b\x61\xc1\xfa\x36\xdc\x78\x3b\xdb\x43\x11\x9b\x6f\x57\x88\x38\x5c\xfe\x5d\x66\x30\xe1\xb7\x61\x9e\xc2\x3c\x0b\x3b\xfd\x3d\xf9\xf6\xd5\x37\x3f\x7d\xef\xd9\xe4\xf5\xbb\xef\xde\x7b\x0e\xf9\xe7\x8b\x1f\xdf\x79\x2e\x79\xf5\xe3\x8f\xef\x7f\xf4\xc6\x04\x90\x96\xff\x66\xab\x56\xf7\x39\x64\x05\x4e\x3f\xa3\x61\xbd\x1c\x74\x07\xfc\x30\x98\xa2\x6d\x2a\x84\x9c\x08\x94\x55\x04\x95\xe6\x13\x9e\x71\x49\x4b\x3e\xf8\x8b\xc0\x7c\x16\x10\x90\xef\x7c\x0d\xec\xf7\xd3\xc5\x48\xe0\x05\xbd\x11\x8f\x34\x14\x47\xd4\x0d\xce\x8d\xa7\xcc\xe9\x6e\x5f\x4f\xda\x9c\x84\x9a\x62\xce\x79\x2d\x42\x61\xf1\xbb\x3c\x5c\x33\x9a\x6a\x41\x7a\x6f\x7d\x26\x1b\x4c\x5e\x34\xf8\x0c\xb2\x32\x38\x8d\x39\x20\xdc\x42\xb4\xd1\x90\x20\x52\xbc\x53\xb6\xfb\xaa\x21\x9e\x2a\xd5\x7a\x17\x98\xf7\x06\xc2\x89\x87\x6b\x1a\x4e\xa3\x51\xc4\x36\xe5\x75\x1d\x26\x31\xda\x8b\x23\x85\xdd\x9e\x2c\xe8\xea\x70\x25\x93\x88\xae\x0e\x16\xf2\x34\x14\xae\xe5\x7e\x64\x9f\x63\xe0\x9d\x4f\x0e\xc1\x00\x4a\x90\x76\x50\x55\x0e\xa7\x77\xf3\x3e\xa5\x0b\xc1\x57\x3f\x5b\x18\x6b\xe1\xda\x42\x97\x6c\xbd\x49\xc2\x92\x81\xf5\xc0\x26\x67\x8b\x6c\xbd\x89\x13\xb5\x24\xc2\xb4\x97\x25\x11\xcb\x7b\x9c\x18\x73\x48\x64\x4b\x43\xfc\xec\x95\xd7\x21\x17\xbd\x59\x4f\x7a\x41\xed\x49\xd7\xbd\xa3\xde\x87\x84\x85\x05\xeb\x6d\x37\x11\xaf\xfb\x4b\xb6\xcd\x8d\xca\xf3\x5e\x99\xf5\x42\xde\x03\xa3\x66\x0b\x0d\x23\x7f\x11\x0c\x11\xee\x65\x79\x2f\xca\x6e\xd3\x55\x1e\x46\xb2\xac\xac\x17\xca\xb5\xbb\x04\x05\xe7\xbc\xe0\x08\xe1\xe9\x9f\x19\x5c\xab\x07\xff\x83\xb1\x99\xfd\x3b\x1c\x57\x08\xc6\xe7\xd0\xbd\xfd\x7e\x1a\x8e\x4a\xd9\x2d\x13\x91\xc4\xf4\xf4\x5b\xb3\xf3\x2e\xeb\xb1\x9a\x74\xf6\x36\x61\x51\xb0\x88\xb7\xa2\xaa\x40\x78\x7a\x22\x90\x72\xd7\x16\xa9\xbc\xe4\x40\xca\xe2\xbb\x6a\x76\xc3\xba\xe8\x11\x49\x09\x23\x11\x59\x0a\x04\x5a\xd1\xc5\xe8\x1f\x6f\x47\x8d\xec\x47\xfc\x47\xc5\x4b\xa9\x26\xb6\x52\x1b\xe9\x0a\x2c\x49\x47\x12\xd8\x3a\x95\xee\x24\x75\xf4\x18\x51\xe4\xcb\x8b\x84\x51\xe2\x72\x4f\xf8\x1c\x52\x5d\xca\x0a\x25\x33\x24\xcc\x40\xfa\x94\x2e\xf7\x64\x81\x21\x97\x95\x92\x55\x7b\xa2\xaf\x59\x4f\xd6\xd9\x43\xc3\xf9\x10\xf5\x16\xd9\x36\x89\x80\xca\xcf\x59\xaf\x9e\xf7\x6b\x96\xf2\xc9\x4a\x39\x87\x1e\xa7\x6a\xde\x4e\xb3\x34\xf9\xd2\x5b\x67\x11\x87\xe7\x9e\xc8\x05\x5b\x78\x7e\xa0\x9e\x4d\x58\xdd\x28\x4a\x20\xcf\x95\x55\x76\x4e\xf1\x16\x33\x46\xe7\x32\x8f\xc7\xc0\xe5\x43\x3b\x8f\xf8\x5e\xf3\x72\x6c\x4f\x20\xea\x96\x77\xc8\x33\x2f\xb8\x3c\x33\x07\xf9\x6c\x3e\x18\x84\x20\xe9\x0e\x06\x16\x70\x04\x27\x89\x22\x73\x9c\x8d\x20\xc6\x5b\x58\xd7\xbd\xd0\x83\xf9\x67\x5c\x5e\x7f\xcb\x89\x8f\x07\x33\xdb\x4e\x25\x69\x96\x6d\xc4\x27\x30\x13\x50\x2b\xf5\x75\xba\xcc\x84\xf3\x0b\x55\x65\x93\x0b\xba\x91\xd2\x95\x20\xc7\x37\x6a\x5f\x9a\xdd\x78\x0b\x52\x92\xf5\x54\xa7\x54\x95\x55\xd2\x1b\xbd\x85\xae\xeb\xbc\x05\x9e\xa6\x8a\x45\x8b\x48\x4a\xe6\xbc\x20\x11\x4c\x13\x36\x2b\x80\xde\x35\x28\x9f\x15\x8d\xcc\x8e\xd6\x3e\x33\x61\x99\xb5\xc7\xd8\x38\xf9\xa9\xa9\xb9\x38\xf2\xa8\xa5\x69\x70\x63\x26\xf7\x61\xed\x3a\x6c\x8c\xc9\x8d\x59\xde\x18\xba\x66\x1f\x8d\xf5\xe1\x87\x72\x00\x55\xc5\x77\x34\xe1\x2a\x2e\xc2\x78\xcf\xc7\xa3\xb7\x83\x1b\xb9\x1d\x44\xfa\xee\x5e\x7a\xe0\x36\x7a\x4f\xe7\xd3\xb0\xb9\x0e\xe9\x49\x73\x1c\x24\x22\x37\x7c\x1f\x8a\xe8\x4e\x82\xca\xeb\xdb\x44\xad\xb5\xa8\x5e\x6b\x37\xca\x4d\x1a\x5f\x9f\x62\x5d\x71\x41\x07\xff\x99\x95\xb4\x14\xf1\x14\x40\x04\x33\x8f\x68\x14\x0b\xa8\x56\x7b\x68\x2d\x48\x84\xf9\x38\x38\x3a\x75\x1d\x2d\xd6\x1a\x7a\xb0\xff\x92\xdf\x31\xf9\xd2\xda\x81\x09\xdf\xc0\xe5\x42\x68\x9d\x74\x2e\xc0\xd0\x21\xe9\x66\x31\xa7\xf3\x7a\x31\x24\x78\xba\x18\x7d\x0c\x97\x4c\x9e\xbe\x71\x16\xfa\xd5\xdd\x82\xc1\xa9\x05\xe5\x5c\xea\x4f\x65\x9c\x14\x74\xce\x59\xeb\xb7\x34\x9c\x2e\x3a\xc8\xf3\xdc\x10\x60\xd4\x57\x8b\xa3\xd0\xde\x58\x68\x11\x5d\x58\x9c\x63\x14\x4c\x06\x5d\xd4\x7b\xbc\xf5\x3b\xf9\x42\x36\xe4\x33\x79\x71\xcf\xb9\xe9\x1c\xef\xe6\x5c\x28\x57\xc7\x17\xfa\x58\x48\x1d\xbe\x7c\x4a\xe2\x94\x4d\x4f\xea\x8f\x2f\x1b\x67\x33\x9f\xc4\x51\x8d\x28\x0c\x11\xf7\xd4\x67\xfe\x72\xf0\x55\xd6\x0c\xdf\x78\xc5\xea\x7c\xf6\x83\x40\xbb\x77\x0d\x57\x32\x73\x12\x72\x3c\x53\xd6\x75\xe3\x2e\x47\x92\x56\x44\x17\x64\x01\x3a\x17\xd8\x73\x3b\x72\x80\x14\x1f\x92\x50\x64\x99\x1a\xca\x63\x24\x12\x01\xc6\xa4\x45\xb5\xc4\x7c\x34\x55\x8a\xe2\xa5\x70\xf6\x4b\xe7\x53\x7d\x1c\xad\x2e\xa1\x2d\x06\x21\x1f\xf1\xcc\x62\x74\x57\x83\xc9\x63\xc6\xb1\x9a\x1e\xa3\xc7\xf4\xd0\x89\x01\x14\x99\x2c\xe0\x45\x4c\x60\xaa\x6a\xc4\xa7\xbd\xe0\xf1\xa5\x64\x0a\x08\xb8\x1a\x19\xf0\xe2\xa4\x97\x30\x2c\x39\xf4\x7b\xb3\x61\x52\x8f\x64\x04\x61\xac\xe0\xc0\x61\x59\x62\x4f\x1f\xc6\x89\x8f\x22\x26\x81\xc8\x83\xf7\xe4\xe4\xed\xb6\x28\xc3\xc5\x35\xeb\x9c\x20\xc2\xf0\xce\x84\x2b\x6b\xc0\x75\x2d\x8b\x22\x13\x8c\x91\x8c\xfd\x07\x0e\x7b\x16\xd7\x61\xfe\xa2\x9c\x59\x0b\xaa\x9e\xad\x31\xe6\x84\x57\xbe\xb8\x4a\x47\x12\xf8\x8a\x88\xa2\x1d\x44\xb2\x1c\x0c\xd0\x00\x1e\x54\xb4\x22\xf9\xb9\xdf\x5f\xc8\xa6\xd8\xdd\x26\xa7\x8d\x33\xdd\xd5\xe8\x23\x4f\xe4\xc3\x98\xcd\x3d\x01\x24\x9d\x22\x38\xf7\xba\xe8\x28\x2e\x7e\xcc\xb2\x92\xf6\x6d\x91\x18\x47\xd4\xfc\x18\xe9\x03\xbf\x70\x5d\x98\x5f\x44\x8a\xf8\x7a\x1d\x16\xd7\xe6\x37\xfe\x3e\x95\x56\x05\xf1\x2a\x9e\x27\x4c\x08\x99\x66\x9e\xe6\x17\xd9\x76\x71\x98\x4f\xa5\xed\x89\x1e\x42\x6b\x6e\x9a\xf3\xb2\x68\xcc\x0b\xd4\x81\x8c\x5e\x86\x53\x19\x29\x3c\x8e\xe8\xdc\xb7\x83\xe9\xc9\x9c\x9a\x23\x9c\x4b\x57\x9b\x0e\x6e\x75\xc9\xea\x1a\xcf\x62\x14\x17\x1f\xe3\xf5\x26\x01\xcf\xd4\x73\xad\xf4\x15\xe2\x3d\x91\x5b\xca\x91\xd5\x7e\xcf\x12\x15\xe5\x50\xe3\xa4\xf5\x1d\x17\xab\xe4\x1a\x95\xce\xc8\x68\x68\xe2\xda\x62\x4f\xbe\x49\xb2\xc5\xcd\xd7\xe2\x2e\x97\x57\xf4\x1c\x8f\xb2\x3c\x5e\xc5\x69\x98\xf4\x29\x8d\x46\x9b\xb0\xbc\xd6\x29\xc6\x0e\x96\x74\x95\x18\xa2\x5e\x94\xb1\x22\x7d\x58\xf6\xc0\x3f\x53\x0f\x0d\x5b\x35\x08\x5b\x12\x73\x84\x22\x9e\x80\x48\x51\x0b\x47\x0d\xae\xde\xc1\x1b\x2b\x7d\xd1\x20\x4f\xa0\xdf\x30\x37\x56\x31\x81\x35\xec\x45\xe6\xaa\xdf\x4f\x2d\x10\x13\xcd\xc5\x3e\x37\x33\x4c\x4f\xac\x05\x9f\xaa\x06\xa9\x88\x8c\xec\xd3\xc5\x60\xd0\xd7\x34\x23\x2e\x5e\xcb\xce\x40\x88\x32\x69\x67\x7a\x00\xef\x26\xa4\xc3\xc6\xc0\x95\x5f\xc0\xa9\x79\x63\x38\xdf\x93\x1f\xc2\xe2\xfa\x4f\x55\xc4\x51\x59\x23\x48\x9c\x17\xbc\x92\xd7\xd1\x9f\xaa\xe2\xf5\xb7\xc8\xb8\xf6\x40\x88\x44\xd4\x0f\xe0\xd8\x78\x45\x6d\xf0\x4a\x28\x19\xa7\xd5\xb3\x25\x84\x3e\x96\xca\x12\x73\x7f\x05\xa1\x2a\x4b\xb2\xa0\x8b\xa1\x65\xc1\x7b\xc1\xf8\xf2\x29\x33\x08\xaf\x81\x87\x39\xe0\x17\x1a\x8d\x94\x16\x94\x7e\xe0\x1d\x10\xda\x50\x5c\x24\xb3\x9f\x45\x87\xe7\xfc\x89\x85\x5e\xa7\x9f\xc3\x24\x8e\x7a\x1c\x8f\xbc\x1e\x1a\x2e\x24\x0e\xa9\x1a\x67\x6c\x38\x94\x3b\x41\xf1\x71\x91\x01\x3d\xb4\xc5\xb9\x51\x24\xd4\x26\x73\xbc\x17\x7a\x29\x12\x09\x15\x02\xf1\x8e\x17\xf4\x24\x6a\xcc\x40\x24\x3d\x84\x0b\x19\x37\x2e\x24\xeb\xc8\x14\x05\x10\x2b\x9c\xc2\xc9\xbe\xde\x70\xfb\x8d\xf6\xc5\x1d\x16\x33\xab\x7d\x9b\x45\x0c\x82\x25\x51\xf3\xa2\x57\x93\x85\x70\x7d\xb8\xcf\xdc\x37\x5f\x1f\x5e\xfc\x78\xf9\xfa\xc5\x9b\x4f\xef\x5e\xbc\x7d\x25\xa7\x3e\x05\xa2\xa0\xc7\xb8\x27\xdf\x86\x65\xf8\xa7\x2a\xfd\xf6\xc5\xe5\x0b\xa4\xe9\xfe\x7c\x4f\x04\x27\xf7\xa7\xea\xf8\x78\xf9\xe3\xeb\x77\xdf\xcb\x5a\x34\xbc\x4d\xf8\x76\x02\x85\x63\x6c\x5a\xb2\x15\x3b\x24\xe9\xf7\xa2\xed\xbb\xcb\x57\xdf\xbf\xfa\xb1\xb3\xb9\x58\xd4\x67\xf2\x32\x66\x8b\x27\xe2\xea\xcc\x9a\xe3\x3d\xf9\x46\x28\x94\xfc\xa9\xa6\xbf\x79\xff\xfe\xcd\xab\x17\xef\x64\xd3\xf3\x2c\x4b\x8e\xb5\x84\xca\x7c\x0b\x1a\x80\x73\x4e\x27\xd6\xeb\x3f\x4f\x27\xa0\x0c\x52\xf4\x1e\xde\xe0\x2c\xb2\xbe\x15\x3d\x38\x55\x53\xa7\x0b\xbb\xfd\x74\x25\xdc\xce\xe6\x34\x51\x8f\x07\x77\xc0\xe6\xc5\x26\xa5\xf4\xda\xe4\xa2\xf4\xa9\xfd\x34\x19\x7d\xf9\x42\xb5\xec\x94\x88\xba\x38\x00\x8d\x8e\x1c\xea\x55\x74\xdf\xd5\x82\xe4\x2d\x5d\x25\x00\x01\x47\xff\x05\x41\xd2\x0c\x06\x48\x50\x71\x91\x3e\x57\xe9\x36\xae\xaa\x56\x92\x83\xf7\x7b\x83\xbd\x97\xf7\x94\x5f\xbe\xd0\xdd\x5e\xf1\xda\x65\x1e\x2e\x1a\x71\x34\xf6\xe4\xe4\xcb\x17\x6f\xb7\x27\xc5\x97\xf5\x3c\x4b\x8a\x4f\xde\x4e\xf8\xec\x72\x49\x9e\x65\xa5\x37\x26\x35\x37\xec\x4d\xc8\xab\xf7\xdf\x79\xe7\xfa\x84\xe2\x82\x14\x40\x03\xe4\x0e\xe0\x3d\xae\x33\x7b\x4f\x48\xb6\x61\xa9\xfa\xf2\x94\x2c\x92\xac\x60\xb0\x17\x7b\x8e\x0d\xdf\xe4\x8b\x43\xd4\x66\xe7\x39\xae\x12\x1d\x3d\x67\x4c\x5e\xbe\x7f\x77\xf9\xea\xdd\xa5\xe7\x4c\xc8\xcb\xf7\x6f\xdf\xc2\xe3\x39\x79\xff\xe1\xd5\xbb\x4f\xdf\xbc\x79\xff\xf2\x6f\x9e\x73\x41\x60\xe3\xf5\x9c\xc7\xe4\xe5\x9b\xf7\x1f\x5f\x79\xce\x13\xf1\xfd\xf5\xbb\x7f\xbc\xfa\x91\xbf\x3f\x15\xef\xaf\xde\x7d\x2b\x8a\xb8\x36\x01\xea\xe9\x3a\xf0\xc1\x73\x5d\x91\xe1\xa7\x77\xaf\x3e\xbe\x7c\xf1\xe1\xd5\xb7\x9e\x3b\x16\x75\x99\x49\x13\x91\x49\xd2\x1a\xcf\x3d\x27\x06\xff\xe1\xb9\x17\xea\xf5\x93\x30\x22\xb5\x3d\xf7\xb1\xe8\xd9\xa7\x9c\x6d\x58\x19\xcb\xc4\x27\x32\x51\xe7\x7a\x0a\xe2\x31\x54\x32\xe6\x1d\xe3\x30\x1d\x3b\x44\x90\x0e\x6f\xec\x12\xb9\xac\xbd\xf1\x98\xc8\x65\xe6\x8d\x65\x67\x3e\xbe\xfa\xf9\xc3\x8f\xde\xf8\x5c\xf6\x56\xbe\x5e\x88\x8b\xab\xf1\x63\xf8\x35\x9a\xff\xb4\x49\xb6\x85\xed\x8d\x9f\xc0\x87\x8f\x6c\x05\x93\x34\x7e\x4a\x4e\x5e\x7f\xeb\x4d\x6c\xf2\xea\xef\x3f\xbd\x78\xf3\xd1\x9b\x38\x84\x13\x3f\x6f\xe2\x02\x9c\x64\xbe\xc2\x9b\x8c\xc9\xc7\x57\x1f\xbc\xc9\x84\x3c\x10\xee\xba\x3c\x9b\x3c\x60\x69\xe4\x39\x7b\x52\xb2\x7c\xcd\xa9\x0d\xc7\x1d\x57\x9d\xf2\x93\x73\x0f\xbd\x7a\xff\x1d\x22\xce\xc4\x43\x72\x26\x11\x71\xce\xf9\x0b\xcc\x25\x22\xce\x85\x87\xea\xd9\x44\xc4\x79\xe2\x21\x18\x0c\x22\xce\x53\xf9\x49\x4e\x24\x22\xae\x2d\x53\xd4\x54\x22\xe2\xba\x22\x09\x11\x77\x2c\x3f\xea\x39\x43\xc4\x9d\xc8\xda\x1a\x89\xe7\x32\xa3\x9c\x4a\x44\xc6\xae\xa7\x48\x35\x19\x8f\x3d\x4d\x48\xc9\x78\xe2\x69\xd2\x46\xc6\xaa\x1c\x80\x19\x91\xf1\x85\xaa\x5c\x26\x4c\x6c\x8f\xb3\x0e\x64\xe2\x78\x48\x80\x12\x91\x89\xeb\x89\x9d\x84\x4c\x26\x1e\xfa\xf8\xea\x03\x82\xa3\xb1\x68\x0b\x6b\xaf\xf8\xe4\xf9\x36\xf1\xc7\xc4\x0d\xf8\x7f\x27\x20\xfe\x05\x3c\x5f\x90\xb1\xf1\xec\x18\xff\xed\x80\xf8\x13\x78\x9e\xc0\xd7\x27\x90\x53\xfd\x77\x3a\xff\x3b\x0e\x7c\x7e\x0a\xff\x1d\x5b\xfc\xb8\xe4\x44\xfe\xc2\xcf\x98\x4c\x02\xe2\x3f\x86\x3a\x9d\xc7\x22\xed\x31\x94\x1e\x3b\x5f\xf3\xc3\x0b\x8c\x65\x01\xd1\x90\x2b\xba\xdc\xfc\x19\xdb\xd0\x82\x2b\xca\x4d\xc6\x90\x73\x22\x86\xee\x3e\x86\xd1\xb9\xa2\x16\xf7\x89\x78\x7b\x22\x0a\x3c\x15\x6f\x4f\x45\x2d\x4f\xd4\x8f\x1b\x04\x64\xc3\xf2\x65\x96\xaf\x5f\x2c\x9a\x8a\xd2\x21\x99\x73\xf6\x9e\xac\xc8\x92\xef\x00\x21\x5d\xea\xbb\xf5\x69\x71\x1b\x97\x8b\x6b\x6b\x85\x77\x8b\xb0\x60\x3d\xc7\x53\x27\x78\xec\xb6\xc7\x1a\x52\xf3\xd2\x0f\x4f\x9d\x40\xc8\x9f\x9f\x1e\xe0\x29\xe4\x77\x8f\xe7\xf7\xdb\x79\xc7\x82\x1b\x7b\x40\x3b\xf3\xca\xea\x97\x7e\x68\x94\x9b\xe7\x2c\xbc\x11\xa5\x27\xc7\x4b\xf3\xa2\xee\x1f\xd7\x70\x7e\x7f\x0d\x27\xaa\xac\xdf\x5d\xfc\xe2\xde\xe2\xdd\x65\x1e\xdf\x3b\xe4\xae\x12\x4f\xfe\x74\x89\xa7\xaa\x84\xcf\xbb\x11\x98\x9f\x1c\xdb\x13\x40\x11\xfc\x2e\xff\x2e\x59\x88\x07\x54\x7c\x68\xe4\x76\x9a\x6d\x6b\x51\xb1\x09\x60\xad\x21\xf0\x47\xf0\x76\xdc\xaf\xaa\xaf\xa3\xda\x23\xf5\x69\x04\xe2\x59\x1a\x5f\x26\x47\xbf\xb4\x26\xdd\x10\xc8\xc4\xac\x9d\x74\xb6\x74\xd1\x2e\xa5\xd9\xb3\xe3\x73\xed\xb4\x26\xdb\x3c\x28\x52\x8b\x07\xbc\xdf\xc9\xd1\x27\x06\x18\x94\x59\x71\xbb\xca\x27\xff\xf9\x2a\x35\xba\xec\x60\xeb\x97\xb5\x80\x3c\xeb\x35\xcb\xef\xcd\x72\xae\xfd\x1f\xef\x8a\xeb\xfc\xe7\xab\x6c\xa1\x9c\x71\xbc\xd2\x42\xba\x13\x51\xdb\xf8\xde\xda\x34\xc2\x25\x96\x81\xec\xcd\x3c\x2d\xba\x54\x1f\xa1\xf9\xa2\x41\x7d\xfb\x20\x6a\xc0\xc7\xf1\xdb\x3d\xbf\xaf\xaa\x40\x02\xa3\xb3\xe4\xc5\x31\xfc\x77\x5b\x48\x59\x8b\x6e\xc7\x11\xd9\x6d\x61\x9d\x21\x81\xdd\x53\xe8\x69\x6b\xb1\xd7\xb2\xd3\xf1\x42\x63\xfb\x58\xbf\xc7\x8e\xa2\x5c\xfa\x6c\x4d\x9d\x3d\x76\x91\xae\x71\x6b\xde\xd5\x59\x49\x67\xd3\x27\xa2\xc8\xd8\xa4\x9b\x0a\xad\x9a\xb5\xb6\xf7\x9c\xa6\x54\x7e\xcf\xb8\xda\x5b\x4d\xab\xe0\xfd\x73\xd1\x5d\x65\x7b\xfb\xe9\xac\xf2\xe8\x54\x35\xeb\x6a\x21\x85\x3a\x11\xb8\x67\x40\x6d\x94\x88\xfe\x20\xff\x53\x4f\x00\x55\x6c\x3c\x70\x2f\xe6\x41\x6e\x7d\x08\x24\xe7\x77\xdf\xd8\x90\xdc\x06\xfc\x27\x1a\x3d\xfc\xba\x86\x7d\x33\x4b\x3d\x8b\xcd\xf4\x49\xc7\xce\x77\x62\x66\x78\x7c\x7c\xdb\x9c\x3c\x39\x2c\xbc\xdf\x93\x32\x9c\x27\xcc\xf3\x77\x63\xcf\x21\x13\xcf\x25\xe7\x9e\x0f\xdc\xde\x13\x6f\x42\x9e\x7a\xe7\xc4\x71\xbc\x0b\xe2\xb8\xde\x63\xe2\x8c\xbd\x27\x9c\xd5\xf7\x1d\xf2\x34\xe0\x6c\xbe\xef\x10\xc7\x0e\x38\x8f\xcf\x9f\xdc\x80\xb3\xf4\xfc\xc9\x09\x38\xdf\xce\x9f\xc6\x01\xe7\xdb\xf9\xd3\x24\xe0\x8c\x39\x7f\x3a\x0f\xf6\x64\xe7\x78\xfe\x98\xff\x8a\xa4\x0b\xde\x9c\xf3\xf8\x7f\xb7\x3d\x97\xb8\xb2\x45\x17\xea\x9b\xa8\x07\x9d\x72\xa1\x1e\x9e\xca\x07\xd7\x56\x0f\xae\x7a\x18\xab\x07\x59\x6a\x4f\x76\x13\x2e\x71\x5e\x70\xb9\xf4\x31\x17\x46\xff\xfb\x80\x73\x1d\xd5\xe4\x93\x3f\x1c\xd1\x89\x6a\xd6\x75\xff\xff\xd9\xac\x00\x1f\xff\x2c\xe0\x07\x4f\x75\xda\x85\x7e\x7a\xaa\x9e\x44\xcd\xf0\xe4\xea\xa7\xb1\x7e\x52\x65\x75\xd5\x13\x5d\xf5\x44\x57\x3d\xd1\x55\x4f\x74\xd5\x13\x5d\xf5\x44\x57\x3d\xd1\x55\x4f\x74\xd5\x93\xba\xea\x73\x5d\xf5\xb9\xae\xfa\x5c\x57\x7d\xae\xab\x3e\xd7\x55\x9f\xeb\xaa\xcf\x75\xd5\xe7\xba\x6a\x03\x20\x17\xba\xea\x0b\x5d\xf5\x85\xae\xfa\x42\x57\x7d\xa1\xab\xbe\xd0\x55\x5f\xe8\xaa\x2f\x74\xd5\x17\x80\xb4\x8f\x3d\x77\x4c\x5c\xc7\x73\x27\x64\x6c\x7b\xee\x39\x39\x99\xd8\x30\x63\x4f\x02\x2e\x79\xf2\xa7\xc7\x01\x99\x8c\x3d\xf7\x42\x66\x7f\xda\xc8\xfe\x07\xb9\xb9\xb0\xf6\x27\x72\x3b\x5f\x9d\xdb\x75\xbc\xf1\x98\xb8\x17\xde\xd8\xe5\xc2\x37\x27\x28\x93\x80\x8b\xde\xfc\xe9\x3c\x30\xcb\xaa\xfa\x61\xd4\x35\x3c\x6d\x0d\x4f\x5b\xc3\xd3\xd6\xf0\xb4\x35\x3c\x6d\x0d\x4f\x5b\xc3\xd3\xd6\xf0\xb4\x35\x3c\x6d\x80\xa7\xed\x8d\x2f\x20\xbf\x43\xc6\x8f\xc5\xd2\x1d\x3f\xf9\x9f\x52\x3a\x68\xfe\xf1\x1f\xaf\x9c\xc7\xde\xf8\xe9\x7f\x8f\xcc\x9d\xb4\xd7\xe9\xc5\x57\x10\x3c\xc0\x1d\xe7\x09\x4f\x99\x70\x38\x7c\xed\x44\xdb\xde\xc4\x69\xc0\x48\xd6\xe1\xaa\x67\x97\x4c\x78\xab\x13\xfd\xf4\xc4\xe3\x72\xbe\xab\xde\xc7\x63\xfd\xa4\xf3\x8c\xcf\xf5\xd3\x85\x7a\x9a\xd8\xfa\x49\x95\xd5\x2d\xb8\xe7\xaa\x05\xfe\x24\xca\xb8\xe7\xf5\xf7\xf1\x13\xf5\x9d\x3f\x89\xb6\xe1\x69\xac\x9f\xea\xaf\xe7\xfa\xe9\x42\x3d\x89\xb6\xc7\x4f\x54\xdb\xf0\x04\x53\x30\x01\x7a\xe1\x3a\xde\xe4\xbc\x0b\x4d\xc5\xf8\x6d\x3d\x7e\x5b\xb5\x0e\x4f\x63\xfd\x54\x7f\x3d\xd7\x4f\x17\xea\x49\x8e\xdc\xd6\x23\xb7\x45\xeb\xf0\xa4\x21\x7e\x32\xb9\x30\xc0\x0f\x53\xe1\x8a\x2e\x3e\x31\xa6\xc2\x81\xa9\x3d\xb7\x89\xfb\xd8\x9b\x3c\x3d\xda\x65\xbe\xfe\xe4\xa0\x27\x06\x18\xcf\x75\xaa\x09\xdc\x0b\x9d\x7a\x51\xaf\x48\x47\xaf\x48\x47\xaf\x48\x47\xaf\x48\x47\xaf\x48\x8d\xa4\x6a\x5b\x96\x4f\x63\xfd\xa4\xca\x0a\x38\x9f\x3b\x1d\x9d\xfe\x9f\x72\x03\xa2\xf7\x7f\xbc\x4a\x26\xde\xb9\xfb\x1f\x59\xff\xe7\x5f\xb1\x22\x05\x3e\xeb\x0d\xd3\xd5\x1b\xa6\xab\x37\x4c\xfe\x74\x22\x6a\x74\xf5\x8e\xe9\xea\x1d\xd3\xd5\x3b\xa6\x6b\xec\x98\xae\x9e\x19\x57\xcf\x8c\xab\x67\xc6\xd5\x33\xe3\xea\x99\x71\xf5\xcc\xb8\x7a\x66\x5c\x3d\x33\x6e\xdd\x5b\xe7\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xd1\x44\xd8\x73\x81\xb0\x17\x6a\x05\xf1\xf7\xa7\xde\xf9\x98\xd3\xa6\x0b\x9b\x8c\x1d\xef\x7c\x22\x37\x8d\xf3\xc7\x6a\xd3\x38\x97\x2b\xda\x21\xe7\x4f\xc5\x9a\x72\xc8\x85\xa3\xd7\x14\xa7\x11\x8f\xbd\xf3\x73\x32\x7e\xe2\x5d\xb8\x64\xfc\xd4\xbb\x18\x4b\xac\xba\x98\x74\x51\x39\xf9\xcd\x44\xfa\xc7\x9a\xa2\x3c\xd6\x14\xe5\xb1\xa6\x28\x8f\x35\x45\x79\xac\x29\xca\x63\x4d\x51\x1e\xeb\x05\xf3\x58\x53\x94\xc7\x06\x14\x1f\x6b\x28\x3e\xd6\x50\x7c\xac\xa1\xf8\x58\x41\xf1\xc4\x79\xac\xc1\xf8\x58\x83\xf1\xb1\x06\xe3\x63\x3d\xe7\xae\xde\x1f\x5d\xbd\x3f\xba\x7a\x7f\x74\xf5\xfe\xe8\xea\xfd\xd1\xd5\xfb\xa3\xab\xf7\x47\x57\xef\x8f\xae\x5d\x57\xad\x17\xba\xab\x17\xba\xab\x17\xba\xab\x17\x7a\xbd\x1b\xb9\x7a\xa1\xbb\x7a\xa1\xbb\x7a\xa1\xbb\x4e\x4d\xc5\x2e\x2e\x0c\x44\x70\x8d\x74\x18\xd9\x7f\x64\xd1\x4f\xbe\x62\x21\x8a\x2d\x66\xa2\xb7\x98\x89\xde\x62\x0c\xda\x38\xd1\xdf\xf9\x93\x24\xf2\x13\x4d\xe4\x27\x9a\xc8\x4f\x34\x91\xd7\xf5\x4c\x34\xb5\x9d\x4c\x34\x91\x37\xeb\xbe\xd0\x75\x5f\x04\xe4\x44\x16\x32\x80\xe3\xea\x0c\xfc\x49\x34\x0e\x4f\x63\xfd\x54\x7f\x3d\xd7\x4f\x17\xea\x49\x34\x0e\x4f\xaa\x6c\x5d\xb7\xc6\x74\x57\x63\xba\xab\x31\xdd\xd5\x98\xee\x6a\x4c\x77\x35\xa6\xbb\x1a\xd3\x5d\x8d\xe9\xee\x63\xa3\x6e\xbd\x2f\xbb\x7a\x5f\x76\xf5\xbe\xec\xea\x7d\xd9\xd5\xfb\xb2\xab\xf7\x65\x57\xef\xcb\xae\xde\x97\x5d\x83\x72\xb8\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x8d\xd5\xaf\x77\xf4\xb1\xde\xd1\xc7\x7a\x47\x1f\xeb\x1d\x7d\xac\x77\xf4\xb1\xde\xd1\xc7\x7a\x47\x1f\xeb\x1d\x7d\x6c\x4b\x1e\xec\xe2\xc9\xbd\x9c\xd7\x49\x83\xf5\x12\x5d\x71\x75\x57\x5c\xdd\x04\x7f\x7a\xea\x5d\xa8\xfd\xfd\xb1\x6d\xe0\x92\x9e\xce\x89\x9e\xa6\x89\x9e\xa6\x89\x31\x39\xff\x41\xb6\xc5\x81\x5e\x38\xf7\x31\x30\x9c\x0c\xeb\x91\xe8\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x83\x27\x55\x42\x93\x2b\xbd\xfb\xb9\x7a\xf7\x73\xf5\xee\xe7\xea\xdd\xcf\xd5\xbb\x9f\xab\x77\x3f\x57\xef\x7e\xae\xde\xfd\xdc\xfa\x90\xc0\xd1\xa7\x04\x8e\x3e\x26\x70\xf4\x39\x81\xa3\x0f\x0a\x1c\x7d\x52\xe0\xe8\xa3\x02\x47\x9f\x15\x38\xfa\xb0\xc0\x81\x5e\x8f\x81\x74\x9d\x3c\x36\xf9\x69\xbd\x6a\x26\x7a\x35\x4c\xf4\x6a\x10\xec\x9e\x06\xb9\xe4\x9a\x2e\xea\xfd\xf2\xf1\xf8\xab\xf7\xcb\x7b\x39\x7f\x31\x69\x8e\x9e\x34\x47\x4f\x9a\xa3\x27\xcd\xd1\x93\xe6\xe8\x49\xd3\xfb\xf0\xd8\xd1\x93\xa6\x51\x63\xec\x18\x08\xa1\xe5\x86\xb1\x96\x04\xc6\x5a\x12\x18\x8f\x83\x7d\x40\xa4\xd7\x34\x71\xd9\x57\x78\x3b\x31\x3d\x1a\xe8\x01\x39\xb7\xf5\xee\x01\x2a\x19\x60\xdb\xdd\x32\x72\x10\x1a\x55\xc2\xea\x3b\x04\xd3\x0b\x9e\xd3\x3b\xb4\x67\xf2\xed\x80\x44\xd4\x4f\xb7\x49\x12\x10\x46\xfd\x80\x48\x95\x1d\x38\x15\x23\x10\x4a\xfd\x9a\xda\xe4\x86\xda\x24\xa5\xf2\xa8\x36\x61\x77\x2c\x1f\x81\x67\xb9\xcd\xb6\xb4\x94\xfe\x8a\x48\xfe\xf2\x85\x4a\x8d\x8c\xa9\xfc\x15\x1f\x68\x9d\x47\x2a\x5b\x7f\xf9\xa2\x54\x55\xf8\xab\x69\xd4\xa6\x6d\xda\x1a\xf5\x26\x49\xb6\xd0\x16\xf5\x46\x1a\xdd\xed\xf1\x34\xa4\x07\xe9\x53\x26\x0e\xfa\x42\xe1\xde\xa3\x34\x73\x48\x47\xd8\xd2\x1b\x6c\x23\x6d\x94\x87\xe9\x8a\x15\xd3\x2e\xaf\x11\x8d\x7e\x03\x78\x55\x87\xea\x14\x7a\x98\xa9\x76\x32\xb0\x26\x09\xd9\x92\xdf\xc8\x2d\x78\xfc\x22\xc5\x74\x8a\x77\x5b\x3a\xf7\xe7\xfa\xea\x36\x98\x4a\xf7\x57\xa3\x26\x26\xf8\xdb\x00\xff\x46\xbb\x3f\x88\x68\x12\xd2\x62\x88\x52\xba\xae\xaa\x2e\x68\xae\xf1\x9a\x0a\xfb\x04\xb2\x36\x81\x91\xb0\x3b\x0b\x57\x95\x43\x94\xf3\xca\xda\xa8\x70\x3d\x18\x58\x32\xaf\xd2\x9d\xf1\xd7\x41\x55\xad\xf1\xf4\x37\xba\xf2\xb7\xc1\x60\xc0\xff\xfb\xeb\x60\x1f\x2f\xad\x46\xa3\xaa\x8a\xdf\xaa\xaa\xff\x9b\xd6\x8e\x3d\xe9\xff\xa6\xfd\x7a\x7d\xa6\x08\x81\xd9\x70\x8a\x77\x05\xf5\x03\x80\xd2\xa6\x17\xa7\x3d\x5e\x27\x16\x78\xa8\xf5\x2e\xfc\x4d\x30\x18\xb8\xcf\x36\x83\x81\x74\x8f\x88\x1e\x4a\x3f\x2a\x8d\x3c\xc2\x27\xc0\x67\x73\x7c\xc5\x75\x76\xfb\x41\x3a\x99\x9a\xa1\x0f\x7c\x5a\x7a\xa0\xc0\xd1\xcb\x52\xf0\xab\xd0\x43\x43\xeb\x7a\xe8\xe0\x21\xf2\xae\x52\x59\xe9\x61\x51\x0b\x0f\xd1\x55\xfa\xea\x6e\xc3\x16\x65\x9c\xae\x7a\x68\x58\x48\xe5\x41\xd2\x43\x78\x88\x48\x6f\x95\x95\xbd\x87\x68\x68\xb5\x7b\x25\x20\x36\x04\x7f\x2b\xf7\x37\xdf\xfb\x29\x65\xd0\x00\x8b\x78\xaa\x43\xe9\x7a\x86\x58\x1a\xf5\xb2\x65\x2f\xe6\xab\x0d\x79\xe8\xfe\x16\xf0\xb4\x85\x8f\xd6\x67\xb2\x83\x40\xe3\xc6\xb0\x40\x5d\x97\x94\xd9\x0d\x4b\xbd\xce\xaa\x08\xe8\xf5\x37\x97\x54\x9c\xb2\x34\x23\x49\xb6\xf0\x42\xa2\x3a\xe9\x15\x7b\xbc\xe7\x53\xcf\x67\xd5\x50\x43\x07\xe3\x9f\xc1\xc0\x79\xf6\x5b\x53\xc9\x53\xf4\x48\x02\x41\x50\xae\xda\x3e\x38\x14\x08\xdd\xdb\x64\x45\x11\xcf\x79\x42\xd9\x03\x5d\x2b\xaf\x87\x86\x27\x5b\x0e\x61\xd1\xe5\x1e\x1a\xae\xb1\xd2\x71\x10\xf8\x24\xd5\x1c\xe6\x02\x35\xd6\x78\x2a\x95\x41\x1b\x43\x28\x21\x20\x0a\xeb\xf8\xc2\xe9\x05\x9e\xca\xd2\xbf\xf9\x4e\x80\xa7\x6b\x30\xa8\x98\x26\x33\x6b\x4d\x13\x92\x48\x0b\x0c\xeb\xa6\x45\x68\x58\xba\x22\x4b\x7a\xd0\x0c\xb9\xa6\x5d\xd0\xeb\x20\x53\xc4\x7e\x96\x0e\x06\xe9\xe9\x69\xf3\xe2\xcd\x2b\xb4\x85\x9b\x56\xa6\xf1\x79\xcf\x02\xdf\x09\xa6\xb7\xa3\x07\x34\xf2\x95\x06\xed\x69\xc1\x53\x3e\x3d\x68\x9a\x6a\xf8\x2a\xfe\xc4\xa9\x55\x54\x95\x83\x03\xc3\xde\xc5\x34\xde\xa8\xf3\x39\x41\x6d\xb8\xd2\x32\xd8\x38\x56\x99\xf8\xde\x34\xfb\x38\xac\x50\x7c\xd9\x4f\xcb\xc1\xc0\xe2\x1d\x15\x34\x96\xfa\x1d\xd5\xc2\x17\xbe\x2d\x19\xdf\x4e\x1c\x95\xee\x04\x01\x9e\x6e\x25\x64\x4c\xb5\x18\xa1\x4f\x79\x4b\x96\xe4\x86\x5c\x13\x49\x82\x09\x87\x17\xa8\xc0\x4f\x9b\xd4\xa9\x26\x70\x5b\xa5\xf0\xb8\x9d\x16\xe0\xe8\x43\x19\x01\xd8\xe4\xd4\x7d\x54\x60\x12\xd1\xa8\x4e\x71\x78\x0a\x44\xfd\x30\x53\x34\xe2\x1c\x9b\x30\x3b\xd0\xf8\x78\x3b\x7a\xa0\x31\xf0\x16\xee\xd7\x38\x1d\x35\x36\x00\x37\x08\xfc\xc6\x7e\x10\x68\xb4\x6c\xde\xc5\x79\xca\x07\xc9\x7e\x5f\x3f\x91\xf9\xa1\x4d\xd8\xee\xd5\xfb\xef\x3c\xe7\x38\xb3\xa0\xf6\x1b\xbd\x1f\xe3\xe6\xab\x49\x4b\x78\x01\xe1\xa3\xe3\x80\xc5\x50\xfc\x40\x83\xcb\x10\xb7\x88\x40\xb9\x94\x5a\xff\xa7\x75\x96\x4b\xbd\xe8\x4f\x09\x2b\x24\x9a\x47\x59\xca\x68\xdf\x51\x3c\x83\x58\x2e\x54\x31\x0a\x1c\x18\x8a\xfb\x10\xeb\x4b\x94\x02\x3a\xc6\x22\xe3\x85\x6f\x29\x52\x73\x36\x15\x41\x92\x3f\x96\xe1\xe2\x86\xfa\xe8\xf5\xbb\xd7\xa0\x0d\x17\xe8\x36\x80\x77\x30\x56\x8c\xd3\xc4\x79\xdb\x58\x24\x4e\x03\xc3\x6d\x69\x4b\xd6\xe4\x18\x14\x2b\x20\x6a\x56\x28\x6e\x13\x5b\x69\xe7\x48\x77\xa6\x76\x33\xec\x77\xdc\x04\x9a\xf2\x86\x67\x40\xce\xb7\x03\x73\xe8\x43\x05\x49\x01\x97\xe1\xd0\xac\x5d\xbd\x01\x30\x74\x4e\x09\x27\xfe\x1e\xca\x58\xda\x67\xd6\xcc\xbb\xca\xaf\xd2\x59\x75\x95\xe2\xd1\xa3\xb3\x15\x9e\x59\x0d\xe0\x0f\x87\xc4\x1c\x8e\x86\xc5\x70\x28\xcd\x91\xcc\x0f\x02\x30\xba\x2b\x2d\xb8\x1c\x80\xc5\x77\x02\x95\x57\x22\x87\xf1\x5c\x5b\xe1\x9c\x68\x53\x46\xb2\x3d\x40\x2d\x69\x90\xaf\x5c\x1b\x46\x34\x94\xde\x8f\x1a\x23\x3b\x5b\xe1\x46\x3b\xe1\xd0\x78\x3b\x44\x28\xf1\x3c\x2a\xb6\xf3\xa2\x84\xe8\xea\x46\xa2\x5c\x91\xf3\x53\xa7\x31\x9f\xa7\x74\xae\xb8\x4f\x80\xec\xbd\xbd\x10\x38\x6a\x66\x6e\xb4\x24\xd2\xb4\x87\x9c\xe9\x11\x24\x67\x51\x57\x39\x16\x19\x25\xeb\x67\x03\x2d\x61\x5e\x4f\xa9\x99\xcf\xb0\xb7\x36\x27\xe8\xe8\x1a\x31\x73\x76\x6e\x27\x4d\x1c\x6a\x2d\xa9\xc3\xd2\x1d\xfb\x47\x34\x3b\xb1\x54\x17\x4d\xe7\x60\xc7\x0a\x7b\x36\x1e\x86\xbe\x76\x2c\xa4\x8a\x06\x3a\xc1\xb7\xd5\xf3\xd1\x0e\x9c\xce\xff\xc4\x92\x96\xdb\x93\x1d\x0c\x8d\x65\x78\x3a\x6f\xc7\xf3\xe7\x74\xce\x5c\xd7\x06\xf5\xeb\xb7\x68\x00\xa7\x83\x87\x74\x13\x70\xde\x32\x91\x05\x16\x46\x88\x31\x17\xe8\x8a\x36\xb9\x6d\x50\x8e\xaf\xc2\x93\x03\x9c\x53\x23\xb0\x5c\xfb\x99\x86\x3b\x1a\x8d\x46\x10\x94\x7b\x18\xaa\xea\x4e\x5d\x1b\x6b\xb7\x6f\x67\x57\xe9\xd9\x8a\x20\x84\xf7\x64\xbb\x59\x64\xeb\x38\x5d\xfd\x61\xcf\xa6\xae\xfd\x3c\xac\x0d\x58\xc3\x61\x93\x00\xa8\x4e\x9f\xb8\xf6\xa9\xca\xa6\xad\xef\xad\xb0\xce\xe0\xda\x78\xd8\xdd\xd9\xce\xfe\x99\xec\xfc\x91\xee\x69\xc0\x5a\x98\xcc\x85\x11\xbb\xa5\x6a\x1f\x3a\x58\x72\xfc\xa7\xb5\x73\x51\x49\x51\x1a\x43\x17\xa2\x02\xd8\x79\xff\x8a\xf6\x24\xe5\xec\xf7\xa1\x83\x63\xd8\xf4\xb0\xe9\x69\xf3\xd5\xfb\xef\x4c\x6a\x55\x55\x96\xb1\x39\xda\x62\xb5\x82\xda\xaf\xb1\x95\xaa\x4c\x06\x69\x91\x14\x0d\x19\x31\xc9\xd4\x8e\x2b\xbd\x6e\xfc\xb8\x4d\x58\x61\x61\xc2\x77\xd5\xd5\x33\x1d\xa8\x6c\x35\x1c\xe2\x78\x69\x59\xf3\xc6\x74\x88\x0d\x03\x52\x72\x5e\xce\x67\xfe\x2a\x08\x20\x8c\x70\x3f\xac\xaa\x79\xbd\xbe\x9e\x87\xf5\x33\xc4\x4e\x0c\xe9\x9c\x44\x74\x45\xfa\x8d\xc5\xb5\x4c\xd8\x1d\x16\xbc\x0c\xb8\x36\x07\xab\x14\x0a\x65\x8f\x6d\x4e\xb8\x49\x57\xe8\x89\xb6\x51\xfb\x1a\x4a\x55\x73\xb5\xff\x0d\x42\x65\xd0\xa6\x06\x9d\x9a\xcf\x1a\x7c\x9a\xde\x1f\x1a\x89\x72\x3c\x57\xf9\xec\x2a\x9d\x9d\xe1\x23\xa4\xc8\xdc\x43\x0d\x10\xee\x5b\xdb\xbe\x66\x04\xd4\xee\xde\x4c\x60\x45\x93\x33\xa0\x87\xbb\xd7\xd7\x13\x39\x63\x87\x23\x26\x7f\x41\x8d\x06\x14\x63\x23\x89\x9a\xf3\x07\x3b\xba\x89\x1c\x6d\xbe\x84\x8f\x24\x3c\xca\xd7\xf3\x74\xcd\xd4\x03\x53\x48\x98\x1f\x05\xa4\x83\xd3\xf3\x3b\xd2\xea\xf9\x50\x46\x7e\x59\xca\x24\x5b\x22\x7a\xa8\x60\x20\xd9\x50\xdc\x70\xb9\x1f\xca\xd8\xf7\xd2\xc3\x82\x8c\x03\x23\x4b\xce\xd4\xc2\xf5\xda\x72\x37\x7a\xc3\xee\xe2\x45\x98\x1c\x0a\xfb\x2d\xd4\xc3\x43\x34\xea\xfd\x94\xe6\x6c\x91\xad\xd2\xf8\x77\x16\xf5\x60\xc6\xf4\x51\x44\xf3\x10\x42\x4a\xf3\x08\x49\xf9\x1d\xd4\x47\x0f\x31\x7a\x8f\xf9\xb6\x72\x77\x84\xca\x71\x8a\xa4\xfd\x41\x76\x0a\x46\xe1\x2c\xd4\xf2\xbf\x85\xf7\x64\xce\x56\x71\x7a\xb8\x47\xb5\x00\x2d\x0f\xdc\xf6\x64\x93\x6d\x20\xc0\xe7\x31\x97\xe2\xed\x72\xd9\x86\x37\xd2\x20\x4f\x7f\x58\xb4\xe8\x9a\xeb\xfb\xe6\xff\xc4\x09\x02\x41\xc2\xf6\xa4\xfc\x53\x1d\xbc\xaf\x56\x38\x89\xdd\x16\xd7\xad\xea\x14\x84\x00\x70\x00\x13\xb9\xec\xbc\xdd\xfe\x0f\x4c\x3a\x5a\xce\x38\xa3\xda\xf5\xaf\x22\xed\xf3\x16\xa7\x1a\x92\xb9\xe2\x43\x22\xbc\x97\x27\x23\x91\x3c\x16\xb1\x3d\x74\x75\x75\x75\x25\xcc\xe8\x54\x39\x58\x91\xa7\x2e\x9e\x59\x2b\xcb\x26\x8e\x54\x4f\x15\x9d\x45\xeb\x2d\xc2\x98\x97\xea\x2a\xe3\x74\x97\x61\xa2\x50\xbb\x1a\x61\x6d\x2e\xcf\x5e\xe4\x30\x9c\x49\x43\x77\xdd\xab\x93\x9b\xd6\x27\x62\x45\xc9\x89\xb2\x30\x51\x19\x94\xec\xdb\xe3\xdd\x98\xc8\x6e\x98\xf9\xce\x95\x71\x89\xcc\x37\x3e\x97\xea\xc1\xe7\x3a\xe5\x42\x99\x7f\xc8\x04\xf7\x5c\xd9\x76\xa8\xde\x5c\x28\xd3\x0d\x95\xc3\x56\x96\x19\x2a\xc7\x53\x6d\x8f\xd1\x4e\xd1\x63\x72\xc7\xda\x6a\x42\xa5\xb8\x4d\xbb\x87\xba\xdf\x53\x13\x76\x8b\x6c\x8d\x70\xcb\x1a\x42\x8f\x7a\x4c\xce\x8f\x8f\xda\x39\x3f\x68\x4a\x8f\x72\xe2\x68\xab\x06\x95\x62\x6b\xa3\x84\x76\x8a\x1e\xe8\x64\xa2\x55\xfb\x8f\xcc\x8c\x3b\xd1\x9a\xfa\xc7\xe6\xee\x89\xd6\xbe\x6f\x23\xf3\xca\x72\x88\x6b\xf2\x6b\x57\xe8\x6c\x45\x1e\xa2\x87\x98\x8c\x5d\xad\x8f\xff\xc7\xa5\x1e\x72\x36\xef\x21\x32\x4a\x69\x48\x4c\x5c\x89\x00\xae\x06\xc5\x78\xa2\x75\xe9\xdb\x29\x1a\x14\xe3\xb1\x56\x83\x6f\x01\x67\x6c\x1f\xe9\x10\xd1\x39\x14\xb0\xd0\xeb\x77\xff\x78\xf1\xe6\xf5\xb7\x48\x2b\xb5\xcb\x92\xe7\xfb\x3d\x01\x6a\xe4\xf9\x10\x7a\xd8\xff\xf5\xea\xce\xb6\x83\x47\x33\x6b\x46\xad\xab\xdd\xd5\x0e\x63\x7c\x46\xcc\x4f\xc3\xd6\xfb\xce\x25\x7b\x9d\xbb\xba\xba\x52\x3f\xe2\xe1\x81\x51\xfe\xaa\xb8\xfa\x18\x3c\x9a\x9d\x9e\x5e\xed\xaf\xf6\x2a\xf5\xca\xd2\x4f\x3a\x27\x2f\x69\xfd\x17\x9e\x3d\x6f\x27\xfc\xa5\x9d\x70\x75\x76\x90\xf2\xeb\x41\x4a\xf1\x88\xef\x9d\x57\xf3\x83\x0f\xbb\x76\xca\xc0\x4c\xe8\x9f\x9e\x36\x5e\x55\xff\x1b\xbd\x97\x05\xd5\x3b\xd5\x1f\x46\x57\xa3\xfa\x99\x83\xc7\xa7\xff\xb5\xbf\x2a\xae\xce\x46\x38\x00\x98\x9c\x48\xa0\x9c\x8d\x02\x9d\xb1\xd0\xc0\xbd\xda\x43\x0f\x8d\xa6\xda\xef\xc8\xba\xba\xf2\x51\x50\xf9\xbf\xa2\x00\x3f\x42\x2a\xf9\x21\x4f\x7e\xc8\x93\x1f\x06\xf8\xd1\x43\x95\xfc\x7f\xd5\x43\x99\x6f\x19\x74\x87\xf7\x46\x76\x05\x3e\x2c\xc3\xa4\xe8\xfe\x72\x3a\xf3\xed\xd3\xa7\xc1\xb0\xf3\xa3\xe5\xff\x7a\x55\xf4\xd1\x5f\xfe\xcf\x29\xb9\x1a\x5d\x9d\x4d\x4f\x9f\xff\xdf\x2b\xff\xf4\xea\xd7\xff\x77\xb5\x3b\xfd\x2f\x59\xa6\x31\x72\x3d\x42\xdf\xff\xf5\x2a\x08\x1e\x5d\xe9\xe1\x6b\x80\x3d\xc0\x67\x01\xa9\xb7\x58\x6f\xb7\xde\x7a\x3b\x89\xa5\x13\x72\x4e\x2e\xc8\x63\xf2\x84\x3c\x25\x8e\x4d\x1c\x87\x38\x2e\x71\xc6\xc4\x99\x10\xe7\x9c\x38\x17\xc4\x79\x4c\x9c\x27\xc4\x79\x4a\x5c\x9b\xb8\x0e\x71\x5d\xe2\x8e\x89\x3b\x21\xee\x39\x71\x2f\x88\xfb\x98\xb8\x4f\x88\xfb\x94\x8c\x6d\x32\x76\xe0\x52\x1f\x5c\xe4\x16\xf1\x67\xe6\xf5\x9d\x3d\x61\x46\x5b\x07\x1f\x17\xd9\x5a\x7f\x1c\xb7\x3f\xca\xc3\x3d\x9d\xc1\x26\x07\xf5\xdb\xfb\xfd\x7e\x6f\xe1\xe9\xc9\x4a\x5e\x48\xce\xa7\xd7\x86\xc3\xd4\xd5\x74\x35\xfa\x20\xae\x23\xb5\xd1\x3b\xf8\xee\xda\x5b\x18\x1c\xf3\x63\xf2\xcd\x31\x1f\x53\x78\xb7\x37\xec\xef\x5f\x4a\xd7\x69\xf4\xba\xd1\xc0\x4e\xb9\x54\xf3\xae\x49\x14\x17\x61\x51\xb0\xf5\x3c\x69\xf0\x1f\x4a\x58\x9b\xab\x80\xc2\x8b\x2c\x62\x05\x09\xc9\x82\xfa\x81\xb0\xf5\xec\xf6\xcf\x21\x24\x2d\x7f\x15\x10\xf4\xed\xab\x97\x6f\x5e\xfc\xf8\x4a\x98\xd7\x8b\x1a\xf0\x42\x5e\x98\xc9\x6f\x3d\x34\x0c\xc1\x81\xc4\x10\x51\xfe\xf8\x39\x4c\xb6\x4c\x86\xa4\x8f\xd4\x3d\x9c\xf0\x45\x6e\x4f\xaf\x9f\x85\xa3\x30\x5f\x29\x6f\x53\xd3\x6b\x88\x83\x26\xd2\xfc\xeb\xc0\x88\x4b\x6f\x06\xdf\x64\xf4\x21\x7a\x38\x64\x9a\x3a\x73\x69\x98\xa0\xab\xab\x14\xe1\x21\x10\xf6\x48\x85\x38\x9b\xca\xce\xa9\xce\x0e\x11\xb8\x91\x11\x62\x76\x0f\x61\x1d\x03\x7c\x21\xd3\x78\x1d\x7b\xc2\x7e\xdb\x86\x89\xc1\x22\xce\x1b\xec\xad\x84\x9c\x8e\xbf\xcd\x59\x90\x66\x5a\x9f\xd2\x13\xc5\xe0\xf7\x1d\xc3\x1b\x8a\x3d\x5d\x3c\x0b\xa7\x0b\xe5\xf4\x24\x6a\x54\xe8\x2f\x02\x02\x6e\x37\xf4\x2b\xaf\x3b\x92\xef\x7d\x4a\x99\x7c\xac\xaa\xc8\x84\x1a\x7c\x31\xde\x0f\x1b\x16\x82\x78\xa3\x90\x9a\x59\x91\xe8\xaf\x02\x5d\x8b\xbf\x0a\x74\x0d\x7b\x39\xe4\xc5\x75\x9c\x44\x39\x4b\x1b\x63\x6e\x25\xf6\x29\x6d\x8d\xd9\x1c\x6f\xbc\xb4\xfa\x8d\xaa\xfc\x45\x30\x12\x70\x36\xaa\xf2\x17\x01\xae\xeb\xd0\x37\x0f\x64\xb5\x8d\x23\xcf\x56\x0e\x0e\x5b\xee\x2e\x4c\x18\x72\x04\x6b\x34\xa3\x13\xc0\xf5\x4a\x41\x77\x49\x5c\x94\x9e\x1f\x34\x4f\xe4\xa4\x6f\xda\x45\x33\xd6\xf6\x4d\x9a\xdd\xa6\xc2\x92\xac\x98\x1e\xfd\xa2\x5c\x64\x4a\x4f\xf0\x5e\xdf\x26\x27\x87\x0e\xe2\x79\x32\x0b\x17\xd7\xfc\x17\xc5\x4b\xc4\x7f\x85\xd7\x6d\x48\x01\x57\xd8\xfc\x29\xc9\x78\x56\xf0\xf6\xb7\xd0\x1e\xd1\x23\x88\xe3\x88\x8f\x76\xc1\x8f\x02\xba\xf0\xa3\x66\xf0\x70\xe1\x65\x00\x9c\x92\x48\x87\x03\x87\xf8\x2c\xdd\x16\x81\x03\xbb\x50\x06\xe1\x32\xc0\x69\xc1\xfa\xdb\x70\x56\x51\x04\xc4\x9a\x83\x1f\x91\xc0\x9a\x83\xbf\xed\x78\x75\x7d\x2c\xbf\x76\xe0\x7b\xe8\x8b\x53\xf8\xcc\x33\x5c\xc4\x69\x34\x0d\xa9\x0d\xae\xe6\x25\x92\x85\xcf\x16\xd3\x50\x06\x3f\xd0\xa3\xa9\xcd\x91\x1b\xee\x73\x16\xe6\x24\x8f\xf8\x1c\xd3\x76\xc2\xa8\xc8\xf2\xd2\x6a\xde\x4e\x29\x19\xfc\x74\xbe\x6f\x9d\xaf\x4a\x54\xfb\xd0\xd9\x7b\xb0\x9c\x93\x42\x9b\x20\xbb\x58\xfb\x40\x9d\x4b\xf3\x60\x39\x4f\xf2\x58\x4d\xf4\x86\xa3\xf1\x70\x48\x64\x67\xb7\x85\xf6\x0e\xd9\x7a\xaf\xaa\xb9\xf1\xd6\x44\x68\x70\x46\xaa\x41\x16\x51\x1b\x68\x86\x39\x4e\x15\x37\xe2\x19\x83\xd8\x11\x8b\xe6\x67\x3f\x0a\x88\xfb\x7c\x51\x55\x02\xac\x51\x04\x6e\x36\xad\xc5\xa9\x53\x1f\x3a\xee\x09\x20\x70\x27\xc2\x28\x57\x23\x30\x53\x72\x72\xa7\xf3\x3a\x40\xc0\x74\x01\xce\x4e\x4d\xe8\x48\x20\x5a\x0b\x8c\xa7\x73\xb8\x07\xed\xfa\x3a\xc7\x0a\x56\xa1\xf0\x06\x46\x24\x79\x5c\x24\x61\x51\xc4\xcb\x2f\x60\xdb\x6a\x85\x78\x2a\xc3\x3d\x40\xb8\x12\x71\x42\x22\x12\x64\x06\xb2\x20\x73\xec\x21\xe1\x58\x45\x64\x92\xce\xf9\x20\x45\x55\x43\x1a\x88\xcb\xb7\x09\xd9\x13\x44\x16\xf7\x7d\x9c\xb7\x3e\xb2\xf5\xa6\xfc\xf2\x43\x58\x5c\x23\xac\xa7\x5e\x7c\x01\x20\x82\xe3\x1e\x2e\xbb\x8a\x3e\x84\xeb\x79\xbc\xda\x66\xdb\xc2\xec\xec\xff\x46\x57\x1a\x1f\x74\xab\xdf\x98\x5d\x9a\x36\xf3\x6c\x36\x2c\x8d\xf8\xf6\x07\x0e\x50\xda\xeb\x15\xdc\x81\xc9\x33\xe2\xc5\xf4\xa0\x4f\xa2\xd5\x03\xbc\x6c\xe1\x22\xe7\x23\xa2\x80\x2c\x68\xe8\x2b\xb7\x10\x8a\x9e\x89\x9d\xfe\x03\x38\xcb\x9b\x59\x0b\x81\xb2\x92\xba\xd4\x58\x2a\x92\x5b\xa3\x5b\xb1\xf2\xa5\x70\x5d\x87\x88\xcc\x01\x31\x0a\x0f\x3a\xf9\xb1\x6e\x83\xe7\x6c\x79\x57\x22\x0b\xa0\x6e\x98\x48\xe7\x7e\x9c\xac\x40\x8a\xec\x05\xa4\x72\x24\xf6\x4c\x8a\xb4\x68\xcf\x3a\x47\xd6\x55\x7a\x99\x01\x44\x48\xe8\xd7\x37\xb4\xaa\x27\xd9\x46\x40\x6b\xaf\x7d\xf5\x74\x2d\x34\xc3\x41\xce\x01\xbd\xe8\xdb\xd3\xb9\x72\xd7\x27\x56\xc0\xeb\x6f\x2d\x9d\x22\x3b\x68\x8e\x1c\x11\x04\x70\xb1\x51\xab\x33\x0d\x2f\xb5\x88\x08\xd6\xed\x28\x66\xa8\x40\x6c\x66\x7f\x3b\xb2\x4a\x8f\x09\x88\xcc\x25\x8c\xf1\xbe\x76\x51\x74\x50\x56\xc0\x55\xba\x00\xc4\xd3\xb9\x72\x45\xa9\x5c\xa1\x29\x0c\x49\xb3\x57\xf0\x61\xd6\xd1\xa2\xf8\x12\xa1\xd6\xd0\xeb\x9e\x37\xd7\xdd\x81\xa3\x47\x20\x60\x91\x8c\x08\x25\x60\x0f\x11\x53\x99\x0c\xcd\x1e\xaa\xa8\xe7\x2d\xd4\x37\x51\xef\x44\xd2\xd9\xf6\x74\x9b\x2b\x36\xbc\xef\xe3\xa2\x73\x6e\x5e\xa8\x9e\x23\x38\xbd\xdb\x13\x83\x8c\x1d\xac\xd2\x38\x9a\x0a\x8f\x39\x70\xb4\xc6\x91\x57\x40\x8b\xa7\x59\x73\xec\xc9\xa1\x35\x6e\x3d\x39\xea\x68\xf2\xa4\x56\xda\xfc\x0f\x57\x5a\x77\x0e\x3e\x20\x95\xa5\x4d\x61\x72\x56\x64\xc9\x67\xf6\x41\x6a\x60\xbd\x09\xd7\xf3\x28\x04\x82\x53\x93\xef\x83\x99\x09\x95\xcf\xce\x72\xbb\xf9\x6e\x9b\x24\xca\xe3\x83\xa0\x14\x32\xd7\x14\x22\xd4\x44\x7a\xde\xb4\x9a\x63\x27\xb7\xb4\x08\x70\x07\x9c\xff\x56\x67\xe1\xeb\x40\xde\xfc\x2f\xb0\xd6\x7f\x3c\x5a\xe1\xfb\x34\xf9\xd2\xf4\x33\xf8\x4b\xb6\xed\x15\x1b\xb6\x88\x97\x31\x8b\x7a\xed\xbc\xa4\x37\xdf\x96\xbd\x2d\x78\x85\xbf\x66\xbd\x6d\x0a\x19\x64\x04\x8b\x1e\x1a\x9e\xf0\x3d\xa1\x0b\x15\x0e\x7b\x47\xe6\xd2\xcd\x2a\xde\xef\xa5\x2b\xaf\x23\x52\x4b\x73\x17\x9d\xe3\xa9\xb1\x41\x86\xb3\x83\xfd\x91\xef\xa0\xf5\x36\x1b\x1e\x6e\xb3\x73\x45\x06\x9b\x1b\x1a\x67\x37\x5f\x7f\x7b\xb8\xc8\x0f\x10\xeb\xf8\x3a\xd2\x39\xea\x75\xd8\x5c\xf2\x49\x96\xdd\x6c\x37\xef\x53\xa3\x84\xca\xd8\x41\xfa\x34\x36\x1a\x7c\xa6\x23\xb8\x17\x63\x29\x34\xb9\xcd\x66\x4b\x75\x03\x61\x80\xf7\xc2\xbd\x57\x07\x05\x14\x88\x11\x85\x65\xc8\xe9\x33\x88\x48\x71\xa4\x1d\x39\x72\x9e\x2e\x96\xb1\x24\x9a\xc8\x22\xbe\xf7\x78\xc1\x5e\xce\x96\x2c\x67\xe9\x82\x15\xbd\x30\x67\xcd\x80\x27\xa0\xa8\x58\x7b\x65\x3c\xc0\x11\xd1\xd9\x6f\xc3\x32\x04\x86\xbd\x5e\x10\x5f\xc5\x60\x1f\x0c\x59\x0c\x56\x7a\x52\x3b\x4a\xf0\xeb\x6d\xb5\x41\xed\x95\xdb\xb5\x7b\xcb\xbd\x89\x4b\x96\xf3\x5d\x67\xae\x3c\x2c\xe2\xbd\xf6\xd2\xf6\xb5\x25\xe7\x59\x96\xc0\xce\x04\xee\x76\x9a\x8e\xf9\x44\x91\x63\x55\x49\x4d\xdf\x9d\xcc\x35\x27\x5c\xfa\xf5\xfc\xa0\xdb\x99\xbc\x83\xf7\x78\x4f\x22\xb6\x48\xc2\xfc\x3e\x09\xb4\x59\xa9\x3e\x31\x21\x7c\x5f\xf5\xe6\x04\x8e\x43\xbc\x90\xd7\xa5\x96\x44\xa3\x7f\x10\x19\x4f\xed\x7c\x82\x6d\xf7\xe7\xc1\x60\x70\x62\x35\x53\x68\x5f\x6a\x5d\xfc\xff\xd8\xfb\xb7\x35\xb7\x8d\xa3\x61\x14\x3e\xd7\x55\x70\xf0\xfb\x1d\x11\x21\x86\x9a\x91\x1d\x27\x2f\x69\x58\x91\xa5\x91\xa3\xcf\xb2\xe4\x48\xb2\xf3\x7f\x8b\x66\x26\x20\xd1\x9c\x81\x05\x02\x34\x00\x4a\x9a\x70\x70\x15\xeb\x74\x5d\xdd\xba\x92\xf5\x74\x55\x6f\xaa\x37\x00\x39\x92\x95\xf8\x7d\x9e\x4f\x07\x1a\xa2\xbb\x7a\x5f\x5d\x5d\x5d\x5d\x1b\xca\xf9\x43\xd3\x0b\x08\xb8\x4e\x77\xbb\x97\xbd\x90\x3e\x52\x00\x21\x4c\xef\xc3\x51\x6a\xdc\x83\x95\xb7\xda\xd4\x24\xa3\x06\xc5\x9d\x3f\xe0\x58\x3f\x49\x1d\xc2\x08\xb7\x81\xa3\x33\x1d\xde\x20\x79\x20\x09\xcb\x64\xf9\x40\x73\xa6\x81\xe2\xd8\xf1\xc1\x0b\xe9\xbb\xd1\x75\x8d\xc6\x0b\x45\x00\xa7\xc9\xc9\xc9\x34\xe4\xb7\xe5\x78\xa1\x3c\x8b\xf8\x78\xca\xf0\xf7\xcc\x52\x4a\xad\xc7\xac\x9e\x2d\xc5\x15\x7b\x19\x82\xd6\xa3\xef\xd0\xa3\xd8\x77\x27\xd1\x41\x11\x16\x86\xef\x6c\x3d\x89\xc3\xf4\x63\x58\x12\x8c\x37\x26\x0e\x80\x84\x23\x18\xfc\xb1\x28\x2d\xb9\x7a\x68\x1f\xfa\xe0\x30\x54\x45\x70\x89\xed\xa3\x5d\xd9\x14\x2c\x6e\x6e\xa4\xa4\x4f\xbf\x11\x43\xdc\x45\xe2\x4c\xf4\x88\xcf\xdd\xc3\x57\xaf\x0d\x87\xa2\xce\xa9\xcb\xd9\x4c\x08\xb9\x32\x48\x06\x58\xe5\xa0\xa4\xd1\x57\x07\x0f\x5f\xbd\x1e\x34\x25\x49\x21\x3d\x1c\x0f\x78\x15\x22\x60\x4b\x30\x5a\x84\xd3\x44\x04\x27\x0c\x38\x75\x0e\xb2\x62\x90\xdc\xdc\x0c\x13\x49\xe4\x39\x99\x5d\x2a\xdf\xa5\x53\x21\x18\x58\x2a\x21\x2d\x95\x0a\xa8\xa8\x46\x02\xe6\x7f\x25\x6f\x93\x57\x10\x89\xd1\x0f\xcd\xe7\x6e\xef\xc4\xdd\xf9\xcf\xce\xdc\x07\x4f\x1b\xe0\xab\x13\x9c\x84\x45\x97\x18\x50\x47\x04\x2d\x58\x91\xc9\x8d\x56\xdd\x93\xbb\x8a\x12\x92\xdf\x37\xb1\xab\x28\x89\x84\x91\x0a\xef\x46\x1a\xeb\xc0\x11\xc3\x95\x12\x06\xa7\xd4\xa3\x79\x74\x19\xda\xee\x71\x37\x3d\xc1\x2d\xc5\x61\x00\x64\x3e\x4e\x68\xe0\x4a\x21\xc7\x4f\xe2\xdc\x13\x32\x6a\x19\xe7\x4e\xc8\xa8\x28\x8d\xf3\x71\x5e\x5e\x4e\x17\x54\xd0\xcf\xcf\x91\x67\x70\x46\xd3\x97\xfd\x3b\x92\x08\x44\x6c\x8a\x41\x4f\x21\x6e\xe1\x8b\xd5\x10\xef\x7d\x01\x04\x36\x84\xb9\x67\xf1\xbd\x7f\xe0\xb3\xcf\x67\x22\x3a\xf9\x32\x7c\x90\x8c\x82\x59\x30\x5a\x8e\x82\x79\x30\xe1\x67\xc3\x4f\x49\x9e\xa5\x7a\x26\x7f\x4a\xaa\x2c\x59\x60\xb0\x50\x01\x3e\x0e\x46\xcb\x09\x2f\x76\x17\xca\xdd\x9d\x07\x6a\xdf\x3f\x08\x86\x10\x3f\x73\x70\x7c\x3c\x08\x46\x6c\x14\x84\xc1\x84\xb5\x66\x78\x1a\x37\xb8\x88\x21\x4f\xe3\x30\x83\x78\x30\x83\x7a\x22\xde\xc4\x2c\x99\xf3\x56\xa6\x3f\x17\x41\x1b\xe1\xbd\xee\x75\xf9\xcd\x76\xb5\x32\x42\xcc\x99\x6a\x16\x24\x0c\x93\x12\x17\x3e\x08\x04\x04\x54\x3d\x0d\x26\x3b\xab\xb2\xa3\x53\x75\xcd\x4d\x22\x19\x18\xcf\xd3\xdf\x05\x80\x0f\x46\xb1\xac\xa9\x6d\xdb\x28\x2b\x32\x7e\x91\xce\xfe\xc5\xec\xae\x99\x3d\xfb\x75\x5b\x36\x2c\x15\x61\x71\x41\x7b\x90\xaf\x6b\xbd\x49\x96\x6c\x12\xe8\x1d\x16\xb8\x22\x6f\x0c\x1f\xc3\x04\x9e\x91\x11\xc6\x77\x12\x53\xa6\x8d\x71\x49\xd2\xa1\x8c\x28\xe7\x4c\x09\x79\x28\x42\x9d\xc2\x9f\x0b\x29\x1e\x00\x0f\xe0\x4e\x81\x42\xc9\x22\xb2\xfa\xd1\x55\x96\x93\x68\x11\x32\x76\xc0\xf2\xe6\x66\x47\x43\x31\x91\xe2\xf0\x9d\xe4\x59\x52\xb3\x7a\xb2\x6b\x65\xc4\xd7\x8a\x25\xd8\x03\x15\x3a\x64\xf9\xe6\x55\x5e\x36\x52\x25\x1f\x12\x7e\x4a\x2a\x2d\xdb\x97\x21\xfa\x1c\x69\x3e\x3f\x97\xe8\x1b\x00\xce\x9d\xd0\xd1\x9f\x4b\xc7\xff\x79\x56\x58\x69\x02\xf0\x91\x10\xb1\xa2\x21\x42\xa2\x9e\xb8\xc4\x81\x9a\xc5\xa7\xe2\x59\x23\x31\x14\xde\xb2\xaf\xc4\x1c\x64\xa3\x51\xb8\x88\x13\x54\xe7\xc9\xcc\xe7\x32\xf9\xac\xf3\x40\xc8\xd1\xf9\x54\xce\xe3\x05\x12\x8a\x89\x48\x44\x90\x39\x0d\x4a\xb4\x80\x37\x99\x30\x5a\xe8\x67\x20\x31\x2b\x55\xb6\x79\xce\xde\x37\x8a\x35\x54\x29\xa0\x62\xa6\x58\x80\x57\xe5\xb6\x5a\x32\x8e\x63\xea\x52\xac\xa6\x58\x08\x81\xc9\x94\x28\x53\x3a\x67\x02\x5d\x7f\xfa\x57\xc3\x40\x50\x58\x88\xd5\x95\x33\x15\x94\x51\xec\x9f\x41\xce\x56\xcd\xa0\x2c\x44\xfc\x60\x43\xc2\x2e\xc3\xfa\x09\xb4\x16\xcc\xd6\x90\x85\x6d\x24\x31\xc2\xd5\x2e\x9b\xe9\x8b\xbd\x40\xc0\x30\x11\xaf\x8f\x81\xb8\xa7\x93\x17\x4e\xb5\xa3\xa2\x65\x2c\x58\xce\x7a\x10\x63\xeb\x10\xbc\x6b\x28\x03\x5b\x61\xd0\x24\x19\xe7\x2a\x9c\x0a\x2b\x0f\x8a\xfa\x5a\xf8\x06\x0c\xed\x72\x14\xc8\x88\x4b\x56\x9d\x2a\xea\xa3\xa8\x54\x07\xcc\xd2\xa2\x37\x7d\x53\xe4\x95\x8d\xe2\x00\x2f\x7f\x31\xfe\xb9\xb9\x19\xf0\xa3\x33\x9c\x8a\xb1\x2d\x45\xc8\x01\x2f\x35\xbb\xa3\x27\x60\x22\x7f\x46\x03\x41\x9b\x38\x69\x12\x2b\x6c\x92\xa5\xa1\x14\xcd\x60\x0c\x1d\xdc\xba\x72\xbf\x01\xc2\xc4\x49\x1b\x79\x97\xc8\x63\x26\x61\x6e\x53\xe9\xbb\xd2\xdc\xaa\x70\x41\x09\xa7\x3a\x50\xb1\x8a\x98\x03\xcd\xcd\xce\xe6\xb1\xf9\x39\x0a\x60\x06\x89\x11\x24\x46\x81\x35\x56\x5f\xbd\xac\x0e\x32\xad\x59\x07\xea\x64\x82\xce\x84\xbe\x44\x3b\xea\xef\x32\x3c\xac\x33\x4b\x78\xd2\xf6\xd5\x38\x5b\x4a\x21\xaf\x2a\xe2\x56\x19\xf0\x9e\x4a\xad\x4b\x99\x2a\x74\xec\xf8\x31\x70\x3f\xe4\xa7\x48\x68\x10\x58\xa9\x7f\xad\x7b\x12\x83\xee\xf7\x1d\xa3\x17\x92\xe0\x92\x47\x6c\x50\x11\x0f\x5d\x3c\x96\x88\x23\x76\x38\xa5\x10\xf2\xcd\x0e\x30\x64\xaa\x1e\xfd\x64\x57\x1e\xcc\xa4\x08\x39\x42\xb6\x6e\x3e\x99\x19\x47\x95\xce\x96\xb1\x58\x23\x19\x73\xa6\x56\x65\xa6\x4b\x41\x45\x89\xde\xb8\x71\x26\xb9\x0f\x59\xcb\xaf\x18\x3c\x21\x0b\x4b\x35\xc1\xd0\x8c\xfa\x8a\xc2\x7a\x88\x47\x28\xd8\x96\x62\x8c\xce\xe4\x9a\x0f\x55\xc0\x76\x0c\xc3\xd1\xd2\x54\xd1\x5d\xc8\x7d\x18\xc9\xbd\x60\x50\x68\x7e\x54\x28\x7b\x6e\xa5\x81\xcb\xa9\x0f\x06\x2d\xe1\xdc\x90\xc2\x63\xfe\x1d\x0e\x76\x3f\x17\x03\x44\xa8\x36\x20\x27\x74\xa2\x0e\x61\xfd\x12\x47\xba\xef\xd3\xe6\x48\xe2\x3b\x41\xc0\x59\x82\xf8\x54\x5e\xdb\x11\x57\xf4\xec\xa5\x5a\xe1\x80\x19\x78\xbd\x9c\x4f\xd9\xd8\xe4\x7e\x1e\x2c\xe2\xc5\x83\x05\xef\xc6\x60\x30\x18\x8c\x38\xfb\x36\x96\xdc\x90\xfe\x35\x5c\xa0\x59\x85\xc1\x03\x2d\x46\xc1\x14\x86\x15\x2d\x84\x21\x78\x18\x25\xa3\x98\x61\x65\x81\xe2\xae\xe5\xeb\x22\x5c\x90\x1d\x13\x16\x7b\xab\xba\x2f\xe9\x8a\x96\x7b\xf2\x02\xf1\x82\xa8\x50\x55\x1c\xf0\x70\x91\x16\x97\xe1\x53\x75\xe3\x15\xfa\x23\x70\xbc\x0d\xa9\xa0\x01\x8d\xbd\x96\x6c\x78\x16\x9d\xf2\xf5\x95\x1c\x9f\xd3\x1e\x5e\x14\x82\x51\x62\xd8\x6a\x87\x41\x4b\x5f\x1c\xbe\xf9\x74\xa3\xbd\x73\xe0\x70\x09\x9d\x46\xd5\xe4\xe5\x9b\x21\x3f\x5f\xcc\x61\x3a\x14\x21\x5b\x0d\x86\x47\xd2\x64\x3d\xa9\x1b\x6c\x1d\x10\x58\xc4\x19\x8c\x07\x07\x4f\xca\x74\xd0\xc2\x43\x0c\x7d\x21\x72\x15\x9a\x79\x66\x56\x5c\x8a\x7c\x88\x04\xee\x49\x1f\xa9\x48\x63\x9a\x0d\x82\x98\xe1\x4a\x61\xf3\x1f\x3f\xd7\xa3\x7b\x51\xa0\xde\x20\xcc\xf2\xfc\x74\x43\xf7\xd5\xf6\x8a\x38\xed\xfb\x4a\x7b\xd2\x88\xaa\x68\x3d\xfa\x8c\xb6\xac\xf9\x32\xa1\x1d\x21\xe7\xc0\x69\x7b\x95\x6f\xeb\xab\xa7\xc0\x8c\x0d\x0d\xbd\x81\x8d\x5e\x33\xcf\x1a\x0d\x83\xd1\x1d\x7e\xdb\xba\xb9\xc1\x9b\xc8\x20\x8e\xe3\xc1\x29\xae\x11\xca\xba\x8c\x2d\x3e\x4c\xc2\x51\xc0\xd7\xa2\xfb\x70\x10\xd2\x29\xda\x0c\x08\xa8\xba\x6a\x0c\xee\xde\x0d\x44\xa5\x72\x70\xe2\x41\x6e\x2f\xc6\xdb\xd1\x6e\x63\xbc\x07\xda\xc9\x81\x33\x70\x6f\x3f\xec\x62\x43\xd1\x5f\x3d\x81\x7c\x77\x86\x61\x1b\x69\x01\x9f\x8b\x83\x84\x29\x3a\x8a\x63\x15\xa7\x8b\xf2\x4a\x49\xd8\x46\xd6\x33\x84\x07\x97\x95\xd9\xb6\xbe\xb4\x9b\xc7\x17\xa9\x32\x4a\xa2\x60\xa9\x1e\xce\x50\x06\xea\xd4\x4c\x2a\x86\xf1\x08\x39\xb8\xaa\xf4\x8e\x5d\x6b\xd8\x46\xde\x57\xb7\xbd\xeb\x22\xf3\x5f\x5f\x6f\x58\x7c\x57\xbb\x2b\xb9\xdb\x47\x3a\x13\x7d\x99\x47\x49\x94\xc6\x47\x5a\xdf\xe0\x01\x66\x88\x53\x14\x69\x57\x38\x98\xf0\xd4\x56\x4d\xac\x3b\x9f\x9d\xf4\x5a\x9e\xd3\xd0\xd6\xa0\xd8\xe6\x39\x6e\x86\x85\x6c\x3c\xe1\xd8\xfb\x40\xa4\x4c\x24\x16\x93\x55\x59\x18\xd3\xaf\x3b\xf1\x18\x02\x1d\xef\x9f\x7e\x78\x74\x91\x96\x1a\x4a\x22\xec\x38\xce\xe9\x5b\x3b\x67\xe9\x08\xca\x23\x83\x08\x8f\x76\x20\x47\xc6\x47\x82\x21\x51\x8f\xbc\xa3\x2c\x6b\xec\x52\x2a\xfa\xbc\xdd\x30\x98\x7a\x2a\xb9\xed\x01\xa3\xdc\xb5\xf6\x15\x86\x0a\xd8\x15\xad\x04\x26\x8d\xc3\x46\xd6\xb7\x98\x20\x6f\x6b\xfc\xea\x2e\xc8\x0e\xde\xe2\xc9\xee\x01\x71\xb3\xbe\xe1\xc7\x3b\xb8\x34\x83\x38\x81\x8f\x1a\x7e\x88\xb5\xe3\xbf\x5b\x30\x10\xb2\x5b\x21\xe4\x54\x47\x91\xd4\xf1\x25\x65\xa3\xe5\x66\x78\xf8\x18\xf9\x19\x27\x1b\xa6\x0c\x9e\x3d\x76\x0e\x07\x3d\xb5\x80\xc8\x12\x0f\x83\x1d\xf2\x5c\x4a\x67\x56\x01\x8b\xf4\x10\x19\xa9\xd6\xc4\x33\x3f\xd5\x31\xd6\xad\x71\x04\x4e\xb0\xf2\x77\x38\xa0\x5b\x9c\x0a\x03\xa4\x87\x23\xcd\xb9\x91\xc7\xb7\x03\x5a\x4e\x44\x57\x1d\x2d\xba\x24\xdc\x09\xbd\x8a\x07\x3d\x7d\x16\xd7\x1a\x42\xce\x93\xb0\x0b\x99\xc1\x81\x4a\x1b\xd1\x77\xf2\x89\x1d\x3a\xda\x7f\x17\xf4\x73\x5b\x57\x26\xa3\x05\x45\xb7\x35\x7b\x29\xee\xb3\x43\xf9\x86\xa5\x9d\x43\x29\xfe\x88\x28\x2c\x60\x02\xb4\x8f\xaf\x05\x07\x9f\x06\x0b\x42\x8e\xa6\x0b\xd9\x2f\xb8\xd1\x4b\xf5\x6a\x41\xe3\xa6\x89\x78\xf6\x79\x5a\x64\x9c\x61\x59\x8c\xe2\x20\xe2\x50\x3a\xd5\xc0\x33\xce\x2e\x2c\x46\x81\x50\xba\x18\x3c\x10\x7a\x07\x9a\x6b\xe3\x3f\x10\xdd\x39\xa7\x37\x19\x5c\xf9\x99\x3b\x23\x59\xc1\x87\x41\x38\x95\xca\x85\x06\x3f\x23\xd7\x86\xa8\x59\x78\x83\xa7\xfb\x26\x8f\xf6\x7f\x29\x46\x2f\x3b\xb2\x34\xfb\x1b\xa8\x86\x94\xde\x8c\x8f\x0a\xdf\xf2\xb8\xf3\xaf\x3c\x72\x2a\x92\x80\x0a\x96\xcd\x33\x82\xd3\x88\x37\x2c\xaf\x67\x36\xa2\x50\x6c\x50\x17\xe7\x24\x52\xcd\x44\xec\x70\xac\xa1\x87\x98\x74\x1c\x54\xb0\xf7\x8d\xe4\x1e\xef\x2c\x0d\x5c\xb1\x79\xaa\xa5\x1f\x67\xe8\x75\x80\xe0\x61\x2a\x2f\x02\x2b\xb8\x08\x98\x68\x64\x2d\xcb\x54\x33\x9c\x1e\xae\x92\x54\xca\x46\xc1\x54\x55\x29\xce\x34\x99\xed\xb2\x11\xbd\x6d\x2a\xd4\x15\x37\x0f\x43\xd5\xcd\xa0\x45\x89\xb0\x48\xa6\x53\xac\x25\x17\x89\x12\x63\x04\x61\x14\xdc\x05\xd6\xe5\x6e\x10\x59\x8c\xa5\x57\xea\x31\xf7\x49\xfc\xa4\x98\x0e\x99\x86\xa9\x17\x1f\x6b\x96\xaf\x90\x15\x0e\xe8\xde\xe5\xc9\x66\x60\x79\xcf\xe5\x93\xf3\xe0\x44\x07\xd1\x23\xb0\xbb\x63\xf7\x7d\x29\x8d\xfe\x3b\x0e\xbd\xd4\xbe\x87\x44\x4b\x3b\xc5\xf0\xf6\x01\x27\xec\xf2\xf8\x98\xe9\xe3\x51\x79\x55\xe3\xb3\x07\xb1\x57\xc3\x69\xca\x21\xf0\x60\x74\xb2\xd3\x70\xca\xe4\x41\x68\x65\x0e\x81\x8f\x0b\x51\x21\x51\x98\xbd\x2c\x22\x4b\x88\x6f\xed\x7a\x6d\x83\x91\x28\x55\x6a\x30\x7a\x59\x41\x60\xda\xa5\x14\x97\xac\xbe\xba\x9c\xae\x46\xa3\x70\x97\xc6\xcb\xd9\x6a\x3e\xc5\x58\xe0\x86\x90\x68\x8a\xd6\x2b\x28\x5c\x4a\x9a\xe5\xd5\xf9\xfb\xac\x6e\xf8\x74\x09\x4d\xe6\x34\x9c\xe2\xf3\xec\x95\x50\x3c\x76\xe4\x74\x52\x64\x2b\x1d\x79\x39\x00\xd2\xef\x0c\x3e\xe3\xc5\xfc\x17\x3c\xc9\xa8\x38\xeb\xa3\xab\xc8\x5b\x72\x76\x35\x8f\x99\x7a\xef\x4c\xa3\x85\x01\x26\x75\x55\x65\x29\xfa\x3a\xc3\x4b\xa6\xe1\x64\xd8\xd7\x66\xd8\xb6\x91\x6f\xc8\x06\x8e\x69\x43\xa3\xd3\x68\x19\x77\xb6\x27\x67\x7c\xf1\xd5\x72\xba\xb0\x2c\x62\xbc\xfd\x5b\xa0\x3d\xcc\xf1\x71\x2a\x0d\x47\x92\x50\x89\xe8\x5a\x65\x69\xa0\xd9\x05\xaf\x41\x79\xe7\x36\x53\x8f\xea\x52\xee\x87\xbb\xad\x28\xcb\x4d\x40\x05\x28\xf4\xc2\x4c\x94\xf2\xa7\x89\xa9\x67\x4f\xac\x7e\x66\x0b\x9c\xd2\x08\x9f\x7d\xa4\x28\x34\x42\x25\xe9\xc4\x56\x92\x5e\xc4\xc9\x2c\x9d\x47\x10\x15\xf8\xc1\x92\x0a\x3d\x4f\x83\x70\xb2\x34\xa5\xa0\xc3\xc5\x89\xd6\xad\x19\x9e\x52\x97\x36\xd8\x7f\x31\x2b\xc3\x60\x72\xc7\x48\xf8\x7b\xd6\x5c\xa1\x06\x4c\x10\x8e\x96\xb6\xfc\x2a\x92\x82\x7b\xdf\xe1\x49\x4f\xc3\xc4\xa5\xea\x70\xe5\x13\x02\x41\xf0\xdb\xa2\xc1\x7d\x77\x3a\xf1\x40\x30\x4b\xe6\x52\xd8\x4d\xd3\x94\x9e\x93\xf9\x92\x20\x59\x53\xc5\x0b\x6b\x56\xb0\xf3\x35\x18\x8a\x40\xd0\x7a\x52\xd0\x12\xac\x76\x8a\xa1\xa8\x64\x55\xdf\x4c\x2c\xf9\x83\xcb\x69\x7b\x2a\x0b\x43\x79\x39\x30\x85\x4a\x42\x66\x3a\x4d\xa4\x6e\x10\x69\x2c\xa1\xe3\x74\x7b\xeb\x0a\x8e\xa4\xe8\xbe\x58\x56\xea\xec\x4f\xdc\x03\x7f\x21\x96\x2a\x21\x2f\x0f\xc6\xa3\x9f\xd0\x28\x23\xf6\x3c\xf4\x12\xee\x39\x5a\x82\x40\xee\xf9\xac\x96\x3d\x42\x3a\x3b\x5d\x3e\x70\xce\x91\xa3\xd3\x30\x4a\x07\xc4\xb5\xe3\x25\x87\x49\x91\xee\x47\xab\xf8\xe8\x34\x9c\x0c\x59\x7c\x24\x04\x69\xe2\xd9\x32\x5a\xc4\x47\x42\xaf\x59\x4a\x33\x41\x31\x41\xdc\x0d\xc8\xa0\xa3\x45\x1c\x28\x19\x10\x0e\x45\x8c\x98\x33\x2f\x51\x20\x79\x32\x2d\x14\x0d\xc3\x89\x93\x06\x4f\xc1\x46\x54\xfd\xe5\x83\xe1\x4a\xbe\xa0\xe8\x33\x51\x69\x75\xc9\x8e\x9e\x9c\x44\x26\xe3\xbd\xe0\x33\x1d\x82\x35\xc8\xbd\x7f\x00\x98\x50\xc1\x48\xc3\x9b\x1b\x39\x3b\x84\x61\x23\xd7\x48\xb1\x62\x29\xf4\x5f\x55\x35\x0d\x42\xa2\x6f\x15\xa9\xa2\x5d\x7a\x07\x0a\x89\x38\x43\x7e\x47\xcd\x94\x73\x1d\x57\x43\x90\x9e\xd4\x54\xc2\xd7\xfa\x13\x5e\xfb\xe4\x6b\x9e\x95\x2c\xf8\x15\x78\xf8\x1d\x99\x35\x98\xef\xc0\xe6\x0a\x4a\xd7\x19\xf8\xed\xd1\xba\xf0\xd6\xd8\x46\x64\x07\x74\x5c\xfa\xc9\xbd\x16\x1e\x77\xe4\x7b\xb6\x73\xeb\xa5\x36\xaa\x78\x84\x25\x1d\x47\x55\xc2\x8f\x24\x0b\x7d\x3b\xb6\x50\x6a\xdf\x5b\x87\x69\x08\xfa\x22\xb5\xdb\x69\x3a\x3b\xee\xd3\xbc\xf4\x7e\xe2\xdd\x7d\xf6\xc6\x5b\xc6\xc3\xc5\x03\xbb\xa2\xc9\x1d\xa7\x93\xa1\x10\x7c\x64\xab\xe1\x51\x72\x7c\xbc\x34\xc6\x14\x2a\x1b\x59\xd8\x96\x00\x84\x9e\x1d\xad\x7d\x69\xea\x06\xc8\x58\xfb\x90\x3d\xd8\x94\x9b\xc0\xd6\xf0\x38\x39\x51\xe6\xb7\x7a\xdd\xf7\x8f\xca\x1d\x90\x33\x9e\x68\x61\xb9\x3d\x16\xa6\xa4\xc9\xf1\xf1\xc2\x5c\x2f\xa9\x81\xb1\x68\x23\x4a\xb8\x3d\x87\xc8\xdd\xe0\xee\x28\xa1\x1e\x21\xee\x5d\x46\xe8\xfa\x84\xf8\x89\x00\xdf\x12\x3f\xff\x1c\xdc\x75\x3c\x84\x81\x79\x32\x49\xac\x30\xb1\x32\x12\xb7\xf7\x4f\xef\xff\x19\x33\xe0\xa7\x93\xf9\xdf\x3a\xf3\xbf\xd1\xda\x59\x68\x89\x76\x88\x3c\x10\x51\x67\x9c\x3b\xb9\xa3\xef\xa5\xe2\x69\x28\x89\xd2\x68\x69\xf0\xed\xde\xbb\xe8\x42\xdf\x45\xc5\x3c\xee\xf0\x9a\x38\x49\x23\x7d\x5f\x9c\x24\xa8\xe2\xcc\x22\x7d\x09\x9b\xe8\x87\x29\xa9\x15\x90\x86\x84\xd5\x88\x3c\x32\x84\xc9\xf2\xf8\x58\xbf\x34\xbb\x27\xea\x22\xf4\xd7\xd5\x8a\x89\x78\x21\xfc\xe0\xf8\x64\x0b\x33\xf0\x47\x2e\x7c\x91\xaf\xa2\x4b\x69\x1e\x1e\x80\xc5\x9b\xf3\x56\xd0\x2f\x08\xa4\x65\x5f\x83\x18\xd2\xad\x20\xa2\x40\x8f\xa4\x88\xd2\x85\x0b\xa7\x2b\xe7\xa5\x27\x5b\x0d\x87\x97\xce\x2d\xeb\xe6\x66\x15\x5e\x4a\x46\xa9\x87\x9d\x8d\x2e\x63\xc2\xbf\x86\xd1\x9d\xd5\x21\x85\x56\x66\x21\xd9\x7b\x61\xda\x39\x09\x46\x2b\x9d\xb8\x2a\x26\xc1\xe8\x12\xad\x2a\xd0\xc0\x3c\x01\xa3\x72\x67\x24\x91\x78\x3f\x5f\x85\xdd\xda\xd9\xc7\xc7\x43\xca\x57\xd1\x29\x4c\xfd\xe9\x87\x2d\x8e\x16\x0b\x6b\xbb\x7f\x90\xbe\xce\xc9\xf0\x84\x10\x39\x18\x31\x0b\xc2\xab\xb0\xb3\x24\xd7\xf7\x89\xb8\xc3\x6b\x32\x46\xf6\x97\xb3\x19\x93\x38\xd8\xc9\xa3\x8b\xa0\x2a\x60\xa8\x29\x19\x46\xf3\x6f\x7a\x10\x18\x12\x28\xd1\xa1\x40\x4d\x2d\x49\x91\x3f\xe3\x60\x94\x4c\xef\x2c\x2c\x19\x6e\x10\xb4\x2d\x51\xbf\x08\xc0\x05\xd0\x00\xc4\x30\x9c\x6c\xc3\x36\x49\x6a\x36\x58\x65\x45\x92\xe7\xd7\xc2\x2d\xd9\x00\x78\xd3\x25\xbf\xf8\x0d\x56\x65\x35\x40\x17\x50\x83\x77\x57\xa8\xfb\x55\x34\x59\xb1\x65\x4a\x36\x03\x1d\x46\x45\x30\xe1\x4c\x7e\x90\xad\x84\x4b\xdf\x94\xe5\xac\x61\xa0\xad\x53\x5d\x0f\xd2\x92\x12\x63\xf9\x82\xb1\xa8\x9b\x2a\x59\x36\x03\x56\x6c\xd7\x83\xac\x68\x06\xf5\x55\x59\x35\x83\x05\x46\x87\x1d\xb0\xf7\x1b\xfe\x99\x15\x0d\xab\x56\xc9\x92\x81\x17\xef\x6c\x39\x58\x5c\x37\x6c\xc0\xde\x37\xac\x48\xeb\x41\x5e\x16\x97\x83\x7a\xbb\x61\xd5\x60\x79\x95\x54\x38\x9e\x41\x91\x34\xd9\x5b\x36\xa8\xaf\x8b\xe5\x55\x55\xa2\x37\x34\xb0\x94\x18\xac\xf2\x32\x69\x06\x9b\x64\xf9\x26\xb9\x14\xee\x87\xeb\x01\xa8\x50\x0f\x2e\xcb\xa6\x1c\x6c\xaa\xec\x6d\xd2\xb0\x41\x53\x25\x45\x9d\xb1\xa2\x19\x80\xca\xc6\x25\xab\x06\xf0\x62\x0a\x37\xd4\xc1\xa6\x2a\x1b\x74\xaf\xfe\xb6\xcc\x93\x86\xcf\x4e\x5a\x6e\x17\x39\xe3\x40\xbc\xd3\x9b\xed\x22\xcf\x96\x83\x9c\x35\x83\xeb\x8c\xe5\x69\x20\xfc\xb9\x06\x9c\x18\x6e\xe2\xc5\xf8\xe5\xf9\xab\xf3\x97\x3f\x9d\x3f\xbe\xf8\xfb\x8b\x97\x8f\x5f\xc5\xbb\x16\xe4\x13\x55\xcc\xb4\x7c\xa2\x02\xf9\xc4\x66\xc6\x66\xab\xf9\x1c\x2d\x41\x7b\xf5\x75\xe3\x3b\xee\x59\x76\x64\xb7\x34\x4b\xe6\xc7\xc7\xf7\xfe\x31\x4b\x4e\xfe\xf5\xf0\xe4\xff\xba\xf8\x6c\x3e\x3b\x3d\xf9\x6f\xf5\xf1\x07\xa9\x29\x9c\x84\x0f\x8e\x4e\x27\x47\x67\xad\xbe\x10\x0c\xff\x15\x6d\x42\x47\x95\x3b\x8f\xae\xa2\xcb\x08\x8c\x63\x90\xf4\x5e\x0a\x7f\xcf\x51\x2a\x7f\x82\x7d\xb0\x54\xd1\x86\xc1\x8b\x13\x1c\x7c\x90\x68\xa5\xfc\xa8\x8a\x73\xa1\x2d\x38\xbd\x8c\x2d\xe6\x6e\x11\x57\xc3\x70\xba\x70\x35\xe5\x41\x4f\x5e\xf4\x6a\x23\xcc\xac\xdb\xe9\xc2\x6b\x8e\x40\x61\x57\x04\xf6\xe1\xab\xd7\xf1\xd5\x54\x77\x32\x66\xd3\x85\x47\xbd\x3c\x4e\xa6\x0b\xe9\xdd\x65\x89\x46\x6b\x35\x8b\x53\x3d\x45\xd3\x3c\xbe\x1c\x86\x53\x39\x8a\xf8\x52\x66\xe5\xed\xf0\x3a\x7a\x1b\x3d\x8c\xbe\x89\x36\x21\xb8\x8f\xb9\xf7\x87\xa3\x3b\x83\x3f\x0c\xfe\x52\xbe\x65\xd5\xdb\x8c\xbd\x1b\x0c\xce\xd7\x0b\x56\x0d\x4e\x06\xba\xdd\xc1\xc3\xcd\x26\xcf\x96\x09\xec\xb5\x27\x55\xb2\x66\xef\xca\xea\x0d\x14\x5b\x96\x9b\x6b\x70\xcb\x30\x78\xa4\x7e\xdd\x3f\x3d\x3b\x3b\xb9\x7f\x7a\xf6\xc5\xe0\x75\x96\xa7\x6c\xf0\xb4\x58\x8e\x07\x49\x91\xc2\xc6\xad\xb2\xc5\xb6\x29\xab\x9a\x97\x26\xff\x7e\x28\x2b\x20\x22\x46\x35\xa7\x5f\xf2\x6a\xce\x06\xaf\x9a\xaa\x5c\x60\x3d\x07\x15\xfb\x33\x16\xe3\xbd\x16\xad\x3f\xcc\xf3\x01\x64\xd7\x83\x8a\xd5\xac\x7a\xcb\x52\xa8\xea\x2f\x79\xb6\x64\x45\xcd\x06\x83\xc1\x33\xfc\x95\x0e\xb6\x45\xca\xaa\xc1\xf7\x4f\x5f\x0f\x44\xa6\xd5\xe6\x2b\xc6\x06\x57\x4d\xb3\xa9\x27\xf7\xee\x55\xc9\xbb\xf1\x65\xd6\x5c\x6d\x01\x21\xee\x31\x3e\x75\xbf\xd4\xf8\x77\xfc\x4b\x7d\x6f\x9d\x70\xfa\x79\xef\xd9\xd3\x47\xe7\xcf\x5f\x9d\x43\x8b\xfc\x60\xe3\xf3\x38\x18\x9c\x8d\xff\x34\x3e\x3d\x59\xb0\x26\x19\x9f\x8d\x96\x49\x91\x54\xd7\xe3\xcf\xd3\x3f\x9f\xfd\xf9\xcb\x3f\x25\x77\x06\x7f\xb8\x77\x67\x30\xb4\x90\x0f\xfd\x1a\x46\x15\xfb\x75\x9b\x55\xec\xfb\x32\xdd\xe6\xea\x4b\xfe\xfd\xa5\x8e\x60\x05\xa7\xb4\x30\xa4\xe0\x31\x69\xff\x04\x9d\xed\x6c\x35\x14\xc4\x10\xb3\xe3\x98\x78\x51\x94\xc5\x77\x10\x1a\x81\xc2\x8d\x2f\x2e\xf2\x32\x49\xdd\x02\xbc\xb3\x28\x3f\xa9\xae\x39\x4d\xa9\x19\x2b\xe2\x5d\x3b\x45\x08\xbd\x11\x40\x3a\x95\xb2\x4d\x0d\x3c\xdc\x82\x5f\x0c\x76\xb2\xdc\x0c\x35\x96\x77\x3c\x7b\x62\xc0\x4c\xe4\x0f\xb0\x93\x10\xa3\x8e\xc5\xaf\xd8\x98\x1d\xb3\x29\xb8\x43\xf0\xbe\xd8\x0a\x99\x90\xa9\xb6\x24\x87\xc0\xd6\x5b\xfd\x33\xc6\x69\x3a\x32\xbb\x27\x83\xd3\xf0\xb3\x4c\xf8\xc9\x7c\x54\x6e\xf3\x14\x0c\x29\x57\x59\x91\x0e\xd6\xd0\x8f\x41\x30\x82\x36\xc0\x22\x63\x5d\xa6\xb1\x59\x0d\xcc\x41\xbc\x2e\xc1\x5c\x53\x0f\x14\x52\xe4\x47\x54\x31\xb0\xee\x05\x7e\x12\x8e\x24\x6d\x67\x99\xc5\xa7\x51\x1e\xf3\xb2\xca\x61\xce\x57\xf9\x34\xe3\x37\xc7\x6c\x35\xe4\xe9\xb3\x6c\xce\x17\x49\x14\x0c\xf8\x58\xa1\x36\xe1\xb8\x08\x93\xe3\x5d\x1b\x82\x77\x50\x33\xd7\x98\xd1\xa1\x50\xef\x90\xb5\x86\x61\xd8\xc2\xa8\xd0\x02\x45\xf6\x96\x2a\x2c\x8a\xca\x14\xd1\x26\x93\x2a\x1a\xbe\xb9\xc1\x9b\x9e\x3a\xd1\x65\x23\x20\xef\x84\x41\xc0\xaf\x31\x3f\x5b\x1f\x36\xc3\xd3\xf0\x28\x8e\x83\x71\xa0\x96\x0c\x72\xa1\x1b\x60\x1f\x18\x23\xb4\x38\xeb\xee\x05\x78\xe7\xd8\x24\x15\x2b\x9a\x6f\x92\x9a\xc5\xbc\x75\x92\x4d\x22\x20\x84\xd6\xa4\x1a\x36\xbb\x6a\x56\x65\x4b\x98\x3d\xcb\x40\x52\x0c\x09\xbc\x5f\xbc\x63\xba\x31\xe1\x0e\x14\x78\x1e\x0a\x15\x84\x3b\xc9\xca\xe0\xa4\xd3\x22\x7c\xde\x39\x64\x28\xe3\x21\x90\xde\x0b\xd6\xed\x5e\x10\xd2\x0d\x30\xbe\x60\xc9\x9b\x0b\xd8\x69\x12\xb9\xa6\xd6\x2e\xdd\xe1\xfe\x9b\x98\x74\x64\xa2\x29\x08\x16\x9b\xc8\x1f\x2d\xf6\x4b\xec\x5a\xb3\xb2\x31\xa6\xee\xdd\x80\x56\x29\x91\xd9\xb6\xe1\x30\x14\xe4\x60\x18\x70\x84\x59\x6c\xab\x82\x55\x41\x34\x23\x5f\xf7\xb6\x4d\x06\xaa\xbc\x24\x29\x65\x2b\x56\x55\x2c\xbd\xc0\xf8\x2a\x17\xbf\x6e\xd9\x96\x71\x18\x89\xda\xf3\x48\xed\xf9\x8b\x8b\x94\x6d\x58\x91\xb2\x62\x79\x7d\x76\x71\x11\xd1\xef\xfb\xf0\x2d\x0a\x5d\x5c\x84\xbb\x60\x5b\x33\xb0\x43\x5b\x36\x28\x7e\xff\x91\x37\x1e\x5b\x75\xf0\x9b\x22\xb0\x98\xc1\x1c\x80\x1e\x8b\xee\xa0\xef\xd3\xbf\x41\x67\x62\xab\x9d\xb1\x0f\x08\x4a\x03\xda\xc5\xd2\x02\x38\xda\x94\x1b\xfe\xb1\x29\x37\xe0\xba\x29\x86\x1e\x8c\xf9\xcf\x28\xab\xf1\x3a\x2a\xd2\xe4\x67\x94\xd5\x52\x45\x58\xe5\xc8\x84\x28\xab\x9f\x43\x04\x24\x95\x83\x9f\x51\x93\xad\x19\x58\xb7\x44\x97\x79\xb9\x10\xde\x80\xa2\xe7\x3f\x7e\xff\xcd\xf9\xcb\xf8\xde\xcf\xe9\xe8\x1e\x74\xae\x60\x2c\xad\x9f\x9e\xbf\xae\xae\x1f\x71\x46\xfc\x49\xf6\x3e\x26\x96\x73\xef\xc3\x5d\x53\x5d\xef\xde\x0f\xc3\x16\xf8\xf4\x21\x0b\x77\x32\x74\xc7\x11\xe3\xbc\x85\xda\xcc\x59\xfd\xa8\x64\xd5\x12\xf8\x43\xe8\xc1\x10\x23\x33\xa9\xdd\x2b\x7b\x26\xd3\x6f\x6e\xb0\x33\xc8\x03\x8a\x44\x6d\xda\xf6\x8d\xc2\x86\x21\xac\x3e\x67\x3a\x6b\xe9\x8f\x56\xc8\xd7\x74\x46\xac\x7f\x9a\xe6\x4a\xe2\xaf\x3c\x00\x4d\xdf\x1f\x62\x95\x61\xad\x6c\x83\x7b\x92\x45\x2a\x9f\x9d\xce\x5b\x21\x28\xc2\x1b\x86\x69\xf2\x73\x91\xb2\x45\xb9\x2d\x96\x8c\xd8\x0b\x5d\xf0\xc3\xa3\x69\x72\x5c\x8d\x56\x8f\x8b\xda\xdf\xe9\x16\xd0\x39\xb2\xf4\xbb\x0b\x1f\xc2\xc3\xf0\x53\xd1\x24\x26\x1a\x1d\xc0\x24\xcb\xdf\x31\x12\x30\x39\x11\x74\x74\x51\x59\x7c\xc3\x61\x63\x15\x53\x4c\x0e\x5b\x64\x44\x9b\x8a\xbd\xcd\xca\x6d\x2d\xdb\x14\x0f\x68\x66\x47\x80\x1c\x5a\x80\x4a\xf2\x49\x7a\x27\x08\x9d\x0d\xd9\xfa\xea\x84\x87\x51\xdf\x56\x1a\x5a\x2b\xae\x50\x81\xf7\x42\x74\x3b\xdc\x89\x1f\x43\x5f\xd5\xce\xa0\xc2\xb6\x8d\x2c\x8d\xd9\x9e\x19\x3b\x2f\x52\xdf\x7c\x9d\x17\xa9\xbd\x40\xde\xc9\x02\x29\xba\x1e\xe5\x36\xcf\x61\xff\x89\x2b\xf1\xc3\xbc\x62\x49\x7a\xfd\x28\xc9\x73\x96\xc6\xa0\x59\x38\xe5\x3b\xcf\xaa\x04\xdf\x64\x86\x61\x2b\x8a\x81\xb8\xd4\x57\x45\xb8\xf3\x56\xdc\x54\x5b\x61\x6a\xe7\x4c\x3b\xef\x90\x32\x83\x32\x56\x4f\x8a\xb4\x8d\x01\xf8\x56\x59\x6b\xb9\xb9\x8b\xaa\x8b\xb6\xb0\x5e\xe7\x45\xca\x57\xeb\xbc\x48\x87\x7d\x13\x15\xb6\x2d\x78\x9c\x25\x68\xdd\x24\xd5\x25\x6b\xa2\x35\x6b\xae\x4a\x61\xd2\x5b\x16\x18\xc6\xee\x92\x35\x2f\xf0\xa7\xe1\x56\xc5\xf0\x52\x8c\xe2\x68\x59\x1a\xff\xc6\x58\xe7\x14\xff\xc0\x5c\xf0\x5e\x4a\xfa\x3b\x14\xd0\x16\xf8\x0c\xbf\xe6\x68\x80\x5b\x5d\xd6\xb1\xd7\xc5\xc3\x7d\x61\x98\x9c\xa5\x4f\x70\x49\xc4\xf2\xe2\x34\x40\xac\x3d\x20\xb2\x82\x4c\x62\xa5\x92\xb3\xc2\xb1\x82\xb1\x9e\xa4\xc0\x58\x42\x14\x15\x9f\x06\x3e\xe8\x96\xc2\x1d\x69\x55\xaf\x3d\x2b\xd2\x21\x9f\x58\x38\xf7\x0f\x6a\xfa\x83\xaa\x6f\x23\x38\xc6\xf5\xca\xa9\xcd\x1b\x59\x6b\xf8\x49\x56\x04\x1e\x04\x10\x4f\x1f\x9f\x7f\xf3\xe3\xb7\x0f\x14\xfb\x3e\x51\xb7\x18\x18\x5e\xac\xd6\x4a\x86\x84\xf8\xfc\x81\x77\x25\x3f\x0f\x75\x49\x7d\x98\x58\xe8\x1b\xee\xf0\x3e\xfe\x90\xdf\x80\xb7\x48\x89\x94\x95\x8a\xaf\xc0\xb8\x5e\x5e\x31\x60\xba\x3b\xe6\x07\x3a\x19\x01\xd2\x44\x30\xa8\x50\xcc\xec\x8b\x82\x3e\x32\xff\x9f\xd9\xfd\x88\xd9\xe5\xd8\xab\x26\xb7\x66\xcd\xeb\x6c\xcd\x4a\x4f\x3c\x98\xae\x5d\x1e\x46\x22\xf8\x0f\x71\x86\x2a\x1b\x78\x97\x64\x8d\xd9\xe6\x8b\xea\xb5\xf9\xf9\x77\x0e\x22\x3f\x1e\x56\x97\x35\x9f\x00\x15\x4e\xe8\x54\xf2\x50\xea\x7a\xa1\xb2\xce\xd4\x1a\x41\xc3\xf5\x55\xb6\x6a\x86\xe1\x94\x37\x19\x9f\xba\xe0\xf7\x25\xb8\xec\x01\x14\x9b\x9d\xce\xa7\xb4\x27\x98\x88\x61\x3d\x35\xa7\x39\xa4\x20\xe1\xcd\x8d\x27\xe7\x35\xc5\x13\x04\x9c\x87\xe1\xae\xd1\x4d\xa9\x1e\x1e\xd0\x6b\x97\xa3\x34\x7a\xd0\x33\x72\x9a\x82\x54\xae\xa7\xb9\x56\x59\xf8\xe6\x49\x2d\xc6\x4e\x56\xf1\x44\xce\x83\xdd\x19\x0e\x1d\x86\x3b\xdd\xa0\xbe\x01\xee\x44\xd5\x7b\xe6\xfa\xa1\xd8\x1e\x3d\x73\xcd\x41\x60\xae\x8d\x9d\x29\xd2\x8f\x8f\xcd\x06\x8e\x62\xd8\xca\x3a\x99\x43\x0d\x32\x49\xd8\x25\xd8\xc1\x0b\xd2\x39\x75\x28\x0b\x60\xef\xd9\x72\xdb\xb0\x87\x4d\x3c\x02\xa6\x2d\x69\xd8\x08\xa4\x94\x4f\x8b\x66\x08\x48\x7f\x76\x1a\x4e\x6f\x49\x57\xf6\x1e\xe5\xea\x82\xb0\x12\x61\x89\x8c\x43\x74\xef\xe9\x49\x4e\xce\xb0\xa5\x03\xf4\x95\x69\x51\x42\x50\xb3\xa4\x5a\x5e\x71\x92\x50\x0d\xd5\xa0\xc5\x05\x2b\x9c\xe2\x5f\x69\xf4\x96\x45\xa7\x91\x86\x59\x15\xe1\x74\xbb\x49\x93\x86\x3d\x4b\x1a\x56\x61\x15\x70\x11\xd3\x30\x7c\xa6\xb4\xa8\xbb\x68\x23\x79\x5f\xe8\x65\x79\xe0\x7d\x0d\x6a\x32\x89\x6c\x94\xad\xd7\x2c\xcd\x92\x86\xc5\x9b\x72\xa3\xa8\x54\x1d\x0a\x32\x24\xef\x22\x11\xea\x8e\x41\xe7\x71\x8d\x04\x5a\xab\xf2\x14\xed\x74\xa2\x40\x78\x95\x30\xd5\xed\x71\x1a\x4a\xd0\xdf\x6c\xbe\xc5\x34\x17\x3d\x40\x2b\x70\x95\x15\xe9\x6b\xd9\x35\x73\xb8\x91\x7d\x89\x42\x94\xe2\xc5\xbe\x3e\x39\x33\xf5\x1a\x08\xd4\x0c\x20\xe6\x2d\x0c\x30\xc6\x2b\xf0\x58\x13\x76\x2a\x37\xe5\x67\x8d\x1e\xe0\x0e\x9e\x2a\xab\xad\xb4\xc6\xe5\x9f\x02\x1d\x00\x1b\xf6\xf6\x17\xca\x77\xf7\xd7\xce\x56\x88\x03\xeb\x71\xc6\xef\x24\x88\x11\xbc\xd4\x21\xbd\x52\x55\xc5\x33\x6b\xe2\xf8\xd0\xdd\x4b\xa8\x7c\xf8\x14\xdf\x44\x6f\x46\xa4\x70\xee\x02\x6f\xb1\x9f\x02\x03\x71\x9c\xea\x9e\xfc\x9b\x62\x20\xf0\x48\x1f\x81\x82\x8f\x65\xaf\xbc\x28\xa8\xef\xf6\xd6\x92\xaa\x8c\xd8\x06\x14\x58\xe8\x08\x07\xec\x45\x9f\x2e\x73\x96\x54\x12\x37\x15\xdc\xec\xfe\x3c\xfc\x84\x18\xdc\x35\x5c\x44\xd1\xce\xe1\xda\xd9\x07\x61\xf0\xf1\x31\xb6\x1b\xc7\xaa\x0a\x6f\x0f\xf5\x5c\xfa\xb1\xd9\x69\x1c\x15\xa1\xe4\xb7\x56\x5b\x93\x29\x6d\xb4\xe4\x7c\x60\x0e\xb4\xb7\xb6\x19\x3a\x98\xf7\xa7\x0d\x5b\xd7\x5a\xec\x95\x35\x6c\x1d\xee\x8c\x15\xe1\x49\xb0\x18\x53\x96\xc8\xb8\x72\x64\x4b\x45\xba\x9a\xd0\x27\xf4\xa1\xa5\x74\xd7\x3d\xa5\x4c\xf1\x91\xbc\x8e\x5f\xe4\xea\xf0\xb0\xfa\xe5\x64\x4f\xed\x14\x64\xee\x95\x30\x50\xd7\x99\x20\x07\xed\xad\x50\xe6\x4d\x8d\x4f\xac\x0a\x1c\x39\xbb\x93\x29\x85\x82\xe2\x34\x94\x0e\x5f\x8e\x8e\x1c\xd4\xb7\xb3\x08\x65\x32\xdc\xc4\xc8\x66\xe5\x02\x12\x62\x84\x33\x01\x11\xf2\xf9\x4f\x30\xaf\x91\xe1\xee\x25\x39\x81\x1f\xc7\xc7\x1a\x20\x8e\x83\x72\xf1\x0b\x5b\x36\x81\x48\x45\x61\x92\xfc\x90\xa4\x4d\x52\x43\x0d\x31\xc6\xf6\x45\xb3\x8a\x3d\x35\x6a\x56\xa6\x3d\x5a\x51\x1d\x5f\x16\x8c\xf9\x10\x4f\x0b\x9c\x0d\x97\x15\xd4\xb3\x6c\x74\x36\x8f\xe3\x58\x0c\xca\xe6\x26\xee\x6b\xfa\xcc\x8f\xd7\x56\x35\xff\x02\xc6\xa2\x65\x88\x63\xe9\x54\x4a\xe8\x94\x42\x75\xbc\x6b\x33\x1c\x35\xc6\x37\x9f\x07\xd6\x89\x89\x63\xe3\x48\x38\x34\x0e\x35\xe7\xd8\xc5\x0d\x18\xca\xc5\xb1\xca\x3d\xd6\xf4\xdc\xc6\x72\x32\x6d\xf2\x1a\xd3\x46\xa4\xbc\x5e\x57\x5e\xd1\xf7\xf2\x52\x56\x25\xd7\x11\x59\x68\xbe\x03\xf1\xec\x50\x8b\x2b\x26\xf5\xab\xcf\xf5\x33\x3b\xd0\x7f\x4d\xe0\xb0\x32\x84\x9e\x9d\xce\xb1\xbe\xd9\xd9\x1c\xab\xb7\xc8\x1a\x6f\x21\x86\x0c\x49\xb5\x79\x36\x6e\x7c\xb9\x3e\x9c\x06\xec\x00\xa6\x9f\x82\x2b\x60\x73\xf1\x8c\x6e\xb6\x53\x9f\x28\x58\xdd\x57\x63\x6f\x2e\xdc\xfb\xfb\x0b\xbe\x28\x96\x7d\x85\x79\xb6\xbf\x02\x20\x1a\xfe\x92\xfa\xd8\x01\x83\x06\xe7\xcd\x40\x88\xe1\x84\x0f\xd9\x97\xdb\xc2\x5f\x4d\xb5\x2d\xfc\x4d\x73\xea\xf2\xae\x4a\x36\x4f\x0b\x59\xe9\x90\x54\x86\x02\x34\x99\x70\x5e\xa4\xfe\xda\x59\x91\xfa\x6b\x67\x45\xda\x55\xfb\x79\x91\x92\x37\x07\x0b\x88\xa7\x6b\xdc\x22\xba\xcc\x5a\x64\xc6\x53\xe9\x2b\xa8\x16\x08\xe8\x0b\x07\x3e\x1e\xf3\xbd\xab\x5d\xfa\xe9\xdb\x8d\x7a\xd1\x10\x35\x12\xc9\x32\xcf\xbf\xb9\xb1\x12\xf0\x0e\x67\x48\xa0\x75\xf2\xcc\x4a\xfd\x5e\xdc\xac\x54\xc3\xa6\xf4\x44\xbf\xb8\x85\x3b\xfd\x5b\x09\x4a\x49\x92\x3a\x03\x7a\xf9\x10\x5f\x01\x10\x2c\x93\x0c\x94\x0e\x92\x49\x77\xee\x47\xc0\x0d\x58\xf7\x23\x60\x71\xf0\xec\xd7\x67\xdb\xcd\x8d\x82\xfa\xca\xce\x3b\x7f\xbf\xc9\x2a\x56\x3f\x6c\x24\xbf\x42\x8e\xc4\xde\x31\x38\xd0\x30\x80\xce\xea\x31\x5b\xf4\x03\x8f\x45\x18\x40\x28\x99\xa0\xee\x92\xaa\xf3\x04\x31\x3c\x15\xc1\xd6\x2a\xca\x77\xfa\x96\x0d\x74\x2c\x5a\x15\x75\x94\x45\xa2\x6b\x7c\x35\x29\x43\x68\xdc\x59\x8b\xf2\x9d\xba\xad\xae\x8a\x3a\x36\xcf\x98\xd3\x28\xc3\xe7\xf0\x2c\x3e\x8b\xf2\x78\x55\x78\x4e\x2b\x68\x43\x49\xd2\xe0\xcb\xf7\x50\x16\xc1\x33\xd4\xaa\x00\x95\x81\xb6\x0d\x15\xa9\x56\x41\x84\x76\xfe\xd5\x16\x47\xa1\x24\xd1\xfc\xd7\x49\x51\xbe\x0b\xc9\xcc\xf4\x31\xac\x84\x55\x55\x1b\x33\x2b\x52\x38\x9d\x3a\x21\xcd\xaa\xbb\x6f\x9f\xea\x1e\xb7\xa7\x6a\x02\x69\x56\xed\x81\x5d\x96\x79\xce\x00\xc2\x3e\xdd\xe2\x93\x33\x4b\x37\x41\xc3\xba\x6a\x1f\xfc\xc8\xd2\xf9\x42\x43\x01\xce\xac\x53\x38\xb3\x04\xad\x80\x14\xe0\x32\x94\x4c\x18\xda\xca\x30\x58\xa3\x3a\x98\x20\x55\x77\x9e\xe2\x10\xa0\x9c\x40\xa2\x9d\x10\x00\x57\x4d\x7c\x1a\x71\xe2\x6a\xac\xf1\xc9\xfd\x68\x9d\xa5\x69\xce\xa2\x7c\x0a\xba\x9c\x43\x00\xfd\x8a\x15\x69\xb8\xcb\xe3\x21\x2b\xd2\x13\x48\x09\xef\xdd\x9f\x22\x64\x0c\xdf\xa3\xfc\x24\xff\xaf\xfb\x12\x67\xbe\x16\xb5\xce\x10\x64\x1e\xee\xb0\x45\xfc\x1c\xdd\x47\x86\x82\xb7\x8e\x29\x6a\x10\x46\x61\x28\x33\x7f\x80\xf5\xdf\x9f\xc0\xdf\x96\x68\x04\x8c\xf5\x81\x41\x0e\x95\xd6\xa7\xb5\xd0\xa9\x94\xb0\x4f\x99\x01\xe0\xfe\x63\xba\x0b\xf8\x82\x6d\x2b\x2b\x40\x2a\xea\xe8\x1f\xa6\x83\xa0\xe5\x6e\xde\xc7\x59\xdf\x13\x3d\xaf\x1d\xe7\x28\xd6\x6f\xb7\x75\xbc\x13\x6e\x35\xbd\x8f\xf7\xe4\xe7\xcd\xcd\x6c\xee\x7d\xcb\xc7\xdb\x14\x69\xd1\x7d\x02\x09\xf1\x41\xbd\x9e\xa9\x94\x39\x3c\x2c\x43\x6f\xf1\xa4\xd6\xcf\x01\xb2\xc3\x6d\xd8\xfa\xc6\xd6\xf7\x4c\x8f\xad\x78\x9e\xec\x25\xad\xdc\xfb\x3c\x83\xcf\x0f\x65\xb1\x64\x4f\xf2\xe4\x52\x3c\x41\x74\x4c\x1d\x36\x17\x3b\x43\x83\xd7\x92\x5f\xa5\x12\x83\xa5\xa9\xf6\xbf\xcb\xed\x20\x69\x1a\xb6\xde\x34\x2c\x1d\x34\xe5\x40\x76\x6d\x90\x14\x83\x44\xe8\x6e\x14\x83\x04\xdb\x1b\x0c\x83\x91\xaa\x78\x14\x84\x83\xe6\x2a\x69\x06\x69\xc9\xea\xe2\x6e\x33\x60\xef\xb3\xba\x09\x42\x7c\xc1\xc5\x1e\x2b\xaa\x88\x57\x25\x7e\x1b\xff\xb1\xc8\x7e\xdd\xda\x24\x1a\x86\x29\x1e\x58\xc8\x55\x80\x14\xeb\x29\x20\xad\xec\x3b\xe4\x51\x08\x7b\x01\x4c\x02\xff\x79\x7c\x4c\xe4\xf7\x5f\x9f\x86\x3d\x12\x5e\x2a\x00\xc6\x7b\x13\x8a\xc8\x55\x93\x7f\xcf\x9a\x2b\xc1\xaa\xf5\xb6\x6e\x48\xa1\x7f\xcb\x7e\xf4\xbd\xfa\x0a\x0b\x35\x5b\xa8\xd1\x85\x39\xb8\xc3\x6c\x3d\x0a\x8d\x98\xf0\x0b\xff\x07\xa9\x44\xb4\xa9\xb2\xb2\xfa\x9b\xcc\x7f\x0a\x57\x9d\x5f\x8d\xcf\xf8\x34\x42\xcd\x9d\x17\x2b\xa1\x16\xa5\x6b\x96\xcf\x60\x5d\xfa\x14\x20\xe7\xff\x14\xec\xae\x58\xba\x58\xa4\x4a\xcb\x2e\x7b\x39\x49\xf2\xb4\xdc\x36\xac\xca\xcb\x72\x33\xc1\x23\xcb\x1c\xe5\x57\xe6\x18\x43\x4d\x07\xa8\x6a\x90\x59\x66\x3e\xed\xda\xad\x7a\x82\x31\x73\x8c\x27\xc9\x37\x2c\x2b\x2e\x9f\xf0\xf5\x64\xa9\x91\x21\xf4\x16\xc3\x29\x4d\x8c\x67\x48\xde\xe1\x43\x98\x7c\x88\x52\x72\x8a\x17\x6c\x55\x56\xa2\x03\x2f\xa4\xe2\x0a\xfd\x1a\x23\x44\x94\xac\xf8\xc5\xaf\x07\x0e\x00\x7c\x74\x0b\xf6\xa7\xc0\x18\x1f\x3a\x90\x51\xc2\x4f\x12\xe9\xd1\x85\x3b\x3e\xc6\xfe\x84\x3b\xfc\x3b\x0c\x5b\xb2\x18\x9e\x85\x40\xd1\x99\x7c\xcd\xd2\xad\xcc\x74\x01\xf9\xd8\xe6\xcf\x1d\x9d\xcd\xa7\x20\xbc\xf6\xe7\xde\x9f\x4f\xf1\x99\xdb\x9f\xfd\xf9\xfc\x36\x8f\x5b\xd9\x6a\xa8\x99\x2f\x8e\x73\x7d\x54\xa4\x25\xcd\xc4\x5f\xb4\x9d\x68\x22\xb5\x76\x7c\x93\x09\x8b\x16\xee\xe0\xcf\x10\x68\xf6\xd0\xb3\x9f\x63\xe1\xd1\xfd\x07\x95\xc5\xb7\x08\x9e\x7f\xb5\x75\x52\x42\x81\x30\x3c\x42\x19\xae\x45\x08\x3c\x75\x4f\x95\x11\x8f\xda\x5e\xad\x59\x6a\x34\x6a\xdb\x96\xe8\x10\xf6\xf5\x25\x4d\x7e\x95\x8a\x56\x7f\x53\xb3\x43\x08\x9e\x26\x61\x36\x03\x6d\x17\x9a\x66\x5f\xc5\x82\x83\xd6\x1b\x39\x4d\x7e\x25\x54\x91\xb3\xd2\xb8\xcf\x54\xba\x7d\xe2\x1a\x5b\x54\x5e\x6f\x24\x23\x2d\xb9\xd1\x93\x33\x83\xdb\xf4\x2a\x92\xfa\x12\xfd\x1c\xa8\xe0\x24\x67\x7e\x56\xb2\x8b\x55\x54\xd3\x8b\xdc\x0f\x9f\xc7\x82\xf2\x3d\xa8\xb1\x97\x26\xbf\xf2\xb1\x12\x47\xed\xda\x2f\x3b\x5e\x98\x5f\x58\x6c\x98\x8f\x37\x43\x8d\x6f\x21\x37\x96\x84\xaa\xfd\x1b\x1e\xf2\x9a\x8f\x4a\x93\x5f\x91\x4f\x02\xe3\x4e\x97\x7d\x12\xfb\x00\x3f\xb0\x1e\xfc\x6d\x7a\x17\xeb\xe4\x18\x34\x56\xc4\xa4\x2b\xd3\x43\x98\x0d\x69\x8c\x8a\x8d\xc2\x06\x40\xd8\x89\x51\x64\x82\x7f\x5a\xf4\xa0\x80\x2c\xcf\x07\x77\x4c\xe2\xb5\xd0\x0a\x11\x5f\x42\x14\xca\xef\xf8\x78\x3d\xe7\xc8\x4c\xd1\x4d\x5e\xd0\xbf\x08\x77\x46\x05\x08\xc4\x51\xd8\xa8\x49\x26\x8f\x50\xdb\xc0\x2c\xa2\x2f\x8b\x66\x19\x7d\x65\x94\xa5\xef\xcf\x41\x17\x60\x2a\xbf\x3f\x9f\xc7\x30\xb6\xdb\x4e\x5c\xfb\x49\x56\xa3\x9b\x21\x32\x26\xdc\xc4\x68\x17\xc9\xfd\x4c\x8b\x38\x51\x1d\x2d\x50\xe3\x1c\x75\x72\xf1\xf4\x54\x8a\x0d\xb4\x19\xcd\xf6\x78\x93\x25\xf3\xd3\x93\x39\xf3\xe6\x49\x46\xa8\xf3\xc8\xce\x1c\x54\x5a\x0d\x73\xcf\x01\x2c\x10\x8f\x60\x5a\x63\xa1\xd8\xda\xc1\x2d\x7d\xa2\x02\xb6\xd0\x33\x14\xd0\x65\xda\xc5\x1e\x7f\x62\x65\x0e\x19\x71\xcf\xd7\x86\xc1\x73\xef\xad\xdd\xe4\xd0\x5b\x9c\x3b\xf7\xbc\xa5\x13\xfc\x75\x2e\xe8\xec\x05\x61\x0b\x05\x67\x97\x8b\x87\x36\xa9\xdc\x8b\x7a\x99\x1a\x58\x54\x11\x9f\xb6\xee\x5b\x18\xde\xe0\x5e\x97\x8f\x20\xfd\xf7\x4c\x5f\xcc\x9e\x8e\xbb\xc8\x8d\x05\x66\x50\x1f\xfd\x2c\xf6\x85\xf5\xb2\xe2\x0c\x99\xb2\x49\xf4\x7e\x2c\x5e\xa0\xfe\x87\x0c\x18\x1f\x07\x81\xcb\x33\x5f\x01\xdb\x29\x65\x2b\x50\xc6\x03\xff\xfb\x19\x07\x21\x95\xba\x25\xe3\x40\x72\x88\x54\x29\xde\x41\xc4\x71\x55\x5e\xcb\x1f\x89\x7d\x1f\xe1\xc0\xa6\xd9\x57\x1e\x11\x26\x67\xbe\x24\xf8\xd0\x10\x61\xc2\xdd\xbb\xb6\x1d\x66\xd4\xdb\x7a\xc3\x96\x8d\x7e\xbd\xc4\xe7\x5e\x91\x1c\xc7\xb1\xf4\x5a\xdb\x12\x6b\x99\xdb\x14\x57\x2f\xb8\xad\x32\xa9\xb9\x4d\x71\xe4\xc0\x83\xb6\x25\x0b\xc0\xd9\xdf\x24\x13\x06\x4f\xea\xe3\x1e\x49\x3e\x4c\x26\xd8\xb5\x3e\x68\x75\xf5\xfd\x8b\xc7\xe7\xcf\x2e\x9e\x3c\x7c\xf4\xfa\xc5\xcb\xff\x7d\xf1\xf4\xf9\xff\x3a\x7f\xf4\xfa\xe9\x8b\xe7\xaf\xb4\x9a\x39\xc2\x9d\x3f\xff\xe9\xf8\xd8\x30\xec\x3c\x7f\xfe\x53\x67\xe9\x23\x9f\x75\x68\x77\x5b\x47\x47\xfb\xab\x04\xed\x93\x47\x72\xf0\x7d\x72\xcb\x0e\xc4\x53\x65\x7d\x73\x7c\xaf\x63\xb6\xb3\xe2\x8a\x55\x59\x93\x15\x97\x17\x29\x9f\xb5\x8f\x9c\x73\x3e\x86\xa7\xaa\xca\xc7\xd9\xb2\xe9\x1b\x88\x62\xbd\x55\xd7\x87\x68\xe1\x27\x1d\x82\xc1\x47\x8c\x7f\xcc\x88\xec\x24\x2e\x11\x58\x49\x56\x02\xea\xf8\x18\xff\xaa\xf4\x9b\x1b\xc2\xed\xb4\x34\x96\x51\x75\x0d\x42\x4f\xb3\xbb\x43\xa7\x1a\x04\x95\x96\x1b\xc9\xf2\x8a\x1d\x50\x0c\xe0\xe4\xb9\x95\x2c\x9b\xb2\xba\x7e\x74\x60\x51\x0a\x1e\x1a\x63\x3c\xb4\x06\x0a\x2e\x6a\xe0\x88\xfd\xb4\xf8\x05\xa9\x48\x7d\x40\x1d\x66\x01\x19\xc2\x43\xd7\x20\xa7\x52\xf4\xf6\xf5\x6d\xeb\xf7\x96\x33\x27\xec\xa9\xdb\xda\x85\xe4\x3b\xf7\x37\x70\x61\x5a\xb7\x5c\xf0\x01\xbd\x38\xbc\x34\x01\x0f\x5b\x85\x9e\xf4\x92\x86\x90\xc2\x04\x4d\xfa\xbf\x84\x2f\x89\x7a\xf2\x4b\x58\x94\x22\x24\x84\xe3\x86\x9f\xe6\x14\x4b\xb3\x35\xf3\xfb\xc2\xb8\xf7\xd1\x5e\x91\x86\x1d\xad\x2d\x45\x44\xf8\x40\xf5\xde\x02\x6b\x00\x73\x1b\x09\xf7\xbe\x12\x44\x3b\x55\x51\xb4\x24\xaa\x19\xd1\xf3\x47\x65\x99\xe8\x0d\xbb\xc6\xa0\xaa\xe1\x0e\x53\x66\x6f\xd8\xf5\x3c\x86\x24\x9f\x1b\xc3\xd5\x36\x87\x98\xea\x91\x58\x5a\xfa\x0a\x92\x67\x29\x04\x3c\x42\x08\x05\x0a\xaf\xa3\x02\x3c\x8e\x63\x45\x6c\xa9\x0c\x9f\x63\x8f\x90\xe3\x3f\x44\x19\x7e\x56\x5c\x0e\x9a\x72\x20\x7b\x30\x48\x0a\x15\xe9\x59\xd4\x35\x19\xfc\x33\x18\xc9\x46\x46\xc1\x3f\x03\x54\xfb\x2b\xca\x6a\x9d\xe4\xd9\xbf\x58\xfa\x5c\x45\x61\x53\x69\x66\xa7\x34\x21\x18\x5f\x25\xf5\xd0\x2c\x19\xfa\xac\xe1\x93\xa2\x28\x9b\x41\xc5\x4e\xd4\xcc\x58\x9d\x88\x06\x49\x3d\xc8\x9a\xc1\x55\x52\x0f\x12\x34\x49\x1b\x2c\x18\x2b\x06\x79\x59\xbe\x61\xe9\x60\xbb\x19\x07\xc2\x20\x50\xa2\xd3\xb8\x66\x8d\xd5\xb6\x9c\xdd\xd0\xdc\x2c\x3e\x48\x62\xf7\x19\xb6\xd1\xb6\xe8\x5e\xb2\xde\x25\xba\xcd\xcc\x99\xbd\xaf\xd8\xba\x7c\xcb\xec\xc9\x23\x44\xb6\x17\x82\xd2\xc8\x5e\x40\x4a\x0a\x7b\x01\xd5\x64\xf9\x81\x54\x44\x87\x4f\x38\x41\xe8\x07\x68\x79\xc5\x84\x4b\x42\xa3\xef\x97\xce\x1a\x02\x2e\x22\xbc\x76\x01\x00\x9f\x2d\xba\x9e\x80\xd2\x66\x5d\x95\x5d\x87\xd0\x57\x53\xcb\xe2\x6b\xc6\xed\x8c\x07\xa1\x64\x73\x8a\x82\xc8\x84\x36\x4a\x59\xbd\xac\xb2\x85\x77\xea\x94\x9e\x10\x26\xb4\x91\xaa\xf6\x20\xe8\x75\xf2\x86\xbd\x76\xa2\x45\x4a\x22\xe3\x16\xc4\x0c\xa5\x0b\x38\xf4\xc4\xbd\x50\xa4\xea\x10\x12\x25\x5d\xca\xa0\xf7\x36\x94\xbf\x74\x2c\xaf\x7e\x47\x15\x4d\x3e\x11\xf4\xe8\x76\x08\x65\x8e\xe4\x89\xb0\xff\xe8\x6c\x35\x04\x7d\xd4\x0f\x6b\x83\x13\xb7\x7d\x95\x8b\x41\x3d\x29\x41\xd5\x93\x48\xf8\xae\x37\x64\x06\x25\xd1\x94\xcc\x5d\x96\xe7\xec\x32\xc9\xc1\x6b\xf4\x8b\x0d\xab\xc0\xab\x8e\xf2\xa7\x25\x2a\x93\x04\x8f\x1e\x7a\x80\x79\x46\xdd\xaa\x0b\x5d\x6d\x53\x09\x95\xa8\xd9\xae\xc1\x38\x88\xad\x7a\x36\xc2\x3d\x4a\x74\xd0\xcc\x1d\x38\x50\xa3\x41\x71\x00\xc9\x4a\x40\x65\x56\x7e\x48\xf7\x1c\x93\x20\x9c\x9d\xc2\x2d\xda\x00\xc3\xe0\xc3\xdd\x27\x0e\x72\x13\x83\xc4\x3a\x6d\x06\x65\x31\x28\x9b\x2b\x06\x81\xf1\xae\x37\x6c\x14\x0c\xeb\x70\x3c\x90\xae\xce\x06\xcd\x15\xb3\x4b\xf0\x73\x69\x90\x66\x2b\x08\x94\xdf\xc0\x05\x0f\xdc\x19\x6d\x58\xb5\x2a\xab\x35\x14\x31\x46\xc5\xcf\xab\x24\x4d\x0d\xfe\x6e\xe8\x61\x45\xa3\x8e\x59\x6e\x35\x2b\xe4\xd9\x9b\x0a\x5e\x01\x3d\x97\xae\x6d\x0e\x99\xff\xcc\x98\x7b\x6b\x35\xcd\x2a\x2d\x0a\xfe\x94\x66\xda\xa4\xdc\x2a\x49\x56\x4b\x07\x06\x9e\x04\xa1\x50\xf2\x37\xfc\xb1\x1a\xd3\xe4\x0e\xb3\xa3\x03\x9e\xde\x7f\xd8\xd1\xf3\x21\x5c\xcd\x43\xaa\x35\x41\x19\x2e\x35\x0d\xe0\xb6\x2e\x41\x64\x01\x45\x89\x1e\xf6\x66\x30\xbc\x1b\x8c\xcc\x46\x47\xc1\xdd\x68\x70\x37\x18\xc9\x59\x90\xdf\xc6\x34\x8f\x82\xbb\x21\xa2\x9a\x85\x66\x9a\x93\x8e\xac\xa3\x6a\xff\xac\x46\xbe\xdb\xc9\x7e\xc2\x70\x20\xf6\xf9\x2a\xef\xdc\x2d\xde\x7b\x92\xb5\x69\x7a\xe8\xb3\x7d\x95\xfa\xd4\x7b\xe9\x76\xdc\xce\x87\xed\xab\x7d\x3b\xf6\x16\xfb\xce\x37\xbb\x36\x67\xf3\x51\x9b\x50\x4e\xa2\xc1\xb0\x7e\xd4\xfe\x1a\xd8\x4b\xfa\x1f\xdd\x65\xce\x55\xfd\x03\x36\x5b\xca\xea\xa6\x2a\xaf\x7d\x81\x36\x85\x91\x88\x71\x63\xb5\xb5\x3c\x8d\xdc\x59\x36\x1f\x8b\xfa\x86\xd2\x83\x0a\x91\x18\xb1\x64\x79\xf5\x18\xb3\x93\x45\x2e\x54\xdd\x2c\xcb\x26\xfe\x3f\xa9\x43\xba\xda\x47\x51\x94\x36\xc1\x47\x22\x53\x8b\xda\x84\xf3\x10\xb8\x26\xb0\xe6\x43\x87\x02\x85\x01\x47\x86\xf6\xa8\xc2\xd6\xca\x0c\xa9\x66\x00\xc7\x28\x75\x65\x37\x29\x92\x4a\x26\xc4\x5d\x53\x88\x1d\x95\x9b\x4b\x23\x25\x5d\x44\xba\x20\xd3\xc7\xb2\x6a\x52\xf0\xbc\x6e\xab\x9a\xf5\xea\x70\x32\xd4\xdb\x23\xfd\x2e\x58\x67\xc5\x65\xce\x9a\xb2\x38\x8a\x51\x56\xab\x6f\x39\x56\x05\xfc\xd2\xa2\x7b\xa8\xfd\xb0\xa1\xff\x95\x26\x4b\x1a\xe6\x9b\x1d\xde\x17\x04\x34\xc4\x0b\xe2\x09\x04\x75\x57\x64\x1f\x7c\xe5\x7b\xbb\x6a\xf7\xb1\x26\x7d\x14\xa2\x13\xa9\x91\x8b\x52\x13\xad\xe5\xe1\xa5\xb3\xa5\xfc\xe5\x52\x0a\x95\x35\x0a\x06\x59\x0d\x5e\xf7\xc4\x23\x4a\x7e\x3d\xa8\xb7\x9b\x4d\x59\x71\x2a\x52\x0a\x0f\x71\x7a\xfa\xea\x80\xac\xe7\x9e\xc1\xa2\x52\xb3\x84\x10\x4b\xea\x5b\xfd\x40\x01\x69\x17\xbd\xce\xfc\xe8\x66\x17\xdb\x2c\xd7\x14\x81\x62\xb1\x3e\xc0\xb1\x71\x8c\x42\x87\x6e\xaa\x68\x9e\xbe\xad\x5c\x09\x03\x4e\x91\x27\x6a\xe0\x1b\xdd\x52\x79\xd1\xc5\x5d\x9d\x71\x99\x45\x80\x40\x71\x5c\xd5\x15\x3b\x98\xaf\x20\xc7\x06\x6e\xe9\x22\x47\x06\x82\xf1\x9e\xce\x74\x19\x49\x21\xe7\xb1\x2e\x20\xdf\x38\xfd\x47\x82\x10\x72\x49\xee\x5e\x8b\xb8\x34\xcb\xcc\xf9\x77\xb7\x5b\x28\xee\x6a\xe9\x8c\xa9\x85\xe8\x5e\x51\xcc\xd1\x58\x20\xb7\xb5\x46\x71\x25\x3c\x31\x76\x22\xb8\xf0\xb1\x5e\xfb\x67\xba\xb2\xf9\x91\x67\xdb\x0d\x3c\x70\xb0\xaa\x4d\xcf\xb5\xc8\xd3\x21\x7a\x67\xbc\x14\x77\x46\xda\xa1\xde\xf6\x88\x7d\x82\xbe\x66\x77\xed\x09\xd0\x05\x92\x49\xe8\xb3\x4a\x08\x2d\x5d\x32\x5a\x28\xce\x07\xd7\x86\xa5\x42\x08\xa0\x65\x3f\xa4\x14\xe5\x19\xa6\xfb\xe6\xa0\x4b\x58\xaa\xa9\x59\x1f\xf9\xf7\xd1\x51\xf0\x9d\x85\x55\xde\xdc\x88\x87\x31\x29\x40\x41\x8f\xcf\x47\xf4\x5d\xf0\xe6\xe6\xa8\xff\x11\x0c\x5f\xd7\xe2\x38\x0e\xd6\x65\xca\xf2\xc0\x96\xca\x68\x47\x23\xe4\x99\x41\xff\xec\x58\x03\x3a\xe3\xe4\xc1\xc0\x49\xe9\x2a\xee\x00\x8e\x2f\xa4\x74\x88\x2c\x05\x95\x33\xb9\xe2\xa5\xa9\xb5\x9a\xb1\x39\x4d\x43\x42\xad\x6c\xd0\x71\xc5\xca\x0d\x2b\x1e\xe5\x49\x5d\x0f\x9d\xbe\x84\x53\xcf\xe1\x61\xd5\xa0\x88\xac\x95\x4e\xb0\x78\xef\x24\x22\x71\xe7\xf8\xf4\x9c\x62\x33\x41\x31\xb8\x71\xc4\x0a\x64\x76\x3a\x27\xf4\x19\x0c\xa7\x7d\x6b\x26\x63\x06\xe8\x89\x34\x2f\xff\x7a\x6b\xde\xdc\xcc\xe6\xe1\xa1\x95\x10\xca\x2c\xbb\x3a\x77\x2a\x38\xe8\x60\x21\x05\xc0\x28\x77\x7b\xa9\x5e\x4b\xbe\x63\xd7\x7a\x5b\x9b\xbd\x11\x8f\x2b\xea\x97\xb9\x02\x1c\xca\xa1\x20\x7b\x11\xf1\x83\x96\xc0\xc5\xfb\xd9\xdc\xc5\x68\x77\x33\xb8\x53\xea\xbd\x66\xda\xcb\xf3\x31\x35\x3f\xed\x5c\x33\xb7\xd6\xee\xa5\xf3\xec\x10\xcf\x06\xee\x59\x48\x93\xe4\x3c\xf5\x2c\xd8\x1e\xa6\x71\x47\x29\x7c\xff\xf1\xa0\x8f\x1b\x2f\x9f\x44\x1a\x82\xbb\xa9\xc9\xe3\x4a\xa2\xa8\xe9\x3a\xde\xc8\x7d\x74\xd8\xb2\xb0\xb7\x84\xdd\x68\xd3\x3a\x34\xed\x4a\xac\xcc\xbd\x14\x22\xa4\xe6\xb9\xf6\x2d\x4a\xc3\x6b\x0d\x17\x9b\xff\xe5\x65\x9e\x95\xcb\x24\xd7\x76\x98\xe4\x11\xd1\x37\x53\x3c\xbb\x7f\x92\x5a\xa5\x21\x23\x18\x6a\xc2\xce\x92\xdb\x92\x7e\xdd\xfc\xf7\xf4\x0a\x4a\x1b\x37\x48\xbb\xd9\x34\x5b\x36\xf1\x8e\xcc\xa8\x23\xfb\xa9\xb6\x39\xeb\x94\x8d\xda\x87\x24\x00\x9b\x6c\x8e\xc1\x21\x9b\x94\x1a\xa1\x95\x20\x9d\x00\xb6\x84\xcc\xc1\xbb\xf0\x4e\xb6\x3d\x71\x3a\x31\x51\x8f\x30\x78\xe3\xfa\xe9\xe1\xb3\xa7\x8f\x2f\x9e\xfc\xf8\xec\xd9\xc5\xf3\x87\xdf\x9f\x5f\xbc\x3c\xff\xf6\xfc\xff\xff\x43\x7c\xef\x1f\xb3\x7f\x4c\xe6\xa3\xf1\x68\x02\x7f\x3f\xbb\xa7\xef\xac\xdd\x52\x13\xb0\x66\xf6\x57\x88\xde\x70\x09\x03\xe3\x7d\x0c\x96\x51\x90\x78\xd5\xa0\xcb\x3d\x60\xef\x37\x70\x38\x4e\x06\xff\xe4\xa3\x9e\xf0\xd4\x7f\x0e\x2e\xcb\x66\x32\xd0\x82\xee\xd0\x5c\x11\x7b\x35\xc4\x9e\xe9\x15\x9a\xf9\x56\x66\x46\x0a\xce\x3d\x49\x60\xc9\x77\x9b\xa9\x37\xda\x6c\xc3\xf6\x83\xf4\x81\x1c\xc5\x9f\x0f\x55\x9b\xf7\x2a\x52\x74\x2b\xf0\x48\xdc\x37\x8b\x75\x29\x56\x70\x68\xfc\x75\x49\xc5\x2a\x6f\xd8\xb5\x88\x06\xc0\x6b\x53\xf5\x42\xa8\x4a\x5e\x9b\xe5\xda\x9e\x83\x2b\xba\xc8\x01\x40\x5d\xa1\xb5\x25\x9c\x46\xcc\x36\xd4\x03\xe1\x9b\x8a\x97\x6e\x2d\x3d\x08\x42\x25\x54\xeb\x96\x0e\xc4\xba\xa4\xaf\xc5\xd0\x63\x11\x88\xc5\x2c\x61\xbd\xd0\x7d\xcc\xd0\x40\x8a\x73\xc0\xa8\xf8\x25\x00\x46\x65\x78\xdc\x88\x14\x35\x24\xda\x8b\xd2\xf1\xfe\x22\x83\xb8\x89\xde\xae\xc9\xcb\x35\xc7\xd4\x41\x86\x33\x8c\x4e\xf7\x3d\x1d\xe6\x40\xa1\x56\x6e\x44\x65\x61\x51\x3b\x6c\x2b\x58\xf3\x19\xff\x35\x0f\x6d\x55\x4e\x8a\xde\x26\x02\x11\x1c\x87\xc8\x13\x27\x89\x8e\xd7\x01\xb8\x0d\x89\x6b\xd6\x24\xf9\xbd\x65\x59\x81\xc1\x31\x24\x55\xdb\xa2\xc9\xd6\xec\x5e\x7d\x5d\x37\x6c\x7d\x2f\x4f\xfe\x75\x0d\x7e\xda\x15\x00\xa9\x48\x02\xa5\xc9\x65\x5f\xb6\x7c\x6c\xef\x83\x31\xba\xe7\x01\x63\xef\x1b\x50\xd9\xab\xca\x3c\x67\xd5\xed\x8c\xa2\xf5\xf7\xe7\xd6\xf7\x17\xd6\xf7\x1f\xad\xef\x2f\xbd\x0a\x7d\x18\xfa\x62\x8f\x21\x75\xb5\x2d\x9e\x95\x49\xfa\xd7\xb2\x7c\xe3\x3a\x7f\xa7\x99\xe8\x32\xfe\xe1\xb7\xb1\xd5\x51\xbb\xc2\x97\x52\xb1\xcf\x1a\xc0\x58\x66\x48\xdf\xf3\xbc\x4c\x27\xb0\x95\x0f\x65\x48\x28\x97\xd8\x9a\x0d\xda\x09\xbc\xce\x52\x60\xf2\x5b\xe4\xf2\x71\x3c\x7e\xf8\xad\xf8\x52\xbd\x50\xcd\x09\x28\xab\x93\x76\xa7\xe8\xf4\x0c\x03\xa7\xdd\x20\x22\x1f\x61\x1f\xa6\xdb\x68\xd3\x87\xf8\x98\x24\x4f\x97\x8b\x4b\xd6\x74\x65\xd5\x4e\x16\x18\xd8\x5a\x69\xd2\xb4\xdf\x6c\x70\xbd\xd9\x36\x2c\x75\x76\x9b\xee\x63\x6d\xf4\x57\x82\x95\x5b\xbe\xb1\xe5\x66\xd1\x10\x17\xab\xf2\x60\xbd\xe0\xdf\x74\x5b\x18\xdf\x7f\xb2\xbe\xff\xbc\x57\x27\xf6\xa0\x2d\x74\xc9\x1a\x67\xe7\x5c\xb2\x06\xa3\x24\x58\x79\x9f\x5f\x5c\x70\x1e\x4e\x57\x8e\xe6\x33\xd6\xa8\xec\x16\xb2\x02\x35\xb2\xad\xc1\x8e\x45\x3a\x8a\xa1\xc4\x9a\xc5\xd6\x0c\x8c\x65\xc6\x54\x2a\x2a\xe3\x92\x7c\x9f\xbd\xcf\xcc\x7d\xf4\xa7\x8b\x8b\xb1\x95\x0f\x65\x38\x4e\x38\x4d\xf3\xc4\xa9\xd4\x5a\xc4\x12\x4f\xac\x81\xfc\x19\x1a\x27\xb9\x84\x89\x64\x55\xb6\xba\x7e\xce\x58\x5a\x3f\x96\xf0\x19\xc3\x2b\x23\x82\x47\x9a\x77\x07\xc7\x4c\x32\x8a\x90\xac\x3c\xca\xa2\x3c\x5a\x63\x30\x44\x19\x85\x14\xa5\xc4\x00\xee\x08\x88\x75\x49\x04\x10\x5e\x45\x74\xb2\xef\xcd\x91\x14\x0a\x74\xd7\x26\xc1\x48\x67\x80\xbc\x4d\x5f\x14\xf8\x11\xad\x33\xc3\x70\x27\xba\x28\x1d\xfa\xa9\x1c\xb0\xaf\x91\x99\x3a\xbc\xaa\x92\x1c\x2b\xdc\x18\x8a\x45\x26\x73\x13\x8e\x02\x8c\x70\x31\x98\x0d\x82\x91\xac\x84\x46\xa5\x1e\xcc\x07\x8b\x6d\x33\x08\x46\x56\x13\x5f\x9f\x3d\x08\x9a\x2b\x76\x1d\x4c\x82\xac\x01\xc0\xa5\x0a\xf9\xb3\x60\x83\x55\xb9\x2d\xd2\x40\x78\x88\x15\x28\xa8\x31\xa2\x7e\x24\x30\x49\x32\x05\xb1\x44\x2d\x3b\xd8\x93\xee\x2a\xb0\x1b\xd2\xdc\x0d\xfa\x3c\xe1\xbc\x19\x59\xe7\x00\x52\x83\x50\x2f\xb8\x03\xa1\x75\xe0\xc3\x48\xc8\xcc\x65\x17\xa8\xc1\x86\x2c\x40\x84\xbc\xbc\x6a\x19\x28\x98\xa5\x75\x64\xe2\xcf\xc7\x23\x4d\x1c\xc7\x76\xbb\x86\xd7\x6e\x85\x17\xe2\xf1\xc1\xc4\x22\xab\xa8\xf0\x3f\x8c\x96\x6e\x75\x9d\x5c\xc2\x53\x98\xbb\xf6\xff\x3f\x5c\xfb\xb4\x64\xf8\x6a\x94\x15\xcb\x7c\x9b\x82\xee\x8f\x59\xe3\x28\xf8\xe7\x78\xf0\xba\x1c\x24\xcb\x25\xab\x6b\x50\xf6\x71\x41\xc8\x62\x0d\x56\x55\xb9\x1e\x04\x23\x6f\xab\x51\x57\xc6\xa0\xbe\x02\x1c\xba\x4a\xde\xb2\x41\x32\xf8\x27\xf4\xee\x9f\x03\x79\x0c\xe1\xe3\x76\x56\x83\x63\x8e\xaa\x4a\xae\x07\xe5\x0a\xba\x42\xce\x12\xa5\x43\x2b\x3a\x5a\x8e\x83\xa9\xde\x0b\x2f\x19\xa8\x2f\x2d\x19\xf1\x12\x21\x26\x08\xdd\x9a\xff\xd8\x85\x13\x06\xbb\xef\xf1\x20\xb2\x44\x7d\xab\xf2\x2d\xab\xde\x55\x19\xb0\xf8\x0c\xdf\xf5\x78\x27\xff\x49\x7a\x38\x0e\x46\x6f\xd8\x35\x28\x61\xad\xfc\x13\x11\x82\x91\x8c\x45\x3f\x85\x9c\x78\xb8\x43\xf9\x1a\x2b\x12\xbd\x7d\x32\x88\xa3\x89\xd8\x3f\x47\x22\x37\x99\xcd\xa3\xac\xc8\x1c\x07\xed\x88\xc7\x20\x29\xb8\xca\x6a\xbd\x65\x84\x05\x1d\x68\x7f\x02\x7e\x07\x98\x12\x84\xda\xd3\xba\x30\x41\x34\xf1\x31\xdc\x75\x51\x60\xad\x39\x68\x13\xe0\x56\xb7\x4f\x26\x46\xa9\xfb\x41\x00\xc9\x0e\xa7\x71\x91\x71\x0c\x74\xef\x59\xf2\x50\xac\xa0\x87\x66\xb3\x92\x0e\xd8\x7b\x87\x24\xd4\x93\xfd\xa4\xab\x0d\xfb\xcc\x71\xc8\x0a\xf6\xb2\x6d\xbe\x4b\x81\xc1\xba\x7d\x24\xd7\xf6\xb1\x97\x1c\xab\x7c\x91\xac\x59\xbd\x49\x96\xee\x2d\x6a\xcd\x87\x5a\x2b\x5f\x50\xb7\xba\x25\x89\xfe\xe7\x49\xb3\x2a\xab\xb5\x95\x5c\x6d\x8b\x8b\xbc\x2c\x37\x1d\x4c\x67\x87\xf9\xd8\x6d\x78\x4e\xc1\xd9\x16\xdb\x35\xab\x92\x45\xce\x2e\x4c\x86\xd6\x57\x0b\xda\x3e\x5c\xf8\x18\x58\x0f\x34\x10\x2d\x1f\xf0\xdb\x8c\xbd\xab\xe5\xb4\xb0\xb7\xac\x68\x2e\xd2\xac\xde\x24\xcd\xf2\xaa\x0b\xea\x97\x5f\xb7\xac\xba\xee\xe2\x97\xf9\x27\xeb\xcd\x74\x59\xed\xbc\x14\xcb\x73\x95\xd4\x57\x17\xf2\xab\x07\x2c\xab\x9b\xb2\xba\x3e\x00\x32\xd9\x36\xe5\x01\x60\x45\x59\x30\x17\xec\x2a\x29\xd2\x9c\x2d\x92\xaa\x3e\x11\x21\x44\x7f\xb7\xfc\xbf\xfe\xfe\x6f\xeb\xfb\xec\xd4\x4e\xb0\x7b\x78\x66\x77\xf1\xcc\xee\xe3\x99\xdd\xc9\x33\xbb\x97\x67\x76\x37\xcf\xec\x7e\x9e\xd9\x1d\x3d\xb3\x7b\x7a\xdf\xee\xe9\x7d\x67\x2e\xed\x9e\xde\xb7\x7b\x7a\xdf\xee\xe9\xfd\x3f\xfe\x67\xef\x47\x9d\xa2\x89\x2f\x0e\x11\x4d\xfc\xd1\xed\xc8\x73\x49\xff\xec\x3b\x52\x57\x64\x3c\xef\x1d\xc9\x03\xdc\x29\xca\xf8\x73\x87\x28\x43\x04\xb7\xb5\x90\x4f\x46\xee\x15\x83\x8f\x6d\x5c\xb4\x5b\x5e\x26\xc5\x53\xf4\x09\x65\x23\xe9\x58\x65\x4d\x7b\xcc\x53\xef\xbb\x55\xea\xd3\x2f\xb6\xd1\x9a\xdc\x0d\x71\xed\x15\xc9\xf5\x78\xec\xf3\x5c\x62\xd1\xb5\x73\x57\x03\x9e\xe5\x02\xd7\xce\x5d\xf0\x9e\x55\x3b\xe7\x24\xf8\xb1\xa2\xc0\xb1\xbd\xa7\x6c\xf8\x5f\xfe\xc6\x89\x71\x6c\xef\x34\x47\xa0\xc5\x09\x6f\x6c\x6f\x3f\x2f\x94\xd9\xe6\x7d\xcf\x92\xfd\x35\xa9\x41\x56\xeb\x08\xb1\xee\x7b\x36\xce\x5f\x91\x56\xfb\xe1\x3d\x8b\xf7\x70\xdb\x94\x7e\x60\x8f\x9c\xee\x79\x59\x30\x3f\xb0\x67\xed\x60\x9f\xff\x55\xd1\xf4\xd8\x26\x13\x36\xfc\x77\x22\x76\xe6\x77\x26\xfa\x3d\x66\x8b\xed\xe5\xc3\x34\xd9\x34\xac\xa2\xae\x17\x37\x15\xe3\xdc\x71\xaa\x6d\x1e\x09\xa7\x2a\x3c\x73\xbb\xef\xf7\xad\xa7\xe0\x38\x95\x69\xda\xf3\xbd\xe5\x03\xbd\xd3\xea\xd2\x6a\xc8\xb1\xa9\x94\x4e\xaf\x04\x93\xab\xf9\x63\xc2\xe9\xb6\x53\x5f\xa7\xc8\x2b\x89\xae\x1f\xdf\x47\x84\x1d\x53\xef\x50\x86\x01\x42\x05\xa1\x32\x67\xdb\x03\x2f\xc0\xa0\x80\xb0\x10\xdc\x5b\x02\xe1\x82\xb0\x75\x84\xad\x8a\x6e\x4a\xcd\x18\x83\x3e\x46\xbb\xaa\x2c\x9b\x73\x8c\xeb\x3e\x09\x16\x65\x7a\x1d\x44\xcc\xdc\x8b\x32\xe2\x63\xdd\x94\x6b\xd8\xa6\xd2\x32\xb6\x62\x49\x9a\x15\xac\xae\xb1\xca\x24\xaf\x27\x67\xce\x15\x48\x85\xcd\xfa\x4c\x60\xc3\x67\x31\xee\x5d\x71\xf5\xd0\x73\x7a\x71\x81\xab\x08\xaa\x08\x1a\x9b\x84\x32\xb0\xd8\xa3\xf8\x02\x22\xa8\x32\x24\x49\x00\xbc\xc4\xc8\x2f\xe9\x52\xf2\x69\x91\x35\x19\xaa\xb4\x87\x42\x32\x9c\x67\x8b\x2a\xa9\x32\x26\x4d\xf0\x58\xf5\xa8\xac\xd8\x33\x48\xbd\x1e\x06\x7a\xa7\x04\x91\xb5\x75\xc6\x3f\x9d\xbf\x7c\xf5\xf4\xc5\xf3\x03\x6b\xc2\x71\x06\x11\xfe\x1d\x86\x63\xe4\x20\x43\xed\x00\xe1\xd9\x8b\x6f\x2f\x64\x9d\x3b\x27\x49\xb8\x4b\x90\x1a\x6f\xcf\xe0\x4a\x58\xc7\x16\xed\x1e\xaf\x93\xcd\xd0\xea\x8f\xad\x5f\x2d\x76\x03\xbf\x8d\x81\x5f\xdf\x00\xe2\x10\xcb\xfb\x66\x8b\x1a\x5d\xeb\xe4\xfd\x73\xd5\x4c\xfc\x7d\xd2\x5c\x8d\xd7\xc9\x7b\x7a\x2b\x24\xbd\x70\xa7\x00\x5c\xa0\x9a\x11\xb6\x45\xcc\x71\xa9\x68\x93\x2c\x19\xda\x81\xc3\xe1\x30\x34\xda\x3b\x21\x3d\x1a\x9d\x85\x42\x20\x36\xe0\x9d\x6b\xdb\xc8\x44\x89\x6e\xdb\x6b\x0f\x4a\x91\xbd\x60\x63\x16\xda\x66\xbb\xd6\xd7\x06\x7a\x59\xb8\x4c\x71\xd1\x52\x42\xb8\xd3\xee\xeb\xcc\xd4\xac\x80\xea\x46\x68\x73\xe0\x61\x80\xb7\x85\xc9\x3a\xc9\x8a\x80\x2a\x32\xf8\x21\x22\x5a\x63\xeb\xa8\x6b\x1b\x86\x8f\x56\xdd\x6d\xe4\x6e\x13\x7b\x72\x55\x4c\x1d\x1d\x00\xef\x33\x61\xc1\xfa\xd9\x38\xab\x5f\xb2\x24\xbd\x0e\x77\xd5\xb6\xd0\xce\xb8\x03\xf4\x1f\x53\x07\x10\xb6\x25\x0a\x2e\x32\x55\x7b\x40\x5d\x09\x7d\x36\x0c\xc7\x60\x32\x31\xd4\x2a\x24\xdb\x82\xee\x58\x5e\xef\xd0\x57\x49\x28\x43\x39\xbe\x94\x34\x88\xf6\x1b\x67\xde\x25\x4f\xa3\x51\x1b\x25\xe9\xdb\xa4\x58\xb2\x5b\x95\x3b\x39\xd1\x41\x4a\xdc\x5c\x11\x0e\x6f\x5b\x8c\xcb\x62\xc9\x88\x10\x26\xcd\xd2\x6f\xd8\xb2\x5c\x33\x9c\xa4\xd6\x67\xa5\xbf\x1f\x83\x3d\x08\xd0\x77\x88\x09\xed\x88\x0f\x6c\x41\xeb\x2f\xf7\x37\xe1\xc3\x96\x36\xba\xf0\x67\xa8\x18\xae\xda\x72\x83\x2a\xc9\x1a\x3b\xe2\x16\x7d\xfd\xad\xb6\x0c\xda\x5a\x53\xc4\xab\xea\x61\x68\x3d\x10\x1a\x62\x22\xe2\xd4\xc1\x46\xa7\x21\x09\x5e\x95\xd5\x1e\xdb\x94\x4e\x2c\x3a\xa3\xa6\x25\xfc\xc4\x79\xc9\x8b\x8a\xe5\xab\xc8\xe9\x67\xcc\x87\x12\x4e\x9b\x33\x80\x5f\xe3\x0a\xab\x98\xca\xb8\x94\x66\xd9\x28\x10\x0a\x53\x81\x0c\x47\x6b\x9f\xbc\x1d\xdb\xda\x34\xe1\x91\x63\xca\xc8\xc6\x6d\xc3\x96\x97\x05\x2a\x0e\xd0\x64\x48\x21\x44\xcf\xa5\xb3\x6d\x23\x6b\x46\xf2\x94\xe4\x74\xbc\x2c\x8b\xba\xa9\xb6\x9c\x90\x45\x01\x05\xa1\xef\x0f\x9e\x29\x8a\x2e\xab\x64\x73\x85\x51\x9c\x1f\x7e\x1b\x29\x41\x5a\xac\xce\x34\x82\xd0\x15\xbc\x2b\xf0\xc4\x41\x56\x18\x1d\x09\x77\xe4\x2b\xa6\x39\xc2\xc3\x24\x34\x33\x4e\xd2\xf4\x3c\xbd\x64\xf5\x90\x40\x8c\xed\x46\xc6\xfa\xb7\x91\x2c\xbc\xf6\xd1\x24\xf4\xe1\xd6\x62\xe5\x4d\xb9\xa9\xcb\x8a\x04\x87\x78\xcb\xaa\x46\xba\x1c\xa5\xdd\xc3\xf4\x31\x88\xc3\xa7\x24\x83\x6c\x68\x35\x0f\x7c\xb1\x22\x93\x56\x39\x08\x5b\xb3\x66\xbb\xb1\xee\x68\x43\xe5\xa6\x80\x93\x70\xc9\x77\x35\x49\x05\x27\x27\x98\xfa\xc3\x99\x81\x8c\x42\xc3\xea\x06\x94\x59\xf0\x53\xb3\xa5\x9b\xaa\x5c\xb2\xba\x7e\x98\xe7\x8a\x43\xfb\xe6\xc5\x8b\xd7\xe7\x8f\xd1\xba\x8b\x7a\x42\x10\x46\x58\x91\xaf\x37\x0e\xc1\x23\xfc\x2a\x91\xbe\xd3\x64\xce\x61\x6b\xee\x97\x00\x91\xd4\x20\x8c\xb4\x5c\xb0\x6f\xff\xd9\x32\x44\xb9\x13\x6b\x55\xab\xc5\x56\x07\xa4\xe2\x70\xaa\x7f\xe3\x5c\x0f\x69\x47\x69\x37\xf9\xf0\xc9\x1c\xdb\xc3\xbe\x2d\xa1\xe0\x0b\x54\x09\xda\x2b\x48\xb2\xa0\x1d\xe6\x4a\xb6\x62\x07\xff\xf8\xf2\x99\x6e\x72\x5b\xe5\x1f\x45\x9e\x54\x95\x50\x13\x27\x96\x1c\xf7\xbe\xb3\x9c\xf9\xbc\x34\xbe\xde\x65\x79\xfe\xd8\xb5\x5e\x34\x10\x47\x04\x2b\x3f\xb0\x37\x8a\x4a\x7a\x0a\x68\x8d\x52\xba\x29\x89\x6f\x1e\xc3\xe5\x01\xa1\x50\x63\xba\xe9\x94\xdb\x83\x36\x9c\x52\x7e\x94\x1a\x22\x50\xea\x52\x4f\x76\x1d\xed\x91\x44\x7d\xae\xc2\xc5\x67\xc9\x6b\xa1\xad\xd6\xd4\xd6\xe7\xf8\xb8\x0f\x32\x8e\x65\xf0\x74\x4a\xee\xc4\xce\xeb\xea\xa2\x50\x63\x76\x0b\xb6\xe2\x48\x35\x48\xa4\x4d\x0d\xe7\x94\x82\x76\x33\xf8\x9a\x48\xf5\x79\x59\x9a\xd2\x5b\xb1\x7a\x3d\xd2\x80\xfd\x42\x0a\xc2\x2e\xd4\xac\x89\x6b\xd6\x4c\x1d\x33\xa2\x2a\x96\x3f\x9e\x88\xe3\x01\x7b\x45\x20\x95\xb1\xad\x6b\x84\x44\x32\x49\x01\xe9\xa3\xc5\x07\x2f\xf3\xa6\x7e\x7b\x18\x5f\x11\x9a\x4f\x8a\x59\x6e\x38\x82\x65\xb9\xde\x94\x05\xa7\x6c\xd1\x4e\xd9\x08\x4e\x50\x1b\x31\xec\x29\xf7\x36\x63\xef\x6e\x59\xa4\x61\xeb\x4d\x9e\x34\x2c\x88\x76\x44\x7b\xfb\x80\x82\x57\x2c\xdf\x70\x02\xb9\xa7\x98\x66\xee\x08\x77\x26\x38\x3c\xb5\x44\x87\x57\x42\x9e\xf7\x17\x49\x9d\x2d\x83\x48\xcb\x2f\x3f\xa8\x16\x11\xdb\x2f\xb2\x85\xa7\x1f\x54\x19\xbc\x64\x05\x91\x25\x57\x3d\xbc\x2a\x20\x79\x72\x60\xc0\xfa\x1e\x5e\xd6\x7f\xb6\x45\xd6\x09\x7c\x00\xdf\x2d\x58\x6e\xdf\x85\xc3\x82\x0c\xe8\x7b\xa7\xb3\xbc\xfe\xa6\xe4\x43\xd6\x24\xd9\x36\x65\x10\x51\x89\xea\x9e\x02\x57\x49\x7d\x15\x44\x54\xbe\xbb\xaf\x00\x4a\x77\x83\xc8\x12\xf3\xee\x29\x56\x94\x05\x0b\x22\x2a\xbd\xed\x98\x0b\xe3\xc5\x12\xdd\xb4\x06\x51\xe7\x2d\xa7\xab\xe0\xc1\x73\x68\xaf\x82\x6a\xeb\xb0\x46\xc9\x0b\x22\xe7\x54\x7e\x7c\xf9\x2c\x88\x82\x13\x99\x7a\x52\xb3\x06\x58\x15\x9e\x77\xb2\xad\xf2\xae\x1b\x9a\xa0\x64\x27\xab\xb2\x3a\x01\x7b\xa2\x4b\x5e\x0a\xf1\xc1\x43\xf0\x2e\x2e\xe4\xcf\x8b\x8b\x7d\xb8\x6c\xcd\x10\x24\x62\x1b\x27\x09\x8a\xb4\x25\xde\x91\x27\xf2\xbe\x0e\x75\x54\x9e\x26\x4d\x62\xd7\xb8\xf4\x49\xd0\x69\xba\xaf\x23\xc8\x99\x79\x85\xef\xe1\xce\x9b\x1c\x57\xec\xd7\x6d\x56\xb1\xef\x4b\xbc\xad\xe1\x5b\x2e\x08\x7d\x6b\x58\x05\xb4\x4a\xd7\x8f\xf5\x68\xb3\x75\x21\x9a\x0d\x42\xf2\x0e\xd0\x76\x11\xa3\xee\x89\xf3\x77\xd5\x95\xae\xb5\x24\x5e\xba\xff\x4c\xe5\x7c\x8d\xfa\x02\x6b\x00\xbd\x28\x61\xb8\x6b\xa9\xa2\x32\x30\x26\x71\x27\xf4\xcd\x8d\x95\xf5\x92\x64\xf9\xde\xf6\x2a\x5b\x9b\x18\x1a\x90\x26\x5b\x3b\x55\xdb\x44\xfd\xf2\x8c\xc7\xf5\x9e\xa6\x70\xd6\x75\xee\x20\x52\x34\x37\xd0\xed\x83\x4d\xd5\x82\x6c\xec\x63\x28\xb1\x31\x61\xdb\xa9\xac\xd0\xe0\x17\xf6\xfb\x69\xf3\xf2\x11\x2e\xb8\xae\x5f\xf3\x3b\x9e\x1e\x67\xab\xa1\xcb\xfb\xb8\x6d\x79\x9c\xd4\x98\x26\x73\xd2\xe0\x49\x37\x4b\x77\xbd\x62\xca\x2c\x07\x78\x5d\xd6\x39\x84\xf7\x3e\x44\x35\x08\xb4\x71\x66\x7e\x25\xec\x8f\x75\xd8\xdb\xa1\x3f\xdc\xe5\xac\xf7\x6d\x56\x67\x8d\xb8\xed\x47\xab\x22\x82\x6f\x96\x46\x9b\xa4\xb9\x22\x36\xf1\xe2\xda\x2f\x85\xef\x4d\xb6\x64\xb5\x4c\xcc\x8a\x65\xb9\xce\x8a\x4b\x64\x8d\xec\x54\xb8\x8f\x47\x39\x2b\x70\x33\xc9\x40\x49\x19\x90\x21\xd1\x5a\xb8\x13\x3f\xe2\x1d\x68\xc0\x1e\x61\xeb\xfc\xff\x78\x06\xa6\x3d\x22\xdf\xb6\x3f\x29\xa8\xe1\x7b\xcb\xe1\x51\xa5\x56\xd8\xe6\x63\x21\x94\xa2\xc0\xa5\x7f\x4a\x7c\xfc\xb3\x02\xd5\x39\xf5\x0c\xf0\x41\x01\x70\x3d\xcb\xe6\x73\x67\x36\xda\x95\x14\x8b\xe0\xf7\x14\xdb\x2b\x37\x43\x62\xaa\xf8\xf8\xe1\xb7\x52\xb4\x81\xd3\x21\x5d\x1b\xab\x59\xdb\xb5\xed\xe3\x87\xdf\x92\x90\xad\x49\x9a\xc6\xc6\xbd\x04\xdf\xb6\x0a\xb2\x89\x94\x34\x53\xd6\xd2\x3b\x11\x03\x03\x14\x87\x8f\x9e\x54\xa0\xf7\xf1\x0e\x23\x91\xa0\xe8\x08\x57\x09\xef\x85\x64\xc5\x26\xb3\x79\xc4\xdb\xd8\x36\x97\x25\x48\x03\xf8\xc9\x87\x6a\x93\x70\x5d\x6e\xa7\x9e\x46\xc4\xda\xeb\xb8\x2a\x35\x5d\x0e\xe9\x21\x05\x60\xda\xa9\x39\x09\xeb\x64\x13\x5b\x6f\x3c\xc4\x22\x2b\x49\x53\xac\x04\x05\x4f\xc2\x2e\x6b\xea\xcc\xe3\x79\x7a\x49\xa9\x46\x55\xae\xc1\xc0\xaf\x29\xb5\x29\xa2\x4c\xbc\xb9\x39\xc2\xe4\x9b\x1b\x99\xc4\x6f\xab\x25\xa5\x5d\xe8\xcb\xaf\x2a\xd7\xb1\xea\x85\x84\x0d\xa3\xa6\xd4\xa9\xa2\x18\x08\xf3\x4b\x85\xfa\xf6\x22\xa9\xb2\xda\x35\xbf\x44\x9b\xe5\x15\x5b\xbe\x79\x74\xbd\xcc\x99\x81\x62\xbc\xc7\x64\xeb\x91\x0e\x7a\x95\xc2\x83\x25\xaf\x61\x90\xb2\x46\xd8\x47\x06\x23\x84\x1f\x05\x83\xaf\x4e\x06\xc1\x08\x30\x56\xbc\x80\xf1\x84\x30\x6c\x5b\xc4\x7f\xde\xb7\x48\xf7\x22\x9c\xf2\x84\x31\xc1\x00\xdc\x3f\x64\x74\x33\x39\x9c\x79\xcc\x7f\xd1\xac\xe7\x7a\xe9\xd5\x98\xed\xd5\x12\x12\x47\xb2\x5a\xe2\x39\x4f\x93\x02\x4d\x69\x0c\x5c\x13\x74\x46\x23\x99\x87\xba\x44\x02\x13\x7d\xfb\x1d\x37\x81\xbb\xe1\x91\x22\xe1\x6c\x93\x81\x53\x0a\x61\xd0\xc8\xb0\x6d\x3b\x50\xb0\xf6\xa1\x72\x44\x23\xa7\x08\xc1\x2a\xee\x94\x75\xb2\xa1\x28\xcf\xfb\x21\x83\x93\x68\x2b\x71\x11\x8f\x45\x3b\xff\xd7\x5b\x83\x37\x89\x15\x88\x62\x78\xd4\xe9\xb1\x63\xb2\x11\x8f\xa0\xab\x2c\x06\x25\xe0\xf4\x46\xf4\x53\xf7\x00\x43\xbe\x74\x76\x00\x43\xbf\x14\xfa\xa8\xd5\xed\x43\x56\x77\xf3\x90\x3d\xcb\xe6\xa2\x70\x8f\x99\xe0\xe3\x87\xdf\x1e\x72\xbe\x6a\x56\xfb\x63\x4c\xa6\xf2\xf2\xf2\xd2\xa3\x05\x2a\xda\x10\x93\xd0\x91\x2b\x6f\xe8\x87\xaa\xdc\x5e\x11\xdd\x80\xdf\x87\x42\xe4\x27\x55\xf0\x7b\x06\x53\xbb\xcf\x68\x10\xe4\x89\xd9\xea\xda\x51\xf3\x93\x19\x42\xdf\x6d\x93\x35\xc8\x2f\x3a\x70\x2a\x6b\x8a\xb6\x2b\xcb\x64\xcd\xbc\x90\x3a\x4b\x0f\x10\xa5\x2b\xbf\x99\xfa\x60\x9f\xb6\x94\x47\x0f\x4d\x69\x0e\x92\xbe\x48\x4d\x1b\x7a\x5d\x80\xc8\x62\x7d\x7e\x96\x1d\x1b\x07\x69\x50\xbf\x4c\xf2\x7c\xd0\x94\x83\x7f\xf6\x71\xcd\xff\x1c\x0f\x7e\xc8\x59\x52\x33\xb0\x87\xa8\xb2\x14\xcd\x21\xee\x2a\xd0\xbb\x03\x54\x80\x1a\x64\xc5\xa0\xde\x2e\x60\x69\xc0\x4e\xc2\xb4\xa2\xfc\x27\x6f\x69\x53\x81\xc0\x67\xb0\x4a\xf2\x1c\xfc\x5e\x5d\x55\xe5\xf6\xf2\x8a\x67\x71\x82\x80\x56\x2e\xe3\xa0\xdf\x41\xf7\x2d\xc6\x23\x2f\x45\x9b\xa4\xaa\x85\x6f\xc6\xae\xf1\x08\xd0\x4f\x33\x1a\x68\x5f\x38\x5a\x10\xe3\x21\x5d\xfa\x80\x11\x7d\x03\xce\x5d\x6e\x31\x2e\x2c\xf0\x69\x46\xe7\x5c\x1a\x3f\x72\xd5\x7a\x2e\xa1\x5d\xa3\x74\x8a\x7c\x9a\x91\x1e\xea\xa1\xfc\x16\x83\xf5\x5e\x8a\x07\x7b\x07\x4c\x8b\x7d\xd2\x1d\xf8\xa2\x31\x9e\x40\x3f\x0e\x6d\xa1\xb2\x5b\x60\x2d\xc0\x7f\x9a\xe1\x5d\xe4\xe5\xe5\x33\xdb\x5b\x7c\xb9\x2d\xd2\xe8\x03\x87\xa8\x2b\x14\xf5\x0c\x0e\x18\xa7\x2e\xf4\x49\x46\x69\xda\x33\x79\x2c\xda\x7d\x9a\xea\x1f\x7b\xde\x28\xdf\x57\x1e\xbf\x57\xd1\x7d\xea\xf9\x6a\x76\x8a\x2c\x9f\xf8\xc2\xc8\x62\x3c\xfb\x28\x8e\xf5\x1b\x8f\x78\x08\x66\xf5\x36\x6f\x30\x4e\x27\xca\x80\xb6\x79\xa3\xad\x73\xc7\x41\xf8\x35\xfa\x03\x06\x30\x91\x5d\xb1\x4d\x9e\x2c\xd9\xf0\xde\xcf\xe3\xe1\x38\xbc\x77\xa9\xf9\x29\xad\xba\xb8\x1e\x2f\xaf\x92\xea\x61\x33\x3c\x0b\xc7\x4d\xf9\xe3\x66\xc3\xaa\x47\x49\x8d\x9a\x26\x42\x5e\xa8\x9b\xb9\xe8\x6f\xe6\xe2\x83\x5a\x21\x71\xb6\x46\xc1\x24\x18\x61\xad\x1d\xe2\xaa\xfe\xd0\x15\x15\x41\xba\x58\x3a\x09\xc1\xa3\x87\x04\x2f\x10\x55\x60\x54\x36\x00\xd5\xa5\xc6\x4e\xa6\x8a\x06\x01\xf7\x23\xb2\x7b\xe1\xf2\x05\x41\x76\x64\x02\x78\x2c\xda\xe3\xc6\x47\x39\xbe\x71\xa2\xa6\xac\xb7\x35\xd8\x1b\x0b\x4b\x50\x70\x45\x4f\x1d\xfc\x60\x30\x76\x3e\xaa\x99\xd3\xc9\x39\xac\x89\x8e\x91\xe1\x81\xa0\x74\x07\x84\x4c\x2a\xca\xc5\xce\x1b\x5e\xc3\x21\x56\xbc\x10\x9d\xa8\xb2\x6c\x8c\xd1\xf3\x04\xd0\xb2\x7d\x79\xfe\xea\xc5\xb3\x9f\xce\x5f\x4a\xfd\x25\x4d\x19\x64\x43\x94\xc8\xb4\x4e\x8c\x0d\x0f\xbb\xe0\xba\xa9\xfc\x21\xa9\x9a\xba\xdb\xb5\x9c\x02\x01\xd7\x72\x02\xea\xef\x59\x73\x55\x6e\x9b\xd7\x26\xc0\x99\xd8\x85\x1e\x28\xa2\xd3\x44\xec\x4c\xd5\xed\x05\xd5\x5c\xb4\x94\xdc\xbb\x7f\x8f\x8f\xcd\x3d\x74\x2f\x90\x51\x95\x05\xbe\x36\x28\x67\x97\x43\xb8\x17\x84\xd3\x42\x20\x65\x53\xcf\xe0\x7f\x71\x77\x3c\x39\x9b\x2b\xa5\x65\x68\x10\x90\x57\x73\xf9\x43\x04\xc6\x48\x93\xa7\xd1\x89\x52\xf7\x1d\x07\x61\x38\x85\xbe\x6a\xf5\xa0\x05\x38\x6c\x1a\x1a\x75\xc9\xc5\xd8\x39\x9e\xb1\x60\x56\x27\xe0\x64\xcb\x33\x4f\x93\xae\xb9\x43\x29\x1b\x6f\x19\x1e\xa9\xdc\xad\x37\x51\x5a\xf9\x23\x79\xab\x41\xc7\x5f\xed\x81\x8c\xd5\x81\x9b\x7e\x6a\x22\xaf\xf4\xde\x49\xa8\x2c\x8e\x5c\xa5\x0c\x92\x06\x04\x46\xaa\x88\x67\x88\x94\xc0\xde\xbb\x8c\xf8\xd2\x09\x27\x01\xaa\xcb\xb1\xb5\x41\x46\xc1\x98\x8c\xd4\x22\x26\xbe\x5e\x1e\x11\x1f\xa3\xa4\xde\x51\xec\xab\x04\x67\x4e\xfa\x86\xd2\xd0\xbf\x49\x70\x99\x6d\xcd\xf0\x99\xf9\x79\xb2\x36\x6a\xa1\x1c\x83\x35\xa2\xd8\xfa\xb6\x67\xec\x22\xb0\xc7\x2c\xe4\x7c\x01\x3e\xa8\xbb\x15\x06\x81\x3e\x04\x5e\x8b\xb5\xf2\x77\x05\xbc\xcc\x0a\x08\x9b\xca\x1f\xb6\x98\xda\x9e\xe0\xf5\xf9\xf7\x3f\x3c\x7b\xf8\xfa\xfc\xd5\x8c\xd6\x38\x57\xf3\xd5\x0b\xd5\x1a\xbd\xd0\x57\xed\x21\x4d\xff\xcd\x1a\x53\xb3\xf3\x53\xc6\xde\x75\x71\xae\x59\x3d\xb6\x96\x93\x02\x50\x4d\xdb\xee\xe3\x40\xb6\xa3\x95\x26\xfe\x1d\xad\x41\x2d\xff\x8e\x86\xbe\xe7\x9b\xae\x1b\xb3\x60\xfb\x21\xfd\xed\xda\xcd\xd2\xc9\x1e\x9c\x1d\x16\x1d\x88\x54\x79\x1a\x1b\xce\xf1\x98\xa9\x7a\xf3\x57\xd0\xdc\xf1\x77\xe7\x90\x61\xdd\xdc\xd8\x26\x37\xa8\x0b\x04\x07\x4c\xcf\xae\x98\x1f\x72\x13\x3a\x70\x3e\xbc\x74\x0f\x48\xd6\x6f\x32\x53\x87\x5d\x69\x80\x3d\xbf\x5e\x2f\xca\x3c\xda\x24\x69\x9a\x15\x97\x50\x2b\x87\x0b\x77\x98\x11\x07\xb3\xff\xf7\xff\xf9\xbf\xe7\x01\xb2\xa0\x2a\x6d\x30\x0f\x2c\x16\x48\x71\x1f\xc2\xa9\xc4\x97\xa7\x9c\x5e\x41\xa5\x71\x30\x16\xe5\x65\x82\xb6\xcf\xf9\xf2\xf4\xa4\xbb\x12\x72\x64\xb7\x28\x26\x1c\x67\xc5\xaa\x1c\xaa\x3e\x3b\x05\xe5\x38\x50\xf9\xde\x95\x1e\x78\x8a\x84\xce\xdd\x68\x8f\x57\x2f\x47\xea\xec\xa8\x3f\xf4\xca\x9a\x5d\x65\x89\x34\x69\x12\xa5\x21\xd1\x0d\xd6\xa5\x53\xf1\xe1\xa2\xe1\x0f\x15\xe7\x3e\x4e\x9a\x44\x2a\x84\x58\x4d\xf8\xcc\x85\x5d\x2d\x92\x1e\x61\xaf\x70\xac\x46\x5a\x20\xbf\x45\xae\xbf\x52\x6f\xea\xfe\xc5\xea\x9c\xd7\xfd\x0f\x06\x7e\x47\x12\x07\x3d\x0a\x74\x7b\xda\x70\x5e\x0d\xfe\x1d\x2f\x00\x1f\x2d\xe1\x07\xbf\xfc\x2b\x47\xc8\x8f\xc9\x28\x71\x4f\xea\x2b\x56\xd9\x02\xf7\xcf\x2f\x2e\xc6\x2a\xa7\x5b\xd2\xff\xb9\x2d\xe9\xf7\x8b\xda\xbb\x0c\x93\x0f\x13\xdf\xfb\xd1\xca\x27\x03\xb1\x4c\x74\x4d\x55\xf2\x65\x52\x3c\x4a\x9a\x24\x2f\x2f\xcf\x8b\xa6\xca\x58\x8d\x02\x57\x33\xcc\x94\x7a\x4c\xd3\x7e\xf3\xd1\x19\xbf\xc9\x89\x53\x3f\x9e\x46\x28\xf4\x68\x79\x40\x13\xc6\xfd\xa8\x16\x16\xd7\x0f\x87\xfa\xde\xf3\xfc\xe1\xf7\xe7\xaf\x7e\x78\xf8\xe8\xfc\x15\x5e\x15\x35\x4c\x18\x69\x9b\x3c\xb9\xbe\xaf\xb6\xab\x55\xf6\xfe\x25\xbb\x64\xef\x63\x74\xbb\x74\x79\xfe\x7e\x33\x34\xef\x2a\xa3\xe0\x33\x71\x69\xc3\x56\xc7\xab\xb2\x3a\x77\xac\x36\x3d\x4a\x58\x47\x31\x36\xae\x23\xeb\xbc\x61\xd7\x83\xac\x18\x98\xf0\x47\x5a\xd9\xca\xeb\x31\x95\x2f\x4d\x56\x08\x77\xa9\x66\xa7\xd1\xc7\x30\x82\x41\xfd\xa6\x5e\x17\x38\x6d\x95\xd7\xd6\x17\xab\x21\x64\x87\x7c\x3d\x60\x84\x41\xb8\x83\x29\x12\x8e\xda\x24\xce\xf2\xfa\x14\xbb\x6c\x35\x18\x05\x41\x08\x6e\x9f\xf8\x09\x43\x44\x3b\x75\xdb\xef\x5d\xe8\x43\xa8\x98\x79\x88\x7c\xcc\x5b\xa7\xe3\x91\xe7\x53\x11\x36\x7f\xf1\x26\x7b\xcb\x2e\x84\x22\xf2\xc1\x6e\x56\x7f\x0f\xaf\xa4\xff\x56\xb7\x91\xb6\xf7\x0f\xcf\x93\xa9\x9f\xe0\x7e\xe1\x10\x5c\x3f\x29\xf5\xd0\xc7\x2e\x52\xea\x79\xe0\x84\x75\x7b\xe8\x38\x8f\x7c\xd8\xeb\xa6\xf5\xcf\x07\x45\xc3\xf7\xd1\x63\xdb\x1f\x80\xc7\x56\xbf\x62\x20\x74\x47\x69\x4b\x1d\x63\x07\x87\xc2\x2d\x18\xa1\xe5\x5e\x45\xda\x89\xb2\x71\x89\x92\xa6\xa9\xb2\xc5\xb6\x61\xcf\xb2\x75\xd6\x4c\x3e\x8f\xcc\x8a\x27\xb2\xe2\xe8\x92\x35\x4f\xb2\xbc\xb1\x2c\x0f\x05\x15\xd0\xcd\xbf\x4b\x9a\xe5\x15\xdc\xaf\x38\x05\xb7\xa2\x9d\xd6\x0f\xd3\x94\xa5\x48\x9a\x7f\xdc\xa4\x09\xea\xc7\x25\xd5\x60\xad\x0a\xa0\x94\xe7\x92\x35\xba\x0e\x4a\xbc\xb1\xec\xeb\xf2\x15\x2b\xd2\xa8\x63\x0e\xa6\x04\x26\xd6\x35\x83\x2e\x8a\xe7\x44\x41\xb2\x09\x3a\x2e\xf0\x13\xd6\xf4\x5d\x95\x6c\x36\x2c\x8d\x79\xc3\x63\xfe\xa1\xba\x83\x74\x14\xfa\x31\x96\xca\x5f\xb4\x1b\x48\x4f\xa1\x5c\xb9\xa8\x59\x25\x6e\x9b\x56\x51\x35\x7c\x45\x48\x45\x8b\xad\xe8\x3e\xcc\xd4\x90\x8c\x24\x14\xba\xb6\xd0\x56\x6c\x2c\x81\xd1\xbc\x73\x3e\xad\x8a\x70\xb7\x2a\xc0\xbf\x3f\xf4\xca\x82\x47\x07\xe0\x88\x80\x43\x91\x17\xb6\x3e\x24\x83\x91\x59\x80\x5a\x89\x14\xbe\xdb\xe8\x82\xcf\xc9\xeb\x12\x54\x80\x3b\x58\x84\x72\x35\x90\x9c\x81\x56\xb7\xe1\x09\x5e\x17\x92\xca\x0a\x1f\x56\x72\x82\x91\x60\x8d\x97\x05\x81\x74\x2f\xd9\xb2\xac\x52\x3b\xbe\x6e\x85\xa9\x88\x78\xe2\x43\xcc\xbd\xfc\x7c\x09\x33\x90\x5a\xa6\xfb\x5d\xd8\x25\x4b\x29\x44\x15\xed\xe2\x18\x65\x29\xb1\x58\x3c\x47\xb4\xa6\x97\x6c\x8b\x09\x58\x8e\xaf\x1f\xed\xd4\x70\x66\x64\xcf\x85\x77\x12\x01\x24\x90\x5a\x7c\x99\x18\x5d\xa9\xfa\xfa\xd1\x11\x2b\x16\xe0\x91\xd1\x47\x8d\x8d\x0a\xef\x0d\x68\xe9\xf5\x82\xaf\x11\x98\xb1\xa4\x8f\xae\x92\x82\xea\x25\xc2\x41\x17\x65\xe9\x7b\xe1\x58\x3e\x7d\x54\x6e\x8b\x26\x4a\xf8\xf4\xc3\x4f\x1a\x68\x30\x4b\xdf\x4f\xb3\xaf\xb2\xf4\xfd\x48\xe7\x0b\x45\x36\x35\xe4\x18\x6a\x1c\xe3\x29\xfb\xb0\x19\x66\xa1\x7f\x7f\x9a\xfd\xdc\xbb\x27\xf7\x4d\x82\x46\x9a\xe1\x4c\xb4\x35\x87\x57\x12\x3a\x2c\xb5\x76\x02\x83\x86\xf6\xb8\xc3\x16\x57\x4f\x34\x5a\xc5\xbb\x54\x4e\xd9\xc4\x9e\x43\x30\xd2\x14\x79\xc2\x97\x50\x2b\x3b\x32\x4e\xd2\x14\xe4\x0b\x2f\x44\x45\xe8\xdf\x41\x56\xab\x86\xfb\x81\x64\x41\xb6\x82\x5d\xef\x6d\xe8\x16\x14\xc4\x98\x44\x03\x7f\xbd\x47\xd8\x41\xd4\xa5\xc3\x90\x75\xef\xf9\xd8\x37\xfc\x36\x42\xa5\x52\xe2\x45\x15\x38\xe5\x9d\x19\x74\x60\x59\xe6\xdb\x75\x47\x04\x71\xcf\x39\x68\xd3\x7e\x8b\x2c\xb9\x47\x20\x25\x3c\x3d\x04\x06\xf1\xa9\xb0\xf7\x9d\x60\xe6\x15\x11\xf1\x9c\x5b\x50\x5c\xd2\x13\x1f\x46\x52\xe4\x21\x3e\x0c\x5e\x14\x4b\xc7\x8f\x81\xec\x40\xd8\xde\x0e\x6d\xb1\xb0\xc2\xa6\xce\x13\xed\x50\x7c\x6c\x5d\x0c\xa1\x63\xb6\x26\xbd\x50\x52\x42\x01\xbe\x87\x96\xf3\xff\x05\xab\xa1\x6f\x8f\x3a\x91\x28\x9b\xe3\x5d\x97\x3c\xa9\x44\x4b\xbe\xff\xc1\xb1\xb3\x68\x43\xbb\xaa\x95\xa8\x34\x11\xe7\x1d\xc5\x2b\xd1\x32\x92\x3b\x78\x93\x6b\xe9\x4d\x0b\x1b\x6e\x23\x83\x3f\xb2\xcd\xd9\x01\x13\x08\xcb\xe4\x65\x01\xd5\x90\x87\x1d\xb6\x56\xa1\x11\x02\x95\x66\x8d\x3b\x24\x02\x43\xf9\x98\x25\x90\x31\xee\x2a\xdd\x53\x54\x78\xba\xd1\x9c\x20\xbf\xd0\x21\x55\xa8\x5f\x14\x8a\xb5\xaf\x87\x61\x8b\x40\x62\xc7\xc1\x47\x68\x1e\x88\xd4\xca\x60\x07\x7b\x7a\x02\xdb\x82\xb2\x28\x08\xa4\xdf\x33\x5b\xc9\x7f\x59\x15\xaf\x80\xf5\xb5\xd9\x47\x7a\x58\x22\x11\x19\x6a\x3e\x32\xd4\x97\x64\xa3\xae\x36\xea\x18\x93\xe3\x04\x59\x8b\x3a\x44\x05\x7d\x92\x0e\xc5\x9f\x68\x54\x3d\x50\x6a\xf1\x9b\xc9\x27\x8e\xe8\x44\x98\x72\x08\x0a\xa9\x2c\x6f\x0c\xa1\x03\x1a\xef\xe9\x62\x22\xc0\xd9\x92\xb3\x8b\x34\xac\x04\xbe\xb9\x63\x8f\xf4\x7e\x0b\x61\x2f\x6a\xe1\xc7\x28\xb8\x17\x8c\x60\x41\x89\x90\x43\xe8\x60\x5b\xb2\x8b\x48\xef\xfb\xbd\x54\x5d\x73\x1a\x13\x87\xef\xd2\x3c\x8b\x24\x0f\x62\x17\x63\xa2\x3c\x41\x7e\x4a\xf2\x2d\x98\xca\x90\x85\xa2\xc5\xc6\x06\x98\x49\x98\x1e\x91\x2c\xc2\xea\x90\xc2\x35\x4b\xaa\xe5\xd5\x77\xec\xfa\x9d\x87\xae\xc9\x64\x7f\x51\x44\x71\x6f\xbb\x4f\x48\x96\xbf\xf0\xb2\xcc\xcb\xca\xed\x6d\x59\x11\x70\x41\xa8\x75\x29\x32\xf5\x74\x64\xee\xd4\x8a\x3d\xdc\x92\x02\x72\x2c\x5d\xc0\x64\xd1\xbc\xc3\x38\xa8\x11\x18\x41\x67\x0b\x60\x2b\x14\x19\x0c\xa5\x0d\x6b\x71\x96\x1e\x8f\x8c\x6d\xdb\xba\x91\x52\x5c\x71\x98\xe1\xba\x27\x9a\xcd\xa9\x27\x21\x2a\x8d\x71\xaa\xf2\xfa\x25\xf6\x8b\xd3\x7e\x13\xf3\xbc\x3e\x21\x90\xbe\xff\x21\xa7\x90\xd4\x35\xab\x1a\x7e\x0f\x54\xf2\x88\x40\x7a\x25\x11\x79\xc6\x4c\xd9\xe5\x9f\x9c\x3f\x7c\xfd\xe3\xcb\xf3\x57\xfe\x1a\x54\xee\x2e\xab\xcf\x8b\x64\x91\xb3\x74\x62\x4e\x3c\x32\x42\xe0\x67\x00\xdd\xd3\x0a\x31\x0c\x5a\xae\xde\xdc\xd0\x07\x51\x08\x51\xa5\x6c\x9a\x9e\xf0\x0a\x9e\x10\x37\x97\x22\x72\x98\xc4\x0c\xf6\x6e\xf0\x04\x19\xad\x9f\x32\xf6\x2e\x7a\x24\xfd\x47\x08\x97\xa8\x4a\x51\x1e\x7b\x9a\xad\x61\x52\x8f\x8f\x8d\xcf\xb1\x86\x43\xdf\x71\xc2\x1f\x89\x4e\x06\x8a\xa9\x3f\x31\x70\x6d\xb9\x1a\x08\xa3\x66\x2b\xdc\x22\x69\x56\x00\x0c\x03\x62\x9b\x81\xea\x2d\xb6\x26\x3f\xf6\x88\x24\xd0\xf9\x1a\xea\x74\xe1\x85\xc8\x79\x83\xf6\x1b\xbe\x41\xdc\xbc\x8c\xbd\x0b\x77\xfc\x7f\xbf\x11\x36\xba\x11\xd7\xff\x07\xe1\x2c\xe0\xd0\x01\x18\x4d\x1e\xa9\x29\x0d\x77\xea\xe7\xfe\x8a\xb4\x23\x0f\xc3\x72\x3b\x5b\x0d\x79\xd5\xf2\xe8\xc2\x5e\x0a\x3c\x22\x43\x92\x66\xdd\xf8\x60\x8f\x23\xb2\x61\xd6\xc9\x1b\xd0\xce\x10\x30\xa2\x2a\x64\x6b\xba\xea\xfb\xa6\xdc\x16\x29\x16\x10\x2e\xe4\x40\x74\x67\x78\x59\xed\x6f\x47\x4f\x33\x4f\x7b\x64\xde\x5f\x1c\xbf\x3b\x54\xd7\xc4\xd5\x1a\x18\xf3\xa9\xc2\x70\x67\xc0\x3e\xaa\x1a\x23\xed\x92\xa7\x63\xb5\x3b\xd1\x43\xe6\xbb\x68\xf2\x48\x10\x25\x63\xa7\x73\xc4\xf6\xc0\xb8\x2b\x22\x73\xc8\x4e\xec\xea\x81\x0b\x1a\xb6\xfb\xab\x1b\x4b\xa2\x19\x77\xc1\x3a\x23\xfa\x5f\xc9\xdb\xe4\x15\xbc\xd0\x1f\x32\x36\x17\xda\x1d\xa5\x0b\x73\xc0\x78\xfb\x0a\xb9\xcb\xd0\x07\xdd\x3d\x07\x6e\x29\x67\x4a\x7b\x2b\xd6\x2a\x98\x81\x4d\x68\x82\xdb\x75\x51\x9f\x8f\xdf\x6c\x57\x2b\x73\xca\x85\xf6\xdf\xdd\xbb\x81\x8b\xb7\xbd\x95\x26\x1b\x7e\x90\xbd\x2e\xed\x2a\x51\x6a\xa9\x2a\x4e\x93\x26\x19\x2f\x00\x06\xf9\xcc\x60\x84\x10\xa3\x20\x9c\x06\x78\x0c\x3c\x7e\xf1\xfa\xe2\xd9\x8b\x17\xdf\xfd\xf8\x03\x06\x08\x8d\xef\x89\x1d\xf1\xf3\x78\x38\xfe\xc3\x83\xf0\xe7\xf0\x5e\xf4\xcd\xcb\x87\x8f\xbe\x3b\x7f\x7d\xf1\xea\xf5\xcb\xa7\xcf\xbf\xed\x00\x9f\xdd\x05\xf8\xbb\xf7\xa2\xa7\xcf\x7f\x7a\xf1\xe8\xe1\xeb\xa7\x2f\x9e\x5f\xbc\xfa\xe1\xd9\xd3\xd7\xaf\x79\x21\x01\x3d\x1c\xff\x61\x91\x97\xcb\x37\x48\x1d\xbe\xc7\x90\x48\x3f\xc3\xa6\xfe\x79\x38\xfe\x43\x38\xac\x9b\x64\xf9\x66\x76\x7a\xf2\xdf\xf3\x51\x38\x8c\xc6\x7f\x08\xef\x1d\x32\x35\x38\xac\x6c\x75\xfd\x2c\xa9\x9b\x6f\x9c\x06\x9e\x16\x6f\xa5\x7f\x6d\x3d\x57\xe5\xb6\x92\x9e\xa8\x70\x0c\x04\x0a\x33\x67\xf8\x47\x2b\xc2\x46\x08\x08\x1a\x47\x43\x7b\xe6\xc6\xec\x3d\x5b\x0e\xed\xaa\xc2\x9b\x9b\x9e\xe9\xeb\x28\x13\xce\xce\xe6\xd1\x1a\x1c\xf1\xd4\x71\xf7\x74\x76\x94\x9e\x76\xf4\x3e\x16\x35\xce\xce\xe6\xa3\xe0\x6e\x30\xd2\x83\x81\x4f\x99\xfb\xf9\x1c\x31\x43\xcd\xa9\x3b\x9f\x07\xec\xb7\xc3\x97\x04\xc5\x3e\x55\x76\x99\x15\x49\x0e\x80\xc0\x08\x1f\xd2\x86\xde\x11\x0b\x55\xee\x76\x3b\x49\x97\xa3\x1b\xd3\xed\x8d\x3f\x9c\xce\xb4\x67\x8e\x84\x37\x37\xc4\xb2\xd6\x18\xe4\xc3\xf5\x22\xbb\xdc\x96\xdb\xfa\x43\x47\x9b\xb8\x15\xdc\x92\x80\x78\x7a\xe0\x19\xbf\xa7\xa3\x1f\x3d\x11\x07\x1c\x6d\xeb\x2d\xa7\x02\x57\xd4\x71\xbc\x48\x41\x0e\x4d\x7d\x8e\x37\x49\x95\xac\xa5\xa6\xfa\xcd\x8d\x4a\xbf\x4a\xea\x2b\xa1\x7c\x90\xa5\xa0\x43\x41\x5a\x7c\xf8\xea\xf5\xf8\x69\xfa\xbc\x4c\xd9\x70\xb6\xdb\x24\x55\x33\x09\x2e\x9a\x2a\x4b\x2e\xd9\xf7\xa2\x7c\xd0\xce\xf1\xd6\xaf\x2a\x64\xf5\x32\xd9\xf0\x8b\x92\xd1\x44\x6c\x7c\xdd\xdc\x78\x1a\xfa\x6b\x52\x5f\x61\x53\xf3\x70\x6a\x80\x8f\x37\x49\x56\x09\x01\xc0\x2c\xd8\x16\xa2\x89\x20\xf2\xd4\x82\xd2\x04\xa8\x27\x68\xaa\x2d\x0b\xc2\x79\xd8\xaa\x69\xf2\x14\x90\x23\xc1\xa6\xb3\x74\x2e\xe3\xca\xcf\x54\x1f\xb2\x74\x1e\x46\x46\x8f\x22\x77\xbc\xf2\x39\xeb\xb0\x05\x23\xcc\x99\x5a\x31\x77\xc5\x37\xfc\xee\x09\x75\xd8\x27\x57\x94\xd4\x78\xd3\xc1\xa5\x4b\xea\x26\xa6\xe5\x92\xaa\x66\xf2\x8c\xc3\x0d\x85\x7c\x5f\xbc\x83\xa8\x63\x88\x75\xf5\x64\x87\x22\xe1\x09\x9f\xa8\x68\x5b\x2c\x38\x13\x8b\x1f\xc1\x22\x2b\xd2\x93\xa4\x69\xaa\x00\x13\xa4\x02\x10\x7e\x71\xfe\x12\x7f\x59\xf8\x30\x41\x55\x20\x7e\x9e\x62\x3e\x76\xe2\x07\xc0\x3e\xcc\x9c\xca\xae\xc7\xea\x07\xf1\xd8\xf8\x80\xc3\x4c\x64\x0e\xbe\xdc\x17\x6f\xb3\xaa\x2c\xc0\x59\xe9\x50\xf9\x94\xf0\x31\x97\x92\xcd\x19\x26\x75\xa3\x58\x5d\x71\xa3\xf3\x96\xf4\xb0\x6e\xaa\x0e\xd2\xac\xac\x2b\x22\x8f\xee\x72\xfe\x6d\x6e\x50\x14\x77\x59\xc0\x8e\x95\xbc\xed\x02\xf6\x4e\xed\x6f\x31\x5d\x54\x31\xff\xd5\x86\x2d\xfd\x95\x7c\xf8\xcc\xf1\x9e\x9a\xad\x38\x24\x5d\x66\x0c\x69\x3f\xc2\xa9\xfc\x1a\x67\x35\x3e\x0a\xc5\xa6\x16\x9a\xc8\x6e\xbb\xfc\x20\x59\xcd\xf4\x08\x5a\xb4\x7c\xa5\x23\x28\x54\x97\x2a\xd3\xde\xe8\x67\xba\xbe\x7b\x3c\x9d\xd4\x46\x72\xd8\xfb\xc6\x97\x6c\xa9\x39\x91\x1c\xc1\x5a\xde\xab\xaf\x12\x1a\x0a\xcd\x03\x21\xc2\x5f\xf7\x81\x2c\xcb\x3c\x47\xc7\x6e\x7d\x50\xe8\x18\xb3\x3b\x5f\x90\x93\x3e\x10\x50\x6e\xed\x03\x60\xc9\xf2\xaa\x2f\x5f\x7b\xda\xec\x86\xe1\xc7\x56\x46\xa2\xda\x79\x40\xae\x33\x96\xf7\x76\x34\x2f\x97\xbe\x6c\xe1\x74\xb0\xbe\x07\x9e\x69\x16\xe5\xfb\x5e\xa0\x9a\xe5\x54\xcb\xcc\x07\xd2\xb0\xf7\xcd\x45\x52\xb1\x64\x3f\xd4\xaa\xab\xcf\x26\x98\x52\xff\xee\x06\xf4\xe7\x09\x21\xcb\x85\x88\xe2\xe2\x81\x41\x71\x8c\x4e\xb8\x80\xf5\xbe\xe8\xc2\x0b\x04\xe7\x5b\x66\x5d\x56\x9b\x2b\x05\xf7\x7b\xd4\x93\xfb\x3f\xe1\xd5\xfa\xc3\xab\x91\x84\x2f\x0f\x93\x29\x77\x78\x16\xf1\xa8\x18\xba\x22\x68\x8f\x0e\x7f\x67\x98\xb5\xcf\x7d\x61\xd6\x16\x65\xd9\xd4\x4d\x95\x6c\xf6\x69\x66\x2b\xcb\xf1\x1f\x92\xe6\xca\x09\x1f\x6d\xe4\x9a\x07\x98\x0d\x2a\x33\x44\x80\x99\x37\x8c\xc8\x07\xdd\xb0\xd4\x66\xbe\x78\x52\x77\xe4\x8a\x4e\x39\x0f\x0c\x75\xe6\xc8\xf9\x69\x4f\x19\x95\x47\x61\x91\x89\xe8\x82\xc6\x5c\xa9\x00\x7a\x8e\x0c\xaf\x03\xac\xb3\x00\x52\x6f\xfd\x6f\x99\x1b\x05\xdc\xc8\x45\xb6\xe5\x6d\x92\x6f\x93\x86\xfd\x88\xe7\x46\xc7\x98\xbd\x50\x53\x2d\x99\x10\x37\xa9\x8e\xd2\x1e\x18\x44\x10\xe7\x2a\xd6\x51\x41\x17\xa0\x39\x97\xcd\xd5\x5e\xff\x39\xfc\x18\x76\xa2\xee\xf1\x44\xc8\xb5\x98\x6a\x4f\x67\x38\xb8\x17\xca\xc0\x00\x7f\x39\x23\x57\xf5\xa6\x03\x58\x67\x89\xad\xb4\x2d\xd2\xa7\xab\x2e\x60\x9a\x0b\xf0\x82\x0b\xe8\x2c\x61\xe5\xa3\x62\x58\xd6\x5c\x75\x80\xeb\x2c\x8c\x31\xdf\x55\x6d\x66\xf6\x21\x67\x75\xdd\xd9\x01\x9d\xa9\xe6\xe2\x61\xd3\x54\x3d\xf3\xa1\xb3\x3d\x25\xb4\xd3\xf5\x3d\x65\x35\xa0\xaa\x05\x64\xf4\xac\xf6\x16\x14\x79\x42\x79\x4f\x72\x68\x9e\x5e\x7a\x02\xfd\x91\x57\x06\xfb\x30\x1b\xeb\xbc\x29\xfa\xb7\xeb\x06\x7d\x6b\x82\x6e\x3b\x77\xea\x99\x87\xae\xe7\xa5\x6f\x53\xf1\xd3\x72\xac\xb2\x84\x1f\xac\xc5\xf6\xf2\x92\xf9\x16\x00\xa0\xcd\x7c\x3c\x33\x92\xe5\x15\x3c\x43\x39\xf1\x1f\x65\x0e\x80\x7d\x5b\x95\xdb\x0d\x4b\x79\x9a\x0b\x49\x32\x91\x1e\x25\x4b\x1f\x16\x02\xac\xce\x33\x8e\x01\x1f\xb8\xe7\x94\x11\x1c\xa9\x0f\xda\xa3\xe2\x0e\xcc\xa9\x0f\xd6\xa3\xe3\x9e\x97\x4b\x1f\xa4\x87\xfe\x3c\x12\x1c\xeb\xde\x48\x92\xaf\x80\x6b\x75\x42\x49\x8e\x31\x9d\x80\xbc\xd8\x38\xda\xf3\x04\x10\x73\x4d\xf0\x4b\x3e\xe3\x3d\x05\x20\x1f\x8a\xbc\x66\xef\x9b\x87\x15\x4b\xf6\x86\xaa\xe4\x80\x4f\xf8\x84\xed\x8d\x53\xc9\x21\x5f\x21\x73\xbc\x37\x46\x65\x56\x6c\xb6\x8d\x67\x62\x39\xbf\x34\x26\x99\x02\x19\xde\x37\x9c\x85\xef\x82\x37\xf3\x85\x95\x97\xe0\xb6\xd1\x3e\x76\x6f\x64\xcb\x0b\xcd\x4d\xc1\xd9\xef\xa0\x3e\x67\xd3\xc6\x3e\x28\x5c\x80\x6c\xbd\xc9\x99\xce\xf5\x17\xf7\x41\x61\xeb\x98\xf3\xbd\xe4\xe4\xdd\xe2\x5f\xf2\xd6\x3d\x50\x58\x7c\x5f\xc1\xbe\x22\x7d\xe0\x8e\xf4\x4c\xb3\x7d\xea\x97\x03\xa3\x38\x38\xc5\xb1\xf9\x5e\x69\x29\x17\x66\x73\x6b\x07\xbc\x08\xc7\x3e\x4e\xcd\x2d\xa7\xb9\x36\xca\xa5\x75\xc0\x09\x8e\xcd\xe4\xd0\xba\xea\x94\xbd\xa0\xe7\xbe\x0d\x7b\xc9\x9a\xd8\xe4\xca\x3c\x10\x92\xf7\x23\xbc\x9e\x0d\xe5\xe7\xe3\xfc\x7c\x9b\xb3\x62\x9c\x2b\x02\x2e\xc8\x97\x23\x4f\x47\x7a\x1a\xda\x70\xea\x24\x50\x84\xdf\x86\xa0\x87\x00\xa5\xf9\x9d\xf3\xcc\xb9\x39\xfa\xe1\x40\x92\xd3\x95\x1c\xa6\x36\x94\x79\xb7\x30\xef\x12\x8e\x8a\x86\x55\x58\x19\x19\x9b\x74\xc2\xfa\x16\x50\x17\xde\xfd\xed\xdd\xce\xa2\x80\x97\x9c\xf8\xa8\x87\xd1\x80\xb5\x8f\x7d\xfb\x5d\xc0\x5b\x90\xfd\x30\xb1\xbd\xa3\xc7\x94\x54\x93\xdf\x72\x52\xe4\x49\x26\x7f\x88\x74\x71\x70\x89\x73\x8a\xa6\x89\x93\xca\x38\x98\xac\x7c\x3c\x9a\xac\x93\x48\xf7\x06\xce\x22\xf9\x83\xa4\xe3\xd1\xa3\x7e\x1d\xd2\xff\x6e\xdd\x94\xc0\xb8\xad\x04\x91\xe7\xf2\xe2\x2a\x01\xd8\x75\xb8\x17\x96\x20\xea\xba\xc4\x1c\x50\x5b\x56\xa4\x41\xa4\xaf\x04\x07\x94\x40\xee\x3e\x88\x0c\x36\x7f\x7f\x39\xfb\x99\xc9\x7e\x67\x38\xb4\x1e\x75\xbf\x08\x22\xeb\xaa\xb1\xbf\x2c\xbf\x6c\x04\x91\xbe\x72\xec\x2f\x91\xad\x82\x28\x3b\xb8\x7e\xbc\x7a\xf0\x8e\xe9\x2b\xc8\x61\x6b\x80\x0f\x33\x91\x79\x9f\x38\xac\xe8\x43\x4f\x49\x7d\x13\xd9\x5f\x07\x15\x0e\xdb\xd7\x90\xfd\xa5\xf3\xf2\x32\x88\x14\xbb\xbf\x1f\x5e\xf2\xfa\x41\x64\x72\xfd\xfb\x4b\xa2\xe8\x58\x33\xea\x87\xf4\x6d\xc9\xfb\xb6\x3c\x14\x5e\x09\x96\x0d\x7e\x7e\x7f\x39\x2d\xb4\x36\xef\x0d\xfb\x4b\x0a\x39\x35\xb9\x11\xec\x2f\x83\x62\x56\x7d\x73\x3b\x78\xcb\xa8\x0d\x73\x30\xf2\x73\x46\x38\x88\x08\x3f\x7c\xc8\x5c\x20\x33\xcc\xe7\x82\xb2\xc5\x76\x18\x52\x47\xb5\xc8\x56\xda\xeb\x34\x5e\x3f\xfc\xcd\xc7\x23\xf4\x9e\xfd\x16\x8e\x30\xf6\xca\x46\x3d\xf6\xcb\x9e\x0b\x8b\x7d\xf8\xfb\x8c\x8e\x0d\x73\x4b\x33\x9a\x5c\x44\xa2\xd3\x7b\xe2\xd2\x8b\xd0\xc6\x3a\x90\x3c\x6f\x52\xfa\xa3\x89\x75\xf4\xb4\x09\xaa\xe4\x2b\xd4\x7d\xa2\x40\xd4\x03\xb1\x82\xad\xef\x59\xc0\x2f\xc5\xea\xb3\x54\x37\x7c\x7c\xac\xad\x45\xaf\x92\x7a\x68\x57\x8c\x51\x0b\x9c\x0a\x68\x0c\x69\x1d\x87\x48\xf9\xdc\x09\xf2\xe4\xba\xe4\xd8\xe8\x54\xd7\x1a\x73\x19\x77\x99\xaa\xae\xfa\x9b\xbf\xb9\x21\xca\xab\x96\x2e\xab\x27\x86\x90\xea\x97\xc5\xc7\x85\xd3\x5b\xf4\x44\x2a\x18\xa8\x22\x6d\xaf\xcf\x06\x03\x5b\xfa\xd1\x5e\xbe\x03\xb9\x6f\x9e\xb7\x7c\xe2\xba\xcd\xcb\x94\xf1\xcc\xe5\x79\x49\xed\x78\x78\xfd\x4f\xbb\x9e\xf1\x0b\x4e\xcc\xed\x7a\xa7\x47\x14\xe1\x97\x44\x38\xc2\x0d\x8f\xf3\x04\xf7\x61\xa4\xcb\xb7\x4c\xc7\x63\x8b\x47\xb8\x24\x75\x7e\x3b\x74\x81\x75\x20\x1e\x42\xd5\xb5\x12\x32\x8a\xf9\xeb\xab\x58\xa4\xa0\x6a\x0c\xda\x32\xd1\x24\x30\x71\xc3\x83\x01\x9c\x7b\x82\x4e\x0f\x98\xf3\x95\x05\x04\xd3\xc3\x94\xb2\x98\xa6\x2c\x67\x0d\x1b\x28\x00\x23\xa1\x2c\xf8\x66\xd4\xd5\xc4\x71\xa0\xb0\x52\x69\x44\x77\x68\x40\xcb\x65\xd3\x0a\xd0\xa0\xce\x4d\xeb\x0b\x77\xaa\xd9\x58\x25\xb6\xa2\x65\xec\xa6\xf8\x7b\x73\x13\xb0\xa2\x61\x55\x30\xed\x6f\x54\xa1\x00\x51\xbb\xa6\x5e\xbd\xa8\x5c\x89\x8a\x91\xd4\xac\x9b\x87\xe2\x07\x4e\xfc\x01\x9d\xe4\xe8\xa7\xfb\x48\xbb\x68\x49\xb3\xcc\xcf\x43\xa8\x0a\x21\x1c\xb3\x43\xdd\xbd\xa8\xac\x9a\x64\x39\xc6\x04\xbf\x11\x31\xe8\xdb\xec\xb6\xbb\x93\x33\xe2\xee\xa4\xf6\xb8\x42\xa9\x45\x9e\x23\xd9\xfa\x5c\x08\xda\x4d\x12\x02\x06\x0b\xda\x61\x48\xdd\x54\xa0\x24\xf8\x38\xab\x37\x79\x72\x3d\xb9\xbb\xdb\x01\x56\xa0\xab\x05\x8d\xeb\x6d\x7b\x57\x7b\xdd\xab\x27\x72\x5a\x55\xfe\x3c\x6a\x92\x4b\xf4\xde\x2a\x78\x32\xe5\x21\xe4\x1b\xd4\xfe\xe0\x85\x78\xa5\x41\x84\xb5\x82\xca\x48\x56\xa4\xac\x61\xd5\x3a\x2b\x50\xa3\x22\xcd\x6a\xb0\xb8\x81\x48\x8c\x0b\x70\x90\x2b\x62\x2b\x06\x51\x90\x6c\x9b\x72\x55\x2e\xb7\x35\xc4\x0b\x04\x93\x0d\x0e\xb8\x2a\xab\x35\x6f\xff\x7a\xc3\x26\xba\xc3\x91\x68\x44\x84\x69\x92\x15\x8b\x4f\xa3\x5d\x95\xb6\xd7\x7b\x0a\xc4\x34\x04\xa3\x65\x61\xd0\x8c\x30\xe8\x7a\x41\x04\x8d\x06\x3d\x4c\x8c\xf2\xfd\xb4\xa8\x59\x25\x83\x49\x77\x57\xad\xfd\x08\x33\x19\x08\x7b\x6c\x74\x30\x3e\x3a\xd2\x30\xe6\x94\x85\x6d\xe4\x69\x9e\xb6\xa5\x83\x62\xab\x69\x87\xe6\x3f\x1b\x86\x63\x8e\xf4\x43\x95\xee\xb8\x00\x34\x0e\x77\x31\xb1\x07\xed\x3f\xa9\x76\x72\xb8\x42\x13\x2b\xb6\x6b\x56\xf1\x25\xba\x30\xdd\xc9\xfd\x76\x1b\xd7\xc9\xd0\x57\x49\x53\x81\xc4\xe7\xd5\x0e\xd3\xb2\xfa\x02\xc3\x8a\x5a\x2c\xc4\x7a\xb3\x6d\x88\x0a\xd4\x21\xce\x9c\xb0\xe8\x3a\x7b\x9f\x15\xfe\x01\x65\xec\x77\x13\xf8\xe6\x13\xa8\xaa\xfc\x96\xca\x1b\x0a\x75\x7e\xe4\x4b\xb6\x8f\xf5\xb1\xe9\xeb\xe7\x3d\xf4\xf5\x8b\x3e\xfa\xfa\x47\x83\xbe\x2a\x5c\x72\xe0\x3c\x6f\x66\x59\x0d\xde\x09\x1c\xc7\x50\x22\x5d\xc0\x3c\x2f\x0b\xd6\xe7\x19\x0a\x5f\x65\x11\xf7\xec\xd7\xd8\xb1\xcc\xe8\xf2\x43\x05\x8f\xab\x0f\x4d\xa7\x0e\xf6\xc2\x49\xaf\x27\xf2\x8d\x94\x6f\x7b\x69\xc7\xed\x7b\x23\xa5\xf9\xe2\x11\x0b\x3c\x9c\xc7\xd6\x12\x49\xcf\xe7\x40\x86\xdf\xb3\xba\x0b\x82\xe7\x44\xc2\x04\xdd\x81\x10\xe9\x91\x70\x3a\xe7\xe4\x8b\xf4\x48\xeb\x33\xbf\xee\x52\xfd\x14\xf9\xee\xc3\xe2\x9e\xc3\x32\x70\x25\xbc\x81\x3e\x07\x4b\x91\xe0\x3b\x08\xc1\xbe\x2f\x88\x02\x24\x94\x2c\x0d\xe6\x91\x58\x57\xd7\x81\x35\x78\x7c\x79\xaf\x95\x65\x77\xa6\x5a\xae\xe4\xbd\xf8\x47\xc4\x19\xb0\xc9\xae\xdb\xd0\x0e\xde\x34\x90\x11\x93\xd5\x82\xb4\x66\x9c\x27\x0b\x96\x07\x9a\x1f\xf3\x9f\x86\x00\xf5\x43\xd2\x5c\x29\xf7\x33\xf2\x64\x84\x01\x79\x73\xe4\x31\x07\x86\xeb\x18\x84\x4f\xe2\xe6\xd0\xf2\x5c\x20\x7c\xdb\x10\xc7\xfa\x22\x25\x08\x45\x61\xbe\x28\x3a\x17\xad\x67\x61\x91\x54\x36\x3a\xa0\xf0\xc2\xac\xb7\x79\x93\x6d\x72\x16\x84\xd4\x05\x03\x16\x3b\x3e\x96\xde\xf8\x55\x52\x24\x1a\xc7\xb1\xbd\x58\x0d\xc3\xf0\xeb\x93\x33\x23\x08\x85\xec\x70\xac\x0a\xb5\x2d\x9e\xaa\xe0\xea\x40\x75\xbf\xab\xab\x91\x3b\xa1\x13\xb9\xe7\x86\xb4\x0c\xae\xcb\x33\x09\x1d\x44\xd6\xcc\xa9\x7a\xfc\xb3\x63\x17\x47\xf3\x09\x55\x48\x05\x5f\x34\xb7\xb0\xa8\x47\xa0\x86\x6f\xd1\xc4\x34\xa8\x36\x75\x8d\x74\x1a\x74\x6a\xd8\x86\x91\x8b\x29\x7d\x43\xfe\x49\x42\x3b\x43\x56\xf5\xf4\x0d\x59\x17\xc7\x21\xab\x42\xfd\x43\x16\xdb\xf3\x90\x21\xeb\x1a\xe9\x90\x75\x6a\xd8\x4a\xef\x57\xd6\x43\x8f\x79\x62\xdc\x82\xca\x40\x71\x93\xce\x88\x24\x1f\xa5\xc1\xd5\x9b\xeb\xfd\x23\xf2\x26\x7e\x94\x8c\xe4\x26\xf1\x81\xa9\x0d\x14\x59\x08\xe5\x03\x76\x50\xd6\x5a\x91\xee\x32\x64\xcd\xb3\x86\xad\x95\x21\x71\x4f\x09\xce\xbe\x19\xd3\x7c\x2b\xd2\x4d\x26\x53\x72\xae\x9e\xbb\x8e\xc8\x72\x29\xb5\x2d\x28\xd6\xa6\x04\xea\x52\x9d\x14\x65\x71\xbd\x2e\xb7\x35\xb1\xda\x88\x52\xb6\x69\xae\x4e\xc5\x1b\x5b\x2d\x45\xfa\x35\x18\xb2\x08\x82\x2b\xb9\xe5\xa7\xc5\xaa\x8c\x67\x5f\x44\xc1\xd7\xf1\xe0\x6c\x7c\x3a\x3e\x0d\xe6\x53\x29\x47\xc1\x80\x99\xac\xba\x64\x43\x59\x95\xd3\x23\x65\x47\xcd\xeb\x8e\xf9\x7f\x37\x37\x3b\x34\xdd\x40\x0b\xd4\x38\x08\x22\x30\xee\x3c\x8b\xd0\xb8\xe8\xfc\xfd\xa6\x62\x75\xcd\x09\x2e\x34\x60\xa7\x12\x37\x24\x6a\x94\x9b\xaa\xbc\xac\x92\xf5\xd9\x50\x8c\x0c\x07\xe2\x6b\x64\xea\x18\xbf\xde\xfd\x0a\x97\x12\xf7\x75\x1c\x04\x5f\xdf\x0d\xa7\x08\x1c\xcb\xc3\xcb\x7a\x8f\xc3\x73\x4c\xb4\x85\xc7\xd8\xa6\x2a\xd7\x9b\x26\x88\x76\xe2\x20\x8c\x94\x44\x42\x7e\x3c\xc2\x63\x0f\xbe\x97\xf2\xf7\x0c\x2b\xc1\x4b\x24\x5f\xf1\xa7\x8f\xf9\x3a\xf3\xe3\x95\xff\xd7\x02\xf1\xc0\xce\xdc\xdc\x88\x4e\xc5\xf1\x69\xb8\x73\x86\x81\x99\x61\xeb\x1a\xf7\x7e\x75\x0f\x07\xf8\x75\xa0\x9c\x9a\x60\x7e\x6b\xcf\xdf\xe7\xee\xfc\x89\x59\xb3\xe6\x83\x25\xcb\x2b\xcf\x24\x5c\xa2\x86\xc1\x23\x79\xf8\x1c\x36\x19\x59\xf1\x96\x55\x35\x43\x5f\x47\x45\x59\x6e\xa2\x55\x81\x1f\xa2\x5b\xc3\x2f\x22\xf1\xeb\x0b\xec\xd9\xa7\x9c\x3f\x38\x65\xdd\x49\x0c\xc2\xd6\x99\xae\x2f\xcc\xe9\x72\x0a\xd9\x98\x3b\x74\x85\x52\xee\xf4\x01\x45\x91\x33\x27\x8e\xf1\x89\x3e\xcf\x81\xaa\x4e\x04\x71\x35\x26\x56\xc1\x3e\x7d\xac\xc0\x9e\x3e\x0e\xec\xf9\x96\x60\xa2\x65\x04\xc4\x8f\xdb\xe0\x65\x18\x3a\xd3\xf1\xe5\x47\x62\xcf\xf2\xb7\x46\x9b\x3f\x49\xb4\xf9\xd3\xef\x0a\x6d\xfe\xf4\x1b\xa3\x0d\x39\x89\x1c\xbc\xe9\x46\x91\x7e\xbc\xb8\x25\x2a\x98\x0b\x3c\x0b\xb2\x55\x30\xff\x68\x22\xb9\x7f\x81\xcf\xe4\x02\x9f\x7d\xfa\x05\x3e\x70\x88\xb8\x18\xa0\x6a\x85\x8c\xc4\x07\x8c\x55\x0e\xef\x4b\x39\xbc\x2f\xc5\xf0\xec\xf1\x7f\x2e\x01\x3e\xff\xf4\xe3\x37\x4f\x8e\xd0\xcb\xf2\x69\x36\xad\x5f\x9e\x4a\x64\xa8\x54\xb4\x0a\xf2\xd4\x28\xa8\xb3\x7f\xb1\x60\xae\xf8\x41\xbf\x1c\x55\x56\x21\x3e\x25\xf6\x82\x1f\x1a\xc5\x54\xe2\x27\x06\xca\x77\x59\xea\x37\xec\x9a\xf8\xf7\x51\x46\xeb\xc2\x6a\x3c\x8e\xe3\xfb\x8a\xe9\xc6\x18\xf7\x5d\xcc\xbf\xc3\xf1\xeb\xf0\x4d\xff\x10\x1d\xfb\x79\xfc\xe0\x5e\x14\xe8\x03\x58\x55\xf3\x40\x57\xa3\xba\x3d\x0e\x46\x9a\x8d\x9f\x78\x00\x02\x83\xe5\xa7\xe9\x11\x6e\x31\x1c\xb8\xc5\x08\x93\x53\xc4\xea\xb1\x93\xa3\xf0\x17\x2b\x52\x07\xd3\xc4\xbc\x0b\x44\xe6\x81\xdf\x79\xbd\xbe\x94\xd5\x39\x93\xa6\x37\x0a\xf2\xd0\x66\x85\xda\x43\xf6\x9e\x4b\xfa\xcd\xcd\x6c\x3e\x95\x2e\x03\x45\xaa\xbe\xb6\x71\x5e\x9e\xdc\x56\xa1\x02\x9e\x16\xa9\x7e\xa9\xab\xbb\xd9\x3e\xbf\x82\xd6\xc2\xf3\xa1\x10\x54\x84\x47\x71\x0c\xbf\xc2\x9d\x09\x4b\xdd\xc1\xee\xf0\x54\x85\xff\x15\x6a\x2a\xff\x6e\x61\xbb\xa7\x25\x35\x2c\xdc\x81\xd0\x7d\xed\x04\xd0\x2c\x68\x20\x82\x43\x7c\xe4\x0c\x8d\xff\x02\x1a\x42\x61\xa4\xcf\x8a\x09\x15\x1e\x45\x17\x4b\xc7\xa5\xaa\x21\xcc\xa0\x12\x0c\x14\xae\x60\x81\xef\x45\xfa\x50\x3a\xc2\x24\x79\xaf\xb2\xe2\x12\x72\x5a\xbd\x23\x7d\x57\x6f\x8d\xf7\xd8\x4b\xfb\xbe\xed\x13\xc0\x74\x4a\x5d\x68\x47\xf9\xbd\x5b\x08\x36\xb5\x70\x25\xa4\x0f\x13\xe4\xfa\x29\x96\x67\xa6\x92\xe6\xca\xb9\x74\x2b\xc4\x49\xce\x20\xfc\xa3\x77\xe1\xf4\x4c\x08\x29\x84\x6f\x1a\xc4\xd5\xff\x16\x92\x29\xbc\xb0\xe8\x1c\xac\x81\x08\x3a\x3e\x8c\x46\x29\x71\x19\xfa\xff\xf8\x58\x52\xa5\x17\x9f\xaf\x14\x40\x1f\x49\xb9\x95\x68\x83\x2f\x89\x5c\x63\xd1\x99\x07\x12\x73\x57\x59\x41\xe8\x49\xb9\xf8\xc5\x24\xca\x71\x1c\x0f\xcd\x1e\x96\x8b\x5f\x88\x6c\x64\xc2\x4b\xb4\x21\xd0\x31\x14\x0b\xf2\xd5\xa7\x0b\xaf\x31\x83\x2f\x0f\xbf\xe9\x5d\x5e\xb2\xca\x75\x31\x7c\x08\x2a\xaa\x13\xc2\x5d\x95\x29\x62\xe3\xf3\xb2\x60\x06\x32\x8a\x3e\xd9\x28\x33\xc4\xb8\xa8\xa2\x80\x74\xf0\xa6\x25\x9e\x14\x90\x6e\xba\x61\xd8\x46\xc6\xfe\xf3\x0f\x81\xa5\x4f\xf9\x91\x1c\xcb\x07\xb9\xd9\xe9\x7c\x6c\xe4\x44\x7d\x88\x87\x87\x0c\x15\x7f\x21\x63\x87\x83\x14\x70\x37\x37\xf0\x76\xb8\x54\x04\x4e\x78\x13\x56\x02\xb0\x6c\x35\xc4\x72\xc7\xc7\x66\xa7\x80\x11\xf1\x6e\x52\xbe\x8a\x6a\x57\xaa\xf2\x12\x7d\x44\xf9\x93\xf8\xac\xf5\x96\x96\x28\xa5\x7c\xb3\x1b\xc5\x42\x3d\x73\xdf\x2b\xd6\xc3\x9c\x3b\x29\xff\x16\xb3\x26\x36\xd5\x44\xc9\xd2\x7b\x66\x26\x2a\x57\xab\x9a\x35\x31\x7e\x3f\x38\x9b\x9c\xf6\xce\xf0\x01\x34\x4f\xce\x33\x9d\x4f\x43\x67\xc2\x18\x1d\xd1\x95\x30\x7c\x0e\x9b\x11\xfb\x80\x4f\x3b\xc1\xae\xb6\xe1\xb8\x29\x91\x78\x22\x62\x17\xec\xdd\x2b\x7b\x9b\x8a\xb9\xac\xed\xc9\x64\x35\xf4\xd1\x47\x7d\x25\xdd\xd1\xe2\xee\xd3\x88\x0f\x52\x7f\x6b\xc7\xd3\xb4\x49\x41\x63\xfd\x78\x61\xc0\xb5\x6d\xd4\x49\x84\xed\x25\x65\x39\x71\x2c\xad\x5e\xc1\x61\x7e\xf9\x19\x2f\xa6\xf6\x43\xde\x08\xbc\x24\x10\x11\x5c\xd2\x38\x29\xf9\x97\x7b\x44\x4f\xd3\xe4\xe4\xac\x7f\x97\x99\x98\x2f\x6b\x1e\xc5\x67\x1c\x0d\x78\xcf\x59\x6e\x6e\xe8\xd8\x84\xf4\xcf\x51\x17\xe2\x7f\xfc\xd8\x35\x1a\x1a\x83\x67\xb5\x7f\xf8\xb3\x93\xb3\xf9\xad\x36\x93\x7f\x6b\x06\x61\x94\xa4\xbf\x6c\xeb\x06\x23\x66\xdb\x0f\x59\x20\x89\xa0\x7b\x41\x02\xc7\x7a\x37\x7c\x7d\x72\xf6\xc0\xd9\x1b\x93\x93\xb3\x29\x21\xdc\x2c\x8d\xcd\x47\x1c\x35\x5a\xd5\x3c\xbc\xe0\x70\x56\xe8\x40\x65\x0f\x5b\x89\xc3\x50\xfb\x30\xce\xa8\x7e\x0d\x91\xa5\x70\x7b\xdf\xad\x5f\x21\x6c\x46\xa8\x1e\x94\x69\x4d\xe2\xe6\xf8\x6c\x4a\xbc\x50\x3e\xcb\x92\x83\xf4\x38\x88\xd2\xe4\x01\x8a\x54\x7e\x8f\xa9\xb7\x76\x17\x62\x69\x46\x7c\x0a\x05\x88\x0f\xd5\xbf\xd2\x9a\xb3\x07\xe8\x57\xfa\x2c\x3d\x3d\x2a\x96\xde\xd7\xf7\x2f\xe8\xe3\xfb\x3e\x75\x5b\xf9\xcc\x41\x1a\x8d\x7c\x4f\x1e\xbb\x9d\x54\xa5\x6b\x5b\xef\x0b\x07\xcf\x3e\x81\xe5\x26\xea\x5c\x5a\x5d\xde\x27\x6b\xa8\xca\x77\x35\x5c\x70\x40\x57\x46\x08\x16\x14\x05\x39\x07\x5f\x3c\xea\xf3\x55\x93\xc0\x3a\xbf\xab\x92\x4d\x30\x8f\x78\x59\x19\x6d\x2a\x17\xbf\x7c\xca\x4c\xfb\x98\xf3\x2e\x06\xfc\x33\x79\xaa\x7c\x36\x04\x62\xfd\x19\xcb\x8f\x8f\x25\xe7\xfb\x19\xcb\x39\x0b\x37\x0c\xc3\x9d\xfc\x89\xec\x1d\x67\x3f\x7f\x0b\xea\xe0\x53\x0a\xf3\xf8\xec\xde\xa7\xd2\xfc\xdb\x29\x30\x7e\xd8\x96\xfc\x3d\x6d\xbf\x3e\xf5\x47\xff\xd6\xf4\xec\xb7\xae\xad\xf9\xc5\x41\x61\xd7\x6e\xbb\xe9\x2c\x7d\x4a\x3e\xbb\x5d\xba\x94\xb0\xfb\x70\xd5\x6f\xa5\x4d\xa9\x74\x49\xb2\x7f\x31\xd0\x34\x68\x1a\x56\x15\x7a\x37\xae\x81\x8e\xae\x93\xf7\x41\x14\x24\xcb\x25\xdb\x34\x42\xe0\xc7\x11\x22\x67\x8d\x54\xad\xac\x93\xb7\x4c\x88\xff\x12\xe9\x89\x8b\x7f\xb0\x62\x29\x5a\xe2\x5f\x6b\x70\x82\x26\x3e\x8a\xf2\x6d\x92\x67\x29\xea\x6e\xf2\x84\x26\xa9\x10\x33\xaf\x58\x76\x79\xd5\x80\x86\xe7\x66\xdb\xac\xcb\x94\x43\xe4\x59\xcd\x93\x88\x7c\xb2\x6e\xd8\x86\x13\x84\x2c\x6d\xae\x82\xb9\x90\x11\x06\x81\x50\xe6\x84\xd9\x8a\xf8\xb8\x90\x38\x88\xa1\xe1\xc7\x3a\x93\x3f\x92\xf7\xf0\xe3\x36\x9b\xab\x23\x42\xf1\x6d\xb7\x97\x4f\x89\x4f\x2a\xff\x41\x6a\x7d\x0f\x67\xe4\x02\x67\xf4\x7f\xe2\xc6\xfa\x9e\x8f\xc3\xd1\x98\x83\x54\xdc\x4f\x30\xc0\x87\x48\xe0\xf7\xef\x2b\x7b\x0b\x42\x45\xc2\x75\xfe\xd0\x53\x57\xb4\x53\x48\xe1\xdb\x03\x70\x89\xb9\x2a\x73\x74\x6a\x47\xc4\xdd\xeb\xe4\xbd\xb8\xbf\x18\xa2\xef\x8a\x25\x69\x59\xe4\xd7\x1d\x32\x6f\xcd\x8a\x57\xca\x1b\x5d\xbd\x61\x79\x0e\x3a\xb2\xa6\xcc\xbc\xc9\x9a\x5c\xee\x9d\x65\xb2\xc9\x1a\xb0\xad\x56\x7b\xab\xaa\x50\x5b\x80\xf4\x10\xf1\xd5\x12\xa1\xab\x8e\x62\xee\x81\x47\x0f\x74\xfc\xc5\xd6\x3c\x72\x18\x39\x6c\xd4\x65\xa2\x9f\x31\xdd\x57\x64\x93\xd4\xcd\xed\x4a\x2c\x6f\xd9\x29\x41\xe0\x6e\x51\xe2\x0d\xbb\xfe\x71\x43\x4b\x64\x45\xc3\xaa\x4d\xc5\x9a\xef\xd8\x35\x18\x4b\xd4\x61\x1b\x25\xe4\xed\x41\xd8\x50\x4c\x84\x09\x45\xb4\xd8\x2e\x16\x39\xab\x95\xe2\xb7\x5d\x5c\x2f\x00\x7b\x0b\x77\x7b\x74\xa9\xb5\xa1\xa6\xd4\xe3\xef\xce\xff\xf7\xc5\xf9\x4f\xe7\xcf\x5f\xbf\x42\x8f\x5b\xe8\x1d\x72\x9d\x6c\x66\x50\x68\xfc\x86\x5d\x3f\x2a\x53\x36\x9f\xf6\x8c\x0a\x19\x13\x2c\x6a\xc8\x00\x66\x98\x36\x17\x1d\xe0\xf7\x44\x6f\x05\x7e\x4d\x6f\x71\x24\x28\x3d\x6f\x64\x74\xf8\xad\x87\x73\x2b\xcf\xd9\xbb\x3c\x2b\x98\x33\xc8\x9a\x15\x29\xee\xbd\xa1\x9c\x28\xa8\x0e\xb3\xa7\x34\x1b\x2b\x3a\x29\xb0\x26\x03\xae\x8d\x96\x49\xb1\x64\x79\x7f\xf5\xf0\xb8\x7a\x02\x6f\xab\x56\x69\xc0\xec\xa7\x45\x6f\x71\x80\x39\xe1\x44\xd7\x2d\xfa\x62\xdb\x1c\x50\xb6\x54\x38\x27\x0b\xbf\x61\xd7\x3f\xf0\xee\xf4\x16\x7e\xc3\xae\x7d\x9d\x6e\xc3\xa9\x1f\x33\xe2\xdd\xd9\xe7\x93\xc0\x98\xf6\x20\xba\xff\xa7\x49\x80\x73\x14\xb4\x5a\x79\x86\x34\x03\xb5\x82\xed\x1e\xe7\xdc\x22\x82\x83\x89\xbe\xe2\xeb\x2c\xb0\xd4\x8b\x68\x72\x20\x10\xde\x90\x4e\x63\x0e\x91\x83\x96\x45\x1c\xc7\xaa\x86\x9b\x1b\xf8\x0e\xe4\x3c\x04\xc7\xc7\x2a\x4f\xa4\x8b\xa1\x87\xbb\xb7\xa8\x34\xa6\xe7\x45\x32\x0c\x82\x85\xb6\xf3\xc9\x80\x00\x80\xb7\x8e\x45\x44\xab\x7a\x1c\xf0\x5c\xa0\xbb\x2b\x76\x6a\x10\x86\x3b\xdc\x55\x75\x53\x6e\x7e\xa8\xca\x4d\x72\x99\x20\xda\xb7\x9d\xae\x57\xc9\x92\xf4\x71\x06\xc0\x64\xf4\x44\x8a\xee\x8f\xfb\xbc\xdf\xb4\xa1\x87\xa9\xb0\x1d\xa3\x0a\x5b\x88\xaa\x2a\xed\x4a\x7c\x86\x02\x59\x7d\xc1\xd6\x9b\xe6\xfa\xf7\x6a\x26\xf0\xd1\x91\x9f\x57\x6b\x97\x2d\x59\xad\x9b\xbd\x46\x02\x1e\xae\x7f\x9f\xd1\xa1\x8f\x43\xfa\x82\x70\x48\x59\xfd\x6d\x5e\x2e\x92\xdc\xeb\xa4\x91\x66\xea\xce\x9d\xf3\x65\xdc\x67\x09\xf0\xf4\xd5\xc5\x37\x4f\x9f\x3f\x7e\xfa\xfc\x5b\xc7\x18\x40\x67\xb9\xfe\xf5\xa2\x4e\x4f\x49\x59\x7d\xce\x71\x62\x9f\xdd\x40\x9d\x67\x4b\x16\xcf\xe6\x63\xf8\x11\x49\x97\xf2\x9d\x2a\xf2\xca\x55\x91\xa2\x57\x86\x37\x99\x61\x55\x96\x0d\xe7\xcf\xaf\x88\xda\xd1\x1b\x19\x4e\x8c\x27\x1d\x1f\x83\x4e\x83\x4c\xbb\xb9\xd9\x01\xc9\xe5\x1f\x51\x56\x8b\xb0\x5c\x53\x91\x12\xf3\x9a\xc6\xf5\x26\xcf\x9a\x61\x30\x0e\xa2\xb3\x70\x76\x0a\x71\xa0\x64\x71\x4f\x50\x39\x9e\x1e\x86\x3b\xde\x91\x58\x82\xcd\xc4\x8f\xf9\x54\x35\x11\x37\xd5\x96\x81\xe8\x36\x01\xed\x02\x59\x72\x07\xdf\x41\x80\xe2\x6d\xf8\xc0\x4e\x6c\x17\x75\x53\xc9\x06\x84\x56\xc2\xe8\x2c\x6c\x85\x2a\x06\x34\x38\x51\xc3\x9f\xc0\x1c\xa8\xd6\x26\xea\x17\x51\x40\x32\x3c\x1e\x91\x99\x33\x9e\x0d\x40\x51\x53\xa4\x1c\x1f\x1b\x4a\xfe\x6a\xe6\x53\xd7\xad\x8f\xbd\x10\x48\x70\xf9\x78\xcd\xe8\x56\x63\x15\xdc\xca\x17\xf1\x2b\xd9\xd4\x27\xc2\x1f\x01\x3e\xe0\x52\x0c\x87\x99\x03\xf7\xfd\xf2\x64\xc1\xaa\xb1\x00\xb4\x2d\x1e\x09\x34\x84\xd9\xe5\x31\x74\xd2\x4a\xc3\x72\x42\xbd\x9e\x2f\xa2\xa7\xcc\x74\x63\x0c\x58\x17\x9c\xea\xa6\xd4\x04\x84\xea\xa1\x93\xfa\x7a\x3f\x3e\xe6\x00\x47\x71\x4c\x3b\x7d\x7c\x7c\xeb\x01\xb6\x86\x4e\x8a\x5a\x5b\xed\xa4\xaa\x6b\x61\x2b\x56\x6f\x73\xcb\xed\x95\x07\x76\x0a\x41\x83\x01\x34\x8e\x39\x13\x7b\x73\xa3\x3e\xd5\x60\x38\xcb\x08\x69\x02\x6f\x07\x10\x7f\x01\xd3\x68\x20\x44\xb2\x91\x5f\x25\x2b\x86\xf1\x0a\x42\x55\x5a\x44\x43\xc4\x2f\x7c\xf1\xa4\x16\xbd\x63\x15\xfd\x40\x95\x20\x15\xa2\xb5\x8d\xa3\x2d\x27\x2b\x53\xf1\xfb\xf8\xa7\x61\xe6\xeb\x77\xed\xa5\x66\xd2\xf0\x32\xa6\xac\x55\x30\xa4\x84\x33\xa3\x1c\x32\x15\xee\xc9\x66\x73\xcb\x2a\x19\x03\x9b\x42\x49\xc8\x99\xea\x50\xd2\xa7\x51\x1e\x1b\x51\x2a\xa6\xd9\x57\x39\xc6\x92\x86\x64\x91\x39\xcb\xe6\x53\x0c\x35\xce\xab\xe2\x5f\x22\xa6\x1c\x67\x8c\x9e\x3e\x06\x4b\x70\xda\x07\xd4\x18\x31\x97\xd8\x18\x81\x1a\x40\x28\xed\x49\xdc\xe2\x00\xa8\x11\xcd\x04\x31\x66\xb2\xcf\x3d\x9b\x3d\x9f\x7f\x4d\xea\x2b\xd5\x17\x30\xe1\xf6\xce\x25\xb8\x84\xdb\xb5\x9d\x86\xf5\xc6\x3c\x8a\x08\xa0\x10\xd6\x03\xf8\x37\xc0\x9a\xfe\xb8\x9f\x64\x3a\xdf\xb0\xeb\xee\x09\xe5\x1d\x01\x88\xd8\x3f\x9d\x57\x32\xdf\xb2\xb2\xf7\x95\x17\xbf\x9c\x29\xe5\x30\xbe\x09\x75\xfc\xe2\x69\x12\xee\x7a\xb2\x42\xaa\x01\xc3\x37\x8e\x6a\x35\x14\xe5\x11\xcf\x13\x6c\xae\xc7\x69\x7e\x38\x0b\x8c\x0a\x82\x39\xbc\x83\x02\x93\x08\xf7\x83\x38\x08\x8c\x68\x0d\x4a\x85\x6e\x66\x2b\xd3\x9d\x9c\x51\x66\xc8\xf4\xcd\x37\xa4\x47\xcc\x58\x69\x02\x83\x77\x10\x4d\x4e\xaf\xd4\x90\x88\x79\x3f\x0d\x3a\x03\xec\x04\x2a\x64\xaa\xd6\xa3\x33\x8e\xe6\xc0\x0d\x05\xff\xf5\x17\x42\x8c\x70\x10\x93\xc1\xa3\x72\x9b\xa7\x83\xa2\x6c\x06\xab\xac\x48\x07\x92\x61\x1e\xdc\xfd\xaf\xbf\xdc\x1d\x94\x85\x08\xb6\x38\xf8\xaf\xbf\x8c\x03\xf2\x7e\x38\x16\x9c\x06\x9f\x02\xa7\xf3\x6d\x73\x55\x95\xef\x06\x2a\x8a\x04\x30\x63\xc3\xd5\xba\x19\xe2\xc4\xcd\xe0\x7a\x01\x14\x97\xf7\x7b\x1e\x9a\x2e\x08\x7c\x8e\x9d\x7d\x8e\x9c\x15\x42\x74\xf9\x37\xfb\x37\x63\xc5\xef\x1c\x07\x88\xe9\x9c\xd4\xa6\x36\x66\x95\xb8\x88\x10\xa7\x2c\x5d\x94\x4e\x8f\xd9\x9d\x1e\xb2\x09\xf1\x73\x9c\x61\xa2\x87\xa2\x55\x21\x0c\x54\x74\xc6\xc3\xea\xb2\x8e\x3b\xc6\x80\x2e\xe5\x9e\x14\xb6\x47\x4e\x3a\x7c\xab\xaa\xbd\x0e\xa9\xa0\x1f\xa2\xde\xd0\x22\x43\x87\xb9\xf5\x54\xc3\xb4\x7a\x05\xd1\xea\x39\xea\xf9\x6e\x0b\xe1\xce\xeb\xb3\x71\x1f\x22\xf6\x45\x60\x08\x67\x81\xaf\x4e\x81\x9b\xf2\x3e\xd2\x7c\xc7\xae\x3b\x27\xd8\x26\xb1\xe2\x89\x4f\xdb\xc4\xfb\x0b\x9e\x46\x27\x67\x61\x54\x6c\xd7\x3f\x68\x40\x5d\x46\xa0\x7e\x74\xd0\xee\xa0\x7c\xa9\xae\x6c\x86\x6a\xdb\x06\xa1\x11\x87\x23\x6c\x96\xac\x16\x5e\x46\x1f\x90\xfe\x99\x0c\xc8\x59\x38\x31\x13\x5c\x6f\x2a\x40\xcb\xd4\xe6\x53\x7a\xe4\x0a\x48\x26\x44\xcb\x6d\x55\xb1\xa2\x11\xba\xeb\xb1\x4c\x47\xc7\x56\xfc\x97\x18\xcf\x03\xf9\x3d\x3b\x9d\x4f\x70\x5f\x55\x6c\x95\xbd\xe7\x6c\xee\x93\xb2\x7a\x6c\x2c\x49\x00\xae\xe8\xa2\x9c\x15\xd0\x35\xa1\x93\x0a\xa3\x12\xbf\x25\x65\x26\x73\x84\xda\x89\xbe\x65\xa7\x01\x1b\x4d\x70\xed\xd5\xfd\x85\x58\x11\x60\x18\x8c\x94\x5d\x0b\xec\x85\xee\x88\xc1\x61\xe8\xbb\xf1\xb8\x61\x75\x43\xc0\xc2\x70\x47\xeb\x99\xe9\x1c\xbc\xea\x0e\x4f\xa3\x93\x3f\x85\x82\x1b\xd0\x99\x73\x0c\xeb\xfb\x0e\xa2\xec\x99\x0b\x8f\xb6\x6a\x1b\x23\x89\x77\x2d\x2f\x97\xf1\xe9\x34\x2f\x97\x5f\x19\x78\x37\x1d\x8d\xf2\x72\x29\x54\xf8\x09\x0e\x22\x4f\xa7\xbe\x67\x79\xb9\xc4\x30\x66\xc8\x04\xf1\x4f\xc5\xfc\xbc\xa5\x71\x21\xa0\x37\xd6\x2d\xcf\x5c\xff\xc8\xaa\x16\xaf\x7e\x53\x1f\x22\x8b\x88\xe6\x46\x4e\x38\x75\x86\xed\x05\x53\xee\x8b\x4c\x8c\x0f\x77\xdd\x0d\xed\xf0\x4e\x6c\x76\xaf\x15\x35\xf5\xf4\x6f\x9b\xe7\x61\x0b\x91\x9b\xed\xb6\x64\x98\x6e\x9f\x6f\x5f\xa4\xbf\xab\xc2\xbb\x85\x35\x7f\xf8\x56\x78\xbe\x07\x7a\xc7\x39\x04\x1f\xf6\x62\x2c\x5d\xf8\xaf\xe3\x32\x14\x19\x7c\xc8\x54\xd6\x68\x23\x7b\x6c\x69\x2b\x24\xfc\x78\x99\xcd\xe9\xbe\x02\x74\x22\xdf\x1c\xd5\x29\x12\x23\x11\xa7\x29\x36\x73\x4d\xf2\x28\x93\x2d\xf7\x6b\x3f\xf6\x18\xfb\x85\x7c\x48\x3c\x52\x23\x43\xa9\x88\xa8\x13\xef\xdd\x46\xde\x4b\x7e\x6d\x57\xf9\x70\x61\x87\x6d\x46\xeb\x8c\xad\xe9\x41\x4a\x29\xab\x09\xdb\x03\x76\x96\x3b\x2a\xb2\xcc\x80\x61\x42\x35\x0f\xa0\xc2\xdd\xc7\xf4\x9f\xaf\x96\xbd\x19\x7c\xfd\x16\x28\xad\xc1\xed\x9d\xde\xb6\x3a\xcf\x8a\x12\x37\x58\x15\x82\x7f\xb0\x16\x86\x97\x08\xdb\x29\x30\x62\x18\x54\xf6\xd1\x55\x96\xa7\xba\xd5\x83\x10\xe7\x70\xbc\xd9\x47\x06\x3e\x00\x79\xc2\x56\xaf\x28\x3f\x59\x62\xb7\x0d\x71\xf1\xe6\xcb\x9d\xb3\xc2\x59\x64\xa7\x00\xae\x30\x4c\x8a\x64\x86\x5e\x48\x0d\x21\x63\xf1\x22\x63\xa9\x23\x39\x6b\xea\xc7\xb8\x62\x15\x3f\xfe\xaa\xb0\x55\x64\xf8\x74\x7e\x84\x44\xf8\xe6\xc6\x4b\x9e\x94\x55\xd2\xa9\xa1\x95\xaa\x61\xfd\x48\x79\x3a\x8f\x14\x82\x69\x80\xb1\x12\xfb\xd0\x44\xc0\x4b\xd4\x3a\x07\x51\xae\x14\x47\xf5\x9c\xdc\x1c\x62\x14\x8c\x83\xd6\x94\x6c\x18\x1c\x97\x23\xe0\xe8\x98\x41\xd1\xcd\x1e\x46\x61\x64\xd4\x3b\xcb\xe6\xbd\x53\xdb\x8a\x0b\xc2\x45\x95\xbc\x7b\x22\x48\x61\xbc\x2a\x4c\x0f\x71\x5a\x80\xe6\x27\xec\xf2\xb6\xbf\x8f\xb6\x1b\x14\xd6\xe5\xaf\xfa\x79\x0e\xc1\xcf\xf5\x30\x70\x8a\x3f\x52\x8c\x90\xfc\xf1\xfa\x7a\xc3\xfe\x2d\x24\xdd\x25\xa8\x7e\xb9\x48\xf7\xbe\x54\xe7\xa0\xb9\x31\x7b\xd0\xbd\x73\x6f\x76\x13\x60\x3a\x2f\xb1\xe6\x70\x28\x61\x7e\x4d\xc5\x3d\x9a\x38\x9a\xc3\xe9\xdb\xd0\x96\x0c\xcd\xa1\xbd\xd7\x52\xa6\x7c\x08\xe5\x35\x48\x2e\x71\x86\x28\x3c\x39\xd4\x1b\xb6\x44\xec\x6a\x62\xfb\xb1\x04\x33\xa7\xcd\x38\xab\x5f\x97\x1b\x7c\x60\x90\x4f\xf9\x96\x63\x43\x3b\xf0\x03\xcd\xed\x73\xd6\x4f\xe1\xf6\x05\x87\x30\xe4\x18\x46\x40\x2c\x33\xd4\x02\x85\xbb\x45\x00\x85\xbe\xa7\x54\x27\xe0\x63\xcf\xb3\xea\x47\x3d\x9c\xf6\x68\x63\x99\x7e\xdb\xfa\x1f\x6f\x45\x65\x79\xd2\x08\x05\xa0\xfd\xce\xde\xf6\x38\xaa\x33\x9d\xbc\x75\xba\xa1\x43\xe0\x6a\x5b\x5c\xe4\x65\xb9\xb1\x92\xa5\xbe\xeb\x9e\xc7\x62\xac\x56\x0c\xec\x97\x5f\xb7\xac\xba\xde\x17\xd7\x53\xce\xc6\x1b\x76\xed\x0d\xc1\xb8\x27\xbc\xe2\xef\xf1\x91\xf9\x37\xf0\x45\x67\x06\x5a\xfa\x54\x61\x13\x3f\xfa\x35\xbc\xef\xc5\xfb\x37\xf4\x73\x07\xf4\xd0\x79\xe2\x86\x54\xef\xa3\xfc\x97\xe4\x51\xbe\xbc\x40\x45\x3e\xe7\x2d\x1b\x93\x6f\xe1\xd7\xae\xcf\xa9\x9f\x27\xd8\x98\x74\x12\xe7\x78\xb8\x13\x19\x7e\x0f\x7e\xe0\xe3\x4e\xbd\x9c\x57\xdb\xc2\x71\x6a\xe7\xc4\x80\x64\xeb\xf2\x2d\x7b\xe1\x75\x98\x07\x61\x20\x8d\xfc\x7e\xcd\x01\x8e\x5b\xae\xea\x00\xec\xc9\x6f\xec\x48\x7d\x00\xab\x42\xf5\xfd\xf2\x37\xbe\xd9\xf7\x46\xf1\xf2\x79\x19\xfc\xa3\xe5\x65\xd0\x38\x12\x7c\x51\x16\x39\x7e\xdb\x61\x16\x39\xf9\xd8\x1b\xed\x6b\x6f\xc0\xa8\xb3\x3f\x7f\x54\xc0\x28\x28\xde\xa9\x06\xd1\x1d\x55\x13\x06\xe4\x86\xd5\xec\x0e\x1d\x09\x05\xdc\xd8\x91\x1d\x51\x29\x7d\xf3\x75\xb9\xcd\xd2\x27\xa5\x1b\xd9\x51\xa4\x63\x08\xaf\xeb\x0d\x7b\xb1\x72\x83\x7a\x42\xf2\xc1\x2a\x2c\xfa\x75\xd7\x01\xd3\x59\x5a\xc6\xca\xde\x67\x75\x53\x0b\xc3\x07\x71\x9f\x31\x8d\x5d\xe1\x76\xf3\xf7\xac\xb9\xea\x0c\xd0\x43\x9c\x6c\x99\x9a\xab\xd2\x62\xad\x2a\xf3\x9c\x55\x53\x22\x21\x27\x3a\xad\x91\x92\xc0\x86\x53\x43\x67\x04\x60\x24\x9f\xf4\x98\xaa\x8e\x50\x38\x50\x4e\x33\x40\xff\xca\xb9\x7a\x92\x4b\xa1\x01\x17\x3a\xa1\x15\x2a\xe8\x4e\x77\x54\x4f\x46\x85\xc2\x69\x06\xfb\x5d\x4a\x63\xa1\x80\x95\xc8\x19\x5f\xb3\x5e\x29\xd8\x66\x6f\xb3\x72\x5b\xdb\x65\x69\xe2\x54\x17\x8c\x1b\x23\x62\x82\xe5\xb6\x3f\xd0\x80\x93\x60\x64\x35\x27\x75\xac\x77\xe8\x3d\xed\x91\x06\xb5\x9a\x8b\x50\x65\xdd\x4e\x6e\xa5\x3f\xc7\x4b\x56\xb0\x2a\x69\xd0\xf7\x81\xe8\x16\x99\x11\x7e\xaf\xb1\x06\xaf\xcc\xab\x1b\xda\x45\xb4\x04\xc6\xdf\xd4\x8b\xe4\x73\xb9\x37\x2b\x7e\x5d\xd4\xe2\x33\xa1\x51\xb0\xd3\xa5\xb0\xc6\x75\x99\xb2\x3c\x88\x44\xf6\x94\xb8\x66\x44\xa8\x56\x2a\xa3\xd0\x95\x05\x54\x40\x3a\x3a\x66\xef\x37\x49\x91\x96\x23\xb1\x1d\x87\xb4\x5b\x4a\x93\xc8\x2c\x3a\xa7\x23\x56\x24\x5b\xa9\x27\x45\x26\xf4\x28\x18\x8b\x4e\x12\x54\x53\x75\x43\x57\xcc\x02\x2d\x5a\x55\x5b\x93\xe8\x69\x87\x20\xba\x51\x77\xdb\x46\xef\xb2\x3c\x7f\xcc\xea\xa6\x2a\xaf\xbb\xf5\xc9\xb3\xd5\xb0\x73\x51\x25\xac\x27\x6b\x9c\x62\xc5\xa0\x7d\x49\xde\x6c\xf8\x09\xa5\x6e\x5f\x2a\x0c\xbf\x35\x90\xa8\xbe\x2a\xb7\x79\x2a\x2c\x64\x22\x6b\xcd\xa3\xe5\x55\x96\x93\xeb\xa4\xab\x0d\x85\x6f\x2f\xab\x42\x7d\xaf\x0a\xe9\xb8\x47\x25\x89\x6f\xfb\x41\x45\xdf\x57\x23\xc9\x64\x47\x19\xee\x79\xf3\x41\x85\x8f\xfc\xe6\xe6\x5d\x56\xa4\xe5\xbb\xa9\x4f\xb8\xd3\x23\x85\xbf\x16\x62\xd3\x6c\x35\x0c\x44\xd4\x96\x38\x86\x3b\x70\xb9\x02\xdd\xee\x50\xcb\xd0\x8b\x3a\x4b\x19\x78\x0a\x09\x77\xca\x10\x90\xac\xd6\xbb\xab\x2c\x67\xa0\x0a\x3b\xbe\x10\x57\x54\x7c\xbb\x83\x81\x39\xe9\x6d\xb5\x2d\xc6\x65\xb1\x64\x42\x7b\x56\x4a\x61\x82\xb0\x35\x82\x86\xca\x97\xa5\xc8\xab\x8c\xd4\x35\x2c\x72\x79\x86\x52\xd6\xca\x3d\xb0\xbe\xe5\x86\x9d\xe0\xdf\xa9\x68\x33\xb6\xd0\xe1\x81\xd9\x9c\x84\xce\x56\x43\x03\x4f\x64\x6d\xe1\x4e\xdd\xa2\x57\x85\x52\x7a\x12\xeb\x4d\x32\x45\x4a\xab\x6e\xf0\x72\xc8\xae\xd7\xdc\x36\xd4\x14\xe2\xad\x74\x36\xe9\x0f\x46\x27\x41\xd4\x2b\x95\x35\x98\x49\x2f\xae\x73\x7a\x36\xe9\xc5\x7e\x80\xb0\x77\x44\x8a\xb0\xda\x33\xb0\xc2\x77\x95\x24\xf1\x9d\x3e\xb7\x5c\x2b\x91\xe3\xc4\x59\x51\x83\xb2\xdb\xd9\x59\x2d\x98\x97\x49\xd7\xcb\x07\x3d\x97\x4d\x07\xc4\xf4\x9c\x9c\x18\xb2\x37\x64\x53\xc0\xa8\x4d\xa5\xab\xa4\x96\xea\x75\x64\xf5\xdf\x75\xfc\xb3\x9d\x5e\x11\xc9\x86\x98\x0f\x38\xa8\xa6\x00\x67\x1b\x48\xc7\xe1\xf1\x46\x15\x8a\xc8\x6a\x85\x7d\x92\x74\xdf\xee\xe3\xbb\xa9\x5e\x5e\xb1\x74\x9b\xb3\x17\x7c\x57\x05\x62\x3b\x69\x81\xa7\xda\x62\x4f\x57\xcf\x19\x4b\x59\x1a\x84\x40\xbc\x2d\x79\xee\x51\x1c\x07\x41\x97\xc8\xd5\x16\x08\x5b\x65\x15\xa9\x02\x92\xe2\x90\xc7\x55\x59\x0d\xb3\xf8\x74\x9a\x7d\x65\x65\x29\x81\x6f\xb7\xb0\x77\x4f\xcb\xa3\x60\x1c\x8c\xac\x5a\x67\xd9\x5c\x77\xa8\x6d\xdb\x0e\x97\x7b\xbe\x7b\xc5\x5e\xc2\x42\xbd\xf4\xd5\xc0\xd9\xc3\x69\xb7\xaf\x58\xc7\x09\x71\x00\xed\x57\xc2\xee\x72\xdb\x6c\xb6\xcd\x87\x52\xfa\x2e\xd1\xbe\x54\x33\xe6\x79\xc7\xc7\xee\x61\x20\xf3\xfe\x33\x07\x02\x8e\x39\xfe\xa0\x95\x72\xfd\xb7\x62\x6d\x84\x92\xee\x7f\x61\x55\xb5\x5a\xad\xdd\xf2\xbd\xf5\x42\xbb\x03\x86\x09\xf8\x94\xbb\xfc\x53\xee\x6e\xb1\x95\x3e\xcd\xb2\x90\x8d\x45\xcf\x1f\x19\x98\x52\xb8\x31\x53\x3c\x36\x30\x0b\xd5\xb6\xb9\xba\x8e\x31\xe9\xf8\x18\x74\xab\xe1\x77\x14\x64\xf5\x6b\xc8\x0c\x94\x02\x03\x67\x6d\x10\x3e\x8e\x83\x45\x59\xe6\x2c\x29\x74\x80\x24\xcc\x6a\x89\x2b\x1a\x75\x9a\x13\x7f\xda\xb2\x76\xe9\x77\xe6\x28\x8e\x4f\xa9\xce\xd8\xd1\x91\xd0\x22\xd6\x83\xf1\x46\xe8\x74\x38\x50\x11\xbc\x08\x85\xda\xbd\xf1\x8a\xfb\x35\xe0\xe4\x8b\x72\xb7\x16\x9c\xd6\x5f\x53\xaf\x2c\x96\xbe\x9b\x76\xc0\x2f\xd4\x71\xac\xae\xb6\x8e\xc2\xae\x7e\x01\xc3\x6e\x14\xd2\x4c\x4a\x3a\xc1\xe4\x09\x73\x3b\x18\x15\xa6\xb6\xd2\x43\x91\x08\xb8\xc7\x13\x65\xf4\x85\x61\x70\x12\x84\x71\x1c\x9f\x9c\x19\x4f\x99\x62\x9a\xec\x3b\xa6\x0c\x0d\x2b\x82\xf1\xa1\x6f\x1e\x39\x09\x6f\x45\x24\x0a\x1a\x2b\xd0\xad\x40\x41\x08\xdb\x82\xc9\x3a\xc9\xa4\xbb\x2e\x1a\x93\xce\xa8\xc7\xba\xe2\x5a\x61\x05\x79\x2f\x48\x18\xbc\x8e\x25\x5e\x27\x6f\x98\x8e\x92\x4c\x0a\x4c\x3d\x71\xf3\xcc\x71\x0a\xb6\x45\xab\x61\xdb\xef\x95\x3a\x30\x6d\x07\xda\x49\xb6\xd7\xd6\xe1\xd2\x46\x1d\xb6\xce\x96\x9d\x2e\x75\xb7\xa6\x54\x31\x7f\x55\xe8\x20\x06\xe4\xa8\xec\xa2\x0c\xad\xcb\x73\xc5\x18\x5a\x57\x39\xa3\x76\x22\x43\x38\x17\x39\x34\x97\x45\xa1\x11\x41\x54\x23\xc4\xad\x9e\x05\xa9\x5a\x29\x27\x60\x55\x90\xb1\x93\x0f\x39\x6c\x92\xa4\x46\xbc\x2a\x68\x87\x8d\xaf\x9b\x1b\x15\xe8\xf7\x80\x21\xac\x8a\xa8\xa9\xb6\x2c\xea\xa3\x7e\xfd\x99\x33\x4d\xf5\x14\x89\x9a\x93\x59\xb0\x42\xfd\xfe\xa6\xf3\x80\xba\x87\xab\xc2\xe4\xb1\x79\x02\xb9\xfb\xae\x0a\x75\xed\x25\xbc\x8e\xec\x06\x28\xad\x88\xfb\x5e\x0f\x9f\xd3\xc1\xe0\xd0\x4a\x3a\x1e\x9c\xe9\x78\x01\x53\x7b\x0f\x1a\xa3\xc6\xf0\xf0\x7b\x9b\xb8\xaf\xa9\x59\xd7\x91\x92\xdd\x38\x29\x92\x0b\x21\xd7\x1e\xe3\x6e\xa6\x65\x2e\x11\xdd\x15\x10\x82\x79\xea\xf7\x45\xfb\x85\x61\xd9\x06\x62\x17\x38\xc4\xf9\xc9\xce\x27\x90\xce\xbc\xe8\x0f\x88\x15\x5d\xcd\xd3\xcf\xe7\x53\x2a\xc3\xd4\x19\xf7\xe7\x68\xe5\xa4\x53\xd0\xf4\x0d\x15\xc9\x75\x47\x47\x71\x30\x08\x46\xc8\xa6\x0f\x92\x7a\x10\x8c\x48\x7d\x40\xc9\xf3\x72\x89\x5d\x91\xb7\x55\xf9\x3c\xa3\x9f\xc1\x6d\x90\x31\xb2\xd1\x16\x9c\xe0\xb8\xbc\xc0\x4a\x2c\xeb\x2f\x65\x18\xfc\x09\x67\x74\xae\xa5\x15\x99\x2a\xd0\x65\xb1\xf5\x03\x2d\x2c\x55\x0a\xe2\x16\x4b\xe8\xd5\xa4\x91\x4b\xe3\x30\xe7\x64\x4f\x7e\xc7\xae\xbb\x84\x81\xb2\xf8\xbe\xe1\xcf\x74\x55\xf3\x58\x16\x9a\xda\x03\x7b\xa0\xa1\xe0\x72\x05\xf7\x75\x9d\xd6\x3a\x6d\x5c\x59\xe2\xec\x98\x8a\xb6\x7b\xa1\x95\x58\x51\xe2\x20\xd9\x0a\x18\xb7\x41\x09\x64\x28\x86\xda\x75\x4e\x1d\xe9\x76\xb5\x65\xb8\x3e\x36\x2e\x8a\xfa\x8c\x86\x3c\x67\x99\x53\x23\x1c\x2b\xbe\x03\x4a\xff\x9c\xfa\x64\x03\x86\xa6\x85\xa6\xfd\x74\xcb\x5b\x34\xc1\x21\x01\xce\x59\x26\x23\xa9\x77\x46\x5d\xa2\xfd\x73\x93\x6e\x6e\x82\x6c\x45\xa6\xc2\xb2\x56\xf1\x28\xb2\x4a\xbe\x50\x1d\x1f\xa6\xe6\x11\x99\x37\x7b\x30\x7e\x7b\x8a\xdb\xd7\x42\x8f\x30\x1d\x14\xde\x4f\x4e\x0f\x93\xba\x52\x6a\x2a\x02\xce\xcb\xf7\x0f\x10\x64\x77\x20\x4e\xab\xab\x96\xc7\xc0\xd4\xaa\x3a\x5e\x15\xd3\x03\x17\x82\x20\xcf\xff\xac\x55\x30\xe3\xe4\x9b\xce\x44\x93\xa6\xa9\x4c\x73\x3c\x25\x92\x74\x6d\xa0\xc4\x8b\x75\x13\xcf\x44\xac\xb8\xe6\xbd\x29\xd8\x96\x72\x93\xa7\x69\x3c\x1a\xa1\x8d\xeb\x76\x9b\xe1\x9b\xe5\x92\x44\xdc\xa9\x63\x68\x77\x16\x40\x62\x00\xc7\x91\x91\x7f\x04\x16\xaa\x82\xcd\xe1\x19\x2f\x81\xcf\xa8\x63\xd8\x8b\x3c\x81\xd5\xc3\x65\xf3\x3e\x32\x4a\xa1\x77\x0b\xec\x00\x15\x2e\x37\x22\x22\x0c\x00\xc7\xc1\xdd\xd1\x7e\x6b\x53\xda\xe8\xf8\x97\x32\x2b\x86\xc1\x20\x08\xc3\xd1\xdd\xe0\x6e\x28\xe3\xf9\x9a\x63\x68\xe5\x74\x82\x02\xe5\x1b\x76\x5d\x0f\x01\x20\x94\x0e\xcc\x85\x89\x89\x80\xd0\x2a\x2f\x3c\x45\xbc\xdd\xc1\x31\x0d\xb5\xf2\xff\xa9\xe5\x48\x0f\x87\xd5\xbc\xf7\x1d\x5d\xda\x8f\x9d\xb0\x4b\x0f\xf8\x4a\x05\x0f\xac\x43\x6b\x62\xf1\x5e\x56\x65\x61\xa4\xcc\x2a\x5f\x08\xdb\xe7\xd0\x70\x32\xe8\x0a\x40\x54\xd6\xb0\xc7\x3c\xd9\x69\x07\x55\x15\x72\xb6\x46\x91\xd3\x67\xc3\x60\xc6\xc7\x71\xc2\xd7\x9b\xcf\xc5\x49\x30\xc2\x75\x1d\x05\xf1\x5d\xfd\xfb\xee\x5c\x39\x75\x65\xeb\x9b\x1b\xfe\xbf\xa5\x51\x4b\xd5\x27\x6e\x21\x18\x15\xf7\xd7\x9f\x84\xe4\x27\xbf\x7e\x68\xfb\x8a\x1a\xf2\xc6\xc0\x85\x94\x7c\x29\x6c\x25\x57\x75\x24\x67\xfb\xf8\xf8\x88\xb6\xa9\x6c\xf7\x8f\x8f\xad\x96\x63\x10\xf8\x7c\xbc\xc4\x87\x18\xbd\x0a\xcd\xb4\x9b\x1b\x99\x50\x6c\xf9\x86\xe4\x7d\xca\xea\xe7\xc9\x73\xe5\x7c\x5a\xed\x0f\x3e\x96\xd1\xdd\xc3\xf6\x07\x16\x86\xed\xa0\xde\x4c\x20\xed\xf8\x58\xb6\x67\x08\x6d\xec\x16\xf0\x17\x2f\xdd\xc2\xeb\x3d\xd9\xa6\x41\xc7\xc2\x43\x39\xf9\x9b\x6f\x43\x41\x22\x41\x1c\xa8\x74\x11\x86\xbc\x1e\xbd\x61\xbb\xa8\xe0\x63\xb6\xa9\xd8\x32\x69\x58\x3a\x74\x04\x1d\x70\x8d\x3d\xe1\x8d\x07\x73\x6a\x87\xa7\x35\x0b\xee\x98\xd5\x2a\x82\x24\x99\x04\x97\x28\xc9\xd6\x09\x61\xda\x69\x6a\x1a\x15\xea\x75\x01\x6e\x55\x1c\xb5\x34\xd1\xc4\x81\x3d\x29\xf1\x8d\x59\x3f\x5f\xa3\xae\x77\x55\xa3\xdb\x02\xb3\xde\xb7\x49\x1e\x09\x9f\x13\x12\x40\xe9\x81\x1b\x04\x01\xbc\x12\x00\x7f\xa9\xd6\x51\x23\x24\xe4\x69\xfe\x8c\x7f\xed\x73\x33\x20\xc5\x1a\x28\x49\x35\xfb\x0f\x77\x33\xa8\x3e\xc2\xfe\xa9\xae\x29\xef\x85\x34\x91\xb3\x71\xd7\x8f\x64\x4e\xd8\x9a\x84\xd4\x98\x64\xe9\xda\x63\x10\x84\x9a\xb0\x0a\xfd\x46\xe1\xe3\x3b\xc7\x65\x32\xa9\x17\x52\x5d\xd9\x62\xac\xc4\xbf\xb5\x0a\xe0\x07\x34\x56\xd6\xe4\x9d\x52\xad\x88\x2f\xd7\x9f\x90\x6d\x42\x11\x82\xe3\x63\x83\x38\x84\xdd\xf7\x11\x6d\xda\xef\xbd\x92\x78\x9f\x06\x7c\x77\x95\xd6\x27\x9e\x96\xb8\x16\xbb\xc8\x45\x7d\x0a\xd8\x68\x35\x05\xea\xac\xf1\xf8\x41\x27\xa1\xd6\x30\x48\xac\xe9\x37\x27\xd8\x13\x51\xf2\x36\x94\x5b\x5b\x11\x98\x04\x4f\x5a\x90\xc9\xe5\x0d\x77\x50\x13\x96\x86\x14\x9d\x05\x82\x76\x31\x78\x01\x97\xa4\x98\xa7\xd3\xa7\x12\x3c\x96\x49\x42\x8a\xae\x92\xb7\x79\xde\xb6\x6d\xff\xca\xee\x33\x85\x30\x07\x81\xe7\xf4\x2d\x97\x43\x12\x5c\x42\x5e\xc5\xf9\xac\xba\x8a\xae\x44\x74\x88\x91\x8a\x99\xea\xe3\x7c\x61\x60\x45\x0d\xd5\x6d\xaf\x08\x3c\xf6\xa6\x4e\x7d\x3e\x0e\x3c\x76\xe0\x53\xbb\x55\x69\x67\x9d\x79\x95\xcc\x0d\xb9\x57\x6c\x7c\x19\x70\x96\x84\x2c\xb6\xbe\x0d\x58\x2d\xd7\x89\xf5\x4f\x03\x42\xde\xd4\xe2\xcc\xdf\x96\xbe\xca\xc4\xf4\xc3\x19\x9b\x3e\x64\x62\xf3\xb3\x07\x52\x1f\x47\x71\x57\x86\x53\x5a\x9c\x3a\x94\x25\x3e\x44\x95\x5e\x07\x29\xef\xd5\xa6\xf7\xe9\xbe\xf7\x69\xd8\x1f\xa4\x17\xef\xd3\xbf\xef\xd0\x2c\xf7\xf4\xdc\xa3\xf0\xee\x44\x4a\xdf\x13\x8e\xfd\x7f\x82\xc2\xf9\x47\xeb\x75\x67\x45\xbd\x61\x4b\xd7\xd3\x99\x48\xff\x54\xde\xce\x6c\x3d\xee\x2f\x88\x1e\xb7\xad\x3b\xfe\x47\xa2\x3b\xde\xad\x28\xeb\xd7\x93\xd5\x0f\x2f\x8e\x56\xb8\xce\xea\x8e\x65\xfe\x67\x3b\x96\x79\x4f\xa4\x75\x8f\x62\x78\x92\x67\x49\x1d\xcb\x0a\xc6\xf0\xa9\xf5\xd5\x34\xca\x11\x6f\x1d\x9a\x33\x13\x67\x06\x1e\x17\x63\xf4\x62\xa6\x7e\x8e\xb3\xfa\x25\xbc\x09\x3f\x06\x37\x24\x52\x7e\x06\x5c\x1b\x1c\xee\xca\x4b\x13\x9e\x48\xad\x23\x3f\x99\x7a\xf5\x16\x04\x4e\x78\x25\x2b\xfb\x2e\xfb\x44\xa2\xad\x5e\xb6\x44\x86\x1c\x28\x72\x55\x4a\x9e\x4c\x54\x4b\x0d\x71\x26\xd5\x71\x55\x55\x11\x2d\x45\xf4\x34\x20\xb4\x01\x75\x5b\x56\x3b\x16\xfb\xe9\xc8\x6d\xc3\x9b\x9b\x4e\x5d\x56\x3e\xa8\x09\x4a\x48\x05\xdf\x60\x57\x6e\x62\x02\x3e\x5e\x3a\x26\x7f\x59\xc3\xd6\xd2\x99\xd1\x3a\x69\x96\x57\xd6\x7c\xfc\x20\x9d\x14\xc4\x56\xf5\xe8\xbe\x60\x18\x9a\x31\x88\xe1\xe9\x37\xa9\xaf\xc6\x32\xf5\xc3\xa7\x90\x4c\x9b\xd1\x84\xf3\x72\x6a\x4f\x89\xd9\xbe\xba\x07\x18\xc9\x82\x6b\x32\x2b\xb6\x1f\x6e\x9c\x39\x88\xdc\x3a\x2c\x39\x97\xdd\x53\xa7\x0a\xb3\x74\x2b\x64\x2f\x6e\xbd\x53\x5f\x8e\xf2\x28\xc5\x8f\x1e\xc3\xe1\x83\xcf\xa3\x14\x07\x0a\xc3\x1d\xac\x2a\x98\x6d\x8f\xe1\xe7\xf0\xde\x3f\x78\x7d\xc3\x71\x38\x1c\xff\x21\xfc\xec\x1e\xba\xd8\xe5\x39\xc7\xc7\x1c\x8a\xf3\x7d\x1c\x40\xab\xb3\x06\x38\x51\xe0\x2a\x0a\x00\x67\x67\xf3\x71\x53\x3e\x2b\xdf\xb1\xea\x51\x52\xb3\x61\x38\xc2\xe4\xfb\x73\xe1\x38\x82\xd7\x33\xa7\x43\xc0\x14\x74\x59\x00\x5e\x57\x44\x7d\x63\xf2\x58\x27\xe1\x35\x05\x40\x4f\x4e\xeb\x4d\x73\x6d\x20\x98\xd8\xed\xc7\xc7\xe2\x87\xf4\x56\x47\x28\xf9\x4f\xdf\x43\x2c\xce\x70\x67\x96\x8e\x2f\x3b\x16\x36\x30\xe1\x82\x70\x6a\x15\x34\x3f\x95\x52\x7f\x63\x6b\x18\x4a\xc7\xf4\x7a\x80\x98\xd0\x5a\x88\x68\xd6\xe7\xf4\xd3\x43\x18\x3c\xc5\x34\xf2\x65\xab\xa1\x5d\xa3\x09\x6f\x0d\xa0\x95\xfd\x50\xfe\x1d\x55\x87\xa5\x7e\x14\xc8\x42\x35\x56\x9b\x79\x70\x50\xe8\x00\xfe\x68\x07\x41\x35\x3f\xf5\xd9\x45\x9c\x7c\x3c\xa9\xca\xf5\x5f\x5f\x7f\xff\x4c\x00\x0d\xf5\x9b\x25\x8c\x4e\x4d\x9a\x14\xa2\xb8\xdb\x22\x36\xbe\xe4\x32\x18\x4a\x8c\x87\x3e\x44\x10\xce\x71\x6a\x89\xa7\x75\x08\x5b\x98\x79\x8b\xf2\xe9\x59\xef\x70\xac\x6b\x1f\x9b\x87\xf0\xb1\x29\x5b\x6c\xfb\x0d\x42\x7d\x2c\x2c\xa6\xe5\xe5\xe5\xe5\x61\xd6\xa1\x2e\x77\xfa\xef\x60\x21\xff\x2d\x2c\xe0\x33\x98\x84\x7d\x9c\x5f\x9f\x0f\xdb\x6e\x9b\xa8\x3f\xde\xd2\x24\xea\x8f\x5e\x4e\x2f\xb9\x30\xbd\xca\x6a\x3e\x2b\x2f\xa5\x3b\x34\x29\x39\x07\x4f\x85\xa2\x80\xdf\x99\xd3\x61\xce\x9a\x10\x35\x62\x9c\x9c\x71\x5e\x5e\xa2\x48\x0e\xec\xff\x93\x3c\x2f\xdf\xfd\x50\x65\xeb\xac\xc9\xde\xb2\x1a\x9f\x0b\x89\x87\x84\x69\xf6\x95\xe5\xfb\x11\x34\x65\x85\x31\x96\xe9\x3e\xd2\xf5\xf9\x78\x73\x73\x64\x35\x70\x5b\x7d\x9f\x59\x36\xbf\xb9\x81\x0d\x78\x80\x64\x49\xb8\xa1\xb4\xc4\x4b\xae\x2e\xa2\x29\x29\xdc\xba\xae\x7c\x40\xfc\x44\x1d\xb4\x7a\xed\xee\xf7\xca\xb0\xb5\xca\xae\x53\x93\xea\x6c\xd8\xb6\xb8\x3e\x42\x2c\x8b\x1f\x62\x85\x88\xac\x17\x68\xc3\x25\xf3\xbe\x78\xc9\x03\xc8\x78\xb9\xd6\x06\x73\xaf\xad\x6c\xb1\x63\x86\x56\x31\x4e\xa0\xb0\x0d\x43\xa2\xa2\xf0\x32\x56\xbf\x8c\x7b\xbb\xd9\xb1\xd8\xfc\x3c\x84\xea\x61\x24\xd5\x0f\xb4\x82\xff\xe0\x3b\xfa\xc1\x01\x81\x9c\x0b\x77\x8f\xb9\xb9\xec\x8d\x66\x60\xeb\x7b\xd4\x98\xab\x07\x0c\x8c\xe2\x2f\x7a\x80\x45\xac\x14\xd3\x78\x5e\xd7\xb4\xb9\x3e\xcc\x70\x1e\x3c\xc4\x7b\x0d\xdb\xa9\xa8\xa2\x43\x14\xd1\x61\x7b\xef\x58\xc7\x73\xb8\x75\x59\x6d\xae\xfe\x47\x49\x29\x7e\x2f\x66\xf1\x1f\x7d\x54\x7e\x27\x1c\x37\x7f\xf7\x21\x36\xf1\x1f\x22\x17\xf9\xbc\x47\x2e\xf2\x45\x8f\x4d\xfd\x1f\x8d\xe0\x54\x9d\x32\x0b\x8f\x4f\x78\xf1\x4a\xe2\x88\x4b\x44\xba\xa8\x51\x6e\x26\x37\x3e\xcf\x9f\x2f\x2e\xc6\x56\x3e\x94\x01\xcd\x6b\x62\xb4\xb9\x47\x74\x02\x93\xe4\x5a\x90\x73\xfc\xb1\x41\xf9\x16\x75\x2c\xeb\x1d\xdb\xf9\x03\xec\xeb\xcb\xc2\xb5\xa9\x2f\x8b\x7d\x06\xda\x5f\x78\xd9\x11\xaf\x38\x89\x23\xaa\x29\x4f\x4a\xd2\xd4\x6f\xcf\xff\xe5\xc5\xc5\x98\x64\xee\xb5\xff\xff\xd2\x6f\xff\x9f\xa4\xe9\x37\x6c\x55\x56\x3d\xa5\x1c\x10\xd2\xd6\xbe\xb2\x3e\x28\xb4\xbf\xff\x5e\x12\x2a\xc7\x54\x7f\xac\xf3\x2c\x50\xd7\xca\xde\x04\x57\x46\x70\xe7\xc9\x12\x81\x4d\xd4\x96\x17\x16\x5d\x22\xf2\xda\x85\x9b\xf7\x6f\x12\xbb\xcf\xbe\x98\x4f\xa5\x12\x27\x47\x7c\x7e\x35\x36\xf2\x6d\x23\x73\x2b\x32\xaa\x2d\x67\x09\xc2\x1e\x83\x69\x3c\x7c\xb4\x99\xf4\x45\x56\xff\x94\x55\xcd\x36\xc9\x27\xa0\x39\xec\x98\x4d\xfb\xda\x0a\x50\x5c\x44\xa0\xcc\x4f\x69\x5b\xdd\x51\xf6\x82\x89\x69\x05\xad\x5f\x69\x71\x2d\x02\x46\xfd\x7f\xec\xfd\x6b\x77\xdb\x38\xb2\x28\x0c\x7f\xdf\xbf\x42\xe6\xda\xcb\x2d\x6e\x33\x8a\xed\x4c\xcf\xc5\x1a\x76\xde\x74\xec\xf4\xe4\xe4\xba\x63\xf7\xf4\xcc\x51\x6b\x74\x68\x09\xb6\x99\xc8\xa4\x86\xa4\xe2\x78\x64\xbe\xbf\xfd\x59\xa8\x2a\x00\x85\x0b\x25\x39\x49\x77\xcf\x3e\xeb\x7c\xb1\x45\xa0\x70\x2b\x14\x80\x42\xa1\x2e\xa4\x3a\xab\x26\xb9\xee\x07\x43\xff\xa8\x1b\xab\x65\x5c\x4d\x08\x04\x53\x1c\xda\x45\xcc\xdd\x36\x89\x74\xb3\xc0\x55\x9e\x96\xcb\x6a\x2a\xa2\x78\x50\x16\xe2\x27\x08\x3b\x4c\xc5\x25\x22\x0b\xc9\x5c\xb1\xaa\xdb\x78\x68\xda\x9e\x64\xf6\x0e\x63\x75\x82\xc5\x66\xdf\x62\x40\x1b\x7a\xbc\x5d\x3f\xe1\x92\xdd\xea\x37\x6e\xcb\xf4\xb9\x4d\x26\x59\x5d\x8b\xaa\x81\x1d\xee\x65\xfe\x81\xc5\x43\xa2\x76\xe2\x55\x9b\x74\x74\x95\xc1\x66\xf3\xf9\x79\x36\xfd\xa0\x9e\x40\xed\x95\xe8\x4e\x0a\xf8\x93\x8c\x26\xf4\xfd\x53\x3e\x9f\x63\x18\xa7\x28\x1e\x3a\x2f\xa8\x6b\x0b\xea\xf0\x4f\x51\x3c\x54\x1d\x30\xf7\xf9\x78\xe8\x6d\x28\xf7\xe8\x07\xdb\xf2\xb6\xee\x44\x6b\x0b\x49\x8f\xec\x0d\x23\xb1\x45\x33\x6e\xae\x63\xbb\x69\x50\x0b\x9a\x18\xa8\x94\x85\xe6\x6d\x7c\x02\x59\x26\x77\xf1\xc0\x76\x00\x4a\xa1\x3d\x84\x3a\xcd\x22\x21\x69\xd9\x0e\x0b\x2c\xc2\x6c\x09\x0d\x20\xb7\x76\x8d\xd0\xc6\x2a\x95\x27\x5e\x1f\xef\x60\xb6\x16\x34\x8a\x56\xe6\x65\x21\x48\x79\xa8\xee\xe3\x12\x09\xd4\x95\x04\x2a\xd0\x21\x4b\x54\x84\xe6\x36\xd7\xa1\x99\xc9\xbd\x6f\xd1\x0c\xf2\x9a\x6f\x82\xb5\x35\x26\xbe\xf6\x20\x3a\x95\x8a\x54\x91\x8b\x9b\x36\x99\xf9\x2e\x01\xf2\x8b\xfe\x8e\xb5\x36\x2c\x7b\x20\x67\x4d\x33\x04\x7b\xcb\x1d\xe3\x3a\xd9\x89\xf1\xca\x49\x60\xbe\x03\xd8\xba\xb4\xdc\x08\x4c\xb2\xd9\x4c\xd3\xc8\xd3\x2b\x31\xfd\xd0\x8f\x57\xea\xc4\x19\x54\xa2\x5c\x88\xa2\xbf\x9a\x40\x4c\x3e\x0d\x77\x14\x8e\xc8\xca\xc6\xd9\xca\xbd\x80\x38\x91\xe7\xc5\xb1\xbc\xcc\x19\x45\x8b\x8b\x78\x75\xd1\x27\x33\x79\xb0\xbf\x14\x33\xf0\x28\xe4\xb2\x8a\x3c\xcf\xde\x30\x3e\x85\xa2\x7d\xd4\x62\x7e\x91\xba\x77\x7c\xb7\xce\xad\xb5\x49\xb4\xf7\x0f\xe6\xf4\x19\x13\x75\xc0\x1a\x0a\x93\xa7\x34\xfe\x49\x89\xdb\xf2\x61\xc2\x9f\xa0\xb8\x3f\x91\xbc\xb8\xfc\x6b\xf8\x6d\x09\xa0\xcc\x00\x82\x0a\x2d\x0e\x8c\xab\x72\x6f\xfa\xa6\x56\x22\x7c\xe0\x79\xac\xac\x42\x68\x84\xd9\x6c\xe6\x9d\x0d\x26\x0b\x36\x6c\x2f\xc3\x1e\x03\xc4\x09\xbc\x91\xdb\xda\x5c\x64\xd5\x3b\xb2\xe7\xb4\x0e\xcc\xf9\x05\xa3\xc4\xb8\x1d\xb2\x89\x35\x9e\xab\xd3\x95\xb7\x45\x7a\xce\x34\x70\xe3\x76\x7b\xd5\x26\xee\x36\xe9\x15\xdc\x0a\x11\xe1\xd1\x2a\x7b\xd4\xa7\xd6\xa8\x59\xab\x50\x8c\x75\xfa\x85\x95\xd1\xdd\xa7\xee\x8a\xad\x0e\xf2\x72\x4a\xb6\xec\x49\xf4\x1d\x8a\x49\x02\x14\x92\x70\x6a\x8d\xdb\xc4\x1b\x70\x70\x9f\xd2\xe7\x33\x6d\x53\x3c\xd1\xc3\x19\x6e\x56\xab\x1b\x83\x8b\x28\x8c\xa3\x28\x99\x69\xb4\x44\x41\x6c\x45\x6d\xdc\x26\xa1\xe9\xbe\x7f\x2f\x03\xb5\x7c\xed\x8e\x06\x56\xd1\x91\x15\x64\x3f\xc4\x23\x6c\x3b\x67\x09\x1f\x8d\xe9\x9a\xcf\x3e\x7c\x56\x85\x26\xea\xa7\xc2\xf7\xba\x91\x74\x32\x5e\x5b\x13\x60\x60\x1c\x01\x76\xec\xbe\xd5\xd9\xa3\x90\xab\x6a\x2b\x3a\xe1\xdc\x0a\x07\x50\x2b\xf8\x25\xaa\xdd\x5d\x2a\xdb\xbb\x82\x99\x4c\x6b\xa9\x39\x5f\x57\xa1\xc8\x05\xda\x13\x29\x3f\x18\x86\xcc\x07\x01\x1c\x70\x01\x89\xb9\xd5\x09\x23\x31\xb7\x0e\xa5\xa2\x19\xa0\xaf\x83\x27\x4d\x3f\x37\x0f\x56\x36\x9f\x53\x06\x6c\x96\xc6\xe6\x50\x5b\x6b\xfe\x27\xf1\x19\xda\xa7\xdc\x6b\xa6\x3e\x7d\x87\xdd\x46\xfe\xe8\x33\xde\x9e\x17\x7e\x3a\x88\x19\x9d\x16\xce\x09\xa3\x7a\xd0\x87\xb0\xee\x21\xbe\x8a\x9d\x0e\x81\xe3\x4c\xb9\x5e\xd2\xd3\xbf\xee\x30\xc1\x6b\x93\xea\x10\xea\xf8\xb2\xd8\xa1\xf2\xfe\x16\xd4\x60\x21\xb3\x0f\xcb\x22\x07\x64\xd2\x5b\xdb\x37\xda\x76\x88\x41\x3b\x46\xc7\x5c\xf1\x70\x3c\x74\x0d\x7c\x58\x7d\x7b\x51\x2f\x2f\xc8\x70\x71\x68\x6b\x2f\x63\x04\x3e\x78\xbc\x68\x43\xd4\xc1\x6d\xdf\xf4\x63\x73\x60\x10\x07\x21\x6d\x1c\xaa\x37\x68\xb8\x86\xba\xb7\xbc\x45\x73\xbf\x54\xc2\x38\xa8\xc9\xb3\xa0\xf9\x0a\xb6\x48\xc6\xe3\xc7\xee\xae\xed\xf9\xe2\x12\x39\x92\x77\xe5\x4d\xed\x66\x39\x6a\x1e\xf2\x96\xcc\xf8\x17\xdf\x5e\x63\xa0\x69\x35\x64\xad\x64\x1e\x02\x48\x57\xbb\xf9\x94\x44\x28\x66\x65\x5c\xaa\x62\xc0\x23\x66\xb4\xc4\x1f\x4b\xb4\x48\x48\xfd\xb0\x9e\x52\x38\xdf\xcc\x7e\xdb\x5e\x88\x35\x19\xa7\xe6\xe7\x36\xcf\x2c\xf3\x72\x6a\x5e\x59\x3a\x9f\x4d\xb6\x91\xd3\xaf\x93\x4f\xcf\xcb\xa9\x17\x41\x7d\x5e\x4e\x87\x1d\xaf\xe4\xec\xf5\x73\x4a\x8b\xb3\x6e\x8c\xc7\x88\x79\x39\x85\xef\x76\x9b\x01\x2e\xb2\xaa\xc9\xb3\xf9\x16\xef\xe7\xae\xd7\xe2\xed\xf5\x35\xd9\x83\xcf\xaf\x1d\x9b\x7e\xbb\x47\x72\xdf\x71\x2c\xbc\x91\x43\xf2\x06\x11\xf1\xa3\xa0\x84\xf8\xdc\x75\xb3\xaa\xbd\xac\x6e\x9a\x52\x9a\x0f\x1e\xc1\xe9\x97\x72\xfa\xb0\xad\xba\x87\x22\x11\xbe\xc3\xa8\x98\x06\xda\xcd\x3a\xb3\xb0\xf4\x2e\xaf\x17\xc5\x1b\x3e\x04\xaa\x0f\x0d\x71\x83\x16\xff\x14\x40\xeb\x8d\xb1\xdc\x93\x7b\xcc\x5b\x2c\xc7\x9f\xae\x55\x3d\x0c\xb8\xed\xf6\xd9\xc0\xb1\x89\x4e\x1b\x94\x95\x2e\xed\x5d\xa1\x56\xac\x29\xb0\x8e\xc6\xcd\x2e\x4e\x99\xc7\x95\x8d\x55\x63\x68\x9e\xec\x5a\x48\xa8\x3a\x05\x7f\x2a\x64\xcc\xf2\x30\x8a\x93\x79\x56\x37\x32\x27\xd5\x20\x23\xfd\x8b\x05\x60\x5b\x9b\x9b\x46\x93\x68\x4f\x55\xb4\x46\xe3\x33\x59\xca\xde\xd6\x72\x0f\xc0\x93\xda\xd4\x85\x06\x55\xb2\x43\x9a\xd1\x03\xb9\x94\xfa\x7a\x56\x02\xd5\xf4\x9d\x1a\xe2\x64\xa6\xf5\xd7\x75\x24\xe0\x1d\x55\x68\x77\x37\x58\x07\x7a\x83\xf1\x5c\xdb\xdf\xdd\xf9\x75\x75\x71\x75\x8e\x33\xbe\x6d\x36\xc4\xfa\x2a\xab\xc4\xcc\xec\x87\x9f\xa7\xf8\xb3\x6e\x4f\x5a\xf3\xde\xe4\x6d\x26\x9b\xb6\x0b\x1d\x92\xb3\xb9\xaa\xfb\x21\x83\x32\xb5\xea\xfd\x48\x5f\x55\x59\xb2\x64\xf8\xf2\xf9\x79\x27\xa2\xa9\xb3\xb7\x98\x90\x1f\xda\xf4\xc4\x37\x0b\x03\xe5\x12\xa6\x99\x62\x31\xdc\x2c\x8c\x6b\xb3\xd5\xf4\xa8\x89\xfe\x1c\xdd\x87\xcf\x39\x7c\x7e\x6d\xe7\xea\x9b\x1e\x92\x37\x11\x84\x76\x93\x18\x3a\x40\xb6\xdd\xf1\x35\x92\x5d\xf5\x3e\xda\x72\xc3\xc6\x90\x5b\xcd\x1f\x99\xe6\x84\xd6\x97\xaf\xa7\xb2\x9e\x97\xf8\x05\xf5\xf2\x36\xce\x7a\xc7\x84\x06\xe6\x7f\x1b\xcd\x00\xdb\x62\xca\xe5\x43\x6c\x0b\xaa\xcf\x61\x47\x1c\xed\xb9\x4d\x34\xb4\xb4\x22\xe4\x78\xee\x86\xb6\xd3\x9f\x33\x8a\xe9\xeb\x3c\x9f\x21\x16\x8c\xd3\x82\x65\x93\x4c\x9b\x4f\xfa\x3a\x14\xba\x4c\x7e\x77\x68\x08\xd9\x76\xba\x80\x52\x85\x60\xfc\xd1\xa9\xef\x6b\x4d\x5d\x9e\x9c\x48\xa1\xc3\x72\xd9\xa4\x56\xe8\x51\x79\x69\xe9\x8a\x3c\xea\x6a\x5e\xdb\x1d\x52\xcb\xa7\x5c\x36\xad\x62\xdc\xee\xe9\xa4\x49\x62\x23\x28\x07\xd5\x5c\x10\x9b\x9e\xad\x56\x20\x2a\x17\xad\xd9\x3d\x9d\x6b\x0e\x39\x97\xfc\x1a\x11\x54\x40\x1b\x6b\xab\x30\x23\x1b\xe2\x9b\x6c\xde\x05\xbe\xfc\xc2\xf6\x6f\xa7\x58\xf5\x75\x8e\xa2\x37\x30\x9d\xbf\x54\x8c\x0f\x13\x3e\xd3\x53\x59\x32\x59\x5d\xa1\x26\x02\x1a\x4b\x9e\xda\xc8\x1f\x78\x60\x8d\xce\x08\x18\x7f\x0c\x05\xc0\xe8\xd6\x52\xfe\xd3\x3d\xb5\x94\xff\x14\xdc\x65\x01\xbd\x14\x23\x61\x93\x5e\xd3\xcb\x37\x3f\x9d\xbc\x7b\xfa\xe4\xf4\x64\xf2\x64\xf2\xbf\xd3\x87\xff\x18\x65\x0f\xfe\x35\x7e\x98\xfc\xf5\xf9\xc9\x4f\x93\xb7\xef\x4e\x9e\x3d\xff\x5b\xfa\xf0\x1f\x92\xf0\x7f\x1e\x3c\x74\xa2\xf0\x2a\xb7\x13\x72\x7f\x7c\x1a\x72\xa5\xe3\x9b\x2a\xa9\xe8\xea\x7e\xb8\xf5\xf5\x76\x31\x12\x04\xed\x4f\xac\x00\xa2\x1f\xc9\x59\x9b\x36\x57\x09\xc4\x4d\x25\x13\x1a\x12\x8b\x29\xd0\xbd\x88\xba\x1f\x8d\xd1\x28\x79\x68\x35\xc3\xb3\xa3\xd3\xb3\x77\xcf\x5f\xff\x10\xf9\xb6\x30\x3c\xc5\xf4\x10\x2d\x64\x42\xd6\x3c\x51\x3e\x53\xd5\xc6\x64\xdc\x91\xcf\x02\x76\x22\x0a\x99\x04\x41\x65\x8c\xa1\xb5\x6a\x4f\x96\x0e\xf5\xce\x94\x71\x7b\x68\x72\x30\x18\x2c\xb3\x5c\x64\x6b\xd2\xc4\x51\xe8\x32\xfb\x30\x32\xe0\x0d\x13\x1e\xb6\xfd\x03\x15\xaa\x3a\xc7\x20\xb8\xe8\x9c\x42\x60\xb4\x3a\xed\xbc\x26\x99\x2d\x17\xe8\x36\xcb\xd8\xa3\xcd\xe2\x95\x29\x39\x10\xf8\xfe\xfd\x7c\x96\x52\xee\x50\x16\x01\xb9\xb1\x2a\xd1\x64\x97\x56\x11\x32\xe4\x49\x55\xa6\x55\x82\xba\x11\xaf\x54\x7f\xe8\x3f\xf3\xe4\x30\x64\x75\x69\x07\x11\x1a\xd0\x6f\x9f\x7b\x84\xb0\x3a\xa2\x0b\x6b\xf7\x43\x1e\x3c\x6f\x36\x5c\x31\x2f\x0f\x2b\x65\x6d\x03\xa9\xb1\xd6\x8c\xd7\x02\x8e\xc6\xc1\x61\xea\xfc\x75\x99\x92\x63\x98\x66\x4d\x47\x27\xd9\x90\x02\x63\xca\x5c\x7f\x36\x16\xc6\xbc\x5c\x70\x7b\x60\xd5\x32\x5b\x2e\x70\x55\x19\x47\x77\x68\xe1\xd5\xc2\x4a\x8a\x9d\x25\x62\x7d\x02\x31\xb0\xf5\xad\xfd\x40\x71\x20\x3e\x3d\xad\x72\x8f\xd4\xbd\x71\xed\xac\xb1\xe8\x9b\xaa\x60\x87\x5d\x3b\x16\x7a\xad\x29\x2f\xd8\x76\xc3\x7c\xe8\xd0\x4b\x02\x57\x96\x58\xc2\x99\x41\xbd\x03\x2d\x0b\x53\xd2\x84\x6b\x20\x17\x8b\xa6\x4e\x78\x18\x80\x1d\x6b\xdd\xbc\xa2\x0f\x76\x10\x28\xca\x21\xae\x07\x05\x15\xe3\xe5\x7c\xbe\x96\x52\x46\xe7\x63\xe6\x58\x19\xc0\xf9\xf0\xb6\x74\x83\x22\xcb\x91\x53\xc4\xf5\xb8\x70\x3d\xa4\x38\x08\xd9\xd0\x53\x8c\x3e\x1a\xf2\x0e\x53\xb7\xad\xf6\x9b\x6b\x53\x1d\x6c\x7f\xa6\x5e\xa5\xb7\x10\xe8\x9c\xd9\x4c\x4d\xd7\x9c\xf8\xd8\x8e\xcd\x0c\x68\xa9\xd9\xe3\x08\x39\x75\x52\xc2\xc0\x28\x18\x64\x88\x7c\x33\x9a\x00\x13\x01\xaf\x95\xca\xa1\xd1\x72\x3e\xf7\x9c\xf1\xc0\x6b\xd3\xdd\x1d\x7b\xdd\xa2\xd6\x98\xb7\x72\x35\x21\x11\x7f\x94\x09\x01\xa8\xce\xb4\x74\x11\x33\x38\xe1\x07\xa2\xff\xf2\xb7\x29\x6a\x4a\x21\x6e\x80\x49\xdb\xc8\xb0\x40\x2c\x13\x22\x3f\xdb\x7d\x3d\x36\x84\xba\x21\x5d\x92\x67\x3a\x84\x77\x77\x2d\x76\x8a\x96\xb3\xac\x63\x77\x77\x87\xb1\x54\x2c\x23\x5e\x61\xcd\xdc\x29\x28\xf6\x79\x0d\x63\xb0\x70\xfd\xae\x50\x77\x55\x49\xbe\x92\xa8\x7a\xca\x82\x95\x8e\x49\xb1\x6e\x28\x70\x1f\xee\xb0\xcb\xa6\x92\xad\xdd\x51\xe8\xba\x6b\x3d\x4a\x61\x9e\xba\xec\x46\xb5\xf4\xdb\x0c\x2b\xe6\x61\x6a\xec\x8e\x0d\x59\xcd\x56\xc8\xac\x54\xf3\x14\xd4\x19\xb0\x07\x56\xa3\x45\x2d\xa7\xc7\xd6\x57\x3f\x3e\x52\x44\x41\x86\xcc\xa1\xba\xd3\x8b\x02\x1c\x8b\xf3\x5a\x07\xdc\x37\x40\x57\x0e\x11\xd9\xee\xee\x0e\xaf\xd6\x2a\x19\xce\xd0\x6c\x02\xcf\xb6\x0c\x79\x55\x94\x2a\x46\x83\x46\x58\x66\x97\x5b\x2b\x57\x6b\x19\x8a\xad\x20\x02\x34\x24\x2b\xa0\x88\xbc\xc9\xf3\x07\x4c\xc6\x31\x32\xdf\x16\xfa\x62\xf0\xd1\xf8\x20\xff\x9a\x8e\x26\xd6\x48\x6e\x82\x94\xaa\xee\x38\x41\xa7\xe0\x41\x49\x23\xdc\xed\x87\xcc\x55\x18\x59\x3e\x23\x50\xc0\xaf\x83\xf5\x30\x6c\x86\x9d\x9a\x9f\xdb\xc8\x40\x6e\x73\x31\x9f\x6d\xf1\xe6\xe9\x8a\x39\x7e\x13\x09\xb2\x7b\x17\x3f\xa4\xbb\xf8\x26\x31\x1e\x0c\x32\x64\xf9\xd8\xe1\xe7\xc3\x44\x00\xd9\xdd\xdd\x31\x4a\xca\xf3\xec\xb6\x5c\x36\xf2\xea\x94\x5f\xdc\x23\x3e\x08\x1a\x6f\xca\x3c\x53\x15\x3b\x81\xa2\xb8\x6d\xb1\x10\x74\xd3\x09\x6d\xb0\x6e\x0e\xe7\x65\x06\xea\x35\x81\x07\x1a\xed\xe1\x7f\x82\xd4\xb9\x95\xa8\x89\x2c\xfc\xaa\xaa\xec\x34\x90\x9c\x67\xff\xba\x9d\xc8\x76\x7f\x89\x17\x86\xaf\x69\x13\xfe\xd4\x09\x95\xb0\x81\xb2\x02\x32\x98\x80\x2c\x08\x88\xf4\x44\xe2\x67\x93\x8d\x78\x59\xbc\x2c\x33\xff\xe1\x1b\x93\x37\x0a\xcf\x9d\x40\xa3\x2c\x0a\x40\xd9\xd4\x4d\x95\x2d\xfa\xd3\xe6\x93\x56\xbf\x12\x72\xe3\xa9\xd3\x6f\xea\x69\x95\x2f\x9a\x11\xe8\xd4\x46\x92\xfa\x1e\x7e\x62\xb3\x13\x8d\x93\x5e\x08\xa2\xca\x6e\x2c\xa8\x6f\x86\x88\x8b\xbe\xae\x39\x91\x8d\x81\xe2\x48\xdf\xd5\xfd\x82\xfa\xe8\xb6\x43\x76\x11\xca\x2c\x2c\x9f\x8b\x14\xf3\xe1\xea\xd4\x8f\x64\xab\x10\x0c\xa3\xa3\xe5\xc7\xc4\xbe\x2e\xaa\xf2\xd3\x6d\x9f\xbd\x0f\x50\x6d\x89\x49\x8a\x8f\x2c\x58\xf7\x41\x41\x15\x70\xd2\xcd\x4b\x2d\xec\xc2\x56\xe7\xc0\x61\x9f\xca\x7e\x50\x64\xd7\x22\x8a\xef\xee\x2c\x90\x7c\x26\x93\xa2\x6c\xb1\x98\xe7\xd3\xac\x01\x6f\x61\xfa\xb4\xa6\x26\xfb\x54\xe2\xaa\xb9\x9e\xf7\x63\xe0\x8c\x50\xc7\xe7\xec\xe4\xd5\xdb\x97\x4f\xce\x4e\x4e\x47\xbc\x0f\xe3\x1d\x7e\x29\x5e\x35\x57\x55\x79\x03\xce\x3b\x0d\xa1\xf5\xbf\x51\x2f\xbb\xf0\x24\x3e\xeb\x45\xdf\xec\xf1\x2a\xf6\xbe\x89\x7a\xd9\xbc\x12\xd9\xec\x96\xde\xe1\x07\xdf\xc4\xed\xda\x46\x4d\x68\x74\xea\x2d\x2a\xc4\x81\x8a\xb6\xb1\x0f\x30\xb4\x16\xaf\xcc\x6f\x9a\xea\x59\x39\x05\xc9\x7f\x6c\xbd\xec\xa3\x6f\x3f\x67\xe5\x99\x07\x07\xbc\x74\xba\xa1\x40\xc2\x11\x4b\x12\xa7\x96\xb8\xc5\xa5\xd3\x27\x9d\xa9\x27\x7c\x16\x34\x55\xb2\xd4\x78\xc5\x3e\x06\x79\x91\x37\x79\x86\x21\xf3\x56\x12\x8f\x47\xd1\xac\xbc\x56\x98\xad\xa3\xc4\x00\x1c\x99\x91\xb7\xf1\x70\x43\x25\x1d\x63\x8e\x92\xec\xa2\x11\xd5\x9a\x46\x3a\x0a\xb6\xb1\xcd\xed\xf0\xd3\x8c\x77\xab\xf3\x48\x50\x82\xfd\x5f\x5c\x51\x8b\x89\x78\xfd\xe8\xd1\x07\x1d\xfb\x97\x5c\x16\xa7\xd9\x85\xb0\x94\xb4\x24\xbd\x07\x63\xe8\xa2\xea\x96\xdb\xd0\x40\x55\x92\xaa\x1f\x66\x95\x9d\xfc\xed\xec\xe4\xf5\xf1\xe4\xed\xbb\x37\x67\x6f\xce\xfe\xfe\xf6\xe4\x54\x5e\xa4\xaa\xa5\xb8\xbb\xeb\xc8\x1f\x60\xc5\xf1\x0a\xff\x1b\xa3\x04\xd3\x4a\x40\x0b\x5f\x8d\x02\x6d\xdf\xba\x3c\xb8\x28\xb0\x75\xd3\xb5\x36\x18\xfc\x36\xef\xc2\x9d\xfc\x9a\x7d\x8a\x7f\xd1\x53\x95\xa8\x2e\xdd\xda\x3b\x9c\x03\xac\xf5\x3d\x68\x3d\x5e\xf1\x8c\xba\xc1\xe5\xb1\xbd\x37\x80\xdf\xd0\x0f\xcd\x6f\xe0\x24\xe0\x2b\x3e\xc1\x6f\x17\xbb\x3a\xcc\x8f\x07\xf8\x21\xdb\x51\x80\x31\x86\xae\xc4\x3f\x97\x79\x25\x5e\x95\xb3\xe5\x5c\xf4\x23\x3d\x81\x64\x27\xb8\x3d\x1b\xf5\xb9\xce\x00\x80\x66\x37\xbd\xa8\xb9\xc6\xf2\x81\x00\xeb\xdb\xb9\x4b\x0c\x39\x49\x34\x4f\x73\x60\xa8\x78\x0a\x34\xee\xc7\xce\x67\x99\x38\xa8\x0e\xb8\xda\x80\xc8\x45\x40\xd5\xb1\xd4\x75\xf6\xe5\x07\x61\xfb\xf2\x35\xda\x57\x87\xde\xb3\x9e\xde\xc3\xc3\x61\x06\xb9\xd3\x67\x13\xdc\xd4\x0a\x62\x4a\xda\xf7\x8e\x15\x9d\x76\xde\xac\x7e\x60\xb2\xae\x22\xd5\xbf\x6c\x03\x3b\x90\xbd\xf0\x0f\xcc\x46\xfa\xd3\x63\x55\xb6\x5c\x80\xa8\x34\x5a\x54\x82\xec\xd4\x30\x79\xb9\x98\x65\x8d\x78\x3e\x43\x51\x3e\xda\x67\xb2\x48\x87\x26\x15\xc3\xfd\xa1\xa3\xe3\x10\x02\xb8\x35\x9b\x63\xd3\x9e\xd7\x68\x6c\x2e\x7f\x87\x0d\x43\xad\xae\x60\xac\xc4\x69\x56\x4c\xc5\xdc\xc9\x09\xf4\xb9\xd5\xc1\xa5\x4d\xb7\x55\x4c\x69\x26\xe3\x24\x03\x09\x90\xb1\xe0\xa1\xc5\x90\x65\x46\x49\x58\xd2\x36\x10\x51\xab\x75\x2a\x2c\x33\x37\x95\x68\x4c\xdc\x5e\x30\xd3\x4b\x70\x69\xee\x5a\x89\x18\x09\xb9\xed\x1f\xdc\xa2\x01\x8a\x1a\x60\x51\x8d\x63\xbf\x40\xa1\x13\x54\x09\x32\x78\xb7\x68\xc2\xa5\x92\x61\x30\xdc\x82\xed\x78\x1a\x15\xf1\x78\xa9\x96\xe9\xe3\x41\x40\x44\x32\x2f\x3a\x2b\xbf\x07\x5a\x30\x03\x44\xda\xa0\x0b\x11\xee\xad\x51\x34\xc4\x5f\x7b\xa9\x41\xb4\x44\x6f\xd5\x9c\x65\x97\xfd\xd8\xce\x55\x76\x03\xa1\x32\xa2\x98\x61\x09\x1e\x70\x12\xe1\x82\x16\x4f\xf0\xb8\x09\xeb\x25\xb5\xd7\x91\xd2\xae\x92\x98\x70\x8c\xaa\xd0\x07\x3d\x5c\x56\x08\x20\x05\xa2\xb8\xbb\xd3\x9f\xec\x92\x42\x69\x51\xa4\xe5\xf1\x3b\x54\xac\x97\x17\x75\x23\x09\xb7\xbc\x60\x07\x4d\xac\x8b\xe8\x68\x04\x18\x1a\x22\xbf\xe8\x63\x4f\x35\xc0\xe6\x18\x0b\xaa\xac\x37\x35\x3e\x26\xea\x9b\xbc\x99\x62\x1c\x2b\x24\xec\x78\x35\xcd\x6a\xc1\xf6\x80\x23\xf8\x36\xd4\x7e\x74\x5e\x89\xec\xc3\x10\x52\xf3\x02\xa7\x39\x3a\x0a\x5e\xca\xa2\xd3\xf2\x5a\x34\x57\x79\x71\xd9\xbb\x2d\x97\xbd\x59\x3e\xeb\x35\x55\x2e\x66\xbd\xa6\xec\x55\x62\x31\xcf\xa6\xa2\x97\x15\xbd\xd5\x4a\xe8\xbe\xb7\x6d\xef\x1c\xcc\xe7\x7a\x79\xd3\xbb\xc9\x6a\x89\x2d\x51\x35\x62\xd6\xcb\x8b\xa6\xec\x35\x57\xa2\x77\xfc\xe6\xd5\x00\xbc\x0d\xd4\x22\xba\xca\x6a\x65\x5f\x7d\x44\x3d\x3a\x7e\xf3\x2a\x3a\xb2\xf7\x80\x0d\x26\x57\x11\x02\x46\xf1\x10\x86\x66\x19\x83\x27\x98\xe7\x19\x53\x05\xf6\x44\x24\x45\xb8\xd3\x5a\x04\x1b\xb7\x49\x53\x65\x45\x9d\xcb\xf2\x67\xa5\xa9\x8a\xf0\xcd\x36\x15\xf8\xdb\xb6\x43\x3a\xdf\xd8\xb1\xd7\x37\xe7\x59\x3c\x84\x73\x1b\x8b\xd7\x83\x09\x9d\xc5\xc9\xca\x0d\x00\x7d\xf4\xa2\x75\x60\x01\x3b\x01\x40\xcb\xd1\x81\x91\xdb\x79\xc4\xbf\x93\x92\xe0\x6e\x9e\xd5\xcd\x6b\x3b\x57\xfb\xae\x37\xc6\x68\x2d\x32\x32\xa1\xf8\xe5\xa9\x7d\xd2\xea\x37\x60\xb9\x38\x2a\xb8\x34\x83\x6f\x4f\x0c\xac\x68\xca\x47\xc9\x04\x87\x72\x84\xff\x02\x51\xcd\xf1\xd1\xcd\x09\x86\x8e\xf1\x22\xdd\x68\xe3\x00\xea\xc6\x34\x87\x44\x37\xaa\xb9\x7e\xc9\x33\xbf\x20\x9c\x39\x7c\x6d\xb3\xa9\x1b\x5f\x05\xf2\x33\x8a\xcd\xde\x6e\xe7\xc8\xa4\x28\x76\x83\xb1\x33\xa0\x40\x98\xf6\x28\xfe\x2a\x47\x82\x69\xc3\x71\x33\xf1\x85\x27\xc3\xfd\x82\xf3\x9b\x6d\xca\xa7\x4e\x65\xad\x8e\xef\x22\xb0\x1a\x06\x2e\x34\x9d\xdc\xde\xa6\xcf\xcf\x1f\xda\xfa\x99\xaf\x1f\xb5\xff\x13\xeb\x6d\x51\x15\x83\xf3\xa8\x4d\x4e\xa4\x13\x43\x8e\xcd\xa7\x9d\x13\xc5\xea\x69\xd9\x86\xe1\x24\x49\xed\x3b\xe4\xc7\x7b\x6a\xe7\x44\xb1\x4b\xbf\x0c\xd6\xc9\xa1\xba\xd7\x9f\x6e\xc8\x14\x05\x96\x37\x45\x5f\x96\x54\x65\x61\xc1\xc4\x4f\xae\x3d\xfa\x89\xdc\xce\xe1\x53\xbe\x8d\x16\x5e\x50\x3d\x08\x44\x0a\x53\x26\x4e\x87\x5b\x53\xb0\x94\x3a\xf8\x54\xa1\xff\x29\x07\x35\x67\x5b\x28\x4d\x05\x92\x6a\xcd\xc3\xbf\x3d\xf5\x61\x84\xbb\x40\x9f\x89\xf0\x75\xc8\x75\x21\x4c\xe3\x9e\x10\x28\x8a\xc2\x3e\x8f\x68\x31\xba\x8f\x96\xe1\x83\x22\x90\x68\x95\x0a\xdd\x34\xd2\x50\xe2\x66\x11\x93\x2b\x43\xb9\xf7\x7b\xdf\x7d\x9c\x5e\x06\xd4\x94\x6d\x7d\x67\x5f\x88\xf4\x5b\x88\x6e\x7e\xb1\xe7\xc8\x90\x74\x22\x20\xdc\x78\x5a\x56\xc2\xbb\xac\xff\x0e\x1c\x0b\x62\x46\x58\xb8\xf0\x3b\x2e\x5c\xf0\x3d\x13\x7e\x3b\x99\x0c\x8c\x3f\x42\x57\xc6\x11\x10\x83\x6c\x25\xb6\xd1\xd7\xff\xa2\x6c\xf2\x8b\xdb\x57\xcb\x06\x64\xe2\x2f\xf3\xba\x11\x05\xd8\xcf\xc3\xbd\xb5\x94\x3c\x28\x86\xf3\xef\x00\x24\x37\xdf\xc7\x6f\x5e\xbd\xca\x8a\xec\x52\x54\x29\xf9\x96\x70\x59\x35\xe0\xb9\x90\xf3\x54\xef\x13\xc3\xce\xc6\xe5\x45\x15\xc6\xe8\x78\xb6\x92\x3c\xab\x55\x15\x81\xf5\x21\x63\x5d\x7d\x28\xc0\xdf\x50\x1b\x00\x6d\xae\x4b\x02\x6c\xaa\x0a\xb8\xeb\x8d\x35\xd1\xdd\xc2\xc3\x55\x56\xf5\x70\x0a\x4d\x8d\x43\xb4\x24\x64\xfc\x79\x9f\xdd\x7d\x62\xcb\x5b\x43\x87\xa7\x06\x32\xd6\xb4\xf8\xd9\xbe\x61\xa2\xf3\xfa\x18\xef\x4e\x20\x41\x57\x9e\x35\xd0\x37\x97\xf6\x08\x24\x50\xb5\xa3\x12\x45\x9f\x1c\x0d\xa2\x28\x85\x58\x6a\x7e\xa5\x96\x00\x50\x6f\xf1\xb1\xfc\x20\xde\x89\xe9\xb2\xaa\xf3\x8f\x62\x7e\xdb\x0f\x91\x86\x2f\x99\xe8\x47\xa4\x91\x1b\xc5\x6d\xac\x86\x9f\x5f\x5e\x8a\x8a\xd7\x05\x2e\x8b\x6c\x07\x56\xf1\x50\xd1\x19\x60\xf7\xa7\xbc\xb9\xa2\x8d\x7c\x80\x57\xed\x7e\x1c\x87\xd0\x89\x57\xb2\xcf\xea\xb5\x16\x9d\x6c\xd9\x69\xcf\xe9\xd6\x3a\x32\x89\x5b\x74\x07\xb7\x66\x49\x01\xb9\x45\x6b\x6b\x69\x5d\x17\x97\xb0\xab\x68\xd5\x6c\x47\xcc\xa5\x62\x16\x44\xf2\xa4\xb6\x6f\x3a\x66\x1f\x49\x5c\x3f\x95\xfc\xe8\x8c\x3b\x24\x78\x6d\x82\xf7\xe6\x77\x1d\x7c\x2f\x67\x31\x82\xd2\x16\x4b\x78\xf2\x66\x21\x8a\xbc\xb8\x84\x0c\x5a\xe5\x5b\x54\xfc\x74\x5e\xd6\xaa\xd4\xb0\xa3\x41\x25\xaa\x89\x5b\x72\xb7\x47\x53\xe5\xde\x9a\x68\x01\xb0\x9b\x34\x5b\x00\xe8\x53\x66\xd9\x88\xea\x2f\x67\xaf\x5e\xa6\x0e\x15\x92\x1b\x2e\xb9\xba\x54\x89\x36\x99\x95\xd7\xb4\x95\x1e\x99\x5d\xd5\xe5\x3f\x98\xa3\xd2\xb5\x7e\x49\xc3\x0e\x46\xbb\x2a\x0b\xdc\x77\xb1\x52\x64\x52\x6c\x38\x75\xaa\x6d\xac\x3e\x54\x38\x94\xe8\x71\x3d\xc0\x56\x6c\xc1\xdb\x84\x5e\xb4\x0c\xd1\xd2\xa3\xf2\xc6\x88\x09\xa1\x17\x36\x51\x2c\xaf\x45\x95\x9d\xcf\xc5\x24\x54\x44\x72\x93\x17\x65\x75\xed\x24\xdb\x3e\xb9\xef\x1b\x8f\x21\xe8\x97\xdb\xf6\xb4\x1d\x78\xd5\xd3\x55\x05\x0b\x1a\xb5\xc9\x7b\xbc\x13\x66\xee\x73\xe0\xa5\x68\x26\x9d\x35\xd5\xeb\x32\x6f\xb2\x66\x7a\x35\xf9\x20\x5c\xac\x4c\xaf\xb2\xbc\x08\x03\x83\xf4\x21\x90\xe1\xfb\x73\xc7\xf0\xf3\xdd\x8d\x6f\xeb\xb6\xbc\x9b\xb3\x75\x8d\xf2\xd6\x3e\x9a\xce\xf3\xf3\x2a\xab\xfc\x6e\xb8\x5e\x46\x74\x2a\xec\xed\x7e\xf2\xf9\x3c\x2b\x3e\xfc\x5f\xfc\x0c\x6a\xbb\xac\xfe\x4a\xbe\xd2\x59\x82\xdb\xd1\x03\xb7\xa7\x87\x6e\x4f\x0f\x3d\x5c\xba\x3d\x3d\x74\x7b\x7a\xe8\xf6\xf4\xd0\xed\xe9\xa1\xdb\xd3\x43\xb7\xa7\x87\x6e\x4f\x0f\xdd\x9e\x3e\x72\x7b\xfa\xc8\xed\xe9\xa3\xaf\xa4\x91\xe9\x3f\xb4\x06\x9e\x89\xcd\xde\xea\x59\x52\x9a\x2c\xbc\x35\x2d\xcf\xeb\x69\x95\x9f\x0b\x0f\x50\xe7\x00\xdc\xb2\xe8\x86\x64\x79\x4a\x2c\x14\x30\xe1\x84\x54\xba\xc5\x15\xa2\xca\x1a\xf1\xc3\x32\xf7\x15\xf6\x78\x26\xfa\x2d\xfd\xf1\xf9\xf1\xe4\xc5\xc9\xdf\x3d\x48\x95\x61\xa0\xc8\x7a\x31\x08\x88\x79\xd8\xfe\x32\x9f\x3d\x73\x9e\xc2\xa1\x69\x4c\xc7\x3b\xda\xc9\xd9\x93\xc9\xf1\xc9\xe9\x53\x0f\x4a\xe7\xe0\x9c\xbd\x7a\x7b\xf6\xf7\x89\x4c\xf3\x00\x4d\x16\x4d\x5c\x93\x79\x30\x32\x51\xdd\x6c\x5f\x85\x00\x28\x5d\xdd\x70\x83\x30\x35\x83\x91\x15\x7a\x36\xa6\xaa\x25\x6d\x5e\x1a\x0a\xcd\xf3\x3b\x27\x34\x0f\x86\x22\xf1\x40\x30\x19\x21\xaa\xdb\xa7\x72\xc3\x7f\x96\x17\xd9\x7c\x7e\xeb\x83\xda\xf9\x64\x36\xeb\x3b\xdf\x87\x96\x31\x1d\xc7\x90\x7d\x10\x61\x28\x9d\x83\xef\xfc\x59\xf1\x1c\xee\x00\x1e\x9c\xce\x51\xfd\xec\x80\xd3\x39\x0a\x6e\xcd\x50\xf8\x28\x6e\xaa\x6c\xe1\xc1\xc8\x44\x74\x8e\xbf\x58\x04\xaa\x80\x54\x93\x7f\xda\xf8\x04\xa8\x32\xd6\xe9\x6c\x7c\x1b\x50\x92\xd5\x3c\x90\xaf\x18\x16\x10\x3f\x20\xaf\xec\x59\x36\x63\x32\x40\x28\xae\xc9\x83\x51\x19\x34\x4d\x0b\x4f\x4b\xe3\x9a\x50\x40\x51\xb2\xbd\x7c\x4a\x47\x98\x7c\xde\x38\xfb\x1d\x80\x40\x32\x91\xe9\x4c\x7c\x72\x68\x10\xcc\xab\x31\x7d\xf8\x1f\x1f\xc3\x21\xa4\x02\x71\x1f\x5c\xc9\x11\xe8\x78\x5c\xea\x0d\xa9\x91\x57\xd0\x63\x2c\x11\x84\x63\xf9\xb6\x41\xf7\xd9\x72\x31\x17\x7e\x11\x3b\x1f\x79\xf4\x4b\xd1\x78\x4b\x13\x80\x55\x4e\x30\x5a\xc4\x81\x89\x16\x91\xcd\x66\xea\xbe\xe8\xc3\xb0\x4c\x16\x69\xa1\x1b\xde\xce\xa7\xc3\xa0\x96\x20\xdd\x65\x1c\x80\x50\xa1\x7a\x63\x29\xd2\xbb\x11\xc5\xec\xe4\xa3\x7b\x42\x21\xbc\xca\x22\xa5\x99\x7a\x4d\xdd\x3c\x17\x97\xa6\xdc\x71\x04\x96\x0f\xc0\x5b\xd9\xe8\x00\x4f\x15\x77\x8f\x04\x80\xe7\xb9\x36\xf8\x71\x7e\x71\xb1\x06\x5e\x66\xdb\x05\x7e\x2c\xf2\xd0\xdc\xda\xf9\x50\x44\x39\xc9\x3c\x0d\x68\x09\xb9\x84\xed\x4b\x65\xfc\x60\x23\x3e\x8c\x55\x54\x8b\x46\xba\x4b\x6a\x10\x24\xd1\x8f\xa2\xaa\xf2\x99\x78\x0a\x97\x83\x40\x70\x13\x2b\x1f\x85\x50\xe2\x32\xd7\x26\xb1\x58\x55\xa0\x60\x08\x0a\xcd\xc7\x8b\xd9\xc6\xc2\x3e\x0c\x6e\x77\xf0\xfb\xad\xbe\x7b\xf8\x05\x5d\x08\x28\x76\x2c\x50\x57\xdb\x25\x0a\xb9\x4f\x9b\x3c\x00\xc5\x3b\xb1\x6a\xdb\x07\xb7\xf3\x83\xc2\xea\x03\xae\x4b\xd7\x54\xb7\xde\xcc\x7f\x8b\x87\xd0\x29\x81\xbc\xa9\x40\xd2\xe7\x81\xfd\x7e\x32\x19\x98\x3c\xe4\x64\x9c\x6d\x1a\x60\x5e\xd1\x3e\xfd\x2a\x5b\x74\xee\x7c\x04\xe7\xee\x7c\x72\xaf\xea\x40\x66\x40\x9f\xaf\xee\x86\xfe\xa3\x0f\x0d\xab\xf3\x85\x70\x70\xf8\x27\xb5\x6e\x5f\x88\x5b\x62\x46\xbb\x01\x4d\x1e\x1e\x32\xf3\x65\x7d\xf5\x56\xc0\xed\x30\x40\xae\xf2\x86\x31\xf0\x61\xd8\x06\x0a\x09\x3f\xc1\xae\x51\xf9\x45\x7d\x18\x7c\x68\x90\x09\xaf\xcb\x99\xf0\x4b\xe8\x2c\x3a\x03\x8b\xbc\xbe\xea\xec\x18\xcb\x35\xf8\xf1\xce\x90\x43\xbd\xb1\xe9\x43\x84\xb0\x10\x06\x65\x99\xa6\xd6\xd4\xbd\x56\x61\x8d\xc4\xb4\xfd\x44\x17\x7b\x1f\xca\xe4\xf1\x86\x7d\x38\xca\x20\xcc\x76\x00\x51\x06\xad\x2a\x10\x75\xfb\x40\x94\x41\x6e\x25\x16\x99\x5e\xf6\x2e\x85\x1d\x06\x9f\x80\x50\xd4\x10\x5c\xad\x87\xf8\x16\x64\x43\x74\xab\xa5\x02\xb8\xa5\x97\x3a\xcd\xa6\x57\xc2\x3d\x47\x10\x8c\x72\xd4\x39\x1e\x8c\x7d\x24\xaf\xa6\x5e\x74\x26\x25\x05\xf1\xce\x27\x80\xe6\xb9\x8c\x6a\xbb\xab\xbf\x77\x30\x27\xd5\xa9\x50\x34\x26\x3a\xd9\x37\x95\x0e\xc3\x59\x55\x6c\x2e\xbc\x45\xcb\xf5\xb6\x4d\xd7\xc1\xb6\xd7\x14\xb7\x0b\x9e\xdb\x95\x05\x27\xc6\x87\x61\xd3\xb3\x09\x61\x9d\xf1\xaf\x3a\x7c\x1c\x1d\xfe\xde\x77\x72\x74\xed\x3d\x54\x02\xd4\xb5\x7e\xa9\xf4\x5f\x32\x01\x80\x3d\x65\xe2\xeb\xe4\xcc\x87\x51\x39\x48\x3e\xf3\x3c\xab\x5f\x89\xe6\xaa\x0c\x40\xb2\x4c\x8b\x9a\x7d\xc8\x92\x8f\x33\xbf\xbe\x16\xb3\x3c\x6b\x3a\x70\x24\xe1\x3d\x90\xc0\xd4\xf8\xa5\xce\x7d\x9c\x86\x22\xd3\x1d\xba\xa1\xe9\x3a\xdd\x3d\x01\xa4\xe7\xef\xc9\x73\xc2\x0b\x60\xe0\x85\x17\x79\x7c\xf1\x93\x73\xbd\x05\x00\x4c\x0f\xbe\x23\x1f\x06\x8e\x4b\x2d\xc8\x4c\x5d\xe1\xd4\x16\x6e\x86\x1f\xed\xdb\x7e\x86\x8b\x20\x40\xa1\xb2\xf3\xfa\xe4\x7a\xe1\xec\x97\x8f\x0e\xa0\x0a\xc8\xc0\xed\x38\x0c\x22\x34\x40\x5e\x7f\x3f\xcf\x8a\x0f\xa9\x2b\x19\x0b\xda\x7d\x3e\xb7\x5f\x08\xc8\xf4\xc1\x4d\x5d\xb5\xc3\x10\x34\x13\x74\xa5\x4c\xe6\x15\x04\x35\xa2\x2d\x23\xc8\x0a\x02\x72\x29\x18\x97\x7a\x05\x81\x51\x0c\x86\x62\x2f\xec\xfa\x9a\x2e\x75\xf7\xc1\x92\x88\xa5\x96\x78\x0c\xf3\xb5\x80\x4c\x0b\xc4\x58\x3a\x89\xc4\xb8\x08\x0c\x73\x49\x0a\x40\xb7\x7e\x4c\xd3\xf7\x7e\xeb\x9e\x6f\x42\x26\xbe\x2d\xe7\xb7\x17\xf9\x7c\x4e\x1e\x25\x07\x4e\xa2\x9a\x09\x3b\x79\x70\x9d\x2d\xd2\xeb\x6c\x11\xcc\x53\x72\x02\x25\x17\x08\xc2\xa0\x9c\x80\xe4\x02\x21\x08\x25\x27\x50\x72\x01\xb2\x3d\x03\xd9\x89\x11\xa3\x28\x74\x92\xf4\x4f\x49\xfb\x30\xd5\xc8\xfb\x8c\x7c\x8f\xaa\x31\x12\x3e\x26\xd1\xc3\x3c\x90\xe9\x81\x0c\x4f\x4d\x15\x4a\xe8\x94\xd4\x8e\xa6\x96\x52\x6b\x2b\x55\x4b\xea\xb4\x64\x4e\x13\x09\xc8\xe6\x94\x2c\x0e\x53\x49\x1a\x47\xd2\x37\x4a\x73\xe4\x6f\xae\xbc\x8d\xea\x23\x89\x9b\x92\xb0\x51\xeb\x5a\xc6\x66\x64\x6a\x44\x18\x5a\xaa\x66\xa4\x68\xba\x3d\xca\x31\x72\x33\x9d\xc3\x3a\x61\xb7\x0f\xb2\x32\x90\x8d\xe1\x37\x4a\xc7\x50\x1a\xc6\x52\x4e\x9b\x2a\xd5\xf2\x2f\x4c\x7f\xc9\xc3\x60\x1b\x0c\x4b\xec\x9a\x2f\x7e\x7d\x71\xe4\x34\x08\xe3\x48\x6a\x1c\xc1\x0c\xc2\x18\xd1\x8c\x92\xc4\xd0\xdc\x3b\x92\x35\xe7\x9b\xa0\xca\x22\x2d\x0b\x35\x16\x26\xa2\xe1\x12\x19\xcc\x75\x64\x32\x8e\x08\x86\xfa\xe2\x4a\x61\x5c\xa1\x4b\x18\xac\x76\xe1\x6a\x4d\x7d\x4a\xd0\x62\xe4\x2a\x98\x63\x49\x56\x2c\x41\x0a\xcd\x9c\x25\x4a\xb1\x25\x27\x08\x61\xc9\x4e\x2c\x51\x89\x93\x0f\xc2\x12\x5b\x36\xe2\x40\xa0\x74\xc4\x11\x86\xd0\x50\xb9\x3c\x84\xfd\x56\xbb\x96\x2f\x01\x09\x08\x3c\x6c\x58\x23\xf2\xf0\x25\x1c\x34\xa9\xb6\x8c\xc3\x11\x69\x20\x4c\x50\xa8\x11\x94\x61\x20\x7c\x40\x8a\x11\x10\x5a\xd0\x32\x74\xc5\x16\x9e\x94\x02\xe1\x98\x9c\x82\x89\x25\x30\xcf\x11\x4c\x38\x72\x08\xbd\x39\xa5\xe6\x84\x22\xd1\x03\x49\x1a\x30\x8d\xc9\x1a\x98\x68\x81\xb6\xcd\x6c\x91\xbe\xd2\x4b\xdb\x91\x26\x38\xc2\x03\xbd\x64\xd9\xa0\xac\x2f\xd3\x23\x06\x51\x07\x20\xf4\xed\x5f\x5f\xf5\x31\x9d\xc9\x05\x98\x18\x00\xf3\x02\x82\x80\xc0\xbd\x9f\x2f\x53\xeb\xe6\x1f\xb8\xe8\x13\x71\x9a\xbb\xbe\xb9\xda\x53\x93\xfc\x72\x6f\xdd\xe5\xd9\x30\x60\xdb\x31\xf7\x71\x6b\x20\x90\xc7\x6f\xeb\xac\x1c\x96\xd1\x7b\xbc\xbe\xa0\xb3\xfb\xb8\x55\x97\xaa\x47\x0f\x11\x53\xd5\x8d\x5b\x11\x0c\xde\xb9\xd5\x15\x9b\xc8\xd6\xbd\x64\xbb\x09\x04\xe7\xdd\xad\xbd\xab\x34\x91\xb6\xba\x4c\xeb\xbb\xb3\x3a\x79\xe8\xf6\xac\x2f\xcb\x7a\x4f\xd5\x0c\x3d\xbf\x1d\xd3\x42\xe5\xd7\x30\xeb\x3a\xcc\x27\x53\x57\xe0\xdc\x7f\x75\x0b\xce\x95\xcc\xbf\xf0\xda\xdb\xae\x7b\x83\x0b\xdf\x70\xd7\x95\xa9\x3b\x0a\xd5\x4e\x29\xaf\x8d\x8e\xda\xfd\x7a\xdd\x1a\x03\xd7\xd6\xc0\x2d\x95\x63\xcd\x19\x65\xf0\x5a\x4a\x5c\xb9\xb9\x98\xb2\x7b\xa8\xaa\x8b\xee\x91\xfa\xda\x48\x58\x67\x17\x47\x7e\x4f\xb4\xe7\x55\xcf\xa9\xa2\x75\xef\x6a\xe8\xdf\x04\x43\xe3\x75\xc6\xaa\xf8\x20\xb8\x04\xe3\xa5\x98\x36\x31\x48\x79\xc5\x52\xe8\xb6\x46\x97\x33\xaa\x5b\x5e\xf0\xe0\x3e\x87\xdf\xea\x12\xa9\xee\x8c\x6a\x5d\xb2\x5b\xa3\x75\x49\x24\xcc\x2c\x8b\xb4\x5a\x16\xfa\x2c\x54\xd7\x39\xfd\xcb\xcd\x19\x18\x37\x16\x95\x78\x09\xa9\xb7\xe4\xa1\x23\x42\xef\x2b\x83\xbf\x9e\xbc\x3b\x7d\xfe\xe6\x75\xac\xbb\x00\x37\x3f\xba\xe8\x29\x96\xa8\x90\x8c\x90\xfe\x56\x77\x3b\x75\x95\xa3\x65\x0f\x69\x82\xa5\xa8\xdb\x1b\xfd\xd7\x8c\x6c\x75\x29\x52\xf8\x6b\x10\x06\xbc\x37\x18\xb4\x69\x5f\x11\x93\x09\xba\x4f\xa2\x31\x54\xb7\x4a\x6d\x6c\x26\xce\x97\x97\xd1\x38\x5e\x39\xea\xd0\x3c\x37\xee\x72\xfa\x00\x75\x87\x15\xd3\x94\x9a\xd7\x28\xac\xa1\xb3\x4e\x15\x03\x2f\x18\xda\xc4\x18\x3e\x8d\xc9\xb1\xba\x52\x67\x4d\xfe\x51\x3c\x5b\x16\x53\x16\x71\x75\x59\x4c\xb5\xdf\x0a\xf9\xb1\xbb\xfb\x8c\xf2\x98\xaf\x8b\xa6\x24\xf7\x17\xe0\xd5\x1d\xca\xa8\x4b\x4c\x3f\x1a\x15\x50\x6f\x6f\x5a\xce\xc4\x38\x8a\xbf\x7b\x70\xd0\xea\xf7\x56\xde\x68\xdf\xee\xa4\xbc\x67\xc5\x8f\xfd\xb4\x23\xde\x37\x6d\xfe\x9c\xa6\xe9\xc7\x32\x9f\xf5\xf6\xef\xee\xe8\x53\x4e\x16\xf7\x88\x73\x76\xbb\x10\x70\x6f\x02\xf5\x71\xc9\x78\xbd\xd7\xe1\xa7\x51\xfa\x20\x8a\xb4\x51\x8e\xf1\xbf\xfb\x6e\xdf\x72\xee\x59\xec\xa4\x69\xa4\x5a\x8e\xba\xeb\xad\x44\x0d\xe1\xb0\xa1\xdf\xfd\xb9\x28\xb0\x6e\xd9\xca\x82\x79\xf9\x3f\x18\x3b\x11\xfb\xe6\xa2\xc0\xe8\x1f\xf9\x45\x3f\xef\xe5\x45\x0f\x42\x0d\xd6\xa3\x1c\x9c\x90\x99\xb0\xd1\x8b\xa4\x19\xe5\xe3\x24\x4f\x9a\xb8\x65\x46\xac\xad\xf5\x4a\xbd\x0e\xab\x04\xe3\x61\x96\xd2\xff\xbd\xb1\xfb\x59\x68\xec\xc6\x5f\x6b\xbd\xca\xaf\xc3\x1a\xc1\x78\x58\xa3\x74\xe6\x4c\xfa\xfc\x7d\x72\x51\x95\xd7\xcf\x65\x06\x74\x43\x7f\x69\x5b\x2b\x9e\xc2\xcc\xad\x4c\xf2\xbe\x36\x6c\xd2\x69\x7f\xde\xe7\x00\xaf\xb2\xe6\x6a\x70\x9d\x7d\xea\xef\x63\x2c\x4b\x44\xeb\x9e\x69\xb8\x35\x68\xd1\x89\xc9\xfb\x94\x01\x0f\xf3\x3f\xbf\xd7\xa8\x92\xe9\x92\xd4\xd2\xb4\x3c\x7f\xaf\x97\x7b\xae\x28\x4c\xad\x58\x92\x5c\xac\x25\x2f\x00\xf1\xa9\x0b\x92\x19\x71\x15\xda\xaa\x0a\x54\x9a\x73\x34\xeb\x24\x43\xaa\x74\x34\x4e\x28\x50\x20\xef\xb1\x1c\x93\x9e\x66\x1d\xd8\x52\x39\x30\x70\xbc\x14\xe7\xb1\xac\x79\xbe\x44\x33\xf6\x51\x3e\x46\x5f\x99\x76\x14\x2b\x6c\x34\x07\x24\x6a\xeb\x35\xd4\xcb\xa6\xb0\x53\xad\x63\x29\x6e\xb6\xff\xd3\xbf\x3c\x7f\x35\x39\x39\xfd\x16\x1d\x25\x07\xf6\xae\x95\x9f\x96\x5e\x67\x8b\x36\x00\xae\x16\xa5\x5b\xc4\x11\x27\x05\x8b\x22\xc2\xbd\x92\x5c\xc8\x14\x2a\xa7\x28\xda\x2d\xe8\xc8\x9e\xec\xe8\x81\x4a\xf4\xc5\xd3\x5c\x91\x97\x95\x67\x89\xba\x78\x8e\xdb\x4c\xf8\xc0\xd3\x6a\xb0\x5f\xdd\xda\xac\x5b\x2b\xdb\xd7\x42\xee\xd0\xdb\xfd\xad\xad\xcf\x2c\x55\xa6\xdf\xc0\x1a\x6d\xdd\xfb\xfe\x23\xfb\x79\x7f\x2b\x0d\x45\xe7\x5d\xff\x5b\xf6\xac\xdf\xf5\xc0\xf8\xfb\xc0\xfb\xe2\x9a\x07\xc3\xdf\x87\xdf\x0b\xd7\xbe\xd9\xfd\xbe\xeb\xc9\x6e\x83\xf3\x1f\x12\xf9\xbd\xf9\x41\x5d\x1e\x4e\x31\x16\xc0\xdd\xdd\xce\x0e\x09\xe3\x5e\xff\xd5\xca\x57\x0f\x62\x3f\xbc\x7c\xf3\xfd\x93\x97\xe9\xc3\x7f\xf4\x47\x4f\x1e\xfc\xef\xff\x1c\xdf\xf5\x47\xfb\x0f\xfe\x34\xc6\x8f\x38\x66\x31\x2c\x7c\x7f\xd7\x6a\xeb\xd6\xd5\x30\x3f\xcd\xc6\xd1\x1e\xc9\x15\xb1\x70\x0d\x67\x96\x55\xfa\x52\x34\x01\x5f\xda\x8f\x89\x77\x47\x27\x7b\xba\x50\xcb\xdf\x9c\x8c\xcf\xeb\x12\x22\x2d\xcb\xc3\xe7\x2d\x54\x8d\x86\x3a\xb3\xbc\xc2\x18\xa6\x69\x74\x71\x33\x23\x27\x3a\x13\x09\x95\x2a\x50\x4a\x6b\xca\x14\xeb\x18\x3a\x25\x49\x44\xa3\xcc\x88\xe2\x76\xa8\xc2\x0d\x58\x01\xe1\x17\xb7\xae\xd9\x8c\x4c\x03\xde\x8c\xe0\xfb\xaa\xa1\xc4\xf4\xc2\x44\xfc\x9d\xe0\xf5\x28\x86\xaa\xd4\x17\x3a\xea\x27\x2c\xc9\x8c\x16\x46\x68\xbb\x3f\x57\x63\x85\x51\x81\x9f\x22\xcb\x6b\x46\x53\x86\xc1\x9b\x32\x00\x8c\xcd\xfa\x06\x4f\xac\x3b\x6e\xed\xc8\x89\xbb\x83\x57\x05\x58\xe9\xc7\xd1\x08\x7f\x8c\xa3\xa3\x48\x39\x0e\x8e\xac\xeb\xdf\x9f\xa3\x3d\x5a\xa2\xc8\xc9\xed\x45\xdf\xf5\xa3\x3d\x33\xbc\xbd\xa8\xf7\xe0\xbb\x9e\x4a\x69\xca\xbd\x28\x8e\xf6\xb0\x52\x70\x16\x5f\x88\x69\x63\xf1\x46\xe4\x5a\x9f\xa6\x3a\x35\x35\x25\x38\xd9\xa9\xaa\x69\x88\xbb\x07\xd0\x26\xd1\x52\x80\x6a\x35\x79\xd9\x21\xcd\x79\x16\x8b\x5b\x2e\x93\x4c\xb8\xef\xa1\x8e\xed\xad\xa7\xda\xad\x83\x1a\x36\x35\x34\x25\x0b\x17\x8e\x65\xc1\x71\xe6\x59\x79\x7a\x5b\x4c\x03\xd3\x31\xcb\xeb\x6e\x34\x34\x37\xa5\x9c\x13\xab\x13\x6e\x48\x73\xe8\x06\xc3\xd2\x9a\xc1\x60\x75\x2a\xd2\x7a\xa0\x06\xa2\xf4\xad\x86\x82\x71\x4b\xac\xb1\x58\x2d\x32\xef\xf6\x59\x75\x29\x1a\x6d\x89\x47\x06\xa1\xb2\x12\xca\x4a\x60\xa9\xc7\x92\x36\x3f\xaf\xf8\x79\x36\xfd\x20\xcb\x5b\xb9\x36\xcb\x3d\xcb\xc9\x7f\x85\xb5\x4d\xf8\x3b\x07\x29\xd9\xe4\x75\x93\x17\x97\xc7\x79\x95\xf2\x4c\x79\xd8\xc1\xec\x00\x69\x30\x28\x34\x4d\x36\xb6\xae\xf5\x6d\x31\x8d\x18\x2e\x27\x32\x21\x81\x92\x56\x7d\x35\x11\xb0\xec\x1d\xc6\xa7\x30\x0d\xa7\x29\x8e\x6b\x77\x77\x86\x5f\x80\xa4\x55\xb0\x3c\x21\x50\x62\xc0\x1d\xb9\x72\xed\x4f\xee\xf8\xec\x03\x25\xbf\x90\x20\xc6\xcc\x56\xcc\xee\xee\x76\xbc\xb9\xb6\x62\xda\x6f\x83\x3f\xb3\x89\x87\xb1\xb7\xed\x12\xb7\x4a\x93\x89\xb6\x42\xbf\x69\x43\xa3\x46\x55\x8b\x3e\x37\x02\xbb\x81\xb3\x8d\xcf\xcb\xcb\x78\xc5\x5f\xde\x06\xf3\xf2\xb2\x1f\xf5\x22\xb5\x00\xc8\x4b\x45\x9c\x44\x0f\xbe\x8b\x12\x5d\x35\x4c\x64\xeb\x9d\x03\xfe\x86\xa4\x4b\x90\x67\x08\x97\x4d\xd8\xb8\x87\x70\xaf\x10\x6b\xab\x8f\x8d\xab\x0b\x0b\x31\xb8\x32\x70\x33\x29\x35\x5e\xac\x25\x7f\x5f\x54\xfc\xf9\x41\x94\x50\x5d\x88\x88\xe0\xa8\x36\xed\xae\x81\x91\x59\x0c\x85\xde\xb8\x7d\xa6\xc2\x54\x5d\x9a\xd1\xb3\x58\xc1\x20\xdb\x34\xb2\xfa\x7e\x53\x42\x11\x13\xdf\xe5\x83\xb8\x95\x37\x7f\x4c\xa4\x3b\xb4\x7b\x3b\xfc\x20\x6e\xe3\x78\xd5\x94\xa3\x0f\xe2\x76\x0c\xac\x07\xfc\x6a\xdb\xd6\xad\x5e\x85\xae\x5a\xd9\x07\x3d\x22\xfd\x29\x10\x73\x42\xd7\x14\x60\x2e\x9e\xf2\x98\xc9\x92\x2b\x81\xe6\x31\xfa\x21\x25\xf1\x38\x9f\x16\x3b\xb0\x7d\xa5\x4d\xb9\xa6\x4a\x97\x69\x80\xc5\x77\x31\xcf\x2e\xbb\xeb\xc7\x78\x2c\xb8\x74\x9c\xa6\xb0\xb6\x3e\x94\x6f\x5b\xe6\xc8\x41\x02\x10\xbd\xd2\x0c\x30\x7f\xbc\x9a\xc7\xa2\xbc\x01\x1d\x83\x7d\xa4\x29\x76\x13\x34\x92\x67\x5d\x33\x35\xb9\x75\xdd\x04\xbf\xa6\x11\x5b\xe4\xcd\x73\x5c\x41\xb7\x75\x49\xed\x12\x77\x77\x5c\x57\x95\x71\xe9\x97\xdc\x56\x43\x57\xd2\x90\x79\xaf\x65\xe0\xfa\x5b\xfb\xca\xff\xe2\xeb\xe5\x1a\xf3\x93\xc3\xb0\xf5\x89\x67\x7e\xf6\x88\x9b\x9f\x81\xd2\x8b\x6b\x64\xf7\x48\x59\xbb\x29\x23\xbb\x90\x55\xcf\xef\x1c\xab\x9e\xa0\x66\xf6\xb7\x5b\x6a\x70\x7f\xeb\x2b\x70\xcb\x2e\xca\xab\xb0\xfc\x9f\xdc\x64\x95\x52\x03\x93\x3f\x93\x67\xcf\xdf\x9d\x9e\x41\xbf\xe5\xed\xef\x1f\x3f\x0f\xc6\x7b\xfc\xbe\x77\x91\x57\x75\xf3\x42\xdc\xda\x77\xbd\x05\x0a\x03\x9b\xe9\x55\x5f\x97\x8f\x47\xfb\x63\x8c\xef\x85\xcf\xc1\xff\xbd\x14\x4b\x91\x8e\x98\x27\x6d\xff\xb1\x18\x1d\x73\xf0\x02\x24\x78\x4b\xd3\x74\xdf\x62\x12\xfe\x09\xb5\x71\xc8\xa1\xd7\x0e\xa2\x10\xc5\x6d\x00\x6f\x68\xf3\x9f\xf1\xea\x9f\xa3\xfd\xb1\xbc\xb9\xf7\xff\x39\x3a\x18\xc7\x6d\x3c\x94\xc3\xef\x47\xea\xa9\xb7\x97\x15\x3d\x2d\x19\xed\x5d\xc2\xba\x4b\x90\xca\x7a\xe2\xd3\x42\x4c\x9b\x5a\x19\xc6\x50\x6e\xdd\x6b\xca\xde\xb9\xe8\xd5\xa2\x59\x2e\x7a\xe7\xb7\xe0\x0e\xb1\xc9\xaf\x05\xfc\xa8\x96\x45\x6f\x5e\x96\x8b\x5e\x5e\xe3\xc0\xc5\x2c\xe9\x4d\xaf\xc4\xf4\x83\xa4\x81\x5e\x73\xbb\x28\xeb\x28\xe9\x1a\xba\xb5\x93\x6c\xf7\xee\xae\xd1\x9c\xcd\x66\xfc\x91\x1d\xf6\xb4\x0f\xe2\x16\x02\xed\x17\xe5\x4c\xa0\xf4\xb0\x3c\x7f\x7f\x77\x17\x51\x74\xd8\x1d\x1d\xbb\x89\x09\x63\x01\xef\xd7\x29\x51\x0f\x6c\x70\x50\xbe\x4e\xaf\x07\x53\xd6\x00\x84\xf9\xdd\xf1\xce\xbb\xc8\x82\x89\xe2\x78\x15\x2c\x9c\xae\x5a\x8c\x19\x24\x33\x47\xd4\xcf\x31\x01\xeb\xef\x74\x34\x6e\xed\x14\x14\x99\xc2\x78\x86\x8a\xda\xad\xa1\x5e\x5b\x6e\xfe\x5d\xd5\x83\x2f\xc5\x4a\x79\xfe\x7e\xa4\x16\x36\xc8\x79\xaf\x77\x77\xb7\xc1\x01\xab\x84\xd0\xb1\xbb\x1b\x40\x27\xe4\xed\xee\x06\x91\x92\xda\xa9\x4e\x8c\x77\xc8\xf4\x02\xbc\xab\x2a\x51\xe2\x8e\xe3\x45\xc8\x7a\x31\xcf\xa7\xa2\x9f\x27\x07\xca\xe1\x66\xdb\x9a\xfd\xa3\x13\xa3\x5a\x51\xa3\x8f\x2e\x7b\x25\x10\xca\xb6\x6d\x57\xbe\x29\xfe\x23\x89\xca\x07\x71\x9b\x7e\x10\xb7\xf4\xa5\x5c\x1d\x60\x2c\x51\xfe\x32\x41\x00\x98\x8e\x91\x46\x55\xa5\xcd\x15\x68\x49\x6a\x5e\x59\x55\xa2\xc5\x14\x18\x20\x17\x9b\x1d\x7c\x34\x6e\x62\x79\x36\xdc\xbb\x2d\x72\xe0\xb9\x89\xee\x2c\x4a\xe9\x5b\xd7\x63\xf1\xee\x2e\xff\xc2\x61\xa5\x69\xf4\xff\x13\xd9\xf4\x2a\xa2\x8e\x50\xcb\x18\x31\x54\x63\xcb\xbc\x87\xea\x24\xf6\x26\xaa\xb1\x3b\xcf\xfe\x75\xfb\x03\x71\xd5\x92\x6f\x54\xb4\x19\xd3\xfe\x6b\x10\xa5\xcf\x25\x9f\x20\x45\x93\xed\xee\xca\xbf\xd8\x02\xbd\xb4\x78\x35\xe4\x17\x7d\xbb\xff\x4c\x22\xa7\xda\x57\xd6\x24\xd3\x94\xd5\x2a\xbf\x81\x0c\xa1\x39\xf9\xb5\xbb\x2b\xff\x0e\x26\xa0\x7c\x92\x9d\xcf\x71\x51\x11\x73\x0c\x65\x20\x47\x1f\x23\x26\x09\x59\x61\x16\xee\xce\x74\x50\x3f\x87\xf0\x0e\xb5\x3e\x46\x11\xe3\x69\xc0\x4d\xf5\xc4\xa3\x2f\x35\x81\x86\x78\x50\xb1\x9e\x9e\xab\x26\x0e\xf5\xf0\x5a\xf8\xd4\x68\x3a\x71\xdc\xea\x01\x64\x3b\x0c\xf4\x51\x69\x07\x85\x7a\xd9\xd5\x19\x24\x4a\xba\x59\x2b\x59\x8b\xb7\x97\xb9\x34\xeb\x2c\x31\x10\xae\xb4\xc1\x3e\x81\x90\xd2\xbf\xe0\x57\xa2\x41\x46\x5d\xaf\x74\x74\xaf\x2a\xff\xc0\x59\x80\x6b\x91\xad\xcb\x44\x47\xf6\x94\x3f\xe4\x9c\x43\xb2\x0e\x63\x56\x8f\xe4\xdf\xf1\x9f\xe5\xd1\xae\x43\x79\x56\xa2\x81\x53\x19\x05\xbb\xfa\xe5\xab\x09\x76\x35\x9b\xcd\x52\x47\x92\x49\xb8\x4a\x1a\xc9\xa6\xc1\x2e\x54\x57\x53\xec\xdb\xd0\xeb\xe1\x90\x75\x23\xe5\x7d\xba\xbb\xdb\x8f\xf7\x0e\x86\x1a\xe9\x7a\xe6\x03\x0a\xaf\x46\x78\x0d\xdb\x8a\x4c\x1a\xed\x8f\x77\x77\xd5\x2f\xf5\xa4\x89\xee\xc3\x21\xf1\x60\x3c\x94\x6b\xcc\x66\xa6\x86\xda\xab\x3c\x06\xf6\x97\x0b\x45\x3d\xab\x1e\xc4\xc6\x01\xa6\xaa\x37\x5e\x59\xdc\x02\x9c\x7f\xa3\x46\x85\x58\x1b\x53\x67\x15\x17\xb1\xaf\x5c\x56\xa2\x7f\xc8\x6a\x9a\xaa\x7a\xa0\x2b\xac\xd9\xfd\x64\xff\x41\x5f\xf5\xd3\x74\x40\x45\x08\xa5\x8c\xd6\xa9\x1d\xbd\x3a\xc9\x29\x92\xfd\x46\xbf\xb3\x75\x35\x8d\x83\xf3\x86\x34\xfb\x65\x53\x67\x13\xd1\x77\xfb\x88\x60\xfa\x7c\xf0\xa0\xfd\x82\xb9\xfb\x8a\x33\xf6\x4b\x61\x7a\x59\xd8\xb8\x0e\xe3\x79\x5a\x2e\x8b\x26\xdd\x0f\x66\xc9\x24\x33\x03\xd6\x9c\xad\xc8\xc8\x37\x57\x11\x28\x27\xf8\x01\x8c\x11\x70\x77\xf8\x1d\xaf\x02\x40\x92\x81\x93\x70\x29\x7e\xea\x03\x61\xc7\x70\x19\x3c\xcb\xd9\x53\x80\x7e\x69\xea\x63\xa8\x07\x07\xb1\xb7\x67\xe2\xcc\xde\x77\x22\x86\x58\x8d\x83\xaf\x20\xc2\x08\xad\x3e\x5e\xd6\xe3\xc4\x1d\x2b\x0b\xd2\x48\xea\x26\x07\x9f\xdb\x6d\x7f\xa2\x0d\x52\x1e\x3c\x50\xbc\x21\x7e\xc3\x4e\x4a\xb1\x96\xa9\x47\x90\x39\x81\x7e\xc1\x4f\x3a\x70\xfa\x1d\xe3\xbf\x31\x0a\xdf\x1a\x05\xe8\x5c\xab\x13\x01\xb2\x0b\x8a\x1c\x1c\xf9\x97\x4a\x36\x14\x13\x16\x82\xe9\xcd\x9f\xa1\x91\x75\x45\xf5\xc0\xe3\xbb\x6c\xd6\x92\xb8\x66\x53\x8c\x49\xc7\x25\xf6\x0e\x12\x5d\x4f\xe7\x82\xf8\x29\x30\x7e\xc8\xa0\x40\xc1\x62\xd1\x5c\xa9\x6a\xcc\x49\x0d\x2c\x99\x89\x0e\x21\xbf\xf7\x22\x15\x8c\xf7\x33\xfa\x6c\xda\xda\x33\x9d\xd6\xae\x96\x65\xba\xa4\x27\xcc\x60\x2e\xfc\x68\xa3\x23\x32\x81\xfe\x40\x7c\x61\xea\xc9\x90\xf5\xc4\xda\x37\x37\x54\xb4\x06\x5d\x46\xe7\xff\x57\xc4\x96\x71\x3b\xf9\x3f\x06\x59\x33\x1f\x4f\x1e\x5a\xb6\xe4\x3d\x91\xed\x93\x57\x51\xeb\xfe\x12\xe0\x02\xd7\x5d\x61\x86\xd6\xe5\xa8\x3c\x7f\x3f\x0c\x49\x09\xc2\x3c\x24\xf2\xbd\xd6\x85\x61\xfb\xcb\x90\x75\x17\xfa\x95\x77\x14\x3d\x0b\xd6\x86\x82\xbf\xb5\x3e\x21\x71\x49\xf7\xa7\xc3\xf0\x46\xc3\x04\x67\xc6\x58\xc1\x30\xd5\x8e\xe0\x20\x21\x6c\x18\x21\x80\x85\x0c\xfd\x53\x61\x70\x87\x18\x15\x2e\x93\xa1\x72\xa9\xf5\x0f\x98\x7a\x94\x49\xc3\xd2\xa0\x54\x83\x11\x18\x7c\x6b\xab\x5a\x75\x1b\x5b\x70\xa8\xed\x2c\x3b\x78\x89\x80\x79\x47\x97\x34\x5b\x7b\x31\xfc\x15\xb5\xaf\x3e\xcf\xff\xe5\x67\xfa\x69\x5c\x13\xe2\x6e\x8d\xe3\xca\xa0\xbf\xcb\x6e\xaf\x8a\xca\x05\xe3\xbf\x83\x8a\x98\xe5\x76\xea\x17\x72\xaa\xf8\x9b\xa9\xa1\xad\x77\x48\x17\x7c\x11\xf8\x9d\xfb\x22\xb0\x8d\xa2\xda\x66\x47\x72\xdb\xb8\xa3\x5b\xe7\xe4\x2c\xe0\x13\x2d\xe0\xe4\xec\xf7\xb6\x93\x33\xdf\x05\xc9\x1f\x2c\xa7\x27\x21\x4f\x26\x7f\x70\x1c\x99\xac\x75\x3f\x12\x30\xd8\x37\xc6\xc8\x9b\xfc\x95\x75\xb9\x1f\xda\xbf\x9f\xfb\xa1\xfd\xb0\xfb\xa1\x4d\x4e\xa3\x0e\x3e\xdb\x69\xd4\x41\xa7\xd3\xa8\x90\x03\x81\x90\x43\xab\x80\xab\x02\xf0\xd2\xc4\x5c\x15\x58\x6f\x42\xd9\x04\xae\x23\xe9\x68\x8c\xf7\x92\xa4\x9c\xd8\xb6\xed\xfa\x54\xfb\xf1\xf5\xf1\xc9\xb3\xe7\xaf\x4f\x8e\xfb\xf1\xaa\x25\x1d\xfb\xcb\xe6\xea\x6d\xd6\x34\xa2\x2a\xd2\x87\x3f\x0f\xfa\x98\x72\xf7\xf3\xe8\xe7\x71\xfc\x9f\xec\x25\xe9\x83\xb8\xad\x9f\x95\xd5\xb1\x58\x48\x2e\xad\x7e\x25\x1b\x9e\x89\xc5\x0b\xc9\x1d\xd2\x89\x5f\xa7\x2a\x67\x84\x39\x78\x91\x94\x39\x70\x9d\xf2\xf3\xe5\xe5\x53\x0b\x4a\x54\xa6\xcb\x22\x50\x2b\x5d\x55\xa8\xc1\xf6\xa1\x1d\x25\x82\x92\x1f\x46\xdc\x4d\xe8\x3a\x16\x8b\x1a\x04\xab\x5a\x84\xc9\x46\x05\xa8\x8c\x64\xf5\x11\x13\x94\x67\xb3\xd9\x31\xcd\x82\xbc\x08\xd6\x20\x28\x4d\x2c\xb1\x3a\xd4\x87\x64\x28\x7b\x24\xbb\x58\x4f\x07\x7a\xf2\xa0\x58\xa2\x71\x96\xcf\x3e\x25\x73\x51\x10\xee\x64\x2d\xf8\x00\x43\x85\x49\x7c\x3b\x54\xf0\xa9\xd7\x75\x54\x6a\x9f\x7d\x4a\xf7\x65\x3d\x29\x95\xd3\x4f\x06\xb3\x4f\x68\xd2\x30\xfb\xb4\xb7\x27\x6f\x97\x32\x57\x01\x8d\xf2\xd9\x27\x90\x6a\xd4\xe9\x9a\xe9\x04\x00\xf3\x74\xd3\xb7\x3e\x49\xd2\x06\x1b\x00\x6a\x2a\xe1\x38\xa0\x6b\xad\xfb\x64\xf3\xff\x50\xe7\xa0\xee\xc1\xc1\x90\x76\xcf\x75\xc8\x73\xad\x46\xc1\x3e\x2a\x29\x17\xf2\x02\x22\x7f\x0e\x26\x13\x60\x19\x26\x59\x95\x37\xb7\x93\x09\x5c\x53\xd4\x30\x50\xb5\x46\x99\x64\xd1\xcd\x41\x8b\xf4\x53\x59\xcb\xee\xae\xfc\x3b\xd0\x89\x3c\x24\xf8\x63\x3b\x0b\x3c\xed\x2b\x85\x5a\x3e\x2d\xbc\x22\x2b\x63\x68\xd4\xc5\xde\x14\xf3\x5b\x82\xeb\x03\xa0\x4a\xe4\x0d\xde\xdd\xed\xec\x58\x99\xf1\xdd\x1d\x8a\xbb\x5d\x34\x30\x75\xdd\x42\xdc\xf4\x9c\x43\xc0\x85\x66\x6f\x35\x9d\xf5\x0c\x3b\x0b\xb9\xa3\x35\xf7\xa7\x35\x45\x48\xef\x49\xcc\xb6\x03\x07\xf6\x63\x1b\x48\x33\x7b\x9a\x13\xcc\x9e\x81\x76\x8e\x3b\xbb\x90\xbc\x93\x06\x94\x31\xd7\x54\xff\xb1\x9c\x67\x4d\x3e\x0f\xc5\x9d\x46\x31\xb1\xaa\xbe\x0f\xd5\xc6\xeb\xea\xd2\xd3\xae\xeb\xd2\xd3\xba\x72\x08\x43\xff\x70\x88\x41\xa5\x6f\xdb\x7d\x75\xd8\xa6\x8e\x56\x54\x56\x5d\xd6\xca\x16\xe0\x49\xc5\x34\xcd\x55\x81\x78\x25\x41\x50\x36\xa0\xd3\xda\xa1\x4c\x24\x85\x04\xf6\x30\xab\xd5\xa5\xbc\xc7\x59\x97\x05\xea\x1b\x6b\xb3\x7c\x9c\x60\xe3\xea\x32\x6e\x13\x15\xf4\x70\xcb\x51\x02\xb1\xe8\x21\xe0\xce\x99\x5f\xf4\xdd\x6e\x71\xcd\x0b\x7a\xce\x92\xb0\x77\x77\x74\xd2\xae\x4c\x1a\xba\x6d\xe1\xcd\xaf\x6b\x3f\x20\x13\x61\x5b\x39\x13\x8c\x68\x6a\x51\x92\x05\xbd\x2a\xd4\xf5\x57\xb3\xde\xfc\x1e\xac\xde\x3c\xcd\x83\x22\x6c\x9a\x3b\x96\xc1\x5b\x00\x80\x2d\xa0\xd0\x99\x03\x77\x7d\xef\xcc\x69\x3b\xaf\xfa\x53\x75\xc5\x65\xc2\x0c\x24\x00\x93\xe3\x51\x80\xc9\x1a\xe5\x63\xff\x96\xde\x8d\x54\x79\x71\x09\xa3\x93\x9e\xf0\x12\x18\x2c\x74\x3a\x31\xad\x0c\x7d\x64\x23\x6e\x6c\x8c\x42\x66\x6a\x70\x46\xc6\x2e\x60\x2f\x67\x23\xd1\x8a\xc3\xaa\x99\xc4\xd8\x7f\xcc\x55\xcc\x1a\x02\xef\x38\xc1\xdf\xb8\xd9\x5b\x25\x28\x2c\x1e\x9c\x4d\xa0\xd4\xc3\x07\x88\x2d\x3a\xe1\xe3\x9c\x99\xd5\x1d\x21\x21\x88\x9d\x5b\x89\xa6\x35\x28\xa1\x61\x72\x45\x0c\x7a\xe7\xb6\xd2\xac\x11\x5b\x73\xdd\x41\x04\xad\xc7\x00\x76\x50\x94\x7a\xfc\x5e\x37\x68\xfb\x7d\xb4\x93\x2a\xea\x0e\xaa\x50\x0a\x1a\x1f\x95\x9f\x45\xd8\xf2\x1d\x42\x00\x61\x81\xe9\x44\xe2\x92\x45\x62\x48\x26\x29\xe7\xb3\x53\x7d\x64\x39\x8b\x35\xb9\xca\x66\x4f\x25\x28\x45\x2c\xc4\xa0\x9f\x2e\x49\x41\x6b\x4f\xaa\xcb\x97\xb0\x22\x30\x1b\x0b\x24\x95\x68\x0c\x9d\xf2\x43\x20\x10\xdb\xf6\x9b\xa7\x59\x51\x94\x8d\xbc\xac\xf7\x24\xe8\x83\xb2\x98\xdf\xea\x8b\x56\x2f\xfa\x66\x8f\x50\xb0\xf7\x4d\xd4\x2b\x8b\x1e\x0a\x42\x8f\x7a\xdf\xec\xd1\x05\x19\x08\x5e\x6d\xb2\xe6\x18\x2e\xcf\xdf\x0f\x9b\xea\x16\x24\x71\x66\x5b\x5a\xb7\xc3\xb0\x11\xb8\x6b\xc4\x41\x08\x18\xf6\x58\xc3\x47\x36\xec\xa6\xca\x16\x0b\x31\x53\x36\xef\x8f\x43\x89\x2e\x03\x77\x14\xe2\xea\xc0\xfc\xd4\xaa\x3f\x4d\x1f\xc1\x32\x4b\x83\xe4\x45\xb6\xa9\x6c\x04\xe6\x15\xda\xad\xe7\x70\x63\x3d\x44\xd1\xf6\xd5\xd9\x56\xbb\x5a\xce\xe7\x56\x6b\xc3\xda\xa8\x78\xb0\x8a\x86\x46\x46\x6b\xa3\x90\x66\x82\xf0\x99\xca\x15\x6d\x69\x58\x91\xbe\x1e\x92\x9b\x12\xd8\x59\x2b\x98\x20\xe2\x55\x20\x32\x97\xb5\xf0\xbc\xb6\xbd\xcd\xc6\xec\x71\x9c\x58\x50\x74\xed\x16\xdd\x76\x4f\xf8\x2a\x7b\x5c\x1b\x1a\xa7\x11\x66\x5b\xc3\x6c\x2f\xd0\xf1\xd8\xca\x5b\x08\x6c\xa5\x6f\xb9\x0b\x35\x22\xab\x66\xe5\x4d\xb1\xe6\x80\x0a\x1e\xe2\x04\xe1\xeb\x0c\x6d\x7d\x38\x87\x4e\x37\x7a\x26\x0d\x30\x00\x6a\x38\x10\x9b\xde\x9c\xea\x4a\x16\x4d\xfe\x28\x34\x43\x18\xe0\x99\xbe\x3b\x40\x4e\x30\x25\x41\x0a\xae\x08\xa3\x1f\x0f\x95\xa6\xc8\x2b\x96\x8b\x3e\x76\x50\x3b\x22\x98\x76\x7a\x22\x60\x1b\x5c\xa4\xf0\xdc\x53\x88\xee\xcd\xc4\x74\x9e\x55\x62\xd6\xbb\xc9\x9b\xab\x72\xd9\xf4\x32\xb3\xe1\x99\xea\xf0\xd1\x65\x81\xcf\xee\xa1\x6b\x61\x4c\x23\xaa\xe3\xd5\x74\xa1\x79\x61\xd2\xf5\x9f\x2e\x12\xc8\xd2\x06\x88\x0b\x73\xc9\x54\x2e\x86\x8c\x96\x5a\x58\x19\x8d\xed\xf9\xea\x44\x85\x9d\x5f\x52\x36\xfc\x62\x1b\xea\xd8\x1c\xeb\xeb\xb8\x08\x46\x80\xaa\x17\xf6\xa1\x87\x2d\x30\x9d\xc4\xfc\xa2\xef\x69\x81\xb1\xb5\xd4\xbd\x8e\xc6\xa8\x7f\xd8\xb6\x43\xdd\xd2\x65\xb0\x25\xa3\x35\xf5\x05\xa3\x31\x8d\xb8\x2a\x33\xac\x1d\xd6\x37\x53\xc9\x90\x9b\xda\xb2\xbb\x44\x2d\xe6\x17\x89\x9a\x55\x49\xef\xb5\xe9\xe8\xaa\x75\x7c\x59\x58\x70\x03\xee\xf2\xa0\x12\xcd\xc8\xca\x1d\xe5\xe3\x31\x58\xfe\xf8\x0d\x8c\xf2\xb1\xc5\xa9\x30\x99\x8e\xf2\xbc\x43\x4b\xab\x80\x35\x9b\x4d\xab\x32\x5e\xa9\xf5\x36\x2a\x60\xe7\xd2\x03\xe7\x37\x1e\xb3\x0c\x3b\x97\x9a\xb6\x94\xa5\x26\x78\x71\x3f\x24\x6e\x0f\x1a\x27\x62\x87\xdd\x04\xc9\xdd\x96\x44\xd9\xbd\xfe\x29\x6f\xae\x18\x82\xb7\x19\x03\x85\x1e\x37\x42\xee\xae\xde\x7f\x64\x8e\xb2\xc1\x2b\x8e\xb5\x0b\x6d\xe8\xfa\xc8\x9e\x79\x7c\x2d\xd7\xdf\x31\x28\xbd\x3b\xe8\x91\x6d\x78\x6b\x9e\xe5\xf1\xf2\x6d\xab\x72\xc8\xaf\x51\xc7\x14\xad\x9b\x81\xbd\x88\xa8\x2a\x10\x9e\x58\x89\xb7\xfb\x3a\x66\xb6\x55\xaf\x9c\x94\xa1\x47\x41\x51\x51\x36\x27\xf8\x0a\xb6\xb6\x3b\x3b\x1b\x2b\x0f\xd6\x5d\x88\x0d\xf5\x92\xac\xfd\x9e\xd5\x36\x9b\x7a\x1b\xae\x2e\x58\xdb\x79\x59\xce\x37\x55\x77\x9f\xfa\xc0\xac\xa3\xa3\xc2\xa4\x12\x97\xe2\xd3\x02\xc9\xf9\xa3\x36\xfe\xf3\x6b\xd6\x52\x01\x3c\xe5\xd4\xd6\x1b\x61\x50\xc8\xe8\x31\xd6\x83\x9e\x02\x70\x87\x3e\x42\x91\x5d\xa8\x47\xe2\x9f\xcb\xac\x6b\x88\x6a\x7f\x67\x3a\xc2\x7e\x6f\xd2\x94\x36\xf1\x50\xed\x97\x5d\x93\xb1\x55\xd5\xdf\xad\xab\xb8\x8b\x78\xb6\xab\x79\x4d\x9f\xe7\x5f\xd4\xe7\x3f\xaf\xab\xf8\x8b\xfa\xfc\xe7\xce\x3e\x3b\x9b\x66\x94\x15\x33\xd6\x10\xdb\x65\x5c\x0d\x10\x9e\x05\xd1\xd3\xd5\x67\x48\x11\x64\x77\x77\xc7\x00\xc0\x09\x69\x1c\x89\xa1\x02\xb4\xa2\xcb\x6a\xab\x5e\x96\xd5\x2f\xd2\xc9\xae\x3e\x42\xaf\x5a\xab\xc3\xdb\x60\xf2\xf6\x57\xed\xa4\x93\xde\x5a\xec\xf3\xe6\xee\x4e\xcb\xf9\x5c\x4c\x9b\x8e\x2e\x2b\x7f\x66\x4c\x7a\xfa\x39\xbd\x47\x67\x5c\xb8\x33\xbb\xe3\x00\x9f\x4b\x64\x3d\x04\xe2\x35\x12\xbc\xd8\x72\x5c\x0d\x6e\xb9\x63\x6a\xe3\xa1\x3e\x03\xc1\xdd\xe2\xe7\x9c\x81\x89\xa5\x6c\x6a\xf8\xd3\xd0\xad\xa2\x0e\x2d\x33\xfb\x5a\xdc\xb1\x14\x2d\x63\x8a\x0e\x10\x79\xa2\xea\xf1\x90\xbd\xea\x17\x0d\x68\xc3\xf6\x20\xdb\xd3\xce\xac\x9e\x9d\x3c\x39\xfb\xf1\xdd\xc9\xe9\x20\xaf\x4f\x0a\x79\x47\x9b\xf5\xa3\x7f\x2e\x45\x75\xfb\x60\x91\x55\xd9\x75\xfd\xa0\x10\x37\x51\x6c\x78\x2a\x78\x19\xa8\x53\xa7\xbf\xad\x95\x6d\x3f\x1c\xfc\x22\x23\xd0\xed\xf4\x39\xf2\xe8\xfd\xfd\xac\xe4\xad\x43\xd2\x5b\x6e\x37\xe9\x73\x73\x92\x04\x0a\x71\xf3\x57\x4f\xf2\xd2\x21\x9b\x3f\x08\x75\xd0\x34\xd4\x1a\x9b\x65\xa8\x66\x07\xb4\xdc\x1e\xab\xcf\xa3\x70\x21\x7b\x24\x8b\x4a\x4c\xb3\x26\x2f\x2e\x9f\xfc\xbb\x50\x38\x1e\x2a\x5b\x12\xb4\xa5\x79\xb6\xd1\x9d\x2e\x87\xf6\x9d\xea\x5a\xb9\xae\x6b\xdd\x4e\x1d\xb6\x4a\xdc\xdb\x61\x66\x7e\xd1\x8f\xf4\x5d\x2e\x4a\xb5\xe1\x21\x2c\x15\xf2\xa3\x90\xae\xd0\x98\x2c\xbf\x86\x3a\x52\xe5\xcb\x35\xf0\x85\x3e\x13\x95\x7e\x0d\xcb\x0f\x7e\x31\x68\x74\x8a\x90\x72\x0f\x09\xd6\x07\x81\x52\xc1\xc1\xc9\x75\x6a\x7e\xca\x2e\xc2\x5f\xe3\x36\x55\xde\x06\x17\xd9\x14\x65\x9d\xca\x3f\x36\x79\x7e\xf0\x1f\x0b\xc9\x09\x2b\x85\x40\x50\x5e\x58\xd3\xe8\x60\xf0\x87\xc1\xfe\x83\x73\xd1\x64\x83\x83\xbd\x69\x56\x64\xd5\xed\xe0\xd1\xec\x8f\x07\x7f\xfc\xfd\x1f\xb2\xc8\x6c\x28\x27\xaf\xff\x1a\xaf\xb4\xc0\x92\xa1\x73\xc7\x46\x27\xc0\xe9\x22\xa9\x4a\xdb\x50\xd2\x29\x44\xf0\x2c\x69\xd5\xb6\xca\x37\x73\x71\x91\x2b\xe7\x28\xf8\x71\x77\x87\x26\x8b\xdd\x73\x0c\xae\xb9\x8e\x9f\x9f\x3e\xf9\xfe\xe5\xc9\xe4\xdd\x93\xd7\x3f\x9c\x4c\x9e\xbc\x7d\xce\x9a\xf4\x33\x51\x80\xdc\x55\xab\x8e\x3a\x0e\x3d\x57\xb3\xc4\x53\x65\x8f\xf9\x77\xa0\x85\x35\xad\x0f\xed\x5d\x9c\x81\xaa\x24\x18\x74\xd7\x5e\xcf\xdc\xbd\x8a\xac\x59\x56\x24\x10\xa4\x0f\x14\xe8\xda\x65\x47\x94\x37\xb6\x66\x7c\x70\xf2\x1a\xfa\xf5\xe4\xe5\xcb\x89\x82\xb4\xf9\x29\x2d\xc1\xe6\x55\xa7\x80\xbc\xbb\x3b\x27\x91\xdc\xa5\x39\xa9\xfe\x13\x15\x07\xd0\x0d\x78\x7d\x7a\xf3\xf6\xec\xf9\x9b\xd7\x4f\xd6\x75\xcc\xe1\x4e\x55\xcc\x84\xbf\x9d\x9d\xbc\x3e\x9e\xbc\x7d\xf7\xe6\xec\xcd\xd9\xdf\xdf\x5a\xd8\xf5\xf2\x98\x57\xd3\xae\xd2\x69\xca\x48\x44\xd3\x94\x07\x06\xbd\x32\x3e\x7d\x4e\xcf\x9e\x3c\x7d\x71\xf6\xee\xc9\xd3\x93\xc9\x9b\xd7\x93\xe3\x93\xb7\xef\x4e\x9e\x3e\x91\x23\x4a\x6d\x67\x72\x9d\x70\x5a\x8d\xc0\xf6\x5e\xc9\x8a\xeb\x24\x82\x7c\x0c\x7f\x8f\x3a\x3a\xc8\x1c\xdc\xa9\xbd\xc1\xee\x89\x4a\xb5\x6b\x63\x7b\xcf\x8b\x0e\x0d\x85\x4d\x8b\x33\xab\x6b\x51\x35\x0a\x73\xf8\x45\x6d\xbf\xe8\x5c\x81\xc6\xc9\x82\x2a\xc8\x7c\x2f\x6c\x2a\x06\x2e\x9b\x55\x39\xf8\xd8\xb2\x60\xb5\x2c\x9e\x17\xc7\xbc\xb4\x49\xd9\xba\x6d\x64\x01\x84\x69\x9f\x12\xee\x5b\xc1\x33\x10\x9d\x07\x12\xcd\x3c\x4c\x92\x0b\xd7\xdf\xb3\xda\x48\x97\xcb\x7c\x96\xee\x0f\x3f\xc3\x6b\xb5\xaf\xd2\x3d\x0a\x7b\x37\xd9\x46\x43\x7a\x9d\x76\xb1\x1b\xc0\xf7\x60\x43\x00\xdf\x03\xc7\xd5\x47\x28\x3c\xef\x01\x0b\xcf\xfb\x31\x1c\xe4\xf7\xc0\x0e\xf2\x8b\x36\xfc\xae\x8b\x6d\x32\xed\x47\x4d\x5c\x50\xf8\x5d\x59\xbe\xac\xf1\x2d\x77\x3e\x3f\xcf\xa6\x1f\xc0\x9a\xe1\x49\x75\xa9\xe7\xa1\x3c\x7f\x2f\x07\xf2\x98\xfe\x9b\x37\x3e\xaf\xc4\xd1\xfa\xec\x36\xf1\xdc\x3c\x6f\x6c\x98\x4a\x3c\x66\xbf\xd7\x75\x60\x33\x48\x9b\xb8\xde\x80\x37\xf7\x01\x0a\x3c\x36\x3f\xd7\xf6\x60\x13\x44\x9b\x04\xdd\x36\x8b\xb9\x90\xfc\x30\x66\x5a\xcd\x13\xf8\x63\xf6\xdb\x54\x6f\x17\x3b\xda\x90\x4f\x6d\x8b\xba\xa3\xf5\x5a\x37\xac\x12\xf8\x99\xf7\x78\x34\x3e\x02\xea\x91\x64\xd0\x57\x10\x66\xbd\xe4\x8d\x30\xae\x92\x10\x50\xb9\x61\x97\x6d\x40\x76\x1b\xb7\x09\x38\x3a\x7c\x6f\x79\x25\x84\x55\x88\x10\x2b\xbd\x18\x52\xbb\x0e\x06\x23\xf7\xe8\x9c\x7c\x58\x3f\x80\x17\x37\x20\x77\x79\x69\xc7\x56\xda\x44\xf9\x21\xfc\x3a\xed\xec\xf0\x76\x94\x9f\x0c\x70\x6b\x7d\x00\x9e\xf1\x2a\xb1\x98\x67\x53\xe1\x35\x34\xfb\x94\x64\xd7\x4d\x82\x3a\x06\x35\x7b\xb3\x18\x8d\x25\x3f\x38\xcd\xe0\x91\x1b\xf2\x92\xe9\xd5\xb2\xf8\x00\x4f\x61\xa3\x71\x52\xe7\xff\x12\xe9\xef\xc5\xef\x92\xba\xc9\xaa\x26\x95\x15\x89\x62\x56\xa7\xb2\x36\x30\xf8\x1c\xde\x5c\xe5\x73\x01\xaf\x75\x74\x85\x92\xf7\xe3\x65\xd1\xa4\x12\xee\x3b\x59\xfe\xb1\xfc\x73\x24\x3f\x41\x43\x45\x9b\x89\x92\x69\x70\x0b\x0d\xe2\x5b\x24\x0d\x69\x1f\xda\x8d\x87\x98\x33\x82\xb6\xb1\x39\xdd\x5d\xc8\x8a\x87\x90\xb5\x97\x4a\xf0\xa1\x6c\xe1\x41\x8a\xbd\xaa\x20\x48\x5b\xa3\xa0\xb1\x5e\x7a\x4d\x40\x9c\x60\x05\xd6\xab\x50\xb2\x2d\xfa\x72\x9a\x9d\x01\x15\xd0\xd4\x66\xa5\xf6\xdd\x72\xb6\x37\x09\x98\x6c\x35\x63\x1d\x2d\xfd\x47\x2b\x97\x4a\x23\xaa\x1a\xdd\xdd\x39\x3d\x3b\x48\xe0\xdf\xa1\x22\x22\x03\x98\x8e\xc6\x43\x6c\x81\xb6\x22\x55\xc0\x58\xff\xe1\xba\x81\xc1\x04\x08\xef\x50\xad\xc5\xf8\x3b\x39\x57\xbc\x6e\x24\x70\x95\xdd\x9a\x27\x1c\x0e\xd4\xb6\x5d\xa7\x24\x34\xd6\x75\x4a\xa2\x2d\xd2\xa8\xd3\xdc\xe9\x4b\x4f\xc7\x80\x05\xc9\x81\x6d\x41\x02\x5d\x90\x97\xf1\x3a\x95\xbd\x46\x7d\xdc\xbc\x2c\xa2\x24\xba\xc8\xe7\x42\x5e\x20\xa3\x24\x9a\xe7\x85\x78\xbd\x84\xcb\x61\x12\x5d\x8b\xba\xce\x2e\x65\x72\x81\xb9\x85\xca\xa9\x9b\x6c\xfa\x21\x62\x0e\xa7\xd8\xfb\x39\x79\x2c\xbc\x5e\xa4\xf0\xed\xbc\xf8\xa9\xe7\x37\xc9\xc5\x43\xf6\x34\x5b\x48\x06\xff\x54\xd6\x78\x56\x01\xd1\x75\x64\x60\x1d\xc4\x87\x4a\x10\xe6\x08\x7f\xf6\x29\xdd\x07\xad\x70\x33\x4c\xa6\x2b\xbe\xb7\x87\x1a\xad\x23\x93\x0b\x4a\xe2\xe3\xb4\xb9\x5e\x78\x89\xc4\x14\x61\x2f\x8c\x1e\x33\x99\x2e\x38\xc9\xf1\x5a\xa6\x09\x83\x1b\x74\xd0\x04\x59\x9a\x6d\xb4\xbf\xdb\x64\x2a\xf7\x35\x6c\xcf\xbe\xd8\xae\xcb\xb3\xcf\x3a\xdc\x68\x9f\x75\xe8\xda\x67\xb1\xc0\x7c\x2e\x1c\x0b\xd4\x07\x7b\x3c\x84\xe5\x73\x81\x30\x4c\x9f\xce\x3f\x6d\xaa\x30\xc8\x69\x53\x75\x2d\x9a\x47\xf6\xa2\xf1\xcc\x75\x2c\x63\x9e\x37\xaf\x9f\x9e\xa4\x07\xc9\xe9\x8f\xa7\x6f\x4f\x5e\x1f\x9f\x1c\xa7\x87\xcc\x7b\xb7\x75\xda\x91\xb3\xdb\x6b\x08\x19\xc4\x8f\xc6\x07\x07\x4c\x2f\x00\x77\x59\x24\xdb\x07\x8f\x86\xf9\x77\x92\xa6\x1f\xa4\x8f\x50\x63\x17\xaa\x48\x53\x84\x1a\xe5\x63\xd0\xf0\xb8\x2a\x67\x26\x69\xef\x60\x2c\x77\x34\x59\x6f\xae\x3c\x4c\xe9\x2d\x6c\x26\x3e\x31\x53\x19\xf8\x57\x2b\x95\x12\x20\xc5\x6e\x5d\xa1\x44\xde\xeb\xe2\x84\x0a\xa1\x0f\x32\xd1\x64\x26\x1c\x1e\x69\xfb\xea\x6f\xe5\x69\xec\x3a\x60\x22\x14\x69\xa8\x28\xf6\xca\xd1\x1a\x73\x6a\x6f\xa9\xe5\xd4\x4e\x1f\xe9\x6e\x83\xa0\x82\x80\x76\x77\x9d\xce\xb9\x1d\x30\x83\x8d\x57\x1b\x2b\xee\xce\x21\xbf\x12\xcc\x7b\x0c\x55\xb6\x4d\xad\x23\xad\x0a\x45\xb0\x66\x6a\xec\xa0\x82\xf6\xf4\x24\x65\x73\x25\xaa\x27\xaa\x9d\x0e\x25\x20\xde\x3c\xa9\x01\xe9\x4a\xdd\x6f\x07\x87\x66\x0c\xa4\xdb\xc7\x88\x13\x73\x82\xe4\x09\x8b\x17\xe9\x93\xc0\x46\xf9\x98\xa8\xdd\xa4\xec\x1d\x8c\xc1\x51\x69\xcd\x92\x0e\x55\x77\x31\xf4\x89\xe6\x67\xd9\x38\x9d\xc5\x63\xa6\xfa\x39\xe3\x50\x79\x01\xf2\x20\xc0\x4b\x61\xbb\xae\x15\xf6\xfa\x70\x8e\xfe\x8c\x1c\xe7\x17\x17\xbf\xe2\x84\x24\xb3\xfc\xe2\x82\xea\x96\x7c\xcf\xff\xc8\xf9\x21\xce\x5e\x7b\x0d\xd8\x6e\xa2\x86\x6c\xe8\x6b\xa6\x93\xd6\x10\x03\x0e\xcf\x6f\x20\xa0\x27\xb7\x1a\x54\xa1\x44\x9d\xb9\xb5\x9b\x2c\x8b\x29\xa9\x98\x62\xc2\xee\xae\xd1\x24\x34\x52\x19\xe5\xf0\x9c\x70\x8b\x9f\x43\xc2\x3d\xbc\xdb\xc2\xb1\x42\x93\xda\xb9\x0d\x07\x91\x9e\x05\xf1\x4d\x53\x06\x21\x97\xa0\x8f\xf0\x7d\x97\xca\xc3\x29\x3c\x17\x44\x3a\xd9\xc6\x49\xc8\x2f\xfa\xa1\x31\xca\x8b\xf2\x2c\x9f\x3d\x31\x88\x8b\x57\x7e\x5a\xbf\x03\x91\xb1\xbd\x06\xbb\x42\xd0\x3a\xd6\x89\xdb\x4c\xd1\xd7\x98\x1d\xdd\xec\xc4\x69\x37\x70\x82\x7f\xcd\x59\x0c\xef\x6a\xce\x4c\xd1\x2d\x92\xc1\x25\x8f\x36\xcd\xd2\x3b\x6b\x18\x7a\xa2\xec\xe4\x35\x73\x85\xa6\x3e\x30\xe6\xf5\x28\xc1\x4b\xe0\xbf\xcd\x91\xe4\x76\x96\xed\x7b\x7c\xc3\x93\x47\x82\x9e\x73\x27\x26\xf1\xda\xed\x40\xc9\x9d\xfe\x1d\xb7\x84\xf0\xb2\x57\xc3\x66\x39\x7b\x87\xe3\xbb\x54\xb3\xaf\x06\x11\x4d\x75\x0b\x36\x84\xe6\xed\x99\x46\x4b\xa1\xd6\x70\x44\x2d\x37\xcb\x02\xc7\x6f\x15\x3a\x59\xdc\xb6\xed\xdd\xf4\xff\x6f\x1a\x37\xfa\x42\x8a\xd3\xef\x53\x37\x12\x5d\xbd\xed\xac\x77\x53\xe8\xe9\xae\x79\xad\x6d\xcc\xd6\xbf\xf0\xcc\x6a\xcd\x7e\x73\x94\x2b\x12\x94\x3d\x92\x9f\x86\xc8\xd4\x84\xe6\xc9\x5c\x45\x44\x4b\xe6\xa9\xe9\xab\x6f\xd1\xa8\xb2\x18\xd0\x28\x1f\x0f\x37\xd2\xd3\xd0\x50\xdd\x2f\x48\x53\x43\x77\xf4\x78\xdc\x30\xf8\x78\xc8\x90\xc1\x73\x6b\xae\x19\xfc\x25\x14\x69\xdb\x06\x7a\x1d\x72\x31\xea\xe2\xc5\x2d\xc0\xb0\x2b\xbb\x3c\xca\xc7\xbf\x28\x59\x07\x42\xa5\xeb\x51\x5a\x51\xce\x59\xc0\x10\x5d\xd4\xda\x85\xcd\x16\x4b\x52\x50\x08\x1e\x61\xee\x70\x0a\x4f\x9a\x46\x7a\x39\x63\x7e\x61\x39\x84\x36\x69\x98\x12\x92\x9d\x69\xea\xe2\xba\x5c\x8d\x35\xbc\x75\x71\xda\xcd\x8a\x55\xc1\xdf\x9d\x3d\x18\xf5\x95\x12\x7d\x24\x68\x97\x5d\x20\xa3\x08\xaf\x52\x79\xe2\xe9\xfa\xf0\x00\x34\xd5\xbb\x55\x83\xc1\x88\x39\x72\x3a\x7c\xfe\x7e\xe6\x71\xd6\xfe\x36\x1c\xfc\xd0\xec\x63\x8c\x11\xcf\x2f\x20\xea\x43\xbd\xab\x69\x35\x94\x29\xb9\x48\x65\x10\xb4\x15\x0f\x06\x63\xd4\x61\x7f\xb0\xc7\xe5\xf9\x7b\x78\xc6\x24\x95\x64\x33\x35\x8c\x6f\x23\xf4\xaf\x94\x80\xc6\xe1\x48\xd5\xec\xa0\x5d\x34\x64\x8d\x30\x6b\xdc\xa7\xf8\x29\x5e\x2d\xeb\xaa\xc0\x34\x7b\xf3\xb0\x55\x56\xad\x25\xa9\xe8\x25\xd5\xbf\x0c\xad\x5e\x65\x75\xc7\xc9\xf2\xd5\x6f\xe8\x4a\xc7\xdc\xc8\x3a\x6c\x9a\xb1\x37\x12\xde\xb1\x94\x7f\x04\xae\xb6\x1d\x92\x20\xda\x27\x7e\x79\xae\x0e\xad\x57\x6c\x2b\xfe\xd0\xfe\x7c\xaf\xb5\x30\xd4\x1b\xd3\xc8\x22\x05\xdb\x66\x26\x78\x63\x7c\x56\x56\x29\xff\xe0\xe1\x4b\x48\xc2\x8d\x96\x66\x41\xeb\x92\xe4\xc1\x41\x3c\xda\xa7\x73\xbd\xcb\x04\x25\xd9\x97\x60\x43\xcb\x9c\x14\x9b\xac\x27\x13\x3c\xcd\xb5\xc7\x01\x78\xab\xb7\x43\x9e\xa4\x65\x11\x70\x16\xa7\x99\x21\xfb\xb3\x4b\x04\xed\xbb\x50\x1b\x6d\xf4\xa1\x16\x72\xe2\xf6\x39\x22\xe8\x8d\x22\x67\xdf\xf5\x54\x40\xee\xbc\xce\xd3\x56\xc0\x5f\x93\xd2\x14\x70\x8a\xa9\xd7\xa4\xe4\x7b\x50\xae\x39\xf9\xdb\xdb\x27\xaf\x41\xbf\xe5\xe1\x3f\xfa\xfd\xc7\x47\x10\xac\xe3\xbf\x7e\x1e\xc4\xff\x15\xff\xbc\xea\x0f\xfe\x2b\xfe\xb9\xfd\xcf\x87\x5d\x82\x7f\x4d\x29\x9e\xb3\x89\x05\xfa\x6e\x62\x1c\x26\x2a\x36\x34\xd3\xab\x64\x51\x89\x8b\xfc\x53\x22\x09\x80\xdc\xdc\x4a\x50\x13\x67\xbb\x07\xb1\xb5\xbb\x4c\x16\xbf\xaf\xb2\xa9\xa0\x06\xc5\x8c\x69\x70\xf7\xa6\x68\xad\x2d\x77\xf6\x2c\x2f\x7a\xa0\x23\x58\x27\xbd\x68\x2f\x12\x83\xcb\x41\xef\xff\x2c\x6b\x51\x0d\x56\xe0\x3c\x17\x76\xf3\xde\x3c\xc3\x5f\xed\xff\xe9\xd5\x57\xe5\x72\x3e\xeb\x9d\x0b\x1f\xcc\x40\x45\xb0\xe5\xc3\x20\x52\x07\x7b\x03\xf1\x49\x4c\xd5\x50\xe2\x78\x85\x63\x4c\x01\x76\x74\x30\x1e\xca\xc1\xd2\xd7\xa1\x0e\x2a\x02\x3c\x06\x5c\x75\x9b\x7e\x94\x44\xb1\x21\xa9\x7a\x79\x71\x91\x7f\x8a\x57\x0a\x7d\x7d\xac\x6f\x8f\xd2\x5b\xe5\x80\x51\x67\x53\xc3\x6d\xdb\x41\xfe\x97\xa2\x59\x43\xfb\xdb\x84\xf1\xf9\xda\x74\xef\x7a\xc7\x3b\x60\xde\xf1\x02\x9e\xe9\x0e\x8d\x67\xba\x4d\xc4\x68\x1b\xac\x59\xae\xe7\x57\xad\x6d\x54\x68\xfc\xa7\x24\x79\x7a\x10\xb2\xc2\x4d\xd3\xf4\x70\x77\x17\x5b\xee\xf3\x80\xdd\x71\x9a\xa6\x11\xaa\xfc\xc4\xab\x3c\xdd\x1f\x76\x54\x3c\x3a\x18\xeb\xdd\x7e\x2e\x8a\x34\x6c\x0d\x69\x02\x7e\x77\xdb\x44\x82\x97\xf1\x75\x26\x91\x1d\x73\x9f\x17\x75\x53\x41\x67\x32\xe0\x17\xef\xf1\x0c\xf7\x8b\x6c\x76\x9b\xf6\xb9\xa6\xba\x7d\x2a\x57\xca\x9a\x07\x32\x9e\x8f\xca\x4a\xcb\xf3\x7a\x5a\xe5\xe7\xf2\xfc\x1f\x29\xe3\xe0\x15\x46\xfb\x5e\x94\x8b\xe5\x3c\x6b\x84\xe1\x10\xf4\x68\x0a\x7d\xfc\x9b\x8b\xc4\x68\x9c\x98\xda\x86\xee\x8d\x4a\x37\xe3\x5d\xa6\x4c\x1e\x07\xa3\x80\xdd\x26\x65\x00\x56\x6a\x68\xa4\x56\xe0\xd3\x8c\x79\xbf\x81\x13\x9c\xc1\x92\x63\xde\x16\x0d\x92\xc9\x00\x54\x83\xab\x23\x53\x27\xe0\x78\x9b\xfc\x5a\x78\x56\xa2\xa2\xba\x48\x83\x3a\xc8\x37\x79\x31\x2b\x6f\x1e\xe3\xbf\x81\x84\x2b\xab\xeb\xac\x98\x8a\xbb\xbb\x55\x7b\x44\x28\xbc\x28\x52\x99\x33\x28\xca\x9b\xbb\x3b\xf8\x75\x5d\xfe\xeb\xb5\xfe\xb8\x11\xe7\x1f\xf2\xc6\x7c\x5f\xd7\xe6\x77\xf9\xba\xbc\xd1\x67\x7b\xf1\xf8\xa2\x80\x40\x69\x7d\x99\x17\x1f\x79\x8a\x93\x7b\xe0\x42\x2b\x6b\x44\xdb\xf6\x63\xfe\xc4\xa8\x48\x18\x2d\x63\x17\xd9\xed\xbc\xcc\x8c\x00\x43\x05\x81\x73\xe7\x92\xa1\x2d\x91\x68\x81\x0d\x9d\x5c\x80\x90\xfe\xe8\xd9\xbb\x1f\x9f\x9e\xfd\xf8\xee\x04\x74\x42\x9f\x3d\x7f\x79\x12\xaf\x14\x64\x2a\x0b\xee\x45\x47\xbd\x68\x8f\x1a\xa4\x09\x19\x4e\xcb\xa2\x2e\xe7\x62\x20\x21\xfb\x0a\x1c\x2f\x04\xec\x16\x69\xfa\xe1\x91\x20\x4e\x7d\xcb\xef\x99\xae\xab\xa4\xd4\xbe\xf7\xab\x11\xae\xef\x3a\xef\xd8\x49\x31\x63\x7d\x63\xfb\x84\xc4\xd1\xb9\xb8\x28\x49\xd7\x18\x48\x5e\x75\x03\xc5\x31\xbe\x2c\xc2\x48\x68\xdc\x0e\x9b\x15\xa0\x72\x0c\x88\xa4\x7e\xde\xd2\x28\x37\xe4\x3b\xc0\x0c\x9c\x50\x40\x64\xac\xe6\xd5\x78\x06\x08\xa2\x80\x7b\x0b\x68\xa6\x57\xd0\x43\x11\xaf\xa8\x70\x4a\xff\x41\x53\x5c\xcd\x9b\xf8\x34\x15\xa0\x03\x92\x8a\x6e\xc9\xc9\xe7\x8d\x4f\x8f\x27\xbb\x68\x44\x15\x1a\x4e\xe2\xa0\x00\xe6\xfd\x73\xe6\x90\x49\x58\xf8\x0e\xa8\xc5\x2c\x1a\x1d\x5d\x02\x17\xb3\x8e\x52\xf3\x93\x4b\x0f\x69\xe7\xd1\xfc\x9b\xf2\x0c\x0e\x7b\x08\x44\xcf\x50\xec\x1a\xb1\x2d\x83\x08\x9d\x96\xa3\x11\xaf\xef\xa0\x0c\x0a\x79\x98\xd4\x21\x0b\xd4\xfe\x08\x09\x69\x1a\xfd\x57\x24\x69\x5f\x6e\x90\xb0\x15\x46\xa3\x7f\xfc\x2c\xf9\xd1\x48\x2b\x5e\xe9\x2c\xf2\x94\x8e\xcd\x62\xfa\xfb\x32\x2f\xfa\xd1\xcf\x3f\x0f\x22\xb0\x18\x54\xe9\x7b\x51\xff\xe7\x9f\x07\x83\xff\x8a\x1f\x47\xce\x59\x91\xae\x68\x34\x47\x6a\xbc\x50\xe0\x48\x6e\x42\xef\xc4\xe5\xc9\xa7\x45\x3f\xfa\x47\xb4\x47\xb5\xfc\x67\x14\x13\x3e\x8e\xf0\x5f\x3b\xe4\xe7\x81\xb3\x77\x2b\x47\x57\xab\x56\xed\x7e\x26\xcf\x11\x82\x51\xb2\x39\x36\xcc\x8c\x2c\x0b\x33\x27\xac\x6e\xa3\x56\x71\x8f\x03\xca\x3a\x86\x28\x68\x17\xaf\x93\xd4\x29\xda\x96\x57\xe2\x68\x28\xea\x41\x59\x43\x60\xbd\x4c\xd9\x6f\xfe\xb2\x55\x8b\xa6\xcf\xcf\x48\x78\xe6\x0d\x56\x06\xb0\x29\xfc\xed\x62\x68\xea\xc9\xf9\x3c\x2b\x3e\x6c\xc1\xc9\x70\x77\xd6\xbf\x09\x33\x13\xf2\xae\xeb\x5c\xd6\x36\xf1\xb3\x79\xfd\xbd\x1c\x6d\x9f\xc5\x8b\xd3\x5e\x0d\x64\xda\xdd\x9d\x11\xff\x31\x73\xf8\xdd\x5d\x54\xb3\x6e\xa6\x57\xfd\x87\x3f\x9f\x3e\x8c\xc9\x3b\x7d\x27\x9b\xa8\x51\xf5\x25\x6e\xd2\xbf\xb2\xa3\xf0\x5f\xd4\x09\x77\xc0\xa3\xf1\x23\xbb\x06\x36\x07\x06\xdf\x8e\x93\x06\x9c\x02\x89\x6b\x73\x80\xe3\x8d\x01\xa7\xc4\x72\xc4\xe3\xce\x15\x05\x05\xdc\xdd\x55\x0c\x7e\x44\x9e\x2c\xe4\x6c\xed\xc3\x49\x8d\x6e\x31\x02\xe6\x0e\x7d\x8a\x71\x0f\x00\xbd\xbc\xee\xe9\xdc\xd9\xa0\xf7\x76\x2e\xb2\x5a\xf4\x24\xce\x94\xe1\xdc\x09\xc2\x15\x75\x23\xb2\xd9\x20\x4a\x28\xc5\x52\xeb\x23\x27\x1c\xf0\xb7\x8b\x30\xa9\x9c\x13\x61\x16\xc9\x3c\x94\xc7\xaa\xec\x26\x3d\x24\x9a\x30\xe5\x7d\xa9\xc6\xe8\x46\x42\x61\xd3\xac\xa7\x94\xe9\xcd\xd3\xc2\x81\x49\xe6\x5a\xec\x14\x70\xb1\x10\xeb\x66\x47\xe6\x6f\x31\x39\xaf\x01\x8c\xcd\x8d\x4c\xb0\xa7\x06\x5a\x92\x7f\xba\x27\xe6\xb5\x93\x4b\x15\x53\x4e\x07\xf6\xe7\xf9\x79\x95\x55\x21\x91\xd8\x67\x8a\xbf\xd6\xce\xc5\x1a\x21\x56\x60\xf9\x6e\x12\x62\x29\x53\x17\x37\x9f\x9b\xba\xe8\xf1\xb9\x97\xa2\x89\xc9\x21\xc9\xaf\xa4\xb8\x97\xf9\x39\xbe\x86\xed\xab\x0d\xe4\x25\x80\xdd\xba\xd7\x46\xdb\xcb\x91\xa9\xcc\x72\x71\x94\x5f\xf4\x4d\xce\x28\x1f\x0f\x64\x59\x49\x50\x50\x05\xd1\x98\x05\xd1\xb6\xed\x90\x55\xa6\x5c\x1f\xd8\xad\x27\x1f\x45\x55\xe7\x65\x81\x2f\xb7\xa6\x8f\xea\x4a\xc9\x2a\x00\xbe\x64\x25\xd3\x8f\x78\xc9\x23\xfa\xdf\xc6\xe1\xf6\x9e\x22\x2a\xfc\x81\xdf\xa3\x69\x62\x1e\x38\x56\xf7\xf6\x92\xfd\x64\xfb\xde\xcc\xc4\xbb\xe0\xf8\xd5\x45\xef\x3c\x75\x3b\x80\x2f\x7d\xe7\xb1\xdf\x0d\x25\x60\x34\x39\x89\x04\x4c\x0e\x62\xab\x49\x21\xe9\x8d\x79\xc8\x52\x02\x4c\x25\xb4\x63\xc5\x35\x94\xac\xc7\x48\xe3\xe6\xf9\x39\x4c\xb3\xac\x7e\xa0\xb0\x85\x8e\x86\x9c\xe9\x96\x97\xdc\x8e\xc5\x6c\x60\x3a\x56\x2d\xc4\xbf\xdf\xe2\xb0\xd6\x82\xed\xdf\x84\xff\xe9\x10\x6f\x1f\x76\x6c\xc0\x74\xf7\x79\x05\x8f\x17\x6c\xa6\x29\xfd\xcd\xf9\xfb\x64\x5e\x5e\x9e\x95\x4f\xf1\xdb\x5c\x86\xc9\x46\x7d\x40\x80\xfa\x16\xf5\xe6\xfc\x7d\x1a\x84\xd0\xca\xac\x74\x20\x53\xf2\x8e\x63\xd6\xca\xaa\x51\x05\xe9\x89\x08\xf4\x20\xac\xb2\x6f\xac\x33\xfd\xb1\x49\x45\x09\xc4\x91\x3c\x44\x86\x4c\xcb\xc8\x34\x4e\x6f\x74\xa8\xeb\x6d\x3b\xee\xe3\xc3\xe5\x1b\x18\x2f\xd2\x67\xe8\x61\x01\xf4\x87\xbc\xec\x60\x96\xd7\x8b\x79\x06\x92\xc3\x34\x52\x77\xcc\x68\x4f\x76\x4d\x0b\x92\x18\xbc\x6d\x49\x6c\x6f\x9c\x64\x2d\xe1\xd9\x06\xca\x0b\x98\xfb\xf4\x13\x25\xbd\x28\x1e\x62\x6f\xfb\x54\x30\x6e\xb9\x2e\x12\x5a\xbe\xbe\x2d\xe7\xb7\x17\xf9\x7c\xde\x6f\x44\xdd\x24\x0a\x10\xf6\x18\x99\x12\xaf\x9a\xea\xb6\xe3\x49\x00\x2b\x80\x1b\x7d\x96\xcf\xc5\xec\xa8\x17\xed\xe9\x96\xe0\x4e\xdc\x87\x45\x00\x7e\x21\xce\xf2\x6b\x51\x2e\x1b\xee\xfa\x0c\x6b\x05\x90\x36\xd9\x77\x54\x67\xf9\x9a\x94\x93\x71\x64\x93\x68\x34\x2f\x2f\xa3\xf8\xee\x8e\x6c\x58\x21\x12\xba\x0b\x22\xd3\x38\x0c\xb4\xe4\x02\xe1\x32\x65\x50\x79\x71\x51\xba\x40\x32\x8d\xc3\x80\x0d\xaf\x0b\x04\x89\x12\x6a\x43\x61\x44\x9b\x5b\x1a\x53\x25\x9c\x3d\x2f\x5d\xd7\x86\xeb\x6c\xd1\xf9\x9c\xb0\x5d\xa8\x24\x6d\x37\xfb\x0b\x1a\x7d\xb8\x01\x87\xd6\xed\x6b\x6e\x6c\x9e\x03\x16\x9b\x27\x14\x57\xe7\xd0\x89\xab\x13\x32\xbf\x7d\xe4\x98\xdf\x06\xec\x31\x7e\x67\xec\x31\xd8\x76\x48\x01\xb7\x30\x9c\xdb\xb2\x59\x2c\x2d\x07\x8b\x12\xd3\xbd\xbc\xc0\x50\xe2\xa8\x21\xe2\xda\x00\x48\x90\x38\x5e\x61\x59\x78\x59\x18\xc3\xdb\x36\xfc\xd2\x12\x25\xcc\x6e\xad\x86\x5f\x65\x8b\x7e\x59\xe5\x97\x79\x91\xcd\x93\x42\xdc\xbc\x61\xb2\x20\x08\x39\xa1\x32\x07\xf2\x0b\x83\x83\xc5\xe8\x64\xa5\x4e\xb1\xe7\x0a\x00\x13\xe3\xa1\xae\x65\xa0\x63\x56\xb0\x34\x2a\x8a\xff\x58\x3a\xdd\xab\x74\x6d\xc4\x5f\x19\xaf\x34\x08\x67\x7a\xff\xa6\x9a\x89\x4a\xcc\x4e\x41\xe6\x80\xc1\x02\xe6\x22\xab\xfa\x71\x6b\x72\x08\xd7\x01\xdb\x7d\xb9\xbd\x18\xb8\x76\xc8\xca\x18\x13\xa9\x15\xd4\x78\x64\xed\x22\x79\x3d\x58\x54\xa2\x16\xc5\x54\x9c\xa2\x23\x4c\x48\x9b\xa3\xea\x1b\x58\xab\x5a\xb6\xb2\x88\x4a\x49\x3a\x29\xd1\x0f\xc6\xc3\xe7\x95\xb8\xb5\x82\xa0\x36\xd5\xf5\xca\xe3\x44\x96\x45\x67\x56\x1a\x4a\xab\xdc\xb0\xb4\x91\x84\x1b\xa3\xd3\x94\xb9\x56\x40\x83\x68\x6e\x64\xe2\xfa\xd5\x3b\x47\xee\x71\xbd\x4e\x98\x65\x92\x5a\x66\xc6\xb2\x50\xa2\x3c\xf6\x42\x0e\x3c\x04\xeb\x67\x52\xdb\x54\x96\xee\x9a\xfe\x23\x42\x4f\xf7\x80\x5d\xc9\xdb\xe4\x2a\xab\xbf\x78\x84\xda\x3d\x96\x8f\xf3\x80\x4d\xfa\x45\x91\xd4\x62\x7e\x61\x5e\x25\xb0\xbe\xa6\x84\x83\xb3\x1f\x5b\xc2\xbb\xf7\x29\xeb\xf1\x30\xff\xf3\x7b\xbc\x40\x5c\xd0\x89\x0a\x1e\x51\xe7\xa8\x85\x27\x47\x4f\x95\xac\x1d\xbd\xb2\xdb\x49\xe4\x6a\x3c\x72\x0e\xf1\x9a\x42\x71\x1b\xf2\x1e\xd6\x40\xe2\x66\xf4\xb0\x88\x5d\x14\x80\x43\xed\x41\x68\x34\x4a\xce\x29\x1a\x1e\xc8\x40\x6e\x23\xb4\x3a\x60\xd1\x7b\x4b\x50\xc5\x42\xa7\xe5\xaf\x5d\xde\xbc\xca\x16\xe9\xab\x6c\x31\x7c\x95\x2d\xd6\x2f\xd6\x57\xd9\xa2\x05\x28\xb6\x3c\x11\x8d\x47\xfb\xc9\xa5\x60\x46\xdb\xda\xa3\x2e\xb5\xc5\xda\x4d\x2c\x42\xf8\xc0\xdc\x4d\x62\x3e\x52\x6e\x9b\xd4\x4e\x7d\xdc\xfd\x3d\x8c\x4f\x8f\x34\xd9\xaa\x11\xd8\x3b\xb3\xd9\xac\x4f\x21\xf1\x4d\x5b\xb8\x11\x0e\xb5\x2f\x2b\x25\x1a\x82\x10\x43\x9c\xbc\x03\x0b\xf8\x83\x15\x00\xeb\x9e\x5d\x52\x6e\x8d\x3d\x7b\x32\x09\x45\x11\xaf\x48\x09\x07\x0b\xd0\x3a\xe7\x9d\xdf\xa6\xdb\xc3\x0d\x8e\x6b\xec\x15\xfb\x05\x73\x17\x1c\x47\x60\xbd\xea\xe7\x44\xb3\x6a\x37\xe2\x0f\x27\x50\x5d\x0e\xfd\xde\xfa\x5d\xb3\x1f\xb5\x60\x5d\x6b\x3a\x22\xec\x81\x73\x03\x77\xd1\x6a\xe7\x68\x78\x34\x03\x72\x89\xfc\x63\x67\xc1\xfd\x94\x37\x57\xc7\xc8\xb6\xf6\xcb\x05\xa9\x9f\xbd\x52\x2e\x35\x58\xf0\x56\xe2\x6d\xd1\x29\x11\x41\x5a\x89\xad\x5d\x9b\xb7\x10\x75\xed\x92\xfb\x58\xd8\x8a\x6e\xd4\xb9\x50\x67\xac\xe9\x56\x6b\x18\x16\x31\x6f\xcc\xb3\x48\xb6\x16\x79\xdc\x09\x6e\x3b\xd3\xd6\x53\x71\x95\xd5\x14\x24\x41\x0e\xfd\x2a\xab\x35\xb9\xab\x1c\xdd\x75\xab\x21\x59\x9d\xc1\x1c\xb8\xcb\x36\x26\x20\x16\x06\x3d\x9c\x62\x0b\x90\x2c\x17\x84\x9c\x67\x9e\xad\xe9\xd4\x42\x79\x37\x1e\x80\xc9\x0a\xec\x82\x21\x9a\xe0\x68\x5f\xf1\xfa\x8f\xbc\x5e\xb6\xb1\xe3\xe2\xce\xec\xd1\x6c\xbb\xb6\x20\xd4\xe6\xec\xa4\xb1\x46\x53\xfb\xb3\xeb\xfa\x20\xaa\xcb\xfb\x7b\xb6\xdb\xf4\x64\x02\xb5\x1a\xe6\x75\xb9\x98\x65\x0d\x77\x5e\xaa\xf8\x66\x9d\x21\xaf\x99\xf4\xd1\xc1\x40\x1b\xb3\x3e\xaa\x95\x78\x69\x2a\x45\xfc\xb4\x62\xa7\x09\xa6\xf3\xd2\x94\x7f\xca\xb7\x51\xc4\x21\xec\xdc\xeb\xba\xb4\xe1\xb6\xb5\x29\x96\x6c\x67\x86\x09\xa3\x6b\x25\xd3\xa3\xbc\x93\x5a\x9e\xd7\xa2\xfa\x28\x3c\x85\x4a\x1d\x72\xf6\xff\x8e\x28\xb2\x5f\xc1\x97\x40\xe5\x44\xea\x0c\x68\x72\xba\xfe\xa0\x1e\x31\x7f\x50\xdb\x5c\x36\x43\x3e\xa3\x1e\x39\x3e\xa3\xd6\x5f\x48\xbb\xae\xbe\xdf\x3a\x57\x5f\xcf\x35\xc2\xb7\x1b\x5d\x23\x7c\xeb\xba\x46\xb8\xa9\x9c\xe1\x4a\x08\x99\x48\xb8\xf8\x20\x80\xdf\xf4\x9b\x51\x39\x1d\x6e\x13\xbe\xb5\xdc\x26\xac\x8d\x10\xfb\xfb\xad\xe3\xbe\xfe\xe1\x5e\x61\x5f\xff\x10\x8e\xfa\xea\x39\x14\x75\x48\xd3\xf3\x38\x0a\xa5\xbe\xc7\x85\xe7\x06\xac\x1d\x50\xba\x8a\x31\xf7\x86\x56\xa2\x1f\x7f\x96\x65\x52\x0c\x2e\xf4\x73\xd4\x05\x6f\xe7\xab\xfa\xbf\x07\xdd\x96\xb5\xad\xd8\x20\xac\xad\x4d\x65\x43\x50\xaa\x5d\xad\xfe\xed\x85\xb9\xe5\xb6\xb5\xa6\xad\x6e\x78\x3b\x1f\x8a\xbc\x3b\xf9\xef\x1f\x9f\xbf\x3b\x39\x4e\xb2\x89\x5c\x7c\xd7\xd9\x22\xc9\x26\x6a\xa9\xd1\xff\x24\x9b\xa8\x85\xa5\x5e\xa3\x36\x85\xbc\xb5\x7c\x6a\x70\xb5\x9b\x85\xa8\x9e\xd9\xb7\xb3\x4a\x34\x2c\x66\xd6\x64\x52\x88\x4f\xcd\xa9\x84\x53\xf1\x97\x54\xe0\x42\x93\x03\x8f\x94\xe0\x36\x89\xf9\xa1\x91\xa0\xdc\x19\x8d\x57\x08\xf4\xed\x43\x71\x35\xe0\x8c\x82\x38\xa2\x3c\xd2\xbc\xef\x2b\x43\x36\x78\x3d\x40\x68\xb0\x77\x50\x01\x93\x74\xaa\x15\x4f\xf7\xda\xf3\x92\x81\x40\x51\xec\x14\xd2\x11\x74\x65\x7d\xc1\x1e\xe6\x45\xde\xbc\x92\xc0\x7d\x28\x82\x51\x36\xc8\x25\x70\xbd\xbb\xcb\x1c\x5a\x7d\xb7\x1f\xaf\x00\x46\x55\x0e\xf3\xaa\x45\xd5\xec\x25\xe7\x13\x54\xf0\x09\x9e\x62\xb3\x62\x0a\x4e\x4f\x65\x11\xcd\x6a\x7d\x42\xf9\xbf\x4c\x83\xeb\x33\xe4\x0e\xb1\x72\x16\x8b\xe3\x93\xe2\xec\x20\xa7\xd5\x03\xc0\x4f\xf6\xe0\x4c\x72\x57\xf6\xe4\xdc\x61\xd9\x85\xfa\x1c\xaa\x80\x72\x83\x09\xa9\x3b\x69\xfa\x7d\x59\xce\x45\x56\xa8\x4f\x94\x88\xa9\x2f\x74\x73\xa4\xbe\x60\x93\x54\x1f\xc7\x59\xa3\xeb\x40\x17\xba\x30\xbe\xa7\x6f\x5e\x9f\x3d\x7f\xfd\xe3\x09\x08\x1b\x2d\x8a\x60\xaa\xd5\x86\x42\x92\x6b\xc4\x91\x3a\x27\xe0\x95\x43\x26\x05\xf0\x68\x5d\x88\xb0\x9c\x06\xc7\x18\xca\x78\x05\x52\x08\x57\x5d\x69\x5d\x88\x14\x12\x2c\x3c\xb3\x19\xb0\x6e\x18\x88\x75\x2e\xde\x2c\xa6\x59\x23\x8a\xac\x11\xb3\x57\xce\xa8\x30\x4f\x26\x80\xb6\xb5\xba\xf3\x25\xe7\x59\x6d\x1e\xa3\xa6\x59\x53\x0f\xe9\x3f\x09\x2c\x47\xa6\xe0\xf8\xee\x4e\x42\xf3\x94\x21\xb9\x97\xb7\xc0\x80\xab\x84\x2a\xe8\xff\x63\xfa\xaf\x9c\x9e\xf9\x25\x8e\xbc\x24\xad\x2b\x89\x45\xcd\x20\x2f\xf3\x8f\xc2\x9c\x4d\xb0\xda\x31\x9c\xb4\xbc\x85\x28\x19\xbd\x1a\xdd\x4c\xd4\x53\xb2\x02\x84\xed\x48\x1f\x35\x5a\x18\x80\xb1\x81\x2c\xc7\xb5\x16\x24\x44\x49\x26\xf7\xfd\x76\x86\xf5\x75\x77\x07\xd6\x52\x06\x18\xf6\x0c\x07\x64\xa7\x6f\x25\x70\x2a\x72\xcf\xc2\xd8\x8d\x21\x70\xdb\xea\xd0\xab\x7a\x0b\xd1\x71\x54\xb5\x96\x3e\xc6\x22\x96\x6c\x45\xdf\x4a\x4a\xac\x86\x21\x49\x5f\xd2\x74\x03\x16\x8a\x71\x3d\x22\x7a\x29\x68\x95\xb2\xc3\xeb\xc0\x2d\x96\x90\xe3\x36\x58\x08\x20\x16\xc1\x52\x86\xfd\x96\xa7\xb3\xdf\xa0\x99\xa2\x91\x69\xf6\x0f\xa3\xe5\xcd\x80\x4d\xa8\x1f\xf8\x54\xe4\x03\xa8\xa0\x7e\x73\x68\xf6\x4e\x27\x4f\x95\xa7\x6c\xe5\xd8\x56\x16\x46\x88\x41\xe3\xc6\x11\xcb\x85\x80\x97\x63\x36\x10\xbb\xc3\x1a\x04\xf6\xde\xd0\xf6\xa7\x21\x68\x61\xe8\x31\xb8\x19\x7d\x1e\x25\x50\x87\x34\x22\xc6\x90\x35\xe4\x80\x77\xc0\xab\x5c\x1b\x05\xaf\x24\xcf\xfe\xd5\x06\xbf\xc3\x46\x6f\x79\xa6\x07\xe5\x22\x71\xf3\x7d\x56\x8b\x14\xef\xb3\xab\x36\x31\xc0\xc9\x55\x56\x2b\x9e\x81\x3c\x22\xbb\xb7\x5b\xe3\x23\x7f\x07\x7e\x6e\xba\xd9\xaa\xb2\xac\xc7\x78\xad\x05\x71\xbc\x3a\xa9\x34\x44\x1c\xaf\x78\x1f\xe0\x61\x81\x3a\x4c\x77\xe3\xd0\xf2\x58\xa8\x8d\x15\xa3\x13\xe8\x01\x25\x2b\x65\xd5\x64\xd7\xa1\x41\x5b\x0c\x97\xa8\x1b\x8c\x15\xe0\x60\x02\xf4\x9a\x5a\x6c\x14\x8b\x59\x20\x61\xac\xd0\xf9\xaf\xcb\xea\x1a\xb4\xa3\x4d\xcc\x3a\xd9\x0d\x36\x87\xd7\x18\x3d\xbd\x9e\xea\xdd\x9f\x76\xd7\x44\xce\x44\x5e\x10\x9f\x01\x79\x7c\x73\x32\xdb\xad\x15\x1c\x4e\xb1\x93\xbb\xbb\x66\xc1\xfb\xe7\x9b\x2a\x80\x9b\xce\x8a\x22\x21\xad\xdb\xc4\x39\xc1\xd1\x2e\xd3\xb2\x2d\x05\xe5\xc7\x7c\xf7\xb6\x43\xe6\x42\x00\x52\x1c\xd7\xee\xae\xe6\x6f\x91\x2b\x52\xe3\xfd\x00\x41\x83\xf6\xef\xee\x3e\x08\xd0\x4c\x98\x06\xd7\x7f\xa4\xf3\xaf\x9d\xc5\x11\xa9\x81\xac\xdb\x3d\x1c\xec\xd3\x0a\xd2\x3c\xa3\xc2\xb9\xd7\x49\x95\xa1\x7a\x69\xb5\xe5\x2d\xd3\x0d\xad\x68\x02\xff\x48\xc4\x6d\x26\x80\xd3\x70\xb0\x96\x00\xf2\x4d\x00\x68\x3e\x01\x14\xf6\xcf\x16\x54\x01\x07\xa2\xd8\xa9\xe4\xda\x26\x3c\xd5\x9e\x32\xd1\x07\x4e\x17\x19\x13\xd9\x0b\x97\x2e\x13\xfb\x6a\x81\x77\x1b\x08\x6b\xa9\x63\x64\x92\xb4\x5e\xf7\x15\x2d\x95\x6d\x19\xbe\x0e\x63\x69\xab\x97\x63\x17\x3d\xcd\x72\xe4\x86\x31\x73\x94\x8f\xe1\x90\xad\x53\x8f\x5d\x4c\x0c\xb7\x87\x10\x69\xaa\x88\xdf\x36\xc8\x87\x5c\x27\x76\x34\xb0\x5f\xea\xb4\x18\xdc\xe4\xf3\xf9\x2b\x8d\xbb\x78\x15\x48\xa4\x5a\x5a\x9b\xc5\x0a\xf3\x7c\x5d\x64\x1d\xe0\x00\x87\x0a\xd3\xeb\x2b\xf4\xd6\x41\xa8\xaa\x0b\x7c\x12\x50\x91\x88\x48\x0e\x09\x3f\xc3\x01\x88\x34\x92\xe0\xd1\x01\x1e\x70\x41\xc0\xbc\x61\x53\x43\x9e\x51\x12\xe0\x36\x3b\x9b\x9e\x01\xef\xa6\xa6\xa2\x6c\xc8\xbb\x1a\x60\x5c\x87\xdd\x40\x78\xf5\x69\xae\x7b\xfc\xd2\x25\x27\xd4\xa1\xf6\xc1\x26\x9a\xd7\x37\x83\xc1\x84\x02\x92\xc6\x2b\x7d\xef\xa6\x4d\xc0\xca\x4e\x0c\xc5\x83\x96\x91\xa4\xdd\xe7\xa7\x93\xef\x9f\xbf\x3e\x7e\xfe\xfa\x87\xf4\xe1\x3f\x06\x7b\x24\x20\xf9\xcf\x87\x66\x99\xcc\x44\x23\xa6\x0d\x65\x38\xe7\xf9\x35\xcc\x8a\xa9\x03\x4d\xf7\x70\x3e\xe0\x8c\xc7\x52\x75\x7a\x3d\x50\x3f\xf1\x5c\xa7\x8f\x78\x15\x80\xd8\x70\x25\x56\x60\x80\xe8\x40\x69\xcd\xd8\x9a\xb4\xb8\x55\xbf\xc2\x3b\xcd\xb4\x2c\x0a\x33\x46\x64\x5a\xae\x3b\x47\x00\xe3\xa7\x8f\xa4\x29\x61\xdd\xe9\xf1\x30\xb2\xf5\x06\x99\x5a\xbd\x60\xe5\xe2\x55\x53\xa6\x1f\xc4\x2d\x3d\x4a\xef\x27\x0f\xfe\x10\xb3\x6c\x7e\x8a\x7e\xaf\x4a\x38\x75\x92\x8a\xc9\x50\x7d\x36\x65\xbf\x29\x89\x69\x50\xa0\xf2\x4a\xae\xe6\xb1\x29\xb5\x5d\x60\x6b\xaa\x00\x34\x60\x5c\x60\xc5\x87\xa9\x06\xda\xd6\x9e\x21\xcb\x54\x2c\xaf\xaf\xde\x66\x55\x93\x67\x73\x85\xbb\x20\x4a\xf1\x7e\xa3\x94\x09\xf4\xdd\xa1\x3c\x7f\xcf\x6a\x2b\xe7\xf3\xf2\x06\x22\x21\x41\x21\x49\xfc\xce\x1a\x20\xe7\x3c\xf3\xe6\x85\xc0\x9b\xd5\x00\x79\x73\x13\xc1\xda\xdc\x1f\x10\x6a\x7c\x77\x47\x9b\x37\x7d\xab\x13\xcc\x4e\x1d\xca\x32\xa9\x55\xd0\xac\xd6\x81\x95\x2e\x8f\x8a\x7a\x9a\x3a\xa9\x78\x9e\xb9\xac\x04\x40\x3a\x67\x1e\xe8\x19\xa9\x36\x10\x0f\x00\x77\x04\xe3\x05\x90\x23\x97\x4c\xf1\x39\x45\x09\xfb\xea\x27\xae\x2f\x2b\x49\x97\xea\x71\xe1\x4d\xa5\xf2\xc0\x04\xad\x7e\x21\x6e\xe9\xa9\xe7\x15\xf3\x5d\x87\x66\x6b\x7e\x99\x91\x2a\xa3\x0d\xd0\x6a\xd7\x81\x52\xd8\x78\x8d\x37\x81\x2c\x2d\x19\xb2\x61\xec\x71\x78\x1e\xb4\x22\xbd\x82\x7b\xf0\xfb\x0e\x49\x45\x77\x15\x1f\xd3\xf0\xe5\xce\xdc\x8e\x24\x90\xea\xd6\xfa\x66\x24\x64\x12\x29\x17\x1c\xd4\x68\x8d\x02\xd6\xc9\x24\x4a\x42\x02\xd7\x78\xf8\xf9\x35\x9b\x3a\xbf\xa4\x36\xed\x2a\x44\x55\xa6\x71\xd4\x76\x7a\x04\xf4\xd1\xf9\x99\x94\xb5\x06\x5b\x9e\x68\x7b\xbb\xc1\x6d\xd3\x08\x55\xff\xf5\x2a\x66\x38\x64\xf2\x71\xff\x6e\x0b\x9c\x13\x6c\x64\x78\x32\x2f\x70\xcb\x8b\xe9\xad\xbb\x9e\xca\x8d\x31\xd1\xaa\x3a\x89\x25\x11\x8e\xd9\xb1\x09\x6b\x1c\xb4\x27\x46\x63\xb9\xd1\x06\x6f\x69\xc3\x10\xff\x6b\xcb\x9d\x6d\xce\x80\x86\x5a\xc7\x8e\xdd\x23\xea\x96\x38\x0b\x55\x5e\x49\x64\x06\xd9\x98\x9a\x1b\x4c\xdd\x54\xcb\x69\x53\x56\xd1\xdd\xdd\x4e\x58\x43\xc4\x61\xb7\xd8\x9e\xf9\xc1\x6c\x81\x8c\xb1\x57\x9b\x31\xbb\xec\xb1\xe2\x18\x60\x41\xe6\xe3\x0d\x90\x1f\x76\x70\x0a\x90\x9b\x1d\x38\x16\xc4\x2c\xdd\xe6\x7c\xc0\x7d\x5c\x15\x81\x2d\x9a\xba\xa5\xd3\x70\x6f\x35\x3d\xd3\xdb\xf3\xee\x6e\x28\x6c\xb9\xea\xed\x56\x1b\x16\xc5\xd2\x5b\xcf\x38\x0d\xed\xc7\x2e\x9d\x6f\xf6\xff\xe4\x1a\xad\xe6\x35\x99\x85\x0e\xda\x36\x74\x86\x5e\x2b\x4a\xdd\x18\xbe\x3b\x39\x88\x87\x0e\x71\xa3\xcc\x3f\x9b\xd7\xc2\x3a\xa0\xb9\x32\x03\xbb\xd3\x74\xa9\x1b\xa0\xe8\xdf\xe8\xdd\x40\xf5\xc6\x3c\x50\xbf\x4e\x38\x01\x01\xda\x57\x4a\x54\xad\x94\xd5\x8c\xd4\x1a\x6c\x04\x68\x09\xe0\xef\xf2\xa6\x10\xd5\x53\x43\xb3\x90\xda\x0e\xb1\x8e\x09\x3e\x73\x9a\xd1\x51\x3a\x24\x10\x12\x53\x5f\xe7\x71\x03\xb2\x94\xbf\xee\x00\xce\xe0\xc9\x47\xb5\x6e\xcd\x55\x6a\x7d\x51\x68\xac\xac\xb8\xfd\xb1\x58\x54\xe5\x54\xd4\x35\x5d\x92\x6a\x12\x56\x61\x15\xbe\x5e\xdf\x9a\x82\x20\x61\x82\x87\x64\x78\x15\x1b\x7a\x88\x86\xf7\x18\xcb\x02\x02\xa0\xe9\x6e\x46\xd8\x76\xb0\x3f\xb4\xb3\x07\x95\x28\x17\xa2\x70\x4d\xc5\xf0\xda\xdd\x5c\x2f\x20\x30\x1a\x6a\x44\x9a\xd0\xb1\x48\x2b\x7c\x44\xfd\xd8\x7f\x12\x72\x8a\xa9\x1b\xb7\x9b\x0c\xdf\xf4\x4c\x35\x82\xff\x86\x41\xdb\x61\x99\xf4\x00\xa8\x20\xc7\xad\xf2\x30\xe3\xba\xb0\x21\x72\x4a\x19\x78\x92\xcf\xd0\x72\xdc\x44\x93\x00\x07\x34\x18\x3f\x02\x87\x63\x3c\xd8\xe4\xb3\x4f\xe3\x75\x2f\x3a\x24\x15\x80\xeb\x28\x5e\xf1\xc9\x79\xdd\xf5\xc2\x45\x4a\x73\xbd\xe0\x28\xb9\x36\x8f\x67\xca\x3b\xf3\xf5\x82\xf9\x39\x80\x28\x6a\xce\x04\x21\xc9\xdb\x44\x1d\xa6\xd8\x91\x2c\x3f\xa6\x75\x1e\xae\x27\xbc\x46\xd6\x56\x47\x4b\xc0\xb8\x4f\xc6\x3d\xb0\x3f\x5d\x56\xaf\x90\x4a\xc0\x01\x1b\xfe\xae\x85\x28\x02\x7a\x80\x0a\x16\x6e\x40\x12\xc6\x79\xf3\x42\x05\x48\x93\x81\xa4\x9f\x5f\xe8\x82\x92\xd5\x31\xcd\xd8\x21\x00\x35\xbd\xd6\xa9\x02\x57\xd3\x3e\x2f\xa7\x24\xa6\x79\x6c\x89\x72\x8e\xf6\x29\x08\xd0\x83\x07\xf3\x72\x8a\xe1\x62\x2e\xfa\x6a\x64\x24\xd8\x99\x97\xd3\xb1\x3f\xb8\x75\x71\xa6\x1d\x8c\x63\x75\x0e\xae\x25\x55\x73\xa4\x63\x49\xb4\x65\xe8\x7e\x85\x55\x5d\x83\x67\x68\xb9\xbd\xae\xda\x18\x07\xee\x38\xee\x23\x44\x5c\xef\xee\xf2\x37\x6a\xb5\x82\x94\x97\x41\x1a\xa1\x9a\x1e\x50\x90\x1c\xdb\x63\x71\xc9\x87\xe4\x0d\xee\x46\x51\x91\x56\xb5\xd9\xf9\x61\x3f\xd5\xf2\x89\x8e\x6d\x57\x6f\xba\x95\x68\x38\x6d\x49\xf6\xa5\x5f\x89\x06\xc7\x41\xe4\xc4\x69\xc6\x3c\xa2\x6a\xea\x69\x43\x99\x9a\x82\xdc\x6d\x49\xdd\x33\xb4\xc4\x8e\xef\x45\x81\x70\xd9\x26\x52\x76\x07\xd3\x54\x89\x06\x2f\xd5\x48\x10\x1d\xa2\xa0\xa0\x10\x87\xa8\x94\x3f\xc6\x1b\x0c\x7c\xc2\xd1\xb7\x71\xeb\xd2\x15\x70\x99\xce\x3c\x40\xda\xaa\x85\x32\xf2\x3f\xb9\x77\xc4\xea\x40\x95\x17\xc8\x06\xaa\x74\x87\x89\xd2\x56\xe4\x18\xbb\x07\x69\xc4\x6f\x96\x03\xd8\x21\x5f\x70\x81\xb3\x77\x33\x81\x32\x97\xb5\x3b\x36\xa1\x5a\xae\x23\xa9\xb3\x0a\xc2\x68\x25\x10\x31\xeb\x07\x26\x7f\xc6\x75\xef\x69\xb7\xb6\xfa\xaf\xf8\x57\x20\x63\xa6\xdb\xa4\xd2\xd7\xc5\xda\xed\xbf\x13\xff\x5c\xe6\x95\x98\xf5\xf4\xf3\x6c\xd4\x72\x69\x34\xe6\x1a\x26\x49\x55\xea\x78\x00\x41\xb0\x54\xfd\x30\x35\x20\x4f\x6c\x44\x21\xea\x10\xd4\x09\xa9\xf9\xd9\x02\x30\xe3\xb3\x9c\x01\x99\x9b\x8f\x84\x7b\xa5\x2c\x14\x4d\xd5\x4c\x3d\xd9\x6b\xd7\xf6\xec\x6f\x2a\x48\xd9\x6f\xe6\x49\x93\x78\xe9\xad\xfd\x69\x0e\xb5\xe4\x42\xe9\x3b\xfd\x84\xee\x83\xf5\xa3\xba\x46\x3e\x38\xc2\x59\xa1\xa8\x82\x79\xc6\x81\x72\x13\x14\x7e\xac\xf5\xca\x69\xac\x50\x65\x95\x3b\xb6\xf5\x29\xf6\x54\x73\x02\xfb\xe3\xe1\xfa\x2a\x0f\xe2\x16\xf3\x6d\x47\x40\xc3\xfc\xcf\x13\x4b\x98\xb2\xb7\x97\x43\xfc\x60\xdb\x6b\xe4\x44\x4b\x52\xfc\x01\xc3\x3d\xa1\xbb\xa3\x8e\x65\xe8\x80\x4c\x43\xf1\x43\xa1\x1f\xfc\x49\x89\x59\x8f\xf6\xe2\x5e\xd6\x33\x35\xc0\xcd\x62\xe0\xdf\xc3\x51\x08\xd4\xed\x9d\x54\x29\xaf\xa9\x1f\xcc\x99\xc4\xf5\xb5\x98\xe5\xec\xd6\xee\x39\xe8\x76\x39\x35\xc7\x33\x77\x75\xc9\x99\x30\xa3\x5c\x4c\xd5\x85\xc3\x8d\xd9\xfe\x9e\xdc\x2e\xa4\x5e\x8a\xe9\xef\xb9\x25\xcb\xf8\x7f\xa4\xfa\x9b\x90\xaa\x3d\x09\xf7\x27\x58\x25\x9d\xda\x40\xb6\x76\x33\xa9\xfd\x69\x29\xf5\xb3\xc7\x13\xf3\xd3\x56\xfb\x37\xb7\x9f\x0e\x75\x77\xa3\x0d\x6e\x6b\xbc\x83\x4b\x74\x5f\x79\x3c\xa4\xe1\xfe\x75\x35\xc7\xd7\xe9\x6d\x43\xa7\x3c\x03\x60\x48\xc5\xa8\xb7\x45\x18\x82\xd2\x83\x1a\xdb\x87\x4c\x63\xdb\x72\xbc\xec\xaa\x64\x5b\x8e\x98\xd7\x69\xba\x3e\xba\x9f\xa2\xeb\xa3\xb0\x9e\xab\xe7\x80\xdf\x2d\xe3\x39\xe4\x0f\x94\xda\x54\x08\xca\x3c\x79\x76\x76\xf2\x6e\xf2\xe6\xfb\xd3\x93\x77\x7f\x3d\x79\x77\x9a\x46\x47\xd3\xab\xac\xb8\x14\x88\xf3\xef\x4f\x9e\xbd\x79\x77\x62\x65\x23\x49\x46\xcc\x16\x1a\xe0\xd1\x97\xbd\x7e\xcb\x26\xfa\xa6\xef\x3d\xa7\x95\xd6\xd9\xdb\xd6\x17\x76\x3b\x61\xe9\x8c\xe8\x6d\x51\xde\x38\x60\xf1\xbb\x11\x79\xdc\xe8\x4a\xbc\xbf\x50\x20\x76\xe3\x4c\x00\xbd\x98\x0a\x8d\x3d\x9c\xbc\xf6\x3a\x91\x83\xf4\x52\xe5\x5a\xdb\x1e\x7f\xa1\x9d\x9b\xe3\x4e\xeb\xfa\x07\x55\xb9\xbc\x6b\x00\x19\x07\xcf\x34\xa0\x50\xfe\xe1\xea\x15\x6c\x46\x0a\x2d\x0a\x7b\x90\x9e\x87\xfd\xcd\xa8\xea\xc2\x8c\xa3\xb3\xee\xa8\xa8\xf3\x09\xb4\x25\xf5\xdb\x4f\x23\xa7\x9c\x2f\x9f\x46\x47\xe3\xdd\x57\x8e\x37\x57\x3f\x5a\x45\x81\x7e\xfb\xdd\x66\x7e\xb6\xb5\xb3\x41\x3f\xc0\x0f\x1f\x4a\x60\x24\xa6\x12\xab\xd7\xe1\x8e\xa4\xe1\x64\xbf\xff\x5f\xa5\xe7\x1e\xc1\xde\xab\xe7\x5e\x9f\xb7\xc5\x76\x6d\x9e\xf7\x3a\x7b\xfd\x51\x85\x11\xa9\x53\xad\x52\x8e\x25\x18\xba\x8d\x6d\x74\x67\x7c\x9e\xce\x16\xb6\x98\x8c\xba\x63\x36\xea\xee\xe9\xf8\xb2\xa1\xb1\xf9\xf8\xea\x43\xf3\x07\x15\x18\x8e\xcd\xb0\x6c\xb9\xed\x79\xf4\x1f\xaf\xe1\x89\x60\xf3\xf3\x93\xdc\x2d\x70\xdb\x6d\x65\xbb\x8d\x70\xf3\x66\xb3\x7e\x23\x74\xd6\x68\x28\x71\x03\x8b\x86\x3e\x5b\x46\x9b\xcd\x08\xbf\x88\x1f\x5b\xeb\x18\x3e\x60\x67\x76\xe0\xd8\x99\x99\x28\x25\x2e\x97\x65\xa2\x96\x74\x3c\xda\x28\x3c\x9c\x0a\xe6\xf8\x96\x25\x7a\x1e\x43\x4c\x16\xb3\xc3\xcd\x66\x33\x73\xad\x91\x6d\x8a\x2a\x21\x3e\xc2\x0d\x2c\x52\x9a\x0a\x50\x04\xcf\x12\xf4\x93\x6d\x6d\x67\xd5\x09\xd6\xf9\x03\x17\x1a\x63\x12\xbc\xb1\x9e\x42\xa8\x19\x5d\xcd\xc8\x40\x8f\xd1\x25\x1e\x08\x7e\x10\x30\x5e\x75\x40\xa6\x54\xd1\xaa\x6d\xd1\x17\x07\x7e\x1b\x95\x40\x16\x1a\x9f\xbd\x13\x62\x92\xee\x29\xf9\x97\xc3\x7a\x8f\x6c\x54\x1c\x79\x28\x39\x32\xc1\x74\xf4\xf2\x3c\x1a\x8d\xdb\xf8\xc1\xc1\xf0\x3f\x9c\xf6\xd1\xd0\xca\xbd\xf5\xd6\x23\x48\x66\x21\x9e\xda\x61\x78\x8e\x2e\xe6\xcb\xfa\xca\x95\x0b\x76\x22\x3c\x4f\xe6\xa2\xd0\xf3\x41\xf8\x1f\x72\x52\x30\x51\xca\x44\xc1\xc6\x6f\xb9\xf0\x87\xcb\xa2\x27\x13\x80\x17\x68\xac\x51\xa7\x0d\xa8\x05\x10\xe6\xca\x5f\x83\xbc\x3e\x16\x75\x53\x95\xb7\x79\x71\x79\x77\xe7\x26\x5a\x4f\xb4\x26\xaa\x13\x21\x5c\xd7\x6a\xf0\x3b\x72\xb3\x14\x5e\x4d\x0a\x8b\x3b\xdc\x85\x44\x18\x7b\xea\xba\xb9\xe1\x34\xad\xdc\xdc\x18\xcc\x8e\xc6\x5d\x76\xcf\xc6\x4e\xf9\x37\xf2\xf4\x09\xb2\x0a\xea\x84\x8a\x0f\x40\x6f\x90\xe4\x6c\x88\x2c\x5e\xf3\x8b\x3e\xfe\x02\x41\x30\xbd\x5f\xad\xb2\xa3\x83\x36\x59\x65\x47\xa8\x59\x75\x74\xd8\xb6\xf1\x20\xdb\x49\xd3\xc3\x78\x45\xb5\xa0\x87\x5d\xb9\xfa\x30\x41\xb9\xdb\x3a\x79\xfd\xd7\xc1\xe9\xd9\x8f\xdf\x4f\xde\x7c\xff\xbf\x4e\x9e\x9e\x4d\x9e\xbe\x3b\x79\x72\x76\x82\x34\xf9\x82\xe3\xb7\x1d\x7a\x2e\x16\x48\x6b\xbe\x8e\x57\x2f\x98\x34\xb3\x3c\x7f\x3f\x2c\xcf\xdf\x83\x54\xf3\xc5\xd0\x68\xcd\xba\x30\xae\x55\x80\x0f\xc6\x34\xed\xc9\x8e\x9d\x54\x07\x74\xf5\x2d\xaf\x54\x99\x19\xaa\x57\x73\xea\xf0\x20\xaf\x4f\xf3\x6b\x70\x73\x3f\x4b\xf5\x43\x94\x63\x0d\x4b\x48\x0e\x18\xc1\x4e\xb3\xe2\x9d\xb0\xd2\x73\x51\x27\xd3\xac\x38\xb6\x60\xdf\x14\xc7\x6f\x5e\xa1\xb6\x05\x4f\x46\xf7\x70\x8e\xba\xc1\xaa\x4d\xa2\x2c\x4a\x56\x96\x0b\x98\x78\xd5\xb6\xda\x2b\x5c\xec\x14\x31\xd3\xe7\x56\x1f\xec\x9e\xbf\xb9\xbc\x97\x44\x15\xd0\x7a\x80\x7e\x4c\xcb\xe2\x22\xbf\x5c\x82\x9b\xd2\x23\x89\xa1\xc4\x78\x58\xc5\x6f\xb7\xa7\xb6\xb7\x19\xe8\xfa\x17\xd4\x7e\x53\xe5\x8d\xf9\x42\x12\x86\x89\xe2\x4a\x10\x83\x2c\x4d\x71\xfa\xfa\xf1\x30\x8c\x7e\x6b\x3b\xf0\xd1\x3e\x2b\xa7\x20\x62\xa3\xa5\x74\x32\x17\x10\xb8\x21\x9a\xe5\x1f\xa3\x38\x89\x66\x7e\x85\x51\xb2\x6a\x6d\x6f\x30\x7a\x7e\xec\x47\xb8\x3e\xc8\x00\x77\x82\x93\x11\x9e\x4b\xfd\x72\x1e\x1e\x8a\x57\xc8\x5a\x75\xea\xf8\x9a\x89\x7a\x4a\x3e\xd7\xeb\xd7\xe5\x4c\x30\x41\xa4\xfc\x64\x4e\x1f\xe3\x15\x42\xa4\xce\xeb\xa5\x4c\x23\x9b\x0b\xcc\xef\x70\x03\xcd\x02\xf9\x15\xe5\x4c\x9c\xc9\xf5\x96\xa6\x51\x01\x06\x9c\x7e\xfe\x6b\x74\x26\xab\x5c\x7e\xb7\x60\xc6\x20\xeb\xe7\xee\x8b\xcd\x81\x0a\x7a\xa4\xb8\xb4\xb9\xc1\x53\x70\x51\xfa\x08\x68\xdb\xb6\x55\x7b\xa7\x03\x9c\x3a\x0b\x5a\x83\x5d\x65\xb5\x4a\x7c\x32\x9d\x8a\xba\x2e\xab\x5a\x3f\x45\xee\x74\xd4\x16\xaf\xd6\x97\x47\x05\x92\xae\xae\xac\x99\x41\xd9\x26\xe0\xe0\x12\xd9\xa2\x30\x6a\xda\xae\xaa\xfd\x1d\x4e\xbb\x1f\x95\xdb\xfb\xab\x27\xaf\x8f\x9f\x9c\xbd\x79\xf7\xf7\xc9\xe9\xc9\xd9\xd9\xc9\xbb\xdd\xdd\x9d\xb5\xe3\x50\xba\x2e\xa1\xb2\x38\x46\x8b\xc3\xb7\x2c\xc9\x2d\x01\xac\x3e\xd0\xd4\x8f\xae\xd3\xb7\x33\x00\xd4\xba\x18\x40\x9b\xdd\x8c\x68\x7f\x8f\xe6\x52\xb0\x9d\xb3\x78\xd7\x51\xe4\x6f\xe1\x14\xe4\x8b\xd9\x89\xa0\x57\x8b\x43\xd7\xab\x85\xe7\x19\xe3\x90\x7b\xc6\xd0\x33\xe8\x8a\x52\x55\x06\x40\x95\x1f\x45\x55\xe5\x33\xf1\xf4\x2a\xcb\x8b\xda\xf3\xd5\x61\x67\x07\xbd\xdf\x7f\xcb\xbc\xdf\xbb\x6e\x2e\x7f\xcf\xdc\x5c\x72\x3f\x05\x14\xf3\xc2\xde\x3c\xd3\x8e\x25\x82\x18\x71\x89\xb9\x9b\xce\xcd\x15\xcc\x3c\xcc\xca\x73\x8e\x93\x37\x73\xbd\xe1\xb8\xda\x70\x6b\x9b\x3c\xfb\xf1\xf5\xd3\xb3\xe7\x6f\x5e\x53\x8b\xdd\xf9\x9a\xc0\xc8\x46\x12\x39\xc1\xe3\x93\x67\x4f\x7e\x7c\x79\x36\xf9\x21\x58\x5b\x57\xae\x19\x42\x18\xa0\x6f\xf9\xfa\x76\x15\xcb\x24\x5d\x48\xfe\x99\xc5\x5c\x35\xf6\xb9\x2a\xd6\x24\x69\x9a\x82\x1b\x61\xee\xea\x6b\xc3\x96\x9d\xcc\xb2\x26\x03\x93\x1f\xa6\xbf\x9b\x88\x4f\x79\xdd\xe4\xc5\xa5\x44\x66\xa2\x9e\x60\x8c\x4d\xc1\x0e\xc0\x5b\xb6\x57\x60\x2c\x81\xca\xbf\xc6\x78\x7b\xc8\xeb\x49\x6d\xa3\x6e\xbc\x3f\xaa\xba\x31\x53\x7d\xe9\xfc\xef\x20\x90\x3f\xaf\xa5\xcb\x94\x92\xc3\x0c\x1a\x91\x55\xb3\xf2\xc6\xda\xdf\x63\xa5\xe5\xda\x55\x03\xea\xbb\x82\x92\xac\xdd\x49\x4c\xcb\x2f\xfa\xfe\xee\xad\x3a\x0c\x27\x85\xb7\x02\x2c\x64\x7f\x26\xf3\x65\x6c\x28\x48\x63\xce\x3a\x92\x4c\xae\x31\xb1\xa8\x03\xd9\x46\xf7\x58\x72\x3c\x7a\xac\x59\x93\x6d\x1a\x17\xa7\x2d\x83\x10\x59\xf0\x6b\x8c\x58\xf2\xae\x9d\x2b\x10\x58\xdd\xae\x05\xa3\x67\x35\x84\x16\xd9\xbf\x56\xf9\x5f\xd3\xb3\xba\xb1\xc3\xc4\xc2\xe4\x17\x7d\x36\xaf\xd6\x8e\x69\x81\xc3\x22\x20\x35\xb4\xc1\x2c\x9f\x1d\x3b\x1c\x4a\x30\xd9\xaa\x81\x8c\xc7\xbb\x04\x76\xeb\x19\x28\xb6\xc2\x29\x6c\x04\x6f\x43\x4c\x9b\xc4\xc4\x93\x78\x21\x6e\x93\x42\xdc\xbc\x10\xb7\xf8\x08\x6e\x97\x93\xbb\xa9\xbc\x1c\xae\xe7\x44\xfc\x8d\xc4\x6f\x63\xfd\x94\x03\xc3\x62\xdf\x57\x68\x6f\x65\x5d\x01\xaf\x90\x54\x39\x76\x59\xa1\xc9\xbd\xfa\xf0\x42\xca\xe7\xaa\x5b\x36\x96\x37\x39\x07\xa9\x0e\xb6\x52\x2f\x65\x3d\x6f\x64\x78\x98\xfb\x88\x40\x3b\xe5\xa8\xbf\xfc\x6b\x75\x90\xfb\x38\x70\xb9\x8f\x6d\x64\xaa\x26\x6c\xbb\x07\x66\xb2\xb6\x96\xbe\x5a\x2f\xdd\x3f\x16\x79\x59\x78\xc0\x76\xb6\x5d\xe2\x38\xbf\xf0\xe3\x7f\x5a\xb9\x00\xcf\x64\x56\xeb\xc2\xf8\x7c\xd4\x01\xef\x78\x01\x70\x7e\xcb\xa4\xc1\xae\xb0\x36\x94\x3f\x13\x17\xa2\xaa\xc4\x2c\xdd\x37\x4b\x54\x91\xce\x4f\xf9\x7c\xfe\x14\x1e\x46\xac\xa3\x29\xa8\xf5\x67\x8e\xc6\xdd\xdd\xeb\xd0\xd1\x08\x06\xf5\xea\x7a\xa7\x3c\xa8\x82\x0c\x06\x8b\xc0\xcf\x04\xed\xf3\xe4\xb7\x73\xf4\xca\x73\xdc\xec\x73\xa4\x17\x8a\x32\xa2\xa6\x4c\xd3\x94\x69\xdc\xaa\xa3\x13\x4d\x53\xc0\x88\x1a\x47\x81\xe6\x7f\x2c\xc1\x3e\x71\x15\xb6\x9b\x17\xe2\xb6\x0e\x8f\x3d\xb9\x8e\x87\x53\xd8\x5b\xbb\xf3\x8b\xb2\xc9\x2f\x6e\x43\xef\x6e\xba\x25\x0f\xd3\xc7\xf9\xec\xdf\x08\xd1\x9b\x71\x3a\x53\xfd\x25\x94\xce\x82\xfd\x6f\xf9\xa4\xed\xee\x52\xf2\x8e\xe9\x96\xae\xdd\x42\x7d\x10\x19\x06\xf3\x1d\xd9\xca\xfa\x05\xd1\xdf\x81\x78\x89\xd0\x9f\x9e\xbf\x7c\x39\x39\x3d\x39\x79\x9d\x1c\x3f\x3f\x86\x1f\xd6\xe1\xd4\x49\x02\x33\xb1\x78\x81\x9e\x70\x32\xed\x9a\x9e\x4b\xb8\xf5\x60\x70\x47\x11\x45\x6a\x5a\x6a\xca\x45\xba\x23\xd3\x40\xd0\x52\x2e\xe2\x95\x0d\x00\x4f\x16\x8d\xa8\x8e\xc5\xa2\xee\xfb\xcb\x2f\x61\xed\xcb\x82\xd8\x09\x5d\x97\xa9\x06\xa5\x7d\xe1\xe1\xd8\x78\xbb\xff\x68\x14\xb6\xba\x06\xa3\xf2\x83\x63\xd1\x8d\x6f\x18\x8a\xae\xc4\x19\x89\xae\x90\x5e\x5c\x83\xb5\x84\xdd\x9f\xa3\x3b\x26\x63\x92\xc0\x8c\x10\x56\xad\x6d\xae\x30\xc2\x2a\xc7\x31\x8e\x7d\xe8\xe7\x18\x93\x9d\x99\x58\xe8\xcb\xc3\xa2\x1e\xc2\xa7\xfc\x23\x57\xc8\xa2\x56\xf0\xc8\xca\x2e\x98\x21\x2e\x69\x39\x63\xa2\xba\xc3\xa4\x01\x17\x52\x6c\xb9\xa9\x77\x63\x31\xa3\x55\xa9\xde\x4d\x54\x18\x12\x22\x72\xcb\x4c\x77\xc3\x3e\x05\xb2\xa3\xbe\x6f\xa9\x0f\xc5\x50\xff\xaf\xaa\xa3\x58\xee\x10\x56\x92\xde\x29\x62\x8b\x44\x8a\x72\x26\xea\xb4\x0b\x56\x45\xd3\x1f\x8d\x31\x1c\xab\x8e\x4d\x0a\xc5\x3c\x65\x51\x48\x1d\xe5\x63\xbe\x55\x63\x0d\x71\x6b\xca\x62\x8a\x5d\x38\x3d\x8c\x57\x81\xe3\x0b\x41\x47\xb9\xea\xc8\x28\xdf\x3b\x18\xc7\x1e\xb2\xba\xb6\x96\x7a\xb9\x58\x54\xa2\xae\x4f\xb0\x0f\x84\x3a\x89\x9a\x5f\x15\x7b\x76\x37\x1e\xcb\x25\x72\x74\x5f\x8c\x9a\x9d\x5a\x21\x14\xa2\x68\xda\xe3\xa3\x9e\x6d\x8f\xea\x63\xa7\xd6\x35\x98\x5e\x77\x45\x89\x57\xeb\xe7\x01\x2d\x95\x98\xce\xc4\xa5\xf6\x51\x72\x8b\x05\x6a\xe0\xb4\x91\xa5\xd9\xdb\x33\xa0\x42\xeb\xba\x06\x00\x1f\x3c\xa0\xf7\x17\xf8\xfa\x73\xba\x1f\xaf\x3c\xe6\x4a\xbf\x99\x32\x86\x0a\x1f\x64\xfb\x0e\x1d\x15\x97\x82\x3b\xdf\x3b\x37\xa1\x9c\xc3\xfd\x1d\x1a\x66\x54\x42\xfb\x3d\x4d\xfc\x30\xc1\x9b\x79\x8c\x8d\x7b\xba\x7e\x57\x4d\x95\xba\xa0\x56\x51\x34\x2f\xd9\xc9\x4c\x32\xa6\x0c\x39\x3c\x06\xb4\x8f\xa3\x6c\x36\xb3\x66\xcc\x28\x0e\x0c\x65\x45\xa9\xc5\xef\x1a\x75\x1a\xfb\xf5\x3c\x1e\x9a\xc7\x60\x1b\x64\xc4\xea\x1e\x43\xd7\xe8\x3a\xbd\x55\x01\x3e\x4d\xeb\x98\x84\xcf\xc2\x1c\xe9\x7e\x9a\x51\x74\x21\xad\xdc\x0e\x5d\xf6\x55\xa2\x13\x55\xf7\x1b\xbe\x25\x62\xf7\x36\xc9\xd4\x4f\x1a\x86\x4a\xe8\xc5\x99\x7a\x29\x16\xbc\x23\xdc\x75\x84\xb9\xb6\x9e\x92\xbf\x2e\xd2\x50\xa2\x1d\x85\xd3\x5b\x28\xa9\x9f\x64\x95\x70\x17\x67\xea\x26\x6c\xba\x4a\x5f\xfa\xaa\x44\x5b\x3e\x34\x7c\x51\xcc\xba\xaf\x1e\x43\x76\x3b\x09\x7f\x47\xa4\xbb\xc0\x55\x54\x49\xe0\xef\x23\x27\x27\x3f\x46\x3f\xbc\x7c\xf3\xfd\x93\x97\x93\xb7\x4f\xce\xfe\x92\x3e\xfc\x47\x7f\xf4\xe4\xc1\xff\xfe\xcf\xf1\x5d\x7f\xb4\xff\xe0\x4f\x63\xfc\x88\xe3\xc1\x7f\x8d\x7e\x1e\x8c\x1f\x42\x91\xbf\x3c\x39\x9d\x9c\xfd\xe5\xf9\x69\x1a\x81\x8e\x06\x0e\xfa\xd9\xf3\x77\xa7\x67\x30\x20\x59\xc5\x3f\x7e\x1e\x8c\xf7\xe2\x87\xfa\xbd\xc0\x38\xb7\xa4\x90\xb4\x7c\xa5\xb3\xbb\x52\xc4\xdf\x18\x5b\xd2\x37\x92\x99\xbb\xbb\xea\x3d\xd2\xf2\x5f\x0b\xfe\x18\xa0\xb0\xd6\x5c\x90\x4c\x2b\x6e\x1f\xa9\x12\x5e\x2a\xfb\xce\x4b\xd1\xbc\xcd\x9a\x2b\xff\x3e\x02\x82\x69\xfb\x8e\xa7\x59\x42\x92\x96\xdb\x57\x34\x15\xef\xdf\x77\x82\x40\x10\xca\x57\x3a\x04\x33\xdf\x49\xd3\x07\x07\x1b\xba\x41\x95\x69\x28\xf5\xa4\x68\x43\x29\x0f\x7b\xbe\x00\x96\x75\x35\x70\x21\x25\x37\xc8\x01\xd1\xac\x7e\xb4\x4d\xb9\x40\x54\x76\x47\xa6\x59\x43\x53\x2f\xca\x8e\x07\xe1\x1d\x35\x81\x2a\x68\xd8\xee\x6e\x87\xb7\xe1\xc1\xb2\xf8\x50\x94\x86\x57\xe3\x93\xed\xe6\x19\x79\x2d\xb3\x23\x6c\x4d\x6c\x46\x94\x1b\xea\x1d\xce\x7b\x00\x95\x54\x27\xd7\xc4\x7a\xe8\x7e\x3c\x94\x80\xba\x08\x3f\x9e\xc8\xf5\xd9\xd9\x72\x31\x17\x7d\xd2\x98\x44\x5d\xd0\x8f\x18\xf7\xe3\xec\x2a\x87\xd0\xf5\x57\x7a\xb2\xd5\xca\x80\x40\xcb\x49\x5e\xff\x30\x2f\xcf\xb3\x79\xba\x43\xc0\xbb\xbb\xf6\x6a\x43\xaf\x5f\xa8\x92\xf9\x41\x80\x5b\xdc\x1d\x6c\xe8\xee\x4e\x15\x8e\x31\x81\xba\x38\x2f\xcb\x0f\xcb\x05\x45\x17\x91\x55\xc6\x3a\xea\x3d\xf9\xc0\xfa\x16\x2f\x72\x58\x28\xb5\x8a\xa1\xf3\x12\x80\xc5\x08\xde\x7a\xcd\x82\xc9\x15\x95\x91\x34\x47\xa3\x05\x37\x70\x6e\x03\x1f\xc4\x2d\x31\xa1\x7b\x07\xca\xcf\x46\x73\x75\x77\x07\x20\x26\x34\x56\x1c\x0e\xab\x28\x09\xbf\x37\xcd\x8a\xa2\x6c\x7a\xe7\x02\xe3\x50\x47\x4a\x1a\x3b\x62\x58\x1e\x9b\xa9\xd0\x0b\xa6\x2a\xcb\xc0\x14\x80\x3b\x99\x3a\x69\xe4\x3c\x25\xf9\xec\x53\x32\xc7\x6b\xb1\x84\xa6\x2d\x60\x77\xd7\x9a\x26\xb9\x26\x53\x6b\x4d\xca\x41\x73\x54\x61\x2b\xed\xe6\x49\x46\xe7\xe4\x65\xd9\xdc\xdd\xa9\x19\x59\x41\x4f\x52\x87\x80\x4c\xdf\x87\xd0\x31\x00\x92\x68\x07\xfc\xe2\xd7\xc1\x78\x08\x3f\x14\x1a\xf7\x5b\x18\x1a\x61\x7f\x31\xcf\x1b\xe8\xfa\x70\x2e\x8a\x14\x72\xd4\x6d\xc0\x78\x5d\x90\x75\xef\xd0\x98\x1d\x0f\x0c\xd0\xac\x1c\x28\x75\xa5\x22\x2f\x0c\xc8\xd2\x2b\x8c\xed\xee\xca\xbf\xb6\x8a\x20\x21\x89\xbd\x1d\xa9\x35\x59\x96\x6c\xc9\x5c\x8a\x86\xc7\x87\x81\x66\xbc\xe0\x34\x26\xda\x92\xe9\x8b\x15\x20\xca\x56\x0c\x0d\x85\xb2\xb1\x3c\xda\x72\xe6\xc2\xee\x40\x6a\x7f\x76\xe9\xee\x5e\x3a\x41\x68\xd4\xc6\x61\x47\xc9\xe6\x73\xe9\x4c\xad\x05\xa9\x68\x35\x55\x3f\x36\xf1\x33\x01\xd5\xe8\xfb\x05\xc7\x0f\xea\x54\x6c\xa3\x3c\xe1\x47\x63\xf9\xaa\x1c\xd2\xaf\xae\x33\xa1\x31\xef\x30\x54\x6a\x26\xba\xd9\xae\x47\x2e\xdb\x15\xe0\xcc\x5d\xc5\x88\x00\xa7\xce\x4b\x1a\x0e\xbd\xab\xa0\xe1\xd8\x03\x2a\x8d\xae\x7e\x45\x40\x21\xa2\x83\x35\x0c\x84\x19\xf9\x6c\x96\xb0\x93\x1b\x7c\xa8\x95\x3d\xf4\xe2\xaf\x6d\x56\x85\x3c\x31\x35\xe5\x5c\x54\x59\xd1\xf0\xb8\xc4\xa4\x9e\x46\xec\x9c\x7a\x5a\xa6\x72\xc3\x2e\x7e\xce\xf2\xe7\x51\xfb\x1c\x94\xdb\xe0\x67\xf2\x75\x79\xfd\x23\xf2\x21\xc9\x74\x59\x55\xa2\xc0\x2d\xe7\x73\x59\xbd\x6d\xfa\x49\x55\xef\x58\xdb\x1e\x70\x7f\x41\x94\x1a\x1e\xb0\x43\xdb\x0f\xc3\x2e\xe0\x09\x00\x25\x76\xac\x4e\x5b\xcf\xde\x69\xfa\x31\xe0\x24\x5c\xe3\x20\xdd\x96\xe3\x43\x5f\xde\x54\xaa\x9b\xfd\xab\x45\xf3\xa3\xcb\x01\x86\xd3\xfb\x81\x31\xa3\xd7\xe6\xf5\x5c\x6e\x80\x35\x8e\x57\x7c\x26\xd7\xf0\xc0\x16\x98\xcb\x0c\x2b\x4c\x72\xa0\xa0\x98\x93\xb3\xeb\x21\x55\x09\x54\xfd\xe6\x4d\x59\xd3\xe3\xa1\xf6\xee\x4e\x52\xbe\xde\x35\x9e\xd7\x27\xfa\x79\x5c\xb3\xc8\xa1\xa7\x76\x4d\x35\xe0\xf0\x8b\x93\x4e\x50\x41\x83\xb4\x14\x7d\xcd\x08\xcc\x58\xff\x48\xd6\x5d\xce\x3e\xab\xb7\xe7\xde\xe5\xd6\x52\x6f\xc3\xbd\xd7\x9a\x35\xae\x39\xf7\x5e\xbb\x1c\xa3\xb7\x1f\xd1\x3b\x80\xb5\xe7\x30\x2e\x17\xb9\xd9\xac\x6e\x9e\xb3\xc5\xbd\x77\xc0\xd8\xe1\x34\x55\x7b\xd6\x63\x65\x99\xc2\xca\xef\x27\x8c\x1f\x7e\xa0\x66\xca\x30\xce\xb1\xf2\x0f\xba\x93\xe2\x35\x3a\x32\x0c\x9a\xc3\xeb\xf2\x6b\xb0\x7e\x58\xe4\x9c\x76\x47\x04\x73\x1d\xe8\xa2\x16\x8d\x0e\x62\xfe\xf7\x72\xd9\x5b\x64\x75\x2d\x66\xbd\xac\x40\xf6\x1b\xfc\x2c\x44\xd8\x8c\x6c\x15\xf7\x6a\x8d\x28\x92\xba\xa1\xf3\xad\x50\x43\xdf\x04\x1b\xc2\x9d\x03\x6c\x03\x24\xcb\x1f\x7d\xb3\x27\xff\xef\x7d\x13\xf5\xa6\xe5\x72\x3e\xeb\xd1\x05\xe0\xa2\x5c\x16\xb3\x5e\x59\xf5\x6e\xb2\x5a\xde\x79\x91\xe5\x1c\x7c\x63\xfc\xc7\xd4\x8c\x4b\xe4\x5b\x82\x9e\xeb\xa6\xba\x3d\x35\x5c\xad\x9a\x6a\xbe\x07\xfb\x64\x00\x42\x6c\xce\xb7\x61\x25\x29\xfe\xb3\x38\x3a\x22\xc5\x0e\x3e\xae\x5a\x16\x93\x79\x59\x7a\xe1\xca\xb7\x94\x49\x05\xe3\xee\xf9\xcc\xdb\xaf\x1d\xad\x7c\x2b\x7e\xcb\x8f\x86\x76\x68\x45\x43\xdb\x26\x8a\x5c\x50\xec\xe8\x72\x4c\x41\x31\x24\x48\x81\x7d\xf1\xa3\x5b\x36\x20\x8e\x34\xcf\x20\xc5\xf7\xb2\x66\xb5\x1b\xc7\xab\x6a\x59\x0c\xe8\xe3\xdd\xb2\x78\x59\x96\x0b\xb5\xdf\xb3\xb7\x93\xe2\xa4\x98\xa9\x22\x49\x21\x3e\x85\xcb\xc9\x0c\x60\x41\xbe\xcf\xa6\x1f\xce\x97\x55\x01\x96\x93\xe0\x79\xe8\x55\x39\x5b\xce\x45\x3f\x3a\xd7\x39\x51\x3c\x30\x60\x88\x17\x53\x0a\x9c\x4f\xeb\xcf\xfe\x28\xaa\x6f\x8b\x69\x94\x44\x19\xf4\x47\x92\x07\x2d\x9b\x68\x9c\xac\x64\xde\x11\xbd\x9c\x1c\x85\xf0\x96\x64\x17\x8d\xa8\x8e\x7c\xb4\xb4\xea\x9a\xf6\xdf\x4b\xb1\x14\x47\xa6\x7a\xc2\xd2\x11\xfd\x4f\x00\x01\x47\xf0\x57\xfe\x96\x5b\xc0\x19\x5c\xdb\x8f\x80\x6a\x54\x1a\x7a\x2b\x3a\x8a\xca\x02\x6f\x15\x6d\x8c\x3c\xa3\x15\xcb\x0c\x8d\x74\xc0\x57\xbc\x4c\xc3\x5f\x5d\x17\xb5\x6a\xc9\xfc\x62\x56\x4b\xe6\x15\x13\x7d\xd6\x18\x9c\x25\xe6\xe7\xa0\x5a\x16\xdc\x91\x8d\x9c\xaa\xf7\x65\xce\x7c\x31\x3a\x36\xb5\xb0\x0b\x7a\xf3\xe9\x34\x85\x23\x75\xaa\xd6\x4e\x30\xc3\xbe\xd8\x20\x72\xd8\xb2\xa8\xaf\xf2\x8b\xa6\xaf\xd1\x4b\x5e\x44\xfb\xb2\x2e\xd9\x6c\x3d\xbd\x12\x92\x3c\x30\xee\x58\x3b\x94\x69\xe7\x79\x31\xeb\xec\xef\x86\x56\x7d\x05\x61\x6b\x20\xaa\x59\x89\x12\x68\x52\xc5\xb0\x09\xd6\x16\xc7\x2d\xf5\xc8\x90\xa7\xf9\x39\x0c\x2d\x03\x30\xeb\x5a\x16\x83\x7f\x4a\xaa\xaa\x19\x34\xa6\xc8\x0d\xbd\xc6\x2a\x25\x71\x71\x23\x20\x06\x0a\x79\x7d\xc2\x86\xe0\xc8\xb0\xc0\x44\x31\x53\x40\x0a\x8d\x06\x12\x9a\x73\x0d\xa8\xa7\x57\x62\xfa\xe1\xc9\xb2\x29\xdf\x49\x72\x1a\xae\xa3\x23\x3e\x31\xda\x13\xa8\x6c\xea\x2a\xab\x4f\x29\x6f\x76\x96\x5f\x8b\xaa\x0e\xc4\xd2\x65\x15\x5d\x65\x35\x82\xa9\xbe\x4e\xb3\x62\x2a\xe6\x7e\x51\x56\x86\x83\xe8\x21\xde\x16\x53\x0e\x0e\x51\x2c\x4c\x09\x9c\x87\xe7\xa4\xb9\x6c\xd7\x66\xe7\xd1\xdc\x40\x85\xe6\x39\x15\xda\x98\x67\x8d\xa8\x3a\x49\x6f\x8b\xd5\x07\x15\x78\x28\x2b\x8b\xa9\xe8\xac\xd5\x99\x93\xcf\x5c\x55\x5b\xf4\x4d\xcd\xe8\x9b\x62\x6a\x2d\x37\x9e\x7e\x3f\xfa\xf9\x8c\x46\x2d\xbc\xc8\x43\xc3\x35\xff\xdb\x34\x76\xb0\x94\x3e\xd8\xaa\x6d\x3d\x19\xb5\x45\x79\x6c\x26\x24\x81\x85\x68\x16\x01\x29\x1f\xcb\xce\xc4\x79\xb9\xb4\x30\xb4\x15\x41\xa8\x62\xde\xd8\x25\x6b\xd9\x34\xf3\xfb\xd6\xa7\x8a\x59\xf5\x31\x55\x00\x3e\x3f\x9d\x7b\x7b\x0b\xc7\xc2\x24\x9b\xcd\xe0\xf0\x33\x5d\x28\x24\xbf\x09\x27\x26\x14\xb6\xe2\x04\x99\x5d\x2d\x01\x5b\x0c\x25\x50\xd6\xc9\x20\xb1\x9d\x8a\xce\x52\x58\xef\xde\x41\xb2\x8f\x15\xb4\x5d\x06\xce\xb5\x68\x26\xdd\x66\x56\x5b\x1a\x4a\x7d\x81\xea\xf0\x3a\x4e\xd1\x7b\xcf\x75\xd5\x7c\x5d\x80\xa0\x99\xd0\x21\x99\x09\x6d\x0a\xc1\x2d\xaf\x75\x46\xaf\x03\xa2\xdc\x5f\x65\xf5\x15\xe8\xac\xd8\x3a\x1f\x8c\x8a\x5c\x5b\x65\x2c\x81\x4f\x28\x57\x1d\xe1\xcb\xe4\xa5\x01\xaa\x87\xc8\x62\x12\x10\x6d\x98\x71\x92\xf4\xcd\x62\x7e\xd1\x35\x67\xc4\xec\x6f\x16\xec\x86\xad\xdf\xf4\xbd\xe0\xdf\xe2\xad\x3a\x68\x49\x76\xe8\x5a\x92\x05\xa2\x3d\x1f\xda\xd1\x9e\xb7\x89\x19\xfd\xc3\x8f\xcf\x8f\x27\x6f\xdf\x9d\x3c\x7b\xfe\xb7\x14\x51\x82\x1d\x2d\x27\xb3\xed\x8d\xc5\x9c\x10\xb9\x90\x86\xe6\xae\x4f\xb3\xe9\x95\xe4\x3f\x91\x0c\x41\x04\x89\x49\x64\xad\xb5\x5c\xe6\xb3\x74\xff\xb3\xc4\xa6\xd0\xf3\x17\x27\x7f\x4f\x55\x7c\x84\x68\xaf\xb7\x07\xee\x41\x55\x17\x00\xe2\xf8\xe4\xf4\x69\xba\xd2\x96\x3b\x68\xe2\x60\x59\x41\x60\x92\x67\x06\x81\xe6\x3d\xe8\xa9\x9d\xbd\xb9\x14\xa2\xca\x1a\xf1\xc3\x32\xa7\xb8\x21\x95\xb8\xc8\x3f\xa9\xa0\x4f\xf0\x1b\xff\xa5\x0c\xb3\xe4\xd9\xad\x49\x31\x6b\x4f\x8e\x7a\x6f\x6f\x88\xcf\xe6\x4a\xfb\x66\xa4\x06\x34\xd6\x0f\xe9\x76\x6a\x25\x1a\x14\x0b\xe8\x71\xa1\x58\x49\x66\x0c\xdd\xf9\x82\xce\xa9\xb2\x89\x2e\x61\xfb\x89\xb5\xdf\x61\xcc\xc8\x52\xfe\xc1\x06\xcf\x54\x4c\x57\xfa\xcd\xdf\x88\x51\x95\x03\x59\x93\x12\x0d\x6d\xd5\x00\x05\x01\x1f\x91\x42\x0b\x9a\x2e\xdc\x2e\xb8\x45\xf5\xb0\xbe\xc9\x9b\xe9\x15\x48\x5d\xe3\xd5\x34\xab\x85\x32\xa0\x3e\x02\xf7\xcc\x86\xba\x46\xe5\xf9\xfb\xb1\x0e\x5a\x1c\xca\x4c\xa3\x62\x19\xed\xc9\x4a\xcd\xd8\x87\x50\x25\x09\xc5\xa1\x4a\x46\x9d\x7e\x95\x6e\x66\x1a\xd5\x4d\xa4\xe6\xd1\xad\xf5\x1c\xe3\xf8\x42\xb5\xf4\xdc\xfe\x38\xea\x83\x10\x24\x3a\x8a\xfa\xa8\xb5\x1d\x0d\x69\xd1\x1f\xb9\xd3\x1f\x33\xb3\x6f\x9d\x68\x10\x89\x96\xde\x1a\x95\xf4\xc9\x30\x0d\x71\x2f\x75\x3e\x7e\x45\x10\x53\x9a\x16\xb8\x4d\x7f\xbf\x12\xdd\x71\xb5\x02\x8b\xee\xc8\xac\x85\x9b\xb1\xc0\xf3\x81\xb3\x70\xc1\x56\xe9\xbe\xeb\xd6\x7a\x82\xd2\x71\x54\xe4\x9e\x3f\x99\x20\xf9\xe5\xb5\x6d\xfe\x65\x8c\xc3\xb7\x30\x20\x67\x71\x23\x74\x88\x6d\xd0\xd1\x51\x41\x56\xd0\xab\x8a\xb6\x5f\x50\x09\x53\xb5\x05\x9a\x2f\x59\x81\x4e\xa9\xcb\x65\x35\x05\xa1\x78\x2b\xd3\x79\x98\x09\xa8\x19\xa3\x4a\xcc\xc4\x82\x7e\xa9\x06\xf0\xcb\x38\xe5\x81\x4f\xa8\x9e\xfd\x94\x35\xe2\x27\x36\xe3\x87\xab\x50\xe1\xb3\xa8\x10\x68\xaf\xb1\xdf\x4a\x59\xf7\xc8\x88\xba\xe9\x37\xf4\x93\x50\x0f\x4f\x14\x1d\xb8\x8d\x57\xf6\xb0\x06\x93\xc9\xa2\x02\x7e\xea\xed\x3c\xcb\x0b\x24\xe9\xc9\x04\x35\xcf\x1d\xd0\xa6\xfc\x5f\xa7\xdc\xf8\x57\xb2\x93\x70\xb2\xbe\x7a\x7b\xf6\xf7\x89\x9c\x6c\xf4\xdd\x2e\x27\x04\xa8\x39\xfc\x2a\x60\xc0\x07\x3a\x10\x0e\x0f\xe9\x88\xd3\xa9\x2d\x3e\x8d\x63\x78\xeb\x79\x4b\xd6\xad\x40\x52\x8a\xe6\x1d\x1b\x4a\xbf\xbb\x33\xcd\x98\xb0\xea\xf2\x47\x37\x6a\x82\x0b\x4a\x35\x98\xe8\x95\x01\x5c\x91\x19\xa9\x7a\x15\xf2\x07\x5a\x89\x86\x8d\xd0\xea\x3d\x2c\x60\x99\x0f\x44\x35\x60\x41\x75\x6c\xbf\x1b\x12\x04\x69\x65\x87\x2c\x64\xbe\xe2\x10\xac\x10\xf1\xa6\x37\x56\x3a\x26\x61\xae\x5e\x4c\x16\x80\xb6\x93\x02\x18\xbd\xbe\xf4\x87\x5a\x5e\x66\x28\xf0\xe2\xb9\x09\x63\x56\x1b\x2a\xd8\xa8\x87\xc3\x60\x60\xfb\x4b\xd1\xa8\x99\xd1\x81\xba\x91\x8a\x26\xda\x2e\x1b\x32\xed\x10\x36\x90\x39\x52\x05\xc6\xae\xbe\x05\x8c\x83\xfe\x0f\x39\x9f\xee\xb5\xa5\xc4\xf2\x81\x16\x51\x01\xc5\x69\x89\x22\xcd\x76\x2a\x7b\x50\x1b\x69\xed\x36\x2e\xab\xd1\xaf\xae\x20\xf4\xb7\x17\x8d\xd3\xb8\xce\xb4\x1f\x18\x86\x7e\xd4\xb6\x50\x2c\x28\xfd\x6e\x34\xca\x55\x04\x27\x1c\x87\x65\x35\xc7\x82\x26\x9b\xbe\x78\x5a\x35\xa1\xe2\xe9\x4a\x1d\x12\x48\x25\x93\xc9\x91\xdc\x85\xf5\x52\xc0\xe0\xbe\x2e\x0c\x5f\x16\xf7\x6d\x50\x93\x18\x45\x63\x0a\xb7\x00\x67\x01\x62\xf2\xe3\x7a\xa5\x1c\x35\x1d\xa9\xfa\x61\x66\x0a\xc2\x83\x5f\xe8\x00\xe9\xcf\x20\x44\xb1\x21\x22\x99\xf6\x53\x95\x2d\x16\xda\x71\x78\x25\x1a\x09\x8a\x6e\xd6\x26\x93\x42\x7c\x6a\x20\x80\xee\xd0\x4d\x30\x11\xc1\x60\x4d\x33\xa7\xe6\xd0\x1c\x13\xa2\x84\x4a\xf2\xb8\x19\xbc\x17\x83\x1b\xf8\x3f\x33\x21\xb2\x65\x03\xeb\x20\x34\xde\xb2\x2a\x6f\x6e\x27\x13\x28\xa1\xe8\xc8\x2a\x18\x70\x12\xdf\xe1\x3c\x7e\x7d\x39\xed\xab\x7b\xad\x27\xef\x70\x1d\x3a\x9e\x9b\x5d\x58\x27\x1b\xaf\x9c\xa6\xb0\x35\xd7\x72\xf4\x10\xff\xde\xdc\x2d\x81\xdd\x63\xfe\xeb\x6b\x8c\x82\x6e\x42\x57\xc0\x6b\xc8\x5b\xf0\x6e\x79\xbb\xe0\x5e\x90\x4c\xf1\x34\x4d\x23\x4d\xb5\x51\xbc\x32\x65\x88\x83\x7c\x50\x2d\x8b\x26\xbf\x16\x0f\x91\x6b\xa0\xeb\xb3\x79\x6e\x9e\x4c\xe6\x65\x36\x13\xd5\xa0\x12\x97\x79\xdd\x54\xb7\x23\x53\xc5\x98\xde\x9c\xb1\x25\x0f\x1e\x9e\x6c\xfa\x06\x3c\x66\x97\xe3\x56\x29\xa6\x40\xf4\x75\xb9\x23\x3d\x2f\x1a\x51\x7d\xcc\xe6\x7e\xe4\x19\xa8\x7e\x40\xc3\xdf\xdd\xb5\x3e\x01\x1b\x76\xcc\x1b\xd5\x75\x02\x37\xbf\x07\x26\x48\x8d\x53\x44\x5f\x58\xde\x5c\xe8\xe3\x37\x42\x4c\x90\x1a\x86\xd7\x84\xec\x35\x12\xe3\xce\x3a\x4d\x5f\xbb\x9c\x35\x32\xb3\xeb\xea\x00\xf7\xf6\x6d\x4c\x1e\xdc\x80\x9e\x90\x5e\xdf\x48\xc7\x1f\xe0\x98\x78\x5c\x9e\xbf\x3f\x82\x5b\x8d\xbd\x91\xa8\x16\x52\xfd\x8b\x49\xfa\xb2\xe2\x79\xf1\xb1\xfc\x80\x8a\x09\x7e\xc0\x8d\x9d\x9d\x3e\xa8\xae\x98\x0b\xdd\xc8\x00\xc9\x8b\x46\xe4\x38\xc1\x57\x4f\xcb\xc1\x5a\x51\x88\x0a\x9a\x1c\x5d\xed\x1a\xe9\x65\x75\x59\x3f\x86\x0d\xe8\xb4\xa9\x82\xf5\x1c\x75\xe4\x3a\xe6\x22\xba\x33\xa9\xfe\x85\x82\x0d\x21\x66\x35\x59\x2f\x3d\xcb\x3f\xb9\x02\xe4\x69\xb9\x2c\x9a\x74\x7f\xd8\x54\xb7\xe0\x58\xad\xbd\x40\xd0\x15\x64\xec\xed\x0d\xd9\xa3\x3e\x2a\x0e\x38\x15\x9e\x89\xba\x89\xe2\xd6\x77\x9f\x06\x15\xec\xa4\xe9\x41\x4b\x72\x7a\x66\xd2\x9f\x5f\xf4\x9d\x6a\xc0\xad\x9b\x72\x06\x60\x44\xce\xd5\xad\x3c\x9c\x12\xe8\x54\xfe\x2f\x51\x19\x53\x2d\xdc\xf0\xeb\xe5\xbc\xc1\xdc\x77\xec\x37\xf4\x74\xe8\x84\xf2\xbd\xbb\x83\x08\x6e\x72\x90\x58\x2e\xa5\xda\x51\xf4\x6a\x4c\xb8\x08\x01\x12\x90\xd5\x9c\xea\x3e\x38\xf0\x7a\xe0\xa6\xe9\x54\xc0\xda\x37\x09\x4a\x09\xc3\xa4\xe8\x75\xc2\x5a\x60\x4b\xe0\x31\x76\xf1\x88\x65\x93\x1a\xcd\x57\x41\xd3\x97\xe2\x66\x1b\xbc\x7c\xc6\x00\x89\x4a\x9e\x4a\x8c\x6e\x20\x15\x0e\xe3\x23\x02\xe6\xe4\x57\xa7\x1c\xa2\x04\x9c\x70\x82\xd4\x3d\xb1\x60\x13\x04\xfa\x1f\x40\x6b\x5f\x1d\xcf\xbf\x3e\x72\x7f\x41\x62\x3d\xfb\xfb\xdb\x93\xc9\xab\x27\x6f\x95\x7c\xb8\x49\xa3\xef\x51\x9a\xd6\x7b\x0d\x52\xbd\x1e\xc6\xad\xea\x3d\xd3\xd1\xa4\xe4\xc1\x04\x32\xdf\xde\x3b\x71\x79\xf2\x69\x41\xae\x10\x23\xa5\xc1\xdf\x8b\xc0\xeb\xaf\x89\x53\xd6\x24\xd6\x83\x53\xbc\x52\x8d\x8e\xa2\x11\xa9\x51\x45\x7b\x05\x18\x39\x8e\xa3\x71\x2a\x7f\x0d\x9a\xf2\x65\x79\x23\xaa\xa7\x59\x2d\xfa\x31\xe9\x56\xe8\x18\x5a\xe4\x7b\x91\xcb\x28\x30\xc7\xb0\x65\x08\x62\xce\x4f\xe2\x1b\xf2\x46\x5c\x1b\x56\xdb\x70\x3d\x2e\x5b\x86\xc5\xb7\xe7\xcb\xea\xdb\xba\x11\xd7\x0f\x89\xad\xb8\x1f\x63\x46\x6d\xdd\x93\x33\x93\x6c\xbf\x1c\x8d\x66\x41\xe8\xc3\x4c\x39\xa2\x04\x87\x7c\xa4\x51\xae\x50\x85\x53\x03\x99\xe3\xbb\xbb\x88\xf5\x1c\xed\xa2\x78\xf0\x1d\x35\x1c\xec\x29\x71\x6b\xda\x01\x26\xb0\x6b\x50\x11\x48\x6e\xa3\xe9\x3c\xab\xeb\x88\x0b\x33\x6c\x5f\x9f\x38\x0b\xdc\xe9\x18\xae\x7a\x14\x98\x82\x32\xcd\x50\x15\xb6\x9a\xf5\x8a\x99\x4c\x2c\xac\xf2\x4c\x79\xb7\x88\x24\x5b\x84\x9d\x65\x8d\x88\x82\x82\x84\xbc\xa8\x17\x8a\x03\x5d\x59\x92\x72\xc6\x78\x36\xe4\x64\x14\xf9\x4f\x1d\xcb\x6d\x04\x62\x6f\x49\xc7\x2a\x9c\xd1\x0e\x1f\xbb\x11\x34\xef\x45\x11\xac\xbf\x8f\x2a\x70\x9d\xe3\xbb\x81\x31\x99\xe1\x60\x7a\x76\x84\xf3\x8f\xb2\x2f\x6a\x6a\x23\xe6\xf4\x9a\x7a\xf1\xe6\xa2\xff\x31\x76\x66\xf5\xa3\xf9\xea\xc7\xbd\x55\x6f\x30\x18\xf4\x5a\x40\x89\x8e\xd2\xb7\x17\x1d\xf5\xa2\xbd\x8f\xfa\x11\x23\x5a\x45\x7b\x32\xff\x7d\x99\x17\xfd\x28\xe9\x45\xf1\x5e\xd4\x46\x76\xf4\x2c\xc4\x5e\x4a\xff\x59\x38\x11\xbc\xa3\x26\xd7\x09\x79\xd1\x98\xa7\xd9\xee\x6e\xa6\x85\x0e\x17\xfd\x9d\xec\xee\x6e\xc7\x5c\x2d\xae\x69\xf7\x88\x5b\x7a\x9a\x98\xe3\xbb\x44\xef\xe0\xc8\x81\x48\xb2\xd1\xfe\x38\x86\xb7\x80\xde\x61\x30\x33\xc9\x46\x07\x0a\xe2\x51\x37\x44\x92\x8d\x0e\x15\xd8\xef\x36\x80\x25\xd9\xe8\x91\x82\xfd\x76\x1b\xd8\x24\x1b\xfd\x6e\x1c\xeb\x57\x08\x5d\x42\x21\x26\x73\xf8\x61\x16\xa6\xd8\xc1\xa2\x64\xa5\xef\x81\xc8\x66\x74\x3d\xee\x77\x63\x11\xb2\x43\x18\xd4\x19\x41\xec\xd9\xb9\x41\xcc\x05\x40\x82\x58\xeb\x82\x0b\x63\x4c\x42\xaf\x47\xda\x69\x53\xa5\xea\x87\xa5\xeb\xaa\x9f\x30\xd5\x0f\x3f\x97\x9e\x66\xf9\x63\xa2\x15\xb7\x4b\xbf\x94\xe8\x5f\x56\x3e\x93\x8a\x33\x51\xb4\x57\x83\xec\x83\xb6\xc8\x71\xa5\x49\x20\x49\xb2\x52\x71\x09\xd3\x1e\x34\x74\x2e\x4d\x16\x83\xe3\x32\x9f\xd6\xd2\xc4\x3b\x68\x4a\xff\x6d\xbb\x75\x75\xcf\x4b\xf5\x2f\xb7\x1d\xd6\x04\xfd\xec\xd0\x0d\x00\xd9\xf0\xe4\x83\xb8\xfd\x0a\x1e\x73\xff\x2d\xf4\x03\xd6\xfb\xa1\xa5\xc9\x71\xf3\x69\xb2\xb6\xf7\x54\xcb\xfd\xc7\x7e\xd6\x03\xfd\xd6\x2a\x04\x46\x40\x29\x67\xea\x85\xb8\xf5\xbd\x38\x3a\x76\xeb\xe4\x4c\x0b\xe5\x0b\x74\x0c\xfa\xc7\x1f\x05\x13\x96\x15\xdc\xdd\x71\x3f\xa8\xcc\xa3\x98\x7e\x39\xb0\xdc\xad\x19\x9f\x35\x2b\x2f\x29\x3d\x00\x49\x4f\x87\xcd\xcd\x4d\x3e\x9f\xc3\x03\x99\x6d\x72\xe3\x25\xf7\xb9\x25\xba\x6f\x5e\xee\x58\xa5\xac\xae\x3d\x0b\x12\x6e\xfd\x11\x7e\x85\xdd\xce\xcd\xe7\x46\x6b\x17\xf0\x07\xb9\xc1\x17\x6f\xa2\xf5\x91\xbb\x3c\xec\x72\x7f\xa0\x78\x17\xf2\x11\xdb\xf7\x92\xee\xee\xf6\xe3\xbd\x03\x7b\x4b\x55\x44\x92\xaa\x1f\x86\x7e\x28\x40\x4f\x98\x82\xee\x4b\x0c\x7e\xff\xd2\xf4\x20\x44\x0f\xfb\xeb\xe8\x61\x96\xcf\x7e\xc4\x5e\x79\x7e\x47\x9d\xf4\x7b\x52\xc4\x2f\x3e\xe5\xdc\x05\xe8\xfd\x9b\xb3\xdf\xed\x5d\xb7\xb2\xf8\x46\xff\x31\x9b\xc3\x96\x0d\x21\xf4\x3d\x0a\x6f\x3f\x83\xa8\x7a\xa1\x79\xfb\x2e\x34\x6b\x0f\x1e\xd8\x54\x65\x48\x27\x35\x3f\xd7\x1e\x28\x60\xc6\xb3\x85\x8b\x51\x7c\x3f\xff\x25\x94\x01\xbd\x73\xe0\x60\xc3\x39\x70\x60\x9f\x03\xe0\x97\x06\x22\x19\xb8\x87\x85\xce\xf1\x4f\x02\xc7\x7f\x98\x8a\xcb\xb5\x61\x8d\x81\x3b\x0c\xf4\xf5\x55\x9b\x97\x70\x9e\x0a\x6f\xd9\xba\x5d\x78\xba\x47\x5b\x3a\x59\xde\x7a\x8a\x06\x3a\xe9\xc7\x3b\xc6\x5b\xa3\xa9\x04\x1e\x7c\xcb\x05\x0a\xb6\x83\xd7\x29\x5c\x73\xcc\x4a\x14\xde\x42\xf8\x21\xf3\x16\xad\xcd\x7e\x95\x43\x86\x2e\xde\x5e\x52\x7a\x30\x74\xf0\x1b\x83\xef\x24\xca\x8f\xfd\x2d\x14\x8b\xf5\xbd\xa4\xce\x2d\x14\x86\xa9\x7f\x79\x9b\x68\x07\x8a\xbe\x64\x17\xc5\x2e\x7a\xbb\x28\x26\xef\xfb\x03\xc6\xd0\x67\xf6\x98\xdd\x15\x0e\x85\xdd\x15\x0e\x89\x1d\x2b\x1c\x86\xcd\x7e\xaf\x5b\xe3\x10\xd6\xf6\x3e\x2b\x3c\xcc\x75\x76\x6e\x1e\xbf\xbe\xa5\xd9\xfa\x2d\x63\x3b\x47\xc4\xfa\xd6\xe2\x42\xe9\x5b\xcc\x76\xdb\x8f\xa5\x71\xe8\x79\x35\xe6\x1a\x88\x1f\x75\x60\xdc\xa7\x4c\x01\xc9\xdb\xb5\x7c\x10\x54\x83\x9d\x2f\xeb\xab\xb7\x02\x04\x93\x81\xb0\x0b\xb2\xa4\x0f\x62\xc2\x08\xcb\x23\xc1\x65\x94\x35\xeb\xf1\xd1\x04\x13\x0e\xc1\x99\x2c\x53\x9f\xe7\x34\xe1\x77\x7c\x45\xf2\x1a\x83\x90\x2c\x6f\xcd\xe6\x9c\xd7\x2f\xf0\xa0\xeb\x5b\xe1\x14\xc3\x6e\x59\x9c\xcd\x11\xe3\x1b\xea\x65\x0f\xdb\xe2\xe4\xfe\xfb\x22\x28\x80\xa9\x5e\xa8\xf2\x31\x2d\x54\xc5\xa2\xb1\x66\xd8\x96\xa6\xf7\x1e\x9e\xed\xef\x60\xb8\x7b\xf1\x41\xff\x44\xab\x56\x7b\x07\x5d\x85\xdd\x12\xd0\xcb\x7a\x97\x7d\xfb\x38\xfe\x6e\xdf\x96\x22\xe9\x9a\x53\xf3\x13\x63\x23\x58\xb4\x93\x06\x08\xc9\xdd\x58\x7f\x61\xf4\x3a\x3c\xb0\x87\x60\x77\x7b\xef\x44\xb1\x8a\x91\xad\x62\x62\xb3\xa0\x99\x7a\x1c\x61\x7f\xcd\x74\x16\x5f\x6b\x57\xa0\x70\xe4\xab\xdd\x81\x38\xd8\xdd\xdd\x9d\x80\x30\x51\x01\xc5\xf1\xca\x55\xb5\x06\xbe\x18\xab\xdb\xdd\xc5\xff\x2e\x2b\xa0\xd9\x00\xca\x36\x9c\x80\x13\x67\x13\x47\x46\xff\x61\x19\xbd\x7e\x73\x7c\x32\x39\x3d\x7b\xf2\xf4\x05\x48\x3f\x8d\x3b\x61\xb0\xf5\x64\x63\xf5\x5d\x5c\x14\xe5\x4c\xc0\x9f\x1a\xdc\xef\xc8\x5f\x24\xee\x27\x0f\x0a\xa8\x50\x6b\x54\xc6\xc0\x4a\x4f\x82\xa1\x77\x04\x83\xa2\x02\xa2\x3e\x99\xae\xa0\xe0\x13\x52\x87\x37\x57\xf9\x5c\xf4\x59\x1e\xd2\xc9\x77\xfb\xe8\xe9\x34\xe5\xa5\xca\x45\x3f\x1e\xa2\x83\x55\xf9\x77\x30\xb1\x9b\x20\xd7\xbc\x24\xda\xa5\x14\x95\x17\x16\xef\x86\xfa\x84\x7e\x7b\xe3\x16\x9e\xcb\xb0\x1d\xe3\xae\xdc\x60\x81\xba\x50\x6a\x94\x98\x2c\x49\xcc\xee\x96\xcd\xb2\x13\x2c\xa9\x90\x0a\xc1\xab\xdc\x58\x01\x30\x3d\x29\xfd\xf7\xce\xf2\xaa\x5c\x36\xd6\x21\x7e\x95\x15\xb3\xb9\x38\xcf\x2a\xef\x0c\xe7\xb2\x20\x2a\xf6\x50\x7c\x6a\x98\xc5\x79\x20\x73\x5a\x16\x4d\x55\xce\xe7\xa2\x0a\x66\x7f\xcc\xc5\x8d\x97\x71\x25\xe6\x0b\x51\xd5\x0f\xeb\xab\xac\x12\xb3\xce\xec\x79\x5e\x7c\x98\x34\xa5\x97\x3f\x2f\xa7\x99\x24\xcd\x87\xd9\x22\xef\xce\x2c\xca\x42\x4c\xd4\x57\x37\xd8\x55\x56\x5f\x6d\x03\x96\xd7\x4d\x59\xdd\x6e\x01\x99\x2d\x9b\xb2\x1b\x8c\x9e\xa5\x0c\xd6\x26\x17\xa5\x8f\x39\x82\x9a\xd5\xf3\xae\x2c\xf9\x19\x40\x39\xcf\xed\xc4\x6b\xb9\x6c\xe6\xcc\xa9\x93\x9b\x5d\x41\xc0\xcd\xce\x6c\xb4\x78\xfc\xad\x7c\x36\x99\xef\x3f\x38\xdf\x7f\x74\xbe\xff\xe4\x7c\x1f\xec\xbb\x09\x6e\x0f\x0f\xdc\x2e\x1e\xb8\x7d\x3c\x70\x3b\x79\xe0\xf6\xf2\xc0\xed\xe6\x81\xdb\xcf\x03\xb7\xa3\x07\x7f\xda\x4e\x26\xfa\x17\xbd\x70\x37\x49\x47\x7d\x11\xea\xa1\x0f\x54\x89\xba\x9c\x7f\x84\x77\xcc\xda\x8b\xa0\xc5\x33\x6d\xe8\x2a\xbb\x5e\x03\x2e\x73\x95\xa3\x74\x8a\xb9\xf2\x32\x2f\x3e\x9c\x95\x7f\x01\xea\x49\x9d\x09\x1c\x84\xc1\x28\x88\xc6\x9a\x72\x73\x17\x5a\x16\xff\x6b\x2e\x6e\x3c\x48\x95\x61\x10\xf3\x92\xd6\x66\xea\x50\x8f\x8b\xa0\xd7\x65\x21\x82\xb0\x7f\xf2\x61\xff\x92\xd5\x57\x41\x58\x49\x75\x1e\x30\xee\x25\x61\xf8\xc0\x74\x3e\x59\x36\x65\x18\x38\x30\xad\x66\x67\xf1\x22\xa5\x48\x76\xdc\xca\xb6\xee\x20\x4f\x4d\x4e\x36\x95\xfd\xf3\x0b\x77\x82\x76\x54\xb4\x4d\x0d\x50\xf4\x1d\xec\x66\xc7\xa7\x2f\x53\x77\xb5\xb9\xc3\x43\xc8\xd4\x5d\x83\x41\xb0\xd4\x5d\x98\x2e\x14\x6e\x84\x01\x12\x93\x8b\x76\xc0\x73\x31\x4c\x0b\x24\x78\x54\x06\xc0\x26\x8f\x96\x8b\xdc\x43\x43\x35\x07\x08\xed\x09\x6c\x9e\x21\xe0\x3f\x4d\x26\x03\x9e\x8b\xb6\xe9\x6b\xc1\x79\x2e\x39\x33\xd2\xb4\x63\x91\x3f\x65\x5a\xc4\xc5\x3f\x28\xdf\xa2\x6c\xfe\xa1\xf2\x1d\x62\x76\xbe\x09\xca\x5a\x4b\xfc\xc3\xf8\x5b\x62\x54\x6b\x13\xa9\x72\x95\xda\x45\xa6\xdd\x54\xd9\x55\x32\x50\x84\x60\x0d\x21\xea\x5f\x56\x0e\x25\xf3\x34\x4c\x52\xa8\x56\xdb\x90\xde\x76\xb0\x80\xbd\x43\xa6\xf6\x7e\xe9\x82\xc8\x0d\xd9\xda\x80\x9d\xed\xdf\x22\x89\xf4\x89\x37\xe1\x0c\x92\x91\x2c\xa3\x50\x17\x0a\x55\x61\x14\xbd\xf6\x23\xc5\x01\x70\x2a\x8e\x37\x96\x52\x8c\x01\xa7\xc0\x78\xf8\x1f\x9b\x8a\x29\x6e\x84\x2f\xb7\xcd\x8d\xc9\x03\xe0\x81\xe4\x0d\xf9\x49\xb0\x5d\xb1\xb3\x32\x4a\xc2\xe7\x4e\xdc\x65\x0e\x0e\xd5\x76\xb1\xd6\x1e\x1b\xfc\x25\xbe\x35\x5d\xeb\x79\x96\x65\x5e\x10\x26\xb6\x08\x4e\xa9\x3c\x99\x3e\xd4\x0e\x5b\xfe\x6b\x70\x6a\x5f\xc3\x9b\xa6\x27\x95\xea\x8a\xf2\xf9\x88\x45\xf9\x34\xaf\x37\x3f\x4a\xb4\xb8\xe2\x22\xef\xe9\x38\x5b\xa4\x4e\x91\xc1\x35\xd9\x0f\x98\xfd\xe0\x55\xfe\x29\x2f\x3c\xa7\x98\x4e\xfe\xd0\xf9\x1e\x54\xa2\x5c\x88\xa2\xbf\x6a\xaa\xac\xa8\x73\x89\xe8\xb3\x12\x56\xf7\x91\xa3\x22\xcd\x3d\x1f\x5f\xe5\x75\x12\x61\x42\x14\x93\x32\x76\x8a\xdf\x03\xaf\xa2\xbb\xbb\x40\x0e\x0b\xb5\x79\x55\xce\x94\x26\x06\x3a\x0e\x61\x5e\x2a\x12\x5e\xe6\xc8\xf7\x7a\x01\x86\x29\x5e\x8b\x03\x66\xca\xc2\x2b\xab\xc4\x62\x9e\x4d\xc5\x17\x0d\x8f\xd7\xa1\x47\x46\x89\x3f\xe5\xcd\xd5\xb6\x03\x63\x45\xba\xc6\xc5\x9b\xea\x18\x52\x1b\x1b\x35\xc1\x67\x27\x4f\xce\x7e\x7c\x77\x72\x3a\xc8\xeb\x93\x42\x12\xca\xac\x1f\xfd\x73\x29\xaa\xdb\x07\x0b\xd8\xb4\x1f\x14\xe2\x26\x8a\xe3\x55\x17\x05\xa0\x53\x23\x51\xc8\x2d\xc6\x38\x89\x38\x1a\x61\x25\xb8\xf1\x47\xe3\x84\x7d\xa1\xfd\xe8\x84\xb4\x49\xf3\xe2\xf2\xbf\x59\x1e\xda\xf5\x4e\x0c\x38\xf9\xd0\x3a\x5e\x56\x79\x71\x79\x0a\x81\x82\xea\xbc\x2c\xd0\xf2\xd4\x72\x34\xc7\xf7\x31\xa7\xb7\x6b\x77\xb4\x2e\x3f\x73\x3a\xbd\x7b\x37\x09\xec\x00\xd5\xb2\xd8\xb4\xfe\xc9\x61\x93\xf1\x57\x32\xb4\x7c\xa4\xf4\x23\xbc\xf3\x9e\x69\x02\xad\x99\x4f\xb2\x78\xed\x58\x50\x0a\xd1\xe1\xc5\xe4\x5e\x9b\xb0\x27\x0b\x91\x55\xd7\x0f\xcd\xdf\xdf\xe2\x49\xc3\xdd\x39\x0f\xd6\xec\x9c\x87\x6c\xe7\x74\x27\x25\x10\xe4\x01\x56\x83\xc7\xf2\xfe\x6e\x32\x19\x18\x4e\x42\xfe\xd2\x84\x9f\x17\xb9\x15\x01\xb3\xd6\x7b\xc0\x04\x4f\xf8\x1a\xc3\xe4\xa3\x15\x1c\xd8\x75\xf5\xe3\x36\x99\x96\x45\x21\xa6\x0d\x32\x29\xa6\x3c\x16\x41\x1b\xc9\x5c\xdc\xa0\xa3\x48\x28\xb9\x40\x09\xf3\x71\x5e\x53\x51\x49\x06\xf1\x8a\x9e\xd2\xd7\xc0\x8c\x4c\x9d\xe0\x67\x15\x41\xaf\xb2\xfa\xe4\x9f\xcb\xfc\x63\x36\x17\x05\x30\x49\x5e\xd3\xf1\x4a\xfe\x53\xf2\x36\xed\x7b\xa9\x35\x17\x89\x9a\x6d\x78\x7a\xb0\xb1\x1c\x5a\x93\xe5\x05\xb0\x9d\x2a\x5b\xa7\x45\x71\x82\x64\x9d\xea\xa4\xdd\x5d\xfd\x93\x7c\xc3\x2b\xd2\x3f\xba\xce\xf2\x42\x96\x00\xbe\x4c\x80\xc9\x0e\x54\x2a\x7b\x96\x44\x3c\x39\xa2\x20\xa5\xd8\x8b\xc4\x1d\x0c\xfa\x5e\x97\x75\xee\xee\xf2\x62\xf1\x0a\x53\x07\x13\xc2\x98\xe4\x2e\x3f\x0a\x40\x08\x87\xc3\x5a\xda\x36\xf1\x11\xb7\x66\xf2\xc0\x83\x22\x05\x41\x06\x9a\xf2\xf1\x35\x88\xf6\x4c\x31\x6d\x12\xcc\x0b\xed\xee\xf2\x2f\xcb\x64\x3b\x4d\x3f\x3a\x49\x0e\xb0\x6c\x2f\x6a\xc4\xf5\x62\x9e\x35\x02\x9e\x7e\x3e\x06\x92\x43\x85\xe4\x94\x88\x4f\x8d\x53\x46\xa7\xb6\xc9\x4c\x13\x59\x37\x0d\xa3\x79\xec\x5a\xfa\x5d\x93\x99\xae\xda\x76\x4b\xba\x46\xb7\x01\xca\xf1\x99\x42\xf1\x45\x5e\xe4\xf5\x95\x5d\x4a\x76\x3d\x98\x71\x64\x3b\x7a\x83\x86\xb9\x8b\x7e\x0a\x96\xb7\x89\xfa\x51\xdb\x2e\x38\x9c\x35\x63\x19\xae\x43\x03\xbc\x1d\x28\xe5\x6c\x33\x68\x70\xfc\x1a\x46\x6a\xc7\x4a\x00\xdf\x08\xe0\x5e\x69\x1d\xdb\x2f\x69\xa0\xf3\x70\x71\x85\xa2\x5f\xc2\xfa\x87\x3c\xb3\x76\x1c\x37\x24\xe6\x75\xae\x01\x6b\x25\xc4\x01\xb1\xbf\x49\x92\x87\x64\x28\x59\x0d\x6f\x4b\x29\xfe\xff\x48\x81\xf0\x2f\x7a\x6f\xd9\xc6\xff\x94\x7b\x0a\x07\xee\x2c\xe0\x70\x65\x31\x17\x4f\xe7\xf9\xf4\x83\x77\x2b\xb1\x72\x4d\xbf\x03\xa2\xb2\x80\x0c\x6c\x9d\x68\xf9\x0f\x3e\xb8\x21\x8e\x1f\x9c\x61\xff\x71\x32\x19\x58\xb9\x00\x2f\x29\x27\x20\xaa\xfa\xd3\x64\x32\x30\x59\x1b\x24\xcc\x72\xa2\x02\x22\x66\x26\x22\x59\x03\x4e\x3a\x02\xa7\xd9\x85\x20\x5b\x25\x57\x46\x60\xb2\x50\xbc\x36\x41\x8f\xb1\x68\xfb\x6c\x2c\x9a\xd0\x7d\xac\x51\xfb\xaf\x2e\xeb\x7e\xb9\x80\x1d\x86\x44\x1e\xaf\x75\xf8\x5e\xb2\x20\xc9\x2f\xfa\x3c\x47\xdb\x71\xb0\xc4\x56\x29\x8a\xd4\x29\x55\x36\x50\xff\x21\x95\x9c\x7b\x1f\xc4\xc9\x2c\x6b\x32\x0f\x06\xa2\xdc\x1b\x1d\x2f\xe5\x4b\xd5\x42\x96\xea\xe5\x80\x4e\xab\x44\x7d\xe3\x4d\x26\x59\x41\x43\x47\xf0\x17\x5a\x39\x82\xd8\xf4\x31\xf6\xcd\x92\x35\xad\x94\x3c\x45\xcc\x9e\xd0\x31\xb1\x6a\x5b\x4b\x2d\xbd\x5b\x36\x45\xb6\x34\x75\x3a\x8a\xb2\xb9\xdc\x6e\xc0\x85\x66\x94\x44\x72\xab\x8b\x92\x68\xda\x54\x73\xa2\xb2\xb7\x6f\x9e\xbf\x3e\x3b\x79\x37\x39\xf9\xeb\xc9\xeb\xb3\x09\x58\x4a\xbd\x3b\xf9\xe1\xe4\x6f\xe9\xc3\x7f\x4c\x25\x91\xdf\x5d\x97\xcb\x5a\xdc\x35\xe5\x72\x7a\xf5\x90\x56\xc8\x93\xf9\xbc\xbc\x11\x14\xd1\x5b\x6f\x40\xe0\x52\x27\xc9\x30\xef\x85\xb8\xad\x79\x5c\x08\x96\xec\x1a\x96\xe5\x17\xfd\xae\x4e\x60\x0c\x25\xa8\x18\xe6\xc8\x18\x5e\x5b\x0b\x11\x21\x48\xe5\x80\xb7\x14\x45\xf0\x5c\xcc\x92\x8c\x3e\x4a\x56\xdc\x46\xf1\x77\xe9\xbe\x6d\xff\x0e\x64\x89\xe0\x78\xb2\x5b\xc6\x7c\x12\xa7\x66\xc7\x05\x95\x8f\xfc\x02\x5b\x1f\x81\xc5\xd0\x0b\x71\x1b\x8d\x77\x77\x43\x0d\x4a\x68\x72\x23\xa9\x1a\x40\x2b\x7b\xe3\x73\x90\xd2\xdb\x21\x9f\x4c\x2d\x58\x7b\x62\xdc\x52\x40\xf3\x86\xb4\xdf\x54\xa0\x53\xa1\x97\x08\x9f\x02\x23\xc6\x7e\x3e\x4b\xf7\xf6\xf0\xca\xbd\x5c\xe6\xb3\x70\x23\x9a\xda\x46\xaa\xd0\x38\x5d\xe9\x88\x87\x47\x8a\x9e\x4d\x0c\x44\xdc\x87\x2a\xcd\xc3\xd0\xb6\xf5\xce\xa9\x8f\xa6\x88\x7c\xf9\x70\x02\x0a\xd0\x8d\xef\xca\x40\x2d\x23\xf4\xdb\x44\x41\x7f\x76\x94\x0f\x24\xec\xa0\x93\xdb\x8f\x79\xc9\xf3\xe5\xf9\xf9\x5c\xd4\xa9\x53\xa4\x6e\xca\xc5\xdb\xaa\x5c\x64\x97\x19\x32\x60\x2d\x93\xa9\xe8\xdd\x41\x05\xae\xaa\xb2\x6b\xd1\x40\x90\x49\xbe\xac\x21\x89\xed\x4b\x26\x44\x17\x95\x8c\x57\x54\xa1\xb5\x67\x2b\x18\x70\x5f\x6f\xc1\xab\x2f\x6a\x85\xe8\x9a\xea\x60\xa5\xac\xf1\x95\x4b\xe3\xf5\x3b\x5e\x99\xde\xd8\x02\xf0\xbe\xe9\xb1\xde\xa3\x46\x2e\x21\x8d\xd5\x3e\x35\x8a\x9e\x1f\x47\x63\xdc\xa8\x58\x41\xbe\x23\xb6\x10\x5d\x8c\xad\x73\xd3\xb0\xb5\xcc\xef\xee\x82\x00\xcc\x22\x8f\x65\xb8\x1d\x42\x57\x1c\x7c\x7f\x5f\x07\x5c\x2d\x8b\x3e\x77\x25\xee\x91\x22\xee\x4b\x88\xc7\x5a\x14\x33\x35\x3f\xf0\xe1\x49\xbe\x38\xce\xf8\xe9\x63\x4d\x0b\xc3\xe1\x78\x6d\x0d\x71\xdc\xb6\x71\xdb\x0e\x15\x0e\xe1\x82\x53\x16\xfd\x08\x22\x31\xcf\x45\x56\xbd\xa3\x17\x01\x76\x29\xa0\x9b\xf6\xb6\x0b\x96\x6d\x28\x94\xc4\x7c\x4a\xf2\x27\x83\xbe\x7b\x98\x52\xaf\x52\x2d\xa9\x1b\xe9\x5f\x2a\xda\xc5\xc1\x38\x21\xc2\xa9\x53\x3a\xbf\x1d\xdf\xc5\xc9\x41\xf2\xe0\x20\x26\x16\xa6\xbe\xd2\x8b\x45\x7e\x24\x46\x58\x9e\x72\x32\x1a\x7c\x10\xb7\x37\x65\x35\xab\xd9\xf3\x14\x7b\x81\xe3\x5b\x10\x38\x76\x2d\x8b\xbb\xbb\x08\xce\xa7\x88\xad\xcb\xa3\x15\x75\xed\x08\xee\x46\xd4\x80\xda\xb4\x10\xb0\x3e\x52\xdd\x6f\xe1\xaa\x7c\x64\x75\x03\x6e\xf7\xb4\x57\x60\x4b\xf4\x91\xd8\x9b\x0b\xe6\xd9\x69\xb4\x6c\x8f\x56\x4e\xbb\x6d\x62\x2d\xce\x23\x8b\xe9\x18\xed\x83\x7f\x92\xe7\xc7\x51\x3b\x54\x5e\x6b\xd5\xae\x81\x63\x1f\xb0\x15\x0f\x17\xb9\xa1\x9d\xae\xf7\x16\x5d\x52\xab\x2e\x1b\x5c\x06\x2b\x33\xd9\xad\x75\x4a\xac\x39\x7d\x18\xc5\xd0\x5a\x00\xff\xb9\x03\xbe\x7b\x2b\xe2\x2b\xc4\x0d\xe3\x05\xfb\xdf\x48\x04\x3f\xc0\x7b\x0d\xcd\x6a\xf4\xcd\x9e\x6a\x74\xef\x9b\xe8\x1b\x3b\x68\x87\xf5\xf6\xca\x3f\x36\xde\x10\xb5\x32\xd3\x2f\xf4\x3a\x74\x2d\xaa\x4b\xb7\x26\xef\xf6\xa8\xda\xbc\x5e\xfc\x7f\xec\xfd\xfb\x76\xdb\xc8\xb1\x28\x0e\xff\xbf\x9f\x82\x42\xce\xc7\x21\xb6\x20\x5a\xb2\x27\xc9\x44\x1c\x78\xb6\xc7\x97\xc4\xdf\xf8\x76\x6c\x27\x39\xfb\x30\x3a\x0a\x44\x80\x12\xc6\x24\x41\x03\xa0\x25\x85\xc2\xbb\xff\x56\x57\x55\x77\x57\x5f\x00\x92\x92\x9c\x99\xec\x95\xe5\xb5\x2c\xa2\xbb\xba\xbb\xfa\x56\x5d\x5d\x5d\x97\x55\xcd\x15\xaf\x4c\x9b\xf9\x59\xf2\x8f\x6b\x30\x7a\x6f\x03\x20\x9f\xa1\x2d\xb9\x64\x5b\x6d\xe7\x0a\x36\x65\x9b\x6b\x2c\x17\xa8\x0a\x4c\x8b\x45\xb6\xf0\x5d\x4e\x77\xbe\xaf\x76\x6b\x4e\xfd\x0f\xb9\xcd\xfe\x73\xd4\x9b\x7e\xb1\xb7\x3e\x58\xe5\x9b\x6e\xcb\xf6\x85\xda\xa3\x1f\x22\xb7\x80\xa3\xc9\x24\x33\x50\xb0\xb5\x78\x55\x24\xa9\xa3\x52\x84\xc9\x78\xbf\x9f\xbb\x97\xe0\xe9\xbc\xb6\xbd\x5e\x6c\x52\x1f\x82\x6b\xd1\x26\xb5\xa1\x76\x21\x80\x98\xea\x36\x29\xc0\x53\xb9\x85\x36\x6a\x0e\x75\x2a\x99\x79\x9e\x06\x5a\xae\xf6\x62\x11\xd9\x77\xfb\x36\x79\x84\x4f\x75\xa7\x43\x0e\xe0\x57\x35\x6b\x55\x64\x3b\xf2\x6a\xb2\x59\xf1\x60\xac\x10\x39\x0e\x95\x09\x99\x2b\xef\xb7\xd3\xa7\x74\x4c\x3f\x99\x4c\xb2\x65\x9d\xa5\x3f\x5e\xe3\x80\xb1\x90\x15\x74\xf7\x90\x77\x90\x97\x8b\x69\x51\x49\xa9\xc0\xe7\xf8\xd0\xf2\xf2\xc8\xa1\x1c\x6f\x8f\xa2\x40\x99\x7d\xde\xe7\x40\xe3\xfc\x64\xb8\x48\xe6\x59\xc5\xbc\x0b\xd8\xf9\xf4\x1d\xc7\xb2\xfa\xf0\xac\xcc\x92\x4f\xcd\xce\xaf\x9b\x12\x81\x23\x6d\x47\xf6\x19\xbd\xd2\xb0\xc7\xc9\x98\x3b\x1f\xc9\xae\xea\x6c\x91\x0e\xd6\xcc\x27\x6e\x13\x32\x8b\x39\xdc\x5e\xac\xf4\x60\x46\x9a\x32\x91\x20\x22\xcb\x67\x2c\xec\x2a\x0d\x1b\x52\xe6\x77\xfa\xa2\x23\x4b\xf0\x9b\x0e\x7b\x48\xa5\x2d\x77\x9e\xd5\xba\xee\xc0\xc9\x0f\xc2\xa8\x5a\x2d\x97\xb3\x3c\x4b\xa9\x1b\x6b\x60\x76\x1c\xc0\x70\x0d\x44\x67\x60\x42\xbb\x0d\x2a\xe7\xa8\x6c\x4d\xca\xaa\x4d\x5c\xcc\x4c\xfd\x02\x64\x41\xe1\x39\x45\xb9\xfc\xd6\x44\x05\xc7\x87\x27\xc4\x3d\xbe\x28\x70\x73\xc5\xf2\xf1\x86\x21\xf7\xa2\x28\x07\xaa\x86\x30\xfa\xbc\xac\x62\xb3\xd0\xf0\xf3\xb2\x62\xf5\x64\x93\xe2\x7c\x91\xff\x23\x2b\xc5\x78\x18\x6b\x35\x5b\xc4\x9f\x97\x7c\x91\x66\x8b\xd1\xfe\x7e\x8e\x93\xf4\x79\x29\x32\xd1\x25\x29\x04\x3e\xf8\x92\xa7\x59\xfa\xf1\x7a\x99\xc5\xda\x47\x32\x8c\xef\x72\x28\xc3\x22\x98\x23\x2a\xc3\x72\x9a\xa9\x63\x82\x3f\x19\x19\x75\xba\xa3\x8f\x8c\xab\x82\xa6\xdb\x49\x4b\x65\x8a\x19\xfd\xbc\x1c\xae\xca\xd9\x4f\x68\x06\xb0\x2d\x3e\x58\x62\x7b\x8c\x24\x7c\x2b\x4e\x04\x20\xf6\x27\xaf\x13\xae\x84\x46\x23\xc8\x94\xe3\x88\xab\x90\xc0\x29\x48\x40\x6d\xa9\xa6\xca\x06\x33\x17\x7b\x0f\xa9\x7b\x36\x46\xa7\x73\xb2\xf9\xfd\x83\x1c\xb2\x3a\x2d\x88\xe5\x6a\x22\x81\x62\x03\x2b\x0d\xfc\xe1\xb6\x35\x10\x92\x47\xd8\xcf\xcb\x21\x2c\xd2\x61\x95\x95\x39\x14\xd6\x24\x02\xdd\xc2\x46\x6a\x9c\xc4\x2f\x90\xbb\xe1\x5d\x57\x55\x50\x51\x2c\xd1\xe9\xc0\xa5\x24\x14\x98\x34\x8e\x01\x30\xcd\xa6\xcc\x21\x8f\x67\xed\xb3\x49\x31\x9d\xcd\x7a\x60\xb5\xe9\x18\xf4\xe0\x49\x79\x5e\xfd\x35\xaf\x2f\x8a\x95\xbc\x82\xf9\x88\x1d\x1d\x08\xb2\x80\x26\x69\xf0\xac\xa8\xd2\x83\x90\xa2\x7d\xd3\xf7\x58\xfd\xd2\x37\xdf\x21\x5b\x79\x4a\x46\xa5\xe0\x1a\xdd\x86\x2e\x8b\x32\xe5\x70\xd4\x59\x6f\xbc\xe6\xca\x29\x5d\x84\x1b\x63\x1b\x8e\x9c\xa6\xb9\x23\xe8\xf7\x8a\x74\xd5\x17\x4a\x22\xad\x9d\x39\xb5\x48\xbf\xb7\x11\x7a\xeb\xe3\xfd\xb6\x82\xee\xc6\x50\x20\xb7\x14\x39\x4d\x26\x4a\x9d\x6f\x75\x72\x0e\x17\xff\x20\x09\x64\xdc\xde\xbf\x5e\x64\xa8\x7f\x13\xd5\x79\x3d\x23\xa7\xf2\x65\x36\xc3\x1f\x09\x3c\xa4\x3f\x9d\x25\x55\x85\xa1\xee\xbe\x64\x41\x24\x2e\x59\xf9\xe2\x9c\x52\xe9\x2b\x88\xd2\xbc\x82\x43\x99\xd2\xe5\x67\x10\x9d\xe6\xd5\x33\xfa\x20\x95\x20\x52\x6b\xa2\xaf\xa4\xae\xcb\xfc\x6c\x55\x67\x3f\x4a\xff\xf5\xe3\xe0\xa2\xcc\xa6\x41\x14\x00\x4e\x81\x38\x7c\x66\xc1\x49\x04\x1e\xc1\x44\x07\x18\xa0\x44\x4a\xe3\xa1\x5b\x3e\x89\xb4\xac\x43\x8a\x38\x6c\x4d\x0f\xa6\xd1\xe1\x57\xb0\x82\xa3\x41\xd5\xc3\x9e\x8b\x55\x5a\x40\x7a\x21\x52\x34\x0b\x57\x7a\x80\xc1\xca\x73\x70\x83\x13\x36\xd1\x29\x4e\x29\x6a\x41\xa5\x0e\x16\x8b\xa2\xce\xa7\xd7\x66\xbc\xc1\x81\x73\xee\x36\x91\xb8\x47\xaf\x96\x62\xf1\xbc\x45\x77\xc5\x65\x65\xab\xb2\x39\xdc\x07\x34\xc0\x38\x0f\x50\x29\xcd\xae\x30\x12\x78\x2b\x21\xe5\x50\xe0\x22\x1c\x98\x02\x73\x57\xd8\x85\xc3\x88\x42\xae\x02\x3c\xed\x4c\xf4\x2f\x9e\x5b\x54\x56\x90\x09\xde\x44\xb8\xbe\x9f\xe3\xc1\x40\x7b\xc3\x29\x41\x6a\x76\x28\x99\x91\xe3\xb9\xf5\x09\xa1\x67\xb9\xcc\x50\xd3\x24\x6c\x04\xfb\x91\xc7\x87\xc8\x6b\x00\xd3\x21\xb8\x62\x15\x0f\x17\xd8\x8d\x7c\x0a\x8e\x12\xe2\x38\x46\x33\x5f\x45\xd6\xef\x67\x00\x3a\x4f\xaf\x7b\xee\xb8\xb9\xa8\x91\x2c\xb9\x7c\x2d\x80\x3a\xc9\x2d\xac\x2b\xdc\xd3\xd0\x91\x7f\x1b\xc3\xaa\xfd\xdc\x09\x1e\x88\x98\xd8\xb5\xf2\x21\xef\x5a\x43\x86\xa6\x33\xbb\x36\xc6\xe7\xd3\x89\x62\x57\xee\x91\x55\x11\xf5\xfe\x52\xf3\xd1\x34\x0d\x86\x50\x43\x69\xf8\x6e\xb4\x8f\x20\x1c\x7a\x33\x40\xdd\x21\xa4\xe9\x52\xfa\x30\xb0\x2f\x4c\xf2\x38\x92\xd4\x7f\xf0\x29\x53\xe1\x0d\x58\xac\x70\xe6\xee\x1a\xa3\xa8\x08\x6e\x82\x1d\x1a\x81\x0c\x65\xcc\x7d\xe7\xff\xa0\x09\xb1\x71\xf0\x04\x21\x9e\x2a\x4d\x48\x87\xd7\x66\xf4\x50\x5b\x0c\xdf\x32\x74\xad\xf2\x3c\x09\x2d\x1f\xe5\x8a\x05\xe2\x9a\x71\xe6\xb5\x07\x18\x17\x2b\x13\x19\x23\x2d\xf0\xb7\xf9\x9a\xa3\x30\xf2\x5c\xbf\xa8\x02\xfb\xea\xc5\xce\x6e\xdc\x59\x2c\xe1\xe6\x46\x33\x48\x87\x27\xd1\x3c\xb9\xca\xe7\xab\xb9\x14\x01\xc4\x1b\x65\x02\x03\x56\x17\xdd\xf1\x86\xf2\x8f\x62\x1f\xe5\x65\x1d\x2e\x6a\xac\x00\xc6\xeb\x96\x9d\x94\xa6\xce\x16\x0e\x21\x47\x9f\x23\x2b\xdf\xc4\x61\x3e\xe4\xb5\x50\x7e\xd3\x0a\xc5\xd4\x68\xcc\xea\x90\x01\x71\x55\xbb\x21\x05\xda\xc7\x82\x6a\xfe\xf4\x80\x32\xb6\x26\x08\x9b\x26\x54\x5e\x95\x9c\xe3\xd6\x9c\x3d\x5a\x13\x9b\x97\xd4\x2b\x04\xa4\x58\x8a\xde\xa5\xe0\x41\x8b\x33\x56\x0e\x5e\x0c\x0d\xd2\xab\x74\xb0\x18\x78\xea\x64\x26\x15\xe1\x70\x83\x8a\x66\x13\x46\xc4\xac\x1c\x9b\xaa\x08\xf2\xb1\xd9\x55\x14\x70\xde\x97\x91\xd1\x68\x79\x5c\xee\x14\xe5\x18\x92\xed\x03\x71\x86\xd7\xc5\x01\x3e\xb2\x1c\x28\x16\x51\x8c\x9b\x7e\x57\x7e\x22\x93\x3d\x4a\xfb\x70\x07\xb1\xc0\xa4\xb6\xbe\x2e\x17\xc7\xc1\x69\x95\xcd\xa6\x41\xeb\xcb\x37\xde\xd7\xda\x32\x65\x8f\xb7\x7e\x14\x37\x68\x0c\x27\x72\x36\x9d\x69\x23\x46\xd2\x3a\xee\xfc\x3c\x2b\x87\x97\x49\xb9\x18\x04\x1f\x2f\xf2\xaa\x47\xb6\x45\xbd\xbc\x12\x27\x62\xb2\xe8\xe5\x0b\x5c\xe6\x3d\x2a\xdc\xab\xea\xa4\xce\x7a\x67\xd9\x24\x59\x55\x59\x2f\xa9\x7b\xb3\x2c\xa9\xea\x5e\xb1\xc8\x7a\xc5\xb4\x97\xd7\x55\x4f\x33\x88\xbd\x65\x99\x55\xd9\xa2\x9e\x5d\xf7\x2e\x92\xaa\x97\xf4\x04\xbb\xf2\x40\x51\x6a\xa4\xc1\x51\xaf\x28\x7b\xf5\x45\xa6\x24\x27\x48\x18\x7b\x0b\x50\x6c\x14\x78\x7c\x49\x66\x79\x3a\xd4\x71\x66\xef\x81\x84\x92\x07\x7d\xa9\x4e\x3f\x32\xc6\x89\x2e\x16\x62\x9c\x34\x48\xac\xc8\x97\xb2\xb7\x30\x89\x89\xaa\x5d\x3e\x44\x3b\x45\xb9\x7d\x49\x6b\x59\xf0\x00\x53\xce\x62\x93\x68\x4a\xab\x3d\xa3\xd8\xd0\x2e\xdd\x7e\xf9\x16\x1d\x0b\x43\x27\xe2\xae\xd7\xb0\x80\x71\x01\x59\x72\x9e\x95\x7f\x5e\xa6\x49\x9d\xfd\xb9\x9c\x31\x23\x9a\x68\x55\xce\xc4\x25\xc2\x04\x38\x66\x1e\xcd\x15\xa4\xb8\x84\x91\xf6\xaf\x4a\x54\xf4\xf8\xe6\x86\xa7\xae\xca\xd9\x6b\x23\xdc\xb1\x58\xbf\xa2\xbc\xd6\x12\xfa\x0d\xa8\x21\x1f\x86\x6b\x91\x1c\x43\x9e\x3c\xfa\xd8\x8a\xf8\xd9\x99\x76\x39\x58\xb8\xa5\x7d\x6d\x82\x7e\x04\xf4\x24\x90\xaa\xe0\x3f\x57\x43\x4c\xf9\xf3\xfb\x57\x80\x87\xf6\x42\xd5\x56\x83\x5a\x3b\xba\x0a\x4a\xd2\x75\xb0\xb2\x68\xdd\x83\xa1\xca\x1a\xeb\xec\xf6\x92\x66\x10\x31\xb6\xdf\xc8\xa4\xc2\x80\xab\x1d\x12\x99\xb2\x06\x8f\x8c\x01\x64\x0b\xf9\x94\xab\xa4\x20\x17\x48\x27\x30\x8e\x3b\xbc\x4c\x2f\x97\xcc\xa2\x14\x79\x07\xe7\x50\xd0\x67\x06\x84\xdc\xc8\xc9\x2b\x84\xdc\xc5\x63\x31\x41\x46\x45\x51\x20\x43\x05\x4b\x99\x6d\x10\xa2\xb8\x72\x6d\x4b\x3c\xda\x54\x67\x1c\xd4\xdb\x05\x1f\xee\xb9\x58\x8a\x99\xe4\xa4\x63\xf3\x09\xfd\x5e\x82\xaa\x90\x49\x5b\x32\x5f\xb4\x68\x0f\x0d\x01\xb8\x45\xc2\x04\x01\x4c\x49\xb8\x6d\x4b\xbf\xe1\x5c\xd2\x00\x86\x3b\x3a\xc9\x55\xc5\x5b\xf1\x5d\xac\x92\x91\x47\xb6\x2a\x41\xc7\xf2\x07\x93\xbe\x51\x12\xdc\x43\x55\x2d\x7b\x71\x6c\x56\xc1\x34\xff\x39\x8f\xc7\xb8\x74\x96\x1c\xb0\x5e\x87\x0d\x1b\x81\x6d\xf0\x70\x46\x29\xd6\x15\x34\x5a\x9e\x7f\x04\xf2\x7c\x13\xb8\x45\xb4\x0f\x8b\xc8\x1e\x7d\xbc\x79\x63\x96\xf4\x77\x4f\xca\x54\x32\xd1\xd0\xa7\xa4\xa9\xb9\xcd\x13\x94\x81\x22\xe8\xcf\x1a\x92\x49\xbd\x68\xb8\x69\x5d\xd8\x30\xdf\x87\xbc\x86\x6e\x16\xd5\xa8\xc2\x7d\xe3\x41\x51\x9e\x47\x2e\xda\xbe\x3b\xf8\x01\xa4\xf8\x12\x8f\x34\x15\x43\x85\x01\xc7\xd3\x81\xe2\x70\x7c\x12\x84\x70\x9a\x6c\x6e\xf9\x4f\x65\x36\xb5\xaf\x62\x24\xb6\x0c\xc2\xbd\x38\x0e\x12\xd3\x83\xe3\xed\xf9\x08\x43\x46\xdd\xce\x8d\x0b\x84\x82\xf0\x16\x4b\xc0\x15\x61\x6f\x38\xe4\x1b\x2e\x8b\x6e\x61\x1c\x38\xbf\xd1\x76\x3d\x60\x88\x1f\x07\xbf\x09\x9a\x70\x24\x07\x57\x05\xb8\x70\xa3\xc7\x07\x12\x06\xb5\xa7\xee\x81\x4d\x57\x8d\x4a\x23\x3b\x9f\x9c\x97\xb8\xf5\x13\xa9\xf1\x45\x96\xa0\x6a\x75\x70\x43\x79\x8a\xfa\xc1\xb5\xeb\xbc\x4a\x73\x07\x47\xa1\x7e\x65\xf4\x83\x1c\x0a\xa0\xc8\xd1\xa9\x53\xd4\xa1\x1a\x1b\xe7\xe7\xc1\xd1\x09\x0b\xfe\xf0\xbf\xf9\xd3\x05\xe8\x6c\xb9\xf2\x2e\x2a\x0e\x1e\xbd\x1a\x80\x91\x52\x0a\xea\x7c\x6c\x24\x0a\x02\x0a\x0b\x52\x62\x33\x5d\x90\x4f\x7e\xd1\xff\xbc\x9e\x65\xb2\x46\x50\x3f\xa7\x38\x52\x90\x79\xbd\xcc\x62\x4b\xf9\x9e\x81\xd0\xf1\x8a\xda\x6e\x52\xdc\xca\x1f\xe5\x7c\xa2\xde\x58\xb5\x3a\xd2\xf8\xb8\x4b\xc6\xd6\xbd\x18\x9e\x67\xf5\xf3\x6a\x92\x2c\xb3\x74\x60\x88\x62\x45\x4d\x91\x7a\x3b\x43\xbe\xa0\xb3\x62\x55\xaa\x69\x70\xf0\x18\xdf\xb4\x95\x62\x22\xfe\xd1\xba\xa1\x28\x7b\x03\x01\xbe\x9b\x74\x73\xa3\x1c\x33\xa8\x30\x9a\x4a\x13\x84\x02\x31\x88\xb6\xe4\x82\xd6\x5d\xd9\x99\x28\x6c\xf2\xf4\xc0\xcb\x68\xbd\x55\x2e\x4f\x25\x48\xf5\x16\x45\x08\xb3\x35\x49\x91\xe4\x95\x36\x83\xa1\x34\x8a\x3c\x15\x4f\x12\xab\xa1\x6a\x42\xbe\xe9\xfc\x7e\x26\xac\xe9\xa1\xd4\x16\xab\x74\xae\x7e\xe8\xba\x17\x31\x5d\xc1\x79\x7d\x2e\xb5\xf8\x58\xe2\x25\x0d\x5f\x4b\xfc\x63\xa3\x5a\xa3\xf4\xde\x71\xef\x5a\x8d\x1b\x75\x12\x4d\x3d\x41\x62\xbc\x4f\x0d\xcd\x3f\xa6\x19\x88\x70\xa2\xbd\x79\x51\x2e\x2f\x5a\xe1\x6c\x0d\xc2\x5f\x83\x12\xe0\x2f\xa6\x6d\xe7\xd1\x7f\xfb\xd6\xd4\x7f\x7b\x2a\x07\xde\x31\x11\xf7\x68\x76\x9d\xbe\x96\xc3\xef\xa8\xdd\xe9\xac\x2e\xd5\xb2\xdf\xbb\x9a\x65\xcc\xc1\x8d\x81\x8b\x7c\xa8\xd5\x15\x1b\x56\x9e\x2d\x8e\x71\xd4\xbe\xe5\xce\x68\x06\x2a\x9e\xb0\xf1\x6c\x8d\x20\x1f\x20\x3a\xad\x3a\x20\xa0\x7d\xd5\x05\x30\xbc\x90\x1f\x20\x8b\x54\x5f\x2f\x56\xb3\x99\xb4\xcb\x90\xf5\xf7\xfb\xf2\x17\x5c\x43\xad\xcf\x61\x5e\xe1\xbb\xc3\xb3\x04\xfc\x69\xca\x4b\xae\x0c\x21\x21\x7f\xc4\x01\x88\x20\x1b\x6d\x76\xee\x28\x93\xeb\x8b\xea\x88\xf7\xc2\x05\x24\x97\x9b\x7b\x1c\xca\xb4\x96\x1e\xe6\xd5\xc7\x62\x29\x08\xb2\x59\x93\x53\xe0\x74\x99\x94\x64\x21\x1e\x84\x8d\x1c\x1d\x83\x67\xc0\x26\xf3\xe9\x40\xe6\xa2\xc9\xbd\x1c\xaa\x38\x00\xd5\xf8\x60\x5f\x66\x37\x6a\x58\x63\x99\xf4\x83\x7d\x05\x27\x57\x50\x03\x5e\x51\x78\xec\xb4\x0a\xb5\xdc\xdc\xb0\xa5\xe0\x0e\x1a\x5c\xd3\x78\xc7\xa4\xcf\x22\xfc\x0a\x47\x46\xad\x74\x9f\x13\x75\x49\x3e\x25\x38\x45\xc3\x0a\x3e\x36\xcc\xee\x5d\xcd\xe4\xb6\x47\x2d\xd1\xde\xce\x93\x56\x75\x4e\x1f\xb5\x7c\x1b\x18\x1e\xd0\xf8\xc7\x46\xc2\x2f\x7d\x44\x6d\x24\xfc\x18\x3f\xec\x5e\x0f\x03\x5b\xff\x7c\x2b\xdf\x9a\xbb\x5b\x3b\xff\x1a\x68\xbf\xad\x00\x7e\xe7\xb3\x00\x80\x30\xca\xe3\x06\x07\x91\xf6\xa9\xf1\xa8\xe3\xd4\xf8\x96\x9d\x1a\x93\x64\x9e\xcd\xf2\x7f\x64\x8e\x9d\xb2\xcc\xd8\xc1\xed\xe0\xef\xee\xea\x75\xd0\x5f\xc1\x06\x53\xe6\xdf\xef\x62\xca\xfc\x9d\x79\x28\xb5\xb8\x12\x60\xae\xa3\xb5\x4f\x35\xb8\x86\xc9\x87\x4c\xbc\x4e\x9a\x67\x0c\xc9\x1c\x6d\x7b\x27\x7e\x1f\x79\x47\x0f\x06\xb1\x92\x4f\x3e\xd2\x1e\x47\x48\xb0\xc6\x0c\x9c\x80\x20\x44\xea\x4e\x01\x34\xf2\x2d\x36\x39\xd2\x27\x86\x64\x8a\x6f\x6e\x0c\xe4\xc2\x56\xb3\x28\x76\xa2\xd8\xee\x4c\xfc\x0f\x64\x70\x83\x92\x18\x3f\xd4\xc7\x99\xd1\xde\xc8\xf8\xd2\xaf\xdb\x4a\x00\xad\xfb\x1c\xca\xcb\x8c\x65\xcf\x68\xa9\x84\x55\x63\x6d\x2a\x66\x0d\x38\x3d\x58\xe8\xd0\xc4\x6a\xa3\x0c\x82\xff\x2e\x56\xbd\xf9\xaa\xaa\x7b\xcb\xa4\xaa\x7a\x49\x4f\x9e\x7e\xe0\x77\xa2\x2e\x68\x52\x03\x14\xd6\x61\xb8\x4c\x12\x78\x0f\x1e\xfc\xed\xc1\x83\xf3\x28\x18\x06\xe1\x48\x0c\xbd\x67\x5c\xe8\x54\x83\x2b\x39\x0e\xb8\x27\x5f\xae\xa4\xd0\x72\xf2\xe9\x1e\xa2\x3a\xef\xe6\x66\x21\x19\x10\xe6\x51\x51\x9d\xa6\x4c\x36\x1d\xec\x9b\x35\x8e\x98\x11\xa7\x55\x69\xb8\x6e\x48\x28\x98\x2d\xea\xa7\x3b\x18\xce\xa9\xe9\x7a\xfc\x10\x17\xf7\x94\xf6\x7b\xdb\x91\xed\xe2\x1c\xde\xdc\xb4\x12\x83\x81\x5e\xf4\x66\x5f\xe4\x74\x87\x23\x66\xe6\x47\x6d\xab\x0b\xde\xbc\x48\xb3\xd9\x31\x93\xa0\x1b\x9d\x3b\xb6\x13\xa4\x8c\xc5\x4e\x6f\x70\x92\x87\x85\x38\x37\x2f\xf3\xd9\x8c\xfc\xa5\x3c\x9f\x65\x73\xb0\x62\x62\x17\x74\xb6\x79\x94\x4f\xa1\x86\x56\x21\xc3\xd4\x59\x0f\x5b\x0e\x4b\xeb\x78\xf0\x71\x10\x34\x5b\x7b\x27\x1b\xac\x5b\xba\xb5\x79\x40\x1a\xf9\xf0\x54\x68\x0b\x65\xb6\xe5\xd0\xdd\x50\x51\x93\x0f\x25\x47\x37\x07\x94\x71\xcc\x6d\xe9\x1f\x29\xe0\xc1\x60\xb2\x82\xc8\xdc\xe8\x9e\x2a\xe4\xce\x16\xc3\xea\x70\x7c\xb0\x07\xe4\x89\x84\xf2\x30\x7c\x0f\x65\x5b\x3b\x56\x6c\x2e\xed\x4f\x93\xc5\x93\x99\xee\x1c\xf1\x4a\x6c\xbe\xd0\x9c\x5a\xbd\x39\xa4\x3b\xa6\x3d\xb9\x5e\x3b\x5c\x31\x2d\xb4\x0b\xa6\x2d\x99\xc5\x6f\x90\x44\xf5\x82\x6f\x30\xae\xef\x37\xc1\x37\xa3\x56\x86\x91\x49\x98\x36\xb1\x81\xd2\x5c\x6e\x6b\xdf\x6a\xa6\x97\x9b\xad\x2d\x0f\xdb\x7d\x5b\xee\xe4\xfb\x46\xb2\x7e\xbf\x04\x6b\x77\x5b\x0f\x6e\xf3\x64\xe9\x86\x3a\x24\x87\x95\x9e\x1b\xfa\x23\xf7\x86\xde\xe6\xd2\xf2\x5b\x8f\x4b\xcb\x2e\x73\x2d\xcf\x9d\x5e\x0f\x2d\xe9\xb2\x6e\xe1\x1b\xbc\x9d\xf1\xfa\x9d\xc3\x78\x31\xbe\x89\x3f\x7b\x1a\x6f\x9d\xfa\x6e\xa3\x02\xd5\x26\x4b\x5c\xd2\x86\x7a\x78\x4b\x21\xbd\x06\x50\xb5\x16\x03\x41\x70\x9d\x52\x43\xf9\x7f\x9c\x9b\xef\xb1\x26\x19\x32\xf4\x46\xd9\x36\xb2\xa2\x6f\xb4\x3b\x03\xf6\xc2\x39\x1e\x81\xdd\x61\xe9\xe8\xa0\xf1\x2a\x1b\x3b\x33\xd6\x3a\x2e\x9e\xc7\xf2\x51\xcb\x00\xa7\x7a\x10\xd1\xfc\x97\x86\x11\x55\x41\x73\xad\x0a\x4a\xe5\x57\x8b\xcb\x32\x59\x4a\x58\x35\xb0\xa1\x31\xb2\xf0\x82\xc1\xad\xc7\xec\x52\xf4\xae\xba\xa4\xb0\x31\x5c\x41\x8b\x87\xfb\x69\xf2\xe9\xc0\xf6\xd3\x49\x41\xb2\xb1\xaa\xd0\xc6\xeb\x3c\x93\x59\x11\x9d\x36\x21\x34\xf7\x83\xf8\x6f\x3f\x18\x62\xda\xb1\xcc\x33\xb0\x86\x16\x9b\x76\xca\x69\x46\xaf\xb8\x4f\xb9\xe9\xaf\x22\x32\xeb\x6d\x64\x8d\x2d\x77\xa6\x35\x72\x67\xcc\x93\x1e\x5f\xd0\xa0\x40\x27\xb8\x2a\x74\x2a\x4e\x79\xfd\xbe\x5c\xaf\x66\xfe\xc8\x2d\x82\x92\x23\x74\x6c\x67\x64\x54\x63\xf3\x5b\xc6\x4a\xf2\x95\x27\x0e\x92\x64\xf7\x1e\x00\xcb\x4f\x2d\x32\x3e\x2f\x0d\xb8\x63\x23\x18\x7f\x64\x56\x42\x3a\x02\x36\x86\x0b\x70\xf3\x67\xa6\x36\x56\xd1\xea\x78\xdd\x44\x2a\x14\xc9\xf1\x65\xbe\x48\x8b\xcb\xa1\xfc\x8e\xc4\x8a\xfa\x53\x52\x5d\x38\x16\x0f\x65\x36\x8d\xc9\x2d\xa6\x04\xbe\xb9\x81\x6f\xf9\x19\x0e\x05\x10\xbc\xfa\xbd\x5c\xa4\xd9\x55\xec\xe8\x27\x49\xbf\x11\x98\x8d\x1e\x86\xe8\x79\x34\x30\xc9\x27\x68\x2f\xad\xce\xaa\xba\xd4\x05\xc2\xed\x36\x90\x19\x69\xe5\xfe\x9f\x20\x76\x8a\x37\xb3\x7d\x84\x98\x2d\x43\xce\x38\x01\x6c\x7e\x0d\xf2\xa8\x5f\xce\xcb\xf7\xbc\x2d\x74\x87\xc7\x03\x40\x57\x84\x0d\x0f\x13\xd3\x1a\xbd\xc3\xe3\x2f\xaf\x35\x2a\x88\xe5\x2c\xaf\x95\xa6\x25\x8b\x49\x36\x43\xe6\xea\x43\x56\xaf\x96\xd2\x90\xab\x28\xea\x3f\xbf\x7f\x75\x1c\x3c\x08\xa2\x53\xdc\xaa\xb4\x63\xbb\xb6\x30\x2d\x3a\x99\x41\x9f\xd1\xa9\x35\x00\xc7\xd6\x77\x74\xca\xbb\x7c\xcc\x3f\xa2\x53\xde\xc3\x63\xfe\x01\x14\xe3\x6d\x99\x9f\xe7\x0b\x9b\x66\x48\x8c\x62\x93\x6c\x44\x05\x40\xc7\xf2\x7b\x88\xdf\xf8\x3e\x0f\x3f\xc3\xb5\x0d\x02\x1e\xf7\x26\xc5\x6c\x3f\x78\xf0\x20\xd8\x57\xc9\x17\x45\x55\x2f\x48\x34\xa1\x61\x8b\xb2\x96\x35\xec\xc7\xc1\x31\x83\x17\x59\x8d\xd4\x03\x41\x88\x06\x3a\xf0\x61\xb5\x84\x79\xa1\x21\xb1\x7b\xb2\xaa\xb2\xf2\xc9\x79\xb6\x20\x43\x1b\x9a\x8a\xe1\x22\xf9\x92\x9f\x27\x75\x51\x0e\x15\x80\xc0\x44\x7d\x68\xe2\xf7\x64\x91\x96\x45\x9e\xf6\x1e\x82\x92\xcd\xc1\x51\xbf\xef\x01\x7a\x5d\x9c\xe5\xb3\xac\xf7\x21\x99\x26\x65\xde\x05\xf8\xf4\xa2\x2c\xe6\x59\x10\x1a\x24\x94\x94\x7f\xf1\x63\x6f\x4f\xba\x30\xc6\x0e\xf5\xfb\xc1\x72\x55\x5d\x7c\xa8\x93\x3a\x0b\x72\xf2\x7e\x2e\x33\x43\x6b\x0c\x92\xea\x02\xcd\x5b\xec\x61\xa0\x7e\x1b\x83\x10\xa5\xc5\x04\x8e\xb2\xd7\x10\x30\x97\x46\x46\x26\x0e\x79\x2e\x9d\x98\x41\xb1\x10\xc4\x6e\x02\x4d\x08\x64\xa8\x50\xbf\x3f\x30\xea\x62\x96\x2b\x37\x37\x3c\xe7\xf1\xef\x05\xc6\x24\x4b\x13\x4c\xee\xb1\xc1\xac\x4b\xc3\x1b\x35\xeb\x52\xea\x86\xc9\x6a\xb9\x0e\xc2\x7d\x00\xc7\xde\xbf\xa7\xad\xd6\xe6\x29\x1e\xb3\x11\xd6\x6c\x53\x2a\xc4\xd5\x17\x20\xe8\xb3\x1a\x97\xe9\x23\xe2\x49\x41\x0e\x38\xb9\x48\xca\x27\xf5\xe0\x10\x34\xae\x1e\x04\x68\xbe\x06\xa5\x83\x07\xc1\xbe\xfc\x68\x18\xf3\x08\xdf\xfa\x74\x36\x08\xdf\x50\x26\x43\x3e\xa8\x2a\xb4\x75\x43\xe3\x55\x65\x49\x39\xb9\xc0\x2a\x5f\xac\x66\x33\xbb\x4f\x46\x29\xea\xf3\x20\xdc\x57\xdf\xd0\x0c\x4f\x10\x08\x0c\x68\x30\x69\x1b\xf9\xc6\x89\x06\x32\x56\xe5\x68\xe0\x07\xc8\x4c\xc7\x56\x83\xa8\x44\x64\x35\x82\xca\x76\xb1\x8d\x8b\x24\x97\xc8\x5e\x18\x31\x3d\x29\x87\xb4\xd6\x60\xac\x44\xc5\xef\x92\xb2\xae\x94\x37\x2b\x62\x38\x0e\xa3\x87\x10\x58\xf2\x37\x62\x62\x14\x54\xcc\x41\x8e\xc2\x61\xb5\x9c\xe5\x35\x72\x35\xaa\xce\x58\x41\x2b\x25\x21\x9a\x75\xd2\x6a\x3d\x38\x82\x9a\x1f\x48\x25\x68\x28\xa4\x7e\xe9\xda\x1b\xb8\x52\xe8\x9c\x11\x7e\x43\xb7\x25\xba\xd8\x0e\x4a\x4f\x71\x01\xed\xc7\xc1\x6f\x82\x7d\x9d\xf7\x73\x91\x2f\x00\x43\xd2\x09\xe2\x95\xe0\x6f\x01\xcb\x57\x99\x5e\x61\xb7\x99\x3a\xca\x8f\x2e\xf4\xec\xb3\x99\xd3\x89\x03\x9a\x06\x54\xa3\xd5\xe9\xb2\xff\x54\x8f\xec\x9b\x92\x83\x09\x18\xb1\x61\xd0\x13\xa7\x4a\x72\x77\x93\xae\x5d\x6c\x27\xf5\xd5\xe8\x41\xd2\x69\x46\xef\x5b\xef\x16\x5a\xf4\xad\xef\x12\x72\x4d\xad\x39\x81\x88\xad\x5c\xd4\x3b\xd6\x7d\xa4\x65\x57\x5f\x44\xce\x99\x8f\xa6\x2d\x51\xeb\x7d\xc4\x38\x83\xa5\x8d\x9a\x39\xc8\x72\x23\xe3\xc2\x53\xc9\xd6\xe9\x36\x08\xc3\xf5\xe6\x39\x02\x4b\x33\xd6\x48\xcc\xa7\x2a\x5c\xb7\xa3\x69\xb1\x15\x24\xbc\x76\x7a\x0b\x3e\x4b\xb1\x04\x23\xe5\x03\xde\x88\x0e\x5e\xef\x76\x45\x1d\x52\xd0\x1b\x1a\x54\x93\x50\xb4\xf6\x83\xf2\x6e\x6e\xcc\xf4\xe0\x41\xd0\xef\xab\xaa\xc4\x37\x90\x80\x8e\x9e\x32\x16\x69\xd7\x6e\x52\x33\x61\xd3\x78\xee\xad\x77\xbc\x53\x42\x97\x6d\x4c\xd0\xe3\xb9\x59\x30\x0a\x1c\xb0\x80\x3c\x37\x78\x6f\xb7\xdb\x5c\xc0\xac\x8b\xcc\x57\x89\xaf\xe1\x8b\x39\xbe\xc1\xe1\x5c\xd7\xb5\xcd\x70\x3c\xf7\x33\x10\xc8\x7f\x85\xab\xd5\x57\x8c\xf0\x71\xbe\xca\x53\x3b\x54\xe0\xb7\xa2\x7a\x4c\xef\x74\x65\xe6\xb9\x4b\xb5\xdf\xd3\x3c\x97\xa9\x9f\xe1\x38\xbf\xc5\x35\xca\xe7\x72\xca\x5c\xbf\xc7\x81\x58\x9d\xae\x97\x8a\x8a\x69\xa5\xcb\x85\xcb\xcc\x08\x55\x62\x78\x73\x63\xdd\xb6\xc2\x26\xda\xc0\x93\x9d\x67\x5d\x7c\xa5\xe2\x69\xd8\xe1\x1f\x55\x56\x11\xe4\x6a\xcf\x5d\x24\x43\x78\x3e\x02\x56\x67\xc4\xfa\x90\x54\xf5\x07\xa8\x22\x88\x88\xc3\xd5\x96\x56\x5b\xd5\x2a\x39\x66\x71\x54\x02\x58\x77\xed\xc5\xe2\xcf\xd2\x18\x4c\x57\x3f\x49\x66\xb3\xb3\x64\xf2\x09\x79\x87\x2a\x9b\x4d\x51\x4b\x5a\x2e\xaf\x98\xd6\x12\x2a\xe7\x8f\x70\xd6\x07\x38\xbc\x21\x38\x9a\xd5\xb7\x84\x21\xee\x53\x89\xe1\x41\xb0\x2f\x0a\xf3\xe7\x40\xee\x4a\x97\x71\xe4\xb1\x68\x77\x88\x53\x80\x47\x81\xe8\xaf\x48\x34\x3a\x12\x5a\x52\xfd\xa6\xf2\x41\x61\x6c\x88\x91\xec\x18\x0e\x20\xa8\xf6\x46\xd3\xa2\x9c\x27\xe6\xa4\xad\xca\x99\x92\x6e\xfd\x26\xd8\x5f\x95\xb3\x26\x62\xaf\xbf\x36\x73\xb5\xc5\x90\x4c\xa7\x9b\xc7\x04\x9e\x15\x36\xd3\x68\x47\x2c\xf5\x95\x1c\x90\xee\x42\xa2\x7f\x45\x54\xf8\x17\x13\x68\xdd\x33\xdd\xf5\x90\x52\x0f\xc1\x5d\x16\x4b\xb0\x5d\x7e\x91\x97\xd2\xd5\x3b\x22\x6a\xb2\x8d\x20\x3c\x88\x4d\xa1\x52\xbf\x1f\x54\x52\xa6\x60\xe6\xdc\x89\x48\x63\x15\xbb\xd2\xe9\x2e\x32\xcd\x08\xd8\x59\x52\x65\xb0\x9d\x69\x7f\x41\x42\x10\x0e\x93\xba\x2e\x07\xe8\x19\x29\xbc\xb9\x09\x82\xb0\x81\xf6\xa1\xdb\x7e\x24\x14\x9e\xe7\x4e\x92\x46\x41\x0a\x59\xa4\x07\x12\xa0\xac\x50\x29\x72\xb5\x8a\x74\x0c\xe4\x81\x00\xb4\x2a\x14\x54\x9b\x89\xff\xdc\x63\x84\x5f\xc9\xb8\x09\x56\x81\x24\x2d\x52\xe2\x37\xdf\x08\xe1\x8d\xcd\x91\x52\x44\x34\x38\xac\x8c\x1c\x2e\x71\xcf\xc5\xc6\xe4\xfd\x8c\x69\x33\xfd\xaf\x07\x51\x10\x84\x23\x59\x9a\xfe\x7a\x20\xa4\x11\x37\x5c\x8a\x65\x36\x81\x0b\x00\x95\x26\x2f\x93\x41\x70\x8b\x00\x7c\xb8\xcd\x92\x72\xc2\xba\x88\xdf\x62\x62\x47\xab\x72\xb6\x1f\x93\x00\x44\xbe\xf1\x09\xf2\xec\x3f\x77\xa1\x32\x58\xfb\x72\x82\x70\xf6\xc2\x91\x16\x58\xe8\x49\xc4\xe3\x32\x9f\x0e\xf6\xa0\xcc\xcd\x0d\xfc\x81\x01\xde\x93\x87\x0c\xda\x26\x4b\x79\x1c\x9d\x23\x5d\x87\xf4\x57\x42\xc1\x58\x8c\x12\x0b\x59\xb9\x87\x63\xf1\x11\x84\x1f\x3c\x6b\x7f\x08\x0d\x1e\x1b\x42\x46\x00\x6e\x22\xd5\xeb\xf6\x2e\x82\x9c\xe2\x18\x2e\xe4\x23\x5f\xe5\x7a\xe0\x00\x1e\x4e\xe5\x88\xf5\xd9\x83\xa4\x14\x09\x72\x5c\x62\x28\x2d\x83\x67\x95\xd9\x97\xbc\x58\x55\x4a\xbc\x21\xb7\xa1\x9a\x95\x3b\x22\x6d\x0c\xf5\x3f\x05\xef\x2d\x98\x32\x97\xe7\x88\x34\x9f\xe6\x61\xc8\xe4\x41\xb1\x89\x1d\xa3\x98\x66\xc6\xb9\x12\xae\xcd\x63\x06\xee\xc5\xf9\x74\x60\x30\x68\x71\x8c\x0c\x1b\xef\x97\x36\x13\x56\x8c\x97\x51\xa6\x93\xff\xda\x44\x23\xbb\xc8\x5d\x3e\x15\x75\x90\xc0\xe9\x1e\x68\x9f\x12\x66\x48\x88\x79\x52\x4f\x2e\x06\x0f\xfe\xdf\xdf\x1e\x3c\x08\xfb\x7d\x59\x33\x4f\x0d\xd7\x9b\x6b\xa5\xbd\x49\x00\xfb\x54\xcd\x7d\xf1\x9b\xdd\x53\xbe\x1d\xb7\x69\xbd\x59\xde\x4d\x22\xd0\xca\x43\x7e\x6d\x45\x87\xdb\xde\xb6\xdb\xd8\xb5\x47\xf7\x76\xa7\x15\xe3\x8b\x77\xb1\xe3\xc0\xc7\x28\x38\xa6\xd7\x02\x34\x68\xbd\x67\x56\x26\xdc\x96\x97\x3c\xa0\x3e\xe8\x13\xe4\x29\x25\xc6\x32\xb7\x21\xb5\x4c\x77\x7f\xda\x6d\x89\xc4\x91\xa7\xaa\x01\x7a\x55\xe9\xbe\x66\xc1\x21\xde\xb1\x20\x5b\x4c\x41\xee\x72\xf5\x51\xf7\x9b\xaf\xb9\xfa\xfe\xe3\x5e\xae\x1d\x79\x05\xc1\xcb\x9c\xab\x07\xa5\x73\x77\xdc\x2c\xd0\x7e\xbb\x06\xb5\x61\x26\xc0\x9c\x18\x74\x78\x3b\xb1\x35\xca\xad\x3a\x0c\x75\xb8\xae\xe0\xff\x1c\xae\xdd\x64\xa4\xdd\x44\x84\xf9\xa0\xbd\xb5\xe2\x38\x10\x51\x82\x8e\xa6\xa4\x74\x1d\x49\x33\x76\x70\xd6\x11\x91\x42\xb9\x2a\x87\xd5\x7c\xbc\x5e\x66\xcc\x8d\x5b\xbf\x4f\x33\x20\x13\x42\xae\xdc\x0c\xc6\xe4\x01\xea\xc7\x1a\xd1\x52\x00\x07\x1b\x8e\xa8\xa1\xad\x2f\x8e\x99\x67\x49\x95\x4f\x82\x86\x21\xd5\xaa\xee\x0f\x28\xbe\xd8\xa0\x8a\xcf\x2a\x0a\x35\x6d\xaa\xfe\x48\x63\x9a\x1e\x8b\x23\x3e\x92\x2e\x11\x5c\x82\x14\x0c\xe4\xf0\xa7\x3d\x7b\x65\xec\x07\x6c\x19\x86\x01\x2a\xfc\x6d\x63\xa3\xa0\x91\x95\x6a\x55\x03\x35\x39\x84\xb8\xf2\x96\x45\xdf\x4d\xc7\x72\xd8\x62\x1d\xdc\xc5\xf8\x00\x2c\x1e\xb6\xea\x17\xec\x60\x5a\x5c\xae\x6a\xb9\xac\x43\x49\xb8\xd4\x3a\x0c\x20\x2c\xc0\x32\x99\x64\xc3\x57\x6f\xff\x78\xfa\xe4\xe9\xc7\x97\x7f\x79\x7e\xfa\xc7\xe7\x6f\x9e\xbf\x7f\xf2\xf1\xe5\xdb\x37\xe2\xb6\xa4\x64\xfd\x54\xa8\xe9\xde\x5f\x9e\x8d\xb5\x89\xe4\xa6\xd5\xac\x8d\xce\x6e\x43\x38\xef\x24\x8e\x51\xb3\xfb\xec\xc3\x2b\x72\x71\x21\x7d\x43\x65\x8b\x1a\xec\x72\xf0\xc4\x01\xc6\x2b\xab\xe2\xf1\x49\x5b\xa4\xf4\x67\x1f\x5e\x8d\x9e\x7d\x78\xa5\xe3\x3f\xc6\xe0\x89\x66\x55\x4e\x32\x4b\x5d\x4f\xfa\x4b\xd0\xe7\x63\x3e\x1d\xd8\x16\x5b\x71\x1c\x3f\xec\xf7\xc9\x41\x8e\xb4\x75\x32\x43\x8d\xc9\xf2\xf2\x59\x51\x9a\x0d\xc4\x6b\x0c\x17\xe8\xd6\x78\xa4\xcd\xa6\x10\xc6\xac\x5f\xde\x02\x03\x32\x97\xd4\x1e\x2a\x96\xf2\xbd\x14\x54\x0d\xc0\x3e\x08\x5e\x9c\x3e\xac\xce\xe0\x79\xa8\x22\xc9\xd0\x0e\xde\x4b\x26\xc5\xa2\x12\x7b\x70\x51\x1f\xc8\x71\x02\xcf\x8c\x76\xc5\xe0\xdc\x10\x68\x16\x3c\x5c\xc9\x21\xf3\x82\x89\x2e\x59\x19\x48\x8b\xd3\x6a\x16\x2f\xb2\x4b\x3d\xcd\xf8\x2e\x3f\x48\xab\x19\x73\xf0\xc7\x13\xc9\x08\x15\xaf\x6e\xc1\x83\xd3\xd5\x62\x55\x65\xe9\x69\xba\x9a\xcf\xaf\x4f\x21\xf3\x54\x64\x9d\x42\x91\x53\x1c\x98\xfd\xe0\xc1\x31\x96\x6b\xe8\x99\x4d\x61\x4b\xbf\x50\x05\x3a\xad\x66\x61\xa3\xee\xf9\x03\x3e\xc8\x78\x36\xa4\xd5\x4c\xed\xad\x81\x0a\xd1\xd6\x51\x00\x3d\xa1\xed\x30\xfa\xe0\xe2\xe9\x00\x9e\x15\x92\x1a\x07\x5e\x5b\xa2\x91\xfa\xc2\x50\xdc\xa7\x8b\xa5\x74\xfb\x8e\xbc\x18\xf6\xf3\xd4\x1e\x33\x9e\x77\xd7\xa1\x6b\x50\x12\x60\xb0\x71\xd8\x4d\xf3\x86\xba\x04\xd5\x0b\x0b\x63\xba\x99\x89\xad\x12\xdc\xdc\xd0\xaf\x07\xc1\xcd\x0d\x40\x8f\x97\x4c\x31\xe2\xe0\x08\xb4\xcc\x41\x0d\x24\xa0\x8d\x9f\x5d\x2d\x67\xf9\x24\xaf\x51\x4d\x04\x16\x15\xdf\xff\x38\xfe\x63\x07\xa1\x13\x10\xc8\xad\xea\x96\xad\x4e\x5a\x07\x7a\x94\x54\xc6\x2e\x3b\xc6\x33\x67\xff\xf4\x89\x91\xab\xd2\xbe\x31\xa6\xd5\xec\x35\x91\x48\x3e\x5e\x23\xe5\xc4\xcc\x18\x58\xa5\x16\x21\x30\xa4\x09\x50\x68\x05\xda\x11\x97\x6a\x04\xaa\x0b\xd7\x66\x24\x1c\xdd\xa6\x13\x07\x87\xa3\xc4\xe0\x64\xb4\x11\xa8\xee\xed\xd9\xcf\x31\xde\xa7\x25\xc0\xf8\xf0\x24\x1c\xd6\x85\xfe\x3e\x3a\x89\xd4\xef\x87\x27\xa0\x63\x3c\x32\x83\x37\x00\xb1\x30\xa7\x5a\x52\x58\x65\x11\x8b\x61\x62\x6e\x47\x6a\xf3\xa9\x68\x81\xce\xa3\x7e\x5f\xff\x06\x77\x5c\xdc\x41\x20\xee\x5f\x0d\xb0\x1f\x0c\xa9\x0e\x48\xeb\xa2\x1b\xe2\xd8\x9a\x27\xcb\xb8\x45\x12\xc4\x88\xe7\xc8\x25\x64\x92\x61\x4a\xab\x59\xbb\x02\x00\xb7\xb2\xfa\x27\x79\x00\xc0\xac\xf3\xac\x3e\x5d\x2a\x7b\x45\xbb\x99\xc5\x6a\x9e\x95\x62\xaf\x9d\x9a\x6f\x51\x98\x9d\x57\xa7\x78\x7b\xee\x8e\x85\xe7\x7b\xcc\x6a\x51\x4d\xf0\x46\xb6\xd3\x06\x6b\xcb\x56\x33\xb7\x5b\xc5\xcf\x9b\xe7\x57\xf9\x42\x46\x9a\x3f\x25\x77\x7f\xdb\xfb\x40\xf8\x35\x68\x38\xd8\xce\x0c\x8c\x98\x68\xff\xc2\xd1\xec\xbe\xbe\x4f\x85\x73\x6e\xa7\xbb\x51\x05\x43\x6d\x84\x3f\x8b\x65\xbc\xe9\x4d\x30\xaf\xde\x14\x8b\xcc\x71\x80\x80\xc9\xed\xd1\xf2\xbe\xb3\xa3\xe5\x09\x92\xf8\x76\xea\x84\x79\xc7\x64\xaf\x36\x8a\x2f\xca\x9d\x1b\x0a\xcf\x33\xe0\x62\x73\x6d\x8c\x67\x07\x31\x4e\xf2\xe9\xb5\x13\xc8\x6e\x28\x73\xbc\x21\xfc\x00\x62\x53\x0c\xbf\x23\x8f\xd1\x01\x45\x28\xa5\xd8\x6b\xf6\xc2\x73\x57\x42\xa7\xdf\x8a\xa3\x0e\xc7\x15\xc9\x29\xc5\xff\x8e\xad\x99\x1e\x52\x3a\x41\x91\x00\xd9\x81\xa2\x74\x80\x42\xc7\xa2\x1e\xd1\xa3\xd1\x9b\x68\x9d\x5d\x99\xcf\xb3\x3b\xbf\xd3\xd5\xc5\xf9\xf9\x8c\x79\xbc\xd4\x01\x10\xb4\xab\x65\xe6\xa6\x82\x3c\x61\x42\x72\x9a\x81\xfb\x6d\x7c\x05\x83\x94\x3a\x4b\xca\xb4\xb8\x5c\xfc\x25\xcf\x2e\x21\x82\x42\xb6\xa8\x3d\x01\x19\x74\x31\x0c\xab\x0b\xe1\x6b\x30\x42\x0f\x33\xd0\xc6\x14\xf3\x12\x8e\x69\xa7\x48\x6c\xab\x63\xee\x70\xf4\x59\x9e\xda\x2a\xf3\xa8\xa5\x91\x46\x75\x51\x27\xb3\x77\xe8\xee\x3b\x2a\xb3\x79\xf1\x25\x4b\x6f\x31\x54\xb0\x99\x44\x55\x14\x79\x22\x16\x7b\x42\x36\x12\x4a\x17\xfd\x90\x28\x1b\x09\x9d\x50\x6d\xbc\x82\x16\xc7\xae\x18\xe1\xca\x80\x1c\xe7\x27\xca\x7d\xb2\x14\x22\x73\x9f\x8c\x11\x96\x09\x25\x1b\x74\xae\x5d\x6c\x44\x41\x99\x4d\xcb\xac\xba\x78\x8d\x46\x91\xea\xe1\x11\x12\x07\xa1\x32\xc6\xc0\xbb\x5d\x34\xcd\x17\x56\xa0\x2f\x7b\x58\xc9\x1e\x15\x00\xa9\x79\xed\x35\xfa\x96\xe3\x3a\xf1\xb8\x6c\xa6\x25\x87\x03\x5c\x31\x01\x24\x0f\xa4\x87\xc8\x55\xcf\x56\xe2\xe8\xfe\xb0\xaa\x96\xd9\xa2\xca\x8b\x45\xf4\x79\xf9\x3a\xab\x13\xf6\xaa\x74\xfa\x79\x89\xf7\x16\xcc\xb1\xd8\x5c\x08\xa2\x27\xd2\x87\x1b\x62\xe9\x49\x18\x31\x23\x9f\x97\xca\xcb\x8b\x11\xb0\x6e\xa9\x6d\xaa\xd1\x8b\x7c\xa5\xc2\xec\x51\x67\xfa\x7d\xa3\x00\xa5\xca\xd0\x76\xe7\x64\xb0\x4c\x03\x40\xd1\xf1\xc2\x11\x56\x13\x93\x73\xe2\x5d\x03\xb2\x41\xd7\x25\xc2\xe1\x9a\x2a\x5b\x3a\xe1\xf3\x58\x23\x69\xe6\x6b\xa6\xea\x6e\xa7\xd2\x91\xdf\xd2\x6c\x3a\x52\x5f\x69\x36\x6d\x1a\x8a\xb5\xe7\xb6\x9a\x4f\xa9\xde\xbd\x58\x07\x8d\x33\x5d\xa1\x7a\x17\xbe\xaa\x42\xad\x7d\xee\xb4\x1d\x1d\x67\x08\xca\xd1\xef\x5b\x7b\xc2\xe3\x46\x5f\x7a\x3c\xd7\xb9\x8d\x42\x25\xa6\x39\xfc\xbc\xc4\xf8\x3c\x18\x7f\x8e\xfb\xec\x38\xa5\x9d\x93\x2f\xce\x79\x14\x4e\x78\x65\xad\xbc\x33\x1a\xc9\xca\xc2\x2d\xea\x41\xdb\x22\xb6\xe9\xc8\xe7\x32\x54\x70\xac\xf0\x8c\xbe\xe4\x55\x7e\x36\x63\x29\x7b\x2a\xb8\x5e\xf4\x29\xbb\x3e\x56\x03\xd6\x84\xcd\x4e\x5b\x0a\xbc\x49\x9b\xc4\xa2\xc1\xf0\x63\x18\x4f\x34\x82\x78\x9c\xa9\xe6\x87\x8e\xc7\x18\x41\x4c\x70\xb7\xfa\xac\x40\x25\xcd\xe1\x4f\x91\x93\xc0\x43\x10\x58\x37\x7c\x43\xe4\x4f\x9e\x8c\xf4\xe5\xb6\x1c\x99\x7e\x85\xdb\x63\x19\x70\xa3\xdf\x5c\x9c\x4d\xf3\x2c\xcd\x93\x3a\xfb\xe8\x6d\xba\xbd\x39\x0a\xdc\xd2\x52\x43\x7b\x9b\x44\x75\xdb\x4d\x9c\x4c\xa7\xe8\x48\xa2\xd1\x75\x72\xc4\x82\x3b\x6c\x83\xa2\x31\x22\xad\x81\x21\x38\x72\x55\xb6\x48\x37\x60\x26\x40\x98\x3f\xd4\xa1\xb7\x16\x30\x9e\x54\x67\x30\x39\x31\xe0\x27\x84\xc7\x55\x92\x45\xf4\xd1\x39\x8a\x6e\xc2\x7a\xbf\xb1\xc1\xe5\x2b\x19\x13\xf0\x83\x0a\x3d\x90\x03\xee\x23\xc9\xae\xa2\xe5\xb9\xc1\xf3\x50\xd0\x58\x4d\x5a\x5e\x62\xee\x95\xe9\x62\x94\x02\x2d\x01\xa4\xf9\x05\x8c\xad\xc6\xb5\xd2\x8e\xea\x8d\x64\x4e\x6a\x14\xfe\xf2\x0c\xd8\x0d\xd3\x2d\xe9\xdb\x6e\x84\x64\xdd\x8c\x7c\x78\x7b\xd0\xe6\xcb\x66\x6b\x1a\xa9\xe5\xb8\x9b\x1b\x60\x01\x6e\xd0\x13\xcf\x47\xe2\x40\x2b\xc5\x27\x19\xa9\x03\x73\x3c\x3d\x20\xfe\x46\xa2\xb3\x6c\x5a\x40\x38\xeb\x6c\xa6\x29\xe0\xb4\xce\x4a\x33\xa9\xcc\xd2\xbc\xcc\x26\xb5\x4a\xa0\x2a\x3c\xdc\x2d\x21\x48\x06\x34\x50\x8d\xde\x17\xd9\x55\xdd\x44\xe8\x3d\xcb\xe6\xdb\xec\x9d\x08\xd2\x39\x14\x54\x55\xc9\x25\x1d\xab\x78\xba\x7d\x31\x23\xdd\xed\xbe\xd0\x59\x61\x93\x15\x1b\xce\x93\x65\x10\xaa\xc0\x07\x32\xf4\xf0\x92\x7c\x8e\x93\xf7\xd5\x38\x8e\x0d\xd7\xff\x37\x37\xec\x0b\xfd\xb0\x8a\x52\x46\xa4\xd5\x09\x8b\x81\x07\x5d\x03\x57\xac\x4a\xa7\x67\x30\xfc\xcf\xf0\x34\x4f\xff\xd7\x03\x29\x8b\x9f\x93\x0c\x72\x64\xf0\x43\x18\x8e\x58\x8d\x47\x2c\x83\x3f\x41\x5c\x8b\x7e\x5f\x65\xb0\x57\xf7\xe5\x35\x8d\xb0\x56\x33\xda\xc3\xc7\x2e\x33\x24\x0b\xb9\x66\x01\x11\xed\x5e\x1c\xb3\x1c\x54\xf3\xf1\x84\x1e\xd7\x26\xc6\xcc\xc9\x1b\xcd\x78\x57\xf1\x71\x4b\xb3\x07\x47\x27\x72\x95\x8c\xb4\x13\x1d\x59\x67\xc3\x09\xff\x34\x5f\xa4\x90\x4a\xce\xad\x30\x4e\x5d\xc4\x38\xc3\xce\x05\x76\x8b\xb8\x12\xba\x6d\x58\xbf\x83\x5a\x85\x91\xa9\xa4\xa2\x94\x3e\x14\x42\xde\x9a\xe1\xc0\x82\xd5\xe0\xe2\x85\xf7\x1c\xec\x98\x7d\x98\x56\x75\x51\xf2\x70\x5b\xf0\xad\x03\x3c\xc1\x27\x0c\x0b\x1d\x84\x90\x60\x1e\x81\x22\xa5\x35\x42\x8e\x76\xe7\x58\x1b\xc1\x69\x46\xea\x24\xd7\x27\xa2\xfa\xc4\xf0\x27\xf2\x21\xd9\x0d\x20\xa4\xb2\x14\xa2\x6b\x81\xa2\xc5\x46\x31\xa6\x1a\x46\x06\x2d\xe9\xda\xb4\x0b\xd0\x8d\x8e\x74\x81\x08\x67\xa9\x2e\xa5\x16\xa4\xf4\x3c\xa4\x72\x60\x6c\x06\xb4\x50\x9a\x26\x8c\x3c\x2b\x05\xa0\x23\xbe\xdb\x79\x30\x82\xef\x8f\x78\x8c\x25\x6c\xd4\xd8\x00\xb0\x71\x97\x32\x92\x4a\x84\x92\x59\x0a\x14\xff\x00\x76\xf7\xb0\xce\xaa\x1a\x1f\x21\xfb\x7d\x3b\x52\xd0\x51\xb8\xc6\x22\xe4\xae\x45\x8c\x26\x62\x14\xe4\xa9\x74\x1b\x54\xa8\x70\xf5\xcc\x13\x9f\x81\xb7\xf2\x62\x00\x90\xc4\xf9\x30\x67\x7c\x06\x0f\xd4\x7e\xae\xad\x49\x9d\x04\x21\xfa\x7d\x02\x31\xc3\x46\x5a\x17\x08\xe9\x6b\x8f\x1d\x30\x06\x37\x64\xcd\xfb\x69\xf5\x29\x5f\x3e\xa9\xaa\xac\xac\xbb\xd7\x20\x3e\xaf\xb5\x39\x09\x95\x4b\x21\xf2\x78\xc8\xeb\xf7\xe1\x8f\xc5\xc3\x11\x8d\xf5\x65\x35\x5d\xce\x14\x4d\x45\x0c\x7a\x4b\xd6\xea\x4d\xa4\xf2\x10\xb9\xec\x9b\xd5\x71\x5a\x3a\x9d\xdb\x0e\x60\x62\xf8\x9f\x58\x4e\xf8\x2d\xe3\x0f\xa9\x86\x3b\x55\x53\x58\x6b\x74\xee\x3a\xb3\xc0\x58\xf5\xb6\xb0\x54\xe6\x28\xb3\x20\x6d\x8c\xd9\xfe\xc1\x73\x53\xc0\x30\x78\xfa\x0a\x02\xf7\x31\x33\x96\x18\xdb\xf5\xaf\xa0\xb5\x37\x6a\x62\xe4\xd4\x29\x62\x43\x0e\x4a\xbd\xc7\x16\xd2\x4c\x27\xfa\xac\x55\x31\x8f\x9a\xd8\x52\xc3\xd8\x2a\x72\xd2\x18\xd1\x61\xd4\x7a\x62\xec\x8d\xb8\x03\x71\x56\xcb\xbb\xc3\x68\xca\x19\x67\x86\x2a\xe4\x66\x68\x58\xf3\x31\x51\xd2\x94\x77\x49\x55\x65\x69\x4c\x8f\x88\xb0\x74\xf5\xe3\x61\xbf\xbf\xb7\xa7\xc6\xc5\x84\xa0\xa7\xa1\x7e\x7f\xcf\x79\x9f\x84\x12\x0b\x97\xa0\x37\xbe\x07\x4c\xdb\xd1\xa5\x8c\x5e\xc5\xd5\x06\x3c\x0e\x6c\x0d\xdf\x98\xf0\x18\x09\x14\xcc\xd3\xaa\x09\x4a\x32\x5b\x9d\x82\x13\x0f\x24\xd6\xf1\x04\x2f\x12\x30\x1f\x47\xa9\xdf\x5f\xe8\x4b\x9a\x84\xb6\x5c\xdb\x7a\x49\x4c\xb7\xbb\x5d\xe5\x63\x5e\xc9\x82\xc1\x89\xfc\x0f\x5f\x54\x14\x7e\x99\x1e\x84\x6a\x99\xef\xc9\xb4\x70\xdd\xee\xfc\x93\x3b\x0d\x35\x1c\x81\xc2\x21\x23\xea\xef\xf7\x59\x45\x2c\x3e\x93\xbc\xe6\x5a\x9a\x5c\x7f\x79\xf9\xfc\xaf\xa7\xaf\xde\xbe\xfd\xe9\xcf\xef\x3e\x30\x25\x2e\x35\xb3\x2a\xd4\x18\x69\x57\x32\xc5\x04\xd9\x8c\xd6\x50\x80\x51\x81\x13\x04\x3c\x89\x2a\x77\xd0\x38\x66\x5c\x91\x41\x85\xdd\x07\xb7\xf0\x62\xf9\xa1\xeb\x66\x5c\xf2\xb3\xa4\xaa\x31\x1e\x41\x96\xca\x7d\x82\x6b\x22\x59\x2e\xb3\x45\x0a\xb5\xd7\xae\x47\xd1\x28\xcd\x2b\x72\x68\x8a\xde\xf6\xfd\x2e\x18\xf6\xd4\x72\x75\x95\xa6\xd4\x23\xfb\x17\x15\x86\x81\xaf\x20\xa6\x38\x35\xb2\xfa\xa0\x81\x1b\xfd\x7a\x2e\xdd\xf4\xc7\x6e\xd2\x0f\x6e\x92\x67\x5f\x90\x37\x5c\x75\x31\x43\x15\x7b\xbb\x69\xe3\xf3\xe6\x06\x07\x73\xa4\xd9\x6c\x40\x81\xd3\xdc\x53\x5c\x4f\xcc\xed\xab\x8b\x0d\x79\x1d\x51\x9f\x6b\x86\xa8\x3d\xd0\xd6\x84\x8a\xb3\xbc\xc5\x68\xc0\xff\xc6\x62\x24\x58\x6f\x41\x46\x89\x8f\xc5\xf2\x55\xf6\x25\x9b\x21\x46\xad\x59\x03\xf4\x19\x2c\xb3\x74\xec\x85\x2a\x36\xca\xb0\x8c\x9b\x9b\xf1\xc9\x48\x3d\x7f\x0d\x3c\x10\xfa\x79\xdb\xcd\x14\x9b\xd6\x4e\x1b\xa0\x0e\x39\x08\x8b\x5b\x31\xf5\x02\xb0\x46\x8d\x7c\xdf\xc6\x68\x9a\x5b\x58\xb6\xbd\xc7\xc3\x92\x42\x7e\xf1\xa0\x73\xeb\x26\x3a\xfd\xbc\xec\x64\xfc\x77\x14\x79\x29\xcd\x54\x8b\x61\x50\xa4\xa5\x53\xb9\x9b\x33\x6a\xcc\x69\x46\xab\x36\x31\x57\x61\xdd\xb3\x8a\x1a\xfc\xb7\xce\x7b\x57\x16\x75\x11\x5b\xb0\xa8\x9d\x39\x30\x02\xf5\x59\x8f\x1a\x50\xce\x8a\xeb\x07\xcd\xb2\x14\xe3\xb6\x6f\xc4\xf9\x64\xa8\x7c\x5e\x56\xf1\xf8\x24\x9a\x27\x4b\x41\x57\x9c\x37\x1d\xa7\x02\xe7\x51\x47\x41\xbc\x4e\x96\xcb\x7c\x71\xce\xcb\x8c\x73\x08\xb2\x56\xf3\x28\xfd\x04\x26\x95\xe1\x8e\x83\x30\x5a\x96\x05\xb2\x53\xa8\xfd\x76\x78\x42\xcf\x71\xf4\x7d\x74\x72\x73\x23\x41\x22\x7a\x6d\xfe\x8b\xe7\xa1\x07\xc7\x44\x42\xa2\x9f\xd7\x18\x9f\xe9\x07\xbc\x58\x68\x54\xf2\x41\xde\xae\xd2\xf6\x87\x21\x0e\x4f\xb8\x41\xed\x61\xf4\x79\x19\xaf\xd3\x6c\x7a\x6c\x40\x54\x76\x8a\x6e\x03\x8a\x41\xc4\x52\xaa\xe7\x98\xaa\x13\x68\x1f\xab\x5e\x4e\xea\x12\xdd\xb6\x33\x49\x2a\x3e\x54\x98\x0d\xb9\x69\xac\x29\xe4\x86\x45\xa7\x9a\xd1\x3c\x59\x8e\x65\xed\x27\xb1\xf8\xa2\x87\x23\xf8\x6d\x6b\xae\x1f\x63\xd4\x16\x04\xfe\xbc\x1c\x7d\x5e\xd2\x6b\xc9\xe7\xa5\xbc\xb5\xad\x3f\x2f\xab\xe3\xcf\xcb\x4a\xac\x9c\xe3\x79\xb2\x14\x17\x55\xcf\x03\x06\x5f\xa0\x32\xe0\xde\x9d\x39\x7b\x1d\x98\x51\x2e\xe5\x35\xfa\xa0\xf1\x73\xfc\x6d\x5c\xbe\x74\x0c\x6c\x49\xe8\x38\xcf\xbf\x94\xd2\x2b\xc5\x84\xd3\xad\x19\x2e\xbe\xc0\x73\x7e\x36\x64\xb9\x0a\x8e\x25\x23\x37\x69\x19\xc0\x9a\xa8\x41\xc6\x48\xc6\x23\x24\x5b\xd7\x8e\x86\x10\x84\xb7\x81\x7b\x59\xbd\xd9\x42\xbd\xec\xd1\x76\x4f\xbe\xda\x1a\x3e\x9f\x15\x05\xd0\xef\xb2\x40\x09\xe8\x73\x9e\x2c\xa3\xcf\x4b\x97\x28\x78\x5f\x78\xe1\x75\x17\x74\x17\x9d\xc7\xc9\x58\xbe\xd3\x29\x79\xa5\x7e\xba\x35\x64\x8f\x02\xd1\x81\xce\x9b\x27\xcb\x90\x09\x24\x61\x04\xe9\x39\x94\xd1\x18\xf9\x02\xfa\x79\xc9\xd7\xb5\x7e\x10\xa5\x38\xae\xa1\xf5\xb0\xda\x2c\x8d\xe2\x74\xc7\xee\x7c\xb1\xb5\x9f\x6b\xcd\xb1\x8c\x3c\x25\xf5\x3a\x37\x6a\xe0\x1b\xf6\xa3\xa8\x4a\xf4\xdc\x4e\x14\x2c\x21\x5a\xcd\xa8\x59\xfb\xff\x7f\x78\xfb\x66\x88\x6c\x62\x3e\xbd\x96\x32\x22\xe9\x7f\x76\x1f\xc7\x38\xf2\xf6\xe1\xae\x98\x9c\x15\xc5\x2c\x4b\x16\x1a\x17\x39\xb6\x41\x5d\xae\xb2\xe0\x07\xf1\xff\xb1\x7e\x3f\xe8\xb5\x54\xb3\x58\x09\x5e\x41\xd7\xf2\x06\xbe\xa9\x27\xb8\x48\xde\x4e\x07\x61\x67\x1d\xd6\xa0\x20\xf7\xf1\x64\x00\x83\xb3\x4c\xca\x2a\xa3\xea\xd4\x04\xd1\xb8\x9c\x7e\x5e\x92\x3a\x88\xf7\xe2\xab\x0e\x0e\x29\x3d\x7f\x03\x3a\xdb\xe0\xf5\x4e\x7d\x92\x3c\xf9\x11\x38\xc1\x83\xa8\xb5\x6b\x7d\x7a\xa9\x32\xd2\x0b\x9f\x5b\xcc\xde\xa7\x4c\xb7\x22\xfa\xcc\x37\x9e\xa6\xd6\x23\x43\xbe\xd5\xf2\x74\x43\x1c\xd2\x6d\x54\x3d\x98\x5a\x45\xb8\xa6\x1f\x7c\xf3\x82\xe8\x9e\x71\x0c\x38\xf1\x20\xaf\xb7\x14\x2d\xd4\x08\x4a\x4f\x11\xc4\xf0\x7f\x5e\x65\xab\x2c\xfd\xdf\xef\x9e\xea\xca\xe1\x7d\x80\x74\x00\xca\xd5\x62\x58\x2c\xc8\xbb\x25\x05\xa7\x9f\xe6\x25\x5b\xbc\x1f\x99\xe4\x39\x6a\xcd\x73\x59\x7d\xf6\xa6\x6c\x72\x9a\x5d\xe8\x35\xdd\xd8\xc7\xeb\xa6\xe1\xa1\x30\xf1\x66\x02\x4c\xed\x80\xce\xa4\x2f\x3a\x50\x37\x3c\x23\xc4\x4c\x3e\x64\x92\x7c\xe3\xb5\x01\xe8\x34\x4f\xf0\x3c\x5a\x48\xa7\x79\x26\x51\x8e\x3d\x6f\x1e\x5a\xcd\x9c\x8a\x18\x40\xe3\xdc\x08\xf1\x2d\x41\xe2\xd8\x38\x56\xa9\xd1\x86\x0c\x8d\x08\xaa\xb1\x3b\xaf\x6e\x88\xac\xff\x54\xc4\x1d\x1d\x75\x77\x87\xee\x62\x3e\x17\x57\x2b\x01\x04\x66\x79\xef\x1d\x5a\x3a\x26\x2f\x22\xa6\xa7\x7a\x03\x29\x6a\x82\x61\xed\x08\x16\xf0\xb4\xf4\x4b\x16\xbc\x9a\xf2\xca\x19\xfb\xa2\x2e\x62\xfe\xf1\x03\xff\xd8\xe2\x4e\x8d\x63\xb2\xe5\xa5\x5a\x26\x2b\x61\x96\x4a\x51\x83\xa6\x06\x57\xe6\xd8\x82\x16\xcd\x1d\x6c\x25\x95\xb1\xa2\x2c\x19\x41\x70\xb8\xc0\x50\x65\xa0\x84\x1f\x8c\x40\x9e\x1a\x52\x6e\xb7\xa4\xa1\x4e\xe0\x66\xab\x33\xc0\xaa\x8c\x49\xc3\x37\xc9\xbc\x8d\x16\xac\x6a\x9c\x88\x44\x3e\x21\xfb\xcd\x8d\x25\xda\x65\xe6\x68\xac\xa8\x2d\xbc\xb1\x6e\xaa\x4c\xdc\xef\x6d\x6f\x6b\x6b\x63\x57\x21\xa3\x3d\xae\xd7\x12\xa4\x8c\xbd\xbf\xb3\xea\x7a\xdf\xb8\x46\xaa\xdf\xfc\xbd\x27\x96\x6a\xaf\xbe\xc8\x7a\x7f\x47\x29\xef\xdf\x7b\xa8\xc7\x15\xf5\xce\x56\x75\x6f\x51\xf4\xaa\xd5\xe4\x82\xf5\xa9\x37\x29\x56\xb3\xb4\x77\x96\xf5\xa6\xc5\x6a\x91\x0e\x03\x54\x02\x20\xc1\xf1\xc4\x1f\xd5\x88\x64\xfb\xee\x34\xf3\xd1\x91\x0f\x42\x08\xa4\x37\xec\x46\xb9\xde\x9a\xa2\x6b\x72\x37\xa7\xce\x6a\x0e\xd7\x8d\x66\xc5\x25\x63\xc1\x05\x64\xb0\x81\xcd\xb8\x64\xc7\xf8\x59\x17\xcb\x59\xf6\x25\x9b\x05\x2d\xc1\xce\x58\x6d\x86\x8c\xd1\x87\x82\x98\x42\xb1\x09\xa1\x2b\x01\x97\xa4\x06\x21\x3e\x54\x99\x39\x41\x64\xef\x72\x74\x05\x85\x50\xa7\x69\x76\xb6\x3a\xff\xc8\x6b\x89\x38\x9d\x08\x1b\x0d\x5b\x12\x19\xf5\x40\xb1\x1a\x27\x2c\x0c\x91\x67\xd3\xf2\xb0\x9c\x7a\x86\x98\x70\x14\x89\xa9\x21\x1d\xe5\xb3\x22\x06\x99\x1f\x11\x30\x03\xc6\x01\xd9\x2e\x20\x84\xb2\x23\xbf\x74\x4d\xd9\xf4\x62\xd2\x47\x02\x60\x52\xc4\xc8\x12\x14\xea\x6b\xa4\x4f\xf8\x45\x66\x6b\xbe\xac\x78\x7c\xd2\x28\x35\xf4\x41\x2b\x58\x74\x18\x1d\x46\x63\x37\xe3\x24\x1c\x31\x71\x66\x97\x2c\x93\x62\x61\xa9\x45\x5b\x16\x45\x4d\x31\xd7\xf8\x2d\xcf\x7e\xc3\x1e\x32\xb8\x40\x3b\x1f\x6e\x11\x64\xb6\xe7\x0d\xc2\xc6\x9c\x18\x37\x62\x17\x5f\x44\x88\xed\xa8\xbd\x3e\x35\x45\x32\x51\x4d\x12\x96\x84\x37\x0a\x5c\x49\x1f\x8b\x01\xeb\x04\x3f\xbc\xbb\xeb\x58\xdb\x36\x79\x14\x9a\x4d\x87\xa2\x73\x6b\xea\x58\x30\xb8\x50\x3c\x95\x76\xca\xa3\xa5\x1c\x5a\xb5\xd4\xae\xaf\x86\x33\xc8\x4e\xd3\x0c\x44\xa7\xb6\x6c\xcd\x16\xff\x59\x92\xbf\x28\x17\x17\xf3\x08\xc9\x76\x8c\x55\xfc\x10\x24\x69\x2a\x1b\x0a\x8e\x03\x54\xa9\x57\x09\xc0\x40\x6e\x2f\xe6\x03\x6d\x22\x53\xb2\xc7\x24\x78\xe3\xc3\x13\x76\xb2\x8d\x11\x8f\x13\xb8\x35\xa1\x14\x0a\xff\x1f\xea\x1b\x58\xd8\x06\xbf\x0f\xb7\xaa\xb6\x52\x4d\x9b\x5d\x3b\x70\x98\x5b\x19\xf6\xfd\xb3\x62\xfb\xfa\xc2\xc2\x19\xe0\xae\xa5\x5f\x8b\xd1\x1e\x88\xd5\xb6\xf3\x27\xdc\x6a\x2b\x78\x8f\x96\x7a\xa0\x93\xcc\x90\xf4\x39\x4a\xf0\xc4\xb2\x37\x22\xd3\x77\xfa\x32\xde\x22\xbc\xfd\xbf\xad\xfe\x5a\xad\xfe\x58\xc2\x3d\x85\xb6\xf9\xfa\x66\x80\xd2\xee\xcb\x9a\x04\xc3\xee\x0b\x77\xb6\x54\x98\x70\xc2\xeb\x99\xd9\xed\xe6\x7d\xbf\xb7\xcd\xfb\x60\x77\xd9\x16\x80\x76\xc7\x6c\x0b\xbf\x3f\xec\x66\x9d\xe8\x33\x08\x74\xec\xf3\x8e\xb6\xb1\xcf\xf3\x0c\xfa\x73\xdc\x8f\x8e\xb1\x9f\x77\x1a\xd1\x4d\xfa\xb3\x0f\xaf\x36\x9a\xfd\x01\x38\x9c\xda\xf6\xaa\x1b\xc2\xdb\xe1\x97\x4e\xa7\xd8\x47\x1e\x83\xcc\xd3\xd7\x72\x1f\xbb\xd5\x8a\x69\x31\xf3\xb5\x19\x5f\x19\x97\xd9\xe7\x55\x0e\xda\xbf\xab\x59\x26\x23\x2e\x07\xa1\xdd\x80\x16\x05\xf9\x4b\x3c\xd0\x02\xa1\x20\x1c\x6a\x68\x5c\x9f\xb3\x7c\x92\xc5\xe3\x13\x94\xf8\x19\xcb\xb2\xcb\x1c\xf1\x19\xbb\x47\x78\x3a\xc0\x43\x4e\x7a\xac\x11\x69\xee\xa2\xb5\x0a\x85\x44\xee\xbd\xb9\xdf\x54\xdb\x85\x2c\x93\x4e\xa9\xe7\x92\xaa\x2e\x57\x93\xba\x90\xd2\x25\x7a\x08\xe5\x19\xf3\x64\x49\x0f\xb5\x3f\x91\x80\xeb\x34\x51\x7c\x5c\xa5\x74\xca\x4f\xe1\xae\x25\xe7\x54\x1a\x26\x8a\x23\x38\x99\x5c\x64\x1a\xcc\x95\x8a\x8d\x98\xc6\x87\x2d\x54\xf8\xf8\xfe\xc9\x9b\x0f\x2f\x3f\xbe\x7c\xfb\xe6\xc3\xe9\xcb\x37\x1f\x9f\xbf\x7f\xf3\xe4\x95\x36\xa5\x43\xee\x72\x56\x9c\xe3\x10\x0d\x5f\x15\xe7\xe7\x10\x3e\xf8\x6c\x75\xde\x34\xd1\x0a\xde\xc2\xdc\x37\x61\xc7\x29\x1c\x73\xff\xad\x9c\x48\x86\x51\x55\x27\x25\x48\xa0\x2c\x17\x4e\xce\x30\x6e\x37\x74\x7e\x7b\x91\x0d\xae\x6a\x5b\x95\x79\x94\xb3\x4a\x98\xe5\x3c\x99\x99\xae\x1c\x75\x62\xa0\x1c\x23\xa9\x20\x54\x9e\xc8\x07\x4a\x6f\xac\x61\x93\x89\x00\x03\x0b\xd1\xd0\xe7\x68\xca\xbc\xfc\x46\xcf\xf8\xb5\xb6\x15\x5c\x5d\x8e\x23\x45\x33\xe4\xfa\x0e\xc3\x91\x8e\x91\xa5\xbd\xef\x0d\x6c\x17\x7a\xb3\xe9\x50\xf9\xd7\x43\x47\x79\x21\x53\x13\x63\x43\x13\xc7\x81\xd2\xea\x0c\xc2\x35\xcb\x51\xed\xa8\xa9\x87\x21\xd0\xd5\x6a\x58\xd0\xd6\x49\x7d\x82\xe3\x1c\xc5\xae\xe8\xb9\x0f\x83\x8f\xa2\xd6\x0b\x0e\x27\x0e\xf8\x2b\x74\x5e\x02\x7b\x57\x6e\x90\x45\x51\xe7\xd3\x6b\x79\xfc\x50\x58\x8f\x60\x55\xce\x82\xd0\x27\xdf\xae\xcb\x5c\x2c\xf1\x28\x30\xf0\xd0\x73\x6c\xed\xa1\x20\xb4\x77\x51\xb8\x36\xb6\xca\xac\x38\x1f\x04\xba\xa2\x2c\x45\xa1\xce\x37\xc1\x3e\x23\x40\xc3\x53\x15\x33\x86\x3a\xba\x1f\x7c\x13\x84\x4d\xbb\x6f\x43\x23\x82\x52\x5a\xe8\x06\x06\x81\x2a\x12\x44\xe3\x55\x39\x3b\x09\x9b\x16\xfb\xb3\xce\x5a\x78\x91\x60\x67\xeb\x32\x4e\x3d\x36\xd8\x92\xf9\xad\xad\x46\xee\x44\xa3\x97\xb2\x69\x51\x19\xcf\xb4\x24\xf9\xfe\x93\x25\xad\xbf\xf5\x54\xbd\x64\xd8\x1e\xd4\xb7\x9e\xb7\x16\x93\xb6\x8e\x01\x67\x25\xcc\xf1\x6e\x73\x99\xb3\x2a\x67\xc6\x48\x48\xb8\xee\x71\xe5\x18\xa8\x8d\xa9\xdd\x3b\xa3\x2b\xcc\xbc\x42\x41\x82\x6e\x52\x9b\x25\x6c\x67\x96\x27\x6b\xd8\xd6\x26\xcf\xb4\x85\xe4\xdd\xa2\x0d\xb9\xc1\x36\xef\x22\xa9\x60\x4a\x2c\x8c\xbd\xa6\x7e\x12\x96\x40\xc4\x64\x55\x59\xdb\x39\x3e\x84\x4c\x88\x3d\x66\x0b\xbf\x8e\x99\xe6\x17\x53\xba\x84\x01\xc2\x03\x3c\x76\x4e\xf3\x31\x07\x55\x61\x5e\x11\xa0\xdf\xc7\xbf\xe3\xc3\x93\x26\x72\x25\x3a\xfe\xe6\x50\xb4\x03\x6d\x66\x57\x79\x25\x8e\xd2\x8d\xad\xe6\xd3\x81\x84\x0d\xd7\xf2\xd7\xf8\xf0\x04\xbd\xf2\x32\x15\x3d\x29\xa9\x02\xd2\x18\x29\xc8\xa3\x13\xf6\xca\xa6\x85\x2c\x4c\xf8\x14\xae\xb9\x82\x5a\x3b\x2a\xcd\x86\xfc\x78\x0c\xd2\x4a\x5f\x1b\x27\x28\x94\x2a\x16\x59\x07\xca\xbe\x82\x62\x2a\x0d\x56\xaa\x35\xb4\xa4\x97\x61\xe8\xf0\xf8\x8c\xf2\x3c\xf8\xe8\xf7\xf7\x2c\x7d\x99\x8b\xa4\x1a\x04\xda\xc7\x71\x95\xd5\xc0\xf6\x08\xf8\x03\x38\x8d\xa4\xd5\x9b\xe7\x30\xef\x28\x26\xf1\x89\xd6\xe8\x61\xb1\xce\x81\x54\xc0\x73\x3f\xe8\xff\xca\xf7\x8f\x38\x96\xda\xdf\xb2\xb2\x7e\xdf\x6c\xd0\x0c\xdb\xfd\xca\x08\xb0\xe9\x3e\x86\x68\xbe\x78\x5f\x33\x2e\xa2\x3d\xcd\x05\xec\xa9\x26\xed\x4a\x43\xc5\x56\xc7\xbe\xb0\x0b\x0e\xb8\x16\xb4\x2a\x55\x5b\xcb\x51\xb1\x2c\xdc\x8c\x3a\x6b\x36\xe3\xe8\xa0\xaf\x3f\xa5\x06\x8c\xaf\x25\x6a\x06\x25\xee\x34\xe1\xfc\x29\x49\x87\x7f\x34\x5d\x77\xb3\x47\x28\x05\xa2\xe2\x3c\x58\xee\x17\x5d\x80\x81\x38\x39\x30\xb6\x0f\x9c\x66\x2f\x08\xd8\xb1\xe3\xca\xb2\x45\xbc\x6e\xda\x79\x57\xe2\x0e\xdf\x7b\x4d\x5e\x94\x11\x14\x6a\x6e\xa1\xe7\x56\xee\x9c\xdd\x96\xa9\x5a\x8a\x60\xe8\x4f\x94\xab\x7d\x11\x97\xe2\xb1\x76\xd1\xc7\x06\xba\x63\xcf\x16\xa8\x36\x15\x9a\xb1\xec\xcb\x46\x67\x29\xe7\xed\xf2\xc1\x1d\x1f\xae\xac\x2d\xa1\x15\x49\x79\x5f\x19\x73\xbb\x25\x4a\x3a\x62\xcf\x36\xbe\x4c\x1b\xaa\x55\xbf\x3a\xe2\x63\xaf\xd5\x19\x49\x60\x90\x49\xb0\x8e\x24\xc6\xe7\x23\xb5\x49\x2a\xd8\xbf\x19\xbb\x8f\xe2\x34\xc8\x63\x5d\x2e\x07\x1e\x80\xce\x58\x1f\x03\x64\x8e\xd2\x42\xb1\xf1\x31\x5b\x31\x2c\x48\x05\x1c\xf1\xd4\x60\xd8\xc8\x16\x56\x6e\x29\x74\xd6\x4d\x90\x18\x02\x4a\xf1\xca\xac\x99\xb0\x31\x82\xe3\xea\x18\x13\xe4\xf8\xad\x78\xaf\x52\xbc\x18\xe9\x02\x2e\x56\xa5\xa7\x68\x37\x5a\xba\xb1\xb0\x69\xa8\x16\x83\x8b\x8f\xed\xdb\x04\x1b\x73\x13\x92\x00\xc4\x4c\x72\x2e\x8d\x99\xf9\xe1\x3b\x6c\x52\x9e\x57\xe1\x5a\xfc\x1f\x83\x70\x02\xdd\xda\x41\xea\x48\xfc\x3f\x3e\x3c\x89\xe9\xef\xcd\x4d\xf0\x20\x50\xc6\x8e\x32\x95\x5f\x33\x2b\xa6\x35\xf4\x76\x31\xbb\xa6\x98\x8d\x77\x32\x53\x86\x17\x82\xa2\x02\xc7\x19\xba\xfa\x27\xe5\x39\x22\x20\xfe\xd3\xde\x2c\x41\xb5\xdf\x07\xdc\xef\x7b\x93\x6d\x53\x29\xf3\xe9\x43\xba\xa5\x35\xcd\x13\xdd\x5e\xc2\x7e\x47\xc5\x89\xd5\x6c\xd6\xf0\xa7\x15\x0f\x8e\x86\x6a\x25\xbc\xd8\x3a\x35\xa2\xfd\x8e\x1b\xb9\x53\x40\x3b\x4a\x8d\x9a\xb8\x19\x7a\x41\x9c\x03\xb4\xb5\x53\x7f\xe8\xca\xf4\x68\x0f\x19\x3a\x4d\x1e\xe5\x22\xe8\xbb\xa1\x02\xe4\x35\x94\x3e\x81\xa7\x3c\x58\x56\xc3\xd5\x02\x63\xc0\xe2\x3b\x32\x6a\xae\xa1\x18\x48\xc9\x80\x64\x37\x95\xb5\x5f\x84\xea\xa4\x00\x36\xfc\xbc\x44\x2f\x3e\xcc\xeb\x0a\xd7\x32\xff\xd4\xa2\x02\xca\x9f\xa3\xac\xc9\xff\x94\x5d\xdb\x2a\xa1\xf9\x62\xb9\x22\x7d\x70\xfe\x40\xf5\x29\xbb\x3e\x41\x95\x3a\xc4\x65\x9e\x2c\x21\x8d\xb4\x61\xdb\x54\x27\xfe\xbc\x28\xb3\x49\x71\xbe\xc8\xff\x91\xa5\x88\x19\xea\x77\xf6\x82\xfd\x4f\xd9\xf5\x7e\xd0\x5b\x92\x07\xa0\x5e\x52\x31\x7d\xe3\x9e\xbc\x26\x04\x21\xf7\x31\x63\x29\xc1\xe2\x7b\x96\x4f\xc3\x54\x77\xc2\xe7\x17\x68\xc3\x0a\x8d\x59\x8b\x96\x1e\xf4\xbb\xb2\x98\xe7\x95\xa1\x73\x2c\x9f\xdb\xfc\x77\x9d\x2a\x1c\x39\xa5\x87\xf5\x45\xb6\x18\x80\x8f\x1a\x1d\x20\x45\x0c\x17\x4e\x17\xfc\xbc\xb9\xc1\xbf\xa8\x4e\xc0\xf4\xb9\x74\xaa\xe0\x4c\xf8\xf0\xfe\xf9\xfd\x2b\x18\x74\xb1\x69\xa4\xae\x8f\x09\xad\x17\xfc\x93\xb3\xa2\xac\x41\xe4\x23\x1d\x47\x88\xc9\x03\x68\xa9\xe5\x89\x1f\x51\x00\xb3\x79\xdc\x7b\x57\x16\x93\xac\xaa\x30\xb9\xea\x4d\xcb\x62\x4e\xe2\x64\x6d\x8b\xee\xf4\xb4\x89\xac\x45\xad\x69\xf1\x2c\x4b\xa6\xef\xf5\xfd\x54\x45\x74\xa5\xf5\x35\x36\xf2\x4f\xac\x4b\xb8\x1f\xa8\x41\xf7\x11\x4b\xc1\x65\x91\x1d\x86\xb5\xc1\xbc\xc5\xe2\x35\xe9\xdc\x47\xa4\x83\xdf\x30\xa1\xe4\xcf\x06\x55\x89\x60\xb4\xff\xe4\xe8\x22\x96\x3f\x57\x43\x35\x11\xa5\x24\x14\xb0\x8b\xcd\x7e\x3a\xca\xdf\x4e\x85\x2d\x0f\xc6\x1c\xce\x2d\x34\xce\x4f\xc8\x54\x5a\xa1\xa3\x19\x8e\x01\x07\x97\xb8\x85\xd1\x36\xda\xed\x8a\x30\xc0\xab\xce\x00\xc7\x48\xaa\xd4\x86\xca\x8e\x81\x96\xfe\xe7\x65\x15\x69\xcd\xf7\x76\xcb\x86\xe8\xb4\x9a\x5c\x64\xe9\x6a\x96\x71\xd1\x1f\xbb\x29\x6b\x93\x02\x8c\xc8\xff\x1e\xa5\x02\x9b\x84\x86\xd2\x0d\x32\xb0\xe5\x1f\xf3\xb9\x18\xa9\xd5\x62\x28\x1b\x7b\x2b\x18\x0e\x7a\xba\xd0\x3b\xa1\xa2\x4b\x67\x00\x7a\xb0\xbc\xda\x20\x6a\x41\x84\x74\x66\x77\x43\x5e\xf9\x44\x6e\x39\x82\xb4\xa4\x99\xb9\x0b\x43\x29\xca\x00\xc2\x26\x28\x8f\xe5\x1d\x68\xb9\x63\xe3\x33\xc0\x73\xc7\x09\xa2\x65\x0e\xb1\x74\x2b\x4c\xd3\x36\xc8\xc0\x01\x40\x3c\x06\x27\x5e\xc8\x5b\xb4\x22\xf2\x38\x44\xd2\xf7\x1e\x74\x69\x20\xb5\x98\x94\x89\xd9\xce\xd6\x65\x23\xd2\x04\x83\xca\xd0\x6f\x01\x96\x9f\xc0\x81\x25\xae\xf2\xca\xa4\xac\x3d\x3a\x89\x02\xd1\xb7\x57\xdb\x6a\x6d\x2b\x83\x35\xab\x90\xba\x98\x7a\x6d\xd3\xac\x4b\xa6\xe3\x5a\xc0\x30\x63\xe3\xca\xb9\xeb\xa6\x61\x7a\x31\xf4\x90\x06\xcb\xe1\xc9\x59\xf1\x25\x1b\xb0\xf5\xc1\x97\x8d\xe9\xea\xd9\xe4\xa1\xba\x98\x22\xbe\xde\x5e\x14\xab\x85\x8c\x0d\xa9\xa9\x9a\x97\x09\x1a\xe5\x8f\xe3\xc3\xd1\xc1\x41\xee\xb4\x67\x2b\x51\x13\x15\x63\xa9\x5c\xad\x7a\xcf\x6e\x1e\x35\xe1\x74\xa2\x56\xb8\x76\x10\x05\xb5\x7b\xee\x8c\x47\xc5\x0e\x43\xea\x67\x22\xb2\x7f\xa4\xf4\xb9\x43\x70\x8a\xb3\xd2\x52\x49\x14\xd3\x18\x9e\xe7\x98\x06\xa4\xe1\x10\xb5\x8a\xd7\x97\xf9\x6c\xf6\x1e\x25\x23\x96\x7b\x97\x36\x4a\xc1\x3e\x94\xa6\x98\x8f\x60\xb6\x55\xd0\x44\x70\x46\x1f\x9b\xbc\x45\x1b\xd5\xe0\x92\x61\xb7\x65\x54\x0e\x2c\xaf\xa5\x76\x58\xbc\xf5\x12\x33\xef\xcf\xd1\xe4\x22\x9f\xa5\xac\x45\xf8\x06\x76\x45\x1d\x8e\x82\xed\x4a\x9f\x2a\x38\x91\xe4\x14\x96\x21\x1a\x70\x8b\xb9\x75\x90\xfa\x5d\xfb\xfb\x85\xaf\x10\x8e\x97\xe4\x62\x8c\x89\xc5\x67\x33\xdd\x7f\x58\x70\xd0\xc4\x9f\x92\xea\xc7\x2c\x5b\x3c\x43\xa9\xd9\xc0\x1d\xba\x88\x7b\x6a\x27\x2f\xfc\xe1\x66\xfc\x3c\xa5\x2c\xfc\xf8\xfe\x87\x95\x07\xd9\x4f\xc4\x75\x76\x1c\x40\xcf\x7a\x97\x17\xf9\x2c\x13\xac\xb5\x60\xd9\xf2\xc5\x39\x4e\xf0\x71\x2f\xd8\xf7\x3a\xa3\x44\xe1\xb2\xe2\x40\x91\x69\x9c\x67\x55\x95\x9c\x67\xe1\x5a\x55\x8f\x36\x8b\x66\xae\x66\x49\xab\x1a\x08\x8a\x17\x1a\xf3\x98\x9c\x0d\x92\x0d\xe1\x9c\xaf\x5c\xd8\x34\xc6\x5b\x0f\x56\xa6\xf9\xec\x48\x15\x0a\x9b\x88\xce\xa5\xcd\xfb\xeb\x17\x5c\xf0\xb4\x7d\x77\x5c\xf2\x3a\xba\x83\x5c\xf4\x76\x3d\x5b\x2e\x7b\xa7\xd8\x88\xd9\x89\x30\x9b\xcc\xfc\x4b\x21\x99\xc7\x3d\xdb\x84\x05\x3d\x6d\xde\xdb\xbe\x50\x7d\xdb\x71\x67\xb0\x88\x17\xb4\x2b\x78\x94\x06\xcf\xb0\x32\xcb\x19\x5a\x0e\x49\x9d\x2f\xce\x35\x54\xb4\xb0\x1f\xca\x58\x11\x89\x3b\x0c\x23\x3a\x74\x84\xdd\x63\x36\x12\x7b\x2b\xd6\x72\x47\x27\xc6\x4a\xa4\x5d\x68\x39\x8d\xbd\xa1\x4b\x1b\x8f\xf7\xf0\x43\x10\x1c\x7b\x01\xf7\x83\x61\x70\xc7\xa8\x22\xaa\x6b\xb1\x42\x6a\xdf\xd7\xc9\xfd\x80\x82\x84\x8c\x5a\xa6\xdc\x1e\x2a\xc6\x6c\xc9\xa4\xa6\xf1\xb5\x76\xe7\x4a\xcd\x28\x1d\xfe\x1a\xf4\x2c\x6b\x41\xbc\x7c\x95\x56\x3e\x98\xcc\x67\x51\xf5\xf4\x48\xfe\xbb\x06\xd6\xfb\x10\x73\xe4\x02\x10\x37\x37\x16\x00\x17\xbb\x87\xec\x15\x8e\xf8\x7b\x3c\xcd\x0d\x3e\x2b\x3f\x5f\x14\x65\xf6\x22\xc9\x67\x2b\x74\xe6\xc6\xbc\x02\x81\x80\x6d\x88\xa2\xa4\xd0\x63\xe4\x96\x4f\x07\x46\x71\xa6\xc3\xe2\x93\xd0\x3c\x4d\x16\xdf\xd4\x12\x95\x1e\xba\x32\xef\x7d\x23\xe3\xc0\x7c\xd3\x3b\xcb\x26\xc9\xaa\xca\x7a\xd7\xc5\xaa\xec\x25\xcb\x65\xef\x22\xa9\x44\x89\x69\xbe\xc8\xab\x8b\x2c\x65\xb7\x7e\x71\xd2\xc0\x83\x7b\x5e\x57\xbd\x69\x5e\x56\x35\x0e\xe1\xb0\xf7\xb1\xd0\x2d\x2c\x64\x23\xc5\xa2\x97\x66\x55\x0d\x1b\x46\x4e\x5a\xd5\x4b\xc1\x9e\xb2\x97\xb0\x7a\x23\xd1\x78\x6f\x92\x2c\x7a\x82\x69\xeb\xfd\x1d\xfc\xbe\x0e\xc2\xbf\x8b\x1a\xc0\xd0\x46\xd3\x89\xbf\x93\xfb\x33\x69\xaf\x23\x4d\x71\xc0\x5e\xe6\x01\xf3\x7a\xf9\x40\x7b\xbb\xfc\x7b\xef\xa2\x28\x3e\x55\xc3\x00\x85\x72\xa0\x90\xfb\xd7\xa4\x42\x0a\xb8\x13\x8b\x9b\x1f\x1c\x6c\x66\x71\xe5\x23\x47\x0b\x93\x2b\x5f\x2b\xa4\x57\xf9\x7e\xdf\x4e\x91\xaf\x31\x1e\x60\xcc\xa2\x23\x92\x32\x71\xf9\xc4\x92\x8b\xb5\xbb\xa7\x43\x6d\x29\x4a\xaa\x0d\x85\x4d\x6e\x56\x36\xdc\x91\x49\x4d\x83\x70\x0b\xc5\x5f\xcc\x73\x9e\xd5\x74\xbf\xbf\x67\x2d\x54\xff\x0a\x7d\x53\xd4\x17\x62\x49\x60\x7f\x52\x98\x50\x67\x9d\x0e\x7b\x2f\xa7\xb0\x4c\xd2\x3c\x25\x48\x06\x18\x81\xe0\x08\xd9\x0e\x58\x48\x67\x59\x0f\x96\x75\xda\x3b\xbb\xee\x21\x8a\xa2\x09\x31\x18\x28\xdb\xd2\xcb\x94\x86\xb1\x97\x2f\x7a\x09\xbb\x93\x45\x50\x01\x14\xd2\xf8\xd4\x45\xef\x6c\x75\x76\x36\xcb\xc0\x8a\x4b\x6d\x74\xae\x17\x83\x44\x85\x14\x0e\x96\x4b\xdb\x10\xaf\xec\x36\x61\x33\xa2\xff\xc0\xe6\x37\xea\x30\x4c\x5c\x73\x26\xa0\xea\xd0\xbc\xc1\xc0\xef\x9d\x0a\x32\xd0\xd0\x20\xa0\xc2\x22\x23\xc8\x17\x26\xf6\x21\x2c\x0b\xa6\x33\x3c\x30\xb2\x23\xa3\x30\x5a\x51\x75\x00\xb0\x28\xd8\xaa\x59\x75\x02\xdd\xba\x6d\x5d\x43\x17\x02\x1a\x2a\xca\x71\xcf\x7a\x24\xfa\x61\xc3\x07\x0c\xbd\xef\xc0\x2d\x7d\x40\x7c\x0c\xf9\x20\x4f\x96\x6d\xa1\xb6\x3d\xda\x38\xca\x80\xaa\x94\xdc\x10\x84\x60\x7a\xaf\x72\xb7\x3d\xde\xc5\xa5\xf3\x00\x6d\xcf\x0f\x80\xb6\x31\xfe\xea\x54\x64\xa2\x46\xdd\x53\x54\xdd\x81\xf3\x27\x0e\x74\x3a\x86\x66\x20\xa2\x40\xa5\x88\x7c\xff\xd5\x2e\x4c\x3a\xa6\x3f\x8d\x3c\x80\xaf\xb2\xe4\x4b\x26\x01\xe4\xe3\x9e\x1c\x85\x2a\x1e\x9f\x8c\x4c\x75\x21\x44\x84\x7f\x90\xe9\xb8\x67\x78\xf1\x4f\x83\x24\x3b\xad\x66\xb1\xa9\x8f\x0d\x4a\xa6\x8e\x72\x10\x85\x1c\x34\x58\x49\x1e\x83\x2c\x62\x25\x98\xa4\x76\x94\x7f\x6f\x23\xaf\xc4\xb4\xfb\xfb\x6a\x64\x55\xe6\x38\x3f\xc1\x37\x45\xd0\x81\x6b\xcc\xf0\x59\x98\x16\x36\xe1\xc8\xa9\x13\x6e\x3e\x6a\x95\xc8\x7c\xd1\x13\x2b\x36\xa0\xc9\xa0\x34\x91\xde\xb0\x7a\xb5\x99\x4c\x01\x1a\x08\xd6\x17\x62\xd0\x15\x59\x02\x56\xbb\xca\xe0\x83\x82\xa5\x0d\x92\xa3\x28\x79\xe8\x46\xa3\x48\x8e\x3c\x82\xe9\x7c\x3a\x48\x8e\xc6\xf9\xc9\x5e\x1c\x27\x0f\xc7\xf9\x49\x97\x88\x44\x57\x78\xb4\xc9\xc0\x5e\x31\x3a\xb6\x85\x3d\x46\x2f\x03\x97\x7f\x9e\x20\x80\x51\x81\x7c\x20\x66\xb2\x97\x5d\xa4\x25\x70\x27\x1e\x70\x18\x6a\x18\x39\x26\xcf\x50\x70\x58\xdd\x6c\x18\xae\xcf\xca\x2c\xf9\xd4\x18\x55\x11\x3b\xd6\x88\xb6\xb8\x4c\x5c\x45\x5d\x23\x30\x70\x7f\xe1\x43\x82\xb9\x3f\xa9\x2f\x86\x3f\x17\xf9\x02\x3a\x25\xae\x5a\x5d\x81\xc0\xdf\xd3\x36\xb0\x2d\xb5\xd0\xc6\xc8\xb2\xcd\xf2\x44\x1f\x63\xb6\x5a\x1b\xe2\x94\xcd\xc5\xc5\x63\xa7\xf8\x65\x5a\x89\x73\x37\xc3\x28\xca\xad\xcb\x64\xf2\x29\x4b\x4f\x4d\x9b\x2f\xdb\xf2\x6a\x75\xd6\x99\xaf\x0e\xd3\x36\x00\x83\x12\xb4\x80\x88\x06\x4e\x97\x65\x71\xd5\xda\x0c\xf6\xa4\x1b\x46\x0c\xf6\x69\x77\x97\xb3\x64\x72\xd1\x5d\x89\xe0\x95\xbf\x64\x1b\xc6\xa4\x3d\x38\x7e\xb7\xa1\x5a\x9a\x4d\xb3\xb2\xe4\xb6\x68\x66\xfe\x2c\xf9\xc7\x35\xdc\xbc\x5b\xa3\xce\x79\xd1\xa2\x4c\x5c\x42\xe2\xbc\x6a\x87\x58\x5e\x77\xe5\x6b\x73\xbc\x36\x88\x69\x99\x65\xff\xe8\x02\x28\xc0\x60\xb3\x0b\xa2\x2d\x72\x9e\x09\xd5\x3a\x54\x94\x3f\x5f\xd5\x60\x36\xb8\x19\x65\x09\xd9\x39\x76\x78\x11\x27\x2e\xff\xb4\x5a\x2d\x05\x3d\xd8\xda\xa2\xd0\xcc\x5e\xe2\xdb\x6c\xcb\x3a\x23\xa0\xaa\x28\x6b\x2f\xd6\xd2\x72\x84\x76\x85\x63\x63\xe9\xc0\x95\x59\xba\x9a\x64\xbb\x03\x9e\xce\x93\x49\x59\xf8\x28\x91\x0a\x2c\xa1\x70\xd0\x16\xf6\x1d\xc0\xb4\x47\xb7\x84\xee\x00\xcb\xae\xea\x07\x65\xf5\xc5\x8d\xf0\x28\x32\x5a\x76\x98\xc8\x52\x2f\x3c\xff\xb6\xb8\xdc\xc9\xe2\x92\x25\xd8\x88\x1e\xd9\x98\x3e\xb4\x31\x7d\xe8\x8c\xa5\x8d\xe9\x43\x1b\xd3\x87\x36\xa6\x0f\x6d\x4c\x1f\xda\x98\x3e\xb4\x31\x7d\x68\x63\xfa\xd0\xc6\xf4\x91\x8d\xe9\x23\x1b\xd3\x47\xce\xb4\xdb\x98\x3e\xb2\x31\x7d\x64\x63\xfa\xc8\xc6\xf4\x91\x8d\xe9\x23\x1b\xd3\x47\x36\xa6\xdf\xda\x98\x7e\x6b\x63\xfa\xad\x8d\xe9\xb7\x8f\x3a\x6d\x65\xff\x63\x6b\x63\xd9\xbc\x7a\xfe\x79\x95\xcc\x6c\x4b\xd9\x21\xa5\xfb\x63\x41\x7a\xac\x35\x89\x7f\xb1\x4d\x66\x37\x46\x8c\xf4\x84\x64\x7c\xa3\x64\xb6\x1b\x22\x66\xb6\x59\x9d\xfe\xde\x05\xfd\x88\xbc\xce\x13\x41\xcf\x36\x19\xcf\x7e\x58\x9d\xb9\x70\x1e\x0b\xda\xa7\x4a\xbe\xb9\xc9\x76\xf6\x89\xe6\x81\x36\xc6\xd4\x84\xa6\xdf\x89\xa3\x63\xa3\x25\x2d\x76\xdd\x03\xeb\x99\x9f\xa7\x45\x99\x6d\x19\x40\xf3\x79\x32\xb9\x70\x07\x00\x2c\x69\x55\x96\x02\xf4\xb4\x2e\x01\x21\x8b\x66\x54\x30\x55\x9e\x3a\x3d\x93\xfa\xc1\xb2\xbb\x3e\xf2\xcc\x26\x4c\xfc\x07\x38\x08\x3c\xc6\xcb\x9e\x29\x7d\x46\xdc\x44\x6c\xd3\x36\x1b\xb0\x58\xbc\x2a\x12\x13\x4c\x50\xbc\x21\xa6\x4b\xdb\x6a\xf1\xfb\x4f\xe2\xda\xef\x02\xf2\x5c\x8d\xab\xdb\xf5\x87\x9e\xa9\x7f\xaa\x18\xb8\xd8\x26\xa8\x2e\x28\x72\x72\xb1\x4d\x68\xdb\xcd\xbc\x63\x9b\x04\xdb\xa0\x2f\x24\x6f\x17\xdb\xb4\x79\xa8\xb2\x10\xf0\xfd\xdb\xff\xfb\xfc\xcd\xe9\xf3\xf7\xef\xdf\xbe\xf7\xc0\xb2\x5c\x5a\xa6\x92\x25\x8c\x6d\x1a\xbf\x7d\xec\xd6\x87\x9e\x65\x20\x67\xf5\xb5\x60\xa9\x62\xfb\x74\xb0\xa1\x5f\x23\x1f\xd8\x36\x20\x9e\xc5\x40\x25\xdc\xc9\x7b\xe4\xd9\xe3\x1f\x81\x83\xc4\x0e\x7c\x40\xfe\x31\xb6\x4f\x9f\x6d\x4c\xe1\x1f\x79\x66\x9b\xb4\xfd\x60\x43\xb9\x9d\x7d\xe4\x99\xf6\x0f\xc4\x5e\x7a\xa0\x3d\x33\x0f\x6c\xde\x53\x9f\xfb\x01\x71\xde\x0d\x8d\x6c\x4d\xa4\x64\x8a\xd7\xc7\x01\x14\xf4\x82\xe1\x26\x02\x5e\xd4\xdf\xe4\xef\xc4\x36\x32\xf2\xd1\xb6\xde\x48\xf2\x37\x2a\x8a\xfa\xe1\xd0\x66\x7e\x35\x8f\xed\xb3\x7a\x58\xad\xe6\xe8\x58\xc1\x1e\x28\x91\x39\xcf\x17\x14\xdb\xfe\xca\x93\x99\x5c\x8d\xa4\x4a\xa4\x27\x73\x89\x6d\x3a\x0b\x01\x1a\x2d\x4a\xe5\x66\xe2\x59\x3e\x9d\x7a\x20\x30\x43\x36\xf0\xe3\xb5\xb7\x89\x1f\xaf\x25\x80\x7f\x40\x08\xcc\x18\x85\x69\x3e\xab\xad\xdd\x05\x70\x98\xce\x40\x7c\x6d\xca\x1c\x06\xd6\xde\xb2\x99\x0f\x45\x56\x8b\xfc\xb3\x0b\x28\x52\x65\x76\xe1\x99\x06\x48\x26\x5b\x57\x92\x23\xb9\x40\x2a\x8b\x2f\x51\x6f\x54\xe7\x47\x1e\xf2\x80\x87\x63\x5b\x81\x96\xe3\xdf\x03\x2a\x98\xb9\xa1\x15\x29\x5a\x7f\xba\xfb\xd1\x82\x07\x00\x5c\xef\x1f\xfe\xf2\x2e\xb6\xb9\x42\x8e\x04\xca\x7d\x25\xe3\x45\x7f\x55\xea\xf2\x1a\x7c\x9e\xd2\xb7\x64\xf3\x24\x5b\x87\xa9\xc0\xd8\x89\xff\xe8\x1b\x29\x9d\x3e\xb1\x28\x99\x9d\x4b\xfa\xa7\xca\xa3\x83\x48\xfe\xa0\x74\x93\x00\x19\x5f\x04\xa1\x8f\x1b\x7d\xba\x50\x0e\x3f\x5f\x8c\xe3\x04\xf3\x4d\xba\x6f\x7c\x11\x84\x4b\xeb\x9d\x14\x13\x12\x7b\xce\x3f\x28\xdf\x47\xd6\x3d\x69\x04\x2d\x09\x3a\xfd\xa5\x54\x97\x7c\x3b\x29\x04\xc9\x8e\x4a\xfd\x93\xf2\x4c\x22\x6d\xd2\x64\x36\x7d\x0e\x81\xf4\x13\x61\x2c\x61\x91\x61\x8b\xea\x22\x4c\x0b\xdd\xed\x20\xb3\xcf\xe7\xaa\x46\xbd\x46\xa9\x46\x99\x23\xc8\x6e\x2c\x48\x2f\x4b\x12\x14\x78\x0e\x63\xa1\x93\x92\xab\x58\x90\x59\x23\x09\x1c\x67\x1b\x75\x89\x59\xa9\x70\x1a\x74\x22\x51\x56\x49\x48\xcd\x2a\x7e\xbc\x8e\x91\x7c\x9a\xc9\xaa\x7b\x9c\x68\x32\x10\xa2\x9d\x44\x2a\x9d\x8c\x1f\xaf\x63\x45\x20\x9d\x4c\x55\xb7\x45\x16\x19\x20\x50\x47\x20\x86\x66\x62\xb1\x88\x91\x04\xb2\x64\x4d\x09\x35\xe1\xa3\xbd\x07\x9c\x71\x6c\x73\xc9\x6a\x8d\xc1\x2d\x80\x5d\x9e\xe4\x52\xe7\x77\x24\xfe\x21\xab\x95\xf7\x22\xf9\x43\x91\x00\x79\x0f\x52\xbf\x28\x47\xdf\xe4\xd4\x2f\xb9\x51\xf4\xce\x74\xb6\x24\xbb\x01\xe9\x9f\x06\xf2\x98\xc9\x7e\xcb\x92\x06\xfb\x68\x7c\x29\x5c\xd5\x35\x48\xff\x94\x38\xa9\x7b\x8f\xbe\xe6\xe8\x1c\x6c\x53\xdf\x6b\x64\x0f\xf5\xcd\x86\xfd\x96\x23\x96\xd5\xf1\x87\xac\xb6\xc8\x96\xa2\x58\x94\x4e\x77\x0e\xba\x62\xd0\xc6\xe4\x97\x0c\xe3\x4e\x61\x6c\x75\x75\x02\x59\xdf\xc6\x68\x31\x30\x3b\x81\xcd\x20\x41\x74\xe4\x21\xe9\xb2\x8f\x2a\x22\x12\xe2\xb0\x12\xff\x75\x3e\xa6\xb4\x3d\xa3\xe8\xd7\x8f\x8d\xae\xee\xfc\x6e\xe2\xbc\x12\xf0\xfb\x10\x01\xde\xd9\x19\x19\xc6\xf3\x70\xc4\x2b\x98\xdc\x75\xeb\x7b\xe4\x3b\xec\xdf\xbe\x7f\xf6\xfc\xfd\xe9\xb3\xe7\x2f\x5e\xbe\x01\x67\x1d\x44\x5f\x9f\xbf\xf9\x8b\x93\x75\x73\x33\x66\x46\xe7\x51\xb0\x58\xcd\x66\x41\xa4\xfc\xe2\x47\xd2\xb5\x7d\x14\x28\x89\xaa\x94\x90\xab\x37\x14\x34\x9e\x87\xf7\x25\x26\x5b\x9d\xcc\x92\x4a\x4c\x41\x9a\xd4\x59\x70\xd2\x36\xe1\xcc\x58\x01\xe6\x76\xf0\x25\x42\x77\xb7\x5f\xe2\x38\xd6\x8e\x2f\x0f\x1b\x39\x4a\x47\x32\xf6\xc9\x97\x50\x8d\xdc\x43\x99\x86\x6e\x6a\xf5\x50\xa1\xb1\x05\x94\x8a\x63\x8d\x67\xbf\xaf\x41\x86\x69\x56\x67\x93\x7a\xf0\x85\xfb\x46\xd2\x6a\x6d\x46\xf2\x90\x23\x29\xd5\x68\x1f\x6e\xac\xfa\xd2\x5f\xf5\xd1\xc1\xa5\xb7\xf2\xcb\xe8\x4b\xd8\x48\x23\xaa\xa5\x22\xd1\xce\xd4\x9d\xbe\x7e\xf2\xee\xdd\xcb\x37\x7f\xc4\x10\x9c\x08\x4a\x51\xb6\xca\x54\x3a\xe6\x72\x4a\x8d\xb6\xab\x34\xa6\xb8\x73\x79\x7a\x15\xcd\xb2\x05\xfa\xd5\x4c\xaf\xe8\x19\x1a\x1a\x50\x0f\xc6\xe9\x95\x7c\x8b\x4e\xaf\xc2\x35\xd5\x3f\x06\x98\x71\x9e\x5e\x9d\x9c\xc4\x79\x7a\x25\x63\xfc\xfb\x9b\xd5\xd3\x0b\x91\x68\x63\x59\x09\x24\xe9\x2d\xf2\xd0\xcd\x7d\x78\x22\x5d\x2a\x61\xd1\xef\x35\x9c\x1c\xe9\x83\xa3\xc6\x00\x79\xec\x82\xf4\x8e\x9a\xea\x32\xaf\x27\x17\x08\x16\xae\x27\x49\x95\xa9\x5d\x70\x0c\x5f\xb4\x13\x8e\xc5\xe2\xfc\xfe\xd2\xac\xfc\xcb\xe3\x4b\x56\x95\x5c\xb4\x23\x28\x47\x1b\xe7\x58\xca\x3f\xe3\x2f\xe0\x3c\x66\x96\x3d\x95\x13\x4e\x96\x2a\xf3\xe5\xf7\x87\x66\xb5\x22\xed\xf1\x61\x6b\xcd\xb8\x13\xa1\xe2\x2f\xaf\xb2\x85\xa8\x18\xa7\x44\xa4\x5c\x8a\x94\x4b\x9e\x32\x8b\x5f\x27\xf5\x85\xe0\x9f\x06\x02\x3c\x12\x10\xe4\xf9\x2b\x3e\x1c\x49\x25\x0b\x7c\xa0\x2f\xe3\x38\x3e\xec\xf7\xf3\xef\x67\xe1\xba\x8c\xd5\xba\x1f\xe7\x27\xd1\xe5\x38\x3f\x09\x47\xf9\xfe\x3e\x38\x7c\xd8\x63\xa1\x97\x7a\x25\x8c\xc5\xab\x6c\xf1\x3d\xd4\x6d\x0e\xd1\xab\x6c\xf1\x98\x27\x3b\xdd\x51\x9b\xe8\xd8\xd8\xc4\xde\xdd\x6a\xee\x50\xb6\x2b\xcd\x2a\x81\xf8\xe0\x00\xbd\x59\xcd\xe3\x2f\xc3\xf3\xac\xfe\x98\xcf\x33\xb2\xfa\xbf\x14\x89\x97\x2c\x51\xe0\xf9\x66\x35\xff\x5e\x64\x58\xe8\xbf\x59\xcd\x1f\xf3\x64\x8e\x3e\xd1\xb3\x63\x45\xad\x9a\xce\x33\xcc\xfb\x70\xd7\x71\xa6\x6d\xfd\x98\xb7\xc1\x5d\x2a\x39\x6a\x9d\x25\xf5\xb4\x28\xe7\x56\x72\x21\x7d\xe8\xb6\x38\x8d\xfd\x25\x9e\xca\xee\x7c\xae\x76\x08\x90\x1e\xde\x5a\x7e\xf4\xb0\x5b\x7c\xd4\xe5\x32\xd3\xf7\x24\x02\x7e\x54\x1c\x27\xa2\x98\x8c\x72\x37\xed\xf1\xd8\xf1\x25\xca\xf2\xba\xbc\x9a\x7a\x84\xa8\xc9\xa9\xc7\x37\x64\x71\x4a\xe8\xb0\xe6\x37\xf9\x8b\x54\x47\xb8\xf7\x0a\x29\xa3\xdc\x2d\xd1\x31\x87\x7f\xdc\xb8\x31\x09\xf3\xb7\x05\xda\x62\xa2\x7a\xed\x7c\x02\x67\xec\xc5\x6a\x31\x71\xfd\x57\x4b\x87\xc5\xca\x94\x79\x6f\xb2\x1c\x9e\x5e\x24\xd5\x4b\x22\x2c\xaf\xb3\x3a\xc1\x46\x0c\x50\x50\xb3\x82\x10\x85\x02\x5e\x0e\x5a\xfd\x53\x76\xcd\x02\x14\xf2\xe4\x70\xcd\x86\x1d\x2b\xe4\xd9\x5c\x7d\x6d\xb2\x04\x8b\x64\xe8\xee\xdb\x85\x54\x85\x72\x71\x68\xc2\x26\x42\x95\x34\x49\x4a\x55\x47\xfd\x83\xd3\x34\x03\x35\x3c\x86\x67\xb2\xc6\x3b\x0d\x68\xb5\x08\xb1\xe3\xe4\x1c\x0f\x5a\xe6\x42\x41\x86\xa3\x0d\x55\x0d\xc9\xf9\x20\xba\x29\x70\x5d\xb5\xc9\x18\x46\x61\xb3\xb1\x26\xf0\x14\x66\xd5\x03\x14\x32\x5c\xc3\x9f\xe1\x64\x96\x25\xe5\x40\xf5\x14\x12\x37\x57\x9b\xe6\x29\xaa\x49\xea\x5a\x8b\xb3\x9f\xa3\x4f\x19\x2d\x12\x52\xd3\xd5\x6b\xd8\x10\x98\x0c\x8c\x50\xc0\x49\x79\x0e\x4e\x44\xd4\x1c\xd0\xd9\xfa\xf8\x88\xbc\x98\xd0\x8e\x52\x7e\x4c\x10\x2a\x3a\x8c\x0e\x8e\x54\x2c\x94\x36\xa0\x83\xa3\x70\x7c\x78\xc2\x4c\xb3\x08\x7e\x4f\xc7\x11\x6e\xd3\xcb\x86\x31\xe8\x49\x9c\x7b\x72\x14\x7a\x69\x36\x99\x25\x65\x96\xf6\x2e\xf3\xfa\xa2\x58\xd5\xbd\x44\xc5\xa0\xe8\x81\x3b\x56\x54\xda\x9c\x2c\x41\xbb\xd5\xbf\x79\x79\x84\x59\x34\x7f\x98\x60\x94\x23\xb6\x6b\x27\x4b\x54\x31\x97\x2b\x77\xb2\xe4\xee\xcc\x3b\x05\x52\x1c\x6e\x07\xb1\xd4\xe6\xc3\xd5\x39\x20\x37\xde\x18\x6f\xe7\x08\xdd\x77\xbe\x76\xba\x59\x07\xa5\x20\xa7\xc4\xd5\x32\x59\xa4\xa7\xad\x1e\xd4\x5b\x8e\xe6\x96\xe3\xbf\xe5\x7c\xdf\xd6\x89\x7a\xb7\xbe\x9f\x57\xc3\xac\xc5\x79\xbb\x5f\x1f\xee\xdf\x2a\x37\x52\xe5\xe6\xce\xdc\x4d\x76\x6a\xbb\x26\x7f\xd8\xe1\x9a\xfc\x11\x73\x4d\x7e\xbe\xca\xd3\x17\x16\x8f\x20\xb8\x0e\x4a\x27\x17\xe2\x75\xe2\x83\x11\xe9\x5d\xbc\x86\x47\x57\x43\x2e\x7f\xad\xb6\xee\x78\x3a\x77\x41\x8c\x92\xcf\x14\x21\x6f\x2b\xa8\x20\x70\x68\x60\x4b\xe9\xa0\x9d\x9b\x34\x3f\xda\x78\xac\xef\x3c\x3c\x96\xdc\x8e\x95\x3d\x3a\x02\x98\x67\x12\x0b\xca\x23\x54\x38\xf0\x66\xb6\xc4\xe5\x47\xb0\x90\xea\xc2\xc8\x84\x60\x2d\x6d\x28\xea\x03\x52\x02\xa6\x56\x96\xf7\x0f\xf0\xfa\xe4\x61\x76\xc1\xa9\x83\x3d\x0e\x02\x5a\x66\xb4\xf1\xb8\x62\x63\x71\x26\xb7\xd3\xd1\xbc\x67\xed\xb7\xaa\xea\x78\x9d\xc9\xfb\xb5\x2b\x7c\x1a\x30\xb6\x4f\x7c\x9f\xea\x8b\xa3\x7c\xe2\x59\xf2\x79\xe5\xb6\xf7\x2d\x68\x4c\x69\xcd\x18\x18\x23\x51\x99\x1c\x2c\xb5\x3f\x21\xe1\x8f\x3c\xe7\x9c\xe7\xbc\x87\x49\xd4\x99\x38\xa9\xf7\xcb\xd6\xc3\x2e\x42\x39\x36\x4c\xf7\xbb\xa4\xae\xb3\x72\x11\x3f\xf8\x7f\x83\xe1\x7f\x86\x7f\x1b\xfe\x97\xc8\xfc\xdb\x50\x7c\x3c\x20\x17\x7a\xab\xb3\x59\xf6\xdc\x57\x64\x30\xfc\x4f\x2a\x10\xae\x1f\x46\xcd\x03\xad\x4e\xf0\x23\x4c\x63\xad\x20\xff\x36\xfc\xdb\xf8\x6f\x27\xff\xeb\xc1\x88\xc5\xb3\xa9\x25\xcf\x06\x4c\xfd\xa7\xec\x3a\x8e\xe3\xe0\xbf\x04\xaf\xab\x9d\x74\x14\x67\x3f\x2b\x8f\x49\xa7\xbc\x88\xb6\xfe\x7a\x26\x59\x74\x98\x80\x4a\xf1\xef\xca\xf0\x23\x9a\x2c\xa3\x9c\x5d\x15\xa4\x4f\x5d\x83\x53\x8f\xaa\xd5\x79\x52\xa2\x5f\x1e\xf4\x1c\xa9\x0c\x69\xd4\x2f\xbc\xb8\x4c\x96\xf1\x64\x89\x3f\x79\xad\x31\xff\xc0\x6c\xe3\xca\xf1\xe3\xf5\x1f\x57\x79\xaa\x5c\xd2\xd7\x6c\x9d\xdb\x79\x15\x44\xbb\x4c\x95\x71\x24\x36\x8b\x41\x65\x5e\xd6\xd9\x5c\xfb\xbf\x67\x89\x4f\x8b\xd5\xa2\x8e\x0f\xf5\xb8\x88\x44\x39\x63\x72\x50\xc8\xaa\x48\xdf\x7a\xa0\xfd\x28\x5f\xa4\xd9\x55\xc4\x51\xa2\x41\x30\xe1\x62\xf3\x53\x8e\x41\x9a\x5d\xc5\xf0\x3f\x25\xd4\xd9\xdc\x82\x1c\x22\xab\xfb\xa4\x1e\x00\x5c\xe8\x0e\x41\xcc\x3f\x30\xfb\xcc\x24\x78\x8b\xd5\x6c\x86\x19\x85\x9b\x44\x01\x93\xe4\x88\x35\x2d\x6b\x82\xdd\x96\xd6\xf2\x5e\xc2\xfc\x2d\x67\x97\x18\x71\x7b\xed\x4c\xee\x50\x42\x2b\xa0\x08\xcc\x3d\x9b\xe8\xdc\xa9\xc6\x74\xa6\x65\xd4\x22\x81\x07\xe0\xeb\xb9\x5e\x2d\x55\x68\xa5\x63\xf7\x42\x8a\x53\x63\xde\x4f\xdb\x96\xd5\x98\x0e\x78\xab\x74\x78\x12\x73\xe0\x91\x35\x2b\x49\x8a\xe3\x6d\x5e\x79\xd7\xda\x52\xed\x38\x30\x4b\xe8\x43\x3c\x88\xd4\x15\xcc\x06\x52\x07\x76\x40\x7e\x0c\x70\xd3\x0c\x4f\x73\xb6\x20\x05\xea\x63\x8e\xdb\x09\x75\x0e\x86\xc5\x5e\xb6\x95\x71\x4d\x8f\xb6\xad\xb1\x69\x22\x15\xcf\x6c\xc7\x81\x06\x52\x6f\xd5\x1e\x6f\xd9\xee\xcd\xcd\xf8\x64\xc4\x7d\x3d\xef\x32\x61\xb4\x35\x08\xed\x0d\x03\x61\xe3\x11\xda\x33\x8c\x07\xc8\x57\x9e\xe4\x26\x22\x82\x65\xb4\x53\xb9\x96\x99\xd1\x59\xbe\x48\xf5\x6b\xc6\x2c\xfd\xa0\x08\x9d\x49\xf7\x6c\x32\x08\xee\x30\x4d\x3b\x3f\x59\x95\x0d\xca\x6b\xa5\x4d\xe6\x0c\xa2\x67\x0d\x78\x47\x93\x42\x2f\x1a\x24\x50\xba\xb8\x36\x37\xb6\x3c\x51\x8c\x45\x14\x91\x8f\x4f\x51\xc4\x5a\x6c\x01\x66\x05\x61\x54\x98\x94\xb9\xd2\x97\xf6\x01\x99\xae\x49\x23\xcd\x2a\xab\xc1\x10\x1f\x1d\xd3\x43\x24\x58\x03\x7d\xbb\x26\xf0\x86\x07\xe2\x2f\xab\x71\xed\xf1\xb5\xce\xe6\x48\xfb\x69\x46\xcc\x1a\x68\xbd\x03\x6b\xb1\xdb\x41\xd2\x72\xc0\x59\xdb\x73\x64\x63\x3c\x86\xe2\x27\xb1\x95\xae\xfa\x61\x4f\x50\xe4\x88\x08\xa5\x10\xcf\xe4\x83\xb1\xa3\x0c\x06\x7d\xd2\x59\xcd\x58\x07\x4e\x38\xe2\xc2\xc0\xed\x6a\x90\xdf\x4a\xe8\xa7\xfe\xb4\xed\xe7\x3b\x2c\x45\x75\x32\x62\xa0\x0e\xe3\x30\xdd\x6a\x02\x22\xb3\xc3\xaa\x37\xd0\x3a\xbc\x3e\x9a\x1c\x81\xf6\xa0\xa7\x12\x49\x54\xc4\x84\x70\xe6\x8c\x46\xc5\x74\x5a\x65\x75\x24\x7a\x42\xfe\x9d\x21\xb8\x26\x7d\xc5\xb1\xa1\x69\x32\x7c\xf6\xfc\xd5\xf3\x8f\xcf\x55\x4b\x72\xde\x9d\x5a\xdb\xda\x0b\xd7\xf6\x8c\x68\xc6\x00\x68\x88\xc5\x53\x74\xaf\x00\xb5\x3e\x1d\x38\xf9\x3d\x02\x5e\xc7\xce\x85\xe1\xdb\x71\xcd\xfa\xae\x6f\xee\xa2\xf3\x2f\x80\xc8\x5e\xb8\xe6\xdd\x73\xeb\x6a\xf4\xea\xc5\x7f\x51\xe7\xd6\x6f\x3d\x48\x7d\xcc\xa4\x8f\xba\x08\x42\x77\x37\x1e\x75\xd4\x41\xa0\x9c\xa5\xa1\xc2\xf5\x9a\xe9\x6d\xbd\x3c\x6e\x5f\x63\x1b\xb6\xa2\x4d\xd6\x6c\x46\xb6\x4b\x62\xdd\x52\xef\x90\xaf\x22\x7d\x3e\xf3\x1a\x1c\x5a\x64\x0d\x9f\xdd\x8b\xc6\x41\xb3\xb8\x2f\x04\x15\x6f\x70\x27\xfc\x28\x04\x89\x75\xe4\xb5\xd0\x4b\xe7\xec\x5b\x6f\x47\x02\x61\x11\x72\x12\xe4\xd0\x1a\x8c\x14\x34\xf9\xf4\x24\x4d\xdb\x68\x35\x2c\xcc\x45\x76\x09\x57\x33\x5c\x1e\xb7\xa0\xc6\xe8\xf2\xcb\xb8\x81\x19\x84\x36\xc5\xab\xdf\xc0\x6a\xae\x21\xfc\x50\x74\xd0\x89\x22\x92\x85\x14\x2e\x8a\xf7\x88\xa6\xf6\x4e\xac\xb1\xc5\xa6\x38\xc2\x46\xe3\x74\xa5\x1f\x9f\x34\x11\xfa\x6e\x01\xa5\x8d\xac\x32\xbc\xcb\xa9\xda\xa2\x44\x13\x11\xc6\x52\x25\x26\x27\x35\xba\xd3\xb9\xa4\x7f\x91\xfe\xc8\x0e\xc7\x14\x07\x45\x45\x16\xd0\xb1\x68\x2d\xfe\xfe\xf9\xc7\x27\x2f\xdf\xf4\xfb\x36\x52\xda\x27\x3c\xfe\xe8\xf7\x11\xcb\x98\xa9\x62\x6c\x71\x26\x4a\x5e\x94\x18\xbb\x89\x3c\x95\xf4\x3d\x7d\x1f\xeb\x45\x22\xdf\xc6\xfc\x6f\xa0\xef\x7c\x3e\xa3\x24\x4d\xd5\xba\x92\x37\x3e\xc5\x92\x1b\x4e\x73\xa8\x98\x58\x19\xb1\x29\x66\x19\xb2\x2c\x94\x88\xa1\xb3\x14\x29\x95\x16\x17\xa6\xb8\xe5\xd6\x34\x32\x48\xf2\x4f\x19\x2d\xe6\xb6\x7b\x17\x49\xf2\xee\x72\xbd\xb3\xd6\x62\x1b\x7b\x8f\xb1\x0d\xa4\x83\xdd\x14\x57\x87\xfa\x86\x4f\xda\x1f\x58\x22\x3a\xb4\x8b\xe0\xbe\x46\xe1\x8e\x4a\x65\x89\x03\xab\x76\x59\x91\xb1\xdf\x54\x7f\x81\xb5\x43\x38\x90\x22\xe2\x4f\x7b\x2d\x39\x8c\x39\xa3\x0d\xd8\xb4\x49\x5e\x6c\x14\xbc\xd8\x33\x07\xc6\x26\x7f\x52\x99\x9c\x90\x73\x29\xd0\x88\x9e\xd8\xec\xdc\x76\x5c\x93\x8f\x55\x37\xab\xdd\x95\x81\xda\x5c\xa3\xe6\xa5\xa6\x45\x39\xd0\x39\xb1\x77\x6c\x0e\x8e\x46\x1a\x04\x9d\xf9\xea\xef\x70\xad\x26\x2d\xb6\x46\x7a\x5f\x43\x09\xba\xac\xe0\x1e\xc7\xd2\xf7\x0a\xfa\x52\xe9\x16\xc9\xc9\x52\x61\x3b\xd3\x6a\xcd\x18\x5e\x6b\x46\x7a\x87\xc2\x39\xfa\x54\x7d\x3a\x24\xc3\x5c\x7a\xee\xfd\xd9\x90\xc4\xd2\x3e\x6c\x5b\x46\x52\x4c\x84\x92\x34\x46\x35\xb4\x0e\x86\xff\x72\x0e\x39\x5a\x04\x87\x58\xe9\x3e\x78\xd0\xd2\x32\x61\x71\xce\xb6\x48\x40\xbe\x0e\xa1\x04\x48\x1f\x99\x54\x19\x5f\x87\x2a\x76\xc8\x23\x18\xf2\x77\x22\xa0\x5f\x8d\x78\xda\x08\xb2\xb9\x6d\x13\x29\x58\x9b\x02\x1d\x08\xb5\xd3\x33\xdc\x75\xac\x1d\x4b\x98\x62\xec\xda\xa9\xb3\x8f\x1c\xea\x66\xdf\x1d\x0d\x22\x72\x0b\xf9\x4b\x3b\x7d\xd8\x5a\x28\xf3\xaf\x2b\x6c\xd9\x8d\x1c\x6d\x1a\xaa\xcd\xf4\x89\x2f\x37\x93\x28\xa9\x3d\xfa\x75\x49\x12\x91\x61\x3d\xb3\x4f\xd2\xb4\xfb\x64\xf6\xdc\x6e\xfc\x57\xcb\x63\xdf\x25\x10\x19\x71\xe7\xaa\xb6\x76\x08\x51\x71\xf6\x33\x7a\x17\x74\x5e\xae\x90\xd2\xc8\x27\x36\x27\x23\x46\xad\xb0\x63\x6f\x43\xc7\xd6\x77\x54\x9c\xfd\x7c\x2c\xd0\x5b\x96\xd9\x97\xbc\x58\x55\x30\x8a\xd5\xf1\xba\x69\x9a\xfd\x7d\xef\xfb\x98\xfb\x94\x86\xed\x0e\xcd\x2a\xc6\xd4\xe1\x93\x98\x3d\x39\xa2\x3e\x5f\xe4\xbd\xe9\xee\x34\x5c\xf9\x74\x70\x70\xe0\x7f\xbe\x03\x4e\x1f\xf5\xff\x66\xab\xea\x82\xc2\x55\x43\x0c\x3c\x9e\x60\x07\xbf\x33\xde\x06\x9d\x2e\x0a\x7c\xa2\x09\x5b\x56\xa0\xf5\x4f\xe1\x8c\x38\x60\xb8\x9e\xc4\xc6\xd8\xc8\x08\x44\x93\x61\xab\x5c\x8d\x45\x31\x81\x86\x8d\xfb\x9c\xa7\xa0\x71\xb1\xf3\xd5\x6b\x1e\x61\xed\x7b\x7a\x82\x1a\x68\x50\xc7\xcf\x9e\x9a\xf2\x5d\xb6\x32\xef\x35\x5d\xc3\xa2\x89\xb5\x28\xec\x4d\xde\x7e\x7d\xd9\x75\xd7\x53\x17\xb6\xdc\xf6\xdd\x68\xdc\x9a\xf4\xec\x86\x44\xe3\x7b\x93\xe6\x3e\xc2\xbb\xce\x69\x29\xbc\x78\x0b\xd7\x50\x72\x10\x98\x66\x57\xda\x4c\xa2\x87\x16\x0d\xc9\xd5\xe0\x90\x0a\xed\xe3\x75\x56\x85\x5e\xc2\x02\x92\xcd\xa5\x52\x90\xc8\xbd\xed\xf6\x94\x65\x04\xf9\x17\x35\x9b\xa6\x3b\x32\x73\x25\xeb\xbd\x62\xe5\xad\x17\x2b\xa7\x19\x83\xdb\xa3\x36\xa9\x11\xd5\xc6\x26\x3e\x19\x5a\x33\x96\xa9\xfc\x90\xeb\x14\xab\xb7\x96\x27\xd2\x0d\x54\xc4\x44\xb0\x1d\xde\xeb\x41\x66\x0d\x9f\xbc\xe1\x98\x7f\x98\xd9\x2a\xcb\x20\xa9\x48\xc5\xf8\x07\xc4\xcf\xf3\x21\x6a\x26\xc6\xe6\x27\x9b\x11\x25\xf8\xb2\xc6\xca\x50\xef\x30\x46\x6b\x0e\x4a\x1c\xbb\x3c\x7e\xcd\x8d\x27\xfe\xce\xcd\x04\xb5\x3b\x47\xf6\x36\xd7\x1f\x77\x5a\x27\x4b\xeb\x4e\x21\xbd\x55\x62\x23\xee\x51\xcf\x5c\xb0\x43\x04\x66\xab\xe7\x74\x18\x68\xc5\x95\xe5\xf0\x54\x7d\x0d\xb0\x56\x20\xe7\x5b\xaa\xcf\x0b\x78\xa8\x24\xef\x86\x1c\x59\xe3\xb7\x64\x6a\xdf\x03\x6b\xbc\x42\x0a\xb0\xb3\x6d\xdd\x0d\xe2\x4b\x0a\xcb\x52\x33\x3d\xff\x47\x06\x2a\xcb\x6e\x72\xc7\x4c\xad\x65\xc5\xc7\xd6\xb8\x1d\xf3\x8f\xc6\x1e\x7c\xb6\x16\x97\x49\x29\x9a\x99\x5d\xbf\x97\xba\xff\xc4\xed\x58\xda\x03\xa0\x55\xed\x68\x41\x0d\xeb\xac\xaa\x4d\x83\x03\xcb\xa5\x2b\x18\x34\x81\xb2\xbc\xe4\x3b\x0c\xe8\x11\xd7\xbf\xc7\x05\x23\xed\xa6\x40\x6f\x45\x23\xea\x37\x01\x30\x26\xdc\xab\x04\xc5\x15\xff\x59\xec\x65\x71\x53\xa1\xbf\x5b\x11\x09\x50\x60\x8b\x49\xd1\x54\xb6\x14\x62\xf2\xc8\xa3\x58\x54\x31\xd5\x27\x1a\x76\x95\x62\xd8\x22\xf0\x8f\x66\x73\x27\xb9\xbe\x8f\x4f\x51\x47\x8f\xb7\x54\xcc\x1b\x68\xfc\x23\xa7\xa7\x68\x47\x26\xe0\xf7\xe2\x58\x59\xd7\x6a\x8b\x35\xc0\x8a\x9f\x3e\x4e\x07\x1a\x50\x49\x68\xd1\x3b\x8a\xc8\x35\xb3\x12\xb3\xc0\x42\x92\xb9\x71\xbc\x25\x92\x5c\x2e\xed\xd6\xe8\xea\xe3\x0e\xf8\x34\x7b\xea\x6b\x4c\x24\x58\xbf\x99\xce\x62\x37\x4a\x38\x28\x52\x2d\xb2\x13\x36\x52\x5a\x58\xdd\xf8\xeb\x47\xa6\x4d\xe8\x37\x8d\x61\x8f\xb0\x9b\x43\x8b\x0d\x3b\xca\xb4\x24\x91\xc6\x50\xa8\xa5\x46\x86\x21\xf4\x97\x62\xe8\x19\xc2\x17\xa6\xc0\xe6\x88\x4c\xd4\xfa\x3f\x95\x27\xe3\xcb\x36\x88\x32\x4b\xd2\xb7\x8b\xd9\xb5\x0c\xd4\x07\x23\x9b\x9c\xcd\xb2\x81\xd2\x1d\x61\x96\x4a\x71\x8b\x5d\x95\x0a\x1a\x0c\xb4\x53\x15\xb1\xa8\x31\x29\x24\x53\x66\x5b\x5d\xb6\xe0\x09\x8f\x22\xd3\x02\x6b\xdb\x03\x20\x6a\x3d\xcf\x46\x70\xca\x30\x82\x6f\x1f\x87\x78\x2e\xa5\x2d\xba\x80\x5e\xa5\xa5\x81\xe9\xa2\x7c\x37\xeb\x31\x71\xe3\xf5\x1f\x11\xb5\x6d\x4b\x16\x1a\xc2\xbe\x16\x1d\x23\x4b\x9d\x48\x2e\x04\x53\xb9\x31\xf6\x75\xd2\x7d\xb3\xb3\x9a\x88\x63\x7f\x6d\xd0\x09\xd1\xe1\xb6\x55\x67\x2b\xed\x91\x9e\xdb\xf6\x45\x36\x4c\xca\x16\xea\x7f\x5b\x69\xfe\x29\x26\xa3\x7b\x68\x6c\x16\x99\x71\xab\xf6\xc0\x74\xe2\xed\xe8\x19\xb6\x54\x63\x4e\x69\xe3\x4c\xcc\x86\x66\x4c\xa5\xd1\x4e\x15\xc6\xa6\x31\x95\x90\x46\xbf\xb2\xe5\xec\x2e\x4a\x10\x26\xe2\x15\x5c\xef\xe9\xdd\xb8\x7e\xd5\x67\x9f\x8d\xa9\x45\xef\x64\x87\xda\x4c\x37\x47\xca\xee\x6d\x23\x8d\xe2\x8a\xbd\x2d\x6c\x89\xcf\x50\xb3\xcb\x44\x53\x1d\x3c\x64\x7e\xf0\x54\xc6\x53\x94\xd6\x61\xc4\xa3\xa9\x60\x96\x2c\x75\x23\x0a\x8c\x8c\xc6\x66\x04\xd3\x3d\x53\x9c\x40\x9a\x3b\x74\x94\xf1\x73\x6d\x64\x02\xc6\x6b\x26\xff\x38\x96\x6c\x39\x4b\xbb\xb9\xb1\x3a\x12\xa9\xcb\x95\x02\x57\x29\x0e\xb0\x0e\x76\x60\xb4\xda\xb4\xd9\x1d\xb3\x9e\x5a\x17\x9d\xd8\x79\x27\xb7\x97\x85\x68\x67\x6f\xcf\xcf\xbc\x8a\x1a\xc6\xbc\xc0\xc9\x36\x28\xe4\x3b\xb4\xaf\x6c\x41\x00\xb8\x1d\x0b\x3a\x3f\xfd\x48\xa1\xeb\x10\xb8\x06\x77\x81\x61\xf8\x93\x5b\x5e\x15\x1c\xde\x76\x10\x76\x1f\xb8\xd0\x5a\x9b\xb1\x06\xb2\x3a\xfc\xb2\xaa\xae\x70\x7e\x73\x0d\xfb\x92\x46\xeb\x43\x24\x6f\x31\x25\x6d\x06\xce\xda\x4e\x97\xaf\x75\x13\xdc\x1b\x4c\xb6\x15\xdc\x0c\x28\xdb\x0e\xd7\x6c\x81\xb5\xcf\x98\xfa\x8b\x41\x06\x3c\x93\xb2\xcd\x68\x98\x87\x69\xdc\xf2\xa0\xe9\x51\x4c\x95\x51\xa3\xdb\x8f\x63\x59\x92\x5e\xb3\xb6\x81\x04\x05\x8b\xad\xa1\x31\xac\x8b\x8d\xd7\x16\xbd\x06\xcb\x73\x87\xa9\x6e\xef\x3b\x8b\xf0\xbc\x05\x5a\x72\x64\x36\x33\x45\xb7\x18\xa1\xed\x47\x27\x1e\x9f\x6c\xb3\xb2\x94\x54\xcf\x7e\x58\xc0\x1b\x4d\xd4\x61\x07\x1f\xaa\x7d\x09\x31\x52\xc5\x26\xff\x90\xd5\xd1\x3c\xa9\x27\x17\xd1\xc6\x05\xa4\xb8\x12\xd1\x42\x07\x23\xd2\x6a\x84\xe6\x15\xaa\xb4\x04\x3a\xcb\xaa\x3a\x4b\x7b\x60\xaf\xd6\xd3\x46\xd9\xbd\x45\x51\xf7\x28\xe6\x43\x96\x1e\xf7\x82\x7d\x93\x8f\x92\x12\x67\xe8\x51\xec\x31\x9d\x1b\x66\x57\xd9\xc4\x46\xc1\xe9\x79\x0c\xe5\xc7\x47\x5e\xe5\x23\x69\x27\x87\x30\x0f\x4f\x22\xe2\x84\xbc\xbb\xd2\xd9\x83\x93\xa5\xbd\x85\xb7\xd8\xb9\xcd\xc8\xb6\xa5\xb5\x2b\x26\xa4\x3c\xb8\x84\x23\x3e\xe7\xe2\xdc\xf6\x6c\x17\xa4\x7b\xed\x80\xc8\xa4\x2a\x36\x6b\x8b\xd5\xc9\x3d\x66\x18\xf5\xd6\x05\x6a\x28\x84\x61\xc3\xb5\x8c\xf8\xa2\xff\xd7\xf0\xf9\x80\x1b\xf5\x76\x4e\x1f\x30\x9a\x1b\x27\xfe\x41\xae\x80\x5a\x37\xc5\x4e\x2d\x52\xe5\x28\xe9\x32\xfd\x4c\x6c\x90\x8f\xdc\xc1\xd1\x44\xa7\x97\xd2\x9d\x5d\x46\xa8\xb8\x27\x1b\x3d\x47\xcc\xb3\xf2\xfc\x9f\xeb\x4d\x62\x83\x83\x27\xc7\x11\x43\x8b\x17\x89\xaf\x16\x4b\x66\x87\x68\x4c\xad\x81\xa3\x36\x85\xbf\xfa\xb7\x1b\x89\x7b\x73\x23\x01\x0b\xd8\x76\x23\x61\x03\xd9\x9e\x26\x1e\x75\x78\x9a\xf8\x96\x79\x9a\xf0\xd9\xc1\xff\xd6\xb2\x83\xf7\x79\xa3\xf8\xad\xe5\x8d\x62\x7b\xc7\x56\x5d\x9e\x04\x3c\x9e\x1f\x6c\x83\x7f\x8f\xd3\xef\x36\xe7\x10\x7f\xf0\x38\x87\x68\x77\x92\x0f\x1e\x0f\x5c\x27\xf9\x1d\x2e\xca\xc4\x22\xf1\xf9\x28\x6b\x8d\xe8\xe1\x99\x37\x6f\x98\x12\x9f\xe3\x03\x27\x7c\x8b\xcf\xf3\x81\x2f\x7e\x8b\xcf\xfb\x81\xd7\x0b\xc1\x36\x1e\x07\x3e\x64\x49\x29\x7d\xe7\xaa\x13\xba\x5a\xcd\x2d\x4e\xcf\x70\x92\xa5\x8e\x6e\x43\xfa\xb7\xe6\x27\xdc\xf1\x21\x13\x23\x68\x07\x53\x93\xc9\x6a\xbe\x9a\x25\x52\x1e\xe2\xa8\x55\xf1\x0b\xb9\x6a\xd4\x2e\xb5\x2f\x4a\x35\x11\x97\x6b\xdc\x73\x0b\x07\xd0\x42\x13\x1a\xc7\x9d\xf4\x8c\xad\x46\x69\x9e\x5c\xdd\x75\x94\x0e\x5e\x2e\xa6\x22\xe1\xfa\xfe\x46\x4b\x29\x68\x78\x8b\x87\xf7\x33\x6e\xa4\x42\xf9\xbd\x5d\xac\x75\x44\x1b\x7b\x34\xa5\x07\x71\x3d\x9a\xb9\x7d\xbb\xd8\x79\x34\xbf\xd6\x60\xe6\x2d\xc5\xef\x77\x30\x1f\xdf\x61\x30\xc9\x43\x3b\x5b\x9a\x4b\x4b\x34\x6f\xc4\xe0\x95\x7c\xf2\xda\x37\x50\x5a\x33\xa2\x15\x63\xe9\x2b\x37\x4b\x63\x37\xc8\x2b\x0e\xcd\x08\xbd\xc8\xe5\x8b\x2a\x2b\xeb\x27\xf5\x40\xd7\x45\x0a\x60\x58\xde\xf2\x2f\xd7\x32\x9e\x5b\xa0\x94\x70\xb3\x7a\x4f\x73\x47\x56\x4b\x8d\xf1\xe9\x5f\x5d\x92\x47\xb6\x16\x2e\xfa\xb9\xe7\x63\xfd\xe3\xb5\x59\xd0\x50\xc4\xe5\xaa\x1f\xe6\x5d\x51\x4d\xf0\x79\x56\x3b\xba\xb5\xa1\xc2\xd0\x9e\xcc\xfd\x00\x5d\xbb\x0c\x83\x7d\xae\x8b\xab\xa6\xd8\x46\x57\xf9\xd4\xff\x62\x85\x24\xc1\x54\x0b\xda\xeb\x6a\x5f\x75\x16\x7d\xe4\x6f\xb5\xb6\xb4\xea\x87\x3d\x93\xed\x3b\x81\xab\x08\x60\x53\xa4\x91\x48\x7a\x8b\x28\xc5\xa0\x13\xb6\xf1\xee\xf3\xad\x97\x6f\x3d\xb9\x88\xf7\xf6\xda\xd6\x6f\x84\xcd\xbf\x24\xa5\xac\x0d\x78\x49\x2b\x40\xdf\x32\xaf\x27\x18\xd1\x1b\x7f\xad\xad\x7d\xc1\x9a\x21\x9a\x72\x4f\x1b\xe2\x8b\x0a\x04\xb3\x6d\x1f\xb4\x6d\xa0\xd3\x0d\xe8\x00\xab\xed\xf1\xc1\x91\xb3\xe5\x58\xb6\xd5\x89\x5b\xef\x35\x33\xac\x83\xb5\x08\x3b\x36\x5d\x44\xc2\x57\xbe\xf5\x7c\x52\x85\x38\x8e\x1f\x86\xeb\x5b\x6d\x4e\xa9\x39\xb1\x7b\xd1\x38\x8e\x51\x21\x45\x0e\x92\x67\x4f\xed\xb4\xc5\xdd\x18\x17\x5f\xdc\x20\x40\x2a\xcf\x2d\xd9\x16\x00\x43\x87\xf1\x5f\xe4\x9f\x07\x5a\x3e\xd3\x26\x6f\x1c\x89\x4c\x94\xfa\xde\x79\xf3\xe7\x52\xf3\x1a\xd4\x57\xef\xb2\xd1\x0d\xfd\x77\x3c\x9a\xf2\xe9\x60\xaf\xa5\x35\xa9\x06\xdf\x99\x1d\x1f\xe1\xec\xef\xef\x77\x82\x35\x89\x34\x10\xc6\xfb\x03\xb5\xbe\xdb\xfe\x3e\xdd\xaa\x4b\x11\x1b\xaf\x16\x9c\x46\xa0\xdd\xee\x74\x05\x14\xdb\xf9\x4e\xe6\xb8\x5a\xdb\x38\xf4\xee\x63\x12\x16\x41\xdc\x7f\x14\x17\xf1\x25\xa6\x43\xa7\x7c\x51\x71\xa4\xe0\xd3\x02\x52\xa1\x54\xdc\x28\xed\xb4\xf4\xce\xb3\xfa\x19\xdb\x22\x7f\x5c\xe5\x29\x7b\x15\xd0\x6b\x40\x7b\xc3\xb5\xae\x3d\xe2\x1c\x65\x84\x4d\x09\xbb\xb6\x7b\x74\x97\x5b\xda\x36\xe9\x02\x6a\x40\xfa\x37\xff\x7a\xbb\x43\x40\xfc\xd1\x5d\x4e\xaa\x77\x38\xca\xbe\xa1\xe7\x23\x6e\xc2\xab\xba\xd8\x60\x73\xed\xe7\x30\x42\xcf\xfe\x6f\xa7\xd6\xa3\x63\xbc\x79\x76\xa4\x0d\xc0\x76\xeb\x7d\x8f\x2d\x77\xd9\xd3\x13\x34\xdb\xb4\x53\xc5\x40\x12\x23\x6e\x67\x8d\x8d\xde\x9d\x98\xaa\x76\xdb\x14\x38\x14\x35\xef\xef\x6f\x57\xf7\x51\xbf\xdf\x36\x3c\x31\x04\x05\xf3\xe2\x18\xaa\xa0\xfe\x5e\xa2\x73\x9f\x4c\xc5\xbf\xea\x92\x91\x35\x60\x41\xd1\xf7\x27\xcb\x65\x96\x94\xd5\xcb\xc5\x96\xcb\xe9\xeb\x2d\x0e\x83\x30\x77\xd4\x7d\xa8\xf4\xba\xb6\x80\x1f\x75\xf4\x78\xf3\x4a\x12\x1d\xee\xaa\x60\x13\x32\xcd\x57\x3c\x54\x7c\x31\xb6\xb4\xf0\x0a\x03\x8b\x0d\xaa\xac\x7e\x22\x79\x99\xa8\xca\xea\x1f\xe5\x07\xa9\x81\x9b\xac\xe0\x1e\xb0\x82\xfe\xa7\x18\xaa\xb1\x57\x66\x9f\x57\x79\x99\x55\xbd\xec\x2a\x99\xd4\xb3\xeb\x5e\x7d\x59\x68\x9d\x2a\xec\x40\x35\x0c\xcc\x1e\x2a\x76\xb7\x15\x9f\xe8\x2e\xd7\x70\x51\xab\x56\xe4\xe2\x6d\x84\xd0\x88\x91\xa7\x87\x00\xac\x0d\xfc\x7b\x2d\x8e\x63\x51\x0d\x6a\x1d\x89\x42\xa0\xc3\x9b\xe4\x0b\x5c\x2f\x61\x1b\x89\x41\x9e\x68\xbb\x59\xbf\x1b\x05\xfa\x5a\x7d\xfe\x11\xfa\x2c\xea\xfb\x0a\x5d\xb6\xa5\x89\x56\x18\x3c\xb5\x7c\xcf\xf2\x45\x52\x5e\xa3\x58\x96\x8f\xc8\xac\xb8\x8c\x2e\xf2\xf3\x0b\xba\xbe\xe6\x69\x34\xcf\x61\xfc\xa2\x32\xab\x22\x41\x3f\x5f\xe7\x29\xfc\x7d\x49\x5e\xc2\xec\x25\xfe\xfd\xb7\xe1\x5a\xd4\xe0\x73\xd2\xd2\xf8\xe0\x1f\x85\xeb\x59\x71\x89\x14\x4a\xfc\x88\x63\x44\x80\xfa\x35\x2b\x2e\x9b\x79\x9e\xc6\xb3\xe2\x72\x1f\x04\x65\xd3\x59\x51\x94\x83\x81\x00\x3a\x98\x15\x97\xe1\x83\x87\xe1\x88\x90\x44\x3f\xf4\xda\xb7\xc1\x3c\x4f\xc3\xd1\x7f\x10\xd6\xf1\xa9\x24\xff\x04\x1d\x8e\x64\x3f\x74\x96\x62\xdd\x65\xa1\x38\x96\x40\x0a\xa3\x79\x9e\x36\x65\x26\xf5\xe1\xca\x34\x53\x35\x46\xaa\xb8\xc8\x27\xbf\x2d\x55\x4c\x75\x7d\x2f\x6b\xfa\xe1\xe0\xe8\x18\xa2\xcf\x94\x59\xc5\x8c\xde\xa0\xbe\xb6\x89\x99\xe7\xe9\xfe\x11\x4e\x8d\x52\x49\x28\xb3\xea\xf1\x96\xc5\xc5\xbc\x8a\xd1\x68\x74\x1f\xf4\x62\x30\x7b\x2f\x56\x27\x93\xd7\x93\x8d\x89\xd4\x08\x93\x4b\xd5\x62\x54\xd5\x1d\x34\x00\x75\xad\x45\x1d\x84\xaa\x2d\xa3\x76\x0c\x81\xc5\xea\xe7\x91\xfc\x86\xd9\x55\x9d\x2d\xd2\x01\xd3\x7f\xac\x8a\x12\x6b\xae\xc4\xd5\x54\x7c\x3d\xcb\x40\xfe\x0a\xde\xe4\x80\x53\x58\xe4\xf5\x8b\x05\x64\x69\x65\x86\x9f\xb2\xeb\x91\x7e\x81\x37\x8b\x59\x2a\x5c\x58\x3e\xbe\x15\x8b\x8c\x21\xb9\xcc\xea\x47\x06\x04\x9f\x90\x98\x7f\xd0\xb6\x76\xd0\x76\x6b\xdb\x09\x3d\x7e\x40\xad\x96\x1f\x8c\xda\xe9\x8a\xc3\x9a\xbc\xd6\x0d\x55\x8c\x9e\xd9\x38\x85\x3c\xe9\xda\xca\x37\x79\x19\x2b\x6f\x7c\x62\x14\x7d\x52\x4d\x32\x70\xdc\xd9\x5a\x88\x81\xac\x9b\x28\x4f\xaf\xa2\xa4\x9a\x8c\x7c\xfc\x97\x57\x81\x4b\x2d\x15\xad\xf0\xdc\xd2\x5d\x7d\x03\xf3\x03\xc0\x3e\x80\xe0\x68\xfe\x7c\x14\x59\xbd\x9d\x0e\x82\xe3\x20\x0c\xf7\xe2\xf8\xe0\x28\xe4\xb3\x79\xdd\x56\xae\x5a\x9d\x61\xec\xb0\xc1\xa1\xe8\x5f\x38\x4a\xaa\xc9\x66\xd8\x3c\xbd\xda\x3f\x0a\x87\x75\xf1\xaa\xb8\xcc\xca\xa7\x49\x95\x0d\x44\xa3\x41\x9a\x55\x93\xc0\x59\x4a\x6d\x8d\x43\x5b\x75\xb9\xca\x1a\x73\x9e\xf0\xc6\xc8\xcb\x84\x23\xef\xa4\x8c\x79\xea\x49\xdc\x36\x37\xb6\x3e\x92\xb1\x81\x55\x13\x8d\xd9\x08\x9b\x1c\xfe\xfe\x3a\x08\x40\x48\x15\xa0\x4a\x28\x1a\x98\x9b\xeb\xfa\xed\x62\xc2\xad\xdf\xda\x40\x06\xb6\x95\x8b\x0f\x30\xf2\x74\x07\x6d\x5f\x3a\xeb\xb7\xb4\xcb\x3d\x9b\x4f\x8b\x7e\x43\xef\x90\x6d\x17\x4f\xc8\x89\x50\xe4\xec\xd5\xf6\x11\x1a\x6d\xc0\xca\x43\xd9\x0c\x81\xe3\x13\x38\x4a\x7e\x24\xaa\x5b\x21\xf5\x86\xa4\x9e\x2c\x5a\x4c\x39\x69\x37\xa9\x46\x99\x55\xab\x59\x0d\xdb\x79\x5a\x94\x83\x2f\x14\x98\x2e\xff\x1e\x2d\xff\x4c\xb4\xe8\x76\xb0\xbf\x9f\x5b\x9b\xca\x03\x3c\xce\x4f\x46\x58\xb9\x8a\x68\x27\x8f\xa3\x27\xe6\x82\x8b\x08\xeb\x1f\x00\x6b\x73\x2d\x1f\xcb\x32\x3f\x9a\x65\xe4\x71\xbe\x9a\xd5\x18\x14\x0f\xb6\x90\x85\x45\xdb\x06\x51\xb7\x8e\x6a\xf2\x03\xd6\x71\x7c\x70\xf4\x9f\xf8\x4b\x49\x66\x0f\x9b\xad\x8f\x0c\x2f\xcb\xaf\x36\x17\x97\xf8\xd0\xa9\x78\x17\xa1\x8d\x2b\xd0\x6f\xe1\x2e\x9c\x67\xb8\x5c\x3f\x34\xdc\xd7\xcb\x1b\x45\x0d\xb9\xba\x66\x5b\x15\x9b\xa9\x00\x1d\xc9\x8e\x1a\x5b\xcb\xb4\x3b\xb7\x8a\xc7\xa0\x20\x33\x58\x13\xc3\x72\x8c\xef\xfd\xed\xe5\x47\xba\xa1\x98\xf3\x47\x64\xcd\x61\xd5\x4e\xfa\x8f\xac\x0c\xd4\xbf\xdd\xa0\xea\x52\x72\x68\xd5\xfb\x07\x3d\x94\x74\x32\xfd\x32\x20\x76\x87\x76\x9c\x0c\xe3\x5b\x29\xed\x30\x99\xf2\xd5\x82\x2a\x6d\x1b\xa9\x08\x11\xf2\xab\x97\x51\x9c\xa2\x8a\x22\xca\x7b\x34\xc9\x74\xc7\x78\x97\xb6\x09\xb0\xf4\x8b\x86\x44\xdc\x55\x07\xed\xce\xda\x61\xb7\x0d\x31\xd4\xa5\x86\xe5\xd1\x2c\x02\x99\x8e\xab\xd2\xe4\xd1\x2d\xfa\x40\x73\x8a\x81\xa6\x37\x28\x83\xd9\x71\xa9\xad\x01\xb4\xe3\x56\x2b\x25\x27\x47\x17\xeb\xbb\xd3\x53\x1d\xa0\xbe\x43\x21\xed\x0f\x2e\x0e\xdb\xe8\x3d\x95\xd9\x72\x96\x4c\x32\x07\x86\xd2\xdb\xc2\x27\xeb\x51\x93\x37\x22\xab\x43\x91\x31\x5a\x11\x89\x00\x25\xc8\x31\x08\xb4\x66\x45\xf1\x69\xb5\x7c\x69\xe6\x70\x47\x45\xd9\xa4\x36\xde\x10\x81\x9f\x08\xcc\xaa\x82\xb0\x89\xe4\x75\xfa\x29\x11\x4a\xcd\x14\xa4\x57\x8e\x5b\x56\xac\xc4\xf0\xe1\x26\x36\x34\x3a\x04\x81\xf2\x0c\xcc\xca\x21\x78\x6c\x2f\xb6\x32\xfb\x7d\x2b\x81\xb9\x30\x14\x5c\x34\x4e\xb1\xc4\xfb\xe9\x2c\xa9\x50\x9a\x9a\x5e\x3d\x86\x90\xb7\xa9\x76\x17\x63\x81\xe1\x69\xee\x1b\x2e\x39\x4a\x18\xc8\xd7\x28\x64\x5e\xbb\x75\x26\xa2\x43\x63\x16\xd9\x85\xd4\x09\x8e\xf9\x4d\x64\xf5\xc9\xe3\x51\x4a\x5a\x92\x54\xab\x65\x56\x4a\x93\xee\x53\xb0\x05\xfa\xb0\x3a\xd3\xb8\x56\x83\x10\xab\xbb\x6e\xaf\x4b\x60\x26\x5d\xd4\x28\x77\x84\xd2\x1b\x70\x65\xd4\x16\xcb\x56\x79\xa2\x18\x07\x33\x45\x3d\x08\xb8\x35\x7c\x2c\x28\x9e\x91\x55\x02\x9d\xec\x09\x54\xc4\x9d\x46\xa3\xc3\x6e\x6c\xde\x7a\xd8\x85\x8d\xe7\xa3\x34\xcd\x4c\x31\x3e\xa5\xb3\xaa\x01\x99\x1b\xc0\xce\xb3\xda\x88\xac\x91\xb1\xbd\x1e\x2e\x6a\xe9\xf3\x88\xe6\xa1\x6d\x24\x1b\xf0\xa1\xb1\x69\xf6\xac\xa1\x1e\x9f\x34\xd1\xbc\x48\xb3\xd9\xb1\x24\x45\x83\xae\xa8\x9b\x61\x74\x9a\x57\x7f\xc9\xcb\x7a\x95\xcc\x8e\xc1\x73\x48\xc4\xd7\x9f\x39\xdd\x2d\x0b\x11\x15\x37\x56\xb3\x19\x05\x3f\x62\xf8\x44\x82\x83\x5e\xd4\x3a\x41\x6d\xad\x24\x5f\x64\x25\xdb\xbe\x2a\x8d\x36\xee\x5d\x56\xd0\x63\x20\x26\x46\x96\xb5\x70\x20\xe8\xb8\x53\x5e\x8d\x8f\x91\xda\x34\xb2\x6f\x71\xa0\xbb\x7e\x1c\xec\x7b\x28\xc4\x9e\xea\xc6\xf0\x22\xa9\x06\xb2\x60\x9b\xc9\xc4\x37\x4f\x8b\xd5\x2c\x05\xab\xa1\x32\xab\x8a\xd9\x17\xf9\x30\xa1\x5a\xe9\x05\xdf\xd8\xed\xec\x7f\x13\x7c\x83\x1e\x2d\xd0\x72\x4b\x4e\x5f\xb8\xb6\x07\x9b\x0d\xaf\x9d\x15\x48\x9b\x1a\xbb\x88\x00\x6f\xcc\xa1\xd3\x7d\x42\xba\xf6\x22\x99\xd4\x45\x79\xad\x7b\x27\xd9\xd6\x75\x9d\x94\xe7\x59\x7d\x6c\x57\xea\xac\x02\x17\x02\x97\x2c\x51\xb2\x70\xe4\x99\x2d\x73\x06\x47\xde\x99\x8a\xac\x15\x82\x87\x97\x8f\xc0\x39\x6e\xef\xcc\x15\x7a\x37\xfa\xc5\xae\xa4\x32\x70\x8b\x17\x72\x24\x97\xeb\x28\xdf\xdf\xe7\x47\x89\xb3\x5a\x4f\xcc\x53\x83\xc3\x72\x92\xe4\x6d\x25\x3e\x6c\x9a\xe8\x32\x9f\xcd\x9e\x21\xa0\x4b\x50\xbc\x07\xc0\xc8\x20\x36\xe2\x5e\xb0\xcd\x0d\xe0\xee\xbc\xbf\xd7\x42\xc4\xb6\xa7\x11\x9c\xca\x26\x4e\xdc\x8e\x47\x0a\x7d\x3e\xbd\x48\x16\xe9\xcc\x63\xe1\x42\x50\x1a\xff\x53\xba\xcb\x9d\xc2\xd2\x3c\x4d\x66\x79\x52\x09\x26\xae\xcc\x26\xe0\x8a\xfd\xd7\xc2\xdd\x7f\x55\xee\x1d\x2a\x40\xa1\xfa\xa6\x20\xe5\x2e\xf3\xfc\xed\xe9\xe9\x70\x03\xcb\xfc\x5b\x9b\x65\x7e\x02\xc3\xf8\x27\x9c\xa4\xed\x39\x77\x62\x53\x5e\x8b\xa9\x7a\x22\x66\xea\x99\x9e\xa8\x4d\xd6\x1d\x36\xff\x0f\xff\x4b\x92\x66\xe0\x13\x6d\xd7\x60\xb4\xce\x2b\x46\xeb\xea\x72\x95\x45\x44\x19\x81\x1e\x29\x7a\x8a\x9f\x0e\x71\x84\xd4\xaa\x2e\xca\x0c\x7f\x22\x6d\x54\x45\x05\xdb\x3c\x51\x8f\xce\xa2\xed\x41\x00\x20\x01\xa8\x28\x00\x16\x59\xfa\x21\x5b\xa4\x88\x76\xc5\xd5\xbc\xc5\x1f\xd3\x3b\x81\xd8\xe6\x63\x9d\x71\xd2\x58\x95\xf8\x4b\x2b\xdd\x21\x69\xbe\x61\x5b\x2e\x1e\x21\x01\xe1\x35\x5b\x51\xca\x2b\x29\x79\x10\xac\x94\x39\x11\x31\x5b\x77\x2d\xb7\x96\xd0\x50\xc7\x62\x45\xd9\x19\xe1\x87\xc0\x59\xb6\xbe\xb7\x22\x6e\x64\xad\xe6\xa3\x71\x5b\x0a\x0d\x36\x98\xbf\xdd\x86\x9e\x74\xed\xff\xae\xab\xed\x51\xcb\xd5\xb6\xcd\x72\xc8\x32\x1c\x6a\xb9\x6d\x7a\x1e\xe0\xec\x89\xeb\x18\xea\xe5\xb5\x7d\x6a\x6c\xb0\x63\xec\x14\xfe\x58\x47\x87\x43\xe9\x97\xd7\x86\xdc\xc7\x0d\x8d\xfd\xcf\x20\xef\x9d\xe4\xbb\x2b\xe0\xad\x4b\xc8\xea\xeb\x65\xf6\x76\xea\xd0\x72\x4c\xde\x95\x9c\x3f\xa5\xe1\xd9\x24\x94\xf1\xc4\xed\xfd\xad\x19\xb6\x97\xde\xb6\x1c\xb9\x05\xa5\xb3\xa7\x63\x31\x25\xe4\xaa\x30\x5b\x46\x55\x96\x2d\xa2\x49\xb1\xcc\x33\xba\x62\x94\x59\x1d\xcd\x8a\x49\xf4\x09\xdf\x63\xa5\x01\xf4\x5e\x1c\x4b\xe3\xe8\xb3\x9f\x6f\x6e\x8a\xb3\x9f\xe3\x18\xdc\xa1\x85\xfa\x7e\x8c\x1e\x82\xb2\x65\xbf\x3f\x98\x15\x93\x58\x3e\xb7\x41\x13\xc5\xd9\xcf\x61\xf8\x38\x3e\x0c\x95\xff\x1b\xd1\xe4\x78\x56\x4c\x4e\xe4\xb3\xef\xdb\x29\xf8\xa1\x8e\xe3\x38\x40\x53\x54\x20\x9f\x71\x71\xf6\x33\xdd\x40\x43\xd9\x40\xb8\x16\xf5\x97\x59\x2d\x59\xbc\xcb\x8b\x7c\x96\x0d\x0e\x0e\x66\xc5\x84\xda\x80\x9a\x63\xec\xac\xfc\x74\x7b\xdc\xa8\x97\x79\x39\x13\xfd\xbe\xfc\x25\x5d\x35\x02\xe6\x0a\x13\xa8\xd0\xad\x47\x56\x53\x9c\xfd\xcc\x9f\x56\x9e\x25\x35\x1e\x02\xe8\x4b\x45\x9c\x75\xa2\x92\xf3\xac\xfe\x98\xcf\xb3\x41\xa8\x7d\x8d\xc4\xeb\x86\x7b\x79\x16\x8d\x82\xa2\x8d\x00\xbf\x48\xaa\xb7\x3a\x14\x9d\x00\x09\x43\xe9\xc4\x79\x84\x91\x78\x8d\x37\xca\x87\x30\x86\xa7\xa7\x81\x86\x12\x43\xf0\x09\xdd\x67\x65\xcb\x1f\xd4\x1a\x80\x34\x77\x58\x8e\x65\x56\xd3\xa8\x11\x17\xf9\xf8\xe8\x08\xce\xc2\x11\x12\x13\xca\x4c\x45\x08\x12\xcb\xa7\x69\xa1\x5a\x6a\x09\x1a\x2b\x10\xba\xb9\xeb\x2a\xdb\x30\x5b\x1a\x58\xcf\x97\x92\xc0\x5b\x1b\x00\x06\x64\x7c\x82\x27\x3f\xff\x00\xe1\x43\x1b\x0d\x15\x5c\xf6\xd8\x4f\xbb\xba\x68\x4d\x5e\x3d\xff\xbc\x4a\x66\x7a\x28\x28\x61\x90\x44\x67\xa8\x7e\xd6\xef\x6b\x4d\x87\x58\x8d\x46\x32\x24\x40\xd9\x35\x95\x30\x38\x43\x53\x7d\x7b\xd5\xf5\xfb\x67\xde\x85\x88\x85\xd5\x02\x8c\xe3\xf8\x4c\x7f\xa9\xd7\x2a\x91\x6c\x7a\x61\x94\x98\xd3\xdf\xd6\xa1\xc9\xae\xea\x07\xaa\x03\x9b\x2f\x27\xe8\xd2\xe2\x54\x3b\xf7\x68\xbb\x6f\xdc\xfe\x78\xb8\x75\x50\xff\xae\xc8\xf5\x1e\x03\x5f\x2f\xeb\xfd\xc8\x66\xbd\xa5\x41\x2e\x7a\x83\xd5\x2e\x33\xb4\x75\xee\x0b\xea\xe7\x3b\xe5\x7f\x4c\xa6\x68\x70\x31\xe5\x28\x5e\x7a\xfe\x7f\x3e\x3e\x7f\xf3\xec\xf4\xdd\xfb\xb7\x1f\xdf\x7e\xfc\xef\x77\xcf\x3f\x88\x45\x53\xae\xb2\x9b\x9b\x96\xfc\xa1\xac\x2d\x5c\x3b\x2d\xb5\xba\x95\x11\x04\x4a\x49\xba\xf0\xed\x59\xef\x77\xdb\x3d\x84\x38\x41\xb4\x7e\x7b\x33\x72\x9b\x21\x0f\x08\x95\xdd\x4c\x92\xa6\x7f\x4d\xea\xc9\x05\x73\xf3\xc9\x23\x82\x85\xeb\x4b\xcc\x95\x74\xa8\x22\xfd\x7a\x4a\x8e\xc7\x27\xd6\x43\xb5\xad\xba\x86\xcf\xd3\x8e\x1f\x15\x05\x36\xce\xc1\x93\x8b\x85\x84\x14\x24\x9e\xc2\xca\x3c\x95\xd8\x9f\x9e\xc6\xd4\xf0\x88\x49\x96\xbb\xfa\xfb\x72\x3e\xcf\xd2\x3c\xa9\xb3\x99\x31\xc2\x86\x24\x23\x76\x70\xce\xbf\x9f\xa1\xe8\x82\xae\x03\x31\x47\xd7\xf0\xb3\x26\xdb\xb1\xee\x00\x5b\xcc\x04\x86\x04\xf9\xd7\x9e\x0f\xec\xc3\x0e\xb3\xb2\xb0\xfb\x9b\x7d\x11\x8d\xb6\x5a\x6a\x18\xad\xce\xf2\xaa\xce\x16\x62\x11\x60\x29\xa3\xb5\xf6\xa3\x43\xd0\xc7\xb2\xfa\xb2\xdc\x82\x36\xce\x8a\xf3\xf3\xec\xd6\xef\x9b\x77\x96\x58\xbc\x82\xe6\x37\x51\xbd\xf7\x1f\xfe\xf2\x2e\x26\x05\xe8\xd7\x45\xba\x9a\x65\x83\x00\xfa\x87\xb7\xcd\x8f\x59\x55\x47\x75\x56\xd5\x98\x87\xf2\x5d\xec\xa4\x48\xcd\x17\xe7\x0f\xc4\xdf\x60\x24\xea\x19\x16\x0b\x78\xd2\x7d\x86\x2d\xe8\xd9\x81\x54\x38\x1f\xe1\x17\x3f\xd8\x9e\xab\x2c\xa4\x77\x54\x2b\x32\x4f\xa2\xf5\x7e\x1f\x33\x4e\x4f\x67\x45\x92\x66\xe5\xb0\xcc\xce\xf3\xaa\x2e\xaf\xc7\x26\x5a\x27\xe1\x5a\x80\x5b\x7d\x31\x61\x42\xd6\x7b\xc1\x19\x61\xfd\xe2\xff\x61\x92\x26\xcb\x3a\x2b\xb1\x12\xf9\x35\xcc\xae\x26\xd9\x92\x75\x01\xd9\x3d\x94\x52\x43\x8a\x66\x40\x11\x4b\x1a\x81\x70\x6d\x7c\x1a\xa5\x71\x5e\x86\x2c\x63\x58\xd5\x60\xfc\xd7\x34\x72\x18\x07\x01\xbd\x8d\x7b\x86\x35\x6c\xbb\x55\x0a\xd8\xce\x75\x8b\x0c\x66\xe7\xca\xb5\xbd\xca\x60\x89\xed\x17\xee\x6d\x17\xeb\x74\xee\x8a\xd7\xa6\x73\x14\xaf\x5d\x3a\x39\x97\x18\xd1\xaa\x98\x38\x39\xb3\x62\x82\x87\x79\x32\xcf\x66\xf9\x3f\x1c\x6f\x2c\x43\x99\x41\xb1\xba\x5a\xe1\x74\x16\x42\x26\xd5\x45\x56\x7a\x01\x65\x0e\x19\xc2\xa5\x59\x59\x89\x21\x75\x00\x75\x16\x61\xb8\xcc\xeb\xa4\x05\x47\x99\x85\x90\xb3\xa4\xaa\xf2\xa9\x23\x68\x18\xca\x0c\x7c\xcd\x87\xa9\xd2\x4c\x07\x7e\xdf\x0f\xcb\x81\x75\x85\x6b\xab\x0d\x31\x43\xb1\xfb\x6e\x36\x9d\xd7\xee\xd1\x65\x17\xbd\xf4\x14\xbc\x1c\x90\x2f\x59\x1b\x58\xcc\xb4\x0b\x3e\x2b\x26\x9b\xdb\x51\x13\xec\x96\x97\x59\x6d\xad\xb2\xd5\xe1\x16\xd6\x99\xad\xc5\xd5\x92\xf1\x94\x96\x79\x6d\x85\xd9\x3a\x72\x4b\xeb\xcc\xb6\xe2\x6a\xc9\x78\x7a\x4d\x59\xad\x45\xf5\xba\xf4\x0d\x99\xcc\xa4\xe2\xed\x07\x25\xfa\x9d\xda\x49\x4e\x75\x57\xa9\xd2\x3d\x4a\x89\x3c\x02\x9b\x87\xa6\xc0\x06\xdc\xfc\x90\xf0\x55\xfc\x86\x87\x4d\xf1\xe3\xe6\x06\xa1\x86\x79\xf5\x21\x27\xf7\x1e\x4a\x9b\x0e\x07\x99\xab\x6b\x07\x93\x62\x51\xd5\xe5\x6a\x52\x83\x2e\x94\x29\x2b\x08\xa2\x00\x14\x28\xb1\xd8\xdb\x69\x10\x05\x92\x59\x7f\x59\xe9\x2e\x05\x51\x00\xa6\xe7\x00\x50\x17\xaf\x8a\x49\x32\xcb\x3e\x10\xb5\x0f\xea\xe2\x83\x24\xe3\x82\xcf\x7b\xc7\xd4\x5b\xcd\xd0\xd3\xa8\x0a\xf7\x89\x3c\x40\xb6\x4b\x25\x70\x31\x90\xe4\x02\x12\xe1\xfd\x8b\x67\xb4\x88\xb1\x06\xba\x09\x2d\x4b\x62\x66\x03\xae\xb4\xc4\x30\x1d\xe8\xf7\x5b\xe5\x29\x54\x15\xea\xee\x01\x3b\xfb\x09\x7c\x6d\x7c\xe2\x3e\x46\x61\xd2\x40\xc4\xa0\x6e\x45\xe3\x13\x90\x94\xd9\xa2\x1b\x7b\xa0\x60\x7c\xc4\xc5\x08\x6a\x35\x19\x7e\xcf\xb4\x3a\xac\xbf\x18\x28\x0f\xdc\x38\x3f\x19\x75\x37\xc5\xc4\x32\x6d\x72\x19\xd1\xa9\xd6\x6d\xd8\xf2\xae\x37\xde\xe8\x79\xcf\xf7\x7a\xd8\xa1\x86\xa8\xf6\xf3\xd7\x10\x07\x77\x6d\x6c\xd7\xe9\x9a\x67\x3b\xbb\x82\xfd\x87\xc6\xb3\x5b\x97\x53\x36\x8f\xc0\xf8\x5b\x53\x60\x6c\x3e\xc7\x19\x2f\x63\x6b\x40\x8f\xdd\x8d\x8e\xc7\xc1\x29\x4e\x86\x18\xa3\xcb\x7c\x36\x7b\x2d\x20\xa0\xd0\xb1\xe1\x39\x9d\xe4\xb9\x17\x49\x75\x01\x81\x5e\xc0\x3b\xbc\x48\x1f\xca\x0a\x94\xfb\xe4\xb7\x53\x2c\x31\x94\x19\x31\xf7\x7c\x29\x6b\x88\x03\xd9\xb0\x62\x5a\x8d\xc2\x78\x0f\x6a\x2b\x8b\xb9\x81\x60\x9b\x65\x22\x06\x07\xd1\xf8\x90\x7e\xaf\x99\x78\x73\xb3\x6e\x40\xa5\xbe\x1a\xcb\x72\x27\x61\x43\x06\xa6\x56\x3a\x44\x6b\xb9\xc3\x63\x1a\x3d\x20\x8e\x94\xda\x07\xe1\xd0\xef\x1b\x9f\xfc\xb9\x8d\x39\x19\xf6\xe4\x3a\x8f\x71\xc4\x2a\x85\x6b\xee\x64\x5a\x5f\x02\xf6\x90\x83\x7a\xf1\xfc\xc9\xc7\x3f\xbf\x7f\xfe\x61\x98\x57\xcf\x17\x82\x08\xa6\x6a\x5b\x16\x2b\x71\xbd\x39\x48\xcb\x62\x79\xa0\x9f\x10\x0f\xb0\xcd\x83\xaa\xbe\x9e\x65\x41\x48\xf8\x9a\x4f\x8c\xde\x44\x7a\xbc\xec\xca\xe3\x83\xa8\x7b\x6b\x82\xf2\x7e\xb6\x0c\x6f\xd8\xd6\x77\x51\x23\x0c\x3b\x53\xa4\xc1\x84\x20\x0c\x49\xd9\x65\x58\xb1\x46\x20\x85\x33\x6d\x82\x89\x68\xd3\xcb\xe4\x5b\x6b\x23\x91\x43\x07\x98\x5f\x49\x9b\xba\x45\x89\x39\xaf\x4e\x17\xc5\xc2\xbd\x41\x11\x4e\x19\x3f\xa4\x77\xe0\x85\x3a\xc9\x2f\xed\x45\xab\x42\x5f\x22\x88\x52\x90\x0d\xf8\x55\xe8\x61\x6c\xd2\xb2\x36\xbd\x3c\xfa\x3c\x7d\xfe\x62\x7a\xd8\x5e\xf9\xf0\xb7\xb6\x7c\x18\x3c\xff\xdb\x3e\x38\x01\x8a\x32\xe8\x1d\xe1\x4d\xb1\x70\xdf\x03\x31\x99\xc2\x30\x7b\xf2\x17\x32\x57\xb3\x57\xf7\xec\xc4\xd3\x3d\x28\xbf\x33\x0e\x4a\x92\xae\xb8\x2a\xdd\x32\x63\x44\x8c\x2e\x2c\x54\x1d\xf3\xca\x71\xf7\xe9\x82\x18\x25\x95\x2a\x6d\x6b\x41\x05\x21\x3d\x8b\xbe\x02\x81\x9e\x3d\xff\x87\xe8\x5a\x54\x66\x52\x27\xe6\xc5\x97\xac\x1d\xde\xcc\xa7\x85\xb1\x48\x9f\x8b\x0d\xe6\x42\xab\xac\x11\x1d\xd7\xb2\x60\xe5\xc2\xf2\x5c\x5a\x08\x7f\xa5\x1d\xea\x3a\x2c\xd5\x79\xd2\xc3\x9b\xf3\x3a\x3c\x4f\x96\x6d\x94\xd3\x60\x43\x74\xb9\x68\x8d\xac\xe9\xb1\x9c\xb0\x41\xa8\xd4\xcd\x2d\x3d\x73\xd4\xe5\xfe\xfe\xf0\xe6\x06\x54\xba\x5d\x5d\xf3\x90\xdd\x47\xc1\x33\xc6\xc8\xd6\x6d\x17\xf5\x48\x75\xf6\xca\x68\x00\x7d\x93\x49\xbb\xff\xd9\x14\x03\x79\x31\xcf\x78\x04\x11\x99\x38\x49\x85\xc6\x6c\x36\x35\xb5\xd1\x9b\xb0\x89\x16\xd9\x55\x8d\x37\xb2\x63\x6f\x29\x92\xb1\xf3\x52\x51\x30\x3e\x09\x3c\x4a\xc0\x9f\xb4\xb3\x31\x6f\x08\x3a\x0a\xf3\x85\x9a\xcd\x87\x91\x3b\x36\x54\xda\x90\x2a\x87\xd1\x34\x2f\x2b\x89\x62\x87\xe6\xb1\x89\xe8\x61\xd8\x84\xd1\x2c\xd9\xbd\xa0\x8b\xd5\xc1\x91\xa8\x4b\x3a\x41\x30\x6c\x13\xec\x90\x16\x78\x5f\x13\x19\x8f\xe3\xc3\x06\x03\xad\xeb\x02\x67\xd9\x79\xbe\x40\xef\x76\xd9\x22\xa5\x00\xec\xf2\x4e\xa5\x14\xa7\xed\xc0\xf3\x96\xa9\x82\x58\x60\x40\xf1\x58\x75\x61\xa8\x7f\xc7\x87\x0c\x44\x35\x73\x73\x23\x7f\x3e\x26\x55\x52\xf9\x1d\x6b\x0f\x27\xba\x92\xef\x0f\x79\x8d\x14\xdb\x56\xa7\x08\x60\x59\xfe\xfb\x43\xbb\xaa\x7d\xf9\x4d\x1a\x0a\xac\x5a\xdd\xed\x32\xab\xc7\x5a\x97\x81\xa2\x4a\xa8\x49\xd0\x45\xf6\xf7\x8d\xeb\x5c\x44\x63\x6c\x5b\x88\x44\x55\x9d\x94\xf5\x13\xb2\x11\xc8\x53\x08\x84\xdb\x32\x7c\x04\x6a\x78\xa7\x91\x69\x87\x0c\xe0\xfb\x43\x99\xbc\x2f\x7a\x06\xd7\x5d\x30\xb4\xc6\xc4\x11\xd9\x6a\x88\xbf\xe2\xb6\x2a\x99\x44\x63\xaf\xc4\x71\x4c\xc6\x19\x32\xf8\x6f\x7a\x45\xfd\x39\x38\x6a\x60\x81\xbe\xfc\x2a\x3d\xba\xb9\xa1\xc4\xc7\x02\x77\xd5\xbf\x59\xb6\x38\x38\xda\xad\x8f\x8f\xc5\xa0\xa4\x57\x07\x07\xb7\xeb\x62\x92\x9a\xc1\xeb\x74\x3f\x89\xa7\x2d\x96\x35\x91\xb4\x4b\x7d\xf2\x89\xc4\x7e\x5f\xfc\x3f\xd4\xa9\x37\x37\xa8\x23\xa3\x8f\xbf\x20\x4a\xd5\x99\xc7\x8a\xa8\x44\x59\x42\x9d\x7b\x81\x3c\x6f\x54\x78\x32\x36\xa4\x17\x49\x65\xc6\xd9\xc3\xd1\xdd\xe3\xe0\x61\x4b\x68\x4a\x7f\x69\x76\x88\x12\xd4\x7f\x61\xe8\xf8\x33\x78\xb6\x0b\xe8\xee\x15\xe9\x3e\x76\x94\x99\x50\x97\xa9\x8c\xea\x64\x07\x92\x66\xfc\x49\x3f\x8e\x9c\xd8\x92\xb1\xc8\xbf\xf8\x84\xdd\x7e\xbe\x4c\x26\x66\xeb\x29\xeb\x2a\xd6\x39\x6b\xf7\x33\x69\x0e\x40\xd7\x69\xc7\xb9\x29\x2f\xa6\xe1\xcd\x4d\x3b\x0c\x0d\x82\x38\x10\xb9\x11\x97\x1e\x5c\xbd\x5a\x80\x84\xbc\x54\x06\x48\x4f\xe6\x60\x7f\xf4\x64\x8e\xa1\xd4\x65\xae\xe9\x23\x4c\xa5\x1e\x8e\x54\xa9\x18\x4b\xc5\x07\xe4\x68\x12\xec\xdc\x65\x1e\x2f\xad\x53\x91\xc4\x51\x39\x0e\xa2\xab\x82\x33\x52\xb2\x8a\xb2\x8f\xe0\xc0\x21\x0c\xd7\x7a\x85\x51\x52\xa3\xf8\x55\xff\x9a\x18\xa3\x93\x83\xb6\x1e\x9f\x84\x9a\x85\xce\x17\xe7\xd1\x2c\x9f\x8f\xd8\x18\x80\xe5\x9f\x2a\x03\x5f\xc6\x1a\xd7\x8c\x28\x5b\x02\xe1\x5a\x56\x17\x8f\x4f\x46\xb3\x7c\x1e\xcb\xea\xf6\x55\x55\x5a\x11\x41\x92\xf4\x97\xe9\x15\x9e\x5b\x02\x03\x38\xb7\x64\x2d\x28\xff\x75\xc9\xbb\xd2\xd6\xa3\xc6\x54\xe5\xa8\x8f\xa0\x6f\xe4\xce\x52\x18\xa8\xfe\xd2\xbc\x9b\xab\x76\x83\x11\xe0\xaf\x7b\xf9\xd0\xf5\xa9\x6d\x32\x11\x70\xeb\x99\xc4\x9a\x9c\x79\xc4\x5a\xb6\x99\x44\xac\x60\xc3\x14\x52\x2b\x58\x6b\xcb\xec\x69\xda\x63\x0c\x7b\xbe\x38\x0f\x47\x2d\x7b\x40\x12\xb8\xed\xf6\x40\x2b\x63\x1b\xc1\x5d\x3f\x7d\x21\x98\xfd\x58\xde\xfb\x09\x86\xdd\x00\x14\xe0\xab\xc4\x85\xd3\xfc\x3e\x1e\x04\xf6\x95\x60\x8f\xa2\x53\x63\x2b\xad\x61\xa6\xad\x06\x47\x6d\x84\xd9\x80\x6a\x9c\xf6\xb0\x67\x07\x47\xba\x59\x81\x73\x47\xab\x06\xfa\x6d\x8d\x72\xa0\xc6\xd8\x50\x44\xac\xbc\xc4\x5f\x05\xcd\x3c\x3d\x15\x40\x78\x7c\x53\xa0\xb2\xab\x6b\x5b\x97\xc5\xab\xd6\x20\xca\x91\x3d\x41\x38\x0e\x54\xd9\xe0\x64\xc4\x2a\x06\x95\x5f\x95\x47\xef\x9d\xfc\x8e\x84\x60\x4d\xd8\x61\xf4\xa5\xb4\xe8\xe7\xcb\x84\x84\x80\x63\xbf\x98\x6f\x1b\xe1\x5c\x97\xe8\xcb\x6f\xba\xb0\x41\x70\x73\xc4\x05\x37\xdb\xc8\x11\xd6\xe4\xee\x45\x4b\x0f\x94\x36\xe2\x36\xa3\xb0\xbd\xd5\xd8\x5d\x64\xb8\x3b\x8d\xe9\x26\x81\xe7\x57\x15\x37\xba\x93\xf6\x48\x4d\xda\x56\xd3\xb1\xe1\xfd\x88\x19\x27\xfa\x55\x0a\x51\xb0\x24\x26\xe1\xc3\x32\x9b\xe4\xd3\x3c\x4b\xe3\x3d\x7a\x65\x82\x64\x8c\xcf\x2c\x3e\x27\xd2\x29\xc0\x9e\x09\x2f\x1f\x81\x20\x35\x36\x60\x47\xc6\x2b\x8f\xf2\x53\x77\xd2\x74\xd9\x49\x3a\x86\x27\xe3\x7b\x90\xdd\x9b\xd2\x74\xab\xa9\x69\x99\x65\xff\xf0\x3a\x37\x31\xb5\xa0\x7e\x45\xce\x4b\xba\x56\xa5\xbd\xe0\x8e\x3a\xe4\xdb\x0f\x99\x7c\xdb\x4b\x21\x1e\xd9\xa2\xdd\x17\x72\xb0\x1c\x01\xb7\xca\xd9\xb8\xb4\x7d\x0a\x5f\xbf\x65\x0a\x5f\xdb\x85\xa8\xda\x92\x5e\x2d\xaf\x3d\xc4\x2a\x9a\x96\xc5\x3f\xb2\xc5\x53\x91\x6b\x1e\x2d\xaa\x17\xfd\xbe\xfa\x29\x6d\x13\xe0\x08\xf0\x39\xf0\xa8\x5e\x40\x75\x41\xf8\x83\x48\x38\x26\x07\x15\xcb\xeb\x41\x38\x84\xc5\xa5\x82\xd2\x7a\xed\xdb\xa7\xf3\x7a\x10\xfc\xff\xfe\xab\x97\x16\x66\x6c\xcc\x1e\x94\x45\x8d\x3d\x51\xe5\x49\x18\x6e\xb3\x73\xd2\x6c\x9a\x95\x65\x96\xde\x13\x11\xdd\xfc\x02\xe6\x84\xc9\x73\x75\x65\x7f\x7d\xbb\xe4\xab\xd2\xee\xed\x9f\x8b\xec\xa0\x69\x1e\x37\x3d\xa0\xa1\xbb\xe1\x95\x27\xa9\xae\x17\x93\x0f\x82\x5f\xb5\x82\x2b\xa3\x28\x96\xeb\xd1\x9a\xda\xae\x6e\xda\x50\xd7\x35\x08\x9b\x46\x57\xff\x7c\x91\xde\x53\xe5\xcf\x17\x29\x54\x0d\xca\xad\x93\x62\x31\xcd\xcf\x57\x65\x36\x08\x20\x33\xd0\x2b\x44\x86\xc5\x88\x96\x65\x31\xcf\x2b\xa9\x03\x20\xa0\xe2\xbd\x72\xb5\x18\x4e\x56\x65\x99\x2d\xea\xf7\xab\xc5\xab\xa2\x58\x8e\x6c\x25\xe2\x7e\x1f\x60\xc3\xb5\xd1\x25\x51\x50\xd4\x7a\xb6\x2a\x17\x59\x39\xac\x04\x37\x0b\xac\xa2\xd4\x8e\x88\x7c\xbd\xf4\x56\x89\x1d\x91\x68\x0e\x24\x9a\xb0\x47\xa1\x73\xef\x30\x85\xd9\x89\x4c\x93\x7c\x16\xbb\x3d\x9c\x25\x67\xd9\xcc\x10\xc1\x8f\x83\x89\xb8\xd2\x07\x27\x36\x50\xb3\x1d\xe5\xab\x2f\x32\xc6\x10\x90\xe3\x8c\xa8\xcc\x40\x20\x4b\xcd\xa1\x0e\x2c\x92\x0b\x39\xc8\x51\xb6\xa8\xf3\xfa\x7a\x84\x7f\xf0\x59\x46\xc2\xb0\xbb\xce\xa9\x22\x33\xc0\xdf\x8b\x92\xb1\x4c\x1a\x52\x02\x8b\xec\xb2\x9a\x4d\xf3\xd9\x4c\x30\x1d\xf4\x96\x3f\x60\x49\x30\xcc\xec\x3b\x8e\x63\x35\xe3\x4a\x60\x0e\xf8\x0f\x10\x2b\x33\xc4\xb7\xcc\xe3\x35\x2a\xb7\x3f\x54\xd1\x50\x0c\x87\x1c\x85\x7e\xdf\xc5\xc7\x1c\x99\x26\x22\x50\x3d\x82\x2c\xf4\x8c\x3d\x64\xb7\x1e\x1f\xf9\xb4\x14\xc7\x30\xce\xe1\x5a\x41\xc8\x3e\xa9\x25\x05\x1d\x76\xb2\x11\xa9\xa6\x21\xec\x1d\x6c\xbd\xf8\x0c\x11\x58\x16\x8e\x54\x56\x97\xac\x0d\x96\x33\x00\x0e\x02\xd8\x11\xc7\xbd\x67\x54\x0c\xd6\x5d\xef\xa0\x17\xec\xe3\x1d\x69\x8b\xab\x00\xd7\x8a\xf8\x4a\xea\x1a\xdb\x2a\x55\x6c\xd0\xc3\x68\x39\xf3\x76\x52\xc5\xf8\x9f\x12\x75\xf5\x17\x53\xbd\x80\xbb\x8b\x73\x90\x42\x6a\xcb\x59\xfc\xdb\xcd\x97\xdf\xdf\xda\xac\x2d\x5c\x43\x5f\x67\xf5\x45\xe1\x02\xb2\xbc\x8d\x6a\x15\x9e\xf3\xd9\xcb\x0c\xfc\xde\x66\x06\x36\xa8\x4d\x7c\x77\x5b\xb5\x89\xef\x76\x56\x9b\xf8\xc3\x6e\x5a\x13\x7f\xd8\x45\x69\xe2\x0f\xdb\xeb\x4c\xfc\xc1\xa7\x32\xe1\x0d\x9d\x7a\xd8\x1e\x3a\xb5\xdd\x52\x33\x39\xdd\x64\x75\xff\x85\x9c\x1e\x65\x57\x75\x05\xd6\x70\xf2\x40\x5b\x16\xcb\xa7\xf5\x15\x53\x8c\x27\x20\x1d\x80\xec\xf0\x87\x75\x73\xac\x92\x97\xc5\x72\xc0\x1c\x1a\x2f\x57\xd5\x85\x28\x3f\xa9\xaf\xd0\x4b\x11\x02\xad\xaa\x0b\x48\x92\xd2\xe5\xc5\x6a\x36\xd3\x85\xf2\x3a\x2b\xb9\x62\x82\x40\x0e\x7e\xbe\x2b\x8b\x2f\x79\x9a\xa5\x8e\xe9\x61\x1c\xc7\x0f\x59\xe0\x25\xf2\x36\x0f\x9d\x5a\xa1\xdf\x2b\x70\x01\xfb\x29\xbb\x56\x4d\x1a\x15\xfe\x20\x4f\xa7\xc9\xaa\x3c\xde\xdb\x9b\xac\x4a\x79\xac\xe6\x6d\xca\xc8\x26\x13\xc2\x34\x32\x7c\x97\xb0\x0d\xda\x10\xf9\xd4\xa3\xc2\x00\x4e\xfe\x1d\xc5\x13\x36\x51\xb1\x9c\x9b\xa8\xcc\x6a\xd1\x2d\x7c\x90\xd7\xa8\x0c\x0e\x23\xed\x26\xe6\xaa\x0e\x47\x6a\x36\x64\x02\x7b\xa5\x0f\xd5\xce\x19\x04\xe3\x93\x60\xa3\x22\x06\x09\x86\x5b\x5e\xb7\x45\xce\xf6\xf8\xe7\xe9\x55\x7c\x18\x4d\x56\x25\x34\x0a\x76\xf4\xa3\xb4\x58\xc3\xc7\x64\x55\x8e\xc4\x24\xda\x7d\x03\x21\x3a\xc0\xab\xfe\x35\xa8\xbb\x30\x59\x95\x86\x0a\x4b\x6b\xb7\x45\x61\xb7\xdf\x5b\x28\x8d\x4c\xf3\x05\x1b\x0b\x23\x62\x9e\xf8\xc0\xd7\xf5\x26\xe4\x58\x34\x11\xb9\x20\x3c\x76\x79\x62\x7c\x66\x54\x4a\xce\xc5\x54\xc5\xfc\xdb\x33\xe2\x09\xe8\x4b\xf5\xc7\xeb\x65\x06\x77\xea\x51\xfb\x34\xe8\xb1\x8c\xec\x01\x1f\x69\x55\x56\x43\xd7\x07\x93\x60\xf8\xf9\x03\xc6\xa1\xad\x36\x01\x7a\x7b\xa2\x42\xcf\xa4\x98\x53\x32\xb2\xc2\x53\xe2\x83\xaa\x28\x01\x7e\x11\xd1\x42\x1b\x11\xcd\xae\xea\x46\x4f\xbf\x42\xb9\x65\xee\x50\x7c\x7e\x9e\xd5\xe6\x98\x7e\x62\x91\xce\x00\x39\x0c\x6e\x0a\x16\x06\x51\xe5\x81\x96\x34\xc6\x98\x5e\x72\x16\x69\xcd\x70\xc5\xc8\x08\x15\x6b\xc2\x26\x9a\x27\xcb\x8e\x39\x75\x55\x85\xfc\x4d\x80\xcb\xca\x28\x47\x25\x1b\x70\x70\xe7\x1d\x39\x09\xd6\x18\x7b\x37\x82\x5e\x76\x8f\x82\x6e\x4a\x8c\xb4\x21\xdc\x81\xe9\xf8\x84\x61\xe0\x22\x16\x35\xf5\x98\x31\x03\x83\x00\xda\x08\x64\x5c\xd1\xfb\xec\x72\x3e\x1d\x74\x76\x36\x04\xdb\x7d\x71\x66\x5c\xd9\x1d\xb7\xaf\x03\x0e\x32\xe6\xb6\x85\x38\x95\x0e\xcf\xbf\x67\xe8\x6b\xab\x2a\x98\xe2\x76\xd8\x44\x32\xfe\xe4\xe6\xd5\x83\xad\x30\x31\xb4\x38\xcf\x58\x6d\xaa\x32\xff\x38\xcb\x86\x82\x90\x7a\xd7\xd2\x26\xd8\x81\x5f\x25\x93\x1a\x9c\x88\x6f\x0a\xe0\xf9\x89\x07\xee\x8c\x2e\x92\xaa\xa3\xd4\xde\x9e\x51\xac\x89\x56\x55\xe6\x3d\x72\x7f\xd0\xed\x1f\xcb\x2a\xf9\x06\x95\x17\xb0\x95\xb8\xd8\x51\x6f\xfc\x9d\x96\x3d\x85\xf5\xc5\x0d\x23\xbc\xab\xab\xfd\xdc\xd9\x40\xd5\xa0\xb0\x22\x8b\xb0\xee\xa7\xc5\x6a\x91\xc6\xe8\xeb\xb4\x54\x1a\xd0\x16\xbd\xf4\x52\xc3\x7e\x7f\x0f\x0a\x4b\xaa\xb8\x25\x45\xcc\xa7\x03\x6c\x73\x0b\xd2\x18\xa2\x47\x9e\xab\x9a\xd1\x48\x68\x66\x7b\x42\x09\xdb\x44\x8c\xe9\x56\x4b\x77\x91\x6e\x5a\xb8\xca\xff\x81\xb3\x6c\x45\x13\x41\x18\x65\x5f\xb2\xf2\x7a\xe3\x8e\xdc\xf3\x1c\xa4\x9c\x06\x0a\x90\x0d\x14\xb0\xc1\xa6\x7e\xb4\x10\xc9\xab\xe7\x22\x59\x62\xe2\xc7\x56\x03\xd1\xaf\x8d\x63\x03\x95\x75\x0f\x4e\xb2\xe8\xea\x77\xc7\x49\xed\x30\x44\x7c\x51\x5a\xeb\x35\x4f\xaf\x5a\x16\xfa\x9a\xad\xf4\x46\x2a\x05\xde\x75\xb5\x6e\xbd\x54\x6f\xbf\x42\xa1\x89\x26\xaa\x8a\x79\x66\x4e\x52\xb2\xc0\x09\x7a\xb2\xd8\x3c\x3d\xc9\x62\xf3\xe4\xb8\x2b\xe5\x09\xb4\x20\x5a\x6e\x5b\x26\x08\x81\x21\xfc\x3d\x93\xcb\xc3\xf7\x13\x54\x69\x84\xe9\xeb\x64\xe8\xd6\x1e\x8e\xae\x91\xc7\x27\xaf\xba\xe5\x04\x05\x12\x8d\xfb\x45\x4d\x11\x78\xb5\xc1\x0c\x0c\x6b\x63\x63\xd5\xd0\x7c\x99\x1a\xba\x5f\x8a\x4f\xac\x7f\x73\xe8\xbf\x69\x8e\x16\x99\x67\xba\x27\xde\xda\xe3\xa3\xb0\x23\x80\xac\xf4\x01\xd9\xc2\x08\x50\x58\x38\x94\x4a\x5c\xf5\xfb\x57\x63\x8d\x04\x78\x5e\xf3\xb9\x9b\x42\x10\xc6\x34\x89\xf6\x7f\xc0\x75\x70\x15\x61\x2e\xda\xb3\x1d\x1b\xf5\x0d\xc2\xc6\x37\x0c\x75\x01\x77\x68\xdb\x1b\xf0\x36\xcc\x4c\x11\x49\x05\x7c\x44\xa4\xb0\x18\x15\xb8\xcc\x4f\x0c\xf7\xdd\x5d\xac\x89\xb9\xc2\x49\x2d\x1f\x36\x76\xd8\x44\x97\x79\x7d\x51\xac\x5c\x21\xa8\x52\x18\x51\xc1\xff\x30\x23\x64\x2d\x8d\xb6\xed\xd0\x27\xb4\x8d\xde\x23\x9e\x21\xb4\x95\xbf\x3f\x59\x1d\x5c\x2d\xf2\xcf\xb7\x19\x38\x6c\x47\x49\x28\x60\xf9\x7e\x0a\xbf\x3f\xd4\x4c\xdf\x27\x9b\xe9\xdb\x6c\xca\x60\x1a\x23\x24\x69\xea\x2a\x71\xdd\x4d\x45\x56\x0b\x53\x77\xd2\x93\xd5\xc5\xb6\x56\x96\xf5\xaa\x9f\xed\xa6\xe2\xec\xaf\xc2\xa3\xb3\xac\xd1\xdb\x51\xd9\x99\x15\xbc\x1f\x8d\x67\x3f\xca\x1e\xb5\xe7\xff\x81\x13\x7b\xc7\x79\xf5\x2b\x36\x6f\x37\xb5\x1b\xcb\xde\x8b\x66\xf4\x16\x93\xeb\x87\xda\x55\x47\xda\x45\xbc\x45\x51\xda\x1d\x9d\xb0\x09\xa3\x0e\x3d\x59\xfe\xe0\xa8\x15\x66\xc1\x77\x8c\x16\x21\x53\xf8\x06\xf1\xe7\x22\xa9\x9e\x65\xb3\x3a\x81\x83\x0c\xa3\x12\xb3\x63\x4c\xd6\x11\xaa\x72\xb1\x4c\x1a\xe9\x88\x9c\x0e\x8c\x58\x4e\xaa\x79\x7d\x0d\x82\x12\x6e\x4d\xa4\x22\xeb\xb6\x4e\x88\x23\xa6\x31\x7e\xa9\x66\xcd\x4c\x08\xbc\x8a\x2a\xb4\x56\x7b\x46\x69\xd1\x94\xec\x71\x8c\x39\xdf\x1f\xde\xdc\x28\x9c\xc4\x07\x26\x1f\xa8\xb4\xbd\x18\x0d\x79\x14\xba\x10\xf6\x50\x7d\x01\x27\xa9\xf0\xc1\x4c\xfa\x0d\x59\xad\xfb\x64\x7c\xa2\x76\x15\xe0\xd3\xbe\xa3\x54\x87\x1c\xa5\x59\xcf\xe6\x19\x13\x6f\x65\x4c\xfe\x89\xb5\x8a\xdb\x55\x75\xff\xbd\x7e\x7e\x65\xeb\xa7\x6b\xce\x4d\x6d\x69\x77\xce\x7d\xab\xcb\x51\x01\x96\xbd\x6d\x03\x80\x75\x6a\xac\x9e\xaa\x28\x0d\xd9\x8f\x0e\xb1\xfa\x53\x76\x5d\x69\x81\x8c\x21\x71\x21\x16\x76\x10\x42\xac\x36\x4d\x27\xc1\x6f\xab\xe9\xe3\x50\xd6\xa4\x7c\xb8\x48\xd1\xee\x27\x0a\x15\x2b\x32\xc7\xf9\x09\x38\xb5\xc0\x78\xd5\x09\x08\x84\x20\x01\x83\x54\x9f\xe1\x9b\x0a\x7b\xae\x42\xb9\x92\x8c\x96\x08\x45\x11\x9e\x42\x1d\x69\x20\xf6\xa6\xa4\x13\x59\xe8\xc2\xce\x28\x13\xf2\x7d\x5d\x4c\x99\xab\x02\xe6\x7d\xff\x56\x6f\xd5\xf7\xed\x72\x69\x93\x4a\x72\xdb\xe3\xe3\xc3\xdd\x1e\x1f\x1f\xfa\x1f\x1f\x5b\x1f\x15\x1f\xfa\x1e\x15\xfd\x4f\x95\x0f\x8d\xa7\xca\xad\x5e\xbc\x0a\xa6\x74\xb3\x48\xe6\x32\xa6\x41\x24\xaf\x64\x0e\x97\xe8\x01\x32\xd7\x7b\xb1\xc8\xba\xab\x14\x0c\xa4\xfc\x4d\x17\x45\xf2\x83\xc2\x25\x1f\x5b\x34\x1c\x81\x7b\x0f\xb3\xf5\xba\xcc\xcf\xcf\x39\xf7\xb8\x50\xb7\x5f\x12\x78\x3a\x3e\x41\x95\xa3\x16\x1d\xd3\x49\xd9\x0f\x30\x7f\xa2\x47\xa3\xfc\x7b\xbe\xc5\x44\x91\x71\x7e\x70\x74\x62\xfa\x47\xb5\x28\x10\x60\x0d\x57\xd7\x26\x2a\xa6\xd3\xee\x91\xf1\xf1\x6d\x1b\xc7\xfb\x22\xa9\xec\xde\xb6\xf2\x52\x90\xbd\xc5\x7e\x64\x2a\xc6\x9b\x77\xe4\x0e\xfa\x2e\x5f\x53\xc3\xfd\x3f\xb6\xd9\xc3\xb7\xd5\xe8\xd0\x6a\xc4\xe6\xf6\x91\xaa\xb4\x14\x65\x0b\xb5\x67\x8f\xdb\xde\x84\xb5\xe2\xad\x71\x97\xaf\x5c\x00\xcf\xd2\x36\x9d\xce\x68\xf5\xe5\xd8\x54\x64\x7e\xf1\xfe\xed\xff\x7d\xfe\xe6\xf4\xf9\xfb\xf7\x6f\xdf\xc7\x01\x56\x47\xc1\xe4\x7a\x93\x64\xb1\x28\xea\xde\x59\xd6\x9b\x17\x29\x68\xc3\x0f\x03\xb3\x52\x5e\x98\x7f\x6c\x5a\x30\xf3\x15\x04\x1b\x3c\xf5\xba\xb4\xb9\x3f\x85\x28\xa5\xc4\xbe\xad\xae\x3c\xe1\xd3\x8d\xb4\xc7\xe7\x4d\xa7\x57\x9c\x5f\xa3\x32\x54\xd7\xc1\xf6\xf6\xcf\x1f\x4f\xdf\xbe\x38\x7d\xff\xe4\xcd\x1f\x9f\x9f\x3e\xff\x3f\x4f\x9f\xbf\xfb\xf8\xf2\xed\x9b\x38\x00\xf3\xf7\x5e\xb1\xaa\x7b\x82\xf9\xd4\x97\xdd\xe7\xaf\xdf\x7d\xfc\xef\x78\xec\xd7\x81\xda\x56\x3d\x3f\x47\xc3\x58\x67\x47\x51\x7a\x97\xe2\xbc\x27\x20\xc5\xfd\x68\x4c\x41\x7b\x2e\x5a\x1e\x05\xa8\xd7\xb8\x34\x5a\xfc\xd6\x78\x1c\xd1\xb4\x40\x7e\xb7\xbb\x0d\x80\x46\x32\x72\xb0\x88\xd6\xe4\xc3\x83\xbb\x43\x81\x30\xf7\x36\x7f\xb9\xb5\x4e\x07\x50\xa0\xda\x74\x0f\x32\xcb\x16\x11\x2c\x02\xeb\xa8\x91\xe1\x9b\x7d\x01\x04\xa5\xff\x95\xc7\x1e\xbf\x2b\x5e\x33\x02\xff\xaa\x0c\x4d\x5c\x44\xfd\x87\xd1\x18\x9b\xb0\xef\x65\x32\xe4\xb1\x65\xb9\x2a\xd0\xc7\x28\x0f\xce\x1d\x07\xf2\xb5\x15\xab\xb8\x80\xc0\x0f\xaf\xb7\x18\xbf\xf5\x43\x0b\xda\x8d\x1a\x59\xfd\x92\x23\xbe\x8f\xcc\xfe\x28\x04\x69\x7c\x4d\x33\xc2\xe5\xaa\xba\xb0\x1d\xc2\x80\xd6\x4a\x8d\x3e\x4e\x28\x78\xb6\xe7\xe9\x09\x62\x64\xe8\x30\x14\xbc\xaa\xca\x76\x6f\x81\x7e\xf8\xf6\x98\x93\x1d\x16\xcc\x02\xf2\x6f\x6e\x68\x97\xaa\x94\xd0\xfb\xc8\x31\x08\x5e\xaf\xaa\xba\xb7\x4c\xaa\x8a\xa2\x4f\xea\x3a\x7b\x75\x41\x69\xb4\x8a\xa1\xc2\xdf\x30\xbc\x02\xf2\xab\x2e\xc7\xc6\xd3\xad\x43\xe9\x8b\xc7\x9a\xf9\x65\xb1\xb4\xc7\x69\xc7\x65\xaf\xde\x91\x95\xc2\x15\x37\x1e\x3d\x38\x52\xeb\x90\xa2\x6a\x43\x62\x74\x64\x4a\xb0\xab\x8b\x7c\xea\x78\xf0\xd9\x42\x0f\xac\xa3\xf1\x43\xbb\xe1\x43\x5b\x3e\xef\x6d\xd4\xb3\x4a\x0e\xdd\x45\x61\x14\xf6\xad\x0b\x8b\x0e\xb4\x0d\x7f\x99\x7d\xc9\xca\x2a\x73\xea\xb9\x0d\xe9\xf9\xa2\xe2\xf9\x52\x44\x46\x7d\xf5\xa5\x66\x06\xa1\x8f\x3e\xf9\x31\xab\xb2\x8e\xde\x61\xbc\x1c\xf1\x9b\xa9\x3d\x72\x64\x86\x40\x4a\xb5\x1f\x20\x5f\x37\xb6\x46\x05\x67\xd0\x3b\x51\x5f\xc8\x1b\xb8\x5b\xfd\xcd\xcd\xa1\x1d\x5c\x48\xea\x3f\x52\x84\x27\x6b\xad\x16\x13\xbc\x90\xab\x7c\x50\x5a\x0b\xad\xc5\x5b\x4c\x2c\x4a\x93\xa4\xa9\x17\x33\xf7\xed\x09\x02\xdc\x40\x92\xde\xba\x03\xbe\xb2\x88\x39\xdd\x96\x43\x6c\x57\xa5\xdf\x18\xfe\x7d\x93\x8b\xc2\x2d\x7d\x10\xfe\xb3\x3d\xbe\xee\xe8\xca\xb9\x85\x93\xf0\xc4\x42\xd8\x64\xd2\xb5\x9d\x85\x24\x38\x7c\x92\xcf\xca\x28\xcb\x72\x82\xb6\x0f\x7d\x40\x50\x3a\xd3\x8a\x24\x6d\x65\x5d\x10\xb4\xa8\xdc\x10\x1d\x7d\x57\x3f\x71\x7a\x49\x7b\x54\x77\x55\xa6\x8f\x2e\xf8\x3a\x47\x51\x67\xe4\x3b\x27\xc1\x46\x1e\x82\xab\xaa\x86\x34\xf9\x1e\xed\x76\xda\x8c\x63\xe3\xa1\x11\x1e\xb4\x79\xfe\xee\x98\x93\xe0\xc2\xa4\x79\x07\x47\xa3\x1c\xfc\x4a\x1d\x1c\x28\x7a\xaf\x1b\x91\x55\x8f\xf3\x93\xb0\xd9\xaa\x0f\x9b\x77\x3e\xc6\x4b\xf9\xa7\x1b\xcf\x9c\x67\x75\x7b\x9c\xa7\xaa\x2b\xb3\x5b\xec\xb8\xb5\x55\x0d\xc5\x89\xb1\xef\xab\x9b\xfd\xb2\xfe\x1a\xef\x97\x1b\x8d\x6d\x4c\x67\x90\x66\xc2\x3d\x45\x88\xe9\x12\xde\x9c\x67\xf5\x5f\xf3\xfa\x42\x86\x72\xf1\x80\xb1\xec\x3b\x1b\xf0\x9c\x67\x75\x4b\xa0\x2e\x8f\x41\x6c\xd5\x0a\xec\xbb\x78\x3a\x34\xfd\xf7\x06\x4d\x6f\x15\x13\x7f\xe7\x13\x13\x6f\xa4\xed\x7f\xe8\xa2\xed\xff\x7c\xb7\xa8\x1b\x4e\x93\x3f\xb4\x9f\x26\x40\x85\x71\xbf\x79\x1d\xaa\xca\x4c\x09\x8c\xc1\x9b\x3a\x8b\x98\x20\x4c\xac\xdf\x5e\xca\xcc\x27\xde\x96\x5e\xbd\x6d\x27\xbb\x50\x80\xe7\xb6\xfb\xe3\x05\xf7\xaa\x9b\x1c\xf2\x8a\x5d\xc6\x3d\xf2\x76\x59\x13\x6d\xf5\x34\x70\x9e\xd5\x86\xbe\x1e\x8f\x30\xac\xbd\x09\xc8\x0c\xd0\xe2\x67\x7e\xe3\xdd\xa7\x7d\xd4\xe7\x02\x15\x48\x03\x94\xbc\x05\x08\x96\x73\x92\xd4\x03\xbf\x33\x6f\xd4\xfb\x77\xf0\x91\x9a\x42\x95\x85\x8e\xcf\x9d\x69\x54\xf9\x11\xbc\x48\xaa\x0b\xe6\xa9\x95\xc1\x60\x95\x90\xdf\x44\xbe\x6d\xc2\x7b\xe9\x3d\x8b\x9d\x97\x64\x7b\xf1\xf2\x1a\x3c\xe7\xad\x7d\xef\x75\xb6\x9b\x67\x86\xda\x5e\xc6\x25\x80\xbf\x4a\xcf\x9b\xb6\x53\xa3\xf5\xd8\xe9\xaf\x70\x51\xd4\xf9\xf4\xda\xec\x88\xa7\x4e\xbc\x52\xb8\xa8\xaa\x4a\x0d\x00\xdd\xb2\xbf\x51\x67\xbb\x9a\x9a\xa6\xee\xa3\x96\x09\xad\xfa\x63\x41\xd2\x45\x69\xbb\x2a\x37\x57\x66\x92\x87\xce\xfa\x4c\xd0\xf6\x2a\x99\xb2\xce\x8b\xa2\xf4\xdb\x8e\xb8\xef\x40\x9f\xb2\xeb\xfd\x40\x29\xd3\xc0\xd6\x65\xc7\xa3\xbb\xcb\x88\x44\x98\xef\xbd\x66\x21\x73\xfb\x19\x05\x9a\x28\x5f\x4c\xca\x4c\xec\x64\xa5\x9f\xeb\x34\xa1\x40\x50\x90\x88\x4e\x74\x75\x62\xb8\x56\xbf\xe3\xa3\xc6\xd9\xee\x83\x65\x52\x56\xd9\x8b\x59\x91\x30\xf1\x98\x5c\x2a\xe2\x56\x1d\xee\xeb\xba\x1c\xb7\xcf\x9a\x86\xa5\xd9\x46\x44\x15\x08\x47\x54\x27\x86\x6b\xf5\xdb\x8b\xa8\xd3\xa8\x40\xee\x40\x97\xef\x40\xae\x2e\xce\xcf\x67\x59\x2b\x66\x1e\x2a\xb8\xe7\x8e\x45\x47\xfd\xf2\x84\x69\xa7\xfa\xa6\xd3\x37\x5d\x92\x1f\x63\x3f\x65\x3e\xd4\x94\x18\x4a\x03\x5a\x95\x6c\xbe\x48\x90\x73\x01\x19\x59\xfd\x3e\x1e\x99\x5a\x98\x71\xef\x0d\xe0\x9f\xe9\x40\xe9\x6b\x38\x4c\xda\x2e\x60\xac\xcb\x80\x7e\x6b\x30\xa0\x2d\x6f\x36\x1e\xbe\x77\x51\xe8\x20\xae\xc3\x45\x81\x48\x14\xa5\x4e\x2b\x4a\x6d\xec\x5b\x27\xcb\x01\xcc\xab\x76\x9e\x22\x56\x33\x26\x05\x79\xf5\x02\x3d\x60\x88\x99\x82\xa7\xd6\x70\x64\x64\xbf\x07\xc3\x23\x96\xeb\x73\xa7\x61\x2b\x5a\xb7\x35\x80\x6f\xaf\x2c\x57\x7a\x02\xb3\xb8\x0a\xb2\xc2\x62\x3a\x60\x49\x55\x2c\xac\x7a\x35\x66\x4e\xb5\x08\x1f\x44\x54\x6e\x84\x12\x76\xfc\x6a\x22\xe9\xb6\x82\x7c\xb2\xa0\xc7\xbf\x70\x3b\x3b\x66\xac\x03\x63\x4c\xe7\xd5\xbb\x6c\x91\xe6\x8b\xf3\xe3\x45\x51\x0f\x82\xbc\xfa\x90\xd5\xf5\x8c\x1c\x6b\x24\xe9\xdb\xc5\xec\x7a\x10\x46\x2a\xf9\xb8\x28\x07\x06\xda\xc6\xd8\x58\x65\x24\x14\x3d\x7f\x33\x48\x4a\xa1\xf1\x6f\x51\xf3\x56\x53\xed\xb1\x42\x88\xe3\xf8\xa1\xd6\x00\x4f\x96\x48\x2d\x4c\xff\x22\xde\x07\x9a\x80\x0f\xd8\x37\x95\x5c\x02\xbd\xf9\xaa\x82\xa7\x6f\x41\x04\x04\xb5\x89\xc0\xe3\x0c\xe5\x3e\x99\xe5\x49\x35\x08\x44\x52\x10\x46\xe4\xca\xc6\xca\xc4\xc4\x30\x0a\xa6\xf9\x22\x99\xcd\xae\xed\x7c\x99\x2c\xe8\x98\xb6\x9c\xe7\x20\x86\x76\x86\x25\x35\x97\x4e\x57\xb4\x4c\x98\x52\x02\x7b\x31\x8f\x17\x2c\xd4\x8f\xf4\x82\x63\x85\xa7\xe9\xa4\xa3\x55\x51\xd6\x5f\x55\x1c\xb3\x53\xac\x98\xdd\x1f\xe5\x99\x5f\x92\xdd\xc4\x2d\xff\x0a\x82\x95\x5f\xcc\x69\x49\x97\x98\xfa\x16\x2f\xf2\xdd\x2f\xe8\x2d\x3e\x47\x6c\x3f\x19\x9e\x87\xf6\xb6\x8b\xfe\x77\x9e\x7b\x7e\xc7\x75\xfd\x3b\xff\x6d\xdd\x7b\x46\xfe\xc1\x3e\x23\xcf\xda\x85\x07\xbf\x05\x81\x8a\x23\x38\x28\xda\x60\x0b\x0e\x75\x1f\x22\x71\x8f\xce\x80\xd8\xef\xec\xe2\x0b\xa7\x82\x48\x7b\x52\x4d\xe8\x64\x10\x47\x13\x24\x49\xd1\xf3\x31\xcd\x46\x54\x94\xa9\x69\x2e\x9d\xd7\xd9\xfc\x08\x2c\xd3\x1e\x4a\x25\xe7\x6a\x35\xab\xe3\xc3\xc8\x6c\x86\x11\x32\x33\x03\x2c\xf5\x58\xe3\x16\xa0\x4a\x27\x38\x89\x91\x05\xf6\x42\x59\xdf\x29\x19\xbd\xd9\x4c\x64\x38\x17\x95\xc1\x0a\x43\x74\x42\x0d\x18\xc7\xf1\xa1\x20\xc6\xf0\x9b\x57\x49\xd6\x91\xa2\x29\x69\x40\x7d\x14\x19\x95\xa8\xf4\x87\x66\x7a\x38\x52\xb5\xef\xc5\xf1\x61\xbf\xbf\x67\xf4\x48\xb5\x76\x70\xf4\x9f\xf8\xab\x71\xed\xd7\x20\x39\x4a\xb3\xaa\x2e\x0b\x47\x6b\x98\x18\x11\x36\x16\x92\x35\x09\xb7\x1f\x7e\x54\xe0\x25\xef\xa8\x66\x26\xe8\x16\xc3\x60\x12\x40\x64\x59\x96\x6f\x1a\x6b\x96\x7e\xed\x5c\x62\xc1\x9c\x91\x43\x44\x46\x1f\x5e\xd6\xd9\xfc\x03\xcb\xd5\x26\x38\xf2\x55\x45\xfe\x31\xbc\x1a\x83\xbb\xd8\x81\xb8\x64\x56\xa2\x34\x73\x0b\x36\x3c\x2b\x8a\xd9\xc0\x5d\x7e\x49\x09\xca\x4e\x29\x69\xf3\x6b\xe6\x44\x33\x7a\x56\xa1\x21\xfa\x77\x8e\xda\x0c\xf8\xbb\xe6\x45\xa2\x15\x73\x3d\x40\x4c\xda\x65\xd6\x22\x1d\x75\x88\xcf\x9f\xac\x8a\xdc\xf2\x2c\x04\xcb\x0d\x7f\x51\xd2\x37\x08\x47\xea\xdb\x50\x24\x37\xb6\xb1\x11\xa5\x08\x37\xbc\x01\xd0\xe8\x4d\x76\x2f\xeb\x82\x0b\x4b\xee\x6b\x51\xc8\x1d\x24\x0d\x15\xa9\xbc\x5a\x2c\xf4\xdd\x84\x91\xf4\xe6\xcc\x84\x68\x26\xc5\x66\xeb\xe0\xdf\xfb\xcf\xb7\xff\xcc\x8d\x67\x77\xbd\x63\x5c\xad\xa1\xe0\xc3\x8b\x75\xce\x92\xaa\xfe\x60\x9c\x0e\xda\xf5\x8e\xdd\x8e\x96\x58\x16\xf7\xd9\x80\xca\xd9\xd0\x0f\x7d\x50\x6d\xd3\x4a\xeb\x21\x67\xb7\xda\xd6\x2b\x7f\x73\x2a\x18\xa8\xd3\x22\xf7\x5a\xc4\x43\x21\x58\xcd\xef\xa1\x2b\x47\x4f\x05\xd2\x64\xdc\xa0\x95\xac\x1f\x56\x4e\x10\x8e\xac\x94\xa1\xa9\x26\x34\x80\x4b\x17\xad\xb5\x27\x66\x6c\x1a\x16\x41\x15\x14\x1f\x73\x15\xc5\x20\x7d\x5a\xac\xd0\x7e\x8a\x7e\x52\x50\xa6\x2e\xa2\x8a\x51\xb8\x24\x5d\xdc\xb5\x17\x9a\x71\x94\x2a\x03\x31\x46\x69\x46\x82\x0a\x6e\x2b\x54\xa4\x0f\xc2\x69\x24\x4d\x7a\xb6\x23\x00\x72\x17\x9b\xcd\xd8\x7b\xdd\x1d\x4e\xf6\x4e\x0f\x20\x1b\x59\x9f\x5f\xec\x38\xde\x3c\x8d\x8d\xb1\x14\x3c\xaf\x0f\xf7\xb1\x12\x76\x23\xca\xd6\x9a\x11\x0d\x75\xad\x00\x86\x89\x9a\x08\x5e\xc8\x9e\x4f\xa6\x9e\x27\xc7\x36\x4b\x6f\x35\x91\x5f\xe3\xfc\xbc\xed\x2c\xda\x1d\x3a\xb6\x7a\x7d\x9b\xed\xc7\x22\x95\x58\x00\x4c\x11\x4f\x3a\xf2\x41\x84\xcf\xf2\x45\x52\x5e\x7f\xc8\x92\x72\x72\x81\x63\x02\xba\x79\xe7\xf5\x85\x4b\x97\x94\x8a\x24\xcc\xa4\xc0\x52\x2d\xc6\xd6\xe1\xba\x63\xb7\xa2\x62\x46\x81\xfa\x5c\x64\xd0\x61\x02\x54\x1b\xcd\xb2\x29\xe0\xe0\x80\x29\x8d\x3f\x59\xd1\xc1\x51\x18\x95\xf9\xf9\xc5\x96\xe0\xfb\x47\x58\xf9\x7b\xbc\x81\xc8\x76\x28\x10\x33\x67\xfa\x14\x0e\x54\x3f\x95\x50\x6d\xf9\x8a\xa8\x4c\x52\xf3\x94\xed\x80\xb9\xa7\xae\xe4\xf1\xe1\x56\x54\xad\x63\xa3\x34\x4d\x64\x4c\xb5\x39\x2d\xd1\xac\xb8\x8c\x2e\xf2\x73\x0a\xb2\x32\xcf\xd3\x68\x9e\xa7\x2f\x01\xc3\xac\xb2\xf9\x7e\x40\xb5\xb8\x8c\xe3\x18\x8b\x48\x77\x82\xc5\x65\xb3\xcb\x82\x9d\xe7\x69\x3c\x2b\x2e\xf7\x5f\x27\xf5\xc5\x70\x3a\x2b\x8a\x72\x30\x10\x15\x1e\xcc\x8a\xcb\xf0\xc1\x43\x00\xe8\x9e\xa3\x79\x0e\x36\x5d\xa4\xff\x2a\x07\x56\x62\x9e\xcb\x61\x2d\xb3\xea\xfb\x43\xd3\xdf\x88\x67\xd9\xcf\xf3\x74\xff\x08\x07\xa1\xd1\x46\xc3\xd5\xe3\xcd\x25\xc5\xe0\x09\x54\x24\x25\x98\xe7\xe9\x16\x8f\x32\xf8\x20\x49\xc1\xc8\x4f\x29\x14\xc0\x2f\xee\x25\xf9\x97\x96\xfa\xfd\x62\x52\xbc\xcd\xd1\xff\x37\x09\xee\xbc\x22\xb0\xdf\xd9\x22\xb0\x8f\x30\xed\x18\xee\xfc\x03\x4e\xba\xed\xd0\x1d\x20\x50\xda\x84\xab\x83\xff\x7e\x8a\xde\xa3\x30\x09\x41\x37\x78\x29\x6d\x0d\xda\x3e\x22\xff\x4c\x6f\xa5\x3b\xad\x30\x8e\xe3\x80\x82\xa0\x30\xb7\xb3\xba\x28\x81\x71\x7f\xe6\xcc\xff\x96\x06\xc6\xbb\xe4\xac\x28\x3e\xad\x96\xb2\x50\x63\x3c\xfe\x70\xbf\xee\x08\xd0\x18\xae\x48\x25\x8e\x66\xaf\x37\xf4\xd4\x80\xe5\xb4\x87\xa7\x1b\xfd\x36\x72\x36\x76\xdf\x84\xde\x6d\x14\xcc\xb2\xed\x83\x61\xc0\x99\x63\x62\x75\x43\x9a\xec\xe2\x5a\x62\x4a\xae\xe0\xef\x45\xfc\x0f\xde\x5a\x6e\x6e\xd6\x14\xdc\x01\xc5\x81\xe0\xbb\x05\x7f\xdf\xdc\xd8\x63\x24\x6a\xc5\xe5\x02\x60\xf8\x9b\x83\xf1\x15\x67\xcf\x0e\xaf\x9a\x92\xf4\x7b\x4e\x52\x9e\x57\x02\xb5\xbc\x58\xc8\x81\xd4\xfe\xb5\xca\xac\x8e\xc7\xe0\xe5\x8a\xe7\x28\x0f\x48\x2c\x91\x05\xd6\x95\x7a\x4f\x54\x29\x46\x33\x23\x97\x0c\x06\x5a\x71\x1c\xa8\xf9\x09\xc2\xf5\x56\xab\x44\xf6\xf0\xe6\x06\xf4\x64\x94\xc7\xb9\x7e\x1f\xc1\x14\xde\xda\x19\x1d\x58\x90\xa3\x33\x32\x96\x30\x34\x9c\x6b\xc2\x28\x18\x0d\xd1\x58\xe8\x98\x85\xb2\xf4\x18\x33\x4e\x36\x55\x10\x42\xc7\xcb\xac\xde\x8b\xd1\x63\x1e\x38\x4d\xac\x4b\xed\x8a\xb2\xcc\x6a\x63\x89\x01\x54\x63\xd9\xc5\x72\xb9\xb8\x87\x46\xb5\x9e\x66\x14\x3a\x49\x20\x99\xdb\x41\xbd\x2c\x98\x45\x32\xcf\xaa\x65\x32\xd9\x5a\x57\xb7\xeb\x30\x78\x23\x2b\xeb\x3a\x10\x5a\xfa\xa7\xca\x0e\xb3\xab\x3a\x83\xd8\x1e\x9b\xba\x27\x18\x7a\xbf\xfe\xc4\x57\x3d\xa2\x77\x50\xb3\xd8\x10\xa9\xc0\x30\x00\xb6\x7a\x87\x0c\xd5\xa6\x87\xc5\x4e\x93\xe0\x8e\x57\x47\x27\xb8\xd6\xbf\xc2\x6b\xe2\xaf\x4d\x4d\xbb\x8b\x75\xf1\x59\x0c\x7f\x6b\x59\x0c\x6f\x52\xcc\xf6\x32\x2f\xbf\xdd\xe1\xfd\xee\x77\x3b\xbc\xdf\xfd\xce\x7e\xbf\xdb\xa8\x6e\xfd\xfb\x3b\x98\xd2\xfc\xbe\x5d\xf9\xb9\x45\x27\xe7\x3b\x8f\x71\x91\x80\x24\x4b\x31\x6b\xb5\xb4\x98\x40\xbb\x73\xe2\x0b\x5e\xd0\xf2\xcc\x7b\xe4\x59\x1e\x76\x24\x35\xd0\x5b\x96\xa1\xd4\xee\x64\xaa\x0e\x3e\x3f\xb5\x7a\x11\x7c\x42\xc6\x4f\xe4\xbe\xf0\x27\xf8\x82\x1e\x61\xf0\x4d\x36\x1c\x92\x86\xf2\x6e\x47\xf2\x51\x85\x38\x57\xeb\xdd\x28\x21\xbd\x10\x7d\xc9\xa7\x1b\x9d\x04\xe0\x66\xd2\x9e\x38\x6c\xce\x5d\xd2\x8c\x1d\xdb\x44\x64\x66\xe8\xab\x2e\x4a\xe6\xb5\x32\x3c\x5c\x7b\xde\x23\x0c\x13\x6a\x0e\xdc\xdc\xf6\x01\x04\xef\x8d\x75\x96\x94\x69\x71\xb9\x20\xa4\x40\xfe\x6f\x27\xee\xf0\x6c\xc9\x1e\x43\xd4\x13\xd6\xd0\x13\x0a\x1d\xcb\xad\xb5\x97\xbb\xe3\xc0\x2f\x4a\x66\x5e\xfe\x4c\x10\x2d\xf9\x6a\xc2\xa6\x69\x13\x44\xff\xf4\xff\x91\xf7\xa6\xeb\x6d\xe3\x4a\xc2\xf0\xff\xb9\x0a\x9b\x6f\x46\x21\xc7\xb4\x62\xe7\xec\x52\x98\x8c\xdb\x71\x9f\xce\xd3\xd9\xc6\x76\x77\xcf\x19\xb5\x8e\x86\x16\x21\x8b\x1d\x9a\xd4\x21\x29\x2f\x47\xe6\x25\x7d\x37\xf1\x5e\xd9\xf7\xa0\x0a\x4b\x01\x04\x25\xd9\x49\x2f\x33\x6f\x7e\xc4\x22\x50\x00\x0a\x5b\xa1\x50\xa8\xa5\x43\x2c\xf9\xad\x1a\x35\x97\x80\xfe\x11\xef\x45\x22\x74\x6b\xc5\xea\xe5\xc2\x18\x4b\x9a\xf2\xb9\x03\x19\x27\xc9\xcf\x3b\x8a\x13\x6b\x0d\xaf\x59\x52\xf6\x6a\xb7\xc7\xea\x21\xd2\xb4\x8c\xe5\xb6\x38\xe5\xd5\x5a\x69\xe1\xe0\x00\xc7\xdb\x02\xb0\x7a\x8d\xed\xa1\x51\x2f\x09\x3c\xe1\x2a\x69\x15\x92\xd3\x29\x37\xc2\x91\x09\x6d\x23\x06\x13\x6d\xa5\xb9\xd6\xd5\x6f\x62\xcc\x70\x45\xda\x3d\x72\x0f\x8b\x69\x21\xe0\x86\x31\xd7\x91\x1c\x73\x35\xde\xe0\xbe\x41\x6d\x04\xab\x59\x7b\x43\x3c\x44\x50\x07\x4a\x86\xe6\x34\xb4\xa4\x91\x5b\x6c\x98\xf5\x4b\xc8\xd8\x38\x6b\x3b\x2e\x36\x50\xc7\x8a\xf9\xb9\x3b\xba\x1d\x89\xfd\xb2\x7d\xed\xa6\x15\xdf\xda\x79\x94\xf0\xca\x43\x71\xd3\x71\xaa\x48\xa1\x94\x50\x9b\xa7\xb1\x38\x53\x71\x75\x77\xcb\x5e\x1e\x30\xce\x52\xd4\xf1\xb0\x4d\xc5\x97\xb6\xf4\xe2\xd2\x7d\xa2\x3f\x80\xda\xd7\xc4\x23\x01\xe9\xab\x51\x9f\x6d\x76\x6c\x35\x6f\xf9\xac\x68\x75\x35\x8a\x5c\x48\x04\x2b\xe2\xaa\x1d\x49\x85\xa8\x99\xaa\xa3\xae\xd1\xd4\xfd\xae\x4a\xf3\xcb\x1d\x51\x66\xa7\xc8\x77\x62\x3d\x9a\x84\x4d\xdb\x49\x31\xce\x6c\x9c\x65\xc5\x0d\x4b\xfa\x1e\x6c\x9c\x07\x3a\xa3\x91\x47\xe2\x67\x38\xa5\x99\x6c\xe5\x95\x66\x23\x5e\x8f\x18\x67\x43\x72\x6f\x3c\x5f\x89\x7a\x37\x8f\xb2\x2c\xf5\xc0\x61\x7e\xb4\x8f\x9d\x4d\xea\x32\x0f\x39\xba\xd2\x3c\x49\xa7\xac\x8a\x46\xe3\x30\x1d\xfe\xa2\xce\x7b\x20\xfe\x42\x04\xcd\x0c\xd3\x17\xf0\x77\x0f\x22\x28\xed\xed\x05\x2b\x81\x96\x88\x83\x66\xbd\xe7\x75\xbe\xf6\xa4\x41\x10\x34\xb2\xa8\xc3\xbb\xa7\x98\xeb\x8b\xfd\xb8\x09\x86\x1d\x46\x85\x88\xd6\xc1\x30\x7d\x21\x2b\xa2\x9e\x09\xad\xc5\x8a\x10\xa3\x74\x1c\x1e\x4a\xaf\x43\x2e\x4b\xc3\x87\xb8\x22\x9a\x38\x7c\x11\xd9\x1b\xec\x7f\xb4\x4f\xa2\xc9\x23\x9c\x12\xfd\x42\xbe\x67\x26\xdb\x38\x9f\xd9\xe8\x26\x68\xf2\xf9\x7e\x82\x26\x9b\x1d\x05\x81\xc2\x84\x83\x95\xb1\x3c\xfd\x90\x93\x14\x75\x2c\x84\xb0\x38\x2e\x69\xf4\x8f\x16\x03\xd1\xa9\x44\x84\x71\x33\x88\xda\x82\x52\x5a\xe0\xac\x90\xe2\x49\xef\xda\xbc\x7c\x57\x21\x77\xdb\x1d\xda\x01\x0f\x68\x5a\xb3\xc1\xdd\x2d\xa7\x79\x6a\xb0\x83\x86\xf6\x9d\xf3\x1a\xb9\x96\x6f\x6f\xc0\x55\xfc\xeb\xb6\x82\xf1\xfa\x1b\x8c\x7d\xc3\xd1\xf5\x75\x0b\xe0\xf5\xd9\xb2\x49\x30\x2d\xdc\x0d\xb1\xb2\xd3\xac\xef\x01\x1e\x44\xd7\x49\x30\x6d\x01\xa4\x43\x40\x75\x2c\x71\x89\x84\x47\x96\x77\x05\x06\xdc\xd6\x48\x06\xb4\x8c\x82\xef\xf3\xca\x2b\xd6\xe9\x79\x57\x01\x6e\x1e\x8d\x92\x4d\xa4\x34\xfb\x17\x14\xd3\x2f\xb2\xb8\x9e\x15\xe5\x95\x95\x7c\x13\xd7\xd3\xb9\x10\x7a\x53\x54\xe6\x71\x9a\x6f\x08\x25\xfc\xe8\x38\xc6\x6e\x41\xff\x27\x76\xd7\xe9\x16\x4a\x68\x20\xcc\x31\x3e\xb6\x7b\x20\xda\xbe\x5e\x2e\x52\xa1\x54\xb9\xcd\x7b\x45\xb9\xcc\x27\x59\x51\x2c\xfe\x17\x4b\xff\x49\x82\x8d\xe3\xa1\x8d\xe4\xa1\x8d\xe5\xa1\x8d\xe6\xe1\x9f\x7e\xdd\x27\x85\xcb\x65\x9a\xd8\xce\x34\x7e\xcf\xcb\x62\xfa\x76\x4f\x0a\xa0\xcf\xd0\x7e\x50\x80\x64\x81\x5d\xce\xca\xb8\x66\x7f\x5d\xa6\x49\xbb\x29\x92\x09\xd0\x7f\xfd\xee\xcd\xeb\xc9\xb7\x27\x7f\x6b\x41\xca\x0c\x80\xe2\x0b\xae\x05\xc1\x13\x51\x36\x7f\x72\x7e\xe4\xac\x43\x66\x60\x1d\xf1\x27\x87\xf8\x1e\x2a\x92\x39\x42\xdb\x15\x76\x78\xeb\x6d\x43\xa4\xa3\xd4\x3e\xcd\xd3\x6a\x7e\x0c\x5b\xbe\xf5\x2c\x41\x33\xd7\xb8\x27\xff\x73\x2b\x92\xf2\x9b\xb3\xc9\x57\x6f\xde\xbf\x7e\xf3\xfe\xaf\x2d\x83\x2b\x9d\xd5\xa1\xb5\xf2\x97\xcd\xbe\xce\xfe\xd2\x72\x00\xbb\xce\x15\x9b\xeb\x59\xc3\xfd\xb0\xe2\x7a\xd6\x90\xb4\xb3\xb5\x50\x64\x06\x40\x71\x02\xd6\x7a\xfd\xb0\xab\xc2\x17\x6b\x11\xe8\x3f\xb2\xf7\xa4\x0d\x8d\x27\x89\x64\xe7\x23\x7b\xc7\xf6\xcd\x7c\x28\xf2\x15\x12\xbd\xc8\xde\xcc\x7d\x91\x21\x8e\x41\xa4\x81\xee\x9a\xf9\xfa\xb0\x21\x70\x22\x96\x96\xff\x6d\x87\x0d\x9f\xb0\x6e\x6a\x2d\x38\x91\x8e\x2f\x6e\x13\xb1\xf1\xc8\x46\x2b\x26\x56\x67\xe5\xd8\xba\x3a\x59\x4d\xe7\x8c\x9f\xdb\x51\xb9\xcc\xfb\xf2\x43\xef\x78\x5c\x50\xa8\xb2\x34\xd1\xbb\x1d\x97\xf2\xc7\xb8\xac\xd3\x38\x13\xd9\x46\x9a\x58\x6d\xc5\x82\xc9\xd2\xda\xb9\x0e\x26\xe3\x7a\x3d\x7a\xff\xfa\xe8\xfc\xc3\xe9\xdf\x26\x67\x27\xe7\xe7\x27\xa7\xe2\x05\xea\xe4\xfd\xf7\x7d\x3b\x0b\x1f\x3f\xb7\x88\xec\x6d\x3e\x63\xa9\xab\xea\x6b\x56\x4d\xcb\x74\x51\x17\x65\xb4\x9a\x16\xf9\x2c\xbd\x5c\x62\xc0\x0b\xb0\xea\xbb\x29\xd3\x5a\x7f\x91\x70\x18\x68\xa0\x0d\x9a\x3b\x03\x6d\x03\x81\x96\xfb\x4b\x60\x10\x3f\xb7\x56\xf0\xe3\xaf\x55\x67\x38\xd1\x39\xae\x8b\x52\x5c\x03\x6e\xe2\xea\x68\xb1\xc8\x52\x26\x23\x24\x72\x3e\x17\x46\xb4\x82\x9f\x5a\x0d\x1a\x97\x63\x16\x57\x55\x64\x4a\xac\x76\x75\x1d\xc1\x0a\x00\x70\x32\xfc\xa0\xb1\x97\x0a\x5e\xa5\x24\x89\x0d\xcd\x1e\x06\x43\x37\xb8\x37\x99\xe4\xec\xb6\x3e\xe3\xac\xb6\x17\x3a\x06\x1c\x6f\x6b\x57\x11\x27\xcc\x28\xf1\x0e\x01\x81\xe8\x0a\x11\x19\x8a\xbf\xca\x6e\x4b\xf7\x51\xaa\xa8\xf2\xdf\x91\x4e\x1e\xea\x9f\x18\xd1\xc4\x16\xb1\xe1\x1a\x0b\xb1\x20\x48\x2e\xcc\xc1\x52\xd6\xe4\x0b\xac\x96\x0c\xa3\xf9\xa9\x43\xa9\xa2\x02\x12\xcb\x63\xbd\x97\x53\xa9\x8d\xea\xce\x23\xde\x05\x0f\xc2\x2c\x82\xd6\x94\x08\xe2\x45\xa6\x63\x90\x68\xbe\x0b\x81\x46\xe9\x78\xa8\xf5\x9b\x74\xee\x6e\x14\x79\x82\xe1\xed\xf5\x8c\x64\x1a\x18\xd3\x29\xde\xc2\x3d\x21\x1e\x71\x91\x58\xec\x14\x79\x76\xb7\x13\x4f\xa7\x6c\x51\x57\xd2\xbb\x6c\xdf\x83\xd1\xda\x5d\x90\xa1\xe2\x1c\x7d\x9a\x2f\x59\x23\x68\x33\x68\xd4\x44\x9c\x48\xfb\x04\x4c\xf5\xf6\x27\xde\xdb\x2c\x92\x80\xb2\xc7\x3f\xbd\xc8\xb2\xe1\x4f\x24\xec\x0a\xcf\x55\x50\xa3\x9f\xa0\xcb\xa4\xdd\xfe\x3c\xae\x3e\xdc\x28\xb1\x8e\x72\x92\x62\xe1\x83\x1a\x78\xba\xd8\x48\xc0\x41\x75\xfa\x78\xec\xd7\xac\xaa\x49\x1d\xa0\x88\x80\x74\xbc\x8a\xae\xfa\xf2\x27\xe0\x20\x3f\x82\x95\x03\x22\x5a\x35\x4a\x63\x78\xf7\xca\x46\xd2\x93\x60\x5e\xe0\x2e\x2d\x09\xb6\xaf\xd3\x82\x46\xfe\x52\xb8\x8b\xd0\xc5\xe2\x14\x98\x46\x9c\x74\x57\x53\xb3\x6f\xee\x35\xd7\xeb\x49\xd1\x9a\x3b\x5f\x79\x92\x51\x4e\x73\x2f\xe2\x4a\xc4\xb1\xe1\x4b\xd9\x68\x42\x65\xa1\x10\x53\x92\x15\x22\xc6\x54\x10\x62\x0b\x48\x8d\x48\x3b\x5d\x38\x13\x41\x01\x2c\x82\x28\xee\x8a\x34\x63\x41\xbb\xc1\x65\x66\x3a\xf3\xf9\xa8\x04\x2b\xfe\x7f\xbf\xc3\xb7\x19\x56\xa1\x37\x13\x6c\xd7\x8a\xd5\xdf\xe5\x9f\xf2\x42\x4f\x5c\x44\x43\x95\xf6\x7a\xbb\x72\xa5\xec\xa4\x28\xa4\x09\xc4\xc5\xbf\x5d\xd2\x77\xb4\xc7\xd7\x86\x7d\x7e\x71\x34\xdb\xb4\x53\x16\x06\xcd\x09\x8a\xb1\x31\x17\x62\x39\xf0\x7f\xc6\x29\x8b\x75\x5c\x05\x2d\xf2\xc7\x69\x18\x91\x09\x29\x02\x8b\xe4\x96\x32\xa2\xe2\x05\xd2\x8e\x08\xc5\x2b\xf0\x82\x66\x88\xc7\x45\x5d\x9c\x81\x3e\x57\xeb\x28\x97\x19\x02\xee\x26\xcd\xb2\x53\x3c\xf4\xcd\x23\xa8\x7d\x02\x7d\x94\x75\x50\x0e\x43\x6c\x0d\x17\x44\xd0\xd8\x27\xa1\x44\x6e\x42\xce\x02\x62\x16\xc5\xb7\x2f\xc9\xe1\x09\x46\x09\x42\xc2\x1d\xa5\x48\x2e\x2d\x89\xa3\x68\x07\xa9\xe2\x07\xdf\x14\x0e\x5e\x84\xd2\x09\x20\x86\x57\x5f\xc1\x4a\xff\x56\x47\xb0\x7d\x40\x93\x6e\x82\x5a\xa7\x6b\x30\xf0\xde\x25\x17\x01\x41\x8d\x43\x04\x43\x71\x23\x69\x65\x18\xc6\x4b\x2a\xb9\x91\x72\x45\x00\x6f\x90\xa9\x2d\x85\xad\x49\xa4\xd9\x91\xa1\x4e\xd5\x0b\xa2\xe5\xbf\x50\x1c\x34\x1a\xd6\x6b\x68\xc1\x75\xd3\xbe\xc2\x43\x9b\x0a\xdb\x34\x0f\x2a\x74\xb2\x55\x7c\x5d\x47\x50\x23\x5b\x02\x08\xda\x2b\x0e\x12\x28\x1d\xfe\x08\xe1\x1e\xf1\xcb\x23\x52\xd2\xfc\x52\x24\x39\x1c\x0c\x48\x5b\x52\x0a\x2d\x3b\xdf\xb4\x72\x70\x0e\x25\x5f\x2d\xb5\xba\x2b\x2f\xd4\x7b\x95\xc8\x19\x03\x02\x29\x9a\xa6\x90\x13\x99\x9b\x28\x78\x63\x00\xa8\xc4\xf2\xdb\xb0\x05\xbd\xb6\x17\x2c\x51\x9d\x10\x2d\x53\xdd\x04\x02\x06\x3d\x6a\xc2\x0b\x23\x70\x7d\x5d\x84\xb3\xb2\xb8\x12\xcf\x13\xfc\xe7\x4e\x9a\x57\x75\x9c\x4f\x39\xcd\x15\xf7\xa5\x20\x58\xf1\x9c\x48\x7c\xf6\xf9\x07\xc0\x06\x0d\xff\xbf\x5f\x17\x7e\x5d\xc0\x11\x90\xb3\x69\x6d\x3a\x51\xe6\x00\x4d\x28\x97\xdd\x40\x3b\xc4\x12\x29\x62\x2b\xce\xe3\xea\x5c\xa4\x9c\xdc\xd6\x2c\xaf\xd2\x22\x8f\x28\xe5\xaf\x5b\xb9\x94\xf0\x87\x4c\x25\xbb\x6a\x7a\xe5\x0d\xbc\x3d\x77\x35\x7e\x30\xf0\x3c\x15\xac\xc0\x7b\x21\xe0\xa6\x45\x5e\xd5\xe5\x72\x5a\x17\x65\x5f\xa3\xba\xc7\xeb\x11\xc2\x15\xec\xe6\x9e\x6a\x78\xcf\x7b\xe9\x0d\x8d\x36\x60\x0b\x4a\x5c\xfc\x92\x99\xd1\xee\x9b\xa0\x7b\x7b\xf5\x8b\x9b\x9c\x95\xc7\x1a\x87\x48\x83\x9a\x17\x0e\xa3\x7a\x87\xeb\x25\xda\x60\x3a\x13\xb6\x0e\x78\xdf\xe9\x17\xd7\xac\x2c\xd3\x84\x59\xf4\x7a\xb5\x05\x90\xdf\x89\x7a\xd0\x90\xac\x09\x8a\xf1\x27\x13\xcd\x8c\x03\xad\x72\xd1\x10\x9d\x41\x83\xbf\x98\x95\xd3\x9c\xb4\x82\x12\x78\x43\x4b\x45\x2c\x74\xb1\xfb\x51\xd7\xd1\x7e\x98\xc1\x2b\x96\xa6\x8b\x78\x97\x11\x74\xba\x0b\x2f\x98\x51\x9d\x19\x38\xc9\xba\xa3\x88\x35\x2a\xad\x56\x1c\x53\x0c\xe7\x8e\xf3\xd4\xe8\x80\x45\xb2\x2b\x1e\x93\x5c\x05\x29\x27\x61\x9f\x70\x78\x67\x13\xe7\xaa\x9a\x27\xf3\x84\x19\xe2\xb1\x69\x1d\x47\x9a\x15\x36\xa1\x03\x04\xa7\x7b\x47\x20\x4a\x85\x84\x3e\x00\x05\x43\xb8\x53\xe2\x6f\x83\xc7\x69\x0d\x14\xe9\x5e\x60\x9e\x78\x21\xa2\xf1\x43\x5a\xcf\x91\x59\x68\xcd\xb8\xba\x98\xb6\x82\xc0\x1f\xe8\x87\x42\xc9\x6a\x10\x7f\xbc\xf2\xc0\xe5\x97\xb1\x63\xd9\xce\x63\x6b\x27\x0e\x77\x3b\x5b\x68\x9f\xa0\xea\x88\x41\xbe\xcc\xa7\xbc\xa2\x3d\xcd\xe2\xd2\x4c\x66\xdb\xd2\x87\xe1\xd9\xb8\x5d\xec\x33\xda\x5e\xe0\x8e\xba\xba\xcf\x72\xd3\x19\x21\x36\x86\xef\xda\xed\xb8\x1b\x9a\x58\xef\xaa\x4b\x08\xe4\x19\xe6\x2e\x18\x1c\x44\x96\x29\x2e\x7e\x8a\xd0\x81\x83\xd6\x11\xe1\x87\x18\x4f\x2f\x2e\x7e\x22\xab\xb9\x31\x6a\x11\x48\xbc\x11\x27\x99\x85\x8c\x7e\x0a\xa6\x67\x1d\x62\xcf\x57\xe5\xd7\x45\xe9\x74\x42\xaa\x62\xff\xc7\x64\x9b\xf8\xc1\x48\x0a\xa5\xc7\x21\x5e\xf9\x58\x1d\xf7\x7a\xfc\x7f\x7d\xf7\x1b\xcb\x31\x82\x1b\xcf\x84\x67\xde\xdf\xaf\x9a\x26\x64\xf1\x74\x6e\xcb\x19\x75\xa3\xd3\x38\xcb\x2e\xe2\xe9\xa7\x50\xdc\x33\x95\xd0\x41\x88\x5c\x24\x0a\xd0\x70\x15\xd1\x2d\x05\x29\x21\xbb\x5a\xd4\x77\xd1\x4a\xbb\x41\x56\x77\xfd\x5c\xdc\x91\x00\x4e\xbb\x40\x8e\x10\xe5\x5c\x5e\x24\x65\x3a\x1d\x29\x1b\xdf\x60\x25\xf1\x44\xd7\x52\x02\x59\xb4\xc9\xc2\x00\x8f\xb2\x1a\xd9\x75\xc0\x2b\x68\xc0\xba\x69\x2d\x4d\xd4\xc7\x5e\xd7\xe9\x45\x68\xb3\xfb\xe4\xd2\x00\x3e\x81\xa5\xc7\x14\xa1\xfd\xfa\xe7\xb0\x4d\x82\x54\x89\xce\x17\x61\x0d\xb2\xe9\x0d\x34\x61\x33\x56\x96\x34\x26\xac\xf5\xde\xa7\x01\x36\xbf\x86\x76\x1a\x0a\xfd\x9c\x01\x29\xf9\x2a\x7a\x2d\x90\x74\xc6\xa5\x7c\xc8\x2b\x57\x97\xe1\x86\xe3\x41\x40\xb6\xe9\xb2\x6e\x30\xf0\x09\x86\xf2\xb3\x4f\x28\xa0\xbf\x92\x4e\x3b\x37\x6c\x33\x39\x01\x91\xaa\x45\x9c\x7a\xc1\xd0\xb9\xde\x43\x59\x20\xd0\x9b\x1d\x13\xd6\xa8\x10\xc8\xba\x37\x2d\x17\x4e\x27\x7e\x05\xc3\xb6\x0d\xaf\xd8\x6b\x6d\xcd\xdc\x99\x6e\x5b\xb6\xb5\xcf\xd2\x1d\x9e\x2f\xd7\x85\x2c\x69\x3f\x84\xff\x42\x81\x92\x7e\x8b\x4f\xdc\xbf\xe9\xe7\xe9\x75\x4f\x96\x0e\xa7\xcb\xf2\x1d\xc9\x7e\x5a\xa3\xef\x48\x1d\x61\x30\x5d\x51\x2d\x3b\xa8\x8e\xc3\xb2\x6c\x3b\xcf\x99\xbf\x64\x98\x8e\x4d\x65\x5d\x50\x8f\x8d\xf2\xb1\xd9\xed\x02\x08\xae\x18\x8a\x22\xab\x76\x74\x0f\x23\x7b\xe3\xbb\xee\x73\xf7\xbb\xee\x46\xfb\x43\xbe\xe0\x37\xc7\x7b\x71\x47\x6d\x81\xb2\xee\xb0\x2d\x1b\x02\xc5\x18\x25\xad\x48\x31\x1b\x8c\x1e\xa1\x68\x87\xd5\x23\x86\x2f\xe8\x08\xad\x03\x05\x6d\x88\xad\x9c\xac\xc2\xba\x8f\xa7\x73\xdc\x20\x8e\x33\x94\x04\x68\x5d\x99\x92\x39\xe9\xb4\x4f\xca\xbe\x81\x5d\x73\x2b\xec\x59\xaf\x44\x22\x15\x0a\x44\xf0\xbf\x48\xb1\xbc\x3a\x36\x5d\xd6\x10\xb0\xf7\x6b\x76\x15\x19\xc5\x4c\x83\x42\x79\xec\xa6\xe0\xc5\x47\xfa\x30\x0d\x0d\x84\x36\x5b\x48\x48\x8c\x8c\x86\x86\xa6\x97\x45\xb0\x81\x98\xba\x6c\x1f\x9a\x40\x2a\x7e\x7c\xf8\xea\xec\xe4\xf4\xfb\x93\xd3\xe8\xd9\xdf\xfb\x7b\x03\x1f\xcd\xc5\xee\x71\xca\x82\x27\xcf\x88\xcb\x05\x4d\x16\xbe\x2e\x4a\xa1\x77\xf8\x2d\xbb\x6b\x0d\x37\xba\x55\x4f\x93\xdb\x30\x2b\xa6\x88\xac\x8c\x2c\x09\x59\xfd\x89\x0c\xe3\xc6\x09\x2c\x3c\x88\x49\xb5\x55\x37\x5c\xb4\x6a\xcc\x68\x8c\xe6\x50\xb7\x06\x59\x46\x63\x14\xfe\xdb\x5a\x51\x46\x60\xb8\x4d\x6c\xa5\xda\xf4\xb7\x8c\x1a\xd6\x04\xc3\x96\x8b\xaf\xce\x62\xc4\xa3\xd7\xf0\x5f\x78\xc7\x22\x29\x80\x53\x9e\x83\x64\x37\x47\x3c\x67\x1c\x18\x5f\xd1\x68\x3c\x34\x12\x50\x9d\x1d\x42\x46\x36\x8d\x9a\x04\x93\xe6\x7d\xa1\x79\xd8\x72\x0a\xc4\xb9\x96\x4e\x53\x26\xa6\xee\xf1\x93\xe2\x22\xfa\x0f\x99\x17\x97\x0f\xbd\xad\xa6\xc6\x35\x33\xa2\x4f\x91\x31\xfe\x2a\x79\x24\xce\x6c\x64\xa2\xd5\x00\xf0\xfe\x8c\x41\x5e\xd8\x34\x8d\x24\x56\x9d\xe6\xcc\x6e\x0a\xe5\xa6\x49\x16\xad\x19\xae\xb5\x22\xd5\x3e\xeb\x8c\xa3\x4b\x68\x41\xa8\x06\x81\x9b\x24\x11\x7f\x92\x34\x39\x4a\x12\x19\x8e\x86\x64\x2b\x6f\x74\x4b\xf3\x15\xb2\x33\xe4\x93\x10\x49\x73\xca\x13\x81\x4e\x80\xa4\xd9\xbe\xd1\x1b\x35\x3b\x88\xf4\xc6\xa7\x4a\x10\x43\x43\x0d\x70\x4e\x62\x9f\xd3\xfc\x92\xac\x77\x3b\x04\x11\x04\xe6\x8d\xbb\x94\xd1\x25\x1e\x9d\x4a\xe1\x4a\x2f\x4c\x11\x62\x0c\xf5\x93\xa5\x57\xc3\x2c\xbd\x8a\x74\xa1\x97\x07\xaf\xa8\xeb\xc9\xbc\x1e\xec\x1f\xba\x4d\x44\xd4\x0c\x71\x64\x77\xd2\x1c\x1a\xc0\x47\x0c\xfe\xcb\xa1\x81\x40\xb5\x0f\xd2\x99\x9f\xa5\x57\xe8\x32\x6c\xab\x6d\x8f\x4f\x39\xb0\xe3\xd3\xab\xa0\x59\x13\x81\xaa\x33\x53\x4f\x98\x87\xce\x96\xbb\x63\x68\x8a\xc1\x76\x68\xdf\x3f\x6a\xac\xe5\x38\x4b\x28\x31\xca\xf2\x93\x8f\xb1\xcd\x48\xd0\x33\x51\x0a\x8c\x3e\x6f\xa0\xb7\x39\xe4\x3a\x46\xb9\x1d\x95\xab\x2b\xaf\x3d\xc6\x6a\xd7\x99\xfb\x72\xe0\xda\xbf\xa8\x75\x22\x8f\x6d\x54\x3b\xd1\xd9\x62\x7f\x77\x6e\x1a\x05\x29\xbc\x68\x1e\x84\xfb\x7f\x0a\x82\x06\x5a\x3e\x85\xa9\xfa\xfc\xc6\xab\xba\x58\x3c\xa8\xed\x2e\x6c\x1d\x01\x8c\x1c\x2b\x67\x28\x67\x39\xb0\x32\xf8\xa1\x25\xf3\x94\xaa\x43\xb0\x32\x3e\xa3\xc3\x61\x27\x37\x15\x4a\xfb\x9f\x16\x0b\x35\xdc\x9a\x19\xaa\x95\x29\xbb\xd0\xbb\x30\x5a\xdf\xdb\x6b\x9a\xb0\x63\xb8\xb6\xef\x3c\xff\xdb\xeb\x19\x15\xbf\x3c\xe8\xf5\xf6\xf7\x8d\xa4\x17\x2a\x88\xf5\x03\xfb\xfa\x10\x9e\x83\x76\x57\x39\x77\x30\x0e\x6f\x43\xc8\x1d\x6e\x1d\x2d\x8f\x56\xe6\xa0\x38\xce\xba\x3a\xe2\xe4\x59\x62\xae\x3e\xb9\x65\xc8\x5f\xad\x7c\x71\xb0\xcb\x5f\x9b\xc4\x60\x59\xfc\xcf\xbb\x49\x56\xc4\xc9\x16\x52\xb0\xb5\xf2\xa7\x3c\xae\xd3\x6b\xe2\x2c\xe9\xe7\x16\x94\x6e\x25\x67\x91\x57\x37\x5b\xd6\x42\xaf\x6e\xbc\xf3\xdf\x14\xc5\xa7\x8a\x68\xdc\x9e\xbc\xfb\xea\xe4\x74\xf2\xf6\xc3\xd1\xeb\xc9\x37\x1f\x3e\x7c\x7b\xa6\x7c\xc9\x71\x60\x96\xf0\xed\xaa\x18\xdd\x22\x7f\x5b\xc4\x09\x84\xea\x09\xa5\x18\x93\xf2\xb0\x43\xd5\x00\x3e\x02\x44\xd6\xf7\xfd\xbd\xf4\x40\x1f\xd8\xa0\x34\x82\xba\xaa\x7a\xa8\x2c\x03\x23\xc4\x06\x61\xf5\x9b\x81\x2f\x4d\x7c\x69\xe8\xa7\x3e\xa2\x19\xe1\x1f\x8d\x7d\xb9\x84\x04\x68\x14\xfb\x20\x0d\x8f\x69\xe5\x82\xe1\x24\x9a\x98\x37\x69\x9e\x80\x2b\x54\xad\x85\x69\xe4\xf4\x93\xb4\x5a\x70\x3e\x0f\xb5\xfa\x4d\x9d\x32\x01\x79\xbc\xac\xea\xe2\xaa\x0d\x80\xa3\x07\x34\x18\x18\x35\x02\x87\x28\xae\x12\x56\xc7\x69\x36\xc0\xa6\xe1\x41\x64\xc0\xff\x6b\x82\xa1\xab\x75\x24\xe7\x68\xb4\x6b\x0e\xb0\xf2\x8f\x8f\x2c\xb3\x95\x1b\xb6\xe4\xd9\x8e\x41\xb6\x86\x99\x8e\x67\x44\x3f\x36\x6d\x44\xe2\x24\xee\x73\xc4\xd1\xe6\x1e\xdd\xd6\x07\xea\xcf\xfa\xdc\xf1\x50\x89\xee\xcf\x2a\x5d\x75\x89\x3b\x7f\x67\x89\x3b\xb7\x33\xb8\xd9\x46\x16\xbb\xc9\x75\x6a\x97\xb8\xd4\x11\xed\x48\xfb\xfd\x73\x5e\xda\x2a\x95\x2f\xf4\x37\x2c\x0d\x30\xed\xfa\xef\xfd\xd1\xbb\x93\xb3\x8f\x47\xc7\x27\x67\x78\x71\x47\xce\x5f\xe7\x7f\x3c\xfd\x70\x7c\x72\x76\x76\xf2\x5a\xe8\x16\xb6\x55\x8d\x84\x5c\x87\xaf\x58\x62\x74\xcc\x3f\xd1\xcf\x84\x11\xb5\x0c\xf6\xe5\x2c\xcd\x13\xd5\x82\x15\xa4\x76\xc4\x11\x82\xd7\xde\x06\x76\x32\xbc\x29\x99\x71\x6e\x17\x65\x31\x65\x95\xee\xa2\x3f\x32\xd4\x82\xfc\x60\x8c\xc7\xf9\xaa\x09\x3a\x23\xe1\xa8\xfd\x55\x45\xae\xb1\x50\xbd\x8c\xac\xaa\x81\xe6\x89\x2f\xf9\x1e\x8a\xae\x4d\x47\x32\x79\xac\x75\xce\x87\x09\xcb\x58\xcd\x76\x5c\x4d\x4c\xbe\xfa\xdb\xe4\xcd\x6b\x5d\xaa\xd1\x28\xf5\xab\x05\x7a\x8a\xa7\x17\x78\x9d\x8d\x3c\x77\x78\xa8\xec\x74\x45\x20\x8d\x86\xce\x9b\xf1\x22\xa7\x5b\x1d\x8c\x00\xe7\x71\x68\x23\x32\x58\x35\xa1\x9a\x6b\x1d\x7d\x8f\x0f\xf4\x51\x96\x0d\xf4\x4f\x3d\x71\xe1\x05\xf0\x25\x7a\x68\x73\xc9\x6a\xef\xe2\xc0\x7c\xf5\xe1\xc3\xf9\xc9\x6b\x35\x61\x46\x61\xed\x30\xa0\x35\x24\x40\x6d\x1b\x21\xe9\xb3\x73\x9d\xd3\x85\x59\x43\xa1\xe8\x26\x2e\x4c\xd1\xaa\xb1\xae\x4f\x46\x58\x3d\x73\x09\x2d\xe2\x7a\x5e\x85\x65\x51\xd4\x61\xc5\x98\xf0\x6b\x9a\x26\xb7\x11\x64\x48\x4d\xfd\x16\xaa\x98\xfb\x53\x91\xe6\xbe\xd7\xf7\x82\x71\xc4\x6b\x18\x5a\x57\x3a\x9e\x86\xc3\xa2\xd1\xc1\x39\x85\xf6\xac\x3b\x9d\x60\x15\xa0\x26\x54\x6d\x80\x46\x46\x69\x72\x3b\x8e\x3e\xb1\x3b\x71\xe0\xf7\x7a\xc5\xc5\x4f\x5a\x15\x2e\x8a\x40\x4d\xe3\x5c\x2d\x4d\x23\xd7\xd0\x64\xb3\x70\x0e\x86\xc5\xc5\x4f\x7a\xd7\x45\x56\xb6\x52\xdb\x56\x6d\x12\xe2\x02\xbd\xe2\xe3\x35\x92\x92\xa9\xe2\xe2\xa7\x60\x4c\x7a\xd3\xce\x44\xc5\xcf\x8e\x09\xe0\xec\x30\x8c\x7f\xd3\xd0\x81\x8f\xd2\xe4\x16\x06\xe6\xec\xfc\xe8\xf4\xfc\x6c\xf2\xc3\x9b\xf3\x6f\x26\xdf\x7d\xfc\x78\x72\x7a\x7c\x74\x76\x12\x3d\xfb\xfb\xe8\x68\xff\xbf\xc6\x44\xe6\x6b\x53\x98\x15\x72\x6b\x7c\x9f\x46\x86\x3f\x62\xde\x20\xe9\x10\x1f\x5c\x07\xed\x53\x1a\xa0\x72\x66\xf9\x91\xcb\xa7\x16\x6b\xc1\xc9\x75\xe2\x86\x37\x4d\x0e\x6e\xdf\xdb\xa1\xa4\xb5\x40\x7b\xbd\x5d\x67\x7a\xab\x82\xba\xbc\xe3\x33\x1c\x09\xd2\xc3\xb3\xc7\x43\xd2\x8f\xc8\x35\x5b\x0d\x44\xa0\xf4\x99\x89\x88\x31\x9d\xd6\x52\x28\x8b\x85\x10\x12\xca\x44\x31\x7a\xea\x53\x9e\x81\x7b\xde\x04\x28\xbe\x9e\x02\xa0\x4a\x40\x7f\xc4\xba\xbb\x42\x1d\x12\x4b\x31\x1c\x52\xd7\x28\x86\x1b\x9f\x1a\x37\x1d\x74\xca\x91\x69\xb8\xf9\x6d\xe1\x41\x6a\x6f\x28\x24\x91\x56\x1b\x7b\xc9\x6f\x93\xb4\x5e\x6f\xd7\x3c\xab\x3a\x69\xdc\x35\x71\x8f\x6c\x95\x00\xff\xc4\xe6\x89\x27\xf7\x9a\x70\x95\xa0\x36\xb3\x04\xd5\x69\xd2\x00\xa4\xe4\xfc\x50\xd4\xea\x23\x9e\xe2\xe0\xea\xa6\xc4\xe2\x9e\x5f\x2d\x2f\xa0\x5f\x3b\xc5\x6c\xc7\xdb\xab\xea\x72\xcf\x0b\x3c\xed\x6e\xd9\xf3\x85\xe4\x14\x8d\xca\x02\xaf\xd9\xa0\x6c\x4b\x7c\x50\x37\x36\x61\xb5\x86\x61\x85\x06\x87\x22\x93\x91\xad\x19\xed\x3a\xb6\x5b\x48\x40\x85\x95\x02\x8e\x7e\x9c\xdf\x7d\x67\x67\xf1\x5e\x3a\xab\x0e\x56\x2d\x3e\xc3\xc5\xd6\x80\xc2\x5b\x57\x1d\xf7\xf7\x2d\x54\xb6\xe3\x1f\x54\xbe\x65\xea\x46\x0e\x79\xdb\xde\x4d\x65\x11\xa0\x51\x3a\x6e\x93\xca\x91\xca\x37\x78\x1e\x95\x0a\x8c\x4f\xf7\x80\x09\x46\xae\x79\xb4\x9e\x73\x97\xad\x8b\x79\x04\x6d\xf4\x3a\xbd\xf9\x0a\x44\x45\x08\xbf\xc1\x50\xb3\x6b\xb5\x73\xb6\x72\x17\x8d\x9a\x37\x4e\x77\xd1\x02\x62\x5a\x2c\xee\xd6\xe5\xcf\x4a\xc6\xfe\xd9\x11\xe5\x76\xf1\xc5\x24\x2f\xbf\xbe\x16\xce\xff\x96\xb0\xb6\x1d\xba\x33\x8e\x1b\x5e\xa7\xff\x64\x87\x9e\xcd\x07\xb5\x8e\x36\xa9\xd9\x1c\x8b\xf5\xb4\xc9\x7b\xf3\xd7\xa7\x1f\xfe\xeb\xe4\xfd\xe4\xe4\xf4\xf4\xc3\x69\x5b\x83\x85\xe6\x0a\x31\xf4\xe2\x6e\xa3\x8b\x03\xe1\xef\xa9\xa5\x39\x21\x1d\x41\x6d\xad\x5e\xf1\x1e\x28\x03\x8e\x8c\x2b\x78\x2d\x2a\x57\xe8\x41\x09\x65\xaf\xc3\xd5\x25\xab\x2d\x9d\x63\x94\x43\x47\x51\xa4\x04\xc7\xd4\x18\x4c\x10\x69\x79\x30\xb7\xdd\xd5\xf1\x3a\xe8\xf5\x15\x38\x76\x00\x77\x04\xc4\x82\xb7\x95\x0d\x0e\x29\xa1\x16\xce\xec\x3b\xfc\x2c\xb6\xdc\x3c\x6a\x6b\xa5\xaf\xcb\xe2\x9f\x2c\x17\x5e\x09\x5b\xf3\x93\xb1\x5c\xbe\x12\x83\x6e\x85\x54\x64\x70\x3a\xb8\xed\xf0\x6b\xc5\x1b\xce\x58\x2e\x42\x34\xe5\x18\xff\x16\xdf\x4d\x16\x2a\xb0\x59\x7c\x55\xab\x10\x0e\xe8\xdd\x4b\x3d\x3a\x19\x4e\xa4\x37\x78\xb2\x52\x6d\x59\x5e\xc9\xba\x9f\x76\xed\x67\x5d\x19\x95\xc4\x8c\x63\xc8\x19\x1d\xc3\x26\x5c\x31\x61\x7c\xde\x84\x35\x29\x7d\x96\x15\x57\x70\xdb\x87\x59\x08\xae\xfc\x8e\x6a\x75\x4f\x84\x67\x08\xba\x62\xa4\x9b\xc1\x23\xb3\x41\x99\x76\x80\x6b\x44\x7e\x8a\xbf\x2f\x0e\x5e\x41\x18\xa8\x29\x4b\x33\x59\x3c\x18\x90\xc8\x50\x32\x8d\x54\xff\xe2\x40\x56\xba\x17\x65\x2c\x47\xdf\x7e\xc9\xad\xac\x72\x98\x26\xb7\x2f\xc0\xe5\x60\x72\x0b\x4e\x07\x05\x23\x0a\xd7\xc9\x48\x2c\x0a\xb9\x82\xf9\x35\x0b\x7f\xee\x1f\x36\x61\x16\x57\xf5\x9b\x9f\xa9\xff\x19\xcb\xf7\x0f\x7f\xc9\x31\x78\x19\x1d\xf0\x3f\xfb\xfb\x0f\x1a\x02\x4e\xd7\x74\xdf\x13\xc6\xf0\xae\x87\x3f\xe8\x06\xbf\x8a\x17\xbe\x15\xe2\x4d\xa9\x34\x2d\x44\x94\x33\xb0\xcc\x6c\x4c\x63\x53\x11\x65\x57\x4a\x3b\xd2\xcb\xbc\x28\x59\x34\x92\xfb\x72\xac\xb4\x24\x08\xcd\xeb\x83\x83\x01\xa2\x24\x71\x05\xb6\x59\xea\xa1\x13\x81\x14\x7f\x36\xd2\xd9\xe3\x00\x1b\x40\x51\x1f\x29\xd6\xa0\x8a\x0b\x66\x6a\x1b\x1b\x4a\x68\x29\x02\x37\x69\x3d\x2f\x96\xb5\xd0\xdb\x27\x39\x21\x56\x81\xf7\x9e\x23\x6a\x3f\x5c\x02\x6a\x71\x59\x9a\xfb\x8f\x27\x8c\xc6\x0d\x0d\xbe\x8b\x4d\x08\xf7\x8d\xbc\xe0\xab\xb8\x2c\x07\xb4\x79\xe5\xdd\x2f\x68\x86\x46\xfa\xb4\x4e\xaf\xe3\x9a\x45\x86\xa4\xd3\x2e\x67\x0d\x4f\x30\xb4\xf1\xd4\xde\x04\xef\xef\x47\xe3\xa6\xd1\xa6\x11\x27\xff\x79\x7e\xf2\xfe\xf5\xe4\xe3\xe9\x87\xf3\x0f\xe7\x7f\xfb\x78\x72\xc6\xcf\x81\x72\xc9\xe4\xa3\x4d\x2b\xbf\x0f\x8d\x59\x58\x08\x2c\x7d\xc9\xa4\x1f\x45\x47\xc6\xbb\x9d\xfd\xdd\x31\x0b\xdd\x0c\xb6\x02\xd9\xc4\x62\xdb\x3e\xe2\xd6\xf9\x91\xdb\x86\x83\x7d\x0c\xaf\xb9\x8e\xb3\x23\xe6\xd6\x1b\xd8\xbb\x0e\x0e\xc8\xe1\x1d\x89\x0a\xd9\x89\x8d\x8a\x10\x9d\xeb\x7a\x82\x21\x95\xac\x6f\xb4\xeb\x56\x36\xdd\x1d\xb3\x42\x2a\xdb\x6e\x56\x7e\x05\x6b\x84\x0e\x43\x80\xf5\x21\x75\x3a\x8c\x0a\x3a\x0d\x05\xd6\x3e\x35\xe9\xe8\x38\xbf\xbd\x87\xa8\xff\x45\x97\x9a\xf5\xde\xe1\xba\x94\xec\xff\xe0\xd0\xb1\x5f\xa3\xeb\xfe\x07\xb7\xaa\xfb\x7a\xad\xfc\x3f\x3c\x5e\x29\xff\x0f\xeb\x74\xf2\x37\xa8\x98\xff\xb1\x5b\xc3\x7c\xbd\x56\xfb\x1f\x3b\x95\xda\x9d\x06\x0d\x7f\xb2\x0d\x1a\xd6\x68\xe9\xff\xd9\xad\xa4\xef\x0c\x25\xf4\x17\x3b\x94\x50\x2b\x4a\xce\x01\x89\x92\xd3\xf5\xce\x68\x5f\xda\xb4\x3c\x14\x79\xf4\x8f\x6d\x5d\x17\xa9\x47\xa3\x95\x5c\x94\xb6\x4f\xa4\xd3\x04\x9b\xf3\xe7\x40\x68\xfd\x28\xe7\x31\x52\xf4\xba\x56\xe3\xaf\x0b\x0d\x7d\x65\xf8\xc2\x58\xb8\x34\xe2\xf0\x90\xe1\x43\xd6\xad\x2b\x6b\x44\xfb\x79\x68\xbc\x97\x26\x08\xd3\xea\xbc\x5c\xd6\xf3\x3b\xa5\x3b\xdf\xbf\x28\x8a\x8c\x46\x08\x9a\x24\xec\x62\x79\xa9\x1c\xc1\x7e\xcb\xee\xb0\xb1\x9b\x34\xcb\x7e\x88\x6b\xd0\xf2\xe9\x32\xac\xd5\x03\x11\x29\x67\xdb\xde\xde\x27\x76\x37\x6c\x6b\x9a\x43\xbf\x75\x01\x54\x6d\xed\x5c\x05\xa6\xba\xf9\x36\x65\xd5\xa0\xa0\xea\xe0\x77\xf9\xcd\xa3\x91\x77\x6a\x64\x3f\x14\x7f\x4b\x2d\xfb\xa1\x5d\x58\x77\x31\x7d\x58\xe4\x1d\x12\x95\x82\xa8\xa8\x05\x0d\xb8\x07\xff\x6e\xcb\xfb\x2f\x75\x28\xc7\x6b\x97\x4e\x8e\xa4\xa9\x77\x87\x12\x33\xf5\xb5\x34\x34\x22\x73\x6e\xea\x81\x7c\x6a\x31\xb1\x96\x6e\x9b\xba\xad\x33\xc9\x86\xda\xc4\x14\x01\x07\xf3\x0b\xf2\x42\x69\x35\xc9\x8b\x7c\x8b\x30\x7e\x8f\x64\x9c\xa5\x7c\x78\x4d\xc4\xc0\xcd\x31\x05\x1f\x2d\x24\x76\x39\x49\xde\x86\xd9\xfb\x2d\xc6\x4a\xfe\x35\x4c\x3e\x4d\x1f\xa9\x2e\xaf\xc6\xbf\x69\xa3\xd0\xb4\x7a\x5f\xe4\x6d\x9f\xc4\x98\xec\xe4\x1f\xfe\x48\xd8\x87\x8e\x5b\x99\x43\x2e\x2d\xe4\xb1\x1d\xd1\xfd\x5c\xf1\x05\xdd\x90\x0e\x01\xb5\x53\x90\xed\xf2\xc1\xfb\xb5\x5c\xfc\x6d\xa3\x49\x95\xb5\x41\xe4\x7d\xe8\x12\x79\x77\xf9\xf6\x75\x5c\x39\x3f\xc3\xbe\xf1\xd1\x36\x95\x10\x5c\x10\x9d\xf6\xb4\x7d\xfa\x92\xcc\x6e\x5e\xf5\xd0\x88\x7b\xb9\xd1\x21\x83\x15\x00\x51\xcf\xa4\x96\xbe\xab\xf1\x0e\x57\xc2\x48\xf0\x20\x84\xb0\x15\x6e\x07\x5c\x42\xa4\xed\xf6\xdb\x49\xe7\x03\xb9\xb3\x8e\xa0\x17\x54\x5a\x4d\xa5\xc9\x72\xaf\xa0\xdc\x5b\x13\xd9\xb6\xf0\x3b\x63\x79\x78\x00\xce\x77\x9c\x3c\xaa\x37\x4b\xcb\x4a\x45\x4a\xee\x06\xcb\x62\x02\x45\x5e\x85\x87\xe9\x0b\x15\x12\xc6\xb0\xf2\x42\x21\xe5\x38\x90\x5a\x64\xf0\x8d\x36\x5e\x34\x25\x1d\x37\x95\xdd\x6d\x8a\xaf\xc5\xcd\x76\xa0\x6b\x43\x19\xd8\xba\x87\x48\x17\x11\x23\x64\x3a\x9d\xab\x4e\xfe\xb1\x8c\xb3\xb6\xa3\x9a\x5d\x67\x90\x96\x20\xa0\x1e\x66\x84\x76\xf5\xb4\x63\x42\xc5\x13\x86\x4e\xdc\x8d\xa2\xac\x98\x9a\x55\x18\x46\x7e\x07\xd8\x74\x71\xf1\x53\x5f\x84\x61\x40\x63\xa0\x51\x56\x4c\xc7\x66\xdb\x0d\xf5\x84\x13\xc6\x49\x32\x20\xdb\xc5\xf7\x80\xd5\x15\x71\xbf\x91\x6d\x34\xf3\x25\x2b\x29\x40\x16\xc5\xa2\x33\x4e\x96\x5c\xe2\x5d\xd1\xa4\x8c\x35\x3e\x94\x8a\x61\x44\xca\xfe\xf2\xe0\x15\x74\x82\x24\xed\x1f\x8e\xe1\x4a\x80\x73\x86\xc8\xf8\xce\x50\x3a\xdd\xdd\x82\xe8\x2d\x66\xf6\xa2\x58\x78\x81\x0c\xec\x62\x65\x2d\xab\xb9\x17\xf0\x81\x3a\x89\xa7\x5d\xb5\x56\x6a\xb4\xda\x40\x74\xc4\x2a\x08\xd7\x44\x95\x55\xd3\x9a\x5d\x55\xb6\xc1\xa1\xb0\xc7\xac\x30\x78\x99\x6e\x45\xa4\x36\x61\xae\xc3\xe4\x6f\x7a\x65\x23\xfb\xc1\x69\xb4\xdc\x7e\x0e\x94\xc3\x7e\x30\x26\x9e\xaf\x83\x50\x6f\x99\x07\xd6\x63\x4d\x1f\xad\x53\x75\xad\xbd\x8f\x1e\xbb\x8e\x50\xe7\xab\xc8\x99\xb1\xed\xc0\xd5\x96\xa4\x89\x11\xd5\xd8\x0b\xd3\xe4\x36\xd2\xb4\x27\x74\xd3\x59\x34\x92\x1b\x8a\xb8\x69\xd1\x41\xaf\x27\x1e\x9e\x30\x9a\x1e\x79\x6c\x31\x5a\x84\x52\xd1\xa8\xb8\xf8\x69\xbc\x99\x10\x63\x14\x5d\x5e\x62\x5b\x32\xbb\x26\x10\x92\x30\x5f\xe6\xa4\x17\x09\x01\xcb\xc1\xb0\x61\xd8\x26\xa6\x19\xcb\xf7\x0e\xbf\x10\xa9\xa4\x7d\xb0\x9c\x88\xe9\x5d\xf0\x9b\x9f\xec\xb4\xfa\x9a\xef\x9a\x88\x43\x47\xd1\x41\x98\x56\x6f\x63\xf5\x09\x6f\x7b\xb0\x1b\xa4\x11\xe5\x56\xcb\x42\x18\x8b\x6e\xbd\x1a\x04\x38\xdc\x5a\x45\x47\x01\xa9\x6e\x9b\x2c\xf3\xe8\x43\xe5\x47\x8e\xf7\x9a\x12\x74\x6e\x1b\xec\xc5\x0b\xe8\x5f\xb0\xe2\x59\x91\x5c\x3a\xfb\x87\x88\x31\x76\x88\x67\xe9\x45\xc6\xc7\x96\xa7\x04\x63\xd0\x63\x5d\x7f\x9a\x8b\xba\x9c\x8b\x70\xff\xd0\xdd\xcf\xb5\x27\xbc\xab\x9b\xeb\x56\x70\xb3\x69\x05\x1b\xe3\x6e\x46\x7d\x93\x47\xab\xdb\x21\x9c\x31\x20\xa0\x0b\xfc\x32\x3a\xb0\xdf\x58\xa9\xeb\x3f\xea\xe9\x30\x94\x76\xda\xc7\x61\x07\x5f\xc0\x87\xac\x64\x35\x19\xb1\x62\x1a\xb4\xb8\x80\x92\xd5\x70\xe6\x47\xea\xf4\xe7\xdb\x70\x64\xf0\x5c\xc0\x13\x8c\x39\x47\x61\xe8\x02\x74\x59\x3e\x58\x4f\xdf\xa8\xec\x00\xaf\x75\xa3\xb1\x7a\x8a\x3e\xb0\x1f\xe2\x01\x02\x97\x8b\x3e\x8c\x24\x1f\x72\x55\x4b\xc7\xf4\x67\xac\x7e\xf1\xaf\xff\xfe\xd2\x0b\x47\x50\x40\x28\x66\x87\x5e\x30\x0e\x1a\x70\x87\xb1\x5e\x6a\x22\xc4\x14\x1b\x05\x27\x4a\x04\xf2\xa5\x9f\xf0\xb6\xba\xeb\xba\x42\xf7\x3f\xb7\x42\xf7\x03\xb6\x6f\xf2\x6a\x61\xdf\x3b\x01\x10\xd3\x87\xa8\x23\x7e\xfa\xe6\xfd\x5f\x27\xaf\x8f\xce\xbe\x39\x39\x7d\xf3\x5f\x27\x93\xd3\x93\xbf\x9e\xfc\xe7\xc7\xe8\xd9\x68\x67\x32\x7e\x76\xe9\x86\x39\x3e\x3a\xfe\xe6\x44\x3a\x8b\x90\xb9\x27\xc7\x47\xef\x4e\xde\xd2\x2a\xfc\x51\xbc\xff\xcf\x1f\x93\x71\xe0\x83\xc6\x79\x60\x56\xd7\x06\xff\x71\xff\x7e\x72\xff\x63\xff\xfe\xc7\x2a\xd8\xf3\xfb\xc1\x2b\x13\xfe\xbb\xf7\xaf\x4f\x4e\xcf\x8e\x3f\x9c\xca\x12\x93\xc3\x56\x13\x7b\xc1\xa6\x32\xcf\xa3\x67\x3f\xee\xdf\xff\x58\xed\x3d\xbb\x24\x0a\xf0\x57\xb5\x5f\xd5\x65\x38\x2b\xca\xab\x58\x86\x47\x94\x11\x10\x65\xe2\xfd\x7d\xcb\xb1\xe6\x73\xb0\x81\xe3\xb9\x91\xf5\x4e\x2e\x22\xeb\x81\xdd\x82\xf6\x50\x79\x88\x77\x2f\x5c\xe1\x52\x0c\x58\x97\x2a\x7a\xfc\xb3\x7f\xfd\x77\x7f\x74\xb0\xff\x97\xf1\x1e\xef\xbc\x5e\x54\xe0\xe5\x12\x94\x4b\xf8\x4e\xc0\x5f\x91\xfc\xf1\x6a\x11\x97\x15\x7b\x03\x71\xaf\x31\x25\x3c\x3c\x08\xf6\x0f\x07\xb0\x75\x86\x55\x24\x50\x1c\xc9\x6c\xe5\xfe\xb1\x8a\x22\x70\x6d\xf1\xca\x83\x83\x36\xf0\x06\x15\xd5\x37\x78\xe5\x79\x03\xba\x8e\xfc\x2a\x68\xc8\xfb\x42\x56\x4c\x7f\xa9\x41\xab\xea\x52\xe8\x34\xe3\xbc\x9e\x8d\xaa\xba\x1c\xdf\xdf\x57\x75\x39\x24\x44\x80\x62\xa3\xf1\xbc\x51\x6a\xdd\x72\xb8\xab\x45\x96\xd6\xfe\x33\xbe\x08\x08\x5c\xc2\xa6\xf1\x15\xcb\xd2\x7f\xb2\x56\x01\x39\x3f\x5d\x4b\x3d\xf4\x9e\x1c\x4e\x9e\x3c\xf7\x82\x7e\x5d\xbc\x2d\x6e\x58\x79\x1c\x57\xcc\xa7\x75\xc7\xd5\x9c\x95\xaa\x6a\x90\x22\xc4\xd3\x39\x8b\xdc\x5b\x2b\x9c\xa7\x75\x04\x00\xb6\x69\x03\x2f\x1e\x0a\x8d\xad\x79\xaa\x45\xe0\x00\x0c\xa3\xa2\x75\xd4\xad\x0e\xb5\x7a\x61\x6d\xf9\xd0\xdb\xf7\x82\xa1\xae\x28\xe2\x64\xdc\xa5\xb5\xbe\xed\x30\xd9\x83\xa4\x35\x70\xe2\x7a\x3a\x0f\x2b\xb6\x88\xcb\x98\x1f\x56\xd3\xb9\xae\x67\x3a\x2f\x5f\x4d\xe7\x65\xbf\x2e\xbe\x5b\x2c\xe4\x40\x0e\x3c\xaf\xd1\xf8\x3f\xfb\xbb\xa4\x27\xdb\x55\x09\x79\xd6\xcc\x04\x96\xf9\x42\x3a\xbb\xd3\x53\xb3\x88\xcb\xba\x8a\xf4\x4a\xf1\xfa\x5e\x10\x16\xcb\x5a\x9e\x50\x5a\x41\x1d\x20\x9d\xb1\x58\xe4\x20\x25\x91\x1a\x2e\x00\x06\x11\x45\xb1\xac\x45\x1c\x5b\x09\xd5\x9f\xce\xe3\xf2\xa8\xf6\x0f\x02\xb3\xe7\x7b\x1a\xa2\x5a\x5e\x54\x75\xe9\x1f\x06\x8a\x8d\xe0\xd5\x68\xd3\x23\xd5\x21\xbe\x81\xcb\x8a\x1f\x5b\x9b\x66\xc8\x41\x52\xf5\x52\xde\x08\xfb\x3c\xf4\x26\xdd\x4b\x7e\x1a\x2f\xd2\x3a\x76\xae\x93\xae\xbe\xc2\x88\xcb\x5e\x36\xc6\x86\xe7\x87\x4d\x87\x50\x6d\x35\xbb\xaa\x07\xb3\xab\x9a\x73\x30\x83\xac\x98\x86\x37\x83\x9b\x50\xaf\xfd\x81\xfe\x19\xaa\x6d\x38\x50\xbf\x42\x05\xa7\xa0\xe4\x82\x18\xc8\x1f\xa1\x1e\xd1\x81\xfe\x19\xea\x1e\x0e\xf4\x4f\x03\xcd\xfe\xec\xaa\x8e\x66\x57\x46\x8c\xca\x3e\x67\xc8\xb2\x62\x6a\xa4\xdd\x44\x37\xc6\xb7\xc6\x99\xec\x62\x13\x42\x76\x20\x52\xbf\x8c\x7c\x55\xde\x59\x5a\xf6\x2c\x92\x3f\x8c\x5c\xdd\xc7\x48\xff\xb4\x6a\x97\xfd\x8d\x48\xd7\x37\xb1\x57\xcb\x0b\xa7\x79\xc2\x9a\x67\x28\xd7\x9b\x8b\xcb\x08\xe1\xe7\x76\x98\x60\x3f\x2f\x1c\xda\xce\x62\xdb\xa2\x6d\x97\x32\xd5\x1a\xed\x78\x87\x6b\xd9\xd3\x93\xf3\xa3\x37\xef\x23\xaf\x44\x1c\xbe\x7e\xf3\xf6\xfc\xe4\x34\xf2\x66\xc4\x6c\xec\xc3\x82\x95\x31\x86\x4e\xb8\x5b\xb0\x70\x5a\x2c\x95\xbb\x29\xf0\x8d\x0e\x6e\xd3\xc5\xe5\x60\x09\xce\xa6\x96\x79\xdd\x74\x6c\xa4\xb3\xe5\x05\x32\x90\xaa\x7a\x99\xe2\x23\x85\x13\x4a\x89\xe6\x79\xfe\x82\x5f\xee\xd0\xee\xf0\x40\x84\xf6\x36\x7c\x8e\x17\x12\xc5\x2a\x1a\xf1\x1b\x89\x46\x19\xfb\x27\x3c\xe0\x05\x63\x1d\xb0\xc6\x2c\x34\x6e\x1a\x89\x07\xf1\xfa\xbe\x8a\x93\xe4\x4d\xcd\xae\x88\xc0\x0a\x58\x1f\x20\xf6\x4a\xb1\x79\x59\xe6\x18\x93\x68\xff\x30\x4c\x6b\x76\x75\xce\x8b\x02\xc8\x2b\x6c\x7d\x80\xa3\x1a\x56\x2c\x9b\xa1\x03\x75\x44\x60\x96\xe6\x89\xc6\x14\xab\xd6\xd7\x34\x99\x11\xaa\x5f\xc8\x77\x41\x10\xdf\x33\x08\xd9\x0e\x3f\x4f\xf2\x04\x0c\x34\xdf\xe4\xb2\x07\xc2\x1e\x8a\xdd\xa8\xca\x43\x38\x63\xd4\xa7\x14\xd6\x01\xa6\x51\xa4\x1a\x80\xf9\x0c\x56\x7b\x7b\x3a\x05\x27\x53\x2a\xdb\x03\x8e\x51\x14\x69\x1c\x82\x15\xef\x15\x1d\x4c\xa9\x7b\x6e\xa1\x7d\x10\x9a\x13\x23\xdb\x0f\xf9\x59\x03\xb3\x42\x11\x8e\x3a\x81\x87\x66\x57\x2c\x40\xb3\x2b\x6a\x80\xf6\x01\xf1\xbd\xc3\x60\x68\xf5\x2c\x82\x8c\x7d\xdd\x9f\xe1\x76\xdd\xd9\x3b\xc4\x0e\x75\x8d\x30\xdc\xf1\xc5\x32\x49\x67\x16\x5a\x51\x14\xe1\xc2\x90\x07\x16\x2e\x1f\x73\x12\xf7\x7c\x1b\xb5\x80\x9a\x46\xba\x8a\x34\x0d\x22\x3f\x2d\xae\x16\x45\xc5\x8e\x6a\x0b\xe9\xa0\x21\xdc\xbe\xb5\x62\x5a\xdd\x06\xd6\xa1\x7b\xca\x86\xba\x7f\x6b\x10\xb2\xf1\x69\xb5\x22\x45\xac\xfc\xda\xac\xd9\x40\x59\x9d\x14\xc1\x39\xf6\xa0\x73\xf7\xfd\x72\x1b\xec\xcb\xcd\xa9\x51\x13\xac\xc9\x97\x87\xc1\x6a\x7f\xdf\xb5\x05\xb7\xdd\x6b\x7c\x97\x6c\x58\x09\x4d\x68\x04\x5e\x70\x85\xe1\x3b\x8e\xf3\xa7\xb5\x50\xf2\xdb\x89\xd1\xc9\xe8\x4e\x3d\x8f\xeb\x9d\x79\x5c\xed\xe4\xec\x9a\x95\x3b\x17\x8c\x81\x3b\x4f\x96\x70\xee\xd0\x3d\x87\xe6\x34\xd8\xb4\x74\x56\x2c\xf3\xe4\x58\xba\x23\xcf\x8b\xfa\x6b\x9a\x20\xfc\xf4\x98\xdd\x83\x20\xf9\x6a\xf6\x36\x4f\x57\x74\x00\x1c\xb5\x59\x0b\xa1\x61\xd1\x81\xb6\x95\x68\x2f\xce\xa1\x59\x0e\x04\x46\xa4\xac\x6c\x73\xef\x30\x24\x74\x53\xdc\xa3\xd5\x77\xab\xf2\x91\x09\x3a\x1e\xca\x7a\x08\x5e\x36\x19\xde\x3f\x1c\x4a\x1a\xfc\x92\x80\x89\x30\x7a\x2f\x14\x2a\xfc\xee\x4b\xc6\xf0\xb3\x56\xba\x98\x51\xed\x73\xa0\x6b\xd5\x5b\x2b\x3d\xb2\xd7\x6f\x63\x4f\xad\x4d\x82\x9a\x50\x2f\x57\xe7\x66\x2f\x16\xed\x51\x84\xec\x71\x58\xd4\x73\x56\x7e\x58\xa0\xf7\x51\x65\x07\xd2\xa8\xd1\x3a\x08\x56\x02\xa4\xa3\x8a\xfd\x43\x88\xfd\x20\x80\x64\xdf\x8a\x85\x38\x11\x8b\x05\xf6\x62\x2f\x92\x10\xf0\x39\x6c\x2d\x19\xea\x26\x64\xff\x90\x6f\xc4\x7d\x3c\x7b\x1a\x85\xcc\x8b\x8e\x75\xb6\x7f\xb8\x09\xc9\xbd\x9f\x01\xc9\x3d\x8e\x64\xd3\x74\x8b\x52\xab\xba\x8c\x3c\x6f\xd8\x61\xfc\xe7\xdb\x95\x3b\xe8\x6b\xb0\xaa\xea\x72\x2f\xf2\x76\xbc\x3d\x73\xf5\x40\x6c\x29\x7b\x9d\x04\x54\x66\x85\x17\xb5\x34\xbf\xf4\x01\xc9\x0d\xbc\x7f\x5d\xc6\xd3\x4f\x2c\x71\xdb\x27\xaf\xbb\x00\x7c\x21\x66\xff\xd1\xcc\xfd\x1a\x96\xdd\xc1\xe1\x6f\x63\x8f\x69\xb1\xf5\x6f\xde\x9f\x9d\x9c\x9e\x47\x5e\x2a\x62\x58\x9c\xbc\x3d\x39\x3f\x89\xbc\xc4\xeb\xba\xef\x9e\xe3\x50\x5a\xac\x3a\x4d\x95\xaf\xc0\x1d\xdc\x3a\xe4\x72\xbe\x5a\x88\xe3\x39\xeb\x2e\xfd\x53\xb7\x75\x41\x80\xef\x77\xb3\xf2\xe8\xa7\xd6\xcd\xcf\x87\x88\xc3\x3a\xae\x9e\xa2\xdc\x17\xa3\x82\x7f\x86\x46\x96\x18\x21\xfc\x63\x66\x89\xd1\xc2\x3f\x66\x56\xfb\xaa\x50\xd9\xe7\x5b\xce\x6e\xde\xe0\x48\xa1\x5a\xcf\x52\x28\x6c\xca\x74\x73\x2c\x20\x9f\x8f\x9f\xa0\x60\xa0\x3b\x0a\xa1\xdc\x35\x47\x63\x8d\x08\x52\x48\x7c\xde\xd0\x6c\x31\xca\xa3\x34\xe5\x37\xb3\xf1\x04\x44\x18\x44\xd3\xcc\x3f\xd5\xe7\x1b\x02\x91\x93\x42\x10\x69\x3c\x41\x80\xeb\xa5\x3f\xa1\x4b\xf0\xd3\x44\x93\x8f\x83\x99\x32\x6c\xa5\x44\x8e\xf9\xc6\x09\xc1\x4b\xa7\x1e\x4b\x8c\x40\x45\x01\x51\x32\x8c\xc8\x42\xf3\xed\xf5\x24\xe9\x9e\x63\x28\x90\x99\x37\x9b\x0e\x86\xb4\xa7\x91\xa3\x14\x5d\x76\x28\xc4\x73\x55\x8d\x67\x41\xd7\xf8\x3e\xa6\xdd\xbd\xc3\xc6\xbd\xe2\x15\xd3\xfe\xe0\x9e\xd4\xc2\x81\xa7\x00\xab\x58\x59\xfb\xb4\x50\x40\x59\xf1\xd6\x1a\x17\x22\x81\xff\x19\xeb\xb7\x35\x3c\xc6\x8a\xde\x6e\x55\x22\x2d\x10\xfd\x1e\xfe\x3f\xb5\xf2\x0c\x1b\x7a\x01\xff\x1a\x5e\xcb\xed\x05\x03\xb6\x9d\xed\x90\x43\xda\xb3\x3b\xa7\xd0\x61\x31\x9b\x55\xac\x46\x16\x7d\x03\x47\x61\x22\x14\xda\xcc\xb6\xf2\xfc\x68\xc2\xf5\xf1\xc8\xc1\x76\xac\x75\x82\x52\x02\xab\xa2\x36\x71\x01\xb0\xdd\x48\x1c\x01\xc1\x0a\xeb\xda\xb3\x46\x48\xb0\x5b\xd8\x33\xf8\x5f\x86\x88\x76\x21\x04\x4a\xf8\x0f\x39\xf2\xb0\x46\xeb\xe0\x0b\x1d\x3b\xca\xc9\x3c\xbb\xd6\x07\xbf\x47\xc1\xea\x11\xe1\xfa\xad\xf1\xed\x5c\x38\x8e\x8c\x93\x3c\x81\x3b\x96\x6b\x9b\x76\x6e\xcd\xf5\xd7\x2e\x47\x55\x70\xf7\xda\xdb\x73\xe4\x88\xc7\xfb\x0f\xdd\xf7\x2d\x47\xa1\x71\xc7\x4c\x47\x7a\xa6\x95\x5b\x2e\x77\x9f\x3b\xfb\xb6\xe7\x5a\x1a\xe4\xfe\x16\x45\x9d\x45\x83\xd5\x45\xc9\xe2\x4f\xa6\xcc\xed\x65\x17\xb4\xba\xfc\xb9\x11\x0c\x56\x38\xc1\xe0\xe1\x4d\xd7\xbb\xea\x9c\x13\x77\x35\xfc\xc4\x21\xd1\x1b\xcd\xf5\xf6\x0e\x7c\x98\xad\x5d\x3c\x84\x43\xe8\x5c\x56\xfc\x02\x08\x10\x83\x8e\x0d\xdf\xe2\x38\xda\x04\xcc\xb1\xd4\xb7\x5c\x09\x70\xd5\x51\x1c\x8c\xbd\xb3\x71\xef\xa1\xb1\x9a\x46\x20\xd0\xa5\x36\x1f\x19\x2e\xc2\xa3\x1b\x94\xfb\x5a\xa7\x04\x43\xd7\x12\x8a\x74\xeb\x76\x7e\xba\x09\xf1\x83\x90\xa2\xfe\x80\x33\x4a\x0a\x3b\xad\x63\xd3\xd1\x71\x72\x89\x47\x26\xc2\x49\x8b\xda\x47\x6c\xd7\xbd\x3e\x63\x33\x7b\x68\x3b\xef\xef\x61\x99\x5e\xce\xb7\x83\xde\x3b\xc4\xaa\x3f\x2c\xa2\x76\x0b\xbd\x5e\x3b\x4d\x48\x93\x79\x03\x1f\x16\x91\xa3\xa1\x5e\xcf\x91\x08\xa5\xf0\x86\x03\x6d\x45\xe2\x7a\x11\xac\x1c\x2d\x88\xab\x7b\x6b\x6c\xc4\xa9\xe2\x28\x81\x13\xde\x95\x21\xcf\x9e\x76\x85\xa9\x62\xa1\x65\x87\xb6\x41\xcc\xd5\xbf\xcf\x44\xcd\x55\xa5\x40\x6e\xad\xcc\x22\x7c\x1e\x74\xf0\xbf\x06\xd4\xa1\x70\x26\xb8\xe3\xec\x69\xc7\x40\xaf\xeb\x68\xc7\x50\x3a\xe6\xec\x8b\x74\x53\x88\x66\x42\x93\xcb\xda\xe2\x74\xef\xdc\x4e\xa8\xd5\x58\x9d\x17\x7f\x2d\x9c\xbc\xcb\xc3\xf6\xdb\x23\x76\x50\xce\x6e\xdb\xf7\xc2\xdb\xfa\xc3\x02\xfe\x1c\x03\x0e\x78\xcf\x78\xcf\x6e\x8e\xf2\xe4\x3d\x64\x0a\xf6\x44\x68\x39\xbe\x11\x9c\xa3\xb1\xb1\xe4\x79\x6d\x0d\x44\x1b\x8f\x21\xa2\x1f\x1d\x36\x5a\xc9\x42\x8c\xf6\x90\x0c\xcf\xcb\x83\xe1\xde\x5e\xca\x57\x89\x8d\xb0\x63\x40\xc6\x43\xec\x44\xd4\x86\x46\x12\xa0\x3a\xe7\x82\x10\x5c\xe3\xcc\x17\x95\x74\x75\x46\x53\x08\x51\xd9\x90\xfa\x0c\x55\xa9\x2f\x49\x2f\x94\x02\x2f\x8e\x19\xfd\xd0\xe4\xa1\x85\x90\x38\x33\x16\xe2\xd0\xa0\xf5\x05\xc3\xae\x0e\xec\x47\x04\x6e\x98\xee\x47\x87\xa4\xd7\x34\x8b\xae\xc1\x03\xdc\xc6\x14\xfd\x28\x8a\x1c\x1d\x30\x56\x03\x58\x81\x3c\xba\x63\x01\xc5\x60\x5f\x8f\x66\x43\x67\x40\x12\x09\x27\x17\x47\xca\x34\x6d\x06\x12\x9f\x70\x1c\x2f\xd3\xf6\xde\x4e\xf7\x0f\x51\x34\xbc\x15\x31\x6b\x8f\xc3\xab\xe7\x83\x43\xe2\xf1\x53\x8f\xc0\x46\x59\xee\xaf\x21\xbb\xd5\x42\x44\x8b\x2f\x2a\xc8\x35\x9c\x6f\x7f\x6a\x5c\x82\xa1\xd7\xd5\xd6\xb5\x75\x0c\x30\x81\xdc\xb7\x9a\x8e\x46\x90\x43\xd5\x2d\xa5\x84\x1d\xa5\x4f\xd9\x50\x9f\x7e\xb3\xb1\x5a\x46\xc6\x1d\xfe\xc7\x04\x64\xad\xe1\x7f\x61\xdb\x63\x3d\x0b\xc1\xcf\xb6\xd8\xba\x66\x55\xbd\x49\x07\x58\xc0\x3c\x4b\xf3\xb4\x4e\x41\xf3\xa5\xac\x5a\x99\xd5\x72\xb1\x28\xca\xba\x9d\xce\xea\xe5\x62\x32\x2b\xca\x89\x6a\xca\x82\xe0\x7f\x5b\x89\x71\x12\x2f\x6a\x56\x56\xf2\x47\x37\xc0\x3f\x96\x79\xda\x2e\x3f\x67\xd9\x82\xa3\xf9\xdb\xb1\x35\x7e\xac\xf6\x33\x0c\xe0\xd7\x45\x79\x8e\x3d\xdb\xe4\x62\x92\x83\x6d\x0a\xe3\x7a\x84\x63\xb7\xc9\xc7\xe4\x7f\x7c\x97\xa7\xb5\x0b\xd6\xb2\xe5\x45\xc5\x35\x68\x98\xff\x47\xbe\xfb\xb2\xb4\xf8\x4b\xb3\x8c\xda\xe9\x87\x00\xb2\xfb\x6d\x7d\x77\xad\x64\xc7\xca\xd9\x5e\xbd\xfd\xe7\x77\x2b\xf4\xf9\xca\xf0\x5b\xe8\xb8\x3f\x20\x9c\xb7\x9c\x00\x97\xc3\x92\xb8\xba\xcb\xa7\x40\x37\x06\x38\x25\xdf\x86\x90\x74\x92\x27\x2a\x81\xdd\x4e\xd9\xc2\x94\xf4\x80\x0e\x9b\x7c\xc8\x87\x8f\x35\x3e\x1e\x44\xfb\x9b\x67\x53\x6c\xf3\xd1\xb6\x74\xe2\x67\x36\x5c\x70\x6d\x8b\x47\xcc\xd6\xfa\x51\x71\xcd\x04\x39\x46\x61\xd3\x40\x58\x32\x3f\x68\xf4\xd4\x38\x20\xe2\xb2\xe6\x20\xdd\x93\x55\x7c\xf2\x91\xb1\x15\x88\x89\x74\xa7\x11\x89\x4d\x62\x3f\x4f\xbb\xb1\x5c\xe6\x93\xac\x28\x16\x2a\xf9\x3a\x65\x37\x95\xdc\x7c\x3f\xfd\x63\xc9\xca\x3b\xf7\x91\xf1\xf3\x91\xf6\x9f\x4d\x21\xb2\x5c\xe6\x9b\x36\xe4\x4f\xff\xc1\x7b\xfc\x25\xa8\x3c\xce\x0f\x90\xe4\x7e\xc9\x2e\xd3\xaa\x66\xe5\x37\x90\x86\x2e\x00\xf8\x7a\xf9\xc6\x01\x73\xa4\x33\x86\xea\x9d\x10\x12\xa3\x03\xe2\xf4\x69\x59\x96\x2c\xaf\x4f\x8b\x65\xcd\xde\xc7\x57\xcc\x8f\x17\x0b\x71\x01\x5c\x2c\x8e\x8b\xbc\x2e\x8b\x2c\x63\x65\x14\x2f\x16\xfd\xc9\x64\x2a\x7d\x12\x81\x3e\x70\xf1\x69\xb9\x40\xbf\x45\x08\x34\x88\x17\x9c\xbf\x04\xfe\x46\xfb\x8b\xb9\x64\xb5\x6f\xd4\x15\x7a\x76\xa3\x54\x0b\x5c\xe4\x7d\x8c\xeb\xf9\x2f\x89\x0b\x6f\xcf\x81\xc6\x77\xa7\x6f\x35\x16\x25\xc7\x77\x5d\xf3\x08\x30\xb8\x8a\x53\xab\x4d\xcc\x08\xbd\xac\x90\x18\xf1\x55\xc7\x2b\x27\x4d\x5e\xa7\x55\x0a\xe8\x85\xcb\x32\x7b\x5c\x8b\xf0\xd5\x97\xad\xf0\xb3\x97\xb7\xc1\xab\x03\xb9\x34\xaf\xa6\x64\x71\x92\xe6\xac\xaa\x5e\xb3\x19\x2b\xcb\x38\xab\x20\x84\x27\x94\x1c\x79\x82\x37\xfc\xee\xf4\xad\x37\x8e\x96\x65\x36\x2c\x97\x39\xa0\xe4\xc5\xc9\x75\x9c\x4f\xd9\xa9\x2c\xee\x29\x8f\x05\xae\xb2\x42\xaf\x50\x14\xe6\x0d\xcf\xe3\x3c\xc9\xd8\x77\xa7\x6f\xa1\x77\xf2\x92\x71\x13\x63\x97\x0d\xbb\x86\x74\xfa\x09\x8a\x55\x2c\x63\x60\x15\x08\xee\x86\x6e\x85\x1f\xda\x27\x2c\x8b\x66\x69\x9e\xfc\x90\xd6\xf3\xa3\x0a\x9e\x15\x9d\xc0\x80\xfa\x13\x96\x85\xde\x55\xb1\xac\x58\x52\xdc\xe4\xf8\x20\xfe\x84\x65\xfd\xb4\xf2\xbd\x41\x9a\x2f\x96\xb5\x17\x60\xb5\x70\x31\xe0\x59\x9c\xf0\xf9\x1e\xff\x44\x70\xf1\x50\xe3\x4d\xe7\x6c\xfa\xe9\xa2\xb8\x15\xb1\xcc\x78\x52\x19\x27\x69\x41\xbe\xe7\x69\x92\xb0\xdc\x0b\x56\xb2\x69\xd3\x27\xc0\x6e\x52\x4c\x41\xab\xa1\x3f\x8f\xab\xaf\x8b\xe9\xb2\xba\xbf\x6f\x25\xf9\x32\x4e\xe5\x0c\xbf\xc8\x4d\xae\x2e\xd3\xcb\x4b\x56\xfa\x1e\x64\xf1\x19\xe7\x74\xbd\x31\xfb\xb9\x5c\x78\xa4\xeb\x30\x98\x7a\x2d\x3a\x86\x5b\x54\x8a\x41\xd3\x5c\x03\x19\x8a\x07\x2d\xb8\xcf\x39\x95\x33\xa2\x28\xfa\x5d\xb0\x82\x01\x14\x65\x86\xe2\x2f\x46\x20\xd6\x11\xe4\x44\x2d\x51\x14\x79\xca\x5c\xcb\x0b\x56\x32\x79\x85\x61\x48\xb6\x9e\xe1\x6b\x15\x32\x0e\xc9\x6d\x1f\x7b\x61\x20\xac\xc7\x42\xf4\xd4\x0b\x31\x34\xdc\x9a\x31\xf9\xc4\xee\x36\x8d\xc7\x27\x76\x77\x5c\x24\xe8\x8a\x57\x3b\x09\xe7\x49\x76\xe7\x64\x32\xea\xb4\x77\x0e\x92\xf2\x47\xb1\xd5\x74\xc8\x5a\x07\xe2\x6f\x78\x33\x4f\xa7\x73\xf9\x45\xcd\x84\x66\x69\x96\xbd\xc9\x3b\xaa\xa2\x9b\x8a\x04\xfa\x03\xac\xac\x6e\x40\x9a\x13\xf3\x07\x6d\x48\xb2\x23\xf8\x66\xbb\x8e\x33\x1f\x32\x45\x18\x7e\x9f\x68\x7c\x3a\x26\x66\x9b\x66\x0c\x22\xd1\x81\xc9\xbf\x08\x32\xa0\xd6\xef\x41\x97\xc6\xea\x49\xc6\xf8\x52\xdf\xf1\xf6\x64\x2d\x7b\xde\x4e\x5e\xd4\x3b\xa0\x0f\xd9\xf7\x14\x25\x7b\xc2\x32\x13\xcf\xf5\xd8\xa9\x21\x14\x7f\xef\xef\xc5\xd9\x14\x7a\x65\x51\xd4\xa2\x59\x2f\x18\xf2\x9e\x70\xfa\xf9\xc4\x77\x0c\xa8\xa3\xe9\x38\x4f\xce\xe7\x0c\x27\x5c\xbf\x8f\x5b\x43\x1a\xea\x87\xed\xc5\x22\xa0\x46\x87\x12\x40\x38\x9a\x13\xe5\x80\xb1\x58\x94\xc5\x55\x5a\x31\x3d\x85\x25\xab\x8a\xec\x1a\xf7\xc0\xde\x1e\xe1\x2f\xa2\xe8\x30\x58\x41\x19\xc1\xce\xf7\x35\xe7\x2b\xc2\xe5\x60\x3c\xf0\x92\x5f\x07\xdf\xe4\x35\x2b\xf9\x42\xb0\x44\x4b\x78\xae\xbc\xa9\xde\x16\xfc\xc8\xb9\x8c\x76\x77\xb7\x3c\x07\xfb\xe2\x1c\x04\x1f\xcc\xec\xbc\x8c\xf3\x2a\xad\x85\x8d\x82\x55\x29\xd5\xeb\xc4\x4e\xb2\x9c\xa7\x1f\xfd\x14\xdf\x9e\xb2\x7f\x2c\x59\x55\x57\x14\xa6\x5c\xe6\x9c\x52\x9f\x4d\xe7\x2c\x59\x66\x2c\x39\x4f\xaf\x58\x59\xf9\xc1\xfd\x3d\xcf\x91\x7c\xcd\x32\x7f\x5b\x98\x3a\xa3\x50\x37\x1f\x5c\x56\x56\xbd\x1e\xfd\xea\xc7\xf9\x9d\xee\x39\x26\x12\x6f\x82\xb7\x75\x84\x69\xa3\x03\x64\x07\xe5\xcc\xc9\xe4\x43\x69\x16\xbb\x2b\x73\xd0\x10\x55\x2e\x92\x26\x50\x78\x80\x17\x26\x35\xda\x62\x06\xe0\x8c\xdb\xdf\x37\x66\xef\xc0\x35\x7b\x27\x79\xe2\x07\x70\xd8\x88\x10\xe8\x30\xf9\xd2\xfd\x5f\x78\x78\x10\x34\x41\x43\xb8\x51\xdf\x03\x86\xc6\x0b\xe1\x4f\x30\x34\xb2\xf0\x5c\x0a\xe1\x8f\x95\x25\x89\xaf\x17\xca\x5f\x16\x00\x52\x34\x2f\xc4\xbf\xc1\x70\xae\xd2\xf3\x84\xa7\xe6\x89\x99\xa6\x09\x06\xe6\xea\x6f\xab\x62\x3e\xa2\x5e\xc8\xff\xb7\x32\xc4\x9e\xf2\x42\xf1\x43\xd7\xdf\xe2\x64\x43\x3b\xa5\x05\x0b\x9c\x66\x48\x3e\x5a\x10\x9c\x83\x0a\xf5\x6f\x0b\x19\x7a\x42\x78\x21\xfd\xea\xbe\xe3\x99\x22\xbf\x0e\x47\xe0\x3a\x2c\x70\xf7\x95\xcc\x71\xa5\x12\x41\x66\xed\x5b\x95\x08\x3a\x7b\x2d\x83\x46\xf2\x5b\x0d\x2b\x15\xfb\xb8\x93\xe6\x3b\xff\x2d\xd0\xfb\xef\x9d\xab\x22\x61\xde\x50\x44\xd5\x15\x3e\x11\x8e\x08\x03\xaf\xf1\x21\xa9\xc8\x53\x91\x84\x3e\xed\xa6\x0c\xf6\xda\x91\xef\xaf\x54\x04\xd9\x50\x27\x9b\x41\xe2\x81\xc8\x84\xb1\xd5\x22\xf9\xee\x8b\x0e\x04\x2b\x9a\x68\x76\xd4\x07\x2d\xe3\x75\x17\x70\x87\x68\x75\x0b\x29\x6e\x87\xe0\xb4\xe3\xda\xfd\x9b\x90\x79\x75\x0a\x22\x1d\x57\x6c\xc7\xfd\xd9\x71\xcb\xe6\x54\x2a\x2c\x05\x9d\xd6\x97\xda\x34\x9f\x96\x70\x7e\x72\x32\xfe\x11\x29\xba\xa4\xe6\xfe\x24\xbc\x45\x23\x6b\xfc\x46\x05\x47\x9e\x34\xec\x3a\x00\x22\x05\x8b\xfc\x82\x61\x7b\xbf\xb1\x21\xd3\x09\x9c\x55\x15\x1a\x5e\xa7\x33\x8e\x40\x14\xa9\x86\x46\xe9\x98\x60\x28\x5f\x6d\xe0\xed\x76\x6b\x24\x3b\x64\x52\x3a\x74\x9f\x29\x88\x15\x57\x14\xfe\x85\xd4\x1f\x2a\x4c\x4b\xf6\xae\xe0\x27\x9d\xbd\x68\x41\x74\x13\x90\x8a\x85\xdd\xb3\xc8\x47\xed\x20\x59\xa1\x3c\x48\xcc\x63\xc5\x90\x16\xcb\xe0\x3e\x9c\x9f\x12\x1d\x1a\x8d\xb7\x9e\x91\x21\x2e\x17\x5f\xde\xa6\x82\x7e\x31\x9b\xf9\x5e\xfc\x53\x7c\x7b\xc6\xf8\xa9\xb0\x6e\x45\x04\x6b\x4a\x1f\x17\x57\x0b\x7e\xc9\xf5\xc2\x75\x53\xed\xaa\x21\xff\x9c\xe6\xf3\x07\xb5\xde\xf9\x1c\xa4\x5f\x73\xd6\x10\x14\x17\xc5\xd8\x9e\x4e\x3c\x96\x16\x38\xf6\xb7\x83\x0a\x3c\x11\x17\x3b\xbd\xb5\x79\xcf\x8e\xc5\x4d\xfc\x18\x24\x05\x28\x58\x28\x83\xd5\x13\xff\xe9\x0b\xb8\xd2\xe3\x5d\x5e\x5f\xd8\x5f\x3e\x0d\xfa\xd3\xaa\xf2\x57\x8b\x02\x19\xc1\x81\x17\x5f\x54\x45\xb6\xe4\x23\x9b\xb1\x59\x3d\xf0\xf6\x0f\x0f\x0e\x0e\x16\xb7\x5e\x58\x17\x0b\xfd\xd5\x04\xfd\x78\xc1\xd1\x3b\x2f\x7c\xef\xa2\x48\xee\x3c\x9c\x1b\xc1\xbd\xc8\x96\xf5\xc5\x5c\x5c\xb7\xa5\x47\xbe\xa0\x79\x42\x99\xda\x36\xee\x96\x7c\x00\x5f\x23\x39\x04\x4b\x7a\xbd\xdd\x27\x7d\xb8\xa9\xf6\xab\x05\x9b\xa6\x71\xd6\x47\x6e\x69\xe5\x4c\x8e\x56\x02\x09\xcb\x0f\xe1\x93\x7e\x5e\x24\x28\xd9\x13\x9e\xc5\x50\xe8\x81\x9e\xb9\xa4\x6e\xa2\x21\xdc\x00\x24\xb0\x29\xfd\x5b\xc7\x6f\x16\x81\x05\xc1\x76\x66\x6d\x8f\xf8\x91\xd7\xb9\x32\xf1\xb5\x70\xe3\x93\x4e\x4b\xac\x2c\x84\xd3\x59\x5c\xcf\x8a\xf2\xca\x11\x0f\xef\x6a\x11\x97\x6d\x1f\xc9\xec\xb6\x7e\x56\x56\xd7\x8b\x07\xbc\x6b\x92\x23\x5d\xee\x0e\x2a\x53\xfc\x8d\xf8\x41\xfe\xec\x43\x19\x3a\x7b\x6a\x09\xb4\x1d\x5b\x11\xe9\x73\xcb\x21\x31\x26\x2b\xff\xb2\x71\xc9\x36\xc9\xbc\x4f\xcf\xbe\xff\xb8\x49\xe6\xbd\xee\xb1\xd4\xf1\xc2\x89\x11\x85\xf4\xe4\x6c\xf2\x58\x0c\xca\x8b\xd1\x68\x8c\x5a\x8c\x44\xca\x5e\x49\xe7\x50\x69\xfe\x13\x9b\xd6\xc8\x72\x57\xd2\xbc\x10\x8e\x24\x25\xb6\x5f\x99\xc2\x78\x33\x40\x76\x88\xf5\xa1\xf3\xcb\x60\x25\x6a\x47\x9e\x34\x5a\x61\x4c\xa6\x01\x85\x09\xf9\xc2\x1e\xac\xf8\xe5\x63\x20\x77\x58\xe8\x10\xe5\x7f\xc1\x66\x40\xe9\xa5\x69\xc2\x65\xbe\xae\x27\xc1\x4a\x88\x79\x8d\xca\xa5\xec\x17\x0e\xe8\x8f\x28\x18\x20\xc1\xa8\x30\xb8\x77\x58\xe4\x6f\xe8\x38\xba\x14\xf7\xdd\x03\x2d\xbd\xcc\x08\xa8\x26\x14\xb2\x87\x81\x2d\x7b\xd0\x0e\x5a\x72\x76\x63\x60\xa3\x21\x9a\x50\x30\x1c\x03\x7a\x71\xd5\x55\x5d\xc7\xd9\xb6\x82\x0e\xa5\x1a\x03\xdf\x50\xb2\x09\xf4\x3c\xfd\x00\x57\x72\xf3\x12\xc1\x6e\x6b\x22\x87\x71\x4b\x4f\x0f\xb5\xa5\x41\xa7\x04\x15\x0f\x07\x21\x34\x10\x94\x59\x7c\x09\x1f\x53\x47\xbe\x70\xeb\x27\x25\x0b\x30\x88\x23\x1b\x89\x71\x40\xa7\x7c\x33\xca\xe8\x59\x28\x2d\x87\x6d\x24\xb4\x7c\xe3\x31\x9d\xe2\x95\x46\x6d\xf4\x86\xce\xae\x19\x1d\x9b\xa5\x59\xcd\x4a\x3d\x3f\x2c\x23\x1e\xa5\x90\x0a\xf1\xb4\x90\xb7\x10\xec\x46\xd1\x41\x13\x18\xfa\x42\xe2\xbe\x1d\x2f\x16\x21\x2e\x71\xb0\x81\xcc\x23\x63\x89\xf7\xaf\xf4\x8e\x69\xe7\xc4\xc3\x76\xf8\x5c\x54\x9b\xbc\xac\x22\x97\x3f\x30\xf4\x1c\x2b\x16\x27\xbe\xd4\x91\x84\x21\x2f\xd7\x17\x9e\x77\x41\x28\x87\x26\x40\xac\x8e\xa1\xd7\x3a\x5a\x6f\x2e\x03\xa3\x2d\x16\x21\x2f\x04\xe6\xfe\xbb\xa4\x2a\xf4\x59\x29\x1b\x72\xc0\xab\xa7\x19\x82\x7a\x0b\x37\xb9\xc4\x69\xc5\xfd\x7a\xce\x72\x87\xb3\x5b\x47\x1b\x24\x02\x1e\xa9\x81\x84\x23\x86\xf6\xc5\x15\x5e\x1e\x41\x2d\xf9\x99\xcc\xe0\x90\x88\xf6\x2c\xe7\xf7\x69\x9b\xde\xf7\x4b\x56\x2c\x58\xee\x03\x87\x25\x89\xcd\xaa\x09\x8b\x32\xbd\x4c\xf3\x38\x43\xda\x07\x49\xe2\x94\x47\x1a\x1b\x5a\xe7\x0c\xe5\x9d\x5a\xd7\x23\x5c\x97\xc6\xfd\x06\x52\x4e\x51\xd8\x28\x51\x90\x8f\x6f\x03\x0f\x22\x4b\x70\xf2\x80\x8b\x47\xc5\x73\x19\xdc\xa4\x79\x52\xdc\x84\x48\xfa\xce\x09\xca\xaa\x79\xab\x04\x0c\x53\x2b\x0d\x5a\xb7\x52\x23\xeb\xbb\x51\x48\x7f\xa3\x0f\x38\x79\x23\xe5\x8b\x79\x27\x95\xdb\x41\x12\x15\x6b\xd0\xc4\x61\xe2\x6a\x4c\x1c\x05\x76\x13\x1b\x4b\x08\x24\x91\x21\x85\x0d\x38\x84\xa3\xe3\x87\x32\x5e\xf8\xee\x13\x25\x24\xa7\x1d\x29\x17\xb6\xf7\x25\x6e\x97\xc6\xf4\x77\xd6\x71\xca\xd8\x0e\xd0\xdc\x60\xa3\x74\x8c\x51\x56\x1a\x69\xb1\xe8\x9c\x33\x7d\xd3\x77\x8f\xab\x7b\x28\xba\x87\x9c\x3a\x8c\x6d\x0f\xaf\x91\xeb\x2c\x0f\x0c\xba\xda\x6f\x7a\x80\xe1\x17\x8e\xa7\xa4\xb9\x61\x5a\x01\x8b\x01\xbe\x63\xeb\x42\xa0\xe6\xa2\x6c\x8a\x9c\xa1\x8b\x5a\x51\x4a\x39\xf3\x13\x02\x68\xa4\x06\x30\x4d\x94\xe4\x10\x33\xbf\x0e\x4a\xd2\x5d\x43\xd0\x08\xd1\x87\x22\x6c\xba\x30\xe7\x28\xd5\x92\x31\x4b\x0a\xda\x3b\xb4\xe9\x2d\x8c\x7b\x33\x74\x2f\xb6\x48\xc8\x22\x8c\x7a\x49\x28\x49\x77\x29\xea\xc7\x36\xa2\x20\x28\x25\x15\x53\x74\x3e\x67\x79\xe4\xae\x18\x06\xa5\xab\x72\x9e\xa7\xfb\x5c\xe4\x67\xcb\xe9\x94\x55\x55\x58\xe4\x5f\xc7\x69\xb6\x2c\x35\x73\x42\x5b\xc2\x33\x08\x06\xc3\xc9\xee\xa4\x55\x91\xf1\x9e\xea\xfa\x80\xa5\x21\xb5\x92\x53\x53\x02\xcf\x72\x80\x82\x45\x01\xd2\x7f\x7a\xb2\xb5\x47\x1a\xfc\xd4\x03\x5c\x34\xc3\xd6\x87\x6b\x4f\x42\x19\xd3\xb7\xd7\x83\x3f\x3b\x69\x5e\xd5\x71\x3e\x65\xc5\xcc\xe0\xef\xee\xef\xcd\x43\xcf\x08\x65\xf4\xc5\x8f\x38\xac\x96\x3c\x4e\x1a\xa7\x5a\x97\xc7\x03\x56\xb5\xc3\x40\x82\xb8\xa5\x25\x83\xdf\x4a\x6d\xca\xc8\x33\x95\x1d\x8d\xac\x92\xdf\x7c\xca\xc9\xc5\x72\x36\x23\x9a\x74\x06\x08\xbb\xb5\x45\xc6\x22\xbb\x8e\x6b\x66\x57\xab\xff\x77\x66\xe8\xf7\xb8\x35\x20\x59\xc6\x60\x48\xd7\xc1\x5c\x2d\x8a\x1c\x1e\x35\x9c\x18\x5f\xb3\xbc\x9e\x24\x69\xb5\xc0\x77\x2b\x0b\x4a\x04\x41\xe2\x1f\x93\x3a\x2e\x2f\x59\x3d\x89\xb1\x41\xa2\xd1\xfc\x5b\xb8\xb0\xff\x0c\x81\x8b\x3e\x5b\x06\xb0\x9d\x30\x0e\x9e\x6a\x73\x56\x7e\x73\xfe\xee\xad\x2b\x30\x91\xca\x14\xde\x9e\xcf\xd2\xab\x45\xc6\x40\x2c\xd4\x02\x37\x72\x51\x2c\x00\x8b\xf6\x2b\x58\xb3\x9b\x44\x08\xd3\xac\xc8\xd9\x19\x2c\xd5\x56\xfc\x22\x92\x87\x58\xbb\xc1\x2a\x0d\x71\x5c\x94\xec\xfb\x94\xdd\xb4\x62\x38\xca\x0c\x80\x72\x42\x18\xb9\xc7\x6a\x91\x3b\xe1\x74\xb6\x68\x55\xec\x9a\x56\xc5\xce\x80\xfe\xb2\x6c\x0b\xda\x19\x35\x49\xec\xa4\x8d\x61\x93\xe0\xd9\xf0\xb5\xda\x53\x1b\x83\xfb\xf3\xd6\xcf\x61\x77\x1d\x01\x36\x67\xb8\xb7\xd6\xc6\x46\xc2\x1b\x9c\x92\xe4\xe2\x67\x57\x45\x1d\xe9\xa2\x94\xb1\x46\xe8\x87\x42\x0e\xbd\xdd\xe8\x36\xf0\x7b\xd5\x0c\xd5\x87\xb1\x52\x23\x63\xd9\x6a\x18\x73\xf1\x9a\x8b\x15\x2b\x57\x8b\x46\x2d\x12\xdd\x68\x64\x7d\x8b\xc5\x16\x89\x35\x47\x32\xe8\x42\xa6\x0b\x17\x41\x26\xd6\xaa\xb2\x56\x91\x44\x84\xae\x23\xe3\x4b\x41\x18\x8b\xc7\xfc\x54\x30\x72\xc9\xa8\x5f\x22\xc7\x5e\x22\xd6\xf7\xda\x48\xc8\xee\xc3\x4f\x07\xb4\x13\x2d\x4d\x6a\x76\xb5\xe0\xac\x05\x5f\x45\x25\x93\x02\xd6\xcf\x89\x03\xa8\x42\xd8\xfd\x26\x1e\x3e\xd7\x45\x79\x7b\xc7\x31\x6d\xd1\x47\x48\xed\x1a\x5b\xc8\x94\x0f\x66\xab\x9b\x34\xcb\xde\xb1\xf2\x92\x41\xb2\xbe\x8f\xf0\xd1\x31\x43\xea\x74\xf0\xc6\xd7\x10\xa1\x16\x07\x9e\x25\xd2\x65\x77\x28\xfc\x28\x5f\x91\x68\x98\x61\x16\xdf\x15\xcb\xfa\x6c\xc1\xa6\xe9\x2c\x65\x49\x04\x6d\xf4\x31\xf5\x7d\x7c\xc5\xee\xef\x69\x0a\xea\x34\xc9\xe0\x13\x12\x06\xb5\x2a\x11\x4e\x4e\x3c\x4f\xef\xf5\x76\xad\xea\x83\x55\x1b\xad\xc8\xa3\x65\xbc\xa1\x03\xcb\x88\x36\x36\xb4\x51\x8c\xda\x2d\xcb\xbb\x14\xe4\x8c\xcc\x06\xc6\x4d\x0b\xd9\x87\x22\xba\x16\x49\x13\x41\x0b\xb9\x0e\xc4\x10\xa9\x76\x93\xc1\xaa\x71\xe9\x19\x6c\xcd\x20\x8d\xb6\x08\xe1\x2d\xaa\xe9\x64\xb1\x7e\xc6\x90\x91\xeb\xb6\x61\x7b\x17\x1d\xaa\x5d\x04\x12\xfb\x0d\x87\x96\xeb\xc1\xc3\x15\x2e\xef\x77\x76\x68\x67\x88\x71\x15\xa9\x50\xbe\xf0\xb9\xd5\xbe\x75\x60\x14\xae\x70\x58\x31\x70\x16\xd5\x66\xf7\x82\x10\x87\xfa\x18\xa5\xa5\x14\x82\xb3\xf2\xae\x97\xb6\x0d\xdc\xf3\xcf\x14\x65\xd5\x8e\xa8\xba\xf6\x19\x6f\xad\xc1\xd6\xb6\x51\xe2\xb7\xbc\x36\x99\x97\x98\xff\x91\x37\x81\x5f\x2d\xda\xa8\x23\x92\xe8\xef\xcd\x48\xa2\xb6\x45\x8c\xe3\x4d\xaf\xbe\x5b\xb0\x0f\xb3\x16\x23\x8e\xc9\xce\x70\xa4\x7f\xda\x22\x9a\xb9\x83\x59\x76\xdc\x66\x1c\x4c\x72\x8b\x91\x86\xe0\xe9\x8a\xa1\xc7\x8d\x29\xcc\x67\xd6\xf1\x38\x96\xb1\x1d\x06\xd4\x1d\xac\xea\x62\x39\x9d\x83\xc5\xd6\xc0\x83\xdf\xa0\xfc\xea\x85\xf0\x1b\xe2\x09\x62\xf2\xbb\xe2\x9a\x89\x54\x96\x27\x22\xf1\x24\x4f\x44\xda\x34\xce\xa7\x2c\x13\xc9\xc7\xf0\x01\x7a\x91\x49\x71\x93\x0f\xbc\x4f\xec\xee\x75\x71\x93\x43\xca\x72\x01\xdf\xdf\x2d\xe0\x6b\x51\xb2\xaa\x82\x84\x8f\xfc\x97\x17\x2a\x1b\x88\x01\x9a\x09\x60\x39\x61\x31\x20\xd2\x78\x59\x41\x51\xae\x58\xbe\x1c\x48\xf2\xf2\x8e\xe5\x4b\xa1\xab\x39\x90\xba\x0f\xc9\x45\x26\x12\x92\x62\x79\x21\x78\x63\x51\x21\x76\x0f\x7e\x62\xf7\x84\xbd\xc2\x00\x0d\x17\x40\x77\x93\xff\x28\x96\xb5\x48\xfa\xb0\xac\x45\x59\x96\xd7\xac\x14\x85\x4f\x72\xb0\x04\x84\xdf\x19\x8b\x55\xa5\x6f\xf9\x6f\x2f\xac\x96\x17\x57\x69\x3d\xf0\xf0\xaf\x17\x82\x66\xc3\x40\x28\x38\x84\xa8\x4f\x3e\xf0\xf0\xaf\x17\x26\x65\x7c\x29\xe6\x83\xff\x14\xd3\xc1\x7f\x62\x02\xfe\x16\xcd\xf3\x9f\xa2\x75\xfe\x53\x34\xce\x7f\x8a\xb6\xf9\xcf\xe2\x5a\x82\x7e\xb8\x46\xc8\x62\xc1\xbf\x39\x99\xc3\xba\x12\x59\x53\xe2\x35\x21\x51\xeb\x1e\xa0\x32\x09\x3e\x3f\x10\xdf\x44\x49\xc2\x12\xe0\xaf\x2b\x0a\x8d\x92\x36\x58\x58\x68\xba\x50\x91\xc0\x58\x22\x80\xb3\x54\x22\x92\xeb\x10\x93\x43\x52\xe3\xfd\xfd\xaa\xc1\x47\x25\x11\x2a\x8e\xb6\x00\xcf\x1d\xa2\x46\xaa\x7e\x6e\xa0\xd1\x90\x0f\x71\x9b\x23\x11\xeb\x0c\xad\xf5\x60\x48\x3e\xfb\x71\x92\x1c\x67\x71\x55\xf9\x6d\xcd\x0a\x11\x24\x15\xd0\xdd\x49\x73\xec\x25\x5a\x99\xe0\x4f\x3b\x90\x0c\xda\x6e\x08\xb6\x16\xc6\xef\x1b\xd4\xc2\xa1\xfd\x09\xe9\x60\x8d\xe0\xcf\x18\x3c\xd2\xd2\x02\xe4\x2d\xd9\x5d\xf2\xbd\x7a\x1a\xd4\x4e\xc0\x69\xb7\x8a\x1c\xb1\xd9\xf3\xfa\xd0\x2f\x2f\x14\x3f\xf6\xf1\x94\xd1\xcf\x93\xd7\xb5\xd4\xd3\x4d\xf3\xcb\x77\x71\x1e\x5f\x4a\x1d\xef\x6b\x79\x5d\xec\xc3\xf9\x84\x41\x22\xd3\x64\x1c\x96\xac\x5a\x66\xe8\x64\x2b\xbc\xc2\x12\x28\x49\x95\x1f\xe8\x8d\x7b\x96\xe6\xc9\x7b\x16\x97\xac\xaa\x61\x9a\x45\xe5\x3e\xaf\x8d\xf4\x02\x5d\xab\x43\x56\xaf\x27\x7e\xec\x46\x91\x03\x29\xd1\x2e\xd6\x2e\xf9\x05\xb4\x46\x11\xe5\x42\xde\x1d\x55\x75\xc8\x5b\x0a\x94\x53\x1c\xf8\x32\x2b\xb9\x58\x5e\x5c\x64\x0c\xab\x10\x68\xd1\x01\x46\x59\x2d\xbb\x46\x0b\x58\x3e\xcf\xf1\x25\xba\x71\x20\x9e\x28\x78\x75\x4d\xb0\x69\xf4\x47\x49\x5c\xc7\xfb\x62\x8d\xc1\xd0\x8f\xcd\x59\x10\x1a\xc3\x84\xb4\x07\x2b\xfa\xe5\x56\x79\x2c\x8b\x25\x35\x94\x7d\x86\x55\x7b\xc1\xc8\xa3\x65\x3d\xf4\x4b\x8b\x99\x6f\x12\xb9\x41\x78\xc7\xc4\xb3\x26\x72\x7c\x41\x3f\xae\xeb\xd2\xf7\x5a\xb8\x2a\x1e\x2f\xa2\xd5\x2a\x73\x4e\x96\x60\x72\x35\x92\x4d\xa0\xaf\x39\xf8\xe8\xf5\xf0\x6f\x5f\x8d\x6b\x14\x45\x64\x11\x8b\x81\x14\x40\x42\x6f\x0d\x46\x84\x5f\x18\xc2\xae\x65\x44\x74\x24\xcc\xf5\xb4\x42\x27\x9c\x64\x59\x62\x04\x3e\x9c\x7e\x99\xc1\x89\x03\x14\x44\x2a\x25\x2a\xf5\x9c\xab\x71\xa4\x2a\x1f\x4b\x6f\x75\xb0\x37\x74\x1d\x8b\x98\x0f\x22\xdf\x2b\xda\xe8\x46\x14\x6e\x42\x73\xa9\x1a\x91\x09\xd9\xb4\x76\x2d\x59\xe1\xec\x5f\xed\x32\xd4\x02\xc2\x91\x89\xb0\x18\xc1\x49\x1a\x47\x7d\x98\x29\x7d\xc3\x28\x8a\x3c\xd9\x8e\xa7\xd6\x7c\xb9\x54\x8d\x0a\x40\x68\x1c\x9a\x1c\xba\x57\xb9\x78\x1c\x43\x4c\xe0\xb6\xbe\x69\xcb\x98\xfb\x22\xa4\xf0\xad\x29\x33\x88\x99\x2c\xb8\x14\xd9\xfc\x3f\xb1\x1c\x4e\x4c\xc2\x17\xc2\xe2\x08\x13\x56\xd5\x65\xd1\x8a\xdc\x48\x4f\x82\x8e\x23\x40\x6a\xb5\xd2\x13\x04\xf5\x6a\xd5\x7e\xfd\xb7\x7f\x53\xaa\x92\x6b\xce\x07\xc3\x3b\xa8\x08\x0d\xdc\x7d\xcd\xa5\xef\x1b\x23\xf7\x1d\xe4\x41\xd6\x0d\x36\x63\xeb\xe0\xaa\xff\xb1\x64\x4b\x56\xf1\x99\xef\xe3\xcf\x21\xff\x39\x89\x93\xe4\x3f\xf8\xa7\xef\xe1\x7b\x8c\x17\x7a\xb8\xff\x2a\x34\xd0\xa4\x10\xf1\xac\x66\xe5\xa9\x04\x13\xf0\x1b\xba\x28\x6f\x39\x6b\x2e\x72\xeb\x6f\x54\xbf\x5e\x58\xa2\xad\x2e\x2b\x37\xad\xab\xca\xcd\x63\xa2\x11\x6d\xe3\xda\x5c\xdc\x18\x50\xe0\x99\x5e\x01\xe2\xbd\x9e\xf1\xd9\x47\x98\xfb\x7b\xbe\x0e\x85\x92\xac\x90\x68\xf3\x33\x05\x7f\xa2\x25\x70\x31\xdb\x11\xe7\x88\x45\x22\x44\x33\x22\xd3\xf7\xc4\x0c\x82\x06\x0f\xe6\xe1\xee\x02\x9e\x11\x19\xbd\x1b\xdf\x53\x8c\x2b\xa4\xef\x28\x2e\x75\x47\x71\xa6\x3b\x92\x1b\xdd\xe1\xcc\xa7\x80\x48\x90\xb5\x02\xaf\x4c\xba\x42\x7a\x1c\x2a\xaa\x20\x59\x47\xd0\x2a\x9e\xa5\xb7\xdf\x14\xc5\xa7\x8a\x10\xbf\x08\x42\xca\x56\x83\x11\x1c\x5a\x60\x4f\x37\x83\x03\xaf\x09\xba\x9e\x3e\xb1\xca\xf5\x0b\xd8\x7a\xa6\xfc\xe2\x02\x89\x6d\x9f\x4b\xbf\xac\x95\xcc\x26\xa9\xc0\xaf\x76\x89\xef\x7c\xbe\xfb\xbd\xeb\xf9\xce\x71\x89\xb6\xee\xf4\x4a\x2f\x00\x68\xf7\x19\xab\x7d\xc5\x95\xb3\x3c\x5a\x35\xa8\x17\x94\xa5\x55\x1d\x8d\xc6\x8d\x04\xb2\xfc\xdb\xeb\x83\x05\x89\x13\x70\x68\xf8\x93\x5f\x07\x54\x7d\x4a\xd7\x50\xa5\x8c\x10\x6a\x4c\x34\xb1\x78\x5b\xa8\xf4\x28\x2a\x6b\xc2\xba\x78\xfd\xe1\xdd\xa0\xfd\x9e\xaf\xe1\x31\x10\xe1\x8e\x17\x34\xa8\xf9\xfb\xd5\xd1\xeb\xc9\xf9\xd1\x5f\x27\xef\x8f\xde\x9d\x4c\xce\x4f\xce\xce\x75\x64\xd9\xbf\xc7\xfb\xff\x3c\xda\xff\xaf\x83\xfd\xbf\xfc\xb8\x3f\x7e\xd6\x86\x3e\x3d\xf9\xf8\xf6\xe8\xf8\xa4\xab\x00\x09\xdc\xca\xf1\x5b\x9c\xc7\x97\xa8\x97\x8f\x7f\x85\x09\x80\xfc\x90\x88\xe2\x37\x28\xf9\x75\xa1\x06\xda\x41\xaa\x9a\x56\x51\xf3\x53\xc5\x47\x5c\x83\x7a\xe8\x79\x68\xa5\xcb\x61\x8e\xbf\x39\x3a\x3d\x53\x7d\xea\xf9\xaf\x76\x7f\xbc\xd9\x1b\x06\xf7\xa3\x17\x2f\xbd\xa7\xff\x2d\x63\xed\x7e\xfc\x70\x76\xf6\xe6\xab\xb7\x27\x16\xf8\xa8\x27\xa0\x74\xdf\x59\x35\x8d\x17\xec\xa8\xae\xcb\xf4\x62\x59\x33\x5f\x58\x1a\xc3\x1d\x17\xb2\xa2\x95\xf7\xc2\x1b\x78\xbd\xac\x1e\x7a\xa1\xf7\x92\xff\xbc\xe4\x3f\x9f\x7a\x4f\x07\x5e\xef\x1f\xcb\x02\xd2\x9f\xf2\xf4\xff\x73\xfb\xfc\x4f\xfc\xe3\xbf\xf1\xe3\x8f\x07\x43\x0f\x67\x11\x6b\x3a\x9e\xc7\xa5\x56\x9a\xa1\xb1\x35\x31\x7f\x34\x9d\x97\xe3\xfb\x7b\xaf\x17\x5f\x2d\x64\x49\x5c\x3a\x11\x60\xd5\x97\x5e\xef\x7c\xbc\x39\x3b\x3b\x89\xa3\x2f\x56\x1c\x8d\x17\x99\xe6\x97\x8d\xf1\x65\x0c\x3d\xad\x22\xd4\xe8\xe2\xb8\x4f\xe3\xfc\x8c\x01\xf1\xfd\x90\xbf\xc9\x17\xcb\xba\xb2\xb5\xb1\x92\xf4\x3a\x52\xbe\x23\x50\xa4\x2c\xb8\x2c\xdf\x4b\xd2\x6b\x2f\x08\x59\xd6\x09\x20\x6c\x40\x86\x2c\xe3\x1b\x5f\x4f\x85\x97\x83\x09\xab\x37\x2b\x0a\x2f\x18\x26\xe9\xb5\x30\x7f\x39\x9e\xa7\x59\xe2\xb3\x4c\x32\x63\xbb\xbb\x3c\x2f\x95\x04\xa3\x0f\x9e\xea\x7d\x2c\xd6\xf8\x9d\x4e\xa2\xd4\x12\xa0\x4f\xb7\xbe\xbd\xe2\x73\x76\xb3\x33\x71\x42\x10\x5d\x24\x37\x80\x70\x93\x81\x5f\x55\x34\x12\xbf\xee\xef\xf9\x15\x45\x28\x2a\xe2\x71\x13\x79\x5e\x63\xd4\x41\xe9\xd2\x84\x09\x31\x0d\xe8\x8b\x4f\xe6\x71\x25\xe5\x36\x70\x1d\x17\xb9\x40\xd1\x58\x85\x40\x53\xfa\x21\x00\xde\x24\xc6\xa7\x1a\x66\x13\x4a\x48\x36\x52\x2b\xf9\x3c\xbe\x34\xbe\xcf\xea\xbb\x8c\x61\x0a\x5e\x84\x10\x6d\x91\xb2\xac\xe6\x6d\x4a\x4a\xba\xbb\x17\x61\xe2\xd0\x08\xe4\x2e\xe5\x32\x44\xfb\x9b\x7f\x92\xa1\x34\xbb\x1a\x39\xd2\xee\xef\x21\x5c\xbb\xa0\xee\x43\x07\x44\x3f\x4e\x12\x52\xb1\x70\xb9\xd8\x5d\x23\x90\x65\x13\xd1\x8a\xa9\xd1\x6e\xa3\x5a\xb9\x71\x15\x6a\x67\x18\xb8\x5d\x03\x2b\x6f\xf7\x18\xb3\x1d\x6c\x32\x21\x5e\xfb\xde\x9e\xa8\x47\x49\xab\x74\xa1\x51\x3a\x0e\x9a\x26\x4c\xc9\x71\x95\x26\x66\xb3\x6f\x92\x28\x4d\xac\xe1\xad\x6b\xdb\x5c\x83\xd0\xba\x58\x2d\x07\x63\x10\x8e\x36\x25\xdf\xdf\xaf\x9a\x61\xa7\xc6\xbd\xbc\xe8\x2b\x70\xa1\x0b\x8a\x1e\xda\xad\x54\x24\x72\x66\x70\x7f\xbc\x8e\x1d\xb5\x50\xdf\x12\x69\xc0\x4c\x7d\x29\xdb\x91\x16\x3e\x46\x9b\x9c\x7b\xeb\x1e\xa8\x85\xda\x20\x46\x9b\x1f\x37\x25\x6f\x35\x50\xba\x72\x3a\x50\x76\x6a\xf7\x40\x7d\x6c\xa1\xbe\x25\xd2\xf2\x0d\x1c\xbf\xd4\x40\xb5\xf0\x31\xf7\x01\x10\x01\xe7\x48\xd1\x56\x80\x56\x44\xad\x14\x18\x90\x56\x2a\xed\xa1\xb9\x7e\x2f\xd8\x25\xd5\x27\x70\x13\x59\xe4\xb7\x0c\x42\x1b\x98\xd5\x70\x80\x0f\x0b\x96\xa7\xf9\x25\x27\x6a\xd6\x39\x26\x4a\x22\xb6\x4a\x50\x86\x8c\x11\x1e\xba\xd6\xf9\x00\xde\x84\x40\x16\xa0\xe9\x72\xaf\x87\x86\x29\x92\x70\x8b\xfb\x19\xd2\x3e\xcb\xc9\x0b\x01\xc3\x46\x2f\x59\xce\x4a\x72\x3a\xaa\xf8\x74\x1c\x3d\x71\x5a\x90\xea\xc2\x34\x89\xcc\x8d\x1f\x1a\xc4\x4c\x7c\xc0\xee\xef\xda\x25\xb0\xe2\xbb\x56\x06\xce\x72\x7b\xfa\xa0\x46\x28\x39\x94\x44\xdd\x7b\xe1\xed\x39\x59\x49\xd0\xce\x4e\x82\x95\x04\x7c\xba\x93\x26\x91\xf7\x74\xcf\xe6\xbd\xd2\x24\xd8\x7b\xea\x3d\x1d\x5a\x94\x4c\xda\x1c\x89\xbe\xd0\x7a\x20\xc9\x55\x95\x80\xd5\xfc\x34\xa9\x79\x4a\x69\x72\x17\xb1\x6e\x80\xf3\xbf\xcb\x18\x6d\x0e\xc7\xc2\x7b\x0a\xd4\x9a\xf7\x9d\xdf\x0a\x04\x94\x84\xb7\x9f\x08\x38\x58\xa0\x2b\xe1\x9f\xe0\x5a\xd8\xc6\x18\x0a\x8f\x78\xf6\x38\xd8\xf3\x86\x5e\xd3\xa8\x76\xad\x21\xc1\x0d\x25\x91\x84\x99\x45\x6d\x7f\xfe\x93\x63\x24\x92\x64\xa6\x8d\x11\x4f\x24\x18\x79\x3b\xde\x1e\x4f\xda\x7b\xea\x1a\x48\xa8\x61\xc4\xff\x1f\xc3\x10\x36\x4d\xc7\xf9\x20\xf1\x11\x8a\x3e\x74\x84\x44\x92\x52\x5d\x71\x8f\x90\x52\xe0\x46\xb5\x13\x1c\x0a\xa5\x7f\x7d\x7f\x2f\x84\x19\x08\x12\x45\x5e\xbe\x04\xc1\x1d\xd4\x2b\x13\x39\x47\x64\xf6\x0c\xc6\x1b\x7a\x86\xbf\xbc\xa7\x48\x54\xdd\x30\x76\xef\x09\x26\xa2\xf7\x66\xff\x09\xd9\x87\xfe\xab\x5a\x5f\x7a\x06\x7f\x87\x7f\x90\xfa\x1c\x67\x45\xb5\x05\xf5\xd1\x24\xad\x58\x20\xed\x31\x49\x9e\xde\x75\xcf\x3a\xb6\xdd\x9e\xf7\xd2\x6b\x9a\xd0\x24\x63\x5d\xb7\x4f\xd9\xdc\xc8\x6c\x5c\x46\x6e\x1c\x37\xa1\x45\x99\x1e\x80\xfc\xaf\x47\xa4\x20\xfd\x2b\xc9\x63\x6b\x9a\x15\xd6\xf1\x25\xde\xa5\x24\x8b\x50\xf5\x7a\xb8\x59\x72\x54\xfe\x6a\xdf\x79\x82\x95\x2a\xd4\x4d\xea\xf6\x9e\x0a\xff\x32\x1d\x3b\x09\xaa\xe7\x4b\xe9\xa5\x58\x87\xba\x4e\x79\x41\x86\x0b\xa3\x38\x12\x3a\xae\x4c\xaa\x50\x10\x3e\x61\xe6\x13\xa8\xf8\x54\x34\x57\xe6\x8b\x77\x9e\x34\xf1\xc2\x34\x09\x36\x92\x58\xab\x18\xa4\x7b\x61\x9b\xaa\x3e\x8e\xa2\x3e\x9c\x7c\x92\x89\x24\x34\x94\xd0\x4c\x24\x99\x16\xda\x90\xef\xd1\x55\x10\xfc\x1c\x94\xd4\x6c\x15\x16\x19\x25\x9b\x3f\x1f\xc9\x54\x0d\x83\x97\x48\x58\xd8\x94\x62\xad\xa7\x55\x52\xf6\x80\xb9\x8d\xbc\xda\xd9\xfb\x7a\x5e\x5f\x65\x91\x70\x0f\x9f\xb3\x92\x4a\x20\x78\x96\xcd\xc4\x50\xd1\x9d\x6f\x64\x85\x00\x6e\x86\x57\x53\x8d\x57\x2d\x77\xfe\x4e\xc6\xca\x28\x25\xe8\xce\x3c\x95\xf9\x06\x01\xf0\x83\x10\x4c\x21\x41\xc0\x48\x80\xfa\x2a\x95\xb8\x18\xd4\x90\x96\x9f\x41\x81\xad\xd8\x5c\xde\x8b\x24\xbd\x7e\xf6\xd2\x93\x8e\x38\x7c\x52\x6f\xd0\xe7\xfd\xd3\xcf\xc4\xaa\xca\xb6\xb9\x99\x31\x90\xfc\x26\xa7\xbf\xbb\xc8\xb3\x38\x40\xda\xbe\x55\x5c\x62\x65\xb7\xec\x7a\x1b\x71\xf2\x67\x8b\x83\x73\xc6\x92\xea\x6c\x7e\x17\x89\x81\x95\x04\x6c\xd7\x18\xd7\x5e\xcf\x3e\x3c\x58\x55\x9f\x74\x4b\x88\x40\x84\x34\x44\x20\x2d\xe8\x89\x60\x3a\x5e\xbe\x78\xc6\xff\xf7\x64\xf6\x2c\x2d\xab\x1a\x44\x44\x06\x64\x35\x2d\xd3\x45\xfd\xf2\xc5\x33\xf1\xc3\x53\xd7\x82\x35\xc5\xa2\xc8\xf3\x1a\x1f\x75\x92\xf9\xfd\xaa\xfa\x61\x9e\xd6\xac\x5a\xc4\x53\xf6\xcb\x74\xf0\x9c\x55\xf5\x60\x47\x20\x8f\x8e\x64\x9e\xd6\xec\xb6\x7e\x76\xbb\x0f\xb2\xbb\x79\x91\x25\xac\x7c\xaa\xbb\x05\x11\xc9\xed\xbe\x4d\x79\xb7\xde\x17\x09\xab\x46\x07\x63\xf0\xc0\xf2\xbd\x64\xa2\xa0\x01\xaf\xd7\x6b\x43\x3e\xb7\x20\x77\xb0\x6a\x39\x1c\xb3\x54\x08\xe2\xbe\xba\x7b\x93\x44\xc4\xf6\x1d\xf7\x3a\x3f\x7a\xd2\x99\xfc\xec\x5f\x1a\x72\xbd\x34\xf1\x82\x28\x8a\x38\x8c\x45\x84\xa4\x84\x44\x96\xd3\xf8\x28\x49\x49\x72\x1b\x72\xbc\x30\xac\x3a\x8a\x4d\x92\xdb\xe8\x60\x98\x26\x18\x3d\x2f\x4d\x6e\xf7\xf6\x82\x15\x87\x71\x54\x33\x4a\x93\xdb\xf1\x10\xca\x46\x1c\x04\xfa\x78\x8e\x6e\x67\x0e\x7b\x3d\xa3\x57\x3e\xb4\xc3\x4f\xcb\x74\xe6\x43\x11\x6d\x63\xce\xbf\x1a\x21\xa3\xa7\x24\xef\x87\xb4\x9e\x17\xcb\xfa\xeb\xf4\xb6\x3d\x26\x48\x2e\x21\x0a\x0b\x6e\x92\x60\x05\xc4\xd5\xeb\x55\xf3\xbb\xa1\xb7\xc7\x3f\x74\x3c\x51\x26\x43\x00\x59\x0b\x4f\x14\xe2\xff\x29\x09\xee\x33\xff\xc7\x6a\x2f\xf0\xe5\x3a\x49\x93\xe8\xa9\x3f\xfa\xfb\xd3\xf1\x5e\xf0\x34\x78\x76\xa9\x37\x3c\x54\x1c\x42\x35\x15\x67\x81\x60\x9a\x44\x6b\xc2\x3f\x43\x9a\x88\xfc\xb1\xbe\x38\xc7\x97\x4d\xd0\xc8\xb1\xd4\xab\x93\xa3\x80\xca\x13\x58\x01\xce\xd0\xcb\x03\x5c\xf1\x7c\x1a\xcd\x1c\x3e\x77\xdd\x13\x06\x23\x09\xf8\x47\xe6\x2c\xc8\xe1\x13\x95\xc1\x0c\x8e\x0e\xc6\x01\x2c\x03\x7b\x47\x9d\xb3\xdb\x9a\x4f\xb4\x6f\x40\x1f\x8e\x83\x21\xd6\xdd\x47\x71\x25\x07\xe9\xa7\x10\xc0\xed\x2b\x36\x2b\x4a\x86\x73\x8d\x30\x41\xd3\x18\x93\x04\x98\xcd\xef\xe4\x21\x23\x07\x42\x53\x0c\xa1\x6e\xa2\x61\xac\x55\xb5\x6b\xe5\x20\x17\x4f\xaa\x24\xf9\xba\x56\xe0\x97\x9c\x55\xfe\xae\xd7\xb3\x32\x60\x6f\xf6\xa7\xf3\xb8\x3c\xaa\xfd\x03\x50\x06\xf9\xbf\xff\x9f\x47\xdb\x20\x9b\xd9\x59\x16\x23\xe8\x41\x10\x72\xe1\x72\x46\x4c\xf3\x79\x7c\xa9\xfc\xd0\x20\x53\xac\xdf\xed\xda\xd2\x18\x08\xe7\x48\x4a\x4a\xa1\xf7\x78\x37\x8a\x14\x79\xd4\x06\xbf\x4e\x50\xf2\xe6\xa0\x1c\xb7\xc9\xe7\xa2\xba\x78\x5b\xdc\xb0\xf2\x38\xae\x98\x0f\xdd\x44\x37\xb4\x9e\x78\xb1\xe9\xa6\xb0\x12\x6e\xe8\xde\xad\x3e\xcb\xc2\xa7\x2f\xd0\x4b\xb3\xb8\x62\x7a\xe0\x14\xea\x25\xa7\x90\x2f\x9e\x61\xce\xcb\xa7\xc1\x50\x20\xc6\xb2\xbe\xf0\xe9\x4c\x04\x79\x8d\xbb\x43\x11\x96\x19\x2a\xb3\x72\xfe\x45\x9e\x0f\x0c\x9e\xc9\xa4\x16\xf4\x66\x25\x17\x9e\xf8\x86\x68\xda\xe6\x84\x90\x57\xb7\xce\x6e\x52\x5e\x0c\x38\x13\xb0\x07\x57\xfc\x0f\xb3\xb9\xa4\xfb\x7b\x3f\x67\x37\x3b\xff\xf9\xee\xed\x19\x2b\x85\xbb\xca\xa0\x5f\xc9\xdf\xe7\xf2\x4d\x4a\x5d\x3c\x84\x99\x63\xc9\x6f\x9c\x91\xaa\x46\xbc\xca\xf0\xaa\x4e\xd9\xe5\xc9\xed\xc2\xe7\x77\x28\x81\xef\x9e\xe7\x8f\xfe\xfe\x72\xfc\x6f\xc1\x4b\x2f\xf4\x52\x2f\x08\x46\x07\xe3\x90\xe5\x09\xaf\x01\xee\xb7\x0a\xee\x25\xf2\x22\x37\x25\x67\xc0\xca\x0d\xe7\x69\xc7\x18\x88\xc2\xa1\x44\x12\x08\xef\x1e\x36\x17\x0c\x25\x23\x2b\xa0\xda\xdb\xdc\x9a\x86\xdd\x28\x52\xab\x9f\x59\x24\x22\x67\xb7\xf5\x59\x7a\x91\xa5\xf9\x65\x63\xf3\xdb\x84\xd9\x5a\x63\x04\x48\xcc\xdd\x89\xd5\x9f\xd0\x3b\x45\xbd\xb7\x22\x49\x67\x29\x2b\x23\xe1\x86\x6d\x9e\xce\xea\x6f\xd9\xdd\xfd\x3d\x7e\x73\x1e\x90\x7c\xc6\x19\xcd\x9c\xd6\x65\xf6\x2d\xbb\x0b\x2b\x36\x2d\xf2\x24\x2e\xef\xd0\xc2\x10\x33\xc1\x87\xf7\xcb\x43\xf9\xc8\x26\xdb\xe1\xe4\xcc\x00\x37\x7a\xb2\xc6\x54\xb1\x83\x75\xed\x30\xc9\xde\xac\x7f\x61\x3b\x5d\xc3\xe4\x8b\x14\xbc\x11\xda\x06\x78\xac\xbc\xfc\x5c\x05\x8e\xf5\xea\x4b\x0f\x34\x41\x37\x32\xb6\xb0\x70\x82\x18\x6c\xff\x63\x4d\x45\x5a\x46\xe3\x9f\x7d\xcf\x70\xf8\x7f\x7b\x6e\xfa\x7f\x4b\xab\xbf\x66\xc5\x45\x9c\x7d\x8c\xeb\xb9\xc3\xe0\x5b\x67\x22\x77\xcf\x17\xc8\x26\x43\x6f\x5b\xd7\xe5\x0f\x6b\x74\x5d\xfe\x48\x74\x5d\xd6\x59\x92\x3c\xd0\xf0\xda\x61\x1b\xfe\x97\x8d\xb6\xe1\x7f\xa1\xa6\x24\xc5\x45\xc5\xca\x6b\x7b\x84\x0f\x26\x93\xbe\xcc\x01\xb0\x0b\x60\x8b\x3e\x74\x02\x9b\xf9\xc4\xef\x1d\x5f\xa8\x1b\x2d\xb7\x5b\x46\xc0\x64\x10\x94\xf1\x0a\xd8\x7b\xc8\x77\x6f\x76\xb5\xa8\xef\xc0\xe4\x18\xde\x88\xbf\x07\x75\x52\x99\x86\x20\x69\xcd\xae\x2c\x88\x34\x4f\x5b\x02\x8d\x92\x49\xc5\x56\xa1\xbe\x29\x82\x94\x8a\xe6\x5e\xa7\xc9\xb1\x70\xfe\x3f\x54\x9a\xad\x35\x04\x29\x85\xfc\x1f\xd2\x2c\x43\x80\x81\x39\x06\xc2\xfe\x2d\xaf\xbd\xd0\x6a\x51\xa4\xcb\x07\x9e\x5a\x43\xc2\xd5\x42\x7c\x04\xb2\xc3\x42\x09\x15\x23\xfc\xc9\xca\xd1\xe5\x8f\x7a\x41\x46\xc8\x57\xbc\x32\xf1\x3b\xf4\x90\x0f\xf1\x82\xc1\x01\xf6\x08\x68\x86\x46\x57\x01\x42\x54\xf2\xa0\x09\xc2\x56\x97\x07\xc5\xd6\x7d\xd1\x7a\xb6\xee\xbe\xe0\x98\xc6\xe0\xd8\x1c\x7a\xf2\x36\xfd\xa4\x50\x08\x86\xb2\xab\x71\x92\x7c\x99\x7e\xea\x69\xd3\xdd\x84\x55\x21\xfb\x6a\xa1\x62\xf9\x98\xe3\x28\x3b\xf5\x8b\x95\x9b\x39\xb9\x5a\xd4\xcb\xdf\x43\x46\x63\xf3\xcc\x2a\x71\x17\x92\xb0\xe4\x44\xae\x6d\x39\x94\x76\x7a\x5f\x20\xeb\x07\xe6\xab\xac\x35\xeb\xad\x7e\x22\xdb\x23\x63\xcd\x42\x94\x4f\xc1\x3c\xcb\x9a\xa9\x3d\x8f\x4c\xc3\xfe\xa8\xcf\x5e\x4f\xfd\xa4\x1e\x71\x10\x5f\x95\x25\xba\xfb\x75\x59\x5c\x7d\x84\x6b\x97\x88\xb6\x00\xd7\x71\x0e\x20\xe4\xf9\x13\x9d\x10\xaa\x9f\x70\xd3\xe7\xf7\x43\x1d\x42\x5f\x83\x49\x5f\x59\xb8\x9f\xaf\x8a\xeb\x34\xbf\x3c\xca\xb2\x88\xf6\x2a\x8a\x22\xb8\x5e\xce\x7c\x02\x21\x9d\xc8\xe2\x9b\x08\xf8\x37\xe8\x03\xbe\x38\x0d\x32\x0e\xe6\x75\xf1\x89\x9d\xb2\xe9\xb2\xac\xd2\x6b\x96\x91\x88\x08\x42\x59\x5f\x77\x2e\xe1\xbd\x7b\xfd\xe1\x1d\x06\x6d\x0d\xc1\x91\x1b\xfa\xfb\xe2\xb7\x5c\x18\xeb\x3d\x8a\xd5\xfe\x21\xbf\xf0\xbe\xc4\x1c\xfe\x73\x7f\x3f\x58\xa9\x8e\x45\xba\x8b\x28\xa9\x50\xdf\x64\xba\xc5\x1c\xeb\x5d\xbb\x7e\x8a\xd1\xec\x4a\x68\x4c\xf0\x9f\x38\xf2\xa3\x31\xe8\xdb\x03\xd5\x94\x63\x6d\x92\x50\x4d\x5f\x87\xdb\xec\x45\x88\x56\x9c\x07\x2b\xa3\x0e\xb2\x96\x8c\x74\x5c\x4f\x9e\x60\xa2\xa2\x48\x8a\xd3\x0c\xa0\x5e\x8f\x9e\xd3\xbe\x91\x17\xb8\x1a\x32\x21\xee\xef\x8d\x6f\x73\x52\x40\xfc\x80\xd3\x03\x83\x22\xc5\x10\xbc\x88\xec\x6a\x1f\x4d\x27\x8e\x6a\x5e\x2c\x18\x82\x05\x08\x2e\x1f\xd8\x8b\xc7\x72\x6e\xcc\x76\x43\x75\x70\xc1\xd0\x8a\x0f\x88\x33\x3f\x48\x93\xdb\x26\x18\xea\x59\x40\xa1\x0b\x1a\x2d\x09\xd3\xa3\xcd\xbb\x70\x97\x69\xda\xa0\xb5\x10\xda\x63\x49\x76\xab\x31\x8e\xba\x78\x60\x35\xa7\x73\xee\xef\xd5\xef\x46\xc3\x38\x3b\xaf\x0b\xb5\x3a\x46\xb2\x2a\x47\x6f\x42\x92\x9f\xce\x7c\xc9\xc4\xf4\x13\x56\x43\xb4\x40\x82\xa7\x9b\x06\x46\x1a\x49\x7c\xea\x90\x02\x31\xdc\x00\x07\xa1\x46\x28\x68\x42\x0b\x71\xcb\x36\x45\x3c\xf5\xe8\x49\x16\x04\x9f\x64\x22\x5f\x59\xb3\x2b\xf1\xea\x47\xcc\x81\xc4\x15\x10\x27\x88\x82\x44\xf0\xd8\x82\x4b\x51\xa7\x11\x51\x08\xcd\x30\xd9\xa2\xfe\xf1\x87\xf7\xe7\x47\x6f\xde\x9f\x9c\x4e\xde\x1d\x7d\x1c\xe9\xf5\xa0\x1a\x1b\xc3\xb0\x9a\x18\x84\xa4\x42\x75\x34\x5c\xc3\x10\x05\xc3\x75\x0d\x44\xab\x65\x36\xf0\xb2\xd4\x0b\x0b\xf1\xb7\x8e\x2f\x32\x36\xf0\xea\xd2\x0b\xeb\x39\x8b\x13\xf1\xf3\xa2\x48\xee\xc4\xcf\x59\x51\xd4\xe2\x67\x39\xf0\xea\xc4\x13\x21\x86\x06\x1e\x0a\x47\xbc\xa6\x4b\xfb\xd2\xc4\x64\xc3\xdd\x50\xb9\xe2\xda\xe8\x38\x7e\x4b\x67\x2e\x8f\x71\x23\xb1\xe1\xfa\xf6\x25\x1d\x14\x7c\x69\x5f\x15\x5f\xfa\xc2\xf7\xd9\xd7\x37\xe5\xd6\xe7\x5c\x4c\xcf\x6b\x3d\x3b\x9b\x3c\x61\x6c\x72\x9e\xe1\xb0\xba\x69\xdd\x88\x7e\x4f\x6f\x44\x8f\xbd\xd6\x39\xfc\x10\xfc\xc9\xf4\x43\xe0\x74\xda\xf1\xe7\x96\xd3\x8e\x09\x7a\x00\x07\xb6\x90\x38\x59\xd4\xee\xc0\xb5\x3f\x24\x7a\x41\x72\xf9\xec\x58\x37\xb0\xe1\x2a\x05\x97\x90\x57\xc2\x92\x66\xe0\x91\x9d\xa5\xb3\x5e\xa7\xd5\x22\x8b\xef\x06\x12\x47\xdf\xf5\x28\x9b\xb0\x8b\xe5\xa5\xba\xb6\x7d\xcb\xee\xe4\x51\xe4\xad\x56\xde\x5e\x07\x0c\xc6\x13\xf7\xbd\x81\x17\x8c\x0e\xc7\x7b\x5e\xd3\x78\x4d\x13\xb4\x2e\x69\xe6\xe5\x4c\x1f\x1c\x45\x99\x5e\x0a\x8f\x23\x5e\x68\x71\xdc\xb7\x60\xe6\x5d\xb5\x12\x43\x64\xeb\xcc\x0c\xe1\xc5\x04\xf3\x38\xd7\x0f\x6b\xe5\x2d\xf8\xbc\x69\xfb\x9e\x56\xb1\x06\xd1\x02\x0b\xed\xb5\x2f\xe2\x52\xfa\x50\xad\x46\xde\x5d\xca\xb2\xc4\x1b\x1b\xa1\xae\x54\xb9\x26\x94\x34\xc8\x31\xa4\x9f\xd8\x9d\xd4\x99\x94\x6a\x4c\x4e\x49\x39\xaa\x7c\xe2\x4b\xa2\xf6\x07\x44\x78\x04\xc3\x4d\x50\xa0\x9a\x14\xea\x38\xe2\xeb\xeb\xa2\x44\x6d\x15\x02\xac\x8b\x12\xeb\x46\x91\x42\x5d\x26\x89\x51\x3a\x57\xc0\x4d\xd0\x97\x84\xcd\xef\x6a\x1e\x96\x99\x50\x49\x2f\x72\xf6\x2d\xbb\xbb\x29\xca\xa4\x6a\xbf\x72\xc3\xb9\x3b\x80\x96\x48\xd4\x54\xb8\xd1\x34\xe1\x04\xc6\x77\xcd\xcc\x28\xdb\x75\x29\x92\x4f\xe2\x3a\x06\x1b\xf6\x50\xdb\xe9\x8a\x53\x5d\x27\xe8\x41\x6a\x0f\xa3\x08\xb6\x29\xbe\x04\xc7\x4f\xcd\x0f\xa0\x82\x55\x5a\x7d\x9f\x96\xf5\x32\xce\x50\x17\x5f\x9c\xc1\x03\xcf\x13\x77\xeb\x5b\x68\x68\xe0\x68\x73\x20\x7f\x48\x1f\x17\x03\x03\xf7\x34\xaf\xd2\x84\xfd\xb5\x2c\x96\x8b\x57\x97\xce\x1d\x10\x0c\x78\x3a\xa9\x59\x6f\x04\x3a\x84\x2e\x20\xe5\xc5\x47\xe2\xf0\x3a\xae\xe3\xc1\xea\x93\x9c\x1d\x0d\xdf\x37\xa6\xcd\xe7\x7b\x55\xe1\xd5\x89\x30\x04\x98\x0a\xf1\x30\x45\x7f\x24\xee\x85\x2f\x9d\xb9\xab\x09\xd2\x1d\x9d\x50\xf3\x6a\xb9\x2a\x75\xda\xab\x75\xbd\x82\xf5\x66\x2c\x4e\xa3\xb6\xb0\x62\xb9\x30\x5e\x27\xbe\x2e\xe0\x8f\xb8\x23\xc1\x6f\xd8\x1a\x62\x44\xab\x48\x90\x68\xcb\x89\x7a\x78\x18\x68\xa3\x77\x93\xab\xd3\x95\x90\x5e\x49\xcb\x7a\xa1\xff\xee\x00\x11\x78\x34\xaa\xd6\x36\xbf\x48\x2d\xcf\x84\xc7\x04\xec\x8d\x2f\x6a\x1c\x90\x0e\x98\x6e\x9a\x64\x77\x20\x00\x58\x37\x63\x26\xce\x84\x0d\x3c\x99\x29\xe2\xde\x28\xae\x37\x25\xf0\x16\xe3\x75\xb5\x04\x56\x73\xa2\xa4\xdc\x9f\x6d\x67\xb9\xc1\x49\xac\xe5\x58\xb6\x3b\x90\xb8\xcb\x1e\xb9\x83\x51\xdb\xec\x60\x4a\xab\xd3\x3f\xc4\x53\xee\xba\xd7\x01\x51\x30\x8f\xeb\xf4\x9a\x0c\xdf\x6f\x91\x67\xfc\x02\x9e\x65\x49\x82\x8d\xe3\xa1\x8d\xe4\xe1\x17\xb2\x6f\x6d\x3f\x0c\x38\x58\xd2\x77\xb8\x7e\xdb\xb2\x6f\x07\x2f\x6a\x73\x9b\xbf\x5f\xc3\x6d\xfe\x81\x70\x9b\x2d\x1e\xf6\x8f\x5b\x7a\x7c\xfd\xa3\xdb\xe3\x6b\x97\xd7\xda\x3f\x39\xbc\xd6\xc2\x48\xf1\x3a\x3a\xe0\x2b\x0b\xb4\x1d\xb6\xde\xf1\x98\xb1\xce\x72\xde\xe1\x21\x6b\x1b\xcb\x79\x27\xbf\x0d\xcf\x15\x06\xc3\xdd\xf2\xa2\xe0\x98\x77\x24\x7d\xca\x3f\xa2\xbd\x1a\xfb\x66\xbe\x10\x44\x76\xf8\x0c\x3e\x74\x2c\x03\xf7\x33\xcc\xef\x1f\xf2\x0c\xf3\x7b\xf7\x33\x0c\x50\x88\xa3\xc8\xde\x0c\xfd\x23\xea\x80\x98\xcc\xb0\x6f\xcd\x6e\xe0\x78\x97\xa2\xd7\x0e\xba\xd8\xc3\xd5\x04\x2b\x1c\xe0\x9f\x0d\xbc\xbc\x25\xfc\x25\x3c\xbc\x4a\xf4\xe4\xa9\xa3\x74\x5d\x5b\x10\x21\x72\x26\x2a\x41\x39\x9c\x84\xfa\x27\x6b\xa4\xcb\xca\x05\x01\x11\x38\x1b\x52\x20\x38\x34\xd3\xe4\x56\xb3\x94\x6e\x31\xa5\x84\x15\xf2\x22\xd5\x11\x95\xbe\x46\x58\x78\x6d\xca\xc3\x54\xb3\xda\x75\xd1\x6a\x7d\x61\x94\xec\x4c\x2c\x51\x71\x04\x32\x1e\x71\xdf\x81\x81\x46\x19\xb7\xc5\x59\x91\x54\xf1\x46\xa1\x13\xf0\xb5\xa3\x2d\x66\x0f\x56\xeb\x06\xb5\x2d\x9c\x47\x5d\x22\x03\x45\x61\x98\xe5\xea\x12\x45\x00\x83\x5a\x80\x0c\x8f\x1a\x37\xde\x1a\xcf\x15\x54\xaa\xa7\xa5\xda\x28\xf3\xd7\x59\xc0\x23\xea\x4f\x43\x54\x6d\x7a\xd1\xd2\x8f\x48\xc7\xf6\x13\x5f\x47\xdb\xf8\x6a\x22\x74\xdf\x55\x1f\x49\xb1\xd6\xb3\x86\x5d\x0f\x32\x8e\x1a\x6f\x62\x0e\x46\x07\x52\x84\xda\xb4\x0b\x6b\xc5\x1d\x08\x83\x31\xb2\x01\xc6\xfd\x69\x91\x4f\x63\xda\x7f\xdd\x20\x9d\x59\x65\xaa\xe6\x98\xf3\xed\xe7\xb9\x03\x6f\xe2\xe0\xd7\x18\x0b\x0c\xa1\xd1\x1a\x75\xfd\x82\xb7\x76\xd0\xff\xc5\x1a\x75\x5d\x6c\xe3\xa0\x1b\xf5\x18\x8f\x66\x52\xd0\x6f\x2c\x3a\x53\x03\xdb\xde\x6f\x4d\x88\x03\xe5\x94\x93\x74\x14\x94\xc1\x50\x83\xfe\x75\x91\xc5\x75\x9a\x31\x3f\x08\xf1\xd8\xd0\x2d\x23\xfb\x27\xc6\x5f\x10\x2c\xbd\x5b\xdc\x2f\x51\xbc\x86\xf3\x42\xd8\x9f\x8b\x0a\x9a\xa0\x09\xdb\x02\x1f\x41\xd5\xbd\xd0\xb5\x6e\x4d\x91\x78\x65\xbe\x23\x09\x8c\x24\xd3\x4d\x56\xbb\x49\xbe\xe5\x83\x1b\x4b\xa4\x2a\x28\x3a\x3d\x14\xab\xe8\x9a\x2c\x1d\xac\xdf\x78\x24\x93\xbb\x8a\x3e\xd0\x75\x6e\xb1\xd0\x85\xa6\x7c\xc3\x93\x51\x94\xa1\xa0\x4f\x71\xc0\x87\x61\x30\x0e\x55\x41\x74\x60\x84\x89\x88\x81\x7f\x8a\x1e\x23\x00\xde\x64\x45\x86\xb9\x7a\x1c\x8b\x71\xed\x48\xca\x17\x39\xb9\x23\x1f\x34\x4e\x58\x76\x8b\x4e\xc2\x00\xb5\x25\x1b\xfc\xae\xaf\x0d\x77\xdc\xc3\x6c\xee\x29\x63\x94\xb1\xf9\xc6\x58\x0a\x1a\xdc\x58\x09\x4d\x68\xe1\x67\x0f\x8a\x43\x2c\xc2\xb1\x03\x4b\x18\x38\xa6\xaf\xdb\x27\x34\xfa\x86\xc4\x27\x0f\x7a\xaf\x27\x95\xe1\x23\x19\xec\x0c\xb5\xde\x7b\x3d\x92\x4f\xaa\x20\x1b\x82\x4a\x3d\x54\x58\x2b\xf0\x74\x42\x9e\x79\xcc\x41\x24\x15\x19\x39\x66\x77\xc0\xa9\x1d\x39\xe5\x84\x23\x07\x92\xb2\x4e\xa7\x84\x9c\xd7\x2d\x5d\x8c\x47\x9c\xf0\xe4\x83\x3e\x29\x07\x06\x3e\x4e\x85\x90\x2f\x8c\x08\xae\xa0\x65\x35\x97\x1b\x8b\x64\x02\x3e\x2c\xaf\x96\x25\xee\xcb\x92\xe5\x47\x25\x7b\x93\x5b\xde\x73\x1c\x4f\xf9\xce\x32\x32\x5e\x56\x30\x84\xdb\x9c\x8f\xbc\x6a\x7f\x22\x38\xf2\x70\xe5\xa4\x85\x28\xee\xfd\xd6\xb9\xbb\x65\x5e\x07\x8e\x22\xdb\x6e\x30\xcd\x91\x42\xd3\x06\x1d\x14\x83\x6c\x8b\xf6\xce\x5b\xd5\xf3\xb2\xb8\x01\xb7\x24\xfa\xaa\xe5\x7b\x7f\x2b\x96\x3b\xd3\x38\xcf\x8b\x1a\x15\x42\xef\x90\xcf\x06\x46\xb5\xda\x01\xc5\x55\xf4\x60\xc4\xff\x20\x16\x78\x15\xf0\xda\xe3\xa2\x0d\xae\x3a\x46\xc6\x7c\x38\x75\x1e\x15\x3a\xe0\x99\x78\x6d\x7f\x61\x50\x79\x74\x70\x81\x4e\x46\xd3\xb1\x0e\x50\xbc\x05\x2d\x75\x8d\x49\xb9\xcc\xfb\xd5\x74\xce\x92\x65\xc6\x3e\xe4\x53\xe2\xe4\x4e\x10\x0a\xf7\x3c\x71\x12\xb5\x69\x95\x69\xef\x8c\x84\x13\x02\xda\x62\x70\x1a\xa0\x3d\xa1\x75\x57\x16\x25\xbb\x4e\x8b\x65\x15\x0a\x2b\xfd\x6b\xf3\x7a\xce\x67\xcf\xba\x92\x0b\xff\x1f\x21\x68\x5a\xb4\xf4\x5c\x88\x57\x10\xb7\xae\x08\x58\x8a\xec\x4a\xd6\x41\x58\x1d\xd3\x0b\xa9\x1f\x08\x3b\x7d\x6a\x50\x17\x61\x6c\x57\xbe\x35\x95\x9e\x89\xc9\x4c\xbc\x99\xbd\x67\x2c\x61\x89\x64\x2a\x70\xd2\x34\xde\x22\x34\xaa\x2c\x6d\xba\x5e\x25\x60\x92\xa9\x44\x9b\x0b\xb3\xef\x7a\x5a\x75\x9a\x3d\x82\x12\x7b\x34\x31\x95\x99\x7a\x08\x86\x56\x7b\xd3\x8c\xc5\xa5\xf4\x66\xd9\x06\x07\x0b\x8f\x2f\x8d\xa2\x19\xe2\xee\xd1\xd5\xd8\x23\x2c\x84\xbc\x54\x1d\xc9\xbb\x49\xb3\xec\x0d\x34\xa0\x3d\x5c\x82\xad\x28\x56\x15\xa8\x2e\xf7\x93\xe2\x4a\x78\x3a\xed\x83\x5b\x47\xdf\x6a\xae\x5f\x09\x3b\x44\x72\xf5\xa4\x85\x16\x25\x48\x11\x10\xf3\x56\x11\x0b\x55\x79\x6e\xeb\xdd\x13\xac\xae\xfb\x75\x19\xe7\x18\xe9\xfc\xbc\xf0\xbd\x14\x77\xde\xf0\xda\xc5\x3e\x30\xd5\x9b\x6b\x67\xbf\x93\x34\xb1\xba\xdd\xed\xf4\xcf\x90\x60\xac\x15\x66\x4b\x69\xf0\x68\x1b\x05\x73\x53\x90\xdd\xae\xe6\x99\xc4\x60\x0d\xc8\xa2\x64\x13\xe5\x86\xb3\x13\x2a\xcd\xdd\x41\xd3\x0c\xa0\x79\x5c\x49\x7b\xd8\x0d\x75\x25\xc5\xd5\x7a\xb4\x81\x19\x10\x3a\xed\xbf\x45\x09\xf2\x3a\x59\xae\x43\x1f\xfc\xd0\xd4\x07\xdf\x4a\x90\x2b\x59\x82\x4d\x42\xdc\x45\xc9\xd0\x5d\xd7\x26\x95\x71\x79\xd8\x6e\x0a\x47\x40\x68\xb2\x35\x30\xed\x1a\x5f\x7f\x78\xb7\x29\xa4\xb8\x9e\xcc\x75\x52\x58\x45\xab\xa8\x34\x70\x56\x16\x57\x78\xe0\xa5\x79\x5d\x44\xab\x66\xc8\xff\x2a\x66\x49\x25\xe8\x21\x10\x21\x44\x0c\xb0\x00\x81\x08\x1e\x6b\xa0\xd4\x20\xad\x81\x21\x03\xb4\xb6\x26\x3e\x38\x14\x40\x97\x0b\x54\xa4\x59\x58\xf1\xef\x45\x58\x54\xec\x2f\x3f\x3d\xf9\x2f\xdb\xd0\x5e\x81\x06\xa8\xc4\x9b\xe6\x4b\xd6\x20\xb7\xc4\xab\x1f\xa9\xfc\x71\xc8\x8b\x93\x6f\xa5\x7b\xc5\xe1\x0c\x1b\x99\xae\x30\x5b\x44\x3c\xbb\x92\xfd\x1a\x28\x26\x55\x8d\xf7\x40\xfd\x0a\xa1\xbb\x03\xf8\x3f\x94\x83\x38\x50\x5c\x26\xf1\x14\x47\x58\x3a\x3d\x25\x03\xfd\xd3\x50\xd3\x32\x03\x84\x6d\x41\x39\x35\xc9\xfb\x99\xc2\xb8\x74\xbc\xa7\xa9\x07\xbb\xff\xd5\x9e\x52\xed\xd7\x0a\x07\x95\xe9\x78\x74\xb1\xe8\x4c\xc7\x39\xb9\x22\x6a\x0d\xe6\xed\x6a\xcd\x45\xe3\x69\xbd\xc3\x07\x81\x14\xdd\x29\x96\x75\x95\x26\x6c\xa7\x98\xc1\x35\x03\xcf\xb7\x34\xbf\xdc\x59\x94\xc5\x94\x55\x20\x10\x78\xe2\xf0\x6f\xa0\xde\xb6\x9b\xf0\x92\xd5\x0e\xef\x32\xd2\x13\xe3\x32\xcb\x9a\x90\xb8\x07\x77\xf9\x4a\x00\x25\x6c\xb1\xae\x5b\x55\xd9\xf2\x03\x75\x6e\xa2\x9f\x30\xc1\x12\xf6\x27\xf2\x2a\x21\x78\x0d\xbc\x5f\x60\xec\x93\x0e\x88\xa1\x33\xd9\xf0\xb3\x81\xe2\x79\x37\x77\xed\xe8\x09\x72\xe6\x61\xc9\x84\x78\x50\xde\x38\x51\x37\x5d\xca\x07\xd4\x4d\x73\xbb\x5d\xaa\x4f\xf8\xd1\x66\xf3\x38\x9b\xfd\xd9\xde\xfe\xad\x83\x11\xfa\x8d\x6d\xda\x36\x43\xf0\x28\x3b\x33\xdb\xb8\xeb\x77\xc4\xb8\xcb\xc9\x4e\x3c\x7a\xff\x9a\x07\x3b\x82\x93\xfd\x38\x8d\xb3\x6c\xe7\x5f\xff\x7d\xa7\xc8\x77\x62\x58\x6d\x3b\x17\x8c\x6f\x3f\x51\x84\x25\x9e\xcd\x1a\x88\x73\x52\x9f\xa1\x78\xb0\x69\x88\xf0\x41\xb4\x61\x76\x55\xfb\x16\x7e\xe1\xc8\x23\x35\x78\xe3\x20\x20\x4b\xfa\x71\xf5\xc9\xe2\x58\x59\xd7\x56\x7f\x50\x95\x66\x25\x58\x31\x68\x96\x3f\xb2\x3e\x28\x8b\xd5\x54\x4e\x8a\xf6\x80\xba\x38\xb5\x7a\x2a\x08\xd5\xd3\x70\xa7\xdf\xef\x07\x72\x18\x1f\x46\x49\x52\x7a\x6f\x22\x12\xaa\x8e\x53\x81\xf0\x06\x5b\x90\x16\xe3\x16\x32\x7a\x28\x49\xe8\x38\xde\xb7\xa2\x4a\x1d\xbe\xd3\x37\xa8\xf5\x3c\x80\x0d\xf9\x9f\x76\x13\x72\xd2\x1c\x07\x65\xb3\xd9\x0a\xc7\x6d\xa8\x4d\x21\x1d\x57\x21\x07\x85\xfc\xbd\x49\x21\x37\x3b\x6f\x5f\x43\x03\x1d\x37\x20\x9b\x91\xfa\xd3\x1a\x46\xea\xcf\x84\x91\x6a\x5f\x21\x6c\xca\x47\x25\x9f\x4f\x2c\xb1\x63\xc5\x32\xe9\x64\x82\x5d\xd1\x60\x32\x4a\x64\x21\xbd\x6b\xb3\xec\x95\xf0\x17\x55\x31\xf4\x98\x1c\x0c\x88\x77\xb6\xc0\xcd\xe7\x68\x41\x23\xca\x7f\x3b\x62\xcd\x80\x98\x07\xbe\x83\x15\x01\xc4\x9f\x04\x9b\x86\xc0\x11\x0e\xa4\x3f\x4b\xf3\x44\xb4\xfd\x26\x47\xab\x3c\xe9\x35\x41\x80\x37\x96\xcf\xab\xff\xe3\xed\xb5\x7a\xfb\x26\x41\x27\x0d\x6e\x02\x87\x52\x2e\x53\xab\x59\x18\xc2\x88\x17\x4b\x53\x24\xa4\x2e\x34\x52\x35\x72\xa3\x8c\xbb\x62\xf5\x4e\xac\x7c\x29\xec\xd4\xc5\x4e\xbc\x93\x17\xf9\x3e\x6f\x02\x75\xa5\x77\x6e\xe6\x0c\xe5\xdd\x12\x28\xad\x76\xe2\xac\x64\x71\x72\x27\x25\xe1\xaf\x3f\xbc\xeb\xeb\xe8\x3d\xa8\x62\xed\x38\x9e\xc8\x4b\x6b\x97\x2c\xee\x38\x63\xb1\x8c\x98\x22\x98\xc1\xa9\x4e\x62\x89\x94\x2f\xfb\x22\x93\x08\xd8\xa4\xc9\x12\xaa\x85\x18\xcc\xe2\x7a\x3e\x16\x59\xce\xbc\xa8\xd3\x19\x3c\xc6\xbe\x36\xa0\x9d\x2d\x81\x94\x5d\xeb\x9f\xfc\x6a\x5c\xb0\x75\xb8\xea\xa5\x3f\x59\x27\x64\x07\x03\xc5\xe4\x96\x63\x48\x92\x83\x55\xc6\xf2\xc8\x61\x1b\xda\xe9\x69\xc8\x7e\xc9\x5f\x37\x88\x4d\x63\x8f\x22\x5a\x8b\xa2\xb2\x8e\xfb\x36\x72\x6d\x44\xa7\x0a\x65\xa4\xaf\x6b\x8c\x6e\x54\x91\x58\x27\xe6\xd6\x14\x8b\xcb\xb7\xa2\x1e\x19\xee\xe3\xf8\xfd\xa6\xb1\x2f\x01\xc4\x0d\x4f\x79\xc9\xea\x50\x3e\xda\x05\x2b\xf9\x0b\x15\x97\x31\x7b\x9d\xf2\xaf\x26\x80\xdb\x9c\xfa\x44\x40\xf9\xe0\x33\xdf\x75\x2a\x6f\xef\xe5\x43\xb1\x06\xbf\xf6\x25\x62\xdb\xd3\xb6\xe3\x74\x73\x1c\xba\x6d\x59\xc2\xa3\x0e\xdd\xf6\xd9\xed\x38\x73\x6d\xc1\x9b\x7d\x1e\xea\x07\x4b\xf7\x69\x88\xef\x45\x48\x2f\xb5\xbb\x04\x11\x62\xdf\x77\xf2\xfa\xd7\xe2\xf1\xd7\x45\xe0\xcf\x8a\x2b\x56\xcf\xf9\x9d\xe5\xae\x58\xee\x24\x69\xb2\x33\x8d\x97\x15\x4b\xe4\x7d\xa6\x2e\x76\x4a\xb6\x8f\x35\xee\xc0\x6b\xc6\x4e\x5a\x0b\x41\x03\x4b\x76\x2e\x96\xb5\xd0\x97\xe4\xc9\x37\x71\x25\xde\x60\x58\x02\x32\x38\x4a\xf2\x43\xe7\xbd\x06\x7a\xa6\x1f\xf1\x0c\xf3\x12\xf1\xfc\x04\x5d\x16\x8f\x7a\xeb\x88\x95\x36\xdc\xc6\xac\x96\xd2\x5b\xab\x95\xe1\x36\xba\x77\x76\x33\xd1\x56\x6a\x77\xfa\x79\x6e\xd8\xf5\xce\x27\xdf\xf7\x90\x84\x6f\x50\xec\x50\x8e\xac\xd4\x73\xda\x36\x47\x15\x1c\x88\xea\x31\x52\xea\x57\x92\x57\xd1\xad\x0e\x34\xe3\x61\xcc\xcd\x44\x08\x23\xfc\xe1\xba\x23\x27\x58\x6d\xbe\x41\x91\x27\xaf\xf5\x97\xa9\x07\x08\xcd\xb0\xa0\xc1\xbb\xcc\xe3\x9a\xb3\xa6\x8a\x39\xb9\x60\x2c\x57\x8b\xda\xeb\xb8\x43\x7e\x36\x8b\xe5\x9a\x92\x76\x31\x7d\x1e\xb4\xf8\xa4\x9f\xed\x0c\x92\x44\x67\xcb\x13\x08\x9e\xb5\x1e\xeb\x2d\xca\x75\xc5\x34\x4f\xa6\xcd\x4f\x6e\xbf\xf6\x11\xf4\x85\xfc\x25\x6d\x75\xd9\xeb\x38\xc6\x1c\x22\xad\x8e\x07\x2d\xe7\x21\x44\xde\x6c\xe8\x73\x8d\xb4\x6b\x50\x87\xd1\xeb\x0f\xef\xc2\x15\xc6\x44\xb6\x08\x0c\xa7\x9d\xa8\x56\x04\x24\xd7\x19\x38\xf5\xda\x36\x0c\x0a\x46\x1e\xdc\xa9\xc6\x8d\xd2\x17\x53\xf6\x7c\x58\x91\x08\x83\x0b\x59\xea\xe6\x23\x34\xad\x21\x31\x4e\x92\xaf\x2c\x85\x2d\x7d\x43\x0a\x37\xd2\x05\x20\xae\xfc\xbc\xc3\x03\xee\x69\xb5\xa3\x4a\x8b\xf3\x0d\x86\x05\xfd\xbf\xed\xf0\x8b\x4f\x9c\x65\xc5\x0d\x90\x85\xa0\x09\xd9\x6d\xda\x22\xb5\x5f\x60\x24\x50\xb5\x50\x8d\x84\x88\x05\xd2\x3d\x1e\x9d\xe4\x10\x88\xd4\x2c\x7f\x0c\x55\xa4\x07\x76\x07\x89\x94\x87\xbb\xb7\x9e\x98\xbc\xfe\xf0\x6e\x1b\x4a\x42\x9f\xe4\x1f\xcc\xcc\xfe\x12\x5c\xea\x97\xe0\x42\xbf\x10\x15\x68\x3d\xfd\xda\x7c\xa3\x7e\xa1\x5c\x6d\x5a\x1a\x84\x3b\x22\x07\x7d\x07\x73\xc0\xff\xfb\x26\x65\x65\x5c\x4e\xe7\x77\x44\xad\xc6\xc1\x1a\xe0\x55\xca\xa9\x28\x33\xcb\xf1\x28\xc2\x8b\xf0\x35\x71\xb7\x0f\x8d\x80\x83\x2e\x46\xd5\x6a\x94\x97\xc9\x8b\x22\xb9\x93\xca\xa1\x95\xf2\x78\xe9\xd0\xd8\x69\x2b\xbc\x48\xa6\xa4\x0b\x51\x87\x66\xcb\x03\x39\x94\xeb\x35\x5c\x9d\xf1\x3c\x86\xac\x90\x7c\x50\xda\x96\xbb\xd8\x5d\xc3\x5d\x74\xb3\x09\xdd\x3b\x53\xad\x91\xb5\xbb\xf3\x7a\x3b\xeb\x52\xf3\xcc\xb6\x5e\xaa\x50\xb9\xbf\xcb\xf6\x14\x6e\xdb\xc4\x82\xd3\x76\xbc\x88\xce\x40\x44\xf4\xe4\x87\xdb\x6d\x3e\xee\xc1\xbb\x62\xf5\xc4\x61\x2d\xba\x56\x5c\x2e\xf9\xac\xcd\x46\xa7\x98\xf1\x00\x7b\x56\xd3\xf8\xd4\xf6\x5c\xa2\xb4\xa5\x9f\x11\x6d\xea\xed\x0c\x55\x69\x7d\xca\x54\xc1\xed\xa3\xe5\xa1\x51\x83\x8d\xc2\xd3\x62\x61\xb7\xe7\x76\x14\xaa\xe6\x04\xa3\xf5\x6f\x63\x3c\xbc\xee\x05\xc2\xc8\x03\x7f\x14\xbf\xcd\x07\x85\x5f\xc7\x38\x97\x24\xd8\x68\x1e\xda\x78\x1e\xda\x88\x1e\xda\x98\x3e\xb7\x31\x7d\xde\x1a\x4b\x1b\xd3\xe7\x36\xa6\xcf\x6d\x4c\x9f\xdb\x98\x3e\xb7\x31\x7d\xfe\xa7\x2f\xc3\xa1\x3f\x50\x42\x84\x5a\xf3\x1b\xf9\x75\x24\x6e\x9b\x98\x75\x11\xe2\x5f\x84\x9b\xdf\xc0\xaf\x77\x9a\xb9\x7e\xc1\xa7\x9a\x8a\xd1\x70\x25\x1b\x2c\x83\x5b\xe6\xbc\x07\x6d\x98\x38\x49\xdc\x46\xb4\x87\x93\x49\x9f\x64\x6a\x8f\x82\x1d\x46\xb7\x1c\xde\xcc\x7f\xac\xb9\xb0\x74\x48\xb5\xb6\x94\x05\x82\x83\xba\x4c\x93\xaf\x8b\xb6\x89\x71\x5f\x64\x08\x46\xae\x8e\xdb\x10\x3c\x75\x8d\xa5\xf4\xef\x6d\x4b\x69\xb7\x95\xf2\x1f\x6c\x2b\xe5\xfa\x6e\xc1\x3e\xcc\xda\xcd\x61\xba\x70\x96\xe4\xf0\x0c\x8b\xae\x78\x21\xa3\xcb\xa3\x12\xa7\x0c\xd4\xa5\xd2\x3b\x7e\x14\xb5\xd1\x81\x64\xd3\x70\x39\xb2\xe9\x89\xbd\x26\x5c\x86\xd2\x7f\x56\x86\xd2\xfa\x3c\x8a\x6c\xb2\xd3\xd7\x79\x38\x93\x71\x35\x67\x65\xfa\x4f\x8b\xb3\x3e\xe0\x33\x28\xb3\x36\x9a\xbc\x3f\x77\xd0\x84\x78\xb2\xc1\xea\x3d\x8c\x27\xb0\x78\x81\x16\xd8\x30\x2a\x27\x8c\x27\xd4\x86\xad\x05\x48\x33\x37\x5a\x9d\xff\xc1\x6d\x75\xce\x4f\xd8\xc8\x26\xb6\xad\xab\x7e\x97\x4f\xe6\xe7\x4e\xa7\xcc\x6d\x53\xc3\xc8\x26\xd6\x0e\x73\x44\xa3\xa8\x92\x60\x76\x97\x54\x20\x6b\xdd\x22\xf0\x83\xa0\xe5\x17\xa1\xea\x80\x23\xfe\x10\x1c\x8f\xdf\xcf\x1d\x84\xd2\x50\x56\xd7\x8a\xb9\x9c\xe3\x06\xa1\xab\xe0\xe7\x89\x38\x95\xd8\x43\x34\x44\x91\x97\xc5\xe5\x71\x3c\x9d\x33\xf9\xc8\x2b\x8a\xf0\x8d\x8f\x3f\xfb\x53\x9e\x2d\xaf\xef\xda\xb3\x8c\xe5\x99\x55\x11\x25\x97\x79\xeb\xf5\x06\x27\xae\x25\xab\x23\xdc\x5d\x7e\x00\xe6\x0e\x68\x68\xad\x96\x73\xa7\xfd\xbd\x61\x4e\x76\xac\xa5\xe9\xf2\xf9\x8c\xc8\x67\xb4\x3d\xd9\xb1\xe9\x51\x00\x5f\x35\xa9\xbc\x1a\xa4\xb7\xc4\xd6\xac\x6a\x97\x94\xee\x37\x25\xa0\xf4\xc9\x09\x57\x27\xf9\x46\x1b\x6d\x67\x92\x9e\xce\xfc\x5d\x63\x3e\x83\x95\xe9\x4d\x61\xa3\x50\xc6\xf2\xae\x13\x90\xd5\x22\x0d\x57\xa8\xdb\x5d\xab\x31\xfa\xa6\x28\x5f\x97\xd7\x21\xdc\xb8\xc5\x33\x7a\x04\x77\xd2\x6a\x27\xbd\x12\x4e\x7a\xbc\xa0\xa1\x7e\xb1\x83\x21\x5e\x24\xcf\x4f\xde\x7d\x7c\x7b\x74\x7e\x72\x26\x63\x85\x28\x5f\xe5\x84\x5d\x91\x2e\x24\x04\x5b\x12\x1a\x7c\x07\x7a\xd3\x62\x37\xe8\x4a\x4b\xfa\x95\xa0\xaa\xe9\x98\xb4\xc9\x61\x9c\xf0\x8c\xd4\x21\xfd\x16\xce\xbe\x79\x53\x55\x7a\x91\x51\xf7\x4c\x2a\x0d\x7c\x50\x58\x27\xaf\x80\x51\xbc\xbf\xc0\x6f\x13\xa8\x82\xf4\x82\x86\x58\x98\x6a\xa3\x71\xd3\x88\xd5\xda\x63\x42\xc1\xc3\x76\x5c\xa6\x75\x40\xa4\x59\x2b\xdd\x18\x62\x72\xa8\x56\x08\x55\x20\x31\xde\x93\x31\x03\xcc\x2d\x01\x4b\x61\x9a\x4a\x10\x45\xe7\x6d\x45\x3e\x2d\x59\xcd\x2c\xd4\x3b\x30\x77\xc8\x10\xa9\x41\xbc\x81\x80\x1e\x7d\xd3\xfc\x56\x35\x07\xd2\x3d\x87\x1d\x7b\xc9\x84\xe7\x29\xe2\xb8\x90\xd5\x71\x9a\x11\x2b\xe3\x79\x5c\xcd\x83\x15\xff\x5f\x78\xf2\x15\xde\xf0\x74\x18\x7d\xc8\x9b\x12\x17\x85\x51\x87\xeb\x42\x84\x54\xa4\xcc\x16\xcd\xd8\xc6\x9b\xe2\xd9\x14\x69\xf4\x87\x05\x2b\x63\xed\x5f\x0c\xe3\x43\x62\xf9\xbe\xf0\x95\x68\xf6\x2f\x4c\xb0\x27\x91\x8c\x90\xdc\xea\xa3\x2f\x20\x94\x64\x47\x43\x60\x1c\x66\x91\x1f\x52\x73\x34\x01\x70\x6a\x8a\x88\x2c\x67\x05\x96\x00\x69\x6d\x77\x1a\xe9\x41\x71\xf2\xf8\xd1\x70\x85\x0d\x25\x01\x7f\x94\xff\xdc\xda\xe5\x3b\x57\x26\x42\xbc\x97\x8e\x08\xc9\x11\xc5\x41\xee\x17\x11\x65\x1f\x62\x4a\xab\xa0\x39\xf7\xf7\x86\xc1\xa4\x8a\x5e\xec\x20\x28\xf2\x8d\x4a\x89\xf5\xb0\x41\x60\x8b\x70\x7c\x95\xe8\x4d\xb8\x10\x68\xa7\x81\x80\xdf\x02\x16\x53\x21\xc3\xc5\x0a\xe9\x60\x07\xad\x23\xfe\x35\x42\xe5\x93\x0e\x05\x9a\xb0\xc6\x54\xda\xe8\x40\xea\xf3\xd5\xf3\x02\x43\xb1\x62\x9c\x6d\x88\xde\x05\x89\x2a\x66\xd7\x65\x3d\x8f\xec\x18\xe5\x43\xe5\x69\x84\x9f\x11\xc0\xae\xfb\x32\x30\xac\xb6\xaa\x49\xa3\x43\xb4\x53\x05\x83\xd5\xbd\xbd\x60\xc5\x8b\x8c\xd2\xfd\xc3\x31\x41\x25\x55\x41\xc4\xb1\x61\xab\x13\xfc\x20\x0e\x15\x45\x4d\xce\x58\x9e\xe0\xf1\x50\xd9\xce\xfa\x68\x14\xee\x5d\xa0\x37\x23\x9d\x31\xb6\x2b\x71\x97\xd6\x1e\x54\xc6\xfd\x2e\x07\x7f\x76\xcd\x2d\x84\x65\x80\xee\x70\x1e\x57\x76\xf0\x75\xb9\xb5\xe0\x1e\xe4\xeb\x81\x87\xd0\x55\x12\xd6\xbb\xbf\xa7\x27\x18\x94\x74\xc6\x22\xd8\x70\x24\x74\xc4\x29\x50\x39\xa6\xc3\x7a\xb1\x94\x12\x5b\xe1\xa9\xa5\x5f\xd8\x27\x0e\x32\x84\x25\xbd\x63\x47\x50\xe3\x02\xf3\xfd\x5d\xf8\xc8\x70\xa9\xc3\x29\x21\x74\x5b\xaf\xce\x32\x78\x70\xe5\x50\x04\x54\xa2\xa5\x88\xa0\xf5\x9c\xaf\xdb\x5e\xd2\x34\x3b\x87\x7e\x2a\x04\xff\x26\x5f\x1f\x04\x63\x8b\x3f\x29\xc8\xfd\xfd\x68\x8c\x7b\x58\x6c\x98\x6b\xea\xdc\x65\xf8\xbd\x65\x21\x2d\x1d\xfa\x46\x2b\xe1\x31\xe6\xa0\xbd\xb1\xb5\x4e\x98\xb3\x79\x60\xa2\xc9\x4e\x3b\x08\x33\xa3\x51\xbe\xf1\xb4\x4d\x3d\x66\x09\xa3\x70\xaa\x5a\x66\x6a\x31\x92\x46\x9b\xa6\x71\xcd\xc1\xb6\xe8\x6d\x8d\x19\x58\xfb\x3b\x94\x28\x29\x26\x8e\x19\x57\x78\xcc\xf2\x2f\x3b\x3e\xb3\x5c\x32\xfa\xe6\x6a\x52\x0d\x02\x57\x84\x3a\x41\x25\xeb\x68\xfc\xa1\xbd\x27\xdb\xc6\xaa\xbe\xc1\x08\xe1\x2d\x7a\x8f\x95\xed\xb9\x09\x73\x0b\x1d\xc2\xff\xa3\x02\x90\x20\x59\x38\x52\xfa\xa4\xd8\xca\xed\xd1\x75\xaa\x1d\x1e\x89\xdb\x1b\xf1\x92\x13\x67\xd9\x45\x3c\xfd\xd4\x31\x2e\xa2\x1e\x7d\xed\x43\x0c\x54\x29\x41\x15\x3a\xba\x1b\x89\xf0\x2e\x74\x3c\xa3\x03\x11\x9e\xf0\xe4\xdd\xc7\xf3\xbf\x4d\x8e\x4e\x4f\x8f\xfe\x16\x8d\x88\x93\x6f\x15\x43\x80\x04\x11\xe2\x87\x40\xce\x0f\x02\x2d\x52\x1c\x8c\x30\xa4\x35\x04\x29\xf7\x42\xfd\xf1\x15\xbe\x0a\xf0\xb4\x58\x06\x2c\x55\x69\xe3\x90\xde\x50\xda\x3e\x8e\x33\xf0\x20\xad\xbf\x1f\xe6\x53\x1b\xbd\x49\xd3\x63\x4d\xfb\xd2\xd6\x79\xca\x6b\x76\xdb\xa9\xb4\xe9\x84\x39\xfc\xdf\xe1\x63\x9a\xfa\x32\xde\x74\x69\xfa\xd9\x7d\x0a\x8b\x19\x5e\xe7\xce\x58\xaf\x01\xd2\xb4\x4e\xf4\x64\x1d\xee\x41\xd3\x80\xb2\x90\x46\x15\xbf\x1d\xc3\xf5\x56\x00\x1a\x3e\x8f\x8d\x26\xb7\x72\xa0\xfd\x00\x6f\xd8\xf2\x57\xdb\xd7\xb9\x76\x76\x2e\xba\x64\x72\x44\x21\x3f\x07\xf1\x86\x48\x19\x24\x15\x4b\x09\x05\xb7\xe8\xd7\x47\x7e\xde\xdf\x1f\x6b\x2f\x4e\xea\x67\x5f\x74\x5e\x25\x28\xa5\x44\x0d\xac\x7e\xf6\xb3\xa2\xf8\xb4\x5c\xe8\x1d\x32\xf0\xf6\x04\x9b\x35\x55\xbe\x91\xd7\xbb\x66\xb7\x49\x6f\x14\x45\xcf\xd1\x96\x54\xac\x2e\xe5\x71\x1e\xcb\x0c\x8d\x4d\xe5\xbe\xf2\xaa\x32\xfc\x8e\x4b\x5d\xc2\x4d\xd6\x62\x65\xaf\x71\xb2\x45\x64\xd0\x29\xfc\xb2\xc2\x52\xc9\xc5\xac\x36\xbc\x4e\x6c\xd6\xb8\x49\xd7\xd2\x06\x43\xbc\x64\x6f\x17\xd2\x19\x6a\xb0\xab\x3b\xd3\x19\x65\xec\xb6\xb6\x54\xa5\x80\x57\x95\x5a\xc5\xfc\xf6\x2f\x05\x33\x48\x78\xb5\x60\x6a\xd0\x96\x57\x52\xad\xdc\x01\x39\x25\x68\xfa\x3a\x77\x5b\xc4\xcd\xa8\x83\x46\x13\x89\x46\x27\x9d\x71\x5b\xeb\xe0\xd8\x39\x9c\xe7\x19\x24\x87\x7a\x4f\x43\xa7\x5c\x0e\x77\x48\xc5\x2f\x8d\xad\x56\x03\x5e\x8b\x6c\xce\xe2\x92\x55\xf5\x1b\x21\x98\xfc\x30\xd3\x7b\xff\x13\x04\x64\xd2\x7e\xfa\x3b\xda\xc7\x00\xab\x4a\x91\xcd\x96\x73\x8a\x5a\xa8\x5e\xaf\xaa\xed\xba\x65\x29\xd5\x34\x12\xa3\x0f\xb3\xf3\xbb\x05\x7b\x28\x36\x61\x5a\x61\xc1\x08\xe0\x29\x22\xf0\xda\xf4\xca\x92\x5c\x0b\xb4\x00\x58\x86\x30\x42\xe6\xd2\xd6\xd1\xeb\x82\xe4\x34\x8f\x73\x0c\xd3\xba\x28\x83\xc6\x1e\x0d\x89\x0e\xa6\x3c\x62\x18\x7e\x48\xeb\xb9\xdc\x26\x44\x44\x23\xbd\xe7\x3e\x74\x76\x64\xc1\x9d\x14\x91\x78\x04\x46\x70\x0f\xfc\xfc\x75\xe2\x6e\xe6\x73\x16\x0e\x21\x7f\xae\x7d\xd7\x25\xb3\xd5\x1b\xef\xb5\xba\x0e\x3b\x3d\xf6\x53\xd9\xa9\x6a\x00\x37\x60\x97\x44\x54\x91\xef\x5e\x6f\xb7\x8b\xae\x43\x13\xa8\x40\x2f\x27\x5a\xe9\xef\x13\xc0\x46\x52\x65\x4c\xe8\x22\xcc\x32\x4c\xca\x83\x3a\x48\xcc\x41\xb6\x77\x60\xea\xb2\x37\xa0\xf8\x02\x1f\xd8\x15\x40\x84\xf2\x2e\xaf\xe3\x3a\x76\xf0\x2f\xe8\xae\x11\x6e\x09\x32\xc8\x45\x44\xf3\x5e\x4d\x8b\xc5\x9d\x4f\x53\xfa\x12\x2e\x18\xac\x1a\x30\x96\x93\x09\xa1\x87\x72\x67\x93\xc2\xbe\x92\xd9\x70\x5d\x19\xd4\x2a\xea\x8c\x2e\x36\xd1\xe5\xec\x2c\x3a\xda\x1d\x73\x2b\xf9\x09\x59\xa8\xe9\xf4\x1b\xdb\xc1\xcb\x49\x76\x92\x32\x90\x9d\xd1\x4e\x64\x68\xcb\xdb\x56\x68\xcb\xdb\xba\x35\x90\xc0\xad\x99\x71\x42\x50\x79\x60\x59\x2f\x96\xf2\x85\xbc\x8e\x23\x12\xe3\x05\x71\x1d\x08\x43\x9a\xb4\x42\xc1\x10\x84\x21\x81\x23\x5e\x85\x22\x51\x63\x44\x03\x8f\xb8\x27\x98\x86\x20\xf1\x82\x66\x88\xcd\x47\x2d\x5e\x75\xc5\x91\x19\xf0\xff\x1a\xe8\x36\xc2\x99\x37\x22\xe1\xe8\x0c\x5e\x02\x31\x1f\x44\x24\x2e\xd7\x05\xf4\xb2\x6c\xf8\xa2\x54\x3b\x41\x08\xc9\xdd\x12\x30\x6b\x21\x23\x73\x89\x3a\xe5\x11\xb9\x0c\x7f\x45\x44\xcb\xc2\xf1\xf0\xd1\xac\x96\xbc\x32\x49\x40\x10\xdb\xd3\xba\xfd\x42\x4b\x44\x16\xa4\xec\xfe\xe1\x30\x7d\x19\xd1\x06\x87\xe9\xfe\x3e\x3e\xb5\x52\x5f\x83\xc4\x09\x21\x88\x34\x88\x1f\xd1\x26\x9c\x80\xb0\xe1\xd8\xbe\x50\x93\xcb\x07\xcf\x92\xc9\x62\xad\xa9\xbb\xb8\x5c\x4d\xf2\x1b\xcc\xa7\xc3\x5c\x86\x56\x54\xea\x14\x09\x7c\xd3\x17\x65\x5a\xab\x26\x59\x42\xcb\x0f\x9b\x29\x32\x51\x4c\x70\x43\x15\x4b\x40\x13\x01\x48\xec\x04\x12\x24\xd9\x84\x40\x89\xb2\xb0\xa9\x0a\x43\x66\x4c\xe2\x25\xc7\x97\xff\xc6\xb7\xa5\xaf\x8b\x52\x3d\x07\xaa\x6a\xc0\x72\x1c\x40\x9f\xf8\xb8\xf4\x04\x42\x18\x39\x5e\x0a\x5a\x79\x8a\xce\x1a\xea\xc1\x30\x3d\x11\x2b\x88\x26\x9d\xf9\x12\x13\x51\x53\x9c\x60\x9e\x4e\x1f\x4a\xf0\x48\x26\xe1\xa5\x44\x27\x73\x6e\xbd\x19\x5a\x23\xbc\x65\xcf\xd2\x99\x6f\x15\x0c\x56\x44\x35\xc5\x27\x13\x6a\xc3\x69\xc4\xac\x1c\x79\x9e\x5c\xa6\x55\xcd\x4a\x23\x5c\x6e\xa8\x27\xaf\xbf\x88\xeb\xb9\xb6\x36\xc2\x43\xa7\xc8\x59\xdb\x2e\xdb\x3a\xc7\xf4\xd8\x6f\x1c\xe0\xa1\x35\x48\xe4\xe1\x6b\x99\x57\x0b\x36\x4d\x67\x29\x4b\x8e\x6c\x79\x91\x78\x4c\x85\xfd\xd0\xce\xb4\xe8\x76\xd8\x12\x37\x89\xe7\x09\x99\xfc\x3d\xbf\x48\x86\xeb\xda\x13\x73\xf5\x99\x20\xf7\xf7\xab\x86\xec\xab\x16\x5a\x1d\x7b\x0b\x42\xbb\x45\x22\x89\x04\x7a\x0b\xe5\xd9\x1e\x41\xda\xe8\x60\xac\x7b\x0a\x52\x12\x4c\x3e\x1c\xdf\xdf\x4b\xc8\xa1\xc5\x5c\xc2\x58\xcb\x87\x2f\x56\x2f\x17\x36\xce\xb8\x36\x62\x83\x9d\x35\x5b\x09\x86\xe6\x38\xea\x53\x4d\xb1\xbf\x20\xb6\xef\xbb\x27\xab\x35\x47\x18\x5c\xc9\xa8\x52\x3c\xac\xaf\x1b\xda\x91\x6c\x6c\x1c\x19\x35\x35\x32\x6c\x03\xf4\xb1\x62\xf5\x77\xf9\xa7\xbc\xd0\x5e\xe8\x22\xd5\x77\x2b\xa3\x09\x37\x0e\x48\x9b\xd1\xb7\x46\xc6\xb5\xca\x38\x0d\xe9\x24\x7a\x26\x15\xfb\xbc\x71\x05\xea\xbe\x7e\x54\x87\xeb\xc8\x80\xec\x92\xda\xff\x60\x2d\x69\x8d\x92\xd8\x87\x8e\x0c\x97\xac\xc7\x18\x0e\xfd\x34\xbd\x76\xcf\xf4\x7a\x9b\x61\x46\x9f\xd8\x1d\x3c\xc8\x58\xc3\xbf\xe5\xba\xe6\x18\x9a\x25\x1b\x57\x9c\x94\x4f\xec\x8e\x38\x22\xa9\x55\xa2\xe8\x5d\x13\x76\x90\xf2\xae\xfb\xe0\x16\xa7\xe4\xc2\x08\xbf\xc2\xc9\x71\x64\x91\x67\x7c\xa6\x88\x33\xb2\x3a\xe2\x7a\x8e\xae\x26\xe2\x8c\x3e\xe9\x5b\x91\x8a\x01\x8c\x23\x82\x45\xf1\x31\x0f\x65\x79\x58\x85\x14\x35\x21\x6e\x66\xd7\x60\xfd\x40\x15\xbc\xf3\xf4\xc8\x50\x04\x9f\x26\xce\xe2\xac\xd2\x6c\x4b\xd0\x84\x42\x43\x6e\x1b\xa9\xf3\x56\xe2\xf5\x36\x87\xa8\x4d\x6f\x84\x9f\x7d\x42\x47\x3a\x0b\x5d\x9a\x85\xe0\x32\x47\xac\xf3\xc1\x30\xbf\xb3\xf0\x13\x6c\x88\x03\x35\xe1\xd5\xb2\xa6\x36\xe9\x55\xd7\xbb\xce\x3a\x4d\xbf\x34\xb9\x6d\xbb\xab\xc6\xd7\x38\xbc\xa4\xef\xef\x43\xb8\xf3\x03\xf1\xf2\xd6\x8a\x6f\x2e\x5a\xd2\x81\x06\x20\xfc\x8e\x19\xd2\xde\xbe\x43\x3e\x02\x51\x78\x1f\xa7\x4e\x43\x68\x03\x82\xf1\xee\xe8\x08\xf8\x1c\xe9\x74\x26\xb2\xbe\x57\x28\xff\x31\xe3\xf3\x83\xe7\x01\xfa\xc6\x28\x4c\xa2\x05\x25\x30\x0c\xe6\xde\xc6\x35\x2b\x7d\x5b\x38\xfa\xc4\x0f\xfa\xb2\x1a\x65\x50\x6d\xbd\xb7\x0b\xc5\xbf\x37\xf9\xe3\xda\x11\xce\x7f\x44\x11\xe1\xf4\x44\x1c\x50\xdb\x34\xef\xa8\xde\x7c\xc5\x15\x64\xcf\x72\x15\xd3\xed\xc8\x5d\x48\xcc\x8d\x6a\xbd\x70\x96\x07\x76\x5b\xdb\x34\x03\x4e\xc4\xdb\xbb\xc3\xa8\x07\x57\x24\x34\x80\x9d\xed\xba\xf4\xa9\xa1\x30\xcc\x04\x03\x19\x58\x64\xe0\xd2\x8c\xdb\x4e\x15\x03\x45\x0c\xf6\x6b\xb8\x2d\x41\x91\x6f\xfc\xce\xfb\x25\xf5\xbd\xd0\x76\x46\x04\xac\xac\x32\xe4\xc5\x73\xb2\xdb\x41\x94\xad\xd6\xc5\x93\x85\xa7\xe0\x24\xf2\xfe\x8f\x78\xaa\x54\xd5\x0d\x4d\x3f\x52\x69\x12\x8c\x0e\xc6\xf7\xf7\xea\x33\x24\xb5\x80\x2b\x29\xc3\x0a\xd4\x1a\x36\x12\x0c\x5f\x1a\x1a\xb6\xf7\x30\x55\xfe\xb2\xf4\xd8\x8c\x00\xf4\x72\xf5\x88\x5b\x3e\x93\x03\x6e\xad\xe1\x96\xed\xa8\x56\x32\xb1\x8c\x35\x55\x86\x75\xe7\x58\xa3\xc4\x42\x56\x69\x98\xe6\xd3\x6c\x99\xb0\x33\x96\xcd\x5a\x84\x8c\xe4\x45\x11\xfa\xeb\x7f\x65\x13\xb7\xc1\x88\xa7\x8c\xed\xa8\x5f\x82\x9e\xb6\xb5\xa9\x91\x32\x3b\x5c\x8d\xd0\xc2\x51\xdb\xb3\xc8\x90\xe0\x35\x1a\x5b\x6a\x0f\xb4\xac\x5b\xeb\x82\x42\x8c\xd2\xf1\xb0\xad\xbe\x7d\x6d\xb9\x37\x79\x65\x27\x08\x4c\x0e\xf0\x41\x56\xa9\x6f\x0c\x5d\xca\xe0\x54\x4a\x41\xd5\x20\xc8\xe9\xe5\x52\x03\x7f\x98\x26\x0c\x1d\x11\x98\x84\xf0\xff\xa9\x09\xd8\x5a\xbf\xe8\xcb\x4e\x50\x87\x1d\xb8\x2d\x4c\x23\xfd\xdd\x1c\x81\xc3\xc7\xf9\xa3\xfa\x8c\x07\xc3\xf4\xc5\xb5\x2b\x48\x84\x88\xc4\x41\xa2\xde\x58\x60\x52\xb1\xc6\x4f\xed\xc0\x37\x7d\xc3\x75\xd9\x75\x3b\x98\x06\x51\xd6\x21\x41\x22\xba\x6a\x68\xa8\x63\x35\x0d\xbf\xce\x31\x6a\x27\x73\x68\x9d\x3f\x42\xc4\x71\xd3\xf2\xc4\xa3\xa8\x5a\xa7\xaf\x1e\x7b\x22\xac\xc1\x57\x6a\x3d\x0f\xb7\xe5\x6f\x3b\xda\xeb\x82\x34\x31\xf2\x0c\x77\x40\x74\xa0\xa4\x2b\x17\xd7\x2b\x88\x3a\x29\x6c\x0e\xac\xf5\xaa\xd1\x36\xbc\x09\x9a\x20\x74\xbd\x22\xe9\x23\xc1\x54\x69\x7f\x88\x36\xfb\x1a\x55\x0d\xd4\xf8\x10\x56\x0e\xa8\x0a\x0a\x05\x1f\xad\xa4\xdd\x21\x84\x6e\x47\x03\x24\x2a\x69\xf4\x20\x16\x48\xac\x6d\x64\xe8\x96\x62\x77\xb6\x61\xa9\x49\x6f\x72\x93\x60\xf9\x70\x72\x89\xea\x9d\x31\x6f\xc8\x53\x45\xd0\x84\x54\xbb\xbb\x23\x5a\x9f\x29\xe5\xa8\x5a\x6e\x18\xc8\xb3\xc2\x87\x05\xcb\xd3\xfc\xf2\x3c\xbe\xf4\x39\x87\xa9\x3b\xdd\xae\x9a\x94\x3a\xce\x8a\x8a\x94\x72\x37\xe7\x7e\x12\x6a\xa9\xb8\xd1\x97\x9d\x96\xfa\x1b\x92\x2d\x3b\xd9\x8a\x0d\xe9\x96\xf4\xb7\x8b\x05\x8d\x21\x54\x71\x20\xd0\xd6\xb5\x0b\x0c\x51\xc9\x3a\x04\x36\x4b\xeb\x34\x1e\x32\x80\x0d\xab\x01\x6d\x56\xf9\xd6\x7b\x83\x9a\xa3\x14\xa7\x5f\xb3\xb3\x28\xde\x28\x0b\xc3\x64\x28\x2e\xd3\xf8\xb4\xc8\xc4\x03\x1a\xcf\x54\xd3\xc5\x5b\xf7\x3d\x9e\xe4\x85\x90\xd1\x18\x6c\x2c\x31\x36\x92\x7c\x9d\x2a\x5a\xd5\x77\x19\xf3\xbd\x04\x95\x06\xbd\xd0\x03\x47\x0b\x18\x54\xff\x52\xab\x17\xca\xc6\x85\x8d\x8e\xea\xc3\x80\xfa\xaf\xf1\xc6\x61\x6b\x3e\x0c\xbd\x98\xd6\x28\x19\xb9\x4e\x53\x2b\x35\x26\x91\xf9\x79\x7f\x2f\x2c\x90\x7d\x22\xce\x34\xed\xb2\xb6\x89\x27\x3a\x34\xe7\x44\x2d\x17\x61\x51\xe8\xce\x95\x85\xed\xd2\x1d\xc5\x34\xfc\x3a\x5f\x80\x4a\x3f\xae\x93\x72\x90\xb2\x44\x84\xa1\xd4\xe1\xdc\xc1\x25\xd5\xbd\xad\xfb\x2d\xbd\x23\xc8\x21\xba\x68\xdd\x24\xeb\x30\xcd\x7d\x29\x3f\x85\xdc\x72\xbd\x45\xf0\x46\x5b\x9a\xc0\xeb\x3b\xca\x32\xd7\xbb\x25\x1d\x1c\x5b\xa6\xe4\x5b\xa7\x8c\xe2\xc5\xa4\x75\xc1\xf7\x68\xa5\xa8\x2d\x0c\x50\x64\xa2\x0d\x20\xbe\x6c\xa3\xd7\x66\xdc\x43\x35\x43\xfc\x26\x8e\x97\xdd\x6d\x0d\x2e\xc8\x3d\xde\x77\x78\x65\x76\x58\x4d\x18\x23\xda\x61\xde\xb1\x4e\xd6\x96\x17\xb9\xd0\x36\xf8\xb8\x49\x93\x4b\x45\x95\xd6\xbc\x16\xc8\x3b\xa1\xb6\xb7\x2c\x0f\xd3\x35\x06\x23\x12\xc8\x11\x87\x0e\xa3\xd4\x49\x00\x7c\x2f\x3e\xc0\x47\x62\xf3\x49\xd8\x14\x70\x44\xe0\x78\x48\x5c\x16\x38\x22\xbd\x9e\xab\x33\xc1\xca\x95\xda\x97\x7b\x01\x7a\x80\x51\x5b\xbf\x04\x8a\x7a\x15\x98\x86\x2a\xa6\xa7\x4e\x8b\x22\x70\x6a\x29\x4c\x7c\xaf\x2d\x4f\xa6\xe7\x77\x0b\x26\x4d\x67\xcd\x3a\xaa\x9d\x59\x5a\x56\xf5\x8e\xd4\x21\xdd\xb9\x5a\x56\xf5\x0e\xbb\x4d\x2b\xe1\xa8\x5b\xd9\x36\xb3\x9b\x5e\xef\x5a\xca\xd9\xe5\x14\x47\x30\x89\x22\x43\x6b\xc9\x46\x96\x9e\xac\xa9\xdf\x04\x88\xc2\x33\x93\x78\xd1\xe3\xbf\x8c\x6a\x79\x69\xbe\x0a\x94\xca\x3c\xd5\x59\x0b\x56\x58\xc0\x50\xac\x69\x27\xb9\x94\x49\x84\xb2\x0d\x02\x77\x29\xf5\x0e\xaf\x2d\xd7\xa8\x3e\x8e\xac\xba\x51\x5e\xab\x08\xeb\x7c\xfa\x0d\x25\x14\x62\x1b\x1a\x1a\xb0\x22\x84\xba\x8a\x41\xe8\x8e\xdb\x8e\x1b\x6d\xb6\xcc\x32\xb4\x1d\x04\xad\x14\x6f\x0f\x64\xd6\xd2\x8e\xe0\x5b\xfd\xf6\x6d\x2b\x11\x7f\x1d\x4f\xeb\xa2\xbc\xf3\x65\x05\xb2\xa7\x5b\xaa\x20\xc9\x68\xfa\xd0\x82\xd9\x77\x14\xfc\x6f\x18\xb7\xf5\xf1\x68\x1f\x80\x4a\x63\xf8\x58\xa1\xab\xdb\xf4\xd5\x7d\xc1\xa6\xf1\x15\x93\x0a\xb8\xf2\xf6\x82\xa9\xdf\xa4\x49\x42\xac\xb8\xb4\x55\xb5\xeb\x32\xa5\x39\x1e\x97\x46\x19\xb1\xc8\x8e\xdc\x36\xd9\x8a\x3e\x6d\x10\x12\x63\x75\x75\x71\x79\x99\x21\xda\x69\x96\xd6\x77\xfc\x3a\xd6\x4a\xb4\xa9\xef\x13\x96\x19\xfa\x19\xbb\x4f\xf4\x6b\x4a\x83\x0e\x2c\xd6\x9b\x8d\x3b\x7b\xa3\x7e\xab\xaa\x9e\xb0\xac\x8f\xb8\xf8\x3a\xb3\x65\x99\xae\x7e\xd1\x6a\x8f\xf2\x29\xab\xea\xa2\xc4\xa1\xd7\x54\xfb\x5f\x1a\x50\x11\x55\x2d\x21\x3c\x5e\xd0\xbf\xa2\x53\xe8\x2b\x1f\xfb\x36\x80\xac\xb2\x69\x42\x57\xc1\x16\x1b\xa8\xae\xdb\xc6\x12\xf1\xb6\x55\xfc\x6b\x0d\x27\x2e\x69\x6b\x38\xd5\xe7\xfd\x3d\x1d\x53\xe2\x8a\xae\xa3\x93\xfc\x6c\x77\x74\x6f\x53\x2f\x10\xea\xd7\xed\x84\x9e\x08\x78\xdd\xb0\xe6\xbc\x83\x41\x59\xab\x2a\x2b\x79\x13\x71\x05\x91\x7e\x01\x9c\x97\x10\xea\x2b\xd0\x11\x61\xc2\xd0\x94\x35\xbd\x22\x13\x77\xc2\xad\x61\x6e\x3f\x63\x58\xbe\x4d\x82\x87\x98\xe0\x2d\xca\xb4\x28\x81\x03\x8f\x5a\x3c\x79\x48\x3f\xda\xd9\x52\x2a\x01\xee\x1b\x30\x5e\xdf\x78\x48\xd2\x30\xec\x1d\xea\xa0\xc8\x46\x7a\x3d\xfd\xbb\xcf\x6e\x53\xce\xe5\x99\x09\x82\xc5\xd3\xb2\x3e\x19\x8f\xba\xe6\x07\x73\x3b\x4d\xc3\x63\xa3\x51\x24\x03\xa3\xa2\xab\x16\xc8\xee\x74\xd5\x22\x15\xf2\x4a\x96\xef\xaa\x79\xdb\x6e\xc1\xb6\x9c\x37\x42\xfb\x9c\x13\xee\x88\x66\x60\x05\x32\xe8\xbc\x09\x91\xc2\xb8\x0e\xad\x30\x06\xa1\xad\xc2\xa1\x9b\x28\x8b\xa2\x86\xf7\xfc\xb0\xe5\x3c\x9a\x13\x61\xf9\xd5\xeb\x69\x93\x69\x7d\xa4\xcb\x57\x4d\xa5\xaa\x82\x09\x43\xfc\x83\x1a\x5b\xbc\x16\xde\xc8\xfd\xbd\x28\xc4\x3f\x76\xa3\xc8\x13\xae\x21\x0d\x1a\x7f\x2d\x99\xa3\xb0\xc2\x6b\x05\x9b\x7e\x62\xda\x7b\x18\xdd\x7d\xc0\xbe\x98\x2f\x88\xd4\x29\x36\x8e\x03\xd5\x4d\x91\xef\x90\xae\xda\x36\x1c\x6b\x2e\x64\x82\x66\x48\x7c\x97\xb5\xc7\xb1\xd5\xde\xb6\xfa\x71\xa6\x87\xb3\x6d\x2a\x6e\x02\x23\xfa\x31\x92\xb3\x77\x4b\x74\xe6\xf8\x96\x4f\x7c\xce\xca\x4a\x74\xb3\xe0\xdd\x43\x2b\x92\x0e\x40\x0f\x65\x46\xaf\x3f\xbc\x13\x71\x37\xa2\x95\x88\x44\x6c\x31\xe4\xf3\xfa\x4a\xd2\xd0\x27\x7e\xa0\xc2\x15\x43\xf2\xb0\x13\x0b\x21\x71\x5b\x5f\x17\xc6\x4b\xde\x58\x13\x07\x58\x5f\x11\xff\xdc\x5c\x8f\x78\xb1\x77\x85\x45\x91\x14\xc0\x15\x75\xa8\x33\x90\x0b\x9e\x2b\x5b\x3d\xf3\x4b\x4f\xb6\xd2\x5d\xd0\x0f\x69\x3d\xf7\x1d\x8d\xad\xc3\xdf\xf1\xe0\x4d\x48\x0e\x1f\x06\x75\x59\x5e\x33\x08\xee\xc8\x30\xb2\x06\xa9\x86\xd0\x5d\x01\x5a\xdf\xf7\x4b\x56\x2c\x58\xee\xaf\x74\xdc\x96\x81\x5e\x4a\x4d\x40\x81\x50\x4f\x76\xd5\x56\x6c\xa2\x02\xf2\x7a\x4e\xb5\x1c\xf9\xb7\x4b\xc5\x11\xd4\xa4\x94\x9a\x23\x11\x41\x79\x9e\xfe\x0a\x4d\x45\x23\x7e\xd0\x40\x11\x71\x7f\x7d\x79\x48\x14\x52\x95\x72\xa4\x0d\x15\x45\xd1\xef\x82\x95\x59\x93\x00\x7e\x3e\x6e\x68\xcb\x03\x6f\x6f\x4a\xdb\xb2\xd4\x9c\x88\xf2\xeb\x1e\x00\x9b\xf9\xf2\x79\x69\xc5\xbb\x3c\xa0\xfd\xa4\xf2\x46\xa2\xdd\xab\x7e\xea\x44\x7e\xb6\x79\xaf\xd4\xe1\x35\xe8\x1a\x89\x81\xdd\xb4\xad\xab\x06\x0a\x5d\xe6\xac\x80\x66\x57\x57\x85\xc2\x6a\x0a\xfd\x95\x5c\xc7\x19\xd1\x24\xe3\xc5\x3c\x1c\x4a\x2f\xd8\x8d\xa2\x83\x86\x8a\xbb\xef\xef\x1d\x15\xa9\xdc\x5e\x6f\x77\xf7\x9a\xf8\x34\x52\x19\xea\xde\x69\x96\xee\xf5\x0c\x70\xab\x97\x54\xd9\x0b\xb5\x8b\x55\x04\x7d\x50\x8d\xe3\x6c\x98\xe2\xf3\xea\xca\x58\x7b\x7d\x2d\xa6\x53\xba\xd3\x3e\x80\x8d\xe0\xff\xbe\x74\xd2\x32\x0e\x68\xad\x92\x65\xe8\xf5\xe0\x03\xb9\x50\x6d\xae\xea\x40\x49\xb8\xcf\xb8\x12\x1b\x6e\x8d\x4b\xaf\x40\x5e\x69\xa5\xde\x67\x92\xd8\xdb\x34\x72\x68\x6f\xc9\x9a\xfb\x45\xee\x7b\x53\xb4\x86\x22\x7e\x02\x86\x44\x4a\xf8\xb0\xea\x66\xb3\xee\xfa\x3a\xa8\x08\x3d\x93\x55\x45\xea\x96\x20\x2a\x93\x75\x80\x73\x82\x68\x25\xbe\x5c\xee\xf3\x5a\x49\xeb\x14\x62\x75\xdb\x68\xf7\x00\x42\x0d\xad\x97\x0a\x5e\x44\x84\x33\x19\x61\x66\x9c\xce\xc0\xb0\x9a\x33\x33\x90\xe2\xf5\x7a\x3e\x80\x45\x91\x14\x7f\x20\xd7\xc3\x13\xf2\x25\x9f\x38\xaf\xd7\xdb\x4d\xab\xf7\xf1\x7b\x51\x47\x60\x28\x2e\xa2\xfd\x40\x5d\x0b\x47\x34\xd2\xa0\x40\x26\x48\x25\x45\xb5\xa0\x72\xb1\xc5\xb1\x75\xdd\xd6\x45\x51\x64\x2c\xce\x3d\xb1\x0b\xdf\x73\x9e\x03\xcb\xde\xdf\xcb\x70\x25\x82\x73\x25\xc6\x0f\x47\xaa\x61\xb0\x96\x00\x29\x35\xb6\xeb\x79\xc6\x22\xd6\xb8\x2a\x10\x89\xab\x2e\x63\xe3\xba\x2b\xc6\xd2\xd9\x60\x63\x06\xc1\x56\xfe\xeb\xe4\x0f\x23\xf7\x7b\x29\xc7\x69\xa5\x92\x77\x6e\xf3\xd3\xf6\x73\x6e\xb9\x35\xb7\x7d\x56\xab\x6f\x64\xac\x2f\xe2\xd2\x72\x39\xad\x0b\x14\xcb\x9a\x7a\xb2\xe6\x4b\x2b\x9d\x9a\x5e\xb4\x61\x97\x56\x69\x91\xef\x57\xcb\x05\x47\xf7\x57\xf4\x3f\x6d\x79\x48\x4e\x67\x42\xb1\x77\x32\xc9\x8a\x38\x81\x40\x75\xfc\xa6\x50\xde\xc9\xf1\xa9\x59\x05\x1d\x1c\x73\x32\xe5\x70\x9d\x28\xf3\x03\xed\x08\x13\xc4\xb2\x9c\x8d\x79\xc7\xaa\x2a\xbe\x64\xfe\x55\x75\xa9\x49\x30\xbd\x9b\x1a\xae\x0f\xfb\x28\xc0\xe5\xc0\x8d\xae\xec\x92\xd3\x85\xb8\x66\xa7\xc2\x81\x22\x70\x0c\x53\x7d\x3a\x00\x6d\xac\x2e\x23\x0f\x82\x54\x40\x70\x0a\x00\xc4\x28\x16\xf1\xce\x22\x5b\x5e\xa6\xf9\x60\x67\x5e\xd7\x8b\x6a\xf0\xec\xd9\x65\x5a\xcf\x97\x17\xfd\x69\x71\xf5\x0c\x3a\xf0\x53\x85\x7f\xf7\x85\x4f\x41\x41\xd4\x57\x48\x5a\x07\xad\xbe\xa8\xa6\xf7\x38\xa2\x42\x62\xbd\x09\xac\x69\xb0\x87\x70\x51\x91\x4c\xb5\xb3\x67\x5e\x1b\xd0\x93\x6e\x1e\xf1\x0a\xbd\xb1\x98\x17\x90\xd5\xce\x97\xf7\x55\x51\x2e\xe6\x5e\x38\x1a\xd3\x5b\x46\xcb\x51\xf6\xb7\x94\xf6\x36\xe1\xe5\x32\x4d\xa2\x83\x30\x49\xab\xf8\x22\x63\xa7\xe0\xc6\xd5\x14\x1d\x7a\x8a\xad\xf0\x76\xd5\x8d\xf0\x9d\x6c\xef\xe4\xfd\xf7\x6a\xce\x69\x62\xff\xf5\x9b\xb3\xa3\xaf\xde\x9e\x4c\x4e\x8f\xde\xff\xf5\x64\x72\xf4\xf1\x8d\x16\x19\x1b\x15\xd2\x0a\xba\xcb\x99\xb1\xa1\x1a\x3f\x08\xc5\x1e\xab\x10\xe5\x5d\xda\x81\x5e\x4f\x60\x29\xb5\x45\x39\xe5\xd6\x8d\xf6\x7a\xe2\xf1\x00\x80\xbd\x34\x57\x70\xaa\x20\xe4\xd8\xa5\x20\x51\xbb\x9a\x92\xf1\xc6\xd0\xe4\x71\x19\x67\x5f\x97\xf1\x25\xc4\x35\xcd\x19\x4b\xaa\xb3\xf9\x5d\xb4\x01\x8d\x96\x81\x6d\x55\x9f\x64\x91\x52\x71\x35\x23\x76\x80\xff\xbd\x60\x88\x40\xfd\x34\xcf\x59\xf9\xcd\xf9\xbb\xb7\x91\xf7\x22\x49\xaf\x5f\xbe\x78\xc6\xff\xf7\x64\x36\xbc\x85\x80\x80\xc2\x80\xac\xa6\x65\xba\xa8\x5f\xbe\x78\x26\x7e\x78\xda\x51\x4c\x77\x31\xce\x5a\xf2\x01\xe7\xcb\xb0\xfa\x61\x9e\xd6\xac\x5a\xc4\x53\x16\xe9\x41\xfb\x32\xfd\x38\x67\x55\x3d\xd8\x11\x38\xe2\x31\xfc\x94\x8f\xec\xb3\xdb\x7d\xb8\x30\xcd\x8b\x2c\x61\xe5\x53\x8d\x3d\xf0\xaa\x76\x17\x80\x17\x78\x5f\x24\xac\x1a\x1d\x8c\xfb\x79\x91\x08\xa3\x99\x48\x34\xe0\xf5\x7a\x6d\xc8\xe7\x16\xe4\x0e\x56\xdd\x08\x23\x5b\xb5\xae\xf5\xce\x10\xb7\x4f\x70\xa3\x9e\xcd\xa4\xf0\xd8\xf0\x5f\x20\x0b\x05\x2b\x0e\x82\x2e\x2d\x61\x29\xc3\x27\x27\x87\xdf\x36\xfc\x27\x19\x03\x5e\x2b\x72\x81\x77\x7f\xe5\xfb\x52\x6f\xeb\x7d\x6f\x8f\xef\xd4\xbd\xbd\x21\x14\xa9\xea\xb8\xac\x23\x84\xda\xf3\xf6\xe1\xd3\xc3\x2c\x96\x27\x3a\x83\xe5\x89\x47\x62\xe6\xce\x9a\xe1\xb7\xc4\x57\x9a\x42\x51\xa7\xa1\x02\x06\x5f\xe8\x5f\x17\x25\xdc\xb1\xbf\x5e\xe6\x53\xf9\x80\xcb\x7f\x16\xcb\x1a\xb1\x85\x2f\xa9\x98\x8d\x1f\xfc\x32\x0f\xbf\x84\x88\x00\x7e\x03\x72\xe7\xf1\x25\x7c\x70\x60\xfc\x39\x34\x2a\x8a\x3a\x9e\x9d\x65\x61\x3f\x90\x4e\x3c\xc5\x58\x09\x45\x68\xa8\xce\x0f\x9a\x21\x6d\xa5\x5d\x99\x5c\xfa\x3b\x69\x12\x3d\x15\x4a\xd4\x50\x62\xcf\x7b\xba\xcd\x52\xf3\x9a\xa1\xc6\x7c\xbb\xea\x59\x9e\x6c\x5f\x39\xbf\x7a\x52\x7a\x16\xac\xe4\x1c\xe8\xc6\x60\xa6\x70\xf8\xcf\x8b\x02\x17\x1f\x40\xd9\x3b\x0d\x6a\x10\x4b\x17\x15\xaa\x34\x84\xb6\x6c\xf9\xea\xee\x4d\x82\x75\xe2\x48\x20\x3c\x4c\xe1\x06\x70\x96\x27\xd2\xa8\x5b\xa0\x02\x68\xf4\x2b\x56\x9f\xf1\x9a\x50\x85\xcd\xc7\xa6\x83\xa1\xca\x3c\xc9\x13\x50\x3c\xf3\xa1\x11\x69\x83\x63\x14\xc5\x7c\x57\x49\x51\xa9\x28\x2a\x9d\x23\x73\x80\x66\x28\x97\xa9\xb9\x3d\x9d\x43\x25\x87\x55\x88\x0d\x25\x84\x68\x0a\xc3\x70\x01\x45\xcf\x6b\x69\x62\x3f\x13\x64\x1d\xcb\x76\x52\x7d\x21\x7c\x42\x20\x94\x08\x71\xe2\xe2\xcb\xe2\xe0\xd2\x59\xee\xa2\xc8\x22\x99\x2e\xe4\xe0\x56\xda\x81\x58\x33\xa4\x1b\x4f\xd7\xc6\xa9\xd8\x16\x2b\xc3\x1c\x74\x2c\x25\x12\xa7\x45\x96\xc5\x8b\x8a\xf9\x32\x96\x92\x18\x81\x4d\xbd\x47\x99\xa7\xdc\xd2\x3e\x88\xb1\x12\x53\x77\x87\x57\xc3\x31\x97\x54\xc2\x45\x4d\x37\x2e\xe8\xf5\x0b\x54\xee\x3c\xbb\x8b\x74\xdd\x75\x2e\xc8\x2f\x3c\xdb\x84\x06\x3e\xaa\xa7\x48\xe3\xd7\xf6\x54\x6c\x5c\x57\x5f\xed\x2c\xd5\x57\xb2\xd9\xbf\x58\x5f\x45\xb8\xcb\xb8\xdc\xb9\x29\xe3\xc5\xbb\x78\x11\xf1\x43\x8e\x4d\xeb\xc1\xe8\x30\xf4\x5e\xe0\xef\x9d\xab\x65\x56\xa7\x8b\x8c\x45\x4f\xe5\xaf\xa7\x2f\xbd\xd0\x7b\xf1\x0c\xf3\x5f\xf2\xeb\x52\xca\xb2\xa4\x62\xa2\x9c\xfc\x42\x28\xfd\x35\x0e\xc1\x4b\x3a\x02\xc1\x4f\x84\x10\x3f\xc7\x61\x7d\x51\x24\x77\x83\xd1\x73\x95\xfd\x02\x52\x04\x14\xfc\xa4\xd0\xe5\x60\xf4\x3b\x1b\xf4\x45\x5d\x0a\xf0\xf2\xa5\xa3\xcc\xb4\xc8\x2e\xc1\x4f\x46\xbb\x11\x05\x2d\x61\xb0\x1e\xf5\x45\x6a\xb9\x8a\x17\xd8\x89\xab\x58\x40\xc1\x8f\x71\x28\x83\xbd\x0d\x46\x07\xa1\xe7\x85\x9e\x37\x46\x97\x8c\xb3\x54\x6c\x26\xbe\x06\x4c\x41\x06\x67\x3c\xd3\x04\x38\x76\xf1\xc9\x97\x8c\x92\x7e\xf8\x5e\x9a\xc0\x0b\x64\xaa\xad\x25\x05\x9c\xb2\xcd\x93\xe5\x34\x67\x24\x6d\xf4\xd2\xe4\x36\xe4\xfb\x39\x9c\x15\xcb\x3c\xe9\xb6\xd4\xe3\x30\x8e\x6a\xd0\x62\x0f\xca\x46\x40\x16\xf8\x7f\xe7\x28\xc4\x38\xec\xf5\x8c\x5e\x01\x35\xe2\x3d\x01\x49\x2a\x2f\xa2\xef\x94\xfc\xab\x11\xde\x29\x2b\x56\xbf\x51\x8c\x53\x6b\x24\xf4\x3e\xbb\x8a\xeb\xe9\x9c\x81\x2d\x47\x3a\xf3\x2d\x26\x36\x58\x71\x40\xe0\xbb\x94\x1b\xff\x67\xfe\x8f\xd5\x5e\xe0\xd3\x23\xdd\x1f\xfd\xfd\xe9\x78\x2f\x78\x1a\x3c\xbb\xd4\x77\x2b\xa8\x38\x84\x6a\xaa\xb0\x8e\x2f\x61\xf4\x45\x6b\xe8\xd5\x64\x94\x26\x22\x7f\xac\x75\xfd\xe2\xcb\x86\x1f\x7d\x38\x44\x16\xeb\xc7\x11\x14\x15\x08\x49\xf5\x81\x72\x59\x12\x99\x39\x1b\x2c\x26\xf9\x00\x01\xfe\x91\x39\xb8\x72\x7c\x44\x65\x30\x31\xa3\x83\x71\x00\xb3\x6b\x53\xa3\x73\x76\x8b\x3b\xdd\x80\x3e\x1c\x07\x43\xac\xbb\x8f\xef\xd4\x1c\x44\xd0\x05\x71\x4a\xc3\x14\x22\x4c\x20\xe7\x0b\xee\x16\x1c\xd4\x60\x6a\x74\x0d\x64\xca\xe2\xb2\x8c\x04\x21\x19\x91\x26\x84\x62\x6e\xbf\x2e\xde\x16\x37\xac\x3c\x8e\x2b\xe6\x07\xe3\xfb\x7b\x01\xda\x97\x9b\x46\x46\xfe\x01\x2f\xdb\xe5\xe8\x60\x8c\x2c\x28\x7c\x1c\x8e\x39\x0b\x0a\x3f\x9f\xc3\x82\x90\x77\x35\xb1\x12\xbc\x5e\x35\xbf\x1b\x7a\x7b\xfc\xa3\xa1\xcf\x42\xeb\x6f\x33\x74\x31\xaa\x31\x46\x06\x93\xd7\xb4\x07\x47\x92\x69\xf4\x12\x01\x86\x68\xe5\x22\x1b\x91\xcb\x42\xdf\xc3\x1a\x03\x45\x98\xd6\xb9\xb4\xb7\x90\xe0\x42\xff\x40\x67\x58\xdb\x6b\xd7\xca\x11\x2a\x5f\xba\x1e\x92\x6f\xb6\xec\xae\xf2\x77\xbd\x9e\x95\x01\xd7\xa5\xfe\x74\x1e\x97\x47\xb5\x7f\x00\x8e\xb7\xff\xef\xff\xe7\xd1\x36\xc8\xfd\xca\x59\x16\x35\x85\x0f\xb5\xad\x8d\xa4\x4d\x22\x58\x54\x9c\xf1\x25\x10\x51\x85\x85\xb2\x0e\x56\xa2\xe7\xfc\xa3\xdf\x5e\x29\x70\x75\x0d\x56\x38\xfb\x36\x90\x6c\x08\xd2\xe5\x12\xbd\x45\x95\xc8\xf8\xd2\x6e\x8a\xaf\x1a\xa0\xad\x76\x35\xbb\x51\xc4\xf2\x84\x24\x04\x2b\xf3\xdb\xdc\x19\xaa\x32\x0a\xa1\x07\x3d\x68\xb6\xe4\x66\xb1\x4f\x72\x5c\xfc\x2d\xb8\x04\x11\x85\x33\x4f\xb6\x60\x9e\xb4\xca\x0b\x8c\xba\x89\x2e\x3a\xbf\xe7\x3b\x36\x67\xb7\xf5\x59\x7a\x91\xa5\xf9\x65\x98\xc5\x55\x3d\xa4\x03\x48\xc6\x0d\x58\x41\x31\x01\xa4\x8c\x58\xb7\xc8\xb3\x92\x74\x71\x44\x10\x40\x5e\x39\xa4\x46\x30\xda\x7c\xdf\xf2\x24\xf4\x31\xa3\xc6\x85\xa9\xd3\x45\x17\x45\xce\xe4\xa2\x64\xf1\xa7\xa6\x81\x4c\x32\xee\x54\x7d\x18\x79\x60\x55\x31\x96\x80\x26\x69\x6d\x90\x40\x29\x59\x6b\x3d\x20\x19\x33\xaf\x47\xad\xf5\x49\x1b\xc6\xd9\x69\xb6\x1e\x8b\xb5\x34\x57\x8f\x36\xc5\x7a\xdd\xcd\xe3\xe7\x5d\x48\xf0\x0b\x9e\xe6\x3d\x4e\x25\x37\x8f\xc3\xd0\xda\x1a\x14\x82\xd7\xd8\x75\xf1\xa1\xfb\x4f\xae\x4f\x73\xa2\xc8\x14\xb5\xef\x2a\x50\xe4\x31\x2b\x93\xa0\x4a\xaf\x3a\xb8\x9a\x1c\x13\xb1\xf6\xf2\xb3\xfd\xe6\xa4\x33\x0f\xdb\x93\xe2\xb4\xc5\xee\xb5\xa0\x39\xa2\xc3\xb5\x43\x86\xab\xfa\xcb\x2c\x52\x9a\xe2\x1c\xa4\x0d\x37\xa7\xed\x2f\x46\xd6\x48\xd8\xeb\xef\xb3\xc6\xa2\x35\x0d\x9f\x41\xdf\x3e\x6b\xb8\x1a\x87\x18\x0f\xf6\x9c\x3d\x76\xa8\x4f\x36\x67\xd3\x4f\xe2\x4d\x01\x15\x70\x01\xb4\xd3\x99\x8a\xe2\x50\x1b\x79\x2e\x61\xfc\x0e\x10\x51\xe0\x48\x98\x70\xc0\xc9\x36\x43\x17\x52\x44\xf3\x65\x1b\xdc\x3a\x1a\x44\xc1\x48\x57\x0b\xbc\x70\xa4\xc9\x9d\x13\x4a\x6d\xfd\xc8\x90\x41\x3a\x61\x25\xb9\x89\x28\xdd\x71\x43\x82\x64\x42\x6d\x70\x27\x8c\x58\xd9\x11\x59\xe1\x4e\x38\x29\xcd\x8c\xa8\x58\xd3\x09\x89\x62\xc9\x88\xc8\x55\x5d\x50\x69\x25\x86\xd5\x26\xff\x1b\xe4\x83\xf6\x66\xda\x5a\xfa\x82\x21\x63\xb0\xf6\xfb\xfb\x5d\x28\xe7\x9e\x32\x3a\xe9\x91\xd3\x0d\xaa\x5a\x11\xc6\x53\xa2\x88\xee\x1f\xe7\x79\x51\xef\x2c\x58\x39\x2b\xca\xab\x9d\x42\x9a\xbb\x56\x3b\x45\xbe\x13\x6b\x21\x3c\xc6\xb7\x17\x01\xfe\xc1\xdf\x19\x84\xbd\xef\x7b\x41\xa3\x42\xad\x29\x60\xf2\xae\x56\xf2\x15\xb2\x5f\xb2\x69\x71\x99\xa7\xff\x14\x0f\xca\xae\xe8\xc2\xeb\x62\xd3\x82\xc3\xaa\x38\xab\xa2\x91\xf7\xcc\x0b\xbd\xbe\x17\x7a\xff\xe6\x85\xde\x9e\x17\x7a\xaf\xbc\xd0\xbb\xf7\x42\xcf\xf7\x42\x2f\xf0\x42\x6f\xe4\x85\xde\xd8\x0b\xbd\x95\x17\x7a\x8d\x17\x7a\x3f\xfe\x28\x03\x69\x56\xd3\x78\xc1\x4e\xd9\x25\xbb\x85\xb7\x83\x53\x76\x79\x72\xbb\xf0\x3d\xff\xc7\x1f\xbd\x3d\xd9\x40\xff\xa7\x22\xcd\x7d\xef\xfe\xc7\x1f\xbd\x60\x0f\xea\xbb\xf4\x88\xc2\xa0\xd4\xd3\xa9\x59\xa5\xb5\x4c\x85\x8a\x89\x9e\x10\x19\xba\x4b\x6c\x3b\x0e\xcb\x19\xe9\x11\xea\x71\x62\x68\xa2\xb1\xa7\x5f\x6e\xcf\xea\xb8\x4e\xa7\x67\x0c\x65\x45\xa8\x0f\x21\x36\x34\x7e\x44\xf8\xa7\x31\x00\x69\xc8\x16\x06\xda\xb4\x34\x48\x85\xe9\x73\x48\x54\x43\xaa\x0c\xa7\x73\xcb\x33\x03\xa6\xb7\x7c\x32\x4c\xe7\x32\x47\xdc\x4e\xd2\x40\x7b\x0e\x5a\x5d\xc7\x19\x18\x51\x94\xd5\x60\x3a\x6f\x30\x1a\xfc\x25\xbb\xed\xb2\x81\x13\x35\x49\x41\x01\x99\x12\x3e\x51\x4f\x0e\xbd\xa0\x09\xe5\xb3\xed\xfa\x3a\x9a\x46\xcf\xca\xeb\xbb\x3c\xbe\xd2\x03\x98\x6b\x8f\x65\xa0\xf6\xc1\xff\x6b\x4c\x98\x6d\xc7\x4e\x77\x34\xcd\x49\x57\xf9\x22\xe4\xf4\x27\xae\xc1\x11\x2c\x6a\x15\x3a\xbb\xed\xf9\xa3\xbf\x3f\x1b\xef\x05\x9e\xab\x5f\x8b\xb8\x8c\xaf\xb4\xdd\x26\x7e\x8e\x14\xe2\x63\xda\xc7\xb3\x3a\x2e\xd7\x76\x90\x00\x7c\x6e\xef\xb6\xef\x5c\xff\x0b\xf4\xec\x64\x51\xa5\x59\x91\xcb\xce\x05\xab\xc6\x4c\x59\xdf\x9b\x60\xd5\x8d\x9e\x13\x35\x92\x4b\x90\x00\xbd\x4a\x1f\x68\x15\xe8\x33\x55\x10\x03\x02\x6d\xe8\x20\xd5\xbc\x9b\x3f\xf3\x82\x15\x24\x47\x98\x59\x2d\x2f\xaa\xba\xe4\xb7\x6f\x14\xac\x01\xe2\x95\xcc\x44\x3d\xb8\x67\x5e\x10\x96\xac\x5a\x66\xb5\xc3\x2d\x8a\x2c\xd2\x76\x89\xa2\xeb\x53\x40\xa3\x74\x8c\xe2\x27\x25\xee\x92\x59\x7d\xf8\xf2\x9f\xfd\x7d\xe0\x8f\xfe\xfe\x23\x5f\x78\x4f\x9e\x81\xf1\x0d\x34\x8b\x32\x35\x4e\xfb\xac\x1d\x03\xa5\x46\x87\xe3\x20\x18\x42\xe7\x11\x50\xa5\x0e\x61\x2c\xfa\x09\x16\xaa\xf6\xf6\x94\x22\x82\xbb\xf1\x1f\xff\x6d\x7d\xeb\x74\x2d\x6f\xd7\x34\x3f\x40\x69\xbb\x72\x44\x50\x3c\xd1\x6a\xc0\x5c\x40\xca\x57\x5d\x1b\x0d\x4a\x76\x05\x30\x69\xb2\xc6\xce\xaa\xb7\x32\xac\xc0\xa4\xdb\xcc\xe7\x0b\xe3\x6c\xf1\xff\xb3\xf7\x77\x5b\x6e\xdc\xc8\xa2\x20\x7c\xef\xa7\x60\xe5\x51\x53\x99\x26\x8a\x45\x96\x24\xb7\x9b\x74\xaa\x8e\x5c\x92\xba\x75\x5a\x7f\x2d\xc9\xed\xed\x4d\xb1\xeb\x64\x31\xc1\x22\xac\x64\x26\x9d\x99\x54\xa9\x9a\xcc\xb5\xce\x9b\x7c\xdf\xed\x5c\xcd\xdc\xcd\xe5\xac\xb5\xf7\x8b\xcd\x02\x02\xff\x40\x92\x2c\x59\xee\xdd\x3d\x33\x5e\x5e\x25\x26\x7e\x03\x40\x20\x10\x11\x88\x08\xe0\x99\x64\xc1\xe0\x33\x16\x3f\x80\xbb\x63\x0c\x27\x3c\xc4\x3b\x99\x36\x60\x87\xaf\x21\xf6\x15\xd6\x9c\x19\x54\x8b\x92\xbd\x86\x9a\x56\x4b\x16\x0e\xa9\x0c\x2f\x16\x31\x65\xb2\x56\x68\x42\xc4\x73\xc7\x4f\x7e\x59\x27\x19\xd8\x00\x4a\xf0\xfb\x8a\x20\xc4\x71\xec\x49\x1d\x8b\x7a\xfc\xdf\x6e\xd7\x6a\x40\xa7\x29\x7a\x13\x7a\x3a\xb8\x1d\xb1\xfa\xca\x52\x95\xe9\xce\xd8\x23\x53\xad\x73\x22\xbd\x5f\x2a\xe5\x2c\x73\x85\x6b\x55\x4a\xb6\xc6\x0a\x34\x50\x4c\x2c\xba\xb6\x66\xf6\xe2\x00\x76\x80\xb7\x09\x0b\x2e\x21\xa0\x06\x8a\xc8\x34\x11\x35\x6e\xa9\xd0\x18\x7d\xc2\x16\xd5\x47\xb0\x6f\x3d\xc1\x7d\x08\x89\x3e\xd9\x8f\x8a\xab\xef\x68\xc3\x38\x75\x09\xc7\x8e\x45\xf7\x2d\xb8\x86\x9d\xfa\x62\x31\xf3\x0b\x66\x6a\xc3\x46\x5c\xf9\x16\x3c\x32\x8d\x6f\x78\xc0\xed\xa4\xa4\x92\x4b\x8a\x3f\xbd\xa2\x5f\xb4\xcc\xf1\x50\x4c\x3e\x4e\x61\x76\x66\x5c\x31\x27\x76\xaf\xbf\x27\x1d\x2f\x0e\xea\x2b\xde\xd5\x97\xda\xb4\x90\xab\x13\xfb\xaa\x28\xeb\xb7\x45\xb6\x66\x6c\xae\x78\xaf\xd7\x40\x98\xaa\x4f\xcb\x28\x1f\x84\x04\x5d\xc2\xfb\x3a\x7d\x8d\x1e\x1d\xc5\xf1\xa5\xfe\x2d\x9b\x30\x4a\x1d\x1b\x65\x1a\xbb\x11\xbb\x59\x4a\x73\xcc\x86\x69\x8a\x6c\xda\x4a\x3f\xb6\x6a\xea\xcd\x0b\x72\xad\xb5\x26\x92\x9c\xe6\x44\xc6\xb1\x5d\xb9\xb9\x6d\x8b\x76\xd9\x63\xbb\x64\xf3\x45\xc7\xcb\x8b\x0d\x1a\xcd\xaa\x52\xca\x1a\x14\x95\xf8\xf2\x22\xcf\xee\x73\x0f\xe1\x76\xe2\xa9\x39\xdd\xb1\x7d\xa4\x35\xa3\xed\x40\x78\xc6\x0d\xba\xe4\xa7\xe1\x6c\x11\xa9\xa7\x86\x64\x49\xc6\x26\x14\xe7\xec\x22\x24\xe6\xf2\x03\x5c\x8b\x6c\xb7\x7a\x8c\xdb\xba\x88\x36\x72\x5c\x4f\x29\xb3\xf3\x54\x3b\x35\xd8\xaf\xb1\x6c\xfc\xba\xf3\x54\x43\xf2\x37\x62\x16\xde\xc0\xb1\x15\xfe\xb2\xc6\xe5\xcd\x6b\xce\x98\x31\xca\xa3\xa5\xc4\xda\xef\xed\x76\xd3\x34\x76\x75\xad\x5b\x0e\x77\xb8\xa1\x8c\xcd\x0c\x8f\x98\x3c\xa3\x8b\xde\x2c\x19\x55\xfe\x4c\x96\xc7\xde\x0f\xb4\xb3\x68\x22\x92\x8f\x4f\x6a\x00\xf1\x77\xcd\xd4\xd8\xe6\x44\x3c\xb8\xca\xd7\x17\xdc\xbe\x8c\x11\xd2\x19\x06\xa3\xe4\xb2\x82\x85\xeb\x8b\x4f\x60\x18\x79\x22\xfb\x0d\xc1\x4a\x92\x55\xbd\x2e\x31\xf7\x5e\x80\xe5\x63\xb9\x91\x8c\xf0\x06\x25\xe2\x21\x27\xca\x74\x66\xb8\x2c\xb9\x63\xb2\x2d\x2c\x13\x50\x78\xf1\x8c\x67\xca\x42\x94\xd5\x63\x7c\x91\x48\xe9\x03\x77\x0a\x1c\x75\xbc\x69\x64\xe3\x3f\xc7\x03\xb4\x8c\x81\x87\xe2\x2d\xff\xfc\xdd\x72\xfc\x33\x6d\x99\xf3\xdf\x2c\x73\xf2\xf3\x74\x1a\x8b\xa1\x4e\xcc\x81\xf5\x7a\xd3\x06\x46\x05\xc4\x74\xc3\x3b\x1d\x89\xce\xf9\xbf\xbc\xfb\x11\xfc\x83\x48\xc5\xf9\xc9\xd1\xd1\x91\x0e\x40\x13\x99\xac\x93\xda\xa2\x49\x9a\x0a\xbe\xcb\x70\x8a\x15\x4c\xd8\x46\xb0\x94\x82\xe1\x0f\x9d\x63\x14\x58\x00\xc3\x67\xd6\x70\x72\x5c\xad\x29\x3b\xa0\x85\x7c\xd5\x73\xd9\xfe\x7b\x43\xb9\x73\xb9\x72\x86\x97\x23\x84\x4d\x29\x0a\xde\xb0\x64\x1c\xc6\x52\x84\xa1\x73\xdf\x8c\xad\x26\x74\x8e\x2e\x49\x53\xdd\x77\x74\x4d\x89\x90\xf1\x92\x9d\xeb\xee\x2b\x3b\xe4\x08\x1a\xfc\x2d\x00\x31\x24\xde\x70\x7a\x37\x1a\x20\x41\x47\x47\x03\x76\x3d\x5a\x8d\x06\xc2\x25\xb6\xa4\x24\x0d\x25\x59\xf6\x56\xc8\x1f\x13\x40\x1e\xc1\xe6\x2d\x57\xf5\x0d\x73\xd5\xb1\x30\x12\xa0\xf3\xe2\xa3\x26\xe4\x68\xb8\xc8\xdf\xb2\x94\x72\x8e\x26\x3d\xc1\x4b\x07\xba\x08\x35\xd6\x21\xd2\x7e\x4b\x6a\xc9\xbf\x23\x0b\x95\x6d\x91\x48\x62\xb3\x57\x24\xfa\x19\xbc\xcf\xe0\x53\xb7\x22\xb5\x64\x81\xcd\xac\xc8\x6b\x92\xaf\x71\x23\x26\x84\x99\x69\xed\x41\xa4\x8d\x29\xfc\x33\xa4\xba\xc2\x9f\x7a\x54\x12\x34\xab\xee\xc3\x6c\x51\x51\x20\x38\xfb\x0c\x41\x6e\x14\x9b\x5f\x6e\x3b\x98\x51\xb1\xe9\xd8\xa4\x8e\xd8\xdf\x66\x2c\xa9\x08\xdb\xa8\xfc\x2b\x82\xf0\x0a\x6c\x5c\xa6\x3f\xf7\xed\x86\xd4\x78\x7c\xa6\x4b\x49\x82\xaa\xb1\x15\x96\xce\xd2\xa8\x41\x3b\xc1\x9d\x20\x32\x0b\x02\x2a\xb3\xbf\xc2\x21\x28\xe6\x3b\xa2\xdb\xe5\x3f\xfa\x49\xa5\x69\x36\xf8\x3b\xd4\xb1\x20\x07\xd5\x48\xc3\x1f\x89\xf5\x82\x3a\x55\x4d\xa3\xb6\xc2\xd3\xa2\xb4\x9f\xb9\x56\xf8\x6c\x77\xc0\xe5\x72\x6e\xe1\x72\xc4\x0a\x79\x54\xa5\xef\x16\xb8\xc4\xa0\x02\x85\x86\xd8\x0b\xe6\x69\x47\x3c\xd3\xe8\xd9\x55\xfd\x56\x6a\xaf\xd3\x59\xb3\xe8\x84\x4c\x6d\xc2\x89\x16\x49\xc5\x68\x8d\xff\xe9\x6e\x78\x59\x5c\x1f\x91\x4f\xf3\x91\xf3\x58\xf2\xf2\x78\x6c\x99\x0c\xfe\x24\x51\x10\xfc\xaa\xc9\xf0\x29\x42\xf8\xe7\xaf\xd4\x7d\xdc\x76\xa3\xc3\x78\x60\xaf\x8a\xdf\x62\xfb\x89\x59\x12\x1a\xab\x46\x3e\xb5\xa4\x14\x3e\x47\x5c\xe1\x23\xe6\xe5\x24\xe8\xc1\x4f\xfe\x0a\x79\xb2\xac\xd8\x8b\xfd\xc9\xd2\x60\xa9\x44\x85\x9e\x10\x4f\xa1\x27\xe6\xcb\x0c\xfa\xe1\xd0\xad\x84\x4c\x54\x90\x78\xc0\x3b\x44\x9e\x56\x6c\xad\x9b\xdc\x02\xc2\x21\x93\x94\x92\x62\x7f\xc0\x37\x06\xdf\xfb\x01\xb3\xb7\x4b\x04\x52\xc8\xf1\xf4\x17\x49\xf5\x4a\x3d\x41\xc1\xde\xf3\x8c\x36\xb4\x36\x20\x2c\xfd\x6e\x1a\xf6\xcd\x04\x25\x8b\xc7\xc1\x79\xcc\xf2\xd4\x82\xe2\x1c\x96\xf4\x03\xbe\x61\x59\x42\xf9\x00\x3e\x76\x9c\x3f\x11\x6f\x4f\x70\xc7\x3b\x70\xf9\x94\xcb\x28\x06\x43\xeb\x8f\x4d\x9f\xd9\x35\x8e\xa2\x8d\x7e\x7a\x64\x31\x4b\x55\x47\x47\xa6\x8e\x8e\x84\xd6\x7a\xcd\x1b\xea\x05\x93\x69\xd0\x0b\xe2\xa0\x87\xf3\x59\x91\xe2\x1f\xde\x3c\x3b\x2f\x96\xab\x22\xa7\x04\x9c\xb5\x31\xf9\x79\x1a\x8d\xd9\x24\xc2\xd0\x65\x75\x61\xb4\x49\xf3\x7a\xf1\xae\x26\x8c\xfa\x2b\xa8\xca\xa6\x9a\x94\xda\x43\xad\x03\x4d\x33\xc9\x7f\x9c\x05\x3d\x28\x04\xb7\x12\xdd\x20\x6a\xe0\x31\x08\xef\xf2\xff\xa2\x12\xf5\xa5\xd7\x92\x85\x2a\xb2\x1b\x44\x3a\xb3\xac\xb3\x91\x60\x5a\xa5\x83\xa6\xf6\x22\x9b\x7d\x96\x35\x21\x53\xd1\x56\x1c\x44\x88\xae\x6a\x8a\x9d\xc1\xd3\xa2\xcc\x34\xee\x03\xbe\x79\x0e\xc3\xfc\x80\x6f\xa4\xf9\x1d\xac\x1f\x9c\xbf\xe0\x04\x39\xe6\xb3\xa2\x26\x65\xc8\xbc\xa1\xd7\x38\x0e\x28\xdf\x12\xc0\x8c\x93\x79\x28\x5b\x7c\x78\xda\xed\xd2\x46\xc1\xfc\x49\x26\x1f\x9f\xc2\x95\xcb\x34\x88\x36\xa2\x23\xc6\xf9\x70\x04\x14\x11\xa2\x91\x5e\x83\xd1\x3b\x6d\x5e\x18\x42\x46\x1b\x3b\x25\x9e\x4c\x9b\x46\x20\x2e\x29\x27\xc3\xe9\x59\xdb\xe0\x87\xd3\x68\x14\x04\x8d\xc2\x56\xb7\x35\xc0\x0a\xfd\x51\x0d\xa7\x3f\x4f\xeb\xc2\x67\x94\x93\x07\xad\x4a\x83\xa4\xfc\xeb\x8d\x0d\xc0\x65\x5f\x93\xe1\x9c\x32\x01\x8a\x85\xdc\x43\x19\xe2\x18\x93\x94\xb5\x85\x25\x88\x54\x6f\xb3\xa4\x5a\x3c\x2e\x8b\xd5\x0a\xa7\x9c\x75\x62\x8f\xa9\x48\x18\xa1\xaf\xb1\x6a\x03\xc4\x29\xa1\xb7\x09\xce\x20\xd8\x90\xca\xe7\x2a\x23\x0a\x9c\x86\xaa\xdc\x85\x1c\xf4\xea\xaa\x70\x6f\xc8\x20\x15\x11\x56\xc7\xfc\x21\x17\x55\x74\xa0\x41\xcf\xa1\xe0\xe0\x43\x3c\x49\x6b\xf7\x18\x9b\x06\x36\x65\xbd\x70\x49\x3f\xeb\x86\x12\x7e\xfa\xa3\xe1\x73\x15\x6b\x90\x8c\x79\xd5\xe7\x38\x7f\x38\xa4\xa7\x81\x6a\x85\x27\x1f\x0f\xe5\xcd\x81\x07\x68\x55\x68\x6c\xcd\x31\xbb\x83\x81\x70\x81\x94\xae\x19\x7d\x8a\x83\x92\x2f\xaa\x57\xf1\xa1\x83\x42\x22\xc0\x71\x43\xd1\x21\x4c\xb5\xe0\xc4\x16\x6a\x31\x71\x4a\xec\xd4\x8c\x08\x05\x2c\xa3\x07\xea\xd8\x91\x8d\x68\xca\x51\xe0\x6a\x1a\x0e\xa9\xa5\x81\x13\xbf\xa4\xd9\x7e\x8d\x63\x99\x38\x19\x4c\xa5\xa6\xb7\xdb\x35\x25\x79\xee\xb6\xad\x4f\x98\x28\xc2\xb8\xd0\x7e\x55\xac\xcb\x99\x30\x8e\x3c\x7e\xc0\x96\x20\xec\xf7\xa2\x3b\xfa\x32\xf4\x28\xcb\x2b\x2c\xa4\xf7\xab\x16\x1a\xd3\x07\x7b\x22\x5e\x38\x0f\xa6\xb1\x25\x0f\x2a\x8d\xc5\x3b\x16\x91\x06\xa2\x41\x80\x2d\x70\x89\x52\x9c\xe1\x2b\x78\xa9\x1c\x50\x93\x83\x03\x42\x26\x2f\xc5\x8d\x96\x4b\x48\x14\x55\x62\xf1\xa3\x81\x86\x75\xc1\xb3\x76\x1e\x6d\x41\xe6\x65\xb0\x6c\xc4\x68\x92\xbd\x8e\xc7\x7f\x77\xbb\xe2\x57\xff\x9a\x64\xd9\xa3\x34\x7d\xc3\xb9\x40\x08\x57\xe4\xcd\x0d\x75\xb0\xfb\xbc\x67\xf1\xf0\x8a\x91\x97\xa4\xdc\xd2\x41\x0b\xd6\x03\xda\x76\x09\xa7\xf6\x61\x9c\x90\x0e\x1b\xfa\x53\xb1\x86\x40\x95\x8b\xe4\x23\xee\x24\xb9\x0a\x5f\xc9\x6d\x14\xb4\x2b\xbe\xaa\xc2\x69\xa7\x2e\x3a\xff\xb3\x2e\xfe\x67\xe0\xc2\xa4\xa2\xa0\xea\x80\xc9\xc9\x43\xc6\x74\x99\xf1\x38\x35\xbd\xdb\x0b\x68\xd0\x7c\xc7\x06\x04\x68\x7a\xce\xf2\x3b\x22\x08\x8b\x25\x13\xf8\xbc\xc2\x3f\x0d\x6f\xa2\x55\x9b\xc0\xa0\x13\x22\x9f\xde\xc1\x84\xe6\x4c\x85\x9c\xd6\x20\x31\x28\xab\xaa\x3d\x30\x85\x88\xca\xdc\xbf\x64\x12\x9d\x35\x18\x13\x7a\xde\x9b\x40\x50\x59\x57\x3a\x5e\xb3\xda\x2d\x38\xdf\x82\x6e\xfc\xf9\xd3\x27\x79\x8d\x4b\x9c\x46\x9b\x96\x0c\x81\xd8\xac\xd9\xa8\x91\x17\xd9\xfc\x5b\x5b\x0e\x13\x16\x66\x88\x43\xf2\xab\xd7\xfe\x7d\x68\x7b\xde\x83\x2e\x03\x57\x35\x4e\xcf\x8d\x2d\x34\x5f\x67\x19\xc4\xd1\xd1\x1a\x64\x87\x03\x58\xc4\x9b\x35\xcc\xef\xd0\x04\x49\x34\xe5\x82\x63\xbe\xb1\xc5\x82\xb7\x02\x15\x71\x3a\x75\xeb\x36\x8d\xa1\x6c\x83\x0d\xca\x90\x84\xb1\x21\xc8\x44\x21\xe1\x20\x31\xf0\x29\x86\x40\x4d\x6b\x93\xfe\x0c\xe7\x3d\x2d\x9f\x1e\x00\xda\xd1\xd4\x38\x47\x5c\x86\x73\x11\x9b\x9c\x0a\x9d\x3c\x54\x8f\x06\x85\x90\xe2\x9b\xb1\xd6\xab\x92\x8e\x35\xfd\x3e\x4e\x66\x0b\x18\xd0\x65\x52\x61\xf6\x4b\x4e\x80\xc4\x69\xe3\xd9\x47\xbe\xfd\xc4\x5e\x87\x4f\x39\x56\x0a\x05\xa5\x16\x90\xac\xae\xfc\x1d\x29\x48\x3e\xf4\xc6\x5b\x04\xb6\x52\x02\x21\x23\x83\xb7\x4e\xb8\xbe\x4b\x23\xe5\xab\x52\x5a\x5b\x2a\xda\xa8\x21\x6a\x4d\xf8\x0b\xbb\x43\x06\xb4\x91\xe4\x93\x19\x21\xf1\x3c\xa4\x9a\x63\x6f\x94\xb4\xea\x2f\xfb\xcb\x64\xe5\xc6\xac\x41\x62\x64\xe6\x6e\xf0\x50\x0c\x65\x22\x64\x62\x7b\x10\xc8\xa5\x32\xc9\x69\x34\x56\x63\x9e\x4c\x65\x21\x53\x83\x0a\x97\x65\x0e\x0c\x76\x0a\x58\x3a\x72\xb4\x51\x61\x44\xe9\xb1\xc3\x13\xc5\xd3\xa8\xb6\x9d\x5a\x79\xc2\xb1\xf0\x98\xe4\xf3\x22\x40\x93\xa0\x7f\xb2\xae\x49\x56\x05\x28\x28\xab\x8f\xab\x93\x55\x59\x2c\x49\xc5\xc2\x9e\xf8\x6c\xd8\xf6\x45\x28\xd9\x65\xe3\x46\x97\x28\xb6\x9a\xe8\xd3\x44\xa0\xac\xb8\xbc\xc2\x4e\x36\x4b\xe5\xba\xd8\x92\x24\x19\xf9\xbb\x5b\x46\xe6\x80\x31\x2f\x0c\xe0\x79\x72\x89\x33\xa7\xa8\x9e\xc9\x4a\xbf\x86\x84\xd8\x1a\x89\xc6\xf2\x28\x4a\xcb\xb9\xa6\x67\xf9\xbc\x08\x2f\x56\x65\xb1\x12\x0a\x08\xfa\x33\x86\x14\x16\xe4\x99\x01\xad\x9e\xc6\xac\xa4\xfd\x2b\xa9\x01\xd0\x10\x92\x1b\xad\x45\xfd\x2c\xcc\xe5\xdb\x02\x82\x74\xb0\x8f\x95\xba\x2b\x42\xfc\xb4\xe0\x6f\x85\x41\x2c\x64\xf8\x50\xbd\x98\x36\x44\x59\x61\x28\x52\x6e\xb2\x22\x49\xd1\x12\x62\x94\x70\xc5\x08\x4b\xeb\x67\xc5\x15\x65\x1d\xe5\x47\x28\xf5\x67\xbd\x60\xd4\x09\x7a\xa2\x4e\xd3\x20\x7d\x3a\x55\xe3\x19\xfd\x54\xa6\x51\x5a\x99\x30\x10\xae\xef\xd0\xdc\xdd\x4e\xd0\x83\xd2\x0d\xba\xc2\xf5\x0f\x79\x89\xab\x22\xfb\x88\xdb\x1e\x79\x6b\x90\x5c\xeb\x36\xe3\xb9\x95\xba\xe1\x43\xbc\x35\x2d\x86\xe9\xa2\x58\x67\xe9\x39\x57\xb8\x20\x3e\x48\x61\x3d\x82\x67\x1f\x9e\x16\xe5\xa3\xcb\xa2\x84\x17\x74\x43\x15\xc7\xd8\xc8\x44\x66\x33\x11\x7f\x92\xe4\x45\x91\xe2\xcc\xae\x58\xae\xf3\xef\x55\xee\x9f\x8a\xe2\x83\xec\x15\x2d\x7d\x15\xae\x70\xcd\x8a\xaa\x62\xcc\x30\xb6\xad\xf1\x47\x32\xd3\x6c\xfb\x12\xcf\x8a\x25\x7e\xc3\xa7\xd3\xae\x68\xe6\xca\x5a\xe2\x22\x89\x6f\x8a\x3e\x9f\xbf\x50\xda\x29\x40\x6d\x73\x45\x99\x20\x2a\x34\xfb\x41\x14\xf5\xeb\x05\xce\x43\x73\xc2\x18\x62\x7a\xea\xb2\x38\x9a\x9d\x79\x51\x76\x12\x5a\x4e\xd6\xd6\x26\xb4\xb5\x2e\x4c\x6b\x87\x4d\xe2\x67\x75\x4b\xe6\xd0\x2b\x4e\x3b\xe9\x9a\x8a\xc7\x9d\xbb\x5a\xbf\x77\x3b\x8b\xa2\xf8\x20\x1b\x5e\xee\x84\xe5\xc5\x97\x00\x82\xe4\x9d\xbb\x4b\x4f\xd7\x6a\xfd\x5b\xdb\x62\x58\xf0\x65\xa6\x82\x42\xa1\x7a\xb4\x40\xb1\xf0\xa6\x7d\x69\x68\xb1\x8e\xd8\xcc\x41\x14\x35\xc8\xdd\x08\x0e\x35\x32\xa8\x90\x7c\xca\xcc\x4a\x08\xeb\x72\x8d\x11\x8b\x9a\xca\xe1\x80\xc9\x17\x48\x0c\xf0\xc8\xeb\x22\x9d\x34\x94\xeb\xfc\xed\x22\x29\x71\x2a\x41\x90\x74\x30\xd0\x56\x3e\x40\x93\x29\x00\x6c\x6e\x2e\x97\x7a\x8a\x01\xb2\x22\xdc\xfa\x42\x3e\xf6\xc0\xee\x25\x85\x71\x7c\xb5\x78\xa3\x97\x6d\x69\x61\x7c\x28\xb4\x6a\x81\x02\x34\x31\xda\x98\xf2\x95\x72\xa9\xa3\x98\x47\xa3\xb8\xbc\x4c\x69\x5b\xca\x67\x57\x39\xdd\x65\xf3\x75\x36\x27\x59\xc6\xc4\x4e\xa6\x99\xeb\x24\x79\xca\x4d\x8f\x00\xef\x20\x59\x2c\xb5\x05\xb9\x3b\x75\x14\xad\xe0\x9d\xe9\xf2\x4a\x5c\x88\xd1\xb3\x46\x0e\x91\xb2\x57\x74\x4f\x06\x3d\x51\xb4\x17\x70\x64\x94\x71\xd8\x8d\xbb\x08\xda\x10\xb0\xd3\x4e\x5e\xa3\xf2\x24\xa9\xd3\xaf\x23\x75\x94\xd1\x0d\x1f\x78\xd2\x44\x40\x30\xed\x76\x9d\x24\xfe\x4e\x9c\xb8\xc2\x64\xc3\x61\x8f\x10\xb1\x26\xba\x5d\x7e\x0b\x46\xaa\x77\x32\xda\xb3\xb8\x1a\x83\xa0\xc8\x2d\x34\x17\x8a\xb4\xae\x0b\x47\x27\xbe\x18\xc2\x06\xac\x33\x2f\x8b\x65\xa7\xc8\x71\xa7\x98\x33\xdd\x00\x2c\x0d\x05\xb6\x62\x4b\x23\x4e\x17\xce\x44\xe8\x24\xa2\xfd\x94\x84\x8e\xe1\x1d\xf0\x4d\x0b\xb8\x66\x9d\x30\xba\x0d\xb5\xf7\xe0\xaa\xd6\xe5\x67\xe2\xa6\xb8\x55\x61\xc3\x76\x77\xe0\xde\xcd\xec\xdf\x2e\xb1\x3f\x99\x71\x7d\x2d\x1b\x4c\xd9\x84\xc7\x46\x4e\x63\x9d\xd1\xed\x10\xf1\x70\x1b\x32\xfc\xa8\xd4\xf5\x4a\x66\x28\xb4\x8b\x8e\x15\x25\x95\x7e\x16\x7b\x89\x90\xac\x2c\x46\xc2\xfb\x32\x3f\x8d\xb1\x3a\x76\xef\xfc\xa6\xcb\xa0\xbb\x9c\x3d\x0d\x03\x79\x20\xa0\x8d\xe0\x5f\xad\xbe\x99\x09\xc0\x48\x36\x27\xf9\x5f\x7d\x87\x9a\xb6\x39\x0d\x5d\x5e\x86\x7c\x6f\xd7\x2b\x5c\xce\x70\xaa\xf1\x7b\x45\xbd\x90\xd1\xcb\xe1\xa7\x1e\x55\x9f\x71\x7d\xd0\x6f\xc5\x84\xb7\x98\x15\x12\x9a\x18\xfd\x65\x17\xfc\xa9\x16\xc4\x19\xca\xf0\x60\x9f\x12\xd2\xed\x96\x83\x68\xc8\xd3\x01\xaf\x1b\x44\xdd\xee\x91\xd1\x55\x4b\x79\x18\x13\x2b\x0e\x3f\x41\xa8\xd4\x38\x5b\x04\xfd\x8b\xdb\x5c\xd3\xc2\x5f\x56\x10\xe6\x9c\x47\xc9\xdf\x8e\x2e\x23\x33\x32\x1e\x4b\x36\x67\x42\xde\x96\xd2\xe3\x3f\xe1\x16\x9b\xf6\x0d\x69\xd4\xed\x26\x93\x0f\xd3\xa3\x38\xbe\x9c\x7c\x98\x5a\x8d\x36\x7a\x73\x2d\xba\x63\x4d\xda\xd9\x2d\x96\x9e\x70\x8c\xa1\xe2\xa9\x2f\x5b\x20\xcd\xb1\x29\xcb\x7a\xcb\xae\x73\x6f\xe9\xe3\xcb\x9b\x63\x1e\x75\xfe\xd6\xf5\xd8\x44\x7f\xae\x80\x6c\x87\xf0\xdc\x25\x30\x8b\xed\xaa\x4d\x9c\x2d\xd1\xea\x82\x2a\xad\xa2\x44\x28\xad\xd2\xf7\x37\x60\x81\xb9\x4b\xca\xdd\x51\x99\x9d\xa2\xb1\x05\xba\x5e\x77\xa1\x4a\xf3\x67\x79\xfa\x1f\xe0\x5d\xbf\x78\x23\x25\x3a\xcf\x60\x60\x27\x8f\x76\x75\x8b\x60\x91\xda\xca\xc0\xb8\xb4\x4d\xe0\x82\xc2\xad\x42\x94\xb8\x7e\x5e\x17\xd2\xfc\xd0\x03\x32\xb7\x11\xd1\x0a\x30\xb5\x0f\xad\x15\x4a\x11\x3f\xd2\xc7\x2c\x08\x9c\xa7\x51\x41\x34\xb4\x9c\xb6\xdd\xe1\x56\xde\xb3\x49\x5a\x76\xc1\x24\xe8\xf7\x4f\xfc\x1b\xe3\x4b\x2a\x7a\x6e\x83\xc7\xb7\xc0\xdf\x6a\x7d\xc9\xe2\xa5\xda\xa8\xda\x17\x19\xbb\x75\x3c\xa7\x87\xea\x78\xee\xb9\x5d\xfb\x76\x9b\xe8\x35\xd4\xb1\x76\x73\xb0\x5e\x41\x9d\xc2\xdd\xae\x9f\x3d\x68\x63\x34\xf4\x23\x55\x3f\x85\xda\xd8\x45\x25\xdb\x7b\xf9\x44\xc1\xfc\xed\xd5\xb0\xa8\xc3\x9a\x53\xb9\xcd\x2d\x4e\x64\xed\x98\xa2\xc7\x32\xa9\x24\x6f\x03\x7e\x76\xad\x97\x8a\xee\xcc\xef\xc1\xfd\x03\xa8\xfa\xbf\xf6\x3e\x70\xb5\xa1\xa7\xa6\x36\xf4\x37\xd8\x27\xa4\x72\x29\x3d\x2d\xc8\xd3\x6f\xb3\x97\x76\x1f\x43\xfe\x5d\x25\x65\x13\x57\x2f\xe0\x88\x87\x86\x4a\x12\xba\xa2\xc2\xe2\xaa\x2c\x3e\x92\x14\xa7\x42\x15\xd2\xa6\xd0\xd2\x77\x14\x45\x54\x8f\xca\x94\x1f\x18\x9a\x39\x34\x4b\x81\xdf\xdb\xed\x84\x3f\x56\x24\x78\x45\xc8\x14\x9b\xd4\xa7\xa6\xbc\x58\x2a\x2d\x01\x68\xfe\x20\x85\x73\x82\x33\x8d\x01\xae\x34\x93\x45\xd4\x2a\xa4\x02\xa2\xc7\x9b\x06\x6c\xc5\xd8\x1a\x81\x9e\x2a\x8a\x36\x90\xc9\x0d\xe2\x07\xd3\x69\xcc\x32\x24\x0f\x0b\xc7\x26\x99\x0b\xb9\x55\x89\x12\x92\x1a\x38\x39\x42\x07\xc6\xde\xe7\x6d\xb8\x7d\xab\x30\x99\x38\x62\x96\x4c\xda\xf3\x3d\xd2\x6f\x57\x98\x37\x9c\x5c\x90\xf4\xce\x49\xbf\xc6\x55\x2d\xc2\xc4\x6b\x40\x72\x00\xfb\x24\x85\xfb\x0c\x37\xab\x31\x61\x6f\xa7\x26\xbb\x59\x85\xcf\xa6\x2b\x9c\x1e\x1e\x40\x56\xbe\xf8\xc5\xc9\x3f\x39\xdd\xd8\xc9\x36\xfa\xf7\xfa\xbe\x1d\x27\x24\x4f\xb6\xab\x74\x95\xfe\x0e\x22\xa1\xae\xad\x0d\x6b\xa8\x64\x59\x8d\x7d\xe7\xb0\xa1\x3c\xd2\xea\xc9\xfb\x1b\x95\x86\xb4\xb6\xa2\xb1\x4a\x37\xfc\x8b\x3c\xed\x82\xcd\x3b\xd7\x14\xc9\x87\xb2\xb4\x7d\xdc\x4f\xb1\xba\xd6\x8a\x63\xf5\xae\xd6\x59\xa0\xe5\x04\xa3\x00\xe8\xd9\xa1\xfa\x41\xa9\x5c\x9b\x28\x58\xa7\xd1\xed\xb7\x0c\xab\xe9\xee\x18\xf8\x47\x0a\x67\x46\xe8\x0b\xfb\x4c\x55\xb7\x8b\xfd\x13\xf5\xde\x19\x44\xd8\xb7\x12\xed\x32\x84\x45\xb2\x3d\x61\x46\xd7\xc7\x4e\x7a\x4b\xe9\x75\x99\xb5\x94\xb5\xf6\xec\x17\x39\xec\x7f\xd5\xfb\x0b\xc6\xf7\xb7\xfb\x85\x41\xcb\x99\x67\x0f\x21\x38\xe0\x62\x93\x16\xe3\x5a\x75\xfb\x3c\x17\xda\x76\x56\x26\x2b\xae\x9c\xfc\xac\x80\x50\x48\xcc\x22\xc0\xc9\x65\xa9\x10\x2f\x0f\x1e\xc2\x73\x4a\xf0\xf4\x16\x9a\x75\xef\x80\x9b\xdf\x7b\xce\xcd\x2f\xfe\x54\x97\xc9\xac\xfe\x8b\xb6\x29\xed\x0a\x6e\x11\x56\xf3\x0a\xd7\xf0\x4e\x6a\x46\xaa\xda\xa9\x64\xe4\xee\xa6\x8f\xf7\x7c\xf4\x51\x69\x7e\xc1\x53\xc5\xc2\x1b\x7b\x49\xb2\xe2\x0a\xee\x20\x2d\x7c\xea\x8b\x0c\xab\x51\xa7\x9c\xca\xb2\x4a\x3e\x82\x3b\x9e\x1d\x15\x78\x09\x56\x8f\x52\x90\x54\x65\x3d\x63\x5b\x29\xb6\x90\xda\x61\xfc\xde\x3c\xdf\x59\xe5\xf7\x87\xc9\x5d\xd6\xd6\xe8\x7b\xca\xc0\x42\x14\xab\xd8\xf1\xb2\x2c\x56\x9a\x93\x28\xa3\x55\xd2\xe1\x4d\x6d\x1f\xe6\xce\x63\x19\x33\xf2\x32\x15\xae\xc3\x08\x2c\x47\x0c\x13\xb5\x65\xb2\xf2\x05\x19\xb1\x5a\xee\xb7\x58\x1f\xda\xc5\x96\xc9\x4a\x99\x9d\x28\x2b\x10\x59\x00\x09\x6b\x1d\x65\xb1\x64\xb8\xb1\x1d\x0f\xd1\xaa\x2c\x66\x98\x5b\xd0\xb2\xf7\xb5\xbb\x5d\x9e\x34\x3e\x3e\x26\x5e\xff\xb6\xb1\x06\x81\x34\x17\xa9\xd0\x26\xa9\x4c\x5f\xac\x26\x1a\x8b\xd6\x95\xd7\x1b\x98\xf7\x6e\xb7\x66\x8a\x4c\x90\x1c\x23\xd8\xa2\x7e\xc3\x6c\x51\xc1\x2e\x3a\x60\x6f\xa8\xba\x3e\x3e\xdc\xe8\xc5\x38\xd7\x14\x80\xa2\xbc\x30\x6a\xd1\x5e\x26\xfd\xfe\x06\x90\x4b\x35\x05\xa4\x1e\x91\x8a\x66\x94\x4b\x9c\x12\x69\xf0\x77\x9d\x68\xb7\x2f\x24\xbf\x8a\xb9\x3b\x51\x32\xab\xc9\x47\x6c\x6d\x97\x22\x4b\x61\x9b\xda\xb5\xce\xbc\x75\x98\xa3\x36\x17\x90\xc1\x63\x13\x9c\xb0\xaf\xad\x66\xe1\xd0\x84\xd7\xbe\xeb\xf2\x86\xbb\x6a\x5f\x43\x57\x00\x3b\x5c\x25\xbd\x2b\x20\x82\x83\x80\x03\x59\xb3\x22\xcd\x04\xf8\x5e\xb0\x47\x3c\x56\x5c\x3d\xdd\x26\x10\x7b\x22\x14\x5d\xf5\xf5\x2c\x24\xfa\x30\x52\x23\xcd\x54\x9d\xd1\x48\x8d\x34\x1a\xa4\x50\x82\x68\xf8\xf7\xc8\x9e\x0c\x0f\x61\x61\x10\x6f\x35\x28\x1e\x48\x86\xe7\xbc\xd2\xbf\x78\xfd\xb5\x55\xf1\x3e\x2f\x37\x36\x14\xd6\xde\x92\xfc\xe5\x7b\xa6\x83\xd9\x55\xc0\x55\x73\xb7\xc3\x34\xf9\x30\x85\x3b\xbb\x46\x5e\x46\x2f\x88\x36\x62\x63\x6e\xd9\x3d\xf5\x24\xd0\x66\x41\xbe\xc6\x1d\xa0\x5d\x83\xf3\x67\x26\x59\xe6\xcf\xe0\xe3\x98\x8a\x87\xab\x3d\x53\x49\x61\x66\x66\xf1\x36\x4a\x77\xbb\x5e\x9c\x36\x37\xa4\x9d\x0b\x02\x9a\x81\xe1\x8c\x9a\xaa\x4f\x78\x36\x77\xec\x43\x8f\x78\x4e\x72\x76\x62\xff\xc5\x1a\xcb\xae\xa9\xf4\xa1\x14\x32\x00\x88\xc6\xc6\xa7\x38\x83\x63\x6f\xaa\x75\xeb\x08\x37\xad\xd1\x66\xbd\x4a\x93\x1a\xff\xf0\xe6\x79\x68\xd4\x42\x6a\x23\x96\xfc\xa5\x37\xd8\xcb\xfd\x94\xa4\xc6\x9c\x79\x52\x45\x51\xee\x26\xfa\x27\x7d\x9b\xd9\x1e\x90\x60\xe3\x65\x68\xef\x54\x43\x9d\x59\xb1\x5c\x65\xb8\xc6\x41\x14\x69\x01\x11\xb4\x55\x69\x74\x33\x5a\x6b\x29\xc0\x3f\xc7\x24\x8c\x15\xae\xd7\x2b\x7e\xed\x56\x99\xb3\x2f\x7a\x68\xf6\x2e\x32\xe2\x54\x57\xd5\x14\x77\xf3\x2e\x4e\xf9\xc9\x27\xbb\x0a\x0e\xa3\xaf\x1a\x6f\xb6\xb9\x80\x5f\x60\x91\x95\x13\x04\xc3\x42\x6d\x38\xe6\xa2\xf3\x6b\x7b\x1e\xf6\xc6\xb7\x36\x6f\x71\x5d\x67\xb8\xa3\x8e\x24\xc1\x15\x76\xae\x17\x38\xd7\xd3\x49\x25\xfb\x4b\x03\xee\xa0\x62\xef\xc4\x68\x03\xcf\x20\x3e\xf9\x44\xd8\x23\x6a\x1c\x53\xac\x85\xb1\x90\xbe\xf1\x22\xc2\x8c\xdd\x00\xaa\x53\x75\xd7\xb2\xd1\x61\x61\x08\x6a\x57\xe9\x01\x9a\x54\x6c\x45\x98\x81\x0d\xe7\xd7\xb5\x34\x73\x8b\xaa\x58\x9d\x2a\xd5\x1b\xf0\x81\x5d\x98\x08\x35\x96\xa6\x80\x82\xe7\xbc\xf5\x2f\x78\x78\x5d\x75\x68\xe1\x9f\x16\xae\xc0\xb3\xbb\x80\x4e\x23\x1b\x9f\x74\xab\xca\x1f\xde\x3c\x57\x03\x5e\x97\x32\xb0\xfc\x55\x15\x33\x0e\x06\xec\x8a\x85\xb7\x05\x9c\x61\xeb\x32\x73\x7d\xa7\x68\x95\xc9\x60\xca\xdc\xa7\xd6\xa5\x54\x54\xa5\x85\x3d\xeb\xcc\x38\xa4\xbf\xc4\xf5\xa2\x48\xd9\xbb\xeb\x51\x83\x24\xd5\x19\xf9\x9f\xc3\x03\x27\x10\x59\x4a\xc6\xa7\xa4\xd4\x60\xc9\xde\xfa\x0c\xd4\xa3\xc5\xee\x90\xd8\xfc\x28\xca\x46\xd3\xda\x1e\x78\xd7\xfd\xad\xfd\xc0\xf3\x89\x68\x18\xfa\x08\x4a\xf2\x6e\x47\x63\x3b\x5a\xe1\x21\x5a\x51\x89\xe7\x25\xae\xf4\x57\x7e\xc9\xc7\x42\x2c\xa5\x1e\x9a\xc6\x4b\x1f\x6e\xc3\x93\xe9\xf8\x1a\xbb\x28\x3c\xd6\xac\x2b\x4c\x77\x51\xe6\xee\xab\x17\x35\xdd\x7e\x7b\x3d\x62\x60\x3a\x13\x60\xf4\xe2\x94\xed\xe6\x86\x12\xfa\x26\x00\xdd\xa6\x9e\xa2\x29\xba\x84\xdd\x2d\x02\xfb\x4a\x92\x5f\x75\x92\x0e\x9f\x2b\x8d\xb6\x04\x22\xc8\x30\x13\xb4\x28\xc2\x78\xa5\xb6\x10\x6e\x71\x0c\xa0\x3c\x03\x3a\x1e\x4e\xe1\x92\x47\x5f\x83\x91\xfe\xb1\xdd\x1a\x6d\x0c\xa4\x53\x9c\x30\x48\xae\x46\x93\xa9\x11\xd9\xa6\x8d\x29\xd9\x6e\x2b\xfb\x48\x67\x03\x37\x8d\xe0\x5c\x86\x5f\xf0\xf9\xf0\xf6\x90\xc4\xfc\x1f\x89\xfe\x52\xf4\xc1\xa8\x2c\x36\x63\xc0\x9b\xf1\x87\xe7\xe4\x63\x54\xaf\x4c\xae\xe8\x92\xd0\x2c\x9c\x3e\xa2\xf4\xc2\x55\x2b\x84\x3e\x12\x82\x86\x11\x3c\x4a\x98\x11\x9c\x4a\xb5\xa1\xd1\xd4\x64\x60\x4c\x9f\x93\x3d\x9c\x7e\xc6\x82\x33\x5d\xa0\x5c\x20\x13\x80\x46\x77\x49\xf4\xc9\x21\x6a\x17\xed\x93\x44\xa2\x3d\x5b\xc8\xdd\x73\x07\x6c\x24\xb7\x92\xf0\xac\xe7\x69\x7c\xa2\xf4\x7d\xa4\xae\x2c\x22\xae\xcb\x35\x03\x07\x08\xb3\x40\x37\x3a\x81\x1e\x25\x6a\xdc\x22\x95\xca\x88\x0a\xfa\xec\x0a\x7b\x1c\x44\xaa\x47\x8c\x1a\xfd\x46\xd8\x23\x56\xf1\xf6\x78\xc3\xcf\xc2\xbf\xd8\x0e\xc3\xce\x36\x04\xbd\x20\x73\xc4\x32\x4e\xd4\xd6\xa3\x9f\xbd\xd9\x03\x4e\xee\x70\x65\x05\x57\x34\xba\x09\x85\xf8\xfd\xea\xf2\x67\x44\x10\x0b\x96\x30\x0f\x8f\xdc\x4e\xa4\xc7\xae\x61\x5c\xe4\x00\x14\xbb\x35\x27\xad\x8d\x09\xaa\xc6\x2d\x3b\x67\x85\x64\xae\x62\x57\xe1\x00\x19\xec\x81\x35\xbd\x3d\x41\x66\x53\xfc\x89\xfb\x90\x51\x84\x36\x1a\x93\xb8\x4c\x0b\x09\x7c\xa6\xbf\x25\x57\xc3\xf0\xd9\x03\x39\x2b\x35\xb5\xe4\xf6\x3e\x7f\xd0\xd9\xc0\x1e\xee\xc7\x4c\xb9\x79\x06\x4a\xec\x05\xc1\x33\x7b\xed\x0c\x94\xbb\xa0\x1e\x10\x65\x30\x01\xd6\x6d\x6f\x18\x8d\xcd\x79\x34\xa1\x70\x0a\xdf\x82\x62\x19\x7d\x2b\x9a\x25\x7e\x34\xe2\x1d\x06\xaf\xe2\x44\x32\xcd\x15\x8f\x31\xa5\x41\xe5\xa8\x4d\xcc\x9e\x98\xb4\x0e\x02\x1e\xe3\x02\x61\xaf\xbc\xae\x5e\xe5\x2f\xf1\xb5\xc0\x3a\x79\x35\xe4\xcd\x46\xde\x90\x68\x3c\x00\x89\xb3\xf9\xc0\xc8\xce\x4e\xf5\x85\x25\xe9\x76\xbd\xdd\xf9\x23\x98\x78\x8b\x42\x90\x05\xa7\x33\x96\x2c\xe5\xc6\x43\x75\x46\x2e\xc2\x44\xdd\xee\x91\xa9\x18\xda\x3f\x3f\x94\x09\x65\x2a\x14\x5f\x0c\xa3\x1d\x3c\xb8\xa1\x78\x69\x63\xfe\x81\x39\x00\x76\x1b\x1c\x9f\x18\xdb\x7f\x71\x4d\xb2\x0c\xa0\xe4\x72\x2f\x7b\x2d\x7f\x14\x38\xe9\x01\xba\xe0\x1d\xfd\x68\x67\x39\x74\x5d\xaa\x28\x0c\x59\x57\x07\xd3\xa3\x16\x02\xae\xc8\x0f\x8f\xd9\xd6\x34\x6a\x0c\x60\x9e\xe3\xc4\x73\xb8\x78\x80\x40\x19\x4e\x3e\x92\xfc\x8a\x59\x5d\x33\x37\xea\x3d\x30\xb1\x69\x60\xcd\x07\x3b\x5b\x9a\x1a\x56\xa7\xa6\x1a\x01\xd4\x1d\x4a\x5e\xad\xb5\x39\x31\x8e\x3e\x75\x40\xc9\x4d\xcb\x55\x25\x95\x10\x74\xb9\x42\x41\x48\x9e\xb2\x02\x13\x0e\x71\xfa\x99\x22\x27\x3c\x93\x29\xad\x1b\x84\x71\xef\x7e\x49\xd4\x54\x0e\x73\x60\xed\x6f\x90\x36\xf4\x8f\x58\x8c\x04\x22\x30\x7a\x24\xd5\x76\x15\x91\x9a\xa4\xfe\x3a\xe7\x2c\xb4\xf4\xc1\xad\xcb\x9b\x8d\x3b\x37\x20\xea\x49\x73\x6a\xff\x1c\x99\x3b\x9e\x7b\x9c\xbf\x2a\x7f\x80\xba\xa1\x6f\x47\xe9\x67\x39\xec\x2e\x6d\x69\x1b\xef\x2a\x41\xb3\xbf\x0d\x08\x9c\x5c\x6b\x10\x68\x6a\x0f\x7d\xf6\xc5\x02\x8d\x77\xcc\xb2\x57\x0b\x3e\x06\x19\x1c\x37\x7a\x73\x87\x69\x32\xf9\x26\xf0\x8d\xc1\xab\xc9\xd4\xc7\x61\x1b\xb2\xde\x7a\x66\xd8\xb4\x3b\xfb\x6e\xc7\x8e\x10\x87\xac\x91\xa7\x6d\x0b\xd6\xa0\x74\x7c\x81\x65\xd5\xb6\x07\xfd\x0c\xf5\x11\x90\xb9\xf6\xd9\xed\xaa\xdf\x7d\x52\xf1\xeb\x45\x5d\xc1\xe1\xdc\x3d\x36\xd6\xd6\x8c\x3d\x5b\x94\x27\x49\x85\xba\x82\xc7\xce\x09\x23\xd3\xca\xa9\x5e\xaf\x54\x61\xf6\x19\x0a\xcb\xab\x2f\x3a\x08\xcf\x32\x19\x81\x0c\xd9\x2e\x18\x1b\x36\xf8\x9a\x1d\xbf\x45\x19\xa5\x06\x5a\x52\xc5\x0d\x27\x46\x92\x03\xf3\xe3\x30\xe7\x95\x64\x29\xef\x89\xae\x0b\x53\x55\xbc\x31\x29\x08\x15\xe7\x81\xde\xb2\x5f\x80\x8d\xf4\xa7\x24\x48\xa3\x09\x7f\x78\x94\x37\x71\xce\x6f\x31\xf8\xb4\x9e\x3b\x97\x1a\x95\x48\x22\x28\xd3\x22\xf0\x68\x70\x7a\xe3\xe4\xa9\xd1\xc6\xda\xc0\x59\xc8\x4e\xc5\xa1\x69\x8d\xf0\x38\x7a\x47\xaa\xf0\x76\xab\x7e\x8b\x19\x38\x8a\xb5\x3a\xd2\x6d\x70\x63\x8e\x05\x42\x14\x29\x3c\xe2\xc9\xb2\x58\x25\x88\x9d\x0c\xbd\x2f\xc5\x06\x32\x0f\x55\xa7\x7a\x05\x36\xa7\xfd\x75\x5e\x2d\xc8\xbc\xd6\xcb\xa8\x28\xe2\xe6\x0c\x1a\xd0\xf3\x2c\x13\x7a\x9e\xb8\xdd\xba\x73\x1d\x6d\xcc\xc6\xe0\xca\x58\x42\x63\xae\xb9\x33\x0a\xb8\xf1\x51\xa5\xe5\x59\xc4\x0a\x1a\xb0\xc3\x7a\xba\x6b\x89\x32\x7d\xd5\x9c\x05\xde\x3f\x2f\x46\xd0\x48\x51\x5c\x6d\x1a\xa5\xe2\x54\x7b\x15\x58\x55\x44\xf2\xd5\xba\xfe\x41\xe8\x77\xd7\x65\xf6\x82\xe9\x7c\x62\x6d\x53\xcb\x44\x86\x31\xf2\xcb\x30\x68\x14\x17\xb8\xaa\x16\xa7\xf3\x7b\xf4\x8a\x48\x93\xe0\xe2\xc3\x35\x70\x1e\x2d\x8a\xb7\x3c\xbb\xf7\x57\xd7\xfd\xbb\x74\x90\x3e\x55\x88\xa6\x77\xb4\x6f\x8e\xe5\x7d\x3e\xc9\x93\xd9\x0c\x57\x15\xb9\xcc\xf0\xf7\x37\x3f\xbc\x79\x1e\x6d\xd4\x2c\xc2\x7d\x28\xa8\xc6\xc5\xac\x79\xf4\x2a\xda\xb4\x5d\x7c\x24\xac\xa9\xdd\xca\xc0\x31\x5f\x2c\xc1\x1e\x1d\xa8\x80\x19\xeb\x90\xc4\x71\xac\x14\x7b\x1b\xd9\x90\x50\x95\x83\x36\x1c\x42\xd0\x40\x9e\xa5\x28\xd7\x42\xcc\x78\x2e\x8c\x34\x44\x53\x74\x99\x72\x65\x4c\x77\xeb\xa0\x89\x96\x52\xe1\x5f\xd6\x38\x9f\x61\x24\xcc\xf3\xd3\x4e\x92\x65\x60\x15\xcc\x5e\xa5\x4a\x71\x55\x93\x9c\xbd\x52\x05\x78\x37\x16\x00\x90\xfc\x4a\x53\xff\xf6\x83\x68\x7c\x38\x6e\xb6\xc8\x73\xf8\x97\xd8\x03\xdb\xf8\x60\xc6\x7e\x6c\x1c\x96\xfa\x01\x69\xb0\x4e\x8b\xc3\x78\x5e\xd7\x64\xfb\x67\x3c\xab\x43\x61\xfb\xa4\xb3\x1a\x51\xe3\xdd\xf5\x1e\x18\xfb\x5c\x4f\x40\x57\x75\x6c\xc2\xca\x24\x55\x1e\xe7\x8f\x43\xe5\x5e\x42\xae\xb3\x4c\x4a\x9e\x7c\x26\xda\x47\x20\xc4\x29\xe3\x22\x38\x98\x7e\xc9\x9b\x63\x8a\x61\xbb\xd0\xea\xdd\x9b\x47\x2f\xdf\x3e\x7b\xf7\xec\xd5\xcb\xce\xf9\xab\x17\xaf\x9f\x3f\x79\xf7\xa4\xaf\xac\xe1\x0f\x21\x42\xc2\x0c\x48\x72\xd5\x94\x30\x86\x58\x0f\x47\xeb\x30\x3d\xdc\x70\x84\x80\x12\xc9\xba\x8d\xb1\x98\x6b\x95\x6b\xfa\xf5\xe3\xb2\x2c\xca\x00\xe9\x8b\x87\x08\xd7\x92\x79\x21\x34\xd6\x93\x5f\x26\x37\x82\x77\x57\xfb\xd7\xb8\x04\xe0\x53\x97\x94\x57\x95\xd7\x5e\x88\xa9\xde\xf8\xad\xde\x76\x1b\x9c\x80\x01\x66\x96\x54\xf5\xa3\xf2\x0a\x32\x98\x47\xb9\x04\x66\x6c\x1a\xcc\x54\xdc\x28\x9f\xd7\xe8\x76\xf9\x0f\xc7\xdd\x53\xab\x12\x44\x46\xe4\xcc\x78\x55\xac\xa4\xf2\xa3\x8a\x1c\xab\x62\x40\x68\xda\x89\x06\x09\x44\x90\xd3\x90\x23\x60\x52\x03\xa5\x19\xac\x7e\x47\xb8\x97\xba\xf7\x61\xad\x5b\x75\xfc\xa5\xef\x96\xda\x2e\x8a\xf4\x11\x46\x92\x07\xa2\x55\xdc\x97\xa9\xf4\x21\x3e\xaa\x6b\xbc\x5c\xb1\x41\xfe\xf0\xe6\xb9\x7e\xef\x5e\x17\x22\x56\xb3\x3e\x08\x8f\x85\x62\x48\xcf\x33\x16\x77\x9c\xf7\xdc\xd6\xc1\xde\xc6\x77\xcd\x10\x47\x28\xed\x22\xc6\xd0\x70\x55\x68\x18\xed\x98\x10\x61\x2c\x02\xeb\xd4\x7e\x2f\x66\xe1\xb3\x23\x50\x6a\xfa\x3d\xd3\x14\xac\x5e\xe0\xd2\xa0\x32\x1b\xcb\x90\x4c\x79\x7a\x38\x65\xfd\x8a\xe7\x5b\x5e\xa1\x5a\xdd\x4d\xc8\xd4\xd7\x15\x65\x03\x77\xb8\x1e\x3b\x07\x76\x9b\x74\x6e\x19\xbc\x33\xd1\xfc\x2f\x7e\xa1\x7c\x63\x58\x9b\x99\xe5\x18\xd8\x66\x92\xcf\x71\xda\x2c\x31\xf9\x30\x8d\x45\xf4\x67\xae\x8f\x72\x0a\x40\xb4\x52\x36\x0a\x2d\x03\x02\xb2\x4d\xa6\xce\x69\x64\x8f\x86\x9f\x41\x6d\xb3\x10\xd8\xc3\xf5\x76\xa4\x4d\xc2\xd4\x3a\xe6\x29\xa7\xb3\x8b\xa3\x8b\x37\xfe\x01\xf8\xee\x05\xbd\x7d\xb7\x5c\x0d\xfe\xb2\xf2\x17\xa7\xfc\xad\x9d\x31\xf9\x65\xd5\x67\x9a\xef\x5f\x56\x7d\x19\x7d\x59\x17\xeb\x69\x3a\x40\x7e\x14\x03\x0b\xb0\x6f\x58\x4e\x93\x4d\xa3\x5b\x14\x69\x25\x15\x26\xb6\x18\xf6\xd8\x1c\x95\xa5\x41\xb6\x05\xfc\x56\x02\x8d\x98\x30\x46\xf2\xab\x78\x32\x15\x9a\xda\x67\xec\x76\x88\x29\xbd\x79\x8a\xa5\xc3\x45\x04\xa9\xc6\x35\x01\x5a\xc8\xe3\x63\xf2\x9d\x4f\x5c\xa3\xa2\x5a\xab\x1c\x3e\x36\xe5\x70\x97\xd5\x14\x12\xb9\x2a\x67\xc8\xb4\x3c\xa4\x82\x26\xd0\xc2\x8d\x80\x31\x26\x32\x86\x3b\x30\xb3\x9d\xbe\x72\x35\x8d\x36\x62\x3e\x3c\xd2\x29\x3d\x93\xb5\xd6\x8e\xc4\x26\xe4\x89\x86\x88\x0a\x7a\x56\xbd\x38\x72\xa7\x24\x1a\x9b\xf3\x1a\x5b\xb7\x19\x02\xd5\x17\xf1\x60\xbc\xf8\x8e\x97\x15\xd3\xb9\xe0\x11\x86\x79\xf2\x64\x31\x15\x97\x7e\x86\xfd\x02\xa3\x6b\x8d\x41\xf2\x04\xa7\xea\x5c\x0c\x88\xb6\x76\x5f\x05\x34\xf0\xd8\x18\xcc\x12\x00\xf3\x70\x20\xd9\xd0\xd6\xab\x0f\x59\xc7\x36\x43\xb3\x88\x91\x36\x4d\xfa\xd5\x82\xc6\x0c\x3b\x57\x1c\xbb\xa2\x0d\x97\xae\x07\x92\xc7\xc3\x47\x0f\x64\x78\x90\x6f\xcf\x2e\x5f\x9b\x5d\xb1\x08\x55\xc4\x63\xfb\x98\xd7\x1d\xd8\x9c\x58\x7f\x3c\xbc\x71\x52\x27\xb1\xfc\xc5\x0c\x5e\xec\x66\x74\x8f\x03\xcd\x4d\x8e\x6d\x66\xdd\x30\x03\xde\x8c\x6a\xf3\xe8\xb2\x5b\x3d\x60\x0e\xdb\x3d\xad\x98\xcf\xa3\xd7\xab\xca\xef\xd4\xd5\x6f\x89\xe6\x41\x73\x7e\x95\x93\xe4\x3e\xff\xab\x5d\x6b\xba\xd3\x2d\xc5\xe3\x40\xb5\xcb\x6b\xc7\xe3\x48\xa5\x11\x3a\x1e\xbe\x61\x9f\x8f\xb4\xcf\xdd\xfa\xbe\xe5\x6e\xbd\xc7\xa5\xe9\x7e\xbb\x4b\x93\x8b\xc2\xf7\xf7\x3b\x82\xde\xd7\x1d\x41\x5b\x30\x4b\x3a\x74\xda\x13\x8a\xb4\xb8\x95\x86\x01\x99\x1e\xb0\x92\x87\xaf\xb4\xdf\x3e\x3b\xc8\x05\x5b\xf3\xc0\x86\xdd\xa4\xf7\x22\x7c\x45\xb5\x24\xc3\x43\xbb\x32\x5d\xb4\x35\x17\x6e\x43\xea\x62\x65\x8c\xc7\x06\x8c\x3d\xa7\x22\x0b\x09\x95\xbc\x66\x0e\xd5\xee\x93\x71\xa8\xd9\x8f\x16\xf5\x41\x3c\x1e\x65\x8c\x21\x8a\xd0\x6a\x5d\x62\x56\xfd\xf6\x06\x40\x52\xc7\xdf\x62\xf1\x22\x9a\x9e\x0c\xa6\x91\x66\x04\xc4\x88\xb0\xae\xbd\x94\xf2\x9d\x47\x1c\x37\x8c\xa6\x6c\xb3\x0c\x39\x69\xa2\x3e\x72\xec\x31\x64\x67\x8e\x20\x83\xac\xd6\x3c\x6b\x71\xfb\x66\x21\x04\x1a\x3d\xe0\xe7\xa0\x09\xe2\x2a\x0c\xd3\xca\xc4\x67\x37\xa3\x3c\xf0\x2b\x23\x40\x87\x34\x7f\x11\x66\x2f\xec\x15\xaa\xa4\xc6\xc0\xbf\x2c\x6c\x96\x8a\x9b\x59\x9b\x56\xaf\x8a\x0b\xb3\xcb\x0b\x49\x49\x8d\x30\x5c\x28\x16\x4c\x2a\x45\x44\xec\x2a\xb3\x59\x1b\x18\xc1\x4c\x01\xab\xae\x97\x7d\xca\x6c\xba\x8e\x9c\x36\x38\x7f\xe8\xac\xbf\xa5\x85\x36\xe3\xe7\x49\x8b\x3d\xb6\x89\xb9\x65\xbd\xc0\x17\xfd\x76\x52\x1b\x14\x48\xd6\x26\x13\xcc\x94\xda\xde\x8b\x2e\xd9\x81\xe4\x08\x21\x6e\x0f\xf7\x7b\xe1\x5d\xea\xf1\x0a\x28\xbf\x43\xe6\x21\x79\x18\x5b\x93\x12\x6d\xac\x46\x60\x71\xd9\x83\x90\x6c\x6b\xe9\x51\x80\xf5\x88\x28\x48\xef\x85\x9b\xc0\x55\xc8\x84\x3e\x92\xbe\x33\x4e\x0f\xa6\xc5\xd5\xd3\xa2\xf4\xbc\xf9\x7e\x9b\xae\x5c\xc4\x17\xcf\xf9\xfc\xa6\xe3\x63\x9c\xa5\xbd\xa5\xec\x65\x31\x3e\xad\x60\xb4\xcc\x2e\x1e\x59\x45\x44\xa8\x0e\x81\x10\x9c\x21\x8d\xcd\xde\xbb\x5d\xf3\x5b\xbf\xc5\xf6\xa2\x00\x93\xcb\x3d\x15\xe2\x38\x56\x9d\xd8\xe0\x8b\xd8\x04\x7b\xfa\xe6\x61\x70\x5a\x3a\x50\xcd\xeb\xef\xe2\xbd\x2b\x7e\xa8\xb0\xd5\xf0\xd8\x8b\xa5\xdb\xad\xd5\xb0\x15\x02\x2f\xb4\xd6\xc5\xdd\xfb\x2f\xd8\x13\xa0\x24\x0f\x09\xb2\x77\xc0\xd8\x00\xc7\xec\xc8\xf5\x24\xea\x76\x8f\xdc\x15\x37\x5a\xd0\x3f\xbc\xab\x6d\x14\x90\x61\x59\xbc\x32\xa4\xbc\x19\xd4\xeb\xc0\xa3\x66\x80\x91\xda\xfe\x76\xbc\x28\x5e\x14\x25\x16\x11\xff\x04\xf1\xee\x5c\xe3\x12\xcb\xa7\x33\x16\x09\x7b\x53\xa3\xc4\x9d\xa4\xc4\x1d\xfe\x12\xa5\x7c\xe5\x8d\xc5\xae\xac\x17\x18\xb4\x70\xa3\x4e\xd0\xb3\x36\x19\x03\xe4\xc8\x3e\xfc\xb9\x40\x20\x26\xf9\x9c\x47\xb7\x6f\xb1\xaf\xb3\x57\xa3\x81\x6b\x3b\xaf\xe5\x88\xcf\xc3\x4e\x98\x3c\xfb\x4d\x4d\x2c\x86\x07\x62\x99\x29\x47\x21\x78\x3b\x14\xb9\xc0\xb6\x58\x9c\x39\xc4\x53\xe9\x76\xac\x2c\xf5\x2e\xac\xad\xff\x3b\xcc\x81\xc2\xfa\xb6\xf3\xfb\x46\x70\xab\x30\x82\x50\x21\xbb\x28\xaa\xf5\x6c\xa0\xa0\x72\xb7\xa4\xa9\x70\x5f\xb0\x5e\xbe\x64\x61\x7b\x8c\xc7\x69\x15\x87\xc0\x90\x74\xec\xc5\x51\xad\x40\xcc\x73\x27\x66\xa9\xe3\xe1\x54\x0f\xf0\xa3\x55\x88\x4c\x3f\xcd\x43\x68\xf8\x01\x87\x93\xe8\x7d\x55\xac\x42\xcd\x18\x61\x0f\xb9\xf3\x29\x2e\xcc\x22\xf2\x65\x33\x1e\xa5\x0c\x5b\x1c\x95\x88\xa5\xaf\xa5\x3b\xc7\x94\x5b\xcb\x61\x03\xf4\x09\x6d\x6b\xac\xdb\x6d\xcb\x91\x11\x9c\xf4\x87\x49\xac\x71\x78\x0c\x66\x45\xa8\xc1\x40\x04\x1f\xe3\xa2\x90\x1e\x30\xcd\x32\xb7\x1a\x69\x80\x1a\x0f\x9f\x46\x0d\xf2\xaf\xe4\x67\x20\xac\x11\x32\x76\x03\x66\x3a\x7e\x64\xbd\x5e\x90\x0c\x87\x22\xef\xf8\x58\x2a\x20\x5f\xfb\x4f\x3b\xbe\xde\x1e\x2c\x68\x39\x09\x59\xd8\x58\x06\x0d\xc6\x1f\x76\xa0\xba\x04\xf8\xa5\x0a\x20\x25\xc0\x32\x36\x02\x6d\x27\x92\x2f\x3f\xcb\x2a\xd3\x38\x08\x7a\x26\x0e\x0b\xc4\x93\xa3\x71\x9f\x3d\xe1\x95\xbd\xed\xc9\x6a\x5a\xa2\x78\x74\xc3\xf3\x56\x53\x4a\xd2\xfc\x6e\x2d\x42\x91\x75\x70\x5e\xac\xaf\x16\x4c\x13\x91\x5f\x9d\xe4\xeb\x25\x2e\xc9\x0c\x46\x88\x6b\x5c\x56\x9d\xba\xe8\x54\x49\x4d\xaa\xf9\x0d\x33\x02\xe0\x81\x9b\xbd\x47\x0f\xbc\x42\x2a\xde\x1f\xdd\x89\x88\x46\xf4\x3e\x2f\x1e\xda\x51\x74\x9b\xe8\x10\x1d\x51\x4b\x7c\x9d\xff\x4f\x43\xf4\x5b\x68\x88\xc4\xfb\xf9\xb6\x8a\x86\xa7\xff\x97\xe9\x79\xd8\x6d\xe9\x21\x5a\x9b\x75\x99\x71\x95\xca\xba\xcc\x3e\x4f\x95\x12\x6d\x0e\x12\xc5\x81\xbf\x37\x54\x1b\xf2\x67\x28\x60\xb1\xdf\x04\xd5\x5c\x91\x78\x7d\x9d\x69\xa4\xec\x04\x6f\x21\xfd\xe1\xcd\x73\xd8\xe2\xb2\x29\xe5\x56\x53\x3d\x26\xf3\x39\x2e\xb9\x0d\x89\x34\x68\x64\xfe\x41\xac\xd1\x96\xab\x2c\x2e\x24\xf3\x42\x9f\x2d\x23\x6b\xe6\xad\x1e\x43\xad\x5b\x0d\xc7\x92\xd3\x7e\x15\x5d\x11\xaf\x3f\xeb\x4e\x86\x87\x8a\xf2\xf2\xd5\x45\x98\xd9\xdb\x0b\x3b\xc6\xba\x30\x53\xc7\xb6\x0b\x29\x5b\xbc\x11\x12\xb2\xbf\xb0\xcd\x09\xec\xe0\xb4\xc5\xda\x1b\x9c\xb9\xcd\x68\x37\x91\xba\x4e\xf0\xae\x8f\x7c\x9f\x87\x2d\x14\xff\x8a\xf9\xbf\xdb\x6d\xe0\xab\x14\xa8\x37\xfc\x63\x7f\x01\xcf\xab\x50\x2e\x91\x9e\xb8\x31\xd3\xbe\xec\x53\x51\x5f\x38\x12\x76\x6b\x8c\x28\x5f\x08\xb2\x53\x2b\x04\xd9\x17\x0f\x28\xec\xb9\x25\xe2\x61\x7d\x20\x0e\xbd\x1e\x05\x10\x2c\x70\x7c\xea\x68\xf1\x7a\xa2\xe4\xe0\x1a\x9b\xfd\xd5\x2e\x8b\xf4\xd6\x5a\xb4\xec\xfa\x0b\x52\x3b\xdf\x6e\x52\xda\x5f\xc6\x86\x05\xc1\xd8\x08\x00\x61\xc8\x80\x7e\x07\x0f\xca\xe8\xcb\x06\x8e\xe2\x38\x08\xc4\xe3\x9a\xec\x2d\x8f\x38\xe8\x07\x8d\xfe\xbd\xb0\xd8\x48\x25\x96\xba\x0f\x48\xa9\x6a\xc1\xdd\x91\xf6\x84\xd4\xad\xde\x7b\xaa\x70\x36\x87\x70\x4c\x1f\xad\x67\x15\x78\xd0\xc8\xdb\x8e\xf8\xb6\x2e\xfe\xf2\x9d\x05\x11\x3a\xd2\xf7\x8a\xc4\x33\xee\x72\xaa\x39\x0f\xbd\x95\xe1\x10\xc6\x3c\xb8\x95\x88\xeb\xc6\xad\x18\xfd\x31\x6f\xdb\x5e\xd1\x80\xf7\x9b\xf4\x90\x02\xfc\x59\x0e\x5e\xf1\x55\x8e\x75\x11\x78\xdf\x83\x24\x7c\xb0\x41\x14\x4d\x02\x66\x3c\x18\x4c\xf9\x34\x31\xda\xe3\xab\x0a\xcd\x77\xc0\xf4\x2f\xd2\x48\x22\xc9\x73\x5c\xbe\xb5\x5e\x16\x39\xf8\x05\x92\x96\x87\x8e\xa0\x9c\xfe\x3e\x88\x02\x54\x0b\x17\x93\x54\x45\x1e\x6d\xb4\xc9\x65\xc7\x88\xdf\x38\x95\x97\x6e\x90\x77\x5c\xe2\xb1\x13\xdb\x14\x0b\x28\x3c\x1b\xb5\xa3\xfe\xa8\x62\x7d\xb1\x5d\x77\x0d\x56\x4b\x2e\x0b\x45\x11\x1f\xde\x3c\xf4\xa9\x5c\xce\xbc\xc6\x79\x23\x5f\xfd\x96\xe1\x6e\x58\xef\x23\xf6\x57\x1c\xff\x3f\x92\x7a\xc1\x06\x34\x6a\x05\x7c\xe2\x00\xad\xa2\x47\xa8\x79\x1e\xa9\x9f\x60\xbf\x6f\x34\xd8\x68\xb3\xc8\xe3\xd3\x85\x9e\xd0\xa5\x32\xec\xdb\xa3\xac\xc4\x49\x7a\x23\xdf\x41\x6b\x07\xce\x37\xfe\xa9\x66\x57\x32\xbe\x5d\xd5\x5e\x4f\x3d\xf7\x62\x69\x73\x8f\x5c\xb8\x4c\x27\x2d\x4f\x3d\x4f\xc4\x1c\xe5\x92\x55\xe2\x94\x94\x78\xa6\x39\x2d\x8a\x14\xdf\xdc\xc8\x48\xd3\x82\x1a\x4a\x39\xd2\xbb\xdd\xf6\xd2\x82\x7d\x64\x40\x2d\x98\xb7\x91\xd0\x78\xf5\xcb\xa0\x7a\x71\xfb\x72\x59\x06\x87\x1c\x23\x19\x3c\x1e\xa4\x69\x6c\xe5\xe2\x2d\xd1\xc0\x63\x38\x2d\xc9\x8e\x67\xd2\xe4\xcc\xc2\xdc\x71\x3c\xf5\xcd\xd6\x6b\xc8\xa2\xb3\xd4\xfe\xe4\xb6\x75\xe4\xef\xe2\xdd\x58\x4c\x5e\x3b\x00\x6f\x2b\x13\xf7\x9b\x73\x6d\x3e\x3e\xc9\x23\x47\xef\x63\xee\x4e\x77\x30\x77\x87\xc4\xaf\xdd\x17\xa3\x76\x57\x7c\xdb\xc3\x23\xbd\x7a\x38\x3e\x61\x10\xc5\x4d\x73\xc1\x1d\x49\x23\xf8\x6a\xe1\x78\x5c\x48\x15\xeb\x8a\xfd\xe5\x81\x35\x85\x5b\x31\xbf\x47\x60\xaa\x09\x6e\xff\x0d\x01\x2c\xc0\xfb\x03\xfe\xb1\xed\x8c\xa0\x20\x0f\xf4\xc7\xdd\x20\x84\xed\x91\x0c\x78\xaa\xbf\x70\x25\x92\x5d\x73\x76\x0e\xb9\x7e\x82\xc7\xd6\xd1\x00\x45\x44\xf8\x38\x21\xc7\x99\x41\xbd\xc1\x84\x91\x33\x59\x4e\x57\x7e\x47\xa0\x3d\xe1\x63\xe6\xec\xf5\x65\xe8\x45\x63\x5b\x3d\xb1\x63\x5a\x1b\x11\xf6\xe9\xba\xd5\xf2\xed\xe3\xd2\x50\xf2\xae\x53\x09\xdd\x2e\x11\xee\xda\x5d\xc3\x15\x8f\xcb\x15\x8f\x7a\xc6\xfd\x39\x34\x0a\x20\xdc\x41\xde\xf2\xac\x5e\x6f\x6c\x2c\x07\x40\x25\x68\x93\xf9\x04\x24\x8b\x04\xe8\xe5\x75\x20\x34\x9e\xba\x25\x55\x47\xf0\x76\xdb\xe2\xd9\x73\x0b\x27\x1d\x50\x95\xba\x0e\x1f\xc2\xd7\x83\x77\x0a\xec\x44\xed\x84\xe0\xb3\x19\x0c\x9f\xc3\x47\x2b\x5f\xa6\x5a\xb6\x9f\xab\x95\xec\xd9\x23\xc1\x9e\xa9\x77\x94\x5d\xe4\xd6\x9e\x8d\x00\x8c\xb6\xe5\x32\xb9\xfb\x8d\x39\xe7\x71\xf4\x6e\x31\x85\xea\xa9\xd5\xd6\x48\x90\xe2\xa5\xce\xe3\x0e\xd4\x81\xd3\xa3\x1d\x47\xe2\xc1\xd8\x0c\x8f\x28\x04\x46\xb5\x53\xe0\xe4\x94\x7e\x73\x23\x1e\x6f\x2e\xe0\x94\xcb\x23\x3c\x3a\xf6\x5d\xfa\x81\x39\x1a\x20\x57\x18\x35\xc9\x0c\xd7\x1f\x8a\x60\x49\xcc\x4c\xb4\x92\x66\x8d\x48\x7f\x2e\x11\x32\xf9\x74\x40\x36\x25\x60\x23\x2e\x89\xe8\x77\x93\xd5\x9a\xe9\xbf\xd0\x3c\x21\xd9\xba\xb4\x02\x0b\x1b\x81\x21\xed\x92\x0d\x4a\xcc\x47\x10\x55\x04\x44\x77\xcd\x68\xb2\x8c\xd0\x26\xfd\xfb\xf4\x2d\x8b\x2c\x52\xd4\x0b\x46\xba\xf3\xc8\x75\x52\x89\x65\x0c\x22\x9d\xae\x7b\x6e\xb8\x62\xad\x13\xe3\x20\x30\x25\x13\x91\xa6\xfb\xb3\xe9\x35\xfd\x4e\x6d\xc6\xdb\xca\x25\xae\xcb\x1b\x33\x0c\x21\xa9\xec\x2d\xa6\xb7\xe9\xf1\x42\xd1\xc6\x22\x43\xb4\x41\x8c\x35\xd5\xf0\x92\xbb\x89\x0a\xe5\x23\x77\xd6\x84\x64\x13\x24\x27\x48\x0c\x61\x6f\x3e\x3e\x15\xeb\xbb\x3f\x62\x23\x7f\x75\xc1\xa8\x17\xc7\x71\x70\x59\x14\x19\x4e\x72\x1e\xbe\xb1\x0f\x46\x05\xe2\xae\xc8\x28\x0c\x26\xd7\x7a\xf4\x14\x73\xc9\xdd\x13\x45\x04\x40\xd2\x8f\xd7\x67\x3c\x18\x12\x32\x1a\x17\x31\x6a\xe6\x45\x96\x15\xd7\x6f\x38\xdb\x5e\xe9\x8b\xf0\xd1\x0c\x1e\xcd\xfb\x1e\x7b\x30\x7b\x87\x1c\xab\x5c\x0f\x5b\x63\xfd\xb6\xe4\xf7\x2d\xd0\xc2\xc8\x7d\x82\xca\x10\x82\xa3\x06\xd5\xc5\x5b\x76\xdd\xe5\xbe\x31\xa5\xd3\xb1\x50\x6c\x96\x0e\x7f\x13\x5c\x7c\xf7\x82\x28\xb0\xde\x2b\x97\x7a\xd0\xdd\xbb\x4e\x3d\x4d\xee\x25\x79\xfd\x0a\xe7\x69\xec\xcd\x11\xfc\xa2\xa4\xe3\xbe\xb3\xec\x36\x9e\xbd\x29\xae\xf1\x8c\x92\x69\xb6\x7f\x34\xef\x4b\x7f\xbc\x08\x0f\xf7\xc8\xb3\xf6\xea\x80\x9d\x1a\x86\x02\xd8\xcd\xd5\x8d\xed\xb5\xd0\xff\xda\xbc\xe8\x92\x88\x7c\x75\x20\x96\xcf\x0f\xf8\xeb\x0b\x6a\xe4\x8e\xcd\x11\x58\xb8\x00\x32\xf1\x4b\x20\xbb\x24\x0a\x60\xe5\xed\x88\xff\x8a\x95\xbf\x20\xe0\x0e\xc4\x18\x31\x28\xc6\x53\xa2\x8d\xc8\x53\x3e\x1a\x9f\x24\xf2\xc3\xe3\x40\x3a\x3e\x70\x14\x06\x92\xf2\x89\x79\x1e\xf2\xdb\xea\x0e\x6b\x65\x1a\x70\x73\x3a\xd9\xac\xd1\x1d\x38\x69\xf2\x1c\x09\x95\x3e\x73\x22\x53\xe4\x49\x0c\x80\x4b\x85\x45\x52\x2d\x10\x57\x16\x0b\x96\x74\x55\x16\xab\x0e\xe1\x4f\x90\xb2\x4d\x0d\x8f\x81\xda\xd7\xd9\x65\xb1\x8a\xa2\x0d\x6d\x61\x42\x7f\x4f\xc1\x8b\x0e\x7e\x73\x63\x4f\x71\xb5\xc8\x07\x0e\x16\x07\xdb\xad\x7e\x8b\x57\x17\xd1\x46\x02\xf5\x34\x8c\x36\xcd\x53\x8d\x7b\x60\xbf\x74\x9c\x7e\x6a\x08\xb0\xe2\x8e\x32\x16\x77\x95\xb2\x25\x8f\xd9\x73\x02\x0b\x24\x18\x7d\xf6\xd9\xed\x26\x9a\x1b\x18\x5a\xe0\xc4\x88\x21\xc2\x79\xfe\x6e\x37\xc3\xf9\xc3\x01\x2f\x3c\xc9\x70\x7e\x3c\x9c\x9a\x5f\xb7\x71\xba\x35\xea\xe9\xbd\xd1\xee\xcd\x33\xa6\x4c\x6e\x10\xbb\xe5\x3b\x1e\x8a\xad\x3d\xb1\x81\x9c\xea\x66\x24\x13\xa8\x43\x8f\xdd\x69\x63\xec\x41\x8f\x91\xbf\xc7\xa8\x5f\x71\x98\x05\x2e\x67\xba\x53\xda\x3b\x8e\xab\xa1\xf9\xa4\x91\x19\x80\xee\x17\xcb\x67\x91\x9f\x8b\xbf\x58\xe1\xe0\x28\x9e\xe7\xeb\xe5\x25\x2e\x03\x63\x6a\x20\x33\x08\x7a\x76\x9a\x34\x10\xe2\x78\x1c\xda\x05\x22\xdd\x28\x6c\x80\xb2\xd8\x2e\xe0\x04\x03\xb1\x0b\x4c\x88\xb7\xe7\x09\xa1\xc8\xdc\xe8\x14\x5b\x08\xdc\xea\x40\xa8\xae\xc0\x75\x9d\x9f\x6e\x59\x71\x25\x83\x7a\x80\xef\x34\xb0\x0a\xca\x81\xfa\x9e\xf4\x83\xa2\xed\xe9\xe7\xd5\x7f\x0b\x7a\xea\x84\x1a\x75\x82\x1e\x6d\x1c\x56\x78\x59\x5d\xc5\x32\x70\x82\x56\x9d\x95\x68\x2c\x6a\x4a\x09\xa9\x5a\xcd\x4b\x92\xa7\x32\x04\xd1\x9c\x3b\xfe\x5d\x16\xeb\x1c\x9c\x04\x24\x84\x62\xab\xc9\x1d\xfa\x11\xde\xe3\xf6\x71\x40\xb2\x3a\x3a\x8d\xc6\xea\xed\x73\xa8\x21\x1b\xca\xf9\xd3\xe5\xa2\x73\x60\x45\x0c\x68\x29\x70\x31\xfd\xa3\xe9\xe4\x0d\x3b\x34\xc5\x12\x03\x3a\xf1\x37\xe9\xe2\x38\x00\x83\x97\x60\xbb\xe5\x44\x53\x0b\x1c\x00\xd8\xba\xdd\x3a\x75\x38\xe2\xf9\xea\xbc\x64\x59\x9a\x7b\x2f\xbf\x9c\x81\x4d\xa5\x1e\x63\x31\x51\x2d\xb1\x3c\x49\xbb\x5d\xc6\xcc\x1d\xc5\xb1\xa8\x01\x0d\x4c\xc8\x34\x02\xdc\x33\xc7\x2f\xae\x0e\xc5\x55\xa1\xec\xde\xf2\x78\x33\x6d\x22\x5d\x06\x4f\xe3\xbf\x78\x4d\x16\xe9\x4f\xa2\x9a\x9e\x18\xee\x6b\x6c\x6c\xbf\xb2\xa7\x33\xb0\xb6\x06\x02\xfa\xb6\xb8\x66\xde\x80\x63\xbe\x74\xce\x6e\x46\xf2\xa2\x16\xe3\xeb\x60\x0a\x51\xe7\x2e\x98\x1c\xf5\x82\xbb\xfd\xce\x3b\x69\x1d\x9b\x17\x3c\xaa\xa5\x0c\xc7\x13\x80\x19\x01\xab\xf4\x63\x52\x81\x7c\x98\x6a\x86\x11\x7b\xe3\xd8\x10\x61\x79\xb6\xc3\x14\x54\xbe\x88\xe8\x51\x9c\x18\x71\xfc\x28\x18\x95\x16\xb9\x8c\x7d\xc3\x93\x82\xba\xb7\xb9\x91\xe1\x7b\xce\x3f\x8e\x99\x88\x15\x6d\xec\x81\x31\xcf\x4c\x8d\xc4\x37\xcc\xc3\xf4\xc8\x2a\xd6\xed\x1e\x59\xf3\xef\x4c\xfc\xcb\xa2\x5e\x90\xfc\x8a\x8f\x3a\x65\x16\x60\xce\xd4\x07\xd6\xe6\x14\xaa\x4f\x87\x75\x75\x1e\x69\x81\x43\x1e\xe5\xf8\xfa\x15\xdf\xb5\xfc\x60\x30\x4c\x67\x36\x49\x96\x8d\x36\x0d\x12\x71\xbd\x36\x54\x22\x64\x6f\x8b\x8c\x36\x8d\x88\x7c\x2a\xcc\x1a\x12\x30\xd2\xe7\xed\xb1\x76\x52\x11\x73\x8d\x2f\x78\xfb\x39\x25\x41\x8a\x76\x14\xd2\x5a\xa7\xa8\xc3\x8f\x31\x55\x95\x5b\xf4\x71\x06\xc6\x1b\x0c\x95\x3b\x09\xef\x2a\xa2\x80\xe6\xf7\x7b\x30\x3c\x3e\x70\x38\xf5\x64\x2f\x3c\x60\x6a\xa3\xc1\xa3\xcd\x29\x04\x02\xd8\x03\x8f\x38\x25\xcd\x36\xa3\x6e\x57\x64\xc8\x26\xc4\xe1\xa9\x0f\x53\x3f\x2f\xc1\x55\xda\x4d\xa7\xdb\x1b\x06\xc1\x17\x12\x06\x61\x96\x1d\x9b\xe3\x06\x24\x36\x69\xa7\xb7\x53\x75\x48\x3b\x60\x41\xbc\x06\xb3\x1b\x1e\xac\xe1\xd6\xe0\x34\x8d\x6e\xb4\xa9\x15\x74\x7a\xf8\xdc\xe6\x45\x6c\x78\x91\xd1\xed\xf2\x76\x8c\x2d\x66\xbe\x0b\x67\xbe\x03\xa7\xdf\x43\x2a\x45\x1d\xb7\x9f\xe0\xd2\x2e\xf8\x2f\x4b\x13\x05\xa3\x6d\xe3\x66\xc1\x7f\x93\x20\x4d\xf0\x56\x49\x89\xf3\xfa\xbc\xc8\xab\xba\x5c\xcf\xea\xa2\x44\x36\x7f\x7e\x2e\xec\xee\x9c\xa2\xc0\x12\xb0\xa0\xaf\xea\xf9\xf2\xe6\x5c\x63\xe5\x39\x8b\xee\xf6\xa2\xca\x08\xa7\x02\xad\x1a\x07\x41\xb0\x13\xe7\xc6\xe0\xa4\xd5\xa1\xcf\xca\x10\xac\x13\x63\xb0\x51\x34\x6a\x31\xe9\x0e\xa4\x39\x53\x54\x02\x4f\x59\xe1\x19\xab\xe7\xb5\x12\x90\xb8\x35\xc7\x11\x48\xc1\xd8\xc9\x7a\xdd\xf2\xd7\x7b\x91\xc3\xea\xef\xba\xfd\x3a\xd8\xed\xbd\xfa\xb8\x3a\x61\x46\xb5\x65\x9e\x64\xa6\xb3\x7b\xff\x84\xb0\x05\x5b\x8a\x87\x2e\x67\x45\x3e\x27\x57\xff\x88\xfb\x3d\x60\xd3\x5e\x95\x4f\x79\xf3\x8e\x49\x96\x5d\x80\xfb\x3d\xb7\x96\x57\x59\x60\x0b\x59\x5c\x3b\x45\xf2\xe2\x9a\x3b\x56\x8a\x41\xef\xb3\xbb\x85\xf9\x70\x2e\xef\x20\x79\xac\x85\xe9\x28\x56\x54\xc8\x65\x17\x97\x4f\x5e\x3e\x7e\xf6\xf2\x8f\xf1\xc7\x82\xa4\x1d\x30\xbe\x79\xfa\xc3\xf3\xa7\xcf\x9e\x3f\x7f\xf2\x38\x1e\xc2\xe2\x3e\xf9\x1f\x4f\xce\xdf\x3d\x79\x1c\x9f\xb2\xcf\x3f\x3e\x79\x77\xf1\xee\x4f\x4f\x5e\x5e\x3c\x79\xf3\xe6\xd5\x9b\x58\x9e\xed\x40\x85\x8c\xb3\xf9\x1d\xbf\x14\xa6\x1b\x1e\x02\xc6\x99\x86\x4e\x4c\x41\x2d\x02\x6f\xc1\x95\x9b\xd9\x3a\x5c\x68\xc4\xec\xaf\xd8\x7e\x66\x09\x4d\x2a\xaa\xcb\x1b\xd6\x21\x6d\x14\x31\x09\x00\xcd\xd7\xd9\x9c\x64\xd9\x52\x85\x15\x43\xa0\xc3\x53\xbe\x10\x00\x17\xad\x03\xe4\xe3\xf0\x8a\xce\xf3\x43\x7a\x14\x2e\xe0\x6f\x9e\x16\x25\x26\x57\x39\x05\x2b\xb9\xcc\xb0\x98\x0b\xa6\xcb\xa7\x09\xec\x07\x8b\x58\x39\x27\x57\xfd\xa4\xba\xc9\x67\xa1\xae\x98\xa0\x85\xef\x9c\x0a\x2b\xae\x44\xb1\x98\xd2\x32\x26\x36\x46\x2d\xdb\xb5\x65\x27\x32\x0f\xa1\xbe\x64\x89\x79\x73\xf0\xa0\xe2\x3c\x14\x35\x8f\xe2\x98\x57\x11\x57\x41\x12\x0c\x98\x53\x2e\x07\xf2\x09\x72\x73\x1b\xe4\x53\xc9\xee\xe8\x9c\x2b\x55\x55\x43\xd2\xc6\x88\x3f\x3c\x45\x0f\x15\x95\xdd\xbf\x60\x07\xcc\x76\x1b\x74\xd6\xf9\x87\xbc\xb8\x96\xd8\x24\x1e\x9c\x82\xc6\xbb\x5d\x8e\x51\x3b\xfb\xb2\x2f\xcc\x1c\xd3\xa5\x57\xd7\xed\xab\x17\x6d\x04\x1e\x5f\x14\x39\xac\x86\xf0\xc3\x15\x45\xfa\x17\x70\xc9\x1d\xc7\x72\x57\x45\xf6\xdc\x21\x55\x98\x5f\x50\x4a\x4d\x83\x6c\x5f\xb4\x22\xf6\x22\x9d\x49\x7d\x28\x2d\x6d\x6c\xaa\xf5\x65\x35\x2b\xc9\x25\x96\x10\x21\x75\xef\xe6\x41\x92\xbd\x68\xb0\x0b\x09\x76\xa0\x80\x05\xad\xd2\xa0\xdb\xf3\xfd\x22\xb9\xb9\xc4\xce\x8c\x2f\xf5\x54\x06\xa8\x91\xa2\x8b\xcf\x62\xca\x66\xea\x70\x17\xd6\x42\xbe\xb5\x34\x5b\x86\x61\x31\x83\x85\x05\xce\x63\x41\xc2\xcc\x42\x62\x7d\xe3\x38\x36\x69\x91\x33\x4c\x1f\x31\x53\x8b\xcb\xdb\x90\xeb\xe1\x22\x86\x07\x38\xd0\x3f\x89\xb3\x83\xb5\x11\x89\xf1\xb5\x51\x1b\xa3\x19\x20\x39\xfe\xf5\xb3\xfa\x6b\x1c\x83\x26\x6b\xa5\x37\x0a\x45\x63\x89\x30\x2d\x48\x21\xbd\xeb\xac\x83\x92\x23\x9f\x18\x83\x7f\xfd\x0f\x41\x3a\xc5\xa5\xae\x2f\x33\x52\x2d\xde\x08\x7a\xad\x4e\x20\x7d\x47\xf1\x1d\xeb\xee\x61\x55\x44\xec\x24\xde\x60\xe8\xd2\x08\x3f\x2c\x1b\x67\xe7\x1e\xc5\x31\x3f\x68\x25\x09\xb4\x7a\x81\xd9\x1b\x5b\x1b\x5e\x12\x8d\xb1\xd1\xa4\xd8\xd4\xa5\x19\x0e\x11\x02\x29\xd3\x93\x44\xb1\x0c\xd1\x46\xfd\x0e\x03\x0e\x2f\x4e\x03\x45\xf0\x60\x56\x8d\x23\x88\x0f\x58\x2b\xa3\x21\x82\x6f\x23\xdf\x6e\xc4\x30\x36\x41\xca\xc6\xf6\x4c\x40\x9b\x63\x1f\x44\x72\x4d\x3d\xf4\x5a\x91\x3a\xe0\xee\xd1\x6c\x41\xb2\x14\x15\xf9\x53\x75\x96\xa3\x22\x97\x4d\xf0\x53\x55\xcd\x65\x0c\xf5\x8c\xf9\x15\x26\x39\x74\x8e\xdd\x69\x1f\x8b\x1a\x06\xf9\xd7\xca\x4d\xa0\xdc\x34\x66\xb0\x78\x72\x7a\x72\x85\xa7\xb1\x01\xa9\xaf\xac\x98\x31\x5a\x54\x0e\x83\x5f\x0f\x70\x24\xe8\x76\xe5\x20\xc0\x1c\xc9\xbf\xae\xac\x8c\x67\xcf\xa8\xad\xe2\xcc\x8d\x07\xf9\xf8\x93\xe5\xf4\x8c\x4e\x63\x73\x75\xc7\x7b\x71\x51\xd4\xd3\x4e\xc6\x33\x0d\x3f\x47\x01\x60\x9a\x81\xaa\x94\x91\x68\xc1\x7d\x4d\x53\x08\xeb\x2e\x1f\x9c\x4e\x71\x9d\x90\x2c\xb6\xb0\x6c\x6c\x1a\x3f\x79\xd6\x96\xf4\xe2\x7b\xd1\x86\x35\xa6\x2f\xfd\x84\x4c\xc7\xa2\x6d\x33\xbd\xc7\x87\xc4\x6c\xa3\x58\x3d\x16\x8b\xa0\xf8\x80\xcf\x85\x0a\x96\x97\x40\x5e\x10\x39\x7d\x93\xfa\x5a\x91\xda\xec\xda\xf8\x03\xb5\x86\x1a\x17\x2e\x2c\x1a\x14\x56\xb2\x99\x79\xf7\xe6\xa7\x8b\xf3\x47\xef\xce\xff\xb4\x8f\x77\xaf\xcb\x9b\x73\xc6\xdc\xda\x20\xea\x4c\xbc\x03\xa8\xe4\x87\xad\x7e\x04\x17\x2f\x38\x78\x2b\x5b\x43\xc3\x96\xe9\x12\xd4\xc6\x81\x06\xf4\xa7\x95\xa8\x10\x6b\x27\xa3\x54\x94\x73\x51\x00\x8c\xae\x98\x31\x0c\x4e\x29\xf3\x93\x90\x0c\xa7\xa0\x45\x95\x0d\xd0\x16\xb3\x35\x8e\x5b\xc7\x4f\xcb\x43\x91\x38\xb6\x86\x11\x6d\xa0\x49\xe0\x34\x61\xc8\xac\x28\x0c\x7f\x0c\xd5\xd8\x5a\x70\xd6\x8c\x83\x22\x63\xee\x3b\x47\xa9\x45\x6c\xd9\x7d\xfa\xcd\x8a\x9b\xd3\x07\x8f\x04\xaf\x53\xc9\xa5\xe8\xcc\x92\x3c\x2f\xea\x8e\x34\x99\x48\xea\x4e\x95\x2c\xb1\xe4\x8a\xd4\x9b\xba\x8d\xe0\x75\x28\x54\x30\xba\x71\x2b\x48\x1e\xa2\x2e\x0f\x74\x6d\xfa\xba\x5d\xd9\xc2\x4e\xc6\x91\x56\x83\xc9\x72\xc6\x68\xf1\x48\x1e\x2a\xb1\x97\xc3\x50\x75\x5a\xb9\x65\x87\x67\x50\xee\x9d\xdc\xd6\x43\x3b\xe1\xd8\x30\x4a\x81\xfa\xf0\x15\xda\x9c\x91\xa8\xb6\x9b\x6b\x46\xd6\x39\x2a\x6a\xed\x65\x93\x35\x51\xd3\x9c\x2e\x4b\x53\x4e\x45\xfb\x98\xfe\x31\x34\x47\x1c\x1a\x61\x6e\x6f\xe5\xb1\x3b\x29\xf8\xc7\xc8\xe1\xd3\x1c\xf3\x7f\xc7\x96\xd6\x0b\x28\x91\x22\x81\x46\x3e\x3f\x4f\x62\xfe\xaf\x2f\x4f\x9e\x60\xb1\x9d\x60\x6a\xc4\xec\x95\x89\x9d\x14\xab\xbc\x4e\x42\x62\xf3\xd3\x28\xa9\xf4\x1c\x8a\xcd\xd2\xf3\xa5\xde\x43\xfc\xb0\xd5\x54\x49\x96\x1d\x73\x64\x03\x45\x15\x66\x4e\xef\x49\x5d\x94\x4c\x3d\xa5\x9b\xa6\xff\xc3\x2c\xd1\x9f\x48\x18\xf6\x19\xa3\x2f\x93\x0f\x18\x24\xec\xf4\x0d\x70\x5e\x4e\x18\x48\xbb\x44\xab\xad\xbb\x47\x19\x55\x5c\xcc\x5c\x9f\xee\x7b\x17\x17\x7d\x91\xa1\x8e\x9b\x47\x59\xc6\xbb\x09\x75\xcd\x2f\xce\xeb\x92\xe0\x0a\x71\x4d\x33\xbc\x24\x56\xad\x57\xb8\xd4\x4a\x79\x6b\xc0\xbb\x4d\xdc\x59\x4e\xb5\xae\x6b\x82\x39\x10\xa1\x9a\x2f\x5d\x07\xec\xab\xe3\xf6\x1d\xab\xca\x2d\x35\xe8\x0c\xf2\xc9\x75\x27\xd3\x5f\x85\xc7\x92\x21\x45\xce\xe8\x7c\xec\x58\x96\xe9\xd7\x69\x89\x6c\xa2\xb3\x5c\x57\x75\xe7\x12\xb3\xb3\x00\xa7\x9d\x6b\x52\x2f\x3a\x49\xde\x61\xb7\xbe\x41\xd4\xea\x73\x21\x17\x41\x35\x15\x5a\x13\xaf\x75\xab\xad\xd4\x6b\x41\x82\x8c\xc2\x42\xd9\xdf\x78\x36\x0b\x6c\x92\x5b\xfa\xd2\xb6\xe1\xfa\x57\x07\xba\x5d\x1c\x30\x6c\x7e\xb5\x6e\x8e\x56\xd8\xfc\xd9\xf9\xee\xc0\xaa\x64\xf5\x59\x16\x5e\x82\x83\xdb\x0f\x62\x95\xac\x14\x27\x92\x94\x57\xcc\x70\x64\x8d\x95\x74\x21\xc8\x9b\x9e\xdc\x1b\x4e\xe3\xa4\xbc\x1a\xf3\xaf\xf8\xd4\x90\x14\x4e\xa3\x4d\x35\x5b\xe0\x74\x9d\xe1\xa7\xd9\xba\x5a\x84\x51\x03\x41\x4b\x2e\xcb\xe2\xba\xc2\xe5\x1f\xb3\xe2\x32\xc9\x62\x6e\xb8\x70\x4d\xf2\xb4\xb8\x3e\x8a\xe3\x40\x6a\x2b\x82\x33\x48\x1c\xf1\x60\x27\xdf\x43\xbd\x17\xeb\x9a\xe1\xee\xab\xcb\x0a\x97\x1f\x71\x19\x1b\xed\xf5\xed\xec\xed\xd6\xcc\xff\x11\x5f\xfe\x99\xd4\x76\x29\xae\x4c\xff\xb1\x28\x3f\xe0\x52\xc0\xf4\x03\xc9\xeb\x6f\xcf\xb3\x64\xb9\xc2\x29\xbb\x50\x34\xc1\xeb\x76\x85\x3d\xec\x92\xce\xed\xdb\x59\x49\x56\x75\xd5\x52\xe6\x05\x98\x18\x9e\x2f\x92\x3c\xc7\x99\x59\x48\x91\xa9\x75\x85\x5f\xe2\x4f\xf5\x3b\x32\xfb\xa0\x36\xa3\xb6\x3d\x99\xfb\x53\x55\xf5\x73\x51\x68\x4e\x67\x56\x67\x33\xd6\x15\xb6\xc7\xc6\xed\x5e\x49\x4d\xe9\x08\x29\xf2\x8a\xbb\xc0\x16\x62\x02\xe9\xb6\x6b\x99\x5c\xde\x01\xbf\x41\x48\x71\x9c\x16\x33\x26\x5d\x71\x2b\xb7\x77\xf8\x53\xfd\xb2\x48\x71\x18\x04\xd1\x58\x34\xd8\xe7\x3f\x42\x5a\x03\x6d\x66\x8b\xa4\x4c\x66\x35\x2e\x1f\x27\x75\xc2\x0c\xd0\x95\x3f\xb2\x36\x36\x5a\x18\x7c\x6d\x34\x48\x7b\x3d\xf5\xf1\xbb\x53\x6b\x9c\xc6\x94\xf2\x51\xce\xe0\x8b\x8d\xc9\x2c\x30\xe6\x59\x7d\xba\x58\xc3\x7e\x91\x0b\xeb\x4f\x36\x44\x0f\x40\x7a\xf9\xd3\xfe\xaa\xa8\x6a\xde\x60\x38\xb0\x66\xfc\x2d\xae\xdf\x91\x25\x2e\xd6\xb5\x77\xd5\x2a\x95\xcd\xfa\x42\xc3\x08\x0c\x07\xd9\x66\x62\xa0\xc2\x7d\xf5\x10\xdf\xd3\x3c\x76\xe7\xb0\x6b\x36\x8e\x13\x0d\x97\x1d\xb9\xd6\x5e\x8a\x8a\xb0\x35\x79\xe8\x8b\xa4\xbc\x12\x09\xbd\xa1\x92\x27\x43\xba\xb7\xc7\xa2\xa4\xd2\x0c\x8e\x55\x59\x95\xd8\x48\x09\x90\x89\xe1\xfa\x66\xd6\xac\xc1\x39\x4e\xda\x78\xbf\x69\x2c\xbb\x4f\x5e\xce\xb0\xfe\xe4\x69\xd3\xc0\xa2\x15\xb1\xb1\x11\x24\xdf\xdd\x82\xa4\x9e\xca\xee\x1e\xd0\x74\x9b\xb0\xcb\x7d\xb5\x2c\x8c\xe2\x62\x94\x5d\x4c\x5f\x6e\x87\x58\x8b\x1b\x43\xc6\xad\x31\x63\x98\x2f\x71\xfd\xc9\xac\x99\xde\x31\x17\x88\x7d\x4c\x17\xbf\xa2\xd3\x34\x21\x23\x1e\xe8\x5c\x6b\xa4\xbf\x24\x9f\x48\xce\x15\x28\x91\x6e\x0f\x49\x13\xd6\x25\x86\xb8\x58\x4a\xdb\xc8\x63\x54\x05\x5c\x0f\x15\x48\xbd\x4f\x91\x4b\xe7\x23\xc3\x26\xae\xc5\x24\xf0\x54\x54\x04\x13\x21\x90\x43\x8d\x08\x61\x7a\xb6\x29\x7a\xf0\x91\xf1\xcb\x46\x37\x67\x5d\xe2\x58\xfe\xb2\xd7\x25\xc5\x73\x71\x39\xfd\x85\xf8\x83\x2f\xc4\x1e\x30\xc0\xf4\x58\x11\x2c\xa1\xc4\x69\xbc\x69\xc6\xe2\xb7\x74\xa3\xa2\xc4\x42\xc8\x74\xba\xd7\x19\x95\xba\xf8\x05\x62\xb4\x91\xb5\x6c\xb1\x4c\xcb\xd0\x64\xb2\x86\x33\x1e\x82\x06\x8a\x52\x0e\x6e\xeb\xd2\x87\x79\x6d\xae\xdd\xa7\x7f\x9e\x00\xb2\x6b\x92\xa5\xe9\xb7\x73\xc3\x0d\xd6\xde\x50\xc6\xd0\xeb\x7b\xca\x1a\xf9\xfc\x40\x2b\x56\x8e\x73\x2c\x13\x6d\xc1\x94\x8b\x4d\x91\x9d\xcf\xc5\x58\x16\x0c\x85\x8b\xaf\x4e\x30\x14\x2e\xce\x1a\x1a\x4e\xa7\x94\x12\x6b\xcd\x2b\x71\xbb\x9c\x12\x1d\x8d\xab\x72\xc7\xa9\x57\x28\xbb\xf5\x3b\x77\xbb\x10\x4f\x67\x65\x1e\x7d\xff\xea\xcd\xbb\x8b\x57\x2f\x2f\xa0\xe6\xb3\x57\x2f\x41\xaf\xa4\xef\x2b\x4f\x19\x37\x49\xb3\xb6\xb7\x05\x10\xfe\x78\xf8\xaa\xe0\x6e\x88\xda\x5d\xb1\x7b\x69\xc9\xdd\xcf\xc1\x73\x4d\xbf\x48\x60\xb5\x46\xfc\x89\x10\x8d\x54\x88\xa2\x4a\x8f\x0b\xea\x0c\x51\xd4\x20\x1e\xae\x2c\xea\x8a\x4b\x4a\xd1\x29\x11\xdd\x10\xfe\xd8\xeb\x87\xe0\xdc\xf6\x8a\xeb\xc7\x4d\xd1\x51\xdc\x12\xea\x12\x9c\xf6\xdb\xf4\x2f\xa5\x5b\x59\x17\x33\x29\xe6\x89\x9d\x08\xcd\x19\x3d\xc5\xc6\x97\x0c\x76\x7d\xa1\x22\x83\xae\xd6\x75\xc8\x40\x8c\x14\x3c\xab\x75\x1d\xb3\xbf\xd0\x24\xa7\xc3\x2c\x45\xa8\xa1\xa1\x68\x89\x97\x09\xc9\x49\x7e\xe5\xcb\x24\x39\xe1\xf6\xb0\x7a\x2b\x4c\x2d\x2e\x54\x65\xfa\xd0\x90\x68\x52\xbb\x27\xd6\x2b\x6a\xbf\xb7\xdb\x01\xef\x43\x10\x17\xac\x75\xa4\x41\x75\x68\x67\x12\x43\x98\x16\xcb\x53\xd0\x92\x7e\xc3\x28\x6a\x1a\x9f\x88\x6e\xcd\xac\x92\x92\x61\x8a\xc5\x71\x25\x6c\x0d\x21\xb5\x19\xef\x6c\xea\x30\x91\x9b\x35\xd8\x01\x4f\xbe\x4a\x4a\xdd\x3c\x08\x62\x4a\x45\xee\x47\x42\xe4\xf6\xf7\x46\x97\x2b\xb6\x7d\x0f\xc5\xe5\x97\x62\x37\xb5\x65\x68\x97\xde\x35\x05\x84\xbf\x33\xb9\x6e\xb1\xe5\x68\xe7\x2e\xb6\x1e\x05\x20\xd6\x97\x86\x5b\x21\xd1\x69\xd6\x10\xd7\xb8\x41\x71\x0c\x15\x38\x2d\xeb\x76\x35\x9e\xb8\x27\xc6\x8a\x93\xd9\xe2\x49\x5e\x97\x7c\x5d\x26\x64\xca\x62\x76\xb7\x0d\x41\x94\x56\x43\xc0\xf4\x53\xc4\xa4\x9d\xc5\xad\xdb\x1b\xa2\x68\x9a\x77\xca\xac\x2e\x58\x9b\xb2\x9f\xba\xa5\x40\x1c\xc7\xb3\x6e\x17\x92\x5d\x95\x37\x4f\x37\x2e\xfb\xb8\x52\x0a\x08\xd5\xa3\x3a\xd4\xeb\x22\x82\xf8\xa7\xbb\xd7\xd8\x8b\xf8\x40\xdf\x1e\xd5\xe1\x4c\x3a\x5e\x03\x74\x2a\x84\xb9\xb5\xd1\x8e\x8f\xc7\x3a\xba\x50\x29\x01\xbe\x95\xa2\x29\x94\x44\x5b\xf4\xdf\x3e\xb5\x12\x6e\x35\xb5\x02\x72\xcd\xe9\xc2\x8b\x13\x3e\xeb\x14\x39\x53\x2e\xd4\x92\x66\x18\x74\xb2\xdb\xdd\x6b\xd8\xa2\x5f\xfd\xef\x1d\xba\x09\x3c\xb3\x51\xdf\x49\xa9\x5a\x88\x54\xcb\x6c\x69\xca\xbc\xb6\xe9\xe2\xe4\x02\x8e\xb8\x96\x66\xf4\x95\x8f\x6d\x6b\x2f\x81\xd4\x8a\x99\x83\x80\x19\xda\xed\x36\x2f\xd8\x6e\xc7\xa3\xea\xea\x98\xa9\xa3\x85\x7d\x1d\x21\x2f\x20\xfc\x55\xc5\xe2\x20\xa2\x5b\xee\xd8\xec\x27\x17\xa7\x6e\xa9\x09\xd3\xae\x60\x52\xfc\xe9\xd5\x5c\x2a\xba\xaa\x56\x5f\x17\x59\xc2\x67\xaa\x2d\x33\x29\x82\x28\xef\x17\x75\x22\x08\x8b\xe8\xe3\xa1\x16\xca\x40\x54\x7a\x5a\x94\xd2\xdf\x47\x17\xdf\x2b\x1e\xc7\xb7\x7f\xc1\xa7\x5f\xdc\x28\x30\xf7\xbc\x23\x59\x2c\xda\xec\xaf\x11\x6f\xa4\x51\xb6\x2c\xdc\xf6\x2c\xd4\x86\x49\x82\x5a\x04\x51\x0e\x1b\x6f\x9b\x87\x53\xe9\x17\xf9\x58\xa4\xcc\xe7\x3c\x69\x3e\x17\x69\xd2\x7d\x82\x79\xea\x73\x1f\x8a\x56\xe8\x94\xd6\x41\x04\x85\xbe\x04\x31\xa4\xd0\xe0\x60\x8b\xcd\x02\x83\xcf\xb4\xab\xd3\xb2\x93\x64\x99\x6a\xc9\x98\x55\x16\x93\x43\x96\xae\xc6\x6a\x9e\xf4\x3a\x13\xd9\xf0\xb4\x7d\x62\x5b\x2a\xc4\x93\x29\x8b\xd9\xdf\x8e\x47\x71\x1c\x1f\x0f\xb5\x96\xc0\x59\x4c\x66\x37\x0d\x2a\xe6\xf3\x2f\x38\x48\xc4\x60\x31\x06\x12\x6d\xda\xa1\x17\xb2\xf9\x01\x53\x03\x8f\x9a\xb4\x8f\x74\x2c\x26\xe2\xc8\x1e\x72\xb5\x62\x2e\xfb\x2c\x93\xa9\xba\xdc\xc8\x03\x6a\xdc\xc5\x8a\xe9\xf6\x6e\x3b\x6c\xf1\xeb\xdd\x7a\x95\x69\xb7\xf6\x97\x24\x4f\x49\x7e\x35\xd6\x77\x69\xdb\x10\x6d\xc5\x9a\xbb\xe7\xe9\x7e\x97\xda\x35\x7d\xd7\x2b\x75\x9a\x00\xbf\xa1\xff\x59\xe4\x6a\x4e\xb2\xda\x55\x39\xfc\xca\x8b\xba\x2f\x10\x22\xaa\xc5\x66\xfc\xd4\xb5\x19\xdf\x25\x54\x9f\x7a\x84\xea\x7d\xaa\x0e\x98\x11\x71\xbe\x54\x08\xbe\x9f\xe6\x3b\x2e\x46\x64\x59\x7e\xf9\xc3\x02\x8e\x98\xc7\x11\xb8\xe5\x1d\x69\x96\x19\xa2\xdd\x48\x77\x0f\xd3\xec\x1a\x7e\x2a\xd6\xc0\x56\xaf\x92\xaa\xea\x24\x1d\xed\x1e\x84\xc3\x78\xb7\xea\x54\x78\x56\xe4\x69\x47\xe8\xb0\xfa\xdc\x21\x8f\x73\xb5\xd0\xb3\xce\xd7\x42\x45\x9c\x6a\x0c\xb6\x78\xd7\xb0\x45\x83\xdb\x8b\x36\xa2\x12\x3d\x4a\x04\xd4\x7c\x54\xfa\x1b\xfd\xfa\x8c\x88\x2a\xfe\x19\x11\xb9\xc2\xa6\x5b\x38\xa4\xb9\x40\xf1\x20\xc5\xcf\xc5\x1d\x91\x04\xf2\xce\x29\x05\xf3\xce\xa9\x04\xf4\xce\x29\x3f\xf9\x54\xe3\x13\x72\xe7\x54\xf9\x0b\x4d\x64\x3b\x5c\xa1\x57\xb1\xfc\xb1\x4c\xee\xf5\xe8\x81\xa4\x07\x70\x8e\x65\x9e\x38\x04\x84\xcf\x90\xef\xe4\x5f\x24\xd5\xc2\xbc\x08\xd7\x37\x94\xff\x52\xfc\x98\x56\xfa\xf2\x37\xe3\xb7\x09\x82\x7e\xe0\x86\xdc\x7d\x4d\x7e\xba\xef\x9a\xfc\x4f\x49\xb5\xd8\x17\xfd\xbc\xe5\xce\xfe\xd0\x4b\xf5\xfb\xde\x4b\x75\xda\xb1\xef\x56\x1d\x8e\xf3\x5b\x5c\xaa\xf3\x0a\xc6\x9d\xba\xd6\xb8\xef\x52\x5d\x1b\xbb\x7e\xab\xee\xad\xb5\xfb\x5a\xbd\xa5\xca\xce\x7b\xf5\x96\x3a\xb7\x92\xf2\x17\xaa\x8d\xb6\x9b\x75\xfe\x02\xc6\x01\x57\xeb\x5a\x63\xa1\x39\xfd\x5a\xc7\xfa\x7a\x89\xbb\x75\xa3\x70\xeb\xd5\x3a\x6c\x25\x7b\xdf\x39\x1b\xcd\xd8\x88\xff\x2c\x11\x11\xdb\x76\x89\x07\xf7\x3d\xea\x4e\xdb\xb4\xc4\xa3\xfe\x3c\x64\x6d\xda\x17\x45\x03\xef\x96\x8b\xa2\xbb\xaa\x4d\x74\x5f\xb5\xdf\x90\xc5\xf0\xf8\x7f\x0d\x95\xff\x97\xcf\xcf\xec\x54\xf3\x33\x83\xfb\xce\xc9\xfe\x3b\x11\xcd\x8a\x57\xb1\x8a\xd2\x46\x93\x1b\xbe\xce\xc3\x61\x1c\xc3\x25\x27\xb0\xd9\x10\x48\x5f\xab\x00\xa1\x43\x47\x9b\xab\x35\x49\x47\x52\x97\x40\xbf\xfe\x8c\x6f\x7a\x32\x81\xa4\x48\x56\xd2\xaa\x83\xc9\xe2\xc8\x32\xeb\x85\xee\xff\x48\x5b\x64\xbf\xba\x5d\xa7\x61\x96\xce\x9a\x65\x2b\xa8\x5a\x60\x9f\xa8\x26\x4b\xfc\xb6\x4e\x96\xab\x51\x5e\x5c\x87\x11\xaa\xea\x64\xf6\x61\xa4\x28\x83\x59\x3c\xea\xb3\xfc\xa6\x89\xcc\x8b\x64\x53\xd7\xc6\xb4\x30\x16\x9f\x01\x33\xa3\x73\x1b\xac\x94\xba\x27\xe6\x37\x78\x22\xfe\x02\x68\x92\xd8\xbd\x1f\xfc\x94\x41\x6d\xf5\x96\xe2\x41\x83\x1e\x0c\x22\x97\xdd\x5d\x82\x91\xca\x3f\x1b\xaf\xeb\x5e\x1d\x9d\x3a\x57\x47\x87\xf0\xc3\xfb\x50\x76\x99\xac\x14\xb3\xba\x4c\x56\x5f\x9e\xab\x65\x8d\x7e\x0e\x4b\xbb\x4c\x56\x9f\xc1\xcf\xb6\x73\x8e\xed\xec\xac\x7a\x7f\x23\x66\xd0\xee\x61\x65\x79\x71\x71\xe4\xbb\x7c\x5f\x5e\xa4\xf8\x5f\x0f\xa9\xf6\xdf\xf8\xd2\x71\x91\xf9\x0d\x33\x90\xa1\xeb\x8b\xc4\xaa\xb0\xa7\x99\xb8\x30\xcc\x7b\x31\xb2\x78\xf8\x0c\x30\xf1\xa8\xd8\x99\x26\x2e\x20\xcc\x26\xc6\x4e\x6f\x04\xa7\x4f\xbd\x0a\x7a\xfb\x96\x5e\x1a\xfb\xb0\xa0\x39\xb7\x59\x7e\x51\x89\xae\xbf\x6c\x75\x42\xa6\x0d\xf8\xbb\x51\x48\x99\x6c\x7e\xc4\xc7\xd6\xed\x1e\xc1\x20\xba\x5d\x6b\x02\x94\x79\xc9\xac\xc8\xab\x22\x03\xdb\x03\xce\x0e\x6d\x78\x5a\xff\x3a\x29\xf3\x30\x78\x8c\x57\x25\x9e\x31\xb6\x6b\xd4\x79\xf3\xf6\xaf\xaf\xfb\x6a\x82\xa3\x4e\x5a\xe0\x2a\xbf\x5b\x77\x92\x2c\x2b\xae\x99\x2f\x09\xc9\xaf\x58\x50\x90\xa0\x77\x37\xa0\x40\x05\x1d\xae\x36\xe8\x24\xf9\xcd\xb2\x28\x71\xbf\xf3\x43\x85\x3b\x37\xc5\x5a\xba\x90\xb1\xe0\x3d\x21\x4d\x79\xb7\x20\x55\xc4\xce\x27\x9c\xa4\xfd\xbb\x51\xc3\x87\x65\x2e\x93\x52\x26\xd3\x2c\x16\x7e\xd1\x83\xfe\x62\xba\xec\xfd\x2f\xd2\xa9\x0c\xe7\x72\x0a\xa1\xb4\x17\x1f\xdb\x26\xe2\xa5\x63\x09\xe0\xe8\x1f\x8d\xa5\xbf\x73\xea\x5f\xfc\xc4\xb7\xf0\x77\x4e\xa3\x56\x19\xf1\xce\xa9\x90\x12\x13\xb6\xfc\x77\x4e\x0d\x04\xb8\x73\x0a\x28\x00\xb7\x1a\x09\x3c\x8b\xcc\x7a\x02\xe7\x80\x04\x1e\x55\xd6\xe2\x22\x1b\x21\x90\xa5\xe9\x4e\x22\xc2\xcf\x89\xbb\x0c\x88\xd6\xc3\xd4\x4d\xc3\x48\x2f\x47\x91\x8a\x3f\xbb\x76\xf9\xb3\x78\xad\x8d\xc7\x29\x7d\x24\x00\x8b\x8d\xea\xf2\xc5\x20\xd8\xe3\x77\xee\xc1\xf3\x43\x77\xee\xb1\x91\xde\xfb\xce\x58\x60\x79\xac\xde\xb9\xc7\x10\x9f\x87\x0e\x52\x05\x26\xe4\xce\x3d\xf6\x80\x1e\xb7\x73\xb1\xfb\x66\xf9\x8d\x18\x47\x71\xf9\x73\x24\xee\x2d\x21\x45\xdc\x2f\x28\x5c\xb0\x54\x89\x63\x41\x3b\x78\x94\x1d\x8e\x6c\x48\x43\x9e\xa6\x89\x1a\xcf\xee\xef\x5f\x5c\x30\x99\xe5\xe2\x22\x16\x6d\x28\xcb\x0f\xa7\xb4\x43\x93\x4d\xae\xdf\x63\x94\xae\xdb\x82\xfc\x53\x9a\xa5\x1f\x62\x1d\x71\xa8\x3d\xc6\x2d\x6c\xd0\x75\x4e\xff\x4b\x88\xcb\x2c\x94\x2f\x3f\x3a\x5b\x8e\x1c\xad\xcb\xb1\x57\x62\xde\x67\xa5\xee\xad\xb4\x5b\x9e\x6e\xa9\xb2\xf3\x4e\x7a\xd3\x34\x6d\xf5\x0e\xbb\x84\xa7\x5f\xca\x1e\x97\x15\x55\x07\xc6\xbe\xb6\x0f\x93\xd7\x05\xe5\xa6\x78\xbf\x5f\x60\x6f\xe9\xb1\xf5\xb2\xfc\x16\xb7\xe2\x3a\x73\x36\x99\x8e\xad\xd8\x84\x7c\x62\x76\x5c\x9e\x76\xbb\x60\xe1\xe1\x0d\xab\x24\xb4\x74\x20\x50\x09\xc3\x9d\xd1\x07\x7c\x03\x42\xc1\x08\xee\xd3\x59\xf0\x26\x6e\xc5\xca\xd9\x08\xeb\x81\x36\xfb\x56\xd4\xe1\x2c\x3f\xeb\x76\xdf\x7d\xe7\xcd\xbe\xef\x17\x71\xca\xd9\xfd\xbd\x78\x38\x8d\x0f\xc3\x23\xb5\x48\xbe\xd2\x92\xa0\xa5\xe9\xa6\x13\x12\xc6\x6f\xf4\x26\x39\xd4\x93\x59\x52\xd5\x46\x02\xf3\x4b\xd0\xbe\xcb\x64\x86\xcd\x04\xa0\xf9\x56\x1a\x3c\x7e\xfa\xdb\x28\x2d\xd5\xf7\x03\xeb\xfb\x1b\xeb\xfb\xf7\xd6\xf7\xb7\xd6\xf7\x1f\xac\xef\xe1\xe0\x0b\xe8\x10\xda\xac\x5d\x3d\x2a\x9b\x96\xd0\x35\xbe\x07\x20\x77\x05\xd8\xb9\x7f\xcb\x00\x3b\xf7\xf7\x07\xd8\xb9\xaf\x29\x3e\x1c\x4b\xc3\x07\xa6\xa5\x21\x58\x69\xda\x05\x84\xd5\x66\x8b\x35\xe2\x83\xfd\xd6\x88\x0f\x0e\xb2\x46\x7c\xe0\x58\x23\xba\x2e\x71\x76\x79\xd7\x45\x0e\xea\x19\xae\x71\x6e\x25\xc3\x55\xae\xfd\x9c\x7d\xe0\x9c\xb3\x74\x57\xc5\x16\xa2\xda\x2b\x9c\x58\xa3\xff\xbd\x5b\x84\xee\xbd\xd8\xc2\xe7\x96\x27\x54\x62\x0b\xcd\xdd\x62\xce\x8a\x50\xe4\xb7\x8b\x71\xa5\x50\xcc\xc8\xcd\x45\xd0\x63\x3a\x9f\x5e\x70\x2c\xf6\xc2\x9a\xd2\x90\x78\xa0\xc5\x4e\xc2\x38\x15\x2f\x5d\x94\xe1\x81\xe2\xbe\x10\x00\x0c\xb9\x9f\x0a\x39\x73\x52\x56\xb5\x14\xfa\x3b\x75\xc1\x52\x39\x95\xe9\x68\x86\x49\x81\x16\xe8\x80\x81\xf0\x12\x5f\xb7\xf5\xfe\x94\x79\xd6\xd2\xc6\x64\x03\x9d\xbb\x1c\x0f\xee\x8e\x3a\xaf\x33\x9c\x54\xb8\x43\xf7\x3d\xed\xec\x6e\x8e\xaf\xef\x76\xe8\x29\x43\xf9\x03\xc4\x04\x41\xbe\x1b\x75\x00\x84\x67\xb1\x3a\x55\x13\x5d\x91\xd1\x0f\xf6\x71\x39\x0e\xa7\x25\x25\x25\xcb\x48\x33\x8d\xf9\xb4\x8b\x17\x3f\x40\xd3\x16\xb3\xbf\xc2\xde\x4a\x8b\x4c\x30\x99\xee\x0f\x36\x10\x00\x1b\x95\x06\xf0\x34\x48\x43\xe6\xcc\x9e\xf3\x28\x8e\x95\x7b\xaf\xa5\xcf\x91\x19\xd1\xc6\x5a\x73\x16\xf9\x92\x71\xf4\x7a\xdc\x19\x3e\x2a\x51\x9c\xad\x4f\xe3\xba\x15\xb3\xe8\x74\xb2\xed\xa6\x11\x7c\x0b\xdb\x41\xf4\xcf\x58\x93\x41\xe3\x24\xcb\xe4\x37\xdb\x1c\xf4\xcf\xd8\x7a\xac\x23\xe6\xa0\x8d\xcd\x30\xf5\x31\x37\x45\x15\xa9\xda\x73\x18\xda\xba\x8e\x84\x56\xfb\x82\xa4\x23\x65\x52\x24\xb4\xa5\x23\xfe\x2f\x82\x45\xd0\x4b\x80\x79\xaf\x96\x00\xc7\xb9\x51\x44\x2d\x93\x9e\xcc\x0d\xe8\x46\x8e\xf5\x91\xa5\xf2\x54\xcf\xa6\xf0\x80\x50\xe6\x13\x18\xad\x91\x3d\x90\x66\xae\x0f\xa1\x2e\xc0\x86\xca\x1b\xad\x43\x46\x8c\x60\x22\x35\x43\xaf\x59\x8b\xd9\xef\x47\xf1\x0e\x6e\x6c\x04\xd9\xd0\xb8\x26\x99\xc1\x99\xa8\x03\x10\x73\x91\x30\x97\x1c\xa4\x07\x2d\x89\x1a\x9f\x0d\x76\xb7\x6b\x8c\xb8\x2d\x6c\x98\x1b\x74\x82\x99\xa8\xf9\xa2\xa1\x08\x83\x37\x27\x58\xd4\x81\x11\x54\xa4\x19\x13\x2d\xd7\x20\xfe\x28\x83\xbe\x42\xce\x9a\xe8\x8f\x39\x30\xbd\x0a\x7b\xdb\xc4\x2d\xd8\xa0\x60\x4e\xf2\x24\xcb\x6e\xb4\xf6\xa4\x25\x89\xb6\xc0\xba\xf5\xa6\xbd\x7a\x63\xa7\x37\xdb\x54\x4e\x79\xb5\xc8\x48\x90\xf2\x49\x21\xa9\x93\xb1\x35\x40\x96\x99\x9f\xcf\x8e\xee\x33\xdb\x05\x7a\x0e\x8d\xd0\x76\x85\xcb\x69\x0b\x5f\x2c\x9d\x6a\x3f\xe7\x72\xef\xd7\x4b\xeb\x87\xb8\xd6\xb6\xbb\x12\x6b\x56\xfc\x8c\x28\x8a\x92\x9a\xe0\xdc\x7a\xb9\x66\x72\xf3\x2c\xa4\xa5\xe4\xd2\x7f\xf5\xe0\x7d\x0c\xdf\x61\x23\xe7\x35\xdb\xa0\x05\xd1\x62\xa2\xbf\xfc\xde\xff\xa7\x70\xce\x39\x34\x4a\xe5\x6f\xe1\xc6\xe3\xce\xf5\xe9\x7e\xe6\xda\x72\xf5\x39\xd4\x8d\x67\x9f\x6a\x69\x1f\x42\xd3\x05\xb4\x31\x9a\xb6\x7b\x6e\xd1\x20\x10\xc6\x0d\x7b\xfa\x5d\xee\x24\xc0\x79\x80\x36\x97\xb7\x1e\xed\x0b\xfe\x62\xb1\x98\xdc\xcf\x9f\x32\x7d\x14\x48\x2d\xce\x8b\x80\x40\x57\x06\xf0\x4e\x84\x32\x40\x8e\xcf\xa0\xf4\x7b\x42\x99\x68\x95\x54\xa4\xb5\x3d\x71\x4c\x3e\x47\xa7\xa0\x0e\xa5\x73\x0f\x31\xe5\x23\x99\x90\x69\xa4\x19\x44\xef\x3f\xb1\xf6\x11\x16\x21\xe0\x4f\x3e\x6b\x87\xee\xda\x91\xce\x7e\x18\xea\xfb\xe1\xc2\x83\xec\x43\x85\xec\x7b\x11\x54\x7f\xa0\x68\x17\x86\x1e\x8c\x9b\x17\xfe\xa5\xb4\x91\xab\x7d\x1e\x39\x59\xfe\x2f\x98\x48\x2f\x15\xef\x7b\x62\xe0\xb4\x4c\xa5\x54\xfe\x6b\xfa\x5f\xef\x5c\xca\xa8\x86\x52\xc7\xa9\x1e\x7a\xe0\x3a\xc7\x6e\x97\xdb\x5b\x9b\xce\x26\xe7\x7a\x90\x4a\xd3\xdc\xfa\x16\x0b\x64\xee\x4f\x6e\x22\xbe\x6f\x85\xe4\x61\xf4\x4f\xe6\x70\xcb\x68\xec\xae\x80\x1c\x4e\x01\x77\x68\x6a\xf3\xfe\xb3\x0d\xce\xb7\x3f\x77\x3d\x32\xd6\x3e\x44\xb5\xaf\xfe\xe9\xc6\xa8\xdd\x91\xb5\x8e\xd1\x2d\xe3\x19\x23\x63\x87\x6f\xed\x51\xb2\x1f\x40\xd6\xae\x3c\xac\xfc\x76\x3b\x26\x2b\x3e\x36\x3e\x6d\x48\x3f\xef\x95\x2f\x75\x82\xda\x21\x51\x3f\xd9\x8f\xcd\x7c\xa2\xa4\x44\x94\x0f\xe4\x7b\x32\x9f\x0c\x0a\xf3\xe9\x28\x86\xf0\x72\xc6\xe3\x54\xb6\x5e\xd5\xd1\xa3\x2a\xb3\xae\xea\x50\x00\x1a\x33\x64\xbd\x6c\x5b\x63\x17\xb5\x56\x4d\xf7\x3b\x7f\xd3\xbb\x07\x61\xf3\x9d\x3e\x3e\xf3\x5f\xf8\x3d\x34\xa1\x9f\x7e\x9c\xd4\xb8\x9f\x17\xd7\xda\xe3\x64\x02\xcc\x90\x1e\x01\x34\x3f\xea\x5f\x01\xba\x86\xa6\xdd\x29\xad\x17\x0b\x85\xb6\xbc\xf6\x6c\x7b\xf3\x4c\x77\x71\x2a\xf4\xcb\xae\x66\x5c\xe8\xd7\x8f\x10\x16\x52\x1c\x4c\xd6\xb3\x67\xa2\x13\xf1\xc3\xda\x15\x5c\x2e\xb3\xdf\xe8\x36\x7c\xc5\xc4\x37\x58\x12\x89\x2f\x71\x25\xe3\x06\x59\x13\x89\xf2\x92\x46\xb3\x7f\xd5\xbf\x3c\x35\x04\x31\x11\x09\x3c\xe2\x84\xf8\xd4\x2e\x97\x94\xbd\x9c\xaa\xac\xae\x80\x8c\x13\x46\x7c\x0b\x67\x12\x09\x34\x8b\x09\xf5\x2f\x7a\x3b\xa4\x25\xd8\x10\x0e\x6d\x10\x87\x36\x8c\x43\x1b\xc8\xa1\x0d\xe5\xf0\x9b\x2f\x65\xe9\x75\x8b\x8b\x28\x69\x73\xb4\xef\x1e\xca\xbe\xa5\xb8\xef\x2d\xc2\xed\xb4\xed\x5b\x91\xbd\xf7\x19\x9e\x6b\x91\x85\x6d\xf9\xec\xb9\x17\xd1\xec\xc7\xf7\x5d\x8f\x70\x3c\xdf\x77\x3d\xc2\xb0\x7f\xef\xed\x88\xef\x2e\xd0\xba\x0c\x54\xb1\x5d\x5a\x4a\xad\x4b\xcc\xdd\x28\x2c\x6e\xdd\xb3\x4a\x5e\x9e\xdd\xb3\x48\x3e\x21\xc9\xb3\x50\xb0\x2b\x63\x1b\x1b\x9d\xf5\xac\x6c\xd0\xac\x65\xd2\xf5\xac\x31\x2d\x3d\xd6\xee\x71\x6e\xf2\x99\x15\x9b\xcd\x50\xcb\x1a\x59\xba\xd0\x1c\x6a\x31\x7a\xd4\xf3\x74\x73\x72\x85\xd4\xab\xbe\x5a\xf9\xf9\x5c\xab\x30\x9f\xb7\xd6\x50\xa6\x79\xbe\x98\x6d\x52\x40\x81\xcc\xfe\xc5\xc5\xeb\x37\xaf\x5e\x3c\x7b\xfb\xe4\xe2\xd9\xcb\xb7\xef\xde\xfc\xf0\xe2\xc9\xcb\x77\x8f\xde\x3d\x7b\xf5\xf2\xe2\xc2\x30\xe9\xfb\x68\xb8\xc2\xee\xaf\x3c\x56\x91\x8a\x02\xfd\x82\x9e\x3d\x2e\x26\x4d\x0b\xa4\x31\x77\x87\x68\xae\xb0\xa6\x17\xaf\x6d\x07\x21\xeb\x44\xd1\xc6\xeb\xa2\x69\x38\x11\x5a\x51\x46\x04\x5d\xf1\xc5\x0d\xd5\x89\x89\xf6\xdb\x28\x23\xae\x64\xac\x34\xb1\x35\xd5\x4f\x33\xc2\xaa\xbc\xb8\xd1\x53\xd9\xbe\xa7\x7f\x9c\x54\xd1\x9c\xf6\xdb\x8a\xd8\x0a\x5b\x9c\xff\x6b\xe4\xc1\xbe\x66\x7f\xad\x74\x41\xff\xe4\xaf\x7d\x21\x9a\xcc\xc3\x3e\x8f\xad\xb8\xac\xc5\x7c\x1e\x17\xf3\xf9\x17\x88\x33\x2b\xf6\xd5\x4d\x3e\x33\xdf\x4e\x4a\x56\xf1\x32\x31\x23\xd9\xf2\x2d\x0d\xff\xb0\x40\x75\xbf\xac\x49\x89\x5f\x14\xe9\x3a\xc3\x61\x80\xe1\x39\xcf\x26\x0a\xa3\xf1\x57\x8a\x9b\xbf\x62\xc1\x05\x3d\x07\xcd\xc5\xf7\x49\x85\xbf\xb9\x1f\x43\x81\x3e\x7c\x81\xe9\x23\x2e\x2b\xca\xd2\x06\xa7\xfd\x61\xff\xf7\x50\xfa\x72\x3d\x9f\xc3\xc3\x7b\x7c\x17\x2d\x59\xb7\xf6\x16\x83\xd4\x3e\x07\x3a\xda\x40\xb5\x98\x83\x1a\x06\xf0\x1d\x44\xfd\xef\xd9\x0f\xc6\x2f\x5e\x7e\x73\x7f\xb6\x48\xca\x2a\x0e\x1e\x7d\x7f\xfe\xf8\xc9\xd3\x3f\xfe\xe9\xd9\xff\xf8\xf3\xf3\x17\x2f\x5f\xbd\xfe\xcb\x9b\xb7\xef\x7e\xf8\xeb\x8f\xff\xf6\xd3\xbf\x27\x97\xb3\x14\xcf\xaf\x16\xe4\xe7\x0f\xd9\x32\x2f\x56\xbf\x94\x55\xbd\xfe\x78\xfd\xe9\xe6\xef\x83\xe1\xe9\xbd\xfb\x0f\xbe\xf9\xfd\xb7\x7f\xe8\x9d\x70\x50\xbf\xb9\x5f\x27\x97\x8a\xb3\xbb\x24\x3c\xde\x7d\x1d\x6f\x9a\xb1\xe9\x4e\x7f\x49\x72\xdb\x91\xbe\x9e\xd0\x44\x0a\xd1\xa3\x3a\x24\xd1\x34\x26\xf2\x2a\xa5\x09\x05\xac\x70\x21\x36\x2f\x8b\xe5\xf9\x22\x29\xcf\x8b\x14\xc7\x9c\x73\xd6\xd3\xe0\x94\xb8\xbc\x58\xd7\x85\x06\xcf\x0c\x76\x39\xef\xf7\x3b\x11\x2c\x6f\x16\xcf\x58\xaf\xb4\xe2\xa3\x3a\x1c\x48\x2d\xc6\x6c\xf6\xdd\xf0\xf4\xdb\xb3\xd9\x68\x36\xfb\xee\x74\x70\xff\xdb\x33\xbd\x8b\x70\xf8\x87\xd3\xed\x6c\xf6\xf0\xe1\xc3\x6f\xa2\x9e\x99\x71\xfa\xed\x76\x36\xeb\x7e\x73\x2f\x1a\x19\xe9\xa7\xa7\xf7\xa1\xc2\xf0\xb4\x3b\x7c\xe0\xad\x44\x5b\xa3\x15\xdb\x1a\x54\x4f\x85\xcc\x66\xf1\x37\x0f\x1e\xdc\xfb\xa6\x17\x5a\xc0\x1f\x3f\x78\x70\xfa\x87\x6f\xa2\xaf\x87\x83\xd3\xfb\x56\xe6\x30\x3a\x7e\xf0\xcd\xbd\x53\x35\x40\x13\xbc\xfb\x03\x0e\xde\xb7\xdd\xdf\xb7\x41\x37\x3c\x6d\x03\x6f\x2f\xe8\x0d\x3f\x45\x61\x51\x4e\x26\xef\xd7\x8f\xbf\x1d\x0c\x8e\xdf\xaf\x1f\x7f\xff\xf4\xe9\x94\x7e\x9e\xc3\xe7\xd3\xa7\x4f\x9f\x4e\xb7\x93\xbf\xbd\xff\x44\xbf\x3f\xfd\xfe\xe9\xf4\x04\x8e\x7d\x73\x35\xd7\x52\x9a\x5a\xf7\x4b\xbc\xca\x92\x19\x0e\x79\xeb\x88\x2f\x7d\xd4\x08\x44\xc0\xf9\x8c\xa2\x8a\x42\x85\xd9\x4c\x5c\xd5\xa6\x19\xce\xe3\xc9\x00\x9d\xa2\xe1\x74\x32\x9b\x09\xf4\xf8\xdd\xbd\x29\x2a\xca\x34\xa6\x29\xc6\x04\x7f\xf7\xdd\xf0\x9b\x6d\xa8\x0a\x3e\x1c\x9e\x59\x65\x86\xd1\x88\x16\xfb\xd6\x28\x75\x6a\x97\x3a\xa5\xa5\x10\x6c\xc0\x89\x40\x6f\x81\xfe\x45\x99\xb2\x95\x88\x50\x4b\x0e\x5b\x07\x04\xd0\x3f\x8c\x4f\xcf\x82\x38\x18\xf9\x8b\x7e\x63\x94\x1c\xb6\x95\xa4\xa5\xa6\x12\xf3\x59\xe6\xcf\x05\xc9\xc3\x20\xe0\xb3\x78\x59\x17\x89\xa0\x59\xf4\xf7\x99\xda\xe7\x72\x25\xb4\xec\xf0\x32\x6a\x46\x9e\x22\x97\x72\xb1\x4e\x26\xef\xab\xf7\x6f\xa7\x9b\x21\xba\xd7\x9c\x5c\x21\xb9\x4a\xbc\x3f\xb1\x66\x40\xb9\xce\xdc\x75\x0f\xd7\x96\x62\x13\x4a\xea\x89\x67\x6b\xe6\x44\x05\x19\xe1\x3a\x8a\xa4\xa0\x1d\x06\x97\x8c\xee\x06\x3a\x94\x0a\xa5\xd8\x08\x28\x0a\xd1\x4a\x00\x8f\x8d\x42\x6b\xb4\x2e\x49\x95\xcc\xe5\x85\xee\x11\xff\x3e\xe3\x90\x87\xbc\xa7\x75\x14\x8d\xdc\x24\x6d\x1a\x7a\xef\x4f\xa6\x27\x57\x4a\x5c\x5b\xca\xa7\x25\x3a\xcb\x41\x1c\x07\xbd\xe0\x2c\x38\x0e\x46\xc1\x45\xd0\x68\xd5\xe2\x93\x2b\x24\x17\x07\x9a\xff\xe1\xcd\x33\xdf\xfe\xe0\x7d\xaf\x81\x13\x92\xfb\xf0\xb2\x2e\xd6\x4c\xcb\xfb\x06\x5f\x3d\xf9\xb4\x0a\x27\xc1\xe4\x3f\xff\xd7\xf1\x7f\xfe\xff\xa6\x93\xff\xf8\x5f\xc7\xff\xf1\x7f\x4d\x03\x14\x4c\xfe\xf3\xff\x7f\xfc\x9f\xff\xbb\x48\xd8\x9c\x36\x2c\xed\xff\x38\xfe\xcf\xff\x53\xa6\xdd\x6b\x82\x29\xc7\x94\x6d\x10\xa1\xe0\x2a\x88\xc4\xa6\x63\x1d\xe8\x5b\x6e\x16\x6d\xaa\x6b\xc2\x9e\x38\x50\x3b\x23\xda\xcc\x92\x0a\x77\xee\x8f\x58\xad\x55\x1c\xfe\xbe\x3b\x73\x36\x1d\xdd\x75\xdf\x6e\xc3\x6f\xee\x39\x79\x43\x96\x77\xea\xcd\x3b\xa5\x79\xdf\x6c\x3d\x39\xf7\x22\x54\xcc\xe7\x15\xae\xe3\xd9\xea\x98\x11\x52\x2f\x4d\x0c\xa1\x10\xdd\x70\x83\xa8\x07\x94\xb5\xe7\x2b\xd1\x1d\x0e\x4e\xef\x45\x3d\x4e\x5e\xd9\x80\xee\x8d\xbc\x2d\x0e\x1f\xb4\x0c\xcf\x3f\x84\x61\xeb\x10\x4e\x23\xa6\xfa\xa0\xe2\x82\xbf\xa7\x7b\x43\x7f\x4f\xde\xd6\x86\x91\x8c\xc5\x6c\xac\x9a\x6f\xe3\x72\xdc\x41\x7c\x89\x15\x95\x4d\xb1\x43\x65\x67\xea\xdd\x79\x6d\xcd\x39\x39\x8a\x33\x9c\xff\xee\x3e\xca\xe3\x90\x3d\x33\x7f\x06\x0c\xc4\x44\xc2\xc6\x20\x9e\xd2\xa5\x1f\x0d\xa2\x2d\x2b\x34\xf4\x15\x1a\xb2\x42\xa7\xb2\xd0\xa9\xaf\xd0\x29\x2d\xf4\x8d\x2c\x73\xcf\x57\xe6\x5e\x34\xd5\x88\xb2\x31\x9d\x39\x45\x82\x6f\x22\xe4\x24\x7e\xdb\x3d\x7d\xf0\xc0\x4e\x67\x69\xd3\x31\xd0\x51\xfe\x06\x33\x3d\x64\xf8\x31\x03\xc3\xdf\x49\x6e\x13\x7a\xd8\x71\x7a\x4a\x7f\x2b\x02\x98\xd8\xe4\x96\x66\x87\x89\x4e\xc8\x54\x91\xc4\x43\x6e\xef\x73\x72\x0b\xcb\x25\xc8\x2d\x5f\x3c\x9b\xdc\xca\xa6\xc2\x64\x3f\xb9\x4d\x74\x72\x9b\x20\x49\x63\x35\xba\xeb\x07\x93\xe2\x51\xc8\xc7\xc1\x01\xb2\x91\x49\x15\xe6\xa0\x0a\x62\x9a\xe8\xb4\xf4\xf8\x62\x27\x29\x3d\x0e\xce\x82\x5e\x30\x0a\x4e\x0c\x52\x3a\xf9\xdb\xa3\xe3\x7f\x4f\x8e\xff\x3e\x38\xfe\xc3\x7b\x4e\x8c\x83\x40\xc0\x91\x17\xe7\x45\x3e\xcf\xc8\xac\xb6\x0d\xf4\xbd\x7c\xbc\xf1\x15\x73\x5e\x5f\x2c\x34\x7c\x35\x56\xa1\xcd\x5f\x9f\xbc\x79\xfb\xec\xd5\xcb\x11\xe7\xff\x11\x9d\x88\x11\xfd\x83\xe8\x39\x34\xa2\x7f\x18\x7e\x41\xf9\x11\x0c\x1f\xd5\x05\xff\x06\xfa\x8e\xe8\x71\x35\x62\xec\x0f\x24\x88\x74\x79\x36\x8c\xe4\x2f\xda\xee\x7a\xc4\x36\x31\x34\x26\xda\x54\x83\x1d\xa9\x9f\x8d\x26\x7d\x70\xe5\x2e\x08\x1e\x42\x40\x36\xf4\xf4\x30\x37\x79\xf1\x24\x5f\x2f\xd5\x8c\x7d\x94\xc1\x3c\x79\xe8\x4e\xc4\x8d\x87\x2e\x33\x0c\xc1\x88\xd1\x75\x49\x6a\xf6\xc9\x8c\x71\x84\x48\x28\x53\x1a\x6b\xda\xfa\xf8\x53\x8d\xf3\x94\xbf\x46\xab\x2d\x8d\x17\x44\x8e\x2c\xda\xfb\xba\x81\x9a\xd1\x00\x01\xb8\x1e\x6b\x2b\x8e\x6a\x60\xc1\x19\x45\xe3\x43\x1b\x17\x8b\xe3\x36\x6d\x71\x0d\xe2\x74\x66\x26\x1c\x22\xef\x73\x7a\xfa\xe1\xcd\xb3\x1d\xe3\xd0\x7b\x01\x36\x20\x62\x26\x5e\x30\x32\x11\x29\x6f\x12\xbc\xc0\x35\x2e\xca\x60\x1a\x6d\x7c\xd8\xdd\x9c\x9c\x74\xce\x8b\xd5\x4d\x49\xae\x16\xf5\x48\xfd\xec\x9c\x0e\x86\xf7\x3a\x8f\x8b\xd9\x87\x9f\x92\x32\x45\x9d\xe7\xcf\xcf\xfb\x9d\x24\x4f\x3b\xb3\x22\xaf\x4b\x72\xb9\xae\x8b\xb2\xea\x7f\x75\xa4\xc1\xf5\x84\x4a\xcd\xfd\xbf\x4a\x77\x9b\x2a\x86\x14\xe6\x2a\xb7\x4a\x66\x98\x5f\x20\x84\x72\x77\x04\xc3\xfe\xa0\x3f\xe8\x5f\xe2\x3a\xe9\x9f\x06\x4d\xd4\x84\x11\xda\xd5\x60\x9f\x47\x73\xaf\xe2\x4d\x89\xf3\x54\x0f\x36\x55\x23\xd0\xf8\x40\x9d\x67\xc3\x6f\xf3\x88\xcf\x93\x4a\xe9\xd7\xdc\x16\xb4\xea\x07\x3d\x5a\x01\xac\x91\x74\x8e\x29\xd8\x6c\xc2\xfe\xd7\x67\x51\xd3\x04\x11\xc2\x71\x10\x88\x7d\x4e\xfa\x35\xae\x78\xa8\x51\x7e\x46\x57\x93\x7a\x1a\x75\xbb\x21\x8e\x49\x1f\x7f\xc2\x33\x37\x73\x32\x9c\x46\xc8\x4e\x95\x44\x8a\xa0\x6a\x82\xa7\x51\x83\x44\xe6\x68\x43\xf2\x59\xb6\xa6\x04\x63\x14\x90\xaa\x93\x17\x75\x87\xa5\xa4\x38\xed\x90\x9c\xd9\x59\x67\xa4\xaa\x03\x84\x3f\xe9\xe5\x4a\xcc\xe2\x9f\xa7\x01\x22\x39\xf3\x76\x62\xa9\xfc\x77\x00\xfb\xae\x5c\x82\xef\x6c\x20\x5c\x65\x97\x49\x3d\x5b\x74\x36\x9b\xa4\x86\xe5\xc4\x4d\x13\xa0\x64\x36\xc3\xab\x1a\xa7\xa3\x40\xf8\x3e\x89\x94\x00\xe1\xe5\xaa\xbe\x19\x05\xb3\x84\xd6\xbe\xc4\x1d\xf6\x1d\xa0\xcb\x2c\xc9\x3f\x68\xc9\xec\x3b\x40\x2b\x0a\x54\x5e\xab\x86\x78\x7a\x5d\x14\xcf\x8b\xfc\x8a\x41\x58\x17\x45\x27\x2b\xf2\xab\x4e\xb8\x4c\x3e\x91\xe5\x7a\xd9\x21\x55\x67\xb3\x61\x76\xdb\x4d\xd3\x91\x4f\x0a\x54\x11\xab\xf7\x76\x51\x94\xb5\xac\x58\xd1\xaf\x4e\xb8\x24\xf9\x9e\x9a\xd7\x65\x91\x5f\x41\x14\x22\xa8\xbc\xc0\x1d\x96\xc6\xcd\x98\x3a\x61\xb5\x28\xd6\x59\x4a\x81\x6c\x69\x22\x2f\xea\x47\x2f\xd7\x14\x8f\xe4\xba\x24\x9d\x9c\x25\x40\x66\xfe\x2c\xaf\xf1\x15\xcd\x96\xf3\x96\x77\x08\xa4\x05\xe8\x8a\xa1\x7d\xf9\x6e\x91\xe4\xaa\x00\x4f\xec\xd4\x8b\x24\x57\xfd\x1a\x85\x5f\x95\x4f\x7e\x59\x27\xd9\xbb\xa2\xa5\x56\x51\x76\x30\x2d\xd0\xa9\x0b\xbd\x05\x6c\x57\xf2\x15\xca\x70\x55\x99\x00\xd1\x14\x07\x1a\x51\xcc\x03\x8a\x2a\xdf\x02\x47\x51\x2f\xec\x41\xb3\x24\xa7\x93\x22\xd5\x10\xae\x48\x29\xae\x7d\xc4\x5a\x2d\xfa\x15\xa0\x75\x99\x69\xb3\xcf\x70\xbb\xf3\xc3\x9b\xe7\x41\xd3\xec\x25\x1b\xcc\xd8\x4d\x90\x23\x4e\x85\xe1\xac\x09\x37\xfc\xf5\x5f\x41\x8e\x35\x8a\x62\x5a\x19\x57\xb8\x0e\x6b\x04\x4d\x2c\x93\x0f\x18\xec\xec\x22\xbe\xbf\xaf\x68\x2e\xf3\xc5\x35\x61\x01\x5d\x19\xd4\x7a\x41\x3e\x91\x5c\xd2\x40\x52\x31\x08\x47\x2e\x61\x1f\xc4\x71\x2c\x1b\x0d\xb8\xfb\x62\x51\x56\x41\xd4\x9f\x15\xcb\x55\x32\xab\xc3\x88\x6b\x30\xbf\xbf\x09\x03\xde\x50\x80\x8e\x86\x11\x54\x01\xbc\x0e\xa2\x86\x1e\x2a\x70\xc8\x68\xcd\xf4\xff\x3b\x4e\x66\x8b\xbe\xa8\x16\x21\x52\x3d\xe3\x64\x03\xe0\xa4\x9d\xac\x6b\x9c\xf6\xf3\xa2\x56\xcd\x47\x4d\x84\xaa\x58\xa3\xb7\x44\xdc\xfb\xd6\xac\x57\x12\x8d\xeb\x7e\x89\x97\xc5\x47\x2c\xdf\x63\x20\xa8\x8a\x50\xdd\xd7\xfa\x5e\xad\xab\x05\x7f\x5b\x10\x3a\x13\x06\x8b\x45\x74\xa6\xce\x87\x65\x91\xe2\x6c\x54\x23\x01\xfe\x88\x50\x22\x56\xe3\xbc\xfe\x1e\x9c\xf8\x47\x01\x2b\xd2\x0f\x7a\xa4\x89\x46\x45\xd4\x20\x12\xeb\x0b\xc7\xac\x39\xe3\xba\xcf\x5e\xd2\x67\x21\x02\xc6\xc6\x69\xa0\x23\x87\x06\x5d\x56\xcc\x92\x6c\x52\x4d\xb7\xdb\x9d\xc5\xe8\x28\x6b\x3c\xa9\xa6\x0d\xc2\x7c\x6d\xd9\x20\x5e\x97\xc5\xa7\x1b\x81\x58\x35\xda\x08\xaf\x56\xcf\x1a\x9b\x51\xbd\xc3\xa8\x41\x17\xbe\xd2\x80\x3e\x0a\x19\xf8\x2c\x04\x11\xf7\xb2\x0a\x03\x59\x2d\x88\xfa\xd7\xa4\x5e\x14\xeb\x3a\x84\x47\xd8\xad\x21\xb3\x98\x09\x49\x96\x51\x34\x65\xef\x39\x90\x9c\xd4\x01\x7b\xd6\x90\x8f\xcb\x5e\xfe\x24\x23\x49\xa5\xf5\xd9\x44\x63\x77\x5a\x18\x52\xfb\x10\xbc\x46\x1b\xda\xc3\xc8\xf1\x06\x66\x6e\xc5\x21\xdf\x37\x58\xdf\x99\xee\x96\x15\x8d\xf1\xd2\xf2\x72\xad\x56\x45\xff\x8c\x6f\xaa\x78\xd3\x40\x01\x35\x98\xd8\xd9\xa9\x08\xa6\xc5\xb7\xb9\x68\x8f\x01\x3d\xca\xf5\x46\x18\x07\xb3\x69\x78\xd7\x97\x6b\x92\xa5\x7f\x95\xcd\x0b\x88\x34\xac\x98\x17\xe5\x93\x64\xb6\x08\x75\x3c\xac\xfb\x49\x9a\xca\xed\x20\x98\x8f\xc9\x14\x1c\x88\x90\x8b\xb2\x0e\xd4\xe3\xbd\xdd\x90\x68\x43\xe4\x46\xa7\xa3\x93\x1f\xdd\x6e\x58\xc5\xcc\x93\x61\x96\xd4\x21\xe1\x93\x1d\x45\x30\x59\x7c\x04\x94\xae\x69\x5c\x91\xac\x8c\x28\x77\xcc\x4b\x36\xc8\x1a\xbe\x83\xa3\xec\x2e\xa0\x06\x26\xc5\x9c\xc2\xc8\x4e\xa0\x2c\x90\x29\x76\x02\x41\x38\x53\xf3\xfc\x66\x9d\x61\xd9\x59\x58\x47\x23\x95\x05\x65\xf5\x4c\x0e\x9c\x51\x67\xe4\xcc\x2c\x03\xb0\xf2\x01\x48\x19\x35\x1f\x8c\xd6\x8d\x61\x15\x75\xbb\xf6\x5a\x68\xd4\x8c\x84\x55\x64\xd3\x2f\xba\xc4\x92\x84\xd5\x22\x0a\xea\xc8\xd3\x19\xa5\x25\x91\x18\x89\x35\x44\x63\x2c\x82\x68\xbe\x2c\x72\x60\xfd\xf9\xc9\x13\xc1\xec\xe9\xd8\x56\x03\x8e\x55\xd1\xa8\xe2\x42\x42\xd4\xa0\xdd\x44\x66\xdc\x42\x9d\x2c\x07\x13\x1e\xbb\x86\x70\xca\xcf\xb1\x27\x90\x04\x87\xa1\x5c\x9d\x90\xbc\x0a\x8f\x86\xd1\x99\x46\x7f\xb8\x51\x22\x89\x46\xa4\x39\x80\xe6\x69\x53\xfd\xa5\xe8\xdd\x01\x42\xc6\x2a\xa9\x6b\x5c\xee\x10\x5f\x98\x98\x4b\x66\x49\x46\xea\x9b\xd1\xc9\xdf\xc2\xe3\xed\xfb\x5e\x74\x16\x9e\x8d\xde\xa7\xbd\xed\xfb\x94\xa9\xbf\xc3\xb3\x11\x7a\x9f\x6e\xee\x35\x51\x2f\xa2\x39\xfd\xf7\xe9\xd7\xd1\xd9\x9d\x13\xce\x2f\x9f\xfc\xed\x7d\xf5\xf5\x9d\x93\x03\xa0\x71\x48\x9a\x03\x4f\x84\xf6\x1f\x6a\x9f\x59\x17\x4e\xba\xd6\xca\xb7\x00\x9e\x89\x9b\x7e\x0e\xcc\x7b\x4c\x68\x64\x29\x68\xe5\xba\x5a\xcf\x03\x97\xf8\x0b\x9f\xae\x94\xc5\x08\x48\xb2\x2a\xde\x04\x64\x1e\x8c\xd4\x59\xc0\xb7\x67\x9f\xcc\x83\x08\xad\x73\xca\xde\x7a\x72\x21\x23\xe0\x94\xb1\x0f\x6c\x88\xb1\xed\x78\x6c\x07\x20\xa2\xb0\xf1\x8c\xed\x14\x35\x48\x2b\x5f\x3d\x2d\xca\xc7\xfe\x51\xb8\x47\x67\xcb\x70\xfd\x47\x4f\x0b\x78\x2d\x20\x01\x9d\xd7\x19\x03\x4a\xdc\xfc\x90\xbd\x2b\x5e\x30\x02\xb7\x83\x51\x61\x1d\x07\xd1\x58\x9d\xb9\xad\xd0\x4f\x8c\x19\x9b\xd2\x53\xf8\xd0\xb2\xee\x3a\x53\x76\xf3\xc0\xca\x30\x2d\x14\x13\xab\x70\xe7\xf4\x9a\xd3\x32\x4b\xb2\x6c\x64\x1b\xf8\x06\x2f\xa9\xa8\xbe\x5c\x65\x78\x89\xf3\x1a\xa7\x47\x41\x83\x76\x09\x16\x9c\x3f\x75\xa6\x4b\x10\xd0\x33\x41\xd7\x47\x30\x81\x0d\x12\xe2\x82\xc5\xa3\x31\x21\x5c\x67\x2c\xa2\xdf\x86\xc4\x03\x22\x39\x84\xfe\x8c\x8c\x7c\xd4\xbd\x95\xb6\xeb\x9d\x73\x98\x67\x19\x4e\x24\x3b\x38\x4b\xf2\xbf\x4a\x90\xf8\x79\xcb\xec\x67\x05\x9d\xe2\xfd\x80\xd9\xb7\x9a\x3f\x29\xa4\x9c\x1d\x0d\x46\x47\x43\x7b\xc5\x64\xa3\x3a\x2c\x64\x1e\x0a\xcb\xa4\x23\xf1\x18\xa4\x43\x25\xb8\x12\xe9\x68\x20\x5f\x9e\xd0\x73\x27\x94\x84\x4c\xa1\x29\xa9\x2d\x8d\x5b\x1b\xe3\xc5\xf5\x49\x70\xb3\x43\xb5\x71\x91\x81\xb0\x4c\xa5\x17\x54\x4c\x5b\x78\x68\x27\x6d\x50\xb1\xe6\x27\x2d\x75\xa7\x67\x07\x94\x09\x39\x53\x06\x88\xc1\x90\xb5\x05\x12\xb0\x70\x20\xf3\xf0\xc8\x29\xc1\xa9\xa9\x31\xc9\x87\x4c\xa4\x55\xaf\x2d\xff\xd7\x4e\xa5\xd9\xcd\x2d\xe7\x92\x57\x9e\x9e\x1d\x1d\x52\x2a\x8c\x46\x47\xfb\xe6\x53\x80\xd3\xb8\x6a\x86\xfd\x0c\x40\xff\xd1\x65\x85\xf3\x19\xf6\x88\x5a\xd6\x21\xbd\xfb\x5c\x36\xc5\x37\x7e\x2a\xc6\x71\x7c\x34\xe0\xdb\xb5\xd2\x4e\xcb\x00\x51\xf9\xc9\x94\xbb\xc4\x41\xca\x55\xb9\x9e\x5a\x22\x2b\xf0\xf0\x26\x42\x01\xdc\x07\xfd\x6f\x18\x70\x3d\x63\x60\xc0\x43\x59\x69\x9b\x4e\x0b\xce\xf9\x09\xa3\x98\xbe\xb9\x96\xd8\x11\x6d\xb7\x3a\x85\xd2\xb8\x7c\xdf\x08\x3c\x5a\x9f\x43\x96\x83\xe9\x55\x93\xff\x07\xae\x88\xd2\x18\xef\x5b\x12\xa3\x77\xa8\x76\xb6\x73\x61\x8e\x2c\x88\xa1\x0e\x07\xf8\xc0\xd5\x1a\x05\xc3\x40\xb4\xd3\xd6\x4f\xb7\x3b\xdc\x5f\x64\x1f\xa4\x72\xfe\x7f\x4b\x34\x3a\xd7\x74\xfb\xbf\x16\x91\x8a\x92\x5c\x91\x3c\xc9\xe4\x1d\xa0\xcb\xca\x2a\x3d\x83\xf1\xd5\x0b\x74\x38\xf8\xc2\x9b\x78\xd9\xca\xbb\x3a\xd3\x62\x41\xe1\xc5\xeb\xd0\x87\xd8\xf2\x26\x63\xe4\x6d\xa8\xd1\x15\x1e\xaa\x16\x9f\xfe\xd1\x01\x98\x3d\x73\x07\x29\x9f\x06\x69\xc5\x6f\x0b\x43\x9c\xe1\x1d\x88\x68\xbf\x25\x12\x3d\x11\xb7\x49\xbf\x09\x29\xb2\x94\x3d\x3c\x26\xac\x6f\x29\x02\x92\x73\x81\x8c\xa7\xfd\xd6\xa4\x4a\x5e\xa3\xed\xa7\x55\x8c\x83\x46\xd5\xf8\x36\xc7\xc8\x99\x1f\x78\x16\xa4\xf6\xfb\x2c\xc9\x3f\xdc\x92\x72\xe9\xa9\x13\x3a\x59\xd3\xb3\x63\x4a\xa8\x00\xa6\x3b\x7d\x92\x6b\x4f\xfe\xb5\x41\x85\xdc\x56\x6e\x89\x63\x06\x1c\xfd\x32\xc9\xe9\x42\x84\x75\xec\x26\x4f\x06\x53\x54\xf9\xd2\x87\x53\xb4\x13\xc8\x87\x71\xbd\x87\xc0\x7e\x17\x57\xb7\x83\xfa\xf3\xb6\xc6\xd3\x82\xee\xf7\x7f\xc4\xbe\x80\x0b\xe8\x96\x8d\x71\x4d\xea\xc5\x3f\x76\x6b\xc8\xdb\xe3\x2f\xc9\x57\xfd\xb6\x1b\x82\x4d\xd2\xb4\xdb\x3d\xf2\x25\x6b\xd7\xf7\xed\xe0\x7d\xfe\x2e\xe0\xaa\x48\x0e\xbf\x95\x7a\x48\xdf\xff\x00\x32\xff\x2c\xff\x7f\x29\x99\x97\x56\x15\xff\xc2\x64\x3e\xfe\x17\x25\xf3\xbb\xa1\xfc\xae\xe6\xa2\x56\xeb\x41\x50\xdd\x12\xea\xcf\xdb\x1a\xfc\x7d\xac\xcf\xdf\x17\x02\x6f\xe6\x3c\x0c\x95\xda\x23\x01\xb7\x13\x31\x95\x06\x1c\x6c\xff\x06\x21\xd5\xad\xb6\x87\xaf\x15\x99\x07\x02\x5f\x1d\x0f\xc6\xf5\x77\x30\xd3\x90\x41\x79\xef\x30\x92\x71\x7c\x7b\xbd\x88\xaf\xa0\x91\x3f\xa9\xa7\xbc\x6f\x4b\xf4\x9a\x54\x53\x93\xd6\x4d\x2a\xfb\x56\x0f\xec\xda\x8c\x63\xdc\xd1\x93\xab\xca\x5e\xb5\xf4\xd8\x18\x6e\x5d\x7c\xc0\x39\xf9\xbb\x78\x81\xd2\x49\xd6\x1c\xd3\x35\xdb\x0d\xf6\x52\x61\xcd\xac\x70\x1b\x74\xfe\xa7\x27\xe7\x7f\x7e\x3b\xa2\x33\x1c\xc4\x71\x80\xb8\xf5\xd0\x28\x78\x48\x3f\xc0\x08\x69\x14\x7c\x17\x07\x0d\x7a\xf1\xe4\xed\xdb\x47\x7f\x7c\xc2\x0b\x6b\x46\x44\x5a\x2d\x61\x94\xa4\xd5\xe5\xf6\x4d\x41\x83\xae\x30\x15\x75\xd6\xb8\xd5\xa2\x44\x0c\xde\xb9\x0f\x85\x99\xf3\x8a\xc2\xaa\x4e\xb4\xdd\x0e\x46\x56\x5a\x83\xb4\xd5\xf3\xe8\x5d\x01\xbf\x3f\xd0\xa5\x65\x35\xc5\x18\x29\x21\x5c\xe0\xd9\x87\x03\xab\xc1\x2c\x46\x0d\x02\x02\xfb\x02\xfa\x7c\xea\xbb\x76\x45\x24\x06\x3b\x1f\x79\x95\xc2\xe6\x24\xac\xa3\xc6\xba\x91\x15\x44\x99\x4c\xaa\xa9\x8d\x6a\x63\xcf\xb4\x49\x0c\x9f\x18\x43\x99\xd4\x53\xaf\xf9\x86\x7d\x28\xd8\x95\x10\x91\xe3\x61\x34\x9b\x0f\xaa\x4d\x79\x2d\x2f\x8b\x2a\x58\x26\x7b\x26\xc2\x80\x54\x81\x45\x42\x39\xda\xb4\x55\xe0\xd9\x81\xd2\xf9\xb7\x1c\x4e\x88\x8c\xa5\xa1\xe3\x61\x27\x54\xb4\xff\x84\x0a\xad\x61\x71\xba\x6c\xc1\xbe\x87\x18\xbb\xf3\x17\x46\xd1\x98\x3d\xd8\xc0\x9e\x59\x90\x8b\xcd\x31\x88\x93\x1c\xf8\x9a\x90\xa9\x79\x68\x11\x76\x17\xc4\xac\x33\x65\x44\x91\x80\x2f\x42\xd0\xf3\xd3\x80\x3d\x13\xc1\xe9\x5d\x2f\xe8\x04\xbd\x8a\xfd\x35\xd1\x92\x44\x11\xaa\xc3\x3d\xfa\x3f\x67\xe9\x48\xf4\x99\xc7\xce\x4b\xed\x22\xf9\xd7\x1f\x3e\x88\x78\x8e\x1f\x7d\x9a\x98\xf2\xe4\xcc\x48\xd9\x34\xa3\x1d\x4c\x9c\x20\xe1\x21\x31\x10\x07\x59\x4d\xd8\xcb\x16\x1f\x0d\x22\x14\xee\x3e\xb3\xb6\xdb\xdd\xf9\x7d\xfd\x92\x3d\xb2\xf1\x53\xda\x01\xb7\xb4\x6d\xc1\xa4\xd9\x0d\x1b\x77\xf7\x07\xf0\x8e\xca\xf4\xd3\xd1\xf8\xf8\x4f\xc6\x7e\x91\x67\x37\xdc\x1c\xb4\xdb\xdd\x33\x48\xa3\xac\x7f\x88\x7a\x19\x0f\x8e\x78\x01\x16\xe6\xa8\x36\xbf\x8b\xc4\xcd\xb8\x43\xcb\x85\x91\xd0\x24\x60\xf6\x97\x01\x33\xb9\x9c\x0a\xc6\xa1\xd2\xf9\x04\x12\x57\x8c\x5e\x56\x2f\x93\x97\xa1\xb5\xf2\xd1\x61\xc7\x3d\xf1\x1f\xf7\x2d\xac\x06\xa5\x03\xbb\xe7\x11\x48\x85\x57\x17\x42\x50\xcb\x88\x1d\x9c\x62\xc7\x94\xdd\x73\xe4\xc7\x23\x8a\xe4\xfb\xd7\x82\x98\xd3\xdf\x82\x2f\xac\xdf\x6e\x37\xc5\x19\xae\x71\xc7\xcd\x8a\x14\xdb\x22\x2d\x7b\x63\xca\xbc\x18\x66\xc5\x0f\xdb\x2c\x87\x29\x67\xa3\x8c\x7d\xbf\xf3\x9a\xf4\x32\x86\xa7\xf5\xb4\x41\xf8\x37\x38\x6f\x6e\xc1\xd3\x5b\xb4\x60\x2c\x1e\x00\x6a\xb7\xdc\x31\x2a\x1c\x22\x7d\x47\xe2\x76\xd7\xb3\x89\x99\x2a\x7f\xbb\x3d\xf9\xdb\xa4\xf7\xfe\x78\x7a\xf6\x3e\xed\xdd\x39\xf9\xbc\x36\xd3\xb4\xdb\x5d\x25\x65\x85\x9f\xe5\x7b\x2a\xa3\xe1\x20\xfa\xdd\x69\x1c\xc7\x83\xe8\x56\x13\x55\xa4\xa9\x9a\x1f\xa3\x08\xdd\xd0\xb7\xeb\xfd\xe8\xd6\xbd\xd3\x3e\xb4\xe3\xbe\xb6\x8f\x7b\x6c\x1c\xf7\xad\xa2\x45\x4d\x37\xf3\x11\xd0\x17\x06\xf0\xd3\xac\x48\x5c\xfe\x37\xea\x76\x49\xf5\x94\x9e\x85\xd8\xc9\x3b\xab\xec\x26\x47\x66\x5f\xed\x6c\x35\x33\x9a\xdc\x53\x26\x42\x64\x27\x5b\xd2\x36\xb1\x8c\xe3\xc0\xc0\x7d\x44\x88\xec\x63\x34\x5c\x4e\x77\x2a\xd8\xa9\xdb\x61\x85\x42\xe6\xcf\xa9\x6e\xec\xbe\xcf\xe2\x73\x5e\xb3\x4b\xda\xdf\xf6\xaa\x33\xb4\x98\x92\xbd\x3a\x25\xef\x68\x0f\x39\x61\x85\x27\xcb\xe2\xcb\x29\x46\xff\x01\xda\xbf\x1f\xca\xec\x16\xd3\x5f\xe2\x2b\xfc\x69\x35\x62\x51\xd5\xe1\xf7\x05\xe1\x9f\xbb\x57\xc6\x63\x64\x6d\xab\xec\xa2\x5f\xab\xcf\x5b\x97\x99\xc3\xd9\xec\xe8\x97\x79\xd6\xcd\x8a\xac\xf2\xf7\xac\xb2\xd1\x24\x58\xd4\xf5\x2a\x40\xec\x9f\x2a\x98\x82\x83\x58\x1d\x07\xe1\xe9\x83\xc9\xe0\xf8\xc1\x74\x7b\x3a\x19\x1c\xdf\x9f\x4e\x06\xc7\x7f\x98\x6e\x27\x83\xe3\x21\xfc\xe4\xdf\x43\xf5\x93\xfe\x8d\x02\x54\xc5\x41\x18\xf4\xea\x5e\x10\xbe\x7f\xdf\x67\x3f\xa2\xcd\xbd\x26\x0a\x10\x89\x83\x70\x92\x1c\xff\xfd\xd1\xf1\xbf\x0f\x8e\xff\xf0\xfe\xfd\xf1\xb4\xf7\xfe\x7d\x3f\xea\x89\xc4\xe9\xe6\x14\xd1\x72\x38\x0e\x7e\x47\x1b\x4b\x8e\xe7\x8f\x8e\x9f\x82\xbf\x7e\x11\x07\xb2\xe6\x9d\xf7\xef\x8f\x2f\xfa\xbd\xa3\xaf\xef\x86\x11\x1a\x8f\xfe\x7b\x37\x0e\x50\x4e\xdb\x0e\x7a\x45\x2f\x98\x6e\x19\xb9\x89\xbe\x0e\x50\x19\x07\x7f\x0b\xc6\xee\xe4\xa4\xc5\x32\x21\xf9\xab\x3c\xbb\x09\x22\x90\x0f\xca\x5e\x4c\x46\x61\xd9\x03\xd0\x77\xcd\xa6\x0a\x12\xd0\x0b\xa2\xd1\xfb\xf7\x27\xef\xdf\x9f\x04\xc8\xad\xc2\xce\xfd\x1f\x2a\x5c\xbe\x4e\xaa\x8a\x77\xd3\xed\x42\x17\xda\x2c\x58\x63\xe9\xc6\x02\xfc\xde\x7f\x8f\xce\x82\x08\x95\x3d\xcf\xe2\xb2\xb6\x9f\xad\x04\xf0\x14\x66\xd2\x0b\xb6\x4c\xbc\x8b\x82\x11\xff\x8e\x5a\xc1\x7a\x5d\x94\xb5\x05\xd2\x88\xad\x5e\x4f\xf4\x49\xd7\xee\x24\x40\x7c\x42\xf2\x1e\x7c\xd3\x1f\xd1\xd7\xd1\x59\x20\x8a\x9c\xf1\x39\x3f\x39\x93\xb3\xae\xe5\xfe\xb7\xf6\x5c\xd9\xcf\x1d\x0e\x24\xec\x37\xdd\x2b\xb1\x8c\xf4\x9c\x0b\x62\x64\x56\x6d\x6a\xec\xdd\xf7\xca\x1e\x9e\x2e\x8a\x5a\x26\x89\xf1\x6c\xc1\x21\x46\x0d\xfe\x0d\x0f\xa7\xce\x46\xf0\x24\xfe\x05\xd4\x5b\x97\x03\xe5\x8c\x56\x24\x8c\xe6\xd8\x36\xff\x1c\x00\xb4\x66\x45\x9b\xbb\x0f\xdf\x96\x86\xb8\xf1\xd5\xf8\xe4\xa4\xf3\x3c\xa9\xea\xce\xac\x58\x2e\x49\x3d\xea\x0c\x2e\xe7\xf3\x07\x97\xb3\x4e\x78\x3a\x18\xde\x3f\x1e\xdc\x3f\x3e\xfd\xa6\x33\x3c\x1d\x0d\xbe\x19\x0d\x7e\xdf\x39\x1e\x3c\x18\x0c\xa2\xaf\xbe\xfa\xca\x74\xb6\xfd\x8f\xff\xed\x74\x30\x3c\x3d\x66\x9e\xb6\x4f\x4a\xf2\xa1\xf3\x7d\x79\x93\xa3\xce\x4f\xc9\x6a\xd5\x79\x96\xcf\xfa\x68\x8f\xc3\xad\x0c\xeb\x86\x43\x8c\x94\x72\x11\x77\xbb\x75\xb7\x8b\xfb\x9f\x98\xd9\xed\x27\xfa\x13\xfc\x42\x6e\x54\x20\xb8\x5a\x32\xf8\x39\x2a\xc5\x6d\x87\xf6\x9e\xc8\x47\x82\xaf\xfb\xeb\x15\x15\xcb\xce\x8b\xbc\xc6\x9f\xd4\xfb\x6a\x4f\xc0\xc8\xd5\x76\x61\x89\x36\x75\x4c\xc0\xd1\x20\xc0\xbc\x48\x84\x72\x6e\x28\xc2\xeb\x22\xae\xbb\xbd\x90\x09\x39\x03\x36\xc4\x61\x8e\xca\x68\xbb\xe5\x28\x59\xae\xf3\x7e\x35\x5b\x60\x08\xc7\x05\x74\x3f\xd0\x65\x46\x78\x59\xe4\xaf\x14\x4a\x16\xc2\xee\x5d\x99\xe4\xd5\xbc\x28\x97\xa8\x46\x79\xff\x13\xca\xfb\xe2\x0a\x44\x76\x15\xe7\xd2\xf3\x05\x62\xab\xf2\xe3\xf0\x0a\xd7\x7c\x02\x2a\x2c\x1c\xfc\x9e\x93\xaa\x7e\x56\xe3\x25\xed\xa0\xd5\xc3\xe9\x20\x1e\x25\xc7\x61\x90\x92\xf4\x59\x5e\xe1\xb2\x56\x53\x47\xf7\x6c\x96\x54\x15\xb3\xa9\x1f\x4d\x20\xe2\xd8\x71\x46\xaa\xfa\x98\xd4\x78\x79\x4c\xe7\x3f\x98\x22\x09\x3c\x1c\xbd\xb0\x20\xaf\x45\x9a\xec\x1a\xf3\xbe\xe5\x50\xb1\x35\x76\xde\x31\xf3\x33\xb3\xd2\x46\xb5\xc3\x4d\xe8\x78\x15\x6d\x70\xff\x9a\x64\x99\x31\x00\x8a\x52\x4e\x62\x18\xe9\xe8\xc5\x2a\xda\x03\xa7\xf5\xec\x34\xbd\x1a\xe1\x58\x49\x50\x81\x32\xb4\x18\x93\x38\x77\x30\x8a\x74\xbb\x61\x26\xd3\x67\x80\x9c\x01\x9f\x6e\xfe\xe4\xcf\x1b\x3c\x5b\x97\x15\xf9\x88\xb3\x9b\x30\xa0\x80\x9e\x67\x38\x29\xdf\x00\x1a\xf1\xa2\xa0\xd1\x78\x34\xaf\x31\xcf\x78\xa8\x25\x7f\x8f\xe7\x45\x89\x21\x5d\x70\x8a\x33\xd5\x06\x4e\xcf\x17\x24\x4b\x4b\x9c\x4b\xf3\x26\xf6\x76\x0d\x45\x17\xd1\x44\xdc\xd2\x5c\x84\xb2\xb3\xb0\xe0\xf8\x04\x49\x10\xc0\x2d\x8c\x50\x11\x6b\x0a\xc6\x77\x05\x4f\x2f\x22\xc4\x5b\x73\x7b\x79\x38\x40\x0b\x4e\x33\xc1\x43\x46\x1f\x3a\x46\x47\xc3\x08\x91\x3e\xc9\x73\x5c\xfe\xe9\xdd\x8b\xe7\x71\x01\xbf\xf9\x05\x83\xf1\x15\x46\xa3\x8a\x76\x55\x5a\x33\x8e\x88\x9c\xdb\x24\x07\xcc\x79\x57\x84\x01\xc9\x1f\xbf\x7a\x11\x44\x3b\x7a\xaf\x69\xef\xd1\x48\xef\x3e\xe0\xcf\x91\xe7\x6a\xeb\x21\xa1\xd4\xa2\x9b\x4f\xf3\x2f\xc5\xe2\x10\x9b\x4c\x11\x89\x71\x9f\x8d\x1c\x26\xa4\x32\x1d\x7d\xc0\xf5\xb2\xc8\x6e\xe6\x24\xcb\xa4\x2f\x04\x98\x8d\x13\x64\x37\x48\x62\xc7\xee\x17\x8f\xc9\x59\x0d\x6f\x61\xe2\x68\x84\xfb\x09\xdc\xae\x46\x4d\x84\x6a\x2d\x84\x8b\x4b\x19\x04\x3f\x4d\xa9\x10\x67\x9c\x5b\xc8\x07\xda\x18\xb4\x74\xe4\x0e\xd3\x41\xe8\xc3\x88\xb2\x41\x1a\x75\x52\x74\x14\xc7\x54\xc6\x29\xad\x66\x11\x8e\x10\xa6\xdb\x90\x54\xb4\x89\xb2\xc8\x32\x8a\xe1\x7a\x31\x48\xa3\x25\x95\xfb\x5f\x89\xed\x78\x0b\x42\xe6\xd0\x29\xf5\xab\x7c\x66\x53\x6b\x42\x29\x0e\xef\xfc\x31\x49\xcf\x17\x49\x2e\x6d\xed\x0a\xe5\x26\xac\xe0\xd3\x41\x70\x9d\xb5\x58\x60\x2c\x0d\x79\x6a\x85\x3c\x63\xb1\xa3\xd6\x55\x72\x99\xe1\xcf\x5d\xa7\x9d\x34\x7d\xac\xf7\x0f\xcc\x02\xf8\xfc\x0a\x87\xa8\xb1\x12\x2f\xf4\x19\xe7\xc4\x98\x16\xe5\x0b\x17\x63\xe6\xd2\x41\x2a\x72\x99\x61\xcb\xa9\x43\xd6\xed\x0b\xd7\x5b\xe4\xdc\x42\x1d\x1d\x29\x26\xc5\x2e\x4d\x11\xb7\x05\xdd\xb8\xcf\x76\x1e\x73\x95\x89\x01\x13\x52\xae\xbe\xe3\xfc\x28\x8e\x29\xa5\xe5\xfb\x5c\xc8\x55\xec\x91\x15\xbe\xe3\x57\x25\xa6\xa7\xf0\xd3\xa2\xa4\x73\x8e\x43\x4a\x27\x76\xb6\x4a\x29\x09\xe9\x76\x89\x85\x7b\xb5\x07\xf7\x08\xc5\x3d\xab\x03\x3e\x4b\x7f\xde\x73\x5c\x91\x79\xc8\x02\xc1\x12\xc1\x32\x62\x19\xa7\xb2\x66\x74\x84\x07\xa1\xea\xd7\xc5\x0f\xab\x15\x2e\xcf\x93\x0a\x87\x51\x0f\xcb\x27\xc2\x51\x19\x0f\xc6\xe5\x77\x32\x98\x65\xd9\xeb\x09\x87\x9d\x7c\x52\x4e\x7b\xec\x39\xb6\xca\xe8\x42\x3e\xfc\xce\x42\xce\x43\x57\x69\x31\x63\xdb\x96\xe3\x86\x38\xed\x82\x94\x7c\xa4\xa7\x58\x5c\xf7\xab\xfa\x26\xc3\x28\x8f\x27\xc1\x8f\xf8\xf2\x03\xa1\xc8\xff\xa2\xf8\x7b\x80\x82\x57\x01\x0a\x96\x55\x30\x45\x65\x8c\xc3\xa0\x16\xac\x4d\x10\xa1\x8a\x26\xac\x70\x59\xad\xf0\xac\x26\x1f\x71\x40\xcf\x0c\xda\xe9\x51\x1c\x97\x28\x13\x3f\x2b\x8d\x58\x51\xdc\xfe\x13\xce\x56\xb8\x8c\x37\xb2\xa9\xd7\x65\xb1\x1a\x95\xc8\x64\x9d\x3c\x77\x9d\x85\x8a\x1a\x85\x11\x73\xf9\xc7\x00\xf6\xa4\x9c\xc6\x00\x59\x46\x11\x9f\x89\xb6\xab\x4f\xa8\xc3\xa4\xad\xd5\xa7\x28\xd0\x62\x42\x99\x35\xfb\x75\xb1\x8a\x59\xa1\x00\x89\xa4\x0c\xcf\xeb\x98\xb5\x10\xb0\x60\x0e\x0c\xae\x7b\x8f\x77\x41\x96\x1d\x06\xd9\xbd\xd4\x81\x0d\x75\x06\x14\xbc\xff\x9a\xa1\xd9\xb1\x2a\x34\xdc\x15\xd4\x2d\xd3\x49\x36\xdb\x8c\x8c\x60\x27\x69\xca\x4e\x3a\xe3\x46\xc5\x66\xb9\x38\xfb\x00\x41\x18\xe0\x71\xfd\x08\xe1\x7e\x8a\xab\xba\x2c\x6e\x6c\x56\x4b\x51\xf0\x82\x52\x6e\xe8\xf6\xa2\xba\xc9\x67\xe7\x92\xcf\x30\x5e\x0c\x35\xc4\x8c\x2c\xc4\x12\xc8\x67\x79\x8a\x3f\x05\xd1\x71\x16\xd6\x76\x9a\xaa\x5e\x2a\x45\x15\xa5\xc4\x79\x51\x93\xf9\xcd\x8b\x75\xcd\xd4\x3c\x14\x55\x71\x8e\xcb\xaa\xdb\xb5\xc0\x52\x55\x50\xd0\x52\x47\xef\xa5\x72\x26\x92\xf9\xc8\xd1\xfa\x7c\x2a\xf5\xe7\x36\x55\xe3\x74\x8e\x61\xe6\x9e\x96\xc5\xf2\x35\x93\x2f\xf4\x09\x2b\xf6\xb5\xeb\x3a\x14\x61\x16\x1c\x28\x0b\x71\xb4\xdd\xd2\x75\xe0\x0f\x0b\x32\x7a\x20\x67\x98\xae\xd0\xc2\x69\x91\x9e\x1a\x00\xdb\x79\x51\x62\x36\x5f\x29\xae\x61\x41\x05\x43\xca\xdf\x4b\x48\x9f\x88\x5a\xb1\x38\x6a\xd6\x79\xb5\x20\xf3\x5a\xa2\x00\x70\x5d\x99\x76\x70\x2e\x34\xae\x6b\x16\xbf\x48\xea\x45\x7f\x49\x72\x94\xf0\x9f\xc9\x27\xb4\x86\x9f\xf3\xac\x28\x4a\x94\xc2\xc7\x0c\x93\x0c\x2d\xe3\x5d\x7c\x17\x9a\xf3\x6c\xf1\xe2\x3c\x1f\x04\xf3\x07\xc7\x25\x1b\x09\x53\x21\x85\x51\x3f\x2d\x96\x2f\x92\x3c\x61\x6a\xe9\x39\x3b\x4f\x70\x9e\xc6\xfa\xe6\xa2\x5b\xeb\x4e\x18\xf4\x35\xf1\x68\x26\x9a\x0a\x22\x51\x25\xac\x29\xdb\x1a\x35\xc8\xa4\x7a\x3b\x04\x37\x7e\xe6\x9f\x53\x11\x6c\xd4\xce\x38\x20\xb9\x20\x7a\x49\x96\xd3\x26\xbd\x71\xc1\x4d\xfa\x22\xf0\x80\x25\xb4\x14\x23\x08\xc1\x14\xa9\x61\x8f\xe6\xa8\x9a\xd1\x33\xef\x5d\xb1\x1a\x0d\xd0\x65\x51\xd7\x14\xf5\x52\x16\xe2\x64\x80\x2e\xb2\xa4\xaa\x9f\xb0\xfa\x6c\x33\x8d\x06\x68\x05\x99\xe7\xcc\xa4\x66\xb8\x47\x17\xcb\x25\x50\xaf\x00\x0a\x05\x6f\xf2\x19\x1d\xaf\x5c\x9e\x1f\x49\x5a\x2f\xa4\xb3\x74\xb6\x5e\xe6\xac\x27\xc9\xb9\x49\x71\xc7\x24\x12\x32\x39\x49\xd3\x73\xd8\xfd\x26\xad\xa2\x5c\x60\x4b\x1e\x9f\xd4\x4b\x26\x22\xc9\x0a\xda\x98\x30\xb0\xf2\x9c\x13\x55\x64\x11\xd9\x2c\x29\x13\x39\x19\x1b\x7f\xf7\xbb\x94\x7c\xec\xb0\x25\x8a\x03\x2f\xee\x3c\xbc\x1b\x19\x5e\x2a\x8c\x4c\xb2\xba\xc1\x77\x27\x29\xf9\xf8\x30\x88\x1a\xe4\x88\xb8\x96\xfb\xa8\xc6\x83\x2d\x30\xb9\x5a\xd4\x41\xb4\xdd\x6a\x89\x65\x71\xfd\x27\x9e\x1e\xa9\x27\x96\xf9\xcb\x7b\x8f\x3a\x02\x4f\x3b\x22\xce\x11\xdf\xcf\x9d\x6b\x52\x2f\x3a\x49\x07\xda\x64\x3a\xa0\xa4\x23\xdb\xea\x07\xd1\xd8\x58\xe6\x06\x31\xc4\x72\x98\x48\x0e\x12\x0a\xae\xe9\xa2\x06\x0e\x1b\x4d\x8f\x2e\x94\x8f\x15\x3d\x13\x63\x40\xb5\x4c\x82\xaa\x11\xca\xd5\xa9\x54\x55\x8c\x7d\x09\x02\x2a\x47\x84\xa4\x17\xf3\x7a\x23\xa6\xd6\x5c\x7d\x1a\xd3\x06\x78\x0e\xab\x3e\xe2\x27\xe8\x38\x50\x21\xfb\x4b\xca\x3e\xe5\x51\x6e\x07\xd9\x28\x23\xa8\x59\xf6\x82\x51\xd0\x63\xec\x56\x30\x56\xfe\xc6\xa4\x89\xe4\x86\x71\x7c\xb0\xf5\xc9\x65\x33\x5a\x7c\xc4\x65\x49\x52\xdc\xa9\x8b\xce\x0a\x97\x94\x91\x60\xc1\xbf\x3e\x92\x6a\x9d\x64\x1d\x68\x88\x4d\x2f\x9e\xcf\x81\x9f\xca\x6e\x3a\x29\xce\xf0\x55\x52\xb3\x5a\x17\x50\x86\xa3\xed\xbb\x82\x22\xc5\x85\x04\x80\xf3\xa3\xc8\x2e\xe5\x4a\x77\x74\xa2\x51\x89\x2a\x54\xa0\x05\x7b\xe6\x2d\x4e\xc2\x81\x14\x0c\x24\x09\x38\x8a\xe3\x02\x6a\xac\x59\x01\x31\xe7\x75\x51\x27\x99\xc0\xa4\x63\x7b\xb9\xa2\x71\x11\xcf\xc2\x02\xad\x23\xb4\x70\x99\x07\x54\xc5\x59\xb8\x40\x32\x26\x14\xe2\x6a\xe1\x8b\xaa\x4e\xca\x5a\x50\x96\xb0\x12\xc7\x8d\x23\x6f\x3a\x73\x80\x36\x8a\x66\x15\x22\x2e\xd3\x68\x81\x8c\x06\x47\x35\xc2\x1a\xe1\x9a\x85\x49\x58\x1d\x0f\xd1\x20\x42\x35\xdc\x29\x5c\xe4\xeb\xa5\x22\x20\x4f\x0b\x76\x32\xac\x8a\xb2\x0e\x23\xfd\x21\x5c\x2b\x06\x97\xe8\x38\x2e\x50\x19\xab\x26\xbd\x43\x62\xca\xc7\xbd\x9d\x21\x12\xcf\xc2\x12\xe5\xb4\x15\x2e\xe4\x30\xb2\xfb\x56\x6f\xab\xdb\x25\x46\xa6\x46\x93\xcf\x42\x5d\xf1\x14\x06\x00\xe2\x4f\x40\x2e\x53\x76\x8e\xf3\xf0\x24\x23\xa5\xdb\x0c\x1d\x71\x9d\x35\x5d\x52\x31\xc7\xd1\x2c\x39\xd0\xc4\x35\xf2\x82\x12\x13\xb4\x0f\x16\x79\x2b\x2a\x45\xfb\x06\x69\xd8\xe5\x17\x44\xf3\x9a\x8b\x42\x01\xd2\x48\x1a\xc5\x31\x79\x40\x04\x28\x30\x0e\xaf\x56\x6a\x23\x64\x32\x1b\x51\xfb\x1a\x7e\x8a\x2c\x8d\x7c\x22\xa2\x55\x50\xbd\xea\x84\xc9\xec\x3f\x42\x69\x88\x4f\x48\xf4\x75\xdd\xcb\x9b\x08\x5d\x70\x59\x92\x4d\xae\x14\x28\xad\x93\xc3\x92\x67\xe9\x5e\x57\x2b\xf2\xb4\x28\xcf\x35\xbe\x76\x64\x72\x29\xa0\xb4\x64\x7b\x7c\x4c\x5a\x36\x21\x67\xf1\xd8\x53\x63\xaf\xcb\x62\x4e\x32\x00\xb4\x34\x55\xe4\x4f\x8b\x12\xf0\xb7\xa6\x47\x92\xa9\xf1\x0d\x4b\xca\x2b\xda\x6c\x37\xaa\x23\x24\xd9\x66\x77\xff\xb6\x8e\x21\x40\xa5\xbe\x4c\x22\x2a\x54\x1e\x13\xfe\xdc\xdb\xa3\x5a\x07\x82\xcb\xf3\x61\x4e\x45\x73\x0b\xd8\x5d\x24\x4f\x1a\xef\xaa\x39\x80\xd3\xf4\x47\x38\x5c\xb6\xdb\xa1\xb6\xbc\xd7\x2a\x31\x6f\x59\xf3\xd2\x8b\x21\x55\x5c\x7e\xbd\x0e\xf1\x49\x4e\x45\x62\xfc\xbb\xfc\xeb\x1a\x6d\x6e\x46\x15\xfa\x34\x2a\x9a\x06\x29\xcd\x29\xb0\x4e\x2e\x7a\x1e\x84\x9a\x7b\xa9\xc9\x8c\xe1\x43\x83\x34\x88\x9d\x4d\xc5\xcf\x63\x73\x1a\xbc\x1b\xc6\x85\xc9\x9c\x3a\xcf\x49\x4d\x62\xdc\xed\xd6\x0f\xf1\xd9\x3a\xac\x4f\x70\x34\x1a\x36\x11\xf2\x71\x72\xb6\x0e\xce\xbf\x5f\xe5\xa1\x55\x69\xd4\xef\x5c\x35\x27\xa6\x44\x12\x66\x54\xec\xdd\xa8\xcb\xe4\xd3\x5b\x51\x3c\xd0\xcf\x2c\xa5\xe3\xf7\xf6\x15\x17\x14\xcb\x43\x1c\x57\x27\x05\x22\x71\xfd\x35\x46\x65\x3c\x0b\x73\xa9\xa0\x96\x27\xb3\xbc\x2f\x55\xe7\x45\x19\xa9\xd7\x8d\xa4\xea\x5c\x17\x35\xd5\x6d\x53\xa2\xae\x04\x8c\x2b\xa7\x16\x66\xb9\xb1\x47\xaa\x8f\xaf\x9d\x29\xd3\xcf\x74\xcf\xda\xbb\x2b\x6f\x30\x01\xda\xc2\x4b\xae\x8d\xb1\x14\xc7\x4c\x6d\x7d\x41\x2a\x86\xa0\x52\x32\x74\xf0\xdd\x2b\xc4\xaa\xfb\xc3\x56\x19\x79\x28\xcf\x41\xe7\x2a\xa2\xdb\x1d\xf8\x32\x09\xa5\x0f\xaf\xe6\x21\xa6\xf4\xb4\x6d\xe7\x78\xf6\xa3\xff\xb8\xf0\xf0\xa8\xfe\x63\x42\x17\x94\x4c\x06\xd6\x58\x2c\x7a\x4a\xd4\xd1\xd7\x79\x8f\x7c\x9d\x53\xde\xce\xe0\x61\x0e\x20\x6a\x55\x2c\x0d\x4f\xf0\x59\x1b\xe1\x18\x61\x77\x9f\x10\x2f\xfc\xed\x24\x8f\x6e\x67\x12\x7d\x9d\xa3\x42\xf1\x3d\x94\x71\x29\x18\xb1\x61\xfd\xfd\x48\xb2\xcc\xd8\xdc\xed\x32\x15\x9b\xe3\xb1\x47\xd7\x04\x97\x03\xa0\x07\xf1\xa9\x9b\xf4\xa2\xfc\xd7\x21\x24\x45\x97\xe1\x10\x69\x13\xe8\x72\x8c\xd3\xea\xad\x21\x59\x7a\xae\x0a\x6c\xb9\xc6\x9a\x2a\x2a\x67\x0a\xf9\xdd\x47\xe6\xd5\xa0\x0d\x2d\x80\x22\xef\x1e\xfd\x0c\x1c\xd0\x9a\x81\x00\x93\x03\x4c\x40\x9d\xae\x00\x57\x16\x68\x86\x12\xb4\x46\x29\x9a\xa3\x15\x7b\x54\x54\x76\x5f\x3d\x06\xb5\x1c\x4e\x83\xa8\xdb\x75\xd3\x19\x7b\xc0\x04\xcd\x75\xfb\x99\x94\xfa\x76\x32\x22\xf6\x3e\x64\xb3\x13\x4a\x1d\x94\x38\xbf\x5f\x95\xea\x36\xd3\x94\xe4\x6d\x0a\x12\x46\xdd\x6e\xa5\xaf\xe2\xac\x85\xe9\x4e\xe2\x59\x8f\xa0\x32\x26\x28\x8f\xb1\x7c\x1c\x22\x2e\x8f\x73\x44\x77\xc9\x4a\xd9\xa7\xae\x1e\x0e\x22\x2a\x10\x2e\xfc\x9c\x35\x9a\xc7\x83\xf1\xea\xe1\x7c\x3c\xef\xf5\xd0\xa2\xd7\x8b\xa4\x8a\x41\x2c\x6f\xb8\xe0\x8d\x2d\x01\x30\xcc\x7c\xbd\x66\x98\xf3\xf3\xc0\xcf\x8c\x6f\xc7\x5b\xcf\x5a\x78\x6b\x6f\x6a\x6f\x85\x42\x3a\xa8\xb5\xe6\xcd\xb0\x8e\xba\xdd\x42\xc7\x70\x8e\x2a\xee\xd1\xd1\x46\xf4\x0e\x38\xed\x4d\x94\x27\x31\xfe\xba\x16\xa6\x16\xed\xea\x32\x44\xba\xdd\xbc\xdb\xcd\xfb\xb3\xaa\x92\x5c\x08\x31\xd9\xdc\x12\xe7\x2d\x60\x09\x56\x80\xe1\xf2\x92\x49\xf2\x4b\x9b\xa8\xed\xe0\x9d\xa8\x44\x8b\x0d\x71\xed\x0a\xd7\x42\xe7\x66\xe0\x1f\x89\x45\x35\x31\x24\x07\xc7\x16\x71\xbe\x5f\xb0\xa3\xcc\xc1\x1a\x2d\xe8\x16\x99\x85\x0b\x94\xf7\x08\xbb\x2c\x19\xa7\x0f\x8b\x71\x01\xfe\x8e\x93\xe2\x77\xc2\xe9\xa8\x9d\x4d\x0e\x2b\x46\x64\xbd\xe0\xb6\x46\xf6\x55\x07\xa0\x62\x96\x9d\xcd\xd6\x56\xbb\x65\x66\xfa\x15\x1d\x18\x65\xbf\xd9\x0d\xb5\x43\xee\xff\x0c\xe9\x8a\x1e\xbb\x32\x4a\x8e\xca\xb1\xb1\x8b\xfd\xf7\x7b\x61\x58\x3f\x6c\x93\x85\xb7\x5b\xee\x48\x6a\x6f\x86\xa8\xdb\x0d\xf3\x78\x80\x96\xaa\xfd\x9d\x74\x46\x3f\x5d\xcb\xb6\xde\x7a\xf9\xde\xe5\xc1\xa8\x8c\x50\xde\xeb\x71\xf9\xc5\x3c\x5f\x58\x74\x7d\x46\x4d\x5b\x97\x8a\xab\xd1\xce\x5a\x94\xea\xfc\xb6\xd3\x49\x57\x97\x2a\xd0\xaf\xf0\xda\xdb\x77\x67\xed\xb5\x35\xd2\x6e\xa9\x4d\x55\xb9\x73\x5d\xad\x5d\x55\xcf\xaa\x6a\xb4\x91\x06\x42\x41\x89\xb3\x84\xdd\x09\xa2\xe2\x23\x2e\xe7\x59\x71\x3d\x0a\x92\x75\x5d\x04\x28\x38\xbe\x66\x17\x8c\xc7\x22\xe3\x18\xb6\x2c\x3d\x60\x46\x41\x5d\xac\x67\xf4\x18\xdd\x91\xd9\xd8\x37\x85\xbe\xeb\x45\xdb\x10\xeb\xc2\xd5\xd4\x09\x49\x39\xc6\x36\xcb\x3f\x26\xdd\x6e\x48\x34\x86\x9d\x1e\xb1\xb6\xda\xda\x6f\xe1\x88\x7c\xcd\xc1\x9a\x81\xe0\x0a\xdc\x38\xdd\x4d\xc0\x67\x85\xa6\xbc\x60\xd8\x9c\xd4\x1c\x04\xc6\xae\x72\x5f\xa2\x90\x44\x4c\x8b\x0e\x39\x81\x51\x99\x6b\x89\xf9\x89\xdd\x06\xe7\xb8\x76\x41\x94\xad\xd7\x51\xbf\x98\xcf\x5b\x9b\x87\x1f\xae\xad\x97\x14\x76\x70\xbf\x66\x4f\x8c\xaa\xc9\x93\xb5\xac\xb9\x77\x61\xb0\xe4\xa6\xda\x4c\x91\x3a\x3f\xc6\xf0\x68\x02\xc8\x21\x2c\x5f\x9b\x79\x48\x9b\x78\xe5\x5f\x2b\xca\x20\x9a\x92\x4f\x4b\x41\x77\xce\x5b\x48\x9b\x10\xe2\x5d\x06\xe7\x2c\x08\x46\xd8\x2f\x6d\xed\x3e\x58\xd9\x81\xba\xe1\x6a\xf0\xba\xf1\x39\x83\x9a\x36\x0a\x35\x18\xe6\xae\x2b\xfc\xe3\x02\xe3\x8c\xdf\x3e\x94\xec\xc5\xd9\xc7\xf0\x18\x88\x65\x4d\x07\x57\x61\x49\x9a\xb2\x37\x65\xc5\xc5\x67\xb8\x46\x75\x9f\x1d\x8e\xcc\xd2\xcb\x53\x20\x60\xbd\x5c\xd3\x5e\x02\x54\xf7\xd9\x0f\x5a\x56\xbf\x08\xe6\x8d\x03\xd3\xbf\xbb\x7d\x5f\x99\xfd\x5d\x30\xa4\xe5\xaf\xfd\x3a\x10\xa6\x08\xf7\x69\xa3\xe8\x68\x10\xa1\xb6\x42\x4b\x84\xfb\x38\x4f\x77\x96\x99\x23\x2a\x65\xe4\x33\xda\xfb\xc0\xb8\x76\x56\xbd\xfb\xe0\xf7\x01\xe0\x2b\xe7\x81\xc1\x57\xac\x0d\x8c\xca\xb8\x3c\xd7\x2d\x72\x6a\xce\xbd\x52\x5e\x4c\xbf\x6f\x56\x52\x27\xd8\xad\xe4\x57\x38\x7d\x47\xe9\x31\xae\x26\x83\x29\xd3\xd3\xc1\xce\x17\xc2\x68\xde\xed\x72\xe3\xe6\xbc\x5f\x27\x57\xec\x79\xe3\xb3\xd0\x35\x45\xf9\xc8\xb4\x83\x2f\xe8\xb2\x3d\x81\x17\xf4\x23\x54\xf7\x49\x4e\x6a\x95\x16\x06\xb3\x8c\xcc\x3e\x04\xe8\x68\x40\xff\xc7\xfd\x8f\x04\x5f\xa3\x21\x62\x34\x1a\xe3\xfc\xdf\xe4\xaf\x9f\xe8\x81\x9b\x11\x9c\xd7\xff\x26\x7f\xfd\x44\x27\xa1\x2e\xb3\x3f\xe3\x1b\x8a\x95\x59\x0d\x3f\xd8\xad\x34\xfc\x5c\xe2\x3a\xa1\xbf\x06\x28\x5f\x67\x59\x84\xf2\x7e\x4a\xaa\x55\x52\xcf\x16\xd0\x7d\x1d\xc9\x13\x95\xdd\x5d\x6b\x82\xd4\x92\x8a\x52\xf1\x09\xc9\x57\xeb\x7a\x5b\xe3\x4f\x75\x52\xe2\x64\x5b\xe1\x0c\xcf\xea\x13\x82\xae\xe2\xa0\xc8\xd9\xb9\xc5\x30\x37\x20\x39\x7f\xa6\x7a\xbb\xe5\xcb\xf6\x98\xcf\x07\x9b\xcc\x6e\x57\x4c\x8f\xae\xf3\xf0\x95\x1c\x5f\x9d\x85\xeb\x38\xd0\x9a\x46\x99\xc7\x60\x11\xf7\x6b\xb5\x48\x84\x05\xb2\x12\xeb\x44\xe4\x02\x11\xb9\x40\xdb\x6d\x08\xf7\x01\x9c\x7e\xe3\x92\x4d\xc0\x9f\x92\x3c\xcd\x70\x29\xa2\xf4\xd3\x43\xe6\x7b\x7c\x45\xf2\xb7\xfc\x78\x12\x9d\x20\xdc\xaf\xc9\x12\xbf\xad\x93\xe5\xca\x47\x45\xe8\x31\xca\x61\xa6\xb8\x1a\xa0\x45\xec\x1c\x25\x94\x94\x91\x7c\x8d\x77\xb6\xdd\xa0\x25\x6f\x07\xe7\x69\x80\x66\x6e\x33\x17\xa4\x7a\x2b\x58\x87\xed\x96\xe2\x2f\x37\x26\xdd\x39\x32\x9c\xa7\xaa\x5f\xad\xb7\x39\xef\x0d\xf6\x52\x80\x12\xa3\xc3\xcf\x6f\x38\x1a\xd1\x45\x64\x34\x2b\x2d\xae\x73\x7b\x0d\xc9\x3c\x1c\xc6\x71\x8c\xfb\xd7\x0b\x32\x5b\x68\x6b\x0a\x2b\x58\xcb\x15\xac\x7f\xe5\x0a\x4e\xf0\x74\xff\xda\xb1\xc5\x63\xb0\x1e\xba\x78\x76\xb3\x6c\xd9\x58\x0b\xeb\x95\xbd\x6a\xbf\x6e\x75\x58\xa3\xc5\xba\xb6\x97\x86\x9e\x12\x19\x65\x95\xe1\xe5\xf3\xed\x36\xfc\xec\x7e\xa2\x46\xc6\xa7\x27\x65\xbd\x4e\x32\x4a\x65\xdf\xea\xcd\x54\x07\x19\xe6\x1b\x91\x3b\x5a\xed\x21\x50\x70\x49\x04\x18\xa2\xf9\x40\xb3\xa2\x70\x19\x3d\x51\x6f\x9d\xb7\xd7\xf4\x8e\x3a\xde\x30\x02\x22\x5e\x66\xc8\x22\x44\xd7\x57\x7c\x2e\x22\x84\xf3\x54\x7c\xcd\x58\x04\xeb\x19\xce\x44\x42\x12\x21\x76\xc8\x8a\x6f\x11\xbe\x5d\xb7\x08\x60\x9d\x0a\x76\xd4\x8a\x19\x5e\xe4\xf8\xc7\xe4\x26\x54\x6c\x60\xbf\xc4\x49\xfa\x2a\xcf\xa8\x2c\xe3\x0e\xc4\xd5\x1d\xd7\xd2\xc2\xc1\xe8\x47\xe9\x9d\xbc\x63\x1e\xd7\x70\xc4\x21\xdf\x6c\xdd\xa6\x93\x7a\x57\x27\xc0\xce\xa0\xd2\xfb\x1a\x93\xc9\x85\xc9\x4b\xbb\x31\x8e\x31\x38\x03\xd1\x01\x84\x58\xb7\x7b\x60\x9f\x52\xeb\x5c\xc2\xb7\xc9\x1d\x62\x09\x0a\x95\xea\x1e\x93\x25\xce\x2b\x52\xe4\x55\x48\x1b\x27\x54\x3a\xc5\xf6\x9d\x2c\x2e\x55\x31\xc9\x4c\x73\xe3\xf8\x3a\x0e\xa5\x11\x96\x94\x1a\x23\x47\x6c\xd4\x76\xc4\xe7\x48\x8f\x7b\xb6\x15\xda\xe8\xd4\x7c\x74\x34\x44\x17\x8a\x5f\x05\x67\x94\x03\xc4\xcf\x05\x49\x53\x9c\x07\xcd\x21\x76\x4a\x15\xae\xd7\x2b\x01\x84\x91\xf8\x7a\x4d\x85\x93\x37\x78\x5e\xe2\x6a\x11\x2a\x13\x0c\x5c\x82\xd9\xd4\xc1\xb2\xa9\x66\x51\x8a\x8c\xee\x7c\x02\x1b\x88\x26\x72\x69\x99\xc7\x9d\x04\x4f\xd3\xac\x90\x68\xa3\x49\x1a\xd2\x42\xba\x9f\xe9\xfa\x3e\xe9\xff\x12\xd6\x7d\x1d\xfa\x98\xa0\xda\x95\xb6\x08\x65\xc7\xcc\x51\x85\xfe\x06\xd1\x00\x1d\x33\x5b\xe9\x8d\x14\xda\xff\x8d\x2e\x96\xfc\x3a\x2f\x96\xab\x0c\x9b\x81\xef\x6b\x1b\x1b\x49\x7e\x45\x91\x90\x17\x0d\xe8\xc6\x41\x5a\x21\x46\x2d\x49\x4d\x92\x8c\xfc\x1d\x8b\x29\xa0\x78\xcf\xc4\x42\x77\x89\x9c\x85\x5e\xe9\xb9\x52\xe3\x2e\xcd\x18\x09\x23\xc5\xaf\xed\x42\xca\xa8\x6c\x56\x93\x8f\x52\xe4\xc3\xa5\x85\x0f\x14\x21\x5a\x9a\xd8\x0f\x89\x5f\xe5\xbf\x03\x6a\x0e\x14\x74\xf8\xa8\x0e\x07\xc8\x5f\x58\xf8\x0a\xd0\xdc\xb1\xbf\x48\xcb\x51\xb4\x53\x86\xf6\xc9\xcf\xc6\x3d\x8b\x8d\x36\x92\x8a\x2a\xa1\x7f\x80\x8e\x87\x5f\x63\x17\x1e\x21\x71\xc3\xf3\x0d\x3b\x67\x7d\xd4\x66\xc2\x9c\x7b\x86\xc9\xdc\x21\x12\xb0\x57\x67\xd2\x53\xae\x70\x4b\xf4\x62\xb4\x1e\x44\xa6\xa3\xe2\xfe\x46\x87\x46\xa3\x29\xde\xdb\xac\x61\xfe\x1c\xb6\x8d\xe6\x28\xdf\x6e\x73\xf1\xc2\x84\x76\x5b\xe3\xa6\xb2\xbb\x1a\xca\x08\xaa\xb3\x60\x4e\x72\x52\x2d\x2c\x64\x45\xad\x63\x29\x21\x81\x19\xcf\x1c\x0d\xa3\xa8\x39\xac\x24\x9b\x4e\xc6\x4c\x88\x3e\x30\x5d\x3f\xf0\xf2\x50\xc8\x27\xa1\xf2\xce\x4c\x0b\xc2\x03\x42\x20\x30\x72\x3f\x40\x03\xae\x1d\xdc\x9a\x02\x7c\x32\x98\xea\x37\xcb\x42\x1f\xe3\xf4\x76\xe6\x5c\x1d\x0b\x8f\x8c\x91\xab\x53\x77\x8f\xd1\x97\x98\x4a\xc7\xb7\x50\x4b\x29\x9b\x77\xca\x40\xc9\xdb\x44\xef\x0d\x7d\xb4\x53\x17\xc9\xc0\xf3\x91\x67\x79\x23\xf3\xb0\xd3\xa2\x3a\x9a\x0c\xa6\xa0\x41\xd4\x44\x03\x4b\x6f\xef\xc8\x56\xf1\xd1\xd0\x6b\xe8\x05\x64\x9c\xa9\xcf\x6d\xe6\xb3\x9f\x16\x4c\x84\x65\x99\xd2\x44\x45\x17\x1c\xda\x0c\x9a\xc6\x4e\xf7\x67\xde\x96\x5f\x14\x1f\xc1\x0b\x79\x24\x82\x85\xe9\xe7\x9c\x1f\x1a\x59\x47\x5d\xf4\x68\x55\xc8\x51\x1c\xe7\xdd\x6e\x58\xca\x98\x4e\x5c\x31\x21\x0a\x55\x7c\xa4\x42\x91\x8a\x27\x83\x29\x97\xd3\x22\x39\x37\xa5\xba\xd0\xd4\x26\x70\x40\x4f\x0d\x29\x73\xb4\x29\x57\x15\xa4\x4f\xf2\x94\x69\x84\x5d\xb5\x2a\xcc\x96\x0c\x3e\xc1\x14\x8c\x74\x53\x9a\xcd\x48\x0d\xeb\x80\xed\xa6\x21\x15\xcb\x14\x3b\xe5\xb5\x33\x50\x66\x53\xb8\x0f\xea\xfb\xc7\xa4\xc4\xac\xdc\xb3\xfc\x23\x2e\x6b\x9c\x3e\x2d\x8b\xe5\x63\xfc\x91\xcc\x30\x53\x11\x31\xa1\xe0\x31\xce\xea\xe4\xa7\xaf\xc3\xfa\xac\xff\xed\xe8\xb8\xff\xad\x9c\x5b\x09\xcb\x85\xd4\xf7\xae\x7a\x04\xe5\x0f\xe3\x41\xb7\x9b\x7f\xe7\x14\xd2\xcd\x58\x64\xc0\x7d\x73\x3c\xdf\xdf\x84\x03\x44\x18\x0d\xc2\xfd\xaa\x2e\x56\xaf\xcb\x62\x95\x5c\x25\xb0\x2d\x22\x74\x34\x6c\x8b\x54\x02\xec\xfa\x65\xc2\x9e\x18\xbb\x22\x55\x8d\x4b\x60\xd4\x42\xcd\x5c\x3b\x70\x9c\x37\xe9\x5c\x2c\x92\x6a\xc1\x86\x4b\x7f\xbc\xbb\x59\xe1\x6a\x2c\x5d\xdf\xe2\xba\x4f\x6a\xbc\xac\x90\x08\xa6\xc5\x3f\x89\x2c\x40\xcc\x02\xe2\x53\xb6\xb0\xdd\x86\xaa\xb5\x80\x0e\x3a\xd0\x6a\x07\xcf\x1e\x6b\x46\xcc\x39\x8b\x6f\x14\x91\x79\x78\x72\xcc\x23\x42\xe5\x11\x00\x2a\x70\x96\xbf\xed\x3d\x4b\x96\x98\x32\x4f\x61\x1e\x8d\xeb\x49\x39\x8d\xeb\x49\x3e\x45\x84\xfe\x22\xf4\x97\x00\x57\xfb\x4d\xd3\x1b\xc3\xcf\x55\x9b\xb3\x05\x9b\x2b\x66\xa2\x9f\x01\x4a\xa8\x2b\x2f\x14\x98\x0c\x30\x98\x7d\xd2\x55\x08\xd6\x39\x3c\x3d\x9e\x2a\x17\x95\xac\x98\xb1\xe5\xda\x6e\x03\x16\x26\x66\x51\x54\x75\x70\x14\xc7\x22\xbd\x4f\x13\xf2\x64\x89\xbb\xdd\x60\x78\xfa\x7b\xf6\x5c\xf7\xd0\x5b\x40\x04\xdd\x7c\x5e\xd0\x7d\xd7\xbf\x4e\xca\x3c\x0c\x7e\x2a\xd6\x9d\xa4\xc4\x9d\x72\x9d\xe7\x24\xbf\xea\x24\x9d\x55\x59\xa4\x6b\x38\x61\xd9\x63\x87\x1d\x61\x60\xd4\x29\xf2\x8e\x04\x81\x59\x65\x5f\x17\xf9\xdd\xba\x53\xe2\x19\x26\x1f\x71\x27\xc5\x75\x42\x32\x9c\x76\x58\xbc\x86\x8e\x0c\x0a\xd3\x79\x36\xef\xdc\x14\xeb\xce\x75\x92\xd7\x9d\xf9\x3a\xcb\xac\x02\x9d\x55\x86\x93\x0a\x77\xd6\x2c\xec\x11\xee\xe4\x45\x7e\xbc\x24\x39\x99\x13\x9c\x72\x10\x56\x65\xf1\x91\xa4\x38\xa5\x20\xd0\x22\x00\xcf\x35\xbe\xac\x48\x8d\xfb\x41\x34\x3e\xf9\xfa\xe8\xab\xce\xd7\xe0\x50\x40\x70\xe7\x18\x7e\x75\x60\x19\xa4\x2e\xb7\xa2\x65\xe6\x65\xb1\xec\x5c\x16\xf9\xdf\x8b\x0e\x0b\x22\x33\x3a\x39\xb9\x22\xf5\x62\x7d\x49\xe5\xef\x93\x14\xa7\x27\x2c\x93\x16\xd5\x9a\xa4\xc8\x1c\x76\x28\x8b\x86\x3a\x77\x97\x37\xc7\x2c\xf9\x6e\x27\xea\x1c\x3f\xec\xd4\xe5\x1a\x9f\xb0\xf7\xf4\xf5\x0a\x49\x9a\xea\x15\x72\x7c\x2d\x2b\xe9\xc5\x40\x43\xad\x97\x5c\xe7\x74\xa6\x70\xea\x2d\x5e\x17\x57\x57\x19\xf6\x41\xf2\x55\xe7\xeb\x93\xaf\xbe\x3a\xf9\xfa\x67\xca\x78\xd4\x9d\xcb\xb2\xb8\xae\x70\x39\x62\xd0\xa1\x4e\x55\x97\x64\x56\x8b\x2f\x86\x67\xf0\x41\x6b\x9d\x7c\x0d\x2f\xce\x77\x00\xfb\x46\x1d\x36\x18\xd6\x5e\xa8\x14\xe1\x5c\xe5\xda\x89\x3a\x9b\xaf\xbe\xba\x4b\x57\x0b\x1a\xbd\x3b\x66\x61\x33\xfc\x33\x7e\xf0\x74\x7f\x25\xf9\x3a\xd6\xd0\x1b\x7c\x15\x76\xa4\x0b\x0f\xeb\xb3\xd3\x11\x5a\x74\xed\x35\xf8\xf0\x6f\xdb\xf7\xef\xab\x5e\x14\x74\x7a\x5a\xf1\x5e\x27\x08\x69\xf2\xf6\x4e\x14\x44\xe3\xaf\x1a\x05\x20\xdd\x74\x9d\x6a\xbd\x5a\x15\x65\xdd\x99\x17\x25\x07\x7b\xc9\xdc\x7d\x28\x47\x40\x4b\xfe\xdf\xe4\x3d\xd9\x76\xdb\x38\x96\xcf\xf6\x57\xc0\x98\x6a\x8b\x8c\x60\x49\x76\x6a\xe9\xa1\x4c\x7b\x9c\xa5\xba\xd3\x49\xa5\x72\x12\x57\xf7\x43\x4e\x1e\x60\x12\x96\x59\xa6\x08\x35\x01\xd9\xd1\xd8\xfa\xab\xf9\x82\xf9\xb2\x39\xb8\x58\x08\x2e\x92\x25\x27\xe9\x9a\x39\x53\xe7\x54\x4c\x61\xbd\x00\xee\x86\x8b\x8b\x0b\x9a\xcb\x2b\x3e\x9f\x5c\x21\xc9\xd1\x05\x43\x97\x34\x2b\x09\xe0\x1d\x9d\x65\x48\xcc\x93\x6b\x81\x2e\x58\x42\xd5\x14\x64\xd2\x50\x81\x7e\xe9\x06\x4d\xe7\xb9\xcc\x66\x39\xd3\xed\x32\x81\xa8\x44\x4a\x8f\xd9\x55\x4c\xe7\x8a\x0a\xd8\xa2\x10\x44\xd3\xd4\x7c\xe9\xf5\x87\x1f\xe3\xdd\xdd\xec\x12\x05\xa8\xe7\x20\xed\x29\x06\xe6\x0e\x07\xec\x87\xd1\x5d\xcc\xa4\xd8\x46\x51\xec\x2d\x95\x46\x8f\xc4\x14\x71\x33\xa7\x92\x07\xae\xf5\xea\x11\x50\x55\x72\xbc\x8b\xd0\x52\xfd\x63\x61\x5b\xdb\x60\xa3\x25\x40\x76\xbf\x11\x6f\x58\xdb\xb4\x63\xa9\xa1\x6a\x6a\xb9\x0b\x0e\x44\xdb\x8e\xd4\x43\x22\x14\x6a\xd6\xef\xf5\xa5\x71\x6a\xbb\x11\xc3\xd2\xec\x59\x18\xfc\x7c\x5b\x02\x35\x7b\x88\x9b\x09\x7d\xd4\x43\x3d\x85\xa9\x63\xa8\xb0\x7c\xfc\x6c\x75\xb6\x3f\x28\xd9\x2c\xa7\x09\x0b\xea\xc3\x27\xd0\x6b\x35\xa1\x15\xa9\x69\x6e\xd2\x1a\x90\xea\x4c\xe1\xeb\x65\x81\x62\xd4\x35\xe2\xd3\x1a\xc4\x91\x9b\x40\xd5\xc5\xa5\x0f\x37\x74\xa7\x9a\xb2\x9c\x39\x86\xc6\x87\x43\x2d\x08\x94\x58\x12\xde\xca\x46\x15\x89\x78\xcb\x52\xb5\x4f\xea\x73\x15\xf9\x3f\x54\x9e\x37\x9e\xc8\xff\x41\x74\x9f\xe2\x4a\x51\xbd\xd7\x69\xab\xbf\xae\xae\x56\xf4\x52\xeb\x60\x77\xa9\x99\x20\xdc\x4a\x56\xbc\x45\x53\xb2\x91\xe1\x9a\xad\xa2\x38\x8e\x51\xcf\xce\x7d\x0f\xed\xef\x9b\x8c\x01\x9d\xa6\x66\xd6\x87\x43\x74\xf6\xcb\x8b\x5d\x64\x72\x02\x37\x6f\x6a\x26\x91\xa3\x84\xe1\xd0\xf2\x77\xa4\x39\xf7\x2e\xb2\x07\x62\xd5\x44\x9b\x2f\x58\x82\x65\x58\xb1\xef\xf1\xee\xf0\xc9\x13\x25\x53\xe0\xae\x6e\xa6\xb5\x84\x9f\x3f\x0f\x7e\x17\xe8\xe6\x50\xe9\x0f\x2a\x4f\xf1\xea\x68\x38\xbc\xbd\xbd\x1d\x24\x3c\x2d\xf9\x4c\xe9\x32\xd3\x5d\x04\x15\xdf\x64\x09\x2b\x04\x4b\x41\x8e\x94\xc0\x19\x7f\x79\x75\x8e\x72\x9d\x3c\x68\xd4\xe7\x33\x56\x08\x3e\x2f\x13\x36\xe0\xe5\x64\x68\x4a\x89\xe1\x34\x93\x07\xb6\xca\xec\x6a\x66\xda\x76\xd1\x97\xd0\xd1\xe8\xf0\x7b\x82\x9e\xeb\xde\xd7\xc2\x34\xdc\x1d\xaf\x92\x53\x3b\x0d\x41\xb5\xa3\x90\x31\xe5\x89\xe2\xa1\x28\xb6\x93\xb6\x8a\xc5\x92\xdd\x9d\x1d\x25\x0f\x8a\x4c\xbf\x29\x85\x58\x91\x22\x38\x02\x02\x2c\xda\xdd\xd9\x51\x59\x2f\x0b\x7d\xd0\x6d\x68\x12\xeb\xcd\xc0\x99\xad\xf4\xb2\x48\xb1\xea\x59\xcd\xfa\x0e\x7a\x82\xb4\xcd\x17\xf1\x8b\xdf\x1d\xcc\x2a\x7d\xb8\xbb\x53\x99\x36\xb4\x59\x18\x51\x82\x2e\x60\x1c\x3b\x3b\x4a\xa7\x05\xa2\xbc\x66\x0b\x25\x15\x6c\xfa\x4e\x76\x19\xa0\x8b\xe6\x35\x3d\x28\x15\xda\x22\x3b\xf4\xe3\x35\x5b\x7c\x42\x31\xba\x80\x8f\xb1\x4a\x5c\xee\xea\xff\x0d\xc3\xa4\xe3\xdd\x9d\xa5\x07\xe5\xdb\x1a\x72\xac\x84\xb4\x5e\x2c\x40\x26\x1e\x97\xe9\x59\x9f\xcc\x98\xa4\xd8\x0d\xeb\x6e\x49\x6a\x61\x74\x15\x4e\xee\xec\xd8\x5c\x3f\x87\xa0\x5a\x11\x6b\x8e\xcc\x64\x10\xae\x87\xd7\x54\x33\xe0\xd6\x33\xf5\xf5\x66\x45\x9b\x1e\x6c\x77\x7a\xa9\x8d\x11\x4e\x49\x7e\x38\x5f\x34\x1a\x69\x55\x1d\xdd\x66\x79\xae\xb4\x02\x3a\x83\xe7\xd2\x52\x5d\x2f\xd5\x47\x82\x42\x55\x54\x55\x1c\x46\x5d\xf0\x74\xb1\xbb\xb3\x73\x5b\xaa\xf2\x25\x8a\xea\x39\x06\xc1\x54\x0d\xa3\x0e\xef\xee\xec\x98\x2f\x14\xa1\xde\x82\xef\xf5\x4c\x99\x9c\x2e\xf8\x5c\x02\x4b\x89\xd0\xa4\xe4\xb7\xf9\x3d\x95\x92\x26\x57\x2c\xbd\xbf\xa0\xe5\x3d\x97\x57\xac\xdc\xdd\xd9\x31\xe5\x22\xd4\x83\x42\xb6\xba\xbe\x41\x29\x40\xe7\x51\xdd\x89\x19\x4b\xb4\x8a\xad\x2b\x44\xba\x98\xca\x86\x7a\x36\x19\x89\x84\xe6\xec\x5e\xe4\x59\xca\xee\x27\xac\xc8\xd8\xfd\xef\x2c\xcf\x17\x55\x71\x0b\x85\xab\x71\x99\x67\xb3\xfb\x0b\x3e\x2f\x92\x85\xfa\xac\x4a\x02\x88\xae\xd8\x05\xff\x2c\x66\x10\x7a\xe8\x3e\xe1\x65\xc1\x4a\xf6\x79\x46\x8b\xf4\x3e\xe7\x34\xcd\x8a\x49\x92\x95\x49\xce\xee\xe5\xd5\x7c\x7a\x01\xbd\x97\xba\xa1\xc1\x60\xa0\x90\x05\x86\xa3\x46\x09\x79\x76\x94\x6a\xa5\x12\x46\x90\xda\xdc\x64\xc5\x84\xe8\xad\x06\x51\x4a\x5b\xc2\x84\xd0\x85\x60\x05\x69\x9a\x1a\xdd\xaf\x10\x07\x6a\x52\x0f\x5c\x1d\x9b\xa0\xb7\x29\xbc\x74\x09\x55\x2b\xea\xa7\xea\x1c\x8a\xd8\xce\xb3\x4b\x98\xd9\xb9\x62\xcb\x29\x67\xa2\xf8\xef\xff\x92\x28\xc9\xb9\xdb\xd7\x78\x58\x24\xaf\x58\x81\x6e\x99\x11\x2d\x28\x93\x86\xd3\x5c\x4a\xc3\x50\x2f\x79\x9e\xf3\x5b\xb5\x25\x93\x19\x70\x1a\x29\x73\x14\xa1\x1f\x47\xa3\x91\xe9\x4e\x6d\x28\x2f\x68\x72\xad\xe0\xe1\xc5\x73\xe8\x27\xaa\xd8\x60\x88\xee\xac\x32\x04\xea\xfc\x18\x2d\x09\x94\xfc\x75\xc6\x8a\x07\x0a\xee\xee\x2c\x7d\x8e\xa5\x08\xae\xc6\x01\x20\x45\x1f\x37\xe8\x08\x78\x0a\x01\x90\xe0\x53\xa6\x58\xd4\x83\x54\x07\x14\xec\x2b\x3a\xa1\x25\x3f\x6d\xe7\x47\x7f\x3d\xff\xe5\x0d\xd2\x61\xee\xe7\x25\xb3\x84\x5f\xc8\x4b\x14\xa3\x15\x61\x5b\x50\x2f\xcd\x6e\x7a\x1e\x9b\x28\xe4\x65\x4d\x55\xea\x15\xe2\xe0\x82\x7f\x56\x8b\xa9\x54\x30\x9f\xcb\x0c\x0c\xcd\x28\xf5\xac\x10\x07\x1a\xb7\xda\xa5\x0c\xce\x99\x52\x80\x11\xad\x32\x2a\x55\x81\x00\xe1\x68\x64\x09\xe8\xad\x3a\xf7\xef\xbb\x6b\x40\x0e\x20\x0f\x9f\xf4\x54\x71\x57\xb4\x1f\x77\xbe\xa1\xd1\x2c\xd3\xd3\x77\xe0\x5b\x75\x7b\xc7\x62\x46\x0b\xaf\x23\x40\x3f\x7c\x72\x3c\x54\xe9\x27\x5e\x2d\x37\x47\x2e\xf8\x17\x8a\x1d\xc4\x6a\xf1\x01\x1d\x81\xc7\xc1\x36\x88\xa7\x0b\x64\x58\x87\xe5\x91\x15\x0b\xc9\x0a\xe4\x5e\xd4\xd2\x8c\xae\xc1\xfc\x6d\xb2\x39\x96\xd1\xe1\xd6\x0c\xab\x2f\xe4\x65\x5d\x1c\xb8\xc2\x97\x59\x29\x24\x58\xb2\xd5\xba\x1a\x46\x9b\x89\x69\x26\x84\xa1\x94\x8f\x6e\xde\x65\xfe\x69\x2a\xec\xc4\xb3\x5c\x61\x0a\x18\xd7\x2d\x20\xa6\x9e\xa2\xa2\x18\x09\x26\xcf\xb3\x29\xe3\x73\x19\x34\x91\x10\xe4\xa9\x6a\x40\x1b\xe2\x99\x93\xa1\x90\x66\x5a\x01\xe9\x63\x44\x68\x03\x76\xd5\x81\x03\x16\xf0\x1c\xf4\x05\x51\x93\x5e\xfa\x08\x57\xcb\xb0\x16\xa1\xd9\xf2\x1b\xd0\x90\x6e\xa7\x4d\x49\x1d\x93\xe0\x4d\x9d\xcf\x88\x7c\x4c\xf8\xe7\x9c\x95\x8b\x0f\xe0\xa5\xa5\x94\x8d\xde\xc0\xe2\x4f\x0f\x85\x6d\x6f\x3e\xb5\x4d\xcd\x92\xeb\x1e\xa9\x73\x92\xc6\x34\xa1\x25\x6a\x8d\x52\x5c\xf1\xdb\x16\x47\x7c\x68\xbc\x50\xa9\x35\x50\x80\xdd\x2c\x54\x0c\xf6\x0c\x35\xd6\xa6\x6d\xa5\x42\x33\xc5\x04\xae\x94\xbc\xd0\x8c\xa2\x66\xab\xa9\x97\x52\xfd\xf9\xec\xa4\x8a\x3b\xaf\xf8\x67\x7b\xe9\xec\xe4\x6e\x3b\x2e\x5b\x6f\x93\x35\xac\x8f\x56\x33\x6b\x18\x05\xa3\xa5\xc3\xe7\x26\xb6\x87\x0f\xcf\x88\x37\xd6\x75\x94\x51\x9b\x2d\x58\xe7\xf6\x9c\xaa\x72\x9e\x6c\xda\xb5\x84\x53\x4d\x1f\x08\x2a\x4d\x40\x4b\x82\x8e\x7e\xa8\xa8\x45\x93\x74\x4d\xd9\x16\x56\x40\x2a\xde\x0f\xa6\x24\x35\xbf\x2f\x7e\xfd\xc5\x4c\x10\x68\xd7\x4e\xd3\xfe\xb9\xa8\xef\x9e\x6f\x7c\x1d\x99\xdd\x98\xa3\x07\xb4\x17\xc7\x0e\x7c\x14\xd6\x65\x9f\x2a\x0d\x93\xd3\xe5\x39\x8a\x9a\xda\x3e\x69\x03\xa0\x39\x43\x6d\xcc\x96\x9d\x99\x6d\xa4\xe2\x67\x7a\x05\x74\x61\x40\xa3\x8a\x0a\xdb\x84\xb6\x61\xaf\x35\x74\x54\xea\x8d\xe4\x66\x77\xa8\xb7\xbc\x33\x9a\x30\x83\x8d\x66\xdb\xd3\xd0\x99\xe3\x86\x12\x3d\xde\xdd\x5d\xa2\xda\xc6\xd1\xd4\x3b\x9b\xcd\x6c\x88\xa1\xd9\x2c\x37\xe5\x9d\x6f\x57\xc9\xb9\x3b\x83\xc3\xff\x46\x67\x33\x4c\x92\x79\x59\xb2\x42\xbe\xa3\xf2\x2a\xc2\xd8\xf9\x8c\xf9\xb5\x2b\x8d\xa2\x0c\xee\x14\xbc\x11\x16\x4c\xca\xac\x98\x08\x4c\xaa\x4c\xcf\x5d\x9e\x80\x2b\x1b\x1c\xb8\x56\x25\xcf\x66\xb3\xc1\x07\xf3\xcb\x05\xfd\xf3\x82\x8f\xab\xfc\x89\x5f\x45\xbf\x4c\x84\xc3\xfd\x7d\x95\x25\x3a\xb2\x08\xd6\x0e\x17\x2a\xff\x3d\x9f\x4b\x56\x0e\xa6\x74\x16\x34\x8f\x17\x4b\xa6\x37\xb9\x01\x4e\x13\x4c\xee\x66\x30\xd6\x61\x94\x26\x78\xd9\x0a\x24\x51\x95\x15\xac\xbc\xc9\x12\x78\x05\xce\xd4\x70\x29\x1d\xd5\x54\xef\x01\x56\xe4\x5a\x95\x7f\xa2\x26\x0b\x2f\xc3\xa5\x0b\x41\x6d\xdb\x2e\x78\xea\x37\xac\x7f\x6e\xd8\x6a\xb4\xb2\xd5\xeb\x9b\xaa\xd4\xf5\xcd\xea\xf6\x32\x1d\xc1\xc0\x16\xc5\xae\xa5\xce\x41\x5c\xb3\x45\xb3\x04\x4b\x33\x59\x2f\x31\x84\xa4\x2e\xa0\x68\x92\x7b\x23\x85\x5f\x9b\x0e\x34\x4b\xfd\x16\x75\x11\xd5\x40\x9a\xc1\x41\x7a\x5a\x6f\xd6\xa5\x36\x6a\xcc\x0b\x3a\x97\x57\xbc\xcc\xfe\xd3\xaf\x51\x4b\x6d\xf5\xb2\x72\x86\x3c\xec\xb0\x78\x5d\x61\x87\x49\x51\xad\x8d\x35\xb6\x03\xbe\xd4\x62\x5e\xba\x57\x02\x2e\x29\x04\xb1\x78\x7e\xc5\x92\x6b\xd1\x08\x8e\x54\x7f\x6f\x03\x88\x42\x97\x7b\x5e\x66\x32\x4b\x68\x8e\x5d\x50\xef\xd5\x25\xfa\xcd\xac\x7f\xe8\x5d\x14\xf6\xdd\x6b\xfc\x7c\xef\x16\xfb\xe0\x32\xcb\x25\x2b\x9f\x2d\x02\xfc\x41\x52\x39\x17\x98\xe0\xc4\xb5\xac\x2b\xd9\xeb\x89\xfd\xce\xd2\xb7\xb6\xb3\x7a\xe1\xa5\x0b\xa2\x5e\xf5\x4a\x66\x4a\x78\x75\x4d\x85\x1f\xb8\xbc\x6b\x3a\xde\xe9\x8a\xd8\xbc\x3e\xdb\x95\x13\xb5\x47\xd9\x05\xee\xcc\x96\xdf\x00\x5c\x78\xee\xef\x81\x37\xee\x74\x60\x2b\x2a\x7e\xf6\x57\x59\xc7\xca\x3f\xf4\x80\xad\x8d\x1c\x87\x7d\x8c\x2c\x20\x1e\xdc\x97\xf5\x36\xfa\x18\x99\x14\xdc\x09\x1e\x30\x93\xb5\x70\xbd\x05\x76\x53\x1b\x9c\x49\x22\x4d\x90\x9b\xfe\xaf\x93\x16\x3c\x64\x14\x12\x3d\xa1\xaf\xd9\xa2\x59\x9c\xe6\x19\x15\x01\x56\xa2\x11\x42\xab\x2a\xaa\x50\x5d\x6d\x49\x12\x2b\x70\x1d\xbc\x6f\xd3\x79\xc2\x82\xb6\x03\x46\x59\xdd\x1a\x0c\x24\xb1\x0b\x6d\x31\xbc\x42\xe6\x38\x8e\xcb\xfb\x7b\x87\xae\xea\xe7\x29\xeb\x1f\x46\x6c\x49\x46\x8f\xc3\xd6\xff\x77\x08\xf7\x38\x9c\x29\xe6\x53\xc3\x1f\x5b\x15\x0c\xd6\xd8\xec\xea\x22\xb4\xd8\xac\x02\xde\x00\x23\x79\x5a\x61\xe4\x6b\xb6\xe8\x44\xc8\xf6\x73\x2a\xe6\xf6\xe8\x4d\x95\x14\xdd\xa9\x4e\xee\x66\xe6\x95\x9e\x68\x6f\xb4\x5c\x12\xfb\x2a\xdb\xdf\x04\x2f\xa2\xbd\x43\x72\xcd\x16\xd0\x4a\x13\x18\x08\x3b\x10\x60\xf3\x8a\xc2\x6b\xb6\xc0\xa1\xaa\x3b\x67\x1b\x94\x86\x47\x17\x71\x48\x54\xf7\x75\xf4\xcf\x2e\x83\x56\xbc\x96\xc3\xf0\x4e\xed\x45\x8a\x58\x8e\x65\xb9\x30\xdf\x29\x4b\x78\xca\x7e\x7b\xff\xea\x39\x9f\xce\x78\xc1\x0a\x19\x40\x46\xb8\x4c\xa8\x4c\xae\x82\x32\xbc\x5b\xba\x43\x3b\x55\x81\x15\x2b\x2a\xb8\xe3\xad\xe1\x9f\x8e\x7e\x1e\x4e\x08\x1e\xe2\xca\x0b\x39\xc0\x50\x48\x0d\x8f\xe8\xe2\xfa\xcf\xb2\x85\xbf\xae\x5c\x8d\x0e\xf4\xbc\x5c\xb3\xc5\x3f\xf4\x93\xe0\x3a\xbe\xe8\x5a\x42\x80\x2a\x0e\x28\x1f\xfd\x55\x55\xdd\x20\xee\xea\x25\x13\x3f\xf3\xbc\x11\xac\xbb\x26\x85\x6a\xaf\xe4\x40\x9d\xd3\xbd\x43\xa5\x22\xb4\x33\x8c\x0f\xde\xc1\x61\x67\x3f\x6f\x78\x72\xcd\xd2\xb5\xa3\xf8\xc0\x04\xbc\xbc\x1d\x9e\xee\x8d\xa2\xbd\x43\xbf\x15\x97\x45\xf2\xac\xb8\x3e\xe7\xa0\xfd\xb6\x1b\x7b\x00\xae\x53\x7c\x7d\x03\xdb\x77\x1c\xa9\x2f\xad\xc3\xb5\x60\x05\x8c\x7c\x01\xb8\x92\x36\x50\xcd\x9e\x50\xb4\xd0\xcd\xdc\x08\x87\xd5\xd7\x98\x4a\x64\x48\x64\x08\xee\xef\x35\x90\x0c\x1e\x9f\x62\x1c\x05\xcf\xa8\x60\x3f\x7e\x6f\xc8\xcf\x3e\xa0\xd9\x91\x68\xdd\x9b\xfd\x06\x06\x6a\x0f\xaa\xcb\x06\x61\x6d\xc6\x2d\xa5\x64\x02\xc8\x0a\x88\xb2\x15\xcf\x45\x51\x85\xbd\x1d\x29\xf9\x45\xd0\x6a\xdf\xc5\xff\x80\x44\x7f\x4e\xb0\xa5\x17\x19\xde\xb1\xf6\xc8\x96\xaa\x69\x33\x51\x7f\xfb\xf0\xeb\xdb\x01\xbc\xcb\x16\xb0\x90\xec\x8d\xaa\x8a\x26\x34\xf9\xe1\xb2\x0b\xf2\x6b\xb6\x78\x47\xcb\xf5\x37\x3d\x60\xad\xc6\xde\xb2\xb3\x6a\x9d\x21\xf4\x13\x1b\x88\xf9\x85\x0e\xb3\x1b\x8c\x88\x0d\x2f\x72\x70\x18\x82\x07\x9a\x7e\xe8\x79\xd8\x45\x13\x8e\x68\xd6\x75\x6f\x41\xc4\xe1\x40\x72\xfd\x7c\xa4\xa7\x4e\xce\xf8\x2c\x50\xdd\xe8\x17\x01\x86\x4a\xa6\x0c\x3b\x30\x6d\x52\xd2\x22\x7d\xf7\xf5\xba\xdb\xac\x5b\x23\x05\xce\x92\xbc\x5b\x2d\xc9\xc4\x5b\x2e\xcf\x8a\x3a\xd6\x98\x89\xa6\x05\x2f\x16\x53\x3e\x17\x75\x3a\x7b\xf5\x42\xf3\x85\xbd\x91\xdf\x9b\x4a\x35\x9d\xd9\x8d\x70\x77\x8f\xf3\xe2\xba\xe0\xd5\x99\x61\xcd\xc9\xd1\x46\x90\xe6\x09\xcd\x3f\x48\x5e\xd2\x09\xfb\xc8\x3e\xc1\x5d\x82\xdf\x56\x56\xf3\x68\xd5\xbe\x5b\xf4\x96\x17\x2c\x90\xe1\xa9\xf1\x99\x6b\xb4\x17\x35\x7e\xdb\xb8\x89\x3a\x88\xb4\xed\xc1\x04\xb6\x65\x21\x91\x4b\xe0\xe9\x65\xcb\xb5\xf7\x82\x4d\xb2\xa2\x5e\x5e\x04\x95\x1f\x20\x8b\x47\x44\xc6\x7e\x67\xee\xb9\xd4\x13\x36\x66\x36\x72\x8d\xe2\x23\xb5\x42\xd7\x6c\x11\xb0\x30\x1c\xd7\x12\x01\x82\xa0\xba\x15\xd7\xea\x76\xb9\x0c\xc7\xee\x7c\x34\xcd\xf4\x8d\x55\x73\x87\x3b\x66\x83\xe7\x9c\x97\x29\x91\xb1\xd4\x5f\x95\xb3\x62\x3c\x22\x3c\x1e\x8d\xf9\x31\x1b\xfc\x9d\x25\x16\x42\x6e\x83\xdb\x97\x31\xa4\x7f\xe4\x9f\x0e\xa4\xf9\x18\x17\xfd\xb8\x7c\x52\x2e\x75\xec\x7b\xb8\x93\x24\xfe\x09\x11\x48\xfa\x6c\xa0\x1d\xa3\xfb\xd2\x7c\x90\x2c\x16\x7d\x36\x38\x4b\x7f\x9f\x0b\xa9\xd8\x68\x5f\x7a\x3f\x5c\xfc\xd6\x93\x11\x3c\xaf\x98\x85\x04\x9a\x2b\xf9\xbc\x48\x83\x43\xf6\xc3\x13\x11\x0e\x0f\x47\xa3\xca\x3f\xff\x92\x97\x53\x2a\x7f\x2b\x73\x08\xb1\x5e\xb8\x95\xd7\xac\xb7\x80\x50\x23\x18\xee\x5e\xd9\xf8\x62\xf8\x14\x87\x27\xa3\x53\xc5\x24\xfa\x78\x3f\x4d\x62\xdc\x97\x44\xff\x00\x43\x4b\x8c\xfb\x45\x18\xe9\xec\xd3\x15\xd9\x84\x2d\x15\x62\x2b\x0e\x0c\xc2\xc8\xbe\xd2\xa2\xbe\xab\xa7\xf1\x38\x07\xca\xc6\x98\x24\xbc\x48\xc1\x55\x01\x2e\x9b\xec\x1d\x12\xb0\x71\xbf\xa3\x25\x9d\x8a\xe8\x4e\xeb\x6f\xd1\x9d\x11\xe1\x5a\xad\x9a\x30\x23\xfb\xcf\x8a\xf4\x2f\x8a\x55\xcc\x1a\x9a\x00\xab\xbd\xde\x65\x3a\xb3\x4e\xbc\xf6\x27\x8f\x7d\x76\x67\xa7\x97\x7b\x91\xed\x02\x6e\x38\x87\x8c\x79\x9d\x77\x84\xc4\x95\x3b\xf4\xca\x15\xed\x72\x77\x06\x36\xe9\x33\xb5\xa8\x20\x99\x78\xcf\xb9\xb4\x0a\xc3\x72\x49\xb4\xe9\xf1\xc5\x5c\xdb\xdb\x1a\xaf\xcf\xd7\x9e\xa6\xb2\x61\xc2\xab\xdd\x4e\x41\x78\x78\x57\x78\xfc\x1f\xbc\xa8\x5d\x28\x27\x4e\x0e\x15\xbf\x61\x4b\x42\x13\xa3\xac\x6a\x6d\xa1\xae\x33\x86\x77\x5a\x5e\x9c\x1a\xc7\x78\xff\xa9\x1a\xab\x1f\x28\x6d\xc9\x00\xed\xc9\x95\xfb\x7b\x77\x25\xc1\xcc\xee\xda\x36\x98\xd9\x8d\xb7\xb2\xb5\x3d\x89\xc1\x03\x61\xc0\x1e\x21\x3a\x8d\x46\xa3\x1a\x52\x39\x44\x82\x97\xd9\x56\x3e\xb7\xff\x9d\x9a\x12\x25\x6b\x83\x84\x17\x62\x9e\xff\x95\x0b\xd9\xc7\xc3\x9b\xc3\x61\x42\x25\xcd\xf9\x64\x98\x52\x49\x13\x56\x48\x08\x80\x3f\x90\x57\xcc\xbb\xc8\x52\x31\x59\xb6\x0c\x97\x04\x6c\xdf\xbf\xd4\xfb\x63\xe1\x9d\xbe\xe9\x5c\xdb\xbc\x99\x70\x37\xf5\xe1\x55\x66\x44\xf6\x71\xf4\xc9\x99\x2b\x5f\x24\x5b\x0c\xcf\xe1\xf5\x4a\x1b\x69\xfd\x59\x9f\xf7\x1f\xfe\xfe\x0e\x7c\xbc\x83\xbb\x34\x89\xd8\x20\x4d\x48\x9a\xd8\x5d\xd3\x96\x93\x63\xec\x09\xcd\xba\x15\x93\x69\xb6\x92\xa9\x8a\x05\xcd\x87\xf3\xcc\x18\x36\x09\x40\x20\xc3\x8e\x89\xb6\xef\x14\x55\xb2\xbb\x66\xc0\x85\xa8\x32\x10\x5a\xdc\x5a\x0e\xac\xe5\x98\xc1\x05\x67\x09\x11\x3a\x79\x99\x66\x05\x95\x5b\x41\x59\xd5\x7a\x18\x48\x0f\x1b\xec\xa5\xbd\xea\x11\x96\x06\xb1\x32\xef\x05\x1b\xb8\xe4\x3c\x48\x13\x50\xb0\x54\xaa\xe9\x49\x0e\xe0\xc3\x25\xa7\x89\xd0\x05\xab\x24\x6f\x50\x18\x3c\xec\xdd\x4f\x57\x24\x13\x2f\x4a\x3e\x4b\xf9\x6d\x61\x9e\xc2\x81\xbb\x4f\x16\xbf\x5e\xdf\x3c\x48\x43\x3a\xc4\xe1\x2f\x4d\x4a\x5a\x47\xc1\x3e\xa9\x7b\x5d\x7d\xb8\xe2\xb7\x8f\x41\x67\x90\xe3\x96\x3f\x43\xa1\x9f\x79\x09\x56\xfa\x50\x2d\x06\x7f\x04\xbe\x5f\xb3\x45\x24\x95\xc2\xbc\x0d\x32\x5c\xdf\x0c\x21\xd0\xfa\xa9\xaa\xb7\x2f\xd8\x8c\x95\x54\xf2\x32\x1e\x62\xa2\x58\xec\x97\xe2\xed\x6b\xe6\x5e\x39\x02\x6b\x01\x5b\x5a\xe4\x7d\x18\x9f\xcc\x65\x34\x98\x28\xee\x34\xcc\x2e\x31\x08\x17\x24\xe0\xad\xf6\xd8\x3b\x26\xab\x09\x96\x40\xe7\x13\xf8\xe3\xe1\x9a\xc3\x55\x95\xeb\xd2\xab\xcd\x32\xe1\x03\xfd\xc3\xe5\xd5\x35\x75\x55\xc0\x4b\xf1\x50\x54\x09\x3b\x95\xab\xbf\x2a\x42\x60\xb7\x50\xad\x31\x3b\xa1\x2b\x60\x70\x6c\x25\xc6\xbd\x4c\x33\xf9\x4d\x30\x6e\xed\x0c\xcb\x90\x94\x8f\xe3\xc1\x05\x81\x42\x51\xa9\x50\x73\x6b\xcc\x24\x05\x29\xd7\x30\xa6\xe6\x2c\xaa\x29\x34\xba\x6f\xc6\x44\xa0\xe5\x4e\xa8\x89\x42\xfd\xf3\xae\xe4\xd3\x4c\xb0\x78\x4b\x30\x2c\x12\xac\xa0\x93\x4e\x08\xbf\x22\x9d\xac\x90\xc3\xae\xe1\x6b\xb6\xb0\x17\x4b\xb5\x6d\x05\x87\xa7\x9b\x8f\x50\x68\x83\xca\x30\x2b\x2e\xf9\x10\xf7\x75\x73\xc6\xca\xa2\x45\x03\xd3\xeb\xdc\x1a\xa5\xaf\xa1\x99\x56\x62\xf9\x71\xf4\x89\xb0\x65\x18\xb1\xaf\x49\xdf\x9e\xa2\xb7\x31\xa9\xb7\x28\xb7\x4e\xed\xff\x0a\x62\x57\xc2\x49\x1f\x95\x35\x18\x4c\x37\x91\xbb\x6a\xc6\xc4\x45\xa4\x9d\x56\x47\xff\xd6\xd0\xbb\x95\x86\xe8\x99\x10\xda\x84\xbf\xb1\x6a\xb5\xad\x06\xe4\xa9\x7f\x5f\x41\x03\x32\x03\x6f\x29\x41\x1b\x6a\x25\x15\x30\xb2\x35\x97\x8f\x95\xe1\x2b\x26\xb4\xf8\x9a\x13\x7a\xc5\x68\x2e\xaf\xec\x5c\x02\x79\x16\x74\xaa\x77\xb7\xdf\x44\xa9\xdc\x8c\x6a\x3f\x7e\x1a\xcb\x56\xd3\xe6\x19\x39\xe6\xd6\xea\x9c\x4e\x04\xec\xb9\x8b\x41\xc2\x8b\x84\xca\xa0\x9e\x07\x7d\xaa\x5c\xbd\xe7\xed\x62\xf0\xee\x00\x94\x99\xa2\xf3\x22\xfb\x67\x60\xdf\x10\x27\x08\x77\x50\xb7\x4b\x92\x54\x91\x5e\x45\x3c\x70\xd4\xf7\x15\x57\x7b\xdd\x52\x13\x1e\xff\xbb\xfd\x8f\x94\xf1\x41\xf5\x43\xc4\x23\x92\xe9\x19\xf4\x94\xdb\x8e\x2d\xae\x7e\x95\x10\xd6\x3b\x8e\x0b\x80\x5e\x03\x43\xe3\x62\xf0\x81\x4d\xc0\x46\xf2\x40\x23\x3a\x36\x95\xae\xbc\x17\x33\xf8\xab\xf6\xc9\xa6\x7a\x1c\x53\x3b\x3e\x67\x14\x2a\x08\x0b\xc7\x99\x46\x93\x3b\xa5\xae\x47\xba\x1a\xb1\x25\x22\x49\x84\xae\x1e\xd1\x65\x48\x44\x3f\x96\x84\x9f\xc8\xfd\xfd\x80\xc7\x32\x24\xf2\xa4\x84\xfb\xd7\x9a\xd0\x32\x1d\x7f\x76\xc5\xbe\xde\x36\x79\x20\xdd\xe7\x12\x6c\x55\x30\x4c\x92\xc4\x99\x0d\xea\xeb\x3f\x2c\x16\x24\xc3\x23\x47\x4b\xc9\xc9\xe8\x94\xc6\xc9\x9f\x8e\x4e\xb3\x8f\xf3\x4f\xae\x99\x28\xc8\x3e\xce\x0f\x0e\xab\x84\x7e\x2d\x3b\x1c\x1e\x45\x01\xd5\xd6\x2d\x52\xc6\x23\xeb\xfd\x53\xd7\x5d\x24\x30\x48\x50\x5f\x94\x1a\x33\xe5\x93\x92\xce\xae\x16\xd1\x9d\x6d\x46\x44\x19\x29\x22\x07\xe4\x34\x2b\x22\xb0\x71\xbf\x2a\x64\x70\x38\x1a\x3d\xe1\x60\xa0\x22\x53\x96\x66\xb4\x91\x45\x4d\x16\xfd\x5c\x4f\x2f\xb5\x4d\x0b\x36\x9f\x5f\xb0\xf7\xf4\x58\x05\x30\xa5\x07\x94\xa8\x3a\x2f\xd8\x44\xed\xd8\x5e\xc1\xa8\xc0\x52\x9d\x01\x4a\x6d\xab\x5e\x88\x58\x12\xf6\x98\xad\xa8\xea\xb2\x29\x5f\x85\x27\x60\x2b\xd1\x5c\x2d\xb3\xca\xae\x7e\xd5\xb9\xc8\xff\x01\xf9\x6b\x37\xf7\xdf\xca\xfc\xb0\xe1\x22\xd8\x9d\xbf\x9b\xbf\xb3\x24\xff\xdf\x3a\x7d\x34\xc9\x87\x3a\x86\xc0\xa3\x67\xad\x7e\x2e\xc2\x06\xaf\x5e\x9c\x4a\xfb\xb2\x62\x60\x86\xef\x4d\x65\xe4\xcd\x72\x3d\xc7\x4e\xb2\x33\x60\xc2\xe9\x77\xe7\x06\x60\x7f\xff\xfb\x91\x36\xca\x09\x70\xb2\xe8\x32\x45\xa6\xc9\xa0\xe6\x2a\x16\x46\x50\xed\xa9\x57\xad\xd3\x88\x97\x26\x83\x9a\xc3\x18\x9c\xdd\x6d\xb8\xf4\xda\x01\xae\xb6\xf7\x3d\x4b\x72\x4c\x1a\x83\x0d\x6b\xa8\xf1\x47\x69\x63\x0d\xce\x4f\x68\x92\x6f\xc1\x7e\x15\xe6\xb8\x0d\x54\x96\xae\xd2\xcf\x3c\x8e\xeb\xaf\xb6\xde\xa6\x3e\x86\xaf\xd1\x24\xf7\xf4\x59\x3d\xbe\xc7\x58\x8f\x5b\x93\x04\xee\xa5\xe0\xcb\xe7\x39\xc4\x56\x80\xd5\x4e\xef\xaa\xe4\xea\x1c\x4f\x3f\xfe\xe4\xb9\xd8\x7a\x7d\x3a\xa7\x56\xcf\x05\x17\x7b\xe7\xda\x7e\x72\x18\x2e\x6d\x44\x1e\xd1\xc8\x71\xf6\xe4\x16\x58\x1d\x00\xc1\x2b\x21\xd1\x47\x4c\xab\xd1\xe0\x4f\xa4\x65\x49\x8c\xf6\x0e\x49\x65\x04\x5e\xe1\x42\x53\xbd\x3d\x02\xd1\x7e\xb4\x6b\x8f\x71\x04\x5a\xeb\xd6\xa0\x79\xe1\x0a\xdf\x2d\x4b\xcd\x7d\xd9\xe9\x8b\xd4\xf4\xca\x32\x6d\xf9\x20\x18\xd7\xbf\xaf\x07\x42\xc3\x67\x6a\x15\x08\xab\xbc\xb4\x9a\x47\xd7\xed\xd9\xc2\xfe\xbb\x0e\xb5\x02\xce\x8d\x71\xbc\xa1\xaf\xd7\xe8\x94\x79\xee\x5a\x91\xf4\x1c\xbc\x56\xc2\xac\x7d\xd2\x1e\xe1\x58\x36\x3a\xc5\xae\x27\xbc\xae\x9b\x4d\x3c\xc4\x3a\xa6\x85\x8c\xc2\x8a\xf1\x9b\xab\xdd\x2d\x43\x35\x24\xbb\xdb\xb5\x1d\x56\xf1\x70\x49\xae\xb2\x94\xa9\xe4\x56\xed\xb5\x86\xf4\x65\x48\x5e\xdf\x28\xe6\xb1\x39\xc1\x3b\xd3\xcd\x6b\xb6\x58\xe1\x92\x53\xcd\x6a\x35\xbd\xc6\x74\x12\x9e\x3a\x93\x48\xe4\xbb\x2a\x2d\x89\x2f\x8d\xde\x32\x5a\x32\xd1\xf2\x82\xaa\x89\x00\x52\xc4\xd2\xbe\xa3\xca\x8d\xbf\x93\xb0\x49\x20\x14\xf4\x97\xa3\x71\xd8\xaa\xad\x96\x11\x56\x04\xd0\xdf\xe9\xe7\xe0\x6e\x5e\xe6\xd1\x03\xb6\x42\x66\x8c\x84\x98\x08\xc2\x43\x02\x57\x63\xf1\x5f\x5e\x9e\xe3\x65\x53\x1e\xe8\x98\x8a\xd5\xf0\xde\x6b\x0f\x6c\xef\xd0\x70\x19\x0e\x14\x9a\xd5\x44\xc8\xf7\xa3\xef\xeb\x32\x7b\x6d\x1b\x05\xe8\x11\x76\xb5\xdf\xe8\x5b\xac\x8d\xe3\x12\x25\x71\xbd\x85\x6e\xae\xfc\x83\x3e\x81\x96\xb5\xa6\x09\xfe\x44\xd2\x64\x0d\xd3\x34\x11\xb8\x06\xb0\x79\x76\xe0\x28\x9e\xeb\x90\x5d\x8b\xc4\x86\x0f\x8c\x8f\xb1\xd5\x18\x46\xbe\x3b\x37\x91\xf6\x4c\xd2\x58\xd8\x43\x78\x49\xa8\xe5\xfb\x26\xe2\xc0\xa4\x36\x6c\x7b\x4a\x4b\x59\x83\x24\xeb\xb1\xc4\x99\x29\x8a\xfd\x7d\x3c\xc4\xfa\xc3\x4c\x3b\xd8\xf9\x0a\xcb\x52\xb5\x0d\x93\x6c\x8d\x56\x7e\x75\x1f\xb3\xde\xfd\x76\x8e\x41\x62\x45\xb2\xee\x7b\xd5\x85\x6d\x86\xe4\xb4\xa3\x9f\x63\x9b\x6b\x11\xa8\x06\x76\xb4\xaa\xac\x3e\xc6\xae\x0f\x91\x75\x62\x5d\x13\xa3\x2b\xad\x06\xf4\x5b\x23\x45\x30\xc1\xef\x75\x04\x27\x1b\xb9\xe9\xf6\x2a\xcb\x19\x9a\x95\x3c\x61\x5a\xc8\x21\x35\x27\x9a\x08\xce\xd9\x67\x08\x40\x69\xa2\x60\xb5\xfd\x18\xb7\xc2\x9f\x15\x4c\xc2\x61\x53\x0b\x6f\xc4\x1a\xc4\xb0\x01\x30\x78\x71\x99\x95\xd3\x00\x9f\x95\x0c\xe2\x4e\x89\xb9\xf9\x80\x00\x54\x92\x23\x1b\xcc\xeb\x2a\x13\xe8\x12\x06\x70\x8a\x43\xfb\xd4\xe0\x36\xec\xa7\x85\xf2\x7d\x7c\x5a\xb2\x64\x5e\x0a\x86\x89\x24\xc2\x22\xce\x8b\x97\x6f\x5e\x9e\xbf\xec\xe2\x4a\xf5\x45\xae\x31\xdd\xa0\xf8\xb6\x2b\x58\x3f\xe6\xda\x80\x29\xdd\xd5\xb8\xc8\x23\x39\x91\x63\x3e\x5a\x6b\xdd\x9e\xf9\xac\x45\x1c\x5f\xc1\x01\xf5\x1b\xdb\xe8\x7a\x6b\x31\xe7\xcb\x38\x04\xab\x16\xba\xc5\x21\x1a\x1e\x9c\x6d\x04\x28\x36\xa2\x5c\xe6\x0a\x6e\xbf\xee\xac\x49\xb9\x3a\x56\xb9\x5a\xf4\x4d\xa6\x9e\xb4\x36\xaa\x2d\xb6\x55\x3b\x4e\xb2\x3a\x49\x10\xfa\xbe\xd9\x8d\xf1\x19\xee\xf1\x25\xa2\xe7\x21\xd6\x61\x97\x5f\xe8\x84\x26\x70\x5f\x57\x11\xf1\x0f\xcd\x88\xac\x24\xc6\xe3\x08\x5f\x7c\x7b\xc2\x7f\x25\xd9\xb4\x53\xe9\x04\x2f\xd7\x35\x7b\xba\x34\xc1\xa4\xb1\xb1\xf3\x5d\xea\x3e\x62\x7d\xbe\x80\x09\x16\xee\x4a\x97\xf5\xc1\xdb\x8a\x51\xb8\x5a\xd1\xde\x48\xa9\xf6\x2f\x21\x38\x88\xfe\xa9\xfb\x50\xe3\x89\xf0\xcf\xf0\x8d\x2e\x16\x70\xc9\x15\x9b\xbc\x08\x63\xa2\x01\x88\x30\x2d\x16\xc8\x02\xa3\xff\x32\xd8\x9d\x7a\xc9\x6e\x5f\x41\xdc\x5e\x43\x6d\x58\x95\xb6\x96\x15\x13\x35\x59\xeb\xf6\x5a\x3e\xec\xd4\xbf\x10\xeb\xef\xa0\xad\xd3\x74\x9a\x68\xbf\x1c\x4d\x3c\x4a\xbd\xbc\xbf\x57\x89\xf6\xd4\xac\x4a\xf7\xf7\x38\x1b\x75\x61\xc6\xce\x52\x13\xa8\x7c\x1d\xcc\x66\x99\xea\x2c\xd3\x4c\x87\x8b\x48\xaa\x75\x18\xc9\xa6\xd5\xf5\xa2\x2e\x93\xb1\xf4\x9b\xd4\xce\xff\x92\xbf\xe1\xb7\xac\x7c\x4e\x05\x0b\xc2\xc1\x14\xfc\xcf\x59\x3d\x35\x5c\x86\x63\x71\x9b\x19\xcf\xf4\x84\x0a\xe6\x56\x21\xb2\xbe\xa4\xde\x9d\xa6\xd6\xe6\x50\x31\x92\x31\x54\x73\xdb\xc3\xcd\xaa\x8d\xc2\xb1\x89\xd6\xe3\x2a\xd4\xfc\xe1\xdb\x18\x0c\x53\x30\xf8\x0f\x46\x93\x2b\xdc\xda\x2c\x3e\x77\x88\xfa\xd0\xae\xb1\x22\x84\x4a\xfa\xba\x73\xb2\xcd\xb7\x7f\x35\x52\xd4\x9b\xdf\x47\x49\xe0\xac\xb0\x37\x88\x8c\x07\x42\x47\x94\xdd\x15\xcc\xb8\xb9\xff\xab\x98\xed\xe3\x77\x7f\x1b\xab\x6f\x15\xdc\x5a\x85\x33\xc7\x0a\x5b\xeb\x70\xf6\xac\xc4\x3c\x13\xa8\x14\xba\xa6\xb6\xdf\xc1\xb8\xbf\xf4\x48\x46\x9f\x0f\x42\x47\x1d\x46\x4b\xd9\x3c\x35\xd1\x07\x44\x6d\x75\x40\x7e\x2d\x75\xa0\x86\x88\x1e\x12\xb6\x25\x44\xa5\x07\x2a\x72\x58\x81\x6e\xc6\x18\xd3\x38\xf6\xff\xf2\x76\x9d\x53\x81\x77\x91\x42\x7c\x33\xe9\xf5\x69\x8d\x88\x41\xbc\x44\xaf\x5e\x60\x22\x18\x2d\x93\xab\x67\xb4\x54\x12\x49\x9b\xdb\x9f\xcd\xa5\xe4\x85\xfa\xad\x50\x48\xb5\xa7\x1f\xdb\xc2\x04\x57\x01\x46\xb7\xdb\xb8\xaf\x99\x12\x30\xf9\x87\x9e\xc0\xfb\x66\x02\x4b\xf5\xf4\x47\xca\xa5\x35\x22\xc8\x7a\x36\xe9\x2b\xc7\x70\x03\x78\x23\xe1\x33\xf6\xae\x2b\xec\xc5\x71\x71\x5a\x58\x95\xfd\xd5\x8b\xcd\xe5\x97\x15\x80\x9d\xe2\x63\x85\xd4\xd0\x56\x97\xb3\xa4\xed\x0e\xbb\x85\xd5\xe5\x2c\xc9\x7d\x65\x77\x05\xbb\xfd\x5a\x7b\x1e\x9a\xe4\x43\x0d\x36\x26\x45\xd7\x6e\x07\x6e\x9c\xe9\x5b\x5f\xd9\xe5\x22\x90\xed\x9d\x8e\x6c\xaa\xbc\xef\xab\x48\x0b\xce\xfc\xf1\xea\x45\x65\xad\xd9\xe6\x04\x51\xc1\xd4\xd1\xe1\x3a\xff\x99\x35\x47\x81\xd6\x98\x02\x48\xa7\xad\x7a\x1b\xdb\x57\xf4\xcd\xa5\xa0\x9b\x11\x43\x2f\x59\x31\x41\x67\xcf\xdf\x34\x15\x73\xf2\x67\xf6\x74\x65\x3f\xcb\xe6\xa1\xdd\x23\x95\x05\xe0\x18\x8f\xb6\x1b\xae\xe7\x69\x0e\xbf\x05\xdb\x68\x5f\x39\xbe\xeb\x42\x6d\xa3\x48\x8c\xd7\xe2\xf5\x32\xbb\x0c\x36\xd6\x16\x74\x54\xf1\x4c\x20\x40\x7c\x08\x43\xb8\xe0\xf3\xd2\xd3\x1a\xc2\xbb\xbb\x95\xa1\x5f\x00\x27\x97\x9d\x98\x5b\x49\xa4\x95\xfb\x5c\x62\xd1\xe1\x2d\xbf\x45\x73\x01\xc1\xfc\xc0\xc3\x05\x16\xff\xd5\x0b\xf2\x94\x3d\x0d\x97\x4b\x92\xe4\xbc\x68\x1f\x3a\x6c\xca\x0e\x2a\x43\xc7\xe3\xb9\xc1\x43\x23\xdc\x9a\x5b\xa8\x11\x0d\xcd\x28\x1b\x2c\xe3\xf1\xbc\xa1\x93\x3c\xdc\x24\x7f\xd0\xd1\x19\x2f\xe7\x79\xbe\x40\x00\x40\x8a\xcc\x32\x7e\xaf\xe6\xf9\x9b\xed\xa9\x57\x92\x2d\xc1\xda\xce\x81\xff\xd0\xb5\x7d\x94\x5d\x14\x2a\x6f\xad\x52\xab\xa5\xaf\xd4\xe9\x8d\x16\xdf\x3e\x38\xf1\x55\x38\x3e\xbf\xf8\x5d\xc4\x1f\x3f\x91\x36\xc3\xef\xf0\x15\x51\x85\xd7\xb9\x8b\x40\xfe\x3a\x31\xd1\xd6\xa5\x40\x23\xf3\x1d\x32\x54\x1b\x5d\x66\xbf\x95\xf8\x8e\x1f\xc2\xf2\xb3\xe7\x6f\xcc\x42\xa5\x36\xaa\x29\x60\x3c\xd6\xcc\xe4\x0f\x41\x73\x6d\xcb\xfd\x12\x95\xe6\x6b\xe0\xf9\xb6\x88\xaa\xa1\x7e\xb4\x46\xe3\xa6\x75\xcd\x42\xe9\x2e\xba\x17\x6a\x4b\xe5\x01\x9a\xfa\x22\xe5\xc1\xfa\xac\x6c\xae\x3c\x38\x99\x5e\xb2\x4d\xa5\xba\xf7\xa6\xda\x0a\xbe\x53\xb6\x19\x0f\x34\x6f\xc5\xb2\x06\x12\x58\x4f\xd0\x79\xf1\xba\xe9\x99\xb3\x22\xe4\xdb\xba\x70\x6e\x95\xcc\x30\x79\x1a\x04\xbd\x34\x2b\xc5\x79\x08\x92\x5a\x74\xb8\x07\xb4\x69\x59\xc7\xf6\xaa\x26\xff\xa5\x5a\xca\xc7\xce\xfc\x39\x28\x0d\x5d\x5e\x3d\x5d\x63\x5b\x05\x92\xe7\x6e\x44\x2e\x68\x72\xfd\x57\x3e\xdd\x76\x28\x63\xed\x04\xe4\x3d\x67\xe9\xbf\x62\x79\x27\xd9\x74\x96\x53\xc9\xde\x42\xf8\x3e\xa5\x72\xba\x00\xbc\x22\xc2\xa9\xf1\x7f\x10\x2a\x39\x4b\xae\x6b\xe6\xa6\xef\xdc\x2b\xf9\xe1\x20\x13\x01\x1e\x54\xa5\xc3\xfd\xfd\xef\x02\x3c\xcf\x5d\xd2\xc1\x94\x15\x73\x1c\x0e\xae\xb2\x94\x05\xee\x70\x5d\x6d\x7a\x37\x03\x4c\x69\xf6\xb8\x61\xa1\xd8\xac\x66\x15\x9b\xaf\x7d\xad\x61\xab\x16\x9a\x0d\x18\x34\xdb\x1c\xfe\xa1\x89\x92\x8d\x7d\xf3\xcd\x66\xd5\x4d\x1c\xc0\x86\xfd\x71\xf3\xba\xb5\xaa\x5f\x0c\xf8\xeb\x9b\xc6\x03\xa9\x6b\xea\x5f\xdf\x60\xb7\x11\x52\x88\xf3\x8c\x96\x9b\x55\xd4\xe4\x74\x41\xcb\xaa\x7e\xbe\x69\xcd\x5c\xe0\xc6\xee\x6b\xe3\x9a\xb8\xc1\x79\x37\x45\x11\x17\xe2\xaf\x8a\x23\x61\x18\x16\x23\xd4\x3e\x66\xb6\x17\xc7\x86\xc3\xfa\xe1\x66\xc5\xfe\x7e\x57\xaa\x17\x77\xe0\xbb\xa0\xab\x40\x38\x60\xf5\xcb\x0c\xaa\x23\x5a\x05\xf2\x35\xf7\x04\x04\xbc\xb2\xda\x08\xfa\x7f\x67\x82\x54\x47\xf8\x78\x76\x02\x5e\x39\xc7\xc3\xd9\x09\x26\x26\xd0\x3b\x86\x78\xf2\x98\xe8\xf0\xd9\x11\x86\x80\xed\xd8\x48\x5c\x1d\xb0\x1d\x13\x29\xf3\x88\x2e\xc3\xb1\x56\xf8\x03\xf7\x80\x7f\x0d\x48\xa5\xda\x75\x8e\x0e\xb4\x34\xe1\x3f\x4a\xe9\x7c\xc9\xe1\xc1\xfc\x5f\x6f\x58\x19\xb8\x1b\x1d\xa0\x62\x9c\x49\x59\x66\x17\xc0\xe0\x94\xc0\x3f\x00\xcc\x0e\xfb\x18\x1d\x20\x73\xb2\xdf\x2c\x61\x2f\x22\xa8\x52\x53\x81\xed\xc9\x62\xb3\x98\xb9\xaf\x81\xc3\x31\xc6\x7b\x71\x2c\xf6\xf7\x03\xda\x8f\x31\x0a\xcc\x3d\x10\x25\xbc\x45\x1f\x87\x38\x24\x2e\x94\xf9\x84\xd9\x88\xa9\xcf\x16\xaf\x52\xdf\x31\x1e\xe0\x3a\xc8\x8a\x4b\x8e\xc3\x81\x64\x9f\xa5\xb1\xa1\xc5\x74\xb9\xe2\xd1\xb1\x00\xcf\x68\xc1\xf2\x67\xb4\x6c\x3f\xcf\x46\xad\xc5\x8a\xc6\xee\xb0\x25\x8e\xd9\x29\xbe\x98\x1c\x4c\x4a\xc6\x0a\x1c\xa9\x4f\x5e\xc2\x6b\xc7\x44\xad\xb5\xd7\xfe\x07\x7a\xc9\x4c\x68\xa4\x5a\x3c\x73\xe8\xef\xe0\x82\x96\xa8\xd7\xa7\xfd\x1e\xb6\x61\xc6\xab\xc7\xc1\x3b\x80\x54\x7a\xfc\xbf\x10\x46\x78\xd6\xf1\x82\x96\x07\xe0\x5c\xcd\x0b\x49\xf3\x6d\xa0\x35\xd6\x82\xb7\xfa\x88\x71\x0d\xc4\x7a\x77\xa1\xca\x9d\x62\x88\xc5\x7e\x82\xfb\x5e\x7b\xbf\xc9\x2c\x17\x03\x26\x12\x3a\x63\x2f\x3f\xcf\x4a\xdd\x6c\xa0\xf6\x23\xa1\x22\x1b\x5d\x23\xda\xaa\x2a\x3c\x71\xef\x2a\xa3\x63\x31\xa5\x79\xbe\x65\xb7\xba\xca\x9a\xc9\xa4\x9b\x4c\xcf\x2f\x4c\xd2\x8e\xe9\x89\x6b\x2b\x31\x65\x92\x2a\x42\xc1\x27\xbd\x8d\x40\x7c\xc6\xae\xe8\x4d\xc6\x4b\x45\x9b\x17\xe6\x5b\x2f\x19\xb6\x26\x6a\x0c\x57\xe1\xce\xcf\xdf\x28\x5a\x8b\x69\x7f\x45\x7f\x04\x6d\xd6\xe3\xf9\xf9\x1b\xd5\xd9\xf9\xf9\x1b\xd3\x4f\xf8\xe8\x89\xa1\x49\xde\xc4\x19\xc5\x58\x2d\xdc\x0a\x59\x4e\x69\xb4\xba\xf5\x0d\xc0\x0d\xfb\x3d\xb3\xe6\x8e\x1e\xe7\x79\x7e\xa0\xdf\xd0\x29\xf8\x01\x1c\x91\x6e\x34\xd7\xd4\xc7\x85\xb5\xc3\xd2\x1b\xab\xf7\xf3\x9c\x89\xfa\x7a\xd7\x06\x86\xdf\x72\x54\xaa\x32\xc8\xbe\x6a\x18\xb1\xf5\x2c\x61\x9a\xc9\xee\xa9\x42\x36\x62\xd3\x09\x3d\xad\x87\x18\x53\x40\x0f\x06\x83\x07\x9a\x36\x6a\xd7\x39\x9d\xb8\xfd\x6f\xc7\x5d\x01\x13\x36\x4e\x43\x0e\x37\x1a\x23\x2d\x6b\xd7\x35\x5d\xf1\xea\xbf\xa8\x7f\x9b\xf0\x6b\xa9\x59\xdd\x49\x1c\x57\x37\xf1\xba\xef\x10\x56\xf9\x27\x02\x62\x31\x55\x09\x56\x0a\x17\x31\x1d\x1e\x1d\xfc\x99\xc8\xb8\xa7\xdf\x1d\x3b\x16\x37\x13\x04\xef\xe3\xc6\x58\x73\x35\xa4\x5f\xc9\xb5\x3f\x4f\x90\xf9\xef\x78\x62\xb1\xc4\xbb\x7c\xa5\x9f\xad\x52\x8b\x1a\x63\xf8\x54\xca\x48\xd0\xeb\xd3\xe1\x51\x1f\x13\x84\xe1\xa3\x17\x56\xad\xa8\x76\xbc\x1f\x08\x1d\xeb\xd7\x5a\x6c\xdb\x6a\x7b\x31\x81\xd8\x51\x18\x95\x0a\x86\xa2\xdf\xc3\xc3\x75\x35\xe8\xe7\x4c\x98\xb2\x83\xa3\x1f\x9e\x6c\x55\x7e\xcb\xe2\x3f\x6d\x50\xfe\x82\x97\x29\x2b\x57\x00\x7f\x3c\x9c\xd4\x66\xa2\x92\x31\x05\x13\xf8\xa4\x47\x4a\x6f\xcd\x04\xc9\xe2\xd2\x06\xf3\xd2\x97\x4c\x4f\x9e\xfe\x38\xd2\x88\x91\xc7\x4f\x7f\x1c\x0d\xd9\xa0\x18\x97\x71\xd9\xbe\x9a\xeb\xe1\xff\x28\x8e\xe9\xfd\x3d\x8d\xe3\xec\xe0\xf0\xfe\x5e\xc7\xe6\xa2\x45\xca\xa7\x41\x78\x9c\x2f\x43\xaf\x13\x1b\xf0\xb2\xec\xc0\x2e\xd5\xa0\xec\x5b\xac\x31\xf0\x2b\xb0\x7d\x0c\x28\xb9\xd4\xcb\xff\xf4\xc7\xd1\x13\x3a\xcc\xd4\xca\xa3\xc5\x91\x9a\x89\x83\xe2\x49\x50\x0d\x6d\x28\x42\x85\x69\x4e\x7d\x52\x25\x36\xe1\xaf\x70\x41\xd0\xd5\xb4\xad\xa9\xda\x55\xdb\x2e\xdb\xa8\x53\x9b\xb6\x6d\x8a\x43\xf3\xbc\x80\x27\x7c\xf9\x0d\x2b\x7d\x74\xaf\x34\x42\xb5\xe3\x0d\xc7\x78\x78\xd2\x5b\x86\xa4\x3e\x2f\x2b\xd7\x98\x5e\xb0\x5c\xe0\x75\xb8\x33\xe3\x59\x21\x01\x75\x7e\x68\x22\x59\x45\x7c\x59\x72\xbd\x82\xec\x46\x4a\x4c\x15\x4f\x0e\x06\x47\x3f\x34\x68\xae\x5a\xad\xcf\x47\x31\xfe\x69\xd4\x68\x1d\xa1\x63\xa5\x20\xa2\xcf\x31\xfe\xe9\x07\x8c\x16\x31\x1e\x61\x94\x2e\x62\x3c\x78\x7a\xc4\xa6\x4a\x04\x04\xe2\x64\x74\xea\x6e\xc0\x1e\xd9\xa0\x6e\xd1\x28\xec\xf7\xa6\xe2\x78\xa8\xaa\xd7\x01\x1e\x4e\xbe\x60\x00\xdf\x18\xfe\x1f\x46\xdf\x18\xfe\x9f\xbe\xf1\x00\x7e\xfa\x96\x0b\x70\x70\xa8\xb8\xdc\xb7\x04\xff\x70\xe4\x2f\x00\xde\x00\x7e\xff\x57\xf5\x7d\x3c\x14\x37\x93\xb5\xca\xa7\x54\x82\xef\x7f\x02\x00\x00\xff\xff\xdc\x0f\x0f\x48\x86\xc3\x0b\x00") +var _web_uiV1StaticApplicationMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\x6b\x7f\xdb\x36\xb6\x28\x0e\xbf\xdf\x9f\xc2\xe4\xce\x66\x89\x08\xa6\xa5\xa4\x9d\xb3\x4b\x05\xe6\x49\x73\xed\x9e\xa4\xc9\x34\xe9\x74\x66\x28\x36\x3f\x5a\x82\x24\x36\x34\xa0\x92\x90\x2f\x35\x35\x9f\xfd\xf9\xad\x05\x80\x04\x29\x3a\xed\xf3\x3f\xe7\xc5\x79\x61\x8b\x04\x71\xc7\xc2\xc2\xba\xe3\xec\xa1\xf7\x1f\x27\x0f\x4f\x7e\xfd\xdb\x9e\x57\xb7\x27\xff\x93\x5f\xe5\x1f\x96\x55\xb1\x53\x27\x6f\x8a\x8b\x2a\xaf\x6e\x4f\xae\x66\xd1\x6c\x1a\x3d\x82\x4c\x5b\xa5\x76\xf1\xd9\xd9\xaf\xbf\x41\xde\x68\x29\x2f\xcf\xfe\xe3\xe4\x21\x7c\xf8\x5e\x2c\xcb\xfd\x8a\xd7\x27\x1f\x8a\xdf\x7f\x2f\x79\xf4\x6b\xed\x64\xaf\x31\xed\xd7\xda\x2d\xf0\x4c\xee\x6e\xab\x62\xb3\x55\x27\x8f\xa6\xd3\x6f\xe8\xc9\xa3\xe9\xec\xb1\xed\xc3\x4b\xb9\x17\xab\x5c\x15\x52\x50\xa8\x38\x3a\xc9\xc5\xea\x44\xaa\x2d\xaf\x4e\x96\x52\xa8\xaa\xb8\xd8\x2b\x59\x61\x0b\x3f\xf2\x92\xe7\x35\x5f\x9d\xec\xc5\x8a\x57\x27\x6a\xcb\x4f\xde\x7e\xff\xf1\xa4\x2c\x96\x5c\xd4\xfc\xb8\xcb\xb2\xda\x9c\x75\x1f\xe1\xfb\xf3\x5c\xf1\x18\x9b\x3f\x9d\xfe\xaf\xd3\xe9\xe3\x8f\xb3\xc7\xf1\xd7\xff\xfd\xaf\xff\x38\x79\x78\xf6\x1f\xde\x7a\x2f\x96\xd0\x8f\x90\x53\x45\xee\xec\xdb\x89\x08\x39\xb9\xbb\xca\xab\x13\xc5\x78\x54\x72\xb1\x51\x5b\x2a\xd8\x52\x45\xea\x76\xc7\x43\x4e\xe6\x15\x57\xfb\x4a\x9c\x2c\x55\x54\xd4\x3f\x17\x62\x25\xaf\x43\x4e\x12\x6f\x16\xcf\x18\x63\x3c\x12\x72\xc5\x3f\xde\xee\x78\x10\xa8\xc4\x9b\xc6\x7e\x5e\x55\xf9\xad\xcf\x18\x13\x4d\xe3\xdb\x56\x7c\x8f\x31\x11\x04\xe1\x94\x31\xa6\x9a\xc6\x17\xfb\xcb\x0b\x5e\xf9\x8c\x41\x23\x72\x7d\xa2\x82\x40\x9d\x4f\x83\x40\x9d\xce\x4e\x0a\x71\xc2\xc9\xa1\xed\x5f\xd5\xf5\xef\xb3\x4a\x79\xc6\xee\x0e\x4e\x97\x78\xbe\xdc\x86\x3c\xba\xcc\xd5\x72\x1b\xee\x14\x69\x9a\x34\xa3\xce\x48\x05\xb9\x53\xa9\xc8\x98\x37\x3d\x10\xaa\xba\x5a\x0b\xf8\x46\x2b\x5a\x90\xbb\x62\x1d\x2e\x55\x94\x2f\x97\x7c\xa7\x9e\xe7\x2a\x0f\x39\xd1\x0d\x4a\x9a\xd3\x1a\x66\x82\xdf\xec\x72\xb1\x92\x74\xef\x0c\x97\x96\x6c\x9f\x2c\x55\xb4\xcc\x97\x5b\x1e\x73\xba\x64\xfb\x84\xa7\x75\x16\xc3\xbf\x20\xa8\xe7\x50\x6d\x10\x94\xe9\x32\x0b\x82\xb0\x68\x1a\x78\x8a\x56\xb9\xca\x49\xd3\x54\x9e\x9e\x86\x5a\x55\x85\xd8\xf8\x9e\x9d\x06\x41\xec\xc8\x9a\x26\xb4\x35\x32\xa5\xa2\x9d\xdc\x85\xa4\x69\x96\x2a\xda\xec\x8b\xd5\x64\x12\xd7\x84\x42\x85\x4d\x13\xc2\x0f\xdb\x27\x77\x87\xf8\x4e\xc9\xff\xf9\xf0\xee\x87\x78\xa9\x22\x21\xe5\xee\x40\x68\xe8\xcb\x8b\x5f\xf9\x52\x75\x13\xdd\x5b\x94\x2e\x95\x40\x1f\x13\xac\x0a\xc7\xab\xb8\x58\x61\xcd\x54\x90\xb8\xed\xf9\xe0\x1b\xa6\x51\x41\x08\xcd\x19\xe6\x2d\x9a\x26\xcc\x31\xb5\x7d\x60\x77\x07\xf8\xac\x5f\x08\xc5\x81\x07\x41\x98\xa7\x38\x75\x97\xbc\x7c\x96\xd7\x3c\x14\x24\x63\x15\xa1\x76\x3e\xba\x7e\x25\xa1\x64\x79\x2a\x32\x2a\xf6\x65\xc9\x98\x0c\x02\x4c\x18\x16\x26\x24\x96\x2c\xa7\xf2\xd0\x2d\xb0\x04\x30\x87\xe5\xbf\x77\x79\x2b\x5a\x50\xe9\xae\x68\xce\xa4\xbb\xa2\x7b\x26\x13\x9e\x76\xcb\x9f\xc5\xdd\x33\xac\x6e\x9e\xee\x33\xac\x1e\x06\x54\x31\x91\x40\x42\x0c\xff\xf4\x60\xc9\x1d\x6e\x99\xa7\xb0\x1f\x42\x45\x12\xc5\x54\xb4\x94\x62\x99\x2b\xe8\xd0\x65\xbe\x0b\x15\x75\x07\x42\x48\xac\x00\xf8\xab\x44\xb1\x54\x65\x71\xa8\x58\x6f\x9c\x8a\x50\xc5\x4c\x0e\xf8\xae\xa2\x7a\x57\x16\x2a\xf4\x4f\x7c\x42\x68\xc1\x94\xd9\xbd\xf3\xb5\xac\xc2\x79\x71\x7a\x3a\x27\x2b\x5e\x72\xc5\x4f\xaa\x54\xa5\x45\x96\x41\xa7\x45\xe2\xd5\x61\x45\x62\x0f\xfb\xf6\xe2\x72\xa7\x6e\xdf\x21\x88\x84\x15\x31\xc0\x77\x08\x45\xd3\x84\xa6\x68\x3b\x1c\x5a\xeb\x01\x13\x00\x15\x3d\x4f\x25\xcf\x05\xce\x68\xca\x33\xea\x4d\x09\xcc\x4f\xbd\xdf\xed\x64\xa5\x22\x5d\xfc\x85\x9e\xad\xa6\xc9\x3d\x96\x47\xd7\x88\x3c\x12\xa7\x66\x9c\x2d\x06\x6b\x4b\x0e\xce\xda\xe5\x7a\x73\xe2\xe4\x56\x0c\x21\xa6\x8f\x6b\xf4\x02\x16\xcc\x87\x9e\x9d\xfa\x13\x11\x55\x7c\x57\xe6\x4b\x1e\x7e\x50\xd4\x3f\x7d\x30\xf3\x49\xa4\xe4\x1b\x79\xcd\x2b\x9c\x3a\x32\xc7\x9a\x78\xb4\xe1\xea\xa9\xd2\x48\x97\x87\xc5\x08\xc4\x55\xe4\x4e\x55\xb7\x77\x15\xf3\x55\xb5\xe7\x80\xc6\x2a\xc4\x6a\xeb\xbc\xac\xed\xeb\x2c\xf6\xa1\xcb\xfa\x0d\x9e\xe2\x49\x35\xf1\xf5\xeb\xa4\x8a\x5f\xa8\x48\xf1\x1a\x26\x14\x66\x69\x97\x57\x35\x87\x6d\x09\xb3\x5e\x1d\x96\x88\xa8\x24\xb9\x3b\x2c\x15\xce\xab\x19\xea\x81\x97\x35\x3f\xa9\x98\x3a\x18\x0c\x50\x75\xd3\x51\xb7\x18\x10\x97\x56\x69\x0c\x59\xac\xc3\x10\xc7\xef\x6b\x64\x72\xbc\xa2\x3c\x55\x19\x2c\x97\xaf\xf1\x02\xe6\x33\x6b\xec\xcd\x0c\x0e\xf5\xa6\x5d\x3b\xfb\x90\xdc\x1d\xa7\x96\x5d\xea\xac\x4b\x5d\x86\x66\xa2\x74\x6f\x5f\x45\xf9\x52\x15\x57\xfc\x45\xc9\x2f\xb9\x50\x66\x98\x9c\xdc\x39\xab\xba\xd6\x07\xcf\x4a\x9e\x70\x06\x5d\x9b\x5f\x6f\x8b\x92\x87\x3c\x08\x66\x5e\x6f\x71\x2d\x7a\xe7\x5d\xd9\x5d\x7f\x37\x17\xf5\x4b\x8b\xe2\x15\x21\xdd\x69\xb0\xa9\x38\xe4\x74\xf0\x7f\xd5\x76\xde\x83\xbd\x54\x96\x90\x46\x39\x81\xf3\xe8\x80\x60\xa1\xba\x86\xbf\x50\x91\xad\xe6\x84\x03\x3c\x76\xa5\x8f\x00\x48\x61\x1f\x1f\x18\x18\xe8\xf5\x6e\x5d\x94\x8a\x57\xa1\xa2\x70\x2c\xcd\x71\x77\x77\x49\xe4\xf0\x67\x5a\x87\xb1\x0b\x8d\x51\x60\x32\xcf\xd9\x54\x77\xa5\x9b\xa9\x55\x77\x5c\xfe\xd4\x62\x88\xc6\x27\x54\x30\x1e\x2d\x2b\x9e\x2b\xfe\x5c\x2e\xf7\xb0\x4a\x2f\xab\x7c\x03\xbf\x7a\x7b\x08\xf3\xd5\x2c\x21\x41\x2c\xd2\xe2\x14\x32\xf8\x1c\x9a\x33\xa9\x5d\x2c\xd1\x75\x61\xab\x17\xba\xeb\x32\x4c\xf0\x0f\xf9\x25\x0f\x39\xf5\x55\x7e\x51\x72\x9f\x04\x81\x9b\x0e\xbb\xbb\x5b\x87\x44\xc5\x30\x33\x55\xad\x9e\x6d\x8b\x72\x45\x7d\x55\xf9\x24\xc1\xcd\x6b\x5a\xaf\xbf\xbb\xfd\x98\x6f\xb0\xa8\xaf\x2e\xe4\xea\xd6\x27\xe9\x34\x6b\x1a\x1e\xe5\xbb\x1d\x17\x2b\x2c\x17\xf2\x48\x5e\x0b\x5e\xd9\xe1\x0e\x06\x60\x0b\x92\xd8\x81\xb3\x8d\xbb\xd2\x48\x01\xb1\x10\x76\xb8\xc7\xf4\x6a\x89\x55\x94\x2b\x55\xe1\x40\x6e\x77\xdc\x27\x64\xe2\x9f\xf9\x13\x9d\x95\x3a\x15\x5d\x76\xcb\x20\x45\xc4\x6f\xf8\x32\xd4\x99\xda\x09\x53\x89\x69\x40\xa5\xb3\x2c\xe6\x51\xc5\x2f\xe5\x15\xef\xb0\x93\x69\xc0\xad\xf4\xd6\x90\x6e\xb2\x0a\xa1\x6a\x41\x2b\x36\x9d\xeb\xee\x85\x82\xf1\xb4\xca\xc8\xbc\x9a\x4c\xc8\x52\x45\x9f\x10\xb7\x08\xea\x6f\x4a\x79\x91\x97\x2f\xae\xf2\xd2\xa7\x9e\x42\x12\x42\x7f\x53\x69\x95\xf5\x3e\x13\x07\x8a\xae\x74\x4b\xc5\x7a\xb0\x34\xb8\x6c\xdb\xbc\xee\x1d\xa4\x48\x47\x51\xc9\xda\xaa\x39\x1c\xf9\x5d\x43\x54\x12\x5a\x33\x19\xf1\x2b\x58\x3a\x80\xb5\x9a\xdc\xd9\x53\x20\xda\xe6\x62\x55\x72\x9a\x9b\xcf\x40\xde\xc1\x00\x05\x60\xb9\x1a\xa1\xb0\x62\x53\x5a\xb0\x3a\x15\x99\x85\xc6\xe2\xbc\xb2\x03\xc5\x52\x51\xbe\x5a\x85\x8a\x0a\x0a\x99\x60\x1a\x0e\x9a\xe0\x00\x4a\x63\x48\xb9\xdc\x1d\xa8\xa1\x46\x88\x83\x9c\x2e\xf4\x80\xdb\xe1\xcc\x8f\x86\x8e\xb3\x21\x58\x07\xb5\xfd\x13\x86\x7a\xce\xe9\x27\xe4\xb3\x52\x0a\xfe\x02\xfa\x16\x04\xca\x25\x22\xc8\x5d\xe1\x4c\x0d\xc1\xb1\x56\x30\xd6\xc2\x4c\x00\x0c\x4a\xc3\x02\x16\x0f\x15\x74\xc7\xcc\x12\x99\xab\x23\x38\xe9\xea\x26\x07\xbf\x46\x6e\x07\xa9\xef\x20\x00\x1c\x74\xa3\x10\xb7\xc2\x43\x12\x6e\x42\x45\xf0\xd1\xa4\xd0\x4b\x40\x50\x71\x47\x24\x32\x91\x84\x78\x64\x71\xa1\x7e\x90\x2b\x1e\x04\xa1\x8a\xe4\x5e\xf1\xea\xf5\xc7\xb7\x6f\x18\xef\x9e\x09\x75\x86\xbb\x55\x97\xe5\x37\x38\xe2\x20\xe0\x51\x21\x84\xce\x13\x04\x30\x27\xaa\x2a\x2e\x43\xd5\xa5\x12\xac\xb4\x7d\x65\x4e\x01\xe8\x4b\x21\x76\xfb\x76\x00\x42\x63\x51\xb3\x73\xa0\x6f\x2b\xbe\xce\xf7\xa5\x7a\xb6\xe5\xcb\xcf\x7c\x05\x14\x95\x79\xe2\xf6\x89\xaa\xe8\x2a\x2f\xf7\x1c\xc7\x8d\x4f\xd8\x20\x3e\xd9\x14\x1c\xf4\xce\xd0\xc0\x4c\x24\x6d\xbd\x1f\x78\xc9\x97\x0a\x2b\xae\xed\x23\x1f\x7e\x8c\x43\xa7\x97\x4d\xe3\xc3\x54\xe6\x15\xcf\xf1\x5d\x0f\xcf\x94\xf8\xbb\x69\xd4\x7d\x75\xa1\xee\x46\x73\x28\x1d\x35\x3a\xa5\xb9\x3d\x48\xc6\xf1\x9d\xc7\xd8\x3f\xef\x43\x85\xd0\x97\x87\x3e\x89\xdb\x0a\x90\x4d\xd4\xbd\x96\xd5\x53\xc4\x62\x50\x78\x98\xdc\x15\x04\xa8\xf7\x72\xdc\x74\x39\x4b\x33\x5a\xe1\xb4\x16\xe5\x0a\x80\xa1\x6e\x1a\x6e\xb1\x4d\xc1\xaa\x54\x66\x64\x2e\x27\x13\xe2\x09\xc4\x2a\x2d\x32\x2f\xa8\x20\x49\x1e\xed\xf6\xf5\x36\x2c\x90\x28\xbc\xe4\xd5\x86\x87\x39\xbd\xc1\x6f\xdd\x91\xa1\x99\x41\xd1\x3f\x0b\x60\x46\x92\xb6\x10\x90\x96\x39\x89\xf3\x6e\xce\x80\xfb\xbc\x1b\x40\x46\x10\x84\x7c\x08\x1a\x2d\x40\x38\x68\xed\x63\x8b\xd6\x0c\x11\x65\x71\xf1\xbc\xc5\xa9\x08\x52\x79\xf5\x54\x85\x53\xa0\x21\x7f\xda\xed\xec\x0e\x9f\xa8\xa8\x06\x76\x3b\x9c\x11\x5a\x31\x45\x0b\xf6\x59\xb4\x08\x09\xa8\x6d\xa8\x96\x7d\x16\x69\x91\x4d\x04\x1d\x36\x70\x4c\xd6\x3d\xeb\x1d\x93\x1c\xa6\x82\x53\x5f\x48\x81\x74\x26\x10\xd8\x75\x0d\x07\xcd\xaa\xa8\x77\x65\x7e\xeb\x13\x4d\xe3\x2d\xa5\x50\x79\x21\xea\xe1\xf1\x46\x5d\xa6\xf9\x87\xa3\x93\x02\xc1\x2b\xcd\x68\xce\xa6\xb4\x6e\x39\xfd\x79\x7d\x9e\xcf\xf3\xc9\x84\x54\x8c\xa7\x79\x46\xab\xa8\x56\xb7\x25\xec\x18\x99\xe6\x59\x87\xa8\x2a\xea\xcb\x72\xd5\xf6\x84\x0a\x66\x72\x46\x26\x8d\xaa\x04\x8b\x00\x6f\x0f\x23\xf0\x70\x6b\x84\x83\x5c\xcc\xf7\x09\xd5\x94\x72\xff\x43\x10\x3c\x0b\x2b\xf2\x07\xcd\xd2\xa7\x61\xd5\xc2\x09\x21\xc0\xf4\x61\x8b\x61\xc1\xa0\x34\x0d\x45\x10\xb8\xad\x7b\x85\x26\x33\x46\xeb\x2a\x12\x11\x9b\x39\xae\x9c\x39\x26\x44\xa3\xe4\x9c\x4d\xef\x9f\x1b\xe5\xb4\x73\x34\x10\x7f\x24\x75\x64\x26\x54\x62\xa6\xcb\x8f\x75\x5d\x64\x8c\xee\xfd\x6c\xe9\x5e\x44\x11\xec\xca\x90\x12\xaa\xcd\x5b\x25\x6f\x73\xb5\x8d\x2e\xf3\x9b\x70\x4a\xab\x74\x96\x9d\xc2\x6e\x9e\x12\x32\x09\xab\xf4\x11\xd4\xbf\xbb\x81\x9d\xdd\x55\xf9\x42\x57\xa9\x65\x1f\x16\x40\x24\x83\xcd\x18\x56\x89\x7f\x21\xab\x15\xaf\xfc\xd8\x07\x38\xe3\x42\xf9\x24\xf9\x3a\xf6\xaf\x8b\x95\xda\xc2\xba\xa9\x64\x16\x03\x92\x9a\xce\xbf\x3e\x97\x73\x39\x61\x8f\x88\x7f\x99\x57\x9b\x42\x18\x9c\x1d\xe6\x93\x0e\x76\xc5\xe4\x07\x91\x4a\x60\x0e\x69\x41\x08\xad\x92\xb0\xad\xd6\xe6\x3e\x75\x20\x7d\x97\xaf\x56\x40\x4c\xf7\x4b\xd9\xfa\xbd\x91\x12\xa6\xb7\xba\xc0\xc4\xff\x19\xbb\x69\x0a\x92\xb8\xd7\x97\xd1\xda\xbb\x54\xef\xb8\xf7\x5f\xae\xdd\xae\x80\x83\x9a\x3e\xf4\x57\x0b\x32\x32\x77\xea\x78\x24\xd7\xeb\x9a\x2b\xac\x28\xb6\x6f\xaf\x79\xb1\xd9\x2a\x2a\xd9\x5a\xb4\x94\x93\x3d\x59\x2f\xe4\xcd\x87\xe2\xf7\x42\x6c\x82\xc0\xf4\xe6\xf4\x42\xde\xf4\xf1\x43\x9b\xc7\xa7\xde\x8c\x4a\x24\xe6\xa7\xe7\xac\x68\x1a\x2d\x34\xd1\x22\xae\x82\xed\x50\xf2\x07\xc4\x58\x38\x3d\x77\xbe\x06\x41\x58\x30\xae\xc1\x13\x38\x46\x7a\x61\x90\x6b\xd1\x32\x2f\xc5\xbc\x62\x40\x4c\x8d\xf5\xec\x47\x5e\x16\x40\xd3\x37\x4d\x81\x3c\x7a\x57\x4f\xc1\x90\xf9\x7d\x59\xca\x1c\x2a\x6b\x9a\xa9\xe5\x71\x8a\x89\x81\xc2\xa6\x09\xf3\x31\x98\xa3\x15\x95\x64\x02\xb0\xdb\xcd\xee\xd3\x8e\xa4\x7e\x45\x05\xbb\x16\x29\xcf\xda\xa3\xa4\x69\x42\xc1\x7e\x45\xac\x47\x3b\x1c\x10\x04\xf0\x61\x29\x58\xb8\xc4\x43\x2a\xf4\x9f\x14\xeb\x2a\xbf\xe4\x27\xf8\x5f\xb7\xcb\xbe\x9a\x7e\x75\x82\xab\x84\x4f\x5b\x5c\x0e\x78\x3c\x3b\xf7\x09\x4e\xb2\xbf\xac\xeb\x8f\xfc\x46\xf9\x2d\xa2\x88\x2f\x4a\xb9\xfc\x7c\xe2\x15\x97\x30\x19\x39\x74\x99\x18\xde\xe3\xa3\x84\xf3\xdf\x20\x65\xcb\x4c\x51\x05\x5d\x48\xa7\x59\x64\x86\xa8\x05\xa9\x4d\xd3\x4b\xb4\xa8\x9c\xb4\xe5\xa9\x8a\xae\xab\x02\xb8\x81\x27\xde\x4a\x2e\xe1\xb0\x3b\x01\x6a\xeb\xfc\x89\xfe\x0f\x2c\xcc\xb9\x4f\xa8\x8a\x96\xa5\x44\x32\xb4\x9d\x85\xa5\x88\x56\x5c\xe5\xcb\x6d\x48\x08\xc5\xc9\x62\x82\x50\x87\x4d\xfb\xd5\x21\x79\xd9\x12\x38\xba\x3e\x83\xc4\xfb\x43\x82\xa6\xe0\xe0\x33\x80\x07\xfd\x76\xf0\x66\xbb\x10\x86\x3e\x0d\x09\x75\x8e\xba\xe7\x16\xe7\x18\xc1\xcd\xdc\xb2\xf1\x56\x38\x46\xac\x28\x57\x75\x5c\xaf\x02\x04\x25\x9a\xe6\x83\x3d\xeb\x49\x02\x8c\x57\x41\xe2\xe7\x21\x9f\xf8\xa9\x3f\x39\x16\x6f\x16\x89\x8a\x7d\x9f\x4c\xfc\xcc\xa7\x85\x16\xac\x90\x39\x8a\x56\x80\x78\x6f\x1a\x5b\x40\xf3\x73\x28\xe1\x06\x16\x1d\x67\x42\xe7\x03\x8c\x58\xc0\xd9\xad\x88\x6d\xa6\xc0\xea\x54\x5a\x64\xba\xc6\x76\x58\x6f\x1c\x6e\xd1\xe9\xb6\x20\x77\x47\x92\x5d\x15\x04\xc0\x3c\x50\xc5\x80\xd2\x9a\x1b\x8a\x8f\x4d\xa9\x64\xaa\xcf\x48\xf4\x65\xd9\xf3\x23\x81\x87\x20\x9a\x35\xaf\x98\x4c\x8b\xc9\x24\x9b\x13\x7f\x82\x27\x6a\x3a\xcd\x92\xb0\x82\xa3\xc7\x50\x29\x48\xd5\xd1\x10\xf8\x42\x64\x0e\xa1\x3e\x12\xed\x45\xbd\x2d\xd6\x0a\xea\x89\x87\xdf\x90\x66\x13\x2e\x85\xfa\xba\x5b\x39\x47\x76\x5e\xeb\x75\xdc\xdb\x55\x97\x69\x9d\x01\xba\x6b\x05\xf2\x69\x9d\x0d\x25\xf1\xa6\x4c\xc9\xea\x50\x57\x68\x0a\x1f\x4d\x55\xd9\x34\x79\xd3\xc8\xb4\xcc\x92\x3c\xf1\xc2\x3d\x2b\x49\x7c\x25\x8b\xd5\xc9\x34\x0e\xb5\xcc\x0c\xd8\xb1\xba\x1d\x48\x49\x68\x01\xff\xbc\x19\x39\x10\xba\x3f\xe8\xf3\x0c\xd8\x3c\xc6\x19\x63\xbf\x0b\xdb\xcb\xc2\x2d\x9e\x4e\x33\x20\xa8\x64\xea\x3f\xf4\xb3\x20\x28\x42\x58\x97\x6e\xdc\xbf\x0d\x29\xf3\xa5\x8a\xf2\x5f\xf3\x9b\x0f\x5c\xa9\x42\x6c\xea\x68\x5d\xe6\xea\x1d\xb2\x10\x75\xd3\x18\x9e\x15\xe1\x46\x10\xa0\x00\x8d\x9c\x3b\x94\x69\x91\x25\x3c\xae\x80\x02\x60\x77\x07\x42\xd2\x22\x63\x90\xa1\x3b\xc1\x91\x46\x31\xcc\xa9\x37\xa5\x9c\x56\x3d\xa6\xff\x93\x15\x86\xda\xb3\xba\xa0\xa8\x98\x40\x6d\x84\x41\x1c\x35\x2d\x81\xcb\xb0\x63\x9b\xfb\x0f\x01\x22\xca\x74\x9a\xcd\x49\x19\xe9\x69\x22\x54\x6a\x51\x6a\x28\x19\x8f\x2e\x8b\x4b\xe4\x6a\x9b\x46\x00\x33\xf1\x23\xaf\x77\x52\xd4\xfc\x35\xcf\x57\xbc\x0a\xfd\x67\xba\xde\xd3\x8f\x5a\xc8\x01\x50\x28\x11\xec\x6a\x18\xe2\x1e\x48\xdd\x3d\xea\x39\xe0\xbf\xde\x9e\x92\x90\xbb\xb2\x5d\x94\x9a\xcc\x2f\x2a\x9e\x7f\x3e\x14\xeb\x10\xfa\x51\x88\x93\x8a\xe4\xba\x4b\xb0\xcf\xee\xda\xca\xb4\x98\xd7\x2b\x8d\x00\x67\x29\xc5\x15\xaf\x14\xaf\xea\xb4\x9e\xf8\x27\xfe\x04\x3e\x64\xe4\x2e\x67\xb5\xad\x11\x29\xbe\x9a\x1c\x72\x96\x37\x4d\x61\xcf\x94\x3c\x09\x73\x4f\x0f\x3a\x08\xba\x8e\xe4\x84\x56\x69\x9e\x59\x10\xea\xe6\xf5\xed\x00\x27\xd9\x59\xa5\x25\xc0\xce\xd2\x9d\x4f\xb3\xa3\x70\x1a\x96\xe9\x2c\xd3\x0c\x12\x12\xf8\x4e\x7f\x49\x99\xe6\xfd\xad\x9c\xb1\xde\x78\xf2\x0c\xa1\x44\xb2\xa5\x5d\x92\xb9\x44\xae\x81\x47\x95\x99\xff\x97\x05\x2f\x57\x75\x2a\x33\x40\x17\xe9\x48\x7a\xc6\x14\xa1\xde\x3e\x08\x2a\x60\xb5\xa1\x87\x2f\x51\x84\x08\x54\x29\x73\x13\x42\x45\xbb\x11\x10\x42\xf7\x4c\x52\xa7\x65\x68\x56\x43\x89\x24\x92\xed\x5b\x1c\xe9\x3f\x04\xdc\xb8\x0f\x82\xbd\x07\x9f\x60\x69\x60\xd5\xf6\xb8\x14\x32\x6b\x9a\x32\xf5\x1f\xe2\x23\x35\x8c\x22\x02\x7d\x09\xf5\xd5\xac\x70\x54\x12\xb4\x4e\x67\x19\xd3\x3a\x9b\xae\x0a\xd8\x77\x5d\x2d\xf8\x46\x60\x71\x19\xf3\xa6\x09\x64\x2b\xb2\xb8\xd4\xfb\xc7\x9b\x22\xac\x42\x1e\xba\xec\x00\x0b\xe6\xdf\x01\xae\x1c\x73\x42\xf3\x79\x10\xf0\xd4\x57\xdb\x4a\x5e\xd7\x7e\x46\x14\x43\xf9\x0a\x0e\x4c\x55\xb7\x77\xfa\xdd\x48\xa6\xd7\x16\x6f\xdf\xd5\x2a\x57\x3c\xf6\x91\x52\xa9\x78\x55\xc9\xca\xa7\xf8\x13\xe7\xc9\x3a\xf6\x7f\x90\x27\x7a\x05\x6b\x14\x61\x57\xf2\xf2\xc4\x9f\xc0\x50\x94\x84\x59\x38\x1c\x0e\xfd\x7a\xea\xfd\x72\xc9\xeb\xda\xa7\x30\xf5\xb1\x72\x30\xe9\xbb\xbe\xc4\x5c\xf0\xeb\x13\x1e\xfd\xe3\xed\x9b\xd7\x4a\xed\x7e\xe4\xbf\xed\x79\x6d\xc5\xe6\xaa\x27\x36\x7f\x39\x56\xee\x29\x4a\xdb\xff\x61\x04\xfd\xfe\xdb\x62\x59\xc9\x5a\xae\x15\x56\xf8\xf1\xe3\x7b\x9f\x8c\xd6\xf5\x5d\x2b\xcb\x3f\xa9\xb9\xfa\x58\x5c\x72\xb9\x57\x61\x8b\xa4\xc9\xdd\xbf\x04\x53\x07\x42\xff\x85\x0a\x60\x21\xaf\x43\x07\x25\xbe\xb7\xd4\xad\x45\x44\x70\x80\x85\xb2\x4a\x95\x39\x3d\x8c\x72\x4b\x56\x88\x53\x89\x11\x67\x14\x96\xd5\xcc\x91\x61\x98\x10\x54\xc5\x14\xa9\xcc\xb4\x3c\x5e\x50\x60\x5d\xc9\x31\x7f\xfc\x63\x8f\x9a\x6e\xc5\x23\x45\x65\xb5\xd4\xa8\x9b\x7d\xce\xd7\xbc\xaa\xf8\x2a\x24\x51\x5e\x5e\xe7\xb7\xb5\x3b\x1c\x23\x64\xdc\x47\xbc\xe4\x97\x70\x38\x30\xe7\x23\x10\xc5\x9d\x3a\xc4\x0e\x4a\xb1\x7f\x89\xa6\xf9\x0e\x29\x29\x87\xb5\x2a\xa3\x5a\xe5\x15\x4e\xd9\xa4\x8c\x56\xfb\x0a\x55\xfa\xa7\x0a\x28\x22\x71\xd6\xa5\x34\x0d\x1c\xe9\xb3\xd3\x0a\x19\xed\x3d\x2b\x23\x75\xcd\xb9\xa8\xed\x24\xec\x0d\x4f\x69\xd3\xd3\x3c\x8b\xaa\xbd\x08\x65\x7b\x1e\xd4\x91\x90\xaa\x58\xdf\xfe\x5c\xa8\x6d\xc8\x69\x5a\x52\x49\x45\x46\xe8\xec\x5c\x06\xc1\x3e\x11\x71\x58\x03\x5a\x90\xe5\x15\x6f\xb3\x64\xfa\xf4\xa3\x25\xab\xa3\x5d\x25\x2f\x8b\x9a\x87\x77\x30\xe6\x98\xd3\x5d\x25\x77\x75\xdc\x93\x7f\x2a\x42\xe5\x4e\xb9\x89\xde\x94\xde\xd5\x3b\xbe\x2c\xf2\xf2\x45\x5e\x17\x62\x13\xdf\x1d\x0e\x54\x10\x2a\xab\x62\x53\x88\xbc\x7c\x5f\xc9\x1d\xaf\x54\xc1\xeb\x58\xb5\x89\xe6\xfc\x8b\x05\x6d\x27\x27\xb6\xb3\x67\x27\x24\x16\xed\xdc\x50\x3d\xe4\x38\xcd\xa8\xa6\x34\x3f\xc2\x7b\xdc\xa7\x9c\x34\xeb\xb4\x54\x11\x7e\x0c\x39\x2d\x23\xe8\x2b\xa2\x6a\xfd\x18\xf5\x3a\x8a\xd0\x67\x3e\x70\x4c\x69\x67\xb2\x9d\x7b\x24\x6b\x2a\xa0\x48\x69\xad\xe4\xce\x69\xd1\x92\xbf\x53\x5a\x31\x95\x0c\x16\x2b\x9e\xce\x1d\x18\x39\x51\xdb\xa2\xd6\xc7\x3c\xf3\xa6\xf3\xea\x5c\xcc\x85\xbb\x90\x42\x2f\xe4\xcc\x11\xf0\x1f\x2f\x14\x55\x19\x89\x21\x19\xf6\x6d\x2f\x95\x42\xf5\x87\x03\xa1\x4b\x56\x46\xb8\x66\xd8\xd6\xcf\xe1\x72\x74\xd8\x64\xb0\x9d\xaa\x76\x3f\x95\x94\x53\x5b\xa6\xdb\x56\x8e\xc9\xc4\x65\xbe\x0b\x97\xf4\x3d\x2d\x51\x86\xeb\x50\x96\xb6\x1d\x58\x4b\x02\x67\x68\xf7\x6a\x55\x67\xba\xcc\xfa\x26\x52\xc5\x25\xaf\xc2\x0e\x80\xf6\xd4\xc2\x5b\x2e\x8a\xcb\xb8\xa4\xbf\xed\xf9\x9e\xc7\xa6\x0e\x7c\x39\x10\x42\x71\x68\x9b\x8a\xd7\xb5\x6d\xcd\xbe\x03\xcf\x23\xb8\x4d\x85\x67\x3b\xee\xa5\xbc\xdc\xc1\x36\x26\xd1\x3a\x2f\x4a\x9b\x03\x9e\xdb\x2d\x6f\xd2\xf4\x9b\x83\xb2\x7e\x1e\x48\xf5\xe1\x8c\xef\xb4\x0b\x5c\xcf\xdd\xc0\x98\x80\x16\x0c\x55\x23\x92\xf1\x54\x64\xd4\x61\x53\xa4\x66\x95\x65\x3a\xb3\x5f\x99\x04\x32\x92\x0a\x8f\x31\x38\x81\x91\x9a\x96\xd4\x60\x1d\xc8\x60\xd8\xf9\x65\x5d\xbf\x96\xf2\x73\x0d\xf5\xe6\x41\xe0\x6b\x81\xbd\x5f\x88\x93\x9c\xdc\x49\x96\x1b\x09\x7e\x28\x49\x57\xb8\xca\xba\x9e\x4a\xa2\x3b\xdc\x34\xa1\x69\x56\x64\x14\xed\x5a\x0a\xa3\x39\x86\x2e\xb3\xa2\x1b\xf9\x83\x23\xe4\xd9\x52\x37\x00\x68\x74\x09\x44\xce\xda\xb2\xeb\x74\xd7\x33\xe4\x79\x16\x72\x42\x57\x8e\x3e\x87\xfa\xeb\x9b\x7a\x2b\xaf\x7d\x32\x17\x7a\x31\x9b\x26\x44\xf4\xfb\x09\xdf\x70\x70\x3a\x9b\x4f\x8c\xad\x06\x10\xe8\xf8\x71\x15\x04\x61\xf7\x82\x58\xb1\x8e\xf8\xe5\x4e\xdd\x46\xeb\xa2\xe2\xd4\x7d\x71\xf1\x73\x57\xa6\x69\xf6\x21\xd0\xf6\x5d\xca\x64\x42\xcb\x11\x7c\x3f\x96\xd6\x15\x3a\x3d\x85\xd5\xc4\x67\xdb\x57\xb3\xd3\x9b\xc6\xed\x04\xb4\x05\xc0\x3a\xb4\x6f\x0a\x7d\x2d\x1b\x80\x75\x53\x4d\x63\x24\x3b\xc8\x2a\x02\xb9\x16\xc9\x2b\x5e\xad\x4b\x79\xcd\xd2\x75\xfb\x4c\xbb\xc7\x7f\x38\xcf\xff\xcc\xa8\x5f\x88\xb2\xb8\x57\xd6\x6b\x25\x8c\xbd\xaf\xeb\x52\xe6\x0a\xbe\xb9\x82\x18\x5d\xcd\x77\xa5\x5c\x7e\xfe\x81\xf3\x55\xfd\x26\xbf\x95\x7b\x15\x04\xb6\x7e\x8f\xb1\xa7\x21\xef\xe4\xa6\xc9\x3a\xfa\x5d\xca\x4b\x36\x8b\xd7\x9d\x58\x56\xe7\x3d\x45\xa9\x86\x4f\x08\xed\x06\x13\x04\x61\xd7\x6d\xe6\x6f\x8b\xd5\x8a\x0b\xdf\xd5\xfe\xd4\xdb\xaa\x10\x9f\x7f\xae\xf2\x1d\x76\xa2\x06\x74\x7c\xbc\x0c\x4e\x25\x5d\xe5\x40\xda\x39\x13\xe4\x7e\x99\xb9\x5f\xfe\xe9\x7e\x79\x94\x1d\x88\xa3\x37\x53\x04\xa5\x5b\xb8\x67\x55\xa5\xe5\xa3\x05\xc1\xe3\xdd\xec\x25\xb3\x9d\x65\xd3\xf8\x4a\x6e\x36\x25\xce\x6a\x41\x0b\xc6\x58\xb8\x4b\x60\x48\xdc\x8f\x7d\x0d\xdf\x04\x38\xaa\x42\xec\xf9\x7c\x09\x3b\x6a\x15\x04\x2b\xe4\x8e\x61\xbc\xb0\x53\xd0\xa4\x00\xe8\xce\x63\x73\x8b\x25\x21\x77\xab\xc4\xce\x50\x21\x4e\x00\xf0\x77\x6c\x15\xe9\x14\x12\x8f\xee\x28\x7a\x77\x20\x14\x68\x64\x9b\x8f\x79\x3b\x42\x77\xc9\x52\x85\x9c\x44\x90\x25\x24\x71\xa9\x91\xa3\x33\x9d\xfa\x33\x74\x1d\x77\xc6\x71\x06\x6d\x2f\x02\x0d\x6a\x81\xcc\xf3\xe1\x46\x6e\x4d\x49\x96\xc4\x19\x9c\xa2\xcb\x54\x65\xe4\xe0\x4c\xf0\x92\xe4\xec\x7d\xb8\x4b\x60\x22\xe2\x29\xad\xe0\x10\xc0\x0f\xab\xa6\x09\x21\x91\xe5\xfa\x90\xa0\x3b\xd4\xb7\x72\xb1\x6a\x53\xcc\xaf\x23\x05\xad\x9a\xc6\x6e\x23\x34\x98\x99\xc5\xd3\x9e\x22\xf6\x7b\x57\x3c\xed\xd0\xbc\xdf\xc3\x49\xa1\xa4\xba\xdd\xf1\xa8\x10\x85\x72\xb2\x75\x85\x7f\xef\xe1\x7b\x76\xa7\x1b\x8a\xf9\x81\x16\x6c\xaa\x47\xac\x25\xd8\xf3\xaf\xcf\x8b\x79\x31\x61\x8f\x4e\x15\x11\xec\x07\x60\xc8\x69\x95\x5a\x49\xf3\x44\x64\xac\x4a\x3b\x81\xb1\xc8\x18\x6f\x4f\xf5\x20\x08\xab\x48\xee\xf2\x65\xa1\x6e\x59\x15\x69\xc1\x21\xef\x89\xbb\xfe\x31\xb0\xd8\x70\xcc\x26\x79\xfc\x6d\x0f\xab\x24\x9d\x72\xb0\xe0\xd7\xc0\x00\x6b\xed\xab\x2e\x11\x7b\x33\x14\x67\xfc\x44\xff\x4e\xff\xd9\x8a\x92\xe8\xff\x30\x1e\x95\x72\xa9\x89\xaa\x57\xc0\xf6\x59\x71\xe1\xdf\xd8\xab\xa1\xec\x91\xfe\x95\xf1\x48\x1b\xa3\xd2\x7f\x31\x1e\x3d\xa0\x5c\x01\xf2\x57\x8a\xa5\x19\x15\x8a\xf9\xda\x24\xd6\xa7\x95\x62\xca\x9a\xa8\xd1\x02\x5f\x80\x72\xa2\x12\x1f\x91\x07\xa6\x39\x3e\x17\x62\xc5\x6f\xde\xad\x69\xad\x18\x57\x91\x92\x1f\x50\x84\x43\xf7\xf8\xba\xcd\xeb\x77\xd7\xc2\x10\x8c\xb7\xb4\x54\x4c\x68\x2d\x30\x5d\x2a\xd6\x37\x42\x75\xd6\x17\xc8\x0a\xd1\xad\xec\xdf\xc9\x81\xae\x15\x3b\x4b\x27\xa7\x59\x12\x26\xf1\x62\xf5\x70\x11\x35\x64\xb1\x9a\x84\x49\x9c\xf2\x17\x19\x7e\x58\xac\x26\x0d\x39\x8b\x6a\xb9\xaf\x96\x9c\xee\x14\x3b\x5b\x7c\x98\x9c\x6d\xe8\x4a\xb1\xb3\x5f\xd2\x45\xbd\xd8\xbf\x7c\xf1\xf2\xe5\xe2\xe6\xe9\x34\x9b\x34\x83\xf7\x07\x67\x1b\xba\x85\x7c\x50\x7b\xfd\x30\x7c\x92\x2e\xae\x17\x3f\x67\x93\x73\x92\xfe\x72\x9e\x3d\x6c\xfe\x33\x4c\x17\xd7\xa7\xd9\x43\x42\x1e\x9c\xd1\x0d\x64\x7c\x12\x2e\xae\x27\x64\x51\x3f\x5c\x9c\x25\xe7\x61\x12\x3f\x59\x9c\x2d\x66\xe7\x0d\x7c\xbf\xd4\x0d\x66\x34\xbe\x3b\x2c\xea\xec\xe1\x83\x33\x7a\xab\xd8\x59\x98\xc4\xbf\x34\x71\x43\x89\x6e\x63\x91\x12\xe8\xdd\x15\xf4\x73\x01\xe3\xf0\x17\x8b\xc5\xd9\xc5\x5a\x54\x2a\x6b\xf6\xe9\x62\x95\x9f\xae\x9f\x9e\xbe\xcc\xee\xbe\x3e\x90\xb3\x0d\xbd\x50\xec\xcc\x4f\x7f\x81\x4c\xd5\x42\x64\x0f\xfd\x46\x55\x7b\xde\xa0\x29\x1a\x4a\xef\x9b\x53\x3d\x35\x93\x7b\xa7\x66\x43\x6f\xa0\x67\xa7\x97\xf5\xe9\x19\xbd\x56\xec\xec\x34\xc4\x66\x7e\xcf\xc8\xd9\xa6\xa0\x1f\xef\x59\x10\xd5\xd7\x7c\x1e\xe8\x33\x37\x23\xb9\x0b\x5f\x45\xf9\x6a\x85\xf6\x09\x6f\x8a\x5a\x71\xc1\x61\x5b\x97\x32\x5f\xf9\x08\xdd\x0a\x25\x4b\xbe\xa5\xdc\x20\xf1\x55\x54\xf1\x7c\x75\xfb\x01\xd8\x64\x38\xc1\x7e\x50\x21\xd2\x92\x98\x1a\x12\x72\xa0\x3f\x28\xf7\xf4\x3f\x6e\x21\x09\x5f\xb9\x86\x11\x36\x39\xf4\x9f\xbf\x7b\x6b\xe4\x55\x6f\x64\xbe\xe2\x2b\x9f\x3e\x53\xc0\x0f\x51\x3e\x9e\x1f\xfb\x69\xf2\x90\x38\x7c\x65\xe4\xe4\xda\xdc\xc2\x97\x02\xbb\x84\xfc\xfc\x72\x9b\x8b\x0d\x87\xbc\x50\xd9\x20\x9b\xad\x86\x90\xc3\x1c\xa1\x17\xd0\x7b\x8b\xa4\xd8\x9d\xb6\xd2\x8e\x85\xa2\x4b\x29\x6a\x55\xed\x97\x4a\x56\xf1\x52\x51\x00\xf2\xd8\xb5\x51\x76\x64\x50\xa8\x81\xe7\x3d\x96\x63\xcc\xca\x8c\x1b\x9d\x8e\xff\x44\x4f\x78\xab\xb2\x0e\x02\xff\xbc\x97\x64\x35\xbd\xa7\x33\x12\x04\xf6\xe5\x9c\x3d\x4e\x52\x80\x20\xca\x91\x5a\xcb\xe2\xad\x32\x46\x4a\x84\x7a\x45\xd3\x78\x45\x3a\xcb\x82\xc0\xda\x23\x7b\xa2\x69\x44\xa4\x07\x94\x84\xa2\x69\x2a\x82\xc6\x50\x21\x27\x31\xf4\x31\x72\x46\x18\x8a\xf6\x1b\xb2\x4f\xe9\x2c\x33\xa6\x33\x40\xc3\xd6\x2a\x17\x4b\x18\xc1\x52\x25\x22\x9d\x66\xb1\xa0\xad\xae\x5f\x13\xa6\xc6\x64\xf2\xf5\xc7\xb7\x6f\xb0\x30\x15\x41\x20\x3a\x7c\x29\xfa\x5a\xef\xa6\x11\xf1\x2b\xea\x4d\x09\xa1\x1b\x63\x73\x87\x2d\xa2\x50\xb5\xa8\xdf\x97\x79\x21\xcc\xf9\x6c\x04\xe7\x46\x48\x3b\xb0\x22\xdc\x16\x75\x5a\x64\x24\x31\x0f\x21\x8a\x68\xf5\xd8\xd0\xe0\xab\xa0\x3d\xa1\x2d\x32\x6b\xc5\x3a\x94\xec\x95\x63\x8b\xf1\xdd\xed\xf7\xab\xb0\x48\x1f\x65\x78\xa2\x4b\xc7\x90\x06\x67\x40\x46\xc5\xca\x63\x0c\x33\x58\xbe\xac\x9d\x2a\x6c\x4a\xaf\x0e\x9b\x21\x33\x98\x4e\x33\x26\x0f\x4e\x83\x5a\xda\x7b\xa3\xd8\x2b\xfc\x6e\x2c\x54\x64\xc5\xb8\x66\x1e\x5b\xbb\xb5\x76\xb2\xc2\x5e\x31\x5b\xa9\xce\xde\x6f\x0c\xed\x34\x9c\x09\xe1\x24\xa9\xcc\xde\xe4\x24\x0e\x79\xdb\x98\x11\x6c\x0f\x3a\xd0\x3e\xd2\x5e\x8b\xdc\x3e\xe1\x56\xbf\xcc\x3f\xf3\xd6\x76\x11\xda\x24\x07\x6a\xcb\xc5\xbe\x4f\x2d\xd7\x4d\x95\xc4\x6c\xb1\x83\x0e\xac\xa2\xc1\x70\xa2\x58\xfc\x40\x37\xdc\xdd\x48\xdd\x79\x82\x0c\x08\xc7\xc5\x8c\x4c\x65\x21\x89\xa7\xe7\x3a\x29\x75\x86\x3f\xe1\x19\xae\x72\xca\xb3\x03\x85\xd3\xee\x83\xca\x97\x9f\x7b\x95\x6a\xa9\x50\x0f\x4a\x7b\xf0\x4e\xa8\x63\xd4\x17\xed\x2a\x7e\xa5\x01\x4e\x33\x5a\xaa\x37\xfd\xf6\x85\xaa\x03\xe5\xf9\x72\x1b\x8f\xa2\xdf\x56\x19\x06\x15\xc0\x87\x03\xc5\xa5\x18\x1b\xab\x45\xa1\xad\xdc\xc7\x30\xd2\xdc\x48\x14\x28\x9e\xdb\x23\x53\x89\xdd\x69\x47\x1c\x4a\x15\xe5\xbb\x5d\x79\xab\x1b\xcd\xab\x0d\x6e\x2f\x5c\x23\x34\xc5\xbc\xaf\x06\xfe\x5b\x38\x25\x07\x5a\xe6\x5f\xcc\x72\x3a\x23\x07\xca\x7f\x1b\x99\x57\x67\x2d\xa8\x60\x13\x3e\x09\x71\x99\xe2\x69\x6f\xaf\x39\x1d\x15\xe7\x6c\x1a\x04\xea\x5c\x24\xb8\x8e\xa9\xc8\xb2\x38\xcd\xc8\x81\x5e\xe6\xbb\xb1\x09\x1a\x14\xb7\xa6\xf7\x30\xca\xbe\xe4\xa9\xdd\x3e\x1a\xc2\xa8\x80\x89\x87\xf1\x73\xb1\xba\x77\xfe\xda\xd5\x6e\x9a\x63\x44\x88\x76\xed\x08\x55\x71\xa1\x68\x2d\x2b\x15\xa7\x59\x04\xbf\xb4\xde\xe1\xb2\xc0\x2b\x3e\x1d\x68\x47\x00\x39\x87\x08\x26\xd2\x56\xcc\xa2\xdf\xed\xcb\x80\xda\x37\x0e\x2d\x9a\xd3\x67\xed\x0a\xa2\x5e\xe5\xee\x40\xf7\x6c\x46\xcb\x2e\xd9\xce\xf9\x92\x19\xe1\xa7\x7f\x21\x65\xc9\x73\xc7\x2b\xa4\x06\x46\x93\xd5\xbd\xca\x66\xb6\xb2\x47\x84\x1e\x69\x5f\x6b\xe4\x93\x1c\x2c\x52\x13\x94\x13\x00\x8b\x53\x32\x54\x2b\x84\xb5\xde\x16\xa7\xa7\x7b\x32\x2f\xcf\xf7\xf3\xbd\x16\x61\x19\xbb\x32\xe9\x34\xb5\xcf\x1c\x84\x2d\x09\x67\x35\x52\xe9\x4c\xc2\x4f\x6d\x44\x2e\x4b\xd4\x84\x84\x47\xc8\xbe\x22\x68\x11\xe0\x48\x6f\x2a\x42\x48\x12\x8a\x24\x14\xcc\x9b\xd1\x9c\x71\x73\x44\x18\x8c\x04\xa4\x79\x9a\x91\xb8\xfb\xe0\x56\x87\x9f\xef\x0e\x14\xba\xe0\xd8\x92\x2e\x69\x4e\x2b\x42\x62\x8b\x15\xf1\x73\xd5\xd9\x86\xd4\x07\xea\x08\x5e\x8d\x99\x66\xec\x6b\x6a\xdc\x9f\x84\x42\x4d\x50\xc6\x5c\x41\xfa\x65\x48\x48\xeb\xc7\x70\xb6\x78\x7e\xb6\xa1\xbe\x4f\xa8\x90\xcf\xa4\x58\x97\xc5\x52\xf5\xe4\x96\x2d\xb4\x3e\x40\x11\x01\x5a\xc0\x3d\x60\xff\x22\x54\xc1\x31\xaf\x5b\xe8\xbe\x98\xf7\xbf\x02\x1e\x3e\xd0\xa2\xfe\x11\xd1\x89\x37\xd3\x78\xe5\xe7\xbc\x50\xf1\x8c\x6e\x65\xb9\xfa\xf1\x08\xcf\xf0\xc4\xa2\x18\xc8\x36\x99\xc4\x2d\xd1\xe6\x4d\x47\x11\x53\xb1\x0e\xb9\xd6\xe7\x78\xa7\xa7\x6e\x59\xe3\x74\x82\x4d\x68\xa5\xdf\x2b\x6d\x55\x70\xac\x92\xb0\xc5\xc8\xbc\x2b\xc2\xbc\x29\xe5\x46\x2f\xd4\xaf\xf8\x7c\xda\x34\xe1\x4f\x3d\x61\xeb\x2b\x9a\x2e\x55\x46\xcc\xae\x52\x55\xb1\xd9\x70\xd4\xb4\x86\xaf\x88\x7d\x0d\x7d\xac\xc1\x27\x91\x5c\xaf\xdb\x17\x72\x80\x09\xb2\x20\x3c\x82\x51\x5c\xff\x29\xc7\x4f\x0e\x4a\xe9\x63\x0b\xff\x5b\xc8\x6a\x9a\x91\x1a\x5a\x1f\xb9\x7e\x71\xc3\xf4\xdd\x73\xa2\x79\x00\x99\x1c\x48\x3b\xed\x48\x03\x25\x7e\xd8\x5f\xf2\xaa\x58\x8e\x14\xf1\x8a\xfa\x87\xfc\x87\xd0\xb1\xc0\xe1\x84\x04\x41\x51\xbf\x04\x14\xa3\x5b\x84\xa6\xbf\x74\x7e\x6a\xb6\x0e\x08\x80\xa3\xad\xce\x47\xfd\xc8\x78\xc2\x55\x5a\x5b\x69\x31\xc9\x3a\x83\x8b\xd6\x28\x15\x7a\xed\xec\xac\xa3\x13\x41\x68\x0a\x78\xd4\x54\x83\x13\x60\x90\x2d\x75\x63\x90\x4d\xcb\x5b\x77\xba\x1c\x55\xdd\x22\x14\xba\xd8\x38\x08\xbc\x7d\x2b\xc6\xf6\x9d\x0f\x3e\x71\x3f\xb9\x45\x3a\x3c\x4c\xfd\xa2\x7e\x6f\x5f\xde\xad\xfd\xae\x2d\xa3\x66\xab\x1c\x1f\x19\x6d\xb1\x61\xa5\x63\xf2\x5a\xbc\xc9\x6b\xed\x4e\x21\x7a\x36\xa1\x5d\x77\x04\x71\x85\xd2\x03\xf3\x58\x37\x1b\x4c\x9e\x23\x72\x3a\x3e\x4e\x5d\x07\xa1\x63\x4f\x1f\xa3\xd8\x74\x4b\xa1\xba\x14\x19\xf0\x17\xf0\x0d\xc1\xa2\xa5\xbf\x7b\xd4\x89\xf1\xbe\xc1\xa5\x19\x9a\x6c\xb4\x63\x02\xc8\x99\x1f\x9f\x24\x9d\xf5\x0b\xb0\x65\x0a\x86\xf5\x4a\xdb\xc0\xb0\x4d\xc7\x78\x14\xcc\x13\x41\x90\x66\x9d\x6d\x63\x3a\xb4\x49\xaa\x80\xb6\xcf\x62\x2d\xb5\xbf\xd8\x17\xe5\xaa\x75\x62\x49\x79\x46\x15\x2d\x08\x2d\x70\x9b\x17\xa4\xb3\x44\xea\xac\x89\x33\x5a\x39\x06\xcd\xc4\x0e\x16\xdd\x26\x47\xb1\x2b\x7c\x01\x84\x0a\xbf\x9a\x31\x49\xdc\x97\x50\x91\x58\xef\x16\xa6\x12\x15\x1f\x7b\x03\xa1\x5e\xbe\xb5\x82\x47\xec\x7c\x69\x7d\x83\x5a\x64\x7f\xa5\xa8\xff\xbf\xfd\x0e\xf9\x5f\x28\xea\x67\xce\xfb\xad\x82\x93\x80\x90\x04\xd6\xa9\x3d\x5c\x7d\xd3\x49\x7f\xa2\x48\x68\xec\x1b\xe0\xb4\xc1\x75\xf4\xbf\x17\x57\x79\x59\xac\x4e\x70\x68\x98\xc7\x8c\xf5\x1f\xee\xba\x76\x0a\x02\xdc\x76\xe2\x4b\x3e\xa9\xb8\xb6\xb0\xb5\x78\xf4\xfc\xdd\xdb\xf7\xa8\x30\x4f\xc2\x82\x41\xa7\xda\x04\x5a\xb1\x42\x4f\xcd\xcb\x4a\x5e\x1a\x04\x22\x28\xda\xc8\x9f\xdd\x5c\x96\x3e\x70\xdc\x15\x96\xf9\x92\x0e\xfb\xf9\xbb\xb7\x3e\xa1\x55\x94\xd7\xb7\x62\xc9\x8c\xf7\x1d\xad\x22\xe0\xb9\xff\xf1\xf6\x0d\xf0\x72\x9d\x2b\x9d\xeb\x35\x17\x04\xd5\x50\x00\x16\x04\x5e\x75\x8f\xef\x90\xab\xf5\xef\x74\x01\xc7\x93\x08\x73\x76\xe2\x4f\x04\xaa\x10\x85\x74\x55\x88\xe4\xee\x40\x3b\x27\x9a\x1e\x10\x29\x24\x24\xcc\xca\xe3\x31\x0c\x90\xae\x1d\xd2\x9d\x63\x41\x91\x3b\x1e\xf1\xab\xbc\xb4\xfb\x1c\xc8\xce\x10\xd6\xab\x55\x4b\x8d\x21\x69\xde\x82\xc7\x8d\xa2\xfe\x65\x7d\xea\x00\xcc\xb5\xa2\x1f\xa1\x02\x2b\xf4\x1f\x67\x33\x3a\xa5\x00\x40\xf8\xb8\x5b\x0b\xba\xc0\xf4\x52\x46\x18\x17\x47\x7e\x81\x2a\x7a\xde\x69\xe8\x85\x11\x03\x68\x2b\x1f\xed\xcf\x33\xcf\xcf\x25\x6a\xd2\x2c\xcb\xc1\x53\x99\xd1\x8a\xd0\x02\x4e\xf7\x99\xf6\x2a\xe8\xac\xf1\x64\xab\xab\x1b\x29\xc1\xb0\x84\xb6\x06\xb1\x36\x2c\x47\xad\xe8\x79\x85\x22\x92\xc2\xcf\x9f\x6b\x69\xa4\x94\xd3\x5a\x67\xac\x4d\x61\x85\xe3\x12\xe0\xac\x34\xa5\xfc\xc5\x7e\xcd\xd7\xeb\xc5\x4d\x3e\xf5\x49\xf2\x85\x13\xd6\xf7\xe3\xb2\x3d\x2e\x0f\x5f\x3a\x8b\x7d\x3f\x0e\xf9\xc4\x77\x16\x79\x85\x58\x01\xf8\x1e\xc3\x56\x0f\x56\x59\xe3\x57\x85\x56\x84\x43\x32\x22\x14\x61\x4b\xd9\x3a\xde\x16\xd5\xb1\x43\x2c\x4f\x52\x9e\xc5\x9c\xc4\x85\xe9\x67\x45\x39\xc1\x7d\x60\x1c\x11\x8f\x0e\x09\x6c\x17\x3d\x2b\xb5\xf9\x90\xf5\x39\x3d\xc9\x2d\xf3\x4e\xdb\x23\xaf\x6a\xbd\x96\xa9\x60\x22\x99\x9e\x8b\x9e\x3d\xfb\x44\x90\x58\xc4\x9d\xb2\x1d\x18\x05\xd4\xf9\x04\x01\x6a\x3f\x19\xeb\x4e\x1e\x83\x02\x4e\x67\x07\x8a\x83\x89\xfb\x51\x00\xf4\x6c\x58\x87\x0d\x5a\x74\x40\x2a\x19\xea\xf9\x8f\x62\x12\x54\xc6\xce\xd2\xe8\xd9\x39\x5a\x5b\x32\x91\xca\xac\x83\x98\x39\xbc\x02\xf1\x3f\x77\xbe\x4f\x26\xed\x84\xdb\x46\x58\x41\xf9\x81\x6e\x2a\xbe\x1b\x9f\x2e\x5a\xb0\x34\x1b\xec\x1e\x4d\x13\x30\xcf\x13\xad\xae\xbf\x62\x9e\xa7\x0c\x4c\xb6\x6a\xe7\x42\xdb\x37\x20\x88\xb6\xa6\x8e\x43\x76\xf8\x0f\x37\x29\xdd\x33\x6d\x6d\xda\xed\x1e\x6d\x5e\xc0\x6c\x83\xb0\xdf\x34\x00\x15\x41\x10\xee\xd3\xbd\xa9\x20\x63\xc5\xc8\x1e\xfa\x73\xc5\x2c\xda\xb6\xfb\x3a\xcd\xe8\x9e\x1c\xe8\x66\x5f\xac\xe2\x19\xdd\x55\xf2\xe6\x76\x6c\x1d\x81\xcb\x1d\x98\x8f\x76\x31\x03\xb4\x85\x23\x06\x0d\x60\x9c\x72\x26\x87\x76\x0e\x9c\x24\x61\xc5\xac\x28\xa9\x65\x38\xe9\x23\xd8\xe1\xc7\x8c\x3e\x37\x7d\x13\x9a\xc5\x07\x0a\xc2\x18\x3a\x0d\x6b\x20\x40\x50\x14\x18\xa2\x81\x71\xf7\xc7\x89\xdc\x40\x0b\x12\xab\x03\xcd\xd1\x4c\x6c\x20\x05\xb6\xcc\xbb\xb1\xae\x65\x53\x34\xeb\x6c\x19\x75\x8d\x0a\x70\x6b\x39\x2e\x7b\x96\x38\xae\x08\xb9\x93\xcc\xd3\x6a\xae\xbd\xb6\xac\x34\x81\x0f\xb4\x2f\x06\xdd\xd3\x2a\xdd\xa3\xe3\x03\xb4\xd1\xa2\xcb\xc2\xb3\x66\xa1\xda\x82\xd7\x99\xa9\x42\xf3\xef\xde\x94\xd0\x25\xb0\xb7\x49\x28\xec\x21\x55\x10\xd8\xb1\xfb\xb2\x24\x71\xb8\x64\x82\x0a\x36\x04\x6c\x2b\xa0\xd2\x25\x10\xd5\x00\x09\x4b\xe0\xbf\x86\x31\xcb\xff\x8b\x90\x43\xc7\x2a\x5a\x27\x45\x5c\x58\xc4\xbb\xcf\xe8\x9e\xda\x4f\x8e\xc3\x85\x4c\x78\xbc\x4c\x6c\x47\x48\x5c\x26\x90\x69\x0a\x99\xe2\x1c\xce\xbc\xeb\x63\x69\x4d\x88\x44\x4a\xae\x38\x01\x4a\x00\xb8\x4c\x38\xc8\xea\xeb\xe1\x1e\xe9\x9b\x83\x5a\x5f\x54\xa9\xf5\xcc\x79\x2a\xb3\xd6\xc1\x41\x66\xb4\x7b\x64\x0a\xb0\x42\xc1\x84\x3d\x9e\x68\x85\x26\x71\x6e\x69\x27\x37\x54\xd4\xed\xd4\x43\xa7\x07\xb1\x42\x3c\xe6\x12\x07\x40\x98\xfd\x04\xa8\xef\xa7\xbe\xbd\x1b\xbd\x5f\xbf\x32\xca\x49\xdb\xf5\x3e\xd6\xac\x90\xe3\xa4\x2f\x6a\x55\x8e\x33\xbb\x2a\x15\x6d\xdf\xfb\x2a\xca\xd5\x9f\xd2\xaa\x0c\xb2\xb5\x5a\x95\xb9\xb6\xcc\x32\xec\x9c\x30\xd0\xcf\x23\xf4\xdc\x68\x49\xbb\x23\x75\x67\xc7\x90\x1d\x50\x71\xb0\x92\x1f\x96\x95\x2c\xcb\x20\xf0\x1c\x03\x76\x3d\xab\xae\x38\x02\x1b\x69\x73\x87\x7e\xc9\xd7\xaa\xb5\xa2\xe4\x63\x66\x93\x05\xfd\x66\x4a\x0e\x03\x3d\xd6\xe1\x10\xb6\x9e\xfc\x3f\xb5\x32\x59\x24\xe6\x8c\x50\xd7\xff\x4e\x73\x47\x27\x3f\xe0\x79\x73\xa2\x69\xe4\x96\xac\x3f\xc1\x43\x15\x61\xf5\xe4\x47\xbe\x79\x71\xb3\x3b\xd1\x27\xb5\x66\xd0\x7c\xd7\xc2\xb6\x7f\xde\x73\x95\xfa\xa9\xc6\x0b\x40\xef\x4f\xfc\xcc\xcf\x8e\x88\x37\x42\xff\xce\x50\x08\x42\x4d\xa8\x24\x1d\xe3\xe8\xe4\xd9\x87\x0f\x27\xd6\x25\xf4\xe4\x85\xd8\x14\x82\x8f\xc4\x4a\xfa\xa3\xe0\x47\xff\x8f\x84\x3d\xc2\x78\x47\xf7\x87\x3b\xba\xc7\xec\x9b\x2e\xe9\x9a\x6e\xe9\x06\xf0\x6b\xa8\x12\x35\x54\x34\xa9\xf8\x47\xe2\x31\xf6\x3a\x08\xde\x98\x58\x2c\x4d\xf3\x1a\x90\x20\x7a\x3a\xfc\x01\x5f\x8c\xfe\xe4\x1e\x63\x61\xed\xba\x94\x07\xc1\xb7\x1e\x63\xb5\xc9\xa5\xcf\xdf\x4f\xc0\xaf\x18\xf5\xde\x45\xcb\x1c\xa3\x81\x33\x6b\x95\x69\xdf\x32\x28\x86\x4a\x25\xa6\x86\x1a\xa8\x9c\x50\x4f\x36\x8d\xd7\x53\x40\xb9\x1d\x91\x51\xb1\x62\x8c\xe5\x6d\xa2\xa6\x20\x80\xa4\x68\x4f\x85\xc1\xf0\xf1\x7c\x18\xa4\x1d\xb7\x4b\x82\xe0\x3b\xf4\xf7\x0f\x82\x3f\x6a\x03\x07\xe8\x68\xc2\xb8\x25\x01\x04\x55\xe3\xdc\x1a\x90\x9d\xd8\x7d\x9c\x88\xc7\x19\x09\x82\x67\xfd\x9c\xcf\xca\xbc\xae\x35\x3f\xa3\xee\xf9\xf2\xc7\xcd\xb5\x59\x61\x3c\x54\x1c\x8a\x75\xf8\x2c\xfa\xad\xce\x83\x20\xf4\xde\x36\x8d\xf7\xd6\x7a\x23\x69\x1b\xa3\x35\x5b\xb2\xf7\x74\xcb\x14\xdd\x30\x5c\x95\x20\xe0\x68\x39\x56\x07\x81\x23\xc2\xba\x2f\x6c\x80\xb6\xa6\x2e\xd9\x0e\x4e\xc7\x70\xa9\x17\xd3\x09\x02\x51\xac\x7c\x42\x92\x35\x5b\xb6\x64\xff\x47\x45\xfd\xc5\xe2\x41\xe0\x93\x58\x45\xf5\x30\x33\x5d\x13\xba\x66\x7e\x5a\xac\xd8\x57\xfe\x64\x3d\xf1\xbf\xca\x4e\x7c\xb4\x43\xb6\x06\xc8\xa7\xa7\x73\x52\xa6\xfb\x8c\xad\x27\xab\x10\x1e\xc8\x7c\xcb\x56\xca\x8e\x0a\xa6\xae\x03\x9b\xa6\x81\x71\x95\xd1\xaf\xb2\x10\xa1\x4f\x7d\x34\x7d\xda\x10\xc7\x1e\xdd\x99\xc8\xed\xb1\x67\xf9\x06\xa7\x50\x23\xd1\x4b\x72\x77\x58\x17\x22\x2f\xcb\xdb\xbb\x65\xd3\x1c\x47\x32\xc0\xc1\xb6\x16\xf5\x27\xd7\x61\xc7\xe2\x96\x8a\xfa\x0f\x66\x3e\x31\x5b\xd7\x8d\x0e\xe6\xec\x6d\x1e\x8a\x2e\xe0\xcb\x89\x32\xee\x4c\x13\x06\xc8\xf2\xfc\xb3\x0e\xec\xf4\x06\xa7\x21\x08\x5a\x3b\x4b\x65\x5d\x22\x32\x8a\xb6\x95\xd5\x41\x2b\xa6\x3a\xae\x89\xf7\xc2\x86\x75\x74\x61\xfa\x1e\x9d\x9e\x78\x2f\xe8\x94\xd5\x6b\xbd\x1e\x86\x1b\x59\x15\x57\x3e\x99\x77\x33\xe7\x79\xbc\xf3\x47\x10\x6e\x8c\x1d\x33\x47\xfd\x40\x0c\xee\x9b\x99\x39\x1d\xe5\x04\x51\x11\x1c\x8e\x83\x00\x4a\xae\xfb\x37\x50\x2d\x5d\x24\x98\xaa\x63\x31\x2a\x80\x86\xcf\xa8\xe2\x7e\x8d\x11\x26\x52\x91\x56\x59\xc6\x54\x2f\xfa\x50\xe7\x26\xa8\x00\xba\x2b\x26\x86\x01\x99\xf4\xbb\x1b\x27\x24\xfc\xb7\x32\x76\x39\xdf\x8b\x15\xbf\x69\x9a\xff\x21\xa7\xe1\xbf\xf9\x30\x4d\xcb\x06\x5a\x2b\x65\x60\xf0\x34\x6d\x28\x98\x88\x04\xbf\x51\x1f\x8a\x8b\xb2\x10\x1b\xf4\x93\x41\x89\x28\xb1\x7c\x5e\xbb\x3c\xc9\x2c\x3e\x9d\xb9\x61\x8c\xc6\xbc\xf2\xda\x11\xdc\xb3\x11\x2d\x3b\xd1\x8b\x3f\xa1\x03\xb4\x30\xc6\x0f\x6e\x3c\xa4\xff\x83\xea\x07\x91\x23\x2e\xf6\x4a\x99\x18\x14\xe4\x9e\xe6\x96\x4e\x73\x45\x38\x22\xa3\x54\x6c\xa2\xa8\xf3\x65\xe8\x2b\xc6\x50\xec\xd9\x32\xbe\x8a\xd0\x9c\xc9\xd6\x27\x03\xd6\x5f\xa4\x05\x93\x69\x9e\x69\xa7\xa3\x22\x63\x5e\x58\xb5\x6e\x6a\x68\x0b\xeb\x06\x71\x82\x5d\x6c\xdf\x76\x8e\xa4\x81\xf6\x8e\x52\xf6\x7b\xca\x27\xfe\x89\xaf\x1d\x18\x5b\x7b\x96\x64\x1a\x2f\x8d\x37\xd5\x54\x53\xc7\x35\xe3\xc8\x7a\xd2\x92\x7d\x8e\x76\x15\xd7\xde\x4b\xf3\x7a\x4e\xee\x42\xaf\x42\x57\xaf\xb5\x39\x05\x6b\x1d\x7c\xac\x40\x2d\xa2\x75\xca\x2a\xd2\xa9\x0d\x0b\x43\x9a\xa6\x26\x74\x6f\x0e\x1a\x96\x66\x04\x60\xdd\x9b\xd1\xb0\x60\xbb\xae\x0e\x8c\xd6\x56\x74\x5e\x71\x3a\xff\x1d\x06\x06\x89\x2b\xad\x14\xc1\x5a\x5d\xe4\x73\xe2\xa3\x01\x72\xdb\xac\x75\x42\xb1\xe1\x02\x80\xc6\xff\x6c\xc2\x39\x11\x2f\x2c\xd8\xad\x4a\xf3\xac\x6d\xb3\x69\xca\x34\xcf\x82\x00\xbe\xc0\x53\x58\x40\xda\x1f\xf7\x23\xa7\xe8\x0d\xca\xeb\xb8\xb8\xaf\x79\x20\x64\x2b\x23\x01\x73\x3c\x0f\x8c\x31\x45\x9d\x08\x23\xcc\xe4\x24\xfe\x3d\xe4\x74\x4f\xda\xf9\x1f\x04\x8d\xea\x3c\x60\xa6\x18\x2c\xca\x00\x4c\xc5\x7c\x7f\x2e\xce\xd5\x5c\x4d\x26\xa4\x9a\x60\xe8\x2e\x1d\x45\x65\x24\xa6\xc5\xb6\xef\x01\xaf\xa2\x55\x51\xd1\x02\xf6\x92\xdf\xa1\x2f\x34\xfc\xa4\x92\x3d\x98\x4c\x3a\xbb\x09\x34\x32\x48\x5c\x8d\x3c\x95\xba\x4f\x73\x85\xc6\xbd\x88\x01\xfa\x58\xa6\x69\x5a\xe7\x0c\x6e\x4a\x1c\x7a\xee\x24\x34\xd7\x3d\xb1\x40\xf9\xb3\x76\x63\xc3\xe8\x7d\xc7\x95\x8f\xd4\x1e\x04\xdc\xd4\x43\x5a\x2d\x4a\x27\xfc\xf9\x62\xc7\x8a\x75\x58\x32\x95\xbe\xcf\x9a\x26\x84\x1f\xd4\x82\x87\x7b\x56\xa6\x15\x90\x2e\xfb\x74\x9a\x01\xf7\x8e\x44\x44\x58\xb3\x3d\x90\x76\xa8\x36\x6d\x9a\x9a\x31\xf6\x43\xab\x15\xc5\xc4\x96\x2e\xd3\x15\xb0\x74\x99\x51\x28\xc2\x6c\xff\x9a\xe6\x07\x9d\x80\xee\x70\x6d\x67\xef\x0b\x6d\x65\xec\xc0\x66\xfd\x19\x77\x31\x47\x77\x48\xd8\xe0\x26\x1e\x4f\x8b\xcc\xe4\x1b\xd1\x2e\xc5\xc0\x84\xf7\x22\x60\x8d\xc4\x99\xa0\x18\x57\xa6\x46\x2f\x80\x16\xc4\x4a\xa6\x05\x44\x6a\xbe\x3f\xaf\xe7\xf5\x64\x42\x50\x82\x53\xc3\x3c\xa1\x52\x42\x84\x12\xeb\x21\x68\x60\x6c\x09\xc9\x12\x4f\x45\x78\xa9\x47\xc3\x31\xdc\xb6\x3d\x90\x00\x08\x9d\x8a\xc0\xab\xd2\xf7\x19\xa2\x01\x34\x0b\xa0\x32\x08\x3c\xa9\x93\x24\xbb\x0d\x21\x37\x71\x51\x6a\xa1\xf1\x9a\x71\x60\x46\x3e\x61\x07\xc3\x58\xc1\xbf\x2d\xcb\xed\x38\x36\xac\x68\x9a\x9b\x50\x69\xc7\xeb\xba\xb3\xc3\x4a\xeb\x2c\xae\x69\x9a\x11\x7a\xcb\x80\x51\xf0\x8a\x20\x50\xc9\x26\xbe\x0c\x37\x74\x47\x39\x56\x4e\xaf\x98\x48\x24\x20\xbc\x84\xc7\xdb\xa6\xa9\x48\x92\x66\x71\x1e\xdf\xe2\xa1\x18\x04\x22\xbc\xa5\x57\x3a\xa7\x96\x4c\x96\xec\x32\xbc\xa2\x2b\x42\xab\xb0\xa4\x30\xa9\xf0\x69\xd9\x51\x7a\x4b\x58\xb6\x70\x8d\xa1\x39\x61\xe2\xae\xd2\x55\xba\xcc\x00\xbb\xdf\x9a\xa7\xb5\x46\x1f\x3a\x40\x84\x6c\x1a\x63\xa6\x66\x69\xd2\x34\xa3\x4b\x76\x35\xac\xee\x4a\x57\x57\xea\x99\xbf\x4d\x97\x50\xcf\x5c\xa2\x05\x07\xbd\x42\x4c\x4e\xf7\xe4\x00\x55\xdc\x5f\x3a\x2c\x99\x4c\x84\x91\x9f\x15\x74\x4d\xe2\x1d\x7c\x38\x3f\x9d\x01\x82\x4f\x4b\xe8\x65\x0e\x3f\x6b\x42\x0e\x1a\xf6\xaf\x60\xb8\xc0\x51\x24\x57\xc6\x66\x26\xdc\x52\x5b\x3f\x89\xaf\x08\x95\x89\xe9\x45\x4e\xaf\xe8\x9e\xc4\x2d\x69\x9a\xd3\xab\xde\x21\x76\xd5\x43\x77\x1a\x46\x5d\x79\xf0\xe7\xa8\xe2\x65\xae\x8a\x2b\x9e\x02\x4c\xe3\xb1\x9c\xc1\xb1\xd9\x34\xce\x27\x38\xdd\x68\xcd\x24\x46\x44\xd9\xb3\x6d\x38\xa6\xa4\x01\xb4\x70\xa0\x39\xf5\xa6\x84\x96\xe3\x79\x44\x27\x16\x87\x09\xb0\xb9\x97\x2c\x1d\xda\x88\x9a\xad\x26\x01\x74\x9b\x46\x78\x8c\xfd\x0a\xa7\x48\xa8\x98\x20\x1d\xb0\xed\x4d\xf6\xb8\x34\x0f\xe4\x90\xcd\x0b\xb3\xb1\x90\x8a\xea\x8d\xaf\x36\xe3\x23\x4b\x96\x6e\xc3\x4d\xb8\x24\x54\x10\xe3\xa4\x6d\x72\xeb\x63\xcd\xc9\x6b\x49\x7e\xb4\x20\x85\x54\x73\x4a\x11\x2a\xd2\xf7\x99\x9e\xdb\x8a\x4d\x26\xf5\xbc\x38\x87\xfd\xd6\x6b\xb0\x32\x95\x60\x04\x37\xbb\x6d\x6f\xc3\xfa\x7c\x16\x04\xd8\x3c\x3e\xad\x42\x6e\x0f\x2a\x5a\x9f\xce\x5a\xef\x52\x73\x3e\xfa\x27\x68\xe5\x9a\xd6\xa7\x8f\x74\x75\x89\xff\xd0\x8f\x7d\xff\xe0\xd8\xd0\xb4\x4c\x83\xa0\xd5\x79\x1d\x04\x57\x6d\x95\x35\xcc\x0a\xc5\xbe\x5d\x85\x9c\xd9\xe4\x36\x11\xce\x43\x72\x58\xb6\xf1\x10\x4c\x27\xa1\x77\xa3\x21\xe3\x2a\x13\xc8\xc1\x60\x55\x57\xbc\x7e\x3e\xa5\x35\x73\x30\x89\x39\x8a\x74\xb9\x35\xdd\xd1\x15\xdd\xc2\xa6\xd9\xb0\x29\xbd\x65\xfe\xd4\xa7\x57\xac\x08\x82\x34\xa3\x17\x06\x2b\x2e\xe9\x0d\xfb\x95\x5e\x03\x6e\xc9\x83\xe0\xb3\x8e\x42\xf8\xf1\xe9\xab\x10\x90\xcc\x32\x08\xea\x1e\xbf\x56\x13\xfa\x91\xfd\x3c\x31\xe2\xb2\x9b\x64\x16\xf7\x2c\x8c\x9a\x26\xd2\xe6\x5e\x17\x41\x10\xfe\xca\x6a\x2d\xd0\xa8\xe9\x0f\xac\x22\x36\xb8\xd7\x9a\x5d\xa7\xb7\x19\x99\xdf\x4e\x26\x5a\x83\x13\x04\x6b\xbd\xa6\x3b\x36\x9d\xaf\x18\x4f\x77\x18\x77\xa2\x58\x87\xab\x70\x8d\x78\x87\xdc\x19\x7c\xb0\xb6\xae\xd9\x50\xff\xcf\xec\x23\xfd\x81\x4d\x26\x15\x39\x00\xcc\x86\x6b\xe6\xad\xa0\xae\x20\xd8\x9c\x9e\xd2\x22\x08\xae\x6c\x21\xcd\x57\x4e\xd8\x2d\xe0\xe2\x5b\x8f\xb1\x8d\xdb\xa0\x32\x0d\xae\xc2\x2b\xba\xc5\xf6\x3a\xb4\xb5\x39\x9f\x6a\x86\xe1\x16\x30\xcc\x55\x7a\x9b\x35\xcd\x16\xff\x87\xf0\xc3\xfe\x6a\xbc\x22\x09\xb0\xb9\x97\xe1\x96\x1c\x5a\xb4\x50\xd2\x2d\xa1\x17\x41\x00\xd8\x78\xdb\x2e\x57\x10\x6c\x26\xed\x4a\xce\x82\x40\x44\x7b\x51\xfc\xb6\xe7\x1f\x64\xa5\xc2\xb2\x85\x05\x3b\xbe\x5f\xd9\x0d\xa1\x57\x87\x4e\x38\x5d\x84\x35\x89\xeb\x7e\x8c\x37\xd5\x3f\x59\x5d\x60\x99\x4b\xf4\x44\x41\x21\xb8\x8e\x31\x52\x91\x11\xc2\xea\xfa\xfe\x68\x05\x3b\xa3\x62\xf5\x2a\xcd\x85\xd9\x03\xc0\x88\x87\x4a\x20\x34\xe0\x5f\x4b\xf7\x51\x4b\xfe\x9f\x3f\x0a\x02\xff\xfb\xe7\xb0\x93\xc2\x5c\xfb\x32\xe2\x5e\x32\x82\x95\xef\x6e\xbf\x5f\x05\xc1\xb7\x03\xc6\xee\x13\xc0\x60\xbb\x9d\x65\x3a\xb3\xf8\x03\xc3\xaa\xb1\xd0\x00\xe8\xf7\xcf\xc3\xdc\xa2\x05\x97\x98\x7e\xa6\xe8\x0f\xc0\xb2\x62\x74\x13\x92\x4e\x33\xea\xa9\x4e\x38\xd5\xed\x45\x69\x09\x63\x4d\x6b\xda\x31\x1d\xb4\x03\xee\xad\x8a\x04\xe7\xab\xfa\x99\x36\xa7\x6d\x03\xc4\x4c\x63\xe9\x50\x2d\x18\x79\x00\xcd\x05\x5d\x0c\x54\xb3\xdc\xf4\x58\x53\x7d\x7b\xa6\xbb\x6c\xe8\x8d\x8a\xed\xbf\xd8\x73\x2b\x2a\x91\xf6\x64\x38\x16\x99\x18\xd1\x90\xb4\xe7\x54\x41\x67\x84\x72\x66\x89\x76\xc0\x2f\x92\x50\x6f\x4c\x18\x55\x11\x2a\xcc\x0e\xb2\x90\xf6\x14\xfd\x6e\xc3\x8a\x2a\xea\x7d\xa2\x82\x76\xb2\x1a\x42\x05\x0a\x2b\x3e\xd2\x67\xf4\x07\xfa\x99\xbe\xa0\x1f\xe8\x53\xfa\x2b\x7d\x4e\xdf\xd0\xd7\xf4\x37\xfa\x89\xbe\xa5\xef\xe8\x4b\xfa\x1d\x7d\xcf\x7c\x2d\xbb\xf5\x27\xa7\x56\x15\x42\x7f\x74\x3d\x87\x7e\x66\x53\xfa\x80\x4d\xe9\xf7\xac\x0a\x09\xfd\x1d\xff\xff\x03\xff\xff\x04\x2c\xd4\xdf\xc7\x1d\x45\xf0\x7c\x4b\xc2\x9f\x98\x37\xa5\x53\x12\x4f\x0f\x7d\x37\xa5\xd9\x93\x27\x8f\x67\xf4\x15\xbb\x3b\x0c\xbd\x82\xfe\x06\x38\xef\xaf\xec\x6f\xd1\x4e\xee\xe8\xbf\xe0\x77\x5f\x6f\x29\x57\xf6\x49\xc1\x93\x76\x39\x12\xf0\x68\x3c\x8e\xfa\xd6\x74\x7d\x8e\xc5\xb1\x24\x6e\xf9\x15\x00\x49\xb4\xf8\xee\xe9\x8a\x6d\x34\x3e\x38\x6c\x2b\xc5\x7c\x13\x28\xb0\xb1\x21\x1f\x1b\x34\x3b\x69\xf2\xbd\x92\x6b\xb9\xdc\xd7\xf8\x84\x71\xdc\x50\x76\x2d\xcb\xba\x59\xf1\x35\xaf\x9a\x55\x51\xe7\x17\x25\x5f\x35\xda\x75\xaf\x29\xea\xcb\x7c\xd7\x94\x52\xee\x9a\xcb\x7d\xa9\x8a\x5d\xc9\x1b\xb9\xe3\xa2\xa9\x78\xbe\x92\xa2\xbc\x6d\x2a\xfe\xdb\xbe\xa8\xa0\xad\xa5\xdc\xf1\x95\x4f\x0b\xc5\xfc\x74\xb1\xb8\x79\x34\x5d\x2c\xd4\x62\x51\x2d\x16\x62\xb1\x58\x67\x3e\x95\x8a\xf9\x61\x12\x2f\x16\x8b\x45\xd4\xa4\x8b\xc5\xf5\x69\xd6\xa4\xbf\x2c\x16\x37\xd3\xe9\xe9\x62\x71\x93\x4f\x33\x32\xf1\x69\xae\x98\xec\x0c\x89\xfc\x6b\x9f\xfa\xd7\xff\xe9\x13\x5a\x2b\xe6\x2f\x16\xa9\x3f\x29\xd4\xc4\x7f\x18\xfa\x13\xa9\x26\x3e\xb1\xaf\x49\x1c\xa6\x0f\x7f\x79\xd0\x78\xff\xce\x12\xd6\x4b\xfd\x6a\xe1\x67\x24\xec\xda\xfd\x05\x7e\x33\xf2\x30\x21\x8b\xc5\xe3\x26\xf4\x27\x39\xd4\xd3\x90\xc6\x96\x5a\x2c\x32\x9f\xee\x15\xf3\x63\xdb\x08\x16\x0e\xc3\x3f\xac\x6b\xf0\x21\x24\xe9\x62\x91\x65\x8d\x3f\xa9\xbb\x01\x3d\xa6\xff\x4d\x26\x3e\x79\x48\x9a\xe8\x21\x59\x2c\xa0\x59\x74\x28\xe3\xd7\x46\x39\x12\xfa\xbf\xe8\x8e\x4c\xb0\xc2\x5f\xda\x56\x6c\xed\xe4\xa1\xe9\xe9\xe4\x81\x4f\xfd\x8d\x4f\xe8\x7a\xb4\xfc\x43\x6a\x7e\x7d\x42\x77\xe3\x39\xc2\xf4\x7c\xf2\x6f\xe8\x60\xe1\xcc\xa5\x0f\x18\xc1\xcd\x8e\xa9\xe9\xe4\xdf\x99\x4f\xe8\xb6\x5f\x11\x6b\x2b\xfa\x65\xb1\xc8\x60\x7a\x1e\xf6\xa6\x11\xbb\xb7\xe9\x95\xd9\x2b\x42\x2f\x8f\xba\x03\x8b\xf0\xc0\x27\xf4\x56\xb1\xbb\xef\x9f\xc7\xbd\xaf\xff\xd9\x2e\x36\xa1\xcf\xde\x3c\xfd\xf0\xa1\xff\x79\xb1\x88\x9c\x0c\x1f\x9f\xbe\xea\x7f\xc6\x6f\x03\x78\x7a\xe8\x13\x9d\xfb\xe9\xc7\x8f\x3f\xc6\x83\xae\xd4\x8a\xd0\xf7\x1f\x5e\xfc\xf4\xfc\xdd\xf0\x0b\x74\xfd\xd9\xeb\xef\xdf\x0c\xfa\x17\x87\xb8\x11\x90\xdf\x6f\xca\xbc\x56\x8d\x50\x5b\xf8\x3b\x85\x17\x72\x1a\xa2\x7d\x5e\x23\xd7\xa7\x88\x5c\x35\x34\xd9\x89\xe3\x57\x5c\x34\x72\xb5\x6a\xc2\x30\x9d\x9c\x66\x0d\x09\x17\x8b\xd5\x43\x22\x9a\x1e\x10\xe3\x17\x9b\xb0\x58\xac\x26\xa4\x21\xdd\x44\x23\x10\xf9\x85\x4f\xe8\x85\x94\xe5\x60\xf8\x49\xec\x4f\x2a\x98\x9c\x07\x26\x8f\x7b\xcc\x0c\x47\xa8\x97\x1a\x81\x22\xee\xba\xc6\x7f\x6b\x36\xaa\x29\xf5\xb8\xba\x61\x0e\x46\x12\x26\xf1\xe9\x62\xb1\x22\x09\x0e\xc0\xed\x5c\x98\xb0\xf4\x97\xd3\xac\x79\x60\xba\x79\x40\x87\xc1\x5f\xd2\x5f\xee\xb2\xc9\xe2\x0e\xdd\x08\x05\x9e\x64\x27\x8b\xeb\x33\x74\x12\x84\x6e\x1b\x77\xc5\x09\x69\xd0\x4b\xb1\x59\x44\x36\x81\x3c\x38\xd3\x5e\x80\x61\x12\xa3\xf4\xd1\xe0\xb9\xc6\xc6\xad\x6d\xb4\x18\x92\x3c\x38\x2b\xd0\x47\xf0\x97\xed\x62\x05\xcf\x1f\x15\x3b\xfb\xaa\x59\x2c\xce\x36\xf4\x59\x1f\x04\x71\xbf\xa6\x0b\x74\x58\xcc\xee\x66\xf4\x2f\x07\x3d\x80\xa4\x31\xe3\x23\x4d\x84\xbd\x07\x80\xfe\x41\x1d\x99\x06\x68\x9a\xd9\x9f\xde\xf8\x13\x75\xfa\x97\x6f\xbe\x79\xfc\x97\x96\xe4\xf1\xd0\x45\x58\x24\x2a\x9e\x9e\x57\xc6\x02\x39\x5a\x57\xf2\xf2\xd9\x36\xaf\x9e\xc9\x15\x0f\xab\x09\x96\x20\xf1\xe8\xc7\xf3\xf3\xd9\xb4\xf9\xe6\x9b\x47\xdf\xfe\x85\xce\xa6\x8f\x1e\x07\x55\xf3\xcd\x5f\x1e\x3f\x9a\x92\x83\x36\x5d\xb4\x27\xed\xdf\xd0\xd5\x15\x28\xc3\x1f\x5d\x83\x50\xda\x7f\xfb\x5b\xea\xbe\x5b\xc3\x95\x96\x18\x32\xc2\xfb\xcf\xa8\x7c\x65\x77\x58\x73\xfc\x37\x93\x2d\xe9\x1f\x98\xff\x6a\x4d\x03\x6c\xc3\x8a\xf4\x2c\xbe\x86\x02\xfb\x56\xfc\x36\x9d\xf3\x54\x4c\x26\x19\x53\x69\x85\x64\xf0\xbc\xb5\x2a\x82\x13\xec\x70\xf8\xc0\x44\x54\xd4\xff\x78\xfb\x86\x1d\xbb\xd7\x70\xb4\x3b\x1c\x68\x32\x39\x19\x6a\xcd\xbb\x98\x25\xfe\xeb\x8f\x6f\xdf\xf4\x35\x56\xb1\x37\x3b\xd0\x67\x4c\x58\x9b\x66\x76\x77\xa0\x6f\xe0\x95\xb7\x11\x0b\xc7\x5a\x4e\x8e\xdb\x8d\x7f\x84\x73\xda\xf5\x78\x6e\x1b\xd6\x8c\xc8\x90\xd8\x3c\x8a\xa4\x98\x84\xaf\x99\xa2\xbf\xb1\xa3\x0f\xf4\x13\xf3\x3e\x84\x8a\x68\x77\x41\xc7\xa8\x20\x08\x80\x51\x16\x91\x92\xbb\xc1\x97\xd0\x97\xe2\x82\xaf\x65\xc5\xf7\xc6\xec\xc0\xb1\x1b\x79\x83\xca\xf2\x67\xa8\x1a\x41\xf5\x54\xcd\xe4\x28\x87\x1f\x2d\xad\xc2\x90\xf9\x85\x4f\xbd\xc1\x25\x13\x7e\xfb\xd9\xd7\x15\x8e\xe9\x36\xef\xab\xda\x8d\x66\x6f\x4d\xa1\x9f\xc9\x4b\xad\x50\xf2\x09\x31\xad\x8d\x58\xb6\x3e\x6c\xed\x59\x8f\x1b\x6d\x35\x9c\xf7\x35\xdb\x05\xe7\xf6\x9f\xac\x8a\xab\x13\x1c\x02\xfb\x2a\xff\xea\xfc\xc9\xd9\xaa\xb8\x3a\xef\x25\x9e\x14\x36\xd9\xa7\xdc\x09\xdb\x3f\x98\x97\x47\xa8\x2f\xba\x47\xd3\x0a\x68\x6e\xd0\x5d\x60\x3e\xc6\xfb\xf7\x5b\x3f\xc8\x3f\x89\x8a\x15\x7b\x4f\xbd\x81\x1a\x17\xea\x6d\x9a\xb1\xd4\xf0\xfd\x58\x5b\x49\xc7\xb8\x0c\x48\x5d\xa0\x21\x0d\x49\x3b\xd0\x78\x7b\x8c\xfd\x33\x08\x3e\x75\xba\x9f\x81\x42\xdc\xb1\xe5\x07\xd0\xeb\x78\x84\x24\x15\x59\x9c\x66\x87\x03\xb5\xc2\x95\x7e\xb3\xdd\x85\x4c\x7d\xe6\x63\x3e\xd4\x3b\xb9\xab\x76\xac\x38\x46\xe1\xd3\x81\xc4\x36\x10\x46\x3b\xc2\xff\x0b\xcd\x9a\x21\x3b\xb1\xca\xdb\xc6\x61\x84\x7a\x6a\x8e\xd3\x75\xc7\x7a\xd3\xa2\x23\xb3\xeb\xae\xd2\x4e\xbc\xc1\xc6\xb7\x4a\x32\xee\xb0\x7e\xbc\x40\x83\x98\xe9\xf7\x1a\x15\xd8\xc0\x80\x23\xd6\xb3\x82\x56\xc0\xa6\x58\x86\xfd\x9e\x0a\xe6\x6d\x28\x3d\xc3\x92\xcc\x45\x1b\x9a\x13\xf8\x71\xe1\xe0\xb3\xca\x8a\x94\x3a\x16\xdf\x0a\x0e\x0e\x76\xec\x48\xb4\x0d\x47\xef\x98\x36\xfc\xff\x31\x01\x6d\x29\x03\xa9\xc3\x59\xe8\x76\x60\x37\x0f\xf4\x1d\x8c\xf9\x2d\xfc\xd3\x86\x0f\xec\xaa\x75\x58\x18\xea\xf7\xf5\x65\x40\xbd\x4d\xda\xc7\x1e\x9a\xd2\x38\x7f\xa2\x83\xed\x9f\xb4\x31\xf5\xbf\x02\x9c\xa1\x13\xcf\x9f\x9c\x99\x5c\x80\x3f\x8e\x2c\x08\xfc\xd4\x16\xca\x1c\x13\xfd\xb7\x7a\x1e\x5d\x16\x27\x89\x11\x90\x1a\x43\xbf\xf9\x64\xb4\xb6\xd8\xf0\x7a\x23\x75\x75\x9f\x0e\x84\xf6\x07\xd5\x46\x86\xef\xab\xf4\xb5\x2e\x97\xcc\xc5\xc0\x0e\x03\x6f\xee\xa0\x36\x12\x0c\x1a\xb9\x39\x18\x4b\x90\x61\x76\x1f\x1d\xfd\x46\x07\xaf\x7e\x61\x5f\x7d\xd5\x8d\x3c\x08\x6c\x6f\x81\x7f\xcb\x58\x37\xf8\xaf\xbe\x6a\x16\xfe\xe2\xfe\x71\x73\x81\x9c\xea\xd8\xb8\xed\x27\xea\xc7\x96\xa1\xbd\xa7\x96\x87\x34\xbe\xf1\x09\xb5\x25\x69\xf4\x30\xf6\xd1\xa2\x33\x7c\x66\x25\x26\x36\x7f\x0b\x35\x2f\xd9\x6f\xd1\x35\xbf\xf8\x5c\xa8\xb7\xfd\x1c\x4d\xf3\x5b\x74\x29\x7f\x1f\x49\x95\x63\x39\xeb\x41\x22\xc0\x5e\x7f\x95\x9e\x45\xab\xa2\x5e\x4a\x21\x10\x5c\x30\x3b\x7b\xd9\xba\x7c\xa1\xfd\x05\xed\xde\xd3\xda\x83\xa9\xc5\x01\xbd\x33\x03\xf2\x18\xf0\xb2\xb0\xfe\x6f\xd9\xdb\x76\xca\x1d\xca\xf7\xad\xb1\x84\x69\xe0\xf0\x7d\xc7\xde\x8d\xe5\x79\xe7\xe6\xf9\xae\x9d\x87\xdf\xda\xc8\xfd\x04\xc6\xb3\x94\x97\x70\x1e\x58\xe2\xe8\xbd\xac\x0b\x18\x47\x32\x82\x85\xd8\x71\xc8\x98\x3e\xed\x13\x73\x5a\x31\xd5\x17\x43\xcd\x1d\x09\x4d\xd5\x34\x1e\x2a\xd3\x67\x18\x9a\xbe\xd3\x52\x7a\xa1\x68\x7b\x95\x74\x8f\x61\x45\x62\x7e\x5f\x0f\x83\x60\xf6\x97\xe0\xde\xaf\xe8\x66\x3b\xc4\xa5\xe8\x0b\x60\x35\xa6\x6e\x1f\xf5\x95\x09\x9d\x64\xc6\x9b\xce\x5b\x33\x18\xfa\x77\xf6\xa7\x66\x49\xb4\x1e\xa7\xad\xa7\x92\x16\x47\xcd\xad\xc9\xff\xbd\x03\xf9\xc2\x18\xef\x1f\xa0\x83\xbb\x93\x59\x00\x53\xfb\x0c\x5d\xba\x9f\x63\x74\x10\xbe\x82\x23\xed\xbe\xb2\x9c\x60\xcc\x23\xae\x3d\xfb\xbe\x0b\x7f\xa4\x9c\x24\xa7\xb3\x58\x74\x09\x82\x24\xb3\xf8\x79\xab\x1b\x7b\x4e\x39\x39\xed\x5e\x04\x89\xa7\xf1\xd7\x41\x05\x85\x66\xf7\xaf\x11\x7e\x3e\x8c\x5b\xce\xe3\x61\xc6\x9d\x55\xa0\x39\x73\x69\x13\xba\x67\x29\xcf\x68\xc9\x52\x81\xc6\x1b\x63\x33\x5b\xac\x43\xb4\x30\x6c\xad\xfb\xb4\x1c\xd0\x8e\x24\x99\xc5\x12\x5e\xf2\x3f\x1a\x0a\x1a\x23\xba\x56\x82\x75\xe8\xb8\x86\xf0\x79\xc5\xaa\x1e\xb8\xec\xdb\x30\xb0\x95\xcd\x24\x8e\x32\x95\xc3\x4c\xf3\x7d\x5a\x64\x18\x0f\xb9\xc8\xe6\xa4\xe8\xac\x0e\x8a\xa4\x0e\xe1\x1b\x2d\x31\xda\x87\xc9\xf6\x23\x74\xbd\xb4\xcf\xb3\x78\x7a\xa0\x8a\xc4\xaf\x0f\x54\x58\x1c\x77\x4f\x14\xa3\x50\x07\x53\xd1\xff\xd0\xfd\xea\x08\x29\x1e\xed\x8b\x31\xe6\xcc\x1a\x99\x72\x34\x32\x6d\x69\xb1\xad\xa2\x3e\xfb\xea\xc1\x0c\x8e\x03\xea\x85\xde\x11\xca\x6d\x1a\xef\x53\xd3\xbc\x0b\x82\x77\xf6\xf2\xb1\xa6\x79\x0b\x27\x86\xbd\x8a\x0c\xed\xf6\xf4\xae\x78\xd9\x39\x9b\xa1\x09\x56\xd3\x8c\x60\xcf\xa6\xe9\x50\x4d\x10\xcc\xf4\x35\x6d\x36\xe1\xe8\xda\x34\x7b\xb9\x5d\x41\xee\x0e\xed\x94\x28\xfa\x5a\xcf\x47\xca\x33\xd2\xea\x58\x60\x6a\x2c\xb2\x19\x9d\xcc\x3f\x98\x96\xef\xb4\x97\x1c\x45\x76\xae\x37\xab\x82\xdc\x7d\xb9\xac\xc1\x0a\x7d\x9b\xb7\x41\xd8\x66\x5a\xb0\x2a\x08\x5e\xe9\x29\x72\x73\xd2\x41\x4e\x1d\x91\x5e\x50\xef\x13\x89\x5b\x1e\xba\xc0\x2d\xe0\x72\x8e\xb0\x30\xc9\x80\x40\x17\x24\xc6\x6b\x17\x8e\x08\x64\x81\x6e\xda\x3a\xda\xe7\xba\xe0\xab\xa4\xd0\x14\x32\xfa\x99\xc6\x05\x0c\x1a\x0d\x7a\xd8\x97\xdc\x78\xfd\x0f\xb7\x42\xe5\x37\x27\x98\x93\x9e\xec\x45\xc5\x97\x72\x23\x8a\xdf\xf9\xea\x84\xdf\xec\x2a\x5e\xd7\x85\x14\xf1\x89\x3f\xe1\x38\x8d\x9d\x8a\xeb\x98\x1d\xa0\x42\x5f\x05\x34\xc5\x20\x6a\xe8\x87\xe0\x3d\x8b\x56\x5c\xf1\xa5\x7a\xbe\xdf\x95\xc5\x32\x57\xbc\xa6\xcf\x99\x41\x84\x1f\xf0\x8a\x37\x40\xa1\xad\xc2\x89\xe3\x87\xf0\xef\x84\xfe\xd4\x9a\xdd\x70\x43\x22\x23\xfe\x4f\x0b\x6d\x8f\x21\xec\xb5\x41\x66\xe7\xa2\x7d\x22\xb7\x7a\x14\x91\x56\x19\x9d\xb5\x2a\x38\x7e\xa0\x2f\x18\x86\x2f\xff\xc8\x6f\xc6\x3b\xee\xfb\xa6\xe3\xdd\xf1\xd9\xa9\x0e\x81\x38\x2f\x9a\xe6\x5b\xfd\x33\xc3\x57\xfc\x70\xec\x04\x87\xd7\x65\x19\x77\x88\x16\xe7\xb9\x89\xd8\x5d\xce\x5c\x06\x78\xce\x51\x9d\xe5\x18\x31\x12\x31\x61\x2f\x42\xde\xb9\xde\x3c\xd6\x4d\x7f\x8d\x2d\xf7\xbc\x32\xf1\xaa\xa8\x9e\xa9\x11\x46\x04\xad\x26\x13\x5d\x89\x72\x2e\xde\xa3\x9f\x51\x18\xa3\x91\x40\xcd\xee\x1c\x3b\xd7\xf8\x9b\xa9\x89\xb5\xfb\xbe\xe6\xfb\x95\x8c\x0b\x6d\x50\x16\xdf\x2a\xda\x81\x75\x7c\x77\xa0\xc0\x7a\xc0\xaf\x55\x93\xc5\x77\xfe\xb9\x1f\xdf\xad\x8a\x2a\x76\x4d\xb7\x4c\x30\x18\x6f\x7a\xa0\xfe\xc9\xc8\xf7\x03\xf5\x27\x6d\x72\xc5\xaf\x0a\xb9\xaf\xcd\xe8\x7b\x65\xff\x7d\x5f\xa6\xc3\x81\xb6\x56\x80\xf1\x1d\x4a\x9c\xc7\xb8\x5d\x34\x7d\x4a\x67\x47\xda\x39\x9e\x3e\xce\x58\xc8\xd3\xaf\xb3\xa6\xe1\xe9\x37\x78\xc1\x0e\x19\x66\xf2\xff\xcd\xb4\xf5\xc0\xa3\x0c\xa3\xb6\x3e\xce\x98\x0f\x5b\x21\x7d\x9c\x4d\xd0\xb1\xa2\x33\x3d\xf8\x9a\x1c\x8c\x10\xfb\x8b\xbd\xe8\x5f\x05\xe7\x0b\x1d\xeb\x10\x3f\xd9\x9a\x1e\x93\x04\x9b\x6a\x9a\xd6\x22\x0f\x83\xc7\x42\x5f\xd9\x04\xbb\x9c\x40\x8f\xe1\xf1\x2f\x59\xd3\xcc\x48\xfc\xe8\x61\xe8\xf3\x2b\x2e\x74\x5d\x8f\x31\x9c\xc2\x6a\x65\xdf\x08\x94\xfd\x46\x97\xfd\x5f\xd9\x84\xa7\xff\x7d\x94\x21\x86\x1f\x20\x48\x7a\x0d\x1e\xac\xc0\xfe\x88\xc5\xa1\x15\xf3\xa0\xce\x20\x80\xb9\x69\x6d\x33\x54\x84\x53\x60\xd4\x8e\x50\x89\xbe\xf6\x34\xd4\xd5\x43\xd7\x3d\xbc\xdf\x26\x7d\x04\xf3\xf1\x75\x16\x57\x41\xb0\x69\xaf\x41\x45\xe7\xff\x5d\x58\x61\x98\x2e\x7c\xa9\xac\x3e\x2f\xf4\x09\xba\x75\xeb\x10\x65\x82\x9c\xb6\x86\x8d\xb8\x30\x53\xa8\xae\xd3\x5c\x53\x01\x43\x7e\x94\xb5\x77\x5c\x4c\xf1\xf6\x61\xee\xcc\x31\x39\x00\x28\x6b\xe0\xf9\xf8\xf4\xd5\x48\xc0\xa1\xa1\x70\x63\xdc\x0c\x58\xf3\xf3\xc9\x91\x23\x99\x37\x1d\xf5\xd2\xfd\xb3\xae\xd4\x87\x83\xd1\xc9\x1c\xf7\xeb\x7b\x6b\x30\x6b\x39\xfa\xa6\x09\xfb\x52\xf7\xf0\x97\x4e\xf7\xc4\x27\xbe\x11\xb5\x37\x0f\x88\x0f\xd3\xfa\xfd\xf8\x8d\xa1\x66\x15\x46\x50\xda\xb2\x13\x29\x38\x2f\x4d\x33\x2a\xd3\x19\x93\xe7\x18\xd9\xa6\x4f\x70\x93\x1d\xc8\x81\x0e\xb6\xab\xb6\x7b\x18\x0a\x8f\x0a\x73\xbb\x36\x13\x36\xb4\x9a\x23\x27\xd3\xd7\x3c\x27\xc0\x89\xc1\x7c\xc5\x2a\x09\xe5\x04\xd0\xb8\xaf\x13\x12\x20\x17\xab\xd8\x7e\x4f\xa4\x87\xaf\xbf\x98\xd7\x2a\x08\xa6\x8c\x31\xd9\xc2\x57\x45\x62\xff\x61\xf7\xd1\xfd\x70\x7e\x3a\x8b\xfd\x07\xee\x37\x0d\x46\x1d\x0c\xea\xa6\xfe\x6d\xb2\x84\x68\x3b\x8a\x08\x62\x58\x4b\xe3\x76\xae\x69\x64\x0b\x90\xb6\xaa\xc9\x0c\x2b\x9b\xf8\xa7\x7e\xec\xcd\x08\xe0\xc0\x63\xbc\xd2\x99\x4b\xea\xf9\x41\x34\x82\x34\x57\x07\xdf\x34\x67\x7e\x99\xd7\xca\x4d\x3f\xfd\x9a\xd0\x9a\xf9\x46\x63\x86\x3d\xb1\xf3\x09\x67\x9a\x99\x93\x62\xc4\x0f\xdd\xf3\x5c\x46\x60\x60\x3b\xdb\xb7\x77\xa4\x2b\xba\xa5\x1b\x06\xf3\x9d\x27\xbe\x73\xa8\xf9\x23\x88\xfe\xb2\xc7\xe6\xd1\x5b\x56\x03\x73\x7a\xcf\xc5\x99\x57\xcc\xdb\x07\x81\x87\x81\x0e\x2f\x5d\x0b\xc4\xf9\x66\xae\x1f\xd6\x4c\xcd\xd7\x6c\x9d\x6e\xb4\xd1\x51\x9d\xac\xef\xdf\x62\xb7\x78\x2d\xfd\x7a\x48\x9d\x7a\xb3\xf9\x96\x6d\x98\x2f\x45\x89\x81\x77\x78\x10\x78\xdb\x20\xe8\x0d\xe4\xd0\x6e\xf1\x62\x1d\x6e\x59\x9a\x27\x97\xce\x71\x1e\x5f\x46\x30\xf1\xf8\x8c\x51\xbc\xaf\x74\xe7\x96\xec\x52\x1b\xf9\x5e\x5a\x23\xdf\x92\x2d\x53\xae\xef\xbf\x59\x69\xf3\x1b\xc6\x7e\x0e\x82\x32\x9d\x65\x74\xd7\x4b\x78\x94\xd1\x35\x5b\x05\xc1\xa5\xa3\x65\x4a\x57\xd9\x7c\xcd\x26\x93\x55\x10\xac\x83\x00\x06\xdd\x34\xe1\x8e\xad\xd8\x94\x34\xcd\x56\xdf\xba\xdb\x9a\x1c\xaf\x1d\xd9\xe2\x64\xb2\x0b\x82\x35\xba\x48\xdc\x41\x07\x58\xfa\x33\x5d\xd1\x5d\x66\xcd\x49\x2c\xd1\x71\x85\xe6\x97\xe1\xc0\x34\x99\x00\x81\x0e\x7d\xd2\xbd\x23\xd0\xd1\x99\xeb\xe9\x1e\xfe\x51\xa7\x00\x65\x7f\x61\x6d\x3c\x5c\x1b\xaf\xb7\x36\x4d\xe3\x4d\x26\xbb\xa6\xc1\x3e\x85\x6b\xdd\xa3\xb5\xd3\x23\x18\xc3\x2e\x23\x74\x8d\x77\x57\x93\x79\x8b\x28\x76\xa7\xac\xa0\x3b\xbd\xdd\x76\xff\x55\x31\xc6\xa6\x41\xb0\x3b\xab\xce\xd9\xf4\x70\x18\x39\xe0\x3a\x37\x05\xc9\x3e\x47\x3b\x24\x86\x6a\x5c\xa5\xcf\x51\xcd\x95\xa6\x37\xea\x74\xd0\x67\xe7\xb0\xf6\xf7\xc2\xa8\xbf\xf8\xea\x44\x97\xd7\xe4\x73\x77\x07\xd2\xfb\x2c\x91\xa1\x22\xad\x09\xd2\xf9\x2c\x09\x2b\x96\x72\xca\xa9\xef\x53\x95\x51\xb7\xa9\x81\x41\x4c\x38\xf4\x0b\x4b\x1c\xfb\x63\x3e\xbc\x75\x43\xea\x2b\xbe\xdc\xcb\x35\x80\x50\xae\x98\x68\x83\x05\x15\x69\x8e\xc4\x45\x95\x31\x0f\x09\x67\x86\x29\x07\x32\x76\x7c\x41\x7d\x53\xbc\x2c\x2b\x96\x40\x80\xe9\xe9\x89\xef\x84\x54\x71\x71\x24\x09\xd5\x81\x83\x35\x53\xf0\x74\xc4\x49\xab\x13\x90\xc0\x94\xf4\xc6\x01\x78\x65\x60\x0e\x5e\x59\xb6\xb9\x40\x03\x69\xf7\x6e\x4a\xb4\x19\x96\x2c\x37\x96\x59\x1c\x6f\x99\x0a\x15\xfc\x48\xd2\x1f\x0a\x2d\xa8\xec\xce\x3c\x1d\xe5\xb2\x02\x34\x06\x35\x4b\x20\x1c\x3c\xa1\xc1\xf4\x70\x20\x74\x9b\xd7\x83\x71\x8d\x38\xf4\x38\x6c\xbd\x72\x58\xd7\x03\xa1\x96\x75\xfd\xb3\x75\x84\xca\x65\x15\x9a\xc6\x5c\x7f\x0b\x5c\x4b\xd3\x00\x2d\xdf\x1d\x28\xda\x04\x18\x90\x48\x2e\x36\xe3\xf5\xdb\xf8\x41\x1c\x8f\xdd\x7b\x20\x14\x8b\x23\x7c\x52\xfe\x07\x24\x0f\x3d\xf2\x62\x9a\xaf\x24\xde\x97\xc6\x3e\x25\x2a\xc2\x9a\x86\x6e\x89\x37\x97\x65\x0c\x1f\xa0\xfd\xe1\x37\x9d\xde\xda\xf4\xb1\x01\xcf\x4c\x05\xa0\xdf\xa6\x99\xa2\x6a\xa4\x1d\x37\x1c\x8d\xc4\x5c\x09\x1f\xf6\xc5\x84\x64\xe8\x5d\x46\x3a\x29\xe1\x81\x50\x95\x57\xbd\x38\xa0\xad\xd8\xb4\x0b\x92\x8d\x91\x6f\xcd\x33\x6c\xbc\x6d\x4f\x01\x65\xef\x4b\xc3\x36\x8a\xd5\x81\x56\x52\x8e\xc6\x15\xe5\x8c\xb1\xdf\x0e\x14\x6d\xc2\xee\xfb\xfe\xba\x7f\x13\x7e\x10\x84\xde\x6b\x68\xf2\x25\x1a\x92\x35\xdd\x33\x22\x4c\xcf\x0b\x6d\xb4\x64\x1e\x6d\x2b\xbe\x6e\x9a\x7f\xf3\x48\xe5\x17\xe8\x20\x87\xb1\x27\x51\x1e\x3f\x4e\x73\x5a\x69\x3d\x86\xa5\x39\x50\xfb\xfa\xc7\x99\xa7\x07\x6a\x94\x1d\xa3\x04\xf2\x9f\xf4\x90\x53\xd0\xff\xf6\x9a\x5d\xe0\x3d\xda\x2b\x95\xcd\x27\xab\xba\xb1\x71\x5e\xef\xeb\x9b\xeb\xe8\xe8\xbe\xb5\x15\xe0\x74\xd0\xee\xdd\x0c\x02\xef\x6c\x88\x87\x26\x81\x7f\xc8\x86\x63\x6c\x38\x3b\xc8\x73\xff\x7f\xfb\x4d\xf3\xb8\x27\x62\xd7\x2c\x39\x1f\x21\x22\x5a\x12\x81\xea\x5e\x8e\x45\xde\x6b\xcf\x17\x7d\xa7\x04\xc6\x54\xdb\xe2\xc5\x6a\x63\xa3\xbf\xb6\xdb\xb9\xbb\xa2\xe1\x40\x71\x8e\xc7\x72\xdf\x8c\xe5\xd6\xf6\x3b\xff\x87\x4b\xe9\x38\x23\xb6\x01\xbc\xbb\x24\x75\xa0\x68\x01\x75\xd4\xc6\x51\x55\xf7\xb5\x19\x04\x18\x04\xac\xab\x1f\x38\x41\x24\xf7\xf1\xe6\xb2\xcd\xb1\x06\x8d\x20\x72\x19\x12\x78\xe6\xca\x67\x1b\x96\x76\x19\x1e\xf1\x68\xe9\x34\x43\x04\xda\xff\xea\x48\x17\x53\x75\x3a\x83\x2c\xfc\xb7\x41\x86\x2e\x6c\x49\x3a\x3d\x17\x89\x98\xa8\x58\x60\xc6\x2b\x2e\x8e\xea\xea\x8c\x75\xa6\x73\x85\x01\x8a\xd8\x23\xc2\x87\x0a\x5e\x7e\x20\x54\xae\x56\x5f\x28\x3d\xfb\x83\xd2\xe5\x70\x18\x3d\x6a\x80\xb5\x1d\x9d\x9f\x9e\x02\xf9\x33\xb7\xb5\x54\xbd\x5a\x36\x7f\xb6\x96\xc9\xa4\x7a\xa2\xc6\x2b\x41\x7b\x05\x0b\xdb\x42\x6d\x99\x03\xe9\xbf\xa1\x04\xec\xe3\x49\x21\xee\xaa\x7c\x55\xc8\xd8\x9b\x6a\x1c\x73\x21\x6f\xe0\x79\x5d\x94\x1c\x7e\x77\x79\x5d\x5f\xcb\x6a\x05\xcf\xc5\x65\xbe\x81\xc4\x03\xe9\x48\xb2\x8f\x19\xdb\x87\x1f\x49\x57\x5b\xbd\xbf\xb8\x2c\x14\x64\xaf\x78\xcd\xd5\x71\xf6\x12\xb3\x3b\x41\x73\xad\x71\x43\xdd\xf5\xaf\x47\x7a\x21\x53\xbd\xa6\x4f\x8d\x6a\xa8\x28\x39\xfb\x82\xee\x1f\xe3\x32\xfd\xc3\xf1\x66\xf5\x0c\x7b\xa2\x19\xf4\x9d\xb6\xc3\xee\xec\xf9\x05\x50\x2d\x92\x5d\x85\x0a\xef\xff\x41\xb2\xb0\xb2\x3e\x6b\x71\x61\x9f\xe6\x92\xfd\x23\xe4\xf4\x22\x2c\xd0\x43\xa7\xb3\x02\x70\x85\xa8\xec\xbd\xf5\xdb\xf6\x89\x15\xa1\x1a\xed\x22\x5a\x77\xbc\xa7\xc7\x82\x58\xf6\x13\x7d\x13\x12\xda\x57\x4a\x8d\x5b\xd2\xcc\xbe\xa0\xe6\x1a\xf7\x5f\x3f\x56\x8d\x8f\x1a\x0d\xe5\x27\x70\x96\xb1\xaf\xfe\xf3\xab\xf3\x27\x67\xf9\xb9\x4f\xfd\xff\xd4\xfb\xde\x31\x0f\xea\x6f\x78\xc8\xef\x93\x03\x69\x9a\x5c\xef\xfe\x06\x4f\x43\x7d\x81\x47\xa3\x6f\x0f\xa1\xf7\x44\x18\x12\x89\xb9\x1e\x74\x80\x45\x14\xf5\x5b\x86\xb8\x8f\x46\x92\x59\xfc\x68\x68\xde\x35\xd4\x26\x8f\x0e\x0c\xb1\xdc\xd9\xd0\xd2\xa9\xaf\xce\x47\x69\xbd\x56\xe9\xfb\x7f\x30\x6a\x9d\xd5\x0e\xdb\x14\xbc\x6f\x94\x4d\x63\x90\xac\x77\x3f\x92\xed\x66\xc2\xda\xd8\xa1\x1c\xf9\x9e\x45\xb3\x21\x75\xfa\x9d\xea\x6c\x00\x74\xbf\x2a\x75\xd4\x25\x1d\xe2\x6d\x38\xfd\x61\x35\xa6\xcf\x50\x40\xe7\x54\x8e\x3e\xa3\x32\xfa\x0c\xae\xad\xf2\xbd\x69\x32\x58\x1d\xd4\x74\xe8\xa8\x48\xeb\x42\xac\x98\x09\x80\xbd\xab\x5c\x31\xb7\x4d\x4b\xfd\xd8\x37\x21\x99\x77\x55\xbb\xdd\x97\xca\xa8\x34\x98\xab\xdb\x80\x64\x0c\xc5\xde\x2a\x0d\x74\xbc\xab\x7f\xbc\x7d\xf3\x5c\x2e\xad\x15\x25\x75\x2e\xd9\x67\x9d\x9e\xea\x60\x95\x47\x9f\x15\xbb\xc3\x1b\x1f\x9e\xe5\x65\x79\x91\x2f\x3f\xd7\x3d\xd5\x03\x67\x23\x31\xf4\x3e\x2b\xe4\x35\xd1\x0b\xbb\x77\x15\x9f\xa9\x53\xf4\x6e\xe8\x42\xc7\x4b\x8f\x47\x52\x2c\x39\xba\x82\xad\x7b\x01\xa1\xb4\x0b\x0c\x8f\x2e\xf9\xa5\xac\x6e\x83\x40\x51\x0c\xdd\x55\xb3\x7d\xd3\x4c\xe9\x1e\xa3\xbb\x95\x5d\x58\x3d\x6f\x3a\x2f\x83\x20\xef\x1c\x00\xcb\xb4\xb6\x1e\x7c\xc0\x29\x51\x65\x5d\x8f\x67\xa8\xb4\x51\x72\xf7\x4e\xbc\xcc\xcb\x9a\x93\xbb\x82\x79\x33\x23\x3f\xc0\xb0\xd9\x65\x10\x84\xcb\x64\xd9\x9a\x3d\xac\xc3\xee\x46\xd1\xb8\x48\xa0\xeb\xf1\xce\x92\x9a\x78\xab\xc7\x8e\xdd\xe5\xab\x5e\xfc\x74\xe8\x81\x25\x50\x5a\x67\x55\xcf\x89\xe8\xa1\xc8\xdd\xe8\x75\xd0\x06\xf0\x8a\x36\xe4\x99\x20\xf3\x5e\x30\xe6\x22\xe1\x66\xb5\x83\x60\x07\x84\x76\x28\x48\xd3\x94\xf6\x50\x8d\x91\xda\xb7\x5d\xef\x82\xf5\xb0\x22\x08\xaa\x50\x90\x03\x39\x38\xb1\xdc\xa8\x48\xba\x69\x8c\x31\x76\x1d\x53\x74\x1d\x16\x1d\xb6\xd6\x01\xf6\x75\x30\x8e\x91\x08\xf1\xa5\xbe\xd9\x17\xc6\xd1\x05\x99\x1b\xa7\x02\xaa\xb9\x0e\x69\x6b\x62\x2a\x86\x8a\x96\x70\x2c\x9c\x9f\xce\xf0\x02\x5f\xad\xfe\xaa\xe8\x0c\xcd\x5b\xc3\xfc\x9c\x55\x41\x90\x9f\x9e\xd2\x1a\x9f\xea\xd3\x53\xc0\x66\xba\x3b\xc0\xdb\x8e\xe1\xb1\xc4\xa9\x9e\xd3\x12\x05\x97\x5e\xe8\x95\x4d\xe3\xb5\x1e\x63\x47\x14\x75\x37\x16\x00\xca\x9c\x4d\x4d\x23\x66\x85\x47\x33\x2e\x59\xc1\x54\x3f\xdf\x48\xfc\x7c\xaf\x3c\xd0\x52\xba\x57\x2d\x74\x11\xe3\x98\xa2\x45\xd3\x38\x70\x64\x6a\x83\xfc\xa3\x75\x2d\x91\x1a\xc4\xc8\xdf\xa3\xa1\x4e\x61\x94\x32\x08\xbc\x25\x1e\xd9\x18\x12\x93\x2a\x96\x72\x6a\xae\x35\x4a\x94\xbd\xe2\x37\x56\x19\x15\x89\xf1\xfc\x54\x24\x5e\x03\xfe\x32\xcd\x43\x13\x23\xdd\xdd\x45\xb6\xed\xe1\xdd\x09\x4e\xb9\xb1\x5e\x7b\xf2\xd0\xfa\x0d\xee\x7a\x91\xe2\x6d\x90\xb7\x11\x92\x3e\x4d\x7d\x13\xe7\xdc\xa7\xfe\x4a\x0a\x8e\x77\xb1\xb5\xa8\x28\xf4\x01\x69\x9c\x68\xd4\x00\x27\x90\xc9\xbc\xf2\x33\x0a\x25\x31\x1e\x11\xf5\xd7\x79\x51\xfe\x61\xc1\x5f\x91\xd5\xc2\x82\xfa\x4a\x52\x9f\xfa\xf6\xba\xc6\x61\x61\x5b\x2e\xcb\xa8\x60\xfe\x8e\x0b\xbc\x39\x8b\x56\xcc\x5c\x8c\x7b\x3c\x6d\xe2\x40\xf5\x2d\x71\x23\xdf\x0a\x7d\x87\x45\x37\x93\xfa\xea\xc7\xa3\x99\x55\x5b\xf7\xfe\x50\x73\x0d\x42\x77\x85\x80\x73\xe9\x65\x1b\x36\xaf\x8b\x93\x72\x0f\x96\x91\xba\x1a\xed\x0f\xa9\xef\x98\x75\x63\x47\xa6\x2a\x23\x41\x00\x3f\xf3\x02\xbd\x1f\xb3\xe1\xad\x6b\x9c\xd5\x41\x50\x8f\xdf\xa6\x31\xb7\x97\x0b\x74\x15\xda\x20\x71\x24\xe1\xc3\x3b\x3c\x84\x0d\x69\x6f\xc6\x2f\xcc\xc5\xa1\xa4\xbb\x45\x53\x98\xdb\x62\x49\x2c\xd2\x7c\xe2\x03\x14\xfa\x19\xb6\x8a\x96\x46\xa2\xab\x12\xaf\x39\xa1\x35\x86\x73\xed\x3a\x74\x00\xc4\xc1\x75\xfc\x20\xd2\x65\x3e\x50\xf3\xf8\x85\x60\xf4\x49\x07\xb0\x9c\x56\x24\xae\x0e\x07\x5a\xc0\xd1\x68\xa5\x7f\xd1\xae\xd8\x71\x56\x45\xb0\x4a\x74\x64\xae\xb9\x3b\xd7\x8f\xd0\x97\x3e\x7d\x9c\xcd\x2b\x3d\xad\x2c\x8f\xf2\xd5\x8a\xd6\x41\x80\x0f\xee\x2c\x0b\x06\x6b\x9f\xce\x7e\xe1\x59\xfa\x28\xb3\x68\x82\xaa\xf4\x11\xbe\x03\x9a\x20\x14\x56\x67\x9a\x65\x23\x01\x3d\xf5\x97\xe1\x64\x15\x49\x15\x8f\xef\xdf\x7e\x7e\x96\xb7\xfb\xfd\x40\x68\xd5\xce\x59\x41\xa8\xd6\xa4\xe9\x90\x06\x05\xa1\xc5\x81\x5e\xf7\x00\xb4\x33\x4c\xa0\xd6\x10\xeb\x38\x86\xa8\x13\x9e\x87\xd6\x6c\xe6\x31\x96\x37\xcd\x97\xc0\x26\xc7\xf0\x03\x18\x72\x2c\xe1\x71\x3f\x44\x64\xc9\xc6\x63\x08\xf4\xb4\x71\x22\xe5\x99\xbe\x95\xa3\x82\xa7\xe1\x15\x21\xe7\xb3\xe4\xb8\x97\x71\x41\x2b\x54\x79\xed\xdd\xeb\x8a\x31\xec\xc0\xe9\x69\xdd\x34\xfb\xde\x6d\x0c\x18\xb3\xeb\x80\x61\x57\xce\x67\x44\xdf\xc3\x87\x21\xc0\xf1\x34\xca\x31\x94\xa8\xfb\x5a\xf5\x5e\xe7\xb9\x71\x91\x96\x68\x26\xd2\x9f\x08\x48\xeb\xe6\xc2\x7d\xb3\xbb\x08\x56\xa3\xa2\x92\x98\x4d\xb4\x3f\xde\x44\x90\x43\x50\x45\xb0\xef\xed\xdd\x1d\xc3\x41\x40\x1d\x74\xef\xec\x11\x4d\xa2\x5a\xa7\x98\x23\xf9\x23\x1d\x84\x44\xa2\x6b\xf6\x6a\x3c\x28\x58\xb1\x0e\xd7\x03\x26\xa2\xf3\x1a\xa1\xbe\xf2\x09\x5d\xbb\x6c\xc8\xc9\xc9\x93\xb2\x10\x9f\xcf\xce\x9f\x20\x97\x78\xfe\xe4\xcc\xfc\x5a\xbe\xeb\x2c\xff\xea\x3c\x07\xce\x4b\x33\x2c\x68\x1d\xce\xbe\xb2\xec\xf8\x57\xc0\xc0\x08\xb6\xbe\xdf\x75\x04\x0f\xc8\xea\xde\x1c\xb9\xaf\x1d\xb7\xab\xa6\xf1\x2a\x1d\xd6\xb4\x69\x3c\x4b\x5a\x75\x5e\xb6\xf2\x78\xc0\x9a\x7e\xf7\x09\x6c\xf6\x9e\x55\xf4\x51\x4e\x23\x4c\x24\x18\x94\xf7\x9e\x8e\x18\x03\x6c\x0c\xfe\xaa\xfb\x11\x2d\xeb\x1a\xad\x81\x7c\x25\x77\xf1\x6c\x77\x33\xc7\x4b\x53\xe3\x92\xaf\xd5\xdc\xdc\xda\x18\x47\xdf\xf8\x3a\xea\xdf\x07\x67\xce\x99\x8f\x9c\xd5\xba\x53\x85\x53\xe0\xe9\x73\x38\xc8\x7e\xde\x16\x8a\xd7\xbb\x7c\xc9\xd9\x63\xd4\xba\x39\x1c\x9d\x95\x11\x52\x15\xa9\x0b\xb9\xba\x65\xde\x7d\xbd\xc5\xcf\xad\x01\x36\x55\xd1\x56\x5d\x96\x1f\x78\x55\xe4\x65\xf1\x3b\x67\xde\xbd\x05\x61\xb1\xdd\x72\x38\x52\x76\xa6\xe4\xee\xcc\xd8\x58\x0c\x58\x38\xcc\x00\x53\xa7\x50\xa8\xfc\x83\xac\x2e\xb1\x8d\x15\xf3\xcf\x72\x0c\xbf\x34\xca\x7e\x53\xd5\x5e\x6c\x79\xf6\xcb\x34\xfa\xa6\xad\x5d\x4f\xad\xf9\x06\xd9\x96\x75\x8d\x97\x8a\x30\xcf\x73\x26\x1e\x93\xe0\x2b\x00\xda\x3b\xc1\x3c\xcf\xd8\xae\x61\xc5\xea\x83\x15\xde\xd6\xad\x1c\x97\xaa\x88\x8b\x25\x82\xa7\xe7\x1d\x81\xc0\x5a\x56\x97\x3e\xb1\x39\xcc\x84\x7d\xf3\xac\x94\x82\x33\xff\x49\x2c\xf2\xab\xf3\x27\x67\xf8\x03\x2b\x77\x54\x5c\xe4\x57\x3e\x89\x96\x90\x1d\x39\x51\x6f\x4a\x22\xb9\x57\x7a\x17\xd1\xfb\x6e\xce\x05\x36\xe7\xf8\x52\x5b\x9d\xba\x2b\x6e\x78\x69\x45\x24\x3a\x49\xbb\xd6\xbc\xd0\x57\xfb\x00\x1b\xa6\x22\x21\xb1\x8b\xe8\x63\xa6\x53\x2a\x5e\x16\xb0\x43\xdf\xe2\xfd\xa2\x3f\x16\x9b\xad\xf9\x70\x21\x6f\x3e\x14\xbf\x17\x62\xf3\xa3\xc9\x01\xc9\x85\x15\xa9\xf7\xaa\x7b\x66\xd2\x8a\xc1\x88\x4c\x5e\x2a\x3b\x09\x3f\x16\x93\x3b\xf5\xbc\x4d\xa8\xdb\x8f\xe8\x06\x69\xfc\x81\xd6\xb8\xbe\xc6\x6c\x73\x47\xee\x8e\x46\x33\x3b\x14\xc7\xd3\x6a\x36\x1d\x2d\xee\x97\x7b\xc0\xdc\xee\xf6\x8a\xa1\xfc\xa3\x18\x17\x7a\x50\x03\x1b\xb0\xef\x8e\xea\x32\x1e\x14\x28\x49\xc4\xfa\xf0\xe9\xef\x36\x3f\xd6\xaa\x21\x6b\x58\xd2\x3a\x71\x68\xb4\x39\xfc\x2a\x3a\x8c\x9a\xb7\x23\xb3\xb2\xaf\xf6\x2a\x11\x42\xf3\x1e\x6e\x2a\xa0\x07\x36\xa1\x5d\x05\x33\xef\x06\xdc\x35\x54\xe6\xc3\xc5\xe9\xbd\xb5\xf6\x03\x6d\xe1\x75\xdf\x53\x31\x5c\x0f\xfd\x13\x97\x65\xb1\xfc\xdc\x73\x4c\x1c\xc2\xd7\xec\x00\xa7\xc3\xb0\xd9\x62\xf9\x39\x34\x46\x94\xcb\xbe\x14\x55\x47\x5f\x46\x91\xac\x5c\xee\xeb\x42\xa0\x44\x75\x70\xfe\xec\x99\x2f\x85\x3f\x59\xea\xa9\x52\xe9\x72\xe2\x7f\xb7\xbf\xb8\x28\x79\xed\x67\x6c\x6f\xee\x22\x5f\x3b\xd2\xb3\x74\x9f\x99\x4b\xcc\x25\x4a\x12\xe6\x6b\x83\x16\x80\x3f\xd8\x54\x72\x2f\x56\xcf\xca\x62\xc7\xfc\xa5\x56\x82\x9e\x5e\xc8\x1b\xff\xa8\xdf\xe3\x45\x00\x59\x2f\x4b\x9e\x57\x38\xec\x0f\x88\xfc\x7a\xf5\x20\x4a\x1e\x2b\xdb\x8e\xff\x64\x89\x06\xd0\xbd\x9b\x1b\xda\xbb\x79\x98\x3f\xc5\x5b\x86\xe8\x52\x0d\x69\x79\x73\x88\x33\x7b\x17\x70\x3c\x9d\xeb\x3b\x82\xe3\xe9\xfc\x42\x56\x2b\x5e\xc5\xd3\xb9\xb9\x45\x3b\xc6\xdb\xb3\xe7\x17\xf2\xe6\xb4\xc6\x3d\x1d\x3b\x7d\x9c\x9f\x5e\xca\xdf\x4f\xef\xfb\xa6\xfd\x63\xee\xfb\xec\x23\xac\x8e\x1f\x0d\xfa\x48\x49\xa7\xd9\x3c\x47\xcb\xba\x71\x0a\x83\x8a\xe1\xe9\xd8\x76\x1e\x45\xab\xf1\x74\x6e\xae\x4a\x9e\xce\x77\x06\xbd\xc5\xf9\x45\x2d\xcb\xbd\xe2\x73\x38\x49\xa7\x73\x38\x41\xe3\xd3\x6f\xbf\xfd\xf6\xdb\xdd\x8d\x99\x84\x53\x73\xc6\xfa\x83\xfd\x22\x48\xef\x75\x3d\x20\x5f\x2c\xd5\xa2\xaa\xf3\x27\x6a\x05\xd4\xcb\x0a\x1f\x94\x7e\x3a\x83\x74\x43\xd1\xf8\x5f\x38\xfc\xd5\x0a\x36\x38\x9a\x07\xf6\xc7\xf6\x67\xd6\x0a\x2f\x57\xa7\x25\x43\xcb\x28\xa8\x43\xae\xd7\x35\x57\xaf\x71\x16\xdc\x5a\xdb\x2b\xd2\x7d\x5a\xa0\x39\x67\x3f\x55\xd7\xd3\x61\xf8\xd7\xe8\xf3\xf5\x0e\x2b\xab\x59\x69\x4c\xaf\x8e\x1a\xe8\xcd\x07\xec\x83\xa3\xe5\x69\x21\x41\x77\x7d\x14\x86\xdc\x4f\xc7\x20\xe4\x7c\xb5\x33\x02\xf4\x90\x99\x0a\x78\xec\x03\xae\x86\x84\xaf\x07\xab\xfb\x5f\xf7\x00\xc4\xec\xbf\xe6\xfa\x16\xf8\xeb\x7c\x17\xe6\xe6\x86\x87\xdc\x8c\xe3\x77\x29\x2f\x93\x3b\xf8\x1f\xcf\x0e\x68\x5d\xec\xe2\xaf\xf6\xd0\x63\x5f\xe3\xce\xd5\x33\xf3\x33\x34\x0f\xcc\x28\x2c\xf7\x33\x79\xb9\xdb\x2b\xbe\xc2\xcd\x1e\x04\xe1\xf0\xe8\xf5\x67\xff\x05\x5b\x36\x3c\xce\x1c\xae\xb1\x2f\xa4\x69\xee\x0e\x24\x52\x72\x37\x7a\xca\xfa\x5f\xef\x10\x6d\x7c\xb9\x02\x3d\x23\x98\xf7\x40\xf4\x4d\xdf\x48\x15\x7f\x91\x6e\xd5\x7a\x92\x23\x7a\x74\xb8\xc4\xb2\xcd\x71\xe9\x10\x05\x36\x4d\xdf\x2a\xee\x4f\x3b\xd0\x30\x29\xb8\xdb\xee\x21\x28\x9c\xbb\xde\xc6\xc6\x55\xb9\x13\xe3\x34\x0a\x64\xa2\x96\x53\xaf\x9d\xe5\xd3\x06\x9f\xe1\x1f\x00\xaa\x9c\xe8\x9b\xdd\x11\x9c\x5c\x28\xb3\xa0\xa5\x69\xac\xb9\x06\x05\xff\x7e\xa2\xeb\xf1\x10\x12\xda\xa6\xda\xad\x86\x50\xea\x0f\x50\x09\xba\xa3\x1b\xef\xf3\x1e\x59\xde\x9b\xb5\x6f\xf4\xac\x1d\x11\x75\x8f\xbd\x61\xab\xf7\x75\x10\x03\x4f\x76\xb3\xc3\x66\x04\x88\x04\x37\x0e\xb3\x00\x2e\x76\xcd\x0a\x56\xe9\x6b\x31\x0e\xf0\x2e\x59\xce\x6a\x56\xb1\x82\x69\xa7\xa0\x43\x78\x77\xd0\x12\xff\x17\xfa\x7a\xf0\xc5\x5d\xba\xa8\x17\x1f\xb2\x87\x8b\x43\xb3\x48\xed\x73\x46\x1e\x9c\xd1\x0f\x90\x23\x7d\x7a\xfa\xaf\x8c\x9c\x6d\xe6\x8e\x74\x10\xed\xfb\x61\x57\x09\xf9\x3c\x57\x79\x8c\x81\x27\x50\x33\x4a\xf9\xe5\x05\x47\xd5\xaa\x8e\x3c\x1e\xfb\xcb\xb2\x2e\x56\xf1\xf3\x47\xff\xeb\xd9\xf3\xef\xfe\xf2\xe2\xf4\xe9\x8b\xbf\x3c\x3f\x9d\xcd\x96\xeb\xd3\x6f\xff\xf2\xdd\x7f\x9f\x7e\xfd\xf5\xd7\xdf\x7c\xf3\xf8\x9b\xaf\xa7\xd3\xe9\xd4\x47\xd1\x31\x56\x38\x6a\xda\xe2\x38\x20\x2e\x95\x8e\xa5\x9d\xf2\x54\x2b\x5e\xe0\xd8\xcf\xb2\xb8\xf7\x4a\x3d\x8f\x07\x81\x57\xa3\xf9\xc3\xaa\x5f\x6d\x4f\xb1\x55\x98\x77\x2b\x49\x7f\x3e\xcc\xdb\x33\x53\x53\xe4\x40\x3f\xfd\x89\xea\x28\xde\x4e\xf9\xe9\x4f\x55\xa9\xf3\xe6\xcb\x25\xdf\xa9\xa3\x09\x68\x8d\x45\x4c\x9c\x6b\xaf\x1f\xf7\xfa\x5b\x6f\xdc\x50\x64\x68\x80\x81\x72\x0b\xbd\x60\xe9\x7d\xda\x3b\x6b\xfb\xed\xa9\xa6\x51\xe6\xa6\xcb\x51\x93\x6b\xc7\xb9\x9f\xba\x57\xc2\x86\x77\xc3\x99\x71\x6f\xcc\xd1\x30\xa8\x63\xaf\x9a\xbb\xa0\xad\x83\x9f\x71\xd2\xec\x22\x68\x61\x28\xd4\xa5\x8a\xa0\xbe\x70\x4f\x30\xa2\xfd\xde\x19\xb6\xb7\x54\xd1\x27\xfd\x91\xea\x6b\xd4\x56\xd0\xc9\xda\x27\xc4\x86\x7f\xdc\x3b\xe4\xe1\xbc\x7e\x52\xb5\x66\x7d\x78\xab\x50\x95\xd6\x59\x04\xe4\x38\xc5\x13\xb2\x73\x08\x80\x4a\x4f\x7d\x0c\xf4\xcc\x10\xd0\xcc\x1d\x68\x61\x61\x64\xf4\xdf\xc0\xd6\x0b\xf7\x30\x22\x0c\x50\x3d\xbf\xaf\x2b\xb8\xac\xad\x62\xdd\xd8\xa9\x1c\x5d\x64\xa9\x6f\x89\x46\xd9\xa4\x73\x4a\xd9\xa1\xeb\x2b\x98\xc9\x81\xc4\x23\x62\xb1\x3f\x51\x12\x6f\xbc\x89\xf7\x09\x74\x8e\xd3\x76\x42\x29\x27\x46\xcd\x39\x0e\xf4\x83\x0b\x94\x8f\x9b\xe8\x4a\x75\x5d\x34\xd0\x60\x41\xe1\xb7\x3d\xdf\xf3\x7b\x6e\xe7\x6a\x95\x42\xa1\x62\x18\xaf\x76\x7d\xe3\x93\x89\x8f\x45\x7c\x8a\xaa\x28\x3d\xa5\x68\x67\x2a\x82\x00\xdd\x87\x9d\xfb\x72\x05\x49\xfa\xb9\xfa\x17\x7c\x0b\x42\xe2\x36\xd6\x01\x31\xb7\xe1\xb4\x11\x06\x56\xfc\xb8\x6f\xe4\x0e\x15\x33\xd0\x11\x73\xf3\xcb\x12\xe3\x0d\xec\xb9\xee\x43\xef\xee\x2e\xd1\x45\xcd\xc6\x4e\x60\xbe\xd7\x52\x7e\xae\xad\x61\xec\x60\x41\x78\x57\xd3\x61\x0e\x1c\xac\x55\x63\x30\xd4\xfe\x85\x6e\x95\xd5\xe9\x29\x5e\x22\x19\x42\x5f\xb4\x6d\x94\x68\x5d\x4a\xdd\xb2\x84\x1a\x3e\x5a\xa2\xd2\x94\xda\x9b\x8b\x68\x4e\x25\x21\xd4\xab\x82\x00\xaf\x81\x47\x9d\x1a\x0a\x8d\x43\x40\x49\x5d\x67\xc7\x42\x4e\x30\x65\x96\x01\x73\xf8\x8e\x0a\xc3\x4e\xb5\x20\xb8\x12\xed\x2b\xbd\xd3\x4a\xbb\x2f\x68\x73\x86\x02\x74\x28\xee\x40\x10\xa7\xb6\x51\x1f\x21\xa8\xff\x4d\xe8\x10\xf0\x47\xa8\xe6\x68\x0d\xdb\xc0\x4e\x8f\x06\x77\x73\x75\xf7\xa1\x20\x8f\xc2\x29\x67\x30\xb7\x7a\xa6\x87\xfb\xea\x49\x95\xb4\x2b\x6f\xb0\x14\xe5\xc4\x38\x16\x43\x42\x3c\xba\x27\xda\x5b\xda\xbb\x92\xfa\x9a\xb9\x01\x7c\x98\xdd\x42\xcd\xe2\xf2\x20\x70\x97\xd4\x63\x4c\xa5\x53\x2d\x64\xb6\x40\xd3\xed\xaf\x11\xc0\xfd\xc3\x8d\x3a\x5a\x4b\x79\x74\x59\x5f\x7b\xcc\xc2\x1c\xdf\x24\xf8\x3f\xaa\x77\x40\x80\xa0\xe5\x00\x8f\x39\x6d\x37\x88\xbe\x64\xdf\xd4\x3b\xa2\x21\xaf\x98\x73\x4d\x91\xa2\x1c\x23\x54\x28\xb9\xeb\xed\x0a\x60\xa8\x6d\x9e\x0a\x96\xf7\x40\x31\xed\x6f\x5f\x1c\xa1\xd9\x47\xa6\x1f\x78\xef\xfa\xb1\xa6\xc8\xf5\x36\x9f\xe9\x2d\xea\xe8\x24\x72\xad\x6b\xa8\x7b\x57\xbf\xef\xdd\xbe\x9d\x9e\x16\x4d\x23\x7b\xc2\xf7\x9c\xa2\xf5\xba\xbe\xa9\xfc\x7e\xb0\x52\x68\xee\x6c\xd0\x48\xad\x6d\xe2\xdb\xbd\x92\xa7\x75\x46\x79\x6f\x7b\x11\x8a\x37\x86\xe2\x06\x02\x34\x30\x99\x50\xf3\x86\x5b\x66\xdf\xd9\xb2\xef\x75\x88\x7e\x23\xfc\x17\x30\x61\x88\xa7\x9e\x2a\xfa\xab\xa2\xcf\x15\x3b\x4b\x17\x6a\x51\x2d\xc4\x62\x9d\x9d\x6d\xe8\x1b\xc5\xce\x16\xd5\xd9\x86\xbe\xfe\x13\x91\xd7\x1a\x7d\x28\x61\x00\xb6\xdf\x4c\xfe\xbc\x81\x0c\x98\xf4\xc9\x24\x0d\xc3\x54\xe2\xc7\xb7\x08\xf4\xf6\xb6\xe1\x81\x4c\x9b\xbe\xeb\x7d\xc5\x3e\xcc\xfb\xbb\x18\xce\xe8\x71\x58\xec\x2e\x8f\xc3\xf5\x82\x57\xa5\x2a\x0a\xb8\xfe\xf8\x2c\x6c\xa9\xb7\xa7\xfd\xfa\xfe\xe4\x41\x06\xa5\xdc\x2d\xb2\xab\xe4\xee\xcf\xf6\x0a\xf2\xfe\x51\xaf\xde\xf7\xeb\xeb\xef\x37\xa8\xe0\x65\x71\xa3\xf7\x19\x1d\xed\xa8\xaa\x6e\xef\x10\x19\xf1\x8c\x29\x8b\xf6\x4d\x42\x77\x85\x0b\x6e\xa2\x7c\xb5\xc2\xb0\x3a\xf7\xa9\xfd\xf0\x62\xb9\xe9\x11\xf8\x1f\x1b\x0d\x05\x01\xfa\x2a\x0f\xef\x2e\x24\xf7\x4f\x28\x1a\xce\xe0\xbc\x20\xc6\xc7\x6e\x84\x46\x23\x89\xb3\xa5\xcd\x32\x3a\x0d\x07\x21\x07\xd4\x3e\xed\x8d\x4e\xce\xf8\x14\xe8\xc0\x02\xe1\x4e\x07\xe9\x9d\xd7\xe7\xf9\x3c\xb7\xb1\xc3\x71\xd0\x79\x46\x2b\x36\x8c\x6d\x14\x8a\xae\x62\xed\x2c\xe7\x24\x68\xb7\x39\xeb\x86\xf0\x5c\xdf\xa8\x11\xc3\x3f\x4d\x2e\xe2\x25\x9c\x4c\xe9\xcb\x33\x89\xe3\x1f\x7a\xe2\x4f\x0a\x2c\xfc\x64\x1a\x04\x61\x35\x61\xfa\x6d\xee\xd4\xdd\xde\xaf\x5c\x8d\x5a\xe6\xfc\x7f\x59\x0d\xa0\x49\x87\xe0\xd4\xdd\xef\xf5\x7f\x6b\x8d\x9c\xfe\xfd\xbf\xbd\x4c\xe3\xab\xa4\x3d\xf4\x47\x96\x0a\xad\x90\x2b\x56\x75\x71\x44\xed\x27\x7a\xb4\x76\xc8\x4d\x9a\xd5\x8b\x7d\xbf\xbf\x80\x4a\x6e\x36\xe5\xd1\x02\x3a\xb4\x92\x59\x06\x4b\x6f\x8c\x5d\x3c\xde\x2d\x1a\x13\x89\xa6\x20\x9c\xcd\xa1\xcd\x22\xfa\x2b\x41\x1c\x0a\xe3\xe8\xe6\xd0\xbe\xfd\x88\x59\x48\xa7\x9f\xbd\x85\x14\x83\x85\xa4\x18\xf9\xfa\x30\xb0\x86\x73\x7b\x48\xba\x6b\x09\x74\xe0\x02\xdb\x06\x06\x6d\xe9\x2f\xb8\x62\xd2\x44\x84\x2c\xa2\x6d\x5e\xeb\xe6\x15\x49\x8a\xde\x70\x14\x89\x8b\x6e\xc0\x4a\x5f\xcf\x88\x57\x29\xfd\xb3\x69\x9c\x19\xc3\x2b\x88\xc2\x7e\x7f\x91\x0e\xfa\xd4\xb1\x33\xfe\xa7\x4f\xed\xb7\x4f\x9f\xfc\x21\x98\x0e\xde\x59\xff\xb5\x69\x38\xaa\x06\x12\xdf\x8f\xbf\x58\x6d\xe7\x4f\x6c\x47\x75\xe4\xe2\xa1\xa9\x3d\x74\xda\x47\xb0\x12\x6c\x4a\xab\x5e\x04\x68\xe7\xca\x60\x74\x1e\x82\xfd\x20\x32\x77\x1f\x40\x69\x9b\xfc\xe5\x0d\xd0\x82\xb8\x02\xd0\x1e\x8b\x55\xd4\xbb\xfa\x9b\xf7\x75\x07\x96\xd5\xc6\x50\xfa\x03\x9c\x42\xda\x98\x21\x43\x40\x1b\x3b\x87\x0c\x59\x25\xe7\x76\x44\xee\x70\x24\x9a\x3f\xba\xb0\xd7\x82\xe7\x55\x5e\x86\x84\xc4\xda\xcf\x8e\x31\x99\x48\xe6\xfb\xf1\xd1\x85\xc7\x32\x41\x57\xeb\xd8\x61\xf3\x24\xb1\x82\x80\xcb\x7c\x17\xca\x31\x07\x73\xe7\x82\x6a\x3e\xc1\x0b\x18\x34\xff\x78\x95\x97\x48\x63\xa5\xd8\x51\x0c\xb8\x8e\x7c\x4b\x3f\xfd\x1e\x41\x08\x90\x65\x7e\xcd\x95\x5f\x98\x3b\xdd\x6b\xae\x07\x43\x25\xb5\x0a\x44\x0f\x63\x26\x69\x88\xd5\x9a\x44\x69\x11\xa5\x6c\x63\xd2\xf4\x7a\x22\xc7\xba\x21\xbf\xd8\x87\x4d\xdb\x07\x0c\x5b\xb0\xe1\x2a\xec\x7a\x80\x5d\x48\x44\x1c\x0a\x26\x8d\x3a\xf2\xf8\x3a\xe2\x44\xb4\xe0\xf4\x06\x6f\xec\x8e\xf5\x8c\x09\x98\x31\xa0\x23\xfb\x5c\xbb\xed\x57\x7c\xa7\x0d\x20\xe2\xbb\x9e\x73\x1b\x77\x38\x1d\x8c\x16\x88\x2e\xf4\xbc\xed\x52\xff\xa6\x6f\x95\xa8\x58\x87\x29\x39\x58\x17\xac\xe3\xfa\x7a\x17\xa1\x30\x1e\xe9\x76\x6b\x0c\x9a\xd2\xf7\xbf\x92\xcc\xd8\x6f\x9c\x4a\xc1\x5d\x47\xa1\xe9\x79\x41\x73\x26\x75\x54\x88\x54\xdf\x8a\x52\x4c\x66\x71\xe5\x9c\xa8\xe7\x45\x52\xc7\x32\x29\xe2\xe9\xbc\x36\xf7\xfe\xe2\x49\xa5\xef\x24\x0e\x3d\xd1\x36\x16\x04\x7b\x0f\xe3\xa2\x84\x0e\xed\xea\xa8\xb3\x13\xd1\x6a\xb3\x63\x3d\x4e\x6d\xd0\x3d\x6a\xc3\x8e\x0e\x92\x8e\x47\x99\xfd\x62\xe4\x71\x7a\xe5\xc3\x5e\x00\x2c\x5f\xee\xd4\xa6\x92\xfb\x9d\x6f\x02\xf9\xc3\x6c\x87\xc2\xec\x23\x2a\x3b\x03\x97\xdc\xda\x89\xda\x63\x2b\x87\x69\x56\xf7\x45\xf5\x35\xf7\xcc\xd8\x09\x36\xfb\xca\xca\x4c\x46\x1d\x7a\x0b\x38\xc4\xc3\xaa\x73\x7c\x73\xac\x78\x97\xc0\xb8\xb5\x9d\x02\xcc\x84\x50\xea\x4d\x3b\x28\x68\x9a\x70\xb0\x88\xec\x74\x46\xa8\x3c\x1c\x0e\x74\x48\xf9\x0f\xee\x3e\xee\x47\xcc\xe1\x41\xf0\xd8\x63\x2c\x0f\x82\xff\xd6\x3f\x8f\x3c\x27\x6c\xd7\x68\xc8\x08\x38\x61\x12\x43\x5e\xdb\x2b\x69\x10\x17\xe7\xc6\x86\x4b\x9b\xdd\x87\x9c\x34\x4d\x78\xec\x26\x8a\x28\x11\x63\xd4\xe0\x36\x15\x99\x86\x07\x34\xf3\xc7\x73\x30\x82\xb3\x4b\x5b\xa8\x08\x92\xfc\xaa\xe2\xa7\x0a\x71\x0f\xec\xc9\xa2\xdb\xba\x45\x10\x18\x20\x01\x14\x89\x3b\x18\x18\x54\x92\xc8\x58\x63\x36\x77\x1b\x09\xd2\xe2\x48\x15\x4b\x62\xc1\xab\xc2\x0a\xeb\xb6\x42\xac\xa9\xc6\x9a\x2a\xa8\x0b\xf1\x80\x8c\x71\xae\xdd\x18\x4f\xb4\x9a\xf8\xc0\x63\x1a\xd1\x57\x9f\xdd\xc1\x5e\xdc\xc3\x36\x51\xd7\x88\x4c\x87\x1f\x0d\x02\xd5\x9d\xff\x88\xe4\x86\x97\x30\x92\x41\xf0\xd1\xca\x65\x6e\x60\xfe\x5a\x47\x8a\xb1\x09\x7c\xa7\x82\xe0\xad\x6a\x1a\xef\x93\x6a\xd3\xb4\xfb\xf8\x4c\x0b\xf6\x3b\x49\xac\x6f\x9c\x4b\x4e\xfd\x89\x20\x19\xb3\xb9\xcc\x7a\xe1\x5a\xeb\x80\x96\xc3\x1b\x3e\xdf\x02\xb6\xac\x88\x86\x3d\x83\xe6\xf0\x9e\xbb\xbb\xe3\x5d\x63\x2e\x68\xb6\xfb\xbf\x33\x00\x09\x02\x63\x17\xa2\x65\x73\xee\x36\xe6\xd4\x5a\xa7\x74\x3e\xc0\xbd\xab\xea\xf8\xa8\x9d\x89\x11\x71\x9a\xbc\x4c\x10\xaa\x0e\x87\x83\xe6\x42\x5f\x16\x37\xf1\x9d\xbf\x96\x95\x1f\xfb\x5b\x75\x59\xbe\x94\x95\x4f\x4d\xe0\x93\xd8\x31\xd3\x3b\xe6\x59\x87\x97\xb5\x8c\xef\xa8\x5a\xef\xa8\x5a\xef\x28\x7b\x15\xf0\x49\x8e\x96\x9f\x75\xd3\x78\xfd\xad\x42\xb5\x9a\xff\x68\x61\xa5\x4d\xb2\xbb\x85\xd0\x4a\x43\x65\x07\xb8\x12\x05\x9d\xf2\x08\x70\x8b\x58\x5f\x7c\x1a\xcb\x6e\xd7\xc8\x6e\xd7\x40\x91\x6e\xd7\xe8\xcc\x7a\xb4\x76\x05\x8d\xbb\xf2\x9f\x3d\xaa\x54\x7e\x81\x04\x55\x77\x5a\xa9\x04\xe5\xf6\xdf\x0b\x15\x2a\x3a\x9b\x92\xf8\xf5\xb1\x9b\x6b\xd3\xfc\x76\x9c\x18\x04\xda\x6d\x3a\x99\xc6\x18\x0a\xfd\x40\xe8\xaf\x8a\x1d\x41\x93\xa3\x1e\x52\x9a\x06\x3d\xde\x8a\xf1\xe8\x06\xe8\xc3\x8b\xf7\x56\x03\x5c\x7f\xee\x05\xf9\xc3\x0d\x22\xf0\xa6\x58\x71\xe8\xae\x01\x1f\xd9\x89\xfa\x6a\x54\xb3\xc9\xcf\x16\xd7\x93\xb3\x4d\xef\x8e\xef\x56\xba\x67\xcb\xba\x21\xec\x34\x55\xd3\xce\xf3\x7c\x34\x0f\x1b\x1b\x63\x0f\x64\xdb\xe0\x33\xa3\xe5\xe1\x80\x4a\x54\x1c\x8e\x57\xae\x88\xa7\xa3\x39\xd0\x82\x24\x62\xc4\xa7\xcb\x11\x66\x8f\x14\x97\x34\x3f\x1c\xed\x1f\x4b\xc7\x01\x21\xf3\xa5\x39\x1e\x6d\x0f\xc0\xc1\x8e\x38\x74\x4f\x13\xb3\xd1\xbf\x04\x27\xe3\x68\x05\x5d\xdd\xc2\xbe\x77\x1d\x53\x24\x7e\xaa\x82\xe0\xa9\x32\x3b\x0b\x95\x99\x07\x42\xb1\xd9\xa7\xc7\xe0\xd8\x21\x86\x31\x7f\xb9\xce\xe3\xb6\x68\x9a\x3e\xfc\xe1\x77\xa4\x20\x7a\xd7\x70\x6b\x03\x84\x0e\x4a\xf1\x1a\x33\x8b\xcb\x74\xf0\x24\x4d\x1d\xea\x70\x29\x82\x1d\xf9\xfc\x55\x24\x11\xb1\x32\xd0\xd9\x5f\x99\xa8\x58\x8d\xc0\x02\x6a\xee\xc6\xd2\x97\x52\x56\xab\xfa\xc8\xea\x1c\x47\x3b\x77\x16\xf3\x0b\xb1\x0f\x7d\x74\xc9\xd2\xfd\xef\x05\x3f\xc4\xee\x59\xfa\x38\xd2\xa2\x53\x36\xc0\x39\xdd\x26\x19\xad\xbe\xed\xc2\xb8\x4b\xa2\xd2\xe4\x9b\x5e\xc9\x03\xed\x81\x8c\xb1\xc8\xe2\xab\x42\xbb\xe6\x8e\x02\x4f\x0b\x03\xbe\x0e\x08\xe5\xcd\x62\x0d\x0d\xed\xbe\x4f\x7d\xe3\xcc\xea\x6b\x8b\x2b\x3f\x1b\xb8\x84\xf5\xa8\x1e\x95\x1d\x43\x8f\x05\x51\x5f\x8b\x34\x86\x44\x87\xa2\x7e\xbe\x57\xd2\x27\x80\x97\x8c\xc6\xed\x00\x5c\x99\x73\x98\xf6\x8d\x82\x11\x73\x98\xce\xa1\x21\x30\xf5\xeb\x6a\x39\xd6\xb1\xee\x80\x81\x8e\x0d\xb1\x7d\x7b\xc6\x0e\xbc\x70\xbf\x6e\x99\x1c\xdb\xbe\x31\x19\xef\xef\x49\x6d\xd5\x7c\x7f\xad\x3d\xcb\x93\xa6\x51\x63\xa4\xf6\x78\x66\xa6\x26\xbe\xff\x1f\x83\x3e\x38\x06\xc9\xba\x27\xed\xe0\x3a\x62\xfb\x9e\x03\x8d\x8f\xc4\x59\x56\x68\xa5\xd4\xe7\x97\xbe\x70\x83\x77\x2f\xa3\x26\x3a\x2d\x23\xa8\x17\xc2\x1e\xaa\x3e\xf5\x2b\x9e\xaf\xde\x89\xf2\xd6\xa7\xfe\x65\x7e\xa3\x03\x3b\x02\x0d\xc2\xcb\xf2\xc3\x2e\x5f\xa2\xa3\x15\xbe\xbd\xd7\x06\x38\x50\x44\x5e\x7f\xd8\xe5\x02\xd2\x65\x69\x9e\xf6\x35\x7f\x9b\xef\x7c\xea\xaf\xab\xfc\x92\x7f\x87\x66\x60\x98\x01\xe1\xfa\x85\x81\x6b\x77\xd9\xdb\x35\x87\xb3\x4e\xb3\xf1\x3d\x0e\x19\x65\x10\xfd\x59\x35\xb6\xda\xdd\x8c\xbe\x2c\x6e\x5a\x13\x6f\x9f\x8b\xa5\xc4\x1e\xba\x23\xd5\xc4\x1c\xf5\xad\x7b\xc2\x51\x0f\x7a\x12\x83\xe3\x0d\xd1\xd3\x0d\x58\xc1\x85\x82\xb3\xdb\x9a\x51\xf7\x79\x26\x6e\x79\x26\x94\xe6\xb4\x5b\xc4\x1d\x85\x31\x60\xd7\xa3\xe8\x37\x0f\xc0\xcd\xee\x15\x83\x1c\x39\x53\x1b\xb6\x3c\xf1\xa5\xf0\x63\x43\x60\x1e\x88\xd1\x1d\xbd\xfc\x92\x6e\x08\xb5\x3b\xdf\x41\x8e\xcf\xfc\xf6\x8c\xbe\x37\x79\x2f\xe5\xbe\xe6\x78\x0f\x19\xbf\x51\x97\x5c\xec\x49\x83\xd6\xbe\x67\xf4\x47\x93\xc3\x98\xf5\xea\x9b\xcb\xf0\xbf\xdc\xab\x8b\x72\x5f\x91\x07\x67\xf4\x67\xcc\x94\xfe\x12\x65\x0f\xf1\x42\xa2\x28\x8c\x26\xa4\x21\x0f\xce\x90\x60\x40\x8b\xe2\xbb\x4d\x29\x2f\xf2\x32\xbe\x43\x5d\xc6\xe0\xe0\xd2\x71\x96\xd0\x69\xab\xf3\x6b\xb1\xd1\xe1\xe8\x25\xbd\x75\x8c\x02\x90\x4b\xb9\x35\xe6\x20\xd1\x16\x0f\x88\x0a\x83\x8f\x55\xb4\x62\xa5\x4d\xa1\x92\x95\xad\x5f\x37\xa1\x55\xb4\xd9\x17\xb0\x25\xf5\x03\xd4\x07\xbf\x93\x09\xa1\x61\xcd\x6e\x75\x27\x6b\xe0\x19\xbb\x37\x7d\xb7\xf2\x9a\xdd\x9a\x3a\xe1\x6b\xf7\x36\xb6\x5c\x86\x63\x5d\x2a\x2d\x07\xd5\x92\x4e\xac\x2c\x52\x55\xb1\xd9\xf0\x0a\x83\xcc\x68\x01\x47\xa2\xe2\xf6\xeb\xaa\xa8\x77\x48\xb2\x69\xff\xbe\x75\xc4\x4b\x7e\xe9\xf8\x8c\x1d\xa8\x4e\x62\x9c\x50\xc1\x42\x71\x2c\xa9\xf7\xfd\x8c\xee\x5b\x6b\x86\xf9\x1e\x18\xfd\x9c\xfd\x6c\x2e\x28\x17\xe9\x3e\xd3\xfe\x37\x5b\x76\xc9\xf2\x74\x96\xd1\x0d\x0b\xf3\xf4\x91\x09\x65\x6a\xe2\x41\x44\x36\x20\x04\xa1\xdb\x20\x08\x97\xac\xed\x20\x9e\x6a\x79\x99\x6e\xb3\xa6\xb9\x3b\xd0\x2d\x0b\x65\xb2\x44\xc3\xfe\x4d\xae\x90\xfb\x88\x97\x11\x10\xe0\x26\x02\xdb\x96\xde\x5f\x78\xc7\x1c\xc9\x14\x32\x6a\x5b\x2a\xab\x62\x83\xb5\x5c\x6a\xab\xae\x82\x9a\x75\x8c\x2b\x0a\x0b\x15\xeb\x75\xa3\x76\x45\x63\xd9\xbf\x43\x4b\xea\xa9\xee\x68\xdf\xe3\x8b\x1c\x25\xa1\x40\x5f\xa0\xc3\x4d\xbc\x31\x01\x2f\x22\x9f\x1c\x68\x49\x68\xb8\x62\x75\xba\x85\x39\x32\x4f\x78\x13\x73\x3b\xc0\x67\x72\x2f\x14\x9b\xd2\x25\x9c\x8a\xfb\x5d\x10\x98\x87\x36\x2e\x1a\xdd\xd0\x35\xf0\x3d\xde\x0c\x85\x23\xf9\x6a\x85\x86\xf4\x6f\x8a\x5a\x71\xc1\xab\xe4\x38\x29\xdc\xd2\x35\xf5\x66\x24\xe6\x7d\x6b\x7d\x3e\x34\xd6\xf7\x27\x5b\xba\x26\x70\xd4\x42\x1d\xb0\x2c\xf0\x6b\x5b\xde\x11\xba\xb3\x30\x6f\x61\xbc\x9f\xc0\xf4\x0f\x21\x54\x26\x2b\xeb\xf5\x3d\x18\xda\x64\x42\xa7\x74\x47\xe2\x95\x16\x3d\xed\x34\x26\xc5\xc5\xd3\xfb\x16\x66\xc4\x9b\x92\xb9\x71\xea\x3c\xf6\x4f\x1f\xc6\x99\xa4\xa3\x3b\x19\x56\xde\xd8\x03\x86\xc0\x67\x0d\xb6\xf5\x25\x02\xdd\xa5\xdd\x8d\x26\x22\x8a\xb6\x25\x1a\x81\xf7\xb2\x8b\x8f\x52\x9a\xdb\xc4\xeb\x16\xe4\x55\x5a\x1a\x90\x5f\xb1\x0d\xab\x01\xe4\xb7\x2c\xac\xbf\x00\xf2\x2b\x1b\x17\xf2\x08\x70\x57\x1a\x70\x57\x2c\xac\x92\x75\x1f\xea\xd7\x2e\xd4\xaf\x00\xb6\x31\x37\x8a\x2b\x6b\x0c\x05\x3c\x08\xb6\xba\x58\x44\xc4\x9f\x6c\x0d\xfc\x2d\x16\x51\x98\xc4\xd1\xc3\xc5\x22\x6a\x88\x4f\x26\x7e\x08\x4f\x0f\x88\x4f\xe8\x9e\x49\xb6\x6b\xef\x73\xd5\xfb\x79\x97\xca\x8c\x7a\x45\x10\x6c\x3c\xc6\xf2\xc8\xee\x9a\xa6\xc1\x20\x04\xb0\xcc\x98\xae\xe1\xa0\x0e\x02\xaf\xd6\xb0\x9f\x47\x2d\xe8\x93\xa6\x01\x3a\x15\xf3\xd9\xdd\x14\x04\xa1\xff\xf0\xa1\xaf\x6f\x49\xf3\xba\x74\x82\xc0\x64\x40\x46\xd2\x19\xa1\x6e\x99\x5d\x1f\x86\x4e\x4f\xe9\xda\xb0\xbf\x41\x60\x9f\x5a\xe3\x25\x42\xe6\xfb\x20\xf0\x76\x9d\x25\xe0\x3a\x52\x3c\xaf\x56\xf2\x5a\x40\x76\xfb\x6c\x0b\x6c\xe9\xa5\x45\xbb\x66\x5b\xb5\xcc\xb5\xde\x19\x9c\xae\xba\x2c\x56\x79\x0e\x93\x4f\xba\x00\xd7\x2b\x74\xd2\x20\xed\x7a\xea\xf2\x50\x74\x02\xe0\x81\x00\x0b\x50\x8d\x47\xfc\x8b\xcb\x9d\xba\x7d\x87\x36\x13\xe1\x92\x04\x81\xbd\xdf\xc8\x36\x72\x6c\xc3\xe4\x6b\x38\xf5\x31\x3e\xb0\x41\xf0\xdd\x8e\xf8\xd2\xb9\xc6\xd2\xa2\x69\x5e\x01\x44\xee\x8d\x13\xac\x30\x61\x65\x90\xc7\x05\xc0\x12\x74\xe3\x7e\x6c\xd7\x0f\x73\xb4\x6f\x0e\x18\xc7\x29\x1a\x5e\xee\xd1\x5c\x18\xaa\xa7\x8f\x91\xe5\xe9\xb4\x39\xff\x3d\x78\xf7\x7e\x34\xa8\x71\x3b\x39\x3e\xa7\x60\x06\xb6\x9d\x1a\x36\x42\x05\x6c\x10\x84\x1b\xb6\x75\x1a\xa5\x5b\xb6\x69\x6d\xdc\x36\x66\x27\x11\x5a\x33\xa7\x68\xac\xd5\xec\x06\x95\x09\x26\x5c\x83\xde\x44\xe0\xfd\x87\x4b\x15\xe9\x65\xdd\xd2\x23\x63\x4a\x80\x6d\x42\x45\x54\xd4\x1f\x75\xe7\x98\x4c\x1e\xc5\x8f\xa9\x33\x0d\xcc\xc1\xe7\x6e\xfa\xa7\x8a\x33\xe7\x35\x19\xdd\x8b\x9b\x3f\xdc\x8b\xb1\xbe\x81\x21\xaa\x78\xbd\x2f\x15\x53\x54\x44\x3a\x3e\x60\xd3\x84\xf6\x91\x15\x68\x4e\x88\x04\x5b\x85\x57\x71\xf5\xe4\xf0\x15\x45\xf1\xd9\xfd\xa7\xa2\x6c\x1a\x6f\x69\xa7\xbf\x69\xda\x47\x43\x12\x14\xb4\xd2\x1b\x41\x2b\x0f\x3c\x0c\x3c\x11\x09\xa9\x1d\xa8\xb4\xe9\x6c\x51\xff\x5c\x88\x95\xbc\x0e\x0b\x62\x6f\xdb\xef\x9f\xd1\x70\x2e\xdb\x35\x2f\x27\x5b\xd8\xde\x7b\xb6\x77\x83\x22\xce\xf7\xf3\x41\x8a\x39\x12\xf6\x84\xae\xd9\x7e\xbe\x66\x8c\x85\xc5\xf0\x2a\x84\x57\x24\x08\x4c\xbe\xb5\x7b\x0f\x5f\xd3\xac\x4d\x55\xba\x63\x4d\xc3\xf5\x5d\xcb\x3b\x36\x9d\x87\x7b\xb6\xc2\x2b\xb8\x49\x10\x78\xb0\xba\xef\x2b\xb9\xcb\x37\x18\x4e\xf1\x83\x92\xbb\x1d\x5f\x85\x64\x4e\xf4\x76\x60\xbb\xf3\x59\x52\x3a\x34\x06\x0c\x25\x67\xa1\x6b\xa5\x6b\x77\x23\xfa\x22\xa4\xba\x5c\xe6\x9c\x31\x7b\xea\xeb\x9d\xec\xa3\xc0\x33\x37\x33\xbb\xa7\x15\xa1\x39\xab\x83\x60\x9f\xd6\x18\x83\xd7\x58\x03\x69\xb3\xed\x70\x4f\xda\xbc\xfd\x42\x26\xb8\x8d\x88\x76\x15\x36\xfd\x5c\x0f\x3c\xc4\xa3\xcc\x74\x7b\x4b\x71\xa5\x60\x78\xe6\xf3\x7b\x9d\x19\x06\x17\x04\xa1\xb7\x8c\x3e\x99\x09\x83\x35\xb7\xcf\xa6\x95\x95\x0e\x2e\x6a\xdb\x22\xc3\xae\x15\x24\x08\xea\x20\x28\xd2\x6d\x36\x06\x01\xac\x80\x01\xad\x83\x20\x84\x07\xed\x40\x40\x47\x28\xd2\x2d\xba\x6f\x42\x2d\x21\x31\x76\x47\x97\xe4\xee\x30\x92\x53\x75\xb5\xad\x5b\xf5\x94\xdd\x17\x07\x8c\xcc\x82\x74\x6c\xdc\x8f\x5d\xd4\xd6\xb4\x2e\x6e\xc2\x36\x38\x51\xeb\xc9\x0e\xb4\xd6\x7e\x2c\x68\x41\xe9\x2c\xb0\xd6\xe9\xf7\xd7\x98\x5b\xd5\x2b\xc6\x36\x3a\xda\x59\xed\xe7\x3b\x8c\x12\xb0\xd7\x01\x5c\x79\xb7\x25\xf4\xc6\xc5\x9a\xbd\x25\x2c\xe3\x73\xd3\x7f\x58\x0b\xe7\xd5\x51\x80\x9b\xe3\x48\xef\xaf\xba\x6b\xd3\x50\x5c\xb5\x9b\x15\x08\x4b\x01\x90\x2e\x59\x8d\x97\x6d\x02\xa4\xf3\x7b\x21\x1d\xa3\x4c\x46\xcb\x7d\x05\x1b\xc6\xf4\x4d\x1a\x4e\x00\x6a\x29\x98\x6c\x9b\x49\x73\xa7\xba\xef\x2f\x2f\xf9\xaa\xc8\x15\x1f\xaf\x37\xf4\x78\x0f\x23\x36\x4d\xff\x5d\xe3\x83\xc2\x21\x11\x30\x2e\xae\x69\xeb\xdd\xc5\xaf\xac\x80\x49\xcb\x55\xce\x0a\xfc\xa1\x15\x0b\xc3\xa3\xd9\x2e\x5a\x72\x24\xd3\xde\x40\xba\x7c\xd3\x14\xb6\xd7\xc4\x80\xb5\x19\xd4\xde\x68\x13\xb0\x31\x83\x5a\xdb\x5d\x85\xb1\x28\xfa\xdb\x8a\xea\x30\x52\xce\x20\x43\xd2\x99\x52\x2e\xa3\x9d\xac\x95\x5d\x31\xa0\xd0\xdd\xf7\xde\x0a\x52\xde\x41\xac\x9d\xd0\xfb\xdc\x1b\x3a\xf8\x14\x7d\x72\x87\x96\xc0\xc7\xe1\x2a\x21\x70\x05\x41\xe9\x1a\x4e\x78\xdc\xc8\x12\x9b\xc6\xd7\xee\xb6\x5e\x1b\x65\x52\xab\xd4\x4a\x0f\x21\x6f\x5e\xb2\xb2\x7f\xd1\xfb\xb6\xa8\xad\x81\x49\xaf\xca\xb2\x55\x33\xa3\x17\xc7\x58\xc5\xc6\x9e\x4a\x47\x55\x9a\xef\xad\xed\x16\x13\xda\x6a\xab\x68\xa9\x37\xb4\x6f\x91\x69\x95\x69\x75\x57\x88\x8f\x45\x8f\x6b\x4a\x96\x2a\xac\xa8\xb6\xf5\xc0\xb3\x3c\x2c\x51\xb4\x61\x14\x02\xe6\x9b\xb9\x87\xa7\x6c\xef\xe1\x21\x58\x6d\x10\x48\x7b\xe9\xca\x5c\xb6\x34\x5f\xad\xd3\xee\x60\xf9\xe3\xb2\x9b\x7b\x79\x68\x91\xc9\xfe\x89\x18\xcf\x8e\x8d\xb5\x25\x6c\x7c\xdd\x3d\x39\x10\x8a\xd1\x90\x6e\x8e\xfc\x6b\x5c\x32\xa3\xbd\x07\x65\xee\xc6\x4a\xd1\xd3\x46\x25\xe3\xc6\x7e\x18\x10\x94\x16\xcb\x14\x19\x5a\x05\xe7\xd6\x16\xc4\xf9\xc0\x72\xf6\xde\x1c\xa2\x05\xd1\xa6\x5f\x28\x3f\xd1\x8a\xab\xef\x06\x9f\x3e\xf3\x5b\xa3\xd1\x3a\x00\x81\x90\xa3\xfc\xaa\xd6\xdf\xf0\x31\x5a\x4a\xb1\xcc\x81\x46\xc7\x57\x63\x27\x86\xcf\x94\xb3\x1e\x71\x24\x09\x55\xed\x85\xff\x73\x05\x3c\x81\x60\x55\xaa\x32\xaa\x75\x1d\xa9\xc8\x3a\x9d\x64\x4b\xa1\xd8\x47\x26\xa3\xba\x5a\x1a\x97\x42\x38\xb4\xa9\x8e\x4f\xab\xbf\xba\x90\xd6\x96\x68\x3f\x3a\x04\x01\xe5\xd1\x25\x57\xf9\x5f\xf9\x2d\xf3\xbc\xf6\x99\xe6\x26\x3e\x66\x62\x1f\x30\x12\x4f\xcc\xb5\x52\xaf\x8e\xfd\xbc\x54\x7f\xe5\xb7\x27\x17\xda\xe3\xfb\x64\x99\x8b\x25\x2f\x01\x9c\x4f\x96\xaa\x2a\xe1\x53\x0f\xf5\x9d\xe0\xe6\x7f\xbf\xcd\x6b\x7e\x62\xda\x38\xc1\x6b\x64\xf8\xca\x64\x40\xb2\x13\x92\x75\x1f\x4f\x54\x71\xc9\x3f\xa8\xfc\x72\x77\x72\x55\xf0\xeb\x93\xeb\x6d\xf1\xff\x63\xee\xdf\xfb\xdb\xb6\x91\x85\x71\xfc\x7f\xbf\x0a\x09\x9b\x47\x21\x22\x58\x26\x29\xd9\x49\xa8\x20\x7a\xd2\x34\x6d\xb3\x9b\xdb\x36\xee\x6e\xbb\x34\x9b\x87\x12\x21\x99\x6b\x8a\x54\x49\x2a\x76\x2a\xea\xbc\xf6\xdf\x07\x83\x0b\x41\x8a\x72\xd3\x73\xf6\xfc\x3e\xdf\x3f\x6c\x91\x20\xae\x83\xc1\x60\x06\x98\xcb\xe2\x1a\x29\x5e\xb5\x87\x30\x51\x73\xe8\xed\xf6\xa4\x9e\x16\xd9\xbd\xc5\x75\x98\xf7\x16\x32\xe2\x73\xef\x86\x7d\xe1\x7f\xfc\xb9\x55\x05\x44\x01\xe9\x3c\x28\x54\x8e\x0f\xa1\x61\x80\x22\x3c\x51\xa9\x35\x33\x52\x95\xcf\xea\x47\xaf\x1c\xc9\x56\x30\x61\xfb\x3d\x31\xf0\x48\xf5\x4b\x50\x91\x9e\xf8\x29\x7a\x8b\x24\x66\x69\xf9\xb3\xfc\xfd\xa5\xb7\xcc\xb3\xb5\x9c\xd2\x9e\x30\x39\xfc\x59\xfe\xfe\xd2\xdb\x84\x2b\xf6\x33\xfc\xff\xa5\x57\x2c\x72\xc6\xd2\x9f\xe5\xef\x2f\xbd\x32\x93\xa5\xfe\x60\x78\x4d\x5a\x48\x53\x49\xd5\x48\x41\xd3\x91\xd1\xf6\xb4\x05\x03\x68\x5a\xdd\xf6\xa6\x23\xd9\x6b\xb8\x2a\xd6\x38\xd5\x66\x22\x49\xc6\xf7\x97\x56\x00\x66\x4e\xb4\xe6\x59\xf4\x85\xc8\x3a\xeb\xca\x86\x16\xd8\xc1\x14\x8b\x3c\x4b\x92\x37\x6c\x59\x0a\xc1\xb6\x91\x60\xe3\x53\x91\x4b\x94\x31\x72\x99\x09\x10\x4b\x0a\xc0\xa4\x6b\xff\xa5\x51\xfb\x65\xb6\x69\x54\x0e\xef\xad\xba\xeb\x3c\xc6\xbb\x2d\xa2\x29\x37\xf0\x16\x58\x36\xab\x95\x48\x0b\x63\x29\xc2\xb5\xa3\x8a\xc2\x58\xf0\xce\x01\x22\x55\x55\x28\x22\xfa\x69\xcc\x72\x06\xe1\xcc\xf1\xdc\x41\x38\x1b\x7b\x93\x41\x38\x73\x3d\x5b\xe0\x91\xdc\x93\xbd\x5d\x92\x85\x91\xb7\x53\x62\x02\x44\x49\x12\x8e\xc6\x77\x07\xf2\xaa\x36\xd6\xeb\x53\xba\xe0\xcc\xa9\xa0\x7b\x3c\x37\x84\x78\x33\xb5\x8f\x97\xc2\xd7\x38\xe9\x3b\x92\x5f\x64\x78\xb7\x07\x1b\x94\xfa\x64\x04\xc9\x23\x63\xb4\x27\xf3\x64\x9b\x77\xb6\x68\xd4\x49\xcd\x56\x79\x81\x99\xa5\x1f\xa1\x25\xd3\xd2\xeb\xa0\x99\x6c\x5b\xa2\x3d\x81\xfd\xf0\xbe\x86\xcc\xfb\x57\xc1\x50\xca\x2b\xd8\xc1\xa0\xbe\x29\x50\x6a\x90\xc2\x9d\xb4\x54\x37\x8d\x17\x37\x33\xab\x7e\x6e\xf5\x48\xf1\xed\x5d\x77\x4c\x8d\x3b\x5f\x39\xc3\x04\x85\x08\xef\xf7\xc4\x0c\x14\xee\xed\x4c\x86\xa5\xc9\x41\x4b\x7e\x45\x73\x4b\x9c\xd3\x8a\xd3\x30\x79\x25\x8f\x35\x78\x43\xe2\xda\x58\x65\xc5\x7b\x8e\x06\xf1\x7a\x9b\x34\x1c\xe5\xc9\x63\x3a\xc3\xe7\xa5\x3c\x88\x35\xf7\x19\x92\x12\x71\x2e\xcb\x48\x5c\x7c\x94\x75\x08\x03\x60\xb3\x5d\x6f\xb7\xdf\xe3\x29\x18\x56\x35\xe4\x04\x2b\x56\xc1\x0a\x3b\x0e\xb8\x05\x1f\x06\x8e\xcc\x8e\xc8\x44\x87\xf2\x94\xb8\x46\x31\x0e\x7f\xe8\xf7\xe6\x9b\x3e\x64\x6d\xdf\x9b\xb2\xae\x5c\x83\x41\x67\x32\x04\xa7\xe9\x3b\xad\x28\xa3\xf5\xc5\x2f\x9c\x5e\x94\x53\x2e\x3c\x98\xae\x55\x94\x8e\x9a\xe0\xa4\x7e\x81\x78\x12\xb9\x12\xb5\x1a\x99\xad\x5c\x68\x66\x29\x20\x77\x87\x7b\xe4\x18\xd6\x8b\xd3\xa2\xe4\xbb\x23\x5c\x25\x88\xdc\x33\x0b\xdc\xc0\xc1\xbd\x81\x40\xc3\xc6\x54\x50\x69\x61\x02\x32\xa7\xe4\x6a\x20\xe1\x10\xc4\x54\xeb\x19\xe8\x24\x2e\x10\x98\x38\x24\xce\xdb\xe0\xd2\xe9\x43\x63\x2a\xa4\xe1\xf0\x87\xd6\xfc\xcc\xb6\x5e\x22\xd9\x16\xd1\x01\x52\xca\xe3\x78\x40\x2d\x61\x7d\x20\x75\x8f\xf5\x26\x4d\xc5\x80\xd4\x2b\x9c\xef\xa5\xd9\xad\x85\x09\x68\x43\x80\x7e\xb3\xc1\xc0\xd1\xbe\x8d\x71\xf3\xa8\x48\x98\x6d\xab\x57\xc3\x55\xf7\xee\x70\xd4\x5e\x42\xba\xc4\x2e\x48\xbe\x47\x7c\xf2\x12\xd2\x44\xc6\x43\xbf\x90\x87\x93\x31\x3d\x06\xf9\x2d\x61\x1d\x82\xcd\xec\x50\xd2\xf1\x9a\xf3\xc1\xd1\x92\xb4\x44\x9f\x3f\xd3\x91\xc3\x71\xe9\xae\xb4\x6a\x55\xae\x7a\x1b\x32\x16\x61\x23\xc1\xac\x89\x4d\x84\x82\x5d\x3b\xcf\xd5\x05\x38\xb3\x5f\xb2\xf9\x7b\xe0\x4b\xb7\x02\x2b\x0e\xda\x34\x74\x1b\x76\xc0\x14\x71\x08\xe6\x1e\x82\xe7\xec\x33\xcb\x91\xe0\x95\x12\x16\x7e\x66\x2a\x19\xf6\x80\x03\xf5\x82\xd6\x99\x40\x40\x77\x8d\xfd\xa3\x24\xea\x48\xc9\x2b\xa5\x7c\xd1\x19\xc2\x0e\xb0\x38\xa6\xad\x7d\x1b\x0c\x28\xb4\xa0\x2c\xb9\x20\xab\x1f\x57\x55\xdc\x87\x20\x59\x7d\xc3\xef\xb3\x95\x93\x58\xca\xd6\x80\xa7\x99\x96\x98\x49\x5a\xcb\xf6\xdd\x3e\x3e\x89\x2c\x53\x62\x92\x1e\x28\x3e\x80\x1b\x26\xe9\x4a\x49\x2a\xb4\x9a\x83\x96\x19\xe0\x8e\x7b\xbb\xf9\xaa\x6d\x51\x38\x49\x9b\xf5\x1d\xad\x63\x2a\x6a\x0c\x23\xb9\x9e\x85\xec\x39\xfa\x24\xaa\xe6\xbc\x32\xc4\xff\x54\x09\x88\x1c\xc0\x50\xb3\x37\x42\x93\xbf\xd6\x92\xd6\x9b\xb0\xa4\x01\x75\xba\x8c\x14\x81\x67\xe9\x88\x77\xc8\x2b\xa7\xb9\xe9\x24\x20\x27\xa8\x31\x74\xb0\xef\x6f\x74\x55\xe7\xe8\xee\x17\x53\xc9\x9f\xe6\x0a\xb5\x05\x64\x8f\xd4\x0f\xb1\x06\xc1\x92\xf0\xf8\x4e\xdd\xac\xb1\xbe\x46\x68\x7f\x11\x88\x6f\xaa\x72\xc0\x59\x8e\x3c\xe2\x36\x6e\x8e\xd5\x26\x6e\x21\x35\x84\x56\x49\xc2\x44\xbf\x88\xba\x43\xf9\x1f\xcd\xb0\xbc\x23\x11\x99\x34\xd8\x5a\x7e\x29\x47\xc2\xdf\xd7\x3d\x28\x27\x32\x1c\x47\xb9\xef\x54\xf8\x7f\xd3\x5e\x03\xcf\x2c\xab\x9b\x0f\xab\x2a\x43\x3d\x57\x25\x1e\x4c\xb7\xe8\xf4\x46\x46\xbf\x12\x5d\x18\x7d\x12\xbf\xcd\x99\xd7\x1e\xdd\x80\xed\x6e\xb2\x53\xaa\xbc\xb0\x55\x12\x3d\xfc\xf4\xef\x6d\x51\xca\x9a\x22\xa0\x80\xc6\x49\xea\xc1\xa2\xe8\x6a\xf1\xb0\x9a\xf6\x8c\x77\xb6\xe4\x18\xed\xd4\x98\xa0\x1a\x90\xe7\x8c\xd0\x1f\x83\x23\xed\xe8\x99\xe0\x34\x21\x8a\x50\x58\x1e\x01\x8a\xd2\x43\x92\xa7\x5a\x7a\x8a\x4c\xcd\xd8\x7a\xf5\x95\x04\x35\xb0\xe0\x70\xf5\xe9\x1c\xdd\xcd\xf5\x5b\x78\xcc\x59\x0e\x83\xdf\x14\xaf\x97\xfa\x42\xe4\x7e\x28\x1c\xac\x07\x73\x21\x1f\x74\x55\x2f\xe4\x23\x04\xdf\x80\x82\xc1\x98\x09\xdb\xa0\xfb\x3a\x29\x91\xb4\x0f\xb1\x21\x40\x7c\xa8\xd1\x59\x27\xce\x8c\x1d\xe3\x7e\xa2\xaf\xe5\x8b\xfb\x57\x76\xe7\xc2\x95\xc0\xc1\xa4\xdf\xbd\xd4\x5a\x0b\x5a\x0a\x6b\x7a\x45\xeb\xdd\x57\x88\x8b\x5a\x98\x13\xb2\x9c\x29\x74\x75\x99\x50\xda\xa4\x19\x49\xfa\x70\xf2\x4a\xa2\xb7\x83\xd6\xed\x00\x4c\xde\xf4\x60\xe3\x96\x4a\x8b\x4d\x62\x02\xe1\xbe\x86\xc3\xc1\xe0\xfb\x43\xfd\x0a\x26\x2e\x77\xbb\x81\xc7\x0b\x9e\x9e\xa6\xbc\x60\x97\x30\xa0\xca\x1e\xfa\xa7\x68\x44\x44\x3a\xd0\x5d\x9a\xc6\x4b\xeb\xd0\x19\x0c\xde\x1d\x38\x17\x48\x21\x30\x75\x0e\x8a\xde\xb4\x14\x2e\x15\x43\xf0\x80\x88\x05\x1f\x97\x5a\x21\xd4\xce\xfc\x30\x20\x19\x36\xd1\x70\x1f\x2f\x65\x8c\xa3\x5c\x9c\xb0\x50\x1a\xcf\xac\x98\x72\x2e\x85\x57\x26\x4d\xc1\xc0\xd9\xc8\xa1\xe1\x98\x15\x83\xa2\x54\x09\x91\xc2\xf9\x93\xe8\x01\x26\xb1\xb8\x63\x8a\x69\x32\x55\x41\x1d\xfb\xb1\x69\x73\x6c\x86\xff\xcc\x06\x03\xab\xa0\x31\x89\xbb\xd4\xa0\x16\xa5\x85\x47\xd9\x72\xc9\x27\xf3\x88\xcb\xf2\x3d\x89\x85\x72\x4a\xa1\x94\x56\x8a\xb6\x62\x56\xa7\xb1\xa2\x81\x4a\x9a\xb6\x31\x12\x83\xdd\x01\x5f\xcf\x59\xda\x25\xec\x9a\x47\x17\x86\xae\x0a\x67\xab\xb3\xe5\xf2\x98\x79\x85\xb4\xa7\x68\xb3\xe7\x60\x1d\xa0\xd6\x6f\x6d\x6a\x69\x24\x92\x45\x69\xb5\x6f\x99\x04\x40\x8c\x4b\x96\x59\x7d\x5f\x32\x44\x23\x34\x34\x3e\x79\xf5\x27\x52\x1f\xd9\x93\xfa\x1e\x05\x20\x73\x0c\xd7\xe0\x0a\xc0\x44\xa5\xe5\xd2\xca\x48\x4a\x98\x9f\x05\x4d\x3c\x92\xdc\x6a\x2a\x05\x3e\x33\xea\x85\x42\x17\x2c\x02\xa8\x03\x8a\x80\x15\x14\xdc\xcd\xe4\x34\xf9\xa3\xd9\x31\xa9\x11\xd3\xd3\x73\x70\x32\xd3\x96\x7d\x8f\x57\xa8\x0e\x17\x98\x34\x64\x37\xeb\xfb\x41\xea\x8a\x75\x5a\x73\x4b\x43\x59\x1d\x57\xa6\xb3\x46\xf0\xec\xa5\xb5\x36\xc5\x0d\xe5\x83\x92\x9e\xfd\x3a\xf2\x7f\xf5\xfe\x72\xe5\x5f\x8d\x48\xf0\xe8\xc1\x19\x79\x2d\xd5\x21\xc5\x6e\x53\x54\x1c\x35\xac\x99\xf7\x53\x5a\xc6\x49\xf5\x22\x49\x30\x3e\x23\xbf\x97\xf4\xb8\x2e\x1a\xf9\xb9\xa4\x3b\x88\xcb\x9a\xb3\x14\x3c\xa7\x0a\x4d\xd9\x82\x3f\xa7\xec\x0e\x1c\xae\xf1\x5a\xbd\xbe\xbd\x6f\x79\xd5\x80\x68\xea\x1d\x2e\x07\x44\xd0\x4c\x29\xa0\xe8\xeb\x01\xc3\x06\xbc\xf6\x69\xd2\xf0\x21\xb0\xd9\x16\xd7\x1f\xcb\x70\x71\x23\x15\x58\xe5\xb9\xbd\x01\x7d\xa1\x7f\x65\x4f\xe3\xe7\xe5\xb4\x14\xb6\x95\x0d\x79\xc6\x2f\x03\x31\x19\xda\x7c\x79\x2f\xfd\xc3\x9a\xa5\xd4\x8d\x11\x23\x50\xa0\x56\x98\x17\xb3\x63\xf4\x23\x7e\x0e\x46\x34\x22\xdc\x0a\x04\x57\x01\x2f\xa3\x72\x05\x88\xdc\xea\x6d\xd6\x78\x1b\x82\xd9\xb6\xc7\x48\x7a\x18\xac\x44\x81\x69\x01\x67\x06\x60\xf7\x5e\x3b\x7e\x9a\x36\xce\x35\x8f\x42\x20\xef\x86\x80\xb8\x02\xf3\xcb\xc0\x84\xc0\x9e\xa4\xdd\xa1\x1e\x5b\xa3\xdd\xc8\xe5\x01\xf7\xd7\x82\x85\x3f\x38\x80\xff\xba\xb2\x0e\x2f\x1b\x77\x85\x68\xe9\xf7\x65\xce\x2e\x37\x13\xbf\x2b\xdb\x27\x3c\x03\x0c\xf0\x74\x75\x12\x38\x7b\xb2\x48\xb2\x82\x15\xf7\x18\x9f\x82\x3f\x01\xc3\x46\x9e\xc8\xeb\xc7\xba\xee\xda\xc5\x45\x8d\x87\x33\x31\x17\xe2\xb6\x73\x24\x15\x8f\xb1\xc7\x71\x26\x9f\xe6\xc3\x21\x5c\x91\xca\xc5\x9b\x07\xd3\x74\x30\x48\x39\xff\x34\x4d\xa9\x69\x54\x0b\xb6\xbe\xfa\xe2\xea\x99\xc3\x69\x53\x38\x0b\xe5\x75\x65\x0a\xd1\x68\xda\x9e\x2a\x94\x3d\x13\x2c\x4d\x56\x7c\x94\xf8\x63\xa5\x84\x61\x8c\x77\x5c\x10\x57\xe1\xf2\x44\x88\xa2\x6e\xf8\x1b\xe1\x78\x6b\x84\xcd\xb0\x97\x41\x9c\xc5\x88\xdd\x75\x87\xcb\xe9\x88\xe2\x64\x06\xe8\x91\x9e\xa9\x60\x32\xe0\xf4\x54\xc7\xd6\x19\xfd\xfb\xb7\x2d\xcb\xbf\xcc\x98\x6f\x07\x9e\xc4\x62\x4f\xe6\x17\x87\xd4\xbe\x1d\x18\xa0\x99\x49\x7c\xce\x0b\xbe\x19\x73\x82\xf2\x22\x49\x2c\x35\xaf\xde\xa9\x73\xa0\x87\xad\x29\x66\x67\x1f\x21\x43\x53\xa5\x49\x47\xa5\x07\xf7\x8d\x3e\x0b\x3c\x26\xad\xf4\xd7\x2c\x5f\x09\xda\x0f\x36\x7e\xd8\x58\xf2\x07\x84\x47\xc1\x2e\xc7\xc2\xcd\xcd\x37\xa1\x19\xbe\xa7\x85\xff\x7c\xcf\x57\xae\x01\xe4\x35\x29\xfb\x2c\x74\xf6\xbc\xd6\xbb\xbe\x85\xc4\xd8\xb4\x81\xd8\x75\x44\xd8\xbc\xd7\xfe\xc2\x71\xfa\x66\x94\xd8\x59\x29\xad\x86\xe4\x0e\x70\xe4\xc4\x3f\x8a\xc1\x28\xb1\xae\x11\x61\x5d\x04\x36\x8b\x7b\x2c\xc4\x0e\xcb\x82\x1f\xcb\xb4\x1d\x29\x53\x05\xdd\xe0\x99\xcd\x88\xe3\xe0\xe9\x88\x7d\x3e\x9a\xb7\x1d\x58\x5d\xd6\xfd\x22\x49\xee\x1f\x4c\x47\x1b\x7f\x58\xe6\x48\x5b\x5f\x09\x02\xb3\x45\x80\x01\xaf\xee\x6b\xc1\xd7\x0e\x1f\xcf\xcb\x17\xe2\xe5\xd8\xac\xc9\xcf\x96\xc5\x1a\x62\xe9\x6e\x8f\x0d\x27\xb0\x84\xe1\x3d\xd1\x3b\xf8\xfd\x15\x99\x51\xfa\x78\x29\xb5\xd7\xff\xd1\x35\x11\x41\x31\xd8\xd3\x20\x30\x38\x11\xa5\xea\x9b\x52\x9d\x24\x94\xbd\xf4\x9d\xa9\xa7\x97\x9e\x1f\x10\x66\x44\x7f\xc7\xfb\x8e\x73\xd1\x25\x44\x68\x31\xd5\x55\x8d\x5b\xa1\x75\xb8\x51\x5e\x83\xf4\xda\x45\x00\x79\xa1\x6e\x22\xb4\x2f\x4e\xcf\x25\x7f\x88\x85\x6b\x8d\x16\xdd\xc8\x95\xbb\x4d\xb9\x14\xe1\xf8\x93\x18\x7b\xc5\x73\x4e\xb0\x7f\x16\x51\xec\x44\x4e\x49\x0c\x78\xbe\xd7\x7a\x03\x81\x6a\xe2\x11\xe7\xc2\x73\x08\x63\x2e\x2b\x31\xf8\x86\xb6\x9b\xca\x8e\x7b\xfa\xfa\x2e\xa7\x34\xf9\xc1\xc1\xc0\x62\x14\x79\x69\x56\x5a\xe0\xf7\x05\x23\xe1\x97\xb4\xd4\x6a\x28\x0e\x84\xb6\x30\xfd\xd4\x76\x6e\x20\x39\x61\x78\xe6\xe7\x81\xe7\x07\x5e\x2b\x8f\x05\xca\xc3\xab\x9c\x6d\x1a\x91\x8a\xea\x90\x99\x0d\x8b\xfb\x3d\xa7\x84\x51\x7c\xe8\x46\x41\xed\xba\x32\x7c\x28\xf3\xd3\x60\x9a\x09\x67\xb1\x99\xa9\xbe\x91\x8b\x6b\x62\xa7\x91\x0e\x46\xdf\x56\x86\x47\x71\xc1\x69\xed\x14\x83\x18\x67\x14\xd3\x41\x44\x49\xd6\xd0\x24\x89\xf5\xb2\x39\xc6\x04\x50\x3f\xe8\x88\x87\xdc\x1c\xd4\x60\xc0\xfa\xd2\xeb\x25\x34\x53\x87\xb8\x4f\x15\xbf\xfd\x53\x49\x51\x38\x9f\xe7\x55\x98\x97\xf1\x22\x61\x55\x58\xc4\x11\xab\xc2\x6d\x14\x67\xd5\x3c\x8a\xab\x45\x98\x7e\x0e\x8b\x2a\x0a\xcb\x10\xfe\x25\x71\x51\x56\x11\x2b\xc3\x38\x29\xaa\x65\xbc\x5a\x84\xe0\x03\x83\x3f\x6e\x73\x56\x2d\xb3\xac\x64\x79\x25\x82\x24\x57\xd7\xe0\x7c\xa3\x5a\x87\xf9\x4d\xb5\x66\xfc\x43\x1a\x7e\xae\xb2\x6d\xb9\xd9\x96\x95\x72\xd5\x58\x15\x0c\x06\x58\x15\xdb\xf5\x3a\xcc\xbf\x54\x65\xbc\x66\xd5\xe7\x38\x62\x19\x22\xff\x28\xe9\x59\xef\xdf\x7f\xe7\xdb\xf0\x55\x34\xa4\xc8\x9a\xc1\x56\x50\x5d\x45\x43\x8c\xce\x56\xe4\x17\x11\x7e\x48\xe9\x17\x3f\xb3\x66\x1e\x1a\xfe\x54\x0e\x11\xf6\xaf\xae\x8a\xb3\xe7\x01\x22\x28\x46\x98\xfc\x95\xcb\x10\x57\xc5\xf0\x8c\x7c\x5f\xd2\xb3\x67\xd6\xac\x2f\xbc\xf6\xe5\xd5\x22\x4b\x2a\x70\xb6\x5c\x5d\xe7\x55\xbc\x5e\x55\xc2\x86\x2b\x89\x53\xe8\x73\x58\x6d\xc2\x3c\x5c\x63\xcb\xf2\xaf\x6e\xbd\x60\x88\xfd\x5f\x9f\x07\x8f\xf0\xd5\xd9\xf3\xb3\x55\x4c\xfe\x0e\x95\xc9\x2f\x67\xe4\x6f\xfc\x15\x82\xc3\x9c\xc5\xe4\x5f\xfc\xa5\x1a\xfc\x65\x76\x75\x3b\x9c\x9e\x11\x96\x42\xbb\x5e\xb1\xc8\xe3\x4d\x59\x09\xc3\x49\xde\x0a\x3e\x8b\x49\x99\x1a\x8e\x01\xe7\xd9\x5d\x05\x67\x5a\x60\x38\x96\xa6\xf4\x4c\x1e\x9c\x5e\x15\x8f\xac\x99\xe7\xff\x4a\x83\x8a\x5e\x15\x8f\x94\x55\xdc\x88\xd7\x90\xf3\x1a\x1e\x54\x57\x67\xd6\xcc\xfb\x77\xf8\x39\xac\xd8\x62\x1d\x62\xd1\xd8\x59\x4c\x32\xfe\xb9\xcc\xb7\xec\xea\xcc\x1a\x3d\xc2\x67\x24\x4c\x01\x20\x8f\x9e\xf5\xad\x99\x77\xe5\xbf\xfc\xf6\xc5\xe5\x8b\x2b\xbf\x3a\x3d\xc5\x15\x4f\x08\xae\x02\xfe\xfc\xfc\xaa\x78\xf4\xe0\x6c\x45\x8a\x94\x2a\x2f\x36\xbe\x43\xd0\x33\x21\x01\xf4\xd6\xdb\xa4\x8c\x37\x09\xa3\x0f\xd5\xd3\xc3\xe7\x88\xa0\x67\x67\xe2\xfb\x73\x14\x90\x84\xad\x58\x1a\x89\x52\xcb\x98\x25\x51\xc1\x4a\x91\xa7\x7e\x0b\x08\x9f\x0c\x91\x67\x1d\x6e\xc4\x67\x78\x08\x08\x40\x5f\x7c\x12\x72\xb7\xf8\xaa\x9e\xb9\x28\xc4\x42\x59\xbf\x8a\x34\x80\x74\xd0\x81\x80\x94\xb9\xe7\xbb\xa4\x8e\x54\xc0\x27\x47\x66\x81\x47\x23\xeb\x22\x4b\x3a\xf2\xea\x8c\x8b\x2c\x01\x74\x16\xa5\xf5\x9b\xd9\x56\xe4\xf9\xe3\x83\xf2\x65\x2e\xdb\xcb\x9f\x77\x34\xaa\xb5\x18\x4c\xa3\x5e\x33\x9a\xd0\xcc\xb7\x09\x42\x04\xa1\x00\x06\xf9\xf3\x33\xe1\x22\x1d\x49\x5f\xe9\xc1\x9e\x6c\x53\x1a\x59\xdf\x63\x92\xa4\x74\x9b\x7e\x8d\x4b\xfb\x69\x91\x8e\x94\x67\x1c\x2a\x9e\xe3\x2c\x25\x45\x2a\xe3\x1e\xf1\x07\xbe\x90\xf9\x83\x1a\x27\x3c\x8b\xb5\x0e\xdf\x39\xd4\xa1\xc4\x35\xbc\x46\xad\x23\xbb\x83\x10\xe3\xdd\x4e\x1f\x3b\x1d\x39\x52\x5a\xce\x64\x7c\x57\xab\xe6\xb9\x65\x08\x76\x15\x90\xc2\xb2\x0e\x18\xf1\x03\x05\x79\x39\xfa\x4b\x76\x07\x4c\x05\xb0\xa5\x42\x4d\x82\x1d\xb8\x98\xe4\x8c\x30\x54\x7c\x44\x55\x66\x14\x65\xeb\xb7\x61\x1a\x6f\x3a\x23\x80\x82\x1e\xcf\x81\x2f\xaf\xaa\x72\x3a\xd2\x9e\xb6\x93\x14\x33\x7c\xad\x74\x65\xa7\x65\x63\x16\x99\xf0\xe9\xba\xc9\xd9\xff\x77\xfa\x17\xa7\x05\xcb\xcb\x6f\xe0\x82\x83\xef\x4c\x0d\x9e\x8b\xf7\x56\xdc\x7d\xfc\x37\x3b\x7b\x70\x4d\xd7\x4a\x38\x68\x5e\x9d\x4d\x85\xcb\xf2\xa8\xb2\xd3\xff\x46\xa3\x8d\xcd\x77\x8f\x3b\x4d\xf4\x9a\x92\xbb\xe4\x65\xa4\xb2\x66\x8d\xde\x24\xa6\xf6\x54\xa8\xee\x81\x2b\xad\x38\xc0\x10\x29\x4f\xf2\x14\xa9\x31\x41\x0b\x11\x44\x27\x05\x73\x84\x3b\x70\xcb\x9d\x36\x3a\x6e\x09\x55\x10\x7d\x60\x92\x36\x97\x06\x49\xf1\x60\xf0\x85\x97\x24\x48\x6c\x10\xa8\x55\x45\x2b\x1c\x42\xf3\x04\xf3\x30\xb2\xac\x1a\x1f\x23\x65\x3d\x08\xa1\x1c\xe1\x97\x01\x86\x33\x1c\xc8\xd4\x66\x4f\x5a\x23\x61\x70\xa8\x32\x35\x19\xf8\x29\x6e\x76\xa6\xc1\xdc\x4f\xb5\x07\xae\x03\xe7\x41\x2a\x3a\x9d\xd0\xdc\x12\x99\xe4\x4a\xa7\x76\xcb\xb9\x28\x44\x2e\x3a\xe6\xc5\x59\x49\xbe\x7d\x07\xfc\x36\x8b\xd7\x72\xc6\x3c\xe9\xda\x93\x33\xed\x9d\x17\x44\x50\xab\x3a\x8b\x2d\xc5\xc5\x57\xb9\x3e\x26\xba\x1d\x23\x8a\x8d\xf3\x54\xb0\x59\x3a\x38\xfc\xa9\x3d\xff\x1b\x9c\x6d\x8d\x2f\xb3\xb4\x0e\xb3\xa1\xfd\xd7\xfd\x43\xf8\xaf\x03\x2d\xfa\x7e\xc7\x91\x65\x55\xb1\xb4\x3e\x4a\xea\x1f\xdb\x9b\x06\x83\x5f\xca\xee\x6c\x07\xe1\xf6\x06\x83\xbf\x1a\x59\x8b\xd4\xb7\xfe\x2e\x8d\x46\x99\x30\x2d\xe5\x3b\x1c\xf6\x9d\xa0\xe5\x99\x00\xe3\x9d\x50\xb0\x13\x1d\xff\xbe\x24\xe8\xd9\x03\xe7\xf9\xb3\xb3\x07\xee\x73\x84\xc1\x88\x06\x34\xfb\xd5\x19\x96\x3e\xbf\x02\x60\x1d\xb8\x4c\x6d\xaf\x1d\xc0\x38\x62\x80\x88\x32\x3c\x4d\xa9\x2d\x55\x2c\x33\xbc\xdb\xef\x53\x49\x0a\x5a\x1b\x10\xbb\x77\x33\x91\x1d\x6e\x06\x32\x56\x6a\x43\xa6\xb0\x77\x88\x0f\x7e\x83\xa7\x27\xa6\x5c\x1c\xec\x31\xac\xb1\xaf\x25\x6b\xb5\x0f\x15\xbf\x1c\x0e\x03\x12\xcb\x87\x69\xcc\x45\x96\xc1\x20\x37\xea\x16\xe1\xb3\x2d\x79\xe2\x6b\x12\x36\xd2\xf2\x73\x6b\x81\x22\xa1\x49\x0d\xb9\xa8\x84\xf7\xa4\x6f\x63\x62\xba\x76\x57\xd9\xf7\x44\x28\xe5\x1d\x3d\x63\xd2\x46\xa2\x70\x79\xa8\x46\x74\x20\x4a\x32\x9a\x2b\x33\x2d\x2e\x6d\x0b\x11\xa6\x11\x9c\x93\xda\x64\xd1\x38\x19\x5d\x8a\x33\xfa\x0d\x5d\x9c\x3a\x24\xa2\xcc\xb7\x03\x72\xdd\xf2\xd1\x19\x81\xf5\xd8\x75\x55\xf5\x2d\xe7\x39\x5d\x74\x9c\x9d\x0a\xcf\x2a\x0d\xa7\x12\x10\xc2\x0c\x0f\x06\xa9\x5c\x28\xd1\x7d\xbe\x82\xb5\x98\xbf\x1c\xb1\xdf\xac\x1c\x4f\x41\x57\xdd\xb7\x03\x1a\x19\x56\x32\x70\xdd\x54\xae\x13\x90\xb6\xe3\x7a\x62\xa5\x23\x22\xe8\xe5\x02\xc2\x97\x2f\xca\xd1\x7c\x1b\x27\x91\x0e\x74\x27\xb6\x92\x03\x2e\x88\xf4\x1d\xd2\x97\xf8\x8b\x49\x4e\xb7\xe6\x99\x8a\x88\x04\x52\x9f\x58\xd4\x66\xc2\x5b\x9a\x63\x3e\xa3\xb0\xb4\x42\x85\xae\x77\xd6\xb6\xde\x30\xc8\x8a\xcb\xac\xa1\xa2\x41\x8b\xe7\xc9\x34\x01\xb3\x97\x2d\x49\xfa\x94\x6e\x74\xd4\x0f\x20\x83\x31\xe9\xdb\x80\x1d\xc2\x67\x80\x38\x30\x09\xc9\x9d\x15\x1b\x5b\x10\x84\xa3\x54\xc0\xf0\x93\x80\xc4\x24\x91\x4e\x40\x85\xe1\x57\xe8\xab\xf6\x4e\x9d\xf6\x40\x65\x1f\x43\xb2\xc6\x1c\x0b\xa6\x99\xee\x50\xc8\xab\xca\x53\x65\x71\x25\x35\x5b\x50\x43\xaf\x22\x26\x48\xd8\xdc\xbf\xfa\x1c\x26\x08\x37\xb7\xcf\x82\xc4\x70\x1c\x32\x2a\xf2\x05\xdf\xbd\x3f\xb1\xcf\x61\xf2\x53\x9e\x88\x14\x38\xa0\xad\x0b\x5b\xbc\x09\x70\x6b\x23\x7e\x5f\x8a\x53\x23\xfe\xaa\x69\x8c\x30\x86\x57\x24\x2d\x04\x1f\x7b\x18\x4f\xb7\x32\xe0\x50\x63\x77\x32\x8f\x51\x05\xe1\xb9\xcc\x3c\x24\x9e\x90\xe2\x09\x79\x92\x7c\x44\xc4\x5c\x98\x9e\xd4\x41\x51\xa9\x2f\x80\x3f\x42\xc0\x26\x21\x45\xa3\x5e\x24\x89\x87\x0c\x7a\xd5\xa5\xd0\xd7\x3a\xb8\x62\x87\xd7\x11\x70\x3c\x02\x87\xe8\x46\xdc\xe3\x53\x67\x1a\x3e\xa7\x8a\x32\xe7\x94\xd2\xd0\x20\x0f\x02\x37\x38\x5a\x2c\x4a\xb0\x86\xc2\x7e\x19\x58\x29\x26\x71\xa9\x2d\x70\x53\x71\x9a\x7d\xec\x2c\xfb\xe0\x10\xea\x70\x33\x3f\x30\x2d\x23\xb0\x7e\xf4\xf4\xb6\x9c\x70\x11\xe1\x16\xa1\xb5\xe5\x89\x58\xa5\x32\x70\x8a\xe1\xee\xb2\xaf\x36\x40\xf4\x0c\x0d\x6b\x77\x76\x43\xf4\x1c\xe1\x59\x46\x59\x33\x2c\xa2\x67\x25\x8d\xad\xc6\x08\x62\x9a\xa4\x0d\x3e\x27\xa3\x49\x6a\xb2\x3a\x98\xf4\xcd\x2e\x99\x81\x23\x01\x59\x5b\x1f\x64\x70\x4b\xc1\x3b\x36\x82\x1e\x35\x13\xda\x03\x12\x66\x72\x39\xbd\xb3\x32\x4c\x0a\x7a\x27\x66\x53\xf3\x74\x31\x2d\xfc\x30\xc0\xd3\xe1\x30\xc4\xb9\x1f\x06\x83\xc1\xdc\x8a\x49\x0e\x69\xf1\xd2\x2a\xe1\x6e\x48\x2e\xd6\xa2\xaa\xa0\x38\x68\x5c\x40\x7d\x1d\x15\x85\xc3\x21\xfe\xac\xab\x00\x15\x88\xcf\x60\xc3\xa4\xdd\x7b\xf1\xae\x18\x54\x47\xdd\xb4\x3e\xb7\x39\x0b\x9b\x93\xfe\x76\x30\xb8\x03\x86\x4f\x33\xb2\x39\x2d\x54\x94\xae\x6c\x4f\x1a\x64\xb2\x43\x4d\x41\x9f\xef\xb5\x02\x3c\x33\xb5\x81\x6c\x68\x64\x95\x98\x5c\x73\x04\x5f\x51\x7b\xba\x7c\xbe\x9a\xae\xc4\xa5\x64\x46\x99\xbf\x0a\x48\x56\x55\x36\xa5\x34\xc3\x0d\xe5\x00\xf0\x65\xff\x65\xc3\xac\x0c\x63\x4d\xf2\xae\x49\x66\xdc\xde\x64\x81\x97\x61\xad\xf8\xf1\x2f\xed\x33\x45\x19\xba\x16\x55\xb5\x69\x48\x82\xe5\x91\x10\x75\x5b\xaa\xb9\xa9\xec\x3e\x6e\x8a\x2c\x68\x91\xfa\xdb\x80\x33\x60\xda\xee\x99\x14\x06\x4a\x2e\x7c\x27\x18\x66\xc7\xd8\xad\xe1\xc2\x77\x39\x13\xb1\x80\x80\x53\xa7\xa7\x53\x5c\xd0\xa2\x0e\x86\x3a\x6d\x79\xfa\xbc\x87\x09\xcc\xf0\x60\x70\x2d\x7d\xee\xb6\xc5\xf4\xbf\xea\xa1\xf8\x76\xc0\x31\xdf\xa8\x12\x0e\x28\xb0\xb0\xb8\x44\xc2\xcd\x55\x9f\xd2\x6d\x55\xfd\x4d\x57\x3c\xd3\x07\x41\x7d\x0a\xe3\x69\x7c\xb4\xbd\xc2\x2b\xcc\x5d\x30\xa6\xc2\xa0\xa8\xbd\x0d\x8a\xf1\x99\x62\x45\x42\xcd\x6c\x7e\x1c\x10\x15\x08\x7a\x30\xe8\x27\x5d\x1b\x69\xd6\x58\xd3\x89\x8c\xe2\x5a\x23\x43\x61\xde\x17\x90\xc2\xdc\x30\x28\x42\xd3\xa2\x21\x08\x15\x8d\xca\x8a\x86\x20\x54\xd0\x4d\x3d\x0d\xc2\x17\xc7\x31\xe8\x66\x52\x59\xa0\x18\x0c\x36\xcd\x1a\x1b\xba\x69\x8d\x20\xb9\x40\x26\xe0\x28\xfd\xce\xba\xd6\xaa\xc3\xe4\x16\xc3\x8a\xc8\xe8\xb5\xbf\x12\xde\xeb\x97\x16\x84\x97\x3a\x75\x04\xfe\xab\x9b\xd4\x8c\x33\x13\x83\x81\x60\x25\x34\xe1\xcd\x5a\x84\x57\x92\x9c\x26\xca\x67\xd8\x58\xfd\x21\x5f\xf4\x05\x26\xa9\xa0\x53\x31\x34\x5e\x28\x27\xb9\x72\x8b\xcf\xcc\x2d\x3e\x55\x07\xec\x3a\x18\xbc\xa0\x0c\x1b\x11\x23\x27\xed\x88\x27\xd7\x70\xf2\xac\xa3\x4a\xd4\x66\x11\x72\xfb\x08\x17\xd7\x8c\x24\x66\x50\x96\x46\xc8\xe5\x0e\xdb\xf8\x5a\xbc\x67\x9a\xf8\x71\x88\x95\x00\x5e\xc3\xc5\x00\x38\x4f\xb4\x62\x9a\xfa\x05\xdf\x54\xe3\xc1\x60\x0b\xf1\xd1\x76\x9c\xe6\x28\x47\x3d\x40\xa8\x7b\x71\xda\xd3\x29\x0b\x3f\x0f\x66\x6d\x65\x20\x70\xd6\xdc\x72\xe3\xc2\x47\xa6\x54\xdf\xf1\x74\x0b\xb1\xf8\x95\xca\x34\x7f\x23\xc9\x4c\xbe\xf1\x1e\x78\x4a\x2f\xa9\xed\x04\xb8\x4f\xe9\x2f\xb3\x83\x54\xab\xc0\x5e\xaa\x5c\x1f\x90\xb2\x54\x26\xc9\x78\xbf\x27\x8a\x73\x3a\x26\x04\xff\x3b\xbc\xb3\x76\xdb\x3c\xe1\xa2\x36\xd8\x99\x7d\xff\xea\x12\x81\x73\x2a\x61\x76\x26\x11\x81\x84\xc5\x97\x74\xe1\xf5\x1d\x22\x1d\x9c\xf5\x1d\x82\xca\xeb\x3c\xbb\x2d\x10\xc4\x40\x3e\x54\x21\xbc\xcd\xc3\x4d\xfb\xe2\xf4\xbf\x1f\xee\x43\xd6\xd6\x0c\xf5\xa1\x5c\xd6\x4b\x46\xbc\xf6\x99\x7b\x8c\x39\xc7\x5c\x16\x50\xa1\xa5\x39\x7b\x30\x3d\x54\x29\x18\x0c\x5a\x67\x6d\xaa\x76\x52\xb6\x8f\x1e\xf4\x29\x8c\x30\x71\x37\x4f\x4a\x94\x7f\xe9\x8e\x60\xf7\x53\xcc\x1a\x1f\xb4\x2d\xf3\x5e\x0b\xba\xe2\x74\xad\x71\x64\xc2\x01\xf0\x9a\x6f\x1a\xf7\x07\x08\x3a\x1e\x73\xa3\x0d\x4d\xa8\xec\x00\x9e\x6d\xc9\xb9\xac\x83\x68\xa4\xb4\x54\x37\xb2\x85\x85\xa7\x4a\xb3\x68\x96\xd6\x93\x83\xbd\xd2\x90\xd5\xb1\xe8\x75\xb7\x57\xe3\x46\x2f\xa7\xc7\x91\x20\xed\x40\x82\xb2\x19\xac\x01\x7b\xa2\xb1\x6d\xda\x6c\xae\xa5\x54\x04\x33\x6c\xe1\x2e\xdd\xbb\x96\xd1\x80\xd8\x62\x38\x8d\xd0\x42\xb8\x66\xd5\xa5\x75\xa4\x71\xe9\x8c\x47\x7c\xbc\x3a\xa8\xd5\x22\x25\xcb\x94\x6c\x52\x12\xa5\xf4\x2c\x4c\x36\xd7\xe1\x95\xe5\xff\x8a\x83\x47\x57\xf8\x2c\x26\xd7\x29\x3d\xcb\x36\xe1\x22\x2e\xbf\x5c\x15\x8f\xe8\x55\xf1\x48\x7c\xc4\x67\x64\x05\x37\x52\x65\xb6\xa9\xf2\x78\x75\x5d\x56\xf3\xac\x2c\xb3\x75\x95\xb0\x65\x89\x1f\x9c\x91\x35\x7c\x4e\x39\x4f\x0c\x9b\xad\x35\xeb\x9f\x2e\x7c\x16\x06\x78\x34\xc4\x67\xe4\x0b\xff\x2c\x22\xd3\x9e\x91\xcf\x69\xe3\x8e\xee\x57\x0b\x0d\x97\xe5\x10\x61\x6b\xf4\x08\x3f\x90\xf7\x73\xf3\x63\x79\x66\xfd\xcd\x1d\xf6\xc3\xd3\xdf\xff\x4f\x30\x54\x99\xef\xda\x99\xfd\xe1\x69\x80\xa9\x2a\x23\x73\xdd\xa6\x74\xf7\xcd\xfb\x6f\x7f\xf1\x64\xbc\xd9\x3d\xb9\x4c\xe9\x4e\xc7\x40\x46\x2a\x08\x32\x22\x9f\xe3\x22\x9e\xc7\x49\x5c\x7e\xf1\xd0\x35\x84\x7d\x46\x44\x85\xbd\xd5\x85\x5f\xa6\x74\x97\xb0\xb2\x64\xb9\x74\xd5\xe9\xd9\x64\x99\xa5\xe5\x3f\x45\xb8\xed\x89\x6d\xef\xc9\xbb\x94\xfa\xe8\x32\xdb\x20\x82\x20\x20\x2f\x22\xe8\x1b\x80\x1b\x22\xe8\x0d\x5b\x96\x28\x20\x37\x3c\xcb\x3f\x21\xc4\x33\x22\xe8\x3d\x22\xe8\x6d\xf6\x3b\x22\x68\x5d\xa0\xa0\xa5\x7a\xb8\x28\xda\x1e\x32\xfe\xe8\xbc\xb0\xed\xf9\x7f\xb7\x27\x05\xb5\x75\x5c\x23\x1d\xd1\x51\xba\xac\x58\x42\x78\x92\xb8\x56\xcb\x8b\x9f\x17\x10\xd4\x33\xf4\x39\x05\x0f\x60\x9f\x2b\x0a\x5e\x2f\xdf\x89\xfa\x8e\xc1\x98\x87\x8a\x20\x08\xe7\xe4\x0b\xe9\x0a\x56\x85\x07\xa8\x4b\xe2\x3d\xe1\x69\x9d\x21\xbd\x8a\xeb\xec\xb6\x63\x85\xbc\x13\xe3\x82\xb3\xa0\xeb\x38\xea\xba\x45\x78\x27\xa9\x92\x0c\x2c\xd4\x41\x86\x0e\x43\x08\xb1\x99\x54\x60\xe2\xcd\x5a\xf2\x56\x89\xd7\x6f\xe1\xee\x48\x84\x2f\x45\x23\x33\xbd\xf2\x64\x41\xfd\x2e\x0a\x1f\xc4\xeb\x5c\x14\x85\x8e\xfc\x01\x8b\xab\xed\x4f\x5d\x7a\xc5\xd7\xda\x5f\x1b\x9e\x86\x64\x66\xed\x4c\x5d\xba\x05\x46\x0e\xf2\x52\xf0\x62\xbf\x28\x8a\x77\x10\xe9\xc5\xdb\x2d\xb2\x64\xbb\x4e\xc1\x29\x8a\xd7\xb7\xc9\x32\x4e\x92\xf7\xb2\xad\x7e\x03\x2f\xfb\x36\x49\xe2\x94\xfd\xa0\xdf\xb2\x3a\x9b\x88\x1f\x0e\x0f\x9b\xeb\x30\x05\x75\xd8\xdb\x38\xca\x6e\xe1\xe9\x77\xe1\x0a\x9e\x3f\x65\xd9\x1a\xcc\xd8\x17\x05\xd8\x35\x16\xde\x0e\x2d\x93\x2c\x2c\x91\x79\x6b\xb9\x28\x0a\x08\x59\x3d\x43\xea\x09\x79\x08\x90\x42\xbc\xec\x09\xbc\x1c\xa8\xf2\x0b\xc7\x21\xc2\x87\x3e\x6b\x79\x4e\x6b\xe8\x32\x08\x0c\x6b\xf8\x3a\x6c\xc6\x95\x4d\x31\x38\x88\x81\x6c\xe0\x0f\x4a\x22\x30\xf4\x19\xc4\x1e\xab\x99\x40\x2f\xad\x84\x6c\xc1\x77\x9a\xf8\x50\x47\xa8\x30\xdf\xb7\x81\x08\x46\xa1\xb8\x83\xa2\xf6\xae\x5f\x40\x08\x89\x42\xba\xd5\xef\x3b\x24\xd6\x31\x24\x12\x3f\x05\xe7\x70\xa1\x56\xcd\x31\xf4\x41\x69\x08\x05\xef\x52\x21\xea\x08\xf6\x38\xa7\x56\xc6\xe5\x2f\x07\x3f\xca\x7c\x37\x18\x1a\x61\xc0\x8d\xf5\xc4\x05\x69\x15\xf1\x07\x93\xbe\x32\x4b\xa8\xaa\x3a\x0c\x10\xaf\x3d\x2e\xde\x85\xef\x2c\x70\x27\xa8\x3e\xf4\x29\x0d\xd5\xc8\x04\x22\x09\xa0\xe4\x43\x8a\x36\x77\xa8\x69\x6c\x96\xb0\x30\x87\xb3\x84\x8f\xc2\xc5\x33\x92\xae\x0a\x6d\xb8\x8d\xd2\x8e\xe6\xe6\xe1\xe2\x66\x95\x67\xdb\x34\xe2\x7b\x94\xc5\x07\x4d\x51\x9c\x5e\xb3\x3c\xe6\x1c\x7b\x51\x07\x2d\x28\x60\x84\x85\x0e\x5a\x10\x63\x88\x7c\x8c\x31\x78\x3a\x80\x82\xb9\x3c\x76\x5f\xe0\x9d\xc4\xf7\x0e\x6c\xb9\x67\xfa\x6b\x1d\xe7\x3f\x9e\x78\x89\x27\x5f\x37\xfd\xad\x19\x0f\xeb\x19\xb7\xb9\x68\x43\x42\xe9\xd2\x27\x14\x4b\x39\x05\xa5\x2b\x94\x82\x63\x6e\x39\x1f\x29\xe7\xd5\x5f\xa6\x90\xe9\x65\x0a\x8e\xe9\x90\xf4\xe3\x9e\xcf\xac\x8c\x1a\x93\x1d\x4a\xb5\x7f\x5b\x1e\xcf\xbc\xdb\xae\x59\x1e\x73\x81\x78\x96\x55\x95\xed\x85\xd8\x0b\xf7\x9d\x01\xf6\x67\xd6\x32\xa5\x26\x93\x65\x7a\xf2\x6e\x06\x91\x2f\x45\x10\xf9\x3d\xd9\xa4\xdd\x4e\xde\xa5\x1f\xa6\xbc\xaa\xc4\x3e\xb1\xa5\xc5\xac\x10\xa6\xe8\xc2\x56\x0f\x0c\xa5\xad\x14\x57\x15\x87\x99\x57\x1a\x8b\xaf\x5e\x28\x16\x92\x02\xfa\xfd\x47\x6e\xe0\x15\xcf\xdc\x44\x30\xe7\x09\x84\x40\xb7\xc5\x83\xc1\x97\x54\x45\x39\x00\xc9\x28\x91\x31\xfc\x33\x9a\x8c\xd6\x71\x2a\x22\xbe\x87\xfc\x25\xbc\x13\x2f\x75\xba\x91\xaa\xca\xd1\x2d\x1f\x8d\xac\x43\xa5\xc5\x66\x99\x8c\x18\xa5\x42\x8c\xc9\x76\x8f\xbd\xef\xdb\x9e\x52\x94\xe3\x30\x80\xe8\x60\xd0\x00\xbe\xe9\xf0\xdc\xcc\xf6\x27\x01\x7e\x04\xb2\x62\xd1\x6f\x07\x83\x64\x30\xe0\x4b\x07\x0e\xed\x13\xc0\x2a\x13\x6c\xfd\x55\x1b\x6e\x9c\x81\x03\x03\xea\x7c\x9b\x0a\x47\x00\x7c\x11\x84\xe2\x10\x04\x3e\x02\x65\x82\x47\xda\xec\x39\xa4\x61\x22\xea\xa0\x88\x6f\x32\x1f\xe3\xdf\x99\xda\xa5\xd8\x1a\x79\x1c\xae\xc9\x68\x13\xdf\x31\x70\x06\x33\xe4\x64\x45\x15\x88\xcd\x9a\x39\x48\x01\xfd\xb7\x33\xe1\xe4\xde\xdb\x36\x9c\xa6\x4b\x97\xfa\x44\xfa\xd8\xef\xf0\x60\xaf\x97\xe7\xa1\x03\xfb\x86\x01\x52\x3a\xb3\x85\xbd\x29\x38\xe8\x81\x09\x1d\x0c\xd6\x12\x2c\x9a\xac\x22\xc9\xef\x21\x8c\x81\x97\xb9\x0d\x37\x16\x23\x97\x29\x39\x64\x3d\x3e\xc2\xe1\x61\x8e\xf7\xd8\x53\x8f\xda\x66\xf0\x78\x7c\x88\x7c\x30\x58\x9a\xc2\xc5\x8d\xf8\x3c\x7b\x25\xaa\x30\x49\xef\x3c\xbb\xfb\x18\xff\x1e\xa7\xab\xc1\x00\xcd\x61\x8f\x3e\x95\xa6\xb9\x75\x77\x75\x1e\x24\x36\x1d\x12\x63\xcf\x3e\xf0\xce\x2f\xf7\x7a\x4d\xfe\x84\x53\x7c\x99\x7a\x00\xb5\x9a\x5c\x5c\x4b\xf0\x58\x60\x78\x65\xe2\xc0\xac\x85\x12\x52\xe7\x53\xb9\xe9\x17\xaf\x22\xec\xdf\x6c\x64\x3b\x8f\x0c\xaa\x26\xd8\xf5\xd1\x03\x07\x0f\x11\xf2\x4a\xe0\x6b\x10\xea\xf2\xfd\xaf\x4c\xd7\x05\x81\xce\x5b\x68\x48\x64\x88\x3d\x45\x15\x4b\x3c\x43\x20\xd9\x58\x6a\x60\x68\xe8\xd8\xf6\x23\x10\x05\x3c\x84\x48\x46\xe1\xa6\x53\xf4\xad\xaa\x52\xfd\x84\xd0\x34\x1d\x71\xe6\x86\x3a\xc4\x2a\x9f\x53\x87\x27\xc1\x9e\x34\x18\x20\x75\x84\x9b\xc7\x6b\xab\x3e\x10\x8d\xc4\x65\xcd\x60\x70\x70\xee\x01\xf1\x38\xdb\x67\x21\x48\x34\x85\x24\xb2\x0b\x47\x48\xfd\xbc\x86\x93\xa5\x7a\x43\xa3\x54\x9f\x51\x36\x9a\x8b\xb1\x97\x81\xa1\x8d\xba\xea\x68\x49\x8b\x3a\xac\x12\x4b\x62\x2e\x89\xbd\x05\xa9\x0b\xc4\x8f\xd6\xbc\xaf\xeb\x2f\xf7\xcc\x7d\x69\xe0\xff\x4e\x4b\x41\x71\xca\xb9\xc8\x53\x25\x0c\x6d\x52\xe2\x33\x82\x8c\x1a\x51\x60\x98\x72\x35\x8e\x6c\x81\x1a\x7c\x90\x62\x97\xb0\x05\x49\x47\x1b\xf3\x5d\x05\x4a\x00\xc1\x29\x11\x72\xd2\x9f\x5b\xef\xc6\x6a\xb7\x24\x3b\x5d\xd6\x94\x30\x95\xa6\x36\xba\x55\x0b\xfb\x65\x00\xc4\xc9\x6b\x84\xd6\x50\x6c\xfc\x26\xaf\x5d\x9b\x8b\xe9\x29\xa4\x9d\xb5\x91\x32\x12\xa2\x62\x37\xc5\x37\xa8\xcd\x33\x6a\xf3\x55\x24\x52\x04\x1f\xfe\x8c\xda\x4d\x75\x09\x35\x79\x3f\x40\x95\xef\x21\x2b\xe7\x39\x52\x19\x9e\x4f\x71\x2b\x9a\x0b\x1e\xc9\x99\x51\x9c\x4a\x93\x84\xd5\xe1\x5f\x54\x5f\x41\xc4\xed\x74\xa0\xdf\xef\x1e\x16\x1c\x99\x18\xfe\x40\x60\xa6\xf9\x6a\xda\x88\xd0\x14\xfc\x51\x10\x27\x0f\xc1\x30\xbb\x6e\x0d\xf5\x9c\xb1\x21\x9f\x35\x71\x80\xea\x99\xa7\x29\xea\xd0\x4a\xdc\x21\xee\xf6\x10\x99\xb0\x23\xf0\x62\xed\x2f\xcd\xe3\x6c\xf5\x44\x6a\x7b\xc4\x3e\x1b\xbe\x4b\xfd\x3c\xe0\xf5\x67\xa0\xf5\x91\xf9\xf9\xa9\x0b\xbf\xb6\xa1\x4e\xbd\x27\x5f\x0c\x85\x16\xab\xdd\x37\xce\x94\xd2\x1b\x15\xcd\xe1\x55\x4a\xcf\xfe\x8f\x6b\x9f\xad\xc8\xc7\x94\x9e\x5d\xf9\x57\xc1\x83\x33\xf2\x82\x3f\xe6\xb3\xab\xf4\x6c\x45\xfe\x2d\xd5\x75\x85\xa3\x06\x15\xfb\x3b\x5e\x87\x2b\x56\xe5\xac\x60\x65\xb5\x8c\x13\x06\xea\xbb\xdf\xa6\xf7\x45\x0d\xbf\x61\x5f\x56\x2c\xc5\x67\x71\x4b\xf4\x2f\x94\x86\x4d\xb7\xf1\x39\x28\xc5\x5a\xd2\x16\x4f\xe6\x14\xc2\x3d\x9f\xfb\x66\xd2\xb1\x13\xa8\xd6\xe9\xa1\x56\x4c\x81\x20\x7f\xe2\xe4\x89\x09\x2e\xa7\xa8\xc3\x7b\x81\xf6\x9a\x61\x8d\x24\x04\xe7\x7d\x97\x19\xa3\xe1\x20\x87\xcf\x63\xe3\x50\x2d\x05\x2f\x0f\x7d\x2d\x47\xc7\x85\x85\xbc\x3a\xd2\xe3\x60\xf0\x6d\xda\x65\x3e\x3f\x18\xf4\xff\x9d\x1a\x06\x0a\xf2\xf0\x4b\x5e\x51\xf4\x4b\xfd\x0d\xef\x71\x73\x7c\xc6\xb6\xd2\x8c\xa5\xda\xe4\xa7\x52\x11\xf7\xb2\x71\x58\x32\x93\x9a\x05\x69\x87\xa6\xce\x8e\x0f\xc4\x2b\x61\x3c\x44\x04\x1e\xaa\x55\x95\x5e\xa4\x04\x5d\xe5\x57\x29\xf8\xf1\xf0\x3a\xb2\xa6\xdd\x59\xc5\x85\xb7\xdc\xc9\x61\xa6\x69\x93\xd4\xa9\x80\xfc\x70\xe3\xde\x1c\x62\xfb\x30\xb3\xc4\xb3\xd2\x52\xc6\xe9\xe5\x8c\xef\xbb\x24\xf6\x55\x68\xca\x80\x42\x18\x17\xf6\xd3\x8f\xaf\xb9\x6c\x90\xa5\xa0\x49\x82\x87\x88\xa2\x61\xc7\x97\x12\xef\x85\x54\x2d\x64\x1d\x10\xb2\xc2\x7f\x87\x77\x1f\x59\x59\xc6\xe9\x4a\x28\xe1\x99\x09\xa3\x32\x0f\x23\x20\xb8\xa1\x70\x82\xac\xa0\xca\xd7\xa0\xb2\xae\x53\x4e\x94\x3f\x24\x61\x9c\x4a\x57\xf0\x0c\xae\x4c\x81\xf2\x30\x93\x03\xcb\x2c\x8d\x3e\x42\xfb\x0e\x00\xc9\x97\xad\x76\x3f\x9f\x0b\x2b\xec\x6f\xad\x9c\x30\x3f\x0f\x48\x6a\x9c\x59\xc5\xd2\xe9\xf8\xc0\xd0\xbe\x78\x95\x12\x34\x44\xb8\x76\x7d\x84\xe6\xc9\x36\xef\x81\xaf\x85\x9e\x74\xc0\xd0\x53\x9e\x17\x7a\x49\x16\x46\xbd\x9c\x15\xf1\xef\xac\x27\xdc\x12\xf6\x84\x23\xb9\x1e\x78\x21\xe9\x45\xf3\x44\x3c\x80\x73\xa4\x28\xbb\x4d\xc5\xd3\x76\x23\x7e\x39\x77\xd0\xd3\xfe\x94\x7a\xca\x85\x52\xaf\x76\xb7\xd4\xab\x5d\x2c\xf5\x84\x3b\x89\x9e\x54\xb6\xaf\xbd\xfe\x40\xbd\xca\xfb\x0f\x7f\xd8\x6e\x7a\x2c\xcf\xb3\xbc\x67\x44\x93\x69\xfa\x98\xec\xd0\xe7\x28\x03\xda\xb9\x85\x1e\x9c\xd4\xd9\xe2\xd4\x8c\xa3\x93\x52\x78\x4b\x95\xeb\x31\x69\xce\x5d\x76\x5c\xb9\x5c\xf3\x21\xde\x63\x75\x5e\x8f\x99\x6f\xcd\xf5\xb0\xad\x12\x5c\x96\x83\x8b\xa8\xa3\xb1\xff\xb4\x57\x01\x71\xcb\x04\xc7\x8c\xdb\xf4\xa0\x48\xab\xc0\x72\xa9\x4b\xe0\xda\xa5\xe1\x1f\x3b\x2f\x28\x89\xe0\xe5\x79\x1b\x47\x4a\x35\xec\x8a\xda\x20\x9c\x19\xcd\xa3\x47\x8f\x90\x84\x1e\x4f\x28\x09\xab\x2a\x9e\x26\x42\xcd\xc1\xfe\xf3\x26\x25\x3f\xa4\xe4\xb7\x94\x6a\xf7\x6c\x9f\xf8\xe6\x33\x3b\x23\x6f\x53\x7a\xf6\x97\xd1\xa3\x07\x67\xe4\x7d\x4a\xcf\x2c\x7f\x36\x08\xf0\x27\xea\xff\x3a\x08\x1e\x9d\x91\xef\x60\xab\x19\x3d\x9a\x61\xcf\xef\x5d\x95\xc1\x23\xcb\xff\x95\x53\x95\xe0\x11\xbe\xca\x67\x0f\xce\x56\x6b\xf2\x8d\xdc\x8d\xc2\x79\xb6\x2d\xab\x70\xb3\xe1\x7f\xa7\x45\x99\xe5\x7c\xeb\x1a\x0d\x4f\x61\xf2\x0a\x61\xd0\x93\xc0\x66\x56\xdd\xc6\xd1\x8a\x95\xd8\x7b\x70\x46\x3e\xc8\xe2\xdf\xbf\xba\xac\x7e\x78\xf5\xe2\x5b\xfc\xe0\x8c\xfc\x08\x86\x24\x67\x57\x67\x67\xe4\x9f\xf0\xd9\xbf\xba\x1d\x0d\x4f\x83\xa1\x07\x61\x89\xce\xae\xce\x78\x37\xce\x66\x7f\xf1\x44\xa0\x22\xcf\xba\x8a\x86\xb8\xc2\x15\x3e\x23\x0f\x60\x88\xcb\x74\xc4\x97\x10\x79\x9d\x72\x06\xe0\x77\xf8\xff\x73\x4a\xd1\xa3\x33\xa4\xfc\xf4\xa2\x47\x52\xd7\xf3\x87\x94\xfe\x15\x82\x9e\xc9\x93\xa2\x9f\x52\xcc\xd3\x0e\x0c\x1d\x42\x84\xc9\x0f\x29\xe4\xa4\x08\x91\x1f\x52\x2a\xdf\xf6\x6f\x52\xfa\x4f\x79\xea\xf6\x43\x2b\xd4\xa0\x08\x5d\x52\xf7\xe8\x40\x4c\xef\x34\xef\x1f\x0c\x1e\xa4\xea\x64\xf0\x41\xda\xed\x7a\x63\x6a\x0a\xf8\xf0\x6d\x4b\x99\x19\x6f\x5f\xd3\xa8\xad\x88\xf8\x10\x6b\x7b\xbf\x2d\x61\xda\xcb\x33\xd3\xa9\x36\x9c\x5b\x35\x89\x7d\x8a\x67\xda\x6f\x84\x97\x0e\x06\x5d\x41\x1d\xac\x90\xa2\x0f\xef\x3f\x5e\x22\x4c\x0a\x43\x95\xa6\xeb\xf2\x35\x34\x2e\x5e\xaf\xcb\x75\x22\x2e\x62\xbd\x74\x8f\x47\x51\x96\x32\xcb\xdc\x0e\xb3\x1a\xe5\x49\x21\x74\x18\x63\xce\x73\x23\x61\xad\xa2\xaf\x12\xc5\x8e\x56\xb0\x1f\x2e\xdf\xbe\xe1\x54\x5e\xf8\x28\x88\xc5\x9d\xd9\x68\x91\xad\x37\x09\x2b\x99\xc5\x85\xe5\xc6\x2a\x96\x67\xf3\x39\xc9\xaa\xca\x07\x77\x9b\x9b\x2c\x2d\x40\xa9\x81\x94\x84\x05\x9c\x57\x95\xca\xdc\x5a\x9c\x80\x9d\xa8\x0c\xf3\x12\x11\xf9\x0c\xf2\x05\x7f\x7c\x29\x1b\x92\xaf\xaf\x38\xed\x54\xb9\xb6\x70\xb3\xa2\xde\x58\x1a\x75\x09\x23\x6d\xf2\xd9\x45\x31\xda\xb7\x02\xe0\x07\x8a\x79\x36\x49\xc2\xa2\x7c\x9b\x45\x10\xb0\xd0\xdb\xed\x09\x2b\xc3\x15\xc4\xe8\x32\xb6\x4e\x0f\x66\xe2\x87\xd4\xbc\x07\x8f\x8b\x37\xd9\x22\x4c\xbc\x6f\x24\x9f\xf3\x26\xf5\x9d\x00\xeb\x3b\x70\x9b\x6c\xf2\x8c\xf7\x1d\x74\x1a\xfa\xb6\xba\x25\xd7\xee\x2e\xc4\x54\x72\xfc\x8c\x17\xe0\xf2\xef\xec\xee\xf4\xf6\xf6\xf6\x74\x99\xe5\xeb\xd3\x6d\x9e\x88\x2d\x3f\x9a\x82\x47\x66\xce\x10\xff\x74\xf9\xdd\xe9\x13\x44\x84\x66\x42\xe1\xed\xd0\x23\xe4\xfd\x9c\x12\xb0\xed\x41\xfc\xff\xd9\x86\x6f\xda\x48\x28\xb6\x8b\x14\x81\x29\x77\xfc\xbd\xd1\xd2\x3a\x21\x3d\xc8\x70\xc7\xbf\xff\xbb\x80\x1b\x38\x23\x03\x4f\x91\x39\xfe\x1d\x7e\x0e\xe5\x4d\xbf\x61\xbe\xbb\xe3\x75\xf2\xd2\x67\xa2\x39\x68\xe9\x4c\xd4\x04\xa5\xcf\xf6\x44\xe1\xc5\x77\x60\x5a\x26\x8a\x20\x95\xf8\xf3\xdb\x37\x48\xf6\xdd\xc4\x1f\xd5\x19\x95\xf6\xd7\x8f\xef\xdf\x89\x76\x3f\xb3\x9c\x0b\x44\x7c\xdc\xd0\x31\xe4\x7d\x84\xb5\x4f\x60\xa4\x3d\x18\x29\x07\xaf\x78\xe5\xb5\xc0\x7d\x08\x20\x38\xaf\x45\x7e\xe0\x03\xd6\xe9\x3f\xbf\x7d\xb3\x27\xcb\x24\x2c\xdf\x0b\x9b\x04\x31\xcf\x6a\x8e\xc0\x13\xc9\x5e\x63\xc2\x76\x73\x4c\x44\xff\xcd\xfa\x4d\xd8\xb7\x9a\x38\x83\x49\x89\xbd\xdf\xac\x56\x2a\x98\x4e\xf3\x84\x0f\x39\x93\xa7\x35\x6f\xac\xd7\x29\x86\xb4\xcb\x3c\x4c\x0b\x2e\x81\x7a\x6f\xac\xdf\x65\x5a\x4b\xb0\x56\x6f\xbd\xbc\x7d\x04\xbf\x24\x9f\xc9\x9c\xdc\x92\x97\x34\x9d\xba\x7d\x4a\xef\x06\x03\xeb\x8e\xba\x64\x3b\x18\xc0\xed\xc1\x65\xbc\xe6\xcc\x8d\xb5\xc5\x64\x41\x4b\x52\xd0\xb8\xaa\x10\x22\x97\xa3\x9c\x85\xd1\x97\x8f\x65\x58\x32\xca\x9e\xdb\xb3\x89\x67\x93\x8c\xb2\xe7\xd4\xb5\xed\xc1\x60\x6c\xdb\xcf\x59\x55\x8d\xed\x09\xa5\x94\x91\x7c\x30\xb0\xe6\xf4\x93\xb5\x21\x97\x70\xd2\x3e\xa7\x6f\xad\x0d\x99\x93\x4b\x92\x61\x92\xcd\xac\xcd\x28\x5e\xaa\xc5\x34\x18\x58\xb7\xf4\x92\xf3\xcf\x3f\xca\xc9\xfc\x01\xec\x50\x2d\xf4\x26\x2c\xca\x53\x95\x0d\x61\x72\x2b\xc4\x79\x73\x25\xfa\x61\x40\x6f\x31\x39\x52\x01\x5f\xa3\x75\x39\xfe\x26\xf2\x63\xe2\x8a\x8e\x56\x15\xe2\x3b\x22\x17\xd6\x37\xc2\xe3\xd8\x4b\x8a\xd2\x4c\xa2\x2f\xf2\xe4\x78\x44\x6a\xb9\x56\x5d\xf1\xac\x97\x74\x3e\x2a\x38\x2c\xc8\x92\xce\x45\xa8\x87\xcf\x74\x3e\x02\x7e\x8e\x64\xb4\xff\x19\x63\xcf\xfa\x4c\x5f\x12\x8b\x55\x55\xff\x25\x97\x7b\x5e\x52\xc4\x04\xc9\xb2\x9f\x83\x4b\x51\x6a\x63\x8c\xc9\x25\xd4\xb3\x2d\x28\xd3\x8f\x10\x33\xd3\x4a\xab\xea\x25\x1e\x22\x44\xb2\xd9\x8a\xd3\xce\x2c\xf9\x2c\xb4\x07\x22\xe2\x2f\xc9\x4b\x72\x19\x60\x8f\x7f\xe0\xbb\x85\x4a\xbf\x24\x2f\xc9\xe7\xa0\xae\xf4\x65\x16\x31\xeb\x0b\x26\x5f\x68\x49\x92\xc1\xe0\x5a\xb3\x7e\xd9\xac\x41\x37\x3d\x93\xa2\xfa\x97\x64\x43\xb2\xd9\xd2\xe3\x35\xad\x47\xcb\x38\x67\x46\xfd\x01\xe6\x35\x59\x75\x55\x2d\xda\xcc\x4b\x07\x98\x9c\x9e\xc2\x7d\x37\x27\x9e\x86\x47\xba\x46\x19\x20\xed\x18\xe3\xfd\xa1\x6f\x26\x10\x54\x18\x11\x4e\x3c\x69\x0a\x71\x49\x3a\xf4\x3d\x45\x80\x3c\xbd\xee\xac\xdd\x9e\xa4\x98\x44\x74\xa3\xfc\xa4\x54\xd5\x86\x5c\xd7\xaf\x83\x81\x15\x19\x5a\xb4\x91\x14\x66\xe0\xa0\x29\xaa\x7d\x30\x93\x15\xaf\xf6\x5b\xb6\x64\x79\xce\x22\x0b\x8b\x68\x6c\x2f\xc3\x24\x99\x87\x8b\x9b\xc2\x42\x59\xba\x60\xbd\x35\x5b\x67\xf9\x17\xc4\x81\xbb\x31\xc0\x0d\x16\x2c\x9f\x39\x37\x34\xe7\xff\xee\xa8\x4d\x6e\x29\x12\x6e\x61\x59\x84\xc8\x25\xdd\xd5\x2b\xc9\xb3\xc9\x01\xda\x1e\xea\xba\x70\xf9\xcd\xa5\x94\xde\x89\x80\x46\x4b\x2c\x82\xaf\xed\xf6\xd3\x92\x7e\x27\xb9\xa2\x02\x4f\xf1\xd2\x2f\x0f\x4d\x71\x68\xe9\xbb\xc1\xb4\xa4\x4b\x9f\xb5\xbe\xec\x1b\x52\x74\x29\xa4\xe8\x72\xcf\x7b\xf4\x22\x49\x9a\x9d\x2a\x3a\x0e\x24\xa0\x4b\xb3\x42\x7a\xf9\x28\xf8\x38\x7e\xdb\xb2\xa2\x3c\x18\x86\x79\x3a\xdc\xe8\x82\x62\x9f\xee\xaa\xca\x62\x74\xee\xa7\x01\xfc\xab\x2a\x46\x3e\xfb\x2c\xa0\xa5\xe2\x0f\xb8\x50\x92\xc7\x11\x7b\x1b\xaf\x65\x30\xb9\xc3\x4d\xfc\x0e\x42\xb0\xad\x65\x0e\xca\x54\xd9\x7a\x6a\xba\x21\x0b\xbe\x71\xdc\xe7\x77\x00\xd5\x52\x08\xa2\x5f\x38\xa3\xe0\x7f\x11\xf1\x22\xca\x20\x10\x92\xea\xe5\x28\x4c\x6e\xc3\x2f\x85\xc5\x7c\xb5\xc0\x5a\x7e\xc2\x48\x38\xe7\x64\xb9\xc3\x65\x4a\x55\xdd\xea\xf8\x2b\x83\xc1\x62\x04\x19\xad\x12\x93\xdc\xb2\x95\xcb\xe7\x3d\x48\xea\xab\xd1\x26\xcf\xd6\x71\xc1\xac\xcb\x9a\xb9\xa2\xeb\x51\x18\x45\x7c\x5d\x8b\x15\x4b\x2f\x81\x9d\x23\x97\x82\xe4\xd0\xcb\xd1\x32\x8c\x13\xb2\x19\x6d\xf3\x84\x5a\x9c\xe8\xc0\x63\x55\xfd\x90\x72\x1a\x52\x4b\xce\x6f\xe1\x28\x5c\xbf\xfe\x98\x12\x60\x48\x86\xe8\xec\x0c\x61\x22\x88\x20\x4d\x47\x6b\x56\x5e\x67\x51\x55\xa5\x52\x2d\x73\xa3\x53\x44\x16\xb2\x19\x29\x3e\xb3\xd0\x07\xee\x75\x1a\x17\x8e\x10\x6e\x4e\xf6\x41\x50\x42\x81\x77\x9b\xd1\x22\xcf\x8a\xe2\xdb\x6c\x1d\xc6\x29\xf0\xd0\x8a\xd1\x87\x11\xb4\x78\x7d\xd2\xc8\x4e\xfb\xc2\x81\xb0\xef\x04\x94\x52\x18\xc8\x60\x10\xfb\xae\x7c\x73\x03\x08\xc1\x34\x0e\xaa\xca\x42\xd7\x65\xb9\xf1\x38\xa1\xe7\xb9\x67\xe8\x89\x8d\x3c\x34\x99\x8c\x11\xdc\x67\x73\xae\xac\x95\x0d\x6a\x6b\xe4\x83\xd6\xf9\x08\x07\x83\xcd\xc8\xe0\xda\x6a\x7f\x1e\x5a\xbc\x50\xf9\x24\x48\xa8\x3e\xfd\x13\xef\x1c\xce\xc6\x21\x0b\x26\x3f\x58\xaf\x53\xb2\x21\x29\xb9\xc4\x44\xac\x74\x89\x2b\x97\xd3\x84\x6e\xa4\xa1\x0a\xa7\xbb\xb6\xb8\xdf\x10\x84\x75\x38\x3c\x0c\x9b\x6a\x19\x1c\xb4\x9e\x4f\xf1\x33\x2a\xb3\x9f\x36\x1b\xad\x55\xbe\x19\x5d\x87\x85\xd2\x5b\xee\x7f\x90\xec\xa9\xc8\x8a\x49\x48\x01\xfc\x8d\x5c\xb0\xc0\xe4\xc0\xe4\xf7\x21\xb5\x3e\xc9\x92\x21\x9e\xa1\x01\xf2\xd0\x0c\xe1\xa1\x1c\xa6\xd4\x47\x15\x6f\x30\x77\xe1\xe2\x9a\x29\xdf\x78\x02\x59\xdf\xd7\xc5\x43\x8d\x96\xef\x53\x82\x1e\x38\x9f\x28\x1a\xfe\x96\x0e\x87\xd8\x0b\x87\x9d\xcd\x20\x9d\x83\x57\xde\x60\x29\x0e\xf9\x84\xc1\xe0\x72\xd4\x26\x52\x16\x7a\xbd\xd4\x1c\xc6\xe9\xc7\x38\x5d\x30\x44\x0e\x8b\x0a\x89\x40\xb0\x0f\x47\xab\x79\x97\xa5\xec\xf4\x2d\xc7\x71\x64\x64\xc7\x98\x58\x35\xd6\xd4\xb0\xe4\x6f\x06\x87\x2f\x23\x37\xa6\x66\x1a\xee\x6e\x4a\x56\x70\xca\xb3\x20\xd2\xa8\x05\x36\xfe\x83\x02\x2f\x40\x12\x40\xe6\x92\x05\x0b\xfc\x8d\xd4\x5e\x2e\xfc\xe6\x97\x60\x76\xf4\xcb\x90\xcb\xf4\x7d\xbe\x68\xcd\xe4\x19\x22\x3d\x34\xfc\x39\x1d\xa2\x69\xef\x37\x6a\x8f\x6c\xb8\x23\xc4\x5e\x5d\x0d\x7a\x84\x02\xa1\xc0\x0e\xfe\x16\x37\x23\xe1\x6a\xa4\xc0\x1d\xfd\xcd\x88\xfe\x0c\x7e\x18\xe3\xa5\xb5\x19\x09\x83\x28\x2e\xd8\x01\xe2\xd4\xaf\x42\x89\x33\x22\x97\x64\x83\xa5\x77\x46\xb1\x80\xf4\x0a\x92\xa4\x16\x4f\x6f\x29\x82\x47\xa4\x3b\xb2\x93\xd4\xd4\x73\x08\x90\x51\xcf\x21\x8a\xe0\x7a\xce\x1e\x5f\xfa\x59\x60\x6d\x54\x27\x16\xf4\x07\xeb\x77\xb5\x4a\xf1\xae\xc1\x10\x3b\x4d\xee\xaa\x96\x42\x15\x3b\xb4\x19\x81\x5c\xc7\x81\x5e\x0a\x06\x9b\x0b\xf0\xd6\x96\x16\xac\x54\x1c\xb7\xb1\xc3\xaa\x4e\x23\x99\x19\xbc\x48\xa9\x92\x58\x1c\xaa\xdc\x51\x07\xa2\xec\xa6\x91\xf5\x99\xe4\x2a\x1c\xdd\x4b\xc1\x23\xc0\x86\x86\x41\xbb\xba\xf7\x72\x9a\x5b\xa7\x0e\x79\x89\xf7\xc2\xc6\x00\xde\xd0\xbb\xac\xa7\xe5\x88\xfa\x20\xe3\x12\xb6\x7f\x2e\x07\xdd\xe3\x37\x4a\x28\xd1\x94\x24\x25\x08\xe4\x27\x0c\x85\x3e\x82\xf0\x77\x54\xf7\xd1\x28\xa4\x2c\x03\x9a\x11\xd7\x57\x8c\xcb\xfc\x9b\xac\x68\x5d\x24\x82\xf6\x2e\x67\x0d\x8c\x34\xe9\x4b\xb6\xae\xdd\x38\x50\xc9\x31\x28\x69\x65\x55\x15\x13\xe5\xc1\x95\x74\x1d\x95\xa4\xf5\x51\x49\x26\x4e\x49\x72\xa2\x10\x22\xd6\xea\x81\x06\x77\xa9\x45\x6a\x31\x00\x29\x3b\xd7\x82\x2f\xe9\x35\x64\xe3\x23\xe9\x6c\xb1\xee\x4c\xbf\x3b\xad\xbf\x34\x44\x68\xd9\x5a\xa7\x8f\x98\x96\xc8\x0b\xa2\xab\xac\xe2\x88\xba\xbe\x61\xf4\x28\x42\x29\xd5\xc3\xd4\xb2\xa6\xa5\x75\xf6\xcd\x3a\x98\x26\xdf\x22\xb4\x8a\x78\xeb\x3b\x10\xf6\xa0\xb1\x87\x4b\x0f\xfc\xe2\x00\x84\xc9\x26\x79\xce\x93\xba\x31\x8d\x7c\xdd\x8d\x71\xc6\xcc\xac\xb5\x0e\x2f\xf0\x3d\x50\x07\xd0\xac\x46\xfc\x09\x61\x30\xb2\x3f\x50\xf3\x91\x28\xbd\x2b\x1a\xee\x37\x4a\x2e\x09\x77\x1c\x3d\x6a\x6b\x95\x54\xac\x54\xda\xb7\x09\x1b\x89\xd4\x97\xe2\x64\x05\x74\x05\xd4\x29\x4b\xeb\x1b\x38\xdf\xcc\x17\x94\xc1\xa6\x99\x8e\x32\xb8\x5f\xa0\xfc\x01\xc8\x04\xc8\x8a\xd2\xd3\x7b\x93\x31\xb6\xca\xaa\xea\xa7\x06\x31\xa9\xaa\x33\x5e\x96\x45\x95\xa2\x45\x67\xf2\x42\xdc\xc8\x04\x9a\x87\xf7\x37\x23\x23\xb1\x9a\x56\x09\xf7\x78\x8b\xe0\x62\x16\x1c\xb1\x57\x55\x6c\xb9\xb6\x4d\x90\x5c\x0a\x70\x31\x9d\x1f\x18\x8e\x37\xdd\xb5\xb5\xd8\x5e\xbc\x83\x28\xcb\xa2\x77\x56\x29\x1d\x44\xcb\x73\xf2\x7f\x80\x17\xd6\x5f\x52\x7a\x66\x51\x7c\x35\xb3\x66\x74\x50\x3d\xc0\xd5\xd5\xec\x6a\x06\x51\xf0\x8d\x05\xc7\xa9\xcb\xc6\x43\x0b\x29\x79\x89\x43\x9f\x8d\x12\xc4\x0e\x2d\xf4\xff\x91\x8a\x30\xa0\x42\xe2\x14\x26\x3d\x43\xf4\x49\xf0\x08\x26\xa3\xce\x85\x0b\x3e\xc1\xdd\xc8\xcf\x5b\x81\x93\xa1\x8d\x81\x93\x1d\x7a\x8c\xe9\x08\x32\xf5\x25\x3f\xf3\x8b\x52\x5c\xe0\x38\x80\x67\x68\x9b\x27\xa0\x4b\xdb\xba\x17\x97\xcc\x40\xdf\x6a\x6c\xf6\xc2\xba\x58\x9f\x2d\xff\xe1\x79\x1f\xc2\x83\x41\xdd\x20\xf0\x57\x83\x01\xe2\xbf\xc6\xa9\x74\x55\x21\x31\x0c\x70\xa8\xd0\xd8\xb2\xad\x4c\x75\x5f\x81\xb3\x75\x09\xd9\xfa\x8a\x67\xad\x04\x0b\x7b\xad\x14\xb2\x9d\xa5\xfe\x36\xa0\xfc\x9f\xe6\xe4\x7e\x01\x4e\x0e\x0d\x33\x9d\x5d\x81\x2b\x6d\xf1\x8f\x0a\x6c\x8a\xb9\x93\xd9\xe1\x5e\x33\xe3\xeb\xab\xa6\x74\xbe\x5c\xae\xe2\xf8\xce\xd8\x19\x34\xa1\x93\x7e\xd9\xf9\xa6\x6e\x65\x43\xd4\xbb\x0d\x8b\x5e\x9a\x95\x3d\x8e\x4a\x70\x96\xc4\x81\xb0\x27\x4d\xa0\x50\xb1\x9d\x91\x90\x32\x3f\x0b\xc0\x0d\xb4\x59\x75\x51\x1f\x97\xef\x49\xac\x64\x41\x23\x03\x14\x08\x49\xea\x67\x01\x8c\xaf\x09\xde\xbc\x05\xad\x7f\x68\x2b\x37\x50\xb8\x6d\x42\x9f\xcf\x66\x68\x09\x9b\xa1\x82\x86\xb4\xdc\x1b\x16\x75\x4a\xf7\x45\xac\xa7\xbf\xa6\xe4\xfb\x94\xfc\x3d\xa5\x36\xf9\x1b\x97\xb0\x5f\x80\x6c\xf0\xb3\xb8\x94\x35\x8e\xe4\xe5\x22\x01\xe6\x87\x71\x2e\xec\xaf\x29\xfe\x6b\xea\xb3\x40\x2e\xd0\x69\xfb\x1e\xf8\xee\x3a\x6f\x57\x37\x3b\x80\xb4\x08\x4d\x20\x0f\xb9\x07\x83\xf7\x7c\xf1\x7d\x67\xe1\xbd\xf7\x9e\x7c\x7f\x70\xd7\xcc\xab\xb4\x9a\x0a\xcb\x59\x5e\xd0\x7e\xff\xfb\x74\x30\x40\xb7\x71\x79\xfd\x32\x67\x11\x4b\xcb\x38\x4c\x0a\x14\xa7\xbd\xef\x53\x59\x8b\x36\x70\xfc\x77\x78\x07\xf9\xc9\xf7\xa9\xbe\x00\xa9\xb7\x12\x53\x49\x85\xb3\x41\xa9\xb9\x85\x34\xbd\x41\x64\x79\x21\x2f\xe5\xbb\x37\x8a\x66\x40\x72\x9a\x8a\xbe\x8b\x80\xc5\xdb\x82\xe5\x69\xb8\x66\xb3\xed\x28\xdb\xb0\x54\x86\x30\x26\xa9\x24\xfe\xb0\x81\x90\x3a\x1b\x50\xe1\xa2\xb8\xcd\xf2\x08\x7b\xf7\x14\xe1\x48\x7e\x77\x9d\x8b\x73\x70\x61\x90\xcd\xe7\xc9\x4c\xdc\x82\x8d\x5e\x9d\xe0\x17\xc1\x34\xd5\x87\x1e\x83\xc1\x76\xd4\x3e\x2a\xe9\x4a\xb3\xea\x22\xb0\xb0\x4c\x18\xc5\x3e\xfa\xf9\x54\x72\xe4\x2c\x3a\x05\xd7\x02\xe0\x74\xb2\x2b\x9d\xa2\x9f\xdf\xbe\xf9\xa1\x2c\x37\xf2\x83\xe1\xdb\x05\xba\x1e\xe3\xed\x21\x83\x5f\x90\xd8\x2f\x02\xc5\xb0\x26\x78\xb7\xdf\x0a\x36\x36\x6d\xc8\x47\x62\x6d\x56\x95\x88\x10\x66\x46\x49\x50\x74\xb8\x10\xa7\x80\x22\x26\xf3\xd2\x02\x27\x9a\x55\x35\x01\x07\x19\xe6\x56\xc9\xbf\x51\xa1\x22\xbb\xed\xda\x29\xe1\xc2\x36\xdb\x90\xbf\xa5\x83\x81\x14\x59\xff\x9a\x82\xd8\x17\xe3\x49\xbf\x59\x1b\x07\xa7\x12\x28\x38\x37\xbd\x5b\x0a\x7b\x9d\xad\x3c\x10\x22\x09\xdd\x8e\x3a\x4f\xd0\x2c\x7c\xe8\x59\x7a\xdb\xb8\x14\x93\xa1\xfe\xef\x4a\xda\x4c\x17\x40\x5d\xe8\x36\x78\x9a\x84\xde\x06\xef\x16\x14\xa1\x7d\x01\x4c\x84\x5c\x86\x20\x47\xd6\x73\x3a\x73\x5c\x77\x4c\x29\x2d\x20\x12\x81\x6b\x4f\xb0\x57\x50\xd1\xd0\xcc\xb5\x6d\x6f\x62\x4f\xf6\xb2\xba\x08\xef\xe2\xaa\xca\xb8\x80\x10\xe1\xfd\x72\x30\xc8\xac\x02\x0e\x5a\x13\xbc\x57\x58\x3a\x6b\x03\x78\x66\xc8\x30\x39\xf6\xac\x90\x0e\x87\x7f\x4f\x01\x9a\xd6\x5f\xd3\xaa\xb2\xfe\x0a\x97\xc3\x42\x99\x4f\x28\x5e\x58\x7f\x4b\x31\x26\x00\x64\x9a\x63\xd2\x39\x2b\x39\xf6\x72\xab\x8b\xb7\xc8\x07\x83\xbc\xcd\x54\xfc\x2b\x25\x2c\x27\x65\x2e\x6e\xba\x85\x79\x51\x55\x5c\x67\xb7\xd5\x75\x1c\x31\xfc\xe0\x8c\xa4\x79\xcb\xfc\x6c\xe6\x49\x0b\xb4\x0a\x6b\xbb\x35\x61\xb2\x56\x1b\xb8\xe5\x39\x3d\xfb\x6d\xcb\xb6\x22\xd2\xe8\x83\x33\x12\xe7\xd4\x7f\x10\x90\x2c\xa7\x70\xaf\xe6\x77\x1d\x72\x0a\x05\x27\x61\xbf\x7d\xcb\x98\x54\x6b\xcc\x69\x3a\x5a\x40\x80\xc6\x98\xa6\xb9\x38\xe1\x2a\xb1\x30\x14\x96\x67\x54\x0d\x1b\x0f\x16\xcc\x10\xf2\x84\x85\x87\x08\xdf\x6e\x7e\xab\x2a\xfe\xa5\x0f\xe1\x25\x86\x5c\xe2\x51\x55\x4a\xc5\xc2\x54\x04\x8e\x66\x60\x26\xe1\x90\x2d\x75\xc1\xa0\x2c\x1c\x0c\x42\x7f\x1c\xf0\x72\x78\x07\x32\x12\x7f\x25\x31\x8d\xe1\x12\x3d\xa4\xc3\xbc\xaa\x9c\x69\x94\xf5\xc0\x8f\x01\x1a\x9d\x23\x12\x9e\xd1\x82\x68\x25\x7f\x55\x31\x09\x87\x19\x9e\xde\x5e\xc7\x09\xb3\x8a\x3e\xa5\x56\xa1\xc6\x77\xc6\xbb\xe3\xf4\x01\xdf\x4e\x4f\xb7\xda\x06\x35\x86\x53\xa3\x94\xe3\x70\x5e\xd2\x61\x58\x55\xbc\x31\x9b\x93\xc0\x34\x2e\x69\x46\xd2\x11\x4b\x23\x71\x3c\x17\x0e\xad\x58\xda\xd4\xc4\xbe\x1b\x78\x43\xfe\x1f\x93\x74\x1f\xc0\x36\xf5\x22\x8d\xd7\xc0\x1b\x19\x61\x19\x7f\x24\xbb\x92\x43\xfb\xe0\xe4\xf9\xc0\x9c\xd5\x2a\xe1\x6a\x41\x1c\x4a\x78\x70\x3b\xaf\x75\x6e\xa6\x6d\x07\x29\xac\xb6\xb2\x53\x0e\x51\x40\x43\x29\xcb\x21\x8e\x70\x0e\xc7\xd5\xbe\x7c\x1f\x6d\x53\x08\xb5\x6b\x95\xc2\xf3\x5f\x67\x0c\xdc\x72\x16\xe7\x3a\x23\xc3\x5e\x9c\x2b\x3f\xaf\x92\x1b\x05\xa4\xa1\xaf\xc9\x6b\x33\x50\xdf\x22\x4b\x8b\x32\xdf\x2e\xca\x2c\xf7\x5e\x93\x38\x8d\x0f\xdd\x62\x08\x99\x58\xd8\xc4\x25\x6c\xad\x22\x1d\x6e\xf2\x6c\x43\x53\x15\x84\xa2\x88\xd3\x15\x5c\xe9\x15\xb7\xa0\x87\x2e\xae\xbe\xc5\xb5\x26\x2d\x55\x8c\x39\x3e\x43\x52\x8b\xef\x56\xe2\x33\xa0\xae\xa8\x24\x8d\xa8\x08\x69\x2d\x67\xae\x8d\xba\x69\x8d\xba\x7b\xb2\xd8\xe6\x87\x8c\x3a\x0c\x6d\x23\x35\x83\x55\x27\xeb\x88\xcc\x32\x7a\xe2\x0c\xfe\x4b\x6f\x92\x46\x91\x3a\xf8\xbf\xfe\xbc\x27\xf9\x36\xed\x0c\x65\x70\x7f\x53\x22\x25\x2b\xa8\x1c\xaf\x72\x3a\x17\x6d\x73\x40\x30\xb0\xcc\x07\xa0\xf9\x06\x00\x03\xe5\x48\xb0\x9d\xfd\x11\x23\x36\x71\xba\xbf\x61\x4f\x79\x1f\xcc\x6e\xa9\xa5\x20\x79\x5a\x43\x1c\x3f\x2a\x87\xf5\x5b\xb3\x92\xa2\x64\x1b\xe9\xd0\xcc\x4c\xaa\x4d\x98\xc5\xb2\x54\xf5\xcb\xd8\x0d\x20\x85\x15\x10\x26\xb7\xb8\x1f\x90\xfa\xb3\xbc\x88\x30\x91\x6f\xc4\xb1\xcd\xc0\x45\xe3\x13\x31\x2a\xa3\x3b\xed\x15\xb5\xa5\xe9\xad\x2e\x5b\x1a\xf7\x4d\x0c\x7a\xec\x33\x31\x1f\x55\x25\xde\x95\xc2\xb4\x70\xba\x60\xa6\xa9\x9c\x7c\xf9\x2a\xed\x69\x49\x8b\xe0\x03\x41\x08\x93\x72\x30\x10\x86\x29\x60\xcd\x57\x7a\x36\xf6\x9a\xed\xb4\x0d\x17\x84\x5e\xc8\x1d\x00\x53\xb7\x70\x98\x04\x11\x1f\x1a\x1d\xb4\x3a\x7a\x68\x5a\xab\xc9\x82\x2d\xa3\x34\x99\x8a\x0d\xcb\xdb\xc6\x18\x18\x9f\xbc\x21\x83\x75\xd5\xee\x3a\x98\x55\xde\xee\xd5\xdc\xc8\x19\xd4\x61\x96\xe9\x61\xea\x1b\xb6\x14\xa1\x0c\x5b\x81\xf7\xa0\xcb\xa6\x89\x26\x24\x34\x7c\x51\x76\x35\x6d\x86\x9a\xf4\x91\xd8\x63\x11\x41\x7c\x97\x45\x04\xf1\x7d\xf6\x40\xe9\x46\x29\xef\x0a\xd5\x9b\x69\x97\x0a\x23\x48\xd5\x4d\xcc\xa8\xaa\x2e\x33\xe0\x23\x4a\x5a\x42\x29\x2f\x84\x1d\x81\x59\xbf\x0b\xc6\x80\x88\x7a\x0f\xd5\x1b\x97\x61\xc4\x2e\xb3\x3f\xd0\x1d\x94\xe7\x00\x2f\x31\x60\x99\xb6\xf0\x25\xb6\xb2\x25\x16\xd6\xfa\xba\x51\x6d\x30\x5c\xee\xb5\xca\xa1\xfc\x76\x5f\x3c\xe1\xb8\x78\xb5\xde\x94\x5f\xb4\xf6\x2c\x78\xe2\x1a\x15\x1b\xc6\x22\x4b\xe4\x25\x21\x3d\xf0\xa5\xf0\xa3\x00\x80\xa1\xa2\xb4\x27\xbc\x2c\x9e\x72\xe6\xb7\x0e\xe4\x26\x42\x17\xc6\x69\x5c\x5c\x83\xe9\x4b\x09\xa1\x43\x2d\x90\xf4\x94\xce\xe8\x48\x7c\xa7\x21\xe1\x5c\xdf\x08\x38\x1d\x38\x44\x9f\xd5\x96\xd5\xa1\x84\x30\x7c\xb4\x64\x26\x12\xca\xc0\xa6\x47\xec\xa6\x3a\x2e\x40\xa1\xf9\xa9\x0e\xf1\xc8\xdf\x08\xe7\x17\x55\x6f\xba\x54\xf4\xa4\x62\x9c\x52\x04\x10\x9e\xd1\xfb\x8e\x24\x84\xa2\x47\x1c\x5b\x96\x77\x88\xf8\xc1\x91\x40\x4b\xa2\xfd\xbe\x2d\x4f\xb8\xfa\x10\x4e\x77\x88\x6a\xb6\x0e\x09\xc0\x97\xf1\x9a\xe5\x05\x81\xcb\xba\x1a\x86\x42\xe2\xc3\x21\x58\xeb\xf1\xff\xd0\xf3\xc1\x20\xb6\xf8\x8b\xa1\xc2\x0c\x96\xa2\xe1\x61\xc6\x3c\xaf\x6d\xf9\x54\x21\x11\xb2\x45\xb9\x5b\x9b\xa6\xa7\xa7\x53\x9c\xf1\x22\x7c\xd1\xf5\x85\x23\x5f\x21\xf8\x40\x6f\xe1\x13\xf4\xb7\x0f\xab\xc3\x82\x04\x8e\x61\x62\x4e\x73\x4c\x4a\xda\x77\x48\x06\x8c\xcc\x82\x59\x29\x71\x30\x9e\xc2\xc9\x62\x2e\xdc\xe2\x45\x4c\x40\x4b\x78\x36\x05\x57\x17\x62\xee\x3b\x83\xaf\xa8\x23\x1a\x46\x25\x74\xef\x03\x2d\x84\x0b\x32\x21\xc6\x59\x5d\x5f\x41\x18\x71\xee\xb2\x7e\x15\x00\x0f\x5a\x10\xcf\x67\xca\x43\x98\x67\x0b\xe0\x28\xcc\xec\xdb\x1c\xd3\xcd\xbe\xc3\x44\x73\x9e\x59\x4d\x04\xfc\x1a\xbe\x3c\xc0\x9d\x65\x0d\xdc\x52\x00\xb7\x14\xc0\x95\x5e\x92\x39\x4c\xcb\x40\x23\x3c\x47\x35\x48\xa8\x61\x0a\x6e\x0f\x15\x3c\x4b\x80\xa7\x0a\x70\x14\xca\x00\x47\xb9\x5f\x06\x83\x01\xff\x2f\x7b\xdb\x78\xa9\x7b\x84\x15\xd6\xab\x51\xed\x9b\x71\x56\x8a\x24\x8e\xd8\xb7\xd9\x6d\xea\xfd\x6e\x09\x6a\x8a\x09\xa4\xfd\xb4\xe1\x29\x40\x58\x65\xca\xa5\xf0\x9b\xf0\xbb\xa5\xc8\x2f\x26\x9c\xa2\xbd\x4e\x6b\xa7\x05\xa2\x86\x3d\xa4\xbf\xdf\x96\xc6\x07\xa8\x48\x7c\x90\xf5\xd4\xdf\x64\x75\x5f\x11\xfd\x82\x1d\xd2\x4b\x45\x07\xb5\xc2\xb5\xb4\x67\xe4\x94\x8c\x76\x3a\xf5\xe3\x10\x3f\xd4\xfa\x99\xb5\x88\x9a\xb7\xd3\xb7\x71\x29\x97\x6f\x07\x83\x52\xda\x56\x1b\xec\xfc\x60\xc0\x88\x62\xb1\x3c\x46\x04\x83\xe6\x89\xbc\xa5\x32\x53\x30\x4c\x2b\x06\x83\x52\x13\xc0\x5c\x33\x67\x54\xec\xf9\xd9\x72\x39\xb3\xbd\xda\x24\x5f\xf9\x00\xa8\xf9\xc1\xfa\xd1\xab\x1f\xf9\xd2\x97\x4c\x03\x1f\x73\x31\x33\x5f\xfc\x3a\x9f\x08\x77\xa1\x3e\xd4\xbe\xdc\x94\x37\x00\x81\x90\x55\x95\xd7\xa4\xd8\x06\x17\x03\xf2\x5d\x2c\xc5\x7c\x94\x25\x11\xcd\xb5\x6e\x08\xa9\x1f\x69\xd3\xca\xd0\xbc\x15\xe3\x85\xf0\x60\x00\xbf\x06\x6e\x12\x59\xf7\x21\x95\x90\x1f\x38\x6b\x2d\xf7\x7d\x90\x1d\x76\x49\x9c\xb2\xb0\xd3\x85\x10\xdb\x13\x90\x2a\x3a\xbe\x8d\xce\x4f\xdf\x86\xe5\xf5\x68\x91\x15\x16\x7b\x04\x8f\x1f\x5e\xe3\x33\x57\xb0\x14\x82\x10\x50\xa9\xc6\x7d\x47\xdb\xcc\xa7\x48\x1e\x95\xf1\xe2\xa6\xbd\x21\x32\x41\x7e\x24\x29\xc9\xa9\xa0\x1f\xff\xaa\xb5\xf0\xa7\xf9\xb3\x3a\x80\xd9\x70\x88\x19\x4d\xb9\xfc\xc6\x2c\x5c\x55\xfc\x49\x90\xd4\x54\x2d\xf5\xfc\xf4\x94\x38\xb5\x67\x22\xc0\x37\x60\x06\xb3\x8d\x85\xc9\xbf\x52\x5a\xee\x75\x6f\xd6\xac\x19\xbb\x93\x59\x82\xd8\x8a\xce\x28\xa9\x4e\x18\x4f\xde\x09\xae\xde\xc2\xaa\x78\x9c\x96\x2c\xff\x1c\x26\xd4\x19\x13\x23\x83\x39\x3e\x96\x57\x95\xc5\x72\x5a\xb0\xf2\xb5\xcc\x6d\xd5\x90\x68\xd5\x83\x75\xcd\xbc\xaf\x0d\x44\x48\x58\x98\xeb\x0a\x58\x8e\x09\x93\x2e\x4b\x89\x89\x8e\x74\x57\x24\xd9\xad\x77\x61\xdb\x64\x19\x16\xa5\xe7\xda\x76\x1d\xe7\x00\x1c\xe5\xd4\x7c\xb1\x38\xcf\xf9\x6a\x9b\x4b\x49\x20\xa2\xee\x10\x98\xc2\x47\x5d\x3d\x89\x5d\x9e\x10\x20\xcc\x0c\x27\xe0\x7b\x1d\x70\x4d\xb1\x76\xc2\x44\x93\xb6\x2e\x0f\x0f\x9c\x3b\x37\x02\x15\xd4\xde\x4c\x3b\xdc\x85\xc9\x1a\xb9\x4c\x24\x6c\x3a\x4d\x7f\xe0\x53\xed\x64\x8e\xee\x38\xff\x63\x93\x84\x2d\x4b\xcf\xde\x93\x4c\x39\xfc\x56\x76\xf9\x0d\x6f\x09\x70\xfa\x82\xb5\xa7\x8b\xb0\x7d\x5b\x49\x1a\xae\xdf\x49\x86\x67\x96\x24\x3e\x19\x97\x72\xbf\xc9\xb6\x69\x14\xa7\xab\x97\x49\xcc\xd2\xf2\x47\xb6\x28\xfb\x94\xfe\x02\xea\x52\x47\xbe\x5b\xe0\x54\xf3\x67\x2b\xc4\x04\x3a\x1a\x8f\xca\x6c\x33\xb4\xf2\xd1\x26\x5c\xb1\x5f\xc4\xc0\x00\xef\x95\x00\x81\x4f\xad\x74\xb4\x80\xf2\x97\xd9\xa6\xaa\x6c\x2c\x86\x16\x83\xed\xbf\x2a\xf9\x73\xbb\x24\x17\x32\x8c\xa2\xfc\x95\x97\xdd\x63\x2f\x06\x1c\x91\xd3\xb3\xd3\xd0\x3c\x12\x6a\xa8\xb6\x88\x55\xf6\xbe\x08\x4f\x51\x51\x86\x65\xbc\x00\x8f\x1b\x32\x0a\xff\x97\x84\x69\x8b\x60\x8a\x20\xc4\x7c\xfc\x99\x21\xc3\x58\x43\xfa\xb3\x2d\x68\x28\x1b\xb7\xb0\x74\x3a\x22\xea\x07\xb5\x53\xe1\x04\x50\xa6\x80\xf5\x32\x26\x0b\x6a\xd5\xfe\xa5\x84\x93\x0f\xb4\x8c\xef\x44\xec\x6b\xc9\x48\x29\xe7\x88\x42\xcc\x24\xfe\x96\x24\x01\x7e\x7e\xea\x10\x38\x07\xe6\x0b\x63\xba\x98\x59\x1b\x1a\x1a\x66\xcb\x24\xa6\x1b\x0e\x7d\x92\xd1\x8d\x70\xc7\xe0\x59\xb1\xe9\x3a\x64\x8b\xab\xca\x26\x0d\x6f\x22\x09\x86\x19\x38\xdc\xbd\xac\x92\x4a\x87\xcb\x7c\xb3\x2d\x30\x26\x82\x4f\x2c\x47\xc0\x0e\x59\x4b\xfe\x2b\xde\x4e\x0b\x98\xf3\xb8\xce\xc2\x1b\x87\x3c\xe0\xce\x41\xbc\x9f\x16\x62\x82\x33\x4c\xd0\x96\x93\x78\x14\xa7\xbd\x72\x56\x8e\xe0\x45\x35\xb5\xc4\x5e\x08\xe0\x5a\x4a\x31\xd0\x10\xaa\xb4\x77\x2e\x83\xe8\xb4\x5d\xea\xc1\x5c\xb7\x97\x4c\xde\x8a\x39\x5a\x43\x5b\xce\x4d\x6e\x62\xc3\xac\xa4\xf9\x31\x5c\xf7\x64\xe4\x02\x39\xe3\x1f\xa4\xa3\x36\x52\x9a\xa9\xe2\xea\xa9\x0e\x38\xc0\xd7\xaa\x30\x92\x01\x9b\x7e\xed\x6e\xc2\x02\xe7\xf2\x1c\x74\x1a\x47\x20\xab\xb0\x9c\xbe\xcc\x36\xc2\x74\x1a\x38\xcd\x54\x00\xaf\x2b\x23\x5f\x0a\x75\x4e\xb9\x0c\xc5\xc4\x40\xed\xa7\xf5\x20\x85\xa1\x36\xf8\x20\xeb\xab\x75\x27\x67\x47\x34\x70\x90\x17\x1c\x93\xc9\x33\x70\x62\x0e\xfa\x2b\x2d\x87\x9b\x7e\x07\x1b\x60\xab\xaa\xbf\x4f\x85\xa1\x6f\x23\x38\x83\x00\x14\x28\x3b\xaa\x35\xd9\xb9\x66\xc1\x35\xa1\x59\x9f\x3e\xd6\xab\xaa\xbf\xb7\x59\x5f\x4d\x42\x3c\x64\x50\x17\x44\x34\x55\x12\xe9\x92\x5e\x35\xad\xd5\x35\xe9\x38\xfb\x45\x69\x48\xe0\xe9\x21\xc3\x1a\x7f\x85\x07\xb6\xfa\xb2\x8f\xfe\x6c\xb8\xfb\xc8\x60\xb3\x08\x67\x42\xb6\x9b\x71\xe1\xcd\xab\x29\x77\x9b\x84\xfb\x71\xe0\x31\xfe\xef\x73\x16\x47\x10\x5d\x53\x8d\xc2\xca\x67\x8b\xd2\x0a\xb1\x41\x32\x2d\xec\x65\x24\x9f\x65\x9e\xf9\xe1\x92\x33\x19\x18\x2a\xa1\x19\xb8\x60\x8b\x0f\x5c\xb0\x49\x07\x40\x26\x14\xa5\x9b\x30\xed\x7e\x05\x90\xce\x93\x4e\x58\xda\x20\x33\xc2\x3b\x4a\x97\x00\xe0\x47\x18\x0d\x99\x52\x39\xf2\x52\x82\x90\x87\xc0\xcb\x35\x1a\x32\xa3\x02\x38\xab\x11\x10\x8e\x4d\x08\xd7\xd0\x6b\xf7\x96\x33\xaf\xc6\x71\x8e\x16\xee\x63\x2c\x7c\xe6\x58\xb1\x74\x99\x94\xc1\xef\x4c\x62\x37\xf2\xe4\x1a\xaa\x95\x19\x8e\x4d\x9e\xa9\x97\x31\x35\x15\xc2\x44\xc8\x3f\x2b\xc5\xb3\xf4\xf8\x94\x21\xb1\x6b\xa1\x21\x0b\xbc\xa7\xcd\x08\x1c\xa0\x21\xd1\xde\xa5\x81\x73\x5d\x87\x77\x56\x3a\x9a\x67\xd1\x17\x50\x44\xc8\x92\x84\x97\x27\x59\xe3\x4d\x65\x10\x2b\x41\x65\x68\xbe\xd5\x8d\x63\xec\xc5\x2a\x84\x12\xdc\xdf\x90\x9c\x14\x60\x91\x20\xaf\x5d\xe0\x78\xbf\xc0\x7b\x92\x92\x70\x16\x7b\x25\x09\x35\x22\x68\x4e\xa8\x88\x7f\x67\x1d\xba\x10\x65\x1d\x58\x41\x51\xee\x30\x8d\x3e\xb2\x64\x29\xed\x38\x65\x2c\x51\x72\x20\x91\xad\xb3\x68\x9b\xb0\xc1\x40\xfd\x1e\xc9\xc0\x99\xbd\x2c\x2f\x8b\x59\xf3\x95\x2e\x4a\xcf\x62\x23\x11\x07\x8e\xb2\xd1\x03\xba\x28\x49\x47\xe8\xec\x88\x2d\xe3\x94\x0d\x06\xe2\x77\x14\xae\x23\xf5\x6c\x21\x61\xa0\x81\x88\x1f\x74\xf8\xf4\x59\x94\x7b\x8c\xf7\xd6\x2d\x4c\xb4\x60\x00\x44\x7c\xeb\x79\x98\x17\x6d\x41\xe1\x8b\x99\xa0\xcd\xa3\x12\xeb\x5a\x5e\x99\x88\xe3\x27\x7a\xbd\x4f\x0c\xe1\xa3\xcc\x84\xf1\xd8\x21\x54\x11\x1a\x1a\xc5\xb4\x44\x99\xec\x2d\x4c\x3e\xd7\xd9\x13\xa3\xad\x6b\x2b\xd4\x5d\x9f\xfb\x61\x50\x55\x68\x10\xae\x37\x53\xb4\xe7\xfd\x5b\x49\x93\x11\xd0\x7f\x11\xe9\x04\x3d\xe3\xcf\x49\xc9\x1f\x9f\xf3\xc7\x15\x7f\x7c\x88\x1e\x7a\x68\xf0\xdb\x36\x83\xf4\x87\x3c\xfd\x2f\x77\xee\x63\xfe\xf2\xff\xc4\xcb\x85\xcd\xb3\xd1\x87\xde\xc3\xc1\x5f\xee\xc6\xdf\x4e\x1f\xee\x49\x48\xcf\xfc\xc1\xb3\xe7\xe8\xe1\xff\xa3\xc1\xd9\x8a\x2c\xcc\xd7\xe9\x4a\x6e\xe5\x75\xbf\x43\x32\xaf\xf7\x88\x1b\x4e\xfe\xe6\x58\x46\x8b\xad\xa1\x73\x1d\x16\xef\x6f\x53\xe5\x58\x4c\x70\x0a\x73\x72\x03\x3e\xa3\xfd\x9b\x80\xce\xfd\x9b\x00\x0b\xc3\x9d\x88\x1e\x94\x56\xb0\x9d\xae\x6a\x30\x47\x53\xb1\x27\xd5\xfd\xd0\xf0\x36\xf0\x46\x21\x4e\xb8\x9f\x32\xeb\xec\xee\x0c\xe2\x05\xfd\x51\x99\x13\x55\x68\x30\x40\xbe\xc0\xe3\x9e\x62\xac\x02\x9e\x41\x4a\xc5\x21\x67\xf2\x57\x06\xd7\x45\x19\x74\xea\x8e\x02\xe3\xa7\xbc\x21\x54\xd5\x61\x7b\x50\x77\xed\x4a\x5e\x35\x38\xd3\xed\x41\xc9\x66\x63\x5e\xdf\xd9\x43\x73\xf0\x8d\xde\xf1\xb9\x28\x16\xe1\x86\xbd\xba\x03\x47\x01\xbc\x03\xba\xa5\x39\xf0\x55\xf3\x5e\x9c\x16\x65\x98\x2e\x78\xed\x89\x92\x29\xe6\x1a\x8a\x42\x4b\xa5\x3f\x1f\x0c\xec\x3e\xa5\x73\xac\x10\x76\x3a\xa7\x08\x0d\xe7\x53\xe5\x41\x46\xec\x99\x73\x3c\x9b\x7b\xf3\x3a\xae\x05\xb9\xc6\xa2\x43\x70\x38\xdd\x01\xd5\x7e\x28\x2a\x0e\x67\x7d\xdb\xbb\x03\x4d\x25\x9b\x52\x1d\x54\x84\xa7\xf2\x31\xc9\x6e\xad\xf6\xd6\x17\x4c\x36\x47\x16\xdf\x8a\xa3\x19\xec\x1c\xd3\xf9\x60\x30\x17\x4a\x85\x6f\x80\x1a\x58\x21\x35\xde\xc9\x6a\x48\x51\xef\xb4\x87\x86\xe1\x10\x79\x68\x28\x3f\xbd\x04\x87\x9a\xf5\xad\xed\x82\x82\x0d\x9b\x81\x65\xc6\xbd\xa9\x71\x46\x78\xb2\xc2\x24\xa2\xf6\x34\x7a\x76\xad\xce\x06\xa2\xe1\x10\x03\x37\x7a\xed\x47\x41\x40\x17\xe2\x77\x1a\x2a\x8f\x25\x49\x9c\x32\x71\xbf\x49\x43\x71\x1a\x2a\xbc\x79\xd2\x66\x57\x60\x2d\x5f\x53\x14\x31\xa1\xad\xc5\xc7\xb9\x8c\x13\xe0\xa2\x7a\x75\x1d\xbd\x35\x2b\x8a\x70\xc5\x7a\x29\x4f\x17\xe7\x4d\xbd\xa2\x0c\x17\x37\xa6\x07\x88\xa9\x41\x8b\xc4\xc8\x6a\x9b\x29\xa0\x34\xbf\x1b\x94\x86\x5c\x1b\xa0\x5d\x59\x21\xb9\x91\x94\xed\x9a\x25\x1b\x96\x17\x34\x04\x33\x3a\xe5\xc8\x18\x74\xac\xe8\x0d\xa4\xcd\xe5\x25\xaa\x2e\x3e\xe7\xd3\x1d\x8e\x72\xb6\x8a\x8b\x92\xe5\x3f\x40\x0d\x16\x12\x35\xbd\x8d\x0b\x10\x13\x88\x89\x1b\xf1\xd2\x72\xfb\x87\x3e\x14\xa4\x0a\x7a\xca\x6e\x7b\xcc\x42\xb2\x64\x4f\xd4\xe3\xf5\x1e\xc2\x74\x3e\x44\x78\xba\xc7\xd3\xc3\xe6\xc0\x6f\xd5\x0f\x47\xda\xe4\x84\x66\x27\xe6\xfc\x66\x14\xa7\x10\xf0\xd6\x58\x94\x78\xb7\x27\x29\xbd\x19\x2d\xd3\xe9\xd2\x9a\x63\xb0\x47\x3d\x99\x1b\x07\x5f\x0a\x90\x7d\x8e\xbc\xf3\x59\x2a\x6f\x47\xfb\x0e\x7f\x15\x87\xef\x3c\x7d\x21\xd3\xef\xf8\x42\xb1\x9f\xcd\x15\x96\x87\x0a\xac\x82\x9b\xe2\xbd\xf1\x54\x5e\xbe\x50\x3b\x07\xc4\xb3\x9a\x60\x53\xd8\x7f\xc3\x91\x28\x25\x0b\x3a\x57\x23\x21\x8c\xda\xa4\xa4\x08\x91\x68\xba\x84\x35\x66\x85\x34\x6c\x74\x7f\xae\x4c\x71\x22\x9a\x5a\xe2\x05\x63\xa9\xe4\xd1\x41\x85\x70\xbc\xb4\xf8\x6a\xc5\x6a\xad\xac\xea\x38\x40\xec\xd9\x6a\xca\x86\x43\x1c\x81\x81\x24\x28\xa1\x52\x46\x22\x81\xd8\x14\x3c\xf1\x91\x08\x8c\x62\x28\x33\x96\xfa\xa9\x83\x49\x39\xa4\x37\x56\xe8\xb3\x80\xec\x40\x85\x3e\x32\xdd\xba\xac\xe4\x9d\x48\x6b\xa7\xb0\x56\x7c\x3c\xa2\xb1\x1b\xf6\x85\xae\xc8\x91\x46\x75\xf5\x2b\xa3\x7a\xc2\x7b\x3a\xb5\xe5\xb1\x7d\x49\x17\xcd\xf9\xec\x95\x9d\xa0\x8f\x97\x88\x9c\xb4\xb6\xb7\x6e\xb8\x4a\xb4\x98\xf3\x4e\x5f\x8f\xe2\x74\x91\x6c\x23\xf6\x2f\x96\x67\x83\x41\x3f\xac\xaa\x48\x91\x46\x2b\xc4\x33\x3d\x5f\x72\xe6\xf9\x34\xca\xb5\xd4\xd5\x89\x6d\x9a\x80\x97\x82\x26\x12\xeb\xdb\x38\x89\x51\x3e\xef\x6c\x60\x50\xab\x39\xd9\x2d\x53\x4f\x63\x39\x91\xbf\x1e\xc7\x6e\xc2\x7b\xe9\xdd\x40\x67\xf7\xdd\xad\xde\xc6\xe5\x01\xd6\x1d\x19\x3b\xdf\x37\xcc\x01\xd6\x9b\xcb\x32\x15\x3b\xe3\x61\xf5\x49\x76\x74\x59\x0a\x04\x15\x87\x0f\xe2\x6d\x94\xb0\xcf\x2c\x99\xc1\x41\xc7\xeb\xb4\xb4\xcc\x54\xe2\xd8\xd8\x73\xa6\xe1\x28\xc9\x56\xd6\x82\xf0\x35\x54\x53\xa4\x50\xf4\xfb\x06\x3e\xf2\xc7\xbd\x68\x64\xb7\x27\x11\x4d\x08\xa3\xd7\xd3\xc5\xe8\x1f\xaf\x7e\xfc\xf8\xfa\xfd\x3b\x8a\x9c\xd1\x78\x64\xa3\xe9\x62\xf4\xf2\xfd\xdb\x0f\xaf\xdf\xbc\xfa\xf1\xd3\x8f\xaf\xfe\xf1\x1a\xbe\x9d\x4c\xa6\x8b\x91\x7a\xfb\xf4\xf2\x87\x17\xef\xbe\x7f\xf5\x91\xee\x1c\x0f\x3d\xa3\x3d\x67\x64\x8f\xf2\xc5\xc8\x45\xc4\xf5\x10\x15\xef\xf6\x69\xbe\x18\x8d\x11\x19\x37\x53\x26\x88\x4c\x3c\xf4\x5c\xa6\xa0\xbd\x64\x12\x22\xb5\x95\x93\x25\x3c\x2b\x2e\x82\xe4\x34\xaa\x59\x9e\xc5\xa8\x66\x54\x5f\xa5\x9f\xe3\x3c\x4b\x39\xd5\xa4\x9c\x19\x3a\xa2\xf4\xb3\x22\x49\xb6\x5a\xb1\xdc\xbb\xe1\x0f\x5e\x48\x9a\xf3\xe0\x99\xf3\xcb\xe7\x20\x5e\x5a\x9a\xef\x10\xbc\x17\x30\x1e\xb9\x62\x3c\x20\xc7\x4d\x55\xcd\x9b\x24\xfa\x45\xbe\x02\x45\x69\xa9\x27\xcb\xa2\x1e\x47\x1f\x1d\x33\x58\x92\xee\x02\xe1\x69\xa4\xce\x7f\xcc\x4d\x86\x84\x58\x18\x19\xdd\x70\x8a\x3b\x4a\xb3\x92\xde\xc8\xcb\x43\x85\xdd\x61\x40\xe7\x7b\xdd\xfb\x0f\x62\x27\xf2\x9a\xe8\x79\x6f\xcf\x67\xcd\x96\xd5\x5e\x46\xd4\x4d\xb5\x4a\x10\x2d\x89\x89\xb9\xa1\x27\x3b\x61\xc1\xfa\x36\xdc\x78\x3b\xdb\x43\x11\x9b\x6f\x57\x88\x38\x5c\xfe\x5d\x66\x30\xe1\xb7\x61\x9e\xc2\x3c\x0b\x3b\xfd\x3d\xf9\xf6\xd5\x37\x3f\x7d\xef\xd9\xe4\xf5\xbb\xef\xde\x7b\x0e\xf9\xe7\x8b\x1f\xdf\x79\x2e\x79\xf5\xe3\x8f\xef\x7f\xf4\xc6\x04\x90\x96\xff\x66\xab\x56\xf7\x39\x64\x05\x4e\x3f\xa3\x61\xbd\x1c\x74\x07\xfc\x30\x98\xa2\x6d\x2a\x84\x9c\x08\x94\x55\x04\x95\xe6\x13\x9e\x71\x49\x4b\x3e\xf8\x8b\xc0\x7c\x16\x10\x90\xef\x7c\x0d\xec\xf7\xd3\xc5\x48\xe0\x05\xbd\x11\x8f\x34\x14\x47\xd4\x0d\xce\x8d\xa7\xcc\xe9\x6e\x5f\x4f\xda\x9c\x84\x9a\x62\xce\x79\x2d\x42\x61\xf1\xbb\x3c\x5c\x33\x9a\x6a\x41\x7a\x6f\x7d\x26\x1b\x4c\x5e\x34\xf8\x0c\xb2\x32\x38\x8d\x39\x20\xdc\x42\xb4\xd1\x90\x20\x52\xbc\x53\xb6\xfb\xaa\x21\x9e\x2a\xd5\x7a\x17\x98\xf7\x06\xc2\x89\x87\x6b\x1a\x4e\xa3\x51\xc4\x36\xe5\x75\x1d\x26\x31\xda\x8b\x23\x85\xdd\x9e\x2c\xe8\xea\x70\x25\x93\x88\xae\x0e\x16\xf2\x34\x14\xae\xe5\x7e\x64\x9f\x63\xe0\x9d\x4f\x0e\xc1\x00\x4a\x90\x76\x50\x55\x0e\xa7\x77\xf3\x3e\xa5\x0b\xc1\x57\x3f\x5b\x18\x6b\xe1\xda\x42\x97\x6c\xbd\x49\xc2\x92\x81\xf5\xc0\x26\x67\x8b\x6c\xbd\x89\x13\xb5\x24\xc2\xb4\x97\x25\x11\xcb\x7b\x9c\x18\x73\x48\x64\x4b\x43\xfc\xec\x95\xd7\x21\x17\xbd\x59\x4f\x7a\x41\xed\x49\xd7\xbd\xa3\xde\x87\x84\x85\x05\xeb\x6d\x37\x11\xaf\xfb\x4b\xb6\xcd\x8d\xca\xf3\x5e\x99\xf5\x42\xde\x03\xa3\x66\x0b\x0d\x23\x7f\x11\x0c\x11\xee\x65\x79\x2f\xca\x6e\xd3\x55\x1e\x46\xb2\xac\xac\x17\xca\xb5\xbb\x04\x05\xe7\xbc\xe0\x08\xe1\xe9\x9f\x19\x5c\xab\x07\xff\x83\xb1\x99\xfd\x3b\x1c\x57\x08\xc6\xe7\xd0\xbd\xfd\x7e\x1a\x8e\x4a\xd9\x2d\x13\x91\xc4\xf4\xf4\x5b\xb3\xf3\x2e\xeb\xb1\x9a\x74\xf6\x36\x61\x51\xb0\x88\xb7\xa2\xaa\x40\x78\x7a\x22\x90\x72\xd7\x16\xa9\xbc\xe4\x40\xca\xe2\xbb\x6a\x76\xc3\xba\xe8\x11\x49\x09\x23\x11\x59\x0a\x04\x5a\xd1\xc5\xe8\x1f\x6f\x47\x8d\xec\x47\xfc\x47\xc5\x4b\xa9\x26\xb6\x52\x1b\xe9\x0a\x2c\x49\x47\x12\xd8\x3a\x95\xee\x24\x75\xf4\x18\x51\xe4\xcb\x8b\x84\x51\xe2\x72\x4f\xf8\x1c\x52\x5d\xca\x0a\x25\x33\x24\xcc\x40\xfa\x94\x2e\xf7\x64\x81\x21\x97\x95\x92\x55\x7b\xa2\xaf\x59\x4f\xd6\xd9\x43\xc3\xf9\x10\xf5\x16\xd9\x36\x89\x80\xca\xcf\x59\xaf\x9e\xf7\x6b\x96\xf2\xc9\x4a\x39\x87\x1e\xa7\x6a\xde\x4e\xb3\x34\xf9\xd2\x5b\x67\x11\x87\xe7\x9e\xc8\x05\x5b\x78\x7e\xa0\x9e\x4d\x58\xdd\x28\x4a\x20\xcf\x95\x55\x76\x4e\xf1\x16\x33\x46\xe7\x32\x8f\xc7\xc0\xe5\x43\x3b\x8f\xf8\x5e\xf3\x72\x6c\x4f\x20\xea\x96\x77\xc8\x33\x2f\xb8\x3c\x33\x07\xf9\x6c\x3e\x18\x84\x20\xe9\x0e\x06\x16\x70\x04\x27\x89\x22\x73\x9c\x8d\x20\xc6\x5b\x58\xd7\xbd\xd0\x83\xf9\x67\x5c\x5e\x7f\xcb\x89\x8f\x07\x33\xdb\x4e\x25\x69\x96\x6d\xc4\x27\x30\x13\x50\x2b\xf5\x75\xba\xcc\x84\xf3\x0b\x55\x65\x93\x0b\xba\x91\xd2\x95\x20\xc7\x37\x6a\x5f\x9a\xdd\x78\x0b\x52\x92\xf5\x54\xa7\x54\x95\x55\xd2\x1b\xbd\x85\xae\xeb\xbc\x05\x9e\xa6\x8a\x45\x8b\x48\x4a\xe6\xbc\x20\x11\x4c\x13\x36\x2b\x80\xde\x35\x28\x9f\x15\x8d\xcc\x8e\xd6\x3e\x33\x61\x99\xb5\xc7\xd8\x38\xf9\xa9\xa9\xb9\x38\xf2\xa8\xa5\x69\x70\x63\x26\xf7\x61\xed\x3a\x6c\x8c\xc9\x8d\x59\xde\x18\xba\x66\x1f\x8d\xf5\xe1\x87\x72\x00\x55\xc5\x77\x34\xe1\x2a\x2e\xc2\x78\xcf\xc7\xa3\xb7\x83\x1b\xb9\x1d\x44\xfa\xee\x5e\x7a\xe0\x36\x7a\x4f\xe7\xd3\xb0\xb9\x0e\xe9\x49\x73\x1c\x24\x22\x37\x7c\x1f\x8a\xe8\x4e\x82\xca\xeb\xdb\x44\xad\xb5\xa8\x5e\x6b\x37\xca\x4d\x1a\x5f\x9f\x62\x5d\x71\x41\x07\xff\x99\x95\xb4\x14\xf1\x14\x40\x04\x33\x8f\x68\x14\x0b\xa8\x56\x7b\x68\x2d\x48\x84\xf9\x38\x38\x3a\x75\x1d\x2d\xd6\x1a\x7a\xb0\xff\x92\xdf\x31\xf9\xd2\xda\x81\x09\xdf\xc0\xe5\x42\x68\x9d\x74\x2e\xc0\xd0\x21\xe9\x66\x31\xa7\xf3\x7a\x31\x24\x78\xba\x18\x7d\x0c\x97\x4c\x9e\xbe\x71\x16\xfa\xd5\xdd\x82\xc1\xa9\x05\xe5\x5c\xea\x4f\x65\x9c\x14\x74\xce\x59\xeb\xb7\x34\x9c\x2e\x3a\xc8\xf3\xdc\x10\x60\xd4\x57\x8b\xa3\xd0\xde\x58\x68\x11\x5d\x58\x9c\x63\x14\x4c\x06\x5d\xd4\x7b\xbc\xf5\x3b\xf9\x42\x36\xe4\x33\x79\x71\xcf\xb9\xe9\x1c\xef\xe6\x5c\x28\x57\xc7\x17\xfa\x58\x48\x1d\xbe\x7c\x4a\xe2\x94\x4d\x4f\xea\x8f\x2f\x1b\x67\x33\x9f\xc4\x51\x8d\x28\x0c\x11\xf7\xd4\x67\xfe\x72\xf0\x55\xd6\x0c\xdf\x78\xc5\xea\x7c\xf6\x83\x40\xbb\x77\x0d\x57\x32\x73\x12\x72\x3c\x53\xd6\x75\xe3\x2e\x47\x92\x56\x44\x17\x64\x01\x3a\x17\xd8\x73\x3b\x72\x80\x14\x1f\x92\x50\x64\x99\x1a\xca\x63\x24\x12\x01\xc6\xa4\x45\xb5\xc4\x7c\x34\x55\x8a\xe2\xa5\x70\xf6\x4b\xe7\x53\x7d\x1c\xad\x2e\xa1\x2d\x06\x21\x1f\xf1\xcc\x62\x74\x57\x83\xc9\x63\xc6\xb1\x9a\x1e\xa3\xc7\xf4\xd0\x89\x01\x14\x99\x2c\xe0\x45\x4c\x60\xaa\x6a\xc4\xa7\xbd\xe0\xf1\xa5\x64\x0a\x08\xb8\x1a\x19\xf0\xe2\xa4\x97\x30\x2c\x39\xf4\x7b\xb3\x61\x52\x8f\x64\x04\x61\xac\xe0\xc0\x61\x59\x62\x4f\x1f\xc6\x89\x8f\x22\x26\x81\xc8\x83\xf7\xe4\xe4\xed\xb6\x28\xc3\xc5\x35\xeb\x9c\x20\xc2\xf0\xce\x84\x2b\x6b\xc0\x75\x2d\x8b\x22\x13\x8c\x91\x8c\xfd\x07\x0e\x7b\x16\xd7\x61\xfe\xa2\x9c\x59\x0b\xaa\x9e\xad\x31\xe6\x84\x57\xbe\xb8\x4a\x47\x12\xf8\x8a\x88\xa2\x1d\x44\xb2\x1c\x0c\xd0\x00\x1e\x54\xb4\x22\xf9\xb9\xdf\x5f\xc8\xa6\xd8\xdd\x26\xa7\x8d\x33\xdd\xd5\xe8\x23\x4f\xe4\xc3\x98\xcd\x3d\x01\x24\x9d\x22\x38\xf7\xba\xe8\x28\x2e\x7e\xcc\xb2\x92\xf6\x6d\x91\x18\x47\xd4\xfc\x18\xe9\x03\xbf\x70\x5d\x98\x5f\x44\x8a\xf8\x7a\x1d\x16\xd7\xe6\x37\xfe\x3e\x95\x56\x05\xf1\x2a\x9e\x27\x4c\x08\x99\x66\x9e\xe6\x17\xd9\x76\x71\x98\x4f\xa5\xed\x89\x1e\x42\x6b\x6e\x9a\xf3\xb2\x68\xcc\x0b\xd4\x81\x8c\x5e\x86\x53\x19\x29\x3c\x8e\xe8\xdc\xb7\x83\xe9\xc9\x9c\x9a\x23\x9c\x4b\x57\x9b\x0e\x6e\x75\xc9\xea\x1a\xcf\x62\x14\x17\x1f\xe3\xf5\x26\x01\xcf\xd4\x73\xad\xf4\x15\xe2\x3d\x91\x5b\xca\x91\xd5\x7e\xcf\x12\x15\xe5\x50\xe3\xa4\xf5\x1d\x17\xab\xe4\x1a\x95\xce\xc8\x68\x68\xe2\xda\x62\x4f\xbe\x49\xb2\xc5\xcd\xd7\xe2\x2e\x97\x57\xf4\x1c\x8f\xb2\x3c\x5e\xc5\x69\x98\xf4\x29\x8d\x46\x9b\xb0\xbc\xd6\x29\xc6\x0e\x96\x74\x95\x18\xa2\x5e\x94\xb1\x22\x7d\x58\xf6\xc0\x3f\x53\x0f\x0d\x5b\x35\x08\x5b\x12\x73\x84\x22\x9e\x80\x48\x51\x0b\x47\x0d\xae\xde\xc1\x1b\x2b\x7d\xd1\x20\x4f\xa0\xdf\x30\x37\x56\x31\x81\x35\xec\x45\xe6\xaa\xdf\x4f\x2d\x10\x13\xcd\xc5\x3e\x37\x33\x4c\x4f\xac\x05\x9f\xaa\x06\xa9\x88\x8c\xec\xd3\xc5\x60\xd0\xd7\x34\x23\x2e\x5e\xcb\xce\x40\x88\x32\x69\x67\x7a\x00\xef\x26\xa4\xc3\xc6\xc0\x95\x5f\xc0\xa9\x79\x63\x38\xdf\x93\x1f\xc2\xe2\xfa\x4f\x55\xc4\x51\x59\x23\x48\x9c\x17\xbc\x92\xd7\xd1\x9f\xaa\xe2\xf5\xb7\xc8\xb8\xf6\x40\x88\x44\xd4\x0f\xe0\xd8\x78\x45\x6d\xf0\x4a\x28\x19\xa7\xd5\xb3\x25\x84\x3e\x96\xca\x12\x73\x7f\x05\xa1\x2a\x4b\xb2\xa0\x8b\xa1\x65\xc1\x7b\xc1\xf8\xf2\x29\x33\x08\xaf\x81\x87\x39\xe0\x17\x1a\x8d\x94\x16\x94\x7e\xe0\x1d\x10\xda\x50\x5c\x24\xb3\x9f\x45\x87\xe7\xfc\x89\x85\x5e\xa7\x9f\xc3\x24\x8e\x7a\x1c\x8f\xbc\x1e\x1a\x2e\x24\x0e\xa9\x1a\x67\x6c\x38\x94\x3b\x41\xf1\x71\x91\x01\x3d\xb4\xc5\xb9\x51\x24\xd4\x26\x73\xbc\x17\x7a\x29\x12\x09\x15\x02\xf1\x8e\x17\xf4\x24\x6a\xcc\x40\x24\x3d\x84\x0b\x19\x37\x2e\x24\xeb\xc8\x14\x05\x10\x2b\x9c\xc2\xc9\xbe\xde\x70\xfb\x8d\xf6\xc5\x1d\x16\x33\xab\x7d\x9b\x45\x0c\x82\x25\x51\xf3\xa2\x57\x93\x85\x70\x7d\xb8\xcf\xdc\x37\x5f\x1f\x5e\xfc\x78\xf9\xfa\xc5\x9b\x4f\xef\x5e\xbc\x7d\x25\xa7\x3e\x05\xa2\xa0\xc7\xb8\x27\xdf\x86\x65\xf8\xa7\x2a\xfd\xf6\xc5\xe5\x0b\xa4\xe9\xfe\x7c\x4f\x04\x27\xf7\xa7\xea\xf8\x78\xf9\xe3\xeb\x77\xdf\xcb\x5a\x34\xbc\x4d\xf8\x76\x02\x85\x63\x6c\x5a\xb2\x15\x3b\x24\xe9\xf7\xa2\xed\xbb\xcb\x57\xdf\xbf\xfa\xb1\xb3\xb9\x58\xd4\x67\xf2\x32\x66\x8b\x27\xe2\xea\xcc\x9a\xe3\x3d\xf9\x46\x28\x94\xfc\xa9\xa6\xbf\x79\xff\xfe\xcd\xab\x17\xef\x64\xd3\xf3\x2c\x4b\x8e\xb5\x84\xca\x7c\x0b\x1a\x80\x73\x4e\x27\xd6\xeb\x3f\x4f\x27\xa0\x0c\x52\xf4\x1e\xde\xe0\x2c\xb2\xbe\x15\x3d\x38\x55\x53\xa7\x0b\xbb\xfd\x74\x25\xdc\xce\xe6\x34\x51\x8f\x07\x77\xc0\xe6\xc5\x26\xa5\xf4\xda\xe4\xa2\xf4\xa9\xfd\x34\x19\x7d\xf9\x42\xb5\xec\x94\x88\xba\x38\x00\x8d\x8e\x1c\xea\x55\x74\xdf\xd5\x82\xe4\x2d\x5d\x25\x00\x01\x47\xff\x05\x41\xd2\x0c\x06\x48\x50\x71\x91\x3e\x57\xe9\x36\xae\xaa\x56\x92\x83\xf7\x7b\x83\xbd\x97\xf7\x94\x5f\xbe\xd0\xdd\x5e\xf1\xda\x65\x1e\x2e\x1a\x71\x34\xf6\xe4\xe4\xcb\x17\x6f\xb7\x27\xc5\x97\xf5\x3c\x4b\x8a\x4f\xde\x4e\xf8\xec\x72\x49\x9e\x65\xa5\x37\x26\x35\x37\xec\x4d\xc8\xab\xf7\xdf\x79\xe7\xfa\x84\xe2\x82\x14\x40\x03\xe4\x0e\xe0\x3d\xae\x33\x7b\x4f\x48\xb6\x61\xa9\xfa\xf2\x94\x2c\x92\xac\x60\xb0\x17\x7b\x8e\x0d\xdf\xe4\x8b\x43\xd4\x66\xe7\x39\xae\x12\x1d\x3d\x67\x4c\x5e\xbe\x7f\x77\xf9\xea\xdd\xa5\xe7\x4c\xc8\xcb\xf7\x6f\xdf\xc2\xe3\x39\x79\xff\xe1\xd5\xbb\x4f\xdf\xbc\x79\xff\xf2\x6f\x9e\x73\x41\x60\xe3\xf5\x9c\xc7\xe4\xe5\x9b\xf7\x1f\x5f\x79\xce\x13\xf1\xfd\xf5\xbb\x7f\xbc\xfa\x91\xbf\x3f\x15\xef\xaf\xde\x7d\x2b\x8a\xb8\x36\x01\xea\xe9\x3a\xf0\xc1\x73\x5d\x91\xe1\xa7\x77\xaf\x3e\xbe\x7c\xf1\xe1\xd5\xb7\x9e\x3b\x16\x75\x99\x49\x13\x91\x49\xd2\x1a\xcf\x3d\x27\x06\xff\xe1\xb9\x17\xea\xf5\x93\x30\x22\xb5\x3d\xf7\xb1\xe8\xd9\xa7\x9c\x6d\x58\x19\xcb\xc4\x27\x32\x51\xe7\x7a\x0a\xe2\x31\x54\x32\xe6\x1d\xe3\x30\x1d\x3b\x44\x90\x0e\x6f\xec\x12\xb9\xac\xbd\xf1\x98\xc8\x65\xe6\x8d\x65\x67\x3e\xbe\xfa\xf9\xc3\x8f\xde\xf8\x5c\xf6\x56\xbe\x5e\x88\x8b\xab\xf1\x63\xf8\x35\x9a\xff\xb4\x49\xb6\x85\xed\x8d\x9f\xc0\x87\x8f\x6c\x05\x93\x34\x7e\x4a\x4e\x5e\x7f\xeb\x4d\x6c\xf2\xea\xef\x3f\xbd\x78\xf3\xd1\x9b\x38\x84\x13\x3f\x6f\xe2\x02\x9c\x64\xbe\xc2\x9b\x8c\xc9\xc7\x57\x1f\xbc\xc9\x84\x3c\x10\xee\xba\x3c\x9b\x3c\x60\x69\xe4\x39\x7b\x52\xb2\x7c\xcd\xa9\x0d\xc7\x1d\x57\x9d\xf2\x93\x73\x0f\xbd\x7a\xff\x1d\x22\xce\xc4\x43\x72\x26\x11\x71\xce\xf9\x0b\xcc\x25\x22\xce\x85\x87\xea\xd9\x44\xc4\x79\xe2\x21\x18\x0c\x22\xce\x53\xf9\x49\x4e\x24\x22\xae\x2d\x53\xd4\x54\x22\xe2\xba\x22\x09\x11\x77\x2c\x3f\xea\x39\x43\xc4\x9d\xc8\xda\x1a\x89\xe7\x32\xa3\x9c\x4a\x44\xc6\xae\xa7\x48\x35\x19\x8f\x3d\x4d\x48\xc9\x78\xe2\x69\xd2\x46\xc6\xaa\x1c\x80\x19\x91\xf1\x85\xaa\x5c\x26\x4c\x6c\x8f\xb3\x0e\x64\xe2\x78\x48\x80\x12\x91\x89\xeb\x89\x9d\x84\x4c\x26\x1e\xfa\xf8\xea\x03\x82\xa3\xb1\x68\x0b\x6b\xaf\xf8\xe4\xf9\x36\xf1\xc7\xc4\x0d\xf8\x7f\x27\x20\xfe\x05\x3c\x5f\x90\xb1\xf1\xec\x18\xff\xed\x80\xf8\x13\x78\x9e\xc0\xd7\x27\x90\x53\xfd\x77\x3a\xff\x3b\x0e\x7c\x7e\x0a\xff\x1d\x5b\xfc\xb8\xe4\x44\xfe\xc2\xcf\x98\x4c\x02\xe2\x3f\x86\x3a\x9d\xc7\x22\xed\x31\x94\x1e\x3b\x5f\xf3\xc3\x0b\x8c\x65\x01\xd1\x90\x2b\xba\xdc\xfc\x19\xdb\xd0\x82\x2b\xca\x4d\xc6\x90\x73\x22\x86\xee\x3e\x86\xd1\xb9\xa2\x16\xf7\x89\x78\x7b\x22\x0a\x3c\x15\x6f\x4f\x45\x2d\x4f\xd4\x8f\x1b\x04\x64\xc3\xf2\x65\x96\xaf\x5f\x2c\x9a\x8a\xd2\x21\x99\x73\xf6\x9e\xac\xc8\x92\xef\x00\x21\x5d\xea\xbb\xf5\x69\x71\x1b\x97\x8b\x6b\x6b\x85\x77\x8b\xb0\x60\x3d\xc7\x53\x27\x78\xec\xb6\xc7\x1a\x52\xf3\xd2\x0f\x4f\x9d\x40\xc8\x9f\x9f\x1e\xe0\x29\xe4\x77\x8f\xe7\xf7\xdb\x79\xc7\x82\x1b\x7b\x40\x3b\xf3\xca\xea\x97\x7e\x68\x94\x9b\xe7\x2c\xbc\x11\xa5\x27\xc7\x4b\xf3\xa2\xee\x1f\xd7\x70\x7e\x7f\x0d\x27\xaa\xac\xdf\x5d\xfc\xe2\xde\xe2\xdd\x65\x1e\xdf\x3b\xe4\xae\x12\x4f\xfe\x74\x89\xa7\xaa\x84\xcf\xbb\x11\x98\x9f\x1c\xdb\x13\x40\x11\xfc\x2e\xff\x2e\x59\x88\x07\x54\x7c\x68\xe4\x76\x9a\x6d\x6b\x51\xb1\x09\x60\xad\x21\xf0\x47\xf0\x76\xdc\xaf\xaa\xaf\xa3\xda\x23\xf5\x69\x04\xe2\x59\x1a\x5f\x26\x47\xbf\xb4\x26\xdd\x10\xc8\xc4\xac\x9d\x74\xb6\x74\xd1\x2e\xa5\xd9\xb3\xe3\x73\xed\xb4\x26\xdb\x3c\x28\x52\x8b\x07\xbc\xdf\xc9\xd1\x27\x06\x18\x94\x59\x71\xbb\xca\x27\xff\xf9\x2a\x35\xba\xec\x60\xeb\x97\xb5\x80\x3c\xeb\x35\xcb\xef\xcd\x72\xae\xfd\x1f\xef\x8a\xeb\xfc\xe7\xab\x6c\xa1\x9c\x71\xbc\xd2\x42\xba\x13\x51\xdb\xf8\xde\xda\x34\xc2\x25\x96\x81\xec\xcd\x3c\x2d\xba\x54\x1f\xa1\xf9\xa2\x41\x7d\xfb\x20\x6a\xc0\xc7\xf1\xdb\x3d\xbf\xaf\xaa\x40\x02\xa3\xb3\xe4\xc5\x31\xfc\x77\x5b\x48\x59\x8b\x6e\xc7\x11\xd9\x6d\x61\x9d\x21\x81\xdd\x53\xe8\x69\x6b\xb1\xd7\xb2\xd3\xf1\x42\x63\xfb\x58\xbf\xc7\x8e\xa2\x5c\xfa\x6c\x4d\x9d\x3d\x76\x91\xae\x71\x6b\xde\xd5\x59\x49\x67\xd3\x27\xa2\xc8\xd8\xa4\x9b\x0a\xad\x9a\xb5\xb6\xf7\x9c\xa6\x54\x7e\xcf\xb8\xda\x5b\x4d\xab\xe0\xfd\x73\xd1\x5d\x65\x7b\xfb\xe9\xac\xf2\xe8\x54\x35\xeb\x6a\x21\x85\x3a\x11\xb8\x67\x40\x6d\x94\x88\xfe\x20\xff\x53\x4f\x00\x55\x6c\x3c\x70\x2f\xe6\x41\x6e\x7d\x08\x24\xe7\x77\xdf\xd8\x90\xdc\x06\xfc\x27\x1a\x3d\xfc\xba\x86\x7d\x33\x4b\x3d\x8b\xcd\xf4\x49\xc7\xce\x77\x62\x66\x78\x7c\x7c\xdb\x9c\x3c\x39\x2c\xbc\xdf\x93\x32\x9c\x27\xcc\xf3\x77\x63\xcf\x21\x13\xcf\x25\xe7\x9e\x0f\xdc\xde\x13\x6f\x42\x9e\x7a\xe7\xc4\x71\xbc\x0b\xe2\xb8\xde\x63\xe2\x8c\xbd\x27\x9c\xd5\xf7\x1d\xf2\x34\xe0\x6c\xbe\xef\x10\xc7\x0e\x38\x8f\xcf\x9f\xdc\x80\xb3\xf4\xfc\xc9\x09\x38\xdf\xce\x9f\xc6\x01\xe7\xdb\xf9\xd3\x24\xe0\x8c\x39\x7f\x3a\x0f\xf6\x64\xe7\x78\xfe\x98\xff\x8a\xa4\x0b\xde\x9c\xf3\xf8\x7f\xb7\x3d\x97\xb8\xb2\x45\x17\xea\x9b\xa8\x07\x9d\x72\xa1\x1e\x9e\xca\x07\xd7\x56\x0f\xae\x7a\x18\xab\x07\x59\x6a\x4f\x76\x13\x2e\x71\x5e\x70\xb9\xf4\x31\x17\x46\xff\xfb\x80\x73\x1d\xd5\xe4\x93\x3f\x1c\xd1\x89\x6a\xd6\x75\xff\xff\xd9\xac\x00\x1f\xff\x2c\xe0\x07\x4f\x75\xda\x85\x7e\x7a\xaa\x9e\x44\xcd\xf0\xe4\xea\xa7\xb1\x7e\x52\x65\x75\xd5\x13\x5d\xf5\x44\x57\x3d\xd1\x55\x4f\x74\xd5\x13\x5d\xf5\x44\x57\x3d\xd1\x55\x4f\x74\xd5\x93\xba\xea\x73\x5d\xf5\xb9\xae\xfa\x5c\x57\x7d\xae\xab\x3e\xd7\x55\x9f\xeb\xaa\xcf\x75\xd5\xe7\xba\x6a\x03\x20\x17\xba\xea\x0b\x5d\xf5\x85\xae\xfa\x42\x57\x7d\xa1\xab\xbe\xd0\x55\x5f\xe8\xaa\x2f\x74\xd5\x17\x80\xb4\x8f\x3d\x77\x4c\x5c\xc7\x73\x27\x64\x6c\x7b\xee\x39\x39\x99\xd8\x30\x63\x4f\x02\x2e\x79\xf2\xa7\xc7\x01\x99\x8c\x3d\xf7\x42\x66\x7f\xda\xc8\xfe\x07\xb9\xb9\xb0\xf6\x27\x72\x3b\x5f\x9d\xdb\x75\xbc\xf1\x98\xb8\x17\xde\xd8\xe5\xc2\x37\x27\x28\x93\x80\x8b\xde\xfc\xe9\x3c\x30\xcb\xaa\xfa\x61\xd4\x35\x3c\x6d\x0d\x4f\x5b\xc3\xd3\xd6\xf0\xb4\x35\x3c\x6d\x0d\x4f\x5b\xc3\xd3\xd6\xf0\xb4\x35\x3c\x6d\x80\xa7\xed\x8d\x2f\x20\xbf\x43\xc6\x8f\xc5\xd2\x1d\x3f\xf9\x9f\x52\x3a\x68\xfe\xf1\x1f\xaf\x9c\xc7\xde\xf8\xe9\x7f\x8f\xcc\x9d\xb4\xd7\xe9\xc5\x57\x10\x3c\xc0\x1d\xe7\x09\x4f\x99\x70\x38\x7c\xed\x44\xdb\xde\xc4\x69\xc0\x48\xd6\xe1\xaa\x67\x97\x4c\x78\xab\x13\xfd\xf4\xc4\xe3\x72\xbe\xab\xde\xc7\x63\xfd\xa4\xf3\x8c\xcf\xf5\xd3\x85\x7a\x9a\xd8\xfa\x49\x95\xd5\x2d\xb8\xe7\xaa\x05\xfe\x24\xca\xb8\xe7\xf5\xf7\xf1\x13\xf5\x9d\x3f\x89\xb6\xe1\x69\xac\x9f\xea\xaf\xe7\xfa\xe9\x42\x3d\x89\xb6\xc7\x4f\x54\xdb\xf0\x04\x53\x30\x01\x7a\xe1\x3a\xde\xe4\xbc\x0b\x4d\xc5\xf8\x6d\x3d\x7e\x5b\xb5\x0e\x4f\x63\xfd\x54\x7f\x3d\xd7\x4f\x17\xea\x49\x8e\xdc\xd6\x23\xb7\x45\xeb\xf0\xa4\x21\x7e\x32\xb9\x30\xc0\x0f\x53\xe1\x8a\x2e\x3e\x31\xa6\xc2\x81\xa9\x3d\xb7\x89\xfb\xd8\x9b\x3c\x3d\xda\x65\xbe\xfe\xe4\xa0\x27\x06\x18\xcf\x75\xaa\x09\xdc\x0b\x9d\x7a\x51\xaf\x48\x47\xaf\x48\x47\xaf\x48\x47\xaf\x48\x47\xaf\x48\x8d\xa4\x6a\x5b\x96\x4f\x63\xfd\xa4\xca\x0a\x38\x9f\x3b\x1d\x9d\xfe\x9f\x72\x03\xa2\xf7\x7f\xbc\x4a\x26\xde\xb9\xfb\x1f\x59\xff\xe7\x5f\xb1\x22\x05\x3e\xeb\x0d\xd3\xd5\x1b\xa6\xab\x37\x4c\xfe\x74\x22\x6a\x74\xf5\x8e\xe9\xea\x1d\xd3\xd5\x3b\xa6\x6b\xec\x98\xae\x9e\x19\x57\xcf\x8c\xab\x67\xc6\xd5\x33\xe3\xea\x99\x71\xf5\xcc\xb8\x7a\x66\x5c\x3d\x33\x6e\xdd\x5b\xe7\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xd1\x44\xd8\x73\x81\xb0\x17\x6a\x05\xf1\xf7\xa7\xde\xf9\x98\xd3\xa6\x0b\x9b\x8c\x1d\xef\x7c\x22\x37\x8d\xf3\xc7\x6a\xd3\x38\x97\x2b\xda\x21\xe7\x4f\xc5\x9a\x72\xc8\x85\xa3\xd7\x14\xa7\x11\x8f\xbd\xf3\x73\x32\x7e\xe2\x5d\xb8\x64\xfc\xd4\xbb\x18\x4b\xac\xba\x98\x74\x51\x39\xf9\xcd\x44\xfa\xc7\x9a\xa2\x3c\xd6\x14\xe5\xb1\xa6\x28\x8f\x35\x45\x79\xac\x29\xca\x63\x4d\x51\x1e\xeb\x05\xf3\x58\x53\x94\xc7\x06\x14\x1f\x6b\x28\x3e\xd6\x50\x7c\xac\xa1\xf8\x58\x41\xf1\xc4\x79\xac\xc1\xf8\x58\x83\xf1\xb1\x06\xe3\x63\x3d\xe7\xae\xde\x1f\x5d\xbd\x3f\xba\x7a\x7f\x74\xf5\xfe\xe8\xea\xfd\xd1\xd5\xfb\xa3\xab\xf7\x47\x57\xef\x8f\xae\x5d\x57\xad\x17\xba\xab\x17\xba\xab\x17\xba\xab\x17\x7a\xbd\x1b\xb9\x7a\xa1\xbb\x7a\xa1\xbb\x7a\xa1\xbb\x4e\x4d\xc5\x2e\x2e\x0c\x44\x70\x8d\x74\x18\xd9\x7f\x64\xd1\x4f\xbe\x62\x21\x8a\x2d\x66\xa2\xb7\x98\x89\xde\x62\x0c\xda\x38\xd1\xdf\xf9\x93\x24\xf2\x13\x4d\xe4\x27\x9a\xc8\x4f\x34\x91\xd7\xf5\x4c\x34\xb5\x9d\x4c\x34\x91\x37\xeb\xbe\xd0\x75\x5f\x04\xe4\x44\x16\x32\x80\xe3\xea\x0c\xfc\x49\x34\x0e\x4f\x63\xfd\x54\x7f\x3d\xd7\x4f\x17\xea\x49\x34\x0e\x4f\xaa\x6c\x5d\xb7\xc6\x74\x57\x63\xba\xab\x31\xdd\xd5\x98\xee\x6a\x4c\x77\x35\xa6\xbb\x1a\xd3\x5d\x8d\xe9\xee\x63\xa3\x6e\xbd\x2f\xbb\x7a\x5f\x76\xf5\xbe\xec\xea\x7d\xd9\xd5\xfb\xb2\xab\xf7\x65\x57\xef\xcb\xae\xde\x97\x5d\x83\x72\xb8\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x8d\xd5\xaf\x77\xf4\xb1\xde\xd1\xc7\x7a\x47\x1f\xeb\x1d\x7d\xac\x77\xf4\xb1\xde\xd1\xc7\x7a\x47\x1f\xeb\x1d\x7d\x6c\x4b\x1e\xec\xe2\xc9\xbd\x9c\xd7\x49\x83\xf5\x12\x5d\x71\x75\x57\x5c\xdd\x04\x7f\x7a\xea\x5d\xa8\xfd\xfd\xb1\x6d\xe0\x92\x9e\xce\x89\x9e\xa6\x89\x9e\xa6\x89\x31\x39\xff\x41\xb6\xc5\x81\x5e\x38\xf7\x31\x30\x9c\x0c\xeb\x91\xe8\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x83\x27\x55\x42\x93\x2b\xbd\xfb\xb9\x7a\xf7\x73\xf5\xee\xe7\xea\xdd\xcf\xd5\xbb\x9f\xab\x77\x3f\x57\xef\x7e\xae\xde\xfd\xdc\xfa\x90\xc0\xd1\xa7\x04\x8e\x3e\x26\x70\xf4\x39\x81\xa3\x0f\x0a\x1c\x7d\x52\xe0\xe8\xa3\x02\x47\x9f\x15\x38\xfa\xb0\xc0\x81\x5e\x8f\x81\x74\x9d\x3c\x36\xf9\x69\xbd\x6a\x26\x7a\x35\x4c\xf4\x6a\x10\xec\x9e\x06\xb9\xe4\x9a\x2e\xea\xfd\xf2\xf1\xf8\xab\xf7\xcb\x7b\x39\x7f\x31\x69\x8e\x9e\x34\x47\x4f\x9a\xa3\x27\xcd\xd1\x93\xe6\xe8\x49\xd3\xfb\xf0\xd8\xd1\x93\xa6\x51\x63\xec\x18\x08\xa1\xe5\x86\xb1\x96\x04\xc6\x5a\x12\x18\x8f\x83\x7d\x40\xa4\xd7\x34\x71\xd9\x57\x78\x3b\x31\x3d\x1a\xe8\x01\x39\xb7\xf5\xee\x01\x2a\x19\x60\xdb\xdd\x32\x72\x10\x1a\x55\xc2\xea\x3b\x04\xd3\x0b\x9e\xd3\x3b\xb4\x67\xf2\xed\x80\x44\xd4\x4f\xb7\x49\x12\x10\x46\xfd\x80\x48\x95\x1d\x38\x15\x23\x10\x4a\xfd\x9a\xda\xe4\x86\xda\x24\xa5\xf2\xa8\x36\x61\x77\x2c\x1f\x81\x67\xb9\xcd\xb6\xb4\x94\xfe\x8a\x48\xfe\xf2\x85\x4a\x8d\x8c\xa9\xfc\x15\x1f\x68\x9d\x47\x2a\x5b\x7f\xf9\xa2\x54\x55\xf8\xab\x69\xd4\xa6\x6d\xda\x1a\xf5\x26\x49\xb6\xd0\x16\xf5\x46\x1a\xdd\xed\xf1\x34\xa4\x07\xe9\x53\x26\x0e\xfa\x42\xe1\xde\xa3\x34\x73\x48\x47\xd8\xd2\x1b\x6c\x23\x6d\x94\x87\xe9\x8a\x15\xd3\x2e\xaf\x11\x8d\x7e\x03\x78\x55\x87\xea\x14\x7a\x98\xa9\x76\x32\xb0\x26\x09\xd9\x92\xdf\xc8\x2d\x78\xfc\x22\xc5\x74\x8a\x77\x5b\x3a\xf7\xe7\xfa\xea\x36\x98\x4a\xf7\x57\xa3\x26\x26\xf8\xdb\x00\xff\x46\xbb\x3f\x88\x68\x12\xd2\x62\x88\x52\xba\xae\xaa\x2e\x68\xae\xf1\x9a\x0a\xfb\x04\xb2\x36\x81\x91\xb0\x3b\x0b\x57\x95\x43\x94\xf3\xca\xda\xa8\x70\x3d\x18\x58\x32\xaf\xd2\x9d\xf1\xd7\x41\x55\xad\xf1\xf4\x37\xba\xf2\xb7\xc1\x60\xc0\xff\xfb\xeb\x60\x1f\x2f\xad\x46\xa3\xaa\x8a\xdf\xaa\xaa\xff\x9b\xd6\x8e\x3d\xe9\xff\xa6\xfd\x7a\x7d\xa6\x08\x81\xd9\x70\x8a\x77\x05\xf5\x03\x80\xd2\xa6\x17\xa7\x3d\x5e\x27\x16\x78\xa8\xf5\x2e\xfc\x4d\x30\x18\xb8\xcf\x36\x83\x81\x74\x8f\x88\x1e\x4a\x3f\x2a\x8d\x3c\xc2\x27\xc0\x67\x73\x7c\xc5\x75\x76\xfb\x41\x3a\x99\x9a\xa1\x0f\x7c\x5a\x7a\xa0\xc0\xd1\xcb\x52\xf0\xab\xd0\x43\x43\xeb\x7a\xe8\xe0\x21\xf2\xae\x52\x59\xe9\x61\x51\x0b\x0f\xd1\x55\xfa\xea\x6e\xc3\x16\x65\x9c\xae\x7a\x68\x58\x48\xe5\x41\xd2\x43\x78\x88\x48\x6f\x95\x95\xbd\x87\x68\x68\xb5\x7b\x25\x20\x36\x04\x7f\x2b\xf7\x37\xdf\xfb\x29\x65\xd0\x00\x8b\x78\xaa\x43\xe9\x7a\x86\x58\x1a\xf5\xb2\x65\x2f\xe6\xab\x0d\x79\xe8\xfe\x16\xf0\xb4\x85\x8f\xd6\x67\xb2\x83\x40\xe3\xc6\xb0\x40\x5d\x97\x94\xd9\x0d\x4b\xbd\xce\xaa\x08\xe8\xf5\x37\x97\x54\x9c\xb2\x34\x23\x49\xb6\xf0\x42\xa2\x3a\xe9\x15\x7b\xbc\xe7\x53\xcf\x67\xd5\x50\x43\x07\xe3\x9f\xc1\xc0\x79\xf6\x5b\x53\xc9\x53\xf4\x48\x02\x41\x50\xae\xda\x3e\x38\x14\x08\xdd\xdb\x64\x45\x11\xcf\x79\x42\xd9\x03\x5d\x2b\xaf\x87\x86\x27\x5b\x0e\x61\xd1\xe5\x1e\x1a\xae\xb1\xd2\x71\x10\xf8\x24\xd5\x1c\xe6\x02\x35\xd6\x78\x2a\x95\x41\x1b\x43\x28\x21\x20\x0a\xeb\xf8\xc2\xe9\x05\x9e\xca\xd2\xbf\xf9\x4e\x80\xa7\x6b\x30\xa8\x98\x26\x33\x6b\x4d\x13\x92\x48\x0b\x0c\xeb\xa6\x45\x68\x58\xba\x22\x4b\x7a\xd0\x0c\xb9\xa6\x5d\xd0\xeb\x20\x53\xc4\x7e\x96\x0e\x06\xe9\xe9\x69\xf3\xe2\xcd\x2b\xb4\x85\x9b\x56\xa6\xf1\x79\xcf\x02\xdf\x09\xa6\xb7\xa3\x07\x34\xf2\x95\x06\xed\x69\xc1\x53\x3e\x3d\x68\x9a\x6a\xf8\x2a\xfe\xc4\xa9\x55\x54\x95\x83\x03\xc3\xde\xc5\x34\xde\xa8\xf3\x39\x41\x6d\xb8\xd2\x32\xd8\x38\x56\x99\xf8\xde\x34\xfb\x38\xac\x50\x7c\xd9\x4f\xcb\xc1\xc0\xe2\x1d\x15\x34\x96\xfa\x1d\xd5\xc2\x17\xbe\x2d\x19\xdf\x4e\x1c\x95\xee\x04\x01\x9e\x6e\x25\x64\x4c\xb5\x18\xa1\x4f\x79\x4b\x96\xe4\x86\x5c\x13\x49\x82\x09\x87\x17\xa8\xc0\x4f\x9b\xd4\xa9\x26\x70\x5b\xa5\xf0\xb8\x9d\x16\xe0\xe8\x43\x19\x01\xd8\xe4\xd4\x7d\x54\x60\x12\xd1\xa8\x4e\x71\x78\x0a\x44\xfd\x30\x53\x34\xe2\x1c\x9b\x30\x3b\xd0\xf8\x78\x3b\x7a\xa0\x31\xf0\x16\xee\xd7\x38\x1d\x35\x36\x00\x37\x08\xfc\xc6\x7e\x10\x68\xb4\x6c\xde\xc5\x79\xca\x07\xc9\x7e\x5f\x3f\x91\xf9\xa1\x4d\xd8\xee\xd5\xfb\xef\x3c\xe7\x38\xb3\xa0\xf6\x1b\xbd\x1f\xe3\xe6\xab\x49\x4b\x78\x01\xe1\xa3\xe3\x80\xc5\x50\xfc\x40\x83\xcb\x10\xb7\x88\x40\xb9\x94\x5a\xff\xa7\x75\x96\x4b\xbd\xe8\x4f\x09\x2b\x24\x9a\x47\x59\xca\x68\xdf\x51\x3c\x83\x58\x2e\x54\x31\x0a\x1c\x18\x8a\xfb\x10\xeb\x4b\x94\x02\x3a\xc6\x22\xe3\x85\x6f\x29\x52\x73\x36\x15\x41\x92\x3f\x96\xe1\xe2\x86\xfa\xe8\xf5\xbb\xd7\xa0\x0d\x17\xe8\x36\x80\x77\x30\x56\x8c\xd3\xc4\x79\xdb\x58\x24\x4e\x03\xc3\x6d\x69\x4b\xd6\xe4\x18\x14\x2b\x20\x6a\x56\x28\x6e\x13\x5b\x69\xe7\x48\x77\xa6\x76\x33\xec\x77\xdc\x04\x9a\xf2\x86\x67\x40\xce\xb7\x03\x73\xe8\x43\x05\x49\x01\x97\xe1\xd0\xac\x5d\xbd\x01\x30\x74\x4e\x09\x27\xfe\x1e\xca\x58\xda\x67\xd6\xcc\xbb\xca\xaf\xd2\x59\x75\x95\xe2\xd1\xa3\xb3\x15\x9e\x59\x0d\xe0\x0f\x87\xc4\x1c\x8e\x86\xc5\x70\x28\xcd\x91\xcc\x0f\x02\x30\xba\x2b\x2d\xb8\x1c\x80\xc5\x77\x02\x95\x57\x22\x87\xf1\x5c\x5b\xe1\x9c\x68\x53\x46\xb2\x3d\x40\x2d\x69\x90\xaf\x5c\x1b\x46\x34\x94\xde\x8f\x1a\x23\x3b\x5b\xe1\x46\x3b\xe1\xd0\x78\x3b\x44\x28\xf1\x3c\x2a\xb6\xf3\xa2\x84\xe8\xea\x46\xa2\x5c\x91\xf3\x53\xa7\x31\x9f\xa7\x74\xae\xb8\x4f\x80\xec\xbd\xbd\x10\x38\x6a\x66\x6e\xb4\x24\xd2\xb4\x87\x9c\xe9\x11\x24\x67\x51\x57\x39\x16\x19\x25\xeb\x67\x03\x2d\x61\x5e\x4f\xa9\x99\xcf\xb0\xb7\x36\x27\xe8\xe8\x1a\x31\x73\x76\x6e\x27\x4d\x1c\x6a\x2d\xa9\xc3\xd2\x1d\xfb\x47\x34\x3b\xb1\x54\x17\x4d\xe7\x60\xc7\x0a\x7b\x36\x1e\x86\xbe\x76\x2c\xa4\x8a\x06\x3a\xc1\xb7\xd5\xf3\xd1\x0e\x9c\xce\xff\xc4\x92\x96\xdb\x93\x1d\x0c\x8d\x65\x78\x3a\x6f\xc7\xf3\xe7\x74\xce\x5c\xd7\x06\xf5\xeb\xb7\x68\x00\xa7\x83\x87\x74\x13\x70\xde\x32\x91\x05\x16\x46\x88\x31\x17\xe8\x8a\x36\xb9\x6d\x50\x8e\xaf\xc2\x93\x03\x9c\x53\x23\xb0\x5c\xfb\x99\x86\x3b\x1a\x8d\x46\x10\x94\x7b\x18\xaa\xea\x4e\x5d\x1b\x6b\xb7\x6f\x67\x57\xe9\xd9\x8a\x20\x84\xf7\x64\xbb\x59\x64\xeb\x38\x5d\xfd\x61\xcf\xa6\xae\xfd\x3c\xac\x0d\x58\xc3\x61\x93\x00\xa8\x4e\x9f\xb8\xf6\xa9\xca\xa6\xad\xef\xad\xb0\xce\xe0\xda\x78\xd8\xdd\xd9\xce\xfe\x99\xec\xfc\x91\xee\x69\xc0\x5a\x98\xcc\x85\x11\xbb\xa5\x6a\x1f\x3a\x58\x72\xfc\xa7\xb5\x73\x51\x49\x51\x1a\x43\x17\xa2\x02\xd8\x79\xff\x8a\xf6\x24\xe5\xec\xf7\xa1\x83\x63\xd8\xf4\xb0\xe9\x69\xf3\xd5\xfb\xef\x4c\x6a\x55\x55\x96\xb1\x39\xda\x62\xb5\x82\xda\xaf\xb1\x95\xaa\x4c\x06\x69\x91\x14\x0d\x19\x31\xc9\xd4\x8e\x2b\xbd\x6e\xfc\xb8\x4d\x58\x61\x61\xc2\x77\xd5\xd5\x33\x1d\xa8\x6c\x35\x1c\xe2\x78\x69\x59\xf3\xc6\x74\x88\x0d\x03\x52\x72\x5e\xce\x67\xfe\x2a\x08\x20\x8c\x70\x3f\xac\xaa\x79\xbd\xbe\x9e\x87\xf5\x33\xc4\x4e\x0c\xe9\x9c\x44\x74\x45\xfa\x8d\xc5\xb5\x4c\xd8\x1d\x16\xbc\x0c\xb8\x36\x07\xab\x14\x0a\x65\x8f\x6d\x4e\xb8\x49\x57\xe8\x89\xb6\x51\xfb\x1a\x4a\x55\x73\xb5\xff\x0d\x42\x65\xd0\xa6\x06\x9d\x9a\xcf\x1a\x7c\x9a\xde\x1f\x1a\x89\x72\x3c\x57\xf9\xec\x2a\x9d\x9d\xe1\x23\xa4\xc8\xdc\x43\x0d\x10\xee\x5b\xdb\xbe\x66\x04\xd4\xee\xde\x4c\x60\x45\x93\x33\xa0\x87\xbb\xd7\xd7\x13\x39\x63\x87\x23\x26\x7f\x41\x8d\x06\x14\x63\x23\x89\x9a\xf3\x07\x3b\xba\x89\x1c\x6d\xbe\x84\x8f\x24\x3c\xca\xd7\xf3\x74\xcd\xd4\x03\x53\x48\x98\x1f\x05\xa4\x83\xd3\xf3\x3b\xd2\xea\xf9\x50\x46\x7e\x59\xca\x24\x5b\x22\x7a\xa8\x60\x20\xd9\x50\xdc\x70\xb9\x1f\xca\xd8\xf7\xd2\xc3\x82\x8c\x03\x23\x4b\xce\xd4\xc2\xf5\xda\x72\x37\x7a\xc3\xee\xe2\x45\x98\x1c\x0a\xfb\x2d\xd4\xc3\x43\x34\xea\xfd\x94\xe6\x6c\x91\xad\xd2\xf8\x77\x16\xf5\x60\xc6\xf4\x51\x44\xf3\x10\x42\x4a\xf3\x08\x49\xf9\x1d\xd4\x47\x0f\x31\x7a\x8f\xf9\xb6\x72\x77\x84\xca\x71\x8a\xa4\xfd\x41\x76\x0a\x46\xe1\x2c\xd4\xf2\xbf\x85\xf7\x64\xce\x56\x71\x7a\xb8\x47\xb5\x00\x2d\x0f\xdc\xf6\x64\x93\x6d\x20\xc0\xe7\x31\x97\xe2\xed\x72\xd9\x86\x37\xd2\x20\x4f\x7f\x58\xb4\xe8\x9a\xeb\xfb\xe6\xff\xc4\x09\x02\x41\xc2\xf6\xa4\xfc\x53\x1d\xbc\xaf\x56\x38\x89\xdd\x16\xd7\xad\xea\x14\x84\x00\x70\x00\x13\xb9\xec\xbc\xdd\xfe\x0f\x4c\x3a\x5a\xce\x38\xa3\xda\xf5\xaf\x22\xed\xf3\x16\xa7\x1a\x92\xb9\xe2\x43\x22\xbc\x97\x27\x23\x91\x3c\x16\xb1\x3d\x74\x75\x75\x75\x25\xcc\xe8\x54\x39\x58\x91\xa7\x2e\x9e\x59\x2b\xcb\x26\x8e\x54\x4f\x15\x9d\x45\xeb\x2d\xc2\x98\x97\xea\x2a\xe3\x74\x97\x61\xa2\x50\xbb\x1a\x61\x6d\x2e\xcf\x5e\xe4\x30\x9c\x49\x43\x77\xdd\xab\x93\x9b\xd6\x27\x62\x45\xc9\x89\xb2\x30\x51\x19\x94\xec\xdb\xe3\xdd\x98\xc8\x6e\x98\xf9\xce\x95\x71\x89\xcc\x37\x3e\x97\xea\xc1\xe7\x3a\xe5\x42\x99\x7f\xc8\x04\xf7\x5c\xd9\x76\xa8\xde\x5c\x28\xd3\x0d\x95\xc3\x56\x96\x19\x2a\xc7\x53\x6d\x8f\xd1\x4e\xd1\x63\x72\xc7\xda\x6a\x42\xa5\xb8\x4d\xbb\x87\xba\xdf\x53\x13\x76\x8b\x6c\x8d\x70\xcb\x1a\x42\x8f\x7a\x4c\xce\x8f\x8f\xda\x39\x3f\x68\x4a\x8f\x72\xe2\x68\xab\x06\x95\x62\x6b\xa3\x84\x76\x8a\x1e\xe8\x64\xa2\x55\xfb\x8f\xcc\x8c\x3b\xd1\x9a\xfa\xc7\xe6\xee\x89\xd6\xbe\x6f\x23\xf3\xca\x72\x88\x6b\xf2\x6b\x57\xe8\x6c\x45\x1e\xa2\x87\x98\x8c\x5d\xad\x8f\xff\xc7\xa5\x1e\x72\x36\xef\x21\x32\x4a\x69\x48\x4c\x5c\x89\x00\xae\x06\xc5\x78\xa2\x75\xe9\xdb\x29\x1a\x14\xe3\xb1\x56\x83\x6f\x01\x67\x6c\x1f\xe9\x10\xd1\x39\x14\xb0\xd0\xeb\x77\xff\x78\xf1\xe6\xf5\xb7\x48\x2b\xb5\xcb\x92\xe7\xfb\x3d\x01\x6a\xe4\xf9\x10\x7a\xd8\xff\xf5\xea\xce\xb6\x83\x47\x33\x6b\x46\xad\xab\xdd\xd5\x0e\x63\x7c\x46\xcc\x4f\xc3\xd6\xfb\xce\x25\x7b\x9d\xbb\xba\xba\x52\x3f\xe2\xe1\x81\x51\xfe\xaa\xb8\xfa\x18\x3c\x9a\x9d\x9e\x5e\xed\xaf\xf6\x2a\xf5\xca\xd2\x4f\x3a\x27\x2f\x69\xfd\x17\x9e\x3d\x6f\x27\xfc\xa5\x9d\x70\x75\x76\x90\xf2\xeb\x41\x4a\xf1\x88\xef\x9d\x57\xf3\x83\x0f\xbb\x76\xca\xc0\x4c\xe8\x9f\x9e\x36\x5e\x55\xff\x1b\xbd\x97\x05\xd5\x3b\xd5\x1f\x46\x57\xa3\xfa\x99\x83\xc7\xa7\xff\xb5\xbf\x2a\xae\xce\x46\x38\x00\x98\x9c\x48\xa0\x9c\x8d\x02\x9d\xb1\xd0\xc0\xbd\xda\x43\x0f\x8d\xa6\xda\xef\xc8\xba\xba\xf2\x51\x50\xf9\xbf\xa2\x00\x3f\x42\x2a\xf9\x21\x4f\x7e\xc8\x93\x1f\x06\xf8\xd1\x43\x95\xfc\x7f\xd5\x43\x99\x6f\x19\x74\x87\xf7\x46\x76\x05\x3e\x2c\xc3\xa4\xe8\xfe\x72\x3a\xf3\xed\xd3\xa7\xc1\xb0\xf3\xa3\xe5\xff\x7a\x55\xf4\xd1\x5f\xfe\xcf\x29\xb9\x1a\x5d\x9d\x4d\x4f\x9f\xff\xdf\x2b\xff\xf4\xea\xd7\xff\x77\xb5\x3b\xfd\x2f\x59\xa6\x31\x72\x3d\x42\xdf\xff\xf5\x2a\x08\x1e\x5d\xe9\xe1\x6b\x80\x3d\xc0\x67\x01\xa9\xb7\x58\x6f\xb7\xde\x7a\x3b\x89\xa5\x13\x72\x4e\x2e\xc8\x63\xf2\x84\x3c\x25\x8e\x4d\x1c\x87\x38\x2e\x71\xc6\xc4\x99\x10\xe7\x9c\x38\x17\xc4\x79\x4c\x9c\x27\xc4\x79\x4a\x5c\x9b\xb8\x0e\x71\x5d\xe2\x8e\x89\x3b\x21\xee\x39\x71\x2f\x88\xfb\x98\xb8\x4f\x88\xfb\x94\x8c\x6d\x32\x76\xe0\x52\x1f\x5c\xe4\x16\xf1\x67\xe6\xf5\x9d\x3d\x61\x46\x5b\x07\x1f\x17\xd9\x5a\x7f\x1c\xb7\x3f\xca\xc3\x3d\x9d\xc1\x26\x07\xf5\xdb\xfb\xfd\x7e\x6f\xe1\xe9\xc9\x4a\x5e\x48\xce\xa7\xd7\x86\xc3\xd4\xd5\x74\x35\xfa\x20\xae\x23\xb5\xd1\x3b\xf8\xee\xda\x5b\x18\x1c\xf3\x63\xf2\xcd\x31\x1f\x53\x78\xb7\x37\xec\xef\x5f\x4a\xd7\x69\xf4\xba\xd1\xc0\x4e\xb9\x54\xf3\xae\x49\x14\x17\x61\x51\xb0\xf5\x3c\x69\xf0\x1f\x4a\x58\x9b\xab\x80\xc2\x8b\x2c\x62\x05\x09\xc9\x82\xfa\x81\xb0\xf5\xec\xf6\xcf\x21\x24\x2d\x7f\x15\x10\xf4\xed\xab\x97\x6f\x5e\xfc\xf8\x4a\x98\xd7\x8b\x1a\xf0\x42\x5e\x98\xc9\x6f\x3d\x34\x0c\xc1\x81\xc4\x10\x51\xfe\xf8\x39\x4c\xb6\x4c\x86\xa4\x8f\xd4\x3d\x9c\xf0\x45\x6e\x4f\xaf\x9f\x85\xa3\x30\x5f\x29\x6f\x53\xd3\x6b\x88\x83\x26\xd2\xfc\xeb\xc0\x88\x4b\x6f\x06\xdf\x64\xf4\x21\x7a\x38\x64\x9a\x3a\x73\x69\x98\xa0\xab\xab\x14\xe1\x21\x10\xf6\x48\x85\x38\x9b\xca\xce\xa9\xce\x0e\x11\xb8\x91\x11\x62\x76\x0f\x61\x1d\x03\x7c\x21\xd3\x78\x1d\x7b\xc2\x7e\xdb\x86\x89\xc1\x22\xce\x1b\xec\xad\x84\x9c\x8e\xbf\xcd\x59\x90\x66\x5a\x9f\xd2\x13\xc5\xe0\xf7\x1d\xc3\x1b\x8a\x3d\x5d\x3c\x0b\xa7\x0b\xe5\xf4\x24\x6a\x54\xe8\x2f\x02\x02\x6e\x37\xf4\x2b\xaf\x3b\x92\xef\x7d\x4a\x99\x7c\xac\xaa\xc8\x84\x1a\x7c\x31\xde\x0f\x1b\x16\x82\x78\xa3\x90\x9a\x59\x91\xe8\xaf\x02\x5d\x8b\xbf\x0a\x74\x0d\x7b\x39\xe4\xc5\x75\x9c\x44\x39\x4b\x1b\x63\x6e\x25\xf6\x29\x6d\x8d\xd9\x1c\x6f\xbc\xb4\xfa\x8d\xaa\xfc\x45\x30\x12\x70\x36\xaa\xf2\x17\x01\xae\xeb\xd0\x37\x0f\x64\xb5\x8d\x23\xcf\x56\x0e\x0e\x5b\xee\x2e\x4c\x18\x72\x04\x6b\x34\xa3\x13\xc0\xf5\x4a\x41\x77\x49\x5c\x94\x9e\x1f\x34\x4f\xe4\xa4\x6f\xda\x45\x33\xd6\xf6\x4d\x9a\xdd\xa6\xc2\x92\xac\x98\x1e\xfd\xa2\x5c\x64\x4a\x4f\xf0\x5e\xdf\x26\x27\x87\x0e\xe2\x79\x32\x0b\x17\xd7\xfc\x17\xc5\x4b\xc4\x7f\x85\xd7\x6d\x48\x01\x57\xd8\xfc\x29\xc9\x78\x56\xf0\xf6\xb7\xd0\x1e\xd1\x23\x88\xe3\x88\x8f\x76\xc1\x8f\x02\xba\xf0\xa3\x66\xf0\x70\xe1\x65\x00\x9c\x92\x48\x87\x03\x87\xf8\x2c\xdd\x16\x81\x03\xbb\x50\x06\xe1\x32\xc0\x69\xc1\xfa\xdb\x70\x56\x51\x04\xc4\x9a\x83\x1f\x91\xc0\x9a\x83\xbf\xed\x78\x75\x7d\x2c\xbf\x76\xe0\x7b\xe8\x8b\x53\xf8\xcc\x33\x5c\xc4\x69\x34\x0d\xa9\x0d\xae\xe6\x25\x92\x85\xcf\x16\xd3\x50\x06\x3f\xd0\xa3\xa9\xcd\x91\x1b\xee\x73\x16\xe6\x24\x8f\xf8\x1c\xd3\x76\xc2\xa8\xc8\xf2\xd2\x6a\xde\x4e\x29\x19\xfc\x74\xbe\x6f\x9d\xaf\x4a\x54\xfb\xd0\xd9\x7b\xb0\x9c\x93\x42\x9b\x20\xbb\x58\xfb\x40\x9d\x4b\xf3\x60\x39\x4f\xf2\x58\x4d\xf4\x86\xa3\xf1\x70\x48\x64\x67\xb7\x85\xf6\x0e\xd9\x7a\xaf\xaa\xb9\xf1\xd6\x44\x68\x70\x46\xaa\x41\x16\x51\x1b\x68\x86\x39\x4e\x15\x37\xe2\x19\x83\xd8\x11\x8b\xe6\x67\x3f\x0a\x88\xfb\x7c\x51\x55\x02\xac\x51\x04\x6e\x36\xad\xc5\xa9\x53\x1f\x3a\xee\x09\x20\x70\x27\xc2\x28\x57\x23\x30\x53\x72\x72\xa7\xf3\x3a\x40\xc0\x74\x01\xce\x4e\x4d\xe8\x48\x20\x5a\x0b\x8c\xa7\x73\xb8\x07\xed\xfa\x3a\xc7\x0a\x56\xa1\xf0\x06\x46\x24\x79\x5c\x24\x61\x51\xc4\xcb\x2f\x60\xdb\x6a\x85\x78\x2a\xc3\x3d\x40\xb8\x12\x71\x42\x22\x12\x64\x06\xb2\x20\x73\xec\x21\xe1\x58\x45\x64\x92\xce\xf9\x20\x45\x55\x43\x1a\x88\xcb\xb7\x09\xd9\x13\x44\x16\xf7\x7d\x9c\xb7\x3e\xb2\xf5\xa6\xfc\xf2\x43\x58\x5c\x23\xac\xa7\x5e\x7c\x01\x20\x82\xe3\x1e\x2e\xbb\x8a\x3e\x84\xeb\x79\xbc\xda\x66\xdb\xc2\xec\xec\xff\x46\x57\x1a\x1f\x74\xab\xdf\x98\x5d\x9a\x36\xf3\x6c\x36\x2c\x8d\xf8\xf6\x07\x0e\x50\xda\xeb\x15\xdc\x81\xc9\x33\xe2\xc5\xf4\xa0\x4f\xa2\xd5\x03\xbc\x6c\xe1\x22\xe7\x23\xa2\x80\x2c\x68\xe8\x2b\xb7\x10\x8a\x9e\x89\x9d\xfe\x03\x38\xcb\x9b\x59\x0b\x81\xb2\x92\xba\xd4\x58\x2a\x92\x5b\xa3\x5b\xb1\xf2\xa5\x70\x5d\x87\x88\xcc\x01\x31\x0a\x0f\x3a\xf9\xb1\x6e\x83\xe7\x6c\x79\x57\x22\x0b\xa0\x6e\x98\x48\xe7\x7e\x9c\xac\x40\x8a\xec\x05\xa4\x72\x24\xf6\x4c\x8a\xb4\x68\xcf\x3a\x47\xd6\x55\x7a\x99\x01\x44\x48\xe8\xd7\x37\xb4\xaa\x27\xd9\x46\x40\x6b\xaf\x7d\xf5\x74\x2d\x34\xc3\x41\xce\x01\xbd\xe8\xdb\xd3\xb9\x72\xd7\x27\x56\xc0\xeb\x6f\x2d\x9d\x22\x3b\x68\x8e\x1c\x11\x04\x70\xb1\x51\xab\x33\x0d\x2f\xb5\x88\x08\xd6\xed\x28\x66\xa8\x40\x6c\x66\x7f\x3b\xb2\x4a\x8f\x09\x88\xcc\x25\x8c\xf1\xbe\x76\x51\x74\x50\x56\xc0\x55\xba\x00\xc4\xd3\xb9\x72\x45\xa9\x5c\xa1\x29\x0c\x49\xb3\x57\xf0\x61\xd6\xd1\xa2\xf8\x12\xa1\xd6\xd0\xeb\x9e\x37\xd7\xdd\x81\xa3\x47\x20\x60\x91\x8c\x08\x25\x60\x0f\x11\x53\x99\x0c\xcd\x1e\xaa\xa8\xe7\x2d\xd4\x37\x51\xef\x44\xd2\xd9\xf6\x74\x9b\x2b\x36\xbc\xef\xe3\xa2\x73\x6e\x5e\xa8\x9e\x23\x38\xbd\xdb\x13\x83\x8c\x1d\xac\xd2\x38\x9a\x0a\x8f\x39\x70\xb4\xc6\x91\x57\x40\x8b\xa7\x59\x73\xec\xc9\xa1\x35\x6e\x3d\x39\xea\x68\xf2\xa4\x56\xda\xfc\x0f\x57\x5a\x77\x0e\x3e\x20\x95\xa5\x4d\x61\x72\x56\x64\xc9\x67\xf6\x41\x6a\x60\xbd\x09\xd7\xf3\x28\x04\x82\x53\x93\xef\x83\x99\x09\x95\xcf\xce\x72\xbb\xf9\x6e\x9b\x24\xca\xe3\x83\xa0\x14\x32\xd7\x14\x22\xd4\x44\x7a\xde\xb4\x9a\x63\x27\xb7\xb4\x08\x70\x07\x9c\xff\x56\x67\xe1\xeb\x40\xde\xfc\x2f\xb0\xd6\x7f\x3c\x5a\xe1\xfb\x34\xf9\xd2\xf4\x33\xf8\x4b\xb6\xed\x15\x1b\xb6\x88\x97\x31\x8b\x7a\xed\xbc\xa4\x37\xdf\x96\xbd\x2d\x78\x85\xbf\x66\xbd\x6d\x0a\x19\x64\x04\x8b\x1e\x1a\x9e\xf0\x3d\xa1\x0b\x15\x0e\x7b\x47\xe6\xd2\xcd\x2a\xde\xef\xa5\x2b\xaf\x23\x52\x4b\x73\x17\x9d\xe3\xa9\xb1\x41\x86\xb3\x83\xfd\x91\xef\xa0\xf5\x36\x1b\x1e\x6e\xb3\x73\x45\x06\x9b\x1b\x1a\x67\x37\x5f\x7f\x7b\xb8\xc8\x0f\x10\xeb\xf8\x3a\xd2\x39\xea\x75\xd8\x5c\xf2\x49\x96\xdd\x6c\x37\xef\x53\xa3\x84\xca\xd8\x41\xfa\x34\x36\x1a\x7c\xa6\x23\xb8\x17\x63\x29\x34\xb9\xcd\x66\x4b\x75\x03\x61\x80\xf7\xc2\xbd\x57\x07\x05\x14\x88\x11\x85\x65\xc8\xe9\x33\x88\x48\x71\xa4\x1d\x39\x72\x9e\x2e\x96\xb1\x24\x9a\xc8\x22\xbe\xf7\x78\xc1\x5e\xce\x96\x2c\x67\xe9\x82\x15\xbd\x30\x67\xcd\x80\x27\xa0\xa8\x58\x7b\x65\x3c\xc0\x11\xd1\xd9\x6f\xc3\x32\x04\x86\xbd\x5e\x10\x5f\xc5\x60\x1f\x0c\x59\x0c\x56\x7a\x52\x3b\x4a\xf0\xeb\x6d\xb5\x41\xed\x95\xdb\xb5\x7b\xcb\xbd\x89\x4b\x96\xf3\x5d\x67\xae\x3c\x2c\xe2\xbd\xf6\xd2\xf6\xb5\x25\xe7\x59\x96\xc0\xce\x04\xee\x76\x9a\x8e\xf9\x44\x91\x63\x55\x49\x4d\xdf\x9d\xcc\x35\x27\x5c\xfa\xf5\xfc\xa0\xdb\x99\xbc\x83\xf7\x78\x4f\x22\xb6\x48\xc2\xfc\x3e\x09\xb4\x59\xa9\x3e\x31\x21\x7c\x5f\xf5\xe6\x04\x8e\x43\xbc\x90\xd7\xa5\x96\x44\xa3\x7f\x10\x19\x4f\xed\x7c\x82\x6d\xf7\xe7\xc1\x60\x70\x62\x35\x53\x68\x5f\x6a\x5d\xfc\xff\xd8\xfb\xb7\x35\xb7\x8d\xa3\x61\x14\x3e\xd7\x55\x70\xf0\xfb\x1d\x11\x21\x86\x9a\x91\x1d\x27\x2f\x69\x58\x91\xa5\x91\xa3\xcf\xb2\xe4\x48\xb2\xf3\x7f\x8b\x66\x26\x20\xd1\x9c\x81\x05\x02\x34\x00\x4a\x9a\x70\x70\x15\xeb\x74\x5d\xdd\xba\x92\xf5\x74\x55\x6f\xaa\x37\x00\x39\x92\x95\xf8\x7d\x9e\x4f\x07\x1a\xa2\xbb\x7a\x5f\x5d\x5d\x5d\x5d\x1b\xca\xf9\x43\xd3\x0b\x08\xb8\x4e\x77\xbb\x97\xbd\x90\x3e\x52\x00\x21\x4c\xef\xc3\x51\x6a\xdc\x83\x95\xb7\xda\xd4\x24\xa3\x06\xc5\x9d\x3f\xe0\x58\x3f\x49\x1d\xc2\x08\xb7\x81\xa3\x33\x1d\xde\x20\x79\x20\x09\xcb\x64\xf9\x40\x73\xa6\x81\xe2\xd8\xf1\xc1\x0b\xe9\xbb\xd1\x75\x8d\xc6\x0b\x45\x00\xa7\xc9\xc9\xc9\x34\xe4\xb7\xe5\x78\xa1\x3c\x8b\xf8\x78\xca\xf0\xf7\xcc\x52\x4a\xad\xc7\xac\x9e\x2d\xc5\x15\x7b\x19\x82\xd6\xa3\xef\xd0\xa3\xd8\x77\x27\xd1\x41\x11\x16\x86\xef\x6c\x3d\x89\xc3\xf4\x63\x58\x12\x8c\x37\x26\x0e\x80\x84\x23\x18\xfc\xb1\x28\x2d\xb9\x7a\x68\x1f\xfa\xe0\x30\x54\x45\x70\x89\xed\xa3\x5d\xd9\x14\x2c\x6e\x6e\xa4\xa4\x4f\xbf\x11\x43\xdc\x45\xe2\x4c\xf4\x88\xcf\xdd\xc3\x57\xaf\x0d\x87\xa2\xce\xa9\xcb\xd9\x4c\x08\xb9\x32\x48\x06\x58\xe5\xa0\xa4\xd1\x57\x07\x0f\x5f\xbd\x1e\x34\x25\x49\x21\x3d\x1c\x0f\x78\x15\x22\x60\x4b\x30\x5a\x84\xd3\x44\x04\x27\x0c\x38\x75\x0e\xb2\x62\x90\xdc\xdc\x0c\x13\x49\xe4\x39\x99\x5d\x2a\xdf\xa5\x53\x21\x18\x58\x2a\x21\x2d\x95\x0a\xa8\xa8\x46\x02\xe6\x7f\x25\x6f\x93\x57\x10\x89\xd1\x0f\xcd\xe7\x6e\xef\xc4\xdd\xf9\xcf\xce\xdc\x07\x4f\x1b\xe0\xab\x13\x9c\x84\x45\x97\x18\x50\x47\x04\x2d\x58\x91\xc9\x8d\x56\xdd\x93\xbb\x8a\x12\x92\xdf\x37\xb1\xab\x28\x89\x84\x91\x0a\xef\x46\x1a\xeb\xc0\x11\xc3\x95\x12\x06\xa7\xd4\xa3\x79\x74\x19\xda\xee\x71\x37\x3d\xc1\x2d\xc5\x61\x00\x64\x3e\x4e\x68\xe0\x4a\x21\xc7\x4f\xe2\xdc\x13\x32\x6a\x19\xe7\x4e\xc8\xa8\x28\x8d\xf3\x71\x5e\x5e\x4e\x17\x54\xd0\xcf\xcf\x91\x67\x70\x46\xd3\x97\xfd\x3b\x92\x08\x44\x6c\x8a\x41\x4f\x21\x6e\xe1\x8b\xd5\x10\xef\x7d\x01\x04\x36\x84\xb9\x67\xf1\xbd\x7f\xe0\xb3\xcf\x67\x22\x3a\xf9\x32\x7c\x90\x8c\x82\x59\x30\x5a\x8e\x82\x79\x30\xe1\x67\xc3\x4f\x49\x9e\xa5\x7a\x26\x7f\x4a\xaa\x2c\x59\x60\xb0\x50\x01\x3e\x0e\x46\xcb\x09\x2f\x76\x17\xca\xdd\x9d\x07\x6a\xdf\x3f\x08\x86\x10\x3f\x73\x70\x7c\x3c\x08\x46\x6c\x14\x84\xc1\x84\xb5\x66\x78\x1a\x37\xb8\x88\x21\x4f\xe3\x30\x83\x78\x30\x83\x7a\x22\xde\xc4\x2c\x99\xf3\x56\xa6\x3f\x17\x41\x1b\xe1\xbd\xee\x75\xf9\xcd\x76\xb5\x32\x42\xcc\x99\x6a\x16\x24\x0c\x93\x12\x17\x3e\x08\x04\x04\x54\x3d\x0d\x26\x3b\xab\xb2\xa3\x53\x75\xcd\x4d\x22\x19\x18\xcf\xd3\xdf\x05\x80\x0f\x46\xb1\xac\xa9\x6d\xdb\x28\x2b\x32\x7e\x91\xce\xfe\xc5\xec\xae\x99\x3d\xfb\x75\x5b\x36\x2c\x15\x61\x71\x41\x7b\x90\xaf\x6b\xbd\x49\x96\x6c\x12\xe8\x1d\x16\xb8\x22\x6f\x0c\x1f\xc3\x04\x9e\x91\x11\xc6\x77\x12\x53\xa6\x8d\x71\x49\xd2\xa1\x8c\x28\xe7\x4c\x09\x79\x28\x42\x9d\xc2\x9f\x0b\x29\x1e\x00\x0f\xe0\x4e\x81\x42\xc9\x22\xb2\xfa\xd1\x55\x96\x93\x68\x11\x32\x76\xc0\xf2\xe6\x66\x47\x43\x31\x91\xe2\xf0\x9d\xe4\x59\x52\xb3\x7a\xb2\x6b\x65\xc4\xd7\x8a\x25\xd8\x03\x15\x3a\x64\xf9\xe6\x55\x5e\x36\x52\x25\x1f\x12\x7e\x4a\x2a\x2d\xdb\x97\x21\xfa\x1c\x69\x3e\x3f\x97\xe8\x1b\x00\xce\x9d\xd0\xd1\x9f\x4b\xc7\xff\x79\x56\x58\x69\x02\xf0\x91\x10\xb1\xa2\x21\x42\xa2\x9e\xb8\xc4\x81\x9a\xc5\xa7\xe2\x59\x23\x31\x14\xde\xb2\xaf\xc4\x1c\x64\xa3\x51\xb8\x88\x13\x54\xe7\xc9\xcc\xe7\x32\xf9\xac\xf3\x40\xc8\xd1\xf9\x54\xce\xe3\x05\x12\x8a\x89\x48\x44\x90\x39\x0d\x4a\xb4\x80\x37\x99\x30\x5a\xe8\x67\x20\x31\x2b\x55\xb6\x79\xce\xde\x37\x8a\x35\x54\x29\xa0\x62\xa6\x58\x80\x57\xe5\xb6\x5a\x32\x8e\x63\xea\x52\xac\xa6\x58\x08\x81\xc9\x94\x28\x53\x3a\x67\x02\x5d\x7f\xfa\x57\xc3\x40\x50\x58\x88\xd5\x95\x33\x15\x94\x51\xec\x9f\x41\xce\x56\xcd\xa0\x2c\x44\xfc\x60\x43\xc2\x2e\xc3\xfa\x09\xb4\x16\xcc\xd6\x90\x85\x6d\x24\x31\xc2\xd5\x2e\x9b\xe9\x8b\xbd\x40\xc0\x30\x11\xaf\x8f\x81\xb8\xa7\x93\x17\x4e\xb5\xa3\xa2\x65\x2c\x58\xce\x7a\x10\x63\xeb\x10\xbc\x6b\x28\x03\x5b\x61\xd0\x24\x19\xe7\x2a\x9c\x0a\x2b\x0f\x8a\xfa\x5a\xf8\x06\x0c\xed\x72\x14\xc8\x88\x4b\x56\x9d\x2a\xea\xa3\xa8\x54\x07\xcc\xd2\xa2\x37\x7d\x53\xe4\x95\x8d\xe2\x00\x2f\x7f\x31\xfe\xb9\xb9\x19\xf0\xa3\x33\x9c\x8a\xb1\x2d\x45\xc8\x01\x2f\x35\xbb\xa3\x27\x60\x22\x7f\x46\x03\x41\x9b\x38\x69\x12\x2b\x6c\x92\xa5\xa1\x14\xcd\x60\x0c\x1d\xdc\xba\x72\xbf\x01\xc2\xc4\x49\x1b\x79\x97\xc8\x63\x26\x61\x6e\x53\xe9\xbb\xd2\xdc\xaa\x70\x41\x09\xa7\x3a\x50\xb1\x8a\x98\x03\xcd\xcd\xce\xe6\xb1\xf9\x39\x0a\x60\x06\x89\x11\x24\x46\x81\x35\x56\x5f\xbd\xac\x0e\x32\xad\x59\x07\xea\x64\x82\xce\x84\xbe\x44\x3b\xea\xef\x32\x3c\xac\x33\x4b\x78\xd2\xf6\xd5\x38\x5b\x4a\x21\xaf\x2a\xe2\x56\x19\xf0\x9e\x4a\xad\x4b\x99\x2a\x74\xec\xf8\x31\x70\x3f\xe4\xa7\x48\x68\x10\x58\xa9\x7f\xad\x7b\x12\x83\xee\xf7\x1d\xa3\x17\x92\xe0\x92\x47\x6c\x50\x11\x0f\x5d\x3c\x96\x88\x23\x76\x38\xa5\x10\xf2\xcd\x0e\x30\x64\xaa\x1e\xfd\x64\x57\x1e\xcc\xa4\x08\x39\x42\xb6\x6e\x3e\x99\x19\x47\x95\xce\x96\xb1\x58\x23\x19\x73\xa6\x56\x65\xa6\x4b\x41\x45\x89\xde\xb8\x71\x26\xb9\x0f\x59\xcb\xaf\x18\x3c\x21\x0b\x4b\x35\xc1\xd0\x8c\xfa\x8a\xc2\x7a\x88\x47\x28\xd8\x96\x62\x8c\xce\xe4\x9a\x0f\x55\xc0\x76\x0c\xc3\xd1\xd2\x54\xd1\x5d\xc8\x7d\x18\xc9\xbd\x60\x50\x68\x7e\x54\x28\x7b\x6e\xa5\x81\xcb\xa9\x0f\x06\x2d\xe1\xdc\x90\xc2\x63\xfe\x1d\x0e\x76\x3f\x17\x03\x44\xa8\x36\x20\x27\x74\xa2\x0e\x61\xfd\x12\x47\xba\xef\xd3\xe6\x48\xe2\x3b\x41\xc0\x59\x82\xf8\x54\x5e\xdb\x11\x57\xf4\xec\xa5\x5a\xe1\x80\x19\x78\xbd\x9c\x4f\xd9\xd8\xe4\x7e\x1e\x2c\xe2\xc5\x83\x05\xef\xc6\x60\x30\x18\x8c\x38\xfb\x36\x96\xdc\x90\xfe\x35\x5c\xa0\x59\x85\xc1\x03\x2d\x46\xc1\x14\x86\x15\x2d\x84\x21\x78\x18\x25\xa3\x98\x61\x65\x81\xe2\xae\xe5\xeb\x22\x5c\x90\x1d\x13\x16\x7b\xab\xba\x2f\xe9\x8a\x96\x7b\xf2\x02\xf1\x82\xa8\x50\x55\x1c\xf0\x70\x91\x16\x97\xe1\x53\x75\xe3\x15\xfa\x23\x70\xbc\x0d\xa9\xa0\x01\x8d\xbd\x96\x6c\x78\x16\x9d\xf2\xf5\x95\x1c\x9f\xd3\x1e\x5e\x14\x82\x51\x62\xd8\x6a\x87\x41\x4b\x5f\x1c\xbe\xf9\x74\xa3\xbd\x73\xe0\x70\x09\x9d\x46\xd5\xe4\xe5\x9b\x21\x3f\x5f\xcc\x61\x3a\x14\x21\x5b\x0d\x86\x47\xd2\x64\x3d\xa9\x1b\x6c\x1d\x10\x58\xc4\x19\x8c\x07\x07\x4f\xca\x74\xd0\xc2\x43\x0c\x7d\x21\x72\x15\x9a\x79\x66\x56\x5c\x8a\x7c\x88\x04\xee\x49\x1f\xa9\x48\x63\x9a\x0d\x82\x98\xe1\x4a\x61\xf3\x1f\x3f\xd7\xa3\x7b\x51\xa0\xde\x20\xcc\xf2\xfc\x74\x43\xf7\xd5\xf6\x8a\x38\xed\xfb\x4a\x7b\xd2\x88\xaa\x68\x3d\xfa\x8c\xb6\xac\xf9\x32\xa1\x1d\x21\xe7\xc0\x69\x7b\x95\x6f\xeb\xab\xa7\xc0\x8c\x0d\x0d\xbd\x81\x8d\x5e\x33\xcf\x1a\x0d\x83\xd1\x1d\x7e\xdb\xba\xb9\xc1\x9b\xc8\x20\x8e\xe3\xc1\x29\xae\x11\xca\xba\x8c\x2d\x3e\x4c\xc2\x51\xc0\xd7\xa2\xfb\x70\x10\xd2\x29\xda\x0c\x08\xa8\xba\x6a\x0c\xee\xde\x0d\x44\xa5\x72\x70\xe2\x41\x6e\x2f\xc6\xdb\xd1\x6e\x63\xbc\x07\xda\xc9\x81\x33\x70\x6f\x3f\xec\x62\x43\xd1\x5f\x3d\x81\x7c\x77\x86\x61\x1b\x69\x01\x9f\x8b\x83\x84\x29\x3a\x8a\x63\x15\xa7\x8b\xf2\x4a\x49\xd8\x46\xd6\x33\x84\x07\x97\x95\xd9\xb6\xbe\xb4\x9b\xc7\x17\xa9\x32\x4a\xa2\x60\xa9\x1e\xce\x50\x06\xea\xd4\x4c\x2a\x86\xf1\x08\x39\xb8\xaa\xf4\x8e\x5d\x6b\xd8\x46\xde\x57\xb7\xbd\xeb\x22\xf3\x5f\x5f\x6f\x58\x7c\x57\xbb\x2b\xb9\xdb\x47\x3a\x13\x7d\x99\x47\x49\x94\xc6\x47\x5a\xdf\xe0\x01\x66\x88\x53\x14\x69\x57\x38\x98\xf0\xd4\x56\x4d\xac\x3b\x9f\x9d\xf4\x5a\x9e\xd3\xd0\xd6\xa0\xd8\xe6\x39\x6e\x86\x85\x6c\x3c\xe1\xd8\xfb\x40\xa4\x4c\x24\x16\x93\x55\x59\x18\xd3\xaf\x3b\xf1\x18\x02\x1d\xef\x9f\x7e\x78\x74\x91\x96\x1a\x4a\x22\xec\x38\xce\xe9\x5b\x3b\x67\xe9\x08\xca\x23\x83\x08\x8f\x76\x20\x47\xc6\x47\x82\x21\x51\x8f\xbc\xa3\x2c\x6b\xec\x52\x2a\xfa\xbc\xdd\x30\x98\x7a\x2a\xb9\xed\x01\xa3\xdc\xb5\xf6\x15\x86\x0a\xd8\x15\xad\x04\x26\x8d\xc3\x46\xd6\xb7\x98\x20\x6f\x6b\xfc\xea\x2e\xc8\x0e\xde\xe2\xc9\xee\x01\x71\xb3\xbe\xe1\xc7\x3b\xb8\x34\x83\x38\x81\x8f\x1a\x7e\x88\xb5\xe3\xbf\x5b\x30\x10\xb2\x5b\x21\xe4\x54\x47\x91\xd4\xf1\x25\x65\xa3\xe5\x66\x78\xf8\x18\xf9\x19\x27\x1b\xa6\x0c\x9e\x3d\x76\x0e\x07\x3d\xb5\x80\xc8\x12\x0f\x83\x1d\xf2\x5c\x4a\x67\x56\x01\x8b\xf4\x10\x19\xa9\xd6\xc4\x33\x3f\xd5\x31\xd6\xad\x71\x04\x4e\xb0\xf2\x77\x38\xa0\x5b\x9c\x0a\x03\xa4\x87\x23\xcd\xb9\x91\xc7\xb7\x03\x5a\x4e\x44\x57\x1d\x2d\xba\x24\xdc\x09\xbd\x8a\x07\x3d\x7d\x16\xd7\x1a\x42\xce\x93\xb0\x0b\x99\xc1\x81\x4a\x1b\xd1\x77\xf2\x89\x1d\x3a\xda\x7f\x17\xf4\x73\x5b\x57\x26\xa3\x05\x45\xb7\x35\x7b\x29\xee\xb3\x43\xf9\x86\xa5\x9d\x43\x29\xfe\x88\x28\x2c\x60\x02\xb4\x8f\xaf\x05\x07\x9f\x06\x0b\x42\x8e\xa6\x0b\xd9\x2f\xb8\xd1\x4b\xf5\x6a\x41\xe3\xa6\x89\x78\xf6\x79\x5a\x64\x9c\x61\x59\x8c\xe2\x20\xe2\x50\x3a\xd5\xc0\x33\xce\x2e\x2c\x46\x81\x50\xba\x18\x3c\x10\x7a\x07\x9a\x6b\xe3\x3f\x10\xdd\x39\xa7\x37\x19\x5c\xf9\x99\x3b\x23\x59\xc1\x87\x41\x38\x95\xca\x85\x06\x3f\x23\xd7\x86\xa8\x59\x78\x83\xa7\xfb\x26\x8f\xf6\x7f\x29\x46\x2f\x3b\xb2\x34\xfb\x1b\xa8\x86\x94\xde\x8c\x8f\x0a\xdf\xf2\xb8\xf3\xaf\x3c\x72\x2a\x92\x80\x0a\x96\xcd\x33\x82\xd3\x88\x37\x2c\xaf\x67\x36\xa2\x50\x6c\x50\x17\xe7\x24\x52\xcd\x44\xec\x70\xac\xa1\x87\x98\x74\x1c\x54\xb0\xf7\x8d\xe4\x1e\xef\x2c\x0d\x5c\xb1\x79\xaa\xa5\x1f\x67\xe8\x75\x80\xe0\x61\x2a\x2f\x02\x2b\xb8\x08\x98\x68\x64\x2d\xcb\x54\x33\x9c\x1e\xae\x92\x54\xca\x46\xc1\x54\x55\x29\xce\x34\x99\xed\xb2\x11\xbd\x6d\x2a\xd4\x15\x37\x0f\x43\xd5\xcd\xa0\x45\x89\xb0\x48\xa6\x53\xac\x25\x17\x89\x12\x63\x04\x61\x14\xdc\x05\xd6\xe5\x6e\x10\x59\x8c\xa5\x57\xea\x31\xf7\x49\xfc\xa4\x98\x0e\x99\x86\xa9\x17\x1f\x6b\x96\xaf\x90\x15\x0e\xe8\xde\xe5\xc9\x66\x60\x79\xcf\xe5\x93\xf3\xe0\x44\x07\xd1\x23\xb0\xbb\x63\xf7\x7d\x29\x8d\xfe\x3b\x0e\xbd\xd4\xbe\x87\x44\x4b\x3b\xc5\xf0\xf6\x01\x27\xec\xf2\xf8\x98\xe9\xe3\x51\x79\x55\xe3\xb3\x07\xb1\x57\xc3\x69\xca\x21\xf0\x60\x74\xb2\xd3\x70\xca\xe4\x41\x68\x65\x0e\x81\x8f\x0b\x51\x21\x51\x98\xbd\x2c\x22\x4b\x88\x6f\xed\x7a\x6d\x83\x91\x28\x55\x6a\x30\x7a\x59\x41\x60\xda\xa5\x14\x97\xac\xbe\xba\x9c\xae\x46\xa3\x70\x97\xc6\xcb\xd9\x6a\x3e\xc5\x58\xe0\x86\x90\x68\x8a\xd6\x2b\x28\x5c\x4a\x9a\xe5\xd5\xf9\xfb\xac\x6e\xf8\x74\x09\x4d\xe6\x34\x9c\xe2\xf3\xec\x95\x50\x3c\x76\xe4\x74\x52\x64\x2b\x1d\x79\x39\x00\xd2\xef\x0c\x3e\xe3\xc5\xfc\x17\x3c\xc9\xa8\x38\xeb\xa3\xab\xc8\x5b\x72\x76\x35\x8f\x99\x7a\xef\x4c\xa3\x85\x01\x26\x75\x55\x65\x29\xfa\x3a\xc3\x4b\xa6\xe1\x64\xd8\xd7\x66\xd8\xb6\x91\x6f\xc8\x06\x8e\x69\x43\xa3\xd3\x68\x19\x77\xb6\x27\x67\x7c\xf1\xd5\x72\xba\xb0\x2c\x62\xbc\xfd\x5b\xa0\x3d\xcc\xf1\x71\x2a\x0d\x47\x92\x50\x89\xe8\x5a\x65\x69\xa0\xd9\x05\xaf\x41\x79\xe7\x36\x53\x8f\xea\x52\xee\x87\xbb\xad\x28\xcb\x4d\x40\x05\x28\xf4\xc2\x4c\x94\xf2\xa7\x89\xa9\x67\x4f\xac\x7e\x66\x0b\x9c\xd2\x08\x9f\x7d\xa4\x28\x34\x42\x25\xe9\xc4\x56\x92\x5e\xc4\xc9\x2c\x9d\x47\x10\x15\xf8\xc1\x92\x0a\x3d\x4f\x83\x70\xb2\x34\xa5\xa0\xc3\xc5\x89\xd6\xad\x19\x9e\x52\x97\x36\xd8\x7f\x31\x2b\xc3\x60\x72\xc7\x48\xf8\x7b\xd6\x5c\xa1\x06\x4c\x10\x8e\x96\xb6\xfc\x2a\x92\x82\x7b\xdf\xe1\x49\x4f\xc3\xc4\xa5\xea\x70\xe5\x13\x02\x41\xf0\xdb\xa2\xc1\x7d\x77\x3a\xf1\x40\x30\x4b\xe6\x52\xd8\x4d\xd3\x94\x9e\x93\xf9\x92\x20\x59\x53\xc5\x0b\x6b\x56\xb0\xf3\x35\x18\x8a\x40\xd0\x7a\x52\xd0\x12\xac\x76\x8a\xa1\xa8\x64\x55\xdf\x4c\x2c\xf9\x83\xcb\x69\x7b\x2a\x0b\x43\x79\x39\x30\x85\x4a\x42\x66\x3a\x4d\xa4\x6e\x10\x69\x2c\xa1\xe3\x74\x7b\xeb\x0a\x8e\xa4\xe8\xbe\x58\x56\xea\xec\x4f\xdc\x03\x7f\x21\x96\x2a\x21\x2f\x0f\xc6\xa3\x9f\xd0\x28\x23\xf6\x3c\xf4\x12\xee\x39\x5a\x82\x40\xee\xf9\xac\x96\x3d\x42\x3a\x3b\x5d\x3e\x70\xce\x91\xa3\xd3\x30\x4a\x07\xc4\xb5\xe3\x25\x87\x49\x91\xee\x47\xab\xf8\xe8\x34\x9c\x0c\x59\x7c\x24\x04\x69\xe2\xd9\x32\x5a\xc4\x47\x42\xaf\x59\x4a\x33\x41\x31\x41\xdc\x0d\xc8\xa0\xa3\x45\x1c\x28\x19\x10\x0e\x45\x8c\x98\x33\x2f\x51\x20\x79\x32\x2d\x14\x0d\xc3\x89\x93\x06\x4f\xc1\x46\x54\xfd\xe5\x83\xe1\x4a\xbe\xa0\xe8\x33\x51\x69\x75\xc9\x8e\x9e\x9c\x44\x26\xe3\xbd\xe0\x33\x1d\x82\x35\xc8\xbd\x7f\x00\x98\x50\xc1\x48\xc3\x9b\x1b\x39\x3b\x84\x61\x23\xd7\x48\xb1\x62\x29\xf4\x5f\x55\x35\x0d\x42\xa2\x6f\x15\xa9\xa2\x5d\x7a\x07\x0a\x89\x38\x43\x7e\x47\xcd\x94\x73\x1d\x57\x43\x90\x9e\xd4\x54\xc2\xd7\xfa\x13\x5e\xfb\xe4\x6b\x9e\x95\x2c\xf8\x15\x78\xf8\x1d\x99\x35\x98\xef\xc0\xe6\x0a\x4a\xd7\x19\xf8\xed\xd1\xba\xf0\xd6\xd8\x46\x64\x07\x74\x5c\xfa\xc9\xbd\x16\x1e\x77\xe4\x7b\xb6\x73\xeb\xa5\x36\xaa\x78\x84\x25\x1d\x47\x55\xc2\x8f\x24\x0b\x7d\x3b\xb6\x50\x6a\xdf\x5b\x87\x69\x08\xfa\x22\xb5\xdb\x69\x3a\x3b\xee\xd3\xbc\xf4\x7e\xe2\xdd\x7d\xf6\xc6\x5b\xc6\xc3\xc5\x03\xbb\xa2\xc9\x1d\xa7\x93\xa1\x10\x7c\x64\xab\xe1\x51\x72\x7c\xbc\x34\xc6\x14\x2a\x1b\x59\xd8\x96\x00\x84\x9e\x1d\xad\x7d\x69\xea\x06\xc8\x58\xfb\x90\x3d\xd8\x94\x9b\xc0\xd6\xf0\x38\x39\x51\xe6\xb7\x7a\xdd\xf7\x8f\xca\x1d\x90\x33\x9e\x68\x61\xb9\x3d\x16\xa6\xa4\xc9\xf1\xf1\xc2\x5c\x2f\xa9\x81\xb1\x68\x23\x4a\xb8\x3d\x87\xc8\xdd\xe0\xee\x28\xa1\x1e\x21\xee\x5d\x46\xe8\xfa\x84\xf8\x89\x00\xdf\x12\x3f\xff\x1c\xdc\x75\x3c\x84\x81\x79\x32\x49\xac\x30\xb1\x32\x12\xb7\xf7\x4f\xef\xff\x19\x33\xe0\xa7\x93\xf9\xdf\x3a\xf3\xbf\xd1\xda\x59\x68\x89\x76\x88\x3c\x10\x51\x67\x9c\x3b\xb9\xa3\xef\xa5\xe2\x69\x28\x89\xd2\x68\x69\xf0\xed\xde\xbb\xe8\x42\xdf\x45\xc5\x3c\xee\xf0\x9a\x38\x49\x23\x7d\x5f\x9c\x24\xa8\xe2\xcc\x22\x7d\x09\x9b\xe8\x87\x29\xa9\x15\x90\x86\x84\xd5\x88\x3c\x32\x84\xc9\xf2\xf8\x58\xbf\x34\xbb\x27\xea\x22\xf4\xd7\xd5\x8a\x89\x78\x21\xfc\xe0\xf8\x64\x0b\x33\xf0\x47\x2e\x7c\x91\xaf\xa2\x4b\x69\x1e\x1e\x80\xc5\x9b\xf3\x56\xd0\x2f\x08\xa4\x65\x5f\x83\x18\xd2\xad\x20\xa2\x40\x8f\xa4\x88\xd2\x85\x0b\xa7\x2b\xe7\xa5\x27\x5b\x0d\x87\x97\xce\x2d\xeb\xe6\x66\x15\x5e\x4a\x46\xa9\x87\x9d\x8d\x2e\x63\xc2\xbf\x86\xd1\x9d\xd5\x21\x85\x56\x66\x21\xd9\x7b\x61\xda\x39\x09\x46\x2b\x9d\xb8\x2a\x26\xc1\xe8\x12\xad\x2a\xd0\xc0\x3c\x01\xa3\x72\x67\x24\x91\x78\x3f\x5f\x85\xdd\xda\xd9\xc7\xc7\x43\xca\x57\xd1\x29\x4c\xfd\xe9\x87\x2d\x8e\x16\x0b\x6b\xbb\x7f\x90\xbe\xce\xc9\xf0\x84\x10\x39\x18\x31\x0b\xc2\xab\xb0\xb3\x24\xd7\xf7\x89\xb8\xc3\x6b\x32\x46\xf6\x97\xb3\x19\x93\x38\xd8\xc9\xa3\x8b\xa0\x2a\x60\xa8\x29\x19\x46\xf3\x6f\x7a\x10\x18\x12\x28\xd1\xa1\x40\x4d\x2d\x49\x91\x3f\xe3\x60\x94\x4c\xef\x2c\x2c\x19\x6e\x10\xb4\x2d\x51\xbf\x08\xc0\x05\xd0\x00\xc4\x30\x9c\x6c\xc3\x36\x49\x6a\x36\x58\x65\x45\x92\xe7\xd7\xc2\x2d\xd9\x00\x78\xd3\x25\xbf\xf8\x0d\x56\x65\x35\x40\x17\x50\x83\x77\x57\xa8\xfb\x55\x34\x59\xb1\x65\x4a\x36\x03\x1d\x46\x45\x30\xe1\x4c\x7e\x90\xad\x84\x4b\xdf\x94\xe5\xac\x61\xa0\xad\x53\x5d\x0f\xd2\x92\x12\x63\xf9\x82\xb1\xa8\x9b\x2a\x59\x36\x03\x56\x6c\xd7\x83\xac\x68\x06\xf5\x55\x59\x35\x83\x05\x46\x87\x1d\xb0\xf7\x1b\xfe\x99\x15\x0d\xab\x56\xc9\x92\x81\x17\xef\x6c\x39\x58\x5c\x37\x6c\xc0\xde\x37\xac\x48\xeb\x41\x5e\x16\x97\x83\x7a\xbb\x61\xd5\x60\x79\x95\x54\x38\x9e\x41\x91\x34\xd9\x5b\x36\xa8\xaf\x8b\xe5\x55\x55\xa2\x37\x34\xb0\x94\x18\xac\xf2\x32\x69\x06\x9b\x64\xf9\x26\xb9\x14\xee\x87\xeb\x01\xa8\x50\x0f\x2e\xcb\xa6\x1c\x6c\xaa\xec\x6d\xd2\xb0\x41\x53\x25\x45\x9d\xb1\xa2\x19\x80\xca\xc6\x25\xab\x06\xf0\x62\x0a\x37\xd4\xc1\xa6\x2a\x1b\x74\xaf\xfe\xb6\xcc\x93\x86\xcf\x4e\x5a\x6e\x17\x39\xe3\x40\xbc\xd3\x9b\xed\x22\xcf\x96\x83\x9c\x35\x83\xeb\x8c\xe5\x69\x20\xfc\xb9\x06\x9c\x18\x6e\xe2\xc5\xf8\xe5\xf9\xab\xf3\x97\x3f\x9d\x3f\xbe\xf8\xfb\x8b\x97\x8f\x5f\xc5\xbb\x16\xe4\x13\x55\xcc\xb4\x7c\xa2\x02\xf9\xc4\x66\xc6\x66\xab\xf9\x1c\x2d\x41\x7b\xf5\x75\xe3\x3b\xee\x59\x76\x64\xb7\x34\x4b\xe6\xc7\xc7\xf7\xfe\x31\x4b\x4e\xfe\xf5\xf0\xe4\xff\xba\xf8\x6c\x3e\x3b\x3d\xf9\x6f\xf5\xf1\x07\xa9\x29\x9c\x84\x0f\x8e\x4e\x27\x47\x67\xad\xbe\x10\x0c\xff\x15\x6d\x42\x47\x95\x3b\x8f\xae\xa2\xcb\x08\x8c\x63\x90\xf4\x5e\x0a\x7f\xcf\x51\x2a\x7f\x82\x7d\xb0\x54\xd1\x86\xc1\x8b\x13\x1c\x7c\x90\x68\xa5\xfc\xa8\x8a\x73\xa1\x2d\x38\xbd\x8c\x2d\xe6\x6e\x11\x57\xc3\x70\xba\x70\x35\xe5\x41\x4f\x5e\xf4\x6a\x23\xcc\xac\xdb\xe9\xc2\x6b\x8e\x40\x61\x57\x04\xf6\xe1\xab\xd7\xf1\xd5\x54\x77\x32\x66\xd3\x85\x47\xbd\x3c\x4e\xa6\x0b\xe9\xdd\x65\x89\x46\x6b\x35\x8b\x53\x3d\x45\xd3\x3c\xbe\x1c\x86\x53\x39\x8a\xf8\x52\x66\xe5\xed\xf0\x3a\x7a\x1b\x3d\x8c\xbe\x89\x36\x21\xb8\x8f\xb9\xf7\x87\xa3\x3b\x83\x3f\x0c\xfe\x52\xbe\x65\xd5\xdb\x8c\xbd\x1b\x0c\xce\xd7\x0b\x56\x0d\x4e\x06\xba\xdd\xc1\xc3\xcd\x26\xcf\x96\x09\xec\xb5\x27\x55\xb2\x66\xef\xca\xea\x0d\x14\x5b\x96\x9b\x6b\x70\xcb\x30\x78\xa4\x7e\xdd\x3f\x3d\x3b\x3b\xb9\x7f\x7a\xf6\xc5\xe0\x75\x96\xa7\x6c\xf0\xb4\x58\x8e\x07\x49\x91\xc2\xc6\xad\xb2\xc5\xb6\x29\xab\x9a\x97\x26\xff\x7e\x28\x2b\x20\x22\x46\x35\xa7\x5f\xf2\x6a\xce\x06\xaf\x9a\xaa\x5c\x60\x3d\x07\x15\xfb\x33\x16\xe3\xbd\x16\xad\x3f\xcc\xf3\x01\x64\xd7\x83\x8a\xd5\xac\x7a\xcb\x52\xa8\xea\x2f\x79\xb6\x64\x45\xcd\x06\x83\xc1\x33\xfc\x95\x0e\xb6\x45\xca\xaa\xc1\xf7\x4f\x5f\x0f\x44\xa6\xd5\xe6\x2b\xc6\x06\x57\x4d\xb3\xa9\x27\xf7\xee\x55\xc9\xbb\xf1\x65\xd6\x5c\x6d\x01\x21\xee\x31\x3e\x75\xbf\xd4\xf8\x77\xfc\x4b\x7d\x6f\x9d\x70\xfa\x79\xef\xd9\xd3\x47\xe7\xcf\x5f\x9d\x43\x8b\xfc\x60\xe3\xf3\x38\x18\x9c\x8d\xff\x34\x3e\x3d\x59\xb0\x26\x19\x9f\x8d\x96\x49\x91\x54\xd7\xe3\xcf\xd3\x3f\x9f\xfd\xf9\xcb\x3f\x25\x77\x06\x7f\xb8\x77\x67\x30\xb4\x90\x0f\xfd\x1a\x46\x15\xfb\x75\x9b\x55\xec\xfb\x32\xdd\xe6\xea\x4b\xfe\xfd\xa5\x8e\x60\x05\xa7\xb4\x30\xa4\xe0\x31\x69\xff\x04\x9d\xed\x6c\x35\x14\xc4\x10\xb3\xe3\x98\x78\x51\x94\xc5\x77\x10\x1a\x81\xc2\x8d\x2f\x2e\xf2\x32\x49\xdd\x02\xbc\xb3\x28\x3f\xa9\xae\x39\x4d\xa9\x19\x2b\xe2\x5d\x3b\x45\x08\xbd\x11\x40\x3a\x95\xb2\x4d\x0d\x3c\xdc\x82\x5f\x0c\x76\xb2\xdc\x0c\x35\x96\x77\x3c\x7b\x62\xc0\x4c\xe4\x0f\xb0\x93\x10\xa3\x8e\xc5\xaf\xd8\x98\x1d\xb3\x29\xb8\x43\xf0\xbe\xd8\x0a\x99\x90\xa9\xb6\x24\x87\xc0\xd6\x5b\xfd\x33\xc6\x69\x3a\x32\xbb\x27\x83\xd3\xf0\xb3\x4c\xf8\xc9\x7c\x54\x6e\xf3\x14\x0c\x29\x57\x59\x91\x0e\xd6\xd0\x8f\x41\x30\x82\x36\xc0\x22\x63\x5d\xa6\xb1\x59\x0d\xcc\x41\xbc\x2e\xc1\x5c\x53\x0f\x14\x52\xe4\x47\x54\x31\xb0\xee\x05\x7e\x12\x8e\x24\x6d\x67\x99\xc5\xa7\x51\x1e\xf3\xb2\xca\x61\xce\x57\xf9\x34\xe3\x37\xc7\x6c\x35\xe4\xe9\xb3\x6c\xce\x17\x49\x14\x0c\xf8\x58\xa1\x36\xe1\xb8\x08\x93\xe3\x5d\x1b\x82\x77\x50\x33\xd7\x98\xd1\xa1\x50\xef\x90\xb5\x86\x61\xd8\xc2\xa8\xd0\x02\x45\xf6\x96\x2a\x2c\x8a\xca\x14\xd1\x26\x93\x2a\x1a\xbe\xb9\xc1\x9b\x9e\x3a\xd1\x65\x23\x20\xef\x84\x41\xc0\xaf\x31\x3f\x5b\x1f\x36\xc3\xd3\xf0\x28\x8e\x83\x71\xa0\x96\x0c\x72\xa1\x1b\x60\x1f\x18\x23\xb4\x38\xeb\xee\x05\x78\xe7\xd8\x24\x15\x2b\x9a\x6f\x92\x9a\xc5\xbc\x75\x92\x4d\x22\x20\x84\xd6\xa4\x1a\x36\xbb\x6a\x56\x65\x4b\x98\x3d\xcb\x40\x52\x0c\x09\xbc\x5f\xbc\x63\xba\x31\xe1\x0e\x14\x78\x1e\x0a\x15\x84\x3b\xc9\xca\xe0\xa4\xd3\x22\x7c\xde\x39\x64\x28\xe3\x21\x90\xde\x0b\xd6\xed\x5e\x10\xd2\x0d\x30\xbe\x60\xc9\x9b\x0b\xd8\x69\x12\xb9\xa6\xd6\x2e\xdd\xe1\xfe\x9b\x98\x74\x64\xa2\x29\x08\x16\x9b\xc8\x1f\x2d\xf6\x4b\xec\x5a\xb3\xb2\x31\xa6\xee\xdd\x80\x56\x29\x91\xd9\xb6\xe1\x30\x14\xe4\x60\x18\x70\x84\x59\x6c\xab\x82\x55\x41\x34\x23\x5f\xf7\xb6\x4d\x06\xaa\xbc\x24\x29\x65\x2b\x56\x55\x2c\xbd\xc0\xf8\x2a\x17\xbf\x6e\xd9\x96\x71\x18\x89\xda\xf3\x48\xed\xf9\x8b\x8b\x94\x6d\x58\x91\xb2\x62\x79\x7d\x76\x71\x11\xd1\xef\xfb\xf0\x2d\x0a\x5d\x5c\x84\xbb\x60\x5b\x33\xb0\x43\x5b\x36\x28\x7e\xff\x91\x37\x1e\x5b\x75\xf0\x9b\x22\xb0\x98\xc1\x1c\x80\x1e\x8b\xee\xa0\xef\xd3\xbf\x41\x67\x62\xab\x9d\xb1\x0f\x08\x4a\x03\xda\xc5\xd2\x02\x38\xda\x94\x1b\xfe\xb1\x29\x37\xe0\xba\x29\x86\x1e\x8c\xf9\xcf\x28\xab\xf1\x3a\x2a\xd2\xe4\x67\x94\xd5\x52\x45\x58\xe5\xc8\x84\x28\xab\x9f\x43\x04\x24\x95\x83\x9f\x51\x93\xad\x19\x58\xb7\x44\x97\x79\xb9\x10\xde\x80\xa2\xe7\x3f\x7e\xff\xcd\xf9\xcb\xf8\xde\xcf\xe9\xe8\x1e\x74\xae\x60\x2c\xad\x9f\x9e\xbf\xae\xae\x1f\x71\x46\xfc\x49\xf6\x3e\x26\x96\x73\xef\xc3\x5d\x53\x5d\xef\xde\x0f\xc3\x16\xf8\xf4\x21\x0b\x77\x32\x74\xc7\x11\xe3\xbc\x85\xda\xcc\x59\xfd\xa8\x64\xd5\x12\xf8\x43\xe8\xc1\x10\x23\x33\xa9\xdd\x2b\x7b\x26\xd3\x6f\x6e\xb0\x33\xc8\x03\x8a\x44\x6d\xda\xf6\x8d\xc2\x86\x21\xac\x3e\x67\x3a\x6b\xe9\x8f\x56\xc8\xd7\x74\x46\xac\x7f\x9a\xe6\x4a\xe2\xaf\x3c\x00\x4d\xdf\x1f\x62\x95\x61\xad\x6c\x83\x7b\x92\x45\x2a\x9f\x9d\xce\x5b\x21\x28\xc2\x1b\x86\x69\xf2\x73\x91\xb2\x45\xb9\x2d\x96\x8c\xd8\x0b\x5d\xf0\xc3\xa3\x69\x72\x5c\x8d\x56\x8f\x8b\xda\xdf\xe9\x16\xd0\x39\xb2\xf4\xbb\x0b\x1f\xc2\xc3\xf0\x53\xd1\x24\x26\x1a\x1d\xc0\x24\xcb\xdf\x31\x12\x30\x39\x11\x74\x74\x51\x59\x7c\xc3\x61\x63\x15\x53\x4c\x0e\x5b\x64\x44\x9b\x8a\xbd\xcd\xca\x6d\x2d\xdb\x14\x0f\x68\x66\x47\x80\x1c\x5a\x80\x4a\xf2\x49\x7a\x27\x08\x9d\x0d\xd9\xfa\xea\x84\x87\x51\xdf\x56\x1a\x5a\x2b\xae\x50\x81\xf7\x42\x74\x3b\xdc\x89\x1f\x43\x5f\xd5\xce\xa0\xc2\xb6\x8d\x2c\x8d\xd9\x9e\x19\x3b\x2f\x52\xdf\x7c\x9d\x17\xa9\xbd\x40\xde\xc9\x02\x29\xba\x1e\xe5\x36\xcf\x61\xff\x89\x2b\xf1\xc3\xbc\x62\x49\x7a\xfd\x28\xc9\x73\x96\xc6\xa0\x59\x38\xe5\x3b\xcf\xaa\x04\xdf\x64\x86\x61\x2b\x8a\x81\xb8\xd4\x57\x45\xb8\xf3\x56\xdc\x54\x5b\x61\x6a\xe7\x4c\x3b\xef\x90\x32\x83\x32\x56\x4f\x8a\xb4\x8d\x01\xf8\x56\x59\x6b\xb9\xb9\x8b\xaa\x8b\xb6\xb0\x5e\xe7\x45\xca\x57\xeb\xbc\x48\x87\x7d\x13\x15\xb6\x2d\x78\x9c\x25\x68\xdd\x24\xd5\x25\x6b\xa2\x35\x6b\xae\x4a\x61\xd2\x5b\x16\x18\xc6\xee\x92\x35\x2f\xf0\xa7\xe1\x56\xc5\xf0\x52\x8c\xe2\x68\x59\x1a\xff\xc6\x58\xe7\x14\xff\xc0\x5c\xf0\x5e\x4a\xfa\x3b\x14\xd0\x16\xf8\x0c\xbf\xe6\x68\x80\x5b\x5d\xd6\xb1\xd7\xc5\xc3\x7d\x61\x98\x9c\xa5\x4f\x70\x49\xc4\xf2\xe2\x34\x40\xac\x3d\x20\xb2\x82\x4c\x62\xa5\x92\xb3\xc2\xb1\x82\xb1\x9e\xa4\xc0\x58\x42\x14\x15\x9f\x06\x3e\xe8\x96\xc2\x1d\x69\x55\xaf\x3d\x2b\xd2\x21\x9f\x58\x38\xf7\x0f\x6a\xfa\x83\xaa\x6f\x23\x38\xc6\xf5\xca\xa9\xcd\x1b\x59\x6b\xf8\x49\x56\x04\x1e\x04\x10\x4f\x1f\x9f\x7f\xf3\xe3\xb7\x0f\x14\xfb\x3e\x51\xb7\x18\x18\x5e\xac\xd6\x4a\x86\x84\xf8\xfc\x81\x77\x25\x3f\x0f\x75\x49\x7d\x98\x58\xe8\x1b\xee\xf0\x3e\xfe\x90\xdf\x80\xb7\x48\x89\x94\x95\x8a\xaf\xc0\xb8\x5e\x5e\x31\x60\xba\x3b\xe6\x07\x3a\x19\x01\xd2\x44\x30\xa8\x50\xcc\xec\x8b\x82\x3e\x32\xff\x9f\xd9\xfd\x88\xd9\xe5\xd8\xab\x26\xb7\x66\xcd\xeb\x6c\xcd\x4a\x4f\x3c\x98\xae\x5d\x1e\x46\x22\xf8\x0f\x71\x86\x2a\x1b\x78\x97\x64\x8d\xd9\xe6\x8b\xea\xb5\xf9\xf9\x77\x0e\x22\x3f\x1e\x56\x97\x35\x9f\x00\x15\x4e\xe8\x54\xf2\x50\xea\x7a\xa1\xb2\xce\xd4\x1a\x41\xc3\xf5\x55\xb6\x6a\x86\xe1\x94\x37\x19\x9f\xba\xe0\xf7\x25\xb8\xec\x01\x14\x9b\x9d\xce\xa7\xb4\x27\x98\x88\x61\x3d\x35\xa7\x39\xa4\x20\xe1\xcd\x8d\x27\xe7\x35\xc5\x13\x04\x9c\x87\xe1\xae\xd1\x4d\xa9\x1e\x1e\xd0\x6b\x97\xa3\x34\x7a\xd0\x33\x72\x9a\x82\x54\xae\xa7\xb9\x56\x59\xf8\xe6\x49\x2d\xc6\x4e\x56\xf1\x44\xce\x83\xdd\x19\x0e\x1d\x86\x3b\xdd\xa0\xbe\x01\xee\x44\xd5\x7b\xe6\xfa\xa1\xd8\x1e\x3d\x73\xcd\x41\x60\xae\x8d\x9d\x29\xd2\x8f\x8f\xcd\x06\x8e\x62\xd8\xca\x3a\x99\x43\x0d\x32\x49\xd8\x25\xd8\xc1\x0b\xd2\x39\x75\x28\x0b\x60\xef\xd9\x72\xdb\xb0\x87\x4d\x3c\x02\xa6\x2d\x69\xd8\x08\xa4\x94\x4f\x8b\x66\x08\x48\x7f\x76\x1a\x4e\x6f\x49\x57\xf6\x1e\xe5\xea\x82\xb0\x12\x61\x89\x8c\x43\x74\xef\xe9\x49\x4e\xce\xb0\xa5\x03\xf4\x95\x69\x51\x42\x50\xb3\xa4\x5a\x5e\x71\x92\x50\x0d\xd5\xa0\xc5\x05\x2b\x9c\xe2\x5f\x69\xf4\x96\x45\xa7\x91\x86\x59\x15\xe1\x74\xbb\x49\x93\x86\x3d\x4b\x1a\x56\x61\x15\x70\x11\xd3\x30\x7c\xa6\xb4\xa8\xbb\x68\x23\x79\x5f\xe8\x65\x79\xe0\x7d\x0d\x6a\x32\x89\x6c\x94\xad\xd7\x2c\xcd\x92\x86\xc5\x9b\x72\xa3\xa8\x54\x1d\x0a\x32\x24\xef\x22\x11\xea\x8e\x41\xe7\x71\x8d\x04\x5a\xab\xf2\x14\xed\x74\xa2\x40\x78\x95\x30\xd5\xed\x71\x1a\x4a\xd0\xdf\x6c\xbe\xc5\x34\x17\x3d\x40\x2b\x70\x95\x15\xe9\x6b\xd9\x35\x73\xb8\x91\x7d\x89\x42\x94\xe2\xc5\xbe\x3e\x39\x33\xf5\x1a\x08\xd4\x0c\x20\xe6\x2d\x0c\x30\xc6\x2b\xf0\x58\x13\x76\x2a\x37\xe5\x67\x8d\x1e\xe0\x0e\x9e\x2a\xab\xad\xb4\xc6\xe5\x9f\x02\x1d\x00\x1b\xf6\xf6\x17\xca\x77\xf7\xd7\xce\x56\x88\x03\xeb\x71\xc6\xef\x24\x88\x11\xbc\xd4\x21\xbd\x52\x55\xc5\x33\x6b\xe2\xf8\xd0\xdd\x4b\xa8\x7c\xf8\x14\xdf\x44\x6f\x46\xa4\x70\xee\x02\x6f\xb1\x9f\x02\x03\x71\x9c\xea\x9e\xfc\x9b\x62\x20\xf0\x48\x1f\x81\x82\x8f\x65\xaf\xbc\x28\xa8\xef\xf6\xd6\x92\xaa\x8c\xd8\x06\x14\x58\xe8\x08\x07\xec\x45\x9f\x2e\x73\x96\x54\x12\x37\x15\xdc\xec\xfe\x3c\xfc\x84\x18\xdc\x35\x5c\x44\xd1\xce\xe1\xda\xd9\x07\x61\xf0\xf1\x31\xb6\x1b\xc7\xaa\x0a\x6f\x0f\xf5\x5c\xfa\xb1\xd9\x69\x1c\x15\xa1\xe4\xb7\x56\x5b\x93\x29\x6d\xb4\xe4\x7c\x60\x0e\xb4\xb7\xb6\x19\x3a\x98\xf7\xa7\x0d\x5b\xd7\x5a\xec\x95\x35\x6c\x1d\xee\x8c\x15\xe1\x49\xb0\x18\x53\x96\xc8\xb8\x72\x64\x4b\x45\xba\x9a\xd0\x27\xf4\xa1\xa5\x74\xd7\x3d\xa5\x4c\xf1\x91\xbc\x8e\x5f\xe4\xea\xf0\xb0\xfa\xe5\x64\x4f\xed\x14\x64\xee\x95\x30\x50\xd7\x99\x20\x07\xed\xad\x50\xe6\x4d\x8d\x4f\xac\x0a\x1c\x39\xbb\x93\x29\x85\x82\xe2\x34\x94\x0e\x5f\x8e\x8e\x1c\xd4\xb7\xb3\x08\x65\x32\xdc\xc4\xc8\x66\xe5\x02\x12\x62\x84\x33\x01\x11\xf2\xf9\x4f\x30\xaf\x91\xe1\xee\x25\x39\x81\x1f\xc7\xc7\x1a\x20\x8e\x83\x72\xf1\x0b\x5b\x36\x81\x48\x45\x61\x92\xfc\x90\xa4\x4d\x52\x43\x0d\x31\xc6\xf6\x45\xb3\x8a\x3d\x35\x6a\x56\xa6\x3d\x5a\x51\x1d\x5f\x16\x8c\xf9\x10\x4f\x0b\x9c\x0d\x97\x15\xd4\xb3\x6c\x74\x36\x8f\xe3\x58\x0c\xca\xe6\x26\xee\x6b\xfa\xcc\x8f\xd7\x56\x35\xff\x02\xc6\xa2\x65\x88\x63\xe9\x54\x4a\xe8\x94\x42\x75\xbc\x6b\x33\x1c\x35\xc6\x37\x9f\x07\xd6\x89\x89\x63\xe3\x48\x38\x34\x0e\x35\xe7\xd8\xc5\x0d\x18\xca\xc5\xb1\xca\x3d\xd6\xf4\xdc\xc6\x72\x32\x6d\xf2\x1a\xd3\x46\xa4\xbc\x5e\x57\x5e\xd1\xf7\xf2\x52\x56\x25\xd7\x11\x59\x68\xbe\x03\xf1\xec\x50\x8b\x2b\x26\xf5\xab\xcf\xf5\x33\x3b\xd0\x7f\x4d\xe0\xb0\x32\x84\x9e\x9d\xce\xb1\xbe\xd9\xd9\x1c\xab\xb7\xc8\x1a\x6f\x21\x86\x0c\x49\xb5\x79\x36\x6e\x7c\xb9\x3e\x9c\x06\xec\x00\xa6\x9f\x82\x2b\x60\x73\xf1\x8c\x6e\xb6\x53\x9f\x28\x58\xdd\x57\x63\x6f\x2e\xdc\xfb\xfb\x0b\xbe\x28\x96\x7d\x85\x79\xb6\xbf\x02\x20\x1a\xfe\x92\xfa\xd8\x01\x83\x06\xe7\xcd\x40\x88\xe1\x84\x0f\xd9\x97\xdb\xc2\x5f\x4d\xb5\x2d\xfc\x4d\x73\xea\xf2\xae\x4a\x36\x4f\x0b\x59\xe9\x90\x54\x86\x02\x34\x99\x70\x5e\xa4\xfe\xda\x59\x91\xfa\x6b\x67\x45\xda\x55\xfb\x79\x91\x92\x37\x07\x0b\x88\xa7\x6b\xdc\x22\xba\xcc\x5a\x64\xc6\x53\xe9\x2b\xa8\x16\x08\xe8\x0b\x07\x3e\x1e\xf3\xbd\xab\x5d\xfa\xe9\xdb\x8d\x7a\xd1\x10\x35\x12\xc9\x32\xcf\xbf\xb9\xb1\x12\xf0\x0e\x67\x48\xa0\x75\xf2\xcc\x4a\xfd\x5e\xdc\xac\x54\xc3\xa6\xf4\x44\xbf\xb8\x85\x3b\xfd\x5b\x09\x4a\x49\x92\x3a\x03\x7a\xf9\x10\x5f\x01\x10\x2c\x93\x0c\x94\x0e\x92\x49\x77\xee\x47\xc0\x0d\x58\xf7\x23\x60\x71\xf0\xec\xd7\x67\xdb\xcd\x8d\x82\xfa\xca\xce\x3b\x7f\xbf\xc9\x2a\x56\x3f\x6c\x24\xbf\x42\x8e\xc4\xde\x31\x38\xd0\x30\x80\xce\xea\x31\x5b\xf4\x03\x8f\x45\x18\x40\x28\x99\xa0\xee\x92\xaa\xf3\x04\x31\x3c\x15\xc1\xd6\x2a\xca\x77\xfa\x96\x0d\x74\x2c\x5a\x15\x75\x94\x45\xa2\x6b\x7c\x35\x29\x43\x68\xdc\x59\x8b\xf2\x9d\xba\xad\xae\x8a\x3a\x36\xcf\x98\xd3\x28\xc3\xe7\xf0\x2c\x3e\x8b\xf2\x78\x55\x78\x4e\x2b\x68\x43\x49\xd2\xe0\xcb\xf7\x50\x16\xc1\x33\xd4\xaa\x00\x95\x81\xb6\x0d\x15\xa9\x56\x41\x84\x76\xfe\xd5\x16\x47\xa1\x24\xd1\xfc\xd7\x49\x51\xbe\x0b\xc9\xcc\xf4\x31\xac\x84\x55\x55\x1b\x33\x2b\x52\x38\x9d\x3a\x21\xcd\xaa\xbb\x6f\x9f\xea\x1e\xb7\xa7\x6a\x02\x69\x56\xed\x81\x5d\x96\x79\xce\x00\xc2\x3e\xdd\xe2\x93\x33\x4b\x37\x41\xc3\xba\x6a\x1f\xfc\xc8\xd2\xf9\x42\x43\x01\xce\xac\x53\x38\xb3\x04\xad\x80\x14\xe0\x32\x94\x4c\x18\xda\xca\x30\x58\xa3\x3a\x98\x20\x55\x77\x9e\xe2\x10\xa0\x9c\x40\xa2\x9d\x10\x00\x57\x4d\x7c\x1a\x71\xe2\x6a\xac\xf1\xc9\xfd\x68\x9d\xa5\x69\xce\xa2\x7c\x0a\xba\x9c\x43\x00\xfd\x8a\x15\x69\xb8\xcb\xe3\x21\x2b\xd2\x13\x48\x09\xef\xdd\x9f\x22\x64\x0c\xdf\xa3\xfc\x24\xff\xaf\xfb\x12\x67\xbe\x16\xb5\xce\x10\x64\x1e\xee\xb0\x45\xfc\x1c\xdd\x47\x86\x82\xb7\x8e\x29\x6a\x10\x46\x61\x28\x33\x7f\x80\xf5\xdf\x9f\xc0\xdf\x96\x68\x04\x8c\xf5\x81\x41\x0e\x95\xd6\xa7\xb5\xd0\xa9\x94\xb0\x4f\x99\x01\xe0\xfe\x63\xba\x0b\xf8\x82\x6d\x2b\x2b\x40\x2a\xea\xe8\x1f\xa6\x83\xa0\xe5\x6e\xde\xc7\x59\xdf\x13\x3d\xaf\x1d\xe7\x28\xd6\x6f\xb7\x75\xbc\x13\x6e\x35\xbd\x8f\xf7\xe4\xe7\xcd\xcd\x6c\xee\x7d\xcb\xc7\xdb\x14\x69\xd1\x7d\x02\x09\xf1\x41\xbd\x9e\xa9\x94\x39\x3c\x2c\x43\x6f\xf1\xa4\xd6\xcf\x01\xb2\xc3\x6d\xd8\xfa\xc6\xd6\xf7\x4c\x8f\xad\x78\x9e\xec\x25\xad\xdc\xfb\x3c\x83\xcf\x0f\x65\xb1\x64\x4f\xf2\xe4\x52\x3c\x41\x74\x4c\x1d\x36\x17\x3b\x43\x83\xd7\x92\x5f\xa5\x12\x83\xa5\xa9\xf6\xbf\xcb\xed\x20\x69\x1a\xb6\xde\x34\x2c\x1d\x34\xe5\x40\x76\x6d\x90\x14\x83\x44\xe8\x6e\x14\x83\x04\xdb\x1b\x0c\x83\x91\xaa\x78\x14\x84\x83\xe6\x2a\x69\x06\x69\xc9\xea\xe2\x6e\x33\x60\xef\xb3\xba\x09\x42\x7c\xc1\xc5\x1e\x2b\xaa\x88\x57\x25\x7e\x1b\xff\xb1\xc8\x7e\xdd\xda\x24\x1a\x86\x29\x1e\x58\xc8\x55\x80\x14\xeb\x29\x20\xad\xec\x3b\xe4\x51\x08\x7b\x01\x4c\x02\xff\x79\x7c\x4c\xe4\xf7\x5f\x9f\x86\x3d\x12\x5e\x2a\x00\xc6\x7b\x13\x8a\xc8\x55\x93\x7f\xcf\x9a\x2b\xc1\xaa\xf5\xb6\x6e\x48\xa1\x7f\xcb\x7e\xf4\xbd\xfa\x0a\x0b\x35\x5b\xa8\xd1\x85\x39\xb8\xc3\x6c\x3d\x0a\x8d\x98\xf0\x0b\xff\x07\xa9\x44\xb4\xa9\xb2\xb2\xfa\x9b\xcc\x7f\x0a\x57\x9d\x5f\x8d\xcf\xf8\x34\x42\xcd\x9d\x17\x2b\xa1\x16\xa5\x6b\x96\xcf\x60\x5d\xfa\x14\x20\xe7\xff\x14\xec\xae\x58\xba\x58\xa4\x4a\xcb\x2e\x7b\x39\x49\xf2\xb4\xdc\x36\xac\xca\xcb\x72\x33\xc1\x23\xcb\x1c\xe5\x57\xe6\x18\x43\x4d\x07\xa8\x6a\x90\x59\x66\x3e\xed\xda\xad\x7a\x82\x31\x73\x8c\x27\xc9\x37\x2c\x2b\x2e\x9f\xf0\xf5\x64\xa9\x91\x21\xf4\x16\xc3\x29\x4d\x8c\x67\x48\xde\xe1\x43\x98\x7c\x88\x52\x72\x8a\x17\x6c\x55\x56\xa2\x03\x2f\xa4\xe2\x0a\xfd\x1a\x23\x44\x94\xac\xf8\xc5\xaf\x07\x0e\x00\x7c\x74\x0b\xf6\xa7\xc0\x18\x1f\x3a\x90\x51\xc2\x4f\x12\xe9\xd1\x85\x3b\x3e\xc6\xfe\x84\x3b\xfc\x3b\x0c\x5b\xb2\x18\x9e\x85\x40\xd1\x99\x7c\xcd\xd2\xad\xcc\x74\x01\xf9\xd8\xe6\xcf\x1d\x9d\xcd\xa7\x20\xbc\xf6\xe7\xde\x9f\x4f\xf1\x99\xdb\x9f\xfd\xf9\xfc\x36\x8f\x5b\xd9\x6a\xa8\x99\x2f\x8e\x73\x7d\x54\xa4\x25\xcd\xc4\x5f\xb4\x9d\x68\x22\xb5\x76\x7c\x93\x09\x8b\x16\xee\xe0\xcf\x10\x68\xf6\xd0\xb3\x9f\x63\xe1\xd1\xfd\x07\x95\xc5\xb7\x08\x9e\x7f\xb5\x75\x52\x42\x81\x30\x3c\x42\x19\xae\x45\x08\x3c\x75\x4f\x95\x11\x8f\xda\x5e\xad\x59\x6a\x34\x6a\xdb\x96\xe8\x10\xf6\xf5\x25\x4d\x7e\x95\x8a\x56\x7f\x53\xb3\x43\x08\x9e\x26\x61\x36\x03\x6d\x17\x9a\x66\x5f\xc5\x82\x83\xd6\x1b\x39\x4d\x7e\x25\x54\x91\xb3\xd2\xb8\xcf\x54\xba\x7d\xe2\x1a\x5b\x54\x5e\x6f\x24\x23\x2d\xb9\xd1\x93\x33\x83\xdb\xf4\x2a\x92\xfa\x12\xfd\x1c\xa8\xe0\x24\x67\x7e\x56\xb2\x8b\x55\x54\xd3\x8b\xdc\x0f\x9f\xc7\x82\xf2\x3d\xa8\xb1\x97\x26\xbf\xf2\xb1\x12\x47\xed\xda\x2f\x3b\x5e\x98\x5f\x58\x6c\x98\x8f\x37\x43\x8d\x6f\x21\x37\x96\x84\xaa\xfd\x1b\x1e\xf2\x9a\x8f\x4a\x93\x5f\x91\x4f\x02\xe3\x4e\x97\x7d\x12\xfb\x00\x3f\xb0\x1e\xfc\x6d\x7a\x17\xeb\xe4\x18\x34\x56\xc4\xa4\x2b\xd3\x43\x98\x0d\x69\x8c\x8a\x8d\xc2\x06\x40\xd8\x89\x51\x64\x82\x7f\x5a\xf4\xa0\x80\x2c\xcf\x07\x77\x4c\xe2\xb5\xd0\x0a\x11\x5f\x42\x14\xca\xef\xf8\x78\x3d\xe7\xc8\x4c\xd1\x4d\x5e\xd0\xbf\x08\x77\x46\x05\x08\xc4\x51\xd8\xa8\x49\x26\x8f\x50\xdb\xc0\x2c\xa2\x2f\x8b\x66\x19\x7d\x65\x94\xa5\xef\xcf\x41\x17\x60\x2a\xbf\x3f\x9f\xc7\x30\xb6\xdb\x4e\x5c\xfb\x49\x56\xa3\x9b\x21\x32\x26\xdc\xc4\x68\x17\xc9\xfd\x4c\x8b\x38\x51\x1d\x2d\x50\xe3\x1c\x75\x72\xf1\xf4\x54\x8a\x0d\xb4\x19\xcd\xf6\x78\x93\x25\xf3\xd3\x93\x39\xf3\xe6\x49\x46\xa8\xf3\xc8\xce\x1c\x54\x5a\x0d\x73\xcf\x01\x2c\x10\x8f\x60\x5a\x63\xa1\xd8\xda\xc1\x2d\x7d\xa2\x02\xb6\xd0\x33\x14\xd0\x65\xda\xc5\x1e\x7f\x62\x65\x0e\x19\x71\xcf\xd7\x86\xc1\x73\xef\xad\xdd\xe4\xd0\x5b\x9c\x3b\xf7\xbc\xa5\x13\xfc\x75\x2e\xe8\xec\x05\x61\x0b\x05\x67\x97\x8b\x87\x36\xa9\xdc\x8b\x7a\x99\x1a\x58\x54\x11\x9f\xb6\xee\x5b\x18\xde\xe0\x5e\x97\x8f\x20\xfd\xf7\x4c\x5f\xcc\x9e\x8e\xbb\xc8\x8d\x05\x66\x50\x1f\xfd\x2c\xf6\x85\xf5\xb2\xe2\x0c\x99\xb2\x49\xf4\x7e\x2c\x5e\xa0\xfe\x87\x0c\x18\x1f\x07\x81\xcb\x33\x5f\x01\xdb\x29\x65\x2b\x50\xc6\x03\xff\xfb\x19\x07\x21\x95\xba\x25\xe3\x40\x72\x88\x54\x29\xde\x41\xc4\x71\x55\x5e\xcb\x1f\x89\x7d\x1f\xe1\xc0\xa6\xd9\x57\x1e\x11\x26\x67\xbe\x24\xf8\xd0\x10\x61\xc2\xdd\xbb\xb6\x1d\x66\xd4\xdb\x7a\xc3\x96\x8d\x7e\xbd\xc4\xe7\x5e\x91\x1c\xc7\xb1\xf4\x5a\xdb\x12\x6b\x99\xdb\x14\x57\x2f\xb8\xad\x32\xa9\xb9\x4d\x71\xe4\xc0\x83\xb6\x25\x0b\xc0\xd9\xdf\x24\x13\x06\x4f\xea\xe3\x1e\x49\x3e\x4c\x26\xd8\xb5\x3e\x68\x75\xf5\xfd\x8b\xc7\xe7\xcf\x2e\x9e\x3c\x7c\xf4\xfa\xc5\xcb\xff\x7d\xf1\xf4\xf9\xff\x3a\x7f\xf4\xfa\xe9\x8b\xe7\xaf\xb4\x9a\x39\xc2\x9d\x3f\xff\xe9\xf8\xd8\x30\xec\x3c\x7f\xfe\x53\x67\xe9\x23\x9f\x75\x68\x77\x5b\x47\x47\xfb\xab\x04\xed\x93\x47\x72\xf0\x7d\x72\xcb\x0e\xc4\x53\x65\x7d\x73\x7c\xaf\x63\xb6\xb3\xe2\x8a\x55\x59\x93\x15\x97\x17\x29\x9f\xb5\x8f\x9c\x73\x3e\x86\xa7\xaa\xca\xc7\xd9\xb2\xe9\x1b\x88\x62\xbd\x55\xd7\x87\x68\xe1\x27\x1d\x82\xc1\x47\x8c\x7f\xcc\x88\xec\x24\x2e\x11\x58\x49\x56\x02\xea\xf8\x18\xff\xaa\xf4\x9b\x1b\xc2\xed\xb4\x34\x96\x51\x75\x0d\x42\x4f\xb3\xbb\x43\xa7\x1a\x04\x95\x96\x1b\xc9\xf2\x8a\x1d\x50\x0c\xe0\xe4\xb9\x95\x2c\x9b\xb2\xba\x7e\x74\x60\x51\x0a\x1e\x1a\x63\x3c\xb4\x06\x0a\x2e\x6a\xe0\x88\xfd\xb4\xf8\x05\xa9\x48\x7d\x40\x1d\x66\x01\x19\xc2\x43\xd7\x20\xa7\x52\xf4\xf6\xf5\x6d\xeb\xf7\x96\x33\x27\xec\xa9\xdb\xda\x85\xe4\x3b\xf7\x37\x70\x61\x5a\xb7\x5c\xf0\x01\xbd\x38\xbc\x34\x01\x0f\x5b\x85\x9e\xf4\x92\x86\x90\xc2\x04\x4d\xfa\xbf\x84\x2f\x89\x7a\xf2\x4b\x58\x94\x22\x24\x84\xe3\x86\x9f\xe6\x14\x4b\xb3\x35\xf3\xfb\xc2\xb8\xf7\xd1\x5e\x91\x86\x1d\xad\x2d\x45\x44\xf8\x40\xf5\xde\x02\x6b\x00\x73\x1b\x09\xf7\xbe\x12\x44\x3b\x55\x51\xb4\x24\xaa\x19\xd1\xf3\x47\x65\x99\xe8\x0d\xbb\xc6\xa0\xaa\xe1\x0e\x53\x66\x6f\xd8\xf5\x3c\x86\x24\x9f\x1b\xc3\xd5\x36\x87\x98\xea\x91\x58\x5a\xfa\x0a\x92\x67\x29\x04\x3c\x42\x08\x05\x0a\xaf\xa3\x02\x3c\x8e\x63\x45\x6c\xa9\x0c\x9f\x63\x8f\x90\xe3\x3f\x44\x19\x7e\x56\x5c\x0e\x9a\x72\x20\x7b\x30\x48\x0a\x15\xe9\x59\xd4\x35\x19\xfc\x33\x18\xc9\x46\x46\xc1\x3f\x03\x54\xfb\x2b\xca\x6a\x9d\xe4\xd9\xbf\x58\xfa\x5c\x45\x61\x53\x69\x66\xa7\x34\x21\x18\x5f\x25\xf5\xd0\x2c\x19\xfa\xac\xe1\x93\xa2\x28\x9b\x41\xc5\x4e\xd4\xcc\x58\x9d\x88\x06\x49\x3d\xc8\x9a\xc1\x55\x52\x0f\x12\x34\x49\x1b\x2c\x18\x2b\x06\x79\x59\xbe\x61\xe9\x60\xbb\x19\x07\xc2\x20\x50\xa2\xd3\xb8\x66\x8d\xd5\xb6\x9c\xdd\xd0\xdc\x2c\x3e\x48\x62\xf7\x19\xb6\xd1\xb6\xe8\x5e\xb2\xde\x25\xba\xcd\xcc\x99\xbd\xaf\xd8\xba\x7c\xcb\xec\xc9\x23\x44\xb6\x17\x82\xd2\xc8\x5e\x40\x4a\x0a\x7b\x01\xd5\x64\xf9\x81\x54\x44\x87\x4f\x38\x41\xe8\x07\x68\x79\xc5\x84\x4b\x42\xa3\xef\x97\xce\x1a\x02\x2e\x22\xbc\x76\x01\x00\x9f\x2d\xba\x9e\x80\xd2\x66\x5d\x95\x5d\x87\xd0\x57\x53\xcb\xe2\x6b\xc6\xed\x8c\x07\xa1\x64\x73\x8a\x82\xc8\x84\x36\x4a\x59\xbd\xac\xb2\x85\x77\xea\x94\x9e\x10\x26\xb4\x91\xaa\xf6\x20\xe8\x75\xf2\x86\xbd\x76\xa2\x45\x4a\x22\xe3\x16\xc4\x0c\xa5\x0b\x38\xf4\xc4\xbd\x50\xa4\xea\x10\x12\x25\x5d\xca\xa0\xf7\x36\x94\xbf\x74\x2c\xaf\x7e\x47\x15\x4d\x3e\x11\xf4\xe8\x76\x08\x65\x8e\xe4\x89\xb0\xff\xe8\x6c\x35\x04\x7d\xd4\x0f\x6b\x83\x13\xb7\x7d\x95\x8b\x41\x3d\x29\x41\xd5\x93\x48\xf8\xae\x37\x64\x06\x25\xd1\x94\xcc\x5d\x96\xe7\xec\x32\xc9\xc1\x6b\xf4\x8b\x0d\xab\xc0\xab\x8e\xf2\xa7\x25\x2a\x93\x04\x8f\x1e\x7a\x80\x79\x46\xdd\xaa\x0b\x5d\x6d\x53\x09\x95\xa8\xd9\xae\xc1\x38\x88\xad\x7a\x36\xc2\x3d\x4a\x74\xd0\xcc\x1d\x38\x50\xa3\x41\x71\x00\xc9\x4a\x40\x65\x56\x7e\x48\xf7\x1c\x93\x20\x9c\x9d\xc2\x2d\xda\x00\xc3\xe0\xc3\xdd\x27\x0e\x72\x13\x83\xc4\x3a\x6d\x06\x65\x31\x28\x9b\x2b\x06\x81\xf1\xae\x37\x6c\x14\x0c\xeb\x70\x3c\x90\xae\xce\x06\xcd\x15\xb3\x4b\xf0\x73\x69\x90\x66\x2b\x08\x94\xdf\xc0\x05\x0f\xdc\x19\x6d\x58\xb5\x2a\xab\x35\x14\x31\x46\xc5\xcf\xab\x24\x4d\x0d\xfe\x6e\xe8\x61\x45\xa3\x8e\x59\x6e\x35\x2b\xe4\xd9\x9b\x0a\x5e\x01\x3d\x97\xae\x6d\x0e\x99\xff\xcc\x98\x7b\x6b\x35\xcd\x2a\x2d\x0a\xfe\x94\x66\xda\xa4\xdc\x2a\x49\x56\x4b\x07\x06\x9e\x04\xa1\x50\xf2\x37\xfc\xb1\x1a\xd3\xe4\x0e\xb3\xa3\x03\x9e\xde\x7f\xd8\xd1\xf3\x21\x5c\xcd\x43\xaa\x35\x41\x19\x2e\x35\x0d\xe0\xb6\x2e\x41\x64\x01\x45\x89\x1e\xf6\x66\x30\xbc\x1b\x8c\xcc\x46\x47\xc1\xdd\x68\x70\x37\x18\xc9\x59\x90\xdf\xc6\x34\x8f\x82\xbb\x21\xa2\x9a\x85\x66\x9a\x93\x8e\xac\xa3\x6a\xff\xac\x46\xbe\xdb\xc9\x7e\xc2\x70\x20\xf6\xf9\x2a\xef\xdc\x2d\xde\x7b\x92\xb5\x69\x7a\xe8\xb3\x7d\x95\xfa\xd4\x7b\xe9\x76\xdc\xce\x87\xed\xab\x7d\x3b\xf6\x16\xfb\xce\x37\xbb\x36\x67\xf3\x51\x9b\x50\x4e\xa2\xc1\xb0\x7e\xd4\xfe\x1a\xd8\x4b\xfa\x1f\xdd\x65\xce\x55\xfd\x03\x36\x5b\xca\xea\xa6\x2a\xaf\x7d\x81\x36\x85\x91\x88\x71\x63\xb5\xb5\x3c\x8d\xdc\x59\x36\x1f\x8b\xfa\x86\xd2\x83\x0a\x91\x18\xb1\x64\x79\xf5\x18\xb3\x93\x45\x2e\x54\xdd\x2c\xcb\x26\xfe\x3f\xa9\x43\xba\xda\x47\x51\x94\x36\xc1\x47\x22\x53\x8b\xda\x84\xf3\x10\xb8\x26\xb0\xe6\x43\x87\x02\x85\x01\x47\x86\xf6\xa8\xc2\xd6\xca\x0c\xa9\x66\x00\xc7\x28\x75\x65\x37\x29\x92\x4a\x26\xc4\x5d\x53\x88\x1d\x95\x9b\x4b\x23\x25\x5d\x44\xba\x20\xd3\xc7\xb2\x6a\x52\xf0\xbc\x6e\xab\x9a\xf5\xea\x70\x32\xd4\xdb\x23\xfd\x2e\x58\x67\xc5\x65\xce\x9a\xb2\x38\x8a\x51\x56\xab\x6f\x39\x56\x05\xfc\xd2\xa2\x7b\xa8\xfd\xb0\xa1\xff\x95\x26\x4b\x1a\xe6\x9b\x1d\xde\x17\x04\x34\xc4\x0b\xe2\x09\x04\x75\x57\x64\x1f\x7c\xe5\x7b\xbb\x6a\xf7\xb1\x26\x7d\x14\xa2\x13\xa9\x91\x8b\x52\x13\xad\xe5\xe1\xa5\xb3\xa5\xfc\xe5\x52\x0a\x95\x35\x0a\x06\x59\x0d\x5e\xf7\xc4\x23\x4a\x7e\x3d\xa8\xb7\x9b\x4d\x59\x71\x2a\x52\x0a\x0f\x71\x7a\xfa\xea\x80\xac\xe7\x9e\xc1\xa2\x52\xb3\x84\x10\x4b\xea\x5b\xfd\x40\x01\x69\x17\xbd\xce\xfc\xe8\x66\x17\xdb\x2c\xd7\x14\x81\x62\xb1\x3e\xc0\xb1\x71\x8c\x42\x87\x6e\xaa\x68\x9e\xbe\xad\x5c\x09\x03\x4e\x91\x27\x6a\xe0\x1b\xdd\x52\x79\xd1\xc5\x5d\x9d\x71\x99\x45\x80\x40\x71\x5c\xd5\x15\x3b\x98\xaf\x20\xc7\x06\x6e\xe9\x22\x47\x06\x82\xf1\x9e\xce\x74\x19\x49\x21\xe7\xb1\x2e\x20\xdf\x38\xfd\x47\x82\x10\x72\x49\xee\x5e\x8b\xb8\x34\xcb\xcc\xf9\x77\xb7\x5b\x28\xee\x6a\xe9\x8c\xa9\x85\xe8\x5e\x51\xcc\xd1\x58\x20\xb7\xb5\x46\x71\x25\x3c\x31\x76\x22\xb8\xf0\xb1\x5e\xfb\x67\xba\xb2\xf9\x91\x67\xdb\x0d\x3c\x70\xb0\xaa\x4d\xcf\xb5\xc8\xd3\x21\x7a\x67\xbc\x14\x77\x46\xda\xa1\xde\xf6\x88\x7d\x82\xbe\x66\x77\xed\x09\xd0\x05\x92\x49\xe8\xb3\x4a\x08\x2d\x5d\x32\x5a\x28\xce\x07\xd7\x86\xa5\x42\x08\xa0\x65\x3f\xa4\x14\xe5\x19\xa6\xfb\xe6\xa0\x4b\x58\xaa\xa9\x59\x1f\xf9\xf7\xd1\x51\xf0\x9d\x85\x55\xde\xdc\x88\x87\x31\x29\x40\x41\x8f\xcf\x47\xf4\x5d\xf0\xe6\xe6\xa8\xff\x11\x0c\x5f\xd7\xe2\x38\x0e\xd6\x65\xca\xf2\xc0\x96\xca\x68\x47\x23\xe4\x99\x41\xff\xec\x58\x03\x3a\xe3\xe4\xc1\xc0\x49\xe9\x2a\xee\x00\x8e\x2f\xa4\x74\x88\x2c\x05\x95\x33\xb9\xe2\xa5\xa9\xb5\x9a\xb1\x39\x4d\x43\x42\xad\x6c\xd0\x71\xc5\xca\x0d\x2b\x1e\xe5\x49\x5d\x0f\x9d\xbe\x84\x53\xcf\xe1\x61\xd5\xa0\x88\xac\x95\x4e\xb0\x78\xef\x24\x22\x71\xe7\xf8\xf4\x9c\x62\x33\x41\x31\xb8\x71\xc4\x0a\x64\x76\x3a\x27\xf4\x19\x0c\xa7\x7d\x6b\x26\x63\x06\xe8\x89\x34\x2f\xff\x7a\x6b\xde\xdc\xcc\xe6\xe1\xa1\x95\x10\xca\x2c\xbb\x3a\x77\x2a\x38\xe8\x60\x21\x05\xc0\x28\x77\x7b\xa9\x5e\x4b\xbe\x63\xd7\x7a\x5b\x9b\xbd\x11\x8f\x2b\xea\x97\xb9\x02\x1c\xca\xa1\x20\x7b\x11\xf1\x83\x96\xc0\xc5\xfb\xd9\xdc\xc5\x68\x77\x33\xb8\x53\xea\xbd\x66\xda\xcb\xf3\x31\x35\x3f\xed\x5c\x33\xb7\xd6\xee\xa5\xf3\xec\x10\xcf\x06\xee\x59\x48\x93\xe4\x3c\xf5\x2c\xd8\x1e\xa6\x71\x47\x29\x7c\xff\xf1\xa0\x8f\x1b\x2f\x9f\x44\x1a\x82\xbb\xa9\xc9\xe3\x4a\xa2\xa8\xe9\x3a\xde\xc8\x7d\x74\xd8\xb2\xb0\xb7\x84\xdd\x68\xd3\x3a\x34\xed\x4a\xac\xcc\xbd\x14\x22\xa4\xe6\xb9\xf6\x2d\x4a\xc3\x6b\x0d\x17\x9b\xff\xe5\x65\x9e\x95\xcb\x24\xd7\x76\x98\xe4\x11\xd1\x37\x53\x3c\xbb\x7f\x92\x5a\xa5\x21\x23\x18\x6a\xc2\xce\x92\xdb\x92\x7e\xdd\xfc\xf7\xf4\x0a\x4a\x1b\x37\x48\xbb\xd9\x34\x5b\x36\xf1\x8e\xcc\xa8\x23\xfb\xa9\xb6\x39\xeb\x94\x8d\xda\x87\x24\x00\x9b\x6c\x8e\xc1\x21\x9b\x94\x1a\xa1\x95\x20\x9d\x00\xb6\x84\xcc\xc1\xbb\xf0\x4e\xb6\x3d\x71\x3a\x31\x51\x8f\x30\x78\xe3\xfa\xe9\xe1\xb3\xa7\x8f\x2f\x9e\xfc\xf8\xec\xd9\xc5\xf3\x87\xdf\x9f\x5f\xbc\x3c\xff\xf6\xfc\xff\xff\x43\x7c\xef\x1f\xb3\x7f\x4c\xe6\xa3\xf1\x68\x02\x7f\x3f\xbb\xa7\xef\xac\xdd\x52\x13\xb0\x66\xf6\x57\x88\xde\x70\x09\x03\xe3\x7d\x0c\x96\x51\x90\x78\xd5\xa0\xcb\x3d\x60\xef\x37\x70\x38\x4e\x06\xff\xe4\xa3\x9e\xf0\xd4\x7f\x0e\x2e\xcb\x66\x32\xd0\x82\xee\xd0\x5c\x11\x7b\x35\xc4\x9e\xe9\x15\x9a\xf9\x56\x66\x46\x0a\xce\x3d\x49\x60\xc9\x77\x9b\xa9\x37\xda\x6c\xc3\xf6\x83\xf4\x81\x1c\xc5\x9f\x0f\x55\x9b\xf7\x2a\x52\x74\x2b\xf0\x48\xdc\x37\x8b\x75\x29\x56\x70\x68\xfc\x75\x49\xc5\x2a\x6f\xd8\xb5\x88\x06\xc0\x6b\x53\xf5\x42\xa8\x4a\x5e\x9b\xe5\xda\x9e\x83\x2b\xba\xc8\x01\x40\x5d\xa1\xb5\x25\x9c\x46\xcc\x36\xd4\x03\xe1\x9b\x8a\x97\x6e\x2d\x3d\x08\x42\x25\x54\xeb\x96\x0e\xc4\xba\xa4\xaf\xc5\xd0\x63\x11\x88\xc5\x2c\x61\xbd\xd0\x7d\xcc\xd0\x40\x8a\x73\xc0\xa8\xf8\x25\x00\x46\x65\x78\xdc\x88\x14\x35\x24\xda\x8b\xd2\xf1\xfe\x22\x83\xb8\x89\xde\xae\xc9\xcb\x35\xc7\xd4\x41\x86\x33\x8c\x4e\xf7\x3d\x1d\xe6\x40\xa1\x56\x6e\x44\x65\x61\x51\x3b\x6c\x2b\x58\xf3\x19\xff\x35\x0f\x6d\x55\x4e\x8a\xde\x26\x02\x11\x1c\x87\xc8\x13\x27\x89\x8e\xd7\x01\xb8\x0d\x89\x6b\xd6\x24\xf9\xbd\x65\x59\x81\xc1\x31\x24\x55\xdb\xa2\xc9\xd6\xec\x5e\x7d\x5d\x37\x6c\x7d\x2f\x4f\xfe\x75\x0d\x7e\xda\x15\x00\xa9\x48\x02\xa5\xc9\x65\x5f\xb6\x7c\x6c\xef\x83\x31\xba\xe7\x01\x63\xef\x1b\x50\xd9\xab\xca\x3c\x67\xd5\xed\x8c\xa2\xf5\xf7\xe7\xd6\xf7\x17\xd6\xf7\x1f\xad\xef\x2f\xbd\x0a\x7d\x18\xfa\x62\x8f\x21\x75\xb5\x2d\x9e\x95\x49\xfa\xd7\xb2\x7c\xe3\x3a\x7f\xa7\x99\xe8\x32\xfe\xe1\xb7\xb1\xd5\x51\xbb\xc2\x97\x52\xb1\xcf\x1a\xc0\x58\x66\x48\xdf\xf3\xbc\x4c\x27\xb0\x95\x0f\x65\x48\x28\x97\xd8\x9a\x0d\xda\x09\xbc\xce\x52\x60\xf2\x5b\xe4\xf2\x71\x3c\x7e\xf8\xad\xf8\x52\xbd\x50\xcd\x09\x28\xab\x93\x76\xa7\xe8\xf4\x0c\x03\xa7\xdd\x20\x22\x1f\x61\x1f\xa6\xdb\x68\xd3\x87\xf8\x98\x24\x4f\x97\x8b\x4b\xd6\x74\x65\xd5\x4e\x16\x18\xd8\x5a\x69\xd2\xb4\xdf\x6c\x70\xbd\xd9\x36\x2c\x75\x76\x9b\xee\x63\x6d\xf4\x57\x82\x95\x5b\xbe\xb1\xe5\x66\xd1\x10\x17\xab\xf2\x60\xbd\xe0\xdf\x74\x5b\x18\xdf\x7f\xb2\xbe\xff\xbc\x57\x27\xf6\xa0\x2d\x74\xc9\x1a\x67\xe7\x5c\xb2\x06\xa3\x24\x58\x79\x9f\x5f\x5c\x70\x1e\x4e\x57\x8e\xe6\x33\xd6\xa8\xec\x16\xb2\x02\x35\xb2\xad\xc1\x8e\x45\x3a\x8a\xa1\xc4\x9a\xc5\xd6\x0c\x8c\x65\xc6\x54\x2a\x2a\xe3\x92\x7c\x9f\xbd\xcf\xcc\x7d\xf4\xa7\x8b\x8b\xb1\x95\x0f\x65\x38\x4e\x38\x4d\xf3\xc4\xa9\xd4\x5a\xc4\x12\x4f\xac\x81\xfc\x19\x1a\x27\xb9\x84\x89\x64\x55\xb6\xba\x7e\xce\x58\x5a\x3f\x96\xf0\x19\xc3\x2b\x23\x82\x47\x9a\x77\x07\xc7\x4c\x32\x8a\x90\xac\x3c\xca\xa2\x3c\x5a\x63\x30\x44\x19\x85\x14\xa5\xc4\x00\xee\x08\x88\x75\x49\x04\x10\x5e\x45\x74\xb2\xef\xcd\x91\x14\x0a\x74\xd7\x26\xc1\x48\x67\x80\xbc\x4d\x5f\x14\xf8\x11\xad\x33\xc3\x70\x27\xba\x28\x1d\xfa\xa9\x1c\xb0\xaf\x91\x99\x3a\xbc\xaa\x92\x1c\x2b\xdc\x18\x8a\x45\x26\x73\x13\x8e\x02\x8c\x70\x31\x98\x0d\x82\x91\xac\x84\x46\xa5\x1e\xcc\x07\x8b\x6d\x33\x08\x46\x56\x13\x5f\x9f\x3d\x08\x9a\x2b\x76\x1d\x4c\x82\xac\x01\xc0\xa5\x0a\xf9\xb3\x60\x83\x55\xb9\x2d\xd2\x40\x78\x88\x15\x28\xa8\x31\xa2\x7e\x24\x30\x49\x32\x05\xb1\x44\x2d\x3b\xd8\x93\xee\x2a\xb0\x1b\xd2\xdc\x0d\xfa\x3c\xe1\xbc\x19\x59\xe7\x00\x52\x83\x50\x2f\xb8\x03\xa1\x75\xe0\xc3\x48\xc8\xcc\x65\x17\xa8\xc1\x86\x2c\x40\x84\xbc\xbc\x6a\x19\x28\x98\xa5\x75\x64\xe2\xcf\xc7\x23\x4d\x1c\xc7\x76\xbb\x86\xd7\x6e\x85\x17\xe2\xf1\xc1\xc4\x22\xab\xa8\xf0\x3f\x8c\x96\x6e\x75\x9d\x5c\xc2\x53\x98\xbb\xf6\xff\x3f\x5c\xfb\xb4\x64\xf8\x6a\x94\x15\xcb\x7c\x9b\x82\xee\x8f\x59\xe3\x28\xf8\xe7\x78\xf0\xba\x1c\x24\xcb\x25\xab\x6b\x50\xf6\x71\x41\xc8\x62\x0d\x56\x55\xb9\x1e\x04\x23\x6f\xab\x51\x57\xc6\xa0\xbe\x02\x1c\xba\x4a\xde\xb2\x41\x32\xf8\x27\xf4\xee\x9f\x03\x79\x0c\xe1\xe3\x76\x56\x83\x63\x8e\xaa\x4a\xae\x07\xe5\x0a\xba\x42\xce\x12\xa5\x43\x2b\x3a\x5a\x8e\x83\xa9\xde\x0b\x2f\x19\xa8\x2f\x2d\x19\xf1\x12\x21\x26\x08\xdd\x9a\xff\xd8\x85\x13\x06\xbb\xef\xf1\x20\xb2\x44\x7d\xab\xf2\x2d\xab\xde\x55\x19\xb0\xf8\x0c\xdf\xf5\x78\x27\xff\x49\x7a\x38\x0e\x46\x6f\xd8\x35\x28\x61\xad\xfc\x13\x11\x82\x91\x8c\x45\x3f\x85\x9c\x78\xb8\x43\xf9\x1a\x2b\x12\xbd\x7d\x32\x88\xa3\x89\xd8\x3f\x47\x22\x37\x99\xcd\xa3\xac\xc8\x1c\x07\xed\x88\xc7\x20\x29\xb8\xca\x6a\xbd\x65\x84\x05\x1d\x68\x7f\x02\x7e\x07\x98\x12\x84\xda\xd3\xba\x30\x41\x34\xf1\x31\xdc\x75\x51\x60\xad\x39\x68\x13\xe0\x56\xb7\x4f\x26\x46\xa9\xfb\x41\x00\xc9\x0e\xa7\x71\x91\x71\x0c\x74\xef\x59\xf2\x50\xac\xa0\x87\x66\xb3\x92\x0e\xd8\x7b\x87\x24\xd4\x93\xfd\xa4\xab\x0d\xfb\xcc\x71\xc8\x0a\xf6\xb2\x6d\xbe\x4b\x81\xc1\xba\x7d\x24\xd7\xf6\xb1\x97\x1c\xab\x7c\x91\xac\x59\xbd\x49\x96\xee\x2d\x6a\xcd\x87\x5a\x2b\x5f\x50\xb7\xba\x25\x89\xfe\xe7\x49\xb3\x2a\xab\xb5\x95\x5c\x6d\x8b\x8b\xbc\x2c\x37\x1d\x4c\x67\x87\xf9\xd8\x6d\x78\x4e\xc1\xd9\x16\xdb\x35\xab\x92\x45\xce\x2e\x4c\x86\xd6\x57\x0b\xda\x3e\x5c\xf8\x18\x58\x0f\x34\x10\x2d\x1f\xf0\xdb\x8c\xbd\xab\xe5\xb4\xb0\xb7\xac\x68\x2e\xd2\xac\xde\x24\xcd\xf2\xaa\x0b\xea\x97\x5f\xb7\xac\xba\xee\xe2\x97\xf9\x27\xeb\xcd\x74\x59\xed\xbc\x14\xcb\x73\x95\xd4\x57\x17\xf2\xab\x07\x2c\xab\x9b\xb2\xba\x3e\x00\x32\xd9\x36\xe5\x01\x60\x45\x59\x30\x17\xec\x2a\x29\xd2\x9c\x2d\x92\xaa\x3e\x11\x21\x44\x7f\xb7\xfc\xbf\xfe\xfe\x6f\xeb\xfb\xec\xd4\x4e\xb0\x7b\x78\x66\x77\xf1\xcc\xee\xe3\x99\xdd\xc9\x33\xbb\x97\x67\x76\x37\xcf\xec\x7e\x9e\xd9\x1d\x3d\xb3\x7b\x7a\xdf\xee\xe9\x7d\x67\x2e\xed\x9e\xde\xb7\x7b\x7a\xdf\xee\xe9\xfd\x3f\xfe\x67\xef\x47\x9d\xa2\x89\x2f\x0e\x11\x4d\xfc\xd1\xed\xc8\x73\x49\xff\xec\x3b\x52\x57\x64\x3c\xef\x1d\xc9\x03\xdc\x29\xca\xf8\x73\x87\x28\x43\x04\xb7\xb5\x90\x4f\x46\xee\x15\x83\x8f\x6d\x5c\xb4\x5b\x5e\x26\xc5\x53\xf4\x09\x65\x23\xe9\x58\x65\x4d\x7b\xcc\x53\xef\xbb\x55\xea\xd3\x2f\xb6\xd1\x9a\xdc\x0d\x71\xed\x15\xc9\xf5\x78\xec\xf3\x5c\x62\xd1\xb5\x73\x57\x03\x9e\xe5\x02\xd7\xce\x5d\xf0\x9e\x55\x3b\xe7\x24\xf8\xb1\xa2\xc0\xb1\xbd\xa7\x6c\xf8\x5f\xfe\xc6\x89\x71\x6c\xef\x34\x47\xa0\xc5\x09\x6f\x6c\x6f\x3f\x2f\x94\xd9\xe6\x7d\xcf\x92\xfd\x35\xa9\x41\x56\xeb\x08\xb1\xee\x7b\x36\xce\x5f\x91\x56\xfb\xe1\x3d\x8b\xf7\x70\xdb\x94\x7e\x60\x8f\x9c\xee\x79\x59\x30\x3f\xb0\x67\xed\x60\x9f\xff\x55\xd1\xf4\xd8\x26\x13\x36\xfc\x77\x22\x76\xe6\x77\x26\xfa\x3d\x66\x8b\xed\xe5\xc3\x34\xd9\x34\xac\xa2\xae\x17\x37\x15\xe3\xdc\x71\xaa\x6d\x1e\x09\xa7\x2a\x3c\x73\xbb\xef\xf7\xad\xa7\xe0\x38\x95\x69\xda\xf3\xbd\xe5\x03\xbd\xd3\xea\xd2\x6a\xc8\xb1\xa9\x94\x4e\xaf\x04\x93\xab\xf9\x63\xc2\xe9\xb6\x53\x5f\xa7\xc8\x2b\x89\xae\x1f\xdf\x47\x84\x1d\x53\xef\x50\x86\x01\x42\x05\xa1\x32\x67\xdb\x03\x2f\xc0\xa0\x80\xb0\x10\xdc\x5b\x02\xe1\x82\xb0\x75\x84\xad\x8a\x6e\x4a\xcd\x18\x83\x3e\x46\xbb\xaa\x2c\x9b\x73\x8c\xeb\x3e\x09\x16\x65\x7a\x1d\x44\xcc\xdc\x8b\x32\xe2\x63\xdd\x94\x6b\xd8\xa6\xd2\x32\xb6\x62\x49\x9a\x15\xac\xae\xb1\xca\x24\xaf\x27\x67\xce\x15\x48\x85\xcd\xfa\x4c\x60\xc3\x67\x31\xee\x5d\x71\xf5\xd0\x73\x7a\x71\x81\xab\x08\xaa\x08\x1a\x9b\x84\x32\xb0\xd8\xa3\xf8\x02\x22\xa8\x32\x24\x49\x00\xbc\xc4\xc8\x2f\xe9\x52\xf2\x69\x91\x35\x19\xaa\xb4\x87\x42\x32\x9c\x67\x8b\x2a\xa9\x32\x26\x4d\xf0\x58\xf5\xa8\xac\xd8\x33\x48\xbd\x1e\x06\x7a\xa7\x04\x91\xb5\x75\xc6\x3f\x9d\xbf\x7c\xf5\xf4\xc5\xf3\x03\x6b\xc2\x71\x06\x11\xfe\x1d\x86\x63\xe4\x20\x43\xed\x00\xe1\xd9\x8b\x6f\x2f\x64\x9d\x3b\x27\x49\xb8\x4b\x90\x1a\x6f\xcf\xe0\x4a\x58\xc7\x16\xed\x1e\xaf\x93\xcd\xd0\xea\x8f\xad\x5f\x2d\x76\x03\xbf\x8d\x81\x5f\xdf\x00\xe2\x10\xcb\xfb\x66\x8b\x1a\x5d\xeb\xe4\xfd\x73\xd5\x4c\xfc\x7d\xd2\x5c\x8d\xd7\xc9\x7b\x7a\x2b\x24\xbd\x70\xa7\x00\x5c\xa0\x9a\x11\xb6\x45\xcc\x71\xa9\x68\x93\x2c\x19\xda\x81\xc3\xe1\x30\x34\xda\x3b\x21\x3d\x1a\x9d\x85\x42\x20\x36\xe0\x9d\x6b\xdb\xc8\x44\x89\x6e\xdb\x6b\x0f\x4a\x91\xbd\x60\x63\x16\xda\x66\xbb\xd6\xd7\x06\x7a\x59\xb8\x4c\x71\xd1\x52\x42\xb8\xd3\xee\xeb\xcc\xd4\xac\x80\xea\x46\x68\x73\xe0\x61\x80\xb7\x85\xc9\x3a\xc9\x8a\x80\x2a\x32\xf8\x21\x22\x5a\x63\xeb\xa8\x6b\x1b\x86\x8f\x56\xdd\x6d\xe4\x6e\x13\x7b\x72\x55\x4c\x1d\x1d\x00\xef\x33\x61\xc1\xfa\xd9\x38\xab\x5f\xb2\x24\xbd\x0e\x77\xd5\xb6\xd0\xce\xb8\x03\xf4\x1f\x53\x07\x10\xb6\x25\x0a\x2e\x32\x55\x7b\x40\x5d\x09\x7d\x36\x0c\xc7\x60\x32\x31\xd4\x2a\x24\xdb\x82\xee\x58\x5e\xef\xd0\x57\x49\x28\x43\x39\xbe\x94\x34\x88\xf6\x1b\x67\xde\x25\x4f\xa3\x51\x1b\x25\xe9\xdb\xa4\x58\xb2\x5b\x95\x3b\x39\xd1\x41\x4a\xdc\x5c\x11\x0e\x6f\x5b\x8c\xcb\x62\xc9\x88\x10\x26\xcd\xd2\x6f\xd8\xb2\x5c\x33\x9c\xa4\xd6\x67\xa5\xbf\x1f\x83\x3d\x08\xd0\x77\x88\x09\xed\x88\x0f\x6c\x41\xeb\x2f\xf7\x37\xe1\xc3\x96\x36\xba\xf0\x67\xa8\x18\xae\xda\x72\x83\x2a\xc9\x1a\x3b\xe2\x16\x7d\xfd\xad\xb6\x0c\xda\x5a\x53\xc4\xab\xea\x61\x68\x3d\x10\x1a\x62\x22\xe2\xd4\xc1\x46\xa7\x21\x09\x5e\x95\xd5\x1e\xdb\x94\x4e\x2c\x3a\xa3\xa6\x25\xfc\xc4\x79\xc9\x8b\x8a\xe5\xab\xc8\xe9\x67\xcc\x87\x12\x4e\x9b\x33\x80\x5f\xe3\x0a\xab\x98\xca\xb8\x94\x66\xd9\x28\x10\x0a\x53\x81\x0c\x47\x6b\x9f\xbc\x1d\xdb\xda\x34\xe1\x91\x63\xca\xc8\xc6\x6d\xc3\x96\x97\x05\x2a\x0e\xd0\x64\x48\x21\x44\xcf\xa5\xb3\x6d\x23\x6b\x46\xf2\x94\xe4\x74\xbc\x2c\x8b\xba\xa9\xb6\x9c\x90\x45\x01\x05\xa1\xef\x0f\x9e\x29\x8a\x2e\xab\x64\x73\x85\x51\x9c\x1f\x7e\x1b\x29\x41\x5a\xac\xce\x34\x82\xd0\x15\xbc\x2b\xf0\xc4\x41\x56\x18\x1d\x09\x77\xe4\x2b\xa6\x39\xc2\xc3\x24\x34\x33\x4e\xd2\xf4\x3c\xbd\x64\xf5\x90\x40\x8c\xed\x46\xc6\xfa\xb7\x91\x2c\xbc\xf6\xd1\x24\xf4\xe1\xd6\x62\xe5\x4d\xb9\xa9\xcb\x8a\x04\x87\x78\xcb\xaa\x46\xba\x1c\xa5\xdd\xc3\xf4\x31\x88\xc3\xa7\x24\x83\x6c\x68\x35\x0f\x7c\xb1\x22\x93\x56\x39\x08\x5b\xb3\x66\xbb\xb1\xee\x68\x43\xe5\xa6\x80\x93\x70\xc9\x77\x35\x49\x05\x27\x27\x98\xfa\xc3\x99\x81\x8c\x42\xc3\xea\x06\x94\x59\xf0\x53\xb3\xa5\x9b\xaa\x5c\xb2\xba\x7e\x98\xe7\x8a\x43\xfb\xe6\xc5\x8b\xd7\xe7\x8f\xd1\xba\x8b\x7a\x42\x10\x46\x58\x91\xaf\x37\x0e\xc1\x23\xfc\x2a\x91\xbe\xd3\x64\xce\x61\x6b\xee\x97\x00\x91\xd4\x20\x8c\xb4\x5c\xb0\x6f\xff\xd9\x32\x44\xb9\x13\x6b\x55\xab\xc5\x56\x07\xa4\xe2\x70\xaa\x7f\xe3\x5c\x0f\x69\x47\x69\x37\xf9\xf0\xc9\x1c\xdb\xc3\xbe\x2d\xa1\xe0\x0b\x54\x09\xda\x2b\x48\xb2\xa0\x1d\xe6\x4a\xb6\x62\x07\xff\xf8\xf2\x99\x6e\x72\x5b\xe5\x1f\x45\x9e\x54\x95\x50\x13\x27\x96\x1c\xf7\xbe\xb3\x9c\xf9\xbc\x34\xbe\xde\x65\x79\xfe\xd8\xb5\x5e\x34\x10\x47\x04\x2b\x3f\xb0\x37\x8a\x4a\x7a\x0a\x68\x8d\x52\xba\x29\x89\x6f\x1e\xc3\xe5\x01\xa1\x50\x63\xba\xe9\x94\xdb\x83\x36\x9c\x52\x7e\x94\x1a\x22\x50\xea\x52\x4f\x76\x1d\xed\x91\x44\x7d\xae\xc2\xc5\x67\xc9\x6b\xa1\xad\xd6\xd4\xd6\xe7\xf8\xb8\x0f\x32\x8e\x65\xf0\x74\x4a\xee\xc4\xce\xeb\xea\xa2\x50\x63\x76\x0b\xb6\xe2\x48\x35\x48\xa4\x4d\x0d\xe7\x94\x82\x76\x33\xf8\x9a\x48\xf5\x79\x59\x9a\xd2\x5b\xb1\x7a\x3d\xd2\x80\xfd\x42\x0a\xc2\x2e\xd4\xac\x89\x6b\xd6\x4c\x1d\x33\xa2\x2a\x96\x3f\x9e\x88\xe3\x01\x7b\x45\x20\x95\xb1\xad\x6b\x84\x44\x32\x49\x01\xe9\xa3\xc5\x07\x2f\xf3\xa6\x7e\x7b\x18\x5f\x11\x9a\x4f\x8a\x59\x6e\x38\x82\x65\xb9\xde\x94\x05\xa7\x6c\xd1\x4e\xd9\x08\x4e\x50\x1b\x31\xec\x29\xf7\x36\x63\xef\x6e\x59\xa4\x61\xeb\x4d\x9e\x34\x2c\x88\x76\x44\x7b\xfb\x80\x82\x57\x2c\xdf\x70\x02\xb9\xa7\x98\x66\xee\x08\x77\x26\x38\x3c\xb5\x44\x87\x57\x42\x9e\xf7\x17\x49\x9d\x2d\x83\x48\xcb\x2f\x3f\xa8\x16\x11\xdb\x2f\xb2\x85\xa7\x1f\x54\x19\xbc\x64\x05\x91\x25\x57\x3d\xbc\x2a\x20\x79\x72\x60\xc0\xfa\x1e\x5e\xd6\x7f\xb6\x45\xd6\x09\x7c\x00\xdf\x2d\x58\x6e\xdf\x85\xc3\x82\x0c\xe8\x7b\xa7\xb3\xbc\xfe\xa6\xe4\x43\xd6\x24\xd9\x36\x65\x10\x51\x89\xea\x9e\x02\x57\x49\x7d\x15\x44\x54\xbe\xbb\xaf\x00\x4a\x77\x83\xc8\x12\xf3\xee\x29\x56\x94\x05\x0b\x22\x2a\xbd\xed\x98\x0b\xe3\xc5\x12\xdd\xb4\x06\x51\xe7\x2d\xa7\xab\xe0\xc1\x73\x68\xaf\x82\x6a\xeb\xb0\x46\xc9\x0b\x22\xe7\x54\x7e\x7c\xf9\x2c\x88\x82\x13\x99\x7a\x52\xb3\x06\x58\x15\x9e\x77\xb2\xad\xf2\xae\x1b\x9a\xa0\x64\x27\xab\xb2\x3a\x01\x7b\xa2\x4b\x5e\x0a\xf1\xc1\x43\xf0\x2e\x2e\xe4\xcf\x8b\x8b\x7d\xb8\x6c\xcd\x10\x24\x62\x1b\x27\x09\x8a\xb4\x25\xde\x91\x27\xf2\xbe\x0e\x75\x54\x9e\x26\x4d\x62\xd7\xb8\xf4\x49\xd0\x69\xba\xaf\x23\xc8\x99\x79\x85\xef\xe1\xce\x9b\x1c\x57\xec\xd7\x6d\x56\xb1\xef\x4b\xbc\xad\xe1\x5b\x2e\x08\x7d\x6b\x58\x05\xb4\x4a\xd7\x8f\xf5\x68\xb3\x75\x21\x9a\x0d\x42\xf2\x0e\xd0\x76\x11\xa3\xee\x89\xf3\x77\xd5\x95\xae\xb5\x24\x5e\xba\xff\x4c\xe5\x7c\x8d\xfa\x02\x6b\x00\xbd\x28\x61\xb8\x6b\xa9\xa2\x32\x30\x26\x71\x27\xf4\xcd\x8d\x95\xf5\x92\x64\xf9\xde\xf6\x2a\x5b\x9b\x18\x1a\x90\x26\x5b\x3b\x55\xdb\x44\xfd\xf2\x8c\xc7\xf5\x9e\xa6\x70\xd6\x75\xee\x20\x52\x34\x37\xd0\xed\x83\x4d\xd5\x82\x6c\xec\x63\x28\xb1\x31\x61\xdb\xa9\xac\xd0\xe0\x17\xf6\xfb\x69\xf3\xf2\x11\x2e\xb8\xae\x5f\xf3\x3b\x9e\x1e\x67\xab\xa1\xcb\xfb\xb8\x6d\x79\x9c\xd4\x98\x26\x73\xd2\xe0\x49\x37\x4b\x77\xbd\x62\xca\x2c\x07\x78\x5d\xd6\x39\x84\xf7\x3e\x44\x35\x08\xb4\x71\x66\x7e\x25\xec\x8f\x75\xd8\xdb\xa1\x3f\xdc\xe5\xac\xf7\x6d\x56\x67\x8d\xb8\xed\x47\xab\x22\x82\x6f\x96\x46\x9b\xa4\xb9\x22\x36\xf1\xe2\xda\x2f\x85\xef\x4d\xb6\x64\xb5\x4c\xcc\x8a\x65\xb9\xce\x8a\x4b\x64\x8d\xec\x54\xb8\x8f\x47\x39\x2b\x70\x33\xc9\x40\x49\x19\x90\x21\xd1\x5a\xb8\x13\x3f\xe2\x1d\x68\xc0\x1e\x61\xeb\xfc\xff\x78\x06\xa6\x3d\x22\xdf\xb6\x3f\x29\xa8\xe1\x7b\xcb\xe1\x51\xa5\x56\xd8\xe6\x63\x21\x94\xa2\xc0\xa5\x7f\x4a\x7c\xfc\xb3\x02\xd5\x39\xf5\x0c\xf0\x41\x01\x70\x3d\xcb\xe6\x73\x67\x36\xda\x95\x14\x8b\xe0\xf7\x14\xdb\x2b\x37\x43\x62\xaa\xf8\xf8\xe1\xb7\x52\xb4\x81\xd3\x21\x5d\x1b\xab\x59\xdb\xb5\xed\xe3\x87\xdf\x92\x90\xad\x49\x9a\xc6\xc6\xbd\x04\xdf\xb6\x0a\xb2\x89\x94\x34\x53\xd6\xd2\x3b\x11\x03\x03\x14\x87\x8f\x9e\x54\xa0\xf7\xf1\x0e\x23\x91\xa0\xe8\x08\x57\x09\xef\x85\x64\xc5\x26\xb3\x79\xc4\xdb\xd8\x36\x97\x25\x48\x03\xf8\xc9\x87\x6a\x93\x70\x5d\x6e\xa7\x9e\x46\xc4\xda\xeb\xb8\x2a\x35\x5d\x0e\xe9\x21\x05\x60\xda\xa9\x39\x09\xeb\x64\x13\x5b\x6f\x3c\xc4\x22\x2b\x49\x53\xac\x04\x05\x4f\xc2\x2e\x6b\xea\xcc\xe3\x79\x7a\x49\xa9\x46\x55\xae\xc1\xc0\xaf\x29\xb5\x29\xa2\x4c\xbc\xb9\x39\xc2\xe4\x9b\x1b\x99\xc4\x6f\xab\x25\xa5\x5d\xe8\xcb\xaf\x2a\xd7\xb1\xea\x85\x84\x0d\xa3\xa6\xd4\xa9\xa2\x18\x08\xf3\x4b\x85\xfa\xf6\x22\xa9\xb2\xda\x35\xbf\x44\x9b\xe5\x15\x5b\xbe\x79\x74\xbd\xcc\x99\x81\x62\xbc\xc7\x64\xeb\x91\x0e\x7a\x95\xc2\x83\x25\xaf\x61\x90\xb2\x46\xd8\x47\x06\x23\x84\x1f\x05\x83\xaf\x4e\x06\xc1\x08\x30\x56\xbc\x80\xf1\x84\x30\x6c\x5b\xc4\x7f\xde\xb7\x48\xf7\x22\x9c\xf2\x84\x31\xc1\x00\xdc\x3f\x64\x74\x33\x39\x9c\x79\xcc\x7f\xd1\xac\xe7\x7a\xe9\xd5\x98\xed\xd5\x12\x12\x47\xb2\x5a\xe2\x39\x4f\x93\x02\x4d\x69\x0c\x5c\x13\x74\x46\x23\x99\x87\xba\x44\x02\x13\x7d\xfb\x1d\x37\x81\xbb\xe1\x91\x22\xe1\x6c\x93\x81\x53\x0a\x61\xd0\xc8\xb0\x6d\x3b\x50\xb0\xf6\xa1\x72\x44\x23\xa7\x08\xc1\x2a\xee\x94\x75\xb2\xa1\x28\xcf\xfb\x21\x83\x93\x68\x2b\x71\x11\x8f\x45\x3b\xff\xd7\x5b\x83\x37\x89\x15\x88\x62\x78\xd4\xe9\xb1\x63\xb2\x11\x8f\xa0\xab\x2c\x06\x25\xe0\xf4\x46\xf4\x53\xf7\x00\x43\xbe\x74\x76\x00\x43\xbf\x14\xfa\xa8\xd5\xed\x43\x56\x77\xf3\x90\x3d\xcb\xe6\xa2\x70\x8f\x99\xe0\xe3\x87\xdf\x1e\x72\xbe\x6a\x56\xfb\x63\x4c\xa6\xf2\xf2\xf2\xd2\xa3\x05\x2a\xda\x10\x93\xd0\x91\x2b\x6f\xe8\x87\xaa\xdc\x5e\x11\xdd\x80\xdf\x87\x42\xe4\x27\x55\xf0\x7b\x06\x53\xbb\xcf\x68\x10\xe4\x89\xd9\xea\xda\x51\xf3\x93\x19\x42\xdf\x6d\x93\x35\xc8\x2f\x3a\x70\x2a\x6b\x8a\xb6\x2b\xcb\x64\xcd\xbc\x90\x3a\x4b\x0f\x10\xa5\x2b\xbf\x99\xfa\x60\x9f\xb6\x94\x47\x0f\x4d\x69\x0e\x92\xbe\x48\x4d\x1b\x7a\x5d\x80\xc8\x62\x7d\x7e\x96\x1d\x1b\x07\x69\x50\xbf\x4c\xf2\x7c\xd0\x94\x83\x7f\xf6\x71\xcd\xff\x1c\x0f\x7e\xc8\x59\x52\x33\xb0\x87\xa8\xb2\x14\xcd\x21\xee\x2a\xd0\xbb\x03\x54\x80\x1a\x64\xc5\xa0\xde\x2e\x60\x69\xc0\x4e\xc2\xb4\xa2\xfc\x27\x6f\x69\x53\x81\xc0\x67\xb0\x4a\xf2\x1c\xfc\x5e\x5d\x55\xe5\xf6\xf2\x8a\x67\x71\x82\x80\x56\x2e\xe3\xa0\xdf\x41\xf7\x2d\xc6\x23\x2f\x45\x9b\xa4\xaa\x85\x6f\xc6\xae\xf1\x08\xd0\x4f\x33\x1a\x68\x5f\x38\x5a\x10\xe3\x21\x5d\xfa\x80\x11\x7d\x03\xce\x5d\x6e\x31\x2e\x2c\xf0\x69\x46\xe7\x5c\x1a\x3f\x72\xd5\x7a\x2e\xa1\x5d\xa3\x74\x8a\x7c\x9a\x91\x1e\xea\xa1\xfc\x16\x83\xf5\x5e\x8a\x07\x7b\x07\x4c\x8b\x7d\xd2\x1d\xf8\xa2\x31\x9e\x40\x3f\x0e\x6d\xa1\xb2\x5b\x60\x2d\xc0\x7f\x9a\xe1\x5d\xe4\xe5\xe5\x33\xdb\x5b\x7c\xb9\x2d\xd2\xe8\x03\x87\xa8\x2b\x14\xf5\x0c\x0e\x18\xa7\x2e\xf4\x49\x46\x69\xda\x33\x79\x2c\xda\x7d\x9a\xea\x1f\x7b\xde\x28\xdf\x57\x1e\xbf\x57\xd1\x7d\xea\xf9\x6a\x76\x8a\x2c\x9f\xf8\xc2\xc8\x62\x3c\xfb\x28\x8e\xf5\x1b\x8f\x78\x08\x66\xf5\x36\x6f\x30\x4e\x27\xca\x80\xb6\x79\xa3\xad\x73\xc7\x41\xf8\x35\xfa\x03\x06\x30\x91\x5d\xb1\x4d\x9e\x2c\xd9\xf0\xde\xcf\xe3\xe1\x38\xbc\x77\xa9\xf9\x29\xad\xba\xb8\x1e\x2f\xaf\x92\xea\x61\x33\x3c\x0b\xc7\x4d\xf9\xe3\x66\xc3\xaa\x47\x49\x8d\x9a\x26\x42\x5e\xa8\x9b\xb9\xe8\x6f\xe6\xe2\x83\x5a\x21\x71\xb6\x46\xc1\x24\x18\x61\xad\x1d\xe2\xaa\xfe\xd0\x15\x15\x41\xba\x58\x3a\x09\xc1\xa3\x87\x04\x2f\x10\x55\x60\x54\x36\x00\xd5\xa5\xc6\x4e\xa6\x8a\x06\x01\xf7\x23\xb2\x7b\xe1\xf2\x05\x41\x76\x64\x02\x78\x2c\xda\xe3\xc6\x47\x39\xbe\x71\xa2\xa6\xac\xb7\x35\xd8\x1b\x0b\x4b\x50\x70\x45\x4f\x1d\xfc\x60\x30\x76\x3e\xaa\x99\xd3\xc9\x39\xac\x89\x8e\x91\xe1\x81\xa0\x74\x07\x84\x4c\x2a\xca\xc5\xce\x1b\x5e\xc3\x21\x56\xbc\x10\x9d\xa8\xb2\x6c\x8c\xd1\xf3\x04\xd0\xb2\x7d\x79\xfe\xea\xc5\xb3\x9f\xce\x5f\x4a\xfd\x25\x4d\x19\x64\x43\x94\xc8\xb4\x4e\x8c\x0d\x0f\xbb\xe0\xba\xa9\xfc\x21\xa9\x9a\xba\xdb\xb5\x9c\x02\x01\xd7\x72\x02\xea\xef\x59\x73\x55\x6e\x9b\xd7\x26\xc0\x99\xd8\x85\x1e\x28\xa2\xd3\x44\xec\x4c\xd5\xed\x05\xd5\x5c\xb4\x94\xdc\xbb\x7f\x8f\x8f\xcd\x3d\x74\x2f\x90\x51\x95\x05\xbe\x36\x28\x67\x97\x43\xb8\x17\x84\xd3\x42\x20\x65\x53\xcf\xe0\x7f\x71\x77\x3c\x39\x9b\x2b\xa5\x65\x68\x10\x90\x57\x73\xf9\x43\x04\xc6\x48\x93\xa7\xd1\x89\x52\xf7\x1d\x07\x61\x38\x85\xbe\x6a\xf5\xa0\x05\x38\x6c\x1a\x1a\x75\xc9\xc5\xd8\x39\x9e\xb1\x60\x56\x27\xe0\x64\xcb\x33\x4f\x93\xae\xb9\x43\x29\x1b\x6f\x19\x1e\xa9\xdc\xad\x37\x51\x5a\xf9\x23\x79\xab\x41\xc7\x5f\xed\x81\x8c\xd5\x81\x9b\x7e\x6a\x22\xaf\xf4\xde\x49\xa8\x2c\x8e\x5c\xa5\x0c\x92\x06\x04\x46\xaa\x88\x67\x88\x94\xc0\xde\xbb\x8c\xf8\xd2\x09\x27\x01\xaa\xcb\xb1\xb5\x41\x46\xc1\x98\x8c\xd4\x22\x26\xbe\x5e\x1e\x11\x1f\xa3\xa4\xde\x51\xec\xab\x04\x67\x4e\xfa\x86\xd2\xd0\xbf\x49\x70\x99\x6d\xcd\xf0\x99\xf9\x79\xb2\x36\x6a\xa1\x1c\x83\x35\xa2\xd8\xfa\xb6\x67\xec\x22\xb0\xc7\x2c\xe4\x7c\x01\x3e\xa8\xbb\x15\x06\x81\x3e\x04\x5e\x8b\xb5\xf2\x77\x05\xbc\xcc\x0a\x08\x9b\xca\x1f\xb6\x98\xda\x9e\xe0\xf5\xf9\xf7\x3f\x3c\x7b\xf8\xfa\xfc\xd5\x8c\xd6\x38\x57\xf3\xd5\x0b\xd5\x1a\xbd\xd0\x57\xed\x21\x4d\xff\xcd\x1a\x53\xb3\xf3\x53\xc6\xde\x75\x71\xae\x59\x3d\xb6\x96\x93\x02\x50\x4d\xdb\xee\xe3\x40\xb6\xa3\x95\x26\xfe\x1d\xad\x41\x2d\xff\x8e\x86\xbe\xe7\x9b\xae\x1b\xb3\x60\xfb\x21\xfd\xed\xda\xcd\xd2\xc9\x1e\x9c\x1d\x16\x1d\x88\x54\x79\x1a\x1b\xce\xf1\x98\xa9\x7a\xf3\x57\xd0\xdc\xf1\x77\xe7\x90\x61\xdd\xdc\xd8\x26\x37\xa8\x0b\x04\x07\x4c\xcf\xae\x98\x1f\x72\x13\x3a\x70\x3e\xbc\x74\x0f\x48\xd6\x6f\x32\x53\x87\x5d\x69\x80\x3d\xbf\x5e\x2f\xca\x3c\xda\x24\x69\x9a\x15\x97\x50\x2b\x87\x0b\x77\x98\x11\x07\xb3\xff\xf7\xff\xf9\xbf\xe7\x01\xb2\xa0\x2a\x6d\x30\x0f\x2c\x16\x48\x71\x1f\xc2\xa9\xc4\x97\xa7\x9c\x5e\x41\xa5\x71\x30\x16\xe5\x65\x82\xb6\xcf\xf9\xf2\xf4\xa4\xbb\x12\x72\x64\xb7\x28\x26\x1c\x67\xc5\xaa\x1c\xaa\x3e\x3b\x05\xe5\x38\x50\xf9\xde\x95\x1e\x78\x8a\x84\xce\xdd\x68\x8f\x57\x2f\x47\xea\xec\xa8\x3f\xf4\xca\x9a\x5d\x65\x89\x34\x69\x12\xa5\x21\xd1\x0d\xd6\xa5\x53\xf1\xe1\xa2\xe1\x0f\x15\xe7\x3e\x4e\x9a\x44\x2a\x84\x58\x4d\xf8\xcc\x85\x5d\x2d\x92\x1e\x61\xaf\x70\xac\x46\x5a\x20\xbf\x45\xae\xbf\x52\x6f\xea\xfe\xc5\xea\x9c\xd7\xfd\x0f\x06\x7e\x47\x12\x07\x3d\x0a\x74\x7b\xda\x70\x5e\x0d\xfe\x1d\x2f\x00\x1f\x2d\xe1\x07\xbf\xfc\x2b\x47\xc8\x8f\xc9\x28\x71\x4f\xea\x2b\x56\xd9\x02\xf7\xcf\x2f\x2e\xc6\x2a\xa7\x5b\xd2\xff\xb9\x2d\xe9\xf7\x8b\xda\xbb\x0c\x93\x0f\x13\xdf\xfb\xd1\xca\x27\x03\xb1\x4c\x74\x4d\x55\xf2\x65\x52\x3c\x4a\x9a\x24\x2f\x2f\xcf\x8b\xa6\xca\x58\x8d\x02\x57\x33\xcc\x94\x7a\x4c\xd3\x7e\xf3\xd1\x19\xbf\xc9\x89\x53\x3f\x9e\x46\x28\xf4\x68\x79\x40\x13\xc6\xfd\xa8\x16\x16\xd7\x0f\x87\xfa\xde\xf3\xfc\xe1\xf7\xe7\xaf\x7e\x78\xf8\xe8\xfc\x15\x5e\x15\x35\x4c\x18\x69\x9b\x3c\xb9\xbe\xaf\xb6\xab\x55\xf6\xfe\x25\xbb\x64\xef\x63\x74\xbb\x74\x79\xfe\x7e\x33\x34\xef\x2a\xa3\xe0\x33\x71\x69\xc3\x56\xc7\xab\xb2\x3a\x77\xac\x36\x3d\x4a\x58\x47\x31\x36\xae\x23\xeb\xbc\x61\xd7\x83\xac\x18\x98\xf0\x47\x5a\xd9\xca\xeb\x31\x95\x2f\x4d\x56\x08\x77\xa9\x66\xa7\xd1\xc7\x30\x82\x41\xfd\xa6\x5e\x17\x38\x6d\x95\xd7\xd6\x17\xab\x21\x64\x87\x7c\x3d\x60\x84\x41\xb8\x83\x29\x12\x8e\xda\x24\xce\xf2\xfa\x14\xbb\x6c\x35\x18\x05\x41\x08\x6e\x9f\xf8\x09\x43\x44\x3b\x75\xdb\xef\x5d\xe8\x43\xa8\x98\x79\x88\x7c\xcc\x5b\xa7\xe3\x91\xe7\x53\x11\x36\x7f\xf1\x26\x7b\xcb\x2e\x84\x22\xf2\xc1\x6e\x56\x7f\x0f\xaf\xa4\xff\x56\xb7\x91\xb6\xf7\x0f\xcf\x93\xa9\x9f\xe0\x7e\xe1\x10\x5c\x3f\x29\xf5\xd0\xc7\x2e\x52\xea\x79\xe0\x84\x75\x7b\xe8\x38\x8f\x7c\xd8\xeb\xa6\xf5\xcf\x07\x45\xc3\xf7\xd1\x63\xdb\x1f\x80\xc7\x56\xbf\x62\x20\x74\x47\x69\x4b\x1d\x63\x07\x87\xc2\x2d\x18\xa1\xe5\x5e\x45\xda\x89\xb2\x71\x89\x92\xa6\xa9\xb2\xc5\xb6\x61\xcf\xb2\x75\xd6\x4c\x3e\x8f\xcc\x8a\x27\xb2\xe2\xe8\x92\x35\x4f\xb2\xbc\xb1\x2c\x0f\x05\x15\xd0\xcd\xbf\x4b\x9a\xe5\x15\xdc\xaf\x38\x05\xb7\xa2\x9d\xd6\x0f\xd3\x94\xa5\x48\x9a\x7f\xdc\xa4\x09\xea\xc7\x25\xd5\x60\xad\x0a\xa0\x94\xe7\x92\x35\xba\x0e\x4a\xbc\xb1\xec\xeb\xf2\x15\x2b\xd2\xa8\x63\x0e\xa6\x04\x26\xd6\x35\x83\x2e\x8a\xe7\x44\x41\xb2\x09\x3a\x2e\xf0\x13\xd6\xf4\x5d\x95\x6c\x36\x2c\x8d\x79\xc3\x63\xfe\xa1\xba\x83\x74\x14\xfa\x31\x96\xca\x5f\xb4\x1b\x48\x4f\xa1\x5c\xb9\xa8\x59\x25\x6e\x9b\x56\x51\x35\x7c\x45\x48\x45\x8b\xad\xe8\x3e\xcc\xd4\x90\x8c\x24\x14\xba\xb6\xd0\x56\x6c\x2c\x81\xd1\xbc\x73\x3e\xad\x8a\x70\xb7\x2a\xc0\xbf\x3f\xf4\xca\x82\x47\x07\xe0\x88\x80\x43\x91\x17\xb6\x3e\x24\x83\x91\x59\x80\x5a\x89\x14\xbe\xdb\xe8\x82\xcf\xc9\xeb\x12\x54\x80\x3b\x58\x84\x72\x35\x90\x9c\x81\x56\xb7\xe1\x09\x5e\x17\x92\xca\x0a\x1f\x56\x72\x82\x91\x60\x8d\x97\x05\x81\x74\x2f\xd9\xb2\xac\x52\x3b\xbe\x6e\x85\xa9\x88\x78\xe2\x43\xcc\xbd\xfc\x7c\x09\x33\x90\x5a\xa6\xfb\x5d\xd8\x25\x4b\x29\x44\x15\xed\xe2\x18\x65\x29\xb1\x58\x3c\x47\xb4\xa6\x97\x6c\x8b\x09\x58\x8e\xaf\x1f\xed\xd4\x70\x66\x64\xcf\x85\x77\x12\x01\x24\x90\x5a\x7c\x99\x18\x5d\xa9\xfa\xfa\xd1\x11\x2b\x16\xe0\x91\xd1\x47\x8d\x8d\x0a\xef\x0d\x68\xe9\xf5\x82\xaf\x11\x98\xb1\xa4\x8f\xae\x92\x82\xea\x25\xc2\x41\x17\x65\xe9\x7b\xe1\x58\x3e\x7d\x54\x6e\x8b\x26\x4a\xf8\xf4\xc3\x4f\x1a\x68\x30\x4b\xdf\x4f\xb3\xaf\xb2\xf4\xfd\x48\xe7\x0b\x45\x36\x35\xe4\x18\x6a\x1c\xe3\x29\xfb\xb0\x19\x66\xa1\x7f\x7f\x9a\xfd\xdc\xbb\x27\xf7\x4d\x82\x46\x9a\xe1\x4c\xb4\x35\x87\x57\x12\x3a\x2c\xb5\x76\x02\x83\x86\xf6\xb8\xc3\x16\x57\x4f\x34\x5a\xc5\xbb\x54\x4e\xd9\xc4\x9e\x43\x30\xd2\x14\x79\xc2\x97\x50\x2b\x3b\x32\x4e\xd2\x14\xe4\x0b\x2f\x44\x45\xe8\xdf\x41\x56\xab\x86\xfb\x81\x64\x41\xb6\x82\x5d\xef\x6d\xe8\x16\x14\xc4\x98\x44\x03\x7f\xbd\x47\xd8\x41\xd4\xa5\xc3\x90\x75\xef\xf9\xd8\x37\xfc\x36\x42\xa5\x52\xe2\x45\x15\x38\xe5\x9d\x19\x74\x60\x59\xe6\xdb\x75\x47\x04\x71\xcf\x39\x68\xd3\x7e\x8b\x2c\xb9\x47\x20\x25\x3c\x3d\x04\x06\xf1\xa9\xb0\xf7\x9d\x60\xe6\x15\x11\xf1\x9c\x5b\x50\x5c\xd2\x13\x1f\x46\x52\xe4\x21\x3e\x0c\x5e\x14\x4b\xc7\x8f\x81\xec\x40\xd8\xde\x0e\x6d\xb1\xb0\xc2\xa6\xce\x13\xed\x50\x7c\x6c\x5d\x0c\xa1\x63\xb6\x26\xbd\x50\x52\x42\x01\xbe\x87\x96\xf3\xff\x05\xab\xa1\x6f\x8f\x3a\x91\x28\x9b\xe3\x5d\x97\x3c\xa9\x44\x4b\xbe\xff\xc1\xb1\xb3\x68\x43\xbb\xaa\x95\xa8\x34\x11\xe7\x1d\xc5\x2b\xd1\x32\x92\x3b\x78\x93\x6b\xe9\x4d\x0b\x1b\x6e\x23\x83\x3f\xb2\xcd\xd9\x01\x13\x08\xcb\xe4\x65\x01\xd5\x90\x87\x1d\xb6\x56\xa1\x11\x02\x95\x66\x8d\x3b\x24\x02\x43\xf9\x98\x25\x90\x31\xee\x2a\xdd\x53\x54\x78\xba\xd1\x9c\x20\xbf\xd0\x21\x55\xa8\x5f\x14\x8a\xb5\xaf\x87\x61\x8b\x40\x62\xc7\xc1\x47\x68\x1e\x88\xd4\xca\x60\x07\x7b\x7a\x02\xdb\x82\xb2\x28\x08\xa4\xdf\x33\x5b\xc9\x7f\x59\x15\xaf\x80\xf5\xb5\xd9\x47\x7a\x58\x22\x11\x19\x6a\x3e\x32\xd4\x97\x64\xa3\xae\x36\xea\x18\x93\xe3\x04\x59\x8b\x3a\x44\x05\x7d\x92\x0e\xc5\x9f\x68\x54\x3d\x50\x6a\xf1\x9b\xc9\x27\x8e\xe8\x44\x98\x72\x08\x0a\xa9\x2c\x6f\x0c\xa1\x03\x1a\xef\xe9\x62\x22\xc0\xd9\x92\xb3\x8b\x34\xac\x04\xbe\xb9\x63\x8f\xf4\x7e\x0b\x61\x2f\x6a\xe1\xc7\x28\xb8\x17\x8c\x60\x41\x89\x90\x43\xe8\x60\x5b\xb2\x8b\x48\xef\xfb\xbd\x54\x5d\x73\x1a\x13\x87\xef\xd2\x3c\x8b\x24\x0f\x62\x17\x63\xa2\x3c\x41\x7e\x4a\xf2\x2d\x98\xca\x90\x85\xa2\xc5\xc6\x06\x98\x49\x98\x1e\x91\x2c\xc2\xea\x90\xc2\x35\x4b\xaa\xe5\xd5\x77\xec\xfa\x9d\x87\xae\xc9\x64\x7f\x51\x44\x71\x6f\xbb\x4f\x48\x96\xbf\xf0\xb2\xcc\xcb\xca\xed\x6d\x59\x11\x70\x41\xa8\x75\x29\x32\xf5\x74\x64\xee\xd4\x8a\x3d\xdc\x92\x02\x72\x2c\x5d\xc0\x64\xd1\xbc\xc3\x38\xa8\x11\x18\x41\x67\x0b\x60\x2b\x14\x19\x0c\xa5\x0d\x6b\x71\x96\x1e\x8f\x8c\x6d\xdb\xba\x91\x52\x5c\x71\x98\xe1\xba\x27\x9a\xcd\xa9\x27\x21\x2a\x8d\x71\xaa\xf2\xfa\x25\xf6\x8b\xd3\x7e\x13\xf3\xbc\x3e\x21\x90\xbe\xff\x21\xa7\x90\xd4\x35\xab\x1a\x7e\x0f\x54\xf2\x88\x40\x7a\x25\x11\x79\xc6\x4c\xd9\xe5\x9f\x9c\x3f\x7c\xfd\xe3\xcb\xf3\x57\xfe\x1a\x54\xee\x2e\xab\xcf\x8b\x64\x91\xb3\x74\x62\x4e\x3c\x32\x42\xe0\x67\x00\xdd\xd3\x0a\x31\x0c\x5a\xae\xde\xdc\xd0\x07\x51\x08\x51\xa5\x6c\x9a\x9e\xf0\x0a\x9e\x10\x37\x97\x22\x72\x98\xc4\x0c\xf6\x6e\xf0\x04\x19\xad\x9f\x32\xf6\x2e\x7a\x24\xfd\x47\x08\x97\xa8\x4a\x51\x1e\x7b\x9a\xad\x61\x52\x8f\x8f\x8d\xcf\xb1\x86\x43\xdf\x71\xc2\x1f\x89\x4e\x06\x8a\xa9\x3f\x31\x70\x6d\xb9\x1a\x08\xa3\x66\x2b\xdc\x22\x69\x56\x00\x0c\x03\x62\x9b\x81\xea\x2d\xb6\x26\x3f\xf6\x88\x24\xd0\xf9\x1a\xea\x74\xe1\x85\xc8\x79\x83\xf6\x1b\xbe\x41\xdc\xbc\x8c\xbd\x0b\x77\xfc\x7f\xbf\x11\x36\xba\x11\xd7\xff\x07\xe1\x2c\xe0\xd0\x01\x18\x4d\x1e\xa9\x29\x0d\x77\xea\xe7\xfe\x8a\xb4\x23\x0f\xc3\x72\x3b\x5b\x0d\x79\xd5\xf2\xe8\xc2\x5e\x0a\x3c\x22\x43\x92\x66\xdd\xf8\x60\x8f\x23\xb2\x61\xd6\xc9\x1b\xd0\xce\x10\x30\xa2\x2a\x64\x6b\xba\xea\xfb\xa6\xdc\x16\x29\x16\x10\x2e\xe4\x40\x74\x67\x78\x59\xed\x6f\x47\x4f\x33\x4f\x7b\x64\xde\x5f\x1c\xbf\x3b\x54\xd7\xc4\xd5\x1a\x18\xf3\xa9\xc2\x70\x67\xc0\x3e\xaa\x1a\x23\xed\x92\xa7\x63\xb5\x3b\xd1\x43\xe6\xbb\x68\xf2\x48\x10\x25\x63\xa7\x73\xc4\xf6\xc0\xb8\x2b\x22\x73\xc8\x4e\xec\xea\x81\x0b\x1a\xb6\xfb\xab\x1b\x4b\xa2\x19\x77\xc1\x3a\x23\xfa\x5f\xc9\xdb\xe4\x15\xbc\xd0\x1f\x32\x36\x17\xda\x1d\xa5\x0b\x73\xc0\x78\xfb\x0a\xb9\xcb\xd0\x07\xdd\x3d\x07\x6e\x29\x67\x4a\x7b\x2b\xd6\x2a\x98\x81\x4d\x68\x82\xdb\x75\x51\x9f\x8f\xdf\x6c\x57\x2b\x73\xca\x85\xf6\xdf\xdd\xbb\x81\x8b\xb7\xbd\x95\x26\x1b\x7e\x90\xbd\x2e\xed\x2a\x51\x6a\xa9\x2a\x4e\x93\x26\x19\x2f\x00\x06\xf9\xcc\x60\x84\x10\xa3\x20\x9c\x06\x78\x0c\x3c\x7e\xf1\xfa\xe2\xd9\x8b\x17\xdf\xfd\xf8\x03\x06\x08\x8d\xef\x89\x1d\xf1\xf3\x78\x38\xfe\xc3\x83\xf0\xe7\xf0\x5e\xf4\xcd\xcb\x87\x8f\xbe\x3b\x7f\x7d\xf1\xea\xf5\xcb\xa7\xcf\xbf\xed\x00\x9f\xdd\x05\xf8\xbb\xf7\xa2\xa7\xcf\x7f\x7a\xf1\xe8\xe1\xeb\xa7\x2f\x9e\x5f\xbc\xfa\xe1\xd9\xd3\xd7\xaf\x79\x21\x01\x3d\x1c\xff\x61\x91\x97\xcb\x37\x48\x1d\xbe\xc7\x90\x48\x3f\xc3\xa6\xfe\x79\x38\xfe\x43\x38\xac\x9b\x64\xf9\x66\x76\x7a\xf2\xdf\xf3\x51\x38\x8c\xc6\x7f\x08\xef\x1d\x32\x35\x38\xac\x6c\x75\xfd\x2c\xa9\x9b\x6f\x9c\x06\x9e\x16\x6f\xa5\x7f\x6d\x3d\x57\xe5\xb6\x92\x9e\xa8\x70\x0c\x04\x0a\x33\x67\xf8\x47\x2b\xc2\x46\x08\x08\x1a\x47\x43\x7b\xe6\xc6\xec\x3d\x5b\x0e\xed\xaa\xc2\x9b\x9b\x9e\xe9\xeb\x28\x13\xce\xce\xe6\xd1\x1a\x1c\xf1\xd4\x71\xf7\x74\x76\x94\x9e\x76\xf4\x3e\x16\x35\xce\xce\xe6\xa3\xe0\x6e\x30\xd2\x83\x81\x4f\x99\xfb\xf9\x1c\x31\x43\xcd\xa9\x3b\x9f\x07\xec\xb7\xc3\x97\x04\xc5\x3e\x55\x76\x99\x15\x49\x0e\x80\xc0\x08\x1f\xd2\x86\xde\x11\x0b\x55\xee\x76\x3b\x49\x97\xa3\x1b\xd3\xed\x8d\x3f\x9c\xce\xb4\x67\x8e\x84\x37\x37\xc4\xb2\xd6\x18\xe4\xc3\xf5\x22\xbb\xdc\x96\xdb\xfa\x43\x47\x9b\xb8\x15\xdc\x92\x80\x78\x7a\xe0\x19\xbf\xa7\xa3\x1f\x3d\x11\x07\x1c\x6d\xeb\x2d\xa7\x02\x57\xd4\x71\xbc\x48\x41\x0e\x4d\x7d\x8e\x37\x49\x95\xac\xa5\xa6\xfa\xcd\x8d\x4a\xbf\x4a\xea\x2b\xa1\x7c\x90\xa5\xa0\x43\x41\x5a\x7c\xf8\xea\xf5\xf8\x69\xfa\xbc\x4c\xd9\x70\xb6\xdb\x24\x55\x33\x09\x2e\x9a\x2a\x4b\x2e\xd9\xf7\xa2\x7c\xd0\xce\xf1\xd6\xaf\x2a\x64\xf5\x32\xd9\xf0\x8b\x92\xd1\x44\x6c\x7c\xdd\xdc\x78\x1a\xfa\x6b\x52\x5f\x61\x53\xf3\x70\x6a\x80\x8f\x37\x49\x56\x09\x01\xc0\x2c\xd8\x16\xa2\x89\x20\xf2\xd4\x82\xd2\x04\xa8\x27\x68\xaa\x2d\x0b\xc2\x79\xd8\xaa\x69\xf2\x14\x90\x23\xc1\xa6\xb3\x74\x2e\xe3\xca\xcf\x54\x1f\xb2\x74\x1e\x46\x46\x8f\x22\x77\xbc\xf2\x39\xeb\xb0\x05\x23\xcc\x99\x5a\x31\x77\xc5\x37\xfc\xee\x09\x75\xd8\x27\x57\x94\xd4\x78\xd3\xc1\xa5\x4b\xea\x26\xa6\xe5\x92\xaa\x66\xf2\x8c\xc3\x0d\x85\x7c\x5f\xbc\x83\xa8\x63\x88\x75\xf5\x64\x87\x22\xe1\x09\x9f\xa8\x68\x5b\x2c\x38\x13\x8b\x1f\xc1\x22\x2b\xd2\x93\xa4\x69\xaa\x00\x13\xa4\x02\x10\x7e\x71\xfe\x12\x7f\x59\xf8\x30\x41\x55\x20\x7e\x9e\x62\x3e\x76\xe2\x07\xc0\x3e\xcc\x9c\xca\xae\xc7\xea\x07\xf1\xd8\xf8\x80\xc3\x4c\x64\x0e\xbe\xdc\x17\x6f\xb3\xaa\x2c\xc0\x59\xe9\x50\xf9\x94\xf0\x31\x97\x92\xcd\x19\x26\x75\xa3\x58\x5d\x71\xa3\xf3\x96\xf4\xb0\x6e\xaa\x0e\xd2\xac\xac\x2b\x22\x8f\xee\x72\xfe\x6d\x6e\x50\x14\x77\x59\xc0\x8e\x95\xbc\xed\x02\xf6\x4e\xed\x6f\x31\x5d\x54\x31\xff\xd5\x86\x2d\xfd\x95\x7c\xf8\xcc\xf1\x9e\x9a\xad\x38\x24\x5d\x66\x0c\x69\x3f\xc2\xa9\xfc\x1a\x67\x35\x3e\x0a\xc5\xa6\x16\x9a\xc8\x6e\xbb\xfc\x20\x59\xcd\xf4\x08\x5a\xb4\x7c\xa5\x23\x28\x54\x97\x2a\xd3\xde\xe8\x67\xba\xbe\x7b\x3c\x9d\xd4\x46\x72\xd8\xfb\xc6\x97\x6c\xa9\x39\x91\x1c\xc1\x5a\xde\xab\xaf\x12\x1a\x0a\xcd\x03\x21\xc2\x5f\xf7\x81\x2c\xcb\x3c\x47\xc7\x6e\x7d\x50\xe8\x18\xb3\x3b\x5f\x90\x93\x3e\x10\x50\x6e\xed\x03\x60\xc9\xf2\xaa\x2f\x5f\x7b\xda\xec\x86\xe1\xc7\x56\x46\xa2\xda\x79\x40\xae\x33\x96\xf7\x76\x34\x2f\x97\xbe\x6c\xe1\x74\xb0\xbe\x07\x9e\x69\x16\xe5\xfb\x5e\xa0\x9a\xe5\x54\xcb\xcc\x07\xd2\xb0\xf7\xcd\x45\x52\xb1\x64\x3f\xd4\xaa\xab\xcf\x26\x98\x52\xff\xee\x06\xf4\xe7\x09\x21\xcb\x85\x88\xe2\xe2\x81\x41\x71\x8c\x4e\xb8\x80\xf5\xbe\xe8\xc2\x0b\x04\xe7\x5b\x66\x5d\x56\x9b\x2b\x05\xf7\x7b\xd4\x93\xfb\x3f\xe1\xd5\xfa\xc3\xab\x91\x84\x2f\x0f\x93\x29\x77\x78\x16\xf1\xa8\x18\xba\x22\x68\x8f\x0e\x7f\x67\x98\xb5\xcf\x7d\x61\xd6\x16\x65\xd9\xd4\x4d\x95\x6c\xf6\x69\x66\x2b\xcb\xf1\x1f\x92\xe6\xca\x09\x1f\x6d\xe4\x9a\x07\x98\x0d\x2a\x33\x44\x80\x99\x37\x8c\xc8\x07\xdd\xb0\xd4\x66\xbe\x78\x52\x77\xe4\x8a\x4e\x39\x0f\x0c\x75\xe6\xc8\xf9\x69\x4f\x19\x95\x47\x61\x91\x89\xe8\x82\xc6\x5c\xa9\x00\x7a\x8e\x0c\xaf\x03\xac\xb3\x00\x52\x6f\xfd\x6f\x99\x1b\x05\xdc\xc8\x45\xb6\xe5\x6d\x92\x6f\x93\x86\xfd\x88\xe7\x46\xc7\x98\xbd\x50\x53\x2d\x99\x10\x37\xa9\x8e\xd2\x1e\x18\x44\x10\xe7\x2a\xd6\x51\x41\x17\xa0\x39\x97\xcd\xd5\x5e\xff\x39\xfc\x18\x76\xa2\xee\xf1\x44\xc8\xb5\x98\x6a\x4f\x67\x38\xb8\x17\xca\xc0\x00\x7f\x39\x23\x57\xf5\xa6\x03\x58\x67\x89\xad\xb4\x2d\xd2\xa7\xab\x2e\x60\x9a\x0b\xf0\x82\x0b\xe8\x2c\x61\xe5\xa3\x62\x58\xd6\x5c\x75\x80\xeb\x2c\x8c\x31\xdf\x55\x6d\x66\xf6\x21\x67\x75\xdd\xd9\x01\x9d\xa9\xe6\xe2\x61\xd3\x54\x3d\xf3\xa1\xb3\x3d\x25\xb4\xd3\xf5\x3d\x65\x35\xa0\xaa\x05\x64\xf4\xac\xf6\x16\x14\x79\x42\x79\x4f\x72\x68\x9e\x5e\x7a\x02\xfd\x91\x57\x06\xfb\x30\x1b\xeb\xbc\x29\xfa\xb7\xeb\x06\x7d\x6b\x82\x6e\x3b\x77\xea\x99\x87\xae\xe7\xa5\x6f\x53\xf1\xd3\x72\xac\xb2\x84\x1f\xac\xc5\xf6\xf2\x92\xf9\x16\x00\xa0\xcd\x7c\x3c\x33\x92\xe5\x15\x3c\x43\x39\xf1\x1f\x65\x0e\x80\x7d\x5b\x95\xdb\x0d\x4b\x79\x9a\x0b\x49\x32\x91\x1e\x25\x4b\x1f\x16\x02\xac\xce\x33\x8e\x01\x1f\xb8\xe7\x94\x11\x1c\xa9\x0f\xda\xa3\xe2\x0e\xcc\xa9\x0f\xd6\xa3\xe3\x9e\x97\x4b\x1f\xa4\x87\xfe\x3c\x12\x1c\xeb\xde\x48\x92\xaf\x80\x6b\x75\x42\x49\x8e\x31\x9d\x80\xbc\xd8\x38\xda\xf3\x04\x10\x73\x4d\xf0\x4b\x3e\xe3\x3d\x05\x20\x1f\x8a\xbc\x66\xef\x9b\x87\x15\x4b\xf6\x86\xaa\xe4\x80\x4f\xf8\x84\xed\x8d\x53\xc9\x21\x5f\x21\x73\xbc\x37\x46\x65\x56\x6c\xb6\x8d\x67\x62\x39\xbf\x34\x26\x99\x02\x19\xde\x37\x9c\x85\xef\x82\x37\xf3\x85\x95\x97\xe0\xb6\xd1\x3e\x76\x6f\x64\xcb\x0b\xcd\x4d\xc1\xd9\xef\xa0\x3e\x67\xd3\xc6\x3e\x28\x5c\x80\x6c\xbd\xc9\x99\xce\xf5\x17\xf7\x41\x61\xeb\x98\xf3\xbd\xe4\xe4\xdd\xe2\x5f\xf2\xd6\x3d\x50\x58\x7c\x5f\xc1\xbe\x22\x7d\xe0\x8e\xf4\x4c\xb3\x7d\xea\x97\x03\xa3\x38\x38\xc5\xb1\xf9\x5e\x69\x29\x17\x66\x73\x6b\x07\xbc\x08\xc7\x3e\x4e\xcd\x2d\xa7\xb9\x36\xca\xa5\x75\xc0\x09\x8e\xcd\xe4\xd0\xba\xea\x94\xbd\xa0\xe7\xbe\x0d\x7b\xc9\x9a\xd8\xe4\xca\x3c\x10\x92\xf7\x23\xbc\x9e\x0d\xe5\xe7\xe3\xfc\x7c\x9b\xb3\x62\x9c\x2b\x02\x2e\xc8\x97\x23\x4f\x47\x7a\x1a\xda\x70\xea\x24\x50\x84\xdf\x86\xa0\x87\x00\xa5\xf9\x9d\xf3\xcc\xb9\x39\xfa\xe1\x40\x92\xd3\x95\x1c\xa6\x36\x94\x79\xb7\x30\xef\x12\x8e\x8a\x86\x55\x58\x19\x19\x9b\x74\xc2\xfa\x16\x50\x17\xde\xfd\xed\xdd\xce\xa2\x80\x97\x9c\xf8\xa8\x87\xd1\x80\xb5\x8f\x7d\xfb\x5d\xc0\x5b\x90\xfd\x30\xb1\xbd\xa3\xc7\x94\x54\x93\xdf\x72\x52\xe4\x49\x26\x7f\x88\x74\x71\x70\x89\x73\x8a\xa6\x89\x93\xca\x38\x98\xac\x7c\x3c\x9a\xac\x93\x48\xf7\x06\xce\x22\xf9\x83\xa4\xe3\xd1\xa3\x7e\x1d\xd2\xff\x6e\xdd\x94\xc0\xb8\xad\x04\x91\xe7\xf2\xe2\x2a\x01\xd8\x75\xb8\x17\x96\x20\xea\xba\xc4\x1c\x50\x5b\x56\xa4\x41\xa4\xaf\x04\x07\x94\x40\xee\x3e\x88\x0c\x36\x7f\x7f\x39\xfb\x99\xc9\x7e\x67\x38\xb4\x1e\x75\xbf\x08\x22\xeb\xaa\xb1\xbf\x2c\xbf\x6c\x04\x91\xbe\x72\xec\x2f\x91\xad\x82\x28\x3b\xb8\x7e\xbc\x7a\xf0\x8e\xe9\x2b\xc8\x61\x6b\x80\x0f\x33\x91\x79\x9f\x38\xac\xe8\x43\x4f\x49\x7d\x13\xd9\x5f\x07\x15\x0e\xdb\xd7\x90\xfd\xa5\xf3\xf2\x32\x88\x14\xbb\xbf\x1f\x5e\xf2\xfa\x41\x64\x72\xfd\xfb\x4b\xa2\xe8\x58\x33\xea\x87\xf4\x6d\xc9\xfb\xb6\x3c\x14\x5e\x09\x96\x0d\x7e\x7e\x7f\x39\x2d\xb4\x36\xef\x0d\xfb\x4b\x0a\x39\x35\xb9\x11\xec\x2f\x83\x62\x56\x7d\x73\x3b\x78\xcb\xa8\x0d\x73\x30\xf2\x73\x46\x38\x88\x08\x3f\x7c\xc8\x5c\x20\x33\xcc\xe7\x82\xb2\xc5\x76\x18\x52\x47\xb5\xc8\x56\xda\xeb\x34\x5e\x3f\xfc\xcd\xc7\x23\xf4\x9e\xfd\x16\x8e\x30\xf6\xca\x46\x3d\xf6\xcb\x9e\x0b\x8b\x7d\xf8\xfb\x8c\x8e\x0d\x73\x4b\x33\x9a\x5c\x44\xa2\xd3\x7b\xe2\xd2\x8b\xd0\xc6\x3a\x90\x3c\x6f\x52\xfa\xa3\x89\x75\xf4\xb4\x09\xaa\xe4\x2b\xd4\x7d\xa2\x40\xd4\x03\xb1\x82\xad\xef\x59\xc0\x2f\xc5\xea\xb3\x54\x37\x7c\x7c\xac\xad\x45\xaf\x92\x7a\x68\x57\x8c\x51\x0b\x9c\x0a\x68\x0c\x69\x1d\x87\x48\xf9\xdc\x09\xf2\xe4\xba\xe4\xd8\xe8\x54\xd7\x1a\x73\x19\x77\x99\xaa\xae\xfa\x9b\xbf\xb9\x21\xca\xab\x96\x2e\xab\x27\x86\x90\xea\x97\xc5\xc7\x85\xd3\x5b\xf4\x44\x2a\x18\xa8\x22\x6d\xaf\xcf\x06\x03\x5b\xfa\xd1\x5e\xbe\x03\xb9\x6f\x9e\xb7\x7c\xe2\xba\xcd\xcb\x94\xf1\xcc\xe5\x79\x49\xed\x78\x78\xfd\x4f\xbb\x9e\xf1\x0b\x4e\xcc\xed\x7a\xa7\x47\x14\xe1\x97\x44\x38\xc2\x0d\x8f\xf3\x04\xf7\x61\xa4\xcb\xb7\x4c\xc7\x63\x8b\x47\xb8\x24\x75\x7e\x3b\x74\x81\x75\x20\x1e\x42\xd5\xb5\x12\x32\x8a\xf9\xeb\xab\x58\xa4\xa0\x6a\x0c\xda\x32\xd1\x24\x30\x71\xc3\x83\x01\x9c\x7b\x82\x4e\x0f\x98\xf3\x95\x05\x04\xd3\xc3\x94\xb2\x98\xa6\x2c\x67\x0d\x1b\x28\x00\x23\xa1\x2c\xf8\x66\xd4\xd5\xc4\x71\xa0\xb0\x52\x69\x44\x77\x68\x40\xcb\x65\xd3\x0a\xd0\xa0\xce\x4d\xeb\x0b\x77\xaa\xd9\x58\x25\xb6\xa2\x65\xec\xa6\xf8\x7b\x73\x13\xb0\xa2\x61\x55\x30\xed\x6f\x54\xa1\x00\x51\xbb\xa6\x5e\xbd\xa8\x5c\x89\x8a\x91\xd4\xac\x9b\x87\xe2\x07\x4e\xfc\x01\x9d\xe4\xe8\xa7\xfb\x48\xbb\x68\x49\xb3\xcc\xcf\x43\xa8\x0a\x21\x1c\xb3\x43\xdd\xbd\xa8\xac\x9a\x64\x39\xc6\x04\xbf\x11\x31\xe8\xdb\xec\xb6\xbb\x93\x33\xe2\xee\xa4\xf6\xb8\x42\xa9\x45\x9e\x23\xd9\xfa\x5c\x08\xda\x4d\x12\x02\x06\x0b\xda\x61\x48\xdd\x54\xa0\x24\xf8\x38\xab\x37\x79\x72\x3d\xb9\xbb\xdb\x01\x56\xa0\xab\x05\x8d\xeb\x6d\x7b\x57\x7b\xdd\xab\x27\x72\x5a\x55\xfe\x3c\x6a\x92\x4b\xf4\xde\x2a\x78\x32\xe5\x21\xe4\x1b\xd4\xfe\xe0\x85\x78\xa5\x41\x84\xb5\x82\xca\x48\x56\xa4\xac\x61\xd5\x3a\x2b\x50\xa3\x22\xcd\x6a\xb0\xb8\x81\x48\x8c\x0b\x70\x90\x2b\x62\x2b\x06\x51\x90\x6c\x9b\x72\x55\x2e\xb7\x35\xc4\x0b\x04\x93\x0d\x0e\xb8\x2a\xab\x35\x6f\xff\x7a\xc3\x26\xba\xc3\x91\x68\x44\x84\x69\x92\x15\x8b\x4f\xa3\x5d\x95\xb6\xd7\x7b\x0a\xc4\x34\x04\xa3\x65\x61\xd0\x8c\x30\xe8\x7a\x41\x04\x8d\x06\x3d\x4c\x8c\xf2\xfd\xb4\xa8\x59\x25\x83\x49\x77\x57\xad\xfd\x08\x33\x19\x08\x7b\x6c\x74\x30\x3e\x3a\xd2\x30\xe6\x94\x85\x6d\xe4\x69\x9e\xb6\xa5\x83\x62\xab\x69\x87\xe6\x3f\x1b\x86\x63\x8e\xf4\x43\x95\xee\xb8\x00\x34\x0e\x77\x31\xb1\x07\xed\x3f\xa9\x76\x72\xb8\x42\x13\x2b\xb6\x6b\x56\xf1\x25\xba\x30\xdd\xc9\xfd\x76\x1b\xd7\xc9\xd0\x57\x49\x53\x81\xc4\xe7\xd5\x0e\xd3\xb2\xfa\x02\xc3\x8a\x5a\x2c\xc4\x7a\xb3\x6d\x88\x0a\xd4\x21\xce\x9c\xb0\xe8\x3a\x7b\x9f\x15\xfe\x01\x65\xec\x77\x13\xf8\xe6\x13\xa8\xaa\xfc\x96\xca\x1b\x0a\x75\x7e\xe4\x4b\xb6\x8f\xf5\xb1\xe9\xeb\xe7\x3d\xf4\xf5\x8b\x3e\xfa\xfa\x47\x83\xbe\x2a\x5c\x72\xe0\x3c\x6f\x66\x59\x0d\xde\x09\x1c\xc7\x50\x22\x5d\xc0\x3c\x2f\x0b\xd6\xe7\x19\x0a\x5f\x65\x11\xf7\xec\xd7\xd8\xb1\xcc\xe8\xf2\x43\x05\x8f\xab\x0f\x4d\xa7\x0e\xf6\xc2\x49\xaf\x27\xf2\x8d\x94\x6f\x7b\x69\xc7\xed\x7b\x23\xa5\xf9\xe2\x11\x0b\x3c\x9c\xc7\xd6\x12\x49\xcf\xe7\x40\x86\xdf\xb3\xba\x0b\x82\xe7\x44\xc2\x04\xdd\x81\x10\xe9\x91\x70\x3a\xe7\xe4\x8b\xf4\x48\xeb\x33\xbf\xee\x52\xfd\x14\xf9\xee\xc3\xe2\x9e\xc3\x32\x70\x25\xbc\x81\x3e\x07\x4b\x91\xe0\x3b\x08\xc1\xbe\x2f\x88\x02\x24\x94\x2c\x0d\xe6\x91\x58\x57\xd7\x81\x35\x78\x7c\x79\xaf\x95\x65\x77\xa6\x5a\xae\xe4\xbd\xf8\x47\xc4\x19\xb0\xc9\xae\xdb\xd0\x0e\xde\x34\x90\x11\x93\xd5\x82\xb4\x66\x9c\x27\x0b\x96\x07\x9a\x1f\xf3\x9f\x86\x00\xf5\x43\xd2\x5c\x29\xf7\x33\xf2\x64\x84\x01\x79\x73\xe4\x31\x07\x86\xeb\x18\x84\x4f\xe2\xe6\xd0\xf2\x5c\x20\x7c\xdb\x10\xc7\xfa\x22\x25\x08\x45\x61\xbe\x28\x3a\x17\xad\x67\x61\x91\x54\x36\x3a\xa0\xf0\xc2\xac\xb7\x79\x93\x6d\x72\x16\x84\xd4\x05\x03\x16\x3b\x3e\x96\xde\xf8\x55\x52\x24\x1a\xc7\xb1\xbd\x58\x0d\xc3\xf0\xeb\x93\x33\x23\x08\x85\xec\x70\xac\x0a\xb5\x2d\x9e\xaa\xe0\xea\x40\x75\xbf\xab\xab\x91\x3b\xa1\x13\xb9\xe7\x86\xb4\x0c\xae\xcb\x33\x09\x1d\x44\xd6\xcc\xa9\x7a\xfc\xb3\x63\x17\x47\xf3\x09\x55\x48\x05\x5f\x34\xb7\xb0\xa8\x47\xa0\x86\x6f\xd1\xc4\x34\xa8\x36\x75\x8d\x74\x1a\x74\x6a\xd8\x86\x91\x8b\x29\x7d\x43\xfe\x49\x42\x3b\x43\x56\xf5\xf4\x0d\x59\x17\xc7\x21\xab\x42\xfd\x43\x16\xdb\xf3\x90\x21\xeb\x1a\xe9\x90\x75\x6a\xd8\x4a\xef\x57\xd6\x43\x8f\x79\x62\xdc\x82\xca\x40\x71\x93\xce\x88\x24\x1f\xa5\xc1\xd5\x9b\xeb\xfd\x23\xf2\x26\x7e\x94\x8c\xe4\x26\xf1\x81\xa9\x0d\x14\x59\x08\xe5\x03\x76\x50\xd6\x5a\x91\xee\x32\x64\xcd\xb3\x86\xad\x95\x21\x71\x4f\x09\xce\xbe\x19\xd3\x7c\x2b\xd2\x4d\x26\x53\x72\xae\x9e\xbb\x8e\xc8\x72\x29\xb5\x2d\x28\xd6\xa6\x04\xea\x52\x9d\x14\x65\x71\xbd\x2e\xb7\x35\xb1\xda\x88\x52\xb6\x69\xae\x4e\xc5\x1b\x5b\x2d\x45\xfa\x35\x18\xb2\x08\x82\x2b\xb9\xe5\xa7\xc5\xaa\x8c\x67\x5f\x44\xc1\xd7\xf1\xe0\x6c\x7c\x3a\x3e\x0d\xe6\x53\x29\x47\xc1\x80\x99\xac\xba\x64\x43\x59\x95\xd3\x23\x65\x47\xcd\xeb\x8e\xf9\x7f\x37\x37\x3b\x34\xdd\x40\x0b\xd4\x38\x08\x22\x30\xee\x3c\x8b\xd0\xb8\xe8\xfc\xfd\xa6\x62\x75\xcd\x09\x2e\x34\x60\xa7\x12\x37\x24\x6a\x94\x9b\xaa\xbc\xac\x92\xf5\xd9\x50\x8c\x0c\x07\xe2\x6b\x64\xea\x18\xbf\xde\xfd\x0a\x97\x12\xf7\x75\x1c\x04\x5f\xdf\x0d\xa7\x08\x1c\xcb\xc3\xcb\x7a\x8f\xc3\x73\x4c\xb4\x85\xc7\xd8\xa6\x2a\xd7\x9b\x26\x88\x76\xe2\x20\x8c\x94\x44\x42\x7e\x3c\xc2\x63\x0f\xbe\x97\xf2\xf7\x0c\x2b\xc1\x4b\x24\x5f\xf1\xa7\x8f\xf9\x3a\xf3\xe3\x95\xff\xd7\x02\xf1\xc0\xce\xdc\xdc\x88\x4e\xc5\xf1\x69\xb8\x73\x86\x81\x99\x61\xeb\x1a\xf7\x7e\x75\x0f\x07\xf8\x75\xa0\x9c\x9a\x60\x7e\x6b\xcf\xdf\xe7\xee\xfc\x89\x59\xb3\xe6\x83\x25\xcb\x2b\xcf\x24\x5c\xa2\x86\xc1\x23\x79\xf8\x1c\x36\x19\x59\xf1\x96\x55\x35\x43\x5f\x47\x45\x59\x6e\xa2\x55\x81\x1f\xa2\x5b\xc3\x2f\x22\xf1\xeb\x0b\xec\xd9\xa7\x9c\x3f\x38\x65\xdd\x49\x0c\xc2\xd6\x99\xae\x2f\xcc\xe9\x72\x0a\xd9\x98\x3b\x74\x85\x52\xee\xf4\x01\x45\x91\x33\x27\x8e\xf1\x89\x3e\xcf\x81\xaa\x4e\x04\x71\x35\x26\x56\xc1\x3e\x7d\xac\xc0\x9e\x3e\x0e\xec\xf9\x96\x60\xa2\x65\x04\xc4\x8f\xdb\xe0\x65\x18\x3a\xd3\xf1\xe5\x47\x62\xcf\xf2\xb7\x46\x9b\x3f\x49\xb4\xf9\xd3\xef\x0a\x6d\xfe\xf4\x1b\xa3\x0d\x39\x89\x1c\xbc\xe9\x46\x91\x7e\xbc\xb8\x25\x2a\x98\x0b\x3c\x0b\xb2\x55\x30\xff\x68\x22\xb9\x7f\x81\xcf\xe4\x02\x9f\x7d\xfa\x05\x3e\x70\x88\xb8\x18\xa0\x6a\x85\x8c\xc4\x07\x8c\x55\x0e\xef\x4b\x39\xbc\x2f\xc5\xf0\xec\xf1\x7f\x2e\x01\x3e\xff\xf4\xe3\x37\x4f\x8e\xd0\xcb\xf2\x69\x36\xad\x5f\x9e\x4a\x64\xa8\x54\xb4\x0a\xf2\xd4\x28\xa8\xb3\x7f\xb1\x60\xae\xf8\x41\xbf\x1c\x55\x56\x21\x3e\x25\xf6\x82\x1f\x1a\xc5\x54\xe2\x27\x06\xca\x77\x59\xea\x37\xec\x9a\xf8\xf7\x51\x46\xeb\xc2\x6a\x3c\x8e\xe3\xfb\x8a\xe9\xc6\x18\xf7\x5d\xcc\xbf\xc3\xf1\xeb\xf0\x4d\xff\x10\x1d\xfb\x79\xfc\xe0\x5e\x14\xe8\x03\x58\x55\xf3\x40\x57\xa3\xba\x3d\x0e\x46\x9a\x8d\x9f\x78\x00\x02\x83\xe5\xa7\xe9\x11\x6e\x31\x1c\xb8\xc5\x08\x93\x53\xc4\xea\xb1\x93\xa3\xf0\x17\x2b\x52\x07\xd3\xc4\xbc\x0b\x44\xe6\x81\xdf\x79\xbd\xbe\x94\xd5\x39\x93\xa6\x37\x0a\xf2\xd0\x66\x85\xda\x43\xf6\x9e\x4b\xfa\xcd\xcd\x6c\x3e\x95\x2e\x03\x45\xaa\xbe\xb6\x71\x5e\x9e\xdc\x56\xa1\x02\x9e\x16\xa9\x7e\xa9\xab\xbb\xd9\x3e\xbf\x82\xd6\xc2\xf3\xa1\x10\x54\x84\x47\x71\x0c\xbf\xc2\x9d\x09\x4b\xdd\xc1\xee\xf0\x54\x85\xff\x15\x6a\x2a\xff\x6e\x61\xbb\xa7\x25\x35\x2c\xdc\x81\xd0\x7d\xed\x04\xd0\x2c\x68\x20\x82\x43\x7c\xe4\x0c\x8d\xff\x02\x1a\x42\x61\xa4\xcf\x8a\x09\x15\x1e\x45\x17\x4b\xc7\xa5\xaa\x21\xcc\xa0\x12\x0c\x14\xae\x60\x81\xef\x45\xfa\x50\x3a\xc2\x24\x79\xaf\xb2\xe2\x12\x72\x5a\xbd\x23\x7d\x57\x6f\x8d\xf7\xd8\x4b\xfb\xbe\xed\x13\xc0\x74\x4a\x5d\x68\x47\xf9\xbd\x5b\x08\x36\xb5\x70\x25\xa4\x0f\x13\xe4\xfa\x29\x96\x67\xa6\x92\xe6\xca\xb9\x74\x2b\xc4\x49\xce\x20\xfc\xa3\x77\xe1\xf4\x4c\x08\x29\x84\x6f\x1a\xc4\xd5\xff\x16\x92\x29\xbc\xb0\xe8\x1c\xac\x81\x08\x3a\x3e\x8c\x46\x29\x71\x19\xfa\xff\xf8\x58\x52\xa5\x17\x9f\xaf\x14\x40\x1f\x49\xb9\x95\x68\x83\x2f\x89\x5c\x63\xd1\x99\x07\x12\x73\x57\x59\x41\xe8\x49\xb9\xf8\xc5\x24\xca\x71\x1c\x0f\xcd\x1e\x96\x8b\x5f\x88\x6c\x64\xc2\x4b\xb4\x21\xd0\x31\x14\x0b\xf2\xd5\xa7\x0b\xaf\x31\x83\x2f\x0f\xbf\xe9\x5d\x5e\xb2\xca\x75\x31\x7c\x08\x2a\xaa\x13\xc2\x5d\x95\x29\x62\xe3\xf3\xb2\x60\x06\x32\x8a\x3e\xd9\x28\x33\xc4\xb8\xa8\xa2\x80\x74\xf0\xa6\x25\x9e\x14\x90\x6e\xba\x61\xd8\x46\xc6\xfe\xf3\x0f\x81\xa5\x4f\xf9\x91\x1c\xcb\x07\xb9\xd9\xe9\x7c\x6c\xe4\x44\x7d\x88\x87\x87\x0c\x15\x7f\x21\x63\x87\x83\x14\x70\x37\x37\xf0\x76\xb8\x54\x04\x4e\x78\x13\x56\x02\xb0\x6c\x35\xc4\x72\xc7\xc7\x66\xa7\x80\x11\xf1\x6e\x52\xbe\x8a\x6a\x57\xaa\xf2\x12\x7d\x44\xf9\x93\xf8\xac\xf5\x96\x96\x28\xa5\x7c\xb3\x1b\xc5\x42\x3d\x73\xdf\x2b\xd6\xc3\x9c\x3b\x29\xff\x16\xb3\x26\x36\xd5\x44\xc9\xd2\x7b\x66\x26\x2a\x57\xab\x9a\x35\x31\x7e\x3f\x38\x9b\x9c\xf6\xce\xf0\x01\x34\x4f\xce\x33\x9d\x4f\x43\x67\xc2\x18\x1d\xd1\x95\x30\x7c\x0e\x9b\x11\xfb\x80\x4f\x3b\xc1\xae\xb6\xe1\xb8\x29\x91\x78\x22\x62\x17\xec\xdd\x2b\x7b\x9b\x8a\xb9\xac\xed\xc9\x64\x35\xf4\xd1\x47\x7d\x25\xdd\xd1\xe2\xee\xd3\x88\x0f\x52\x7f\x6b\xc7\xd3\xb4\x49\x41\x63\xfd\x78\x61\xc0\xb5\x6d\xd4\x49\x84\xed\x25\x65\x39\x71\x2c\xad\x5e\xc1\x61\x7e\xf9\x19\x2f\xa6\xf6\x43\xde\x08\xbc\x24\x10\x11\x5c\xd2\x38\x29\xf9\x97\x7b\x44\x4f\xd3\xe4\xe4\xac\x7f\x97\x99\x98\x2f\x6b\x1e\xc5\x67\x1c\x0d\x78\xcf\x59\x6e\x6e\xe8\xd8\x84\xf4\xcf\x51\x17\xe2\x7f\xfc\xd8\x35\x1a\x1a\x83\x67\xb5\x7f\xf8\xb3\x93\xb3\xf9\xad\x36\x93\x7f\x6b\x06\x61\x94\xa4\xbf\x6c\xeb\x06\x23\x66\xdb\x0f\x59\x20\x89\xa0\x7b\x41\x02\xc7\x7a\x37\x7c\x7d\x72\xf6\xc0\xd9\x1b\x93\x93\xb3\x29\x21\xdc\x2c\x8d\xcd\x47\x1c\x35\x5a\xd5\x3c\xbc\xe0\x70\x56\xe8\x40\x65\x0f\x5b\x89\xc3\x50\xfb\x30\xce\xa8\x7e\x0d\x91\xa5\x70\x7b\xdf\xad\x5f\x21\x6c\x46\xa8\x1e\x94\x69\x4d\xe2\xe6\xf8\x6c\x4a\xbc\x50\x3e\xcb\x92\x83\xf4\x38\x88\xd2\xe4\x01\x8a\x54\x7e\x8f\xa9\xb7\x76\x17\x62\x69\x46\x7c\x0a\x05\x88\x0f\xd5\xbf\xd2\x9a\xb3\x07\xe8\x57\xfa\x2c\x3d\x3d\x2a\x96\xde\xd7\xf7\x2f\xe8\xe3\xfb\x3e\x75\x5b\xf9\xcc\x41\x1a\x8d\x7c\x4f\x1e\xbb\x9d\x54\xa5\x6b\x5b\xef\x0b\x07\xcf\x3e\x81\xe5\x26\xea\x5c\x5a\x5d\xde\x27\x6b\xa8\xca\x77\x35\x5c\x70\x40\x57\x46\x08\x16\x14\x05\x39\x07\x5f\x3c\xea\xf3\x55\x93\xc0\x3a\xbf\xab\x92\x4d\x30\x8f\x78\x59\x19\x6d\x2a\x17\xbf\x7c\xca\x4c\xfb\x98\xf3\x2e\x06\xfc\x33\x79\xaa\x7c\x36\x04\x62\xfd\x19\xcb\x8f\x8f\x25\xe7\xfb\x19\xcb\x39\x0b\x37\x0c\xc3\x9d\xfc\x89\xec\x1d\x67\x3f\x7f\x0b\xea\xe0\x53\x0a\xf3\xf8\xec\xde\xa7\xd2\xfc\xdb\x29\x30\x7e\xd8\x96\xfc\x3d\x6d\xbf\x3e\xf5\x47\xff\xd6\xf4\xec\xb7\xae\xad\xf9\xc5\x41\x61\xd7\x6e\xbb\xe9\x2c\x7d\x4a\x3e\xbb\x5d\xba\x94\xb0\xfb\x70\xd5\x6f\xa5\x4d\xa9\x74\x49\xb2\x7f\x31\xd0\x34\x68\x1a\x56\x15\x7a\x37\xae\x81\x8e\xae\x93\xf7\x41\x14\x24\xcb\x25\xdb\x34\x42\xe0\xc7\x11\x22\x67\x8d\x54\xad\xac\x93\xb7\x4c\x88\xff\x12\xe9\x89\x8b\x7f\xb0\x62\x29\x5a\xe2\x5f\x6b\x70\x82\x26\x3e\x8a\xf2\x6d\x92\x67\x29\xea\x6e\xf2\x84\x26\xa9\x10\x33\xaf\x58\x76\x79\xd5\x80\x86\xe7\x66\xdb\xac\xcb\x94\x43\xe4\x59\xcd\x93\x88\x7c\xb2\x6e\xd8\x86\x13\x84\x2c\x6d\xae\x82\xb9\x90\x11\x06\x81\x50\xe6\x84\xd9\x8a\xf8\xb8\x90\x38\x88\xa1\xe1\xc7\x3a\x93\x3f\x92\xf7\xf0\xe3\x36\x9b\xab\x23\x42\xf1\x6d\xb7\x97\x4f\x89\x4f\x2a\xff\x41\x6a\x7d\x0f\x67\xe4\x02\x67\xf4\x7f\xe2\xc6\xfa\x9e\x8f\xc3\xd1\x98\x83\x54\xdc\x4f\x30\xc0\x87\x48\xe0\xf7\xef\x2b\x7b\x0b\x42\x45\xc2\x75\xfe\xd0\x53\x57\xb4\x53\x48\xe1\xdb\x03\x70\x89\xb9\x2a\x73\x74\x6a\x47\xc4\xdd\xeb\xe4\xbd\xb8\xbf\x18\xa2\xef\x8a\x25\x69\x59\xe4\xd7\x1d\x32\x6f\xcd\x8a\x57\xca\x1b\x5d\xbd\x61\x79\x0e\x3a\xb2\xa6\xcc\xbc\xc9\x9a\x5c\xee\x9d\x65\xb2\xc9\x1a\xb0\xad\x56\x7b\xab\xaa\x50\x5b\x80\xf4\x10\xf1\xd5\x12\xa1\xab\x8e\x62\xee\x81\x47\x0f\x74\xfc\xc5\xd6\x3c\x72\x18\x39\x6c\xd4\x65\xa2\x9f\x31\xdd\x57\x64\x93\xd4\xcd\xed\x4a\x2c\x6f\xd9\x29\x41\xe0\x6e\x51\xe2\x0d\xbb\xfe\x71\x43\x4b\x64\x45\xc3\xaa\x4d\xc5\x9a\xef\xd8\x35\x18\x4b\xd4\x61\x1b\x25\xe4\xed\x41\xd8\x50\x4c\x84\x09\x45\xb4\xd8\x2e\x16\x39\xab\x95\xe2\xb7\x5d\x5c\x2f\x00\x7b\x0b\x77\x7b\x74\xa9\xb5\xa1\xa6\xd4\xe3\xef\xce\xff\xf7\xc5\xf9\x4f\xe7\xcf\x5f\xbf\x42\x8f\x5b\xe8\x1d\x72\x9d\x6c\x66\x50\x68\xfc\x86\x5d\x3f\x2a\x53\x36\x9f\xf6\x8c\x0a\x19\x13\x2c\x6a\xc8\x00\x66\x98\x36\x17\x1d\xe0\xf7\x44\x6f\x05\x7e\x4d\x6f\x71\x24\x28\x3d\x6f\x64\x74\xf8\xad\x87\x73\x2b\xcf\xd9\xbb\x3c\x2b\x98\x33\xc8\x9a\x15\x29\xee\xbd\xa1\x9c\x28\xa8\x0e\xb3\xa7\x34\x1b\x2b\x3a\x29\xb0\x26\x03\xae\x8d\x96\x49\xb1\x64\x79\x7f\xf5\xf0\xb8\x7a\x02\x6f\xab\x56\x69\xc0\xec\xa7\x45\x6f\x71\x80\x39\xe1\x44\xd7\x2d\xfa\x62\xdb\x1c\x50\xb6\x54\x38\x27\x0b\xbf\x61\xd7\x3f\xf0\xee\xf4\x16\x7e\xc3\xae\x7d\x9d\x6e\xc3\xa9\x1f\x33\xe2\xdd\xd9\xe7\x93\xc0\x98\xf6\x20\xba\xff\xa7\x49\x80\x73\x14\xb4\x5a\x79\x86\x34\x03\xb5\x82\xed\x1e\xe7\xdc\x22\x82\x83\x89\xbe\xe2\xeb\x2c\xb0\xd4\x8b\x68\x72\x20\x10\xde\x90\x4e\x63\x0e\x91\x83\x96\x45\x1c\xc7\xaa\x86\x9b\x1b\xf8\x0e\xe4\x3c\x04\xc7\xc7\x2a\x4f\xa4\x8b\xa1\x87\xbb\xb7\xa8\x34\xa6\xe7\x45\x32\x0c\x82\x85\xb6\xf3\xc9\x80\x00\x80\xb7\x8e\x45\x44\xab\x7a\x1c\xf0\x5c\xa0\xbb\x2b\x76\x6a\x10\x86\x3b\xdc\x55\x75\x53\x6e\x7e\xa8\xca\x4d\x72\x99\x20\xda\xb7\x9d\xae\x57\xc9\x92\xf4\x71\x06\xc0\x64\xf4\x44\x8a\xee\x8f\xfb\xbc\xdf\xb4\xa1\x87\xa9\xb0\x1d\xa3\x0a\x5b\x88\xaa\x2a\xed\x4a\x7c\x86\x02\x59\x7d\xc1\xd6\x9b\xe6\xfa\xf7\x6a\x26\xf0\xd1\x91\x9f\x57\x6b\x97\x2d\x59\xad\x9b\xbd\x46\x02\x1e\xae\x7f\x9f\xd1\xa1\x8f\x43\xfa\x82\x70\x48\x59\xfd\x6d\x5e\x2e\x92\xdc\xeb\xa4\x91\x66\xea\xce\x9d\xf3\x65\xdc\x67\x09\xf0\xf4\xd5\xc5\x37\x4f\x9f\x3f\x7e\xfa\xfc\x5b\xc7\x18\x40\x67\xb9\xfe\xf5\xa2\x4e\x4f\x49\x59\x7d\xce\x71\x62\x9f\xdd\x40\x9d\x67\x4b\x16\xcf\xe6\x63\xf8\x11\x49\x97\xf2\x9d\x2a\xf2\xca\x55\x91\xa2\x57\x86\x37\x99\x61\x55\x96\x0d\xe7\xcf\xaf\x88\xda\xd1\x1b\x19\x4e\x8c\x27\x1d\x1f\x83\x4e\x83\x4c\xbb\xb9\xd9\x01\xc9\xe5\x1f\x51\x56\x8b\xb0\x5c\x53\x91\x12\xf3\x9a\xc6\xf5\x26\xcf\x9a\x61\x30\x0e\xa2\xb3\x70\x76\x0a\x71\xa0\x64\x71\x4f\x50\x39\x9e\x1e\x86\x3b\xde\x91\x58\x82\xcd\xc4\x8f\xf9\x54\x35\x11\x37\xd5\x96\x81\xe8\x36\x01\xed\x02\x59\x72\x07\xdf\x41\x80\xe2\x6d\xf8\xc0\x4e\x6c\x17\x75\x53\xc9\x06\x84\x56\xc2\xe8\x2c\x6c\x85\x2a\x06\x34\x38\x51\xc3\x9f\xc0\x1c\xa8\xd6\x26\xea\x17\x51\x40\x32\x3c\x1e\x91\x99\x33\x9e\x0d\x40\x51\x53\xa4\x1c\x1f\x1b\x4a\xfe\x6a\xe6\x53\xd7\xad\x8f\xbd\x10\x48\x70\xf9\x78\xcd\xe8\x56\x63\x15\xdc\xca\x17\xf1\x2b\xd9\xd4\x27\xc2\x1f\x01\x3e\xe0\x52\x0c\x87\x99\x03\xf7\xfd\xf2\x64\xc1\xaa\xb1\x00\xb4\x2d\x1e\x09\x34\x84\xd9\xe5\x31\x74\xd2\x4a\xc3\x72\x42\xbd\x9e\x2f\xa2\xa7\xcc\x74\x63\x0c\x58\x17\x9c\xea\xa6\xd4\x04\x84\xea\xa1\x93\xfa\x7a\x3f\x3e\xe6\x00\x47\x71\x4c\x3b\x7d\x7c\x7c\xeb\x01\xb6\x86\x4e\x8a\x5a\x5b\xed\xa4\xaa\x6b\x61\x2b\x56\x6f\x73\xcb\xed\x95\x07\x76\x0a\x41\x83\x01\x34\x8e\x39\x13\x7b\x73\xa3\x3e\xd5\x60\x38\xcb\x08\x69\x02\x6f\x07\x10\x7f\x01\xd3\x68\x20\x44\xb2\x91\x5f\x25\x2b\x86\xf1\x0a\x42\x55\x5a\x44\x43\xc4\x2f\x7c\xf1\xa4\x16\xbd\x63\x15\xfd\x40\x95\x20\x15\xa2\xb5\x8d\xa3\x2d\x27\x2b\x53\xf1\xfb\xf8\xa7\x61\xe6\xeb\x77\xed\xa5\x66\xd2\xf0\x32\xa6\xac\x55\x30\xa4\x84\x33\xa3\x1c\x32\x15\xee\xc9\x66\x73\xcb\x2a\x19\x03\x9b\x42\x49\xc8\x99\xea\x50\xd2\xa7\x51\x1e\x1b\x51\x2a\xa6\xd9\x57\x39\xc6\x92\x86\x64\x91\x39\xcb\xe6\x53\x0c\x35\xce\xab\xe2\x5f\x22\xa6\x1c\x67\x8c\x9e\x3e\x06\x4b\x70\xda\x07\xd4\x18\x31\x97\xd8\x18\x81\x1a\x40\x28\xed\x49\xdc\xe2\x00\xa8\x11\xcd\x04\x31\x66\xb2\xcf\x3d\x9b\x3d\x9f\x7f\x4d\xea\x2b\xd5\x17\x30\xe1\xf6\xce\x25\xb8\x84\xdb\xb5\x9d\x86\xf5\xc6\x3c\x8a\x08\xa0\x10\xd6\x03\xf8\x37\xc0\x9a\xfe\xb8\x9f\x64\x3a\xdf\xb0\xeb\xee\x09\xe5\x1d\x01\x88\xd8\x3f\x9d\x57\x32\xdf\xb2\xb2\xf7\x95\x17\xbf\x9c\x29\xe5\x30\xbe\x09\x75\xfc\xe2\x69\x12\xee\x7a\xb2\x42\xaa\x01\xc3\x37\x8e\x6a\x35\x14\xe5\x11\xcf\x13\x6c\xae\xc7\x69\x7e\x38\x0b\x8c\x0a\x82\x39\xbc\x83\x02\x93\x08\xf7\x83\x38\x08\x8c\x68\x0d\x4a\x85\x6e\x66\x2b\xd3\x9d\x9c\x51\x66\xc8\xf4\xcd\x37\xa4\x47\xcc\x58\x69\x02\x83\x77\x10\x4d\x4e\xaf\xd4\x90\x88\x79\x3f\x0d\x3a\x03\xec\x04\x2a\x64\xaa\xd6\xa3\x33\x8e\xe6\xc0\x0d\x05\xff\xf5\x17\x42\x8c\x70\x10\x93\xc1\xa3\x72\x9b\xa7\x83\xa2\x6c\x06\xab\xac\x48\x07\x92\x61\x1e\xdc\xfd\xaf\xbf\xdc\x1d\x94\x85\x08\xb6\x38\xf8\xaf\xbf\x8c\x03\xf2\x7e\x38\x16\x9c\x06\x9f\x02\xa7\xf3\x6d\x73\x55\x95\xef\x06\x2a\x8a\x04\x30\x63\xc3\xd5\xba\x19\xe2\xc4\xcd\xe0\x7a\x01\x14\x97\xf7\x7b\x1e\x9a\x2e\x08\x7c\x8e\x9d\x7d\x8e\x9c\x15\x42\x74\xf9\x37\xfb\x37\x63\xc5\xef\x1c\x07\x88\xe9\x9c\xd4\xa6\x36\x66\x95\xb8\x88\x10\xa7\x2c\x5d\x94\x4e\x8f\xd9\x9d\x1e\xb2\x09\xf1\x73\x9c\x61\xa2\x87\xa2\x55\x21\x0c\x54\x74\xc6\xc3\xea\xb2\x8e\x3b\xc6\x80\x2e\xe5\x9e\x14\xb6\x47\x4e\x3a\x7c\xab\xaa\xbd\x0e\xa9\xa0\x1f\xa2\xde\xd0\x22\x43\x87\xb9\xf5\x54\xc3\xb4\x7a\x05\xd1\xea\x39\xea\xf9\x6e\x0b\xe1\xce\xeb\xb3\x71\x1f\x22\xf6\x45\x60\x08\x67\x81\xaf\x4e\x81\x9b\xf2\x3e\xd2\x7c\xc7\xae\x3b\x27\xd8\x26\xb1\xe2\x89\x4f\xdb\xc4\xfb\x0b\x9e\x46\x27\x67\x61\x54\x6c\xd7\x3f\x68\x40\x5d\x46\xa0\x7e\x74\xd0\xee\xa0\x7c\xa9\xae\x6c\x86\x6a\xdb\x06\xa1\x11\x87\x23\x6c\x96\xac\x16\x5e\x46\x1f\x90\xfe\x99\x0c\xc8\x59\x38\x31\x13\x5c\x6f\x2a\x40\xcb\xd4\xe6\x53\x7a\xe4\x0a\x48\x26\x44\xcb\x6d\x55\xb1\xa2\x11\xba\xeb\xb1\x4c\x47\xc7\x56\xfc\x97\x18\xcf\x03\xf9\x3d\x3b\x9d\x4f\x70\x5f\x55\x6c\x95\xbd\xe7\x6c\xee\x93\xb2\x7a\x6c\x2c\x49\x00\xae\xe8\xa2\x9c\x15\xd0\x35\xa1\x93\x0a\xa3\x12\xbf\x25\x65\x26\x73\x84\xda\x89\xbe\x65\xa7\x01\x1b\x4d\x70\xed\xd5\xfd\x85\x58\x11\x60\x18\x8c\x94\x5d\x0b\xec\x85\xee\x88\xc1\x61\xe8\xbb\xf1\xb8\x61\x75\x43\xc0\xc2\x70\x47\xeb\x99\xe9\x1c\xbc\xea\x0e\x4f\xa3\x93\x3f\x85\x82\x1b\xd0\x99\x73\x0c\xeb\xfb\x0e\xa2\xec\x99\x0b\x8f\xb6\x6a\x1b\x23\x89\x77\x2d\x2f\x97\xf1\xe9\x34\x2f\x97\x5f\x19\x78\x37\x1d\x8d\xf2\x72\x29\x54\xf8\x09\x0e\x22\x4f\xa7\xbe\x67\x79\xb9\xc4\x30\x66\xc8\x04\xf1\x4f\xc5\xfc\xbc\xa5\x71\x21\xa0\x37\xd6\x2d\xcf\x5c\xff\xc8\xaa\x16\xaf\x7e\x53\x1f\x22\x8b\x88\xe6\x46\x4e\x38\x75\x86\xed\x05\x53\xee\x8b\x4c\x8c\x0f\x77\xdd\x0d\xed\xf0\x4e\x6c\x76\xaf\x15\x35\xf5\xf4\x6f\x9b\xe7\x61\x0b\x91\x9b\xed\xb6\x64\x98\x6e\x9f\x6f\x5f\xa4\xbf\xab\xc2\xbb\x85\x35\x7f\xf8\x56\x78\xbe\x07\x7a\xc7\x39\x04\x1f\xf6\x62\x2c\x5d\xf8\xaf\xe3\x32\x14\x19\x7c\xc8\x54\xd6\x68\x23\x7b\x6c\x69\x2b\x24\xfc\x78\x99\xcd\xe9\xbe\x02\x74\x22\xdf\x1c\xd5\x29\x12\x23\x11\xa7\x29\x36\x73\x4d\xf2\x28\x93\x2d\xf7\x6b\x3f\xf6\x18\xfb\x85\x7c\x48\x3c\x52\x23\x43\xa9\x88\xa8\x13\xef\xdd\x46\xde\x4b\x7e\x6d\x57\xf9\x70\x61\x87\x6d\x46\xeb\x8c\xad\xe9\x41\x4a\x29\xab\x09\xdb\x03\x76\x96\x3b\x2a\xb2\xcc\x80\x61\x42\x35\x0f\xa0\xc2\xdd\xc7\xf4\x9f\xaf\x96\xbd\x19\x7c\xfd\x16\x28\xad\xc1\xed\x9d\xde\xb6\x3a\xcf\x8a\x12\x37\x58\x15\x82\x7f\xb0\x16\x86\x97\x08\xdb\x29\x30\x62\x18\x54\xf6\xd1\x55\x96\xa7\xba\xd5\x83\x10\xe7\x70\xbc\xd9\x47\x06\x3e\x00\x79\xc2\x56\xaf\x28\x3f\x59\x62\xb7\x0d\x71\xf1\xe6\xcb\x9d\xb3\xc2\x59\x64\xa7\x00\xae\x30\x4c\x8a\x64\x86\x5e\x48\x0d\x21\x63\xf1\x22\x63\xa9\x23\x39\x6b\xea\xc7\xb8\x62\x15\x3f\xfe\xaa\xb0\x55\x64\xf8\x74\x7e\x84\x44\xf8\xe6\xc6\x4b\x9e\x94\x55\xd2\xa9\xa1\x95\xaa\x61\xfd\x48\x79\x3a\x8f\x14\x82\x69\x80\xb1\x12\xfb\xd0\x44\xc0\x4b\xd4\x3a\x07\x51\xae\x14\x47\xf5\x9c\xdc\x1c\x62\x14\x8c\x83\xd6\x94\x6c\x18\x1c\x97\x23\xe0\xe8\x98\x41\xd1\xcd\x1e\x46\x61\x64\xd4\x3b\xcb\xe6\xbd\x53\xdb\x8a\x0b\xc2\x45\x95\xbc\x7b\x22\x48\x61\xbc\x2a\x4c\x0f\x71\x5a\x80\xe6\x27\xec\xf2\xb6\xbf\x8f\xb6\x1b\x14\xd6\xe5\xaf\xfa\x79\x0e\xc1\xcf\xf5\x30\x70\x8a\x3f\x52\x8c\x90\xfc\xf1\xfa\x7a\xc3\xfe\x2d\x24\xdd\x25\xa8\x7e\xb9\x48\xf7\xbe\x54\xe7\xa0\xb9\x31\x7b\xd0\xbd\x73\x6f\x76\x13\x60\x3a\x2f\xb1\xe6\x70\x28\x61\x7e\x4d\xc5\x3d\x9a\x38\x9a\xc3\xe9\xdb\xd0\x96\x0c\xcd\xa1\xbd\xd7\x52\xa6\x7c\x08\xe5\x35\x48\x2e\x71\x86\x28\x3c\x39\xd4\x1b\xb6\x44\xec\x6a\x62\xfb\xb1\x04\x33\xa7\xcd\x38\xab\x5f\x97\x1b\x7c\x60\x90\x4f\xf9\x96\x63\x43\x3b\xf0\x03\xcd\xed\x73\xd6\x4f\xe1\xf6\x05\x87\x30\xe4\x18\x46\x40\x2c\x33\xd4\x02\x85\xbb\x45\x00\x85\xbe\xa7\x54\x27\xe0\x63\xcf\xb3\xea\x47\x3d\x9c\xf6\x68\x63\x99\x7e\xdb\xfa\x1f\x6f\x45\x65\x79\xd2\x08\x05\xa0\xfd\xce\xde\xf6\x38\xaa\x33\x9d\xbc\x75\xba\xa1\x43\xe0\x6a\x5b\x5c\xe4\x65\xb9\xb1\x92\xa5\xbe\xeb\x9e\xc7\x62\xac\x56\x0c\xec\x97\x5f\xb7\xac\xba\xde\x17\xd7\x53\xce\xc6\x1b\x76\xed\x0d\xc1\xb8\x27\xbc\xe2\xef\xf1\x91\xf9\x37\xf0\x45\x67\x06\x5a\xfa\x54\x61\x13\x3f\xfa\x35\xbc\xef\xc5\xfb\x37\xf4\x73\x07\xf4\xd0\x79\xe2\x86\x54\xef\xa3\xfc\x97\xe4\x51\xbe\xbc\x40\x45\x3e\xe7\x2d\x1b\x93\x6f\xe1\xd7\xae\xcf\xa9\x9f\x27\xd8\x98\x74\x12\xe7\x78\xb8\x13\x19\x7e\x0f\x7e\xe0\xe3\x4e\xbd\x9c\x57\xdb\xc2\x71\x6a\xe7\xc4\x80\x64\xeb\xf2\x2d\x7b\xe1\x75\x98\x07\x61\x20\x8d\xfc\x7e\xcd\x01\x8e\x5b\xae\xea\x00\xec\xc9\x6f\xec\x48\x7d\x00\xab\x42\xf5\xfd\xf2\x37\xbe\xd9\xf7\x46\xf1\xf2\x79\x19\xfc\xa3\xe5\x65\xd0\x38\x12\x7c\x51\x16\x39\x7e\xdb\x61\x16\x39\xf9\xd8\x1b\xed\x6b\x6f\xc0\xa8\xb3\x3f\x7f\x54\xc0\x28\x28\xde\xa9\x06\xd1\x1d\x55\x13\x06\xe4\x86\xd5\xec\x0e\x1d\x09\x05\xdc\xd8\x91\x1d\x51\x29\x7d\xf3\x75\xb9\xcd\xd2\x27\xa5\x1b\xd9\x51\xa4\x63\x08\xaf\xeb\x0d\x7b\xb1\x72\x83\x7a\x42\xf2\xc1\x2a\x2c\xfa\x75\xd7\x01\xd3\x59\x5a\xc6\xca\xde\x67\x75\x53\x0b\xc3\x07\x71\x9f\x31\x8d\x5d\xe1\x76\xf3\xf7\xac\xb9\xea\x0c\xd0\x43\x9c\x6c\x99\x9a\xab\xd2\x62\xad\x2a\xf3\x9c\x55\x53\x22\x21\x27\x3a\xad\x91\x92\xc0\x86\x53\x43\x67\x04\x60\x24\x9f\xf4\x98\xaa\x8e\x50\x38\x50\x4e\x33\x40\xff\xca\xb9\x7a\x92\x4b\xa1\x01\x17\x3a\xa1\x15\x2a\xe8\x4e\x77\x54\x4f\x46\x85\xc2\x69\x06\xfb\x5d\x4a\x63\xa1\x80\x95\xc8\x19\x5f\xb3\x5e\x29\xd8\x66\x6f\xb3\x72\x5b\xdb\x65\x69\xe2\x54\x17\x8c\x1b\x23\x62\x82\xe5\xb6\x3f\xd0\x80\x93\x60\x64\x35\x27\x75\xac\x77\xe8\x3d\xed\x91\x06\xb5\x9a\x8b\x50\x65\xdd\x4e\x6e\xa5\x3f\xc7\x4b\x56\xb0\x2a\x69\xd0\xf7\x81\xe8\x16\x99\x11\x7e\xaf\xb1\x06\xaf\xcc\xab\x1b\xda\x45\xb4\x04\xc6\xdf\xd4\x8b\xe4\x73\xb9\x37\x2b\x7e\x5d\xd4\xe2\x33\xa1\x51\xb0\xd3\xa5\xb0\xc6\x75\x99\xb2\x3c\x88\x44\xf6\x94\xb8\x66\x44\xa8\x56\x2a\xa3\xd0\x95\x05\x54\x40\x3a\x3a\x66\xef\x37\x49\x91\x96\x23\xb1\x1d\x87\xb4\x5b\x4a\x93\xc8\x2c\x3a\xa7\x23\x56\x24\x5b\xa9\x27\x45\x26\xf4\x28\x18\x8b\x4e\x12\x54\x53\x75\x43\x57\xcc\x02\x2d\x5a\x55\x5b\x93\xe8\x69\x87\x20\xba\x51\x77\xdb\x46\xef\xb2\x3c\x7f\xcc\xea\xa6\x2a\xaf\xbb\xf5\xc9\xb3\xd5\xb0\x73\x51\x25\xac\x27\x6b\x9c\x62\xc5\xa0\x7d\x49\xde\x6c\xf8\x09\xa5\x6e\x5f\x2a\x0c\xbf\x35\x90\xa8\xbe\x2a\xb7\x79\x2a\x2c\x64\x22\x6b\xcd\xa3\xe5\x55\x96\x93\xeb\xa4\xab\x0d\x85\x6f\x2f\xab\x42\x7d\xaf\x0a\xe9\xb8\x47\x25\x89\x6f\xfb\x41\x45\xdf\x57\x23\xc9\x64\x47\x19\xee\x79\xf3\x41\x85\x8f\xfc\xe6\xe6\x5d\x56\xa4\xe5\xbb\xa9\x4f\xb8\xd3\x23\x85\xbf\x16\x62\xd3\x6c\x35\x0c\x44\xd4\x96\x38\x86\x3b\x70\xb9\x02\xdd\xee\x50\xcb\xd0\x8b\x3a\x4b\x19\x78\x0a\x09\x77\xca\x10\x90\xac\xd6\xbb\xab\x2c\x67\xa0\x0a\x3b\xbe\x10\x57\x54\x7c\xbb\x83\x81\x39\xe9\x6d\xb5\x2d\xc6\x65\xb1\x64\x42\x7b\x56\x4a\x61\x82\xb0\x35\x82\x86\xca\x97\xa5\xc8\xab\x8c\xd4\x35\x2c\x72\x79\x86\x52\xd6\xca\x3d\xb0\xbe\xe5\x86\x9d\xe0\xdf\xa9\x68\x33\xb6\xd0\xe1\x81\xd9\x9c\x84\xce\x56\x43\x03\x4f\x64\x6d\xe1\x4e\xdd\xa2\x57\x85\x52\x7a\x12\xeb\x4d\x32\x45\x4a\xab\x6e\xf0\x72\xc8\xae\xd7\xdc\x36\xd4\x14\xe2\xad\x74\x36\xe9\x0f\x46\x27\x41\xd4\x2b\x95\x35\x98\x49\x2f\xae\x73\x7a\x36\xe9\xc5\x7e\x80\xb0\x77\x44\x8a\xb0\xda\x33\xb0\xc2\x77\x95\x24\xf1\x9d\x3e\xb7\x5c\x2b\x91\xe3\xc4\x59\x51\x83\xb2\xdb\xd9\x59\x2d\x98\x97\x49\xd7\xcb\x07\x3d\x97\x4d\x07\xc4\xf4\x9c\x9c\x18\xb2\x37\x64\x53\xc0\xa8\x4d\xa5\xab\xa4\x96\xea\x75\x64\xf5\xdf\x75\xfc\xb3\x9d\x5e\x11\xc9\x86\x98\x0f\x38\xa8\xa6\x00\x67\x1b\x48\xc7\xe1\xf1\x46\x15\x8a\xc8\x6a\x85\x7d\x92\x74\xdf\xee\xe3\xbb\xa9\x5e\x5e\xb1\x74\x9b\xb3\x17\x7c\x57\x05\x62\x3b\x69\x81\xa7\xda\x62\x4f\x57\xcf\x19\x4b\x59\x1a\x84\x40\xbc\x2d\x79\xee\x51\x1c\x07\x41\x97\xc8\xd5\x16\x08\x5b\x65\x15\xa9\x02\x92\xe2\x90\xc7\x55\x59\x0d\xb3\xf8\x74\x9a\x7d\x65\x65\x29\x81\x6f\xb7\xb0\x77\x4f\xcb\xa3\x60\x1c\x8c\xac\x5a\x67\xd9\x5c\x77\xa8\x6d\xdb\x0e\x97\x7b\xbe\x7b\xc5\x5e\xc2\x42\xbd\xf4\xd5\xc0\xd9\xc3\x69\xb7\xaf\x58\xc7\x09\x71\x00\xed\x57\xc2\xee\x72\xdb\x6c\xb6\xcd\x87\x52\xfa\x2e\xd1\xbe\x54\x33\xe6\x79\xc7\xc7\xee\x61\x20\xf3\xfe\x33\x07\x02\x8e\x39\xfe\xa0\x95\x72\xfd\xb7\x62\x6d\x84\x92\xee\x7f\x61\x55\xb5\x5a\xad\xdd\xf2\xbd\xf5\x42\xbb\x03\x86\x09\xf8\x94\xbb\xfc\x53\xee\x6e\xb1\x95\x3e\xcd\xb2\x90\x8d\x45\xcf\x1f\x19\x98\x52\xb8\x31\x53\x3c\x36\x30\x0b\xd5\xb6\xb9\xba\x8e\x31\xe9\xf8\x18\x74\xab\xe1\x77\x14\x64\xf5\x6b\xc8\x0c\x94\x02\x03\x67\x6d\x10\x3e\x8e\x83\x45\x59\xe6\x2c\x29\x74\x80\x24\xcc\x6a\x89\x2b\x1a\x75\x9a\x13\x7f\xda\xb2\x76\xe9\x77\xe6\x28\x8e\x4f\xa9\xce\xd8\xd1\x91\xd0\x22\xd6\x83\xf1\x46\xe8\x74\x38\x50\x11\xbc\x08\x85\xda\xbd\xf1\x8a\xfb\x35\xe0\xe4\x8b\x72\xb7\x16\x9c\xd6\x5f\x53\xaf\x2c\x96\xbe\x9b\x76\xc0\x2f\xd4\x71\xac\xae\xb6\x8e\xc2\xae\x7e\x01\xc3\x6e\x14\xd2\x4c\x4a\x3a\xc1\xe4\x09\x73\x3b\x18\x15\xa6\xb6\xd2\x43\x91\x08\xb8\xc7\x13\x65\xf4\x85\x61\x70\x12\x84\x71\x1c\x9f\x9c\x19\x4f\x99\x62\x9a\xec\x3b\xa6\x0c\x0d\x2b\x82\xf1\xa1\x6f\x1e\x39\x09\x6f\x45\x24\x0a\x1a\x2b\xd0\xad\x40\x41\x08\xdb\x82\xc9\x3a\xc9\xa4\xbb\x2e\x1a\x93\xce\xa8\xc7\xba\xe2\x5a\x61\x05\x79\x2f\x48\x18\xbc\x8e\x25\x5e\x27\x6f\x98\x8e\x92\x4c\x0a\x4c\x3d\x71\xf3\xcc\x71\x0a\xb6\x45\xab\x61\xdb\xef\x95\x3a\x30\x6d\x07\xda\x49\xb6\xd7\xd6\xe1\xd2\x46\x1d\xb6\xce\x96\x9d\x2e\x75\xb7\xa6\x54\x31\x7f\x55\xe8\x20\x06\xe4\xa8\xec\xa2\x0c\xad\xcb\x73\xc5\x18\x5a\x57\x39\xa3\x76\x22\x43\x38\x17\x39\x34\x97\x45\xa1\x11\x41\x54\x23\xc4\xad\x9e\x05\xa9\x5a\x29\x27\x60\x55\x90\xb1\x93\x0f\x39\x6c\x92\xa4\x46\xbc\x2a\x68\x87\x8d\xaf\x9b\x1b\x15\xe8\xf7\x80\x21\xac\x8a\xa8\xa9\xb6\x2c\xea\xa3\x7e\xfd\x99\x33\x4d\xf5\x14\x89\x9a\x93\x59\xb0\x42\xfd\xfe\xa6\xf3\x80\xba\x87\xab\xc2\xe4\xb1\x79\x02\xb9\xfb\xae\x0a\x75\xed\x25\xbc\x8e\xec\x06\x28\xad\x88\xfb\x5e\x0f\x9f\xd3\xc1\xe0\xd0\x4a\x3a\x1e\x9c\xe9\x78\x01\x53\x7b\x0f\x1a\xa3\xc6\xf0\xf0\x7b\x9b\xb8\xaf\xa9\x59\xd7\x91\x92\xdd\x38\x29\x92\x0b\x21\xd7\x1e\xe3\x6e\xa6\x65\x2e\x11\xdd\x15\x10\x82\x79\xea\xf7\x45\xfb\x85\x61\xd9\x06\x62\x17\x38\xc4\xf9\xc9\xce\x27\x90\xce\xbc\xe8\x0f\x88\x15\x5d\xcd\xd3\xcf\xe7\x53\x2a\xc3\xd4\x19\xf7\xe7\x68\xe5\xa4\x53\xd0\xf4\x0d\x15\xc9\x75\x47\x47\x71\x30\x08\x46\xc8\xa6\x0f\x92\x7a\x10\x8c\x48\x7d\x40\xc9\xf3\x72\x89\x5d\x91\xb7\x55\xf9\x3c\xa3\x9f\xc1\x6d\x90\x31\xb2\xd1\x16\x9c\xe0\xb8\xbc\xc0\x4a\x2c\xeb\x2f\x65\x18\xfc\x09\x67\x74\xae\xa5\x15\x99\x2a\xd0\x65\xb1\xf5\x03\x2d\x2c\x55\x0a\xe2\x16\x4b\xe8\xd5\xa4\x91\x4b\xe3\x30\xe7\x64\x4f\x7e\xc7\xae\xbb\x84\x81\xb2\xf8\xbe\xe1\xcf\x74\x55\xf3\x58\x16\x9a\xda\x03\x7b\xa0\xa1\xe0\x72\x05\xf7\x75\x9d\xd6\x3a\x6d\x5c\x59\xe2\xec\x98\x8a\xb6\x7b\xa1\x95\x58\x51\xe2\x20\xd9\x0a\x18\xb7\x41\x09\x64\x28\x86\xda\x75\x4e\x1d\xe9\x76\xb5\x65\xb8\x3e\x36\x2e\x8a\xfa\x8c\x86\x3c\x67\x99\x53\x23\x1c\x2b\xbe\x03\x4a\xff\x9c\xfa\x64\x03\x86\xa6\x85\xa6\xfd\x74\xcb\x5b\x34\xc1\x21\x01\xce\x59\x26\x23\xa9\x77\x46\x5d\xa2\xfd\x73\x93\x6e\x6e\x82\x6c\x45\xa6\xc2\xb2\x56\xf1\x28\xb2\x4a\xbe\x50\x1d\x1f\xa6\xe6\x11\x99\x37\x7b\x30\x7e\x7b\x8a\xdb\xd7\x42\x8f\x30\x1d\x14\xde\x4f\x4e\x0f\x93\xba\x52\x6a\x2a\x02\xce\xcb\xf7\x0f\x10\x64\x77\x20\x4e\xab\xab\x96\xc7\xc0\xd4\xaa\x3a\x5e\x15\xd3\x03\x17\x82\x20\xcf\xff\xac\x55\x30\xe3\xe4\x9b\xce\x44\x93\xa6\xa9\x4c\x73\x3c\x25\x92\x74\x6d\xa0\xc4\x8b\x75\x13\xcf\x44\xac\xb8\xe6\xbd\x29\xd8\x96\x72\x93\xa7\x69\x3c\x1a\xa1\x8d\xeb\x76\x9b\xe1\x9b\xe5\x92\x44\xdc\xa9\x63\x68\x77\x16\x40\x62\x00\xc7\x91\x91\x7f\x04\x16\xaa\x82\xcd\xe1\x19\x2f\x81\xcf\xa8\x63\xd8\x8b\x3c\x81\xd5\xc3\x65\xf3\x3e\x32\x4a\xa1\x77\x0b\xec\x00\x15\x2e\x37\x22\x22\x0c\x00\xc7\xc1\xdd\xd1\x7e\x6b\x53\xda\xe8\xf8\x97\x32\x2b\x86\xc1\x20\x08\xc3\xd1\xdd\xe0\x6e\x28\xe3\xf9\x9a\x63\x68\xe5\x74\x82\x02\xe5\x1b\x76\x5d\x0f\x01\x20\x94\x0e\xcc\x85\x89\x89\x80\xd0\x2a\x2f\x3c\x45\xbc\xdd\xc1\x31\x0d\xb5\xf2\xff\xa9\xe5\x48\x0f\x87\xd5\xbc\xf7\x1d\x5d\xda\x8f\x9d\xb0\x4b\x0f\xf8\x4a\x05\x0f\xac\x43\x6b\x62\xf1\x5e\x56\x65\x61\xa4\xcc\x2a\x5f\x08\xdb\xe7\xd0\x70\x32\xe8\x0a\x40\x54\xd6\xb0\xc7\x3c\xd9\x69\x07\x55\x15\x72\xb6\x46\x91\xd3\x67\xc3\x60\xc6\xc7\x71\xc2\xd7\x9b\xcf\xc5\x49\x30\xc2\x75\x1d\x05\xf1\x5d\xfd\xfb\xee\x5c\x39\x75\x65\xeb\x9b\x1b\xfe\xbf\xa5\x51\x4b\xd5\x27\x6e\x21\x18\x15\xf7\xd7\x9f\x84\xe4\x27\xbf\x7e\x68\xfb\x8a\x1a\xf2\xc6\xc0\x85\x94\x7c\x29\x6c\x25\x57\x75\x24\x67\xfb\xf8\xf8\x88\xb6\xa9\x6c\xf7\x8f\x8f\xad\x96\x63\x10\xf8\x7c\xbc\xc4\x87\x18\xbd\x0a\xcd\xb4\x9b\x1b\x99\x50\x6c\xf9\x86\xe4\x7d\xca\xea\xe7\xc9\x73\xe5\x7c\x5a\xed\x0f\x3e\x96\xd1\xdd\xc3\xf6\x07\x16\x86\xed\xa0\xde\x4c\x20\xed\xf8\x58\xb6\x67\x08\x6d\xec\x16\xf0\x17\x2f\xdd\xc2\xeb\x3d\xd9\xa6\x41\xc7\xc2\x43\x39\xf9\x9b\x6f\x43\x41\x22\x41\x1c\xa8\x74\x11\x86\xbc\x1e\xbd\x61\xbb\xa8\xe0\x63\xb6\xa9\xd8\x32\x69\x58\x3a\x74\x04\x1d\x70\x8d\x3d\xe1\x8d\x07\x73\x6a\x87\xa7\x35\x0b\xee\x98\xd5\x2a\x82\x24\x99\x04\x97\x28\xc9\xd6\x09\x61\xda\x69\x6a\x1a\x15\xea\x75\x01\x6e\x55\x1c\xb5\x34\xd1\xc4\x81\x3d\x29\xf1\x8d\x59\x3f\x5f\xa3\xae\x77\x55\xa3\xdb\x02\xb3\xde\xb7\x49\x1e\x09\x9f\x13\x12\x40\xe9\x81\x1b\x04\x01\xbc\x12\x00\x7f\xa9\xd6\x51\x23\x24\xe4\x69\xfe\x8c\x7f\xed\x73\x33\x20\xc5\x1a\x28\x49\x35\xfb\x0f\x77\x33\xa8\x3e\xc2\xfe\xa9\xae\x29\xef\x85\x34\x91\xb3\x71\xd7\x8f\x64\x4e\xd8\x9a\x84\xd4\x98\x64\xe9\xda\x63\x10\x84\x9a\xb0\x0a\xfd\x46\xe1\xe3\x3b\xc7\x65\x32\xa9\x17\x52\x5d\xd9\x62\xac\xc4\xbf\xb5\x0a\xe0\x07\x34\x56\xd6\xe4\x9d\x52\xad\x88\x2f\xd7\x9f\x90\x6d\x42\x11\x82\xe3\x63\x83\x38\x84\xdd\xf7\x11\x6d\xda\xef\xbd\x92\x78\x9f\x06\x7c\x77\x95\xd6\x27\x9e\x96\xb8\x16\xbb\xc8\x45\x7d\x0a\xd8\x68\x35\x05\xea\xac\xf1\xf8\x41\x27\xa1\xd6\x30\x48\xac\xe9\x37\x27\xd8\x13\x51\xf2\x36\x94\x5b\x5b\x11\x98\x04\x4f\x5a\x90\xc9\xe5\x0d\x77\x50\x13\x96\x86\x14\x9d\x05\x82\x76\x31\x78\x01\x97\xa4\x98\xa7\xd3\xa7\x12\x3c\x96\x49\x42\x8a\xae\x92\xb7\x79\xde\xb6\x6d\xff\xca\xee\x33\x85\x30\x07\x81\xe7\xf4\x2d\x97\x43\x12\x5c\x42\x5e\xc5\xf9\xac\xba\x8a\xae\x44\x74\x88\x91\x8a\x99\xea\xe3\x7c\x61\x60\x45\x0d\xd5\x6d\xaf\x08\x3c\xf6\xa6\x4e\x7d\x3e\x0e\x3c\x76\xe0\x53\xbb\x55\x69\x67\x9d\x79\x95\xcc\x0d\xb9\x57\x6c\x7c\x19\x70\x96\x84\x2c\xb6\xbe\x0d\x58\x2d\xd7\x89\xf5\x4f\x03\x42\xde\xd4\xe2\xcc\xdf\x96\xbe\xca\xc4\xf4\xc3\x19\x9b\x3e\x64\x62\xf3\xb3\x07\x52\x1f\x47\x71\x57\x86\x53\x5a\x9c\x3a\x94\x25\x3e\x44\x95\x5e\x07\x29\xef\xd5\xa6\xf7\xe9\xbe\xf7\x69\xd8\x1f\xa4\x17\xef\xd3\xbf\xef\xd0\x2c\xf7\xf4\xdc\xa3\xf0\xee\x44\x4a\xdf\x13\x8e\xfd\x7f\x82\xc2\xf9\x47\xeb\x75\x67\x45\xbd\x61\x4b\xd7\xd3\x99\x48\xff\x54\xde\xce\x6c\x3d\xee\x2f\x88\x1e\xb7\xad\x3b\xfe\x47\xa2\x3b\xde\xad\x28\xeb\xd7\x93\xd5\x0f\x2f\x8e\x56\xb8\xce\xea\x8e\x65\xfe\x67\x3b\x96\x79\x4f\xa4\x75\x8f\x62\x78\x92\x67\x49\x1d\xcb\x0a\xc6\xf0\xa9\xf5\xd5\x34\xca\x11\x6f\x1d\x9a\x33\x13\x67\x06\x1e\x17\x63\xf4\x62\xa6\x7e\x8e\xb3\xfa\x25\xbc\x09\x3f\x06\x37\x24\x52\x7e\x06\x5c\x1b\x1c\xee\xca\x4b\x13\x9e\x48\xad\x23\x3f\x99\x7a\xf5\x16\x04\x4e\x78\x25\x2b\xfb\x2e\xfb\x44\xa2\xad\x5e\xb6\x44\x86\x1c\x28\x72\x55\x4a\x9e\x4c\x54\x4b\x0d\x71\x26\xd5\x71\x55\x55\x11\x2d\x45\xf4\x34\x20\xb4\x01\x75\x5b\x56\x3b\x16\xfb\xe9\xc8\x6d\xc3\x9b\x9b\x4e\x5d\x56\x3e\xa8\x09\x4a\x48\x05\xdf\x60\x57\x6e\x62\x02\x3e\x5e\x3a\x26\x7f\x59\xc3\xd6\xd2\x99\xd1\x3a\x69\x96\x57\xd6\x7c\xfc\x20\x9d\x14\xc4\x56\xf5\xe8\xbe\x60\x18\x9a\x31\x88\xe1\xe9\x37\xa9\xaf\xc6\x32\xf5\xc3\xa7\x90\x4c\x9b\xd1\x84\xf3\x72\x6a\x4f\x89\xd9\xbe\xba\x07\x18\xc9\x82\x6b\x32\x2b\xb6\x1f\x6e\x9c\x39\x88\xdc\x3a\x2c\x39\x97\xdd\x53\xa7\x0a\xb3\x74\x2b\x64\x2f\x6e\xbd\x53\x5f\x8e\xf2\x28\xc5\x8f\x1e\xc3\xe1\x83\xcf\xa3\x14\x07\x0a\xc3\x1d\xac\x2a\x98\x6d\x8f\xe1\xe7\xf0\xde\x3f\x78\x7d\xc3\x71\x38\x1c\xff\x21\xfc\xec\x1e\xba\xd8\xe5\x39\xc7\xc7\x1c\x8a\xf3\x7d\x1c\x40\xab\xb3\x06\x38\x51\xe0\x2a\x0a\x00\x67\x67\xf3\x71\x53\x3e\x2b\xdf\xb1\xea\x51\x52\xb3\x61\x38\xc2\xe4\xfb\x73\xe1\x38\x82\xd7\x33\xa7\x43\xc0\x14\x74\x59\x00\x5e\x57\x44\x7d\x63\xf2\x58\x27\xe1\x35\x05\x40\x4f\x4e\xeb\x4d\x73\x6d\x20\x98\xd8\xed\xc7\xc7\xe2\x87\xf4\x56\x47\x28\xf9\x4f\xdf\x43\x2c\xce\x70\x67\x96\x8e\x2f\x3b\x16\x36\x30\xe1\x82\x70\x6a\x15\x34\x3f\x95\x52\x7f\x63\x6b\x18\x4a\xc7\xf4\x7a\x80\x98\xd0\x5a\x88\x68\xd6\xe7\xf4\xd3\x43\x18\x3c\xc5\x34\xf2\x65\xab\xa1\x5d\xa3\x09\x6f\x0d\xa0\x95\xfd\x50\xfe\x1d\x55\x87\xa5\x7e\x14\xc8\x42\x35\x56\x9b\x79\x70\x50\xe8\x00\xfe\x68\x07\x41\x35\x3f\xf5\xd9\x45\x9c\x7c\x3c\xa9\xca\xf5\x5f\x5f\x7f\xff\x4c\x00\x0d\xf5\x9b\x25\x8c\x4e\x4d\x9a\x14\xa2\xb8\xdb\x22\x36\xbe\xe4\x32\x18\x4a\x8c\x87\x3e\x44\x10\xce\x71\x6a\x89\xa7\x75\x08\x5b\x98\x79\x8b\xf2\xe9\x59\xef\x70\xac\x6b\x1f\x9b\x87\xf0\xb1\x29\x5b\x6c\xfb\x0d\x42\x7d\x2c\x2c\xa6\xe5\xe5\xe5\xe5\x61\xd6\xa1\x2e\x77\xfa\xef\x60\x21\xff\x2d\x2c\xe0\x33\x98\x84\x7d\x9c\x5f\x9f\x0f\xdb\x6e\x9b\xa8\x3f\xde\xd2\x24\xea\x8f\x5e\x4e\x2f\xb9\x30\xbd\xca\x6a\x3e\x2b\x2f\xa5\x3b\x34\x29\x39\x07\x4f\x85\xa2\x80\xdf\x99\xd3\x61\xce\x9a\x10\x35\x62\x9c\x9c\x71\x5e\x5e\xa2\x48\x0e\xec\xff\x93\x3c\x2f\xdf\xfd\x50\x65\xeb\xac\xc9\xde\xb2\x1a\x9f\x0b\x89\x87\x84\x69\xf6\x95\xe5\xfb\x11\x34\x65\x85\x31\x96\xe9\x3e\xd2\xf5\xf9\x78\x73\x73\x64\x35\x70\x5b\x7d\x9f\x59\x36\xbf\xb9\x81\x0d\x78\x80\x64\x49\xb8\xa1\xb4\xc4\x4b\xae\x2e\xa2\x29\x29\xdc\xba\xae\x7c\x40\xfc\x44\x1d\xb4\x7a\xed\xee\xf7\xca\xb0\xb5\xca\xae\x53\x93\xea\x6c\xd8\xb6\xb8\x3e\x42\x2c\x8b\x1f\x62\x85\x88\xac\x17\x68\xc3\x25\xf3\xbe\x78\xc9\x03\xc8\x78\xb9\xd6\x06\x73\xaf\xad\x6c\xb1\x63\x86\x56\x31\x4e\xa0\xb0\x0d\x43\xa2\xa2\xf0\x32\x56\xbf\x8c\x7b\xbb\xd9\xb1\xd8\xfc\x3c\x84\xea\x61\x24\xd5\x0f\xb4\x82\xff\xe0\x3b\xfa\xc1\x01\x81\x9c\x0b\x77\x8f\xb9\xb9\xec\x8d\x66\x60\xeb\x7b\xd4\x98\xab\x07\x0c\x8c\xe2\x2f\x7a\x80\x45\xac\x14\xd3\x78\x5e\xd7\xb4\xb9\x3e\xcc\x70\x1e\x3c\xc4\x7b\x0d\xdb\xa9\xa8\xa2\x43\x14\xd1\x61\x7b\xef\x58\xc7\x73\xb8\x75\x59\x6d\xae\xfe\x47\x49\x29\x7e\x2f\x66\xf1\x1f\x7d\x54\x7e\x27\x1c\x37\x7f\xf7\x21\x36\xf1\x1f\x22\x17\xf9\xbc\x47\x2e\xf2\x45\x8f\x4d\xfd\x1f\x8d\xe0\x54\x9d\x32\x0b\x8f\x4f\x78\xf1\x4a\xe2\x88\x4b\x44\xba\xa8\x51\x6e\x26\x37\x3e\xcf\x9f\x2f\x2e\xc6\x56\x3e\x94\x01\xcd\x6b\x62\xb4\xb9\x47\x74\x02\x93\xe4\x5a\x90\x73\xfc\xb1\x41\xf9\x16\x75\x2c\xeb\x1d\xdb\xf9\x03\xec\xeb\xcb\xc2\xb5\xa9\x2f\x8b\x7d\x06\xda\x5f\x78\xd9\x11\xaf\x38\x89\x23\xaa\x29\x4f\x4a\xd2\xd4\x6f\xcf\xff\xe5\xc5\xc5\x98\x64\xee\xb5\xff\xff\xd2\x6f\xff\x9f\xa4\xe9\x37\x6c\x55\x56\x3d\xa5\x1c\x10\xd2\xd6\xbe\xb2\x3e\x28\xb4\xbf\xff\x5e\x12\x2a\xc7\x54\x7f\xac\xf3\x2c\x50\xd7\xca\xde\x04\x57\x46\x70\xe7\xc9\x12\x81\x4d\xd4\x96\x17\x16\x5d\x22\xf2\xda\x85\x9b\xf7\x6f\x12\xbb\xcf\xbe\x98\x4f\xa5\x12\x27\x47\x7c\x7e\x35\x36\xf2\x6d\x23\x73\x2b\x32\xaa\x2d\x67\x09\xc2\x1e\x83\x69\x3c\x7c\xb4\x99\xf4\x45\x56\xff\x94\x55\xcd\x36\xc9\x27\xa0\x39\xec\x98\x4d\xfb\xda\x0a\x50\x5c\x44\xa0\xcc\x4f\x69\x5b\xdd\x51\xf6\x82\x89\x69\x05\xad\x5f\x69\x71\x2d\x02\x46\xfd\x7f\xec\xfd\x6b\x77\xdb\x38\xb2\x28\x0c\x7f\xdf\xbf\x42\xe6\xda\xcb\x2d\x6e\x33\x8a\xed\x4c\xcf\xc5\x1a\x76\xde\x74\xec\xf4\xe4\xe4\xba\x63\xf7\xf4\xcc\x51\x6b\x74\x68\x09\xb6\x99\xc8\xa4\x86\xa4\xe2\x78\x64\xbe\xbf\xfd\x59\xa8\x2a\x00\x85\x0b\x25\x39\x49\x77\xcf\x3e\xeb\x7c\xb1\x45\xa0\x70\x2b\x14\x80\x42\xa1\x2e\xa4\x3a\xab\x26\xb9\xee\x07\x43\xff\xa8\x1b\xab\x65\x5c\x4d\x08\x04\x53\x1c\xda\x45\xcc\xdd\x36\x89\x74\xb3\xc0\x55\x9e\x96\xcb\x6a\x2a\xa2\x78\x50\x16\xe2\x27\x08\x3b\x4c\xc5\x25\x22\x0b\xc9\x5c\xb1\xaa\xdb\x78\x68\xda\x9e\x64\xf6\x0e\x63\x75\x82\xc5\x66\xdf\x62\x40\x1b\x7a\xbc\x5d\x3f\xe1\x92\xdd\xea\x37\x6e\xcb\xf4\xb9\x4d\x26\x59\x5d\x8b\xaa\x81\x1d\xee\x65\xfe\x81\xc5\x43\xa2\x76\xe2\x55\x9b\x74\x74\x95\xc1\x66\xf3\xf9\x79\x36\xfd\xa0\x9e\x40\xed\x95\xe8\x4e\x0a\xf8\x93\x8c\x26\xf4\xfd\x53\x3e\x9f\x63\x18\xa7\x28\x1e\x3a\x2f\xa8\x6b\x0b\xea\xf0\x4f\x51\x3c\x54\x1d\x30\xf7\xf9\x78\xe8\x6d\x28\xf7\xe8\x07\xdb\xf2\xb6\xee\x44\x6b\x0b\x49\x8f\xec\x0d\x23\xb1\x45\x33\x6e\xae\x63\xbb\x69\x50\x0b\x9a\x18\xa8\x94\x85\xe6\x6d\x7c\x02\x59\x26\x77\xf1\xc0\x76\x00\x4a\xa1\x3d\x84\x3a\xcd\x22\x21\x69\xd9\x0e\x0b\x2c\xc2\x6c\x09\x0d\x20\xb7\x76\x8d\xd0\xc6\x2a\x95\x27\x5e\x1f\xef\x60\xb6\x16\x34\x8a\x56\xe6\x65\x21\x48\x79\xa8\xee\xe3\x12\x09\xd4\x95\x04\x2a\xd0\x21\x4b\x54\x84\xe6\x36\xd7\xa1\x99\xc9\xbd\x6f\xd1\x0c\xf2\x9a\x6f\x82\xb5\x35\x26\xbe\xf6\x20\x3a\x95\x8a\x54\x91\x8b\x9b\x36\x99\xf9\x2e\x01\xf2\x8b\xfe\x8e\xb5\x36\x2c\x7b\x20\x67\x4d\x33\x04\x7b\xcb\x1d\xe3\x3a\xd9\x89\xf1\xca\x49\x60\xbe\x03\xd8\xba\xb4\xdc\x08\x4c\xb2\xd9\x4c\xd3\xc8\xd3\x2b\x31\xfd\xd0\x8f\x57\xea\xc4\x19\x54\xa2\x5c\x88\xa2\xbf\x9a\x40\x4c\x3e\x0d\x77\x14\x8e\xc8\xca\xc6\xd9\xca\xbd\x80\x38\x91\xe7\xc5\xb1\xbc\xcc\x19\x45\x8b\x8b\x78\x75\xd1\x27\x33\x79\xb0\xbf\x14\x33\xf0\x28\xe4\xb2\x8a\x3c\xcf\xde\x30\x3e\x85\xa2\x7d\xd4\x62\x7e\x91\xba\x77\x7c\xb7\xce\xad\xb5\x49\xb4\xf7\x0f\xe6\xf4\x19\x13\x75\xc0\x1a\x0a\x93\xa7\x34\xfe\x49\x89\xdb\xf2\x61\xc2\x9f\xa0\xb8\x3f\x91\xbc\xb8\xfc\x6b\xf8\x6d\x09\xa0\xcc\x00\x82\x0a\x2d\x0e\x8c\xab\x72\x6f\xfa\xa6\x56\x22\x7c\xe0\x79\xac\xac\x42\x68\x84\xd9\x6c\xe6\x9d\x0d\x26\x0b\x36\x6c\x2f\xc3\x1e\x03\xc4\x09\xbc\x91\xdb\xda\x5c\x64\xd5\x3b\xb2\xe7\xb4\x0e\xcc\xf9\x05\xa3\xc4\xb8\x1d\xb2\x89\x35\x9e\xab\xd3\x95\xb7\x45\x7a\xce\x34\x70\xe3\x76\x7b\xd5\x26\xee\x36\xe9\x15\xdc\x0a\x11\xe1\xd1\x2a\x7b\xd4\xa7\xd6\xa8\x59\xab\x50\x8c\x75\xfa\x85\x95\xd1\xdd\xa7\xee\x8a\xad\x0e\xf2\x72\x4a\xb6\xec\x49\xf4\x1d\x8a\x49\x02\x14\x92\x70\x6a\x8d\xdb\xc4\x1b\x70\x70\x9f\xd2\xe7\x33\x6d\x53\x3c\xd1\xc3\x19\x6e\x56\xab\x1b\x83\x8b\x28\x8c\xa3\x28\x99\x69\xb4\x44\x41\x6c\x45\x6d\xdc\x26\xa1\xe9\xbe\x7f\x2f\x03\xb5\x7c\xed\x8e\x06\x56\xd1\x91\x15\x64\x3f\xc4\x23\x6c\x3b\x67\x09\x1f\x8d\xe9\x9a\xcf\x3e\x7c\x56\x85\x26\xea\xa7\xc2\xf7\xba\x91\x74\x32\x5e\x5b\x13\x60\x60\x1c\x01\x76\xec\xbe\xd5\xd9\xa3\x90\xab\x6a\x2b\x3a\xe1\xdc\x0a\x07\x50\x2b\xf8\x25\xaa\xdd\x5d\x2a\xdb\xbb\x82\x99\x4c\x6b\xa9\x39\x5f\x57\xa1\xc8\x05\xda\x13\x29\x3f\x18\x86\xcc\x07\x01\x1c\x70\x01\x89\xb9\xd5\x09\x23\x31\xb7\x0e\xa5\xa2\x19\xa0\xaf\x83\x27\x4d\x3f\x37\x0f\x56\x36\x9f\x53\x06\x6c\x96\xc6\xe6\x50\x5b\x6b\xfe\x27\xf1\x19\xda\xa7\xdc\x6b\xa6\x3e\x7d\x87\xdd\x46\xfe\xe8\x33\xde\x9e\x17\x7e\x3a\x88\x19\x9d\x16\xce\x09\xa3\x7a\xd0\x87\xb0\xee\x21\xbe\x8a\x9d\x0e\x81\xe3\x4c\xb9\x5e\xd2\xd3\xbf\xee\x30\xc1\x6b\x93\xea\x10\xea\xf8\xb2\xd8\xa1\xf2\xfe\x16\xd4\x60\x21\xb3\x0f\xcb\x22\x07\x64\xd2\x5b\xdb\x37\xda\x76\x88\x41\x3b\x46\xc7\x5c\xf1\x70\x3c\x74\x0d\x7c\x58\x7d\x7b\x51\x2f\x2f\xc8\x70\x71\x68\x6b\x2f\x63\x04\x3e\x78\xbc\x68\x43\xd4\xc1\x6d\xdf\xf4\x63\x73\x60\x10\x07\x21\x6d\x1c\xaa\x37\x68\xb8\x86\xba\xb7\xbc\x45\x73\xbf\x54\xc2\x38\xa8\xc9\xb3\xa0\xf9\x0a\xb6\x48\xc6\xe3\xc7\xee\xae\xed\xf9\xe2\x12\x39\x92\x77\xe5\x4d\xed\x66\x39\x6a\x1e\xf2\x96\xcc\xf8\x17\xdf\x5e\x63\xa0\x69\x35\x64\xad\x64\x1e\x02\x48\x57\xbb\xf9\x94\x44\x28\x66\x65\x5c\xaa\x62\xc0\x23\x66\xb4\xc4\x1f\x4b\xb4\x48\x48\xfd\xb0\x9e\x52\x38\xdf\xcc\x7e\xdb\x5e\x88\x35\x19\xa7\xe6\xe7\x36\xcf\x2c\xf3\x72\x6a\x5e\x59\x3a\x9f\x4d\xb6\x91\xd3\xaf\x93\x4f\xcf\xcb\xa9\x17\x41\x7d\x5e\x4e\x87\x1d\xaf\xe4\xec\xf5\x73\x4a\x8b\xb3\x6e\x8c\xc7\x88\x79\x39\x85\xef\x76\x9b\x01\x2e\xb2\xaa\xc9\xb3\xf9\x16\xef\xe7\xae\xd7\xe2\xed\xf5\x35\xd9\x83\xcf\xaf\x1d\x9b\x7e\xbb\x47\x72\xdf\x71\x2c\xbc\x91\x43\xf2\x06\x11\xf1\xa3\xa0\x84\xf8\xdc\x75\xb3\xaa\xbd\xac\x6e\x9a\x52\x9a\x0f\x1e\xc1\xe9\x97\x72\xfa\xb0\xad\xba\x87\x22\x11\xbe\xc3\xa8\x98\x06\xda\xcd\x3a\xb3\xb0\xf4\x2e\xaf\x17\xc5\x1b\x3e\x04\xaa\x0f\x0d\x71\x83\x16\xff\x14\x40\xeb\x8d\xb1\xdc\x93\x7b\xcc\x5b\x2c\xc7\x9f\xae\x55\x3d\x0c\xb8\xed\xf6\xd9\xc0\xb1\x89\x4e\x1b\x94\x95\x2e\xed\x5d\xa1\x56\xac\x29\xb0\x8e\xc6\xcd\x2e\x4e\x99\xc7\x95\x8d\x55\x63\x68\x9e\xec\x5a\x48\xa8\x3a\x05\x7f\x2a\x64\xcc\xf2\x30\x8a\x93\x79\x56\x37\x32\x27\xd5\x20\x23\xfd\x8b\x05\x60\x5b\x9b\x9b\x46\x93\x68\x4f\x55\xb4\x46\xe3\x33\x59\xca\xde\xd6\x72\x0f\xc0\x93\xda\xd4\x85\x06\x55\xb2\x43\x9a\xd1\x03\xb9\x94\xfa\x7a\x56\x02\xd5\xf4\x9d\x1a\xe2\x64\xa6\xf5\xd7\x75\x24\xe0\x1d\x55\x68\x77\x37\x58\x07\x7a\x83\xf1\x5c\xdb\xdf\xdd\xf9\x75\x75\x71\x75\x8e\x33\xbe\x6d\x36\xc4\xfa\x2a\xab\xc4\xcc\xec\x87\x9f\xa7\xf8\xb3\x6e\x4f\x5a\xf3\xde\xe4\x6d\x26\x9b\xb6\x0b\x1d\x92\xb3\xb9\xaa\xfb\x21\x83\x32\xb5\xea\xfd\x48\x5f\x55\x59\xb2\x64\xf8\xf2\xf9\x79\x27\xa2\xa9\xb3\xb7\x98\x90\x1f\xda\xf4\xc4\x37\x0b\x03\xe5\x12\xa6\x99\x62\x31\xdc\x2c\x8c\x6b\xb3\xd5\xf4\xa8\x89\xfe\x1c\xdd\x87\xcf\x39\x7c\x7e\x6d\xe7\xea\x9b\x1e\x92\x37\x11\x84\x76\x93\x18\x3a\x40\xb6\xdd\xf1\x35\x92\x5d\xf5\x3e\xda\x72\xc3\xc6\x90\x5b\xcd\x1f\x99\xe6\x84\xd6\x97\xaf\xa7\xb2\x9e\x97\xf8\x05\xf5\xf2\x36\xce\x7a\xc7\x84\x06\xe6\x7f\x1b\xcd\x00\xdb\x62\xca\xe5\x43\x6c\x0b\xaa\xcf\x61\x47\x1c\xed\xb9\x4d\x34\xb4\xb4\x22\xe4\x78\xee\x86\xb6\xd3\x9f\x33\x8a\xe9\xeb\x3c\x9f\x21\x16\x8c\xd3\x82\x65\x93\x4c\x9b\x4f\xfa\x3a\x14\xba\x4c\x7e\x77\x68\x08\xd9\x76\xba\x80\x52\x85\x60\xfc\xd1\xa9\xef\x6b\x4d\x5d\x9e\x9c\x48\xa1\xc3\x72\xd9\xa4\x56\xe8\x51\x79\x69\xe9\x8a\x3c\xea\x6a\x5e\xdb\x1d\x52\xcb\xa7\x5c\x36\xad\x62\xdc\xee\xe9\xa4\x49\x62\x23\x28\x07\xd5\x5c\x10\x9b\x9e\xad\x56\x20\x2a\x17\xad\xd9\x3d\x9d\x6b\x0e\x39\x97\xfc\x1a\x11\x54\x40\x1b\x6b\xab\x30\x23\x1b\xe2\x9b\x6c\xde\x05\xbe\xfc\xc2\xf6\x6f\xa7\x58\xf5\x75\x8e\xa2\x37\x30\x9d\xbf\x54\x8c\x0f\x13\x3e\xd3\x53\x59\x32\x59\x5d\xa1\x26\x02\x1a\x4b\x9e\xda\xc8\x1f\x78\x60\x8d\xce\x08\x18\x7f\x0c\x05\xc0\xe8\xd6\x52\xfe\xd3\x3d\xb5\x94\xff\x14\xdc\x65\x01\xbd\x14\x23\x61\x93\x5e\xd3\xcb\x37\x3f\x9d\xbc\x7b\xfa\xe4\xf4\x64\xf2\x64\xf2\xbf\xd3\x87\xff\x18\x65\x0f\xfe\x35\x7e\x98\xfc\xf5\xf9\xc9\x4f\x93\xb7\xef\x4e\x9e\x3d\xff\x5b\xfa\xf0\x1f\x92\xf0\x7f\x1e\x3c\x74\xa2\xf0\x2a\xb7\x13\x72\x7f\x7c\x1a\x72\xa5\xe3\x9b\x2a\xa9\xe8\xea\x7e\xb8\xf5\xf5\x76\x31\x12\x04\xed\x4f\xac\x00\xa2\x1f\xc9\x59\x9b\x36\x57\x09\xc4\x4d\x25\x13\x1a\x12\x8b\x29\xd0\xbd\x88\xba\x1f\x8d\xd1\x28\x79\x68\x35\xc3\xb3\xa3\xd3\xb3\x77\xcf\x5f\xff\x10\xf9\xb6\x30\x3c\xc5\xf4\x10\x2d\x64\x42\xd6\x3c\x51\x3e\x53\xd5\xc6\x64\xdc\x91\xcf\x02\x76\x22\x0a\x99\x04\x41\x65\x8c\xa1\xb5\x6a\x4f\x96\x0e\xf5\xce\x94\x71\x7b\x68\x72\x30\x18\x2c\xb3\x5c\x64\x6b\xd2\xc4\x51\xe8\x32\xfb\x30\x32\xe0\x0d\x13\x1e\xb6\xfd\x03\x15\xaa\x3a\xc7\x20\xb8\xe8\x9c\x42\x60\xb4\x3a\xed\xbc\x26\x99\x2d\x17\xe8\x36\xcb\xd8\xa3\xcd\xe2\x95\x29\x39\x10\xf8\xfe\xfd\x7c\x96\x52\xee\x50\x16\x01\xb9\xb1\x2a\xd1\x64\x97\x56\x11\x32\xe4\x49\x55\xa6\x55\x82\xba\x11\xaf\x54\x7f\xe8\x3f\xf3\xe4\x30\x64\x75\x69\x07\x11\x1a\xd0\x6f\x9f\x7b\x84\xb0\x3a\xa2\x0b\x6b\xf7\x43\x1e\x3c\x6f\x36\x5c\x31\x2f\x0f\x2b\x65\x6d\x03\xa9\xb1\xd6\x8c\xd7\x02\x8e\xc6\xc1\x61\xea\xfc\x75\x99\x92\x63\x98\x66\x4d\x47\x27\xd9\x90\x02\x63\xca\x5c\x7f\x36\x16\xc6\xbc\x5c\x70\x7b\x60\xd5\x32\x5b\x2e\x70\x55\x19\x47\x77\x68\xe1\xd5\xc2\x4a\x8a\x9d\x25\x62\x7d\x02\x31\xb0\xf5\xad\xfd\x40\x71\x20\x3e\x3d\xad\x72\x8f\xd4\xbd\x71\xed\xac\xb1\xe8\x9b\xaa\x60\x87\x5d\x3b\x16\x7a\xad\x29\x2f\xd8\x76\xc3\x7c\xe8\xd0\x4b\x02\x57\x96\x58\xc2\x99\x41\xbd\x03\x2d\x0b\x53\xd2\x84\x6b\x20\x17\x8b\xa6\x4e\x78\x18\x80\x1d\x6b\xdd\xbc\xa2\x0f\x76\x10\x28\xca\x21\xae\x07\x05\x15\xe3\xe5\x7c\xbe\x96\x52\x46\xe7\x63\xe6\x58\x19\xc0\xf9\xf0\xb6\x74\x83\x22\xcb\x91\x53\xc4\xf5\xb8\x70\x3d\xa4\x38\x08\xd9\xd0\x53\x8c\x3e\x1a\xf2\x0e\x53\xb7\xad\xf6\x9b\x6b\x53\x1d\x6c\x7f\xa6\x5e\xa5\xb7\x10\xe8\x9c\xd9\x4c\x4d\xd7\x9c\xf8\xd8\x8e\xcd\x0c\x68\xa9\xd9\xe3\x08\x39\x75\x52\xc2\xc0\x28\x18\x64\x88\x7c\x33\x9a\x00\x13\x01\xaf\x95\xca\xa1\xd1\x72\x3e\xf7\x9c\xf1\xc0\x6b\xd3\xdd\x1d\x7b\xdd\xa2\xd6\x98\xb7\x72\x35\x21\x11\x7f\x94\x09\x01\xa8\xce\xb4\x74\x11\x33\x38\xe1\x07\xa2\xff\xf2\xb7\x29\x6a\x4a\x21\x6e\x80\x49\xdb\xc8\xb0\x40\x2c\x13\x22\x3f\xdb\x7d\x3d\x36\x84\xba\x21\x5d\x92\x67\x3a\x84\x77\x77\x2d\x76\x8a\x96\xb3\xac\x63\x77\x77\x87\xb1\x54\x2c\x23\x5e\x61\xcd\xdc\x29\x28\xf6\x79\x0d\x63\xb0\x70\xfd\xae\x50\x77\x55\x49\xbe\x92\xa8\x7a\xca\x82\x95\x8e\x49\xb1\x6e\x28\x70\x1f\xee\xb0\xcb\xa6\x92\xad\xdd\x51\xe8\xba\x6b\x3d\x4a\x61\x9e\xba\xec\x46\xb5\xf4\xdb\x0c\x2b\xe6\x61\x6a\xec\x8e\x0d\x59\xcd\x56\xc8\xac\x54\xf3\x14\xd4\x19\xb0\x07\x56\xa3\x45\x2d\xa7\xc7\xd6\x57\x3f\x3e\x52\x44\x41\x86\xcc\xa1\xba\xd3\x8b\x02\x1c\x8b\xf3\x5a\x07\xdc\x37\x40\x57\x0e\x11\xd9\xee\xee\x0e\xaf\xd6\x2a\x19\xce\xd0\x6c\x02\xcf\xb6\x0c\x79\x55\x94\x2a\x46\x83\x46\x58\x66\x97\x5b\x2b\x57\x6b\x19\x8a\xad\x20\x02\x34\x24\x2b\xa0\x88\xbc\xc9\xf3\x07\x4c\xc6\x31\x32\xdf\x16\xfa\x62\xf0\xd1\xf8\x20\xff\x9a\x8e\x26\xd6\x48\x6e\x82\x94\xaa\xee\x38\x41\xa7\xe0\x41\x49\x23\xdc\xed\x87\xcc\x55\x18\x59\x3e\x23\x50\xc0\xaf\x83\xf5\x30\x6c\x86\x9d\x9a\x9f\xdb\xc8\x40\x6e\x73\x31\x9f\x6d\xf1\xe6\xe9\x8a\x39\x7e\x13\x09\xb2\x7b\x17\x3f\xa4\xbb\xf8\x26\x31\x1e\x0c\x32\x64\xf9\xd8\xe1\xe7\xc3\x44\x00\xd9\xdd\xdd\x31\x4a\xca\xf3\xec\xb6\x5c\x36\xf2\xea\x94\x5f\xdc\x23\x3e\x08\x1a\x6f\xca\x3c\x53\x15\x3b\x81\xa2\xb8\x6d\xb1\x10\x74\xd3\x09\x6d\xb0\x6e\x0e\xe7\x65\x06\xea\x35\x81\x07\x1a\xed\xe1\x7f\x82\xd4\xb9\x95\xa8\x89\x2c\xfc\xaa\xaa\xec\x34\x90\x9c\x67\xff\xba\x9d\xc8\x76\x7f\x89\x17\x86\xaf\x69\x13\xfe\xd4\x09\x95\xb0\x81\xb2\x02\x32\x98\x80\x2c\x08\x88\xf4\x44\xe2\x67\x93\x8d\x78\x59\xbc\x2c\x33\xff\xe1\x1b\x93\x37\x0a\xcf\x9d\x40\xa3\x2c\x0a\x40\xd9\xd4\x4d\x95\x2d\xfa\xd3\xe6\x93\x56\xbf\x12\x72\xe3\xa9\xd3\x6f\xea\x69\x95\x2f\x9a\x11\xe8\xd4\x46\x92\xfa\x1e\x7e\x62\xb3\x13\x8d\x93\x5e\x08\xa2\xca\x6e\x2c\xa8\x6f\x86\x88\x8b\xbe\xae\x39\x91\x8d\x81\xe2\x48\xdf\xd5\xfd\x82\xfa\xe8\xb6\x43\x76\x11\xca\x2c\x2c\x9f\x8b\x14\xf3\xe1\xea\xd4\x8f\x64\xab\x10\x0c\xa3\xa3\xe5\xc7\xc4\xbe\x2e\xaa\xf2\xd3\x6d\x9f\xbd\x0f\x50\x6d\x89\x49\x8a\x8f\x2c\x58\xf7\x41\x41\x15\x70\xd2\xcd\x4b\x2d\xec\xc2\x56\xe7\xc0\x61\x9f\xca\x7e\x50\x64\xd7\x22\x8a\xef\xee\x2c\x90\x7c\x26\x93\xa2\x6c\xb1\x98\xe7\xd3\xac\x01\x6f\x61\xfa\xb4\xa6\x26\xfb\x54\xe2\xaa\xb9\x9e\xf7\x63\xe0\x8c\x50\xc7\xe7\xec\xe4\xd5\xdb\x97\x4f\xce\x4e\x4e\x47\xbc\x0f\xe3\x1d\x7e\x29\x5e\x35\x57\x55\x79\x03\xce\x3b\x0d\xa1\xf5\xbf\x51\x2f\xbb\xf0\x24\x3e\xeb\x45\xdf\xec\xf1\x2a\xf6\xbe\x89\x7a\xd9\xbc\x12\xd9\xec\x96\xde\xe1\x07\xdf\xc4\xed\xda\x46\x4d\x68\x74\xea\x2d\x2a\xc4\x81\x8a\xb6\xb1\x0f\x30\xb4\x16\xaf\xcc\x6f\x9a\xea\x59\x39\x05\xc9\x7f\x6c\xbd\xec\xa3\x6f\x3f\x67\xe5\x99\x07\x07\xbc\x74\xba\xa1\x40\xc2\x11\x4b\x12\xa7\x96\xb8\xc5\xa5\xd3\x27\x9d\xa9\x27\x7c\x16\x34\x55\xb2\xd4\x78\xc5\x3e\x06\x79\x91\x37\x79\x86\x21\xf3\x56\x12\x8f\x47\xd1\xac\xbc\x56\x98\xad\xa3\xc4\x00\x1c\x99\x91\xb7\xf1\x70\x43\x25\x1d\x63\x8e\x92\xec\xa2\x11\xd5\x9a\x46\x3a\x0a\xb6\xb1\xcd\xed\xf0\xd3\x8c\x77\xab\xf3\x48\x50\x82\xfd\x5f\x5c\x51\x8b\x89\x78\xfd\xe8\xd1\x07\x1d\xfb\x97\x5c\x16\xa7\xd9\x85\xb0\x94\xb4\x24\xbd\x07\x63\xe8\xa2\xea\x96\xdb\xd0\x40\x55\x92\xaa\x1f\x66\x95\x9d\xfc\xed\xec\xe4\xf5\xf1\xe4\xed\xbb\x37\x67\x6f\xce\xfe\xfe\xf6\xe4\x54\x5e\xa4\xaa\xa5\xb8\xbb\xeb\xc8\x1f\x60\xc5\xf1\x0a\xff\x1b\xa3\x04\xd3\x4a\x40\x0b\x5f\x8d\x02\x6d\xdf\xba\x3c\xb8\x28\xb0\x75\xd3\xb5\x36\x18\xfc\x36\xef\xc2\x9d\xfc\x9a\x7d\x8a\x7f\xd1\x53\x95\xa8\x2e\xdd\xda\x3b\x9c\x03\xac\xf5\x3d\x68\x3d\x5e\xf1\x8c\xba\xc1\xe5\xb1\xbd\x37\x80\xdf\xd0\x0f\xcd\x6f\xe0\x24\xe0\x2b\x3e\xc1\x6f\x17\xbb\x3a\xcc\x8f\x07\xf8\x21\xdb\x51\x80\x31\x86\xae\xc4\x3f\x97\x79\x25\x5e\x95\xb3\xe5\x5c\xf4\x23\x3d\x81\x64\x27\xb8\x3d\x1b\xf5\xb9\xce\x00\x80\x66\x37\xbd\xa8\xb9\xc6\xf2\x81\x00\xeb\xdb\xb9\x4b\x0c\x39\x49\x34\x4f\x73\x60\xa8\x78\x0a\x34\xee\xc7\xce\x67\x99\x38\xa8\x0e\xb8\xda\x80\xc8\x45\x40\xd5\xb1\xd4\x75\xf6\xe5\x07\x61\xfb\xf2\x35\xda\x57\x87\xde\xb3\x9e\xde\xc3\xc3\x61\x06\xb9\xd3\x67\x13\xdc\xd4\x0a\x62\x4a\xda\xf7\x8e\x15\x9d\x76\xde\xac\x7e\x60\xb2\xae\x22\xd5\xbf\x6c\x03\x3b\x90\xbd\xf0\x0f\xcc\x46\xfa\xd3\x63\x55\xb6\x5c\x80\xa8\x34\x5a\x54\x82\xec\xd4\x30\x79\xb9\x98\x65\x8d\x78\x3e\x43\x51\x3e\xda\x67\xb2\x48\x87\x26\x15\xc3\xfd\xa1\xa3\xe3\x10\x02\xb8\x35\x9b\x63\xd3\x9e\xd7\x68\x6c\x2e\x7f\x87\x0d\x43\xad\xae\x60\xac\xc4\x69\x56\x4c\xc5\xdc\xc9\x09\xf4\xb9\xd5\xc1\xa5\x4d\xb7\x55\x4c\x69\x26\xe3\x24\x03\x09\x90\xb1\xe0\xa1\xc5\x90\x65\x46\x49\x58\xd2\x36\x10\x51\xab\x75\x2a\x2c\x33\x37\x95\x68\x4c\xdc\x5e\x30\xd3\x4b\x70\x69\xee\x5a\x89\x18\x09\xb9\xed\x1f\xdc\xa2\x01\x8a\x1a\x60\x51\x8d\x63\xbf\x40\xa1\x13\x54\x09\x32\x78\xb7\x68\xc2\xa5\x92\x61\x30\xdc\x82\xed\x78\x1a\x15\xf1\x78\xa9\x96\xe9\xe3\x41\x40\x44\x32\x2f\x3a\x2b\xbf\x07\x5a\x30\x03\x44\xda\xa0\x0b\x11\xee\xad\x51\x34\xc4\x5f\x7b\xa9\x41\xb4\x44\x6f\xd5\x9c\x65\x97\xfd\xd8\xce\x55\x76\x03\xa1\x32\xa2\x98\x61\x09\x1e\x70\x12\xe1\x82\x16\x4f\xf0\xb8\x09\xeb\x25\xb5\xd7\x91\xd2\xae\x92\x98\x70\x8c\xaa\xd0\x07\x3d\x5c\x56\x08\x20\x05\xa2\xb8\xbb\xd3\x9f\xec\x92\x42\x69\x51\xa4\xe5\xf1\x3b\x54\xac\x97\x17\x75\x23\x09\xb7\xbc\x60\x07\x4d\xac\x8b\xe8\x68\x04\x18\x1a\x22\xbf\xe8\x63\x4f\x35\xc0\xe6\x18\x0b\xaa\xac\x37\x35\x3e\x26\xea\x9b\xbc\x99\x62\x1c\x2b\x24\xec\x78\x35\xcd\x6a\xc1\xf6\x80\x23\xf8\x36\xd4\x7e\x74\x5e\x89\xec\xc3\x10\x52\xf3\x02\xa7\x39\x3a\x0a\x5e\xca\xa2\xd3\xf2\x5a\x34\x57\x79\x71\xd9\xbb\x2d\x97\xbd\x59\x3e\xeb\x35\x55\x2e\x66\xbd\xa6\xec\x55\x62\x31\xcf\xa6\xa2\x97\x15\xbd\xd5\x4a\xe8\xbe\xb7\x6d\xef\x1c\xcc\xe7\x7a\x79\xd3\xbb\xc9\x6a\x89\x2d\x51\x35\x62\xd6\xcb\x8b\xa6\xec\x35\x57\xa2\x77\xfc\xe6\xd5\x00\xbc\x0d\xd4\x22\xba\xca\x6a\x65\x5f\x7d\x44\x3d\x3a\x7e\xf3\x2a\x3a\xb2\xf7\x80\x0d\x26\x57\x11\x02\x46\xf1\x10\x86\x66\x19\x83\x27\x98\xe7\x19\x53\x05\xf6\x44\x24\x45\xb8\xd3\x5a\x04\x1b\xb7\x49\x53\x65\x45\x9d\xcb\xf2\x67\xa5\xa9\x8a\xf0\xcd\x36\x15\xf8\xdb\xb6\x43\x3a\xdf\xd8\xb1\xd7\x37\xe7\x59\x3c\x84\x73\x1b\x8b\xd7\x83\x09\x9d\xc5\xc9\xca\x0d\x00\x7d\xf4\xa2\x75\x60\x01\x3b\x01\x40\xcb\xd1\x81\x91\xdb\x79\xc4\xbf\x93\x92\xe0\x6e\x9e\xd5\xcd\x6b\x3b\x57\xfb\xae\x37\xc6\x68\x2d\x32\x32\xa1\xf8\xe5\xa9\x7d\xd2\xea\x37\x60\xb9\x38\x2a\xb8\x34\x83\x6f\x4f\x0c\xac\x68\xca\x47\xc9\x04\x87\x72\x84\xff\x02\x51\xcd\xf1\xd1\xcd\x09\x86\x8e\xf1\x22\xdd\x68\xe3\x00\xea\xc6\x34\x87\x44\x37\xaa\xb9\x7e\xc9\x33\xbf\x20\x9c\x39\x7c\x6d\xb3\xa9\x1b\x5f\x05\xf2\x33\x8a\xcd\xde\x6e\xe7\xc8\xa4\x28\x76\x83\xb1\x33\xa0\x40\x98\xf6\x28\xfe\x2a\x47\x82\x69\xc3\x71\x33\xf1\x85\x27\xc3\xfd\x82\xf3\x9b\x6d\xca\xa7\x4e\x65\xad\x8e\xef\x22\xb0\x1a\x06\x2e\x34\x9d\xdc\xde\xa6\xcf\xcf\x1f\xda\xfa\x99\xaf\x1f\xb5\xff\x13\xeb\x6d\x51\x15\x83\xf3\xa8\x4d\x4e\xa4\x13\x43\x8e\xcd\xa7\x9d\x13\xc5\xea\x69\xd9\x86\xe1\x24\x49\xed\x3b\xe4\xc7\x7b\x6a\xe7\x44\xb1\x4b\xbf\x0c\xd6\xc9\xa1\xba\xd7\x9f\x6e\xc8\x14\x05\x96\x37\x45\x5f\x96\x54\x65\x61\xc1\xc4\x4f\xae\x3d\xfa\x89\xdc\xce\xe1\x53\xbe\x8d\x16\x5e\x50\x3d\x08\x44\x0a\x53\x26\x4e\x87\x5b\x53\xb0\x94\x3a\xf8\x54\xa1\xff\x29\x07\x35\x67\x5b\x28\x4d\x05\x92\x6a\xcd\xc3\xbf\x3d\xf5\x61\x84\xbb\x40\x9f\x89\xf0\x75\xc8\x75\x21\x4c\xe3\x9e\x10\x28\x8a\xc2\x3e\x8f\x68\x31\xba\x8f\x96\xe1\x83\x22\x90\x68\x95\x0a\xdd\x34\xd2\x50\xe2\x66\x11\x93\x2b\x43\xb9\xf7\x7b\xdf\x7d\x9c\x5e\x06\xd4\x94\x6d\x7d\x67\x5f\x88\xf4\x5b\x88\x6e\x7e\xb1\xe7\xc8\x90\x74\x22\x20\xdc\x78\x5a\x56\xc2\xbb\xac\xff\x0e\x1c\x0b\x62\x46\x58\xb8\xf0\x3b\x2e\x5c\xf0\x3d\x13\x7e\x3b\x99\x0c\x8c\x3f\x42\x57\xc6\x11\x10\x83\x6c\x25\xb6\xd1\xd7\xff\xa2\x6c\xf2\x8b\xdb\x57\xcb\x06\x64\xe2\x2f\xf3\xba\x11\x05\xd8\xcf\xc3\xbd\xb5\x94\x3c\x28\x86\xf3\xef\x00\x24\x37\xdf\xc7\x6f\x5e\xbd\xca\x8a\xec\x52\x54\x29\xf9\x96\x70\x59\x35\xe0\xb9\x90\xf3\x54\xef\x13\xc3\xce\xc6\xe5\x45\x15\xc6\xe8\x78\xb6\x92\x3c\xab\x55\x15\x81\xf5\x21\x63\x5d\x7d\x28\xc0\xdf\x50\x1b\x00\x6d\xae\x4b\x02\x6c\xaa\x0a\xb8\xeb\x8d\x35\xd1\xdd\xc2\xc3\x55\x56\xf5\x70\x0a\x4d\x8d\x43\xb4\x24\x64\xfc\x79\x9f\xdd\x7d\x62\xcb\x5b\x43\x87\xa7\x06\x32\xd6\xb4\xf8\xd9\xbe\x61\xa2\xf3\xfa\x18\xef\x4e\x20\x41\x57\x9e\x35\xd0\x37\x97\xf6\x08\x24\x50\xb5\xa3\x12\x45\x9f\x1c\x0d\xa2\x28\x85\x58\x6a\x7e\xa5\x96\x00\x50\x6f\xf1\xb1\xfc\x20\xde\x89\xe9\xb2\xaa\xf3\x8f\x62\x7e\xdb\x0f\x91\x86\x2f\x99\xe8\x47\xa4\x91\x1b\xc5\x6d\xac\x86\x9f\x5f\x5e\x8a\x8a\xd7\x05\x2e\x8b\x6c\x07\x56\xf1\x50\xd1\x19\x60\xf7\xa7\xbc\xb9\xa2\x8d\x7c\x80\x57\xed\x7e\x1c\x87\xd0\x89\x57\xb2\xcf\xea\xb5\x16\x9d\x6c\xd9\x69\xcf\xe9\xd6\x3a\x32\x89\x5b\x74\x07\xb7\x66\x49\x01\xb9\x45\x6b\x6b\x69\x5d\x17\x97\xb0\xab\x68\xd5\x6c\x47\xcc\xa5\x62\x16\x44\xf2\xa4\xb6\x6f\x3a\x66\x1f\x49\x5c\x3f\x95\xfc\xe8\x8c\x3b\x24\x78\x6d\x82\xf7\xe6\x77\x1d\x7c\x2f\x67\x31\x82\xd2\x16\x4b\x78\xf2\x66\x21\x8a\xbc\xb8\x84\x0c\x5a\xe5\x5b\x54\xfc\x74\x5e\xd6\xaa\xd4\xb0\xa3\x41\x25\xaa\x89\x5b\x72\xb7\x47\x53\xe5\xde\x9a\x68\x01\xb0\x9b\x34\x5b\x00\xe8\x53\x66\xd9\x88\xea\x2f\x67\xaf\x5e\xa6\x0e\x15\x92\x1b\x2e\xb9\xba\x54\x89\x36\x99\x95\xd7\xb4\x95\x1e\x99\x5d\xd5\xe5\x3f\x98\xa3\xd2\xb5\x7e\x49\xc3\x0e\x46\xbb\x2a\x0b\xdc\x77\xb1\x52\x64\x52\x6c\x38\x75\xaa\x6d\xac\x3e\x54\x38\x94\xe8\x71\x3d\xc0\x56\x6c\xc1\xdb\x84\x5e\xb4\x0c\xd1\xd2\xa3\xf2\xc6\x88\x09\xa1\x17\x36\x51\x2c\xaf\x45\x95\x9d\xcf\xc5\x24\x54\x44\x72\x93\x17\x65\x75\xed\x24\xdb\x3e\xb9\xef\x1b\x8f\x21\xe8\x97\xdb\xf6\xb4\x1d\x78\xd5\xd3\x55\x05\x0b\x1a\xb5\xc9\x7b\xbc\x13\x66\xee\x73\xe0\xa5\x68\x26\x9d\x35\xd5\xeb\x32\x6f\xb2\x66\x7a\x35\xf9\x20\x5c\xac\x4c\xaf\xb2\xbc\x08\x03\x83\xf4\x21\x90\xe1\xfb\x73\xc7\xf0\xf3\xdd\x8d\x6f\xeb\xb6\xbc\x9b\xb3\x75\x8d\xf2\xd6\x3e\x9a\xce\xf3\xf3\x2a\xab\xfc\x6e\xb8\x5e\x46\x74\x2a\xec\xed\x7e\xf2\xf9\x3c\x2b\x3e\xfc\x5f\xfc\x0c\x6a\xbb\xac\xfe\x4a\xbe\xd2\x59\x82\xdb\xd1\x03\xb7\xa7\x87\x6e\x4f\x0f\x3d\x5c\xba\x3d\x3d\x74\x7b\x7a\xe8\xf6\xf4\xd0\xed\xe9\xa1\xdb\xd3\x43\xb7\xa7\x87\x6e\x4f\x0f\xdd\x9e\x3e\x72\x7b\xfa\xc8\xed\xe9\xa3\xaf\xa4\x91\xe9\x3f\xb4\x06\x9e\x89\xcd\xde\xea\x59\x52\x9a\x2c\xbc\x35\x2d\xcf\xeb\x69\x95\x9f\x0b\x0f\x50\xe7\x00\xdc\xb2\xe8\x86\x64\x79\x4a\x2c\x14\x30\xe1\x84\x54\xba\xc5\x15\xa2\xca\x1a\xf1\xc3\x32\xf7\x15\xf6\x78\x26\xfa\x2d\xfd\xf1\xf9\xf1\xe4\xc5\xc9\xdf\x3d\x48\x95\x61\xa0\xc8\x7a\x31\x08\x88\x79\xd8\xfe\x32\x9f\x3d\x73\x9e\xc2\xa1\x69\x4c\xc7\x3b\xda\xc9\xd9\x93\xc9\xf1\xc9\xe9\x53\x0f\x4a\xe7\xe0\x9c\xbd\x7a\x7b\xf6\xf7\x89\x4c\xf3\x00\x4d\x16\x4d\x5c\x93\x79\x30\x32\x51\xdd\x6c\x5f\x85\x00\x28\x5d\xdd\x70\x83\x30\x35\x83\x91\x15\x7a\x36\xa6\xaa\x25\x6d\x5e\x1a\x0a\xcd\xf3\x3b\x27\x34\x0f\x86\x22\xf1\x40\x30\x19\x21\xaa\xdb\xa7\x72\xc3\x7f\x96\x17\xd9\x7c\x7e\xeb\x83\xda\xf9\x64\x36\xeb\x3b\xdf\x87\x96\x31\x1d\xc7\x90\x7d\x10\x61\x28\x9d\x83\xef\xfc\x59\xf1\x1c\xee\x00\x1e\x9c\xce\x51\xfd\xec\x80\xd3\x39\x0a\x6e\xcd\x50\xf8\x28\x6e\xaa\x6c\xe1\xc1\xc8\x44\x74\x8e\xbf\x58\x04\xaa\x80\x54\x93\x7f\xda\xf8\x04\xa8\x32\xd6\xe9\x6c\x7c\x1b\x50\x92\xd5\x3c\x90\xaf\x18\x16\x10\x3f\x20\xaf\xec\x59\x36\x63\x32\x40\x28\xae\xc9\x83\x51\x19\x34\x4d\x0b\x4f\x4b\xe3\x9a\x50\x40\x51\xb2\xbd\x7c\x4a\x47\x98\x7c\xde\x38\xfb\x1d\x80\x40\x32\x91\xe9\x4c\x7c\x72\x68\x10\xcc\xab\x31\x7d\xf8\x1f\x1f\xc3\x21\xa4\x02\x71\x1f\x5c\xc9\x11\xe8\x78\x5c\xea\x0d\xa9\x91\x57\xd0\x63\x2c\x11\x84\x63\xf9\xb6\x41\xf7\xd9\x72\x31\x17\x7e\x11\x3b\x1f\x79\xf4\x4b\xd1\x78\x4b\x13\x80\x55\x4e\x30\x5a\xc4\x81\x89\x16\x91\xcd\x66\xea\xbe\xe8\xc3\xb0\x4c\x16\x69\xa1\x1b\xde\xce\xa7\xc3\xa0\x96\x20\xdd\x65\x1c\x80\x50\xa1\x7a\x63\x29\xd2\xbb\x11\xc5\xec\xe4\xa3\x7b\x42\x21\xbc\xca\x22\xa5\x99\x7a\x4d\xdd\x3c\x17\x97\xa6\xdc\x71\x04\x96\x0f\xc0\x5b\xd9\xe8\x00\x4f\x15\x77\x8f\x04\x80\xe7\xb9\x36\xf8\x71\x7e\x71\xb1\x06\x5e\x66\xdb\x05\x7e\x2c\xf2\xd0\xdc\xda\xf9\x50\x44\x39\xc9\x3c\x0d\x68\x09\xb9\x84\xed\x4b\x65\xfc\x60\x23\x3e\x8c\x55\x54\x8b\x46\xba\x4b\x6a\x10\x24\xd1\x8f\xa2\xaa\xf2\x99\x78\x0a\x97\x83\x40\x70\x13\x2b\x1f\x85\x50\xe2\x32\xd7\x26\xb1\x58\x55\xa0\x60\x08\x0a\xcd\xc7\x8b\xd9\xc6\xc2\x3e\x0c\x6e\x77\xf0\xfb\xad\xbe\x7b\xf8\x05\x5d\x08\x28\x76\x2c\x50\x57\xdb\x25\x0a\xb9\x4f\x9b\x3c\x00\xc5\x3b\xb1\x6a\xdb\x07\xb7\xf3\x83\xc2\xea\x03\xae\x4b\xd7\x54\xb7\xde\xcc\x7f\x8b\x87\xd0\x29\x81\xbc\xa9\x40\xd2\xe7\x81\xfd\x7e\x32\x19\x98\x3c\xe4\x64\x9c\x6d\x1a\x60\x5e\xd1\x3e\xfd\x2a\x5b\x74\xee\x7c\x04\xe7\xee\x7c\x72\xaf\xea\x40\x66\x40\x9f\xaf\xee\x86\xfe\xa3\x0f\x0d\xab\xf3\x85\x70\x70\xf8\x27\xb5\x6e\x5f\x88\x5b\x62\x46\xbb\x01\x4d\x1e\x1e\x32\xf3\x65\x7d\xf5\x56\xc0\xed\x30\x40\xae\xf2\x86\x31\xf0\x61\xd8\x06\x0a\x09\x3f\xc1\xae\x51\xf9\x45\x7d\x18\x7c\x68\x90\x09\xaf\xcb\x99\xf0\x4b\xe8\x2c\x3a\x03\x8b\xbc\xbe\xea\xec\x18\xcb\x35\xf8\xf1\xce\x90\x43\xbd\xb1\xe9\x43\x84\xb0\x10\x06\x65\x99\xa6\xd6\xd4\xbd\x56\x61\x8d\xc4\xb4\xfd\x44\x17\x7b\x1f\xca\xe4\xf1\x86\x7d\x38\xca\x20\xcc\x76\x00\x51\x06\xad\x2a\x10\x75\xfb\x40\x94\x41\x6e\x25\x16\x99\x5e\xf6\x2e\x85\x1d\x06\x9f\x80\x50\xd4\x10\x5c\xad\x87\xf8\x16\x64\x43\x74\xab\xa5\x02\xb8\xa5\x97\x3a\xcd\xa6\x57\xc2\x3d\x47\x10\x8c\x72\xd4\x39\x1e\x8c\x7d\x24\xaf\xa6\x5e\x74\x26\x25\x05\xf1\xce\x27\x80\xe6\xb9\x8c\x6a\xbb\xab\xbf\x77\x30\x27\xd5\xa9\x50\x34\x26\x3a\xd9\x37\x95\x0e\xc3\x59\x55\x6c\x2e\xbc\x45\xcb\xf5\xb6\x4d\xd7\xc1\xb6\xd7\x14\xb7\x0b\x9e\xdb\x95\x05\x27\xc6\x87\x61\xd3\xb3\x09\x61\x9d\xf1\xaf\x3a\x7c\x1c\x1d\xfe\xde\x77\x72\x74\xed\x3d\x54\x02\xd4\xb5\x7e\xa9\xf4\x5f\x32\x01\x80\x3d\x65\xe2\xeb\xe4\xcc\x87\x51\x39\x48\x3e\xf3\x3c\xab\x5f\x89\xe6\xaa\x0c\x40\xb2\x4c\x8b\x9a\x7d\xc8\x92\x8f\x33\xbf\xbe\x16\xb3\x3c\x6b\x3a\x70\x24\xe1\x3d\x90\xc0\xd4\xf8\xa5\xce\x7d\x9c\x86\x22\xd3\x1d\xba\xa1\xe9\x3a\xdd\x3d\x01\xa4\xe7\xef\xc9\x73\xc2\x0b\x60\xe0\x85\x17\x79\x7c\xf1\x93\x73\xbd\x05\x00\x4c\x0f\xbe\x23\x1f\x06\x8e\x4b\x2d\xc8\x4c\x5d\xe1\xd4\x16\x6e\x86\x1f\xed\xdb\x7e\x86\x8b\x20\x40\xa1\xb2\xf3\xfa\xe4\x7a\xe1\xec\x97\x8f\x0e\xa0\x0a\xc8\xc0\xed\x38\x0c\x22\x34\x40\x5e\x7f\x3f\xcf\x8a\x0f\xa9\x2b\x19\x0b\xda\x7d\x3e\xb7\x5f\x08\xc8\xf4\xc1\x4d\x5d\xb5\xc3\x10\x34\x13\x74\xa5\x4c\xe6\x15\x04\x35\xa2\x2d\x23\xc8\x0a\x02\x72\x29\x18\x97\x7a\x05\x81\x51\x0c\x86\x62\x2f\xec\xfa\x9a\x2e\x75\xf7\xc1\x92\x88\xa5\x96\x78\x0c\xf3\xb5\x80\x4c\x0b\xc4\x58\x3a\x89\xc4\xb8\x08\x0c\x73\x49\x0a\x40\xb7\x7e\x4c\xd3\xf7\x7e\xeb\x9e\x6f\x42\x26\xbe\x2d\xe7\xb7\x17\xf9\x7c\x4e\x1e\x25\x07\x4e\xa2\x9a\x09\x3b\x79\x70\x9d\x2d\xd2\xeb\x6c\x11\xcc\x53\x72\x02\x25\x17\x08\xc2\xa0\x9c\x80\xe4\x02\x21\x08\x25\x27\x50\x72\x01\xb2\x3d\x03\xd9\x89\x11\xa3\x28\x74\x92\xf4\x4f\x49\xfb\x30\xd5\xc8\xfb\x8c\x7c\x8f\xaa\x31\x12\x3e\x26\xd1\xc3\x3c\x90\xe9\x81\x0c\x4f\x4d\x15\x4a\xe8\x94\xd4\x8e\xa6\x96\x52\x6b\x2b\x55\x4b\xea\xb4\x64\x4e\x13\x09\xc8\xe6\x94\x2c\x0e\x53\x49\x1a\x47\xd2\x37\x4a\x73\xe4\x6f\xae\xbc\x8d\xea\x23\x89\x9b\x92\xb0\x51\xeb\x5a\xc6\x66\x64\x6a\x44\x18\x5a\xaa\x66\xa4\x68\xba\x3d\xca\x31\x72\x33\x9d\xc3\x3a\x61\xb7\x0f\xb2\x32\x90\x8d\xe1\x37\x4a\xc7\x50\x1a\xc6\x52\x4e\x9b\x2a\xd5\xf2\x2f\x4c\x7f\xc9\xc3\x60\x1b\x0c\x4b\xec\x9a\x2f\x7e\x7d\x71\xe4\x34\x08\xe3\x48\x6a\x1c\xc1\x0c\xc2\x18\xd1\x8c\x92\xc4\xd0\xdc\x3b\x92\x35\xe7\x9b\xa0\xca\x22\x2d\x0b\x35\x16\x26\xa2\xe1\x12\x19\xcc\x75\x64\x32\x8e\x08\x86\xfa\xe2\x4a\x61\x5c\xa1\x4b\x18\xac\x76\xe1\x6a\x4d\x7d\x4a\xd0\x62\xe4\x2a\x98\x63\x49\x56\x2c\x41\x0a\xcd\x9c\x25\x4a\xb1\x25\x27\x08\x61\xc9\x4e\x2c\x51\x89\x93\x0f\xc2\x12\x5b\x36\xe2\x40\xa0\x74\xc4\x11\x86\xd0\x50\xb9\x3c\x84\xfd\x56\xbb\x96\x2f\x01\x09\x08\x3c\x6c\x58\x23\xf2\xf0\x25\x1c\x34\xa9\xb6\x8c\xc3\x11\x69\x20\x4c\x50\xa8\x11\x94\x61\x20\x7c\x40\x8a\x11\x10\x5a\xd0\x32\x74\xc5\x16\x9e\x94\x02\xe1\x98\x9c\x82\x89\x25\x30\xcf\x11\x4c\x38\x72\x08\xbd\x39\xa5\xe6\x84\x22\xd1\x03\x49\x1a\x30\x8d\xc9\x1a\x98\x68\x81\xb6\xcd\x6c\x91\xbe\xd2\x4b\xdb\x91\x26\x38\xc2\x03\xbd\x64\xd9\xa0\xac\x2f\xd3\x23\x06\x51\x07\x20\xf4\xed\x5f\x5f\xf5\x31\x9d\xc9\x05\x98\x18\x00\xf3\x02\x82\x80\xc0\xbd\x9f\x2f\x53\xeb\xe6\x1f\xb8\xe8\x13\x71\x9a\xbb\xbe\xb9\xda\x53\x93\xfc\x72\x6f\xdd\xe5\xd9\x30\x60\xdb\x31\xf7\x71\x6b\x20\x90\xc7\x6f\xeb\xac\x1c\x96\xd1\x7b\xbc\xbe\xa0\xb3\xfb\xb8\x55\x97\xaa\x47\x0f\x11\x53\xd5\x8d\x5b\x11\x0c\xde\xb9\xd5\x15\x9b\xc8\xd6\xbd\x64\xbb\x09\x04\xe7\xdd\xad\xbd\xab\x34\x91\xb6\xba\x4c\xeb\xbb\xb3\x3a\x79\xe8\xf6\xac\x2f\xcb\x7a\x4f\xd5\x0c\x3d\xbf\x1d\xd3\x42\xe5\xd7\x30\xeb\x3a\xcc\x27\x53\x57\xe0\xdc\x7f\x75\x0b\xce\x95\xcc\xbf\xf0\xda\xdb\xae\x7b\x83\x0b\xdf\x70\xd7\x95\xa9\x3b\x0a\xd5\x4e\x29\xaf\x8d\x8e\xda\xfd\x7a\xdd\x1a\x03\xd7\xd6\xc0\x2d\x95\x63\xcd\x19\x65\xf0\x5a\x4a\x5c\xb9\xb9\x98\xb2\x7b\xa8\xaa\x8b\xee\x91\xfa\xda\x48\x58\x67\x17\x47\x7e\x4f\xb4\xe7\x55\xcf\xa9\xa2\x75\xef\x6a\xe8\xdf\x04\x43\xe3\x75\xc6\xaa\xf8\x20\xb8\x04\xe3\xa5\x98\x36\x31\x48\x79\xc5\x52\xe8\xb6\x46\x97\x33\xaa\x5b\x5e\xf0\xe0\x3e\x87\xdf\xea\x12\xa9\xee\x8c\x6a\x5d\xb2\x5b\xa3\x75\x49\x24\xcc\x2c\x8b\xb4\x5a\x16\xfa\x2c\x54\xd7\x39\xfd\xcb\xcd\x19\x18\x37\x16\x95\x78\x09\xa9\xb7\xe4\xa1\x23\x42\xef\x2b\x83\xbf\x9e\xbc\x3b\x7d\xfe\xe6\x75\xac\xbb\x00\x37\x3f\xba\xe8\x29\x96\xa8\x90\x8c\x90\xfe\x56\x77\x3b\x75\x95\xa3\x65\x0f\x69\x82\xa5\xa8\xdb\x1b\xfd\xd7\x8c\x6c\x75\x29\x52\xf8\x6b\x10\x06\xbc\x37\x18\xb4\x69\x5f\x11\x93\x09\xba\x4f\xa2\x31\x54\xb7\x4a\x6d\x6c\x26\xce\x97\x97\xd1\x38\x5e\x39\xea\xd0\x3c\x37\xee\x72\xfa\x00\x75\x87\x15\xd3\x94\x9a\xd7\x28\xac\xa1\xb3\x4e\x15\x03\x2f\x18\xda\xc4\x18\x3e\x8d\xc9\xb1\xba\x52\x67\x4d\xfe\x51\x3c\x5b\x16\x53\x16\x71\x75\x59\x4c\xb5\xdf\x0a\xf9\xb1\xbb\xfb\x8c\xf2\x98\xaf\x8b\xa6\x24\xf7\x17\xe0\xd5\x1d\xca\xa8\x4b\x4c\x3f\x1a\x15\x50\x6f\x6f\x5a\xce\xc4\x38\x8a\xbf\x7b\x70\xd0\xea\xf7\x56\xde\x68\xdf\xee\xa4\xbc\x67\xc5\x8f\xfd\xb4\x23\xde\x37\x6d\xfe\x9c\xa6\xe9\xc7\x32\x9f\xf5\xf6\xef\xee\xe8\x53\x4e\x16\xf7\x88\x73\x76\xbb\x10\x70\x6f\x02\xf5\x71\xc9\x78\xbd\xd7\xe1\xa7\x51\xfa\x20\x8a\xb4\x51\x8e\xf1\xbf\xfb\x6e\xdf\x72\xee\x59\xec\xa4\x69\xa4\x5a\x8e\xba\xeb\xad\x44\x0d\xe1\xb0\xa1\xdf\xfd\xb9\x28\xb0\x6e\xd9\xca\x82\x79\xf9\x3f\x18\x3b\x11\xfb\xe6\xa2\xc0\xe8\x1f\xf9\x45\x3f\xef\xe5\x45\x0f\x42\x0d\xd6\xa3\x1c\x9c\x90\x99\xb0\xd1\x8b\xa4\x19\xe5\xe3\x24\x4f\x9a\xb8\x65\x46\xac\xad\xf5\x4a\xbd\x0e\xab\x04\xe3\x61\x96\xd2\xff\xbd\xb1\xfb\x59\x68\xec\xc6\x5f\x6b\xbd\xca\xaf\xc3\x1a\xc1\x78\x58\xa3\x74\xe6\x4c\xfa\xfc\x7d\x72\x51\x95\xd7\xcf\x65\x06\x74\x43\x7f\x69\x5b\x2b\x9e\xc2\xcc\xad\x4c\xf2\xbe\x36\x6c\xd2\x69\x7f\xde\xe7\x00\xaf\xb2\xe6\x6a\x70\x9d\x7d\xea\xef\x63\x2c\x4b\x44\xeb\x9e\x69\xb8\x35\x68\xd1\x89\xc9\xfb\x94\x01\x0f\xf3\x3f\xbf\xd7\xa8\x92\xe9\x92\xd4\xd2\xb4\x3c\x7f\xaf\x97\x7b\xae\x28\x4c\xad\x58\x92\x5c\xac\x25\x2f\x00\xf1\xa9\x0b\x92\x19\x71\x15\xda\xaa\x0a\x54\x9a\x73\x34\xeb\x24\x43\xaa\x74\x34\x4e\x28\x50\x20\xef\xb1\x1c\x93\x9e\x66\x1d\xd8\x52\x39\x30\x70\xbc\x14\xe7\xb1\xac\x79\xbe\x44\x33\xf6\x51\x3e\x46\x5f\x99\x76\x14\x2b\x6c\x34\x07\x24\x6a\xeb\x35\xd4\xcb\xa6\xb0\x53\xad\x63\x29\x6e\xb6\xff\xd3\xbf\x3c\x7f\x35\x39\x39\xfd\x16\x1d\x25\x07\xf6\xae\x95\x9f\x96\x5e\x67\x8b\x36\x00\xae\x16\xa5\x5b\xc4\x11\x27\x05\x8b\x22\xc2\xbd\x92\x5c\xc8\x14\x2a\xa7\x28\xda\x2d\xe8\xc8\x9e\xec\xe8\x81\x4a\xf4\xc5\xd3\x5c\x91\x97\x95\x67\x89\xba\x78\x8e\xdb\x4c\xf8\xc0\xd3\x6a\xb0\x5f\xdd\xda\xac\x5b\x2b\xdb\xd7\x42\xee\xd0\xdb\xfd\xad\xad\xcf\x2c\x55\xa6\xdf\xc0\x1a\x6d\xdd\xfb\xfe\x23\xfb\x79\x7f\x2b\x0d\x45\xe7\x5d\xff\x5b\xf6\xac\xdf\xf5\xc0\xf8\xfb\xc0\xfb\xe2\x9a\x07\xc3\xdf\x87\xdf\x0b\xd7\xbe\xd9\xfd\xbe\xeb\xc9\x6e\x83\xf3\x1f\x12\xf9\xbd\xf9\x41\x5d\x1e\x4e\x31\x16\xc0\xdd\xdd\xce\x0e\x09\xe3\x5e\xff\xd5\xca\x57\x0f\x62\x3f\xbc\x7c\xf3\xfd\x93\x97\xe9\xc3\x7f\xf4\x47\x4f\x1e\xfc\xef\xff\x1c\xdf\xf5\x47\xfb\x0f\xfe\x34\xc6\x8f\x38\x66\x31\x2c\x7c\x7f\xd7\x6a\xeb\xd6\xd5\x30\x3f\xcd\xc6\xd1\x1e\xc9\x15\xb1\x70\x0d\x67\x96\x55\xfa\x52\x34\x01\x5f\xda\x8f\x89\x77\x47\x27\x7b\xba\x50\xcb\xdf\x9c\x8c\xcf\xeb\x12\x22\x2d\xcb\xc3\xe7\x2d\x54\x8d\x86\x3a\xb3\xbc\xc2\x18\xa6\x69\x74\x71\x33\x23\x27\x3a\x13\x09\x95\x2a\x50\x4a\x6b\xca\x14\xeb\x18\x3a\x25\x49\x44\xa3\xcc\x88\xe2\x76\xa8\xc2\x0d\x58\x01\xe1\x17\xb7\xae\xd9\x8c\x4c\x03\xde\x8c\xe0\xfb\xaa\xa1\xc4\xf4\xc2\x44\xfc\x9d\xe0\xf5\x28\x86\xaa\xd4\x17\x3a\xea\x27\x2c\xc9\x8c\x16\x46\x68\xbb\x3f\x57\x63\x85\x51\x81\x9f\x22\xcb\x6b\x46\x53\x86\xc1\x9b\x32\x00\x8c\xcd\xfa\x06\x4f\xac\x3b\x6e\xed\xc8\x89\xbb\x83\x57\x05\x58\xe9\xc7\xd1\x08\x7f\x8c\xa3\xa3\x48\x39\x0e\x8e\xac\xeb\xdf\x9f\xa3\x3d\x5a\xa2\xc8\xc9\xed\x45\xdf\xf5\xa3\x3d\x33\xbc\xbd\xa8\xf7\xe0\xbb\x9e\x4a\x69\xca\xbd\x28\x8e\xf6\xb0\x52\x70\x16\x5f\x88\x69\x63\xf1\x46\xe4\x5a\x9f\xa6\x3a\x35\x35\x25\x38\xd9\xa9\xaa\x69\x88\xbb\x07\xd0\x26\xd1\x52\x80\x6a\x35\x79\xd9\x21\xcd\x79\x16\x8b\x5b\x2e\x93\x4c\xb8\xef\xa1\x8e\xed\xad\xa7\xda\xad\x83\x1a\x36\x35\x34\x25\x0b\x17\x8e\x65\xc1\x71\xe6\x59\x79\x7a\x5b\x4c\x03\xd3\x31\xcb\xeb\x6e\x34\x34\x37\xa5\x9c\x13\xab\x13\x6e\x48\x73\xe8\x06\xc3\xd2\x9a\xc1\x60\x75\x2a\xd2\x7a\xa0\x06\xa2\xf4\xad\x86\x82\x71\x4b\xac\xb1\x58\x2d\x32\xef\xf6\x59\x75\x29\x1a\x6d\x89\x47\x06\xa1\xb2\x12\xca\x4a\x60\xa9\xc7\x92\x36\x3f\xaf\xf8\x79\x36\xfd\x20\xcb\x5b\xb9\x36\xcb\x3d\xcb\xc9\x7f\x85\xb5\x4d\xf8\x3b\x07\x29\xd9\xe4\x75\x93\x17\x97\xc7\x79\x95\xf2\x4c\x79\xd8\xc1\xec\x00\x69\x30\x28\x34\x4d\x36\xb6\xae\xf5\x6d\x31\x8d\x18\x2e\x27\x32\x21\x81\x92\x56\x7d\x35\x11\xb0\xec\x1d\xc6\xa7\x30\x0d\xa7\x29\x8e\x6b\x77\x77\x86\x5f\x80\xa4\x55\xb0\x3c\x21\x50\x62\xc0\x1d\xb9\x72\xed\x4f\xee\xf8\xec\x03\x25\xbf\x90\x20\xc6\xcc\x56\xcc\xee\xee\x76\xbc\xb9\xb6\x62\xda\x6f\x83\x3f\xb3\x89\x87\xb1\xb7\xed\x12\xb7\x4a\x93\x89\xb6\x42\xbf\x69\x43\xa3\x46\x55\x8b\x3e\x37\x02\xbb\x81\xb3\x8d\xcf\xcb\xcb\x78\xc5\x5f\xde\x06\xf3\xf2\xb2\x1f\xf5\x22\xb5\x00\xc8\x4b\x45\x9c\x44\x0f\xbe\x8b\x12\x5d\x35\x4c\x64\xeb\x9d\x03\xfe\x86\xa4\x4b\x90\x67\x08\x97\x4d\xd8\xb8\x87\x70\xaf\x10\x6b\xab\x8f\x8d\xab\x0b\x0b\x31\xb8\x32\x70\x33\x29\x35\x5e\xac\x25\x7f\x5f\x54\xfc\xf9\x41\x94\x50\x5d\x88\x88\xe0\xa8\x36\xed\xae\x81\x91\x59\x0c\x85\xde\xb8\x7d\xa6\xc2\x54\x5d\x9a\xd1\xb3\x58\xc1\x20\xdb\x34\xb2\xfa\x7e\x53\x42\x11\x13\xdf\xe5\x83\xb8\x95\x37\x7f\x4c\xa4\x3b\xb4\x7b\x3b\xfc\x20\x6e\xe3\x78\xd5\x94\xa3\x0f\xe2\x76\x0c\xac\x07\xfc\x6a\xdb\xd6\xad\x5e\x85\xae\x5a\xd9\x07\x3d\x22\xfd\x29\x10\x73\x42\xd7\x14\x60\x2e\x9e\xf2\x98\xc9\x92\x2b\x81\xe6\x31\xfa\x21\x25\xf1\x38\x9f\x16\x3b\xb0\x7d\xa5\x4d\xb9\xa6\x4a\x97\x69\x80\xc5\x77\x31\xcf\x2e\xbb\xeb\xc7\x78\x2c\xb8\x74\x9c\xa6\xb0\xb6\x3e\x94\x6f\x5b\xe6\xc8\x41\x02\x10\xbd\xd2\x0c\x30\x7f\xbc\x9a\xc7\xa2\xbc\x01\x1d\x83\x7d\xa4\x29\x76\x13\x34\x92\x67\x5d\x33\x35\xb9\x75\xdd\x04\xbf\xa6\x11\x5b\xe4\xcd\x73\x5c\x41\xb7\x75\x49\xed\x12\x77\x77\x5c\x57\x95\x71\xe9\x97\xdc\x56\x43\x57\xd2\x90\x79\xaf\x65\xe0\xfa\x5b\xfb\xca\xff\xe2\xeb\xe5\x1a\xf3\x93\xc3\xb0\xf5\x89\x67\x7e\xf6\x88\x9b\x9f\x81\xd2\x8b\x6b\x64\xf7\x48\x59\xbb\x29\x23\xbb\x90\x55\xcf\xef\x1c\xab\x9e\xa0\x66\xf6\xb7\x5b\x6a\x70\x7f\xeb\x2b\x70\xcb\x2e\xca\xab\xb0\xfc\x9f\xdc\x64\x95\x52\x03\x93\x3f\x93\x67\xcf\xdf\x9d\x9e\x41\xbf\xe5\xed\xef\x1f\x3f\x0f\xc6\x7b\xfc\xbe\x77\x91\x57\x75\xf3\x42\xdc\xda\x77\xbd\x05\x0a\x03\x9b\xe9\x55\x5f\x97\x8f\x47\xfb\x63\x8c\xef\x85\xcf\xc1\xff\xbd\x14\x4b\x91\x8e\x98\x27\x6d\xff\xb1\x18\x1d\x73\xf0\x02\x24\x78\x4b\xd3\x74\xdf\x62\x12\xfe\x09\xb5\x71\xc8\xa1\xd7\x0e\xa2\x10\xc5\x6d\x00\x6f\x68\xf3\x9f\xf1\xea\x9f\xa3\xfd\xb1\xbc\xb9\xf7\xff\x39\x3a\x18\xc7\x6d\x3c\x94\xc3\xef\x47\xea\xa9\xb7\x97\x15\x3d\x2d\x19\xed\x5d\xc2\xba\x4b\x90\xca\x7a\xe2\xd3\x42\x4c\x9b\x5a\x19\xc6\x50\x6e\xdd\x6b\xca\xde\xb9\xe8\xd5\xa2\x59\x2e\x7a\xe7\xb7\xe0\x0e\xb1\xc9\xaf\x05\xfc\xa8\x96\x45\x6f\x5e\x96\x8b\x5e\x5e\xe3\xc0\xc5\x2c\xe9\x4d\xaf\xc4\xf4\x83\xa4\x81\x5e\x73\xbb\x28\xeb\x28\xe9\x1a\xba\xb5\x93\x6c\xf7\xee\xae\xd1\x9c\xcd\x66\xfc\x91\x1d\xf6\xb4\x0f\xe2\x16\x02\xed\x17\xe5\x4c\xa0\xf4\xb0\x3c\x7f\x7f\x77\x17\x51\x74\xd8\x1d\x1d\xbb\x89\x09\x63\x01\xef\xd7\x29\x51\x0f\x6c\x70\x50\xbe\x4e\xaf\x07\x53\xd6\x00\x84\xf9\xdd\xf1\xce\xbb\xc8\x82\x89\xe2\x78\x15\x2c\x9c\xae\x5a\x8c\x19\x24\x33\x47\xd4\xcf\x31\x01\xeb\xef\x74\x34\x6e\xed\x14\x14\x99\xc2\x78\x86\x8a\xda\xad\xa1\x5e\x5b\x6e\xfe\x5d\xd5\x83\x2f\xc5\x4a\x79\xfe\x7e\xa4\x16\x36\xc8\x79\xaf\x77\x77\xb7\xc1\x01\xab\x84\xd0\xb1\xbb\x1b\x40\x27\xe4\xed\xee\x06\x91\x92\xda\xa9\x4e\x8c\x77\xc8\xf4\x02\xbc\xab\x2a\x51\xe2\x8e\xe3\x45\xc8\x7a\x31\xcf\xa7\xa2\x9f\x27\x07\xca\xe1\x66\xdb\x9a\xfd\xa3\x13\xa3\x5a\x51\xa3\x8f\x2e\x7b\x25\x10\xca\xb6\x6d\x57\xbe\x29\xfe\x23\x89\xca\x07\x71\x9b\x7e\x10\xb7\xf4\xa5\x5c\x1d\x60\x2c\x51\xfe\x32\x41\x00\x98\x8e\x91\x46\x55\xa5\xcd\x15\x68\x49\x6a\x5e\x59\x55\xa2\xc5\x14\x18\x20\x17\x9b\x1d\x7c\x34\x6e\x62\x79\x36\xdc\xbb\x2d\x72\xe0\xb9\x89\xee\x2c\x4a\xe9\x5b\xd7\x63\xf1\xee\x2e\xff\xc2\x61\xa5\x69\xf4\xff\x13\xd9\xf4\x2a\xa2\x8e\x50\xcb\x18\x31\x54\x63\xcb\xbc\x87\xea\x24\xf6\x26\xaa\xb1\x3b\xcf\xfe\x75\xfb\x03\x71\xd5\x92\x6f\x54\xb4\x19\xd3\xfe\x6b\x10\xa5\xcf\x25\x9f\x20\x45\x93\xed\xee\xca\xbf\xd8\x02\xbd\xb4\x78\x35\xe4\x17\x7d\xbb\xff\x4c\x22\xa7\xda\x57\xd6\x24\xd3\x94\xd5\x2a\xbf\x81\x0c\xa1\x39\xf9\xb5\xbb\x2b\xff\x0e\x26\xa0\x7c\x92\x9d\xcf\x71\x51\x11\x73\x0c\x65\x20\x47\x1f\x23\x26\x09\x59\x61\x16\xee\xce\x74\x50\x3f\x87\xf0\x0e\xb5\x3e\x46\x11\xe3\x69\xc0\x4d\xf5\xc4\xa3\x2f\x35\x81\x86\x78\x50\xb1\x9e\x9e\xab\x26\x0e\xf5\xf0\x5a\xf8\xd4\x68\x3a\x71\xdc\xea\x01\x64\x3b\x0c\xf4\x51\x69\x07\x85\x7a\xd9\xd5\x19\x24\x4a\xba\x59\x2b\x59\x8b\xb7\x97\xb9\x34\xeb\x2c\x31\x10\xae\xb4\xc1\x3e\x81\x90\xd2\xbf\xe0\x57\xa2\x41\x46\x5d\xaf\x74\x74\xaf\x2a\xff\xc0\x59\x80\x6b\x91\xad\xcb\x44\x47\xf6\x94\x3f\xe4\x9c\x43\xb2\x0e\x63\x56\x8f\xe4\xdf\xf1\x9f\xe5\xd1\xae\x43\x79\x56\xa2\x81\x53\x19\x05\xbb\xfa\xe5\xab\x09\x76\x35\x9b\xcd\x52\x47\x92\x49\xb8\x4a\x1a\xc9\xa6\xc1\x2e\x54\x57\x53\xec\xdb\xd0\xeb\xe1\x90\x75\x23\xe5\x7d\xba\xbb\xdb\x8f\xf7\x0e\x86\x1a\xe9\x7a\xe6\x03\x0a\xaf\x46\x78\x0d\xdb\x8a\x4c\x1a\xed\x8f\x77\x77\xd5\x2f\xf5\xa4\x89\xee\xc3\x21\xf1\x60\x3c\x94\x6b\xcc\x66\xa6\x86\xda\xab\x3c\x06\xf6\x97\x0b\x45\x3d\xab\x1e\xc4\xc6\x01\xa6\xaa\x37\x5e\x59\xdc\x02\x9c\x7f\xa3\x46\x85\x58\x1b\x53\x67\x15\x17\xb1\xaf\x5c\x56\xa2\x7f\xc8\x6a\x9a\xaa\x7a\xa0\x2b\xac\xd9\xfd\x64\xff\x41\x5f\xf5\xd3\x74\x40\x45\x08\xa5\x8c\xd6\xa9\x1d\xbd\x3a\xc9\x29\x92\xfd\x46\xbf\xb3\x75\x35\x8d\x83\xf3\x86\x34\xfb\x65\x53\x67\x13\xd1\x77\xfb\x88\x60\xfa\x7c\xf0\xa0\xfd\x82\xb9\xfb\x8a\x33\xf6\x4b\x61\x7a\x59\xd8\xb8\x0e\xe3\x79\x5a\x2e\x8b\x26\xdd\x0f\x66\xc9\x24\x33\x03\xd6\x9c\xad\xc8\xc8\x37\x57\x11\x28\x27\xf8\x01\x8c\x11\x70\x77\xf8\x1d\xaf\x02\x40\x92\x81\x93\x70\x29\x7e\xea\x03\x61\xc7\x70\x19\x3c\xcb\xd9\x53\x80\x7e\x69\xea\x63\xa8\x07\x07\xb1\xb7\x67\xe2\xcc\xde\x77\x22\x86\x58\x8d\x83\xaf\x20\xc2\x08\xad\x3e\x5e\xd6\xe3\xc4\x1d\x2b\x0b\xd2\x48\xea\x26\x07\x9f\xdb\x6d\x7f\xa2\x0d\x52\x1e\x3c\x50\xbc\x21\x7e\xc3\x4e\x4a\xb1\x96\xa9\x47\x90\x39\x81\x7e\xc1\x4f\x3a\x70\xfa\x1d\xe3\xbf\x31\x0a\xdf\x1a\x05\xe8\x5c\xab\x13\x01\xb2\x0b\x8a\x1c\x1c\xf9\x97\x4a\x36\x14\x13\x16\x82\xe9\xcd\x9f\xa1\x91\x75\x45\xf5\xc0\xe3\xbb\x6c\xd6\x92\xb8\x66\x53\x8c\x49\xc7\x25\xf6\x0e\x12\x5d\x4f\xe7\x82\xf8\x29\x30\x7e\xc8\xa0\x40\xc1\x62\xd1\x5c\xa9\x6a\xcc\x49\x0d\x2c\x99\x89\x0e\x21\xbf\xf7\x22\x15\x8c\xf7\x33\xfa\x6c\xda\xda\x33\x9d\xd6\xae\x96\x65\xba\xa4\x27\xcc\x60\x2e\xfc\x68\xa3\x23\x32\x81\xfe\x40\x7c\x61\xea\xc9\x90\xf5\xc4\xda\x37\x37\x54\xb4\x06\x5d\x46\xe7\xff\x57\xc4\x96\x71\x3b\xf9\x3f\x06\x59\x33\x1f\x4f\x1e\x5a\xb6\xe4\x3d\x91\xed\x93\x57\x51\xeb\xfe\x12\xe0\x02\xd7\x5d\x61\x86\xd6\xe5\xa8\x3c\x7f\x3f\x0c\x49\x09\xc2\x3c\x24\xf2\xbd\xd6\x85\x61\xfb\xcb\x90\x75\x17\xfa\x95\x77\x14\x3d\x0b\xd6\x86\x82\xbf\xb5\x3e\x21\x71\x49\xf7\xa7\xc3\xf0\x46\xc3\x04\x67\xc6\x58\xc1\x30\xd5\x8e\xe0\x20\x21\x6c\x18\x21\x80\x85\x0c\xfd\x53\x61\x70\x87\x18\x15\x2e\x93\xa1\x72\xa9\xf5\x0f\x98\x7a\x94\x49\xc3\xd2\xa0\x54\x83\x11\x18\x7c\x6b\xab\x5a\x75\x1b\x5b\x70\xa8\xed\x2c\x3b\x78\x89\x80\x79\x47\x97\x34\x5b\x7b\x31\xfc\x15\xb5\xaf\x3e\xcf\xff\xe5\x67\xfa\x69\x5c\x13\xe2\x6e\x8d\xe3\xca\xa0\xbf\xcb\x6e\xaf\x8a\xca\x05\xe3\xbf\x83\x8a\x98\xe5\x76\xea\x17\x72\xaa\xf8\x9b\xa9\xa1\xad\x77\x48\x17\x7c\x11\xf8\x9d\xfb\x22\xb0\x8d\xa2\xda\x66\x47\x72\xdb\xb8\xa3\x5b\xe7\xe4\x2c\xe0\x13\x2d\xe0\xe4\xec\xf7\xb6\x93\x33\xdf\x05\xc9\x1f\x2c\xa7\x27\x21\x4f\x26\x7f\x70\x1c\x99\xac\x75\x3f\x12\x30\xd8\x37\xc6\xc8\x9b\xfc\x95\x75\xb9\x1f\xda\xbf\x9f\xfb\xa1\xfd\xb0\xfb\xa1\x4d\x4e\xa3\x0e\x3e\xdb\x69\xd4\x41\xa7\xd3\xa8\x90\x03\x81\x90\x43\xab\x80\xab\x02\xf0\xd2\xc4\x5c\x15\x58\x6f\x42\xd9\x04\xae\x23\xe9\x68\x8c\xf7\x92\xa4\x9c\xd8\xb6\xed\xfa\x54\xfb\xf1\xf5\xf1\xc9\xb3\xe7\xaf\x4f\x8e\xfb\xf1\xaa\x25\x1d\xfb\xcb\xe6\xea\x6d\xd6\x34\xa2\x2a\xd2\x87\x3f\x0f\xfa\x98\x72\xf7\xf3\xe8\xe7\x71\xfc\x9f\xec\x25\xe9\x83\xb8\xad\x9f\x95\xd5\xb1\x58\x48\x2e\xad\x7e\x25\x1b\x9e\x89\xc5\x0b\xc9\x1d\xd2\x89\x5f\xa7\x2a\x67\x84\x39\x78\x91\x94\x39\x70\x9d\xf2\xf3\xe5\xe5\x53\x0b\x4a\x54\xa6\xcb\x22\x50\x2b\x5d\x55\xa8\xc1\xf6\xa1\x1d\x25\x82\x92\x1f\x46\xdc\x4d\xe8\x3a\x16\x8b\x1a\x04\xab\x5a\x84\xc9\x46\x05\xa8\x8c\x64\xf5\x11\x13\x94\x67\xb3\xd9\x31\xcd\x82\xbc\x08\xd6\x20\x28\x4d\x2c\xb1\x3a\xd4\x87\x64\x28\x7b\x24\xbb\x58\x4f\x07\x7a\xf2\xa0\x58\xa2\x71\x96\xcf\x3e\x25\x73\x51\x10\xee\x64\x2d\xf8\x00\x43\x85\x49\x7c\x3b\x54\xf0\xa9\xd7\x75\x54\x6a\x9f\x7d\x4a\xf7\x65\x3d\x29\x95\xd3\x4f\x06\xb3\x4f\x68\xd2\x30\xfb\xb4\xb7\x27\x6f\x97\x32\x57\x01\x8d\xf2\xd9\x27\x90\x6a\xd4\xe9\x9a\xe9\x04\x00\xf3\x74\xd3\xb7\x3e\x49\xd2\x06\x1b\x00\x6a\x2a\xe1\x38\xa0\x6b\xad\xfb\x64\xf3\xff\x50\xe7\xa0\xee\xc1\xc1\x90\x76\xcf\x75\xc8\x73\xad\x46\xc1\x3e\x2a\x29\x17\xf2\x02\x22\x7f\x0e\x26\x13\x60\x19\x26\x59\x95\x37\xb7\x93\x09\x5c\x53\xd4\x30\x50\xb5\x46\x99\x64\xd1\xcd\x41\x8b\xf4\x53\x59\xcb\xee\xae\xfc\x3b\xd0\x89\x3c\x24\xf8\x63\x3b\x0b\x3c\xed\x2b\x85\x5a\x3e\x2d\xbc\x22\x2b\x63\x68\xd4\xc5\xde\x14\xf3\x5b\x82\xeb\x03\xa0\x4a\xe4\x0d\xde\xdd\xed\xec\x58\x99\xf1\xdd\x1d\x8a\xbb\x5d\x34\x30\x75\xdd\x42\xdc\xf4\x9c\x43\xc0\x85\x66\x6f\x35\x9d\xf5\x0c\x3b\x0b\xb9\xa3\x35\xf7\xa7\x35\x45\x48\xef\x49\xcc\xb6\x03\x07\xf6\x63\x1b\x48\x33\x7b\x9a\x13\xcc\x9e\x81\x76\x8e\x3b\xbb\x90\xbc\x93\x06\x94\x31\xd7\x54\xff\xb1\x9c\x67\x4d\x3e\x0f\xc5\x9d\x46\x31\xb1\xaa\xbe\x0f\xd5\xc6\xeb\xea\xd2\xd3\xae\xeb\xd2\xd3\xba\x72\x08\x43\xff\x70\x88\x41\xa5\x6f\xdb\x7d\x75\xd8\xa6\x8e\x56\x54\x56\x5d\xd6\xca\x16\xe0\x49\xc5\x34\xcd\x55\x81\x78\x25\x41\x50\x36\xa0\xd3\xda\xa1\x4c\x24\x85\x04\xf6\x30\xab\xd5\xa5\xbc\xc7\x59\x97\x05\xea\x1b\x6b\xb3\x7c\x9c\x60\xe3\xea\x32\x6e\x13\x15\xf4\x70\xcb\x51\x02\xb1\xe8\x21\xe0\xce\x99\x5f\xf4\xdd\x6e\x71\xcd\x0b\x7a\xce\x92\xb0\x77\x77\x74\xd2\xae\x4c\x1a\xba\x6d\xe1\xcd\xaf\x6b\x3f\x20\x13\x61\x5b\x39\x13\x8c\x68\x6a\x51\x92\x05\xbd\x2a\xd4\xf5\x57\xb3\xde\xfc\x1e\xac\xde\x3c\xcd\x83\x22\x6c\x9a\x3b\x96\xc1\x5b\x00\x80\x2d\xa0\xd0\x99\x03\x77\x7d\xef\xcc\x69\x3b\xaf\xfa\x53\x75\xc5\x65\xc2\x0c\x24\x00\x93\xe3\x51\x80\xc9\x1a\xe5\x63\xff\x96\xde\x8d\x54\x79\x71\x09\xa3\x93\x9e\xf0\x12\x18\x2c\x74\x3a\x31\xad\x0c\x7d\x64\x23\x6e\x6c\x8c\x42\x66\x6a\x70\x46\xc6\x2e\x60\x2f\x67\x23\xd1\x8a\xc3\xaa\x99\xc4\xd8\x7f\xcc\x55\xcc\x1a\x02\xef\x38\xc1\xdf\xb8\xd9\x5b\x25\x28\x2c\x1e\x9c\x4d\xa0\xd4\xc3\x07\x88\x2d\x3a\xe1\xe3\x9c\x99\xd5\x1d\x21\x21\x88\x9d\x5b\x89\xa6\x35\x28\xa1\x61\x72\x45\x0c\x7a\xe7\xb6\xd2\xac\x11\x5b\x73\xdd\x41\x04\xad\xc7\x00\x76\x50\x94\x7a\xfc\x5e\x37\x68\xfb\x7d\xb4\x93\x2a\xea\x0e\xaa\x50\x0a\x1a\x1f\x95\x9f\x45\xd8\xf2\x1d\x42\x00\x61\x81\xe9\x44\xe2\x92\x45\x62\x48\x26\x29\xe7\xb3\x53\x7d\x64\x39\x8b\x35\xb9\xca\x66\x4f\x25\x28\x45\x2c\xc4\xa0\x9f\x2e\x49\x41\x6b\x4f\xaa\xcb\x97\xb0\x22\x30\x1b\x0b\x24\x95\x68\x0c\x9d\xf2\x43\x20\x10\xdb\xf6\x9b\xa7\x59\x51\x94\x8d\xbc\xac\xf7\x24\xe8\x83\xb2\x98\xdf\xea\x8b\x56\x2f\xfa\x66\x8f\x50\xb0\xf7\x4d\xd4\x2b\x8b\x1e\x0a\x42\x8f\x7a\xdf\xec\xd1\x05\x19\x08\x5e\x6d\xb2\xe6\x18\x2e\xcf\xdf\x0f\x9b\xea\x16\x24\x71\x66\x5b\x5a\xb7\xc3\xb0\x11\xb8\x6b\xc4\x41\x08\x18\xf6\x58\xc3\x47\x36\xec\xa6\xca\x16\x0b\x31\x53\x36\xef\x8f\x43\x89\x2e\x03\x77\x14\xe2\xea\xc0\xfc\xd4\xaa\x3f\x4d\x1f\xc1\x32\x4b\x83\xe4\x45\xb6\xa9\x6c\x04\xe6\x15\xda\xad\xe7\x70\x63\x3d\x44\xd1\xf6\xd5\xd9\x56\xbb\x5a\xce\xe7\x56\x6b\xc3\xda\xa8\x78\xb0\x8a\x86\x46\x46\x6b\xa3\x90\x66\x82\xf0\x99\xca\x15\x6d\x69\x58\x91\xbe\x1e\x92\x9b\x12\xd8\x59\x2b\x98\x20\xe2\x55\x20\x32\x97\xb5\xf0\xbc\xb6\xbd\xcd\xc6\xec\x71\x9c\x58\x50\x74\xed\x16\xdd\x76\x4f\xf8\x2a\x7b\x5c\x1b\x1a\xa7\x11\x66\x5b\xc3\x6c\x2f\xd0\xf1\xd8\xca\x5b\x08\x6c\xa5\x6f\xb9\x0b\x35\x22\xab\x66\xe5\x4d\xb1\xe6\x80\x0a\x1e\xe2\x04\xe1\xeb\x0c\x6d\x7d\x38\x87\x4e\x37\x7a\x26\x0d\x30\x00\x6a\x38\x10\x9b\xde\x9c\xea\x4a\x16\x4d\xfe\x28\x34\x43\x18\xe0\x99\xbe\x3b\x40\x4e\x30\x25\x41\x0a\xae\x08\xa3\x1f\x0f\x95\xa6\xc8\x2b\x96\x8b\x3e\x76\x50\x3b\x22\x98\x76\x7a\x22\x60\x1b\x5c\xa4\xf0\xdc\x53\x88\xee\xcd\xc4\x74\x9e\x55\x62\xd6\xbb\xc9\x9b\xab\x72\xd9\xf4\x32\xb3\xe1\x99\xea\xf0\xd1\x65\x81\xcf\xee\xa1\x6b\x61\x4c\x23\xaa\xe3\xd5\x74\xa1\x79\x61\xd2\xf5\x9f\x2e\x12\xc8\xd2\x06\x88\x0b\x73\xc9\x54\x2e\x86\x8c\x96\x5a\x58\x19\x8d\xed\xf9\xea\x44\x85\x9d\x5f\x52\x36\xfc\x62\x1b\xea\xd8\x1c\xeb\xeb\xb8\x08\x46\x80\xaa\x17\xf6\xa1\x87\x2d\x30\x9d\xc4\xfc\xa2\xef\x69\x81\xb1\xb5\xd4\xbd\x8e\xc6\xa8\x7f\xd8\xb6\x43\xdd\xd2\x65\xb0\x25\xa3\x35\xf5\x05\xa3\x31\x8d\xb8\x2a\x33\xac\x1d\xd6\x37\x53\xc9\x90\x9b\xda\xb2\xbb\x44\x2d\xe6\x17\x89\x9a\x55\x49\xef\xb5\xe9\xe8\xaa\x75\x7c\x59\x58\x70\x03\xee\xf2\xa0\x12\xcd\xc8\xca\x1d\xe5\xe3\x31\x58\xfe\xf8\x0d\x8c\xf2\xb1\xc5\xa9\x30\x99\x8e\xf2\xbc\x43\x4b\xab\x80\x35\x9b\x4d\xab\x32\x5e\xa9\xf5\x36\x2a\x60\xe7\xd2\x03\xe7\x37\x1e\xb3\x0c\x3b\x97\x9a\xb6\x94\xa5\x26\x78\x71\x3f\x24\x6e\x0f\x1a\x27\x62\x87\xdd\x04\xc9\xdd\x96\x44\xd9\xbd\xfe\x29\x6f\xae\x18\x82\xb7\x19\x03\x85\x1e\x37\x42\xee\xae\xde\x7f\x64\x8e\xb2\xc1\x2b\x8e\xb5\x0b\x6d\xe8\xfa\xc8\x9e\x79\x7c\x2d\xd7\xdf\x31\x28\xbd\x3b\xe8\x91\x6d\x78\x6b\x9e\xe5\xf1\xf2\x6d\xab\x72\xc8\xaf\x51\xc7\x14\xad\x9b\x81\xbd\x88\xa8\x2a\x10\x9e\x58\x89\xb7\xfb\x3a\x66\xb6\x55\xaf\x9c\x94\xa1\x47\x41\x51\x51\x36\x27\xf8\x0a\xb6\xb6\x3b\x3b\x1b\x2b\x0f\xd6\x5d\x88\x0d\xf5\x92\xac\xfd\x9e\xd5\x36\x9b\x7a\x1b\xae\x2e\x58\xdb\x79\x59\xce\x37\x55\x77\x9f\xfa\xc0\xac\xa3\xa3\xc2\xa4\x12\x97\xe2\xd3\x02\xc9\xf9\xa3\x36\xfe\xf3\x6b\xd6\x52\x01\x3c\xe5\xd4\xd6\x1b\x61\x50\xc8\xe8\x31\xd6\x83\x9e\x02\x70\x87\x3e\x42\x91\x5d\xa8\x47\xe2\x9f\xcb\xac\x6b\x88\x6a\x7f\x67\x3a\xc2\x7e\x6f\xd2\x94\x36\xf1\x50\xed\x97\x5d\x93\xb1\x55\xd5\xdf\xad\xab\xb8\x8b\x78\xb6\xab\x79\x4d\x9f\xe7\x5f\xd4\xe7\x3f\xaf\xab\xf8\x8b\xfa\xfc\xe7\xce\x3e\x3b\x9b\x66\x94\x15\x33\xd6\x10\xdb\x65\x5c\x0d\x10\x9e\x05\xd1\xd3\xd5\x67\x48\x11\x64\x77\x77\xc7\x00\xc0\x09\x69\x1c\x89\xa1\x02\xb4\xa2\xcb\x6a\xab\x5e\x96\xd5\x2f\xd2\xc9\xae\x3e\x42\xaf\x5a\xab\xc3\xdb\x60\xf2\xf6\x57\xed\xa4\x93\xde\x5a\xec\xf3\xe6\xee\x4e\xcb\xf9\x5c\x4c\x9b\x8e\x2e\x2b\x7f\x66\x4c\x7a\xfa\x39\xbd\x47\x67\x5c\xb8\x33\xbb\xe3\x00\x9f\x4b\x64\x3d\x04\xe2\x35\x12\xbc\xd8\x72\x5c\x0d\x6e\xb9\x63\x6a\xe3\xa1\x3e\x03\xc1\xdd\xe2\xe7\x9c\x81\x89\xa5\x6c\x6a\xf8\xd3\xd0\xad\xa2\x0e\x2d\x33\xfb\x5a\xdc\xb1\x14\x2d\x63\x8a\x0e\x10\x79\xa2\xea\xf1\x90\xbd\xea\x17\x0d\x68\xc3\xf6\x20\xdb\xd3\xce\xac\x9e\x9d\x3c\x39\xfb\xf1\xdd\xc9\xe9\x20\xaf\x4f\x0a\x79\x47\x9b\xf5\xa3\x7f\x2e\x45\x75\xfb\x60\x91\x55\xd9\x75\xfd\xa0\x10\x37\x51\x6c\x78\x2a\x78\x19\xa8\x53\xa7\xbf\xad\x95\x6d\x3f\x1c\xfc\x22\x23\xd0\xed\xf4\x39\xf2\xe8\xfd\xfd\xac\xe4\xad\x43\xd2\x5b\x6e\x37\xe9\x73\x73\x92\x04\x0a\x71\xf3\x57\x4f\xf2\xd2\x21\x9b\x3f\x08\x75\xd0\x34\xd4\x1a\x9b\x65\xa8\x66\x07\xb4\xdc\x1e\xab\xcf\xa3\x70\x21\x7b\x24\x8b\x4a\x4c\xb3\x26\x2f\x2e\x9f\xfc\xbb\x50\x38\x1e\x2a\x5b\x12\xb4\xa5\x79\xb6\xd1\x9d\x2e\x87\xf6\x9d\xea\x5a\xb9\xae\x6b\xdd\x4e\x1d\xb6\x4a\xdc\xdb\x61\x66\x7e\xd1\x8f\xf4\x5d\x2e\x4a\xb5\xe1\x21\x2c\x15\xf2\xa3\x90\xae\xd0\x98\x2c\xbf\x86\x3a\x52\xe5\xcb\x35\xf0\x85\x3e\x13\x95\x7e\x0d\xcb\x0f\x7e\x31\x68\x74\x8a\x90\x72\x0f\x09\xd6\x07\x81\x52\xc1\xc1\xc9\x75\x6a\x7e\xca\x2e\xc2\x5f\xe3\x36\x55\xde\x06\x17\xd9\x14\x65\x9d\xca\x3f\x36\x79\x7e\xf0\x1f\x0b\xc9\x09\x2b\x85\x40\x50\x5e\x58\xd3\xe8\x60\xf0\x87\xc1\xfe\x83\x73\xd1\x64\x83\x83\xbd\x69\x56\x64\xd5\xed\xe0\xd1\xec\x8f\x07\x7f\xfc\xfd\x1f\xb2\xc8\x6c\x28\x27\xaf\xff\x1a\xaf\xb4\xc0\x92\xa1\x73\xc7\x46\x27\xc0\xe9\x22\xa9\x4a\xdb\x50\xd2\x29\x44\xf0\x2c\x69\xd5\xb6\xca\x37\x73\x71\x91\x2b\xe7\x28\xf8\x71\x77\x87\x26\x8b\xdd\x73\x0c\xae\xb9\x8e\x9f\x9f\x3e\xf9\xfe\xe5\xc9\xe4\xdd\x93\xd7\x3f\x9c\x4c\x9e\xbc\x7d\xce\x9a\xf4\x33\x51\x80\xdc\x55\xab\x8e\x3a\x0e\x3d\x57\xb3\xc4\x53\x65\x8f\xf9\x77\xa0\x85\x35\xad\x0f\xed\x5d\x9c\x81\xaa\x24\x18\x74\xd7\x5e\xcf\xdc\xbd\x8a\xac\x59\x56\x24\x10\xa4\x0f\x14\xe8\xda\x65\x47\x94\x37\xb6\x66\x7c\x70\xf2\x1a\xfa\xf5\xe4\xe5\xcb\x89\x82\xb4\xf9\x29\x2d\xc1\xe6\x55\xa7\x80\xbc\xbb\x3b\x27\x91\xdc\xa5\x39\xa9\xfe\x13\x15\x07\xd0\x0d\x78\x7d\x7a\xf3\xf6\xec\xf9\x9b\xd7\x4f\xd6\x75\xcc\xe1\x4e\x55\xcc\x84\xbf\x9d\x9d\xbc\x3e\x9e\xbc\x7d\xf7\xe6\xec\xcd\xd9\xdf\xdf\x5a\xd8\xf5\xf2\x98\x57\xd3\xae\xd2\x69\xca\x48\x44\xd3\x94\x07\x06\xbd\x32\x3e\x7d\x4e\xcf\x9e\x3c\x7d\x71\xf6\xee\xc9\xd3\x93\xc9\x9b\xd7\x93\xe3\x93\xb7\xef\x4e\x9e\x3e\x91\x23\x4a\x6d\x67\x72\x9d\x70\x5a\x8d\xc0\xf6\x5e\xc9\x8a\xeb\x24\x82\x7c\x0c\x7f\x8f\x3a\x3a\xc8\x1c\xdc\xa9\xbd\xc1\xee\x89\x4a\xb5\x6b\x63\x7b\xcf\x8b\x0e\x0d\x85\x4d\x8b\x33\xab\x6b\x51\x35\x0a\x73\xf8\x45\x6d\xbf\xe8\x5c\x81\xc6\xc9\x82\x2a\xc8\x7c\x2f\x6c\x2a\x06\x2e\x9b\x55\x39\xf8\xd8\xb2\x60\xb5\x2c\x9e\x17\xc7\xbc\xb4\x49\xd9\xba\x6d\x64\x01\x84\x69\x9f\x12\xee\x5b\xc1\x33\x10\x9d\x07\x12\xcd\x3c\x4c\x92\x0b\xd7\xdf\xb3\xda\x48\x97\xcb\x7c\x96\xee\x0f\x3f\xc3\x6b\xb5\xaf\xd2\x3d\x0a\x7b\x37\xd9\x46\x43\x7a\x9d\x76\xb1\x1b\xc0\xf7\x60\x43\x00\xdf\x03\xc7\xd5\x47\x28\x3c\xef\x01\x0b\xcf\xfb\x31\x1c\xe4\xf7\xc0\x0e\xf2\x8b\x36\xfc\xae\x8b\x6d\x32\xed\x47\x4d\x5c\x50\xf8\x5d\x59\xbe\xac\xf1\x2d\x77\x3e\x3f\xcf\xa6\x1f\xc0\x9a\xe1\x49\x75\xa9\xe7\xa1\x3c\x7f\x2f\x07\xf2\x98\xfe\x9b\x37\x3e\xaf\xc4\xd1\xfa\xec\x36\xf1\xdc\x3c\x6f\x6c\x98\x4a\x3c\x66\xbf\xd7\x75\x60\x33\x48\x9b\xb8\xde\x80\x37\xf7\x01\x0a\x3c\x36\x3f\xd7\xf6\x60\x13\x44\x9b\x04\xdd\x36\x8b\xb9\x90\xfc\x30\x66\x5a\xcd\x13\xf8\x63\xf6\xdb\x54\x6f\x17\x3b\xda\x90\x4f\x6d\x8b\xba\xa3\xf5\x5a\x37\xac\x12\xf8\x99\xf7\x78\x34\x3e\x02\xea\x91\x64\xd0\x57\x10\x66\xbd\xe4\x8d\x30\xae\x92\x10\x50\xb9\x61\x97\x6d\x40\x76\x1b\xb7\x09\x38\x3a\x7c\x6f\x79\x25\x84\x55\x88\x10\x2b\xbd\x18\x52\xbb\x0e\x06\x23\xf7\xe8\x9c\x7c\x58\x3f\x80\x17\x37\x20\x77\x79\x69\xc7\x56\xda\x44\xf9\x21\xfc\x3a\xed\xec\xf0\x76\x94\x9f\x0c\x70\x6b\x7d\x00\x9e\xf1\x2a\xb1\x98\x67\x53\xe1\x35\x34\xfb\x94\x64\xd7\x4d\x82\x3a\x06\x35\x7b\xb3\x18\x8d\x25\x3f\x38\xcd\xe0\x91\x1b\xf2\x92\xe9\xd5\xb2\xf8\x00\x4f\x61\xa3\x71\x52\xe7\xff\x12\xe9\xef\xc5\xef\x92\xba\xc9\xaa\x26\x95\x15\x89\x62\x56\xa7\xb2\x36\x30\xf8\x1c\xde\x5c\xe5\x73\x01\xaf\x75\x74\x85\x92\xf7\xe3\x65\xd1\xa4\x12\xee\x3b\x59\xfe\xb1\xfc\x73\x24\x3f\x41\x43\x45\x9b\x89\x92\x69\x70\x0b\x0d\xe2\x5b\x24\x0d\x69\x1f\xda\x8d\x87\x98\x33\x82\xb6\xb1\x39\xdd\x5d\xc8\x8a\x87\x90\xb5\x97\x4a\xf0\xa1\x6c\xe1\x41\x8a\xbd\xaa\x20\x48\x5b\xa3\xa0\xb1\x5e\x7a\x4d\x40\x9c\x60\x05\xd6\xab\x50\xb2\x2d\xfa\x72\x9a\x9d\x01\x15\xd0\xd4\x66\xa5\xf6\xdd\x72\xb6\x37\x09\x98\x6c\x35\x63\x1d\x2d\xfd\x47\x2b\x97\x4a\x23\xaa\x1a\xdd\xdd\x39\x3d\x3b\x48\xe0\xdf\xa1\x22\x22\x03\x98\x8e\xc6\x43\x6c\x81\xb6\x22\x55\xc0\x58\xff\xe1\xba\x81\xc1\x04\x08\xef\x50\xad\xc5\xf8\x3b\x39\x57\xbc\x6e\x24\x70\x95\xdd\x9a\x27\x1c\x0e\xd4\xb6\x5d\xa7\x24\x34\xd6\x75\x4a\xa2\x2d\xd2\xa8\xd3\xdc\xe9\x4b\x4f\xc7\x80\x05\xc9\x81\x6d\x41\x02\x5d\x90\x97\xf1\x3a\x95\xbd\x46\x7d\xdc\xbc\x2c\xa2\x24\xba\xc8\xe7\x42\x5e\x20\xa3\x24\x9a\xe7\x85\x78\xbd\x84\xcb\x61\x12\x5d\x8b\xba\xce\x2e\x65\x72\x81\xb9\x85\xca\xa9\x9b\x6c\xfa\x21\x62\x0e\xa7\xd8\xfb\x39\x79\x2c\xbc\x5e\xa4\xf0\xed\xbc\xf8\xa9\xe7\x37\xc9\xc5\x43\xf6\x34\x5b\x48\x06\xff\x54\xd6\x78\x56\x01\xd1\x75\x64\x60\x1d\xc4\x87\x4a\x10\xe6\x08\x7f\xf6\x29\xdd\x07\xad\x70\x33\x4c\xa6\x2b\xbe\xb7\x87\x1a\xad\x23\x93\x0b\x4a\xe2\xe3\xb4\xb9\x5e\x78\x89\xc4\x14\x61\x2f\x8c\x1e\x33\x99\x2e\x38\xc9\xf1\x5a\xa6\x09\x83\x1b\x74\xd0\x04\x59\x9a\x6d\xb4\xbf\xdb\x64\x2a\xf7\x35\x6c\xcf\xbe\xd8\xae\xcb\xb3\xcf\x3a\xdc\x68\x9f\x75\xe8\xda\x67\xb1\xc0\x7c\x2e\x1c\x0b\xd4\x07\x7b\x3c\x84\xe5\x73\x81\x30\x4c\x9f\xce\x3f\x6d\xaa\x30\xc8\x69\x53\x75\x2d\x9a\x47\xf6\xa2\xf1\xcc\x75\x2c\x63\x9e\x37\xaf\x9f\x9e\xa4\x07\xc9\xe9\x8f\xa7\x6f\x4f\x5e\x1f\x9f\x1c\xa7\x87\xcc\x7b\xb7\x75\xda\x91\xb3\xdb\x6b\x08\x19\xc4\x8f\xc6\x07\x07\x4c\x2f\x00\x77\x59\x24\xdb\x07\x8f\x86\xf9\x77\x92\xa6\x1f\xa4\x8f\x50\x63\x17\xaa\x48\x53\x84\x1a\xe5\x63\xd0\xf0\xb8\x2a\x67\x26\x69\xef\x60\x2c\x77\x34\x59\x6f\xae\x3c\x4c\xe9\x2d\x6c\x26\x3e\x31\x53\x19\xf8\x57\x2b\x95\x12\x20\xc5\x6e\x5d\xa1\x44\xde\xeb\xe2\x84\x0a\xa1\x0f\x32\xd1\x64\x26\x1c\x1e\x69\xfb\xea\x6f\xe5\x69\xec\x3a\x60\x22\x14\x69\xa8\x28\xf6\xca\xd1\x1a\x73\x6a\x6f\xa9\xe5\xd4\x4e\x1f\xe9\x6e\x83\xa0\x82\x80\x76\x77\x9d\xce\xb9\x1d\x30\x83\x8d\x57\x1b\x2b\xee\xce\x21\xbf\x12\xcc\x7b\x0c\x55\xb6\x4d\xad\x23\xad\x0a\x45\xb0\x66\x6a\xec\xa0\x82\xf6\xf4\x24\x65\x73\x25\xaa\x27\xaa\x9d\x0e\x25\x20\xde\x3c\xa9\x01\xe9\x4a\xdd\x6f\x07\x87\x66\x0c\xa4\xdb\xc7\x88\x13\x73\x82\xe4\x09\x8b\x17\xe9\x93\xc0\x46\xf9\x98\xa8\xdd\xa4\xec\x1d\x8c\xc1\x51\x69\xcd\x92\x0e\x55\x77\x31\xf4\x89\xe6\x67\xd9\x38\x9d\xc5\x63\xa6\xfa\x39\xe3\x50\x79\x01\xf2\x20\xc0\x4b\x61\xbb\xae\x15\xf6\xfa\x70\x8e\xfe\x8c\x1c\xe7\x17\x17\xbf\xe2\x84\x24\xb3\xfc\xe2\x82\xea\x96\x7c\xcf\xff\xc8\xf9\x21\xce\x5e\x7b\x0d\xd8\x6e\xa2\x86\x6c\xe8\x6b\xa6\x93\xd6\x10\x03\x0e\xcf\x6f\x20\xa0\x27\xb7\x1a\x54\xa1\x44\x9d\xb9\xb5\x9b\x2c\x8b\x29\xa9\x98\x62\xc2\xee\xae\xd1\x24\x34\x52\x19\xe5\xf0\x9c\x70\x8b\x9f\x43\xc2\x3d\xbc\xdb\xc2\xb1\x42\x93\xda\xb9\x0d\x07\x91\x9e\x05\xf1\x4d\x53\x06\x21\x97\xa0\x8f\xf0\x7d\x97\xca\xc3\x29\x3c\x17\x44\x3a\xd9\xc6\x49\xc8\x2f\xfa\xa1\x31\xca\x8b\xf2\x2c\x9f\x3d\x31\x88\x8b\x57\x7e\x5a\xbf\x03\x91\xb1\xbd\x06\xbb\x42\xd0\x3a\xd6\x89\xdb\x4c\xd1\xd7\x98\x1d\xdd\xec\xc4\x69\x37\x70\x82\x7f\xcd\x59\x0c\xef\x6a\xce\x4c\xd1\x2d\x92\xc1\x25\x8f\x36\xcd\xd2\x3b\x6b\x18\x7a\xa2\xec\xe4\x35\x73\x85\xa6\x3e\x30\xe6\xf5\x28\xc1\x4b\xe0\xbf\xcd\x91\xe4\x76\x96\xed\x7b\x7c\xc3\x93\x47\x82\x9e\x73\x27\x26\xf1\xda\xed\x40\xc9\x9d\xfe\x1d\xb7\x84\xf0\xb2\x57\xc3\x66\x39\x7b\x87\xe3\xbb\x54\xb3\xaf\x06\x11\x4d\x75\x0b\x36\x84\xe6\xed\x99\x46\x4b\xa1\xd6\x70\x44\x2d\x37\xcb\x02\xc7\x6f\x15\x3a\x59\xdc\xb6\xed\xdd\xf4\xff\x6f\x1a\x37\xfa\x42\x8a\xd3\xef\x53\x37\x12\x5d\xbd\xed\xac\x77\x53\xe8\xe9\xae\x79\xad\x6d\xcc\xd6\xbf\xf0\xcc\x6a\xcd\x7e\x73\x94\x2b\x12\x94\x3d\x92\x9f\x86\xc8\xd4\x84\xe6\xc9\x5c\x45\x44\x4b\xe6\xa9\xe9\xab\x6f\xd1\xa8\xb2\x18\xd0\x28\x1f\x0f\x37\xd2\xd3\xd0\x50\xdd\x2f\x48\x53\x43\x77\xf4\x78\xdc\x30\xf8\x78\xc8\x90\xc1\x73\x6b\xae\x19\xfc\x25\x14\x69\xdb\x06\x7a\x1d\x72\x31\xea\xe2\xc5\x2d\xc0\xb0\x2b\xbb\x3c\xca\xc7\xbf\x28\x59\x07\x42\xa5\xeb\x51\x5a\x51\xce\x59\xc0\x10\x5d\xd4\xda\x85\xcd\x16\x4b\x52\x50\x08\x1e\x61\xee\x70\x0a\x4f\x9a\x46\x7a\x39\x63\x7e\x61\x39\x84\x36\x69\x98\x12\x92\x9d\x69\xea\xe2\xba\x5c\x8d\x35\xbc\x75\x71\xda\xcd\x8a\x55\xc1\xdf\x9d\x3d\x18\xf5\x95\x12\x7d\x24\x68\x97\x5d\x20\xa3\x08\xaf\x52\x79\xe2\xe9\xfa\xf0\x00\x34\xd5\xbb\x55\x83\xc1\x88\x39\x72\x3a\x7c\xfe\x7e\xe6\x71\xd6\xfe\x36\x1c\xfc\xd0\xec\x63\x8c\x11\xcf\x2f\x20\xea\x43\xbd\xab\x69\x35\x94\x29\xb9\x48\x65\x10\xb4\x15\x0f\x06\x63\xd4\x61\x7f\xb0\xc7\xe5\xf9\x7b\x78\xc6\x24\x95\x64\x33\x35\x8c\x6f\x23\xf4\xaf\x94\x80\xc6\xe1\x48\xd5\xec\xa0\x5d\x34\x64\x8d\x30\x6b\xdc\xa7\xf8\x29\x5e\x2d\xeb\xaa\xc0\x34\x7b\xf3\xb0\x55\x56\xad\x25\xa9\xe8\x25\xd5\xbf\x0c\xad\x5e\x65\x75\xc7\xc9\xf2\xd5\x6f\xe8\x4a\xc7\xdc\xc8\x3a\x6c\x9a\xb1\x37\x12\xde\xb1\x94\x7f\x04\xae\xb6\x1d\x92\x20\xda\x27\x7e\x79\xae\x0e\xad\x57\x6c\x2b\xfe\xd0\xfe\x7c\xaf\xb5\x30\xd4\x1b\xd3\xc8\x22\x05\xdb\x66\x26\x78\x63\x7c\x56\x56\x29\xff\xe0\xe1\x4b\x48\xc2\x8d\x96\x66\x41\xeb\x92\xe4\xc1\x41\x3c\xda\xa7\x73\xbd\xcb\x04\x25\xd9\x97\x60\x43\xcb\x9c\x14\x9b\xac\x27\x13\x3c\xcd\xb5\xc7\x01\x78\xab\xb7\x43\x9e\xa4\x65\x11\x70\x16\xa7\x99\x21\xfb\xb3\x4b\x04\xed\xbb\x50\x1b\x6d\xf4\xa1\x16\x72\xe2\xf6\x39\x22\xe8\x8d\x22\x67\xdf\xf5\x54\x40\xee\xbc\xce\xd3\x56\xc0\x5f\x93\xd2\x14\x70\x8a\xa9\xd7\xa4\xe4\x7b\x50\xae\x39\xf9\xdb\xdb\x27\xaf\x41\xbf\xe5\xe1\x3f\xfa\xfd\xc7\x47\x10\xac\xe3\xbf\x7e\x1e\xc4\xff\x15\xff\xbc\xea\x0f\xfe\x2b\xfe\xb9\xfd\xcf\x87\x5d\x82\x7f\x4d\x29\x9e\xb3\x89\x05\xfa\x6e\x62\x1c\x26\x2a\x36\x34\xd3\xab\x64\x51\x89\x8b\xfc\x53\x22\x09\x80\xdc\xdc\x4a\x50\x13\x67\xbb\x07\xb1\xb5\xbb\x4c\x16\xbf\xaf\xb2\xa9\xa0\x06\xc5\x8c\x69\x70\xf7\xa6\x68\xad\x2d\x77\xf6\x2c\x2f\x7a\xa0\x23\x58\x27\xbd\x68\x2f\x12\x83\xcb\x41\xef\xff\x2c\x6b\x51\x0d\x56\xe0\x3c\x17\x76\xf3\xde\x3c\xc3\x5f\xed\xff\xe9\xd5\x57\xe5\x72\x3e\xeb\x9d\x0b\x1f\xcc\x40\x45\xb0\xe5\xc3\x20\x52\x07\x7b\x03\xf1\x49\x4c\xd5\x50\xe2\x78\x85\x63\x4c\x01\x76\x74\x30\x1e\xca\xc1\xd2\xd7\xa1\x0e\x2a\x02\x3c\x06\x5c\x75\x9b\x7e\x94\x44\xb1\x21\xa9\x7a\x79\x71\x91\x7f\x8a\x57\x0a\x7d\x7d\xac\x6f\x8f\xd2\x5b\xe5\x80\x51\x67\x53\xc3\x6d\xdb\x41\xfe\x97\xa2\x59\x43\xfb\xdb\x84\xf1\xf9\xda\x74\xef\x7a\xc7\x3b\x60\xde\xf1\x02\x9e\xe9\x0e\x8d\x67\xba\x4d\xc4\x68\x1b\xac\x59\xae\xe7\x57\xad\x6d\x54\x68\xfc\xa7\x24\x79\x7a\x10\xb2\xc2\x4d\xd3\xf4\x70\x77\x17\x5b\xee\xf3\x80\xdd\x71\x9a\xa6\x11\xaa\xfc\xc4\xab\x3c\xdd\x1f\x76\x54\x3c\x3a\x18\xeb\xdd\x7e\x2e\x8a\x34\x6c\x0d\x69\x02\x7e\x77\xdb\x44\x82\x97\xf1\x75\x26\x91\x1d\x73\x9f\x17\x75\x53\x41\x67\x32\xe0\x17\xef\xf1\x0c\xf7\x8b\x6c\x76\x9b\xf6\xb9\xa6\xba\x7d\x2a\x57\xca\x9a\x07\x32\x9e\x8f\xca\x4a\xcb\xf3\x7a\x5a\xe5\xe7\xf2\xfc\x1f\x29\xe3\xe0\x15\x46\xfb\x5e\x94\x8b\xe5\x3c\x6b\x84\xe1\x10\xf4\x68\x0a\x7d\xfc\x9b\x8b\xc4\x68\x9c\x98\xda\x86\xee\x8d\x4a\x37\xe3\x5d\xa6\x4c\x1e\x07\xa3\x80\xdd\x26\x65\x00\x56\x6a\x68\xa4\x56\xe0\xd3\x8c\x79\xbf\x81\x13\x9c\xc1\x92\x63\xde\x16\x0d\x92\xc9\x00\x54\x83\xab\x23\x53\x27\xe0\x78\x9b\xfc\x5a\x78\x56\xa2\xa2\xba\x48\x83\x3a\xc8\x37\x79\x31\x2b\x6f\x1e\xe3\xbf\x81\x84\x2b\xab\xeb\xac\x98\x8a\xbb\xbb\x55\x7b\x44\x28\xbc\x28\x52\x99\x33\x28\xca\x9b\xbb\x3b\xf8\x75\x5d\xfe\xeb\xb5\xfe\xb8\x11\xe7\x1f\xf2\xc6\x7c\x5f\xd7\xe6\x77\xf9\xba\xbc\xd1\x67\x7b\xf1\xf8\xa2\x80\x40\x69\x7d\x99\x17\x1f\x79\x8a\x93\x7b\xe0\x42\x2b\x6b\x44\xdb\xf6\x63\xfe\xc4\xa8\x48\x18\x2d\x63\x17\xd9\xed\xbc\xcc\x8c\x00\x43\x05\x81\x73\xe7\x92\xa1\x2d\x91\x68\x81\x0d\x9d\x5c\x80\x90\xfe\xe8\xd9\xbb\x1f\x9f\x9e\xfd\xf8\xee\x04\x74\x42\x9f\x3d\x7f\x79\x12\xaf\x14\x64\x2a\x0b\xee\x45\x47\xbd\x68\x8f\x1a\xa4\x09\x19\x4e\xcb\xa2\x2e\xe7\x62\x20\x21\xfb\x0a\x1c\x2f\x04\xec\x16\x69\xfa\xe1\x91\x20\x4e\x7d\xcb\xef\x99\xae\xab\xa4\xd4\xbe\xf7\xab\x11\xae\xef\x3a\xef\xd8\x49\x31\x63\x7d\x63\xfb\x84\xc4\xd1\xb9\xb8\x28\x49\xd7\x18\x48\x5e\x75\x03\xc5\x31\xbe\x2c\xc2\x48\x68\xdc\x0e\x9b\x15\xa0\x72\x0c\x88\xa4\x7e\xde\xd2\x28\x37\xe4\x3b\xc0\x0c\x9c\x50\x40\x64\xac\xe6\xd5\x78\x06\x08\xa2\x80\x7b\x0b\x68\xa6\x57\xd0\x43\x11\xaf\xa8\x70\x4a\xff\x41\x53\x5c\xcd\x9b\xf8\x34\x15\xa0\x03\x92\x8a\x6e\xc9\xc9\xe7\x8d\x4f\x8f\x27\xbb\x68\x44\x15\x1a\x4e\xe2\xa0\x00\xe6\xfd\x73\xe6\x90\x49\x58\xf8\x0e\xa8\xc5\x2c\x1a\x1d\x5d\x02\x17\xb3\x8e\x52\xf3\x93\x4b\x0f\x69\xe7\xd1\xfc\x9b\xf2\x0c\x0e\x7b\x08\x44\xcf\x50\xec\x1a\xb1\x2d\x83\x08\x9d\x96\xa3\x11\xaf\xef\xa0\x0c\x0a\x79\x98\xd4\x21\x0b\xd4\xfe\x08\x09\x69\x1a\xfd\x57\x24\x69\x5f\x6e\x90\xb0\x15\x46\xa3\x7f\xfc\x2c\xf9\xd1\x48\x2b\x5e\xe9\x2c\xf2\x94\x8e\xcd\x62\xfa\xfb\x32\x2f\xfa\xd1\xcf\x3f\x0f\x22\xb0\x18\x54\xe9\x7b\x51\xff\xe7\x9f\x07\x83\xff\x8a\x1f\x47\xce\x59\x91\xae\x68\x34\x47\x6a\xbc\x50\xe0\x48\x6e\x42\xef\xc4\xe5\xc9\xa7\x45\x3f\xfa\x47\xb4\x47\xb5\xfc\x67\x14\x13\x3e\x8e\xf0\x5f\x3b\xe4\xe7\x81\xb3\x77\x2b\x47\x57\xab\x56\xed\x7e\x26\xcf\x11\x82\x51\xb2\x39\x36\xcc\x8c\x2c\x0b\x33\x27\xac\x6e\xa3\x56\x71\x8f\x03\xca\x3a\x86\x28\x68\x17\xaf\x93\xd4\x29\xda\x96\x57\xe2\x68\x28\xea\x41\x59\x43\x60\xbd\x4c\xd9\x6f\xfe\xb2\x55\x8b\xa6\xcf\xcf\x48\x78\xe6\x0d\x56\x06\xb0\x29\xfc\xed\x62\x68\xea\xc9\xf9\x3c\x2b\x3e\x6c\xc1\xc9\x70\x77\xd6\xbf\x09\x33\x13\xf2\xae\xeb\x5c\xd6\x36\xf1\xb3\x79\xfd\xbd\x1c\x6d\x9f\xc5\x8b\xd3\x5e\x0d\x64\xda\xdd\x9d\x11\xff\x31\x73\xf8\xdd\x5d\x54\xb3\x6e\xa6\x57\xfd\x87\x3f\x9f\x3e\x8c\xc9\x3b\x7d\x27\x9b\xa8\x51\xf5\x25\x6e\xd2\xbf\xb2\xa3\xf0\x5f\xd4\x09\x77\xc0\xa3\xf1\x23\xbb\x06\x36\x07\x06\xdf\x8e\x93\x06\x9c\x02\x89\x6b\x73\x80\xe3\x8d\x01\xa7\xc4\x72\xc4\xe3\xce\x15\x05\x05\xdc\xdd\x55\x0c\x7e\x44\x9e\x2c\xe4\x6c\xed\xc3\x49\x8d\x6e\x31\x02\xe6\x0e\x7d\x8a\x71\x0f\x00\xbd\xbc\xee\xe9\xdc\xd9\xa0\xf7\x76\x2e\xb2\x5a\xf4\x24\xce\x94\xe1\xdc\x09\xc2\x15\x75\x23\xb2\xd9\x20\x4a\x28\xc5\x52\xeb\x23\x27\x1c\xf0\xb7\x8b\x30\xa9\x9c\x13\x61\x16\xc9\x3c\x94\xc7\xaa\xec\x26\x3d\x24\x9a\x30\xe5\x7d\xa9\xc6\xe8\x46\x42\x61\xd3\xac\xa7\x94\xe9\xcd\xd3\xc2\x81\x49\xe6\x5a\xec\x14\x70\xb1\x10\xeb\x66\x47\xe6\x6f\x31\x39\xaf\x01\x8c\xcd\x8d\x4c\xb0\xa7\x06\x5a\x92\x7f\xba\x27\xe6\xb5\x93\x4b\x15\x53\x4e\x07\xf6\xe7\xf9\x79\x95\x55\x21\x91\xd8\x67\x8a\xbf\xd6\xce\xc5\x1a\x21\x56\x60\xf9\x6e\x12\x62\x29\x53\x17\x37\x9f\x9b\xba\xe8\xf1\xb9\x97\xa2\x89\xc9\x21\xc9\xaf\xa4\xb8\x97\xf9\x39\xbe\x86\xed\xab\x0d\xe4\x25\x80\xdd\xba\xd7\x46\xdb\xcb\x91\xa9\xcc\x72\x71\x94\x5f\xf4\x4d\xce\x28\x1f\x0f\x64\x59\x49\x50\x50\x05\xd1\x98\x05\xd1\xb6\xed\x90\x55\xa6\x5c\x1f\xd8\xad\x27\x1f\x45\x55\xe7\x65\x81\x2f\xb7\xa6\x8f\xea\x4a\xc9\x2a\x00\xbe\x64\x25\xd3\x8f\x78\xc9\x23\xfa\xdf\xc6\xe1\xf6\x9e\x22\x2a\xfc\x81\xdf\xa3\x69\x62\x1e\x38\x56\xf7\xf6\x92\xfd\x64\xfb\xde\xcc\xc4\xbb\xe0\xf8\xd5\x45\xef\x3c\x75\x3b\x80\x2f\x7d\xe7\xb1\xdf\x0d\x25\x60\x34\x39\x89\x04\x4c\x0e\x62\xab\x49\x21\xe9\x8d\x79\xc8\x52\x02\x4c\x25\xb4\x63\xc5\x35\x94\xac\xc7\x48\xe3\xe6\xf9\x39\x4c\xb3\xac\x7e\xa0\xb0\x85\x8e\x86\x9c\xe9\x96\x97\xdc\x8e\xc5\x6c\x60\x3a\x56\x2d\xc4\xbf\xdf\xe2\xb0\xd6\x82\xed\xdf\x84\xff\xe9\x10\x6f\x1f\x76\x6c\xc0\x74\xf7\x79\x05\x8f\x17\x6c\xa6\x29\xfd\xcd\xf9\xfb\x64\x5e\x5e\x9e\x95\x4f\xf1\xdb\x5c\x86\xc9\x46\x7d\x40\x80\xfa\x16\xf5\xe6\xfc\x7d\x1a\x84\xd0\xca\xac\x74\x20\x53\xf2\x8e\x63\xd6\xca\xaa\x51\x05\xe9\x89\x08\xf4\x20\xac\xb2\x6f\xac\x33\xfd\xb1\x49\x45\x09\xc4\x91\x3c\x44\x86\x4c\xcb\xc8\x34\x4e\x6f\x74\xa8\xeb\x6d\x3b\xee\xe3\xc3\xe5\x1b\x18\x2f\xd2\x67\xe8\x61\x01\xf4\x87\xbc\xec\x60\x96\xd7\x8b\x79\x06\x92\xc3\x34\x52\x77\xcc\x68\x4f\x76\x4d\x0b\x92\x18\xbc\x6d\x49\x6c\x6f\x9c\x64\x2d\xe1\xd9\x06\xca\x0b\x98\xfb\xf4\x13\x25\xbd\x28\x1e\x62\x6f\xfb\x54\x30\x6e\xb9\x2e\x12\x5a\xbe\xbe\x2d\xe7\xb7\x17\xf9\x7c\xde\x6f\x44\xdd\x24\x0a\x10\xf6\x18\x99\x12\xaf\x9a\xea\xb6\xe3\x49\x00\x2b\x80\x1b\x7d\x96\xcf\xc5\xec\xa8\x17\xed\xe9\x96\xe0\x4e\xdc\x87\x45\x00\x7e\x21\xce\xf2\x6b\x51\x2e\x1b\xee\xfa\x0c\x6b\x05\x90\x36\xd9\x77\x54\x67\xf9\x9a\x94\x93\x71\x64\x93\x68\x34\x2f\x2f\xa3\xf8\xee\x8e\x6c\x58\x21\x12\xba\x0b\x22\xd3\x38\x0c\xb4\xe4\x02\xe1\x32\x65\x50\x79\x71\x51\xba\x40\x32\x8d\xc3\x80\x0d\xaf\x0b\x04\x89\x12\x6a\x43\x61\x44\x9b\x5b\x1a\x53\x25\x9c\x3d\x2f\x5d\xd7\x86\xeb\x6c\xd1\xf9\x9c\xb0\x5d\xa8\x24\x6d\x37\xfb\x0b\x1a\x7d\xb8\x01\x87\xd6\xed\x6b\x6e\x6c\x9e\x03\x16\x9b\x27\x14\x57\xe7\xd0\x89\xab\x13\x32\xbf\x7d\xe4\x98\xdf\x06\xec\x31\x7e\x67\xec\x31\xd8\x76\x48\x01\xb7\x30\x9c\xdb\xb2\x59\x2c\x2d\x07\x8b\x12\xd3\xbd\xbc\xc0\x50\xe2\xa8\x21\xe2\xda\x00\x48\x90\x38\x5e\x61\x59\x78\x59\x18\xc3\xdb\x36\xfc\xd2\x12\x25\xcc\x6e\xad\x86\x5f\x65\x8b\x7e\x59\xe5\x97\x79\x91\xcd\x93\x42\xdc\xbc\x61\xb2\x20\x08\x39\xa1\x32\x07\xf2\x0b\x83\x83\xc5\xe8\x64\xa5\x4e\xb1\xe7\x0a\x00\x13\xe3\xa1\xae\x65\xa0\x63\x56\xb0\x34\x2a\x8a\xff\x58\x3a\xdd\xab\x74\x6d\xc4\x5f\x19\xaf\x34\x08\x67\x7a\xff\xa6\x9a\x89\x4a\xcc\x4e\x41\xe6\x80\xc1\x02\xe6\x22\xab\xfa\x71\x6b\x72\x08\xd7\x01\xdb\x7d\xb9\xbd\x18\xb8\x76\xc8\xca\x18\x13\xa9\x15\xd4\x78\x64\xed\x22\x79\x3d\x58\x54\xa2\x16\xc5\x54\x9c\xa2\x23\x4c\x48\x9b\xa3\xea\x1b\x58\xab\x5a\xb6\xb2\x88\x4a\x49\x3a\x29\xd1\x0f\xc6\xc3\xe7\x95\xb8\xb5\x82\xa0\x36\xd5\xf5\xca\xe3\x44\x96\x45\x67\x56\x1a\x4a\xab\xdc\xb0\xb4\x91\x84\x1b\xa3\xd3\x94\xb9\x56\x40\x83\x68\x6e\x64\xe2\xfa\xd5\x3b\x47\xee\x71\xbd\x4e\x98\x65\x92\x5a\x66\xc6\xb2\x50\xa2\x3c\xf6\x42\x0e\x3c\x04\xeb\x67\x52\xdb\x54\x96\xee\x9a\xfe\x23\x42\x4f\xf7\x80\x5d\xc9\xdb\xe4\x2a\xab\xbf\x78\x84\xda\x3d\x96\x8f\xf3\x80\x4d\xfa\x45\x91\xd4\x62\x7e\x61\x5e\x25\xb0\xbe\xa6\x84\x83\xb3\x1f\x5b\xc2\xbb\xf7\x29\xeb\xf1\x30\xff\xf3\x7b\xbc\x40\x5c\xd0\x89\x0a\x1e\x51\xe7\xa8\x85\x27\x47\x4f\x95\xac\x1d\xbd\xb2\xdb\x49\xe4\x6a\x3c\x72\x0e\xf1\x9a\x42\x71\x1b\xf2\x1e\xd6\x40\xe2\x66\xf4\xb0\x88\x5d\x14\x80\x43\xed\x41\x68\x34\x4a\xce\x29\x1a\x1e\xc8\x40\x6e\x23\xb4\x3a\x60\xd1\x7b\x4b\x50\xc5\x42\xa7\xe5\xaf\x5d\xde\xbc\xca\x16\xe9\xab\x6c\x31\x7c\x95\x2d\xd6\x2f\xd6\x57\xd9\xa2\x05\x28\xb6\x3c\x11\x8d\x47\xfb\xc9\xa5\x60\x46\xdb\xda\xa3\x2e\xb5\xc5\xda\x4d\x2c\x42\xf8\xc0\xdc\x4d\x62\x3e\x52\x6e\x9b\xd4\x4e\x7d\xdc\xfd\x3d\x8c\x4f\x8f\x34\xd9\xaa\x11\xd8\x3b\xb3\xd9\xac\x4f\x21\xf1\x4d\x5b\xb8\x11\x0e\xb5\x2f\x2b\x25\x1a\x82\x10\x43\x9c\xbc\x03\x0b\xf8\x83\x15\x00\xeb\x9e\x5d\x52\x6e\x8d\x3d\x7b\x32\x09\x45\x11\xaf\x48\x09\x07\x0b\xd0\x3a\xe7\x9d\xdf\xa6\xdb\xc3\x0d\x8e\x6b\xec\x15\xfb\x05\x73\x17\x1c\x47\x60\xbd\xea\xe7\x44\xb3\x6a\x37\xe2\x0f\x27\x50\x5d\x0e\xfd\xde\xfa\x5d\xb3\x1f\xb5\x60\x5d\x6b\x3a\x22\xec\x81\x73\x03\x77\xd1\x6a\xe7\x68\x78\x34\x03\x72\x89\xfc\x63\x67\xc1\xfd\x94\x37\x57\xc7\xc8\xb6\xf6\xcb\x05\xa9\x9f\xbd\x52\x2e\x35\x58\xf0\x56\xe2\x6d\xd1\x29\x11\x41\x5a\x89\xad\x5d\x9b\xb7\x10\x75\xed\x92\xfb\x58\xd8\x8a\x6e\xd4\xb9\x50\x67\xac\xe9\x56\x6b\x18\x16\x31\x6f\xcc\xb3\x48\xb6\x16\x79\xdc\x09\x6e\x3b\xd3\xd6\x53\x71\x95\xd5\x14\x24\x41\x0e\xfd\x2a\xab\x35\xb9\xab\x1c\xdd\x75\xab\x21\x59\x9d\xc1\x1c\xb8\xcb\x36\x26\x20\x16\x06\x3d\x9c\x62\x0b\x90\x2c\x17\x84\x9c\x67\x9e\xad\xe9\xd4\x42\x79\x37\x1e\x80\xc9\x0a\xec\x82\x21\x9a\xe0\x68\x5f\xf1\xfa\x8f\xbc\x5e\xb6\xb1\xe3\xe2\xce\xec\xd1\x6c\xbb\xb6\x20\xd4\xe6\xec\xa4\xb1\x46\x53\xfb\xb3\xeb\xfa\x20\xaa\xcb\xfb\x7b\xb6\xdb\xf4\x64\x02\xb5\x1a\xe6\x75\xb9\x98\x65\x0d\x77\x5e\xaa\xf8\x66\x9d\x21\xaf\x99\xf4\xd1\xc1\x40\x1b\xb3\x3e\xaa\x95\x78\x69\x2a\x45\xfc\xb4\x62\xa7\x09\xa6\xf3\xd2\x94\x7f\xca\xb7\x51\xc4\x21\xec\xdc\xeb\xba\xb4\xe1\xb6\xb5\x29\x96\x6c\x67\x86\x09\xa3\x6b\x25\xd3\xa3\xbc\x93\x5a\x9e\xd7\xa2\xfa\x28\x3c\x85\x4a\x1d\x72\xf6\xff\x8e\x28\xb2\x5f\xc1\x97\x40\xe5\x44\xea\x0c\x68\x72\xba\xfe\xa0\x1e\x31\x7f\x50\xdb\x5c\x36\x43\x3e\xa3\x1e\x39\x3e\xa3\xd6\x5f\x48\xbb\xae\xbe\xdf\x3a\x57\x5f\xcf\x35\xc2\xb7\x1b\x5d\x23\x7c\xeb\xba\x46\xb8\xa9\x9c\xe1\x4a\x08\x99\x48\xb8\xf8\x20\x80\xdf\xf4\x9b\x51\x39\x1d\x6e\x13\xbe\xb5\xdc\x26\xac\x8d\x10\xfb\xfb\xad\xe3\xbe\xfe\xe1\x5e\x61\x5f\xff\x10\x8e\xfa\xea\x39\x14\x75\x48\xd3\xf3\x38\x0a\xa5\xbe\xc7\x85\xe7\x06\xac\x1d\x50\xba\x8a\x31\xf7\x86\x56\xa2\x1f\x7f\x96\x65\x52\x0c\x2e\xf4\x73\xd4\x05\x6f\xe7\xab\xfa\xbf\x07\xdd\x96\xb5\xad\xd8\x20\xac\xad\x4d\x65\x43\x50\xaa\x5d\xad\xfe\xed\x85\xb9\xe5\xb6\xb5\xa6\xad\x6e\x78\x3b\x1f\x8a\xbc\x3b\xf9\xef\x1f\x9f\xbf\x3b\x39\x4e\xb2\x89\x5c\x7c\xd7\xd9\x22\xc9\x26\x6a\xa9\xd1\xff\x24\x9b\xa8\x85\xa5\x5e\xa3\x36\x85\xbc\xb5\x7c\x6a\x70\xb5\x9b\x85\xa8\x9e\xd9\xb7\xb3\x4a\x34\x2c\x66\xd6\x64\x52\x88\x4f\xcd\xa9\x84\x53\xf1\x97\x54\xe0\x42\x93\x03\x8f\x94\xe0\x36\x89\xf9\xa1\x91\xa0\xdc\x19\x8d\x57\x08\xf4\xed\x43\x71\x35\xe0\x8c\x82\x38\xa2\x3c\xd2\xbc\xef\x2b\x43\x36\x78\x3d\x40\x68\xb0\x77\x50\x01\x93\x74\xaa\x15\x4f\xf7\xda\xf3\x92\x81\x40\x51\xec\x14\xd2\x11\x74\x65\x7d\xc1\x1e\xe6\x45\xde\xbc\x92\xc0\x7d\x28\x82\x51\x36\xc8\x25\x70\xbd\xbb\xcb\x1c\x5a\x7d\xb7\x1f\xaf\x00\x46\x55\x0e\xf3\xaa\x45\xd5\xec\x25\xe7\x13\x54\xf0\x09\x9e\x62\xb3\x62\x0a\x4e\x4f\x65\x11\xcd\x6a\x7d\x42\xf9\xbf\x4c\x83\xeb\x33\xe4\x0e\xb1\x72\x16\x8b\xe3\x93\xe2\xec\x20\xa7\xd5\x03\xc0\x4f\xf6\xe0\x4c\x72\x57\xf6\xe4\xdc\x61\xd9\x85\xfa\x1c\xaa\x80\x72\x83\x09\xa9\x3b\x69\xfa\x7d\x59\xce\x45\x56\xa8\x4f\x94\x88\xa9\x2f\x74\x73\xa4\xbe\x60\x93\x54\x1f\xc7\x59\xa3\xeb\x40\x17\xba\x30\xbe\xa7\x6f\x5e\x9f\x3d\x7f\xfd\xe3\x09\x08\x1b\x2d\x8a\x60\xaa\xd5\x86\x42\x92\x6b\xc4\x91\x3a\x27\xe0\x95\x43\x26\x05\xf0\x68\x5d\x88\xb0\x9c\x06\xc7\x18\xca\x78\x05\x52\x08\x57\x5d\x69\x5d\x88\x14\x12\x2c\x3c\xb3\x19\xb0\x6e\x18\x88\x75\x2e\xde\x2c\xa6\x59\x23\x8a\xac\x11\xb3\x57\xce\xa8\x30\x4f\x26\x80\xb6\xb5\xba\xf3\x25\xe7\x59\x6d\x1e\xa3\xa6\x59\x53\x0f\xe9\x3f\x09\x2c\x47\xa6\xe0\xf8\xee\x4e\x42\xf3\x94\x21\xb9\x97\xb7\xc0\x80\xab\x84\x2a\xe8\xff\x63\xfa\xaf\x9c\x9e\xf9\x25\x8e\xbc\x24\xad\x2b\x89\x45\xcd\x20\x2f\xf3\x8f\xc2\x9c\x4d\xb0\xda\x31\x9c\xb4\xbc\x85\x28\x19\xbd\x1a\xdd\x4c\xd4\x53\xb2\x02\x84\xed\x48\x1f\x35\x5a\x18\x80\xb1\x81\x2c\xc7\xb5\x16\x24\x44\x49\x26\xf7\xfd\x76\x86\xf5\x75\x77\x07\xd6\x52\x06\x18\xf6\x0c\x07\x64\xa7\x6f\x25\x70\x2a\x72\xcf\xc2\xd8\x8d\x21\x70\xdb\xea\xd0\xab\x7a\x0b\xd1\x71\x54\xb5\x96\x3e\xc6\x22\x96\x6c\x45\xdf\x4a\x4a\xac\x86\x21\x49\x5f\xd2\x74\x03\x16\x8a\x71\x3d\x22\x7a\x29\x68\x95\xb2\xc3\xeb\xc0\x2d\x96\x90\xe3\x36\x58\x08\x20\x16\xc1\x52\x86\xfd\x96\xa7\xb3\xdf\xa0\x99\xa2\x91\x69\xf6\x0f\xa3\xe5\xcd\x80\x4d\xa8\x1f\xf8\x54\xe4\x03\xa8\xa0\x7e\x73\x68\xf6\x4e\x27\x4f\x95\xa7\x6c\xe5\xd8\x56\x16\x46\x88\x41\xe3\xc6\x11\xcb\x85\x80\x97\x63\x36\x10\xbb\xc3\x1a\x04\xf6\xde\xd0\xf6\xa7\x21\x68\x61\xe8\x31\xb8\x19\x7d\x1e\x25\x50\x87\x34\x22\xc6\x90\x35\xe4\x80\x77\xc0\xab\x5c\x1b\x05\xaf\x24\xcf\xfe\xd5\x06\xbf\xc3\x46\x6f\x79\xa6\x07\xe5\x22\x71\xf3\x7d\x56\x8b\x14\xef\xb3\xab\x36\x31\xc0\xc9\x55\x56\x2b\x9e\x81\x3c\x22\xbb\xb7\x5b\xe3\x23\x7f\x07\x7e\x6e\xba\xd9\xaa\xb2\xac\xc7\x78\xad\x05\x71\xbc\x3a\xa9\x34\x44\x1c\xaf\x78\x1f\xe0\x61\x81\x3a\x4c\x77\xe3\xd0\xf2\x58\xa8\x8d\x15\xa3\x13\xe8\x01\x25\x2b\x65\xd5\x64\xd7\xa1\x41\x5b\x0c\x97\xa8\x1b\x8c\x15\xe0\x60\x02\xf4\x9a\x5a\x6c\x14\x8b\x59\x20\x61\xac\xd0\xf9\xaf\xcb\xea\x1a\xb4\xa3\x4d\xcc\x3a\xd9\x0d\x36\x87\xd7\x18\x3d\xbd\x9e\xea\xdd\x9f\x76\xd7\x44\xce\x44\x5e\x10\x9f\x01\x79\x7c\x73\x32\xdb\xad\x15\x1c\x4e\xb1\x93\xbb\xbb\x66\xc1\xfb\xe7\x9b\x2a\x80\x9b\xce\x8a\x22\x21\xad\xdb\xc4\x39\xc1\xd1\x2e\xd3\xb2\x2d\x05\xe5\xc7\x7c\xf7\xb6\x43\xe6\x42\x00\x52\x1c\xd7\xee\xae\xe6\x6f\x91\x2b\x52\xe3\xfd\x00\x41\x83\xf6\xef\xee\x3e\x08\xd0\x4c\x98\x06\xd7\x7f\xa4\xf3\xaf\x9d\xc5\x11\xa9\x81\xac\xdb\x3d\x1c\xec\xd3\x0a\xd2\x3c\xa3\xc2\xb9\xd7\x49\x95\xa1\x7a\x69\xb5\xe5\x2d\xd3\x0d\xad\x68\x02\xff\x48\xc4\x6d\x26\x80\xd3\x70\xb0\x96\x00\xf2\x4d\x00\x68\x3e\x01\x14\xf6\xcf\x16\x54\x01\x07\xa2\xd8\xa9\xe4\xda\x26\x3c\xd5\x9e\x32\xd1\x07\x4e\x17\x19\x13\xd9\x0b\x97\x2e\x13\xfb\x6a\x81\x77\x1b\x08\x6b\xa9\x63\x64\x92\xb4\x5e\xf7\x15\x2d\x95\x6d\x19\xbe\x0e\x63\x69\xab\x97\x63\x17\x3d\xcd\x72\xe4\x86\x31\x73\x94\x8f\xe1\x90\xad\x53\x8f\x5d\x4c\x0c\xb7\x87\x10\x69\xaa\x88\xdf\x36\xc8\x87\x5c\x27\x76\x34\xb0\x5f\xea\xb4\x18\xdc\xe4\xf3\xf9\x2b\x8d\xbb\x78\x15\x48\xa4\x5a\x5a\x9b\xc5\x0a\xf3\x7c\x5d\x64\x1d\xe0\x00\x87\x0a\xd3\xeb\x2b\xf4\xd6\x41\xa8\xaa\x0b\x7c\x12\x50\x91\x88\x48\x0e\x09\x3f\xc3\x01\x88\x34\x92\xe0\xd1\x01\x1e\x70\x41\xc0\xbc\x61\x53\x43\x9e\x51\x12\xe0\x36\x3b\x9b\x9e\x01\xef\xa6\xa6\xa2\x6c\xc8\xbb\x1a\x60\x5c\x87\xdd\x40\x78\xf5\x69\xae\x7b\xfc\xd2\x25\x27\xd4\xa1\xf6\xc1\x26\x9a\xd7\x37\x83\xc1\x84\x02\x92\xc6\x2b\x7d\xef\xa6\x4d\xc0\xca\x4e\x0c\xc5\x83\x96\x91\xa4\xdd\xe7\xa7\x93\xef\x9f\xbf\x3e\x7e\xfe\xfa\x87\xf4\xe1\x3f\x06\x7b\x24\x20\xf9\xcf\x87\x66\x99\xcc\x44\x23\xa6\x0d\x65\x38\xe7\xf9\x35\xcc\x8a\xa9\x03\x4d\xf7\x70\x3e\xe0\x8c\xc7\x52\x75\x7a\x3d\x50\x3f\xf1\x5c\xa7\x8f\x78\x15\x80\xd8\x70\x25\x56\x60\x80\xe8\x40\x69\xcd\xd8\x9a\xb4\xb8\x55\xbf\xc2\x3b\xcd\xb4\x2c\x0a\x33\x46\x64\x5a\xae\x3b\x47\x00\xe3\xa7\x8f\xa4\x29\x61\xdd\xe9\xf1\x30\xb2\xf5\x06\x99\x5a\xbd\x60\xe5\xe2\x55\x53\xa6\x1f\xc4\x2d\x3d\x4a\xef\x27\x0f\xfe\x10\xb3\x6c\x7e\x8a\x7e\xaf\x4a\x38\x75\x92\x8a\xc9\x50\x7d\x36\x65\xbf\x29\x89\x69\x50\xa0\xf2\x4a\xae\xe6\xb1\x29\xb5\x5d\x60\x6b\xaa\x00\x34\x60\x5c\x60\xc5\x87\xa9\x06\xda\xd6\x9e\x21\xcb\x54\x2c\xaf\xaf\xde\x66\x55\x93\x67\x73\x85\xbb\x20\x4a\xf1\x7e\xa3\x94\x09\xf4\xdd\xa1\x3c\x7f\xcf\x6a\x2b\xe7\xf3\xf2\x06\x22\x21\x41\x21\x49\xfc\xce\x1a\x20\xe7\x3c\xf3\xe6\x85\xc0\x9b\xd5\x00\x79\x73\x13\xc1\xda\xdc\x1f\x10\x6a\x7c\x77\x47\x9b\x37\x7d\xab\x13\xcc\x4e\x1d\xca\x32\xa9\x55\xd0\xac\xd6\x81\x95\x2e\x8f\x8a\x7a\x9a\x3a\xa9\x78\x9e\xb9\xac\x04\x40\x3a\x67\x1e\xe8\x19\xa9\x36\x10\x0f\x00\x77\x04\xe3\x05\x90\x23\x97\x4c\xf1\x39\x45\x09\xfb\xea\x27\xae\x2f\x2b\x49\x97\xea\x71\xe1\x4d\xa5\xf2\xc0\x04\xad\x7e\x21\x6e\xe9\xa9\xe7\x15\xf3\x5d\x87\x66\x6b\x7e\x99\x91\x2a\xa3\x0d\xd0\x6a\xd7\x81\x52\xd8\x78\x8d\x37\x81\x2c\x2d\x19\xb2\x61\xec\x71\x78\x1e\xb4\x22\xbd\x82\x7b\xf0\xfb\x0e\x49\x45\x77\x15\x1f\xd3\xf0\xe5\xce\xdc\x8e\x24\x90\xea\xd6\xfa\x66\x24\x64\x12\x29\x17\x1c\xd4\x68\x8d\x02\xd6\xc9\x24\x4a\x42\x02\xd7\x78\xf8\xf9\x35\x9b\x3a\xbf\xa4\x36\xed\x2a\x44\x55\xa6\x71\xd4\x76\x7a\x04\xf4\xd1\xf9\x99\x94\xb5\x06\x5b\x9e\x68\x7b\xbb\xc1\x6d\xd3\x08\x55\xff\xf5\x2a\x66\x38\x64\xf2\x71\xff\x6e\x0b\x9c\x13\x6c\x64\x78\x32\x2f\x70\xcb\x8b\xe9\xad\xbb\x9e\xca\x8d\x31\xd1\xaa\x3a\x89\x25\x11\x8e\xd9\xb1\x09\x6b\x1c\xb4\x27\x46\x63\xb9\xd1\x06\x6f\x69\xc3\x10\xff\x6b\xcb\x9d\x6d\xce\x80\x86\x5a\xc7\x8e\xdd\x23\xea\x96\x38\x0b\x55\x5e\x49\x64\x06\xd9\x98\x9a\x1b\x4c\xdd\x54\xcb\x69\x53\x56\xd1\xdd\xdd\x4e\x58\x43\xc4\x61\xb7\xd8\x9e\xf9\xc1\x6c\x81\x8c\xb1\x57\x9b\x31\xbb\xec\xb1\xe2\x18\x60\x41\xe6\xe3\x0d\x90\x1f\x76\x70\x0a\x90\x9b\x1d\x38\x16\xc4\x2c\xdd\xe6\x7c\xc0\x7d\x5c\x15\x81\x2d\x9a\xba\xa5\xd3\x70\x6f\x35\x3d\xd3\xdb\xf3\xee\x6e\x28\x6c\xb9\xea\xed\x56\x1b\x16\xc5\xd2\x5b\xcf\x38\x0d\xed\xc7\x2e\x9d\x6f\xf6\xff\xe4\x1a\xad\xe6\x35\x99\x85\x0e\xda\x36\x74\x86\x5e\x2b\x4a\xdd\x18\xbe\x3b\x39\x88\x87\x0e\x71\xa3\xcc\x3f\x9b\xd7\xc2\x3a\xa0\xb9\x32\x03\xbb\xd3\x74\xa9\x1b\xa0\xe8\xdf\xe8\xdd\x40\xf5\xc6\x3c\x50\xbf\x4e\x38\x01\x01\xda\x57\x4a\x54\xad\x94\xd5\x8c\xd4\x1a\x6c\x04\x68\x09\xe0\xef\xf2\xa6\x10\xd5\x53\x43\xb3\x90\xda\x0e\xb1\x8e\x09\x3e\x73\x9a\xd1\x51\x3a\x24\x10\x12\x53\x5f\xe7\x71\x03\xb2\x94\xbf\xee\x00\xce\xe0\xc9\x47\xb5\x6e\xcd\x55\x6a\x7d\x51\x68\xac\xac\xb8\xfd\xb1\x58\x54\xe5\x54\xd4\x35\x5d\x92\x6a\x12\x56\x61\x15\xbe\x5e\xdf\x9a\x82\x20\x61\x82\x87\x64\x78\x15\x1b\x7a\x88\x86\xf7\x18\xcb\x02\x02\xa0\xe9\x6e\x46\xd8\x76\xb0\x3f\xb4\xb3\x07\x95\x28\x17\xa2\x70\x4d\xc5\xf0\xda\xdd\x5c\x2f\x20\x30\x1a\x6a\x44\x9a\xd0\xb1\x48\x2b\x7c\x44\xfd\xd8\x7f\x12\x72\x8a\xa9\x1b\xb7\x9b\x0c\xdf\xf4\x4c\x35\x82\xff\x86\x41\xdb\x61\x99\xf4\x00\xa8\x20\xc7\xad\xf2\x30\xe3\xba\xb0\x21\x72\x4a\x19\x78\x92\xcf\xd0\x72\xdc\x44\x93\x00\x07\x34\x18\x3f\x02\x87\x63\x3c\xd8\xe4\xb3\x4f\xe3\x75\x2f\x3a\x24\x15\x80\xeb\x28\x5e\xf1\xc9\x79\xdd\xf5\xc2\x45\x4a\x73\xbd\xe0\x28\xb9\x36\x8f\x67\xca\x3b\xf3\xf5\x82\xf9\x39\x80\x28\x6a\xce\x04\x21\xc9\xdb\x44\x1d\xa6\xd8\x91\x2c\x3f\xa6\x75\x1e\xae\x27\xbc\x46\xd6\x56\x47\x4b\xc0\xb8\x4f\xc6\x3d\xb0\x3f\x5d\x56\xaf\x90\x4a\xc0\x01\x1b\xfe\xae\x85\x28\x02\x7a\x80\x0a\x16\x6e\x40\x12\xc6\x79\xf3\x42\x05\x48\x93\x81\xa4\x9f\x5f\xe8\x82\x92\xd5\x31\xcd\xd8\x21\x00\x35\xbd\xd6\xa9\x02\x57\xd3\x3e\x2f\xa7\x24\xa6\x79\x6c\x89\x72\x8e\xf6\x29\x08\xd0\x83\x07\xf3\x72\x8a\xe1\x62\x2e\xfa\x6a\x64\x24\xd8\x99\x97\xd3\xb1\x3f\xb8\x75\x71\xa6\x1d\x8c\x63\x75\x0e\xae\x25\x55\x73\xa4\x63\x49\xb4\x65\xe8\x7e\x85\x55\x5d\x83\x67\x68\xb9\xbd\xae\xda\x18\x07\xee\x38\xee\x23\x44\x5c\xef\xee\xf2\x37\x6a\xb5\x82\x94\x97\x41\x1a\xa1\x9a\x1e\x50\x90\x1c\xdb\x63\x71\xc9\x87\xe4\x0d\xee\x46\x51\x91\x56\xb5\xd9\xf9\x61\x3f\xd5\xf2\x89\x8e\x6d\x57\x6f\xba\x95\x68\x38\x6d\x49\xf6\xa5\x5f\x89\x06\xc7\x41\xe4\xc4\x69\xc6\x3c\xa2\x6a\xea\x69\x43\x99\x9a\x82\xdc\x6d\x49\xdd\x33\xb4\xc4\x8e\xef\x45\x81\x70\xd9\x26\x52\x76\x07\xd3\x54\x89\x06\x2f\xd5\x48\x10\x1d\xa2\xa0\xa0\x10\x87\xa8\x94\x3f\xc6\x1b\x0c\x7c\xc2\xd1\xb7\x71\xeb\xd2\x15\x70\x99\xce\x3c\x40\xda\xaa\x85\x32\xf2\x3f\xb9\x77\xc4\xea\x40\x95\x17\xc8\x06\xaa\x74\x87\x89\xd2\x56\xe4\x18\xbb\x07\x69\xc4\x6f\x96\x03\xd8\x21\x5f\x70\x81\xb3\x77\x33\x81\x32\x97\xb5\x3b\x36\xa1\x5a\xae\x23\xa9\xb3\x0a\xc2\x68\x25\x10\x31\xeb\x07\x26\x7f\xc6\x75\xef\x69\xb7\xb6\xfa\xaf\xf8\x57\x20\x63\xa6\xdb\xa4\xd2\xd7\xc5\xda\xed\xbf\x13\xff\x5c\xe6\x95\x98\xf5\xf4\xf3\x6c\xd4\x72\x69\x34\xe6\x1a\x26\x49\x55\xea\x78\x00\x41\xb0\x54\xfd\x30\x35\x20\x4f\x6c\x44\x21\xea\x10\xd4\x09\xa9\xf9\xd9\x02\x30\xe3\xb3\x9c\x01\x99\x9b\x8f\x84\x7b\xa5\x2c\x14\x4d\xd5\x4c\x3d\xd9\x6b\xd7\xf6\xec\x6f\x2a\x48\xd9\x6f\xe6\x49\x93\x78\xe9\xad\xfd\x69\x0e\xb5\xe4\x42\xe9\x3b\xfd\x84\xee\x83\xf5\xa3\xba\x46\x3e\x38\xc2\x59\xa1\xa8\x82\x79\xc6\x81\x72\x13\x14\x7e\xac\xf5\xca\x69\xac\x50\x65\x95\x3b\xb6\xf5\x29\xf6\x54\x73\x02\xfb\xe3\xe1\xfa\x2a\x0f\xe2\x16\xf3\x6d\x47\x40\xc3\xfc\xcf\x13\x4b\x98\xb2\xb7\x97\x43\xfc\x60\xdb\x6b\xe4\x44\x4b\x52\xfc\x01\xc3\x3d\xa1\xbb\xa3\x8e\x65\xe8\x80\x4c\x43\xf1\x43\xa1\x1f\xfc\x49\x89\x59\x8f\xf6\xe2\x5e\xd6\x33\x35\xc0\xcd\x62\xe0\xdf\xc3\x51\x08\xd4\xed\x9d\x54\x29\xaf\xa9\x1f\xcc\x99\xc4\xf5\xb5\x98\xe5\xec\xd6\xee\x39\xe8\x76\x39\x35\xc7\x33\x77\x75\xc9\x99\x30\xa3\x5c\x4c\xd5\x85\xc3\x8d\xd9\xfe\x9e\xdc\x2e\xa4\x5e\x8a\xe9\xef\xb9\x25\xcb\xf8\x7f\xa4\xfa\x9b\x90\xaa\x3d\x09\xf7\x27\x58\x25\x9d\xda\x40\xb6\x76\x33\xa9\xfd\x69\x29\xf5\xb3\xc7\x13\xf3\xd3\x56\xfb\x37\xb7\x9f\x0e\x75\x77\xa3\x0d\x6e\x6b\xbc\x83\x4b\x74\x5f\x79\x3c\xa4\xe1\xfe\x75\x35\xc7\xd7\xe9\x6d\x43\xa7\x3c\x03\x60\x48\xc5\xa8\xb7\x45\x18\x82\xd2\x83\x1a\xdb\x87\x4c\x63\xdb\x72\xbc\xec\xaa\x64\x5b\x8e\x98\xd7\x69\xba\x3e\xba\x9f\xa2\xeb\xa3\xb0\x9e\xab\xe7\x80\xdf\x2d\xe3\x39\xe4\x0f\x94\xda\x54\x08\xca\x3c\x79\x76\x76\xf2\x6e\xf2\xe6\xfb\xd3\x93\x77\x7f\x3d\x79\x77\x9a\x46\x47\xd3\xab\xac\xb8\x14\x88\xf3\xef\x4f\x9e\xbd\x79\x77\x62\x65\x23\x49\x46\xcc\x16\x1a\xe0\xd1\x97\xbd\x7e\xcb\x26\xfa\xa6\xef\x3d\xa7\x95\xd6\xd9\xdb\xd6\x17\x76\x3b\x61\xe9\x8c\xe8\x6d\x51\xde\x38\x60\xf1\xbb\x11\x79\xdc\xe8\x4a\xbc\xbf\x50\x20\x76\xe3\x4c\x00\xbd\x98\x0a\x8d\x3d\x9c\xbc\xf6\x3a\x91\x83\xf4\x52\xe5\x5a\xdb\x1e\x7f\xa1\x9d\x9b\xe3\x4e\xeb\xfa\x07\x55\xb9\xbc\x6b\x00\x19\x07\xcf\x34\xa0\x50\xfe\xe1\xea\x15\x6c\x46\x0a\x2d\x0a\x7b\x90\x9e\x87\xfd\xcd\xa8\xea\xc2\x8c\xa3\xb3\xee\xa8\xa8\xf3\x09\xb4\x25\xf5\xdb\x4f\x23\xa7\x9c\x2f\x9f\x46\x47\xe3\xdd\x57\x8e\x37\x57\x3f\x5a\x45\x81\x7e\xfb\xdd\x66\x7e\xb6\xb5\xb3\x41\x3f\xc0\x0f\x1f\x4a\x60\x24\xa6\x12\xab\xd7\xe1\x8e\xa4\xe1\x64\xbf\xff\x5f\xa5\xe7\x1e\xc1\xde\xab\xe7\x5e\x9f\xb7\xc5\x76\x6d\x9e\xf7\x3a\x7b\xfd\x51\x85\x11\xa9\x53\xad\x52\x8e\x25\x18\xba\x8d\x6d\x74\x67\x7c\x9e\xce\x16\xb6\x98\x8c\xba\x63\x36\xea\xee\xe9\xf8\xb2\xa1\xb1\xf9\xf8\xea\x43\xf3\x07\x15\x18\x8e\xcd\xb0\x6c\xb9\xed\x79\xf4\x1f\xaf\xe1\x89\x60\xf3\xf3\x93\xdc\x2d\x70\xdb\x6d\x65\xbb\x8d\x70\xf3\x66\xb3\x7e\x23\x74\xd6\x68\x28\x71\x03\x8b\x86\x3e\x5b\x46\x9b\xcd\x08\xbf\x88\x1f\x5b\xeb\x18\x3e\x60\x67\x76\xe0\xd8\x99\x99\x28\x25\x2e\x97\x65\xa2\x96\x74\x3c\xda\x28\x3c\x9c\x0a\xe6\xf8\x96\x25\x7a\x1e\x43\x4c\x16\xb3\xc3\xcd\x66\x33\x73\xad\x91\x6d\x8a\x2a\x21\x3e\xc2\x0d\x2c\x52\x9a\x0a\x50\x04\xcf\x12\xf4\x93\x6d\x6d\x67\xd5\x09\xd6\xf9\x03\x17\x1a\x63\x12\xbc\xb1\x9e\x42\xa8\x19\x5d\xcd\xc8\x40\x8f\xd1\x25\x1e\x08\x7e\x10\x30\x5e\x75\x40\xa6\x54\xd1\xaa\x6d\xd1\x17\x07\x7e\x1b\x95\x40\x16\x1a\x9f\xbd\x13\x62\x92\xee\x29\xf9\x97\xc3\x7a\x8f\x6c\x54\x1c\x79\x28\x39\x32\xc1\x74\xf4\xf2\x3c\x1a\x8d\xdb\xf8\xc1\xc1\xf0\x3f\x9c\xf6\xd1\xd0\xca\xbd\xf5\xd6\x23\x48\x66\x21\x9e\xda\x61\x78\x8e\x2e\xe6\xcb\xfa\xca\x95\x0b\x76\x22\x3c\x4f\xe6\xa2\xd0\xf3\x41\xf8\x1f\x72\x52\x30\x51\xca\x44\xc1\xc6\x6f\xb9\xf0\x87\xcb\xa2\x27\x13\x80\x17\x68\xac\x51\xa7\x0d\xa8\x05\x10\xe6\xca\x5f\x83\xbc\x3e\x16\x75\x53\x95\xb7\x79\x71\x79\x77\xe7\x26\x5a\x4f\xb4\x26\xaa\x13\x21\x5c\xd7\x6a\xf0\x3b\x72\xb3\x14\x5e\x4d\x0a\x8b\x3b\xdc\x85\x44\x18\x7b\xea\xba\xb9\xe1\x34\xad\xdc\xdc\x18\xcc\x8e\xc6\x5d\x76\xcf\xc6\x4e\xf9\x37\xf2\xf4\x09\xb2\x0a\xea\x84\x8a\x0f\x40\x6f\x90\xe4\x6c\x88\x2c\x5e\xf3\x8b\x3e\xfe\x02\x41\x30\xbd\x5f\xad\xb2\xa3\x83\x36\x59\x65\x47\xa8\x59\x75\x74\xd8\xb6\xf1\x20\xdb\x49\xd3\xc3\x78\x45\xb5\xa0\x87\x5d\xb9\xfa\x30\x41\xb9\xdb\x3a\x79\xfd\xd7\xc1\xe9\xd9\x8f\xdf\x4f\xde\x7c\xff\xbf\x4e\x9e\x9e\x4d\x9e\xbe\x3b\x79\x72\x76\x82\x34\xf9\x82\xe3\xb7\x1d\x7a\x2e\x16\x48\x6b\xbe\x8e\x57\x2f\x98\x34\xb3\x3c\x7f\x3f\x2c\xcf\xdf\x83\x54\xf3\xc5\xd0\x68\xcd\xba\x30\xae\x55\x80\x0f\xc6\x34\xed\xc9\x8e\x9d\x54\x07\x74\xf5\x2d\xaf\x54\x99\x19\xaa\x57\x73\xea\xf0\x20\xaf\x4f\xf3\x6b\x70\x73\x3f\x4b\xf5\x43\x94\x63\x0d\x4b\x48\x0e\x18\xc1\x4e\xb3\xe2\x9d\xb0\xd2\x73\x51\x27\xd3\xac\x38\xb6\x60\xdf\x14\xc7\x6f\x5e\xa1\xb6\x05\x4f\x46\xf7\x70\x8e\xba\xc1\xaa\x4d\xa2\x2c\x4a\x56\x96\x0b\x98\x78\xd5\xb6\xda\x2b\x5c\xec\x14\x31\xd3\xe7\x56\x1f\xec\x9e\xbf\xb9\xbc\x97\x44\x15\xd0\x7a\x80\x7e\x4c\xcb\xe2\x22\xbf\x5c\x82\x9b\xd2\x23\x89\xa1\xc4\x78\x58\xc5\x6f\xb7\xa7\xb6\xb7\x19\xe8\xfa\x17\xd4\x7e\x53\xe5\x8d\xf9\x42\x12\x86\x89\xe2\x4a\x10\x83\x2c\x4d\x71\xfa\xfa\xf1\x30\x8c\x7e\x6b\x3b\xf0\xd1\x3e\x2b\xa7\x20\x62\xa3\xa5\x74\x32\x17\x10\xb8\x21\x9a\xe5\x1f\xa3\x38\x89\x66\x7e\x85\x51\xb2\x6a\x6d\x6f\x30\x7a\x7e\xec\x47\xb8\x3e\xc8\x00\x77\x82\x93\x11\x9e\x4b\xfd\x72\x1e\x1e\x8a\x57\xc8\x5a\x75\xea\xf8\x9a\x89\x7a\x4a\x3e\xd7\xeb\xd7\xe5\x4c\x30\x41\xa4\xfc\x64\x4e\x1f\xe3\x15\x42\xa4\xce\xeb\xa5\x4c\x23\x9b\x0b\xcc\xef\x70\x03\xcd\x02\xf9\x15\xe5\x4c\x9c\xc9\xf5\x96\xa6\x51\x01\x06\x9c\x7e\xfe\x6b\x74\x26\xab\x5c\x7e\xb7\x60\xc6\x20\xeb\xe7\xee\x8b\xcd\x81\x0a\x7a\xa4\xb8\xb4\xb9\xc1\x53\x70\x51\xfa\x08\x68\xdb\xb6\x55\x7b\xa7\x03\x9c\x3a\x0b\x5a\x83\x5d\x65\xb5\x4a\x7c\x32\x9d\x8a\xba\x2e\xab\x5a\x3f\x45\xee\x74\xd4\x16\xaf\xd6\x97\x47\x05\x92\xae\xae\xac\x99\x41\xd9\x26\xe0\xe0\x12\xd9\xa2\x30\x6a\xda\xae\xaa\xfd\x1d\x4e\xbb\x1f\x95\xdb\xfb\xab\x27\xaf\x8f\x9f\x9c\xbd\x79\xf7\xf7\xc9\xe9\xc9\xd9\xd9\xc9\xbb\xdd\xdd\x9d\xb5\xe3\x50\xba\x2e\xa1\xb2\x38\x46\x8b\xc3\xb7\x2c\xc9\x2d\x01\xac\x3e\xd0\xd4\x8f\xae\xd3\xb7\x33\x00\xd4\xba\x18\x40\x9b\xdd\x8c\x68\x7f\x8f\xe6\x52\xb0\x9d\xb3\x78\xd7\x51\xe4\x6f\xe1\x14\xe4\x8b\xd9\x89\xa0\x57\x8b\x43\xd7\xab\x85\xe7\x19\xe3\x90\x7b\xc6\xd0\x33\xe8\x8a\x52\x55\x06\x40\x95\x1f\x45\x55\xe5\x33\xf1\xf4\x2a\xcb\x8b\xda\xf3\xd5\x61\x67\x07\xbd\xdf\x7f\xcb\xbc\xdf\xbb\x6e\x2e\x7f\xcf\xdc\x5c\x72\x3f\x05\x14\xf3\xc2\xde\x3c\xd3\x8e\x25\x82\x18\x71\x89\xb9\x9b\xce\xcd\x15\xcc\x3c\xcc\xca\x73\x8e\x93\x37\x73\xbd\xe1\xb8\xda\x70\x6b\x9b\x3c\xfb\xf1\xf5\xd3\xb3\xe7\x6f\x5e\x53\x8b\xdd\xf9\x9a\xc0\xc8\x46\x12\x39\xc1\xe3\x93\x67\x4f\x7e\x7c\x79\x36\xf9\x21\x58\x5b\x57\xae\x19\x42\x18\xa0\x6f\xf9\xfa\x76\x15\xcb\x24\x5d\x48\xfe\x99\xc5\x5c\x35\xf6\xb9\x2a\xd6\x24\x69\x9a\x82\x1b\x61\xee\xea\x6b\xc3\x96\x9d\xcc\xb2\x26\x03\x93\x1f\xa6\xbf\x9b\x88\x4f\x79\xdd\xe4\xc5\xa5\x44\x66\xa2\x9e\x60\x8c\x4d\xc1\x0e\xc0\x5b\xb6\x57\x60\x2c\x81\xca\xbf\xc6\x78\x7b\xc8\xeb\x49\x6d\xa3\x6e\xbc\x3f\xaa\xba\x31\x53\x7d\xe9\xfc\xef\x20\x90\x3f\xaf\xa5\xcb\x94\x92\xc3\x0c\x1a\x91\x55\xb3\xf2\xc6\xda\xdf\x63\xa5\xe5\xda\x55\x03\xea\xbb\x82\x92\xac\xdd\x49\x4c\xcb\x2f\xfa\xfe\xee\xad\x3a\x0c\x27\x85\xb7\x02\x2c\x64\x7f\x26\xf3\x65\x6c\x28\x48\x63\xce\x3a\x92\x4c\xae\x31\xb1\xa8\x03\xd9\x46\xf7\x58\x72\x3c\x7a\xac\x59\x93\x6d\x1a\x17\xa7\x2d\x83\x10\x59\xf0\x6b\x8c\x58\xf2\xae\x9d\x2b\x10\x58\xdd\xae\x05\xa3\x67\x35\x84\x16\xd9\xbf\x56\xf9\x5f\xd3\xb3\xba\xb1\xc3\xc4\xc2\xe4\x17\x7d\x36\xaf\xd6\x8e\x69\x81\xc3\x22\x20\x35\xb4\xc1\x2c\x9f\x1d\x3b\x1c\x4a\x30\xd9\xaa\x81\x8c\xc7\xbb\x04\x76\xeb\x19\x28\xb6\xc2\x29\x6c\x04\x6f\x43\x4c\x9b\xc4\xc4\x93\x78\x21\x6e\x93\x42\xdc\xbc\x10\xb7\xf8\x08\x6e\x97\x93\xbb\xa9\xbc\x1c\xae\xe7\x44\xfc\x8d\xc4\x6f\x63\xfd\x94\x03\xc3\x62\xdf\x57\x68\x6f\x65\x5d\x01\xaf\x90\x54\x39\x76\x59\xa1\xc9\xbd\xfa\xf0\x42\xca\xe7\xaa\x5b\x36\x96\x37\x39\x07\xa9\x0e\xb6\x52\x2f\x65\x3d\x6f\x64\x78\x98\xfb\x88\x40\x3b\xe5\xa8\xbf\xfc\x6b\x75\x90\xfb\x38\x70\xb9\x8f\x6d\x64\xaa\x26\x6c\xbb\x07\x66\xb2\xb6\x96\xbe\x5a\x2f\xdd\x3f\x16\x79\x59\x78\xc0\x76\xb6\x5d\xe2\x38\xbf\xf0\xe3\x7f\x5a\xb9\x00\xcf\x64\x56\xeb\xc2\xf8\x7c\xd4\x01\xef\x78\x01\x70\x7e\xcb\xa4\xc1\xae\xb0\x36\x94\x3f\x13\x17\xa2\xaa\xc4\x2c\xdd\x37\x4b\x54\x91\xce\x4f\xf9\x7c\xfe\x14\x1e\x46\xac\xa3\x29\xa8\xf5\x67\x8e\xc6\xdd\xdd\xeb\xd0\xd1\x08\x06\xf5\xea\x7a\xa7\x3c\xa8\x82\x0c\x06\x8b\xc0\xcf\x04\xed\xf3\xe4\xb7\x73\xf4\xca\x73\xdc\xec\x73\xa4\x17\x8a\x32\xa2\xa6\x4c\xd3\x94\x69\xdc\xaa\xa3\x13\x4d\x53\xc0\x88\x1a\x47\x81\xe6\x7f\x2c\xc1\x3e\x71\x15\xb6\x9b\x17\xe2\xb6\x0e\x8f\x3d\xb9\x8e\x87\x53\xd8\x5b\xbb\xf3\x8b\xb2\xc9\x2f\x6e\x43\xef\x6e\xba\x25\x0f\xd3\xc7\xf9\xec\xdf\x08\xd1\x9b\x71\x3a\x53\xfd\x25\x94\xce\x82\xfd\x6f\xf9\xa4\xed\xee\x52\xf2\x8e\xe9\x96\xae\xdd\x42\x7d\x10\x19\x06\xf3\x1d\xd9\xca\xfa\x05\xd1\xdf\x81\x78\x89\xd0\x9f\x9e\xbf\x7c\x39\x39\x3d\x39\x79\x9d\x1c\x3f\x3f\x86\x1f\xd6\xe1\xd4\x49\x02\x33\xb1\x78\x81\x9e\x70\x32\xed\x9a\x9e\x4b\xb8\xf5\x60\x70\x47\x11\x45\x6a\x5a\x6a\xca\x45\xba\x23\xd3\x40\xd0\x52\x2e\xe2\x95\x0d\x00\x4f\x16\x8d\xa8\x8e\xc5\xa2\xee\xfb\xcb\x2f\x61\xed\xcb\x82\xd8\x09\x5d\x97\xa9\x06\xa5\x7d\xe1\xe1\xd8\x78\xbb\xff\x68\x14\xb6\xba\x06\xa3\xf2\x83\x63\xd1\x8d\x6f\x18\x8a\xae\xc4\x19\x89\xae\x90\x5e\x5c\x83\xb5\x84\xdd\x9f\xa3\x3b\x26\x63\x92\xc0\x8c\x10\x56\xad\x6d\xae\x30\xc2\x2a\xc7\x31\x8e\x7d\xe8\xe7\x18\x93\x9d\x99\x58\xe8\xcb\xc3\xa2\x1e\xc2\xa7\xfc\x23\x57\xc8\xa2\x56\xf0\xc8\xca\x2e\x98\x21\x2e\x69\x39\x63\xa2\xba\xc3\xa4\x01\x17\x52\x6c\xb9\xa9\x77\x63\x31\xa3\x55\xa9\xde\x4d\x54\x18\x12\x22\x72\xcb\x4c\x77\xc3\x3e\x05\xb2\xa3\xbe\x6f\xa9\x0f\xc5\x50\xff\xaf\xaa\xa3\x58\xee\x10\x56\x92\xde\x29\x62\x8b\x44\x8a\x72\x26\xea\xb4\x0b\x56\x45\xd3\x1f\x8d\x31\x1c\xab\x8e\x4d\x0a\xc5\x3c\x65\x51\x48\x1d\xe5\x63\xbe\x55\x63\x0d\x71\x6b\xca\x62\x8a\x5d\x38\x3d\x8c\x57\x81\xe3\x0b\x41\x47\xb9\xea\xc8\x28\xdf\x3b\x18\xc7\x1e\xb2\xba\xb6\x96\x7a\xb9\x58\x54\xa2\xae\x4f\xb0\x0f\x84\x3a\x89\x9a\x5f\x15\x7b\x76\x37\x1e\xcb\x25\x72\x74\x5f\x8c\x9a\x9d\x5a\x21\x14\xa2\x68\xda\xe3\xa3\x9e\x6d\x8f\xea\x63\xa7\xd6\x35\x98\x5e\x77\x45\x89\x57\xeb\xe7\x01\x2d\x95\x98\xce\xc4\xa5\xf6\x51\x72\x8b\x05\x6a\xe0\xb4\x91\xa5\xd9\xdb\x33\xa0\x42\xeb\xba\x06\x00\x1f\x3c\xa0\xf7\x17\xf8\xfa\x73\xba\x1f\xaf\x3c\xe6\x4a\xbf\x99\x32\x86\x0a\x1f\x64\xfb\x0e\x1d\x15\x97\x82\x3b\xdf\x3b\x37\xa1\x9c\xc3\xfd\x1d\x1a\x66\x54\x42\xfb\x3d\x4d\xfc\x30\xc1\x9b\x79\x8c\x8d\x7b\xba\x7e\x57\x4d\x95\xba\xa0\x56\x51\x34\x2f\xd9\xc9\x4c\x32\xa6\x0c\x39\x3c\x06\xb4\x8f\xa3\x6c\x36\xb3\x66\xcc\x28\x0e\x0c\x65\x45\xa9\xc5\xef\x1a\x75\x1a\xfb\xf5\x3c\x1e\x9a\xc7\x60\x1b\x64\xc4\xea\x1e\x43\xd7\xe8\x3a\xbd\x55\x01\x3e\x4d\xeb\x98\x84\xcf\xc2\x1c\xe9\x7e\x9a\x51\x74\x21\xad\xdc\x0e\x5d\xf6\x55\xa2\x13\x55\xf7\x1b\xbe\x25\x62\xf7\x36\xc9\xd4\x4f\x1a\x86\x4a\xe8\xc5\x99\x7a\x29\x16\xbc\x23\xdc\x75\x84\xb9\xb6\x9e\x92\xbf\x2e\xd2\x50\xa2\x1d\x85\xd3\x5b\x28\xa9\x9f\x64\x95\x70\x17\x67\xea\x26\x6c\xba\x4a\x5f\xfa\xaa\x44\x5b\x3e\x34\x7c\x51\xcc\xba\xaf\x1e\x43\x76\x3b\x09\x7f\x47\xa4\xbb\xc0\x55\x54\x49\xe0\xef\x23\x27\x27\x3f\x46\x3f\xbc\x7c\xf3\xfd\x93\x97\x93\xb7\x4f\xce\xfe\x92\x3e\xfc\x47\x7f\xf4\xe4\xc1\xff\xfe\xcf\xf1\x5d\x7f\xb4\xff\xe0\x4f\x63\xfc\x88\xe3\xc1\x7f\x8d\x7e\x1e\x8c\x1f\x42\x91\xbf\x3c\x39\x9d\x9c\xfd\xe5\xf9\x69\x1a\x81\x8e\x06\x0e\xfa\xd9\xf3\x77\xa7\x67\x30\x20\x59\xc5\x3f\x7e\x1e\x8c\xf7\xe2\x87\xfa\xbd\xc0\x38\xb7\xa4\x90\xb4\x7c\xa5\xb3\xbb\x52\xc4\xdf\x18\x5b\xd2\x37\x92\x99\xbb\xbb\xea\x3d\xd2\xf2\x5f\x0b\xfe\x18\xa0\xb0\xd6\x5c\x90\x4c\x2b\x6e\x1f\xa9\x12\x5e\x2a\xfb\xce\x4b\xd1\xbc\xcd\x9a\x2b\xff\x3e\x02\x82\x69\xfb\x8e\xa7\x59\x42\x92\x96\xdb\x57\x34\x15\xef\xdf\x77\x82\x40\x10\xca\x57\x3a\x04\x33\xdf\x49\xd3\x07\x07\x1b\xba\x41\x95\x69\x28\xf5\xa4\x68\x43\x29\x0f\x7b\xbe\x00\x96\x75\x35\x70\x21\x25\x37\xc8\x01\xd1\xac\x7e\xb4\x4d\xb9\x40\x54\x76\x47\xa6\x59\x43\x53\x2f\xca\x8e\x07\xe1\x1d\x35\x81\x2a\x68\xd8\xee\x6e\x87\xb7\xe1\xc1\xb2\xf8\x50\x94\x86\x57\xe3\x93\xed\xe6\x19\x79\x2d\xb3\x23\x6c\x4d\x6c\x46\x94\x1b\xea\x1d\xce\x7b\x00\x95\x54\x27\xd7\xc4\x7a\xe8\x7e\x3c\x94\x80\xba\x08\x3f\x9e\xc8\xf5\xd9\xd9\x72\x31\x17\x7d\xd2\x98\x44\x5d\xd0\x8f\x18\xf7\xe3\xec\x2a\x87\xd0\xf5\x57\x7a\xb2\xd5\xca\x80\x40\xcb\x49\x5e\xff\x30\x2f\xcf\xb3\x79\xba\x43\xc0\xbb\xbb\xf6\x6a\x43\xaf\x5f\xa8\x92\xf9\x41\x80\x5b\xdc\x1d\x6c\xe8\xee\x4e\x15\x8e\x31\x81\xba\x38\x2f\xcb\x0f\xcb\x05\x45\x17\x91\x55\xc6\x3a\xea\x3d\xf9\xc0\xfa\x16\x2f\x72\x58\x28\xb5\x8a\xa1\xf3\x12\x80\xc5\x08\xde\x7a\xcd\x82\xc9\x15\x95\x91\x34\x47\xa3\x05\x37\x70\x6e\x03\x1f\xc4\x2d\x31\xa1\x7b\x07\xca\xcf\x46\x73\x75\x77\x07\x20\x26\x34\x56\x1c\x0e\xab\x28\x09\xbf\x37\xcd\x8a\xa2\x6c\x7a\xe7\x02\xe3\x50\x47\x4a\x1a\x3b\x62\x58\x1e\x9b\xa9\xd0\x0b\xa6\x2a\xcb\xc0\x14\x80\x3b\x99\x3a\x69\xe4\x3c\x25\xf9\xec\x53\x32\xc7\x6b\xb1\x84\xa6\x2d\x60\x77\xd7\x9a\x26\xb9\x26\x53\x6b\x4d\xca\x41\x73\x54\x61\x2b\xed\xe6\x49\x46\xe7\xe4\x65\xd9\xdc\xdd\xa9\x19\x59\x41\x4f\x52\x87\x80\x4c\xdf\x87\xd0\x31\x00\x92\x68\x07\xfc\xe2\xd7\xc1\x78\x08\x3f\x14\x1a\xf7\x5b\x18\x1a\x61\x7f\x31\xcf\x1b\xe8\xfa\x70\x2e\x8a\x14\x72\xd4\x6d\xc0\x78\x5d\x90\x75\xef\xd0\x98\x1d\x0f\x0c\xd0\xac\x1c\x28\x75\xa5\x22\x2f\x0c\xc8\xd2\x2b\x8c\xed\xee\xca\xbf\xb6\x8a\x20\x21\x89\xbd\x1d\xa9\x35\x59\x96\x6c\xc9\x5c\x8a\x86\xc7\x87\x81\x66\xbc\xe0\x34\x26\xda\x92\xe9\x8b\x15\x20\xca\x56\x0c\x0d\x85\xb2\xb1\x3c\xda\x72\xe6\xc2\xee\x40\x6a\x7f\x76\xe9\xee\x5e\x3a\x41\x68\xd4\xc6\x61\x47\xc9\xe6\x73\xe9\x4c\xad\x05\xa9\x68\x35\x55\x3f\x36\xf1\x33\x01\xd5\xe8\xfb\x05\xc7\x0f\xea\x54\x6c\xa3\x3c\xe1\x47\x63\xf9\xaa\x1c\xd2\xaf\xae\x33\xa1\x31\xef\x30\x54\x6a\x26\xba\xd9\xae\x47\x2e\xdb\x15\xe0\xcc\x5d\xc5\x88\x00\xa7\xce\x4b\x1a\x0e\xbd\xab\xa0\xe1\xd8\x03\x2a\x8d\xae\x7e\x45\x40\x21\xa2\x83\x35\x0c\x84\x19\xf9\x6c\x96\xb0\x93\x1b\x7c\xa8\x95\x3d\xf4\xe2\xaf\x6d\x56\x85\x3c\x31\x35\xe5\x5c\x54\x59\xd1\xf0\xb8\xc4\xa4\x9e\x46\xec\x9c\x7a\x5a\xa6\x72\xc3\x2e\x7e\xce\xf2\xe7\x51\xfb\x1c\x94\xdb\xe0\x67\xf2\x75\x79\xfd\x23\xf2\x21\xc9\x74\x59\x55\xa2\xc0\x2d\xe7\x73\x59\xbd\x6d\xfa\x49\x55\xef\x58\xdb\x1e\x70\x7f\x41\x94\x1a\x1e\xb0\x43\xdb\x0f\xc3\x2e\xe0\x09\x00\x25\x76\xac\x4e\x5b\xcf\xde\x69\xfa\x31\xe0\x24\x5c\xe3\x20\xdd\x96\xe3\x43\x5f\xde\x54\xaa\x9b\xfd\xab\x45\xf3\xa3\xcb\x01\x86\xd3\xfb\x81\x31\xa3\xd7\xe6\xf5\x5c\x6e\x80\x35\x8e\x57\x7c\x26\xd7\xf0\xc0\x16\x98\xcb\x0c\x2b\x4c\x72\xa0\xa0\x98\x93\xb3\xeb\x21\x55\x09\x54\xfd\xe6\x4d\x59\xd3\xe3\xa1\xf6\xee\x4e\x52\xbe\xde\x35\x9e\xd7\x27\xfa\x79\x5c\xb3\xc8\xa1\xa7\x76\x4d\x35\xe0\xf0\x8b\x93\x4e\x50\x41\x83\xb4\x14\x7d\xcd\x08\xcc\x58\xff\x48\xd6\x5d\xce\x3e\xab\xb7\xe7\xde\xe5\xd6\x52\x6f\xc3\xbd\xd7\x9a\x35\xae\x39\xf7\x5e\xbb\x1c\xa3\xb7\x1f\xd1\x3b\x80\xb5\xe7\x30\x2e\x17\xb9\xd9\xac\x6e\x9e\xb3\xc5\xbd\x77\xc0\xd8\xe1\x34\x55\x7b\xd6\x63\x65\x99\xc2\xca\xef\x27\x8c\x1f\x7e\xa0\x66\xca\x30\xce\xb1\xf2\x0f\xba\x93\xe2\x35\x3a\x32\x0c\x9a\xc3\xeb\xf2\x6b\xb0\x7e\x58\xe4\x9c\x76\x47\x04\x73\x1d\xe8\xa2\x16\x8d\x0e\x62\xfe\xf7\x72\xd9\x5b\x64\x75\x2d\x66\xbd\xac\x40\xf6\x1b\xfc\x2c\x44\xd8\x8c\x6c\x15\xf7\x6a\x8d\x28\x92\xba\xa1\xf3\xad\x50\x43\xdf\x04\x1b\xc2\x9d\x03\x6c\x03\x24\xcb\x1f\x7d\xb3\x27\xff\xef\x7d\x13\xf5\xa6\xe5\x72\x3e\xeb\xd1\x05\xe0\xa2\x5c\x16\xb3\x5e\x59\xf5\x6e\xb2\x5a\xde\x79\x91\xe5\x1c\x7c\x63\xfc\xc7\xd4\x8c\x4b\xe4\x5b\x82\x9e\xeb\xa6\xba\x3d\x35\x5c\xad\x9a\x6a\xbe\x07\xfb\x64\x00\x42\x6c\xce\xb7\x61\x25\x29\xfe\xb3\x38\x3a\x22\xc5\x0e\x3e\xae\x5a\x16\x93\x79\x59\x7a\xe1\xca\xb7\x94\x49\x05\xe3\xee\xf9\xcc\xdb\xaf\x1d\xad\x7c\x2b\x7e\xcb\x8f\x86\x76\x68\x45\x43\xdb\x26\x8a\x5c\x50\xec\xe8\x72\x4c\x41\x31\x24\x48\x81\x7d\xf1\xa3\x5b\x36\x20\x8e\x34\xcf\x20\xc5\xf7\xb2\x66\xb5\x1b\xc7\xab\x6a\x59\x0c\xe8\xe3\xdd\xb2\x78\x59\x96\x0b\xb5\xdf\xb3\xb7\x93\xe2\xa4\x98\xa9\x22\x49\x21\x3e\x85\xcb\xc9\x0c\x60\x41\xbe\xcf\xa6\x1f\xce\x97\x55\x01\x96\x93\xe0\x79\xe8\x55\x39\x5b\xce\x45\x3f\x3a\xd7\x39\x51\x3c\x30\x60\x88\x17\x53\x0a\x9c\x4f\xeb\xcf\xfe\x28\xaa\x6f\x8b\x69\x94\x44\x19\xf4\x47\x92\x07\x2d\x9b\x68\x9c\xac\x64\xde\x11\xbd\x9c\x1c\x85\xf0\x96\x64\x17\x8d\xa8\x8e\x7c\xb4\xb4\xea\x9a\xf6\xdf\x4b\xb1\x14\x47\xa6\x7a\xc2\xd2\x11\xfd\x4f\x00\x01\x47\xf0\x57\xfe\x96\x5b\xc0\x19\x5c\xdb\x8f\x80\x6a\x54\x1a\x7a\x2b\x3a\x8a\xca\x02\x6f\x15\x6d\x8c\x3c\xa3\x15\xcb\x0c\x8d\x74\xc0\x57\xbc\x4c\xc3\x5f\x5d\x17\xb5\x6a\xc9\xfc\x62\x56\x4b\xe6\x15\x13\x7d\xd6\x18\x9c\x25\xe6\xe7\xa0\x5a\x16\xdc\x91\x8d\x9c\xaa\xf7\x65\xce\x7c\x31\x3a\x36\xb5\xb0\x0b\x7a\xf3\xe9\x34\x85\x23\x75\xaa\xd6\x4e\x30\xc3\xbe\xd8\x20\x72\xd8\xb2\xa8\xaf\xf2\x8b\xa6\xaf\xd1\x4b\x5e\x44\xfb\xb2\x2e\xd9\x6c\x3d\xbd\x12\x92\x3c\x30\xee\x58\x3b\x94\x69\xe7\x79\x31\xeb\xec\xef\x86\x56\x7d\x05\x61\x6b\x20\xaa\x59\x89\x12\x68\x52\xc5\xb0\x09\xd6\x16\xc7\x2d\xf5\xc8\x90\xa7\xf9\x39\x0c\x2d\x03\x30\xeb\x5a\x16\x83\x7f\x4a\xaa\xaa\x19\x34\xa6\xc8\x0d\xbd\xc6\x2a\x25\x71\x71\x23\x20\x06\x0a\x79\x7d\xc2\x86\xe0\xc8\xb0\xc0\x44\x31\x53\x40\x0a\x8d\x06\x12\x9a\x73\x0d\xa8\xa7\x57\x62\xfa\xe1\xc9\xb2\x29\xdf\x49\x72\x1a\xae\xa3\x23\x3e\x31\xda\x13\xa8\x6c\xea\x2a\xab\x4f\x29\x6f\x76\x96\x5f\x8b\xaa\x0e\xc4\xd2\x65\x15\x5d\x65\x35\x82\xa9\xbe\x4e\xb3\x62\x2a\xe6\x7e\x51\x56\x86\x83\xe8\x21\xde\x16\x53\x0e\x0e\x51\x2c\x4c\x09\x9c\x87\xe7\xa4\xb9\x6c\xd7\x66\xe7\xd1\xdc\x40\x85\xe6\x39\x15\xda\x98\x67\x8d\xa8\x3a\x49\x6f\x8b\xd5\x07\x15\x78\x28\x2b\x8b\xa9\xe8\xac\xd5\x99\x93\xcf\x5c\x55\x5b\xf4\x4d\xcd\xe8\x9b\x62\x6a\x2d\x37\x9e\x7e\x3f\xfa\xf9\x8c\x46\x2d\xbc\xc8\x43\xc3\x35\xff\xdb\x34\x76\xb0\x94\x3e\xd8\xaa\x6d\x3d\x19\xb5\x45\x79\x6c\x26\x24\x81\x85\x68\x16\x01\x29\x1f\xcb\xce\xc4\x79\xb9\xb4\x30\xb4\x15\x41\xa8\x62\xde\xd8\x25\x6b\xd9\x34\xf3\xfb\xd6\xa7\x8a\x59\xf5\x31\x55\x00\x3e\x3f\x9d\x7b\x7b\x0b\xc7\xc2\x24\x9b\xcd\xe0\xf0\x33\x5d\x28\x24\xbf\x09\x27\x26\x14\xb6\xe2\x04\x99\x5d\x2d\x01\x5b\x0c\x25\x50\xd6\xc9\x20\xb1\x9d\x8a\xce\x52\x58\xef\xde\x41\xb2\x8f\x15\xb4\x5d\x06\xce\xb5\x68\x26\xdd\x66\x56\x5b\x1a\x4a\x7d\x81\xea\xf0\x3a\x4e\xd1\x7b\xcf\x75\xd5\x7c\x5d\x80\xa0\x99\xd0\x21\x99\x09\x6d\x0a\xc1\x2d\xaf\x75\x46\xaf\x03\xa2\xdc\x5f\x65\xf5\x15\xe8\xac\xd8\x3a\x1f\x8c\x8a\x5c\x5b\x65\x2c\x81\x4f\x28\x57\x1d\xe1\xcb\xe4\xa5\x01\xaa\x87\xc8\x62\x12\x10\x6d\x98\x71\x92\xf4\xcd\x62\x7e\xd1\x35\x67\xc4\xec\x6f\x16\xec\x86\xad\xdf\xf4\xbd\xe0\xdf\xe2\xad\x3a\x68\x49\x76\xe8\x5a\x92\x05\xa2\x3d\x1f\xda\xd1\x9e\xb7\x89\x19\xfd\xc3\x8f\xcf\x8f\x27\x6f\xdf\x9d\x3c\x7b\xfe\xb7\x14\x51\x82\x1d\x2d\x27\xb3\xed\x8d\xc5\x9c\x10\xb9\x90\x86\xe6\xae\x4f\xb3\xe9\x95\xe4\x3f\x91\x0c\x41\x04\x89\x49\x64\xad\xb5\x5c\xe6\xb3\x74\xff\xb3\xc4\xa6\xd0\xf3\x17\x27\x7f\x4f\x55\x7c\x84\x68\xaf\xb7\x07\xee\x41\x55\x17\x00\xe2\xf8\xe4\xf4\x69\xba\xd2\x96\x3b\x68\xe2\x60\x59\x41\x60\x92\x67\x06\x81\xe6\x3d\xe8\xa9\x9d\xbd\xb9\x14\xa2\xca\x1a\xf1\xc3\x32\xa7\xb8\x21\x95\xb8\xc8\x3f\xa9\xa0\x4f\xf0\x1b\xff\xa5\x0c\xb3\xe4\xd9\xad\x49\x31\x6b\x4f\x8e\x7a\x6f\x6f\x88\xcf\xe6\x4a\xfb\x66\xa4\x06\x34\xd6\x0f\xe9\x76\x6a\x25\x1a\x14\x0b\xe8\x71\xa1\x58\x49\x66\x0c\xdd\xf9\x82\xce\xa9\xb2\x89\x2e\x61\xfb\x89\xb5\xdf\x61\xcc\xc8\x52\xfe\xc1\x06\xcf\x54\x4c\x57\xfa\xcd\xdf\x88\x51\x95\x03\x59\x93\x12\x0d\x6d\xd5\x00\x05\x01\x1f\x91\x42\x0b\x9a\x2e\xdc\x2e\xb8\x45\xf5\xb0\xbe\xc9\x9b\xe9\x15\x48\x5d\xe3\xd5\x34\xab\x85\x32\xa0\x3e\x02\xf7\xcc\x86\xba\x46\xe5\xf9\xfb\xb1\x0e\x5a\x1c\xca\x4c\xa3\x62\x19\xed\xc9\x4a\xcd\xd8\x87\x50\x25\x09\xc5\xa1\x4a\x46\x9d\x7e\x95\x6e\x66\x1a\xd5\x4d\xa4\xe6\xd1\xad\xf5\x1c\xe3\xf8\x42\xb5\xf4\xdc\xfe\x38\xea\x83\x10\x24\x3a\x8a\xfa\xa8\xb5\x1d\x0d\x69\xd1\x1f\xb9\xd3\x1f\x33\xb3\x6f\x9d\x68\x10\x89\x96\xde\x1a\x95\xf4\xc9\x30\x0d\x71\x2f\x75\x3e\x7e\x45\x10\x53\x9a\x16\xb8\x4d\x7f\xbf\x12\xdd\x71\xb5\x02\x8b\xee\xc8\xac\x85\x9b\xb1\xc0\xf3\x81\xb3\x70\xc1\x56\xe9\xbe\xeb\xd6\x7a\x82\xd2\x71\x54\xe4\x9e\x3f\x99\x20\xf9\xe5\xb5\x6d\xfe\x65\x8c\xc3\xb7\x30\x20\x67\x71\x23\x74\x88\x6d\xd0\xd1\x51\x41\x56\xd0\xab\x8a\xb6\x5f\x50\x09\x53\xb5\x05\x9a\x2f\x59\x81\x4e\xa9\xcb\x65\x35\x05\xa1\x78\x2b\xd3\x79\x98\x09\xa8\x19\xa3\x4a\xcc\xc4\x82\x7e\xa9\x06\xf0\xcb\x38\xe5\x81\x4f\xa8\x9e\xfd\x94\x35\xe2\x27\x36\xe3\x87\xab\x50\xe1\xb3\xa8\x10\x68\xaf\xb1\xdf\x4a\x59\xf7\xc8\x88\xba\xe9\x37\xf4\x93\x50\x0f\x4f\x14\x1d\xb8\x8d\x57\xf6\xb0\x06\x93\xc9\xa2\x02\x7e\xea\xed\x3c\xcb\x0b\x24\xe9\xc9\x04\x35\xcf\x1d\xd0\xa6\xfc\x5f\xa7\xdc\xf8\x57\xb2\x93\x70\xb2\xbe\x7a\x7b\xf6\xf7\x89\x9c\x6c\xf4\xdd\x2e\x27\x04\xa8\x39\xfc\x2a\x60\xc0\x07\x3a\x10\x0e\x0f\xe9\x88\xd3\xa9\x2d\x3e\x8d\x63\x78\xeb\x79\x4b\xd6\xad\x40\x52\x8a\xe6\x1d\x1b\x4a\xbf\xbb\x33\xcd\x98\xb0\xea\xf2\x47\x37\x6a\x82\x0b\x4a\x35\x98\xe8\x95\x01\x5c\x91\x19\xa9\x7a\x15\xf2\x07\x5a\x89\x86\x8d\xd0\xea\x3d\x2c\x60\x99\x0f\x44\x35\x60\x41\x75\x6c\xbf\x1b\x12\x04\x69\x65\x87\x2c\x64\xbe\xe2\x10\xac\x10\xf1\xa6\x37\x56\x3a\x26\x61\xae\x5e\x4c\x16\x80\xb6\x93\x02\x18\xbd\xbe\xf4\x87\x5a\x5e\x66\x28\xf0\xe2\xb9\x09\x63\x56\x1b\x2a\xd8\xa8\x87\xc3\x60\x60\xfb\x4b\xd1\xa8\x99\xd1\x81\xba\x91\x8a\x26\xda\x2e\x1b\x32\xed\x10\x36\x90\x39\x52\x05\xc6\xae\xbe\x05\x8c\x83\xfe\x0f\x39\x9f\xee\xb5\xa5\xc4\xf2\x81\x16\x51\x01\xc5\x69\x89\x22\xcd\x76\x2a\x7b\x50\x1b\x69\xed\x36\x2e\xab\xd1\xaf\xae\x20\xf4\xb7\x17\x8d\xd3\xb8\xce\xb4\x1f\x18\x86\x7e\xd4\xb6\x50\x2c\x28\xfd\x6e\x34\xca\x55\x04\x27\x1c\x87\x65\x35\xc7\x82\x26\x9b\xbe\x78\x5a\x35\xa1\xe2\xe9\x4a\x1d\x12\x48\x25\x93\xc9\x91\xdc\x85\xf5\x52\xc0\xe0\xbe\x2e\x0c\x5f\x16\xf7\x6d\x50\x93\x18\x45\x63\x0a\xb7\x00\x67\x01\x62\xf2\xe3\x7a\xa5\x1c\x35\x1d\xa9\xfa\x61\x66\x0a\xc2\x83\x5f\xe8\x00\xe9\xcf\x20\x44\xb1\x21\x22\x99\xf6\x53\x95\x2d\x16\xda\x71\x78\x25\x1a\x09\x8a\x6e\xd6\x26\x93\x42\x7c\x6a\x20\x80\xee\xd0\x4d\x30\x11\xc1\x60\x4d\x33\xa7\xe6\xd0\x1c\x13\xa2\x84\x4a\xf2\xb8\x19\xbc\x17\x83\x1b\xf8\x3f\x33\x21\xb2\x65\x03\xeb\x20\x34\xde\xb2\x2a\x6f\x6e\x27\x13\x28\xa1\xe8\xc8\x2a\x18\x70\x12\xdf\xe1\x3c\x7e\x7d\x39\xed\xab\x7b\xad\x27\xef\x70\x1d\x3a\x9e\x9b\x5d\x58\x27\x1b\xaf\x9c\xa6\xb0\x35\xd7\x72\xf4\x10\xff\xde\xdc\x2d\x81\xdd\x63\xfe\xeb\x6b\x8c\x82\x6e\x42\x57\xc0\x6b\xc8\x5b\xf0\x6e\x79\xbb\xe0\x5e\x90\x4c\xf1\x34\x4d\x23\x4d\xb5\x51\xbc\x32\x65\x88\x83\x7c\x50\x2d\x8b\x26\xbf\x16\x0f\x91\x6b\xa0\xeb\xb3\x79\x6e\x9e\x4c\xe6\x65\x36\x13\xd5\xa0\x12\x97\x79\xdd\x54\xb7\x23\x53\xc5\x98\xde\x9c\xb1\x25\x0f\x1e\x9e\x6c\xfa\x06\x3c\x66\x97\xe3\x56\x29\xa6\x40\xf4\x75\xb9\x23\x3d\x2f\x1a\x51\x7d\xcc\xe6\x7e\xe4\x19\xa8\x7e\x40\xc3\xdf\xdd\xb5\x3e\x01\x1b\x76\xcc\x1b\xd5\x75\x02\x37\xbf\x07\x26\x48\x8d\x53\x44\x5f\x58\xde\x5c\xe8\xe3\x37\x42\x4c\x90\x1a\x86\xd7\x84\xec\x35\x12\xe3\xce\x3a\x4d\x5f\xbb\x9c\x35\x32\xb3\xeb\xea\x00\xf7\xf6\x6d\x4c\x1e\xdc\x80\x9e\x90\x5e\xdf\x48\xc7\x1f\xe0\x98\x78\x5c\x9e\xbf\x3f\x82\x5b\x8d\xbd\x91\xa8\x16\x52\xfd\x8b\x49\xfa\xb2\xe2\x79\xf1\xb1\xfc\x80\x8a\x09\x7e\xc0\x8d\x9d\x9d\x3e\xa8\xae\x98\x0b\xdd\xc8\x00\xc9\x8b\x46\xe4\x38\xc1\x57\x4f\xcb\xc1\x5a\x51\x88\x0a\x9a\x1c\x5d\xed\x1a\xe9\x65\x75\x59\x3f\x86\x0d\xe8\xb4\xa9\x82\xf5\x1c\x75\xe4\x3a\xe6\x22\xba\x33\xa9\xfe\x85\x82\x0d\x21\x66\x35\x59\x2f\x3d\xcb\x3f\xb9\x02\xe4\x69\xb9\x2c\x9a\x74\x7f\xd8\x54\xb7\xe0\x58\xad\xbd\x40\xd0\x15\x64\xec\xed\x0d\xd9\xa3\x3e\x2a\x0e\x38\x15\x9e\x89\xba\x89\xe2\xd6\x77\x9f\x06\x15\xec\xa4\xe9\x41\x4b\x72\x7a\x66\xd2\x9f\x5f\xf4\x9d\x6a\xc0\xad\x9b\x72\x06\x60\x44\xce\xd5\xad\x3c\x9c\x12\xe8\x54\xfe\x2f\x51\x19\x53\x2d\xdc\xf0\xeb\xe5\xbc\xc1\xdc\x77\xec\x37\xf4\x74\xe8\x84\xf2\xbd\xbb\x83\x08\x6e\x72\x90\x58\x2e\xa5\xda\x51\xf4\x6a\x4c\xb8\x08\x01\x12\x90\xd5\x9c\xea\x3e\x38\xf0\x7a\xe0\xa6\xe9\x54\xc0\xda\x37\x09\x4a\x09\xc3\xa4\xe8\x75\xc2\x5a\x60\x4b\xe0\x31\x76\xf1\x88\x65\x93\x1a\xcd\x57\x41\xd3\x97\xe2\x66\x1b\xbc\x7c\xc6\x00\x89\x4a\x9e\x4a\x8c\x6e\x20\x15\x0e\xe3\x23\x02\xe6\xe4\x57\xa7\x1c\xa2\x04\x9c\x70\x82\xd4\x3d\xb1\x60\x13\x04\xfa\x1f\x40\x6b\x5f\x1d\xcf\xbf\x3e\x72\x7f\x41\x62\x3d\xfb\xfb\xdb\x93\xc9\xab\x27\x6f\x95\x7c\xb8\x49\xa3\xef\x51\x9a\xd6\x7b\x0d\x52\xbd\x1e\xc6\xad\xea\x3d\xd3\xd1\xa4\xe4\xc1\x04\x32\xdf\xde\x3b\x71\x79\xf2\x69\x41\xae\x10\x23\xa5\xc1\xdf\x8b\xc0\xeb\xaf\x89\x53\xd6\x24\xd6\x83\x53\xbc\x52\x8d\x8e\xa2\x11\xa9\x51\x45\x7b\x05\x18\x39\x8e\xa3\x71\x2a\x7f\x0d\x9a\xf2\x65\x79\x23\xaa\xa7\x59\x2d\xfa\x31\xe9\x56\xe8\x18\x5a\xe4\x7b\x91\xcb\x28\x30\xc7\xb0\x65\x08\x62\xce\x4f\xe2\x1b\xf2\x46\x5c\x1b\x56\xdb\x70\x3d\x2e\x5b\x86\xc5\xb7\xe7\xcb\xea\xdb\xba\x11\xd7\x0f\x89\xad\xb8\x1f\x63\x46\x6d\xdd\x93\x33\x93\x6c\xbf\x1c\x8d\x66\x41\xe8\xc3\x4c\x39\xa2\x04\x87\x7c\xa4\x51\xae\x50\x85\x53\x03\x99\xe3\xbb\xbb\x88\xf5\x1c\xed\xa2\x78\xf0\x1d\x35\x1c\xec\x29\x71\x6b\xda\x01\x26\xb0\x6b\x50\x11\x48\x6e\xa3\xe9\x3c\xab\xeb\x88\x0b\x33\x6c\x5f\x9f\x38\x0b\xdc\xe9\x18\xae\x7a\x14\x98\x82\x32\xcd\x50\x15\xb6\x9a\xf5\x8a\x99\x4c\x2c\xac\xf2\x4c\x79\xb7\x88\x24\x5b\x84\x9d\x65\x8d\x88\x82\x82\x84\xbc\xa8\x17\x8a\x03\x5d\x59\x92\x72\xc6\x78\x36\xe4\x64\x14\xf9\x4f\x1d\xcb\x6d\x04\x62\x6f\x49\xc7\x2a\x9c\xd1\x0e\x1f\xbb\x11\x34\xef\x45\x11\xac\xbf\x8f\x2a\x70\x9d\xe3\xbb\x81\x31\x99\xe1\x60\x7a\x76\x84\xf3\x8f\xb2\x2f\x6a\x6a\x23\xe6\xf4\x9a\x7a\xf1\xe6\xa2\xff\x31\x76\x66\xf5\xa3\xf9\xea\xc7\xbd\x55\x6f\x30\x18\xf4\x5a\x40\x89\x8e\xd2\xb7\x17\x1d\xf5\xa2\xbd\x8f\xfa\x11\x23\x5a\x45\x7b\x32\xff\x7d\x99\x17\xfd\x28\xe9\x45\xf1\x5e\xd4\x46\x76\xf4\x2c\xc4\x5e\x4a\xff\x59\x38\x11\xbc\xa3\x26\xd7\x09\x79\xd1\x98\xa7\xd9\xee\x6e\xa6\x85\x0e\x17\xfd\x9d\xec\xee\x6e\xc7\x5c\x2d\xae\x69\xf7\x88\x5b\x7a\x9a\x98\xe3\xbb\x44\xef\xe0\xc8\x81\x48\xb2\xd1\xfe\x38\x86\xb7\x80\xde\x61\x30\x33\xc9\x46\x07\x0a\xe2\x51\x37\x44\x92\x8d\x0e\x15\xd8\xef\x36\x80\x25\xd9\xe8\x91\x82\xfd\x76\x1b\xd8\x24\x1b\xfd\x6e\x1c\xeb\x57\x08\x5d\x42\x21\x26\x73\xf8\x61\x16\xa6\xd8\xc1\xa2\x64\xa5\xef\x81\xc8\x66\x74\x3d\xee\x77\x63\x11\xb2\x43\x18\xd4\x19\x41\xec\xd9\xb9\x41\xcc\x05\x40\x82\x58\xeb\x82\x0b\x63\x4c\x42\xaf\x47\xda\x69\x53\xa5\xea\x87\xa5\xeb\xaa\x9f\x30\xd5\x0f\x3f\x97\x9e\x66\xf9\x63\xa2\x15\xb7\x4b\xbf\x94\xe8\x5f\x56\x3e\x93\x8a\x33\x51\xb4\x57\x83\xec\x83\xb6\xc8\x71\xa5\x49\x20\x49\xb2\x52\x71\x09\xd3\x1e\x34\x74\x2e\x4d\x16\x83\xe3\x32\x9f\xd6\xd2\xc4\x3b\x68\x4a\xff\x6d\xbb\x75\x75\xcf\x4b\xf5\x2f\xb7\x1d\xd6\x04\xfd\xec\xd0\x0d\x00\xd9\xf0\xe4\x83\xb8\xfd\x0a\x1e\x73\xff\x2d\xf4\x03\xd6\xfb\xa1\xa5\xc9\x71\xf3\x69\xb2\xb6\xf7\x54\xcb\xfd\xc7\x7e\xd6\x03\xfd\xd6\x2a\x04\x46\x40\x29\x67\xea\x85\xb8\xf5\xbd\x38\x3a\x76\xeb\xe4\x4c\x0b\xe5\x0b\x74\x0c\xfa\xc7\x1f\x05\x13\x96\x15\xdc\xdd\x71\x3f\xa8\xcc\xa3\x98\x7e\x39\xb0\xdc\xad\x19\x9f\x35\x2b\x2f\x29\x3d\x00\x49\x4f\x87\xcd\xcd\x4d\x3e\x9f\xc3\x03\x99\x6d\x72\xe3\x25\xf7\xb9\x25\xba\x6f\x5e\xee\x58\xa5\xac\xae\x3d\x0b\x12\x6e\xfd\x11\x7e\x85\xdd\xce\xcd\xe7\x46\x6b\x17\xf0\x07\xb9\xc1\x17\x6f\xa2\xf5\x91\xbb\x3c\xec\x72\x7f\xa0\x78\x17\xf2\x11\xdb\xf7\x92\xee\xee\xf6\xe3\xbd\x03\x7b\x4b\x55\x44\x92\xaa\x1f\x86\x7e\x28\x40\x4f\x98\x82\xee\x4b\x0c\x7e\xff\xd2\xf4\x20\x44\x0f\xfb\xeb\xe8\x61\x96\xcf\x7e\xc4\x5e\x79\x7e\x47\x9d\xf4\x7b\x52\xc4\x2f\x3e\xe5\xdc\x05\xe8\xfd\x9b\xb3\xdf\xed\x5d\xb7\xb2\xf8\x46\xff\x31\x9b\xc3\x96\x0d\x21\xf4\x3d\x0a\x6f\x3f\x83\xa8\x7a\xa1\x79\xfb\x2e\x34\x6b\x0f\x1e\xd8\x54\x65\x48\x27\x35\x3f\xd7\x1e\x28\x60\xc6\xb3\x85\x8b\x51\x7c\x3f\xff\x25\x94\x01\xbd\x73\xe0\x60\xc3\x39\x70\x60\x9f\x03\xe0\x97\x06\x22\x19\xb8\x87\x85\xce\xf1\x4f\x02\xc7\x7f\x98\x8a\xcb\xb5\x61\x8d\x81\x3b\x0c\xf4\xf5\x55\x9b\x97\x70\x9e\x0a\x6f\xd9\xba\x5d\x78\xba\x47\x5b\x3a\x59\xde\x7a\x8a\x06\x3a\xe9\xc7\x3b\xc6\x5b\xa3\xa9\x04\x1e\x7c\xcb\x05\x0a\xb6\x83\xd7\x29\x5c\x73\xcc\x4a\x14\xde\x42\xf8\x21\xf3\x16\xad\xcd\x7e\x95\x43\x86\x2e\xde\x5e\x52\x7a\x30\x74\xf0\x1b\x83\xef\x24\xca\x8f\xfd\x2d\x14\x8b\xf5\xbd\xa4\xce\x2d\x14\x86\xa9\x7f\x79\x9b\x68\x07\x8a\xbe\x64\x17\xc5\x2e\x7a\xbb\x28\x26\xef\xfb\x03\xc6\xd0\x67\xf6\x98\xdd\x15\x0e\x85\xdd\x15\x0e\x89\x1d\x2b\x1c\x86\xcd\x7e\xaf\x5b\xe3\x10\xd6\xf6\x3e\x2b\x3c\xcc\x75\x76\x6e\x1e\xbf\xbe\xa5\xd9\xfa\x2d\x63\x3b\x47\xc4\xfa\xd6\xe2\x42\xe9\x5b\xcc\x76\xdb\x8f\xa5\x71\xe8\x79\x35\xe6\x1a\x88\x1f\x75\x60\xdc\xa7\x4c\x01\xc9\xdb\xb5\x7c\x10\x54\x83\x9d\x2f\xeb\xab\xb7\x02\x04\x93\x81\xb0\x0b\xb2\xa4\x0f\x62\xc2\x08\xcb\x23\xc1\x65\x94\x35\xeb\xf1\xd1\x04\x13\x0e\xc1\x99\x2c\x53\x9f\xe7\x34\xe1\x77\x7c\x45\xf2\x1a\x83\x90\x2c\x6f\xcd\xe6\x9c\xd7\x2f\xf0\xa0\xeb\x5b\xe1\x14\xc3\x6e\x59\x9c\xcd\x11\xe3\x1b\xea\x65\x0f\xdb\xe2\xe4\xfe\xfb\x22\x28\x80\xa9\x5e\xa8\xf2\x31\x2d\x54\xc5\xa2\xb1\x66\xd8\x96\xa6\xf7\x1e\x9e\xed\xef\x60\xb8\x7b\xf1\x41\xff\x44\xab\x56\x7b\x07\x5d\x85\xdd\x12\xd0\xcb\x7a\x97\x7d\xfb\x38\xfe\x6e\xdf\x96\x22\xe9\x9a\x53\xf3\x13\x63\x23\x58\xb4\x93\x06\x08\xc9\xdd\x58\x7f\x61\xf4\x3a\x3c\xb0\x87\x60\x77\x7b\xef\x44\xb1\x8a\x91\xad\x62\x62\xb3\xa0\x99\x7a\x1c\x61\x7f\xcd\x74\x16\x5f\x6b\x57\xa0\x70\xe4\xab\xdd\x81\x38\xd8\xdd\xdd\x9d\x80\x30\x51\x01\xc5\xf1\xca\x55\xb5\x06\xbe\x18\xab\xdb\xdd\xc5\xff\x2e\x2b\xa0\xd9\x00\xca\x36\x9c\x80\x13\x67\x13\x47\x46\xff\x61\x19\xbd\x7e\x73\x7c\x32\x39\x3d\x7b\xf2\xf4\x05\x48\x3f\x8d\x3b\x61\xb0\xf5\x64\x63\xf5\x5d\x5c\x14\xe5\x4c\xc0\x9f\x1a\xdc\xef\xc8\x5f\x24\xee\x27\x0f\x0a\xa8\x50\x6b\x54\xc6\xc0\x4a\x4f\x82\xa1\x77\x04\x83\xa2\x02\xa2\x3e\x99\xae\xa0\xe0\x13\x52\x87\x37\x57\xf9\x5c\xf4\x59\x1e\xd2\xc9\x77\xfb\xe8\xe9\x34\xe5\xa5\xca\x45\x3f\x1e\xa2\x83\x55\xf9\x77\x30\xb1\x9b\x20\xd7\xbc\x24\xda\xa5\x14\x95\x17\x16\xef\x86\xfa\x84\x7e\x7b\xe3\x16\x9e\xcb\xb0\x1d\xe3\xae\xdc\x60\x81\xba\x50\x6a\x94\x98\x2c\x49\xcc\xee\x96\xcd\xb2\x13\x2c\xa9\x90\x0a\xc1\xab\xdc\x58\x01\x30\x3d\x29\xfd\xf7\xce\xf2\xaa\x5c\x36\xd6\x21\x7e\x95\x15\xb3\xb9\x38\xcf\x2a\xef\x0c\xe7\xb2\x20\x2a\xf6\x50\x7c\x6a\x98\xc5\x79\x20\x73\x5a\x16\x4d\x55\xce\xe7\xa2\x0a\x66\x7f\xcc\xc5\x8d\x97\x71\x25\xe6\x0b\x51\xd5\x0f\xeb\xab\xac\x12\xb3\xce\xec\x79\x5e\x7c\x98\x34\xa5\x97\x3f\x2f\xa7\x99\x24\xcd\x87\xd9\x22\xef\xce\x2c\xca\x42\x4c\xd4\x57\x37\xd8\x55\x56\x5f\x6d\x03\x96\xd7\x4d\x59\xdd\x6e\x01\x99\x2d\x9b\xb2\x1b\x8c\x9e\xa5\x0c\xd6\x26\x17\xa5\x8f\x39\x82\x9a\xd5\xf3\xae\x2c\xf9\x19\x40\x39\xcf\xed\xc4\x6b\xb9\x6c\xe6\xcc\xa9\x93\x9b\x5d\x41\xc0\xcd\xce\x6c\xb4\x78\xfc\xad\x7c\x36\x99\xef\x3f\x38\xdf\x7f\x74\xbe\xff\xe4\x7c\x1f\xec\xbb\x09\x6e\x0f\x0f\xdc\x2e\x1e\xb8\x7d\x3c\x70\x3b\x79\xe0\xf6\xf2\xc0\xed\xe6\x81\xdb\xcf\x03\xb7\xa3\x07\x7f\xda\x4e\x26\xfa\x17\xbd\x70\x37\x49\x47\x7d\x11\xea\xa1\x0f\x54\x89\xba\x9c\x7f\x84\x77\xcc\xda\x8b\xa0\xc5\x33\x6d\xe8\x2a\xbb\x5e\x03\x2e\x73\x95\xa3\x74\x8a\xb9\xf2\x32\x2f\x3e\x9c\x95\x7f\x01\xea\x49\x9d\x09\x1c\x84\xc1\x28\x88\xc6\x9a\x72\x73\x17\x5a\x16\xff\x6b\x2e\x6e\x3c\x48\x95\x61\x10\xf3\x92\xd6\x66\xea\x50\x8f\x8b\xa0\xd7\x65\x21\x82\xb0\x7f\xf2\x61\xff\x92\xd5\x57\x41\x58\x49\x75\x1e\x30\xee\x25\x61\xf8\xc0\x74\x3e\x59\x36\x65\x18\x38\x30\xad\x66\x67\xf1\x22\xa5\x48\x76\xdc\xca\xb6\xee\x20\x4f\x4d\x4e\x36\x95\xfd\xf3\x0b\x77\x82\x76\x54\xb4\x4d\x0d\x50\xf4\x1d\xec\x66\xc7\xa7\x2f\x53\x77\xb5\xb9\xc3\x43\xc8\xd4\x5d\x83\x41\xb0\xd4\x5d\x98\x2e\x14\x6e\x84\x01\x12\x93\x8b\x76\xc0\x73\x31\x4c\x0b\x24\x78\x54\x06\xc0\x26\x8f\x96\x8b\xdc\x43\x43\x35\x07\x08\xed\x09\x6c\x9e\x21\xe0\x3f\x4d\x26\x03\x9e\x8b\xb6\xe9\x6b\xc1\x79\x2e\x39\x33\xd2\xb4\x63\x91\x3f\x65\x5a\xc4\xc5\x3f\x28\xdf\xa2\x6c\xfe\xa1\xf2\x1d\x62\x76\xbe\x09\xca\x5a\x4b\xfc\xc3\xf8\x5b\x62\x54\x6b\x13\xa9\x72\x95\xda\x45\xa6\xdd\x54\xd9\x55\x32\x50\x84\x60\x0d\x21\xea\x5f\x56\x0e\x25\xf3\x34\x4c\x52\xa8\x56\xdb\x90\xde\x76\xb0\x80\xbd\x43\xa6\xf6\x7e\xe9\x82\xc8\x0d\xd9\xda\x80\x9d\xed\xdf\x22\x89\xf4\x89\x37\xe1\x0c\x92\x91\x2c\xa3\x50\x17\x0a\x55\x61\x14\xbd\xf6\x23\xc5\x01\x70\x2a\x8e\x37\x96\x52\x8c\x01\xa7\xc0\x78\xf8\x1f\x9b\x8a\x29\x6e\x84\x2f\xb7\xcd\x8d\xc9\x03\xe0\x81\xe4\x0d\xf9\x49\xb0\x5d\xb1\xb3\x32\x4a\xc2\xe7\x4e\xdc\x65\x0e\x0e\xd5\x76\xb1\xd6\x1e\x1b\xfc\x25\xbe\x35\x5d\xeb\x79\x96\x65\x5e\x10\x26\xb6\x08\x4e\xa9\x3c\x99\x3e\xd4\x0e\x5b\xfe\x6b\x70\x6a\x5f\xc3\x9b\xa6\x27\x95\xea\x8a\xf2\xf9\x88\x45\xf9\x34\xaf\x37\x3f\x4a\xb4\xb8\xe2\x22\xef\xe9\x38\x5b\xa4\x4e\x91\xc1\x35\xd9\x0f\x98\xfd\xe0\x55\xfe\x29\x2f\x3c\xa7\x98\x4e\xfe\xd0\xf9\x1e\x54\xa2\x5c\x88\xa2\xbf\x6a\xaa\xac\xa8\x73\x89\xe8\xb3\x12\x56\xf7\x91\xa3\x22\xcd\x3d\x1f\x5f\xe5\x75\x12\x61\x42\x14\x93\x32\x76\x8a\xdf\x03\xaf\xa2\xbb\xbb\x40\x0e\x0b\xb5\x79\x55\xce\x94\x26\x06\x3a\x0e\x61\x5e\x2a\x12\x5e\xe6\xc8\xf7\x7a\x01\x86\x29\x5e\x8b\x03\x66\xca\xc2\x2b\xab\xc4\x62\x9e\x4d\xc5\x17\x0d\x8f\xd7\xa1\x47\x46\x89\x3f\xe5\xcd\xd5\xb6\x03\x63\x45\xba\xc6\xc5\x9b\xea\x18\x52\x1b\x1b\x35\xc1\x67\x27\x4f\xce\x7e\x7c\x77\x72\x3a\xc8\xeb\x93\x42\x12\xca\xac\x1f\xfd\x73\x29\xaa\xdb\x07\x0b\xd8\xb4\x1f\x14\xe2\x26\x8a\xe3\x55\x17\x05\xa0\x53\x23\x51\xc8\x2d\xc6\x38\x89\x38\x1a\x61\x25\xb8\xf1\x47\xe3\x84\x7d\xa1\xfd\xe8\x84\xb4\x49\xf3\xe2\xf2\xbf\x59\x1e\xda\xf5\x4e\x0c\x38\xf9\xd0\x3a\x5e\x56\x79\x71\x79\x0a\x81\x82\xea\xbc\x2c\xd0\xf2\xd4\x72\x34\xc7\xf7\x31\xa7\xb7\x6b\x77\xb4\x2e\x3f\x73\x3a\xbd\x7b\x37\x09\xec\x00\xd5\xb2\xd8\xb4\xfe\xc9\x61\x93\xf1\x57\x32\xb4\x7c\xa4\xf4\x23\xbc\xf3\x9e\x69\x02\xad\x99\x4f\xb2\x78\xed\x58\x50\x0a\xd1\xe1\xc5\xe4\x5e\x9b\xb0\x27\x0b\x91\x55\xd7\x0f\xcd\xdf\xdf\xe2\x49\xc3\xdd\x39\x0f\xd6\xec\x9c\x87\x6c\xe7\x74\x27\x25\x10\xe4\x01\x56\x83\xc7\xf2\xfe\x6e\x32\x19\x18\x4e\x42\xfe\xd2\x84\x9f\x17\xb9\x15\x01\xb3\xd6\x7b\xc0\x04\x4f\xf8\x1a\xc3\xe4\xa3\x15\x1c\xd8\x75\xf5\xe3\x36\x99\x96\x45\x21\xa6\x0d\x32\x29\xa6\x3c\x16\x41\x1b\xc9\x5c\xdc\xa0\xa3\x48\x28\xb9\x40\x09\xf3\x71\x5e\x53\x51\x49\x06\xf1\x8a\x9e\xd2\xd7\xc0\x8c\x4c\x9d\xe0\x67\x15\x41\xaf\xb2\xfa\xe4\x9f\xcb\xfc\x63\x36\x17\x05\x30\x49\x5e\xd3\xf1\x4a\xfe\x53\xf2\x36\xed\x7b\xa9\x35\x17\x89\x9a\x6d\x78\x7a\xb0\xb1\x1c\x5a\x93\xe5\x05\xb0\x9d\x2a\x5b\xa7\x45\x71\x82\x64\x9d\xea\xa4\xdd\x5d\xfd\x93\x7c\xc3\x2b\xd2\x3f\xba\xce\xf2\x42\x96\x00\xbe\x4c\x80\xc9\x0e\x54\x2a\x7b\x96\x44\x3c\x39\xa2\x20\xa5\xd8\x8b\xc4\x1d\x0c\xfa\x5e\x97\x75\xee\xee\xf2\x62\xf1\x0a\x53\x07\x13\xc2\x98\xe4\x2e\x3f\x0a\x40\x08\x87\xc3\x5a\xda\x36\xf1\x11\xb7\x66\xf2\xc0\x83\x22\x05\x41\x06\x9a\xf2\xf1\x35\x88\xf6\x4c\x31\x6d\x12\xcc\x0b\xed\xee\xf2\x2f\xcb\x64\x3b\x4d\x3f\x3a\x49\x0e\xb0\x6c\x2f\x6a\xc4\xf5\x62\x9e\x35\x02\x9e\x7e\x3e\x06\x92\x43\x85\xe4\x94\x88\x4f\x8d\x53\x46\xa7\xb6\xc9\x4c\x13\x59\x37\x0d\xa3\x79\xec\x5a\xfa\x5d\x93\x99\xae\xda\x76\x4b\xba\x46\xb7\x01\xca\xf1\x99\x42\xf1\x45\x5e\xe4\xf5\x95\x5d\x4a\x76\x3d\x98\x71\x64\x3b\x7a\x83\x86\xb9\x8b\x7e\x0a\x96\xb7\x89\xfa\x51\xdb\x2e\x38\x9c\x35\x63\x19\xae\x43\x03\xbc\x1d\x28\xe5\x6c\x33\x68\x70\xfc\x1a\x46\x6a\xc7\x4a\x00\xdf\x08\xe0\x5e\x69\x1d\xdb\x2f\x69\xa0\xf3\x70\x71\x85\xa2\x5f\xc2\xfa\x87\x3c\xb3\x76\x1c\x37\x24\xe6\x75\xae\x01\x6b\x25\xc4\x01\xb1\xbf\x49\x92\x87\x64\x28\x59\x0d\x6f\x4b\x29\xfe\xff\x48\x81\xf0\x2f\x7a\x6f\xd9\xc6\xff\x94\x7b\x0a\x07\xee\x2c\xe0\x70\x65\x31\x17\x4f\xe7\xf9\xf4\x83\x77\x2b\xb1\x72\x4d\xbf\x03\xa2\xb2\x80\x0c\x6c\x9d\x68\xf9\x0f\x3e\xb8\x21\x8e\x1f\x9c\x61\xff\x71\x32\x19\x58\xb9\x00\x2f\x29\x27\x20\xaa\xfa\xd3\x64\x32\x30\x59\x1b\x24\xcc\x72\xa2\x02\x22\x66\x26\x22\x59\x03\x4e\x3a\x02\xa7\xd9\x85\x20\x5b\x25\x57\x46\x60\xb2\x50\xbc\x36\x41\x8f\xb1\x68\xfb\x6c\x2c\x9a\xd0\x7d\xac\x51\xfb\xaf\x2e\xeb\x7e\xb9\x80\x1d\x86\x44\x1e\xaf\x75\xf8\x5e\xb2\x20\xc9\x2f\xfa\x3c\x47\xdb\x71\xb0\xc4\x56\x29\x8a\xd4\x29\x55\x36\x50\xff\x21\x95\x9c\x7b\x1f\xc4\xc9\x2c\x6b\x32\x0f\x06\xa2\xdc\x1b\x1d\x2f\xe5\x4b\xd5\x42\x96\xea\xe5\x80\x4e\xab\x44\x7d\xe3\x4d\x26\x59\x41\x43\x47\xf0\x17\x5a\x39\x82\xd8\xf4\x31\xf6\xcd\x92\x35\xad\x94\x3c\x45\xcc\x9e\xd0\x31\xb1\x6a\x5b\x4b\x2d\xbd\x5b\x36\x45\xb6\x34\x75\x3a\x8a\xb2\xb9\xdc\x6e\xc0\x85\x66\x94\x44\x72\xab\x8b\x92\x68\xda\x54\x73\xa2\xb2\xb7\x6f\x9e\xbf\x3e\x3b\x79\x37\x39\xf9\xeb\xc9\xeb\xb3\x09\x58\x4a\xbd\x3b\xf9\xe1\xe4\x6f\xe9\xc3\x7f\x4c\x25\x91\xdf\x5d\x97\xcb\x5a\xdc\x35\xe5\x72\x7a\xf5\x90\x56\xc8\x93\xf9\xbc\xbc\x11\x14\xd1\x5b\x6f\x40\xe0\x52\x27\xc9\x30\xef\x85\xb8\xad\x79\x5c\x08\x96\xec\x1a\x96\xe5\x17\xfd\xae\x4e\x60\x0c\x25\xa8\x18\xe6\xc8\x18\x5e\x5b\x0b\x11\x21\x48\xe5\x80\xb7\x14\x45\xf0\x5c\xcc\x92\x8c\x3e\x4a\x56\xdc\x46\xf1\x77\xe9\xbe\x6d\xff\x0e\x64\x89\xe0\x78\xb2\x5b\xc6\x7c\x12\xa7\x66\xc7\x05\x95\x8f\xfc\x02\x5b\x1f\x81\xc5\xd0\x0b\x71\x1b\x8d\x77\x77\x43\x0d\x4a\x68\x72\x23\xa9\x1a\x40\x2b\x7b\xe3\x73\x90\xd2\xdb\x21\x9f\x4c\x2d\x58\x7b\x62\xdc\x52\x40\xf3\x86\xb4\xdf\x54\xa0\x53\xa1\x97\x08\x9f\x02\x23\xc6\x7e\x3e\x4b\xf7\xf6\xf0\xca\xbd\x5c\xe6\xb3\x70\x23\x9a\xda\x46\xaa\xd0\x38\x5d\xe9\x88\x87\x47\x8a\x9e\x4d\x0c\x44\xdc\x87\x2a\xcd\xc3\xd0\xb6\xf5\xce\xa9\x8f\xa6\x88\x7c\xf9\x70\x02\x0a\xd0\x8d\xef\xca\x40\x2d\x23\xf4\xdb\x44\x41\x7f\x76\x94\x0f\x24\xec\xa0\x93\xdb\x8f\x79\xc9\xf3\xe5\xf9\xf9\x5c\xd4\xa9\x53\xa4\x6e\xca\xc5\xdb\xaa\x5c\x64\x97\x19\x32\x60\x2d\x93\xa9\xe8\xdd\x41\x05\xae\xaa\xb2\x6b\xd1\x40\x90\x49\xbe\xac\x21\x89\xed\x4b\x26\x44\x17\x95\x8c\x57\x54\xa1\xb5\x67\x2b\x18\x70\x5f\x6f\xc1\xab\x2f\x6a\x85\xe8\x9a\xea\x60\xa5\xac\xf1\x95\x4b\xe3\xf5\x3b\x5e\x99\xde\xd8\x02\xf0\xbe\xe9\xb1\xde\xa3\x46\x2e\x21\x8d\xd5\x3e\x35\x8a\x9e\x1f\x47\x63\xdc\xa8\x58\x41\xbe\x23\xb6\x10\x5d\x8c\xad\x73\xd3\xb0\xb5\xcc\xef\xee\x82\x00\xcc\x22\x8f\x65\xb8\x1d\x42\x57\x1c\x7c\x7f\x5f\x07\x5c\x2d\x8b\x3e\x77\x25\xee\x91\x22\xee\x4b\x88\xc7\x5a\x14\x33\x35\x3f\xf0\xe1\x49\xbe\x38\xce\xf8\xe9\x63\x4d\x0b\xc3\xe1\x78\x6d\x0d\x71\xdc\xb6\x71\xdb\x0e\x15\x0e\xe1\x82\x53\x16\xfd\x08\x22\x31\xcf\x45\x56\xbd\xa3\x17\x01\x76\x29\xa0\x9b\xf6\xb6\x0b\x96\x6d\x28\x94\xc4\x7c\x4a\xf2\x27\x83\xbe\x7b\x98\x52\xaf\x52\x2d\xa9\x1b\xe9\x5f\x2a\xda\xc5\xc1\x38\x21\xc2\xa9\x53\x3a\xbf\x1d\xdf\xc5\xc9\x41\xf2\xe0\x20\x26\x16\xa6\xbe\xd2\x8b\x45\x7e\x24\x46\x58\x9e\x72\x32\x1a\x7c\x10\xb7\x37\x65\x35\xab\xd9\xf3\x14\x7b\x81\xe3\x5b\x10\x38\x76\x2d\x8b\xbb\xbb\x08\xce\xa7\x88\xad\xcb\xa3\x15\x75\xed\x08\xee\x46\xd4\x80\xda\xb4\x10\xb0\x3e\x52\xdd\x6f\xe1\xaa\x7c\x64\x75\x03\x6e\xf7\xb4\x57\x60\x4b\xf4\x91\xd8\x9b\x0b\xe6\xd9\x69\xb4\x6c\x8f\x56\x4e\xbb\x6d\x62\x2d\xce\x23\x8b\xe9\x18\xed\x83\x7f\x92\xe7\xc7\x51\x3b\x54\x5e\x6b\xd5\xae\x81\x63\x1f\xb0\x15\x0f\x17\xb9\xa1\x9d\xae\xf7\x16\x5d\x52\xab\x2e\x1b\x5c\x06\x2b\x33\xd9\xad\x75\x4a\xac\x39\x7d\x18\xc5\xd0\x5a\x00\xff\xb9\x03\xbe\x7b\x2b\xe2\x2b\xc4\x0d\xe3\x05\xfb\xdf\x48\x04\x3f\xc0\x7b\x0d\xcd\x6a\xf4\xcd\x9e\x6a\x74\xef\x9b\xe8\x1b\x3b\x68\x87\xf5\xf6\xca\x3f\x36\xde\x10\xb5\x32\xd3\x2f\xf4\x3a\x74\x2d\xaa\x4b\xb7\x26\xef\xf6\xa8\xda\xbc\x5e\xfc\x7f\xec\xfd\xfb\x76\xdb\xc8\xb1\x28\x0e\xff\xbf\x9f\x82\x42\xce\xc7\x21\xb6\x20\x5a\xb2\x27\xc9\x44\x1c\x78\xb6\xc7\x97\xc4\xdf\xf8\x76\x6c\x27\x39\xfb\x30\x3a\x0a\x44\x80\x12\xc6\x24\x41\x03\xa0\x25\x85\xc2\xbb\xff\x56\x57\x55\x77\x57\x5f\x00\x92\x92\x9c\x99\xec\x95\xe5\xb5\x2c\xa2\xbb\xba\xbb\xfa\x56\x5d\x5d\x5d\x97\x55\xcd\x15\xaf\x4c\x9b\xf9\x59\xf2\x8f\x6b\x30\x7a\x6f\x03\x20\x9f\xa1\x2d\xb9\x64\x5b\x6d\xe7\x0a\x36\x65\x9b\x6b\x2c\x17\xa8\x0a\x4c\x8b\x45\xb6\xf0\x5d\x4e\x77\xbe\xaf\x76\x6b\x4e\xfd\x0f\xb9\xcd\xfe\x73\xd4\x9b\x7e\xb1\xb7\x3e\x58\xe5\x9b\x6e\xcb\xf6\x85\xda\xa3\x1f\x22\xb7\x80\xa3\xc9\x24\x33\x50\xb0\xb5\x78\x55\x24\xa9\xa3\x52\x84\xc9\x78\xbf\x9f\xbb\x97\xe0\xe9\xbc\xb6\xbd\x5e\x6c\x52\x1f\x82\x6b\xd1\x26\xb5\xa1\x76\x21\x80\x98\xea\x36\x29\xc0\x53\xb9\x85\x36\x6a\x0e\x75\x2a\x99\x79\x9e\x06\x5a\xae\xf6\x62\x11\xd9\x77\xfb\x36\x79\x84\x4f\x75\xa7\x43\x0e\xe0\x57\x35\x6b\x55\x64\x3b\xf2\x6a\xb2\x59\xf1\x60\xac\x10\x39\x0e\x95\x09\x99\x2b\xef\xb7\xd3\xa7\x74\x4c\x3f\x99\x4c\xb2\x65\x9d\xa5\x3f\x5e\xe3\x80\xb1\x90\x15\x74\xf7\x90\x77\x90\x97\x8b\x69\x51\x49\xa9\xc0\xe7\xf8\xd0\xf2\xf2\xc8\xa1\x1c\x6f\x8f\xa2\x40\x99\x7d\xde\xe7\x40\xe3\xfc\x64\xb8\x48\xe6\x59\xc5\xbc\x0b\xd8\xf9\xf4\x1d\xc7\xb2\xfa\xf0\xac\xcc\x92\x4f\xcd\xce\xaf\x9b\x12\x81\x23\x6d\x47\xf6\x19\xbd\xd2\xb0\xc7\xc9\x98\x3b\x1f\xc9\xae\xea\x6c\x91\x0e\xd6\xcc\x27\x6e\x13\x32\x8b\x39\xdc\x5e\xac\xf4\x60\x46\x9a\x32\x91\x20\x22\xcb\x67\x2c\xec\x2a\x0d\x1b\x52\xe6\x77\xfa\xa2\x23\x4b\xf0\x9b\x0e\x7b\x48\xa5\x2d\x77\x9e\xd5\xba\xee\xc0\xc9\x0f\xc2\xa8\x5a\x2d\x97\xb3\x3c\x4b\xa9\x1b\x6b\x60\x76\x1c\xc0\x70\x0d\x44\x67\x60\x42\xbb\x0d\x2a\xe7\xa8\x6c\x4d\xca\xaa\x4d\x5c\xcc\x4c\xfd\x02\x64\x41\xe1\x39\x45\xb9\xfc\xd6\x44\x05\xc7\x87\x27\xc4\x3d\xbe\x28\x70\x73\xc5\xf2\xf1\x86\x21\xf7\xa2\x28\x07\xaa\x86\x30\xfa\xbc\xac\x62\xb3\xd0\xf0\xf3\xb2\x62\xf5\x64\x93\xe2\x7c\x91\xff\x23\x2b\xc5\x78\x18\x6b\x35\x5b\xc4\x9f\x97\x7c\x91\x66\x8b\xd1\xfe\x7e\x8e\x93\xf4\x79\x29\x32\xd1\x25\x29\x04\x3e\xf8\x92\xa7\x59\xfa\xf1\x7a\x99\xc5\xda\x47\x32\x8c\xef\x72\x28\xc3\x22\x98\x23\x2a\xc3\x72\x9a\xa9\x63\x82\x3f\x19\x19\x75\xba\xa3\x8f\x8c\xab\x82\xa6\xdb\x49\x4b\x65\x8a\x19\xfd\xbc\x1c\xae\xca\xd9\x4f\x68\x06\xb0\x2d\x3e\x58\x62\x7b\x8c\x24\x7c\x2b\x4e\x04\x20\xf6\x27\xaf\x13\xae\x84\x46\x23\xc8\x94\xe3\x88\xab\x90\xc0\x29\x48\x40\x6d\xa9\xa6\xca\x06\x33\x17\x7b\x0f\xa9\x7b\x36\x46\xa7\x73\xb2\xf9\xfd\x83\x1c\xb2\x3a\x2d\x88\xe5\x6a\x22\x81\x62\x03\x2b\x0d\xfc\xe1\xb6\x35\x10\x92\x47\xd8\xcf\xcb\x21\x2c\xd2\x61\x95\x95\x39\x14\xd6\x24\x02\xdd\xc2\x46\x6a\x9c\xc4\x2f\x90\xbb\xe1\x5d\x57\x55\x50\x51\x2c\xd1\xe9\xc0\xa5\x24\x14\x98\x34\x8e\x01\x30\xcd\xa6\xcc\x21\x8f\x67\xed\xb3\x49\x31\x9d\xcd\x7a\x60\xb5\xe9\x18\xf4\xe0\x49\x79\x5e\xfd\x35\xaf\x2f\x8a\x95\xbc\x82\xf9\x88\x1d\x1d\x08\xb2\x80\x26\x69\xf0\xac\xa8\xd2\x83\x90\xa2\x7d\xd3\xf7\x58\xfd\xd2\x37\xdf\x21\x5b\x79\x4a\x46\xa5\xe0\x1a\xdd\x86\x2e\x8b\x32\xe5\x70\xd4\x59\x6f\xbc\xe6\xca\x29\x5d\x84\x1b\x63\x1b\x8e\x9c\xa6\xb9\x23\xe8\xf7\x8a\x74\xd5\x17\x4a\x22\xad\x9d\x39\xb5\x48\xbf\xb7\x11\x7a\xeb\xe3\xfd\xb6\x82\xee\xc6\x50\x20\xb7\x14\x39\x4d\x26\x4a\x9d\x6f\x75\x72\x0e\x17\xff\x20\x09\x64\xdc\xde\xbf\x5e\x64\xa8\x7f\x13\xd5\x79\x3d\x23\xa7\xf2\x65\x36\xc3\x1f\x09\x3c\xa4\x3f\x9d\x25\x55\x85\xa1\xee\xbe\x64\x41\x24\x2e\x59\xf9\xe2\x9c\x52\xe9\x2b\x88\xd2\xbc\x82\x43\x99\xd2\xe5\x67\x10\x9d\xe6\xd5\x33\xfa\x20\x95\x20\x52\x6b\xa2\xaf\xa4\xae\xcb\xfc\x6c\x55\x67\x3f\x4a\xff\xf5\xe3\xe0\xa2\xcc\xa6\x41\x14\x00\x4e\x81\x38\x7c\x66\xc1\x49\x04\x1e\xc1\x44\x07\x18\xa0\x44\x4a\xe3\xa1\x5b\x3e\x89\xb4\xac\x43\x8a\x38\x6c\x4d\x0f\xa6\xd1\xe1\x57\xb0\x82\xa3\x41\xd5\xc3\x9e\x8b\x55\x5a\x40\x7a\x21\x52\x34\x0b\x57\x7a\x80\xc1\xca\x73\x70\x83\x13\x36\xd1\x29\x4e\x29\x6a\x41\xa5\x0e\x16\x8b\xa2\xce\xa7\xd7\x66\xbc\xc1\x81\x73\xee\x36\x91\xb8\x47\xaf\x96\x62\xf1\xbc\x45\x77\xc5\x65\x65\xab\xb2\x39\xdc\x07\x34\xc0\x38\x0f\x50\x29\xcd\xae\x30\x12\x78\x2b\x21\xe5\x50\xe0\x22\x1c\x98\x02\x73\x57\xd8\x85\xc3\x88\x42\xae\x02\x3c\xed\x4c\xf4\x2f\x9e\x5b\x54\x56\x90\x09\xde\x44\xb8\xbe\x9f\xe3\xc1\x40\x7b\xc3\x29\x41\x6a\x76\x28\x99\x91\xe3\xb9\xf5\x09\xa1\x67\xb9\xcc\x50\xd3\x24\x6c\x04\xfb\x91\xc7\x87\xc8\x6b\x00\xd3\x21\xb8\x62\x15\x0f\x17\xd8\x8d\x7c\x0a\x8e\x12\xe2\x38\x46\x33\x5f\x45\xd6\xef\x67\x00\x3a\x4f\xaf\x7b\xee\xb8\xb9\xa8\x91\x2c\xb9\x7c\x2d\x80\x3a\xc9\x2d\xac\x2b\xdc\xd3\xd0\x91\x7f\x1b\xc3\xaa\xfd\xdc\x09\x1e\x88\x98\xd8\xb5\xf2\x21\xef\x5a\x43\x86\xa6\x33\xbb\x36\xc6\xe7\xd3\x89\x62\x57\xee\x91\x55\x11\xf5\xfe\x52\xf3\xd1\x34\x0d\x86\x50\x43\x69\xf8\x6e\xb4\x8f\x20\x1c\x7a\x33\x40\xdd\x21\xa4\xe9\x52\xfa\x30\xb0\x2f\x4c\xf2\x38\x92\xd4\x7f\xf0\x29\x53\xe1\x0d\x58\xac\x70\xe6\xee\x1a\xa3\xa8\x08\x6e\x82\x1d\x1a\x81\x0c\x65\xcc\x7d\xe7\xff\xa0\x09\xb1\x71\xf0\x04\x21\x9e\x2a\x4d\x48\x87\xd7\x66\xf4\x50\x5b\x0c\xdf\x32\x74\xad\xf2\x3c\x09\x2d\x1f\xe5\x8a\x05\xe2\x9a\x71\xe6\xb5\x07\x18\x17\x2b\x13\x19\x23\x2d\xf0\xb7\xf9\x9a\xa3\x30\xf2\x5c\xbf\xa8\x02\xfb\xea\xc5\xce\x6e\xdc\x59\x2c\xe1\xe6\x46\x33\x48\x87\x27\xd1\x3c\xb9\xca\xe7\xab\xb9\x14\x01\xc4\x1b\x65\x02\x03\x56\x17\xdd\xf1\x86\xf2\x8f\x62\x1f\xe5\x65\x1d\x2e\x6a\xac\x00\xc6\xeb\x96\x9d\x94\xa6\xce\x16\x0e\x21\x47\x9f\x23\x2b\xdf\xc4\x61\x3e\xe4\xb5\x50\x7e\xd3\x0a\xc5\xd4\x68\xcc\xea\x90\x01\x71\x55\xbb\x21\x05\xda\xc7\x82\x6a\xfe\xf4\x80\x32\xb6\x26\x08\x9b\x26\x54\x5e\x95\x9c\xe3\xd6\x9c\x3d\x5a\x13\x9b\x97\xd4\x2b\x04\xa4\x58\x8a\xde\xa5\xe0\x41\x8b\x33\x56\x0e\x5e\x0c\x0d\xd2\xab\x74\xb0\x18\x78\xea\x64\x26\x15\xe1\x70\x83\x8a\x66\x13\x46\xc4\xac\x1c\x9b\xaa\x08\xf2\xb1\xd9\x55\x14\x70\xde\x97\x91\xd1\x68\x79\x5c\xee\x14\xe5\x18\x92\xed\x03\x71\x86\xd7\xc5\x01\x3e\xb2\x1c\x28\x16\x51\x8c\x9b\x7e\x57\x7e\x22\x93\x3d\x4a\xfb\x70\x07\xb1\xc0\xa4\xb6\xbe\x2e\x17\xc7\xc1\x69\x95\xcd\xa6\x41\xeb\xcb\x37\xde\xd7\xda\x32\x65\x8f\xb7\x7e\x14\x37\x68\x0c\x27\x72\x36\x9d\x69\x23\x46\xd2\x3a\xee\xfc\x3c\x2b\x87\x97\x49\xb9\x18\x04\x1f\x2f\xf2\xaa\x47\xb6\x45\xbd\xbc\x12\x27\x62\xb2\xe8\xe5\x0b\x5c\xe6\x3d\x2a\xdc\xab\xea\xa4\xce\x7a\x67\xd9\x24\x59\x55\x59\x2f\xa9\x7b\xb3\x2c\xa9\xea\x5e\xb1\xc8\x7a\xc5\xb4\x97\xd7\x55\x4f\x33\x88\xbd\x65\x99\x55\xd9\xa2\x9e\x5d\xf7\x2e\x92\xaa\x97\xf4\x04\xbb\xf2\x40\x51\x6a\xa4\xc1\x51\xaf\x28\x7b\xf5\x45\xa6\x24\x27\x48\x18\x7b\x0b\x50\x6c\x14\x78\x7c\x49\x66\x79\x3a\xd4\x71\x66\xef\x81\x84\x92\x07\x7d\xa9\x4e\x3f\x32\xc6\x89\x2e\x16\x62\x9c\x34\x48\xac\xc8\x97\xb2\xb7\x30\x89\x89\xaa\x5d\x3e\x44\x3b\x45\xb9\x7d\x49\x6b\x59\xf0\x00\x53\xce\x62\x93\x68\x4a\xab\x3d\xa3\xd8\xd0\x2e\xdd\x7e\xf9\x16\x1d\x0b\x43\x27\xe2\xae\xd7\xb0\x80\x71\x01\x59\x72\x9e\x95\x7f\x5e\xa6\x49\x9d\xfd\xb9\x9c\x31\x23\x9a\x68\x55\xce\xc4\x25\xc2\x04\x38\x66\x1e\xcd\x15\xa4\xb8\x84\x91\xf6\xaf\x4a\x54\xf4\xf8\xe6\x86\xa7\xae\xca\xd9\x6b\x23\xdc\xb1\x58\xbf\xa2\xbc\xd6\x12\xfa\x0d\xa8\x21\x1f\x86\x6b\x91\x1c\x43\x9e\x3c\xfa\xd8\x8a\xf8\xd9\x99\x76\x39\x58\xb8\xa5\x7d\x6d\x82\x7e\x04\xf4\x24\x90\xaa\xe0\x3f\x57\x43\x4c\xf9\xf3\xfb\x57\x80\x87\xf6\x42\xd5\x56\x83\x5a\x3b\xba\x0a\x4a\xd2\x75\xb0\xb2\x68\xdd\x83\xa1\xca\x1a\xeb\xec\xf6\x92\x66\x10\x31\xb6\xdf\xc8\xa4\xc2\x80\xab\x1d\x12\x99\xb2\x06\x8f\x8c\x01\x64\x0b\xf9\x94\xab\xa4\x20\x17\x48\x27\x30\x8e\x3b\xbc\x4c\x2f\x97\xcc\xa2\x14\x79\x07\xe7\x50\xd0\x67\x06\x84\xdc\xc8\xc9\x2b\x84\xdc\xc5\x63\x31\x41\x46\x45\x51\x20\x43\x05\x4b\x99\x6d\x10\xa2\xb8\x72\x6d\x4b\x3c\xda\x54\x67\x1c\xd4\xdb\x05\x1f\xee\xb9\x58\x8a\x99\xe4\xa4\x63\xf3\x09\xfd\x5e\x82\xaa\x90\x49\x5b\x32\x5f\xb4\x68\x0f\x0d\x01\xb8\x45\xc2\x04\x01\x4c\x49\xb8\x6d\x4b\xbf\xe1\x5c\xd2\x00\x86\x3b\x3a\xc9\x55\xc5\x5b\xf1\x5d\xac\x92\x91\x47\xb6\x2a\x41\xc7\xf2\x07\x93\xbe\x51\x12\xdc\x43\x55\x2d\x7b\x71\x6c\x56\xc1\x34\xff\x39\x8f\xc7\xb8\x74\x96\x1c\xb0\x5e\x87\x0d\x1b\x81\x6d\xf0\x70\x46\x29\xd6\x15\x34\x5a\x9e\x7f\x04\xf2\x7c\x13\xb8\x45\xb4\x0f\x8b\xc8\x1e\x7d\xbc\x79\x63\x96\xf4\x77\x4f\xca\x54\x32\xd1\xd0\xa7\xa4\xa9\xb9\xcd\x13\x94\x81\x22\xe8\xcf\x1a\x92\x49\xbd\x68\xb8\x69\x5d\xd8\x30\xdf\x87\xbc\x86\x6e\x16\xd5\xa8\xc2\x7d\xe3\x41\x51\x9e\x47\x2e\xda\xbe\x3b\xf8\x01\xa4\xf8\x12\x8f\x34\x15\x43\x85\x01\xc7\xd3\x81\xe2\x70\x7c\x12\x84\x70\x9a\x6c\x6e\xf9\x4f\x65\x36\xb5\xaf\x62\x24\xb6\x0c\xc2\xbd\x38\x0e\x12\xd3\x83\xe3\xed\xf9\x08\x43\x46\xdd\xce\x8d\x0b\x84\x82\xf0\x16\x4b\xc0\x15\x61\x6f\x38\xe4\x1b\x2e\x8b\x6e\x61\x1c\x38\xbf\xd1\x76\x3d\x60\x88\x1f\x07\xbf\x09\x9a\x70\x24\x07\x57\x05\xb8\x70\xa3\xc7\x07\x12\x06\xb5\xa7\xee\x81\x4d\x57\x8d\x4a\x23\x3b\x9f\x9c\x97\xb8\xf5\x13\xa9\xf1\x45\x96\xa0\x6a\x75\x70\x43\x79\x8a\xfa\xc1\xb5\xeb\xbc\x4a\x73\x07\x47\xa1\x7e\x65\xf4\x83\x1c\x0a\xa0\xc8\xd1\xa9\x53\xd4\xa1\x1a\x1b\xe7\xe7\xc1\xd1\x09\x0b\xfe\xf0\xbf\xf9\xd3\x05\xe8\x6c\xb9\xf2\x2e\x2a\x0e\x1e\xbd\x1a\x80\x91\x52\x0a\xea\x7c\x6c\x24\x0a\x02\x0a\x0b\x52\x62\x33\x5d\x90\x4f\x7e\xd1\xff\xbc\x9e\x65\xb2\x46\x50\x3f\xa7\x38\x52\x90\x79\xbd\xcc\x62\x4b\xf9\x9e\x81\xd0\xf1\x8a\xda\x6e\x52\xdc\xca\x1f\xe5\x7c\xa2\xde\x58\xb5\x3a\xd2\xf8\xb8\x4b\xc6\xd6\xbd\x18\x9e\x67\xf5\xf3\x6a\x92\x2c\xb3\x74\x60\x88\x62\x45\x4d\x91\x7a\x3b\x43\xbe\xa0\xb3\x62\x55\xaa\x69\x70\xf0\x18\xdf\xb4\x95\x62\x22\xfe\xd1\xba\xa1\x28\x7b\x03\x01\xbe\x9b\x74\x73\xa3\x1c\x33\xa8\x30\x9a\x4a\x13\x84\x02\x31\x88\xb6\xe4\x82\xd6\x5d\xd9\x99\x28\x6c\xf2\xf4\xc0\xcb\x68\xbd\x55\x2e\x4f\x25\x48\xf5\x16\x45\x08\xb3\x35\x49\x91\xe4\x95\x36\x83\xa1\x34\x8a\x3c\x15\x4f\x12\xab\xa1\x6a\x42\xbe\xe9\xfc\x7e\x26\xac\xe9\xa1\xd4\x16\xab\x74\xae\x7e\xe8\xba\x17\x31\x5d\xc1\x79\x7d\x2e\xb5\xf8\x58\xe2\x25\x0d\x5f\x4b\xfc\x63\xa3\x5a\xa3\xf4\xde\x71\xef\x5a\x8d\x1b\x75\x12\x4d\x3d\x41\x62\xbc\x4f\x0d\xcd\x3f\xa6\x19\x88\x70\xa2\xbd\x79\x51\x2e\x2f\x5a\xe1\x6c\x0d\xc2\x5f\x83\x12\xe0\x2f\xa6\x6d\xe7\xd1\x7f\xfb\xd6\xd4\x7f\x7b\x2a\x07\xde\x31\x11\xf7\x68\x76\x9d\xbe\x96\xc3\xef\xa8\xdd\xe9\xac\x2e\xd5\xb2\xdf\xbb\x9a\x65\xcc\xc1\x8d\x81\x8b\x7c\xa8\xd5\x15\x1b\x56\x9e\x2d\x8e\x71\xd4\xbe\xe5\xce\x68\x06\x2a\x9e\xb0\xf1\x6c\x8d\x20\x1f\x20\x3a\xad\x3a\x20\xa0\x7d\xd5\x05\x30\xbc\x90\x1f\x20\x8b\x54\x5f\x2f\x56\xb3\x99\xb4\xcb\x90\xf5\xf7\xfb\xf2\x17\x5c\x43\xad\xcf\x61\x5e\xe1\xbb\xc3\xb3\x04\xfc\x69\xca\x4b\xae\x0c\x21\x21\x7f\xc4\x01\x88\x20\x1b\x6d\x76\xee\x28\x93\xeb\x8b\xea\x88\xf7\xc2\x05\x24\x97\x9b\x7b\x1c\xca\xb4\x96\x1e\xe6\xd5\xc7\x62\x29\x08\xb2\x59\x93\x53\xe0\x74\x99\x94\x64\x21\x1e\x84\x8d\x1c\x1d\x83\x67\xc0\x26\xf3\xe9\x40\xe6\xa2\xc9\xbd\x1c\xaa\x38\x00\xd5\xf8\x60\x5f\x66\x37\x6a\x58\x63\x99\xf4\x83\x7d\x05\x27\x57\x50\x03\x5e\x51\x78\xec\xb4\x0a\xb5\xdc\xdc\xb0\xa5\xe0\x0e\x1a\x5c\xd3\x78\xc7\xa4\xcf\x22\xfc\x0a\x47\x46\xad\x74\x9f\x13\x75\x49\x3e\x25\x38\x45\xc3\x0a\x3e\x36\xcc\xee\x5d\xcd\xe4\xb6\x47\x2d\xd1\xde\xce\x93\x56\x75\x4e\x1f\xb5\x7c\x1b\x18\x1e\xd0\xf8\xc7\x46\xc2\x2f\x7d\x44\x6d\x24\xfc\x18\x3f\xec\x5e\x0f\x03\x5b\xff\x7c\x2b\xdf\x9a\xbb\x5b\x3b\xff\x1a\x68\xbf\xad\x00\x7e\xe7\xb3\x00\x80\x30\xca\xe3\x06\x07\x91\xf6\xa9\xf1\xa8\xe3\xd4\xf8\x96\x9d\x1a\x93\x64\x9e\xcd\xf2\x7f\x64\x8e\x9d\xb2\xcc\xd8\xc1\xed\xe0\xef\xee\xea\x75\xd0\x5f\xc1\x06\x53\xe6\xdf\xef\x62\xca\xfc\x9d\x79\x28\xb5\xb8\x12\x60\xae\xa3\xb5\x4f\x35\xb8\x86\xc9\x87\x4c\xbc\x4e\x9a\x67\x0c\xc9\x1c\x6d\x7b\x27\x7e\x1f\x79\x47\x0f\x06\xb1\x92\x4f\x3e\xd2\x1e\x47\x48\xb0\xc6\x0c\x9c\x80\x20\x44\xea\x4e\x01\x34\xf2\x2d\x36\x39\xd2\x27\x86\x64\x8a\x6f\x6e\x0c\xe4\xc2\x56\xb3\x28\x76\xa2\xd8\xee\x4c\xfc\x0f\x64\x70\x83\x92\x18\x3f\xd4\xc7\x99\xd1\xde\xc8\xf8\xd2\xaf\xdb\x4a\x00\xad\xfb\x1c\xca\xcb\x8c\x65\xcf\x68\xa9\x84\x55\x63\x6d\x2a\x66\x0d\x38\x3d\x58\xe8\xd0\xc4\x6a\xa3\x0c\x82\xff\x2e\x56\xbd\xf9\xaa\xaa\x7b\xcb\xa4\xaa\x7a\x49\x4f\x9e\x7e\xe0\x77\xa2\x2e\x68\x52\x03\x14\xd6\x61\xb8\x4c\x12\x78\x0f\x1e\xfc\xed\xc1\x83\xf3\x28\x18\x06\xe1\x48\x0c\xbd\x67\x5c\xe8\x54\x83\x2b\x39\x0e\xb8\x27\x5f\xae\xa4\xd0\x72\xf2\xe9\x1e\xa2\x3a\xef\xe6\x66\x21\x19\x10\xe6\x51\x51\x9d\xa6\x4c\x36\x1d\xec\x9b\x35\x8e\x98\x11\xa7\x55\x69\xb8\x6e\x48\x28\x98\x2d\xea\xa7\x3b\x18\xce\xa9\xe9\x7a\xfc\x10\x17\xf7\x94\xf6\x7b\xdb\x91\xed\xe2\x1c\xde\xdc\xb4\x12\x83\x81\x5e\xf4\x66\x5f\xe4\x74\x87\x23\x66\xe6\x47\x6d\xab\x0b\xde\xbc\x48\xb3\xd9\x31\x93\xa0\x1b\x9d\x3b\xb6\x13\xa4\x8c\xc5\x4e\x6f\x70\x92\x87\x85\x38\x37\x2f\xf3\xd9\x8c\xfc\xa5\x3c\x9f\x65\x73\xb0\x62\x62\x17\x74\xb6\x79\x94\x4f\xa1\x86\x56\x21\xc3\xd4\x59\x0f\x5b\x0e\x4b\xeb\x78\xf0\x71\x10\x34\x5b\x7b\x27\x1b\xac\x5b\xba\xb5\x79\x40\x1a\xf9\xf0\x54\x68\x0b\x65\xb6\xe5\xd0\xdd\x50\x51\x93\x0f\x25\x47\x37\x07\x94\x71\xcc\x6d\xe9\x1f\x29\xe0\xc1\x60\xb2\x82\xc8\xdc\xe8\x9e\x2a\xe4\xce\x16\xc3\xea\x70\x7c\xb0\x07\xe4\x89\x84\xf2\x30\x7c\x0f\x65\x5b\x3b\x56\x6c\x2e\xed\x4f\x93\xc5\x93\x99\xee\x1c\xf1\x4a\x6c\xbe\xd0\x9c\x5a\xbd\x39\xa4\x3b\xa6\x3d\xb9\x5e\x3b\x5c\x31\x2d\xb4\x0b\xa6\x2d\x99\xc5\x6f\x90\x44\xf5\x82\x6f\x30\xae\xef\x37\xc1\x37\xa3\x56\x86\x91\x49\x98\x36\xb1\x81\xd2\x5c\x6e\x6b\xdf\x6a\xa6\x97\x9b\xad\x2d\x0f\xdb\x7d\x5b\xee\xe4\xfb\x46\xb2\x7e\xbf\x04\x6b\x77\x5b\x0f\x6e\xf3\x64\xe9\x86\x3a\x24\x87\x95\x9e\x1b\xfa\x23\xf7\x86\xde\xe6\xd2\xf2\x5b\x8f\x4b\xcb\x2e\x73\x2d\xcf\x9d\x5e\x0f\x2d\xe9\xb2\x6e\xe1\x1b\xbc\x9d\xf1\xfa\x9d\xc3\x78\x31\xbe\x89\x3f\x7b\x1a\x6f\x9d\xfa\x6e\xa3\x02\xd5\x26\x4b\x5c\xd2\x86\x7a\x78\x4b\x21\xbd\x06\x50\xb5\x16\x03\x41\x70\x9d\x52\x43\xf9\x7f\x9c\x9b\xef\xb1\x26\x19\x32\xf4\x46\xd9\x36\xb2\xa2\x6f\xb4\x3b\x03\xf6\xc2\x39\x1e\x81\xdd\x61\xe9\xe8\xa0\xf1\x2a\x1b\x3b\x33\xd6\x3a\x2e\x9e\xc7\xf2\x51\xcb\x00\xa7\x7a\x10\xd1\xfc\x97\x86\x11\x55\x41\x73\xad\x0a\x4a\xe5\x57\x8b\xcb\x32\x59\x4a\x58\x35\xb0\xa1\x31\xb2\xf0\x82\xc1\xad\xc7\xec\x52\xf4\xae\xba\xa4\xb0\x31\x5c\x41\x8b\x87\xfb\x69\xf2\xe9\xc0\xf6\xd3\x49\x41\xb2\xb1\xaa\xd0\xc6\xeb\x3c\x93\x59\x11\x9d\x36\x21\x34\xf7\x83\xf8\x6f\x3f\x18\x62\xda\xb1\xcc\x33\xb0\x86\x16\x9b\x76\xca\x69\x46\xaf\xb8\x4f\xb9\xe9\xaf\x22\x32\xeb\x6d\x64\x8d\x2d\x77\xa6\x35\x72\x67\xcc\x93\x1e\x5f\xd0\xa0\x40\x27\xb8\x2a\x74\x2a\x4e\x79\xfd\xbe\x5c\xaf\x66\xfe\xc8\x2d\x82\x92\x23\x74\x6c\x67\x64\x54\x63\xf3\x5b\xc6\x4a\xf2\x95\x27\x0e\x92\x64\xf7\x1e\x00\xcb\x4f\x2d\x32\x3e\x2f\x0d\xb8\x63\x23\x18\x7f\x64\x56\x42\x3a\x02\x36\x86\x0b\x70\xf3\x67\xa6\x36\x56\xd1\xea\x78\xdd\x44\x2a\x14\xc9\xf1\x65\xbe\x48\x8b\xcb\xa1\xfc\x8e\xc4\x8a\xfa\x53\x52\x5d\x38\x16\x0f\x65\x36\x8d\xc9\x2d\xa6\x04\xbe\xb9\x81\x6f\xf9\x19\x0e\x05\x10\xbc\xfa\xbd\x5c\xa4\xd9\x55\xec\xe8\x27\x49\xbf\x11\x98\x8d\x1e\x86\xe8\x79\x34\x30\xc9\x27\x68\x2f\xad\xce\xaa\xba\xd4\x05\xc2\xed\x36\x90\x19\x69\xe5\xfe\x9f\x20\x76\x8a\x37\xb3\x7d\x84\x98\x2d\x43\xce\x38\x01\x6c\x7e\x0d\xf2\xa8\x5f\xce\xcb\xf7\xbc\x2d\x74\x87\xc7\x03\x40\x57\x84\x0d\x0f\x13\xd3\x1a\xbd\xc3\xe3\x2f\xaf\x35\x2a\x88\xe5\x2c\xaf\x95\xa6\x25\x8b\x49\x36\x43\xe6\xea\x43\x56\xaf\x96\xd2\x90\xab\x28\xea\x3f\xbf\x7f\x75\x1c\x3c\x08\xa2\x53\xdc\xaa\xb4\x63\xbb\xb6\x30\x2d\x3a\x99\x41\x9f\xd1\xa9\x35\x00\xc7\xd6\x77\x74\xca\xbb\x7c\xcc\x3f\xa2\x53\xde\xc3\x63\xfe\x01\x14\xe3\x6d\x99\x9f\xe7\x0b\x9b\x66\x48\x8c\x62\x93\x6c\x44\x05\x40\xc7\xf2\x7b\x88\xdf\xf8\x3e\x0f\x3f\xc3\xb5\x0d\x02\x1e\xf7\x26\xc5\x6c\x3f\x78\xf0\x20\xd8\x57\xc9\x17\x45\x55\x2f\x48\x34\xa1\x61\x8b\xb2\x96\x35\xec\xc7\xc1\x31\x83\x17\x59\x8d\xd4\x03\x41\x88\x06\x3a\xf0\x61\xb5\x84\x79\xa1\x21\xb1\x7b\xb2\xaa\xb2\xf2\xc9\x79\xb6\x20\x43\x1b\x9a\x8a\xe1\x22\xf9\x92\x9f\x27\x75\x51\x0e\x15\x80\xc0\x44\x7d\x68\xe2\xf7\x64\x91\x96\x45\x9e\xf6\x1e\x82\x92\xcd\xc1\x51\xbf\xef\x01\x7a\x5d\x9c\xe5\xb3\xac\xf7\x21\x99\x26\x65\xde\x05\xf8\xf4\xa2\x2c\xe6\x59\x10\x1a\x24\x94\x94\x7f\xf1\x63\x6f\x4f\xba\x30\xc6\x0e\xf5\xfb\xc1\x72\x55\x5d\x7c\xa8\x93\x3a\x0b\x72\xf2\x7e\x2e\x33\x43\x6b\x0c\x92\xea\x02\xcd\x5b\xec\x61\xa0\x7e\x1b\x83\x10\xa5\xc5\x04\x8e\xb2\xd7\x10\x30\x97\x46\x46\x26\x0e\x79\x2e\x9d\x98\x41\xb1\x10\xc4\x6e\x02\x4d\x08\x64\xa8\x50\xbf\x3f\x30\xea\x62\x96\x2b\x37\x37\x3c\xe7\xf1\xef\x05\xc6\x24\x4b\x13\x4c\xee\xb1\xc1\xac\x4b\xc3\x1b\x35\xeb\x52\xea\x86\xc9\x6a\xb9\x0e\xc2\x7d\x00\xc7\xde\xbf\xa7\xad\xd6\xe6\x29\x1e\xb3\x11\xd6\x6c\x53\x2a\xc4\xd5\x17\x20\xe8\xb3\x1a\x97\xe9\x23\xe2\x49\x41\x0e\x38\xb9\x48\xca\x27\xf5\xe0\x10\x34\xae\x1e\x04\x68\xbe\x06\xa5\x83\x07\xc1\xbe\xfc\x68\x18\xf3\x08\xdf\xfa\x74\x36\x08\xdf\x50\x26\x43\x3e\xa8\x2a\xb4\x75\x43\xe3\x55\x65\x49\x39\xb9\xc0\x2a\x5f\xac\x66\x33\xbb\x4f\x46\x29\xea\xf3\x20\xdc\x57\xdf\xd0\x0c\x4f\x10\x08\x0c\x68\x30\x69\x1b\xf9\xc6\x89\x06\x32\x56\xe5\x68\xe0\x07\xc8\x4c\xc7\x56\x83\xa8\x44\x64\x35\x82\xca\x76\xb1\x8d\x8b\x24\x97\xc8\x5e\x18\x31\x3d\x29\x87\xb4\xd6\x60\xac\x44\xc5\xef\x92\xb2\xae\x94\x37\x2b\x62\x38\x0e\xa3\x87\x10\x58\xf2\x37\x62\x62\x14\x54\xcc\x41\x8e\xc2\x61\xb5\x9c\xe5\x35\x72\x35\xaa\xce\x58\x41\x2b\x25\x21\x9a\x75\xd2\x6a\x3d\x38\x82\x9a\x1f\x48\x25\x68\x28\xa4\x7e\xe9\xda\x1b\xb8\x52\xe8\x9c\x11\x7e\x43\xb7\x25\xba\xd8\x0e\x4a\x4f\x71\x01\xed\xc7\xc1\x6f\x82\x7d\x9d\xf7\x73\x91\x2f\x00\x43\xd2\x09\xe2\x95\xe0\x6f\x01\xcb\x57\x99\x5e\x61\xb7\x99\x3a\xca\x8f\x2e\xf4\xec\xb3\x99\xd3\x89\x03\x9a\x06\x54\xa3\xd5\xe9\xb2\xff\x54\x8f\xec\x9b\x92\x83\x09\x18\xb1\x61\xd0\x13\xa7\x4a\x72\x77\x93\xae\x5d\x6c\x27\xf5\xd5\xe8\x41\xd2\x69\x46\xef\x5b\xef\x16\x5a\xf4\xad\xef\x12\x72\x4d\xad\x39\x81\x88\xad\x5c\xd4\x3b\xd6\x7d\xa4\x65\x57\x5f\x44\xce\x99\x8f\xa6\x2d\x51\xeb\x7d\xc4\x38\x83\xa5\x8d\x9a\x39\xc8\x72\x23\xe3\xc2\x53\xc9\xd6\xe9\x36\x08\xc3\xf5\xe6\x39\x02\x4b\x33\xd6\x48\xcc\xa7\x2a\x5c\xb7\xa3\x69\xb1\x15\x24\xbc\x76\x7a\x0b\x3e\x4b\xb1\x04\x23\xe5\x03\xde\x88\x0e\x5e\xef\x76\x45\x1d\x52\xd0\x1b\x1a\x54\x93\x50\xb4\xf6\x83\xf2\x6e\x6e\xcc\xf4\xe0\x41\xd0\xef\xab\xaa\xc4\x37\x90\x80\x8e\x9e\x32\x16\x69\xd7\x6e\x52\x33\x61\xd3\x78\xee\xad\x77\xbc\x53\x42\x97\x6d\x4c\xd0\xe3\xb9\x59\x30\x0a\x1c\xb0\x80\x3c\x37\x78\x6f\xb7\xdb\x5c\xc0\xac\x8b\xcc\x57\x89\xaf\xe1\x8b\x39\xbe\xc1\xe1\x5c\xd7\xb5\xcd\x70\x3c\xf7\x33\x10\xc8\x7f\x85\xab\xd5\x57\x8c\xf0\x71\xbe\xca\x53\x3b\x54\xe0\xb7\xa2\x7a\x4c\xef\x74\x65\xe6\xb9\x4b\xb5\xdf\xd3\x3c\x97\xa9\x9f\xe1\x38\xbf\xc5\x35\xca\xe7\x72\xca\x5c\xbf\xc7\x81\x58\x9d\xae\x97\x8a\x8a\x69\xa5\xcb\x85\xcb\xcc\x08\x55\x62\x78\x73\x63\xdd\xb6\xc2\x26\xda\xc0\x93\x9d\x67\x5d\x7c\xa5\xe2\x69\xd8\xe1\x1f\x55\x56\x11\xe4\x6a\xcf\x5d\x24\x43\x78\x3e\x02\x56\x67\xc4\xfa\x90\x54\xf5\x07\xa8\x22\x88\x88\xc3\xd5\x96\x56\x5b\xd5\x2a\x39\x66\x71\x54\x02\x58\x77\xed\xc5\xe2\xcf\xd2\x18\x4c\x57\x3f\x49\x66\xb3\xb3\x64\xf2\x09\x79\x87\x2a\x9b\x4d\x51\x4b\x5a\x2e\xaf\x98\xd6\x12\x2a\xe7\x8f\x70\xd6\x07\x38\xbc\x21\x38\x9a\xd5\xb7\x84\x21\xee\x53\x89\xe1\x41\xb0\x2f\x0a\xf3\xe7\x40\xee\x4a\x97\x71\xe4\xb1\x68\x77\x88\x53\x80\x47\x81\xe8\xaf\x48\x34\x3a\x12\x5a\x52\xfd\xa6\xf2\x41\x61\x6c\x88\x91\xec\x18\x0e\x20\xa8\xf6\x46\xd3\xa2\x9c\x27\xe6\xa4\xad\xca\x99\x92\x6e\xfd\x26\xd8\x5f\x95\xb3\x26\x62\xaf\xbf\x36\x73\xb5\xc5\x90\x4c\xa7\x9b\xc7\x04\x9e\x15\x36\xd3\x68\x47\x2c\xf5\x95\x1c\x90\xee\x42\xa2\x7f\x45\x54\xf8\x17\x13\x68\xdd\x33\xdd\xf5\x90\x52\x0f\xc1\x5d\x16\x4b\xb0\x5d\x7e\x91\x97\xd2\xd5\x3b\x22\x6a\xb2\x8d\x20\x3c\x88\x4d\xa1\x52\xbf\x1f\x54\x52\xa6\x60\xe6\xdc\x89\x48\x63\x15\xbb\xd2\xe9\x2e\x32\xcd\x08\xd8\x59\x52\x65\xb0\x9d\x69\x7f\x41\x42\x10\x0e\x93\xba\x2e\x07\xe8\x19\x29\xbc\xb9\x09\x82\xb0\x81\xf6\xa1\xdb\x7e\x24\x14\x9e\xe7\x4e\x92\x46\x41\x0a\x59\xa4\x07\x12\xa0\xac\x50\x29\x72\xb5\x8a\x74\x0c\xe4\x81\x00\xb4\x2a\x14\x54\x9b\x89\xff\xdc\x63\x84\x5f\xc9\xb8\x09\x56\x81\x24\x2d\x52\xe2\x37\xdf\x08\xe1\x8d\xcd\x91\x52\x44\x34\x38\xac\x8c\x1c\x2e\x71\xcf\xc5\xc6\xe4\xfd\x8c\x69\x33\xfd\xaf\x07\x51\x10\x84\x23\x59\x9a\xfe\x7a\x20\xa4\x11\x37\x5c\x8a\x65\x36\x81\x0b\x00\x95\x26\x2f\x93\x41\x70\x8b\x00\x7c\xb8\xcd\x92\x72\xc2\xba\x88\xdf\x62\x62\x47\xab\x72\xb6\x1f\x93\x00\x44\xbe\xf1\x09\xf2\xec\x3f\x77\xa1\x32\x58\xfb\x72\x82\x70\xf6\xc2\x91\x16\x58\xe8\x49\xc4\xe3\x32\x9f\x0e\xf6\xa0\xcc\xcd\x0d\xfc\x81\x01\xde\x93\x87\x0c\xda\x26\x4b\x79\x1c\x9d\x23\x5d\x87\xf4\x57\x42\xc1\x58\x8c\x12\x0b\x59\xb9\x87\x63\xf1\x11\x84\x1f\x3c\x6b\x7f\x08\x0d\x1e\x1b\x42\x46\x00\x6e\x22\xd5\xeb\xf6\x2e\x82\x9c\xe2\x18\x2e\xe4\x23\x5f\xe5\x7a\xe0\x00\x1e\x4e\xe5\x88\xf5\xd9\x83\xa4\x14\x09\x72\x5c\x62\x28\x2d\x83\x67\x95\xd9\x97\xbc\x58\x55\x4a\xbc\x21\xb7\xa1\x9a\x95\x3b\x22\x6d\x0c\xf5\x3f\x05\xef\x2d\x98\x32\x97\xe7\x88\x34\x9f\xe6\x61\xc8\xe4\x41\xb1\x89\x1d\xa3\x98\x66\xc6\xb9\x12\xae\xcd\x63\x06\xee\xc5\xf9\x74\x60\x30\x68\x71\x8c\x0c\x1b\xef\x97\x36\x13\x56\x8c\x97\x51\xa6\x93\xff\xda\x44\x23\xbb\xc8\x5d\x3e\x15\x75\x90\xc0\xe9\x1e\x68\x9f\x12\x66\x48\x88\x79\x52\x4f\x2e\x06\x0f\xfe\xdf\xdf\x1e\x3c\x08\xfb\x7d\x59\x33\x4f\x0d\xd7\x9b\x6b\xa5\xbd\x49\x00\xfb\x54\xcd\x7d\xf1\x9b\xdd\x53\xbe\x1d\xb7\x69\xbd\x59\xde\x4d\x22\xd0\xca\x43\x7e\x6d\x45\x87\xdb\xde\xb6\xdb\xd8\xb5\x47\xf7\x76\xa7\x15\xe3\x8b\x77\xb1\xe3\xc0\xc7\x28\x38\xa6\xd7\x02\x34\x68\xbd\x67\x56\x26\xdc\x96\x97\x3c\xa0\x3e\xe8\x13\xe4\x29\x25\xc6\x32\xb7\x21\xb5\x4c\x77\x7f\xda\x6d\x89\xc4\x91\xa7\xaa\x01\x7a\x55\xe9\xbe\x66\xc1\x21\xde\xb1\x20\x5b\x4c\x41\xee\x72\xf5\x51\xf7\x9b\xaf\xb9\xfa\xfe\xe3\x5e\xae\x1d\x79\x05\xc1\xcb\x9c\xab\x07\xa5\x73\x77\xdc\x2c\xd0\x7e\xbb\x06\xb5\x61\x26\xc0\x9c\x18\x74\x78\x3b\xb1\x35\xca\xad\x3a\x0c\x75\xb8\xae\xe0\xff\x1c\xae\xdd\x64\xa4\xdd\x44\x84\xf9\xa0\xbd\xb5\xe2\x38\x10\x51\x82\x8e\xa6\xa4\x74\x1d\x49\x33\x76\x70\xd6\x11\x91\x42\xb9\x2a\x87\xd5\x7c\xbc\x5e\x66\xcc\x8d\x5b\xbf\x4f\x33\x20\x13\x42\xae\xdc\x0c\xc6\xe4\x01\xea\xc7\x1a\xd1\x52\x00\x07\x1b\x8e\xa8\xa1\xad\x2f\x8e\x99\x67\x49\x95\x4f\x82\x86\x21\xd5\xaa\xee\x0f\x28\xbe\xd8\xa0\x8a\xcf\x2a\x0a\x35\x6d\xaa\xfe\x48\x63\x9a\x1e\x8b\x23\x3e\x92\x2e\x11\x5c\x82\x14\x0c\xe4\xf0\xa7\x3d\x7b\x65\xec\x07\x6c\x19\x86\x01\x2a\xfc\x6d\x63\xa3\xa0\x91\x95\x6a\x55\x03\x35\x39\x84\xb8\xf2\x96\x45\xdf\x4d\xc7\x72\xd8\x62\x1d\xdc\xc5\xf8\x00\x2c\x1e\xb6\xea\x17\xec\x60\x5a\x5c\xae\x6a\xb9\xac\x43\x49\xb8\xd4\x3a\x0c\x20\x2c\xc0\x32\x99\x64\xc3\x57\x6f\xff\x78\xfa\xe4\xe9\xc7\x97\x7f\x79\x7e\xfa\xc7\xe7\x6f\x9e\xbf\x7f\xf2\xf1\xe5\xdb\x37\xe2\xb6\xa4\x64\xfd\x54\xa8\xe9\xde\x5f\x9e\x8d\xb5\x89\xe4\xa6\xd5\xac\x8d\xce\x6e\x43\x38\xef\x24\x8e\x51\xb3\xfb\xec\xc3\x2b\x72\x71\x21\x7d\x43\x65\x8b\x1a\xec\x72\xf0\xc4\x01\xc6\x2b\xab\xe2\xf1\x49\x5b\xa4\xf4\x67\x1f\x5e\x8d\x9e\x7d\x78\xa5\xe3\x3f\xc6\xe0\x89\x66\x55\x4e\x32\x4b\x5d\x4f\xfa\x4b\xd0\xe7\x63\x3e\x1d\xd8\x16\x5b\x71\x1c\x3f\xec\xf7\xc9\x41\x8e\xb4\x75\x32\x43\x8d\xc9\xf2\xf2\x59\x51\x9a\x0d\xc4\x6b\x0c\x17\xe8\xd6\x78\xa4\xcd\xa6\x10\xc6\xac\x5f\xde\x02\x03\x32\x97\xd4\x1e\x2a\x96\xf2\xbd\x14\x54\x0d\xc0\x3e\x08\x5e\x9c\x3e\xac\xce\xe0\x79\xa8\x22\xc9\xd0\x0e\xde\x4b\x26\xc5\xa2\x12\x7b\x70\x51\x1f\xc8\x71\x02\xcf\x8c\x76\xc5\xe0\xdc\x10\x68\x16\x3c\x5c\xc9\x21\xf3\x82\x89\x2e\x59\x19\x48\x8b\xd3\x6a\x16\x2f\xb2\x4b\x3d\xcd\xf8\x2e\x3f\x48\xab\x19\x73\xf0\xc7\x13\xc9\x08\x15\xaf\x6e\xc1\x83\xd3\xd5\x62\x55\x65\xe9\x69\xba\x9a\xcf\xaf\x4f\x21\xf3\x54\x64\x9d\x42\x91\x53\x1c\x98\xfd\xe0\xc1\x31\x96\x6b\xe8\x99\x4d\x61\x4b\xbf\x50\x05\x3a\xad\x66\x61\xa3\xee\xf9\x03\x3e\xc8\x78\x36\xa4\xd5\x4c\xed\xad\x81\x0a\xd1\xd6\x51\x00\x3d\xa1\xed\x30\xfa\xe0\xe2\xe9\x00\x9e\x15\x92\x1a\x07\x5e\x5b\xa2\x91\xfa\xc2\x50\xdc\xa7\x8b\xa5\x74\xfb\x8e\xbc\x18\xf6\xf3\xd4\x1e\x33\x9e\x77\xd7\xa1\x6b\x50\x12\x60\xb0\x71\xd8\x4d\xf3\x86\xba\x04\xd5\x0b\x0b\x63\xba\x99\x89\xad\x12\xdc\xdc\xd0\xaf\x07\xc1\xcd\x0d\x40\x8f\x97\x4c\x31\xe2\xe0\x08\xb4\xcc\x41\x0d\x24\xa0\x8d\x9f\x5d\x2d\x67\xf9\x24\xaf\x51\x4d\x04\x16\x15\xdf\xff\x38\xfe\x63\x07\xa1\x13\x10\xc8\xad\xea\x96\xad\x4e\x5a\x07\x7a\x94\x54\xc6\x2e\x3b\xc6\x33\x67\xff\xf4\x89\x91\xab\xd2\xbe\x31\xa6\xd5\xec\x35\x91\x48\x3e\x5e\x23\xe5\xc4\xcc\x18\x58\xa5\x16\x21\x30\xa4\x09\x50\x68\x05\xda\x11\x97\x6a\x04\xaa\x0b\xd7\x66\x24\x1c\xdd\xa6\x13\x07\x87\xa3\xc4\xe0\x64\xb4\x11\xa8\xee\xed\xd9\xcf\x31\xde\xa7\x25\xc0\xf8\xf0\x24\x1c\xd6\x85\xfe\x3e\x3a\x89\xd4\xef\x87\x27\xa0\x63\x3c\x32\x83\x37\x00\xb1\x30\xa7\x5a\x52\x58\x65\x11\x8b\x61\x62\x6e\x47\x6a\xf3\xa9\x68\x81\xce\xa3\x7e\x5f\xff\x06\x77\x5c\xdc\x41\x20\xee\x5f\x0d\xb0\x1f\x0c\xa9\x0e\x48\xeb\xa2\x1b\xe2\xd8\x9a\x27\xcb\xb8\x45\x12\xc4\x88\xe7\xc8\x25\x64\x92\x61\x4a\xab\x59\xbb\x02\x00\xb7\xb2\xfa\x27\x79\x00\xc0\xac\xf3\xac\x3e\x5d\x2a\x7b\x45\xbb\x99\xc5\x6a\x9e\x95\x62\xaf\x9d\x9a\x6f\x51\x98\x9d\x57\xa7\x78\x7b\xee\x8e\x85\xe7\x7b\xcc\x6a\x51\x4d\xf0\x46\xb6\xd3\x06\x6b\xcb\x56\x33\xb7\x5b\xc5\xcf\x9b\xe7\x57\xf9\x42\x46\x9a\x3f\x25\x77\x7f\xdb\xfb\x40\xf8\x35\x68\x38\xd8\xce\x0c\x8c\x98\x68\xff\xc2\xd1\xec\xbe\xbe\x4f\x85\x73\x6e\xa7\xbb\x51\x05\x43\x6d\x84\x3f\x8b\x65\xbc\xe9\x4d\x30\xaf\xde\x14\x8b\xcc\x71\x80\x80\xc9\xed\xd1\xf2\xbe\xb3\xa3\xe5\x09\x92\xf8\x76\xea\x84\x79\xc7\x64\xaf\x36\x8a\x2f\xca\x9d\x1b\x0a\xcf\x33\xe0\x62\x73\x6d\x8c\x67\x07\x31\x4e\xf2\xe9\xb5\x13\xc8\x6e\x28\x73\xbc\x21\xfc\x00\x62\x53\x0c\xbf\x23\x8f\xd1\x01\x45\x28\xa5\xd8\x6b\xf6\xc2\x73\x57\x42\xa7\xdf\x8a\xa3\x0e\xc7\x15\xc9\x29\xc5\xff\x8e\xad\x99\x1e\x52\x3a\x41\x91\x00\xd9\x81\xa2\x74\x80\x42\xc7\xa2\x1e\xd1\xa3\xd1\x9b\x68\x9d\x5d\x99\xcf\xb3\x3b\xbf\xd3\xd5\xc5\xf9\xf9\x8c\x79\xbc\xd4\x01\x10\xb4\xab\x65\xe6\xa6\x82\x3c\x61\x42\x72\x9a\x81\xfb\x6d\x7c\x05\x83\x94\x3a\x4b\xca\xb4\xb8\x5c\xfc\x25\xcf\x2e\x21\x82\x42\xb6\xa8\x3d\x01\x19\x74\x31\x0c\xab\x0b\xe1\x6b\x30\x42\x0f\x33\xd0\xc6\x14\xf3\x12\x8e\x69\xa7\x48\x6c\xab\x63\xee\x70\xf4\x59\x9e\xda\x2a\xf3\xa8\xa5\x91\x46\x75\x51\x27\xb3\x77\xe8\xee\x3b\x2a\xb3\x79\xf1\x25\x4b\x6f\x31\x54\xb0\x99\x44\x55\x14\x79\x22\x16\x7b\x42\x36\x12\x4a\x17\xfd\x90\x28\x1b\x09\x9d\x50\x6d\xbc\x82\x16\xc7\xae\x18\xe1\xca\x80\x1c\xe7\x27\xca\x7d\xb2\x14\x22\x73\x9f\x8c\x11\x96\x09\x25\x1b\x74\xae\x5d\x6c\x44\x41\x99\x4d\xcb\xac\xba\x78\x8d\x46\x91\xea\xe1\x11\x12\x07\xa1\x32\xc6\xc0\xbb\x5d\x34\xcd\x17\x56\xa0\x2f\x7b\x58\xc9\x1e\x15\x00\xa9\x79\xed\x35\xfa\x96\xe3\x3a\xf1\xb8\x6c\xa6\x25\x87\x03\x5c\x31\x01\x24\x0f\xa4\x87\xc8\x55\xcf\x56\xe2\xe8\xfe\xb0\xaa\x96\xd9\xa2\xca\x8b\x45\xf4\x79\xf9\x3a\xab\x13\xf6\xaa\x74\xfa\x79\x89\xf7\x16\xcc\xb1\xd8\x5c\x08\xa2\x27\xd2\x87\x1b\x62\xe9\x49\x18\x31\x23\x9f\x97\xca\xcb\x8b\x11\xb0\x6e\xa9\x6d\xaa\xd1\x8b\x7c\xa5\xc2\xec\x51\x67\xfa\x7d\xa3\x00\xa5\xca\xd0\x76\xe7\x64\xb0\x4c\x03\x40\xd1\xf1\xc2\x11\x56\x13\x93\x73\xe2\x5d\x03\xb2\x41\xd7\x25\xc2\xe1\x9a\x2a\x5b\x3a\xe1\xf3\x58\x23\x69\xe6\x6b\xa6\xea\x6e\xa7\xd2\x91\xdf\xd2\x6c\x3a\x52\x5f\x69\x36\x6d\x1a\x8a\xb5\xe7\xb6\x9a\x4f\xa9\xde\xbd\x58\x07\x8d\x33\x5d\xa1\x7a\x17\xbe\xaa\x42\xad\x7d\xee\xb4\x1d\x1d\x67\x08\xca\xd1\xef\x5b\x7b\xc2\xe3\x46\x5f\x7a\x3c\xd7\xb9\x8d\x42\x25\xa6\x39\xfc\xbc\xc4\xf8\x3c\x18\x7f\x8e\xfb\xec\x38\xa5\x9d\x93\x2f\xce\x79\x14\x4e\x78\x65\xad\xbc\x33\x1a\xc9\xca\xc2\x2d\xea\x41\xdb\x22\xb6\xe9\xc8\xe7\x32\x54\x70\xac\xf0\x8c\xbe\xe4\x55\x7e\x36\x63\x29\x7b\x2a\xb8\x5e\xf4\x29\xbb\x3e\x56\x03\xd6\x84\xcd\x4e\x5b\x0a\xbc\x49\x9b\xc4\xa2\xc1\xf0\x63\x18\x4f\x34\x82\x78\x9c\xa9\xe6\x87\x8e\xc7\x18\x41\x4c\x70\xb7\xfa\xac\x40\x25\xcd\xe1\x4f\x91\x93\xc0\x43\x10\x58\x37\x7c\x43\xe4\x4f\x9e\x8c\xf4\xe5\xb6\x1c\x99\x7e\x85\xdb\x63\x19\x70\xa3\xdf\x5c\x9c\x4d\xf3\x2c\xcd\x93\x3a\xfb\xe8\x6d\xba\xbd\x39\x0a\xdc\xd2\x52\x43\x7b\x9b\x44\x75\xdb\x4d\x9c\x4c\xa7\xe8\x48\xa2\xd1\x75\x72\xc4\x82\x3b\x6c\x83\xa2\x31\x22\xad\x81\x21\x38\x72\x55\xb6\x48\x37\x60\x26\x40\x98\x3f\xd4\xa1\xb7\x16\x30\x9e\x54\x67\x30\x39\x31\xe0\x27\x84\xc7\x55\x92\x45\xf4\xd1\x39\x8a\x6e\xc2\x7a\xbf\xb1\xc1\xe5\x2b\x19\x13\xf0\x83\x0a\x3d\x90\x03\xee\x23\xc9\xae\xa2\xe5\xb9\xc1\xf3\x50\xd0\x58\x4d\x5a\x5e\x62\xee\x95\xe9\x62\x94\x02\x2d\x01\xa4\xf9\x05\x8c\xad\xc6\xb5\xd2\x8e\xea\x8d\x64\x4e\x6a\x14\xfe\xf2\x0c\xd8\x0d\xd3\x2d\xe9\xdb\x6e\x84\x64\xdd\x8c\x7c\x78\x7b\xd0\xe6\xcb\x66\x6b\x1a\xa9\xe5\xb8\x9b\x1b\x60\x01\x6e\xd0\x13\xcf\x47\xe2\x40\x2b\xc5\x27\x19\xa9\x03\x73\x3c\x3d\x20\xfe\x46\xa2\xb3\x6c\x5a\x40\x38\xeb\x6c\xa6\x29\xe0\xb4\xce\x4a\x33\xa9\xcc\xd2\xbc\xcc\x26\xb5\x4a\xa0\x2a\x3c\xdc\x2d\x21\x48\x06\x34\x50\x8d\xde\x17\xd9\x55\xdd\x44\xe8\x3d\xcb\xe6\xdb\xec\x9d\x08\xd2\x39\x14\x54\x55\xc9\x25\x1d\xab\x78\xba\x7d\x31\x23\xdd\xed\xbe\xd0\x59\x61\x93\x15\x1b\xce\x93\x65\x10\xaa\xc0\x07\x32\xf4\xf0\x92\x7c\x8e\x93\xf7\xd5\x38\x8e\x0d\xd7\xff\x37\x37\xec\x0b\xfd\xb0\x8a\x52\x46\xa4\xd5\x09\x8b\x81\x07\x5d\x03\x57\xac\x4a\xa7\x67\x30\xfc\xcf\xf0\x34\x4f\xff\xd7\x03\x29\x8b\x9f\x93\x0c\x72\x64\xf0\x43\x18\x8e\x58\x8d\x47\x2c\x83\x3f\x41\x5c\x8b\x7e\x5f\x65\xb0\x57\xf7\xe5\x35\x8d\xb0\x56\x33\xda\xc3\xc7\x2e\x33\x24\x0b\xb9\x66\x01\x11\xed\x5e\x1c\xb3\x1c\x54\xf3\xf1\x84\x1e\xd7\x26\xc6\xcc\xc9\x1b\xcd\x78\x57\xf1\x71\x4b\xb3\x07\x47\x27\x72\x95\x8c\xb4\x13\x1d\x59\x67\xc3\x09\xff\x34\x5f\xa4\x90\x4a\xce\xad\x30\x4e\x5d\xc4\x38\xc3\xce\x05\x76\x8b\xb8\x12\xba\x6d\x58\xbf\x83\x5a\x85\x91\xa9\xa4\xa2\x94\x3e\x14\x42\xde\x9a\xe1\xc0\x82\xd5\xe0\xe2\x85\xf7\x1c\xec\x98\x7d\x98\x56\x75\x51\xf2\x70\x5b\xf0\xad\x03\x3c\xc1\x27\x0c\x0b\x1d\x84\x90\x60\x1e\x81\x22\xa5\x35\x42\x8e\x76\xe7\x58\x1b\xc1\x69\x46\xea\x24\xd7\x27\xa2\xfa\xc4\xf0\x27\xf2\x21\xd9\x0d\x20\xa4\xb2\x14\xa2\x6b\x81\xa2\xc5\x46\x31\xa6\x1a\x46\x06\x2d\xe9\xda\xb4\x0b\xd0\x8d\x8e\x74\x81\x08\x67\xa9\x2e\xa5\x16\xa4\xf4\x3c\xa4\x72\x60\x6c\x06\xb4\x50\x9a\x26\x8c\x3c\x2b\x05\xa0\x23\xbe\xdb\x79\x30\x82\xef\x8f\x78\x8c\x25\x6c\xd4\xd8\x00\xb0\x71\x97\x32\x92\x4a\x84\x92\x59\x0a\x14\xff\x00\x76\xf7\xb0\xce\xaa\x1a\x1f\x21\xfb\x7d\x3b\x52\xd0\x51\xb8\xc6\x22\xe4\xae\x45\x8c\x26\x62\x14\xe4\xa9\x74\x1b\x54\xa8\x70\xf5\xcc\x13\x9f\x81\xb7\xf2\x62\x00\x90\xc4\xf9\x30\x67\x7c\x06\x0f\xd4\x7e\xae\xad\x49\x9d\x04\x21\xfa\x7d\x02\x31\xc3\x46\x5a\x17\x08\xe9\x6b\x8f\x1d\x30\x06\x37\x64\xcd\xfb\x69\xf5\x29\x5f\x3e\xa9\xaa\xac\xac\xbb\xd7\x20\x3e\xaf\xb5\x39\x09\x95\x4b\x21\xf2\x78\xc8\xeb\xf7\xe1\x8f\xc5\xc3\x11\x8d\xf5\x65\x35\x5d\xce\x14\x4d\x45\x0c\x7a\x4b\xd6\xea\x4d\xa4\xf2\x10\xb9\xec\x9b\xd5\x71\x5a\x3a\x9d\xdb\x0e\x60\x62\xf8\x9f\x58\x4e\xf8\x2d\xe3\x0f\xa9\x86\x3b\x55\x53\x58\x6b\x74\xee\x3a\xb3\xc0\x58\xf5\xb6\xb0\x54\xe6\x28\xb3\x20\x6d\x8c\xd9\xfe\xc1\x73\x53\xc0\x30\x78\xfa\x0a\x02\xf7\x31\x33\x96\x18\xdb\xf5\xaf\xa0\xb5\x37\x6a\x62\xe4\xd4\x29\x62\x43\x0e\x4a\xbd\xc7\x16\xd2\x4c\x27\xfa\xac\x55\x31\x8f\x9a\xd8\x52\xc3\xd8\x2a\x72\xd2\x18\xd1\x61\xd4\x7a\x62\xec\x8d\xb8\x03\x71\x56\xcb\xbb\xc3\x68\xca\x19\x67\x86\x2a\xe4\x66\x68\x58\xf3\x31\x51\xd2\x94\x77\x49\x55\x65\x69\x4c\x8f\x88\xb0\x74\xf5\xe3\x61\xbf\xbf\xb7\xa7\xc6\xc5\x84\xa0\xa7\xa1\x7e\x7f\xcf\x79\x9f\x84\x12\x0b\x97\xa0\x37\xbe\x07\x4c\xdb\xd1\xa5\x8c\x5e\xc5\xd5\x06\x3c\x0e\x6c\x0d\xdf\x98\xf0\x18\x09\x14\xcc\xd3\xaa\x09\x4a\x32\x5b\x9d\x82\x13\x0f\x24\xd6\xf1\x04\x2f\x12\x30\x1f\x47\xa9\xdf\x5f\xe8\x4b\x9a\x84\xb6\x5c\xdb\x7a\x49\x4c\xb7\xbb\x5d\xe5\x63\x5e\xc9\x82\xc1\x89\xfc\x0f\x5f\x54\x14\x7e\x99\x1e\x84\x6a\x99\xef\xc9\xb4\x70\xdd\xee\xfc\x93\x3b\x0d\x35\x1c\x81\xc2\x21\x23\xea\xef\xf7\x59\x45\x2c\x3e\x93\xbc\xe6\x5a\x9a\x5c\x7f\x79\xf9\xfc\xaf\xa7\xaf\xde\xbe\xfd\xe9\xcf\xef\x3e\x30\x25\x2e\x35\xb3\x2a\xd4\x18\x69\x57\x32\xc5\x04\xd9\x8c\xd6\x50\x80\x51\x81\x13\x04\x3c\x89\x2a\x77\xd0\x38\x66\x5c\x91\x41\x85\xdd\x07\xb7\xf0\x62\xf9\xa1\xeb\x66\x5c\xf2\xb3\xa4\xaa\x31\x1e\x41\x96\xca\x7d\x82\x6b\x22\x59\x2e\xb3\x45\x0a\xb5\xd7\xae\x47\xd1\x28\xcd\x2b\x72\x68\x8a\xde\xf6\xfd\x2e\x18\xf6\xd4\x72\x75\x95\xa6\xd4\x23\xfb\x17\x15\x86\x81\xaf\x20\xa6\x38\x35\xb2\xfa\xa0\x81\x1b\xfd\x7a\x2e\xdd\xf4\xc7\x6e\xd2\x0f\x6e\x92\x67\x5f\x90\x37\x5c\x75\x31\x43\x15\x7b\xbb\x69\xe3\xf3\xe6\x06\x07\x73\xa4\xd9\x6c\x40\x81\xd3\xdc\x53\x5c\x4f\xcc\xed\xab\x8b\x0d\x79\x1d\x51\x9f\x6b\x86\xa8\x3d\xd0\xd6\x84\x8a\xb3\xbc\xc5\x68\xc0\xff\xc6\x62\x24\x58\x6f\x41\x46\x89\x8f\xc5\xf2\x55\xf6\x25\x9b\x21\x46\xad\x59\x03\xf4\x19\x2c\xb3\x74\xec\x85\x2a\x36\xca\xb0\x8c\x9b\x9b\xf1\xc9\x48\x3d\x7f\x0d\x3c\x10\xfa\x79\xdb\xcd\x14\x9b\xd6\x4e\x1b\xa0\x0e\x39\x08\x8b\x5b\x31\xf5\x02\xb0\x46\x8d\x7c\xdf\xc6\x68\x9a\x5b\x58\xb6\xbd\xc7\xc3\x92\x42\x7e\xf1\xa0\x73\xeb\x26\x3a\xfd\xbc\xec\x64\xfc\x77\x14\x79\x29\xcd\x54\x8b\x61\x50\xa4\xa5\x53\xb9\x9b\x33\x6a\xcc\x69\x46\xab\x36\x31\x57\x61\xdd\xb3\x8a\x1a\xfc\xb7\xce\x7b\x57\x16\x75\x11\x5b\xb0\xa8\x9d\x39\x30\x02\xf5\x59\x8f\x1a\x50\xce\x8a\xeb\x07\xcd\xb2\x14\xe3\xb6\x6f\xc4\xf9\x64\xa8\x7c\x5e\x56\xf1\xf8\x24\x9a\x27\x4b\x41\x57\x9c\x37\x1d\xa7\x02\xe7\x51\x47\x41\xbc\x4e\x96\xcb\x7c\x71\xce\xcb\x8c\x73\x08\xb2\x56\xf3\x28\xfd\x04\x26\x95\xe1\x8e\x83\x30\x5a\x96\x05\xb2\x53\xa8\xfd\x76\x78\x42\xcf\x71\xf4\x7d\x74\x72\x73\x23\x41\x22\x7a\x6d\xfe\x8b\xe7\xa1\x07\xc7\x44\x42\xa2\x9f\xd7\x18\x9f\xe9\x07\xbc\x58\x68\x54\xf2\x41\xde\xae\xd2\xf6\x87\x21\x0e\x4f\xb8\x41\xed\x61\xf4\x79\x19\xaf\xd3\x6c\x7a\x6c\x40\x54\x76\x8a\x6e\x03\x8a\x41\xc4\x52\xaa\xe7\x98\xaa\x13\x68\x1f\xab\x5e\x4e\xea\x12\xdd\xb6\x33\x49\x2a\x3e\x54\x98\x0d\xb9\x69\xac\x29\xe4\x86\x45\xa7\x9a\xd1\x3c\x59\x8e\x65\xed\x27\xb1\xf8\xa2\x87\x23\xf8\x6d\x6b\xae\x1f\x63\xd4\x16\x04\xfe\xbc\x1c\x7d\x5e\xd2\x6b\xc9\xe7\xa5\xbc\xb5\xad\x3f\x2f\xab\xe3\xcf\xcb\x4a\xac\x9c\xe3\x79\xb2\x14\x17\x55\xcf\x03\x06\x5f\xa0\x32\xe0\xde\x9d\x39\x7b\x1d\x98\x51\x2e\xe5\x35\xfa\xa0\xf1\x73\xfc\x6d\x5c\xbe\x74\x0c\x6c\x49\xe8\x38\xcf\xbf\x94\xd2\x2b\xc5\x84\xd3\xad\x19\x2e\xbe\xc0\x73\x7e\x36\x64\xb9\x0a\x8e\x25\x23\x37\x69\x19\xc0\x9a\xa8\x41\xc6\x48\xc6\x23\x24\x5b\xd7\x8e\x86\x10\x84\xb7\x81\x7b\x59\xbd\xd9\x42\xbd\xec\xd1\x76\x4f\xbe\xda\x1a\x3e\x9f\x15\x05\xd0\xef\xb2\x40\x09\xe8\x73\x9e\x2c\xa3\xcf\x4b\x97\x28\x78\x5f\x78\xe1\x75\x17\x74\x17\x9d\xc7\xc9\x58\xbe\xd3\x29\x79\xa5\x7e\xba\x35\x64\x8f\x02\xd1\x81\xce\x9b\x27\xcb\x90\x09\x24\x61\x04\xe9\x39\x94\xd1\x18\xf9\x02\xfa\x79\xc9\xd7\xb5\x7e\x10\xa5\x38\xae\xa1\xf5\xb0\xda\x2c\x8d\xe2\x74\xc7\xee\x7c\xb1\xb5\x9f\x6b\xcd\xb1\x8c\x3c\x25\xf5\x3a\x37\x6a\xe0\x1b\xf6\xa3\xa8\x4a\xf4\xdc\x4e\x14\x2c\x21\x5a\xcd\xa8\x59\xfb\xff\x7f\x78\xfb\x66\x88\x6c\x62\x3e\xbd\x96\x32\x22\xe9\x7f\x76\x1f\xc7\x38\xf2\xf6\xe1\xae\x98\x9c\x15\xc5\x2c\x4b\x16\x1a\x17\x39\xb6\x41\x5d\xae\xb2\xe0\x07\xf1\xff\xb1\x7e\x3f\xe8\xb5\x54\xb3\x58\x09\x5e\x41\xd7\xf2\x06\xbe\xa9\x27\xb8\x48\xde\x4e\x07\x61\x67\x1d\xd6\xa0\x20\xf7\xf1\x64\x00\x83\xb3\x4c\xca\x2a\xa3\xea\xd4\x04\xd1\xb8\x9c\x7e\x5e\x92\x3a\x88\xf7\xe2\xab\x0e\x0e\x29\x3d\x7f\x03\x3a\xdb\xe0\xf5\x4e\x7d\x92\x3c\xf9\x11\x38\xc1\x83\xa8\xb5\x6b\x7d\x7a\xa9\x32\xd2\x0b\x9f\x5b\xcc\xde\xa7\x4c\xb7\x22\xfa\xcc\x37\x9e\xa6\xd6\x23\x43\xbe\xd5\xf2\x74\x43\x1c\xd2\x6d\x54\x3d\x98\x5a\x45\xb8\xa6\x1f\x7c\xf3\x82\xe8\x9e\x71\x0c\x38\xf1\x20\xaf\xb7\x14\x2d\xd4\x08\x4a\x4f\x11\xc4\xf0\x7f\x5e\x65\xab\x2c\xfd\xdf\xef\x9e\xea\xca\xe1\x7d\x80\x74\x00\xca\xd5\x62\x58\x2c\xc8\xbb\x25\x05\xa7\x9f\xe6\x25\x5b\xbc\x1f\x99\xe4\x39\x6a\xcd\x73\x59\x7d\xf6\xa6\x6c\x72\x9a\x5d\xe8\x35\xdd\xd8\xc7\xeb\xa6\xe1\xa1\x30\xf1\x66\x02\x4c\xed\x80\xce\xa4\x2f\x3a\x50\x37\x3c\x23\xc4\x4c\x3e\x64\x92\x7c\xe3\xb5\x01\xe8\x34\x4f\xf0\x3c\x5a\x48\xa7\x79\x26\x51\x8e\x3d\x6f\x1e\x5a\xcd\x9c\x8a\x18\x40\xe3\xdc\x08\xf1\x2d\x41\xe2\xd8\x38\x56\xa9\xd1\x86\x0c\x8d\x08\xaa\xb1\x3b\xaf\x6e\x88\xac\xff\x54\xc4\x1d\x1d\x75\x77\x87\xee\x62\x3e\x17\x57\x2b\x01\x04\x66\x79\xef\x1d\x5a\x3a\x26\x2f\x22\xa6\xa7\x7a\x03\x29\x6a\x82\x61\xed\x08\x16\xf0\xb4\xf4\x4b\x16\xbc\x9a\xf2\xca\x19\xfb\xa2\x2e\x62\xfe\xf1\x03\xff\xd8\xe2\x4e\x8d\x63\xb2\xe5\xa5\x5a\x26\x2b\x61\x96\x4a\x51\x83\xa6\x06\x57\xe6\xd8\x82\x16\xcd\x1d\x6c\x25\x95\xb1\xa2\x2c\x19\x41\x70\xb8\xc0\x50\x65\xa0\x84\x1f\x8c\x40\x9e\x1a\x52\x6e\xb7\xa4\xa1\x4e\xe0\x66\xab\x33\xc0\xaa\x8c\x49\xc3\x37\xc9\xbc\x8d\x16\xac\x6a\x9c\x88\x44\x3e\x21\xfb\xcd\x8d\x25\xda\x65\xe6\x68\xac\xa8\x2d\xbc\xb1\x6e\xaa\x4c\xdc\xef\x6d\x6f\x6b\x6b\x63\x57\x21\xa3\x3d\xae\xd7\x12\xa4\x8c\xbd\xbf\xb3\xea\x7a\xdf\xb8\x46\xaa\xdf\xfc\xbd\x27\x96\x6a\xaf\xbe\xc8\x7a\x7f\x47\x29\xef\xdf\x7b\xa8\xc7\x15\xf5\xce\x56\x75\x6f\x51\xf4\xaa\xd5\xe4\x82\xf5\xa9\x37\x29\x56\xb3\xb4\x77\x96\xf5\xa6\xc5\x6a\x91\x0e\x03\x54\x02\x20\xc1\xf1\xc4\x1f\xd5\x88\x64\xfb\xee\x34\xf3\xd1\x91\x0f\x42\x08\xa4\x37\xec\x46\xb9\xde\x9a\xa2\x6b\x72\x37\xa7\xce\x6a\x0e\xd7\x8d\x66\xc5\x25\x63\xc1\x05\x64\xb0\x81\xcd\xb8\x64\xc7\xf8\x59\x17\xcb\x59\xf6\x25\x9b\x05\x2d\xc1\xce\x58\x6d\x86\x8c\xd1\x87\x82\x98\x42\xb1\x09\xa1\x2b\x01\x97\xa4\x06\x21\x3e\x54\x99\x39\x41\x64\xef\x72\x74\x05\x85\x50\xa7\x69\x76\xb6\x3a\xff\xc8\x6b\x89\x38\x9d\x08\x1b\x0d\x5b\x12\x19\xf5\x40\xb1\x1a\x27\x2c\x0c\x91\x67\xd3\xf2\xb0\x9c\x7a\x86\x98\x70\x14\x89\xa9\x21\x1d\xe5\xb3\x22\x06\x99\x1f\x11\x30\x03\xc6\x01\xd9\x2e\x20\x84\xb2\x23\xbf\x74\x4d\xd9\xf4\x62\xd2\x47\x02\x60\x52\xc4\xc8\x12\x14\xea\x6b\xa4\x4f\xf8\x45\x66\x6b\xbe\xac\x78\x7c\xd2\x28\x35\xf4\x41\x2b\x58\x74\x18\x1d\x46\x63\x37\xe3\x24\x1c\x31\x71\x66\x97\x2c\x93\x62\x61\xa9\x45\x5b\x16\x45\x4d\x31\xd7\xf8\x2d\xcf\x7e\xc3\x1e\x32\xb8\x40\x3b\x1f\x6e\x11\x64\xb6\xe7\x0d\xc2\xc6\x9c\x18\x37\x62\x17\x5f\x44\x88\xed\xa8\xbd\x3e\x35\x45\x32\x51\x4d\x12\x96\x84\x37\x0a\x5c\x49\x1f\x8b\x01\xeb\x04\x3f\xbc\xbb\xeb\x58\xdb\x36\x79\x14\x9a\x4d\x87\xa2\x73\x6b\xea\x58\x30\xb8\x50\x3c\x95\x76\xca\xa3\xa5\x1c\x5a\xb5\xd4\xae\xaf\x86\x33\xc8\x4e\xd3\x0c\x44\xa7\xb6\x6c\xcd\x16\xff\x59\x92\xbf\x28\x17\x17\xf3\x08\xc9\x76\x8c\x55\xfc\x10\x24\x69\x2a\x1b\x0a\x8e\x03\x54\xa9\x57\x09\xc0\x40\x6e\x2f\xe6\x03\x6d\x22\x53\xb2\xc7\x24\x78\xe3\xc3\x13\x76\xb2\x8d\x11\x8f\x13\xb8\x35\xa1\x14\x0a\xff\x1f\xea\x1b\x58\xd8\x06\xbf\x0f\xb7\xaa\xb6\x52\x4d\x9b\x5d\x3b\x70\x98\x5b\x19\xf6\xfd\xb3\x62\xfb\xfa\xc2\xc2\x19\xe0\xae\xa5\x5f\x8b\xd1\x1e\x88\xd5\xb6\xf3\x27\xdc\x6a\x2b\x78\x8f\x96\x7a\xa0\x93\xcc\x90\xf4\x39\x4a\xf0\xc4\xb2\x37\x22\xd3\x77\xfa\x32\xde\x22\xbc\xfd\xbf\xad\xfe\x5a\xad\xfe\x58\xc2\x3d\x85\xb6\xf9\xfa\x66\x80\xd2\xee\xcb\x9a\x04\xc3\xee\x0b\x77\xb6\x54\x98\x70\xc2\xeb\x99\xd9\xed\xe6\x7d\xbf\xb7\xcd\xfb\x60\x77\xd9\x16\x80\x76\xc7\x6c\x0b\xbf\x3f\xec\x66\x9d\xe8\x33\x08\x74\xec\xf3\x8e\xb6\xb1\xcf\xf3\x0c\xfa\x73\xdc\x8f\x8e\xb1\x9f\x77\x1a\xd1\x4d\xfa\xb3\x0f\xaf\x36\x9a\xfd\x01\x38\x9c\xda\xf6\xaa\x1b\xc2\xdb\xe1\x97\x4e\xa7\xd8\x47\x1e\x83\xcc\xd3\xd7\x72\x1f\xbb\xd5\x8a\x69\x31\xf3\xb5\x19\x5f\x19\x97\xd9\xe7\x55\x0e\xda\xbf\xab\x59\x26\x23\x2e\x07\xa1\xdd\x80\x16\x05\xf9\x4b\x3c\xd0\x02\xa1\x20\x1c\x6a\x68\x5c\x9f\xb3\x7c\x92\xc5\xe3\x13\x94\xf8\x19\xcb\xb2\xcb\x1c\xf1\x19\xbb\x47\x78\x3a\xc0\x43\x4e\x7a\xac\x11\x69\xee\xa2\xb5\x0a\x85\x44\xee\xbd\xb9\xdf\x54\xdb\x85\x2c\x93\x4e\xa9\xe7\x92\xaa\x2e\x57\x93\xba\x90\xd2\x25\x7a\x08\xe5\x19\xf3\x64\x49\x0f\xb5\x3f\x91\x80\xeb\x34\x51\x7c\x5c\xa5\x74\xca\x4f\xe1\xae\x25\xe7\x54\x1a\x26\x8a\x23\x38\x99\x5c\x64\x1a\xcc\x95\x8a\x8d\x98\xc6\x87\x2d\x54\xf8\xf8\xfe\xc9\x9b\x0f\x2f\x3f\xbe\x7c\xfb\xe6\xc3\xe9\xcb\x37\x1f\x9f\xbf\x7f\xf3\xe4\x95\x36\xa5\x43\xee\x72\x56\x9c\xe3\x10\x0d\x5f\x15\xe7\xe7\x10\x3e\xf8\x6c\x75\xde\x34\xd1\x0a\xde\xc2\xdc\x37\x61\xc7\x29\x1c\x73\xff\xad\x9c\x48\x86\x51\x55\x27\x25\x48\xa0\x2c\x17\x4e\xce\x30\x6e\x37\x74\x7e\x7b\x91\x0d\xae\x6a\x5b\x95\x79\x94\xb3\x4a\x98\xe5\x3c\x99\x99\xae\x1c\x75\x62\xa0\x1c\x23\xa9\x20\x54\x9e\xc8\x07\x4a\x6f\xac\x61\x93\x89\x00\x03\x0b\xd1\xd0\xe7\x68\xca\xbc\xfc\x46\xcf\xf8\xb5\xb6\x15\x5c\x5d\x8e\x23\x45\x33\xe4\xfa\x0e\xc3\x91\x8e\x91\xa5\xbd\xef\x0d\x6c\x17\x7a\xb3\xe9\x50\xf9\xd7\x43\x47\x79\x21\x53\x13\x63\x43\x13\xc7\x81\xd2\xea\x0c\xc2\x35\xcb\x51\xed\xa8\xa9\x87\x21\xd0\xd5\x6a\x58\xd0\xd6\x49\x7d\x82\xe3\x1c\xc5\xae\xe8\xb9\x0f\x83\x8f\xa2\xd6\x0b\x0e\x27\x0e\xf8\x2b\x74\x5e\x02\x7b\x57\x6e\x90\x45\x51\xe7\xd3\x6b\x79\xfc\x50\x58\x8f\x60\x55\xce\x82\xd0\x27\xdf\xae\xcb\x5c\x2c\xf1\x28\x30\xf0\xd0\x73\x6c\xed\xa1\x20\xb4\x77\x51\xb8\x36\xb6\xca\xac\x38\x1f\x04\xba\xa2\x2c\x45\xa1\xce\x37\xc1\x3e\x23\x40\xc3\x53\x15\x33\x86\x3a\xba\x1f\x7c\x13\x84\x4d\xbb\x6f\x43\x23\x82\x52\x5a\xe8\x06\x06\x81\x2a\x12\x44\xe3\x55\x39\x3b\x09\x9b\x16\xfb\xb3\xce\x5a\x78\x91\x60\x67\xeb\x32\x4e\x3d\x36\xd8\x92\xf9\xad\xad\x46\xee\x44\xa3\x97\xb2\x69\x51\x19\xcf\xb4\x24\xf9\xfe\x93\x25\xad\xbf\xf5\x54\xbd\x64\xd8\x1e\xd4\xb7\x9e\xb7\x16\x93\xb6\x8e\x01\x67\x25\xcc\xf1\x6e\x73\x99\xb3\x2a\x67\xc6\x48\x48\xb8\xee\x71\xe5\x18\xa8\x8d\xa9\xdd\x3b\xa3\x2b\xcc\xbc\x42\x41\x82\x6e\x52\x9b\x25\x6c\x67\x96\x27\x6b\xd8\xd6\x26\xcf\xb4\x85\xe4\xdd\xa2\x0d\xb9\xc1\x36\xef\x22\xa9\x60\x4a\x2c\x8c\xbd\xa6\x7e\x12\x96\x40\xc4\x64\x55\x59\xdb\x39\x3e\x84\x4c\x88\x3d\x66\x0b\xbf\x8e\x99\xe6\x17\x53\xba\x84\x01\xc2\x03\x3c\x76\x4e\xf3\x31\x07\x55\x61\x5e\x11\xa0\xdf\xc7\xbf\xe3\xc3\x93\x26\x72\x25\x3a\xfe\xe6\x50\xb4\x03\x6d\x66\x57\x79\x25\x8e\xd2\x8d\xad\xe6\xd3\x81\x84\x0d\xd7\xf2\xd7\xf8\xf0\x04\xbd\xf2\x32\x15\x3d\x29\xa9\x02\xd2\x18\x29\xc8\xa3\x13\xf6\xca\xa6\x85\x2c\x4c\xf8\x14\xae\xb9\x82\x5a\x3b\x2a\xcd\x86\xfc\x78\x0c\xd2\x4a\x5f\x1b\x27\x28\x94\x2a\x16\x59\x07\xca\xbe\x82\x62\x2a\x0d\x56\xaa\x35\xb4\xa4\x97\x61\xe8\xf0\xf8\x8c\xf2\x3c\xf8\xe8\xf7\xf7\x2c\x7d\x99\x8b\xa4\x1a\x04\xda\xc7\x71\x95\xd5\xc0\xf6\x08\xf8\x03\x38\x8d\xa4\xd5\x9b\xe7\x30\xef\x28\x26\xf1\x89\xd6\xe8\x61\xb1\xce\x81\x54\xc0\x73\x3f\xe8\xff\xca\xf7\x8f\x38\x96\xda\xdf\xb2\xb2\x7e\xdf\x6c\xd0\x0c\xdb\xfd\xca\x08\xb0\xe9\x3e\x86\x68\xbe\x78\x5f\x33\x2e\xa2\x3d\xcd\x05\xec\xa9\x26\xed\x4a\x43\xc5\x56\xc7\xbe\xb0\x0b\x0e\xb8\x16\xb4\x2a\x55\x5b\xcb\x51\xb1\x2c\xdc\x8c\x3a\x6b\x36\xe3\xe8\xa0\xaf\x3f\xa5\x06\x8c\xaf\x25\x6a\x06\x25\xee\x34\xe1\xfc\x29\x49\x87\x7f\x34\x5d\x77\xb3\x47\x28\x05\xa2\xe2\x3c\x58\xee\x17\x5d\x80\x81\x38\x39\x30\xb6\x0f\x9c\x66\x2f\x08\xd8\xb1\xe3\xca\xb2\x45\xbc\x6e\xda\x79\x57\xe2\x0e\xdf\x7b\x4d\x5e\x94\x11\x14\x6a\x6e\xa1\xe7\x56\xee\x9c\xdd\x96\xa9\x5a\x8a\x60\xe8\x4f\x94\xab\x7d\x11\x97\xe2\xb1\x76\xd1\xc7\x06\xba\x63\xcf\x16\xa8\x36\x15\x9a\xb1\xec\xcb\x46\x67\x29\xe7\xed\xf2\xc1\x1d\x1f\xae\xac\x2d\xa1\x15\x49\x79\x5f\x19\x73\xbb\x25\x4a\x3a\x62\xcf\x36\xbe\x4c\x1b\xaa\x55\xbf\x3a\xe2\x63\xaf\xd5\x19\x49\x60\x90\x49\xb0\x8e\x24\xc6\xe7\x23\xb5\x49\x2a\xd8\xbf\x19\xbb\x8f\xe2\x34\xc8\x63\x5d\x2e\x07\x1e\x80\xce\x58\x1f\x03\x64\x8e\xd2\x42\xb1\xf1\x31\x5b\x31\x2c\x48\x05\x1c\xf1\xd4\x60\xd8\xc8\x16\x56\x6e\x29\x74\xd6\x4d\x90\x18\x02\x4a\xf1\xca\xac\x99\xb0\x31\x82\xe3\xea\x18\x13\xe4\xf8\xad\x78\xaf\x52\xbc\x18\xe9\x02\x2e\x56\xa5\xa7\x68\x37\x5a\xba\xb1\xb0\x69\xa8\x16\x83\x8b\x8f\xed\xdb\x04\x1b\x73\x13\x92\x00\xc4\x4c\x72\x2e\x8d\x99\xf9\xe1\x3b\x6c\x52\x9e\x57\xe1\x5a\xfc\x1f\x83\x70\x02\xdd\xda\x41\xea\x48\xfc\x3f\x3e\x3c\x89\xe9\xef\xcd\x4d\xf0\x20\x50\xc6\x8e\x32\x95\x5f\x33\x2b\xa6\x35\xf4\x76\x31\xbb\xa6\x98\x8d\x77\x32\x53\x86\x17\x82\xa2\x02\xc7\x19\xba\xfa\x27\xe5\x39\x22\x20\xfe\xd3\xde\x2c\x41\xb5\xdf\x07\xdc\xef\x7b\x93\x6d\x53\x29\xf3\xe9\x43\xba\xa5\x35\xcd\x13\xdd\x5e\xc2\x7e\x47\xc5\x89\xd5\x6c\xd6\xf0\xa7\x15\x0f\x8e\x86\x6a\x25\xbc\xd8\x3a\x35\xa2\xfd\x8e\x1b\xb9\x53\x40\x3b\x4a\x8d\x9a\xb8\x19\x7a\x41\x9c\x03\xb4\xb5\x53\x7f\xe8\xca\xf4\x68\x0f\x19\x3a\x4d\x1e\xe5\x22\xe8\xbb\xa1\x02\xe4\x35\x94\x3e\x81\xa7\x3c\x58\x56\xc3\xd5\x02\x63\xc0\xe2\x3b\x32\x6a\xae\xa1\x18\x48\xc9\x80\x64\x37\x95\xb5\x5f\x84\xea\xa4\x00\x36\xfc\xbc\x44\x2f\x3e\xcc\xeb\x0a\xd7\x32\xff\xd4\xa2\x02\xca\x9f\xa3\xac\xc9\xff\x94\x5d\xdb\x2a\xa1\xf9\x62\xb9\x22\x7d\x70\xfe\x40\xf5\x29\xbb\x3e\x41\x95\x3a\xc4\x65\x9e\x2c\x21\x8d\xb4\x61\xdb\x54\x27\xfe\xbc\x28\xb3\x49\x71\xbe\xc8\xff\x91\xa5\x88\x19\xea\x77\xf6\x82\xfd\x4f\xd9\xf5\x7e\xd0\x5b\x92\x07\xa0\x5e\x52\x31\x7d\xe3\x9e\xbc\x26\x04\x21\xf7\x31\x63\x29\xc1\xe2\x7b\x96\x4f\xc3\x54\x77\xc2\xe7\x17\x68\xc3\x0a\x8d\x59\x8b\x96\x1e\xf4\xbb\xb2\x98\xe7\x95\xa1\x73\x2c\x9f\xdb\xfc\x77\x9d\x2a\x1c\x39\xa5\x87\xf5\x45\xb6\x18\x80\x8f\x1a\x1d\x20\x45\x0c\x17\x4e\x17\xfc\xbc\xb9\xc1\xbf\xa8\x4e\xc0\xf4\xb9\x74\xaa\xe0\x4c\xf8\xf0\xfe\xf9\xfd\x2b\x18\x74\xb1\x69\xa4\xae\x8f\x09\xad\x17\xfc\x93\xb3\xa2\xac\x41\xe4\x23\x1d\x47\x88\xc9\x03\x68\xa9\xe5\x89\x1f\x51\x00\xb3\x79\xdc\x7b\x57\x16\x93\xac\xaa\x30\xb9\xea\x4d\xcb\x62\x4e\xe2\x64\x6d\x8b\xee\xf4\xb4\x89\xac\x45\xad\x69\xf1\x2c\x4b\xa6\xef\xf5\xfd\x54\x45\x74\xa5\xf5\x35\x36\xf2\x4f\xac\x4b\xb8\x1f\xa8\x41\xf7\x11\x4b\xc1\x65\x91\x1d\x86\xb5\xc1\xbc\xc5\xe2\x35\xe9\xdc\x47\xa4\x83\xdf\x30\xa1\xe4\xcf\x06\x55\x89\x60\xb4\xff\xe4\xe8\x22\x96\x3f\x57\x43\x35\x11\xa5\x24\x14\xb0\x8b\xcd\x7e\x3a\xca\xdf\x4e\x85\x2d\x0f\xc6\x1c\xce\x2d\x34\xce\x4f\xc8\x54\x5a\xa1\xa3\x19\x8e\x01\x07\x97\xb8\x85\xd1\x36\xda\xed\x8a\x30\xc0\xab\xce\x00\xc7\x48\xaa\xd4\x86\xca\x8e\x81\x96\xfe\xe7\x65\x15\x69\xcd\xf7\x76\xcb\x86\xe8\xb4\x9a\x5c\x64\xe9\x6a\x96\x71\xd1\x1f\xbb\x29\x6b\x93\x02\x8c\xc8\xff\x1e\xa5\x02\x9b\x84\x86\xd2\x0d\x32\xb0\xe5\x1f\xf3\xb9\x18\xa9\xd5\x62\x28\x1b\x7b\x2b\x18\x0e\x7a\xba\xd0\x3b\xa1\xa2\x4b\x67\x00\x7a\xb0\xbc\xda\x20\x6a\x41\x84\x74\x66\x77\x43\x5e\xf9\x44\x6e\x39\x82\xb4\xa4\x99\xb9\x0b\x43\x29\xca\x00\xc2\x26\x28\x8f\xe5\x1d\x68\xb9\x63\xe3\x33\xc0\x73\xc7\x09\xa2\x65\x0e\xb1\x74\x2b\x4c\xd3\x36\xc8\xc0\x01\x40\x3c\x06\x27\x5e\xc8\x5b\xb4\x22\xf2\x38\x44\xd2\xf7\x1e\x74\x69\x20\xb5\x98\x94\x89\xd9\xce\xd6\x65\x23\xd2\x04\x83\xca\xd0\x6f\x01\x96\x9f\xc0\x81\x25\xae\xf2\xca\xa4\xac\x3d\x3a\x89\x02\xd1\xb7\x57\xdb\x6a\x6d\x2b\x83\x35\xab\x90\xba\x98\x7a\x6d\xd3\xac\x4b\xa6\xe3\x5a\xc0\x30\x63\xe3\xca\xb9\xeb\xa6\x61\x7a\x31\xf4\x90\x06\xcb\xe1\xc9\x59\xf1\x25\x1b\xb0\xf5\xc1\x97\x8d\xe9\xea\xd9\xe4\xa1\xba\x98\x22\xbe\xde\x5e\x14\xab\x85\x8c\x0d\xa9\xa9\x9a\x97\x09\x1a\xe5\x8f\xe3\xc3\xd1\xc1\x41\xee\xb4\x67\x2b\x51\x13\x15\x63\xa9\x5c\xad\x7a\xcf\x6e\x1e\x35\xe1\x74\xa2\x56\xb8\x76\x10\x05\xb5\x7b\xee\x8c\x47\xc5\x0e\x43\xea\x67\x22\xb2\x7f\xa4\xf4\xb9\x43\x70\x8a\xb3\xd2\x52\x49\x14\xd3\x18\x9e\xe7\x98\x06\xa4\xe1\x10\xb5\x8a\xd7\x97\xf9\x6c\xf6\x1e\x25\x23\x96\x7b\x97\x36\x4a\xc1\x3e\x94\xa6\x98\x8f\x60\xb6\x55\xd0\x44\x70\x46\x1f\x9b\xbc\x45\x1b\xd5\xe0\x92\x61\xb7\x65\x54\x0e\x2c\xaf\xa5\x76\x58\xbc\xf5\x12\x33\xef\xcf\xd1\xe4\x22\x9f\xa5\xac\x45\xf8\x06\x76\x45\x1d\x8e\x82\xed\x4a\x9f\x2a\x38\x91\xe4\x14\x96\x21\x1a\x70\x8b\xb9\x75\x90\xfa\x5d\xfb\xfb\x85\xaf\x10\x8e\x97\xe4\x62\x8c\x89\xc5\x67\x33\xdd\x7f\x58\x70\xd0\xc4\x9f\x92\xea\xc7\x2c\x5b\x3c\x43\xa9\xd9\xc0\x1d\xba\x88\x7b\x6a\x27\x2f\xfc\xe1\x66\xfc\x3c\xa5\x2c\xfc\xf8\xfe\x87\x95\x07\xd9\x4f\xc4\x75\x76\x1c\x40\xcf\x7a\x97\x17\xf9\x2c\x13\xac\xb5\x60\xd9\xf2\xc5\x39\x4e\xf0\x71\x2f\xd8\xf7\x3a\xa3\x44\xe1\xb2\xe2\x40\x91\x69\x9c\x67\x55\x95\x9c\x67\xe1\x5a\x55\x8f\x36\x8b\x66\xae\x66\x49\xab\x1a\x08\x8a\x17\x1a\xf3\x98\x9c\x0d\x92\x0d\xe1\x9c\xaf\x5c\xd8\x34\xc6\x5b\x0f\x56\xa6\xf9\xec\x48\x15\x0a\x9b\x88\xce\xa5\xcd\xfb\xeb\x17\x5c\xf0\xb4\x7d\x77\x5c\xf2\x3a\xba\x83\x5c\xf4\x76\x3d\x5b\x2e\x7b\xa7\xd8\x88\xd9\x89\x30\x9b\xcc\xfc\x4b\x21\x99\xc7\x3d\xdb\x84\x05\x3d\x6d\xde\xdb\xbe\x50\x7d\xdb\x71\x67\xb0\x88\x17\xb4\x2b\x78\x94\x06\xcf\xb0\x32\xcb\x19\x5a\x0e\x49\x9d\x2f\xce\x35\x54\xb4\xb0\x1f\xca\x58\x11\x89\x3b\x0c\x23\x3a\x74\x84\xdd\x63\x36\x12\x7b\x2b\xd6\x72\x47\x27\xc6\x4a\xa4\x5d\x68\x39\x8d\xbd\xa1\x4b\x1b\x8f\xf7\xf0\x43\x10\x1c\x7b\x01\xf7\x83\x61\x70\xc7\xa8\x22\xaa\x6b\xb1\x42\x6a\xdf\xd7\xc9\xfd\x80\x82\x84\x8c\x5a\xa6\xdc\x1e\x2a\xc6\x6c\xc9\xa4\xa6\xf1\xb5\x76\xe7\x4a\xcd\x28\x1d\xfe\x1a\xf4\x2c\x6b\x41\xbc\x7c\x95\x56\x3e\x98\xcc\x67\x51\xf5\xf4\x48\xfe\xbb\x06\xd6\xfb\x10\x73\xe4\x02\x10\x37\x37\x16\x00\x17\xbb\x87\xec\x15\x8e\xf8\x7b\x3c\xcd\x0d\x3e\x2b\x3f\x5f\x14\x65\xf6\x22\xc9\x67\x2b\x74\xe6\xc6\xbc\x02\x81\x80\x6d\x88\xa2\xa4\xd0\x63\xe4\x96\x4f\x07\x46\x71\xa6\xc3\xe2\x93\xd0\x3c\x4d\x16\xdf\xd4\x12\x95\x1e\xba\x32\xef\x7d\x23\xe3\xc0\x7c\xd3\x3b\xcb\x26\xc9\xaa\xca\x7a\xd7\xc5\xaa\xec\x25\xcb\x65\xef\x22\xa9\x44\x89\x69\xbe\xc8\xab\x8b\x2c\x65\xb7\x7e\x71\xd2\xc0\x83\x7b\x5e\x57\xbd\x69\x5e\x56\x35\x0e\xe1\xb0\xf7\xb1\xd0\x2d\x2c\x64\x23\xc5\xa2\x97\x66\x55\x0d\x1b\x46\x4e\x5a\xd5\x4b\xc1\x9e\xb2\x97\xb0\x7a\x23\xd1\x78\x6f\x92\x2c\x7a\x82\x69\xeb\xfd\x1d\xfc\xbe\x0e\xc2\xbf\x8b\x1a\xc0\xd0\x46\xd3\x89\xbf\x93\xfb\x33\x69\xaf\x23\x4d\x71\xc0\x5e\xe6\x01\xf3\x7a\xf9\x40\x7b\xbb\xfc\x7b\xef\xa2\x28\x3e\x55\xc3\x00\x85\x72\xa0\x90\xfb\xd7\xa4\x42\x0a\xb8\x13\x8b\x9b\x1f\x1c\x6c\x66\x71\xe5\x23\x47\x0b\x93\x2b\x5f\x2b\xa4\x57\xf9\x7e\xdf\x4e\x91\xaf\x31\x1e\x60\xcc\xa2\x23\x92\x32\x71\xf9\xc4\x92\x8b\xb5\xbb\xa7\x43\x6d\x29\x4a\xaa\x0d\x85\x4d\x6e\x56\x36\xdc\x91\x49\x4d\x83\x70\x0b\xc5\x5f\xcc\x73\x9e\xd5\x74\xbf\xbf\x67\x2d\x54\xff\x0a\x7d\x53\xd4\x17\x62\x49\x60\x7f\x52\x98\x50\x67\x9d\x0e\x7b\x2f\xa7\xb0\x4c\xd2\x3c\x25\x48\x06\x18\x81\xe0\x08\xd9\x0e\x58\x48\x67\x59\x0f\x96\x75\xda\x3b\xbb\xee\x21\x8a\xa2\x09\x31\x18\x28\xdb\xd2\xcb\x94\x86\xb1\x97\x2f\x7a\x09\xbb\x93\x45\x50\x01\x14\xd2\xf8\xd4\x45\xef\x6c\x75\x76\x36\xcb\xc0\x8a\x4b\x6d\x74\xae\x17\x83\x44\x85\x14\x0e\x96\x4b\xdb\x10\xaf\xec\x36\x61\x33\xa2\xff\xc0\xe6\x37\xea\x30\x4c\x5c\x73\x26\xa0\xea\xd0\xbc\xc1\xc0\xef\x9d\x0a\x32\xd0\xd0\x20\xa0\xc2\x22\x23\xc8\x17\x26\xf6\x21\x2c\x0b\xa6\x33\x3c\x30\xb2\x23\xa3\x30\x5a\x51\x75\x00\xb0\x28\xd8\xaa\x59\x75\x02\xdd\xba\x6d\x5d\x43\x17\x02\x1a\x2a\xca\x71\xcf\x7a\x24\xfa\x61\xc3\x07\x0c\xbd\xef\xc0\x2d\x7d\x40\x7c\x0c\xf9\x20\x4f\x96\x6d\xa1\xb6\x3d\xda\x38\xca\x80\xaa\x94\xdc\x10\x84\x60\x7a\xaf\x72\xb7\x3d\xde\xc5\xa5\xf3\x00\x6d\xcf\x0f\x80\xb6\x31\xfe\xea\x54\x64\xa2\x46\xdd\x53\x54\xdd\x81\xf3\x27\x0e\x74\x3a\x86\x66\x20\xa2\x40\xa5\x88\x7c\xff\xd5\x2e\x4c\x3a\xa6\x3f\x8d\x3c\x80\xaf\xb2\xe4\x4b\x26\x01\xe4\xe3\x9e\x1c\x85\x2a\x1e\x9f\x8c\x4c\x75\x21\x44\x84\x7f\x90\xe9\xb8\x67\x78\xf1\x4f\x83\x24\x3b\xad\x66\xb1\xa9\x8f\x0d\x4a\xa6\x8e\x72\x10\x85\x1c\x34\x58\x49\x1e\x83\x2c\x62\x25\x98\xa4\x76\x94\x7f\x6f\x23\xaf\xc4\xb4\xfb\xfb\x6a\x64\x55\xe6\x38\x3f\xc1\x37\x45\xd0\x81\x6b\xcc\xf0\x59\x98\x16\x36\xe1\xc8\xa9\x13\x6e\x3e\x6a\x95\xc8\x7c\xd1\x13\x2b\x36\xa0\xc9\xa0\x34\x91\xde\xb0\x7a\xb5\x99\x4c\x01\x1a\x08\xd6\x17\x62\xd0\x15\x59\x02\x56\xbb\xca\xe0\x83\x82\xa5\x0d\x92\xa3\x28\x79\xe8\x46\xa3\x48\x8e\x3c\x82\xe9\x7c\x3a\x48\x8e\xc6\xf9\xc9\x5e\x1c\x27\x0f\xc7\xf9\x49\x97\x88\x44\x57\x78\xb4\xc9\xc0\x5e\x31\x3a\xb6\x85\x3d\x46\x2f\x03\x97\x7f\x9e\x20\x80\x51\x81\x7c\x20\x66\xb2\x97\x5d\xa4\x25\x70\x27\x1e\x70\x18\x6a\x18\x39\x26\xcf\x50\x70\x58\xdd\x6c\x18\xae\xcf\xca\x2c\xf9\xd4\x18\x55\x11\x3b\xd6\x88\xb6\xb8\x4c\x5c\x45\x5d\x23\x30\x70\x7f\xe1\x43\x82\xb9\x3f\xa9\x2f\x86\x3f\x17\xf9\x02\x3a\x25\xae\x5a\x5d\x81\xc0\xdf\xd3\x36\xb0\x2d\xb5\xd0\xc6\xc8\xb2\xcd\xf2\x44\x1f\x63\xb6\x5a\x1b\xe2\x94\xcd\xc5\xc5\x63\xa7\xf8\x65\x5a\x89\x73\x37\xc3\x28\xca\xad\xcb\x64\xf2\x29\x4b\x4f\x4d\x9b\x2f\xdb\xf2\x6a\x75\xd6\x99\xaf\x0e\xd3\x36\x00\x83\x12\xb4\x80\x88\x06\x4e\x97\x65\x71\xd5\xda\x0c\xf6\xa4\x1b\x46\x0c\xf6\x69\x77\x97\xb3\x64\x72\xd1\x5d\x89\xe0\x95\xbf\x64\x1b\xc6\xa4\x3d\x38\x7e\xb7\xa1\x5a\x9a\x4d\xb3\xb2\xe4\xb6\x68\x66\xfe\x2c\xf9\xc7\x35\xdc\xbc\x5b\xa3\xce\x79\xd1\xa2\x4c\x5c\x42\xe2\xbc\x6a\x87\x58\x5e\x77\xe5\x6b\x73\xbc\x36\x88\x69\x99\x65\xff\xe8\x02\x28\xc0\x60\xb3\x0b\xa2\x2d\x72\x9e\x09\xd5\x3a\x54\x94\x3f\x5f\xd5\x60\x36\xb8\x19\x65\x09\xd9\x39\x76\x78\x11\x27\x2e\xff\xb4\x5a\x2d\x05\x3d\xd8\xda\xa2\xd0\xcc\x5e\xe2\xdb\x6c\xcb\x3a\x23\xa0\xaa\x28\x6b\x2f\xd6\xd2\x72\x84\x76\x85\x63\x63\xe9\xc0\x95\x59\xba\x9a\x64\xbb\x03\x9e\xce\x93\x49\x59\xf8\x28\x91\x0a\x2c\xa1\x70\xd0\x16\xf6\x1d\xc0\xb4\x47\xb7\x84\xee\x00\xcb\xae\xea\x07\x65\xf5\xc5\x8d\xf0\x28\x32\x5a\x76\x98\xc8\x52\x2f\x3c\xff\xb6\xb8\xdc\xc9\xe2\x92\x25\xd8\x88\x1e\xd9\x98\x3e\xb4\x31\x7d\xe8\x8c\xa5\x8d\xe9\x43\x1b\xd3\x87\x36\xa6\x0f\x6d\x4c\x1f\xda\x98\x3e\xb4\x31\x7d\x68\x63\xfa\xd0\xc6\xf4\x91\x8d\xe9\x23\x1b\xd3\x47\xce\xb4\xdb\x98\x3e\xb2\x31\x7d\x64\x63\xfa\xc8\xc6\xf4\x91\x8d\xe9\x23\x1b\xd3\x47\x36\xa6\xdf\xda\x98\x7e\x6b\x63\xfa\xad\x8d\xe9\xb7\x8f\x3a\x6d\x65\xff\x63\x6b\x63\xd9\xbc\x7a\xfe\x79\x95\xcc\x6c\x4b\xd9\x21\xa5\xfb\x63\x41\x7a\xac\x35\x89\x7f\xb1\x4d\x66\x37\x46\x8c\xf4\x84\x64\x7c\xa3\x64\xb6\x1b\x22\x66\xb6\x59\x9d\xfe\xde\x05\xfd\x88\xbc\xce\x13\x41\xcf\x36\x19\xcf\x7e\x58\x9d\xb9\x70\x1e\x0b\xda\xa7\x4a\xbe\xb9\xc9\x76\xf6\x89\xe6\x81\x36\xc6\xd4\x84\xa6\xdf\x89\xa3\x63\xa3\x25\x2d\x76\xdd\x03\xeb\x99\x9f\xa7\x45\x99\x6d\x19\x40\xf3\x79\x32\xb9\x70\x07\x00\x2c\x69\x55\x96\x02\xf4\xb4\x2e\x01\x21\x8b\x66\x54\x30\x55\x9e\x3a\x3d\x93\xfa\xc1\xb2\xbb\x3e\xf2\xcc\x26\x4c\xfc\x07\x38\x08\x3c\xc6\xcb\x9e\x29\x7d\x46\xdc\x44\x6c\xd3\x36\x1b\xb0\x58\xbc\x2a\x12\x13\x4c\x50\xbc\x21\xa6\x4b\xdb\x6a\xf1\xfb\x4f\xe2\xda\xef\x02\xf2\x5c\x8d\xab\xdb\xf5\x87\x9e\xa9\x7f\xaa\x18\xb8\xd8\x26\xa8\x2e\x28\x72\x72\xb1\x4d\x68\xdb\xcd\xbc\x63\x9b\x04\xdb\xa0\x2f\x24\x6f\x17\xdb\xb4\x79\xa8\xb2\x10\xf0\xfd\xdb\xff\xfb\xfc\xcd\xe9\xf3\xf7\xef\xdf\xbe\xf7\xc0\xb2\x5c\x5a\xa6\x92\x25\x8c\x6d\x1a\xbf\x7d\xec\xd6\x87\x9e\x65\x20\x67\xf5\xb5\x60\xa9\x62\xfb\x74\xb0\xa1\x5f\x23\x1f\xd8\x36\x20\x9e\xc5\x40\x25\xdc\xc9\x7b\xe4\xd9\xe3\x1f\x81\x83\xc4\x0e\x7c\x40\xfe\x31\xb6\x4f\x9f\x6d\x4c\xe1\x1f\x79\x66\x9b\xb4\xfd\x60\x43\xb9\x9d\x7d\xe4\x99\xf6\x0f\xc4\x5e\x7a\xa0\x3d\x33\x0f\x6c\xde\x53\x9f\xfb\x01\x71\xde\x0d\x8d\x6c\x4d\xa4\x64\x8a\xd7\xc7\x01\x14\xf4\x82\xe1\x26\x02\x5e\xd4\xdf\xe4\xef\xc4\x36\x32\xf2\xd1\xb6\xde\x48\xf2\x37\x2a\x8a\xfa\xe1\xd0\x66\x7e\x35\x8f\xed\xb3\x7a\x58\xad\xe6\xe8\x58\xc1\x1e\x28\x91\x39\xcf\x17\x14\xdb\xfe\xca\x93\x99\x5c\x8d\xa4\x4a\xa4\x27\x73\x89\x6d\x3a\x0b\x01\x1a\x2d\x4a\xe5\x66\xe2\x59\x3e\x9d\x7a\x20\x30\x43\x36\xf0\xe3\xb5\xb7\x89\x1f\xaf\x25\x80\x7f\x40\x08\xcc\x18\x85\x69\x3e\xab\xad\xdd\x05\x70\x98\xce\x40\x7c\x6d\xca\x1c\x06\xd6\xde\xb2\x99\x0f\x45\x56\x8b\xfc\xb3\x0b\x28\x52\x65\x76\xe1\x99\x06\x48\x26\x5b\x57\x92\x23\xb9\x40\x2a\x8b\x2f\x51\x6f\x54\xe7\x47\x1e\xf2\x80\x87\x63\x5b\x81\x96\xe3\xdf\x03\x2a\x98\xb9\xa1\x15\x29\x5a\x7f\xba\xfb\xd1\x82\x07\x00\x5c\xef\x1f\xfe\xf2\x2e\xb6\xb9\x42\x8e\x04\xca\x7d\x25\xe3\x45\x7f\x55\xea\xf2\x1a\x7c\x9e\xd2\xb7\x64\xf3\x24\x5b\x87\xa9\xc0\xd8\x89\xff\xe8\x1b\x29\x9d\x3e\xb1\x28\x99\x9d\x4b\xfa\xa7\xca\xa3\x83\x48\xfe\xa0\x74\x93\x00\x19\x5f\x04\xa1\x8f\x1b\x7d\xba\x50\x0e\x3f\x5f\x8c\xe3\x04\xf3\x4d\xba\x6f\x7c\x11\x84\x4b\xeb\x9d\x14\x13\x12\x7b\xce\x3f\x28\xdf\x47\xd6\x3d\x69\x04\x2d\x09\x3a\xfd\xa5\x54\x97\x7c\x3b\x29\x04\xc9\x8e\x4a\xfd\x93\xf2\x4c\x22\x6d\xd2\x64\x36\x7d\x0e\x81\xf4\x13\x61\x2c\x61\x91\x61\x8b\xea\x22\x4c\x0b\xdd\xed\x20\xb3\xcf\xe7\xaa\x46\xbd\x46\xa9\x46\x99\x23\xc8\x6e\x2c\x48\x2f\x4b\x12\x14\x78\x0e\x63\xa1\x93\x92\xab\x58\x90\x59\x23\x09\x1c\x67\x1b\x75\x89\x59\xa9\x70\x1a\x74\x22\x51\x56\x49\x48\xcd\x2a\x7e\xbc\x8e\x91\x7c\x9a\xc9\xaa\x7b\x9c\x68\x32\x10\xa2\x9d\x44\x2a\x9d\x8c\x1f\xaf\x63\x45\x20\x9d\x4c\x55\xb7\x45\x16\x19\x20\x50\x47\x20\x86\x66\x62\xb1\x88\x91\x04\xb2\x64\x4d\x09\x35\xe1\xa3\xbd\x07\x9c\x71\x6c\x73\xc9\x6a\x8d\xc1\x2d\x80\x5d\x9e\xe4\x52\xe7\x77\x24\xfe\x21\xab\x95\xf7\x22\xf9\x43\x91\x00\x79\x0f\x52\xbf\x28\x47\xdf\xe4\xd4\x2f\xb9\x51\xf4\xce\x74\xb6\x24\xbb\x01\xe9\x9f\x06\xf2\x98\xc9\x7e\xcb\x92\x06\xfb\x68\x7c\x29\x5c\xd5\x35\x48\xff\x94\x38\xa9\x7b\x8f\xbe\xe6\xe8\x1c\x6c\x53\xdf\x6b\x64\x0f\xf5\xcd\x86\xfd\x96\x23\x96\xd5\xf1\x87\xac\xb6\xc8\x96\xa2\x58\x94\x4e\x77\x0e\xba\x62\xd0\xc6\xe4\x97\x0c\xe3\x4e\x61\x6c\x75\x75\x02\x59\xdf\xc6\x68\x31\x30\x3b\x81\xcd\x20\x41\x74\xe4\x21\xe9\xb2\x8f\x2a\x22\x12\xe2\xb0\x12\xff\x75\x3e\xa6\xb4\x3d\xa3\xe8\xd7\x8f\x8d\xae\xee\xfc\x6e\xe2\xbc\x12\xf0\xfb\x10\x01\xde\xd9\x19\x19\xc6\xf3\x70\xc4\x2b\x98\xdc\x75\xeb\x7b\xe4\x3b\xec\xdf\xbe\x7f\xf6\xfc\xfd\xe9\xb3\xe7\x2f\x5e\xbe\x01\x67\x1d\x44\x5f\x9f\xbf\xf9\x8b\x93\x75\x73\x33\x66\x46\xe7\x51\xb0\x58\xcd\x66\x41\xa4\xfc\xe2\x47\xd2\xb5\x7d\x14\x28\x89\xaa\x94\x90\xab\x37\x14\x34\x9e\x87\xf7\x25\x26\x5b\x9d\xcc\x92\x4a\x4c\x41\x9a\xd4\x59\x70\xd2\x36\xe1\xcc\x58\x01\xe6\x76\xf0\x25\x42\x77\xb7\x5f\xe2\x38\xd6\x8e\x2f\x0f\x1b\x39\x4a\x47\x32\xf6\xc9\x97\x50\x8d\xdc\x43\x99\x86\x6e\x6a\xf5\x50\xa1\xb1\x05\x94\x8a\x63\x8d\x67\xbf\xaf\x41\x86\x69\x56\x67\x93\x7a\xf0\x85\xfb\x46\xd2\x6a\x6d\x46\xf2\x90\x23\x29\xd5\x68\x1f\x6e\xac\xfa\xd2\x5f\xf5\xd1\xc1\xa5\xb7\xf2\xcb\xe8\x4b\xd8\x48\x23\xaa\xa5\x22\xd1\xce\xd4\x9d\xbe\x7e\xf2\xee\xdd\xcb\x37\x7f\xc4\x10\x9c\x08\x4a\x51\xb6\xca\x54\x3a\xe6\x72\x4a\x8d\xb6\xab\x34\xa6\xb8\x73\x79\x7a\x15\xcd\xb2\x05\xfa\xd5\x4c\xaf\xe8\x19\x1a\x1a\x50\x0f\xc6\xe9\x95\x7c\x8b\x4e\xaf\xc2\x35\xd5\x3f\x06\x98\x71\x9e\x5e\x9d\x9c\xc4\x79\x7a\x25\x63\xfc\xfb\x9b\xd5\xd3\x0b\x91\x68\x63\x59\x09\x24\xe9\x2d\xf2\xd0\xcd\x7d\x78\x22\x5d\x2a\x61\xd1\xef\x35\x9c\x1c\xe9\x83\xa3\xc6\x00\x79\xec\x82\xf4\x8e\x9a\xea\x32\xaf\x27\x17\x08\x16\xae\x27\x49\x95\xa9\x5d\x70\x0c\x5f\xb4\x13\x8e\xc5\xe2\xfc\xfe\xd2\xac\xfc\xcb\xe3\x4b\x56\x95\x5c\xb4\x23\x28\x47\x1b\xe7\x58\xca\x3f\xe3\x2f\xe0\x3c\x66\x96\x3d\x95\x13\x4e\x96\x2a\xf3\xe5\xf7\x87\x66\xb5\x22\xed\xf1\x61\x6b\xcd\xb8\x13\xa1\xe2\x2f\xaf\xb2\x85\xa8\x18\xa7\x44\xa4\x5c\x8a\x94\x4b\x9e\x32\x8b\x5f\x27\xf5\x85\xe0\x9f\x06\x02\x3c\x12\x10\xe4\xf9\x2b\x3e\x1c\x49\x25\x0b\x7c\xa0\x2f\xe3\x38\x3e\xec\xf7\xf3\xef\x67\xe1\xba\x8c\xd5\xba\x1f\xe7\x27\xd1\xe5\x38\x3f\x09\x47\xf9\xfe\x3e\x38\x7c\xd8\x63\xa1\x97\x7a\x25\x8c\xc5\xab\x6c\xf1\x3d\xd4\x6d\x0e\xd1\xab\x6c\xf1\x98\x27\x3b\xdd\x51\x9b\xe8\xd8\xd8\xc4\xde\xdd\x6a\xee\x50\xb6\x2b\xcd\x2a\x81\xf8\xe0\x00\xbd\x59\xcd\xe3\x2f\xc3\xf3\xac\xfe\x98\xcf\x33\xb2\xfa\xbf\x14\x89\x97\x2c\x51\xe0\xf9\x66\x35\xff\x5e\x64\x58\xe8\xbf\x59\xcd\x1f\xf3\x64\x8e\x3e\xd1\xb3\x63\x45\xad\x9a\xce\x33\xcc\xfb\x70\xd7\x71\xa6\x6d\xfd\x98\xb7\xc1\x5d\x2a\x39\x6a\x9d\x25\xf5\xb4\x28\xe7\x56\x72\x21\x7d\xe8\xb6\x38\x8d\xfd\x25\x9e\xca\xee\x7c\xae\x76\x08\x90\x1e\xde\x5a\x7e\xf4\xb0\x5b\x7c\xd4\xe5\x32\xd3\xf7\x24\x02\x7e\x54\x1c\x27\xa2\x98\x8c\x72\x37\xed\xf1\xd8\xf1\x25\xca\xf2\xba\xbc\x9a\x7a\x84\xa8\xc9\xa9\xc7\x37\x64\x71\x4a\xe8\xb0\xe6\x37\xf9\x8b\x54\x47\xb8\xf7\x0a\x29\xa3\xdc\x2d\xd1\x31\x87\x7f\xdc\xb8\x31\x09\xf3\xb7\x05\xda\x62\xa2\x7a\xed\x7c\x02\x67\xec\xc5\x6a\x31\x71\xfd\x57\x4b\x87\xc5\xca\x94\x79\x6f\xb2\x1c\x9e\x5e\x24\xd5\x4b\x22\x2c\xaf\xb3\x3a\xc1\x46\x0c\x50\x50\xb3\x82\x10\x85\x02\x5e\x0e\x5a\xfd\x53\x76\xcd\x02\x14\xf2\xe4\x70\xcd\x86\x1d\x2b\xe4\xd9\x5c\x7d\x6d\xb2\x04\x8b\x64\xe8\xee\xdb\x85\x54\x85\x72\x71\x68\xc2\x26\x42\x95\x34\x49\x4a\x55\x47\xfd\x83\xd3\x34\x03\x35\x3c\x86\x67\xb2\xc6\x3b\x0d\x68\xb5\x08\xb1\xe3\xe4\x1c\x0f\x5a\xe6\x42\x41\x86\xa3\x0d\x55\x0d\xc9\xf9\x20\xba\x29\x70\x5d\xb5\xc9\x18\x46\x61\xb3\xb1\x26\xf0\x14\x66\xd5\x03\x14\x32\x5c\xc3\x9f\xe1\x64\x96\x25\xe5\x40\xf5\x14\x12\x37\x57\x9b\xe6\x29\xaa\x49\xea\x5a\x8b\xb3\x9f\xa3\x4f\x19\x2d\x12\x52\xd3\xd5\x6b\xd8\x10\x98\x0c\x8c\x50\xc0\x49\x79\x0e\x4e\x44\xd4\x1c\xd0\xd9\xfa\xf8\x88\xbc\x98\xd0\x8e\x52\x7e\x4c\x10\x2a\x3a\x8c\x0e\x8e\x54\x2c\x94\x36\xa0\x83\xa3\x70\x7c\x78\xc2\x4c\xb3\x08\x7e\x4f\xc7\x11\x6e\xd3\xcb\x86\x31\xe8\x49\x9c\x7b\x72\x14\x7a\x69\x36\x99\x25\x65\x96\xf6\x2e\xf3\xfa\xa2\x58\xd5\xbd\x44\xc5\xa0\xe8\x81\x3b\x56\x54\xda\x9c\x2c\x41\xbb\xd5\xbf\x79\x79\x84\x59\x34\x7f\x98\x60\x94\x23\xb6\x6b\x27\x4b\x54\x31\x97\x2b\x77\xb2\xe4\xee\xcc\x3b\x05\x52\x1c\x6e\x07\xb1\xd4\xe6\xc3\xd5\x39\x20\x37\xde\x18\x6f\xe7\x08\xdd\x77\xbe\x76\xba\x59\x07\xa5\x20\xa7\xc4\xd5\x32\x59\xa4\xa7\xad\x1e\xd4\x5b\x8e\xe6\x96\xe3\xbf\xe5\x7c\xdf\xd6\x89\x7a\xb7\xbe\x9f\x57\xc3\xac\xc5\x79\xbb\x5f\x1f\xee\xdf\x2a\x37\x52\xe5\xe6\xce\xdc\x4d\x76\x6a\xbb\x26\x7f\xd8\xe1\x9a\xfc\x11\x73\x4d\x7e\xbe\xca\xd3\x17\x16\x8f\x20\xb8\x0e\x4a\x27\x17\xe2\x75\xe2\x83\x11\xe9\x5d\xbc\x86\x47\x57\x43\x2e\x7f\xad\xb6\xee\x78\x3a\x77\x41\x8c\x92\xcf\x14\x21\x6f\x2b\xa8\x20\x70\x68\x60\x4b\xe9\xa0\x9d\x9b\x34\x3f\xda\x78\xac\xef\x3c\x3c\x96\xdc\x8e\x95\x3d\x3a\x02\x98\x67\x12\x0b\xca\x23\x54\x38\xf0\x66\xb6\xc4\xe5\x47\xb0\x90\xea\xc2\xc8\x84\x60\x2d\x6d\x28\xea\x03\x52\x02\xa6\x56\x96\xf7\x0f\xf0\xfa\xe4\x61\x76\xc1\xa9\x83\x3d\x0e\x02\x5a\x66\xb4\xf1\xb8\x62\x63\x71\x26\xb7\xd3\xd1\xbc\x67\xed\xb7\xaa\xea\x78\x9d\xc9\xfb\xb5\x2b\x7c\x1a\x30\xb6\x4f\x7c\x9f\xea\x8b\xa3\x7c\xe2\x59\xf2\x79\xe5\xb6\xf7\x2d\x68\x4c\x69\xcd\x18\x18\x23\x51\x99\x1c\x2c\xb5\x3f\x21\xe1\x8f\x3c\xe7\x9c\xe7\xbc\x87\x49\xd4\x99\x38\xa9\xf7\xcb\xd6\xc3\x2e\x42\x39\x36\x4c\xf7\xbb\xa4\xae\xb3\x72\x11\x3f\xf8\x7f\x83\xe1\x7f\x86\x7f\x1b\xfe\x97\xc8\xfc\xdb\x50\x7c\x3c\x20\x17\x7a\xab\xb3\x59\xf6\xdc\x57\x64\x30\xfc\x4f\x2a\x10\xae\x1f\x46\xcd\x03\xad\x4e\xf0\x23\x4c\x63\xad\x20\xff\x36\xfc\xdb\xf8\x6f\x27\xff\xeb\xc1\x88\xc5\xb3\xa9\x25\xcf\x06\x4c\xfd\xa7\xec\x3a\x8e\xe3\xe0\xbf\x04\xaf\xab\x9d\x74\x14\x67\x3f\x2b\x8f\x49\xa7\xbc\x88\xb6\xfe\x7a\x26\x59\x74\x98\x80\x4a\xf1\xef\xca\xf0\x23\x9a\x2c\xa3\x9c\x5d\x15\xa4\x4f\x5d\x83\x53\x8f\xaa\xd5\x79\x52\xa2\x5f\x1e\xf4\x1c\xa9\x0c\x69\xd4\x2f\xbc\xb8\x4c\x96\xf1\x64\x89\x3f\x79\xad\x31\xff\xc0\x6c\xe3\xca\xf1\xe3\xf5\x1f\x57\x79\xaa\x5c\xd2\xd7\x6c\x9d\xdb\x79\x15\x44\xbb\x4c\x95\x71\x24\x36\x8b\x41\x65\x5e\xd6\xd9\x5c\xfb\xbf\x67\x89\x4f\x8b\xd5\xa2\x8e\x0f\xf5\xb8\x88\x44\x39\x63\x72\x50\xc8\xaa\x48\xdf\x7a\xa0\xfd\x28\x5f\xa4\xd9\x55\xc4\x51\xa2\x41\x30\xe1\x62\xf3\x53\x8e\x41\x9a\x5d\xc5\xf0\x3f\x25\xd4\xd9\xdc\x82\x1c\x22\xab\xfb\xa4\x1e\x00\x5c\xe8\x0e\x41\xcc\x3f\x30\xfb\xcc\x24\x78\x8b\xd5\x6c\x86\x19\x85\x9b\x44\x01\x93\xe4\x88\x35\x2d\x6b\x82\xdd\x96\xd6\xf2\x5e\xc2\xfc\x2d\x67\x97\x18\x71\x7b\xed\x4c\xee\x50\x42\x2b\xa0\x08\xcc\x3d\x9b\xe8\xdc\xa9\xc6\x74\xa6\x65\xd4\x22\x81\x07\xe0\xeb\xb9\x5e\x2d\x55\x68\xa5\x63\xf7\x42\x8a\x53\x63\xde\x4f\xdb\x96\xd5\x98\x0e\x78\xab\x74\x78\x12\x73\xe0\x91\x35\x2b\x49\x8a\xe3\x6d\x5e\x79\xd7\xda\x52\xed\x38\x30\x4b\xe8\x43\x3c\x88\xd4\x15\xcc\x06\x52\x07\x76\x40\x7e\x0c\x70\xd3\x0c\x4f\x73\xb6\x20\x05\xea\x63\x8e\xdb\x09\x75\x0e\x86\xc5\x5e\xb6\x95\x71\x4d\x8f\xb6\xad\xb1\x69\x22\x15\xcf\x6c\xc7\x81\x06\x52\x6f\xd5\x1e\x6f\xd9\xee\xcd\xcd\xf8\x64\xc4\x7d\x3d\xef\x32\x61\xb4\x35\x08\xed\x0d\x03\x61\xe3\x11\xda\x33\x8c\x07\xc8\x57\x9e\xe4\x26\x22\x82\x65\xb4\x53\xb9\x96\x99\xd1\x59\xbe\x48\xf5\x6b\xc6\x2c\xfd\xa0\x08\x9d\x49\xf7\x6c\x32\x08\xee\x30\x4d\x3b\x3f\x59\x95\x0d\xca\x6b\xa5\x4d\xe6\x0c\xa2\x67\x0d\x78\x47\x93\x42\x2f\x1a\x24\x50\xba\xb8\x36\x37\xb6\x3c\x51\x8c\x45\x14\x91\x8f\x4f\x51\xc4\x5a\x6c\x01\x66\x05\x61\x54\x98\x94\xb9\xd2\x97\xf6\x01\x99\xae\x49\x23\xcd\x2a\xab\xc1\x10\x1f\x1d\xd3\x43\x24\x58\x03\x7d\xbb\x26\xf0\x86\x07\xe2\x2f\xab\x71\xed\xf1\xb5\xce\xe6\x48\xfb\x69\x46\xcc\x1a\x68\xbd\x03\x6b\xb1\xdb\x41\xd2\x72\xc0\x59\xdb\x73\x64\x63\x3c\x86\xe2\x27\xb1\x95\xae\xfa\x61\x4f\x50\xe4\x88\x08\xa5\x10\xcf\xe4\x83\xb1\xa3\x0c\x06\x7d\xd2\x59\xcd\x58\x07\x4e\x38\xe2\xc2\xc0\xed\x6a\x90\xdf\x4a\xe8\xa7\xfe\xb4\xed\xe7\x3b\x2c\x45\x75\x32\x62\xa0\x0e\xe3\x30\xdd\x6a\x02\x22\xb3\xc3\xaa\x37\xd0\x3a\xbc\x3e\x9a\x1c\x81\xf6\xa0\xa7\x12\x49\x54\xc4\x84\x70\xe6\x8c\x46\xc5\x74\x5a\x65\x75\x24\x7a\x42\xfe\x9d\x21\xb8\x26\x7d\xc5\xb1\xa1\x69\x32\x7c\xf6\xfc\xd5\xf3\x8f\xcf\x55\x4b\x72\xde\x9d\x5a\xdb\xda\x0b\xd7\xf6\x8c\x68\xc6\x00\x68\x88\xc5\x53\x74\xaf\x00\xb5\x3e\x1d\x38\xf9\x3d\x02\x5e\xc7\xce\x85\xe1\xdb\x71\xcd\xfa\xae\x6f\xee\xa2\xf3\x2f\x80\xc8\x5e\xb8\xe6\xdd\x73\xeb\x6a\xf4\xea\xc5\x7f\x51\xe7\xd6\x6f\x3d\x48\x7d\xcc\xa4\x8f\xba\x08\x42\x77\x37\x1e\x75\xd4\x41\xa0\x9c\xa5\xa1\xc2\xf5\x9a\xe9\x6d\xbd\x3c\x6e\x5f\x63\x1b\xb6\xa2\x4d\xd6\x6c\x46\xb6\x4b\x62\xdd\x52\xef\x90\xaf\x22\x7d\x3e\xf3\x1a\x1c\x5a\x64\x0d\x9f\xdd\x8b\xc6\x41\xb3\xb8\x2f\x04\x15\x6f\x70\x27\xfc\x28\x04\x89\x75\xe4\xb5\xd0\x4b\xe7\xec\x5b\x6f\x47\x02\x61\x11\x72\x12\xe4\xd0\x1a\x8c\x14\x34\xf9\xf4\x24\x4d\xdb\x68\x35\x2c\xcc\x45\x76\x09\x57\x33\x5c\x1e\xb7\xa0\xc6\xe8\xf2\xcb\xb8\x81\x19\x84\x36\xc5\xab\xdf\xc0\x6a\xae\x21\xfc\x50\x74\xd0\x89\x22\x92\x85\x14\x2e\x8a\xf7\x88\xa6\xf6\x4e\xac\xb1\xc5\xa6\x38\xc2\x46\xe3\x74\xa5\x1f\x9f\x34\x11\xfa\x6e\x01\xa5\x8d\xac\x32\xbc\xcb\xa9\xda\xa2\x44\x13\x11\xc6\x52\x25\x26\x27\x35\xba\xd3\xb9\xa4\x7f\x91\xfe\xc8\x0e\xc7\x14\x07\x45\x45\x16\xd0\xb1\x68\x2d\xfe\xfe\xf9\xc7\x27\x2f\xdf\xf4\xfb\x36\x52\xda\x27\x3c\xfe\xe8\xf7\x11\xcb\x98\xa9\x62\x6c\x71\x26\x4a\x5e\x94\x18\xbb\x89\x3c\x95\xf4\x3d\x7d\x1f\xeb\x45\x22\xdf\xc6\xfc\x6f\xa0\xef\x7c\x3e\xa3\x24\x4d\xd5\xba\x92\x37\x3e\xc5\x92\x1b\x4e\x73\xa8\x98\x58\x19\xb1\x29\x66\x19\xb2\x2c\x94\x88\xa1\xb3\x14\x29\x95\x16\x17\xa6\xb8\xe5\xd6\x34\x32\x48\xf2\x4f\x19\x2d\xe6\xb6\x7b\x17\x49\xf2\xee\x72\xbd\xb3\xd6\x62\x1b\x7b\x8f\xb1\x0d\xa4\x83\xdd\x14\x57\x87\xfa\x86\x4f\xda\x1f\x58\x22\x3a\xb4\x8b\xe0\xbe\x46\xe1\x8e\x4a\x65\x89\x03\xab\x76\x59\x91\xb1\xdf\x54\x7f\x81\xb5\x43\x38\x90\x22\xe2\x4f\x7b\x2d\x39\x8c\x39\xa3\x0d\xd8\xb4\x49\x5e\x6c\x14\xbc\xd8\x33\x07\xc6\x26\x7f\x52\x99\x9c\x90\x73\x29\xd0\x88\x9e\xd8\xec\xdc\x76\x5c\x93\x8f\x55\x37\xab\xdd\x95\x81\xda\x5c\xa3\xe6\xa5\xa6\x45\x39\xd0\x39\xb1\x77\x6c\x0e\x8e\x46\x1a\x04\x9d\xf9\xea\xef\x70\xad\x26\x2d\xb6\x46\x7a\x5f\x43\x09\xba\xac\xe0\x1e\xc7\xd2\xf7\x0a\xfa\x52\xe9\x16\xc9\xc9\x52\x61\x3b\xd3\x6a\xcd\x18\x5e\x6b\x46\x7a\x87\xc2\x39\xfa\x54\x7d\x3a\x24\xc3\x5c\x7a\xee\xfd\xd9\x90\xc4\xd2\x3e\x6c\x5b\x46\x52\x4c\x84\x92\x34\x46\x35\xb4\x0e\x86\xff\x72\x0e\x39\x5a\x04\x87\x58\xe9\x3e\x78\xd0\xd2\x32\x61\x71\xce\xb6\x48\x40\xbe\x0e\xa1\x04\x48\x1f\x99\x54\x19\x5f\x87\x2a\x76\xc8\x23\x18\xf2\x77\x22\xa0\x5f\x8d\x78\xda\x08\xb2\xb9\x6d\x13\x29\x58\x9b\x02\x1d\x08\xb5\xd3\x33\xdc\x75\xac\x1d\x4b\x98\x62\xec\xda\xa9\xb3\x8f\x1c\xea\x66\xdf\x1d\x0d\x22\x72\x0b\xf9\x4b\x3b\x7d\xd8\x5a\x28\xf3\xaf\x2b\x6c\xd9\x8d\x1c\x6d\x1a\xaa\xcd\xf4\x89\x2f\x37\x93\x28\xa9\x3d\xfa\x75\x49\x12\x91\x61\x3d\xb3\x4f\xd2\xb4\xfb\x64\xf6\xdc\x6e\xfc\x57\xcb\x63\xdf\x25\x10\x19\x71\xe7\xaa\xb6\x76\x08\x51\x71\xf6\x33\x7a\x17\x74\x5e\xae\x90\xd2\xc8\x27\x36\x27\x23\x46\xad\xb0\x63\x6f\x43\xc7\xd6\x77\x54\x9c\xfd\x7c\x2c\xd0\x5b\x96\xd9\x97\xbc\x58\x55\x30\x8a\xd5\xf1\xba\x69\x9a\xfd\x7d\xef\xfb\x98\xfb\x94\x86\xed\x0e\xcd\x2a\xc6\xd4\xe1\x93\x98\x3d\x39\xa2\x3e\x5f\xe4\xbd\xe9\xee\x34\x5c\xf9\x74\x70\x70\xe0\x7f\xbe\x03\x4e\x1f\xf5\xff\x66\xab\xea\x82\xc2\x55\x43\x0c\x3c\x9e\x60\x07\xbf\x33\xde\x06\x9d\x2e\x0a\x7c\xa2\x09\x5b\x56\xa0\xf5\x4f\xe1\x8c\x38\x60\xb8\x9e\xc4\xc6\xd8\xc8\x08\x44\x93\x61\xab\x5c\x8d\x45\x31\x81\x86\x8d\xfb\x9c\xa7\xa0\x71\xb1\xf3\xd5\x6b\x1e\x61\xed\x7b\x7a\x82\x1a\x68\x50\xc7\xcf\x9e\x9a\xf2\x5d\xb6\x32\xef\x35\x5d\xc3\xa2\x89\xb5\x28\xec\x4d\xde\x7e\x7d\xd9\x75\xd7\x53\x17\xb6\xdc\xf6\xdd\x68\xdc\x9a\xf4\xec\x86\x44\xe3\x7b\x93\xe6\x3e\xc2\xbb\xce\x69\x29\xbc\x78\x0b\xd7\x50\x72\x10\x98\x66\x57\xda\x4c\xa2\x87\x16\x0d\xc9\xd5\xe0\x90\x0a\xed\xe3\x75\x56\x85\x5e\xc2\x02\x92\xcd\xa5\x52\x90\xc8\xbd\xed\xf6\x94\x65\x04\xf9\x17\x35\x9b\xa6\x3b\x32\x73\x25\xeb\xbd\x62\xe5\xad\x17\x2b\xa7\x19\x83\xdb\xa3\x36\xa9\x11\xd5\xc6\x26\x3e\x19\x5a\x33\x96\xa9\xfc\x90\xeb\x14\xab\xb7\x96\x27\xd2\x0d\x54\xc4\x44\xb0\x1d\xde\xeb\x41\x66\x0d\x9f\xbc\xe1\x98\x7f\x98\xd9\x2a\xcb\x20\xa9\x48\xc5\xf8\x07\xc4\xcf\xf3\x21\x6a\x26\xc6\xe6\x27\x9b\x11\x25\xf8\xb2\xc6\xca\x50\xef\x30\x46\x6b\x0e\x4a\x1c\xbb\x3c\x7e\xcd\x8d\x27\xfe\xce\xcd\x04\xb5\x3b\x47\xf6\x36\xd7\x1f\x77\x5a\x27\x4b\xeb\x4e\x21\xbd\x55\x62\x23\xee\x51\xcf\x5c\xb0\x43\x04\x66\xab\xe7\x74\x18\x68\xc5\x95\xe5\xf0\x54\x7d\x0d\xb0\x56\x20\xe7\x5b\xaa\xcf\x0b\x78\xa8\x24\xef\x86\x1c\x59\xe3\xb7\x64\x6a\xdf\x03\x6b\xbc\x42\x0a\xb0\xb3\x6d\xdd\x0d\xe2\x4b\x0a\xcb\x52\x33\x3d\xff\x47\x06\x2a\xcb\x6e\x72\xc7\x4c\xad\x65\xc5\xc7\xd6\xb8\x1d\xf3\x8f\xc6\x1e\x7c\xb6\x16\x97\x49\x29\x9a\x99\x5d\xbf\x97\xba\xff\xc4\xed\x58\xda\x03\xa0\x55\xed\x68\x41\x0d\xeb\xac\xaa\x4d\x83\x03\xcb\xa5\x2b\x18\x34\x81\xb2\xbc\xe4\x3b\x0c\xe8\x11\xd7\xbf\xc7\x05\x23\xed\xa6\x40\x6f\x45\x23\xea\x37\x01\x30\x26\xdc\xab\x04\xc5\x15\xff\x59\xec\x65\x71\x53\xa1\xbf\x5b\x11\x09\x50\x60\x8b\x49\xd1\x54\xb6\x14\x62\xf2\xc8\xa3\x58\x54\x31\xd5\x27\x1a\x76\x95\x62\xd8\x22\xf0\x8f\x66\x73\x27\xb9\xbe\x8f\x4f\x51\x47\x8f\xb7\x54\xcc\x1b\x68\xfc\x23\xa7\xa7\x68\x47\x26\xe0\xf7\xe2\x58\x59\xd7\x6a\x8b\x35\xc0\x8a\x9f\x3e\x4e\x07\x1a\x50\x49\x68\xd1\x3b\x8a\xc8\x35\xb3\x12\xb3\xc0\x42\x92\xb9\x71\xbc\x25\x92\x5c\x2e\xed\xd6\xe8\xea\xe3\x0e\xf8\x34\x7b\xea\x6b\x4c\x24\x58\xbf\x99\xce\x62\x37\x4a\x38\x28\x52\x2d\xb2\x13\x36\x52\x5a\x58\xdd\xf8\xeb\x47\xa6\x4d\xe8\x37\x8d\x61\x8f\xb0\x9b\x43\x8b\x0d\x3b\xca\xb4\x24\x91\xc6\x50\xa8\xa5\x46\x86\x21\xf4\x97\x62\xe8\x19\xc2\x17\xa6\xc0\xe6\x88\x4c\xd4\xfa\x3f\x95\x27\xe3\xcb\x36\x88\x32\x4b\xd2\xb7\x8b\xd9\xb5\x0c\xd4\x07\x23\x9b\x9c\xcd\xb2\x81\xd2\x1d\x61\x96\x4a\x71\x8b\x5d\x95\x0a\x1a\x0c\xb4\x53\x15\xb1\xa8\x31\x29\x24\x53\x66\x5b\x5d\xb6\xe0\x09\x8f\x22\xd3\x02\x6b\xdb\x03\x20\x6a\x3d\xcf\x46\x70\xca\x30\x82\x6f\x1f\x87\x78\x2e\xa5\x2d\xba\x80\x5e\xa5\xa5\x81\xe9\xa2\x7c\x37\xeb\x31\x71\xe3\xf5\x1f\x11\xb5\x6d\x4b\x16\x1a\xc2\xbe\x16\x1d\x23\x4b\x9d\x48\x2e\x04\x53\xb9\x31\xf6\x75\xd2\x7d\xb3\xb3\x9a\x88\x63\x7f\x6d\xd0\x09\xd1\xe1\xb6\x55\x67\x2b\xed\x91\x9e\xdb\xf6\x45\x36\x4c\xca\x16\xea\x7f\x5b\x69\xfe\x29\x26\xa3\x7b\x68\x6c\x16\x99\x71\xab\xf6\xc0\x74\xe2\xed\xe8\x19\xb6\x54\x63\x4e\x69\xe3\x4c\xcc\x86\x66\x4c\xa5\xd1\x4e\x15\xc6\xa6\x31\x95\x90\x46\xbf\xb2\xe5\xec\x2e\x4a\x10\x26\xe2\x15\x5c\xef\xe9\xdd\xb8\x7e\xd5\x67\x9f\x8d\xa9\x45\xef\x64\x87\xda\x4c\x37\x47\xca\xee\x6d\x23\x8d\xe2\x8a\xbd\x2d\x6c\x89\xcf\x50\xb3\xcb\x44\x53\x1d\x3c\x64\x7e\xf0\x54\xc6\x53\x94\xd6\x61\xc4\xa3\xa9\x60\x96\x2c\x75\x23\x0a\x8c\x8c\xc6\x66\x04\xd3\x3d\x53\x9c\x40\x9a\x3b\x74\x94\xf1\x73\x6d\x64\x02\xc6\x6b\x26\xff\x38\x96\x6c\x39\x4b\xbb\xb9\xb1\x3a\x12\xa9\xcb\x95\x02\x57\x29\x0e\xb0\x0e\x76\x60\xb4\xda\xb4\xd9\x1d\xb3\x9e\x5a\x17\x9d\xd8\x79\x27\xb7\x97\x85\x68\x67\x6f\xcf\xcf\xbc\x8a\x1a\xc6\xbc\xc0\xc9\x36\x28\xe4\x3b\xb4\xaf\x6c\x41\x00\xb8\x1d\x0b\x3a\x3f\xfd\x48\xa1\xeb\x10\xb8\x06\x77\x81\x61\xf8\x93\x5b\x5e\x15\x1c\xde\x76\x10\x76\x1f\xb8\xd0\x5a\x9b\xb1\x06\xb2\x3a\xfc\xb2\xaa\xae\x70\x7e\x73\x0d\xfb\x92\x46\xeb\x43\x24\x6f\x31\x25\x6d\x06\xce\xda\x4e\x97\xaf\x75\x13\xdc\x1b\x4c\xb6\x15\xdc\x0c\x28\xdb\x0e\xd7\x6c\x81\xb5\xcf\x98\xfa\x8b\x41\x06\x3c\x93\xb2\xcd\x68\x98\x87\x69\xdc\xf2\xa0\xe9\x51\x4c\x95\x51\xa3\xdb\x8f\x63\x59\x92\x5e\xb3\xb6\x81\x04\x05\x8b\xad\xa1\x31\xac\x8b\x8d\xd7\x16\xbd\x06\xcb\x73\x87\xa9\x6e\xef\x3b\x8b\xf0\xbc\x05\x5a\x72\x64\x36\x33\x45\xb7\x18\xa1\xed\x47\x27\x1e\x9f\x6c\xb3\xb2\x94\x54\xcf\x7e\x58\xc0\x1b\x4d\xd4\x61\x07\x1f\xaa\x7d\x09\x31\x52\xc5\x26\xff\x90\xd5\xd1\x3c\xa9\x27\x17\xd1\xc6\x05\xa4\xb8\x12\xd1\x42\x07\x23\xd2\x6a\x84\xe6\x15\xaa\xb4\x04\x3a\xcb\xaa\x3a\x4b\x7b\x60\xaf\xd6\xd3\x46\xd9\xbd\x45\x51\xf7\x28\xe6\x43\x96\x1e\xf7\x82\x7d\x93\x8f\x92\x12\x67\xe8\x51\xec\x31\x9d\x1b\x66\x57\xd9\xc4\x46\xc1\xe9\x79\x0c\xe5\xc7\x47\x5e\xe5\x23\x69\x27\x87\x30\x0f\x4f\x22\xe2\x84\xbc\xbb\xd2\xd9\x83\x93\xa5\xbd\x85\xb7\xd8\xb9\xcd\xc8\xb6\xa5\xb5\x2b\x26\xa4\x3c\xb8\x84\x23\x3e\xe7\xe2\xdc\xf6\x6c\x17\xa4\x7b\xed\x80\xc8\xa4\x2a\x36\x6b\x8b\xd5\xc9\x3d\x66\x18\xf5\xd6\x05\x6a\x28\x84\x61\xc3\xb5\x8c\xf8\xa2\xff\xd7\xf0\xf9\x80\x1b\xf5\x76\x4e\x1f\x30\x9a\x1b\x27\xfe\x41\xae\x80\x5a\x37\xc5\x4e\x2d\x52\xe5\x28\xe9\x32\xfd\x4c\x6c\x90\x8f\xdc\xc1\xd1\x44\xa7\x97\xd2\x9d\x5d\x46\xa8\xb8\x27\x1b\x3d\x47\xcc\xb3\xf2\xfc\x9f\xeb\x4d\x62\x83\x83\x27\xc7\x11\x43\x8b\x17\x89\xaf\x16\x4b\x66\x87\x68\x4c\xad\x81\xa3\x36\x85\xbf\xfa\xb7\x1b\x89\x7b\x73\x23\x01\x0b\xd8\x76\x23\x61\x03\xd9\x9e\x26\x1e\x75\x78\x9a\xf8\x96\x79\x9a\xf0\xd9\xc1\xff\xd6\xb2\x83\xf7\x79\xa3\xf8\xad\xe5\x8d\x62\x7b\xc7\x56\x5d\x9e\x04\x3c\x9e\x1f\x6c\x83\x7f\x8f\xd3\xef\x36\xe7\x10\x7f\xf0\x38\x87\x68\x77\x92\x0f\x1e\x0f\x5c\x27\xf9\x1d\x2e\xca\xc4\x22\xf1\xf9\x28\x6b\x8d\xe8\xe1\x99\x37\x6f\x98\x12\x9f\xe3\x03\x27\x7c\x8b\xcf\xf3\x81\x2f\x7e\x8b\xcf\xfb\x81\xd7\x0b\xc1\x36\x1e\x07\x3e\x64\x49\x29\x7d\xe7\xaa\x13\xba\x5a\xcd\x2d\x4e\xcf\x70\x92\xa5\x8e\x6e\x43\xfa\xb7\xe6\x27\xdc\xf1\x21\x13\x23\x68\x07\x53\x93\xc9\x6a\xbe\x9a\x25\x52\x1e\xe2\xa8\x55\xf1\x0b\xb9\x6a\xd4\x2e\xb5\x2f\x4a\x35\x11\x97\x6b\xdc\x73\x0b\x07\xd0\x42\x13\x1a\xc7\x9d\xf4\x8c\xad\x46\x69\x9e\x5c\xdd\x75\x94\x0e\x5e\x2e\xa6\x22\xe1\xfa\xfe\x46\x4b\x29\x68\x78\x8b\x87\xf7\x33\x6e\xa4\x42\xf9\xbd\x5d\xac\x75\x44\x1b\x7b\x34\xa5\x07\x71\x3d\x9a\xb9\x7d\xbb\xd8\x79\x34\xbf\xd6\x60\xe6\x2d\xc5\xef\x77\x30\x1f\xdf\x61\x30\xc9\x43\x3b\x5b\x9a\x4b\x4b\x34\x6f\xc4\xe0\x95\x7c\xf2\xda\x37\x50\x5a\x33\xa2\x15\x63\xe9\x2b\x37\x4b\x63\x37\xc8\x2b\x0e\xcd\x08\xbd\xc8\xe5\x8b\x2a\x2b\xeb\x27\xf5\x40\xd7\x45\x0a\x60\x58\xde\xf2\x2f\xd7\x32\x9e\x5b\xa0\x94\x70\xb3\x7a\x4f\x73\x47\x56\x4b\x8d\xf1\xe9\x5f\x5d\x92\x47\xb6\x16\x2e\xfa\xb9\xe7\x63\xfd\xe3\xb5\x59\xd0\x50\xc4\xe5\xaa\x1f\xe6\x5d\x51\x4d\xf0\x79\x56\x3b\xba\xb5\xa1\xc2\xd0\x9e\xcc\xfd\x00\x5d\xbb\x0c\x83\x7d\xae\x8b\xab\xa6\xd8\x46\x57\xf9\xd4\xff\x62\x85\x24\xc1\x54\x0b\xda\xeb\x6a\x5f\x75\x16\x7d\xe4\x6f\xb5\xb6\xb4\xea\x87\x3d\x93\xed\x3b\x81\xab\x08\x60\x53\xa4\x91\x48\x7a\x8b\x28\xc5\xa0\x13\xb6\xf1\xee\xf3\xad\x97\x6f\x3d\xb9\x88\xf7\xf6\xda\xd6\x6f\x84\xcd\xbf\x24\xa5\xac\x0d\x78\x49\x2b\x40\xdf\x32\xaf\x27\x18\xd1\x1b\x7f\xad\xad\x7d\xc1\x9a\x21\x9a\x72\x4f\x1b\xe2\x8b\x0a\x04\xb3\x6d\x1f\xb4\x6d\xa0\xd3\x0d\xe8\x00\xab\xed\xf1\xc1\x91\xb3\xe5\x58\xb6\xd5\x89\x5b\xef\x35\x33\xac\x83\xb5\x08\x3b\x36\x5d\x44\xc2\x57\xbe\xf5\x7c\x52\x85\x38\x8e\x1f\x86\xeb\x5b\x6d\x4e\xa9\x39\xb1\x7b\xd1\x38\x8e\x51\x21\x45\x0e\x92\x67\x4f\xed\xb4\xc5\xdd\x18\x17\x5f\xdc\x20\x40\x2a\xcf\x2d\xd9\x16\x00\x43\x87\xf1\x5f\xe4\x9f\x07\x5a\x3e\xd3\x26\x6f\x1c\x89\x4c\x94\xfa\xde\x79\xf3\xe7\x52\xf3\x1a\xd4\x57\xef\xb2\xd1\x0d\xfd\x77\x3c\x9a\xf2\xe9\x60\xaf\xa5\x35\xa9\x06\xdf\x99\x1d\x1f\xe1\xec\xef\xef\x77\x82\x35\x89\x34\x10\xc6\xfb\x03\xb5\xbe\xdb\xfe\x3e\xdd\xaa\x4b\x11\x1b\xaf\x16\x9c\x46\xa0\xdd\xee\x74\x05\x14\xdb\xf9\x4e\xe6\xb8\x5a\xdb\x38\xf4\xee\x63\x12\x16\x41\xdc\x7f\x14\x17\xf1\x25\xa6\x43\xa7\x7c\x51\x71\xa4\xe0\xd3\x02\x52\xa1\x54\xdc\x28\xed\xb4\xf4\xce\xb3\xfa\x19\xdb\x22\x7f\x5c\xe5\x29\x7b\x15\xd0\x6b\x40\x7b\xc3\xb5\xae\x3d\xe2\x1c\x65\x84\x4d\x09\xbb\xb6\x7b\x74\x97\x5b\xda\x36\xe9\x02\x6a\x40\xfa\x37\xff\x7a\xbb\x43\x40\xfc\xd1\x5d\x4e\xaa\x77\x38\xca\xbe\xa1\xe7\x23\x6e\xc2\xab\xba\xd8\x60\x73\xed\xe7\x30\x42\xcf\xfe\x6f\xa7\xd6\xa3\x63\xbc\x79\x76\xa4\x0d\xc0\x76\xeb\x7d\x8f\x2d\x77\xd9\xd3\x13\x34\xdb\xb4\x53\xc5\x40\x12\x23\x6e\x67\x8d\x8d\xde\x9d\x98\xaa\x76\xdb\x14\x38\x14\x35\xef\xef\x6f\x57\xf7\x51\xbf\xdf\x36\x3c\x31\x04\x05\xf3\xe2\x18\xaa\xa0\xfe\x5e\xa2\x73\x9f\x4c\xc5\xbf\xea\x92\x91\x35\x60\x41\xd1\xf7\x27\xcb\x65\x96\x94\xd5\xcb\xc5\x96\xcb\xe9\xeb\x2d\x0e\x83\x30\x77\xd4\x7d\xa8\xf4\xba\xb6\x80\x1f\x75\xf4\x78\xf3\x4a\x12\x1d\xee\xaa\x60\x13\x32\xcd\x57\x3c\x54\x7c\x31\xb6\xb4\xf0\x0a\x03\x8b\x0d\xaa\xac\x7e\x22\x79\x99\xa8\xca\xea\x1f\xe5\x07\xa9\x81\x9b\xac\xe0\x1e\xb0\x82\xfe\xa7\x18\xaa\xb1\x57\x66\x9f\x57\x79\x99\x55\xbd\xec\x2a\x99\xd4\xb3\xeb\x5e\x7d\x59\x68\x9d\x2a\xec\x40\x35\x0c\xcc\x1e\x2a\x76\xb7\x15\x9f\xe8\x2e\xd7\x70\x51\xab\x56\xe4\xe2\x6d\x84\xd0\x88\x91\xa7\x87\x00\xac\x0d\xfc\x7b\x2d\x8e\x63\x51\x0d\x6a\x1d\x89\x42\xa0\xc3\x9b\xe4\x0b\x5c\x2f\x61\x1b\x89\x41\x9e\x68\xbb\x59\xbf\x1b\x05\xfa\x5a\x7d\xfe\x11\xfa\x2c\xea\xfb\x0a\x5d\xb6\xa5\x89\x56\x18\x3c\xb5\x7c\xcf\xf2\x45\x52\x5e\xa3\x58\x96\x8f\xc8\xac\xb8\x8c\x2e\xf2\xf3\x0b\xba\xbe\xe6\x69\x34\xcf\x61\xfc\xa2\x32\xab\x22\x41\x3f\x5f\xe7\x29\xfc\x7d\x49\x5e\xc2\xec\x25\xfe\xfd\xb7\xe1\x5a\xd4\xe0\x73\xd2\xd2\xf8\xe0\x1f\x85\xeb\x59\x71\x89\x14\x4a\xfc\x88\x63\x44\x80\xfa\x35\x2b\x2e\x9b\x79\x9e\xc6\xb3\xe2\x72\x1f\x04\x65\xd3\x59\x51\x94\x83\x81\x00\x3a\x98\x15\x97\xe1\x83\x87\xe1\x88\x90\x44\x3f\xf4\xda\xb7\xc1\x3c\x4f\xc3\xd1\x7f\x10\xd6\xf1\xa9\x24\xff\x04\x1d\x8e\x64\x3f\x74\x96\x62\xdd\x65\xa1\x38\x96\x40\x0a\xa3\x79\x9e\x36\x65\x26\xf5\xe1\xca\x34\x53\x35\x46\xaa\xb8\xc8\x27\xbf\x2d\x55\x4c\x75\x7d\x2f\x6b\xfa\xe1\xe0\xe8\x18\xa2\xcf\x94\x59\xc5\x8c\xde\xa0\xbe\xb6\x89\x99\xe7\xe9\xfe\x11\x4e\x8d\x52\x49\x28\xb3\xea\xf1\x96\xc5\xc5\xbc\x8a\xd1\x68\x74\x1f\xf4\x62\x30\x7b\x2f\x56\x27\x93\xd7\x93\x8d\x89\xd4\x08\x93\x4b\xd5\x62\x54\xd5\x1d\x34\x00\x75\xad\x45\x1d\x84\xaa\x2d\xa3\x76\x0c\x81\xc5\xea\xe7\x91\xfc\x86\xd9\x55\x9d\x2d\xd2\x01\xd3\x7f\xac\x8a\x12\x6b\xae\xc4\xd5\x54\x7c\x3d\xcb\x40\xfe\x0a\xde\xe4\x80\x53\x58\xe4\xf5\x8b\x05\x64\x69\x65\x86\x9f\xb2\xeb\x91\x7e\x81\x37\x8b\x59\x2a\x5c\x58\x3e\xbe\x15\x8b\x8c\x21\xb9\xcc\xea\x47\x06\x04\x9f\x90\x98\x7f\xd0\xb6\x76\xd0\x76\x6b\xdb\x09\x3d\x7e\x40\xad\x96\x1f\x8c\xda\xe9\x8a\xc3\x9a\xbc\xd6\x0d\x55\x8c\x9e\xd9\x38\x85\x3c\xe9\xda\xca\x37\x79\x19\x2b\x6f\x7c\x62\x14\x7d\x52\x4d\x32\x70\xdc\xd9\x5a\x88\x81\xac\x9b\x28\x4f\xaf\xa2\xa4\x9a\x8c\x7c\xfc\x97\x57\x81\x4b\x2d\x15\xad\xf0\xdc\xd2\x5d\x7d\x03\xf3\x03\xc0\x3e\x80\xe0\x68\xfe\x7c\x14\x59\xbd\x9d\x0e\x82\xe3\x20\x0c\xf7\xe2\xf8\xe0\x28\xe4\xb3\x79\xdd\x56\xae\x5a\x9d\x61\xec\xb0\xc1\xa1\xe8\x5f\x38\x4a\xaa\xc9\x66\xd8\x3c\xbd\xda\x3f\x0a\x87\x75\xf1\xaa\xb8\xcc\xca\xa7\x49\x95\x0d\x44\xa3\x41\x9a\x55\x93\xc0\x59\x4a\x6d\x8d\x43\x5b\x75\xb9\xca\x1a\x73\x9e\xf0\xc6\xc8\xcb\x84\x23\xef\xa4\x8c\x79\xea\x49\xdc\x36\x37\xb6\x3e\x92\xb1\x81\x55\x13\x8d\xd9\x08\x9b\x1c\xfe\xfe\x3a\x08\x40\x48\x15\xa0\x4a\x28\x1a\x98\x9b\xeb\xfa\xed\x62\xc2\xad\xdf\xda\x40\x06\xb6\x95\x8b\x0f\x30\xf2\x74\x07\x6d\x5f\x3a\xeb\xb7\xb4\xcb\x3d\x9b\x4f\x8b\x7e\x43\xef\x90\x6d\x17\x4f\xc8\x89\x50\xe4\xec\xd5\xf6\x11\x1a\x6d\xc0\xca\x43\xd9\x0c\x81\xe3\x13\x38\x4a\x7e\x24\xaa\x5b\x21\xf5\x86\xa4\x9e\x2c\x5a\x4c\x39\x69\x37\xa9\x46\x99\x55\xab\x59\x0d\xdb\x79\x5a\x94\x83\x2f\x14\x98\x2e\xff\x1e\x2d\xff\x4c\xb4\xe8\x76\xb0\xbf\x9f\x5b\x9b\xca\x03\x3c\xce\x4f\x46\x58\xb9\x8a\x68\x27\x8f\xa3\x27\xe6\x82\x8b\x08\xeb\x1f\x00\x6b\x73\x2d\x1f\xcb\x32\x3f\x9a\x65\xe4\x71\xbe\x9a\xd5\x18\x14\x0f\xb6\x90\x85\x45\xdb\x06\x51\xb7\x8e\x6a\xf2\x03\xd6\x71\x7c\x70\xf4\x9f\xf8\x4b\x49\x66\x0f\x9b\xad\x8f\x0c\x2f\xcb\xaf\x36\x17\x97\xf8\xd0\xa9\x78\x17\xa1\x8d\x2b\xd0\x6f\xe1\x2e\x9c\x67\xb8\x5c\x3f\x34\xdc\xd7\xcb\x1b\x45\x0d\xb9\xba\x66\x5b\x15\x9b\xa9\x00\x1d\xc9\x8e\x1a\x5b\xcb\xb4\x3b\xb7\x8a\xc7\xa0\x20\x33\x58\x13\xc3\x72\x8c\xef\xfd\xed\xe5\x47\xba\xa1\x98\xf3\x47\x64\xcd\x61\xd5\x4e\xfa\x8f\xac\x0c\xd4\xbf\xdd\xa0\xea\x52\x72\x68\xd5\xfb\x07\x3d\x94\x74\x32\xfd\x32\x20\x76\x87\x76\x9c\x0c\xe3\x5b\x29\xed\x30\x99\xf2\xd5\x82\x2a\x6d\x1b\xa9\x08\x11\xf2\xab\x97\x51\x9c\xa2\x8a\x22\xca\x7b\x34\xc9\x74\xc7\x78\x97\xb6\x09\xb0\xf4\x8b\x86\x44\xdc\x55\x07\xed\xce\xda\x61\xb7\x0d\x31\xd4\xa5\x86\xe5\xd1\x2c\x02\x99\x8e\xab\xd2\xe4\xd1\x2d\xfa\x40\x73\x8a\x81\xa6\x37\x28\x83\xd9\x71\xa9\xad\x01\xb4\xe3\x56\x2b\x25\x27\x47\x17\xeb\xbb\xd3\x53\x1d\xa0\xbe\x43\x21\xed\x0f\x2e\x0e\xdb\xe8\x3d\x95\xd9\x72\x96\x4c\x32\x07\x86\xd2\xdb\xc2\x27\xeb\x51\x93\x37\x22\xab\x43\x91\x31\x5a\x11\x89\x00\x25\xc8\x31\x08\xb4\x66\x45\xf1\x69\xb5\x7c\x69\xe6\x70\x47\x45\xd9\xa4\x36\xde\x10\x81\x9f\x08\xcc\xaa\x82\xb0\x89\xe4\x75\xfa\x29\x11\x4a\xcd\x14\xa4\x57\x8e\x5b\x56\xac\xc4\xf0\xe1\x26\x36\x34\x3a\x04\x81\xf2\x0c\xcc\xca\x21\x78\x6c\x2f\xb6\x32\xfb\x7d\x2b\x81\xb9\x30\x14\x5c\x34\x4e\xb1\xc4\xfb\xe9\x2c\xa9\x50\x9a\x9a\x5e\x3d\x86\x90\xb7\xa9\x76\x17\x63\x81\xe1\x69\xee\x1b\x2e\x39\x4a\x18\xc8\xd7\x28\x64\x5e\xbb\x75\x26\xa2\x43\x63\x16\xd9\x85\xd4\x09\x8e\xf9\x4d\x64\xf5\xc9\xe3\x51\x4a\x5a\x92\x54\xab\x65\x56\x4a\x93\xee\x53\xb0\x05\xfa\xb0\x3a\xd3\xb8\x56\x83\x10\xab\xbb\x6e\xaf\x4b\x60\x26\x5d\xd4\x28\x77\x84\xd2\x1b\x70\x65\xd4\x16\xcb\x56\x79\xa2\x18\x07\x33\x45\x3d\x08\xb8\x35\x7c\x2c\x28\x9e\x91\x55\x02\x9d\xec\x09\x54\xc4\x9d\x46\xa3\xc3\x6e\x6c\xde\x7a\xd8\x85\x8d\xe7\xa3\x34\xcd\x4c\x31\x3e\xa5\xb3\xaa\x01\x99\x1b\xc0\xce\xb3\xda\x88\xac\x91\xb1\xbd\x1e\x2e\x6a\xe9\xf3\x88\xe6\xa1\x6d\x24\x1b\xf0\xa1\xb1\x69\xf6\xac\xa1\x1e\x9f\x34\xd1\xbc\x48\xb3\xd9\xb1\x24\x45\x83\xae\xa8\x9b\x61\x74\x9a\x57\x7f\xc9\xcb\x7a\x95\xcc\x8e\xc1\x73\x48\xc4\xd7\x9f\x39\xdd\x2d\x0b\x11\x15\x37\x56\xb3\x19\x05\x3f\x62\xf8\x44\x82\x83\x5e\xd4\x3a\x41\x6d\xad\x24\x5f\x64\x25\xdb\xbe\x2a\x8d\x36\xee\x5d\x56\xd0\x63\x20\x26\x46\x96\xb5\x70\x20\xe8\xb8\x53\x5e\x8d\x8f\x91\xda\x34\xb2\x6f\x71\xa0\xbb\x7e\x1c\xec\x7b\x28\xc4\x9e\xea\xc6\xf0\x22\xa9\x06\xb2\x60\x9b\xc9\xc4\x37\x4f\x8b\xd5\x2c\x05\xab\xa1\x32\xab\x8a\xd9\x17\xf9\x30\xa1\x5a\xe9\x05\xdf\xd8\xed\xec\x7f\x13\x7c\x83\x1e\x2d\xd0\x72\x4b\x4e\x5f\xb8\xb6\x07\x9b\x0d\xaf\x9d\x15\x48\x9b\x1a\xbb\x88\x00\x6f\xcc\xa1\xd3\x7d\x42\xba\xf6\x22\x99\xd4\x45\x79\xad\x7b\x27\xd9\xd6\x75\x9d\x94\xe7\x59\x7d\x6c\x57\xea\xac\x02\x17\x02\x97\x2c\x51\xb2\x70\xe4\x99\x2d\x73\x06\x47\xde\x99\x8a\xac\x15\x82\x87\x97\x8f\xc0\x39\x6e\xef\xcc\x15\x7a\x37\xfa\xc5\xae\xa4\x32\x70\x8b\x17\x72\x24\x97\xeb\x28\xdf\xdf\xe7\x47\x89\xb3\x5a\x4f\xcc\x53\x83\xc3\x72\x92\xe4\x6d\x25\x3e\x6c\x9a\xe8\x32\x9f\xcd\x9e\x21\xa0\x4b\x50\xbc\x07\xc0\xc8\x20\x36\xe2\x5e\xb0\xcd\x0d\xe0\xee\xbc\xbf\xd7\x42\xc4\xb6\xa7\x11\x9c\xca\x26\x4e\xdc\x8e\x47\x0a\x7d\x3e\xbd\x48\x16\xe9\xcc\x63\xe1\x42\x50\x1a\xff\x53\xba\xcb\x9d\xc2\xd2\x3c\x4d\x66\x79\x52\x09\x26\xae\xcc\x26\xe0\x8a\xfd\xd7\xc2\xdd\x7f\x55\xee\x1d\x2a\x40\xa1\xfa\xa6\x20\xe5\x2e\xf3\xfc\xed\xe9\xe9\x70\x03\xcb\xfc\x5b\x9b\x65\x7e\x02\xc3\xf8\x27\x9c\xa4\xed\x39\x77\x62\x53\x5e\x8b\xa9\x7a\x22\x66\xea\x99\x9e\xa8\x4d\xd6\x1d\x36\xff\x0f\xff\x4b\x92\x66\xe0\x13\x6d\xd7\x60\xb4\xce\x2b\x46\xeb\xea\x72\x95\x45\x44\x19\x81\x1e\x29\x7a\x8a\x9f\x0e\x71\x84\xd4\xaa\x2e\xca\x0c\x7f\x22\x6d\x54\x45\x05\xdb\x3c\x51\x8f\xce\xa2\xed\x41\x00\x20\x01\xa8\x28\x00\x16\x59\xfa\x21\x5b\xa4\x88\x76\xc5\xd5\xbc\xc5\x1f\xd3\x3b\x81\xd8\xe6\x63\x9d\x71\xd2\x58\x95\xf8\x4b\x2b\xdd\x21\x69\xbe\x61\x5b\x2e\x1e\x21\x01\xe1\x35\x5b\x51\xca\x2b\x29\x79\x10\xac\x94\x39\x11\x31\x5b\x77\x2d\xb7\x96\xd0\x50\xc7\x62\x45\xd9\x19\xe1\x87\xc0\x59\xb6\xbe\xb7\x22\x6e\x64\xad\xe6\xa3\x71\x5b\x0a\x0d\x36\x98\xbf\xdd\x86\x9e\x74\xed\xff\xae\xab\xed\x51\xcb\xd5\xb6\xcd\x72\xc8\x32\x1c\x6a\xb9\x6d\x7a\x1e\xe0\xec\x89\xeb\x18\xea\xe5\xb5\x7d\x6a\x6c\xb0\x63\xec\x14\xfe\x58\x47\x87\x43\xe9\x97\xd7\x86\xdc\xc7\x0d\x8d\xfd\xcf\x20\xef\x9d\xe4\xbb\x2b\xe0\xad\x4b\xc8\xea\xeb\x65\xf6\x76\xea\xd0\x72\x4c\xde\x95\x9c\x3f\xa5\xe1\xd9\x24\x94\xf1\xc4\xed\xfd\xad\x19\xb6\x97\xde\xb6\x1c\xb9\x05\xa5\xb3\xa7\x63\x31\x25\xe4\xaa\x30\x5b\x46\x55\x96\x2d\xa2\x49\xb1\xcc\x33\xba\x62\x94\x59\x1d\xcd\x8a\x49\xf4\x09\xdf\x63\xa5\x01\xf4\x5e\x1c\x4b\xe3\xe8\xb3\x9f\x6f\x6e\x8a\xb3\x9f\xe3\x18\xdc\xa1\x85\xfa\x7e\x8c\x1e\x82\xb2\x65\xbf\x3f\x98\x15\x93\x58\x3e\xb7\x41\x13\xc5\xd9\xcf\x61\xf8\x38\x3e\x0c\x95\xff\x1b\xd1\xe4\x78\x56\x4c\x4e\xe4\xb3\xef\xdb\x29\xf8\xa1\x8e\xe3\x38\x40\x53\x54\x20\x9f\x71\x71\xf6\x33\xdd\x40\x43\xd9\x40\xb8\x16\xf5\x97\x59\x2d\x59\xbc\xcb\x8b\x7c\x96\x0d\x0e\x0e\x66\xc5\x84\xda\x80\x9a\x63\xec\xac\xfc\x74\x7b\xdc\xa8\x97\x79\x39\x13\xfd\xbe\xfc\x25\x5d\x35\x02\xe6\x0a\x13\xa8\xd0\xad\x47\x56\x53\x9c\xfd\xcc\x9f\x56\x9e\x25\x35\x1e\x02\xe8\x4b\x45\x9c\x75\xa2\x92\xf3\xac\xfe\x98\xcf\xb3\x41\xa8\x7d\x8d\xc4\xeb\x86\x7b\x79\x16\x8d\x82\xa2\x8d\x00\xbf\x48\xaa\xb7\x3a\x14\x9d\x00\x09\x43\xe9\xc4\x79\x84\x91\x78\x8d\x37\xca\x87\x30\x86\xa7\xa7\x81\x86\x12\x43\xf0\x09\xdd\x67\x65\xcb\x1f\xd4\x1a\x80\x34\x77\x58\x8e\x65\x56\xd3\xa8\x11\x17\xf9\xf8\xe8\x08\xce\xc2\x11\x12\x13\xca\x4c\x45\x08\x12\xcb\xa7\x69\xa1\x5a\x6a\x09\x1a\x2b\x10\xba\xb9\xeb\x2a\xdb\x30\x5b\x1a\x58\xcf\x97\x92\xc0\x5b\x1b\x00\x06\x64\x7c\x82\x27\x3f\xff\x00\xe1\x43\x1b\x0d\x15\x5c\xf6\xd8\x4f\xbb\xba\x68\x4d\x5e\x3d\xff\xbc\x4a\x66\x7a\x28\x28\x61\x90\x44\x67\xa8\x7e\xd6\xef\x6b\x4d\x87\x58\x8d\x46\x32\x24\x40\xd9\x35\x95\x30\x38\x43\x53\x7d\x7b\xd5\xf5\xfb\x67\xde\x85\x88\x85\xd5\x02\x8c\xe3\xf8\x4c\x7f\xa9\xd7\x2a\x91\x6c\x7a\x61\x94\x98\xd3\xdf\xd6\xa1\xc9\xae\xea\x07\xaa\x03\x9b\x2f\x27\xe8\xd2\xe2\x54\x3b\xf7\x68\xbb\x6f\xdc\xfe\x78\xb8\x75\x50\xff\xae\xc8\xf5\x1e\x03\x5f\x2f\xeb\xfd\xc8\x66\xbd\xa5\x41\x2e\x7a\x83\xd5\x2e\x33\xb4\x75\xee\x0b\xea\xe7\x3b\xe5\x7f\x4c\xa6\x68\x70\x31\xe5\x28\x5e\x7a\xfe\x7f\x3e\x3e\x7f\xf3\xec\xf4\xdd\xfb\xb7\x1f\xdf\x7e\xfc\xef\x77\xcf\x3f\x88\x45\x53\xae\xb2\x9b\x9b\x96\xfc\xa1\xac\x2d\x5c\x3b\x2d\xb5\xba\x95\x11\x04\x4a\x49\xba\xf0\xed\x59\xef\x77\xdb\x3d\x84\x38\x41\xb4\x7e\x7b\x33\x72\x9b\x21\x0f\x08\x95\xdd\x4c\x92\xa6\x7f\x4d\xea\xc9\x05\x73\xf3\xc9\x23\x82\x85\xeb\x4b\xcc\x95\x74\xa8\x22\xfd\x7a\x4a\x8e\xc7\x27\xd6\x43\xb5\xad\xba\x86\xcf\xd3\x8e\x1f\x15\x05\x36\xce\xc1\x93\x8b\x85\x84\x14\x24\x9e\xc2\xca\x3c\x95\xd8\x9f\x9e\xc6\xd4\xf0\x88\x49\x96\xbb\xfa\xfb\x72\x3e\xcf\xd2\x3c\xa9\xb3\x99\x31\xc2\x86\x24\x23\x76\x70\xce\xbf\x9f\xa1\xe8\x82\xae\x03\x31\x47\xd7\xf0\xb3\x26\xdb\xb1\xee\x00\x5b\xcc\x04\x86\x04\xf9\xd7\x9e\x0f\xec\xc3\x0e\xb3\xb2\xb0\xfb\x9b\x7d\x11\x8d\xb6\x5a\x6a\x18\xad\xce\xf2\xaa\xce\x16\x62\x11\x60\x29\xa3\xb5\xf6\xa3\x43\xd0\xc7\xb2\xfa\xb2\xdc\x82\x36\xce\x8a\xf3\xf3\xec\xd6\xef\x9b\x77\x96\x58\xbc\x82\xe6\x37\x51\xbd\xf7\x1f\xfe\xf2\x2e\x26\x05\xe8\xd7\x45\xba\x9a\x65\x83\x00\xfa\x87\xb7\xcd\x8f\x59\x55\x47\x75\x56\xd5\x98\x87\xf2\x5d\xec\xa4\x48\xcd\x17\xe7\x0f\xc4\xdf\x60\x24\xea\x19\x16\x0b\x78\xd2\x7d\x86\x2d\xe8\xd9\x81\x54\x38\x1f\xe1\x17\x3f\xd8\x9e\xab\x2c\xa4\x77\x54\x2b\x32\x4f\xa2\xf5\x7e\x1f\x33\x4e\x4f\x67\x45\x92\x66\xe5\xb0\xcc\xce\xf3\xaa\x2e\xaf\xc7\x26\x5a\x27\xe1\x5a\x80\x5b\x7d\x31\x61\x42\xd6\x7b\xc1\x19\x61\xfd\xe2\xff\x61\x92\x26\xcb\x3a\x2b\xb1\x12\xf9\x35\xcc\xae\x26\xd9\x92\x75\x01\xd9\x3d\x94\x52\x43\x8a\x66\x40\x11\x4b\x1a\x81\x70\x6d\x7c\x1a\xa5\x71\x5e\x86\x2c\x63\x58\xd5\x60\xfc\xd7\x34\x72\x18\x07\x01\xbd\x8d\x7b\x86\x35\x6c\xbb\x55\x0a\xd8\xce\x75\x8b\x0c\x66\xe7\xca\xb5\xbd\xca\x60\x89\xed\x17\xee\x6d\x17\xeb\x74\xee\x8a\xd7\xa6\x73\x14\xaf\x5d\x3a\x39\x97\x18\xd1\xaa\x98\x38\x39\xb3\x62\x82\x87\x79\x32\xcf\x66\xf9\x3f\x1c\x6f\x2c\x43\x99\x41\xb1\xba\x5a\xe1\x74\x16\x42\x26\xd5\x45\x56\x7a\x01\x65\x0e\x19\xc2\xa5\x59\x59\x89\x21\x75\x00\x75\x16\x61\xb8\xcc\xeb\xa4\x05\x47\x99\x85\x90\xb3\xa4\xaa\xf2\xa9\x23\x68\x18\xca\x0c\x7c\xcd\x87\xa9\xd2\x4c\x07\x7e\xdf\x0f\xcb\x81\x75\x85\x6b\xab\x0d\x31\x43\xb1\xfb\x6e\x36\x9d\xd7\xee\xd1\x65\x17\xbd\xf4\x14\xbc\x1c\x90\x2f\x59\x1b\x58\xcc\xb4\x0b\x3e\x2b\x26\x9b\xdb\x51\x13\xec\x96\x97\x59\x6d\xad\xb2\xd5\xe1\x16\xd6\x99\xad\xc5\xd5\x92\xf1\x94\x96\x79\x6d\x85\xd9\x3a\x72\x4b\xeb\xcc\xb6\xe2\x6a\xc9\x78\x7a\x4d\x59\xad\x45\xf5\xba\xf4\x0d\x99\xcc\xa4\xe2\xed\x07\x25\xfa\x9d\xda\x49\x4e\x75\x57\xa9\xd2\x3d\x4a\x89\x3c\x02\x9b\x87\xa6\xc0\x06\xdc\xfc\x90\xf0\x55\xfc\x86\x87\x4d\xf1\xe3\xe6\x06\xa1\x86\x79\xf5\x21\x27\xf7\x1e\x4a\x9b\x0e\x07\x99\xab\x6b\x07\x93\x62\x51\xd5\xe5\x6a\x52\x83\x2e\x94\x29\x2b\x08\xa2\x00\x14\x28\xb1\xd8\xdb\x69\x10\x05\x92\x59\x7f\x59\xe9\x2e\x05\x51\x00\xa6\xe7\x00\x50\x17\xaf\x8a\x49\x32\xcb\x3e\x10\xb5\x0f\xea\xe2\x83\x24\xe3\x82\xcf\x7b\xc7\xd4\x5b\xcd\xd0\xd3\xa8\x0a\xf7\x89\x3c\x40\xb6\x4b\x25\x70\x31\x90\xe4\x02\x12\xe1\xfd\x8b\x67\xb4\x88\xb1\x06\xba\x09\x2d\x4b\x62\x66\x03\xae\xb4\xc4\x30\x1d\xe8\xf7\x5b\xe5\x29\x54\x15\xea\xee\x01\x3b\xfb\x09\x7c\x6d\x7c\xe2\x3e\x46\x61\xd2\x40\xc4\xa0\x6e\x45\xe3\x13\x90\x94\xd9\xa2\x1b\x7b\xa0\x60\x7c\xc4\xc5\x08\x6a\x35\x19\x7e\xcf\xb4\x3a\xac\xbf\x18\x28\x0f\xdc\x38\x3f\x19\x75\x37\xc5\xc4\x32\x6d\x72\x19\xd1\xa9\xd6\x6d\xd8\xf2\xae\x37\xde\xe8\x79\xcf\xf7\x7a\xd8\xa1\x86\xa8\xf6\xf3\xd7\x10\x07\x77\x6d\x6c\xd7\xe9\x9a\x67\x3b\xbb\x82\xfd\x87\xc6\xb3\x5b\x97\x53\x36\x8f\xc0\xf8\x5b\x53\x60\x6c\x3e\xc7\x19\x2f\x63\x6b\x40\x8f\xdd\x8d\x8e\xc7\xc1\x29\x4e\x86\x18\xa3\xcb\x7c\x36\x7b\x2d\x20\xa0\xd0\xb1\xe1\x39\x9d\xe4\xb9\x17\x49\x75\x01\x81\x5e\xc0\x3b\xbc\x48\x1f\xca\x0a\x94\xfb\xe4\xb7\x53\x2c\x31\x94\x19\x31\xf7\x7c\x29\x6b\x88\x03\xd9\xb0\x62\x5a\x8d\xc2\x78\x0f\x6a\x2b\x8b\xb9\x81\x60\x9b\x65\x22\x06\x07\xd1\xf8\x90\x7e\xaf\x99\x78\x73\xb3\x6e\x40\xa5\xbe\x1a\xcb\x72\x27\x61\x43\x06\xa6\x56\x3a\x44\x6b\xb9\xc3\x63\x1a\x3d\x20\x8e\x94\xda\x07\xe1\xd0\xef\x1b\x9f\xfc\xb9\x8d\x39\x19\xf6\xe4\x3a\x8f\x71\xc4\x2a\x85\x6b\xee\x64\x5a\x5f\x02\xf6\x90\x83\x7a\xf1\xfc\xc9\xc7\x3f\xbf\x7f\xfe\x61\x98\x57\xcf\x17\x82\x08\xa6\x6a\x5b\x16\x2b\x71\xbd\x39\x48\xcb\x62\x79\xa0\x9f\x10\x0f\xb0\xcd\x83\xaa\xbe\x9e\x65\x41\x48\xf8\x9a\x4f\x8c\xde\x44\x7a\xbc\xec\xca\xe3\x83\xa8\x7b\x6b\x82\xf2\x7e\xb6\x0c\x6f\xd8\xd6\x77\x51\x23\x0c\x3b\x53\xa4\xc1\x84\x20\x0c\x49\xd9\x65\x58\xb1\x46\x20\x85\x33\x6d\x82\x89\x68\xd3\xcb\xe4\x5b\x6b\x23\x91\x43\x07\x98\x5f\x49\x9b\xba\x45\x89\x39\xaf\x4e\x17\xc5\xc2\xbd\x41\x11\x4e\x19\x3f\xa4\x77\xe0\x85\x3a\xc9\x2f\xed\x45\xab\x42\x5f\x22\x88\x52\x90\x0d\xf8\x55\xe8\x61\x6c\xd2\xb2\x36\xbd\x3c\xfa\x3c\x7d\xfe\x62\x7a\xd8\x5e\xf9\xf0\xb7\xb6\x7c\x18\x3c\xff\xdb\x3e\x38\x01\x8a\x32\xe8\x1d\xe1\x4d\xb1\x70\xdf\x03\x31\x99\xc2\x30\x7b\xf2\x17\x32\x57\xb3\x57\xf7\xec\xc4\xd3\x3d\x28\xbf\x33\x0e\x4a\x92\xae\xb8\x2a\xdd\x32\x63\x44\x8c\x2e\x2c\x54\x1d\xf3\xca\x71\xf7\xe9\x82\x18\x25\x95\x2a\x6d\x6b\x41\x05\x21\x3d\x8b\xbe\x02\x81\x9e\x3d\xff\x87\xe8\x5a\x54\x66\x52\x27\xe6\xc5\x97\xac\x1d\xde\xcc\xa7\x85\xb1\x48\x9f\x8b\x0d\xe6\x42\xab\xac\x11\x1d\xd7\xb2\x60\xe5\xc2\xf2\x5c\x5a\x08\x7f\xa5\x1d\xea\x3a\x2c\xd5\x79\xd2\xc3\x9b\xf3\x3a\x3c\x4f\x96\x6d\x94\xd3\x60\x43\x74\xb9\x68\x8d\xac\xe9\xb1\x9c\xb0\x41\xa8\xd4\xcd\x2d\x3d\x73\xd4\xe5\xfe\xfe\xf0\xe6\x06\x54\xba\x5d\x5d\xf3\x90\xdd\x47\xc1\x33\xc6\xc8\xd6\x6d\x17\xf5\x48\x75\xf6\xca\x68\x00\x7d\x93\x49\xbb\xff\xd9\x14\x03\x79\x31\xcf\x78\x04\x11\x99\x38\x49\x85\xc6\x6c\x36\x35\xb5\xd1\x9b\xb0\x89\x16\xd9\x55\x8d\x37\xb2\x63\x6f\x29\x92\xb1\xf3\x52\x51\x30\x3e\x09\x3c\x4a\xc0\x9f\xb4\xb3\x31\x6f\x08\x3a\x0a\xf3\x85\x9a\xcd\x87\x91\x3b\x36\x54\xda\x90\x2a\x87\xd1\x34\x2f\x2b\x89\x62\x87\xe6\xb1\x89\xe8\x61\xd8\x84\xd1\x2c\xd9\xbd\xa0\x8b\xd5\xc1\x91\xa8\x4b\x3a\x41\x30\x6c\x13\xec\x90\x16\x78\x5f\x13\x19\x8f\xe3\xc3\x06\x03\xad\xeb\x02\x67\xd9\x79\xbe\x40\xef\x76\xd9\x22\xa5\x00\xec\xf2\x4e\xa5\x14\xa7\xed\xc0\xf3\x96\xa9\x82\x58\x60\x40\xf1\x58\x75\x61\xa8\x7f\xc7\x87\x0c\x44\x35\x73\x73\x23\x7f\x3e\x26\x55\x52\xf9\x1d\x6b\x0f\x27\xba\x92\xef\x0f\x79\x8d\x14\xdb\x56\xa7\x08\x60\x59\xfe\xfb\x43\xbb\xaa\x7d\xf9\x4d\x1a\x0a\xac\x5a\xdd\xed\x32\xab\xc7\x5a\x97\x81\xa2\x4a\xa8\x49\xd0\x45\xf6\xf7\x8d\xeb\x5c\x44\x63\x6c\x5b\x88\x44\x55\x9d\x94\xf5\x13\xb2\x11\xc8\x53\x08\x84\xdb\x32\x7c\x04\x6a\x78\xa7\x91\x69\x87\x0c\xe0\xfb\x43\x99\xbc\x2f\x7a\x06\xd7\x5d\x30\xb4\xc6\xc4\x11\xd9\x6a\x88\xbf\xe2\xb6\x2a\x99\x44\x63\xaf\xc4\x71\x4c\xc6\x19\x32\xf8\x6f\x7a\x45\xfd\x39\x38\x6a\x60\x81\xbe\xfc\x2a\x3d\xba\xb9\xa1\xc4\xc7\x02\x77\xd5\xbf\x59\xb6\x38\x38\xda\xad\x8f\x8f\xc5\xa0\xa4\x57\x07\x07\xb7\xeb\x62\x92\x9a\xc1\xeb\x74\x3f\x89\xa7\x2d\x96\x35\x91\xb4\x4b\x7d\xf2\x89\xc4\x7e\x5f\xfc\x3f\xd4\xa9\x37\x37\xa8\x23\xa3\x8f\xbf\x20\x4a\xd5\x99\xc7\x8a\xa8\x44\x59\x42\x9d\x7b\x81\x3c\x6f\x54\x78\x32\x36\xa4\x17\x49\x65\xc6\xd9\xc3\xd1\xdd\xe3\xe0\x61\x4b\x68\x4a\x7f\x69\x76\x88\x12\xd4\x7f\x61\xe8\xf8\x33\x78\xb6\x0b\xe8\xee\x15\xe9\x3e\x76\x94\x99\x50\x97\xa9\x8c\xea\x64\x07\x92\x66\xfc\x49\x3f\x8e\x9c\xd8\x92\xb1\xc8\xbf\xf8\x84\xdd\x7e\xbe\x4c\x26\x66\xeb\x29\xeb\x2a\xd6\x39\x6b\xf7\x33\x69\x0e\x40\xd7\x69\xc7\xb9\x29\x2f\xa6\xe1\xcd\x4d\x3b\x0c\x0d\x82\x38\x10\xb9\x11\x97\x1e\x5c\xbd\x5a\x80\x84\xbc\x54\x06\x48\x4f\xe6\x60\x7f\xf4\x64\x8e\xa1\xd4\x65\xae\xe9\x23\x4c\xa5\x1e\x8e\x54\xa9\x18\x4b\xc5\x07\xe4\x68\x12\xec\xdc\x65\x1e\x2f\xad\x53\x91\xc4\x51\x39\x0e\xa2\xab\x82\x33\x52\xb2\x8a\xb2\x8f\xe0\xc0\x21\x0c\xd7\x7a\x85\x51\x52\xa3\xf8\x55\xff\x9a\x18\xa3\x93\x83\xb6\x1e\x9f\x84\x9a\x85\xce\x17\xe7\xd1\x2c\x9f\x8f\xd8\x18\x80\xe5\x9f\x2a\x03\x5f\xc6\x1a\xd7\x8c\x28\x5b\x02\xe1\x5a\x56\x17\x8f\x4f\x46\xb3\x7c\x1e\xcb\xea\xf6\x55\x55\x5a\x11\x41\x92\xf4\x97\xe9\x15\x9e\x5b\x02\x03\x38\xb7\x64\x2d\x28\xff\x75\xc9\xbb\xd2\xd6\xa3\xc6\x54\xe5\xa8\x8f\xa0\x6f\xe4\xce\x52\x18\xa8\xfe\xd2\xbc\x9b\xab\x76\x83\x11\xe0\xaf\x7b\xf9\xd0\xf5\xa9\x6d\x32\x11\x70\xeb\x99\xc4\x9a\x9c\x79\xc4\x5a\xb6\x99\x44\xac\x60\xc3\x14\x52\x2b\x58\x6b\xcb\xec\x69\xda\x63\x0c\x7b\xbe\x38\x0f\x47\x2d\x7b\x40\x12\xb8\xed\xf6\x40\x2b\x63\x1b\xc1\x5d\x3f\x7d\x21\x98\xfd\x58\xde\xfb\x09\x86\xdd\x00\x14\xe0\xab\xc4\x85\xd3\xfc\x3e\x1e\x04\xf6\x95\x60\x8f\xa2\x53\x63\x2b\xad\x61\xa6\xad\x06\x47\x6d\x84\xd9\x80\x6a\x9c\xf6\xb0\x67\x07\x47\xba\x59\x81\x73\x47\xab\x06\xfa\x6d\x8d\x72\xa0\xc6\xd8\x50\x44\xac\xbc\xc4\x5f\x05\xcd\x3c\x3d\x15\x40\x78\x7c\x53\xa0\xb2\xab\x6b\x5b\x97\xc5\xab\xd6\x20\xca\x91\x3d\x41\x38\x0e\x54\xd9\xe0\x64\xc4\x2a\x06\x95\x5f\x95\x47\xef\x9d\xfc\x8e\x84\x60\x4d\xd8\x61\xf4\xa5\xb4\xe8\xe7\xcb\x84\x84\x80\x63\xbf\x98\x6f\x1b\xe1\x5c\x97\xe8\xcb\x6f\xba\xb0\x41\x70\x73\xc4\x05\x37\xdb\xc8\x11\xd6\xe4\xee\x45\x4b\x0f\x94\x36\xe2\x36\xa3\xb0\xbd\xd5\xd8\x5d\x64\xb8\x3b\x8d\xe9\x26\x81\xe7\x57\x15\x37\xba\x93\xf6\x48\x4d\xda\x56\xd3\xb1\xe1\xfd\x88\x19\x27\xfa\x55\x0a\x51\xb0\x24\x26\xe1\xc3\x32\x9b\xe4\xd3\x3c\x4b\xe3\x3d\x7a\x65\x82\x64\x8c\xcf\x2c\x3e\x27\xd2\x29\xc0\x9e\x09\x2f\x1f\x81\x20\x35\x36\x60\x47\xc6\x2b\x8f\xf2\x53\x77\xd2\x74\xd9\x49\x3a\x86\x27\xe3\x7b\x90\xdd\x9b\xd2\x74\xab\xa9\x69\x99\x65\xff\xf0\x3a\x37\x31\xb5\xa0\x7e\x45\xce\x4b\xba\x56\xa5\xbd\xe0\x8e\x3a\xe4\xdb\x0f\x99\x7c\xdb\x4b\x21\x1e\xd9\xa2\xdd\x17\x72\xb0\x1c\x01\xb7\xca\xd9\xb8\xb4\x7d\x0a\x5f\xbf\x65\x0a\x5f\xdb\x85\xa8\xda\x92\x5e\x2d\xaf\x3d\xc4\x2a\x9a\x96\xc5\x3f\xb2\xc5\x53\x91\x6b\x1e\x2d\xaa\x17\xfd\xbe\xfa\x29\x6d\x13\xe0\x08\xf0\x39\xf0\xa8\x5e\x40\x75\x41\xf8\x83\x48\x38\x26\x07\x15\xcb\xeb\x41\x38\x84\xc5\xa5\x82\xd2\x7a\xed\xdb\xa7\xf3\x7a\x10\xfc\xff\xfe\xab\x97\x16\x66\x6c\xcc\x1e\x94\x45\x8d\x3d\x51\xe5\x49\x18\x6e\xb3\x73\xd2\x6c\x9a\x95\x65\x96\xde\x13\x11\xdd\xfc\x02\xe6\x84\xc9\x73\x75\x65\x7f\x7d\xbb\xe4\xab\xd2\xee\xed\x9f\x8b\xec\xa0\x69\x1e\x37\x3d\xa0\xa1\xbb\xe1\x95\x27\xa9\xae\x17\x93\x0f\x82\x5f\xb5\x82\x2b\xa3\x28\x96\xeb\xd1\x9a\xda\xae\x6e\xda\x50\xd7\x35\x08\x9b\x46\x57\xff\x7c\x91\xde\x53\xe5\xcf\x17\x29\x54\x0d\xca\xad\x93\x62\x31\xcd\xcf\x57\x65\x36\x08\x20\x33\xd0\x2b\x44\x86\xc5\x88\x96\x65\x31\xcf\x2b\xa9\x03\x20\xa0\xe2\xbd\x72\xb5\x18\x4e\x56\x65\x99\x2d\xea\xf7\xab\xc5\xab\xa2\x58\x8e\x6c\x25\xe2\x7e\x1f\x60\xc3\xb5\xd1\x25\x51\x50\xd4\x7a\xb6\x2a\x17\x59\x39\xac\x04\x37\x0b\xac\xa2\xd4\x8e\x88\x7c\xbd\xf4\x56\x89\x1d\x91\x68\x0e\x24\x9a\xb0\x47\xa1\x73\xef\x30\x85\xd9\x89\x4c\x93\x7c\x16\xbb\x3d\x9c\x25\x67\xd9\xcc\x10\xc1\x8f\x83\x89\xb8\xd2\x07\x27\x36\x50\xb3\x1d\xe5\xab\x2f\x32\xc6\x10\x90\xe3\x8c\xa8\xcc\x40\x20\x4b\xcd\xa1\x0e\x2c\x92\x0b\x39\xc8\x51\xb6\xa8\xf3\xfa\x7a\x84\x7f\xf0\x59\x46\xc2\xb0\xbb\xce\xa9\x22\x33\xc0\xdf\x8b\x92\xb1\x4c\x1a\x52\x02\x8b\xec\xb2\x9a\x4d\xf3\xd9\x4c\x30\x1d\xf4\x96\x3f\x60\x49\x30\xcc\xec\x3b\x8e\x63\x35\xe3\x4a\x60\x0e\xf8\x0f\x10\x2b\x33\xc4\xb7\xcc\xe3\x35\x2a\xb7\x3f\x54\xd1\x50\x0c\x87\x1c\x85\x7e\xdf\xc5\xc7\x1c\x99\x26\x22\x50\x3d\x82\x2c\xf4\x8c\x3d\x64\xb7\x1e\x1f\xf9\xb4\x14\xc7\x30\xce\xe1\x5a\x41\xc8\x3e\xa9\x25\x05\x1d\x76\xb2\x11\xa9\xa6\x21\xec\x1d\x6c\xbd\xf8\x0c\x11\x58\x16\x8e\x54\x56\x97\xac\x0d\x96\x33\x00\x0e\x02\xd8\x11\xc7\xbd\x67\x54\x0c\xd6\x5d\xef\xa0\x17\xec\xe3\x1d\x69\x8b\xab\x00\xd7\x8a\xf8\x4a\xea\x1a\xdb\x2a\x55\x6c\xd0\xc3\x68\x39\xf3\x76\x52\xc5\xf8\x9f\x12\x75\xf5\x17\x53\xbd\x80\xbb\x8b\x73\x90\x42\x6a\xcb\x59\xfc\xdb\xcd\x97\xdf\xdf\xda\xac\x2d\x5c\x43\x5f\x67\xf5\x45\xe1\x02\xb2\xbc\x8d\x6a\x15\x9e\xf3\xd9\xcb\x0c\xfc\xde\x66\x06\x36\xa8\x4d\x7c\x77\x5b\xb5\x89\xef\x76\x56\x9b\xf8\xc3\x6e\x5a\x13\x7f\xd8\x45\x69\xe2\x0f\xdb\xeb\x4c\xfc\xc1\xa7\x32\xe1\x0d\x9d\x7a\xd8\x1e\x3a\xb5\xdd\x52\x33\x39\xdd\x64\x75\xff\x85\x9c\x1e\x65\x57\x75\x05\xd6\x70\xf2\x40\x5b\x16\xcb\xa7\xf5\x15\x53\x8c\x27\x20\x1d\x80\xec\xf0\x87\x75\x73\xac\x92\x97\xc5\x72\xc0\x1c\x1a\x2f\x57\xd5\x85\x28\x3f\xa9\xaf\xd0\x4b\x11\x02\xad\xaa\x0b\x48\x92\xd2\xe5\xc5\x6a\x36\xd3\x85\xf2\x3a\x2b\xb9\x62\x82\x40\x0e\x7e\xbe\x2b\x8b\x2f\x79\x9a\xa5\x8e\xe9\x61\x1c\xc7\x0f\x59\xe0\x25\xf2\x36\x0f\x9d\x5a\xa1\xdf\x2b\x70\x01\xfb\x29\xbb\x56\x4d\x1a\x15\xfe\x20\x4f\xa7\xc9\xaa\x3c\xde\xdb\x9b\xac\x4a\x79\xac\xe6\x6d\xca\xc8\x26\x13\xc2\x34\x32\x7c\x97\xb0\x0d\xda\x10\xf9\xd4\xa3\xc2\x00\x4e\xfe\x1d\xc5\x13\x36\x51\xb1\x9c\x9b\xa8\xcc\x6a\xd1\x2d\x7c\x90\xd7\xa8\x0c\x0e\x23\xed\x26\xe6\xaa\x0e\x47\x6a\x36\x64\x02\x7b\xa5\x0f\xd5\xce\x19\x04\xe3\x93\x60\xa3\x22\x06\x09\x86\x5b\x5e\xb7\x45\xce\xf6\xf8\xe7\xe9\x55\x7c\x18\x4d\x56\x25\x34\x0a\x76\xf4\xa3\xb4\x58\xc3\xc7\x64\x55\x8e\xc4\x24\xda\x7d\x03\x21\x3a\xc0\xab\xfe\x35\xa8\xbb\x30\x59\x95\x86\x0a\x4b\x6b\xb7\x45\x61\xb7\xdf\x5b\x28\x8d\x4c\xf3\x05\x1b\x0b\x23\x62\x9e\xf8\xc0\xd7\xf5\x26\xe4\x58\x34\x11\xb9\x20\x3c\x76\x79\x62\x7c\x66\x54\x4a\xce\xc5\x54\xc5\xfc\xdb\x33\xe2\x09\xe8\x4b\xf5\xc7\xeb\x65\x06\x77\xea\x51\xfb\x34\xe8\xb1\x8c\xec\x01\x1f\x69\x55\x56\x43\xd7\x07\x93\x60\xf8\xf9\x03\xc6\xa1\xad\x36\x01\x7a\x7b\xa2\x42\xcf\xa4\x98\x53\x32\xb2\xc2\x53\xe2\x83\xaa\x28\x01\x7e\x11\xd1\x42\x1b\x11\xcd\xae\xea\x46\x4f\xbf\x42\xb9\x65\xee\x50\x7c\x7e\x9e\xd5\xe6\x98\x7e\x62\x91\xce\x00\x39\x0c\x6e\x0a\x16\x06\x51\xe5\x81\x96\x34\xc6\x98\x5e\x72\x16\x69\xcd\x70\xc5\xc8\x08\x15\x6b\xc2\x26\x9a\x27\xcb\x8e\x39\x75\x55\x85\xfc\x4d\x80\xcb\xca\x28\x47\x25\x1b\x70\x70\xe7\x1d\x39\x09\xd6\x18\x7b\x37\x82\x5e\x76\x8f\x82\x6e\x4a\x8c\xb4\x21\xdc\x81\xe9\xf8\x84\x61\xe0\x22\x16\x35\xf5\x98\x31\x03\x83\x00\xda\x08\x64\x5c\xd1\xfb\xec\x72\x3e\x1d\x74\x76\x36\x04\xdb\x7d\x71\x66\x5c\xd9\x1d\xb7\xaf\x03\x0e\x32\xe6\xb6\x85\x38\x95\x0e\xcf\xbf\x67\xe8\x6b\xab\x2a\x98\xe2\x76\xd8\x44\x32\xfe\xe4\xe6\xd5\x83\xad\x30\x31\xb4\x38\xcf\x58\x6d\xaa\x32\xff\x38\xcb\x86\x82\x90\x7a\xd7\xd2\x26\xd8\x81\x5f\x25\x93\x1a\x9c\x88\x6f\x0a\xe0\xf9\x89\x07\xee\x8c\x2e\x92\xaa\xa3\xd4\xde\x9e\x51\xac\x89\x56\x55\xe6\x3d\x72\x7f\xd0\xed\x1f\xcb\x2a\xf9\x06\x95\x17\xb0\x95\xb8\xd8\x51\x6f\xfc\x9d\x96\x3d\x85\xf5\xc5\x0d\x23\xbc\xab\xab\xfd\xdc\xd9\x40\xd5\xa0\xb0\x22\x8b\xb0\xee\xa7\xc5\x6a\x91\xc6\xe8\xeb\xb4\x54\x1a\xd0\x16\xbd\xf4\x52\xc3\x7e\x7f\x0f\x0a\x4b\xaa\xb8\x25\x45\xcc\xa7\x03\x6c\x73\x0b\xd2\x18\xa2\x47\x9e\xab\x9a\xd1\x48\x68\x66\x7b\x42\x09\xdb\x44\x8c\xe9\x56\x4b\x77\x91\x6e\x5a\xb8\xca\xff\x81\xb3\x6c\x45\x13\x41\x18\x65\x5f\xb2\xf2\x7a\xe3\x8e\xdc\xf3\x1c\xa4\x9c\x06\x0a\x90\x0d\x14\xb0\xc1\xa6\x7e\xb4\x10\xc9\xab\xe7\x22\x59\x62\xe2\xc7\x56\x03\xd1\xaf\x8d\x63\x03\x95\x75\x0f\x4e\xb2\xe8\xea\x77\xc7\x49\xed\x30\x44\x7c\x51\x5a\xeb\x35\x4f\xaf\x5a\x16\xfa\x9a\xad\xf4\x46\x2a\x05\xde\x75\xb5\x6e\xbd\x54\x6f\xbf\x42\xa1\x89\x26\xaa\x8a\x79\x66\x4e\x52\xb2\xc0\x09\x7a\xb2\xd8\x3c\x3d\xc9\x62\xf3\xe4\xb8\x2b\xe5\x09\xb4\x20\x5a\x6e\x5b\x26\x08\x81\x21\xfc\x3d\x93\xcb\xc3\xf7\x13\x54\x69\x84\xe9\xeb\x64\xe8\xd6\x1e\x8e\xae\x91\xc7\x27\xaf\xba\xe5\x04\x05\x12\x8d\xfb\x45\x4d\x11\x78\xb5\xc1\x0c\x0c\x6b\x63\x63\xd5\xd0\x7c\x99\x1a\xba\x5f\x8a\x4f\xac\x7f\x73\xe8\xbf\x69\x8e\x16\x99\x67\xba\x27\xde\xda\xe3\xa3\xb0\x23\x80\xac\xf4\x01\xd9\xc2\x08\x50\x58\x38\x94\x4a\x5c\xf5\xfb\x57\x63\x8d\x04\x78\x5e\xf3\xb9\x9b\x42\x10\xc6\x34\x89\xf6\x7f\xc0\x75\x70\x15\x61\x2e\xda\xb3\x1d\x1b\xf5\x0d\xc2\xc6\x37\x0c\x75\x01\x77\x68\xdb\x1b\xf0\x36\xcc\x4c\x11\x49\x05\x7c\x44\xa4\xb0\x18\x15\xb8\xcc\x4f\x0c\xf7\xdd\x5d\xac\x89\xb9\xc2\x49\x2d\x1f\x36\x76\xd8\x44\x97\x79\x7d\x51\xac\x5c\x21\xa8\x52\x18\x51\xc1\xff\x30\x23\x64\x2d\x8d\xb6\xed\xd0\x27\xb4\x8d\xde\x23\x9e\x21\xb4\x95\xbf\x3f\x59\x1d\x5c\x2d\xf2\xcf\xb7\x19\x38\x6c\x47\x49\x28\x60\xf9\x7e\x0a\xbf\x3f\xd4\x4c\xdf\x27\x9b\xe9\xdb\x6c\xca\x60\x1a\x23\x24\x69\xea\x2a\x71\xdd\x4d\x45\x56\x0b\x53\x77\xd2\x93\xd5\xc5\xb6\x56\x96\xf5\xaa\x9f\xed\xa6\xe2\xec\xaf\xc2\xa3\xb3\xac\xd1\xdb\x51\xd9\x99\x15\xbc\x1f\x8d\x67\x3f\xca\x1e\xb5\xe7\xff\x81\x13\x7b\xc7\x79\xf5\x2b\x36\x6f\x37\xb5\x1b\xcb\xde\x8b\x66\xf4\x16\x93\xeb\x87\xda\x55\x47\xda\x45\xbc\x45\x51\xda\x1d\x9d\xb0\x09\xa3\x0e\x3d\x59\xfe\xe0\xa8\x15\x66\xc1\x77\x8c\x16\x21\x53\xf8\x06\xf1\xe7\x22\xa9\x9e\x65\xb3\x3a\x81\x83\x0c\xa3\x12\xb3\x63\x4c\xd6\x11\xaa\x72\xb1\x4c\x1a\xe9\x88\x9c\x0e\x8c\x58\x4e\xaa\x79\x7d\x0d\x82\x12\x6e\x4d\xa4\x22\xeb\xb6\x4e\x88\x23\xa6\x31\x7e\xa9\x66\xcd\x4c\x08\xbc\x8a\x2a\xb4\x56\x7b\x46\x69\xd1\x94\xec\x71\x8c\x39\xdf\x1f\xde\xdc\x28\x9c\xc4\x07\x26\x1f\xa8\xb4\xbd\x18\x0d\x79\x14\xba\x10\xf6\x50\x7d\x01\x27\xa9\xf0\xc1\x4c\xfa\x0d\x59\xad\xfb\x64\x7c\xa2\x76\x15\xe0\xd3\xbe\xa3\x54\x87\x1c\xa5\x59\xcf\xe6\x19\x13\x6f\x65\x4c\xfe\x89\xb5\x8a\xdb\x55\x75\xff\xbd\x7e\x7e\x65\xeb\xa7\x6b\xce\x4d\x6d\x69\x77\xce\x7d\xab\xcb\x51\x01\x96\xbd\x6d\x03\x80\x75\x6a\xac\x9e\xaa\x28\x0d\xd9\x8f\x0e\xb1\xfa\x53\x76\x5d\x69\x81\x8c\x21\x71\x21\x16\x76\x10\x42\xac\x36\x4d\x27\xc1\x6f\xab\xe9\xe3\x50\xd6\xa4\x7c\xb8\x48\xd1\xee\x27\x0a\x15\x2b\x32\xc7\xf9\x09\x38\xb5\xc0\x78\xd5\x09\x08\x84\x20\x01\x83\x54\x9f\xe1\x9b\x0a\x7b\xae\x42\xb9\x92\x8c\x96\x08\x45\x11\x9e\x42\x1d\x69\x20\xf6\xa6\xa4\x13\x59\xe8\xc2\xce\x28\x13\xf2\x7d\x5d\x4c\x99\xab\x02\xe6\x7d\xff\x56\x6f\xd5\xf7\xed\x72\x69\x93\x4a\x72\xdb\xe3\xe3\xc3\xdd\x1e\x1f\x1f\xfa\x1f\x1f\x5b\x1f\x15\x1f\xfa\x1e\x15\xfd\x4f\x95\x0f\x8d\xa7\xca\xad\x5e\xbc\x0a\xa6\x74\xb3\x48\xe6\x32\xa6\x41\x24\xaf\x64\x0e\x97\xe8\x01\x32\xd7\x7b\xb1\xc8\xba\xab\x14\x0c\xa4\xfc\x4d\x17\x45\xf2\x83\xc2\x25\x1f\x5b\x34\x1c\x81\x7b\x0f\xb3\xf5\xba\xcc\xcf\xcf\x39\xf7\xb8\x50\xb7\x5f\x12\x78\x3a\x3e\x41\x95\xa3\x16\x1d\xd3\x49\xd9\x0f\x30\x7f\xa2\x47\xa3\xfc\x7b\xbe\xc5\x44\x91\x71\x7e\x70\x74\x62\xfa\x47\xb5\x28\x10\x60\x0d\x57\xd7\x26\x2a\xa6\xd3\xee\x91\xf1\xf1\x6d\x1b\xc7\xfb\x22\xa9\xec\xde\xb6\xf2\x52\x90\xbd\xc5\x7e\x64\x2a\xc6\x9b\x77\xe4\x0e\xfa\x2e\x5f\x53\xc3\xfd\x3f\xb6\xd9\xc3\xb7\xd5\xe8\xd0\x6a\xc4\xe6\xf6\x91\xaa\xb4\x14\x65\x0b\xb5\x67\x8f\xdb\xde\x84\xb5\xe2\xad\x71\x97\xaf\x5c\x00\xcf\xd2\x36\x9d\xce\x68\xf5\xe5\xd8\x54\x64\x7e\xf1\xfe\xed\xff\x7d\xfe\xe6\xf4\xf9\xfb\xf7\x6f\xdf\xc7\x01\x56\x47\xc1\xe4\x7a\x93\x64\xb1\x28\xea\xde\x59\xd6\x9b\x17\x29\x68\xc3\x0f\x03\xb3\x52\x5e\x98\x7f\x6c\x5a\x30\xf3\x15\x04\x1b\x3c\xf5\xba\xb4\xb9\x3f\x85\x28\xa5\xc4\xbe\xad\xae\x3c\xe1\xd3\x8d\xb4\xc7\xe7\x4d\xa7\x57\x9c\x5f\xa3\x32\x54\xd7\xc1\xf6\xf6\xcf\x1f\x4f\xdf\xbe\x38\x7d\xff\xe4\xcd\x1f\x9f\x9f\x3e\xff\x3f\x4f\x9f\xbf\xfb\xf8\xf2\xed\x9b\x38\x00\xf3\xf7\x5e\xb1\xaa\x7b\x82\xf9\xd4\x97\xdd\xe7\xaf\xdf\x7d\xfc\xef\x78\xec\xd7\x81\xda\x56\x3d\x3f\x47\xc3\x58\x67\x47\x51\x7a\x97\xe2\xbc\x27\x20\xc5\xfd\x68\x4c\x41\x7b\x2e\x5a\x1e\x05\xa8\xd7\xb8\x34\x5a\xfc\xd6\x78\x1c\xd1\xb4\x40\x7e\xb7\xbb\x0d\x80\x46\x32\x72\xb0\x88\xd6\xe4\xc3\x83\xbb\x43\x81\x30\xf7\x36\x7f\xb9\xb5\x4e\x07\x50\xa0\xda\x74\x0f\x32\xcb\x16\x11\x2c\x02\xeb\xa8\x91\xe1\x9b\x7d\x01\x04\xa5\xff\x95\xc7\x1e\xbf\x2b\x5e\x33\x02\xff\xaa\x0c\x4d\x5c\x44\xfd\x87\xd1\x18\x9b\xb0\xef\x65\x32\xe4\xb1\x65\xb9\x2a\xd0\xc7\x28\x0f\xce\x1d\x07\xf2\xb5\x15\xab\xb8\x80\xc0\x0f\xaf\xb7\x18\xbf\xf5\x43\x0b\xda\x8d\x1a\x59\xfd\x92\x23\xbe\x8f\xcc\xfe\x28\x04\x69\x7c\x4d\x33\xc2\xe5\xaa\xba\xb0\x1d\xc2\x80\xd6\x4a\x8d\x3e\x4e\x28\x78\xb6\xe7\xe9\x09\x62\x64\xe8\x30\x14\xbc\xaa\xca\x76\x6f\x81\x7e\xf8\xf6\x98\x93\x1d\x16\xcc\x02\xf2\x6f\x6e\x68\x97\xaa\x94\xd0\xfb\xc8\x31\x08\x5e\xaf\xaa\xba\xb7\x4c\xaa\x8a\xa2\x4f\xea\x3a\x7b\x75\x41\x69\xb4\x8a\xa1\xc2\xdf\x30\xbc\x02\xf2\xab\x2e\xc7\xc6\xd3\xad\x43\xe9\x8b\xc7\x9a\xf9\x65\xb1\xb4\xc7\x69\xc7\x65\xaf\xde\x91\x95\xc2\x15\x37\x1e\x3d\x38\x52\xeb\x90\xa2\x6a\x43\x62\x74\x64\x4a\xb0\xab\x8b\x7c\xea\x78\xf0\xd9\x42\x0f\xac\xa3\xf1\x43\xbb\xe1\x43\x5b\x3e\xef\x6d\xd4\xb3\x4a\x0e\xdd\x45\x61\x14\xf6\xad\x0b\x8b\x0e\xb4\x0d\x7f\x99\x7d\xc9\xca\x2a\x73\xea\xb9\x0d\xe9\xf9\xa2\xe2\xf9\x52\x44\x46\x7d\xf5\xa5\x66\x06\xa1\x8f\x3e\xf9\x31\xab\xb2\x8e\xde\x61\xbc\x1c\xf1\x9b\xa9\x3d\x72\x64\x86\x40\x4a\xb5\x1f\x20\x5f\x37\xb6\x46\x05\x67\xd0\x3b\x51\x5f\xc8\x1b\xb8\x5b\xfd\xcd\xcd\xa1\x1d\x5c\x48\xea\x3f\x52\x84\x27\x6b\xad\x16\x13\xbc\x90\xab\x7c\x50\x5a\x0b\xad\xc5\x5b\x4c\x2c\x4a\x93\xa4\xa9\x17\x33\xf7\xed\x09\x02\xdc\x40\x92\xde\xba\x03\xbe\xb2\x88\x39\xdd\x96\x43\x6c\x57\xa5\xdf\x18\xfe\x7d\x93\x8b\xc2\x2d\x7d\x10\xfe\xb3\x3d\xbe\xee\xe8\xca\xb9\x85\x93\xf0\xc4\x42\xd8\x64\xd2\xb5\x9d\x85\x24\x38\x7c\x92\xcf\xca\x28\xcb\x72\x82\xb6\x0f\x7d\x40\x50\x3a\xd3\x8a\x24\x6d\x65\x5d\x10\xb4\xa8\xdc\x10\x1d\x7d\x57\x3f\x71\x7a\x49\x7b\x54\x77\x55\xa6\x8f\x2e\xf8\x3a\x47\x51\x67\xe4\x3b\x27\xc1\x46\x1e\x82\xab\xaa\x86\x34\xf9\x1e\xed\x76\xda\x8c\x63\xe3\xa1\x11\x1e\xb4\x79\xfe\xee\x98\x93\xe0\xc2\xa4\x79\x07\x47\xa3\x1c\xfc\x4a\x1d\x1c\x28\x7a\xaf\x1b\x91\x55\x8f\xf3\x93\xb0\xd9\xaa\x0f\x9b\x77\x3e\xc6\x4b\xf9\xa7\x1b\xcf\x9c\x67\x75\x7b\x9c\xa7\xaa\x2b\xb3\x5b\xec\xb8\xb5\x55\x0d\xc5\x89\xb1\xef\xab\x9b\xfd\xb2\xfe\x1a\xef\x97\x1b\x8d\x6d\x4c\x67\x90\x66\xc2\x3d\x45\x88\xe9\x12\xde\x9c\x67\xf5\x5f\xf3\xfa\x42\x86\x72\xf1\x80\xb1\xec\x3b\x1b\xf0\x9c\x67\x75\x4b\xa0\x2e\x8f\x41\x6c\xd5\x0a\xec\xbb\x78\x3a\x34\xfd\xf7\x06\x4d\x6f\x15\x13\x7f\xe7\x13\x13\x6f\xa4\xed\x7f\xe8\xa2\xed\xff\x7c\xb7\xa8\x1b\x4e\x93\x3f\xb4\x9f\x26\x40\x85\x71\xbf\x79\x1d\xaa\xca\x4c\x09\x8c\xc1\x9b\x3a\x8b\x98\x20\x4c\xac\xdf\x5e\xca\xcc\x27\xde\x96\x5e\xbd\x6d\x27\xbb\x50\x80\xe7\xb6\xfb\xe3\x05\xf7\xaa\x9b\x1c\xf2\x8a\x5d\xc6\x3d\xf2\x76\x59\x13\x6d\xf5\x34\x70\x9e\xd5\x86\xbe\x1e\x8f\x30\xac\xbd\x09\xc8\x0c\xd0\xe2\x67\x7e\xe3\xdd\xa7\x7d\xd4\xe7\x02\x15\x48\x03\x94\xbc\x05\x08\x96\x73\x92\xd4\x03\xbf\x33\x6f\xd4\xfb\x77\xf0\x91\x9a\x42\x95\x85\x8e\xcf\x9d\x69\x54\xf9\x11\xbc\x48\xaa\x0b\xe6\xa9\x95\xc1\x60\x95\x90\xdf\x44\xbe\x6d\xc2\x7b\xe9\x3d\x8b\x9d\x97\x64\x7b\xf1\xf2\x1a\x3c\xe7\xad\x7d\xef\x75\xb6\x9b\x67\x86\xda\x5e\xc6\x25\x80\xbf\x4a\xcf\x9b\xb6\x53\xa3\xf5\xd8\xe9\xaf\x70\x51\xd4\xf9\xf4\xda\xec\x88\xa7\x4e\xbc\x52\xb8\xa8\xaa\x4a\x0d\x00\xdd\xb2\xbf\x51\x67\xbb\x9a\x9a\xa6\xee\xa3\x96\x09\xad\xfa\x63\x41\xd2\x45\x69\xbb\x2a\x37\x57\x66\x92\x87\xce\xfa\x4c\xd0\xf6\x2a\x99\xb2\xce\x8b\xa2\xf4\xdb\x8e\xb8\xef\x40\x9f\xb2\xeb\xfd\x40\x29\xd3\xc0\xd6\x65\xc7\xa3\xbb\xcb\x88\x44\x98\xef\xbd\x66\x21\x73\xfb\x19\x05\x9a\x28\x5f\x4c\xca\x4c\xec\x64\xa5\x9f\xeb\x34\xa1\x40\x50\x90\x88\x4e\x74\x75\x62\xb8\x56\xbf\xe3\xa3\xc6\xd9\xee\x83\x65\x52\x56\xd9\x8b\x59\x91\x30\xf1\x98\x5c\x2a\xe2\x56\x1d\xee\xeb\xba\x1c\xb7\xcf\x9a\x86\xa5\xd9\x46\x44\x15\x08\x47\x54\x27\x86\x6b\xf5\xdb\x8b\xa8\xd3\xa8\x40\xee\x40\x97\xef\x40\xae\x2e\xce\xcf\x67\x59\x2b\x66\x1e\x2a\xb8\xe7\x8e\x45\x47\xfd\xf2\x84\x69\xa7\xfa\xa6\xd3\x37\x5d\x92\x1f\x63\x3f\x65\x3e\xd4\x94\x18\x4a\x03\x5a\x95\x6c\xbe\x48\x90\x73\x01\x19\x59\xfd\x3e\x1e\x99\x5a\x98\x71\xef\x0d\xe0\x9f\xe9\x40\xe9\x6b\x38\x4c\xda\x2e\x60\xac\xcb\x80\x7e\x6b\x30\xa0\x2d\x6f\x36\x1e\xbe\x77\x51\xe8\x20\xae\xc3\x45\x81\x48\x14\xa5\x4e\x2b\x4a\x6d\xec\x5b\x27\xcb\x01\xcc\xab\x76\x9e\x22\x56\x33\x26\x05\x79\xf5\x02\x3d\x60\x88\x99\x82\xa7\xd6\x70\x64\x64\xbf\x07\xc3\x23\x96\xeb\x73\xa7\x61\x2b\x5a\xb7\x35\x80\x6f\xaf\x2c\x57\x7a\x02\xb3\xb8\x0a\xb2\xc2\x62\x3a\x60\x49\x55\x2c\xac\x7a\x35\x66\x4e\xb5\x08\x1f\x44\x54\x6e\x84\x12\x76\xfc\x6a\x22\xe9\xb6\x82\x7c\xb2\xa0\xc7\xbf\x70\x3b\x3b\x66\xac\x03\x63\x4c\xe7\xd5\xbb\x6c\x91\xe6\x8b\xf3\xe3\x45\x51\x0f\x82\xbc\xfa\x90\xd5\xf5\x8c\x1c\x6b\x24\xe9\xdb\xc5\xec\x7a\x10\x46\x2a\xf9\xb8\x28\x07\x06\xda\xc6\xd8\x58\x65\x24\x14\x3d\x7f\x33\x48\x4a\xa1\xf1\x6f\x51\xf3\x56\x53\xed\xb1\x42\x88\xe3\xf8\xa1\xd6\x00\x4f\x96\x48\x2d\x4c\xff\x22\xde\x07\x9a\x80\x0f\xd8\x37\x95\x5c\x02\xbd\xf9\xaa\x82\xa7\x6f\x41\x04\x04\xb5\x89\xc0\xe3\x0c\xe5\x3e\x99\xe5\x49\x35\x08\x44\x52\x10\x46\xe4\xca\xc6\xca\xc4\xc4\x30\x0a\xa6\xf9\x22\x99\xcd\xae\xed\x7c\x99\x2c\xe8\x98\xb6\x9c\xe7\x20\x86\x76\x86\x25\x35\x97\x4e\x57\xb4\x4c\x98\x52\x02\x7b\x31\x8f\x17\x2c\xd4\x8f\xf4\x82\x63\x85\xa7\xe9\xa4\xa3\x55\x51\xd6\x5f\x55\x1c\xb3\x53\xac\x98\xdd\x1f\xe5\x99\x5f\x92\xdd\xc4\x2d\xff\x0a\x82\x95\x5f\xcc\x69\x49\x97\x98\xfa\x16\x2f\xf2\xdd\x2f\xe8\x2d\x3e\x47\x6c\x3f\x19\x9e\x87\xf6\xb6\x8b\xfe\x77\x9e\x7b\x7e\xc7\x75\xfd\x3b\xff\x6d\xdd\x7b\x46\xfe\xc1\x3e\x23\xcf\xda\x85\x07\xbf\x05\x81\x8a\x23\x38\x28\xda\x60\x0b\x0e\x75\x1f\x22\x71\x8f\xce\x80\xd8\xef\xec\xe2\x0b\xa7\x82\x48\x7b\x52\x4d\xe8\x64\x10\x47\x13\x24\x49\xd1\xf3\x31\xcd\x46\x54\x94\xa9\x69\x2e\x9d\xd7\xd9\xfc\x08\x2c\xd3\x1e\x4a\x25\xe7\x6a\x35\xab\xe3\xc3\xc8\x6c\x86\x11\x32\x33\x03\x2c\xf5\x58\xe3\x16\xa0\x4a\x27\x38\x89\x91\x05\xf6\x42\x59\xdf\x29\x19\xbd\xd9\x4c\x64\x38\x17\x95\xc1\x0a\x43\x74\x42\x0d\x18\xc7\xf1\xa1\x20\xc6\xf0\x9b\x57\x49\xd6\x91\xa2\x29\x69\x40\x7d\x14\x19\x95\xa8\xf4\x87\x66\x7a\x38\x52\xb5\xef\xc5\xf1\x61\xbf\xbf\x67\xf4\x48\xb5\x76\x70\xf4\x9f\xf8\xab\x71\xed\xd7\x20\x39\x4a\xb3\xaa\x2e\x0b\x47\x6b\x98\x18\x11\x36\x16\x92\x35\x09\xb7\x1f\x7e\x54\xe0\x25\xef\xa8\x66\x26\xe8\x16\xc3\x60\x12\x40\x64\x59\x96\x6f\x1a\x6b\x96\x7e\xed\x5c\x62\xc1\x9c\x91\x43\x44\x46\x1f\x5e\xd6\xd9\xfc\x03\xcb\xd5\x26\x38\xf2\x55\x45\xfe\x31\xbc\x1a\x83\xbb\xd8\x81\xb8\x64\x56\xa2\x34\x73\x0b\x36\x3c\x2b\x8a\xd9\xc0\x5d\x7e\x49\x09\xca\x4e\x29\x69\xf3\x6b\xe6\x44\x33\x7a\x56\xa1\x21\xfa\x77\x8e\xda\x0c\xf8\xbb\xe6\x45\xa2\x15\x73\x3d\x40\x4c\xda\x65\xd6\x22\x1d\x75\x88\xcf\x9f\xac\x8a\xdc\xf2\x2c\x04\xcb\x0d\x7f\x51\xd2\x37\x08\x47\xea\xdb\x50\x24\x37\xb6\xb1\x11\xa5\x08\x37\xbc\x01\xd0\xe8\x4d\x76\x2f\xeb\x82\x0b\x4b\xee\x6b\x51\xc8\x1d\x24\x0d\x15\xa9\xbc\x5a\x2c\xf4\xdd\x84\x91\xf4\xe6\xcc\x84\x68\x26\xc5\x66\xeb\xe0\xdf\xfb\xcf\xb7\xff\xcc\x8d\x67\x77\xbd\x63\x5c\xad\xa1\xe0\xc3\x8b\x75\xce\x92\xaa\xfe\x60\x9c\x0e\xda\xf5\x8e\xdd\x8e\x96\x58\x16\xf7\xd9\x80\xca\xd9\xd0\x0f\x7d\x50\x6d\xd3\x4a\xeb\x21\x67\xb7\xda\xd6\x2b\x7f\x73\x2a\x18\xa8\xd3\x22\xf7\x5a\xc4\x43\x21\x58\xcd\xef\xa1\x2b\x47\x4f\x05\xd2\x64\xdc\xa0\x95\xac\x1f\x56\x4e\x10\x8e\xac\x94\xa1\xa9\x26\x34\x80\x4b\x17\xad\xb5\x27\x66\x6c\x1a\x16\x41\x15\x14\x1f\x73\x15\xc5\x20\x7d\x5a\xac\xd0\x7e\x8a\x7e\x52\x50\xa6\x2e\xa2\x8a\x51\xb8\x24\x5d\xdc\xb5\x17\x9a\x71\x94\x2a\x03\x31\x46\x69\x46\x82\x0a\x6e\x2b\x54\xa4\x0f\xc2\x69\x24\x4d\x7a\xb6\x23\x00\x72\x17\x9b\xcd\xd8\x7b\xdd\x1d\x4e\xf6\x4e\x0f\x20\x1b\x59\x9f\x5f\xec\x38\xde\x3c\x8d\x8d\xb1\x14\x3c\xaf\x0f\xf7\xb1\x12\x76\x23\xca\xd6\x9a\x11\x0d\x75\xad\x00\x86\x89\x9a\x08\x5e\xc8\x9e\x4f\xa6\x9e\x27\xc7\x36\x4b\x6f\x35\x91\x5f\xe3\xfc\xbc\xed\x2c\xda\x1d\x3a\xb6\x7a\x7d\x9b\xed\xc7\x22\x95\x58\x00\x4c\x11\x4f\x3a\xf2\x41\x84\xcf\xf2\x45\x52\x5e\x7f\xc8\x92\x72\x72\x81\x63\x02\xba\x79\xe7\xf5\x85\x4b\x97\x94\x8a\x24\xcc\xa4\xc0\x52\x2d\xc6\xd6\xe1\xba\x63\xb7\xa2\x62\x46\x81\xfa\x5c\x64\xd0\x61\x02\x54\x1b\xcd\xb2\x29\xe0\xe0\x80\x29\x8d\x3f\x59\xd1\xc1\x51\x18\x95\xf9\xf9\xc5\x96\xe0\xfb\x47\x58\xf9\x7b\xbc\x81\xc8\x76\x28\x10\x33\x67\xfa\x14\x0e\x54\x3f\x95\x50\x6d\xf9\x8a\xa8\x4c\x52\xf3\x94\xed\x80\xb9\xa7\xae\xe4\xf1\xe1\x56\x54\xad\x63\xa3\x34\x4d\x64\x4c\xb5\x39\x2d\xd1\xac\xb8\x8c\x2e\xf2\x73\x0a\xb2\x32\xcf\xd3\x68\x9e\xa7\x2f\x01\xc3\xac\xb2\xf9\x7e\x40\xb5\xb8\x8c\xe3\x18\x8b\x48\x77\x82\xc5\x65\xb3\xcb\x82\x9d\xe7\x69\x3c\x2b\x2e\xf7\x5f\x27\xf5\xc5\x70\x3a\x2b\x8a\x72\x30\x10\x15\x1e\xcc\x8a\xcb\xf0\xc1\x43\x00\xe8\x9e\xa3\x79\x0e\x36\x5d\xa4\xff\x2a\x07\x56\x62\x9e\xcb\x61\x2d\xb3\xea\xfb\x43\xd3\xdf\x88\x67\xd9\xcf\xf3\x74\xff\x08\x07\xa1\xd1\x46\xc3\xd5\xe3\xcd\x25\xc5\xe0\x09\x54\x24\x25\x98\xe7\xe9\x16\x8f\x32\xf8\x20\x49\xc1\xc8\x4f\x29\x14\xc0\x2f\xee\x25\xf9\x97\x96\xfa\xfd\x62\x52\xbc\xcd\xd1\xff\x37\x09\xee\xbc\x22\xb0\xdf\xd9\x22\xb0\x8f\x30\xed\x18\xee\xfc\x03\x4e\xba\xed\xd0\x1d\x20\x50\xda\x84\xab\x83\xff\x7e\x8a\xde\xa3\x30\x09\x41\x37\x78\x29\x6d\x0d\xda\x3e\x22\xff\x4c\x6f\xa5\x3b\xad\x30\x8e\xe3\x80\x82\xa0\x30\xb7\xb3\xba\x28\x81\x71\x7f\xe6\xcc\xff\x96\x06\xc6\xbb\xe4\xac\x28\x3e\xad\x96\xb2\x50\x63\x3c\xfe\x70\xbf\xee\x08\xd0\x18\xae\x48\x25\x8e\x66\xaf\x37\xf4\xd4\x80\xe5\xb4\x87\xa7\x1b\xfd\x36\x72\x36\x76\xdf\x84\xde\x6d\x14\xcc\xb2\xed\x83\x61\xc0\x99\x63\x62\x75\x43\x9a\xec\xe2\x5a\x62\x4a\xae\xe0\xef\x45\xfc\x0f\xde\x5a\x6e\x6e\xd6\x14\xdc\x01\xc5\x81\xe0\xbb\x05\x7f\xdf\xdc\xd8\x63\x24\x6a\xc5\xe5\x02\x60\xf8\x9b\x83\xf1\x15\x67\xcf\x0e\xaf\x9a\x92\xf4\x7b\x4e\x52\x9e\x57\x02\xb5\xbc\x58\xc8\x81\xd4\xfe\xb5\xca\xac\x8e\xc7\xe0\xe5\x8a\xe7\x28\x0f\x48\x2c\x91\x05\xd6\x95\x7a\x4f\x54\x29\x46\x33\x23\x97\x0c\x06\x5a\x71\x1c\xa8\xf9\x09\xc2\xf5\x56\xab\x44\xf6\xf0\xe6\x06\xf4\x64\x94\xc7\xb9\x7e\x1f\xc1\x14\xde\xda\x19\x1d\x58\x90\xa3\x33\x32\x96\x30\x34\x9c\x6b\xc2\x28\x18\x0d\xd1\x58\xe8\x98\x85\xb2\xf4\x18\x33\x4e\x36\x55\x10\x42\xc7\xcb\xac\xde\x8b\xd1\x63\x1e\x38\x4d\xac\x4b\xed\x8a\xb2\xcc\x6a\x63\x89\x01\x54\x63\xd9\xc5\x72\xb9\xb8\x87\x46\xb5\x9e\x66\x14\x3a\x49\x20\x99\xdb\x41\xbd\x2c\x98\x45\x32\xcf\xaa\x65\x32\xd9\x5a\x57\xb7\xeb\x30\x78\x23\x2b\xeb\x3a\x10\x5a\xfa\xa7\xca\x0e\xb3\xab\x3a\x83\xd8\x1e\x9b\xba\x27\x18\x7a\xbf\xfe\xc4\x57\x3d\xa2\x77\x50\xb3\xd8\x10\xa9\xc0\x30\x00\xb6\x7a\x87\x0c\xd5\xa6\x87\xc5\x4e\x93\xe0\x8e\x57\x47\x27\xb8\xd6\xbf\xc2\x6b\xe2\xaf\x4d\x4d\xbb\x8b\x75\xf1\x59\x0c\x7f\x6b\x59\x0c\x6f\x52\xcc\xf6\x32\x2f\xbf\xdd\xe1\xfd\xee\x77\x3b\xbc\xdf\xfd\xce\x7e\xbf\xdb\xa8\x6e\xfd\xfb\x3b\x98\xd2\xfc\xbe\x5d\xf9\xb9\x45\x27\xe7\x3b\x8f\x71\x91\x80\x24\x4b\x31\x6b\xb5\xb4\x98\x40\xbb\x73\xe2\x0b\x5e\xd0\xf2\xcc\x7b\xe4\x59\x1e\x76\x24\x35\xd0\x5b\x96\xa1\xd4\xee\x64\xaa\x0e\x3e\x3f\xb5\x7a\x11\x7c\x42\xc6\x4f\xe4\xbe\xf0\x27\xf8\x82\x1e\x61\xf0\x4d\x36\x1c\x92\x86\xf2\x6e\x47\xf2\x51\x85\x38\x57\xeb\xdd\x28\x21\xbd\x10\x7d\xc9\xa7\x1b\x9d\x04\xe0\x66\xd2\x9e\x38\x6c\xce\x5d\xd2\x8c\x1d\xdb\x44\x64\x66\xe8\xab\x2e\x4a\xe6\xb5\x32\x3c\x5c\x7b\xde\x23\x0c\x13\x6a\x0e\xdc\xdc\xf6\x01\x04\xef\x8d\x75\x96\x94\x69\x71\xb9\x20\xa4\x40\xfe\x6f\x27\xee\xf0\x6c\xc9\x1e\x43\xd4\x13\xd6\xd0\x13\x0a\x1d\xcb\xad\xb5\x97\xbb\xe3\xc0\x2f\x4a\x66\x5e\xfe\x4c\x10\x2d\xf9\x6a\xc2\xa6\x69\x13\x44\xff\xf4\xff\x91\xf7\xa6\xeb\x6d\xe3\x4a\xc2\xf0\xff\xb9\x0a\x9b\x6f\x46\x21\xc7\xb4\x62\xe7\xec\x52\x98\x8c\xdb\x71\x9f\xce\xd3\xd9\xc6\x76\x77\xcf\x19\xb5\x8e\x86\x16\x21\x8b\x1d\x9a\xd4\x21\x29\x2f\x47\xe6\x25\x7d\x37\xf1\x5e\xd9\xf7\xa0\x0a\x4b\x01\x04\x25\xd9\x49\x2f\x33\x6f\x7e\xc4\x22\x50\x00\x0a\x5b\xa1\x50\xa8\xa5\x43\x2c\xf9\xad\x1a\x35\x97\x80\xfe\x11\xef\x45\x22\x74\x6b\xc5\xea\xe5\xc2\x18\x4b\x9a\xf2\xb9\x03\x19\x27\xc9\xcf\x3b\x8a\x13\x6b\x0d\xaf\x59\x52\xf6\x6a\xb7\xc7\xea\x21\xd2\xb4\x8c\xe5\xb6\x38\xe5\xd5\x5a\x69\xe1\xe0\x00\xc7\xdb\x02\xb0\x7a\x8d\xed\xa1\x51\x2f\x09\x3c\xe1\x2a\x69\x15\x92\xd3\x29\x37\xc2\x91\x09\x6d\x23\x06\x13\x6d\xa5\xb9\xd6\xd5\x6f\x62\xcc\x70\x45\xda\x3d\x72\x0f\x8b\x69\x21\xe0\x86\x31\xd7\x91\x1c\x73\x35\xde\xe0\xbe\x41\x6d\x04\xab\x59\x7b\x43\x3c\x44\x50\x07\x4a\x86\xe6\x34\xb4\xa4\x91\x5b\x6c\x98\xf5\x4b\xc8\xd8\x38\x6b\x3b\x2e\x36\x50\xc7\x8a\xf9\xb9\x3b\xba\x1d\x89\xfd\xb2\x7d\xed\xa6\x15\xdf\xda\x79\x94\xf0\xca\x43\x71\xd3\x71\xaa\x48\xa1\x94\x50\x9b\xa7\xb1\x38\x53\x71\x75\x77\xcb\x5e\x1e\x30\xce\x52\xd4\xf1\xb0\x4d\xc5\x97\xb6\xf4\xe2\xd2\x7d\xa2\x3f\x80\xda\xd7\xc4\x23\x01\xe9\xab\x51\x9f\x6d\x76\x6c\x35\x6f\xf9\xac\x68\x75\x35\x8a\x5c\x48\x04\x2b\xe2\xaa\x1d\x49\x85\xa8\x99\xaa\xa3\xae\xd1\xd4\xfd\xae\x4a\xf3\xcb\x1d\x51\x66\xa7\xc8\x77\x62\x3d\x9a\x84\x4d\xdb\x49\x31\xce\x6c\x9c\x65\xc5\x0d\x4b\xfa\x1e\x6c\x9c\x07\x3a\xa3\x91\x47\xe2\x67\x38\xa5\x99\x6c\xe5\x95\x66\x23\x5e\x8f\x18\x67\x43\x72\x6f\x3c\x5f\x89\x7a\x37\x8f\xb2\x2c\xf5\xc0\x61\x7e\xb4\x8f\x9d\x4d\xea\x32\x0f\x39\xba\xd2\x3c\x49\xa7\xac\x8a\x46\xe3\x30\x1d\xfe\xa2\xce\x7b\x20\xfe\x42\x04\xcd\x0c\xd3\x17\xf0\x77\x0f\x22\x28\xed\xed\x05\x2b\x81\x96\x88\x83\x66\xbd\xe7\x75\xbe\xf6\xa4\x41\x10\x34\xb2\xa8\xc3\xbb\xa7\x98\xeb\x8b\xfd\xb8\x09\x86\x1d\x46\x85\x88\xd6\xc1\x30\x7d\x21\x2b\xa2\x9e\x09\xad\xc5\x8a\x10\xa3\x74\x1c\x1e\x4a\xaf\x43\x2e\x4b\xc3\x87\xb8\x22\x9a\x38\x7c\x11\xd9\x1b\xec\x7f\xb4\x4f\xa2\xc9\x23\x9c\x12\xfd\x42\xbe\x67\x26\xdb\x38\x9f\xd9\xe8\x26\x68\xf2\xf9\x7e\x82\x26\x9b\x1d\x05\x81\xc2\x84\x83\x95\xb1\x3c\xfd\x90\x93\x14\x75\x2c\x84\xb0\x38\x2e\x69\xf4\x8f\x16\x03\xd1\xa9\x44\x84\x71\x33\x88\xda\x82\x52\x5a\xe0\xac\x90\xe2\x49\xef\xda\xbc\x7c\x57\x21\x77\xdb\x1d\xda\x01\x0f\x68\x5a\xb3\xc1\xdd\x2d\xa7\x79\x6a\xb0\x83\x86\xf6\x9d\xf3\x1a\xb9\x96\x6f\x6f\xc0\x55\xfc\xeb\xb6\x82\xf1\xfa\x1b\x8c\x7d\xc3\xd1\xf5\x75\x0b\xe0\xf5\xd9\xb2\x49\x30\x2d\xdc\x0d\xb1\xb2\xd3\xac\xef\x01\x1e\x44\xd7\x49\x30\x6d\x01\xa4\x43\x40\x75\x2c\x71\x89\x84\x47\x96\x77\x05\x06\xdc\xd6\x48\x06\xb4\x8c\x82\xef\xf3\xca\x2b\xd6\xe9\x79\x57\x01\x6e\x1e\x8d\x92\x4d\xa4\x34\xfb\x17\x14\xd3\x2f\xb2\xb8\x9e\x15\xe5\x95\x95\x7c\x13\xd7\xd3\xb9\x10\x7a\x53\x54\xe6\x71\x9a\x6f\x08\x25\xfc\xe8\x38\xc6\x6e\x41\xff\x27\x76\xd7\xe9\x16\x4a\x68\x20\xcc\x31\x3e\xb6\x7b\x20\xda\xbe\x5e\x2e\x52\xa1\x54\xb9\xcd\x7b\x45\xb9\xcc\x27\x59\x51\x2c\xfe\x17\x4b\xff\x49\x82\x8d\xe3\xa1\x8d\xe4\xa1\x8d\xe5\xa1\x8d\xe6\xe1\x9f\x7e\xdd\x27\x85\xcb\x65\x9a\xd8\xce\x34\x7e\xcf\xcb\x62\xfa\x76\x4f\x0a\xa0\xcf\xd0\x7e\x50\x80\x64\x81\x5d\xce\xca\xb8\x66\x7f\x5d\xa6\x49\xbb\x29\x92\x09\xd0\x7f\xfd\xee\xcd\xeb\xc9\xb7\x27\x7f\x6b\x41\xca\x0c\x80\xe2\x0b\xae\x05\xc1\x13\x51\x36\x7f\x72\x7e\xe4\xac\x43\x66\x60\x1d\xf1\x27\x87\xf8\x1e\x2a\x92\x39\x42\xdb\x15\x76\x78\xeb\x6d\x43\xa4\xa3\xd4\x3e\xcd\xd3\x6a\x7e\x0c\x5b\xbe\xf5\x2c\x41\x33\xd7\xb8\x27\xff\x73\x2b\x92\xf2\x9b\xb3\xc9\x57\x6f\xde\xbf\x7e\xf3\xfe\xaf\x2d\x83\x2b\x9d\xd5\xa1\xb5\xf2\x97\xcd\xbe\xce\xfe\xd2\x72\x00\xbb\xce\x15\x9b\xeb\x59\xc3\xfd\xb0\xe2\x7a\xd6\x90\xb4\xb3\xb5\x50\x64\x06\x40\x71\x02\xd6\x7a\xfd\xb0\xab\xc2\x17\x6b\x11\xe8\x3f\xb2\xf7\xa4\x0d\x8d\x27\x89\x64\xe7\x23\x7b\xc7\xf6\xcd\x7c\x28\xf2\x15\x12\xbd\xc8\xde\xcc\x7d\x91\x21\x8e\x41\xa4\x81\xee\x9a\xf9\xfa\xb0\x21\x70\x22\x96\x96\xff\x6d\x87\x0d\x9f\xb0\x6e\x6a\x2d\x38\x91\x8e\x2f\x6e\x13\xb1\xf1\xc8\x46\x2b\x26\x56\x67\xe5\xd8\xba\x3a\x59\x4d\xe7\x8c\x9f\xdb\x51\xb9\xcc\xfb\xf2\x43\xef\x78\x5c\x50\xa8\xb2\x34\xd1\xbb\x1d\x97\xf2\xc7\xb8\xac\xd3\x38\x13\xd9\x46\x9a\x58\x6d\xc5\x82\xc9\xd2\xda\xb9\x0e\x26\xe3\x7a\x3d\x7a\xff\xfa\xe8\xfc\xc3\xe9\xdf\x26\x67\x27\xe7\xe7\x27\xa7\xe2\x05\xea\xe4\xfd\xf7\x7d\x3b\x0b\x1f\x3f\xb7\x88\xec\x6d\x3e\x63\xa9\xab\xea\x6b\x56\x4d\xcb\x74\x51\x17\x65\xb4\x9a\x16\xf9\x2c\xbd\x5c\x62\xc0\x0b\xb0\xea\xbb\x29\xd3\x5a\x7f\x91\x70\x18\x68\xa0\x0d\x9a\x3b\x03\x6d\x03\x81\x96\xfb\x4b\x60\x10\x3f\xb7\x56\xf0\xe3\xaf\x55\x67\x38\xd1\x39\xae\x8b\x52\x5c\x03\x6e\xe2\xea\x68\xb1\xc8\x52\x26\x23\x24\x72\x3e\x17\x46\xb4\x82\x9f\x5a\x0d\x1a\x97\x63\x16\x57\x55\x64\x4a\xac\x76\x75\x1d\xc1\x0a\x00\x70\x32\xfc\xa0\xb1\x97\x0a\x5e\xa5\x24\x89\x0d\xcd\x1e\x06\x43\x37\xb8\x37\x99\xe4\xec\xb6\x3e\xe3\xac\xb6\x17\x3a\x06\x1c\x6f\x6b\x57\x11\x27\xcc\x28\xf1\x0e\x01\x81\xe8\x0a\x11\x19\x8a\xbf\xca\x6e\x4b\xf7\x51\xaa\xa8\xf2\xdf\x91\x4e\x1e\xea\x9f\x18\xd1\xc4\x16\xb1\xe1\x1a\x0b\xb1\x20\x48\x2e\xcc\xc1\x52\xd6\xe4\x0b\xac\x96\x0c\xa3\xf9\xa9\x43\xa9\xa2\x02\x12\xcb\x63\xbd\x97\x53\xa9\x8d\xea\xce\x23\xde\x05\x0f\xc2\x2c\x82\xd6\x94\x08\xe2\x45\xa6\x63\x90\x68\xbe\x0b\x81\x46\xe9\x78\xa8\xf5\x9b\x74\xee\x6e\x14\x79\x82\xe1\xed\xf5\x8c\x64\x1a\x18\xd3\x29\xde\xc2\x3d\x21\x1e\x71\x91\x58\xec\x14\x79\x76\xb7\x13\x4f\xa7\x6c\x51\x57\xd2\xbb\x6c\xdf\x83\xd1\xda\x5d\x90\xa1\xe2\x1c\x7d\x9a\x2f\x59\x23\x68\x33\x68\xd4\x44\x9c\x48\xfb\x04\x4c\xf5\xf6\x27\xde\xdb\x2c\x92\x80\xb2\xc7\x3f\xbd\xc8\xb2\xe1\x4f\x24\xec\x0a\xcf\x55\x50\xa3\x9f\xa0\xcb\xa4\xdd\xfe\x3c\xae\x3e\xdc\x28\xb1\x8e\x72\x92\x62\xe1\x83\x1a\x78\xba\xd8\x48\xc0\x41\x75\xfa\x78\xec\xd7\xac\xaa\x49\x1d\xa0\x88\x80\x74\xbc\x8a\xae\xfa\xf2\x27\xe0\x20\x3f\x82\x95\x03\x22\x5a\x35\x4a\x63\x78\xf7\xca\x46\xd2\x93\x60\x5e\xe0\x2e\x2d\x09\xb6\xaf\xd3\x82\x46\xfe\x52\xb8\x8b\xd0\xc5\xe2\x14\x98\x46\x9c\x74\x57\x53\xb3\x6f\xee\x35\xd7\xeb\x49\xd1\x9a\x3b\x5f\x79\x92\x51\x4e\x73\x2f\xe2\x4a\xc4\xb1\xe1\x4b\xd9\x68\x42\x65\xa1\x10\x53\x92\x15\x22\xc6\x54\x10\x62\x0b\x48\x8d\x48\x3b\x5d\x38\x13\x41\x01\x2c\x82\x28\xee\x8a\x34\x63\x41\xbb\xc1\x65\x66\x3a\xf3\xf9\xa8\x04\x2b\xfe\x7f\xbf\xc3\xb7\x19\x56\xa1\x37\x13\x6c\xd7\x8a\xd5\xdf\xe5\x9f\xf2\x42\x4f\x5c\x44\x43\x95\xf6\x7a\xbb\x72\xa5\xec\xa4\x28\xa4\x09\xc4\xc5\xbf\x5d\xd2\x77\xb4\xc7\xd7\x86\x7d\x7e\x71\x34\xdb\xb4\x53\x16\x06\xcd\x09\x8a\xb1\x31\x17\x62\x39\xf0\x7f\xc6\x29\x8b\x75\x5c\x05\x2d\xf2\xc7\x69\x18\x91\x09\x29\x02\x8b\xe4\x96\x32\xa2\xe2\x05\xd2\x8e\x08\xc5\x2b\xf0\x82\x66\x88\xc7\x45\x5d\x9c\x81\x3e\x57\xeb\x28\x97\x19\x02\xee\x26\xcd\xb2\x53\x3c\xf4\xcd\x23\xa8\x7d\x02\x7d\x94\x75\x50\x0e\x43\x6c\x0d\x17\x44\xd0\xd8\x27\xa1\x44\x6e\x42\xce\x02\x62\x16\xc5\xb7\x2f\xc9\xe1\x09\x46\x09\x42\xc2\x1d\xa5\x48\x2e\x2d\x89\xa3\x68\x07\xa9\xe2\x07\xdf\x14\x0e\x5e\x84\xd2\x09\x20\x86\x57\x5f\xc1\x4a\xff\x56\x47\xb0\x7d\x40\x93\x6e\x82\x5a\xa7\x6b\x30\xf0\xde\x25\x17\x01\x41\x8d\x43\x04\x43\x71\x23\x69\x65\x18\xc6\x4b\x2a\xb9\x91\x72\x45\x00\x6f\x90\xa9\x2d\x85\xad\x49\xa4\xd9\x91\xa1\x4e\xd5\x0b\xa2\xe5\xbf\x50\x1c\x34\x1a\xd6\x6b\x68\xc1\x75\xd3\xbe\xc2\x43\x9b\x0a\xdb\x34\x0f\x2a\x74\xb2\x55\x7c\x5d\x47\x50\x23\x5b\x02\x08\xda\x2b\x0e\x12\x28\x1d\xfe\x08\xe1\x1e\xf1\xcb\x23\x52\xd2\xfc\x52\x24\x39\x1c\x0c\x48\x5b\x52\x0a\x2d\x3b\xdf\xb4\x72\x70\x0e\x25\x5f\x2d\xb5\xba\x2b\x2f\xd4\x7b\x95\xc8\x19\x03\x02\x29\x9a\xa6\x90\x13\x99\x9b\x28\x78\x63\x00\xa8\xc4\xf2\xdb\xb0\x05\xbd\xb6\x17\x2c\x51\x9d\x10\x2d\x53\xdd\x04\x02\x06\x3d\x6a\xc2\x0b\x23\x70\x7d\x5d\x84\xb3\xb2\xb8\x12\xcf\x13\xfc\xe7\x4e\x9a\x57\x75\x9c\x4f\x39\xcd\x15\xf7\xa5\x20\x58\xf1\x9c\x48\x7c\xf6\xf9\x07\xc0\x06\x0d\xff\xbf\x5f\x17\x7e\x5d\xc0\x11\x90\xb3\x69\x6d\x3a\x51\xe6\x00\x4d\x28\x97\xdd\x40\x3b\xc4\x12\x29\x62\x2b\xce\xe3\xea\x5c\xa4\x9c\xdc\xd6\x2c\xaf\xd2\x22\x8f\x28\xe5\xaf\x5b\xb9\x94\xf0\x87\x4c\x25\xbb\x6a\x7a\xe5\x0d\xbc\x3d\x77\x35\x7e\x30\xf0\x3c\x15\xac\xc0\x7b\x21\xe0\xa6\x45\x5e\xd5\xe5\x72\x5a\x17\x65\x5f\xa3\xba\xc7\xeb\x11\xc2\x15\xec\xe6\x9e\x6a\x78\xcf\x7b\xe9\x0d\x8d\x36\x60\x0b\x4a\x5c\xfc\x92\x99\xd1\xee\x9b\xa0\x7b\x7b\xf5\x8b\x9b\x9c\x95\xc7\x1a\x87\x48\x83\x9a\x17\x0e\xa3\x7a\x87\xeb\x25\xda\x60\x3a\x13\xb6\x0e\x78\xdf\xe9\x17\xd7\xac\x2c\xd3\x84\x59\xf4\x7a\xb5\x05\x90\xdf\x89\x7a\xd0\x90\xac\x09\x8a\xf1\x27\x13\xcd\x8c\x03\xad\x72\xd1\x10\x9d\x41\x83\xbf\x98\x95\xd3\x9c\xb4\x82\x12\x78\x43\x4b\x45\x2c\x74\xb1\xfb\x51\xd7\xd1\x7e\x98\xc1\x2b\x96\xa6\x8b\x78\x97\x11\x74\xba\x0b\x2f\x98\x51\x9d\x19\x38\xc9\xba\xa3\x88\x35\x2a\xad\x56\x1c\x53\x0c\xe7\x8e\xf3\xd4\xe8\x80\x45\xb2\x2b\x1e\x93\x5c\x05\x29\x27\x61\x9f\x70\x78\x67\x13\xe7\xaa\x9a\x27\xf3\x84\x19\xe2\xb1\x69\x1d\x47\x9a\x15\x36\xa1\x03\x04\xa7\x7b\x47\x20\x4a\x85\x84\x3e\x00\x05\x43\xb8\x53\xe2\x6f\x83\xc7\x69\x0d\x14\xe9\x5e\x60\x9e\x78\x21\xa2\xf1\x43\x5a\xcf\x91\x59\x68\xcd\xb8\xba\x98\xb6\x82\xc0\x1f\xe8\x87\x42\xc9\x6a\x10\x7f\xbc\xf2\xc0\xe5\x97\xb1\x63\xd9\xce\x63\x6b\x27\x0e\x77\x3b\x5b\x68\x9f\xa0\xea\x88\x41\xbe\xcc\xa7\xbc\xa2\x3d\xcd\xe2\xd2\x4c\x66\xdb\xd2\x87\xe1\xd9\xb8\x5d\xec\x33\xda\x5e\xe0\x8e\xba\xba\xcf\x72\xd3\x19\x21\x36\x86\xef\xda\xed\xb8\x1b\x9a\x58\xef\xaa\x4b\x08\xe4\x19\xe6\x2e\x18\x1c\x44\x96\x29\x2e\x7e\x8a\xd0\x81\x83\xd6\x11\xe1\x87\x18\x4f\x2f\x2e\x7e\x22\xab\xb9\x31\x6a\x11\x48\xbc\x11\x27\x99\x85\x8c\x7e\x0a\xa6\x67\x1d\x62\xcf\x57\xe5\xd7\x45\xe9\x74\x42\xaa\x62\xff\xc7\x64\x9b\xf8\xc1\x48\x0a\xa5\xc7\x21\x5e\xf9\x58\x1d\xf7\x7a\xfc\x7f\x7d\xf7\x1b\xcb\x31\x82\x1b\xcf\x84\x67\xde\xdf\xaf\x9a\x26\x64\xf1\x74\x6e\xcb\x19\x75\xa3\xd3\x38\xcb\x2e\xe2\xe9\xa7\x50\xdc\x33\x95\xd0\x41\x88\x5c\x24\x0a\xd0\x70\x15\xd1\x2d\x05\x29\x21\xbb\x5a\xd4\x77\xd1\x4a\xbb\x41\x56\x77\xfd\x5c\xdc\x91\x00\x4e\xbb\x40\x8e\x10\xe5\x5c\x5e\x24\x65\x3a\x1d\x29\x1b\xdf\x60\x25\xf1\x44\xd7\x52\x02\x59\xb4\xc9\xc2\x00\x8f\xb2\x1a\xd9\x75\xc0\x2b\x68\xc0\xba\x69\x2d\x4d\xd4\xc7\x5e\xd7\xe9\x45\x68\xb3\xfb\xe4\xd2\x00\x3e\x81\xa5\xc7\x14\xa1\xfd\xfa\xe7\xb0\x4d\x82\x54\x89\xce\x17\x61\x0d\xb2\xe9\x0d\x34\x61\x33\x56\x96\x34\x26\xac\xf5\xde\xa7\x01\x36\xbf\x86\x76\x1a\x0a\xfd\x9c\x01\x29\xf9\x2a\x7a\x2d\x90\x74\xc6\xa5\x7c\xc8\x2b\x57\x97\xe1\x86\xe3\x41\x40\xb6\xe9\xb2\x6e\x30\xf0\x09\x86\xf2\xb3\x4f\x28\xa0\xbf\x92\x4e\x3b\x37\x6c\x33\x39\x01\x91\xaa\x45\x9c\x7a\xc1\xd0\xb9\xde\x43\x59\x20\xd0\x9b\x1d\x13\xd6\xa8\x10\xc8\xba\x37\x2d\x17\x4e\x27\x7e\x05\xc3\xb6\x0d\xaf\xd8\x6b\x6d\xcd\xdc\x99\x6e\x5b\xb6\xb5\xcf\xd2\x1d\x9e\x2f\xd7\x85\x2c\x69\x3f\x84\xff\x42\x81\x92\x7e\x8b\x4f\xdc\xbf\xe9\xe7\xe9\x75\x4f\x96\x0e\xa7\xcb\xf2\x1d\xc9\x7e\x5a\xa3\xef\x48\x1d\x61\x30\x5d\x51\x2d\x3b\xa8\x8e\xc3\xb2\x6c\x3b\xcf\x99\xbf\x64\x98\x8e\x4d\x65\x5d\x50\x8f\x8d\xf2\xb1\xd9\xed\x02\x08\xae\x18\x8a\x22\xab\x76\x74\x0f\x23\x7b\xe3\xbb\xee\x73\xf7\xbb\xee\x46\xfb\x43\xbe\xe0\x37\xc7\x7b\x71\x47\x6d\x81\xb2\xee\xb0\x2d\x1b\x02\xc5\x18\x25\xad\x48\x31\x1b\x8c\x1e\xa1\x68\x87\xd5\x23\x86\x2f\xe8\x08\xad\x03\x05\x6d\x88\xad\x9c\xac\xc2\xba\x8f\xa7\x73\xdc\x20\x8e\x33\x94\x04\x68\x5d\x99\x92\x39\xe9\xb4\x4f\xca\xbe\x81\x5d\x73\x2b\xec\x59\xaf\x44\x22\x15\x0a\x44\xf0\xbf\x48\xb1\xbc\x3a\x36\x5d\xd6\x10\xb0\xf7\x6b\x76\x15\x19\xc5\x4c\x83\x42\x79\xec\xa6\xe0\xc5\x47\xfa\x30\x0d\x0d\x84\x36\x5b\x48\x48\x8c\x8c\x86\x86\xa6\x97\x45\xb0\x81\x98\xba\x6c\x1f\x9a\x40\x2a\x7e\x7c\xf8\xea\xec\xe4\xf4\xfb\x93\xd3\xe8\xd9\xdf\xfb\x7b\x03\x1f\xcd\xc5\xee\x71\xca\x82\x27\xcf\x88\xcb\x05\x4d\x16\xbe\x2e\x4a\xa1\x77\xf8\x2d\xbb\x6b\x0d\x37\xba\x55\x4f\x93\xdb\x30\x2b\xa6\x88\xac\x8c\x2c\x09\x59\xfd\x89\x0c\xe3\xc6\x09\x2c\x3c\x88\x49\xb5\x55\x37\x5c\xb4\x6a\xcc\x68\x8c\xe6\x50\xb7\x06\x59\x46\x63\x14\xfe\xdb\x5a\x51\x46\x60\xb8\x4d\x6c\xa5\xda\xf4\xb7\x8c\x1a\xd6\x04\xc3\x96\x8b\xaf\xce\x62\xc4\xa3\xd7\xf0\x5f\x78\xc7\x22\x29\x80\x53\x9e\x83\x64\x37\x47\x3c\x67\x1c\x18\x5f\xd1\x68\x3c\x34\x12\x50\x9d\x1d\x42\x46\x36\x8d\x9a\x04\x93\xe6\x7d\xa1\x79\xd8\x72\x0a\xc4\xb9\x96\x4e\x53\x26\xa6\xee\xf1\x93\xe2\x22\xfa\x0f\x99\x17\x97\x0f\xbd\xad\xa6\xc6\x35\x33\xa2\x4f\x91\x31\xfe\x2a\x79\x24\xce\x6c\x64\xa2\xd5\x00\xf0\xfe\x8c\x41\x5e\xd8\x34\x8d\x24\x56\x9d\xe6\xcc\x6e\x0a\xe5\xa6\x49\x16\xad\x19\xae\xb5\x22\xd5\x3e\xeb\x8c\xa3\x4b\x68\x41\xa8\x06\x81\x9b\x24\x11\x7f\x92\x34\x39\x4a\x12\x19\x8e\x86\x64\x2b\x6f\x74\x4b\xf3\x15\xb2\x33\xe4\x93\x10\x49\x73\xca\x13\x81\x4e\x80\xa4\xd9\xbe\xd1\x1b\x35\x3b\x88\xf4\xc6\xa7\x4a\x10\x43\x43\x0d\x70\x4e\x62\x9f\xd3\xfc\x92\xac\x77\x3b\x04\x11\x04\xe6\x8d\xbb\x94\xd1\x25\x1e\x9d\x4a\xe1\x4a\x2f\x4c\x11\x62\x0c\xf5\x93\xa5\x57\xc3\x2c\xbd\x8a\x74\xa1\x97\x07\xaf\xa8\xeb\xc9\xbc\x1e\xec\x1f\xba\x4d\x44\xd4\x0c\x71\x64\x77\xd2\x1c\x1a\xc0\x47\x0c\xfe\xcb\xa1\x81\x40\xb5\x0f\xd2\x99\x9f\xa5\x57\xe8\x32\x6c\xab\x6d\x8f\x4f\x39\xb0\xe3\xd3\xab\xa0\x59\x13\x81\xaa\x33\x53\x4f\x98\x87\xce\x96\xbb\x63\x68\x8a\xc1\x76\x68\xdf\x3f\x6a\xac\xe5\x38\x4b\x28\x31\xca\xf2\x93\x8f\xb1\xcd\x48\xd0\x33\x51\x0a\x8c\x3e\x6f\xa0\xb7\x39\xe4\x3a\x46\xb9\x1d\x95\xab\x2b\xaf\x3d\xc6\x6a\xd7\x99\xfb\x72\xe0\xda\xbf\xa8\x75\x22\x8f\x6d\x54\x3b\xd1\xd9\x62\x7f\x77\x6e\x1a\x05\x29\xbc\x68\x1e\x84\xfb\x7f\x0a\x82\x06\x5a\x3e\x85\xa9\xfa\xfc\xc6\xab\xba\x58\x3c\xa8\xed\x2e\x6c\x1d\x01\x8c\x1c\x2b\x67\x28\x67\x39\xb0\x32\xf8\xa1\x25\xf3\x94\xaa\x43\xb0\x32\x3e\xa3\xc3\x61\x27\x37\x15\x4a\xfb\x9f\x16\x0b\x35\xdc\x9a\x19\xaa\x95\x29\xbb\xd0\xbb\x30\x5a\xdf\xdb\x6b\x9a\xb0\x63\xb8\xb6\xef\x3c\xff\xdb\xeb\x19\x15\xbf\x3c\xe8\xf5\xf6\xf7\x8d\xa4\x17\x2a\x88\xf5\x03\xfb\xfa\x10\x9e\x83\x76\x57\x39\x77\x30\x0e\x6f\x43\xc8\x1d\x6e\x1d\x2d\x8f\x56\xe6\xa0\x38\xce\xba\x3a\xe2\xe4\x59\x62\xae\x3e\xb9\x65\xc8\x5f\xad\x7c\x71\xb0\xcb\x5f\x9b\xc4\x60\x59\xfc\xcf\xbb\x49\x56\xc4\xc9\x16\x52\xb0\xb5\xf2\xa7\x3c\xae\xd3\x6b\xe2\x2c\xe9\xe7\x16\x94\x6e\x25\x67\x91\x57\x37\x5b\xd6\x42\xaf\x6e\xbc\xf3\xdf\x14\xc5\xa7\x8a\x68\xdc\x9e\xbc\xfb\xea\xe4\x74\xf2\xf6\xc3\xd1\xeb\xc9\x37\x1f\x3e\x7c\x7b\xa6\x7c\xc9\x71\x60\x96\xf0\xed\xaa\x18\xdd\x22\x7f\x5b\xc4\x09\x84\xea\x09\xa5\x18\x93\xf2\xb0\x43\xd5\x00\x3e\x02\x44\xd6\xf7\xfd\xbd\xf4\x40\x1f\xd8\xa0\x34\x82\xba\xaa\x7a\xa8\x2c\x03\x23\xc4\x06\x61\xf5\x9b\x81\x2f\x4d\x7c\x69\xe8\xa7\x3e\xa2\x19\xe1\x1f\x8d\x7d\xb9\x84\x04\x68\x14\xfb\x20\x0d\x8f\x69\xe5\x82\xe1\x24\x9a\x98\x37\x69\x9e\x80\x2b\x54\xad\x85\x69\xe4\xf4\x93\xb4\x5a\x70\x3e\x0f\xb5\xfa\x4d\x9d\x32\x01\x79\xbc\xac\xea\xe2\xaa\x0d\x80\xa3\x07\x34\x18\x18\x35\x02\x87\x28\xae\x12\x56\xc7\x69\x36\xc0\xa6\xe1\x41\x64\xc0\xff\x6b\x82\xa1\xab\x75\x24\xe7\x68\xb4\x6b\x0e\xb0\xf2\x8f\x8f\x2c\xb3\x95\x1b\xb6\xe4\xd9\x8e\x41\xb6\x86\x99\x8e\x67\x44\x3f\x36\x6d\x44\xe2\x24\xee\x73\xc4\xd1\xe6\x1e\xdd\xd6\x07\xea\xcf\xfa\xdc\xf1\x50\x89\xee\xcf\x2a\x5d\x75\x89\x3b\x7f\x67\x89\x3b\xb7\x33\xb8\xd9\x46\x16\xbb\xc9\x75\x6a\x97\xb8\xd4\x11\xed\x48\xfb\xfd\x73\x5e\xda\x2a\x95\x2f\xf4\x37\x2c\x0d\x30\xed\xfa\xef\xfd\xd1\xbb\x93\xb3\x8f\x47\xc7\x27\x67\x78\x71\x47\xce\x5f\xe7\x7f\x3c\xfd\x70\x7c\x72\x76\x76\xf2\x5a\xe8\x16\xb6\x55\x8d\x84\x5c\x87\xaf\x58\x62\x74\xcc\x3f\xd1\xcf\x84\x11\xb5\x0c\xf6\xe5\x2c\xcd\x13\xd5\x82\x15\xa4\x76\xc4\x11\x82\xd7\xde\x06\x76\x32\xbc\x29\x99\x71\x6e\x17\x65\x31\x65\x95\xee\xa2\x3f\x32\xd4\x82\xfc\x60\x8c\xc7\xf9\xaa\x09\x3a\x23\xe1\xa8\xfd\x55\x45\xae\xb1\x50\xbd\x8c\xac\xaa\x81\xe6\x89\x2f\xf9\x1e\x8a\xae\x4d\x47\x32\x79\xac\x75\xce\x87\x09\xcb\x58\xcd\x76\x5c\x4d\x4c\xbe\xfa\xdb\xe4\xcd\x6b\x5d\xaa\xd1\x28\xf5\xab\x05\x7a\x8a\xa7\x17\x78\x9d\x8d\x3c\x77\x78\xa8\xec\x74\x45\x20\x8d\x86\xce\x9b\xf1\x22\xa7\x5b\x1d\x8c\x00\xe7\x71\x68\x23\x32\x58\x35\xa1\x9a\x6b\x1d\x7d\x8f\x0f\xf4\x51\x96\x0d\xf4\x4f\x3d\x71\xe1\x05\xf0\x25\x7a\x68\x73\xc9\x6a\xef\xe2\xc0\x7c\xf5\xe1\xc3\xf9\xc9\x6b\x35\x61\x46\x61\xed\x30\xa0\x35\x24\x40\x6d\x1b\x21\xe9\xb3\x73\x9d\xd3\x85\x59\x43\xa1\xe8\x26\x2e\x4c\xd1\xaa\xb1\xae\x4f\x46\x58\x3d\x73\x09\x2d\xe2\x7a\x5e\x85\x65\x51\xd4\x61\xc5\x98\xf0\x6b\x9a\x26\xb7\x11\x64\x48\x4d\xfd\x16\xaa\x98\xfb\x53\x91\xe6\xbe\xd7\xf7\x82\x71\xc4\x6b\x18\x5a\x57\x3a\x9e\x86\xc3\xa2\xd1\xc1\x39\x85\xf6\xac\x3b\x9d\x60\x15\xa0\x26\x54\x6d\x80\x46\x46\x69\x72\x3b\x8e\x3e\xb1\x3b\x71\xe0\xf7\x7a\xc5\xc5\x4f\x5a\x15\x2e\x8a\x40\x4d\xe3\x5c\x2d\x4d\x23\xd7\xd0\x64\xb3\x70\x0e\x86\xc5\xc5\x4f\x7a\xd7\x45\x56\xb6\x52\xdb\x56\x6d\x12\xe2\x02\xbd\xe2\xe3\x35\x92\x92\xa9\xe2\xe2\xa7\x60\x4c\x7a\xd3\xce\x44\xc5\xcf\x8e\x09\xe0\xec\x30\x8c\x7f\xd3\xd0\x81\x8f\xd2\xe4\x16\x06\xe6\xec\xfc\xe8\xf4\xfc\x6c\xf2\xc3\x9b\xf3\x6f\x26\xdf\x7d\xfc\x78\x72\x7a\x7c\x74\x76\x12\x3d\xfb\xfb\xe8\x68\xff\xbf\xc6\x44\xe6\x6b\x53\x98\x15\x72\x6b\x7c\x9f\x46\x86\x3f\x62\xde\x20\xe9\x10\x1f\x5c\x07\xed\x53\x1a\xa0\x72\x66\xf9\x91\xcb\xa7\x16\x6b\xc1\xc9\x75\xe2\x86\x37\x4d\x0e\x6e\xdf\xdb\xa1\xa4\xb5\x40\x7b\xbd\x5d\x67\x7a\xab\x82\xba\xbc\xe3\x33\x1c\x09\xd2\xc3\xb3\xc7\x43\xd2\x8f\xc8\x35\x5b\x0d\x44\xa0\xf4\x99\x89\x88\x31\x9d\xd6\x52\x28\x8b\x85\x10\x12\xca\x44\x31\x7a\xea\x53\x9e\x81\x7b\xde\x04\x28\xbe\x9e\x02\xa0\x4a\x40\x7f\xc4\xba\xbb\x42\x1d\x12\x4b\x31\x1c\x52\xd7\x28\x86\x1b\x9f\x1a\x37\x1d\x74\xca\x91\x69\xb8\xf9\x6d\xe1\x41\x6a\x6f\x28\x24\x91\x56\x1b\x7b\xc9\x6f\x93\xb4\x5e\x6f\xd7\x3c\xab\x3a\x69\xdc\x35\x71\x8f\x6c\x95\x00\xff\xc4\xe6\x89\x27\xf7\x9a\x70\x95\xa0\x36\xb3\x04\xd5\x69\xd2\x00\xa4\xe4\xfc\x50\xd4\xea\x23\x9e\xe2\xe0\xea\xa6\xc4\xe2\x9e\x5f\x2d\x2f\xa0\x5f\x3b\xc5\x6c\xc7\xdb\xab\xea\x72\xcf\x0b\x3c\xed\x6e\xd9\xf3\x85\xe4\x14\x8d\xca\x02\xaf\xd9\xa0\x6c\x4b\x7c\x50\x37\x36\x61\xb5\x86\x61\x85\x06\x87\x22\x93\x91\xad\x19\xed\x3a\xb6\x5b\x48\x40\x85\x95\x02\x8e\x7e\x9c\xdf\x7d\x67\x67\xf1\x5e\x3a\xab\x0e\x56\x2d\x3e\xc3\xc5\xd6\x80\xc2\x5b\x57\x1d\xf7\xf7\x2d\x54\xb6\xe3\x1f\x54\xbe\x65\xea\x46\x0e\x79\xdb\xde\x4d\x65\x11\xa0\x51\x3a\x6e\x93\xca\x91\xca\x37\x78\x1e\x95\x0a\x8c\x4f\xf7\x80\x09\x46\xae\x79\xb4\x9e\x73\x97\xad\x8b\x79\x04\x6d\xf4\x3a\xbd\xf9\x0a\x44\x45\x08\xbf\xc1\x50\xb3\x6b\xb5\x73\xb6\x72\x17\x8d\x9a\x37\x4e\x77\xd1\x02\x62\x5a\x2c\xee\xd6\xe5\xcf\x4a\xc6\xfe\xd9\x11\xe5\x76\xf1\xc5\x24\x2f\xbf\xbe\x16\xce\xff\x96\xb0\xb6\x1d\xba\x33\x8e\x1b\x5e\xa7\xff\x64\x87\x9e\xcd\x07\xb5\x8e\x36\xa9\xd9\x1c\x8b\xf5\xb4\xc9\x7b\xf3\xd7\xa7\x1f\xfe\xeb\xe4\xfd\xe4\xe4\xf4\xf4\xc3\x69\x5b\x83\x85\xe6\x0a\x31\xf4\xe2\x6e\xa3\x8b\x03\xe1\xef\xa9\xa5\x39\x21\x1d\x41\x6d\xad\x5e\xf1\x1e\x28\x03\x8e\x8c\x2b\x78\x2d\x2a\x57\xe8\x41\x09\x65\xaf\xc3\xd5\x25\xab\x2d\x9d\x63\x94\x43\x47\x51\xa4\x04\xc7\xd4\x18\x4c\x10\x69\x79\x30\xb7\xdd\xd5\xf1\x3a\xe8\xf5\x15\x38\x76\x00\x77\x04\xc4\x82\xb7\x95\x0d\x0e\x29\xa1\x16\xce\xec\x3b\xfc\x2c\xb6\xdc\x3c\x6a\x6b\xa5\xaf\xcb\xe2\x9f\x2c\x17\x5e\x09\x5b\xf3\x93\xb1\x5c\xbe\x12\x83\x6e\x85\x54\x64\x70\x3a\xb8\xed\xf0\x6b\xc5\x1b\xce\x58\x2e\x42\x34\xe5\x18\xff\x16\xdf\x4d\x16\x2a\xb0\x59\x7c\x55\xab\x10\x0e\xe8\xdd\x4b\x3d\x3a\x19\x4e\xa4\x37\x78\xb2\x52\x6d\x59\x5e\xc9\xba\x9f\x76\xed\x67\x5d\x19\x95\xc4\x8c\x63\xc8\x19\x1d\xc3\x26\x5c\x31\x61\x7c\xde\x84\x35\x29\x7d\x96\x15\x57\x70\xdb\x87\x59\x08\xae\xfc\x8e\x6a\x75\x4f\x84\x67\x08\xba\x62\xa4\x9b\xc1\x23\xb3\x41\x99\x76\x80\x6b\x44\x7e\x8a\xbf\x2f\x0e\x5e\x41\x18\xa8\x29\x4b\x33\x59\x3c\x18\x90\xc8\x50\x32\x8d\x54\xff\xe2\x40\x56\xba\x17\x65\x2c\x47\xdf\x7e\xc9\xad\xac\x72\x98\x26\xb7\x2f\xc0\xe5\x60\x72\x0b\x4e\x07\x05\x23\x0a\xd7\xc9\x48\x2c\x0a\xb9\x82\xf9\x35\x0b\x7f\xee\x1f\x36\x61\x16\x57\xf5\x9b\x9f\xa9\xff\x19\xcb\xf7\x0f\x7f\xc9\x31\x78\x19\x1d\xf0\x3f\xfb\xfb\x0f\x1a\x02\x4e\xd7\x74\xdf\x13\xc6\xf0\xae\x87\x3f\xe8\x06\xbf\x8a\x17\xbe\x15\xe2\x4d\xa9\x34\x2d\x44\x94\x33\xb0\xcc\x6c\x4c\x63\x53\x11\x65\x57\x4a\x3b\xd2\xcb\xbc\x28\x59\x34\x92\xfb\x72\xac\xb4\x24\x08\xcd\xeb\x83\x83\x01\xa2\x24\x71\x05\xb6\x59\xea\xa1\x13\x81\x14\x7f\x36\xd2\xd9\xe3\x00\x1b\x40\x51\x1f\x29\xd6\xa0\x8a\x0b\x66\x6a\x1b\x1b\x4a\x68\x29\x02\x37\x69\x3d\x2f\x96\xb5\xd0\xdb\x27\x39\x21\x56\x81\xf7\x9e\x23\x6a\x3f\x5c\x02\x6a\x71\x59\x9a\xfb\x8f\x27\x8c\xc6\x0d\x0d\xbe\x8b\x4d\x08\xf7\x8d\xbc\xe0\xab\xb8\x2c\x07\xb4\x79\xe5\xdd\x2f\x68\x86\x46\xfa\xb4\x4e\xaf\xe3\x9a\x45\x86\xa4\xd3\x2e\x67\x0d\x4f\x30\xb4\xf1\xd4\xde\x04\xef\xef\x47\xe3\xa6\xd1\xa6\x11\x27\xff\x79\x7e\xf2\xfe\xf5\xe4\xe3\xe9\x87\xf3\x0f\xe7\x7f\xfb\x78\x72\xc6\xcf\x81\x72\xc9\xe4\xa3\x4d\x2b\xbf\x0f\x8d\x59\x58\x08\x2c\x7d\xc9\xa4\x1f\x45\x47\xc6\xbb\x9d\xfd\xdd\x31\x0b\xdd\x0c\xb6\x02\xd9\xc4\x62\xdb\x3e\xe2\xd6\xf9\x91\xdb\x86\x83\x7d\x0c\xaf\xb9\x8e\xb3\x23\xe6\xd6\x1b\xd8\xbb\x0e\x0e\xc8\xe1\x1d\x89\x0a\xd9\x89\x8d\x8a\x10\x9d\xeb\x7a\x82\x21\x95\xac\x6f\xb4\xeb\x56\x36\xdd\x1d\xb3\x42\x2a\xdb\x6e\x56\x7e\x05\x6b\x84\x0e\x43\x80\xf5\x21\x75\x3a\x8c\x0a\x3a\x0d\x05\xd6\x3e\x35\xe9\xe8\x38\xbf\xbd\x87\xa8\xff\x45\x97\x9a\xf5\xde\xe1\xba\x94\xec\xff\xe0\xd0\xb1\x5f\xa3\xeb\xfe\x07\xb7\xaa\xfb\x7a\xad\xfc\x3f\x3c\x5e\x29\xff\x0f\xeb\x74\xf2\x37\xa8\x98\xff\xb1\x5b\xc3\x7c\xbd\x56\xfb\x1f\x3b\x95\xda\x9d\x06\x0d\x7f\xb2\x0d\x1a\xd6\x68\xe9\xff\xd9\xad\xa4\xef\x0c\x25\xf4\x17\x3b\x94\x50\x2b\x4a\xce\x01\x89\x92\xd3\xf5\xce\x68\x5f\xda\xb4\x3c\x14\x79\xf4\x8f\x6d\x5d\x17\xa9\x47\xa3\x95\x5c\x94\xb6\x4f\xa4\xd3\x04\x9b\xf3\xe7\x40\x68\xfd\x28\xe7\x31\x52\xf4\xba\x56\xe3\xaf\x0b\x0d\x7d\x65\xf8\xc2\x58\xb8\x34\xe2\xf0\x90\xe1\x43\xd6\xad\x2b\x6b\x44\xfb\x79\x68\xbc\x97\x26\x08\xd3\xea\xbc\x5c\xd6\xf3\x3b\xa5\x3b\xdf\xbf\x28\x8a\x8c\x46\x08\x9a\x24\xec\x62\x79\xa9\x1c\xc1\x7e\xcb\xee\xb0\xb1\x9b\x34\xcb\x7e\x88\x6b\xd0\xf2\xe9\x32\xac\xd5\x03\x11\x29\x67\xdb\xde\xde\x27\x76\x37\x6c\x6b\x9a\x43\xbf\x75\x01\x54\x6d\xed\x5c\x05\xa6\xba\xf9\x36\x65\xd5\xa0\xa0\xea\xe0\x77\xf9\xcd\xa3\x91\x77\x6a\x64\x3f\x14\x7f\x4b\x2d\xfb\xa1\x5d\x58\x77\x31\x7d\x58\xe4\x1d\x12\x95\x82\xa8\xa8\x05\x0d\xb8\x07\xff\x6e\xcb\xfb\x2f\x75\x28\xc7\x6b\x97\x4e\x8e\xa4\xa9\x77\x87\x12\x33\xf5\xb5\x34\x34\x22\x73\x6e\xea\x81\x7c\x6a\x31\xb1\x96\x6e\x9b\xba\xad\x33\xc9\x86\xda\xc4\x14\x01\x07\xf3\x0b\xf2\x42\x69\x35\xc9\x8b\x7c\x8b\x30\x7e\x8f\x64\x9c\xa5\x7c\x78\x4d\xc4\xc0\xcd\x31\x05\x1f\x2d\x24\x76\x39\x49\xde\x86\xd9\xfb\x2d\xc6\x4a\xfe\x35\x4c\x3e\x4d\x1f\xa9\x2e\xaf\xc6\xbf\x69\xa3\xd0\xb4\x7a\x5f\xe4\x6d\x9f\xc4\x98\xec\xe4\x1f\xfe\x48\xd8\x87\x8e\x5b\x99\x43\x2e\x2d\xe4\xb1\x1d\xd1\xfd\x5c\xf1\x05\xdd\x90\x0e\x01\xb5\x53\x90\xed\xf2\xc1\xfb\xb5\x5c\xfc\x6d\xa3\x49\x95\xb5\x41\xe4\x7d\xe8\x12\x79\x77\xf9\xf6\x75\x5c\x39\x3f\xc3\xbe\xf1\xd1\x36\x95\x10\x5c\x10\x9d\xf6\xb4\x7d\xfa\x92\xcc\x6e\x5e\xf5\xd0\x88\x7b\xb9\xd1\x21\x83\x15\x00\x51\xcf\xa4\x96\xbe\xab\xf1\x0e\x57\xc2\x48\xf0\x20\x84\xb0\x15\x6e\x07\x5c\x42\xa4\xed\xf6\xdb\x49\xe7\x03\xb9\xb3\x8e\xa0\x17\x54\x5a\x4d\xa5\xc9\x72\xaf\xa0\xdc\x5b\x13\xd9\xb6\xf0\x3b\x63\x79\x78\x00\xce\x77\x9c\x3c\xaa\x37\x4b\xcb\x4a\x45\x4a\xee\x06\xcb\x62\x02\x45\x5e\x85\x87\xe9\x0b\x15\x12\xc6\xb0\xf2\x42\x21\xe5\x38\x90\x5a\x64\xf0\x8d\x36\x5e\x34\x25\x1d\x37\x95\xdd\x6d\x8a\xaf\xc5\xcd\x76\xa0\x6b\x43\x19\xd8\xba\x87\x48\x17\x11\x23\x64\x3a\x9d\xab\x4e\xfe\xb1\x8c\xb3\xb6\xa3\x9a\x5d\x67\x90\x96\x20\xa0\x1e\x66\x84\x76\xf5\xb4\x63\x42\xc5\x13\x86\x4e\xdc\x8d\xa2\xac\x98\x9a\x55\x18\x46\x7e\x07\xd8\x74\x71\xf1\x53\x5f\x84\x61\x40\x63\xa0\x51\x56\x4c\xc7\x66\xdb\x0d\xf5\x84\x13\xc6\x49\x32\x20\xdb\xc5\xf7\x80\xd5\x15\x71\xbf\x91\x6d\x34\xf3\x25\x2b\x29\x40\x16\xc5\xa2\x33\x4e\x96\x5c\xe2\x5d\xd1\xa4\x8c\x35\x3e\x94\x8a\x61\x44\xca\xfe\xf2\xe0\x15\x74\x82\x24\xed\x1f\x8e\xe1\x4a\x80\x73\x86\xc8\xf8\xce\x50\x3a\xdd\xdd\x82\xe8\x2d\x66\xf6\xa2\x58\x78\x81\x0c\xec\x62\x65\x2d\xab\xb9\x17\xf0\x81\x3a\x89\xa7\x5d\xb5\x56\x6a\xb4\xda\x40\x74\xc4\x2a\x08\xd7\x44\x95\x55\xd3\x9a\x5d\x55\xb6\xc1\xa1\xb0\xc7\xac\x30\x78\x99\x6e\x45\xa4\x36\x61\xae\xc3\xe4\x6f\x7a\x65\x23\xfb\xc1\x69\xb4\xdc\x7e\x0e\x94\xc3\x7e\x30\x26\x9e\xaf\x83\x50\x6f\x99\x07\xd6\x63\x4d\x1f\xad\x53\x75\xad\xbd\x8f\x1e\xbb\x8e\x50\xe7\xab\xc8\x99\xb1\xed\xc0\xd5\x96\xa4\x89\x11\xd5\xd8\x0b\xd3\xe4\x36\xd2\xb4\x27\x74\xd3\x59\x34\x92\x1b\x8a\xb8\x69\xd1\x41\xaf\x27\x1e\x9e\x30\x9a\x1e\x79\x6c\x31\x5a\x84\x52\xd1\xa8\xb8\xf8\x69\xbc\x99\x10\x63\x14\x5d\x5e\x62\x5b\x32\xbb\x26\x10\x92\x30\x5f\xe6\xa4\x17\x09\x01\xcb\xc1\xb0\x61\xd8\x26\xa6\x19\xcb\xf7\x0e\xbf\x10\xa9\xa4\x7d\xb0\x9c\x88\xe9\x5d\xf0\x9b\x9f\xec\xb4\xfa\x9a\xef\x9a\x88\x43\x47\xd1\x41\x98\x56\x6f\x63\xf5\x09\x6f\x7b\xb0\x1b\xa4\x11\xe5\x56\xcb\x42\x18\x8b\x6e\xbd\x1a\x04\x38\xdc\x5a\x45\x47\x01\xa9\x6e\x9b\x2c\xf3\xe8\x43\xe5\x47\x8e\xf7\x9a\x12\x74\x6e\x1b\xec\xc5\x0b\xe8\x5f\xb0\xe2\x59\x91\x5c\x3a\xfb\x87\x88\x31\x76\x88\x67\xe9\x45\xc6\xc7\x96\xa7\x04\x63\xd0\x63\x5d\x7f\x9a\x8b\xba\x9c\x8b\x70\xff\xd0\xdd\xcf\xb5\x27\xbc\xab\x9b\xeb\x56\x70\xb3\x69\x05\x1b\xe3\x6e\x46\x7d\x93\x47\xab\xdb\x21\x9c\x31\x20\xa0\x0b\xfc\x32\x3a\xb0\xdf\x58\xa9\xeb\x3f\xea\xe9\x30\x94\x76\xda\xc7\x61\x07\x5f\xc0\x87\xac\x64\x35\x19\xb1\x62\x1a\xb4\xb8\x80\x92\xd5\x70\xe6\x47\xea\xf4\xe7\xdb\x70\x64\xf0\x5c\xc0\x13\x8c\x39\x47\x61\xe8\x02\x74\x59\x3e\x58\x4f\xdf\xa8\xec\x00\xaf\x75\xa3\xb1\x7a\x8a\x3e\xb0\x1f\xe2\x01\x02\x97\x8b\x3e\x8c\x24\x1f\x72\x55\x4b\xc7\xf4\x67\xac\x7e\xf1\xaf\xff\xfe\xd2\x0b\x47\x50\x40\x28\x66\x87\x5e\x30\x0e\x1a\x70\x87\xb1\x5e\x6a\x22\xc4\x14\x1b\x05\x27\x4a\x04\xf2\xa5\x9f\xf0\xb6\xba\xeb\xba\x42\xf7\x3f\xb7\x42\xf7\x03\xb6\x6f\xf2\x6a\x61\xdf\x3b\x01\x10\xd3\x87\xa8\x23\x7e\xfa\xe6\xfd\x5f\x27\xaf\x8f\xce\xbe\x39\x39\x7d\xf3\x5f\x27\x93\xd3\x93\xbf\x9e\xfc\xe7\xc7\xe8\xd9\x68\x67\x32\x7e\x76\xe9\x86\x39\x3e\x3a\xfe\xe6\x44\x3a\x8b\x90\xb9\x27\xc7\x47\xef\x4e\xde\xd2\x2a\xfc\x51\xbc\xff\xcf\x1f\x93\x71\xe0\x83\xc6\x79\x60\x56\xd7\x06\xff\x71\xff\x7e\x72\xff\x63\xff\xfe\xc7\x2a\xd8\xf3\xfb\xc1\x2b\x13\xfe\xbb\xf7\xaf\x4f\x4e\xcf\x8e\x3f\x9c\xca\x12\x93\xc3\x56\x13\x7b\xc1\xa6\x32\xcf\xa3\x67\x3f\xee\xdf\xff\x58\xed\x3d\xbb\x24\x0a\xf0\x57\xb5\x5f\xd5\x65\x38\x2b\xca\xab\x58\x86\x47\x94\x11\x10\x65\xe2\xfd\x7d\xcb\xb1\xe6\x73\xb0\x81\xe3\xb9\x91\xf5\x4e\x2e\x22\xeb\x81\xdd\x82\xf6\x50\x79\x88\x77\x2f\x5c\xe1\x52\x0c\x58\x97\x2a\x7a\xfc\xb3\x7f\xfd\x77\x7f\x74\xb0\xff\x97\xf1\x1e\xef\xbc\x5e\x54\xe0\xe5\x12\x94\x4b\xf8\x4e\xc0\x5f\x91\xfc\xf1\x6a\x11\x97\x15\x7b\x03\x71\xaf\x31\x25\x3c\x3c\x08\xf6\x0f\x07\xb0\x75\x86\x55\x24\x50\x1c\xc9\x6c\xe5\xfe\xb1\x8a\x22\x70\x6d\xf1\xca\x83\x83\x36\xf0\x06\x15\xd5\x37\x78\xe5\x79\x03\xba\x8e\xfc\x2a\x68\xc8\xfb\x42\x56\x4c\x7f\xa9\x41\xab\xea\x52\xe8\x34\xe3\xbc\x9e\x8d\xaa\xba\x1c\xdf\xdf\x57\x75\x39\x24\x44\x80\x62\xa3\xf1\xbc\x51\x6a\xdd\x72\xb8\xab\x45\x96\xd6\xfe\x33\xbe\x08\x08\x5c\xc2\xa6\xf1\x15\xcb\xd2\x7f\xb2\x56\x01\x39\x3f\x5d\x4b\x3d\xf4\x9e\x1c\x4e\x9e\x3c\xf7\x82\x7e\x5d\xbc\x2d\x6e\x58\x79\x1c\x57\xcc\xa7\x75\xc7\xd5\x9c\x95\xaa\x6a\x90\x22\xc4\xd3\x39\x8b\xdc\x5b\x2b\x9c\xa7\x75\x04\x00\xb6\x69\x03\x2f\x1e\x0a\x8d\xad\x79\xaa\x45\xe0\x00\x0c\xa3\xa2\x75\xd4\xad\x0e\xb5\x7a\x61\x6d\xf9\xd0\xdb\xf7\x82\xa1\xae\x28\xe2\x64\xdc\xa5\xb5\xbe\xed\x30\xd9\x83\xa4\x35\x70\xe2\x7a\x3a\x0f\x2b\xb6\x88\xcb\x98\x1f\x56\xd3\xb9\xae\x67\x3a\x2f\x5f\x4d\xe7\x65\xbf\x2e\xbe\x5b\x2c\xe4\x40\x0e\x3c\xaf\xd1\xf8\x3f\xfb\xbb\xa4\x27\xdb\x55\x09\x79\xd6\xcc\x04\x96\xf9\x42\x3a\xbb\xd3\x53\xb3\x88\xcb\xba\x8a\xf4\x4a\xf1\xfa\x5e\x10\x16\xcb\x5a\x9e\x50\x5a\x41\x1d\x20\x9d\xb1\x58\xe4\x20\x25\x91\x1a\x2e\x00\x06\x11\x45\xb1\xac\x45\x1c\x5b\x09\xd5\x9f\xce\xe3\xf2\xa8\xf6\x0f\x02\xb3\xe7\x7b\x1a\xa2\x5a\x5e\x54\x75\xe9\x1f\x06\x8a\x8d\xe0\xd5\x68\xd3\x23\xd5\x21\xbe\x81\xcb\x8a\x1f\x5b\x9b\x66\xc8\x41\x52\xf5\x52\xde\x08\xfb\x3c\xf4\x26\xdd\x4b\x7e\x1a\x2f\xd2\x3a\x76\xae\x93\xae\xbe\xc2\x88\xcb\x5e\x36\xc6\x86\xe7\x87\x4d\x87\x50\x6d\x35\xbb\xaa\x07\xb3\xab\x9a\x73\x30\x83\xac\x98\x86\x37\x83\x9b\x50\xaf\xfd\x81\xfe\x19\xaa\x6d\x38\x50\xbf\x42\x05\xa7\xa0\xe4\x82\x18\xc8\x1f\xa1\x1e\xd1\x81\xfe\x19\xea\x1e\x0e\xf4\x4f\x03\xcd\xfe\xec\xaa\x8e\x66\x57\x46\x8c\xca\x3e\x67\xc8\xb2\x62\x6a\xa4\xdd\x44\x37\xc6\xb7\xc6\x99\xec\x62\x13\x42\x76\x20\x52\xbf\x8c\x7c\x55\xde\x59\x5a\xf6\x2c\x92\x3f\x8c\x5c\xdd\xc7\x48\xff\xb4\x6a\x97\xfd\x8d\x48\xd7\x37\xb1\x57\xcb\x0b\xa7\x79\xc2\x9a\x67\x28\xd7\x9b\x8b\xcb\x08\xe1\xe7\x76\x98\x60\x3f\x2f\x1c\xda\xce\x62\xdb\xa2\x6d\x97\x32\xd5\x1a\xed\x78\x87\x6b\xd9\xd3\x93\xf3\xa3\x37\xef\x23\xaf\x44\x1c\xbe\x7e\xf3\xf6\xfc\xe4\x34\xf2\x66\xc4\x6c\xec\xc3\x82\x95\x31\x86\x4e\xb8\x5b\xb0\x70\x5a\x2c\x95\xbb\x29\xf0\x8d\x0e\x6e\xd3\xc5\xe5\x60\x09\xce\xa6\x96\x79\xdd\x74\x6c\xa4\xb3\xe5\x05\x32\x90\xaa\x7a\x99\xe2\x23\x85\x13\x4a\x89\xe6\x79\xfe\x82\x5f\xee\xd0\xee\xf0\x40\x84\xf6\x36\x7c\x8e\x17\x12\xc5\x2a\x1a\xf1\x1b\x89\x46\x19\xfb\x27\x3c\xe0\x05\x63\x1d\xb0\xc6\x2c\x34\x6e\x1a\x89\x07\xf1\xfa\xbe\x8a\x93\xe4\x4d\xcd\xae\x88\xc0\x0a\x58\x1f\x20\xf6\x4a\xb1\x79\x59\xe6\x18\x93\x68\xff\x30\x4c\x6b\x76\x75\xce\x8b\x02\xc8\x2b\x6c\x7d\x80\xa3\x1a\x56\x2c\x9b\xa1\x03\x75\x44\x60\x96\xe6\x89\xc6\x14\xab\xd6\xd7\x34\x99\x11\xaa\x5f\xc8\x77\x41\x10\xdf\x33\x08\xd9\x0e\x3f\x4f\xf2\x04\x0c\x34\xdf\xe4\xb2\x07\xc2\x1e\x8a\xdd\xa8\xca\x43\x38\x63\xd4\xa7\x14\xd6\x01\xa6\x51\xa4\x1a\x80\xf9\x0c\x56\x7b\x7b\x3a\x05\x27\x53\x2a\xdb\x03\x8e\x51\x14\x69\x1c\x82\x15\xef\x15\x1d\x4c\xa9\x7b\x6e\xa1\x7d\x10\x9a\x13\x23\xdb\x0f\xf9\x59\x03\xb3\x42\x11\x8e\x3a\x81\x87\x66\x57\x2c\x40\xb3\x2b\x6a\x80\xf6\x01\xf1\xbd\xc3\x60\x68\xf5\x2c\x82\x8c\x7d\xdd\x9f\xe1\x76\xdd\xd9\x3b\xc4\x0e\x75\x8d\x30\xdc\xf1\xc5\x32\x49\x67\x16\x5a\x51\x14\xe1\xc2\x90\x07\x16\x2e\x1f\x73\x12\xf7\x7c\x1b\xb5\x80\x9a\x46\xba\x8a\x34\x0d\x22\x3f\x2d\xae\x16\x45\xc5\x8e\x6a\x0b\xe9\xa0\x21\xdc\xbe\xb5\x62\x5a\xdd\x06\xd6\xa1\x7b\xca\x86\xba\x7f\x6b\x10\xb2\xf1\x69\xb5\x22\x45\xac\xfc\xda\xac\xd9\x40\x59\x9d\x14\xc1\x39\xf6\xa0\x73\xf7\xfd\x72\x1b\xec\xcb\xcd\xa9\x51\x13\xac\xc9\x97\x87\xc1\x6a\x7f\xdf\xb5\x05\xb7\xdd\x6b\x7c\x97\x6c\x58\x09\x4d\x68\x04\x5e\x70\x85\xe1\x3b\x8e\xf3\xa7\xb5\x50\xf2\xdb\x89\xd1\xc9\xe8\x4e\x3d\x8f\xeb\x9d\x79\x5c\xed\xe4\xec\x9a\x95\x3b\x17\x8c\x81\x3b\x4f\x96\x70\xee\xd0\x3d\x87\xe6\x34\xd8\xb4\x74\x56\x2c\xf3\xe4\x58\xba\x23\xcf\x8b\xfa\x6b\x9a\x20\xfc\xf4\x98\xdd\x83\x20\xf9\x6a\xf6\x36\x4f\x57\x74\x00\x1c\xb5\x59\x0b\xa1\x61\xd1\x81\xb6\x95\x68\x2f\xce\xa1\x59\x0e\x04\x46\xa4\xac\x6c\x73\xef\x30\x24\x74\x53\xdc\xa3\xd5\x77\xab\xf2\x91\x09\x3a\x1e\xca\x7a\x08\x5e\x36\x19\xde\x3f\x1c\x4a\x1a\xfc\x92\x80\x89\x30\x7a\x2f\x14\x2a\xfc\xee\x4b\xc6\xf0\xb3\x56\xba\x98\x51\xed\x73\xa0\x6b\xd5\x5b\x2b\x3d\xb2\xd7\x6f\x63\x4f\xad\x4d\x82\x9a\x50\x2f\x57\xe7\x66\x2f\x16\xed\x51\x84\xec\x71\x58\xd4\x73\x56\x7e\x58\xa0\xf7\x51\x65\x07\xd2\xa8\xd1\x3a\x08\x56\x02\xa4\xa3\x8a\xfd\x43\x88\xfd\x20\x80\x64\xdf\x8a\x85\x38\x11\x8b\x05\xf6\x62\x2f\x92\x10\xf0\x39\x6c\x2d\x19\xea\x26\x64\xff\x90\x6f\xc4\x7d\x3c\x7b\x1a\x85\xcc\x8b\x8e\x75\xb6\x7f\xb8\x09\xc9\xbd\x9f\x01\xc9\x3d\x8e\x64\xd3\x74\x8b\x52\xab\xba\x8c\x3c\x6f\xd8\x61\xfc\xe7\xdb\x95\x3b\xe8\x6b\xb0\xaa\xea\x72\x2f\xf2\x76\xbc\x3d\x73\xf5\x40\x6c\x29\x7b\x9d\x04\x54\x66\x85\x17\xb5\x34\xbf\xf4\x01\xc9\x0d\xbc\x7f\x5d\xc6\xd3\x4f\x2c\x71\xdb\x27\xaf\xbb\x00\x7c\x21\x66\xff\xd1\xcc\xfd\x1a\x96\xdd\xc1\xe1\x6f\x63\x8f\x69\xb1\xf5\x6f\xde\x9f\x9d\x9c\x9e\x47\x5e\x2a\x62\x58\x9c\xbc\x3d\x39\x3f\x89\xbc\xc4\xeb\xba\xef\x9e\xe3\x50\x5a\xac\x3a\x4d\x95\xaf\xc0\x1d\xdc\x3a\xe4\x72\xbe\x5a\x88\xe3\x39\xeb\x2e\xfd\x53\xb7\x75\x41\x80\xef\x77\xb3\xf2\xe8\xa7\xd6\xcd\xcf\x87\x88\xc3\x3a\xae\x9e\xa2\xdc\x17\xa3\x82\x7f\x86\x46\x96\x18\x21\xfc\x63\x66\x89\xd1\xc2\x3f\x66\x56\xfb\xaa\x50\xd9\xe7\x5b\xce\x6e\xde\xe0\x48\xa1\x5a\xcf\x52\x28\x6c\xca\x74\x73\x2c\x20\x9f\x8f\x9f\xa0\x60\xa0\x3b\x0a\xa1\xdc\x35\x47\x63\x8d\x08\x52\x48\x7c\xde\xd0\x6c\x31\xca\xa3\x34\xe5\x37\xb3\xf1\x04\x44\x18\x44\xd3\xcc\x3f\xd5\xe7\x1b\x02\x91\x93\x42\x10\x69\x3c\x41\x80\xeb\xa5\x3f\xa1\x4b\xf0\xd3\x44\x93\x8f\x83\x99\x32\x6c\xa5\x44\x8e\xf9\xc6\x09\xc1\x4b\xa7\x1e\x4b\x8c\x40\x45\x01\x51\x32\x8c\xc8\x42\xf3\xed\xf5\x24\xe9\x9e\x63\x28\x90\x99\x37\x9b\x0e\x86\xb4\xa7\x91\xa3\x14\x5d\x76\x28\xc4\x73\x55\x8d\x67\x41\xd7\xf8\x3e\xa6\xdd\xbd\xc3\xc6\xbd\xe2\x15\xd3\xfe\xe0\x9e\xd4\xc2\x81\xa7\x00\xab\x58\x59\xfb\xb4\x50\x40\x59\xf1\xd6\x1a\x17\x22\x81\xff\x19\xeb\xb7\x35\x3c\xc6\x8a\xde\x6e\x55\x22\x2d\x10\xfd\x1e\xfe\x3f\xb5\xf2\x0c\x1b\x7a\x01\xff\x1a\x5e\xcb\xed\x05\x03\xb6\x9d\xed\x90\x43\xda\xb3\x3b\xa7\xd0\x61\x31\x9b\x55\xac\x46\x16\x7d\x03\x47\x61\x22\x14\xda\xcc\xb6\xf2\xfc\x68\xc2\xf5\xf1\xc8\xc1\x76\xac\x75\x82\x52\x02\xab\xa2\x36\x71\x01\xb0\xdd\x48\x1c\x01\xc1\x0a\xeb\xda\xb3\x46\x48\xb0\x5b\xd8\x33\xf8\x5f\x86\x88\x76\x21\x04\x4a\xf8\x0f\x39\xf2\xb0\x46\xeb\xe0\x0b\x1d\x3b\xca\xc9\x3c\xbb\xd6\x07\xbf\x47\xc1\xea\x11\xe1\xfa\xad\xf1\xed\x5c\x38\x8e\x8c\x93\x3c\x81\x3b\x96\x6b\x9b\x76\x6e\xcd\xf5\xd7\x2e\x47\x55\x70\xf7\xda\xdb\x73\xe4\x88\xc7\xfb\x0f\xdd\xf7\x2d\x47\xa1\x71\xc7\x4c\x47\x7a\xa6\x95\x5b\x2e\x77\x9f\x3b\xfb\xb6\xe7\x5a\x1a\xe4\xfe\x16\x45\x9d\x45\x83\xd5\x45\xc9\xe2\x4f\xa6\xcc\xed\x65\x17\xb4\xba\xfc\xb9\x11\x0c\x56\x38\xc1\xe0\xe1\x4d\xd7\xbb\xea\x9c\x13\x77\x35\xfc\xc4\x21\xd1\x1b\xcd\xf5\xf6\x0e\x7c\x98\xad\x5d\x3c\x84\x43\xe8\x5c\x56\xfc\x02\x08\x10\x83\x8e\x0d\xdf\xe2\x38\xda\x04\xcc\xb1\xd4\xb7\x5c\x09\x70\xd5\x51\x1c\x8c\xbd\xb3\x71\xef\xa1\xb1\x9a\x46\x20\xd0\xa5\x36\x1f\x19\x2e\xc2\xa3\x1b\x94\xfb\x5a\xa7\x04\x43\xd7\x12\x8a\x74\xeb\x76\x7e\xba\x09\xf1\x83\x90\xa2\xfe\x80\x33\x4a\x0a\x3b\xad\x63\xd3\xd1\x71\x72\x89\x47\x26\xc2\x49\x8b\xda\x47\x6c\xd7\xbd\x3e\x63\x33\x7b\x68\x3b\xef\xef\x61\x99\x5e\xce\xb7\x83\xde\x3b\xc4\xaa\x3f\x2c\xa2\x76\x0b\xbd\x5e\x3b\x4d\x48\x93\x79\x03\x1f\x16\x91\xa3\xa1\x5e\xcf\x91\x08\xa5\xf0\x86\x03\x6d\x45\xe2\x7a\x11\xac\x1c\x2d\x88\xab\x7b\x6b\x6c\xc4\xa9\xe2\x28\x81\x13\xde\x95\x21\xcf\x9e\x76\x85\xa9\x62\xa1\x65\x87\xb6\x41\xcc\xd5\xbf\xcf\x44\xcd\x55\xa5\x40\x6e\xad\xcc\x22\x7c\x1e\x74\xf0\xbf\x06\xd4\xa1\x70\x26\xb8\xe3\xec\x69\xc7\x40\xaf\xeb\x68\xc7\x50\x3a\xe6\xec\x8b\x74\x53\x88\x66\x42\x93\xcb\xda\xe2\x74\xef\xdc\x4e\xa8\xd5\x58\x9d\x17\x7f\x2d\x9c\xbc\xcb\xc3\xf6\xdb\x23\x76\x50\xce\x6e\xdb\xf7\xc2\xdb\xfa\xc3\x02\xfe\x1c\x03\x0e\x78\xcf\x78\xcf\x6e\x8e\xf2\xe4\x3d\x64\x0a\xf6\x44\x68\x39\xbe\x11\x9c\xa3\xb1\xb1\xe4\x79\x6d\x0d\x44\x1b\x8f\x21\xa2\x1f\x1d\x36\x5a\xc9\x42\x8c\xf6\x90\x0c\xcf\xcb\x83\xe1\xde\x5e\xca\x57\x89\x8d\xb0\x63\x40\xc6\x43\xec\x44\xd4\x86\x46\x12\xa0\x3a\xe7\x82\x10\x5c\xe3\xcc\x17\x95\x74\x75\x46\x53\x08\x51\xd9\x90\xfa\x0c\x55\xa9\x2f\x49\x2f\x94\x02\x2f\x8e\x19\xfd\xd0\xe4\xa1\x85\x90\x38\x33\x16\xe2\xd0\xa0\xf5\x05\xc3\xae\x0e\xec\x47\x04\x6e\x98\xee\x47\x87\xa4\xd7\x34\x8b\xae\xc1\x03\xdc\xc6\x14\xfd\x28\x8a\x1c\x1d\x30\x56\x03\x58\x81\x3c\xba\x63\x01\xc5\x60\x5f\x8f\x66\x43\x67\x40\x12\x09\x27\x17\x47\xca\x34\x6d\x06\x12\x9f\x70\x1c\x2f\xd3\xf6\xde\x4e\xf7\x0f\x51\x34\xbc\x15\x31\x6b\x8f\xc3\xab\xe7\x83\x43\xe2\xf1\x53\x8f\xc0\x46\x59\xee\xaf\x21\xbb\xd5\x42\x44\x8b\x2f\x2a\xc8\x35\x9c\x6f\x7f\x6a\x5c\x82\xa1\xd7\xd5\xd6\xb5\x75\x0c\x30\x81\xdc\xb7\x9a\x8e\x46\x90\x43\xd5\x2d\xa5\x84\x1d\xa5\x4f\xd9\x50\x9f\x7e\xb3\xb1\x5a\x46\xc6\x1d\xfe\xc7\x04\x64\xad\xe1\x7f\x61\xdb\x63\x3d\x0b\xc1\xcf\xb6\xd8\xba\x66\x55\xbd\x49\x07\x58\xc0\x3c\x4b\xf3\xb4\x4e\x41\xf3\xa5\xac\x5a\x99\xd5\x72\xb1\x28\xca\xba\x9d\xce\xea\xe5\x62\x32\x2b\xca\x89\x6a\xca\x82\xe0\x7f\x5b\x89\x71\x12\x2f\x6a\x56\x56\xf2\x47\x37\xc0\x3f\x96\x79\xda\x2e\x3f\x67\xd9\x82\xa3\xf9\xdb\xb1\x35\x7e\xac\xf6\x33\x0c\xe0\xd7\x45\x79\x8e\x3d\xdb\xe4\x62\x92\x83\x6d\x0a\xe3\x7a\x84\x63\xb7\xc9\xc7\xe4\x7f\x7c\x97\xa7\xb5\x0b\xd6\xb2\xe5\x45\xc5\x35\x68\x98\xff\x47\xbe\xfb\xb2\xb4\xf8\x4b\xb3\x8c\xda\xe9\x87\x00\xb2\xfb\x6d\x7d\x77\xad\x64\xc7\xca\xd9\x5e\xbd\xfd\xe7\x77\x2b\xf4\xf9\xca\xf0\x5b\xe8\xb8\x3f\x20\x9c\xb7\x9c\x00\x97\xc3\x92\xb8\xba\xcb\xa7\x40\x37\x06\x38\x25\xdf\x86\x90\x74\x92\x27\x2a\x81\xdd\x4e\xd9\xc2\x94\xf4\x80\x0e\x9b\x7c\xc8\x87\x8f\x35\x3e\x1e\x44\xfb\x9b\x67\x53\x6c\xf3\xd1\xb6\x74\xe2\x67\x36\x5c\x70\x6d\x8b\x47\xcc\xd6\xfa\x51\x71\xcd\x04\x39\x46\x61\xd3\x40\x58\x32\x3f\x68\xf4\xd4\x38\x20\xe2\xb2\xe6\x20\xdd\x93\x55\x7c\xf2\x91\xb1\x15\x88\x89\x74\xa7\x11\x89\x4d\x62\x3f\x4f\xbb\xb1\x5c\xe6\x93\xac\x28\x16\x2a\xf9\x3a\x65\x37\x95\xdc\x7c\x3f\xfd\x63\xc9\xca\x3b\xf7\x91\xf1\xf3\x91\xf6\x9f\x4d\x21\xb2\x5c\xe6\x9b\x36\xe4\x4f\xff\xc1\x7b\xfc\x25\xa8\x3c\xce\x0f\x90\xe4\x7e\xc9\x2e\xd3\xaa\x66\xe5\x37\x90\x86\x2e\x00\xf8\x7a\xf9\xc6\x01\x73\xa4\x33\x86\xea\x9d\x10\x12\xa3\x03\xe2\xf4\x69\x59\x96\x2c\xaf\x4f\x8b\x65\xcd\xde\xc7\x57\xcc\x8f\x17\x0b\x71\x01\x5c\x2c\x8e\x8b\xbc\x2e\x8b\x2c\x63\x65\x14\x2f\x16\xfd\xc9\x64\x2a\x7d\x12\x81\x3e\x70\xf1\x69\xb9\x40\xbf\x45\x08\x34\x88\x17\x9c\xbf\x04\xfe\x46\xfb\x8b\xb9\x64\xb5\x6f\xd4\x15\x7a\x76\xa3\x54\x0b\x5c\xe4\x7d\x8c\xeb\xf9\x2f\x89\x0b\x6f\xcf\x81\xc6\x77\xa7\x6f\x35\x16\x25\xc7\x77\x5d\xf3\x08\x30\xb8\x8a\x53\xab\x4d\xcc\x08\xbd\xac\x90\x18\xf1\x55\xc7\x2b\x27\x4d\x5e\xa7\x55\x0a\xe8\x85\xcb\x32\x7b\x5c\x8b\xf0\xd5\x97\xad\xf0\xb3\x97\xb7\xc1\xab\x03\xb9\x34\xaf\xa6\x64\x71\x92\xe6\xac\xaa\x5e\xb3\x19\x2b\xcb\x38\xab\x20\x84\x27\x94\x1c\x79\x82\x37\xfc\xee\xf4\xad\x37\x8e\x96\x65\x36\x2c\x97\x39\xa0\xe4\xc5\xc9\x75\x9c\x4f\xd9\xa9\x2c\xee\x29\x8f\x05\xae\xb2\x42\xaf\x50\x14\xe6\x0d\xcf\xe3\x3c\xc9\xd8\x77\xa7\x6f\xa1\x77\xf2\x92\x71\x13\x63\x97\x0d\xbb\x86\x74\xfa\x09\x8a\x55\x2c\x63\x60\x15\x08\xee\x86\x6e\x85\x1f\xda\x27\x2c\x8b\x66\x69\x9e\xfc\x90\xd6\xf3\xa3\x0a\x9e\x15\x9d\xc0\x80\xfa\x13\x96\x85\xde\x55\xb1\xac\x58\x52\xdc\xe4\xf8\x20\xfe\x84\x65\xfd\xb4\xf2\xbd\x41\x9a\x2f\x96\xb5\x17\x60\xb5\x70\x31\xe0\x59\x9c\xf0\xf9\x1e\xff\x44\x70\xf1\x50\xe3\x4d\xe7\x6c\xfa\xe9\xa2\xb8\x15\xb1\xcc\x78\x52\x19\x27\x69\x41\xbe\xe7\x69\x92\xb0\xdc\x0b\x56\xb2\x69\xd3\x27\xc0\x6e\x52\x4c\x41\xab\xa1\x3f\x8f\xab\xaf\x8b\xe9\xb2\xba\xbf\x6f\x25\xf9\x32\x4e\xe5\x0c\xbf\xc8\x4d\xae\x2e\xd3\xcb\x4b\x56\xfa\x1e\x64\xf1\x19\xe7\x74\xbd\x31\xfb\xb9\x5c\x78\xa4\xeb\x30\x98\x7a\x2d\x3a\x86\x5b\x54\x8a\x41\xd3\x5c\x03\x19\x8a\x07\x2d\xb8\xcf\x39\x95\x33\xa2\x28\xfa\x5d\xb0\x82\x01\x14\x65\x86\xe2\x2f\x46\x20\xd6\x11\xe4\x44\x2d\x51\x14\x79\xca\x5c\xcb\x0b\x56\x32\x79\x85\x61\x48\xb6\x9e\xe1\x6b\x15\x32\x0e\xc9\x6d\x1f\x7b\x61\x20\xac\xc7\x42\xf4\xd4\x0b\x31\x34\xdc\x9a\x31\xf9\xc4\xee\x36\x8d\xc7\x27\x76\x77\x5c\x24\xe8\x8a\x57\x3b\x09\xe7\x49\x76\xe7\x64\x32\xea\xb4\x77\x0e\x92\xf2\x47\xb1\xd5\x74\xc8\x5a\x07\xe2\x6f\x78\x33\x4f\xa7\x73\xf9\x45\xcd\x84\x66\x69\x96\xbd\xc9\x3b\xaa\xa2\x9b\x8a\x04\xfa\x03\xac\xac\x6e\x40\x9a\x13\xf3\x07\x6d\x48\xb2\x23\xf8\x66\xbb\x8e\x33\x1f\x32\x45\x18\x7e\x9f\x68\x7c\x3a\x26\x66\x9b\x66\x0c\x22\xd1\x81\xc9\xbf\x08\x32\xa0\xd6\xef\x41\x97\xc6\xea\x49\xc6\xf8\x52\xdf\xf1\xf6\x64\x2d\x7b\xde\x4e\x5e\xd4\x3b\xa0\x0f\xd9\xf7\x14\x25\x7b\xc2\x32\x13\xcf\xf5\xd8\xa9\x21\x14\x7f\xef\xef\xc5\xd9\x14\x7a\x65\x51\xd4\xa2\x59\x2f\x18\xf2\x9e\x70\xfa\xf9\xc4\x77\x0c\xa8\xa3\xe9\x38\x4f\xce\xe7\x0c\x27\x5c\xbf\x8f\x5b\x43\x1a\xea\x87\xed\xc5\x22\xa0\x46\x87\x12\x40\x38\x9a\x13\xe5\x80\xb1\x58\x94\xc5\x55\x5a\x31\x3d\x85\x25\xab\x8a\xec\x1a\xf7\xc0\xde\x1e\xe1\x2f\xa2\xe8\x30\x58\x41\x19\xc1\xce\xf7\x35\xe7\x2b\xc2\xe5\x60\x3c\xf0\x92\x5f\x07\xdf\xe4\x35\x2b\xf9\x42\xb0\x44\x4b\x78\xae\xbc\xa9\xde\x16\xfc\xc8\xb9\x8c\x76\x77\xb7\x3c\x07\xfb\xe2\x1c\x04\x1f\xcc\xec\xbc\x8c\xf3\x2a\xad\x85\x8d\x82\x55\x29\xd5\xeb\xc4\x4e\xb2\x9c\xa7\x1f\xfd\x14\xdf\x9e\xb2\x7f\x2c\x59\x55\x57\x14\xa6\x5c\xe6\x9c\x52\x9f\x4d\xe7\x2c\x59\x66\x2c\x39\x4f\xaf\x58\x59\xf9\xc1\xfd\x3d\xcf\x91\x7c\xcd\x32\x7f\x5b\x98\x3a\xa3\x50\x37\x1f\x5c\x56\x56\xbd\x1e\xfd\xea\xc7\xf9\x9d\xee\x39\x26\x12\x6f\x82\xb7\x75\x84\x69\xa3\x03\x64\x07\xe5\xcc\xc9\xe4\x43\x69\x16\xbb\x2b\x73\xd0\x10\x55\x2e\x92\x26\x50\x78\x80\x17\x26\x35\xda\x62\x06\xe0\x8c\xdb\xdf\x37\x66\xef\xc0\x35\x7b\x27\x79\xe2\x07\x70\xd8\x88\x10\xe8\x30\xf9\xd2\xfd\x5f\x78\x78\x10\x34\x41\x43\xb8\x51\xdf\x03\x86\xc6\x0b\xe1\x4f\x30\x34\xb2\xf0\x5c\x0a\xe1\x8f\x95\x25\x89\xaf\x17\xca\x5f\x16\x00\x52\x34\x2f\xc4\xbf\xc1\x70\xae\xd2\xf3\x84\xa7\xe6\x89\x99\xa6\x09\x06\xe6\xea\x6f\xab\x62\x3e\xa2\x5e\xc8\xff\xb7\x32\xc4\x9e\xf2\x42\xf1\x43\xd7\xdf\xe2\x64\x43\x3b\xa5\x05\x0b\x9c\x66\x48\x3e\x5a\x10\x9c\x83\x0a\xf5\x6f\x0b\x19\x7a\x42\x78\x21\xfd\xea\xbe\xe3\x99\x22\xbf\x0e\x47\xe0\x3a\x2c\x70\xf7\x95\xcc\x71\xa5\x12\x41\x66\xed\x5b\x95\x08\x3a\x7b\x2d\x83\x46\xf2\x5b\x0d\x2b\x15\xfb\xb8\x93\xe6\x3b\xff\x2d\xd0\xfb\xef\x9d\xab\x22\x61\xde\x50\x44\xd5\x15\x3e\x11\x8e\x08\x03\xaf\xf1\x21\xa9\xc8\x53\x91\x84\x3e\xed\xa6\x0c\xf6\xda\x91\xef\xaf\x54\x04\xd9\x50\x27\x9b\x41\xe2\x81\xc8\x84\xb1\xd5\x22\xf9\xee\x8b\x0e\x04\x2b\x9a\x68\x76\xd4\x07\x2d\xe3\x75\x17\x70\x87\x68\x75\x0b\x29\x6e\x87\xe0\xb4\xe3\xda\xfd\x9b\x90\x79\x75\x0a\x22\x1d\x57\x6c\xc7\xfd\xd9\x71\xcb\xe6\x54\x2a\x2c\x05\x9d\xd6\x97\xda\x34\x9f\x96\x70\x7e\x72\x32\xfe\x11\x29\xba\xa4\xe6\xfe\x24\xbc\x45\x23\x6b\xfc\x46\x05\x47\x9e\x34\xec\x3a\x00\x22\x05\x8b\xfc\x82\x61\x7b\xbf\xb1\x21\xd3\x09\x9c\x55\x15\x1a\x5e\xa7\x33\x8e\x40\x14\xa9\x86\x46\xe9\x98\x60\x28\x5f\x6d\xe0\xed\x76\x6b\x24\x3b\x64\x52\x3a\x74\x9f\x29\x88\x15\x57\x14\xfe\x85\xd4\x1f\x2a\x4c\x4b\xf6\xae\xe0\x27\x9d\xbd\x68\x41\x74\x13\x90\x8a\x85\xdd\xb3\xc8\x47\xed\x20\x59\xa1\x3c\x48\xcc\x63\xc5\x90\x16\xcb\xe0\x3e\x9c\x9f\x12\x1d\x1a\x8d\xb7\x9e\x91\x21\x2e\x17\x5f\xde\xa6\x82\x7e\x31\x9b\xf9\x5e\xfc\x53\x7c\x7b\xc6\xf8\xa9\xb0\x6e\x45\x04\x6b\x4a\x1f\x17\x57\x0b\x7e\xc9\xf5\xc2\x75\x53\xed\xaa\x21\xff\x9c\xe6\xf3\x07\xb5\xde\xf9\x1c\xa4\x5f\x73\xd6\x10\x14\x17\xc5\xd8\x9e\x4e\x3c\x96\x16\x38\xf6\xb7\x83\x0a\x3c\x11\x17\x3b\xbd\xb5\x79\xcf\x8e\xc5\x4d\xfc\x18\x24\x05\x28\x58\x28\x83\xd5\x13\xff\xe9\x0b\xb8\xd2\xe3\x5d\x5e\x5f\xd8\x5f\x3e\x0d\xfa\xd3\xaa\xf2\x57\x8b\x02\x19\xc1\x81\x17\x5f\x54\x45\xb6\xe4\x23\x9b\xb1\x59\x3d\xf0\xf6\x0f\x0f\x0e\x0e\x16\xb7\x5e\x58\x17\x0b\xfd\xd5\x04\xfd\x78\xc1\xd1\x3b\x2f\x7c\xef\xa2\x48\xee\x3c\x9c\x1b\xc1\xbd\xc8\x96\xf5\xc5\x5c\x5c\xb7\xa5\x47\xbe\xa0\x79\x42\x99\xda\x36\xee\x96\x7c\x00\x5f\x23\x39\x04\x4b\x7a\xbd\xdd\x27\x7d\xb8\xa9\xf6\xab\x05\x9b\xa6\x71\xd6\x47\x6e\x69\xe5\x4c\x8e\x56\x02\x09\xcb\x0f\xe1\x93\x7e\x5e\x24\x28\xd9\x13\x9e\xc5\x50\xe8\x81\x9e\xb9\xa4\x6e\xa2\x21\xdc\x00\x24\xb0\x29\xfd\x5b\xc7\x6f\x16\x81\x05\xc1\x76\x66\x6d\x8f\xf8\x91\xd7\xb9\x32\xf1\xb5\x70\xe3\x93\x4e\x4b\xac\x2c\x84\xd3\x59\x5c\xcf\x8a\xf2\xca\x11\x0f\xef\x6a\x11\x97\x6d\x1f\xc9\xec\xb6\x7e\x56\x56\xd7\x8b\x07\xbc\x6b\x92\x23\x5d\xee\x0e\x2a\x53\xfc\x8d\xf8\x41\xfe\xec\x43\x19\x3a\x7b\x6a\x09\xb4\x1d\x5b\x11\xe9\x73\xcb\x21\x31\x26\x2b\xff\xb2\x71\xc9\x36\xc9\xbc\x4f\xcf\xbe\xff\xb8\x49\xe6\xbd\xee\xb1\xd4\xf1\xc2\x89\x11\x85\xf4\xe4\x6c\xf2\x58\x0c\xca\x8b\xd1\x68\x8c\x5a\x8c\x44\xca\x5e\x49\xe7\x50\x69\xfe\x13\x9b\xd6\xc8\x72\x57\xd2\xbc\x10\x8e\x24\x25\xb6\x5f\x99\xc2\x78\x33\x40\x76\x88\xf5\xa1\xf3\xcb\x60\x25\x6a\x47\x9e\x34\x5a\x61\x4c\xa6\x01\x85\x09\xf9\xc2\x1e\xac\xf8\xe5\x63\x20\x77\x58\xe8\x10\xe5\x7f\xc1\x66\x40\xe9\xa5\x69\xc2\x65\xbe\xae\x27\xc1\x4a\x88\x79\x8d\xca\xa5\xec\x17\x0e\xe8\x8f\x28\x18\x20\xc1\xa8\x30\xb8\x77\x58\xe4\x6f\xe8\x38\xba\x14\xf7\xdd\x03\x2d\xbd\xcc\x08\xa8\x26\x14\xb2\x87\x81\x2d\x7b\xd0\x0e\x5a\x72\x76\x63\x60\xa3\x21\x9a\x50\x30\x1c\x03\x7a\x71\xd5\x55\x5d\xc7\xd9\xb6\x82\x0e\xa5\x1a\x03\xdf\x50\xb2\x09\xf4\x3c\xfd\x00\x57\x72\xf3\x12\xc1\x6e\x6b\x22\x87\x71\x4b\x4f\x0f\xb5\xa5\x41\xa7\x04\x15\x0f\x07\x21\x34\x10\x94\x59\x7c\x09\x1f\x53\x47\xbe\x70\xeb\x27\x25\x0b\x30\x88\x23\x1b\x89\x71\x40\xa7\x7c\x33\xca\xe8\x59\x28\x2d\x87\x6d\x24\xb4\x7c\xe3\x31\x9d\xe2\x95\x46\x6d\xf4\x86\xce\xae\x19\x1d\x9b\xa5\x59\xcd\x4a\x3d\x3f\x2c\x23\x1e\xa5\x90\x0a\xf1\xb4\x90\xb7\x10\xec\x46\xd1\x41\x13\x18\xfa\x42\xe2\xbe\x1d\x2f\x16\x21\x2e\x71\xb0\x81\xcc\x23\x63\x89\xf7\xaf\xf4\x8e\x69\xe7\xc4\xc3\x76\xf8\x5c\x54\x9b\xbc\xac\x22\x97\x3f\x30\xf4\x1c\x2b\x16\x27\xbe\xd4\x91\x84\x21\x2f\xd7\x17\x9e\x77\x41\x28\x87\x26\x40\xac\x8e\xa1\xd7\x3a\x5a\x6f\x2e\x03\xa3\x2d\x16\x21\x2f\x04\xe6\xfe\xbb\xa4\x2a\xf4\x59\x29\x1b\x72\xc0\xab\xa7\x19\x82\x7a\x0b\x37\xb9\xc4\x69\xc5\xfd\x7a\xce\x72\x87\xb3\x5b\x47\x1b\x24\x02\x1e\xa9\x81\x84\x23\x86\xf6\xc5\x15\x5e\x1e\x41\x2d\xf9\x99\xcc\xe0\x90\x88\xf6\x2c\xe7\xf7\x69\x9b\xde\xf7\x4b\x56\x2c\x58\xee\x03\x87\x25\x89\xcd\xaa\x09\x8b\x32\xbd\x4c\xf3\x38\x43\xda\x07\x49\xe2\x94\x47\x1a\x1b\x5a\xe7\x0c\xe5\x9d\x5a\xd7\x23\x5c\x97\xc6\xfd\x06\x52\x4e\x51\xd8\x28\x51\x90\x8f\x6f\x03\x0f\x22\x4b\x70\xf2\x80\x8b\x47\xc5\x73\x19\xdc\xa4\x79\x52\xdc\x84\x48\xfa\xce\x09\xca\xaa\x79\xab\x04\x0c\x53\x2b\x0d\x5a\xb7\x52\x23\xeb\xbb\x51\x48\x7f\xa3\x0f\x38\x79\x23\xe5\x8b\x79\x27\x95\xdb\x41\x12\x15\x6b\xd0\xc4\x61\xe2\x6a\x4c\x1c\x05\x76\x13\x1b\x4b\x08\x24\x91\x21\x85\x0d\x38\x84\xa3\xe3\x87\x32\x5e\xf8\xee\x13\x25\x24\xa7\x1d\x29\x17\xb6\xf7\x25\x6e\x97\xc6\xf4\x77\xd6\x71\xca\xd8\x0e\xd0\xdc\x60\xa3\x74\x8c\x51\x56\x1a\x69\xb1\xe8\x9c\x33\x7d\xd3\x77\x8f\xab\x7b\x28\xba\x87\x9c\x3a\x8c\x6d\x0f\xaf\x91\xeb\x2c\x0f\x0c\xba\xda\x6f\x7a\x80\xe1\x17\x8e\xa7\xa4\xb9\x61\x5a\x01\x8b\x01\xbe\x63\xeb\x42\xa0\xe6\xa2\x6c\x8a\x9c\xa1\x8b\x5a\x51\x4a\x39\xf3\x13\x02\x68\xa4\x06\x30\x4d\x94\xe4\x10\x33\xbf\x0e\x4a\xd2\x5d\x43\xd0\x08\xd1\x87\x22\x6c\xba\x30\xe7\x28\xd5\x92\x31\x4b\x0a\xda\x3b\xb4\xe9\x2d\x8c\x7b\x33\x74\x2f\xb6\x48\xc8\x22\x8c\x7a\x49\x28\x49\x77\x29\xea\xc7\x36\xa2\x20\x28\x25\x15\x53\x74\x3e\x67\x79\xe4\xae\x18\x06\xa5\xab\x72\x9e\xa7\xfb\x5c\xe4\x67\xcb\xe9\x94\x55\x55\x58\xe4\x5f\xc7\x69\xb6\x2c\x35\x73\x42\x5b\xc2\x33\x08\x06\xc3\xc9\xee\xa4\x55\x91\xf1\x9e\xea\xfa\x80\xa5\x21\xb5\x92\x53\x53\x02\xcf\x72\x80\x82\x45\x01\xd2\x7f\x7a\xb2\xb5\x47\x1a\xfc\xd4\x03\x5c\x34\xc3\xd6\x87\x6b\x4f\x42\x19\xd3\xb7\xd7\x83\x3f\x3b\x69\x5e\xd5\x71\x3e\x65\xc5\xcc\xe0\xef\xee\xef\xcd\x43\xcf\x08\x65\xf4\xc5\x8f\x38\xac\x96\x3c\x4e\x1a\xa7\x5a\x97\xc7\x03\x56\xb5\xc3\x40\x82\xb8\xa5\x25\x83\xdf\x4a\x6d\xca\xc8\x33\x95\x1d\x8d\xac\x92\xdf\x7c\xca\xc9\xc5\x72\x36\x23\x9a\x74\x06\x08\xbb\xb5\x45\xc6\x22\xbb\x8e\x6b\x66\x57\xab\xff\x77\x66\xe8\xf7\xb8\x35\x20\x59\xc6\x60\x48\xd7\xc1\x5c\x2d\x8a\x1c\x1e\x35\x9c\x18\x5f\xb3\xbc\x9e\x24\x69\xb5\xc0\x77\x2b\x0b\x4a\x04\x41\xe2\x1f\x93\x3a\x2e\x2f\x59\x3d\x89\xb1\x41\xa2\xd1\xfc\x5b\xb8\xb0\xff\x0c\x81\x8b\x3e\x5b\x06\xb0\x9d\x30\x0e\x9e\x6a\x73\x56\x7e\x73\xfe\xee\xad\x2b\x30\x91\xca\x14\xde\x9e\xcf\xd2\xab\x45\xc6\x40\x2c\xd4\x02\x37\x72\x51\x2c\x00\x8b\xf6\x2b\x58\xb3\x9b\x44\x08\xd3\xac\xc8\xd9\x19\x2c\xd5\x56\xfc\x22\x92\x87\x58\xbb\xc1\x2a\x0d\x71\x5c\x94\xec\xfb\x94\xdd\xb4\x62\x38\xca\x0c\x80\x72\x42\x18\xb9\xc7\x6a\x91\x3b\xe1\x74\xb6\x68\x55\xec\x9a\x56\xc5\xce\x80\xfe\xb2\x6c\x0b\xda\x19\x35\x49\xec\xa4\x8d\x61\x93\xe0\xd9\xf0\xb5\xda\x53\x1b\x83\xfb\xf3\xd6\xcf\x61\x77\x1d\x01\x36\x67\xb8\xb7\xd6\xc6\x46\xc2\x1b\x9c\x92\xe4\xe2\x67\x57\x45\x1d\xe9\xa2\x94\xb1\x46\xe8\x87\x42\x0e\xbd\xdd\xe8\x36\xf0\x7b\xd5\x0c\xd5\x87\xb1\x52\x23\x63\xd9\x6a\x18\x73\xf1\x9a\x8b\x15\x2b\x57\x8b\x46\x2d\x12\xdd\x68\x64\x7d\x8b\xc5\x16\x89\x35\x47\x32\xe8\x42\xa6\x0b\x17\x41\x26\xd6\xaa\xb2\x56\x91\x44\x84\xae\x23\xe3\x4b\x41\x18\x8b\xc7\xfc\x54\x30\x72\xc9\xa8\x5f\x22\xc7\x5e\x22\xd6\xf7\xda\x48\xc8\xee\xc3\x4f\x07\xb4\x13\x2d\x4d\x6a\x76\xb5\xe0\xac\x05\x5f\x45\x25\x93\x02\xd6\xcf\x89\x03\xa8\x42\xd8\xfd\x26\x1e\x3e\xd7\x45\x79\x7b\xc7\x31\x6d\xd1\x47\x48\xed\x1a\x5b\xc8\x94\x0f\x66\xab\x9b\x34\xcb\xde\xb1\xf2\x92\x41\xb2\xbe\x8f\xf0\xd1\x31\x43\xea\x74\xf0\xc6\xd7\x10\xa1\x16\x07\x9e\x25\xd2\x65\x77\x28\xfc\x28\x5f\x91\x68\x98\x61\x16\xdf\x15\xcb\xfa\x6c\xc1\xa6\xe9\x2c\x65\x49\x04\x6d\xf4\x31\xf5\x7d\x7c\xc5\xee\xef\x69\x0a\xea\x34\xc9\xe0\x13\x12\x06\xb5\x2a\x11\x4e\x4e\x3c\x4f\xef\xf5\x76\xad\xea\x83\x55\x1b\xad\xc8\xa3\x65\xbc\xa1\x03\xcb\x88\x36\x36\xb4\x51\x8c\xda\x2d\xcb\xbb\x14\xe4\x8c\xcc\x06\xc6\x4d\x0b\xd9\x87\x22\xba\x16\x49\x13\x41\x0b\xb9\x0e\xc4\x10\xa9\x76\x93\xc1\xaa\x71\xe9\x19\x6c\xcd\x20\x8d\xb6\x08\xe1\x2d\xaa\xe9\x64\xb1\x7e\xc6\x90\x91\xeb\xb6\x61\x7b\x17\x1d\xaa\x5d\x04\x12\xfb\x0d\x87\x96\xeb\xc1\xc3\x15\x2e\xef\x77\x76\x68\x67\x88\x71\x15\xa9\x50\xbe\xf0\xb9\xd5\xbe\x75\x60\x14\xae\x70\x58\x31\x70\x16\xd5\x66\xf7\x82\x10\x87\xfa\x18\xa5\xa5\x14\x82\xb3\xf2\xae\x97\xb6\x0d\xdc\xf3\xcf\x14\x65\xd5\x8e\xa8\xba\xf6\x19\x6f\xad\xc1\xd6\xb6\x51\xe2\xb7\xbc\x36\x99\x97\x98\xff\x91\x37\x81\x5f\x2d\xda\xa8\x23\x92\xe8\xef\xcd\x48\xa2\xb6\x45\x8c\xe3\x4d\xaf\xbe\x5b\xb0\x0f\xb3\x16\x23\x8e\xc9\xce\x70\xa4\x7f\xda\x22\x9a\xb9\x83\x59\x76\xdc\x66\x1c\x4c\x72\x8b\x91\x86\xe0\xe9\x8a\xa1\xc7\x8d\x29\xcc\x67\xd6\xf1\x38\x96\xb1\x1d\x06\xd4\x1d\xac\xea\x62\x39\x9d\x83\xc5\xd6\xc0\x83\xdf\xa0\xfc\xea\x85\xf0\x1b\xe2\x09\x62\xf2\xbb\xe2\x9a\x89\x54\x96\x27\x22\xf1\x24\x4f\x44\xda\x34\xce\xa7\x2c\x13\xc9\xc7\xf0\x01\x7a\x91\x49\x71\x93\x0f\xbc\x4f\xec\xee\x75\x71\x93\x43\xca\x72\x01\xdf\xdf\x2d\xe0\x6b\x51\xb2\xaa\x82\x84\x8f\xfc\x97\x17\x2a\x1b\x88\x01\x9a\x09\x60\x39\x61\x31\x20\xd2\x78\x59\x41\x51\xae\x58\xbe\x1c\x48\xf2\xf2\x8e\xe5\x4b\xa1\xab\x39\x90\xba\x0f\xc9\x45\x26\x12\x92\x62\x79\x21\x78\x63\x51\x21\x76\x0f\x7e\x62\xf7\x84\xbd\xc2\x00\x0d\x17\x40\x77\x93\xff\x28\x96\xb5\x48\xfa\xb0\xac\x45\x59\x96\xd7\xac\x14\x85\x4f\x72\xb0\x04\x84\xdf\x19\x8b\x55\xa5\x6f\xf9\x6f\x2f\xac\x96\x17\x57\x69\x3d\xf0\xf0\xaf\x17\x82\x66\xc3\x40\x28\x38\x84\xa8\x4f\x3e\xf0\xf0\xaf\x17\x26\x65\x7c\x29\xe6\x83\xff\x14\xd3\xc1\x7f\x62\x02\xfe\x16\xcd\xf3\x9f\xa2\x75\xfe\x53\x34\xce\x7f\x8a\xb6\xf9\xcf\xe2\x5a\x82\x7e\xb8\x46\xc8\x62\xc1\xbf\x39\x99\xc3\xba\x12\x59\x53\xe2\x35\x21\x51\xeb\x1e\xa0\x32\x09\x3e\x3f\x10\xdf\x44\x49\xc2\x12\xe0\xaf\x2b\x0a\x8d\x92\x36\x58\x58\x68\xba\x50\x91\xc0\x58\x22\x80\xb3\x54\x22\x92\xeb\x10\x93\x43\x52\xe3\xfd\xfd\xaa\xc1\x47\x25\x11\x2a\x8e\xb6\x00\xcf\x1d\xa2\x46\xaa\x7e\x6e\xa0\xd1\x90\x0f\x71\x9b\x23\x11\xeb\x0c\xad\xf5\x60\x48\x3e\xfb\x71\x92\x1c\x67\x71\x55\xf9\x6d\xcd\x0a\x11\x24\x15\xd0\xdd\x49\x73\xec\x25\x5a\x99\xe0\x4f\x3b\x90\x0c\xda\x6e\x08\xb6\x16\xc6\xef\x1b\xd4\xc2\xa1\xfd\x09\xe9\x60\x8d\xe0\xcf\x18\x3c\xd2\xd2\x02\xe4\x2d\xd9\x5d\xf2\xbd\x7a\x1a\xd4\x4e\xc0\x69\xb7\x8a\x1c\xb1\xd9\xf3\xfa\xd0\x2f\x2f\x14\x3f\xf6\xf1\x94\xd1\xcf\x93\xd7\xb5\xd4\xd3\x4d\xf3\xcb\x77\x71\x1e\x5f\x4a\x1d\xef\x6b\x79\x5d\xec\xc3\xf9\x84\x41\x22\xd3\x64\x1c\x96\xac\x5a\x66\xe8\x64\x2b\xbc\xc2\x12\x28\x49\x95\x1f\xe8\x8d\x7b\x96\xe6\xc9\x7b\x16\x97\xac\xaa\x61\x9a\x45\xe5\x3e\xaf\x8d\xf4\x02\x5d\xab\x43\x56\xaf\x27\x7e\xec\x46\x91\x03\x29\xd1\x2e\xd6\x2e\xf9\x05\xb4\x46\x11\xe5\x42\xde\x1d\x55\x75\xc8\x5b\x0a\x94\x53\x1c\xf8\x32\x2b\xb9\x58\x5e\x5c\x64\x0c\xab\x10\x68\xd1\x01\x46\x59\x2d\xbb\x46\x0b\x58\x3e\xcf\xf1\x25\xba\x71\x20\x9e\x28\x78\x75\x4d\xb0\x69\xf4\x47\x49\x5c\xc7\xfb\x62\x8d\xc1\xd0\x8f\xcd\x59\x10\x1a\xc3\x84\xb4\x07\x2b\xfa\xe5\x56\x79\x2c\x8b\x25\x35\x94\x7d\x86\x55\x7b\xc1\xc8\xa3\x65\x3d\xf4\x4b\x8b\x99\x6f\x12\xb9\x41\x78\xc7\xc4\xb3\x26\x72\x7c\x41\x3f\xae\xeb\xd2\xf7\x5a\xb8\x2a\x1e\x2f\xa2\xd5\x2a\x73\x4e\x96\x60\x72\x35\x92\x4d\xa0\xaf\x39\xf8\xe8\xf5\xf0\x6f\x5f\x8d\x6b\x14\x45\x64\x11\x8b\x81\x14\x40\x42\x6f\x0d\x46\x84\x5f\x18\xc2\xae\x65\x44\x74\x24\xcc\xf5\xb4\x42\x27\x9c\x64\x59\x62\x04\x3e\x9c\x7e\x99\xc1\x89\x03\x14\x44\x2a\x25\x2a\xf5\x9c\xab\x71\xa4\x2a\x1f\x4b\x6f\x75\xb0\x37\x74\x1d\x8b\x98\x0f\x22\xdf\x2b\xda\xe8\x46\x14\x6e\x42\x73\xa9\x1a\x91\x09\xd9\xb4\x76\x2d\x59\xe1\xec\x5f\xed\x32\xd4\x02\xc2\x91\x89\xb0\x18\xc1\x49\x1a\x47\x7d\x98\x29\x7d\xc3\x28\x8a\x3c\xd9\x8e\xa7\xd6\x7c\xb9\x54\x8d\x0a\x40\x68\x1c\x9a\x1c\xba\x57\xb9\x78\x1c\x43\x4c\xe0\xb6\xbe\x69\xcb\x98\xfb\x22\xa4\xf0\xad\x29\x33\x88\x99\x2c\xb8\x14\xd9\xfc\x3f\xb1\x1c\x4e\x4c\xc2\x17\xc2\xe2\x08\x13\x56\xd5\x65\xd1\x8a\xdc\x48\x4f\x82\x8e\x23\x40\x6a\xb5\xd2\x13\x04\xf5\x6a\xd5\x7e\xfd\xb7\x7f\x53\xaa\x92\x6b\xce\x07\xc3\x3b\xa8\x08\x0d\xdc\x7d\xcd\xa5\xef\x1b\x23\xf7\x1d\xe4\x41\xd6\x0d\x36\x63\xeb\xe0\xaa\xff\xb1\x64\x4b\x56\xf1\x99\xef\xe3\xcf\x21\xff\x39\x89\x93\xe4\x3f\xf8\xa7\xef\xe1\x7b\x8c\x17\x7a\xb8\xff\x2a\x34\xd0\xa4\x10\xf1\xac\x66\xe5\xa9\x04\x13\xf0\x1b\xba\x28\x6f\x39\x6b\x2e\x72\xeb\x6f\x54\xbf\x5e\x58\xa2\xad\x2e\x2b\x37\xad\xab\xca\xcd\x63\xa2\x11\x6d\xe3\xda\x5c\xdc\x18\x50\xe0\x99\x5e\x01\xe2\xbd\x9e\xf1\xd9\x47\x98\xfb\x7b\xbe\x0e\x85\x92\xac\x90\x68\xf3\x33\x05\x7f\xa2\x25\x70\x31\xdb\x11\xe7\x88\x45\x22\x44\x33\x22\xd3\xf7\xc4\x0c\x82\x06\x0f\xe6\xe1\xee\x02\x9e\x11\x19\xbd\x1b\xdf\x53\x8c\x2b\xa4\xef\x28\x2e\x75\x47\x71\xa6\x3b\x92\x1b\xdd\xe1\xcc\xa7\x80\x48\x90\xb5\x02\xaf\x4c\xba\x42\x7a\x1c\x2a\xaa\x20\x59\x47\xd0\x2a\x9e\xa5\xb7\xdf\x14\xc5\xa7\x8a\x10\xbf\x08\x42\xca\x56\x83\x11\x1c\x5a\x60\x4f\x37\x83\x03\xaf\x09\xba\x9e\x3e\xb1\xca\xf5\x0b\xd8\x7a\xa6\xfc\xe2\x02\x89\x6d\x9f\x4b\xbf\xac\x95\xcc\x26\xa9\xc0\xaf\x76\x89\xef\x7c\xbe\xfb\xbd\xeb\xf9\xce\x71\x89\xb6\xee\xf4\x4a\x2f\x00\x68\xf7\x19\xab\x7d\xc5\x95\xb3\x3c\x5a\x35\xa8\x17\x94\xa5\x55\x1d\x8d\xc6\x8d\x04\xb2\xfc\xdb\xeb\x83\x05\x89\x13\x70\x68\xf8\x93\x5f\x07\x54\x7d\x4a\xd7\x50\xa5\x8c\x10\x6a\x4c\x34\xb1\x78\x5b\xa8\xf4\x28\x2a\x6b\xc2\xba\x78\xfd\xe1\xdd\xa0\xfd\x9e\xaf\xe1\x31\x10\xe1\x8e\x17\x34\xa8\xf9\xfb\xd5\xd1\xeb\xc9\xf9\xd1\x5f\x27\xef\x8f\xde\x9d\x4c\xce\x4f\xce\xce\x75\x64\xd9\xbf\xc7\xfb\xff\x3c\xda\xff\xaf\x83\xfd\xbf\xfc\xb8\x3f\x7e\xd6\x86\x3e\x3d\xf9\xf8\xf6\xe8\xf8\xa4\xab\x00\x09\xdc\xca\xf1\x5b\x9c\xc7\x97\xa8\x97\x8f\x7f\x85\x09\x80\xfc\x90\x88\xe2\x37\x28\xf9\x75\xa1\x06\xda\x41\xaa\x9a\x56\x51\xf3\x53\xc5\x47\x5c\x83\x7a\xe8\x79\x68\xa5\xcb\x61\x8e\xbf\x39\x3a\x3d\x53\x7d\xea\xf9\xaf\x76\x7f\xbc\xd9\x1b\x06\xf7\xa3\x17\x2f\xbd\xa7\xff\x2d\x63\xed\x7e\xfc\x70\x76\xf6\xe6\xab\xb7\x27\x16\xf8\xa8\x27\xa0\x74\xdf\x59\x35\x8d\x17\xec\xa8\xae\xcb\xf4\x62\x59\x33\x5f\x58\x1a\xc3\x1d\x17\xb2\xa2\x95\xf7\xc2\x1b\x78\xbd\xac\x1e\x7a\xa1\xf7\x92\xff\xbc\xe4\x3f\x9f\x7a\x4f\x07\x5e\xef\x1f\xcb\x02\xd2\x9f\xf2\xf4\xff\x73\xfb\xfc\x4f\xfc\xe3\xbf\xf1\xe3\x8f\x07\x43\x0f\x67\x11\x6b\x3a\x9e\xc7\xa5\x56\x9a\xa1\xb1\x35\x31\x7f\x34\x9d\x97\xe3\xfb\x7b\xaf\x17\x5f\x2d\x64\x49\x5c\x3a\x11\x60\xd5\x97\x5e\xef\x7c\xbc\x39\x3b\x3b\x89\xa3\x2f\x56\x1c\x8d\x17\x99\xe6\x97\x8d\xf1\x65\x0c\x3d\xad\x22\xd4\xe8\xe2\xb8\x4f\xe3\xfc\x8c\x01\xf1\xfd\x90\xbf\xc9\x17\xcb\xba\xb2\xb5\xb1\x92\xf4\x3a\x52\xbe\x23\x50\xa4\x2c\xb8\x2c\xdf\x4b\xd2\x6b\x2f\x08\x59\xd6\x09\x20\x6c\x40\x86\x2c\xe3\x1b\x5f\x4f\x85\x97\x83\x09\xab\x37\x2b\x0a\x2f\x18\x26\xe9\xb5\x30\x7f\x39\x9e\xa7\x59\xe2\xb3\x4c\x32\x63\xbb\xbb\x3c\x2f\x95\x04\xa3\x0f\x9e\xea\x7d\x2c\xd6\xf8\x9d\x4e\xa2\xd4\x12\xa0\x4f\xb7\xbe\xbd\xe2\x73\x76\xb3\x33\x71\x42\x10\x5d\x24\x37\x80\x70\x93\x81\x5f\x55\x34\x12\xbf\xee\xef\xf9\x15\x45\x28\x2a\xe2\x71\x13\x79\x5e\x63\xd4\x41\xe9\xd2\x84\x09\x31\x0d\xe8\x8b\x4f\xe6\x71\x25\xe5\x36\x70\x1d\x17\xb9\x40\xd1\x58\x85\x40\x53\xfa\x21\x00\xde\x24\xc6\xa7\x1a\x66\x13\x4a\x48\x36\x52\x2b\xf9\x3c\xbe\x34\xbe\xcf\xea\xbb\x8c\x61\x0a\x5e\x84\x10\x6d\x91\xb2\xac\xe6\x6d\x4a\x4a\xba\xbb\x17\x61\xe2\xd0\x08\xe4\x2e\xe5\x32\x44\xfb\x9b\x7f\x92\xa1\x34\xbb\x1a\x39\xd2\xee\xef\x21\x5c\xbb\xa0\xee\x43\x07\x44\x3f\x4e\x12\x52\xb1\x70\xb9\xd8\x5d\x23\x90\x65\x13\xd1\x8a\xa9\xd1\x6e\xa3\x5a\xb9\x71\x15\x6a\x67\x18\xb8\x5d\x03\x2b\x6f\xf7\x18\xb3\x1d\x6c\x32\x21\x5e\xfb\xde\x9e\xa8\x47\x49\xab\x74\xa1\x51\x3a\x0e\x9a\x26\x4c\xc9\x71\x95\x26\x66\xb3\x6f\x92\x28\x4d\xac\xe1\xad\x6b\xdb\x5c\x83\xd0\xba\x58\x2d\x07\x63\x10\x8e\x36\x25\xdf\xdf\xaf\x9a\x61\xa7\xc6\xbd\xbc\xe8\x2b\x70\xa1\x0b\x8a\x1e\xda\xad\x54\x24\x72\x66\x70\x7f\xbc\x8e\x1d\xb5\x50\xdf\x12\x69\xc0\x4c\x7d\x29\xdb\x91\x16\x3e\x46\x9b\x9c\x7b\xeb\x1e\xa8\x85\xda\x20\x46\x9b\x1f\x37\x25\x6f\x35\x50\xba\x72\x3a\x50\x76\x6a\xf7\x40\x7d\x6c\xa1\xbe\x25\xd2\xf2\x0d\x1c\xbf\xd4\x40\xb5\xf0\x31\xf7\x01\x10\x01\xe7\x48\xd1\x56\x80\x56\x44\xad\x14\x18\x90\x56\x2a\xed\xa1\xb9\x7e\x2f\xd8\x25\xd5\x27\x70\x13\x59\xe4\xb7\x0c\x42\x1b\x98\xd5\x70\x80\x0f\x0b\x96\xa7\xf9\x25\x27\x6a\xd6\x39\x26\x4a\x22\xb6\x4a\x50\x86\x8c\x11\x1e\xba\xd6\xf9\x00\xde\x84\x40\x16\xa0\xe9\x72\xaf\x87\x86\x29\x92\x70\x8b\xfb\x19\xd2\x3e\xcb\xc9\x0b\x01\xc3\x46\x2f\x59\xce\x4a\x72\x3a\xaa\xf8\x74\x1c\x3d\x71\x5a\x90\xea\xc2\x34\x89\xcc\x8d\x1f\x1a\xc4\x4c\x7c\xc0\xee\xef\xda\x25\xb0\xe2\xbb\x56\x06\xce\x72\x7b\xfa\xa0\x46\x28\x39\x94\x44\xdd\x7b\xe1\xed\x39\x59\x49\xd0\xce\x4e\x82\x95\x04\x7c\xba\x93\x26\x91\xf7\x74\xcf\xe6\xbd\xd2\x24\xd8\x7b\xea\x3d\x1d\x5a\x94\x4c\xda\x1c\x89\xbe\xd0\x7a\x20\xc9\x55\x95\x80\xd5\xfc\x34\xa9\x79\x4a\x69\x72\x17\xb1\x6e\x80\xf3\xbf\xcb\x18\x6d\x0e\xc7\xc2\x7b\x0a\xd4\x9a\xf7\x9d\xdf\x0a\x04\x94\x84\xb7\x9f\x08\x38\x58\xa0\x2b\xe1\x9f\xe0\x5a\xd8\xc6\x18\x0a\x8f\x78\xf6\x38\xd8\xf3\x86\x5e\xd3\xa8\x76\xad\x21\xc1\x0d\x25\x91\x84\x99\x45\x6d\x7f\xfe\x93\x63\x24\x92\x64\xa6\x8d\x11\x4f\x24\x18\x79\x3b\xde\x1e\x4f\xda\x7b\xea\x1a\x48\xa8\x61\xc4\xff\x1f\xc3\x10\x36\x4d\xc7\xf9\x20\xf1\x11\x8a\x3e\x74\x84\x44\x92\x52\x5d\x71\x8f\x90\x52\xe0\x46\xb5\x13\x1c\x0a\xa5\x7f\x7d\x7f\x2f\x84\x19\x08\x12\x45\x5e\xbe\x04\xc1\x1d\xd4\x2b\x13\x39\x47\x64\xf6\x0c\xc6\x1b\x7a\x86\xbf\xbc\xa7\x48\x54\xdd\x30\x76\xef\x09\x26\xa2\xf7\x66\xff\x09\xd9\x87\xfe\xab\x5a\x5f\x7a\x06\x7f\x87\x7f\x90\xfa\x1c\x67\x45\xb5\x05\xf5\xd1\x24\xad\x58\x20\xed\x31\x49\x9e\xde\x75\xcf\x3a\xb6\xdd\x9e\xf7\xd2\x6b\x9a\xd0\x24\x63\x5d\xb7\x4f\xd9\xdc\xc8\x6c\x5c\x46\x6e\x1c\x37\xa1\x45\x99\x1e\x80\xfc\xaf\x47\xa4\x20\xfd\x2b\xc9\x63\x6b\x9a\x15\xd6\xf1\x25\xde\xa5\x24\x8b\x50\xf5\x7a\xb8\x59\x72\x54\xfe\x6a\xdf\x79\x82\x95\x2a\xd4\x4d\xea\xf6\x9e\x0a\xff\x32\x1d\x3b\x09\xaa\xe7\x4b\xe9\xa5\x58\x87\xba\x4e\x79\x41\x86\x0b\xa3\x38\x12\x3a\xae\x4c\xaa\x50\x10\x3e\x61\xe6\x13\xa8\xf8\x54\x34\x57\xe6\x8b\x77\x9e\x34\xf1\xc2\x34\x09\x36\x92\x58\xab\x18\xa4\x7b\x61\x9b\xaa\x3e\x8e\xa2\x3e\x9c\x7c\x92\x89\x24\x34\x94\xd0\x4c\x24\x99\x16\xda\x90\xef\xd1\x55\x10\xfc\x1c\x94\xd4\x6c\x15\x16\x19\x25\x9b\x3f\x1f\xc9\x54\x0d\x83\x97\x48\x58\xd8\x94\x62\xad\xa7\x55\x52\xf6\x80\xb9\x8d\xbc\xda\xd9\xfb\x7a\x5e\x5f\x65\x91\x70\x0f\x9f\xb3\x92\x4a\x20\x78\x96\xcd\xc4\x50\xd1\x9d\x6f\x64\x85\x00\x6e\x86\x57\x53\x8d\x57\x2d\x77\xfe\x4e\xc6\xca\x28\x25\xe8\xce\x3c\x95\xf9\x06\x01\xf0\x83\x10\x4c\x21\x41\xc0\x48\x80\xfa\x2a\x95\xb8\x18\xd4\x90\x96\x9f\x41\x81\xad\xd8\x5c\xde\x8b\x24\xbd\x7e\xf6\xd2\x93\x8e\x38\x7c\x52\x6f\xd0\xe7\xfd\xd3\xcf\xc4\xaa\xca\xb6\xb9\x99\x31\x90\xfc\x26\xa7\xbf\xbb\xc8\xb3\x38\x40\xda\xbe\x55\x5c\x62\x65\xb7\xec\x7a\x1b\x71\xf2\x67\x8b\x83\x73\xc6\x92\xea\x6c\x7e\x17\x89\x81\x95\x04\x6c\xd7\x18\xd7\x5e\xcf\x3e\x3c\x58\x55\x9f\x74\x4b\x88\x40\x84\x34\x44\x20\x2d\xe8\x89\x60\x3a\x5e\xbe\x78\xc6\xff\xf7\x64\xf6\x2c\x2d\xab\x1a\x44\x44\x06\x64\x35\x2d\xd3\x45\xfd\xf2\xc5\x33\xf1\xc3\x53\xd7\x82\x35\xc5\xa2\xc8\xf3\x1a\x1f\x75\x92\xf9\xfd\xaa\xfa\x61\x9e\xd6\xac\x5a\xc4\x53\xf6\xcb\x74\xf0\x9c\x55\xf5\x60\x47\x20\x8f\x8e\x64\x9e\xd6\xec\xb6\x7e\x76\xbb\x0f\xb2\xbb\x79\x91\x25\xac\x7c\xaa\xbb\x05\x11\xc9\xed\xbe\x4d\x79\xb7\xde\x17\x09\xab\x46\x07\x63\xf0\xc0\xf2\xbd\x64\xa2\xa0\x01\xaf\xd7\x6b\x43\x3e\xb7\x20\x77\xb0\x6a\x39\x1c\xb3\x54\x08\xe2\xbe\xba\x7b\x93\x44\xc4\xf6\x1d\xf7\x3a\x3f\x7a\xd2\x99\xfc\xec\x5f\x1a\x72\xbd\x34\xf1\x82\x28\x8a\x38\x8c\x45\x84\xa4\x84\x44\x96\xd3\xf8\x28\x49\x49\x72\x1b\x72\xbc\x30\xac\x3a\x8a\x4d\x92\xdb\xe8\x60\x98\x26\x18\x3d\x2f\x4d\x6e\xf7\xf6\x82\x15\x87\x71\x54\x33\x4a\x93\xdb\xf1\x10\xca\x46\x1c\x04\xfa\x78\x8e\x6e\x67\x0e\x7b\x3d\xa3\x57\x3e\xb4\xc3\x4f\xcb\x74\xe6\x43\x11\x6d\x63\xce\xbf\x1a\x21\xa3\xa7\x24\xef\x87\xb4\x9e\x17\xcb\xfa\xeb\xf4\xb6\x3d\x26\x48\x2e\x21\x0a\x0b\x6e\x92\x60\x05\xc4\xd5\xeb\x55\xf3\xbb\xa1\xb7\xc7\x3f\x74\x3c\x51\x26\x43\x00\x59\x0b\x4f\x14\xe2\xff\x29\x09\xee\x33\xff\xc7\x6a\x2f\xf0\xe5\x3a\x49\x93\xe8\xa9\x3f\xfa\xfb\xd3\xf1\x5e\xf0\x34\x78\x76\xa9\x37\x3c\x54\x1c\x42\x35\x15\x67\x81\x60\x9a\x44\x6b\xc2\x3f\x43\x9a\x88\xfc\xb1\xbe\x38\xc7\x97\x4d\xd0\xc8\xb1\xd4\xab\x93\xa3\x80\xca\x13\x58\x01\xce\xd0\xcb\x03\x5c\xf1\x7c\x1a\xcd\x1c\x3e\x77\xdd\x13\x06\x23\x09\xf8\x47\xe6\x2c\xc8\xe1\x13\x95\xc1\x0c\x8e\x0e\xc6\x01\x2c\x03\x7b\x47\x9d\xb3\xdb\x9a\x4f\xb4\x6f\x40\x1f\x8e\x83\x21\xd6\xdd\x47\x71\x25\x07\xe9\xa7\x10\xc0\xed\x2b\x36\x2b\x4a\x86\x73\x8d\x30\x41\xd3\x18\x93\x04\x98\xcd\xef\xe4\x21\x23\x07\x42\x53\x0c\xa1\x6e\xa2\x61\xac\x55\xb5\x6b\xe5\x20\x17\x4f\xaa\x24\xf9\xba\x56\xe0\x97\x9c\x55\xfe\xae\xd7\xb3\x32\x60\x6f\xf6\xa7\xf3\xb8\x3c\xaa\xfd\x03\x50\x06\xf9\xbf\xff\x9f\x47\xdb\x20\x9b\xd9\x59\x16\x23\xe8\x41\x10\x72\xe1\x72\x46\x4c\xf3\x79\x7c\xa9\xfc\xd0\x20\x53\xac\xdf\xed\xda\xd2\x18\x08\xe7\x48\x4a\x4a\xa1\xf7\x78\x37\x8a\x14\x79\xd4\x06\xbf\x4e\x50\xf2\xe6\xa0\x1c\xb7\xc9\xe7\xa2\xba\x78\x5b\xdc\xb0\xf2\x38\xae\x98\x0f\xdd\x44\x37\xb4\x9e\x78\xb1\xe9\xa6\xb0\x12\x6e\xe8\xde\xad\x3e\xcb\xc2\xa7\x2f\xd0\x4b\xb3\xb8\x62\x7a\xe0\x14\xea\x25\xa7\x90\x2f\x9e\x61\xce\xcb\xa7\xc1\x50\x20\xc6\xb2\xbe\xf0\xe9\x4c\x04\x79\x8d\xbb\x43\x11\x96\x19\x2a\xb3\x72\xfe\x45\x9e\x0f\x0c\x9e\xc9\xa4\x16\xf4\x66\x25\x17\x9e\xf8\x86\x68\xda\xe6\x84\x90\x57\xb7\xce\x6e\x52\x5e\x0c\x38\x13\xb0\x07\x57\xfc\x0f\xb3\xb9\xa4\xfb\x7b\x3f\x67\x37\x3b\xff\xf9\xee\xed\x19\x2b\x85\xbb\xca\xa0\x5f\xc9\xdf\xe7\xf2\x4d\x4a\x5d\x3c\x84\x99\x63\xc9\x6f\x9c\x91\xaa\x46\xbc\xca\xf0\xaa\x4e\xd9\xe5\xc9\xed\xc2\xe7\x77\x28\x81\xef\x9e\xe7\x8f\xfe\xfe\x72\xfc\x6f\xc1\x4b\x2f\xf4\x52\x2f\x08\x46\x07\xe3\x90\xe5\x09\xaf\x01\xee\xb7\x0a\xee\x25\xf2\x22\x37\x25\x67\xc0\xca\x0d\xe7\x69\xc7\x18\x88\xc2\xa1\x44\x12\x08\xef\x1e\x36\x17\x0c\x25\x23\x2b\xa0\xda\xdb\xdc\x9a\x86\xdd\x28\x52\xab\x9f\x59\x24\x22\x67\xb7\xf5\x59\x7a\x91\xa5\xf9\x65\x63\xf3\xdb\x84\xd9\x5a\x63\x04\x48\xcc\xdd\x89\xd5\x9f\xd0\x3b\x45\xbd\xb7\x22\x49\x67\x29\x2b\x23\xe1\x86\x6d\x9e\xce\xea\x6f\xd9\xdd\xfd\x3d\x7e\x73\x1e\x90\x7c\xc6\x19\xcd\x9c\xd6\x65\xf6\x2d\xbb\x0b\x2b\x36\x2d\xf2\x24\x2e\xef\xd0\xc2\x10\x33\xc1\x87\xf7\xcb\x43\xf9\xc8\x26\xdb\xe1\xe4\xcc\x00\x37\x7a\xb2\xc6\x54\xb1\x83\x75\xed\x30\xc9\xde\xac\x7f\x61\x3b\x5d\xc3\xe4\x8b\x14\xbc\x11\xda\x06\x78\xac\xbc\xfc\x5c\x05\x8e\xf5\xea\x4b\x0f\x34\x41\x37\x32\xb6\xb0\x70\x82\x18\x6c\xff\x63\x4d\x45\x5a\x46\xe3\x9f\x7d\xcf\x70\xf8\x7f\x7b\x6e\xfa\x7f\x4b\xab\xbf\x66\xc5\x45\x9c\x7d\x8c\xeb\xb9\xc3\xe0\x5b\x67\x22\x77\xcf\x17\xc8\x26\x43\x6f\x5b\xd7\xe5\x0f\x6b\x74\x5d\xfe\x48\x74\x5d\xd6\x59\x92\x3c\xd0\xf0\xda\x61\x1b\xfe\x97\x8d\xb6\xe1\x7f\xa1\xa6\x24\xc5\x45\xc5\xca\x6b\x7b\x84\x0f\x26\x93\xbe\xcc\x01\xb0\x0b\x60\x8b\x3e\x74\x02\x9b\xf9\xc4\xef\x1d\x5f\xa8\x1b\x2d\xb7\x5b\x46\xc0\x64\x10\x94\xf1\x0a\xd8\x7b\xc8\x77\x6f\x76\xb5\xa8\xef\xc0\xe4\x18\xde\x88\xbf\x07\x75\x52\x99\x86\x20\x69\xcd\xae\x2c\x88\x34\x4f\x5b\x02\x8d\x92\x49\xc5\x56\xa1\xbe\x29\x82\x94\x8a\xe6\x5e\xa7\xc9\xb1\x70\xfe\x3f\x54\x9a\xad\x35\x04\x29\x85\xfc\x1f\xd2\x2c\x43\x80\x81\x39\x06\xc2\xfe\x2d\xaf\xbd\xd0\x6a\x51\xa4\xcb\x07\x9e\x5a\x43\xc2\xd5\x42\x7c\x04\xb2\xc3\x42\x09\x15\x23\xfc\xc9\xca\xd1\xe5\x8f\x7a\x41\x46\xc8\x57\xbc\x32\xf1\x3b\xf4\x90\x0f\xf1\x82\xc1\x01\xf6\x08\x68\x86\x46\x57\x01\x42\x54\xf2\xa0\x09\xc2\x56\x97\x07\xc5\xd6\x7d\xd1\x7a\xb6\xee\xbe\xe0\x98\xc6\xe0\xd8\x1c\x7a\xf2\x36\xfd\xa4\x50\x08\x86\xb2\xab\x71\x92\x7c\x99\x7e\xea\x69\xd3\xdd\x84\x55\x21\xfb\x6a\xa1\x62\xf9\x98\xe3\x28\x3b\xf5\x8b\x95\x9b\x39\xb9\x5a\xd4\xcb\xdf\x43\x46\x63\xf3\xcc\x2a\x71\x17\x92\xb0\xe4\x44\xae\x6d\x39\x94\x76\x7a\x5f\x20\xeb\x07\xe6\xab\xac\x35\xeb\xad\x7e\x22\xdb\x23\x63\xcd\x42\x94\x4f\xc1\x3c\xcb\x9a\xa9\x3d\x8f\x4c\xc3\xfe\xa8\xcf\x5e\x4f\xfd\xa4\x1e\x71\x10\x5f\x95\x25\xba\xfb\x75\x59\x5c\x7d\x84\x6b\x97\x88\xb6\x00\xd7\x71\x0e\x20\xe4\xf9\x13\x9d\x10\xaa\x9f\x70\xd3\xe7\xf7\x43\x1d\x42\x5f\x83\x49\x5f\x59\xb8\x9f\xaf\x8a\xeb\x34\xbf\x3c\xca\xb2\x88\xf6\x2a\x8a\x22\xb8\x5e\xce\x7c\x02\x21\x9d\xc8\xe2\x9b\x08\xf8\x37\xe8\x03\xbe\x38\x0d\x32\x0e\xe6\x75\xf1\x89\x9d\xb2\xe9\xb2\xac\xd2\x6b\x96\x91\x88\x08\x42\x59\x5f\x77\x2e\xe1\xbd\x7b\xfd\xe1\x1d\x06\x6d\x0d\xc1\x91\x1b\xfa\xfb\xe2\xb7\x5c\x18\xeb\x3d\x8a\xd5\xfe\x21\xbf\xf0\xbe\xc4\x1c\xfe\x73\x7f\x3f\x58\xa9\x8e\x45\xba\x8b\x28\xa9\x50\xdf\x64\xba\xc5\x1c\xeb\x5d\xbb\x7e\x8a\xd1\xec\x4a\x68\x4c\xf0\x9f\x38\xf2\xa3\x31\xe8\xdb\x03\xd5\x94\x63\x6d\x92\x50\x4d\x5f\x87\xdb\xec\x45\x88\x56\x9c\x07\x2b\xa3\x0e\xb2\x96\x8c\x74\x5c\x4f\x9e\x60\xa2\xa2\x48\x8a\xd3\x0c\xa0\x5e\x8f\x9e\xd3\xbe\x91\x17\xb8\x1a\x32\x21\xee\xef\x8d\x6f\x73\x52\x40\xfc\x80\xd3\x03\x83\x22\xc5\x10\xbc\x88\xec\x6a\x1f\x4d\x27\x8e\x6a\x5e\x2c\x18\x82\x05\x08\x2e\x1f\xd8\x8b\xc7\x72\x6e\xcc\x76\x43\x75\x70\xc1\xd0\x8a\x0f\x88\x33\x3f\x48\x93\xdb\x26\x18\xea\x59\x40\xa1\x0b\x1a\x2d\x09\xd3\xa3\xcd\xbb\x70\x97\x69\xda\xa0\xb5\x10\xda\x63\x49\x76\xab\x31\x8e\xba\x78\x60\x35\xa7\x73\xee\xef\xd5\xef\x46\xc3\x38\x3b\xaf\x0b\xb5\x3a\x46\xb2\x2a\x47\x6f\x42\x92\x9f\xce\x7c\xc9\xc4\xf4\x13\x56\x43\xb4\x40\x82\xa7\x9b\x06\x46\x1a\x49\x7c\xea\x90\x02\x31\xdc\x00\x07\xa1\x46\x28\x68\x42\x0b\x71\xcb\x36\x45\x3c\xf5\xe8\x49\x16\x04\x9f\x64\x22\x5f\x59\xb3\x2b\xf1\xea\x47\xcc\x81\xc4\x15\x10\x27\x88\x82\x44\xf0\xd8\x82\x4b\x51\xa7\x11\x51\x08\xcd\x30\xd9\xa2\xfe\xf1\x87\xf7\xe7\x47\x6f\xde\x9f\x9c\x4e\xde\x1d\x7d\x1c\xe9\xf5\xa0\x1a\x1b\xc3\xb0\x9a\x18\x84\xa4\x42\x75\x34\x5c\xc3\x10\x05\xc3\x75\x0d\x44\xab\x65\x36\xf0\xb2\xd4\x0b\x0b\xf1\xb7\x8e\x2f\x32\x36\xf0\xea\xd2\x0b\xeb\x39\x8b\x13\xf1\xf3\xa2\x48\xee\xc4\xcf\x59\x51\xd4\xe2\x67\x39\xf0\xea\xc4\x13\x21\x86\x06\x1e\x0a\x47\xbc\xa6\x4b\xfb\xd2\xc4\x64\xc3\xdd\x50\xb9\xe2\xda\xe8\x38\x7e\x4b\x67\x2e\x8f\x71\x23\xb1\xe1\xfa\xf6\x25\x1d\x14\x7c\x69\x5f\x15\x5f\xfa\xc2\xf7\xd9\xd7\x37\xe5\xd6\xe7\x5c\x4c\xcf\x6b\x3d\x3b\x9b\x3c\x61\x6c\x72\x9e\xe1\xb0\xba\x69\xdd\x88\x7e\x4f\x6f\x44\x8f\xbd\xd6\x39\xfc\x10\xfc\xc9\xf4\x43\xe0\x74\xda\xf1\xe7\x96\xd3\x8e\x09\x7a\x00\x07\xb6\x90\x38\x59\xd4\xee\xc0\xb5\x3f\x24\x7a\x41\x72\xf9\xec\x58\x37\xb0\xe1\x2a\x05\x97\x90\x57\xc2\x92\x66\xe0\x91\x9d\xa5\xb3\x5e\xa7\xd5\x22\x8b\xef\x06\x12\x47\xdf\xf5\x28\x9b\xb0\x8b\xe5\xa5\xba\xb6\x7d\xcb\xee\xe4\x51\xe4\xad\x56\xde\x5e\x07\x0c\xc6\x13\xf7\xbd\x81\x17\x8c\x0e\xc7\x7b\x5e\xd3\x78\x4d\x13\xb4\x2e\x69\xe6\xe5\x4c\x1f\x1c\x45\x99\x5e\x0a\x8f\x23\x5e\x68\x71\xdc\xb7\x60\xe6\x5d\xb5\x12\x43\x64\xeb\xcc\x0c\xe1\xc5\x04\xf3\x38\xd7\x0f\x6b\xe5\x2d\xf8\xbc\x69\xfb\x9e\x56\xb1\x06\xd1\x02\x0b\xed\xb5\x2f\xe2\x52\xfa\x50\xad\x46\xde\x5d\xca\xb2\xc4\x1b\x1b\xa1\xae\x54\xb9\x26\x94\x34\xc8\x31\xa4\x9f\xd8\x9d\xd4\x99\x94\x6a\x4c\x4e\x49\x39\xaa\x7c\xe2\x4b\xa2\xf6\x07\x44\x78\x04\xc3\x4d\x50\xa0\x9a\x14\xea\x38\xe2\xeb\xeb\xa2\x44\x6d\x15\x02\xac\x8b\x12\xeb\x46\x91\x42\x5d\x26\x89\x51\x3a\x57\xc0\x4d\xd0\x97\x84\xcd\xef\x6a\x1e\x96\x99\x50\x49\x2f\x72\xf6\x2d\xbb\xbb\x29\xca\xa4\x6a\xbf\x72\xc3\xb9\x3b\x80\x96\x48\xd4\x54\xb8\xd1\x34\xe1\x04\xc6\x77\xcd\xcc\x28\xdb\x75\x29\x92\x4f\xe2\x3a\x06\x1b\xf6\x50\xdb\xe9\x8a\x53\x5d\x27\xe8\x41\x6a\x0f\xa3\x08\xb6\x29\xbe\x04\xc7\x4f\xcd\x0f\xa0\x82\x55\x5a\x7d\x9f\x96\xf5\x32\xce\x50\x17\x5f\x9c\xc1\x03\xcf\x13\x77\xeb\x5b\x68\x68\xe0\x68\x73\x20\x7f\x48\x1f\x17\x03\x03\xf7\x34\xaf\xd2\x84\xfd\xb5\x2c\x96\x8b\x57\x97\xce\x1d\x10\x0c\x78\x3a\xa9\x59\x6f\x04\x3a\x84\x2e\x20\xe5\xc5\x47\xe2\xf0\x3a\xae\xe3\xc1\xea\x93\x9c\x1d\x0d\xdf\x37\xa6\xcd\xe7\x7b\x55\xe1\xd5\x89\x30\x04\x98\x0a\xf1\x30\x45\x7f\x24\xee\x85\x2f\x9d\xb9\xab\x09\xd2\x1d\x9d\x50\xf3\x6a\xb9\x2a\x75\xda\xab\x75\xbd\x82\xf5\x66\x2c\x4e\xa3\xb6\xb0\x62\xb9\x30\x5e\x27\xbe\x2e\xe0\x8f\xb8\x23\xc1\x6f\xd8\x1a\x62\x44\xab\x48\x90\x68\xcb\x89\x7a\x78\x18\x68\xa3\x77\x93\xab\xd3\x95\x90\x5e\x49\xcb\x7a\xa1\xff\xee\x00\x11\x78\x34\xaa\xd6\x36\xbf\x48\x2d\xcf\x84\xc7\x04\xec\x8d\x2f\x6a\x1c\x90\x0e\x98\x6e\x9a\x64\x77\x20\x00\x58\x37\x63\x26\xce\x84\x0d\x3c\x99\x29\xe2\xde\x28\xae\x37\x25\xf0\x16\xe3\x75\xb5\x04\x56\x73\xa2\xa4\xdc\x9f\x6d\x67\xb9\xc1\x49\xac\xe5\x58\xb6\x3b\x90\xb8\xcb\x1e\xb9\x83\x51\xdb\xec\x60\x4a\xab\xd3\x3f\xc4\x53\xee\xba\xd7\x01\x51\x30\x8f\xeb\xf4\x9a\x0c\xdf\x6f\x91\x67\xfc\x02\x9e\x65\x49\x82\x8d\xe3\xa1\x8d\xe4\xe1\x17\xb2\x6f\x6d\x3f\x0c\x38\x58\xd2\x77\xb8\x7e\xdb\xb2\x6f\x07\x2f\x6a\x73\x9b\xbf\x5f\xc3\x6d\xfe\x81\x70\x9b\x2d\x1e\xf6\x8f\x5b\x7a\x7c\xfd\xa3\xdb\xe3\x6b\x97\xd7\xda\x3f\x39\xbc\xd6\xc2\x48\xf1\x3a\x3a\xe0\x2b\x0b\xb4\x1d\xb6\xde\xf1\x98\xb1\xce\x72\xde\xe1\x21\x6b\x1b\xcb\x79\x27\xbf\x0d\xcf\x15\x06\xc3\xdd\xf2\xa2\xe0\x98\x77\x24\x7d\xca\x3f\xa2\xbd\x1a\xfb\x66\xbe\x10\x44\x76\xf8\x0c\x3e\x74\x2c\x03\xf7\x33\xcc\xef\x1f\xf2\x0c\xf3\x7b\xf7\x33\x0c\x50\x88\xa3\xc8\xde\x0c\xfd\x23\xea\x80\x98\xcc\xb0\x6f\xcd\x6e\xe0\x78\x97\xa2\xd7\x0e\xba\xd8\xc3\xd5\x04\x2b\x1c\xe0\x9f\x0d\xbc\xbc\x25\xfc\x25\x3c\xbc\x4a\xf4\xe4\xa9\xa3\x74\x5d\x5b\x10\x21\x72\x26\x2a\x41\x39\x9c\x84\xfa\x27\x6b\xa4\xcb\xca\x05\x01\x11\x38\x1b\x52\x20\x38\x34\xd3\xe4\x56\xb3\x94\x6e\x31\xa5\x84\x15\xf2\x22\xd5\x11\x95\xbe\x46\x58\x78\x6d\xca\xc3\x54\xb3\xda\x75\xd1\x6a\x7d\x61\x94\xec\x4c\x2c\x51\x71\x04\x32\x1e\x71\xdf\x81\x81\x46\x19\xb7\xc5\x59\x91\x54\xf1\x46\xa1\x13\xf0\xb5\xa3\x2d\x66\x0f\x56\xeb\x06\xb5\x2d\x9c\x47\x5d\x22\x03\x45\x61\x98\xe5\xea\x12\x45\x00\x83\x5a\x80\x0c\x8f\x1a\x37\xde\x1a\xcf\x15\x54\xaa\xa7\xa5\xda\x28\xf3\xd7\x59\xc0\x23\xea\x4f\x43\x54\x6d\x7a\xd1\xd2\x8f\x48\xc7\xf6\x13\x5f\x47\xdb\xf8\x6a\x22\x74\xdf\x55\x1f\x49\xb1\xd6\xb3\x86\x5d\x0f\x32\x8e\x1a\x6f\x62\x0e\x46\x07\x52\x84\xda\xb4\x0b\x6b\xc5\x1d\x08\x83\x31\xb2\x01\xc6\xfd\x69\x91\x4f\x63\xda\x7f\xdd\x20\x9d\x59\x65\xaa\xe6\x98\xf3\xed\xe7\xb9\x03\x6f\xe2\xe0\xd7\x18\x0b\x0c\xa1\xd1\x1a\x75\xfd\x82\xb7\x76\xd0\xff\xc5\x1a\x75\x5d\x6c\xe3\xa0\x1b\xf5\x18\x8f\x66\x52\xd0\x6f\x2c\x3a\x53\x03\xdb\xde\x6f\x4d\x88\x03\xe5\x94\x93\x74\x14\x94\xc1\x50\x83\xfe\x75\x91\xc5\x75\x9a\x31\x3f\x08\xf1\xd8\xd0\x2d\x23\xfb\x27\xc6\x5f\x10\x2c\xbd\x5b\xdc\x2f\x51\xbc\x86\xf3\x42\xd8\x9f\x8b\x0a\x9a\xa0\x09\xdb\x02\x1f\x41\xd5\xbd\xd0\xb5\x6e\x4d\x91\x78\x65\xbe\x23\x09\x8c\x24\xd3\x4d\x56\xbb\x49\xbe\xe5\x83\x1b\x4b\xa4\x2a\x28\x3a\x3d\x14\xab\xe8\x9a\x2c\x1d\xac\xdf\x78\x24\x93\xbb\x8a\x3e\xd0\x75\x6e\xb1\xd0\x85\xa6\x7c\xc3\x93\x51\x94\xa1\xa0\x4f\x71\xc0\x87\x61\x30\x0e\x55\x41\x74\x60\x84\x89\x88\x81\x7f\x8a\x1e\x23\x00\xde\x64\x45\x86\xb9\x7a\x1c\x8b\x71\xed\x48\xca\x17\x39\xb9\x23\x1f\x34\x4e\x58\x76\x8b\x4e\xc2\x00\xb5\x25\x1b\xfc\xae\xaf\x0d\x77\xdc\xc3\x6c\xee\x29\x63\x94\xb1\xf9\xc6\x58\x0a\x1a\xdc\x58\x09\x4d\x68\xe1\x67\x0f\x8a\x43\x2c\xc2\xb1\x03\x4b\x18\x38\xa6\xaf\xdb\x27\x34\xfa\x86\xc4\x27\x0f\x7a\xaf\x27\x95\xe1\x23\x19\xec\x0c\xb5\xde\x7b\x3d\x92\x4f\xaa\x20\x1b\x82\x4a\x3d\x54\x58\x2b\xf0\x74\x42\x9e\x79\xcc\x41\x24\x15\x19\x39\x66\x77\xc0\xa9\x1d\x39\xe5\x84\x23\x07\x92\xb2\x4e\xa7\x84\x9c\xd7\x2d\x5d\x8c\x47\x9c\xf0\xe4\x83\x3e\x29\x07\x06\x3e\x4e\x85\x90\x2f\x8c\x08\xae\xa0\x65\x35\x97\x1b\x8b\x64\x02\x3e\x2c\xaf\x96\x25\xee\xcb\x92\xe5\x47\x25\x7b\x93\x5b\xde\x73\x1c\x4f\xf9\xce\x32\x32\x5e\x56\x30\x84\xdb\x9c\x8f\xbc\x6a\x7f\x22\x38\xf2\x70\xe5\xa4\x85\x28\xee\xfd\xd6\xb9\xbb\x65\x5e\x07\x8e\x22\xdb\x6e\x30\xcd\x91\x42\xd3\x06\x1d\x14\x83\x6c\x8b\xf6\xce\x5b\xd5\xf3\xb2\xb8\x01\xb7\x24\xfa\xaa\xe5\x7b\x7f\x2b\x96\x3b\xd3\x38\xcf\x8b\x1a\x15\x42\xef\x90\xcf\x06\x46\xb5\xda\x01\xc5\x55\xf4\x60\xc4\xff\x20\x16\x78\x15\xf0\xda\xe3\xa2\x0d\xae\x3a\x46\xc6\x7c\x38\x75\x1e\x15\x3a\xe0\x99\x78\x6d\x7f\x61\x50\x79\x74\x70\x81\x4e\x46\xd3\xb1\x0e\x50\xbc\x05\x2d\x75\x8d\x49\xb9\xcc\xfb\xd5\x74\xce\x92\x65\xc6\x3e\xe4\x53\xe2\xe4\x4e\x10\x0a\xf7\x3c\x71\x12\xb5\x69\x95\x69\xef\x8c\x84\x13\x02\xda\x62\x70\x1a\xa0\x3d\xa1\x75\x57\x16\x25\xbb\x4e\x8b\x65\x15\x0a\x2b\xfd\x6b\xf3\x7a\xce\x67\xcf\xba\x92\x0b\xff\x1f\x21\x68\x5a\xb4\xf4\x5c\x88\x57\x10\xb7\xae\x08\x58\x8a\xec\x4a\xd6\x41\x58\x1d\xd3\x0b\xa9\x1f\x08\x3b\x7d\x6a\x50\x17\x61\x6c\x57\xbe\x35\x95\x9e\x89\xc9\x4c\xbc\x99\xbd\x67\x2c\x61\x89\x64\x2a\x70\xd2\x34\xde\x22\x34\xaa\x2c\x6d\xba\x5e\x25\x60\x92\xa9\x44\x9b\x0b\xb3\xef\x7a\x5a\x75\x9a\x3d\x82\x12\x7b\x34\x31\x95\x99\x7a\x08\x86\x56\x7b\xd3\x8c\xc5\xa5\xf4\x66\xd9\x06\x07\x0b\x8f\x2f\x8d\xa2\x19\xe2\xee\xd1\xd5\xd8\x23\x2c\x84\xbc\x54\x1d\xc9\xbb\x49\xb3\xec\x0d\x34\xa0\x3d\x5c\x82\xad\x28\x56\x15\xa8\x2e\xf7\x93\xe2\x4a\x78\x3a\xed\x83\x5b\x47\xdf\x6a\xae\x5f\x09\x3b\x44\x72\xf5\xa4\x85\x16\x25\x48\x11\x10\xf3\x56\x11\x0b\x55\x79\x6e\xeb\xdd\x13\xac\xae\xfb\x75\x19\xe7\x18\xe9\xfc\xbc\xf0\xbd\x14\x77\xde\xf0\xda\xc5\x3e\x30\xd5\x9b\x6b\x67\xbf\x93\x34\xb1\xba\xdd\xed\xf4\xcf\x90\x60\xac\x15\x66\x4b\x69\xf0\x68\x1b\x05\x73\x53\x90\xdd\xae\xe6\x99\xc4\x60\x0d\xc8\xa2\x64\x13\xe5\x86\xb3\x13\x2a\xcd\xdd\x41\xd3\x0c\xa0\x79\x5c\x49\x7b\xd8\x0d\x75\x25\xc5\xd5\x7a\xb4\x81\x19\x10\x3a\xed\xbf\x45\x09\xf2\x3a\x59\xae\x43\x1f\xfc\xd0\xd4\x07\xdf\x4a\x90\x2b\x59\x82\x4d\x42\xdc\x45\xc9\xd0\x5d\xd7\x26\x95\x71\x79\xd8\x6e\x0a\x47\x40\x68\xb2\x35\x30\xed\x1a\x5f\x7f\x78\xb7\x29\xa4\xb8\x9e\xcc\x75\x52\x58\x45\xab\xa8\x34\x70\x56\x16\x57\x78\xe0\xa5\x79\x5d\x44\xab\x66\xc8\xff\x2a\x66\x49\x25\xe8\x21\x10\x21\x44\x0c\xb0\x00\x81\x08\x1e\x6b\xa0\xd4\x20\xad\x81\x21\x03\xb4\xb6\x26\x3e\x38\x14\x40\x97\x0b\x54\xa4\x59\x58\xf1\xef\x45\x58\x54\xec\x2f\x3f\x3d\xf9\x2f\xdb\xd0\x5e\x81\x06\xa8\xc4\x9b\xe6\x4b\xd6\x20\xb7\xc4\xab\x1f\xa9\xfc\x71\xc8\x8b\x93\x6f\xa5\x7b\xc5\xe1\x0c\x1b\x99\xae\x30\x5b\x44\x3c\xbb\x92\xfd\x1a\x28\x26\x55\x8d\xf7\x40\xfd\x0a\xa1\xbb\x03\xf8\x3f\x94\x83\x38\x50\x5c\x26\xf1\x14\x47\x58\x3a\x3d\x25\x03\xfd\xd3\x50\xd3\x32\x03\x84\x6d\x41\x39\x35\xc9\xfb\x99\xc2\xb8\x74\xbc\xa7\xa9\x07\xbb\xff\xd5\x9e\x52\xed\xd7\x0a\x07\x95\xe9\x78\x74\xb1\xe8\x4c\xc7\x39\xb9\x22\x6a\x0d\xe6\xed\x6a\xcd\x45\xe3\x69\xbd\xc3\x07\x81\x14\xdd\x29\x96\x75\x95\x26\x6c\xa7\x98\xc1\x35\x03\xcf\xb7\x34\xbf\xdc\x59\x94\xc5\x94\x55\x20\x10\x78\xe2\xf0\x6f\xa0\xde\xb6\x9b\xf0\x92\xd5\x0e\xef\x32\xd2\x13\xe3\x32\xcb\x9a\x90\xb8\x07\x77\xf9\x4a\x00\x25\x6c\xb1\xae\x5b\x55\xd9\xf2\x03\x75\x6e\xa2\x9f\x30\xc1\x12\xf6\x27\xf2\x2a\x21\x78\x0d\xbc\x5f\x60\xec\x93\x0e\x88\xa1\x33\xd9\xf0\xb3\x81\xe2\x79\x37\x77\xed\xe8\x09\x72\xe6\x61\xc9\x84\x78\x50\xde\x38\x51\x37\x5d\xca\x07\xd4\x4d\x73\xbb\x5d\xaa\x4f\xf8\xd1\x66\xf3\x38\x9b\xfd\xd9\xde\xfe\xad\x83\x11\xfa\x8d\x6d\xda\x36\x43\xf0\x28\x3b\x33\xdb\xb8\xeb\x77\xc4\xb8\xcb\xc9\x4e\x3c\x7a\xff\x9a\x07\x3b\x82\x93\xfd\x38\x8d\xb3\x6c\xe7\x5f\xff\x7d\xa7\xc8\x77\x62\x58\x6d\x3b\x17\x8c\x6f\x3f\x51\x84\x25\x9e\xcd\x1a\x88\x73\x52\x9f\xa1\x78\xb0\x69\x88\xf0\x41\xb4\x61\x76\x55\xfb\x16\x7e\xe1\xc8\x23\x35\x78\xe3\x20\x20\x4b\xfa\x71\xf5\xc9\xe2\x58\x59\xd7\x56\x7f\x50\x95\x66\x25\x58\x31\x68\x96\x3f\xb2\x3e\x28\x8b\xd5\x54\x4e\x8a\xf6\x80\xba\x38\xb5\x7a\x2a\x08\xd5\xd3\x70\xa7\xdf\xef\x07\x72\x18\x1f\x46\x49\x52\x7a\x6f\x22\x12\xaa\x8e\x53\x81\xf0\x06\x5b\x90\x16\xe3\x16\x32\x7a\x28\x49\xe8\x38\xde\xb7\xa2\x4a\x1d\xbe\xd3\x37\xa8\xf5\x3c\x80\x0d\xf9\x9f\x76\x13\x72\xd2\x1c\x07\x65\xb3\xd9\x0a\xc7\x6d\xa8\x4d\x21\x1d\x57\x21\x07\x85\xfc\xbd\x49\x21\x37\x3b\x6f\x5f\x43\x03\x1d\x37\x20\x9b\x91\xfa\xd3\x1a\x46\xea\xcf\x84\x91\x6a\x5f\x21\x6c\xca\x47\x25\x9f\x4f\x2c\xb1\x63\xc5\x32\xe9\x64\x82\x5d\xd1\x60\x32\x4a\x64\x21\xbd\x6b\xb3\xec\x95\xf0\x17\x55\x31\xf4\x98\x1c\x0c\x88\x77\xb6\xc0\xcd\xe7\x68\x41\x23\xca\x7f\x3b\x62\xcd\x80\x98\x07\xbe\x83\x15\x01\xc4\x9f\x04\x9b\x86\xc0\x11\x0e\xa4\x3f\x4b\xf3\x44\xb4\xfd\x26\x47\xab\x3c\xe9\x35\x41\x80\x37\x96\xcf\xab\xff\xe3\xed\xb5\x7a\xfb\x26\x41\x27\x0d\x6e\x02\x87\x52\x2e\x53\xab\x59\x18\xc2\x88\x17\x4b\x53\x24\xa4\x2e\x34\x52\x35\x72\xa3\x8c\xbb\x62\xf5\x4e\xac\x7c\x29\xec\xd4\xc5\x4e\xbc\x93\x17\xf9\x3e\x6f\x02\x75\xa5\x77\x6e\xe6\x0c\xe5\xdd\x12\x28\xad\x76\xe2\xac\x64\x71\x72\x27\x25\xe1\xaf\x3f\xbc\xeb\xeb\xe8\x3d\xa8\x62\xed\x38\x9e\xc8\x4b\x6b\x97\x2c\xee\x38\x63\xb1\x8c\x98\x22\x98\xc1\xa9\x4e\x62\x89\x94\x2f\xfb\x22\x93\x08\xd8\xa4\xc9\x12\xaa\x85\x18\xcc\xe2\x7a\x3e\x16\x59\xce\xbc\xa8\xd3\x19\x3c\xc6\xbe\x36\xa0\x9d\x2d\x81\x94\x5d\xeb\x9f\xfc\x6a\x5c\xb0\x75\xb8\xea\xa5\x3f\x59\x27\x64\x07\x03\xc5\xe4\x96\x63\x48\x92\x83\x55\xc6\xf2\xc8\x61\x1b\xda\xe9\x69\xc8\x7e\xc9\x5f\x37\x88\x4d\x63\x8f\x22\x5a\x8b\xa2\xb2\x8e\xfb\x36\x72\x6d\x44\xa7\x0a\x65\xa4\xaf\x6b\x8c\x6e\x54\x91\x58\x27\xe6\xd6\x14\x8b\xcb\xb7\xa2\x1e\x19\xee\xe3\xf8\xfd\xa6\xb1\x2f\x01\xc4\x0d\x4f\x79\xc9\xea\x50\x3e\xda\x05\x2b\xf9\x0b\x15\x97\x31\x7b\x9d\xf2\xaf\x26\x80\xdb\x9c\xfa\x44\x40\xf9\xe0\x33\xdf\x75\x2a\x6f\xef\xe5\x43\xb1\x06\xbf\xf6\x25\x62\xdb\xd3\xb6\xe3\x74\x73\x1c\xba\x6d\x59\xc2\xa3\x0e\xdd\xf6\xd9\xed\x38\x73\x6d\xc1\x9b\x7d\x1e\xea\x07\x4b\xf7\x69\x88\xef\x45\x48\x2f\xb5\xbb\x04\x11\x62\xdf\x77\xf2\xfa\xd7\xe2\xf1\xd7\x45\xe0\xcf\x8a\x2b\x56\xcf\xf9\x9d\xe5\xae\x58\xee\x24\x69\xb2\x33\x8d\x97\x15\x4b\xe4\x7d\xa6\x2e\x76\x4a\xb6\x8f\x35\xee\xc0\x6b\xc6\x4e\x5a\x0b\x41\x03\x4b\x76\x2e\x96\xb5\xd0\x97\xe4\xc9\x37\x71\x25\xde\x60\x58\x02\x32\x38\x4a\xf2\x43\xe7\xbd\x06\x7a\xa6\x1f\xf1\x0c\xf3\x12\xf1\xfc\x04\x5d\x16\x8f\x7a\xeb\x88\x95\x36\xdc\xc6\xac\x96\xd2\x5b\xab\x95\xe1\x36\xba\x77\x76\x33\xd1\x56\x6a\x77\xfa\x79\x6e\xd8\xf5\xce\x27\xdf\xf7\x90\x84\x6f\x50\xec\x50\x8e\xac\xd4\x73\xda\x36\x47\x15\x1c\x88\xea\x31\x52\xea\x57\x92\x57\xd1\xad\x0e\x34\xe3\x61\xcc\xcd\x44\x08\x23\xfc\xe1\xba\x23\x27\x58\x6d\xbe\x41\x91\x27\xaf\xf5\x97\xa9\x07\x08\xcd\xb0\xa0\xc1\xbb\xcc\xe3\x9a\xb3\xa6\x8a\x39\xb9\x60\x2c\x57\x8b\xda\xeb\xb8\x43\x7e\x36\x8b\xe5\x9a\x92\x76\x31\x7d\x1e\xb4\xf8\xa4\x9f\xed\x0c\x92\x44\x67\xcb\x13\x08\x9e\xb5\x1e\xeb\x2d\xca\x75\xc5\x34\x4f\xa6\xcd\x4f\x6e\xbf\xf6\x11\xf4\x85\xfc\x25\x6d\x75\xd9\xeb\x38\xc6\x1c\x22\xad\x8e\x07\x2d\xe7\x21\x44\xde\x6c\xe8\x73\x8d\xb4\x6b\x50\x87\xd1\xeb\x0f\xef\xc2\x15\xc6\x44\xb6\x08\x0c\xa7\x9d\xa8\x56\x04\x24\xd7\x19\x38\xf5\xda\x36\x0c\x0a\x46\x1e\xdc\xa9\xc6\x8d\xd2\x17\x53\xf6\x7c\x58\x91\x08\x83\x0b\x59\xea\xe6\x23\x34\xad\x21\x31\x4e\x92\xaf\x2c\x85\x2d\x7d\x43\x0a\x37\xd2\x05\x20\xae\xfc\xbc\xc3\x03\xee\x69\xb5\xa3\x4a\x8b\xf3\x0d\x86\x05\xfd\xbf\xed\xf0\x8b\x4f\x9c\x65\xc5\x0d\x90\x85\xa0\x09\xd9\x6d\xda\x22\xb5\x5f\x60\x24\x50\xb5\x50\x8d\x84\x88\x05\xd2\x3d\x1e\x9d\xe4\x10\x88\xd4\x2c\x7f\x0c\x55\xa4\x07\x76\x07\x89\x94\x87\xbb\xb7\x9e\x98\xbc\xfe\xf0\x6e\x1b\x4a\x42\x9f\xe4\x1f\xcc\xcc\xfe\x12\x5c\xea\x97\xe0\x42\xbf\x10\x15\x68\x3d\xfd\xda\x7c\xa3\x7e\xa1\x5c\x6d\x5a\x1a\x84\x3b\x22\x07\x7d\x07\x73\xc0\xff\xfb\x26\x65\x65\x5c\x4e\xe7\x77\x44\xad\xc6\xc1\x1a\xe0\x55\xca\xa9\x28\x33\xcb\xf1\x28\xc2\x8b\xf0\x35\x71\xb7\x0f\x8d\x80\x83\x2e\x46\xd5\x6a\x94\x97\xc9\x8b\x22\xb9\x93\xca\xa1\x95\xf2\x78\xe9\xd0\xd8\x69\x2b\xbc\x48\xa6\xa4\x0b\x51\x87\x66\xcb\x03\x39\x94\xeb\x35\x5c\x9d\xf1\x3c\x86\xac\x90\x7c\x50\xda\x96\xbb\xd8\x5d\xc3\x5d\x74\xb3\x09\xdd\x3b\x53\xad\x91\xb5\xbb\xf3\x7a\x3b\xeb\x52\xf3\xcc\xb6\x5e\xaa\x50\xb9\xbf\xcb\xf6\x14\x6e\xdb\xc4\x82\xd3\x76\xbc\x88\xce\x40\x44\xf4\xe4\x87\xdb\x6d\x3e\xee\xc1\xbb\x62\xf5\xc4\x61\x2d\xba\x56\x5c\x2e\xf9\xac\xcd\x46\xa7\x98\xf1\x00\x7b\x56\xd3\xf8\xd4\xf6\x5c\xa2\xb4\xa5\x9f\x11\x6d\xea\xed\x0c\x55\x69\x7d\xca\x54\xc1\xed\xa3\xe5\xa1\x51\x83\x8d\xc2\xd3\x62\x61\xb7\xe7\x76\x14\xaa\xe6\x04\xa3\xf5\x6f\x63\x3c\xbc\xee\x05\xc2\xc8\x03\x7f\x14\xbf\xcd\x07\x85\x5f\xc7\x38\x97\x24\xd8\x68\x1e\xda\x78\x1e\xda\x88\x1e\xda\x98\x3e\xb7\x31\x7d\xde\x1a\x4b\x1b\xd3\xe7\x36\xa6\xcf\x6d\x4c\x9f\xdb\x98\x3e\xb7\x31\x7d\xfe\xa7\x2f\xc3\xa1\x3f\x50\x42\x84\x5a\xf3\x1b\xf9\x75\x24\x6e\x9b\x98\x75\x11\xe2\x5f\x84\x9b\xdf\xc0\xaf\x77\x9a\xb9\x7e\xc1\xa7\x9a\x8a\xd1\x70\x25\x1b\x2c\x83\x5b\xe6\xbc\x07\x6d\x98\x38\x49\xdc\x46\xb4\x87\x93\x49\x9f\x64\x6a\x8f\x82\x1d\x46\xb7\x1c\xde\xcc\x7f\xac\xb9\xb0\x74\x48\xb5\xb6\x94\x05\x82\x83\xba\x4c\x93\xaf\x8b\xb6\x89\x71\x5f\x64\x08\x46\xae\x8e\xdb\x10\x3c\x75\x8d\xa5\xf4\xef\x6d\x4b\x69\xb7\x95\xf2\x1f\x6c\x2b\xe5\xfa\x6e\xc1\x3e\xcc\xda\xcd\x61\xba\x70\x96\xe4\xf0\x0c\x8b\xae\x78\x21\xa3\xcb\xa3\x12\xa7\x0c\xd4\xa5\xd2\x3b\x7e\x14\xb5\xd1\x81\x64\xd3\x70\x39\xb2\xe9\x89\xbd\x26\x5c\x86\xd2\x7f\x56\x86\xd2\xfa\x3c\x8a\x6c\xb2\xd3\xd7\x79\x38\x93\x71\x35\x67\x65\xfa\x4f\x8b\xb3\x3e\xe0\x33\x28\xb3\x36\x9a\xbc\x3f\x77\xd0\x84\x78\xb2\xc1\xea\x3d\x8c\x27\xb0\x78\x81\x16\xd8\x30\x2a\x27\x8c\x27\xd4\x86\xad\x05\x48\x33\x37\x5a\x9d\xff\xc1\x6d\x75\xce\x4f\xd8\xc8\x26\xb6\xad\xab\x7e\x97\x4f\xe6\xe7\x4e\xa7\xcc\x6d\x53\xc3\xc8\x26\xd6\x0e\x73\x44\xa3\xa8\x92\x60\x76\x97\x54\x20\x6b\xdd\x22\xf0\x83\xa0\xe5\x17\xa1\xea\x80\x23\xfe\x10\x1c\x8f\xdf\xcf\x1d\x84\xd2\x50\x56\xd7\x8a\xb9\x9c\xe3\x06\xa1\xab\xe0\xe7\x89\x38\x95\xd8\x43\x34\x44\x91\x97\xc5\xe5\x71\x3c\x9d\x33\xf9\xc8\x2b\x8a\xf0\x8d\x8f\x3f\xfb\x53\x9e\x2d\xaf\xef\xda\xb3\x8c\xe5\x99\x55\x11\x25\x97\x79\xeb\xf5\x06\x27\xae\x25\xab\x23\xdc\x5d\x7e\x00\xe6\x0e\x68\x68\xad\x96\x73\xa7\xfd\xbd\x61\x4e\x76\xac\xa5\xe9\xf2\xf9\x8c\xc8\x67\xb4\x3d\xd9\xb1\xe9\x51\x00\x5f\x35\xa9\xbc\x1a\xa4\xb7\xc4\xd6\xac\x6a\x97\x94\xee\x37\x25\xa0\xf4\xc9\x09\x57\x27\xf9\x46\x1b\x6d\x67\x92\x9e\xce\xfc\x5d\x63\x3e\x83\x95\xe9\x4d\x61\xa3\x50\xc6\xf2\xae\x13\x90\xd5\x22\x0d\x57\xa8\xdb\x5d\xab\x31\xfa\xa6\x28\x5f\x97\xd7\x21\xdc\xb8\xc5\x33\x7a\x04\x77\xd2\x6a\x27\xbd\x12\x4e\x7a\xbc\xa0\xa1\x7e\xb1\x83\x21\x5e\x24\xcf\x4f\xde\x7d\x7c\x7b\x74\x7e\x72\x26\x63\x85\x28\x5f\xe5\x84\x5d\x91\x2e\x24\x04\x5b\x12\x1a\x7c\x07\x7a\xd3\x62\x37\xe8\x4a\x4b\xfa\x95\xa0\xaa\xe9\x98\xb4\xc9\x61\x9c\xf0\x8c\xd4\x21\xfd\x16\xce\xbe\x79\x53\x55\x7a\x91\x51\xf7\x4c\x2a\x0d\x7c\x50\x58\x27\xaf\x80\x51\xbc\xbf\xc0\x6f\x13\xa8\x82\xf4\x82\x86\x58\x98\x6a\xa3\x71\xd3\x88\xd5\xda\x63\x42\xc1\xc3\x76\x5c\xa6\x75\x40\xa4\x59\x2b\xdd\x18\x62\x72\xa8\x56\x08\x55\x20\x31\xde\x93\x31\x03\xcc\x2d\x01\x4b\x61\x9a\x4a\x10\x45\xe7\x6d\x45\x3e\x2d\x59\xcd\x2c\xd4\x3b\x30\x77\xc8\x10\xa9\x41\xbc\x81\x80\x1e\x7d\xd3\xfc\x56\x35\x07\xd2\x3d\x87\x1d\x7b\xc9\x84\xe7\x29\xe2\xb8\x90\xd5\x71\x9a\x11\x2b\xe3\x79\x5c\xcd\x83\x15\xff\x5f\x78\xf2\x15\xde\xf0\x74\x18\x7d\xc8\x9b\x12\x17\x85\x51\x87\xeb\x42\x84\x54\xa4\xcc\x16\xcd\xd8\xc6\x9b\xe2\xd9\x14\x69\xf4\x87\x05\x2b\x63\xed\x5f\x0c\xe3\x43\x62\xf9\xbe\xf0\x95\x68\xf6\x2f\x4c\xb0\x27\x91\x8c\x90\xdc\xea\xa3\x2f\x20\x94\x64\x47\x43\x60\x1c\x66\x91\x1f\x52\x73\x34\x01\x70\x6a\x8a\x88\x2c\x67\x05\x96\x00\x69\x6d\x77\x1a\xe9\x41\x71\xf2\xf8\xd1\x70\x85\x0d\x25\x01\x7f\x94\xff\xdc\xda\xe5\x3b\x57\x26\x42\xbc\x97\x8e\x08\xc9\x11\xc5\x41\xee\x17\x11\x65\x1f\x62\x4a\xab\xa0\x39\xf7\xf7\x86\xc1\xa4\x8a\x5e\xec\x20\x28\xf2\x8d\x4a\x89\xf5\xb0\x41\x60\x8b\x70\x7c\x95\xe8\x4d\xb8\x10\x68\xa7\x81\x80\xdf\x02\x16\x53\x21\xc3\xc5\x0a\xe9\x60\x07\xad\x23\xfe\x35\x42\xe5\x93\x0e\x05\x9a\xb0\xc6\x54\xda\xe8\x40\xea\xf3\xd5\xf3\x02\x43\xb1\x62\x9c\x6d\x88\xde\x05\x89\x2a\x66\xd7\x65\x3d\x8f\xec\x18\xe5\x43\xe5\x69\x84\x9f\x11\xc0\xae\xfb\x32\x30\xac\xb6\xaa\x49\xa3\x43\xb4\x53\x05\x83\xd5\xbd\xbd\x60\xc5\x8b\x8c\xd2\xfd\xc3\x31\x41\x25\x55\x41\xc4\xb1\x61\xab\x13\xfc\x20\x0e\x15\x45\x4d\xce\x58\x9e\xe0\xf1\x50\xd9\xce\xfa\x68\x14\xee\x5d\xa0\x37\x23\x9d\x31\xb6\x2b\x71\x97\xd6\x1e\x54\xc6\xfd\x2e\x07\x7f\x76\xcd\x2d\x84\x65\x80\xee\x70\x1e\x57\x76\xf0\x75\xb9\xb5\xe0\x1e\xe4\xeb\x81\x87\xd0\x55\x12\xd6\xbb\xbf\xa7\x27\x18\x94\x74\xc6\x22\xd8\x70\x24\x74\xc4\x29\x50\x39\xa6\xc3\x7a\xb1\x94\x12\x5b\xe1\xa9\xa5\x5f\xd8\x27\x0e\x32\x84\x25\xbd\x63\x47\x50\xe3\x02\xf3\xfd\x5d\xf8\xc8\x70\xa9\xc3\x29\x21\x74\x5b\xaf\xce\x32\x78\x70\xe5\x50\x04\x54\xa2\xa5\x88\xa0\xf5\x9c\xaf\xdb\x5e\xd2\x34\x3b\x87\x7e\x2a\x04\xff\x26\x5f\x1f\x04\x63\x8b\x3f\x29\xc8\xfd\xfd\x68\x8c\x7b\x58\x6c\x98\x6b\xea\xdc\x65\xf8\xbd\x65\x21\x2d\x1d\xfa\x46\x2b\xe1\x31\xe6\xa0\xbd\xb1\xb5\x4e\x98\xb3\x79\x60\xa2\xc9\x4e\x3b\x08\x33\xa3\x51\xbe\xf1\xb4\x4d\x3d\x66\x09\xa3\x70\xaa\x5a\x66\x6a\x31\x92\x46\x9b\xa6\x71\xcd\xc1\xb6\xe8\x6d\x8d\x19\x58\xfb\x3b\x94\x28\x29\x26\x8e\x19\x57\x78\xcc\xf2\x2f\x3b\x3e\xb3\x5c\x32\xfa\xe6\x6a\x52\x0d\x02\x57\x84\x3a\x41\x25\xeb\x68\xfc\xa1\xbd\x27\xdb\xc6\xaa\xbe\xc1\x08\xe1\x2d\x7a\x8f\x95\xed\xb9\x09\x73\x0b\x1d\xc2\xff\xa3\x02\x90\x20\x59\x38\x52\xfa\xa4\xd8\xca\xed\xd1\x75\xaa\x1d\x1e\x89\xdb\x1b\xf1\x92\x13\x67\xd9\x45\x3c\xfd\xd4\x31\x2e\xa2\x1e\x7d\xed\x43\x0c\x54\x29\x41\x15\x3a\xba\x1b\x89\xf0\x2e\x74\x3c\xa3\x03\x11\x9e\xf0\xe4\xdd\xc7\xf3\xbf\x4d\x8e\x4e\x4f\x8f\xfe\x16\x8d\x88\x93\x6f\x15\x43\x80\x04\x11\xe2\x87\x40\xce\x0f\x02\x2d\x52\x1c\x8c\x30\xa4\x35\x04\x29\xf7\x42\xfd\xf1\x15\xbe\x0a\xf0\xb4\x58\x06\x2c\x55\x69\xe3\x90\xde\x50\xda\x3e\x8e\x33\xf0\x20\xad\xbf\x1f\xe6\x53\x1b\xbd\x49\xd3\x63\x4d\xfb\xd2\xd6\x79\xca\x6b\x76\xdb\xa9\xb4\xe9\x84\x39\xfc\xdf\xe1\x63\x9a\xfa\x32\xde\x74\x69\xfa\xd9\x7d\x0a\x8b\x19\x5e\xe7\xce\x58\xaf\x01\xd2\xb4\x4e\xf4\x64\x1d\xee\x41\xd3\x80\xb2\x90\x46\x15\xbf\x1d\xc3\xf5\x56\x00\x1a\x3e\x8f\x8d\x26\xb7\x72\xa0\xfd\x00\x6f\xd8\xf2\x57\xdb\xd7\xb9\x76\x76\x2e\xba\x64\x72\x44\x21\x3f\x07\xf1\x86\x48\x19\x24\x15\x4b\x09\x05\xb7\xe8\xd7\x47\x7e\xde\xdf\x1f\x6b\x2f\x4e\xea\x67\x5f\x74\x5e\x25\x28\xa5\x44\x0d\xac\x7e\xf6\xb3\xa2\xf8\xb4\x5c\xe8\x1d\x32\xf0\xf6\x04\x9b\x35\x55\xbe\x91\xd7\xbb\x66\xb7\x49\x6f\x14\x45\xcf\xd1\x96\x54\xac\x2e\xe5\x71\x1e\xcb\x0c\x8d\x4d\xe5\xbe\xf2\xaa\x32\xfc\x8e\x4b\x5d\xc2\x4d\xd6\x62\x65\xaf\x71\xb2\x45\x64\xd0\x29\xfc\xb2\xc2\x52\xc9\xc5\xac\x36\xbc\x4e\x6c\xd6\xb8\x49\xd7\xd2\x06\x43\xbc\x64\x6f\x17\xd2\x19\x6a\xb0\xab\x3b\xd3\x19\x65\xec\xb6\xb6\x54\xa5\x80\x57\x95\x5a\xc5\xfc\xf6\x2f\x05\x33\x48\x78\xb5\x60\x6a\xd0\x96\x57\x52\xad\xdc\x01\x39\x25\x68\xfa\x3a\x77\x5b\xc4\xcd\xa8\x83\x46\x13\x89\x46\x27\x9d\x71\x5b\xeb\xe0\xd8\x39\x9c\xe7\x19\x24\x87\x7a\x4f\x43\xa7\x5c\x0e\x77\x48\xc5\x2f\x8d\xad\x56\x03\x5e\x8b\x6c\xce\xe2\x92\x55\xf5\x1b\x21\x98\xfc\x30\xd3\x7b\xff\x13\x04\x64\xd2\x7e\xfa\x3b\xda\xc7\x00\xab\x4a\x91\xcd\x96\x73\x8a\x5a\xa8\x5e\xaf\xaa\xed\xba\x65\x29\xd5\x34\x12\xa3\x0f\xb3\xf3\xbb\x05\x7b\x28\x36\x61\x5a\x61\xc1\x08\xe0\x29\x22\xf0\xda\xf4\xca\x92\x5c\x0b\xb4\x00\x58\x86\x30\x42\xe6\xd2\xd6\xd1\xeb\x82\xe4\x34\x8f\x73\x0c\xd3\xba\x28\x83\xc6\x1e\x0d\x89\x0e\xa6\x3c\x62\x18\x7e\x48\xeb\xb9\xdc\x26\x44\x44\x23\xbd\xe7\x3e\x74\x76\x64\xc1\x9d\x14\x91\x78\x04\x46\x70\x0f\xfc\xfc\x75\xe2\x6e\xe6\x73\x16\x0e\x21\x7f\xae\x7d\xd7\x25\xb3\xd5\x1b\xef\xb5\xba\x0e\x3b\x3d\xf6\x53\xd9\xa9\x6a\x00\x37\x60\x97\x44\x54\x91\xef\x5e\x6f\xb7\x8b\xae\x43\x13\xa8\x40\x2f\x27\x5a\xe9\xef\x13\xc0\x46\x52\x65\x4c\xe8\x22\xcc\x32\x4c\xca\x83\x3a\x48\xcc\x41\xb6\x77\x60\xea\xb2\x37\xa0\xf8\x02\x1f\xd8\x15\x40\x84\xf2\x2e\xaf\xe3\x3a\x76\xf0\x2f\xe8\xae\x11\x6e\x09\x32\xc8\x45\x44\xf3\x5e\x4d\x8b\xc5\x9d\x4f\x53\xfa\x12\x2e\x18\xac\x1a\x30\x96\x93\x09\xa1\x87\x72\x67\x93\xc2\xbe\x92\xd9\x70\x5d\x19\xd4\x2a\xea\x8c\x2e\x36\xd1\xe5\xec\x2c\x3a\xda\x1d\x73\x2b\xf9\x09\x59\xa8\xe9\xf4\x1b\xdb\xc1\xcb\x49\x76\x92\x32\x90\x9d\xd1\x4e\x64\x68\xcb\xdb\x56\x68\xcb\xdb\xba\x35\x90\xc0\xad\x99\x71\x42\x50\x79\x60\x59\x2f\x96\xf2\x85\xbc\x8e\x23\x12\xe3\x05\x71\x1d\x08\x43\x9a\xb4\x42\xc1\x10\x84\x21\x81\x23\x5e\x85\x22\x51\x63\x44\x03\x8f\xb8\x27\x98\x86\x20\xf1\x82\x66\x88\xcd\x47\x2d\x5e\x75\xc5\x91\x19\xf0\xff\x1a\xe8\x36\xc2\x99\x37\x22\xe1\xe8\x0c\x5e\x02\x31\x1f\x44\x24\x2e\xd7\x05\xf4\xb2\x6c\xf8\xa2\x54\x3b\x41\x08\xc9\xdd\x12\x30\x6b\x21\x23\x73\x89\x3a\xe5\x11\xb9\x0c\x7f\x45\x44\xcb\xc2\xf1\xf0\xd1\xac\x96\xbc\x32\x49\x40\x10\xdb\xd3\xba\xfd\x42\x4b\x44\x16\xa4\xec\xfe\xe1\x30\x7d\x19\xd1\x06\x87\xe9\xfe\x3e\x3e\xb5\x52\x5f\x83\xc4\x09\x21\x88\x34\x88\x1f\xd1\x26\x9c\x80\xb0\xe1\xd8\xbe\x50\x93\xcb\x07\xcf\x92\xc9\x62\xad\xa9\xbb\xb8\x5c\x4d\xf2\x1b\xcc\xa7\xc3\x5c\x86\x56\x54\xea\x14\x09\x7c\xd3\x17\x65\x5a\xab\x26\x59\x42\xcb\x0f\x9b\x29\x32\x51\x4c\x70\x43\x15\x4b\x40\x13\x01\x48\xec\x04\x12\x24\xd9\x84\x40\x89\xb2\xb0\xa9\x0a\x43\x66\x4c\xe2\x25\xc7\x97\xff\xc6\xb7\xa5\xaf\x8b\x52\x3d\x07\xaa\x6a\xc0\x72\x1c\x40\x9f\xf8\xb8\xf4\x04\x42\x18\x39\x5e\x0a\x5a\x79\x8a\xce\x1a\xea\xc1\x30\x3d\x11\x2b\x88\x26\x9d\xf9\x12\x13\x51\x53\x9c\x60\x9e\x4e\x1f\x4a\xf0\x48\x26\xe1\xa5\x44\x27\x73\x6e\xbd\x19\x5a\x23\xbc\x65\xcf\xd2\x99\x6f\x15\x0c\x56\x44\x35\xc5\x27\x13\x6a\xc3\x69\xc4\xac\x1c\x79\x9e\x5c\xa6\x55\xcd\x4a\x23\x5c\x6e\xa8\x27\xaf\xbf\x88\xeb\xb9\xb6\x36\xc2\x43\xa7\xc8\x59\xdb\x2e\xdb\x3a\xc7\xf4\xd8\x6f\x1c\xe0\xa1\x35\x48\xe4\xe1\x6b\x99\x57\x0b\x36\x4d\x67\x29\x4b\x8e\x6c\x79\x91\x78\x4c\x85\xfd\xd0\xce\xb4\xe8\x76\xd8\x12\x37\x89\xe7\x09\x99\xfc\x3d\xbf\x48\x86\xeb\xda\x13\x73\xf5\x99\x20\xf7\xf7\xab\x86\xec\xab\x16\x5a\x1d\x7b\x0b\x42\xbb\x45\x22\x89\x04\x7a\x0b\xe5\xd9\x1e\x41\xda\xe8\x60\xac\x7b\x0a\x52\x12\x4c\x3e\x1c\xdf\xdf\x4b\xc8\xa1\xc5\x5c\xc2\x58\xcb\x87\x2f\x56\x2f\x17\x36\xce\xb8\x36\x62\x83\x9d\x35\x5b\x09\x86\xe6\x38\xea\x53\x4d\xb1\xbf\x20\xb6\xef\xbb\x27\xab\x35\x47\x18\x5c\xc9\xa8\x52\x3c\xac\xaf\x1b\xda\x91\x6c\x6c\x1c\x19\x35\x35\x32\x6c\x03\xf4\xb1\x62\xf5\x77\xf9\xa7\xbc\xd0\x5e\xe8\x22\xd5\x77\x2b\xa3\x09\x37\x0e\x48\x9b\xd1\xb7\x46\xc6\xb5\xca\x38\x0d\xe9\x24\x7a\x26\x15\xfb\xbc\x71\x05\xea\xbe\x7e\x54\x87\xeb\xc8\x80\xec\x92\xda\xff\x60\x2d\x69\x8d\x92\xd8\x87\x8e\x0c\x97\xac\xc7\x18\x0e\xfd\x34\xbd\x76\xcf\xf4\x7a\x9b\x61\x46\x9f\xd8\x1d\x3c\xc8\x58\xc3\xbf\xe5\xba\xe6\x18\x9a\x25\x1b\x57\x9c\x94\x4f\xec\x8e\x38\x22\xa9\x55\xa2\xe8\x5d\x13\x76\x90\xf2\xae\xfb\xe0\x16\xa7\xe4\xc2\x08\xbf\xc2\xc9\x71\x64\x91\x67\x7c\xa6\x88\x33\xb2\x3a\xe2\x7a\x8e\xae\x26\xe2\x8c\x3e\xe9\x5b\x91\x8a\x01\x8c\x23\x82\x45\xf1\x31\x0f\x65\x79\x58\x85\x14\x35\x21\x6e\x66\xd7\x60\xfd\x40\x15\xbc\xf3\xf4\xc8\x50\x04\x9f\x26\xce\xe2\xac\xd2\x6c\x4b\xd0\x84\x42\x43\x6e\x1b\xa9\xf3\x56\xe2\xf5\x36\x87\xa8\x4d\x6f\x84\x9f\x7d\x42\x47\x3a\x0b\x5d\x9a\x85\xe0\x32\x47\xac\xf3\xc1\x30\xbf\xb3\xf0\x13\x6c\x88\x03\x35\xe1\xd5\xb2\xa6\x36\xe9\x55\xd7\xbb\xce\x3a\x4d\xbf\x34\xb9\x6d\xbb\xab\xc6\xd7\x38\xbc\xa4\xef\xef\x43\xb8\xf3\x03\xf1\xf2\xd6\x8a\x6f\x2e\x5a\xd2\x81\x06\x20\xfc\x8e\x19\xd2\xde\xbe\x43\x3e\x02\x51\x78\x1f\xa7\x4e\x43\x68\x03\x82\xf1\xee\xe8\x08\xf8\x1c\xe9\x74\x26\xb2\xbe\x57\x28\xff\x31\xe3\xf3\x83\xe7\x01\xfa\xc6\x28\x4c\xa2\x05\x25\x30\x0c\xe6\xde\xc6\x35\x2b\x7d\x5b\x38\xfa\xc4\x0f\xfa\xb2\x1a\x65\x50\x6d\xbd\xb7\x0b\xc5\xbf\x37\xf9\xe3\xda\x11\xce\x7f\x44\x11\xe1\xf4\x44\x1c\x50\xdb\x34\xef\xa8\xde\x7c\xc5\x15\x64\xcf\x72\x15\xd3\xed\xc8\x5d\x48\xcc\x8d\x6a\xbd\x70\x96\x07\x76\x5b\xdb\x34\x03\x4e\xc4\xdb\xbb\xc3\xa8\x07\x57\x24\x34\x80\x9d\xed\xba\xf4\xa9\xa1\x30\xcc\x04\x03\x19\x58\x64\xe0\xd2\x8c\xdb\x4e\x15\x03\x45\x0c\xf6\x6b\xb8\x2d\x41\x91\x6f\xfc\xce\xfb\x25\xf5\xbd\xd0\x76\x46\x04\xac\xac\x32\xe4\xc5\x73\xb2\xdb\x41\x94\xad\xd6\xc5\x93\x85\xa7\xe0\x24\xf2\xfe\x8f\x78\xaa\x54\xd5\x0d\x4d\x3f\x52\x69\x12\x8c\x0e\xc6\xf7\xf7\xea\x33\x24\xb5\x80\x2b\x29\xc3\x0a\xd4\x1a\x36\x12\x0c\x5f\x1a\x1a\xb6\xf7\x30\x55\xfe\xb2\xf4\xd8\x8c\x00\xf4\x72\xf5\x88\x5b\x3e\x93\x03\x6e\xad\xe1\x96\xed\xa8\x56\x32\xb1\x8c\x35\x55\x86\x75\xe7\x58\xa3\xc4\x42\x56\x69\x98\xe6\xd3\x6c\x99\xb0\x33\x96\xcd\x5a\x84\x8c\xe4\x45\x11\xfa\xeb\x7f\x65\x13\xb7\xc1\x88\xa7\x8c\xed\xa8\x5f\x82\x9e\xb6\xb5\xa9\x91\x32\x3b\x5c\x8d\xd0\xc2\x51\xdb\xb3\xc8\x90\xe0\x35\x1a\x5b\x6a\x0f\xb4\xac\x5b\xeb\x82\x42\x8c\xd2\xf1\xb0\xad\xbe\x7d\x6d\xb9\x37\x79\x65\x27\x08\x4c\x0e\xf0\x41\x56\xa9\x6f\x0c\x5d\xca\xe0\x54\x4a\x41\xd5\x20\xc8\xe9\xe5\x52\x03\x7f\x98\x26\x0c\x1d\x11\x98\x84\xf0\xff\xa9\x09\xd8\x5a\xbf\xe8\xcb\x4e\x50\x87\x1d\xb8\x2d\x4c\x23\xfd\xdd\x1c\x81\xc3\xc7\xf9\xa3\xfa\x8c\x07\xc3\xf4\xc5\xb5\x2b\x48\x84\x88\xc4\x41\xa2\xde\x58\x60\x52\xb1\xc6\x4f\xed\xc0\x37\x7d\xc3\x75\xd9\x75\x3b\x98\x06\x51\xd6\x21\x41\x22\xba\x6a\x68\xa8\x63\x35\x0d\xbf\xce\x31\x6a\x27\x73\x68\x9d\x3f\x42\xc4\x71\xd3\xf2\xc4\xa3\xa8\x5a\xa7\xaf\x1e\x7b\x22\xac\xc1\x57\x6a\x3d\x0f\xb7\xe5\x6f\x3b\xda\xeb\x82\x34\x31\xf2\x0c\x77\x40\x74\xa0\xa4\x2b\x17\xd7\x2b\x88\x3a\x29\x6c\x0e\xac\xf5\xaa\xd1\x36\xbc\x09\x9a\x20\x74\xbd\x22\xe9\x23\xc1\x54\x69\x7f\x88\x36\xfb\x1a\x55\x0d\xd4\xf8\x10\x56\x0e\xa8\x0a\x0a\x05\x1f\xad\xa4\xdd\x21\x84\x6e\x47\x03\x24\x2a\x69\xf4\x20\x16\x48\xac\x6d\x64\xe8\x96\x62\x77\xb6\x61\xa9\x49\x6f\x72\x93\x60\xf9\x70\x72\x89\xea\x9d\x31\x6f\xc8\x53\x45\xd0\x84\x54\xbb\xbb\x23\x5a\x9f\x29\xe5\xa8\x5a\x6e\x18\xc8\xb3\xc2\x87\x05\xcb\xd3\xfc\xf2\x3c\xbe\xf4\x39\x87\xa9\x3b\xdd\xae\x9a\x94\x3a\xce\x8a\x8a\x94\x72\x37\xe7\x7e\x12\x6a\xa9\xb8\xd1\x97\x9d\x96\xfa\x1b\x92\x2d\x3b\xd9\x8a\x0d\xe9\x96\xf4\xb7\x8b\x05\x8d\x21\x54\x71\x20\xd0\xd6\xb5\x0b\x0c\x51\xc9\x3a\x04\x36\x4b\xeb\x34\x1e\x32\x80\x0d\xab\x01\x6d\x56\xf9\xd6\x7b\x83\x9a\xa3\x14\xa7\x5f\xb3\xb3\x28\xde\x28\x0b\xc3\x64\x28\x2e\xd3\xf8\xb4\xc8\xc4\x03\x1a\xcf\x54\xd3\xc5\x5b\xf7\x3d\x9e\xe4\x85\x90\xd1\x18\x6c\x2c\x31\x36\x92\x7c\x9d\x2a\x5a\xd5\x77\x19\xf3\xbd\x04\x95\x06\xbd\xd0\x03\x47\x0b\x18\x54\xff\x52\xab\x17\xca\xc6\x85\x8d\x8e\xea\xc3\x80\xfa\xaf\xf1\xc6\x61\x6b\x3e\x0c\xbd\x98\xd6\x28\x19\xb9\x4e\x53\x2b\x35\x26\x91\xf9\x79\x7f\x2f\x2c\x90\x7d\x22\xce\x34\xed\xb2\xb6\x89\x27\x3a\x34\xe7\x44\x2d\x17\x61\x51\xe8\xce\x95\x85\xed\xd2\x1d\xc5\x34\xfc\x3a\x5f\x80\x4a\x3f\xae\x93\x72\x90\xb2\x44\x84\xa1\xd4\xe1\xdc\xc1\x25\xd5\xbd\xad\xfb\x2d\xbd\x23\xc8\x21\xba\x68\xdd\x24\xeb\x30\xcd\x7d\x29\x3f\x85\xdc\x72\xbd\x45\xf0\x46\x5b\x9a\xc0\xeb\x3b\xca\x32\xd7\xbb\x25\x1d\x1c\x5b\xa6\xe4\x5b\xa7\x8c\xe2\xc5\xa4\x75\xc1\xf7\x68\xa5\xa8\x2d\x0c\x50\x64\xa2\x0d\x20\xbe\x6c\xa3\xd7\x66\xdc\x43\x35\x43\xfc\x26\x8e\x97\xdd\x6d\x0d\x2e\xc8\x3d\xde\x77\x78\x65\x76\x58\x4d\x18\x23\xda\x61\xde\xb1\x4e\xd6\x96\x17\xb9\xd0\x36\xf8\xb8\x49\x93\x4b\x45\x95\xd6\xbc\x16\xc8\x3b\xa1\xb6\xb7\x2c\x0f\xd3\x35\x06\x23\x12\xc8\x11\x87\x0e\xa3\xd4\x49\x00\x7c\x2f\x3e\xc0\x47\x62\xf3\x49\xd8\x14\x70\x44\xe0\x78\x48\x5c\x16\x38\x22\xbd\x9e\xab\x33\xc1\xca\x95\xda\x97\x7b\x01\x7a\x80\x51\x5b\xbf\x04\x8a\x7a\x15\x98\x86\x2a\xa6\xa7\x4e\x8b\x22\x70\x6a\x29\x4c\x7c\xaf\x2d\x4f\xa6\xe7\x77\x0b\x26\x4d\x67\xcd\x3a\xaa\x9d\x59\x5a\x56\xf5\x8e\xd4\x21\xdd\xb9\x5a\x56\xf5\x0e\xbb\x4d\x2b\xe1\xa8\x5b\xd9\x36\xb3\x9b\x5e\xef\x5a\xca\xd9\xe5\x14\x47\x30\x89\x22\x43\x6b\xc9\x46\x96\x9e\xac\xa9\xdf\x04\x88\xc2\x33\x93\x78\xd1\xe3\xbf\x8c\x6a\x79\x69\xbe\x0a\x94\xca\x3c\xd5\x59\x0b\x56\x58\xc0\x50\xac\x69\x27\xb9\x94\x49\x84\xb2\x0d\x02\x77\x29\xf5\x0e\xaf\x2d\xd7\xa8\x3e\x8e\xac\xba\x51\x5e\xab\x08\xeb\x7c\xfa\x0d\x25\x14\x62\x1b\x1a\x1a\xb0\x22\x84\xba\x8a\x41\xe8\x8e\xdb\x8e\x1b\x6d\xb6\xcc\x32\xb4\x1d\x04\xad\x14\x6f\x0f\x64\xd6\xd2\x8e\xe0\x5b\xfd\xf6\x6d\x2b\x11\x7f\x1d\x4f\xeb\xa2\xbc\xf3\x65\x05\xb2\xa7\x5b\xaa\x20\xc9\x68\xfa\xd0\x82\xd9\x77\x14\xfc\x6f\x18\xb7\xf5\xf1\x68\x1f\x80\x4a\x63\xf8\x58\xa1\xab\xdb\xf4\xd5\x7d\xc1\xa6\xf1\x15\x93\x0a\xb8\xf2\xf6\x82\xa9\xdf\xa4\x49\x42\xac\xb8\xb4\x55\xb5\xeb\x32\xa5\x39\x1e\x97\x46\x19\xb1\xc8\x8e\xdc\x36\xd9\x8a\x3e\x6d\x10\x12\x63\x75\x75\x71\x79\x99\x21\xda\x69\x96\xd6\x77\xfc\x3a\xd6\x4a\xb4\xa9\xef\x13\x96\x19\xfa\x19\xbb\x4f\xf4\x6b\x4a\x83\x0e\x2c\xd6\x9b\x8d\x3b\x7b\xa3\x7e\xab\xaa\x9e\xb0\xac\x8f\xb8\xf8\x3a\xb3\x65\x99\xae\x7e\xd1\x6a\x8f\xf2\x29\xab\xea\xa2\xc4\xa1\xd7\x54\xfb\x5f\x1a\x50\x11\x55\x2d\x21\x3c\x5e\xd0\xbf\xa2\x53\xe8\x2b\x1f\xfb\x36\x80\xac\xb2\x69\x42\x57\xc1\x16\x1b\xa8\xae\xdb\xc6\x12\xf1\xb6\x55\xfc\x6b\x0d\x27\x2e\x69\x6b\x38\xd5\xe7\xfd\x3d\x1d\x53\xe2\x8a\xae\xa3\x93\xfc\x6c\x77\x74\x6f\x53\x2f\x10\xea\xd7\xed\x84\x9e\x08\x78\xdd\xb0\xe6\xbc\x83\x41\x59\xab\x2a\x2b\x79\x13\x71\x05\x91\x7e\x01\x9c\x97\x10\xea\x2b\xd0\x11\x61\xc2\xd0\x94\x35\xbd\x22\x13\x77\xc2\xad\x61\x6e\x3f\x63\x58\xbe\x4d\x82\x87\x98\xe0\x2d\xca\xb4\x28\x81\x03\x8f\x5a\x3c\x79\x48\x3f\xda\xd9\x52\x2a\x01\xee\x1b\x30\x5e\xdf\x78\x48\xd2\x30\xec\x1d\xea\xa0\xc8\x46\x7a\x3d\xfd\xbb\xcf\x6e\x53\xce\xe5\x99\x09\x82\xc5\xd3\xb2\x3e\x19\x8f\xba\xe6\x07\x73\x3b\x4d\xc3\x63\xa3\x51\x24\x03\xa3\xa2\xab\x16\xc8\xee\x74\xd5\x22\x15\xf2\x4a\x96\xef\xaa\x79\xdb\x6e\xc1\xb6\x9c\x37\x42\xfb\x9c\x13\xee\x88\x66\x60\x05\x32\xe8\xbc\x09\x91\xc2\xb8\x0e\xad\x30\x06\xa1\xad\xc2\xa1\x9b\x28\x8b\xa2\x86\xf7\xfc\xb0\xe5\x3c\x9a\x13\x61\xf9\xd5\xeb\x69\x93\x69\x7d\xa4\xcb\x57\x4d\xa5\xaa\x82\x09\x43\xfc\x83\x1a\x5b\xbc\x16\xde\xc8\xfd\xbd\x28\xc4\x3f\x76\xa3\xc8\x13\xae\x21\x0d\x1a\x7f\x2d\x99\xa3\xb0\xc2\x6b\x05\x9b\x7e\x62\xda\x7b\x18\xdd\x7d\xc0\xbe\x98\x2f\x88\xd4\x29\x36\x8e\x03\xd5\x4d\x91\xef\x90\xae\xda\x36\x1c\x6b\x2e\x64\x82\x66\x48\x7c\x97\xb5\xc7\xb1\xd5\xde\xb6\xfa\x71\xa6\x87\xb3\x6d\x2a\x6e\x02\x23\xfa\x31\x92\xb3\x77\x4b\x74\xe6\xf8\x96\x4f\x7c\xce\xca\x4a\x74\xb3\xe0\xdd\x43\x2b\x92\x0e\x40\x0f\x65\x46\xaf\x3f\xbc\x13\x71\x37\xa2\x95\x88\x44\x6c\x31\xe4\xf3\xfa\x4a\xd2\xd0\x27\x7e\xa0\xc2\x15\x43\xf2\xb0\x13\x0b\x21\x71\x5b\x5f\x17\xc6\x4b\xde\x58\x13\x07\x58\x5f\x11\xff\xdc\x5c\x8f\x78\xb1\x77\x85\x45\x91\x14\xc0\x15\x75\xa8\x33\x90\x0b\x9e\x2b\x5b\x3d\xf3\x4b\x4f\xb6\xd2\x5d\xd0\x0f\x69\x3d\xf7\x1d\x8d\xad\xc3\xdf\xf1\xe0\x4d\x48\x0e\x1f\x06\x75\x59\x5e\x33\x08\xee\xc8\x30\xb2\x06\xa9\x86\xd0\x5d\x01\x5a\xdf\xf7\x4b\x56\x2c\x58\xee\xaf\x74\xdc\x96\x81\x5e\x4a\x4d\x40\x81\x50\x4f\x76\xd5\x56\x6c\xa2\x02\xf2\x7a\x4e\xb5\x1c\xf9\xb7\x4b\xc5\x11\xd4\xa4\x94\x9a\x23\x11\x41\x79\x9e\xfe\x0a\x4d\x45\x23\x7e\xd0\x40\x11\x71\x7f\x7d\x79\x48\x14\x52\x95\x72\xa4\x0d\x15\x45\xd1\xef\x82\x95\x59\x93\x00\x7e\x3e\x6e\x68\xcb\x03\x6f\x6f\x4a\xdb\xb2\xd4\x9c\x88\xf2\xeb\x1e\x00\x9b\xf9\xf2\x79\x69\xc5\xbb\x3c\xa0\xfd\xa4\xf2\x46\xa2\xdd\xab\x7e\xea\x44\x7e\xb6\x79\xaf\xd4\xe1\x35\xe8\x1a\x89\x81\xdd\xb4\xad\xab\x06\x0a\x5d\xe6\xac\x80\x66\x57\x57\x85\xc2\x6a\x0a\xfd\x95\x5c\xc7\x19\xd1\x24\xe3\xc5\x3c\x1c\x4a\x2f\xd8\x8d\xa2\x83\x86\x8a\xbb\xef\xef\x1d\x15\xa9\xdc\x5e\x6f\x77\xf7\x9a\xf8\x34\x52\x19\xea\xde\x69\x96\xee\xf5\x0c\x70\xab\x97\x54\xd9\x0b\xb5\x8b\x55\x04\x7d\x50\x8d\xe3\x6c\x98\xe2\xf3\xea\xca\x58\x7b\x7d\x2d\xa6\x53\xba\xd3\x3e\x80\x8d\xe0\xff\xbe\x74\xd2\x32\x0e\x68\xad\x92\x65\xe8\xf5\xe0\x03\xb9\x50\x6d\xae\xea\x40\x49\xb8\xcf\xb8\x12\x1b\x6e\x8d\x4b\xaf\x40\x5e\x69\xa5\xde\x67\x92\xd8\xdb\x34\x72\x68\x6f\xc9\x9a\xfb\x45\xee\x7b\x53\xb4\x86\x22\x7e\x02\x86\x44\x4a\xf8\xb0\xea\x66\xb3\xee\xfa\x3a\xa8\x08\x3d\x93\x55\x45\xea\x96\x20\x2a\x93\x75\x80\x73\x82\x68\x25\xbe\x5c\xee\xf3\x5a\x49\xeb\x14\x62\x75\xdb\x68\xf7\x00\x42\x0d\xad\x97\x0a\x5e\x44\x84\x33\x19\x61\x66\x9c\xce\xc0\xb0\x9a\x33\x33\x90\xe2\xf5\x7a\x3e\x80\x45\x91\x14\x7f\x20\xd7\xc3\x13\xf2\x25\x9f\x38\xaf\xd7\xdb\x4d\xab\xf7\xf1\x7b\x51\x47\x60\x28\x2e\xa2\xfd\x40\x5d\x0b\x47\x34\xd2\xa0\x40\x26\x48\x25\x45\xb5\xa0\x72\xb1\xc5\xb1\x75\xdd\xd6\x45\x51\x64\x2c\xce\x3d\xb1\x0b\xdf\x73\x9e\x03\xcb\xde\xdf\xcb\x70\x25\x82\x73\x25\xc6\x0f\x47\xaa\x61\xb0\x96\x00\x29\x35\xb6\xeb\x79\xc6\x22\xd6\xb8\x2a\x10\x89\xab\x2e\x63\xe3\xba\x2b\xc6\xd2\xd9\x60\x63\x06\xc1\x56\xfe\xeb\xe4\x0f\x23\xf7\x7b\x29\xc7\x69\xa5\x92\x77\x6e\xf3\xd3\xf6\x73\x6e\xb9\x35\xb7\x7d\x56\xab\x6f\x64\xac\x2f\xe2\xd2\x72\x39\xad\x0b\x14\xcb\x9a\x7a\xb2\xe6\x4b\x2b\x9d\x9a\x5e\xb4\x61\x97\x56\x69\x91\xef\x57\xcb\x05\x47\xf7\x57\xf4\x3f\x6d\x79\x48\x4e\x67\x42\xb1\x77\x32\xc9\x8a\x38\x81\x40\x75\xfc\xa6\x50\xde\xc9\xf1\xa9\x59\x05\x1d\x1c\x73\x32\xe5\x70\x9d\x28\xf3\x03\xed\x08\x13\xc4\xb2\x9c\x8d\x79\xc7\xaa\x2a\xbe\x64\xfe\x55\x75\xa9\x49\x30\xbd\x9b\x1a\xae\x0f\xfb\x28\xc0\xe5\xc0\x8d\xae\xec\x92\xd3\x85\xb8\x66\xa7\xc2\x81\x22\x70\x0c\x53\x7d\x3a\x00\x6d\xac\x2e\x23\x0f\x82\x54\x40\x70\x0a\x00\xc4\x28\x16\xf1\xce\x22\x5b\x5e\xa6\xf9\x60\x67\x5e\xd7\x8b\x6a\xf0\xec\xd9\x65\x5a\xcf\x97\x17\xfd\x69\x71\xf5\x0c\x3a\xf0\x53\x85\x7f\xf7\x85\x4f\x41\x41\xd4\x57\x48\x5a\x07\xad\xbe\xa8\xa6\xf7\x38\xa2\x42\x62\xbd\x09\xac\x69\xb0\x87\x70\x51\x91\x4c\xb5\xb3\x67\x5e\x1b\xd0\x93\x6e\x1e\xf1\x0a\xbd\xb1\x98\x17\x90\xd5\xce\x97\xf7\x55\x51\x2e\xe6\x5e\x38\x1a\xd3\x5b\x46\xcb\x51\xf6\xb7\x94\xf6\x36\xe1\xe5\x32\x4d\xa2\x83\x30\x49\xab\xf8\x22\x63\xa7\xe0\xc6\xd5\x14\x1d\x7a\x8a\xad\xf0\x76\xd5\x8d\xf0\x9d\x6c\xef\xe4\xfd\xf7\x6a\xce\x69\x62\xff\xf5\x9b\xb3\xa3\xaf\xde\x9e\x4c\x4e\x8f\xde\xff\xf5\x64\x72\xf4\xf1\x8d\x16\x19\x1b\x15\xd2\x0a\xba\xcb\x99\xb1\xa1\x1a\x3f\x08\xc5\x1e\xab\x10\xe5\x5d\xda\x81\x5e\x4f\x60\x29\xb5\x45\x39\xe5\xd6\x8d\xf6\x7a\xe2\xf1\x00\x80\xbd\x34\x57\x70\xaa\x20\xe4\xd8\xa5\x20\x51\xbb\x9a\x92\xf1\xc6\xd0\xe4\x71\x19\x67\x5f\x97\xf1\x25\xc4\x35\xcd\x19\x4b\xaa\xb3\xf9\x5d\xb4\x01\x8d\x96\x81\x6d\x55\x9f\x64\x91\x52\x71\x35\x23\x76\x80\xff\xbd\x60\x88\x40\xfd\x34\xcf\x59\xf9\xcd\xf9\xbb\xb7\x91\xf7\x22\x49\xaf\x5f\xbe\x78\xc6\xff\xf7\x64\x36\xbc\x85\x80\x80\xc2\x80\xac\xa6\x65\xba\xa8\x5f\xbe\x78\x26\x7e\x78\xda\x51\x4c\x77\x31\xce\x5a\xf2\x01\xe7\xcb\xb0\xfa\x61\x9e\xd6\xac\x5a\xc4\x53\x16\xe9\x41\xfb\x32\xfd\x38\x67\x55\x3d\xd8\x11\x38\xe2\x31\xfc\x94\x8f\xec\xb3\xdb\x7d\xb8\x30\xcd\x8b\x2c\x61\xe5\x53\x8d\x3d\xf0\xaa\x76\x17\x80\x17\x78\x5f\x24\xac\x1a\x1d\x8c\xfb\x79\x91\x08\xa3\x99\x48\x34\xe0\xf5\x7a\x6d\xc8\xe7\x16\xe4\x0e\x56\xdd\x08\x23\x5b\xb5\xae\xf5\xce\x10\xb7\x4f\x70\xa3\x9e\xcd\xa4\xf0\xd8\xf0\x5f\x20\x0b\x05\x2b\x0e\x82\x2e\x2d\x61\x29\xc3\x27\x27\x87\xdf\x36\xfc\x27\x19\x03\x5e\x2b\x72\x81\x77\x7f\xe5\xfb\x52\x6f\xeb\x7d\x6f\x8f\xef\xd4\xbd\xbd\x21\x14\xa9\xea\xb8\xac\x23\x84\xda\xf3\xf6\xe1\xd3\xc3\x2c\x96\x27\x3a\x83\xe5\x89\x47\x62\xe6\xce\x9a\xe1\xb7\xc4\x57\x9a\x42\x51\xa7\xa1\x02\x06\x5f\xe8\x5f\x17\x25\xdc\xb1\xbf\x5e\xe6\x53\xf9\x80\xcb\x7f\x16\xcb\x1a\xb1\x85\x2f\xa9\x98\x8d\x1f\xfc\x32\x0f\xbf\x84\x88\x00\x7e\x03\x72\xe7\xf1\x25\x7c\x70\x60\xfc\x39\x34\x2a\x8a\x3a\x9e\x9d\x65\x61\x3f\x90\x4e\x3c\xc5\x58\x09\x45\x68\xa8\xce\x0f\x9a\x21\x6d\xa5\x5d\x99\x5c\xfa\x3b\x69\x12\x3d\x15\x4a\xd4\x50\x62\xcf\x7b\xba\xcd\x52\xf3\x9a\xa1\xc6\x7c\xbb\xea\x59\x9e\x6c\x5f\x39\xbf\x7a\x52\x7a\x16\xac\xe4\x1c\xe8\xc6\x60\xa6\x70\xf8\xcf\x8b\x02\x17\x1f\x40\xd9\x3b\x0d\x6a\x10\x4b\x17\x15\xaa\x34\x84\xb6\x6c\xf9\xea\xee\x4d\x82\x75\xe2\x48\x20\x3c\x4c\xe1\x06\x70\x96\x27\xd2\xa8\x5b\xa0\x02\x68\xf4\x2b\x56\x9f\xf1\x9a\x50\x85\xcd\xc7\xa6\x83\xa1\xca\x3c\xc9\x13\x50\x3c\xf3\xa1\x11\x69\x83\x63\x14\xc5\x7c\x57\x49\x51\xa9\x28\x2a\x9d\x23\x73\x80\x66\x28\x97\xa9\xb9\x3d\x9d\x43\x25\x87\x55\x88\x0d\x25\x84\x68\x0a\xc3\x70\x01\x45\xcf\x6b\x69\x62\x3f\x13\x64\x1d\xcb\x76\x52\x7d\x21\x7c\x42\x20\x94\x08\x71\xe2\xe2\xcb\xe2\xe0\xd2\x59\xee\xa2\xc8\x22\x99\x2e\xe4\xe0\x56\xda\x81\x58\x33\xa4\x1b\x4f\xd7\xc6\xa9\xd8\x16\x2b\xc3\x1c\x74\x2c\x25\x12\xa7\x45\x96\xc5\x8b\x8a\xf9\x32\x96\x92\x18\x81\x4d\xbd\x47\x99\xa7\xdc\xd2\x3e\x88\xb1\x12\x53\x77\x87\x57\xc3\x31\x97\x54\xc2\x45\x4d\x37\x2e\xe8\xf5\x0b\x54\xee\x3c\xbb\x8b\x74\xdd\x75\x2e\xc8\x2f\x3c\xdb\x84\x06\x3e\xaa\xa7\x48\xe3\xd7\xf6\x54\x6c\x5c\x57\x5f\xed\x2c\xd5\x57\xb2\xd9\xbf\x58\x5f\x45\xb8\xcb\xb8\xdc\xb9\x29\xe3\xc5\xbb\x78\x11\xf1\x43\x8e\x4d\xeb\xc1\xe8\x30\xf4\x5e\xe0\xef\x9d\xab\x65\x56\xa7\x8b\x8c\x45\x4f\xe5\xaf\xa7\x2f\xbd\xd0\x7b\xf1\x0c\xf3\x5f\xf2\xeb\x52\xca\xb2\xa4\x62\xa2\x9c\xfc\x42\x28\xfd\x35\x0e\xc1\x4b\x3a\x02\xc1\x4f\x84\x10\x3f\xc7\x61\x7d\x51\x24\x77\x83\xd1\x73\x95\xfd\x02\x52\x04\x14\xfc\xa4\xd0\xe5\x60\xf4\x3b\x1b\xf4\x45\x5d\x0a\xf0\xf2\xa5\xa3\xcc\xb4\xc8\x2e\xc1\x4f\x46\xbb\x11\x05\x2d\x61\xb0\x1e\xf5\x45\x6a\xb9\x8a\x17\xd8\x89\xab\x58\x40\xc1\x8f\x71\x28\x83\xbd\x0d\x46\x07\xa1\xe7\x85\x9e\x37\x46\x97\x8c\xb3\x54\x6c\x26\xbe\x06\x4c\x41\x06\x67\x3c\xd3\x04\x38\x76\xf1\xc9\x97\x8c\x92\x7e\xf8\x5e\x9a\xc0\x0b\x64\xaa\xad\x25\x05\x9c\xb2\xcd\x93\xe5\x34\x67\x24\x6d\xf4\xd2\xe4\x36\xe4\xfb\x39\x9c\x15\xcb\x3c\xe9\xb6\xd4\xe3\x30\x8e\x6a\xd0\x62\x0f\xca\x46\x40\x16\xf8\x7f\xe7\x28\xc4\x38\xec\xf5\x8c\x5e\x01\x35\xe2\x3d\x01\x49\x2a\x2f\xa2\xef\x94\xfc\xab\x11\xde\x29\x2b\x56\xbf\x51\x8c\x53\x6b\x24\xf4\x3e\xbb\x8a\xeb\xe9\x9c\x81\x2d\x47\x3a\xf3\x2d\x26\x36\x58\x71\x40\xe0\xbb\x94\x1b\xff\x67\xfe\x8f\xd5\x5e\xe0\xd3\x23\xdd\x1f\xfd\xfd\xe9\x78\x2f\x78\x1a\x3c\xbb\xd4\x77\x2b\xa8\x38\x84\x6a\xaa\xb0\x8e\x2f\x61\xf4\x45\x6b\xe8\xd5\x64\x94\x26\x22\x7f\xac\x75\xfd\xe2\xcb\x86\x1f\x7d\x38\x44\x16\xeb\xc7\x11\x14\x15\x08\x49\xf5\x81\x72\x59\x12\x99\x39\x1b\x2c\x26\xf9\x00\x01\xfe\x91\x39\xb8\x72\x7c\x44\x65\x30\x31\xa3\x83\x71\x00\xb3\x6b\x53\xa3\x73\x76\x8b\x3b\xdd\x80\x3e\x1c\x07\x43\xac\xbb\x8f\xef\xd4\x1c\x44\xd0\x05\x71\x4a\xc3\x14\x22\x4c\x20\xe7\x0b\xee\x16\x1c\xd4\x60\x6a\x74\x0d\x64\xca\xe2\xb2\x8c\x04\x21\x19\x91\x26\x84\x62\x6e\xbf\x2e\xde\x16\x37\xac\x3c\x8e\x2b\xe6\x07\xe3\xfb\x7b\x01\xda\x97\x9b\x46\x46\xfe\x01\x2f\xdb\xe5\xe8\x60\x8c\x2c\x28\x7c\x1c\x8e\x39\x0b\x0a\x3f\x9f\xc3\x82\x90\x77\x35\xb1\x12\xbc\x5e\x35\xbf\x1b\x7a\x7b\xfc\xa3\xa1\xcf\x42\xeb\x6f\x33\x74\x31\xaa\x31\x46\x06\x93\xd7\xb4\x07\x47\x92\x69\xf4\x12\x01\x86\x68\xe5\x22\x1b\x91\xcb\x42\xdf\xc3\x1a\x03\x45\x98\xd6\xb9\xb4\xb7\x90\xe0\x42\xff\x40\x67\x58\xdb\x6b\xd7\xca\x11\x2a\x5f\xba\x1e\x92\x6f\xb6\xec\xae\xf2\x77\xbd\x9e\x95\x01\xd7\xa5\xfe\x74\x1e\x97\x47\xb5\x7f\x00\x8e\xb7\xff\xef\xff\xe7\xd1\x36\xc8\xfd\xca\x59\x16\x35\x85\x0f\xb5\xad\x8d\xa4\x4d\x22\x58\x54\x9c\xf1\x25\x10\x51\x85\x85\xb2\x0e\x56\xa2\xe7\xfc\xa3\xdf\x5e\x29\x70\x75\x0d\x56\x38\xfb\x36\x90\x6c\x08\xd2\xe5\x12\xbd\x45\x95\xc8\xf8\xd2\x6e\x8a\xaf\x1a\xa0\xad\x76\x35\xbb\x51\xc4\xf2\x84\x24\x04\x2b\xf3\xdb\xdc\x19\xaa\x32\x0a\xa1\x07\x3d\x68\xb6\xe4\x66\xb1\x4f\x72\x5c\xfc\x2d\xb8\x04\x11\x85\x33\x4f\xb6\x60\x9e\xb4\xca\x0b\x8c\xba\x89\x2e\x3a\xbf\xe7\x3b\x36\x67\xb7\xf5\x59\x7a\x91\xa5\xf9\x65\x98\xc5\x55\x3d\xa4\x03\x48\xc6\x0d\x58\x41\x31\x01\xa4\x8c\x58\xb7\xc8\xb3\x92\x74\x71\x44\x10\x40\x5e\x39\xa4\x46\x30\xda\x7c\xdf\xf2\x24\xf4\x31\xa3\xc6\x85\xa9\xd3\x45\x17\x45\xce\xe4\xa2\x64\xf1\xa7\xa6\x81\x4c\x32\xee\x54\x7d\x18\x79\x60\x55\x31\x96\x80\x26\x69\x6d\x90\x40\x29\x59\x6b\x3d\x20\x19\x33\xaf\x47\xad\xf5\x49\x1b\xc6\xd9\x69\xb6\x1e\x8b\xb5\x34\x57\x8f\x36\xc5\x7a\xdd\xcd\xe3\xe7\x5d\x48\xf0\x0b\x9e\xe6\x3d\x4e\x25\x37\x8f\xc3\xd0\xda\x1a\x14\x82\xd7\xd8\x75\xf1\xa1\xfb\x4f\xae\x4f\x73\xa2\xc8\x14\xb5\xef\x2a\x50\xe4\x31\x2b\x93\xa0\x4a\xaf\x3a\xb8\x9a\x1c\x13\xb1\xf6\xf2\xb3\xfd\xe6\xa4\x33\x0f\xdb\x93\xe2\xb4\xc5\xee\xb5\xa0\x39\xa2\xc3\xb5\x43\x86\xab\xfa\xcb\x2c\x52\x9a\xe2\x1c\xa4\x0d\x37\xa7\xed\x2f\x46\xd6\x48\xd8\xeb\xef\xb3\xc6\xa2\x35\x0d\x9f\x41\xdf\x3e\x6b\xb8\x1a\x87\x18\x0f\xf6\x9c\x3d\x76\xa8\x4f\x36\x67\xd3\x4f\xe2\x4d\x01\x15\x70\x01\xb4\xd3\x99\x8a\xe2\x50\x1b\x79\x2e\x61\xfc\x0e\x10\x51\xe0\x48\x98\x70\xc0\xc9\x36\x43\x17\x52\x44\xf3\x65\x1b\xdc\x3a\x1a\x44\xc1\x48\x57\x0b\xbc\x70\xa4\xc9\x9d\x13\x4a\x6d\xfd\xc8\x90\x41\x3a\x61\x25\xb9\x89\x28\xdd\x71\x43\x82\x64\x42\x6d\x70\x27\x8c\x58\xd9\x11\x59\xe1\x4e\x38\x29\xcd\x8c\xa8\x58\xd3\x09\x89\x62\xc9\x88\xc8\x55\x5d\x50\x69\x25\x86\xd5\x26\xff\x1b\xe4\x83\xf6\x66\xda\x5a\xfa\x82\x21\x63\xb0\xf6\xfb\xfb\x5d\x28\xe7\x9e\x32\x3a\xe9\x91\xd3\x0d\xaa\x5a\x11\xc6\x53\xa2\x88\xee\x1f\xe7\x79\x51\xef\x2c\x58\x39\x2b\xca\xab\x9d\x42\x9a\xbb\x56\x3b\x45\xbe\x13\x6b\x21\x3c\xc6\xb7\x17\x01\xfe\xc1\xdf\x19\x84\xbd\xef\x7b\x41\xa3\x42\xad\x29\x60\xf2\xae\x56\xf2\x15\xb2\x5f\xb2\x69\x71\x99\xa7\xff\x14\x0f\xca\xae\xe8\xc2\xeb\x62\xd3\x82\xc3\xaa\x38\xab\xa2\x91\xf7\xcc\x0b\xbd\xbe\x17\x7a\xff\xe6\x85\xde\x9e\x17\x7a\xaf\xbc\xd0\xbb\xf7\x42\xcf\xf7\x42\x2f\xf0\x42\x6f\xe4\x85\xde\xd8\x0b\xbd\x95\x17\x7a\x8d\x17\x7a\x3f\xfe\x28\x03\x69\x56\xd3\x78\xc1\x4e\xd9\x25\xbb\x85\xb7\x83\x53\x76\x79\x72\xbb\xf0\x3d\xff\xc7\x1f\xbd\x3d\xd9\x40\xff\xa7\x22\xcd\x7d\xef\xfe\xc7\x1f\xbd\x60\x0f\xea\xbb\xf4\x88\xc2\xa0\xd4\xd3\xa9\x59\xa5\xb5\x4c\x85\x8a\x89\x9e\x10\x19\xba\x4b\x6c\x3b\x0e\xcb\x19\xe9\x11\xea\x71\x62\x68\xa2\xb1\xa7\x5f\x6e\xcf\xea\xb8\x4e\xa7\x67\x0c\x65\x45\xa8\x0f\x21\x36\x34\x7e\x44\xf8\xa7\x31\x00\x69\xc8\x16\x06\xda\xb4\x34\x48\x85\xe9\x73\x48\x54\x43\xaa\x0c\xa7\x73\xcb\x33\x03\xa6\xb7\x7c\x32\x4c\xe7\x32\x47\xdc\x4e\xd2\x40\x7b\x0e\x5a\x5d\xc7\x19\x18\x51\x94\xd5\x60\x3a\x6f\x30\x1a\xfc\x25\xbb\xed\xb2\x81\x13\x35\x49\x41\x01\x99\x12\x3e\x51\x4f\x0e\xbd\xa0\x09\xe5\xb3\xed\xfa\x3a\x9a\x46\xcf\xca\xeb\xbb\x3c\xbe\xd2\x03\x98\x6b\x8f\x65\xa0\xf6\xc1\xff\x6b\x4c\x98\x6d\xc7\x4e\x77\x34\xcd\x49\x57\xf9\x22\xe4\xf4\x27\xae\xc1\x11\x2c\x6a\x15\x3a\xbb\xed\xf9\xa3\xbf\x3f\x1b\xef\x05\x9e\xab\x5f\x8b\xb8\x8c\xaf\xb4\xdd\x26\x7e\x8e\x14\xe2\x63\xda\xc7\xb3\x3a\x2e\xd7\x76\x90\x00\x7c\x6e\xef\xb6\xef\x5c\xff\x0b\xf4\xec\x64\x51\xa5\x59\x91\xcb\xce\x05\xab\xc6\x4c\x59\xdf\x9b\x60\xd5\x8d\x9e\x13\x35\x92\x4b\x90\x00\xbd\x4a\x1f\x68\x15\xe8\x33\x55\x10\x03\x02\x6d\xe8\x20\xd5\xbc\x9b\x3f\xf3\x82\x15\x24\x47\x98\x59\x2d\x2f\xaa\xba\xe4\xb7\x6f\x14\xac\x01\xe2\x95\xcc\x44\x3d\xb8\x67\x5e\x10\x96\xac\x5a\x66\xb5\xc3\x2d\x8a\x2c\xd2\x76\x89\xa2\xeb\x53\x40\xa3\x74\x8c\xe2\x27\x25\xee\x92\x59\x7d\xf8\xf2\x9f\xfd\x7d\xe0\x8f\xfe\xfe\x23\x5f\x78\x4f\x9e\x81\xf1\x0d\x34\x8b\x32\x35\x4e\xfb\xac\x1d\x03\xa5\x46\x87\xe3\x20\x18\x42\xe7\x11\x50\xa5\x0e\x61\x2c\xfa\x09\x16\xaa\xf6\xf6\x94\x22\x82\xbb\xf1\x1f\xff\x6d\x7d\xeb\x74\x2d\x6f\xd7\x34\x3f\x40\x69\xbb\x72\x44\x50\x3c\xd1\x6a\xc0\x5c\x40\xca\x57\x5d\x1b\x0d\x4a\x76\x05\x30\x69\xb2\xc6\xce\xaa\xb7\x32\xac\xc0\xa4\xdb\xcc\xe7\x0b\xe3\x6c\xf1\xff\xb3\xf7\x77\x5b\x6e\xdc\xc8\xa2\x20\x7c\xef\xa7\x60\xe5\x51\x53\x99\x26\x8a\x45\x96\x24\xb7\x9b\x74\xaa\x8e\x5c\x92\xba\x75\x5a\x7f\x2d\xc9\xed\xed\x4d\xb1\xeb\x64\x31\xc1\x22\xac\x64\x26\x9d\x99\x54\xa9\x9a\xcc\xb5\xce\x9b\x7c\xdf\xed\x5c\xcd\xdc\xcd\xe5\xac\xb5\xf7\x8b\xcd\x02\x02\xff\x40\x92\x2c\x59\xee\xdd\x3d\x33\x5e\x5e\x25\x26\x7e\x03\x40\x20\x10\x11\x88\x08\xe0\x99\x64\xc1\xe0\x33\x16\x3f\x80\xbb\x63\x0c\x27\x3c\xc4\x3b\x99\x36\x60\x87\xaf\x21\xf6\x15\xd6\x9c\x19\x54\x8b\x92\xbd\x86\x9a\x56\x4b\x16\x0e\xa9\x0c\x2f\x16\x31\x65\xb2\x56\x68\x42\xc4\x73\xc7\x4f\x7e\x59\x27\x19\xd8\x00\x4a\xf0\xfb\x8a\x20\xc4\x71\xec\x49\x1d\x8b\x7a\xfc\xdf\x6e\xd7\x6a\x40\xa7\x29\x7a\x13\x7a\x3a\xb8\x1d\xb1\xfa\xca\x52\x95\xe9\xce\xd8\x23\x53\xad\x73\x22\xbd\x5f\x2a\xe5\x2c\x73\x85\x6b\x55\x4a\xb6\xc6\x0a\x34\x50\x4c\x2c\xba\xb6\x66\xf6\xe2\x00\x76\x80\xb7\x09\x0b\x2e\x21\xa0\x06\x8a\xc8\x34\x11\x35\x6e\xa9\xd0\x18\x7d\xc2\x16\xd5\x47\xb0\x6f\x3d\xc1\x7d\x08\x89\x3e\xd9\x8f\x8a\xab\xef\x68\xc3\x38\x75\x09\xc7\x8e\x45\xf7\x2d\xb8\x86\x9d\xfa\x62\x31\xf3\x0b\x66\x6a\xc3\x46\x5c\xf9\x16\x3c\x32\x8d\x6f\x78\xc0\xed\xa4\xa4\x92\x4b\x8a\x3f\xbd\xa2\x5f\xb4\xcc\xf1\x50\x4c\x3e\x4e\x61\x76\x66\x5c\x31\x27\x76\xaf\xbf\x27\x1d\x2f\x0e\xea\x2b\xde\xd5\x97\xda\xb4\x90\xab\x13\xfb\xaa\x28\xeb\xb7\x45\xb6\x66\x6c\xae\x78\xaf\xd7\x40\x98\xaa\x4f\xcb\x28\x1f\x84\x04\x5d\xc2\xfb\x3a\x7d\x8d\x1e\x1d\xc5\xf1\xa5\xfe\x2d\x9b\x30\x4a\x1d\x1b\x65\x1a\xbb\x11\xbb\x59\x4a\x73\xcc\x86\x69\x8a\x6c\xda\x4a\x3f\xb6\x6a\xea\xcd\x0b\x72\xad\xb5\x26\x92\x9c\xe6\x44\xc6\xb1\x5d\xb9\xb9\x6d\x8b\x76\xd9\x63\xbb\x64\xf3\x45\xc7\xcb\x8b\x0d\x1a\xcd\xaa\x52\xca\x1a\x14\x95\xf8\xf2\x22\xcf\xee\x73\x0f\xe1\x76\xe2\xa9\x39\xdd\xb1\x7d\xa4\x35\xa3\xed\x40\x78\xc6\x0d\xba\xe4\xa7\xe1\x6c\x11\xa9\xa7\x86\x64\x49\xc6\x26\x14\xe7\xec\x22\x24\xe6\xf2\x03\x5c\x8b\x6c\xb7\x7a\x8c\xdb\xba\x88\x36\x72\x5c\x4f\x29\xb3\xf3\x54\x3b\x35\xd8\xaf\xb1\x6c\xfc\xba\xf3\x54\x43\xf2\x37\x62\x16\xde\xc0\xb1\x15\xfe\xb2\xc6\xe5\xcd\x6b\xce\x98\x31\xca\xa3\xa5\xc4\xda\xef\xed\x76\xd3\x34\x76\x75\xad\x5b\x0e\x77\xb8\xa1\x8c\xcd\x0c\x8f\x98\x3c\xa3\x8b\xde\x2c\x19\x55\xfe\x4c\x96\xc7\xde\x0f\xb4\xb3\x68\x22\x92\x8f\x4f\x6a\x00\xf1\x77\xcd\xd4\xd8\xe6\x44\x3c\xb8\xca\xd7\x17\xdc\xbe\x8c\x11\xd2\x19\x06\xa3\xe4\xb2\x82\x85\xeb\x8b\x4f\x60\x18\x79\x22\xfb\x0d\xc1\x4a\x92\x55\xbd\x2e\x31\xf7\x5e\x80\xe5\x63\xb9\x91\x8c\xf0\x06\x25\xe2\x21\x27\xca\x74\x66\xb8\x2c\xb9\x63\xb2\x2d\x2c\x13\x50\x78\xf1\x8c\x67\xca\x42\x94\xd5\x63\x7c\x91\x48\xe9\x03\x77\x0a\x1c\x75\xbc\x69\x64\xe3\x3f\xc7\x03\xb4\x8c\x81\x87\xe2\x2d\xff\xfc\xdd\x72\xfc\x33\x6d\x99\xf3\xdf\x2c\x73\xf2\xf3\x74\x1a\x8b\xa1\x4e\xcc\x81\xf5\x7a\xd3\x06\x46\x05\xc4\x74\xc3\x3b\x1d\x89\xce\xf9\xbf\xbc\xfb\x11\xfc\x83\x48\xc5\xf9\xc9\xd1\xd1\x91\x0e\x40\x13\x99\xac\x93\xda\xa2\x49\x9a\x0a\xbe\xcb\x70\x8a\x15\x4c\xd8\x46\xb0\x94\x82\xe1\x0f\x9d\x63\x14\x58\x00\xc3\x67\xd6\x70\x72\x5c\xad\x29\x3b\xa0\x85\x7c\xd5\x73\xd9\xfe\x7b\x43\xb9\x73\xb9\x72\x86\x97\x23\x84\x4d\x29\x0a\xde\xb0\x64\x1c\xc6\x52\x84\xa1\x73\xdf\x8c\xad\x26\x74\x8e\x2e\x49\x53\xdd\x77\x74\x4d\x89\x90\xf1\x92\x9d\xeb\xee\x2b\x3b\xe4\x08\x1a\xfc\x2d\x00\x31\x24\xde\x70\x7a\x37\x1a\x20\x41\x47\x47\x03\x76\x3d\x5a\x8d\x06\xc2\x25\xb6\xa4\x24\x0d\x25\x59\xf6\x56\xc8\x1f\x13\x40\x1e\xc1\xe6\x2d\x57\xf5\x0d\x73\xd5\xb1\x30\x12\xa0\xf3\xe2\xa3\x26\xe4\x68\xb8\xc8\xdf\xb2\x94\x72\x8e\x26\x3d\xc1\x4b\x07\xba\x08\x35\xd6\x21\xd2\x7e\x4b\x6a\xc9\xbf\x23\x0b\x95\x6d\x91\x48\x62\xb3\x57\x24\xfa\x19\xbc\xcf\xe0\x53\xb7\x22\xb5\x64\x81\xcd\xac\xc8\x6b\x92\xaf\x71\x23\x26\x84\x99\x69\xed\x41\xa4\x8d\x29\xfc\x33\xa4\xba\xc2\x9f\x7a\x54\x12\x34\xab\xee\xc3\x6c\x51\x51\x20\x38\xfb\x0c\x41\x6e\x14\x9b\x5f\x6e\x3b\x98\x51\xb1\xe9\xd8\xa4\x8e\xd8\xdf\x66\x2c\xa9\x08\xdb\xa8\xfc\x2b\x82\xf0\x0a\x6c\x5c\xa6\x3f\xf7\xed\x86\xd4\x78\x7c\xa6\x4b\x49\x82\xaa\xb1\x15\x96\xce\xd2\xa8\x41\x3b\xc1\x9d\x20\x32\x0b\x02\x2a\xb3\xbf\xc2\x21\x28\xe6\x3b\xa2\xdb\xe5\x3f\xfa\x49\xa5\x69\x36\xf8\x3b\xd4\xb1\x20\x07\xd5\x48\xc3\x1f\x89\xf5\x82\x3a\x55\x4d\xa3\xb6\xc2\xd3\xa2\xb4\x9f\xb9\x56\xf8\x6c\x77\xc0\xe5\x72\x6e\xe1\x72\xc4\x0a\x79\x54\xa5\xef\x16\xb8\xc4\xa0\x02\x85\x86\xd8\x0b\xe6\x69\x47\x3c\xd3\xe8\xd9\x55\xfd\x56\x6a\xaf\xd3\x59\xb3\xe8\x84\x4c\x6d\xc2\x89\x16\x49\xc5\x68\x8d\xff\xe9\x6e\x78\x59\x5c\x1f\x91\x4f\xf3\x91\xf3\x58\xf2\xf2\x78\x6c\x99\x0c\xfe\x24\x51\x10\xfc\xaa\xc9\xf0\x29\x42\xf8\xe7\xaf\xd4\x7d\xdc\x76\xa3\xc3\x78\x60\xaf\x8a\xdf\x62\xfb\x89\x59\x12\x1a\xab\x46\x3e\xb5\xa4\x14\x3e\x47\x5c\xe1\x23\xe6\xe5\x24\xe8\xc1\x4f\xfe\x0a\x79\xb2\xac\xd8\x8b\xfd\xc9\xd2\x60\xa9\x44\x85\x9e\x10\x4f\xa1\x27\xe6\xcb\x0c\xfa\xe1\xd0\xad\x84\x4c\x54\x90\x78\xc0\x3b\x44\x9e\x56\x6c\xad\x9b\xdc\x02\xc2\x21\x93\x94\x92\x62\x7f\xc0\x37\x06\xdf\xfb\x01\xb3\xb7\x4b\x04\x52\xc8\xf1\xf4\x17\x49\xf5\x4a\x3d\x41\xc1\xde\xf3\x8c\x36\xb4\x36\x20\x2c\xfd\x6e\x1a\xf6\xcd\x04\x25\x8b\xc7\xc1\x79\xcc\xf2\xd4\x82\xe2\x1c\x96\xf4\x03\xbe\x61\x59\x42\xf9\x00\x3e\x76\x9c\x3f\x11\x6f\x4f\x70\xc7\x3b\x70\xf9\x94\xcb\x28\x06\x43\xeb\x8f\x4d\x9f\xd9\x35\x8e\xa2\x8d\x7e\x7a\x64\x31\x4b\x55\x47\x47\xa6\x8e\x8e\x84\xd6\x7a\xcd\x1b\xea\x05\x93\x69\xd0\x0b\xe2\xa0\x87\xf3\x59\x91\xe2\x1f\xde\x3c\x3b\x2f\x96\xab\x22\xa7\x04\x9c\xb5\x31\xf9\x79\x1a\x8d\xd9\x24\xc2\xd0\x65\x75\x61\xb4\x49\xf3\x7a\xf1\xae\x26\x8c\xfa\x2b\xa8\xca\xa6\x9a\x94\xda\x43\xad\x03\x4d\x33\xc9\x7f\x9c\x05\x3d\x28\x04\xb7\x12\xdd\x20\x6a\xe0\x31\x08\xef\xf2\xff\xa2\x12\xf5\xa5\xd7\x92\x85\x2a\xb2\x1b\x44\x3a\xb3\xac\xb3\x91\x60\x5a\xa5\x83\xa6\xf6\x22\x9b\x7d\x96\x35\x21\x53\xd1\x56\x1c\x44\x88\xae\x6a\x8a\x9d\xc1\xd3\xa2\xcc\x34\xee\x03\xbe\x79\x0e\xc3\xfc\x80\x6f\xa4\xf9\x1d\xac\x1f\x9c\xbf\xe0\x04\x39\xe6\xb3\xa2\x26\x65\xc8\xbc\xa1\xd7\x38\x0e\x28\xdf\x12\xc0\x8c\x93\x79\x28\x5b\x7c\x78\xda\xed\xd2\x46\xc1\xfc\x49\x26\x1f\x9f\xc2\x95\xcb\x34\x88\x36\xa2\x23\xc6\xf9\x70\x04\x14\x11\xa2\x91\x5e\x83\xd1\x3b\x6d\x5e\x18\x42\x46\x1b\x3b\x25\x9e\x4c\x9b\x46\x20\x2e\x29\x27\xc3\xe9\x59\xdb\xe0\x87\xd3\x68\x14\x04\x8d\xc2\x56\xb7\x35\xc0\x0a\xfd\x51\x0d\xa7\x3f\x4f\xeb\xc2\x67\x94\x93\x07\xad\x4a\x83\xa4\xfc\xeb\x8d\x0d\xc0\x65\x5f\x93\xe1\x9c\x32\x01\x8a\x85\xdc\x43\x19\xe2\x18\x93\x94\xb5\x85\x25\x88\x54\x6f\xb3\xa4\x5a\x3c\x2e\x8b\xd5\x0a\xa7\x9c\x75\x62\x8f\xa9\x48\x18\xa1\xaf\xb1\x6a\x03\xc4\x29\xa1\xb7\x09\xce\x20\xd8\x90\xca\xe7\x2a\x23\x0a\x9c\x86\xaa\xdc\x85\x1c\xf4\xea\xaa\x70\x6f\xc8\x20\x15\x11\x56\xc7\xfc\x21\x17\x55\x74\xa0\x41\xcf\xa1\xe0\xe0\x43\x3c\x49\x6b\xf7\x18\x9b\x06\x36\x65\xbd\x70\x49\x3f\xeb\x86\x12\x7e\xfa\xa3\xe1\x73\x15\x6b\x90\x8c\x79\xd5\xe7\x38\x7f\x38\xa4\xa7\x81\x6a\x85\x27\x1f\x0f\xe5\xcd\x81\x07\x68\x55\x68\x6c\xcd\x31\xbb\x83\x81\x70\x81\x94\xae\x19\x7d\x8a\x83\x92\x2f\xaa\x57\xf1\xa1\x83\x42\x22\xc0\x71\x43\xd1\x21\x4c\xb5\xe0\xc4\x16\x6a\x31\x71\x4a\xec\xd4\x8c\x08\x05\x2c\xa3\x07\xea\xd8\x91\x8d\x68\xca\x51\xe0\x6a\x1a\x0e\xa9\xa5\x81\x13\xbf\xa4\xd9\x7e\x8d\x63\x99\x38\x19\x4c\xa5\xa6\xb7\xdb\x35\x25\x79\xee\xb6\xad\x4f\x98\x28\xc2\xb8\xd0\x7e\x55\xac\xcb\x99\x30\x8e\x3c\x7e\xc0\x96\x20\xec\xf7\xa2\x3b\xfa\x32\xf4\x28\xcb\x2b\x2c\xa4\xf7\xab\x16\x1a\xd3\x07\x7b\x22\x5e\x38\x0f\xa6\xb1\x25\x0f\x2a\x8d\xc5\x3b\x16\x91\x06\xa2\x41\x80\x2d\x70\x89\x52\x9c\xe1\x2b\x78\xa9\x1c\x50\x93\x83\x03\x42\x26\x2f\xc5\x8d\x96\x4b\x48\x14\x55\x62\xf1\xa3\x81\x86\x75\xc1\xb3\x76\x1e\x6d\x41\xe6\x65\xb0\x6c\xc4\x68\x92\xbd\x8e\xc7\x7f\x77\xbb\xe2\x57\xff\x9a\x64\xd9\xa3\x34\x7d\xc3\xb9\x40\x08\x57\xe4\xcd\x0d\x75\xb0\xfb\xbc\x67\xf1\xf0\x8a\x91\x97\xa4\xdc\xd2\x41\x0b\xd6\x03\xda\x76\x09\xa7\xf6\x61\x9c\x90\x0e\x1b\xfa\x53\xb1\x86\x40\x95\x8b\xe4\x23\xee\x24\xb9\x0a\x5f\xc9\x6d\x14\xb4\x2b\xbe\xaa\xc2\x69\xa7\x2e\x3a\xff\xb3\x2e\xfe\x67\xe0\xc2\xa4\xa2\xa0\xea\x80\xc9\xc9\x43\xc6\x74\x99\xf1\x38\x35\xbd\xdb\x0b\x68\xd0\x7c\xc7\x06\x04\x68\x7a\xce\xf2\x3b\x22\x08\x8b\x25\x13\xf8\xbc\xc2\x3f\x0d\x6f\xa2\x55\x9b\xc0\xa0\x13\x22\x9f\xde\xc1\x84\xe6\x4c\x85\x9c\xd6\x20\x31\x28\xab\xaa\x3d\x30\x85\x88\xca\xdc\xbf\x64\x12\x9d\x35\x18\x13\x7a\xde\x9b\x40\x50\x59\x57\x3a\x5e\xb3\xda\x2d\x38\xdf\x82\x6e\xfc\xf9\xd3\x27\x79\x8d\x4b\x9c\x46\x9b\x96\x0c\x81\xd8\xac\xd9\xa8\x91\x17\xd9\xfc\x5b\x5b\x0e\x13\x16\x66\x88\x43\xf2\xab\xd7\xfe\x7d\x68\x7b\xde\x83\x2e\x03\x57\x35\x4e\xcf\x8d\x2d\x34\x5f\x67\x19\xc4\xd1\xd1\x1a\x64\x87\x03\x58\xc4\x9b\x35\xcc\xef\xd0\x04\x49\x34\xe5\x82\x63\xbe\xb1\xc5\x82\xb7\x02\x15\x71\x3a\x75\xeb\x36\x8d\xa1\x6c\x83\x0d\xca\x90\x84\xb1\x21\xc8\x44\x21\xe1\x20\x31\xf0\x29\x86\x40\x4d\x6b\x93\xfe\x0c\xe7\x3d\x2d\x9f\x1e\x00\xda\xd1\xd4\x38\x47\x5c\x86\x73\x11\x9b\x9c\x0a\x9d\x3c\x54\x8f\x06\x85\x90\xe2\x9b\xb1\xd6\xab\x92\x8e\x35\xfd\x3e\x4e\x66\x0b\x18\xd0\x65\x52\x61\xf6\x4b\x4e\x80\xc4\x69\xe3\xd9\x47\xbe\xfd\xc4\x5e\x87\x4f\x39\x56\x0a\x05\xa5\x16\x90\xac\xae\xfc\x1d\x29\x48\x3e\xf4\xc6\x5b\x04\xb6\x52\x02\x21\x23\x83\xb7\x4e\xb8\xbe\x4b\x23\xe5\xab\x52\x5a\x5b\x2a\xda\xa8\x21\x6a\x4d\xf8\x0b\xbb\x43\x06\xb4\x91\xe4\x93\x19\x21\xf1\x3c\xa4\x9a\x63\x6f\x94\xb4\xea\x2f\xfb\xcb\x64\xe5\xc6\xac\x41\x62\x64\xe6\x6e\xf0\x50\x0c\x65\x22\x64\x62\x7b\x10\xc8\xa5\x32\xc9\x69\x34\x56\x63\x9e\x4c\x65\x21\x53\x83\x0a\x97\x65\x0e\x0c\x76\x0a\x58\x3a\x72\xb4\x51\x61\x44\xe9\xb1\xc3\x13\xc5\xd3\xa8\xb6\x9d\x5a\x79\xc2\xb1\xf0\x98\xe4\xf3\x22\x40\x93\xa0\x7f\xb2\xae\x49\x56\x05\x28\x28\xab\x8f\xab\x93\x55\x59\x2c\x49\xc5\xc2\x9e\xf8\x6c\xd8\xf6\x45\x28\xd9\x65\xe3\x46\x97\x28\xb6\x9a\xe8\xd3\x44\xa0\xac\xb8\xbc\xc2\x4e\x36\x4b\xe5\xba\xd8\x92\x24\x19\xf9\xbb\x5b\x46\xe6\x80\x31\x2f\x0c\xe0\x79\x72\x89\x33\xa7\xa8\x9e\xc9\x4a\xbf\x86\x84\xd8\x1a\x89\xc6\xf2\x28\x4a\xcb\xb9\xa6\x67\xf9\xbc\x08\x2f\x56\x65\xb1\x12\x0a\x08\xfa\x33\x86\x14\x16\xe4\x99\x01\xad\x9e\xc6\xac\xa4\xfd\x2b\xa9\x01\xd0\x10\x92\x1b\xad\x45\xfd\x2c\xcc\xe5\xdb\x02\x82\x74\xb0\x8f\x95\xba\x2b\x42\xfc\xb4\xe0\x6f\x85\x41\x2c\x64\xf8\x50\xbd\x98\x36\x44\x59\x61\x28\x52\x6e\xb2\x22\x49\xd1\x12\x62\x94\x70\xc5\x08\x4b\xeb\x67\xc5\x15\x65\x1d\xe5\x47\x28\xf5\x67\xbd\x60\xd4\x09\x7a\xa2\x4e\xd3\x20\x7d\x3a\x55\xe3\x19\xfd\x54\xa6\x51\x5a\x99\x30\x10\xae\xef\xd0\xdc\xdd\x4e\xd0\x83\xd2\x0d\xba\xc2\xf5\x0f\x79\x89\xab\x22\xfb\x88\xdb\x1e\x79\x6b\x90\x5c\xeb\x36\xe3\xb9\x95\xba\xe1\x43\xbc\x35\x2d\x86\xe9\xa2\x58\x67\xe9\x39\x57\xb8\x20\x3e\x48\x61\x3d\x82\x67\x1f\x9e\x16\xe5\xa3\xcb\xa2\x84\x17\x74\x43\x15\xc7\xd8\xc8\x44\x66\x33\x11\x7f\x92\xe4\x45\x91\xe2\xcc\xae\x58\xae\xf3\xef\x55\xee\x9f\x8a\xe2\x83\xec\x15\x2d\x7d\x15\xae\x70\xcd\x8a\xaa\x62\xcc\x30\xb6\xad\xf1\x47\x32\xd3\x6c\xfb\x12\xcf\x8a\x25\x7e\xc3\xa7\xd3\xae\x68\xe6\xca\x5a\xe2\x22\x89\x6f\x8a\x3e\x9f\xbf\x50\xda\x29\x40\x6d\x73\x45\x99\x20\x2a\x34\xfb\x41\x14\xf5\xeb\x05\xce\x43\x73\xc2\x18\x62\x7a\xea\xb2\x38\x9a\x9d\x79\x51\x76\x12\x5a\x4e\xd6\xd6\x26\xb4\xb5\x2e\x4c\x6b\x87\x4d\xe2\x67\x75\x4b\xe6\xd0\x2b\x4e\x3b\xe9\x9a\x8a\xc7\x9d\xbb\x5a\xbf\x77\x3b\x8b\xa2\xf8\x20\x1b\x5e\xee\x84\xe5\xc5\x97\x00\x82\xe4\x9d\xbb\x4b\x4f\xd7\x6a\xfd\x5b\xdb\x62\x58\xf0\x65\xa6\x82\x42\xa1\x7a\xb4\x40\xb1\xf0\xa6\x7d\x69\x68\xb1\x8e\xd8\xcc\x41\x14\x35\xc8\xdd\x08\x0e\x35\x32\xa8\x90\x7c\xca\xcc\x4a\x08\xeb\x72\x8d\x11\x8b\x9a\xca\xe1\x80\xc9\x17\x48\x0c\xf0\xc8\xeb\x22\x9d\x34\x94\xeb\xfc\xed\x22\x29\x71\x2a\x41\x90\x74\x30\xd0\x56\x3e\x40\x93\x29\x00\x6c\x6e\x2e\x97\x7a\x8a\x01\xb2\x22\xdc\xfa\x42\x3e\xf6\xc0\xee\x25\x85\x71\x7c\xb5\x78\xa3\x97\x6d\x69\x61\x7c\x28\xb4\x6a\x81\x02\x34\x31\xda\x98\xf2\x95\x72\xa9\xa3\x98\x47\xa3\xb8\xbc\x4c\x69\x5b\xca\x67\x57\x39\xdd\x65\xf3\x75\x36\x27\x59\xc6\xc4\x4e\xa6\x99\xeb\x24\x79\xca\x4d\x8f\x00\xef\x20\x59\x2c\xb5\x05\xb9\x3b\x75\x14\xad\xe0\x9d\xe9\xf2\x4a\x5c\x88\xd1\xb3\x46\x0e\x91\xb2\x57\x74\x4f\x06\x3d\x51\xb4\x17\x70\x64\x94\x71\xd8\x8d\xbb\x08\xda\x10\xb0\xd3\x4e\x5e\xa3\xf2\x24\xa9\xd3\xaf\x23\x75\x94\xd1\x0d\x1f\x78\xd2\x44\x40\x30\xed\x76\x9d\x24\xfe\x4e\x9c\xb8\xc2\x64\xc3\x61\x8f\x10\xb1\x26\xba\x5d\x7e\x0b\x46\xaa\x77\x32\xda\xb3\xb8\x1a\x83\xa0\xc8\x2d\x34\x17\x8a\xb4\xae\x0b\x47\x27\xbe\x18\xc2\x06\xac\x33\x2f\x8b\x65\xa7\xc8\x71\xa7\x98\x33\xdd\x00\x2c\x0d\x05\xb6\x62\x4b\x23\x4e\x17\xce\x44\xe8\x24\xa2\xfd\x94\x84\x8e\xe1\x1d\xf0\x4d\x0b\xb8\x66\x9d\x30\xba\x0d\xb5\xf7\xe0\xaa\xd6\xe5\x67\xe2\xa6\xb8\x55\x61\xc3\x76\x77\xe0\xde\xcd\xec\xdf\x2e\xb1\x3f\x99\x71\x7d\x2d\x1b\x4c\xd9\x84\xc7\x46\x4e\x63\x9d\xd1\xed\x10\xf1\x70\x1b\x32\xfc\xa8\xd4\xf5\x4a\x66\x28\xb4\x8b\x8e\x15\x25\x95\x7e\x16\x7b\x89\x90\xac\x2c\x46\xc2\xfb\x32\x3f\x8d\xb1\x3a\x76\xef\xfc\xa6\xcb\xa0\xbb\x9c\x3d\x0d\x03\x79\x20\xa0\x8d\xe0\x5f\xad\xbe\x99\x09\xc0\x48\x36\x27\xf9\x5f\x7d\x87\x9a\xb6\x39\x0d\x5d\x5e\x86\x7c\x6f\xd7\x2b\x5c\xce\x70\xaa\xf1\x7b\x45\xbd\x90\xd1\xcb\xe1\xa7\x1e\x55\x9f\x71\x7d\xd0\x6f\xc5\x84\xb7\x98\x15\x12\x9a\x18\xfd\x65\x17\xfc\xa9\x16\xc4\x19\xca\xf0\x60\x9f\x12\xd2\xed\x96\x83\x68\xc8\xd3\x01\xaf\x1b\x44\xdd\xee\x91\xd1\x55\x4b\x79\x18\x13\x2b\x0e\x3f\x41\xa8\xd4\x38\x5b\x04\xfd\x8b\xdb\x5c\xd3\xc2\x5f\x56\x10\xe6\x9c\x47\xc9\xdf\x8e\x2e\x23\x33\x32\x1e\x4b\x36\x67\x42\xde\x96\xd2\xe3\x3f\xe1\x16\x9b\xf6\x0d\x69\xd4\xed\x26\x93\x0f\xd3\xa3\x38\xbe\x9c\x7c\x98\x5a\x8d\x36\x7a\x73\x2d\xba\x63\x4d\xda\xd9\x2d\x96\x9e\x70\x8c\xa1\xe2\xa9\x2f\x5b\x20\xcd\xb1\x29\xcb\x7a\xcb\xae\x73\x6f\xe9\xe3\xcb\x9b\x63\x1e\x75\xfe\xd6\xf5\xd8\x44\x7f\xae\x80\x6c\x87\xf0\xdc\x25\x30\x8b\xed\xaa\x4d\x9c\x2d\xd1\xea\x82\x2a\xad\xa2\x44\x28\xad\xd2\xf7\x37\x60\x81\xb9\x4b\xca\xdd\x51\x99\x9d\xa2\xb1\x05\xba\x5e\x77\xa1\x4a\xf3\x67\x79\xfa\x1f\xe0\x5d\xbf\x78\x23\x25\x3a\xcf\x60\x60\x27\x8f\x76\x75\x8b\x60\x91\xda\xca\xc0\xb8\xb4\x4d\xe0\x82\xc2\xad\x42\x94\xb8\x7e\x5e\x17\xd2\xfc\xd0\x03\x32\xb7\x11\xd1\x0a\x30\xb5\x0f\xad\x15\x4a\x11\x3f\xd2\xc7\x2c\x08\x9c\xa7\x51\x41\x34\xb4\x9c\xb6\xdd\xe1\x56\xde\xb3\x49\x5a\x76\xc1\x24\xe8\xf7\x4f\xfc\x1b\xe3\x4b\x2a\x7a\x6e\x83\xc7\xb7\xc0\xdf\x6a\x7d\xc9\xe2\xa5\xda\xa8\xda\x17\x19\xbb\x75\x3c\xa7\x87\xea\x78\xee\xb9\x5d\xfb\x76\x9b\xe8\x35\xd4\xb1\x76\x73\xb0\x5e\x41\x9d\xc2\xdd\xae\x9f\x3d\x68\x63\x34\xf4\x23\x55\x3f\x85\xda\xd8\x45\x25\xdb\x7b\xf9\x44\xc1\xfc\xed\xd5\xb0\xa8\xc3\x9a\x53\xb9\xcd\x2d\x4e\x64\xed\x98\xa2\xc7\x32\xa9\x24\x6f\x03\x7e\x76\xad\x97\x8a\xee\xcc\xef\xc1\xfd\x03\xa8\xfa\xbf\xf6\x3e\x70\xb5\xa1\xa7\xa6\x36\xf4\x37\xd8\x27\xa4\x72\x29\x3d\x2d\xc8\xd3\x6f\xb3\x97\x76\x1f\x43\xfe\x5d\x25\x65\x13\x57\x2f\xe0\x88\x87\x86\x4a\x12\xba\xa2\xc2\xe2\xaa\x2c\x3e\x92\x14\xa7\x42\x15\xd2\xa6\xd0\xd2\x77\x14\x45\x54\x8f\xca\x94\x1f\x18\x9a\x39\x34\x4b\x81\xdf\xdb\xed\x84\x3f\x56\x24\x78\x45\xc8\x14\x9b\xd4\xa7\xa6\xbc\x58\x2a\x2d\x01\x68\xfe\x20\x85\x73\x82\x33\x8d\x01\xae\x34\x93\x45\xd4\x2a\xa4\x02\xa2\xc7\x9b\x06\x6c\xc5\xd8\x1a\x81\x9e\x2a\x8a\x36\x90\xc9\x0d\xe2\x07\xd3\x69\xcc\x32\x24\x0f\x0b\xc7\x26\x99\x0b\xb9\x55\x89\x12\x92\x1a\x38\x39\x42\x07\xc6\xde\xe7\x6d\xb8\x7d\xab\x30\x99\x38\x62\x96\x4c\xda\xf3\x3d\xd2\x6f\x57\x98\x37\x9c\x5c\x90\xf4\xce\x49\xbf\xc6\x55\x2d\xc2\xc4\x6b\x40\x72\x00\xfb\x24\x85\xfb\x0c\x37\xab\x31\x61\x6f\xa7\x26\xbb\x59\x85\xcf\xa6\x2b\x9c\x1e\x1e\x40\x56\xbe\xf8\xc5\xc9\x3f\x39\xdd\xd8\xc9\x36\xfa\xf7\xfa\xbe\x1d\x27\x24\x4f\xb6\xab\x74\x95\xfe\x0e\x22\xa1\xae\xad\x0d\x6b\xa8\x64\x59\x8d\x7d\xe7\xb0\xa1\x3c\xd2\xea\xc9\xfb\x1b\x95\x86\xb4\xb6\xa2\xb1\x4a\x37\xfc\x8b\x3c\xed\x82\xcd\x3b\xd7\x14\xc9\x87\xb2\xb4\x7d\xdc\x4f\xb1\xba\xd6\x8a\x63\xf5\xae\xd6\x59\xa0\xe5\x04\xa3\x00\xe8\xd9\xa1\xfa\x41\xa9\x5c\x9b\x28\x58\xa7\xd1\xed\xb7\x0c\xab\xe9\xee\x18\xf8\x47\x0a\x67\x46\xe8\x0b\xfb\x4c\x55\xb7\x8b\xfd\x13\xf5\xde\x19\x44\xd8\xb7\x12\xed\x32\x84\x45\xb2\x3d\x61\x46\xd7\xc7\x4e\x7a\x4b\xe9\x75\x99\xb5\x94\xb5\xf6\xec\x17\x39\xec\x7f\xd5\xfb\x0b\xc6\xf7\xb7\xfb\x85\x41\xcb\x99\x67\x0f\x21\x38\xe0\x62\x93\x16\xe3\x5a\x75\xfb\x3c\x17\xda\x76\x56\x26\x2b\xae\x9c\xfc\xac\x80\x50\x48\xcc\x22\xc0\xc9\x65\xa9\x10\x2f\x0f\x1e\xc2\x73\x4a\xf0\xf4\x16\x9a\x75\xef\x80\x9b\xdf\x7b\xce\xcd\x2f\xfe\x54\x97\xc9\xac\xfe\x8b\xb6\x29\xed\x0a\x6e\x11\x56\xf3\x0a\xd7\xf0\x4e\x6a\x46\xaa\xda\xa9\x64\xe4\xee\xa6\x8f\xf7\x7c\xf4\x51\x69\x7e\xc1\x53\xc5\xc2\x1b\x7b\x49\xb2\xe2\x0a\xee\x20\x2d\x7c\xea\x8b\x0c\xab\x51\xa7\x9c\xca\xb2\x4a\x3e\x82\x3b\x9e\x1d\x15\x78\x09\x56\x8f\x52\x90\x54\x65\x3d\x63\x5b\x29\xb6\x90\xda\x61\xfc\xde\x3c\xdf\x59\xe5\xf7\x87\xc9\x5d\xd6\xd6\xe8\x7b\xca\xc0\x42\x14\xab\xd8\xf1\xb2\x2c\x56\x9a\x93\x28\xa3\x55\xd2\xe1\x4d\x6d\x1f\xe6\xce\x63\x19\x33\xf2\x32\x15\xae\xc3\x08\x2c\x47\x0c\x13\xb5\x65\xb2\xf2\x05\x19\xb1\x5a\xee\xb7\x58\x1f\xda\xc5\x96\xc9\x4a\x99\x9d\x28\x2b\x10\x59\x00\x09\x6b\x1d\x65\xb1\x64\xb8\xb1\x1d\x0f\xd1\xaa\x2c\x66\x98\x5b\xd0\xb2\xf7\xb5\xbb\x5d\x9e\x34\x3e\x3e\x26\x5e\xff\xb6\xb1\x06\x81\x34\x17\xa9\xd0\x26\xa9\x4c\x5f\xac\x26\x1a\x8b\xd6\x95\xd7\x1b\x98\xf7\x6e\xb7\x66\x8a\x4c\x90\x1c\x23\xd8\xa2\x7e\xc3\x6c\x51\xc1\x2e\x3a\x60\x6f\xa8\xba\x3e\x3e\xdc\xe8\xc5\x38\xd7\x14\x80\xa2\xbc\x30\x6a\xd1\x5e\x26\xfd\xfe\x06\x90\x4b\x35\x05\xa4\x1e\x91\x8a\x66\x94\x4b\x9c\x12\x69\xf0\x77\x9d\x68\xb7\x2f\x24\xbf\x8a\xb9\x3b\x51\x32\xab\xc9\x47\x6c\x6d\x97\x22\x4b\x61\x9b\xda\xb5\xce\xbc\x75\x98\xa3\x36\x17\x90\xc1\x63\x13\x9c\xb0\xaf\xad\x66\xe1\xd0\x84\xd7\xbe\xeb\xf2\x86\xbb\x6a\x5f\x43\x57\x00\x3b\x5c\x25\xbd\x2b\x20\x82\x83\x80\x03\x59\xb3\x22\xcd\x04\xf8\x5e\xb0\x47\x3c\x56\x5c\x3d\xdd\x26\x10\x7b\x22\x14\x5d\xf5\xf5\x2c\x24\xfa\x30\x52\x23\xcd\x54\x9d\xd1\x48\x8d\x34\x1a\xa4\x50\x82\x68\xf8\xf7\xc8\x9e\x0c\x0f\x61\x61\x10\x6f\x35\x28\x1e\x48\x86\xe7\xbc\xd2\xbf\x78\xfd\xb5\x55\xf1\x3e\x2f\x37\x36\x14\xd6\xde\x92\xfc\xe5\x7b\xa6\x83\xd9\x55\xc0\x55\x73\xb7\xc3\x34\xf9\x30\x85\x3b\xbb\x46\x5e\x46\x2f\x88\x36\x62\x63\x6e\xd9\x3d\xf5\x24\xd0\x66\x41\xbe\xc6\x1d\xa0\x5d\x83\xf3\x67\x26\x59\xe6\xcf\xe0\xe3\x98\x8a\x87\xab\x3d\x53\x49\x61\x66\x66\xf1\x36\x4a\x77\xbb\x5e\x9c\x36\x37\xa4\x9d\x0b\x02\x9a\x81\xe1\x8c\x9a\xaa\x4f\x78\x36\x77\xec\x43\x8f\x78\x4e\x72\x76\x62\xff\xc5\x1a\xcb\xae\xa9\xf4\xa1\x14\x32\x00\x88\xc6\xc6\xa7\x38\x83\x63\x6f\xaa\x75\xeb\x08\x37\xad\xd1\x66\xbd\x4a\x93\x1a\xff\xf0\xe6\x79\x68\xd4\x42\x6a\x23\x96\xfc\xa5\x37\xd8\xcb\xfd\x94\xa4\xc6\x9c\x79\x52\x45\x51\xee\x26\xfa\x27\x7d\x9b\xd9\x1e\x90\x60\xe3\x65\x68\xef\x54\x43\x9d\x59\xb1\x5c\x65\xb8\xc6\x41\x14\x69\x01\x11\xb4\x55\x69\x74\x33\x5a\x6b\x29\xc0\x3f\xc7\x24\x8c\x15\xae\xd7\x2b\x7e\xed\x56\x99\xb3\x2f\x7a\x68\xf6\x2e\x32\xe2\x54\x57\xd5\x14\x77\xf3\x2e\x4e\xf9\xc9\x27\xbb\x0a\x0e\xa3\xaf\x1a\x6f\xb6\xb9\x80\x5f\x60\x91\x95\x13\x04\xc3\x42\x6d\x38\xe6\xa2\xf3\x6b\x7b\x1e\xf6\xc6\xb7\x36\x6f\x71\x5d\x67\xb8\xa3\x8e\x24\xc1\x15\x76\xae\x17\x38\xd7\xd3\x49\x25\xfb\x4b\x03\xee\xa0\x62\xef\xc4\x68\x03\xcf\x20\x3e\xf9\x44\xd8\x23\x6a\x1c\x53\xac\x85\xb1\x90\xbe\xf1\x22\xc2\x8c\xdd\x00\xaa\x53\x75\xd7\xb2\xd1\x61\x61\x08\x6a\x57\xe9\x01\x9a\x54\x6c\x45\x98\x81\x0d\xe7\xd7\xb5\x34\x73\x8b\xaa\x58\x9d\x2a\xd5\x1b\xf0\x81\x5d\x98\x08\x35\x96\xa6\x80\x82\xe7\xbc\xf5\x2f\x78\x78\x5d\x75\x68\xe1\x9f\x16\xae\xc0\xb3\xbb\x80\x4e\x23\x1b\x9f\x74\xab\xca\x1f\xde\x3c\x57\x03\x5e\x97\x32\xb0\xfc\x55\x15\x33\x0e\x06\xec\x8a\x85\xb7\x05\x9c\x61\xeb\x32\x73\x7d\xa7\x68\x95\xc9\x60\xca\xdc\xa7\xd6\xa5\x54\x54\xa5\x85\x3d\xeb\xcc\x38\xa4\xbf\xc4\xf5\xa2\x48\xd9\xbb\xeb\x51\x83\x24\xd5\x19\xf9\x9f\xc3\x03\x27\x10\x59\x4a\xc6\xa7\xa4\xd4\x60\xc9\xde\xfa\x0c\xd4\xa3\xc5\xee\x90\xd8\xfc\x28\xca\x46\xd3\xda\x1e\x78\xd7\xfd\xad\xfd\xc0\xf3\x89\x68\x18\xfa\x08\x4a\xf2\x6e\x47\x63\x3b\x5a\xe1\x21\x5a\x51\x89\xe7\x25\xae\xf4\x57\x7e\xc9\xc7\x42\x2c\xa5\x1e\x9a\xc6\x4b\x1f\x6e\xc3\x93\xe9\xf8\x1a\xbb\x28\x3c\xd6\xac\x2b\x4c\x77\x51\xe6\xee\xab\x17\x35\xdd\x7e\x7b\x3d\x62\x60\x3a\x13\x60\xf4\xe2\x94\xed\xe6\x86\x12\xfa\x26\x00\xdd\xa6\x9e\xa2\x29\xba\x84\xdd\x2d\x02\xfb\x4a\x92\x5f\x75\x92\x0e\x9f\x2b\x8d\xb6\x04\x22\xc8\x30\x13\xb4\x28\xc2\x78\xa5\xb6\x10\x6e\x71\x0c\xa0\x3c\x03\x3a\x1e\x4e\xe1\x92\x47\x5f\x83\x91\xfe\xb1\xdd\x1a\x6d\x0c\xa4\x53\x9c\x30\x48\xae\x46\x93\xa9\x11\xd9\xa6\x8d\x29\xd9\x6e\x2b\xfb\x48\x67\x03\x37\x8d\xe0\x5c\x86\x5f\xf0\xf9\xf0\xf6\x90\xc4\xfc\x1f\x89\xfe\x52\xf4\xc1\xa8\x2c\x36\x63\xc0\x9b\xf1\x87\xe7\xe4\x63\x54\xaf\x4c\xae\xe8\x92\xd0\x2c\x9c\x3e\xa2\xf4\xc2\x55\x2b\x84\x3e\x12\x82\x86\x11\x3c\x4a\x98\x11\x9c\x4a\xb5\xa1\xd1\xd4\x64\x60\x4c\x9f\x93\x3d\x9c\x7e\xc6\x82\x33\x5d\xa0\x5c\x20\x13\x80\x46\x77\x49\xf4\xc9\x21\x6a\x17\xed\x93\x44\xa2\x3d\x5b\xc8\xdd\x73\x07\x6c\x24\xb7\x92\xf0\xac\xe7\x69\x7c\xa2\xf4\x7d\xa4\xae\x2c\x22\xae\xcb\x35\x03\x07\x08\xb3\x40\x37\x3a\x81\x1e\x25\x6a\xdc\x22\x95\xca\x88\x0a\xfa\xec\x0a\x7b\x1c\x44\xaa\x47\x8c\x1a\xfd\x46\xd8\x23\x56\xf1\xf6\x78\xc3\xcf\xc2\xbf\xd8\x0e\xc3\xce\x36\x04\xbd\x20\x73\xc4\x32\x4e\xd4\xd6\xa3\x9f\xbd\xd9\x03\x4e\xee\x70\x65\x05\x57\x34\xba\x09\x85\xf8\xfd\xea\xf2\x67\x44\x10\x0b\x96\x30\x0f\x8f\xdc\x4e\xa4\xc7\xae\x61\x5c\xe4\x00\x14\xbb\x35\x27\xad\x8d\x09\xaa\xc6\x2d\x3b\x67\x85\x64\xae\x62\x57\xe1\x00\x19\xec\x81\x35\xbd\x3d\x41\x66\x53\xfc\x89\xfb\x90\x51\x84\x36\x1a\x93\xb8\x4c\x0b\x09\x7c\xa6\xbf\x25\x57\xc3\xf0\xd9\x03\x39\x2b\x35\xb5\xe4\xf6\x3e\x7f\xd0\xd9\xc0\x1e\xee\xc7\x4c\xb9\x79\x06\x4a\xec\x05\xc1\x33\x7b\xed\x0c\x94\xbb\xa0\x1e\x10\x65\x30\x01\xd6\x6d\x6f\x18\x8d\xcd\x79\x34\xa1\x70\x0a\xdf\x82\x62\x19\x7d\x2b\x9a\x25\x7e\x34\xe2\x1d\x06\xaf\xe2\x44\x32\xcd\x15\x8f\x31\xa5\x41\xe5\xa8\x4d\xcc\x9e\x98\xb4\x0e\x02\x1e\xe3\x02\x61\xaf\xbc\xae\x5e\xe5\x2f\xf1\xb5\xc0\x3a\x79\x35\xe4\xcd\x46\xde\x90\x68\x3c\x00\x89\xb3\xf9\xc0\xc8\xce\x4e\xf5\x85\x25\xe9\x76\xbd\xdd\xf9\x23\x98\x78\x8b\x42\x90\x05\xa7\x33\x96\x2c\xe5\xc6\x43\x75\x46\x2e\xc2\x44\xdd\xee\x91\xa9\x18\xda\x3f\x3f\x94\x09\x65\x2a\x14\x5f\x0c\xa3\x1d\x3c\xb8\xa1\x78\x69\x63\xfe\x81\x39\x00\x76\x1b\x1c\x9f\x18\xdb\x7f\x71\x4d\xb2\x0c\xa0\xe4\x72\x2f\x7b\x2d\x7f\x14\x38\xe9\x01\xba\xe0\x1d\xfd\x68\x67\x39\x74\x5d\xaa\x28\x0c\x59\x57\x07\xd3\xa3\x16\x02\xae\xc8\x0f\x8f\xd9\xd6\x34\x6a\x0c\x60\x9e\xe3\xc4\x73\xb8\x78\x80\x40\x19\x4e\x3e\x92\xfc\x8a\x59\x5d\x33\x37\xea\x3d\x30\xb1\x69\x60\xcd\x07\x3b\x5b\x9a\x1a\x56\xa7\xa6\x1a\x01\xd4\x1d\x4a\x5e\xad\xb5\x39\x31\x8e\x3e\x75\x40\xc9\x4d\xcb\x55\x25\x95\x10\x74\xb9\x42\x41\x48\x9e\xb2\x02\x13\x0e\x71\xfa\x99\x22\x27\x3c\x93\x29\xad\x1b\x84\x71\xef\x7e\x49\xd4\x54\x0e\x73\x60\xed\x6f\x90\x36\xf4\x8f\x58\x8c\x04\x22\x30\x7a\x24\xd5\x76\x15\x91\x9a\xa4\xfe\x3a\xe7\x2c\xb4\xf4\xc1\xad\xcb\x9b\x8d\x3b\x37\x20\xea\x49\x73\x6a\xff\x1c\x99\x3b\x9e\x7b\x9c\xbf\x2a\x7f\x80\xba\xa1\x6f\x47\xe9\x67\x39\xec\x2e\x6d\x69\x1b\xef\x2a\x41\xb3\xbf\x0d\x08\x9c\x5c\x6b\x10\x68\x6a\x0f\x7d\xf6\xc5\x02\x8d\x77\xcc\xb2\x57\x0b\x3e\x06\x19\x1c\x37\x7a\x73\x87\x69\x32\xf9\x26\xf0\x8d\xc1\xab\xc9\xd4\xc7\x61\x1b\xb2\xde\x7a\x66\xd8\xb4\x3b\xfb\x6e\xc7\x8e\x10\x87\xac\x91\xa7\x6d\x0b\xd6\xa0\x74\x7c\x81\x65\xd5\xb6\x07\xfd\x0c\xf5\x11\x90\xb9\xf6\xd9\xed\xaa\xdf\x7d\x52\xf1\xeb\x45\x5d\xc1\xe1\xdc\x3d\x36\xd6\xd6\x8c\x3d\x5b\x94\x27\x49\x85\xba\x82\xc7\xce\x09\x23\xd3\xca\xa9\x5e\xaf\x54\x61\xf6\x19\x0a\xcb\xab\x2f\x3a\x08\xcf\x32\x19\x81\x0c\xd9\x2e\x18\x1b\x36\xf8\x9a\x1d\xbf\x45\x19\xa5\x06\x5a\x52\xc5\x0d\x27\x46\x92\x03\xf3\xe3\x30\xe7\x95\x64\x29\xef\x89\xae\x0b\x53\x55\xbc\x31\x29\x08\x15\xe7\x81\xde\xb2\x5f\x80\x8d\xf4\xa7\x24\x48\xa3\x09\x7f\x78\x94\x37\x71\xce\x6f\x31\xf8\xb4\x9e\x3b\x97\x1a\x95\x48\x22\x28\xd3\x22\xf0\x68\x70\x7a\xe3\xe4\xa9\xd1\xc6\xda\xc0\x59\xc8\x4e\xc5\xa1\x69\x8d\xf0\x38\x7a\x47\xaa\xf0\x76\xab\x7e\x8b\x19\x38\x8a\xb5\x3a\xd2\x6d\x70\x63\x8e\x05\x42\x14\x29\x3c\xe2\xc9\xb2\x58\x25\x88\x9d\x0c\xbd\x2f\xc5\x06\x32\x0f\x55\xa7\x7a\x05\x36\xa7\xfd\x75\x5e\x2d\xc8\xbc\xd6\xcb\xa8\x28\xe2\xe6\x0c\x1a\xd0\xf3\x2c\x13\x7a\x9e\xb8\xdd\xba\x73\x1d\x6d\xcc\xc6\xe0\xca\x58\x42\x63\xae\xb9\x33\x0a\xb8\xf1\x51\xa5\xe5\x59\xc4\x0a\x1a\xb0\xc3\x7a\xba\x6b\x89\x32\x7d\xd5\x9c\x05\xde\x3f\x2f\x46\xd0\x48\x51\x5c\x6d\x1a\xa5\xe2\x54\x7b\x15\x58\x55\x44\xf2\xd5\xba\xfe\x41\xe8\x77\xd7\x65\xf6\x82\xe9\x7c\x62\x6d\x53\xcb\x44\x86\x31\xf2\xcb\x30\x68\x14\x17\xb8\xaa\x16\xa7\xf3\x7b\xf4\x8a\x48\x93\xe0\xe2\xc3\x35\x70\x1e\x2d\x8a\xb7\x3c\xbb\xf7\x57\xd7\xfd\xbb\x74\x90\x3e\x55\x88\xa6\x77\xb4\x6f\x8e\xe5\x7d\x3e\xc9\x93\xd9\x0c\x57\x15\xb9\xcc\xf0\xf7\x37\x3f\xbc\x79\x1e\x6d\xd4\x2c\xc2\x7d\x28\xa8\xc6\xc5\xac\x79\xf4\x2a\xda\xb4\x5d\x7c\x24\xac\xa9\xdd\xca\xc0\x31\x5f\x2c\xc1\x1e\x1d\xa8\x80\x19\xeb\x90\xc4\x71\xac\x14\x7b\x1b\xd9\x90\x50\x95\x83\x36\x1c\x42\xd0\x40\x9e\xa5\x28\xd7\x42\xcc\x78\x2e\x8c\x34\x44\x53\x74\x99\x72\x65\x4c\x77\xeb\xa0\x89\x96\x52\xe1\x5f\xd6\x38\x9f\x61\x24\xcc\xf3\xd3\x4e\x92\x65\x60\x15\xcc\x5e\xa5\x4a\x71\x55\x93\x9c\xbd\x52\x05\x78\x37\x16\x00\x90\xfc\x4a\x53\xff\xf6\x83\x68\x7c\x38\x6e\xb6\xc8\x73\xf8\x97\xd8\x03\xdb\xf8\x60\xc6\x7e\x6c\x1c\x96\xfa\x01\x69\xb0\x4e\x8b\xc3\x78\x5e\xd7\x64\xfb\x67\x3c\xab\x43\x61\xfb\xa4\xb3\x1a\x51\xe3\xdd\xf5\x1e\x18\xfb\x5c\x4f\x40\x57\x75\x6c\xc2\xca\x24\x55\x1e\xe7\x8f\x43\xe5\x5e\x42\xae\xb3\x4c\x4a\x9e\x7c\x26\xda\x47\x20\xc4\x29\xe3\x22\x38\x98\x7e\xc9\x9b\x63\x8a\x61\xbb\xd0\xea\xdd\x9b\x47\x2f\xdf\x3e\x7b\xf7\xec\xd5\xcb\xce\xf9\xab\x17\xaf\x9f\x3f\x79\xf7\xa4\xaf\xac\xe1\x0f\x21\x42\xc2\x0c\x48\x72\xd5\x94\x30\x86\x58\x0f\x47\xeb\x30\x3d\xdc\x70\x84\x80\x12\xc9\xba\x8d\xb1\x98\x6b\x95\x6b\xfa\xf5\xe3\xb2\x2c\xca\x00\xe9\x8b\x87\x08\xd7\x92\x79\x21\x34\xd6\x93\x5f\x26\x37\x82\x77\x57\xfb\xd7\xb8\x04\xe0\x53\x97\x94\x57\x95\xd7\x5e\x88\xa9\xde\xf8\xad\xde\x76\x1b\x9c\x80\x01\x66\x96\x54\xf5\xa3\xf2\x0a\x32\x98\x47\xb9\x04\x66\x6c\x1a\xcc\x54\xdc\x28\x9f\xd7\xe8\x76\xf9\x0f\xc7\xdd\x53\xab\x12\x44\x46\xe4\xcc\x78\x55\xac\xa4\xf2\xa3\x8a\x1c\xab\x62\x40\x68\xda\x89\x06\x09\x44\x90\xd3\x90\x23\x60\x52\x03\xa5\x19\xac\x7e\x47\xb8\x97\xba\xf7\x61\xad\x5b\x75\xfc\xa5\xef\x96\xda\x2e\x8a\xf4\x11\x46\x92\x07\xa2\x55\xdc\x97\xa9\xf4\x21\x3e\xaa\x6b\xbc\x5c\xb1\x41\xfe\xf0\xe6\xb9\x7e\xef\x5e\x17\x22\x56\xb3\x3e\x08\x8f\x85\x62\x48\xcf\x33\x16\x77\x9c\xf7\xdc\xd6\xc1\xde\xc6\x77\xcd\x10\x47\x28\xed\x22\xc6\xd0\x70\x55\x68\x18\xed\x98\x10\x61\x2c\x02\xeb\xd4\x7e\x2f\x66\xe1\xb3\x23\x50\x6a\xfa\x3d\xd3\x14\xac\x5e\xe0\xd2\xa0\x32\x1b\xcb\x90\x4c\x79\x7a\x38\x65\xfd\x8a\xe7\x5b\x5e\xa1\x5a\xdd\x4d\xc8\xd4\xd7\x15\x65\x03\x77\xb8\x1e\x3b\x07\x76\x9b\x74\x6e\x19\xbc\x33\xd1\xfc\x2f\x7e\xa1\x7c\x63\x58\x9b\x99\xe5\x18\xd8\x66\x92\xcf\x71\xda\x2c\x31\xf9\x30\x8d\x45\xf4\x67\xae\x8f\x72\x0a\x40\xb4\x52\x36\x0a\x2d\x03\x02\xb2\x4d\xa6\xce\x69\x64\x8f\x86\x9f\x41\x6d\xb3\x10\xd8\xc3\xf5\x76\xa4\x4d\xc2\xd4\x3a\xe6\x29\xa7\xb3\x8b\xa3\x8b\x37\xfe\x01\xf8\xee\x05\xbd\x7d\xb7\x5c\x0d\xfe\xb2\xf2\x17\xa7\xfc\xad\x9d\x31\xf9\x65\xd5\x67\x9a\xef\x5f\x56\x7d\x19\x7d\x59\x17\xeb\x69\x3a\x40\x7e\x14\x03\x0b\xb0\x6f\x58\x4e\x93\x4d\xa3\x5b\x14\x69\x25\x15\x26\xb6\x18\xf6\xd8\x1c\x95\xa5\x41\xb6\x05\xfc\x56\x02\x8d\x98\x30\x46\xf2\xab\x78\x32\x15\x9a\xda\x67\xec\x76\x88\x29\xbd\x79\x8a\xa5\xc3\x45\x04\xa9\xc6\x35\x01\x5a\xc8\xe3\x63\xf2\x9d\x4f\x5c\xa3\xa2\x5a\xab\x1c\x3e\x36\xe5\x70\x97\xd5\x14\x12\xb9\x2a\x67\xc8\xb4\x3c\xa4\x82\x26\xd0\xc2\x8d\x80\x31\x26\x32\x86\x3b\x30\xb3\x9d\xbe\x72\x35\x8d\x36\x62\x3e\x3c\xd2\x29\x3d\x93\xb5\xd6\x8e\xc4\x26\xe4\x89\x86\x88\x0a\x7a\x56\xbd\x38\x72\xa7\x24\x1a\x9b\xf3\x1a\x5b\xb7\x19\x02\xd5\x17\xf1\x60\xbc\xf8\x8e\x97\x15\xd3\xb9\xe0\x11\x86\x79\xf2\x64\x31\x15\x97\x7e\x86\xfd\x02\xa3\x6b\x8d\x41\xf2\x04\xa7\xea\x5c\x0c\x88\xb6\x76\x5f\x05\x34\xf0\xd8\x18\xcc\x12\x00\xf3\x70\x20\xd9\xd0\xd6\xab\x0f\x59\xc7\x36\x43\xb3\x88\x91\x36\x4d\xfa\xd5\x82\xc6\x0c\x3b\x57\x1c\xbb\xa2\x0d\x97\xae\x07\x92\xc7\xc3\x47\x0f\x64\x78\x90\x6f\xcf\x2e\x5f\x9b\x5d\xb1\x08\x55\xc4\x63\xfb\x98\xd7\x1d\xd8\x9c\x58\x7f\x3c\xbc\x71\x52\x27\xb1\xfc\xc5\x0c\x5e\xec\x66\x74\x8f\x03\xcd\x4d\x8e\x6d\x66\xdd\x30\x03\xde\x8c\x6a\xf3\xe8\xb2\x5b\x3d\x60\x0e\xdb\x3d\xad\x98\xcf\xa3\xd7\xab\xca\xef\xd4\xd5\x6f\x89\xe6\x41\x73\x7e\x95\x93\xe4\x3e\xff\xab\x5d\x6b\xba\xd3\x2d\xc5\xe3\x40\xb5\xcb\x6b\xc7\xe3\x48\xa5\x11\x3a\x1e\xbe\x61\x9f\x8f\xb4\xcf\xdd\xfa\xbe\xe5\x6e\xbd\xc7\xa5\xe9\x7e\xbb\x4b\x93\x8b\xc2\xf7\xf7\x3b\x82\xde\xd7\x1d\x41\x5b\x30\x4b\x3a\x74\xda\x13\x8a\xb4\xb8\x95\x86\x01\x99\x1e\xb0\x92\x87\xaf\xb4\xdf\x3e\x3b\xc8\x05\x5b\xf3\xc0\x86\xdd\xa4\xf7\x22\x7c\x45\xb5\x24\xc3\x43\xbb\x32\x5d\xb4\x35\x17\x6e\x43\xea\x62\x65\x8c\xc7\x06\x8c\x3d\xa7\x22\x0b\x09\x95\xbc\x66\x0e\xd5\xee\x93\x71\xa8\xd9\x8f\x16\xf5\x41\x3c\x1e\x65\x8c\x21\x8a\xd0\x6a\x5d\x62\x56\xfd\xf6\x06\x40\x52\xc7\xdf\x62\xf1\x22\x9a\x9e\x0c\xa6\x91\x66\x04\xc4\x88\xb0\xae\xbd\x94\xf2\x9d\x47\x1c\x37\x8c\xa6\x6c\xb3\x0c\x39\x69\xa2\x3e\x72\xec\x31\x64\x67\x8e\x20\x83\xac\xd6\x3c\x6b\x71\xfb\x66\x21\x04\x1a\x3d\xe0\xe7\xa0\x09\xe2\x2a\x0c\xd3\xca\xc4\x67\x37\xa3\x3c\xf0\x2b\x23\x40\x87\x34\x7f\x11\x66\x2f\xec\x15\xaa\xa4\xc6\xc0\xbf\x2c\x6c\x96\x8a\x9b\x59\x9b\x56\xaf\x8a\x0b\xb3\xcb\x0b\x49\x49\x8d\x30\x5c\x28\x16\x4c\x2a\x45\x44\xec\x2a\xb3\x59\x1b\x18\xc1\x4c\x01\xab\xae\x97\x7d\xca\x6c\xba\x8e\x9c\x36\x38\x7f\xe8\xac\xbf\xa5\x85\x36\xe3\xe7\x49\x8b\x3d\xb6\x89\xb9\x65\xbd\xc0\x17\xfd\x76\x52\x1b\x14\x48\xd6\x26\x13\xcc\x94\xda\xde\x8b\x2e\xd9\x81\xe4\x08\x21\x6e\x0f\xf7\x7b\xe1\x5d\xea\xf1\x0a\x28\xbf\x43\xe6\x21\x79\x18\x5b\x93\x12\x6d\xac\x46\x60\x71\xd9\x83\x90\x6c\x6b\xe9\x51\x80\xf5\x88\x28\x48\xef\x85\x9b\xc0\x55\xc8\x84\x3e\x92\xbe\x33\x4e\x0f\xa6\xc5\xd5\xd3\xa2\xf4\xbc\xf9\x7e\x9b\xae\x5c\xc4\x17\xcf\xf9\xfc\xa6\xe3\x63\x9c\xa5\xbd\xa5\xec\x65\x31\x3e\xad\x60\xb4\xcc\x2e\x1e\x59\x45\x44\xa8\x0e\x81\x10\x9c\x21\x8d\xcd\xde\xbb\x5d\xf3\x5b\xbf\xc5\xf6\xa2\x00\x93\xcb\x3d\x15\xe2\x38\x56\x9d\xd8\xe0\x8b\xd8\x04\x7b\xfa\xe6\x61\x70\x5a\x3a\x50\xcd\xeb\xef\xe2\xbd\x2b\x7e\xa8\xb0\xd5\xf0\xd8\x8b\xa5\xdb\xad\xd5\xb0\x15\x02\x2f\xb4\xd6\xc5\xdd\xfb\x2f\xd8\x13\xa0\x24\x0f\x09\xb2\x77\xc0\xd8\x00\xc7\xec\xc8\xf5\x24\xea\x76\x8f\xdc\x15\x37\x5a\xd0\x3f\xbc\xab\x6d\x14\x90\x61\x59\xbc\x32\xa4\xbc\x19\xd4\xeb\xc0\xa3\x66\x80\x91\xda\xfe\x76\xbc\x28\x5e\x14\x25\x16\x11\xff\x04\xf1\xee\x5c\xe3\x12\xcb\xa7\x33\x16\x09\x7b\x53\xa3\xc4\x9d\xa4\xc4\x1d\xfe\x12\xa5\x7c\xe5\x8d\xc5\xae\xac\x17\x18\xb4\x70\xa3\x4e\xd0\xb3\x36\x19\x03\xe4\xc8\x3e\xfc\xb9\x40\x20\x26\xf9\x9c\x47\xb7\x6f\xb1\xaf\xb3\x57\xa3\x81\x6b\x3b\xaf\xe5\x88\xcf\xc3\x4e\x98\x3c\xfb\x4d\x4d\x2c\x86\x07\x62\x99\x29\x47\x21\x78\x3b\x14\xb9\xc0\xb6\x58\x9c\x39\xc4\x53\xe9\x76\xac\x2c\xf5\x2e\xac\xad\xff\x3b\xcc\x81\xc2\xfa\xb6\xf3\xfb\x46\x70\xab\x30\x82\x50\x21\xbb\x28\xaa\xf5\x6c\xa0\xa0\x72\xb7\xa4\xa9\x70\x5f\xb0\x5e\xbe\x64\x61\x7b\x8c\xc7\x69\x15\x87\xc0\x90\x74\xec\xc5\x51\xad\x40\xcc\x73\x27\x66\xa9\xe3\xe1\x54\x0f\xf0\xa3\x55\x88\x4c\x3f\xcd\x43\x68\xf8\x01\x87\x93\xe8\x7d\x55\xac\x42\xcd\x18\x61\x0f\xb9\xf3\x29\x2e\xcc\x22\xf2\x65\x33\x1e\xa5\x0c\x5b\x1c\x95\x88\xa5\xaf\xa5\x3b\xc7\x94\x5b\xcb\x61\x03\xf4\x09\x6d\x6b\xac\xdb\x6d\xcb\x91\x11\x9c\xf4\x87\x49\xac\x71\x78\x0c\x66\x45\xa8\xc1\x40\x04\x1f\xe3\xa2\x90\x1e\x30\xcd\x32\xb7\x1a\x69\x80\x1a\x0f\x9f\x46\x0d\xf2\xaf\xe4\x67\x20\xac\x11\x32\x76\x03\x66\x3a\x7e\x64\xbd\x5e\x90\x0c\x87\x22\xef\xf8\x58\x2a\x20\x5f\xfb\x4f\x3b\xbe\xde\x1e\x2c\x68\x39\x09\x59\xd8\x58\x06\x0d\xc6\x1f\x76\xa0\xba\x04\xf8\xa5\x0a\x20\x25\xc0\x32\x36\x02\x6d\x27\x92\x2f\x3f\xcb\x2a\xd3\x38\x08\x7a\x26\x0e\x0b\xc4\x93\xa3\x71\x9f\x3d\xe1\x95\xbd\xed\xc9\x6a\x5a\xa2\x78\x74\xc3\xf3\x56\x53\x4a\xd2\xfc\x6e\x2d\x42\x91\x75\x70\x5e\xac\xaf\x16\x4c\x13\x91\x5f\x9d\xe4\xeb\x25\x2e\xc9\x0c\x46\x88\x6b\x5c\x56\x9d\xba\xe8\x54\x49\x4d\xaa\xf9\x0d\x33\x02\xe0\x81\x9b\xbd\x47\x0f\xbc\x42\x2a\xde\x1f\xdd\x89\x88\x46\xf4\x3e\x2f\x1e\xda\x51\x74\x9b\xe8\x10\x1d\x51\x4b\x7c\x9d\xff\x4f\x43\xf4\x5b\x68\x88\xc4\xfb\xf9\xb6\x8a\x86\xa7\xff\x97\xe9\x79\xd8\x6d\xe9\x21\x5a\x9b\x75\x99\x71\x95\xca\xba\xcc\x3e\x4f\x95\x12\x6d\x0e\x12\xc5\x81\xbf\x37\x54\x1b\xf2\x67\x28\x60\xb1\xdf\x04\xd5\x5c\x91\x78\x7d\x9d\x69\xa4\xec\x04\x6f\x21\xfd\xe1\xcd\x73\xd8\xe2\xb2\x29\xe5\x56\x53\x3d\x26\xf3\x39\x2e\xb9\x0d\x89\x34\x68\x64\xfe\x41\xac\xd1\x96\xab\x2c\x2e\x24\xf3\x42\x9f\x2d\x23\x6b\xe6\xad\x1e\x43\xad\x5b\x0d\xc7\x92\xd3\x7e\x15\x5d\x11\xaf\x3f\xeb\x4e\x86\x87\x8a\xf2\xf2\xd5\x45\x98\xd9\xdb\x0b\x3b\xc6\xba\x30\x53\xc7\xb6\x0b\x29\x5b\xbc\x11\x12\xb2\xbf\xb0\xcd\x09\xec\xe0\xb4\xc5\xda\x1b\x9c\xb9\xcd\x68\x37\x91\xba\x4e\xf0\xae\x8f\x7c\x9f\x87\x2d\x14\xff\x8a\xf9\xbf\xdb\x6d\xe0\xab\x14\xa8\x37\xfc\x63\x7f\x01\xcf\xab\x50\x2e\x91\x9e\xb8\x31\xd3\xbe\xec\x53\x51\x5f\x38\x12\x76\x6b\x8c\x28\x5f\x08\xb2\x53\x2b\x04\xd9\x17\x0f\x28\xec\xb9\x25\xe2\x61\x7d\x20\x0e\xbd\x1e\x05\x10\x2c\x70\x7c\xea\x68\xf1\x7a\xa2\xe4\xe0\x1a\x9b\xfd\xd5\x2e\x8b\xf4\xd6\x5a\xb4\xec\xfa\x0b\x52\x3b\xdf\x6e\x52\xda\x5f\xc6\x86\x05\xc1\xd8\x08\x00\x61\xc8\x80\x7e\x07\x0f\xca\xe8\xcb\x06\x8e\xe2\x38\x08\xc4\xe3\x9a\xec\x2d\x8f\x38\xe8\x07\x8d\xfe\xbd\xb0\xd8\x48\x25\x96\xba\x0f\x48\xa9\x6a\xc1\xdd\x91\xf6\x84\xd4\xad\xde\x7b\xaa\x70\x36\x87\x70\x4c\x1f\xad\x67\x15\x78\xd0\xc8\xdb\x8e\xf8\xb6\x2e\xfe\xf2\x9d\x05\x11\x3a\xd2\xf7\x8a\xc4\x33\xee\x72\xaa\x39\x0f\xbd\x95\xe1\x10\xc6\x3c\xb8\x95\x88\xeb\xc6\xad\x18\xfd\x31\x6f\xdb\x5e\xd1\x80\xf7\x9b\xf4\x90\x02\xfc\x59\x0e\x5e\xf1\x55\x8e\x75\x11\x78\xdf\x83\x24\x7c\xb0\x41\x14\x4d\x02\x66\x3c\x18\x4c\xf9\x34\x31\xda\xe3\xab\x0a\xcd\x77\xc0\xf4\x2f\xd2\x48\x22\xc9\x73\x5c\xbe\xb5\x5e\x16\x39\xf8\x05\x92\x96\x87\x8e\xa0\x9c\xfe\x3e\x88\x02\x54\x0b\x17\x93\x54\x45\x1e\x6d\xb4\xc9\x65\xc7\x88\xdf\x38\x95\x97\x6e\x90\x77\x5c\xe2\xb1\x13\xdb\x14\x0b\x28\x3c\x1b\xb5\xa3\xfe\xa8\x62\x7d\xb1\x5d\x77\x0d\x56\x4b\x2e\x0b\x45\x11\x1f\xde\x3c\xf4\xa9\x5c\xce\xbc\xc6\x79\x23\x5f\xfd\x96\xe1\x6e\x58\xef\x23\xf6\x57\x1c\xff\x3f\x92\x7a\xc1\x06\x34\x6a\x05\x7c\xe2\x00\xad\xa2\x47\xa8\x79\x1e\xa9\x9f\x60\xbf\x6f\x34\xd8\x68\xb3\xc8\xe3\xd3\x85\x9e\xd0\xa5\x32\xec\xdb\xa3\xac\xc4\x49\x7a\x23\xdf\x41\x6b\x07\xce\x37\xfe\xa9\x66\x57\x32\xbe\x5d\xd5\x5e\x4f\x3d\xf7\x62\x69\x73\x8f\x5c\xb8\x4c\x27\x2d\x4f\x3d\x4f\xc4\x1c\xe5\x92\x55\xe2\x94\x94\x78\xa6\x39\x2d\x8a\x14\xdf\xdc\xc8\x48\xd3\x82\x1a\x4a\x39\xd2\xbb\xdd\xf6\xd2\x82\x7d\x64\x40\x2d\x98\xb7\x91\xd0\x78\xf5\xcb\xa0\x7a\x71\xfb\x72\x59\x06\x87\x1c\x23\x19\x3c\x1e\xa4\x69\x6c\xe5\xe2\x2d\xd1\xc0\x63\x38\x2d\xc9\x8e\x67\xd2\xe4\xcc\xc2\xdc\x71\x3c\xf5\xcd\xd6\x6b\xc8\xa2\xb3\xd4\xfe\xe4\xb6\x75\xe4\xef\xe2\xdd\x58\x4c\x5e\x3b\x00\x6f\x2b\x13\xf7\x9b\x73\x6d\x3e\x3e\xc9\x23\x47\xef\x63\xee\x4e\x77\x30\x77\x87\xc4\xaf\xdd\x17\xa3\x76\x57\x7c\xdb\xc3\x23\xbd\x7a\x38\x3e\x61\x10\xc5\x4d\x73\xc1\x1d\x49\x23\xf8\x6a\xe1\x78\x5c\x48\x15\xeb\x8a\xfd\xe5\x81\x35\x85\x5b\x31\xbf\x47\x60\xaa\x09\x6e\xff\x0d\x01\x2c\xc0\xfb\x03\xfe\xb1\xed\x8c\xa0\x20\x0f\xf4\xc7\xdd\x20\x84\xed\x91\x0c\x78\xaa\xbf\x70\x25\x92\x5d\x73\x76\x0e\xb9\x7e\x82\xc7\xd6\xd1\x00\x45\x44\xf8\x38\x21\xc7\x99\x41\xbd\xc1\x84\x91\x33\x59\x4e\x57\x7e\x47\xa0\x3d\xe1\x63\xe6\xec\xf5\x65\xe8\x45\x63\x5b\x3d\xb1\x63\x5a\x1b\x11\xf6\xe9\xba\xd5\xf2\xed\xe3\xd2\x50\xf2\xae\x53\x09\xdd\x2e\x11\xee\xda\x5d\xc3\x15\x8f\xcb\x15\x8f\x7a\xc6\xfd\x39\x34\x0a\x20\xdc\x41\xde\xf2\xac\x5e\x6f\x6c\x2c\x07\x40\x25\x68\x93\xf9\x04\x24\x8b\x04\xe8\xe5\x75\x20\x34\x9e\xba\x25\x55\x47\xf0\x76\xdb\xe2\xd9\x73\x0b\x27\x1d\x50\x95\xba\x0e\x1f\xc2\xd7\x83\x77\x0a\xec\x44\xed\x84\xe0\xb3\x19\x0c\x9f\xc3\x47\x2b\x5f\xa6\x5a\xb6\x9f\xab\x95\xec\xd9\x23\xc1\x9e\xa9\x77\x94\x5d\xe4\xd6\x9e\x8d\x00\x8c\xb6\xe5\x32\xb9\xfb\x8d\x39\xe7\x71\xf4\x6e\x31\x85\xea\xa9\xd5\xd6\x48\x90\xe2\xa5\xce\xe3\x0e\xd4\x81\xd3\xa3\x1d\x47\xe2\xc1\xd8\x0c\x8f\x28\x04\x46\xb5\x53\xe0\xe4\x94\x7e\x73\x23\x1e\x6f\x2e\xe0\x94\xcb\x23\x3c\x3a\xf6\x5d\xfa\x81\x39\x1a\x20\x57\x18\x35\xc9\x0c\xd7\x1f\x8a\x60\x49\xcc\x4c\xb4\x92\x66\x8d\x48\x7f\x2e\x11\x32\xf9\x74\x40\x36\x25\x60\x23\x2e\x89\xe8\x77\x93\xd5\x9a\xe9\xbf\xd0\x3c\x21\xd9\xba\xb4\x02\x0b\x1b\x81\x21\xed\x92\x0d\x4a\xcc\x47\x10\x55\x04\x44\x77\xcd\x68\xb2\x8c\xd0\x26\xfd\xfb\xf4\x2d\x8b\x2c\x52\xd4\x0b\x46\xba\xf3\xc8\x75\x52\x89\x65\x0c\x22\x9d\xae\x7b\x6e\xb8\x62\xad\x13\xe3\x20\x30\x25\x13\x91\xa6\xfb\xb3\xe9\x35\xfd\x4e\x6d\xc6\xdb\xca\x25\xae\xcb\x1b\x33\x0c\x21\xa9\xec\x2d\xa6\xb7\xe9\xf1\x42\xd1\xc6\x22\x43\xb4\x41\x8c\x35\xd5\xf0\x92\xbb\x89\x0a\xe5\x23\x77\xd6\x84\x64\x13\x24\x27\x48\x0c\x61\x6f\x3e\x3e\x15\xeb\xbb\x3f\x62\x23\x7f\x75\xc1\xa8\x17\xc7\x71\x70\x59\x14\x19\x4e\x72\x1e\xbe\xb1\x0f\x46\x05\xe2\xae\xc8\x28\x0c\x26\xd7\x7a\xf4\x14\x73\xc9\xdd\x13\x45\x04\x40\xd2\x8f\xd7\x67\x3c\x18\x12\x32\x1a\x17\x31\x6a\xe6\x45\x96\x15\xd7\x6f\x38\xdb\x5e\xe9\x8b\xf0\xd1\x0c\x1e\xcd\xfb\x1e\x7b\x30\x7b\x87\x1c\xab\x5c\x0f\x5b\x63\xfd\xb6\xe4\xf7\x2d\xd0\xc2\xc8\x7d\x82\xca\x10\x82\xa3\x06\xd5\xc5\x5b\x76\xdd\xe5\xbe\x31\xa5\xd3\xb1\x50\x6c\x96\x0e\x7f\x13\x5c\x7c\xf7\x82\x28\xb0\xde\x2b\x97\x7a\xd0\xdd\xbb\x4e\x3d\x4d\xee\x25\x79\xfd\x0a\xe7\x69\xec\xcd\x11\xfc\xa2\xa4\xe3\xbe\xb3\xec\x36\x9e\xbd\x29\xae\xf1\x8c\x92\x69\xb6\x7f\x34\xef\x4b\x7f\xbc\x08\x0f\xf7\xc8\xb3\xf6\xea\x80\x9d\x1a\x86\x02\xd8\xcd\xd5\x8d\xed\xb5\xd0\xff\xda\xbc\xe8\x92\x88\x7c\x75\x20\x96\xcf\x0f\xf8\xeb\x0b\x6a\xe4\x8e\xcd\x11\x58\xb8\x00\x32\xf1\x4b\x20\xbb\x24\x0a\x60\xe5\xed\x88\xff\x8a\x95\xbf\x20\xe0\x0e\xc4\x18\x31\x28\xc6\x53\xa2\x8d\xc8\x53\x3e\x1a\x9f\x24\xf2\xc3\xe3\x40\x3a\x3e\x70\x14\x06\x92\xf2\x89\x79\x1e\xf2\xdb\xea\x0e\x6b\x65\x1a\x70\x73\x3a\xd9\xac\xd1\x1d\x38\x69\xf2\x1c\x09\x95\x3e\x73\x22\x53\xe4\x49\x0c\x80\x4b\x85\x45\x52\x2d\x10\x57\x16\x0b\x96\x74\x55\x16\xab\x0e\xe1\x4f\x90\xb2\x4d\x0d\x8f\x81\xda\xd7\xd9\x65\xb1\x8a\xa2\x0d\x6d\x61\x42\x7f\x4f\xc1\x8b\x0e\x7e\x73\x63\x4f\x71\xb5\xc8\x07\x0e\x16\x07\xdb\xad\x7e\x8b\x57\x17\xd1\x46\x02\xf5\x34\x8c\x36\xcd\x53\x8d\x7b\x60\xbf\x74\x9c\x7e\x6a\x08\xb0\xe2\x8e\x32\x16\x77\x95\xb2\x25\x8f\xd9\x73\x02\x0b\x24\x18\x7d\xf6\xd9\xed\x26\x9a\x1b\x18\x5a\xe0\xc4\x88\x21\xc2\x79\xfe\x6e\x37\xc3\xf9\xc3\x01\x2f\x3c\xc9\x70\x7e\x3c\x9c\x9a\x5f\xb7\x71\xba\x35\xea\xe9\xbd\xd1\xee\xcd\x33\xa6\x4c\x6e\x10\xbb\xe5\x3b\x1e\x8a\xad\x3d\xb1\x81\x9c\xea\x66\x24\x13\xa8\x43\x8f\xdd\x69\x63\xec\x41\x8f\x91\xbf\xc7\xa8\x5f\x71\x98\x05\x2e\x67\xba\x53\xda\x3b\x8e\xab\xa1\xf9\xa4\x91\x19\x80\xee\x17\xcb\x67\x91\x9f\x8b\xbf\x58\xe1\xe0\x28\x9e\xe7\xeb\xe5\x25\x2e\x03\x63\x6a\x20\x33\x08\x7a\x76\x9a\x34\x10\xe2\x78\x1c\xda\x05\x22\xdd\x28\x6c\x80\xb2\xd8\x2e\xe0\x04\x03\xb1\x0b\x4c\x88\xb7\xe7\x09\xa1\xc8\xdc\xe8\x14\x5b\x08\xdc\xea\x40\xa8\xae\xc0\x75\x9d\x9f\x6e\x59\x71\x25\x83\x7a\x80\xef\x34\xb0\x0a\xca\x81\xfa\x9e\xf4\x83\xa2\xed\xe9\xe7\xd5\x7f\x0b\x7a\xea\x84\x1a\x75\x82\x1e\x6d\x1c\x56\x78\x59\x5d\xc5\x32\x70\x82\x56\x9d\x95\x68\x2c\x6a\x4a\x09\xa9\x5a\xcd\x4b\x92\xa7\x32\x04\xd1\x9c\x3b\xfe\x5d\x16\xeb\x1c\x9c\x04\x24\x84\x62\xab\xc9\x1d\xfa\x11\xde\xe3\xf6\x71\x40\xb2\x3a\x3a\x8d\xc6\xea\xed\x73\xa8\x21\x1b\xca\xf9\xd3\xe5\xa2\x73\x60\x45\x0c\x68\x29\x70\x31\xfd\xa3\xe9\xe4\x0d\x3b\x34\xc5\x12\x03\x3a\xf1\x37\xe9\xe2\x38\x00\x83\x97\x60\xbb\xe5\x44\x53\x0b\x1c\x00\xd8\xba\xdd\x3a\x75\x38\xe2\xf9\xea\xbc\x64\x59\x9a\x7b\x2f\xbf\x9c\x81\x4d\xa5\x1e\x63\x31\x51\x2d\xb1\x3c\x49\xbb\x5d\xc6\xcc\x1d\xc5\xb1\xa8\x01\x0d\x4c\xc8\x34\x02\xdc\x33\xc7\x2f\xae\x0e\xc5\x55\xa1\xec\xde\xf2\x78\x33\x6d\x22\x5d\x06\x4f\xe3\xbf\x78\x4d\x16\xe9\x4f\xa2\x9a\x9e\x18\xee\x6b\x6c\x6c\xbf\xb2\xa7\x33\xb0\xb6\x06\x02\xfa\xb6\xb8\x66\xde\x80\x63\xbe\x74\xce\x6e\x46\xf2\xa2\x16\xe3\xeb\x60\x0a\x51\xe7\x2e\x98\x1c\xf5\x82\xbb\xfd\xce\x3b\x69\x1d\x9b\x17\x3c\xaa\xa5\x0c\xc7\x13\x80\x19\x01\xab\xf4\x63\x52\x81\x7c\x98\x6a\x86\x11\x7b\xe3\xd8\x10\x61\x79\xb6\xc3\x14\x54\xbe\x88\xe8\x51\x9c\x18\x71\xfc\x28\x18\x95\x16\xb9\x8c\x7d\xc3\x93\x82\xba\xb7\xb9\x91\xe1\x7b\xce\x3f\x8e\x99\x88\x15\x6d\xec\x81\x31\xcf\x4c\x8d\xc4\x37\xcc\xc3\xf4\xc8\x2a\xd6\xed\x1e\x59\xf3\xef\x4c\xfc\xcb\xa2\x5e\x90\xfc\x8a\x8f\x3a\x65\x16\x60\xce\xd4\x07\xd6\xe6\x14\xaa\x4f\x87\x75\x75\x1e\x69\x81\x43\x1e\xe5\xf8\xfa\x15\xdf\xb5\xfc\x60\x30\x4c\x67\x36\x49\x96\x8d\x36\x0d\x12\x71\xbd\x36\x54\x22\x64\x6f\x8b\x8c\x36\x8d\x88\x7c\x2a\xcc\x1a\x12\x30\xd2\xe7\xed\xb1\x76\x52\x11\x73\x8d\x2f\x78\xfb\x39\x25\x41\x8a\x76\x14\xd2\x5a\xa7\xa8\xc3\x8f\x31\x55\x95\x5b\xf4\x71\x06\xc6\x1b\x0c\x95\x3b\x09\xef\x2a\xa2\x80\xe6\xf7\x7b\x30\x3c\x3e\x70\x38\xf5\x64\x2f\x3c\x60\x6a\xa3\xc1\xa3\xcd\x29\x04\x02\xd8\x03\x8f\x38\x25\xcd\x36\xa3\x6e\x57\x64\xc8\x26\xc4\xe1\xa9\x0f\x53\x3f\x2f\xc1\x55\xda\x4d\xa7\xdb\x1b\x06\xc1\x17\x12\x06\x61\x96\x1d\x9b\xe3\x06\x24\x36\x69\xa7\xb7\x53\x75\x48\x3b\x60\x41\xbc\x06\xb3\x1b\x1e\xac\xe1\xd6\xe0\x34\x8d\x6e\xb4\xa9\x15\x74\x7a\xf8\xdc\xe6\x45\x6c\x78\x91\xd1\xed\xf2\x76\x8c\x2d\x66\xbe\x0b\x67\xbe\x03\xa7\xdf\x43\x2a\x45\x1d\xb7\x9f\xe0\xd2\x2e\xf8\x2f\x4b\x13\x05\xa3\x6d\xe3\x66\xc1\x7f\x93\x20\x4d\xf0\x56\x49\x89\xf3\xfa\xbc\xc8\xab\xba\x5c\xcf\xea\xa2\x44\x36\x7f\x7e\x2e\xec\xee\x9c\xa2\xc0\x12\xb0\xa0\xaf\xea\xf9\xf2\xe6\x5c\x63\xe5\x39\x8b\xee\xf6\xa2\xca\x08\xa7\x02\xad\x1a\x07\x41\xb0\x13\xe7\xc6\xe0\xa4\xd5\xa1\xcf\xca\x10\xac\x13\x63\xb0\x51\x34\x6a\x31\xe9\x0e\xa4\x39\x53\x54\x02\x4f\x59\xe1\x19\xab\xe7\xb5\x12\x90\xb8\x35\xc7\x11\x48\xc1\xd8\xc9\x7a\xdd\xf2\xd7\x7b\x91\xc3\xea\xef\xba\xfd\x3a\xd8\xed\xbd\xfa\xb8\x3a\x61\x46\xb5\x65\x9e\x64\xa6\xb3\x7b\xff\x84\xb0\x05\x5b\x8a\x87\x2e\x67\x45\x3e\x27\x57\xff\x88\xfb\x3d\x60\xd3\x5e\x95\x4f\x79\xf3\x8e\x49\x96\x5d\x80\xfb\x3d\xb7\x96\x57\x59\x60\x0b\x59\x5c\x3b\x45\xf2\xe2\x9a\x3b\x56\x8a\x41\xef\xb3\xbb\x85\xf9\x70\x2e\xef\x20\x79\xac\x85\xe9\x28\x56\x54\xc8\x65\x17\x97\x4f\x5e\x3e\x7e\xf6\xf2\x8f\xf1\xc7\x82\xa4\x1d\x30\xbe\x79\xfa\xc3\xf3\xa7\xcf\x9e\x3f\x7f\xf2\x38\x1e\xc2\xe2\x3e\xf9\x1f\x4f\xce\xdf\x3d\x79\x1c\x9f\xb2\xcf\x3f\x3e\x79\x77\xf1\xee\x4f\x4f\x5e\x5e\x3c\x79\xf3\xe6\xd5\x9b\x58\x9e\xed\x40\x85\x8c\xb3\xf9\x1d\xbf\x14\xa6\x1b\x1e\x02\xc6\x99\x86\x4e\x4c\x41\x2d\x02\x6f\xc1\x95\x9b\xd9\x3a\x5c\x68\xc4\xec\xaf\xd8\x7e\x66\x09\x4d\x2a\xaa\xcb\x1b\xd6\x21\x6d\x14\x31\x09\x00\xcd\xd7\xd9\x9c\x64\xd9\x52\x85\x15\x43\xa0\xc3\x53\xbe\x10\x00\x17\xad\x03\xe4\xe3\xf0\x8a\xce\xf3\x43\x7a\x14\x2e\xe0\x6f\x9e\x16\x25\x26\x57\x39\x05\x2b\xb9\xcc\xb0\x98\x0b\xa6\xcb\xa7\x09\xec\x07\x8b\x58\x39\x27\x57\xfd\xa4\xba\xc9\x67\xa1\xae\x98\xa0\x85\xef\x9c\x0a\x2b\xae\x44\xb1\x98\xd2\x32\x26\x36\x46\x2d\xdb\xb5\x65\x27\x32\x0f\xa1\xbe\x64\x89\x79\x73\xf0\xa0\xe2\x3c\x14\x35\x8f\xe2\x98\x57\x11\x57\x41\x12\x0c\x98\x53\x2e\x07\xf2\x09\x72\x73\x1b\xe4\x53\xc9\xee\xe8\x9c\x2b\x55\x55\x43\xd2\xc6\x88\x3f\x3c\x45\x0f\x15\x95\xdd\xbf\x60\x07\xcc\x76\x1b\x74\xd6\xf9\x87\xbc\xb8\x96\xd8\x24\x1e\x9c\x82\xc6\xbb\x5d\x8e\x51\x3b\xfb\xb2\x2f\xcc\x1c\xd3\xa5\x57\xd7\xed\xab\x17\x6d\x04\x1e\x5f\x14\x39\xac\x86\xf0\xc3\x15\x45\xfa\x17\x70\xc9\x1d\xc7\x72\x57\x45\xf6\xdc\x21\x55\x98\x5f\x50\x4a\x4d\x83\x6c\x5f\xb4\x22\xf6\x22\x9d\x49\x7d\x28\x2d\x6d\x6c\xaa\xf5\x65\x35\x2b\xc9\x25\x96\x10\x21\x75\xef\xe6\x41\x92\xbd\x68\xb0\x0b\x09\x76\xa0\x80\x05\xad\xd2\xa0\xdb\xf3\xfd\x22\xb9\xb9\xc4\xce\x8c\x2f\xf5\x54\x06\xa8\x91\xa2\x8b\xcf\x62\xca\x66\xea\x70\x17\xd6\x42\xbe\xb5\x34\x5b\x86\x61\x31\x83\x85\x05\xce\x63\x41\xc2\xcc\x42\x62\x7d\xe3\x38\x36\x69\x91\x33\x4c\x1f\x31\x53\x8b\xcb\xdb\x90\xeb\xe1\x22\x86\x07\x38\xd0\x3f\x89\xb3\x83\xb5\x11\x89\xf1\xb5\x51\x1b\xa3\x19\x20\x39\xfe\xf5\xb3\xfa\x6b\x1c\x83\x26\x6b\xa5\x37\x0a\x45\x63\x89\x30\x2d\x48\x21\xbd\xeb\xac\x83\x92\x23\x9f\x18\x83\x7f\xfd\x0f\x41\x3a\xc5\xa5\xae\x2f\x33\x52\x2d\xde\x08\x7a\xad\x4e\x20\x7d\x47\xf1\x1d\xeb\xee\x61\x55\x44\xec\x24\xde\x60\xe8\xd2\x08\x3f\x2c\x1b\x67\xe7\x1e\xc5\x31\x3f\x68\x25\x09\xb4\x7a\x81\xd9\x1b\x5b\x1b\x5e\x12\x8d\xb1\xd1\xa4\xd8\xd4\xa5\x19\x0e\x11\x02\x29\xd3\x93\x44\xb1\x0c\xd1\x46\xfd\x0e\x03\x0e\x2f\x4e\x03\x45\xf0\x60\x56\x8d\x23\x88\x0f\x58\x2b\xa3\x21\x82\x6f\x23\xdf\x6e\xc4\x30\x36\x41\xca\xc6\xf6\x4c\x40\x9b\x63\x1f\x44\x72\x4d\x3d\xf4\x5a\x91\x3a\xe0\xee\xd1\x6c\x41\xb2\x14\x15\xf9\x53\x75\x96\xa3\x22\x97\x4d\xf0\x53\x55\xcd\x65\x0c\xf5\x8c\xf9\x15\x26\x39\x74\x8e\xdd\x69\x1f\x8b\x1a\x06\xf9\xd7\xca\x4d\xa0\xdc\x34\x66\xb0\x78\x72\x7a\x72\x85\xa7\xb1\x01\xa9\xaf\xac\x98\x31\x5a\x54\x0e\x83\x5f\x0f\x70\x24\xe8\x76\xe5\x20\xc0\x1c\xc9\xbf\xae\xac\x8c\x67\xcf\xa8\xad\xe2\xcc\x8d\x07\xf9\xf8\x93\xe5\xf4\x8c\x4e\x63\x73\x75\xc7\x7b\x71\x51\xd4\xd3\x4e\xc6\x33\x0d\x3f\x47\x01\x60\x9a\x81\xaa\x94\x91\x68\xc1\x7d\x4d\x53\x08\xeb\x2e\x1f\x9c\x4e\x71\x9d\x90\x2c\xb6\xb0\x6c\x6c\x1a\x3f\x79\xd6\x96\xf4\xe2\x7b\xd1\x86\x35\xa6\x2f\xfd\x84\x4c\xc7\xa2\x6d\x33\xbd\xc7\x87\xc4\x6c\xa3\x58\x3d\x16\x8b\xa0\xf8\x80\xcf\x85\x0a\x96\x97\x40\x5e\x10\x39\x7d\x93\xfa\x5a\x91\xda\xec\xda\xf8\x03\xb5\x86\x1a\x17\x2e\x2c\x1a\x14\x56\xb2\x99\x79\xf7\xe6\xa7\x8b\xf3\x47\xef\xce\xff\xb4\x8f\x77\xaf\xcb\x9b\x73\xc6\xdc\xda\x20\xea\x4c\xbc\x03\xa8\xe4\x87\xad\x7e\x04\x17\x2f\x38\x78\x2b\x5b\x43\xc3\x96\xe9\x12\xd4\xc6\x81\x06\xf4\xa7\x95\xa8\x10\x6b\x27\xa3\x54\x94\x73\x51\x00\x8c\xae\x98\x31\x0c\x4e\x29\xf3\x93\x90\x0c\xa7\xa0\x45\x95\x0d\xd0\x16\xb3\x35\x8e\x5b\xc7\x4f\xcb\x43\x91\x38\xb6\x86\x11\x6d\xa0\x49\xe0\x34\x61\xc8\xac\x28\x0c\x7f\x0c\xd5\xd8\x5a\x70\xd6\x8c\x83\x22\x63\xee\x3b\x47\xa9\x45\x6c\xd9\x7d\xfa\xcd\x8a\x9b\xd3\x07\x8f\x04\xaf\x53\xc9\xa5\xe8\xcc\x92\x3c\x2f\xea\x8e\x34\x99\x48\xea\x4e\x95\x2c\xb1\xe4\x8a\xd4\x9b\xba\x8d\xe0\x75\x28\x54\x30\xba\x71\x2b\x48\x1e\xa2\x2e\x0f\x74\x6d\xfa\xba\x5d\xd9\xc2\x4e\xc6\x91\x56\x83\xc9\x72\xc6\x68\xf1\x48\x1e\x2a\xb1\x97\xc3\x50\x75\x5a\xb9\x65\x87\x67\x50\xee\x9d\xdc\xd6\x43\x3b\xe1\xd8\x30\x4a\x81\xfa\xf0\x15\xda\x9c\x91\xa8\xb6\x9b\x6b\x46\xd6\x39\x2a\x6a\xed\x65\x93\x35\x51\xd3\x9c\x2e\x4b\x53\x4e\x45\xfb\x98\xfe\x31\x34\x47\x1c\x1a\x61\x6e\x6f\xe5\xb1\x3b\x29\xf8\xc7\xc8\xe1\xd3\x1c\xf3\x7f\xc7\x96\xd6\x0b\x28\x91\x22\x81\x46\x3e\x3f\x4f\x62\xfe\xaf\x2f\x4f\x9e\x60\xb1\x9d\x60\x6a\xc4\xec\x95\x89\x9d\x14\xab\xbc\x4e\x42\x62\xf3\xd3\x28\xa9\xf4\x1c\x8a\xcd\xd2\xf3\xa5\xde\x43\xfc\xb0\xd5\x54\x49\x96\x1d\x73\x64\x03\x45\x15\x66\x4e\xef\x49\x5d\x94\x4c\x3d\xa5\x9b\xa6\xff\xc3\x2c\xd1\x9f\x48\x18\xf6\x19\xa3\x2f\x93\x0f\x18\x24\xec\xf4\x0d\x70\x5e\x4e\x18\x48\xbb\x44\xab\xad\xbb\x47\x19\x55\x5c\xcc\x5c\x9f\xee\x7b\x17\x17\x7d\x91\xa1\x8e\x9b\x47\x59\xc6\xbb\x09\x75\xcd\x2f\xce\xeb\x92\xe0\x0a\x71\x4d\x33\xbc\x24\x56\xad\x57\xb8\xd4\x4a\x79\x6b\xc0\xbb\x4d\xdc\x59\x4e\xb5\xae\x6b\x82\x39\x10\xa1\x9a\x2f\x5d\x07\xec\xab\xe3\xf6\x1d\xab\xca\x2d\x35\xe8\x0c\xf2\xc9\x75\x27\xd3\x5f\x85\xc7\x92\x21\x45\xce\xe8\x7c\xec\x58\x96\xe9\xd7\x69\x89\x6c\xa2\xb3\x5c\x57\x75\xe7\x12\xb3\xb3\x00\xa7\x9d\x6b\x52\x2f\x3a\x49\xde\x61\xb7\xbe\x41\xd4\xea\x73\x21\x17\x41\x35\x15\x5a\x13\xaf\x75\xab\xad\xd4\x6b\x41\x82\x8c\xc2\x42\xd9\xdf\x78\x36\x0b\x6c\x92\x5b\xfa\xd2\xb6\xe1\xfa\x57\x07\xba\x5d\x1c\x30\x6c\x7e\xb5\x6e\x8e\x56\xd8\xfc\xd9\xf9\xee\xc0\xaa\x64\xf5\x59\x16\x5e\x82\x83\xdb\x0f\x62\x95\xac\x14\x27\x92\x94\x57\xcc\x70\x64\x8d\x95\x74\x21\xc8\x9b\x9e\xdc\x1b\x4e\xe3\xa4\xbc\x1a\xf3\xaf\xf8\xd4\x90\x14\x4e\xa3\x4d\x35\x5b\xe0\x74\x9d\xe1\xa7\xd9\xba\x5a\x84\x51\x03\x41\x4b\x2e\xcb\xe2\xba\xc2\xe5\x1f\xb3\xe2\x32\xc9\x62\x6e\xb8\x70\x4d\xf2\xb4\xb8\x3e\x8a\xe3\x40\x6a\x2b\x82\x33\x48\x1c\xf1\x60\x27\xdf\x43\xbd\x17\xeb\x9a\xe1\xee\xab\xcb\x0a\x97\x1f\x71\x19\x1b\xed\xf5\xed\xec\xed\xd6\xcc\xff\x11\x5f\xfe\x99\xd4\x76\x29\xae\x4c\xff\xb1\x28\x3f\xe0\x52\xc0\xf4\x03\xc9\xeb\x6f\xcf\xb3\x64\xb9\xc2\x29\xbb\x50\x34\xc1\xeb\x76\x85\x3d\xec\x92\xce\xed\xdb\x59\x49\x56\x75\xd5\x52\xe6\x05\x98\x18\x9e\x2f\x92\x3c\xc7\x99\x59\x48\x91\xa9\x75\x85\x5f\xe2\x4f\xf5\x3b\x32\xfb\xa0\x36\xa3\xb6\x3d\x99\xfb\x53\x55\xf5\x73\x51\x68\x4e\x67\x56\x67\x33\xd6\x15\xb6\xc7\xc6\xed\x5e\x49\x4d\xe9\x08\x29\xf2\x8a\xbb\xc0\x16\x62\x02\xe9\xb6\x6b\x99\x5c\xde\x01\xbf\x41\x48\x71\x9c\x16\x33\x26\x5d\x71\x2b\xb7\x77\xf8\x53\xfd\xb2\x48\x71\x18\x04\xd1\x58\x34\xd8\xe7\x3f\x42\x5a\x03\x6d\x66\x8b\xa4\x4c\x66\x35\x2e\x1f\x27\x75\xc2\x0c\xd0\x95\x3f\xb2\x36\x36\x5a\x18\x7c\x6d\x34\x48\x7b\x3d\xf5\xf1\xbb\x53\x6b\x9c\xc6\x94\xf2\x51\xce\xe0\x8b\x8d\xc9\x2c\x30\xe6\x59\x7d\xba\x58\xc3\x7e\x91\x0b\xeb\x4f\x36\x44\x0f\x40\x7a\xf9\xd3\xfe\xaa\xa8\x6a\xde\x60\x38\xb0\x66\xfc\x2d\xae\xdf\x91\x25\x2e\xd6\xb5\x77\xd5\x2a\x95\xcd\xfa\x42\xc3\x08\x0c\x07\xd9\x66\x62\xa0\xc2\x7d\xf5\x10\xdf\xd3\x3c\x76\xe7\xb0\x6b\x36\x8e\x13\x0d\x97\x1d\xb9\xd6\x5e\x8a\x8a\xb0\x35\x79\xe8\x8b\xa4\xbc\x12\x09\xbd\xa1\x92\x27\x43\xba\xb7\xc7\xa2\xa4\xd2\x0c\x8e\x55\x59\x95\xd8\x48\x09\x90\x89\xe1\xfa\x66\xd6\xac\xc1\x39\x4e\xda\x78\xbf\x69\x2c\xbb\x4f\x5e\xce\xb0\xfe\xe4\x69\xd3\xc0\xa2\x15\xb1\xb1\x11\x24\xdf\xdd\x82\xa4\x9e\xca\xee\x1e\xd0\x74\x9b\xb0\xcb\x7d\xb5\x2c\x8c\xe2\x62\x94\x5d\x4c\x5f\x6e\x87\x58\x8b\x1b\x43\xc6\xad\x31\x63\x98\x2f\x71\xfd\xc9\xac\x99\xde\x31\x17\x88\x7d\x4c\x17\xbf\xa2\xd3\x34\x21\x23\x1e\xe8\x5c\x6b\xa4\xbf\x24\x9f\x48\xce\x15\x28\x91\x6e\x0f\x49\x13\xd6\x25\x86\xb8\x58\x4a\xdb\xc8\x63\x54\x05\x5c\x0f\x15\x48\xbd\x4f\x91\x4b\xe7\x23\xc3\x26\xae\xc5\x24\xf0\x54\x54\x04\x13\x21\x90\x43\x8d\x08\x61\x7a\xb6\x29\x7a\xf0\x91\xf1\xcb\x46\x37\x67\x5d\xe2\x58\xfe\xb2\xd7\x25\xc5\x73\x71\x39\xfd\x85\xf8\x83\x2f\xc4\x1e\x30\xc0\xf4\x58\x11\x2c\xa1\xc4\x69\xbc\x69\xc6\xe2\xb7\x74\xa3\xa2\xc4\x42\xc8\x74\xba\xd7\x19\x95\xba\xf8\x05\x62\xb4\x91\xb5\x6c\xb1\x4c\xcb\xd0\x64\xb2\x86\x33\x1e\x82\x06\x8a\x52\x0e\x6e\xeb\xd2\x87\x79\x6d\xae\xdd\xa7\x7f\x9e\x00\xb2\x6b\x92\xa5\xe9\xb7\x73\xc3\x0d\xd6\xde\x50\xc6\xd0\xeb\x7b\xca\x1a\xf9\xfc\x40\x2b\x56\x8e\x73\x2c\x13\x6d\xc1\x94\x8b\x4d\x91\x9d\xcf\xc5\x58\x16\x0c\x85\x8b\xaf\x4e\x30\x14\x2e\xce\x1a\x1a\x4e\xa7\x94\x12\x6b\xcd\x2b\x71\xbb\x9c\x12\x1d\x8d\xab\x72\xc7\xa9\x57\x28\xbb\xf5\x3b\x77\xbb\x10\x4f\x67\x65\x1e\x7d\xff\xea\xcd\xbb\x8b\x57\x2f\x2f\xa0\xe6\xb3\x57\x2f\x41\xaf\xa4\xef\x2b\x4f\x19\x37\x49\xb3\xb6\xb7\x05\x10\xfe\x78\xf8\xaa\xe0\x6e\x88\xda\x5d\xb1\x7b\x69\xc9\xdd\xcf\xc1\x73\x4d\xbf\x48\x60\xb5\x46\xfc\x89\x10\x8d\x54\x88\xa2\x4a\x8f\x0b\xea\x0c\x51\xd4\x20\x1e\xae\x2c\xea\x8a\x4b\x4a\xd1\x29\x11\xdd\x10\xfe\xd8\xeb\x87\xe0\xdc\xf6\x8a\xeb\xc7\x4d\xd1\x51\xdc\x12\xea\x12\x9c\xf6\xdb\xf4\x2f\xa5\x5b\x59\x17\x33\x29\xe6\x89\x9d\x08\xcd\x19\x3d\xc5\xc6\x97\x0c\x76\x7d\xa1\x22\x83\xae\xd6\x75\xc8\x40\x8c\x14\x3c\xab\x75\x1d\xb3\xbf\xd0\x24\xa7\xc3\x2c\x45\xa8\xa1\xa1\x68\x89\x97\x09\xc9\x49\x7e\xe5\xcb\x24\x39\xe1\xf6\xb0\x7a\x2b\x4c\x2d\x2e\x54\x65\xfa\xd0\x90\x68\x52\xbb\x27\xd6\x2b\x6a\xbf\xb7\xdb\x01\xef\x43\x10\x17\xac\x75\xa4\x41\x75\x68\x67\x12\x43\x98\x16\xcb\x53\xd0\x92\x7e\xc3\x28\x6a\x1a\x9f\x88\x6e\xcd\xac\x92\x92\x61\x8a\xc5\x71\x25\x6c\x0d\x21\xb5\x19\xef\x6c\xea\x30\x91\x9b\x35\xd8\x01\x4f\xbe\x4a\x4a\xdd\x3c\x08\x62\x4a\x45\xee\x47\x42\xe4\xf6\xf7\x46\x97\x2b\xb6\x7d\x0f\xc5\xe5\x97\x62\x37\xb5\x65\x68\x97\xde\x35\x05\x84\xbf\x33\xb9\x6e\xb1\xe5\x68\xe7\x2e\xb6\x1e\x05\x20\xd6\x97\x86\x5b\x21\xd1\x69\xd6\x10\xd7\xb8\x41\x71\x0c\x15\x38\x2d\xeb\x76\x35\x9e\xb8\x27\xc6\x8a\x93\xd9\xe2\x49\x5e\x97\x7c\x5d\x26\x64\xca\x62\x76\xb7\x0d\x41\x94\x56\x43\xc0\xf4\x53\xc4\xa4\x9d\xc5\xad\xdb\x1b\xa2\x68\x9a\x77\xca\xac\x2e\x58\x9b\xb2\x9f\xba\xa5\x40\x1c\xc7\xb3\x6e\x17\x92\x5d\x95\x37\x4f\x37\x2e\xfb\xb8\x52\x0a\x08\xd5\xa3\x3a\xd4\xeb\x22\x82\xf8\xa7\xbb\xd7\xd8\x8b\xf8\x40\xdf\x1e\xd5\xe1\x4c\x3a\x5e\x03\x74\x2a\x84\xb9\xb5\xd1\x8e\x8f\xc7\x3a\xba\x50\x29\x01\xbe\x95\xa2\x29\x94\x44\x5b\xf4\xdf\x3e\xb5\x12\x6e\x35\xb5\x02\x72\xcd\xe9\xc2\x8b\x13\x3e\xeb\x14\x39\x53\x2e\xd4\x92\x66\x18\x74\xb2\xdb\xdd\x6b\xd8\xa2\x5f\xfd\xef\x1d\xba\x09\x3c\xb3\x51\xdf\x49\xa9\x5a\x88\x54\xcb\x6c\x69\xca\xbc\xb6\xe9\xe2\xe4\x02\x8e\xb8\x96\x66\xf4\x95\x8f\x6d\x6b\x2f\x81\xd4\x8a\x99\x83\x80\x19\xda\xed\x36\x2f\xd8\x6e\xc7\xa3\xea\xea\x98\xa9\xa3\x85\x7d\x1d\x21\x2f\x20\xfc\x55\xc5\xe2\x20\xa2\x5b\xee\xd8\xec\x27\x17\xa7\x6e\xa9\x09\xd3\xae\x60\x52\xfc\xe9\xd5\x5c\x2a\xba\xaa\x56\x5f\x17\x59\xc2\x67\xaa\x2d\x33\x29\x82\x28\xef\x17\x75\x22\x08\x8b\xe8\xe3\xa1\x16\xca\x40\x54\x7a\x5a\x94\xd2\xdf\x47\x17\xdf\x2b\x1e\xc7\xb7\x7f\xc1\xa7\x5f\xdc\x28\x30\xf7\xbc\x23\x59\x2c\xda\xec\xaf\x11\x6f\xa4\x51\xb6\x2c\xdc\xf6\x2c\xd4\x86\x49\x82\x5a\x04\x51\x0e\x1b\x6f\x9b\x87\x53\xe9\x17\xf9\x58\xa4\xcc\xe7\x3c\x69\x3e\x17\x69\xd2\x7d\x82\x79\xea\x73\x1f\x8a\x56\xe8\x94\xd6\x41\x04\x85\xbe\x04\x31\xa4\xd0\xe0\x60\x8b\xcd\x02\x83\xcf\xb4\xab\xd3\xb2\x93\x64\x99\x6a\xc9\x98\x55\x16\x93\x43\x96\xae\xc6\x6a\x9e\xf4\x3a\x13\xd9\xf0\xb4\x7d\x62\x5b\x2a\xc4\x93\x29\x8b\xd9\xdf\x8e\x47\x71\x1c\x1f\x0f\xb5\x96\xc0\x59\x4c\x66\x37\x0d\x2a\xe6\xf3\x2f\x38\x48\xc4\x60\x31\x06\x12\x6d\xda\xa1\x17\xb2\xf9\x01\x53\x03\x8f\x9a\xb4\x8f\x74\x2c\x26\xe2\xc8\x1e\x72\xb5\x62\x2e\xfb\x2c\x93\xa9\xba\xdc\xc8\x03\x6a\xdc\xc5\x8a\xe9\xf6\x6e\x3b\x6c\xf1\xeb\xdd\x7a\x95\x69\xb7\xf6\x97\x24\x4f\x49\x7e\x35\xd6\x77\x69\xdb\x10\x6d\xc5\x9a\xbb\xe7\xe9\x7e\x97\xda\x35\x7d\xd7\x2b\x75\x9a\x00\xbf\xa1\xff\x59\xe4\x6a\x4e\xb2\xda\x55\x39\xfc\xca\x8b\xba\x2f\x10\x22\xaa\xc5\x66\xfc\xd4\xb5\x19\xdf\x25\x54\x9f\x7a\x84\xea\x7d\xaa\x0e\x98\x11\x71\xbe\x54\x08\xbe\x9f\xe6\x3b\x2e\x46\x64\x59\x7e\xf9\xc3\x02\x8e\x98\xc7\x11\xb8\xe5\x1d\x69\x96\x19\xa2\xdd\x48\x77\x0f\xd3\xec\x1a\x7e\x2a\xd6\xc0\x56\xaf\x92\xaa\xea\x24\x1d\xed\x1e\x84\xc3\x78\xb7\xea\x54\x78\x56\xe4\x69\x47\xe8\xb0\xfa\xdc\x21\x8f\x73\xb5\xd0\xb3\xce\xd7\x42\x45\x9c\x6a\x0c\xb6\x78\xd7\xb0\x45\x83\xdb\x8b\x36\xa2\x12\x3d\x4a\x04\xd4\x7c\x54\xfa\x1b\xfd\xfa\x8c\x88\x2a\xfe\x19\x11\xb9\xc2\xa6\x5b\x38\xa4\xb9\x40\xf1\x20\xc5\xcf\xc5\x1d\x91\x04\xf2\xce\x29\x05\xf3\xce\xa9\x04\xf4\xce\x29\x3f\xf9\x54\xe3\x13\x72\xe7\x54\xf9\x0b\x4d\x64\x3b\x5c\xa1\x57\xb1\xfc\xb1\x4c\xee\xf5\xe8\x81\xa4\x07\x70\x8e\x65\x9e\x38\x04\x84\xcf\x90\xef\xe4\x5f\x24\xd5\xc2\xbc\x08\xd7\x37\x94\xff\x52\xfc\x98\x56\xfa\xf2\x37\xe3\xb7\x09\x82\x7e\xe0\x86\xdc\x7d\x4d\x7e\xba\xef\x9a\xfc\x4f\x49\xb5\xd8\x17\xfd\xbc\xe5\xce\xfe\xd0\x4b\xf5\xfb\xde\x4b\x75\xda\xb1\xef\x56\x1d\x8e\xf3\x5b\x5c\xaa\xf3\x0a\xc6\x9d\xba\xd6\xb8\xef\x52\x5d\x1b\xbb\x7e\xab\xee\xad\xb5\xfb\x5a\xbd\xa5\xca\xce\x7b\xf5\x96\x3a\xb7\x92\xf2\x17\xaa\x8d\xb6\x9b\x75\xfe\x02\xc6\x01\x57\xeb\x5a\x63\xa1\x39\xfd\x5a\xc7\xfa\x7a\x89\xbb\x75\xa3\x70\xeb\xd5\x3a\x6c\x25\x7b\xdf\x39\x1b\xcd\xd8\x88\xff\x2c\x11\x11\xdb\x76\x89\x07\xf7\x3d\xea\x4e\xdb\xb4\xc4\xa3\xfe\x3c\x64\x6d\xda\x17\x45\x03\xef\x96\x8b\xa2\xbb\xaa\x4d\x74\x5f\xb5\xdf\x90\xc5\xf0\xf8\x7f\x0d\x95\xff\x97\xcf\xcf\xec\x54\xf3\x33\x83\xfb\xce\xc9\xfe\x3b\x11\xcd\x8a\x57\xb1\x8a\xd2\x46\x93\x1b\xbe\xce\xc3\x61\x1c\xc3\x25\x27\xb0\xd9\x10\x48\x5f\xab\x00\xa1\x43\x47\x9b\xab\x35\x49\x47\x52\x97\x40\xbf\xfe\x8c\x6f\x7a\x32\x81\xa4\x48\x56\xd2\xaa\x83\xc9\xe2\xc8\x32\xeb\x85\xee\xff\x48\x5b\x64\xbf\xba\x5d\xa7\x61\x96\xce\x9a\x65\x2b\xa8\x5a\x60\x9f\xa8\x26\x4b\xfc\xb6\x4e\x96\xab\x51\x5e\x5c\x87\x11\xaa\xea\x64\xf6\x61\xa4\x28\x83\x59\x3c\xea\xb3\xfc\xa6\x89\xcc\x8b\x64\x53\xd7\xc6\xb4\x30\x16\x9f\x01\x33\xa3\x73\x1b\xac\x94\xba\x27\xe6\x37\x78\x22\xfe\x02\x68\x92\xd8\xbd\x1f\xfc\x94\x41\x6d\xf5\x96\xe2\x41\x83\x1e\x0c\x22\x97\xdd\x5d\x82\x91\xca\x3f\x1b\xaf\xeb\x5e\x1d\x9d\x3a\x57\x47\x87\xf0\xc3\xfb\x50\x76\x99\xac\x14\xb3\xba\x4c\x56\x5f\x9e\xab\x65\x8d\x7e\x0e\x4b\xbb\x4c\x56\x9f\xc1\xcf\xb6\x73\x8e\xed\xec\xac\x7a\x7f\x23\x66\xd0\xee\x61\x65\x79\x71\x71\xe4\xbb\x7c\x5f\x5e\xa4\xf8\x5f\x0f\xa9\xf6\xdf\xf8\xd2\x71\x91\xf9\x0d\x33\x90\xa1\xeb\x8b\xc4\xaa\xb0\xa7\x99\xb8\x30\xcc\x7b\x31\xb2\x78\xf8\x0c\x30\xf1\xa8\xd8\x99\x26\x2e\x20\xcc\x26\xc6\x4e\x6f\x04\xa7\x4f\xbd\x0a\x7a\xfb\x96\x5e\x1a\xfb\xb0\xa0\x39\xb7\x59\x7e\x51\x89\xae\xbf\x6c\x75\x42\xa6\x0d\xf8\xbb\x51\x48\x99\x6c\x7e\xc4\xc7\xd6\xed\x1e\xc1\x20\xba\x5d\x6b\x02\x94\x79\xc9\xac\xc8\xab\x22\x03\xdb\x03\xce\x0e\x6d\x78\x5a\xff\x3a\x29\xf3\x30\x78\x8c\x57\x25\x9e\x31\xb6\x6b\xd4\x79\xf3\xf6\xaf\xaf\xfb\x6a\x82\xa3\x4e\x5a\xe0\x2a\xbf\x5b\x77\x92\x2c\x2b\xae\x99\x2f\x09\xc9\xaf\x58\x50\x90\xa0\x77\x37\xa0\x40\x05\x1d\xae\x36\xe8\x24\xf9\xcd\xb2\x28\x71\xbf\xf3\x43\x85\x3b\x37\xc5\x5a\xba\x90\xb1\xe0\x3d\x21\x4d\x79\xb7\x20\x55\xc4\xce\x27\x9c\xa4\xfd\xbb\x51\xc3\x87\x65\x2e\x93\x52\x26\xd3\x2c\x16\x7e\xd1\x83\xfe\x62\xba\xec\xfd\x2f\xd2\xa9\x0c\xe7\x72\x0a\xa1\xb4\x17\x1f\xdb\x26\xe2\xa5\x63\x09\xe0\xe8\x1f\x8d\xa5\xbf\x73\xea\x5f\xfc\xc4\xb7\xf0\x77\x4e\xa3\x56\x19\xf1\xce\xa9\x90\x12\x13\xb6\xfc\x77\x4e\x0d\x04\xb8\x73\x0a\x28\x00\xb7\x1a\x09\x3c\x8b\xcc\x7a\x02\xe7\x80\x04\x1e\x55\xd6\xe2\x22\x1b\x21\x90\xa5\xe9\x4e\x22\xc2\xcf\x89\xbb\x0c\x88\xd6\xc3\xd4\x4d\xc3\x48\x2f\x47\x91\x8a\x3f\xbb\x76\xf9\xb3\x78\xad\x8d\xc7\x29\x7d\x24\x00\x8b\x8d\xea\xf2\xc5\x20\xd8\xe3\x77\xee\xc1\xf3\x43\x77\xee\xb1\x91\xde\xfb\xce\x58\x60\x79\xac\xde\xb9\xc7\x10\x9f\x87\x0e\x52\x05\x26\xe4\xce\x3d\xf6\x80\x1e\xb7\x73\xb1\xfb\x66\xf9\x8d\x18\x47\x71\xf9\x73\x24\xee\x2d\x21\x45\xdc\x2f\x28\x5c\xb0\x54\x89\x63\x41\x3b\x78\x94\x1d\x8e\x6c\x48\x43\x9e\xa6\x89\x1a\xcf\xee\xef\x5f\x5c\x30\x99\xe5\xe2\x22\x16\x6d\x28\xcb\x0f\xa7\xb4\x43\x93\x4d\xae\xdf\x63\x94\xae\xdb\x82\xfc\x53\x9a\xa5\x1f\x62\x1d\x71\xa8\x3d\xc6\x2d\x6c\xd0\x75\x4e\xff\x4b\x88\xcb\x2c\x94\x2f\x3f\x3a\x5b\x8e\x1c\xad\xcb\xb1\x57\x62\xde\x67\xa5\xee\xad\xb4\x5b\x9e\x6e\xa9\xb2\xf3\x4e\x7a\xd3\x34\x6d\xf5\x0e\xbb\x84\xa7\x5f\xca\x1e\x97\x15\x55\x07\xc6\xbe\xb6\x0f\x93\xd7\x05\xe5\xa6\x78\xbf\x5f\x60\x6f\xe9\xb1\xf5\xb2\xfc\x16\xb7\xe2\x3a\x73\x36\x99\x8e\xad\xd8\x84\x7c\x62\x76\x5c\x9e\x76\xbb\x60\xe1\xe1\x0d\xab\x24\xb4\x74\x20\x50\x09\xc3\x9d\xd1\x07\x7c\x03\x42\xc1\x08\xee\xd3\x59\xf0\x26\x6e\xc5\xca\xd9\x08\xeb\x81\x36\xfb\x56\xd4\xe1\x2c\x3f\xeb\x76\xdf\x7d\xe7\xcd\xbe\xef\x17\x71\xca\xd9\xfd\xbd\x78\x38\x8d\x0f\xc3\x23\xb5\x48\xbe\xd2\x92\xa0\xa5\xe9\xa6\x13\x12\xc6\x6f\xf4\x26\x39\xd4\x93\x59\x52\xd5\x46\x02\xf3\x4b\xd0\xbe\xcb\x64\x86\xcd\x04\xa0\xf9\x56\x1a\x3c\x7e\xfa\xdb\x28\x2d\xd5\xf7\x03\xeb\xfb\x1b\xeb\xfb\xf7\xd6\xf7\xb7\xd6\xf7\x1f\xac\xef\xe1\xe0\x0b\xe8\x10\xda\xac\x5d\x3d\x2a\x9b\x96\xd0\x35\xbe\x07\x20\x77\x05\xd8\xb9\x7f\xcb\x00\x3b\xf7\xf7\x07\xd8\xb9\xaf\x29\x3e\x1c\x4b\xc3\x07\xa6\xa5\x21\x58\x69\xda\x05\x84\xd5\x66\x8b\x35\xe2\x83\xfd\xd6\x88\x0f\x0e\xb2\x46\x7c\xe0\x58\x23\xba\x2e\x71\x76\x79\xd7\x45\x0e\xea\x19\xae\x71\x6e\x25\xc3\x55\xae\xfd\x9c\x7d\xe0\x9c\xb3\x74\x57\xc5\x16\xa2\xda\x2b\x9c\x58\xa3\xff\xbd\x5b\x84\xee\xbd\xd8\xc2\xe7\x96\x27\x54\x62\x0b\xcd\xdd\x62\xce\x8a\x50\xe4\xb7\x8b\x71\xa5\x50\xcc\xc8\xcd\x45\xd0\x63\x3a\x9f\x5e\x70\x2c\xf6\xc2\x9a\xd2\x90\x78\xa0\xc5\x4e\xc2\x38\x15\x2f\x5d\x94\xe1\x81\xe2\xbe\x10\x00\x0c\xb9\x9f\x0a\x39\x73\x52\x56\xb5\x14\xfa\x3b\x75\xc1\x52\x39\x95\xe9\x68\x86\x49\x81\x16\xe8\x80\x81\xf0\x12\x5f\xb7\xf5\xfe\x94\x79\xd6\xd2\xc6\x64\x03\x9d\xbb\x1c\x0f\xee\x8e\x3a\xaf\x33\x9c\x54\xb8\x43\xf7\x3d\xed\xec\x6e\x8e\xaf\xef\x76\xe8\x29\x43\xf9\x03\xc4\x04\x41\xbe\x1b\x75\x00\x84\x67\xb1\x3a\x55\x13\x5d\x91\xd1\x0f\xf6\x71\x39\x0e\xa7\x25\x25\x25\xcb\x48\x33\x8d\xf9\xb4\x8b\x17\x3f\x40\xd3\x16\xb3\xbf\xc2\xde\x4a\x8b\x4c\x30\x99\xee\x0f\x36\x10\x00\x1b\x95\x06\xf0\x34\x48\x43\xe6\xcc\x9e\xf3\x28\x8e\x95\x7b\xaf\xa5\xcf\x91\x19\xd1\xc6\x5a\x73\x16\xf9\x92\x71\xf4\x7a\xdc\x19\x3e\x2a\x51\x9c\xad\x4f\xe3\xba\x15\xb3\xe8\x74\xb2\xed\xa6\x11\x7c\x0b\xdb\x41\xf4\xcf\x58\x93\x41\xe3\x24\xcb\xe4\x37\xdb\x1c\xf4\xcf\xd8\x7a\xac\x23\xe6\xa0\x8d\xcd\x30\xf5\x31\x37\x45\x15\xa9\xda\x73\x18\xda\xba\x8e\x84\x56\xfb\x82\xa4\x23\x65\x52\x24\xb4\xa5\x23\xfe\x2f\x82\x45\xd0\x4b\x80\x79\xaf\x96\x00\xc7\xb9\x51\x44\x2d\x93\x9e\xcc\x0d\xe8\x46\x8e\xf5\x91\xa5\xf2\x54\xcf\xa6\xf0\x80\x50\xe6\x13\x18\xad\x91\x3d\x90\x66\xae\x0f\xa1\x2e\xc0\x86\xca\x1b\xad\x43\x46\x8c\x60\x22\x35\x43\xaf\x59\x8b\xd9\xef\x47\xf1\x0e\x6e\x6c\x04\xd9\xd0\xb8\x26\x99\xc1\x99\xa8\x03\x10\x73\x91\x30\x97\x1c\xa4\x07\x2d\x89\x1a\x9f\x0d\x76\xb7\x6b\x8c\xb8\x2d\x6c\x98\x1b\x74\x82\x99\xa8\xf9\xa2\xa1\x08\x83\x37\x27\x58\xd4\x81\x11\x54\xa4\x19\x13\x2d\xd7\x20\xfe\x28\x83\xbe\x42\xce\x9a\xe8\x8f\x39\x30\xbd\x0a\x7b\xdb\xc4\x2d\xd8\xa0\x60\x4e\xf2\x24\xcb\x6e\xb4\xf6\xa4\x25\x89\xb6\xc0\xba\xf5\xa6\xbd\x7a\x63\xa7\x37\xdb\x54\x4e\x79\xb5\xc8\x48\x90\xf2\x49\x21\xa9\x93\xb1\x35\x40\x96\x99\x9f\xcf\x8e\xee\x33\xdb\x05\x7a\x0e\x8d\xd0\x76\x85\xcb\x69\x0b\x5f\x2c\x9d\x6a\x3f\xe7\x72\xef\xd7\x4b\xeb\x87\xb8\xd6\xb6\xbb\x12\x6b\x56\xfc\x8c\x28\x8a\x92\x9a\xe0\xdc\x7a\xb9\x66\x72\xf3\x2c\xa4\xa5\xe4\xd2\x7f\xf5\xe0\x7d\x0c\xdf\x61\x23\xe7\x35\xdb\xa0\x05\xd1\x62\xa2\xbf\xfc\xde\xff\xa7\x70\xce\x39\x34\x4a\xe5\x6f\xe1\xc6\xe3\xce\xf5\xe9\x7e\xe6\xda\x72\xf5\x39\xd4\x8d\x67\x9f\x6a\x69\x1f\x42\xd3\x05\xb4\x31\x9a\xb6\x7b\x6e\xd1\x20\x10\xc6\x0d\x7b\xfa\x5d\xee\x24\xc0\x79\x80\x36\x97\xb7\x1e\xed\x0b\xfe\x62\xb1\x98\xdc\xcf\x9f\x32\x7d\x14\x48\x2d\xce\x8b\x80\x40\x57\x06\xf0\x4e\x84\x32\x40\x8e\xcf\xa0\xf4\x7b\x42\x99\x68\x95\x54\xa4\xb5\x3d\x71\x4c\x3e\x47\xa7\xa0\x0e\xa5\x73\x0f\x31\xe5\x23\x99\x90\x69\xa4\x19\x44\xef\x3f\xb1\xf6\x11\x16\x21\xe0\x4f\x3e\x6b\x87\xee\xda\x91\xce\x7e\x18\xea\xfb\xe1\xc2\x83\xec\x43\x85\xec\x7b\x11\x54\x7f\xa0\x68\x17\x86\x1e\x8c\x9b\x17\xfe\xa5\xb4\x91\xab\x7d\x1e\x39\x59\xfe\x2f\x98\x48\x2f\x15\xef\x7b\x62\xe0\xb4\x4c\xa5\x54\xfe\x6b\xfa\x5f\xef\x5c\xca\xa8\x86\x52\xc7\xa9\x1e\x7a\xe0\x3a\xc7\x6e\x97\xdb\x5b\x9b\xce\x26\xe7\x7a\x90\x4a\xd3\xdc\xfa\x16\x0b\x64\xee\x4f\x6e\x22\xbe\x6f\x85\xe4\x61\xf4\x4f\xe6\x70\xcb\x68\xec\xae\x80\x1c\x4e\x01\x77\x68\x6a\xf3\xfe\xb3\x0d\xce\xb7\x3f\x77\x3d\x32\xd6\x3e\x44\xb5\xaf\xfe\xe9\xc6\xa8\xdd\x91\xb5\x8e\xd1\x2d\xe3\x19\x23\x63\x87\x6f\xed\x51\xb2\x1f\x40\xd6\xae\x3c\xac\xfc\x76\x3b\x26\x2b\x3e\x36\x3e\x6d\x48\x3f\xef\x95\x2f\x75\x82\xda\x21\x51\x3f\xd9\x8f\xcd\x7c\xa2\xa4\x44\x94\x0f\xe4\x7b\x32\x9f\x0c\x0a\xf3\xe9\x28\x86\xf0\x72\xc6\xe3\x54\xb6\x5e\xd5\xd1\xa3\x2a\xb3\xae\xea\x50\x00\x1a\x33\x64\xbd\x6c\x5b\x63\x17\xb5\x56\x4d\xf7\x3b\x7f\xd3\xbb\x07\x61\xf3\x9d\x3e\x3e\xf3\x5f\xf8\x3d\x34\xa1\x9f\x7e\x9c\xd4\xb8\x9f\x17\xd7\xda\xe3\x64\x02\xcc\x90\x1e\x01\x34\x3f\xea\x5f\x01\xba\x86\xa6\xdd\x29\xad\x17\x0b\x85\xb6\xbc\xf6\x6c\x7b\xf3\x4c\x77\x71\x2a\xf4\xcb\xae\x66\x5c\xe8\xd7\x8f\x10\x16\x52\x1c\x4c\xd6\xb3\x67\xa2\x13\xf1\xc3\xda\x15\x5c\x2e\xb3\xdf\xe8\x36\x7c\xc5\xc4\x37\x58\x12\x89\x2f\x71\x25\xe3\x06\x59\x13\x89\xf2\x92\x46\xb3\x7f\xd5\xbf\x3c\x35\x04\x31\x11\x09\x3c\xe2\x84\xf8\xd4\x2e\x97\x94\xbd\x9c\xaa\xac\xae\x80\x8c\x13\x46\x7c\x0b\x67\x12\x09\x34\x8b\x09\xf5\x2f\x7a\x3b\xa4\x25\xd8\x10\x0e\x6d\x10\x87\x36\x8c\x43\x1b\xc8\xa1\x0d\xe5\xf0\x9b\x2f\x65\xe9\x75\x8b\x8b\x28\x69\x73\xb4\xef\x1e\xca\xbe\xa5\xb8\xef\x2d\xc2\xed\xb4\xed\x5b\x91\xbd\xf7\x19\x9e\x6b\x91\x85\x6d\xf9\xec\xb9\x17\xd1\xec\xc7\xf7\x5d\x8f\x70\x3c\xdf\x77\x3d\xc2\xb0\x7f\xef\xed\x88\xef\x2e\xd0\xba\x0c\x54\xb1\x5d\x5a\x4a\xad\x4b\xcc\xdd\x28\x2c\x6e\xdd\xb3\x4a\x5e\x9e\xdd\xb3\x48\x3e\x21\xc9\xb3\x50\xb0\x2b\x63\x1b\x1b\x9d\xf5\xac\x6c\xd0\xac\x65\xd2\xf5\xac\x31\x2d\x3d\xd6\xee\x71\x6e\xf2\x99\x15\x9b\xcd\x50\xcb\x1a\x59\xba\xd0\x1c\x6a\x31\x7a\xd4\xf3\x74\x73\x72\x85\xd4\xab\xbe\x5a\xf9\xf9\x5c\xab\x30\x9f\xb7\xd6\x50\xa6\x79\xbe\x98\x6d\x52\x40\x81\xcc\xfe\xc5\xc5\xeb\x37\xaf\x5e\x3c\x7b\xfb\xe4\xe2\xd9\xcb\xb7\xef\xde\xfc\xf0\xe2\xc9\xcb\x77\x8f\xde\x3d\x7b\xf5\xf2\xe2\xc2\x30\xe9\xfb\x68\xb8\xc2\xee\xaf\x3c\x56\x91\x8a\x02\xfd\x82\x9e\x3d\x2e\x26\x4d\x0b\xa4\x31\x77\x87\x68\xae\xb0\xa6\x17\xaf\x6d\x07\x21\xeb\x44\xd1\xc6\xeb\xa2\x69\x38\x11\x5a\x51\x46\x04\x5d\xf1\xc5\x0d\xd5\x89\x89\xf6\xdb\x28\x23\xae\x64\xac\x34\xb1\x35\xd5\x4f\x33\xc2\xaa\xbc\xb8\xd1\x53\xd9\xbe\xa7\x7f\x9c\x54\xd1\x9c\xf6\xdb\x8a\xd8\x0a\x5b\x9c\xff\x6b\xe4\xc1\xbe\x66\x7f\xad\x74\x41\xff\xe4\xaf\x7d\x21\x9a\xcc\xc3\x3e\x8f\xad\xb8\xac\xc5\x7c\x1e\x17\xf3\xf9\x17\x88\x33\x2b\xf6\xd5\x4d\x3e\x33\xdf\x4e\x4a\x56\xf1\x32\x31\x23\xd9\xf2\x2d\x0d\xff\xb0\x40\x75\xbf\xac\x49\x89\x5f\x14\xe9\x3a\xc3\x61\x80\xe1\x39\xcf\x26\x0a\xa3\xf1\x57\x8a\x9b\xbf\x62\xc1\x05\x3d\x07\xcd\xc5\xf7\x49\x85\xbf\xb9\x1f\x43\x81\x3e\x7c\x81\xe9\x23\x2e\x2b\xca\xd2\x06\xa7\xfd\x61\xff\xf7\x50\xfa\x72\x3d\x9f\xc3\xc3\x7b\x7c\x17\x2d\x59\xb7\xf6\x16\x83\xd4\x3e\x07\x3a\xda\x40\xb5\x98\x83\x1a\x06\xf0\x1d\x44\xfd\xef\xd9\x0f\xc6\x2f\x5e\x7e\x73\x7f\xb6\x48\xca\x2a\x0e\x1e\x7d\x7f\xfe\xf8\xc9\xd3\x3f\xfe\xe9\xd9\xff\xf8\xf3\xf3\x17\x2f\x5f\xbd\xfe\xcb\x9b\xb7\xef\x7e\xf8\xeb\x8f\xff\xf6\xd3\xbf\x27\x97\xb3\x14\xcf\xaf\x16\xe4\xe7\x0f\xd9\x32\x2f\x56\xbf\x94\x55\xbd\xfe\x78\xfd\xe9\xe6\xef\x83\xe1\xe9\xbd\xfb\x0f\xbe\xf9\xfd\xb7\x7f\xe8\x9d\x70\x50\xbf\xb9\x5f\x27\x97\x8a\xb3\xbb\x24\x3c\xde\x7d\x1d\x6f\x9a\xb1\xe9\x4e\x7f\x49\x72\xdb\x91\xbe\x9e\xd0\x44\x0a\xd1\xa3\x3a\x24\xd1\x34\x26\xf2\x2a\xa5\x09\x05\xac\x70\x21\x36\x2f\x8b\xe5\xf9\x22\x29\xcf\x8b\x14\xc7\x9c\x73\xd6\xd3\xe0\x94\xb8\xbc\x58\xd7\x85\x06\xcf\x0c\x76\x39\xef\xf7\x3b\x11\x2c\x6f\x16\xcf\x58\xaf\xb4\xe2\xa3\x3a\x1c\x48\x2d\xc6\x6c\xf6\xdd\xf0\xf4\xdb\xb3\xd9\x68\x36\xfb\xee\x74\x70\xff\xdb\x33\xbd\x8b\x70\xf8\x87\xd3\xed\x6c\xf6\xf0\xe1\xc3\x6f\xa2\x9e\x99\x71\xfa\xed\x76\x36\xeb\x7e\x73\x2f\x1a\x19\xe9\xa7\xa7\xf7\xa1\xc2\xf0\xb4\x3b\x7c\xe0\xad\x44\x5b\xa3\x15\xdb\x1a\x54\x4f\x85\xcc\x66\xf1\x37\x0f\x1e\xdc\xfb\xa6\x17\x5a\xc0\x1f\x3f\x78\x70\xfa\x87\x6f\xa2\xaf\x87\x83\xd3\xfb\x56\xe6\x30\x3a\x7e\xf0\xcd\xbd\x53\x35\x40\x13\xbc\xfb\x03\x0e\xde\xb7\xdd\xdf\xb7\x41\x37\x3c\x6d\x03\x6f\x2f\xe8\x0d\x3f\x45\x61\x51\x4e\x26\xef\xd7\x8f\xbf\x1d\x0c\x8e\xdf\xaf\x1f\x7f\xff\xf4\xe9\x94\x7e\x9e\xc3\xe7\xd3\xa7\x4f\x9f\x4e\xb7\x93\xbf\xbd\xff\x44\xbf\x3f\xfd\xfe\xe9\xf4\x04\x8e\x7d\x73\x35\xd7\x52\x9a\x5a\xf7\x4b\xbc\xca\x92\x19\x0e\x79\xeb\x88\x2f\x7d\xd4\x08\x44\xc0\xf9\x8c\xa2\x8a\x42\x85\xd9\x4c\x5c\xd5\xa6\x19\xce\xe3\xc9\x00\x9d\xa2\xe1\x74\x32\x9b\x09\xf4\xf8\xdd\xbd\x29\x2a\xca\x34\xa6\x29\xc6\x04\x7f\xf7\xdd\xf0\x9b\x6d\xa8\x0a\x3e\x1c\x9e\x59\x65\x86\xd1\x88\x16\xfb\xd6\x28\x75\x6a\x97\x3a\xa5\xa5\x10\x6c\xc0\x89\x40\x6f\x81\xfe\x45\x99\xb2\x95\x88\x50\x4b\x0e\x5b\x07\x04\xd0\x3f\x8c\x4f\xcf\x82\x38\x18\xf9\x8b\x7e\x63\x94\x1c\xb6\x95\xa4\xa5\xa6\x12\xf3\x59\xe6\xcf\x05\xc9\xc3\x20\xe0\xb3\x78\x59\x17\x89\xa0\x59\xf4\xf7\x99\xda\xe7\x72\x25\xb4\xec\xf0\x32\x6a\x46\x9e\x22\x97\x72\xb1\x4e\x26\xef\xab\xf7\x6f\xa7\x9b\x21\xba\xd7\x9c\x5c\x21\xb9\x4a\xbc\x3f\xb1\x66\x40\xb9\xce\xdc\x75\x0f\xd7\x96\x62\x13\x4a\xea\x89\x67\x6b\xe6\x44\x05\x19\xe1\x3a\x8a\xa4\xa0\x1d\x06\x97\x8c\xee\x06\x3a\x94\x0a\xa5\xd8\x08\x28\x0a\xd1\x4a\x00\x8f\x8d\x42\x6b\xb4\x2e\x49\x95\xcc\xe5\x85\xee\x11\xff\x3e\xe3\x90\x87\xbc\xa7\x75\x14\x8d\xdc\x24\x6d\x1a\x7a\xef\x4f\xa6\x27\x57\x4a\x5c\x5b\xca\xa7\x25\x3a\xcb\x41\x1c\x07\xbd\xe0\x2c\x38\x0e\x46\xc1\x45\xd0\x68\xd5\xe2\x93\x2b\x24\x17\x07\x9a\xff\xe1\xcd\x33\xdf\xfe\xe0\x7d\xaf\x81\x13\x92\xfb\xf0\xb2\x2e\xd6\x4c\xcb\xfb\x06\x5f\x3d\xf9\xb4\x0a\x27\xc1\xe4\x3f\xff\xd7\xf1\x7f\xfe\xff\xa6\x93\xff\xf8\x5f\xc7\xff\xf1\x7f\x4d\x03\x14\x4c\xfe\xf3\xff\x7f\xfc\x9f\xff\xbb\x48\xd8\x9c\x36\x2c\xed\xff\x38\xfe\xcf\xff\x53\xa6\xdd\x6b\x82\x29\xc7\x94\x6d\x10\xa1\xe0\x2a\x88\xc4\xa6\x63\x1d\xe8\x5b\x6e\x16\x6d\xaa\x6b\xc2\x9e\x38\x50\x3b\x23\xda\xcc\x92\x0a\x77\xee\x8f\x58\xad\x55\x1c\xfe\xbe\x3b\x73\x36\x1d\xdd\x75\xdf\x6e\xc3\x6f\xee\x39\x79\x43\x96\x77\xea\xcd\x3b\xa5\x79\xdf\x6c\x3d\x39\xf7\x22\x54\xcc\xe7\x15\xae\xe3\xd9\xea\x98\x11\x52\x2f\x4d\x0c\xa1\x10\xdd\x70\x83\xa8\x07\x94\xb5\xe7\x2b\xd1\x1d\x0e\x4e\xef\x45\x3d\x4e\x5e\xd9\x80\xee\x8d\xbc\x2d\x0e\x1f\xb4\x0c\xcf\x3f\x84\x61\xeb\x10\x4e\x23\xa6\xfa\xa0\xe2\x82\xbf\xa7\x7b\x43\x7f\x4f\xde\xd6\x86\x91\x8c\xc5\x6c\xac\x9a\x6f\xe3\x72\xdc\x41\x7c\x89\x15\x95\x4d\xb1\x43\x65\x67\xea\xdd\x79\x6d\xcd\x39\x39\x8a\x33\x9c\xff\xee\x3e\xca\xe3\x90\x3d\x33\x7f\x06\x0c\xc4\x44\xc2\xc6\x20\x9e\xd2\xa5\x1f\x0d\xa2\x2d\x2b\x34\xf4\x15\x1a\xb2\x42\xa7\xb2\xd0\xa9\xaf\xd0\x29\x2d\xf4\x8d\x2c\x73\xcf\x57\xe6\x5e\x34\xd5\x88\xb2\x31\x9d\x39\x45\x82\x6f\x22\xe4\x24\x7e\xdb\x3d\x7d\xf0\xc0\x4e\x67\x69\xd3\x31\xd0\x51\xfe\x06\x33\x3d\x64\xf8\x31\x03\xc3\xdf\x49\x6e\x13\x7a\xd8\x71\x7a\x4a\x7f\x2b\x02\x98\xd8\xe4\x96\x66\x87\x89\x4e\xc8\x54\x91\xc4\x43\x6e\xef\x73\x72\x0b\xcb\x25\xc8\x2d\x5f\x3c\x9b\xdc\xca\xa6\xc2\x64\x3f\xb9\x4d\x74\x72\x9b\x20\x49\x63\x35\xba\xeb\x07\x93\xe2\x51\xc8\xc7\xc1\x01\xb2\x91\x49\x15\xe6\xa0\x0a\x62\x9a\xe8\xb4\xf4\xf8\x62\x27\x29\x3d\x0e\xce\x82\x5e\x30\x0a\x4e\x0c\x52\x3a\xf9\xdb\xa3\xe3\x7f\x4f\x8e\xff\x3e\x38\xfe\xc3\x7b\x4e\x8c\x83\x40\xc0\x91\x17\xe7\x45\x3e\xcf\xc8\xac\xb6\x0d\xf4\xbd\x7c\xbc\xf1\x15\x73\x5e\x5f\x2c\x34\x7c\x35\x56\xa1\xcd\x5f\x9f\xbc\x79\xfb\xec\xd5\xcb\x11\xe7\xff\x11\x9d\x88\x11\xfd\x83\xe8\x39\x34\xa2\x7f\x18\x7e\x41\xf9\x11\x0c\x1f\xd5\x05\xff\x06\xfa\x8e\xe8\x71\x35\x62\xec\x0f\x24\x88\x74\x79\x36\x8c\xe4\x2f\xda\xee\x7a\xc4\x36\x31\x34\x26\xda\x54\x83\x1d\xa9\x9f\x8d\x26\x7d\x70\xe5\x2e\x08\x1e\x42\x40\x36\xf4\xf4\x30\x37\x79\xf1\x24\x5f\x2f\xd5\x8c\x7d\x94\xc1\x3c\x79\xe8\x4e\xc4\x8d\x87\x2e\x33\x0c\xc1\x88\xd1\x75\x49\x6a\xf6\xc9\x8c\x71\x84\x48\x28\x53\x1a\x6b\xda\xfa\xf8\x53\x8d\xf3\x94\xbf\x46\xab\x2d\x8d\x17\x44\x8e\x2c\xda\xfb\xba\x81\x9a\xd1\x00\x01\xb8\x1e\x6b\x2b\x8e\x6a\x60\xc1\x19\x45\xe3\x43\x1b\x17\x8b\xe3\x36\x6d\x71\x0d\xe2\x74\x66\x26\x1c\x22\xef\x73\x7a\xfa\xe1\xcd\xb3\x1d\xe3\xd0\x7b\x01\x36\x20\x62\x26\x5e\x30\x32\x11\x29\x6f\x12\xbc\xc0\x35\x2e\xca\x60\x1a\x6d\x7c\xd8\xdd\x9c\x9c\x74\xce\x8b\xd5\x4d\x49\xae\x16\xf5\x48\xfd\xec\x9c\x0e\x86\xf7\x3a\x8f\x8b\xd9\x87\x9f\x92\x32\x45\x9d\xe7\xcf\xcf\xfb\x9d\x24\x4f\x3b\xb3\x22\xaf\x4b\x72\xb9\xae\x8b\xb2\xea\x7f\x75\xa4\xc1\xf5\x84\x4a\xcd\xfd\xbf\x4a\x77\x9b\x2a\x86\x14\xe6\x2a\xb7\x4a\x66\x98\x5f\x20\x84\x72\x77\x04\xc3\xfe\xa0\x3f\xe8\x5f\xe2\x3a\xe9\x9f\x06\x4d\xd4\x84\x11\xda\xd5\x60\x9f\x47\x73\xaf\xe2\x4d\x89\xf3\x54\x0f\x36\x55\x23\xd0\xf8\x40\x9d\x67\xc3\x6f\xf3\x88\xcf\x93\x4a\xe9\xd7\xdc\x16\xb4\xea\x07\x3d\x5a\x01\xac\x91\x74\x8e\x29\xd8\x6c\xc2\xfe\xd7\x67\x51\xd3\x04\x11\xc2\x71\x10\x88\x7d\x4e\xfa\x35\xae\x78\xa8\x51\x7e\x46\x57\x93\x7a\x1a\x75\xbb\x21\x8e\x49\x1f\x7f\xc2\x33\x37\x73\x32\x9c\x46\xc8\x4e\x95\x44\x8a\xa0\x6a\x82\xa7\x51\x83\x44\xe6\x68\x43\xf2\x59\xb6\xa6\x04\x63\x14\x90\xaa\x93\x17\x75\x87\xa5\xa4\x38\xed\x90\x9c\xd9\x59\x67\xa4\xaa\x03\x84\x3f\xe9\xe5\x4a\xcc\xe2\x9f\xa7\x01\x22\x39\xf3\x76\x62\xa9\xfc\x77\x00\xfb\xae\x5c\x82\xef\x6c\x20\x5c\x65\x97\x49\x3d\x5b\x74\x36\x9b\xa4\x86\xe5\xc4\x4d\x13\xa0\x64\x36\xc3\xab\x1a\xa7\xa3\x40\xf8\x3e\x89\x94\x00\xe1\xe5\xaa\xbe\x19\x05\xb3\x84\xd6\xbe\xc4\x1d\xf6\x1d\xa0\xcb\x2c\xc9\x3f\x68\xc9\xec\x3b\x40\x2b\x0a\x54\x5e\xab\x86\x78\x7a\x5d\x14\xcf\x8b\xfc\x8a\x41\x58\x17\x45\x27\x2b\xf2\xab\x4e\xb8\x4c\x3e\x91\xe5\x7a\xd9\x21\x55\x67\xb3\x61\x76\xdb\x4d\xd3\x91\x4f\x0a\x54\x11\xab\xf7\x76\x51\x94\xb5\xac\x58\xd1\xaf\x4e\xb8\x24\xf9\x9e\x9a\xd7\x65\x91\x5f\x41\x14\x22\xa8\xbc\xc0\x1d\x96\xc6\xcd\x98\x3a\x61\xb5\x28\xd6\x59\x4a\x81\x6c\x69\x22\x2f\xea\x47\x2f\xd7\x14\x8f\xe4\xba\x24\x9d\x9c\x25\x40\x66\xfe\x2c\xaf\xf1\x15\xcd\x96\xf3\x96\x77\x08\xa4\x05\xe8\x8a\xa1\x7d\xf9\x6e\x91\xe4\xaa\x00\x4f\xec\xd4\x8b\x24\x57\xfd\x1a\x85\x5f\x95\x4f\x7e\x59\x27\xd9\xbb\xa2\xa5\x56\x51\x76\x30\x2d\xd0\xa9\x0b\xbd\x05\x6c\x57\xf2\x15\xca\x70\x55\x99\x00\xd1\x14\x07\x1a\x51\xcc\x03\x8a\x2a\xdf\x02\x47\x51\x2f\xec\x41\xb3\x24\xa7\x93\x22\xd5\x10\xae\x48\x29\xae\x7d\xc4\x5a\x2d\xfa\x15\xa0\x75\x99\x69\xb3\xcf\x70\xbb\xf3\xc3\x9b\xe7\x41\xd3\xec\x25\x1b\xcc\xd8\x4d\x90\x23\x4e\x85\xe1\xac\x09\x37\xfc\xf5\x5f\x41\x8e\x35\x8a\x62\x5a\x19\x57\xb8\x0e\x6b\x04\x4d\x2c\x93\x0f\x18\xec\xec\x22\xbe\xbf\xaf\x68\x2e\xf3\xc5\x35\x61\x01\x5d\x19\xd4\x7a\x41\x3e\x91\x5c\xd2\x40\x52\x31\x08\x47\x2e\x61\x1f\xc4\x71\x2c\x1b\x0d\xb8\xfb\x62\x51\x56\x41\xd4\x9f\x15\xcb\x55\x32\xab\xc3\x88\x6b\x30\xbf\xbf\x09\x03\xde\x50\x80\x8e\x86\x11\x54\x01\xbc\x0e\xa2\x86\x1e\x2a\x70\xc8\x68\xcd\xf4\xff\x3b\x4e\x66\x8b\xbe\xa8\x16\x21\x52\x3d\xe3\x64\x03\xe0\xa4\x9d\xac\x6b\x9c\xf6\xf3\xa2\x56\xcd\x47\x4d\x84\xaa\x58\xa3\xb7\x44\xdc\xfb\xd6\xac\x57\x12\x8d\xeb\x7e\x89\x97\xc5\x47\x2c\xdf\x63\x20\xa8\x8a\x50\xdd\xd7\xfa\x5e\xad\xab\x05\x7f\x5b\x10\x3a\x13\x06\x8b\x45\x74\xa6\xce\x87\x65\x91\xe2\x6c\x54\x23\x01\xfe\x88\x50\x22\x56\xe3\xbc\xfe\x1e\x9c\xf8\x47\x01\x2b\xd2\x0f\x7a\xa4\x89\x46\x45\xd4\x20\x12\xeb\x0b\xc7\xac\x39\xe3\xba\xcf\x5e\xd2\x67\x21\x02\xc6\xc6\x69\xa0\x23\x87\x06\x5d\x56\xcc\x92\x6c\x52\x4d\xb7\xdb\x9d\xc5\xe8\x28\x6b\x3c\xa9\xa6\x0d\xc2\x7c\x6d\xd9\x20\x5e\x97\xc5\xa7\x1b\x81\x58\x35\xda\x08\xaf\x56\xcf\x1a\x9b\x51\xbd\xc3\xa8\x41\x17\xbe\xd2\x80\x3e\x0a\x19\xf8\x2c\x04\x11\xf7\xb2\x0a\x03\x59\x2d\x88\xfa\xd7\xa4\x5e\x14\xeb\x3a\x84\x47\xd8\xad\x21\xb3\x98\x09\x49\x96\x51\x34\x65\xef\x39\x90\x9c\xd4\x01\x7b\xd6\x90\x8f\xcb\x5e\xfe\x24\x23\x49\xa5\xf5\xd9\x44\x63\x77\x5a\x18\x52\xfb\x10\xbc\x46\x1b\xda\xc3\xc8\xf1\x06\x66\x6e\xc5\x21\xdf\x37\x58\xdf\x99\xee\x96\x15\x8d\xf1\xd2\xf2\x72\xad\x56\x45\xff\x8c\x6f\xaa\x78\xd3\x40\x01\x35\x98\xd8\xd9\xa9\x08\xa6\xc5\xb7\xb9\x68\x8f\x01\x3d\xca\xf5\x46\x18\x07\xb3\x69\x78\xd7\x97\x6b\x92\xa5\x7f\x95\xcd\x0b\x88\x34\xac\x98\x17\xe5\x93\x64\xb6\x08\x75\x3c\xac\xfb\x49\x9a\xca\xed\x20\x98\x8f\xc9\x14\x1c\x88\x90\x8b\xb2\x0e\xd4\xe3\xbd\xdd\x90\x68\x43\xe4\x46\xa7\xa3\x93\x1f\xdd\x6e\x58\xc5\xcc\x93\x61\x96\xd4\x21\xe1\x93\x1d\x45\x30\x59\x7c\x04\x94\xae\x69\x5c\x91\xac\x8c\x28\x77\xcc\x4b\x36\xc8\x1a\xbe\x83\xa3\xec\x2e\xa0\x06\x26\xc5\x9c\xc2\xc8\x4e\xa0\x2c\x90\x29\x76\x02\x41\x38\x53\xf3\xfc\x66\x9d\x61\xd9\x59\x58\x47\x23\x95\x05\x65\xf5\x4c\x0e\x9c\x51\x67\xe4\xcc\x2c\x03\xb0\xf2\x01\x48\x19\x35\x1f\x8c\xd6\x8d\x61\x15\x75\xbb\xf6\x5a\x68\xd4\x8c\x84\x55\x64\xd3\x2f\xba\xc4\x92\x84\xd5\x22\x0a\xea\xc8\xd3\x19\xa5\x25\x91\x18\x89\x35\x44\x63\x2c\x82\x68\xbe\x2c\x72\x60\xfd\xf9\xc9\x13\xc1\xec\xe9\xd8\x56\x03\x8e\x55\xd1\xa8\xe2\x42\x42\xd4\xa0\xdd\x44\x66\xdc\x42\x9d\x2c\x07\x13\x1e\xbb\x86\x70\xca\xcf\xb1\x27\x90\x04\x87\xa1\x5c\x9d\x90\xbc\x0a\x8f\x86\xd1\x99\x46\x7f\xb8\x51\x22\x89\x46\xa4\x39\x80\xe6\x69\x53\xfd\xa5\xe8\xdd\x01\x42\xc6\x2a\xa9\x6b\x5c\xee\x10\x5f\x98\x98\x4b\x66\x49\x46\xea\x9b\xd1\xc9\xdf\xc2\xe3\xed\xfb\x5e\x74\x16\x9e\x8d\xde\xa7\xbd\xed\xfb\x94\xa9\xbf\xc3\xb3\x11\x7a\x9f\x6e\xee\x35\x51\x2f\xa2\x39\xfd\xf7\xe9\xd7\xd1\xd9\x9d\x13\xce\x2f\x9f\xfc\xed\x7d\xf5\xf5\x9d\x93\x03\xa0\x71\x48\x9a\x03\x4f\x84\xf6\x1f\x6a\x9f\x59\x17\x4e\xba\xd6\xca\xb7\x00\x9e\x89\x9b\x7e\x0e\xcc\x7b\x4c\x68\x64\x29\x68\xe5\xba\x5a\xcf\x03\x97\xf8\x0b\x9f\xae\x94\xc5\x08\x48\xb2\x2a\xde\x04\x64\x1e\x8c\xd4\x59\xc0\xb7\x67\x9f\xcc\x83\x08\xad\x73\xca\xde\x7a\x72\x21\x23\xe0\x94\xb1\x0f\x6c\x88\xb1\xed\x78\x6c\x07\x20\xa2\xb0\xf1\x8c\xed\x14\x35\x48\x2b\x5f\x3d\x2d\xca\xc7\xfe\x51\xb8\x47\x67\xcb\x70\xfd\x47\x4f\x0b\x78\x2d\x20\x01\x9d\xd7\x19\x03\x4a\xdc\xfc\x90\xbd\x2b\x5e\x30\x02\xb7\x83\x51\x61\x1d\x07\xd1\x58\x9d\xb9\xad\xd0\x4f\x8c\x19\x9b\xd2\x53\xf8\xd0\xb2\xee\x3a\x53\x76\xf3\xc0\xca\x30\x2d\x14\x13\xab\x70\xe7\xf4\x9a\xd3\x32\x4b\xb2\x6c\x64\x1b\xf8\x06\x2f\xa9\xa8\xbe\x5c\x65\x78\x89\xf3\x1a\xa7\x47\x41\x83\x76\x09\x16\x9c\x3f\x75\xa6\x4b\x10\xd0\x33\x41\xd7\x47\x30\x81\x0d\x12\xe2\x82\xc5\xa3\x31\x21\x5c\x67\x2c\xa2\xdf\x86\xc4\x03\x22\x39\x84\xfe\x8c\x8c\x7c\xd4\xbd\x95\xb6\xeb\x9d\x73\x98\x67\x19\x4e\x24\x3b\x38\x4b\xf2\xbf\x4a\x90\xf8\x79\xcb\xec\x67\x05\x9d\xe2\xfd\x80\xd9\xb7\x9a\x3f\x29\xa4\x9c\x1d\x0d\x46\x47\x43\x7b\xc5\x64\xa3\x3a\x2c\x64\x1e\x0a\xcb\xa4\x23\xf1\x18\xa4\x43\x25\xb8\x12\xe9\x68\x20\x5f\x9e\xd0\x73\x27\x94\x84\x4c\xa1\x29\xa9\x2d\x8d\x5b\x1b\xe3\xc5\xf5\x49\x70\xb3\x43\xb5\x71\x91\x81\xb0\x4c\xa5\x17\x54\x4c\x5b\x78\x68\x27\x6d\x50\xb1\xe6\x27\x2d\x75\xa7\x67\x07\x94\x09\x39\x53\x06\x88\xc1\x90\xb5\x05\x12\xb0\x70\x20\xf3\xf0\xc8\x29\xc1\xa9\xa9\x31\xc9\x87\x4c\xa4\x55\xaf\x2d\xff\xd7\x4e\xa5\xd9\xcd\x2d\xe7\x92\x57\x9e\x9e\x1d\x1d\x52\x2a\x8c\x46\x47\xfb\xe6\x53\x80\xd3\xb8\x6a\x86\xfd\x0c\x40\xff\xd1\x65\x85\xf3\x19\xf6\x88\x5a\xd6\x21\xbd\xfb\x5c\x36\xc5\x37\x7e\x2a\xc6\x71\x7c\x34\xe0\xdb\xb5\xd2\x4e\xcb\x00\x51\xf9\xc9\x94\xbb\xc4\x41\xca\x55\xb9\x9e\x5a\x22\x2b\xf0\xf0\x26\x42\x01\xdc\x07\xfd\x6f\x18\x70\x3d\x63\x60\xc0\x43\x59\x69\x9b\x4e\x0b\xce\xf9\x09\xa3\x98\xbe\xb9\x96\xd8\x11\x6d\xb7\x3a\x85\xd2\xb8\x7c\xdf\x08\x3c\x5a\x9f\x43\x96\x83\xe9\x55\x93\xff\x07\xae\x88\xd2\x18\xef\x5b\x12\xa3\x77\xa8\x76\xb6\x73\x61\x8e\x2c\x88\xa1\x0e\x07\xf8\xc0\xd5\x1a\x05\xc3\x40\xb4\xd3\xd6\x4f\xb7\x3b\xdc\x5f\x64\x1f\xa4\x72\xfe\x7f\x4b\x34\x3a\xd7\x74\xfb\xbf\x16\x91\x8a\x92\x5c\x91\x3c\xc9\xe4\x1d\xa0\xcb\xca\x2a\x3d\x83\xf1\xd5\x0b\x74\x38\xf8\xc2\x9b\x78\xd9\xca\xbb\x3a\xd3\x62\x41\xe1\xc5\xeb\xd0\x87\xd8\xf2\x26\x63\xe4\x6d\xa8\xd1\x15\x1e\xaa\x16\x9f\xfe\xd1\x01\x98\x3d\x73\x07\x29\x9f\x06\x69\xc5\x6f\x0b\x43\x9c\xe1\x1d\x88\x68\xbf\x25\x12\x3d\x11\xb7\x49\xbf\x09\x29\xb2\x94\x3d\x3c\x26\xac\x6f\x29\x02\x92\x73\x81\x8c\xa7\xfd\xd6\xa4\x4a\x5e\xa3\xed\xa7\x55\x8c\x83\x46\xd5\xf8\x36\xc7\xc8\x99\x1f\x78\x16\xa4\xf6\xfb\x2c\xc9\x3f\xdc\x92\x72\xe9\xa9\x13\x3a\x59\xd3\xb3\x63\x4a\xa8\x00\xa6\x3b\x7d\x92\x6b\x4f\xfe\xb5\x41\x85\xdc\x56\x6e\x89\x63\x06\x1c\xfd\x32\xc9\xe9\x42\x84\x75\xec\x26\x4f\x06\x53\x54\xf9\xd2\x87\x53\xb4\x13\xc8\x87\x71\xbd\x87\xc0\x7e\x17\x57\xb7\x83\xfa\xf3\xb6\xc6\xd3\x82\xee\xf7\x7f\xc4\xbe\x80\x0b\xe8\x96\x8d\x71\x4d\xea\xc5\x3f\x76\x6b\xc8\xdb\xe3\x2f\xc9\x57\xfd\xb6\x1b\x82\x4d\xd2\xb4\xdb\x3d\xf2\x25\x6b\xd7\xf7\xed\xe0\x7d\xfe\x2e\xe0\xaa\x48\x0e\xbf\x95\x7a\x48\xdf\xff\x00\x32\xff\x2c\xff\x7f\x29\x99\x97\x56\x15\xff\xc2\x64\x3e\xfe\x17\x25\xf3\xbb\xa1\xfc\xae\xe6\xa2\x56\xeb\x41\x50\xdd\x12\xea\xcf\xdb\x1a\xfc\x7d\xac\xcf\xdf\x17\x02\x6f\xe6\x3c\x0c\x95\xda\x23\x01\xb7\x13\x31\x95\x06\x1c\x6c\xff\x06\x21\xd5\xad\xb6\x87\xaf\x15\x99\x07\x02\x5f\x1d\x0f\xc6\xf5\x77\x30\xd3\x90\x41\x79\xef\x30\x92\x71\x7c\x7b\xbd\x88\xaf\xa0\x91\x3f\xa9\xa7\xbc\x6f\x4b\xf4\x9a\x54\x53\x93\xd6\x4d\x2a\xfb\x56\x0f\xec\xda\x8c\x63\xdc\xd1\x93\xab\xca\x5e\xb5\xf4\xd8\x18\x6e\x5d\x7c\xc0\x39\xf9\xbb\x78\x81\xd2\x49\xd6\x1c\xd3\x35\xdb\x0d\xf6\x52\x61\xcd\xac\x70\x1b\x74\xfe\xa7\x27\xe7\x7f\x7e\x3b\xa2\x33\x1c\xc4\x71\x80\xb8\xf5\xd0\x28\x78\x48\x3f\xc0\x08\x69\x14\x7c\x17\x07\x0d\x7a\xf1\xe4\xed\xdb\x47\x7f\x7c\xc2\x0b\x6b\x46\x44\x5a\x2d\x61\x94\xa4\xd5\xe5\xf6\x4d\x41\x83\xae\x30\x15\x75\xd6\xb8\xd5\xa2\x44\x0c\xde\xb9\x0f\x85\x99\xf3\x8a\xc2\xaa\x4e\xb4\xdd\x0e\x46\x56\x5a\x83\xb4\xd5\xf3\xe8\x5d\x01\xbf\x3f\xd0\xa5\x65\x35\xc5\x18\x29\x21\x5c\xe0\xd9\x87\x03\xab\xc1\x2c\x46\x0d\x02\x02\xfb\x02\xfa\x7c\xea\xbb\x76\x45\x24\x06\x3b\x1f\x79\x95\xc2\xe6\x24\xac\xa3\xc6\xba\x91\x15\x44\x99\x4c\xaa\xa9\x8d\x6a\x63\xcf\xb4\x49\x0c\x9f\x18\x43\x99\xd4\x53\xaf\xf9\x86\x7d\x28\xd8\x95\x10\x91\xe3\x61\x34\x9b\x0f\xaa\x4d\x79\x2d\x2f\x8b\x2a\x58\x26\x7b\x26\xc2\x80\x54\x81\x45\x42\x39\xda\xb4\x55\xe0\xd9\x81\xd2\xf9\xb7\x1c\x4e\x88\x8c\xa5\xa1\xe3\x61\x27\x54\xb4\xff\x84\x0a\xad\x61\x71\xba\x6c\xc1\xbe\x87\x18\xbb\xf3\x17\x46\xd1\x98\x3d\xd8\xc0\x9e\x59\x90\x8b\xcd\x31\x88\x93\x1c\xf8\x9a\x90\xa9\x79\x68\x11\x76\x17\xc4\xac\x33\x65\x44\x91\x80\x2f\x42\xd0\xf3\xd3\x80\x3d\x13\xc1\xe9\x5d\x2f\xe8\x04\xbd\x8a\xfd\x35\xd1\x92\x44\x11\xaa\xc3\x3d\xfa\x3f\x67\xe9\x48\xf4\x99\xc7\xce\x4b\xed\x22\xf9\xd7\x1f\x3e\x88\x78\x8e\x1f\x7d\x9a\x98\xf2\xe4\xcc\x48\xd9\x34\xa3\x1d\x4c\x9c\x20\xe1\x21\x31\x10\x07\x59\x4d\xd8\xcb\x16\x1f\x0d\x22\x14\xee\x3e\xb3\xb6\xdb\xdd\xf9\x7d\xfd\x92\x3d\xb2\xf1\x53\xda\x01\xb7\xb4\x6d\xc1\xa4\xd9\x0d\x1b\x77\xf7\x07\xf0\x8e\xca\xf4\xd3\xd1\xf8\xf8\x4f\xc6\x7e\x91\x67\x37\xdc\x1c\xb4\xdb\xdd\x33\x48\xa3\xac\x7f\x88\x7a\x19\x0f\x8e\x78\x01\x16\xe6\xa8\x36\xbf\x8b\xc4\xcd\xb8\x43\xcb\x85\x91\xd0\x24\x60\xf6\x97\x01\x33\xb9\x9c\x0a\xc6\xa1\xd2\xf9\x04\x12\x57\x8c\x5e\x56\x2f\x93\x97\xa1\xb5\xf2\xd1\x61\xc7\x3d\xf1\x1f\xf7\x2d\xac\x06\xa5\x03\xbb\xe7\x11\x48\x85\x57\x17\x42\x50\xcb\x88\x1d\x9c\x62\xc7\x94\xdd\x73\xe4\xc7\x23\x8a\xe4\xfb\xd7\x82\x98\xd3\xdf\x82\x2f\xac\xdf\x6e\x37\xc5\x19\xae\x71\xc7\xcd\x8a\x14\xdb\x22\x2d\x7b\x63\xca\xbc\x18\x66\xc5\x0f\xdb\x2c\x87\x29\x67\xa3\x8c\x7d\xbf\xf3\x9a\xf4\x32\x86\xa7\xf5\xb4\x41\xf8\x37\x38\x6f\x6e\xc1\xd3\x5b\xb4\x60\x2c\x1e\x00\x6a\xb7\xdc\x31\x2a\x1c\x22\x7d\x47\xe2\x76\xd7\xb3\x89\x99\x2a\x7f\xbb\x3d\xf9\xdb\xa4\xf7\xfe\x78\x7a\xf6\x3e\xed\xdd\x39\xf9\xbc\x36\xd3\xb4\xdb\x5d\x25\x65\x85\x9f\xe5\x7b\x2a\xa3\xe1\x20\xfa\xdd\x69\x1c\xc7\x83\xe8\x56\x13\x55\xa4\xa9\x9a\x1f\xa3\x08\xdd\xd0\xb7\xeb\xfd\xe8\xd6\xbd\xd3\x3e\xb4\xe3\xbe\xb6\x8f\x7b\x6c\x1c\xf7\xad\xa2\x45\x4d\x37\xf3\x11\xd0\x17\x06\xf0\xd3\xac\x48\x5c\xfe\x37\xea\x76\x49\xf5\x94\x9e\x85\xd8\xc9\x3b\xab\xec\x26\x47\x66\x5f\xed\x6c\x35\x33\x9a\xdc\x53\x26\x42\x64\x27\x5b\xd2\x36\xb1\x8c\xe3\xc0\xc0\x7d\x44\x88\xec\x63\x34\x5c\x4e\x77\x2a\xd8\xa9\xdb\x61\x85\x42\xe6\xcf\xa9\x6e\xec\xbe\xcf\xe2\x73\x5e\xb3\x4b\xda\xdf\xf6\xaa\x33\xb4\x98\x92\xbd\x3a\x25\xef\x68\x0f\x39\x61\x85\x27\xcb\xe2\xcb\x29\x46\xff\x01\xda\xbf\x1f\xca\xec\x16\xd3\x5f\xe2\x2b\xfc\x69\x35\x62\x51\xd5\xe1\xf7\x05\xe1\x9f\xbb\x57\xc6\x63\x64\x6d\xab\xec\xa2\x5f\xab\xcf\x5b\x97\x99\xc3\xd9\xec\xe8\x97\x79\xd6\xcd\x8a\xac\xf2\xf7\xac\xb2\xd1\x24\x58\xd4\xf5\x2a\x40\xec\x9f\x2a\x98\x82\x83\x58\x1d\x07\xe1\xe9\x83\xc9\xe0\xf8\xc1\x74\x7b\x3a\x19\x1c\xdf\x9f\x4e\x06\xc7\x7f\x98\x6e\x27\x83\xe3\x21\xfc\xe4\xdf\x43\xf5\x93\xfe\x8d\x02\x54\xc5\x41\x18\xf4\xea\x5e\x10\xbe\x7f\xdf\x67\x3f\xa2\xcd\xbd\x26\x0a\x10\x89\x83\x70\x92\x1c\xff\xfd\xd1\xf1\xbf\x0f\x8e\xff\xf0\xfe\xfd\xf1\xb4\xf7\xfe\x7d\x3f\xea\x89\xc4\xe9\xe6\x14\xd1\x72\x38\x0e\x7e\x47\x1b\x4b\x8e\xe7\x8f\x8e\x9f\x82\xbf\x7e\x11\x07\xb2\xe6\x9d\xf7\xef\x8f\x2f\xfa\xbd\xa3\xaf\xef\x86\x11\x1a\x8f\xfe\x7b\x37\x0e\x50\x4e\xdb\x0e\x7a\x45\x2f\x98\x6e\x19\xb9\x89\xbe\x0e\x50\x19\x07\x7f\x0b\xc6\xee\xe4\xa4\xc5\x32\x21\xf9\xab\x3c\xbb\x09\x22\x90\x0f\xca\x5e\x4c\x46\x61\xd9\x03\xd0\x77\xcd\xa6\x0a\x12\xd0\x0b\xa2\xd1\xfb\xf7\x27\xef\xdf\x9f\x04\xc8\xad\xc2\xce\xfd\x1f\x2a\x5c\xbe\x4e\xaa\x8a\x77\xd3\xed\x42\x17\xda\x2c\x58\x63\xe9\xc6\x02\xfc\xde\x7f\x8f\xce\x82\x08\x95\x3d\xcf\xe2\xb2\xb6\x9f\xad\x04\xf0\x14\x66\xd2\x0b\xb6\x4c\xbc\x8b\x82\x11\xff\x8e\x5a\xc1\x7a\x5d\x94\xb5\x05\xd2\x88\xad\x5e\x4f\xf4\x49\xd7\xee\x24\x40\x7c\x42\xf2\x1e\x7c\xd3\x1f\xd1\xd7\xd1\x59\x20\x8a\x9c\xf1\x39\x3f\x39\x93\xb3\xae\xe5\xfe\xb7\xf6\x5c\xd9\xcf\x1d\x0e\x24\xec\x37\xdd\x2b\xb1\x8c\xf4\x9c\x0b\x62\x64\x56\x6d\x6a\xec\xdd\xf7\xca\x1e\x9e\x2e\x8a\x5a\x26\x89\xf1\x6c\xc1\x21\x46\x0d\xfe\x0d\x0f\xa7\xce\x46\xf0\x24\xfe\x05\xd4\x5b\x97\x03\xe5\x8c\x56\x24\x8c\xe6\xd8\x36\xff\x1c\x00\xb4\x66\x45\x9b\xbb\x0f\xdf\x96\x86\xb8\xf1\xd5\xf8\xe4\xa4\xf3\x3c\xa9\xea\xce\xac\x58\x2e\x49\x3d\xea\x0c\x2e\xe7\xf3\x07\x97\xb3\x4e\x78\x3a\x18\xde\x3f\x1e\xdc\x3f\x3e\xfd\xa6\x33\x3c\x1d\x0d\xbe\x19\x0d\x7e\xdf\x39\x1e\x3c\x18\x0c\xa2\xaf\xbe\xfa\xca\x74\xb6\xfd\x8f\xff\xed\x74\x30\x3c\x3d\x66\x9e\xb6\x4f\x4a\xf2\xa1\xf3\x7d\x79\x93\xa3\xce\x4f\xc9\x6a\xd5\x79\x96\xcf\xfa\x68\x8f\xc3\xad\x0c\xeb\x86\x43\x8c\x94\x72\x11\x77\xbb\x75\xb7\x8b\xfb\x9f\x98\xd9\xed\x27\xfa\x13\xfc\x42\x6e\x54\x20\xb8\x5a\x32\xf8\x39\x2a\xc5\x6d\x87\xf6\x9e\xc8\x47\x82\xaf\xfb\xeb\x15\x15\xcb\xce\x8b\xbc\xc6\x9f\xd4\xfb\x6a\x4f\xc0\xc8\xd5\x76\x61\x89\x36\x75\x4c\xc0\xd1\x20\xc0\xbc\x48\x84\x72\x6e\x28\xc2\xeb\x22\xae\xbb\xbd\x90\x09\x39\x03\x36\xc4\x61\x8e\xca\x68\xbb\xe5\x28\x59\xae\xf3\x7e\x35\x5b\x60\x08\xc7\x05\x74\x3f\xd0\x65\x46\x78\x59\xe4\xaf\x14\x4a\x16\xc2\xee\x5d\x99\xe4\xd5\xbc\x28\x97\xa8\x46\x79\xff\x13\xca\xfb\xe2\x0a\x44\x76\x15\xe7\xd2\xf3\x05\x62\xab\xf2\xe3\xf0\x0a\xd7\x7c\x02\x2a\x2c\x1c\xfc\x9e\x93\xaa\x7e\x56\xe3\x25\xed\xa0\xd5\xc3\xe9\x20\x1e\x25\xc7\x61\x90\x92\xf4\x59\x5e\xe1\xb2\x56\x53\x47\xf7\x6c\x96\x54\x15\xb3\xa9\x1f\x4d\x20\xe2\xd8\x71\x46\xaa\xfa\x98\xd4\x78\x79\x4c\xe7\x3f\x98\x22\x09\x3c\x1c\xbd\xb0\x20\xaf\x45\x9a\xec\x1a\xf3\xbe\xe5\x50\xb1\x35\x76\xde\x31\xf3\x33\xb3\xd2\x46\xb5\xc3\x4d\xe8\x78\x15\x6d\x70\xff\x9a\x64\x99\x31\x00\x8a\x52\x4e\x62\x18\xe9\xe8\xc5\x2a\xda\x03\xa7\xf5\xec\x34\xbd\x1a\xe1\x58\x49\x50\x81\x32\xb4\x18\x93\x38\x77\x30\x8a\x74\xbb\x61\x26\xd3\x67\x80\x9c\x01\x9f\x6e\xfe\xe4\xcf\x1b\x3c\x5b\x97\x15\xf9\x88\xb3\x9b\x30\xa0\x80\x9e\x67\x38\x29\xdf\x00\x1a\xf1\xa2\xa0\xd1\x78\x34\xaf\x31\xcf\x78\xa8\x25\x7f\x8f\xe7\x45\x89\x21\x5d\x70\x8a\x33\xd5\x06\x4e\xcf\x17\x24\x4b\x4b\x9c\x4b\xf3\x26\xf6\x76\x0d\x45\x17\xd1\x44\xdc\xd2\x5c\x84\xb2\xb3\xb0\xe0\xf8\x04\x49\x10\xc0\x2d\x8c\x50\x11\x6b\x0a\xc6\x77\x05\x4f\x2f\x22\xc4\x5b\x73\x7b\x79\x38\x40\x0b\x4e\x33\xc1\x43\x46\x1f\x3a\x46\x47\xc3\x08\x91\x3e\xc9\x73\x5c\xfe\xe9\xdd\x8b\xe7\x71\x01\xbf\xf9\x05\x83\xf1\x15\x46\xa3\x8a\x76\x55\x5a\x33\x8e\x88\x9c\xdb\x24\x07\xcc\x79\x57\x84\x01\xc9\x1f\xbf\x7a\x11\x44\x3b\x7a\xaf\x69\xef\xd1\x48\xef\x3e\xe0\xcf\x91\xe7\x6a\xeb\x21\xa1\xd4\xa2\x9b\x4f\xf3\x2f\xc5\xe2\x10\x9b\x4c\x11\x89\x71\x9f\x8d\x1c\x26\xa4\x32\x1d\x7d\xc0\xf5\xb2\xc8\x6e\xe6\x24\xcb\xa4\x2f\x04\x98\x8d\x13\x64\x37\x48\x62\xc7\xee\x17\x8f\xc9\x59\x0d\x6f\x61\xe2\x68\x84\xfb\x09\xdc\xae\x46\x4d\x84\x6a\x2d\x84\x8b\x4b\x19\x04\x3f\x4d\xa9\x10\x67\x9c\x5b\xc8\x07\xda\x18\xb4\x74\xe4\x0e\xd3\x41\xe8\xc3\x88\xb2\x41\x1a\x75\x52\x74\x14\xc7\x54\xc6\x29\xad\x66\x11\x8e\x10\xa6\xdb\x90\x54\xb4\x89\xb2\xc8\x32\x8a\xe1\x7a\x31\x48\xa3\x25\x95\xfb\x5f\x89\xed\x78\x0b\x42\xe6\xd0\x29\xf5\xab\x7c\x66\x53\x6b\x42\x29\x0e\xef\xfc\x31\x49\xcf\x17\x49\x2e\x6d\xed\x0a\xe5\x26\xac\xe0\xd3\x41\x70\x9d\xb5\x58\x60\x2c\x0d\x79\x6a\x85\x3c\x63\xb1\xa3\xd6\x55\x72\x99\xe1\xcf\x5d\xa7\x9d\x34\x7d\xac\xf7\x0f\xcc\x02\xf8\xfc\x0a\x87\xa8\xb1\x12\x2f\xf4\x19\xe7\xc4\x98\x16\xe5\x0b\x17\x63\xe6\xd2\x41\x2a\x72\x99\x61\xcb\xa9\x43\xd6\xed\x0b\xd7\x5b\xe4\xdc\x42\x1d\x1d\x29\x26\xc5\x2e\x4d\x11\xb7\x05\xdd\xb8\xcf\x76\x1e\x73\x95\x89\x01\x13\x52\xae\xbe\xe3\xfc\x28\x8e\x29\xa5\xe5\xfb\x5c\xc8\x55\xec\x91\x15\xbe\xe3\x57\x25\xa6\xa7\xf0\xd3\xa2\xa4\x73\x8e\x43\x4a\x27\x76\xb6\x4a\x29\x09\xe9\x76\x89\x85\x7b\xb5\x07\xf7\x08\xc5\x3d\xab\x03\x3e\x4b\x7f\xde\x73\x5c\x91\x79\xc8\x02\xc1\x12\xc1\x32\x62\x19\xa7\xb2\x66\x74\x84\x07\xa1\xea\xd7\xc5\x0f\xab\x15\x2e\xcf\x93\x0a\x87\x51\x0f\xcb\x27\xc2\x51\x19\x0f\xc6\xe5\x77\x32\x98\x65\xd9\xeb\x09\x87\x9d\x7c\x52\x4e\x7b\xec\x39\xb6\xca\xe8\x42\x3e\xfc\xce\x42\xce\x43\x57\x69\x31\x63\xdb\x96\xe3\x86\x38\xed\x82\x94\x7c\xa4\xa7\x58\x5c\xf7\xab\xfa\x26\xc3\x28\x8f\x27\xc1\x8f\xf8\xf2\x03\xa1\xc8\xff\xa2\xf8\x7b\x80\x82\x57\x01\x0a\x96\x55\x30\x45\x65\x8c\xc3\xa0\x16\xac\x4d\x10\xa1\x8a\x26\xac\x70\x59\xad\xf0\xac\x26\x1f\x71\x40\xcf\x0c\xda\xe9\x51\x1c\x97\x28\x13\x3f\x2b\x8d\x58\x51\xdc\xfe\x13\xce\x56\xb8\x8c\x37\xb2\xa9\xd7\x65\xb1\x1a\x95\xc8\x64\x9d\x3c\x77\x9d\x85\x8a\x1a\x85\x11\x73\xf9\xc7\x00\xf6\xa4\x9c\xc6\x00\x59\x46\x11\x9f\x89\xb6\xab\x4f\xa8\xc3\xa4\xad\xd5\xa7\x28\xd0\x62\x42\x99\x35\xfb\x75\xb1\x8a\x59\xa1\x00\x89\xa4\x0c\xcf\xeb\x98\xb5\x10\xb0\x60\x0e\x0c\xae\x7b\x8f\x77\x41\x96\x1d\x06\xd9\xbd\xd4\x81\x0d\x75\x06\x14\xbc\xff\x9a\xa1\xd9\xb1\x2a\x34\xdc\x15\xd4\x2d\xd3\x49\x36\xdb\x8c\x8c\x60\x27\x69\xca\x4e\x3a\xe3\x46\xc5\x66\xb9\x38\xfb\x00\x41\x18\xe0\x71\xfd\x08\xe1\x7e\x8a\xab\xba\x2c\x6e\x6c\x56\x4b\x51\xf0\x82\x52\x6e\xe8\xf6\xa2\xba\xc9\x67\xe7\x92\xcf\x30\x5e\x0c\x35\xc4\x8c\x2c\xc4\x12\xc8\x67\x79\x8a\x3f\x05\xd1\x71\x16\xd6\x76\x9a\xaa\x5e\x2a\x45\x15\xa5\xc4\x79\x51\x93\xf9\xcd\x8b\x75\xcd\xd4\x3c\x14\x55\x71\x8e\xcb\xaa\xdb\xb5\xc0\x52\x55\x50\xd0\x52\x47\xef\xa5\x72\x26\x92\xf9\xc8\xd1\xfa\x7c\x2a\xf5\xe7\x36\x55\xe3\x74\x8e\x61\xe6\x9e\x96\xc5\xf2\x35\x93\x2f\xf4\x09\x2b\xf6\xb5\xeb\x3a\x14\x61\x16\x1c\x28\x0b\x71\xb4\xdd\xd2\x75\xe0\x0f\x0b\x32\x7a\x20\x67\x98\xae\xd0\xc2\x69\x91\x9e\x1a\x00\xdb\x79\x51\x62\x36\x5f\x29\xae\x61\x41\x05\x43\xca\xdf\x4b\x48\x9f\x88\x5a\xb1\x38\x6a\xd6\x79\xb5\x20\xf3\x5a\xa2\x00\x70\x5d\x99\x76\x70\x2e\x34\xae\x6b\x16\xbf\x48\xea\x45\x7f\x49\x72\x94\xf0\x9f\xc9\x27\xb4\x86\x9f\xf3\xac\x28\x4a\x94\xc2\xc7\x0c\x93\x0c\x2d\xe3\x5d\x7c\x17\x9a\xf3\x6c\xf1\xe2\x3c\x1f\x04\xf3\x07\xc7\x25\x1b\x09\x53\x21\x85\x51\x3f\x2d\x96\x2f\x92\x3c\x61\x6a\xe9\x39\x3b\x4f\x70\x9e\xc6\xfa\xe6\xa2\x5b\xeb\x4e\x18\xf4\x35\xf1\x68\x26\x9a\x0a\x22\x51\x25\xac\x29\xdb\x1a\x35\xc8\xa4\x7a\x3b\x04\x37\x7e\xe6\x9f\x53\x11\x6c\xd4\xce\x38\x20\xb9\x20\x7a\x49\x96\xd3\x26\xbd\x71\xc1\x4d\xfa\x22\xf0\x80\x25\xb4\x14\x23\x08\xc1\x14\xa9\x61\x8f\xe6\xa8\x9a\xd1\x33\xef\x5d\xb1\x1a\x0d\xd0\x65\x51\xd7\x14\xf5\x52\x16\xe2\x64\x80\x2e\xb2\xa4\xaa\x9f\xb0\xfa\x6c\x33\x8d\x06\x68\x05\x99\xe7\xcc\xa4\x66\xb8\x47\x17\xcb\x25\x50\xaf\x00\x0a\x05\x6f\xf2\x19\x1d\xaf\x5c\x9e\x1f\x49\x5a\x2f\xa4\xb3\x74\xb6\x5e\xe6\xac\x27\xc9\xb9\x49\x71\xc7\x24\x12\x32\x39\x49\xd3\x73\xd8\xfd\x26\xad\xa2\x5c\x60\x4b\x1e\x9f\xd4\x4b\x26\x22\xc9\x0a\xda\x98\x30\xb0\xf2\x9c\x13\x55\x64\x11\xd9\x2c\x29\x13\x39\x19\x1b\x7f\xf7\xbb\x94\x7c\xec\xb0\x25\x8a\x03\x2f\xee\x3c\xbc\x1b\x19\x5e\x2a\x8c\x4c\xb2\xba\xc1\x77\x27\x29\xf9\xf8\x30\x88\x1a\xe4\x88\xb8\x96\xfb\xa8\xc6\x83\x2d\x30\xb9\x5a\xd4\x41\xb4\xdd\x6a\x89\x65\x71\xfd\x27\x9e\x1e\xa9\x27\x96\xf9\xcb\x7b\x8f\x3a\x02\x4f\x3b\x22\xce\x11\xdf\xcf\x9d\x6b\x52\x2f\x3a\x49\x07\xda\x64\x3a\xa0\xa4\x23\xdb\xea\x07\xd1\xd8\x58\xe6\x06\x31\xc4\x72\x98\x48\x0e\x12\x0a\xae\xe9\xa2\x06\x0e\x1b\x4d\x8f\x2e\x94\x8f\x15\x3d\x13\x63\x40\xb5\x4c\x82\xaa\x11\xca\xd5\xa9\x54\x55\x8c\x7d\x09\x02\x2a\x47\x84\xa4\x17\xf3\x7a\x23\xa6\xd6\x5c\x7d\x1a\xd3\x06\x78\x0e\xab\x3e\xe2\x27\xe8\x38\x50\x21\xfb\x4b\xca\x3e\xe5\x51\x6e\x07\xd9\x28\x23\xa8\x59\xf6\x82\x51\xd0\x63\xec\x56\x30\x56\xfe\xc6\xa4\x89\xe4\x86\x71\x7c\xb0\xf5\xc9\x65\x33\x5a\x7c\xc4\x65\x49\x52\xdc\xa9\x8b\xce\x0a\x97\x94\x91\x60\xc1\xbf\x3e\x92\x6a\x9d\x64\x1d\x68\x88\x4d\x2f\x9e\xcf\x81\x9f\xca\x6e\x3a\x29\xce\xf0\x55\x52\xb3\x5a\x17\x50\x86\xa3\xed\xbb\x82\x22\xc5\x85\x04\x80\xf3\xa3\xc8\x2e\xe5\x4a\x77\x74\xa2\x51\x89\x2a\x54\xa0\x05\x7b\xe6\x2d\x4e\xc2\x81\x14\x0c\x24\x09\x38\x8a\xe3\x02\x6a\xac\x59\x01\x31\xe7\x75\x51\x27\x99\xc0\xa4\x63\x7b\xb9\xa2\x71\x11\xcf\xc2\x02\xad\x23\xb4\x70\x99\x07\x54\xc5\x59\xb8\x40\x32\x26\x14\xe2\x6a\xe1\x8b\xaa\x4e\xca\x5a\x50\x96\xb0\x12\xc7\x8d\x23\x6f\x3a\x73\x80\x36\x8a\x66\x15\x22\x2e\xd3\x68\x81\x8c\x06\x47\x35\xc2\x1a\xe1\x9a\x85\x49\x58\x1d\x0f\xd1\x20\x42\x35\xdc\x29\x5c\xe4\xeb\xa5\x22\x20\x4f\x0b\x76\x32\xac\x8a\xb2\x0e\x23\xfd\x21\x5c\x2b\x06\x97\xe8\x38\x2e\x50\x19\xab\x26\xbd\x43\x62\xca\xc7\xbd\x9d\x21\x12\xcf\xc2\x12\xe5\xb4\x15\x2e\xe4\x30\xb2\xfb\x56\x6f\xab\xdb\x25\x46\xa6\x46\x93\xcf\x42\x5d\xf1\x14\x06\x00\xe2\x4f\x40\x2e\x53\x76\x8e\xf3\xf0\x24\x23\xa5\xdb\x0c\x1d\x71\x9d\x35\x5d\x52\x31\xc7\xd1\x2c\x39\xd0\xc4\x35\xf2\x82\x12\x13\xb4\x0f\x16\x79\x2b\x2a\x45\xfb\x06\x69\xd8\xe5\x17\x44\xf3\x9a\x8b\x42\x01\xd2\x48\x1a\xc5\x31\x79\x40\x04\x28\x30\x0e\xaf\x56\x6a\x23\x64\x32\x1b\x51\xfb\x1a\x7e\x8a\x2c\x8d\x7c\x22\xa2\x55\x50\xbd\xea\x84\xc9\xec\x3f\x42\x69\x88\x4f\x48\xf4\x75\xdd\xcb\x9b\x08\x5d\x70\x59\x92\x4d\xae\x14\x28\xad\x93\xc3\x92\x67\xe9\x5e\x57\x2b\xf2\xb4\x28\xcf\x35\xbe\x76\x64\x72\x29\xa0\xb4\x64\x7b\x7c\x4c\x5a\x36\x21\x67\xf1\xd8\x53\x63\xaf\xcb\x62\x4e\x32\x00\xb4\x34\x55\xe4\x4f\x8b\x12\xf0\xb7\xa6\x47\x92\xa9\xf1\x0d\x4b\xca\x2b\xda\x6c\x37\xaa\x23\x24\xd9\x66\x77\xff\xb6\x8e\x21\x40\xa5\xbe\x4c\x22\x2a\x54\x1e\x13\xfe\xdc\xdb\xa3\x5a\x07\x82\xcb\xf3\x61\x4e\x45\x73\x0b\xd8\x5d\x24\x4f\x1a\xef\xaa\x39\x80\xd3\xf4\x47\x38\x5c\xb6\xdb\xa1\xb6\xbc\xd7\x2a\x31\x6f\x59\xf3\xd2\x8b\x21\x55\x5c\x7e\xbd\x0e\xf1\x49\x4e\x45\x62\xfc\xbb\xfc\xeb\x1a\x6d\x6e\x46\x15\xfa\x34\x2a\x9a\x06\x29\xcd\x29\xb0\x4e\x2e\x7a\x1e\x84\x9a\x7b\xa9\xc9\x8c\xe1\x43\x83\x34\x88\x9d\x4d\xc5\xcf\x63\x73\x1a\xbc\x1b\xc6\x85\xc9\x9c\x3a\xcf\x49\x4d\x62\xdc\xed\xd6\x0f\xf1\xd9\x3a\xac\x4f\x70\x34\x1a\x36\x11\xf2\x71\x72\xb6\x0e\xce\xbf\x5f\xe5\xa1\x55\x69\xd4\xef\x5c\x35\x27\xa6\x44\x12\x66\x54\xec\xdd\xa8\xcb\xe4\xd3\x5b\x51\x3c\xd0\xcf\x2c\xa5\xe3\xf7\xf6\x15\x17\x14\xcb\x43\x1c\x57\x27\x05\x22\x71\xfd\x35\x46\x65\x3c\x0b\x73\xa9\xa0\x96\x27\xb3\xbc\x2f\x55\xe7\x45\x19\xa9\xd7\x8d\xa4\xea\x5c\x17\x35\xd5\x6d\x53\xa2\xae\x04\x8c\x2b\xa7\x16\x66\xb9\xb1\x47\xaa\x8f\xaf\x9d\x29\xd3\xcf\x74\xcf\xda\xbb\x2b\x6f\x30\x01\xda\xc2\x4b\xae\x8d\xb1\x14\xc7\x4c\x6d\x7d\x41\x2a\x86\xa0\x52\x32\x74\xf0\xdd\x2b\xc4\xaa\xfb\xc3\x56\x19\x79\x28\xcf\x41\xe7\x2a\xa2\xdb\x1d\xf8\x32\x09\xa5\x0f\xaf\xe6\x21\xa6\xf4\xb4\x6d\xe7\x78\xf6\xa3\xff\xb8\xf0\xf0\xa8\xfe\x63\x42\x17\x94\x4c\x06\xd6\x58\x2c\x7a\x4a\xd4\xd1\xd7\x79\x8f\x7c\x9d\x53\xde\xce\xe0\x61\x0e\x20\x6a\x55\x2c\x0d\x4f\xf0\x59\x1b\xe1\x18\x61\x77\x9f\x10\x2f\xfc\xed\x24\x8f\x6e\x67\x12\x7d\x9d\xa3\x42\xf1\x3d\x94\x71\x29\x18\xb1\x61\xfd\xfd\x48\xb2\xcc\xd8\xdc\xed\x32\x15\x9b\xe3\xb1\x47\xd7\x04\x97\x03\xa0\x07\xf1\xa9\x9b\xf4\xa2\xfc\xd7\x21\x24\x45\x97\xe1\x10\x69\x13\xe8\x72\x8c\xd3\xea\xad\x21\x59\x7a\xae\x0a\x6c\xb9\xc6\x9a\x2a\x2a\x67\x0a\xf9\xdd\x47\xe6\xd5\xa0\x0d\x2d\x80\x22\xef\x1e\xfd\x0c\x1c\xd0\x9a\x81\x00\x93\x03\x4c\x40\x9d\xae\x00\x57\x16\x68\x86\x12\xb4\x46\x29\x9a\xa3\x15\x7b\x54\x54\x76\x5f\x3d\x06\xb5\x1c\x4e\x83\xa8\xdb\x75\xd3\x19\x7b\xc0\x04\xcd\x75\xfb\x99\x94\xfa\x76\x32\x22\xf6\x3e\x64\xb3\x13\x4a\x1d\x94\x38\xbf\x5f\x95\xea\x36\xd3\x94\xe4\x6d\x0a\x12\x46\xdd\x6e\xa5\xaf\xe2\xac\x85\xe9\x4e\xe2\x59\x8f\xa0\x32\x26\x28\x8f\xb1\x7c\x1c\x22\x2e\x8f\x73\x44\x77\xc9\x4a\xd9\xa7\xae\x1e\x0e\x22\x2a\x10\x2e\xfc\x9c\x35\x9a\xc7\x83\xf1\xea\xe1\x7c\x3c\xef\xf5\xd0\xa2\xd7\x8b\xa4\x8a\x41\x2c\x6f\xb8\xe0\x8d\x2d\x01\x30\xcc\x7c\xbd\x66\x98\xf3\xf3\xc0\xcf\x8c\x6f\xc7\x5b\xcf\x5a\x78\x6b\x6f\x6a\x6f\x85\x42\x3a\xa8\xb5\xe6\xcd\xb0\x8e\xba\xdd\x42\xc7\x70\x8e\x2a\xee\xd1\xd1\x46\xf4\x0e\x38\xed\x4d\x94\x27\x31\xfe\xba\x16\xa6\x16\xed\xea\x32\x44\xba\xdd\xbc\xdb\xcd\xfb\xb3\xaa\x92\x5c\x08\x31\xd9\xdc\x12\xe7\x2d\x60\x09\x56\x80\xe1\xf2\x92\x49\xf2\x4b\x9b\xa8\xed\xe0\x9d\xa8\x44\x8b\x0d\x71\xed\x0a\xd7\x42\xe7\x66\xe0\x1f\x89\x45\x35\x31\x24\x07\xc7\x16\x71\xbe\x5f\xb0\xa3\xcc\xc1\x1a\x2d\xe8\x16\x99\x85\x0b\x94\xf7\x08\xbb\x2c\x19\xa7\x0f\x8b\x71\x01\xfe\x8e\x93\xe2\x77\xc2\xe9\xa8\x9d\x4d\x0e\x2b\x46\x64\xbd\xe0\xb6\x46\xf6\x55\x07\xa0\x62\x96\x9d\xcd\xd6\x56\xbb\x65\x66\xfa\x15\x1d\x18\x65\xbf\xd9\x0d\xb5\x43\xee\xff\x0c\xe9\x8a\x1e\xbb\x32\x4a\x8e\xca\xb1\xb1\x8b\xfd\xf7\x7b\x61\x58\x3f\x6c\x93\x85\xb7\x5b\xee\x48\x6a\x6f\x86\xa8\xdb\x0d\xf3\x78\x80\x96\xaa\xfd\x9d\x74\x46\x3f\x5d\xcb\xb6\xde\x7a\xf9\xde\xe5\xc1\xa8\x8c\x50\xde\xeb\x71\xf9\xc5\x3c\x5f\x58\x74\x7d\x46\x4d\x5b\x97\x8a\xab\xd1\xce\x5a\x94\xea\xfc\xb6\xd3\x49\x57\x97\x2a\xd0\xaf\xf0\xda\xdb\x77\x67\xed\xb5\x35\xd2\x6e\xa9\x4d\x55\xb9\x73\x5d\xad\x5d\x55\xcf\xaa\x6a\xb4\x91\x06\x42\x41\x89\xb3\x84\xdd\x09\xa2\xe2\x23\x2e\xe7\x59\x71\x3d\x0a\x92\x75\x5d\x04\x28\x38\xbe\x66\x17\x8c\xc7\x22\xe3\x18\xb6\x2c\x3d\x60\x46\x41\x5d\xac\x67\xf4\x18\xdd\x91\xd9\xd8\x37\x85\xbe\xeb\x45\xdb\x10\xeb\xc2\xd5\xd4\x09\x49\x39\xc6\x36\xcb\x3f\x26\xdd\x6e\x48\x34\x86\x9d\x1e\xb1\xb6\xda\xda\x6f\xe1\x88\x7c\xcd\xc1\x9a\x81\xe0\x0a\xdc\x38\xdd\x4d\xc0\x67\x85\xa6\xbc\x60\xd8\x9c\xd4\x1c\x04\xc6\xae\x72\x5f\xa2\x90\x44\x4c\x8b\x0e\x39\x81\x51\x99\x6b\x89\xf9\x89\xdd\x06\xe7\xb8\x76\x41\x94\xad\xd7\x51\xbf\x98\xcf\x5b\x9b\x87\x1f\xae\xad\x97\x14\x76\x70\xbf\x66\x4f\x8c\xaa\xc9\x93\xb5\xac\xb9\x77\x61\xb0\xe4\xa6\xda\x4c\x91\x3a\x3f\xc6\xf0\x68\x02\xc8\x21\x2c\x5f\x9b\x79\x48\x9b\x78\xe5\x5f\x2b\xca\x20\x9a\x92\x4f\x4b\x41\x77\xce\x5b\x48\x9b\x10\xe2\x5d\x06\xe7\x2c\x08\x46\xd8\x2f\x6d\xed\x3e\x58\xd9\x81\xba\xe1\x6a\xf0\xba\xf1\x39\x83\x9a\x36\x0a\x35\x18\xe6\xae\x2b\xfc\xe3\x02\xe3\x8c\xdf\x3e\x94\xec\xc5\xd9\xc7\xf0\x18\x88\x65\x4d\x07\x57\x61\x49\x9a\xb2\x37\x65\xc5\xc5\x67\xb8\x46\x75\x9f\x1d\x8e\xcc\xd2\xcb\x53\x20\x60\xbd\x5c\xd3\x5e\x02\x54\xf7\xd9\x0f\x5a\x56\xbf\x08\xe6\x8d\x03\xd3\xbf\xbb\x7d\x5f\x99\xfd\x5d\x30\xa4\xe5\xaf\xfd\x3a\x10\xa6\x08\xf7\x69\xa3\xe8\x68\x10\xa1\xb6\x42\x4b\x84\xfb\x38\x4f\x77\x96\x99\x23\x2a\x65\xe4\x33\xda\xfb\xc0\xb8\x76\x56\xbd\xfb\xe0\xf7\x01\xe0\x2b\xe7\x81\xc1\x57\xac\x0d\x8c\xca\xb8\x3c\xd7\x2d\x72\x6a\xce\xbd\x52\x5e\x4c\xbf\x6f\x56\x52\x27\xd8\xad\xe4\x57\x38\x7d\x47\xe9\x31\xae\x26\x83\x29\xd3\xd3\xc1\xce\x17\xc2\x68\xde\xed\x72\xe3\xe6\xbc\x5f\x27\x57\xec\x79\xe3\xb3\xd0\x35\x45\xf9\xc8\xb4\x83\x2f\xe8\xb2\x3d\x81\x17\xf4\x23\x54\xf7\x49\x4e\x6a\x95\x16\x06\xb3\x8c\xcc\x3e\x04\xe8\x68\x40\xff\xc7\xfd\x8f\x04\x5f\xa3\x21\x62\x34\x1a\xe3\xfc\xdf\xe4\xaf\x9f\xe8\x81\x9b\x11\x9c\xd7\xff\x26\x7f\xfd\x44\x27\xa1\x2e\xb3\x3f\xe3\x1b\x8a\x95\x59\x0d\x3f\xd8\xad\x34\xfc\x5c\xe2\x3a\xa1\xbf\x06\x28\x5f\x67\x59\x84\xf2\x7e\x4a\xaa\x55\x52\xcf\x16\xd0\x7d\x1d\xc9\x13\x95\xdd\x5d\x6b\x82\xd4\x92\x8a\x52\xf1\x09\xc9\x57\xeb\x7a\x5b\xe3\x4f\x75\x52\xe2\x64\x5b\xe1\x0c\xcf\xea\x13\x82\xae\xe2\xa0\xc8\xd9\xb9\xc5\x30\x37\x20\x39\x7f\xa6\x7a\xbb\xe5\xcb\xf6\x98\xcf\x07\x9b\xcc\x6e\x57\x4c\x8f\xae\xf3\xf0\x95\x1c\x5f\x9d\x85\xeb\x38\xd0\x9a\x46\x99\xc7\x60\x11\xf7\x6b\xb5\x48\x84\x05\xb2\x12\xeb\x44\xe4\x02\x11\xb9\x40\xdb\x6d\x08\xf7\x01\x9c\x7e\xe3\x92\x4d\xc0\x9f\x92\x3c\xcd\x70\x29\xa2\xf4\xd3\x43\xe6\x7b\x7c\x45\xf2\xb7\xfc\x78\x12\x9d\x20\xdc\xaf\xc9\x12\xbf\xad\x93\xe5\xca\x47\x45\xe8\x31\xca\x61\xa6\xb8\x1a\xa0\x45\xec\x1c\x25\x94\x94\x91\x7c\x8d\x77\xb6\xdd\xa0\x25\x6f\x07\xe7\x69\x80\x66\x6e\x33\x17\xa4\x7a\x2b\x58\x87\xed\x96\xe2\x2f\x37\x26\xdd\x39\x32\x9c\xa7\xaa\x5f\xad\xb7\x39\xef\x0d\xf6\x52\x80\x12\xa3\xc3\xcf\x6f\x38\x1a\xd1\x45\x64\x34\x2b\x2d\xae\x73\x7b\x0d\xc9\x3c\x1c\xc6\x71\x8c\xfb\xd7\x0b\x32\x5b\x68\x6b\x0a\x2b\x58\xcb\x15\xac\x7f\xe5\x0a\x4e\xf0\x74\xff\xda\xb1\xc5\x63\xb0\x1e\xba\x78\x76\xb3\x6c\xd9\x58\x0b\xeb\x95\xbd\x6a\xbf\x6e\x75\x58\xa3\xc5\xba\xb6\x97\x86\x9e\x12\x19\x65\x95\xe1\xe5\xf3\xed\x36\xfc\xec\x7e\xa2\x46\xc6\xa7\x27\x65\xbd\x4e\x32\x4a\x65\xdf\xea\xcd\x54\x07\x19\xe6\x1b\x91\x3b\x5a\xed\x21\x50\x70\x49\x04\x18\xa2\xf9\x40\xb3\xa2\x70\x19\x3d\x51\x6f\x9d\xb7\xd7\xf4\x8e\x3a\xde\x30\x02\x22\x5e\x66\xc8\x22\x44\xd7\x57\x7c\x2e\x22\x84\xf3\x54\x7c\xcd\x58\x04\xeb\x19\xce\x44\x42\x12\x21\x76\xc8\x8a\x6f\x11\xbe\x5d\xb7\x08\x60\x9d\x0a\x76\xd4\x8a\x19\x5e\xe4\xf8\xc7\xe4\x26\x54\x6c\x60\xbf\xc4\x49\xfa\x2a\xcf\xa8\x2c\xe3\x0e\xc4\xd5\x1d\xd7\xd2\xc2\xc1\xe8\x47\xe9\x9d\xbc\x63\x1e\xd7\x70\xc4\x21\xdf\x6c\xdd\xa6\x93\x7a\x57\x27\xc0\xce\xa0\xd2\xfb\x1a\x93\xc9\x85\xc9\x4b\xbb\x31\x8e\x31\x38\x03\xd1\x01\x84\x58\xb7\x7b\x60\x9f\x52\xeb\x5c\xc2\xb7\xc9\x1d\x62\x09\x0a\x95\xea\x1e\x93\x25\xce\x2b\x52\xe4\x55\x48\x1b\x27\x54\x3a\xc5\xf6\x9d\x2c\x2e\x55\x31\xc9\x4c\x73\xe3\xf8\x3a\x0e\xa5\x11\x96\x94\x1a\x23\x47\x6c\xd4\x76\xc4\xe7\x48\x8f\x7b\xb6\x15\xda\xe8\xd4\x7c\x74\x34\x44\x17\x8a\x5f\x05\x67\x94\x03\xc4\xcf\x05\x49\x53\x9c\x07\xcd\x21\x76\x4a\x15\xae\xd7\x2b\x01\x84\x91\xf8\x7a\x4d\x85\x93\x37\x78\x5e\xe2\x6a\x11\x2a\x13\x0c\x5c\x82\xd9\xd4\xc1\xb2\xa9\x66\x51\x8a\x8c\xee\x7c\x02\x1b\x88\x26\x72\x69\x99\xc7\x9d\x04\x4f\xd3\xac\x90\x68\xa3\x49\x1a\xd2\x42\xba\x9f\xe9\xfa\x3e\xe9\xff\x12\xd6\x7d\x1d\xfa\x98\xa0\xda\x95\xb6\x08\x65\xc7\xcc\x51\x85\xfe\x06\xd1\x00\x1d\x33\x5b\xe9\x8d\x14\xda\xff\x8d\x2e\x96\xfc\x3a\x2f\x96\xab\x0c\x9b\x81\xef\x6b\x1b\x1b\x49\x7e\x45\x91\x90\x17\x0d\xe8\xc6\x41\x5a\x21\x46\x2d\x49\x4d\x92\x8c\xfc\x1d\x8b\x29\xa0\x78\xcf\xc4\x42\x77\x89\x9c\x85\x5e\xe9\xb9\x52\xe3\x2e\xcd\x18\x09\x23\xc5\xaf\xed\x42\xca\xa8\x6c\x56\x93\x8f\x52\xe4\xc3\xa5\x85\x0f\x14\x21\x5a\x9a\xd8\x0f\x89\x5f\xe5\xbf\x03\x6a\x0e\x14\x74\xf8\xa8\x0e\x07\xc8\x5f\x58\xf8\x0a\xd0\xdc\xb1\xbf\x48\xcb\x51\xb4\x53\x86\xf6\xc9\xcf\xc6\x3d\x8b\x8d\x36\x92\x8a\x2a\xa1\x7f\x80\x8e\x87\x5f\x63\x17\x1e\x21\x71\xc3\xf3\x0d\x3b\x67\x7d\xd4\x66\xc2\x9c\x7b\x86\xc9\xdc\x21\x12\xb0\x57\x67\xd2\x53\xae\x70\x4b\xf4\x62\xb4\x1e\x44\xa6\xa3\xe2\xfe\x46\x87\x46\xa3\x29\xde\xdb\xac\x61\xfe\x1c\xb6\x8d\xe6\x28\xdf\x6e\x73\xf1\xc2\x84\x76\x5b\xe3\xa6\xb2\xbb\x1a\xca\x08\xaa\xb3\x60\x4e\x72\x52\x2d\x2c\x64\x45\xad\x63\x29\x21\x81\x19\xcf\x1c\x0d\xa3\xa8\x39\xac\x24\x9b\x4e\xc6\x4c\x88\x3e\x30\x5d\x3f\xf0\xf2\x50\xc8\x27\xa1\xf2\xce\x4c\x0b\xc2\x03\x42\x20\x30\x72\x3f\x40\x03\xae\x1d\xdc\x9a\x02\x7c\x32\x98\xea\x37\xcb\x42\x1f\xe3\xf4\x76\xe6\x5c\x1d\x0b\x8f\x8c\x91\xab\x53\x77\x8f\xd1\x97\x98\x4a\xc7\xb7\x50\x4b\x29\x9b\x77\xca\x40\xc9\xdb\x44\xef\x0d\x7d\xb4\x53\x17\xc9\xc0\xf3\x91\x67\x79\x23\xf3\xb0\xd3\xa2\x3a\x9a\x0c\xa6\xa0\x41\xd4\x44\x03\x4b\x6f\xef\xc8\x56\xf1\xd1\xd0\x6b\xe8\x05\x64\x9c\xa9\xcf\x6d\xe6\xb3\x9f\x16\x4c\x84\x65\x99\xd2\x44\x45\x17\x1c\xda\x0c\x9a\xc6\x4e\xf7\x67\xde\x96\x5f\x14\x1f\xc1\x0b\x79\x24\x82\x85\xe9\xe7\x9c\x1f\x1a\x59\x47\x5d\xf4\x68\x55\xc8\x51\x1c\xe7\xdd\x6e\x58\xca\x98\x4e\x5c\x31\x21\x0a\x55\x7c\xa4\x42\x91\x8a\x27\x83\x29\x97\xd3\x22\x39\x37\xa5\xba\xd0\xd4\x26\x70\x40\x4f\x0d\x29\x73\xb4\x29\x57\x15\xa4\x4f\xf2\x94\x69\x84\x5d\xb5\x2a\xcc\x96\x0c\x3e\xc1\x14\x8c\x74\x53\x9a\xcd\x48\x0d\xeb\x80\xed\xa6\x21\x15\xcb\x14\x3b\xe5\xb5\x33\x50\x66\x53\xb8\x0f\xea\xfb\xc7\xa4\xc4\xac\xdc\xb3\xfc\x23\x2e\x6b\x9c\x3e\x2d\x8b\xe5\x63\xfc\x91\xcc\x30\x53\x11\x31\xa1\xe0\x31\xce\xea\xe4\xa7\xaf\xc3\xfa\xac\xff\xed\xe8\xb8\xff\xad\x9c\x5b\x09\xcb\x85\xd4\xf7\xae\x7a\x04\xe5\x0f\xe3\x41\xb7\x9b\x7f\xe7\x14\xd2\xcd\x58\x64\xc0\x7d\x73\x3c\xdf\xdf\x84\x03\x44\x18\x0d\xc2\xfd\xaa\x2e\x56\xaf\xcb\x62\x95\x5c\x25\xb0\x2d\x22\x74\x34\x6c\x8b\x54\x02\xec\xfa\x65\xc2\x9e\x18\xbb\x22\x55\x8d\x4b\x60\xd4\x42\xcd\x5c\x3b\x70\x9c\x37\xe9\x5c\x2c\x92\x6a\xc1\x86\x4b\x7f\xbc\xbb\x59\xe1\x6a\x2c\x5d\xdf\xe2\xba\x4f\x6a\xbc\xac\x90\x08\xa6\xc5\x3f\x89\x2c\x40\xcc\x02\xe2\x53\xb6\xb0\xdd\x86\xaa\xb5\x80\x0e\x3a\xd0\x6a\x07\xcf\x1e\x6b\x46\xcc\x39\x8b\x6f\x14\x91\x79\x78\x72\xcc\x23\x42\xe5\x11\x00\x2a\x70\x96\xbf\xed\x3d\x4b\x96\x98\x32\x4f\x61\x1e\x8d\xeb\x49\x39\x8d\xeb\x49\x3e\x45\x84\xfe\x22\xf4\x97\x00\x57\xfb\x4d\xd3\x1b\xc3\xcf\x55\x9b\xb3\x05\x9b\x2b\x66\xa2\x9f\x01\x4a\xa8\x2b\x2f\x14\x98\x0c\x30\x98\x7d\xd2\x55\x08\xd6\x39\x3c\x3d\x9e\x2a\x17\x95\xac\x98\xb1\xe5\xda\x6e\x03\x16\x26\x66\x51\x54\x75\x70\x14\xc7\x22\xbd\x4f\x13\xf2\x64\x89\xbb\xdd\x60\x78\xfa\x7b\xf6\x5c\xf7\xd0\x5b\x40\x04\xdd\x7c\x5e\xd0\x7d\xd7\xbf\x4e\xca\x3c\x0c\x7e\x2a\xd6\x9d\xa4\xc4\x9d\x72\x9d\xe7\x24\xbf\xea\x24\x9d\x55\x59\xa4\x6b\x38\x61\xd9\x63\x87\x1d\x61\x60\xd4\x29\xf2\x8e\x04\x81\x59\x65\x5f\x17\xf9\xdd\xba\x53\xe2\x19\x26\x1f\x71\x27\xc5\x75\x42\x32\x9c\x76\x58\xbc\x86\x8e\x0c\x0a\xd3\x79\x36\xef\xdc\x14\xeb\xce\x75\x92\xd7\x9d\xf9\x3a\xcb\xac\x02\x9d\x55\x86\x93\x0a\x77\xd6\x2c\xec\x11\xee\xe4\x45\x7e\xbc\x24\x39\x99\x13\x9c\x72\x10\x56\x65\xf1\x91\xa4\x38\xa5\x20\xd0\x22\x00\xcf\x35\xbe\xac\x48\x8d\xfb\x41\x34\x3e\xf9\xfa\xe8\xab\xce\xd7\xe0\x50\x40\x70\xe7\x18\x7e\x75\x60\x19\xa4\x2e\xb7\xa2\x65\xe6\x65\xb1\xec\x5c\x16\xf9\xdf\x8b\x0e\x0b\x22\x33\x3a\x39\xb9\x22\xf5\x62\x7d\x49\xe5\xef\x93\x14\xa7\x27\x2c\x93\x16\xd5\x9a\xa4\xc8\x1c\x76\x28\x8b\x86\x3a\x77\x97\x37\xc7\x2c\xf9\x6e\x27\xea\x1c\x3f\xec\xd4\xe5\x1a\x9f\xb0\xf7\xf4\xf5\x0a\x49\x9a\xea\x15\x72\x7c\x2d\x2b\xe9\xc5\x40\x43\xad\x97\x5c\xe7\x74\xa6\x70\xea\x2d\x5e\x17\x57\x57\x19\xf6\x41\xf2\x55\xe7\xeb\x93\xaf\xbe\x3a\xf9\xfa\x67\xca\x78\xd4\x9d\xcb\xb2\xb8\xae\x70\x39\x62\xd0\xa1\x4e\x55\x97\x64\x56\x8b\x2f\x86\x67\xf0\x41\x6b\x9d\x7c\x0d\x2f\xce\x77\x00\xfb\x46\x1d\x36\x18\xd6\x5e\xa8\x14\xe1\x5c\xe5\xda\x89\x3a\x9b\xaf\xbe\xba\x4b\x57\x0b\x1a\xbd\x3b\x66\x61\x33\xfc\x33\x7e\xf0\x74\x7f\x25\xf9\x3a\xd6\xd0\x1b\x7c\x15\x76\xa4\x0b\x0f\xeb\xb3\xd3\x11\x5a\x74\xed\x35\xf8\xf0\x6f\xdb\xf7\xef\xab\x5e\x14\x74\x7a\x5a\xf1\x5e\x27\x08\x69\xf2\xf6\x4e\x14\x44\xe3\xaf\x1a\x05\x20\xdd\x74\x9d\x6a\xbd\x5a\x15\x65\xdd\x99\x17\x25\x07\x7b\xc9\xdc\x7d\x28\x47\x40\x4b\xfe\xdf\xdc\x7d\xe9\x76\xdb\x38\xb2\xf0\x6f\xfb\x29\x60\x7c\x3d\x16\x19\xc1\x92\x9c\xf4\x32\x1f\x65\xc6\x9f\xb3\xf4\x4c\x26\x4b\xe7\x24\xee\x99\x1f\x39\xf9\x01\x93\xb0\xc4\x36\x45\x68\x08\xc8\x8e\x3e\x5b\x6f\x75\x9f\xe0\x3e\xd9\x3d\x28\x2c\x04\x17\xc9\x92\x93\xcc\xdc\x7b\xfb\x9c\x8e\x29\x12\x4b\xa1\x50\x1b\x0a\x85\x02\xcd\xe5\x94\x2f\x26\x53\x24\x39\xba\x60\xe8\x92\x66\x25\x01\xba\xa3\xf3\x0c\x89\x45\x72\x25\xd0\x05\x4b\xa8\x42\x41\x26\x0d\x17\xe8\x9b\x6e\xd0\x6c\x91\xcb\x6c\x9e\x33\xdd\x2e\x13\x88\x4a\xa4\xec\x98\x7d\x25\x74\xa6\x54\xc0\x12\x85\x20\x9a\xa6\xe6\x49\xcf\x3f\xfc\x18\xef\xef\x67\x97\x28\x40\x3d\x07\x69\x4f\x09\x30\xb7\x39\x60\x1f\x8c\xed\x62\x90\x62\x1b\x45\xb1\x37\x55\x9a\x3c\x12\x53\xc4\x61\x4e\xbd\x1e\xb8\xd6\xab\x4b\x40\x55\xc9\xf1\x3e\x42\x2b\xf5\x8f\x85\x6d\x63\x83\x8d\x96\x80\xd8\xfd\x46\xbc\x61\xed\xd2\x8e\xe5\x86\xaa\xa9\xd5\x3e\x04\x10\xed\x3a\x52\x8f\x88\x50\xa8\x45\xbf\xd7\x97\xa6\xa9\xdd\x46\x0c\x53\x73\x60\x61\xf0\xbf\xdb\x12\xa8\xd9\x43\xdc\x7c\xd1\x47\x3d\xd4\x53\x94\x3a\x86\x0a\xab\x87\x63\xab\xb3\xfd\x41\xc9\xe6\x39\x4d\x58\x50\x1f\x3e\x81\x5e\x2b\x84\x56\xac\xa6\xa5\x49\x6b\x40\xaa\x33\x45\xaf\x97\x05\x8a\x51\xd7\x88\x4f\x6b\x10\x47\x0e\x81\xaa\x8b\x4b\x1f\x6e\xe8\x4e\x35\x65\x25\x73\x0c\x8d\x0f\x87\x5a\x11\x28\xb5\x24\xbc\x99\x8d\x2a\x16\xf1\xa6\xa5\x6a\x9f\xd4\x71\x15\xf9\x3f\xd4\x37\x6f\x3c\x91\xff\x83\xe8\x3e\xc5\x54\x71\xbd\xd7\x69\xab\xbf\xae\xae\xd6\xf4\x52\xeb\x60\x7f\xa5\x85\x20\x9c\x4a\x56\xb2\x45\x73\xb2\xd1\xe1\x5a\xac\xa2\x38\x8e\x51\xcf\xe2\xbe\x87\x0e\x0f\xcd\x87\x01\x9d\xa5\x06\xeb\xc3\x21\x3a\x7b\xfb\x62\x1f\x99\x2f\x81\xc3\x9b\xc2\x24\x72\x9c\x30\x1c\x5a\xf9\x8e\xb4\xe4\xde\x47\x76\x43\xac\x42\xb4\x79\x82\x29\x58\x85\x95\xf8\x1e\xef\x0f\x1f\x3d\x52\x3a\x05\xce\xea\x66\xda\x4a\xf8\xf5\xcb\xe0\x0f\x81\xae\x8f\x95\xfd\xa0\xbe\x29\x59\x1d\x0d\x87\x37\x37\x37\x83\x84\xa7\x25\x9f\x2b\x5b\x66\xb6\x8f\xa0\xe2\x9b\x2c\x61\x85\x60\x29\xe8\x91\x12\x24\xe3\xdb\x57\xe7\x28\xd7\xaf\x07\x8d\xfa\x7c\xce\x0a\xc1\x17\x65\xc2\x06\xbc\x9c\x0c\x4d\x29\x31\x9c\x65\xf2\xc8\x56\x99\x4f\xe7\xa6\x6d\x97\x7d\x09\x3d\x1e\x1d\xff\x48\xd0\x73\xdd\xfb\x46\x98\x86\xfb\xe3\x75\x7a\x6a\xaf\xa1\xa8\xf6\x14\x31\xa6\x3c\x51\x32\x14\xc5\x16\x69\xeb\x44\x2c\xd9\xdf\xdb\x53\xfa\xa0\xc8\xf4\x9d\x52\x88\x15\x29\x82\x2d\x20\xa0\xa2\xfd\xbd\x3d\xf5\xe9\x65\xa1\x37\xba\x0d\x4f\x62\xbd\x18\x38\xb3\x95\x5e\x16\x29\x56\x3d\x2b\xac\xef\xa1\x47\x48\xfb\x7c\x11\xbf\xf8\xc3\xc1\xac\xde\x0f\xf7\xf7\x2a\xd7\x86\x76\x0b\x23\x4a\xd0\x05\x8c\x63\x6f\x4f\xd9\xb4\xc0\x94\x57\x6c\xa9\xb4\x82\x7d\xbf\x97\x5d\x06\xe8\xa2\x79\x4c\x0f\x4a\x85\xb6\xc8\x1e\xfd\x74\xc5\x96\x9f\x51\x8c\x2e\xe0\x61\xac\x5e\xae\xf6\xf5\xff\x46\x60\xd2\xf1\xfe\xde\xca\x83\xf2\x5d\x8d\x38\xd6\x42\x5a\x2f\x16\x20\x93\x8f\xcb\xf4\xac\x77\x66\xcc\xab\xd8\x0d\xeb\x76\x45\x6a\x69\x74\x15\x4d\xee\xed\xd9\xaf\xfe\x17\x82\x6a\x45\xac\x3b\x32\x93\x41\xb8\x19\x5e\x53\xcd\x80\x5b\xff\xa8\x8f\x37\x2b\xde\xf4\x60\xbb\xd5\x53\x6d\x9c\x70\x4a\xf3\xc3\xfe\xa2\xb1\x48\xab\xea\xe8\x26\xcb\x73\x65\x15\xd0\x39\x5c\x97\x96\xea\x7a\xa9\xde\x12\x14\xaa\xa2\xaa\xe2\x28\xea\x82\xa7\xcb\xfd\xbd\xbd\x9b\x52\x95\x2f\x51\x54\xff\x62\x08\x4c\xd5\x30\xe6\xf0\xfe\xde\x9e\x79\x42\x11\xea\x2d\xf9\x41\xcf\x94\xc9\xe9\x92\x2f\x24\x88\x94\x08\x4d\x4a\x7e\x93\xdf\x51\x29\x69\x32\x65\xe9\xdd\x05\x2d\xef\xb8\x9c\xb2\x72\x7f\x6f\xcf\x94\x8b\x50\x0f\x0a\xd9\xea\xfa\x04\xa5\x00\x9b\x47\x75\x27\xe6\x2c\xd1\x26\xb6\xae\x10\xe9\x62\xea\x33\xd4\xb3\xaf\x91\x48\x68\xce\xee\x44\x9e\xa5\xec\x6e\xc2\x8a\x8c\xdd\xfd\xc1\xf2\x7c\x59\x15\xb7\x50\xb8\x1a\x97\x79\x36\xbf\xbb\xe0\x8b\x22\x59\xaa\xc7\xaa\x24\x80\xe8\x8a\x5d\xf0\x2f\x62\x0e\xa9\x87\xee\x12\x5e\x16\xac\x64\x5f\xe6\xb4\x48\xef\x72\x4e\xd3\xac\x98\x24\x59\x99\xe4\xec\x4e\x4e\x17\xb3\x0b\xe8\xbd\xd4\x0d\x0d\x06\x03\x45\x2c\x30\x1c\x35\x4a\xf8\x66\x47\xa9\x66\x2a\x61\x04\xa9\xc5\x4d\x56\x4c\x88\x5e\x6a\x10\x65\xb4\x25\x4c\x08\x5d\x08\x66\x90\xa6\xa9\xb1\xfd\x0a\x71\xa4\x90\x7a\xe4\xea\xd8\x17\x7a\x99\xc2\x4b\xf7\xa2\x6a\x45\xfd\x54\x9d\x43\x11\xdb\x79\x76\x09\x98\x5d\x28\xb1\x9c\x72\x26\x8a\xff\xfc\x0f\x89\x92\x9c\xbb\x75\x8d\x47\x45\x72\xca\x0a\x74\xc3\x8c\x6a\x41\x99\x34\x92\xe6\x52\x1a\x81\x7a\xc9\xf3\x9c\xdf\xa8\x25\x99\xcc\x40\xd2\x48\x99\xa3\x08\xfd\x3c\x1a\x8d\x4c\x77\x6a\x41\x79\x41\x93\x2b\x05\x0f\x2f\x9e\x43\x3f\x51\x25\x06\x43\x74\x6b\x8d\x21\x30\xe7\xc7\x68\x45\xa0\xe4\x6f\x73\x56\xdc\x53\x70\x7f\x6f\xe5\x4b\x2c\xc5\x70\x35\x09\x00\x6f\xf4\x76\x83\xce\x80\xa7\x08\x00\x09\x3e\x63\x4a\x44\xdd\xcb\x75\xc0\xc1\xbe\xa1\x13\x5a\xf6\xd3\x7e\x7e\xf4\xd7\xf3\xb7\x6f\x90\x4e\x73\xbf\x28\x99\x65\xfc\x42\x5e\xa2\x18\xad\x49\xdb\x82\x7a\x69\x76\xdd\xf3\xc4\x44\x21\x2f\x6b\xa6\x52\xaf\x10\x47\x17\xfc\x8b\x9a\x4c\x65\x82\xf9\x52\x66\x60\x78\x46\x99\x67\x85\x38\xd2\xb4\xd5\x2e\x65\x68\xce\x94\x02\x8a\x68\x95\x51\x6f\x15\x08\x90\x8e\x46\x96\x40\xde\xaa\x73\xff\xbc\xbb\x06\xe4\x08\xbe\xe1\xa7\x3d\x55\xdc\x15\xed\xc7\x9d\x77\x68\x34\xcb\xf4\xf4\x19\xf8\x56\xdd\xde\x89\x98\xd3\xc2\xeb\x08\xc8\x0f\x3f\x3d\x19\xaa\xf7\x4f\xbd\x5a\x0e\x47\x2e\xf9\x17\x8a\x1d\xc4\x6a\xf2\x81\x1c\x41\xc6\xc1\x32\x88\xa7\x4b\x64\x44\x87\x95\x91\x95\x08\xc9\x0a\xe4\x6e\xd4\xd2\x82\xae\x21\xfc\xed\x6b\xb3\x2d\xa3\xd3\xad\x19\x51\x5f\xc8\xcb\xba\x3a\x70\x85\x2f\xb3\x52\x48\xf0\x64\xab\x79\x35\x82\x36\x13\xb3\x4c\x08\xc3\x29\x9f\x1c\xde\x65\xfe\x79\x26\x2c\xe2\x59\xae\x28\x05\x9c\xeb\x16\x10\x53\x4f\x71\x51\x8c\x04\x93\xe7\xd9\x8c\xf1\x85\x0c\x9a\x44\x08\xfa\x54\x35\xa0\x1d\xf1\xcc\xe9\x50\x78\x67\x5a\x01\xed\x63\x54\x68\x03\x76\xd5\x81\x03\x16\xe8\x1c\xec\x05\x51\xd3\x5e\x7a\x0b\x57\xeb\xb0\x16\xa3\xd9\xf2\x5b\xf0\x90\x6e\xa7\xcd\x49\x1d\x48\xf0\x50\xe7\x0b\x22\x9f\x12\xfe\xb9\x60\xe5\xf2\x23\x44\x69\x29\x63\xa3\x37\xb0\xf4\xd3\x43\x61\x3b\x9a\x4f\x2d\x53\xb3\xe4\xaa\x47\xea\x92\xa4\x81\x26\xb4\x42\xad\x51\x8a\x29\xbf\x69\x49\xc4\xfb\xc6\x0b\x95\x5a\x03\x05\xd8\xcd\x44\xc5\xe0\xcf\x50\x63\x6d\xfa\x56\x2a\x32\x53\x42\x60\xaa\xf4\x85\x16\x14\x35\x5f\x4d\xbd\x94\xea\xcf\x17\x27\x55\xde\x79\x25\x3f\xdb\x53\x67\x91\xbb\xeb\xb8\x6c\xbd\x6d\xe6\xb0\x3e\x5a\x2d\xac\x61\x14\x8c\x96\x8e\x9e\x9b\xd4\x1e\xde\x8f\x11\x6f\xac\x9b\x38\xa3\x86\x2d\x98\xe7\x36\x4e\x55\x39\x4f\x37\xed\x5b\xc6\xa9\xd0\x07\x8a\x4a\x33\xd0\x8a\xa0\xc7\x3f\x55\xdc\xa2\x59\xba\x66\x6c\x0b\xab\x20\x95\xec\x07\x57\x92\xc2\xef\x8b\xdf\xde\x1a\x04\x81\x75\xed\x2c\xed\x5f\x8b\xfa\xea\xf9\xda\xb7\x91\xd9\xb5\xd9\x7a\x40\x07\x71\xec\xc0\x47\x61\x5d\xf7\xa9\xd2\x80\x9c\xae\xc8\x51\xd4\xb4\xf6\x49\x1b\x00\x2d\x19\x6a\x63\xb6\xe2\xcc\x2c\x23\x95\x3c\xd3\x33\xa0\x0b\x03\x19\x55\x5c\xd8\x66\xb4\x2d\x7b\xad\x91\xa3\x32\x6f\x24\x37\xab\x43\xbd\xe4\x9d\xd3\x84\x19\x6a\x34\xcb\x9e\x86\xcd\x1c\x37\x8c\xe8\xf1\xfe\xfe\x0a\xd5\x16\x8e\xa6\xde\xd9\x7c\x6e\x53\x0c\xcd\xe7\xb9\x29\xef\x62\xbb\x4a\xce\xdd\x1e\x1c\xfe\x3f\x74\x3e\xc7\x24\x59\x94\x25\x2b\xe4\x7b\x2a\xa7\x11\xc6\x2e\x66\xcc\xaf\x5d\x59\x14\x65\x70\xab\xe0\x8d\xb0\x60\x52\x66\xc5\x44\x60\x52\x7d\xf4\xc2\xe5\x09\x84\xb2\xc1\x86\x6b\x55\xf2\x6c\x3e\x1f\x7c\x34\xbf\x5c\xd2\xbf\x10\x5e\x4f\xfc\x92\xfa\x42\x22\xc8\x2b\xed\x9c\xee\x87\x87\xaa\x98\xe8\x28\x46\xb0\x8e\xb9\x50\xdf\x3f\xf0\x85\x64\xe5\x60\x46\xe7\x41\x73\x87\xb1\x64\x7a\x9d\x1b\xe0\x34\xc1\xe4\x76\x0e\xc3\x1d\x46\x69\x82\x57\xad\x5c\x12\x55\x59\xc1\xca\xeb\x2c\x81\x8b\xe0\x4c\x0d\xf7\xa6\xa3\x9a\xea\x3d\xc0\x8a\x63\xab\xf2\x8f\x14\xbe\xf0\x2a\x5c\xb9\x2c\xd4\xb6\xed\x82\xa7\x7e\xc3\xfa\xe7\x96\xad\x46\x6b\x5b\xbd\xba\xae\x4a\x5d\x5d\xaf\x6f\x2f\xd3\x49\x0c\x6c\x51\xec\x5a\xea\x1c\xc4\x15\x5b\x36\x4b\xb0\x34\x93\xf5\x12\x43\x78\xd5\x05\x14\x4d\x72\x6f\xa4\xf0\x6b\xdb\x81\x66\xa9\xdf\xa2\x2e\xa2\x1a\x48\x33\xd8\x4b\x4f\xeb\xcd\xba\xb7\x8d\x1a\x8b\x82\x2e\xe4\x94\x97\xd9\xff\xf7\x6b\xd4\xde\xb6\x7a\x59\x8b\x21\x8f\x3a\x2c\x69\x57\xd4\x61\xde\xa8\xd6\xc6\x9a\xe0\x81\x5e\x6a\x69\x2f\xdd\x45\x01\x97\x14\xf2\x58\x3c\x9f\xb2\xe4\x4a\x34\xf2\x23\x55\xc1\x27\xfa\xf3\xf3\x32\x93\x59\x42\x73\xc8\xf5\xed\xf8\x22\x6c\x1c\x7d\x6b\x97\xee\x37\x3f\xfd\x43\xaf\xa5\xb0\x1f\x64\xe3\x7f\xf7\xce\xb2\x0f\x2e\xb3\x5c\xb2\xf2\xd9\x32\xc0\x1f\x25\x95\x0b\x81\x09\x4e\x5c\xcb\xba\x92\x3d\xa4\xd8\xef\x2c\x7d\x63\x3b\xab\x17\x5e\xb9\x54\xea\x55\xaf\x64\xae\x54\x58\x17\x36\xd6\x8c\xf1\xbd\x2e\x5f\x47\xc8\xe9\xda\x52\x51\x7b\xa0\x5d\x10\xcf\x6d\xf9\x2d\x20\x86\x7b\xff\xd6\x5e\x76\x77\x70\x5c\xbb\x51\x61\x4a\xc5\xaf\xfe\x7c\xe3\xd0\x83\xb5\x36\x76\x1c\xf6\x31\xb2\x70\x78\x60\x5f\xd6\xab\xf7\x31\x32\x6f\x70\x27\x74\x20\x51\x36\xe2\xf1\x1d\xc8\x9c\xda\xd8\xcc\x2b\xd2\x84\xb6\x19\x07\x3b\x69\xc1\x43\x46\x21\xd1\xf8\x7c\xcd\x96\xcd\xe2\x34\xcf\xa8\x08\xb0\x52\x91\x90\x62\x55\xb1\x86\xea\x6a\x47\xbe\x58\x43\x09\x10\x85\x9b\x2e\x12\x16\xb4\x03\x31\xca\xea\xf4\x60\x20\x89\x9d\x67\x4b\xe3\x15\x39\xc7\x71\x5c\xde\xdd\x39\x82\x55\x3f\x4f\x59\xff\x38\x62\x2b\x32\xfa\x36\xf4\xfa\xbf\x9d\xde\x1e\x46\x32\xc5\x62\x66\x64\x64\xab\x82\x21\x1a\xfb\xb9\x3a\x0f\x2d\xb6\xab\x80\xb7\x20\x48\x9e\x56\x04\xf9\x9a\x2d\x3b\xe9\xb1\x7d\xab\x8a\x39\x44\x7a\x5d\xbd\x8a\x6e\x55\x27\xb7\x73\x73\x59\x4f\x74\x30\x5a\xad\x88\xbd\x9c\xed\x6f\x82\x17\xd1\xc1\x31\xb9\x62\x4b\x68\xa5\x09\x0c\x64\x1f\x08\xb0\xb9\x4c\xe1\x35\x5b\xe2\x50\xd5\x5d\xb0\x2d\x4a\xc3\xdd\x8b\x38\x24\xaa\xfb\x3a\xf5\x67\x97\xc1\xf1\x49\x33\x71\x4b\x78\xab\x96\x24\x45\x2c\xc7\xb2\x5c\x9a\xe7\x94\x25\x3c\x65\xbf\x7f\x78\xf5\x9c\xcf\xe6\xbc\x60\x85\x0c\xe0\x43\xb8\x4a\xa8\x4c\xa6\x41\x19\xde\xae\xdc\xde\x9d\xaa\xc0\x8a\x35\x15\xdc\x2e\xd7\xf0\x4f\x8f\x7f\x1d\x4e\x08\x1e\xe2\x2a\x18\x39\xc0\x50\x48\x0d\x8f\xe8\xe2\xfa\xcf\xaa\xc5\x2f\xae\x5c\x8d\x0d\x34\x5e\xae\xd8\xf2\x1f\xfa\x66\x70\x9d\x66\x74\x23\xe3\x41\x15\x07\x94\x4f\xfe\xaa\xaa\x6e\x10\x77\xf5\x92\x89\x5f\x79\xde\xc8\xd9\xdd\xdd\xfa\x41\xcd\x4a\xc5\x43\x5c\x63\x42\x0d\x80\x8e\xc5\x3b\x3a\xee\xec\xe8\x0d\x4f\xae\x58\xda\xc1\xce\x5e\x32\xc4\x8f\x4c\xc0\x15\xdc\xb5\x06\xdc\x4b\x92\x67\xc5\xd5\x39\x07\xeb\xb7\xdd\xce\x3d\x20\x9d\xe2\xab\x6b\x58\xc1\xe3\x48\x3d\x69\x1b\xae\x05\x26\x50\xe3\x0b\xa0\x93\xb4\x41\x66\x06\x2d\x6d\x52\x33\x87\xc2\x61\xe6\x35\x95\x12\x19\x12\x19\x42\x04\x7c\x0d\x24\x43\xc3\xa7\x18\x47\xc1\x33\x2a\xd8\xcf\x3f\x1a\xd6\xb3\x77\x68\x76\xbc\xb4\x11\xce\x7e\x03\x03\xb5\x0c\xd5\x65\x83\xb0\x86\x2b\xcb\x25\x99\x00\x96\x02\x86\x6c\xa5\x74\x51\x1c\x61\x0f\x48\x4a\x7e\x11\xb4\xda\x77\x29\x40\xe0\xa5\x8f\x13\x6c\x79\x45\x86\xb7\xac\x3d\xb2\x95\x6a\xda\x20\xea\x6f\x1f\x7f\x7b\x37\x80\xab\xd9\x02\x16\x92\x83\x51\x55\xd1\x8a\xf1\x55\x17\xe4\x57\x6c\xf9\x9e\x96\x9b\x0f\x7b\xc0\x5c\x8d\xbd\x69\x67\xd5\x3c\x43\xf6\x27\x36\x10\x8b\x0b\x9d\x69\x37\x18\x11\x9b\x61\xe4\xe8\x38\x84\x20\x34\x7d\xd7\xf3\xb0\x8b\x1f\x1c\xc3\x6c\xea\xde\x82\x88\xc3\x81\xe4\xfa\x06\x49\xcf\x96\x9c\xf3\x79\xa0\xba\xd1\x97\x02\x0c\x95\x3e\x19\x76\x50\xda\xa4\xa4\x45\xfa\xfe\xdb\x75\xb7\x5d\xb7\x46\x03\x9c\x25\x79\xb7\x45\x92\x89\x77\x5c\x9e\x15\x75\xaa\x31\x88\xa6\x05\x2f\x96\x33\xbe\x10\xf8\xc0\x27\xea\x57\x2f\xea\x88\x84\xdf\x61\x6d\x15\xdc\xdd\xd7\xa2\xb8\x2a\x78\xb5\x61\x58\x8b\x70\xb4\xe9\xa3\x79\x42\xf3\x8f\x92\x97\x74\xc2\x3e\xb1\xcf\x70\x90\xe0\xf7\xb5\xd5\x3c\x2e\xb5\x97\x16\xbd\xe3\x05\x0b\x64\x78\x6a\x02\xe6\x1a\xed\x45\x8d\xdf\x36\x69\xa2\xce\x20\x6d\x7b\x30\x59\x6d\x59\x48\xe4\x0a\x24\x79\xd9\x8a\xeb\xbd\x60\x93\xac\xa8\x97\x17\x41\x15\x04\xc8\xe2\x11\x91\xb1\xdf\x99\xcd\x1b\xcf\x4e\xe4\x98\xd9\xb4\x35\x4a\x82\xd4\x0a\x5d\xb1\x65\xc0\xc2\x70\x5c\x7b\x09\x10\x04\xd5\x91\xb8\x56\xb7\xab\x55\x38\x76\x9b\xa3\x69\xa6\x8f\xab\x9a\x03\xdc\x31\x1b\x3c\xe7\xbc\x4c\x89\x8c\xa5\x7e\xaa\x22\x15\xe3\x11\xe1\xf1\x68\xcc\x4f\xd8\xe0\xef\x2c\xb1\x10\x72\x9b\xd9\xbe\x8c\xe1\xfd\x27\xfe\xf9\x48\x9a\x87\x71\xd1\x8f\xcb\x47\xe5\x4a\x27\xbe\x87\x03\x49\xe2\x9f\x90\x7e\xa4\xcf\x06\x3a\x2a\xba\x2f\xcd\x03\xc9\x62\xd1\x67\x83\xb3\xf4\x8f\x85\x90\x4a\x7c\xf6\xa5\xf7\xc3\xd2\xf3\xe8\x24\x83\xbb\x15\xb3\x90\x40\x73\x25\x5f\x14\x69\x70\xcc\x7e\x7a\x24\xc2\xe1\xf1\x68\x54\x05\xe7\x5f\xf2\x72\x46\xe5\xef\x65\x0e\xf9\xd5\x0b\x37\xf3\x5a\xe8\x16\x90\x67\x04\x63\x25\xc9\x46\x27\xcc\x25\x18\xc3\xa7\x38\x3c\x55\x02\xa2\x8f\x0f\xd3\x24\xc6\x7d\x19\xf6\xf1\x21\x78\x58\x62\xdc\x2f\x22\xfd\xe9\xb4\xe3\xd3\x4a\x11\xb4\x92\xb9\xa0\x7e\xec\xd5\x2c\xea\xb9\xba\x0f\x8f\x73\xe0\x65\x8c\x49\xc2\x8b\x14\xe2\x13\xe0\x84\xc9\xc1\x31\x01\xc7\xf6\x7b\x5a\xd2\x99\x88\x6e\xb5\xb5\x16\xdd\x1a\x85\xad\x8d\xa8\x09\x33\x9a\xfe\xac\x48\xff\xa2\x84\xc3\xbc\xa1\xf7\x59\xed\xca\x2e\xd3\x99\x8d\xdc\xb5\x3f\x79\xec\x0b\xb8\x0a\xad\xdc\x25\x60\x0b\xb8\x91\x15\x32\xe6\x75\x69\x11\x92\xe3\xae\x72\x45\xbb\xdc\xad\x81\x4d\xfa\x62\x2c\x2a\x48\x26\x3e\x70\x2e\x23\xa3\x8a\x57\x2b\xa2\xfd\x8d\x2f\x16\xda\xc9\xd6\xb8\x72\xbe\x20\xbc\x9a\x36\x9b\x1b\xbc\xb1\xb4\x61\x9e\xc4\x8f\x63\x7e\x78\x58\xd8\xfc\x4d\x10\x21\x1d\x92\x62\x45\x68\x62\x4c\x53\x6d\x1f\xd4\x2d\xc4\xf0\x56\x6b\x88\x53\x13\x0d\xef\xdf\x4f\x63\x2d\x02\x65\x1b\x19\xa0\x3d\x4d\x72\x77\xe7\xce\x21\x18\xec\x6e\x6c\x83\x99\x95\x77\xeb\xb3\xf6\x20\x31\xb8\x15\x0c\xc4\x22\xa4\xa4\xd1\x64\x54\x23\x2a\x47\x48\x70\x1d\xdb\xda\x3b\xf6\x7f\x50\x28\x51\xda\x35\x48\x78\x21\x16\xf9\x5f\xb9\x90\x7d\x3c\xbc\x3e\x1e\x26\x54\xd2\x9c\x4f\x86\x29\x95\x34\x61\x85\x84\xac\xf7\x03\x39\x65\xde\xe9\x95\x4a\xb8\xb2\x55\xb8\x22\xe0\xf0\x7e\x5b\xef\x8f\x85\xb7\xfa\x78\x73\x6d\xa5\x66\x72\xdc\xd4\x87\x57\x39\x0e\xd9\xa7\xd1\x67\xe7\xa0\x7c\x91\xec\x30\x3c\x47\xd7\x6b\x3d\xa4\xf5\xbb\x7c\x3e\x7c\xfc\xfb\x7b\x08\xec\x0e\x6e\xd3\x24\x62\x83\x34\x21\x69\x62\xd7\x48\x3b\x22\xc7\x38\x0f\x9a\x75\x2b\xe1\xd2\x6c\x25\x53\x15\x0b\x9a\x0f\x17\x99\x71\x65\x12\x80\x40\x86\x1d\x88\xb6\x97\x13\x55\xda\xba\xe6\xb2\x85\x54\x32\x90\x4f\xdc\xba\x09\xac\xbb\x98\xc1\xa9\x66\x09\x69\x39\x79\x99\x66\x05\x95\x3b\x41\x59\xd5\xba\x1f\x48\x8f\x1a\xec\x49\xbd\xea\xe6\x95\xa8\xc9\x8d\xd5\xb5\x35\x70\xb2\x79\x90\x26\x60\x52\xa9\xb7\xa6\x27\x39\x80\x07\xf7\x3a\x4d\x84\x2e\x58\xbd\xf2\x06\x85\x21\xac\xde\xfd\x74\x45\x32\xf1\xa2\xe4\xf3\x94\xdf\x14\xe6\xfe\x1b\x38\xf0\x64\xe9\xeb\xf5\xf5\xbd\x3c\xa4\xf3\x1a\xbe\x6d\x72\xd2\x26\x0e\xf6\x59\xdd\xeb\xea\xe3\x94\xdf\x3c\x84\x9c\x41\x7f\x5b\xf9\x0c\x85\x7e\xe5\x25\xf8\xe5\x43\x35\x19\xfc\x01\xf4\x7e\xc5\x96\x91\x54\x26\xf2\x2e\xc4\x70\x75\x3d\x84\xec\xea\xa7\xaa\xde\xa1\x60\x73\x56\x52\xc9\xcb\x78\x88\x89\x92\xc0\x5f\x4b\xb7\xaf\x99\xbb\xda\x08\x7c\x03\x6c\x65\x89\xf7\x7e\x7a\x32\x27\xd0\x00\x51\xdc\xd9\x94\x5d\x6a\x10\x4e\x45\xc0\x05\xed\xb1\xb7\x37\x56\x53\x2c\x81\xfe\x4e\xe0\x8f\x47\x6b\x8e\x56\xd5\x57\xf7\xbe\x5a\x1a\x13\x3e\xd0\x3f\xdc\xb7\xba\x6d\xae\x0a\x78\x6f\x3c\x12\x55\xca\x4e\x7d\xd5\x4f\x15\x23\xb0\x1b\xa8\xd6\xc0\x4e\xe8\x0a\x18\x1a\x5b\x4b\x71\x2f\xd3\x4c\x7e\x17\x8a\xdb\x88\x61\x19\x92\xf2\x61\x32\xb8\x20\x50\x28\x2a\x15\x69\xee\x4c\x99\xa4\x20\xe5\x06\xc1\xd4\xc4\xa2\x42\xa1\xb1\x79\x33\x26\x02\xad\x77\x42\xcd\x14\xea\x9f\xf7\x25\x9f\x65\x82\xc5\x3b\x82\x61\x89\x60\x0d\x9f\x74\x42\xf8\x0d\xf9\xa4\x4b\x0f\x57\xcb\x19\xa0\x5d\x7b\x9a\x54\x3b\x52\x70\x78\xba\xfd\x08\x85\x76\xa1\x0c\xb3\xe2\x92\x2b\x94\x43\x73\xc6\xaf\x02\xb2\x99\x48\x3d\xcf\x1b\xe6\x41\x0e\x4c\x2b\xb1\x42\xb9\x82\x3b\x92\xdf\x92\xbf\x3d\x43\x6f\x6b\x56\x6f\x71\x6e\x9d\xdb\xff\x15\xcc\xae\x94\x93\xde\x1c\x6b\x08\x98\x6e\x26\x77\xd5\x8c\x53\x8b\x38\xb4\x3a\xfe\xb7\x6e\xdd\x9d\x2c\x44\xcf\x69\xd0\x66\xfc\xad\x4d\xab\x5d\x2d\x20\xcf\xfc\xfb\x06\x16\x90\x19\x78\xcb\x08\xda\xd2\x2a\xa9\x80\x91\x2d\x5c\x3e\x54\x87\xaf\x41\x68\xf1\x2d\x11\x3a\x65\x34\x97\x53\x8b\xcb\x21\xee\xb3\x41\x41\x67\x7a\x55\xfb\x5d\x8c\xca\xed\xb8\xf6\xd3\xe7\xb1\x6c\x35\x6d\xee\x8e\x63\x6e\xae\xce\xe9\x44\xc0\x5a\xbb\x18\x24\xbc\x48\xa8\x0c\xea\xdf\xa0\xcf\x22\x86\x02\x7a\xd9\xdb\x69\x7c\xfa\xde\xe5\x55\x18\x0e\x16\x45\xf6\xcf\xc0\xde\x1d\x4e\x10\xee\x60\x70\xf7\x4a\x52\xc5\x7d\x15\xff\xc0\xd6\xde\x37\x9c\xf0\x4d\xb3\x4d\xca\xf8\xff\xda\xff\x88\x88\x8f\xaa\x1f\x99\x46\xa0\x67\xdb\xb6\x57\xb8\x85\xbe\x89\x10\xa6\x3b\x8e\x0b\x80\x5c\x03\xc2\xe3\x62\xf0\x91\x4d\xc0\x35\x72\x4f\x23\x3a\x1f\x95\xae\x7c\x10\x33\xf8\x7b\x78\xc8\x6c\x75\x77\x5d\x8c\x8c\x9d\x2f\xa8\x20\x2c\x1c\x67\x9a\x4a\x6e\x95\xb5\x1e\xe9\x6a\xc4\x96\x88\x24\x11\xba\x7a\xc4\x57\x90\x25\xf9\xa4\x84\x53\xd6\x32\x24\xe2\x44\x82\x8b\x46\x33\x59\xa6\x13\xce\x76\x3a\xe1\x20\xb2\x0c\xda\x3b\x92\xee\x71\x05\xfe\x29\x18\x23\xa1\x71\x66\xb3\xf8\x26\xde\x4d\x62\x01\x1d\x3e\xf6\x5c\x17\xf4\x94\xc7\xf4\x4f\x8f\x4f\xb3\x4f\xc9\x67\xd7\x4c\x14\x64\x9f\x92\xa3\xe3\xea\x45\xbf\xf6\x39\x1c\x3e\x8e\x44\x5c\xc6\x3c\x1e\x91\x2e\x8b\x45\xeb\x3c\x30\x5a\x94\xf1\x32\xe3\x93\x92\xce\xa7\xcb\xe8\xd6\x36\x20\xa2\x8c\x14\x91\x03\x6f\x96\x15\x11\xf8\xb2\x5f\x15\x32\x38\x1e\x8d\x1e\x95\xe0\x8e\x22\x33\x96\x66\xb4\xf1\x89\x9b\x4f\xf4\x4b\xfd\xbd\xf1\x60\xc1\x92\xf3\x2b\x56\x9c\x9e\x80\x00\x51\x74\x8f\xe9\x54\x97\x00\xdb\x18\x1b\xbb\x9b\x15\x06\x2c\xbd\xf2\xd3\x94\xb4\xab\x51\x21\x62\xb6\x83\xa8\xf7\xd4\xbc\xea\xb2\xa9\x55\x85\xa7\x56\x2b\x85\x5c\x4d\x33\x06\xc8\xec\xaf\xba\xe0\xf8\x1f\xa0\x75\xed\x92\xfe\x7b\x39\x1d\xb6\x9c\x04\xbb\xde\x77\xf8\x3b\x4b\xf2\xff\xae\xe8\xa3\x49\x3e\xd4\xe9\x02\x1e\x8c\x35\x6f\xff\x03\x9c\x63\xaf\x5e\x9c\x4a\x7b\x89\x62\x60\x86\xef\xa1\x32\xf2\xb0\x5c\xff\x62\x91\xec\xdc\x96\xb0\xc3\xdd\xb5\xfd\xc1\x0e\x0f\x7f\x1c\x69\x57\x9c\x80\x38\x8a\x2e\x07\x64\x9a\x0c\x6a\x21\x61\x61\x04\xd5\x9e\x78\xd5\x3a\x5d\x77\x69\x32\xa8\x05\x86\xc1\x1e\xdd\x96\x53\xaf\x03\xdd\x6a\x2b\xde\xb3\x24\xc7\xa4\x31\xd8\xb0\x46\x1a\xff\x2e\x1b\xac\x21\xf9\x09\x4d\xf2\x1d\xc4\xaf\xa2\x1c\xb3\x6c\x62\x83\x2c\x5d\x67\x95\x79\x12\xd7\x9f\x6d\xbd\x38\x7d\x88\x5c\xa3\x49\xee\x59\xb1\x7a\x7c\x0f\xf1\x19\xb7\x90\x04\x61\xa4\x10\xb3\xe7\xc5\xbe\x56\x80\xd5\xf6\xea\xaa\xd7\xd5\xae\x9d\xbe\xe7\xc9\x8b\xa6\xf5\xfa\x74\xc1\xab\x5e\xb4\x2d\xf6\xf6\xaf\xfd\xd7\x61\xb8\xb2\xc9\x77\x44\xe3\x8b\xf3\x22\xb7\xc0\xea\x00\x08\x2e\x04\x89\x3e\x61\x5a\x8d\x06\x7f\x26\x2d\xff\x61\x74\x70\x4c\x60\x77\xd3\x45\x17\xbb\x0f\x23\x52\xf9\x84\xd7\xc4\xcf\x54\xf7\x8f\x40\xc6\x1f\x1d\xd7\x63\xa2\x80\x36\xc6\x4e\x68\x21\xb9\x26\x6e\xcb\xb2\x79\x5f\x76\x06\x22\x35\x23\xb2\x4c\x5b\x3e\x08\x26\xea\xef\xdb\x81\xd0\x08\x98\x5a\x07\xc2\xba\x08\xad\xe6\xde\x75\x1b\x5b\xd8\xbf\xdb\xa1\x56\xc0\x45\x30\x1a\xf6\x3d\x18\xdd\x17\xe7\xc5\xbc\x50\xad\x48\x7a\xc1\x5d\x6b\x41\xd6\xe1\x68\x1d\x41\x28\xf7\xf6\x85\x5d\x47\x78\x53\x2f\xdb\x04\x87\x75\x20\x85\x8c\xc2\x56\xfe\xc3\xb6\x78\xbb\x3e\x3e\xf2\xcf\x75\x1c\x99\xd4\x89\xe4\x60\x64\x77\x67\x8c\xaf\xa2\x83\xcc\xb5\xff\xbc\x52\x3a\xe6\x04\x79\xcb\x35\x0e\xaf\xdd\x21\xde\x0e\x3f\x7c\xb8\x22\xd3\x2c\x65\x7e\x17\x9d\x22\x60\x1b\xa8\xc9\x76\x40\xab\xfe\x14\x18\x2d\x68\x37\x6e\x15\xac\x42\xf2\xfa\x5a\x09\xca\xed\x85\x9b\x73\x4e\xbd\x66\xcb\x35\x61\x46\x1e\x63\x19\x9f\x90\x1f\x6f\x68\x9d\x3e\x7e\x14\xae\x17\x84\xb5\x22\xbe\x0e\x7e\xc7\x68\xc9\x44\x2b\xbe\xab\xa6\xf8\x48\x11\xcb\x46\xd3\x44\xd8\x57\xa0\x0a\xf5\x93\x13\x60\x70\xdb\xfb\x7a\xcd\x68\x15\x1f\xfd\x83\x7e\x09\x6e\x17\x65\x1e\xdd\xe3\x17\x65\xc6\x21\x8a\x89\x20\x3c\x24\x70\xf6\x17\xff\xe5\xe5\x39\x5e\x35\xb5\xa0\x4e\x1a\x59\x0d\xef\x83\x8e\x2f\xf7\x36\x48\x57\xe1\x40\x71\x51\x4d\x71\xfe\x38\xfa\xb1\x6e\xa9\x6c\x6c\xa3\x00\xeb\xc9\xce\xfb\x1b\x7d\x4c\xb7\xb1\x35\xa4\xec\x0c\x6f\xca\x9b\x34\x70\x6f\xb4\xa3\x55\x28\x69\x82\x3f\x93\x34\xd9\xa0\x11\x4c\x8a\xb1\x01\x78\x09\x1c\x38\x4a\xd3\x38\x36\xd3\x86\x40\x23\xc2\xc7\xa7\xdd\x6a\x0c\x23\xbd\x2c\x36\xf3\xce\xec\x24\x9b\xdd\x84\xb0\xa2\x04\x3f\xaa\x4f\xc4\x81\x79\xdb\xf0\x63\x2a\x34\x6d\x20\x92\xcd\x54\x52\xb4\xa2\xfd\x74\x9e\x35\x63\xa6\x80\x5b\xb3\xe8\xfb\x7b\xf3\x2e\xc3\xda\x0e\x94\xe5\x55\xf7\x89\xeb\xfd\xef\xe7\x18\x34\x72\xc4\xea\xc1\x65\x6d\x82\x03\xb1\xcd\x2c\x37\xea\x50\x46\xc5\x8f\x9b\xe9\xd0\x07\x3b\x5a\x57\xd6\xec\xda\xd7\x86\xd8\x4d\x78\x1d\x44\x6d\x0a\x82\x61\x6f\xb4\x24\x26\xf8\x83\xce\x52\x65\xb3\x53\xdd\x4c\xb3\x9c\xa1\x79\xc9\x13\xa6\x95\x38\x52\x38\xd1\x7c\x70\xce\xbe\x40\x92\x4d\x93\xe9\xab\x1d\xa4\xb9\x13\x09\xad\x91\x13\x8e\xa0\x5a\xa4\x23\x36\xd0\x86\x4d\xf2\xc1\x8b\xcb\xac\x9c\x05\xf8\xac\x64\x90\x5b\x4b\x2c\xcc\x03\x24\xd9\x92\x1c\xd9\x84\x65\xd3\x4c\xa0\x4b\x18\xc0\x29\x0e\xed\x75\x8a\x3b\xd0\x49\x9b\xea\xfb\xf8\xb4\x64\xc9\xa2\x14\x4c\xad\xe7\x84\x25\x9c\x17\x2f\xdf\xbc\x3c\x7f\x79\xbf\x60\xaa\xc9\xdd\xa0\xf8\xbe\x33\x58\xdf\xd5\xdb\x42\x2e\xdd\xd6\x04\xc9\x03\x85\x91\x93\x3f\xda\x5c\xdf\x45\xfe\xf8\xe6\xdb\x1a\xc2\xf1\x0d\x38\x58\x77\x60\x9b\x41\x70\x23\xe5\x3c\x74\xe6\x35\x4d\x7a\x13\x5d\x49\x08\xd9\x19\xa2\xda\x26\x80\x62\x5b\xce\x2d\xbe\x19\xe7\xea\x7c\xec\x6a\xd2\xb7\x41\x3d\x69\xad\xd0\x9b\x62\xab\xbe\x7b\x66\x0d\x94\x20\xac\x1b\x51\xb5\xf1\x19\xe9\xf1\x35\xda\xe7\x3e\xd1\x61\xa7\xdf\xd8\x24\x4d\xe0\xbe\xad\x2d\x52\xd4\xe9\x81\x7f\x1d\xe3\x8b\xef\xcf\xf8\xaf\x24\x9b\x75\x5a\xa0\x10\xc6\xbb\x61\x31\x9b\x26\x98\x34\x56\xb4\x7e\x04\xe1\x27\xac\xf7\x52\x30\xc1\xc2\x1d\x58\xb3\x21\x87\x3b\x09\x0a\x57\x4b\x2d\x83\xa7\x54\xbc\x84\x04\x28\xfa\xa7\xee\x43\x8d\x27\xc2\xbf\xc2\x33\xba\x58\xc2\x41\x5e\x6c\xbe\x45\x18\x13\x0d\x40\x84\x69\xb1\x44\x16\x18\xfd\x97\xc1\xb2\xdc\x7b\xed\x56\x4e\xc4\xad\xa6\xd4\x4a\x5d\x19\x6c\x59\x31\x51\xc8\xda\xb4\x96\xf4\x61\xa7\xfe\xa1\x5f\xdf\x75\x60\xa3\xc2\xd3\x44\x87\x21\x69\xe6\x51\x56\xc2\xdd\x9d\x7a\x69\x37\x09\xab\xf7\xfe\x2a\x6e\xab\x2e\xcc\xd8\x59\x6a\x92\xb1\x77\xdf\x38\x66\x56\xf4\x7a\x9a\xea\x01\xf5\x06\x1d\x2e\xeb\xaa\x36\x5f\x24\x9b\x55\x47\xa7\x3a\x37\xc9\xfc\x26\xf5\xe9\x06\xc9\xdf\xf0\x1b\x56\x3e\xa7\x82\x05\xe1\x60\xa6\x03\xec\xeb\x6f\xc3\x55\x38\x16\x37\x99\xfa\xc2\xc2\xdb\x84\x0a\xe6\x66\x21\xaa\x62\x2f\xdd\x79\xad\xd6\xca\x57\x09\x92\x31\x54\x73\x0b\xe0\xed\xaa\x8d\xc2\xb1\xc9\x48\xe4\x2a\xd4\x02\xfe\xdb\x14\x0c\x28\x18\xfc\x3f\x46\x93\xa9\xaf\xc2\x4c\x8e\x33\x47\xa8\xf7\x2d\x59\x2b\x46\xa8\xb4\xaf\xdb\x13\xdc\x7e\x2d\x58\x63\x45\xbd\xbc\x7f\x90\x06\xce\x0a\x7b\x3c\xca\x04\x5c\x74\x64\x12\xde\x2c\x8c\xd7\x09\xdb\x07\x2d\x00\xb7\x36\xdf\x2a\xb8\xb5\x09\x67\xf6\x53\x76\xb6\xe1\xec\x26\x91\xb9\x0a\x51\x19\xfe\x4d\x6b\xbf\x43\x70\x7f\xed\x5e\x94\xde\x0f\x85\x8e\x3a\xbc\xb5\xb2\xb9\x5d\xa4\x77\xc6\xfe\x05\x66\x20\x10\xa2\x47\x84\x6d\x0d\x51\xd9\x81\x8a\x1d\xd6\x90\x9b\x71\x37\x35\xa2\x1c\xbe\xbe\x5d\x17\x43\xe1\x9d\x14\x11\xdf\x4d\x7b\x7d\xde\xa0\x62\x10\x2f\xd1\xab\x17\x98\x08\x46\xcb\x64\xfa\x8c\x96\x4a\x23\xe9\x7d\x86\x67\x0b\x29\x79\xa1\x7e\x2b\x12\x52\xed\xe9\x0b\xc5\x30\xc1\x55\x12\xd5\xdd\xd6\xee\x1b\x50\x02\x7b\x1d\xa1\xa7\xf0\xd6\x2a\xac\x4a\xf5\xa8\x3a\x4e\xc3\xec\xa8\xc1\xbe\xb9\x3e\x2a\x3a\xf4\xd1\xb8\xed\xcc\x5a\xaf\x7f\x6c\x70\xa1\x3e\x4b\x0d\x47\x9b\x3b\x35\x4f\xd1\xd0\x3c\x63\xef\x48\xc6\x41\x1c\xcb\x53\x69\x57\xf4\xaf\x5e\x6c\xd9\xc4\x2a\xec\x54\x19\x6b\x34\x85\x76\xb6\x9c\x25\xed\x88\xdf\x75\x12\xb6\xb0\xe6\x6e\xe1\x9c\x2d\x67\x49\x0e\x4b\x9c\x62\xa3\x88\xfd\x56\xeb\x1c\x9a\xe4\x43\x0d\x36\x26\xb2\x6b\x85\x03\xc7\xe8\xf4\x51\xb6\xec\x72\x09\x5b\xf8\x6d\x79\x56\x74\xad\x1c\x2a\x22\x24\x6c\xf0\xea\x45\xe5\xa1\xd9\x65\xbb\x54\xc1\xb4\x69\xbb\x74\xe3\xee\x72\x6b\xdf\xd3\x2e\xc3\x80\xd6\x88\xf4\x5f\xdd\xbf\x32\x83\x43\x59\x41\xb7\xf0\x85\x5e\xb2\x62\x82\xce\x9e\xbf\x69\x8a\x5f\xf2\x67\xf6\x64\x6d\x3f\xab\xe6\x0e\xe5\x03\x0d\x04\x90\x12\x0f\x76\x17\x6e\x96\x63\x8e\xbe\x05\xdb\x6a\x2d\xe9\x2d\xe3\x89\xe3\x5b\x63\x3b\x8c\xd9\x26\xb2\x1e\x67\x97\xc1\xd6\x06\x82\x4e\x96\x9e\x09\x04\x74\x0f\xd9\x15\x97\x7c\x51\x7a\x86\x42\xd7\x6e\x80\xc9\x66\x23\x15\x45\x8e\x59\x17\xdd\x56\x3a\x68\xed\xca\x96\x58\x62\x78\xc7\x6f\xd0\x42\x40\x8a\x42\x08\xe6\x41\xb8\xaf\x5a\x26\x4f\xd8\x93\x70\xb5\x22\x49\xce\x8b\xf6\x1e\xc7\xb6\x6b\x5f\xcf\xb5\xf1\x60\x59\xd0\xe9\x5e\xf4\x46\xb8\xb3\xac\x50\x23\x02\xe7\xe9\xab\x17\xa4\xa8\x0b\x8c\x2e\xc9\xd0\xd9\x7f\x4b\x32\x74\x3a\x36\x1d\x92\x3f\xea\x9c\x93\x97\x8b\x3c\x5f\x22\x00\x20\x45\x66\x1a\x7f\x54\x78\xfe\x6e\x76\xd3\x3a\x87\xeb\x8a\x60\xed\xd9\xc0\xff\xd6\xb9\x7d\x90\x27\x14\x2a\xef\x6c\x44\xab\xa9\xf7\x0c\xe8\x6d\x26\xdf\x5e\xa3\xb1\x9b\xbc\x2f\xba\xe5\x3d\xbf\xf8\x43\xc4\x9f\x3e\x93\xad\xc2\x62\x54\xe1\x4d\x91\x31\xf0\x7d\x43\x70\x4c\x87\xb1\x04\x36\x98\x1f\x7b\xa2\xda\xe8\x72\xf4\xad\xa5\x77\x7c\x1f\x95\x9f\x3d\x7f\x63\x26\x2a\xb5\xb9\x5a\x81\xe2\xb1\x16\x26\xff\x16\x32\xd7\xde\xdb\x5d\x0c\x9a\xef\x41\xe7\xbb\x12\xaa\x86\x1a\x37\x29\x74\x5b\x7b\xc6\xa1\x75\xc3\x44\xe9\x2e\xba\x27\x6a\x47\xd3\x01\x9a\xda\x68\x3a\xac\x9b\x9e\x66\x78\xce\xf6\xa6\x83\xd3\xe8\x25\xdb\x5d\xa7\xaf\x93\x3b\x65\x5b\xf0\x40\xf3\x56\x2b\x6b\x20\x41\xf4\x04\x9d\x27\xca\x9b\x41\x48\x1b\x12\xd9\xad\xcb\x50\x57\xe9\x0c\xf3\x4d\x83\xa0\xa7\x66\xad\x3a\x0f\x41\x53\x8b\x8e\x68\x84\x36\x2f\xeb\x74\x65\x15\xf2\x5f\xaa\xa9\x7c\x28\xe6\xcf\xc1\x68\xd8\x18\xbd\xe0\x8d\x6d\x1d\x48\x5e\x64\x15\xb9\xa0\xc9\xd5\x5f\xf9\x6c\xd7\xa1\x8c\x75\xbc\x93\x77\x49\xa7\x7f\x37\xe7\xad\x64\xb3\x79\x4e\x25\x7b\x07\x49\x09\x95\xc1\xe9\xd2\x0a\x8b\x08\xa7\x26\xfc\x41\xa8\xd7\x59\x72\x55\x73\x30\xfd\xe0\xee\xfe\x0f\x07\x99\x08\xf0\xa0\x2a\x1d\x1e\x1e\xfe\x10\xe0\x45\xee\x5e\x1d\xcd\x58\xb1\xc0\xe1\x60\x9a\xa5\x2c\x70\x3b\xea\x6a\x99\xbb\x1d\x60\xca\xae\xc7\x0d\x9f\xc4\x76\x35\xab\x74\x83\xed\x73\x1b\x3b\xb5\xd0\x6c\xc0\x90\xd9\xf6\xf0\x0f\x4d\xee\x6f\xec\x3b\x6c\xb6\xab\x6e\x52\x1b\x36\x3c\x8e\xdb\xd7\xad\x55\xfd\x6a\xc0\x5f\x5f\x37\xae\x7d\xdd\x50\xff\xea\x1a\xbb\x65\x90\x22\x9c\x67\xb4\xdc\xae\xa2\x66\xa7\x0b\x5a\x56\xf5\xf3\x6d\x6b\xe6\x02\x37\xd6\x5e\x5b\xd7\xc4\x0d\xc9\xbb\x2d\x89\xb8\xac\x85\x55\x82\x0c\x23\xb0\x18\xa1\xa1\x4d\x8a\xe3\x47\x2b\x89\x7a\x24\xc4\xe8\xa4\xab\x8c\xcb\x99\xf0\x43\xd0\xf5\x39\x1c\xb0\x46\x62\x03\x1a\xde\xd2\x2a\x43\xb1\x39\x0f\x21\xe0\xfa\xd8\xc6\x6d\x06\xb7\x26\xfb\x76\x84\x4f\xe6\x4f\x21\x1a\xe7\x64\x38\x7f\x8a\x89\xc9\x60\x8f\x21\x51\x3e\x26\x3a\x2f\x78\x84\x21\x13\x3d\x36\x4a\x57\x67\xa2\xc7\x44\xca\x3c\xa2\xab\x70\xac\x6d\xfe\x20\x24\x5d\x40\x2a\xeb\xae\x73\x6c\x60\xa8\x09\xff\xb6\x4d\x17\x39\xff\x96\x2f\x04\xfb\xed\x9a\x95\xd6\x25\x40\xf5\x6a\xf3\x4c\xca\x32\xbb\x00\x19\xa7\x74\xfe\x11\x10\x77\xd8\xc7\xe8\x08\x99\xb0\x8f\x66\x09\x7b\xec\x42\x95\x9a\x09\x4c\x44\x77\x43\xe6\x50\x0a\x0e\xc7\x18\x1f\xc4\xb1\x38\x3c\x0c\x68\x3f\xc6\x28\x30\x87\x5d\x94\xfe\x16\x7d\x1c\xe2\x90\xb8\x1c\xed\x13\x66\x53\xc1\x3e\x5b\xbe\x4a\xfd\x63\x00\x00\xd7\x51\x56\x5c\x72\x1c\x0e\x24\xfb\x22\x8d\x03\x2d\xa6\xab\x35\xb7\xa9\x05\x78\x4e\x0b\x96\x3f\xa3\x65\xfb\xde\x39\x6a\xdd\x5d\x34\x76\x3b\x2c\x71\xcc\x4e\xf1\xc5\xe4\x68\x52\x32\x56\xe0\x48\x3d\xf2\x12\xae\x71\x26\x6a\xae\xbd\xf6\x3f\xd2\x4b\x66\x12\x3e\xd5\x12\xb5\x43\x7f\x47\x17\xb4\x44\xbd\x3e\xed\xf7\xb0\xcd\x9f\x5e\xdd\x7a\xde\x01\xa4\x32\xe5\xff\x85\x30\xc2\x7d\x95\x17\xb4\x3c\x82\x50\x72\x5e\x48\x9a\xef\x02\xad\xf1\x17\xbc\xd3\xfb\x8a\x1b\x20\xd6\x0b\x0c\x55\xee\x14\x43\x92\xf9\xa7\xb8\xef\xb5\xf7\xbb\xcc\x72\x31\x60\x22\xa1\x73\xf6\xf2\xcb\xbc\xd4\xcd\x06\xb0\xc2\x55\x6c\xa3\x6b\x44\x3b\x55\x85\xbb\xfb\x5d\x65\x74\x22\x66\x34\xcf\x77\xec\x56\x57\xd9\x80\x4c\xba\x0d\x7a\xde\x32\x49\x3b\xd0\x13\xd7\x66\x62\xc6\x24\x55\x8c\x82\x9f\xf6\xb6\x02\xf1\x19\x9b\xd2\xeb\x8c\x97\x8a\x37\x2f\xcc\xb3\x9e\x32\x6c\x37\x52\x31\x1c\xf7\x3b\x3f\x7f\xa3\x78\x2d\xa6\xfd\x35\xfd\x11\xb4\x5d\x8f\xe7\xe7\x6f\x54\x67\xe7\xe7\x6f\x4c\x3f\xe1\x83\x11\x43\x93\xbc\x49\x33\x4a\xb0\x5a\xb8\x15\xb1\x9c\xd2\x68\x7d\xeb\x5b\x80\x1b\xf6\x7b\x66\xce\x1d\x3f\x2e\xf2\xfc\x48\x5f\x0e\x54\xf0\x23\xd8\x17\xdd\x0a\xd7\xd4\xa7\x85\x8d\xc3\xd2\x6b\xab\x0f\x8b\x9c\x89\xfa\x7c\xd7\x06\x86\xdf\x71\x54\xaa\x32\xc8\x5e\xd7\x18\xb1\xcd\x22\x61\x96\xc9\x6e\x54\x21\x9b\x8d\xea\x29\x3d\xad\x27\x4e\x53\x40\x0f\x06\x83\x7b\x9a\x36\x96\xd7\x39\x9d\xb8\x25\x70\xf3\x70\xa2\x4e\x84\xc7\x4c\x16\x5f\x05\x3b\x1c\xda\xdc\xd4\x6a\x25\xa6\xff\xa2\xfe\x6d\x82\xae\x15\x66\x75\xde\x72\x5c\x1d\x36\xec\x3e\x23\x59\x7d\x7f\x2a\xe0\xfc\x62\xf5\xc2\x2a\xe0\x22\xa6\xc3\xc7\x47\x7f\x26\x32\xee\xe9\xbb\xd4\x4e\xc4\xf5\x04\xc1\x9d\xbf\x31\xd6\x02\x0d\xe9\x9b\x7f\xed\xcf\xa7\xc8\xfc\x77\x32\xb1\x04\xe2\x9d\x32\xd3\x57\x71\xa9\xf9\x8c\x31\x3c\x2a\x53\x24\xe8\xf5\xe9\xf0\x71\x1f\x13\x84\xe1\xa1\x17\x56\xad\xa8\x76\xbc\x1f\x08\x9d\xe8\x1b\x68\x6c\xdb\x6a\x71\x31\x81\x94\x58\x18\x95\x0a\x86\xa2\xdf\xc3\xc3\x4d\x35\xe8\x97\x4c\x98\xb2\x83\xc7\x3f\x3d\xda\xa9\xfc\x8e\xc5\x7f\xd9\xa2\xfc\x05\x2f\x53\x56\xae\x01\xfe\x64\x38\xa9\x61\xa2\x52\x2f\x05\x13\xf8\x69\x8f\x94\xde\x9c\x09\x92\xc5\xa5\xcd\x51\x96\x5d\x06\x4f\x7e\x1e\x9d\xb0\x41\xa1\x09\x23\x8f\x9f\xfc\x3c\x1a\xb2\x41\x31\x2e\xe3\xb2\xbd\xa3\xe5\x91\xfe\x28\x8e\xe9\xdd\x1d\x8d\xe3\xec\xe8\xf8\xee\x4e\xa7\x1c\xa3\x45\xca\x67\x41\x78\x92\xaf\x42\xaf\x13\x9b\xbd\xb3\xec\x4a\x54\x45\xc3\x5b\xd9\xb7\x54\x63\xe0\x57\x60\xfb\x14\x50\x72\xa9\xa7\xff\xc9\xcf\xa3\x47\x74\x98\xa9\x99\x47\xcb\xc7\x0a\x13\x47\xc5\xa3\xa0\x1a\xda\x50\x84\x8a\xd2\x9c\xe5\xa4\x4a\x6c\x23\x5a\xe1\x24\xa4\xab\x69\x5b\x53\xb5\xab\xb6\xdd\x67\x63\x49\x6d\xdb\xb6\x29\x0e\xcd\xf3\x02\xae\x25\xe6\xd7\xac\xf4\xc9\xbd\x32\x06\xd5\x7a\x37\x1c\xe3\xe1\xd3\xde\x2a\x24\x75\xbc\xac\x9d\x63\x7a\xc1\x72\x81\x37\xd1\xce\x9c\x67\x85\x04\xd2\xf9\xa9\x49\x64\x15\xf3\x65\xc9\xd5\x1a\xb6\x1b\x29\x0d\x75\x64\x98\x20\xac\xf7\x64\x67\xeb\xcb\xe3\x18\xff\x32\x6a\xb4\x8e\xd0\x89\xb2\x0d\xd1\x97\x18\xff\xf2\x13\x46\xcb\x18\x8f\x30\x4a\x97\x31\x1e\x3c\x79\xcc\x66\x4a\xfa\x07\xa3\x13\x71\xea\x8e\xfa\x3e\xb6\xb9\xea\xa2\x51\xd8\xef\xcd\xc4\xc9\x50\x55\xaf\x03\x3c\x9c\x3c\x78\x00\xdf\x1d\xfe\x9f\x46\xdf\x15\xfe\x5f\xbe\xfb\x00\x7e\xf9\xae\x13\x70\xfc\xbd\xc1\xaf\x8e\x8a\x2b\xf8\xf1\x16\xf0\xfb\xbf\xaa\xe7\x93\xa1\xb8\x9e\x6c\xb4\x3b\xa5\x52\x7c\xff\x15\x00\x00\xff\xff\x5c\x1a\x29\x19\x5a\xc4\x0b\x00") -func web_uiStaticApplicationMinJsBytes() ([]byte, error) { +func web_uiV1StaticApplicationMinJsBytes() ([]byte, error) { return bindataRead( - _web_uiStaticApplicationMinJs, - "web_ui/static/application.min.js", + _web_uiV1StaticApplicationMinJs, + "web_ui/v1/static/application.min.js", ) } -func web_uiStaticApplicationMinJs() (*asset, error) { - bytes, err := web_uiStaticApplicationMinJsBytes() +func web_uiV1StaticApplicationMinJs() (*asset, error) { + bytes, err := web_uiV1StaticApplicationMinJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/application.min.js", size: 770950, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/application.min.js", size: 771162, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticBaseCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5d\xd9\xaf\xe3\x36\x77\x7f\xbf\x7f\x05\x3b\x83\x20\x33\x83\x2b\x0d\xb5\x79\x1b\xa4\x48\xf3\x21\x29\x0a\xb4\x2f\x5d\x5e\x5a\xb4\x00\x2d\x51\xb6\x30\xb2\x28\x48\xf2\x5d\xf2\x21\xff\x7b\xc1\x4d\x22\x29\xc9\xa6\x6c\x39\x28\xfa\xe9\xde\x20\x63\xcb\xe4\xef\x2c\x3c\x3c\x24\x0f\xcf\xf5\xd9\x93\xe4\x1d\xfc\xf5\x09\x00\xe7\x15\xef\xbf\x67\x8d\x93\x92\xa2\x71\xea\x13\x21\xcd\x31\x2b\x0e\x3b\x80\x8a\x26\x43\x79\x86\x6a\x9c\x7c\x7b\x02\x80\x7f\x9c\xfd\x8e\x77\xc0\x5b\x95\x6f\xf4\x51\x4c\x72\x52\xed\xc0\xc7\x28\x8a\xbe\x81\x3f\x9e\x9e\x10\xc3\x93\x4f\xf1\x7a\x1d\xef\xc3\xb6\xeb\x2b\xce\x0e\xc7\x66\x07\x56\x10\x7e\x53\xa8\x36\x15\x2a\xea\xac\xc9\x48\xb1\xe3\x3d\x01\x74\xfd\x1a\x60\x54\x63\x27\x2b\x1c\x72\x6e\x58\xeb\x13\xf9\xdd\xba\x69\x6d\xdb\x92\x58\x36\xb4\x68\x05\xfe\x78\x02\x00\xed\x8e\xe4\x05\x57\x4c\x0b\x00\x34\xf8\xad\x71\x12\x1c\x93\x0a\xf1\xae\x05\x29\xf0\x37\xf6\x91\x54\x51\x92\x46\xde\x36\x16\x9d\xdd\xfa\xbc\x6f\x72\x2c\x7a\x8b\x26\x59\x71\xc4\x55\x26\xf0\xbb\x46\x1a\xa1\x9e\xca\xe9\x58\xc4\x24\xc1\xda\x70\x24\x2b\x7f\xbd\x09\x28\xfd\x3d\x8a\xbf\x1f\x2a\x72\x2e\x12\x47\x7e\xf8\xeb\x8a\xfe\xb2\x8e\xee\x11\xe7\xa5\xb3\xcf\x49\xfc\x9d\xf5\x57\xc7\x3d\xd4\xc7\x7d\x1b\xd0\x5f\xd6\xab\x3e\xa1\x3c\xd7\xe8\xad\xd7\x6b\xf6\xc9\xd1\x7b\x06\x47\xff\x19\x1c\x83\x67\x70\x0c\x9f\xc1\x31\xd2\x9a\x49\xdb\x11\x8f\x99\xd2\x98\xbe\x53\x52\x9d\x76\xe0\x5c\x96\xb8\x8a\x51\x8d\x7b\x76\xb4\xe6\x76\x34\xc0\xcb\x31\x74\xf7\x15\x46\x49\x5c\x9d\x4f\xfb\x9a\xc1\x96\x28\x49\xb2\xe2\xe0\xec\x49\xd3\x90\xd3\x0e\x44\x5c\x90\x71\x6a\x4c\xdf\x06\x10\xd2\x87\x46\x25\x59\x56\x5c\xd9\x03\xaa\xa5\x7a\xe8\xf8\x7c\x3d\x66\xcd\xa8\x2c\xaa\xaa\xfd\xf2\x8d\x0f\xc7\x9e\xe4\x49\x37\x10\x6a\x0f\xf6\x71\x4e\xdf\x0f\x2a\xde\x2d\x51\x81\xf9\x98\xec\x49\x95\xe0\xca\x79\xcd\x92\xe6\xb8\x03\x3e\x17\x5e\x3c\x34\x4c\x60\x64\x6a\x9a\x82\x01\xe8\x06\xd7\x67\xa9\x65\xaf\xfa\x86\x4e\x64\x7a\x9f\x69\x1d\x98\x05\x08\x1d\xf2\x7f\x9c\x23\x46\xd4\x8a\x84\x19\x08\x9b\xda\x01\x0f\x96\x6f\x60\xcd\x95\x3a\x64\x02\x8c\x6e\x89\x2a\x5c\x34\xa2\xc9\xd0\x70\x8c\x0d\x88\xca\xc7\x31\x14\x9c\x34\x59\xe7\x29\x5a\x3e\xc2\xf2\x8d\xf3\x42\x5f\xb4\xa8\x8a\x51\xf9\x50\x3e\x34\x4c\x58\x7b\x46\x67\xa4\xca\x4f\x85\x92\xec\x5c\xef\x40\x20\x3b\x93\x12\xc5\x59\xf3\xbe\x03\xd0\xdd\x48\xc7\x34\xcc\x60\xe7\x15\x0c\x4e\xa4\x27\x69\xfd\xe4\xd8\x94\x6f\xfb\x19\x53\x85\xfe\x9c\x50\x75\xc8\x0a\x27\xc7\x69\xd3\xce\x68\x45\x21\x4e\x43\x4a\xae\xdd\x8b\x3c\xba\x05\x71\x28\xb5\x96\x4d\x93\x1f\xe6\xb6\x2f\x43\xf0\x37\x05\x69\x3a\x14\xc1\x1c\xe3\x41\xe1\x2d\xcd\x09\x6a\x76\xa0\xa2\xc2\x0c\xca\xb7\xea\xe4\x1b\x1a\xa4\xbe\x16\x35\xfb\x08\xae\xd9\x87\x34\x0f\xf8\x10\xf3\x30\xb4\x14\x4c\x37\x86\xde\x98\x5e\x84\xfc\x3f\xa3\x78\xc1\x48\xbb\xa7\x52\xb4\x2e\x9c\x83\xfc\xd7\x10\x48\xed\x58\x5e\x53\x8e\xb1\x66\x8e\xc0\x88\x95\xd4\xc4\xe9\x4f\x04\xad\x53\xe8\xc6\x47\x2c\x96\x7c\xb3\xeb\xea\x52\x57\xf1\x92\xce\x95\xb6\xb3\xb9\xdc\x7a\xd1\x88\xbe\x90\xdc\xc3\x08\x5f\xe8\x41\xf8\x03\x97\xf6\x28\x86\xa5\x33\x4a\xcb\x65\xc9\xab\x41\x9e\x15\x18\x55\xa2\x97\xc5\x9a\xd4\xeb\x72\x75\x41\x32\x7b\x5c\x5d\x8d\x8c\x0e\xd6\xad\x15\xa5\x09\x9d\xe5\x59\x21\x47\x49\xcc\x40\xae\x65\x75\x39\x19\xea\x55\x37\xe0\x2c\xa7\x1f\x9f\x23\x3b\x00\xf5\x61\x35\xda\xe6\x99\x31\xa9\x68\x07\xf1\x80\x93\x6e\x11\x7a\xc3\xea\x1c\x49\x95\xfd\x4e\x8a\x06\xe5\xfa\x08\x77\xe3\x29\x66\x24\x9d\xea\xfa\x90\x47\x6d\x13\x31\x97\x2b\xfe\xdc\x6b\x9f\x27\x59\x5d\xe6\xe8\x7d\x07\xd8\x36\x75\x40\xdc\xfa\x48\xaa\xe6\x92\x96\xe0\x88\x96\x8a\xef\xda\xd6\x3a\x3e\x57\x35\x9d\x72\x25\xc9\x8a\x06\x57\x63\x2b\xfc\xc7\x14\xd1\x5f\x0d\x11\xc5\x4d\xf6\x22\xdd\xd2\xa0\xed\x2a\xcb\xbd\x8d\xdd\x5e\x69\x5e\x4f\x69\x4d\x26\x34\xb6\x6f\x69\x6c\x60\xba\xd3\x88\x62\x62\x42\x2d\x7f\x3f\xbc\xa7\x9a\x84\xd1\x73\x22\xb7\xfa\x88\x9b\xbc\xc4\x2d\x7e\xe2\x06\x4f\x31\xc1\x57\x48\x0d\xf6\xcd\x53\x39\x17\xba\x0d\x29\x9d\x7d\x85\x0a\x7e\xa8\x50\x57\x4b\x39\x35\x3b\x00\x6d\xef\x0a\xce\x55\xfe\xe9\x43\x4c\x8a\xfa\x9c\x3b\x39\x39\x10\xb7\x2c\x0e\x1f\x3e\x03\x08\x0a\xe2\x54\xb8\xc4\xa8\x31\x4e\x97\x7c\xf9\x08\xe8\xca\x17\x08\x6c\x31\xfd\xe4\x5b\x39\xe5\x03\x28\x8f\x3b\x0d\x29\xe5\x80\xb6\x4b\xa8\x6c\xad\x6d\xec\x3c\xe3\x61\xbb\xd6\x88\xe7\x42\x32\xf9\x58\x0a\x77\xca\x0a\x47\x52\xdd\x46\xda\x49\xa8\x45\x28\xdf\xc0\x47\x8c\x31\xa8\x49\x9e\x25\x62\x52\x0b\xbe\xdc\x7d\x53\x68\x4e\x54\x57\x1d\xc7\xef\x16\xb3\xd6\xcb\x28\xdd\x9d\xa4\x22\x65\x42\x5e\x0b\xdd\x31\xa2\x73\x43\xf4\xc6\xe7\xdc\x95\x4d\x9d\x13\x2e\xce\xd4\x21\x23\x35\xb8\x30\xbe\x69\x1e\xde\xd9\x98\xdb\x01\x6d\x5f\x27\xce\xa9\x53\xe6\x90\x71\xbe\xb2\x9e\x46\x03\xfd\x6c\x66\x52\xbf\x9b\xcd\x64\xea\xf5\x9a\xd6\x45\x7a\x9e\x4b\x63\x32\x12\x8d\x89\x30\xfd\xbd\x30\x2d\xd3\x80\xfe\x8a\x63\xbe\xb0\x2b\xfb\x00\xc8\x6a\x38\x68\x30\x76\xdc\x37\xc6\xd9\x72\x94\x2d\x42\x71\x96\xbd\xae\x8e\xf0\xd5\x00\x9d\x55\x9f\xe9\x44\xae\x2f\xcd\x36\x4a\xb8\xde\xe3\xe2\x02\x7d\x5d\xf8\x6b\xed\xa7\x81\xff\xff\x8a\xbe\x3e\x01\x40\xce\x0d\x5d\x06\xbb\x28\xab\x78\xe0\x98\x81\x37\xf6\xc2\xa9\x4b\x14\xb3\xc6\xaf\x15\x2a\x59\xf3\x17\x5c\xa5\x39\x79\xdd\x81\x63\x96\x24\xb8\x68\xc3\x83\xdd\x07\x38\xcf\xb3\xb2\xce\xea\x9e\x02\xf9\x4c\x65\x2f\x73\xd4\xe0\xff\xfc\x04\x3f\x0b\x4f\xbe\x6f\x0a\x7d\x3f\x39\xe0\x1a\x2e\x3a\x06\x81\x91\x92\xf8\x5c\x0b\x8c\x9e\xa4\xe3\xb2\x0e\x36\xde\x93\x37\xa7\x3e\xa2\x84\x8a\xd4\xc5\x36\x28\x19\x7d\xcf\x3a\x17\x28\x5d\xf2\xca\x2a\x3b\xa1\xea\xdd\xd0\x42\x17\x92\x9e\x10\x36\x63\x0e\x8d\x2f\xcd\xbd\xed\xa1\x41\xce\xf0\xcb\x43\x8a\xde\xa6\x41\xba\x36\xcf\xd7\x6a\x58\xbe\xc5\x7c\x45\x55\xd1\x6d\x54\x65\xd3\xdf\x7e\xfb\x87\xbf\x44\xbf\xde\x23\x82\x40\x30\x45\x10\xe4\x2c\x44\x48\xd3\x4d\xea\x9b\x22\xa4\xe9\xd6\xf7\xf7\x86\x08\xf5\x39\x8e\x71\x5d\x1b\x22\x6c\x56\xbf\x84\xd1\xfa\x1e\x11\x04\x82\x29\x82\x20\x67\x21\xc2\x26\x4d\xfa\x22\xac\xe2\x6d\x14\x06\x86\x08\x09\x2a\x0e\xbd\xd9\x94\x24\x21\x8e\x36\xf7\x48\x20\x10\x4c\x09\x38\x35\x0b\x01\xe2\xd4\x4b\xbd\x9e\x19\x41\x7f\x13\x84\x63\xd3\xeb\xa1\x93\x80\x53\x9a\xc3\xfe\x35\x40\xa6\x94\x82\x68\x72\xf4\xae\xaa\x46\xa9\x99\x0d\xfa\x92\xc4\xb1\x39\xeb\x4e\x59\x21\xa3\x10\xea\x46\xa7\xdd\x6e\xb7\x67\x84\x4d\xbb\xd5\x96\x5d\x59\x18\xc3\xa6\x6b\x50\xbe\x81\x88\x9e\x51\xf8\xbf\x43\xa1\x87\xc8\x88\xd1\x1b\x41\xcf\x27\x75\x7f\xef\x66\x31\xe1\x7b\x39\xe5\x2c\x10\x99\x07\x9e\x40\x3b\xbd\xec\xc0\xaa\x7c\x6b\x83\x29\x3d\xb0\xfa\x45\xfa\x9d\x7e\x58\x2c\xcd\xf2\x7c\x07\xe2\x73\x45\x6d\xe4\x2f\x54\xd3\xf2\x62\xa8\x6e\x1c\x3a\x00\xa5\x93\x35\xf8\xa4\x9f\xa8\xe0\xe8\x36\x71\x34\xa6\xf4\xd4\x13\xde\x1f\x3c\x68\x79\x91\xf6\x98\x9f\xd5\xc4\xb3\xe5\x66\xa9\xbb\x59\x32\xc7\xc7\x7c\x20\x23\x23\xcf\x63\x4d\xb3\x82\x2e\xc2\x46\x44\x8f\xdd\xff\x50\x75\x77\xaf\xbe\xf5\xe3\xd1\x91\x88\x47\x77\x61\x59\x0b\x12\xf2\xa0\xcd\x63\xf3\xbd\xbb\x82\xf6\xfc\xa8\x4e\xb6\xe0\x0a\x81\xbe\xb8\x43\x41\x3b\xdd\xdb\x61\xdc\xbf\x90\x90\xae\xca\x9a\x8a\x2b\x5e\x38\x47\x9c\x97\x8a\x8f\x7c\xd4\x35\xc1\x30\x63\xb6\xf1\xef\x41\x0c\xfe\x7e\x9e\x90\xe5\x20\x74\x4c\x8a\x04\x17\x35\x4e\xfe\x3c\x22\x7d\x63\x37\x5a\xe9\xe6\xd1\xbf\xbb\xee\xb9\xa3\xd0\x70\xe8\xcc\x1f\xb5\x0f\xa5\x96\x43\xfd\x3e\xcc\xb8\x65\x1f\x32\xad\x21\xee\xdd\x84\x9c\xf7\x39\xa6\xaf\xf1\x55\x49\xd4\xc6\xad\xf9\xb5\x21\xf0\x50\xb9\x72\xb1\xa0\x0c\xdc\x02\x9d\xae\xd3\xe4\xcd\x06\xef\x78\xc6\xee\x4f\x95\xbb\x9f\x29\xac\x80\xba\x44\x85\x2d\x3f\xb4\x6d\xcb\xd4\xe8\x09\x8d\xff\x0c\x9d\xd3\xf8\xcf\x85\xd3\x1a\xff\x39\xa1\x37\xb9\xa0\x05\xd1\x0f\xdd\xf3\xde\x45\x04\x50\xaf\x18\xb8\x0f\xe4\x09\x31\xdd\xc7\x52\x47\x62\x7f\x10\xde\xaa\xa5\x13\xca\x73\x6b\x35\x69\x17\xa8\x53\x59\xdc\x74\x03\x3c\x70\x45\xde\x29\x63\x28\x46\x38\xe0\xed\x26\x19\xe7\x09\x37\x28\x41\x0d\xb2\x90\x54\x36\x6d\xe5\x34\xee\x7a\x06\x4c\xd7\xef\xdd\xf2\xaa\x43\x79\x07\xdf\xe7\xdc\xad\xcf\xfb\xeb\x4c\xf3\x76\xe3\x97\x65\x23\xcc\x0e\xaf\x1f\x9d\x05\x77\x11\xe1\x89\x1c\x83\x3c\xb3\x66\x5a\xb9\xe4\xd3\xf6\x87\xb7\xd0\xdd\xed\xe4\x06\xaf\x8e\x2b\x92\xe7\x7b\x54\xd9\xf2\x31\xd0\x75\xc8\xd2\xbb\x80\x03\x50\x22\xd5\xa8\x2c\x31\xaa\x50\x11\x63\x2d\xf8\x30\xba\xe6\xde\x73\x39\xd9\xad\xd0\x03\x97\x93\xc3\xeb\xdc\x72\x13\x68\x9c\x50\x47\x14\xd4\x8e\xcf\x80\xd1\x98\x4d\xfa\x43\xb8\x5c\xfe\x81\xeb\x97\x7f\x29\xa9\x4e\x5c\xad\x80\xbf\x8e\x49\xd1\x54\x24\xd7\x12\x81\xff\xe6\x23\xe1\x5d\x30\xd3\x56\xe4\x2b\xed\x4d\x81\x2f\x37\x37\xc5\xbd\xd8\x7a\x0a\xf0\xdf\xdc\xf8\x72\x7f\x3c\x66\xf4\xda\x9b\xb1\x48\x93\x48\xa7\x51\x40\xdc\x17\x44\x0f\xa2\xfd\xf9\x63\x38\xbd\x5f\x7e\xf9\x0d\x6e\x22\x1e\x37\xe9\x82\xe3\x10\x40\x76\xfc\x96\x1f\x0f\x61\xa3\x06\xbb\x32\x56\xfb\x60\x32\xb8\xaa\x48\x75\x9d\x48\x17\x61\x1d\x24\xd2\x85\x4f\x35\x65\x67\x45\x79\x96\x5e\x1c\x25\x89\x88\x8a\x5d\x4e\x3f\xa7\xbb\x78\x54\x61\xd4\x67\x89\x8d\x4a\x8a\x4e\x59\xfe\xbe\x03\x27\x52\x10\x76\x42\x50\x83\x6a\x9e\x4c\x14\xb0\xb9\x9d\x11\xac\xb2\xac\xb7\x3d\x79\x9b\xed\xf2\xd5\x88\x87\x68\x09\x8d\xca\x61\x5e\x27\xce\x34\xa5\xe7\x15\x28\x91\x47\xc6\x6d\x51\x3b\x92\xcd\x92\x48\xf3\x4f\xb3\x37\xfe\xd7\x19\x6a\xce\xc6\xc7\x15\xfb\xd1\xc2\x8b\x72\x67\xc3\x0e\x0a\xad\xbe\x5c\xf6\xe7\x19\xbf\x3b\x59\x91\xe0\x37\xb6\xb7\x61\x52\x29\x71\xcb\x10\xca\x34\x0b\x7e\xd2\x77\xf0\x0b\x2e\x9a\xba\xdb\x89\x09\x71\xab\xc3\x1e\x7d\xf2\x23\xf8\x0c\xfc\xc8\xa3\xff\x8b\x9e\x01\x74\xb7\xd1\xe7\x9e\xe6\x06\x72\xdd\xc5\xd9\xd3\xcc\x2b\x96\x32\xd3\x7f\xea\x23\x79\x15\xb2\xeb\x7c\xc8\x4d\x72\xab\x20\xed\x8f\x50\x94\x90\xb3\x82\xbe\x1e\x64\x4a\x03\xe1\xd1\x8e\x67\xe5\x41\x77\x05\xd7\x22\x79\x5a\x9f\x52\x49\xa8\x11\x3b\x68\x53\x82\x67\xf5\xc1\x4b\x56\x67\x7b\x91\xa5\x7b\x51\xaa\x38\x27\x22\x3d\xd9\xd8\xa6\x9a\xc1\xe0\xce\x2e\xd0\xbe\x26\xf9\x99\xdf\xd7\x29\x47\x54\x6a\xe2\x4a\xfc\x63\xf4\xce\x93\xda\x43\xa1\x6c\x76\x07\xc2\x3d\x72\x8a\x51\xc3\x4b\x51\x8c\xb9\x38\x59\xce\x14\xd3\xc1\x5d\xfa\x58\x93\x4f\x55\x38\x7f\xa0\x28\x5c\xbb\x6f\xd4\xbb\xed\xf6\x38\x25\x15\x56\x3b\xee\x50\xda\x88\x48\x15\xf5\x1f\x4c\x92\x1f\x7f\x1c\x57\x90\x8c\x09\xe8\x4a\x5d\x71\xd1\x79\x1e\x31\x7f\x2d\xb2\x92\xf9\x1b\x75\xc6\xf1\xbb\xd1\x01\x79\x86\xd8\x13\x1f\x74\x4c\x6a\x73\x37\x4d\xd3\x61\x09\xfb\x5b\x34\xc3\xb1\x7d\x72\x22\xf8\xc3\x33\xa0\xff\xff\x0c\x2a\xd2\xd0\x47\x61\x94\xe0\xc3\xe7\x76\xd1\xb4\xef\x61\xb0\xd0\x31\x3b\x95\x03\x67\x3a\x0b\x8e\xc2\xc3\xd7\x2f\xe0\x1f\x2b\xf2\x9a\x3b\x75\xf3\x9e\x63\x50\x90\x26\x4b\xb3\x98\xfd\x41\x55\x0d\xbe\x7c\x65\x3c\x1e\x68\x03\xee\xbf\xe9\x60\xc9\x45\x80\x8f\x56\xd0\xa6\x83\x75\xc1\x1f\xe9\xd3\x8c\xfb\x0c\xd5\xd5\x72\x4c\x73\x4a\xf7\x1d\x28\xcf\xde\xf9\xaf\x38\x47\x75\xfd\x3f\x3f\x7d\x28\x6a\x07\xa7\x29\x8e\x1b\xe7\xc3\x7f\xb7\x30\xf4\xc5\x31\x4b\xf0\xb3\x68\xf7\xe5\xa7\x0f\xe0\x62\x43\x4d\xd1\xa8\xc8\x4e\x4c\x5e\x27\xc9\x2a\x1c\x73\xf3\xad\xf0\x0b\xae\xf8\xb2\x74\xf1\x73\xa1\xc2\x7f\xcb\x29\xaa\x50\x97\xa0\x5b\xe7\x92\x52\xa7\x35\x29\xbd\xd6\xe4\xa2\x49\x5f\x6e\x69\x61\xe3\x2a\x80\xe6\xe8\xfb\xf2\x17\xe8\x84\x77\x4c\x5e\x26\xcf\xaf\x39\xaa\x9b\x2c\xd6\x75\x30\xde\x66\x40\x9f\x67\xf9\x97\x79\x5e\x6d\x68\xd2\xf8\xa4\xdf\xb7\xc9\x4e\x59\x71\x70\xd2\x73\x21\x34\xde\x1d\xc3\xae\x37\xa2\xb2\xff\x2c\x31\xbf\xe3\xf7\xb4\x42\x27\x5c\xf7\xb8\x66\x6a\x80\x3f\x0c\x05\x0e\xf8\x2c\x3a\xa1\xa6\xca\xde\x82\xe4\x93\xf7\x0c\xa0\xf2\xdf\xe0\x5b\x87\xae\xee\xed\xa3\xcf\xca\x89\x7e\x06\x30\xb6\xa7\xf1\x5c\xb6\xef\x58\x5b\x71\xec\x6e\xfd\x6d\x10\xd8\x90\x5a\x07\x5b\xd7\x5f\x6d\x60\x64\xc5\xfc\x7d\xb8\x4c\x8e\xc0\x0d\xd8\x8f\xa5\x1c\xab\xed\x66\x6b\x43\x2f\xf2\x3d\x77\xe3\x47\xa1\xad\x1c\xf7\xe0\x32\x39\x22\x3b\x01\xd6\x70\x0b\xad\xc6\x3c\x08\xa9\xc2\x3c\xcf\x52\x80\xbb\x70\x99\x00\xab\x49\x06\x15\xfa\x41\x64\x43\xce\xf7\x36\x6e\xe0\x07\x1b\x3b\x29\xee\x40\x65\x32\x6c\x26\x19\x93\xef\xc1\x95\x15\x39\xcf\x0f\x5c\x7f\xbb\x09\x2d\xa5\xb8\x0b\x97\x4f\x6e\x3b\x47\xe4\xc2\x8d\xb7\x5a\x5b\x99\xed\xda\x8d\xb6\xfe\x3a\xb0\x13\xe0\x1e\x58\xce\xff\x34\xef\x04\x3d\x4b\x7d\x85\xee\xda\x0f\xd6\x9e\xa5\x14\xb7\xa3\x72\x21\xa6\xb8\x26\xe8\x6e\xb7\x30\xb2\x51\x9a\xe7\xb9\x9e\xbf\xde\x86\x36\x42\xdc\x85\xca\x85\xb0\xf2\x4b\xd0\xdd\x6e\xc2\xf5\xc6\x82\x8e\x1f\xba\x9b\x55\x10\x6c\x2d\xb9\xbf\x1d\x95\x73\x3f\xc5\x29\x51\x72\x6b\xcf\xc6\x8b\x07\xd0\x0d\x61\x04\xad\x66\xc3\x5d\xa8\x5c\x88\x29\x5e\x89\x8e\xb8\xb7\xb2\xa3\xb6\x8e\xfc\xb5\xd5\xf2\x70\x0f\x28\x13\xc1\xb7\xf2\x47\x94\x4c\x14\xda\xac\x42\xfe\xc6\xf5\xa0\x17\x5a\x4d\xe4\xbb\x50\x39\xf7\x53\xbc\x11\x25\xb7\xde\xda\x38\x0e\x3f\x70\xb7\x1b\xdf\xce\x1b\xdd\x85\xca\x85\x98\xea\x8d\xb6\x81\xcd\x88\x7b\x5b\x37\x84\xeb\xc8\xb7\x15\xe2\x66\x54\x2e\x84\xdd\x2e\xc9\x86\x42\x48\xcd\x22\xb2\x5b\x91\x6f\xc3\xe3\x1c\x4f\xdb\x16\x41\x08\x7d\x2b\x72\x74\x91\x8d\xec\x66\xef\x5d\xa8\x5c\x88\x69\xfb\x22\x4a\xce\xb7\x20\xb7\xa6\x3b\x61\xb8\xb6\x97\xe1\x36\x50\x7e\x4c\xb0\xdd\x11\x41\x68\xe5\xe9\x22\xd7\x0f\xd6\x81\x3d\xef\x37\x82\x72\xde\x27\xee\x86\xa0\xd5\x4e\x3e\x70\xfd\x75\xb0\xb1\x5a\x88\xef\xc0\xe4\x02\x4c\x3b\xa4\x41\x08\xa1\x8d\xab\xf3\xdc\x4d\xb8\xd9\xda\xee\x49\x6f\x06\xe5\x22\x58\x9e\xcf\x28\x19\x1b\x33\x85\x74\xc3\xb2\xb2\xda\xc4\xdd\x03\xca\x79\x9f\xe4\x83\xac\xe8\xf8\x3e\x5c\xdb\x99\xce\x4d\x70\x9c\xed\x49\x5e\xc7\x82\x8e\x03\x5d\x6f\xb5\xda\xd8\x4d\xda\xdb\xf0\x18\xe3\xe1\x7c\x61\x20\xe8\x06\x6b\x7f\x63\x67\x26\xb7\xe1\x71\x8e\x27\x79\x18\x3b\x42\x61\x14\xd9\x1d\x52\x6e\xc4\xe3\x8c\x4f\xf2\x2c\x96\x84\x56\x5e\xe7\xad\xe7\x60\xdc\xc0\xe3\x8c\xcf\xb6\x93\xa1\x14\x7c\x6f\x56\x4d\xeb\x70\x9c\xdf\xb9\x7d\x08\x35\xc5\x68\xbb\xb2\xf3\xde\xb7\xe1\x71\xc6\x1f\xe0\x45\xfc\xad\x67\x77\xf8\xbb\x11\x8f\x07\x04\xe7\xf4\x22\xbe\x1f\xce\xea\xf7\x4c\x3c\xce\xf1\x03\xbc\x88\xb7\x5a\xf9\x73\xda\xb6\x89\xc7\x19\x7f\x80\x17\xf1\xbc\x75\x30\x2b\xe3\x06\x1e\x67\x7c\x4e\x2f\x02\xd7\x9b\x68\x4e\x8e\x4d\x3c\xce\xf1\x03\xfc\x08\x0c\xb7\x70\xb6\xcd\xc8\x00\x1e\x67\xfc\x01\x7e\x04\xfa\x6b\xcb\x90\xea\x6d\x78\x3c\x2e\x3f\xa7\x1f\x81\x9e\xbf\xb5\x3b\x74\xde\x86\xc7\x39\x7e\x80\x1f\x81\x30\x08\xbc\x39\x19\x37\xf0\x38\xe3\x73\xfb\x11\x4a\xc7\x9f\x4d\xdf\x3d\x34\xce\xf4\x6c\x3e\x84\xe2\x47\xd1\x8c\xc7\x02\x13\x8e\xf3\x3b\xff\x69\x06\xc2\xd5\x7c\x7b\xec\x3e\x1c\x67\x7b\x6e\xff\xc1\xe8\x6c\xad\x02\x6f\xb7\xc1\x31\xb6\xd7\xb3\x79\x0f\x46\x20\x98\x97\xdf\xa0\xcf\xef\xdc\xbe\x83\x59\xa1\xdd\x7d\xc5\x6d\x70\x9c\xed\x47\x78\x8e\x30\x98\xed\x18\xd3\x87\xe3\x6c\xcf\xea\x3b\x02\xcb\x78\xda\x4d\x70\x9c\xdf\x47\xf8\x0e\x3f\x9c\xd5\x3a\x74\x38\xce\xf6\x23\x7c\x87\xb7\x9e\xd5\x3a\x74\x38\x7e\x9b\x3e\xab\xef\xf0\xbc\xd9\x82\xf5\x7d\x38\xce\xef\x23\x7c\x07\x5c\xcf\xba\xb2\xe8\x70\x9c\xed\x47\xf8\x0e\x18\xce\xea\xa9\x75\x38\xce\xf6\xac\xbe\x03\x7a\xb3\x4e\x42\x1d\x8e\xf3\xfb\x08\xdf\x01\x2d\x13\xa5\x6e\x82\xe3\x6c\x3f\xe2\xdc\x42\x07\x74\x2e\xbe\x07\xf0\x18\xe3\xdb\x59\xcf\x2d\x10\xc2\xd9\xdc\xc7\x00\x1e\xe7\xf8\x21\xe7\x16\x38\xef\xb1\x05\xf6\x4e\x2d\xdb\x07\x44\x3f\xfe\x0c\xb6\x67\x8d\x7d\x40\x38\x6f\x08\xc1\xc0\xe3\x1c\x3f\x22\xf6\xf1\xa7\x18\xf6\x83\x7c\xc8\x9c\x11\x49\x13\x4f\xe4\xc1\xcd\xb7\x05\x99\x8b\x57\xa8\x31\x09\xfe\x78\xfa\x79\x49\x2a\xbe\x42\x6a\x49\x2a\x9e\x8e\xbb\x24\x15\x8f\x93\x5b\x92\x8a\x27\xe2\x2e\x49\xc5\x17\xf4\xb5\x24\x15\x4f\x40\x5d\x92\x8a\xc7\xc8\x2d\x49\xc5\xf6\xa0\x4b\x52\xf1\x28\xb9\x25\xa9\x78\x02\xea\x92\x54\x6c\xb8\xeb\x25\xa9\xd8\x12\x74\x49\x2a\x1e\xf6\xd5\x4b\x52\xb1\x1d\xe8\x92\x54\xdc\xa7\xb3\x24\x15\x2f\x49\xc5\x57\x08\x2d\x49\xc5\x23\x78\x4b\x52\x31\x58\x92\x8a\x2f\xe2\x2d\x49\xc5\xaa\x83\x5d\x92\x8a\x97\xa4\xe2\xcb\x84\x96\xa4\xe2\x25\xa9\xf8\x1a\xa1\x25\xa9\x78\x49\x2a\x1e\xa7\xb3\x24\x15\x2f\x49\xc5\x17\xac\x70\x49\x2a\x5e\x92\x8a\xc7\x5d\xea\x92\x54\xbc\x24\x15\x8f\xd2\x59\x92\x8a\x97\xa4\xe2\x0b\x74\x96\xa4\xe2\x25\xa9\xf8\x0a\xa1\x79\x8f\x2d\x4b\x52\xf1\xd8\x78\x2e\x49\xc5\x4b\x52\xf1\x38\x09\x38\x17\xaf\x50\x63\x12\xfc\x31\xf8\x6d\xcd\x17\xbe\xad\xda\xf8\x26\xe6\x8b\x5f\xd3\x7c\xed\xfb\x99\xa1\xeb\x47\xa3\x5f\xd1\xcc\x3f\xbc\xf6\x9d\xca\x57\xf3\x9e\xd9\xcb\x1c\x35\x38\x48\x3e\x39\x01\x2c\xdf\xb8\xfc\x9f\xf5\x0f\xe8\x48\x89\x0f\x6c\x86\x4e\xed\x0b\xbb\x7e\x23\x29\xda\x0f\xe0\xd1\x34\x81\x3f\x4f\xca\x4b\x94\x75\x55\x1c\x9b\x53\xfe\x0c\xf6\x24\xe1\xf5\xc1\xb5\x4a\x5b\xec\x6b\xc2\x5f\x2b\x54\xca\x22\x9d\xa7\xac\x70\xcc\x5a\x5c\xf2\x3d\x3a\x37\x04\xfc\x5d\x76\x2a\x49\xd5\x20\x5e\x30\xf9\xeb\x17\xf0\xef\xc7\x8c\x57\x49\x02\xa8\x48\x40\x73\xc4\xa0\xc0\x6f\x8d\x78\x52\xb1\xef\x94\x07\x05\x8e\x71\x5d\xa3\xea\x1d\x9c\x8b\x1c\xd7\x35\x78\x27\x67\x50\x60\x9c\x80\x7f\xfa\x75\x05\xea\x73\x49\x21\xc1\x97\xaf\x26\x7b\xea\xb7\xc3\x73\xf2\xce\x4a\x7c\xb9\xfc\xd7\x2f\x8c\x16\xaf\x43\x29\x5a\x81\xac\x16\x0c\x1c\x10\xab\x67\xf5\x82\xf2\x33\x06\x24\x65\x4f\x53\x42\x1a\x5c\xfd\x58\x0b\x12\xe0\xcb\x57\x51\xa6\x84\x3e\x7e\x06\x6e\x79\xae\x8f\x9a\x86\x14\x52\xfc\xc3\xd3\xb9\x6e\xc0\x1e\x33\xb4\x1a\x9d\xb0\x44\x42\xac\x8e\x0c\x85\x11\xa0\x3f\x9f\x70\x92\x21\xf0\x49\xa9\xf4\xe1\x79\x3e\x2c\xdf\x3e\x33\x02\x6e\x4c\x8a\x06\x65\x05\x36\xcb\x93\x7a\x90\x7f\x4d\x3c\x35\xe0\x01\x08\x1f\x5e\x87\xf0\x2f\x43\x84\xc1\xe6\x2a\x44\xd8\x41\x20\xb0\x3f\x37\x0d\x29\x76\x4a\x91\xb5\x81\x72\x11\xfb\x73\x9a\xe2\xca\xe9\x2a\x28\xb6\x85\x36\xe5\xd7\xde\x0f\xf0\xb2\xdd\x7a\x2d\x2b\xa2\x54\x40\x8e\x53\x59\xa6\x45\x79\xb2\x03\x5e\xf9\x26\xab\xd8\xf0\x3a\xb5\xdf\x64\xad\x33\xb5\xa3\x5b\xa2\x24\xc1\x89\xc3\x9f\x09\x1c\xb3\xb0\x6e\xd0\xca\x26\x9b\xb3\x02\x1e\xce\x29\x4b\x12\x59\x2d\x44\xaf\xec\xa8\x7c\x75\x3f\x71\x84\xa1\xfd\xb5\x5f\x8a\xe4\x05\x57\x4d\x16\xa3\xdc\x89\x71\x21\xbf\x96\x5f\x2d\x8a\x2a\x07\xe6\xe9\xc9\xad\x9b\x2c\xfe\xfe\x2e\x4a\xf1\xb1\x86\x5a\x19\xe7\xae\x8c\x06\x6f\xa8\x3f\x93\x0e\xa2\xfb\xac\xab\x33\xc2\x11\x39\x91\x8a\xbc\xba\xac\x4c\x8b\xa8\xea\x3a\x5e\x9e\x9c\x0f\x21\x53\x9a\x6c\xab\x2a\x5f\x29\x0e\xac\x14\x12\x72\xf7\x07\xa7\xcc\x8a\xef\x63\xd8\x6a\x59\xb4\xfd\xc1\xc9\x99\x92\x2f\x75\xd0\x98\x39\x38\xa4\x42\xc5\x01\x8f\x35\xee\xaa\xfa\xb3\xc6\x87\x0a\xe3\xd1\xea\x47\x5d\x89\x26\xd6\x36\x41\xd5\xf7\xcb\x1d\xba\x7a\xfb\xac\xc3\x05\x05\x76\x85\x99\x04\x1b\xe8\x7d\xac\x69\x57\x1f\x53\xd1\xc7\xa5\x0e\xaa\xae\x11\x2b\x70\xd0\xd6\x33\x56\x9d\xb4\xac\x7c\xae\x95\x1c\xf5\x8c\x87\x6d\xf1\xf0\xd6\x04\xf1\x69\x4f\x07\x38\xab\x1b\xe7\x25\xc3\xbc\x24\x84\x51\x1a\x53\xb3\xba\x0a\xe7\xcc\xa5\x7e\xeb\x57\x24\x0f\x86\x40\x59\x35\xe8\x16\xf9\x62\x61\x98\x6e\x21\xe2\xe6\x8b\x64\xd5\x9e\x3e\x3f\x52\xe8\x0d\x84\x83\xc5\xd1\x15\x56\xf2\xac\x6c\xab\xd5\x32\xb4\x7e\xa1\xd3\xa1\xfa\x3c\x23\xc5\x71\xc7\x8a\xdf\x32\x5a\x09\x71\x72\x72\x20\x9c\xe7\xae\x0c\xd2\xea\x9b\xe1\x01\x1c\xa5\x9c\xfd\x89\x1c\x2a\x54\x1e\xdf\x81\xdb\x0d\x3d\x03\xe0\xf5\xe6\xb5\xd1\x57\x5b\xa3\xb7\xac\x56\xda\xc9\x32\x51\x75\x53\x91\xef\x58\x2b\x76\xca\x1f\x39\x09\xaa\x8f\xa8\xaa\xa8\xe0\x21\x08\x07\xc8\x77\xce\x72\x04\x52\x14\x00\xd7\xbb\xb1\x52\x45\xac\x97\xd6\xae\x13\x40\x9d\x75\x6a\x47\xba\x74\x88\xfd\x82\xd6\x5b\x9d\x4a\xc3\xed\x95\x0a\xd9\x26\x4d\x21\xab\x52\x4e\xbf\x87\x43\xbd\xe5\x00\x59\x75\x5a\xf6\x9a\xd3\x51\xe7\x9a\x31\x8a\x8e\x4b\x8b\x40\x45\x7c\xa4\x93\xb5\x6e\x50\xc5\xca\xe1\x3d\x7d\xfd\xf2\x11\xd4\xe4\x5c\xc5\xf8\x5f\x50\x59\x66\xc5\xe1\x3f\xfe\xf5\x9f\x7f\xda\xa3\x1a\xbb\x71\x5d\xbb\x27\x54\xd2\x5d\xce\xff\x06\x00\x00\xff\xff\x01\x60\x72\xf5\x1c\x9e\x00\x00") +var _web_uiV1StaticBaseCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5d\xeb\x8f\xe3\xb6\x76\xff\x3e\x7f\x05\x3b\x8b\x20\xbb\x7b\x47\x1a\xea\x6d\x7b\xb3\x41\x6e\x82\x6c\x51\x20\xf7\x4b\x7b\xef\x97\x16\x2d\x40\x4b\xb4\x2d\xac\x2c\x0a\x92\x3c\x8f\x04\xfb\xbf\x17\x7c\x49\x24\x25\xd9\xb4\x47\x0e\x8a\x5e\xcf\x2c\xbc\x36\x45\xfe\xce\x83\x87\x87\xe4\x21\xc7\x67\x4d\xb2\x57\xf0\xc7\x1d\x00\xce\x33\x5e\x7f\xcd\x5b\x67\x43\xca\xd6\x69\xf6\x84\xb4\xbb\xbc\xdc\xae\x00\x2a\xdb\x1c\x15\x39\x6a\x70\xf6\xe9\x0e\x00\xfe\x38\xff\x1d\xaf\x80\x17\x57\x2f\xb4\x28\x25\x05\xa9\x57\xe0\x5d\x14\x45\x9f\xc0\xb7\xbb\x3b\xc4\xf0\x64\x29\x4e\x92\x74\x1d\x76\x4d\x9f\x71\xbe\xdd\xb5\x2b\x10\x43\xf8\x49\xa1\xda\xd6\xa8\x6c\xf2\x36\x27\xe5\x8a\xb7\x04\xd0\xf5\x1b\x80\x51\x83\x9d\xbc\x74\xc8\xa1\x65\xb5\xf7\xe4\x77\xeb\xaa\x8d\x6d\x4d\x62\x59\xd1\xa2\x16\xf8\x76\x07\x00\x5a\xed\xc8\x13\xae\x99\x16\x00\x68\xf1\x4b\xeb\x64\x38\x25\x35\xe2\x4d\x4b\x52\xe2\x4f\xec\x91\x54\x51\xb6\x89\xbc\x65\x2a\x1a\xbb\xcd\x61\xdd\x16\x58\xb4\x16\x55\xf2\x72\x87\xeb\x5c\xe0\xf7\x95\x34\x42\x03\x95\xd3\xbe\x48\x49\x86\xb5\xee\xc8\x62\x3f\x59\x04\x94\xfe\x1a\xa5\x5f\xb7\x35\x39\x94\x99\x23\x1f\xfe\x1a\xd3\x5f\xd6\xd0\xdd\xe1\xa2\x72\xd6\x05\x49\xbf\xb2\xf6\x6a\xbf\x87\x7a\xbf\x2f\x03\xfa\xcb\x5a\x35\x7b\x54\x14\x1a\xbd\x24\x49\xd8\x93\x9d\xf7\x00\x76\xfe\x03\xd8\x05\x0f\x60\x17\x3e\x80\x5d\xa4\x55\x93\xb6\x23\x8a\x99\xd2\x98\xbe\x37\xa4\xde\xaf\xc0\xa1\xaa\x70\x9d\xa2\x06\x0f\xec\x28\xe1\x76\x34\xc2\xcb\x2e\x74\xd7\x35\x46\x59\x5a\x1f\xf6\xeb\x86\xc1\x56\x28\xcb\xf2\x72\xeb\xac\x49\xdb\x92\xfd\x0a\x44\x5c\x90\x69\x6a\x4c\xdf\x06\x10\xd2\xbb\x46\x25\x59\xd5\x5c\xd9\x23\xaa\xa5\x7a\xe8\xf9\x7c\xde\xe5\xed\xa4\x2c\xaa\xaa\xfd\xea\x85\x77\xc7\x9a\x14\x59\xdf\x11\x6a\x0b\xf6\xb8\xa0\x9f\x47\x15\xef\x56\xa8\xc4\xbc\x4f\xd6\xa4\xce\x70\xed\x3c\xe7\x59\xbb\x5b\x01\x9f\x0b\x2f\x0a\x0d\x13\x98\x18\x9a\xa6\x60\x00\xba\xc1\xe9\x51\x6a\xd9\xaa\xb9\xa0\x11\x39\xbf\xcd\x79\x0d\x98\x05\x08\x1d\xf2\xff\x9c\x1d\x46\xd4\x8a\x84\x19\x08\x9b\x5a\x01\x0f\x56\x2f\x20\xe1\x4a\x1d\x33\x01\x46\xb7\x42\x35\x2e\x5b\x51\x65\xac\x3b\xa6\x3a\x44\xe5\x63\x17\x0a\x4e\xda\xbc\xf7\x14\x1d\x1f\x61\xf5\xc2\x79\xa1\x6f\x3a\x54\xc5\xa8\x7c\x28\x0b\x0d\x13\xd6\xca\xe8\x88\x54\xf9\xa9\x51\x96\x1f\x9a\x15\x08\x64\x63\x52\xa1\x34\x6f\x5f\x57\x00\xba\x0b\xe9\x98\xc6\x19\xec\xbd\x82\xc1\x89\xf4\x24\x9d\x9f\x9c\x1a\xf2\x5d\x3b\x63\xa8\xd0\x9f\x3d\xaa\xb7\x79\xe9\x14\x78\xd3\x76\x23\x5a\x51\x88\xd3\x92\x8a\x6b\xf7\x28\x8f\x6e\x49\x1c\x4a\xad\x63\xd3\xe4\x87\xb9\xed\xe3\x10\xfc\x43\x49\xda\x1e\x45\x30\xc7\x78\x50\x78\xdb\x14\x04\xb5\x2b\x50\x53\x61\x46\xe5\x8b\x7b\xf9\xc6\x3a\x69\xa8\x45\xcd\x3e\x82\x53\xf6\x21\xcd\x03\x5e\xc5\x3c\x0c\x2d\x05\xe7\x1b\xc3\xa0\x4f\x8f\x42\xfe\x9f\x51\xbc\x60\xa4\x5b\x53\x29\x5a\x17\xce\x41\xfe\x6f\x08\xa4\x36\xac\x4e\x29\xc7\x98\x33\x27\x60\xc4\x4c\x6a\xe2\x0c\x07\x82\xd6\x28\x74\xd3\x1d\x16\x53\xbe\xd9\x34\x3e\xd6\x54\xbc\xa5\x63\xa5\x6b\x6c\x4e\xb7\x5e\x34\xa1\x2f\x24\xd7\x30\xc2\x17\x7a\x10\x7e\xc7\xa5\xdd\x89\x6e\xe9\x8d\xd2\x72\x5a\xf2\x1a\x50\xe4\x25\x46\xb5\x68\x65\x31\x27\x0d\x9a\x9c\x9c\x90\xcc\x16\x27\x67\x23\xa3\x81\x75\x6d\x45\x69\x42\x67\x45\x5e\xca\x5e\x12\x23\x90\x6b\x59\x9d\x4e\xc6\x5a\x35\x2d\x38\xc8\xe1\xc7\xc7\xc8\x0a\x40\xbd\x5b\x8d\xba\x45\x6e\x0c\x2a\xda\x40\x14\x70\xd2\x1d\xc2\xa0\x5b\x9d\x1d\xa9\xf3\xdf\x49\xd9\xa2\x42\xef\xe1\xbe\x3f\xc5\x88\xa4\x43\x5d\xef\xf2\xa8\xab\x22\xc6\x72\xcd\xcb\xbd\xae\x3c\xcb\x9b\xaa\x40\xaf\x2b\xc0\x96\xa9\x23\xe2\x36\x3b\x52\xb7\xc7\xb4\x04\x27\xb4\x54\x7e\xd5\x96\xd6\xe9\xa1\x6e\xe8\x90\xab\x48\x5e\xb6\xb8\x9e\x9a\xe1\xdf\x6d\x10\xfd\xd5\x10\x51\xda\xe6\x4f\xd2\x2d\x8d\xda\xae\x32\xdd\xdb\xd8\xed\x89\xea\xcd\x39\xb5\xc9\x19\x95\xed\x6b\x1a\x0b\x98\x7e\x37\xa2\x98\x98\x50\xcb\x8f\xe3\x6b\xaa\xb3\x30\x06\x4e\xe4\x52\x1f\x71\x91\x97\xb8\xc4\x4f\x5c\xe0\x29\xce\xf0\x15\x52\x83\x43\xf3\x54\xf6\x85\x6e\x4b\x2a\x67\x5d\xa3\x92\x6f\x2a\xd4\xd9\x52\x0e\xcd\x1e\x40\x5b\xbb\x82\x43\x5d\xbc\xbf\x4f\x49\xd9\x1c\x0a\xa7\x20\x5b\xe2\x56\xe5\xf6\xfe\x03\x80\xa0\x24\x4e\x8d\x2b\x8c\x5a\x63\x77\xc9\xa7\x8f\x80\xce\x7c\x81\xc0\x16\xc3\x4f\x7e\x94\x43\x3e\x80\x72\xbb\xd3\x92\x4a\x76\x68\x37\x85\xca\xda\xda\xc2\xce\x33\x0a\xbb\xb9\x46\x94\x0b\xc9\x64\xb1\x14\x6e\x9f\x97\x8e\xa4\xba\x8c\xb4\x9d\x50\x87\x50\xbd\x80\x77\x18\x63\xd0\x90\x22\xcf\xc4\xa0\x16\x7c\xb9\xeb\xb6\xd4\x9c\xa8\xae\x3a\x8e\xdf\x4f\x66\x9d\x97\x51\x9a\x3b\x59\x4d\xaa\x8c\x3c\x97\xba\x63\x44\x87\x96\xe8\x95\x0f\x85\x2b\xab\x3a\x7b\x5c\x1e\xa8\x43\x46\x6a\x70\x61\x7a\xd1\x3c\xbe\xb2\x31\x97\x03\xda\xba\x4e\xec\x53\xcf\x19\x43\xc6\xfe\xca\x7a\x18\x8d\xb4\xb3\x19\x49\xc3\x66\x36\x83\x69\xd0\xea\xbc\x26\xd2\xf3\x1c\xeb\x93\x89\x68\x4c\x84\xe9\xef\x91\x61\xb9\x09\xe8\xaf\xd8\xe6\x0b\xbb\xb2\x0f\x80\xc4\xe3\x41\x83\xa9\xed\xbe\xd1\xcf\x96\xbd\x6c\x11\x8a\xb3\x6c\x75\xb2\x87\x4f\x06\xe8\xac\xda\x9c\x4f\xe4\xf4\xd4\x6c\xa3\x84\xd3\x2d\x8e\x4e\xd0\xa7\x85\x3f\x55\xff\x3c\xf0\xff\x5f\xd1\xd7\x3b\x00\xc8\xa1\xa5\xd3\x60\x1f\x65\x15\x05\x8e\x19\x78\x63\x6f\x9c\xa6\x42\x29\xab\xfc\x5c\xa3\x8a\x55\x7f\xc2\xf5\xa6\x20\xcf\x2b\xb0\xcb\xb3\x0c\x97\x5d\x78\xb0\x7f\x80\x8b\x22\xaf\x9a\xbc\x19\x28\x90\x8f\x54\xf6\xb6\x40\x2d\xfe\xcf\xf7\xf0\x83\xf0\xe4\xeb\xb6\xd4\xd7\x93\x23\xae\xe1\xa8\x63\x10\x18\x1b\x92\x1e\x1a\x81\x31\x90\x74\x5a\xd6\xd1\xca\x6b\xf2\xe2\x34\x3b\x94\x51\x91\xfa\xd8\x06\x25\xa3\xaf\x59\xe7\x02\xa5\x53\x5e\x55\xe7\x7b\x54\xbf\x1a\x5a\xe8\x43\xd2\x67\x84\xcd\x98\x43\xe3\x53\xf3\x60\x79\x68\x90\x33\xfc\xf2\x98\xa2\x97\x9b\x60\x93\x98\xfb\x6b\x35\x2c\xdf\x61\x3e\xa3\xba\xec\x17\xaa\xb2\xea\x97\x2f\x7f\xfd\x25\xfa\xf5\x2d\x22\x08\x04\x53\x04\x41\xce\x42\x84\xcd\x66\xb1\xf1\x4d\x11\x36\x9b\xa5\xef\xaf\x0d\x11\x9a\x43\x9a\xe2\xa6\x31\x44\x58\xc4\x3f\x87\x51\xf2\x16\x11\x04\x82\x29\x82\x20\x67\x21\xc2\x62\x93\x0d\x45\x88\xd3\x65\x14\x06\x86\x08\x19\x2a\xb7\x83\xd1\x94\x65\x21\x8e\x16\x6f\x91\x40\x20\x98\x12\x70\x6a\x16\x02\xa4\x1b\x6f\xe3\x0d\xcc\x08\xfa\x8b\x20\x9c\x1a\x5e\x57\x1d\x04\x9c\xd2\x1c\xf6\xaf\x01\x32\xa5\x94\x44\x93\x63\x70\x54\x35\x49\xcd\xac\x30\x94\x24\x4d\xcd\x51\xb7\xcf\x4b\x19\x85\x50\x17\x3a\xdd\x72\xbb\xdb\x23\x2c\xba\xa5\xb6\x6c\xca\xc2\x18\x36\x4d\x83\xea\x05\x44\x74\x8f\xc2\xff\x1f\x0b\x3d\x44\x46\x8c\xde\x08\x7a\xde\xa9\xeb\x7b\x37\x4f\x09\x5f\xcb\x29\x7b\x81\xc8\xdc\xf0\x04\xda\xee\x65\x05\xe2\xea\xa5\x0b\xa6\x0c\xc0\x9a\x27\xe9\x77\x86\x61\xb1\x4d\x5e\x14\x2b\x90\x1e\x6a\x6a\x23\xbf\x50\x4d\xcb\x83\xa1\xa6\x75\x68\x07\x54\x4e\xde\xe2\xbd\xbe\xa3\x82\x93\xcb\xc4\xc9\x98\xd2\xdd\x40\x78\x7f\x74\xa3\xe5\x45\x5a\x31\xdf\xab\x89\xb2\xdb\xc9\x52\x7f\xb2\x64\xf6\x8f\x59\x20\x23\x23\x0f\x53\x55\xf3\x92\x4e\xc2\x46\x44\x8f\x9d\xff\x50\x75\xf7\xef\x3e\x0d\xe3\xd1\x91\x88\x47\xf7\x61\x59\x0b\x12\x72\xa3\xcd\x63\xf3\x83\xb3\x82\x6e\xff\xa8\x0e\xb6\xe0\x04\x81\xa1\xb8\x63\x41\x3b\xdd\xdb\x61\x3c\x3c\x90\x90\xae\xca\x9a\x8a\x2b\xde\x38\x3b\x5c\x54\x8a\x8f\xbc\xd6\x31\xc1\x38\x63\xb6\xf1\xef\x51\x0c\xfe\x79\x9e\x90\xe5\x28\x74\x4a\xca\x0c\x97\x0d\xce\xfe\x3c\x22\x43\x63\x37\x6a\xe9\xe6\x31\x3c\xbb\x1e\xb8\xa3\xd0\x70\xe8\xcc\x1f\x75\x85\x52\xcb\xa1\x7e\x1e\x66\x9c\xb2\x8f\x99\xd6\x18\xf7\x6e\x46\x0e\xeb\x02\xd3\xf7\xf8\xa4\x24\x6a\xe5\xce\xfc\xba\x10\x78\xa8\x1c\xb9\x58\x50\x06\x6e\x89\xf6\xa7\x69\xf2\x6a\xa3\x67\x3c\x53\xe7\xa7\xca\xd9\xcf\x39\xac\x80\xa6\x42\xa5\x2d\x3f\xb4\x6e\xc7\xd4\xe4\x0e\x8d\xff\x8c\xed\xd3\xf8\xcf\x91\xdd\x1a\xff\xd9\xa3\x17\x39\xa1\x05\xd1\x77\x7d\xf9\xe0\x20\x02\xa8\x47\x0c\xdc\x07\xf2\x0b\x31\xfd\x63\xa9\x23\xb1\x3e\x08\x2f\xd5\xd2\x1e\x15\x85\xb5\x9a\xb4\x03\xd4\x73\x59\x5c\xf4\x1d\x3c\x72\x44\xde\x2b\x63\x2c\x46\x38\xe2\xed\xce\x32\xce\x3d\x6e\x51\x86\x5a\x64\x21\xa9\xac\xda\xc9\x69\x9c\xf5\x8c\x98\xae\x3f\x38\xe5\x55\xbb\xf2\x0d\x7c\x1f\x0a\xb7\x39\xac\x4f\x33\xcd\xeb\x4d\x1f\x96\x4d\x30\x3b\x3e\x7f\xf4\x16\xdc\x47\x84\xcf\xe4\x18\x14\xb9\x35\xd3\xca\x21\x9f\xb6\x3e\xbc\x84\xee\x6a\x25\x17\x78\x4d\x5a\x93\xa2\x58\xa3\xda\x96\x8f\x91\xa6\x63\x96\xde\x07\x1c\x80\x12\xa9\x46\x55\x85\x51\x8d\xca\x14\x6b\xc1\x87\xc9\x39\xf7\x2d\x87\x93\xfd\x0c\x3d\x72\x38\x39\x3e\xcf\xdd\x4e\x02\x8d\x1d\xea\x84\x82\xba\xfe\x19\x31\x1a\xb3\xca\xb0\x0b\x6f\x87\x7f\xe0\xf4\xe1\xdf\x86\xd4\x7b\xae\x56\xc0\xdf\xa7\xa4\x6c\x6b\x52\x68\x17\x81\xff\xe9\x23\xe1\x7d\x30\xd3\x56\xe4\x13\xf5\x4d\x81\x8f\x57\x37\xc5\x3d\x5a\xfb\x1c\xe0\x7f\xba\xfe\xe5\xfe\x78\xca\xe8\xb5\x0f\x53\x91\x26\x71\x9d\x46\x01\x71\x9f\x10\xdd\x88\x0e\xc7\x8f\xe1\xf4\x7e\xfe\xf9\x0b\x5c\x44\x3c\x6e\xd2\x07\xc7\x21\x80\x6c\xfb\x2d\x1f\x8f\x61\xa3\x16\xbb\x32\x56\x7b\x65\x32\xb8\xae\x49\x7d\x9a\x48\x1f\x61\x1d\x25\xd2\x87\x4f\x35\x65\xe7\x65\x75\x90\x5e\x1c\x65\x99\x88\x8a\x1d\xbf\x7e\x4e\x57\xf1\xa8\xc6\x68\xc8\x12\xeb\x95\x0d\xda\xe7\xc5\xeb\x0a\xec\x49\x49\xd8\x0e\x41\x0d\xaa\x79\xf2\xa2\x80\xcd\xe9\x8c\x60\x95\xdd\x7a\x5b\x93\x97\xd9\x0e\x5f\x8d\x78\x88\x76\xa1\x51\xd9\xcc\xeb\xc4\x99\xa6\xf4\x7b\x05\x4a\xe4\x91\x71\x5b\x36\x8e\x64\xb3\x22\xd2\xfc\x37\xf9\x0b\xff\xeb\x0c\xf5\xce\xc6\xbb\x98\xfd\x68\xe1\x45\xb9\xb2\x61\x1b\x85\x4e\x5f\x2e\xfb\xf3\x8c\xdf\x9d\xbc\xcc\xf0\x0b\x5b\xdb\x30\xa9\x94\xb8\x65\x08\xe5\x35\x0b\xbe\xd3\x77\xf0\x13\x2e\xdb\xa6\x5f\x89\x09\x71\xeb\xed\x1a\xbd\xf7\x23\xf8\x00\xfc\xc8\xa3\x2f\xd1\x03\x80\xee\x32\xfa\x30\xd0\xdc\xc8\x5d\x77\xb1\xf7\x34\xef\x15\x4b\x99\xe9\x7f\xcd\x8e\x3c\x0b\xd9\x75\x3e\xe4\x22\xb9\x53\x90\xf6\x47\x28\x4a\xc8\x59\x41\x4f\x46\x99\xd2\x40\x78\xb4\xe3\x41\x29\xe8\x8f\xe0\x3a\x24\x4f\x6b\x53\x29\x17\x6a\xc4\x0a\xda\x94\xe0\x41\x2d\x78\xca\x9b\x7c\x2d\x6e\xe9\x1e\x95\x2a\x2d\x88\xb8\x9e\x6c\x2c\x53\xcd\x60\x70\x6f\x17\x68\xdd\x90\xe2\xc0\xcf\xeb\x94\x2d\x2a\x35\x71\x25\xfe\x31\x79\xe6\x49\xed\xa1\x54\x16\xbb\x23\xe1\x1e\x39\xc4\xa8\xe1\x6d\x50\x8a\xb9\x38\x79\xc1\x14\xd3\xc3\x1d\x7b\xac\xc9\xa7\x2a\x9c\x17\x28\x0a\xd7\xce\x1b\xf5\x66\xab\x35\xde\x90\x1a\xab\x0d\x57\x68\xd3\x8a\x48\x15\xf5\x1f\x4c\x92\xef\xbf\x9f\x56\x90\x8c\x09\xe8\x4a\x8d\xb9\xe8\xfc\x1e\x31\x7f\x2f\x6e\x25\xf3\x0f\xea\x88\xe3\x67\xa3\x23\xf2\x8c\xb1\x27\x1e\xf4\x4c\x6a\x63\x77\xb3\xd9\x8c\x4b\x38\x5c\xa2\x19\x8e\xed\xbd\x13\xc1\xef\x1e\x00\x7d\xfd\x00\x6a\xd2\xd2\xa2\x30\xca\xf0\xf6\x43\x37\x69\xda\xb7\x30\x58\xe8\x99\x3d\x97\x03\xe7\x7c\x16\x1c\x85\x87\xc7\x8f\xe0\x5f\x6b\xf2\x5c\x38\x4d\xfb\x5a\x60\x50\x92\x36\xdf\xe4\x29\xfb\x83\xaa\x06\x7c\x7c\x64\x3c\x6e\x69\x05\xee\xbf\x69\x67\xc9\x49\x80\xf7\x56\xd0\x5d\x07\xeb\x83\x3f\xd2\xa7\x19\xe7\x19\xaa\xab\xe5\x98\xe6\x90\x1e\x3a\x50\x7e\x7b\xe7\xbf\xd2\x02\x35\xcd\xff\x7c\xbe\x2f\x1b\x07\x6f\x36\x38\x6d\x9d\xfb\xff\xee\x60\xe8\x9b\x5d\x9e\xe1\x07\x51\xef\xe3\xe7\x7b\x70\xb4\xa2\xa6\x68\x54\xe6\x7b\x26\xaf\x93\xe5\x35\x4e\xb9\xf9\xd6\xf8\x09\xd7\x7c\x5a\x3a\xfa\x5c\xa8\xf0\x3f\x0a\x8a\x2a\xd4\x25\xe8\x36\x85\xa4\xd4\x6b\x4d\x4a\xaf\x55\x39\x6a\xd2\xc7\x6b\x5a\xd8\xb8\x0a\xa0\x39\xfa\xa1\xfc\x25\xda\xe3\x15\x93\x97\xc9\xf3\x6b\x81\x9a\x36\x4f\x75\x1d\x4c\xd7\x19\xd1\xe7\x41\xfe\x65\x9e\xd7\x18\x9a\x34\x9e\x0c\xdb\xb6\xf9\x3e\x2f\xb7\xce\xe6\x50\x0a\x8d\xf7\xdb\xb0\xd3\x95\xa8\xec\x3f\x49\xcc\xaf\xf8\x75\x53\xa3\x3d\x6e\x06\x5c\x33\x35\xc0\xef\xc6\x02\x07\x7c\x14\xed\x51\x5b\xe7\x2f\x41\xf6\xde\x7b\x00\x50\xf9\x37\xfa\xd1\xa1\xb3\x7b\x57\xf4\x41\xd9\xd1\xcf\x00\xc6\xd6\x34\x9e\xcb\xd6\x1d\x89\x15\xc7\xee\xd2\x5f\x06\x81\x0d\xa9\x24\x58\xba\x7e\xbc\x80\x91\x15\xf3\x6f\xc3\x65\x72\x04\x6e\xc0\x7e\x2c\xe5\x88\x97\x8b\xa5\x0d\xbd\xc8\xf7\xdc\x85\x1f\x85\xb6\x72\xbc\x05\x97\xc9\x11\xd9\x09\x90\xc0\x25\xb4\xea\xf3\x20\xa4\x0a\xf3\x3c\x4b\x01\xde\x84\xcb\x04\x88\xcf\x32\xa8\xd0\x0f\x22\x1b\x72\xbe\xb7\x70\x03\x3f\x58\xd8\x49\xf1\x06\x54\x26\xc3\xe2\x2c\x63\xf2\x3d\x18\x5b\x91\xf3\xfc\xc0\xf5\x97\x8b\xd0\x52\x8a\x37\xe1\xf2\xc1\x6d\xe7\x88\x5c\xb8\xf0\xe2\xc4\xca\x6c\x13\x37\x5a\xfa\x49\x60\x27\xc0\x5b\x60\x39\xff\xe7\x79\x27\xe8\x59\xea\x2b\x74\x13\x3f\x48\x3c\x4b\x29\x2e\x47\xe5\x42\x9c\xe3\x9a\xa0\xbb\x5c\xc2\xc8\x46\x69\x9e\xe7\x7a\x7e\xb2\x0c\x6d\x84\x78\x13\x2a\x17\xc2\xca\x2f\x41\x77\xb9\x08\x93\x85\x05\x1d\x3f\x74\x17\x71\x10\x2c\x2d\xb9\xbf\x1c\x95\x73\x7f\x8e\x53\xa2\xe4\x12\xcf\xc6\x8b\x07\xd0\x0d\x61\x04\xad\x46\xc3\x9b\x50\xb9\x10\xe7\x78\x25\xda\xe3\x5e\x6c\x47\x2d\x89\xfc\xc4\x6a\x7a\x78\x0b\x28\x13\xc1\xb7\xf2\x47\x94\x4c\x14\xda\xcc\x42\xfe\xc2\xf5\xa0\x17\x5a\x0d\xe4\x37\xa1\x72\xee\xcf\xf1\x46\x94\x5c\xb2\xb4\x71\x1c\x7e\xe0\x2e\x17\xbe\x9d\x37\x7a\x13\x2a\x17\xe2\x5c\x6f\xb4\x0c\x6c\x7a\xdc\x5b\xba\x21\x4c\x22\xdf\x56\x88\x8b\x51\xb9\x10\x76\xab\x24\x1b\x0a\x21\x35\x8b\xc8\x6e\x46\xbe\x0c\x8f\x73\x7c\xde\xb2\x08\x42\xe8\x5b\x91\xa3\x93\x6c\x64\x37\x7a\xdf\x84\xca\x85\x38\x6f\x5d\x44\xc9\xf9\x16\xe4\x12\xba\x12\x86\x89\xbd\x0c\x97\x81\xf2\x6d\x82\xed\x8a\x08\x42\x2b\x4f\x17\xb9\x7e\x90\x04\xf6\xbc\x5f\x08\xca\x79\x3f\x73\x35\x04\xad\x56\xf2\x81\xeb\x27\xc1\xc2\x6a\x22\x7e\x03\x26\x17\xe0\xbc\x4d\x1a\x84\x10\xda\xb8\x3a\xcf\x5d\x84\x8b\xa5\xed\x9a\xf4\x62\x50\x2e\x82\xe5\xfe\x8c\x92\xb1\x31\x53\x48\x17\x2c\xb1\xd5\x22\xee\x2d\xa0\x9c\xf7\xb3\x7c\x90\x15\x1d\xdf\x87\x89\x9d\xe9\x5c\x04\xc7\xd9\x3e\xcb\xeb\x58\xd0\x71\xa0\xeb\xc5\xf1\xc2\x6e\xd0\x5e\x86\xc7\x18\x0f\xe7\x0b\x03\x41\x37\x48\xfc\x85\x9d\x99\x5c\x86\xc7\x39\x3e\xcb\xc3\xd8\x11\x0a\xa3\xc8\x6e\x93\x72\x21\x1e\x67\xfc\x2c\xcf\x62\x49\x28\xf6\x7a\x6f\x3d\x07\xe3\x06\x1e\x67\x7c\xb6\x95\x0c\xa5\xe0\x7b\xb3\x6a\x5a\x87\xe3\xfc\xce\xed\x43\xa8\x29\x46\xcb\xd8\xce\x7b\x5f\x86\xc7\x19\xbf\x82\x17\xf1\x97\x9e\xdd\xe6\xef\x42\x3c\x1e\x10\x9c\xd3\x8b\xf8\x7e\x38\xab\xdf\x33\xf1\x38\xc7\x57\xf0\x22\x5e\x1c\xfb\x73\xda\xb6\x89\xc7\x19\xbf\x82\x17\xf1\xbc\x24\x98\x95\x71\x03\x8f\x33\x3e\xa7\x17\x81\xc9\x22\x9a\x93\x63\x13\x8f\x73\x7c\x05\x3f\x02\xc3\x25\x9c\x6d\x31\x32\x82\xc7\x19\xbf\x82\x1f\x81\x7e\x62\x19\x52\xbd\x0c\x8f\xc7\xe5\xe7\xf4\x23\xd0\xf3\x97\x76\x9b\xce\xcb\xf0\x38\xc7\x57\xf0\x23\x10\x06\x81\x37\x27\xe3\x06\x1e\x67\x7c\x6e\x3f\x42\xe9\xf8\xb3\xe9\x7b\x80\xc6\x99\x9e\xcd\x87\x50\xfc\x28\x9a\x71\x5b\x60\xc2\x71\x7e\xe7\xdf\xcd\x40\x18\xcf\xb7\xc6\x1e\xc2\x71\xb6\xe7\xf6\x1f\x8c\xce\xd2\x2a\xf0\x76\x19\x1c\x63\x3b\x99\xcd\x7b\x30\x02\xc1\xbc\xfc\x06\x43\x7e\xe7\xf6\x1d\xcc\x0a\xed\xce\x2b\x2e\x83\xe3\x6c\x5f\xc3\x73\x84\xc1\x6c\xdb\x98\x21\x1c\x67\x7b\x56\xdf\x11\x58\xc6\xd3\x2e\x82\xe3\xfc\x5e\xc3\x77\xf8\xe1\xac\xd6\xa1\xc3\x71\xb6\xaf\xe1\x3b\xbc\x64\x56\xeb\xd0\xe1\xf8\x69\xfa\xac\xbe\xc3\xf3\x66\x0b\xd6\x0f\xe1\x38\xbf\xd7\xf0\x1d\x30\x99\x75\x66\xd1\xe1\x38\xdb\xd7\xf0\x1d\x30\x9c\xd5\x53\xeb\x70\x9c\xed\x59\x7d\x07\xf4\x66\x1d\x84\x3a\x1c\xe7\xf7\x1a\xbe\x03\x5a\x5e\x94\xba\x08\x8e\xb3\x7d\x8d\x7d\x0b\xed\xd0\xb9\xf8\x1e\xc1\x63\x8c\x2f\x67\xdd\xb7\x40\x08\x67\x73\x1f\x23\x78\x9c\xe3\xab\xec\x5b\xe0\xbc\xdb\x16\x38\xd8\xb5\x2c\xaf\x10\xfd\xf8\x33\xd8\x9e\x35\xf6\x01\xe1\xbc\x21\x04\x03\x8f\x73\x7c\x8d\xd8\xc7\x9f\x62\xd8\x57\xf2\x21\x73\x46\x24\x4d\x3c\x71\x0f\x6e\xbe\x25\xc8\x5c\xbc\x42\x8d\x49\xf0\xed\xee\xa7\xdb\xa5\xe2\x13\xa4\x6e\x97\x8a\xcf\xc7\xbd\x5d\x2a\x9e\x26\x77\xbb\x54\x7c\x26\xee\xed\x52\xf1\x11\x7d\xdd\x2e\x15\x9f\x81\x7a\xbb\x54\x3c\x45\xee\x76\xa9\xd8\x1e\xf4\x76\xa9\x78\x92\xdc\xed\x52\xf1\x19\xa8\xb7\x4b\xc5\x86\xbb\xbe\x5d\x2a\xb6\x04\xbd\x5d\x2a\x1e\xf7\xd5\xb7\x4b\xc5\x76\xa0\xb7\x4b\xc5\x43\x3a\xb7\x4b\xc5\xb7\x4b\xc5\x27\x08\xdd\x2e\x15\x4f\xe0\xdd\x2e\x15\x83\xdb\xa5\xe2\xa3\x78\xb7\x4b\xc5\xaa\x83\xbd\x5d\x2a\xbe\x5d\x2a\x3e\x4e\xe8\x76\xa9\xf8\x76\xa9\xf8\x14\xa1\xdb\xa5\xe2\xdb\xa5\xe2\x69\x3a\xb7\x4b\xc5\xb7\x4b\xc5\x47\xac\xf0\x76\xa9\xf8\x76\xa9\x78\xda\xa5\xde\x2e\x15\xdf\x2e\x15\x4f\xd2\xb9\x5d\x2a\xbe\x5d\x2a\x3e\x42\xe7\x76\xa9\xf8\x76\xa9\xf8\x04\xa1\x79\xb7\x2d\xb7\x4b\xc5\x53\xfd\x79\xbb\x54\x7c\xbb\x54\x3c\x4d\x02\xce\xc5\x2b\xd4\x98\x04\xdf\x46\xbf\xad\xf9\xc8\xb7\x55\x1b\xdf\xc4\x7c\xf4\x6b\x9a\x4f\x7d\x3f\x33\x74\xfd\x68\xf2\x2b\x9a\xf9\xc3\x53\xdf\xa9\x7c\xf2\xde\x33\x7b\x5b\xa0\x16\x07\xd9\x7b\x27\x80\xd5\x0b\x97\xff\x83\xfe\x80\xf6\x94\x78\x60\xd3\x75\x6a\x5b\xd8\xb7\x9b\xb8\xa2\x7d\x05\x1e\x4d\x13\xf8\xf3\xa4\x3c\x46\x59\x57\xc5\xbb\x27\xdf\x51\xbf\xd8\x9d\x11\x32\xb3\x8e\x8f\x64\x0d\x49\x52\x2f\x0b\x79\xa6\x88\x01\x04\xcf\x02\x31\x92\xf7\x57\x4f\x7a\xeb\x89\x2f\x3d\x1f\xb4\x67\x09\x39\x1e\x26\xca\xc1\x5f\xc0\x47\x86\xaf\xe7\x25\x9b\x06\x5a\xb1\x44\x1f\x38\x1b\x36\xe4\x49\xed\x46\x5b\xfe\x71\xa7\xa6\x05\x7d\x7a\xfe\xa4\x25\x30\xa8\x71\x81\xda\xfc\x89\xe9\x46\xcb\x4b\xa0\x25\x1c\x71\x22\xda\x70\x14\xbe\x40\x6b\xcc\xbf\x35\xdf\xcc\xee\x30\x5d\xfd\x48\x6a\x85\x61\x9a\x3e\x99\xac\xc2\xd3\xf3\x2a\x78\xb1\xe8\x88\xbe\x43\x7b\xa9\x44\x62\x5a\xe3\x79\x8d\x2b\x8c\x5a\xaa\x65\xf1\xd6\x78\x9e\xef\xd1\x16\xaf\xc0\xa1\x2e\xde\x7f\x9f\xa1\x16\xad\x58\xc1\x63\xf3\xb4\xfd\xcb\xcb\xbe\xf8\x94\xee\x50\xdd\xe0\xf6\xf3\x3f\xfe\xfe\xc5\x59\x3c\xfc\xd0\x3c\x6d\x39\x6f\x9f\xef\xbd\xf8\x5e\xf0\xc5\xdf\xbf\xec\x8b\xb2\xf9\x7c\xbf\x6b\xdb\x6a\xf5\xf8\xf8\xfc\xfc\xec\x3e\x07\x2e\xa9\xb7\x8f\x3e\x84\x90\xe2\xdd\xff\xf8\x43\x85\xda\x1d\xc8\x3e\xdf\xff\x2d\x71\x17\xcb\x10\x2c\xdd\x65\x14\x17\x4e\xe8\x7a\x7e\x04\xd8\xab\xe3\xb9\x30\xf0\x00\x7b\x75\x7c\xd7\x83\xe2\x95\x95\x88\x87\xb4\x62\xcc\x1b\x39\xa1\x0b\x17\xb1\x78\xf5\x5c\x18\x79\xec\xf5\x37\xdf\x4d\xbc\x85\x1b\x47\x51\xc1\x0a\x69\x6b\x4a\x00\x2e\x62\xf6\x9a\x00\xd9\xda\xf3\xa3\xdf\xbc\xc0\x85\x9e\x1b\x07\x49\x41\x49\xf9\xc0\x77\x3d\x85\x0d\x5f\x65\x4f\xc1\x88\x39\x28\x7d\x71\x7c\x17\xc6\xb4\x1d\x8c\x19\x8f\x11\x7f\xe9\x79\x4b\x7e\xbf\x67\xa9\xa6\x3f\xdf\x7f\xe7\x07\x5f\xbe\x7c\xe1\x9f\x9c\xfa\x50\xe0\xcf\xf7\xf8\x09\x97\x24\xcb\xee\x1f\x7f\xfc\x81\x6a\xe9\xc7\xef\x3f\x8c\x1b\x91\x9b\x92\xc2\xd9\x67\x8e\xe7\x83\x1f\x41\x96\x3f\x31\x43\xea\x72\xd4\x78\xd1\xd4\x68\xac\x06\xa3\x59\xa4\x8c\xd1\x92\xb8\x44\x22\x7b\x8d\x3a\x00\x8c\x6c\xd4\x22\x17\xca\x72\x8a\x10\x77\x1b\x4a\xfe\x9b\xa5\xe4\xe9\xa7\x3d\xce\x72\x04\xde\x2b\xcf\x92\x78\x51\xbd\x7c\x60\x2d\x86\x92\xd6\xe4\x99\xcb\xb8\x2a\xdb\x9d\x93\xee\xf2\x22\x7b\xef\x7f\x10\x3e\x54\x4f\xa5\x2c\x53\x07\x8e\xe1\xc8\x3c\x98\x4a\xfa\x0a\x0f\xc6\xd3\xf5\x4d\x0d\x6b\xd9\x43\x06\x83\x76\x3c\xbb\xe6\x78\x96\x94\x3e\x4f\x0a\x34\xb3\xe7\xf6\x25\x6a\xb6\x14\x3d\xe5\xae\xd3\xe7\x56\xd4\x3d\x94\x17\x74\xb9\xd5\x47\x47\xf4\x7d\x8b\x32\xe4\x56\xe5\xf6\x5e\xce\x9c\xb2\x27\x7a\x95\x24\x71\x62\xd1\x13\x42\x07\x83\x54\xcb\x1a\x3f\x22\x69\x27\x4b\x83\x83\x8a\x7c\x5b\xae\x40\x8a\xfb\x1c\xc7\x7a\x86\xcc\x63\x3d\xa6\x92\x39\xd9\xb9\x22\xc1\x88\xcc\xfb\x33\x2e\xe5\x72\xe9\x4d\x4a\x59\xa9\x49\x74\x87\xd3\xd2\x71\x0b\x2d\x50\xd3\x72\x13\x95\xf6\x39\x61\x01\x5a\x32\xf7\x2e\xb3\xd0\xa4\x2a\xfa\x29\xe6\x04\x24\xd4\xf0\x84\x1f\x00\xdf\xee\x76\xed\xbe\x78\x00\x6b\x92\xbd\x32\x14\x2d\x07\x27\x4b\x20\xf2\x5c\xa3\x4a\xa6\xef\xa6\x23\xd3\xcc\xd2\x29\x3f\x53\xbd\x82\x7f\xc9\xf7\x15\xa9\x5b\x54\xb2\xf9\xe3\xf1\x23\xf8\xfb\x2e\xe7\xf9\x13\x01\x2a\x33\xd0\xee\x30\x28\xf1\x4b\x2b\x4a\x6a\x96\x6d\x06\x94\x38\xc5\x4d\x83\xea\x57\x70\x28\x0b\xdc\x34\xe0\x95\x1c\x40\x89\x71\x06\xfe\xed\xd7\x18\x34\x87\x8a\x42\x82\x8f\x8f\x26\x7b\x77\x66\xb7\x02\x27\x16\x23\xe0\xf1\x23\xa3\xc5\x33\x54\x8b\x5a\x20\x6f\x04\x03\x5b\x36\xad\x83\x27\x54\x1c\x30\x20\x1b\x56\xba\x21\xa4\xc5\xf5\xf7\x8d\x20\x01\x3e\x3e\x8a\x04\x66\xb4\xf8\x01\xb8\xd5\xa1\xd9\x69\x1a\x52\x48\xf1\x87\xfb\x43\xd3\x82\x35\x66\x68\x0d\xda\x63\x89\x84\x58\x86\x39\x0a\x23\x40\x47\xfc\x9c\xe7\xd1\xb1\xcb\x0d\xcf\xa5\x1e\x04\xe5\x25\x36\x13\x97\x7b\x10\xca\x5e\x1b\x83\xf0\xe1\x69\x08\xff\x38\x44\x18\x2c\x4e\x42\x84\x3d\x04\x02\xeb\x43\xdb\x92\x72\xa5\xa4\x5f\x1d\x49\x24\xb5\x3e\x6c\x36\xb8\x76\xfa\xdc\xca\x5d\x0a\x6e\x38\xed\xf9\x95\x91\xe8\x8a\x05\x25\xf5\x1e\x82\x19\xa5\x84\xad\x30\x65\x7e\x3b\x9e\xc1\xfe\x93\xcc\x82\xaa\x36\x74\xa9\x5f\xc1\x99\xc3\xcb\x04\x8e\x39\x4f\x04\x9d\x6c\xb2\x3a\x1b\x30\xce\x3e\xcf\x32\x99\x47\x4c\xcf\xf9\xac\x24\xf5\x21\x8e\x30\xb4\x3f\x86\x49\xca\x9e\x70\xdd\xe6\x29\x2a\x1c\xee\xe9\x94\x2a\x22\x41\x34\xec\x70\x9a\x36\x4f\xbf\xbe\x8a\x24\xbd\xac\xa2\xe6\x13\xfa\x51\xce\x2b\xea\x65\x72\xeb\xd0\x3f\xeb\x33\x90\x71\x44\x4e\xa4\x26\xcf\x2e\x5b\xe4\x8b\x7c\xef\x63\x89\xe5\x97\x9b\x60\x93\x88\x2e\x64\x4a\x93\x75\x55\xe5\xfb\xd5\x0b\x57\xba\x96\x62\xd0\x5d\x6f\x9d\x2a\x2f\xbf\x4e\x61\xab\x09\x53\xd7\x5b\xa7\x60\x4a\x3e\xd6\x40\x63\x66\xeb\x90\x1a\x95\x5b\x3c\x55\xf9\xcb\x97\xbf\xfe\x12\xfd\xda\x55\xde\xd6\x18\x4f\xe6\x45\xec\x93\x37\xb2\xba\x19\xaa\xbf\x1e\x6f\xb0\x88\x7f\x0e\xa3\x9e\x93\x23\x0a\xec\x53\x36\x0a\x36\xd0\xeb\x54\xd5\x3e\x73\xb6\xa2\x8f\x63\x0d\x54\x5d\x23\x96\xfa\xc8\x91\xf9\x9c\x55\x27\x1d\xc9\xb4\x75\x6a\x32\x72\xcf\x28\x94\x79\xfc\xbb\x45\x92\x8b\xf7\x6b\xda\xc1\x79\xd3\x3a\x4f\x39\xe6\xc9\xa2\x8c\xa4\xd9\x93\x3b\x25\x61\xd5\x12\x34\x18\x03\xcd\x5b\xbc\xef\x91\x8f\xa6\x8c\xeb\x27\x22\x6e\xbe\x48\xe6\xf3\x1b\xf2\x23\x85\x5e\x40\xa8\xad\x48\x47\x58\x29\xf2\xaa\xcb\x63\x3f\xb6\x5b\x9c\xc8\xdc\x37\x91\x36\x7f\x2a\x2d\x3e\xa3\x95\x11\xa7\x20\x5b\xc2\x79\xee\x13\x24\xc6\x9f\x0c\x0f\xe0\x04\x92\xbb\x96\xec\xc9\xb6\x46\xd5\xee\x15\xb8\x7d\xd7\xf3\xf5\x79\x5e\x14\x46\xef\xab\xb5\xd1\x4b\xde\x28\xf5\x64\x02\xc9\xa6\xad\xc9\x57\xac\xa5\x41\xe7\x45\x4e\x86\x9a\x1d\xaa\x6b\x2a\x78\x08\xc2\x11\xf2\xbd\xb3\x9c\x80\x8c\xa2\x68\xd8\x8c\x6d\x73\x59\x2b\xad\x5e\x2f\x80\x3a\xea\xd4\x86\x74\xea\x10\xeb\x05\xad\xb5\x3a\x94\xc6\xeb\xf3\x7c\x68\xa3\x34\x85\xac\x72\xb3\x3c\xa6\x66\xea\x2d\x47\xc8\xaa\xc3\x72\x50\x9d\xf6\xfa\x60\xd3\x24\x53\x40\xb2\xb5\x6d\x99\xee\xe8\x60\x6d\x5a\x54\xb3\x44\xb9\x77\x8f\x1f\xdf\x81\x86\x1c\xea\x14\xff\x0d\x55\x55\x5e\x6e\xff\xf1\xef\xbf\x7d\x5e\xa3\x06\xbb\x69\xd3\xb8\x7b\x54\xd1\x55\xce\xff\x06\x00\x00\xff\xff\xc4\x3e\xd3\xaa\x36\xa6\x00\x00") -func web_uiStaticBaseCssBytes() ([]byte, error) { +func web_uiV1StaticBaseCssBytes() ([]byte, error) { return bindataRead( - _web_uiStaticBaseCss, - "web_ui/static/base.css", + _web_uiV1StaticBaseCss, + "web_ui/v1/static/base.css", ) } -func web_uiStaticBaseCss() (*asset, error) { - bytes, err := web_uiStaticBaseCssBytes() +func web_uiV1StaticBaseCss() (*asset, error) { + bytes, err := web_uiV1StaticBaseCssBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/base.css", size: 40476, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/base.css", size: 42550, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticBaseCssMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3c\xc7\x72\xdb\x4a\x90\x77\x7f\x85\x4b\x57\xa1\x1e\x15\xac\x64\x9e\x7a\x06\x03\x60\x08\x42\x12\x9c\xe5\xad\xad\x2d\x2a\x11\xa4\x98\xc4\x28\x6a\x6b\xff\x7d\x6b\x72\x03\x18\x5a\xb2\x9f\xf7\x95\xdf\x16\x6f\x52\x4f\xea\x34\x9d\xa6\xc1\xff\x7e\xb3\xb3\xbc\x9b\xce\x7a\xe3\xd1\xce\xfb\xb7\x87\xc1\x9b\x9d\x61\x67\x32\xe9\x8d\xba\xb3\x9d\xf7\x6f\x77\x00\x00\x02\x0e\x90\x36\x19\xd0\x30\x98\x11\x80\x19\x09\x18\x00\x0d\xbe\x02\x7c\x15\xd0\x01\x0d\x3e\x02\x7c\x14\x40\x26\xa6\x72\x01\xbc\x0f\x52\x80\x34\x60\x74\x45\x86\x44\x41\x9b\x10\x4e\x49\x41\x03\x0a\xc0\xc4\x14\x66\xa6\xe4\x43\x12\x5c\x00\xac\x48\x93\x85\x97\x45\x28\x37\x56\xbb\xc5\x00\x71\x93\xb1\xcb\x01\x09\x1e\x08\xc0\x03\x09\x58\x94\x73\x89\xc5\x23\x11\x03\x4f\x34\xb8\x03\xb8\x0b\x58\x74\x81\xc0\xe7\x4b\x1a\xdc\x00\xdc\x04\x2c\xca\x10\xb8\x3d\xa7\x41\x07\xa0\x13\xb0\x28\x45\xe0\xd6\x88\x06\x9f\x01\x3e\x07\x2c\xe2\x0e\x0c\xec\x99\x0a\xac\xf2\x26\x07\xda\xd2\xa7\x58\x0a\x39\xd0\x29\xd1\xf8\x0b\xe0\x85\x40\xae\xc9\x20\x3e\x21\x41\x0e\xf0\x51\x4c\x68\x97\xc7\x2f\x9a\x1c\xd8\xad\xc0\x2b\x6f\x66\x62\x4b\x4d\x7d\xfb\xab\x26\xbe\x09\xe1\xe7\x49\x88\x98\xad\x27\x7c\x57\xec\xb9\x68\xb2\xb0\xd3\x20\x41\x97\x00\x74\x49\xc0\xe8\x84\xe4\x0a\xde\x84\x70\x41\x46\x52\x20\x57\x62\xe5\x87\x1f\xc9\x63\x9f\x98\xed\x9a\x10\x1e\x8b\x65\x29\x40\x26\xa6\x44\x66\x4a\x03\x8b\xec\x81\x16\x54\x32\x7f\x48\x4a\xfb\x4c\x28\x9a\xb4\x10\x93\x98\x14\x16\x50\xc3\x7b\x71\xbc\x40\x44\xc0\x9e\x49\x4d\xaa\x40\x0b\xc3\x41\xfa\x44\x11\x52\x07\x74\x24\xb7\xb8\x13\x73\xbe\xa1\xcd\xcc\xba\x11\xf1\x9f\x20\x38\xc3\x04\xe7\xad\x66\x35\xe8\x9d\xdd\x76\x18\x8e\xa8\xd8\x42\xb2\x03\x1c\x1b\xa7\x61\xae\xb9\x14\xce\xc2\x23\x2c\xd4\x54\x4b\xe2\xbb\x1f\xf7\x0a\x93\x9b\x00\xf1\x88\x20\x6e\x56\x16\x89\xf1\x09\x09\x32\x29\x49\xa0\x89\xc1\xb1\x60\x8e\x91\xac\x5d\x50\x34\xe3\x0a\xe0\xaa\x7c\x6c\x9f\x68\x60\x94\x5e\x69\xa5\xa0\xe7\x7d\x6a\x6f\x07\x65\x3c\xe8\x51\x80\x2e\x6d\xb2\x30\x1c\x85\x5a\x6f\x29\x45\x60\x18\x84\x9a\x7f\x14\x10\x98\xf6\x43\x7d\x3b\x68\x88\xc0\xec\xcc\xdc\x0e\x1a\x39\x30\xb0\x49\x18\x3c\x12\x21\x24\x2e\x84\x24\x50\x51\x98\xe6\xfa\xca\xf4\x9d\xa6\x0a\xb0\x34\x16\x1c\xe8\x09\xa9\x52\xc5\x31\x55\x91\x56\x69\xc6\xd2\x06\xf1\x1f\xa0\x76\x15\xd0\xe7\x9a\x0c\xb8\x53\xd0\xe8\x93\x16\x3d\x67\x9f\x0f\x8d\x54\xa3\xef\x77\x7a\x22\xeb\x3c\x11\x4d\x2e\xc6\x64\x40\xd0\x49\x1a\xc8\xbe\x07\x07\x44\x48\x35\x13\x52\xad\x9c\x98\x89\x13\x2b\xda\x98\xf9\xf4\x3d\x93\x3a\xf3\x1a\x20\x07\x3e\x21\xc1\x29\xd1\x5b\x5d\xa2\xed\x35\x91\xf1\x9c\x48\x49\x5c\x89\xf1\x0f\x5a\x3c\x78\xd3\xfb\xaa\x16\x67\x1e\x2d\xce\xd0\x0d\x8c\x1a\xe4\xab\x62\x57\xc6\xba\x74\x59\x63\x2c\x83\x74\xb9\x41\x1e\x77\x1a\xf6\xf4\x43\x69\x3c\x51\x2b\x8e\x35\x75\xf2\x38\xa4\x56\x20\xef\xa8\x4f\x22\x6c\x40\x5e\xe2\x7e\x8d\x7d\xe2\x9a\xfd\x66\xf6\x4c\x43\xcb\x9e\x59\xe8\x63\x0f\x5f\x2a\x17\x75\x25\xa8\xfe\xe0\x67\xcf\x58\xda\xa7\x4c\xd8\x27\x1f\x1d\xfa\xa8\x67\xfa\xd5\xb0\xe4\x40\xac\x12\x4c\x97\xd8\xd4\xdc\x2c\x07\x36\x52\xdc\x91\x8a\xd2\xf6\x8f\x1f\x13\x80\x8e\x18\xff\x54\x55\x24\x06\xfc\x88\x04\x3d\xa2\xaf\xe6\x25\xe2\x8a\x91\xdf\x37\x61\x8d\x32\x0c\x0b\x07\x11\xf2\xc6\x74\x18\xe5\xc1\x3b\x02\x70\x40\xd4\x90\xb5\x38\x0f\x78\xa0\x1f\xf5\xad\xcd\xe9\xe1\x81\x22\x2a\xac\xd5\xe9\xe2\x81\x06\x3b\xb1\x76\x67\x97\xd9\x01\x06\xf1\x28\x94\x28\x77\x04\x7a\x9f\x82\xa1\xf4\x4c\x25\x23\xc9\x35\xab\xe5\x85\xa6\x88\x00\x0a\x40\xd5\xaa\x85\xe3\x69\x65\x58\xf2\xa9\x02\x63\xc0\xa7\x44\x62\x30\x23\xda\x48\xf8\x38\xf5\x1a\xee\x09\x3d\x73\xf6\xcf\xc0\x4a\x56\x47\x7b\x9d\x58\x73\xf9\x46\x4c\xf8\xe2\xa3\x33\x3e\x22\x92\x90\x21\x51\x37\xcd\x9d\xa5\xa3\x0d\x7a\x5f\x32\xc1\x17\x00\xc7\x86\x83\x1d\x19\xa3\x84\x93\xe4\x9b\x13\xe5\x3a\xc9\x83\x15\x01\x58\x08\xfe\x3f\x25\x67\x26\xb4\xa2\x2b\x3c\xb0\x4c\x4e\x8c\x83\xa7\x0b\x3c\x30\x4f\x8e\x4c\x78\x45\x67\x78\x60\x9a\x3c\x5b\x51\x3e\xa2\x01\xa0\x87\xd4\xd8\xfd\xa3\x38\xd7\x51\x10\x67\x8b\xf8\x88\x4a\xf3\xd7\x25\xea\x62\xea\x39\x4f\x31\xb7\x73\x4e\xc5\x9c\x95\xd4\xdc\x2c\x3c\x4a\xfa\x48\x23\x8f\x13\xab\x2d\x62\xc8\x69\xe4\x3b\x3c\x70\x98\x38\x8d\x3c\xc0\x03\xfb\x89\xd3\xc8\x3d\x3c\xf0\x9c\x38\x8d\x5c\xa3\x01\x49\x86\xe1\x73\x54\x24\x60\xc3\xb9\xf8\x76\x12\x8a\x15\x32\x4a\xbe\x44\x76\xc8\x04\x65\x05\x41\xc0\x53\x0a\x70\x2a\x94\x8d\xee\x87\x28\xdc\x34\xf1\xcd\x7e\x4d\xe9\x98\x47\xc1\x9a\x00\xbc\x20\x2a\x6e\x65\x22\xc8\x74\x7a\x65\xd6\x5c\x23\x43\x67\x60\x7d\x52\xb7\x0d\x74\x82\xcd\xb1\x01\x8e\x88\x9f\x0e\x37\x53\x6c\x24\x02\x04\xe5\xe9\x53\x21\xe7\xb0\xba\x86\x57\x02\x28\xa3\xf3\x13\x65\xee\xb4\xce\xd7\xe8\xcd\x2e\xa5\x35\xd3\x31\x5e\xc5\xeb\x72\x9f\xd7\xad\x1e\x54\xf5\x4b\xc9\x09\xb9\xd0\x40\xda\x3a\x73\x5a\xc4\x1e\x68\x97\x98\x68\x87\x47\x7d\xda\x30\x32\x61\xbd\xd2\x48\x41\xcf\x8c\x1e\xb1\x6e\x69\xa4\x41\x4e\x8c\x22\xb1\x5d\x82\x47\xce\xc8\xbe\xe1\x08\x3b\xc5\x23\x32\xaa\x1a\xd2\x4a\x86\xe0\xf2\x8b\xcc\x86\xb9\xe5\x3b\xdd\x04\xba\xa4\x23\x86\x52\x87\xd7\x47\xe0\xbe\x54\xc1\x1b\x77\x2a\x64\x5a\x60\xa2\x55\x56\x62\x58\x9c\xba\xe0\x30\x69\xd9\xc0\x33\xe6\x08\x9c\xd8\xc0\x33\x8e\x11\x38\xb2\x81\x67\x8c\xa2\xd7\x24\xb4\x81\x67\x8c\xa2\xd7\xa4\x3d\x0f\xdd\xa1\x19\x97\x0a\xf1\x8e\x88\x81\x86\x31\x58\x02\x17\x0b\x6e\x9d\x19\x73\x25\x70\xb1\x60\x71\x99\xf5\xa1\x31\x02\x47\xfb\xf6\x50\x86\xc0\xe7\x03\x74\x28\xca\x34\x93\x73\x9b\x80\xc6\x28\xd3\x4c\xda\x36\x01\x8d\x51\xa6\x99\xb4\x6c\x02\x1a\xa3\x4c\x33\x49\x6c\x02\x2a\x70\xb1\x09\x28\x55\x09\x68\xed\xfa\xba\xab\x66\x12\x94\x09\x96\x6d\xa6\x13\x90\x91\xcc\x44\xf3\x32\xb0\x74\x53\x73\x6d\x25\x96\x2a\x08\xe8\x69\x9d\x12\x13\xc4\x05\x2e\x24\x56\x3a\xff\xad\xaa\x22\xdf\xa0\x8a\xca\xbd\xb8\x75\x15\x02\xb8\x87\x00\x2e\x09\xf0\x4d\xac\x59\x9a\x58\x51\xaa\xd3\xeb\xbf\xb7\x4f\xb7\x6a\x68\x5a\x53\x62\x62\x54\x3e\x23\x87\x1b\xf3\x17\x67\x72\x7b\x3a\x1e\x66\x4b\x22\xc5\xa6\xaf\xad\x59\xd7\x7a\x22\xa0\xa3\x46\xbe\x26\x4b\x5f\xbd\x80\xf7\xa9\x07\x91\xb9\x43\x64\xf1\x6a\x44\xa4\x4b\x65\x0d\x2f\x26\xfa\x48\xe5\xae\x4e\x68\x19\x91\x3d\x81\x48\xfa\xec\x43\x64\x4a\x1d\x47\xe8\x6b\x11\x79\x94\x88\x9c\xfc\x08\x91\x3d\x89\xc8\x51\x05\x91\x95\xe4\xc8\x52\xde\x28\x1d\xde\x69\x3c\x74\x1e\xcf\x9b\x9c\x77\xc3\xa7\x57\xe2\x21\x48\x61\x73\xe5\x51\xfc\x68\x28\x93\x3a\xa9\xa0\xd1\x93\xfc\x28\x28\xd2\x34\x8d\xc6\x88\x59\x76\x8c\xd9\xcf\x2a\x48\xcf\xa3\x20\x73\x66\x15\x64\xc1\x3c\x0a\xc2\x65\x41\x69\x25\x77\xc9\xca\x31\xa6\x5a\x06\xf4\xb6\x4a\xd4\x85\x76\x13\x0e\x0b\xed\x91\xd3\x33\x79\xf9\x75\xac\xef\xf3\x89\x95\xd4\x97\x41\x5c\xbc\x7e\x09\x4a\x74\xbc\x19\x7e\x25\xb5\x6b\x02\x64\x4f\x8a\x2b\x9f\x37\x17\xad\x2a\xe1\x8d\x2c\xc6\xd4\x42\x65\x7a\x2b\x65\x2c\x31\x8a\xbc\x21\xb7\xf8\x4b\xc1\x04\x6a\xd2\x5f\x26\x5a\x8d\xa4\xb4\xe9\x35\xda\x55\xc7\xfc\xf4\x8b\xdf\x0f\x7a\x22\x71\x4f\xe6\xca\x64\x54\xff\xaa\xf8\xa9\xd5\x46\x09\x15\xcf\x9c\xaf\x6b\xb5\xad\x1f\xe5\xc8\xbd\xb6\x5a\xd6\x8f\x72\xe4\x5e\x5b\x89\xf5\xa3\x1c\xb9\xd7\x56\x64\xfd\x28\x67\x95\x02\xce\x8a\x01\x2c\x64\x4a\x34\xc2\x89\xd0\xd0\x26\x15\x87\xa4\x2a\x60\x95\x76\x1c\xbb\x04\xcc\x2b\x6b\xa5\xa6\xed\x6f\x26\xb9\x4f\xaf\xea\xd5\x01\x26\xcb\x65\x6b\x0a\xb0\x26\xba\x9e\x5a\x09\x22\xd5\x6d\xd2\x7b\x0d\x88\xdd\x6c\x4c\x9e\x48\xb0\x0e\x5d\x82\xf0\x93\xd9\x7c\x7b\x6a\x8b\x1d\xe9\x8c\x6c\xca\xe6\xf7\xa4\x66\x72\xa0\xe7\xaf\xc9\xec\xd4\x5d\xe9\x52\xe3\x1c\x6f\x7f\x2a\x1d\xdb\xa3\x32\xd0\x50\xb7\xe7\x67\x16\x3e\x32\x80\x95\x94\xe0\xc4\xe4\x52\xed\x67\xaa\x8b\x68\x3c\xdd\x13\x12\xf4\x56\xb9\x2a\x45\x11\x0e\xac\x76\xd9\x38\x64\x35\x36\x72\x68\x15\x24\x38\x8e\x84\x78\x32\x71\x45\x6a\x6b\xd2\x82\x04\xbd\xe8\x67\x0a\x36\x19\xb0\x82\x04\x07\x91\x10\x5d\x2e\x82\xd7\x4a\x2c\x93\xfb\x62\x99\xdc\x17\xcb\xe4\x50\x2e\x5d\xc9\xed\x73\x21\x8c\x8a\x04\x73\x5c\xc2\x52\x8c\x13\xb0\x49\x8d\x59\x99\xac\xb5\x1d\x47\xfa\xc8\x08\x5d\x07\xb3\x68\x5a\x5b\x94\x4b\x0e\x57\xa8\xcc\x7d\xd1\x76\xee\x32\x91\xf6\x33\xbb\x30\x62\x3b\x16\xce\x65\x1d\x09\xfd\xcb\x84\xfe\x55\x2c\x9e\xb4\xfa\x9b\x2b\x48\x18\x66\x3c\x46\xbb\x1f\x7d\x35\xbb\x8f\xa3\x43\x12\x0c\x23\xe5\x29\xd2\xc4\x5b\x01\xd9\xbc\x7b\xfb\x30\xb2\x97\xe7\x5d\xb4\xc4\x82\xd1\x53\x2f\x6f\x25\xee\x92\x64\x5a\xb5\xab\x19\xe4\xb7\xc1\x3a\x91\x51\x42\x2e\x6d\x45\x25\x60\xcb\x85\x31\x36\xd6\x10\x5d\xaf\x74\x42\x83\x47\xaa\xa3\x0b\x67\x63\x7e\x4b\x09\x86\x01\x9f\xab\x5a\xca\xc7\x26\x6f\x0d\x50\x51\x84\x0f\x51\xc1\xa2\x35\x70\x45\x11\xfe\x80\x07\xfa\xae\x28\xc2\x7b\x78\xa0\x70\x45\x11\xde\xc5\x03\x8d\xd8\x16\x45\xf8\x6e\xec\x2d\x8a\xb4\xe7\xae\x28\x92\xae\xe2\x23\x1a\xec\x32\x69\xbc\xb3\xd6\x3c\x99\xbb\x9a\x3f\x5f\x24\x57\xb6\x1a\x21\x86\xac\xd3\x98\xe1\x81\x69\x32\xb5\x6e\xe3\x11\x0f\x4c\x92\x89\x75\x1c\x63\x3c\x30\x12\x1e\x45\xe3\x38\x44\x03\x40\x1b\xae\xe2\xd1\xde\x8f\x5d\xc5\x23\xbb\x2d\xc2\x60\x2d\x63\x2f\xd6\x86\xc2\xb9\xb5\x94\xe6\x36\x9b\x6a\x83\x75\x6b\x29\x20\x30\xb5\x6e\x2d\x0d\x11\x98\x59\xb7\x96\x46\x08\x1c\x5b\xb7\x96\x26\x08\x1c\xa2\xf4\x30\x65\xb9\xac\x8e\xee\xc9\x81\xbe\x3d\x94\x22\x30\x14\xf6\x50\x40\x60\x41\xa1\x3e\x34\x44\x60\x76\x64\x0f\x8d\x10\x38\x9a\xa0\x43\x63\x84\x4d\xe4\x28\x65\x18\x49\x47\x69\x89\x2f\x8e\xd2\x12\x5f\x1c\xa5\x88\x2f\xc0\x8a\x30\x38\xa0\x00\x63\xe2\xaf\x72\x00\xa4\x23\x12\xec\x2a\x61\xb8\x68\xe6\xfc\x82\xeb\x27\x96\xec\x7c\x89\xfd\xc0\x9d\xdc\x0a\x20\x2b\xa8\xf4\x47\xe5\x55\x21\x98\x55\x6c\xe4\x5b\x25\xae\xe7\xaa\xb6\xea\x1c\x54\xd8\xce\xb2\x8b\xa2\xb2\xea\x41\xae\xda\x57\x95\x3e\xf3\xb6\x68\x94\xea\xfc\x88\x70\xf3\x70\x97\x75\x45\x74\xf2\xa8\xaa\xaf\xac\x62\x5a\x4d\x75\x63\x8e\xdd\xa6\x09\x0b\xaf\xeb\x69\xad\x7c\x84\xf3\xbf\x2e\xfe\x4a\xa1\x44\xd9\x9b\xf3\x23\xfb\x16\xca\xb2\x63\x7a\x44\xea\x15\x36\xd6\x57\x35\xe9\x4c\xc5\xa8\x95\xa0\xa9\x09\x74\x1a\x3e\xe3\xb2\x9d\x33\xaa\x86\x98\x7b\xc4\xbe\x0b\xc3\xb1\x46\xcd\x7c\x56\x0a\x7c\x08\x7f\xdf\xc4\x5a\x05\x4e\x4c\xf4\x56\x02\x9d\x65\x5d\x5b\x49\x9c\xfc\x04\xa7\x2a\xa9\x85\x90\x43\x41\x84\x1e\x74\x89\x8a\xea\x2b\xa7\x8a\x09\x2a\x66\x94\xd9\xc1\x79\x35\xf3\x91\x51\x7f\x2d\x5f\xa9\xc7\x7d\xea\xd5\xb5\x79\x07\xd4\x1c\x54\x71\x48\x62\xc2\x2d\x3a\xa7\xe2\x0d\xc5\xf0\x75\xf3\x81\x00\x35\x3a\xfa\x7a\x44\x37\x56\x69\x25\x1e\x4e\xc4\xa6\x0e\x53\x7a\x57\x30\x14\x7d\x91\x7f\x95\x61\x1f\xfc\x95\x1d\x6f\x5d\xb7\x12\x4d\x4a\x12\x0e\xa4\x21\x2f\xaf\x1f\xd1\x52\x66\x23\xc1\x82\xb6\xc6\x06\xe6\x59\xe2\xfb\xa4\xd9\x25\x40\xeb\x79\x14\xd3\x7d\x1e\xdf\x5e\x4f\xaa\x43\xd6\xc0\xbe\x79\xc9\x77\xf9\x9c\x81\x7d\x42\xd7\x43\xea\xb2\x40\x6d\x4a\x9a\x33\x02\x74\x41\xfc\x99\x97\x7e\x91\xef\x11\x5d\x8c\xa1\xb7\x25\x83\x31\x14\xc1\xbc\xcc\x04\xa7\x21\xd2\x69\x0d\x96\xa4\x87\xa5\x14\x12\x2f\x1e\x53\x80\xa1\x5c\x3c\xc7\x8b\x35\x58\x66\xbf\x83\x10\x69\x8d\xa3\xd2\xc8\xee\x13\xa2\xd2\xc0\xbe\xf8\x6f\x6c\x3d\xb5\x16\x51\xab\x6b\x07\xa9\xbd\x67\xd1\x4f\x1b\xee\xc9\x82\x02\x5d\xc9\x19\x13\x5a\x52\x13\xa3\x3c\x93\xb2\x9a\x28\x1b\x2d\x2c\x79\x41\x4b\xbc\xa8\xd0\xa3\xae\x51\x69\x77\xbf\x30\x44\x1c\xb4\x96\x7b\x4c\x09\xea\x36\xb2\xcf\xfe\x22\xd9\xc6\x0d\x26\x0e\x2c\xdc\x96\x74\xc8\x65\xed\x43\x35\x6a\x0c\xd6\x2f\xe8\x3d\x5a\xbe\x05\xcf\x54\xda\xb7\x75\xf5\x16\x4c\xa9\x90\xfb\x69\x28\x90\x3f\x09\x25\x65\x22\x19\xd2\x25\x1e\x23\xf4\x77\x21\xc0\xbb\x50\xc1\x9d\xa0\x34\x54\x18\xcc\x96\x92\x78\x6d\xe1\x42\x24\xe2\xac\xba\x50\x43\x19\xd0\xfd\xf6\xaf\x2f\xf4\xa3\xfa\xd2\xc2\xd1\xa6\x13\x45\xc6\xf9\x58\x5b\xa8\xa1\x82\xb1\x7f\x03\xd5\x58\x05\xe8\x95\x85\x33\x06\x30\xab\x2d\xd4\x50\x61\x4b\xda\xea\x91\xed\xa7\x51\x5d\xfe\x8d\x85\x7e\x54\x5f\x5a\x58\xfc\x76\x54\xc7\x0c\x60\x5c\x5b\xa8\xa1\xe2\x16\xfd\x39\xa8\xfe\x32\x57\x77\x43\x80\xdd\xda\xb5\xd2\x50\x61\x4c\xd2\x3f\x86\xab\x2f\x2d\x3c\xdb\x84\xea\x90\x01\x0c\x6b\x0b\x35\x54\xdd\xc7\x3f\x05\xd5\xd3\x10\xe0\xb4\x26\x0e\x0d\x15\x36\x74\xd3\xc2\x97\xe4\x78\x98\xfe\x6e\x05\x78\xc5\x89\xbf\x19\xd5\x97\x98\x33\xf8\x73\x50\xfd\x17\x71\x75\x8b\xea\x0f\x50\x3d\x0e\x01\x8e\x6b\x0b\x35\x54\x58\xb9\xdf\xae\xab\xbf\x6c\x01\x5e\xb1\x70\x8b\xea\x16\xd5\x3f\x02\xd5\x7f\xde\x02\xfc\xf3\x5c\xfd\x23\xed\x2a\x57\xcd\x1c\x95\x85\xab\x10\x60\x55\x5b\xa8\xa1\x00\xf1\x61\x4b\xe4\xab\xdb\x0c\x6d\x9b\xa1\x6d\x33\xb4\x6d\x86\xb6\xcd\xd0\xfe\x25\x3e\x6f\x9b\xa1\xfd\xff\xe0\xea\x16\xd5\x6d\x86\xb6\x45\x75\x8b\xea\x36\x43\xdb\x66\x68\x9b\x33\xb4\x8d\xaf\x7b\x1f\x75\xf3\x45\x7f\xc3\xc7\xe3\xf8\x65\xcf\x3c\x7c\xa2\xcf\x9e\x01\xbf\xfa\x9e\xc8\x6f\xf5\x62\x91\x08\x46\x9b\xf2\xc0\x9e\xb0\xbd\xea\x6d\x97\x6d\x20\x67\x4c\x74\x93\x4a\x5c\x84\xe2\x9f\x57\x6d\x58\x21\xde\x1d\xd3\x48\x7e\x7c\x4c\x35\xc8\xd3\x87\xd3\xc6\x65\x83\xd9\x6f\xc8\x3e\x79\x3e\xf7\x8a\x6f\xd5\x0f\x0e\x6c\xfe\xc4\xcc\xad\x91\x1d\xbc\x4d\xf5\xc5\x87\xaf\x25\xc1\xc1\x54\x9b\xb4\x7e\x48\x36\xdd\x32\xd7\xb5\xe3\xd5\xf9\x7b\xe6\xdb\x4c\x21\x29\xad\x54\xb6\x77\x1f\xcc\x33\x2a\x00\xef\x93\xff\x93\xb9\xe9\xb5\xa0\x4c\x77\x1e\xd5\x3b\x14\xb8\xea\xd0\xbc\xa9\xd2\x88\x38\xb8\xd6\x9d\x5c\xa6\x7b\xbd\xa3\x5a\x07\xdd\x1b\x79\x4f\x4d\xe0\x40\x97\xea\x5d\xfc\x06\x7f\x9a\x08\xae\xe7\xca\x7c\x7c\xfa\x68\x7a\x0e\x2a\x2d\xe0\xaa\x2d\x01\x7d\x15\xe8\xeb\x37\x29\xbd\xa4\x7b\xfb\x1a\x50\x07\x93\xaf\x73\xc0\xdb\x1e\xe2\x80\xfa\x83\x00\x41\x6c\x65\xa6\xfe\x7e\xf0\xca\xf6\x25\x98\x8e\xac\x0f\x03\x66\x3b\xb2\xf2\x19\x1b\xd1\xc0\xf5\x2e\xd4\xd8\x24\x76\x39\xa4\x56\x2f\xdb\x6e\x97\x13\x96\xdb\x66\xc1\xbc\x1b\x4d\x42\x44\x88\x9d\x54\x44\xf6\x87\x2d\xf2\x61\xa4\x3e\x8e\xd2\xdc\xb2\x73\x8e\x98\x9b\xb3\x5b\x46\xc7\xce\x99\xa0\x7d\x16\x51\xe9\x47\x25\xec\x9c\x25\x9a\xb3\x27\xe6\xb8\x1e\x2c\x3b\x67\x5f\xcd\x11\xc2\xcb\x8f\xa3\xc2\x4b\xd8\x59\xec\xf6\xe9\x25\xfe\xb3\xfa\x89\x9b\x33\x4e\xd0\x0f\x76\x7c\xf1\x5f\xdc\xd7\x7c\xa7\xa9\xaf\xa8\x53\x98\xfb\x6a\x43\xae\xec\x6b\xf1\x76\xe0\xf8\x55\xd3\x75\xda\x4d\xc8\x4b\x9d\x3b\xae\xb7\x03\xd1\xe2\x3b\xdf\xd7\x9c\xe7\x3f\xde\x19\x1b\xdf\x77\x1e\x2f\xf4\x3d\xa1\x6f\xdf\x2a\xad\xe1\x62\xf7\x67\x82\x4c\xa5\xaf\x77\xcc\xd3\x92\x32\x50\x7d\xc1\x2b\xc3\x10\xd5\x93\xf3\xe1\xa9\x35\x26\x4e\x6f\x5a\x23\x2a\x55\xdf\x74\x11\xf9\x1a\x77\x14\x07\x3e\x9c\xb4\x1e\xcc\xaf\xb9\xe4\xa7\xad\x46\xf9\x1b\x22\xd3\x89\xc3\x9e\xd5\x67\x26\x63\xa2\x29\xfc\xc1\x86\x93\xf4\xc1\xfe\x7c\x48\x3e\x4b\x2b\x3f\xd6\xa2\x27\x2d\xed\x24\x96\xaf\xd2\xa3\x1f\x90\x51\x22\x56\xaf\x7e\xd6\x38\xcb\x23\x0e\x5a\x05\x95\x4d\xa8\xa7\x72\xd6\xbe\x9d\x75\x86\xce\xd8\x15\x67\xd4\x9a\x1c\x81\x69\xaf\x6f\x1b\xb2\xf4\xd2\xa2\xfd\xe0\xd0\x78\x68\x8f\x68\x79\xd6\x47\x4f\x3f\xa1\x93\xb9\x50\x8e\x9d\xe0\xcd\xce\x6c\xbc\x98\xde\xdc\xcd\x76\xde\xbf\xfd\x8f\x9d\xbf\xfe\x6a\xcc\xe6\xeb\xc1\xdd\xac\xf1\x5f\xf3\xf5\xe4\xee\xaf\xd9\xcd\x6c\xb6\x13\x60\xf0\xb2\x33\xed\x75\xae\x07\x77\x33\xcf\xd8\xb0\xf7\xd4\x1b\xf9\x06\x26\x9d\xd1\xdd\xc0\x37\x30\xea\x2c\x3d\xd0\xeb\xc5\x7c\x3e\xf6\x6e\x34\xe8\xcd\xe6\x3e\xf8\xfd\x78\x3a\xf4\xee\x3f\x9e\xf7\xee\x7b\x37\x9d\x79\xcf\xbb\xdf\x75\x67\xa6\x69\xfc\xcf\xe0\xcd\xce\xa8\x33\x54\x6c\x10\xff\xdc\xf7\x06\x77\x3b\xef\xdf\xee\xc8\x29\x62\xc6\x9b\xff\x79\xf3\xbf\x01\x00\x00\xff\xff\xd9\xfe\x01\xb7\xf1\x49\x00\x00") +var _web_uiV1StaticBaseCssMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3c\x59\x53\x23\x39\x93\xef\xfd\x2b\x26\x78\xa5\x76\xcc\x65\x8e\xf1\x53\x4a\xa5\xaa\x92\xcb\x05\xed\x81\x3e\xe8\x8d\x8d\x0d\x68\xc0\x65\xe3\x0b\x5f\x60\x36\xf6\xbf\x6f\xe8\xce\x52\xc9\x40\xcf\xf4\x7e\xd1\xf3\x05\x6f\x90\x4a\x49\xa9\xcc\x54\x5e\x95\xf2\xff\x7c\xd8\x5a\xdd\xce\xe6\xfd\xc9\x78\xeb\x8f\xdf\xf6\xa3\x0f\x5b\xa3\xab\xe9\xb4\x3f\xee\xcd\xb7\xfe\xf8\x6d\x0b\x00\x20\xe2\x00\x79\x8b\x01\x8d\xa3\x39\x01\x98\x93\x88\x01\xd0\xe8\x0b\xc0\x17\x01\x1d\xd2\xe8\x1c\xe0\x5c\x00\x99\x40\xe5\x02\x78\x17\xe5\x00\x79\xc4\xe8\x23\x19\x11\x05\x6d\x41\x3c\x23\x25\x8d\x28\x00\x13\x28\xcc\xa0\x74\x47\x24\x3a\x03\x78\x24\x2d\x16\x7f\x2c\x63\xb9\xb0\x5a\x2d\x05\x48\x5b\x8c\x7d\x1c\x92\xe8\x9e\x00\xdc\x93\x88\x25\x5d\x2e\xa9\x78\x20\x62\xe0\x89\x46\xb7\x00\xb7\x11\x4b\xce\x10\xf8\x74\x45\xa3\xef\x00\xdf\x23\x96\x14\x08\xdc\x59\xd0\xe8\x0a\xe0\x2a\x62\x49\x8e\xc0\xed\x31\x8d\x3e\x01\x7c\x8a\x58\xc2\x1d\x18\xd8\x33\x15\x54\x75\x5b\x1c\x68\x5b\xef\x62\x4f\xc8\x81\xce\x88\xa6\x5f\x00\xcf\x04\x71\x2d\x06\xe9\x11\x89\xba\x00\xe7\x02\xa1\x53\x1d\x3f\x6b\x71\x60\x37\x82\xae\x6e\xab\x10\x4b\xea\xd3\x77\xbe\xe8\xc3\xb7\x20\xfe\x34\x8d\x11\xb3\x35\xc2\x37\xc5\x9e\xb3\x16\x8b\xaf\x1a\x24\xea\x11\x80\x1e\x89\x18\x9d\x92\xae\x82\xb7\x20\x5e\x92\xb1\x14\xc8\xa5\x98\xf9\xe7\x4b\xf2\xd8\x25\x66\xb9\x16\xc4\x87\x62\x5a\x0e\x50\x08\x94\xc4\xa0\x34\xb0\xc8\xee\x69\x49\x25\xf3\x47\xa4\xb2\xce\x94\x22\xa4\xa5\x40\x62\x52\x58\x40\x0d\xef\xc5\xf6\x82\x10\x01\x7b\x26\x35\xa9\x02\x2d\x0d\x07\xe9\x13\x45\x44\xed\xd1\xb1\x5c\xe2\x56\xe0\x7c\x45\x8b\x99\x79\x63\x12\xde\x41\x70\x86\x09\xce\x5b\xcd\x6a\xd0\x5b\xbb\xec\x28\x1e\x53\xb1\x84\x64\x07\x38\x36\xce\xe2\xae\xe6\x52\x3c\x8f\x9b\x58\xa8\xb9\x96\xc4\xb7\x30\xed\x1e\x93\x5b\x00\xe9\x98\x20\x6e\x7a\x93\xc4\xf8\x94\x44\x85\x94\x24\xd0\xcc\xd0\x58\x32\xc7\x48\xd6\x29\x29\xc2\xb8\x04\xb8\xac\x6e\x3b\x20\x1a\x98\xe4\x97\x5a\x29\xe8\xe9\x80\xda\xdb\x41\x19\x8f\xfa\x14\xa0\x47\x5b\x2c\x8e\xc7\xb1\xd6\x5b\x4a\x11\x18\x86\xb1\xe6\x1f\x05\x04\xa6\x83\x58\xdf\x0e\x1a\x23\x30\x3b\x31\xb7\x83\x26\x0e\x0c\x6c\x1a\x47\x0f\x44\x08\x89\x0b\x21\x09\x52\x14\xa5\x5d\x7d\x65\x06\x4e\x53\x05\x58\x1a\x0b\x0e\xf4\x88\xf8\xa7\xe2\xf8\x54\x89\x56\x69\xc6\xf2\x06\x09\x6f\xa0\x56\x15\xd0\xe7\x9a\x0c\xb8\x53\xd0\xe4\x42\x8b\x9e\xb3\x4f\xfb\x46\xaa\xc9\xb7\x5b\x8d\xc8\xae\x9e\x88\x3e\x2e\xa6\x64\x48\xd0\x4e\x1a\xc8\xbe\x45\x7b\x44\x48\xb5\x10\x52\xf5\x76\x2c\xc4\x8e\x9e\x36\x16\x21\x7d\x2f\xa4\xce\xbc\x05\xc8\x81\x4f\x49\x74\x4c\xf4\x52\x1f\xd1\xf2\xfa\x90\xe9\x82\x48\x49\x5c\x8a\xf1\x3f\xb5\x78\xf0\xa2\x77\xbe\x16\x17\x01\x2d\x2e\xd0\x0d\x4c\x1a\xe4\x8b\x62\x57\xc1\x7a\x74\x55\x63\x2c\x83\x7c\xb5\x41\x1e\xb7\x1a\xf6\xf4\xa2\x34\x9e\xa8\x15\xc7\x9a\x3a\x79\xec\x53\x2b\x90\x03\x1a\x92\x08\x1b\x92\xd7\xb8\x5f\x63\x9f\xb8\x66\x3f\x99\x3d\xb3\xd8\xb2\x67\x1e\x87\xd8\xc3\x57\xca\x45\x5d\x8a\x53\xff\x19\x66\xcf\x44\xda\xa7\x42\xd8\xa7\xd0\x39\xf4\x56\xcf\xf4\x8b\x61\xc9\x9e\x98\x25\x98\x2e\xa9\xa9\xb9\x59\x0e\x6c\xac\xb8\x23\x15\xa5\x13\x1e\x3f\x24\x00\x57\x62\xfc\xc2\x57\x24\x06\xbc\x49\xa2\x3e\xd1\x57\xf3\x23\xe2\x8a\x91\xdf\x57\x61\x8d\x0a\x0c\x8b\x87\x09\xf2\xc6\x74\x94\x74\xa3\x03\x02\xb0\x47\xd4\x90\xb5\x38\xf7\x78\x60\x90\x0c\xac\xcd\xe9\xe3\x81\x32\x29\xad\xd5\xe9\xe1\x81\x06\x3b\xb2\x76\x67\x9b\xd9\x01\x06\xe9\x38\x96\x24\x5f\x09\xf2\x2e\xa2\x91\xf4\x4c\x15\x23\xc9\x35\xab\xe5\x85\xa6\xe8\x00\x14\x80\xaa\x59\x4b\xc7\x53\x6f\x58\xf2\xc9\x83\x31\xe0\x33\x22\x29\x98\x13\x6d\x24\x42\x9c\x7a\x0b\xf7\x84\x9e\x39\xfb\x67\x60\x15\xab\xa3\xbd\x4e\xaa\xb9\xfc\x5d\x20\x7c\x0e\x9d\x33\x6d\x12\x79\x90\x11\x51\x37\xcd\xed\xa5\xa3\x0d\x7a\x57\x31\xc1\x67\x00\x87\x86\x83\x57\x32\x46\x89\xa7\xd9\x57\x27\xca\x75\xd6\x8d\x1e\x09\xc0\x52\xf0\xff\x29\x3b\x31\xa1\x15\x7d\xc4\x03\xab\xec\xc8\x38\x78\xba\xc4\x03\x8b\xac\x69\xc2\x2b\x3a\xc7\x03\xb3\xec\xd9\x8a\xf2\x01\x0d\x00\xdd\xa7\xc6\xee\x37\xd3\xae\x8e\x82\x38\x5b\xa6\x4d\x2a\xcd\x5f\x8f\xa8\x8b\xa9\x71\x9e\x52\x6e\x71\x8e\x05\xce\xa3\xd4\xdc\x22\x6e\x66\x03\xa4\x91\x87\x99\xd5\x16\x31\xe4\x34\xf2\x00\x0f\xec\x67\x4e\x23\xf7\xf0\xc0\x6e\xe6\x34\x72\x07\x0f\x3c\x67\x4e\x23\xd7\x68\x40\x1e\xc3\xf0\x39\x29\x33\xb0\xe1\x5c\x7a\x33\x8d\xc5\x0c\x19\x25\x7f\x44\x76\xc8\x04\x65\x25\x41\xc0\x63\x0a\x70\x2c\x94\x8d\xee\xc6\x28\xdc\x34\xf1\xcd\x6e\x4d\xe9\x58\x40\xc1\x5a\x00\xbc\x24\x2a\x6e\x65\x22\xc8\x74\x7a\x65\xe6\x5c\x23\x43\x67\x60\x03\x52\xb7\x0d\x74\x8a\xcd\xb1\x01\x8e\x49\xf8\x1c\x0e\x53\x2c\x24\x02\x04\xe5\xe9\x73\x21\xe7\xd8\x9f\xc3\xbd\x00\xca\xe8\xfc\x54\x99\x3b\xad\xf3\xb5\xf3\x16\x1f\xa5\x35\xd3\x31\x9e\xe7\x75\x79\xc8\xeb\xfa\x1b\xf9\x7e\x29\x3b\x22\x67\x1a\x48\xdb\x27\x4e\x8b\xd8\x3d\xed\x11\x13\xed\xf0\x64\x40\x1b\x46\x26\xac\x5f\x19\x29\xe9\x89\xd1\x23\xd6\xab\x8c\x34\xc8\x91\x51\x24\xb6\x4d\xf0\xc8\x09\xd9\x35\x1c\x61\xc7\x78\x44\x46\x55\x23\xea\x65\x08\x2e\xbf\x28\x6c\x98\x5b\xbd\xd3\x2d\xa0\x2b\x3a\x66\x28\x75\x78\x7b\x04\x1e\x4a\x15\x82\x71\xa7\x22\xa6\x0d\x26\x5a\x65\x15\x86\xa5\xb9\x0b\x0e\xb3\xb6\x0d\x3c\x53\x8e\xc0\x99\x0d\x3c\xd3\x14\x81\x13\x1b\x78\xa6\x28\x7a\xcd\x62\x1b\x78\xa6\x28\x7a\xcd\x3a\x8b\xd8\x6d\x5a\x70\xa9\x10\x07\x44\x0c\x34\x8c\xc1\x12\xb4\x58\x70\xfb\xc4\x98\x2b\x41\x8b\x05\x8b\xcb\xac\x37\x4d\x11\x38\xd9\xb5\x9b\x32\x04\x3e\x1d\xa2\x4d\x51\xa6\x99\x9d\xda\x04\x34\x45\x99\x66\xd6\xb1\x09\x68\x8a\x32\xcd\xac\x6d\x13\xd0\x14\x65\x9a\x59\x66\x13\x50\x41\x8b\x4d\x40\xa9\x4a\x40\x6b\xd7\xd7\x5d\x35\x93\xa0\x4c\xb1\x6c\x0b\x9d\x80\x8c\x65\x26\xda\xad\x02\x2b\x37\xb5\xab\xad\xc4\x4a\x05\x01\x7d\xad\x53\x02\x41\x5c\xe0\x52\x52\xa5\xf3\x5f\x5f\x15\xf9\x06\x55\x54\xee\xc5\xcd\xf3\x0e\xc0\x03\x07\xe0\xf2\x00\x21\xc4\x9a\xa5\x49\xd5\x49\x75\x7a\xfd\xf7\xd6\xe9\xf9\x86\xa6\x3d\x23\x26\x46\xe5\x73\xb2\xbf\x31\x7f\x71\x26\xb7\xaf\xe3\x61\xb6\x22\x52\x6c\xfa\xda\x9a\x79\xed\x27\x02\x3a\x6a\xe4\x6b\xb2\x0a\xd5\x0b\xf8\x80\x06\x08\x59\x38\x42\x96\x6f\x26\x44\xba\x54\xd6\x08\x52\xa2\xb7\x54\xee\xea\x88\x56\x09\xd9\x11\x84\xe4\xcf\x21\x42\x66\xd4\x71\x84\xbe\x95\x90\x07\x49\xc8\xd1\x4b\x84\xec\x48\x42\x9a\x1e\x21\x8f\x92\x23\x2b\x79\xa3\x74\x78\xa7\xe9\xd0\x79\x3c\x6f\x71\xde\x8b\x9f\xde\x48\x87\x38\x0a\x5b\x28\x8f\x12\x26\x43\x99\xd4\xa9\x47\x46\x5f\xf2\xa3\xa4\x48\xd3\x34\x19\x63\x66\xd9\x31\x61\x3f\xaa\x20\xfd\x80\x82\x2c\x98\x55\x90\x25\x0b\x28\x08\x97\x05\xa5\x47\xb9\x4a\x51\x8d\x31\xd5\x34\xa0\x37\xfe\xa1\xce\xb4\x9b\x70\x54\x68\x8f\x9c\x9f\xc8\xcb\xaf\x63\xfd\x90\x4f\xf4\x52\x5f\x06\x69\xf9\xf6\x29\x28\xd1\x09\x66\xf8\x5e\x6a\xd7\x02\x28\x9e\x14\x57\x3e\x6d\x2e\x5a\x79\xe1\x8d\x2c\xc6\xd4\x42\x65\x7a\x23\x65\x2c\x29\x4a\x82\x21\xb7\xf8\x4b\xc1\x04\x69\xd2\x5f\x66\x5a\x8d\xa4\xb4\xe9\x35\x5a\x55\xc7\xfc\xf4\x73\xd8\x0f\x06\x22\xf1\x40\xe6\xca\x64\x54\xff\xa6\xf8\xa9\xdd\x41\x09\x15\x2f\x9c\xaf\x6b\x77\xac\x1f\xe5\xc8\xbd\xb6\xdb\xd6\x8f\x72\xe4\x5e\xdb\x99\xf5\xa3\x1c\xb9\xd7\x76\x62\xfd\x28\x67\x5e\x01\xe7\x91\x01\x2c\x65\x4a\x34\xc6\x89\xd0\xc8\x26\x15\xfb\xc4\x17\xb0\x4a\x3b\x0e\x5d\x02\x16\x94\xb5\x52\xd3\xce\x57\x93\xdc\xe7\x97\xf5\xea\x00\x93\xe5\xb2\x35\x05\x58\x13\x5d\x4f\xf5\x82\x48\x75\x9b\xf4\x5a\x43\x62\x17\x9b\x90\x27\x12\xad\x63\x97\x20\xfc\x60\x36\xdf\x99\xd9\x62\x47\x3e\x27\x9b\xb2\xf9\x1d\xa9\x99\x1c\xe8\xe9\x5b\x32\x3b\x75\x57\x7a\xd4\x38\xc7\x9b\x1f\x4a\xc7\x76\xa8\x0c\x34\xd4\xed\xf9\x91\x89\x0f\x0c\xe0\x51\x4a\x70\x6a\x72\xa9\xce\x33\xd5\x45\x34\x9e\xef\x08\x09\x06\xab\x5c\x5e\x51\x84\x03\xab\x5d\x36\x0e\x45\x8d\x8d\x1c\xda\x25\x89\x0e\x13\x21\x9e\x42\x5c\x91\xda\x9c\xbc\x24\x51\x3f\xf9\x91\x82\x4d\x01\xac\x24\xd1\x5e\x22\x44\xd7\x15\xc1\xab\x17\xcb\x74\x43\xb1\x4c\x37\x14\xcb\x74\xa1\x5a\xba\x92\xcb\x77\x85\x30\x3c\x09\x76\x71\x09\x4b\x31\x4e\xc0\xa6\x35\x66\x15\xb2\xd6\x76\x98\xe8\x2d\x13\x74\x1d\xcc\xa4\x59\x6d\x52\x57\x72\xd8\x3b\x65\x37\x14\x6d\x77\x5d\x26\xd2\x79\x66\x67\x46\x6c\x87\xc2\xb9\xac\x13\xa1\x7f\x85\xd0\x3f\xcf\xe2\x49\xab\xbf\xb9\x82\x84\x61\xc6\x63\x74\x06\xc9\x17\xb3\xfa\x24\xd9\x27\xd1\x28\x51\x9e\x22\xcf\x82\x15\x90\xcd\xab\x77\xf6\x13\x7b\x79\x0e\x92\x15\x16\x8c\x46\xfd\x78\x23\x69\x97\x47\xa6\xbe\x5d\x2d\xa0\x7b\x13\xad\x33\x19\x25\x74\xa5\xad\xf0\x02\xb6\xae\x30\xc6\xc6\x1a\xa2\xeb\x95\x4f\x69\xf4\x40\x75\x74\xe1\x6c\xcc\x4f\x29\xc1\x30\xe0\x0b\x55\x4b\x39\x6f\xf1\xf6\x10\x15\x45\xf8\x08\x15\x2c\xda\x43\x57\x14\xe1\xf7\x78\x60\xe0\x8a\x22\xbc\x8f\x07\x4a\x57\x14\xe1\x3d\x3c\xd0\x48\x6d\x51\x84\x6f\xa7\xc1\xa2\x48\x67\xe1\x8a\x22\xf9\x63\xda\xa4\xd1\x36\x93\xc6\xbb\x68\x2f\xb2\x85\xab\xf9\xf3\x65\x76\x69\xab\x11\x62\xc8\x3a\x8d\x39\x1e\x98\x65\x33\xeb\x36\x1e\xf0\xc0\x34\x9b\x5a\xc7\x31\xc1\x03\x63\xe1\x51\x34\x8d\x23\x34\x00\xb4\xe1\x2a\x1e\x9d\xdd\xd4\x55\x3c\x8a\x9b\x32\x8e\xd6\x32\xf6\x62\x1d\x28\x9d\x5b\xcb\x69\xd7\x66\x53\x1d\xb0\x6e\x2d\x07\x04\xa6\xd6\xad\xe5\x31\x02\x33\xeb\xd6\xf2\x04\x81\x53\xeb\xd6\xf2\x0c\x81\x63\x94\x1e\xe6\xac\x2b\xab\xa3\x3b\x72\x60\x60\x37\xa5\x08\x0c\xa5\xdd\x14\x10\x58\x9c\x50\x6f\x1a\x23\x30\x6b\xda\x4d\x13\x04\x4e\xa6\x68\xd3\x14\x51\x93\xb8\x93\x32\x4c\xa4\x3b\x69\x85\x2f\xee\xa4\x15\xbe\xb8\x93\x22\xbe\x00\x2b\xe3\x68\x8f\x02\x4c\x48\xb8\xca\x01\x90\x8f\x49\xb4\xad\x84\xe1\xa2\x99\xd3\x33\xae\x3f\xb1\x14\xa7\x2b\xec\x07\x6e\xe5\x52\x00\x45\x49\xa5\x3f\xaa\xce\x8a\xc1\xcc\x62\xe3\xd0\x2c\x71\x3d\x1f\x6b\xb3\x4e\x41\x85\xed\xac\x38\x2b\xbd\x59\xf7\x72\xd6\xae\xaa\xf4\x99\x6f\x8b\x46\xa9\x4e\x9b\x84\x9b\x0f\x77\x45\x4f\x44\x27\x0f\xaa\xfa\xca\x3c\xd3\x6a\xaa\x1b\x0b\xec\x36\x4d\x58\x78\x5d\x4f\x6b\xe5\x47\xb8\xf0\xd7\xc5\xbf\x52\x28\x51\xf6\xe6\xb4\x69\xbf\x85\xb2\xe2\x90\x36\x49\xbd\xc2\xc6\x06\xaa\x26\x5d\xa8\x18\xd5\x0b\x9a\x5a\x40\x67\xf1\x33\x2e\xdb\x39\xa3\x6a\x0e\x73\x87\xd8\x77\x66\x38\xd6\xa8\x99\x4f\xaf\xc0\x87\xe8\x0f\x21\xd6\x2a\x70\x02\x31\x58\x09\x74\x96\x75\x6d\x25\x71\xf4\x03\x9c\xf2\x52\x0b\x21\x87\x92\x08\x3d\xe8\x11\x15\xd5\x7b\xbb\x0a\x04\x15\x33\xca\xec\xe0\xd4\xcf\x7c\x64\xd4\x5f\xcb\x57\xea\x71\x9f\xfa\xea\xda\xba\x05\x6a\x36\xf2\x1c\x92\x40\xb8\x41\xfb\x78\xde\x50\x0c\x5f\xb7\xee\x09\x50\xa3\xa3\x6f\x27\x74\x63\x95\x56\xd2\xe1\x44\x6c\xea\x30\x95\xef\x0a\xe6\x44\x9f\xe5\x5f\x55\xd8\x9f\xe1\xca\x4e\xb0\xae\xeb\x45\x93\xf2\x08\x7b\xd2\x90\x57\xe7\x8f\x69\x25\xb3\x91\x60\x71\xb6\xc6\x06\xe6\xd9\xc3\x0f\x48\xab\x47\x80\xd6\xf3\x28\xa6\xfb\x3c\xbe\xbe\xfd\xa8\x8e\x58\x03\xfb\x1a\x3c\xbe\xcb\xe7\x0c\xec\x02\x5d\x0f\xa9\xcb\x82\xb4\x19\x69\xcd\x09\xd0\x25\x09\x67\x5e\xfa\x8b\x7c\x9f\xe8\x62\x0c\xbd\xa9\x18\x8c\x91\x08\xe6\x65\x26\x38\x8b\x91\x4e\x6b\xb0\x3c\x7a\x5c\x49\x21\xf1\xe4\x09\x05\x18\xc9\xc9\x0b\x3c\x59\x83\x5b\x00\x7c\x18\x4b\xe3\xbc\x2d\xec\x20\x6b\x60\x0d\x72\x27\x36\x72\xbc\x40\x27\x36\xb0\xcf\xe1\xdb\x5b\x4f\xb3\x45\x04\xeb\x5a\x43\x6a\xdf\xb6\xe8\xc5\x86\x3b\xb3\xa4\x40\x1f\x25\xc6\x94\x56\x54\xc6\x28\xd2\xb4\xaa\x32\xda\x5e\x03\x2f\x75\x6f\x10\x08\xf1\x61\x06\x79\x07\x53\x77\xab\xb2\x4d\x58\x42\x22\x38\x5a\xcb\x35\x66\x04\xb5\x20\xd9\x5e\x00\x91\x81\xe3\xae\x13\x07\x16\xbe\x4c\x7a\xe9\xaa\x4a\xa2\xc2\x35\x06\xeb\xcf\xea\x7d\x5a\xbd\x1a\xcf\x54\x1a\xbd\xb5\x7f\x35\x66\x54\x28\xc3\x71\x2c\x88\x3f\x8a\xe5\xc9\x44\x86\xa4\xeb\x3e\x46\x13\x0e\x62\x80\x83\x58\xc1\x9d\xc4\x34\x54\x58\xd1\xb6\x12\x7d\x6d\xe2\x52\x64\xe7\xcc\x9f\xa8\xa1\x0c\xe8\x6e\xe7\xaf\x4f\x0c\x93\xfa\xda\xc4\xf1\xa6\x1d\x45\x1a\xfa\x50\x9b\xa8\xa1\x82\xb1\x7f\x83\xd4\x54\x45\xed\xde\xc4\x39\x03\x98\xd7\x26\x6a\xa8\x30\x30\x1d\xf5\xe5\xed\x87\x49\x5d\xfd\x8d\x89\x61\x52\x5f\x9b\x58\xfe\x74\x52\x27\x0c\x60\x52\x9b\xa8\xa1\xe2\x16\xfd\x3a\xa4\xfe\x65\xae\x6e\xc7\x00\xdb\xb5\x6b\xa5\xa1\xc2\x98\xe4\xbf\x0c\x57\x5f\x9b\x78\xb2\x89\xd4\x11\x03\x18\xd5\x26\x6a\xa8\xba\x8f\xbf\x0a\xa9\xc7\x31\xc0\x71\x4d\x1c\x1a\x2a\x6c\xe8\xa6\x89\xaf\xc9\x71\x3f\xff\xd9\x0a\xf0\x86\x1d\x7f\x32\xa9\xaf\x31\x67\xf8\xeb\x90\xfa\x0f\xe2\xea\x3b\xa9\x2f\x90\x7a\x18\x03\x1c\xd6\x26\x6a\xa8\xb0\x72\x3f\x5d\x57\xff\xb2\x05\x78\xc3\xc4\x77\x52\xdf\x49\xfd\x25\x48\xfd\xd7\x5b\x80\x7f\x3d\x57\x7f\x49\xbb\xca\x55\x87\x87\x37\xf1\x31\x06\x78\xac\x4d\xd4\x50\x80\x74\xbf\x2d\x12\xd7\xf7\x0c\xed\x3d\x43\x7b\xcf\xd0\xde\x33\xb4\xf7\x0c\xed\x1f\xe2\xf3\xde\x33\xb4\x7f\x0f\xae\xbe\x93\xfa\x9e\xa1\xbd\x93\xfa\x4e\xea\x7b\x86\xf6\x9e\xa1\x6d\xce\xd0\x36\x7e\xdd\x3b\xd7\x1d\x19\x83\x0d\x2f\xca\xf1\x97\x3d\xf3\x05\x14\xbd\x85\x06\xfc\x29\xf8\x48\x3e\xe0\x4b\x45\x22\x98\x6c\xca\x03\xfb\xc2\xf6\xaa\x0f\xbe\x6c\xc3\x71\x26\x44\x77\xae\xa4\x65\x2c\xfe\x79\xd3\x82\xde\xe1\xdd\x36\x8d\xec\xe5\x6d\xfc\x20\x4f\x6f\x4e\x9f\xbb\x0d\x86\x3e\xac\xd6\x9e\xb3\xca\x4f\xf5\xb5\xb6\xf0\x16\x00\xdb\x27\xe8\x2d\xff\xe0\x4d\xaf\x7f\xc4\xb4\x31\x69\xed\x10\xa0\x7b\x44\x73\xbe\xde\x06\xc0\xee\xa2\x7b\xfb\xc9\x7b\x40\xfd\x96\x45\x81\x51\x92\x57\x69\x0e\x36\x0a\x84\x3e\xf6\xbb\x2f\xd6\x76\xf9\xa9\x52\x9e\xa5\xd1\x24\xaf\xf1\x41\xa0\x0c\x54\xe7\xf2\xb1\x44\x69\x92\x60\xaf\x42\xa8\xbb\xfc\xad\x2d\x1d\xb5\xaf\xe1\x6a\x1b\x2c\x59\xa3\xbe\xcd\xea\xeb\x81\x83\x4b\x80\x83\x4b\xd5\x16\x73\x25\x3f\x42\xab\xce\x83\xb2\xf6\x04\x48\xf3\xfa\x35\x21\x06\x1b\x73\x82\x0d\x22\x41\x71\xbf\xb8\x81\x66\xe5\x5a\xb7\xbf\xc9\xa6\xe5\x47\x0a\xb0\x96\x8d\xc8\x2b\xea\xb7\x57\xca\x6e\x73\xbb\x24\xf7\x96\x54\x02\x64\xf2\xa5\xf7\x9a\x02\xec\xc8\x55\x9e\xa8\x2f\x1d\x1e\x90\x8e\x6c\xb4\xf6\x94\x66\xf3\x03\xdd\x50\x27\xa8\xd7\x5d\xc2\xab\x0f\xc6\xcd\x26\x03\xe2\x6b\x9c\xda\x05\x8b\x50\xb6\xc7\xab\xae\x80\x0a\x67\xf6\x88\xe9\xed\xae\x3f\xe1\x94\x64\xb9\x95\xcd\x03\xe5\x1b\x44\x42\xa1\x9b\xc6\x2a\x6f\x84\x55\x6b\x12\x03\xf6\xad\xca\x55\x6f\x79\x81\x71\x5d\xc5\x70\x3c\x90\x0b\x83\x7c\x67\x5c\xa1\x77\x49\x54\xcb\xa9\x6c\x87\xf0\x95\x8f\x09\xe5\x9b\x53\xf3\x6c\x60\x46\xc3\xdc\xf7\x1a\x3d\xd0\x53\x9e\x0a\xf5\x9f\xcd\x8d\x55\xed\xff\xaf\x2c\x65\xb8\x53\x6b\xb1\x02\x5a\x26\x77\xf6\xa1\xed\x45\xe0\x4d\x6c\x7a\xa3\x7e\x95\x65\xf3\x3b\x5c\x37\x47\x3f\x73\x10\xee\x8d\x01\x6c\x4b\xb3\xf0\x94\x06\xef\xbb\x83\x5d\xaa\xfe\x1a\x97\x89\x8b\x4d\x9b\x89\x6d\x34\xbc\xae\xcf\x77\x4f\x7e\x05\xee\x49\x2c\xdd\x99\xb5\xb0\xda\x0d\x57\xf8\xa6\x25\xc6\x07\xe4\xff\x05\x37\xbf\x16\x67\xd7\x0d\x9c\x75\xab\xc3\x55\xa3\xfb\x77\xff\xe8\x88\xc7\x15\x3d\xba\xd4\x4f\x44\xb0\x82\xf7\x15\x82\xb2\x12\x7b\x44\xbf\x22\xa8\xf5\x63\x83\x7d\xc3\xff\x60\x5a\xb7\xbc\x97\x34\xaa\xbb\x0b\x3d\xae\x0e\xb5\xed\x55\x7a\x8f\x82\xed\x61\xa8\x11\x34\xd4\x74\x15\xec\xb2\x73\x40\xfd\xae\x4a\x1c\xd6\xc3\xd4\xcf\xb0\x2f\x6d\x4b\x97\x31\x14\x17\x63\x66\x1b\x5b\xcf\x97\x6c\x4c\x23\xd7\xf6\x55\x63\x93\x58\x65\x9f\x5a\xcd\xed\xb8\x55\x4e\x58\xd7\xf6\x5c\x9f\xf7\x93\x69\x8c\x0e\x62\x91\x06\x89\xfd\x7d\xa0\xf3\x49\xa2\xde\x98\x6a\x6e\x59\x9c\x23\xe6\x70\x7a\x49\x85\x1c\x8b\x33\x43\xeb\x3c\x26\x95\xdf\xe6\xb1\x38\x4f\x08\x67\x4f\xe0\xb8\x56\x56\x8b\xb3\xaf\x70\x84\xf0\xce\x8f\x93\x32\x78\xb0\x46\xea\xd6\xb9\xcf\xc2\x7b\x0d\x33\x87\xf3\x90\xa1\xdf\x3d\xfa\x1c\xbe\xda\x6f\x79\xee\xae\xdb\xe4\x70\x7c\xe2\xbd\x6b\x60\x01\x57\x13\x7c\xe4\xa5\x35\xcb\x35\x2c\x4f\x6b\x96\xcd\x6f\x80\x74\xdd\x70\xe8\x2c\xa1\xfd\x43\x3d\xce\xe1\xed\x9d\xe1\x09\x05\x34\xaf\xb4\x8f\xa2\x27\xc4\xde\x0b\x1b\xb1\xfa\x33\x41\xc6\x34\xd4\x82\x1b\x68\xe2\x1b\x5a\xbf\xa2\x18\xa2\x62\xba\x8b\xe7\xf6\x84\x38\xbd\x69\x8f\xa9\x54\x7d\xd3\x8c\x19\xea\x79\x54\x1c\xb8\x38\x69\xdf\x9b\x1f\xc5\x3a\xdf\x6e\x37\xaa\x9e\xd8\xc6\x31\xcf\xea\xb5\xde\x84\xe8\x13\xbe\xb0\xe0\x2c\xbf\xb7\xbf\xc2\x74\xbe\xcc\xbd\xdf\xbc\xd2\x48\x4f\x16\x89\x9d\xaf\xf3\xe6\x0b\xc7\xa8\x1c\x56\xcf\xde\xd5\x34\xcb\x2d\x0e\xda\x25\x45\xc1\xe8\xae\xc5\x6a\xa0\x3d\x7a\x9d\x66\x30\x3e\x9b\xe1\x50\x77\x6c\xa7\x0e\x3a\xf7\x8e\x8c\x51\x67\x4c\xab\x58\x2f\x87\x89\x42\x39\xb6\xa2\x0f\x5b\xf3\xc9\x72\xf6\xfd\x76\xbe\xf5\xc7\x6f\xff\xb9\xf5\xfb\xef\x8d\xf9\x62\x3d\xbc\x9d\x37\xfe\x7b\xb1\x9e\xde\xfe\x3e\xff\x3e\x9f\x6f\x45\x18\xbc\xba\x9a\xf5\xaf\xae\x87\xb7\xf3\xc0\xd8\xa8\xff\xd4\x1f\x87\x06\xa6\x57\xe3\xdb\x61\x68\x60\x7c\xb5\x0a\x40\xaf\x97\x8b\xc5\x24\xb8\xd0\xb0\x3f\x5f\x84\xe0\x77\x93\xd9\x28\xb8\xfe\x64\xd1\xbf\xeb\x7f\xbf\x5a\xf4\xc3\xeb\xad\xf6\xfe\x03\xa3\xd4\x31\xae\xaf\xe6\x9a\x0b\xff\x15\x7d\xd8\x1a\x5f\x8d\x14\xa3\xc4\x3f\x77\xfd\xe1\xed\xd6\x1f\xbf\x6d\x49\x14\x81\xf1\xe1\x7f\x3f\xfc\x5f\x00\x00\x00\xff\xff\x29\x54\x28\x3f\x5a\x4f\x00\x00") -func web_uiStaticBaseCssMapBytes() ([]byte, error) { +func web_uiV1StaticBaseCssMapBytes() ([]byte, error) { return bindataRead( - _web_uiStaticBaseCssMap, - "web_ui/static/base.css.map", + _web_uiV1StaticBaseCssMap, + "web_ui/v1/static/base.css.map", ) } -func web_uiStaticBaseCssMap() (*asset, error) { - bytes, err := web_uiStaticBaseCssMapBytes() +func web_uiV1StaticBaseCssMap() (*asset, error) { + bytes, err := web_uiV1StaticBaseCssMapBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/base.css.map", size: 18929, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/base.css.map", size: 20314, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticBootstrapMinCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5d\x8f\xe3\x38\x92\xe0\xfb\xfc\x0a\x4d\x35\x0a\xdd\xd5\x65\xa9\xe5\xcf\xf4\x07\x3a\x31\x7b\xb3\x8b\xbb\x01\x76\xf6\xe5\xe6\x61\x81\x9e\x3a\x40\x96\x68\x5b\xd3\xb2\xa4\x95\xe4\xac\xac\xf6\xfa\xbf\x1f\xf8\x1d\x24\x83\x92\xec\xca\x6a\xdc\x01\x33\x89\xe9\xca\x64\x04\x83\xc1\x88\x20\x23\x48\x91\xc1\x9f\x7e\xfc\xe3\x1f\x82\x1f\x83\xff\x51\x55\x5d\xdb\x35\x49\x1d\xbc\xcc\xa3\x69\x34\x0d\x7e\x38\x75\x5d\xbd\xfd\xe9\xa7\x23\xe9\xf6\x12\x16\xa5\xd5\xf9\x03\xc5\xfe\x73\x55\x7f\x69\xf2\xe3\xa9\x0b\x66\xf1\x74\x1a\xce\xe2\xe9\x22\xf8\xdb\xe7\xbc\xeb\x48\x33\x09\xfe\x52\xa6\x11\x45\xfa\xf7\x3c\x25\x65\x4b\xb2\xe0\x52\x66\xa4\x09\xfe\xfa\x97\xbf\x71\xa2\x2d\xa5\x9a\x77\xa7\xcb\x9e\xd2\xfb\xa9\xfb\xbc\x6f\x7f\x52\x4d\xfc\xb4\x2f\xaa\xfd\x4f\xe7\xa4\xed\x48\xf3\xd3\xbf\xff\xe5\xcf\xff\xf6\x1f\xff\xfb\xdf\x68\x93\x3f\xfd\xe1\x0f\x3f\xfd\xf8\xc7\xa0\xac\x9a\x73\x52\xe4\xbf\x91\x28\x6d\x5b\xca\x6a\x1c\xc5\xc1\x7f\x33\xda\xa2\xb9\xe0\xbf\x83\x63\xde\x45\x79\xf5\x93\xc2\x0d\x7e\xfc\xe9\xd4\x9d\x8b\xeb\xa1\x2a\xbb\xf0\x90\x9c\xf3\xe2\xcb\xb6\x4d\xca\x36\x6c\x49\x93\x1f\x76\xe1\xb9\x0d\x3b\xf2\xda\x85\x6d\xfe\x1b\x09\x93\xec\x1f\x97\xb6\xdb\x4e\xe3\xf8\xfd\x2e\xfc\x4c\xf6\xbf\xe6\x1d\x0e\xbd\xed\xab\xec\xcb\xf5\x9c\x34\xc7\xbc\xdc\xc6\xb7\xa4\xe9\xf2\xb4\x20\x93\xa4\xcd\x33\x32\xc9\x48\x97\xe4\x45\x3b\x39\xe4\xc7\x34\xa9\xbb\xbc\x2a\xe9\xaf\x97\x86\x4c\x0e\x55\x45\xa5\x74\x22\x49\x46\xff\x39\x36\xd5\xa5\x9e\x9c\x93\xbc\x9c\x94\xc9\xcb\xa4\x25\x29\x43\x6e\x2f\xe7\x73\xd2\x7c\xb9\x66\x79\x5b\x17\xc9\x97\xed\xbe\xa8\xd2\x5f\x6f\xc9\x25\xcb\xab\x49\x9a\x94\x2f\x49\x3b\xa9\x9b\xea\xd8\x90\xb6\x9d\xbc\xe4\x19\xa9\x14\x66\x5e\x16\x79\x49\x42\x56\x61\xf7\x42\x28\x57\x49\x11\x26\x45\x7e\x2c\xb7\xfb\xa4\x25\x14\xca\x09\x6d\xcb\xaa\xfb\xe1\x97\xb4\x2a\xbb\xa6\x2a\xda\x4f\x1f\x14\x89\xb2\x2a\xc9\xee\x44\xa8\x7e\xb7\xf1\xed\x97\x53\x9e\x65\xa4\xfc\x34\xe9\xc8\xb9\x2e\x92\x8e\x18\x78\xb7\xe4\xba\x4f\xd2\x5f\x69\x37\xca\x6c\x1b\x07\xf1\x2d\xd9\x26\x69\x97\xbf\x90\x49\xb2\x3d\x55\x2f\xa4\xb9\x56\x97\x8e\x36\x4a\x65\xb4\xdf\x37\xbf\x74\x79\x57\x90\x4f\xd7\x7d\xd5\x64\xa4\x09\xf7\x55\xd7\x55\xe7\xed\xb4\x7e\x0d\xb2\xaa\xeb\x48\x76\xdb\x4f\xda\xae\xa9\xca\x23\x57\xd7\x67\xce\xc6\x53\x1c\xdf\xb2\x43\xc9\xcb\xda\xee\x4b\x41\xb6\x79\x97\x14\x79\x7a\x3b\x4d\x45\x61\xfe\x1b\xd9\xce\xc8\x79\x27\x34\x12\xad\x9e\xc8\x39\x88\x6f\xe7\xa4\xf9\x15\xb2\xf8\xdd\xe1\x10\xef\xd2\xaa\xa8\x9a\xed\x77\x71\x1c\xdf\xda\x73\x52\x14\x80\xc4\x3a\x7e\x7f\x6b\x2f\xfb\x49\x7b\xa9\x41\xe9\xd3\xf2\xfd\x8e\xc9\x55\x8a\x65\x57\x57\x6d\x4e\x55\xb5\x6d\x48\x91\xd0\xfe\x7a\x85\x4d\x29\x75\x55\xbd\x0d\xa3\x25\x39\x53\xda\x57\xd1\xe9\x30\x9a\xd1\x92\xfc\x7c\x14\xd2\xd8\xc6\xb7\xf6\xe5\xc8\xf4\xb2\x6d\xaa\xaa\xfb\x70\xa5\x02\x3c\x14\xd5\xe7\x2d\x57\xc2\x8d\x1b\x91\xb4\xba\x29\x39\x07\x8b\xb8\x7e\xbd\x9d\x9a\x6b\x78\xae\x7e\x0b\xf7\xd5\x2b\xe5\x37\x2f\x8f\x5b\xaa\x57\x52\x76\xb4\x68\xe7\x29\x56\x2a\xae\x1b\xa2\x5b\x4a\x2e\x5d\x75\x4b\xab\x8c\x4c\x7e\xdd\x67\x93\xba\x21\x93\x36\x39\xd7\xc6\xe0\x39\x57\x65\xd5\xd6\x49\x4a\x26\xea\xb7\x9d\x96\xd5\x94\x9c\x6f\xfb\x4b\xd7\x55\xe5\x24\x2f\xeb\x4b\x37\xa9\xea\x8e\x9b\x79\x4b\x0a\x92\x76\x13\x3a\x9c\x92\x86\x24\x57\xae\x86\xbc\x3c\x91\x26\xef\x18\x05\xf5\x87\x1a\x57\x9c\x92\x66\xef\x25\x6f\xf3\x7d\x41\x64\x0b\x9c\xe4\x95\x8d\xd0\xae\x49\xca\xf6\x50\x35\x67\x6e\x99\x02\x83\x0e\xfd\x80\x31\xf2\x4b\xf7\xa5\x26\x3f\xf3\xe2\x4f\x13\x50\xd4\x90\x96\x74\x46\x49\x7b\xd9\x9f\xf3\xee\xd3\x55\xce\x00\x49\x5d\x93\xa4\x49\xca\x94\x6c\x79\xfd\x5d\x7a\x69\xda\xaa\xd9\xd6\x55\x5e\x76\xa4\x11\x8d\xfd\x92\xe5\x6d\xb2\x2f\x48\xf6\x09\x36\xab\x0a\xaf\xa2\x52\x46\x0e\xc9\xa5\xe8\x44\xa5\xed\x96\xe9\xee\x50\xa5\x97\x36\xcc\xcb\x92\x34\x9c\x13\xb7\x5c\x99\xc9\xae\x4e\xb2\x8c\xaa\x33\xbe\x31\xd4\x2b\xb4\x4d\x3e\xef\xdd\x40\x6f\xd2\x13\x49\x7f\xdd\x57\xaf\x66\xa7\x93\x2c\xaf\xe8\x38\x54\xb6\xa1\x86\xe4\xab\x4d\x9f\xd7\x28\x2f\xe7\x3d\x69\x3e\x6d\xb7\x52\x2a\x8c\xa9\xb0\xad\xf3\x32\x84\x0a\xf7\x60\x57\x97\xce\xc4\xbe\x0a\x86\x99\xc5\x41\xe1\x93\xa4\x49\x4f\xa8\xf0\xa9\x9e\x0f\x39\x29\xb2\x5d\x9f\xbd\xcb\x8a\x77\x0d\x07\x84\x03\xcd\x3b\x2f\x08\x53\xca\x44\x81\x74\xd6\x57\x21\x23\x69\xd5\x24\x74\x9e\xc0\x7a\xc3\xcc\x94\x75\xa7\x25\x9d\x54\x2e\x9d\x0a\xdb\xaa\xc8\xb3\xa0\xcd\x8b\x17\xd2\xa8\xa1\x10\xcc\x6a\xad\x98\x68\xbe\x24\xe7\x20\x5a\xcd\xd8\x3f\x4f\x74\x1e\x29\xc8\x91\x94\x19\x66\x23\x6a\xc0\x99\x83\x5c\x8e\x4b\x67\xa6\xed\xa8\xb9\xca\x19\x3a\xad\x8a\x22\xa9\x5b\xb2\x95\xbf\xec\x04\x80\x8e\x7b\x41\x3f\x9b\x74\xa7\xab\x6e\xef\x4f\x67\x92\xe5\x49\x50\x37\x79\xd9\x5d\x7f\xe4\x83\xb3\x3d\x25\x59\xf5\x99\x75\xf9\x8f\xf9\xb9\xae\x9a\x2e\x29\x3b\x30\x11\x83\x42\x30\x5b\xb3\x21\x5d\x27\x0d\x29\x3b\x88\x40\x15\x88\xd1\xbb\x25\x93\x84\xcd\x10\x1d\xc9\x78\xb3\x5a\x01\x5b\x16\x86\x70\xf7\xf7\xcb\xa9\x21\x87\x4f\xdb\xe4\xd0\x91\xe6\x2a\x6c\x60\xfb\x2e\xf8\xe1\x5d\x90\x74\x5d\xf3\x03\x85\x7e\x08\xde\x7d\x78\x07\x3d\x96\x17\x9b\x81\x05\x3a\x23\xfc\x7f\x7e\x7e\xf7\x8f\xe4\x25\x69\xd3\x26\xaf\xbb\xed\x3b\x51\x73\xa2\x80\xdf\xbd\x73\x88\xbd\xa3\x73\xf0\x84\x39\xed\xff\xba\x54\x1d\x71\x8d\xe1\xbb\xcd\x66\xb3\xab\x93\x23\x09\xf7\x0d\x49\x7e\x0d\xf3\x92\x06\x1a\xdb\xe4\xa5\xca\xb3\x5b\x47\xc3\x09\xe5\x97\x99\xfa\x42\x1e\x61\x84\x4c\xc3\xb7\xae\x99\x50\x37\xe3\xab\x4f\x61\xe7\xe4\x35\xfc\x9c\x67\xdd\x89\x45\x37\x40\xa6\xf5\xe4\x34\x9b\x9c\xe6\xd7\xaa\xa9\x4f\x49\xd9\x6e\xe7\xbb\xcf\x79\x56\x7d\x6e\xb7\xf3\x1b\x07\x00\xaa\xac\x5b\x82\xa8\x98\x9a\x4d\xdf\x7b\x00\x84\xa3\x32\x79\xd9\x27\x8d\x19\x4f\x44\x8c\xfb\xa0\xcb\x26\xf2\xb7\x13\x20\x11\x0a\x83\xb1\x08\xed\xbb\xf2\x39\x4a\x93\x86\x74\x93\x28\x6b\xaa\xfa\x52\x3f\x83\x32\x69\xc9\x5d\x55\x87\x98\xc1\xdd\xa2\x22\xd9\x93\x02\x91\x39\x0d\x10\xa2\xfe\xd1\x00\xc9\x70\xc1\x73\x4c\x92\x05\xdd\x69\xe2\x14\x65\x48\x2b\x59\x96\x01\x2a\xb7\x1f\xaf\xc8\xfc\x05\xe6\x66\x7b\xe6\x03\x20\xb4\xf4\xb6\xdd\x93\x43\xd5\x90\x89\x30\xba\x37\xa6\xae\x43\x6b\xe6\xfd\x57\xb3\x68\x09\x22\xe7\xa4\x0e\x4f\xf9\xf1\x54\xd0\xb9\x45\x08\xbf\x39\xee\x93\x1f\xe2\x09\xfb\xf9\xc0\xa3\x68\x18\x5c\xbc\xfb\x5f\xa4\x78\x21\x34\x92\x0a\xfe\x83\x5c\xc8\xbb\x89\xfa\x7b\xf2\x2f\x4d\x9e\x14\x13\x10\xba\x83\xa0\x63\x51\xbf\x1a\x11\xda\x34\x5a\xcc\xd6\xcb\xa7\xe9\x62\x2e\x27\x99\xf9\x7c\xbe\x43\x2d\x89\xcf\xfc\x13\x23\xa2\xd0\x41\x0a\xe4\x0d\x86\x2a\xbc\x5d\x59\x02\x9b\x16\x65\x37\x19\xe0\x7c\xb7\x98\xad\xf7\x69\xb2\xb3\x27\x24\x1e\x3f\xf3\x28\x79\x92\x6c\x99\xa3\x97\x55\x66\xc9\x6a\xb1\x59\x39\x55\xc0\x1c\x26\xf0\x65\x74\xdd\x9d\xf2\x52\x84\xd0\x3b\x59\xb6\xac\x5f\x03\x3a\xd3\x07\x52\x1d\x3c\x96\x68\xf2\xf2\xc8\xbb\x2f\x31\xc3\xea\x70\x68\x49\xb7\x0d\x67\xf5\xab\x15\x63\xc6\x6c\x72\xb0\x62\xdb\x73\x9e\x65\x05\xb9\x45\xf9\xf9\x18\x36\xa4\xad\xab\xb2\xa5\x11\x7f\xd4\x9d\x2e\xe7\x7d\x99\xe4\xc5\x73\x7e\x3e\x82\x3f\x83\x84\x17\xa4\x49\x53\x5d\x5a\x52\xf0\xc8\xe1\x39\xca\x3b\x72\xee\x81\xb0\x5a\xe6\x1a\x68\x67\x4e\x53\x3b\x18\x42\x70\x76\xa8\x72\x89\x1c\x66\x21\x8d\x72\x2e\xed\x76\x55\xbf\x72\xb0\x62\x49\xb9\xab\x1e\xc3\x41\xad\x65\x87\x0e\xe0\x9d\xd9\x1e\x25\xaa\xc6\x00\xf5\x61\x7c\xad\x90\x14\x45\x10\xcd\xda\x80\x24\x2d\x09\xf3\x92\x86\x44\xbb\x01\x30\xba\xae\x1b\x12\x42\x9a\x37\xa9\x9e\xb3\x04\x4f\xcb\xf8\x3d\x5d\x28\x70\xbd\xd2\xc9\x70\x3b\x8b\xeb\x57\x11\x5e\xc8\x85\x18\x2b\x52\x21\x84\x9e\x38\x61\x77\x09\x21\xb7\xa8\x6d\xc2\xaa\x2c\xbe\x5c\xd5\x3a\x28\xd9\xb7\x55\x71\xe9\xc8\x4e\x30\x56\xab\x05\xc6\x54\xb5\xb2\x0d\xa7\x20\x86\x89\x77\xd6\xf2\x66\x97\x16\x79\xbd\x6d\x48\xda\xa9\xf9\x41\xf1\x72\x3b\x4d\xb9\x1f\x9a\x9c\x16\x93\xd3\x72\x72\x5a\x4d\xa2\xd3\x74\x12\x9d\x66\x93\xe8\x34\x9f\x44\xa7\xc5\x24\x3a\x2d\x27\xd1\x69\xe5\x1f\xb1\x22\xc4\x59\xc6\xb1\xa5\xf1\xe9\xce\x58\x8a\xdc\x4e\xd3\x80\xad\x0b\x27\xa7\x99\xfc\x65\x2e\x7f\x59\xc8\x5f\x96\xf2\x97\x95\xf8\x25\x52\xd5\x22\x55\x2f\x52\x15\x23\x55\x33\x52\x55\x23\x55\xf7\x34\x0d\x22\xd5\x64\xa4\xda\x8c\x54\xa3\x91\x6a\x35\x52\xcd\x46\xba\xdd\x48\x37\x1c\xe9\x96\x23\xdd\x74\xa4\xdb\x8e\x74\xe3\x11\x58\xfe\x0a\xe9\x2c\x6c\xe9\xc8\xf9\x73\xb3\xd9\xdc\x98\xc4\x99\x22\x22\xae\x8c\xe8\x34\x1f\xb0\xa8\x29\x5b\xa0\x4e\x1d\x19\x01\x11\x39\x42\xd6\x52\x83\x5d\x43\x44\x14\x61\xd2\xd2\x3d\x87\x7e\x69\xf9\xfe\xc6\x6c\x84\x59\x4f\x24\x2d\x68\x05\xb9\x9f\xfa\xb8\x5f\x38\x3a\x04\x2a\x44\xec\x60\x15\xd8\x7a\x8b\x30\x15\x46\xb8\x36\x57\x2e\xf7\x4f\x94\x7b\x26\x7b\x50\x38\xa7\xb3\x1a\x57\x05\x2c\x65\x1c\x73\xcd\x80\x9d\x91\x05\xeb\x07\xe5\x03\x94\x4e\xd7\xb4\x94\x89\xe3\x6a\xfa\xd2\x9b\x90\x0e\x28\xa5\xbe\xa1\x56\x6e\x21\x88\x03\x26\x9b\xa8\xa0\xa1\x27\x32\x89\x80\x9a\x2b\xf9\xa7\x30\xb1\x99\x33\x00\x17\x72\xcd\xf0\xc3\x39\x2f\xc5\xd4\xf6\xb4\x5a\xd7\xaf\x1f\xae\xbc\x01\xd0\x93\x69\xfd\x7a\xbb\x09\x59\x39\xbb\x37\xcb\xf7\xb7\x34\xef\x08\xdc\x28\x12\xeb\xe1\x88\xf9\xd2\x82\x1c\xc4\x6e\x01\xf7\x64\xf4\x6f\x01\x62\x1b\x9a\x10\xc6\x0a\x04\x30\x25\x74\x99\x0f\xa1\xbc\x44\x80\xff\x71\x69\xbb\xfc\xf0\x05\xc2\x45\x91\x40\x38\x5f\xe8\x92\x04\x8c\x24\x5e\x5c\x37\x39\xdb\xe7\x33\x02\x85\x5b\x62\x00\xc5\x36\x9a\x8c\x62\xe2\xa7\x69\x22\xab\xb7\x97\x34\x25\xad\x0a\x1a\xe6\xe9\xd3\x6a\x9e\xc9\xea\x02\x68\x56\x9f\xed\x97\x8b\x59\x2a\xaa\xe7\xe5\xa1\x52\x75\xa7\x4f\xf1\xfa\x20\xeb\x52\x88\x55\x71\xb1\x9c\xad\x64\xbb\x9f\x93\xa6\xcc\xcb\xa3\x84\xad\x93\x55\x36\xdf\xcb\xba\x02\x68\x56\x5f\xad\x96\x53\xd5\x6e\x96\x94\x47\x0d\x4a\x36\x8b\xc5\x62\x26\x6b\x73\x98\x59\x79\xbd\x98\x2f\xe7\x8b\x5b\xb4\x3f\xda\x02\x63\xfe\xd8\xf1\xd2\x4a\x8c\xba\x82\x20\xe8\xe2\x4a\x79\xee\x8f\x4a\x9a\x2e\x52\x76\x38\xc4\xd9\x9a\x13\x34\xc5\xea\xe2\xa6\x53\x32\xdb\xcf\x19\x41\x26\x5f\x84\xda\x86\x64\x87\x27\x4e\x0d\x08\xda\x45\x4c\x0e\xd9\x86\xfa\xda\xfd\x51\x49\x1c\x09\x49\xd2\xc3\x9a\xcc\x39\x35\x53\xf4\x08\xee\x13\x49\xf7\x4b\x46\x50\xe8\x00\xc1\x99\x65\x24\x23\x9c\x9e\xa1\x0c\x17\x95\x2c\xf6\x9b\xfd\xe6\x16\xb1\x05\x20\x5f\x6f\xca\xb0\x4a\x4e\x05\x1b\xed\xfb\x17\x71\xfd\x1a\xc4\x01\x88\x30\xe0\xee\x2f\x88\x2d\x2e\xc5\xa4\x2a\xe0\xbc\x1c\x63\x93\xf2\xa5\x08\x18\x22\xfd\xef\xa5\x08\x2a\xf6\xbb\xae\x27\x50\xe3\x5b\x54\xe4\x6d\x17\x5e\x4a\x36\x19\x64\x8a\x3f\x3a\xf0\xb7\x74\x1a\x6a\xf5\x3c\x41\x97\x9f\xac\x80\x07\x5b\x03\xb8\x92\x29\x06\x0d\x97\x6c\x2e\xd4\x95\x9f\x8b\x1c\xdf\x93\x37\x88\x2e\x75\x38\xc4\xe7\x1f\x5a\x72\xcb\x7a\x7b\x4f\x05\x78\xcb\xba\x49\x96\x5d\xf1\xb8\xf5\x96\x75\xee\xe6\xb9\x9a\xa3\x79\x67\x7a\xe6\xdb\xac\x08\x4f\x55\x93\xff\x56\x95\x5d\x52\x04\x94\x56\x51\x25\x1d\x9b\x29\x65\x6c\xb7\xa2\x3a\x4c\x0b\x92\x34\xbc\xd8\x9e\x34\x9d\xc0\x8e\x21\xa8\x42\x52\x14\x79\xdd\xe6\xed\xee\xf3\x29\xef\x08\xdb\x48\xa2\x22\xfd\xdc\x24\xf5\xcd\x6e\xde\xe4\x7b\xba\xa6\x9d\x87\xdb\x32\x13\xf6\x7b\x96\x74\x49\x58\x35\xf9\x31\x2f\x93\x22\x14\x9f\x18\xc4\x6e\xeb\x89\x14\x35\x62\x70\x7c\xad\x14\xf0\xc9\x38\x2f\xf3\x2e\x4f\x8a\xbc\x3d\x03\x67\xb2\x89\xdf\xef\xac\x8d\xe5\x4b\x5d\x93\x26\x4d\x5a\x72\x03\x7b\x35\x32\x9e\xa5\x66\x19\x80\x08\x88\x39\x49\xdb\x17\x3e\x45\x4b\x6d\xff\xd2\x06\xa0\xf5\x6b\xc2\x41\xbd\x2d\x92\xb6\x0b\xd3\x53\x5e\x64\x60\x73\x28\xb8\x14\x1e\x40\x05\x01\xce\x48\x00\x88\xe2\x2b\x14\x28\xe1\x0e\x15\x14\x08\xdf\x6a\xae\xbe\x8c\xef\x24\x03\xeb\x6d\x2a\x58\xa7\x49\xb9\x17\x61\xb7\x8c\x94\x47\x10\xa0\xb6\xca\xbe\xff\x3b\xfb\xda\xf8\xf7\x38\xfe\x97\xf8\xfb\x5b\xa4\xf1\xc3\x86\xbc\x90\xa6\x85\x24\xa2\xfa\x52\x14\xc2\xaf\x9b\xa3\x6c\x0a\x07\x9e\x18\xde\x72\xb5\x24\x87\x21\x50\x8a\xa1\xaf\xd8\x31\x77\x8c\x0d\x6f\x7f\x01\x53\x16\x0e\x46\xc5\x23\x1c\x48\xc4\x40\xc1\x68\x44\x23\x88\x78\x84\x8d\x4a\x58\xb2\xcd\xb7\x35\x7b\x7b\xc6\x51\xfc\x1d\xeb\x23\x01\x31\x7a\xba\xd5\x47\x02\xa2\x00\x0b\xa2\xb6\x13\x30\x3b\xfa\x1e\x58\xa8\x2b\x20\x77\x97\x36\xc9\xb2\x86\x86\x08\xde\x78\x17\x44\x9c\x9e\xe1\x31\xf0\x6d\xed\xaf\xa4\x2c\xaa\xc9\x5f\xab\x32\x49\xab\xc9\x9f\xab\xb2\xad\x8a\xa4\x9d\xbc\xfb\x73\x75\x69\x72\xd2\x04\xff\x41\x3e\xbf\xd3\x5f\xdd\x18\x2d\x35\xff\xcc\xea\xd7\x60\x61\xcc\x36\x74\x06\x93\x61\xc9\xd3\x6c\xb9\x20\xd8\x96\xc6\xe6\x30\x3b\x2c\x90\xa9\xd8\xdd\xd2\xb8\xfd\xba\xcf\xc6\xb5\x86\xc7\x65\x6c\x07\xce\x20\x3a\xaf\x5f\xe1\x6e\x7e\x5e\xb6\xa4\x0b\xe2\x20\x9c\xb2\x50\x01\xec\x14\x46\xb3\xe5\x07\xf6\x9d\xd2\x9c\x8f\x24\x33\x1b\x36\xab\x5a\x6b\x13\x38\xed\xce\xfd\xbb\x3c\x9f\xab\x26\xe3\xdb\xd7\x5b\xb1\x89\x5d\x14\xbc\x90\x4a\x41\x94\xd1\xbf\x07\x36\x12\x97\xf4\x07\xd9\x1d\x4a\xd3\x14\x11\x65\xdd\x90\xc0\xd0\x5e\x8c\xec\x2a\x9a\x1f\x48\xa1\x8a\xea\x86\x84\x5c\x49\x36\x23\xe0\x93\x89\xd5\x6c\x7c\x8b\x68\xb5\x36\x6d\xaa\xa2\x60\x9b\xda\xe7\xe4\x55\x0a\x64\x4e\xc3\x33\xe5\xb7\xc3\x2f\x5b\x8e\x76\x8b\xa8\xf5\x27\x79\x49\xd4\xce\x51\xa3\x36\x9b\x8c\x08\x88\x15\x18\x53\xea\xd4\x8d\x6e\x68\x51\x4f\xe8\xa1\xdb\x12\xe5\x4b\xe6\xee\xdd\x0a\x9b\xcd\x0c\xad\xb0\x79\xf2\x54\x98\xce\xe2\x18\xad\x31\x9d\xf2\x2a\x1a\x10\x1e\x8a\x4b\x9e\xbd\x59\x6f\xa3\xa6\xfa\x6c\xc4\x30\xe1\x54\xdb\xaa\x40\x0c\x39\x66\x5a\x15\xe1\x6b\x1b\x4e\x27\xec\xb7\xf6\x2c\x7f\x3b\x67\xf2\xb7\xe2\x28\x7f\x7b\x6d\xc3\x99\xc2\x9b\x29\xbc\x99\xc2\x9b\x29\xbc\xb9\xc2\x9b\x2b\xbc\xb9\xc2\x9b\x2b\xbc\x85\xc2\x5b\x28\xbc\x85\xc2\x5b\x28\xbc\xa5\xc2\x5b\x2a\xbc\xa5\xc2\x5b\x2a\xbc\x95\xc2\x5b\x29\xbc\x95\xc2\x5b\x29\xbc\x27\x85\xf7\xa4\xf0\x9e\x14\xde\x93\xc2\x5b\x2b\xbc\xb5\xc2\x5b\x2b\xbc\xb5\xc2\xdb\x28\xbc\x8d\xc2\xdb\x28\xbc\x8d\xc2\x9b\xc6\x5a\xd0\xb1\x96\x74\xac\x45\x1d\x6b\x5c\xa0\x14\xa0\x15\xa0\x16\xad\x97\xa9\x56\xcc\x54\x6b\x66\xaa\x55\x33\x9d\x5d\xdd\xe3\x23\xd4\x56\xc1\x86\xe9\x38\xdb\x32\x2d\x46\xdb\x84\xd6\xba\xd6\xab\xd6\x9c\xd6\x8d\x96\xbe\x96\xaf\x96\x20\x90\x11\x10\x01\xeb\x21\x58\x14\xdc\x40\xa9\xde\x94\xd6\xa5\x53\x39\x36\xa7\xd1\x8a\xff\xef\x09\x40\x63\x01\x5d\xcf\xa3\xb9\xf8\x9f\x86\x6e\xd4\x3c\xa0\xcb\xd6\xa2\x6c\xb5\x42\xc8\x3d\x09\xe0\x72\x8d\x50\x5b\x49\x20\xe0\x6e\x29\xca\x16\x18\x73\x0b\x01\x9c\x63\xbc\xcd\x05\x70\x06\x78\x53\x02\xc0\x78\x93\x72\xc0\x58\x63\x31\xcb\x74\x76\x15\xba\x85\xf2\xe3\xa0\xa9\x00\xa1\x42\xe4\x28\xb1\x40\x41\x25\xc9\x50\x36\x02\x03\x8a\x93\x01\xd6\x02\x80\xca\x94\x61\x3c\x09\x0c\x54\xb0\x0c\x63\x25\x31\x6c\xde\x97\x02\x80\x8a\x98\x61\x2c\x04\x06\x2a\x67\x86\x31\x17\x18\x33\x9b\x73\x25\x32\x2f\xe7\x52\x72\x5e\xc6\xa5\xdc\x62\x50\xdc\x9e\xa8\x36\xf8\xd8\x33\x95\x41\x21\x53\x0e\xf1\xe8\x82\x62\xc4\x1c\xc3\xa3\x8a\xf6\x14\x6e\x38\x82\xa9\x89\xf6\x14\xae\x79\xb9\x47\x11\xed\x29\x7c\xe2\x08\x1e\x3d\xb4\xa7\x70\x25\x10\x6c\xae\x97\xbc\xdc\xa3\x85\xf6\x14\x2e\x38\x82\x47\x09\xed\x29\x9c\x73\x84\x99\xcd\xb3\x14\x94\x97\x67\x21\x2f\x2f\xcb\x42\x5a\x5a\x01\xfc\x73\x24\x55\x81\xb1\xf8\x87\x9a\x90\x28\x53\x03\x05\x55\x89\x44\x8d\x0d\x54\x54\x37\x02\x75\x63\x60\x42\x25\x09\x84\xb5\x81\x80\x6a\x4b\x60\x3e\x19\x98\xa8\xda\x04\xe6\xca\xc4\x74\xfb\xba\x34\x10\x50\x45\x0a\xcc\x85\x81\x89\x6a\x54\x60\xce\x0d\xcc\x99\xdb\x53\x4b\x05\x3d\x3d\x35\x35\xd1\xd3\xd1\x78\xf4\x56\x94\x19\x06\xe9\x40\x47\x87\x32\x3a\x58\xd1\xe1\x88\x0e\x38\x74\x48\xa1\x83\x06\x1d\x16\x00\xbf\x0f\xdc\x3a\xf3\xda\x8e\x7b\xe3\xa5\xb6\x7b\x63\xd5\xbc\xee\x8d\xd1\xf7\xba\x37\xca\x87\xed\xde\x28\x97\x5e\xf7\x46\x3b\xe3\x75\x6f\xb4\xcf\xb6\x7b\xa3\x12\xf1\xba\x37\x2a\x38\xaf\x7b\xa3\xf2\xb5\xdd\x1b\x95\xbe\xd7\xbd\xd1\xae\xfa\xdc\x5b\x7b\xf6\xba\x37\x05\xf2\xbb\x37\x85\xe2\x77\x6f\x12\xc5\x71\x6f\x12\xe0\x77\x6f\x12\xc3\xef\xde\x24\x86\xe3\xde\x24\xc0\xef\xde\x24\x86\xdf\xbd\x49\x0c\xc7\xbd\x49\x80\xdf\xbd\x29\xb9\xf8\xdc\x9b\x44\xb0\xdc\x1b\x2b\x46\xdd\x9b\x82\x78\xdd\x9b\xc2\xf0\xba\x37\x89\x61\xbb\x37\x59\xee\x75\x6f\x12\xc1\xeb\xde\x24\x82\xed\xde\x64\xb9\xd7\xbd\x49\x04\xaf\x7b\x93\x08\xb6\x7b\x93\xe5\x5e\xf7\xa6\xc4\xe1\x71\x6f\x12\x6e\xba\xb7\xf6\x3c\xe8\xde\x00\xca\x90\x7b\x03\xa8\x43\xee\x4d\xa3\x7a\xdc\x9b\x46\x18\x72\x6f\x1a\x73\xc8\xbd\x69\x4c\x8f\x7b\xd3\x08\x43\xee\x4d\x63\x0e\xb9\x37\x8d\xe9\x71\x6f\x1a\x61\xc8\xbd\x01\xf9\xf6\xbb\x37\x8d\x68\xbb\xb7\xde\xed\x0b\xb8\xb8\xd7\xcb\x77\xbd\x40\xd7\x4b\x70\xbd\xc8\xd6\xcb\x68\xbd\x50\xd6\x4b\x61\xbd\xd8\x05\x8b\x59\xb0\x56\x65\x4b\x51\xc7\xbf\xf1\x52\xdb\xbf\xb1\x6a\x5e\xff\xc6\xe8\x7b\xfd\x1b\xe5\xc3\xf6\x6f\x94\x4b\xaf\x7f\xa3\x9d\xf1\xfa\x37\xda\x67\xdb\xbf\x51\x89\x78\xfd\x1b\x15\x9c\xd7\xbf\x51\xf9\xda\xfe\x8d\x4a\xdf\xeb\xdf\x68\x57\x7d\xfe\xed\x9c\x79\xfd\x9b\x02\xf9\xfd\x9b\x42\xf1\xfb\x37\x89\xe2\xf8\x37\x09\xf0\xfb\x37\x89\xe1\xf7\x6f\x12\xc3\xf1\x6f\x12\xe0\xf7\x6f\x12\xc3\xef\xdf\x24\x86\xe3\xdf\x24\xc0\xef\xdf\x94\x5c\x7c\xfe\x4d\x22\x58\xfe\x8d\x15\xa3\xfe\x4d\x41\xbc\xfe\x4d\x61\x78\xfd\x9b\xc4\xb0\xfd\x9b\x2c\xf7\xfa\x37\x89\xe0\xf5\x6f\x12\xc1\xf6\x6f\xb2\xdc\xeb\xdf\x24\x82\xd7\xbf\x49\x04\xdb\xbf\xc9\x72\xaf\x7f\x53\xe2\xf0\xf8\x37\x09\x37\xfd\xdb\x39\x1b\xf4\x6f\x00\x65\xc8\xbf\x01\xd4\x21\xff\xa6\x51\x3d\xfe\x4d\x23\x0c\xf9\x37\x8d\x39\xe4\xdf\x34\xa6\xc7\xbf\x69\x84\x21\xff\xa6\x31\x87\xfc\x9b\xc6\xf4\xf8\x37\x8d\x30\xe4\xdf\x80\x7c\xfb\xfd\x9b\x46\x1c\xe1\xdf\xc0\x6e\x3b\xdc\xb3\xd6\xbb\xd2\x7a\xdf\x59\xef\x2c\xeb\xbd\x63\xbd\x3b\xac\xf7\x7f\xf5\x0e\xaf\xde\xc3\x05\x5b\xb4\x60\x07\x96\x6f\xb0\xda\x0e\x8e\x97\xda\x0e\x8e\x55\xf3\x3a\x38\x46\xdf\xeb\xe0\x28\x1f\xb6\x83\xa3\x5c\x7a\x1d\x1c\xed\x8c\xd7\xc1\xd1\x3e\xdb\x0e\x8e\x4a\xc4\xeb\xe0\xa8\xe0\xbc\x0e\x8e\xca\xd7\x76\x70\x54\xfa\x5e\x07\x47\xbb\xea\x73\x70\xc5\xd1\xeb\xe0\x14\xc8\xef\xe0\x14\x8a\xdf\xc1\x49\x14\xc7\xc1\x49\x80\xdf\xc1\x49\x0c\xbf\x83\x93\x18\x8e\x83\x93\x00\xbf\x83\x93\x18\x7e\x07\x27\x31\x1c\x07\x27\x01\x7e\x07\xa7\xe4\xe2\x73\x70\x12\xc1\x72\x70\xac\x18\x75\x70\x0a\xe2\x75\x70\x0a\xc3\xeb\xe0\x24\x86\xed\xe0\x64\xb9\xd7\xc1\x49\x04\xaf\x83\x93\x08\xb6\x83\x93\xe5\x5e\x07\x27\x11\xbc\x0e\x4e\x22\xd8\x0e\x4e\x96\x7b\x1d\x9c\x12\x87\xc7\xc1\x49\xb8\xe9\xe0\x8a\xe3\xa0\x83\x03\x28\x43\x0e\x0e\xa0\x0e\x39\x38\x8d\xea\x71\x70\x1a\x61\xc8\xc1\x69\xcc\x21\x07\xa7\x31\x3d\x0e\x4e\x23\x0c\x39\x38\x8d\x39\xe4\xe0\x34\xa6\xc7\xc1\x69\x84\x21\x07\x07\xe4\xdb\xef\xe0\x34\xa2\xe3\xe0\x3a\xf5\xb1\x1c\x5c\xba\xe8\xfb\xf0\x7e\xeb\x4e\xc8\x21\x63\x46\x05\x50\x40\x8e\xf5\x71\xa4\x67\x76\x9f\xef\xb9\x6b\x9e\xd5\x15\xb2\xe7\x6e\x5f\x65\x5f\xac\xa2\x43\x55\x75\x56\x91\xaa\x98\xb9\x15\x33\xb7\xa2\x3e\xce\xb1\xf6\x1f\x90\xb0\x2e\xff\x74\x55\xed\xb9\x18\x92\x65\x19\xd2\x03\xfb\xf2\x10\xef\xaf\x75\x22\x6f\x86\x52\x11\xb9\x13\x3e\x4a\x6a\xdb\x43\xde\xc8\xe3\x6d\xa0\xd7\x69\x55\xb0\x6b\x8e\x43\x78\x0c\x6c\xc2\xbc\x24\x7b\x5b\xce\x46\xb6\x9c\x8d\x6f\x39\x03\xb7\x14\xb7\xf1\x0d\x2a\xef\x23\xfb\x2f\x84\xa3\xd2\x0a\xe4\x4d\x45\xf4\x8e\x9b\xb8\x89\x98\x56\x65\xc6\xb2\x72\x20\x36\x06\x81\x8e\xb5\x41\xa0\x63\x77\x28\xd9\xac\x8f\x2c\x06\x44\xac\x72\xa9\xc6\x84\xba\x43\x89\x5f\xa0\xb4\xb1\xb0\xee\x69\x98\xdb\x3b\x0d\x73\x3b\x87\xd0\xcc\x7a\x68\x22\x30\xd0\xb3\x37\xe0\x5e\x73\x61\x66\xd1\x10\xb3\xd3\x4c\xcb\xac\xed\x9a\xbc\x06\xcc\x6d\xcb\xee\xc4\x0d\xee\x87\x2a\xcb\x3e\x00\x5e\x07\x31\xd1\x5b\xb8\x1b\xfa\x23\x1b\x63\xa7\xc4\x35\x01\xf1\xa7\x6a\x01\x07\xa3\x64\xd9\x49\x2a\x3e\xeb\x06\x69\x55\xfc\x92\x16\x49\xdb\xfe\xf8\x33\x9d\xa5\x3f\xe9\x93\x13\x6d\x97\x74\x79\xba\xe3\x81\x3e\x3b\x90\x6d\x5e\x80\x4e\xab\xe2\x72\x2e\x6f\xf2\x3e\xb1\x41\x65\x22\xef\x16\x3f\x4a\x9b\x14\x85\x3b\xd5\x65\x91\x48\x7d\xe2\x4e\xbd\x36\x44\x5b\x84\x0d\xd1\x9a\xf7\x52\x73\x20\xda\x66\x3d\xd4\x44\x31\xe2\x16\x10\x88\xa0\x86\x40\x6c\x6a\x8e\x77\x42\x20\x36\xb5\x1e\x8d\xa3\x96\xa2\x45\x24\x6e\xca\x7a\xb0\x4e\x23\xb0\x0c\x14\xaf\x6d\x5a\x58\x18\xc3\x64\x4d\x7f\x30\x0b\x10\xd7\x43\x30\x13\xb0\x41\xc0\x06\x6c\x10\x30\x02\x2f\x41\x17\x04\xcc\xc0\x43\x50\x96\x63\x86\x80\x80\xa4\xee\x10\x90\x43\xd0\xb5\x05\x04\xe4\x10\xc4\x84\x2b\x6e\xdb\x78\xad\xc1\xb8\x81\xe3\x37\x87\x11\x68\x26\x8e\xdf\x20\x2c\x34\x94\xe9\x98\x6c\xd2\x15\x66\x11\x79\x79\xa8\x30\x73\x30\xca\x81\x2d\x18\xe5\xc0\x10\x70\x3a\x27\x0f\x9d\x13\x4a\x87\x15\x62\xca\xb7\xcb\xa5\xa2\xec\x72\x93\x8e\xab\x73\xbb\xdc\xa4\x83\x0a\x8e\xdf\x86\xf2\x6a\x5b\xdf\x90\xf2\xab\x7a\x08\x07\x20\xf8\x95\x0c\x71\x30\x46\xd3\x05\x99\x1f\xe6\x98\x86\xc5\xb5\x2b\x4c\xc9\x36\x08\xe8\xd9\x06\x01\x55\x7b\x09\xba\x20\xa0\x70\x0f\x41\x59\x8e\xa9\x1d\x01\x49\x8d\x21\x20\x87\xa0\xab\x7f\x04\xe4\x10\x44\x3d\x00\xbf\xc5\xe6\xb5\x02\xe3\x66\x9b\xdf\x10\x46\xa0\x99\x38\x7e\x73\xb0\xd0\x50\xa6\x93\xc3\x2c\x4d\x31\x8b\xe0\x17\xe7\x30\x83\xb0\x20\xc0\x1e\x2c\x08\x30\x07\x1f\x35\x07\x02\x8c\x01\xa7\x26\x8a\x31\x53\x70\x21\x52\x71\x2e\xc4\xa6\xe6\xda\x81\x0b\xb1\xa9\xa1\x02\xe5\x77\x0f\xbd\x56\x00\xef\x23\xfa\x8d\x60\x18\xcb\x40\xf1\x9b\x80\x89\x85\xc6\x01\xfb\x34\x4d\x53\xbd\x03\xae\xb6\x08\x9e\x56\x4f\x6c\x03\x9c\xd3\xd5\x39\x32\xfc\xeb\x7f\x76\xc6\x17\x9c\xbf\x17\x37\xe7\x54\xc9\xab\x38\x91\xcf\xf2\x15\xaa\x52\x7e\xe1\x84\x16\x25\x97\xae\x3a\xe5\xec\x84\x30\x47\xdc\x27\x8d\x27\x57\x85\xca\xc8\xa5\xa8\xb0\x0a\xd4\xda\xbb\xea\x92\x9e\x6e\x0e\xdb\xcf\x91\xdc\x03\xb1\x2e\x57\x7a\x10\xb1\x05\x0c\x82\xe4\xae\xc3\x10\x24\x77\x41\xd6\xd7\x5c\x36\xa6\xb9\x3e\x24\xb0\x56\xc3\xae\x27\x7a\xea\x39\xcb\x53\xbf\x6c\xd0\x55\x1e\xdc\x0c\xf0\x32\x87\xae\x60\xef\xad\xa9\xc5\x79\x6f\x4d\x2d\xe3\x87\xb9\xbd\xbb\xa6\xd6\x06\xac\x79\x35\xee\xe3\xdd\x29\x69\x70\x75\xf2\x3e\x41\xdf\x57\x11\xc8\xf9\xbe\x8a\x40\xcc\x0f\xb2\x7a\x6f\x45\x20\x64\x70\x7d\xd4\xb8\x0f\x39\x4a\xc8\x72\x6d\xaf\x89\xf4\x0d\x5a\x97\x81\xfb\x2b\x62\x2d\xde\xd3\x65\xb3\xa2\x95\x94\x34\xbe\xe9\xe4\x7c\xfa\x96\x96\xbc\x64\xa6\xb3\xe4\xe8\xef\x9e\xb1\x4c\xc2\x67\xde\x52\x03\x73\xbe\x4d\xc7\x93\x32\x63\x36\xb5\xb6\x63\xcd\x1b\x61\xe0\x26\x9d\xbe\xb8\x8a\x5c\xa6\x5f\xd2\x9f\x1b\xcf\x6e\xe6\x49\x24\x04\x99\x58\x5a\x79\x3a\x9e\xe2\xb8\x2f\x2f\xe3\x1b\x25\x10\x73\x72\x52\x4e\xb0\xd4\x95\x32\xf1\xc8\x82\xdd\x0c\x54\xe2\x93\x3b\xd0\x7f\xdf\xec\xfa\x73\x60\x1e\xf2\x82\x7c\xb2\xf2\xe9\x1a\x2d\x97\x47\x1b\x0e\xf4\x26\x92\xd9\xfd\x72\xbe\x14\x5d\x5e\x17\xe4\x93\x48\x13\xf6\x0b\xd5\xd6\x27\x5f\x22\x4b\xd6\x26\xcf\xd3\xe5\x66\xde\x74\xcb\x55\x5f\xbf\x59\x6a\xaf\xea\xd2\xd5\x97\x0e\xbf\x43\xc9\x44\xf9\x64\xde\x9a\x1c\x4e\xaa\xb6\x5c\x2e\x6f\xd1\xa1\x6a\xce\xa1\x48\x24\xec\x37\x7d\x75\xd1\x10\xa4\x80\x5a\xd5\xaf\xc1\x74\xf6\x40\xa3\xbe\xdc\x5c\xba\x34\x3f\x27\x47\x91\xa8\x61\xe4\x9d\x4c\x33\x6f\xa8\x79\x23\x95\xd6\xa5\xff\x87\x57\x52\xe3\xa7\xe5\x07\xec\xf6\xaa\x17\x17\xc9\x08\xa6\xd3\x0a\x56\x0d\xcc\xfb\x15\x44\xd3\x65\x3b\xd1\xc4\x1d\xd8\xee\x2d\x88\x98\xaa\x13\x66\x07\xa9\x6d\xbf\x5b\xad\x92\x03\xd9\x28\xbb\x8b\x1f\x11\xd2\x24\x0e\xe2\x60\x2d\x01\xd3\x78\x36\x99\x3e\x2d\x27\xb3\xf9\x7c\x12\xad\xee\x92\x60\x2f\x21\xab\x33\x3c\x7b\x6e\x5d\x24\x29\x39\x55\x45\xa6\xb3\xc9\x6c\x36\x9b\x5d\x55\x27\x69\xde\x7d\xd9\x4e\xad\x4a\x34\x90\x66\x23\xd2\x53\xd1\x69\x43\x65\xc2\x1d\x5b\x07\xa4\x08\x36\xcb\x1b\x92\x64\x55\x59\x7c\xf9\x34\x91\x4e\x47\xa3\x06\xe6\x10\x13\x89\x2d\xca\xaa\x0b\x93\xa2\xa8\x3e\x93\x0c\x19\x0e\x84\x10\xd0\x4d\x99\xce\xd0\x24\x74\x7f\x02\x5e\x96\x24\x05\xa0\x66\x49\x47\x3e\x19\x79\x48\xe8\xf8\x16\x5d\xe6\xd9\x65\xdd\x65\xce\x2d\x62\x53\xe0\x24\x92\x33\x9e\x9d\xe3\x4f\x5f\x85\x84\x09\xc5\x7a\x52\x74\x99\xd7\x25\xf9\xa7\x54\xd6\x46\xc0\x9c\x9f\x6e\x29\xc0\x9c\xe1\xce\xce\x7f\x66\x25\x77\x16\xa4\x5c\x47\xc5\x01\x22\xe3\x0b\x06\x57\xcd\xa2\xd9\x98\x15\x18\xa1\xa0\x1d\x1f\x48\xbf\x62\x5c\x23\x06\xbd\xfc\x68\x0b\xf4\xa3\x16\x2d\x10\x5e\xa8\x65\x2f\x5a\x74\x58\x18\x91\xb3\x06\xc9\xf1\x16\xdb\xdf\x88\x79\x82\xc8\x71\x72\x15\x2d\x7f\xec\x67\xec\xa3\xc3\x29\x96\x22\x47\x9c\xc3\xa8\x91\xa8\x02\x0c\x3c\x4c\xcc\x70\x5c\xb2\x0a\x4e\x81\x68\x17\x96\xcb\xda\x58\x99\x8b\x8e\x8c\x6b\xd7\x64\xfa\x91\xb4\xed\x60\x93\x04\x37\x02\x2f\x44\x8a\x16\x43\x90\x84\x7b\x81\x52\xf2\xee\xfc\x73\x8b\xf8\x0c\xd8\x9e\xe5\x9c\x32\x07\xa3\x92\x45\x2b\x76\x46\x86\x99\xe3\xe6\x97\x6e\x72\x08\x11\x77\xe1\xd4\x8d\x59\x87\xea\x5c\x4d\x72\x12\x7d\x62\x87\x6d\x0e\x21\x91\x33\x93\x95\x16\x47\x59\xba\x58\x01\xe6\x59\x5a\x1f\x9d\xc3\x4e\x25\xce\xb3\xb8\x77\x72\x5b\xac\x6c\xf6\x2d\xfa\xb0\x3a\x2d\xb0\xd9\x2f\x8e\x3e\xf6\x35\x21\xce\xfe\x29\x69\xc3\x03\x21\x19\x75\x02\xee\xcd\x72\x13\x6e\xb9\x12\xf3\x52\xf9\x62\x16\xb1\x29\xc2\x5f\x01\x69\x47\x25\xfe\x64\x27\x13\xe8\x1a\x42\x2c\x19\x77\x58\x28\xc8\xc2\x3f\x18\x0a\xda\xbe\x63\x87\xe4\xd8\xa3\xfc\x88\x6f\x30\x41\x74\x22\x45\xcd\xe7\xa5\x89\x09\x90\x2c\x8a\x29\xdf\x80\x89\xf9\xd1\xc4\x97\x36\x8f\xa0\xaa\x69\x08\xad\xa1\x06\x82\x91\x77\xcf\xc4\x35\xc4\x6c\xc6\x54\x1c\xff\x5b\x87\x9b\x3d\xfc\xa0\x91\x1e\x4f\x0d\xf8\x70\x7c\x47\x43\xf9\xef\x56\x4f\xfb\xe9\x6a\x7d\x77\x48\x07\xea\x5a\x5c\x73\x83\x67\x81\x44\x98\x64\x59\x55\x9a\x32\xdf\xa1\x82\xf5\x7f\x52\xf4\x4a\x44\xdb\x35\xa2\x53\xf1\x29\xc0\x35\x3d\x05\x40\x4c\x4f\xc1\x80\xe9\x69\x7c\xc3\xf4\x4c\x54\xc3\xf4\x9c\x1a\x96\xe9\x89\xd4\x8b\x26\x6e\x8f\xe9\x71\xfc\xdf\xc7\xf4\x50\x7e\x3c\x8b\x8c\xe5\xf4\x6b\x4d\x2f\x8d\x93\xe9\x6a\xff\x98\xe9\xf1\xba\x16\xd7\x5e\xd3\x13\x32\x44\x05\xeb\xff\xb2\xe5\x95\x88\x63\x7a\x50\xa7\xa4\x69\xaa\xc6\x35\x3c\x51\x8c\x98\x9d\x80\x00\xa3\x93\xb8\x86\xc9\x41\x34\xc3\xe0\x2c\x6c\xcb\xdc\x44\xae\x4e\x88\xd9\x63\x6c\x1c\xfb\xf7\x31\x36\x84\x1b\xd4\xd4\x78\x2e\xd1\xaf\x34\x35\xb2\x5e\xac\xe7\x0f\x9a\x1a\xab\x6b\xf0\xec\x35\x34\x21\x3f\x54\xa8\xfe\x8f\x67\x1e\x69\x38\x66\x26\x75\x69\x20\xf1\x83\x4f\xee\x77\x1e\x6d\x80\x4e\x3e\x76\x15\x85\x2f\xf1\xa5\x99\x68\xee\x69\x4e\x7f\x7a\x2e\xfb\x33\x3e\xc4\x42\x08\xae\x1f\x47\x6c\x5c\x7a\xd6\x1f\x37\x84\xa6\xbd\x4d\x65\x50\xe5\x0c\xb1\xdc\x4e\x63\x08\x02\xc5\x3d\x9b\xd4\xe1\x3d\x13\xa3\x8a\x31\x62\x6d\x31\x8f\x6a\x54\x8c\x6c\x93\xaa\xbd\x8e\xc6\x64\x85\xe5\x12\x8d\xed\x24\x88\xa3\x39\xc0\x56\xbb\x28\x4f\x7d\x8b\x5a\x27\x8d\x6a\x6c\x35\x35\x26\x10\xe5\x07\x66\x45\x45\x90\x3a\xd4\x9e\x1d\x1d\x38\x94\xa4\x51\x4f\xcd\x94\x78\x15\x35\x5f\x7a\x6b\xf6\x2d\x51\x1d\xc9\x8b\x7d\x57\xa4\x03\x43\x0c\x5e\xe1\x46\x09\x4e\xc2\xdd\x87\x19\xc8\x41\x86\x53\xb0\xa6\x07\x9b\xf5\x81\x41\xed\x55\x8a\x9b\x6d\x1b\x61\x60\xb4\x0d\xec\x60\x66\xac\x7d\x57\x8e\x9b\x39\xec\x3d\x0a\x67\xf9\xe1\xd9\xdb\x30\xf7\x32\xc6\xee\x3c\xc3\xec\x7c\x48\xca\xc5\x07\xf7\xc5\xfd\x5b\xd9\x97\x96\x34\x21\x5f\x46\x72\x8e\xd8\xae\x28\x52\xda\xba\x85\x76\x01\x13\xaa\xf8\x6c\xc1\x7e\x15\xe7\x24\x75\x49\x04\x4b\xbe\xc1\xf7\x0b\xd6\xaa\x38\xd7\xa1\x78\xb9\x82\x6f\x62\xe8\x13\x2b\x80\x57\xc8\xa5\x7e\x98\xd0\xa3\xbc\x9e\x18\x61\x5e\xbf\x06\x4b\xcb\xcf\x4f\x67\x78\xdc\xe2\xc3\x65\x7c\x45\x72\x9b\x85\x71\xd6\xbf\x59\xc4\x6c\x1a\xd9\xfb\x15\x26\x18\x92\x17\x52\x76\x2d\xe7\x5d\xee\xfc\x46\xab\xe5\xee\x90\x17\x2c\x17\x6b\x51\x9f\x92\x1f\x04\xe0\xe7\x15\xf8\x1e\x61\xbd\xa7\x65\xbf\xaf\xc5\x18\x0d\xc5\xa3\x75\xd7\xa1\xd7\x74\xac\x70\x25\x4d\x53\xa3\x3e\x50\x9f\x2a\xd2\x06\xa4\x8a\x80\xba\x64\x99\x3a\xda\x5c\xd5\xa4\x0c\xd8\x3b\x4f\x59\xf5\x99\xce\xae\xc7\x63\x41\xc6\xf3\x48\xf6\xf4\xc7\x8e\xaa\x32\xfa\x73\x7b\x43\x1e\x50\x9b\x32\x1a\x30\x75\x2f\x4b\x87\x6d\x40\x62\x4e\x50\x62\x88\x80\x75\x7d\x01\x1c\x20\x8c\x90\xd0\xe4\x5d\x65\x01\xf2\x1c\x38\x44\xde\x25\xa1\xc9\x23\x42\x07\xf4\x05\x74\xa8\x01\x4c\x73\x12\x35\xea\x6d\x21\x1a\xd7\x82\x9c\x42\x1e\x19\x01\x41\xb4\x4f\xb2\x23\xe9\x7f\xc2\x60\x3e\x9f\xf3\x4a\x77\x3c\x78\x60\x6f\x86\x2c\x9f\xc8\x3e\x33\xa8\x40\xc5\xca\x22\xa0\x0c\x59\x04\x25\x24\xca\x46\x18\xfe\x28\x4e\xe7\xb3\xa7\xd5\x7e\x6a\x71\x3a\x5b\x2f\xc9\x9a\xdc\xde\x90\x87\x9e\xc1\x27\x89\x99\x83\x4f\x94\x8e\x18\x7c\x02\x73\x82\x12\x43\x04\x3c\x7a\xf0\xf9\x75\x84\x0e\x3e\x97\x7c\xff\xe0\xf3\xeb\x1b\x1f\x7c\x2e\xfd\x81\xa1\xd1\xa7\x39\x74\xf0\x39\x2d\x0c\x0d\x3e\xd3\x0e\x90\xc1\x37\x76\x1c\x58\x43\x50\x56\xc3\x2f\xce\xd1\x7a\xd6\x43\x2b\xb8\x6d\x2f\xd3\xfd\x7a\x99\x5a\xad\x2f\xd2\x84\x2c\x52\x83\x0a\xd4\xb0\x2c\x02\x5a\x91\x45\x50\x54\xa2\x6c\xc4\x08\x18\xc5\xe9\xe2\x29\x59\x2c\x9e\x6c\x39\x6d\xd6\x8b\xf9\xe6\xf6\x86\x3c\xf4\x8c\x42\x49\xcc\x1c\x85\xa2\x74\xc4\x28\x54\xf7\x5b\x30\x62\x88\x80\x47\x8f\x42\xbf\x8e\xd0\x51\xe8\x92\xef\x1f\x85\x7e\x7d\xe3\xa3\xd0\xa5\x3f\x30\x46\xfa\x34\x87\x8e\x42\xa7\x85\xa1\x51\x68\xda\x01\x32\x0a\xc7\x8e\x03\x6b\x14\xca\x6a\xfe\x51\x08\xdf\x2b\xf2\x0c\xc1\x7d\x1a\x67\xc4\x6e\x7a\xb5\x5f\x67\x89\x26\x01\x75\xcb\xfe\x06\xca\x60\x7f\x43\xf1\xd0\x82\x11\x26\x3f\xcc\xda\x7c\xb3\x9f\x67\xf6\x98\x9b\xad\x36\xc9\x3e\xbd\x7d\x7d\xd3\x3d\x43\x8d\x91\x31\xc7\x19\x2d\x1a\x31\xc8\xf8\x0d\x22\x87\x86\x2d\xbf\xd1\x63\x0b\x13\x3e\x3a\xaa\x2c\xaa\xfd\x43\x0a\x53\x21\x3e\x98\x2c\xb2\x03\x76\x8e\xeb\x03\x1d\x43\x26\xe1\xa1\x01\x04\xf4\x8a\x8d\x9e\x31\x26\x6c\x0f\x1d\x51\xc7\x3f\x74\xac\x17\xbb\x70\x13\x3d\xc4\x49\xb6\xb0\x9b\x26\x24\x99\xcd\x57\x06\x15\xa8\x43\x59\x04\x14\x20\x8b\xa0\x84\x44\xd9\x08\x73\x1e\xc5\x29\xc9\x36\xe9\x6c\x6d\x71\x9a\x2d\xd7\xcb\xe9\xec\xf6\x86\x3c\xf4\x8c\x2a\x49\xcc\x1c\x58\xa2\x74\xc4\xd8\x52\x97\xb5\x30\x62\x88\x80\x47\x0f\x32\xbf\x8e\xd0\xa1\xe6\x92\xef\x1f\x6d\x7e\x7d\xe3\x63\xce\xa5\x3f\x30\x3a\xfa\x34\x87\x0e\x3e\xa7\x85\xa1\xf1\x67\xda\x01\xb6\x86\x1b\x39\x0e\xec\x95\x9c\xa8\xe6\x1f\x85\xe6\xc3\x77\xb8\x69\x67\x9b\xe5\x7c\x61\xaf\x21\xb3\xc5\xfc\x30\x4f\x20\x11\x63\x8d\xce\x4b\xe0\xb2\x9a\x97\x18\x4b\x5d\x56\x34\x66\x03\x63\x0c\x93\xb3\xf9\x6c\x66\x7f\x7d\x4f\xd2\xd9\x66\xb6\xbc\xbd\x15\x03\x7d\x1b\x28\x9c\x94\xb5\x7f\xc2\x0a\xc7\x6c\x9f\x88\xab\x71\x08\x25\x57\xaa\xe3\xf7\x4e\x3c\x6a\xc1\x77\x4e\x6c\xda\x03\x1b\x27\x1e\x05\x7b\xb6\x4d\x6c\xe2\x43\x7b\x1a\x5e\x5d\xe1\x7b\x26\x16\xf9\xc1\x2d\x13\xa8\x77\xf4\x02\xf0\x28\x83\xb7\x06\x9b\xac\xe5\x1f\x6c\x45\x5e\xfe\x6a\xad\xf0\xfa\xcf\x23\xba\xcf\xe5\x48\x32\x13\xf5\x9b\x21\x25\x5a\x30\xc2\xde\x18\x23\xbd\xef\xf4\xdc\xb5\x11\x6b\x31\x04\x0c\x8e\xfd\x0d\x8c\x04\x30\x6c\x7e\x05\x87\xa9\x8a\x06\x28\x8d\x7d\x90\xbc\x3f\x1f\x12\x22\xae\x81\xe1\x84\x71\x34\x7a\xbc\xb8\xec\x6f\x36\x1b\xff\xc7\x81\xb0\x10\x7e\x98\x7f\x83\x2f\x8e\xcf\xf4\xaf\xeb\x5b\x1c\x00\xe4\xeb\x9d\x33\x24\xdf\x9e\x4d\xf2\x8f\x1f\x8e\x64\x44\x5f\x5b\x48\xfc\xb5\xb5\x78\xe7\x1f\x1f\x1e\xa4\x8d\x7d\xf0\x77\x2f\x33\xc9\x6f\xc7\xe6\x59\xc2\x18\x90\xf8\x08\xa8\x99\x07\x06\x8c\x63\xe7\x97\xfd\x39\xef\x3e\x69\x5c\xe3\xd2\x0c\x69\x89\x0f\xc6\x5f\xee\x07\x40\xf3\xfb\x7b\x92\x91\xab\xfc\x1e\x12\x63\x97\x30\x04\x90\x5d\x89\x08\xa8\x68\x92\x66\xd7\x0f\xe6\x54\xa3\xbc\xbc\x82\x9b\x04\x69\x55\x14\x49\xdd\xea\x33\xd4\xdc\xc0\x64\x31\xc5\x36\xef\x1f\x49\x10\x0d\x35\xdd\x07\x81\x84\x7a\xdc\x57\xd2\x91\x1e\x70\xdc\x20\x9a\x2f\xf9\xeb\xf1\xbb\x1e\xd8\x2d\x4a\x93\x86\x74\x7d\x27\x20\x62\xdd\xb8\x91\x7e\xad\x7e\xf5\x7c\x0c\x05\xb9\xa9\x16\xf2\x5b\xa7\xf9\xa0\xe2\x02\xfd\x04\x0a\xef\x71\xa2\x18\x37\x15\x21\x60\x07\x5b\xad\xe8\xc1\xfa\xee\x18\x03\x84\x33\x29\x2f\x9e\x23\xab\xcc\x94\x85\x09\xff\x16\xe6\x65\x46\x5e\x69\x99\x3e\xbe\xca\xa6\x62\x78\x0a\x5f\xe7\x39\x5d\xd9\xa7\x9c\xd5\xfd\xc0\x99\xb8\xa7\x66\x3f\x1a\x6b\x7d\xd0\xed\xfb\x80\x80\x5f\x58\x02\xa5\xc6\x17\xc5\xe5\x87\x71\x37\x9a\xf8\x39\x24\x3a\x0b\x98\xf5\xad\x53\x57\xbd\x68\x80\xe9\x22\xaf\xb7\xfa\xcd\xdf\x57\x4b\xe4\xf0\x05\x4e\x79\x2a\x58\xbd\x9f\x66\xe1\x06\x51\x96\xbf\xe4\x19\x69\xae\xe0\x19\x2c\x21\xcd\x0d\x13\xad\x3d\x10\x90\x75\x21\xbf\xf1\x68\x12\x7e\x2e\xf2\xe7\xc4\xf3\x70\xe0\x5c\x3e\xd9\xca\x5f\xb3\xdd\x57\xdd\xc9\x89\x12\xfa\x2f\xa3\xcd\xe7\x73\xfc\x1d\x5b\x87\x05\xe9\xce\x10\x08\x37\x5c\xcc\x41\xed\xd4\x4e\x11\xfd\xf1\xbe\x3b\x68\xb7\x27\xd3\x2d\x25\x76\x73\x0a\x80\x73\xa3\xc1\x86\xfb\xa4\x46\x89\x72\x87\x7e\x43\x37\x82\x2e\x87\x33\xe9\xab\x11\xde\x34\xc8\xc3\x1d\x40\xb0\xdd\x7b\x4f\x3b\x63\x89\xa1\x3d\xec\x7f\x60\x11\x3d\x38\x20\x3e\xb8\xd7\x4d\x75\xcc\xb3\xed\xbf\xfe\xe7\x5f\x28\xe8\x6f\xf2\x11\xe1\xe8\xaf\x79\xda\x54\x6d\x75\xe8\xa2\x23\x1d\xaa\xa4\xec\x7e\x20\x25\xe3\xe4\xe7\x43\x52\xb4\xe4\xc3\x0e\xbb\x60\x41\xd7\x4b\xcf\xd6\x84\x66\xb9\x13\x86\x92\x78\xe7\x3f\x31\x0e\xf5\xfb\x85\xca\x51\x9b\x68\x14\x41\x64\x3c\xdd\x35\xe0\x9a\x81\xc2\x12\x4f\x7d\x0f\x8c\xa8\xde\x90\x03\x7b\x2c\x58\x37\x40\xc5\x4a\xff\xd0\x33\xf6\x21\x7f\x25\xd9\xce\x60\x2a\xde\xa9\x33\x3c\xfc\xf8\x8f\x9c\xbc\x37\x9b\xf8\x06\x26\x1e\x5b\x68\x9e\x79\xe8\x52\x07\xdc\x31\x4e\xa2\x32\x79\xd9\x27\x4d\xc8\xda\x14\x07\x85\xf4\x4a\x55\x60\x19\xe9\x1a\xad\x2b\xd8\xda\x05\x82\xa7\x63\x55\x23\x06\x37\x83\x8d\x99\xbc\xd3\xd6\x98\xea\xd4\x01\x4b\x37\x8f\x48\xef\x79\x2c\xd1\x9a\x78\x1e\xd7\x24\x8e\x18\x46\x0f\xba\xcf\x4c\x6e\x3a\x1a\x85\x81\xa9\x8c\x1b\x90\x40\x07\x0d\x44\x3c\x07\x11\x15\x41\x16\xe6\x62\x0d\x88\xf8\xd7\x69\x05\x26\x04\x37\xa9\xc0\x65\x06\x42\xcb\x01\xf3\x52\xb0\xce\xc2\x2a\xd9\x60\x5e\x0a\x57\x8f\x58\x2d\x07\xce\x8a\xa3\x81\x6a\x72\x6d\x2d\x07\xc0\xcc\xe9\xe1\x18\x66\xe1\xbc\xa1\x10\xd9\x7a\xea\xa3\x25\x6b\x5d\xe8\xe8\x39\xd0\xbf\xa2\xb5\x00\x08\x3d\x96\x28\x57\x1e\x5d\x55\x15\xfb\xa4\xb9\xba\x6f\xec\x03\x68\x60\xb3\xa0\xca\xc1\xc9\xdc\xab\xad\x78\x81\x04\x0c\x08\x96\x20\xe4\x9e\x0d\x72\x46\x12\x64\xc9\x10\x10\x75\x59\x75\x3f\xc0\x5c\x25\x1f\x78\x89\x4e\x34\xc1\x0b\xec\xd8\xf5\xc3\x15\xdd\x7d\x80\x3a\x04\xf9\x4f\xac\x33\xb3\x7e\xcc\x3b\x1b\x17\x89\x44\xd9\x70\x56\x9c\x80\xe8\xde\x82\x38\x2d\xeb\x86\x5c\x39\x18\x56\x6d\x47\xee\x0e\xb6\xc5\x11\xed\x29\xca\x90\x01\xb0\xf9\xf1\x58\x80\x8d\x30\x42\x67\x7c\x56\x19\x50\x91\xa0\x06\xf3\xfa\x5a\x52\xb1\x47\x36\x56\xc3\x12\xcd\x1b\xa9\x46\xb4\x04\xf2\x9d\x38\x46\xf5\x95\x12\x77\x36\x73\xdd\xd9\x0c\xdf\xf4\x45\x27\x9e\x67\x3e\xc7\xd8\xa8\xc6\x96\xc3\xda\x79\x15\x77\xed\x0e\xc8\xb0\x38\x0e\x90\x61\xe1\x89\xf5\xba\xee\xcc\x20\xe4\xe1\xfb\xf7\x38\x20\xda\xc7\x80\xde\x5d\xbc\x67\x03\x51\x06\x30\xc8\x1c\x52\x1c\xad\xe8\x46\x3c\x48\x21\x18\xb4\xe2\x1c\x95\xf4\x46\x85\x36\x3d\x34\xe2\x40\x50\xb9\xf9\xbc\x90\xd7\x3d\xf9\x83\x89\x67\x4b\xd7\x56\x48\x0a\x2e\x19\x18\x69\xd7\x60\x1e\x77\x2f\x3b\x90\xac\x26\xe4\x45\xb7\xbd\x1d\x02\x1d\xd5\x8f\x7e\x3a\x5e\xf7\xc9\xae\xf7\xeb\x05\xb3\xeb\x19\x2c\x8f\x3f\x3c\xe3\xf5\x4c\x76\x76\xf4\xd0\xe3\x6e\xae\xbe\x09\x8a\x6d\x7e\x8c\x98\xd9\xb0\xd9\xc8\xcf\x4a\x9f\xff\xe9\x99\xdf\x00\x33\xee\x4c\x3a\x66\xee\xc3\xb4\xf4\x06\x5e\x05\x25\xdb\x27\xee\x1e\x7f\xf3\x00\xad\x47\x3c\xd1\x5d\xfa\x72\x9c\x92\x2b\x33\xaf\x9b\x7a\x50\x51\xff\xb8\xb4\x5d\x7e\xc8\x89\xce\xd1\xc5\x52\x83\xc1\x09\x82\xe7\x0a\x2b\x92\x2f\xd5\xa5\x13\x0b\x4f\xfd\xf5\x84\x6d\xe5\x6e\x5b\x52\x27\x4d\xd2\x11\x94\xb2\x33\x9b\x99\x10\x23\x28\xf1\xe4\x16\x97\xec\xbc\xf7\x37\x00\x82\x6a\xb8\xdd\xfd\x4b\x96\x74\x89\x50\x98\xd8\x18\x6f\x3f\xb1\x0a\xcf\xee\x8d\xad\x71\xc8\xfa\xd6\x96\xb9\xb1\x0d\xa3\x62\xff\xaa\x8e\x8b\xd7\x2f\x40\x40\xc5\x4c\xc6\x0e\x04\x34\xf4\xa1\x01\xd0\xb0\xf3\x1b\x38\x7c\xa9\x45\x12\xdc\xd2\xf5\x66\xe5\x34\x89\xb3\x4f\x43\x90\xfe\xc4\x81\x3a\x97\x39\xfb\x51\xa8\xa8\x99\x0a\xbf\x69\xe6\x09\x0f\xf3\x1e\x1c\xb7\x0b\x23\x10\xd1\x8e\x0c\xa5\xb8\xf0\xf0\xe5\xc5\x72\x39\x1b\x85\x2a\x79\xf3\xe5\xd3\xe8\x15\x4f\x0f\xb6\x4f\x50\x23\xab\xd8\x22\x83\xb9\x48\xf4\xa7\x42\xbf\xb9\x51\xe8\x80\xb9\xd9\x28\x76\x93\xdf\x22\x4b\x8b\x87\x75\x0f\xce\x28\x63\x1b\xd5\x8d\xa1\x74\x30\x1e\xbe\xbc\x58\x23\x8d\xcd\xc7\x5b\xbf\x2d\x78\xc4\xd3\x83\x7d\xa7\xb1\x0d\x89\xcc\x35\x36\xc4\x7c\x98\x1f\xf3\x4f\xae\xd8\x9b\x18\x0e\xc5\x11\x61\x90\xd3\xe8\xbd\x75\xac\x7b\xff\x8f\x04\xb7\xc3\x92\x90\x5e\xf6\x3d\x76\x71\xd3\xb3\x5d\xe9\x5e\xed\x1f\xba\xe1\xd9\xfb\xf1\x09\x26\x40\x74\xef\xa9\xe2\x39\xe0\x46\x26\x3f\x44\x78\xd5\xc9\x92\x86\x66\x08\xe4\xf8\x80\x8f\x5a\x71\x1c\x3e\x57\x81\x1c\xa3\x70\xc8\x61\xf7\xcf\x7b\x91\xec\x4c\xa2\xf2\xa1\x25\xbf\x19\x19\xa9\x8a\x5d\xbb\xf6\x82\xad\x80\x55\x84\x83\x43\x18\x60\xbd\x39\x80\x6c\x85\xe5\x2e\xb6\xbd\xc9\x33\x6e\x0f\x70\x90\x0e\x5c\xd6\xf8\x16\x31\x77\xef\x52\xf5\xca\xd5\xc9\x41\xec\x57\x16\x5c\xf3\xb8\x34\x7d\x50\xa4\x97\x23\xc5\x30\x02\x77\x50\x4f\xce\x46\x21\xb2\x67\x3a\xce\x6c\x3c\xeb\xa6\x07\xb7\xf4\xfa\xe4\x67\xa7\xde\xb6\x27\x49\xe4\xc3\x8b\x1a\xdc\x31\xfa\xa1\x1c\xf5\x52\xc8\x61\x0f\x0c\x8f\xed\x84\x20\x9f\x10\x30\x5c\xf9\x1d\x07\x85\x89\x0f\x24\x28\xcc\xfd\xba\xf2\x56\xa3\xfd\x6a\x65\x60\x40\x58\x7f\xd0\x3c\x11\x99\x94\xc9\x8b\x93\x70\xc4\x5a\x58\x59\x87\x55\x58\x9d\xe7\x22\xef\x59\xdd\x89\x2f\xcf\x1c\xef\x39\x19\xc2\xb4\x96\x36\x4b\xc1\x97\x71\x3c\x42\xfd\x7d\xcf\x47\x79\xea\xea\x24\x29\xf0\x61\xdf\x38\x1f\xe0\x40\xcd\x16\xfb\x0e\x17\xe0\x87\x1f\x7a\x8f\x06\x60\xdf\xf0\xcb\xe4\x25\x10\x5f\xe9\x27\xf0\x0f\xc0\x88\x2a\x12\xc9\x8b\x7a\x7c\xba\x7d\xce\x82\xd5\x2e\x93\x97\xf0\xed\xce\xd1\x48\x5d\x3c\xe7\xe7\x23\x78\x00\x53\x19\x47\xd8\x25\xfb\xf6\xea\x4d\x40\xce\x9e\xb6\x93\x68\xd4\x90\xdc\x5c\xa6\xa2\x92\x32\x51\x89\xfa\x9c\x98\x83\xa3\xe7\x08\x41\x6f\x92\x0d\x27\xd0\x09\x44\x06\x71\xab\x35\xae\x82\xab\x7d\xe6\x9f\x04\xfc\x3f\x76\x4f\xc0\xf9\x1a\xac\x14\x28\xd4\x85\x19\xc6\xd5\x93\xcb\x1a\x7d\xbb\xc3\x9c\xd1\xbd\x66\x27\xee\x9a\x6b\x9e\xd9\x2f\x7a\xf3\x0b\x3e\x64\x6a\x25\xbd\xf7\x54\xd1\xea\x33\xb5\xef\x60\x3d\x27\x57\x37\x36\x75\x12\xcd\x7b\x09\x0c\x9f\x7d\xd0\x07\x37\x7a\xcf\x39\x78\xfa\xd0\xbb\xd9\xd6\xd7\x29\x7b\x63\x68\x14\xb6\x3e\xaa\xe2\xc4\xdb\xbe\xfe\xbb\x96\xe5\xc3\xb0\xad\xcc\x8b\x07\x13\xa1\xd9\xe3\xf3\x01\x19\x3e\x27\xbd\x43\x7e\xcc\x98\xfb\x9d\x3b\x6d\x8e\x17\x76\x47\x80\xf3\x52\xe7\x45\x61\xcd\x4c\x26\x40\xf7\xd5\xd6\x9d\xc4\xf8\x58\xe4\x57\xeb\x94\xac\x89\x60\x75\xce\x29\x86\x3d\x72\x81\xce\x39\x3c\xff\x41\x3b\x4a\xa0\xed\x92\xf4\x57\x7c\xb4\x6a\x10\x60\x59\x3c\x27\x6b\x7f\x37\xf2\xcd\x16\xb7\xe1\x49\xe1\xd1\xb9\xe0\x5b\x4c\x01\xf7\x8d\xfc\xd1\x03\x1e\x88\xc6\x3b\x7b\x3e\x3e\x21\xf4\x8f\x8b\x31\x63\xe2\x1b\x4c\x02\x6f\x3d\x01\xfc\x0e\x9d\x44\x07\x7d\x97\xec\x43\x71\x2a\x8f\xbd\x0a\x13\xd6\x49\x69\x9f\xd8\x37\x70\x44\xf4\xef\x06\xbc\x8c\x09\xdb\x42\xed\xcf\xb1\x8f\x7c\xac\xe2\x87\xee\x90\x50\x1a\xa4\x7b\x5b\xba\x49\xd8\xd9\xa1\xcb\xbe\x58\x68\xf0\x58\x20\x32\xd3\x0d\x1f\x25\x14\x87\x41\xc1\xfc\xa9\x8e\x0d\xaa\x0b\x11\x34\x72\x54\x29\x9e\x63\xf8\xce\xd9\xeb\xf6\x25\x6f\xf3\x7d\x41\xec\x03\x18\x4b\x3b\xa9\x3f\x2b\x01\x87\x2e\x7d\xe1\x1e\x9a\x93\x33\xe6\x87\x2b\x66\xcb\xe5\x44\xfe\x3f\x9a\x7e\x18\xf1\x10\x9a\xd5\x13\x76\xe3\x43\xbf\xd1\x36\x3c\x03\x19\x62\x00\xe9\x25\xad\xd3\xa3\xd6\x29\x0d\xbb\x55\xe7\x66\x09\xb3\xc2\x3f\xe6\xe7\xba\x6a\xba\xa4\xec\x76\x60\x53\x17\x94\xea\x73\xf9\x62\xb9\xa7\x02\x7f\x21\x74\x8d\x3b\xd4\x53\x51\xe1\x66\x1e\x57\xed\xaa\x3a\xb0\x2b\xaa\x13\xad\x3c\x57\x60\x3f\x8e\x79\xea\xd5\x96\xd7\xc0\x67\xbf\x1b\x4b\x26\x98\xe4\x25\x69\x9e\x4d\x6b\x9c\x68\x48\x78\x28\x2e\x79\xe6\x87\x3f\xbb\xbc\xf9\xea\x02\x73\xb6\xf3\x26\xee\x9c\xe4\x8a\x3d\x66\xf1\xff\x02\xd7\xb1\xe5\xf0\x6f\xae\xd6\xae\xc6\x65\x18\xeb\x30\x0f\x1b\x56\xc3\xa6\x0f\xa8\xd9\x3b\xee\xae\x29\xa1\x56\x61\x1f\x01\x37\x4e\x6f\xc3\x0b\x3b\xf3\x78\x98\x9d\x81\xa6\x86\x59\xbc\x1a\xc7\xbd\x4d\x61\x78\x48\x8a\xa1\x67\xef\xbc\x18\x24\xa6\xc0\x3b\x52\x12\xfb\x26\x29\x33\xb8\x58\x56\xdb\x26\xcb\xfe\x8f\xc1\xcc\x07\x00\x17\x61\x52\x04\x1e\x54\x97\xf9\x77\x59\x06\xe5\xf9\xac\x8d\x2e\x30\x88\x4e\x5c\x04\x6e\x95\x26\x9a\x9b\x92\x54\x8b\x5c\x1e\xd4\xf3\x9c\xe3\x66\x66\x60\x26\x30\x85\x2e\x83\x6d\x74\x4c\xad\xb7\x63\xd6\x8e\xcb\x5c\x63\x37\xb0\x86\xef\x77\xdc\xb7\xe1\x60\x75\xc9\x3d\x6c\x6d\x80\x83\x28\x4f\xab\x32\xa4\xde\x18\xbb\x77\x39\x9b\x69\x05\xbb\x5f\x5e\xa6\x4e\x6b\x9a\xdc\x47\x4d\x18\xc8\x64\x31\x66\x14\x0b\x5d\x18\x41\x92\x6a\x47\x6f\x2b\x6e\x9f\xa2\x65\xfd\x1a\x84\x6a\x5b\x4f\x80\xc5\xce\x20\xc8\x19\x6b\x3c\xd9\x03\x73\x45\xdb\xb6\xdc\xf3\xb2\xaa\xa6\x1f\xd8\xa7\x23\xcd\xcb\x7e\xee\x5b\xfe\xc0\x0f\x1b\x19\x7a\xfb\x4d\x41\x3f\xb7\x87\x7b\x6b\x1f\x27\xac\xfb\x93\x21\xac\xc0\xb9\x5e\x63\x7c\x74\x93\x47\x30\x67\x96\x6c\xfd\x2d\x5e\x1d\x59\x8e\xaa\x66\xcd\x11\xfd\xb8\xce\x1e\x25\x48\xd4\x30\x6c\x56\xd4\x72\x9c\x0d\x41\x30\x20\xc4\xe6\xb3\xb5\x32\xf7\x1b\xd5\x12\x31\x2a\x4b\x5c\xc6\x85\x16\xf8\x55\x03\x49\x85\x3c\xdc\x01\x76\x03\x46\xb3\x87\x44\x53\xfc\xc6\x15\x98\xb2\x00\x8e\x76\x18\x55\x73\x1e\x95\x9d\xd9\xdd\x3d\x1f\x13\x10\xe3\xeb\xb4\x81\xf4\x03\xc3\xc1\xf3\xa4\x37\xb2\x7e\x43\x52\x43\x33\xf8\x08\xb7\x5f\x35\xe7\x37\x4b\x29\xef\xd2\xfc\xca\x94\xf2\x06\xc1\x71\x29\xe5\x8d\x2a\x0f\xa5\x94\x37\x28\x88\x3c\xe3\x26\xd5\x6f\x9d\x52\xde\xe5\x00\xfb\xa4\x8f\xf2\x74\x6f\x4a\x79\x83\xc8\x1d\x29\xe5\x07\x9d\x8f\x63\x58\xee\xd6\xd6\x38\xeb\x74\x97\x86\x76\x84\xbe\xb3\xc2\x77\x38\xf3\xc5\xee\x4a\x6f\xf4\x85\x00\xc0\xc4\x5d\x93\xa3\x35\x15\xfb\xb7\x41\x7a\xbe\xfe\x0f\xee\x81\xe0\xeb\x43\xbc\xc9\xc7\x0f\x27\xcb\x90\x54\x7f\x49\xf6\xcf\x35\x00\x39\xe2\xa9\x3d\xae\xc3\xaf\x13\x3a\xb5\x5e\x5b\xa3\xd6\xc2\xad\x65\xc4\x8d\xe4\xb5\x33\xf0\x91\x87\x36\xfa\x57\x9c\x90\x90\xe7\x39\x41\xd7\xe5\x18\xbe\x93\x56\x1d\x67\x1f\x60\xd9\x84\xa4\xc2\x96\x7b\x71\x6b\xfa\x63\x67\xd8\x7a\xa2\x3f\x76\x6d\x6b\xc9\x20\x5f\x13\x79\x1a\x40\xb4\xe2\x18\x1c\xc7\xfc\x12\xc7\x3e\x7a\x0e\xe4\xb1\xf1\x90\x63\x92\x1d\xc1\x9a\x0a\x5c\xee\xc0\x1d\xe8\x89\xf5\xb9\xbc\x2f\xf5\xf9\x98\x9e\x50\x72\xe6\x86\xec\x20\xd6\x08\x06\xef\xfa\xf8\x39\x60\x07\x8c\x1e\x4c\x22\x30\x0e\x6f\x0c\x97\xbe\x13\x00\xec\xc4\xdc\x43\x76\x61\x5c\x9c\x90\xa9\xab\xc4\xb7\x64\x7f\x85\x01\x5e\x8d\x85\x24\x92\x50\x6b\x90\x3e\x58\x64\xba\xd5\xd7\xeb\xb5\xb7\xba\xb3\x81\x67\x23\x30\x67\x76\xd7\xb0\x66\x82\x07\x67\x22\x06\x70\xc6\xa8\x71\xe8\x04\x05\x63\x08\xbe\x60\x3d\xe8\xe8\x91\x66\x7a\x56\x5e\xe3\x06\xf7\xe8\x35\xd8\x7d\x75\xdf\x6c\x1a\xc0\xdb\x18\x35\x37\x0c\x54\x7d\xb4\x7f\x6f\x3c\x8b\x78\x1a\x19\x37\xb5\x0c\x56\x7e\xb8\x93\x0f\x4f\x42\xde\xbe\xc2\x4c\x78\x7d\x46\xa9\x73\xae\x5d\xe1\x33\x04\x02\x9a\x97\x2f\xa4\x69\xb1\x0c\x7e\xb3\x99\xfd\x48\x59\xbc\xa6\x3f\x76\x55\xdc\x95\xcb\xb3\x59\x5e\x44\x4b\x92\x38\xce\xf0\x67\x72\xcc\xec\x6d\x5a\xd0\x8f\xf7\xf1\x65\xfb\xf1\x31\xb8\x03\xdd\xc0\xfd\xf8\xc3\x3d\xc1\xfd\x78\x2f\xd6\x08\x06\xef\x3a\x96\x30\x60\x04\x3e\x3f\x3e\x80\x37\x86\x4b\xdf\x10\x5a\x2c\x16\x0f\xda\x05\xe6\xc7\x91\xc1\xd1\xef\xc7\x3d\x48\x3e\x3f\x35\x4c\xbf\xd7\x8f\xb3\x44\x98\x9e\xea\x8e\x1f\xb7\x11\x10\x3f\x3e\x8d\xe9\x4f\xbf\x3a\x2d\x3f\xde\x83\x33\x46\x8d\x03\x7e\x9c\xdb\xd7\x0e\x74\x77\xd0\x8f\x23\xcd\xf8\x66\x61\x6b\x37\xf6\xae\xf9\xad\x67\x93\x57\x1c\xcd\x7c\x64\xb4\x0c\x47\x1c\x03\xd3\xd0\xe8\x88\xe3\xbe\xba\x6f\x36\x61\x8d\x8d\x38\xee\xaf\xfa\x68\xff\xde\x78\xbe\x1b\x1f\x71\x3c\x52\xf9\xe1\x4e\x3e\x3c\x5d\x7a\xfb\x0a\x23\x8e\x3e\xa3\x74\x23\x0e\x9e\xbe\xb7\x21\x49\x96\x36\x97\xf3\x5e\x7d\x05\x59\xcb\x1d\x6f\xe4\xd0\x8b\x9d\x63\xd1\x97\x24\x0f\xfb\x36\xa7\x9b\x82\x47\xc4\xe0\x66\xa7\x85\xf3\xb1\xc8\xb7\x7b\x72\xa8\x1a\x72\x55\xd9\xbd\x7e\xfa\x7b\x1c\x27\xf1\x3b\xb5\x3f\xcf\x92\x5d\xec\x74\xdc\x66\x90\x90\x27\x8a\xa0\x78\xea\xe4\x98\x97\xec\xcb\x2b\xbe\xdf\x6a\x6d\xa9\xca\x1c\x93\x31\x4c\xca\x01\x7b\xa5\xe9\xb9\xbd\xb2\xa0\xd4\xe8\xcc\x82\xb6\x4e\xfa\x13\x68\xb9\xcf\x14\x7a\x4e\x66\xf7\x25\x34\xec\x7b\x74\xc7\x73\xf6\xd9\xbd\xd3\x60\x30\x6e\x5c\xb2\xb0\x7b\x65\x00\x59\x0f\xcd\xed\xd5\xd1\xc9\x21\x2c\x90\xcd\x03\xb8\x8d\xe1\xb0\x00\x60\x8c\x83\x9e\x2d\xcb\xbe\x8c\x14\x6e\xab\x7a\xec\xbb\x9a\xc4\x21\x89\xbc\xf1\x82\x54\xc0\xf2\x3e\x8f\xb9\x87\xc0\xf6\x1d\x00\x3d\x30\x71\x23\xa5\xb4\x29\x14\x80\xf5\x05\x56\xea\x01\x63\xbd\x32\xaa\xf2\xae\xe9\x14\x00\x23\x8e\xd5\xa2\x97\x2d\x9c\x63\xf6\xb0\x41\x35\x9d\xba\x5d\x34\x40\x58\x47\x4c\x04\xa4\x37\xd0\x57\xe0\xe5\xbd\x64\x91\xab\x2d\x63\xde\xb0\xa3\xa3\x0f\xbb\xd0\xa2\xdb\x08\x8b\xa3\x33\x99\x88\x32\x3e\x9f\x0c\x5c\xfa\x74\x69\xf9\x87\x33\x02\x47\xc6\x13\x1c\xa8\x2b\xff\x18\x5e\xa1\x6d\xfb\x86\xb1\x0b\x1e\x1a\xc9\xab\x9e\x91\x6c\xb7\xdd\x9e\x5d\x19\xf2\x32\x43\x86\x9e\x6b\xb8\x2e\xa9\x1e\x11\xba\xf0\x01\x11\xce\xfd\x22\x9c\xa3\x6d\x7b\x45\xe8\x80\x87\x44\x38\xef\x11\xa1\x6c\x5b\x1f\x98\xc0\x9d\xa4\x1d\x23\x38\xc7\xd2\x05\x95\x00\xf7\x97\x0c\x20\xfa\xc1\x7f\x67\x4c\xf7\x39\x6b\xae\xa6\x7b\x92\x3c\xbb\x47\xa7\xf9\x37\x18\xdd\x3e\x18\xdb\xb2\xe4\xfe\x5b\x72\xbc\x72\x54\x92\xd7\x4e\xf7\x88\xff\xc9\x3a\x05\x8e\x2b\x28\xe4\xba\x21\x2f\x79\x75\x69\x41\x05\x55\x04\x2a\xf1\x53\x1a\x02\xc1\x9a\xaa\xcc\x22\xb3\x27\xce\x04\xe5\x02\x58\x2b\x83\xd3\x16\x36\x49\xf1\x0f\xe3\xa6\xaa\x94\x92\xa2\x19\x39\x07\xd1\x8a\xfe\x67\x4e\xce\x60\x44\x3d\x2d\xdf\x1b\x97\xf1\x9f\x7c\x97\xf1\x55\x6e\x64\xe3\x92\xc3\x70\x8e\x80\x7d\xd2\x12\xfe\x72\x82\xa1\xf2\x68\xb6\x24\x67\xc1\xf4\x2f\xa7\x86\x1c\xe4\x4b\x09\x46\xd1\xb8\xec\xcc\xe6\xfb\x16\x82\xe8\x96\x9c\xeb\xee\x8b\x75\xe4\x9d\xe5\x85\xe3\x82\x72\x23\x3f\x79\x9a\x5d\x10\xe8\xf9\xae\xc7\x82\x59\x03\x09\xe9\x82\x05\xf2\x2c\xef\x8f\x4d\xf2\x45\xd2\x42\x9e\xf5\xb4\xae\xbe\x18\x78\x58\x9b\x26\xc8\xbb\xe5\x12\x3f\x4d\x13\xd5\x05\xe4\x1d\x43\xb9\xe5\xcc\xde\xaa\xb3\xf0\xb0\x66\x4d\x90\xaf\xd9\xc5\x62\x93\x2d\x16\x92\x9c\xfd\xa0\x9b\x6c\x93\x3d\xf2\x05\x91\xb0\x06\x41\xb9\xb7\x93\xd3\x7d\x9c\x2d\x25\x21\xe4\xad\x2b\x69\x56\xec\x3d\x23\x0b\x0f\x6b\xd3\x04\x79\x3f\xbb\xa4\x9b\xa7\xe9\x41\x99\x87\xf3\xc8\x8f\xf1\xb0\x8b\x89\x86\x1a\x11\x84\xf8\xda\x4c\x37\xf3\x78\x46\x97\x5f\xec\xe9\x18\xfc\x28\x8b\xce\xe6\x0f\x93\xe1\xcc\xeb\xd7\xe0\xc9\xcd\x74\x61\xcf\x08\x60\x04\x9a\x93\x83\x6f\xb0\x23\xf3\xc2\x98\x4c\x1e\x6c\xc6\x33\x5d\x03\x3b\x58\xc0\x3a\xe6\x1f\xd1\xbc\xdf\x7d\x23\x9a\x1f\x47\x90\x98\xc6\x69\x12\xf9\x78\xc8\x2d\x11\xcd\x70\xf9\xcb\xbf\x1e\x9a\x82\x92\x88\x39\x62\x7e\x7b\x3d\xef\xc8\x59\x86\xe7\x9c\x28\xbc\x04\xa7\x82\xfa\xe7\x7b\x5e\x6b\x35\xef\xee\xc9\xaa\x70\xad\xc7\x22\x86\x7f\x5c\xce\xfb\xaa\x6b\x40\x42\x96\xb9\x7b\x76\x83\x15\x71\xe2\x79\x79\x22\x4d\xde\xf9\x5c\xaa\x22\x17\x9c\xa6\x13\xf0\x57\x74\x9a\x5e\x0d\x02\x10\xd5\x3e\x2e\x64\x1d\xee\x9e\x4d\x2d\x7b\x9b\xc5\xf1\x0d\x9e\xb8\xd6\x7d\x40\x12\xa6\x00\x1e\x54\x95\xab\x95\xfa\x52\x6c\x97\xb6\x69\x43\x48\x19\x24\x65\x86\x9d\x1d\x71\x24\xc5\xcf\x0d\xaf\xdd\xc3\x96\x0b\x16\xc6\xa3\x0c\x1a\xa1\x19\x7c\x34\x43\x1c\x1a\x59\xc5\x26\xcf\xae\x14\xb5\x5c\x56\x73\x76\xfe\xa8\x3b\x5d\xce\xfb\x32\xc9\x0b\x4f\x1e\x7a\xf7\x50\xcd\xcc\x3e\x61\x0c\xef\x90\x3f\x1c\xa2\xc1\x67\x36\xc0\xab\x2b\x49\x51\x04\xd1\x8c\xbf\xb8\x12\xe6\x65\x58\x5d\xba\x5d\x3f\x18\x74\xe9\x39\x3f\x1f\x27\xfa\xcf\x40\xde\xbf\xd7\x46\x0c\x0f\x2f\x83\xe4\xeb\x89\xae\xa4\x46\xab\x2e\xe1\x91\x15\x28\x89\xb0\xc7\xa1\x94\x4f\xd5\xed\x47\x69\x52\xb3\xcd\x29\x70\xbc\x7e\x07\xbf\x52\x24\x05\x69\xba\xab\x71\x4b\xe1\xce\xcb\x69\xd8\x2e\x16\xa3\x1a\x9c\x16\xe6\x71\x32\x6b\x3c\x71\x24\xfe\x0f\xdf\x77\xb4\xe6\x68\x81\xf2\x5c\x4f\xc4\x2f\x17\xe7\x94\xa4\x42\xf9\x58\xdb\xef\x13\x09\xc2\x59\xde\x9e\xf3\x96\x85\xa2\x57\xd3\x74\xe7\x38\x56\x10\xa5\x45\xd5\x7a\xe7\x5e\xea\x4b\xc4\x79\x3a\x36\xce\xb1\x4e\xf5\xc4\x1f\xd9\xe1\x10\x67\xce\xfb\x97\x2b\xb2\x49\x57\x4a\x2f\xe9\xd3\x6a\x9e\x59\xa4\x82\x53\x03\xf3\x67\x2a\x2f\x49\x66\xfb\xb9\x8d\x0a\x45\x2a\x37\x83\xf6\xcb\x05\x75\xa7\x1c\xe2\x89\x53\xb2\x0d\xc9\x0e\xf6\x43\xb7\xfb\x94\xac\x0f\x2a\x64\x9e\x4f\x9f\xe2\xf5\x01\xd2\xc1\x19\x4b\x56\x64\x4a\x8c\xf6\x50\xae\x16\xcb\xd9\x6a\x23\xb1\x7a\xe2\x99\xf4\xb0\x26\x73\x8b\xb1\x43\x42\xf6\x69\x2a\x19\x5b\x27\xab\x6c\xbe\xb7\x48\xe1\xbc\x1d\x9e\xc8\x74\xbf\xb4\x51\x11\xf6\x56\xab\xe5\x54\x0b\xcd\x1b\xf7\x1c\x66\x19\x71\xde\x7d\xa5\xbc\x65\x4a\x6c\xc9\x66\xb1\x58\xcc\x4c\x4a\x38\x73\x64\xb1\xdf\xa4\xb1\x85\x89\xf0\xb6\x5e\xcc\x97\xf3\xc5\xed\x4f\x72\x02\xfb\x95\x7c\x39\x34\xc9\x99\xb4\x41\xdd\x54\xc7\x86\xb4\x6d\xb8\x67\xd7\xb8\x9a\xbc\x26\xed\xf5\xd0\x54\x67\xc8\xba\x32\xee\x05\x5b\x64\xdf\xba\x0a\x85\xc6\x41\x7c\xbb\xfd\xe9\x1b\xd2\x8e\x24\xc5\xab\x9d\xda\x04\xde\x8b\xc2\x66\xa4\xd1\x5f\x0a\x86\x0e\xc9\x3b\x0f\x25\x79\xcf\xc0\xbb\x98\x9a\x7f\xf6\x29\xd7\xc9\x4b\xaa\x9e\xe3\x62\xf9\x3a\x7a\xb2\x33\xce\x74\xc0\xe2\x59\x96\x7a\x77\x39\x7b\xba\x17\x82\xc3\xf9\xc6\x6b\x53\x63\x31\x11\xf7\xc8\x3a\x16\x44\x2b\xf7\xb9\x32\x13\x02\x44\xc3\x0d\x25\x0b\x4c\x61\x39\x97\x4f\x64\x63\xfc\xa1\xb6\x50\x3d\xb1\xb3\x58\x66\xe4\x38\x41\x6e\x18\x2c\x3f\x04\xb3\xe5\xfb\x09\xf0\x45\xce\xdf\xcb\xf8\xbd\xa7\xa6\x1f\xf2\x64\xd1\xb0\xfe\xfe\xe0\xde\x2d\xfb\xff\x89\x63\x66\x7f\x6c\x64\x2e\x58\xe8\x26\x75\x22\x22\x0a\x4b\x49\x52\x27\x49\x99\x9f\xf9\xda\x00\x9b\x02\x82\x99\x7c\x5e\x2f\xc8\xcb\x43\x5e\xe6\x1d\xd9\xdd\x5d\xc3\x1c\x4b\x23\x96\xf0\xfd\xf6\x85\x11\xf8\xa7\x9d\x7d\x5b\x8e\x2d\x15\x0e\x6c\x87\x0c\xe8\x0f\x7f\x1d\xff\x9f\xca\xfb\x9d\x94\x37\xbc\xbb\x34\xa0\x3f\xef\x53\xec\xff\x54\xe1\xef\xa4\xc2\xc1\x9d\xba\x01\x0d\xfa\x9e\xf3\xfe\xa7\x02\xbf\x9d\x02\xd9\xc6\xce\x84\xff\x13\xee\xab\xec\x8b\x13\x18\xff\x56\x55\xe7\xed\xd4\xc4\x0c\xf8\x3f\xf6\x5d\x23\x81\x84\x3d\x40\x25\x72\xe8\xf2\x76\xaa\xfd\x3f\x48\xda\xd9\x99\x72\x38\xec\x44\x12\xba\x66\x96\x37\xc5\xe3\x20\x0e\x34\xe5\x67\xfe\x5a\x1f\xbb\x4e\x6b\x5e\x41\x8a\x6d\x1c\x7e\xa1\xd6\xb8\xb8\xa4\x71\xc2\x22\x6f\x3b\xfb\x33\xa0\x93\xd3\x52\x6f\x40\x5e\x91\x15\x81\x59\xfb\x66\x6f\x57\xde\x9f\xe0\x12\x49\x74\x78\xcf\x6e\x93\xc3\xc1\xa8\xb7\x30\x86\xce\xac\xd8\x34\xdd\xcb\x5c\x76\xa2\x8a\x81\x43\x2a\xf8\xb9\x19\xa7\x21\xb9\x1f\x6b\x7c\x62\xc4\x71\x3e\x9a\x5b\xb7\xdc\x20\xf8\x6e\xb4\xad\x13\x70\x93\xc3\x01\x06\x76\x81\x32\x45\xb0\x7f\xe5\xd4\x52\x9b\x67\x8e\xf0\xef\xf9\xda\x2a\x9e\x66\xf5\xed\x79\xbb\xe4\x05\xc0\xd7\xba\x04\xbf\xd5\x29\x16\x2f\x67\x5e\xa1\x0d\xb0\xfc\x40\x3d\xd6\x97\x21\x25\xc9\x7d\xb1\xf1\xfc\x52\x0d\xdd\xcd\x6c\x7f\x25\x0f\xa7\xf0\xca\x00\x99\x92\xec\xf0\xe4\x58\xb4\x5a\x44\x18\x5b\x73\x88\xae\xf8\xb6\x9e\xdb\x4d\x9c\x80\x1f\xef\x61\x79\x4a\x02\x3e\x0b\x54\x70\xf3\x96\x91\xb7\x3f\x31\xd9\xa4\x2b\x7f\x33\xde\x81\x60\x21\x0c\xb1\x63\x0e\x8c\xde\xe1\x20\x79\x35\x4f\xf2\x8b\xbd\x52\x9b\x3c\x5b\x3c\x18\x7b\x96\x58\x27\xd9\x7e\x27\xd2\x49\xb7\xb6\x07\xe9\x71\x75\xd1\xda\x5e\xe1\x30\xa0\xa9\x28\x5f\x1f\xd2\x05\x99\x1f\x90\x79\x90\xd1\xf0\x6b\x09\x40\x7b\xb9\xb8\x47\x3f\x82\x45\x53\x3f\x62\xbf\xd8\xa6\x2d\x17\x07\xc6\xee\x2d\x36\x11\xb3\x9d\x5f\xa4\x7b\x28\x01\x3f\xde\xe3\x8a\x12\x04\xbc\x52\x92\x70\x43\x42\xfe\xfe\x24\x87\x59\x9a\xfa\x9b\xf1\x6b\xcc\x44\x18\x62\xe7\x0e\xbd\x49\x5e\x0d\xbd\xc9\xed\x74\x9b\xbc\x58\x12\x18\xdb\xda\x58\x37\xd9\x96\x38\xd2\x4d\xac\xbe\x17\xed\x71\xa5\xf1\xfa\x5e\x21\x09\xb0\x21\x1c\x6f\x5f\xc8\x3e\x4d\x51\x95\x71\x2a\x7e\x8d\x19\xf0\x01\x5e\xee\xd0\x97\x64\xd4\xd0\x97\xfc\xc0\xe0\x13\x58\x4f\xda\x8f\x25\x12\xed\x19\x99\x0b\x54\x40\x69\x3d\x5e\x75\x8b\xea\xa4\x74\x12\x97\xf8\x76\xe7\xb1\x30\xb9\xf7\x2b\x22\xb6\xb1\xcd\xf7\xe1\xa7\xd6\x3e\x7c\x6c\xee\x69\x7b\x91\x04\xc3\x7c\x59\x05\x3f\x79\x4a\x80\x94\x96\x37\x5b\x4f\x6f\x32\x9e\x9e\x83\x8e\x03\xe7\x2f\x41\xdb\x68\x0a\x5d\x71\x89\xcd\xfa\xd4\xc8\xeb\x75\x79\x57\x90\x3e\xfd\xc6\xf0\xbb\xc3\xca\xfd\x62\x09\xc8\xa8\xfb\x48\x16\xf0\x50\x55\x1d\xc8\x6b\x05\xc4\x32\xf0\x15\xc6\xcc\x6e\x84\xa4\x41\xf7\x09\x0a\x3f\xc6\x2a\xf8\x79\xf6\xaf\x04\x63\x04\xc5\x99\x46\xae\x6e\x0a\xbf\x9d\xf3\xac\x90\x43\x06\x2e\xdf\x1c\x92\x9e\xb5\x5d\x4f\x0e\x95\x51\x56\x61\xb4\xaf\x97\x7a\x6e\xf3\xee\x33\x1f\x63\x96\x81\x63\x05\x2e\x8d\xf3\x63\x9f\x54\x7d\xcb\x5b\xf5\xd6\xac\xe8\x11\x4b\xe2\x3c\x31\xfe\x0a\x1b\xd2\xd6\x55\xd9\xb2\xe3\x44\xac\xc4\xab\x56\x06\x35\x5f\xf0\xf1\x50\x32\x5f\xee\x70\xea\x79\x57\xe0\x23\x15\xe3\x10\x7c\xee\xa8\x94\xcc\x92\xc6\x30\x9a\x2e\x7b\x0b\xc6\xbf\xae\x1d\xb3\x1e\x9d\x09\x7f\x0f\x8e\xbf\xa6\x9d\x3b\xfb\x7e\xfa\x9d\x64\xdc\xd3\xce\x9d\x7d\x7f\x23\x8e\xef\x6b\xe7\xfa\xcd\x4c\x1c\xbe\xd8\xf4\x0d\x2d\xdc\xd7\xcc\xdd\x86\xf7\x16\xfc\x7e\x45\x33\x77\x9b\xdd\xef\x22\x5f\x7f\x33\x77\x1b\xdd\xef\x22\xdf\x13\xe2\x01\x7d\x37\x4e\x40\x5f\xc6\xf0\x06\x5f\x69\xb2\x6b\x8d\xbc\xfb\x32\x10\xcd\xd8\x54\x45\x7f\x61\x41\x03\xbd\xff\xd8\x59\xb9\x8f\xf3\xaf\x69\xc3\xa8\x45\x63\xc3\x6f\xcd\xea\xe3\x6d\xdc\xd3\xe3\x91\xf3\xf0\x57\x49\xb5\xcf\x6b\xdc\xd1\xe3\x37\x61\xf5\x9e\x36\xfa\xaf\x97\x7d\x8d\x25\x7f\xed\x10\xfc\x8a\x26\xee\xb3\xb1\xaf\x67\xf4\xe1\x26\xee\xb3\xb0\x6f\x2e\xd1\x1e\xe7\x70\x97\x7d\x7d\x73\x89\x62\x5e\xc1\x33\x55\x2b\x13\xd6\x5b\x04\x1f\xad\xa5\x8a\x03\x01\x7c\x5e\xbd\x0b\x5e\x73\x6c\x8c\x71\x65\x93\x7b\x6b\x98\x2b\x4e\xb3\xc1\x90\x83\x88\x5f\xc4\x36\xa2\x7c\x68\xc6\x47\x88\x47\x0f\xcf\x5d\xf3\x3c\x72\x1a\x7a\x90\x80\x46\xa7\x02\xf8\xaa\xf6\x46\x11\xd0\xe8\xd4\xaa\xbe\xaa\xbd\x51\x04\x10\x71\x8c\x73\x96\x0f\x12\x40\xc4\xf1\x68\x7b\xa3\x08\x20\xe2\x78\xb4\x3d\x9c\x80\xfd\xa0\xe9\xb0\xb5\x8e\x98\x70\x1e\xab\x8f\x9a\xda\x43\xad\x8d\xa9\x8f\x1a\xda\x43\xad\x8d\xa9\x8f\x9a\xd9\xd7\x49\xb2\xa7\x3e\x6a\x64\x5f\x27\xc9\x51\xad\x01\x13\xfb\x3a\x49\x66\x88\xcf\x51\xaf\x20\xf7\x0b\xd6\x9c\xe4\x1f\x90\x6c\x3f\x01\x47\x34\x8f\xb7\x37\x8a\xc0\x00\x7b\xa7\xaf\xed\x9f\x4d\x60\x80\xbd\x7b\xda\xc3\x09\xb8\x4f\xc6\x0d\xb4\x0f\x23\x93\x47\xc4\xdb\x57\xdf\x31\xbd\x87\x5b\x1b\x53\xbf\x9f\xb7\x47\x44\xdb\x57\xbf\x9f\xb7\x7b\x5a\x43\xeb\x0f\xe8\xd1\x89\xea\xdc\x4f\x2a\x72\x5f\xdc\x77\x18\xcd\x80\x07\xe8\x77\x32\x24\xfb\x93\xfd\xbc\x2f\x46\xe5\xa3\x49\x4c\x5d\x76\x73\x31\xd5\xd7\x2c\xbc\xb7\x28\xae\xa0\xae\xb2\x0c\x06\xf0\x8b\xd9\x50\x88\x6b\x52\x14\xdf\x8c\x90\xc8\x14\xc3\x1b\xd3\xb0\xe7\x95\x62\x8e\xa8\x32\x1b\x60\x89\x8d\x00\xc2\xb3\x25\x1c\x7d\x96\x6c\xf0\x63\xd6\x58\x9a\x23\x85\x38\x4c\xef\x5e\xd1\x20\x14\x55\xfe\x05\xf4\x9e\xa8\x81\xe3\x91\xcc\xfd\x67\xd3\x7a\xc9\xde\x29\x9c\x5e\x92\x8f\xca\xc7\x24\xaa\xee\x89\x20\x57\x32\x2d\x1c\x9f\xf1\xf4\x9f\x0a\x43\x2f\x7b\xf6\x53\xbe\xd7\x84\xfa\x48\x3e\x6c\x45\x06\x51\x7e\x1b\x03\xb9\x19\x0a\x11\x7c\xf2\xe9\x3f\x80\x85\x5e\x38\xed\x21\x7b\xa7\x70\xfc\xf4\x1e\x95\x8c\x49\x51\xdd\x73\x40\x6e\xa7\x5a\x38\x1e\xf9\x0c\x9c\x7e\x42\xef\xbd\xf6\x53\xbe\x53\x44\xbd\x24\x1f\x95\x92\x49\x54\xde\x25\x40\x2e\xc9\x9a\x28\x1e\x19\x0d\x1c\x35\x42\x6f\xdf\xf6\x12\xbe\x53\x44\x7d\x14\x1f\x95\x90\xa4\xf9\x99\x14\xc5\x15\x3c\x11\x0b\x8f\xb3\x6f\xa7\x9b\x87\x2e\xc0\x42\x37\x49\xe6\xf4\xe7\xfe\x9b\xb1\x03\xe7\x6c\x06\x50\x79\xbf\x02\x76\xb8\xfe\xbf\x2e\x55\x87\x3c\xa6\x60\x6a\xcd\xba\x7c\xca\xeb\x87\x85\x3e\x8e\x33\x5b\x38\xef\xe6\xb1\x8c\x19\x0c\xaf\x3d\x1b\x39\x0e\x4c\x34\xb6\xc1\xc7\xaf\xf5\xc3\x57\x08\x7b\x52\x76\x78\x93\x46\xc5\x71\xcc\x6f\xe7\x1a\xa7\x8d\xe2\x80\x39\xca\xaa\x4e\xd2\xbc\xfb\xb2\x8d\x66\xbb\x43\x5e\x74\xa4\xd9\x26\x45\x7d\x4a\x7e\x10\xe5\x3f\xcf\xe2\x0f\x82\x0f\x99\x12\x87\xff\x61\x1c\xfb\x52\x2d\xf4\x67\x64\xd1\x8d\x2d\xf1\xc6\x96\xf1\x87\xdb\xfe\xd2\x75\x55\x29\x33\x1a\xc8\x24\xa7\x36\x25\x6d\x4b\xdb\x58\x9d\x85\x01\x6f\x11\x25\x75\x4d\x92\x26\x29\x53\x79\x13\xe3\x5c\x65\x49\x11\x56\x35\x29\xed\xeb\x29\x02\x66\xa4\xb4\xd1\x71\x2d\x4b\x7e\x01\x1e\xa7\xe5\xaf\xf6\xee\xac\x97\x42\xf9\xc1\x19\xfd\xde\xb6\x3c\x7e\x66\x3f\x1c\xba\x8c\x07\xdf\x01\xde\x81\xd7\x1a\x19\x63\xd1\x21\xc9\x48\x20\x3a\x90\xe5\x49\x51\x1d\xaf\xc6\x2d\xe7\x43\xd5\x9c\x79\xaa\xdc\x22\xe9\xc8\x0f\xf1\x24\x9c\x2d\xdf\x7f\xd8\x85\xe7\xb6\x17\xde\x5b\xd7\xbd\x45\xed\x34\x19\x44\x73\x91\x53\xa4\xba\x74\xbb\xf0\x5c\xfd\x66\xa0\xab\xbf\x11\xdc\xca\xc0\xac\x7c\x78\x00\x09\xc7\x90\x12\xca\xcb\xbb\xe4\x13\xf7\x09\x27\xf6\x49\x86\x0e\x04\xa3\x11\xf7\x7a\x8e\xf3\xd8\xa3\xbc\x31\xc4\xaa\x89\x14\xbe\x48\xbd\xb1\x77\x74\x74\x66\x26\x50\x0a\x27\xa1\xd9\x07\x77\xb6\xc1\x4f\x25\xce\xeb\xd7\x60\x63\x4d\x81\xf6\xa1\x44\x1f\x0e\xe0\xb6\xc8\xeb\xad\x4e\xcd\xf3\xea\x18\x6f\x48\x91\xb3\xa6\xaa\xed\xb7\x75\xc7\x8e\x98\x05\xf2\x54\x26\x9d\x6f\x6c\xfa\x6c\x94\x5c\xe5\x04\x13\xe3\xf3\x8b\x56\xa1\xaa\x96\x97\xd7\x31\xb3\x92\xa8\x66\x3d\x97\xd9\x7b\xd0\xf2\x3b\xf6\xc6\xd3\x12\xbe\xa4\x3e\x5d\xa9\x2c\x40\xda\x2c\x38\x4d\x99\xc3\x05\x3e\xea\x3e\xd3\x48\xf0\xcc\xa4\x73\xae\x55\xd2\x54\x9d\x63\xa7\x45\x1d\x2b\x53\x4e\x09\xd8\xa4\x58\xf3\xda\x2f\x7e\x41\x57\x1e\xb0\xac\x96\xcc\x83\x83\x1c\x0f\xdc\x1d\xe1\x0b\x6c\xde\x71\xb3\x89\x20\xda\x77\xe5\xc7\x08\x3c\x7c\xc6\x54\xed\x5e\x5a\x8b\x91\x7a\x72\xfd\x8d\x92\xe0\xb9\xc5\xdc\x3a\xcc\x8d\x7f\xd4\xbf\x9a\x49\x98\x7b\x5e\x30\x33\x06\x39\x07\xad\x62\x9d\xd4\x83\xa5\xea\x0a\x58\x0a\x24\x6b\x60\xa3\x03\x4d\x3d\xa9\xda\x37\xd2\x3c\x48\xb2\x81\x56\x3e\xda\x37\xa7\x7c\x60\xef\xfc\x6d\x36\x33\xc0\x7b\x21\xf9\xde\x70\xfc\xa8\xab\xaa\xa2\xcb\xc1\x20\x4c\xf6\x6d\x55\x5c\x3a\x62\x3c\x6a\x6d\x5d\x2f\x64\xef\xb0\xe7\x05\x1d\x1a\xf2\xe1\xfc\x9e\x7c\x20\xd3\x68\xb1\x1b\x31\xfc\x04\x27\xc6\xb8\xdb\xe0\xe8\x1b\x88\xdf\x55\x46\xba\xa4\x70\x0e\xac\x74\xc9\x92\xb6\x28\x54\xf7\xde\x26\x44\x16\x97\x41\x25\xb2\x78\x3b\x1b\x90\xee\xa1\x0c\x6f\x8d\x72\xdb\xf3\x53\x0e\xf3\xd2\x4c\x83\x36\x8b\xed\x9c\x7f\xeb\xa1\x0c\x2a\x23\xef\xfe\x81\x37\xd3\xe1\x7d\x48\xc9\x48\xd2\x34\xd5\x67\x44\xf5\x56\xc2\x97\xd8\x8c\x6d\x91\x73\xe2\xfc\x66\x2b\x1b\xe4\x86\x62\x02\xab\x29\x73\x36\x5f\xc6\xef\xcd\x6c\xea\x60\xd2\xe4\x2c\xc8\x07\x87\x8d\xa3\xc7\x70\xaa\x07\x6d\x31\x1a\x03\x0d\x7e\x15\x7d\x66\x3d\xde\x06\xd4\xd5\xd0\x07\x5b\x40\xa9\xb3\x2d\xd1\xf8\xfd\xce\x7c\x7d\x93\x99\xb9\xb7\x25\xa3\x35\x7e\x34\x00\x6b\x0f\x93\x96\x6c\xce\x7a\x9d\xdf\xdf\x5e\x2c\x5b\xdc\x81\xef\x97\x68\x73\xf2\xf5\x4c\xb7\xc1\xd1\xc6\xe0\x34\x66\xae\x40\x91\xe6\x50\x93\x80\x6d\xbe\x41\x13\x5e\xbd\x79\x4d\x62\x4c\x23\x75\x55\xb3\xf7\x28\xdc\xb1\x09\xd8\x87\xd1\xd0\x54\xcf\xd1\xe2\xf1\x59\x35\xbb\x3c\xad\xa0\xdf\x36\x9d\x35\xcb\xef\xe4\x09\x32\x7b\x82\x39\x37\x00\x65\xef\x82\xbd\x4d\x00\x2a\x13\x8b\xbb\xd5\x47\x20\x99\x99\x4d\x9b\x73\x52\x28\x61\x3a\x9e\x82\x87\xe0\x12\xea\xbb\xd4\x2f\xe1\xae\x3f\x30\xe1\xae\x0b\x30\xe0\x76\xa0\x66\x3c\x29\xb2\x30\x73\xbc\x2e\xac\x05\xfc\xc2\x5e\xc0\xaf\xf1\x4d\x93\x27\xfa\xd3\x13\x76\xee\xe9\x8f\xa5\x06\x35\x65\x04\xda\xec\xf4\x82\x44\xef\x42\x04\xfc\x35\x58\x81\xf1\x1c\x31\x43\x9f\x58\x7f\x6f\x93\x43\x87\x5a\xad\x19\x3f\x7c\x9d\x7f\x31\x9b\xb4\x2e\xc0\x4c\x5d\x26\x05\x53\x26\x1e\xcf\x51\x26\x5e\x4e\x79\x67\xd8\x88\x24\x8c\x4f\x4b\xd3\xa9\x33\x70\x65\x77\xdc\x19\x1e\x24\xcc\xd5\xa5\x86\xc5\xb2\x78\x4f\xe4\x64\x80\xbc\x03\x46\x04\xff\x8a\xdb\xe0\xdd\x4e\xeb\x76\xe7\x58\xdc\x68\xe6\x58\xa6\x5a\xc3\xfa\x65\xcf\x0d\xb7\xc3\x7b\x6c\x8c\x9b\xa9\x35\xe1\x5b\x6d\x18\x4e\x07\xe6\x0c\x06\xe5\x96\x10\x70\x46\x90\x9e\xf3\x81\xc9\xda\x17\x52\x8b\xef\x60\xc6\xe8\x32\xa7\x30\x5e\xdb\xe0\x02\x10\x3e\x73\x83\xae\x1a\x00\x5b\xe1\x4a\x88\x1e\x5e\x90\x6e\x8b\x75\x94\x5f\xdb\x83\xcc\x19\x5d\xa7\xf5\x6d\x65\xcb\x87\xb5\xfb\xb4\xcd\x85\x69\xb5\x03\x7d\x3e\x10\x01\x28\xf6\x2a\x1b\xf0\x81\x74\x5a\xa4\x5f\xb9\xa3\x79\xbe\x39\xa2\x0d\xe3\x16\xa5\x49\x53\x5d\x5a\x2c\xa1\xbc\x86\x89\x80\xdc\x5d\x17\xdb\xe9\x6a\xe0\xeb\xf7\x66\xe5\xe7\x88\x5d\xc6\x33\x5c\xb0\x4b\x0f\xd9\x3c\x93\x29\x06\x45\xfa\xdd\x80\x39\xe4\x01\x38\xde\x38\x4f\xd7\x8b\x42\x78\xe6\x5e\xc3\x83\xb8\x34\xc4\xdd\x5f\xa7\xbc\x24\xaf\x9d\x5b\x5a\x37\xe4\xc5\x4e\xb2\x83\x53\xbc\xca\x33\x6d\x77\x10\xf6\x85\x3d\x7d\x0a\xa0\xe4\xae\xc2\x6f\x63\x70\x46\x58\x0e\x1c\x1f\x01\x66\x91\x38\x53\x22\x40\xf0\xf5\x86\x77\x96\x47\x01\x7d\xad\x08\x3c\x40\xcc\xc2\xa3\x23\xa0\xa9\x8a\xa1\xd0\x4f\x2d\x3c\x84\x4c\x96\xef\xc7\x6c\xa2\xc3\xcf\x04\x83\x69\x3a\xdd\x4f\x03\x76\xd6\xd0\xd5\x07\x97\x71\x2e\x82\xd1\x89\xb6\x98\xc0\x19\x1b\x61\xdb\x55\xf5\x0f\xe6\x3e\x47\x10\x7f\xf0\x01\xe3\x38\x9e\x7e\x08\xa8\xf0\x3e\x8c\xc8\x8e\xd5\x55\x01\x13\xf9\xc4\xa6\x3f\xf1\xd0\x84\x24\x1b\x52\x93\xa4\xdb\xf2\x7f\xc2\x57\x29\xdd\xba\xa9\x8e\x79\xb6\xfd\xd7\xff\xfc\x0b\x6d\xf2\x6f\x72\x6f\x38\xfa\x6b\x9e\x36\x55\x5b\x1d\xba\x48\x35\xdf\x76\x49\xd3\xfd\x99\x76\xa4\xed\x9a\x9f\xbf\xff\x6e\x1d\xf3\xff\x7d\x3f\x09\x48\x99\x01\x40\xac\x01\xff\x53\x54\xfe\xdb\x97\x9a\xfc\x3c\xc5\x24\x0d\x8c\x88\x6d\x2d\xab\x4d\xd3\xb7\x10\x3e\x97\x85\x5f\xfe\xcb\xaf\x14\xbe\xa0\x6f\x2b\xe4\x77\x10\x7e\xec\x13\xfe\xfa\x0e\xe1\xab\x8f\x5e\x76\x39\xff\xfe\xa5\xb6\xbb\x9d\x21\x66\xef\xda\x8c\xda\xec\xb2\x5b\x11\x6f\xae\xd2\x79\xc9\x65\x41\x00\xad\xf9\x55\x02\xc7\x56\xbd\xca\xcd\xa9\xfa\x15\x4b\x60\xac\x56\x50\x48\x4c\xc2\x26\x99\x43\x72\xce\x8b\x2f\xdb\x96\x34\xf9\xa1\xb7\x03\xf6\x43\x86\xdf\xff\x7d\x16\xcf\x37\xdf\x7b\xeb\x50\xe6\xd0\x3a\xc9\xf7\xc6\x74\x9b\xe5\x69\xd2\x55\x4d\x8b\xcc\xa4\x32\x7e\x66\xb9\xf8\x65\xe0\xa7\x16\xd3\xcb\x9d\xdc\xdb\xb5\xa2\xc1\x79\xfc\xde\x7e\x04\x71\xc4\x8b\x4e\x08\x4b\xee\xfb\x4e\x21\x5c\x19\x4d\x81\xcc\x81\x88\xf5\xe2\x9d\x32\x5a\x76\xdb\x70\xb3\xd9\x60\x19\xed\xe1\xdb\x69\xe0\xa1\x0e\xff\xa7\x52\xb0\xf7\x10\xfc\x1d\x79\xd5\x08\x8c\x51\xc3\x1a\x41\x8f\xa4\xb7\x57\x0b\x5c\xd1\x95\x19\xe8\xca\xcc\x97\x4e\x03\xea\x5a\x26\xf9\x77\x94\xc6\x9d\xe5\x52\x46\xaa\xf4\x37\x78\x88\x40\xef\x85\xec\xe0\x1b\x11\x46\x3e\x3d\x88\xff\xa6\xae\x8f\x33\xcd\x3e\x2f\x5c\x61\x5d\xf6\x89\x79\xd4\x0b\x17\x8f\x8e\x70\xb5\xff\xaf\xe5\x3c\x77\x86\xe9\xd2\x19\xa6\xe6\x2b\x1f\x73\x23\x56\x56\x3a\x60\xb8\x33\xb5\x36\x98\x01\xf3\x07\x8f\x93\xe0\x83\x0e\x9e\x20\xbd\x45\x69\x41\x92\xe6\x90\xbf\x8a\x71\x3b\xd1\x05\x2c\xec\x9f\xe8\x07\x3b\x34\x86\x2a\xb1\x51\xc2\x43\x71\xc9\x33\x17\x51\x94\x0b\x74\xba\xa6\x90\x28\x6a\x7d\x31\x89\xa8\x93\x08\x4f\x55\x93\xff\x46\xab\x15\x01\x2f\xe0\x59\x29\x24\x7a\x1f\x8e\x20\xb3\xef\xa8\x6c\xab\x62\x9f\x68\x8e\x61\x19\x40\xe3\x69\x25\xe4\x53\x3c\xcf\xba\xcc\xa8\xe8\xc7\x12\xa4\xca\xe4\x45\x55\xa0\xbf\xeb\x62\xc8\x83\xf8\xd3\x00\x8a\x0f\x89\x16\x8e\x2c\x35\x51\xe5\x89\x1f\x1b\x59\x95\x0b\x74\xf6\x30\x9a\x42\xe2\x7f\x29\x90\x3c\x2a\x04\xe0\xaa\x48\x20\xc1\xaf\x72\x0a\xcd\x28\x74\xd7\x83\x72\xc6\x64\x47\x9b\x6f\x3d\x26\xe4\x31\x18\x60\x18\x23\x8c\x01\x51\xf4\x28\xa5\x02\x75\x99\x2a\x42\x75\xe2\x91\xbe\x21\x65\x57\xae\x98\x10\x85\xbc\xa8\x50\xb6\xfb\xaa\x3b\xdd\x22\x3e\x97\x89\x6f\x9c\xe6\x0e\xdc\x88\x57\x5c\x60\xaa\x53\x70\xd0\xe8\x8f\xf9\xb9\xae\x9a\x2e\x29\xbb\x1b\x48\x98\xaa\x5f\x0b\x80\xf0\x53\x9e\x11\x63\x4d\x0c\x81\xed\xa9\xfa\x6c\x72\x05\xa1\x79\x29\xbe\x2c\x5e\xc1\xc7\x46\x79\x2c\x87\xcd\xb0\x8c\x38\x9d\xc2\xb6\xf1\x4f\x71\x90\xec\xdc\xcd\x43\x7b\x22\xee\x7d\x46\x5a\x9d\x14\x62\x6c\x67\xa4\xf4\x30\xbe\x73\xf8\x81\x6c\x27\x87\x43\xfe\x6a\x9d\x68\xb8\xfd\x29\x3c\xb7\xe1\x4b\x4e\x3e\x53\x34\x31\x5f\x67\xe4\x25\x4f\x09\xf7\x01\xb7\x48\xf4\x35\x7c\x6d\x27\xea\xf7\xf6\xac\x7f\x3f\x67\xfa\xf7\xe2\xe8\x13\xa9\xff\xe1\x79\x4d\xdf\x2b\x71\x36\xa8\x30\x44\x3e\xda\xba\xc6\x0b\x0b\x9b\xea\x33\x24\x74\x82\xdd\xe9\x32\x7f\xbd\x94\x14\x05\xa8\xe8\xfd\xf0\x2e\x5c\xa6\xea\xd5\x66\x33\x35\x7a\xd5\x9e\x47\xf6\x0a\x20\x3a\xbd\xb2\x61\xfe\x5e\xb5\x67\xd8\x2b\xa7\xde\x70\xaf\xf8\x27\x79\xbb\x57\xd3\x29\x0d\xe6\x40\xb7\xce\xd9\xc8\x6e\x01\x44\xa7\x5b\x36\xcc\xdf\xad\x73\x06\xbb\xe5\xd4\x1b\xee\xd6\x94\x7d\xc7\x06\x1d\x00\x96\xda\xdf\x01\x80\xe8\x74\xc0\x86\xf9\x3b\x50\x1c\x61\x07\x9c\x7a\xde\x0e\x38\xa3\x85\x0f\x6b\x68\xaf\xd6\x40\xbb\xdb\x52\x05\xc5\xf6\x7c\x07\xc5\x01\x2b\x11\x24\x81\x9e\x86\x49\x2a\x0d\x89\xca\xfe\xa9\x44\x4f\x49\x75\x93\x97\xdd\xc0\x8c\xc3\x71\x3c\x55\xfa\x55\x6f\xe2\x3a\xda\x47\xc0\x7e\x03\x60\xc8\xd0\x06\xb0\xda\x1e\x33\x10\x5d\x10\x82\xe9\xed\xf4\xed\x0f\xff\x37\x00\x00\xff\xff\xb9\xfe\x06\x55\xaf\x60\x01\x00") +var _web_uiV1StaticBootstrapMinCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5d\x8f\xe3\x38\x92\xe0\xfb\xfc\x0a\x4d\x35\x0a\xdd\xd5\x65\xa9\xe5\xcf\xf4\x07\x3a\x31\x7b\xb3\x8b\xbb\x01\x76\xf6\xe5\xe6\x61\x81\x9e\x3a\x40\x96\x68\x5b\xd3\xb2\xa4\x95\xe4\xac\xac\xf6\xfa\xbf\x1f\xf8\x1d\x24\x83\x92\xec\xca\x6a\xdc\x01\x33\x89\xe9\xca\x64\x04\x83\xc1\x88\x20\x23\x48\x91\xc1\x9f\x7e\xfc\xe3\x1f\x82\x1f\x83\xff\x51\x55\x5d\xdb\x35\x49\x1d\xbc\xcc\xa3\x69\x34\x0d\x7e\x38\x75\x5d\xbd\xfd\xe9\xa7\x23\xe9\xf6\x12\x16\xa5\xd5\xf9\x03\xc5\xfe\x73\x55\x7f\x69\xf2\xe3\xa9\x0b\x66\xf1\x74\x1a\xce\xe2\xe9\x22\xf8\xdb\xe7\xbc\xeb\x48\x33\x09\xfe\x52\xa6\x11\x45\xfa\xf7\x3c\x25\x65\x4b\xb2\xe0\x52\x66\xa4\x09\xfe\xfa\x97\xbf\x71\xa2\x2d\xa5\x9a\x77\xa7\xcb\x9e\xd2\xfb\xa9\xfb\xbc\x6f\x7f\x52\x4d\xfc\xb4\x2f\xaa\xfd\x4f\xe7\xa4\xed\x48\xf3\xd3\xbf\xff\xe5\xcf\xff\xf6\x1f\xff\xfb\xdf\x68\x93\x3f\xfd\xe1\x0f\x3f\xfd\xf8\xc7\xa0\xac\x9a\x73\x52\xe4\xbf\x91\x28\x6d\x5b\xca\x6a\x1c\xc5\xc1\x7f\x33\xda\xa2\xb9\xe0\xbf\x83\x63\xde\x45\x79\xf5\x93\xc2\x0d\x7e\xfc\xe9\xd4\x9d\x8b\xeb\xa1\x2a\xbb\xf0\x90\x9c\xf3\xe2\xcb\xb6\x4d\xca\x36\x6c\x49\x93\x1f\x76\xe1\xb9\x0d\x3b\xf2\xda\x85\x6d\xfe\x1b\x09\x93\xec\x1f\x97\xb6\xdb\x4e\xe3\xf8\xfd\x2e\xfc\x4c\xf6\xbf\xe6\x1d\x0e\xbd\xed\xab\xec\xcb\xf5\x9c\x34\xc7\xbc\xdc\xc6\xb7\xa4\xe9\xf2\xb4\x20\x93\xa4\xcd\x33\x32\xc9\x48\x97\xe4\x45\x3b\x39\xe4\xc7\x34\xa9\xbb\xbc\x2a\xe9\xaf\x97\x86\x4c\x0e\x55\x45\xa5\x74\x22\x49\x46\xff\x39\x36\xd5\xa5\x9e\x9c\x93\xbc\x9c\x94\xc9\xcb\xa4\x25\x29\x43\x6e\x2f\xe7\x73\xd2\x7c\xb9\x66\x79\x5b\x17\xc9\x97\xed\xbe\xa8\xd2\x5f\x6f\xc9\x25\xcb\xab\x49\x9a\x94\x2f\x49\x3b\xa9\x9b\xea\xd8\x90\xb6\x9d\xbc\xe4\x19\xa9\x14\x66\x5e\x16\x79\x49\x42\x56\x61\xf7\x42\x28\x57\x49\x11\x26\x45\x7e\x2c\xb7\xfb\xa4\x25\x14\xca\x09\x6d\xcb\xaa\xfb\xe1\x97\xb4\x2a\xbb\xa6\x2a\xda\x4f\x1f\x14\x89\xb2\x2a\xc9\xee\x44\xa8\x7e\xb7\xf1\xed\x97\x53\x9e\x65\xa4\xfc\x34\xe9\xc8\xb9\x2e\x92\x8e\x18\x78\xb7\xe4\xba\x4f\xd2\x5f\x69\x37\xca\x6c\x1b\x07\xf1\x2d\xd9\x26\x69\x97\xbf\x90\x49\xb2\x3d\x55\x2f\xa4\xb9\x56\x97\x8e\x36\x4a\x65\xb4\xdf\x37\xbf\x74\x79\x57\x90\x4f\xd7\x7d\xd5\x64\xa4\x09\xf7\x55\xd7\x55\xe7\xed\xb4\x7e\x0d\xb2\xaa\xeb\x48\x76\xdb\x4f\xda\xae\xa9\xca\x23\x57\xd7\x67\xce\xc6\x53\x1c\xdf\xb2\x43\xc9\xcb\xda\xee\x4b\x41\xb6\x79\x97\x14\x79\x7a\x3b\x4d\x45\x61\xfe\x1b\xd9\xce\xc8\x79\x27\x34\x12\xad\x9e\xc8\x39\x88\x6f\xe7\xa4\xf9\x15\xb2\xf8\xdd\xe1\x10\xef\xd2\xaa\xa8\x9a\xed\x77\x71\x1c\xdf\xda\x73\x52\x14\x80\xc4\x3a\x7e\x7f\x6b\x2f\xfb\x49\x7b\xa9\x41\xe9\xd3\xf2\xfd\x8e\xc9\x55\x8a\x65\x57\x57\x6d\x4e\x55\xb5\x6d\x48\x91\xd0\xfe\x7a\x85\x4d\x29\x75\x55\xbd\x0d\xa3\x25\x39\x53\xda\x57\xd1\xe9\x30\x9a\xd1\x92\xfc\x7c\x14\xd2\xd8\xc6\xb7\xf6\xe5\xc8\xf4\xb2\x6d\xaa\xaa\xfb\x70\xa5\x02\x3c\x14\xd5\xe7\x2d\x57\xc2\x8d\x1b\x91\xb4\xba\x29\x39\x07\x8b\xb8\x7e\xbd\x9d\x9a\x6b\x78\xae\x7e\x0b\xf7\xd5\x2b\xe5\x37\x2f\x8f\x5b\xaa\x57\x52\x76\xb4\x68\xe7\x29\x56\x2a\xae\x1b\xa2\x5b\x4a\x2e\x5d\x75\x4b\xab\x8c\x4c\x7e\xdd\x67\x93\xba\x21\x93\x36\x39\xd7\xc6\xe0\x39\x57\x65\xd5\xd6\x49\x4a\x26\xea\xb7\x9d\x96\xd5\x94\x9c\x6f\xfb\x4b\xd7\x55\xe5\x24\x2f\xeb\x4b\x37\xa9\xea\x8e\x9b\x79\x4b\x0a\x92\x76\x13\x3a\x9c\x92\x86\x24\x57\xae\x86\xbc\x3c\x91\x26\xef\x18\x05\xf5\x87\x1a\x57\x9c\x92\x66\xef\x25\x6f\xf3\x7d\x41\x64\x0b\x9c\xe4\x95\x8d\xd0\xae\x49\xca\xf6\x50\x35\x67\x6e\x99\x02\x83\x0e\xfd\x80\x31\xf2\x4b\xf7\xa5\x26\x3f\xf3\xe2\x4f\x13\x50\xd4\x90\x96\x74\x46\x49\x7b\xd9\x9f\xf3\xee\xd3\x55\xce\x00\x49\x5d\x93\xa4\x49\xca\x94\x6c\x79\xfd\x5d\x7a\x69\xda\xaa\xd9\xd6\x55\x5e\x76\xa4\x11\x8d\xfd\x92\xe5\x6d\xb2\x2f\x48\xf6\x09\x36\xab\x0a\xaf\xa2\x52\x46\x0e\xc9\xa5\xe8\x44\xa5\xed\x96\xe9\xee\x50\xa5\x97\x36\xcc\xcb\x92\x34\x9c\x13\xb7\x5c\x99\xc9\xae\x4e\xb2\x8c\xaa\x33\xbe\x31\xd4\x2b\xb4\x4d\x3e\xef\xdd\x40\x6f\xd2\x13\x49\x7f\xdd\x57\xaf\x66\xa7\x93\x2c\xaf\xe8\x38\x54\xb6\xa1\x86\xe4\xab\x4d\x9f\xd7\x28\x2f\xe7\x3d\x69\x3e\x6d\xb7\x52\x2a\x8c\xa9\xb0\xad\xf3\x32\x84\x0a\xf7\x60\x57\x97\xce\xc4\xbe\x0a\x86\x99\xc5\x41\xe1\x93\xa4\x49\x4f\xa8\xf0\xa9\x9e\x0f\x39\x29\xb2\x5d\x9f\xbd\xcb\x8a\x77\x0d\x07\x84\x03\xcd\x3b\x2f\x08\x53\xca\x44\x81\x74\xd6\x57\x21\x23\x69\xd5\x24\x74\x9e\xc0\x7a\xc3\xcc\x94\x75\xa7\x25\x9d\x54\x2e\x9d\x0a\xdb\xaa\xc8\xb3\xa0\xcd\x8b\x17\xd2\xa8\xa1\x10\xcc\x6a\xad\x98\x68\xbe\x24\xe7\x20\x5a\xcd\xd8\x3f\x4f\x74\x1e\x29\xc8\x91\x94\x19\x66\x23\x6a\xc0\x99\x83\x5c\x8e\x4b\x67\xa6\xed\xa8\xb9\xca\x19\x3a\xad\x8a\x22\xa9\x5b\xb2\x95\xbf\xec\x04\x80\x8e\x7b\x41\x3f\x9b\x74\xa7\xab\x6e\xef\x4f\x67\x92\xe5\x49\x50\x37\x79\xd9\x5d\x7f\xe4\x83\xb3\x3d\x25\x59\xf5\x99\x75\xf9\x8f\xf9\xb9\xae\x9a\x2e\x29\x3b\x30\x11\x83\x42\x30\x5b\xb3\x21\x5d\x27\x0d\x29\x3b\x88\x40\x15\x88\xd1\xbb\x25\x93\x84\xcd\x10\x1d\xc9\x78\xb3\x5a\x01\x5b\x16\x86\x70\xf7\xf7\xcb\xa9\x21\x87\x4f\xdb\xe4\xd0\x91\xe6\x2a\x6c\x60\xfb\x2e\xf8\xe1\x5d\x90\x74\x5d\xf3\x03\x85\x7e\x08\xde\x7d\x78\x07\x3d\x96\x17\x9b\x81\x05\x3a\x23\xfc\x7f\x7e\x7e\xf7\x8f\xe4\x25\x69\xd3\x26\xaf\xbb\xed\x3b\x51\x73\xa2\x80\xdf\xbd\x73\x88\xbd\xa3\x73\xf0\x84\x39\xed\xff\xba\x54\x1d\x71\x8d\xe1\xbb\xcd\x66\xb3\xab\x93\x23\x09\xf7\x0d\x49\x7e\x0d\xf3\x92\x06\x1a\xdb\xe4\xa5\xca\xb3\x5b\x47\xc3\x09\xe5\x97\x99\xfa\x42\x1e\x61\x84\x4c\xc3\xb7\xae\x99\x50\x37\xe3\xab\x4f\x61\xe7\xe4\x35\xfc\x9c\x67\xdd\x89\x45\x37\x40\xa6\xf5\xe4\x34\x9b\x9c\xe6\xd7\xaa\xa9\x4f\x49\xd9\x6e\xe7\xbb\xcf\x79\x56\x7d\x6e\xb7\xf3\x1b\x07\x00\xaa\xac\x5b\x82\xa8\x98\x9a\x4d\xdf\x7b\x00\x84\xa3\x32\x79\xd9\x27\x8d\x19\x4f\x44\x8c\xfb\xa0\xcb\x26\xf2\xb7\x13\x20\x11\x0a\x83\xb1\x08\xed\xbb\xf2\x39\x4a\x93\x86\x74\x93\x28\x6b\xaa\xfa\x52\x3f\x83\x32\x69\xc9\x5d\x55\x87\x98\xc1\xdd\xa2\x22\xd9\x93\x02\x91\x39\x0d\x10\xa2\xfe\xd1\x00\xc9\x70\xc1\x73\x4c\x92\x05\xdd\x69\xe2\x14\x65\x48\x2b\x59\x96\x01\x2a\xb7\x1f\xaf\xc8\xfc\x05\xe6\x66\x7b\xe6\x03\x20\xb4\xf4\xb6\xdd\x93\x43\xd5\x90\x89\x30\xba\x37\xa6\xae\x43\x6b\xe6\xfd\x57\xb3\x68\x09\x22\xe7\xa4\x0e\x4f\xf9\xf1\x54\xd0\xb9\x45\x08\xbf\x39\xee\x93\x1f\xe2\x09\xfb\xf9\xc0\xa3\x68\x18\x5c\xbc\xfb\x5f\xa4\x78\x21\x34\x92\x0a\xfe\x83\x5c\xc8\xbb\x89\xfa\x7b\xf2\x2f\x4d\x9e\x14\x13\x10\xba\x83\xa0\x63\x51\xbf\x1a\x11\xda\x34\x5a\xcc\xd6\xcb\xa7\xe9\x62\x2e\x27\x99\xf9\x7c\xbe\x43\x2d\x89\xcf\xfc\x13\x23\xa2\xd0\x41\x0a\xe4\x0d\x86\x2a\xbc\x5d\x59\x02\x9b\x16\x65\x37\x19\xe0\x7c\xb7\x98\xad\xf7\x69\xb2\xb3\x27\x24\x1e\x3f\xf3\x28\x79\x92\x6c\x99\xa3\x97\x55\x66\xc9\x6a\xb1\x59\x39\x55\xc0\x1c\x26\xf0\x65\x74\xdd\x9d\xf2\x52\x84\xd0\x3b\x59\xb6\xac\x5f\x03\x3a\xd3\x07\x52\x1d\x3c\x96\x68\xf2\xf2\xc8\xbb\x2f\x31\xc3\xea\x70\x68\x49\xb7\x0d\x67\xf5\xab\x15\x63\xc6\x6c\x72\xb0\x62\xdb\x73\x9e\x65\x05\xb9\x45\xf9\xf9\x18\x36\xa4\xad\xab\xb2\xa5\x11\x7f\xd4\x9d\x2e\xe7\x7d\x99\xe4\xc5\x73\x7e\x3e\x82\x3f\x83\x84\x17\xa4\x49\x53\x5d\x5a\x52\xf0\xc8\xe1\x39\xca\x3b\x72\xee\x81\xb0\x5a\xe6\x1a\x68\x67\x4e\x53\x3b\x18\x42\x70\x76\xa8\x72\x89\x1c\x66\x21\x8d\x72\x2e\xed\x76\x55\xbf\x72\xb0\x62\x49\xb9\xab\x1e\xc3\x41\xad\x65\x87\x0e\xe0\x9d\xd9\x1e\x25\xaa\xc6\x00\xf5\x61\x7c\xad\x90\x14\x45\x10\xcd\xda\x80\x24\x2d\x09\xf3\x92\x86\x44\xbb\x01\x30\xba\xae\x1b\x12\x42\x9a\x37\xa9\x9e\xb3\x04\x4f\xcb\xf8\x3d\x5d\x28\x70\xbd\xd2\xc9\x70\x3b\x8b\xeb\x57\x11\x5e\xc8\x85\x18\x2b\x52\x21\x84\x9e\x38\x61\x77\x09\x21\xb7\xa8\x6d\xc2\xaa\x2c\xbe\x5c\xd5\x3a\x28\xd9\xb7\x55\x71\xe9\xc8\x4e\x30\x56\xab\x05\xc6\x54\xb5\xb2\x0d\xa7\x20\x86\x89\x77\xd6\xf2\x66\x97\x16\x79\xbd\x6d\x48\xda\xa9\xf9\x41\xf1\x72\x3b\x4d\xb9\x1f\x9a\x9c\x16\x93\xd3\x72\x72\x5a\x4d\xa2\xd3\x74\x12\x9d\x66\x93\xe8\x34\x9f\x44\xa7\xc5\x24\x3a\x2d\x27\xd1\x69\xe5\x1f\xb1\x22\xc4\x59\xc6\xb1\xa5\xf1\xe9\xce\x58\x8a\xdc\x4e\xd3\x80\xad\x0b\x27\xa7\x99\xfc\x65\x2e\x7f\x59\xc8\x5f\x96\xf2\x97\x95\xf8\x25\x52\xd5\x22\x55\x2f\x52\x15\x23\x55\x33\x52\x55\x23\x55\xf7\x34\x0d\x22\xd5\x64\xa4\xda\x8c\x54\xa3\x91\x6a\x35\x52\xcd\x46\xba\xdd\x48\x37\x1c\xe9\x96\x23\xdd\x74\xa4\xdb\x8e\x74\xe3\x11\x58\xfe\x0a\xe9\x2c\x6c\xe9\xc8\xf9\x73\xb3\xd9\xdc\x98\xc4\x99\x22\x22\xae\x8c\xe8\x34\x1f\xb0\xa8\x29\x5b\xa0\x4e\x1d\x19\x01\x11\x39\x42\xd6\x52\x83\x5d\x43\x44\x14\x61\xd2\xd2\x3d\x87\x7e\x69\xf9\xfe\xc6\x6c\x84\x59\x4f\x24\x2d\x68\x05\xb9\x9f\xfa\xb8\x5f\x38\x3a\x04\x2a\x44\xec\x60\x15\xd8\x7a\x8b\x30\x15\x46\xb8\x36\x57\x2e\xf7\x4f\x94\x7b\x26\x7b\x50\x38\xa7\xb3\x1a\x57\x05\x2c\x65\x1c\x73\xcd\x80\x9d\x91\x05\xeb\x07\xe5\x03\x94\x4e\xd7\xb4\x94\x89\xe3\x6a\xfa\xd2\x9b\x90\x0e\x28\xa5\xbe\xa1\x56\x6e\x21\x88\x03\x26\x9b\xa8\xa0\xa1\x27\x32\x89\x80\x9a\x2b\xf9\xa7\x30\xb1\x99\x33\x00\x17\x72\xcd\xf0\xc3\x39\x2f\xc5\xd4\xf6\xb4\x5a\xd7\xaf\x1f\xae\xbc\x01\xd0\x93\x69\xfd\x7a\xbb\x09\x59\x39\xbb\x37\xcb\xf7\xb7\x34\xef\x08\xdc\x28\x12\xeb\xe1\x88\xf9\xd2\x82\x1c\xc4\x6e\x01\xf7\x64\xf4\x6f\x01\x62\x1b\x9a\x10\xc6\x0a\x04\x30\x25\x74\x99\x0f\xa1\xbc\x44\x80\xff\x71\x69\xbb\xfc\xf0\x05\xc2\x45\x91\x40\x38\x5f\xe8\x92\x04\x8c\x24\x5e\x5c\x37\x39\xdb\xe7\x33\x02\x85\x5b\x62\x00\xc5\x36\x9a\x8c\x62\xe2\xa7\x69\x22\xab\xb7\x97\x34\x25\xad\x0a\x1a\xe6\xe9\xd3\x6a\x9e\xc9\xea\x02\x68\x56\x9f\xed\x97\x8b\x59\x2a\xaa\xe7\xe5\xa1\x52\x75\xa7\x4f\xf1\xfa\x20\xeb\x52\x88\x55\x71\xb1\x9c\xad\x64\xbb\x9f\x93\xa6\xcc\xcb\xa3\x84\xad\x93\x55\x36\xdf\xcb\xba\x02\x68\x56\x5f\xad\x96\x53\xd5\x6e\x96\x94\x47\x0d\x4a\x36\x8b\xc5\x62\x26\x6b\x73\x98\x59\x79\xbd\x98\x2f\xe7\x8b\x5b\xb4\x3f\xda\x02\x63\xfe\xd8\xf1\xd2\x4a\x8c\xba\x82\x20\xe8\xe2\x4a\x79\xee\x8f\x4a\x9a\x2e\x52\x76\x38\xc4\xd9\x9a\x13\x34\xc5\xea\xe2\xa6\x53\x32\xdb\xcf\x19\x41\x26\x5f\x84\xda\x86\x64\x87\x27\x4e\x0d\x08\xda\x45\x4c\x0e\xd9\x86\xfa\xda\xfd\x51\x49\x1c\x09\x49\xd2\xc3\x9a\xcc\x39\x35\x53\xf4\x08\xee\x13\x49\xf7\x4b\x46\x50\xe8\x00\xc1\x99\x65\x24\x23\x9c\x9e\xa1\x0c\x17\x95\x2c\xf6\x9b\xfd\xe6\x16\xb1\x05\x20\x5f\x6f\xca\xb0\x4a\x4e\x05\x1b\xed\xfb\x17\x71\xfd\x1a\xc4\x01\x88\x30\xe0\xee\x2f\x88\x2d\x2e\xc5\xa4\x2a\xe0\xbc\x1c\x63\x93\xf2\xa5\x08\x18\x22\xfd\xef\xa5\x08\x2a\xf6\xbb\xae\x27\x50\xe3\x5b\x54\xe4\x6d\x17\x5e\x4a\x36\x19\x64\x8a\x3f\x3a\xf0\xb7\x74\x1a\x6a\xf5\x3c\x41\x97\x9f\xac\x80\x07\x5b\x03\xb8\x92\x29\x06\x0d\x97\x6c\x2e\xd4\x95\x9f\x8b\x1c\xdf\x93\x37\x88\x2e\x75\x38\xc4\xe7\x1f\x5a\x72\xcb\x7a\x7b\x4f\x05\x78\xcb\xba\x49\x96\x5d\xf1\xb8\xf5\x96\x75\xee\xe6\xb9\x9a\xa3\x79\x67\x7a\xe6\xdb\xac\x08\x4f\x55\x93\xff\x56\x95\x5d\x52\x04\x94\x56\x51\x25\x1d\x9b\x29\x65\x6c\xb7\xa2\x3a\x4c\x0b\x92\x34\xbc\xd8\x9e\x34\x9d\xc0\x8e\x21\xa8\x42\x52\x14\x79\xdd\xe6\xed\xee\xf3\x29\xef\x08\xdb\x48\xa2\x22\xfd\xdc\x24\xf5\xcd\x6e\xde\xe4\x7b\xba\xa6\x9d\x87\xdb\x32\x13\xf6\x7b\x96\x74\x49\x58\x35\xf9\x31\x2f\x93\x22\x14\x9f\x18\xc4\x6e\xeb\x89\x14\x35\x62\x70\x7c\xad\x14\xf0\xc9\x38\x2f\xf3\x2e\x4f\x8a\xbc\x3d\x03\x67\xb2\x89\xdf\xef\xac\x8d\xe5\x4b\x5d\x93\x26\x4d\x5a\x72\x03\x7b\x35\x32\x9e\xa5\x66\x19\x80\x08\x88\x39\x49\xdb\x17\x3e\x45\x4b\x6d\xff\xd2\x06\xa0\xf5\x6b\xc2\x41\xbd\x2d\x92\xb6\x0b\xd3\x53\x5e\x64\x60\x73\x28\xb8\x14\x1e\x40\x05\x01\xce\x48\x00\x88\xe2\x2b\x14\x28\xe1\x0e\x15\x14\x08\xdf\x6a\xae\xbe\x8c\xef\x24\x03\xeb\x6d\x2a\x58\xa7\x49\xb9\x17\x61\xb7\x8c\x94\x47\x10\xa0\xb6\xca\xbe\xff\x3b\xfb\xda\xf8\xf7\x38\xfe\x97\xf8\xfb\x5b\xa4\xf1\xc3\x86\xbc\x90\xa6\x85\x24\xa2\xfa\x52\x14\xc2\xaf\x9b\xa3\x6c\x0a\x07\x9e\x18\xde\x72\xb5\x24\x87\x21\x50\x8a\xa1\xaf\xd8\x31\x77\x8c\x0d\x6f\x7f\x01\x53\x16\x0e\x46\xc5\x23\x1c\x48\xc4\x40\xc1\x68\x44\x23\x88\x78\x84\x8d\x4a\x58\xb2\xcd\xb7\x35\x7b\x7b\xc6\x51\xfc\x1d\xeb\x23\x01\x31\x7a\xba\xd5\x47\x02\xa2\x00\x0b\xa2\xb6\x13\x30\x3b\xfa\x1e\x58\xa8\x2b\x20\x77\x97\x36\xc9\xb2\x86\x86\x08\xde\x78\x17\x44\x9c\x9e\xe1\x31\xf0\x6d\xed\xaf\xa4\x2c\xaa\xc9\x5f\xab\x32\x49\xab\xc9\x9f\xab\xb2\xad\x8a\xa4\x9d\xbc\xfb\x73\x75\x69\x72\xd2\x04\xff\x41\x3e\xbf\xd3\x5f\xdd\x18\x2d\x35\xff\xcc\xea\xd7\x60\x61\xcc\x36\x74\x06\x93\x61\xc9\xd3\x6c\xb9\x20\xd8\x96\xc6\xe6\x30\x3b\x2c\x90\xa9\xd8\xdd\xd2\xb8\xfd\xba\xcf\xc6\xb5\x86\xc7\x65\x6c\x07\xce\x20\x3a\xaf\x5f\xe1\x6e\x7e\x5e\xb6\xa4\x0b\xe2\x20\x9c\xb2\x50\x01\xec\x14\x46\xb3\xe5\x07\xf6\x9d\xd2\x9c\x8f\x24\x33\x1b\x36\xab\x5a\x6b\x13\x38\xed\xce\xfd\xbb\x3c\x9f\xab\x26\xe3\xdb\xd7\x5b\xb1\x89\x5d\x14\xbc\x90\x4a\x41\x94\xd1\xbf\x07\x36\x12\x97\xf4\x07\xd9\x1d\x4a\xd3\x14\x11\x65\xdd\x90\xc0\xd0\x5e\x8c\xec\x2a\x9a\x1f\x48\xa1\x8a\xea\x86\x84\x5c\x49\x36\x23\xe0\x93\x89\xd5\x6c\x7c\x8b\x68\xb5\x36\x6d\xaa\xa2\x60\x9b\xda\xe7\xe4\x55\x0a\x64\x4e\xc3\x33\xe5\xb7\xc3\x2f\x5b\x8e\x76\x8b\xa8\xf5\x27\x79\x49\xd4\xce\x51\xa3\x36\x9b\x8c\x08\x88\x15\x18\x53\xea\xd4\x8d\x6e\x68\x51\x4f\xe8\xa1\xdb\x12\xe5\x4b\xe6\xee\xdd\x0a\x9b\xcd\x0c\xad\xb0\x79\xf2\x54\x98\xce\xe2\x18\xad\x31\x9d\xf2\x2a\x1a\x10\x1e\x8a\x4b\x9e\xbd\x59\x6f\xa3\xa6\xfa\x6c\xc4\x30\xe1\x54\xdb\xaa\x40\x0c\x39\x66\x5a\x15\xe1\x6b\x1b\x4e\x27\xec\xb7\xf6\x2c\x7f\x3b\x67\xf2\xb7\xe2\x28\x7f\x7b\x6d\xc3\x99\xc2\x9b\x29\xbc\x99\xc2\x9b\x29\xbc\xb9\xc2\x9b\x2b\xbc\xb9\xc2\x9b\x2b\xbc\x85\xc2\x5b\x28\xbc\x85\xc2\x5b\x28\xbc\xa5\xc2\x5b\x2a\xbc\xa5\xc2\x5b\x2a\xbc\x95\xc2\x5b\x29\xbc\x95\xc2\x5b\x29\xbc\x27\x85\xf7\xa4\xf0\x9e\x14\xde\x93\xc2\x5b\x2b\xbc\xb5\xc2\x5b\x2b\xbc\xb5\xc2\xdb\x28\xbc\x8d\xc2\xdb\x28\xbc\x8d\xc2\x9b\xc6\x5a\xd0\xb1\x96\x74\xac\x45\x1d\x6b\x5c\xa0\x14\xa0\x15\xa0\x16\xad\x97\xa9\x56\xcc\x54\x6b\x66\xaa\x55\x33\x9d\x5d\xdd\xe3\x23\xd4\x56\xc1\x86\xe9\x38\xdb\x32\x2d\x46\xdb\x84\xd6\xba\xd6\xab\xd6\x9c\xd6\x8d\x96\xbe\x96\xaf\x96\x20\x90\x11\x10\x01\xeb\x21\x58\x14\xdc\x40\xa9\xde\x94\xd6\xa5\x53\x39\x36\xa7\xd1\x8a\xff\xef\x09\x40\x63\x01\x5d\xcf\xa3\xb9\xf8\x9f\x86\x6e\xd4\x3c\xa0\xcb\xd6\xa2\x6c\xb5\x42\xc8\x3d\x09\xe0\x72\x8d\x50\x5b\x49\x20\xe0\x6e\x29\xca\x16\x18\x73\x0b\x01\x9c\x63\xbc\xcd\x05\x70\x06\x78\x53\x02\xc0\x78\x93\x72\xc0\x58\x63\x31\xcb\x74\x76\x15\xba\x85\xf2\xe3\xa0\xa9\x00\xa1\x42\xe4\x28\xb1\x40\x41\x25\xc9\x50\x36\x02\x03\x8a\x93\x01\xd6\x02\x80\xca\x94\x61\x3c\x09\x0c\x54\xb0\x0c\x63\x25\x31\x6c\xde\x97\x02\x80\x8a\x98\x61\x2c\x04\x06\x2a\x67\x86\x31\x17\x18\x33\x9b\x73\x25\x32\x2f\xe7\x52\x72\x5e\xc6\xa5\xdc\x62\x50\xdc\x9e\xa8\x36\xf8\xd8\x33\x95\x41\x21\x53\x0e\xf1\xe8\x82\x62\xc4\x1c\xc3\xa3\x8a\xf6\x14\x6e\x38\x82\xa9\x89\xf6\x14\xae\x79\xb9\x47\x11\xed\x29\x7c\xe2\x08\x1e\x3d\xb4\xa7\x70\x25\x10\x6c\xae\x97\xbc\xdc\xa3\x85\xf6\x14\x2e\x38\x82\x47\x09\xed\x29\x9c\x73\x84\x99\xcd\xb3\x14\x94\x97\x67\x21\x2f\x2f\xcb\x42\x5a\x5a\x01\xfc\x73\x24\x55\x81\xb1\xf8\x87\x9a\x90\x28\x53\x03\x05\x55\x89\x44\x8d\x0d\x54\x54\x37\x02\x75\x63\x60\x42\x25\x09\x84\xb5\x81\x80\x6a\x4b\x60\x3e\x19\x98\xa8\xda\x04\xe6\xca\xc4\x74\xfb\xba\x34\x10\x50\x45\x0a\xcc\x85\x81\x89\x6a\x54\x60\xce\x0d\xcc\x99\xdb\x53\x4b\x05\x3d\x3d\x35\x35\xd1\xd3\xd1\x78\xf4\x56\x94\x19\x06\xe9\x40\x47\x87\x32\x3a\x58\xd1\xe1\x88\x0e\x38\x74\x48\xa1\x83\x06\x1d\x16\x00\xbf\x0f\xdc\x3a\xf3\xda\x8e\x7b\xe3\xa5\xb6\x7b\x63\xd5\xbc\xee\x8d\xd1\xf7\xba\x37\xca\x87\xed\xde\x28\x97\x5e\xf7\x46\x3b\xe3\x75\x6f\xb4\xcf\xb6\x7b\xa3\x12\xf1\xba\x37\x2a\x38\xaf\x7b\xa3\xf2\xb5\xdd\x1b\x95\xbe\xd7\xbd\xd1\xae\xfa\xdc\x5b\x7b\xf6\xba\x37\x05\xf2\xbb\x37\x85\xe2\x77\x6f\x12\xc5\x71\x6f\x12\xe0\x77\x6f\x12\xc3\xef\xde\x24\x86\xe3\xde\x24\xc0\xef\xde\x24\x86\xdf\xbd\x49\x0c\xc7\xbd\x49\x80\xdf\xbd\x29\xb9\xf8\xdc\x9b\x44\xb0\xdc\x1b\x2b\x46\xdd\x9b\x82\x78\xdd\x9b\xc2\xf0\xba\x37\x89\x61\xbb\x37\x59\xee\x75\x6f\x12\xc1\xeb\xde\x24\x82\xed\xde\x64\xb9\xd7\xbd\x49\x04\xaf\x7b\x93\x08\xb6\x7b\x93\xe5\x5e\xf7\xa6\xc4\xe1\x71\x6f\x12\x6e\xba\xb7\xf6\x3c\xe8\xde\x00\xca\x90\x7b\x03\xa8\x43\xee\x4d\xa3\x7a\xdc\x9b\x46\x18\x72\x6f\x1a\x73\xc8\xbd\x69\x4c\x8f\x7b\xd3\x08\x43\xee\x4d\x63\x0e\xb9\x37\x8d\xe9\x71\x6f\x1a\x61\xc8\xbd\x01\xf9\xf6\xbb\x37\x8d\x68\xbb\xb7\xde\xed\x0b\xb8\xb8\xd7\xcb\x77\xbd\x40\xd7\x4b\x70\xbd\xc8\xd6\xcb\x68\xbd\x50\xd6\x4b\x61\xbd\xd8\x05\x8b\x59\xb0\x56\x65\x4b\x51\xc7\xbf\xf1\x52\xdb\xbf\xb1\x6a\x5e\xff\xc6\xe8\x7b\xfd\x1b\xe5\xc3\xf6\x6f\x94\x4b\xaf\x7f\xa3\x9d\xf1\xfa\x37\xda\x67\xdb\xbf\x51\x89\x78\xfd\x1b\x15\x9c\xd7\xbf\x51\xf9\xda\xfe\x8d\x4a\xdf\xeb\xdf\x68\x57\x7d\xfe\xed\x9c\x79\xfd\x9b\x02\xf9\xfd\x9b\x42\xf1\xfb\x37\x89\xe2\xf8\x37\x09\xf0\xfb\x37\x89\xe1\xf7\x6f\x12\xc3\xf1\x6f\x12\xe0\xf7\x6f\x12\xc3\xef\xdf\x24\x86\xe3\xdf\x24\xc0\xef\xdf\x94\x5c\x7c\xfe\x4d\x22\x58\xfe\x8d\x15\xa3\xfe\x4d\x41\xbc\xfe\x4d\x61\x78\xfd\x9b\xc4\xb0\xfd\x9b\x2c\xf7\xfa\x37\x89\xe0\xf5\x6f\x12\xc1\xf6\x6f\xb2\xdc\xeb\xdf\x24\x82\xd7\xbf\x49\x04\xdb\xbf\xc9\x72\xaf\x7f\x53\xe2\xf0\xf8\x37\x09\x37\xfd\xdb\x39\x1b\xf4\x6f\x00\x65\xc8\xbf\x01\xd4\x21\xff\xa6\x51\x3d\xfe\x4d\x23\x0c\xf9\x37\x8d\x39\xe4\xdf\x34\xa6\xc7\xbf\x69\x84\x21\xff\xa6\x31\x87\xfc\x9b\xc6\xf4\xf8\x37\x8d\x30\xe4\xdf\x80\x7c\xfb\xfd\x9b\x46\x1c\xe1\xdf\xc0\x6e\x3b\xdc\xb3\xd6\xbb\xd2\x7a\xdf\x59\xef\x2c\xeb\xbd\x63\xbd\x3b\xac\xf7\x7f\xf5\x0e\xaf\xde\xc3\x05\x5b\xb4\x60\x07\x96\x6f\xb0\xda\x0e\x8e\x97\xda\x0e\x8e\x55\xf3\x3a\x38\x46\xdf\xeb\xe0\x28\x1f\xb6\x83\xa3\x5c\x7a\x1d\x1c\xed\x8c\xd7\xc1\xd1\x3e\xdb\x0e\x8e\x4a\xc4\xeb\xe0\xa8\xe0\xbc\x0e\x8e\xca\xd7\x76\x70\x54\xfa\x5e\x07\x47\xbb\xea\x73\x70\xc5\xd1\xeb\xe0\x14\xc8\xef\xe0\x14\x8a\xdf\xc1\x49\x14\xc7\xc1\x49\x80\xdf\xc1\x49\x0c\xbf\x83\x93\x18\x8e\x83\x93\x00\xbf\x83\x93\x18\x7e\x07\x27\x31\x1c\x07\x27\x01\x7e\x07\xa7\xe4\xe2\x73\x70\x12\xc1\x72\x70\xac\x18\x75\x70\x0a\xe2\x75\x70\x0a\xc3\xeb\xe0\x24\x86\xed\xe0\x64\xb9\xd7\xc1\x49\x04\xaf\x83\x93\x08\xb6\x83\x93\xe5\x5e\x07\x27\x11\xbc\x0e\x4e\x22\xd8\x0e\x4e\x96\x7b\x1d\x9c\x12\x87\xc7\xc1\x49\xb8\xe9\xe0\x8a\xe3\xa0\x83\x03\x28\x43\x0e\x0e\xa0\x0e\x39\x38\x8d\xea\x71\x70\x1a\x61\xc8\xc1\x69\xcc\x21\x07\xa7\x31\x3d\x0e\x4e\x23\x0c\x39\x38\x8d\x39\xe4\xe0\x34\xa6\xc7\xc1\x69\x84\x21\x07\x07\xe4\xdb\xef\xe0\x34\xa2\xe3\xe0\x3a\xf5\xb1\x1c\x5c\xba\xe8\xfb\xf0\x7e\xeb\x4e\xc8\x21\x63\x46\x05\x50\x40\x8e\xf5\x71\xa4\x67\x76\x9f\xef\xb9\x6b\x9e\xd5\x15\xb2\xe7\x6e\x5f\x65\x5f\xac\xa2\x43\x55\x75\x56\x91\xaa\x98\xb9\x15\x33\xb7\xa2\x3e\xce\xb1\xf6\x1f\x90\xb0\x2e\xff\x74\x55\xed\xb9\x18\x92\x65\x19\xd2\x03\xfb\xf2\x10\xef\xaf\x75\x22\x6f\x86\x52\x11\xb9\x13\x3e\x4a\x6a\xdb\x43\xde\xc8\xe3\x6d\xa0\xd7\x69\x55\xb0\x6b\x8e\x43\x78\x0c\x6c\xc2\xbc\x24\x7b\x5b\xce\x46\xb6\x9c\x8d\x6f\x39\x03\xb7\x14\xb7\xf1\x0d\x2a\xef\x23\xfb\x2f\x84\xa3\xd2\x0a\xe4\x4d\x45\xf4\x8e\x9b\xb8\x89\x98\x56\x65\xc6\xb2\x72\x20\x36\x06\x81\x8e\xb5\x41\xa0\x63\x77\x28\xd9\xac\x8f\x2c\x06\x44\xac\x72\xa9\xc6\x84\xba\x43\x89\x5f\xa0\xb4\xb1\xb0\xee\x69\x98\xdb\x3b\x0d\x73\x3b\x87\xd0\xcc\x7a\x68\x22\x30\xd0\xb3\x37\xe0\x5e\x73\x61\x66\xd1\x10\xb3\xd3\x4c\xcb\xac\xed\x9a\xbc\x06\xcc\x6d\xcb\xee\xc4\x0d\xee\x87\x2a\xcb\x3e\x00\x5e\x07\x31\xd1\x5b\xb8\x1b\xfa\x23\x1b\x63\xa7\xc4\x35\x01\xf1\xa7\x6a\x01\x07\xa3\x64\xd9\x49\x2a\x3e\xeb\x06\x69\x55\xfc\x92\x16\x49\xdb\xfe\xf8\x33\x9d\xa5\x3f\xe9\x93\x13\x6d\x97\x74\x79\xba\xe3\x81\x3e\x3b\x90\x6d\x5e\x80\x4e\xab\xe2\x72\x2e\x6f\xf2\x3e\xb1\x41\x65\x22\xef\x16\x3f\x4a\x9b\x14\x85\x3b\xd5\x65\x91\x48\x7d\xe2\x4e\xbd\x36\x44\x5b\x84\x0d\xd1\x9a\xf7\x52\x73\x20\xda\x66\x3d\xd4\x44\x31\xe2\x16\x10\x88\xa0\x86\x40\x6c\x6a\x8e\x77\x42\x20\x36\xb5\x1e\x8d\xa3\x96\xa2\x45\x24\x6e\xca\x7a\xb0\x4e\x23\xb0\x0c\x14\xaf\x6d\x5a\x58\x18\xc3\x64\x4d\x7f\x30\x0b\x10\xd7\x43\x30\x13\xb0\x41\xc0\x06\x6c\x10\x30\x02\x2f\x41\x17\x04\xcc\xc0\x43\x50\x96\x63\x86\x80\x80\xa4\xee\x10\x90\x43\xd0\xb5\x05\x04\xe4\x10\xc4\x84\x2b\x6e\xdb\x78\xad\xc1\xb8\x81\xe3\x37\x87\x11\x68\x26\x8e\xdf\x20\x2c\x34\x94\xe9\x98\x6c\xd2\x15\x66\x11\x79\x79\xa8\x30\x73\x30\xca\x81\x2d\x18\xe5\xc0\x10\x70\x3a\x27\x0f\x9d\x13\x4a\x87\x15\x62\xca\xb7\xcb\xa5\xa2\xec\x72\x93\x8e\xab\x73\xbb\xdc\xa4\x83\x0a\x8e\xdf\x86\xf2\x6a\x5b\xdf\x90\xf2\xab\x7a\x08\x07\x20\xf8\x95\x0c\x71\x30\x46\xd3\x05\x99\x1f\xe6\x98\x86\xc5\xb5\x2b\x4c\xc9\x36\x08\xe8\xd9\x06\x01\x55\x7b\x09\xba\x20\xa0\x70\x0f\x41\x59\x8e\xa9\x1d\x01\x49\x8d\x21\x20\x87\xa0\xab\x7f\x04\xe4\x10\x44\x3d\x00\xbf\xc5\xe6\xb5\x02\xe3\x66\x9b\xdf\x10\x46\xa0\x99\x38\x7e\x73\xb0\xd0\x50\xa6\x93\xc3\x2c\x4d\x31\x8b\xe0\x17\xe7\x30\x83\xb0\x20\xc0\x1e\x2c\x08\x30\x07\x1f\x35\x07\x02\x8c\x01\xa7\x26\x8a\x31\x53\x70\x21\x52\x71\x2e\xc4\xa6\xe6\xda\x81\x0b\xb1\xa9\xa1\x02\xe5\x77\x0f\xbd\x56\x00\xef\x23\xfa\x8d\x60\x18\xcb\x40\xf1\x9b\x80\x89\x85\xc6\x01\xfb\x34\x4d\x53\xbd\x03\xae\xb6\x08\x9e\x56\x4f\x6c\x03\x9c\xd3\xd5\x39\x32\xfc\xeb\x7f\x76\xc6\x17\x9c\xbf\x17\x37\xe7\x54\xc9\xab\x38\x91\xcf\xf2\x15\xaa\x52\x7e\xe1\x84\x16\x25\x97\xae\x3a\xe5\xec\x84\x30\x47\xdc\x27\x8d\x27\x57\x85\xca\xc8\xa5\xa8\xb0\x0a\xd4\xda\xbb\xea\x92\x9e\x6e\x0e\xdb\xcf\x91\xdc\x03\xb1\x2e\x57\x7a\x10\xb1\x05\x0c\x82\xe4\xae\xc3\x10\x24\x77\x41\xd6\xd7\x5c\x36\xa6\xb9\x3e\x24\xb0\x56\xc3\xae\x27\x7a\xea\x39\xcb\x53\xbf\x6c\xd0\x55\x1e\xdc\x0c\xf0\x32\x87\xae\x60\xef\xad\xa9\xc5\x79\x6f\x4d\x2d\xe3\x87\xb9\xbd\xbb\xa6\xd6\x06\xac\x79\x35\xee\xe3\xdd\x29\x69\x70\x75\xf2\x3e\x41\xdf\x57\x11\xc8\xf9\xbe\x8a\x40\xcc\x0f\xb2\x7a\x6f\x45\x20\x64\x70\x7d\xd4\xb8\x0f\x39\x4a\xc8\x72\x6d\xaf\x89\xf4\x0d\x5a\x97\x81\xfb\x2b\x62\x2d\xde\xd3\x65\xb3\xa2\x95\x94\x34\xbe\xe9\xe4\x7c\xfa\x96\x96\xbc\x64\xa6\xb3\xe4\xe8\xef\x9e\xb1\x4c\xc2\x67\xde\x52\x03\x73\xbe\x4d\xc7\x93\x32\x63\x36\xb5\xb6\x63\xcd\x1b\x61\xe0\x26\x9d\xbe\xb8\x8a\x5c\xa6\x5f\xd2\x9f\x1b\xcf\x6e\xe6\x49\x24\x04\x99\x58\x5a\x79\x3a\x9e\xe2\xb8\x2f\x2f\xe3\x1b\x25\x10\x73\x72\x52\x4e\xb0\xd4\x95\x32\xf1\xc8\x82\xdd\x0c\x54\xe2\x93\x3b\xd0\x7f\xdf\xec\xfa\x73\x60\x1e\xf2\x82\x7c\xb2\xf2\xe9\x1a\x2d\x97\x47\x1b\x0e\xf4\x26\x92\xd9\xfd\x72\xbe\x14\x5d\x5e\x17\xe4\x93\x48\x13\xf6\x0b\xd5\xd6\x27\x5f\x22\x4b\xd6\x26\xcf\xd3\xe5\x66\xde\x74\xcb\x55\x5f\xbf\x59\x6a\xaf\xea\xd2\xd5\x97\x0e\xbf\x43\xc9\x44\xf9\x64\xde\x9a\x1c\x4e\xaa\xb6\x5c\x2e\x6f\xd1\xa1\x6a\xce\xa1\x48\x24\xec\x37\x7d\x75\xd1\x10\xa4\x80\x5a\xd5\xaf\xc1\x74\xf6\x40\xa3\xbe\xdc\x5c\xba\x34\x3f\x27\x47\x91\xa8\x61\xe4\x9d\x4c\x33\x6f\xa8\x79\x23\x95\xd6\xa5\xff\x87\x57\x52\xe3\xa7\xe5\x07\xec\xf6\xaa\x17\x17\xc9\x08\xa6\xd3\x0a\x56\x0d\xcc\xfb\x15\x44\xd3\x65\x3b\xd1\xc4\x1d\xd8\xee\x2d\x88\x98\xaa\x13\x66\x07\xa9\x6d\xbf\x5b\xad\x92\x03\xd9\x28\xbb\x8b\x1f\x11\xd2\x24\x0e\xe2\x60\x2d\x01\xd3\x78\x36\x99\x3e\x2d\x27\xb3\xf9\x7c\x12\xad\xee\x92\x60\x2f\x21\xab\x33\x3c\x7b\x6e\x5d\x24\x29\x39\x55\x45\xa6\xb3\xc9\x6c\x36\x9b\x5d\x55\x27\x69\xde\x7d\xd9\x4e\xad\x4a\x34\x90\x66\x23\xd2\x53\xd1\x69\x43\x65\xc2\x1d\x5b\x07\xa4\x08\x36\xcb\x1b\x92\x64\x55\x59\x7c\xf9\x34\x91\x4e\x47\xa3\x06\xe6\x10\x13\x89\x2d\xca\xaa\x0b\x93\xa2\xa8\x3e\x93\x0c\x19\x0e\x84\x10\xd0\x4d\x99\xce\xd0\x24\x74\x7f\x02\x5e\x96\x24\x05\xa0\x66\x49\x47\x3e\x19\x79\x48\xe8\xf8\x16\x5d\xe6\xd9\x65\xdd\x65\xce\x2d\x62\x53\xe0\x24\x92\x33\x9e\x9d\xe3\x4f\x5f\x85\x84\x09\xc5\x7a\x52\x74\x99\xd7\x25\xf9\xa7\x54\xd6\x46\xc0\x9c\x9f\x6e\x29\xc0\x9c\xe1\xce\xce\x7f\x66\x25\x77\x16\xa4\x5c\x47\xc5\x01\x22\xe3\x0b\x06\x57\xcd\xa2\xd9\x98\x15\x18\xa1\xa0\x1d\x1f\x48\xbf\x62\x5c\x23\x06\xbd\xfc\x68\x0b\xf4\xa3\x16\x2d\x10\x5e\xa8\x65\x2f\x5a\x74\x58\x18\x91\xb3\x06\xc9\xf1\x16\xdb\xdf\x88\x79\x82\xc8\x71\x72\x15\x2d\x7f\xec\x67\xec\xa3\xc3\x29\x96\x22\x47\x9c\xc3\xa8\x91\xa8\x02\x0c\x3c\x4c\xcc\x70\x5c\xb2\x0a\x4e\x81\x68\x17\x96\xcb\xda\x58\x99\x8b\x8e\x8c\x6b\xd7\x64\xfa\x91\xb4\xed\x60\x93\x04\x37\x02\x2f\x44\x8a\x16\x43\x90\x84\x7b\x81\x52\xf2\xee\xfc\x73\x8b\xf8\x0c\xd8\x9e\xe5\x9c\x32\x07\xa3\x92\x45\x2b\x76\x46\x86\x99\xe3\xe6\x97\x6e\x72\x08\x11\x77\xe1\xd4\x8d\x59\x87\xea\x5c\x4d\x72\x12\x7d\x62\x87\x6d\x0e\x21\x91\x33\x93\x95\x16\x47\x59\xba\x58\x01\xe6\x59\x5a\x1f\x9d\xc3\x4e\x25\xce\xb3\xb8\x77\x72\x5b\xac\x6c\xf6\x2d\xfa\xb0\x3a\x2d\xb0\xd9\x2f\x8e\x3e\xf6\x35\x21\xce\xfe\x29\x69\xc3\x03\x21\x19\x75\x02\xee\xcd\x72\x13\x6e\xb9\x12\xf3\x52\xf9\x62\x16\xb1\x29\xc2\x5f\x01\x69\x47\x25\xfe\x64\x27\x13\xe8\x1a\x42\x2c\x19\x77\x58\x28\xc8\xc2\x3f\x18\x0a\xda\xbe\x63\x87\xe4\xd8\xa3\xfc\x88\x6f\x30\x41\x74\x22\x45\xcd\xe7\xa5\x89\x09\x90\x2c\x8a\x29\xdf\x80\x89\xf9\xd1\xc4\x97\x36\x8f\xa0\xaa\x69\x08\xad\xa1\x06\x82\x91\x77\xcf\xc4\x35\xc4\x6c\xc6\x54\x1c\xff\x5b\x87\x9b\x3d\xfc\xa0\x91\x1e\x4f\x0d\xf8\x70\x7c\x47\x43\xf9\xef\x56\x4f\xfb\xe9\x6a\x7d\x77\x48\x07\xea\x5a\x5c\x73\x83\x67\x81\x44\x98\x64\x59\x55\x9a\x32\xdf\xa1\x82\xf5\x7f\x52\xf4\x4a\x44\xdb\x35\xa2\x53\xf1\x29\xc0\x35\x3d\x05\x40\x4c\x4f\xc1\x80\xe9\x69\x7c\xc3\xf4\x4c\x54\xc3\xf4\x9c\x1a\x96\xe9\x89\xd4\x8b\x26\x6e\x8f\xe9\x71\xfc\xdf\xc7\xf4\x50\x7e\x3c\x8b\x8c\xe5\xf4\x6b\x4d\x2f\x8d\x93\xe9\x6a\xff\x98\xe9\xf1\xba\x16\xd7\x5e\xd3\x13\x32\x44\x05\xeb\xff\xb2\xe5\x95\x88\x63\x7a\x50\xa7\xa4\x69\xaa\xc6\x35\x3c\x51\x8c\x98\x9d\x80\x00\xa3\x93\xb8\x86\xc9\x41\x34\xc3\xe0\x2c\x6c\xcb\xdc\x44\xae\x4e\x88\xd9\x63\x6c\x1c\xfb\xf7\x31\x36\x84\x1b\xd4\xd4\x78\x2e\xd1\xaf\x34\x35\xb2\x5e\xac\xe7\x0f\x9a\x1a\xab\x6b\xf0\xec\x35\x34\x21\x3f\x54\xa8\xfe\x8f\x67\x1e\x69\x38\x66\x26\x75\x69\x20\xf1\x83\x4f\xee\x77\x1e\x6d\x80\x4e\x3e\x76\x15\x85\x2f\xf1\xa5\x99\x68\xee\x69\x4e\x7f\x7a\x2e\xfb\x33\x3e\xc4\x42\x08\xae\x1f\x47\x6c\x5c\x7a\xd6\x1f\x37\x84\xa6\xbd\x4d\x65\x50\xe5\x0c\xb1\xdc\x4e\x63\x08\x02\xc5\x3d\x9b\xd4\xe1\x3d\x13\xa3\x8a\x31\x62\x6d\x31\x8f\x6a\x54\x8c\x6c\x93\xaa\xbd\x8e\xc6\x64\x85\xe5\x12\x8d\xed\x24\x88\xa3\x39\xc0\x56\xbb\x28\x4f\x7d\x8b\x5a\x27\x8d\x6a\x6c\x35\x35\x26\x10\xe5\x07\x66\x45\x45\x90\x3a\xd4\x9e\x1d\x1d\x38\x94\xa4\x51\x4f\xcd\x94\x78\x15\x35\x5f\x7a\x6b\xf6\x2d\x51\x1d\xc9\x8b\x7d\x57\xa4\x03\x43\x0c\x5e\xe1\x46\x09\x4e\xc2\xdd\x87\x19\xc8\x41\x86\x53\xb0\xa6\x07\x9b\xf5\x81\x41\xed\x55\x8a\x9b\x6d\x1b\x61\x60\xb4\x0d\xec\x60\x66\xac\x7d\x57\x8e\x9b\x39\xec\x3d\x0a\x67\xf9\xe1\xd9\xdb\x30\xf7\x32\xc6\xee\x3c\xc3\xec\x7c\x48\xca\xc5\x07\xf7\xc5\xfd\x5b\xd9\x97\x96\x34\x21\x5f\x46\x72\x8e\xd8\xae\x28\x52\xda\xba\x85\x76\x01\x13\xaa\xf8\x6c\xc1\x7e\x15\xe7\x24\x75\x49\x04\x4b\xbe\xc1\xf7\x0b\xd6\xaa\x38\xd7\xa1\x78\xb9\x82\x6f\x62\xe8\x13\x2b\x80\x57\xc8\xa5\x7e\x98\xd0\xa3\xbc\x9e\x18\x61\x5e\xbf\x06\x4b\xcb\xcf\x4f\x67\x78\xdc\xe2\xc3\x65\x7c\x45\x72\x9b\x85\x71\xd6\xbf\x59\xc4\x6c\x1a\xd9\xfb\x15\x26\x18\x92\x17\x52\x76\x2d\xe7\x5d\xee\xfc\x46\xab\xe5\xee\x90\x17\x2c\x17\x6b\x51\x9f\x92\x1f\x04\xe0\xe7\x15\xf8\x1e\x61\xbd\xa7\x65\xbf\xaf\xc5\x18\x0d\xc5\xa3\x75\xd7\xa1\xd7\x74\xac\x70\x25\x4d\x53\xa3\x3e\x50\x9f\x2a\xd2\x06\xa4\x8a\x80\xba\x64\x99\x3a\xda\x5c\xd5\xa4\x0c\xd8\x3b\x4f\x59\xf5\x99\xce\xae\xc7\x63\x41\xc6\xf3\x48\xf6\xf4\xc7\x8e\xaa\x32\xfa\x73\x7b\x43\x1e\x50\x9b\x32\x1a\x30\x75\x2f\x4b\x87\x6d\x40\x62\x4e\x50\x62\x88\x80\x75\x7d\x01\x1c\x20\x8c\x90\xd0\xe4\x5d\x65\x01\xf2\x1c\x38\x44\xde\x25\xa1\xc9\x23\x42\x07\xf4\x05\x74\xa8\x01\x4c\x73\x12\x35\xea\x6d\x21\x1a\xd7\x82\x9c\x42\x1e\x19\x01\x41\xb4\x4f\xb2\x23\xe9\x7f\xc2\x60\x3e\x9f\xf3\x4a\x77\x3c\x78\x60\x6f\x86\x2c\x9f\xc8\x3e\x33\xa8\x40\xc5\xca\x22\xa0\x0c\x59\x04\x25\x24\xca\x46\x18\xfe\x28\x4e\xe7\xb3\xa7\xd5\x7e\x6a\x71\x3a\x5b\x2f\xc9\x9a\xdc\xde\x90\x87\x9e\xc1\x27\x89\x99\x83\x4f\x94\x8e\x18\x7c\x02\x73\x82\x12\x43\x04\x3c\x7a\xf0\xf9\x75\x84\x0e\x3e\x97\x7c\xff\xe0\xf3\xeb\x1b\x1f\x7c\x2e\xfd\x81\xa1\xd1\xa7\x39\x74\xf0\x39\x2d\x0c\x0d\x3e\xd3\x0e\x90\xc1\x37\x76\x1c\x58\x43\x50\x56\xc3\x2f\xce\xd1\x7a\xd6\x43\x2b\xb8\x6d\x2f\xd3\xfd\x7a\x99\x5a\xad\x2f\xd2\x84\x2c\x52\x83\x0a\xd4\xb0\x2c\x02\x5a\x91\x45\x50\x54\xa2\x6c\xc4\x08\x18\xc5\xe9\xe2\x29\x59\x2c\x9e\x6c\x39\x6d\xd6\x8b\xf9\xe6\xf6\x86\x3c\xf4\x8c\x42\x49\xcc\x1c\x85\xa2\x74\xc4\x28\x54\xf7\x5b\x30\x62\x88\x80\x47\x8f\x42\xbf\x8e\xd0\x51\xe8\x92\xef\x1f\x85\x7e\x7d\xe3\xa3\xd0\xa5\x3f\x30\x46\xfa\x34\x87\x8e\x42\xa7\x85\xa1\x51\x68\xda\x01\x32\x0a\xc7\x8e\x03\x6b\x14\xca\x6a\xfe\x51\x08\xdf\x2b\xf2\x0c\xc1\x7d\x1a\x67\xc4\x6e\x7a\xb5\x5f\x67\x89\x26\x01\x75\xcb\xfe\x06\xca\x60\x7f\x43\xf1\xd0\x82\x11\x26\x3f\xcc\xda\x7c\xb3\x9f\x67\xf6\x98\x9b\xad\x36\xc9\x3e\xbd\x7d\x7d\xd3\x3d\x43\x8d\x91\x31\xc7\x19\x2d\x1a\x31\xc8\xf8\x0d\x22\x87\x86\x2d\xbf\xd1\x63\x0b\x13\x3e\x3a\xaa\x2c\xaa\xfd\x43\x0a\x53\x21\x3e\x98\x2c\xb2\x03\x76\x8e\xeb\x03\x1d\x43\x26\xe1\xa1\x01\x04\xf4\x8a\x8d\x9e\x31\x26\x6c\x0f\x1d\x51\xc7\x3f\x74\xac\x17\xbb\x70\x13\x3d\xc4\x49\xb6\xb0\x9b\x26\x24\x99\xcd\x57\x06\x15\xa8\x43\x59\x04\x14\x20\x8b\xa0\x84\x44\xd9\x08\x73\x1e\xc5\x29\xc9\x36\xe9\x6c\x6d\x71\x9a\x2d\xd7\xcb\xe9\xec\xf6\x86\x3c\xf4\x8c\x2a\x49\xcc\x1c\x58\xa2\x74\xc4\xd8\x52\x97\xb5\x30\x62\x88\x80\x47\x0f\x32\xbf\x8e\xd0\xa1\xe6\x92\xef\x1f\x6d\x7e\x7d\xe3\x63\xce\xa5\x3f\x30\x3a\xfa\x34\x87\x0e\x3e\xa7\x85\xa1\xf1\x67\xda\x01\xb6\x86\x1b\x39\x0e\xec\x95\x9c\xa8\xe6\x1f\x85\xe6\xc3\x77\xb8\x69\x67\x9b\xe5\x7c\x61\xaf\x21\xb3\xc5\xfc\x30\x4f\x20\x11\x63\x8d\xce\x4b\xe0\xb2\x9a\x97\x18\x4b\x5d\x56\x34\x66\x03\x63\x0c\x93\xb3\xf9\x6c\x66\x7f\x7d\x4f\xd2\xd9\x66\xb6\xbc\xbd\x15\x03\x7d\x1b\x28\x9c\x94\xb5\x7f\xc2\x0a\xc7\x6c\x9f\x88\xab\x71\x08\x25\x57\xaa\xe3\xf7\x4e\x3c\x6a\xc1\x77\x4e\x6c\xda\x03\x1b\x27\x1e\x05\x7b\xb6\x4d\x6c\xe2\x43\x7b\x1a\x5e\x5d\xe1\x7b\x26\x16\xf9\xc1\x2d\x13\xa8\x77\xf4\x02\xf0\x28\x83\xb7\x06\x9b\xac\xe5\x1f\x6c\x45\x5e\xfe\x6a\xad\xf0\xfa\xcf\x23\xba\xcf\xe5\x48\x32\x13\xf5\x9b\x21\x25\x5a\x30\xc2\xde\x18\x23\xbd\xef\xf4\xdc\xb5\x11\x6b\x31\x04\x0c\x8e\xfd\x0d\x8c\x04\x30\x6c\x7e\x05\x87\xa9\x8a\x06\x28\x8d\x7d\x90\xbc\x3f\x1f\x12\x22\xae\x81\xe1\x84\x71\x34\x7a\xbc\xb8\xec\x6f\x36\x1b\xff\xc7\x81\xb0\x10\x7e\x98\x7f\x83\x2f\x8e\xcf\xf4\xaf\xeb\x5b\x1c\x00\xe4\xeb\x9d\x33\x24\xdf\x9e\x4d\xf2\x8f\x1f\x8e\x64\x44\x5f\x5b\x48\xfc\xb5\xb5\x78\xe7\x1f\x1f\x1e\xa4\x8d\x7d\xf0\x77\x2f\x33\xc9\x6f\xc7\xe6\x59\xc2\x18\x90\xf8\x08\xa8\x99\x07\x06\x8c\x63\xe7\x97\xfd\x39\xef\x3e\x69\x5c\xe3\xd2\x0c\x69\x89\x0f\xc6\x5f\xee\x07\x40\xf3\xfb\x7b\x92\x91\xab\xfc\x1e\x12\x63\x97\x30\x04\x90\x5d\x89\x08\xa8\x68\x92\x66\xd7\x0f\xe6\x54\xa3\xbc\xbc\x82\x9b\x04\x69\x55\x14\x49\xdd\xea\x33\xd4\xdc\xc0\x64\x31\xc5\x36\xef\x1f\x49\x10\x0d\x35\xdd\x07\x81\x84\x7a\xdc\x57\xd2\x91\x1e\x70\xdc\x20\x9a\x2f\xf9\xeb\xf1\xbb\x1e\xd8\x2d\x4a\x93\x86\x74\x7d\x27\x20\x62\xdd\xb8\x91\x7e\xad\x7e\xf5\x7c\x0c\x05\xb9\xa9\x16\xf2\x5b\xa7\xf9\xa0\xe2\x02\xfd\x04\x0a\xef\x71\xa2\x18\x37\x15\x21\x60\x07\x5b\xad\xe8\xc1\xfa\xee\x18\x03\x84\x33\x29\x2f\x9e\x23\xab\xcc\x94\x85\x09\xff\x16\xe6\x65\x46\x5e\x69\x99\x3e\xbe\xca\xa6\x62\x78\x0a\x5f\xe7\x39\x5d\xd9\xa7\x9c\xd5\xfd\xc0\x99\xb8\xa7\x66\x3f\x1a\x6b\x7d\xd0\xed\xfb\x80\x80\x5f\x58\x02\xa5\xc6\x17\xc5\xe5\x87\x71\x37\x9a\xf8\x39\x24\x3a\x0b\x98\xf5\xad\x53\x57\xbd\x68\x80\xe9\x22\xaf\xb7\xfa\xcd\xdf\x57\x4b\xe4\xf0\x05\x4e\x79\x2a\x58\xbd\x9f\x66\xe1\x06\x51\x96\xbf\xe4\x19\x69\xae\xe0\x19\x2c\x21\xcd\x0d\x13\xad\x3d\x10\x90\x75\x21\xbf\xf1\x68\x12\x7e\x2e\xf2\xe7\xc4\xf3\x70\xe0\x5c\x3e\xd9\xca\x5f\xb3\xdd\x57\xdd\xc9\x89\x12\xfa\x2f\xa3\xcd\xe7\x73\xfc\x1d\x5b\x87\x05\xe9\xce\x10\x08\x37\x5c\xcc\x41\xed\xd4\x4e\x11\xfd\xf1\xbe\x3b\x68\xb7\x27\xd3\x2d\x25\x76\x73\x0a\x80\x73\xa3\xc1\x86\xfb\xa4\x46\x89\x72\x87\x7e\x43\x37\x82\x2e\x87\x33\xe9\xab\x11\xde\x34\xc8\xc3\x1d\x40\xb0\xdd\x7b\x4f\x3b\x63\x89\xa1\x3d\xec\x7f\x60\x11\x3d\x38\x20\x3e\xb8\xd7\x4d\x75\xcc\xb3\xed\xbf\xfe\xe7\x5f\x28\xe8\x6f\xf2\x11\xe1\xe8\xaf\x79\xda\x54\x6d\x75\xe8\xa2\x23\x1d\xaa\xa4\xec\x7e\x20\x25\xe3\xe4\xe7\x43\x52\xb4\xe4\xc3\x0e\xbb\x60\x41\xd7\x4b\xcf\xd6\x84\x66\xb9\x13\x86\x92\x78\xe7\x3f\x31\x0e\xf5\xfb\x85\xca\x51\x9b\x68\x14\x41\x64\x3c\xdd\x35\xe0\x9a\x81\xc2\x12\x4f\x7d\x0f\x8c\xa8\xde\x90\x03\x7b\x2c\x58\x37\x40\xc5\x4a\xff\xd0\x33\xf6\x21\x7f\x25\xd9\xce\x60\x2a\xde\xa9\x33\x3c\xfc\xf8\x8f\x9c\xbc\x37\x9b\xf8\x06\x26\x1e\x5b\x68\x9e\x79\xe8\x52\x07\xdc\x31\x4e\xa2\x32\x79\xd9\x27\x4d\xc8\xda\x14\x07\x85\xf4\x4a\x55\x60\x19\xe9\x1a\xad\x2b\xd8\xda\x05\x82\xa7\x63\x55\x23\x06\x37\x83\x8d\x99\xbc\xd3\xd6\x98\xea\xd4\x01\x4b\x37\x8f\x48\xef\x79\x2c\xd1\x9a\x78\x1e\xd7\x24\x8e\x18\x46\x0f\xba\xcf\x4c\x6e\x3a\x1a\x85\x81\xa9\x8c\x1b\x90\x40\x07\x0d\x44\x3c\x07\x11\x15\x41\x16\xe6\x62\x0d\x88\xf8\xd7\x69\x05\x26\x04\x37\xa9\xc0\x65\x06\x42\xcb\x01\xf3\x52\xb0\xce\xc2\x2a\xd9\x60\x5e\x0a\x57\x8f\x58\x2d\x07\xce\x8a\xa3\x81\x6a\x72\x6d\x2d\x07\xc0\xcc\xe9\xe1\x18\x66\xe1\xbc\xa1\x10\xd9\x7a\xea\xa3\x25\x6b\x5d\xe8\xe8\x39\xd0\xbf\xa2\xb5\x00\x08\x3d\x96\x28\x57\x1e\x5d\x55\x15\xfb\xa4\xb9\xba\x6f\xec\x03\x68\x60\xb3\xa0\xca\xc1\xc9\xdc\xab\xad\x78\x81\x04\x0c\x08\x96\x20\xe4\x9e\x0d\x72\x46\x12\x64\xc9\x10\x10\x75\x59\x75\x3f\xc0\x5c\x25\x1f\x78\x89\x4e\x34\xc1\x0b\xec\xd8\xf5\xc3\x15\xdd\x7d\x80\x3a\x04\xf9\x4f\xac\x33\xb3\x7e\xcc\x3b\x1b\x17\x89\x44\xd9\x70\x56\x9c\x80\xe8\xde\x82\x38\x2d\xeb\x86\x5c\x39\x18\x56\x6d\x47\xee\x0e\xb6\xc5\x11\xed\x29\xca\x90\x01\xb0\xf9\xf1\x58\x80\x8d\x30\x42\x67\x7c\x56\x19\x50\x91\xa0\x06\xf3\xfa\x5a\x52\xb1\x47\x36\x56\xc3\x12\xcd\x1b\xa9\x46\xb4\x04\xf2\x9d\x38\x46\xf5\x95\x12\x77\x36\x73\xdd\xd9\x0c\xdf\xf4\x45\x27\x9e\x67\x3e\xc7\xd8\xa8\xc6\x96\xc3\xda\x79\x15\x77\xed\x0e\xc8\xb0\x38\x0e\x90\x61\xe1\x89\xf5\xba\xee\xcc\x20\xe4\xe1\xfb\xf7\x38\x20\xda\xc7\x80\xde\x5d\xbc\x67\x03\x51\x06\x30\xc8\x1c\x52\x1c\xad\xe8\x46\x3c\x48\x21\x18\xb4\xe2\x1c\x95\xf4\x46\x85\x36\x3d\x34\xe2\x40\x50\xb9\xf9\xbc\x90\xd7\x3d\xf9\x83\x89\x67\x4b\xd7\x56\x48\x0a\x2e\x19\x18\x69\xd7\x60\x1e\x77\x2f\x3b\x90\xac\x26\xe4\x45\xb7\xbd\x1d\x02\x1d\xd5\x8f\x7e\x3a\x5e\xf7\xc9\xae\xf7\xeb\x05\xb3\xeb\x19\x2c\x8f\x3f\x3c\xe3\xf5\x4c\x76\x76\xf4\xd0\xe3\x6e\xae\xbe\x09\x8a\x6d\x7e\x8c\x98\xd9\xb0\xd9\xc8\xcf\x4a\x9f\xff\xe9\x99\xdf\x00\x33\xee\x4c\x3a\x66\xee\xc3\xb4\xf4\x06\x5e\x05\x25\xdb\x27\xee\x1e\x7f\xf3\x00\xad\x47\x3c\xd1\x5d\xfa\x72\x9c\x92\x2b\x33\xaf\x9b\x7a\x50\x51\xff\xb8\xb4\x5d\x7e\xc8\x89\xce\xd1\xc5\x52\x83\xc1\x09\x82\xe7\x0a\x2b\x92\x2f\xd5\xa5\x13\x0b\x4f\xfd\xf5\x84\x6d\xe5\x6e\x5b\x52\x27\x4d\xd2\x11\x94\xb2\x33\x9b\x99\x10\x23\x28\xf1\xe4\x16\x97\xec\xbc\xf7\x37\x00\x82\x6a\xb8\xdd\xfd\x4b\x96\x74\x89\x50\x98\xd8\x18\x6f\x3f\xb1\x0a\xcf\xee\x8d\xad\x71\xc8\xfa\xd6\x96\xb9\xb1\x0d\xa3\x62\xff\xaa\x8e\x8b\xd7\x2f\x40\x40\xc5\x4c\xc6\x0e\x04\x34\xf4\xa1\x01\xd0\xb0\xf3\x1b\x38\x7c\xa9\x45\x12\xdc\xd2\xf5\x66\xe5\x34\x89\xb3\x4f\x43\x90\xfe\xc4\x81\x3a\x97\x39\xfb\x51\xa8\xa8\x99\x0a\xbf\x69\xe6\x09\x0f\xf3\x1e\x1c\xb7\x0b\x23\x10\xd1\x8e\x0c\xa5\xb8\xf0\xf0\xe5\xc5\x72\x39\x1b\x85\x2a\x79\xf3\xe5\xd3\xe8\x15\x4f\x0f\xb6\x4f\x50\x23\xab\xd8\x22\x83\xb9\x48\xf4\xa7\x42\xbf\xb9\x51\xe8\x80\xb9\xd9\x28\x76\x93\xdf\x22\x4b\x8b\x87\x75\x0f\xce\x28\x63\x1b\xd5\x8d\xa1\x74\x30\x1e\xbe\xbc\x58\x23\x8d\xcd\xc7\x5b\xbf\x2d\x78\xc4\xd3\x83\x7d\xa7\xb1\x0d\x89\xcc\x35\x36\xc4\x7c\x98\x1f\xf3\x4f\xae\xd8\x9b\x18\x0e\xc5\x11\x61\x90\xd3\xe8\xbd\x75\xac\x7b\xff\x8f\x04\xb7\xc3\x92\x90\x5e\xf6\x3d\x76\x71\xd3\xb3\x5d\xe9\x5e\xed\x1f\xba\xe1\xd9\xfb\xf1\x09\x26\x40\x74\xef\xa9\xe2\x39\xe0\x46\x26\x3f\x44\x78\xd5\xc9\x92\x86\x66\x08\xe4\xf8\x80\x8f\x5a\x71\x1c\x3e\x57\x81\x1c\xa3\x70\xc8\x61\xf7\xcf\x7b\x91\xec\x4c\xa2\xf2\xa1\x25\xbf\x19\x19\xa9\x8a\x5d\xbb\xf6\x82\xad\x80\x55\x84\x83\x43\x18\x60\xbd\x39\x80\x6c\x85\xe5\x2e\xb6\xbd\xc9\x33\x6e\x0f\x70\x90\x0e\x5c\xd6\xf8\x16\x31\x77\xef\x52\xf5\xca\xd5\xc9\x41\xec\x57\x16\x5c\xf3\xb8\x34\x7d\x50\xa4\x97\x23\xc5\x30\x02\x77\x50\x4f\xce\x46\x21\xb2\x67\x3a\xce\x6c\x3c\xeb\xa6\x07\xb7\xf4\xfa\xe4\x67\xa7\xde\xb6\x27\x49\xe4\xc3\x8b\x1a\xdc\x31\xfa\xa1\x1c\xf5\x52\xc8\x61\x0f\x0c\x8f\xed\x84\x20\x9f\x10\x30\x5c\xf9\x1d\x07\x85\x89\x0f\x24\x28\xcc\xfd\xba\xf2\x56\xa3\xfd\x6a\x65\x60\x40\x58\x7f\xd0\x3c\x11\x99\x94\xc9\x8b\x93\x70\xc4\x5a\x58\x59\x87\x55\x58\x9d\xe7\x22\xef\x59\xdd\x89\x2f\xcf\x1c\xef\x39\x19\xc2\xb4\x96\x36\x4b\xc1\x97\x71\x3c\x42\xfd\x7d\xcf\x47\x79\xea\xea\x24\x29\xf0\x61\xdf\x38\x1f\xe0\x40\xcd\x16\xfb\x0e\x17\xe0\x87\x1f\x7a\x8f\x06\x60\xdf\xf0\xcb\xe4\x25\x10\x5f\xe9\x27\xf0\x0f\xc0\x88\x2a\x12\xc9\x8b\x7a\x7c\xba\x7d\xce\x82\xd5\x2e\x93\x97\xf0\xed\xce\xd1\x48\x5d\x3c\xe7\xe7\x23\x78\x00\x53\x19\x47\xd8\x25\xfb\xf6\xea\x4d\x40\xce\x9e\xb6\x93\x68\xd4\x90\xdc\x5c\xa6\xa2\x92\x32\x51\x89\xfa\x9c\x98\x83\xa3\xe7\x08\x41\x6f\x92\x0d\x27\xd0\x09\x44\x06\x71\xab\x35\xae\x82\xab\x7d\xe6\x9f\x04\xfc\x3f\x76\x4f\xc0\xf9\x1a\xac\x14\x28\xd4\x85\x19\xc6\xd5\x93\xcb\x1a\x7d\xbb\xc3\x9c\xd1\xbd\x66\x27\xee\x9a\x6b\x9e\xd9\x2f\x7a\xf3\x0b\x3e\x64\x6a\x25\xbd\xf7\x54\xd1\xea\x33\xb5\xef\x60\x3d\x27\x57\x37\x36\x75\x12\xcd\x7b\x09\x0c\x9f\x7d\xd0\x07\x37\x7a\xcf\x39\x78\xfa\xd0\xbb\xd9\xd6\xd7\x29\x7b\x63\x68\x14\xb6\x3e\xaa\xe2\xc4\xdb\xbe\xfe\xbb\x96\xe5\xc3\xb0\xad\xcc\x8b\x07\x13\xa1\xd9\xe3\xf3\x01\x19\x3e\x27\xbd\x43\x7e\xcc\x98\xfb\x9d\x3b\x6d\x8e\x17\x76\x47\x80\xf3\x52\xe7\x45\x61\xcd\x4c\x26\x40\xf7\xd5\xd6\x9d\xc4\xf8\x58\xe4\x57\xeb\x94\xac\x89\x60\x75\xce\x29\x86\x3d\x72\x81\xce\x39\x3c\xff\x41\x3b\x4a\xa0\xed\x92\xf4\x57\x7c\xb4\x6a\x10\x60\x59\x3c\x27\x6b\x7f\x37\xf2\xcd\x16\xb7\xe1\x49\xe1\xd1\xb9\xe0\x5b\x4c\x01\xf7\x8d\xfc\xd1\x03\x1e\x88\xc6\x3b\x7b\x3e\x3e\x21\xf4\x8f\x8b\x31\x63\xe2\x1b\x4c\x02\x6f\x3d\x01\xfc\x0e\x9d\x44\x07\x7d\x97\xec\x43\x71\x2a\x8f\xbd\x0a\x13\xd6\x49\x69\x9f\xd8\x37\x70\x44\xf4\xef\x06\xbc\x8c\x09\xdb\x42\xed\xcf\xb1\x8f\x7c\xac\xe2\x87\xee\x90\x50\x1a\xa4\x7b\x5b\xba\x49\xd8\xd9\xa1\xcb\xbe\x58\x68\xf0\x58\x20\x32\xd3\x0d\x1f\x25\x14\x87\x41\xc1\xfc\xa9\x8e\x0d\xaa\x0b\x11\x34\x72\x54\x29\x9e\x63\xf8\xce\xd9\xeb\xf6\x25\x6f\xf3\x7d\x41\xec\x03\x18\x4b\x3b\xa9\x3f\x2b\x01\x87\x2e\x7d\xe1\x1e\x9a\x93\x33\xe6\x87\x2b\x66\xcb\xe5\x44\xfe\x3f\x9a\x7e\x18\xf1\x10\x9a\xd5\x13\x76\xe3\x43\xbf\xd1\x36\x3c\x03\x19\x62\x00\xe9\x25\xad\xd3\xa3\xd6\x29\x0d\xbb\x55\xe7\x66\x09\xb3\xc2\x3f\xe6\xe7\xba\x6a\xba\xa4\xec\x76\x60\x53\x17\x94\xea\x73\xf9\x62\xb9\xa7\x02\x7f\x21\x74\x8d\x3b\xd4\x53\x51\xe1\x66\x1e\x57\xed\xaa\x3a\xb0\x2b\xaa\x13\xad\x3c\x57\x60\x3f\x8e\x79\xea\xd5\x96\xd7\xc0\x67\xbf\x1b\x4b\x26\x98\xe4\x25\x69\x9e\x4d\x6b\x9c\x68\x48\x78\x28\x2e\x79\xe6\x87\x3f\xbb\xbc\xf9\xea\x02\x73\xb6\xf3\x26\xee\x9c\xe4\x8a\x3d\x66\xf1\xff\x02\xd7\xb1\xe5\xf0\x6f\xae\xd6\xae\xc6\x65\x18\xeb\x30\x0f\x1b\x56\xc3\xa6\x0f\xa8\xd9\x3b\xee\xae\x29\xa1\x56\x61\x1f\x01\x37\x4e\x6f\xc3\x0b\x3b\xf3\x78\x98\x9d\x81\xa6\x86\x59\xbc\x1a\xc7\xbd\x4d\x61\x78\x48\x8a\xa1\x67\xef\xbc\x18\x24\xa6\xc0\x3b\x52\x12\xfb\x26\x29\x33\xb8\x58\x56\xdb\x26\xcb\xfe\x8f\xc1\xcc\x07\x00\x17\x61\x52\x04\x1e\x54\x97\xf9\x77\x59\x06\xe5\xf9\xac\x8d\x2e\x30\x88\x4e\x5c\x04\x6e\x95\x26\x9a\x9b\x92\x54\x8b\x5c\x1e\xd4\xf3\x9c\xe3\x66\x66\x60\x26\x30\x85\x2e\x83\x6d\x74\x4c\xad\xb7\x63\xd6\x8e\xcb\x5c\x63\x37\xb0\x86\xef\x77\xdc\xb7\xe1\x60\x75\xc9\x3d\x6c\x6d\x80\x83\x28\x4f\xab\x32\xa4\xde\x18\xbb\x77\x39\x9b\x69\x05\xbb\x5f\x5e\xa6\x4e\x6b\x9a\xdc\x47\x4d\x18\xc8\x64\x31\x66\x14\x0b\x5d\x18\x41\x92\x6a\x47\x6f\x2b\x6e\x9f\xa2\x65\xfd\x1a\x84\x6a\x5b\x4f\x80\xc5\xce\x20\xc8\x19\x6b\x3c\xd9\x03\x73\x45\xdb\xb6\xdc\xf3\xb2\xaa\xa6\x1f\xd8\xa7\x23\xcd\xcb\x7e\xee\x5b\xfe\xc0\x0f\x1b\x19\x7a\xfb\x4d\x41\x3f\xb7\x87\x7b\x6b\x1f\x27\xac\xfb\x93\x21\xac\xc0\xb9\x5e\x63\x7c\x74\x93\x47\x30\x67\x96\x6c\xfd\x2d\x5e\x1d\x59\x8e\xaa\x66\xcd\x11\xfd\xb8\xce\x1e\x25\x48\xd4\x30\x6c\x56\xd4\x72\x9c\x0d\x41\x30\x20\xc4\xe6\xb3\xb5\x32\xf7\x1b\xd5\x12\x31\x2a\x4b\x5c\xc6\x85\x16\xf8\x55\x03\x49\x85\x3c\xdc\x01\x76\x03\x46\xb3\x87\x44\x53\xfc\xc6\x15\x98\xb2\x00\x8e\x76\x18\x55\x73\x1e\x95\x9d\xd9\xdd\x3d\x1f\x13\x10\xe3\xeb\xb4\x81\xf4\x03\xc3\xc1\xf3\xa4\x37\xb2\x7e\x43\x52\x43\x33\xf8\x08\xb7\x5f\x35\xe7\x37\x4b\x29\xef\xd2\xfc\xca\x94\xf2\x06\xc1\x71\x29\xe5\x8d\x2a\x0f\xa5\x94\x37\x28\x88\x3c\xe3\x26\xd5\x6f\x9d\x52\xde\xe5\x00\xfb\xa4\x8f\xf2\x74\x6f\x4a\x79\x83\xc8\x1d\x29\xe5\x07\x9d\x8f\x63\x58\xee\xd6\xd6\x38\xeb\x74\x97\x86\x76\x84\xbe\xb3\xc2\x77\x38\xf3\xc5\xee\x4a\x6f\xf4\x85\x00\xc0\xc4\x5d\x93\xa3\x35\x15\xfb\xb7\x41\x7a\xbe\xfe\x0f\xee\x81\xe0\xeb\x43\xbc\xc9\xc7\x0f\x27\xcb\x90\x54\x7f\x49\xf6\xcf\x35\x00\x39\xe2\xa9\x3d\xae\xc3\xaf\x13\x3a\xb5\x5e\x5b\xa3\xd6\xc2\xad\x65\xc4\x8d\xe4\xb5\x33\xf0\x91\x87\x36\xfa\x57\x9c\x90\x90\xe7\x39\x41\xd7\xe5\x18\xbe\x93\x56\x1d\x67\x1f\x60\xd9\x84\xa4\xc2\x96\x7b\x71\x6b\xfa\x63\x67\xd8\x7a\xa2\x3f\x76\x6d\x6b\xc9\x20\x5f\x13\x79\x1a\x40\xb4\xe2\x18\x1c\xc7\xfc\x12\xc7\x3e\x7a\x0e\xe4\xb1\xf1\x90\x63\x92\x1d\xc1\x9a\x0a\x5c\xee\xc0\x1d\xe8\x89\xf5\xb9\xbc\x2f\xf5\xf9\x98\x9e\x50\x72\xe6\x86\xec\x20\xd6\x08\x06\xef\xfa\xf8\x39\x60\x07\x8c\x1e\x4c\x22\x30\x0e\x6f\x0c\x97\xbe\x13\x00\xec\xc4\xdc\x43\x76\x61\x5c\x9c\x90\xa9\xab\xc4\xb7\x64\x7f\x85\x01\x5e\x8d\x85\x24\x92\x50\x6b\x90\x3e\x58\x64\xba\xd5\xd7\xeb\xb5\xb7\xba\xb3\x81\x67\x23\x30\x67\x76\xd7\xb0\x66\x82\x07\x67\x22\x06\x70\xc6\xa8\x71\xe8\x04\x05\x63\x08\xbe\x60\x3d\xe8\xe8\x91\x66\x7a\x56\x5e\xe3\x06\xf7\xe8\x35\xd8\x7d\x75\xdf\x6c\x1a\xc0\xdb\x18\x35\x37\x0c\x54\x7d\xb4\x7f\x6f\x3c\x8b\x78\x1a\x19\x37\xb5\x0c\x56\x7e\xb8\x93\x0f\x4f\x42\xde\xbe\xc2\x4c\x78\x7d\x46\xa9\x73\xae\x5d\xe1\x33\x04\x02\x9a\x97\x2f\xa4\x69\xb1\x0c\x7e\xb3\x99\xfd\x48\x59\xbc\xa6\x3f\x76\x55\xdc\x95\xcb\xb3\x59\x5e\x44\x4b\x92\x38\xce\xf0\x67\x72\xcc\xec\x6d\x5a\xd0\x8f\xf7\xf1\x65\xfb\xf1\x31\xb8\x03\xdd\xc0\xfd\xf8\xc3\x3d\xc1\xfd\x78\x2f\xd6\x08\x06\xef\x3a\x96\x30\x60\x04\x3e\x3f\x3e\x80\x37\x86\x4b\xdf\x10\x5a\x2c\x16\x0f\xda\x05\xe6\xc7\x91\xc1\xd1\xef\xc7\x3d\x48\x3e\x3f\x35\x4c\xbf\xd7\x8f\xb3\x44\x98\x9e\xea\x8e\x1f\xb7\x11\x10\x3f\x3e\x8d\xe9\x4f\xbf\x3a\x2d\x3f\xde\x83\x33\x46\x8d\x03\x7e\x9c\xdb\xd7\x0e\x74\x77\xd0\x8f\x23\xcd\xf8\x66\x61\x6b\x37\xf6\xae\xf9\xad\x67\x93\x57\x1c\xcd\x7c\x64\xb4\x0c\x47\x1c\x03\xd3\xd0\xe8\x88\xe3\xbe\xba\x6f\x36\x61\x8d\x8d\x38\xee\xaf\xfa\x68\xff\xde\x78\xbe\x1b\x1f\x71\x3c\x52\xf9\xe1\x4e\x3e\x3c\x5d\x7a\xfb\x0a\x23\x8e\x3e\xa3\x74\x23\x0e\x9e\xbe\xb7\x21\x49\x96\x36\x97\xf3\x5e\x7d\x05\x59\xcb\x1d\x6f\xe4\xd0\x8b\x9d\x63\xd1\x97\x24\x0f\xfb\x36\xa7\x9b\x82\x47\xc4\xe0\x66\xa7\x85\xf3\xb1\xc8\xb7\x7b\x72\xa8\x1a\x72\x55\xd9\xbd\x7e\xfa\x7b\x1c\x27\xf1\x3b\xb5\x3f\xcf\x92\x5d\xec\x74\xdc\x66\x90\x90\x27\x8a\xa0\x78\xea\xe4\x98\x97\xec\xcb\x2b\xbe\xdf\x6a\x6d\xa9\xca\x1c\x93\x31\x4c\xca\x01\x7b\xa5\xe9\xb9\xbd\xb2\xa0\xd4\xe8\xcc\x82\xb6\x4e\xfa\x13\x68\xb9\xcf\x14\x7a\x4e\x66\xf7\x25\x34\xec\x7b\x74\xc7\x73\xf6\xd9\xbd\xd3\x60\x30\x6e\x5c\xb2\xb0\x7b\x65\x00\x59\x0f\xcd\xed\xd5\xd1\xc9\x21\x2c\x90\xcd\x03\xb8\x8d\xe1\xb0\x00\x60\x8c\x83\x9e\x2d\xcb\xbe\x8c\x14\x6e\xab\x7a\xec\xbb\x9a\xc4\x21\x89\xbc\xf1\x82\x54\xc0\xf2\x3e\x8f\xb9\x87\xc0\xf6\x1d\x00\x3d\x30\x71\x23\xa5\xb4\x29\x14\x80\xf5\x05\x56\xea\x01\x63\xbd\x32\xaa\xf2\xae\xe9\x14\x00\x23\x8e\xd5\xa2\x97\x2d\x9c\x63\xf6\xb0\x41\x35\x9d\xba\x5d\x34\x40\x58\x47\x4c\x04\xa4\x37\xd0\x57\xe0\xe5\xbd\x64\x91\xab\x2d\x63\xde\xb0\xa3\xa3\x0f\xbb\xd0\xa2\xdb\x08\x8b\xa3\x33\x99\x88\x32\x3e\x9f\x0c\x5c\xfa\x74\x69\xf9\x87\x33\x02\x47\xc6\x13\x1c\xa8\x2b\xff\x18\x5e\xa1\x6d\xfb\x86\xb1\x0b\x1e\x1a\xc9\xab\x9e\x91\x6c\xb7\xdd\x9e\x5d\x19\xf2\x32\x43\x86\x9e\x6b\xb8\x2e\xa9\x1e\x11\xba\xf0\x01\x11\xce\xfd\x22\x9c\xa3\x6d\x7b\x45\xe8\x80\x87\x44\x38\xef\x11\xa1\x6c\x5b\x1f\x98\xc0\x9d\xa4\x1d\x23\x38\xc7\xd2\x05\x95\x00\xf7\x97\x0c\x20\xfa\xc1\x7f\x67\x4c\xf7\x39\x6b\xae\xa6\x7b\x92\x3c\xbb\x47\xa7\xf9\x37\x18\xdd\x3e\x18\xdb\xb2\xe4\xfe\x5b\x72\xbc\x72\x54\x92\xd7\x4e\xf7\x88\xff\xc9\x3a\x05\x8e\x2b\x28\xe4\xba\x21\x2f\x79\x75\x69\x41\x05\x55\x04\x2a\xf1\x53\x1a\x02\xc1\x9a\xaa\xcc\x22\xb3\x27\xce\x04\xe5\x02\x58\x2b\x83\xd3\x16\x36\x49\xf1\x0f\xe3\xa6\xaa\x94\x92\xa2\x19\x39\x07\xd1\x8a\xfe\x67\x4e\xce\x60\x44\x3d\x2d\xdf\x1b\x97\xf1\x9f\x7c\x97\xf1\x55\x6e\x64\xe3\x92\xc3\x70\x8e\x80\x7d\xd2\x12\xfe\x72\x82\xa1\xf2\x68\xb6\x24\x67\xc1\xf4\x2f\xa7\x86\x1c\xe4\x4b\x09\x46\xd1\xb8\xec\xcc\xe6\xfb\x16\x82\xe8\x96\x9c\xeb\xee\x8b\x75\xe4\x9d\xe5\x85\xe3\x82\x72\x23\x3f\x79\x9a\x5d\x10\xe8\xf9\xae\xc7\x82\x59\x03\x09\xe9\x82\x05\xf2\x2c\xef\x8f\x4d\xf2\x45\xd2\x42\x9e\xf5\xb4\xae\xbe\x18\x78\x58\x9b\x26\xc8\xbb\xe5\x12\x3f\x4d\x13\xd5\x05\xe4\x1d\x43\xb9\xe5\xcc\xde\xaa\xb3\xf0\xb0\x66\x4d\x90\xaf\xd9\xc5\x62\x93\x2d\x16\x92\x9c\xfd\xa0\x9b\x6c\x93\x3d\xf2\x05\x91\xb0\x06\x41\xb9\xb7\x93\xd3\x7d\x9c\x2d\x25\x21\xe4\xad\x2b\x69\x56\xec\x3d\x23\x0b\x0f\x6b\xd3\x04\x79\x3f\xbb\xa4\x9b\xa7\xe9\x41\x99\x87\xf3\xc8\x8f\xf1\xb0\x8b\x89\x86\x1a\x11\x84\xf8\xda\x4c\x37\xf3\x78\x46\x97\x5f\xec\xe9\x18\xfc\x28\x8b\xce\xe6\x0f\x93\xe1\xcc\xeb\xd7\xe0\xc9\xcd\x74\x61\xcf\x08\x60\x04\x9a\x93\x83\x6f\xb0\x23\xf3\xc2\x98\x4c\x1e\x6c\xc6\x33\x5d\x03\x3b\x58\xc0\x3a\xe6\x1f\xd1\xbc\xdf\x7d\x23\x9a\x1f\x47\x90\x98\xc6\x69\x12\xf9\x78\xc8\x2d\x11\xcd\x70\xf9\xcb\xbf\x1e\x9a\x82\x92\x88\x39\x62\x7e\x7b\x3d\xef\xc8\x59\x86\xe7\x9c\x28\xbc\x04\xa7\x82\xfa\xe7\x7b\x5e\x6b\x35\xef\xee\xc9\xaa\x70\xad\xc7\x22\x86\x7f\x5c\xce\xfb\xaa\x6b\x40\x42\x96\xb9\x7b\x76\x83\x15\x71\xe2\x79\x79\x22\x4d\xde\xf9\x5c\xaa\x22\x17\x9c\xa6\x13\xf0\x57\x74\x9a\x5e\x0d\x02\x10\xd5\x3e\x2e\x64\x1d\xee\x9e\x4d\x2d\x7b\x9b\xc5\xf1\x0d\x9e\xb8\xd6\x7d\x40\x12\xa6\x00\x1e\x54\x95\xab\x95\xfa\x52\x6c\x97\xb6\x69\x43\x48\x19\x24\x65\x86\x9d\x1d\x71\x24\xc5\xcf\x0d\xaf\xdd\xc3\x96\x0b\x16\xc6\xa3\x0c\x1a\xa1\x19\x7c\x34\x43\x1c\x1a\x59\xc5\x26\xcf\xae\x14\xb5\x5c\x56\x73\x76\xfe\xa8\x3b\x5d\xce\xfb\x32\xc9\x0b\x4f\x1e\x7a\xf7\x50\xcd\xcc\x3e\x61\x0c\xef\x90\x3f\x1c\xa2\xc1\x67\x36\xc0\xab\x2b\x49\x51\x04\xd1\x8c\xbf\xb8\x12\xe6\x65\x58\x5d\xba\x5d\x3f\x18\x74\xe9\x39\x3f\x1f\x27\xfa\xcf\x40\xde\xbf\xd7\x46\x0c\x0f\x2f\x83\xe4\xeb\x89\xae\xa4\x46\xab\x2e\xe1\x91\x15\x28\x89\xb0\xc7\xa1\x94\x4f\xd5\xed\x47\x69\x52\xb3\xcd\x29\x70\xbc\x7e\x07\xbf\x52\x24\x05\x69\xba\xab\x71\x4b\xe1\xce\xcb\x69\xd8\x2e\x16\xa3\x1a\x9c\x16\xe6\x71\x32\x6b\x3c\x71\x24\xfe\x0f\xdf\x77\xb4\xe6\x68\x81\xf2\x5c\x4f\xc4\x2f\x17\xe7\x94\xa4\x42\xf9\x58\xdb\xef\x13\x09\xc2\x59\xde\x9e\xf3\x96\x85\xa2\x57\xd3\x74\xe7\x38\x56\x10\xa5\x45\xd5\x7a\xe7\x5e\xea\x4b\xc4\x79\x3a\x36\xce\xb1\x4e\xf5\xc4\x1f\xd9\xe1\x10\x67\xce\xfb\x97\x2b\xb2\x49\x57\x4a\x2f\xe9\xd3\x6a\x9e\x59\xa4\x82\x53\x03\xf3\x67\x2a\x2f\x49\x66\xfb\xb9\x8d\x0a\x45\x2a\x37\x83\xf6\xcb\x05\x75\xa7\x1c\xe2\x89\x53\xb2\x0d\xc9\x0e\xf6\x43\xb7\xfb\x94\xac\x0f\x2a\x64\x9e\x4f\x9f\xe2\xf5\x01\xd2\xc1\x19\x4b\x56\x64\x4a\x8c\xf6\x50\xae\x16\xcb\xd9\x6a\x23\xb1\x7a\xe2\x99\xf4\xb0\x26\x73\x8b\xb1\x43\x42\xf6\x69\x2a\x19\x5b\x27\xab\x6c\xbe\xb7\x48\xe1\xbc\x1d\x9e\xc8\x74\xbf\xb4\x51\x11\xf6\x56\xab\xe5\x54\x0b\xcd\x1b\xf7\x1c\x66\x19\x71\xde\x7d\xa5\xbc\x65\x4a\x6c\xc9\x66\xb1\x58\xcc\x4c\x4a\x38\x73\x64\xb1\xdf\xa4\xb1\x85\x89\xf0\xb6\x5e\xcc\x97\xf3\xc5\xed\x4f\x72\x02\xfb\x95\x7c\x39\x34\xc9\x99\xb4\x41\xdd\x54\xc7\x86\xb4\x6d\xb8\x67\xd7\xb8\x9a\xbc\x26\xed\xf5\xd0\x54\x67\xc8\xba\x32\xee\x05\x5b\x64\xdf\xba\x0a\x85\xc6\x41\x7c\xbb\xfd\xe9\x1b\xd2\x8e\x24\xc5\xab\x9d\xda\x04\xde\x8b\xc2\x66\xa4\xd1\x5f\x0a\x86\x0e\xc9\x3b\x0f\x25\x79\xcf\xc0\xbb\x98\x9a\x7f\xf6\x29\xd7\xc9\x4b\xaa\x9e\xe3\x62\xf9\x3a\x7a\xb2\x33\xce\x74\xc0\xe2\x59\x96\x7a\x77\x39\x7b\xba\x17\x82\xc3\xf9\xc6\x6b\x53\x63\x31\x11\xf7\xc8\x3a\x16\x44\x2b\xf7\xb9\x32\x13\x02\x44\xc3\x0d\x25\x0b\x4c\x61\x39\x97\x4f\x64\x63\xfc\xa1\xb6\x50\x3d\xb1\xb3\x58\x66\xe4\x38\x41\x6e\x18\x2c\x3f\x04\xb3\xe5\xfb\x09\xf0\x45\xce\xdf\xcb\xf8\xbd\xa7\xa6\x1f\xf2\x64\xd1\xb0\xfe\xfe\xe0\xde\x2d\xfb\xff\x89\x63\x66\x7f\x6c\x64\x2e\x58\xe8\x26\x75\x22\x22\x0a\x4b\x49\x52\x27\x49\x99\x9f\xf9\xda\x00\x9b\x02\x82\x99\x7c\x5e\x2f\xc8\xcb\x43\x5e\xe6\x1d\xd9\xdd\x5d\xc3\x1c\x4b\x23\x96\xf0\xfd\xf6\x85\x11\xf8\xa7\x9d\x7d\x5b\x8e\x2d\x15\x0e\x6c\x87\x0c\xe8\x0f\x7f\x1d\xff\x9f\xca\xfb\x9d\x94\x37\xbc\xbb\x34\xa0\x3f\xef\x53\xec\xff\x54\xe1\xef\xa4\xc2\xc1\x9d\xba\x01\x0d\xfa\x9e\xf3\xfe\xa7\x02\xbf\x9d\x02\xd9\xc6\xce\x84\xff\x13\xee\xab\xec\x8b\x13\x18\xff\x56\x55\xe7\xed\xd4\xc4\x0c\xf8\x3f\xf6\x5d\x23\x81\x84\x3d\x40\x25\x72\xe8\xf2\x76\xaa\xfd\x3f\x48\xda\xd9\x99\x72\x38\xec\x44\x12\xba\x66\x96\x37\xc5\xe3\x20\x0e\x34\xe5\x67\xfe\x5a\x1f\xbb\x4e\x6b\x5e\x41\x8a\x6d\x1c\x7e\xa1\xd6\xb8\xb8\xa4\x71\xc2\x22\x6f\x3b\xfb\x33\xa0\x93\xd3\x52\x6f\x40\x5e\x91\x15\x81\x59\xfb\x66\x6f\x57\xde\x9f\xe0\x12\x49\x74\x78\xcf\x6e\x93\xc3\xc1\xa8\xb7\x30\x86\xce\xac\xd8\x34\xdd\xcb\x5c\x76\xa2\x8a\x81\x43\x2a\xf8\xb9\x19\xa7\x21\xb9\x1f\x6b\x7c\x62\xc4\x71\x3e\x9a\x5b\xb7\xdc\x20\xf8\x6e\xb4\xad\x13\x70\x93\xc3\x01\x06\x76\x81\x32\x45\xb0\x7f\xe5\xd4\x52\x9b\x67\x8e\xf0\xef\xf9\xda\x2a\x9e\x66\xf5\xed\x79\xbb\xe4\x05\xc0\xd7\xba\x04\xbf\xd5\x29\x16\x2f\x67\x5e\xa1\x0d\xb0\xfc\x40\x3d\xd6\x97\x21\x25\xc9\x7d\xb1\xf1\xfc\x52\x0d\xdd\xcd\x6c\x7f\x25\x0f\xa7\xf0\xca\x00\x99\x92\xec\xf0\xe4\x58\xb4\x5a\x44\x18\x5b\x73\x88\xae\xf8\xb6\x9e\xdb\x4d\x9c\x80\x1f\xef\x61\x79\x4a\x02\x3e\x0b\x54\x70\xf3\x96\x91\xb7\x3f\x31\xd9\xa4\x2b\x7f\x33\xde\x81\x60\x21\x0c\xb1\x63\x0e\x8c\xde\xe1\x20\x79\x35\x4f\xf2\x8b\xbd\x52\x9b\x3c\x5b\x3c\x18\x7b\x96\x58\x27\xd9\x7e\x27\xd2\x49\xb7\xb6\x07\xe9\x71\x75\xd1\xda\x5e\xe1\x30\xa0\xa9\x28\x5f\x1f\xd2\x05\x99\x1f\x90\x79\x90\xd1\xf0\x6b\x09\x40\x7b\xb9\xb8\x47\x3f\x82\x45\x53\x3f\x62\xbf\xd8\xa6\x2d\x17\x07\xc6\xee\x2d\x36\x11\xb3\x9d\x5f\xa4\x7b\x28\x01\x3f\xde\xe3\x8a\x12\x04\xbc\x52\x92\x70\x43\x42\xfe\xfe\x24\x87\x59\x9a\xfa\x9b\xf1\x6b\xcc\x44\x18\x62\xe7\x0e\xbd\x49\x5e\x0d\xbd\xc9\xed\x74\x9b\xbc\x58\x12\x18\xdb\xda\x58\x37\xd9\x96\x38\xd2\x4d\xac\xbe\x17\xed\x71\xa5\xf1\xfa\x5e\x21\x09\xb0\x21\x1c\x6f\x5f\xc8\x3e\x4d\x51\x95\x71\x2a\x7e\x8d\x19\xf0\x01\x5e\xee\xd0\x97\x64\xd4\xd0\x97\xfc\xc0\xe0\x13\x58\x4f\xda\x8f\x25\x12\xed\x19\x99\x0b\x54\x40\x69\x3d\x5e\x75\x8b\xea\xa4\x74\x12\x97\xf8\x76\xe7\xb1\x30\xb9\xf7\x2b\x22\xb6\xb1\xcd\xf7\xe1\xa7\xd6\x3e\x7c\x6c\xee\x69\x7b\x91\x04\xc3\x7c\x59\x05\x3f\x79\x4a\x80\x94\x96\x37\x5b\x4f\x6f\x32\x9e\x9e\x83\x8e\x03\xe7\x2f\x41\xdb\x68\x0a\x5d\x71\x89\xcd\xfa\xd4\xc8\xeb\x75\x79\x57\x90\x3e\xfd\xc6\xf0\xbb\xc3\xca\xfd\x62\x09\xc8\xa8\xfb\x48\x16\xf0\x50\x55\x1d\xc8\x6b\x05\xc4\x32\xf0\x15\xc6\xcc\x6e\x84\xa4\x41\xf7\x09\x0a\x3f\xc6\x2a\xf8\x79\xf6\xaf\x04\x63\x04\xc5\x99\x46\xae\x6e\x0a\xbf\x9d\xf3\xac\x90\x43\x06\x2e\xdf\x1c\x92\x9e\xb5\x5d\x4f\x0e\x95\x51\x56\x61\xb4\xaf\x97\x7a\x6e\xf3\xee\x33\x1f\x63\x96\x81\x63\x05\x2e\x8d\xf3\x63\x9f\x54\x7d\xcb\x5b\xf5\xd6\xac\xe8\x11\x4b\xe2\x3c\x31\xfe\x0a\x1b\xd2\xd6\x55\xd9\xb2\xe3\x44\xac\xc4\xab\x56\x06\x35\x5f\xf0\xf1\x50\x32\x5f\xee\x70\xea\x79\x57\xe0\x23\x15\xe3\x10\x7c\xee\xa8\x94\xcc\x92\xc6\x30\x9a\x2e\x7b\x0b\xc6\xbf\xae\x1d\xb3\x1e\x9d\x09\x7f\x0f\x8e\xbf\xa6\x9d\x3b\xfb\x7e\xfa\x9d\x64\xdc\xd3\xce\x9d\x7d\x7f\x23\x8e\xef\x6b\xe7\xfa\xcd\x4c\x1c\xbe\xd8\xf4\x0d\x2d\xdc\xd7\xcc\xdd\x86\xf7\x16\xfc\x7e\x45\x33\x77\x9b\xdd\xef\x22\x5f\x7f\x33\x77\x1b\xdd\xef\x22\xdf\x13\xe2\x01\x7d\x37\x4e\x40\x5f\xc6\xf0\x06\x5f\x69\xb2\x6b\x8d\xbc\xfb\x32\x10\xcd\xd8\x54\x45\x7f\x61\x41\x03\xbd\xff\xd8\x59\xb9\x8f\xf3\xaf\x69\xc3\xa8\x45\x63\xc3\x6f\xcd\xea\xe3\x6d\xdc\xd3\xe3\x91\xf3\xf0\x57\x49\xb5\xcf\x6b\xdc\xd1\xe3\x37\x61\xf5\x9e\x36\xfa\xaf\x97\x7d\x8d\x25\x7f\xed\x10\xfc\x8a\x26\xee\xb3\xb1\xaf\x67\xf4\xe1\x26\xee\xb3\xb0\x6f\x2e\xd1\x1e\xe7\x70\x97\x7d\x7d\x73\x89\x62\x5e\xc1\x33\x55\x2b\x13\xd6\x5b\x04\x1f\xad\xa5\x8a\x03\x01\x7c\x5e\xbd\x0b\x5e\x73\x6c\x8c\x71\x65\x93\x7b\x6b\x98\x2b\x4e\xb3\xc1\x90\x83\x88\x5f\xc4\x36\xa2\x7c\x68\xc6\x47\x88\x47\x0f\xcf\x5d\xf3\x3c\x72\x1a\x7a\x90\x80\x46\xa7\x02\xf8\xaa\xf6\x46\x11\xd0\xe8\xd4\xaa\xbe\xaa\xbd\x51\x04\x10\x71\x8c\x73\x96\x0f\x12\x40\xc4\xf1\x68\x7b\xa3\x08\x20\xe2\x78\xb4\x3d\x9c\x80\xfd\xa0\xe9\xb0\xb5\x8e\x98\x70\x1e\xab\x8f\x9a\xda\x43\xad\x8d\xa9\x8f\x1a\xda\x43\xad\x8d\xa9\x8f\x9a\xd9\xd7\x49\xb2\xa7\x3e\x6a\x64\x5f\x27\xc9\x51\xad\x01\x13\xfb\x3a\x49\x66\x88\xcf\x51\xaf\x20\xf7\x0b\xd6\x9c\xe4\x1f\x90\x6c\x3f\x01\x47\x34\x8f\xb7\x37\x8a\xc0\x00\x7b\xa7\xaf\xed\x9f\x4d\x60\x80\xbd\x7b\xda\xc3\x09\xb8\x4f\xc6\x0d\xb4\x0f\x23\x93\x47\xc4\xdb\x57\xdf\x31\xbd\x87\x5b\x1b\x53\xbf\x9f\xb7\x47\x44\xdb\x57\xbf\x9f\xb7\x7b\x5a\x43\xeb\x0f\xe8\xd1\x89\xea\xdc\x4f\x2a\x72\x5f\xdc\x77\x18\xcd\x80\x07\xe8\x77\x32\x24\xfb\x93\xfd\xbc\x2f\x46\xe5\xa3\x49\x4c\x5d\x76\x73\x31\xd5\xd7\x2c\xbc\xb7\x28\xae\xa0\xae\xb2\x0c\x06\xf0\x8b\xd9\x50\x88\x6b\x52\x14\xdf\x8c\x90\xc8\x14\xc3\x1b\xd3\xb0\xe7\x95\x62\x8e\xa8\x32\x1b\x60\x89\x8d\x00\xc2\xb3\x25\x1c\x7d\x96\x6c\xf0\x63\xd6\x58\x9a\x23\x85\x38\x4c\xef\x5e\xd1\x20\x14\x55\xfe\x05\xf4\x9e\xa8\x81\xe3\x91\xcc\xfd\x67\xd3\x7a\xc9\xde\x29\x9c\x5e\x92\x8f\xca\xc7\x24\xaa\xee\x89\x20\x57\x32\x2d\x1c\x9f\xf1\xf4\x9f\x0a\x43\x2f\x7b\xf6\x53\xbe\xd7\x84\xfa\x48\x3e\x6c\x45\x06\x51\x7e\x1b\x03\xb9\x19\x0a\x11\x7c\xf2\xe9\x3f\x80\x85\x5e\x38\xed\x21\x7b\xa7\x70\xfc\xf4\x1e\x95\x8c\x49\x51\xdd\x73\x40\x6e\xa7\x5a\x38\x1e\xf9\x0c\x9c\x7e\x42\xef\xbd\xf6\x53\xbe\x53\x44\xbd\x24\x1f\x95\x92\x49\x54\xde\x25\x40\x2e\xc9\x9a\x28\x1e\x19\x0d\x1c\x35\x42\x6f\xdf\xf6\x12\xbe\x53\x44\x7d\x14\x1f\x95\x90\xa4\xf9\x99\x14\xc5\x15\x3c\x11\x0b\x8f\xb3\x6f\xa7\x9b\x87\x2e\xc0\x42\x37\x49\xe6\xf4\xe7\xfe\x9b\xb1\x03\xe7\x6c\x06\x50\x79\xbf\x02\x76\xb8\xfe\xbf\x2e\x55\x87\x3c\xa6\x60\x6a\xcd\xba\x7c\xca\xeb\x87\x85\x3e\x8e\x33\x5b\x38\xef\xe6\xb1\x8c\x19\x0c\xaf\x3d\x1b\x39\x0e\x4c\x34\xb6\xc1\xc7\xaf\xf5\xc3\x57\x08\x7b\x52\x76\x78\x93\x46\xc5\x71\xcc\x6f\xe7\x1a\xa7\x8d\xe2\x80\x39\xca\xaa\x4e\xd2\xbc\xfb\xb2\x8d\x66\xbb\x43\x5e\x74\xa4\xd9\x26\x45\x7d\x4a\x7e\x10\xe5\x3f\xcf\xe2\x0f\x82\x0f\x99\x12\x87\xff\x61\x1c\xfb\x52\x2d\xf4\x67\x64\xd1\x8d\x2d\xf1\xc6\x96\xf1\x87\xdb\xfe\xd2\x75\x55\x29\x33\x1a\xc8\x24\xa7\x36\x25\x6d\x4b\xdb\x58\x9d\x85\x01\x6f\x11\x25\x75\x4d\x92\x26\x29\x53\x79\x13\xe3\x5c\x65\x49\x11\x56\x35\x29\xed\xeb\x29\x02\x66\xa4\xb4\xd1\x71\x2d\x4b\x7e\x01\x1e\xa7\xe5\xaf\xf6\xee\xac\x97\x42\xf9\xc1\x19\xfd\xde\xb6\x3c\x7e\x66\x3f\x1c\xba\x8c\x07\xdf\x01\xde\x81\xd7\x1a\x19\x63\xd1\x21\xc9\x48\x20\x3a\x90\xe5\x49\x51\x1d\xaf\xc6\x2d\xe7\x43\xd5\x9c\x79\xaa\xdc\x22\xe9\xc8\x0f\xf1\x24\x9c\x2d\xdf\x7f\xd8\x85\xe7\xb6\x17\xde\x5b\xd7\xbd\x45\xed\x34\x19\x44\x73\x91\x53\xa4\xba\x74\xbb\xf0\x5c\xfd\x66\xa0\xab\xbf\x11\xdc\xca\xc0\xac\x7c\x78\x00\x09\xc7\x90\x12\xca\xcb\xbb\xe4\x13\xf7\x09\x27\xf6\x49\x86\x0e\x04\xa3\x11\xf7\x7a\x8e\xf3\xd8\xa3\xbc\x31\xc4\xaa\x89\x14\xbe\x48\xbd\xb1\x77\x74\x74\x66\x26\x50\x0a\x27\xa1\xd9\x07\x77\xb6\xc1\x4f\x25\xce\xeb\xd7\x60\x63\x4d\x81\xf6\xa1\x44\x1f\x0e\xe0\xb6\xc8\xeb\xad\x4e\xcd\xf3\xea\x18\x6f\x48\x91\xb3\xa6\xaa\xed\xb7\x75\xc7\x8e\x98\x05\xf2\x54\x26\x9d\x6f\x6c\xfa\x6c\x94\x5c\xe5\x04\x13\xe3\xf3\x8b\x56\xa1\xaa\x96\x97\xd7\x31\xb3\x92\xa8\x66\x3d\x97\xd9\x7b\xd0\xf2\x3b\xf6\xc6\xd3\x12\xbe\xa4\x3e\x5d\xa9\x2c\x40\xda\x2c\x38\x4d\x99\xc3\x05\x3e\xea\x3e\xd3\x48\xf0\xcc\xa4\x73\xae\x55\xd2\x54\x9d\x63\xa7\x45\x1d\x2b\x53\x4e\x09\xd8\xa4\x58\xf3\xda\x2f\x7e\x41\x57\x1e\xb0\xac\x96\xcc\x83\x83\x1c\x0f\xdc\x1d\xe1\x0b\x6c\xde\x71\xb3\x89\x20\xda\x77\xe5\xc7\x08\x3c\x7c\xc6\x54\xed\x5e\x5a\x8b\x91\x7a\x72\xfd\x8d\x92\xe0\xb9\xc5\xdc\x3a\xcc\x8d\x7f\xd4\xbf\x9a\x49\x98\x7b\x5e\x30\x33\x06\x39\x07\xad\x62\x9d\xd4\x83\xa5\xea\x0a\x58\x0a\x24\x6b\x60\xa3\x03\x4d\x3d\xa9\xda\x37\xd2\x3c\x48\xb2\x81\x56\x3e\xda\x37\xa7\x7c\x60\xef\xfc\x6d\x36\x33\xc0\x7b\x21\xf9\xde\x70\xfc\xa8\xab\xaa\xa2\xcb\xc1\x20\x4c\xf6\x6d\x55\x5c\x3a\x62\x3c\x6a\x6d\x5d\x2f\x64\xef\xb0\xe7\x05\x1d\x1a\xf2\xe1\xfc\x9e\x7c\x20\xd3\x68\xb1\x1b\x31\xfc\x04\x27\xc6\xb8\xdb\xe0\xe8\x1b\x88\xdf\x55\x46\xba\xa4\x70\x0e\xac\x74\xc9\x92\xb6\x28\x54\xf7\xde\x26\x44\x16\x97\x41\x25\xb2\x78\x3b\x1b\x90\xee\xa1\x0c\x6f\x8d\x72\xdb\xf3\x53\x0e\xf3\xd2\x4c\x83\x36\x8b\xed\x9c\x7f\xeb\xa1\x0c\x2a\x23\xef\xfe\x81\x37\xd3\xe1\x7d\x48\xc9\x48\xd2\x34\xd5\x67\x44\xf5\x56\xc2\x97\xd8\x8c\x6d\x91\x73\xe2\xfc\x66\x2b\x1b\xe4\x86\x62\x02\xab\x29\x73\x36\x5f\xc6\xef\xcd\x6c\xea\x60\xd2\xe4\x2c\xc8\x07\x87\x8d\xa3\xc7\x70\xaa\x07\x6d\x31\x1a\x03\x0d\x7e\x15\x7d\x66\x3d\xde\x06\xd4\xd5\xd0\x07\x5b\x40\xa9\xb3\x2d\xd1\xf8\xfd\xce\x7c\x7d\x93\x99\xb9\xb7\x25\xa3\x35\x7e\x34\x00\x6b\x0f\x93\x96\x6c\xce\x7a\x9d\xdf\xdf\x5e\x2c\x5b\xdc\x81\xef\x97\x68\x73\xf2\xf5\x4c\xb7\xc1\xd1\xc6\xe0\x34\x66\xae\x40\x91\xe6\x50\x93\x80\x6d\xbe\x41\x13\x5e\xbd\x79\x4d\x62\x4c\x23\x75\x55\xb3\xf7\x28\xdc\xb1\x09\xd8\x87\xd1\xd0\x54\xcf\xd1\xe2\xf1\x59\x35\xbb\x3c\xad\xa0\xdf\x36\x9d\x35\xcb\xef\xe4\x09\x32\x7b\x82\x39\x37\x00\x65\xef\x82\xbd\x4d\x00\x2a\x13\x8b\xbb\xd5\x47\x20\x99\x99\x4d\x9b\x73\x52\x28\x61\x3a\x9e\x82\x87\xe0\x12\xea\xbb\xd4\x2f\xe1\xae\x3f\x30\xe1\xae\x0b\x30\xe0\x76\xa0\x66\x3c\x29\xb2\x30\x73\xbc\x2e\xac\x05\xfc\xc2\x5e\xc0\xaf\xf1\x4d\x93\x27\xfa\xd3\x13\x76\xee\xe9\x8f\xa5\x06\x35\x65\x04\xda\xec\xf4\x82\x44\xef\x42\x04\xfc\x35\x58\x81\xf1\x1c\x31\x43\x9f\x58\x7f\x6f\x93\x43\x87\x5a\xad\x19\x3f\x7c\x9d\x7f\x31\x9b\xb4\x2e\xc0\x4c\x5d\x26\x05\x53\x26\x1e\xcf\x51\x26\x5e\x4e\x79\x67\xd8\x88\x24\x8c\x4f\x4b\xd3\xa9\x33\x70\x65\x77\xdc\x19\x1e\x24\xcc\xd5\xa5\x86\xc5\xb2\x78\x4f\xe4\x64\x80\xbc\x03\x46\x04\xff\x8a\xdb\xe0\xdd\x4e\xeb\x76\xe7\x58\xdc\x68\xe6\x58\xa6\x5a\xc3\xfa\x65\xcf\x0d\xb7\xc3\x7b\x6c\x8c\x9b\xa9\x35\xe1\x5b\x6d\x18\x4e\x07\xe6\x0c\x06\xe5\x96\x10\x70\x46\x90\x9e\xf3\x81\xc9\xda\x17\x52\x8b\xef\x60\xc6\xe8\x32\xa7\x30\x5e\xdb\xe0\x02\x10\x3e\x73\x83\xae\x1a\x00\x5b\xe1\x4a\x88\x1e\x5e\x90\x6e\x8b\x75\x94\x5f\xdb\x83\xcc\x19\x5d\xa7\xf5\x6d\x65\xcb\x87\xb5\xfb\xb4\xcd\x85\x69\xb5\x03\x7d\x3e\x10\x01\x28\xf6\x2a\x1b\xf0\x81\x74\x5a\xa4\x5f\xb9\xa3\x79\xbe\x39\xa2\x0d\xe3\x16\xa5\x49\x53\x5d\x5a\x2c\xa1\xbc\x86\x89\x80\xdc\x5d\x17\xdb\xe9\x6a\xe0\xeb\xf7\x66\xe5\xe7\x88\x5d\xc6\x33\x5c\xb0\x4b\x0f\xd9\x3c\x93\x29\x06\x45\xfa\xdd\x80\x39\xe4\x01\x38\xde\x38\x4f\xd7\x8b\x42\x78\xe6\x5e\xc3\x83\xb8\x34\xc4\xdd\x5f\xa7\xbc\x24\xaf\x9d\x5b\x5a\x37\xe4\xc5\x4e\xb2\x83\x53\xbc\xca\x33\x6d\x77\x10\xf6\x85\x3d\x7d\x0a\xa0\xe4\xae\xc2\x6f\x63\x70\x46\x58\x0e\x1c\x1f\x01\x66\x91\x38\x53\x22\x40\xf0\xf5\x86\x77\x96\x47\x01\x7d\xad\x08\x3c\x40\xcc\xc2\xa3\x23\xa0\xa9\x8a\xa1\xd0\x4f\x2d\x3c\x84\x4c\x96\xef\xc7\x6c\xa2\xc3\xcf\x04\x83\x69\x3a\xdd\x4f\x03\x76\xd6\xd0\xd5\x07\x97\x71\x2e\x82\xd1\x89\xb6\x98\xc0\x19\x1b\x61\xdb\x55\xf5\x0f\xe6\x3e\x47\x10\x7f\xf0\x01\xe3\x38\x9e\x7e\x08\xa8\xf0\x3e\x8c\xc8\x8e\xd5\x55\x01\x13\xf9\xc4\xa6\x3f\xf1\xd0\x84\x24\x1b\x52\x93\xa4\xdb\xf2\x7f\xc2\x57\x29\xdd\xba\xa9\x8e\x79\xb6\xfd\xd7\xff\xfc\x0b\x6d\xf2\x6f\x72\x6f\x38\xfa\x6b\x9e\x36\x55\x5b\x1d\xba\x48\x35\xdf\x76\x49\xd3\xfd\x99\x76\xa4\xed\x9a\x9f\xbf\xff\x6e\x1d\xf3\xff\x7d\x3f\x09\x48\x99\x01\x40\xac\x01\xff\x53\x54\xfe\xdb\x97\x9a\xfc\x3c\xc5\x24\x0d\x8c\x88\x6d\x2d\xab\x4d\xd3\xb7\x10\x3e\x97\x85\x5f\xfe\xcb\xaf\x14\xbe\xa0\x6f\x2b\xe4\x77\x10\x7e\xec\x13\xfe\xfa\x0e\xe1\xab\x8f\x5e\x76\x39\xff\xfe\xa5\xb6\xbb\x9d\x21\x66\xef\xda\x8c\xda\xec\xb2\x5b\x11\x6f\xae\xd2\x79\xc9\x65\x41\x00\xad\xf9\x55\x02\xc7\x56\xbd\xca\xcd\xa9\xfa\x15\x4b\x60\xac\x56\x50\x48\x4c\xc2\x26\x99\x43\x72\xce\x8b\x2f\xdb\x96\x34\xf9\xa1\xb7\x03\xf6\x43\x86\xdf\xff\x7d\x16\xcf\x37\xdf\x7b\xeb\x50\xe6\xd0\x3a\xc9\xf7\xc6\x74\x9b\xe5\x69\xd2\x55\x4d\x8b\xcc\xa4\x32\x7e\x66\xb9\xf8\x65\xe0\xa7\x16\xd3\xcb\x9d\xdc\xdb\xb5\xa2\xc1\x79\xfc\xde\x7e\x04\x71\xc4\x8b\x4e\x08\x4b\xee\xfb\x4e\x21\x5c\x19\x4d\x81\xcc\x81\x88\xf5\xe2\x9d\x32\x5a\x76\xdb\x70\xb3\xd9\x60\x19\xed\xe1\xdb\x69\xe0\xa1\x0e\xff\xa7\x52\xb0\xf7\x10\xfc\x1d\x79\xd5\x08\x8c\x51\xc3\x1a\x41\x8f\xa4\xb7\x57\x0b\x5c\xd1\x95\x19\xe8\xca\xcc\x97\x4e\x03\xea\x5a\x26\xf9\x77\x94\xc6\x9d\xe5\x52\x46\xaa\xf4\x37\x78\x88\x40\xef\x85\xec\xe0\x1b\x11\x46\x3e\x3d\x88\xff\xa6\xae\x8f\x33\xcd\x3e\x2f\x5c\x61\x5d\xf6\x89\x79\xd4\x0b\x17\x8f\x8e\x70\xb5\xff\xaf\xe5\x3c\x77\x86\xe9\xd2\x19\xa6\xe6\x2b\x1f\x73\x23\x56\x56\x3a\x60\xb8\x33\xb5\x36\x98\x01\xf3\x07\x8f\x93\xe0\x83\x0e\x9e\x20\xbd\x45\x69\x41\x92\xe6\x90\xbf\x8a\x71\x3b\xd1\x05\x2c\xec\x9f\xe8\x07\x3b\x34\x86\x2a\xb1\x51\xc2\x43\x71\xc9\x33\x17\x51\x94\x0b\x74\xba\xa6\x90\x28\x6a\x7d\x31\x89\xa8\x93\x08\x4f\x55\x93\xff\x46\xab\x15\x01\x2f\xe0\x59\x29\x24\x7a\x1f\x8e\x20\xb3\xef\xa8\x6c\xab\x62\x9f\x68\x8e\x61\x19\x40\xe3\x69\x25\xe4\x53\x3c\xcf\xba\xcc\xa8\xe8\xc7\x12\xa4\xca\xe4\x45\x55\xa0\xbf\xeb\x62\xc8\x83\xf8\xd3\x00\x8a\x0f\x89\x16\x8e\x2c\x35\x51\xe5\x89\x1f\x1b\x59\x95\x0b\x74\xf6\x30\x9a\x42\xe2\x7f\x29\x90\x3c\x2a\x04\xe0\xaa\x48\x20\xc1\xaf\x72\x0a\xcd\x28\x74\xd7\x83\x72\xc6\x64\x47\x9b\x6f\x3d\x26\xe4\x31\x18\x60\x18\x23\x8c\x01\x51\xf4\x28\xa5\x02\x75\x99\x2a\x42\x75\xe2\x91\xbe\x21\x65\x57\xae\x98\x10\x85\xbc\xa8\x50\xb6\xfb\xaa\x3b\xdd\x22\x3e\x97\x89\x6f\x9c\xe6\x0e\xdc\x88\x57\x5c\x60\xaa\x53\x70\xd0\xe8\x8f\xf9\xb9\xae\x9a\x2e\x29\xbb\x1b\x48\x98\xaa\x5f\x0b\x80\xf0\x53\x9e\x11\x63\x4d\x0c\x81\xed\xa9\xfa\x6c\x72\x05\xa1\x79\x29\xbe\x2c\x5e\xc1\xc7\x46\x79\x2c\x87\xcd\xb0\x8c\x38\x9d\xc2\xb6\xf1\x4f\x71\x90\xec\xdc\xcd\x43\x7b\x22\xee\x7d\x46\x5a\x9d\x14\x62\x6c\x67\xa4\xf4\x30\xbe\x73\xf8\x81\x6c\x27\x87\x43\xfe\x6a\x9d\x68\xb8\xfd\x29\x3c\xb7\xe1\x4b\x4e\x3e\x53\x34\x31\x5f\x67\xe4\x25\x4f\x09\xf7\x01\xb7\x48\xf4\x35\x7c\x6d\x27\xea\xf7\xf6\xac\x7f\x3f\x67\xfa\xf7\xe2\xe8\x13\xa9\xff\xe1\x79\x4d\xdf\x2b\x71\x36\xa8\x30\x44\x3e\xda\xba\xc6\x0b\x0b\x9b\xea\x33\x24\x74\x82\xdd\xe9\x32\x7f\xbd\x94\x14\x05\xa8\xe8\xfd\xf0\x2e\x5c\xa6\xea\xd5\x66\x33\x35\x7a\xd5\x9e\x47\xf6\x0a\x20\x3a\xbd\xb2\x61\xfe\x5e\xb5\x67\xd8\x2b\xa7\xde\x70\xaf\xf8\x27\x79\xbb\x57\xd3\x29\x0d\xe6\x40\xb7\xce\xd9\xc8\x6e\x01\x44\xa7\x5b\x36\xcc\xdf\xad\x73\x06\xbb\xe5\xd4\x1b\xee\xd6\x94\x7d\xc7\x06\x1d\x00\x96\xda\xdf\x01\x80\xe8\x74\xc0\x86\xf9\x3b\x50\x1c\x61\x07\x9c\x7a\xde\x0e\x38\xa3\x85\x0f\x6b\x68\xaf\xd6\x40\xbb\xdb\x52\x05\xc5\xf6\x7c\x07\xc5\x01\x2b\x11\x24\x81\x9e\x86\x49\x2a\x0d\x89\xca\xfe\xa9\x44\x4f\x49\x75\x93\x97\xdd\xc0\x8c\xc3\x71\x3c\x55\xfa\x55\x6f\xe2\x3a\xda\x47\xc0\x7e\x03\x60\xc8\xd0\x06\xb0\xda\x1e\x33\x10\x5d\x10\x82\xe9\xed\xf4\xed\x0f\xff\x37\x00\x00\xff\xff\xb9\xfe\x06\x55\xaf\x60\x01\x00") -func web_uiStaticBootstrapMinCssBytes() ([]byte, error) { +func web_uiV1StaticBootstrapMinCssBytes() ([]byte, error) { return bindataRead( - _web_uiStaticBootstrapMinCss, - "web_ui/static/bootstrap.min.css", + _web_uiV1StaticBootstrapMinCss, + "web_ui/v1/static/bootstrap.min.css", ) } -func web_uiStaticBootstrapMinCss() (*asset, error) { - bytes, err := web_uiStaticBootstrapMinCssBytes() +func web_uiV1StaticBootstrapMinCss() (*asset, error) { + bytes, err := web_uiV1StaticBootstrapMinCssBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/bootstrap.min.css", size: 90287, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/bootstrap.min.css", size: 90287, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticConsulLogoPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xba\xf7\x57\x13\xdf\xf7\xc6\x3b\xc1\x20\xa1\x08\xa1\x09\x0a\x52\xa4\x83\x74\xa5\x48\x49\x68\xd2\x7b\x97\x0e\x02\x22\xd2\xa4\xd7\x04\x08\x5d\x45\x69\x52\xa4\x4a\x15\x10\x90\x0e\x42\xa4\xaa\x14\xe1\x8d\x74\xe9\x4a\xe8\x84\x1e\x4a\xca\x5d\x7e\xbe\xf7\xfe\x11\x77\xcd\x9a\x35\xbf\xcc\xec\x39\x67\x9f\xd7\x7e\x9e\x73\x66\x4e\x92\x91\x81\xe6\x0d\xaa\xdb\x54\x00\x00\xdc\xd0\xd6\x52\x37\x01\x00\x32\xe0\xdf\x09\xb9\x0e\x00\xc0\x49\xc8\xe4\x25\x00\x00\x60\x77\x15\x7d\x15\x00\x68\x48\xa5\xc6\x3b\x91\x03\x00\xc0\xe5\xa2\x65\xa2\x0f\x00\x61\xfc\x00\x80\x44\x01\xc0\xbf\x5b\x90\x9b\x00\x10\x28\x01\x00\xdb\x8e\x00\xf0\x30\x1b\x00\x58\x7c\xdf\x77\x18\x2b\x02\x00\x70\xdd\x59\x57\x53\x1d\x20\xfd\x3b\x8a\xba\x2a\xd2\x01\x00\xa0\x08\xd0\xd6\xd7\xa0\x58\xbd\xc6\x09\x88\xb0\x54\x37\x0b\x48\x00\x00\x12\xd0\x56\x57\x31\x0b\x99\xdf\x25\xe0\xd2\x79\x2c\x0b\x56\x28\xa3\x96\xc3\xc5\x8a\xaf\x15\x6b\x6c\x3f\x49\xcb\xd1\xe3\xff\xa1\xf3\x19\xfc\x63\xc2\xce\xee\x41\x6d\x79\x85\x7b\x47\x75\x79\x85\xa7\x5b\x87\x7b\xde\xaf\x4e\x05\xcf\x16\x77\x17\xf7\xe0\x16\x77\xdc\x31\xe1\x86\xa5\x4b\x90\x7b\x70\x4b\x90\x9b\xc0\xf4\xae\x1b\x0e\xf3\x58\x6f\x34\xf3\x6e\x8a\x94\x50\xda\x13\x37\xa9\x66\xc8\x9d\x68\x64\xfc\x30\x6e\x89\x00\xc8\xf5\xae\xfa\x52\x40\xdf\xc2\xe1\xfd\x57\xd9\xa1\x64\xc5\x6f\x88\xec\xaf\x71\x53\xcb\xe2\x48\x38\x17\x14\x02\x26\x8b\xfe\xff\xc7\x85\x07\x7c\xfb\x8c\x12\x02\x8e\xe9\x3b\xc6\xe4\xf9\x28\x9f\xba\x9f\xbb\xc3\xae\x6e\x71\x9e\x3d\x04\x93\xf5\xfc\xc7\xc3\x04\x44\x3b\x82\x37\x13\xb8\x38\xaf\xab\x86\x42\x21\x83\xef\x1a\x16\x02\xc0\x31\x7e\x6b\x42\x71\x57\x95\x11\x8f\xe8\xf8\x36\xe3\x62\xb8\xa0\x2f\xc5\x3e\x7c\x6e\x87\x80\x5d\x46\x41\x71\x11\xad\xcb\x91\xf3\x85\x30\xd1\x45\x94\x0c\x22\x19\xed\x75\x37\xe3\x5a\xb4\x63\x1b\x84\x1c\xce\x25\xc7\xa5\x44\x15\x1e\xf0\x1d\x7b\xe7\x0c\x1b\x26\x9f\xd0\x07\x39\xb3\xef\x9e\xd9\x59\x3e\x7d\x41\xab\x2a\x09\x85\xbc\x86\x14\x03\x10\xf0\x9d\x4d\x95\xd9\x60\xc6\x95\x4d\x60\x8c\xee\xa8\xd3\xd8\x21\xf8\xd2\xba\x4e\x35\x87\xf3\x48\x1e\xd6\xef\x19\xa4\x20\x0b\x40\x75\xa2\xe1\x12\x10\x14\x19\x17\xf4\xfe\xe6\xdd\xdd\x4e\xeb\xd5\xca\x04\x6c\x71\x22\xf6\xf4\x52\x61\xb1\x7b\x66\xcb\x96\x70\x72\xf7\x3d\xdd\x51\x48\x36\x3a\x5a\x6c\xac\xaf\xdb\xfb\x2e\x13\x59\xf4\xca\x16\x3d\x15\x72\x65\xf6\x05\x10\xbd\xac\x5f\x49\xc1\x19\x3b\xd6\xd7\xbd\x7f\x1a\xee\x54\x37\xb7\x45\x7f\xb7\xfb\x2c\x91\xe1\xf3\x22\x38\xfc\xe0\x42\xa5\x9b\xe5\xf4\x01\xdc\x9d\xbc\xe4\xd7\x45\x0b\x77\x06\x59\xf4\x8a\x23\x84\x1c\xee\xfb\x7c\x93\xeb\xe0\x03\xca\x5d\x96\x9b\x93\xaf\xbf\x8f\x36\x62\xbc\x90\x31\xde\x68\x81\xff\xf3\xb6\x73\x89\x91\xba\x19\xcb\xb0\x24\x9b\x88\x64\xc2\xa6\x94\x86\x14\x26\x11\x1a\xcf\x3b\xa2\xf2\x4c\x91\x61\x64\x27\x35\x91\x27\x46\x5e\x2b\x9b\x67\x24\xda\x3f\x1e\xf9\x02\x9c\xc1\xf3\x93\x95\x6c\x08\x1a\xcc\xb6\xec\xc2\xe4\x37\xc3\xb7\x20\xf3\xc4\x6d\xf2\xc9\xb3\xc7\x0c\xfe\xb6\xbd\x55\xfa\x6d\x9e\x8c\x8f\x44\x93\xda\xe3\x47\x04\x07\xde\xab\x74\xd6\xe3\x38\x17\xa3\x96\xf6\x90\x62\x63\xc5\xc3\xc7\xfc\xaa\xb7\xa0\x90\x0e\x1e\x26\xa0\x47\x9d\x91\xfb\x24\x9c\xfe\x3c\x81\x79\xdf\x69\xcc\x86\x83\x99\x25\xbd\x54\x23\xa3\x54\xa3\xa9\x4d\xbf\xe9\x25\x77\x59\x7a\xd6\xfd\xb2\x36\x41\x6e\x53\x26\x01\x9a\x01\x3e\x7b\x04\x2f\x0d\x9f\x44\x82\x1c\x46\xf0\xf5\xad\x64\x17\xe0\x8e\x9f\x11\x80\xe4\x02\x68\xd8\x21\x40\x2f\x80\x34\x26\x9c\x76\x61\x5d\x96\x49\xd4\x46\x2c\x3f\x5f\x7e\x28\x7f\xf3\x09\x71\xe3\x2b\x20\x77\x0d\x2c\x46\x51\x2f\x4f\x96\x70\xcd\x8a\xc6\x2f\x96\x5b\x82\x75\xed\x41\xfc\x57\xc7\xec\x19\xdb\x91\x61\x31\x0c\x9f\x8d\x33\x9f\xa9\x73\x5c\x6e\xaf\x0e\xdf\xa8\xe8\xd4\x13\xb7\x5c\xa9\x46\x91\x64\x4f\x4b\x66\xcc\x2c\xc3\x07\x40\x94\x64\x38\xeb\x92\xd1\x0b\xc5\x73\xc0\xdd\xb1\xd1\x24\xc9\xf3\x2f\x49\x46\x10\x70\x4c\x10\x8a\x8c\x2b\x5b\x30\xac\xe9\x48\xc1\xfa\x64\x09\xd7\x7b\xef\x4c\x22\x7a\x29\x42\x4c\x52\x1d\xa2\x96\xed\xcb\xf5\x31\xb6\xec\xa5\xd0\x96\xb6\x69\xf2\x80\x57\x9a\x56\xce\x93\xc7\xc1\x5a\x16\x81\x87\x2f\x55\xff\x6b\x52\xff\xaf\xa9\x7f\xfc\xbe\x93\x60\x8a\xbc\x8e\x23\xad\x24\x60\x04\x45\xbe\x94\xd3\x3a\x9d\xd1\x00\x87\x92\x28\x28\x62\xce\x48\x63\x2b\x61\x97\x1a\xa6\x45\x2f\x80\xeb\x57\x43\x64\xeb\x00\x3b\xd2\x94\x76\x85\x8c\x2c\x8f\x5b\x42\x1e\x39\xb0\x43\xa5\x9a\xe3\x6c\x5f\x9a\xc8\xc2\xde\xeb\xdf\xd2\x1f\x44\x93\xe3\xf5\xce\xbc\xc3\x74\x72\x31\x42\xa3\xb8\x39\x66\x7f\x92\x26\x47\x9e\x06\x54\x96\x2d\x9d\x2c\x1f\x28\x59\xb1\x62\xfa\x68\xc5\x31\xb9\xd7\x49\x0d\xf2\x2f\xbb\xb7\x21\xe4\x70\x89\xb3\x13\xc7\xf5\x60\xc6\xf3\x7c\x70\xe4\x41\xbb\xc0\x66\x92\xea\xdb\xd2\x36\x2b\x9d\x59\x75\xdd\x5b\x26\x8a\x2e\x3a\x39\x2f\xb9\x45\x07\xbc\x3e\xd7\x74\x84\x68\xfb\xfd\xc7\xe0\xf4\xf4\xb5\x6f\xc6\x23\xf6\x00\x70\x11\xcf\x6b\x33\xf0\x0d\xd0\x58\x0f\xe3\x01\x64\xf0\xb8\x71\x93\xd2\x04\x63\xca\x2a\x48\xb1\xef\x0b\xbe\xa9\x66\xe4\x9a\xf8\x4e\x10\xd3\x49\x8b\xb1\x11\x5b\x55\xc8\xea\x6f\xf9\x48\xb5\xf8\x7d\x67\xff\x91\x4a\x70\xca\x45\xb6\x4d\x95\xd0\x64\x90\x44\xb0\x57\x52\xfb\x8d\x32\xa4\x4a\xa7\xc9\x78\x8a\x33\x30\xde\x59\x51\xf4\x2f\x73\xdf\x32\xfd\xfe\x15\x55\x2c\x15\xa1\x8f\x2a\x9c\x0c\xb0\x0a\x6c\x28\x95\xb7\x7a\xad\xa0\xae\xcf\x66\x12\xf1\x91\xdf\xd5\x24\xeb\x7e\x9e\xc4\x8f\xcf\xfb\x6b\xcc\x03\x03\xba\x52\x6a\xc3\xa8\x62\xeb\x11\xee\x24\xb9\x64\x6e\x40\x88\x6b\x25\x76\x23\x98\x7d\xe5\x15\x62\x3b\x4b\x99\x6c\x08\xc4\x6e\x4f\x27\xce\x64\x3b\x22\xfb\xbc\xd7\x42\x34\xa9\xd6\xc2\xfc\xb2\xad\xf2\xbf\xd3\x34\x0c\x86\xba\xc3\xe6\x63\xe5\xe4\xfd\x27\xcf\xd8\xa4\xfc\x55\x33\x62\x24\xc8\xb9\x87\x4c\x01\xe8\x27\x26\x70\xe1\x35\xa4\xd1\x75\xf0\xb7\x94\x3f\x2d\xdc\x94\x83\xd9\x62\xaa\x68\x16\x11\xf4\x68\x2e\x9d\xbc\xd6\x08\xff\x8b\x5e\xfe\x67\x13\xbc\x0d\xcf\xf5\x0d\x2a\xf4\x3d\xf8\xbd\xb4\x2a\xd6\x64\x94\x2b\xda\xcf\x6b\xd4\x0f\x29\x7b\xb9\x53\xe4\x92\xb9\x69\x9f\x25\x32\x8b\x2b\x5b\xe6\x53\xc6\xdf\xb6\xa5\x5d\x78\x02\xd1\x11\xc3\xd8\xd0\xae\x56\x67\xf5\x73\x64\x3d\xc0\x79\x1b\xfb\xcf\x1c\x49\xca\x5a\x8e\x2f\xbe\xb0\x2e\x7b\xa4\xed\x2f\x5a\xa8\x0a\x2d\x63\x3d\x49\x7b\xb3\x09\x4b\x5d\xf1\x2f\x86\x40\x5e\x93\x3b\x7f\x60\x78\xa9\xc8\x1d\x83\x7e\x57\xda\x55\x19\x12\x99\x12\x48\x07\xf0\x62\xa0\xae\xe5\x77\xbf\x49\xc5\x67\x8c\xb0\x9a\xc8\xb8\xea\x50\x53\xa6\xbc\xff\xef\x4e\x84\x41\xd9\x79\x86\xfa\x7f\x54\x18\xc1\x58\xb9\xa7\x95\xc4\x60\x22\xc9\x66\x1c\x96\xab\xda\x5a\xf0\xf2\xfb\x8d\x64\xa7\x6f\xdc\xbb\x6f\xf9\x0e\x13\xcc\xe3\x96\x44\xaa\xf7\xff\x94\x3c\x6a\xa5\xee\x30\x9d\x4d\xe9\xcc\xec\xca\x76\x69\xcb\xee\x1c\xff\x04\x0d\x18\x12\xdf\xfc\xcb\x0d\x40\x87\x90\x2b\xd9\x5c\x32\x92\x3d\x5a\x2f\xe0\xc5\x9c\x99\xa1\xcb\xfc\xbb\x20\x24\x34\xfe\x7b\x80\xfe\xeb\xd1\x77\x99\x01\x2d\xfc\xa3\x06\x53\x7f\xd3\x29\x53\x6c\xc7\x6d\x23\x2c\xca\x37\x4b\xfb\xc7\xef\x62\x04\xe7\xbe\xb7\xb0\x14\xbe\xfd\x0f\xf9\xe0\x23\x03\x95\xd8\x6a\xb5\x8c\x13\x9d\x27\x55\xa7\xdd\xc4\xc2\x55\x78\x47\x67\x41\x8a\x42\xfb\x5e\xa9\x9d\xd8\xb3\x4f\xe4\x81\xab\xd8\x3b\x51\x71\x45\x36\xdf\x01\xb8\xe0\xb5\x18\x17\xd4\xec\x02\x98\x47\x8d\xa2\x18\xab\x84\xa3\x26\x09\x16\x1b\xaa\x72\x24\xed\x3b\xba\x56\x55\x96\x6f\x08\x0f\xe9\xb5\xf0\xd7\xf2\x8a\x6e\xe9\x8d\x0c\x8e\x7d\x14\x53\x16\x97\x0c\x60\x90\xce\x78\xc6\xbb\x41\x39\x78\xed\x27\xbd\x15\xd3\xa1\x5d\xc2\x41\x42\x79\xff\xfe\x34\x53\x58\x45\x69\x3b\x1d\xce\x79\x1f\xe3\x36\xb4\x64\x67\x68\xed\xfa\x18\x47\x7b\x9e\x19\x5d\x5f\xaf\x22\x8b\x45\x92\xe8\x01\xd4\x5d\xae\x6c\x1a\x14\x19\x17\xeb\x43\x8a\xfa\xb3\xce\x81\xc3\x24\x52\xf6\xa7\xa1\x06\xd3\x50\xaf\xa0\x72\x61\xf1\x32\xbd\x2d\xbd\x05\xfe\x0d\x73\x96\xfc\x77\x42\xca\x7c\x92\xf7\x53\xe5\x9e\xf6\xd9\x77\x16\xf9\x48\xc4\x87\x0c\x0c\x44\xf4\x71\xe3\xdf\x0a\x35\x86\x9b\xc7\x2d\x2d\xa6\xb4\xe3\x66\x7e\x4d\xcf\xf7\x09\x49\xfb\xe8\x8e\xc4\x07\x61\xe1\x66\x53\xd1\x46\xd7\xc1\x8c\xa9\x46\x00\x58\x6d\x15\xa9\x0a\xd3\x3b\x68\xb5\x3a\x37\x6a\x5d\xd2\x1e\x7c\x73\x72\xdc\x79\xd9\x1b\x61\xad\x94\x27\x59\xaa\xdb\x11\x5b\x98\x29\xf4\x50\xd4\xb8\x49\x5d\x4e\xa7\x27\x8a\xc6\x41\xa2\xc7\x17\x78\xe7\xd4\xbd\x01\x25\xce\xa6\xcd\xee\x25\xab\xfa\xdc\x0c\xc0\xed\x3f\x1e\x0c\x3b\xe7\xf2\xfc\x4b\xd3\x5e\x45\x13\xc2\x11\x63\xb0\x14\x6d\x9f\x06\x89\xbb\xcb\xc5\xaa\x80\x22\xe3\x92\x33\xe9\x80\x10\x2b\x47\x08\x82\x22\x0e\x64\x40\x9a\x14\xdf\x1e\xfe\x53\x77\x9b\xad\x59\xa1\x76\xce\x44\x59\xf6\x2b\x71\x21\xa6\x42\x3e\x1a\x51\x67\xda\x87\x89\x57\xf8\xb6\x3e\x41\x0c\x39\xcb\xb1\xb9\xae\x33\xee\x99\x54\xa7\xf5\xe4\xa2\xb8\xa5\xf4\x74\x57\xa7\x74\xf3\x1d\x35\x37\xfb\x25\x78\x85\xaf\x4a\xc5\x7b\x10\x89\x07\x80\xb8\xc2\x25\x38\x12\x5f\x19\xfb\xf2\x82\xc1\x24\x15\x5b\xbc\x53\x56\x37\x53\x6b\xd2\xe5\x6e\xd0\x73\x8f\xf6\x4a\x7b\x2d\xb6\x09\xd7\xc5\x1e\x16\xe6\xe4\x31\x68\x3c\x86\xcd\xee\xb4\xbf\x4b\x14\x12\x2b\xd9\xaf\x2b\x86\xb1\x69\xe9\xe7\x9c\x7c\x72\x79\x61\xbf\x40\x38\x59\x6a\xf2\xbb\x22\x36\x35\x68\x4a\x06\x3b\x3a\xd0\x1f\x84\x53\x84\x1d\xd2\x00\x10\x0d\xb8\xc4\xa3\x44\x7d\x13\x09\x89\xb0\xfa\x33\xd0\x7c\xfa\xc5\xdd\x38\x65\x27\xad\xee\x7a\xc6\x3c\xa5\xd6\x6a\x18\xcc\x55\x4b\x7c\x87\xb6\x9b\xd7\x34\x22\x57\xe2\x7e\xac\x7c\xbf\xca\xc2\x58\x4c\x6c\x0f\xeb\x9a\x2b\xcb\xf1\x0d\xdd\xb5\x56\x91\x8f\x57\x3f\x2c\x26\x2e\x4e\xce\x9e\xef\x11\xc3\xe6\x85\x55\xec\x40\x07\xaf\x1d\xcd\x55\x32\xa4\x00\xee\x54\x55\x7a\xe8\x4b\x5e\xe7\x3e\xa6\x93\xfc\x6b\x1d\x17\x0a\x1d\x38\x10\xbc\xa0\x5a\x30\x29\xc5\xa6\xa1\x31\x85\xef\x34\xb3\x54\xdb\xde\x5c\xb0\x9b\x0b\xd5\x5d\x54\x78\xff\xc5\xf5\x64\x31\xcc\x4e\x56\xbf\x37\xf3\x83\x30\xaf\x07\x2e\x51\x47\xeb\xb6\x7b\xda\x2a\xc1\x9e\xe3\xfb\xcc\x9b\x0f\x1c\x00\xb8\x20\x59\x0c\xbd\xc6\xf3\x82\x98\x6e\x3f\xa0\x87\x93\x79\xe6\x9d\xe3\xf2\x40\x5d\xfe\xe8\x96\xbf\xfb\x8b\xf9\xcc\xad\x5c\x7c\x2e\x66\x45\x84\x41\x43\x37\xfb\x43\xa9\xe0\x0c\x23\x0d\xf4\x27\xfd\x2c\xcd\x61\x5a\xec\x05\xa3\x9a\x53\xe1\x6e\xff\x5e\x2b\x76\xe4\xb6\x83\xe2\x50\x6e\xb8\x8c\x93\x0c\x20\x07\xcd\x87\xcf\xea\x32\x47\x1b\x81\xc1\x3c\xd1\x46\x00\xd8\x50\x1f\xb5\x82\x9d\xcc\x19\xc3\xae\xbd\x03\x90\x5a\x34\x3f\xa4\x34\xb6\x6d\x35\xb4\xf3\x7f\x4f\x8d\x89\x66\x64\xd4\xf1\x89\x6e\x79\x4a\x69\x6c\x40\x34\x4d\x4b\x84\x52\x1d\x21\x07\x8f\x8e\x8b\xdf\x0b\x35\x8a\x53\x75\x5c\x4d\xff\x11\x3a\xee\xeb\x94\x1e\x7c\x66\xec\x7f\x23\xb9\xfd\x46\x6d\x41\x74\xe5\x67\xd5\xb7\x02\x5c\xac\xda\xfd\xf1\xc2\x72\xf7\x95\x20\xc4\xca\x4f\x11\xa2\x7e\x84\x52\x8d\x93\xf4\x50\xaf\xfd\xe7\x06\x88\xd0\x0e\x7e\x84\xae\xff\x41\xca\xab\x27\xca\x37\xd4\xe7\x0a\x1c\xcf\x7d\x69\xe1\xf2\x6b\xcc\x79\x07\x14\xe6\x99\xdd\x9d\x39\x4d\xcb\xdd\x30\xaf\x85\x39\x9d\xf9\xb8\x64\x1d\xfd\xa7\x63\x2c\x9b\x18\x66\x00\x9a\x8c\x74\xfc\xfe\xcf\xa9\x1d\xff\xc1\x54\xda\x7d\xb3\xa7\xae\xcd\x6a\x74\xba\xf4\xbc\xea\x4b\x4b\x84\x70\x5d\xa4\xa8\x8b\xd6\xb2\xb9\x1d\x5e\xd1\x4d\x70\x71\xb3\x55\x7c\x5f\xbf\x47\xb0\x57\x8e\xec\xdb\x40\xc4\x70\xc6\xec\xb7\x70\xc9\x0d\x59\xba\x46\xcc\xb7\xea\x5b\xfe\x9e\xe2\x18\x8b\x48\x73\x70\x17\x86\x0a\x48\x1c\x47\x3a\x6a\x25\xea\x5b\x8c\x4b\xdf\x01\x23\xac\x6e\x39\x8c\x8f\x8a\x83\x90\xa5\x0a\x56\x36\xf7\xaa\x72\x4c\xc3\xe7\x73\x06\xd2\x8e\x1e\x0f\x65\x74\x57\x19\x45\xf4\x58\x76\x08\xec\x6b\xf7\xc8\x7d\x05\x21\x8d\xfb\x75\xb3\x46\x94\xc5\x37\xf7\xff\x81\x79\x45\x57\x31\x22\x60\xa3\xdd\xb9\x4b\x4d\x77\xce\x1c\x6d\xb0\x0a\x02\xfe\x49\x1d\x6b\xc3\x1c\x55\xc7\xc4\x87\x81\x65\xc9\x2a\x71\x57\x9d\x06\x46\xf2\x40\x8c\x99\x7d\xb8\x77\xcb\x5d\x34\x7d\xeb\x77\xd9\x27\xf1\x86\x49\xb3\xdd\x8e\x64\x2b\x34\x2a\x53\x59\xb3\xef\xf8\x46\x09\x53\x61\x43\x51\x38\xa7\xe9\x90\xfa\x82\xcf\x5d\x67\x7d\xc4\x25\xb2\x7f\xac\xd0\x38\xff\x61\x0e\xe0\x2d\x8d\x36\x94\x18\x5c\xd6\x3e\x18\x16\x32\x9d\x28\x9c\xfb\xcf\xd2\x80\xa9\x49\x64\x2e\xf7\x64\x34\x5b\xdf\xfe\x2d\xeb\x63\x30\xfd\x6f\x16\x3d\x2e\xf6\x68\x57\xc6\xa0\xba\x92\x89\xd6\x56\xc6\x33\x1f\x4e\xb7\x51\x71\x4e\xc3\x9c\xce\xf8\x91\xde\x23\x30\xea\x2e\x17\xab\xb0\x2a\x08\x8a\x9a\x28\xf6\x77\xb0\x7a\x84\xc8\x5b\x49\xfd\xad\x8e\x6e\x63\x56\xf0\x93\xaa\xb3\x1b\x9d\xfe\x8b\xdd\xa6\x25\x52\x39\x3d\xbd\xdd\xaf\x24\x20\x77\xdd\x17\x98\xe1\xc6\x1b\xeb\x17\x63\xf7\x06\xf3\x5b\xf7\xc7\x58\x67\xb0\x3f\x59\x7f\xcb\x38\xdd\xdc\x0d\xff\xbf\x38\xce\xd2\x37\x9b\x0e\x9a\x62\x1c\x82\xeb\xcf\xf0\x6e\xf8\xbf\x55\x4a\x7b\x53\x42\x6a\xc4\xac\xfd\x95\x6a\xd5\x03\xea\xd7\x22\xec\x5f\x03\x29\x1d\xaa\x85\x4f\xf2\x17\xdb\x8e\x77\x14\x1a\x9b\x0d\xff\x3d\xfe\x8a\x3d\x3a\x56\x90\xac\xc4\x19\x3e\x1e\xdc\x5f\x7e\x0f\x40\x7e\x8a\x81\xdd\x1b\x14\xbf\xa0\xb5\x2e\xb6\x8a\x74\xe2\x89\xda\x0e\x30\xb8\xda\xce\xe0\x46\x98\x06\x1f\xfc\x73\x39\x28\x2e\x1b\xbe\x22\x44\x66\xf8\x31\x30\xf5\x6b\x9d\xcf\xa8\x25\x2c\xea\xcd\x83\xe0\xc8\x64\xb8\x84\x61\x91\x4d\xb0\x4a\x31\x18\x52\x70\xbb\x41\x9e\xba\x64\x0d\xaf\xb2\xca\xd9\x74\xee\x0a\xbc\xa1\x54\x1b\x4a\xd9\x49\x32\x75\x7f\x71\x39\x53\x4e\xb3\x65\x93\x1b\xeb\x90\xc1\x9a\x7b\xcd\xcf\x87\x12\xec\xe5\x0b\x7c\xe3\xc6\xfb\xe9\x17\x73\xee\xf2\xee\x3a\x2c\x66\xd7\x45\x9e\x38\xce\x7f\x07\x7d\x55\x51\x24\x03\x54\xe9\xa1\x27\xa0\x06\x6d\x4e\x97\x87\x56\x04\x27\xc6\x8b\xc7\x60\x18\x20\x38\xe6\x33\xf8\xae\xe0\x77\x32\x5a\xd2\x55\x6b\xf9\x3f\x76\xbc\xaa\xda\xc1\x1f\xa7\x3a\x5d\x2e\xd6\x40\x39\xb2\xe1\x1e\xbc\xb6\x7e\x31\xa7\x37\xff\x5e\x21\xa2\xc3\x96\xf8\x94\xc7\x95\xa5\xb8\xf1\x2e\xf4\xb9\x20\x98\x8b\x09\xd4\x63\xca\xc5\x84\x74\x49\x36\x3c\xd7\x1c\xb8\xe8\x7a\x48\xc4\x18\x15\x0c\x16\xd7\x30\x4d\x56\xbd\x9b\x4e\x73\xc8\x13\x17\x21\x69\x05\x1f\x58\xde\x8e\x71\x78\x72\x4a\x0d\xa6\x40\xf1\xd4\xb3\xf7\x72\x64\x31\x5f\xfe\x2b\x17\x2c\x4c\xd1\x9a\x58\xf2\xd1\xe8\xda\x63\x66\x10\xa2\x7a\xf5\xf5\x05\x48\x95\x12\xca\x0e\x2e\x06\xd8\xa5\x3b\xda\xae\xfa\x1e\xe2\x42\x63\x1c\x0a\x3e\x6a\xff\x78\x37\x93\xf6\xce\xf0\x6f\xf3\xb2\xee\xec\xdf\xc0\xa4\x12\x57\x33\x52\x0e\x9c\x4b\x4e\xf1\x3d\xb7\x7d\x33\x25\xda\x66\x72\x91\xf4\xc2\xbd\xe5\xec\x78\x47\x37\x93\x42\x66\xf5\x66\x93\x08\x99\x31\xc7\xff\x10\xa4\x4d\x34\x02\x5e\x53\x2a\x75\x5c\xc5\xc6\x38\x90\x01\x7c\xde\xe9\xb3\xc7\x79\x87\xd2\x1b\xc1\x27\x9c\xe5\xfa\x5b\x57\x54\x03\xee\x46\x5d\x86\xe8\x36\x04\x38\x86\xd8\x23\xb4\xa6\xa1\xeb\xe6\xb0\x3b\x98\x8f\xee\x92\x74\x20\x9c\x12\x6e\xf9\x0f\xf3\x8f\xa0\x0e\xd4\x55\xa8\xee\xf4\x92\xa9\x52\x42\x03\xd4\x9e\xaf\x7c\x43\xd2\x5a\xa0\x97\x17\x97\x6f\x6e\xcc\xdc\xa9\x29\xfc\xb1\x45\xcd\xd2\xba\xb6\x9c\x5b\x35\x84\xae\xeb\xd8\x64\xc0\x08\x82\xd6\xba\xe9\x21\xd7\xaf\x53\x14\xd1\x1c\x77\xe5\x8e\x28\x2f\xe8\x59\x93\x86\xdd\x53\xa6\xe8\x66\x26\xa6\xed\x3f\x38\x73\xd5\x0c\xd4\x43\xa8\x21\xb4\x71\xb3\xdf\x05\xb2\x39\x16\x09\xf6\xef\x97\x15\x98\x7a\xdf\x7c\xb6\x35\x6b\x7c\x27\xbb\x56\x77\x2f\x73\x12\x36\x71\x07\x6f\xde\x6b\x74\x5d\x3d\xa6\x10\xee\xfb\xc4\x17\x78\xc7\xd0\x6d\x6d\xb2\x58\xb8\x9c\x27\x49\xdc\x60\x3b\x6e\xee\xbc\xc8\x36\x8d\x26\xd4\x23\xaf\xad\xee\xc5\xc5\xc9\xc2\xc7\x19\x55\x41\xd9\x46\x1d\x56\x04\xa7\x53\x3c\x15\xf0\xdd\xf4\x81\x7c\xa8\x87\xc8\xd9\x48\xbb\x1d\x81\xce\xb4\xfc\xe4\x5a\xef\xb8\xe2\x47\x92\x2d\x17\x94\x5d\xe9\x3d\x4f\xbd\x68\xd2\xe2\x6c\x92\x02\xe9\x70\x3a\xe2\x74\x06\x57\xf1\x2a\x50\xcd\xed\x7a\x53\x3c\x39\xde\x25\xf1\xff\x8b\x23\x41\x9b\xfd\x77\xe6\xe5\xb1\x08\x93\xe7\x46\xf0\x49\xd9\x46\x8b\x4b\xdd\x98\x79\x06\xcc\xd8\x0e\xff\x85\x75\x92\x07\xfa\x92\xe6\xbd\x73\x41\x9d\xf0\x49\xed\xd4\xcb\x53\xd8\x72\x76\x5d\x54\x47\x6e\xc3\x59\xd1\x14\xdb\xb8\xd0\x3d\x80\xeb\x0b\x28\x06\x70\xf6\x2f\xe4\x0a\xab\xbf\x8c\xad\x0d\x67\x06\x8c\x6e\xea\xea\x60\x26\xdc\xf0\x71\x8c\xe4\x7b\x74\xe9\x37\x2f\x68\x9d\x04\xa9\xd7\x96\xa0\x90\x47\xb4\xb4\xf0\x3b\xbd\x9c\x37\x03\x36\x7c\xb0\x86\x79\xa4\x0b\x4c\xc4\x69\x94\x71\x70\x67\x1c\x39\x4a\x16\x0e\x4d\xae\x5c\x2c\x80\x92\x05\x12\x8c\x19\x2f\x73\x9b\xf1\x40\x91\x07\xed\x6b\x74\x5b\x81\x1c\xee\xe8\xf1\x11\x9d\x65\xf2\xbc\xc3\xa0\xd7\x51\x87\xd6\x11\x23\xe4\x11\x0b\x18\x49\xa9\x69\xbd\xc8\xfd\xae\xc2\x73\x62\xae\x3d\xb9\xf7\x56\xbc\xaa\xd8\xfe\xec\xf8\xc7\x93\x6b\x01\x17\xec\x0e\x5d\x61\xcc\x76\x9d\x41\x5e\xb3\xba\x0c\x34\xf4\x0d\xff\xa5\xca\x53\x34\x5d\x2a\x91\xc3\x95\x32\x67\xdc\xc4\x7c\xfa\x1d\xec\x04\xab\xd0\x9c\xad\x87\x9e\xd9\x1f\x26\xeb\x67\xee\x42\x21\xb4\xe0\x60\xc9\xe5\x7b\x1e\xfb\x30\xc5\x6c\x19\xd2\x2f\x81\xe1\xf5\x3c\xd7\x4c\x8e\x59\x36\x2e\x45\xd0\x37\x96\x62\xe0\xa5\x24\xfd\x22\xbe\x24\x0d\xff\x04\x30\xfa\x23\x93\xd4\xd5\x56\xd0\xe6\xcb\x5f\x41\x92\xf0\x7a\xc3\xf9\x9d\xa9\xf0\x51\x2f\x23\x2f\xf4\xa5\x28\x7b\xb4\xc7\xf7\x93\x3f\x7b\xa8\x63\x4e\x98\xdd\x47\x3c\xa6\xa7\xa9\xe1\x06\x60\xac\x8f\x2a\x79\x44\x4b\xad\xb1\xc2\x7a\x97\x09\x29\x59\xaa\x5b\x52\x88\x8e\xab\x83\x4d\xd7\x89\x65\x4e\x56\xd5\x29\x6a\x77\x77\x5b\x99\x10\x93\xf6\xdf\x58\x4a\x24\x9c\xff\xaf\x15\x97\x64\xc1\x10\x07\x11\x8f\xfd\x31\xac\x21\x1b\xa9\x30\xf5\x9d\x48\xeb\x33\xaa\x5a\xd5\x90\x34\xc7\x49\x24\x77\x31\x98\x5d\x1a\xb5\x2e\xeb\x16\xe0\x77\x71\x75\x75\x26\xf2\x4a\xcd\x54\x30\xd9\x61\x4e\xab\x20\xfc\x54\xfb\xc8\x70\x63\x78\xc8\xe1\xa9\x58\x7b\x0c\x68\xd2\xa9\x4e\x83\x0b\x7a\x72\x43\x5d\x4e\xc7\x43\x2c\x94\xdf\x53\xcb\x1d\x33\x2c\xcc\x4a\x35\xcc\x1c\x28\x7b\x4f\xb6\x68\x1d\x8b\x4f\xbd\x2b\xbe\x12\xc2\xcd\x84\x94\xbc\xbb\x72\x44\x37\x78\x41\xf8\x44\x2c\x3f\x30\xcc\x31\xb9\x7c\x45\x91\xe3\xa3\xd8\x7a\x87\x34\xdc\x24\x44\x28\x18\x39\xb8\xcb\x70\x23\x12\x1c\x93\x04\x06\x09\x32\x0c\x0c\x53\xe6\x29\xb6\x5a\x59\x94\x07\x50\x60\xf7\x78\xf7\xa4\x06\x96\x52\x6d\x38\x40\xdb\xd3\xb0\x23\x25\x2a\xbe\x15\x56\xee\xdb\x5f\x5e\x82\x28\xb4\x4e\x3c\xdd\x2e\x18\xe3\x9b\xa4\xc3\xe7\x7b\x87\xab\x7f\x20\xee\x9b\x66\x92\xb4\x8a\xcf\x23\x3e\x7c\x72\xe0\x82\xea\x49\x40\x90\xdf\x99\xf2\xdf\x7f\xd4\x46\x04\xb9\x2a\xf9\x89\xd9\xa4\x93\xb0\xd8\x02\x31\xa2\x4c\x5d\xa7\x6b\x25\x96\x25\x68\xc5\xd0\x6a\xc5\xd8\x57\x0f\xca\x81\xa4\xaf\x48\x39\xf0\x19\xde\xa7\x00\xf4\xfd\xfd\xd6\x76\x52\x27\xc4\xbb\x9b\xb2\xf0\xd5\xcf\xf5\x89\x02\x54\x03\x15\xea\xb2\xb0\xe8\x95\x90\x68\x40\x48\xaa\x6f\x58\x28\x45\xb1\xd5\xca\x8c\x4f\xd7\x8d\x4d\xe3\xd5\xe3\x2f\x0f\xa0\xe3\x32\xda\x50\x78\x08\xe8\x35\xb5\x2a\x88\xd5\x49\xd5\x96\xa8\xd2\x83\x0d\xbe\xa8\x46\x71\x47\x56\x95\xfe\x8c\xd8\x59\x9a\x4c\xfd\xb9\xbb\xe5\x33\xe8\x75\x74\x7b\x55\xf0\xc6\xdd\x39\x53\x2e\xb9\x2c\x2e\x40\x95\x75\x68\x90\xfd\x68\x41\xd5\x3a\x3f\x45\x3e\x24\x5c\x64\x9d\x49\x10\xd3\x23\x8c\x6c\xf9\x0b\x2b\x06\xeb\x29\xab\x82\x58\x8d\xef\xae\x11\x8a\xf3\xf1\x00\x9c\x87\x66\x40\xcc\x6b\xc0\x10\xb1\x67\x7c\x29\x8e\x11\x1e\x72\x10\x14\x53\x4e\x55\x69\xc3\x0b\x30\xef\x2f\xd7\xdb\xec\xc0\xdb\x48\x2b\xaf\x78\x0e\x08\xe3\x19\x12\xbc\x4c\x03\xda\xe4\x4e\xaf\x9d\x85\x07\xdc\x1b\x1f\x5c\x2c\x44\x58\x57\x65\x3c\xe8\xf0\x1a\x1a\x71\x12\x34\xa3\x7c\xba\x64\xa3\x0a\xca\x7e\x8e\xb2\x09\xe9\xdf\xe4\x5e\x5a\xb6\x58\xaa\x68\x97\x3b\x1b\xfa\x33\xb9\x4e\xad\x70\x69\xc8\x78\xf3\x22\x6b\x13\x23\x5b\xe0\x5b\x49\xed\x4e\xfb\x55\xfe\xa0\x03\xa8\xa3\x8b\x75\xa2\xf1\x1b\x84\x1a\x61\xff\x1b\x58\x08\xa4\x6c\xbd\xb5\x96\xc1\xfd\x73\x1b\x7d\xed\x25\xf7\x4f\xf9\xfb\x51\x9c\xd7\xfe\x00\xec\x20\x60\x0d\x29\xa9\xc9\xea\xff\x35\xf1\x9a\x2a\xbb\x13\x0d\x92\x52\x4d\xdd\x59\x8b\xff\x34\xd6\x91\x16\x3c\x45\x7e\x7d\x90\x1d\xe2\x96\x58\x14\xff\x38\x1a\x28\x1e\xf4\x2f\xbe\xf7\x92\x3b\x31\xf6\x93\xfc\xf9\x54\x3a\xb9\x97\xb2\xab\xb6\x08\xa7\xf8\x3b\x92\x83\xec\xcd\x8f\x6c\xf5\x0e\x0c\x89\x3d\xef\x68\x20\xdc\xf6\xa0\x9e\x27\xdc\xca\xfd\x3c\xea\xa8\x03\x3a\xb6\xdf\xbf\x03\xae\xc6\xcc\x33\xaa\x2c\x39\x04\x1c\x1c\x84\x9e\x92\x54\x83\x0f\x53\xee\xfe\xe7\xd3\xe4\x01\x09\xf8\x49\xef\xce\x8e\x94\xee\x17\x1a\x58\x31\x19\xb1\x63\xf1\xff\x96\x96\xed\xa1\x53\xe3\x36\x54\xe3\xa6\x33\xd2\xc4\xe7\xa6\x80\xfa\x9d\xd5\x7f\x2f\x45\xe2\x77\x46\x8e\xab\xf6\x42\x90\xa4\xbf\x90\xb7\x30\x98\x7d\xbb\xce\x1c\xe1\x55\x89\x56\xae\x86\xe1\xbc\x79\x51\x72\x5c\x23\xf4\x64\x00\x8a\xad\x1b\xe8\xa5\x1f\x64\xa7\xef\x05\x74\x69\xb4\xa9\x06\x3e\xaf\x39\x5b\x17\x6b\x19\xdb\xd5\x6c\xd3\x4e\x9b\xb1\x78\xe6\xc6\x06\x4e\x0d\xe4\xea\x34\x94\xb7\x69\x65\xb2\x9a\xf0\xc6\x3f\x49\xe2\x9e\x33\x65\x80\x6a\x06\xae\xab\xee\x8a\xf0\xa4\xaa\x9d\xef\x7d\x33\xc5\x90\x56\x11\xa1\x51\x38\x12\x05\x70\xbd\x49\xe6\xc6\x11\x0e\x02\xed\x02\xf1\xb3\xae\x82\x58\xe9\x3b\x02\x4e\x3d\xfd\xaf\x18\xe3\x9b\xfc\x3b\x2f\x27\x52\x76\x92\x38\x47\x2d\xfe\xc2\xcc\x05\x95\x6f\x94\x7c\xf1\x29\x5d\x01\xde\x3b\x19\xdc\x22\xd3\x91\xac\xa0\xc5\xb4\xa8\x65\x7b\x7c\xaf\x79\x6c\xfe\xb4\xac\xbc\xfe\x23\xf7\xaf\xc7\xe6\xc5\xcd\x1f\x7b\x3f\x32\x67\x4e\xdf\x4b\x9a\xa3\x75\x7a\xad\xd6\xd6\x07\xad\xa8\xe7\xac\x70\x65\xdf\x93\xf5\x5e\xbd\xba\xf5\x3b\xdf\xb9\x9d\xb8\x21\xf8\x37\x54\x77\xf9\xfc\x51\xe8\xd3\x5f\x3b\xa8\x90\x63\xa2\x1a\x8a\x5b\xdb\x59\x2b\x4d\x28\x8d\x37\x7e\x3d\xfb\x55\x73\x29\x1f\x1f\xc3\xcd\xa4\x6f\x5e\x69\x89\xbf\xe5\x3e\x29\xf0\x7e\x92\x97\x2b\x37\x2a\xfd\xc1\x24\xc2\xa0\x26\x85\x81\x4b\x68\x82\xfd\x8a\x99\x5e\x52\xd1\x1c\x3e\xd3\x28\xe3\x5c\xce\xad\x56\x42\x12\x22\x07\xe2\x36\xed\x41\x31\x94\x1a\x82\x00\x0f\x5c\xfd\x73\xe1\xcc\x94\xb8\x20\xde\x7c\x74\xa0\x81\x65\x9a\x91\xa5\xe0\xf7\x6b\xc2\xaf\x97\xdc\x04\x9e\xde\xf1\x93\xfa\x19\xdf\x85\x43\x54\x97\x4d\xeb\x5f\x51\x5d\xe7\x72\x3e\xbf\x0f\xe5\xe3\x2f\xac\xcb\xca\x3e\x6f\x67\xe9\xde\x16\x65\x0e\x6c\xb5\x35\xaf\x74\xd2\x1e\x29\xc9\xee\xbc\xa1\xc2\xb1\xfb\xf3\xe6\xee\xe4\xcd\x88\x13\x18\x05\xc4\x63\x87\xea\xbf\xfd\xdf\x46\xab\x74\x40\x22\x56\x24\xff\xb4\xce\xf8\x58\xde\x0d\xe5\x92\xe0\xfb\xfc\x3b\x12\x24\xb8\x94\x02\xba\x5e\x2f\x01\x38\x82\xe1\xbc\xc9\x4f\x72\x9c\xad\xfd\x1b\xb2\xa4\xb4\x15\xbd\xb4\xaa\x9a\x84\xca\xd2\x6f\x6a\x7f\x13\x4d\x9b\xb4\x65\x37\xb5\xab\x09\x2d\x88\x75\x7b\xaa\xe2\x5b\xea\x0b\xf6\xd6\x28\x9b\x81\x59\x8b\x91\x2a\x14\x1a\x9b\xa5\x26\x71\x99\xe5\x25\x2c\x72\xa8\x75\xd8\x2a\x84\xdc\xf1\x7b\xc0\xf7\x13\xba\xc0\x0b\x77\x1a\xa1\xd3\xa1\xf4\x49\x91\x8a\xb3\x26\xce\x99\x0a\x5c\xb4\xf2\xee\x03\x76\xcd\x90\x48\xe5\xce\x1d\xa8\xf7\xef\xc0\xea\x6e\x13\x63\x8f\x86\xca\xce\xb8\xae\xec\x74\xf1\x4d\xef\x86\x9a\x89\x64\x21\xd3\x5f\xfc\x0b\xf1\x91\xdc\x9c\xec\x3f\x19\x22\x14\x13\x19\xa0\x32\x98\x07\x52\xd5\x6c\xf3\x5d\x80\x0a\xdf\x57\x71\xb0\x44\x53\x42\x51\x2f\x6d\x2f\xa8\x5e\x4d\xce\x0f\xc2\xf7\x20\x6e\xad\x2b\xfb\x8f\xd0\x27\xf5\xf2\xca\x62\x26\xad\xa4\x97\xdc\x65\xbf\xe2\x33\x7e\x66\x4f\x98\x4d\xf0\x7a\x2c\x72\x53\x0e\x0c\x74\x2c\x18\x51\xa1\xde\x39\xd6\xfb\x02\x16\xe9\x5b\xe9\x79\xc7\xcd\xe8\xab\x80\xaa\xcf\xb4\xb5\x58\xbf\xec\x53\xf1\x0c\x24\xa5\xa6\x20\xa0\x56\xaa\x9b\xe3\xa0\xeb\xc2\x09\x8c\x5b\x50\x6d\x8f\x4c\x09\x54\x61\xc5\xb3\x32\x61\xa6\x77\xf0\x5f\x58\xd7\xfc\x9b\x8c\x46\xec\x74\x9d\xe3\xb9\x1b\x9e\xe9\x17\xaf\x7f\x7e\x44\x4d\x3e\x2a\xfa\xd7\xc5\x3b\x4a\x1c\xc3\x34\x24\x5c\xfb\x90\xa1\x31\x64\xe7\x80\x99\x74\x5c\xff\x21\x8f\xe1\x6b\x71\x97\x4f\xf8\xe4\x4b\x9c\x41\xef\x32\xcf\xbd\x49\x26\x45\x89\x93\x72\x30\xf4\x69\x97\x03\xc1\x41\x17\x80\x2b\x0e\x14\xd5\x98\x7c\xce\x6a\xe1\xad\x14\x21\xd7\x59\xe0\x3f\x7c\xae\x6f\x60\x38\x55\x5a\x25\xa4\x56\xa0\x93\xcb\x9b\x5e\xaf\xad\x13\xec\xab\x5a\x15\x4e\xf5\xd7\x09\xbd\x9c\x1e\x2f\xda\xb0\x46\xf0\xf8\xc3\x32\x63\x31\xe4\xa0\xba\x71\xf6\x35\xc6\x25\xc6\x08\x88\x57\x4f\x68\xe9\x2e\x58\x5f\x7e\xbe\xaf\xc6\x3a\x31\xb6\x7e\x52\xf6\xce\x92\x11\x21\x67\x6a\x4e\xcc\xd1\xfb\x2f\xc9\xa9\x90\xe4\x87\xe4\x59\x91\x71\x2a\x17\x6a\x7c\xa6\x51\x3c\x50\xb2\xbf\xbf\xee\x6c\x20\xc6\x12\xfc\xe2\x22\xdb\xa6\x46\xb0\x49\x47\x12\xc7\x50\xf1\x25\x36\x5e\x31\xd5\xe4\x7a\xd8\x21\x70\xe2\x4c\xb8\x16\x30\x06\x02\x36\xdf\x53\x8c\xeb\xd3\xcb\x25\x32\xac\xc0\x4a\x57\x3e\xa8\xb5\x99\x8d\x2f\x3a\xab\x04\xb7\x3a\xde\xe6\x1d\x79\xfb\xbe\x5e\x2b\x62\xe8\xcd\xc4\x2f\x73\xf9\xbc\xda\x1f\xd2\xb7\xd4\x86\x06\x45\xd3\xa6\xef\xb0\x5b\x0a\x4e\x4b\xb0\x5c\x88\x1a\xc6\xa6\xb4\xb7\xe7\x36\x2c\xa1\x83\x4a\xf0\x0d\xa2\x92\x14\x25\x99\x5a\xb0\xde\xcb\x42\x5f\x14\x99\x6f\x7f\xc0\x8f\x13\x9f\x14\x1c\x63\xfc\xc9\x70\xde\x61\xa3\x78\x8d\x00\xf1\xbe\x8b\x16\x5a\x5c\xf2\xbe\xc2\xee\x03\x3d\x29\x26\xff\x99\x0c\xab\xe6\x8f\x13\x26\xc6\xfe\xc7\xa1\x8b\x8b\xa3\x03\xf9\x0b\xf6\x23\x3f\x58\x02\x5b\x9f\x33\x7a\xab\x56\x7f\x0d\x76\x82\x85\x77\xb0\xf0\x71\xe9\x80\x36\x5b\x7f\xa3\x6d\x68\x91\xb8\x2f\x85\xc9\x70\x71\x1d\xf8\xef\x1e\xe8\x3b\x9d\x5c\x1b\x61\x8f\xfd\xfd\x0f\x42\xc7\x6f\xf5\xde\xe6\x4a\x95\x3d\x69\xe1\x77\x2f\xf7\x9c\x38\x31\xd3\x2f\x30\x60\x9b\x08\x98\xb8\x7b\x6b\xb4\xc7\xaf\xf7\xed\x41\xc4\x1d\x20\x1e\xe9\x2d\xb0\x6b\x33\x63\x31\x84\xbd\xf9\xa0\x95\x66\x15\xe7\x34\xd9\xc5\x97\xed\x88\x22\xf3\x45\x9d\x08\xe2\xf3\xc4\x10\xbd\x6f\x88\xdb\xe9\x7f\xcb\x36\x5a\xd6\x48\x77\x3d\xd2\xb0\xf4\xaf\x4d\xfa\xec\xfb\x78\x55\xe9\x2b\xe2\x7b\x85\x35\x46\x47\xd7\xd7\x7e\x4e\x7b\x2f\xcc\xfd\xf8\xf6\x3e\xc2\x3e\x38\xe5\x41\x9c\xc5\xad\x67\xb7\x2a\x6e\x9f\xb2\x2a\x76\xb4\x93\x0a\xf9\x97\xe8\x7c\x7d\x67\x10\xd0\xc9\xd5\x06\x4b\x0d\xae\x10\xd2\xa3\x50\x30\x2f\xc4\x12\xfc\xf7\xcd\xc6\x67\xb5\xb6\x8c\x14\x85\x01\xdb\x85\xb9\x0e\x6a\xae\x1d\x99\xa4\xd0\xa5\xe8\xb9\x64\xc5\x77\xb5\x3f\xfc\x3d\x4c\x87\xb6\x69\x0d\xa0\xf1\xfd\x1c\xd3\x71\x25\xfb\x35\x51\x1d\xb6\xa1\x9e\xd2\xae\x3e\xfe\xe0\x9b\x4d\xaf\x21\xb4\x4b\xa9\xaa\x07\x9c\x3c\xfd\x09\x1b\x89\x10\xa1\xe3\x63\x19\x23\x12\xff\x1c\x13\x51\x4a\xa3\x41\x96\xe3\x89\xbd\x52\x67\x35\xe9\xbe\x77\x7a\x5d\xca\x13\x34\xb1\x17\x5a\x11\x3f\xf2\x51\x63\x71\x71\x31\x49\x21\x4f\x81\x32\x3c\x5c\x76\xf5\x2f\x55\x87\x4d\x13\xaf\xdb\x01\xe1\x86\xd4\xae\xef\xb5\xb1\x3e\x14\xda\x01\xb4\xf9\xe0\x27\x27\xf3\x9f\x04\xda\x31\x50\x58\x23\x9e\x50\x94\x58\xc7\x23\x02\x5e\x59\x91\x27\x33\x2e\x06\x19\xae\x5c\x61\x43\xd1\x0c\x5c\x57\xdd\x02\xfe\x40\x7b\xf9\xf8\x0b\xfd\xe2\xf0\x1d\x0f\x4f\xf3\xc0\x86\x02\xc9\xd2\x80\x16\x61\x77\xf7\xea\xa3\x05\x3d\x8d\x82\x31\xd6\x23\xbd\x91\x41\xa1\xd5\x5b\x4f\x2b\x3e\x8e\x77\xb1\x1d\x37\x2f\x2f\x15\xca\x70\x48\xf5\x7b\x02\x8e\x32\xb4\xd4\xf3\x99\x48\x99\x1d\x87\x13\x20\xfb\x39\x8a\xcc\x17\xac\x0e\x41\x90\x1e\xcd\xa5\xed\xbe\xab\xd7\x3a\xca\xc3\x49\x2f\x2b\xbf\xb5\x44\x7c\xec\xfc\x4b\xfe\xdf\x42\x05\xcc\x17\x3c\x92\x61\xf5\x80\xd3\x3f\x28\x68\xed\x27\xc6\x62\x62\x69\x64\x20\xbf\x2b\x0d\x73\x53\x3f\xe7\x56\xc4\xb2\xd4\x91\x8d\x56\x7e\x06\x52\xb0\x67\x39\xa5\x79\x79\xb4\x19\xc1\x2a\x4b\x52\x91\xdd\xb1\x67\x02\x61\x25\xf5\x84\x36\x9b\x9f\x15\xe5\x59\x16\x0d\x5c\x03\xf6\x86\x90\x64\x37\x5c\xbf\x66\x58\xb9\x4a\x7b\xb0\xb4\xa6\x9d\x0d\x2a\xb1\x2c\x1b\xe6\xf0\x66\xd6\xfe\x98\x1b\x48\xfb\x2c\xe1\x60\x91\x25\x1d\xaf\x58\xdd\x2e\x17\xaf\xfe\x13\x98\x45\xcd\xec\x1b\xb2\x71\x2e\xbd\xaf\x5b\xf2\x85\x88\xab\x75\xad\xa6\x82\xae\xa8\x90\x37\xae\x70\xde\x12\xff\x99\x41\x88\x2e\x48\x23\xe0\xba\x5e\xaa\x6b\xd4\x68\x01\xb1\x91\x59\xfe\xea\x32\x76\x24\xf5\xa6\xee\x10\xcc\xd2\x16\xff\xf2\xfb\x09\xe2\xa1\x1c\x10\x4c\x19\xac\xf3\x31\xef\xb7\xc1\xbc\x67\xf5\xad\x9d\x1f\x06\xbd\x73\xa2\xd5\xde\x3f\x32\xac\x45\xd5\x37\x83\x4d\xc9\xc2\xe8\xf1\x4e\x59\x51\x68\xdb\x2b\x43\x91\x93\x3e\xf8\x9d\x6e\xe5\xca\xe0\x22\x16\xd7\xaf\xa6\x10\xde\xa7\x38\x9a\x00\x33\x32\x47\x87\x5b\x46\xf7\x92\xcc\x83\x18\x6a\xda\xf2\x7c\x5b\x38\xf4\x73\x52\x27\xca\x33\x72\x6b\xbf\x37\xea\x6a\x04\x86\x7e\x2a\xb9\x57\xa1\x97\x96\x29\x64\x91\xea\x82\x06\xc5\xb7\x75\x66\xc9\xa0\xcf\x9f\x57\x5d\x1a\x6b\x94\x85\x02\x95\x20\x38\xf3\x3c\x33\x30\x76\x8d\x4b\x15\xf8\xf6\xc6\x05\xd7\x23\xa7\x43\x6b\x84\xa9\x20\x43\x06\x3d\x33\xb4\x39\xdf\xfe\x33\x09\x2b\xa8\x16\x44\xf0\x9b\x36\x91\xad\x11\xe4\x99\x5e\xdd\xec\x1c\xc9\xb0\xe6\x63\x09\x96\xb1\xfc\x35\xfd\xa1\xf9\x65\xb3\xfd\xf8\x62\x8c\x50\xa3\xb0\xc6\xc2\x6f\x7c\x8c\x66\x06\x19\xf4\xe5\xa9\xa6\xeb\xc9\x15\x39\x49\x25\xfd\xbc\x17\x85\x57\x41\x11\x9c\x64\xbc\x03\x90\x85\x81\x7b\xbc\x10\x0a\x53\x48\x47\x1c\xa4\xb7\x97\x4c\x45\x83\x2b\xe4\x3b\x8a\x47\x3f\xd0\xf7\x9e\x8b\xce\x56\x5c\xda\x67\xdf\x92\xa2\x82\xdc\x5a\xc1\xe1\x8e\x57\xe9\xd9\x3c\x11\xec\x19\x20\xda\xaf\xc1\x0c\x67\x5d\xc1\x86\xef\x88\x44\x95\xe9\xb6\x3e\x7a\x26\x50\xae\xe6\x2d\x40\xd8\xc8\xf2\x3a\xbe\x18\xe9\xa8\x5a\xe4\x4b\xe2\xbc\x86\xa2\x70\x84\x9f\x08\xe2\x99\x9f\x42\x48\xc7\x9d\x97\x47\xd5\xa9\xa6\x88\x87\x76\x99\xa4\xaa\xfe\xf1\x85\xfa\x31\x04\xfb\x2a\x24\x3b\x36\xc7\x6e\xe2\xa9\xb7\xb4\x2b\x2c\x54\xd1\x55\x79\x5e\x67\x56\xe1\x41\x9c\x05\x7b\x6f\x57\xd4\xc6\x12\xbd\x19\x59\x49\x0d\xb1\xb2\xbf\xdb\xfb\x16\x5e\xa5\x87\x6e\x3c\x6f\x9c\x4e\x39\x81\xa3\x1b\xb1\xa9\x3b\xbd\xbe\x51\x39\x8c\xa3\xfd\xc8\xa4\xbe\x4e\x1b\x40\x45\x8f\x5a\x87\xa8\x0b\x83\x98\xfc\x9a\xcb\xc7\x75\xf4\x8b\xe3\xf6\x50\x5d\x81\xc1\x83\x6d\xb2\x96\x6f\xdd\x0d\xb1\x5b\x15\x2c\xba\x43\x55\x19\x42\xae\x6c\xfa\x09\xfc\x32\xea\x46\xd3\x0b\x7b\x6c\xd4\x53\xc1\x9c\xfa\x39\x74\xf2\x31\xc2\xf0\xe3\xca\x9e\x6e\x0a\xb8\x15\x29\xe6\xc7\x4c\x7c\x82\x0a\xcb\x2a\x76\xf9\xfb\x7d\x60\xbc\x60\xf1\x75\x7e\x5b\x47\x2e\xfe\x30\xc0\x9c\x28\x50\x52\x8b\xed\x71\x4a\x34\xd5\x5d\x1b\xb4\x1f\x99\x8b\xc8\x78\x80\x55\x7a\x2f\x55\xc8\x14\xd0\xba\xc2\xe0\x26\x31\xb9\xb0\x7b\x0f\xc2\x82\x8f\x22\xe7\xd2\x3b\xa0\xa8\x25\x18\x64\x75\xe3\xd8\x8b\x82\x45\x60\xdb\x3b\xde\xcb\x30\x9d\xb0\x53\xa6\x80\x1d\xe9\x15\xd2\x65\xd1\x10\xdc\x2a\x84\xab\x12\x52\xc9\x3d\x66\x3e\xa2\x92\x29\xf4\x5a\xff\x96\x09\x66\xb2\x20\xe8\x48\x5d\x45\x21\xbd\x56\x9b\xfa\x63\xac\x4b\x7a\x96\xdc\x53\x9d\x9a\x08\xff\xe2\xcb\x3c\x9c\x61\x56\x94\xe7\xf7\xe7\x2c\x67\xa2\x24\x86\x5d\x1b\x62\x14\xdf\xd7\xba\x71\xaa\x1d\x52\x36\x37\x13\x52\xf9\xd7\x87\x03\x9c\x8c\x20\x61\xc2\x0d\x7f\x32\xec\xf9\x83\xd3\xdd\x73\x82\x93\x31\x5e\xaa\x4f\x99\xe4\xd7\x3b\xb0\x20\xe9\x6a\x31\x97\xa4\xb0\x43\x57\xfe\xaa\x33\xb5\x7c\x44\x80\xf9\x55\x16\xab\x6f\xb5\xf1\xfe\x5f\x58\x8c\x0e\xd2\xfd\xf0\xaa\xa2\x88\x9c\x1c\x51\xa1\xde\xed\x7d\xe7\x22\xac\x76\x14\x76\xf2\xe8\x37\x56\xff\xa1\x51\x79\x18\x34\xec\x94\xe9\x64\xfb\xce\xe6\xa4\x03\xd7\x3d\x45\x68\x19\xa4\xb2\x5b\x4d\x85\xfd\xfe\xc8\xdb\x9b\xad\xda\x6b\xea\x2a\x76\xca\x79\xbf\xc6\xc6\x32\x33\x99\x17\x7b\x7e\x68\x6f\x2a\x6e\x3a\x7b\xc3\x46\x72\x67\x96\xe4\x4d\xf1\x1a\x62\x98\x1a\xb5\xea\x03\x9c\x2d\x49\x85\x0e\x99\x4d\x0c\x7e\x49\x4f\x05\xe7\x94\x47\x1e\xcc\x40\xd4\x2e\xcb\x6a\xcf\xe7\x58\x66\x18\x60\x39\x52\xa5\xb0\xbb\x7a\x93\xe7\x38\x55\x9e\xaa\xb1\x4f\xc2\x4d\x6d\x99\x4d\x85\x0b\x85\x32\xfb\x4a\x3f\xac\x3c\xe3\x55\x45\xd8\xe7\x51\xdd\xcb\x97\x74\xfe\x17\x9a\xed\x17\x74\x22\x27\x7d\x1c\xdc\x6b\x3b\x46\x83\x4e\xc7\x4a\xc8\x12\xdf\x6c\xe1\x58\xfb\xcc\xe8\x4a\x45\x10\x42\x8b\x4b\x8f\xde\x08\x04\x57\x03\x3e\x62\x56\xce\x93\x62\x5a\x02\x82\x2c\x61\x68\x23\x0b\x83\x41\xaf\xb4\x2c\x41\x93\x41\x49\x43\x24\xb7\xa3\x8d\xf6\xd5\x99\x42\x45\x0a\x82\x14\x32\xf4\x85\x6e\xb5\x77\x99\x1a\xa4\x4e\x89\x28\x06\xd8\xa5\x07\xf7\x1f\x71\x9a\x87\x31\x11\x85\x27\x3b\xaf\x06\x3e\x3d\xe7\xfd\xe9\x60\x9f\x4a\x4a\x11\x52\xbb\x54\x1a\x31\x76\x9e\xdd\x80\x6d\xfb\x02\xfb\x50\xb7\xcc\xfb\x1d\x9d\x05\x2d\x1c\x8b\x85\x32\xfb\x75\x15\xb5\xfa\x79\xf7\x3d\xf3\x08\xaa\xb0\x91\x4b\x2c\xef\xb9\x82\xf5\x55\x7e\x39\x16\x74\xe2\xbd\x25\x9b\xf3\xf7\x46\x0b\xc5\x7a\x91\xe9\xf7\x22\x9b\x1c\x27\xd9\x3a\xb8\x80\x46\x91\x06\xe8\x00\x51\x6b\xc4\xe4\x20\xfc\x91\x7a\xe3\xc5\x65\xfb\x40\x49\x98\xb0\xc7\xdb\x9a\x35\x67\x2f\x5b\x26\x10\xed\xd7\x94\x8e\xce\xa8\x3d\xf5\x8b\x8d\x42\x51\x0b\xe5\xb8\x8e\x71\x9c\x00\x21\xd3\xc9\xe1\x3c\x7c\x49\x1c\xbd\xe3\x00\x21\xb9\x0c\x59\x2d\xac\x7c\xf8\xa9\x82\x42\xeb\x19\xe3\x87\xc2\xd6\x7a\xd7\x47\xfb\x0d\x7f\xc5\x9f\xa8\x8d\x70\xcb\xec\x1e\x73\x06\x3e\xef\x1d\x29\x31\x08\x9e\xf9\x35\x1d\xab\x20\xdd\xdc\xc9\x26\x14\x9e\xe2\xbc\xef\xe5\x56\x8e\x95\x14\xc4\xc7\xfa\x11\x0d\xbc\x89\x7d\x8f\x2f\x7b\x36\x44\x13\x6f\x34\x57\x9b\x8c\xeb\xfe\x70\xb2\xa2\xf4\x12\xb7\x07\x21\x9e\x72\xe9\x50\x8e\x7f\xd9\x40\x71\x47\x36\x94\x8e\x14\xfe\x9e\x1a\xab\x65\x9a\x92\xf6\x50\xcb\x35\x17\x9c\x8e\x8f\x24\x74\x18\xa7\x7b\xac\xa6\x0c\x6c\xd7\x2d\xc1\xac\xc3\xbe\x71\x2b\xd2\xed\xf5\x2e\xa7\x5c\x5d\x79\x92\x34\x16\x1c\xb8\x98\x90\x15\xeb\x40\xaf\x43\xba\x50\x72\xd7\x97\xac\x2f\x01\x1e\xd2\x44\x71\xd3\xf2\x13\x85\xec\xbe\xef\x3e\x62\x7d\xfd\xfc\x0b\xf7\xb6\xf7\xf7\xc3\x86\xc2\x42\x7c\x06\xdb\x3a\x0b\x5a\x64\xec\x46\x3c\xc7\x85\x0f\xfa\xc0\x68\x87\x73\x0a\x51\xa2\x7d\x0d\xc1\x20\x06\x76\xfe\x25\x69\x16\x1e\x5e\x11\x6b\xe2\xfb\x26\x5a\xc3\xc9\x35\xce\xc9\xee\x7a\xec\x14\x99\x13\x15\xfc\xd8\xb3\xf7\x6d\xb7\x99\x19\xcb\xcf\xbd\xed\x8d\x77\x29\xdb\x5b\x1d\x77\x91\x8f\x8e\x1a\xb7\xa1\xde\x0b\x79\x32\xca\x21\x57\xcf\x57\x59\x5c\x33\xbd\x7b\xba\x7f\x2f\xfb\x13\xc2\xe7\x48\xc4\x52\x18\x3d\x8e\x05\x40\x1a\x01\x05\xc9\xb1\x10\x44\xaf\xf1\xee\xd4\xb7\x1f\xc3\xef\x64\xfe\x20\x32\x9b\x4a\x7d\xb8\xb9\xf1\x3c\x7e\x90\x56\xea\x8e\xce\xae\x82\xcf\x1c\xca\xd9\x32\xfb\xb5\x65\xb5\x37\x12\x9a\x9a\x24\x6f\x30\x12\x89\x21\x68\x74\x69\x5d\x7a\x1e\x7a\x86\x32\xbc\x67\x03\xe0\x92\x19\x8d\x62\x28\x86\x9e\x7c\xa4\x39\xf7\xbf\xde\xcb\x14\x5d\xa4\xf9\xb5\x90\xad\x48\xe3\x0e\x83\x5a\xc3\x7a\x49\x87\xaf\x4c\x45\xa1\x8d\xf0\x47\x77\xa9\xf8\xfb\x02\xa6\xf7\xa5\xec\xe4\x6f\xad\xed\x87\xcd\x77\x5f\x4c\xe7\xf4\x2e\xfb\x94\xef\x7e\x83\xde\xc1\xe1\x94\x79\x88\x63\xaa\xc3\x5d\x62\xfb\xeb\x7f\x92\x8c\x00\xda\x1f\x2a\x28\x18\xb0\x59\xa7\xa8\x6d\x17\xe1\xa4\x44\x9c\x11\xd2\xbd\xa4\x5d\x2b\xa2\xbd\xc2\x6b\xd2\x27\xb7\xdb\x4c\x2e\xe4\x0b\xdc\xda\x59\x8a\xf5\xf8\x43\x7c\x34\xb4\x54\xcf\x8b\x79\x70\xef\xf0\xf3\xbb\x0f\xf7\x48\x82\x96\x24\x95\x9a\x48\xe4\x26\xaf\x32\x00\x65\x5b\x37\xfe\x4f\x83\x7b\xf3\x81\x3a\x34\x53\x00\x9a\xc5\x09\x2d\x07\x6f\x02\x45\x0f\x5e\x80\x6f\x8e\x61\x4e\xfc\x45\xc8\x4f\x6d\xe7\x33\xdc\xe2\x95\x50\x89\x3c\x8e\xa1\x8b\xd6\x91\xb8\x80\x2d\xac\xf7\xd8\xb4\xb7\x6a\xdb\x01\x9d\xcc\x15\xbd\x1f\x42\x85\x5a\x15\x24\x07\xa6\x48\xba\xb8\x06\xdf\x2d\x6b\xee\x97\x16\xaf\xe5\x23\x55\x67\x08\x45\x3a\xd0\x9c\x7a\x24\xf0\xac\x30\xc7\x61\x66\xa4\xfe\xf7\xc5\xff\x77\xb5\x87\xe7\x62\x86\xf5\xad\xb3\xb8\x2f\xa0\x3d\x1d\xe4\xf2\xe2\xf2\xe8\x1a\x96\xf7\x1c\xf4\x10\x12\xd9\x20\x4f\x5b\xa8\x26\x7c\xcd\x78\x35\xba\x9e\xa1\xd7\xd1\x1b\x9e\x42\xb6\xa2\xf4\x8c\xd6\xa0\x40\xf0\xe9\xf0\xc6\x8b\x4b\xe9\x61\xf2\x53\xdb\x5e\xfe\x1c\xa7\xfb\x4c\x6b\xc0\x97\xf2\xf1\x2e\xc3\x2c\x11\x18\xe9\x69\x59\xc4\x2b\x67\x7b\xe4\x4f\x3f\x52\x91\xd4\x3d\x14\x1a\x00\x50\x64\xbe\x8e\x0f\x69\xce\x3c\x44\x4e\xaf\x01\x84\x8b\xd1\xf3\xb9\x6a\xc3\x34\x44\xa6\x64\x29\xa7\xf3\xeb\xb5\x3e\x65\x92\x71\x5f\x86\x75\xa0\xb4\x07\xac\x4d\xc1\xf4\xea\xe8\xbf\x8c\x8b\xb6\x9a\xff\xc8\x76\xa9\xaf\x24\x7a\xb0\x58\x17\x8e\x9a\x3f\xa9\x0c\xf8\xae\x27\x87\xb2\xf4\x79\x6b\x9b\x13\xb1\x52\x2b\x08\x8e\xa9\x27\x95\x79\x77\xa1\x65\xff\x92\xc1\xa7\x9f\x26\x9f\x39\x63\xf0\x7e\x78\x6b\x4c\x2c\x63\x52\x3a\x37\xf6\x8f\xa6\xb5\xa4\x23\xa3\x45\xe7\x03\x87\xf0\x9d\x45\xd3\xb2\xd6\x67\x54\x8b\xd1\xbe\xab\xd8\xf5\x21\xf5\x20\x3c\x23\xae\x1d\xde\x44\x16\xf5\x30\xe6\xd3\x23\xf1\x55\xad\x6b\x00\x61\x6e\x6f\xb6\xea\x9d\x65\x3a\xe2\xad\x4c\xd9\x32\x7d\x2f\x9a\x39\xc1\xd7\x53\x76\xbf\x66\x31\xaf\x6a\x31\xe2\xcd\x03\xce\xbf\x2e\x06\xaf\x8b\xcb\xc7\x53\x19\x88\x4e\x94\x51\xc6\x31\x68\x53\x7e\x18\xb8\x20\x65\xd4\x57\xef\x00\x6d\xa8\xec\xca\xb5\x1b\xa9\xf1\x6a\x03\xb2\x8d\x03\xc5\x5f\x76\xad\x2a\x75\x18\x91\x46\x1e\x1a\x91\x16\x2e\x6d\xd4\xc3\xe5\xf9\x1e\xff\x31\x4e\x20\x84\x1b\x89\x7b\x4e\x76\x34\x18\x89\xd6\x56\xec\x8d\x4a\xcb\xef\xfd\xd7\xfe\x9e\xb8\xf0\x5c\x43\x9e\xdb\xf4\xfe\xc1\x38\x87\xc6\x82\xdd\xb0\x95\xac\xb2\xf5\xa7\x08\x2b\xd3\xa7\x1c\x8f\x7f\xe3\xe3\x9b\x2f\xbd\x74\xcf\x19\x21\x8a\x28\x8a\x15\x00\x5c\x83\x40\xa7\x34\x8c\x1e\xc1\xde\xfd\xb2\xec\x3e\x93\x38\xfd\xb5\x95\x8b\xd7\x2c\xe9\x5b\x56\xa6\xf1\x7b\x3c\xb9\xf5\x93\xe0\xf1\x07\xb3\x98\x33\x9f\xbf\xd8\xd6\xf8\x07\xba\xdf\x2e\xd2\xc7\x84\x94\xa8\x86\xd5\x84\x8e\xa9\xac\x5d\x01\x5c\x28\x22\x2f\xfd\xda\x2d\x39\xad\x02\xb8\xd5\x85\xe3\x38\x4f\x51\xc2\x1d\x06\xb5\xc3\x9c\x64\xc5\x70\x27\x81\xb3\x91\xb9\xf7\x51\x42\xae\x69\xb7\x14\x8b\xce\x7a\x97\xde\x14\xb6\x8e\xdd\x24\x9d\xf9\x0d\x7e\xd9\x60\x3b\xfa\xe3\x4a\x08\x1f\x82\x4b\xec\x8b\xe7\x12\x20\xaa\xf4\x54\xf0\x54\x54\x3f\x81\x67\x91\x58\x71\x34\xbf\x26\xcb\x51\x4a\xba\xd0\x8b\xac\x37\x0c\x9a\xdd\x50\xa6\xf2\x05\xbc\x7f\xd4\x74\xe4\xb6\xec\x2f\x58\x55\x46\x75\x67\xb5\x4c\x7b\xf5\x0e\x45\x2c\x6f\xe3\x6a\x58\xd0\xeb\x9c\xf7\x76\xa8\x45\x36\x8e\x2f\x8f\x34\x6f\x2c\x1f\xc2\xc8\x90\xb3\x78\xfe\x1c\xb1\x64\x24\x6e\x93\x8e\x0e\xec\x4e\x17\x30\x44\x07\x89\xbf\xe6\xbc\xe4\x3f\xda\xf3\x23\xb3\xa4\x23\xc2\x4f\x84\xd8\xfb\xc2\x58\xa9\x82\x96\xeb\x9e\xd1\xc4\x42\x2d\x9d\x41\x16\x69\x1f\x13\x71\xea\xcf\x22\xbb\x43\x50\x5a\xc5\x62\x4f\x58\x2c\xb0\xe2\x28\x74\xd1\x8d\x62\xe0\x04\x4e\xb1\x8a\x2d\xdc\xae\x00\x21\xbb\x6d\xcd\x36\x1c\xc2\xdf\x10\xdd\x8f\x5d\xd7\x05\x18\xd4\x1a\xfb\x94\x71\xc6\x5f\x07\x16\x7e\x7c\x5b\x18\x15\xdf\x78\x36\x83\x1d\x99\xde\xcf\x30\x93\x1d\x33\x4e\xf9\x4a\x47\x85\xc0\x42\x86\x77\xb1\x03\x53\x74\x5c\x28\x62\x43\x85\x66\x1d\xbc\x1e\x25\x51\x09\x39\x17\xb9\x1e\xd3\x0e\x12\xd5\x01\x30\x50\x5d\xab\x89\x49\x69\x85\xcb\x0b\xf7\x56\x17\xcb\xcf\x0f\x42\x1b\x1c\xa4\xaf\xeb\x25\x65\xc2\x1c\x6a\x88\x6b\xf3\x49\x13\x57\xce\xdf\x53\x8b\x1c\x20\xe4\x45\xd4\xf4\xbd\xcb\x85\x5a\x93\x4d\xb4\x98\xe1\xa1\x91\x1d\xba\x09\xc4\x17\x2b\x13\x92\x6a\xf9\x53\xbf\xd9\x0d\xe5\xe7\x72\x64\x16\xe9\x1e\x5b\x3f\x32\x02\xaf\x8e\xe3\x86\x4e\x47\x33\xba\xb6\x9c\xf7\x6f\xf0\x56\xa9\xb4\x1d\xd0\xb9\xe1\x12\x06\x2e\xc2\x7f\x6c\x52\x00\x0d\xab\x94\xb4\x4c\x1c\x90\xe1\xad\xc3\x70\x70\xcc\x14\x99\x0a\x1f\xd7\xf5\xd3\x7a\xb8\xf3\xa7\x9a\x11\x18\xfa\x16\x3a\x42\xb8\x4e\x89\xa5\x55\xfb\xd2\xe3\x23\xb9\x20\xe6\xac\xcb\xe3\x0f\xa1\x75\x8c\x09\x61\x3c\xb9\xa8\xff\x94\x85\xe8\xa4\x16\x15\x73\x8b\x64\x1b\x71\x13\xac\xa2\xce\xe0\x48\xf1\x10\x82\x40\xf4\x16\x92\x01\x8f\xe7\x33\x26\xea\x94\x0d\x22\x11\xc5\xa5\xf8\x1c\x28\xf1\x54\x2c\xaa\xbd\xad\xf1\x6c\xdd\xf6\xf4\x72\x4f\xfe\x8f\xb7\x7e\xb9\xc6\x53\xe6\xcb\xa8\x1e\x4e\x26\xa2\xf1\xe2\x55\x18\x03\xde\xf9\x03\xe3\x39\xa5\x36\x3b\x0d\xff\x8d\xb0\x42\x9f\xb1\xbc\xbf\x71\x99\x5f\x9e\xa8\x90\x9c\x34\xd9\x47\xd9\x99\x59\xfc\xc3\x95\xbc\x72\xc2\x25\x05\xd0\xcd\x8c\x36\xe8\x36\x66\x84\x47\xb9\x70\x1d\x3b\xbf\xf6\x9b\x99\x04\xfc\x42\x7b\xb7\xd9\x45\x51\x65\x67\x27\xb4\xe0\x64\x83\xb4\x80\x6a\x27\x0c\x6c\xa8\x40\x93\x0f\x00\x75\xa8\xf1\x0e\xe7\xc8\x99\x25\x08\x3e\x73\xe7\x7d\x18\x41\x05\x73\xea\xdf\x79\x89\x9e\xba\x83\xc7\xd7\x8f\x45\x66\xfb\x82\x6b\x4a\xc6\xf1\x1f\x6a\x42\x77\x1a\x07\x86\xdc\x7f\x6b\x87\xa7\xb7\x52\x47\x61\x21\x83\x97\x84\x7d\xa2\xa3\x1b\xc2\xd2\x12\x0d\xc5\xc7\xd8\x53\x86\x90\x3f\x8c\xbb\xde\x9b\x4b\x49\x9e\x0e\xee\x5a\x00\xd0\x02\x5c\xd7\x01\x49\x30\x34\x4f\x5c\x88\xda\x52\x86\x41\xbc\x60\xc4\x73\x6c\x90\x6e\x56\x81\x8b\xd3\xdf\x12\x26\x67\x7c\x99\x60\x73\xdc\x2c\xce\xfa\x6c\xfa\x4a\x73\x80\xa0\xd1\xc8\xd9\x13\x0d\xe5\x40\x2e\x41\x3a\x88\x79\x7e\x88\x9c\x92\x73\x4b\x8b\x74\x4b\x03\xac\x07\xe2\x93\xc2\xf9\x44\xbd\x61\x40\xb6\x1c\xca\xa6\x3d\xbb\x31\xca\xb3\xfb\xf2\xc7\xe8\xc5\xbc\x97\xae\x33\xdf\x53\x96\x4b\x63\x31\x92\x44\x30\xc2\xcc\x0d\x86\x84\xe2\x63\x2a\xbe\x76\xba\x3f\x0c\x01\xe3\x53\xa3\x52\x91\xcb\xd2\x2b\x38\xb3\xb9\xee\x6f\x6e\xcd\x54\x14\xbe\x32\xa6\x2d\xa6\x93\xd4\x03\xee\xad\x7f\xf2\xc6\xbc\xbe\xd9\xbf\xff\x34\x34\xdc\x15\x72\xed\x19\xd5\xe8\x72\x41\x6d\x57\xb0\xcf\x60\x5b\x1f\x14\x17\x8c\x3b\xfe\x76\xd5\xf9\x98\xb8\x76\xcc\x9d\xa8\x1a\x02\xa8\x26\x0a\xe2\xa8\x83\x2e\x7e\x51\x6a\x36\x88\x78\x26\x6d\xd8\xdb\x1a\xe2\x03\xe7\xdf\x74\x27\xbc\x6e\x50\x35\x37\x7d\xea\xf7\xc0\x65\xb1\xbb\xdb\xea\xe2\xc9\x03\x97\x5a\x15\xbb\xf1\x2b\xbb\xcc\x9e\x87\xae\x08\x0f\x87\x3a\xbf\x28\x80\xfb\x9c\xfc\x5a\x91\x66\x2a\xdc\x2c\x0a\xee\xfb\x09\x9e\xc2\x02\x9c\x75\x81\x0e\xcb\x4a\x3a\x02\x42\x79\xa2\xd6\xd5\x55\xc2\x65\xbc\xdf\xea\x99\x95\x21\xf5\x43\xf6\x96\xf4\xf6\x16\x83\x0d\xde\x45\xd9\x4d\x2c\x88\xce\x72\x1e\xee\x70\x1e\x31\xea\x5d\x32\xaa\x45\x81\x29\xd6\x66\xa9\x6a\x04\xc3\x9e\x1e\x57\x03\x48\x1d\xb9\x89\x31\xec\xa6\x40\xe1\xf2\x4b\x92\xf5\x50\x46\x77\xa8\x6d\x1c\x6c\x60\x61\x74\x67\x1f\xb3\x38\x37\x7f\xca\x76\xdc\x9c\xc7\x37\xba\x18\x6b\xb1\x8a\x55\x0a\x6a\xbc\x54\x68\xde\x23\x87\xc6\x38\x48\xc0\xc3\x4e\x20\x21\x9a\x12\x86\x5f\x0b\x45\xa0\x27\x54\xf7\x87\x2d\xe5\x91\x8d\x59\x2d\xbb\x31\xfb\x37\xc5\xbc\x3a\x6c\x58\x82\x9c\xc5\x5d\x3d\x27\x18\x28\xcd\xa8\x24\xfa\x17\x6b\x4b\x03\x77\x2e\x4d\xd6\x63\xd3\x30\xfb\x5f\xa3\x4a\x0a\x11\x9f\x1d\x8c\x42\xcf\x6c\x48\x64\x2a\x86\x10\x3a\x64\x2a\xc7\x10\x41\x51\x14\xd6\x62\x62\xc4\x62\x8f\x78\x73\xb1\xe1\xcf\x7c\x31\x06\x51\xdb\x72\x2a\xbc\x92\xa8\xe7\xb5\xb0\x33\xb4\xc1\x79\x8f\xcc\x28\x77\xc1\xbc\x14\x4b\xb3\xdf\x71\x3f\x3e\x4f\xb0\x26\xe4\x0f\x5d\x02\x64\x94\x7a\xaa\x07\xd4\xaf\x93\xa1\xa9\x48\xf4\x69\xb0\xd5\x9c\xa3\x15\x16\x40\x64\xc2\x69\x80\xb5\x57\x9a\xf9\x12\x4c\xb0\xc6\x8a\xfc\x88\x28\x9e\xc3\x09\x13\xed\x50\x8b\x40\x3f\xb2\xa2\x25\x71\x17\xf1\xfd\x85\xab\x95\x27\x5b\x58\xef\xd1\x29\x6f\x95\xc5\x79\x5c\x4d\x14\x09\x05\xbb\x76\xc6\xfc\x72\x65\x43\xd3\x8a\x14\x53\x00\xa5\x82\xc7\x5e\xcb\xb8\x1a\xf8\xfc\x40\xfe\x2a\xbf\x33\x07\x66\x7d\xaf\x8a\x64\x52\xfe\xf4\xe6\xeb\xb9\xc0\xbf\xc0\x97\x9a\xf6\xce\x60\xf7\x97\x63\xde\xf7\xcc\xd0\xdf\x07\xde\x7b\xbd\xce\x6d\xd0\x46\x1f\xe0\xdc\x2f\x70\xce\xa7\x09\x2d\x7b\xcc\x6c\x39\x8e\x56\xea\x82\x64\xf9\xbd\x64\x3d\x69\x3d\x95\x6f\x90\xaf\xe5\x9e\x4a\x9b\xbb\x62\x8e\x1e\xe1\x2f\x1a\xe5\x09\x22\xda\x29\xf7\xcc\x98\x3b\x02\x23\xab\x8e\x5a\x39\x0b\x04\x11\xea\x92\x38\x06\x42\x2f\x0a\x4d\x6a\xe4\x45\xa1\x57\x8c\x68\x4a\x5d\xd7\xe5\x5e\x9c\x6e\x4f\xad\x24\x28\x08\xff\x81\x5d\xd4\x5e\xe5\x70\xd6\x30\x4d\x15\x0a\x33\x89\xf7\x48\x32\x12\x69\xfc\x3a\xf2\x7c\x39\x1c\x1c\x3e\x7e\xc1\x6d\x99\xac\x87\x69\x7f\x50\x40\x3e\x96\x11\xf2\xf9\x70\xd4\x79\x8f\xd0\xa0\x83\xf8\x22\xd5\xa4\x2f\x04\x59\x15\x67\xa5\xff\x64\xd7\x89\xd9\xbb\x11\x15\x83\xab\x22\x11\x4f\xc3\x1b\x62\x34\x3d\xef\x72\x93\xb5\x96\x8f\x0f\x05\x0d\xd9\x6f\x40\x82\x28\x35\xa7\xdd\x86\x88\xbb\xf3\x49\x47\xe1\x59\xfd\x54\xf5\x24\xf9\x23\xea\xa8\xb1\x14\x0c\x09\x9f\x58\x0a\xeb\x29\x96\xb3\xe8\x15\x49\x16\xd3\x46\xe8\xaf\xd2\x01\x87\xd8\x85\xd1\x2f\x67\xbb\x41\xf8\xe5\x2d\xda\xee\xd9\xf3\x2e\x97\x58\xb5\xb6\xf6\xac\x96\xfd\x88\x16\xb3\xf6\xb3\xa7\x43\x11\x7f\xa7\xed\x88\x2a\xc3\xcb\x0e\x6b\x2c\xcc\xd5\x34\x3b\x6b\x14\x5c\x60\xb4\x23\x6a\xeb\x8d\x20\xeb\xcd\x9b\x10\x7e\xc8\x65\x17\x68\xe9\x03\x2e\x52\xbb\x58\xeb\xa7\xc5\x7a\x9b\xa8\x9f\xbf\x38\xe6\x6f\x31\x71\x8e\x92\x7f\xe2\xf2\x37\x3e\xd9\x0d\x16\x53\x81\xb1\xe2\xff\x74\xb1\x95\x76\x32\x33\x81\xc1\x0d\x34\xf7\x4b\xbb\xfb\x5f\x1a\xde\x67\x71\x40\xba\xf0\xe3\x3d\xa5\x44\x17\x0b\x25\xeb\x1c\x1c\x3e\x46\x7c\x66\x6b\x95\xb5\x5e\x5c\xc7\x8a\xeb\x52\x51\x91\x8a\x86\x61\xf7\xa6\xc5\x17\x08\x31\x0d\xc5\x6a\x25\x5c\xb1\xd3\xea\x3d\x12\xc3\xcb\x85\xbc\x9b\xa1\xbd\x66\x95\x58\xc9\x34\x7d\xb9\x25\xbd\xb9\xce\xee\xe5\x06\xae\x2f\xc6\x16\x66\xa9\x88\xc3\x76\x7a\xf6\x6c\x97\x3d\xd0\x66\xda\xc9\xc6\x83\xab\x71\x10\x57\x90\x54\x9d\x68\xe4\x8e\x3d\xa6\xae\xf1\xc1\x16\x2e\xf5\xd7\x53\x87\xd7\x48\xe6\x07\xc1\x1b\x98\x88\xd3\x3e\x36\xea\x29\x36\xd7\x4c\x8c\xa3\xc3\xe6\xd5\x22\x5e\x85\xc5\xd5\xaa\xa4\xd0\x17\x47\xcd\x1f\x23\xe6\x1a\x6b\xdc\x0e\x22\xb6\x93\x3d\xfb\x63\xec\x8d\x5f\x08\xbf\x61\x68\x5d\xef\x44\x6a\xfc\x4b\x57\x48\x0e\x33\xec\x3d\x15\x97\xbb\xff\xcd\x02\xb4\x39\xbe\x35\x56\x78\x52\x01\x82\xdf\x73\xd5\x31\x45\xfb\x87\x6f\x1b\xbe\x4b\xde\x36\xe4\x8b\x77\x8b\x8f\xdc\xd7\x24\x1f\x58\x58\x4c\x52\x48\x55\xb6\xfb\xf4\xe5\x9f\x06\xb8\x33\x62\x38\x15\xd7\x84\x00\x27\x31\x52\xa5\x3a\xcc\xe9\x94\x9a\x3f\xf9\x1a\x2f\xe5\xf5\x0d\xaa\xf3\x38\xb4\xec\xdb\xf1\xe5\x80\xca\xda\x2a\x68\x93\xec\x0f\x86\x5e\x87\x03\x33\xf6\x2b\x28\x3c\xb6\x92\x12\x21\x8c\xd1\x22\x5d\x7e\x98\x64\x3b\x76\x5d\x4f\xe5\x8d\x2f\x4f\x88\x2c\xd1\x8c\x53\x6b\x6b\x2e\xf8\xbc\x1f\x11\xf2\x19\xff\xbb\xb9\xa9\x7d\xc8\x48\x57\xd5\x64\x7c\x8f\xf3\xfd\x12\xcb\xf4\x68\xdd\xe8\x36\x4b\x5e\x96\xe3\x42\x12\x84\x1a\x75\x4a\x0b\x39\xa3\xf3\x2d\x36\x3f\x0f\xe7\xd6\x40\x7c\x2e\x12\x38\xd1\xa8\x80\xf5\xc0\xe5\xb2\xa8\xe0\x09\xa5\xe8\x9b\xab\x74\xc0\xa5\x25\xa7\x40\xdd\xfb\x11\x4f\x92\x99\xdf\xa1\x87\x1c\x3f\x07\xa3\xae\xf3\x94\xa6\x29\xe6\x15\x9d\x61\xd6\xf2\x62\xd2\xef\xbc\x2f\x9d\x07\xd8\xbf\x47\x2c\x16\x68\xc7\xb5\x8b\xb9\xb1\xa8\x41\xb5\x17\xd7\x80\x79\x11\x30\x9e\x0a\xe9\x70\x1e\x1e\xae\x6b\xb6\xb3\x5a\xcf\x6f\xfd\xed\x36\x1a\xa7\xb1\x2b\x90\xf0\xc7\x0a\x72\x1f\x76\x67\x8d\x28\xea\x15\x05\xe2\x3a\x5b\x08\xda\xdd\xb5\xe4\x2c\x23\x56\xbf\xe4\x26\x89\x61\x8a\x6e\x5c\x2d\x50\xdc\xa0\x58\x89\x57\xd5\xc5\xb9\xbd\x34\x54\xb6\x15\x42\x18\x4d\x2c\x2c\xd2\xf6\xc2\xee\x2d\x71\x4e\xf5\x71\xc2\xad\x44\x62\x5c\x54\x1d\x53\x0f\x39\x08\x83\x8f\x0e\x0e\x64\x6f\x53\x99\xde\xc4\x17\xf2\x21\xd2\x6b\x92\x48\x8a\x71\x2f\x5f\x28\x43\xd3\xa3\x22\x0b\xb2\xfe\x7c\x04\x50\x03\x04\xa5\x61\x07\x0a\xe4\xac\xb3\x76\x0e\x09\x43\x18\x31\xc4\x0c\x0f\xa5\x52\xaa\xe5\x38\x15\xe2\x8a\x56\x21\x56\xd6\x81\xfe\xad\x98\x67\x9c\x51\x9f\x6d\x2f\x4a\xcb\xc7\x95\x2a\xa9\xc3\xeb\x26\xc5\xad\x66\xb0\x85\x2b\x33\x3f\xd6\xc5\x6b\xa2\x7a\x1a\x3e\xe8\x7a\xc3\x7d\xd7\x1c\xb3\xc9\xa0\xef\xa3\x6e\xd1\x7c\xd0\xdf\xdd\xa8\x8a\x1d\x87\x25\x7e\xa1\xea\x92\x49\x0f\x1b\xa5\x1d\x6e\x30\x01\xee\xda\x92\x88\xf4\x85\xb7\x81\x7e\x67\x19\x6d\xc4\x86\x37\x46\xb3\xe2\x78\xde\x41\x44\x4c\x59\x72\xf7\x98\xe3\x3e\x0d\x48\x74\xf3\xe7\xa0\x7b\xca\x14\xae\xdb\xaa\x26\xca\x89\xd1\x02\xbc\xf9\xf4\x42\x33\xf3\x3c\xae\x03\x3f\x90\x60\xe0\x6b\xbb\x55\x04\x41\x45\xee\xad\xe2\x72\xef\xe4\x41\x1f\x27\xae\x68\x2a\x29\xd2\xf5\x86\x87\x28\xbf\x9d\xc1\x4a\xb0\xb3\x91\x73\xf5\x9e\x62\x59\x88\xa3\x6e\xb0\x3a\x25\x2d\xf4\x11\xde\x0d\x8f\x4e\xfa\xfd\x77\xbb\x7e\x2c\x7c\x5c\xa2\x7f\x31\x1f\x75\x7c\x9e\xbe\x3e\xa4\x10\xec\xe6\x19\x6c\x3b\x12\xdb\xbb\x5c\xb8\xc5\xf9\x5c\x7d\xcd\x47\xed\x76\xd6\xae\x80\xf2\xd3\x18\x17\xc3\x84\x34\x15\x92\x0b\x94\xe3\x50\xce\xaf\xb0\x8a\xa3\xce\xd0\xc8\x98\xaa\xd3\xfb\x4b\x9f\x4b\xa5\x94\x84\xc7\xcc\x51\x11\x3b\x35\x79\x51\x42\x18\xc9\x6d\x81\x84\xff\x14\xb5\xbd\x43\xf7\x8b\xe4\xd6\xc1\x4f\x02\xad\x15\xd1\x5c\x2d\x50\x50\x0e\x2c\x2c\xea\xcc\xe3\x94\x1f\x0b\x91\xce\x54\xa6\xbf\x2c\xb3\x62\xfe\xf8\xac\xb3\x59\x60\x58\x98\xb1\xb0\x9b\x16\xc9\x70\x5f\xab\x0e\xab\x36\x63\xbd\xdd\x8d\xaa\x04\xfa\x11\x27\x0a\x94\xe2\xf5\xb8\xf0\x49\x10\xf7\x18\xc8\xf1\xe8\x93\x57\x1d\xbb\x2c\xf9\xd7\x94\xf6\x38\x83\xf3\xbc\x8f\xda\xbf\x96\xbb\x65\x4f\xbf\x89\x90\x9f\x8a\x0b\x74\xfd\x4d\x75\xde\x7f\x5e\xba\xab\xc0\x59\x9b\x81\xb8\x92\xf0\x54\x74\x84\x74\x50\x92\xea\x6f\x96\x8a\x7a\x69\xa9\xb4\xe1\xc9\x63\x3e\xb1\xdf\x6f\xf0\x9a\x50\x36\x54\x82\x44\xb1\x1f\xb2\x96\xd3\x9c\x53\x0e\x17\x42\x94\x39\xaa\xeb\x75\x64\xf9\xed\x41\x9b\x46\x47\x1b\xe2\xb8\x94\x2a\x31\x83\xc8\x3d\xe3\x6d\x4f\x96\xd6\x35\x52\xfe\xfe\xca\x46\x7c\xe4\x52\x6c\xff\xc0\x82\xbd\xa1\x8d\x43\x54\x93\x49\xd4\xc6\x61\xc6\xc5\xb8\x00\x5e\x89\xfc\x6b\xca\x45\x42\x33\xd7\x8d\x46\x3c\x08\x75\xc0\x02\xa1\xd5\x13\x70\x75\x64\x80\xe9\x2a\xc9\x18\x50\x29\x40\xd4\x05\x0c\xc8\x50\xd4\x44\xc7\x10\xa9\x7b\x66\xa1\x35\xcc\xd1\x49\x16\x40\x47\x06\xbe\xb9\x9f\x20\xee\x3d\x30\x86\xd8\x33\xde\x46\x1b\xb0\x4d\xe0\xc6\xc1\x86\xda\x01\x92\xad\x96\xd2\xd3\xa3\x74\x86\x19\x4b\xf6\xba\x36\xa9\xf2\xcf\xa8\x22\xd1\xa7\x9c\x16\x18\x96\xf7\x4b\x02\x6b\x04\xb2\xe8\x22\xf7\xbb\x1d\x75\xd7\xc9\x61\x94\x0a\x69\x37\x8d\x2d\xa8\x9e\x85\x55\x95\x8a\x95\xd2\x78\x18\x3b\x0b\xbe\x06\x24\xd6\xe0\x00\xf4\x85\x64\x9d\x85\x79\x47\x66\x8a\xbc\x4d\x9e\x50\x67\x7d\x7e\x7d\x75\x56\x7f\xcc\xd2\x50\x7d\x14\xd5\xb7\x87\x11\xa1\xb6\xb7\x41\x71\x42\xc0\xe8\x08\x29\xe7\xe3\xfb\xc8\x28\x69\x62\xa7\x76\x4a\x84\x4b\x5a\x1c\x5a\xad\xed\x94\xd7\x25\xea\x70\x35\xe9\xc8\x67\xe6\xd7\x34\x23\xf2\x1a\x25\xa9\x52\x8f\xe4\x72\xec\x44\x0f\x01\x27\x7c\xe8\x1b\x6f\x76\xec\xfc\xeb\x66\x1d\x34\xd2\x33\x94\x79\xda\x9f\xc4\x18\xba\xb7\xde\xa6\x5f\x60\x2a\xf8\x90\xcf\xb8\x09\x29\x3f\x54\xd2\x41\xc1\xe2\x88\x8e\x2d\xe9\x83\x66\x18\xf0\xd4\xc2\x25\x97\xa5\x9e\x04\x79\x2a\x78\x20\x42\x3c\x3f\x05\x5d\x1d\x66\x58\xc7\x4c\xd3\xff\x25\x12\x68\x54\xb4\x52\xe3\x64\x97\x23\x18\xef\x24\x44\x7a\x39\x2b\x01\x4a\x6d\xc4\x07\x40\xa2\x07\xad\x01\xfa\x90\x8b\xb0\xe7\x1e\xe4\x4c\xca\xdf\x5e\x4b\xef\x53\xc6\xaa\xac\x42\xbd\x95\x72\xa5\x60\xff\xfc\x70\xaf\xb6\xb4\xeb\xfa\x55\x0c\x3a\xfd\x00\x87\xe3\xa4\x9b\xca\x4a\xed\x4b\x50\xe7\x82\xb2\x17\x40\x0c\x9f\xcf\xbe\x07\x6b\x3b\x6b\xfd\x98\xfe\x7b\x3e\x30\x3a\xdb\x9e\x59\x72\x36\x5a\xaa\xb1\xf4\x46\xe8\x61\x82\xbc\xce\x5d\x5a\xe1\x00\xd9\x71\x39\x0a\x5f\xf9\x35\xf3\x64\xa7\x5f\x19\xb3\x1b\x1a\x8b\x84\xbd\xc5\x9c\xf9\x2b\xd9\x0d\x4f\xb6\xac\xfe\x98\xab\xc7\x93\x45\x9f\x5d\x1a\xd0\xfa\xa5\x64\xe3\x1f\x76\x60\xf1\xf2\x3a\xb6\x4b\x89\x30\xdc\xf6\x9f\x49\x92\xb0\xd3\x5b\x4b\xfe\xa9\xcb\x60\xc9\x56\x0e\xc3\x9c\x42\xb4\x7f\xc7\x79\x5e\x3e\xaa\x91\x76\xfc\xe6\x31\x96\x17\x4f\xf8\x11\xf5\xed\x23\x75\x0e\x9c\x2b\xe4\xe1\xbf\x79\xeb\xdd\x16\x30\x90\xbc\xef\x48\x38\x7a\xb4\xf6\xd7\xff\x77\x03\xe2\x7d\xd3\xf7\x60\xbe\x64\x03\xc7\xd7\x0c\xbe\xe7\x91\x39\xfe\x40\x82\x93\xbd\x04\xdf\xd9\x7f\x8f\x86\x88\x85\xca\x8f\x85\x10\xf5\x99\x4d\x29\x4c\xc7\xf5\xed\x7c\xdf\x7e\xf6\xc9\xbf\x25\xc3\x6e\x4f\x55\x3b\x59\x93\x88\xde\x88\xdb\xc0\x66\x23\xb3\xeb\x99\x67\xaa\x29\x49\xd1\x45\x6b\xb9\x07\xc9\xff\xf9\xef\xd8\xc0\x82\xfd\xb0\x55\xeb\x92\x92\xdd\xe5\x69\xd0\x67\xfd\xf3\x70\x3b\x22\x9e\x12\xd1\xf3\xc3\xe5\xee\x92\x38\x14\x42\xab\xc7\xb2\x8a\x95\x1d\x6c\xca\xf9\xf8\x3e\x94\xa0\x82\xd9\x19\xdb\xef\x27\xfe\x2e\xe5\x23\x44\xf7\x8f\x4b\x91\x95\xf6\x74\xa7\x90\x24\xb8\xc0\x70\x09\x4d\xbf\x9c\xb5\x5f\x42\xba\x61\x1e\xed\x95\x6e\xf7\x93\xfd\xc9\x17\x6b\xe7\x19\xb0\x1e\x74\x9d\x61\xa7\xc2\x1d\x41\x7b\xf3\xf5\xe2\x1b\xf0\x6c\x39\xf2\xa2\xd8\x1d\x74\xd9\x0c\x7a\x6d\xed\xaf\x2c\x47\x59\x77\x97\xed\x64\xd4\xdd\x29\x1b\x82\xc1\x7b\xd9\x52\xe3\xed\xe0\xab\x45\xd3\x32\x07\x2f\xbe\x3d\xf3\x4a\x01\x7c\x66\x51\xf0\xb0\x03\x04\x11\x0d\xf7\x75\x7c\x08\x41\xa0\xb9\xcb\xc9\x90\x67\xbb\x41\xcf\xb7\x9a\x13\x72\x60\xd6\xc2\x1f\x49\x16\x81\x87\xba\x6d\xde\x45\xa7\x81\xb0\x47\x40\xb6\x6f\xc6\xb4\xdd\x11\x3e\x40\x5f\xf9\x5d\x7d\xe9\x5e\x57\x5b\xba\xac\xeb\x60\xd8\x05\x9a\xdf\x9c\x32\xbb\x92\xf7\x2b\x6d\x12\xbf\x0a\x39\xbc\xab\x9e\x51\xa1\xd1\x64\x9c\xa8\x55\xf2\xf4\x26\xbf\xe9\x79\x67\x9e\xf6\xd5\xfe\x55\x45\x32\x7a\x5e\xcf\xba\xfa\x8b\xf9\x79\x70\x23\x5e\x2d\x0e\x0d\xc5\x93\x45\x17\xb1\xd9\xa1\xd0\xee\x17\x22\x40\x91\x52\x23\xa3\x4d\xc4\xa9\xdf\xb6\x78\x39\xcd\x56\x61\x5a\x18\x36\x53\x65\x7f\x00\xe2\x97\xb8\x25\x13\xba\xf7\xdc\x20\x95\xfe\x35\xb1\x2f\x5c\x20\x05\x8b\x71\xf1\x16\x5a\xc3\x09\x44\x6d\xaf\xfd\x6a\xb3\x7c\x94\xaf\x55\x2b\xed\xa5\xb3\xa5\x6b\xd3\xc0\x39\xf8\x3c\x22\x94\xe1\x0f\x91\xc6\x2f\x58\x61\x75\x01\x41\x7a\xb2\x65\xe9\xe9\xb1\x23\xa9\x66\x44\xc6\x8d\x27\x27\xeb\xf9\xef\xbf\x1f\x10\x53\x00\x0e\xeb\xaa\x10\xfd\x72\xc4\x7b\x91\x2e\xa4\x76\xe9\x8e\x2a\xbe\x25\x77\x57\x8d\x06\xa4\xd5\x11\x8b\x7e\xf1\xb0\x82\xd0\x39\xc3\x51\x8e\xce\x97\x29\x63\x9a\xec\xa2\xa5\xda\xdd\xe0\x6d\x7a\xf5\x2c\x6a\xfe\x07\xea\xc3\xf7\x7e\x08\x1a\x5a\xfb\xab\xf0\xc9\x84\x14\x06\xd7\x9c\xb0\x35\x63\x80\x69\x2e\xfc\x4e\x63\xf8\xfe\x74\x0c\x3a\x9e\x8f\x3a\x3e\x88\x4d\x2f\x73\x50\x1e\xca\xa5\xbb\xdd\x8b\x36\x4d\xe7\xfc\xf7\x3e\x15\x87\x4d\x93\x48\x3e\x35\xbb\xf1\x67\xba\x1a\x81\x67\x6c\xa9\x13\xa4\x80\x96\x12\xbc\xba\xf3\xd3\x20\x48\x45\x32\x6f\xbc\xdb\x1f\x19\xf9\xaa\xf6\xf3\x1f\x7f\x84\x3c\x53\x3e\xfc\xcc\x27\x03\xf1\x8b\x33\x49\x78\x70\x20\x0d\x72\xca\x0b\x86\xb7\xfa\xab\x94\xf6\x70\xcc\xc9\xef\x9c\x7a\x51\x30\x8a\x95\x70\x49\xf7\xd3\x0f\x99\x47\x3e\x1c\x6e\xa3\x57\xdc\xbd\xcb\xa6\x00\xbe\x17\x6d\x9a\x8f\x86\x12\xc9\xa2\x8b\x04\xc2\x20\x3d\xc2\x40\xd1\x10\xd3\x40\xdd\x27\x7e\xb4\xb4\x8d\x31\xd1\xcc\xf9\x69\x54\x62\xc5\x4b\xf3\xe4\x42\xa5\xcc\x99\xa8\x08\x0f\x91\xa8\xeb\x25\x5d\x80\x71\x6d\xc2\xb7\x82\x24\x23\xe0\xee\xbc\x6e\x4b\x33\xfe\x95\xbc\x9c\x5f\x28\x0f\xb1\x0b\xa5\xd1\x1d\x13\xd2\xf8\xb6\xbf\xdf\x68\x62\xb1\x76\x47\x37\xb3\x15\x6b\xc8\x16\x2c\x84\x21\x3e\x81\x61\xff\x2b\x3c\x60\xe1\xc7\xa7\xea\x5f\xa4\xc0\xb9\x58\x59\xf3\x8f\xea\x9a\xde\x4d\xa7\x8d\xfd\x7c\x97\x09\xcb\x10\x7a\x7c\xeb\x32\xe9\xc5\x9b\x3f\x37\x2f\x2e\x8f\xd9\x0e\x61\xb9\xb5\x82\xd6\xb3\x96\x64\x31\x4e\x80\x8f\x1d\x23\x33\x15\x6b\x38\x79\xd1\xb7\x7e\x18\x39\xd0\xf4\xce\x22\xdd\xd2\xad\xfa\x08\xc7\x66\x4d\x62\xd4\xd0\x28\x6b\x67\x3b\x9e\x0a\x46\xbf\xaf\x5e\x7c\x01\x11\x57\x0d\xaf\x2a\x44\xd4\xa7\xfe\xaf\x0b\x3e\xe0\x33\x27\x64\x62\x1a\xba\xfd\x73\x9a\x52\xde\x2f\x44\x91\xc2\x39\x39\x2b\xfd\x85\x9a\x9c\x8e\xdb\x8d\xad\xe0\x7f\xbd\x02\x2d\xfa\x83\xf8\x1f\x9d\x5f\x7b\xf9\x9d\x6d\x5c\xe0\x21\x15\xc9\x34\xd4\x6b\xf5\xb9\x01\xa9\x18\xf3\xc6\x5f\xc2\xc9\xa7\x84\xbb\x71\x22\x3f\x67\x3e\xa1\x50\xdc\xa2\xce\x86\x61\x58\xad\x73\x78\xb9\x11\x1f\xcb\x48\x78\xed\x8a\x13\x89\x86\x4b\x48\xe0\xe3\xad\x24\xc0\xd5\xf6\x4b\x2f\xd1\x8a\xe6\xe9\xdd\xfa\xac\x3a\xb4\x57\xea\x84\xef\x4c\xe2\xe2\x19\x19\xd8\xc2\xef\x9e\xfe\xd0\x7d\xf2\xa7\xf4\xc4\xf4\x35\x72\x56\x4f\xf2\xa2\x84\x47\x8c\x52\x40\x25\x83\xda\xe5\xfa\xab\xf3\x1d\x21\xd3\xcb\x87\xff\xe6\x0f\x5f\xae\x92\xf4\xad\xf6\x9c\xa6\xcf\xff\xfe\x5a\x1f\x6a\xfe\xa8\xea\x5f\x2f\x7e\x4e\x98\x23\x12\xdf\x76\x3b\xdd\x21\xfe\xf3\x03\xb0\xa1\xee\xf8\xa5\x4f\xd5\xd7\xc7\x82\x22\xbf\x8e\x5d\xd7\x3d\x85\x07\x2a\x12\x22\x4b\xbc\x04\x7e\xaa\x4c\xdf\x89\xd8\xea\x7d\x1d\x45\xbe\x5d\x9c\x5c\x2f\x81\x3c\x00\x5e\x72\xd9\x79\x12\x0b\x97\x13\x0b\x0b\xc5\x45\x96\x4d\x37\x8d\x18\x0d\x2e\x0d\x5c\x3e\x2f\xbf\x4a\xb5\x14\xc6\xb2\x04\x04\x53\x3c\xfe\x43\x20\x3e\x47\xa0\xd7\xc5\x51\x68\x38\xd7\x26\x9b\xdd\x8b\xfa\xdc\x7d\x52\x66\x4c\x90\xb0\xd3\xdb\xe1\xc4\x3e\xad\x20\xbb\x4c\xa1\xdc\xbc\x6a\xc1\x3a\x37\x1a\x21\xf2\x3d\x27\x00\x7d\x50\xc8\xca\xe7\xf8\x9c\x19\xc9\xe1\xfd\xf0\x16\x90\xd1\x24\x54\x36\xb6\x7e\x22\xbb\x26\x13\xca\xc1\xbf\xf9\xca\x25\xb1\xd3\x46\xfb\x6a\xff\x9b\x48\x66\x70\x0b\xe3\xd9\xf5\x80\x9f\x67\x74\x3b\x07\x02\xff\x0b\xcc\x92\x4f\x23\x69\xed\xef\xf7\xbc\xb8\xd4\xd6\xc4\x2e\xe2\xd9\xac\xc0\x6d\x72\x8c\x56\xea\xef\xbf\x6b\x39\x4a\x84\xfb\x4d\xc2\x40\x31\x07\x52\x1b\x72\xed\x65\x19\x99\x2f\xf2\x35\x62\xbe\x6c\xf4\x7c\x60\xeb\x23\xfe\xba\x93\xe0\x83\xdd\xe3\x7d\x16\x76\xe4\x86\xcb\xfe\xfc\x69\xd9\x90\x82\xa1\x14\xc6\x25\xf1\xf5\xc5\xd5\x0e\xfe\xc3\x1a\x51\xf5\x9c\x1a\x1c\x13\x05\xb5\x26\xca\x3a\x98\xb8\x49\xc5\x9f\xe0\x2b\x05\x1c\x45\xc4\x72\x0b\x6b\xbf\xbb\x17\xfb\xcb\xaf\xf4\xa3\xc8\x06\x4d\x40\x90\x15\xf4\xdc\x63\x06\x83\x9b\xba\xdb\x23\x3f\xbe\x9c\xe9\x2f\x72\xb3\xc4\x47\xa6\x11\x4a\x3f\x4e\x74\xd9\xf8\x37\xe3\xb0\x23\xd3\xfb\x5f\xbb\x57\x70\x9d\x04\xc2\x1c\xb1\xe4\x47\x2a\x9c\x8b\x15\xc2\x6d\xe1\xfb\xf4\x5a\x51\x93\x90\xbe\xa7\x18\x47\xd8\x9c\x83\x2c\x6f\xbc\x94\x87\xda\x43\x96\x46\x6d\xf6\xc7\xc7\x00\x5e\xe7\x6b\xbf\x44\x10\x15\x3c\x35\x09\x41\x85\xd1\xea\xac\xaf\x45\x4b\x98\xa7\xdb\xf7\x9d\xca\x4f\x30\x46\xf3\x35\x6c\xc7\xd6\x1c\x1e\xba\xa7\x64\x8e\xb1\x3e\x6b\xc4\xc7\x7a\x93\x0c\x6e\x91\xfe\xaf\x91\xf4\x4d\xaf\x95\x8a\x85\x40\xc8\xf7\xf5\xdf\x9b\xd4\xff\x9b\xac\x37\xfc\xcc\x96\xcd\x63\xee\x7f\x70\xf4\xdc\xfc\x67\x2f\x71\x37\x46\x82\x0e\x00\x5e\x22\x58\x1d\x77\x99\x00\x4e\xa7\xfd\xf2\xf2\x53\x44\x98\xa1\xcd\x43\xe3\xf1\xee\xda\x8e\xf3\xbf\xf5\x86\x4d\x0e\x6d\xd9\xbf\xd9\x84\xae\xa6\xbf\x89\x64\xd2\xe9\xe5\x30\x73\xcd\x1f\xd1\x0d\x9f\xb1\xf4\x3a\x70\x41\x69\x62\x0c\x1e\xdd\x7a\xcb\x6a\xe2\x4c\x9b\x93\xc5\xaa\x43\x77\xa5\x1e\x6e\x9d\xd2\xeb\x2b\xe3\xaa\x63\x5d\x39\xcc\x88\x3e\x85\xf9\x65\x02\x2e\x65\xc0\xc9\xf8\x73\xd5\xeb\x00\x1f\x66\xa5\xff\xe2\x0e\xa1\xac\x49\x28\x32\xd0\x24\x9e\x20\x01\x7e\x2e\x8e\x51\x24\x86\x94\xe1\x7f\x77\x65\x37\xde\xd8\xfb\x44\x2a\x3a\xc0\xd9\x10\xef\xae\x1a\x72\x41\xd9\xc9\xbd\xe4\x81\xdc\xd8\xc0\xc5\x1e\x69\x14\x4f\xe4\xac\xc0\x0c\x35\xaa\xc4\x6c\x61\xf0\x56\xe2\x19\x00\xe8\x25\x32\x48\x58\x50\xc1\x63\x5f\x7f\x42\x00\x46\x86\x7b\x1e\x22\xba\x7c\xa7\x9d\x47\xa8\x0c\x82\x1f\x60\x6f\xbc\xb8\x37\x96\xf5\x11\x1d\xf9\x5e\x92\x53\xc5\x7d\x78\x19\x7b\x46\xd7\x41\x8c\xfb\x07\x6c\x24\x77\x09\xc3\x30\x5a\xd6\xa5\x32\x1c\x78\xd2\xfb\x86\xd6\xe5\xee\x7d\x4a\x0a\xfd\x40\x3f\x86\x79\x17\x92\xca\x2a\xec\xe6\xce\x56\xff\xac\x20\xd0\x95\x45\x28\xd3\x13\x0a\x8c\x92\x3d\x6b\x2e\xd5\xb0\xe7\x38\x93\xc7\x51\xeb\x3a\x67\x8a\x6f\x3c\xc3\x2e\xe7\x56\x2f\xfd\x15\x34\x39\xbf\x4a\x27\xc6\x78\x23\xa2\xe1\x5c\x72\x54\xf3\x4c\xa0\x78\x40\xfa\xbe\xc5\xef\x37\xea\xac\x13\x45\x53\xa7\x30\xbf\x7d\x04\x52\xd2\x04\xb8\x8d\xf2\xc8\x19\x9d\x85\x61\xb4\x14\xba\x2a\xf2\xdf\x8b\x8b\x2c\xe7\x65\x7c\x86\x25\xb7\x37\xe6\x36\x28\x93\x9e\x37\x5c\x56\xa9\xb5\xa1\x3b\x1d\x32\x0e\x58\x9a\x89\x64\xd1\x8e\xac\x28\x0c\x99\x6f\x3f\xbd\xda\x1f\x97\x44\xae\xd7\x10\x27\xad\x68\xdf\x55\x98\xe4\x34\xec\x6b\xb6\x20\xd0\xf5\x98\x44\x99\xc2\x3b\x86\x39\xf1\xe9\x7f\x8e\xdf\xad\x1f\x6b\xe7\xf4\x05\x0a\x52\xe4\x53\x3f\x89\x9b\x2f\x89\x57\x7f\x42\x8f\xfa\x98\xd5\xfe\x4f\x12\x1d\xb3\x9b\x4e\x9f\x3a\x41\xa0\x6a\xef\x5f\x8d\x5d\xef\x0f\xed\x73\xa1\x37\xbf\x82\xd1\xf7\x2e\xdb\xac\xb4\x41\xdd\x08\xad\x19\x84\xfc\xa5\x5f\x06\xa3\x16\x7f\x7d\x9c\x5e\xf3\x97\x2c\x23\xf4\x8b\xc3\x65\x37\x3c\xb1\xb5\x15\xb5\x53\xf1\x3b\xcb\x3e\x17\x14\x7f\x88\x25\xd3\x0e\x5c\xd0\x97\xec\xb4\x4e\x93\x69\xd9\x3d\xf4\xc1\xf1\x91\x62\x5d\x70\x49\xab\x07\x71\xe6\x8e\x64\x76\x44\x95\x47\xf6\xa0\x4d\x47\x42\xf8\xad\xdc\xd3\x11\x04\x9b\xc0\xcf\xbd\xed\xba\x2d\xda\x82\x44\x0f\x04\xed\x2a\x26\xd6\xe3\xf8\xc3\x6f\xff\x66\x1b\x31\x4c\x4f\x8f\xb2\xf1\x7a\x54\xef\x11\x0b\x04\xcc\x13\xa7\x2f\x27\xea\x11\x30\xc6\xff\xe5\xfe\xae\xff\x16\x79\x42\xbd\x8e\x75\xe0\x70\x9f\x72\xea\x07\xc7\xbf\xcc\xc8\xeb\x4e\x0f\x48\xa3\x32\xe9\xd9\x3c\x7b\xcf\x0d\x60\x4a\x36\x99\x68\x79\xca\x69\x98\xe6\xd7\x96\xb4\xb3\xbd\x31\x16\xe1\x42\x33\xe6\xdc\x84\x83\x36\xf4\xf7\x73\x16\x08\xf8\x43\xf2\x32\x74\x95\x6f\x54\xf4\x31\x83\x08\xcd\x55\x69\x98\xbc\x8f\x9a\x5b\xbb\xed\xc2\x8f\xab\x9f\x08\xe7\x5b\x1e\xe4\x45\xdf\x84\x4c\x93\xf7\x57\xce\x2f\xec\x08\x81\xa3\x3d\xee\x8e\x64\x35\xa4\x12\x8c\xf7\x52\x76\x5d\x54\x7d\x7e\xc0\xf4\xbf\x85\x98\x24\x42\x7c\x9f\x73\x7a\x53\x93\x0b\x0a\x89\x07\xd1\xc9\xb3\x02\xf5\x69\x8f\x86\xe3\xf5\x82\x13\x22\x63\x16\x7d\x25\x65\x75\x73\x3b\xbb\xd9\x82\x75\xea\xd1\x15\x2d\x28\x33\xa7\x98\xb3\xb9\xb7\x16\xc0\x6d\x75\x6b\xd2\x8b\x3f\x46\x85\x73\xff\x8d\xfd\x34\x5b\x97\x85\x6a\xba\x2c\x1f\xcd\xa4\x59\xad\x13\x9b\xfc\xf6\x88\x4d\x7e\xa9\xdc\x1c\x4d\x78\x8d\x89\x42\x38\x17\xab\xeb\x3c\x0a\x06\xd4\xc7\xec\x67\x50\x75\x74\x6e\x3b\x7b\xd3\x5e\x81\x15\x9c\x74\x6b\x9a\xd2\x7d\x39\x14\x50\xbf\xc7\x0b\x0c\x1f\xf8\xe9\x7c\xfd\x2e\x0c\x28\xb9\x11\xab\x3b\x62\xff\x6c\x04\xb9\xf8\x3c\xa5\x55\x8e\x7b\x14\xa2\xd4\xf5\x95\xbe\x7e\xb4\x34\xf2\x6a\x3a\x62\xef\xf8\x51\xf5\xb2\xc4\x2a\xe7\x4d\x1c\x8b\x36\x82\x2c\x7a\x45\x8b\x72\xce\x3d\xa6\x77\xf9\xd8\xa0\x23\x7e\x64\x64\xea\x65\x60\x5d\xf9\xf8\xa8\x53\x61\x30\x13\x3b\x48\xa4\x3a\xe0\xf4\x30\xe3\x62\x56\xc1\x07\xb2\xec\x22\xe0\x86\xb8\x13\x18\x3d\x37\x7a\x69\x59\xf0\x3b\xb9\xb0\xf0\x93\x76\x5d\x31\x65\x22\xe1\x9d\x59\xf0\xce\xcf\xe7\x7b\x7f\xf6\x50\x5d\x94\x81\xc5\x9c\x7c\xf8\xbe\x5c\x02\x64\x55\x1c\x0a\x89\x8f\x5b\x96\x72\xeb\xee\x63\x2c\xfd\xf9\x6c\xf0\xf1\xef\x57\x0a\xc1\xb3\x89\x16\xd7\xe4\x50\xe6\xad\x69\x67\x7b\xb5\xa8\xfc\x58\xb1\x46\x33\x32\x4f\x0e\x9b\x47\x26\xff\x06\xb9\x35\x83\x58\x25\xf6\xba\x70\x78\xcb\xa7\x92\x56\x59\x7e\x7f\x1a\xad\xd6\x76\xf8\x64\xe8\x72\x97\xd8\x14\x4a\x37\x1f\x87\x06\xad\x6a\x23\x18\xcb\x5e\x51\x81\x63\x1a\xfa\xc5\xf1\xb1\x1c\x40\xab\x9f\x9c\xc6\xa8\x68\xad\x5b\x8d\xb8\xa7\xd4\xf0\x8d\x2b\xd4\xef\x9b\x48\x64\xa6\xd9\xe5\xdf\xfd\x97\x7e\xe9\x1f\x6e\x8a\xef\xa8\x87\x83\x1e\xd9\x3d\x8d\xa7\x24\x95\x5f\x91\xda\xf7\x66\xe7\xaa\x72\x4f\xa6\xfc\x6e\x49\xd1\x93\x53\xac\x74\xfa\x6d\xf4\xd4\xb6\x6f\x9f\xe6\xaa\x52\x8f\x3f\xde\xdf\xa0\x44\xac\x5e\xfe\x1b\x73\x1d\xab\x5d\xb4\x07\x41\x6d\x31\xa4\x81\xc3\x75\x94\xa2\x93\x72\x43\x37\xb9\x5d\x69\x97\xf1\xcc\x85\xd1\x22\x4a\xca\x35\xea\x92\xd7\xe5\x93\xec\xcf\x66\xd3\x82\xa9\x7e\x89\x17\x54\x70\xc7\x35\x87\x8c\x2b\x87\x1e\xf6\x26\x69\x79\x82\xf9\xe8\x80\x80\xe3\x88\x34\xc9\x93\x6a\x74\x31\x4f\x52\xd9\x7a\xd4\xca\xd0\xd1\xe1\x20\x38\xe5\x2a\xa5\x14\x16\x0d\x97\x78\x86\xb2\x26\x15\xc0\x9b\x5f\x48\x0a\x04\xfb\x77\x5f\xaa\xa8\x04\x73\x1e\xd2\xd3\x97\x33\xf9\xbb\x0b\xac\x2e\x10\x9d\x8b\x2f\x6f\x69\x7a\xf1\x4d\xab\xc4\x0e\xdb\xf0\x00\x2f\x49\xdd\x0a\x2f\xa8\x90\xa9\x95\x05\x24\x29\x40\x70\x23\xc8\x45\x64\x2e\xf7\x84\xca\x4d\x50\x72\x97\x31\xf2\xb6\xed\x48\xed\x69\x53\xe0\xf1\x70\xfb\xb6\xfe\x26\x3b\x8e\xae\x11\x0f\x72\xc4\xfb\xa8\x46\xc3\x25\x0a\xc0\x67\x05\xf5\x50\xe4\xbb\xc6\x27\x6a\x91\xe2\xd2\xd8\x91\xdb\x38\xec\x08\x2b\x76\x8a\xe9\xe1\x89\x11\xa0\xf9\x55\xe7\xb6\x5d\x67\xb7\x55\x68\xb8\xec\xfe\x2e\xa0\x2e\x0c\xf4\xbc\xd9\x51\xdf\x6d\xe7\x29\x03\xc0\x35\x08\x2c\x7d\x4f\x14\x06\x6d\x79\x55\x57\xb0\x3c\xe5\x30\x7d\xe7\x45\xd0\x7b\x17\x12\x3b\x92\x25\x30\x78\x0f\x13\xb1\xf7\xe7\xb3\x0e\xae\x68\xea\x88\x6e\x90\xc0\x53\xfb\x4f\x77\x58\xa5\xf2\x55\x01\xfd\x55\x3a\x80\x5f\xed\xcb\xd9\x9c\xc9\x7a\xa3\xc0\xad\x1d\x46\x1b\xe7\x29\xee\x02\x89\x3a\xe1\x00\xdc\xb4\xed\xe9\x5e\x67\x63\xfc\xbb\xf0\x75\xd9\x2f\x0f\x5b\xac\x0a\xc1\x8f\xac\x43\x2e\xe3\x10\xba\x7f\x0a\x33\x63\x1e\xca\xda\xbc\x75\x78\xcb\x3a\x44\x73\xc5\x5b\x78\x5d\xd7\x39\x33\xc1\xfa\xf8\xb2\xaf\xe6\x02\xda\x1b\x87\xf6\x25\x50\x83\x63\xfc\x7a\x7f\xe7\xe5\xf2\x21\x8d\x96\xfb\x14\xc9\xbf\x02\xc8\xc7\xe6\xc5\x17\xa9\x16\x43\x58\xc5\x9f\x56\x9c\x74\x6a\x94\x2b\xff\xfb\x85\x24\xbe\xf1\xcc\x07\xd1\x61\x7b\x81\xe2\xb6\x8f\x3e\x7b\xe4\x79\xc7\x1f\xe0\x77\xc2\xde\xd1\x20\xe7\x7a\xf6\xd7\x47\xfa\x02\x9b\x93\x3f\xfb\x6f\x2d\xa5\xc1\x5e\xea\x54\xb8\xeb\xe4\x04\xd9\xb4\x5f\x08\x0d\xf1\xfc\x74\x19\xfa\x61\xd5\x50\xdc\x0f\xf1\xf6\x44\x00\x0a\x79\x44\xb5\xac\xcc\x74\x8f\x9c\xc6\x14\xf8\x12\xf9\xa9\x23\xbf\x49\x76\x49\xc9\x0e\x3f\x45\xa8\xb9\x28\x16\x6a\xe0\xd9\xe9\x1a\x03\x85\x68\x94\x29\xb4\x62\x9e\xf9\x38\xd8\x08\x21\x1c\x75\x6a\x20\x7b\xda\x33\x2a\xe4\x5c\x35\xb7\xc6\x67\xa5\xa5\xc8\xee\x97\x9e\x88\xeb\x9d\x8b\x34\x32\xbb\x3e\x2b\xae\xf9\x72\xd7\x54\x51\x76\xd7\x3f\xea\xb6\x5e\xce\x4d\xac\x21\x5b\xe1\x3e\xef\x7b\x51\x08\x0b\xf1\xdb\x5d\x6a\x73\x2e\xa8\x1e\x53\xc1\x81\xe6\xf8\x47\x00\x5a\x89\xf5\x5a\xb2\x17\x03\x01\x73\xaf\x14\xd8\xb0\xf9\xc2\xc4\x41\xbe\x05\xf9\xf4\x5f\xf6\xaf\xe7\x78\x53\xae\x67\x4f\x8e\x42\x2b\x2e\xb2\x3b\xc3\x3c\x3f\x9d\xed\xbb\xa7\x64\xee\x94\x8f\x9c\x71\x85\xf5\x5f\xf6\x6f\xd8\xbd\xca\xa5\xe0\x92\x0b\x6f\xaf\xc5\x92\x2e\xec\x08\xaa\x13\x77\xc7\x5c\x68\x87\xea\x0d\xcf\xea\x8d\x46\xf2\xf7\x50\xfe\x1b\xc3\xed\xf3\xa2\xb3\xc1\x17\x57\x8b\x86\xbd\xa7\xe2\x50\xc8\x60\x3c\x54\x1c\x09\xa3\x2b\xe2\xa3\x84\x6e\xf7\xb6\xac\xdd\xb9\xc8\xee\x3c\x5d\xaa\x5a\xfb\xcd\x59\x97\x41\x1a\x76\x1b\xea\xd8\x7b\xd3\xd3\x44\x2d\xe3\x6a\x11\x95\xf1\x00\x16\x49\x7a\xb2\x05\x43\x7c\xb6\x25\xf6\x0b\xe0\x63\xa9\x90\x96\xcd\x12\x87\xa1\x96\x3c\xab\xa0\xcd\x86\xbd\xba\xf7\xf7\xb5\x5f\xb4\x57\x46\x69\x04\x1e\x1e\xd5\x8f\x5d\xd4\xfb\x02\xf6\xe9\xd6\xfb\xc3\xed\xf3\x9a\xdc\x49\x88\xbb\x3b\xff\x64\x5a\x21\x8a\x0f\xa9\x1a\x29\x8e\xfb\x02\xc8\xf9\x02\xc0\xc1\x67\x9d\x8b\x6f\xc3\xcc\xfe\x3c\xae\x3e\x0e\xb3\xaf\xed\x1e\x66\xce\x88\xf1\x8b\x4a\xe9\xb2\x86\x09\xdf\x1a\x00\xb5\x89\x36\xcc\xdb\x8f\xd8\x21\xee\xbb\x2e\x7d\x51\xb0\xe9\xec\x62\xf1\x6f\x61\x8d\x91\x9a\x24\x47\xe3\x36\x6f\xd8\x1c\xbf\xa8\xc3\xeb\x23\xf9\xc5\xce\xb0\x92\x0c\xff\x60\x7f\x8b\x96\x02\x2a\x37\x5e\x34\xfc\xf2\x50\x0b\x7b\x2b\xc1\xc4\x76\x96\xc4\x71\x33\xb9\xbd\x31\xab\xa1\x3b\x44\xc2\x4b\x11\x19\xb4\xe3\xf0\xe4\x1f\x25\x0d\x7f\xdd\x61\x57\xb7\x7c\x58\xfd\x7b\x6c\x01\x96\xed\xab\x8e\x1b\x57\x57\x9d\xad\x33\xb2\x22\x14\x82\x98\x00\x51\x2f\xf9\xd0\x45\xd1\x1a\xb7\x1a\x4d\x11\x8d\xd3\x93\x08\x6d\xf9\x4c\xc9\x52\xf9\xcc\x35\xd6\xb5\xae\xf0\x9a\x5b\x64\xcf\xbe\x37\x7d\x66\x0b\x2e\xa8\x71\xab\xb9\xaa\xbe\xb5\x73\xe8\xbd\xb0\x14\x04\x11\x57\xfb\x7a\x0d\x54\x3b\x8d\x98\x59\xa8\xd6\x76\xce\x60\x02\x10\x5b\x0e\xf5\xc7\x85\x77\x25\x4b\xc5\x58\x32\x87\x3b\x62\x0d\x6f\x5c\xa9\xd3\x51\xd7\x8d\x0d\xd8\xa3\xe5\x1d\x08\xb3\x19\x56\x94\xf3\xff\x2f\xac\x0d\x03\x15\x60\xa0\x09\x73\x2d\x44\x07\x19\x8c\xc4\x06\x3f\xbe\xbc\x3e\xc9\xf4\x6c\x39\xbf\xca\xdc\x42\x1a\xf3\x78\xfe\x8d\xb7\x58\x46\x66\x5c\xdc\xe7\x8e\xf7\x52\xda\x16\xc1\x5a\x26\xfe\xbe\xb6\xce\x5a\x2a\x5f\x88\x0f\xd9\x41\x1b\xc0\xc2\xc0\xc8\x27\xa1\x1a\x33\x63\x8f\xe2\xca\xce\xf6\x3d\x54\x57\x43\x4e\x93\x6c\x4a\x47\x5e\xb0\x24\x4e\xd6\xea\xf8\xb2\x16\x9c\x50\x4b\x7e\xa3\x3e\x69\x19\x91\xf0\x09\x08\xf0\x23\xc9\xe6\x91\xde\x7f\xf7\xa4\x36\x7d\x70\xf1\xb9\xdf\x28\x6c\x76\x23\xc2\xca\xb6\x77\x54\xd3\xfa\xf8\xd7\x69\x46\x33\xed\xab\x17\xac\x9b\xb5\xbf\x39\x01\xbd\xa5\x51\x01\x28\x84\xff\x26\xc9\x7e\x3d\x70\x5c\x8d\x1b\xcd\x38\x2f\x93\xcd\x53\x4f\x93\x73\x2b\xfe\xf9\xbb\x20\xc6\x9f\xd3\xf9\xd6\x7f\x5e\x6f\x3b\xdb\x05\xd7\x17\xd4\x6b\xdd\xf5\x4e\x97\x73\xd2\x5a\x4b\xf4\x4f\x46\x4a\x8d\xd8\xa9\xb9\x3d\xd2\x0e\x14\x79\x10\x67\xee\xd5\xab\x97\x70\x70\xbb\x36\x95\xb3\xa5\x68\xea\xf7\xed\xdd\x96\xdb\xf7\x3a\x95\x65\x8a\x67\x8a\x45\x80\x1b\x1d\x99\x44\xa1\x61\x8d\xd3\xe7\xbd\xfc\x63\x5f\xb3\x5b\x08\xeb\xc0\x97\xca\x76\xcf\x56\xf7\x57\x6c\x62\x18\xfb\x2f\x3f\x0a\x4f\x04\x6c\x49\x64\xd1\x8e\xbb\x94\x94\xe4\x21\x54\xc0\x29\xe1\x71\xbd\x9f\xd1\xf0\x08\x50\x89\x4d\xb9\x0d\x54\x8a\x61\x1e\x58\x16\x97\x7d\x54\x75\x05\xde\x48\x50\x50\xfa\xab\x17\x71\x4b\xcb\x01\xd7\xc0\xef\xaf\x55\xd0\xec\xd1\x71\x1e\x75\x65\xa1\x29\xa2\x57\xc3\x97\x3c\x48\x37\xb2\x88\xfa\xbc\x6a\xe6\x40\x58\xfe\xa5\xac\x79\xfa\x84\x3f\xf3\x45\xda\xda\x5a\x9c\x53\x01\xf6\xd7\x0a\x83\xb7\x72\xae\x54\xdd\xc6\xda\x4f\x19\x4d\xd1\xdc\x8a\xca\x0b\x16\x08\x98\x51\x83\x82\xef\xab\xe1\xe6\x24\xbc\x12\x9b\x70\x1b\xa8\x7c\xa5\x16\x4d\x90\x39\x60\x50\x83\xb3\xae\xd9\x73\x80\xce\xed\x61\xcf\x01\x63\x23\x4a\x89\xc8\xb1\xae\xc2\xc0\xdb\x0d\xca\xff\x5d\x61\x2b\x43\x01\xfc\x34\xc2\xff\x60\xcc\x44\xdb\x4e\x8f\x6d\xe2\x38\x3b\xf6\xe1\x2e\xa3\x12\xcd\xab\x2c\x74\x35\xce\xed\xa5\x0d\xad\x9b\xfd\xb7\xaa\xa2\x03\x3a\x7f\x25\xfd\xbf\xfa\xff\x52\x59\x48\xab\x03\xaf\xaf\x32\xb0\xfa\xc5\x45\x7d\xbb\x6c\xf9\x55\x9f\x34\x44\x69\x0e\x6a\x06\xc4\x2c\x52\xc4\xea\x20\x05\x76\x09\xaa\xcb\x67\x84\x4f\x2c\xc7\x30\x8b\xc1\x19\x41\x41\xc0\xf8\x07\x42\x0a\xf8\x2e\xa5\x31\xef\xac\x1d\xc9\x8f\x79\xd3\xd8\xa7\xfc\x5f\xdf\x5a\x23\x31\x58\xee\x61\xc8\x34\x89\x77\x19\x49\x16\xed\xf8\x62\x6b\x8d\x12\x82\x01\xc0\xee\x14\xdf\xa3\xfb\xa8\xa9\xc3\x5f\xdc\x1d\xb9\xb6\x12\xc7\x88\xd7\x41\x22\xb8\xde\xe2\x16\x48\x0a\x4e\xf1\x33\x0d\xb3\xe1\x09\xd3\x10\xc1\x5e\x02\xe7\x2e\x41\x7c\xec\x5d\xe6\xd6\x5c\x32\x3e\x46\xef\xbf\x49\xa3\xba\x49\x53\xa3\xf1\x45\x01\x5c\xc5\x2b\xf1\xda\xb0\xce\xe1\xfa\xa8\x5f\x4e\xfb\x02\x40\x36\x9e\xcd\x88\x0b\xaa\x27\x13\xcd\xaf\x12\x95\x02\xdb\xfc\xe4\xf3\x93\x0a\x49\x30\xe9\x92\x02\x32\x80\x22\x00\xd0\x00\xbe\x6b\xb2\x93\x2f\x1b\x3f\x67\xe7\x7b\x5a\x7b\x5c\x17\x2d\xf1\xe5\x31\x6b\x90\xc0\x57\xc7\x0d\xb4\xe3\x1e\xfa\xb3\x95\x89\x65\x5a\x79\x00\xe5\xe0\xfd\x8b\x31\xee\x85\x10\x45\xd7\xa8\x16\xb6\xe0\x16\xee\x87\x87\xbc\x52\x67\xbc\x50\x08\xf8\x8f\x41\x22\x03\x14\x73\x89\x13\x00\xae\x33\x47\x53\x4d\x92\x77\x04\x33\xa9\xd1\x62\xdd\x5d\x13\x3f\x1d\xd2\x89\x9c\x2a\x58\x78\x23\x60\x6a\xc6\x40\x07\x2f\xe9\x01\x33\xb2\x49\x88\x8f\x65\x68\x88\x6f\x54\xc3\xe5\xf7\x45\x5d\x91\x42\x2a\xe7\x93\x57\xbf\xb3\xfa\x85\xc7\xc5\xf0\x1f\xe6\xf5\xc9\xbe\x1e\xb6\x53\x92\x93\xf5\xfc\x65\x5c\xa5\x4c\x3c\xba\x0e\x96\xc6\x11\x4e\xaf\x32\x69\x35\xeb\x5b\xd0\x79\x3d\x81\xf7\x44\x11\xa9\xc6\xdf\x41\x40\x62\x25\xa1\xb0\xea\xbb\xf4\xdc\xc7\x08\x72\xff\xd2\x1b\x57\x60\xba\xff\xdb\xf8\xe9\x1d\x50\x4f\x8c\x95\x14\x74\xfa\x57\x70\x49\x7c\xbc\x02\x80\x23\x62\x4c\xcd\x68\x99\xa2\xeb\x3c\xea\xe0\xbf\x70\xda\xf1\x79\x23\xc1\x91\xce\x15\x21\x56\xa7\xd4\x9e\xc8\xb3\x59\xca\xa8\x54\x27\x61\xe0\x8e\x27\x89\x2f\xbe\x69\x20\xed\x85\xb0\xf7\x9f\xe3\xbe\x6e\xad\x84\xb2\xd2\xf6\x1d\x43\xa9\x69\x25\x53\x37\xd7\xcd\x2e\x0c\x27\xf0\x7a\x63\x54\x10\x0a\xe1\xe7\xf4\xf1\x49\x31\x02\x43\x9b\x84\xaf\xf5\x48\x48\xa2\x14\xc9\xfe\x1f\x12\xce\x2a\x2a\xea\xf7\xeb\xe2\xdf\x19\xba\x07\x04\x06\x74\x90\x6e\x49\x05\x06\x90\x16\x91\xee\xee\x10\x41\x90\x54\x69\x18\xe9\x90\xee\x6e\x45\x5a\x42\x9a\xa1\x1b\xe9\xee\x46\xba\x7b\x98\x77\xfd\xfe\xef\xc5\x73\xf7\x5c\x9c\x75\xd6\x3e\xeb\xb3\xf6\xc5\xde\x6f\x38\x41\xaf\xd7\x3f\x3c\x22\x85\xff\xdc\x1f\xc6\x72\x02\x62\x9f\x1f\xe3\x01\x49\x15\x3d\x26\x71\x43\xf5\xac\x78\xea\xbf\xc4\xf7\x0c\x34\xd8\xe1\x0d\xd5\x89\x35\xc7\xf6\xac\x07\xca\xb3\xd0\x47\xf3\x69\xbf\xa2\x67\x0a\x74\x10\x5c\x96\xd4\x98\x3f\xed\xab\x5e\x47\xd0\xb3\x4c\x4c\x09\xcc\xc7\x23\xba\xe8\x5e\x9d\x13\xaf\xef\xfe\x38\x6d\xc7\xdb\xb6\x8d\xe8\x6a\x01\xe1\x74\xbe\x42\xc5\xd0\x68\xa5\x94\x75\x49\x2d\x8a\xc6\xea\xb4\xdf\x47\x5a\x5a\x06\x81\x36\xfb\x12\x35\xdb\xe8\xfa\x95\x04\xf0\xb7\x55\x77\xc8\x09\x36\x50\x83\x6f\x8b\x0c\xa1\xb3\x81\xbf\x6d\xf7\x72\xe7\xbe\x9a\xc5\xee\x24\x2b\x6f\x17\x9a\x70\x44\x29\xf2\xcb\xce\x4b\xcb\x0b\xff\x5a\xd8\xbc\x88\xa9\x18\xc9\x5d\xc5\xb5\xe1\x3e\x5a\x34\x55\x35\x2c\x19\x6d\x59\x2a\xa8\x7c\xc4\x02\xb7\xff\xee\xe1\x89\xf1\x3a\xc1\xbf\xa8\x52\x0d\x7e\x8c\x82\x3c\x94\xc1\x7e\x81\x21\xeb\x8f\xd7\x23\x41\x0e\x8d\xe8\x2f\x21\x5d\xdb\x9c\x03\xcc\xa9\x91\x1f\x0e\x91\xf4\x13\x1d\x06\xf3\x8d\x99\x33\x4b\x62\x36\x99\x17\xac\x16\x68\xf0\x37\xc9\xd1\x6f\xb8\xef\x81\xd5\x18\xec\xb8\x59\xcd\x7c\xea\x1f\x38\x74\xa5\xd7\x48\x4c\xe0\x2c\x81\xfe\x3d\x7f\xf0\x67\x3c\x67\xba\xce\x56\xc9\x10\xc4\xce\x97\xeb\xb1\xf8\xef\x97\xb8\x06\x5e\x6a\x04\xff\x21\x00\x97\x58\x32\xe1\x84\x98\x0d\x5b\xba\x8f\x36\xce\x9c\x0d\x30\x37\x41\x58\xdf\x66\x77\xc5\x34\x6a\x69\xa9\xee\x09\x8a\x0b\x1c\x44\xb8\x52\xbd\x08\x4b\x14\xd2\xbc\x5a\x3a\x0c\x6c\x21\x2a\xa3\x41\x07\xfe\x47\x28\x4c\x1f\xc9\x83\x44\xd4\x5a\xdf\x53\xd0\xe5\xec\x83\x9c\x86\x71\x29\x4f\x42\xe2\x0e\x73\xf0\x04\x6f\xf0\x12\x7a\x80\x63\xc9\x33\x8e\xef\xd8\x75\xb2\x7a\xdf\x54\xef\xbf\xb1\xe8\xe0\x2e\xc1\xa9\xe6\xb4\x43\x8f\xc9\x80\x64\x56\xf9\x80\x66\xea\xbc\xbb\x35\x5a\x73\xe8\xb0\x25\xe5\xdc\xe6\xe5\x9c\xc6\x1d\xf4\x3d\x2a\x22\xeb\xbf\x8f\xbc\x1d\x98\x32\x44\x38\xe6\xb0\xab\x8b\x7c\xca\xaa\xf6\x1f\xc4\x5c\xd3\xc8\xae\x98\x46\x23\x2d\xd5\x7f\xc4\xe2\x41\x3d\xa3\x77\x42\xcc\x3a\xb3\x4a\x73\xd7\xca\xa9\xda\x39\x5f\x2e\x0a\x76\xef\x58\x21\xb8\x3d\x49\x9d\xf8\x1d\xce\x10\x7f\xb1\xf2\x73\xba\x7d\x92\x24\xc1\xa8\x83\x2f\x54\x3a\xc4\x92\x7a\x18\x74\xa9\xbc\x05\x43\xc9\x89\x11\x64\x32\xec\x54\x2f\xb1\x10\x8c\x66\xcc\x91\x0e\xa5\xd6\xa5\xbd\xa3\x69\xb7\xc7\xb4\x62\xec\x7b\xff\xad\xba\x6f\x42\x76\xf5\xda\x20\x44\x82\x52\x9a\xd7\xa2\x25\xf3\x8e\x38\xb0\x2c\x1b\xc7\x77\x59\xa3\x03\x5e\x3c\xb3\xf6\x8e\x1c\x11\x1a\xf1\xec\xe0\x91\xb5\x50\x29\x4e\x21\x75\x93\x1a\xd3\xe6\x60\x11\x4d\x6c\xdd\xa3\xd2\xd1\x8a\xcc\xac\x74\xcb\x11\xb8\xa2\x85\x49\x92\xce\x87\x6b\xfc\xe7\x08\xe4\x03\x47\x8f\x6b\x41\xaa\x27\x6e\xf3\x69\x27\xdf\xf3\x20\x84\xfd\xca\xa2\x7d\x96\x83\x77\xe0\x91\xce\xe6\x26\xae\x19\x73\xf2\xf2\x76\x75\xfc\xf9\xca\x71\x64\xd2\x0d\xda\x42\xde\x78\x94\xa6\xca\xff\x66\xb4\x97\x9c\x96\x4a\xc6\xda\xcb\xce\x76\xff\x79\x0d\x01\x3a\x67\x1f\x39\x8c\x41\x07\xc1\xc5\xec\xcc\x0b\xb8\x5c\x90\x3f\xf9\x52\xed\x9f\x2f\x72\x17\x19\x08\x39\xa0\xbb\x09\x18\x11\x1d\x66\xc0\x35\x14\x3d\x76\xaa\x31\x0a\x31\x37\xc5\x40\xac\x05\x03\xf3\x3f\xd0\x5c\x09\x89\xae\xfc\xb2\x9a\xbc\xd6\x47\x7e\xe1\x0d\x9a\xa3\x4b\xbd\xaa\xfc\xd3\x1c\x35\x86\x8f\xed\xa7\xf1\x1d\x28\x1e\x08\xee\x5b\x7f\x6e\x7f\x5e\x05\xaa\x3b\xbf\x19\xd5\x94\x4b\x51\x0d\xe9\xca\x90\xcb\x60\x65\x5a\x42\x5f\x9e\x7a\x5f\xb4\x41\x27\x0b\xc9\xd7\x0c\xe9\x9b\xed\x74\xc7\x3c\xf3\xfe\x6f\xdf\x0c\xe7\x49\xb7\xfc\x3e\xe1\x21\x1a\x03\x2e\x7f\xa5\x7d\xf6\x85\xc9\xa1\x45\x02\x75\x85\x34\xae\x96\xd2\xa4\x5b\x36\x25\xd4\xff\xdb\xf4\xdb\x24\xa1\x15\xef\x27\xb7\x57\xdb\x0e\xcb\xfa\x78\x4f\xdf\x1a\x6c\xa8\x89\xc0\x1e\x57\xce\x1f\x93\x6e\x88\x8f\x6b\x51\x1d\x17\xbf\xaa\x0e\x49\xaa\xac\x57\x92\xcd\x0b\x77\xdb\x2f\x39\x80\x1c\x30\x62\x5b\xf4\x33\x10\x2a\xf0\x1c\x15\x82\x76\x9b\xec\x59\x33\x26\x41\x0b\xe0\x96\xd3\xd2\x4c\xdd\x75\x52\x7d\xc5\xcd\xf1\x68\xdf\xe1\x18\xf8\xbc\xc8\xf2\xa1\xa7\xf2\x21\x7a\xc6\xaa\xf1\xde\x6a\xc0\x1b\xf7\x70\xda\x4f\x6b\x46\x02\x80\x4c\x23\x25\xe9\xe0\x9e\x60\xff\x15\x2f\x42\x83\xa6\x76\x0c\xa9\xc0\x93\x8f\x90\x57\x0e\x7a\x5d\xa4\x35\x71\x62\xd1\x6d\x92\x2d\x20\x52\x3b\xe2\xf2\x88\x37\xb0\x9b\x37\x52\xca\x59\xcb\x13\x3b\x9a\x2c\xa9\xda\xc6\x19\x2c\x84\xb6\x29\x01\x6f\xf8\xf4\x92\xba\xc2\x05\x52\xb7\x23\x44\x86\x1d\x0b\x4a\x1f\x74\xc6\xcb\x1b\x52\xee\xaf\x7d\xd1\xed\x4f\xa3\x97\xeb\x37\x72\x83\x31\xa3\x14\x66\xbf\xee\x3d\xb2\x82\x10\xcd\x5a\x5a\xaa\x45\xdc\x59\x32\x72\xb3\x19\x45\xb4\xaf\x16\xd1\xaa\x4f\x33\xd1\xcd\x55\x12\x23\x97\xb4\x35\x8f\xfa\x1b\x23\x81\xab\x50\x5c\x4c\x39\x05\x1c\x47\xfb\x94\xad\x15\x16\x08\x73\x70\x9f\xb7\x7e\xd8\x70\x62\xa2\xd6\x7c\xc2\x78\x5a\x84\x25\x0c\x3e\x1b\x98\x9e\xd4\xa5\x24\x63\xfe\x56\xca\xb5\x64\xdf\xb6\xc4\x42\x7e\xa8\xc4\x13\xff\x89\x6f\x16\xff\x2a\x9e\x54\xf4\xb7\xfa\x2e\xaf\x8b\xcf\x35\xee\x80\x16\x94\xf3\x83\xeb\xdd\xc5\x2f\xb1\xc3\xc5\x04\x7a\xe3\xef\x73\x9b\x79\xd2\x63\xec\x43\x63\xe4\xeb\x39\xf9\x8d\xef\xa3\x01\x04\x3f\x26\x36\x8e\x89\x39\xd5\x00\xb1\x4a\xa9\x36\x85\xa7\x0f\xa7\xad\x29\xda\xa5\xfc\xca\x4c\xd4\x56\xd7\x68\x08\x95\x68\x56\x73\xea\x77\x97\x88\x48\xb2\x73\x4a\xa0\xff\x66\xee\x0e\x48\x3f\x01\x3e\x14\x9f\x09\x87\xe5\x6e\x92\x66\xa9\x9a\x3a\xf1\x56\x7c\x62\x3e\xc4\x21\x5e\xc3\x7e\xe3\x05\x3c\x38\x56\xfd\xe7\xe0\x57\xdf\xfd\xb3\x00\xe1\x60\xb5\xee\x54\x5d\x61\x9a\x5f\xd9\xab\x78\x09\x1a\xc6\x57\x14\x71\x8b\xb3\x6a\xd6\x84\xc2\x99\x20\x74\x14\x00\x02\x03\x0e\x73\x7e\x06\xd8\x87\x7b\xfc\x4d\x98\xcd\xac\x52\x70\xfc\x54\x78\x20\x1a\xfd\x63\x68\xb8\xb6\x46\x3b\xf8\x4e\x7c\x17\xea\xbf\xbc\x56\x17\x98\x2e\x87\x0c\x34\xc3\x59\x5b\x61\xb9\x00\x49\xea\x18\x95\x8a\x23\xa9\x4d\x1b\x2b\x9f\xdc\xeb\xcc\x33\xad\xc4\xb1\x8b\x2b\x52\x59\x91\xca\xe1\x65\x8f\x3a\x7e\x73\xe7\x51\xfd\x56\x02\xa8\x0c\xb5\xaf\x8c\x4c\x17\x44\x56\x0b\xa3\xb6\x4d\x16\x6f\xb7\x3e\x44\x24\x5e\x3f\xb7\x1a\x16\x0b\x6f\x48\x26\x3f\x7a\x65\x12\x72\x67\x52\xd1\xcd\xe8\xa2\xa5\xd0\x26\xb9\x41\xfc\x2d\xe2\xd8\xf8\x33\xf5\xde\x29\x29\x0d\x40\x06\xc4\x0c\x50\x8d\x77\xd0\x7a\xf3\x9d\xaf\xa8\xce\x6c\x0a\x41\x70\x3c\x46\x23\x8e\xa0\x30\x04\xf4\xf3\x75\xfb\x48\xf6\xd2\x3d\xf2\x15\x07\x70\xf5\xff\x04\x2c\x02\x10\x3f\xc9\xdd\x07\x24\xcf\xdf\x42\x8f\xfc\xa4\x90\x70\xa5\x07\xb5\x45\xbf\xde\x10\xc8\x1a\xed\x41\xc7\x1e\xd4\x3f\xae\x2b\x86\x5f\x57\x87\x2c\xf9\xcf\x3a\x74\x7b\xf0\xac\xc4\x39\xbd\x39\xaf\xfe\x86\x7a\x68\xec\xd5\x7a\x4e\xde\xdd\x31\x96\x58\x6d\xf3\x69\xf4\x20\xa9\x1e\xec\x14\xff\x7f\xf9\xe5\x0f\xa2\x78\x3b\x48\xef\x56\xbd\xdb\x4d\xe7\x1e\x8e\x9b\x40\x33\x35\x6a\x5c\x9d\x77\xce\x88\x9f\x4d\xaa\x32\x81\x7e\x7a\xcd\xa6\xd8\x80\xfe\x97\xdf\x77\x43\x51\xad\x27\x8b\x5f\x1f\x22\xed\xb5\x1f\x63\x15\xc6\x28\x86\xd4\x9e\xd2\x2c\xbf\xdb\x86\x7d\x53\x26\x5d\x29\x63\xff\x5f\x86\x91\x56\xc2\x84\xdb\x74\xa4\x77\x31\xdc\x10\x89\x6d\x6e\xb2\xde\x5a\x8e\x84\x46\x29\x80\x4e\x4c\xdd\x79\x7e\x33\x60\x7f\xc1\xa2\x43\x3d\x58\x3f\x04\xcd\x3c\x2f\x40\xfb\x2c\xb2\xec\xe0\xf8\xa8\xa0\x02\x19\x8e\x5e\x67\x55\xf9\xde\xd7\x41\x5d\xd1\x24\x86\x16\x0b\x40\x4c\x48\x23\x58\x0d\x1b\xc1\x31\x49\x01\xf8\xd1\x22\xac\x87\xe4\xec\xdb\xfc\x03\x5c\xb4\xc2\xa4\xd7\x97\x33\x60\x8d\xf5\xc8\x85\xb8\x07\x8d\x1f\xe4\x4d\x55\x59\x70\x3f\xee\x9f\x68\xa9\x0e\x86\x15\x46\x42\x2e\x7a\xe2\x79\x7a\x2c\xfa\x1d\xdc\x17\xe1\x37\x7f\x72\x2b\xdd\xea\xc8\xae\x56\xfc\x5a\xf5\x6e\xdd\x05\x2c\xb7\x8c\x87\x02\x94\xc7\x19\x58\x0b\x9e\x6f\xfb\x1e\x30\x3c\xa0\xe4\x23\x15\x7a\x62\xc8\x2a\xc4\x55\x5a\xdc\x39\x2a\x50\x0d\x47\xab\x15\x96\xc1\xfc\xaa\xf4\x37\x0b\x3c\x60\xf0\x60\xfb\x83\xba\xba\x1b\x1a\x69\xfa\x42\xeb\x71\x23\xf2\x76\xbe\x98\x8b\x0f\x69\xbf\x7b\x7f\xe7\xb5\xc5\x26\x0d\xa8\xcb\x43\x87\x85\x2c\x5a\x4b\x33\xe2\xd8\xff\x76\x50\xe1\xf9\x01\x80\x42\x7d\x43\x66\xcd\xf1\x02\x59\x89\x94\xdd\x9c\xa9\xd6\x82\x29\x00\x79\x56\x9a\x23\x94\x95\xf7\xcc\x70\x76\xa4\x69\xc9\x55\xfd\xe5\x6c\x37\x4a\xe4\xc7\xc5\xea\xa3\x83\x75\x13\x27\xf7\x74\xd6\xdc\x14\x94\xfb\x53\x0f\xf2\xa5\x71\x22\x5a\xaf\xf0\x86\x6c\x3d\xa7\x73\xe2\xb0\x1f\xd7\x79\x94\x29\x4a\x85\x49\xa9\xaa\x68\x61\x5e\xa8\x4a\xe0\xdf\x71\x6b\x46\x09\x4a\x95\xb6\x42\xeb\x68\x21\x90\xba\xf2\x98\xf8\x3a\xdb\x4e\xb1\xef\x22\xe7\xe8\x84\xbb\x63\xc5\xb4\x3f\xa7\x9c\x7c\xf2\x80\x53\x55\x63\x45\xff\x05\xbb\x84\xb6\xd1\x83\xb7\x04\x96\xdf\x39\x83\x93\x1a\x45\x78\x56\x6a\xb9\x82\xdf\x65\xe2\xd4\x26\xfb\x12\x3d\x7a\xc7\x8e\x75\xc0\x74\x3e\xf0\x36\x9e\x03\x55\x33\x14\x46\xcd\x64\xa5\xc6\x03\x5b\x7f\xbc\x26\xf0\x19\x21\xc8\xb1\x24\x3e\x85\xce\xc4\xaf\xfc\x4d\x19\x27\x48\xc9\xff\xed\x82\xd6\xa5\x68\xbc\x3d\x55\xb8\x4d\x66\x8e\x3c\x92\x5c\x5a\xbf\x2e\xf5\x75\xc4\x55\x2b\x22\x73\x3a\x9c\xaf\x35\xcf\x6e\x35\x7b\xe3\x71\x3e\x2c\x34\x36\x55\xa2\xfb\xdf\x6b\x62\xb6\x0f\x12\x93\xd8\xbd\x16\x11\x90\xb4\x5d\xcf\x1c\x99\x2a\xd1\x8d\xad\x77\xeb\x0d\xe0\xee\x58\x79\xf2\xc0\x01\x14\xe1\x77\xff\xae\x10\x53\x31\x6e\xad\xca\x72\x7f\x69\xd7\xe7\x57\xae\xe6\x4d\x39\x75\xbd\xeb\x4b\x6d\x85\x0b\x82\x0c\xa9\x1b\x7c\xe9\x77\x9d\x10\xb8\xed\xd2\x52\xe6\x20\xff\x52\xa7\xa6\x49\x75\x89\xce\x3a\xf6\x88\x00\x0e\x2e\x97\xf7\xd5\x6f\x4a\x02\xe9\x51\xa9\x4b\xb3\xeb\x33\xcf\x0b\xd1\x9f\x5b\xf3\x1e\x9e\x05\xad\x7f\x18\x05\xb6\xcc\x51\x4f\xe9\xb4\x73\x6f\x86\xb4\x94\x0d\x14\x66\xad\xec\x5e\xda\x1e\x37\x04\xd6\x31\x4b\x61\x53\x6f\xee\x38\x50\x75\x22\x0c\x12\xbe\xd5\xb0\x33\xaf\x53\xea\xf7\x34\x67\xa9\xf1\x73\x3b\x75\xd9\xd2\x6f\x8b\xff\xed\xce\x84\xd5\x08\x3d\xe2\xed\xdf\xf3\x94\xb2\x49\xb1\x19\x1b\x54\x7e\xdd\xd7\xa3\xbc\x6c\x52\x7f\xf3\xc5\x8e\x40\x3c\xaf\x72\x85\x26\xe8\xe8\xbd\x3f\xc6\x13\x96\x07\x8a\xff\xe5\x4f\xfd\x0e\xd5\xf7\xb6\x5c\x9b\xee\x4c\xbb\x61\x67\x22\xeb\xbc\xa3\x3e\x54\xae\xa1\xbd\x9f\xce\x5a\x5c\x85\x7d\xf8\x1c\xe2\xd1\xa7\x2d\x9a\x85\xd9\x15\x3f\xcb\x60\x81\x6c\x59\x6a\x42\x59\xaf\x89\xd7\xf1\x76\x7f\x5c\xd8\x70\x62\x7d\x39\x4a\x64\xed\xa7\x55\xd5\xdd\x42\xd2\x11\xbe\x5f\x0d\x6d\x1e\x09\x0d\xa0\xac\xee\xaf\xcb\x9a\x1b\xb3\x4c\x69\x47\x9f\x26\xef\x10\x1c\xab\x0f\x75\x36\x7f\x59\xfe\x70\x92\x63\x27\x01\x91\xa3\x00\x87\x7e\x17\x1b\x4e\x4e\xd4\x9f\xea\x76\x0d\x25\xd1\xba\xdf\x13\x25\x0f\x68\xc9\xac\xa4\xd5\x23\xab\x68\x6f\x5d\xbd\x76\x43\x9d\x5f\xa3\xfe\x3b\xe5\x67\x62\x7f\xcc\x0e\xa7\x23\xb9\xc6\x5d\x42\xbe\xd2\x13\x43\xb8\x0f\x3a\x45\x12\xbe\xa4\xe9\xf3\x55\x75\x2a\x63\xd2\xb4\x54\x64\x51\x94\x02\x88\xb4\x9a\x77\x67\xb5\x38\xff\x1c\x33\xe6\x27\xd0\x0a\x6e\x27\x9c\x01\x4e\x7e\x72\x92\x5a\x50\x53\x13\x8e\x5f\x7e\xe7\x53\xbd\xec\x0f\xd3\x73\x1d\x2b\xc7\x3d\x99\xcd\xc7\x3b\xed\xbe\x60\xb1\x25\x53\xfa\xf7\x51\xcb\xf3\x28\x85\x68\x41\x53\x9d\x1f\xa6\x3e\x71\x77\x9d\xf6\xda\x8f\xa7\xea\xf8\x7e\x2b\x61\xfd\x8d\x32\x26\xc2\x2d\x3f\x75\x91\x55\x0a\x11\xb4\x19\x2f\x96\x02\xaf\x46\x72\xeb\xb6\xbf\xe9\x44\x13\x29\xed\x0a\x1a\xa5\xa8\x7f\xf2\x6b\x39\x52\xf8\xfd\xa1\xce\x32\x19\xaa\xb8\xf7\xcc\x52\x07\xdc\x47\x94\x7a\xe8\xd3\xaa\x87\x7a\x2f\xbe\x6d\x0f\xf6\xc7\x07\x26\x25\xeb\xd1\x58\x62\xab\x0d\xb7\xcf\x4c\xaf\xc6\x03\x99\xf5\xaa\x26\xe3\x6a\x69\x5c\xfa\x48\x57\xae\xd1\x3e\x86\xd5\xf1\x31\x8c\x1c\x56\xc0\xe3\x0e\xc3\x6b\x5e\x91\x37\xf5\x6d\x01\x49\x48\x16\x4d\x72\xbf\x43\xa9\xbb\x92\x0f\xae\xbf\x91\x61\xc2\x37\x53\xa0\x26\xa4\x0c\x3d\xec\xfd\x67\x9c\x0a\x26\xae\xaa\xea\xc4\xcf\x82\x5c\x61\x58\x21\x85\xb5\xa4\x5f\xb2\xbf\xe8\xb9\x4d\x1c\x92\x00\x9e\x1d\x0c\xbf\x1c\x97\x47\x1e\x8e\x2c\xe4\x51\x8a\xa9\xb9\xcc\x54\x1a\xcb\xd4\x60\x3a\x7e\x99\x73\xbc\x74\x88\x8c\xf5\xf5\xd5\xba\x0a\x51\x5e\x22\xb0\x6c\x7b\xa8\xda\xa9\xfe\x6a\x09\x8f\x13\xcb\xde\xc1\xcc\x56\xc6\x80\x01\xc6\x1c\xb5\xfa\xfa\x0e\x5b\xae\xad\x84\x63\x69\x51\x19\xde\x04\x93\x1a\x61\xa6\xf1\xdf\x50\x26\x39\xd4\x95\xb1\x8b\x37\x47\x0e\x17\xcf\x58\x4c\xae\x24\x4d\xda\x29\x3f\xc5\x40\x50\x59\x43\x58\xb9\x55\xdf\x09\xaa\x0e\xb0\xa8\xf6\xb3\xa8\x92\x26\xb3\xf2\x06\xc0\x2f\xa6\x3b\x6a\x34\x15\x67\x2a\xff\x3a\xb1\x59\xf8\xf8\xaf\x8d\x0d\x63\x95\x9b\xea\xab\xbe\x76\xe5\xa8\x40\xe9\xb9\x9e\x28\xf2\x76\x6d\xda\x4d\x75\x43\x75\xf0\xe7\x91\x9e\x97\xce\x67\x14\xc3\xdd\xce\xb3\x48\x1c\x31\xd9\xcb\x9c\x4f\xae\xa2\x4f\x33\x79\xca\x59\xb9\x79\x92\x26\xb3\xd9\xc8\x33\xa9\xb6\x1b\x41\x00\xaf\xdc\x69\x0d\x3d\x6a\x75\xc0\x73\x3d\x64\x42\x40\xf8\x49\xd5\x57\x97\xb6\x5a\xda\x94\x6f\xf5\xde\x0c\x46\xe9\x9f\xe8\x11\x29\xca\x17\x81\xb2\x49\x78\xcf\x2a\x1e\xd1\x30\xf8\x70\xef\x22\x6b\xb0\x52\xc9\xe8\xde\x63\xf4\xde\x3d\x09\xd0\xa1\xed\x69\x24\xbc\x0a\xc4\xf1\xee\x23\xb7\x62\xeb\x8d\xc2\x29\x6c\x94\x4a\x2a\x13\x2c\x4e\x6a\xac\xce\xc9\x9d\xdd\xb1\x35\x9f\xcb\x11\x6a\x75\x49\xc9\x66\x70\x86\x06\x74\x80\xa8\xe8\xac\x5c\x09\x29\xe5\xcc\x5c\x09\xb1\x13\xd5\x52\x07\x8a\x56\x8b\x8a\xac\xba\x9d\xfa\xdf\xc5\xc7\xc5\x76\xb1\xd4\x7c\xfd\x78\xce\x59\x25\x55\x28\x38\x3b\x57\x35\xf7\x77\xca\xb0\xa2\x7e\x26\x3a\x0b\x17\xea\x3e\x7a\x59\x91\xb9\x3c\x41\x99\xb5\x14\x85\x52\xef\x60\x70\x84\xe5\x2e\x48\xe0\x17\x08\xdf\x04\x69\x7a\x1c\xf6\x3e\x6b\xba\xba\x4b\x76\xad\xc5\x21\x3f\xaf\xbc\x6a\x8f\x0d\xd6\x22\x09\xf3\xc3\x07\x8a\x5c\x29\xde\xdf\x29\xa9\xa0\xc5\xa6\xba\xa1\x66\x6f\x44\xfe\x2a\x10\x0e\xff\xd5\xda\xa2\x35\x59\xfc\xbe\xe2\xbd\x6f\xbf\x86\x61\x73\x1c\x81\xa0\x17\x21\xbf\xbe\x40\xa3\x11\x33\xd0\x3f\xfd\x02\x65\x19\x73\xc5\x19\x53\x34\xfc\xd1\xbd\x45\xb7\x24\x00\x42\xa6\xfe\x77\x66\x25\x6d\x13\xbc\xe6\xd0\xd1\xa9\x1a\x13\xf2\x1c\x61\xa9\x18\xd2\xba\x2f\x56\x67\xc6\xcc\x9d\xfc\x44\x38\x4d\xe5\x60\x4c\xb6\xb6\x47\xc7\x2a\x3e\x9b\x85\xdb\xf4\x6d\x82\x2a\x23\xb6\x7e\x17\x7d\x24\x5c\xf5\x15\x59\xbd\x55\xd1\xce\x44\x1f\x51\x1d\xf7\xce\xa5\xd7\x38\x08\x93\x1b\xa7\x12\x44\x1f\x60\xc9\xe6\x8a\x89\x15\x65\x1e\x4d\x5a\x73\xc8\xb1\x1b\x56\xb6\x16\x62\x4d\x56\x41\xb1\x53\xc0\xf5\x32\x8c\x68\x77\x71\x70\x71\xa5\xb7\x45\x99\x14\xd2\xef\x2f\xc3\x78\xb0\xfc\xd1\x00\x2d\x1f\xc1\xc4\xe3\xc8\xb4\x9c\xc2\xbf\xb9\xd2\x09\xeb\x0e\xf1\xa9\x8a\x7c\xc2\xe2\x1c\xe1\x7d\xb8\xae\x73\xe0\x55\x42\xbd\x8f\xd6\x1f\x37\xf2\x23\xfb\x92\x02\x1e\x55\x0a\x17\x95\xac\x0d\xb8\x1a\x37\x58\x2f\x61\x8f\x68\x8e\x12\xfe\x9e\xd0\xfe\xab\xf1\x26\x75\x2b\xef\xae\xc7\x5b\xbf\x01\x99\x58\x93\x7f\xc7\xe0\x6e\x8c\x71\x9f\x06\x81\xbf\xc3\xa2\xe3\xa0\xcf\xbf\xdd\x1e\xd2\xd9\xf4\x08\xca\xb3\xa5\xaa\xe2\xdc\x46\x38\x69\x5a\x37\x1c\x06\xb6\xf4\xd3\xd7\xe4\x6b\x16\xe0\x48\x3a\x79\xef\x8e\xbb\x89\x0d\x1c\xae\x7c\x1f\x63\xc4\x76\xf1\x1c\xcc\x54\x71\x6c\x82\xd6\xe0\x7b\x65\xc1\x1f\x5e\x7f\xbd\x95\x1f\x32\x23\xe6\xcb\x92\x85\xad\x8f\x6e\xec\xd4\x79\x30\x2c\x7a\xfd\x45\xdd\x4e\xc1\x20\x75\x14\x18\x0a\x06\xa9\x87\x2c\xae\x95\xb1\xc6\x5f\x9e\x8b\x3c\x6d\xd4\x56\x8c\x1f\x39\x57\x3c\x63\x64\x0c\xb2\x1b\x9d\x5f\xe8\x38\xfe\xf7\xd1\x41\x69\x74\x7e\x02\x26\xc9\x06\x96\x7b\x5b\x81\xe7\xc4\x7a\x3e\x3f\xe0\xad\x7f\x9b\xab\x34\xd6\x51\x39\x32\x47\xb2\xc6\xc6\x67\xa8\xed\x7b\x7c\x3b\x7c\xf3\xe1\x38\x93\xc3\x67\x08\x42\xb2\xfc\x21\xab\x03\x0f\x52\xf4\x0e\xaf\x54\xf4\xd5\xf1\xda\x50\xd6\x9f\x7a\x2d\x2d\x3f\x3a\xcd\x66\xf8\x41\x2d\x76\x3b\xec\xe2\x3b\xbd\xcf\xc6\x43\xf9\xe3\xb2\xce\x38\xb7\xa4\x1d\x0f\x35\x7a\xbe\xf7\x2f\x06\x30\x6a\x8e\xe9\xd4\x13\x03\xb5\x0a\xd6\x90\x73\x22\xf6\x09\xc0\x90\x94\xff\x32\x13\x91\x66\x78\xd2\x8d\x16\xd5\x47\x03\x74\x82\x6d\x1b\x6f\x92\x6d\xed\x68\x36\x50\xbf\x19\x94\xad\x74\x33\xcf\x7f\x93\x79\xc9\x0b\xce\x0d\x76\x05\x11\x84\x9e\x62\x75\xd1\x81\x02\x6e\x9b\x19\x56\x73\x18\x88\xab\x03\x4f\xf5\x01\x77\x15\x97\x7a\xe6\xf4\x98\x99\xc1\x03\x79\xcf\x05\x54\x47\xf8\x5a\xf4\xc0\xcb\x4d\x4f\x5f\xf9\x65\x27\x8a\xcd\xe3\x55\xca\x0b\x62\xcc\xfb\x46\x8c\xd0\xca\x36\x75\x32\x2d\x7e\xc3\x40\xb3\x0e\x86\xfe\x97\xc2\xa8\xa9\x94\x80\x0a\xc2\xfb\x37\x9d\x7f\x8d\xbf\x9c\xce\x55\x0b\xa3\xe4\xdc\xac\xed\x48\xbe\x6e\xa8\x24\xa8\x6f\xe9\xc2\x03\xec\xae\x9f\x2f\x78\xfe\xcd\xe8\xff\x97\xfc\x19\xc7\x14\x36\xa5\x73\x5e\x1c\x31\xc2\x0d\x9d\xaa\x18\x4e\x4c\x14\x5d\x90\x17\xb5\xd1\xb2\xc0\x55\x47\xdc\x49\xad\x08\x25\x10\x27\xa9\x0e\xf6\xb0\x6a\x16\x30\x71\x55\xbd\x9b\xb5\xa9\xcf\xf5\x0c\x32\x3f\xda\x5c\x3f\x7a\x62\xb8\x6e\x02\x2d\x51\xc9\x44\x77\x05\xbb\x7d\xdf\x35\x9f\x4f\x5b\xe9\x5e\x19\xf7\x17\xf8\x2d\x37\x31\xa1\x9a\xc1\xf9\x9b\x01\x55\x6e\x75\x5a\x61\xd6\x93\x4c\x1a\xf0\x8a\x30\x5f\x17\x07\x87\xc8\x55\x0f\xb3\x07\x5a\x39\x68\x1a\xa3\x7c\x15\xa0\x17\xbb\x9c\x6e\xe0\xb6\xc2\x3d\x1c\xb7\xb2\xa9\xc2\x41\x02\xa3\x48\x1d\xf5\x3c\xc6\x69\x01\x4b\x45\xb7\xc5\xaa\x08\x8b\xaa\x7c\x4e\x71\x5d\x59\xc7\x36\xe5\x2e\x26\x70\xa5\xd8\x6a\xb2\x7a\xc3\x59\x0e\xc1\x61\x7e\x1f\x57\x91\xd5\xff\x0f\x5d\x09\x75\x55\x24\x3c\xad\xcc\xfd\x98\x19\x88\x34\x6d\x5f\x3e\x76\x79\xa7\x6e\xdf\xc8\x81\xa4\xe3\x7b\x25\x76\x20\xf0\xf6\x9b\x70\x11\x5e\xc4\x6b\x09\xdd\x58\xe8\x9f\xf8\xaf\xad\xce\x47\x52\xcc\x39\xc7\x1e\x82\x72\x5b\x20\x9b\x6a\x6f\xfe\xe0\x84\xc9\x4f\xaf\x43\xe6\xdc\x05\x80\x2a\x3c\x9e\x63\xa6\x03\xed\x10\x27\x82\x0e\x21\x64\xce\x2a\xf4\xd9\x32\x5f\x4e\x27\xcb\x81\xbe\x85\xb9\x4f\xdf\xd6\x66\x79\x7a\xa6\xef\x7a\x33\x8c\xf3\xf7\x4a\xec\x0b\x5f\x0a\xbe\xd6\xc9\x10\xca\x52\x14\x98\x9e\x58\x24\xaf\xd2\x9f\xdd\x94\x89\xbb\x25\x6f\x72\x96\x64\x7c\xe1\x62\xa6\x90\xfa\x6c\x70\x51\xfe\x36\xab\xcc\xd2\x8f\x96\xf0\xb8\x7a\xd5\x03\xfc\xf0\x1c\x04\x90\x92\x51\xbd\x52\x3f\xf4\xa5\x18\x6e\xff\x3d\xe1\x35\x9f\x98\x12\xc9\xd3\x6e\xb3\x68\x98\xbb\xc3\xa3\xf9\x0a\x69\xa4\x65\x7a\xe7\x5e\xe8\x1d\x4f\x8f\xeb\x99\xde\x21\x0d\x52\xdf\xf2\x1b\xc6\x6c\x9b\xf0\xba\xd3\x18\x67\x18\x21\x0d\xb6\xe8\x34\x31\x63\x7d\x05\xcd\xce\x28\xef\x67\x05\x56\x9f\x1f\xe8\xae\x04\x6a\x4b\x7f\x2f\xc7\x69\x93\xd3\x8b\x27\x73\xe4\xd3\xf8\xc3\xa2\xca\x4e\xfe\x61\x2c\xd4\xca\xf2\x2a\x9c\x7e\xc2\x48\xca\xed\x5a\xba\x46\x53\xfd\xd1\x4d\x29\xec\xdd\x1b\x7c\x2e\xaf\xa0\x9e\x1f\x05\xda\x7a\x16\x57\xb1\x3e\xc2\x0d\x8a\xe8\x77\x55\x37\xfb\xa1\xa7\x1e\x5d\xf7\xf3\xbe\xb5\x2b\x90\x2e\x33\x05\x8b\x07\x0e\xe7\x7f\xd5\xe1\xed\xad\xd9\x43\x63\xc8\x05\xc3\x24\x34\x3d\xf2\x45\x99\x06\x9e\x47\x7e\x25\x5f\x8d\x2f\x0b\x60\xd0\x02\x62\x60\xe2\xa5\xea\x48\x43\xbb\x5f\x67\xe4\x35\xc2\xb3\xca\xfa\x47\xa2\x8b\x2f\x91\x48\xdc\x02\x6b\xc2\x7f\x85\xb7\x55\x67\x24\x76\xb6\x83\xcf\x52\x36\x96\x74\xa5\xe8\x67\xb9\x40\x6a\x60\xc0\xe3\x57\x51\x96\xb6\x71\x33\x61\xfe\xfd\x1c\x18\x00\xc2\xd6\xff\xfd\x4a\xf3\x16\xfc\xa4\x30\x13\x9e\x66\x27\x59\x0f\x5e\x2d\xab\xe3\xc9\xce\x94\xc2\x5b\x29\xaf\xfd\x8b\x17\x61\x65\x15\x3e\x8e\x71\x87\xc6\x79\xab\x6d\x2e\x4a\x11\x94\x44\xbf\x78\xc9\x33\x80\x8e\xa2\x16\xb3\xa6\x17\xfa\x60\xfa\x4e\x50\xf5\xaf\x78\xcd\x48\x76\xb3\xc3\x63\xc9\x50\xe3\x3d\x32\x99\xe8\x8a\x35\xe5\xec\x49\x24\xe1\x63\xec\x72\xce\x53\xb3\x2e\x7a\x59\x98\xaf\x2c\xcf\x04\x32\x15\xf9\x01\x75\xac\x62\x22\xe4\x17\xb3\x58\xe8\x1a\x2a\x45\x78\x75\x8f\xf7\x79\x8f\x96\x37\x26\x6d\x7b\xe3\x5d\x48\x65\xfc\x0a\x7e\x52\xb5\x80\xf0\xb3\xea\xfe\x5b\x75\xa1\x7a\x08\x4e\x9e\xe8\xcd\xe2\x3f\xb1\xc3\xd7\x07\x33\x5d\xf7\x58\xe6\x6a\x54\x7f\x1e\x84\x6b\x84\x40\x1a\xeb\x82\xfa\x4c\xde\x35\x14\xb4\x00\x30\x24\x25\x6f\xb0\xe9\xdd\x13\xc3\x3f\x7a\x04\xb2\x31\x74\x93\x10\x97\x90\x9b\xc2\x2d\x2a\xc3\x91\xec\x60\xd1\x1c\xaf\xef\x46\x93\xba\x29\xa6\x35\xd9\x2a\x0e\x05\x36\xae\x1e\x27\xa0\x78\x52\x9c\x88\xe9\x1e\x04\x80\xd1\x0d\x0f\x91\xea\xb3\xa0\xdb\x96\x86\xfb\x2b\x74\x4e\xf2\x2e\x92\x99\x1b\x09\x7f\xeb\x2f\x81\xfb\x96\x90\xbf\xaa\x1b\x99\xb9\xf8\x05\x1d\xb2\x95\xbe\xed\x57\xed\x34\xd3\xf8\x42\xf8\x35\x5e\x99\x72\x90\x88\x83\x95\x34\xde\xee\xb3\x58\xae\x19\xe6\xe0\xc9\x86\xf0\xe6\x82\x46\x1b\x8f\x59\xd6\xb9\x41\x11\xa6\xe0\xf1\x09\xed\x39\x4d\xc0\xca\xe6\x50\x67\x4e\xf1\x8b\xf2\xc4\x3e\x8b\x66\x41\x31\xf7\x80\x60\xb3\x1d\x63\xf4\xfa\x7a\x43\xbd\xec\x78\xeb\x17\x39\x65\xc2\x03\x02\x1f\x6d\xc0\x53\x19\xe8\x82\x15\xd4\xcb\x5a\xf7\x70\x81\x62\x2c\x78\xcf\xf9\x3e\x4c\xd0\x2f\x2a\x22\xf0\xa7\xe5\x70\xc4\x00\x69\xd2\x14\xb5\xc6\x1a\xa3\x4b\xd5\xe6\x49\x48\xc0\xec\x45\xb1\xab\xe7\x6d\xd2\x65\xfc\x24\x31\xca\x74\x90\x12\x2d\xb8\x1e\x13\x78\x4a\xfe\x20\xc5\xa4\x64\xae\x5f\x56\x95\x6d\xa5\x9b\xe9\x87\x7c\x08\xba\xcd\xd4\x8b\x55\x91\x69\x19\x34\x53\xc3\xc3\xb5\xe3\x7b\x91\x80\xf8\xf9\x53\x13\x2f\x27\x10\xce\x36\xa1\x7d\xab\xd4\x89\xff\xfc\xd6\x2e\x12\xde\xd7\x28\x43\x29\x80\x63\x37\x7a\x24\x8b\x6f\xa7\x48\x04\xa1\xb7\xd3\x82\xda\xf1\x77\x53\x0f\x8d\xe9\xb1\x01\x81\x32\x46\x65\x6e\x6f\x08\xed\x26\x68\x6a\xaf\x64\x5e\x92\x93\x20\x8e\x20\xca\x6e\xa7\xaf\xd6\x36\xa6\x40\xa3\x09\x7a\xb9\x45\x63\x62\x50\xd7\x8a\x19\x64\xe5\x63\x34\xbd\xb1\x48\xb4\x47\x07\x72\xd9\x75\x69\xbd\xbf\x7b\x61\x7a\xd0\xf5\xfa\x10\x39\xa6\x78\x51\xc1\xb7\xf5\xc1\xac\x6b\xa9\x32\x04\xe4\x3c\xfa\x3e\x02\x19\x3b\x9f\x8b\xf6\xbd\xfd\x71\xf9\x61\x4e\x60\x87\xa9\xb8\x8e\x36\xea\x0c\x13\x97\x39\x07\x1d\x18\x04\x30\x0d\xc5\x96\x6a\x64\xc8\x5a\xf2\x3b\xd0\x80\x18\x8a\x23\xac\xbf\x84\x74\xe5\xd4\x72\x39\x24\xdc\x4b\x0c\x10\xd0\x31\xdb\x93\xc5\x53\x29\x44\x0d\x56\x0a\x77\xa8\x19\xfd\xe8\x43\x1e\x15\x55\xca\x99\x8a\xf3\x04\x0c\x81\x42\x2f\x00\x2b\x42\xf6\x5f\x22\x70\x51\x6e\xc7\xf0\x90\xdc\xd1\xa5\xb8\x6d\xca\x5c\xd7\x2b\x64\x28\x5a\x95\xb7\xe5\x0f\x0d\x16\x60\x5c\x56\x35\xb4\x9e\x3c\xfd\x6c\xee\xcb\x0e\x52\xd7\xee\x20\x9b\x0e\x3b\xd5\x3c\x1b\x8d\x68\xef\xda\xda\xb1\x94\xbd\xdb\x5e\xf4\xb9\xaf\xb0\xa6\x9d\x1b\x79\x95\x00\x10\x05\x92\x8d\xba\x79\x9e\xd4\x5b\x00\x74\xb8\x92\x1d\x84\xff\x2c\x5d\x9d\x85\xcd\x86\xd4\x95\x8a\x75\x43\x83\xf0\xd0\xab\xa4\x1e\x44\xe4\x50\x3b\x77\xa5\x45\x34\x00\xa4\x30\xa6\x3a\x15\x58\x2c\x3b\x2f\xa1\xee\xd1\xd8\x95\xc1\x2a\x34\x00\x1f\x10\x93\xc0\x5e\xa8\x1d\xfe\xf3\xae\x25\x45\xaa\x03\xe4\x2e\x9b\xbb\xf0\x63\xc8\xdf\x78\xac\x63\x11\xed\x8f\x57\x10\x70\x72\x9d\x7c\xf5\x0b\xc8\xf9\xf7\x5e\xb0\xf6\xa2\xf0\x52\xf4\xdf\xa7\xeb\x15\x79\x4a\xb4\xc8\x77\x1b\x8c\x38\x29\x04\x95\xd5\x14\xc7\x7d\xfc\xbf\xde\xbf\xff\x89\x5f\x2c\xda\xf8\x88\x1d\xf4\xb8\x29\x99\x8b\x49\x18\x2c\xa8\x48\xe5\x1c\xd3\xb7\x9b\x90\x74\xf5\x07\x97\x98\x7f\x7b\xec\x5a\x9e\x64\xbf\x07\x40\xb0\x6f\xb7\xf5\xda\xa8\x5a\x87\x6a\x86\x0b\x1f\x3b\x0f\xab\x0e\xd3\x19\xc7\xc6\xf6\x53\xe3\x45\x14\x30\x89\xdc\xe9\xa7\xfa\x52\x6d\x7f\x95\x72\x13\x52\x0e\xa3\x1e\x35\xbe\x21\x90\x35\xeb\xd8\x65\x78\x30\xf4\x8c\xea\x25\xf8\x6c\x7d\xaa\xb8\x7f\xfd\x44\xf8\xce\x31\xac\x93\xa7\x93\xea\x53\x33\x0a\xec\xfc\x8e\x0d\xfb\xbe\xe5\x20\xed\x7e\x86\xe0\xfa\x20\x39\xb4\xf3\x09\xdd\x6b\x50\x00\x8b\x16\xee\x00\x39\x67\xa4\x2f\xa7\xa5\xab\xb1\x30\x58\x81\x8f\xe4\x69\x4c\xe6\x0b\xf4\xaa\x2b\x26\xd0\x97\x90\xa2\xc8\xe7\xd6\x23\x8b\x57\x89\xc7\xa3\x4d\x6e\xf0\xbe\xe8\x53\x26\x86\xc7\x31\xf6\x14\x4e\x8e\x25\xc1\xa4\x7b\x0b\xd8\xac\x94\x1c\xc0\x39\x37\x90\x77\x75\x15\x34\x7f\xc4\x96\xcc\xbb\x46\xf3\xe5\x84\xa4\xf8\xb9\x0e\x15\xeb\x58\xa7\x06\x2d\x4c\xd3\xf6\x44\x1c\xfc\x9c\xdd\x62\x35\xff\x2e\xb8\xe4\x1b\x00\xb7\x09\xef\x6f\x15\xaa\x3d\xb2\x01\x4e\x68\x05\x47\x38\xb3\xf9\xc9\x3c\x84\xe7\xe7\x3f\x10\x10\xbf\x29\xe0\xcc\xa0\x8f\x82\x3f\xcd\xb7\x8b\x40\x08\x07\x3e\x53\xf1\xe1\x58\x35\x7f\xb1\xb6\xbd\x53\x5b\xac\xd6\xcb\x52\x3a\x40\xaa\xd6\x25\x27\x71\xdd\x13\xa7\xd7\x5a\x3a\x66\xe0\x44\xf3\xad\xb7\x75\xac\x8e\x60\xdc\x9c\x57\x26\x02\x47\xf2\xc7\xbb\xa8\x39\x77\xcf\x45\x05\xe0\x53\x18\x45\x09\x3e\xa7\x33\x79\x1a\xea\x98\x36\x76\xfe\x4d\x17\xba\x37\x3b\x40\xe9\x99\x26\x61\x92\x41\xe3\x27\x14\xaf\x8e\x15\x7a\xbd\x9e\x00\xcd\x02\x23\x9f\x5b\xaf\x78\x2f\xb8\xe8\x27\x76\xdf\xe7\xf1\x77\x86\x93\x0e\x7e\xde\x52\xb8\x28\xef\x0e\x22\x7e\x23\x57\x57\x2f\x03\x77\xc5\x7d\xd9\xd3\x8d\xbf\xdd\x96\xca\x3e\x26\xad\x9c\x7b\x94\x6b\x9a\x77\x6a\x33\x30\xf4\xab\xd8\x3e\xda\xc2\x81\xd8\xcb\xb8\xc5\xac\xaf\xd4\x4c\x61\x92\xb8\x9c\xf1\x64\x56\x08\x9b\x06\x7c\xf2\x18\xfd\xe3\xde\xd4\x2d\xf4\x47\xc3\x86\x66\xd2\x9a\xb9\x7c\xa9\x96\xa6\x0d\xd6\xfc\xcf\xdc\xb0\x31\x64\x6f\x48\x65\x3d\x12\x0c\x3c\x75\x76\xb7\x38\x55\xdc\x6f\x3a\x7d\x8d\x62\x77\xbe\x65\x87\x74\xf8\xd1\x12\x87\xdb\x57\x39\x5a\x67\xc3\xd1\x1f\x3d\xa7\x84\x43\xf4\xac\xc2\x72\x70\xb1\x08\x81\x28\xb8\x90\x95\x0e\xe6\xea\xc5\x3f\xd3\x4f\x27\xbc\x98\x0e\xb2\x85\xc2\x21\xb0\x3d\xef\x00\x73\xbd\x56\xa8\xab\x20\xac\x83\xa3\xd3\x44\x77\xe6\x89\xdc\xea\x34\x79\xa3\xae\x66\x0a\xd6\xe1\xf3\xad\x6f\x7d\x89\x52\xcc\xa0\xb7\xc1\xc0\xba\x60\x14\x3b\xf9\xcf\x9e\x76\x9a\x8d\xde\x18\xfd\xe5\xbd\xe7\x68\xa8\x42\x1b\xe6\x98\x65\x19\x12\x1b\xb8\x5b\xff\xb4\xbf\xdf\x0f\x43\x11\xac\x9f\x9c\xf3\x7e\x7b\xef\xab\xaa\xc8\x08\x3b\x59\x4a\x95\xbb\xca\xfe\xf9\x75\x91\x39\x54\x05\x9f\x3c\xd2\xff\x8e\xe0\x27\xae\x9e\x94\x9b\x1b\x1b\xf6\xfd\x3f\x53\x87\x13\xde\xa1\xc3\xb8\xb7\xae\xa3\xf7\x59\x4f\xff\xa0\x05\xc5\xaa\xd3\xe5\xbd\x26\x62\xe6\x8e\x2a\x67\xa6\x88\xa0\xae\xf9\x05\x0d\x4d\x3f\xba\x5e\xc0\xf3\x2a\xcf\xd4\x87\xc0\xb8\x57\xc0\xe8\x7b\x91\xe7\x44\xec\xaf\xa9\xc0\x06\x9a\x7a\x7f\x63\x52\x41\x65\x1d\x2b\xe9\x9e\x2c\x71\x68\x96\xef\xcf\xed\x50\xda\xc0\xa8\x35\xed\x3c\x54\x43\xf4\xa2\x37\xae\x33\xdb\xf1\xc1\x08\x02\xb6\x88\x51\xb3\x3b\x70\xfb\x40\x3b\xbf\x60\x0d\x46\xaf\x94\xc2\xaf\x1c\x27\x1f\xf3\x2b\x30\x54\xb1\xdb\xcd\x29\xe2\x41\x41\x58\x9d\xd8\x31\x02\x24\xc1\xf0\x05\xf9\xd9\x05\x41\x73\xac\xd4\x38\xcc\xef\x37\xcb\xfb\x16\x26\x0b\x11\xc2\xc2\x36\x24\x15\x57\xfc\x56\xc3\xf7\x3e\x8e\x7e\x3f\x0c\xe5\xbd\x2a\x4a\xc7\x23\xbf\xd3\x1b\xd3\x31\xbe\xf6\x2e\xff\x31\x7a\xb8\x54\x5f\x2d\xcf\x77\x3c\x69\xd2\x5a\x71\xad\x8a\xa4\x40\x54\x16\x60\x1d\x78\x75\x15\x47\x7c\x09\x8b\xd2\x7d\xc8\xa6\x77\xd0\x26\x77\x1b\x29\xb6\xb3\xce\x6c\x44\xe3\xb1\x44\xab\x5c\x3e\x1a\xf0\xcb\xed\x54\xdb\x1d\xd1\x0e\x52\x7a\x5d\xc2\x13\xef\x68\x28\xbb\xcc\x14\x78\x7e\x4b\x18\xd5\xdb\x49\x78\x5c\xe4\x5d\x65\xe7\x7e\x89\x27\x21\x28\x8c\xec\xa2\x5a\x23\x06\x23\xa1\xe6\x03\xf9\x26\x3f\x47\xf6\xf1\xf1\xf1\xb1\x81\xef\x8c\x39\xa2\x78\x1f\x2a\x72\x9a\x48\x2c\x05\xf5\xdf\x32\x96\x02\x4e\x80\xc3\x13\x13\x8e\x5d\x07\xd2\x3c\x2c\x33\x35\x52\x49\x88\xde\xcb\x1b\x72\x40\xd1\x62\x5b\xa5\xc3\xb7\x5e\x4d\xc3\x84\x5a\x1b\x0b\x81\x71\xe2\x7f\x24\xbe\x28\x0f\x6f\x1a\x35\x0c\xf3\x30\x3d\x4a\x67\xbc\x06\x6c\x88\xa3\xa2\x0d\xc1\x39\x32\xee\xb5\xc5\x95\x71\x15\x18\x66\xbd\xdb\x12\x00\x03\xc8\x29\xe3\x5f\xee\x32\x72\x6e\xcb\xf1\x2a\x17\xe5\x53\x3b\xe0\x8b\xc3\xf7\x8e\xf0\xbe\xb9\x17\xf3\x8d\x91\x2f\xff\xef\x9d\xc7\xea\x5b\xaf\xab\xbb\x69\xe1\x2d\x91\x37\xba\x13\x35\x4a\x10\x18\x36\x69\xff\xb0\xf9\x88\x68\xb9\xb0\x15\xcd\xf0\xaf\x50\xc0\x67\x89\x47\x1a\xcb\x5c\xf9\x47\x8f\xf5\x40\xab\x98\xa9\x7a\xb9\xc2\xe7\xcf\xbd\xeb\x67\x77\xcd\x89\x53\xfe\x47\x49\x74\x77\xad\xb8\x8a\x51\x04\xcb\x42\xcb\x2b\x22\xc0\xaa\x78\x5f\x9a\x9b\xea\xb1\x6d\xc9\x47\xed\xfe\xef\x16\x37\x73\x49\x7a\xce\xa2\xe6\x12\x36\xa5\xa2\x4a\xa0\x13\x3f\xca\xbb\x2b\x0f\x2a\x2b\xc6\x9c\xd1\x34\xad\xa5\x6e\xbc\x0e\xb9\x6b\x6c\xc2\xce\x24\xbd\x5f\xc5\x1a\x68\xa2\xb9\x5f\x8f\xa6\xbc\xd4\x9f\x87\xef\xb2\x7d\x6c\x4c\xc3\x28\xfe\xd1\x9a\x0d\x40\x43\x7c\xaa\x2c\xb1\x63\x5f\x3c\x4a\x5b\x77\xde\xf6\x86\x89\x89\xe0\x94\xdd\x02\xb9\x18\x6a\x51\xfc\xd0\xd5\x61\xa1\x95\x37\xcb\x63\x37\x49\x68\x71\xdc\x4f\x0e\xd3\x5b\xb8\x8f\xad\xe8\xda\x18\x34\xfa\x75\x9f\x47\x30\x1b\x51\x3b\x15\x3c\xe0\x6d\x7f\x55\x44\x43\x4b\x1a\x1f\xed\xb4\x55\xa3\x8f\xd6\xcc\x29\x6f\x7d\xca\xb3\x74\xf9\x7b\x87\xfc\x45\x91\xd2\xf9\xe2\x09\x93\x67\x35\x8f\x2d\x2e\x9f\xbc\xc4\x3e\x7d\x92\xe8\xd7\x9b\xf9\xd4\x31\xd0\x69\x62\x49\x85\xb5\xe4\x73\x03\xb7\x14\x3b\x89\x4c\xbd\xd6\x4d\x27\x7a\x01\xcd\xe1\xc1\x97\x4c\x26\x6b\xdb\x8e\x8c\x16\x86\x4c\xb5\xe3\x75\xc4\x88\x57\x72\x0a\x03\x2f\x3a\x06\xfe\x33\x8f\xe5\xb1\x61\x90\xb6\x40\xd2\x71\x13\x81\xa1\x3b\xdd\xf8\xa6\x23\x6f\x97\xe4\x47\xe2\xdf\xb7\xae\x9d\xe2\x3b\xce\x98\xce\xa1\xbf\xb0\xfd\x7c\xb6\x7f\xa3\x44\x6a\x54\x49\x60\x06\x01\x39\xcf\x17\xf6\xff\x28\x65\x10\xc0\x5c\x56\xed\xc0\x87\xa8\x83\xfc\xb4\x05\x98\x02\xa9\xcd\xea\xa1\xc4\x27\x6e\x27\xc0\x49\x18\xec\xc5\x7a\x74\x70\xd4\x95\xb9\x40\xd8\xfe\x4e\x07\xc3\x09\x30\xd1\x9c\xbd\xda\x60\x3f\x37\xcf\x5f\x14\x29\x9e\xe7\xe0\x5f\x01\x19\x04\x21\x37\x44\x0f\x78\x76\x3e\x0a\xe1\x37\xde\x87\x46\xcf\xde\x29\xa7\x6e\xd1\xaa\xa6\xce\xcc\xf0\x4f\x63\x03\xee\xf8\x88\x9f\xcd\x84\x9f\x87\x1e\xe8\x64\x00\xe0\x1b\x49\x4c\x57\x65\x41\x23\x5c\x9e\xea\xfb\x14\x84\xce\x70\xfd\xbd\xe2\x3a\xcb\xe7\x91\x47\x1c\x48\x78\xdb\xec\xb8\xdd\xb0\x84\xb3\xc7\xeb\xa6\xed\xd6\xe2\xc9\xd9\x67\x91\xce\xad\xfe\x32\x08\xe3\x56\x08\x67\xe5\x4a\xaa\xef\xfa\xe2\x50\x66\x0c\x32\xf0\xea\xf6\x29\x55\x54\x5f\x13\x25\xc3\x4d\x4b\xef\x6a\x0b\xa4\x66\x59\xf4\xd2\x96\x24\xc2\xb8\x3a\x74\x87\xcb\xab\x0f\x24\x83\xd1\x0e\x77\x2f\xa2\x2b\x65\x2f\x75\x71\xec\xa9\x17\xd7\x55\xcf\x52\x35\xb0\xda\x7c\x8b\xa1\x39\x54\x16\x99\x70\x39\xf7\x75\x7c\xf9\x9b\x4f\xfb\xa1\x5b\x88\xdb\x20\x16\x2e\x0b\xd0\xa8\x06\x2d\xa2\x04\xf4\x0c\xe5\xbd\xee\xcd\xa7\x1f\xe0\xef\x15\x38\x1b\x03\xaa\x3b\x4d\x78\x24\xc5\xda\xbd\x85\x8e\x16\x1b\x84\x2c\xbd\xfb\x21\x42\xcf\x76\xf6\x74\xc1\xfe\x67\x3f\x2a\x08\xab\x08\x2b\x95\xbd\xa6\x69\x4a\x8b\xb9\x55\xe8\x25\x2d\xe3\xd9\x87\x49\x79\x15\x2d\xde\x2b\x5a\xb0\xd4\x7c\x9c\xb2\x78\x38\xb6\x7a\x32\x7d\xa4\x0b\x02\x04\xaa\xd7\xb2\xc2\x29\x76\x8f\x21\xc9\xd1\x8b\x2c\x22\xd6\x90\x39\x0b\x5d\xfe\x67\x7f\xdd\xc8\x03\x0a\xcd\x56\x08\x20\x2f\x08\x30\xa9\x72\xa0\x39\x01\xeb\x50\xad\xc7\xd7\x24\x31\xba\xa0\x3c\xe9\x7c\xc2\x1a\x67\xcc\xec\x7b\x92\xa9\xeb\x3a\x73\x13\xff\x9f\x34\x89\x8b\xc3\xf8\x7f\xa8\xd7\xa7\x3b\x4b\x6f\x77\x4f\x13\x3c\x86\x69\x5a\x7a\xe0\xcd\xa5\x63\x53\x3c\x3b\x1f\x67\x68\x16\x61\x75\x47\xb4\x8d\xd3\xf2\xb8\xd8\xd7\x66\xe8\x79\x31\xac\x36\x4c\xe0\xbc\xba\x7b\xe0\x92\x55\x73\x5b\x8e\x78\xad\xa7\x12\x4a\x08\xa8\x8d\x2f\xd6\x2e\x54\xd7\x92\x08\xc5\x5f\xe9\x6c\xbc\xce\x27\x47\x7c\xeb\x4b\x95\xd2\x06\xb9\x8f\x18\x6e\xa0\x05\xa7\xb5\xc3\x7b\x8a\x71\x00\x1c\x15\xae\x0e\x8e\x6d\x5f\x2c\x84\x13\x4a\x95\xae\x25\xea\x46\x9b\x30\x49\xe1\x53\x93\xa9\xb6\xd2\x15\x05\xd5\x9a\xfd\x9e\x33\x88\xaf\xcf\x86\xe2\x6a\xf8\xa0\xf8\xbc\x7f\xfb\xe5\x5e\x08\xa4\xe5\x94\xa8\x0b\x1c\x0e\x79\xfc\x74\x38\x48\xcf\x34\x2d\x61\x9c\x58\xbb\x95\x97\xa6\x62\xc0\x94\x2b\xca\x44\xaf\x59\x60\x1e\x65\x15\x05\xaf\xc5\x2d\x99\x23\x13\xfa\xd4\x31\x54\xa5\x50\xb2\x6f\x5b\xa2\x35\x6a\x5c\xd1\x9a\x2e\xed\x2e\xae\x6e\x63\x32\x06\x2a\xa1\xeb\x28\x35\xc3\x79\x2a\x5d\xf9\x63\x74\xbc\xec\x76\xfe\x67\xb5\xf6\xed\xa2\x91\xbe\x87\x6f\x9b\xa3\xe3\xc8\x6c\xa0\x2e\xad\x72\x2a\x6d\x59\x61\x19\x51\x54\x5b\x60\x23\xe4\x82\xd5\xd8\x8d\x2c\xf0\x91\x69\xb0\xb2\x76\x41\x4d\x17\xf8\x1e\xae\x40\x30\xa3\x33\x80\x8c\x9c\x63\x6a\xd2\xd2\x2a\x37\x8b\xc2\x3e\xc4\x8a\x2e\xf8\x31\xda\xd2\xf4\xb2\xa7\x49\x68\xa7\xa4\x0e\x68\xb3\xc9\xc8\x37\x05\x85\xc2\x04\x56\x2a\x0a\xc6\xf2\xd3\xb0\x10\x00\x60\xc7\xad\x43\x01\x8d\xd6\x26\x01\xc2\xdb\xff\x58\xe9\xfc\xc6\xab\xa6\x6f\x3c\x46\x16\x01\x29\x2f\x18\x96\xd0\xfd\x30\xe3\xb1\xc1\x03\xa2\x2e\x3a\xb1\x83\xf8\x0c\x72\xa6\x90\x6c\xc5\x83\xb1\x0a\x0e\xec\xa6\x4f\xfb\xf0\x01\xd4\xbf\x16\x56\x1f\x76\x82\x03\xfa\x69\x5a\xa5\xcd\x78\x40\x72\x60\xda\x0a\xa5\xa4\x92\x9e\x5e\xc2\xc6\xca\x1f\x7c\x61\x3f\x44\x0f\x65\x0a\xa7\xc4\x0d\x61\xef\x8a\x25\xbe\xbc\x0f\xe4\xef\x2a\x81\x49\x25\xd2\x9b\x7c\xe5\x5d\xe1\x27\xff\xfa\xb3\xa8\xc1\xad\x2e\xee\x6a\xaf\xb3\xb4\xa1\x1a\xea\xda\xfc\xc3\x62\x59\x44\x8c\x73\x06\x69\x1d\xdd\x17\xd3\x36\xe2\x7b\xf5\xf2\xc8\x50\x31\x05\xa7\xcd\x35\x40\x88\x6b\x6d\xb8\xa0\xd6\xc3\x6b\xda\x5d\xc2\x3a\x7e\x2e\x50\x76\x3b\x18\xf5\xf8\xb2\x2b\xf3\x3f\x81\xee\x44\x24\xaa\xc2\x3a\x4a\x2a\x1d\xf1\xdc\xaa\xfc\x51\x98\xf1\xb4\x28\x0a\xc0\x97\x04\x01\x02\xf6\xbe\x76\x2c\x3f\xb8\x37\x3c\xd8\x4d\x29\xb3\xfe\x2c\x39\xd3\x7f\x1d\xf8\xfb\x22\xa9\x6b\x20\xfa\xc7\x90\x5d\x36\x77\xb2\xc4\x57\xdc\x8a\x57\x7f\x87\x11\x3e\x58\x39\xd0\x91\x5e\xcd\x09\x55\xac\x1c\x3b\x86\x9c\xae\x18\x7e\x07\x3c\x04\xb9\xf3\x60\xdc\x5e\x27\x13\x9d\x91\x22\x94\x02\x88\x97\x61\xbd\xae\x60\x30\x7c\x9d\xba\xe8\x6c\x1a\xf7\xe2\xab\xed\x2c\xab\x88\x3c\x1d\xb6\x73\x6d\x8f\x49\xbf\x7d\xfd\xb1\x43\xb6\xf6\xc0\xe8\x73\xf4\xa5\x0b\xe8\x6e\x9c\x8e\x4d\xfa\xe6\x9e\xcb\xd7\xef\x2c\x8b\x10\x18\x37\x92\x95\x37\xd2\x57\x7d\x2d\xa4\x9b\x54\xd1\x03\x3b\xf3\x5f\x5f\x27\x20\x93\xe1\x4c\x91\x81\x49\x13\xa5\x25\x39\xfe\x2e\xe8\x1e\x9c\x2b\xae\x69\x34\xd2\x3a\x16\xaf\xa3\x69\x6a\x8d\xad\x5a\x41\x5b\xfd\xf2\x66\xa5\x75\xb5\x8b\xac\x8d\xeb\xf1\x54\xb7\x1c\xc6\x9d\x1f\x44\xe6\x04\x9c\x3d\x79\x11\x76\x8e\x69\x9e\x0e\xf9\x8c\xcb\xb3\x92\x51\xb1\x1c\xba\xe0\xbe\xd7\x50\x76\x53\xf7\x05\x47\x95\xe8\xd1\x98\x38\x04\xe3\xc4\x68\xb1\x05\xfd\xcf\x65\xeb\xb0\x25\xa5\x89\x60\x2d\xc9\xa9\xc2\x9f\x57\x09\x74\x36\xbd\x4c\xb8\xe2\x84\x79\xd6\x59\x7a\xab\xf6\xe5\x94\xc7\xc4\x48\xb5\x32\xb5\xd8\x3b\x89\xf7\xb3\x95\xd8\x6b\xa5\xd4\xc4\xe7\x56\x91\x24\xe2\xaf\xd5\x1f\x3f\xe9\x17\x7a\x01\x6a\x58\x88\xa7\x17\xdb\x20\xaa\x7f\x6f\x25\x01\x1a\x23\x5b\x32\x59\x7c\xea\xea\x02\xf6\x64\xa7\xce\x18\x3d\x0a\x91\x0f\x68\x82\x35\x89\x9e\xcf\x10\x5c\xae\x69\x3f\x8b\x68\xee\x5d\xe6\xab\xa7\x94\xd3\x7e\x2b\xb1\xf6\xbe\xe2\xbf\xe5\x4c\xff\xf2\x9c\x36\x45\x05\x77\x2c\x22\x7d\x2b\xd6\x73\x25\x1c\x41\xc9\x12\x6d\xbe\x8b\x62\x36\x87\x83\x40\x0e\xd3\x8b\x3c\x64\x7d\x16\xdc\xeb\xa3\xea\xbd\xca\x40\x42\x6b\x89\x9a\x37\xa9\x2b\xdc\x46\x48\xec\xbb\xb0\x02\x27\x79\x21\x05\xfe\x48\xaf\xfd\x43\x66\x01\xbb\xcf\x1f\x35\x0d\xdf\x5b\x9b\x01\xef\xfd\xce\x27\x5b\x5e\x5f\xc5\x7a\xfb\x6c\x33\xa2\x3f\xa0\xb0\x8c\x17\x96\x12\x80\x63\xb7\xce\x33\xe0\x35\x96\x24\x08\xa8\x2d\x1e\x7d\xe8\x1d\x4c\x24\x79\x1f\x7e\xf9\xe1\xeb\xc5\xcc\x64\xe3\x87\xab\x77\x6b\xc0\x6b\x5a\xd7\xe7\xbe\x7f\xf4\x6e\x2f\x37\xd8\xcf\x49\x65\x9a\xf1\xef\xf1\xdb\xa4\x36\x56\xcd\x4d\x00\xf4\xbc\x21\xc7\x2b\xb6\xed\xcd\xc1\x86\x79\x2e\x45\x8b\xbf\x8a\x76\x61\x42\x94\x8a\x7b\xae\xe3\x88\x74\xcc\xa9\x12\x98\xcd\xe3\xf2\xf7\xd3\x76\x39\xce\xad\x6b\xfc\xc6\x26\x2c\x80\xa2\x88\xc0\x0f\x89\x43\xf7\x71\x09\x18\x35\x25\x39\xcf\x09\x01\xd5\xb2\x81\xf1\xbb\x39\xb6\xf3\xe7\xc2\xd8\xf1\xc3\x1b\xcc\x07\x4a\xb1\x97\xaa\xd1\xa0\x40\x06\xde\xbf\x9f\x07\x1e\x74\x43\x3b\x2d\xc3\x32\xbc\xd4\xff\xdc\x6c\x99\x67\xef\x32\xf9\x53\x31\xd5\xe2\x7b\x31\xd7\x6e\x64\x21\xa6\xdf\x34\x98\xc9\xd3\x01\x30\x6e\x6a\xde\x4d\xc7\x0e\x85\xbb\xb4\x73\x9a\xbf\xc7\x7b\x04\x12\x8d\x02\x28\xd6\x11\xc7\x1e\x74\xdd\x4b\xed\x5b\xe5\xe1\x6e\xd3\x6e\x58\x96\x48\x60\x98\xb0\xc2\x3e\xb1\xaf\xcf\x0f\x0e\xf4\x4c\xb2\xd0\x06\x3a\x5d\xe2\xc1\xe2\x2e\x5a\x75\xb3\x56\x78\x56\xf5\xf9\x45\xb2\xcc\xd7\xc3\x88\xd5\x27\xb8\xed\x1a\x6d\xbc\x58\x6d\x88\xc6\x6e\x7d\x2e\xdb\xa3\xa3\xff\x06\x3e\x1a\xa6\x3a\x9e\x09\xc1\xa2\xa1\x81\x81\x06\xbb\x33\x43\xb2\x5f\xe8\xfa\x3a\xbb\xb6\x7a\x4e\x74\x37\x13\xde\xfb\x8f\x3a\xe2\x85\x6c\x01\xaf\xc2\x76\x83\x20\x5b\x58\xbc\x4f\xd1\x72\x58\x00\x07\xf9\xf9\x78\x80\xed\xf9\x63\xd3\x4f\x45\x64\xbd\xc4\x27\xa3\x12\xf6\x9a\x36\x9c\x9a\x10\xcd\xa1\xa5\xa5\xc0\xf3\x93\x3b\x8d\xad\xe4\xe3\xec\x17\x2d\x9a\xa3\x4b\x87\x3d\x1e\x5a\xb9\x4b\x18\xa3\x76\xbb\x1b\xbf\xfe\xd5\x81\x21\xd3\xf8\xf5\xfa\x82\x8c\x7c\x05\x66\xc4\x96\x02\x58\xa3\xed\x8b\x95\xd7\x9c\x40\xe0\xa5\x84\xf9\xe7\x30\x2c\xa1\x20\x7f\x03\x4b\xdb\x96\xae\x56\x7f\xf6\x11\xc2\xfb\x0c\x56\x8a\xfe\xed\x1d\x0b\x59\xcf\xe7\xa7\x7f\x9c\xdb\x73\x7d\x40\x59\xfe\xbc\xc9\x7e\xd5\xed\x4f\xcc\xd9\xae\x3a\xde\xae\x5f\xcc\xd0\xfe\x40\xbb\xe4\x16\x3c\xd4\xf1\xa5\x7b\x3f\x71\x9d\x74\x14\x12\x66\x20\x54\xee\xb5\x3f\x3b\x0c\xaa\xba\x3b\x6e\xfd\x22\x71\x5e\xc1\xed\xd8\xa5\x2a\xd5\x44\xb6\xaa\xac\x70\x50\x2b\xac\xa1\x27\x20\xa9\xc8\x00\x9b\x0c\x52\xa6\x00\x8a\xbd\xf8\x3e\xec\xa3\xe2\x0b\xeb\x90\x7a\x45\x8f\x8d\x45\x4d\xcf\x60\xb5\x9b\xcf\x09\x31\xa1\xae\x76\x62\xef\x97\x9a\xbf\xe6\x3d\x98\x3a\xfc\xd5\x75\x14\x09\x4c\x36\x33\xc5\xbd\xa3\x00\x90\xf7\xc8\xe1\xbb\xeb\x40\x3f\x49\xd0\xde\x26\xe8\xb4\xa2\x05\x0c\xbc\x0f\x76\x77\x16\x7b\x2f\xe6\xb9\xa3\x74\xaa\x4b\xcb\xa3\xfb\x38\xf8\x76\xbe\xf1\x30\xe6\x51\xfb\x9d\x13\x66\x69\xf1\xe8\x43\x8b\xed\x46\xa7\x9b\x0a\x14\x7d\x2e\xc7\xb9\x45\xc2\xc9\xb1\x04\x42\x90\x01\x09\xe6\xa6\x78\x27\xbd\x68\x14\x7e\x5b\x5b\xa9\x1f\x42\x9c\x88\xbb\xc1\xf3\xf2\x63\xca\x20\x72\x4b\x06\x0b\xf8\x1d\xef\x71\xb8\xa8\xa1\x8e\xda\x83\xd7\x82\xb9\xff\x5d\xac\xa1\x6c\xcf\xe3\xab\xde\x5e\xe7\xa0\xb6\x09\xcb\xc6\x9a\xbf\x1e\xce\x57\xaa\x1a\x8e\x32\x46\x7a\x41\xe9\x5e\x1f\x55\x80\x11\xc1\xf0\xae\x89\x85\x0b\x6f\xcf\x41\x14\x6b\x4a\xc7\x50\xe5\x88\x87\x86\x14\xec\x73\xd4\x58\x79\x6c\x97\xa9\xc8\xd3\x72\x29\x2f\x53\x04\xa5\xe2\xf5\xde\x54\x49\xd1\xcc\x88\x41\x74\x3c\x8d\x76\x50\xde\x0d\xa7\xaa\x06\xd4\x74\xf1\xdd\x43\x7a\x0d\x3d\xca\x32\x2c\x5f\x98\xca\x7e\x9c\x9f\x01\x56\x28\x00\x95\x78\xa9\xa9\x6d\xfd\x39\xc4\xbe\xdc\xba\xd4\xff\x78\x87\x06\x27\xd2\x63\x1f\xf9\xf5\x30\x0d\x6d\xe2\xd0\xfa\x95\x04\x27\x85\xdf\xb5\xee\xc9\x55\x16\xf3\x79\xdc\x11\xc4\xd8\xcd\x89\xec\xfc\x31\xf9\xa3\x17\xf7\xc9\xfd\xcb\x1e\x39\xda\x8a\x04\xbf\x7b\x36\xbb\x65\x37\x3c\x1e\xe9\x4e\x86\x10\x1d\x37\xf7\x4a\xf2\xca\xf7\xd1\x44\xf8\x1d\x6d\x77\x01\xd1\x8f\x76\xa4\x67\xc4\x80\xd0\x7b\xeb\x4f\xac\x87\x2d\x46\x43\x4b\x5f\xf1\x2a\xde\x11\xc6\xbf\xfd\x9b\xf6\x39\x65\x0e\x8f\xd0\xd9\x60\xda\xc6\x41\xc0\x72\xa9\xf1\xb7\x1a\x6a\xf5\xbc\x7b\x8f\x35\x5d\xde\x2b\x71\x9d\xb2\xfd\xf8\x1a\xc0\xa4\x40\x8c\x3a\x54\xa3\x92\xb8\x54\x33\x31\x20\xb9\x41\x7f\x96\x6c\x52\x30\x92\xd8\x35\xfa\x53\x82\x00\xa3\x21\xe5\x9f\x26\x20\xc8\x7b\x14\x01\x49\xdb\xcd\x84\x3c\x9c\x2d\x6e\xd8\xf2\x54\xec\x3a\xaf\xe8\x9e\x16\xae\xc7\x37\xd7\xed\x1e\xcb\x3d\xc5\x6f\x85\xd3\x21\x87\x45\x0b\xa7\xae\x0c\x38\x71\x74\xbe\xe7\x24\xef\x36\xf1\x88\x6b\xfc\x6c\xfb\xf2\x51\x88\x2f\xbd\x39\x4a\x18\xa6\x3d\xe8\xf2\x86\x2a\x4d\x25\x75\x9c\xd6\x68\xfe\x3b\x2b\x69\x9b\xdf\xcd\xe1\xbf\x75\xe8\xb7\x95\xd3\x8a\xba\x54\xaa\x59\x66\xf6\xd1\x6a\xff\xfc\x81\xa7\xe9\x5e\x75\xec\x2f\x7d\x5d\x5b\xef\x64\x4d\xdc\xf0\xa1\x5f\x2d\x92\x55\xc8\x27\x77\x34\x7e\xbc\x5a\x88\xde\x84\x13\xb7\x29\xa7\x6a\x7f\x25\xbb\xea\xbc\x9f\xe8\x89\xbc\x9f\xd8\x5e\x8a\xdb\x3e\x92\xee\xc4\x0f\xf1\xf9\xb6\x8b\x87\xfe\xf9\x25\xe0\x5e\x86\x1e\xf7\xea\x9c\x3d\xef\xa9\x80\x7a\x51\x9d\xe2\xd7\x99\x89\xa4\x5a\xa8\xdb\xd5\x91\xea\xb3\xeb\x6d\xce\x81\x75\x6f\x79\xfd\xd4\x5f\x03\x8a\xce\xe9\x56\xb8\x32\xfc\xdb\xa1\x74\xc4\x7d\x15\xe4\x4e\xc0\x5f\xd2\x0f\xdc\x6b\x7f\xe8\xab\x15\xf4\x0b\xbd\x1a\x52\xaa\x1b\x92\x7e\x3f\x77\x64\x3e\x18\xae\xda\xde\xa6\xfe\xe8\xf9\xbc\x19\x12\xb8\x13\x74\x52\xd1\x60\x79\xbb\x42\x57\x3c\x18\x95\xf7\x84\x0e\x1b\xf8\x0e\xef\x20\xeb\xc4\x7f\x9e\x1f\x66\x0b\x43\x34\xa4\xa4\xff\xe9\x42\xe1\x23\x20\x8f\x4f\xa4\x93\xed\x4f\xac\xcf\xa1\x73\x66\xec\x2d\x1d\x26\x6f\x2c\xa7\xdb\x5d\x60\xf4\xc4\x12\xb9\xd0\x39\xe1\xf5\x93\x05\xad\xb7\xd8\x35\xc1\xa0\x07\x2e\x23\x92\x34\xc2\x59\xdb\xe2\x7c\x05\xaa\x71\x1e\xfb\x5e\x15\xb1\x26\x8a\xfb\x19\xe7\x74\xef\x6a\xd2\x60\xb8\x06\x6f\x88\xde\x22\xcb\x4a\x43\x25\xcd\xcb\x01\x7c\x14\x49\x36\x97\xf6\xd1\xbd\x2f\x8c\x72\x07\xe7\x84\x1d\xd4\x1a\xd7\x56\x19\x08\x67\x75\x22\x7a\x00\xc7\xca\xf8\x54\xe4\x97\x50\x0f\xfe\xed\xce\x7c\x68\xa9\x72\x39\xb6\x57\xf1\xdb\x7e\x23\xe5\xc3\x62\x2b\x3f\x41\x26\x83\x8f\x89\x69\x4a\x0e\x43\x60\x80\x55\x48\xdd\x88\x52\x13\xdd\x36\xfe\x63\xb0\xc7\x7d\x7f\xc2\x65\x7d\x41\x83\x57\xa4\x3b\x92\x15\x40\x25\x39\x69\x81\xcd\x54\x1d\x4e\x62\x2e\xef\x3b\xa9\x1f\x2f\xb1\xe3\x39\x0d\x15\x58\x94\xc3\xf4\x4b\xa8\x4b\xaa\x52\xab\x84\x6a\xf5\xbd\x45\x2d\xdf\xa5\x7e\xa7\x57\x66\x7e\xc1\x4e\xed\xea\x24\xed\xe6\x64\xe4\xfc\x3b\x1c\x80\x74\x2f\xd6\xe2\x09\x95\xe0\x97\x25\xbc\xaa\x8b\x89\x6e\xb8\xad\x52\x18\x14\x48\xd5\x79\x3a\x65\x69\x32\xdb\x4d\x20\x71\x43\xf1\xad\x28\x46\xce\xa6\xb5\x93\x0e\x1e\xce\x01\x60\x5e\xde\x20\x99\x34\x0b\xe8\xc5\x9d\x0a\xf3\xb3\x39\xd7\xc8\x5d\x07\xe9\x87\xbe\x5d\xe9\xc4\xe7\xe1\xb4\x6d\x42\x28\xef\x59\x01\x3a\x7a\xe2\x70\x13\xeb\xea\xb8\xee\x91\x76\xaa\xcb\x0a\x2a\x5d\xde\xa0\x02\x03\xcb\x1d\x8a\x80\x42\xc2\xd4\x04\xfa\x46\x4d\x13\x1e\xea\x53\x75\x05\x93\xf4\x4b\xa4\x96\xd6\x8e\x89\x91\xea\x23\xdc\x36\xf6\x98\x58\xe6\x46\x68\x66\x44\x4a\xd5\x60\xf3\x9e\xc7\xbe\xeb\xba\x98\x03\x45\x7b\xac\xfa\x6c\x1f\xb2\x2c\x58\x0f\xc5\xea\xbb\x17\xad\xa8\x19\xad\xc0\xbc\xf1\xfb\x29\x0b\x79\xca\xef\xfa\x5c\x35\x75\xea\xb0\xa0\xe5\x4b\x13\xcb\x8a\xc1\x8b\x5f\x8a\xd5\x14\x1e\xce\xc5\x2c\xc3\xcc\xf6\x71\xb1\x6c\x1a\x7c\x72\x54\xa0\x1c\x4f\x4d\x21\x4c\x98\xf3\x5f\x88\x1a\xd4\x75\x21\x41\xbf\x30\x47\xb4\xc9\x10\xef\xc3\xa7\x97\xef\xcb\x76\x2c\x8f\x4c\xb4\x73\x65\xa1\xae\xaa\xbb\x02\xae\x90\x1c\x01\xbc\xbf\x88\x2b\x6c\x49\x9c\x8f\x8d\xd3\xb2\x78\xf8\x26\xe9\x45\x46\x20\x02\x40\x09\x7a\x6e\x20\x5b\xb8\x15\xae\x70\x2d\xa8\xf1\xc7\x5f\xb8\x2f\x90\x3e\xd5\xe9\x4d\xf3\x32\x08\x86\x78\x89\x99\x60\x71\xa4\x31\xf4\x29\xbc\xbe\x53\xdd\x95\xc8\x64\x59\x56\x0d\xef\x24\x2b\x7d\xd4\x72\x24\x40\xaa\x3f\x31\x7f\x17\x73\x97\x1d\x78\x63\xf1\x0e\x47\x72\x63\x12\x2b\xa6\x21\xc5\x90\x78\xdb\x5c\x86\x1a\x60\x48\x00\xda\xf5\xc6\x6c\x6f\xa2\x03\xd9\x74\x2f\xf9\xc5\xc2\x8c\xc5\x89\xa4\x41\x70\xfc\x4a\xab\xd3\xf8\xf0\xf6\x89\xb7\xf8\x7f\x72\x5b\xc8\x00\x8c\x8b\xa4\xa2\xe9\xf7\x7f\x64\x26\xee\xa2\x17\x98\x6e\xf7\xe2\x37\x25\xd2\x8a\xe5\x91\xd1\xb7\x27\xe7\xf1\xb8\x32\xff\xec\x95\x1f\x3b\xa1\x33\x64\x86\x0d\x29\xe7\x68\xee\x3d\x07\xa7\xe3\xd3\x2c\x21\xae\x39\x62\x13\x00\xf1\x55\x91\x0a\x2c\x61\xb7\x9f\xd1\x4b\xaa\x17\x3c\xf4\xfd\x32\x41\x7b\x59\x61\xfe\x19\x99\xac\xe7\x22\xcb\x29\xbb\xcc\x40\x81\x12\x7b\x59\xbd\x5e\x22\x75\xdc\xfb\x70\xab\x2e\x90\x70\xa0\x68\xf0\xd0\x47\xac\x25\xae\x24\x81\x3a\x2d\x1d\xdb\xee\x38\xbd\x48\x06\x07\x97\x49\x8d\x6f\xab\x75\x81\x76\xad\x15\x9d\xfc\xe8\x7b\x7a\xdc\xfc\xa3\x44\xb3\x09\x3a\xbf\x5a\x04\xde\x37\x90\x36\xb9\x6b\x2a\xf8\x1d\xf1\x5a\xfb\x49\x98\xc4\x77\xc8\xb4\x7f\xfd\x5c\x30\xdc\xe9\x66\xe1\xf1\x6d\xed\xeb\xe7\x45\x27\x38\x54\x46\x8c\x39\x7f\x48\xb2\x94\x62\x99\x34\x0b\x68\x59\x72\x2d\xf4\x78\x31\xcb\x23\x1a\xba\x9d\x46\x36\xd8\xb0\x36\xe4\xb5\xa0\xf0\x54\xb5\xd1\x49\x0e\xd1\x90\x28\xee\xe7\xde\x07\xb1\xb0\xd6\x52\xed\x59\x6f\x5b\xe2\xe7\xce\x93\xb5\x64\x39\xc9\x23\xe6\x56\x8e\x38\xc0\x68\x79\x29\x2b\xf7\xb0\x76\x82\x44\x1c\x55\xda\x37\xd2\xb9\x6c\xa6\xe0\xed\x0f\x25\x67\xd1\xdc\x9f\xba\x1d\x5b\x5c\x1b\x6f\xf8\x6a\xf0\xf7\xa2\xbc\xd4\x49\xca\x9d\x4e\x50\xc6\x3f\xa7\x1b\x9e\xca\xe5\x34\x84\x72\x72\x6f\x87\xb3\xbf\x14\xa6\x75\xfd\x03\xa1\xc3\xdb\xa3\xac\x94\x60\x6a\x13\x06\x0f\x7c\x6b\x6a\x16\xf7\x19\xfd\x16\x63\xf2\x50\x59\x81\x49\x35\xca\x0d\x41\x75\x54\x72\xb5\x37\xea\x4a\x51\xe9\x21\xaf\x67\xc7\xd5\xd8\x2d\x0e\x1f\x5d\x89\xfe\x3a\xe0\x26\xbd\xbf\xab\xb0\x9c\x14\xb8\x70\x33\xbb\xa0\x5d\xbe\x46\xc9\x47\xe5\x2e\x47\x49\x79\x25\xe0\x08\x10\xb2\xdd\x84\x32\x07\x33\x85\xd1\x7f\xca\xd8\x06\x78\x31\xa3\x14\xeb\x65\x49\x8f\x05\xc3\x14\x78\xad\x3f\x53\x99\x2f\xc5\xd1\x70\xa7\xbf\xc8\xa5\x7a\x18\x82\x2f\xd5\x6d\x10\xff\x78\x5d\xa2\x33\xc7\xef\xdc\x80\x7f\xaf\x7f\xd7\x0e\x91\x94\x63\x78\xfa\x58\xc3\x0e\xd8\xca\x28\x64\xcf\x4d\xf8\xe6\xd4\xef\x12\x12\xfe\xe1\x19\xf8\x36\x06\xf3\x3e\xb5\x32\x41\x4d\x7b\xeb\xa7\x06\x37\x4a\x9e\x11\xe4\x45\x05\xc4\x49\x2b\x6c\xbc\x5e\x23\x13\x64\xea\x55\x54\xe2\xc4\x90\x24\x05\xf0\x23\x19\x49\x00\xaf\xd6\x5e\xb1\x60\x3a\x39\xd2\x95\xc2\x7a\xdf\xfa\xfb\x5e\x62\x59\xef\x64\xfa\xd9\x8d\xa2\xc7\xa6\x56\xc6\x15\x38\x7e\xe4\xcc\x75\x32\xd2\x63\xda\x4f\x6b\x23\x5b\x66\x2c\xf7\x15\xaf\x3b\x91\x81\x27\xe3\xab\xbf\x65\x9b\x4d\xc4\xcb\x0d\xc7\xb2\xb0\x86\xb6\xfc\x3a\x13\xc7\xb2\xee\x9e\x7d\xac\x73\xd8\xeb\x3a\x3f\xab\x1e\xb4\x7a\x60\x3c\x8e\x4f\xe7\x7d\x31\x00\x11\x1e\xf8\x1a\x81\x42\x30\x1e\x89\xa4\x18\x42\xb8\x1e\x82\x18\x78\x1f\x03\xbf\x94\x33\x01\x92\x10\x1c\xfd\xb2\x2a\xf6\xf5\x13\x66\x2a\xd2\xc1\x13\x38\x82\xaa\x28\xbc\x5d\x45\x81\x32\x5a\x26\xd9\xd6\x03\x30\x4e\x07\xdf\xfa\x21\xcb\x0e\x8e\xbb\x2f\xbb\x22\xd8\x65\x3c\x89\xce\xc7\xec\xd4\xa3\x84\xc3\x95\xa9\xcf\xea\xb8\x0f\xba\xb8\xa5\xef\x0b\xde\x90\x7d\xe5\x7a\xf8\xac\x06\x16\x11\xec\xfb\xa6\x03\xd2\x43\x20\xc8\x80\x43\x7f\x1e\xe8\x19\x2a\xe7\xe4\x3a\x30\x37\xf9\x72\x25\xe2\xc4\x8f\xc3\x7c\xb6\xf3\xae\x93\x3c\xd7\x3a\x1a\xc0\xd5\xc5\xf4\x9f\x69\xaf\x60\xf2\xf0\x47\x02\xf7\xfe\x2b\x86\x76\xac\x6b\x7e\x4c\xd4\x68\xf3\x0b\x45\xd0\xae\x81\x5f\x38\xdc\x4c\x0b\xe9\xd1\x6b\xcd\xf8\x1e\xd7\x28\x84\xd7\xd1\x3f\x79\x17\x0c\xf7\x78\xd3\x8d\xe6\x73\xc7\x97\x8c\x1c\x31\xc3\x96\x5b\x66\xb9\x4c\x09\x08\xeb\xfc\x10\xd6\xf9\x05\x8e\x68\x23\xa0\xb7\x41\xdd\x6f\xa0\x3f\xf6\xc4\x8c\x73\x62\x5d\x8a\xe2\xcb\x0e\xe2\xb8\x0f\x33\xca\x7e\x39\x9d\x2b\xcc\xbb\x8b\x0c\xd2\xe1\x91\xac\x14\x56\x73\x2d\x93\x7a\x5f\x24\xc7\x4c\x67\x83\xe7\xa5\x20\x89\x67\xd0\x02\x6a\xe1\x00\xf9\x72\xd6\x03\x65\x1d\xbc\xc5\x17\x5c\x2f\x1e\x51\x93\x1d\x95\x83\x77\x9d\x46\x68\xf5\x70\x84\x29\xf5\x09\xa7\xdc\xf2\x8c\xaf\xdd\x8a\xe9\xce\xf1\x96\x48\xe0\xb0\x10\x7c\x3c\x10\xc9\x1b\x95\x47\xc1\x8b\xf8\x09\x10\xe6\x34\x74\xd1\xad\x85\x36\x91\xbb\xfa\x61\x01\x92\x25\x39\x50\x69\x3f\x7e\xdc\x43\xa0\x0f\x14\x6a\x5f\xa5\xdf\x55\x8f\xcd\xc8\x41\xc7\x42\xb1\x2e\xad\x53\xe5\x01\x9b\x5f\x58\xbb\xc3\x32\xd9\xf5\x1a\xef\xb4\xc7\xc1\x02\x12\x5c\x85\x51\x4a\x1d\x2c\xc9\x72\x63\x77\x8e\x59\xaf\x71\x84\x6d\x63\xa1\xd6\x9c\x03\xe0\x83\xde\x02\x46\x43\xa6\x10\x52\x7a\xcc\x7c\xcc\x1c\xa4\x61\xd6\x87\xb2\x7b\x8a\x6f\xe0\x1a\xc3\xce\xc7\x8a\x96\x15\xbc\x27\xa1\xe6\x65\xbe\x9d\x2c\x12\x57\xda\x54\xd8\x26\x8c\xa5\x86\x66\x5a\x83\x56\x7e\xdd\xfe\x48\xab\xdf\x30\x17\x4c\xc5\xa7\x4d\x65\x5f\x6c\x1c\xfc\x24\x02\x8a\xc0\xb8\xcb\x31\x45\xa7\x24\x4f\xeb\xe0\x1f\xf3\xbb\x3a\xb1\xf8\x6e\x1d\xe3\xf0\x68\x8c\xb0\x00\x4c\x67\x6e\x79\xca\xec\x60\xbe\x3d\x63\x3e\x76\xb3\x81\x97\x71\xc3\x4f\x42\x03\xba\xd4\x6d\x70\xdb\x18\x8b\x61\xdc\x1c\x35\x1b\xdd\x63\x53\x0d\x55\x2e\x52\x3f\xdc\x77\x37\x9c\x9a\x72\x1b\x6f\x26\xed\x65\xc5\xcb\xd4\x1e\xda\xca\xbd\x98\x3a\xc9\x11\x51\xf2\xb1\x34\xc5\x18\x79\xf3\x3b\xd8\x21\x8c\x1e\xe8\xec\x9d\x30\x3c\x96\x0e\x2c\xae\x83\x1c\xa7\xc2\x6f\xf9\x76\x76\x97\xbe\xf8\x32\xc7\xb5\xd2\x0a\x98\x28\x79\xff\x47\x85\x78\x33\x0c\x66\xb4\x0f\x26\xfd\x8c\xa8\x5e\x6e\x3b\x43\x96\xdc\x76\x1c\x51\x7e\xe0\x43\x9f\x0b\xa0\xd6\xe2\xf0\x79\xe8\x35\xd0\x46\xb5\xde\x9e\xe6\xb7\x86\x47\xe5\xea\xb9\x6b\x22\x0f\x20\xcc\xa0\xe4\xfd\xa4\x5b\x7e\x9d\x80\xe6\xbb\x01\x4a\x55\x0c\xc7\xc6\xa6\x00\x7a\x44\xd2\x75\x97\x97\x2a\x63\x9c\x68\x40\x26\x7a\xb3\x40\x96\xcc\x56\xc6\x33\x89\xf7\x1d\xa1\x57\xd9\x52\x0c\xdb\x80\x92\xee\x56\x84\x6d\x40\x01\x5d\xb3\xa8\x85\xea\xf5\x87\xb6\x27\x10\xf2\x49\x13\x41\x4f\xbd\xed\x56\xa4\xc3\xca\x4a\x77\x39\xcc\xfd\xa2\xee\xcf\xa1\x35\x96\xdb\xc1\x99\x10\x9b\xf9\x2c\xb3\x30\xef\x2e\x11\xee\xe0\xb6\x50\xee\xe5\xfc\x0d\x12\x9a\xb4\x46\xfb\xfe\xb2\x4e\x4b\x88\xb0\xc4\x6f\x28\x47\x06\x18\xde\x21\x22\x69\xd3\x63\x07\xd4\x78\x3e\x85\x8d\x2f\xa6\x21\x5f\x1e\xc4\x93\xbf\x16\xc8\x35\x01\xd6\x5d\x88\x9a\x5e\x13\x31\x26\xd1\xf8\xc2\x24\x33\x38\xe3\x86\xc7\x53\xce\xcc\xa6\xbd\xf4\xe4\xea\xfa\x92\xbf\x4d\x5f\x4f\x29\x02\x09\xc9\x04\x7b\xd2\x43\xed\x3f\x79\xe5\x18\x57\x96\x48\x41\x31\x81\xb2\x59\xf2\xe9\x1a\xd8\xf3\x8a\xe3\xc4\x09\xe4\xd4\x6b\xc4\xd1\x1a\x98\x0f\x91\xce\x1d\x46\x1b\x6f\xfb\x2c\xf5\xe2\x9f\x2d\x5c\x7b\x4a\xb9\xa1\x63\x09\x3a\xdb\xd0\x63\xf2\xa4\x27\xc4\xe8\x86\xfb\x44\x30\x8e\xc1\xcc\xb6\xae\x83\xff\x17\x94\xaf\x63\x9b\x5a\x99\xaf\x84\xdc\x18\xbe\xbb\x04\x89\xd9\xf7\x34\x00\x34\x69\x08\x3a\xbf\xba\x53\x6f\xdf\x84\x90\xb3\x70\xe1\x03\x3f\xe8\x18\x89\xd3\x78\xd1\x21\xe0\x1e\x72\x0b\xa2\x7c\xfa\xa1\xa9\xa5\xab\x3f\x9f\x53\x0f\x66\x35\xc0\x29\x7c\x85\xc2\xa9\xeb\x07\x95\xd0\x39\x4e\x8e\x6e\x02\x79\xcd\x01\xe9\x8b\x94\xd5\x24\xe2\xb0\xcc\x50\xa7\x10\x8c\x9a\xc6\x2e\xd2\x03\x37\x52\x42\xd1\x87\x19\xea\x9c\x25\xc5\xf9\xfe\x25\x9a\x3d\x79\xb1\x8f\xe6\xb3\x6b\x22\x37\x15\x41\x7e\x91\xed\x3b\xed\x2b\x24\xe2\xd1\xaf\xc8\x43\xb8\x6e\xc4\xb0\x0b\x81\x9a\x86\x35\x5e\x39\xf7\x45\x17\x00\x00\x9d\x7b\x00\xc0\xfc\xca\x68\xac\xfb\x13\x2c\x55\x65\x9b\x5e\x78\x57\x7d\x20\x15\x1b\x9d\x34\x20\x47\x82\xf3\x9d\xaa\xa8\x6d\x81\x0c\xf0\xfa\x05\xde\x7d\xb5\xf1\x0d\x40\x94\xd6\xc3\x85\x87\x92\x90\x38\xb2\x79\x6c\x34\xae\x27\x09\x5d\x31\xeb\x16\xcb\xec\x78\x95\x3b\xd4\x78\xad\xcd\x00\xc2\x49\xb6\xcd\x0f\x05\x88\x10\x74\xb1\x81\xa8\xb4\xf9\xc5\xf8\x75\x9c\xa2\xf1\xd5\x9d\x5a\xa4\xdc\x79\x56\x9e\x5d\x19\x04\x10\x8e\x63\x8c\xba\x54\xbf\x62\x61\x8b\x4c\x04\xb7\x7d\x73\x35\x25\x46\x14\xa1\xb2\x5f\x88\x24\x96\x0b\x62\xeb\x4d\x7d\x00\x85\xba\x79\xb1\x99\x0d\xd5\x87\x77\xc4\x2f\x79\x72\x61\x7d\x3f\x03\x20\xa9\x79\x98\xdb\x39\x84\x5e\xb1\x2d\xfe\x00\x79\x77\x37\x5e\x47\xcc\x81\xc5\xf3\x2d\x10\x9c\x17\xb4\x86\x33\x3a\x47\x16\xfc\x1c\x4d\xbb\xdc\x79\x1e\xfb\x24\xf8\xf1\xfc\x9f\x8b\x18\x31\xaa\x31\xbf\x47\x9d\x68\x9b\x7a\x10\x06\x10\x2b\x93\x20\x8e\x0d\xfd\xf1\x18\x07\xba\xc3\x20\x18\xfe\x70\x5d\x29\x77\x20\x0a\xa6\x85\x7c\xc4\xb7\xc8\x98\xac\x8b\x7e\x67\x57\xa7\x49\x81\x40\xbb\x3d\x98\x60\xca\xe7\xc2\xc3\xcc\xbe\x3f\x8d\x77\x6e\x23\x93\xe1\x1b\xca\xe5\x99\xf6\x8b\x81\xac\x41\xb7\x48\xe1\x7d\xfb\x72\x3a\x4c\xb0\xdb\x4b\xaf\xf0\xfd\xb5\x26\x96\x90\xbb\x05\x75\x6b\xb5\x09\x60\x21\xdb\x55\xb2\xe8\x51\xea\x39\x2d\xc4\x09\xdb\x28\xe1\x91\x86\xd6\x40\x06\xc8\xb0\xa4\xaa\xab\x9c\xda\x44\x34\xfb\x9e\x43\x8e\xca\xfe\x1d\x0a\x5c\xd1\xa6\x2b\x00\xdb\x92\xb8\x32\x7b\x70\x6a\xa6\xc8\x20\x4c\xaf\xb1\x90\xaf\x6f\xbd\x0d\x3c\x6b\x02\x49\x50\x69\x1b\x7d\xf5\xd9\x7e\xe4\x01\x4f\xb1\xc9\x41\xb4\x3c\x58\x39\xce\xe3\x74\x81\x68\x67\x0c\x10\xe0\xf4\x1d\x3e\x79\x2f\x89\x1b\x45\x45\xdc\x26\x8c\x9d\xcc\x58\x11\xd9\x97\x1b\x64\x64\x28\x01\x04\x03\xea\x43\xb6\x6d\x4d\x42\xe3\x4e\x98\x8b\xdd\x19\xfc\x93\x79\x43\x9f\x95\x42\x61\x92\x4f\x32\xb7\xed\x68\x37\xaf\xb1\xf2\x07\xd5\x83\x00\x44\x7e\xa3\xa2\xcf\x2c\x81\x38\x6e\xe8\x4c\x3c\x34\xc4\xe7\xb9\x3f\x63\x61\xc3\x2f\x7e\xf0\x77\x73\x2b\x99\x25\x82\x57\x51\x03\xfb\xf0\x4e\x2a\xa9\xaf\x7d\xda\x7e\x69\xd7\xb9\xbf\x70\xe1\x81\x0b\x30\x38\x4d\x72\x5d\x22\x06\xaf\xa1\x05\xa5\xcc\x03\x2f\xdf\x6d\x2b\x43\xe0\xc3\xa6\x53\x42\x47\x64\x74\x7c\xcf\x12\x60\xb9\x7c\x05\x7a\x22\x84\xe6\xfb\xc6\xb8\x0a\x0b\x78\xc9\xc2\x6f\x51\x25\xd9\x06\xc7\x0e\xc9\xdf\xde\x39\xb4\x5d\x09\x4a\x42\x0a\x59\x19\xbc\xa7\x3a\x30\xe7\xa9\xd6\x65\xdb\x7e\xab\x6c\xae\x1d\xee\x81\x2c\x0f\x91\x74\xfa\x8c\x0f\xc8\x65\x44\x67\xe3\x00\x91\xc6\xc7\x60\x29\xf4\x2a\xe6\x58\x8f\x91\x6b\xee\x05\x8d\x58\x06\xa9\x95\xf3\x62\x9d\x38\x8c\xcb\xcf\x54\xc3\x76\xac\xbd\x59\xf0\x40\xf6\x2a\x9c\xf9\xb7\xb4\xfe\x17\x4e\xc2\x6f\x7d\xf2\x64\x17\x91\x8c\x4f\x1c\x08\x41\x3b\xa1\x13\xe6\x3c\x37\x74\x74\xc0\x77\xfd\x05\x01\xb2\xb4\x6b\xab\x09\x7b\x03\x69\x3c\x17\x6a\x29\x6d\x6e\xc1\x05\xc6\x10\xc6\x37\xc6\xd4\x84\x51\x6a\xa3\x36\xf0\x21\xaf\xb1\x69\xb0\x1b\xab\xed\x0e\x61\xea\x51\x54\x84\xba\x86\xf6\xee\x5b\x75\xd7\xc1\xd1\xc2\xec\x66\x49\x27\x48\xd4\x5f\x0c\x35\xda\xd2\x97\x94\xb4\x82\xb4\x1b\xba\x0d\x74\xee\x4f\x0d\x14\xb2\x8b\x08\x89\xb5\xd5\xf0\xba\xb0\xbd\x36\x9d\x08\x7f\x94\xac\xbb\x74\x62\x9c\xbc\xea\xac\xf7\xef\xc8\xc6\x00\x16\x14\x66\x83\xfc\x8f\xc4\x7f\xa4\xa4\x77\x9a\xd8\x09\xb1\x6d\x4f\x3b\x2c\x7a\xe8\xa9\xdb\x12\xe5\xdd\xef\x44\x7f\x8e\x6c\x31\x7b\xf5\xef\x03\x99\x59\xef\xb3\x72\xd2\xc1\x67\x9c\x58\x80\x73\x5b\xca\xb5\xb8\xbd\x0c\xef\x9f\x40\x01\xcf\x75\x20\x54\x18\x7f\x00\x03\xcc\xa2\x85\xc8\x0f\x52\x28\xda\x2c\x2a\x9a\xef\x7b\x86\x4f\x43\x85\x91\x59\xb6\x92\x13\xb4\x38\xbe\x93\xc9\xe8\x54\x17\x77\x95\x9f\x98\x67\x90\x64\x4f\xf6\xec\xca\x53\xd4\x5c\xc1\xde\x91\xd3\x56\x82\xcf\xca\x5a\x7a\x07\xcf\x73\x9d\xfb\xf0\x25\xce\x2f\x34\x09\x3f\xb1\xc2\x2c\x5d\x31\x20\x2d\x2a\x31\xd5\xb4\x17\x99\x0a\x1e\x2d\xa2\x5e\x46\x6b\xb0\x81\x9f\xbc\xdb\x74\x22\x8f\x42\x08\x3f\x1d\x70\xfd\x6e\xdf\x55\x2f\x72\xf0\x44\x4c\x85\x17\x4f\xa1\x3c\xfc\x23\x84\x6b\xd7\x73\xc9\x88\x51\x6e\xb2\xfc\x7d\xe9\x54\xc4\xc2\x29\xd7\x12\x7d\x75\xfe\xe2\x8f\xe6\x82\x31\xd6\x26\xbc\x0f\x38\x06\x3f\x77\x65\x55\xc6\xf7\x85\x42\x28\xfc\x37\xe8\x00\x92\xca\x69\x93\x0a\x29\x3d\x92\xa0\xd8\x16\x4a\x39\x6d\xec\xbe\x5e\x3e\x1c\x00\xde\x11\x48\x5f\x41\x1d\x46\x9b\x8b\xfb\x5d\xa2\xdd\xa5\xf8\xca\x63\x19\xb7\x88\xa6\xd3\x23\xb8\xad\x0b\xe8\x37\xcf\x3e\x71\xee\x48\x54\xff\xa6\xd0\xe7\xef\x14\x51\xa7\xeb\x7f\xe4\x87\xae\xd7\x75\xe3\x34\xdf\x11\x8c\xbf\x2a\x4b\xa0\xcf\xd4\x66\x7b\xda\xff\xbb\x4d\x70\x6d\x2b\x32\xe1\x0b\x67\x45\x13\x16\x6e\x36\xff\xcc\xf5\xbf\x02\x63\x4c\xdf\xba\x96\x68\xb9\x96\xbf\x45\xf8\xed\xa1\x02\x6e\x1c\xb5\x07\x5a\xd4\x94\xd3\xb2\xbf\x6f\xef\xf2\xbf\x12\x61\xff\x02\x6a\x1a\x0b\x21\x4e\x26\xe8\x93\x48\x22\x2a\x04\x64\xda\x1e\xfa\x54\x10\x22\xc3\x06\x8e\x97\x2a\x68\x9a\x0d\x5f\x63\x48\x54\x97\x72\xb9\x21\x0c\xbd\xbe\x7f\xb7\x8a\x6b\x24\xd7\xb9\xa0\xe5\xa0\x0e\x10\xc7\x5d\x50\x5e\x90\x63\xf6\x2e\x89\x00\x66\xae\x98\x57\x65\x0d\x7b\x97\x41\x55\x2e\x1e\x8d\x1c\x12\x42\xe1\x26\x88\x96\x7a\xd7\xeb\xc7\x1a\xe7\x85\xb8\x14\x50\xd9\x86\x35\x8a\xf1\xcb\xfd\x3a\xd6\x2e\x03\x66\x67\x2b\x31\xe3\xc7\xaa\xe5\x77\x06\x5d\xf4\x4f\x98\xbc\x3c\xbe\xfb\x87\xbc\xbe\xab\xc0\xa1\x15\x90\x35\x53\xc3\x97\x5c\x20\x1a\xc5\x05\xa9\xd9\xd4\x35\xbf\xa5\x1c\x92\xd2\x61\xbb\xba\xf6\xa7\x8d\x38\xa7\xbc\x50\x4a\xb9\x9c\xac\x81\x7b\x2c\x61\xa8\x7d\x7d\x55\x53\xfe\xd4\x89\xb8\xde\x1d\x1d\x0d\x7e\xab\x36\xac\xb4\x1a\x19\x8c\x43\x07\x17\x15\xd7\x20\xc5\x55\xaa\x3b\x3f\xe1\x04\xf9\x62\xb5\x81\x00\x3b\xae\x4f\x9f\xc4\x33\xf8\xc5\x15\xd2\xac\xf4\xbf\x38\x7b\xce\xda\x5d\x5b\xf6\xd9\x1f\xaf\x25\xdc\xfe\x7b\x3b\xb0\x0c\x06\x08\xae\x3e\x8c\x84\x04\x01\xc4\xca\x81\x90\x0b\x89\x63\x6d\xc8\x5b\x65\xcc\x37\xdf\x2a\x42\x1c\x48\xdd\x20\x0f\xe6\xf1\x52\x4d\x91\x79\x47\xaf\xf0\xa9\xe9\xac\xb2\xa9\xaf\xee\xc4\xb0\x69\xc0\x36\xdc\x19\x16\x39\xe4\xae\x21\x33\xe9\xe0\xa8\xee\xb7\xe1\xf0\xb8\x42\xcf\x11\xa7\x2e\xf5\xdd\x48\x80\x97\xc5\x8e\xf4\x73\xc1\x12\x6a\x65\xd6\x8a\x1a\x34\x18\xbe\x51\xeb\xfe\x4d\x24\x34\xa0\x0f\x03\x0e\x2e\xfa\xee\xa2\x03\x3b\xe6\x27\xe3\x38\x90\x3e\x0f\x65\x10\x1c\x57\x79\x0e\x10\x00\x2f\xa2\xda\x9a\x7f\xab\xdd\x7b\xff\x2e\x30\x31\x7a\xc1\xce\x63\x11\x15\x55\x2a\xfa\x91\x95\x6a\xfd\xe8\x6b\x47\xeb\x17\xc7\x9e\x7a\xe5\x7d\x14\xbe\xfd\xca\x98\x3a\xde\xae\x76\x11\x4c\x1a\x17\xfc\x59\x07\x9c\x87\x49\x2f\x59\x5f\xe5\xb3\x19\x2e\x99\x2c\x80\xb3\xf0\x22\x64\xd8\x10\xf7\xfc\x21\x58\x3b\x0d\xf3\x3a\x7e\x94\x69\xda\x9c\x13\x1c\xf0\xd9\xa3\x36\x49\xcb\x5c\xc5\x78\x48\x59\x52\xf5\x67\xd9\x73\xe6\x94\x00\x26\xcd\x02\xd2\xe7\x69\x38\xab\x72\x6c\x20\xcb\x37\x7d\x21\x5c\xbb\x8f\xd7\x82\xba\x03\xbc\x2e\x1f\x6d\xab\x06\x70\x9f\xa6\xff\xe0\xdb\x88\xca\xcf\xe5\x32\x94\x93\xb5\x51\x76\x17\xb5\xb9\x35\x54\x3b\xb9\xd9\x40\x13\x4f\x62\xfd\xc2\x02\xac\x4d\xdc\x5c\xb2\xb9\xb4\x97\x39\xf6\x3e\x7f\x21\x6f\x4c\x74\x01\x5a\xa1\xae\xb4\x8b\x7a\x45\xad\xc8\xf8\xca\x3a\x50\x9b\x3d\x8c\xf2\x20\x04\xd4\x11\xe8\x37\xe2\xbf\xc2\x8a\xbb\xd0\x63\x26\xb3\xbf\x6b\x85\xce\xbd\x70\xea\x6b\xed\xbc\x6f\xaa\x3c\xed\xe6\x9a\xd2\x56\x8d\xff\xb4\xc2\x49\xdf\x21\x01\xe7\x98\x47\x5a\xcf\xd5\xb1\x50\x00\xaf\x80\x51\xe6\x60\x8b\xb4\x80\x8d\xb4\x80\x0d\xbc\x08\xa6\x57\x38\xbd\xcc\xc1\x16\xfc\xb2\x8d\xc7\xd7\x5a\x2b\x2b\x77\x15\xa6\xb3\xb8\x1f\x3e\x6b\xed\x93\x6c\x14\xbd\x06\x16\xdb\x33\x44\x02\x53\xbd\xbf\xb3\x80\xe9\xa3\x98\x3a\x62\xa4\xa9\x3a\xb8\xb7\x97\x16\x25\xfd\x4f\x0b\x2c\x9b\x53\x2c\x9d\x86\x30\x97\xbf\x50\xd4\x28\xc3\xc4\x05\x0e\xe2\x33\x3f\xc3\xc1\xbd\xe1\x6b\x02\x72\x9d\xda\xbb\xb0\xe3\xa3\x7f\x5b\x39\x28\xb1\x4f\xa4\x8f\x80\x99\x13\xe6\xde\x12\xf5\x86\xc9\x10\x0b\xf2\x66\xe0\xe3\xd9\xf5\x06\x65\x2a\xcd\x8f\xe4\xaa\x82\x86\x67\x42\x94\xc5\x8e\x4b\xa9\x02\x47\x60\x04\xe8\xbe\x63\xa5\xfa\x31\x60\xa6\xcb\xd0\x4e\x97\x21\xd0\x2c\x81\x6c\x55\x62\xbe\xd4\x3c\x4c\xa0\xa9\xc0\xa5\x6e\x39\x0f\xee\xde\xa2\xdf\x37\xa3\x9e\x95\xf1\xcd\xa0\x13\x14\xd4\xeb\x75\x51\x11\x21\x59\xc2\x20\x09\x20\x6c\xb8\x93\x34\x7e\x14\xfc\x20\x62\x4f\xaa\x79\xa7\xe4\xe6\xf4\xc2\x21\x3e\xe1\x68\x95\xdc\x29\x90\x7d\x3b\x89\xbd\xda\x45\xff\x4b\x84\xc7\x12\xd7\xd6\xba\x4a\x6d\xb1\xc6\x42\x42\xca\x8a\xe2\x86\xae\x59\x7e\x9c\x81\x07\x12\x1b\x4e\x13\xe8\xcb\x09\xa8\x1b\x17\xd7\xcb\xa4\xec\x43\x1c\x5c\x56\xed\x8d\xac\x58\xc1\x92\xfc\x32\x69\x7b\x16\x73\x71\x7a\x3c\xbf\xe9\xda\xdd\xd7\xa2\x55\xff\x4c\x85\xcb\x74\x1a\xd4\x58\xd6\xdb\xb0\x9c\xf8\x14\xf6\xfc\x8d\x9e\xc0\x9d\x73\x0e\x1c\x60\x73\x2c\x38\xb5\x94\x93\xcd\x02\x43\x16\x5f\x37\xb1\x60\x60\xbb\x80\x3a\x5e\x8b\x66\x91\x99\x49\x77\x76\xb8\xf2\xf1\xf8\xfd\x56\x6b\xc9\x15\x85\x7f\xf1\x60\x3c\x15\x1b\x6e\x4f\x35\x67\x03\x69\x07\x6d\x3b\x8c\x4c\x2d\xdf\x7a\xff\xbe\xc3\x92\x69\xc6\x07\x04\x6c\xb4\xc1\x22\x1e\x80\x08\xfe\xc8\xf3\x40\xb3\x22\xba\x04\x2a\x06\xbe\xf4\x3e\xf6\x78\x1b\x5b\xcd\x71\x4b\xc1\x30\x76\x72\xf6\x14\xc6\xf1\xa2\xb8\xf5\x60\xa5\xc8\xb8\xb7\x9c\xc1\x4a\x5c\x9a\x16\x2a\xf4\xdb\x69\x3f\xba\xfc\x8f\xb3\xd1\xc2\xfe\xb8\x24\x6f\x91\x58\xe6\xd1\xcb\x51\x3f\x2e\x79\xf8\x98\x94\xa7\x0a\x66\xbd\xf5\xe5\x79\x12\x27\xe3\xab\x29\x6e\x99\x97\xe8\xa1\xcc\xe1\x94\xb8\x72\xfa\x43\xf4\x58\x30\x72\x4c\x04\x1c\xdc\x03\x7a\x11\xec\xfe\x97\xe5\x41\x4a\xb9\x30\x7b\xcb\xe2\xef\x8e\xa1\xfc\x7d\xff\xdb\x81\xbf\x3b\xeb\x2a\xc3\xdd\x8b\xe8\x2c\x8f\xe8\xe5\x3b\x54\xf8\x68\x6c\x08\x66\x14\xc3\x72\x37\x08\xa0\x02\x6f\x43\x1c\x5c\x30\xb9\x9d\xd4\xa2\x2c\x9c\x55\x09\xd6\x11\x78\x32\x69\x7b\x0c\x58\x1d\x96\x96\xfe\xa7\xac\xa5\xe0\x1c\x7d\x0e\x6c\x80\x3b\x31\x56\xbd\x3f\x4e\x34\x4c\xec\x8e\x68\xfd\x64\xa8\x52\xd5\x3d\xee\xb7\xa5\x7b\x6d\x12\x43\xfa\x68\xd6\xe9\x11\x33\x24\x84\x05\x2d\xdb\x6c\xa4\x47\xd5\x96\x8d\x41\x27\x63\x5c\xcf\x01\xd0\x19\x92\x71\xfa\x56\x19\xdd\x86\xf2\x16\x18\xcd\x86\xf9\x30\x3a\xc4\x1f\xa8\x6b\x63\xff\xaf\x0e\x73\x49\xb4\xba\xd6\x4d\x42\xbf\xdc\xa8\x1a\x8f\x13\x2c\xa9\x06\xda\x25\x47\x1f\xb3\xf1\x12\xd3\x61\xa6\xfb\xf3\x5a\xbe\x9b\x0f\xf3\x17\x14\x30\x8c\x85\x8e\x07\x7f\x66\x30\x8f\xfd\xf0\x0a\x9a\xcd\x4c\x38\xcc\x00\x50\x38\x17\xe4\xdd\xd5\x6e\x90\x9f\x8a\x85\xdf\xfe\x91\xb9\xf9\xc3\xf5\xbb\xd6\x7f\x7b\x79\x59\x69\x2e\x7a\x7a\x5c\xa7\x9c\x1e\x13\xc5\xfc\x5d\x9d\xd2\xf9\xdc\xe5\x42\x11\x6f\xb7\xf2\x68\xd5\xf3\x3d\x10\xf3\xe3\xa3\xcb\xc3\xb8\xce\xc1\x64\x98\xff\xd5\x54\x81\x7c\x6b\x79\xe3\x8d\x47\xc7\x98\x37\x23\xfa\xa7\x98\x1f\xc2\x6b\x86\xa6\x8c\x8d\xbc\xbc\x8b\xe6\x2c\xdf\x5e\x7b\x59\x2c\x71\xc6\x21\x51\xeb\xee\x2a\x9e\xfd\x3c\x53\xb4\xba\x27\xfe\x30\xd0\xd8\xb6\xd9\x8d\xc9\x89\xc6\x3f\xbc\x4d\x32\x21\x87\xed\xae\x10\x78\x33\xa5\xe5\x45\x60\x46\xe8\xbc\x6d\x71\xc4\xdb\x95\xc9\x17\x97\xf9\xce\xe2\x5d\x3c\x7b\x52\xee\xbd\xd2\x59\xe5\x19\xb4\xfd\x06\x32\xcd\xdb\x83\x05\x84\x98\xf3\x96\x50\x57\x39\xec\xdb\x68\x43\xf1\xdb\xda\x56\xa9\x5e\x30\x86\xd1\xea\x39\x67\x84\xa0\x94\x50\x39\x4d\x4d\xac\xc9\x6e\xa1\xd0\xb6\x6a\x11\x94\x02\x02\xaf\x75\x98\x16\x78\xa7\x9d\x7b\xd3\xa2\x59\xe8\x56\x8c\x5f\x26\x8e\xa4\xf6\xe3\xb2\x7c\xa7\x18\xa0\x42\x58\x10\xda\x14\x94\xd2\x74\xd5\x2d\x7d\x59\x67\xfa\x42\x4b\xa2\x9a\xe9\x0f\xce\x97\xb5\x63\x5d\xa0\x19\x82\x40\x92\x48\xaa\x4e\xfb\x85\x42\x2e\x4a\x1f\x05\x73\x49\x80\x33\x25\xed\xa8\xec\xfe\x7f\x04\xac\xf8\x7b\x04\x9a\x02\xb7\xe9\x69\x11\x15\x10\x6c\x82\xd0\x7c\x78\xb1\x69\x89\xe0\xe6\xdd\x9f\x3e\x10\xc2\x15\xf3\xeb\x1f\x8e\xe3\x17\xd0\xa9\x91\xec\xa5\x28\x9f\xca\x78\x27\x71\x9f\x18\x81\xa3\x95\x74\xbe\xab\x1c\xed\xdf\xe7\x04\x52\x48\x39\x20\x87\x44\x41\xb2\xab\x31\x80\x12\x49\x08\x54\x1d\x99\xa1\xe6\x0e\x67\xd7\x6f\x97\x66\x85\x7e\x94\x9c\xd1\x16\x71\xfb\x52\xbb\x86\xca\xb8\x99\x4f\xe5\x91\xd3\x11\x37\x76\x8d\xe1\xf5\xb3\x70\xa6\xc9\xb4\xc6\x0a\x16\xaa\xea\xe2\xef\xf9\xf9\xbe\x7e\xdf\xe2\x6a\x99\x7b\x57\x59\xd4\x50\xdb\x23\xd0\xd6\x6a\xb7\xba\xa6\x4a\xf5\x9a\x8c\x79\xf5\xd7\x52\xaa\x6e\x85\x09\x51\x53\xdf\x63\x44\x09\x18\x81\x8f\x5b\x13\x54\xd5\x58\xa3\xa6\x53\xd1\x47\xd8\x8d\xd3\x50\xe4\x6b\xa1\x60\xef\xc5\x65\xe9\xa3\x33\xba\x24\x66\x33\xd3\xb1\x20\x1e\x38\x53\x6e\xfc\xec\x8a\x9d\xc0\x73\x75\xbe\xd6\x6e\xb9\xe5\xd9\xe7\x90\x3b\x21\x5c\x9e\x54\xf9\x35\x2a\x79\xcf\x20\x65\x5b\x0a\x52\x6c\x2a\xf2\xa8\xe0\x3a\xfc\x88\x33\xc3\xa9\x17\x1e\xe0\xb1\x8e\x8a\x43\x57\xe8\x65\xea\xf9\xa1\x32\x80\xc3\x76\x99\x97\x52\x9d\x59\xa0\x59\xc4\x5e\x0a\xa9\x0b\x2b\xd7\xc8\xa0\x23\x94\x47\x11\xe3\x39\x01\x0e\xf2\xa5\x8d\x99\x2e\x47\xbe\x9f\xf3\x1e\xf6\x9f\x11\x4c\x3d\xe3\x5e\x93\x05\xd8\x30\x24\x0b\x9d\x27\x9f\xca\xa5\xe0\xe4\x74\x8f\xe2\x37\x11\xd3\x04\x9a\xf1\xce\x29\x6b\x1b\x97\x22\x9b\x93\x5e\x9f\x9f\x7d\x3c\xc3\xf9\x79\x5d\x93\x6d\x4d\x74\xdb\x9b\x16\x61\x4a\x0f\x1b\x66\x90\x7c\xba\xc7\xcd\x03\x01\xe8\x30\xe9\xcc\xa3\xc6\xf1\xbb\x77\x36\x88\x6f\xf7\xb4\x94\x3d\x3d\x72\x4b\xad\x7e\xda\x55\x69\x6b\xea\x95\x15\x6b\x60\x1f\xce\x88\x69\x8d\x1a\xb7\x78\x52\xd0\x58\xab\x1e\x32\x3c\xa0\xf0\x22\xf7\x94\x64\xff\x36\x3f\xf2\x9e\xd7\x7e\x70\x5b\x47\x8b\x18\xc6\xfb\xe6\xa9\x79\xff\x5e\x9b\x73\x4f\xbb\x7e\x46\x0f\xc8\x5a\xef\x5a\x2d\xb2\x98\xa6\x96\xf7\x7f\xb0\x2e\xae\xd2\x8e\x9f\x33\x91\x77\x13\xcb\xa5\xd5\x51\x1e\x3d\x6b\xe9\x2c\x47\xea\x62\xe7\x02\x37\x02\x83\x3e\x58\x80\x64\x76\x59\x1f\x81\x22\xf3\x65\xb8\xb4\xf3\x47\x33\xce\xbd\x97\x7f\xba\xce\x9f\xb1\xdf\x7b\x72\x1f\x1d\x48\x7e\x66\x88\x52\x03\x7a\x20\xd9\x60\xc8\x36\xd9\xa5\x63\x0c\x7f\xef\xbb\x8e\x04\xc5\xdf\x60\x31\x39\x23\xaa\xf4\x7b\x37\xa3\x55\xdc\x94\x58\x96\xec\x2d\x9d\x4d\x12\x63\x0a\x0f\xca\x4a\x53\xd0\x89\xb8\xeb\xa3\x11\x00\x84\x3e\x0e\xc9\xb2\x79\x40\xdc\x9f\xef\x4d\x59\xe2\xde\x98\x0c\xb1\x1f\xb2\x64\x70\x45\xb5\xc5\x50\x25\x51\x84\x0b\x8c\xb3\x3a\x22\xb8\xf8\x2c\x79\xb6\x4b\x97\xd3\xf9\xc4\x1f\x6d\x0a\x1f\x8e\x36\xd8\xcf\x41\x72\x5c\xfe\x48\xf0\xbd\x09\x82\x97\xb9\xa8\xe4\xd2\x8f\x8e\x5e\x2f\xf1\x65\x85\x98\x92\xdf\x65\x87\xca\x01\xcf\xcf\x8f\xe3\xd9\x25\xe4\xa6\x3d\x30\xe6\xd5\x7f\x41\x39\x4a\xf0\xb4\x09\x23\x17\x66\xcb\x77\x50\xca\x81\xe2\xe7\xae\xef\x3c\x84\x8e\x26\xd9\xb6\x47\x07\xf7\x69\xb5\x70\xaf\xea\x1d\x28\x80\x9a\xad\x3c\x11\xd4\x7c\xe7\xc5\x71\x39\xf9\x14\x32\x6c\x6e\x33\x3d\x52\xe0\x9a\x02\xf3\x5d\x22\xbb\x78\x66\x65\x61\xc4\x4b\x01\x6a\xcb\xa8\xaf\x75\x71\x5f\x47\xb4\x65\x37\xf2\x00\xa0\xc6\x31\x47\xf9\x90\x0c\xb8\xb0\x95\xc9\xd2\xe7\x2e\xd6\xd5\x82\x46\x2b\x0b\xd6\x2a\xba\xbf\x17\x35\xf7\xfb\x93\x58\x25\x94\xa3\x4d\x70\xed\xf8\x16\x30\x2e\x25\x6d\xdf\x25\xb5\xa0\x0f\xfe\x44\x79\x79\x4f\xf5\x6d\x08\x57\xda\x33\xe8\xfd\xd4\x53\xd1\xa0\x28\xa7\xb8\x6d\x67\x44\xb1\x4d\x5d\x25\x1b\x52\xdb\x28\xc6\x41\xa6\xe4\x5e\x74\x68\x7f\xfa\x3b\xd4\xcd\x35\x16\x7b\x79\x83\x4e\xbd\xf6\xc0\xe4\x5a\x43\x47\xfb\x57\x43\xd2\x9f\x3f\x67\x7c\x6e\xe9\x8c\x0e\x16\x92\x54\xae\x6f\x70\x71\xfc\x01\x9a\xdd\xe7\x66\xa1\x9a\x9a\xdb\x53\xde\x43\x73\xee\x31\x02\x12\x68\xab\xc2\xb3\x65\x68\x44\x22\x0f\x07\xc7\x52\x50\x63\x1b\x8f\x4c\xd3\xe5\x31\xf4\xb1\xdd\x0e\x62\x8b\x72\xfb\xfd\x80\xba\xaf\xfa\x5f\x9d\xd9\x7e\xf4\xb8\x5f\xa5\x96\x16\x9a\x63\x3b\x66\x86\xef\x75\xed\x2a\x49\xd3\x68\x5c\xd7\xa8\xcb\x62\x0f\x8f\x95\xdd\x99\xf4\x3c\x53\xd0\x61\x41\xf5\x0e\xe4\xef\xb5\x5f\xe1\xf9\xfd\xec\xe0\xf2\xbc\xec\x8d\x90\xe2\x3d\xae\xcc\xdd\x5c\x46\xeb\x49\x6d\xef\x2f\x09\x13\xb6\x12\xbf\x5f\x6a\x0f\xf6\xc8\x19\x58\x33\x66\x60\x3e\xfb\x52\x3b\xf4\xa7\x9d\x8b\x81\xeb\xe9\xf4\xc7\x1e\x8e\xbb\xc7\x91\x3e\x61\x68\xc0\x05\x98\x90\x1f\x73\xd5\x2d\xf7\x23\x90\xf3\x9e\xd0\xe3\xee\x8d\x54\x53\x5e\x83\xbb\x35\x5d\x09\x35\x40\x1e\x90\x18\xd1\x94\x5d\x61\x5d\xca\x3a\x6a\xf3\x1c\x5c\xf6\x1c\x51\xee\x00\x6f\xb7\x21\xab\x84\xe4\xc7\x05\xa6\x3d\x63\x49\x84\xb0\x90\x17\xe8\x85\x65\xb1\x70\x7f\xb7\x3a\xbe\xf9\x8d\x09\x2a\x29\xec\x8b\x5c\x64\xbf\x35\x96\xeb\x16\x9e\xad\xf3\xed\x8c\x5b\x21\xde\x74\x3e\x6f\xe9\xbd\x47\x1b\xbe\xca\x2d\xb4\x27\xc4\xe0\xda\x73\xf0\x10\xfb\xe4\x78\xd4\x9d\x39\x5c\xf5\xd6\x35\x78\x68\x80\xdc\x15\x07\x52\xd9\x53\xa0\xc9\x43\x5d\xfa\x9c\x50\x2e\x43\x9d\xb0\x5c\xa6\xfe\x7d\x5f\xa9\x51\x68\x43\xba\x9d\xed\xfd\x11\x8a\x7a\xe3\xfc\x19\x41\xad\xaa\xc3\x0b\x2d\x64\x11\x27\x85\xf2\xb7\x63\xe8\x43\xd6\xd9\x93\x42\xa0\xf6\x40\x58\x8a\xb9\x48\xae\x0e\x89\x0f\xdc\x75\x97\xdd\x0c\x70\x96\xfc\x92\xc8\xfe\x35\x20\xa1\xcd\x26\xbe\x12\x90\x8e\x66\x5f\xf9\x58\xc0\x49\x98\x2d\x6f\x60\xc5\x6c\xd7\xd7\xbd\x54\x5f\x6d\x39\x50\xfa\x93\xf2\xb4\xe5\xa0\xac\xf5\x7a\xde\x74\x69\xf5\xd8\x32\x07\x8c\xf0\xcd\xcb\x19\xf6\xdd\x50\xbf\x63\xad\xa6\xd8\xe2\xb1\x0a\xd6\x31\xab\xec\x40\x36\x78\x0f\xa9\x2b\xe5\xde\x18\x0d\x24\x68\x90\xc9\x45\xcf\x4c\xfc\xf1\x5b\x74\xb7\xe2\xdf\xc9\x49\x40\x48\x29\x63\x10\x8a\x19\x75\xc0\xc2\x1b\x04\x10\x68\x57\xb3\x77\x84\xff\xd2\x22\x9e\xa4\x60\x58\xb3\xbd\xb2\x9e\xed\xe0\xfd\x28\x8c\xe5\x43\x5f\x4c\x66\x86\x74\x80\x7d\xd3\xef\x8f\x63\x7d\x1b\xbe\x98\xf4\xc2\xcd\x81\xdc\xab\x37\x9a\xb1\xfc\x3b\x7e\xe2\x8b\x06\x6d\x45\x52\xbf\x14\x2e\x8e\xc9\xaf\xab\xad\xd7\xc6\x64\x60\x9a\x95\x8a\xe0\x44\x42\xc1\x12\xec\x17\x61\xfa\xd1\x3f\x86\xce\xf2\xd9\xcf\xe5\x87\x58\xc2\xec\x95\xd3\xd2\xf8\x37\x7f\xa5\x44\x3e\x09\x8f\x10\x48\xb4\xd0\xce\x7d\x87\x05\x54\xe2\xd5\xbd\x08\x4b\x15\x34\xd7\xd1\xce\xdd\xf2\x1e\x1a\x3e\xee\xce\x68\x66\xff\xfd\x54\x6e\xb8\x47\x9c\xe5\xc0\xf0\xd6\x37\xd7\x51\xb2\x7e\x6b\xe5\x07\x80\xf5\x2f\xee\xf2\x08\xfa\x38\xdf\x60\xec\x73\xba\x35\xd5\x95\xad\x3c\x55\x40\xfb\x24\xf8\x47\xf4\x1e\xea\x2d\x6c\x32\x45\xb9\xd5\xd7\x45\x55\x51\x9e\x9c\x79\x45\x5c\xf3\xc1\x83\xfb\x88\x9c\xce\x08\xf7\x3a\x83\x1c\x9a\x7b\x73\x13\xa9\x8e\x05\x4c\x26\xb0\x17\x9a\x78\xc4\x3d\xb4\xfc\x2b\x7e\xf8\x40\x26\x73\xee\xf4\xaa\x03\x89\xb7\x0d\x51\x34\xd8\xc4\x19\x71\x64\x81\xa5\x9f\xa0\x27\x2e\x0b\x07\x30\x56\xa2\x03\x94\x33\x89\x27\x77\xd6\x72\x60\xda\x8c\x74\xd8\xc0\x10\xcb\xa2\x33\x9f\x10\xf6\x83\xdf\x15\x45\x87\xe4\x84\x51\x46\x0c\x55\x92\x7d\x87\xbf\x71\x06\x10\x75\xb3\x4d\x4a\x18\x68\xc6\x39\x52\x54\xee\x9c\x44\xd1\xe9\x55\xa8\xff\x8f\xa0\xe5\x0d\x4f\x1f\x8b\x29\xd5\x55\x58\xb4\x28\x0c\x24\xf0\xe4\xc6\xd7\x56\xa5\x91\xe8\xbe\xf6\x28\x2b\x99\x8b\x7f\x8d\x68\x55\xad\x76\xfc\x71\xe5\x27\xa9\xc4\xb5\x21\xfa\x93\x31\x46\xee\xd1\xb0\xd6\x47\xfc\xb2\x29\xf2\x34\xd3\x61\x3d\x32\x00\xa2\xe1\xf8\x94\xa5\xbf\x26\x8b\x71\x15\x72\xd4\x98\xd2\x00\x03\x6d\x95\x9d\xe3\xa4\x5d\x93\x1d\x10\x78\xa2\xd7\x8e\xef\x66\x94\xf1\xf6\xbe\x12\x75\x18\xa1\x39\x00\x1b\x56\xfc\xf9\x45\x4e\x55\x0d\xbf\xb8\xb2\x7e\xf4\x01\x5b\x10\x92\x24\xaf\xe1\xe6\xcc\x45\x1d\x35\xa8\x9b\xc5\x54\x82\x14\x36\xf4\x2e\xf9\xa1\x86\xf6\xda\x34\xfd\xa0\xe9\x11\xa1\x01\x6e\x64\x13\x57\x5e\x53\x85\x87\xfb\x6c\x98\xef\x5d\xde\x56\x9d\x6d\x98\xe3\xfa\x91\x0c\xa9\x33\xbc\x8f\xa3\x6d\xad\x8c\x2d\xd2\xa1\xb8\xf3\x6b\x11\xb2\x2c\x95\x72\x5f\x58\xb5\xf6\xdf\xa4\xfb\x3e\xf8\xf3\x8f\x59\xe3\xc5\xaa\x83\xf0\x8b\x30\xfd\xa4\xae\x01\x5e\xba\x4f\xd6\x10\x3a\xc9\xb8\xbd\xbc\x84\x23\x33\x8a\x79\x51\xcb\xb0\x56\xc0\x52\x65\xf5\xf1\x72\xa5\x22\xf7\x93\x25\xe8\x9b\x7e\x1a\xf3\x35\xa7\xfe\xbf\x97\x51\xed\xcf\xaf\x6e\xa3\x45\xcb\xc3\xbf\x46\xb8\x8e\xb3\xd6\xbe\x3a\x35\x58\xbe\x13\x03\xcc\xf3\x1d\x41\xc4\xbf\xfd\x30\x0d\x30\xe5\x3c\x3c\x5f\xd3\x9b\x06\xf8\xb8\x79\x7f\xba\x56\x7e\x02\x00\x16\xd3\xf2\x6f\xa4\xb4\x7e\x3b\x6f\x3e\xeb\xcd\x3a\x1e\x13\x3d\x23\x3f\xcd\x50\x9e\x55\xd1\xce\x4d\xd7\x0e\x72\x98\x0f\x3c\xe4\xc5\x14\x3e\xba\xcf\x8c\xc9\x1f\x75\x3f\x24\x9b\x94\x01\x1e\x9b\x43\x54\x12\x49\x5a\x1a\x1f\x03\xb8\x9d\xa8\x81\xc9\xef\xf4\x85\xc8\xaa\xb4\x9b\x47\x25\xed\xab\xc0\xd5\x4a\xc9\xe2\x88\x6c\xd1\xd4\x99\xc7\x2d\x45\xbb\xb0\x9d\xf7\xe1\xeb\x6a\xba\x6a\x69\xef\x53\x21\xad\x2b\x5f\x7d\x8c\x6d\xae\x3d\xd9\x80\x1c\x9f\x2d\xf9\xb3\xf5\xfe\xe6\xab\x11\x0a\x68\xb6\x68\xdb\x3e\x11\x66\x87\x9a\x88\xe5\x3b\x09\x4f\x73\xc6\xd3\xa5\x7a\xe5\xb8\xca\x15\x69\xbd\x60\x9f\x91\x6e\x49\x43\x6c\x92\x8e\x20\xea\x4b\x29\x4b\x6b\x19\x10\x55\x90\xef\x42\x8b\x3f\xdc\x6c\xaa\x9b\x7d\xb8\xfd\xe9\x85\x20\x95\x34\x6f\xd6\x1b\x0f\x90\x3f\x65\x8e\xed\x3e\xdc\x54\x2f\xa6\xdc\xd0\xf9\xc1\x7d\x96\x55\xec\x2f\x2f\xd8\x5a\x40\xc6\x81\x9c\x72\x8b\x07\x64\xb0\xb8\xde\xfe\x3a\xbd\x55\xa9\x95\x40\x1d\xec\xcf\xe5\x9f\x9f\x80\x20\x9b\xc4\xfa\x92\xeb\x8c\x49\x81\xc8\x38\x1e\xf3\xbb\xf1\xfb\x3f\x92\xcc\x82\x2b\xea\xef\xeb\xe2\xdf\x19\x06\x18\x42\x19\x4a\x40\x05\x86\x2e\x09\x09\x01\xa9\x19\x69\xa4\x53\x1a\xa4\x41\x1a\x04\xc9\x01\x01\x11\x41\x60\x08\x29\xe9\xee\xee\x46\x50\xba\xbb\xa5\x41\xba\x73\x9e\xf5\xfb\x3f\x6f\xe0\xec\xbb\x3e\xf7\xec\x7b\xf6\x5d\x67\x2a\x93\x07\x51\x74\x74\xf9\xfb\xde\x5b\xcf\x9f\x28\xde\x3f\x81\x60\xe1\xed\x4d\x13\x8f\xb1\xf6\x43\x85\xe2\xe8\x98\x5a\xcb\x34\x75\xfb\xcb\x2f\x3e\x1b\x9d\xca\xff\x8c\x53\x96\x23\x4a\x60\x21\x6e\x33\x14\x81\xa9\x24\x23\x95\xc3\x38\xc1\x26\x44\xba\x18\xde\x09\x43\xcc\xce\x69\xd3\x4d\xa4\x1b\xae\x31\x95\x5b\xa9\x64\xd9\x1f\x32\xce\x21\xed\xf5\x65\x6f\x67\x4e\x67\xaa\x8b\x2d\xa8\xa7\x9d\x44\xf8\x89\x6b\xf9\xb7\xe5\xad\xe9\x6f\x49\x38\xdd\x20\x54\x22\x6f\x95\xd2\x57\x2d\xca\xbf\x07\xa6\x98\xcf\x74\x28\x32\x8a\x3c\x5f\x7c\x44\x9e\xa0\x34\x2b\xd6\x9a\xd2\xb6\x28\x60\xad\x05\x26\x04\x78\xfa\xf9\xd6\x9d\x6d\x64\x6e\x82\xfa\xf2\xf9\xff\xc5\xd0\x68\xd4\x97\xac\xd5\xdc\xa1\xef\x2a\xb2\x32\xe8\xdd\x0e\x3f\x61\xaa\x0f\x30\x2b\xcb\xee\xe1\x97\x82\x43\xdd\xdf\x06\xbd\x67\xaf\x99\x66\x74\x80\xcc\x58\x94\xf2\xf2\x29\x81\x9f\x7f\x4b\x9b\xc4\xea\xcb\x17\x07\xcb\x93\xfb\xb4\x63\x9b\x82\x2f\x6e\x0d\x0d\x5f\x14\xf0\x59\xb9\xde\x1c\xee\x3e\xfe\xb4\x2a\xb7\xbc\xff\x18\xfe\x58\x61\x8c\x7e\xb9\xb1\x9e\xfc\xd6\x6f\xa0\x43\xde\x3a\x48\x37\x7d\x92\x60\xe4\x1b\xd3\xf3\x8d\x07\x1d\x10\xc2\xdb\x94\xc1\x4f\xd8\x5e\xc1\xd1\x44\x5c\xcf\xd7\xda\xed\x8b\x81\x78\x55\x1e\x66\x5b\x51\xd9\x38\xc8\x97\x1b\x91\x8d\x9b\x9d\x66\x84\x42\xb2\xbc\xbc\x16\xd4\x38\x78\x7f\xa0\x47\x52\xa4\xfa\x6b\x10\x84\x69\xf3\x95\xce\x65\x2d\x68\x78\xf7\xe5\x48\x5e\xb9\x93\x80\x67\x53\x2a\x08\x94\xb9\xd0\xc5\x0c\x4c\x50\x22\xe3\xee\xd0\x77\x9f\x38\x95\x1c\x5c\x16\xd0\x72\xcc\xdb\x20\x1d\x64\xf0\xdf\x66\xb7\x12\x7e\x16\xb1\xa0\x0b\xbf\xcb\x0e\xf5\x79\x49\x26\x8c\xf4\xa8\x99\x50\x7b\xd9\xd1\x64\xba\x21\x31\xd4\x0b\xd2\x19\x1b\xc8\xea\xe1\x3f\xb2\x7b\xd8\x30\xe9\x48\x14\xa6\x52\x3e\x6e\x3c\x8e\x5d\xda\x28\xf4\xd1\x86\xef\xe2\x44\x53\xe9\xe6\xa7\xda\x33\x7b\x25\x4a\x85\x21\xcd\xf5\x65\xb1\x36\x52\x91\xcf\xc2\x27\x64\x40\x1b\x47\xb3\x85\x17\x1c\xb1\xad\x29\x89\x72\xda\x33\xee\xa5\x54\xbf\x31\x37\xba\xfd\xfe\x97\x46\xb7\xc7\x7f\xd8\xe4\xb1\xde\x1c\x63\x59\x5a\xff\x8e\x8e\x89\xf1\x35\x5e\x08\x12\x87\xde\x0a\x87\x1c\x0c\x3d\x07\x10\x8b\x04\xaa\xee\xbd\x9e\x4c\x60\x76\x32\x2b\xf4\x13\x79\xc9\x22\x19\x66\x34\x88\x25\x92\x27\x00\x46\x88\xe5\xd9\xab\x27\xc0\x10\x5c\xe7\xc2\xb2\x7e\x39\xe0\xc5\x6a\xf2\xe1\x44\x2f\xe4\x11\xc3\x9f\x62\xf3\x5e\xab\x86\x98\xbe\xbc\xe7\x02\x25\xcb\xe9\x60\xd8\x2b\x6c\x18\x70\xc3\xc7\x9a\x83\xab\x82\x22\xb8\x6d\x80\x22\xa5\xdb\x8d\xab\x8c\xcf\xa8\x83\xdb\xa7\x97\xd4\x02\xa7\x9e\x62\xca\xb9\xbe\xa8\x95\x44\x36\xe1\x63\x1e\x4b\xfa\xe9\x19\xac\x68\x84\xf0\xd7\x68\xaa\xb7\x31\x68\x88\xe2\x97\x62\xe0\x72\xae\xc7\x7c\x5b\x1e\xe7\x87\xdd\x1f\x52\x50\x47\x06\x28\xa3\xb9\x0a\xdc\xe9\x52\x00\x75\x73\x67\x79\xa7\xde\x17\x6b\xd4\xfd\xbc\x3b\xa4\x65\x84\xc7\x9c\x82\x7b\x58\x7b\x5d\x47\x07\x7f\xf7\x85\x14\x07\xb0\xf4\xf4\x76\x13\x7b\x3b\x0f\xdc\x2e\xd9\xea\x50\x54\x20\x60\xae\x4d\x5d\xa7\x00\x24\x66\x68\x2e\xd0\x53\x75\xaa\xc6\xca\x3c\x21\x8f\x21\x09\xc7\xc3\x3d\x03\xf3\xc7\xa1\xfe\x36\xbb\xb5\x95\xb3\xb6\x1d\xe6\xb3\x0a\xfe\x13\x08\xc7\x7a\x0e\x12\x88\xb9\x7a\x18\xb2\xd9\xa0\xd6\x97\xf4\x1e\xd1\x3b\xa4\x99\xb4\x2e\x72\x9c\x6a\x4b\x7b\x9c\x0a\x94\x81\xe1\xc5\xf8\xed\x1a\x10\x51\x8b\x76\x0d\xe8\x9d\x02\xb2\x3c\x23\xb2\xad\x22\xda\xbf\xe4\xa7\xcc\x1d\xcd\xc4\xc9\x25\xf4\xa3\x59\x1c\x80\xe8\x79\x6e\xd3\x8f\x7d\x6e\xbe\x40\xaf\x23\x53\xf3\x95\x7c\x53\x6e\x78\x6a\xdd\xf1\xe7\x72\xc4\xcf\x00\x27\xba\x99\x4d\x6c\x68\xb1\xb0\xe2\x71\x34\x08\xf1\x93\x83\x83\x9b\xd5\x2d\x1f\x2f\x92\x1a\x09\x30\x5a\x28\x70\x97\x90\x55\xf3\xc1\x68\x70\x28\x9f\x11\x01\x08\xef\x37\x5a\x7c\xb9\xb6\xf2\x03\xcf\x05\xb1\x01\xbe\xec\x6e\x7b\xde\x92\x06\x6a\x0e\x10\x24\x06\xc9\xed\x60\xca\x2d\x5f\xdc\x43\xac\xe9\xca\x71\x62\xb5\xa1\xbb\x43\xca\x9e\xb1\x5b\xae\xe2\x97\x8d\x6c\xff\x40\xed\x78\x90\x1a\xb5\x5c\x6a\xf9\xe7\x69\xb5\x5e\xa7\xe9\xbe\xc3\xfc\xee\xd2\xad\x21\xce\x24\xf2\x98\x40\x39\xf8\x8c\x05\x0f\x87\x1c\xd9\xa6\x0e\x13\x0d\x64\xf2\xeb\xe0\x95\xc5\xa8\xa6\x94\x0b\x1f\xb7\x94\x0a\x17\xe7\xb8\x8f\xe3\x4f\x51\x3f\xd7\xe7\x2a\xd4\x21\x0b\x7b\x62\xe2\x76\xf9\x22\x5b\xb5\xba\x59\x5d\xd3\x18\x8a\x87\x15\x14\x6c\x24\x52\xd2\x96\x78\xcb\x63\xac\x5d\x89\x97\x2c\xca\x67\x5b\x81\x81\x17\x7e\x53\xe6\x8c\x8d\xa3\xe0\x0d\x89\x0d\xf4\xdd\x60\x7a\x41\x64\x62\xee\x0a\xdc\x09\x3a\x78\x42\x11\xef\x43\x24\xaf\xde\xd9\xc7\x26\x7c\x26\xab\xeb\xfd\xb0\xc0\xfc\xba\x7a\x29\x7c\xd1\x41\xa1\x83\x72\xf4\x33\x05\x7c\xfb\x71\x29\x08\x31\xa9\xa5\xe6\x77\x5b\x7d\xe2\x60\x91\x64\x60\x05\x89\xd0\xf2\xeb\x27\xee\xa4\x26\xdf\x3f\x28\xf9\xd3\xc6\xf6\xa2\xcf\x18\x6c\x6b\xe7\x43\x5a\xfd\x40\xc4\x7f\x70\x61\x73\x35\x3b\xec\xd7\xd3\xe4\x89\x15\x98\x01\x52\xa1\x3a\x9b\x3e\xbb\x25\xc7\xe2\x5b\xbf\xed\xd8\x94\x31\x35\x73\x9e\x2f\x7e\x70\xe8\x94\x58\xb1\x0f\x27\x0b\xa4\x92\xec\x33\xb7\x3b\xd1\x79\x1a\xe8\x6e\xde\xf1\x7c\x27\x31\xc9\x4d\xd8\x26\x9a\xb1\x5a\xaf\x43\x2d\x55\x07\x33\x6d\x6a\xdf\x1c\x17\x17\xe8\xa5\xee\x7a\x84\xf7\x0b\x77\xe9\x72\xb3\x60\x3a\x95\xb7\xd7\x55\x43\x40\x78\x4f\xbf\x49\xe7\xd1\x08\xb3\xd9\xcd\xaa\x0d\xcd\x04\x36\x1e\xf9\x03\xd0\x4e\x18\x4c\xf5\xca\x94\x1c\x9a\xe8\xc3\xdf\x09\x1f\xec\xe6\x6b\x1c\x57\x84\xfc\x13\x60\x66\xa2\x54\xb9\x33\xac\x6f\xfe\xee\xcc\x35\xb1\xec\x4a\xa0\x27\x48\x89\x07\x30\xf2\x7d\xad\xab\x1d\x62\x6b\xeb\x98\xd0\x5e\xf3\x3e\xb0\x18\x40\x50\x5d\xd0\xcb\xe0\xc9\x4a\x5f\xb7\x58\x5c\xd7\x35\xe5\xad\xab\x50\xd9\x4c\x35\xcb\x76\x77\xde\x26\x5d\x2f\x73\x2c\xed\x09\xbe\x9a\x4a\xe7\xa5\x9c\x3a\xcd\xfa\xf1\x3c\xbd\xfc\x55\x59\xc7\xd6\xc3\xef\x3c\x43\xab\x91\x47\x5c\xa6\xdf\x63\x67\xc3\x9a\xd3\x45\xae\x5e\x84\x5f\x19\x05\x0b\xc9\xbd\xc4\x4d\x33\x66\xcb\x7f\xdb\x8d\x5d\x07\xdc\x9a\x02\x8e\x41\xa5\x18\xaf\xdb\x32\x0d\xcd\x43\xff\x4f\xb9\xec\x69\xf1\x3b\x9e\xd5\x69\x3a\x86\xcd\x29\xd5\x72\x4f\x00\x6d\x3a\x83\xeb\x1d\x0e\xdf\x63\xc0\xcd\x06\x67\x9d\x08\xc4\x23\x99\x9b\xcb\x74\xcc\x2b\x99\xf1\xb3\x5e\xe6\x49\x77\xb7\xc6\x71\xa3\xf6\xd3\x38\x28\x2b\x1a\xc4\x82\x42\x31\x41\x61\x46\x24\x94\x2f\x48\x8b\x00\x44\x4e\x3c\xf3\x9e\xbe\x55\x9c\xf1\x34\xef\x7a\x6d\x3e\xe1\xcc\x6f\x2d\xd5\x8a\x72\xd6\xb6\x3a\x57\xbd\xeb\x50\x85\x7c\x68\x49\x85\x73\x9b\x5d\xb3\x19\xc9\x82\xda\x68\x86\xb0\xa6\xbe\x1c\xa9\x5e\x0b\x56\x75\xff\xe5\x9d\xff\xbc\xf6\xec\xc8\xb7\x6e\x5a\xe4\x84\xd4\x5b\x30\xc0\xbb\x99\x9e\xfd\xc8\x26\x80\x27\x36\x68\x74\x39\x2d\x4a\xf1\xf8\x9f\x81\xae\xf0\x23\x43\x05\x90\x48\x71\x5b\x22\x06\xae\x91\xdd\x63\x5f\xa9\x38\xe3\x39\x70\xa0\xca\x9a\xda\x4f\x39\x16\xf8\x2b\xea\x07\x64\x56\x69\x49\x94\xfc\xf3\x19\xe0\x19\xc9\x59\xca\x2f\xf9\x3e\x9e\x6e\x9c\x5e\x72\xa1\xc7\xf7\x69\xc9\x27\x32\x56\x32\x25\xa6\x0f\xe8\x9e\xe7\x8c\x21\x7a\x8d\xfc\x11\xe6\x6f\x22\xd2\xb9\xaf\xe2\x00\xfc\xfd\x27\x21\xfe\x55\x74\x00\x82\x5d\xf7\xc4\xf3\xb6\xf8\xa4\xa8\xe1\xf6\xd5\x2f\xfc\xb3\x4e\xe7\x4b\x48\x3d\x7b\x1f\xc5\x93\xec\x4b\x0f\xe5\x7e\xda\x7a\xfc\xb9\xcf\x1f\x57\x0f\x69\x2f\x9f\x09\xef\x1f\xe4\x6f\xd9\x5d\x61\xda\xb8\x68\x02\x56\x3e\x49\xfb\xd2\x66\xb6\x2e\xff\xae\x09\xc6\x43\xbe\xa1\x54\x27\x79\x95\xf8\x9b\x41\xfb\x86\x02\x7b\x33\xbd\xe7\xb9\x28\xc1\x2d\x4d\x6d\x39\x0c\x21\xc8\x84\x00\x03\x24\xae\x72\x8a\xee\xce\x4f\xb0\x9e\x7e\x1b\xa6\x33\x65\x4d\xac\xce\x66\x5a\xec\xf0\xd2\xcd\xb1\x08\xdd\x86\xce\x70\xe3\x08\x10\xfe\xf1\x3e\xbb\x7c\x65\x09\xb4\x0b\x81\xf5\xd4\x6c\x3a\xe8\x9a\xd9\x2b\x46\x5f\xf4\x42\x25\xdf\xb3\x46\xf3\xf7\x56\xbf\xa9\x78\xaf\xf0\x42\x81\xe1\x99\xf5\xb2\x65\xc7\xe8\xca\x33\x1a\xd2\x29\xea\x91\x00\x27\xe9\x74\x3f\x38\x22\x87\x6a\x47\xfc\x77\xe8\xa0\x78\xf9\xfe\x2f\x9a\x96\x20\x36\xda\x9d\xfa\xbd\x74\x27\xfe\xea\x64\x63\xf4\xf2\xbc\x70\x8e\x81\x2b\x7f\x35\xd6\xed\xec\xb1\xda\xf8\x41\xe7\xdc\xc3\xe3\x9f\x30\x0b\x60\x05\x00\xb7\xce\xdb\x5d\x7c\xcd\x47\x0a\x91\x80\xa3\x04\xbe\x0c\xd0\x53\x3e\xfb\xfc\x8d\x95\x2c\x2f\xe3\x52\xef\xca\xe4\xda\xcc\xf5\x01\x39\xd0\xf3\xb2\x53\xd5\xc7\x00\xc7\x83\xee\x31\x7a\x37\x33\x5c\xb1\x02\x1f\x91\xc5\x0e\x0f\xc4\xdf\xc9\x10\xee\x7b\x8e\xca\xe5\x28\x2e\x1c\xc9\x94\x7c\xa7\x55\x66\xf7\xc9\x0c\x64\x29\xa7\xa4\x3b\x86\xde\x34\x19\x8c\x7d\x97\xe7\x07\x04\xe2\xc1\xd3\x21\x9e\x97\xe5\x12\xb4\xed\x21\x53\xde\x26\x18\x23\x04\xaa\x4f\xf7\x24\x54\x21\x4c\xe4\xb2\xbd\x16\x2d\x72\x26\xfd\xf7\xa4\x42\xed\xe3\x2d\x50\xf7\xde\xd3\xd5\x51\xda\x4f\xd0\xe3\xcd\x43\xb5\xe9\xf5\x97\x88\xa6\x47\x45\xb7\x12\xd6\xf3\xf3\x0c\x39\x92\x98\x7b\xac\x7b\x43\x09\xe8\x75\x9b\xa4\xe1\x6a\xd8\x37\xad\xb8\xcc\x17\xe1\x5f\xeb\x48\x9c\xe1\xbc\xd2\x36\x83\xdd\xb6\x66\x65\xfb\x16\xcc\x08\x6b\xf2\x20\xa9\x8a\xb0\xdd\xb0\x5f\x33\x28\x21\xf5\xd7\xc5\x0d\x25\xeb\x77\x36\x07\x25\x7e\x1c\x40\xc7\xaf\xd6\x11\x51\x54\x98\x42\xff\xab\xd5\x0d\xa4\xd1\x2f\xbf\xcf\x80\xd3\x02\x7d\x3f\xde\xb7\x5f\x04\x8d\xcf\x26\x14\x8e\x1f\xca\xce\x55\x44\x48\xc3\x09\x1f\x54\x01\x84\x27\xcb\x9f\x29\x2c\xd0\x84\x7a\x90\x63\xaa\xc6\xb2\x0b\x79\x53\xfc\x92\x8b\x31\x5a\x49\x3c\xbc\xc0\x4e\xd6\x3b\x83\xa7\x5e\x06\x2d\x3a\xa7\x1f\xbd\x3c\xcc\xad\x20\x58\x10\x8e\x3f\xa2\xf7\xec\x90\x09\x83\xdd\xff\xd0\xd9\xf8\x10\x11\x7b\x44\x64\xf6\x6b\x68\x38\xed\xd1\xb2\x26\x98\x07\xd7\x66\x82\x6f\x05\xab\x1f\x11\x94\x51\xaf\x18\xfd\x5e\x01\x77\xb7\x75\x2e\x17\xe2\xf4\x8b\x98\x96\x61\x8d\x10\x04\xff\x85\xec\x11\x75\x7b\xd2\x6e\xcd\x0c\x92\x81\x25\xf2\x6b\x8c\x59\xcf\xc6\xea\x82\x7a\x14\x55\x77\x1f\x1b\xc9\x25\xa2\xa7\x89\x79\x0a\xf9\xb1\x4d\xc2\x1d\x84\x90\xfc\x86\x21\xbf\x83\x94\xa2\xec\xec\x29\xbe\xa5\x9b\x33\x1f\xf7\x4c\x09\x9f\xff\xdc\xe7\xeb\xe3\x0e\x27\xf3\xfb\xf3\xfb\xc5\xf5\x39\x5c\x15\x6f\x52\xa1\x6a\x2c\x2f\x79\x98\x55\x62\x59\x3f\x5a\x22\x8f\xb7\xaf\xcb\x6f\x6f\x3e\xbf\xf5\x32\xba\x14\x43\x4c\x5a\x9a\xa5\xfc\x0e\x0a\x80\x80\xdc\x50\x86\xd7\xda\x97\xd4\x5b\x84\xce\xd3\xdd\xcf\xd3\xb5\x12\x77\x98\xaf\xee\x87\x89\x81\xf4\x42\x05\xea\x1f\x4e\x31\x91\x31\xc5\xc8\x41\x7f\xdc\x54\x73\xbf\xf5\x12\x14\x08\xa5\xad\xa9\x27\x60\xae\x4d\x59\x95\x81\x48\x57\x15\x15\xb3\x90\x73\xe5\x95\xc6\x72\x1c\x81\x53\x3e\x7a\x3d\xf1\xe5\xcb\x79\xf8\x65\xb1\xbe\xff\xf0\x15\x3a\x2b\x73\x71\x01\xef\xfa\x66\x93\x6f\x77\xb8\xbf\x6a\xcc\x9d\x3d\x63\xae\x7c\x7a\x52\xc5\xb3\xa5\x63\x78\x68\x09\xef\x7a\x3f\x82\x60\x97\xfb\x2d\xdf\x98\x6f\x48\x06\xb0\xda\x29\xf1\xe2\xc0\xdf\x5c\x00\x43\x8a\xbf\x7b\xf4\x5c\xad\x53\xb8\x7b\x21\xf8\x65\x43\xe9\x73\xd4\x7c\xd0\xb3\xc7\xab\xa9\xb2\xd7\xe9\xb7\xb6\xae\x12\xa5\xbd\x03\x15\xd0\xa2\xa3\x97\xd1\x02\xf1\xbf\x2e\x6a\x49\x2e\xee\x2b\x15\xee\xb3\x7a\x70\xb5\x4d\x3f\x92\x75\xa1\xe6\x9e\xda\xce\x04\xcd\x0a\x24\x6e\xfe\x2e\x61\x80\x9b\xb2\xbe\xd2\x8a\xd1\xd1\xa4\xb0\x1b\xd9\x05\x51\xbe\xcb\xc2\xe9\x38\xc2\x63\x05\x21\x23\xb5\xcb\x91\x51\x6d\x3a\xcd\x82\xfc\xb9\x7f\xa0\x7d\x3f\x2c\x73\xbc\xf7\x86\x0b\xdb\x66\xc4\x38\x31\x63\x8a\x2b\x93\x15\xdc\xe4\x52\xed\x05\xe1\xb6\x71\x36\x3b\xdf\x22\x08\xfa\x96\x1d\x7f\x6a\x2d\x09\x90\x7a\x62\xa9\xbe\xa5\xbd\x33\xf9\x6b\x5c\xe7\x87\x31\x5b\xbd\xa1\xc5\x4a\xba\x25\x96\x06\xc8\x4e\x8f\x1b\xa6\x61\x3c\xfa\xef\x05\x28\x5c\xb9\x0f\x37\x47\x70\xe2\x95\x28\x6b\xcc\xb5\x2d\xad\x45\xc5\xed\xb4\x82\x1d\x8a\x95\x13\x55\x5e\x7c\xbd\x26\x8f\xaf\x35\x22\xbe\xcf\x74\x74\xa6\x33\x1e\x8b\xf5\xc8\xa4\xb6\xb3\xe2\x60\x1f\x6c\x0a\x4a\xc6\x0f\x9e\x00\x4a\xd7\x10\xed\xcf\xb3\xb3\xa5\xb5\xf9\x29\xec\xc8\xe3\x70\xfa\x35\xa4\x78\x57\x8e\x3b\x9a\xf2\x44\xee\x9b\x95\x8e\x37\xa0\x06\x7c\x01\x3f\x4b\xaa\x14\x1a\x78\xa5\xa7\x2a\xed\x0e\x08\xbe\xa6\xdc\x16\x9b\x9f\x92\xfd\xcd\x7a\x99\xd6\xcc\x02\x73\x0a\xe9\xa8\x78\xef\x59\x54\x0f\x37\x1e\xe6\x56\x30\x9e\x7b\xbd\xb4\x56\x6f\xb3\x71\x7b\xbb\x8c\xcb\xb2\x84\xb7\xea\xff\xcb\xe9\x57\x03\x5b\x05\x09\xee\xd0\x08\xe5\x07\x95\xe7\xa8\xd9\xa0\x69\xbd\x36\x77\xf8\xb0\xea\xe9\xa5\x30\x58\x3b\xc6\xe6\xeb\x7b\x07\xf9\x0f\xd5\xfa\x20\x57\x40\x7b\x6c\xdb\x4b\x2d\x8b\xdc\x9a\xe8\xeb\x23\x29\x3c\xa1\xb0\x5f\x30\x7f\x2a\x93\x2a\x92\xf4\xcc\x31\xf4\xe7\xdf\x45\x4c\x3c\x00\x7c\xb1\xe3\xad\x8d\xa4\xc2\x61\xcf\x4f\xa5\xed\xd4\x02\xb6\x57\x95\x78\x74\xd9\xfc\xb0\x74\x43\xbc\x50\x42\xef\x80\xb2\xb8\x17\x0c\x7f\xd8\x54\xde\xc6\x47\xd3\x37\x4c\xbc\xfa\x94\x30\xeb\xc6\xbd\xc3\xe4\xa5\xe0\xe2\xf9\xbc\x82\x58\x79\xea\x4d\x3b\x95\x4c\x6d\x56\x46\x4b\x1f\x7f\x43\x8c\x71\xac\xe3\xd4\x98\x67\x0c\xb1\x66\xc0\xfd\x73\x28\x26\x2a\xa5\x1c\x29\x61\x16\x73\x2c\xb1\xc9\x7f\x28\x19\x86\xda\xf8\x3b\x74\xb3\x23\xb6\xa8\xba\xbd\x7d\x99\x53\x8e\xc7\xbd\xdf\xf3\xf3\xd1\xb6\xe1\x91\x07\xbe\xc8\xe9\x62\x7d\x95\x8d\x7c\x71\x7a\xa3\x90\xc8\xbf\x1a\xf7\x4e\xa6\x85\x99\x6f\xc2\x45\x16\x93\x25\x48\xb8\x73\xeb\xef\x3d\x27\x13\x9c\x49\xdc\x76\x63\xf1\x0d\x8a\x87\xc1\xc1\xf2\xe2\x46\x69\xfd\xbf\x39\x48\x83\x3f\xc8\xcc\x06\x4f\x2e\x33\xb9\xf1\x20\xba\xe0\xf7\x5c\xa2\xc0\xef\x50\x9a\x58\x94\xb2\xfc\xe7\x12\xc9\x60\x98\x50\x69\x60\xf1\x5d\xa5\x01\xe7\xb0\x5c\x51\xaf\xe1\xa5\x94\xd7\xbc\xef\x2b\xed\x6c\x96\xaf\x5d\x31\x09\x01\x10\x1f\xfe\x03\xa6\xef\x28\xde\xc0\x0f\xfa\xb2\x0d\x0a\xda\x8d\xfa\x06\x51\x07\x94\x6c\xcd\x4a\x78\x85\x80\xad\xde\xa5\x5f\x00\xed\xbf\x63\xda\x57\xe7\xca\x50\xcc\xc3\x68\x81\x2b\x9d\x55\x68\xd5\xcf\xa0\x2a\xfb\xb7\xc5\xf9\xaa\xe8\x40\xe2\xa5\x2c\xca\xbf\x43\x0e\x9d\xad\xce\x56\xa5\x17\xb0\xd7\x6e\x4a\xff\x5c\x38\xf5\xc4\xbd\x55\x78\xa7\x7a\x72\x38\x1b\x53\xcb\xb3\x63\x3c\x83\x8a\xe8\x14\xbf\x6e\x7c\x5c\x1b\xca\x95\xac\x7f\x34\xba\xc8\xa3\x3f\x85\xa9\x4e\x4b\xcc\x58\x07\x00\x94\xfe\xc8\x22\x9a\xad\xa2\xb3\xde\x42\x9a\x34\x0c\xcd\xa7\x75\x1d\xfb\x26\x1a\x7f\xd4\x9e\x5d\x9a\xa6\x3d\x68\x8c\x8e\x8d\x47\x48\x80\x67\x86\xbd\x3e\x91\x68\x44\xe8\x04\x50\x5d\x81\x9e\x7c\x0f\xa9\xbd\x88\xdf\xe0\x4e\x35\x98\x7a\x30\xbd\x17\xde\x3f\xc4\x27\x38\x11\x60\xf8\xaa\x63\x88\x1d\x27\x1c\xb2\xca\xe8\x48\xb7\x12\x0e\xef\x9f\x3a\x36\x12\x78\x7b\x70\x90\x8a\xf6\x3f\x5d\xaf\xbc\x48\x9b\x4a\xd3\x58\x2e\x34\xef\xc5\x62\xcf\x78\x0e\x67\x05\xf8\x89\x1c\x0d\x1f\xb2\xdb\xca\xc5\x31\xa6\xf2\xfe\x6f\xae\x24\xc4\x4c\x4b\xdf\x3f\x8e\xd8\xb4\xc3\x5e\xe4\xd4\x22\x6f\x7c\xb9\x4b\x31\xcb\xdc\x7c\x62\xdd\x77\x97\xc9\xae\x81\xf5\x9a\xe8\x2d\x3e\x3b\x24\x3a\xb5\x2e\xf3\x40\xfb\xe3\xda\x10\xd6\x8f\xf2\x68\xe5\x56\x4e\xbb\x83\x1b\xa3\x85\xd9\x60\xae\x30\xde\x33\x67\x09\xa1\x42\x19\x84\xbd\xa3\x82\x56\x46\x4d\xd8\xee\x41\xfd\xbb\x0a\xf3\xd7\xe2\xd4\xa0\x97\xb2\x0a\xb5\xcc\x69\xd3\xd4\x99\xcf\x78\xf7\xf8\x0b\x14\x78\x32\xdc\x8e\x21\x9e\x60\x11\xdb\xe2\x0f\x57\xfc\xc2\x90\xdc\x22\x38\x43\x1b\x6b\x1c\xc1\xe9\x98\x64\x49\x67\x2e\x89\xf7\x81\x8b\xa8\x8a\xce\x04\x7b\xf2\x8f\x0f\xa9\x70\x32\x4d\xa9\x06\xde\xf4\x52\xcb\x94\xb5\xc6\x1c\x15\x26\x73\xa1\xa7\xec\x94\xf2\xcd\x46\x89\xf1\xa9\x9a\x7c\xe6\xe3\x6a\x6a\x54\xaa\xfd\xd5\x22\x0c\x7f\xa1\x8d\xb7\x5d\x06\x0f\x6f\xae\x88\x70\xfc\xdb\xf0\x1f\x8b\x7f\x2e\x2a\x1c\xd1\xe3\x3a\x10\x4d\x28\xe8\xe3\x8e\xf6\x4a\xbb\x8e\xfe\xcc\x60\xa2\x15\xe7\x20\x9a\x5a\x49\xe3\x4a\xf6\xfa\xe5\x4b\x05\x20\x84\x69\xa7\xd6\x73\x51\x9b\x6f\xea\x3e\xe6\x93\xbd\x8e\xf3\xb1\xdc\x66\x8a\x2e\x09\x87\x43\xf6\x3f\x6e\xd7\x97\x2c\x44\xa3\xa4\x0c\xb7\x34\x38\xdb\x76\x7f\x47\x6b\xec\xa6\x57\x76\x27\x8b\xd4\x3e\xb3\x31\x5a\x87\xe7\x42\x00\x72\x58\x7e\x15\xb9\x85\x65\x69\xa6\x41\xd4\xef\x7c\x26\x9e\x42\x4c\x57\x2d\xfa\x42\x16\x7b\x71\xd0\x75\xe2\x93\x5f\x83\x87\x21\x24\x26\xf8\xd0\xe8\x12\x5a\x25\xf5\x7a\x03\xeb\xea\x4b\x77\x3d\x27\x2e\x78\x5e\x4b\xad\x26\x9e\x6e\x3e\x47\x77\xa7\x22\x9a\xb9\x48\x3b\xf0\x83\xf0\x53\x2e\x55\xaa\x49\x21\x50\xb2\x59\xfa\x73\x06\x7c\xa8\x73\xbe\x20\xd1\x8e\xe1\x75\x31\xcb\x71\x83\xe2\x9b\x57\x31\xd1\xab\x85\xf5\x1f\xba\x8f\x3f\x72\x2a\xd1\xfc\xb0\xca\xe1\x3e\x7d\x7b\x62\xd5\x10\x73\x92\x17\x2c\x7d\x5d\x9b\xf8\x4b\x5f\xf1\x8d\x34\x62\x90\xcb\xaf\xa3\x2b\xed\x6c\xeb\x70\x7f\x99\x73\x89\x3b\x08\xa3\x41\x52\xb9\x8c\xc3\x02\x7a\x75\xa9\x1f\x52\x1f\x28\xdc\xf9\x8d\x69\xa3\x79\xf7\xef\x40\xf9\xb0\x18\x61\x48\xc3\xa9\x67\x9f\xcf\xe1\xa6\xcf\xf9\xeb\x2e\x25\x22\xf5\x77\xb3\xd6\xaa\xb0\x10\x25\xf0\xd9\x14\x37\x16\x4a\x5d\x8d\x2d\xb9\x88\x75\xb6\x9a\xad\x04\xf6\x5d\xa6\x84\x0f\xbe\xac\x24\x24\x28\x61\x58\xda\xac\x35\xb2\x68\x6f\x9d\x86\xa6\x9a\xe2\xf8\x8c\x25\xda\xf2\x81\xca\x5c\x94\xd1\x96\xf4\x83\x83\xdf\x75\x42\x95\x1d\xa9\xf6\xd4\xcf\x63\xca\xc9\xed\x8c\x46\x4f\x87\x8c\xec\x14\x4f\x7e\x0b\x71\x93\xa0\x2f\xe7\x76\x4f\x8c\x50\x66\x88\x50\x96\x76\x0e\xfd\x13\x68\xcb\x61\x46\x8d\x3f\x0a\x1b\xd0\x5b\x53\xf5\x8d\x64\x07\x58\x15\xdf\x4c\xee\x92\xb1\x69\xe5\xfd\x79\xfa\x37\x1d\x96\xbc\xa7\x17\x97\x13\xf7\xf4\x6d\xef\x13\x15\xb9\x27\x91\xfd\xaf\xde\xc2\x70\xdd\x0c\x2e\x1f\xc3\x7e\xa1\xe0\x43\x78\x13\x62\xd8\x29\x59\x8d\x95\xaa\xfe\x90\x3e\x46\xf3\x06\xde\xc2\x46\xf6\xc2\xd7\xec\x85\x42\xec\xa5\xef\xf0\x0c\xca\xdf\xe7\x0f\x40\x4f\x88\x36\xf1\x92\x3f\x1d\xa6\x79\x1c\xfa\x9f\xe9\xdf\x99\x72\x29\xd2\xdd\xe1\xbe\x9d\x59\x08\xdb\xbc\xef\x21\x9e\xd9\xb3\xb1\x33\xe3\xb0\xf1\x8f\x2e\xcf\xde\x50\x0b\x0f\x4e\x26\x99\xf7\x16\xb5\xf0\x95\x77\x36\xff\x93\xaf\x21\x8e\x70\x3a\x50\xfc\x56\x37\x88\x7e\xb7\xdf\xe3\x73\x9e\x95\x58\xe8\x43\xa7\x1f\x33\x1c\x39\xf6\x01\xd0\x78\xdf\xcd\x42\x75\x7a\x3a\x98\xdd\x82\xbd\x9a\x96\x51\xa1\x00\x3e\x23\x65\xbb\x03\xa1\x0e\x7a\x7e\xa6\xb0\x55\xb5\xc4\xe2\xe5\x8d\x5e\x41\x95\xa4\x28\xc3\x06\xb5\xe3\x4e\x49\x24\x0f\x85\x6f\xf1\x11\xef\xb8\x50\x94\x84\xfc\xab\x41\xb1\x6d\xe0\x20\x47\x4d\xd3\x55\xa0\x8d\xde\xa4\xb3\x75\x45\xa7\xe3\x34\x76\x92\xd6\x02\x50\x15\x02\xcf\x6a\x45\x6b\xaa\xc9\x3f\xae\x94\x02\x03\xea\x14\x57\x06\xf1\x1f\x4a\x49\x28\xc8\xa4\x1a\x82\xa8\x60\xbf\x84\x90\xc5\xad\xbd\xce\x81\xac\x5d\x08\x61\x9c\x1f\xc4\xeb\x8d\xf8\x95\xf9\x41\xff\x64\x68\xc1\xf8\x3f\x25\xc9\x4c\x15\x50\x98\x23\xc7\x77\xc8\x8e\xc3\xe5\xe6\x04\xcc\xd3\xaf\xc3\x92\xc6\xc7\x2c\x46\xb8\x45\xa5\x49\x87\x05\x74\x55\x73\xf7\x36\xa7\xdf\xba\xd1\x37\xea\x9d\xf4\x6f\xbb\xc4\x6d\x24\xc8\x5c\xbd\xc5\xec\x0d\xfd\x45\x2d\xc4\x4d\x43\xbf\x08\x84\x65\x8e\x08\x13\xf3\x28\x0e\x5d\x91\xeb\xee\x1d\xc7\x36\xdc\x58\xf7\xdd\xb1\x9a\x46\x63\xbb\x4b\xbd\x01\x11\x82\x16\x95\x84\x3c\x0e\x54\x9e\x19\x8f\x79\x19\xa7\x28\xe3\x55\xf9\x1e\xc6\x0a\xff\x79\x0e\x60\x72\x29\x5f\xd8\xa4\x03\x2b\xf1\xfc\x75\x06\x5a\xdb\x5c\x5d\x0b\x34\x93\xf5\x9a\x94\xa1\x9f\x63\x79\x73\x4e\xe5\x35\x14\x28\x2b\x7f\xe2\x5a\xef\xcc\x3f\x2f\x84\x40\x99\x29\x0e\x3f\x53\x46\x53\x8c\xb4\xd0\x9b\x18\xb7\xb3\x13\x7f\xd9\xea\x3b\x5f\x48\x1a\x7c\x59\xf0\x1c\xb4\x0a\x21\xd6\x97\x5d\x6c\x54\x97\xb9\x58\x47\x99\x40\x33\xcf\x9b\xef\x14\x14\x54\xd9\x9c\xd2\xab\x56\x88\xf6\x0f\x58\x82\x30\x08\xa8\xc6\xab\x96\xcb\x71\x1c\x20\x99\xce\x41\xbc\x37\x41\x25\xd5\xbc\x3a\x32\x6d\x76\xb4\x8a\x44\x92\x81\x2f\xa7\x32\xbf\x21\xd2\xf1\x85\xa6\x44\x71\x6f\x35\xe1\x2a\x5d\x76\x79\xe3\x95\x09\x25\xbc\xfe\xe2\x09\x76\x32\x03\x4f\xdb\xbb\x62\xa3\xb4\xd2\xbe\x3c\xed\xb0\x5d\xad\xce\x10\x71\xfa\x04\x0a\xf7\xcb\xde\x1f\xae\x35\x97\xcf\xa6\xda\xda\xde\xf7\xdc\xfa\x04\x07\xc7\xc9\x8a\xe3\x8d\x88\xf4\x7e\x7f\x12\x25\x59\xaf\x35\xb1\xc0\x49\xe1\xea\x5a\x4c\x86\xf2\x92\x40\xc5\x75\x57\x56\xd6\x27\x97\x0b\x52\xe1\xdb\x43\xd7\x6f\xdd\x33\x20\xcf\x71\xdf\x30\x43\x6f\xe2\xda\x95\x4f\x21\xcd\x89\xe0\xd4\xf4\x1f\xbe\x5f\x30\x76\x6d\x60\x44\x7a\x0d\x7e\x77\x32\x15\xcd\x93\x10\x7c\x2f\xe6\x3b\x8b\x86\x0e\x51\x08\x8b\x93\xd1\xc7\x5f\xa7\xe9\x63\x2b\xfe\x83\x72\x3a\x25\xb0\x07\x2c\x96\x3e\xfc\x5a\xa0\xbd\x38\xbf\xda\xd3\x2c\xe3\x44\x6d\x0e\xde\xff\xcd\xe2\xbc\x8f\xb5\xbe\x93\xf3\x6b\xdc\xe1\x20\x25\x6d\x71\xce\x3f\xf7\xef\x73\x85\x32\x5e\xee\xc1\xb2\x9f\x92\xee\x69\x5e\x31\x50\xb8\x7e\x14\x37\x62\xc3\xc8\xe4\x08\x09\xeb\x68\x73\xfd\xa5\x7b\xb5\x52\xc8\xce\xef\xe1\x5d\x7b\x31\x54\xd2\xb0\xbb\xdf\xd3\xd8\x65\x69\x2e\x15\x87\x75\x11\xdc\xca\xbd\xf4\x83\x92\x3c\x1e\x2a\x67\xe2\xaf\xa1\x01\x20\x06\x13\xd4\x2d\x33\xb2\x8d\x34\x59\x95\x2f\x30\x24\x44\x84\x41\x40\x28\x53\x05\x2e\x51\xee\xa0\x77\x73\x2a\x35\xf5\xc0\xdc\x87\xde\x77\xe4\x5f\x51\xbf\x3f\x47\xad\x23\x24\xec\x95\x14\xe0\x7a\x94\xde\xcf\x50\xcb\xf8\x87\x4f\x22\x0f\x63\x7f\x1a\x9f\x8a\x79\xc9\x0a\x1c\x89\x16\xc6\x2f\xb7\xbd\x0c\xb6\x1f\xfa\xf9\xaa\x30\xb7\xdf\xd8\x07\xe7\x46\x05\x4e\x0c\x83\xfb\x0c\x9f\xc7\x4a\xe3\x01\xd9\x85\x9d\x06\x41\x51\x22\x86\x71\x3f\xaa\xe9\x9a\x3a\xd9\x36\x2f\xd6\xc2\xdd\xf7\xd7\xe2\xfa\x1c\x39\x9e\x2e\x06\xdf\xaf\x8f\xa5\xa2\x57\xc0\x90\x18\x3a\xfd\x1e\x7a\x6f\x59\x35\x57\x7b\xfd\xbf\x71\x1f\x94\x52\x27\xa9\x79\x05\xc2\x8f\x5c\x0d\x77\x5e\x2e\x37\x7d\xcc\xbc\x4b\x65\xab\x12\xad\x56\xe9\x3b\xeb\x84\x23\x37\x70\x81\x9b\x3c\xb9\x4b\x43\xd0\xb6\x93\xe4\x8d\xa3\x14\x77\x6b\x01\x49\xc8\x84\xc6\xa7\x7d\xf4\x41\x54\x85\x02\x44\x0a\x05\x93\x54\xf5\xe1\xb1\xf7\xb1\x7d\xbb\x80\xe2\x7a\x3a\x3f\x59\xa4\x13\x3d\x03\x44\xe2\x4e\x97\x1a\x12\xb0\x83\x4d\x2d\xde\x22\xa5\xdb\x97\x59\xfb\x9b\x22\xef\xa6\x3c\x47\xa8\x69\x73\xa1\x57\x44\x5d\x97\x94\x64\xdb\x6a\xc3\x11\xed\xcb\xd8\xc1\x7e\x82\x1d\xb4\x7a\x85\x4c\xc5\x0f\x1d\x24\xaa\x42\x5d\x85\x60\xbd\x20\xb8\x2c\xa2\x2f\xc9\xae\x90\x2b\x24\x9c\x8d\xf3\x0f\xd9\x5e\x97\x90\x63\x58\x43\x55\x7c\x6d\xa9\xb1\x88\xda\xc3\xe4\xc7\x31\xa3\x53\xad\xa4\x20\x0b\xcc\xed\x61\x15\x4f\x27\x0e\xfd\x6a\xd4\x67\x00\x6c\x30\x61\xd8\x45\xd7\x9c\xf4\x2a\xa7\x78\x13\x4d\xf6\xd4\x47\x25\x85\x39\x77\x40\xe1\xd2\x2a\xfc\xb2\xec\x27\x6b\x9b\xc6\xd8\x02\x35\x94\x36\x5e\x60\xe4\x9f\x7f\x64\x40\xbd\x04\xbd\x82\xc6\x9b\x7e\x0d\x56\x9c\x6b\x37\x23\x7f\x66\xd3\x68\x26\x88\xf5\xf6\x41\xbe\x11\x12\xa0\x04\xb5\x1b\x0d\xdc\xf3\x53\x78\xb8\xc0\xc4\xa6\x9b\xbf\xaa\x02\xdf\x29\x88\x97\x50\xca\x86\xf3\x5e\x11\x83\x75\x8c\x82\xc8\x7a\x7a\xd8\x19\x3e\x24\x0e\x8b\x61\xfd\x96\xd9\x4d\xe5\x88\x80\x63\xcf\x2c\xe0\x1c\x40\x95\xdf\x44\x86\x41\xb3\x38\x06\xb0\xe6\x35\x21\x06\x9d\xa6\xdc\x9b\xf1\x78\x5d\xca\x7d\x68\x4b\xf2\xb0\xc8\x6a\xb2\x64\xba\x03\x87\xec\xfd\x67\xb4\x29\x2f\x30\xef\x05\xcc\xc4\xfe\xe6\xb3\x41\xba\x9e\xca\x5d\x93\x2b\xa1\x86\x1c\x9c\xc8\x9c\xab\x0d\x70\x43\x00\xfc\x46\xfd\x92\xc2\x17\xb4\xae\xa1\x4f\xea\x7a\xc9\x36\xad\xd3\x57\x81\xc7\xed\x76\xf8\x83\xcb\x49\x65\x2d\xe7\xab\x5f\x4f\x9a\x22\xd0\x12\x98\xc6\xc8\x89\x1b\x5c\x4a\x9f\xc7\x08\x27\x21\x55\x7d\x1a\x84\x52\x46\x0d\x7a\xd3\x61\xe8\x07\xf9\xb3\xf1\x51\x0e\xa5\x1d\x40\x9d\x35\x55\x24\x71\x3a\xf5\xde\xa5\xf4\x23\xae\x9e\x59\x55\xe6\x73\x55\x00\xa0\x26\x85\x7c\x16\x06\x1b\xe1\x65\x2c\xbb\xcf\xee\x11\x0b\x88\x3c\x07\x63\x68\x11\xde\x57\x74\x57\xa2\xd6\xa3\xb8\xfe\xbf\x31\x94\x71\x51\x4c\xc5\x0f\xab\x2b\x8b\x1a\x4b\x2d\xeb\x44\x2c\xba\x30\x39\xfa\x92\x7c\x7e\x8f\x7d\xa9\x1d\x49\x0a\xd7\x8f\x36\x1c\x17\x32\x63\xb1\x9b\xdf\x3b\xa9\x0f\x60\x0e\x0e\xcc\x25\xfa\xb4\x3f\x59\x31\xbb\xf2\x3d\x3e\x03\x6a\xc9\x93\xb4\x4c\x80\xe4\xa9\x3c\x78\x51\xfb\xde\x54\x80\xf0\xd6\xb4\xda\xf2\xef\x87\xb5\xdb\x19\xba\xe7\xcb\xc9\x2f\x0f\x34\x35\xeb\x2e\xfe\x7a\x55\x7a\xda\xaa\x78\xab\xb9\x3a\xb9\xc0\xa6\x51\xf4\x07\xf1\x6e\x8d\x9f\xcc\x5a\x6f\x86\xb6\xbe\xc5\x0d\x13\x26\x6e\xa4\xbb\x5b\x6b\xe7\x5d\xf9\x97\xd9\x47\x11\x0d\xc0\xc5\x00\x1a\x53\x23\x54\xbc\x28\x8a\x4d\x32\x55\x8f\x95\x83\xe2\x77\x01\x9d\xaa\xaf\x29\x14\x2b\xf0\xa4\xab\xf8\xfa\x2b\x14\x0b\xfa\x9a\x98\xe4\xc9\x51\xa8\x2d\x9c\x8c\x29\x21\xeb\x29\x14\x9b\xf4\xbc\x93\xf7\x22\xab\xf2\x4a\x44\xf7\xda\x14\x1f\xf9\x7b\x69\xfd\x2f\x8d\x84\xd7\x9b\x83\x22\x56\x8e\x99\x36\x0a\x86\x1f\x4e\xb5\x31\x4e\x27\x64\x92\x02\x9b\x2b\xf5\xbb\x7f\x85\x36\xad\xe1\x21\x94\xb2\xed\xb6\xf8\x83\xcb\xc9\x2f\xc5\xaf\x56\xcc\xaf\x4b\x6a\xaa\xcf\x85\x4c\xae\x6f\x4b\x30\xe5\xec\x00\x2a\x8a\x77\x2c\x6a\x98\x1c\xff\x13\xe1\xe9\x77\x40\x16\x20\x8f\x4b\x9a\xc7\xb3\xfa\x4d\xd7\x9c\xcd\xf3\x82\x83\x2b\xcc\x14\x91\x4d\x1b\x06\x14\x95\x35\x1c\xb1\xda\xf9\x5d\x8c\x7e\x3d\x71\x3c\x18\x78\x6a\xac\x77\xfb\x12\xa3\x6c\x44\x84\x8b\xa3\x79\xb3\x65\x05\xc7\x47\x48\x7d\x61\x87\x94\x7c\x02\x06\x79\x80\x4d\x78\x5a\x9f\x1d\x85\x00\x85\x4a\x07\xa5\xee\xa0\x11\x65\x7a\xfe\xf8\xf0\x47\x52\xe5\xc7\x17\x82\xef\x47\xc9\x55\x61\x0a\x41\xf4\x30\x66\xc5\xae\x37\x58\xa6\x4c\x3e\x1d\x4e\xc8\x77\xdb\xf0\x84\x55\xda\xbb\xc5\x15\xbb\x97\xa1\x17\x60\x68\x87\x44\xa0\x14\xeb\x8f\xfc\x1f\xb2\x61\xc2\xf3\xf2\x42\xc1\x8b\x41\x55\x5f\x85\x5d\xdc\xbf\x30\x9a\x87\xc4\xfa\x05\x9b\x0b\x83\x37\x49\x1c\x36\xde\x0f\xc5\x0c\xc7\x17\x3a\xfa\xfa\x64\xfa\x94\xa4\x37\xe9\xa3\x1a\xf1\x3b\xfe\x44\xd9\x1e\x19\x7d\x83\x7e\xbe\xa2\x65\x50\x21\x02\xea\x99\x5e\x7a\x8b\xd8\x1c\x96\xe4\x95\x08\xbc\xfd\x2b\x1d\x4c\xdf\xe0\xf7\x08\x60\xf8\x3e\x82\x8c\x05\x7d\x47\x69\x0c\x18\x6a\x58\xc6\x95\x64\xfb\x62\xc6\x37\x76\xe7\xd3\x8a\x35\xc5\xe7\x94\x66\xf6\xb8\x56\xa5\x97\x93\xba\x2c\x2d\x3d\xf1\x36\x32\x64\xcc\xdb\x24\xcc\x64\x57\x5d\x0e\xe7\x08\x2d\x04\x57\xff\xc5\x69\x79\x30\x58\xa0\x35\x3c\xcf\xe6\xf8\x3f\x82\xd9\xc8\x86\x53\x59\xf3\x87\x97\x52\xca\x96\x42\xb4\x05\x49\x03\xb4\x07\xb5\xe0\xd6\x24\x7f\x5b\x09\x8b\x4e\xf7\xcd\x3b\xa4\xee\x9f\xc3\xbd\xaa\xfe\x52\xd3\x64\xa5\x7e\x11\xab\x2d\x91\xe4\x71\xb9\xea\x52\xe0\xaa\xf6\x06\xee\x2e\x09\xf3\x12\xaa\x22\x62\xcf\x31\x8e\x87\x83\xfe\x8c\xf2\x95\x22\x6d\x56\x96\x7e\xbf\x13\xa3\x75\x2c\x2c\x16\x7d\xb5\x96\xc7\x35\x16\x5d\x23\xff\x50\x5b\x37\x90\xe1\x36\x19\xa0\x9b\x18\xbb\x83\xff\x6c\x70\x4d\xf8\x87\xfb\x19\xc8\x37\x8d\x98\x50\xc0\x9e\x80\x6b\xa2\xaa\x61\x50\x24\x98\xed\x91\xb4\x73\xfc\x07\x27\xcb\x77\xe3\xe3\xe3\x8b\xe3\x56\xd4\xba\x71\x97\xc4\x1e\x41\x69\x96\xb9\xb4\xf4\xa2\xe3\x5d\x5d\x62\xdf\x8b\x07\xc2\xc3\x43\x2f\x41\x84\x07\x54\x54\xe4\x3b\x34\xe4\xa6\x87\x76\x87\x62\xde\xdc\xac\x56\x77\xbb\xae\x5f\x36\xc7\x29\x88\x8a\xa7\xdf\x72\xba\x2f\x42\xad\x95\x89\xa5\xc4\x06\x3f\x22\x91\x8c\x97\x09\x6e\xbb\x32\xe5\x98\xea\x6d\xbf\x87\x8d\xca\xfb\x59\xbf\xa9\xf9\x0d\x4d\x99\x88\x87\xf4\x1e\xb5\x3c\x36\x5a\xea\xc5\x13\xfc\xc5\x69\x39\xbd\x70\x99\x65\x86\xc7\x00\x12\x61\xe1\x94\x70\xbc\x18\xa6\xcb\x2d\x61\x50\x49\xbb\x94\x4f\x29\xa8\xf3\x6c\xb7\x26\xb8\xb6\xf1\xfd\x75\x75\xba\x4b\xa1\x06\x5e\xb8\xdc\x1b\x3c\x60\x07\xc7\x20\x1b\xae\x2e\x07\xd0\x41\x43\x51\x78\x75\x05\xa7\x7d\xc8\x9e\xe5\xb9\x17\x8d\xcf\xe6\xb1\x3d\x8a\x32\x70\xc9\x91\x5e\x1f\xe7\xa4\xfa\xad\xf2\x36\x44\x0c\xe4\xba\x8a\x5d\xf5\xed\x65\x99\x6b\xeb\xf7\x96\x01\x80\x14\x70\x01\x54\x01\x14\x36\xc0\x7a\xdf\xc2\x4d\xe1\x77\x1f\xb7\x38\xe0\x58\x98\x62\x3e\xb4\x97\x34\x84\x85\xcc\xf6\x8e\x3a\xf7\xbf\xf2\x6f\x75\x39\x2b\xdb\x93\x29\x27\xfa\xe9\x60\x6d\xaa\xc8\x52\x91\x80\xa5\x9c\x24\x47\x82\xf7\x93\xa1\x37\xea\x54\x2d\xdc\x8f\xc4\xe5\xcf\x75\x7b\x26\xc3\xd5\x75\x4b\xb3\x94\xb8\xa4\x4d\xef\xb4\x69\x83\x4d\x91\x48\x25\x10\xf5\xf5\x39\x27\x3d\x9d\xd9\xf5\x8b\x36\xed\xf1\x52\xa3\xb2\xa7\x82\x3a\x49\x73\xe7\x29\xfd\x0a\xec\x2c\x38\x71\x41\x6a\xa0\xf0\x10\x19\xd8\xeb\x5e\x7b\x04\xc0\x28\xd7\xc1\x06\x11\x27\x2d\xed\x37\x6f\x32\x85\xc8\xea\x63\x5f\x8e\x76\x49\xdf\x9a\xce\xe2\x3f\x16\x8e\xcb\xe8\xf8\xf6\xac\xa3\x9e\x2e\xdc\xb1\x48\xfc\x09\xd0\x25\xee\x8d\x75\x90\x26\x7d\x20\x71\x43\x93\xb0\xea\x2b\x1b\x82\x07\xe0\x44\x9b\xe4\x07\x26\x7d\xfa\xb2\xa1\xf3\x6c\xae\xcf\x45\xc3\x70\xa8\x51\xa1\x03\x6a\x9d\xcb\x11\x26\x87\xb0\x58\x61\xcf\xb4\x2f\xca\xb4\x28\x6a\xd6\xaa\x08\x3c\x71\x58\x9a\x2f\x7a\x8a\x2c\xd1\x9f\xe5\x4e\x72\x4b\xae\xbe\x7f\x45\x73\x1b\xe9\x15\x35\xdc\xe2\x76\x21\xed\x0d\xa8\x13\x64\xfc\xb3\x68\xc9\x1b\xe6\xab\x2a\x70\x79\xa5\x05\x46\x29\x64\x5a\x18\x5c\x2c\x9c\x17\xb6\x3e\x1c\xc7\xc1\x8b\xf1\x13\xb4\x9f\x0a\xf9\x48\xc0\xb2\x23\x89\x9b\xc1\xf2\x91\x2c\x54\x0f\x48\x79\x54\x17\x8d\x8a\x0f\xcd\xd3\xfb\x1d\xb8\x76\x38\xfb\x81\x6f\x78\x59\x60\x97\x70\x43\x99\x23\xe2\xed\xda\xd0\x8f\xfe\x8f\xf7\xab\xe8\x7b\xa1\x43\xd6\xe0\x22\x77\xdf\x9a\x19\x6d\x05\xaa\xc8\x8d\x17\x69\x9b\x84\x69\xba\x8a\x28\x7a\x3c\x39\x24\xca\x43\xfb\xb6\xd3\x9e\xb2\x59\xbd\xf6\x2e\xab\x2b\xdc\x5f\xb5\x36\x50\x41\x7f\x4d\x69\x7b\xd1\x97\x44\x00\xa5\xd6\x95\x16\x7f\x2e\xa1\x0d\x5e\x80\x5e\x12\x55\x4c\x2b\xb2\x3f\xfb\x07\xa0\xe8\xf0\x28\x69\x48\x4b\xba\xc2\xf3\x69\x2d\xef\x0c\xc1\xe9\xec\x29\xf9\x85\xe9\xec\xe4\xed\x50\xe0\x48\xd9\x93\x01\x9a\x7f\x84\xbd\x33\x5f\x12\xa3\x99\xc6\x60\xa4\xcf\xd0\x38\x79\x5c\x6d\x14\xa9\xe1\xea\x00\x86\x6b\x33\x88\xf9\x8c\x8f\xcf\x65\xe1\x78\x0b\x3b\x0e\x6b\x77\x67\x6c\x54\x6d\xf4\xab\xfe\xb4\x25\x0c\x1d\xda\xe9\xab\x29\xf4\xbb\x5c\xe3\x28\x19\x4e\xf7\x17\x04\x82\x49\x75\x9e\x5f\xe0\x20\x42\x48\x30\x1f\xb2\xa1\xe0\x50\xd1\x57\xd6\x45\xa6\x4f\x25\xd3\x3e\xa7\x8d\x26\xc2\x69\xf0\x43\xc5\x69\xca\x52\x29\x04\x0d\x42\xe0\xe9\x3a\x83\xe9\x5a\x02\x9f\xb1\x00\xd5\x7c\x88\xd6\x86\xe6\x24\x56\x61\x51\x0a\x6b\x8a\x02\xb1\x6a\x2f\x36\xf6\xd0\x57\x42\x51\x69\xcf\xca\x3a\x29\xb7\xfa\x4c\x15\x0e\x45\xf2\x45\x3f\x2f\x1a\xae\xa3\x7a\x58\xe8\x61\x88\x7c\x61\xc2\xcc\x78\x54\x91\x88\x26\x5e\xfa\x95\x22\x6f\xda\xf1\x76\x27\x97\xc3\x34\xfa\x40\xcc\x46\xc4\xa1\x39\x5f\xdb\x76\x01\x23\xda\xf6\x85\xa2\x66\xdf\xc1\x9a\x06\xb1\x08\xdd\xd5\xe2\x9b\x31\x28\x8f\xa3\x48\x48\xf1\x8c\xd8\xac\x30\x09\x5c\x7f\xa2\xbf\x5b\xf4\x96\xf3\xbc\xec\x31\x9f\xdf\xb3\xd7\xf4\xf0\x12\x7e\x9e\xc0\x70\xe9\x31\x48\x14\xbc\x74\xf8\xce\x11\x3e\x2e\xff\xe6\x87\x02\x6a\xdd\x20\x3b\x95\x52\xe8\x0c\x1f\x55\x4f\xac\x09\x42\x90\x43\x12\x8a\xa0\x9b\xec\xf4\xe2\x65\x5f\x63\xa7\x15\xf4\xf0\x7e\xef\x29\x4b\x45\x98\x88\xee\x38\x7e\x60\x10\x5a\x7f\x58\x03\xc3\x1d\xea\xb3\x22\x1a\x32\x5b\x84\x3a\x85\xc5\x5e\x97\x7d\x29\x23\x6d\xd5\x76\x53\x13\xc9\xff\xaa\xdd\xbc\xb6\x2c\x15\x2e\xd1\xde\x1d\x0c\xa0\xd1\x5c\x5e\x6f\x00\xf1\x98\x03\xd3\x1e\x7f\x97\xac\xcc\x26\xc2\xdc\xb7\x80\x2a\x9e\xed\x94\x96\x51\xbd\xab\xb5\xb8\x47\xc2\x31\x11\x9d\xe9\x30\xdb\x59\x6d\x58\x77\xef\x93\x4f\xcc\x23\x26\x0c\x9f\xe5\x6c\xb4\xa8\x99\x0a\x8e\x34\x35\x81\xb3\x12\x54\x86\xbf\xd1\xdb\xc2\x53\x92\x92\xf7\x89\xda\x0d\xbc\x25\xd9\x6e\x7a\x5a\xbd\x55\xf5\x98\x6d\x6f\x18\xc2\x4b\xe8\x75\xf3\x52\xb6\xf8\xf3\xe3\x11\x87\x33\xf7\x98\x66\x3c\xf9\x79\x97\x98\xa7\xd6\x4c\x07\xd5\x0d\xa1\x87\x57\x0d\xda\xe2\x4f\x2b\x68\xda\x8f\x3f\x22\xa4\x61\xfb\x32\xdd\x3e\x5a\x87\x67\xd8\x09\x85\x5a\x7c\x20\x55\xa6\x80\x2e\xee\xf8\xfd\x48\xa6\x1d\x57\x8b\xee\xa2\x1c\x53\x25\x00\x82\x1c\x8a\x03\xb9\xb3\xfc\x15\x11\x47\xd7\xc6\xf7\xd8\xbd\x65\xd4\x4a\x09\x6f\x3a\x8b\xb9\x51\xfc\x45\xba\x94\x59\xf1\xb0\xcd\x2e\x74\x77\xeb\x5b\x71\x3b\xfe\xb4\x93\x6e\xde\x7e\x8d\xc1\xc8\x8a\x81\x2d\x35\x4d\xd3\x99\x8f\xb3\x3a\x5a\xd3\x86\xcf\x6f\xb8\xc0\x90\x8f\x5b\x61\x25\xad\x08\xa0\x54\xcd\x44\x77\x7e\xcd\x7c\xcd\x85\xff\xab\xc0\x5c\x90\xa3\xc7\x55\x57\xa5\xc1\x25\xba\x26\x71\x38\xf0\xe0\x42\xba\x2c\xe7\x54\x25\x92\xd7\x8f\xfc\xc6\x50\xc4\x77\xbe\x48\x15\x80\x43\x5d\x52\xc3\x67\x53\xd8\x97\x64\x84\x0e\xfa\x88\x48\xd7\x71\x04\xd2\xc2\x2e\x13\xe5\x78\x03\x47\xc3\x2f\x01\x75\xed\x76\x60\xd8\x01\x8a\xbb\xe0\xaf\x67\x31\x60\x6d\x56\x9a\x0f\x0d\xab\xeb\x56\xde\xeb\x88\xd6\xd4\xf6\x8e\xea\x97\xe0\x92\xe2\x9a\x68\xf2\x18\x95\x79\x95\xea\x36\x96\xc5\x3f\x5f\x68\x4d\x6b\x11\xf8\x3b\xf0\xcf\x0a\xd5\x43\x4f\x36\x3c\x57\xc5\xd1\xa8\x6c\x9b\x1b\xd9\x36\xcf\xda\x7a\xf8\xb1\xb0\xf9\x19\x34\x50\x91\x9b\xf8\x33\x3a\xf6\x8a\xc2\x51\x9e\x7a\x70\x2a\xf2\x60\xb2\x0c\x0b\x51\x22\x52\x88\x25\x53\x72\xbb\xf0\xfa\x6c\xaa\x3e\x32\x2c\xc0\x33\xae\xed\x97\x76\x9b\x95\x05\xd4\xac\x2c\xe6\x8c\x46\xaa\x8b\x36\xe3\x8f\x73\xfa\x74\x32\x71\x89\x36\x65\x2b\x6d\xc4\x4c\xa8\xa3\x5d\xf8\x8f\x57\xdf\x4b\xef\x58\x48\x4e\x23\x5d\x0f\x5a\xa2\xcc\x76\x39\x0a\xa4\xcd\x66\xa8\x55\xb1\x80\xc1\x15\x4d\xe3\xb2\xa7\x65\xf9\xef\x1b\x77\x41\x00\xa0\x2a\xef\x06\x57\x5d\xee\xff\x94\x56\x2d\x30\x1a\x42\xe7\x40\x43\x88\x05\x87\xba\x10\x13\x6e\x2b\x53\x0d\x12\x53\x4e\xc5\xb2\x37\x92\x7c\x7f\xec\xd1\xfe\xf2\x29\x2e\x6d\xec\xd1\x94\x19\x64\xd8\xcb\xe8\x79\x06\x78\x2b\x3d\x0a\xa1\xfe\x0e\x7e\x40\x2d\xf7\xf4\x58\x21\xb9\xe0\xf2\xf9\xd2\xe5\xec\x43\x19\xd1\x16\x3d\x36\x42\xdd\x70\x77\xa9\xb2\x1d\xe2\xa6\x1c\x60\x54\xb6\xeb\xc1\x2b\xde\x14\xd5\x43\x66\x85\x07\x32\x91\x02\xcf\x24\x5d\xbd\x6f\x5a\xd9\xef\x58\xe1\x01\x00\x13\x4a\x00\x19\xf5\xcd\x34\x54\x44\x94\x0b\x82\x13\x97\xac\xcc\xeb\x47\x43\xf8\x2a\x48\xde\x22\x97\x7b\x01\xfa\x7d\x36\x83\xaf\xe4\xdf\xc7\xbb\x16\xb9\x1b\x61\xaf\xb6\x82\x83\x87\xa3\x54\x16\x0b\xdc\x21\x43\x20\x7b\x1d\xc4\xa8\x95\xaf\x0e\x42\x90\x42\x26\x72\xe2\x6b\xeb\x27\xd4\xd3\x24\x0e\x2f\xc2\xb7\x40\x71\x52\x6b\x64\x1f\x05\x15\x86\xb6\x52\x14\x88\xbc\xb4\x4c\x8c\xdb\xdc\xce\xc0\x70\xa8\x8b\x1a\x63\x71\x10\x2e\x55\x1b\x52\x86\x67\xf0\x88\x89\xaa\x63\x42\xd1\x23\xa1\x1d\xff\x8a\xea\xa9\x6b\xf7\x29\x04\xfd\xd4\x3d\xc7\x7d\x04\x92\xb0\x22\x96\xe7\x4c\x87\xf3\xaa\x9b\x00\xc6\x3d\x9a\x0f\x46\x31\xe3\x59\x7b\x21\x6a\xec\x04\xcc\x76\x1b\xb1\xc0\x6e\x9d\x80\x14\x49\x5b\xce\xe9\x30\x11\x9f\x1f\x36\x4e\xec\x47\xc2\x48\x56\x00\x06\x69\x90\x93\xf9\x20\x47\x6e\x5c\xc3\x4c\xd5\x9c\x1d\x77\xf0\xce\x90\x91\xa5\x06\x4c\x53\xf1\x52\x47\xbd\xd2\x44\xd4\x86\x57\x9e\x9f\x69\xe8\x3c\xa6\x75\x4b\x88\x82\x13\x00\xd0\x75\x58\x34\x5f\x40\x8c\x20\x2d\x12\xd5\xb2\xc9\x33\x7d\xdd\xc8\x92\xce\xd8\x60\x10\x00\x24\x30\xca\x20\x36\xc6\x59\x98\xb6\x2a\xe0\xbe\x5c\xe5\xe2\x14\x30\x2f\x10\x0c\xd2\x60\x8d\x53\x1c\x04\xc2\xf9\xfd\x7b\x0d\x87\xc7\xa6\xfb\x99\x44\x64\xdb\x41\xce\xcb\x40\x33\x2f\xc8\xd8\x52\x4c\xc0\xa5\xd7\xec\x81\xf0\x7a\x67\xb8\x5d\x1d\xab\x64\x35\xa7\x53\xc2\x9d\x15\x22\x8f\x4a\x72\xe6\x79\xbe\x39\xc4\x6d\xa3\x89\x28\xac\xed\xe1\x24\xf5\xfc\x9e\x6d\xef\x31\x25\x3d\x51\xe5\x43\x1a\x66\x70\x7f\xb7\xcd\xdb\xc0\x85\x06\xc9\x62\xc6\x3f\xb7\xf5\x9a\x0c\xfb\xb7\xb7\x11\xcb\x3e\xfe\x1b\x98\x79\xab\xbc\xb5\x0c\xf6\x88\x23\x83\x8c\x4d\x99\xc8\xf6\x56\x41\xc2\x9e\xfa\xd2\x37\x0d\xe7\xc4\xc3\xcb\x4c\x05\xd0\x6f\xf9\xb9\x30\x97\xe6\xad\x09\xb3\xb1\x25\xae\x7a\xa2\xc3\xe7\x89\xee\xe3\x2c\xdf\x62\xfc\x62\x94\x41\xbd\xc2\xff\x6a\x9e\x91\xaf\x05\xff\x66\xb2\x22\x78\xfd\xe6\xf7\xe7\xa5\x3e\x94\x69\xae\x4d\xb3\x1e\x79\x20\xfc\x4f\x30\xa9\x80\x26\xd6\x8d\x8a\x94\x3f\x4d\x43\xe5\x8e\xc5\xab\xc0\x2c\x83\x43\xa1\x40\x93\xa4\x83\xf3\x4c\x31\x60\x75\x39\x5c\x1b\x3c\xb1\x9a\xcd\x64\x46\xf3\x7a\x3f\x80\x42\xfb\xd9\x5c\xc9\xa1\x6f\xc5\x11\x6e\xd1\xa3\xfd\x08\xf9\x36\xf9\x3c\x24\x09\xf4\xa3\xcb\x01\xe6\x21\x6b\xab\x08\xe3\x27\xb8\x65\x8f\xb4\x4a\xb3\x26\x50\xbe\x08\xba\x60\xc2\x51\x1e\xc7\xc5\x45\x46\x5d\x9b\x2e\x90\xbf\x1c\xb2\x18\xef\xc8\x16\x05\x80\x5e\xec\x80\xef\xc9\xac\xfc\xe1\xe9\x7e\x09\xc7\xb4\x5c\x82\x93\x3a\xf9\x8c\x31\xcd\x43\x1a\x48\x46\x56\x69\xd9\xeb\xbe\x88\xb0\xe3\xac\xc5\x14\x0f\x80\xe5\xeb\xf7\x63\xdf\xf2\x19\x5a\x00\x19\xf5\xf6\xd1\xd3\xb3\xd9\xf5\xce\xda\xd9\x88\x7a\xea\x23\xcf\xb7\xf0\xbc\xf4\x77\xe2\x7c\xd3\xbb\x37\xdf\xc6\xeb\x9f\x01\x00\x0a\x2f\x29\x0e\xb8\xbd\x15\xc6\x04\x94\xe0\xe3\x2a\x07\x3d\x7e\x82\xf3\x06\x06\x41\x32\xf7\x31\x6a\x4f\xc9\x47\xb0\xde\x14\x2a\xe1\xd1\x2f\xde\x17\xd7\xe9\xf0\xdd\xb3\xc4\x97\x71\x2b\xdd\x44\xbc\x7e\xa4\x19\xd8\x3a\xa3\xbd\xdc\xa0\x3d\xb9\xcc\xa1\xef\x47\xae\xdc\xa8\x88\x3d\xa2\x4f\x43\xd9\x02\x40\x03\xe1\x0c\x24\x44\xf2\xe9\x5f\xfe\xba\x29\xce\xd5\xa4\x4e\xc9\x8c\x62\x01\x65\x96\x38\x71\x8b\x29\x97\xdd\x2e\x1a\xde\xd2\xc4\xbf\x12\x8e\x6a\x52\xf1\xc7\xb3\x86\x97\xd9\x9f\x5d\xbe\x52\x18\x92\x19\x84\xa2\x6d\xdf\x5c\x7a\x82\x96\x7c\x2f\x0d\x03\x69\x2d\x21\xc8\xa8\x51\x57\x22\x1c\x31\xa2\xad\x71\x37\xae\xea\xb1\x25\xa8\x29\xca\x9a\x15\x41\x90\xaf\xe9\xa6\x5c\xc3\xe1\xbe\xff\x9d\x78\xa4\x33\x7b\xb9\x78\x1c\x11\x90\x5f\x98\xee\xa5\xb1\xd5\x26\x3a\x70\x63\x21\x1f\x72\xd9\xd2\xc3\x03\x04\xc2\x4f\xfb\x9a\x0e\x5b\xdf\x1e\x2c\x36\xc9\x92\x5c\x6c\xc4\xbc\xec\x79\xb9\x6a\x67\x1a\x5a\x93\x46\xc0\x5d\x23\xf2\x46\x2d\xdd\xda\x02\xa1\xa5\xda\xab\x9d\x34\x67\x3b\xaa\xed\xa8\xac\xef\x88\x82\x49\x47\x89\xc6\xad\x3b\x35\xad\xf8\xed\xb0\x77\x06\xbb\x81\x50\x0d\x00\x34\x70\x80\x9a\x4d\x46\xc2\x48\xf8\xd5\x8e\x68\xef\x51\xde\x4f\x2c\xfc\x00\x23\x66\x6a\x30\x40\xa9\x4a\x04\x00\xcd\x49\x1d\x76\x22\xc2\x87\x1d\x7a\x4a\x98\xbe\x09\x2f\x10\xe3\x4b\xed\xa4\x5d\x0f\x87\xb8\x08\x5a\xff\xea\x29\x5b\x28\x7d\x17\x0f\x82\xd5\xf3\x0d\xf1\xff\x57\x79\x84\x57\xea\x8d\x76\x62\x64\x6b\xfb\xc6\x97\x1f\xee\x58\xbd\x14\x46\x88\x39\x68\xfe\x82\xcb\xb5\x80\xc5\xc3\x48\x08\x5b\x26\x4e\x97\x07\xb3\xc7\x48\x19\xda\x5b\x4f\xf3\xd1\xe8\xa7\x9e\x3d\xfb\xa8\x10\x4a\x2f\xf7\x1d\x4f\xdd\xaf\x71\xc5\xe7\x80\x8d\xf7\x0c\x2c\x25\x06\x02\xea\x19\x00\x64\x94\x30\x9d\xe5\xdd\x5a\xd1\xfd\x15\x94\xe2\x2d\xff\x47\x45\x2f\x9f\x84\x2f\xf0\x3b\x6f\xd7\x43\xe2\x74\xd2\xbb\x79\x1b\x25\xe6\x9b\x1b\x65\x5a\xf3\x96\xcf\x5d\xe1\x98\xfc\x79\x43\x47\xf6\x0c\x34\x65\x3f\xe7\x79\x93\xc7\xf7\x81\x64\x4d\x12\xac\xd7\x93\x20\xad\x6d\x28\x35\x0e\xd6\xfb\x77\xd0\x40\x78\x55\xe7\x7f\x78\xde\x07\xaf\x8e\xbd\xe9\x10\xd3\xef\x5a\xcd\x76\x4a\x99\x12\xdb\xad\x48\xab\x99\x81\x62\x94\x84\x7e\xcb\x60\x4b\x0f\x1b\x78\xc7\xe7\xf8\xe7\x7d\xfd\x5a\x3d\x1f\xe1\x8e\x4b\x18\x79\xfc\x38\xe0\x37\xe6\x18\x14\xf3\x62\xed\xa5\x6b\x4d\xc1\xe2\x98\xd0\xa0\xd2\x95\x98\x08\x67\x10\x1e\x5a\x0b\x52\x20\xa6\xeb\x24\xfe\xcd\x13\x84\xb6\x05\xa7\x53\x00\xc8\xa8\x44\x33\xd4\x6a\x64\xd9\x2e\xf9\x36\x05\xf0\x14\xc8\x97\x41\xb8\xf7\x9b\x85\x6c\xa8\x2d\x9e\x15\x64\x38\x17\xb2\x05\x5a\x2b\xc2\x04\x4c\x78\x77\xc9\xa1\xc6\xae\xef\x52\x01\x60\x20\x4f\xd0\x84\x1e\x0c\x7f\x82\x13\x1a\xf9\xcb\x1c\x81\xd7\xae\x9d\x3c\xe7\xb5\xa4\x56\xda\x39\x51\x1a\x85\x37\x0e\xe9\xf5\x52\xf4\xab\xfd\x71\x49\xd4\x24\x02\x1e\x9b\xb3\x00\x03\x61\x00\x04\x69\xf9\x19\xb2\x46\x6b\x7c\x7c\xf9\xe2\x2e\xbd\x09\x3d\x2c\x12\x56\x63\x34\xfe\x4d\x90\xa3\xe7\x84\xe0\xcb\xd4\x79\xd3\xed\xd4\x5b\xee\x7d\xab\x25\x9f\x87\x3f\x3e\xfb\x1f\x67\x7d\x56\x95\x67\x3d\x1f\x86\xa2\x3f\xed\x79\x4d\xbe\x33\xb2\xb1\xb1\x9c\xd2\xe2\x67\x48\x67\xcf\x43\xf8\x32\x77\x6d\xba\x7e\xe5\xf0\x97\xc3\x23\x18\xe8\x4f\x11\xd9\x61\x6c\x37\x95\x0e\x10\xdd\x26\x1b\x76\x26\xaa\x7a\x58\x45\x4e\x79\xd7\x8f\x69\x1a\x4f\x81\x93\x7e\x1e\xb9\xa7\xe1\x83\x11\x8f\xd2\x96\x7c\x56\x47\x6e\x86\x69\x39\x5f\x47\xf6\xc7\x1f\x76\xca\xd7\x33\x9c\xe1\x04\x45\x04\x6e\xbe\x16\xc6\x46\x46\xcd\x9a\x4a\xfd\xc0\x1c\xf7\x19\x13\xff\x77\x8b\xb3\x7b\x5a\xbe\x1b\x0a\x86\xfe\x05\x26\x1c\x8e\xbb\x29\x0b\xda\x10\x5d\xb3\xc0\x62\x98\x7c\x25\x04\xf5\x67\xad\x41\x1d\x1f\x99\xde\x5b\xb0\x70\x92\xe0\xf3\x97\xfd\x2f\x72\x90\x50\xfc\x93\x9e\x9b\xb8\x7f\xb9\x39\x2d\xbf\xdb\x41\xfb\x57\xc3\xaf\xda\xe6\x1b\x8b\x7b\xbb\x36\x97\x22\xdc\xe7\xef\x98\xff\x82\x00\x39\x25\x1c\x45\x0e\xa2\x62\x79\x70\x21\x7d\x68\xe5\xdc\x84\xc3\x3b\xf1\xe4\x9e\xc7\x01\x8b\xc9\x8c\x8a\x1b\xd9\x08\xd0\xab\x57\x0a\x43\xcc\x67\x2c\x58\x3d\x7c\xef\xb6\x14\xa2\xe9\xa1\xbc\xfa\xd9\xc5\x77\x31\xda\x77\xaf\x81\x6d\x41\x76\x99\x9d\xfd\xbc\x6b\x41\xe3\xc5\xc1\x3b\x0a\x41\xf6\x4d\xda\xd8\x0f\x1b\x1e\x9c\x69\xbe\x3a\x1b\x67\xd2\xcc\x7f\xc8\xd9\xe5\xbf\x03\xdb\x10\xc4\x1e\x8d\x3b\xf8\x57\x3a\x7a\x9d\x1c\x59\xba\x93\xd2\xfa\xfe\xe6\xdf\xb3\x4f\xb2\x9f\xac\x1a\x0a\x16\x8d\xca\x76\x64\x3a\xb4\x3c\xbb\x56\x4a\x8b\x42\xb7\xdd\x01\xc2\x23\xe6\xe1\xae\x66\x91\x97\x20\x60\xe4\x07\x01\x8f\x1c\x90\x0f\xa4\xcf\x15\xc2\x8a\x94\xec\x0b\xac\x39\xa6\x73\x2b\x90\xaa\x9e\x65\x8a\x24\x1a\x44\xac\x62\x7d\x57\x6d\xc5\xcf\x9a\xb1\x5b\xe8\xe1\x67\x41\x67\x3c\x7b\xb4\x52\x10\xa4\x65\x24\x9d\x03\x26\xbf\xc8\x58\xd0\x37\xe9\xd3\x96\xcd\x43\xb7\x60\x5d\x55\xdb\xa7\x9a\x52\x4c\x7f\x4a\x91\x8f\xf1\xc6\x3a\x36\xbb\xfc\x93\x9e\xb7\xef\x58\x20\x28\x35\x79\xfc\xd7\x79\x1e\x55\x34\x4d\x75\x13\xea\x69\x6d\x7a\xd3\x5a\x40\x7e\x7c\x49\x7b\x8c\x79\xb5\xf9\x9e\x2e\x05\xe8\x87\x34\x00\x10\x3a\x90\xb8\xa5\x10\x5a\x43\x34\xf5\x6d\x6c\xeb\xce\x50\x9b\x2c\x9f\xf6\x87\xc1\x20\x93\xb0\x74\xec\x88\xf1\xfb\x2f\x6f\x87\x24\xe5\x49\x08\xb0\x4c\x9d\xe1\x10\x64\x6e\x3c\x88\x03\xd3\xaa\x85\xd9\xaf\xac\x38\xd9\x97\xed\x3e\x5c\xe4\x7a\xe6\xaf\xe9\x14\xeb\x5f\x8c\xef\xf5\x39\x45\x29\x34\x49\x55\x9e\x97\x3d\x6f\x58\x97\xc6\xdb\xb7\xa0\x84\xdc\x85\xab\x68\x7f\xab\x59\xaf\xdd\xdc\xd3\x1e\x2b\x71\xa3\xc1\x23\x13\x6c\x12\x94\x04\xf8\xd2\x52\xca\xc6\xfd\x55\x90\x34\xee\x17\xf9\x10\x01\x24\x6e\x9f\x4b\x10\x68\x92\x48\xae\x49\x79\x90\x1d\xcf\x22\xa7\xca\xde\xb8\xb0\x02\x6f\x21\x0c\x50\x5e\xf7\xf0\xed\x0b\x41\xa0\xdd\xd3\x79\x59\x0f\x73\x13\x73\x77\x58\xca\x5f\x23\xf1\x0a\xec\x15\xd9\x7e\x7d\xe6\x9b\x81\x5e\x3f\x43\xb5\x6a\x3a\xc5\xee\x11\xd4\xea\x2d\xf6\x7a\xe3\x8a\xc7\x30\x74\x5f\x5b\x69\x41\x14\x17\x50\x8f\xd9\x1e\x2d\x50\xe0\x3b\x91\x23\x5d\x4b\xdf\x73\xd5\x4d\xe8\xb3\xe7\x69\xcc\x32\xd7\x7b\x67\xc5\xe2\xa1\xc7\x85\x4a\xc4\xf4\xdc\xc4\xd7\x34\x6f\x46\xec\xee\x2a\x84\x60\x81\x70\x8d\xdf\x40\x1d\xc6\x59\x99\xc2\x2d\x02\xc3\xd1\x94\xf8\xcc\x51\x62\x10\x53\xa5\xae\x7f\x2f\x26\x1d\xe5\x2e\xb4\x45\x6d\x04\x41\x4c\x0a\xb5\xa4\x9e\xcf\x44\x74\xc7\xeb\x2d\xf7\x7b\x37\x95\xd2\x67\x7e\x45\x39\x7f\xa7\x4d\xee\x6e\xf0\xf8\x0b\x36\x41\xf0\x9a\xec\xc6\x23\x54\x88\xff\xda\x2a\xb5\xa5\x9e\xc7\x5a\xf0\xce\xbe\x97\x19\x86\xc4\x49\xe9\x60\x57\x40\xdb\xb3\x4a\x32\xbd\x01\x16\xdd\x82\x7a\x4e\x18\x32\xaa\x80\xd1\xf4\x9b\x87\xdb\x63\xa2\x6f\x17\x94\x65\xfb\x96\x0e\xbe\xee\x7c\x97\x5f\x08\x6a\x4f\xe6\x15\xa3\xa4\xeb\xeb\xf7\x17\x35\x89\xcd\x05\xd6\x2a\x92\xb1\x65\x39\x25\x0c\x9d\x6a\xc1\xec\x59\x04\xa5\x13\xb7\x49\x35\xff\x89\x00\x70\x01\x2a\x9e\x5e\xfb\x6c\x00\x35\x37\x15\xf4\x62\xd6\xd6\xaf\x22\x67\x49\x13\x32\xca\xe2\x7b\x3f\x0c\xa8\x41\x7a\x77\x52\x4e\x2a\xc9\x7d\xa6\x78\xea\x1f\x49\xbe\xc6\x06\x0f\xe4\x92\x48\xc3\xcc\x6f\xbe\x96\x3c\xac\xe1\xf9\x67\x1c\x0b\x96\x4d\xd4\xe4\x38\x7e\x20\x7b\xe8\x57\xd7\xbf\xa7\x66\x96\xc3\xe3\x6a\xad\x25\x30\x0d\x7c\xa1\x27\xde\x94\xe4\x3e\x7b\x91\x25\x6d\x45\x71\xf3\xad\x62\xf0\x0e\xfc\xaf\xb2\x24\x15\x37\x0e\xe7\xb1\x1d\x58\x08\x58\x11\x67\x9f\x4d\x13\x74\x6f\x65\xc9\xf3\x69\x13\x8d\xfb\x65\x50\x1e\xe7\xd8\x5a\xf1\xf3\xde\xb2\x4e\xaa\xfc\x31\xcb\x06\xc7\x9a\x45\x20\xc8\xc4\xaf\x5f\x9b\x1e\xea\xf2\x89\xaa\x7c\x5a\x62\xf7\x66\x5a\x4b\xb9\xb8\x2e\x6d\xd3\xbf\x66\x46\xdb\x3f\xcb\xee\x8e\x05\x0c\x32\x91\x41\x18\xb7\x18\xbe\xc2\x1c\xfd\x64\xb9\xfe\x91\x41\x1a\x1f\x3a\xd4\x26\x1f\x07\xb1\x0a\x7b\xbb\x0a\xa2\xa4\x23\x1c\xf9\x41\x30\x32\x81\x6d\x6c\x6f\xfb\x8d\xa0\xd6\xeb\xa7\x7c\xa6\xf2\x0d\x4d\x6a\xb0\x32\x17\x30\x8a\x1d\xf0\xa5\xe9\x53\x19\x21\xf5\x2a\x29\x7e\x46\x83\x6a\x26\x34\x50\x51\x90\x58\xc5\xc1\x9a\xdf\xdb\xb6\x01\xf1\xbb\x5d\x6f\x79\x86\xd5\x67\x63\x28\xfa\x5a\xd6\x12\x61\x1c\x82\xf7\x6c\x72\xe8\xfb\x8b\xca\xd8\x63\xca\x7f\x56\x2d\x2a\x49\xaf\x3d\x32\xfc\x0f\x1e\x25\x36\x18\x14\xf7\xef\x82\xe4\x0a\x09\xb7\x25\xeb\xd8\xe1\x80\x50\xa0\xdc\xd6\x6a\xe6\xbd\xbc\xfe\x86\x2c\xcf\x86\x11\x00\xc0\xa9\x22\x5b\x1e\x3a\x03\xae\x5b\xe2\x72\x6b\xa1\x3f\xb9\x15\x34\x83\x87\x9a\xff\x03\xe6\xf5\xb5\xe4\x01\xa4\xbe\x80\xa9\xeb\xeb\xd9\xfd\xc9\x70\x7a\x9b\x3b\xbc\x84\x7a\xfb\xde\x3f\x9f\x31\xb1\xb9\xcb\x6f\xa3\xa4\x64\xa1\x2e\x9d\xef\x32\x64\x30\xc8\x72\x89\xc0\x89\x4d\x14\x00\xbe\x1a\x01\x28\xba\xb8\xac\xa4\x46\xa8\xf6\xb3\xb9\xf7\x1d\x89\xbb\x9d\x08\x00\x40\x30\x8d\xf2\x2b\x7f\x53\x44\x97\x44\xa0\x9b\xa8\x0a\x1e\xc1\xb4\xb2\xe8\xf8\xf2\xa4\x88\x21\x89\x46\xef\x8b\x30\xd6\x53\xfe\xf5\xd3\xcb\x00\xb0\xb7\x34\xbe\x30\x5d\x36\x75\xbe\xac\x8d\xdd\xa0\x59\xb2\x58\xc0\x48\x15\x41\x3a\xa9\xb6\x91\xf7\x45\xb7\x0d\xe4\xaa\xfe\x63\x43\x9d\xb5\x9c\xd2\xc6\x3e\x30\x8b\x33\xd0\x10\x70\x12\x65\x4e\x32\xe6\x9a\xa7\xad\x15\xf0\xe3\xdf\x6f\x00\x00\x40\x06\xe1\x68\x54\xf6\xb4\xed\x62\xac\xd5\x9d\x40\x39\x76\xbb\xdd\x93\x6c\x13\x0b\x0e\xe5\x95\x27\xd1\xc6\xc8\x4b\xfb\x9f\x71\x3c\xb2\x77\xce\x29\x68\xc9\x72\x69\x14\xdf\xb1\xfb\x2e\x09\x90\x8d\x5b\x95\x2d\x09\xf3\x2e\x87\xc4\x4c\x75\x8e\x8a\x16\x27\x9e\x81\x0d\x64\x40\x30\x92\x30\x54\x39\x42\x59\x9d\x37\xbd\xaa\x62\xe5\xc3\xbf\xcd\x66\x15\x29\x2b\xda\xfb\x6a\xc9\xd3\xc7\xde\x5b\x39\xbe\x7b\x4d\x39\xb5\x7a\x41\xc4\xd2\x40\x20\xfc\x0f\x13\x5d\xeb\xf9\xe1\x3b\x60\xe1\x35\x6f\x5a\x7f\xc3\x3f\x4e\xf6\x55\xf5\x83\x05\x75\x88\xae\x81\x6d\x81\x71\x9b\xe1\xab\x69\x13\x27\x4a\x00\xb0\x34\x3b\x76\x2f\x80\x20\xb2\x6f\xd5\x9b\xdf\x9a\xb0\x82\x33\xc1\xf0\x33\x70\x75\xeb\xbb\x5a\xff\xd1\xa9\x5f\xab\x2f\x3c\x41\x09\xf0\xe0\xc9\x90\x0b\x22\xa3\xc5\xde\xe6\x0c\xec\x89\x40\x23\x81\xa7\x8e\x76\x78\x40\xd5\x31\x52\x0a\x66\x5e\x48\x15\x5b\x5f\xb2\x61\x10\x6f\x68\x67\xed\xb8\x2d\xde\x22\xbc\x43\xa0\xd4\x02\xc2\x0b\xdb\x18\x6d\xaa\xfb\x1e\xfe\x83\xee\x93\x20\xc2\x9a\xdb\xca\xb2\xb5\x45\x13\x0c\x97\x11\x25\x84\xd5\xba\xfc\x3b\x06\xcb\x81\x2f\xc6\xb1\xb7\x76\x94\x87\xee\xa5\x54\xa9\x14\x6f\x32\x87\xc1\x5d\x79\xc3\xcb\x6c\xc9\x98\xa3\x6b\x86\x53\x9c\xf0\x84\xd8\x40\xfa\xff\xc2\x3e\xf3\xab\x43\xc6\x49\x27\x35\x10\xc2\xd0\xd6\xf6\x9b\xee\x8f\x96\x76\xc6\x5e\xc5\x9b\x24\xdc\x0c\x68\x65\xbd\x09\x07\xb7\x6d\x4a\x42\xd4\xc1\x27\xec\x04\x62\x62\xa7\x1d\x08\xa2\x18\xd7\x15\x0d\xdd\x3e\x05\xd7\x2b\xf2\x5b\xf5\x12\x20\x80\x77\x4b\x96\xcb\x5e\x16\x82\xa7\x97\x3a\x4f\xf5\xf0\xc6\x24\x41\x62\xb4\x0a\x64\x20\x68\xa0\x62\x82\xe7\x9d\x31\x08\xe0\x3c\xac\x44\x3f\x19\xe1\x88\x69\xad\x37\xe5\x41\xf2\xea\xfe\x10\xf3\xa8\xc9\xe5\xee\xea\x4d\x49\xae\x26\x25\x00\x72\xfd\x87\x5a\xdc\xc0\xf0\x37\x63\x1f\xdb\x3d\x29\xdb\x03\x4a\x29\x4c\xaa\xb6\x3f\x38\x6c\x2d\x1a\x2b\xf0\x3e\x33\x02\x98\xe5\x2d\x73\x0a\x1e\x7a\x92\xe7\x67\xcb\xa8\xc4\x07\xdb\xe5\x59\xe1\x37\x01\xbf\x44\x01\x08\x92\x0b\xeb\xf3\x1b\xc0\x76\x48\x4d\x9b\xdf\xaf\x81\x17\x33\x7e\x20\x49\xb4\x1d\xd7\x1d\xdf\x88\xff\x59\x0c\xe0\xeb\xc8\x21\x03\xb0\x9a\x01\x9b\x5e\x54\x6d\xd1\x9f\xcd\x1f\x6f\x2f\xb8\xf5\x1a\x85\x52\xce\xce\xd3\xc8\xf5\x10\x65\x8b\xf9\x94\x6d\xee\x1e\xcb\x5e\xdf\x15\xde\x77\xca\x1b\xb0\x6b\xc5\x29\x37\xd1\x4b\xc3\xcc\x77\x29\x27\x7e\x4b\x8f\x62\x15\x5a\x89\xd5\x66\x42\xd5\x13\xce\x82\xbf\x83\x63\x18\xad\xae\x8b\x21\xf7\xee\xef\x2c\xb9\x40\xb7\xea\xf8\x28\xa8\x8d\x11\x0a\x78\x6f\x0a\x20\xcd\xbd\x9b\x56\x1c\xec\xb7\x16\x23\xbb\xc3\x3d\x41\x00\xca\x5c\xf4\xa6\x87\xa3\x29\x71\xd9\xa0\xc8\xae\x3f\xca\xa8\x90\xe4\xbf\x46\x88\x61\x2c\xc9\x11\xd1\x10\x1e\xd5\x52\x76\xd1\x24\xb1\x1f\xa3\x10\xc6\xd7\x44\xd9\x5c\x55\x43\xbb\xea\x40\xca\xf7\xa2\xde\x36\xd8\xed\x94\x46\x40\x9e\xc8\xbf\xda\xbe\x3d\x63\xae\x59\xda\x57\x6e\xad\x22\x3b\x7b\x12\x1c\xf9\x8c\x3d\x81\x25\x7e\x87\x25\x83\x0b\x65\x4f\xc5\x07\xdf\xf8\xb3\xc2\xd5\x12\x33\xa1\x08\xd8\xba\xa8\x7c\x82\x19\xc9\xb3\x06\x62\x00\x9b\x31\x9f\x87\x09\x27\x46\x21\x93\x2d\xd0\x3c\x5f\xf1\xa7\x99\x55\xc8\x5b\x0e\x80\xfe\x57\x3f\xd6\x17\x30\x7c\x17\x5b\x68\x08\x7b\x86\xab\x5e\x3f\x59\xfa\x92\x22\x45\xc1\x71\x8c\xc2\x4f\x06\x16\x17\xd3\x7d\x9e\xf4\xa0\x7f\x28\x3a\xd8\x86\x0d\x30\x9f\xb1\x60\x5f\xd8\x3f\x92\x82\x41\x12\x01\xdf\x06\x40\x0a\xfd\x1d\x9a\x40\xd3\xf9\x1a\x47\x4d\xa5\x67\xa0\xe4\x01\xc4\xd5\x00\xc8\x1d\x81\x09\xf7\x48\xac\xeb\xf8\x8d\x6e\xdf\x37\xdc\x3b\x77\x13\xa6\x2a\xde\xdc\x0c\xc3\x6c\x21\x67\xd7\x14\x8f\x07\x96\xfd\xcd\x44\x6e\x45\x53\x82\xc0\xe8\x42\x2d\x6a\x02\xd0\xff\x7e\x71\x01\x51\x41\x48\x79\xc7\xb1\x93\x1c\x59\x92\xa8\x40\x39\xb6\x3f\x15\xa1\x89\xf2\x6b\x44\x4e\xbd\xd8\x88\xa0\xe8\x16\x00\x30\x39\x5c\x6f\xd9\x8f\x40\x9f\x06\xfc\x36\xf7\x1e\xa3\xf0\xd3\x86\xe1\xd9\x4e\x59\x5c\x1a\x2d\xf7\x3e\xc4\xec\x69\x99\x91\xdf\x48\x03\x53\xb8\x08\xd8\x7a\xa5\x93\x28\x11\xb6\x66\x1f\x4a\xc1\x51\xaf\xd6\x9a\x80\xde\x57\x25\xfa\xf1\x19\x8b\x20\x98\x91\x12\x63\x93\x6a\xc6\xdd\x02\x50\xfe\xc5\x0e\xbd\xc4\x2d\x07\xb5\x7f\x24\x1f\xf5\x2c\xb7\xf6\xf7\x8a\x3d\xa6\xf9\xef\x64\x24\xec\xf2\x96\x19\x25\x3e\x87\x3f\x59\x1a\x96\xff\x88\x28\x80\xbc\x4e\x41\x3c\x6c\x30\x64\xd4\xdb\x2f\x59\xa1\xe9\x39\xa7\x49\xe9\x63\x89\x67\x35\xe1\x81\xc3\xe6\x2d\xef\x6f\x64\x79\x3e\xbf\xc4\x08\xfd\x30\x02\xa4\x28\x1b\xb8\x00\x60\xc6\x5b\xd8\xf1\xd2\xb9\xf7\x3a\xb8\x24\x6c\x37\x9b\xfb\xee\x85\x1a\x44\xd7\xc0\xde\x1a\xb3\xfd\xec\xd9\xf5\xa1\xaa\xfc\x8b\xf6\x5c\x24\x34\xd0\xe0\xbd\x50\x5c\x66\xc1\x71\xa3\xac\xb4\xd9\xd8\x34\x2f\xb8\xb2\xe4\xf8\xfe\x3e\x85\xb6\x36\x31\xf2\x31\x8a\xed\xf8\x7d\x78\x9f\x26\x14\x45\xfc\x11\x22\x55\x07\x99\x03\x4c\x5c\xd9\xe7\x89\x28\xf6\xb9\x2f\xaa\x96\xb6\xd0\xa8\x84\x33\xb1\x14\x3a\x29\x82\xed\xc1\x67\xe4\x6b\x1e\xad\xad\xd1\xfe\xa4\x5e\x31\xe0\x2e\x1f\x40\x11\x5f\x0a\x66\x4e\xf2\xeb\xb6\x5e\x0e\x88\x7a\xf4\x79\x5a\x4c\x7a\x8a\xc5\xd7\xb9\x6b\x45\xb3\xd1\xfd\xe7\x21\x8d\xe5\xdd\xeb\xb3\x3a\xb0\x32\xa3\x65\x5a\x6e\x58\x01\x0c\x20\x46\x37\x03\xf2\x0d\xc0\x2b\x60\x06\x57\xd7\x1f\x33\x9a\x79\x6f\xaa\xb1\x86\x1b\xd3\x7a\x54\x15\x04\xf0\xf4\x9b\x39\xb6\x3a\x99\x3c\x0c\x71\x34\x25\xce\xa3\xe4\x03\xa0\x81\x8a\xa9\xf5\xc7\x44\x5d\x35\x99\x0e\x90\xf3\xda\x9e\x4b\x16\xdf\x80\xae\xa3\x84\x0f\xf1\x9c\xfe\xfd\x66\x9d\xdf\x0c\xda\x82\x8c\x5e\xf2\x68\x92\x29\x12\x68\x30\x00\x32\xc5\x04\x4e\x06\x94\xd0\x46\xfa\x95\xd1\xcc\x53\x13\xee\x2d\xdf\x1e\xab\x2c\xc3\xa3\x97\x9a\x81\x46\x4e\xb1\x87\xad\x15\x31\xf7\x83\xc9\xe4\x66\x8f\xfe\x07\xb1\x97\xd4\x38\x1b\x0f\x58\x91\x8d\x37\x96\xf8\x73\x45\xe4\xcb\x9c\x1c\xd3\xda\x8e\xac\x16\x68\xad\x33\x74\x4a\x7b\xf3\x3b\x37\xc8\x74\x33\x1f\x9a\xc0\x96\x2b\x03\x48\xc9\xdd\xa0\x98\x9e\xe0\x80\x81\x26\x4b\xc8\x06\x2e\x9f\xf6\x73\xd6\x20\x3c\xb4\xf1\x87\x82\x65\xff\x5b\x9b\x83\xdb\xa2\x47\xf6\x78\x68\x69\x20\x9e\x40\x06\xb6\x3e\x20\xaf\x1b\x7b\x5e\x7c\x97\x61\x27\xe5\xcb\xbc\xb8\x1f\xd8\x34\x3a\xc6\x75\x28\xfa\x5c\xd5\x86\xd6\xe2\xee\x8b\x3e\xb6\x07\xad\xb2\x68\xbf\x33\x31\x0f\x5f\x91\x3f\x8a\x8d\x14\x30\xd3\xc6\xad\x5e\x9d\x21\x30\x91\x98\x7b\xd1\x48\xfb\x49\xb1\x9a\xd9\x97\xc8\x2a\xa2\xaf\xf7\xc4\x56\xf2\xb6\xc4\x23\x75\xbd\x4d\xa7\x3a\x8e\x3e\xbb\x8e\x48\x86\x18\x05\xff\xf3\x29\xe6\x49\xe6\xa3\x8f\xa7\x4b\x0e\xb3\x27\xb4\x86\x53\xea\xfb\xdf\xd9\xd9\x93\xb1\x2f\x09\xd2\xe4\x71\x5f\xd7\x32\xb2\x83\xd1\x27\xa0\x5c\x23\xa8\x62\x1c\x10\x3a\xb2\xf5\x3e\x30\xb6\x13\x01\x98\x88\x84\xe5\xfb\x57\xce\xdd\xa4\xa7\xe0\xbd\xb2\x7c\x41\x07\x03\x80\x6a\xd4\xd2\xbb\xb2\x9d\xb6\xdb\xa1\x98\xbb\x3a\x5e\x9a\x7e\xd0\x7f\xf1\x9e\xeb\x7b\xf5\x8c\xbf\x5b\x5e\xbc\x31\x5f\xe0\xcd\x78\xe6\xad\xfc\x5b\x52\xef\x98\xd6\x15\xa1\xc0\x3f\xe9\xb6\x38\x2a\xaf\x9e\xa4\xb0\x8c\x54\xd0\xad\x3e\x39\xcd\xc7\x35\xd9\x6c\x06\x3e\x8c\x51\xf0\x70\x5d\x1e\x2e\x7f\xf1\xbe\x3c\xe8\xfe\xc6\xfb\xab\x5f\xe5\x62\x22\x13\x07\x98\xe2\xa9\x77\x84\x84\x73\xd6\x4c\xb8\x47\x68\xd8\x8d\x5d\x3a\x4f\xe5\x07\xbe\xb0\x10\xad\xcd\xc6\x6f\xac\xf9\x71\xfa\x58\x38\xce\x86\x76\x2a\x95\xe8\xa0\xc5\xfb\xf2\xcf\xfd\xed\x25\x8b\xef\x35\x34\x50\x91\x2e\xba\x81\x12\xde\x42\x5d\x0e\xfe\x69\xdf\xa7\xa7\xb1\x65\xd4\xab\x4d\x80\x2d\xab\x6b\x85\xce\x8f\x69\x7d\x88\xaa\x65\x7e\x2c\xa1\x6f\x83\x99\xec\x62\xba\x25\x00\xac\xdd\x65\x9f\xbd\x26\x90\xa7\x50\xfe\x85\x60\x85\x00\x26\x8d\x1e\x00\xa0\x98\x01\x00\xdb\xb7\x23\xc1\xd9\xe7\x59\x8f\x25\x82\x8a\x1d\x20\x17\xea\x6f\x39\x36\xa9\x37\xf0\xe3\xcc\x93\x6c\x35\x22\xc1\x6a\xc2\x86\xbd\x5e\xc5\x50\x08\x0d\xad\xf9\x7d\x52\x7a\x56\x43\x89\x2a\x04\x0e\x75\x79\x4a\x4f\x50\xd9\x4a\xd2\x3e\x22\x82\x29\x04\xd2\xbd\xc2\xb2\x53\x02\xdb\x16\xc6\xa6\x5e\x44\x72\xa2\xdf\x96\x6b\xcd\x5a\x8d\x2d\xb1\x0a\x4b\x5c\x37\x3d\x8b\xb8\xf4\x61\x2e\x72\xa2\x07\x3e\x6c\x53\xfa\x13\xa9\xbf\x01\x8d\x8b\x3b\x2a\xe7\x00\xa1\x9f\x40\x80\xba\xad\xaa\xe4\x00\xc1\x0a\x1b\xda\x89\xfd\x7e\x32\xb7\xd6\xe1\xaa\xd8\x89\x4a\xdc\xc7\x0a\x0f\x94\xce\x9e\x67\xf7\x49\xa7\xd7\x53\x51\x54\xb4\x0f\xe7\x91\xbc\x0c\xc7\xfb\x80\xff\x26\xce\x38\x8c\x18\x00\xf0\xf6\x51\x74\x9b\x78\xf9\xc9\x0b\xfd\x9e\x8a\x6c\xb3\x7d\x02\xee\x9d\x4b\xef\x90\x28\x5a\xf3\x7b\x15\x7f\x97\xac\x87\x2e\x97\x9e\xe5\xe0\xa5\x49\x7f\x03\x40\xaa\x0b\x00\x50\x60\x93\xf7\xbf\x62\xad\x62\x19\x89\x11\xab\x33\x04\xed\x2d\x29\x79\xd6\xdf\xec\xcf\x93\xe8\x43\xc5\x77\x6e\x85\xec\xa0\xa8\x4c\xdc\x75\xdb\x51\x35\x4e\x7d\xf2\xc8\x42\xed\x91\xb0\x50\x54\xc0\x01\xfb\x7f\x53\x28\xbc\x3f\xaa\xfb\xdd\x30\x3d\x21\x40\x26\x8f\xd2\x1a\x4c\xb7\xf8\xa4\xc8\x26\xd4\x17\x27\x3f\xd8\x45\x82\x78\x35\x60\x72\xbb\xb5\x17\x41\x2b\x6e\x50\x4d\x0b\x04\xe0\x00\xfc\xab\xe6\xe7\x87\xed\x5f\x8f\x23\xf1\x01\x20\xc1\xef\x52\xa2\x9d\x8c\x00\x40\xfd\x22\x32\xf2\x54\x3c\x01\xab\x02\x26\x68\xc0\x7e\x77\xc1\xc8\xde\xb6\x5f\xf7\x07\x27\x29\x7c\x3c\x09\x9a\x88\x0f\xca\xdc\x49\x31\xe2\xae\xd1\xca\xca\x39\x95\x15\x88\x99\x5f\x5c\xff\x9d\x41\xfb\xee\x7f\xaa\x92\x9d\xef\x5f\xd8\x13\x3f\x39\xef\x79\x33\x8b\x5f\xa8\x1b\x59\xf0\x49\x47\x57\x0d\x32\xca\x75\x92\xc4\x84\x2a\x4e\xec\xb8\xf8\x62\x37\x88\xb9\x8c\xe1\xd8\x8f\x14\x8e\x13\x10\x7a\xf9\xb0\x7f\x10\xda\x84\xf1\x7e\xa2\x5e\xc5\xa3\xa2\x5c\x03\x50\x9e\x74\xbc\xbd\x07\x5e\x87\x45\x41\xe0\xef\xec\xb7\x05\xf9\x95\xf9\xaa\x9e\xe0\x03\x40\x3a\xda\xfa\x75\x9e\xa0\x82\xbd\x96\xdd\xf6\x9d\xe9\x24\xfe\xbf\x83\xb2\x11\x52\x14\xfc\x4f\x22\x1a\x9d\x40\xad\xf4\xe7\x3b\x77\x4f\x7e\x11\xbe\x5a\xed\x9d\xed\x94\x46\x75\x4a\x7f\x7c\x22\x7c\x57\x7a\xa0\x1b\x8d\xca\x7f\xf7\x30\x7e\x59\x26\x80\xf9\xfb\x9f\x9a\xa8\xb4\x66\x86\xd9\x5d\x16\x18\x6e\x70\x2f\x1b\x83\xf1\xda\x1c\xd2\x4d\x60\xc8\xd3\x03\x00\x46\x66\x48\x4f\x37\xe2\x8a\x4e\xd4\x59\x92\xd8\xe4\xd1\xe7\x26\x69\xfd\x0a\x05\xfb\xf3\x39\x42\x66\x08\x18\x80\xb1\x7f\x75\x80\x9c\x59\x16\x94\x54\x26\x75\xd0\x4e\x0e\xb6\x07\x3c\x70\x8a\x7c\x4d\x87\x22\x60\xe6\x9a\x32\x29\x5f\xd6\x3e\x0b\x15\x42\xbf\xf3\x3e\x10\xc7\xfd\x1a\xf6\x52\x50\x23\x9f\x10\x55\x21\x6e\x2f\x38\x23\xe2\x7b\x58\xbb\x9d\x4e\xf6\xbf\xee\x56\xb8\xe5\x53\x89\xd6\x42\x99\x4d\xfb\x4f\xdc\xd3\x1a\xde\xe3\xc2\xf4\xef\x87\x03\x6f\x69\x4d\x70\x20\xed\xd0\x79\x30\x69\x0b\x90\x22\x37\x37\x55\xdf\x32\x36\xa1\xcd\x99\x16\xf7\xe7\x6c\x4a\x8a\x12\x92\x81\x4e\x90\x41\x38\x72\xd5\x92\xe7\xeb\x75\xac\x85\x74\x18\x52\x56\x34\x91\xff\xe7\x46\x19\xd3\x5f\x9f\x84\x9c\x85\x0a\x8f\x3c\x4e\x97\x32\x4a\x4e\x14\x7a\xcc\xa8\x18\xd2\x75\xe9\xf1\x44\xde\xd2\xc1\xa1\xa1\xb5\x3d\x45\x91\x0a\x43\xb7\x12\x2d\x6a\x98\xd1\x18\xf4\xe9\x1f\xab\x4a\x1c\xea\x35\x5a\x7c\x14\xe3\x34\x46\x91\x19\x13\xac\xd8\x02\x00\x72\x8b\x4f\xa0\x3c\x72\x10\x98\x49\x2d\xbb\x10\xe8\x48\x27\x69\xce\x3d\x62\x7c\x20\xfb\x70\xad\x39\x1d\xfd\x2e\x77\xd8\x21\x7e\xce\x56\xb5\x26\x30\x22\x64\xa8\xe5\xa0\xec\x7f\xa6\x60\x26\x4c\xf8\x02\xf2\x92\x46\xde\xbd\x5c\xd1\x3c\xc9\x52\x54\x15\x19\xf0\x6a\x0a\x63\x34\x58\x9b\x30\x41\xb3\x92\x41\x7d\x9f\xd0\xc1\x43\xd7\x4b\xe9\xe7\x71\x85\x0f\x47\x71\xf7\x06\xdb\x1e\x66\xcf\x7b\x86\xd9\xb5\xcb\x59\x58\x27\x56\x7f\x5d\xb1\xec\xdf\xaa\xf4\xdd\xa5\x15\x4c\x4a\xb4\x87\x43\x51\xb1\xf6\x01\xab\x2f\xdd\xbd\xc3\x18\x11\x76\x32\x26\x5b\x06\xb9\x3f\x3e\x9c\xab\x93\xe7\x0a\xd9\xe5\x33\x52\xf1\x99\x08\xbe\xb5\xd7\xe2\x0f\x37\xa9\x5a\x3a\x86\x00\xff\x91\x5d\x27\xa4\xe4\x21\x92\x1d\x8e\x09\x6f\x80\x00\x6c\x78\xa1\xf1\x3d\x3f\x07\x33\x9b\x7c\x13\x8e\xeb\x84\xe3\x5e\xc5\x04\xbd\x44\x52\x02\x30\xde\x4c\x4a\x98\x94\x4b\x5a\xc0\xf4\xd8\x27\x0b\xee\x2d\x89\x9b\x0f\x35\xf7\x55\x97\x65\x02\x7e\x95\x6a\x2e\x34\xb7\x8a\x53\x28\x04\xb5\xb2\xc1\xc3\x6a\xa8\xc3\x2d\x41\x3f\x20\x6b\x86\x11\xbb\x14\xe6\x18\x08\x02\x00\x39\x25\x68\xd0\x9f\x4f\xef\x79\x15\xda\x19\x6d\x76\x32\x5b\x26\xd4\x29\xaa\x4a\x2b\x45\xb3\x32\x00\x00\x30\x41\xaf\x2b\xa6\x2d\x72\xd5\x68\xcd\x4e\x5d\x59\xd6\xc4\x90\x02\xa8\x26\x2c\x18\x44\x18\x4b\xbd\xd6\x4a\x76\x6b\xbd\xe3\x51\x10\x14\xaa\x6c\xa1\xca\xf7\xb9\x27\x06\xdd\x54\xf3\xe3\xfc\xd5\x7c\x63\xbe\x50\xa1\xb5\x57\x58\x39\x16\x7e\x6a\x36\x1a\x97\x0c\x3c\x94\x4d\xa1\xba\x83\xab\x79\x43\x13\xe3\xa0\xbf\x16\x11\xd2\x11\xd9\x47\xe5\x7f\x6b\x33\x7a\xff\xaf\xab\x68\xf0\x56\xc2\xd8\xb1\xb5\x4d\xcd\x85\xa6\x56\x40\x2d\x3a\xfb\xf7\x22\xad\xca\xcd\x33\xf3\x3b\x2b\x97\x73\xa2\x91\xd9\x67\x12\x76\x41\x18\x24\xbd\x0b\x61\xba\xd9\x8c\xd8\x36\xa7\x52\x01\x18\xf5\xd1\xfc\xfa\x96\xd6\xd8\xe6\x5e\x68\xab\x72\x23\xb0\xc4\xe0\xe7\xd9\xa3\x14\x16\x76\x96\x22\x8e\x47\xfb\x97\x6d\xad\x6a\xaa\x89\x70\xcc\x71\x3f\x93\x77\xd5\x6d\x51\x76\x12\xfe\x68\x2b\xde\xc9\xa2\xc7\x32\x53\xd5\x05\x36\x02\xb6\x6e\x10\x3a\x44\xba\x2a\x4a\x62\x9c\xf2\xc8\x76\x7b\xd3\x85\xfe\xe7\x62\xf3\xf4\xd2\xa0\x77\x93\x22\x4c\x6c\xad\x62\xe0\x8d\x3e\x1b\x19\x75\x4e\x3a\xb6\x26\x2e\xa0\x60\xb1\x55\xe3\xc3\xdc\xd2\x48\xc3\x6f\x6b\xa9\xea\xb8\xdb\xbc\xc3\xde\xf9\x24\x3b\x4f\xac\x19\x8b\x25\xa4\x95\x9a\xea\xe3\xfa\xa5\xe9\x94\xbf\x26\xf0\xdc\x1b\xb0\x74\x3e\x48\xa6\x22\x02\xda\xdb\xf1\x03\x46\x4f\xc5\x1d\x11\x75\xaf\x50\x76\xd7\xe1\x71\xaf\xb1\x03\xb9\xdc\x54\x76\xa5\x25\x99\x7a\x29\xc5\x5b\x5a\x4c\x8a\x14\xda\xd7\x37\x4d\x7b\x1c\x3d\xfc\xc9\x31\xa8\xcb\x86\xf9\xff\x59\x13\x4e\xb2\xb9\x1a\x75\xf5\x38\xdb\x73\x6f\xa5\xf5\x71\xe0\x88\x7d\x1f\x03\x5e\x7d\x29\xfd\x9c\x00\x5f\xfe\xc1\x46\x73\xcb\x7e\x60\x53\x8b\xa1\x53\x5d\x5d\xd8\xc1\x94\xf6\xe8\xe2\x42\xaf\xf7\xfc\x86\x62\xf9\xf2\x94\x94\x80\x49\x25\x5d\xaf\xb3\x81\x44\xeb\x1c\x51\xa4\x69\xad\x3f\xff\x9a\xbf\x83\x01\x86\x8e\x8f\x09\x00\x70\x1a\xd3\xc7\xc2\x34\xa5\xde\x80\x16\xd8\x6a\x26\xdf\x2c\xa9\x69\x5b\x09\x93\x01\x23\x4a\x84\x84\xdb\xfb\xd8\xfa\x93\xd8\x71\xfa\xb8\xba\x12\x73\xec\xba\x9d\xa8\x77\xf3\x2d\xde\x97\x50\x7c\x10\x04\x39\x46\x49\x0f\xfe\xcb\xb0\x24\xc6\xb3\xfb\x08\x2a\x06\x5e\x75\x62\xc8\xca\xdb\x17\x49\x29\xde\xcd\xea\x91\xe0\x82\xfc\xe5\xc0\x78\xf6\x60\x0c\xea\x1f\x24\x2d\x95\x01\x20\xbc\x9a\x45\xe0\x25\x6d\xbb\x36\xf6\x0f\xc8\x5d\x4e\x7c\xa3\xed\x4d\xb1\xd0\xce\xad\x90\x63\xa3\x3e\xc4\x91\xdc\x7e\x92\x04\x52\xfb\xbd\xd2\x4f\xe3\x7b\xb4\xe3\xb7\xff\x9e\x6f\x7e\x9c\x50\x54\x14\x23\x37\xa2\x3a\xd8\x89\x9f\x11\xf6\x98\x85\x17\x1d\xee\xaf\x09\xfc\x92\xbd\x6a\x1e\x39\xfa\x6d\xf6\xe0\x6a\x71\x07\xb2\xd4\x04\xb2\x7d\x8e\xc6\x76\xb5\x64\xeb\x70\xc6\x72\x87\x0c\x19\xd2\x8b\x27\xb4\xcb\x0a\x03\x29\x63\x5a\x7f\x9c\x86\x28\xbc\xdf\x06\xb5\xd4\x58\x17\x61\x33\xff\x19\x42\x4e\x15\x11\xbc\xe6\x61\x2b\x67\xf9\xfe\xe5\x7f\xb5\x43\x42\x51\xf5\x14\xf0\x41\x2c\xa7\x14\x0a\x60\x84\x62\x9a\x28\xc2\x6b\x01\x0b\x16\x79\x2a\xab\x73\x67\xc3\x85\x69\xe0\x7d\x00\xf8\xd8\x01\x80\xe4\xad\x46\xc8\x16\x56\x0b\x28\x45\x61\x6c\x22\xd8\xd0\xe9\x5d\xee\x88\xcd\x33\xd1\xaa\x43\x35\x28\x76\xe6\x1e\xa8\xa5\xc1\x84\x43\xe7\x45\xda\xfe\xe1\x46\x33\x7e\x1e\xaf\xe2\x42\x07\x35\x18\x1a\x98\x92\x44\x46\x0c\x1b\xc4\x0d\x7d\xba\x5c\x0f\x0d\xf5\x02\xf9\xc8\x51\x80\x8e\x57\x11\x8e\x81\xc6\xd6\x67\x59\x21\x12\x07\x27\x87\x89\xa7\x96\x8b\x57\x58\x03\xe5\x00\xe5\x28\x01\x8c\xc6\xfb\x0d\xe8\x3b\x7b\x7d\x9e\x9c\x77\x46\x49\x2c\x6f\x2a\x6f\x91\x16\x78\xcd\x31\xbc\xd0\xb9\xd1\xa8\x3a\x2e\x59\x5a\xb6\xe0\xdf\x46\x0b\x56\xa4\xfc\xcb\xdd\x36\x59\x62\x14\x3c\x6f\xeb\xbf\x16\x34\x75\x18\x7c\xe1\xf7\x43\x46\x91\x30\xfc\xe9\xdf\x7a\x28\x14\x2e\x46\x01\xe7\x82\x1a\x6c\x1b\xef\x7f\x09\x59\xfe\x62\xe4\xe1\xbf\x5c\x48\x6b\x22\x1e\x2e\xd1\x4e\xf8\xaa\xe3\xeb\xe9\x41\xd3\x61\xcf\x23\xdf\x19\x52\x04\x36\x40\x0d\x10\x02\x7f\x00\xc4\x93\xff\xdf\x74\x83\xa3\x55\x7d\xec\x05\x6f\x7b\x5a\xf2\x1a\x8c\x39\xe6\xfa\x6e\xb2\x0f\xd7\x32\xa3\x80\x80\xa2\x50\xee\x5a\xfc\x03\xcc\xd9\xd2\xfe\x1c\xc6\x35\xf6\xb8\xc8\xe9\xc4\x22\x8c\x7d\xcb\x7a\xc1\x81\xab\x4d\x14\xea\xa2\x47\x7f\x3a\xa6\x6a\xb9\x73\x4b\xd6\x74\x88\x64\x9a\x5f\xfb\x2c\x9d\x4a\x7a\x2f\x48\x37\xaa\xfa\x46\x53\x2a\x34\x36\x3a\x36\x5c\xc8\xf5\xf0\x92\xc7\x72\x0a\x0b\xc6\x6b\xc9\xba\xb2\x2e\x29\x87\xd2\xe2\x6c\xb3\xbf\x89\xe5\x9c\xd9\x9d\x13\x5d\xc7\x72\x5b\x26\x2c\x84\x56\x26\x9c\xc7\x52\x68\xeb\x25\x15\x27\x76\x58\x76\x09\x71\x51\x8b\x7e\x18\xeb\x6c\x06\x20\x54\x88\xfa\xb1\x48\x51\xfe\x7c\x65\x71\x60\x60\xaa\x34\x99\xb8\x13\x24\x1f\x22\x3a\xc8\x00\x1b\x24\x86\xa6\x7b\x04\xfc\x95\x4d\x95\xb0\xee\x5e\x36\xbb\xb2\x5a\x15\xa3\xf9\x92\x48\x01\x98\x31\x43\x7a\x4e\x40\x28\x4d\xa5\x25\x83\xf2\x38\xc5\x25\x2d\xed\x99\x0f\x1f\x1f\x29\x06\xf2\xc8\xe3\xc7\xff\x36\x32\xb0\xb1\x4d\xca\xfb\x53\x52\x48\x25\x84\x27\x02\x19\xeb\xf3\xcb\x84\x22\xa2\x28\x25\xb5\xdb\x46\x27\xed\xcf\x2e\x57\xaf\x07\xa0\x01\xb7\x97\x87\x91\x0c\x10\xf4\x47\xbc\x5f\x91\x6a\x0c\xb4\xb4\x36\x45\x0f\xdb\xcb\xc9\x45\x5a\xfe\xb1\x89\x44\xa0\x20\xc6\x20\x30\x6b\x8a\x26\x64\x22\x9d\x14\xbf\x7c\x85\x91\x2c\xea\x8b\xb2\x50\x7a\xbd\xd1\xb8\xa3\xef\xad\xe9\xea\x74\x19\x7f\xf5\x8f\x4d\x3a\x36\x1e\xfc\xbc\x4a\x6d\xc1\x2b\x22\x09\x43\x9b\xfb\x2f\x44\x53\xc9\x69\xaf\xc3\xac\x91\x8e\x4f\xec\xaf\xb0\x53\x6e\x3d\x9f\x06\x32\x46\x9b\x5c\x75\x99\xe9\xed\xb8\xa0\xcc\xcd\x3c\xef\xae\x5e\xf8\xe6\xe1\x34\x4b\xc8\x1f\xea\xdc\x7d\x52\x5b\x47\x65\x29\x7a\x2e\x29\xb6\x44\xe6\x99\x3a\x84\xcf\x46\x19\x81\x56\x87\xbf\xa6\xa2\x42\x3a\x0c\xe5\xdb\xf5\x6d\x6d\x74\xce\x50\x9b\x43\x55\xc6\xe7\x16\x9f\x15\xde\x53\x82\x5a\xaa\x4c\x8a\xa6\x09\x6a\xd5\xcb\xf4\x3a\xa2\x4b\xf0\x1f\xf7\xc6\xe8\x64\xe6\x59\x3c\xd1\xe6\x84\xf2\x72\xbd\xf4\xf0\x3f\x99\x5a\x5b\x6a\xce\xf6\x5c\x10\x79\x38\xfc\x9e\x98\x73\xa8\x19\x26\x0b\xef\xf5\x64\xf9\xc9\xf2\x89\x00\x6d\x70\x27\x16\xe2\x47\xb3\x78\x2f\x3f\x10\x01\x00\x94\x45\x86\x16\x69\x50\x56\x7d\x64\xff\x19\x9b\xe1\x87\x61\x15\x71\xc4\x7a\x84\x1a\xbf\x72\x19\xc5\xf3\x8d\xeb\x9c\xf8\xa7\xf5\x61\xa2\xc5\x7a\x48\x51\x6e\x93\x74\xca\x04\xf2\x4b\xa6\xc0\xf0\x37\x61\x4d\x12\xb6\x57\x5d\x19\x41\x5b\x45\x8f\x06\x3d\x1f\x46\x06\x60\xe0\xec\x02\x57\xd4\x52\x50\x9d\xb8\xe5\xfe\x2d\x3f\x9c\x1f\x88\x5a\x92\x62\x7d\x99\x4a\x2b\x22\x81\xf3\xc8\x9f\xdb\xb5\x0a\xfd\x48\x1e\x0f\x3b\xa8\x09\xcc\xbf\xfd\x8f\xb0\x3c\xbd\x8a\x0f\x4e\x88\xbd\x0e\x4a\x8f\x3a\x9f\xe9\xf3\xa0\x21\x6b\xbb\x5c\x88\xbe\x16\x88\x23\x75\x1d\xbb\xe4\xc5\x03\xb3\x7b\xf4\xc7\x63\xfc\x7d\x2a\xe7\x1e\xc6\x23\xa7\x92\x22\x7d\x98\xe7\x9d\x2a\x25\x4d\xac\x4d\x1f\x01\x6e\x4d\x74\x55\x4a\x1f\xbe\xe3\x45\x66\xbc\x8c\x2c\xbd\x89\x8c\xdc\x13\x58\xbc\x1a\xea\xea\xd4\x71\x2d\x3d\xf1\xea\x3e\xc1\x5c\x48\xb4\x3a\x1f\xb9\x6e\x47\x5a\x0c\x1b\xe6\x34\x3a\x7f\x7c\xcb\xf8\xb2\xff\x70\x50\x97\xc7\x03\x0c\xac\x5c\x49\x92\x53\x8f\x96\x04\x7c\x3e\x01\xe1\x73\x28\xed\xcf\x79\xd0\x3c\xf1\xb3\x6f\xc9\x6d\xeb\x81\xa8\xb1\xf8\x72\xc7\x20\x60\xb3\xd6\xdb\x77\x65\x34\x5c\x73\x98\xbd\xfb\xbd\x08\xa2\xa4\xd7\x8e\x08\xff\xe8\x88\xea\xb1\x24\x56\x48\x54\xa2\x39\x02\x6d\xec\x23\xa2\x5f\x7f\xa2\x43\x86\x8c\xfd\x71\xc9\xfb\xcd\xf1\x83\x15\x66\xe9\x8d\xfe\xb5\x95\x22\xfa\xc7\x73\xe9\xbb\x9d\x2f\x3a\xc9\x98\xdd\x16\xfd\x1a\xa5\xed\x41\x2f\x22\x57\x7b\xa1\x81\x68\xa8\x1c\xc3\x8d\xdf\xf0\xda\x7d\x1a\xb6\x2b\x39\x18\x4a\x45\x82\x0f\xc8\x2d\xc7\x4b\xce\xb3\x13\xcd\x35\x5a\xc7\xea\xed\x66\x6e\x54\x05\x7f\xea\xc3\x15\xfa\xe4\x1a\x5a\xea\xea\xd5\xb4\xc2\x2a\xf8\x23\x59\x6f\x25\x3f\x73\x61\xa2\x61\x79\x91\x89\xe7\x85\xda\x56\x82\xae\xab\x29\xfd\xe9\xdb\x0f\x93\x69\xeb\x27\x91\xb5\x74\xd3\x20\xc4\x34\xd8\xd6\x6f\x5f\xfe\xa1\x7b\xfa\x63\xa5\xbf\xaa\x5b\xac\x7f\x29\xf4\x84\x17\x34\x92\x18\x24\xd0\x6f\xa6\x3c\x48\x48\xa3\x39\x08\x0f\xbd\x2f\x90\x92\x14\x8c\x5c\xce\xe1\x31\xe7\x71\xbc\xf4\x8d\x1f\xc8\x01\x28\x33\xe4\xa5\x17\x82\x29\x1a\x0f\x59\x61\xf0\x47\x9f\x9b\x40\x31\xfb\xdd\xb5\x95\xef\x6f\x8a\x79\x76\x6e\x13\x21\x10\x54\x41\x4a\xa9\x85\xd8\x46\x4e\x5c\x6e\xfc\xb8\x70\xc9\x3f\xab\x16\xcb\xba\x48\x84\xde\x7e\xf0\x91\x50\x8c\x77\x4a\xf4\x35\x03\xd3\x28\x77\xe3\xdf\xc8\xa7\x0f\x3c\xbf\xac\xc9\x3e\x30\x5d\x72\x10\x7d\x5b\xf6\x3a\x18\xb9\xa3\xd0\x55\xb9\x96\x55\x44\x5b\x08\xf9\x11\xa3\xd5\x20\x86\x83\x9e\xff\x56\x76\x02\x9b\x76\xf8\x84\xad\xdd\xbd\xef\x44\xee\x1e\xd3\xad\xf1\xfe\x00\x03\x70\x35\x08\x23\x5e\xa0\x14\x37\x8a\x11\x61\x6b\x39\x92\x8b\xbe\xca\xa9\x6d\x2c\x74\x4d\x4a\x3c\xbb\x57\x84\x76\x32\xb2\x25\x88\xfb\x66\x4c\x68\x3b\x16\xf3\x0b\xd4\xbd\xc7\x96\xb5\x57\x72\x92\x2b\x9d\x89\xbb\xa0\x19\xde\xc0\xc7\x49\x34\x92\xf9\x73\x44\x14\x73\xab\xb9\x2d\xf0\xb0\xb9\xe8\x6b\x77\xaf\x1f\x49\x80\x39\xb2\x35\xc4\x98\x75\x59\x2d\xa7\x03\xbe\xd7\x52\x8a\x68\x34\xcd\x48\x66\x4f\x6f\x4c\x04\xda\x75\xc6\xd7\x33\x3d\xf9\x59\x9b\xe4\x9f\xfa\x81\x12\x00\x90\x5b\x78\x0a\xe5\x11\x2a\xba\xf7\x84\xe2\x67\xdb\x62\x73\x46\x68\xbc\x2b\x9f\xe4\x28\x84\xdf\x64\x1f\x5a\xa9\xc3\xe0\x8d\x7d\x3b\xe7\x29\xbf\x8d\x9a\xf5\xa6\x39\x01\xa1\x85\xe1\xeb\xfd\xa0\xcb\x47\xf4\x91\xc8\x7f\x2f\xcf\x70\xe0\x1a\x1d\x28\x42\x0c\x4f\x05\xb7\xf3\xa4\x23\x84\xff\x76\x5f\x36\xb8\xce\x68\xb9\xf7\x41\xad\xa0\xe4\xa1\xb6\x67\xc7\x1e\x2d\x8e\x4b\x2a\x8d\x26\xef\xb2\x2a\x1c\x5e\xef\xfa\x5c\xbc\x1c\xb4\x9a\x78\xc8\x0a\x8e\xaa\x48\xb0\x03\x01\x3c\xea\xe2\x08\x39\xe3\xee\x52\x94\xbc\x2e\xdf\xe7\xdc\x8d\x97\x16\x1d\xda\xd3\x9b\xf9\xea\x26\x63\xc9\x92\xe4\x48\x85\x5c\x15\x63\x03\x1b\x5b\x1d\x8a\x0f\x35\xad\x3f\x4e\xfb\xc5\x63\x56\xbd\x29\x68\x34\xea\x04\x90\xbf\x9e\xa1\x48\xa9\x5c\x66\xe5\xde\x9d\xb3\x30\x5d\x32\x95\xde\x38\x6a\x87\x4f\x62\xfe\x21\x8f\x6f\x05\x39\x36\x69\xad\x44\x2f\xec\x99\xe5\x89\x43\xd6\xff\xc0\x00\x69\x52\xf3\xc1\x93\x44\xc3\xda\xbb\xdf\x4a\x3f\x9b\x78\xa4\x80\xff\x72\x99\x8c\xd5\x01\x76\x3b\xf4\x1a\x00\xb0\x14\x70\x9b\xc2\x56\x94\x3e\x0b\x9e\x3e\xae\x3a\x29\xad\xe4\x75\x8c\x03\x9b\xc1\xd8\xbf\x16\x38\x7b\x55\x6d\xb3\x72\x97\x4c\xbb\x45\x68\x7c\xf2\x8c\x3d\xa6\xde\x26\xca\x79\x8e\x49\x9e\x39\xbe\x7a\x1e\x0c\xb8\x50\x51\xae\x1c\x44\x0a\x52\xee\xe9\x9f\x17\xa5\x98\xb7\x3e\x64\x1f\xcd\xe9\x08\xba\xfa\xd7\x2f\x8c\xf9\xe9\x6c\x9d\x7d\x1a\xbb\xbe\x97\x73\x23\x70\x36\x1c\x15\x9e\x9f\xef\xf5\x9e\x17\x8f\x29\xd8\xb7\x03\x9d\x82\xa2\x5e\x26\x5a\x99\xb9\x0f\x84\x5e\x03\xa3\xbf\xbd\x99\x51\xf1\x3d\x62\xb2\xe4\x25\x99\x25\x64\xbc\xa9\x95\x42\x91\x22\x58\x99\x51\x43\x17\xb9\x71\xe1\xbf\x8d\x1a\xc6\x46\x1c\xb8\x6a\x6b\xb4\x27\x09\x6d\x6b\xd9\x21\x88\xf7\x46\xdd\xed\xa2\x20\x32\xd0\x1f\x46\xca\x0a\xb4\x31\x7f\x97\xf1\xe7\x99\x42\x4c\x13\xd1\x37\x7f\xcc\x50\xc6\x35\x77\x55\xea\x09\x87\x22\x1a\x5b\x48\xda\xee\xd8\x21\x75\x10\x0c\xf3\xac\xfe\x71\xda\x17\x78\x61\x5f\xb6\x8f\xd5\xc6\xf7\x87\x35\x1d\xd8\xe6\xfd\x45\x1a\x35\x95\xbe\x26\x34\x5a\xe2\x00\x51\x6e\xcf\x6e\x31\x29\x22\x88\x1f\xc6\x3f\xe5\x02\xa7\xaf\x3d\x2a\xe7\x57\x76\xe4\x9c\xe9\xdb\xd3\xb1\x6b\xec\x86\xb0\x4d\x0f\xb4\xe3\x29\x77\x82\xb7\x1f\x21\xb8\xa8\xb1\x5e\x5f\x74\x1b\x3e\x7c\xad\x78\xc0\xd6\x67\x6b\x3e\xe5\xc7\xdc\xe8\xeb\x37\x48\xe8\x39\xd8\xb6\x95\x39\xdf\x80\xf7\xef\x0e\xaa\x5d\xc1\x6a\xd8\x86\x43\x9e\x8a\xf6\xbb\x7f\xbf\xb9\xf4\x38\x76\x44\x0d\x7d\x04\x58\xc1\x51\xab\xe9\x40\x28\x4f\xba\xbb\xd3\x5d\xc5\xd5\x1a\x04\x1a\x55\x48\x55\x8d\x8d\x9d\x67\xcd\xf1\x2d\x64\xf8\x84\x15\xfc\x7a\x1e\x3b\x11\xce\xd4\x9f\x57\x56\xc2\x5f\xb3\x15\xaf\x57\xb8\x96\x9f\x39\x35\x06\xf9\xc1\x58\x43\xa0\x77\x06\x1d\x4d\x53\x83\xc2\xb7\xe4\xdf\x04\xd2\x06\x9f\x69\xf9\x4f\x1c\xed\x85\xa8\xf0\x71\x53\xbf\x9b\x6e\xbb\xc8\x3e\xba\xd7\xb7\x58\x6b\x1b\xf2\xfa\x27\xa2\x88\x06\x0b\x77\x17\x4a\x3c\x06\x99\x3c\xcd\xb3\x8b\xff\x3d\x87\x2b\x7c\x68\xaa\x4f\x4a\xc3\x38\xdd\x7a\x08\x6a\xe3\xf8\x03\x57\x05\xa4\x28\xe9\x68\xe1\xad\xbf\x5b\xb6\x0c\x48\x50\x2e\x3d\x8e\x24\xf0\xa5\xc0\xac\x17\x3b\xa0\xc1\x4c\x28\x00\x00\x24\x07\x64\xac\xf5\x7d\xc9\x3a\xbb\x5e\x4b\x27\xba\x83\xda\xc1\x66\x76\xf4\x3e\x2a\xb8\xc1\x58\x23\x0c\xa8\x14\x0e\xc9\xbf\x77\xa3\xff\x1e\x5a\x19\x25\x98\x43\x3f\xd5\x94\x72\xb7\x9c\xf2\x63\x6a\x74\x2e\x78\x31\xcd\x13\xda\x98\xaf\x3d\x3b\x8f\xc6\x3e\x3d\x24\xfa\x62\x0a\x18\x93\x76\xc6\x05\xc4\xd2\x45\x16\x7d\x50\x80\x57\xf2\x0a\x60\x22\x0e\xf0\xe2\xb0\x02\xef\x53\x78\xd9\x78\x44\x49\x90\xc0\x63\x3e\x3f\x49\xe2\x20\x0a\x7b\x77\xe9\xb5\x09\x29\xe2\x91\x00\x40\x95\x59\x7e\x88\x70\xa6\xe8\x1b\xe7\x79\x4e\x5c\x6e\x2e\x25\xc8\xbe\xce\xed\xc0\xab\xcf\xf9\x1d\xbc\x80\xe0\x29\x3e\x68\x7d\x00\x2f\xe2\x01\x25\xe4\x5f\x6d\xe4\x8f\x6e\x32\x36\x76\x28\x24\x70\xfc\x67\x6e\xec\xe5\x2a\x72\xab\xbf\x27\x70\x1f\xa9\x94\xd6\xa2\xc4\x54\xb1\xe2\xd3\x7a\x1a\xa4\x80\x1e\xbc\xfa\xa0\x4b\xe2\x59\xae\x71\xd4\x87\x3e\x0b\x06\xdf\xb4\x1f\xe2\xa2\x71\xf0\x51\x10\x19\x32\x90\xf3\x77\x16\x62\x24\x92\xc6\xfc\x3e\x69\xe8\xeb\x8b\xb9\xbe\xca\x9e\x1d\x83\x57\x8f\x15\x02\x60\x80\x34\xb9\x39\xe7\x5e\x65\x5d\xbc\xde\xdc\xe0\x46\x3c\x73\x22\xe3\x7e\x63\xaf\x98\xf2\x06\xab\x69\x80\x26\x1d\x2a\x86\x9a\x37\x1c\xf4\xf2\x01\x49\x7d\xfb\xa6\xab\x0c\x84\x8a\x76\xd5\xbd\xa8\x59\xfc\xf7\xb3\xae\xd6\x05\xb3\xa2\x3d\x7b\x47\x81\x2d\x7b\xed\x2e\x1d\xb5\x51\xe5\x74\x49\x14\xf8\x7f\xbc\x97\x57\x34\xdb\x0f\xfc\xf7\xbf\x89\x84\x20\xad\xad\x56\x25\x46\xd1\x58\xb1\x4a\xd5\x48\xd4\xa6\x46\xad\x1a\x35\x6a\x14\xa5\x76\x6d\x22\x54\x55\x6d\x35\x6a\xd7\xae\xd9\x2a\x4a\x6b\x6b\x51\x7b\x54\x8d\x9a\x8d\xad\x45\xad\x18\x21\xcf\xf9\xfd\x9f\xab\xe7\xe2\xb9\xfd\x9f\xf3\xb9\x7d\x9d\xcf\x7e\x9f\xf3\x06\x0c\x4c\x46\xbf\x55\xf5\x1e\x96\x0e\x2b\x8b\x5b\x82\xd6\x28\x90\x65\x94\x50\x0c\x8d\xfd\x1f\x78\x0c\x39\x0f\x00\x96\x8d\xfb\xbb\xab\x6c\x24\x42\xd5\x69\x13\xea\x14\x3c\x44\xa3\x34\x70\x06\xc8\xe8\xe1\xcd\xdc\x96\xa2\x96\xe6\xf1\x1f\xa6\x19\x16\x15\xb0\x4c\xb7\x9f\xf2\x47\x23\x04\x15\xdb\xe2\x51\x00\x08\x82\x26\x39\xe4\x8d\xed\x6d\x8f\x7a\x11\x2d\xfd\x89\x52\xdb\xc4\xbc\xb5\xb0\xd5\xd3\xbb\xdb\xed\x16\xce\xc2\x76\xd8\x7c\xda\x27\xf0\x9f\x43\x54\x0f\x86\x9a\x63\x3f\x65\x13\xdb\xea\x4d\x06\xa9\x30\x7a\x54\x34\x38\x50\x4e\x17\xd3\xa8\x7d\x31\x58\x60\xd5\xb0\xa7\xd6\x42\xc9\xe8\x20\xa1\xae\x0a\x26\xb9\x7f\xb9\x78\x1b\x6f\xa0\xe5\x1d\x84\xb1\x41\xc9\xf5\x0b\x9b\x71\x04\xbd\xfb\x61\x1a\x6a\xc9\xf2\x37\x7d\x18\x7a\xe8\x64\x5d\x44\x8f\xe9\x11\xf8\xb6\x57\x76\x83\x78\xa3\xfa\xc4\x0f\x40\x3f\x4d\x8b\x4f\xab\xf5\x60\x6e\xf3\xf2\x5f\x3c\x6b\x5d\x2d\x3d\x0e\x56\xc7\x2c\x16\x60\x74\x33\x31\x31\x89\xda\x85\x9c\x39\x35\x16\xdc\x77\x02\xea\x96\x94\x56\x8d\xd5\xef\x40\x1e\x29\x01\x92\x8c\x42\x40\x74\x52\x9d\x14\x72\x73\x7d\xc3\xbe\x57\x43\x3f\xb9\xc5\xed\x74\xb2\xaa\x6c\x23\x30\x43\x74\xe8\x09\xed\xb2\x9d\xef\x01\x05\xeb\x10\xae\xd5\xa2\x3e\xed\x5a\xed\xcf\xa3\xe7\xdf\x1a\xfb\xb3\xe5\x3d\x34\x18\xa1\xa9\x51\x1d\x48\x2c\x6e\x39\xe2\xb6\x23\x26\x44\xf9\xec\xf4\x65\xcf\x49\x51\x34\xb9\xc9\x1e\x01\xb0\xc9\xa2\x7a\xf6\x65\x6f\xed\xdb\x84\xfb\xc9\x1e\xdc\xa9\xbc\xf7\x97\x28\x92\x18\xea\xf3\x5a\x3b\x6c\x1d\xfe\x16\xef\x20\x9a\x9f\xce\xac\x75\xeb\xd6\xab\x1d\x1e\x60\x8d\x02\x49\x88\x00\xdb\xc2\xf8\x82\x40\x2a\x14\x69\x3f\xa8\x13\xe5\x2a\x60\x15\x4e\x06\x0d\x0a\xa5\x6b\x56\x8d\x31\x79\x38\xdf\x2e\x12\x30\x50\x56\x2b\x3a\xbd\x35\xbf\x2d\x13\xfa\xee\x87\x69\xe4\x67\x86\x7a\x2e\x13\xdf\x7c\x49\x03\x18\xbc\x42\x1c\x67\x1d\xc1\xfe\x58\x55\x96\x5c\x20\x1a\xda\x2b\x7c\xd9\xf0\xd9\xf4\xec\x27\xa1\x6b\xca\xfa\xd7\x77\xd2\xc4\x64\xe9\xf1\x17\x73\xfd\xd3\x1a\xde\x3e\x9a\x66\xfe\x03\xa7\x32\xd2\x2d\x51\x47\x05\x57\xb9\x8a\x93\x7d\x21\x82\xec\xff\x08\x55\xc7\x9f\x43\x06\xad\x0d\xe2\x75\x0f\x62\xa0\x15\x08\x0e\x88\x00\x7d\x60\x4c\xcd\x9d\x7d\x55\x95\xb0\x0f\xd5\xd6\xa7\x5b\x4e\x3b\x9c\xfe\x57\x87\x6a\x39\x40\x43\x7a\x67\x79\xa5\x20\xac\x43\xb7\xd1\xca\xba\x9f\x62\x80\xc7\xc7\x8d\xcb\x8d\xc8\xa3\xb5\x32\x19\x3e\x67\x0a\xdc\xe2\x75\x10\xb0\xd7\x17\x93\xae\x75\x2f\x1b\x12\x2c\xf0\x15\x41\x5a\xa2\xf2\x3e\x49\x43\x66\xa4\x4d\x2f\x84\xe2\x3a\xe3\x5b\x52\x54\x31\xd2\xdd\x36\x0f\xdd\x9d\x4f\xa7\xfc\xeb\x6a\x6b\x27\x1b\x6c\xbe\x7f\xfe\xc3\xc9\x51\xf6\xe9\x65\x94\x4e\x76\x1f\xa7\x81\xf9\xfc\x40\x20\x79\x59\xdc\xa6\x9c\x34\xf2\x82\x9d\x0c\x00\xb3\xc0\x12\x80\xa3\x15\x5c\x4c\x56\xda\x05\xc2\x76\x18\x98\x01\x7b\xb4\x2a\xe4\x50\x9a\x8c\x63\x62\x48\x82\xe2\x14\x80\x95\x98\xa8\x90\x31\x43\xd3\xc5\xd9\xc1\xd6\x8b\xae\x88\xa3\x84\xcd\x09\x52\xf1\xae\x8b\xc5\x06\x4d\x84\x38\xa7\x7c\xf8\xae\xcb\xd8\x29\x59\xc9\xea\x49\x98\xf5\x07\xbc\x40\x8e\xae\xa7\x96\x0a\x52\x0b\x8e\xe9\xfa\xc7\x96\xc3\x5c\x16\x09\x29\xa2\x4b\xb2\x2a\xe2\xdb\xba\xa9\x2d\xbc\x5c\x09\xe0\x82\xaa\x2b\xc4\x5b\x1a\xb3\x43\x7d\x4a\xde\x86\xc9\x12\x3e\x7c\x32\xd1\xf3\x30\xa2\xfe\x59\xbc\xeb\xc7\x6c\xa5\xe6\xa6\x20\x76\x9b\x7c\x2c\x6e\x5d\x4e\x7a\x53\x16\x23\x0f\x4c\x7b\xf2\x82\xbb\x76\x35\x0e\xef\x44\xe4\xfb\x41\xa0\x1d\x4d\xc5\x31\x38\xe7\x6b\xef\xcb\x61\x7d\xbe\x1a\x62\x92\xfb\x81\x1a\xe6\x97\xfd\xa6\xc7\x95\xfe\xc4\xea\x5a\x4b\x6e\xe1\xff\xa6\x05\xbb\x19\xe3\x16\xa0\xab\xf4\x74\x93\x54\x16\x6c\xbe\x5b\x1b\x1e\x58\x72\x34\xe6\x34\x56\xdd\xe1\xc9\x93\xb4\xc6\x80\x91\x40\xdf\x88\xb3\x3d\xec\xb6\x57\x58\x50\x1e\xdd\x53\x0e\x77\x16\x5b\x9c\x1f\x08\xf1\x6b\x7e\x77\x59\xb1\x39\x51\x2b\x84\xaf\x99\xd0\x69\xf9\xad\x8f\xad\x97\xbe\xbc\xec\x35\xb3\x20\xaf\xb5\xfe\x6a\x68\xa7\xc0\xb1\xe6\xc4\x00\x74\x7a\x6d\xd7\x84\xc0\x49\xf6\x06\x40\x0e\x1e\xc4\x8b\xe4\xb8\x8a\x2e\x58\x64\xf2\x14\x81\xd4\x89\x59\x06\xd9\xdf\x39\x4f\x33\x3b\x96\x5c\x1c\xfc\x5c\x25\xbd\x19\x9c\x25\x59\x8c\xb4\xf5\x41\xf9\xff\x42\x85\x93\x85\x08\xe4\x8d\x83\xb4\xe3\x8b\x17\xaf\x86\x23\x7a\xa3\xa8\x36\xdf\x46\x48\xf3\xe0\x1e\x2d\xa5\x78\xd3\x14\xe5\x9b\x7e\x6a\xef\xdd\xe3\x54\x92\xc9\xbb\x23\x69\x66\xa3\xf0\xbe\xcd\xd4\xf5\x5d\xbb\x2b\xe5\xe1\x15\x81\x3e\xc9\xe4\x82\xce\xd7\xc3\xaf\x52\x70\x96\x12\x17\xe4\x73\x41\xd9\x2d\xf2\xf1\xc4\xe4\xf1\x5d\x39\x06\xd0\x98\x01\xc6\x86\x8f\x87\xe4\x36\x22\x6e\x74\x8a\x6d\x87\x7f\x55\xc5\x34\x8d\x6b\xce\xde\xc9\x41\x81\x45\x12\x45\xdb\xda\x52\x03\x09\x0d\xf3\x7f\x64\x7d\xae\x5a\xe6\x1d\x2a\xde\xe3\xb9\xcf\xb8\x27\x97\xec\x68\xc6\xd0\x5e\xf5\xa0\xd3\x46\x11\x35\xa3\x1c\xf6\xde\xc1\x43\xc6\xf7\xa9\x0f\x8a\x60\x0d\x02\x5d\x54\x16\x7c\xf8\x06\x00\x7a\x59\xeb\x6a\xb1\x9d\x54\x6c\xf3\x1b\xbd\xad\xde\xbd\x3d\x36\xb4\xe5\xd6\xbe\xaf\x07\x0f\xa8\xd6\xe2\xb7\x4d\x08\xd9\xd0\x17\xa1\x96\x74\x1b\x0f\x51\x7d\x5d\xe6\x19\x7f\x73\x99\x73\xfa\xb7\xf4\x16\xce\x53\xc9\xbe\x65\x67\xed\x7f\x56\x5b\x42\x3b\x42\x00\x07\xc0\x88\x1c\x91\xcf\x4f\xcd\x6b\xfb\x40\x0f\xc3\x76\x55\x8e\x15\xac\x8e\xb9\x66\xfd\xeb\x7b\xdb\xe5\xd9\xb3\xb5\x5f\x81\x1a\xe6\x9d\x75\x9d\x65\x2a\xda\x80\x58\x8c\x5b\x50\x2c\xa9\xf0\x2d\x55\xf8\xc7\x54\x62\x18\xa9\x69\x45\x41\xa1\x2f\x50\x46\x83\xe1\xa9\x27\x2f\x65\x8a\x02\xb8\x28\x36\xe2\xe4\x54\x42\x2e\x22\x2f\x81\x01\x1e\x76\xa8\xe0\xfe\x49\x23\xa4\x21\xdc\xea\x53\x3e\x75\xa1\x93\x82\x53\xd5\xad\xfa\xe7\x77\x34\x7a\xe6\x27\xa3\x8f\xe7\xe3\x7a\xdb\x6a\xbc\xbd\x73\x35\x1f\x3d\x4c\x8f\xbb\xfc\xf8\xd5\xe4\x6b\x4f\x91\xda\x3a\x95\xf2\x67\xa3\x0b\x3b\x4b\x82\x49\x47\x08\xc0\x0f\x95\xbe\x35\x82\xd1\x5e\x7f\x6f\xa8\x8a\x49\x14\xc4\x10\xea\x4f\xb6\xf4\xd6\x26\x65\x9f\xd5\x2d\xa2\x66\xfb\x39\x92\xd7\x2d\xf5\x7c\x7b\x18\x52\x70\x9c\x06\xcd\x8f\x2b\x49\xeb\x2c\x52\x01\x1e\x95\x4b\x61\x4d\xe6\xbe\xfe\xa8\xf4\xc5\x3a\x93\x65\x15\x0d\x20\x2a\x75\xa9\xfc\x11\x00\x40\x3b\xa5\x7c\x68\x22\x11\xdc\x54\xec\x17\x6d\x2a\x4a\xa5\xfa\x47\xdf\x1a\xb3\x5a\x2d\x26\x6a\xad\x2a\xb7\x3c\xc4\xea\x27\x77\xb3\x94\x42\x53\xb5\xea\xa4\x87\x9e\x5e\x32\x24\xdf\xcb\x5d\x24\x3b\x57\x9f\x2e\x92\x57\xd4\x09\xeb\xf8\x3e\x01\x5f\x05\x90\x98\xad\x12\xc0\x68\x97\xde\x0e\xb9\xa6\x32\x48\x0b\xa0\xad\x20\x51\xdf\x23\x14\x79\x31\xcb\xfc\xe1\xfe\x8b\x9f\xcf\x7b\x9e\x1d\x5b\xbe\x72\x3f\x92\x67\x52\x7d\x73\xd8\x7a\xef\x36\x23\xa0\x3a\x25\xbc\x57\x50\xf2\x2f\x9f\xcb\x81\x94\xff\x94\x65\x5e\xdc\xdf\xe7\x69\xb3\x1b\x54\x54\xcf\x51\xc1\x05\xad\x05\xe3\x4f\x33\xbb\x5e\x5f\xed\xb9\xc4\x2f\xaf\x9f\xfa\x07\xb0\xa7\x43\x57\xb5\x3e\xdb\x0d\xbc\xaf\x62\xb3\xe8\x6a\x43\x5b\xde\x38\x6d\x2a\x69\xb6\x75\x36\x3e\xf9\xf9\xb8\xeb\x91\x4e\x68\xef\xfe\xb4\x99\x8c\x5e\x5e\x51\x8a\x03\x6f\xad\xc4\x81\x26\x38\x6c\x66\x9f\x5c\x8b\x58\xac\x22\x7f\x19\xc9\xf8\x95\x08\x1c\x80\x92\x20\x6b\xbf\x07\x3c\x17\xe2\x6e\x82\xe1\x1b\x47\x90\x28\x15\xa4\x0e\xff\xca\xce\xeb\xa1\x3b\x1e\xee\x6b\x6d\xad\xb3\xa3\x3b\xe5\x39\x1b\xa9\x6d\x9f\xd8\xb1\xda\x38\x9c\x51\xe0\x52\xf9\xef\xa2\xcf\x0c\xa4\x95\xbe\xfd\xf0\xc0\xa4\x23\x59\xa2\xb7\xf5\x2a\x9a\xd0\xfb\x0d\x73\xbf\xa6\x03\x3d\xd2\x81\x64\x40\xfb\xde\xcf\xfd\xf9\xd2\x3f\x26\x99\x8e\xdd\x58\xcd\x87\x99\x18\x66\xf1\xdd\xba\x07\x62\xa8\xed\xfe\xed\xf3\xf8\xe8\xb5\xa9\xad\xd9\xa1\x92\xf4\xb3\xb4\xaa\x81\x85\x9f\x14\x67\xde\xb2\x8d\x23\xb6\x7a\xeb\xb7\xf5\x1c\x43\xef\xec\x5e\x9c\xb7\xb7\x19\x5d\x2c\xf2\x9e\x02\xb7\x7c\x5b\x80\x4c\x3a\xdc\xe0\xfa\x35\x82\x02\x1b\x16\xf2\xf5\x15\xf4\xdb\x27\x6a\x6e\xda\x88\x4a\x99\x8b\xd9\xd6\xa1\x39\xd9\x5a\x93\xa3\x8c\x23\x9c\xde\x37\xa5\x95\x9b\x2a\xda\x60\x3d\xcc\x6a\x42\x51\x8c\xbe\x85\x3c\x59\xed\xdb\xa1\xf2\xcc\xc8\x99\xfe\x27\xda\x9d\x65\xbb\x1e\x0f\xff\x54\xaa\x22\xeb\x08\xc3\x6f\x1d\x72\x6f\xf1\x1f\x04\x67\x5e\xe5\x65\x6a\x48\xef\x78\xa9\xcb\x1c\x2f\x7b\x19\x17\x85\xbb\x91\xde\x20\xb7\xb4\x8d\x86\xaa\x26\x8f\x4a\x56\x4b\x83\x5a\x9d\x2b\xfd\x3f\x8a\x05\x77\xc3\x36\x9e\xc4\x22\xcd\x62\x20\xcc\xc3\x0f\x15\xd4\x14\x4e\xbd\xc7\x2e\xa7\xc2\x43\xcb\x8e\x33\x32\xe9\x70\x5f\xb1\x20\xcf\xe8\xb8\x9b\xe0\x2e\x77\xfc\x5b\x58\x4c\x34\xa4\xee\x95\xa8\xdf\xd1\x82\xd3\xce\x93\x4f\x09\x83\xb2\xba\xf9\x6b\xe8\xdb\x7b\x56\x49\xf3\x21\x11\xee\x66\x0c\xf9\x0d\xd2\x97\x86\x93\x70\x25\xc5\xfe\x13\x7d\x59\xda\x9d\x4b\xeb\xe1\x27\xea\x5f\x3b\x0a\x42\x22\xb0\x32\x94\xd1\x7f\x51\x9a\xd9\x6e\xe2\xdb\xfc\x0a\xda\x70\xe5\xb3\x83\xa6\x99\x73\x2d\xb1\xb0\x1e\x88\xa1\x19\xa7\xc5\x71\x90\x89\xcd\x43\xd7\x77\xb2\xb4\x8d\xde\x53\xfb\x33\x95\x41\x18\x1b\x03\x48\xf3\xac\xcc\xd9\xc9\xf5\x4d\x8d\x46\xe9\xcb\x8f\x74\x35\xb7\xc8\xbf\x88\xb5\x32\x4a\x7b\xe6\xae\x4a\x98\xfa\x37\xf4\xb1\xb8\xdb\xa0\x76\xf4\xe3\x41\x7a\x06\x7a\x56\x5a\x9a\xec\x78\xfe\x97\x38\x7b\x7d\xcc\x4f\xc7\x57\x36\x33\xfd\xad\x47\xbf\x23\x4e\x27\x73\x8a\x44\xde\xc2\xe4\x6c\x54\x46\x70\xbd\x5f\x29\x2c\x59\xf2\x3f\x49\x5f\xbe\x77\xa2\xe4\xa4\x32\x0f\x7f\x6c\xdf\x79\xbb\x82\x33\x82\xa2\x8c\x89\x22\x32\xaa\xe3\x3d\x29\xc2\x4b\xf0\xb7\x61\xbe\xf2\xce\xe3\x97\xf0\x40\x37\xae\x48\xe5\x94\xb1\x91\x20\xdd\x76\xf3\x5b\xac\x66\x1c\xb3\x16\x63\x86\x4f\x9d\xac\x8e\x73\x36\x27\xbe\x70\x94\x8d\x08\xe3\xab\x7e\x6b\x87\x4b\xf3\x83\xda\x1f\x9d\x85\x1f\x2f\xfc\x9d\x25\xef\x39\x8f\xcd\x2c\xa9\xaa\x1f\x80\x14\x36\xc4\x8b\x44\x0d\x81\x41\x2a\x67\x83\xe1\x88\xd7\xf3\x20\xbb\x5c\xdc\x7b\x53\xcc\x74\x00\xbf\x05\x5a\x68\x8b\xba\x0f\x8c\x31\xa5\x73\xfe\x77\x94\x3b\xf8\xa4\xf6\x8f\xd3\x82\xf9\xfb\xc9\xca\xa6\xbb\x4b\x8f\x92\x00\xa5\xb2\x3a\x2e\x83\x66\x82\xf0\xfe\x87\xea\xbd\x17\xf7\x72\x95\x85\x2c\x3b\x53\xab\xf1\x5f\x3e\x9a\xf8\x6e\x73\x33\x29\x15\xbf\x8a\x28\xa7\x67\x4b\xd7\x94\x3b\x16\xa3\x90\xb3\xa1\xeb\x2c\xef\x51\x0a\xca\x4b\x6f\xc9\x70\xd8\x63\x9a\x3f\xe7\x28\xdb\x4a\xfb\x9c\xde\x6a\x3d\x39\xa5\xed\x7e\xa4\xfe\xd3\xd1\x5f\x37\x5f\xa9\x0c\x7a\x98\xce\xdb\x67\x22\xd0\xc7\xbb\x19\xf3\xd8\x41\x81\xbf\xac\xae\x2d\xfb\xe0\xd2\x21\x2e\x0c\xb4\x01\xcd\xa4\x30\x00\x72\x98\xf8\x62\x71\xce\xbf\xc6\xca\x61\x31\x6b\x50\x07\x16\xec\xbe\xf8\x8e\xa5\x78\x4b\x5b\xea\xc5\x99\xb6\x51\x6b\xfc\x1d\x88\x58\xce\xfb\xfd\x25\x3b\xcc\x6a\x63\xef\xd7\xe8\xa2\xd8\x5e\xf7\x78\xe5\x6a\xf6\x90\x27\xca\xeb\x7f\xdd\x59\xe7\xb4\xe7\x61\x56\x9a\x23\xec\x31\xaf\x70\x84\x97\xac\x3d\x07\x8c\xfc\x17\x39\xc7\xd3\xe5\x71\x4f\xf6\x34\x24\xce\x5c\x28\xc9\xd3\x7b\xd9\x4a\x26\x53\x4f\x82\xec\xaa\x4b\x6d\x6e\xce\xf6\x07\xf5\xd8\xcb\xc6\xe1\x16\x7e\x50\x04\x19\x31\x38\xe4\x52\xd7\xa9\xde\x70\x00\xd6\xdf\x7d\xc4\x04\xe9\xba\x29\x59\xf8\x5e\x0e\xd1\xd9\x88\x90\x9b\x47\x1c\x28\xf4\x54\x31\x99\xcc\x31\x5f\xc0\x6b\x70\xd2\xa3\x5c\x3e\x6a\x5e\x64\xdb\xbe\x16\x23\x68\xcc\x1d\xdf\x1b\x49\x9d\xf2\xc5\x7a\xd2\xa3\xed\x43\x6e\xe8\xb9\xc5\xbd\xf6\x4a\xa8\xef\xac\x6b\xda\x08\x9c\x11\x99\xa4\xda\x28\xf7\x9c\x43\x70\x5f\xc8\xd6\x7b\xca\xfe\xd1\x84\xe9\x37\x75\xa3\xf5\xec\x17\xec\xe1\x3e\x95\x4b\xdc\xa6\x22\x8b\x8d\x93\xf6\xe2\x9d\x72\x6f\xf1\x76\x79\xf8\x93\xc0\xf1\x11\x02\xfa\x29\x49\x29\x88\x5b\xf6\xe4\xdf\xb3\xa1\xe5\x2d\xeb\x9b\x0d\xcc\x3e\xd5\x35\x19\xe9\x16\x5b\x69\x39\x03\x3f\x45\x13\xe7\xc7\x29\x82\xee\xfe\xad\xda\xc9\xc8\xc4\xf1\x26\xf3\xff\xaa\xee\x7f\x91\x23\xc1\x88\xfb\xc5\x41\x5e\x2a\x12\xae\x0e\x3f\x5a\xf8\x3b\x1b\x0a\x38\x77\x2d\x55\x47\x08\x01\x4e\x5c\xcc\xc0\xfa\x20\x1b\x2f\xb2\xed\x1e\xba\xcd\x04\xad\xc3\xbf\x92\x6e\xb1\xb5\xf5\xe4\xce\x8c\x6c\xfe\x1d\xc9\xf6\x14\xbf\x99\xae\xe2\x5d\x3a\x10\x6e\x67\x18\x8c\x75\x48\x65\x2a\xf7\x53\x84\x7e\xc9\xe3\x7d\x66\xa5\xf6\x67\xba\x62\xfa\xc9\x46\xc8\x2e\x72\xfb\x3a\x97\x13\x49\xfd\x1b\x0d\x57\xe2\xcb\xd1\x55\x94\x1d\xa9\x3a\x9a\x2f\x4d\x58\x2f\x30\x24\xe7\xc1\xe5\x7b\xb9\xb0\x45\xed\x7c\xea\x2e\x6f\xb1\x09\x56\xb7\x49\x0b\xf7\xf2\x57\xb4\xee\x7e\xa2\x84\x0f\x32\xdd\x65\xdb\xf2\x65\x66\x2c\x7a\xa6\x99\x51\x6a\xa8\x3e\x70\x1a\xff\x2f\xf7\xcf\x52\x3e\x93\x27\x62\xc2\x78\x9c\x91\x2c\x1e\x71\xf9\xb7\x7a\x36\x9c\xb8\xa9\x7d\xce\x70\xe8\x71\xe5\xab\x15\xee\x36\x18\xda\x01\x95\x28\x48\xf3\xbc\x2f\xd8\x59\xdc\x82\x23\x24\xfb\x99\x6f\x96\x84\x6e\xef\x08\x07\xbf\xf9\xa4\xe3\x3e\x48\xdb\x14\xa5\x49\xdd\x71\x03\x64\xc6\xb8\xa9\x09\x58\x1a\x98\x13\x20\x28\x25\xa6\x60\xee\xd4\x3b\x35\xbc\xcf\xb8\x4c\xb8\x1a\x4d\xac\xdf\x71\xb6\x58\xc9\xe2\x9d\x8c\xd6\x9f\xdd\x5d\xb7\xd6\x21\x28\x95\x49\xde\x74\x03\x92\xb8\xc5\x62\xf2\x05\x2f\x14\x5c\xed\x73\xf7\x32\xe5\x74\xf3\x51\xe6\x19\x2e\xe9\xbd\x87\x85\xd5\x0e\xd7\xdc\x1a\x5e\xfb\xcc\xd4\x2d\x4f\xdc\x88\x9f\x70\x8c\x4f\x75\x7c\x9e\xfa\xdf\xf5\xa5\x3a\x44\x68\xf7\x31\x52\x53\x26\x7f\xcd\x4c\xcb\x3a\x9f\x80\x97\xd5\x79\x67\xfe\x23\xaf\x88\x5b\x57\x91\x12\xcf\xcd\x77\xe9\xf5\x1a\x29\x1f\x89\x75\xe4\x44\xd8\x7c\xa5\xe5\xc7\x42\x8a\xfd\x18\x75\xb5\xaf\xfe\x61\x00\xc7\x22\x9b\xef\x68\xac\xe5\x4e\x7d\xfa\xb8\x5b\x35\xd9\xb0\xce\x8c\xad\xd7\x5a\x44\x48\x32\xf3\x50\x43\x18\x3b\x52\x91\xa1\x5a\x1d\xe9\x90\x59\xbc\xa6\x25\x7d\xb9\x7f\xea\xd5\x01\x50\xaa\x63\xe2\xcb\xd8\x5e\x87\x6f\xf6\x85\x9b\xa8\xc2\xcd\xf2\x42\xc7\xca\xc2\xbf\xa8\xae\x83\x37\x70\x2e\xb5\x93\x1a\x5e\xb0\x19\x83\x42\xc1\x7d\x5f\x28\x05\x80\x5b\x71\x08\x90\xc3\xa9\xa9\x16\xf5\xdf\x9c\xa0\xe8\x8a\xc3\xa1\x2c\x30\x2c\x6a\xf4\xa5\xde\x85\x15\x39\x15\xec\x89\x4e\x92\xdc\xc2\x1c\x4a\xc2\xce\x39\xcc\x26\x7a\x34\xb1\x48\xa8\x5a\x12\x2f\x53\x71\x31\xac\x4e\x53\x5e\xf8\x14\x0e\x42\xbf\x84\xa4\x01\x86\x58\xbc\xe4\x88\x5a\x80\xd8\xed\x71\xa3\xaf\xd7\xe8\x58\xff\x92\xd7\x46\x76\xd3\xc9\x34\x41\x4c\x60\x09\x38\x5a\xc3\xb6\xea\x2f\xf8\xb4\x93\x2e\x0c\xf9\x85\x17\x79\xf6\x9c\x31\xf9\x80\x9f\xe8\x51\xde\x53\xf4\x6b\x24\x00\x73\x83\xec\xfd\xee\x22\xf0\x21\x1d\x87\xcd\x4c\xff\xe4\x53\x93\x38\xb3\x2b\xf9\x6b\x02\xa1\x89\x7d\x18\xa1\xe4\x02\x06\xe0\x0a\x0e\xd0\xdc\x88\xf6\x8c\x89\xaa\x99\x02\x60\x9e\xd4\x48\xc0\x01\x49\xdd\xc4\xd8\x91\x0a\x09\x01\xf6\x6e\x68\xea\xd3\x3b\xd3\x82\x45\xb1\x8e\x3a\xf4\x33\x8c\x10\x2e\xad\x8e\x8c\xdc\x75\x2a\xa0\xe3\xce\x02\x15\xbb\x26\xd8\xca\x97\xe8\xcf\x04\xa8\x00\x6c\x9a\xb6\x10\x18\x1f\x23\x1b\xc8\x56\x15\xaf\x72\x63\xec\x1d\x24\x55\xfb\x51\xf2\x4e\xb2\x36\x9a\x1a\xa7\xc7\x3f\xf6\x12\x92\x0b\xb0\xe5\x72\x9c\xa9\xf2\xbc\x25\x56\x9c\x73\xe0\xd4\xc3\xb2\x92\x72\xfa\x83\x8c\x08\x88\xdd\x55\xd2\x5d\xb9\x99\xe7\x0c\x23\x84\x98\x11\xa3\x3e\x38\x1e\xbc\x84\x67\xe7\x05\xa7\xd4\x7d\x25\x50\x3b\xf4\x2a\xee\x40\x41\x6d\x19\x07\xf8\xf6\x66\x23\x77\xd9\xc6\x8f\x93\x19\xc7\xd5\xc1\xe6\x66\xe6\xc5\x6c\x8c\x99\xb7\x60\xbe\x70\x69\x28\x35\x8a\x1a\x21\x7f\x1a\xd5\x97\x5a\x86\x15\x62\x95\xcf\x67\x92\xac\x17\x8f\x88\x23\x5d\x89\xc9\x25\x2a\xfd\xbc\x98\x4b\xb2\xe6\xa3\x0f\xe7\x96\x2c\xd1\x04\xcf\x99\x7c\x5d\x78\xb6\x70\xf1\x31\xbf\x56\x96\xec\xf6\x65\x69\x47\x85\x4c\xf6\x63\x66\x06\x49\x5d\x15\x58\xd4\xc5\x9d\x13\x77\xbb\x5b\x83\x89\x85\x36\x4d\xf5\x0e\x35\x27\xd6\xfb\x97\x22\xde\xe0\x2e\xa3\xe2\xf6\x0c\x62\x22\x97\xda\x8f\x3a\xee\x01\x36\xd0\x90\x81\xd6\x1e\xf9\xd9\xb3\x0d\x9d\x16\xbe\xdc\xce\xcf\x77\xb5\xd8\x5d\xfb\x35\x83\xc4\xb6\xdb\x9c\xa4\x23\x95\x87\xd0\x48\x23\xca\xb2\xf1\xca\xac\xce\xc8\xc4\x29\x8b\xf0\x33\x42\xf6\x51\xfb\xed\xbe\xb3\x17\xf8\x43\x37\x90\xae\xdb\x55\xc8\xe8\x9b\xda\xa4\x19\x48\xfc\xd7\x28\x4d\x7a\x90\x61\x4a\x4a\x5b\x0a\xcd\x00\x17\x2d\x58\xef\x86\xf2\xe0\x59\x83\xb7\x80\x1c\x1a\xdc\x2f\x92\xef\xc8\xa2\x65\x5c\xc5\x1d\x83\x3c\x78\xf5\xe7\xeb\x79\xf6\x2f\xe8\x6e\x64\xfe\x82\x33\xe9\x54\xdc\xec\x57\x7e\x53\x85\x33\xc6\x43\x1f\x40\xdc\xdf\x02\x80\x02\x20\xd3\xd1\x00\xd0\x4d\xe2\xe1\x05\x90\xb7\x0f\xee\xb8\x88\x37\xe3\xf4\xf0\x6f\xdc\xd8\x5a\x5a\x1f\xee\x3d\x83\x26\x37\xae\x7e\xa8\x1a\x7e\xf7\x72\x01\x80\xbc\x51\x86\x80\x16\xa4\xf1\xdd\xe2\xe9\xbf\xc2\xcf\x09\x96\x47\xe4\xfa\xec\x83\x46\xe8\x73\x56\xdf\x94\xcb\x14\x14\x48\x5d\x07\x4c\xe1\xbb\x8e\x60\x06\x3e\xd2\x72\x44\x53\xfb\x90\x2f\x2f\xa4\x79\x92\x98\x07\xee\x31\x82\x43\xd5\x9c\x42\x04\x2e\xe6\xf1\xfe\xd3\xa3\xa7\xc9\x0c\xe8\xc9\x3d\x17\x56\x7f\x6a\x64\x1f\x69\x49\x6a\x93\xcb\xa1\xb5\xb7\xbd\x69\xf6\x6c\x9b\x38\x95\xad\xec\xb1\xd9\x02\x87\x58\x00\xbd\x7c\x5b\x20\x58\x36\x58\xed\x89\x51\x01\x95\xed\x55\x0c\xc8\x53\x8b\x4d\x82\x3f\x89\x99\x46\x53\xe4\xb6\x30\x75\x4c\x05\xbb\x34\xd1\x7b\x81\x1b\xfa\x3b\x5b\x69\xc0\x39\x27\x13\x02\x13\x80\xf1\xf6\xc5\xf1\x52\xc7\x94\x0e\x0f\x24\xb2\xfe\xa5\x0b\x0f\x2a\xba\x5c\x28\x52\x3b\xb7\xeb\x70\xb8\x2e\x6f\x42\xee\x4a\x5e\x03\x6d\xcc\x90\x11\x78\xb0\xed\x33\x2c\xc8\xf3\x25\x5b\x0a\x57\xe6\x1a\x48\x93\x48\x49\x4f\x9f\x80\x9a\xcb\xc5\xfb\x2f\x95\x17\x3a\x41\x74\xa5\x42\xd2\x1d\x19\x83\xa9\x91\x7d\x55\xcb\x52\x9b\x3b\x8f\x2f\x04\x11\xd5\x0d\x61\xa4\x8f\xdb\xf1\xf9\x26\x55\xb6\xfa\x8c\xce\x00\x86\x42\x2f\x2e\x9c\x0d\x0c\x53\x04\xc6\xf8\x3b\x3c\x77\x80\x0e\x0e\xc0\x07\x44\x83\xd3\xe9\x89\x09\x04\x15\x45\x81\x13\xa8\xca\x52\x10\x8e\x24\x8b\x99\x7d\xba\xf2\xa8\x0e\xf8\x03\x75\xc2\x8f\x0e\x08\x16\xf2\x26\x8c\x1f\x34\x36\x1e\x78\xe4\xf5\xfd\x72\xef\xf1\x14\x67\xf8\xf9\x6a\xdd\x45\x49\xaf\xc3\x15\x79\x4a\xe5\xa7\xa4\xa2\x9d\xf0\x39\x10\x7a\xbd\x00\x68\x8a\x82\xd3\x83\x5c\xb8\x23\xb0\x79\xc0\xd5\x5c\x08\x76\xec\x47\x60\xb0\xf8\x3a\xa2\xa9\xa2\xbc\x32\x07\xb5\x71\x05\x93\xb4\x29\x50\x30\xae\xdc\x77\xa6\xaf\xd4\x36\x7e\xb6\x79\x3e\x95\xb5\x8b\x70\xba\x78\xa8\x85\xf4\x3d\xa5\x93\xbc\xb4\xfb\xa3\x7c\xf3\x1c\x61\x46\xf6\x01\xd3\xe0\x74\xfa\x71\x2b\x18\xdc\x58\x2a\xf8\xfc\xec\xc7\xb9\x2e\xe5\x0b\xf3\xf6\xfb\x8d\x24\x0a\xad\x62\x7b\xc8\xe0\xb8\x5c\xc3\x28\x27\x0e\x39\x11\x09\x49\x12\xcd\x35\x43\x88\xce\x22\x2e\x49\x16\x07\x82\xf9\xe2\xbf\xf2\xbf\x54\x94\x77\xbc\x5c\xf6\xc0\xd4\xc2\x62\x38\xc9\x1b\x3f\xdb\xf3\xc6\xdb\x79\x9a\xce\xf2\x43\x0d\x00\x2b\x6f\xca\x15\xa8\x6a\x38\xb7\x06\x7c\x6f\x94\xf3\x7d\xf6\xc1\x55\x0e\x4a\x71\x61\x3c\x6e\x55\x6a\xee\x26\x0e\x69\x84\x1b\x29\xfe\x92\x4d\xe4\x0e\x6b\xfa\x49\xfa\xfe\xc2\xcc\x12\xf1\x67\xbd\xe5\xef\xd3\xaa\xff\xfa\x92\x08\xa7\xa2\xf4\x38\xef\x9e\x24\x73\xe1\xc1\xb6\x34\x6c\x52\xfc\x49\xe9\xb4\x1d\x6f\x89\xb4\x23\x14\x02\x17\xb1\xab\x53\x74\xde\x97\x6d\x95\x31\xa5\x9b\x52\x46\xeb\x3f\x0a\x19\xfd\x69\x90\x7d\x8e\x77\xe9\xe9\x65\xa4\xa6\xc9\x6e\x25\xa1\xe4\xf5\x29\x0e\xe5\xd0\x96\x0d\x85\xba\x54\xb3\x0b\xad\x9e\xc5\xe7\x61\x84\xfc\x69\x2f\xc6\x78\x32\x09\xf7\x74\xf1\x26\x5f\x49\x91\x6d\x7d\xa5\xed\xb4\x39\xda\x4d\x9c\xeb\x19\x2b\xfc\x0b\xad\xfa\x1d\xb8\xc5\xf2\xa8\xdc\x50\xf5\x64\x7d\x43\x06\x51\xb2\x76\xbe\x7c\xcb\xff\x5e\xe2\x2a\x5a\x04\x87\x4c\xd5\x00\x6b\x9a\xb1\x54\xff\x6d\x39\x5f\xca\xa8\xac\xa6\xfb\x14\xbb\x53\x5a\x1d\xcb\xe1\x6b\x75\x36\xd6\xa5\xb4\x0c\x7b\x78\xe1\xe5\x1f\x9e\x32\x80\xf8\x78\xb9\xce\x76\x08\xe8\xb2\xdf\x55\x01\x1b\x26\x76\x8c\x3a\xa9\x8c\x75\xbe\x83\x6f\xa9\x8f\xce\x0d\x05\x07\xbb\x9b\x18\x0f\xe2\xd8\x83\x30\xa2\x28\xea\xbb\x3c\x38\x64\x2a\x4f\xc1\xb8\xf8\x63\x7c\x75\xe2\x4f\x0b\xe5\x30\xb2\x05\xe1\xf1\x97\x40\x8f\x89\xdd\x91\xbd\xc4\x1a\x52\x11\x2f\xf2\xf3\x56\xa2\xc0\xf9\x37\xb3\x4b\x00\xd7\x13\xce\x8d\x05\xa1\x9f\x2b\x74\x9b\x62\xf3\x3c\xc3\x78\x21\x30\x4f\xfd\xe4\x05\xbb\x9f\xb5\x7f\xd6\x5b\xae\xeb\x95\xb8\x53\x0e\xfe\x90\x93\x78\x9f\x83\xc6\x5b\x71\xe1\x35\x17\xd0\x01\xab\x9d\x29\x07\x9d\x8b\xf3\xe5\xe4\xbf\x19\x03\xc7\x19\xee\xf7\x5e\xdf\xd8\xf4\x22\xbe\xe0\x1b\xdc\x4b\xbc\x76\xa2\x35\xbb\x36\xb5\xbe\x4f\x85\x21\x28\xd7\x2e\xf5\x3f\xed\x7f\xf9\x1c\xd2\xc5\x17\x1f\x87\xe6\xa7\xbf\x42\xbb\x31\xcf\x10\x0d\xad\xea\x1b\x03\x03\xaf\x34\xdf\x1b\x63\x3f\x3e\x91\x71\xff\xbb\x7a\x31\x58\x39\x55\x71\x76\x90\xae\x41\x2b\x04\xa1\x5f\x21\xd1\x43\xa2\x8a\xf6\xd7\x9e\x0e\x07\x93\x36\x5d\xcf\xbb\x05\xd5\x1e\x4f\x98\xa8\x3e\x4c\x21\x98\x84\xce\x4d\x22\x12\x3c\x1b\x10\x1c\x17\x76\xd1\x88\x87\x97\xb0\x20\xa0\x34\x97\x81\x09\x32\xd1\x4f\x55\xf6\x02\x0a\xf3\xd4\x2b\xb1\x91\x8a\xec\x71\xea\x9c\x77\x61\x23\x69\xb2\xbc\x76\x05\xc9\x7c\x18\x40\xe2\x73\x44\x19\x31\x9f\x63\x9d\x77\xd7\x5b\x04\x11\x0f\xdd\x2f\x56\x2e\x8f\x7a\x16\xff\xae\xb5\x54\xe3\xbe\x73\x24\x29\xf9\x87\xfb\x3e\xb1\x91\x5e\x4b\xac\x0c\x73\x10\x31\x00\x06\x81\xbb\x59\xd4\x25\x0d\x2c\x09\x2f\x28\x7e\x13\x02\xb2\x0d\x3a\x8a\xc3\x33\x8f\x2a\x7f\x41\x3d\x7e\x19\xa9\xde\x25\x18\x4f\xca\x8d\xbd\x41\xd2\xd0\x80\x20\x81\xb7\x14\x04\x72\xb5\x05\xa6\x2f\x42\x4a\x2e\x2e\xf5\x3d\xa4\xc3\x48\x9e\x63\x61\x1b\x37\x5f\x46\x2b\xbf\xcb\xf1\x18\x5f\xb8\x2c\xee\x0f\x73\x26\x25\x2b\x79\xee\xe7\x49\xf0\xf2\x80\x70\x97\x0f\xc1\xff\xde\xe3\x68\xbe\x7f\x81\xa6\xa8\x50\x08\x00\x99\x90\x0e\xab\xa7\xce\xc2\xfe\xc4\xea\x2f\xb2\xa8\x1e\x5a\xa8\x86\xb9\xe9\xed\x31\xc1\xd0\x45\x98\xa4\x3b\x44\x37\xe8\x4a\x6e\xc6\x27\x9a\x9d\x48\x7d\x33\x8b\x7c\xb7\x6b\x73\xd7\xb1\x09\xf3\xa4\xb7\x5e\x89\x5f\xce\xba\xff\x84\x89\x4b\x76\xe9\x85\x8d\xc1\xc9\x01\x29\x88\xcf\xa4\x64\xa5\x51\x0a\xb4\x7d\xdc\xf2\x95\x98\x1d\xc6\x0d\x7d\x98\xee\x3f\x4a\x00\xf0\xd8\x6c\x69\x35\xf7\x25\xba\x3a\x79\x22\xa9\x9b\x74\x19\xd5\x58\x8c\xbb\xeb\xba\x60\x92\x39\x38\xed\x76\xa7\xfd\x48\x41\xda\xe1\x32\x44\x95\x6c\xf8\x59\xe7\xe4\xda\x0b\x13\xe1\xe9\x8c\x62\x8f\x12\xc4\x25\xd7\xbd\x7d\x9d\xd9\xdf\xd7\x58\x80\xa6\x2d\x0d\x75\x4a\x45\x40\x6a\x90\xde\x03\x88\x48\xfd\x0c\xd2\x6a\xa0\xe8\xe2\xef\xe4\x4f\xec\xf8\x37\x2a\x37\x64\x55\xb9\xb5\xed\x9f\x30\xb8\xfe\x9f\x5d\x0a\xe9\xe5\xc3\xb1\x40\x19\xf8\x29\xcb\xc6\x3d\x36\x5a\xea\xb2\x89\xb7\xb8\xc5\x66\x6d\xdc\x44\xe4\xf4\x1f\xaa\x49\xbf\xf5\x7f\x8e\x40\x18\xda\x23\x6a\x4e\x52\xe3\x94\x6a\xce\x92\x3f\x60\x41\x68\x02\x7f\x0c\x6e\x4f\x93\xa7\x19\x37\x8a\xe4\xb1\x7d\x96\x68\xc8\x63\x0b\xe0\xde\x51\x49\x07\x57\x97\xda\xb4\xfa\x39\xcc\x35\x5b\x4c\x79\xb0\xb8\x39\xb2\xeb\xd0\xf2\xc1\x00\xc1\x14\xd9\x2b\xd6\x0b\xdf\x03\x39\x13\x75\x8e\x33\xf4\xb5\x77\x9c\x2c\x57\xfd\x36\xd8\x8e\xbd\xae\x84\xdf\xc7\x23\x6a\xce\x92\x8d\x22\xc0\xb6\x7a\x6c\x4b\x57\x62\xd6\xa8\x8a\xa9\x23\x36\x1a\x3b\x03\x4c\x3a\xcb\xe9\xd1\xf0\xfc\xb5\x9f\xdb\x67\xb3\x43\x75\x5e\x8f\x5b\x4b\x17\x77\x68\x40\x7e\xe3\xc4\x44\xe4\xb5\x78\x64\x8a\xac\x9f\xf5\xcc\xf7\x60\xce\x44\x9d\xe1\x0c\xfd\x57\xc3\xa6\x46\xeb\x76\xd0\xf6\xa6\x7f\xfe\x05\x8b\x7b\xbd\x9f\x8e\xd4\xba\xbd\x9c\x4f\x92\x1f\x53\x42\x3b\x72\x92\xef\xcb\x22\x6f\x6a\xa1\x45\x0d\xd1\xdf\xf9\x6c\x7b\x86\xaf\x4c\x94\x35\x57\xfa\x5d\xf4\x0f\xd5\x79\x05\xb7\x96\x2e\x62\x79\x70\x83\xb4\x39\xfd\x05\x35\x07\x45\xb9\x2d\xe7\x27\x9b\xf8\xf3\x80\x8f\x4b\x6e\xb2\x57\xac\xd3\x04\x7b\x14\x9f\x1e\x16\xbd\x21\xb9\x50\x87\xf1\x35\x9f\x83\x46\x4f\xf8\x8a\x22\xc1\xb6\x57\xb5\xfe\x51\x02\x87\x2f\xa0\x42\x87\x41\x14\xbf\xb9\x23\xa4\x25\x3c\x43\xea\x43\xd2\x2d\xdd\xcb\x85\x65\x51\x3d\xd5\x95\x32\x17\x3f\x55\x2c\xcd\x27\xe5\x64\x04\x2e\xb8\x91\x7d\xe6\x4c\x06\x9b\x26\x43\x4b\xb6\x95\x4b\x4a\x41\x75\x4b\x0a\x0b\xff\xbd\x70\xfc\x94\x7d\xb4\xf2\xe6\x86\xca\x6e\x6c\xb8\x71\x77\x62\x65\xd8\xca\x1b\x0c\x08\xdd\x1b\xc7\xc6\xaa\x59\x21\x20\x27\x64\x8e\x46\x81\x13\x5e\x70\x8f\xba\xbd\xab\x4e\xaf\x31\x3b\xda\x96\x45\xf5\xe4\x96\xa4\x07\x99\xd0\x39\x47\x6b\x92\xe0\xbc\x13\xaf\x20\x49\x4a\xa9\x4f\xbf\xed\x13\xf3\x58\xe7\xa9\x38\x6f\x3c\x26\xa0\x09\xd7\x67\x2b\x9c\x3b\xbe\xc7\x2a\x6d\xcd\x26\x7e\x39\x4d\x35\x25\x8d\x95\x2a\x6e\xec\x68\x0c\x5f\xc9\x09\x59\xcf\x01\x69\xe1\xbb\xf7\x29\x98\xe5\x18\x40\x2e\x81\x60\x43\x6c\x01\x05\xee\xad\xf7\xa3\xd5\xeb\x25\x4d\xd6\x13\xb5\x0b\x28\x4e\x7f\xd3\xac\x59\xbf\x89\xa2\x40\x14\xf5\xb7\x42\x95\xbe\x7a\x24\x0c\xa6\xcf\xf0\x97\x6f\x60\x31\xb4\x6e\x49\x61\xfa\x81\xe7\x2d\x94\xa9\xc1\xa6\xd3\xd1\x8b\x68\xc5\xef\x1b\xbd\x84\xf3\x48\xc9\xf3\xdb\x87\x66\xfb\x10\x0c\x21\x31\x87\x41\x6e\x99\x17\x40\x1b\xc3\x0c\xd8\x46\xf8\xe8\x59\xc0\x63\x79\x14\xbd\x89\x52\x58\xdd\x81\xb2\x19\x61\xbf\xd0\xa3\xe1\xe4\x7f\x73\x16\x0f\xdb\xd3\xfc\x66\xc0\xa9\xaa\xd8\x5a\xc0\x9b\x3d\x19\x48\x31\x62\xaf\x97\xb1\x5e\x1c\x39\xcb\xe6\xbc\xb1\xde\x69\xda\x39\xef\xb2\x81\x1d\x7a\x2c\x39\x1b\xd5\xab\xc5\xee\xd5\x8d\x18\xda\xd2\x17\x5e\x61\x72\x9f\x7a\x15\x8d\xb8\x6d\xe4\x59\xa8\x16\xc4\x26\xa1\x8c\xdc\x62\x60\x7b\x2d\xc2\xc6\x42\xe1\xb5\x8b\xbb\x0a\x50\xa6\xd9\x3a\x83\x1a\x4c\xb3\x66\xf7\xff\xd6\x79\x05\x57\x97\x2e\x8a\xc8\xf7\xa7\x70\xd0\x33\xb5\x82\xfb\x1c\x31\xf4\xf4\x4a\x4c\x4f\xe7\x97\x5e\xfc\x82\x12\xff\x15\xa5\x5c\x04\x28\x6f\x23\x9a\x2a\x9c\xbd\x78\xbb\xd5\x15\x5c\x7a\x94\x6f\xb6\x29\xc7\x2e\x6b\xf8\x2b\x7b\xef\x2c\xad\xc4\xf2\x4b\xf2\x2b\xdb\x72\xf1\x24\xa5\x4b\x4f\xf3\xc1\x63\x20\xb9\x5a\x8f\xd6\xb8\x6e\x84\xb7\x56\xd4\xda\xd4\x6e\x7d\x4a\xcf\x9e\x35\x19\x28\x0a\x54\x33\x88\xd7\x2e\x48\x0d\xd3\x4f\x3a\x7d\xfb\x65\x96\x78\xdd\xa4\x7e\xe0\xba\x2c\xb9\x3b\x1e\xba\xee\x32\x09\x47\x81\x52\x1b\x15\x24\xb6\xbc\xba\x11\xa1\x22\xdf\x87\x94\x2b\x2a\x11\xf3\x17\x7d\xcd\x91\x60\x40\xcb\x31\x8a\x84\x33\x8c\xc2\x64\x99\x21\x77\xd8\xe5\xc2\x72\x80\x0d\x57\x4c\xf5\x64\xe9\x67\xdf\xa2\x47\x73\x4d\x16\x13\x1e\xcc\x5c\x8e\xdf\xf7\xde\x7d\x83\x3c\xe3\x55\x1d\xa6\xd3\x73\x5c\x92\x70\x91\x3d\x2c\x08\x4a\x3a\xfa\x94\x27\x22\xc7\x69\x09\xf5\x2f\x2b\x39\x88\xfe\xf3\x70\x48\x90\x1a\x87\xad\xbc\xc0\x4e\x9e\x8f\xee\xf1\x31\x81\x04\xef\x3b\x08\x8d\x08\x41\xd4\xff\xd1\x7c\x85\x62\xe5\xa4\xc1\x05\xeb\x5c\x37\xc2\xab\x2b\x6c\x5a\xad\x27\x3d\x44\x64\x1b\x1a\xe2\x7a\x63\x39\x04\x29\x99\xa6\x83\x81\xc0\x67\x90\xe4\x39\xfb\x71\x17\x97\x16\xeb\xe1\x93\xe0\x5f\x81\xbb\x9b\x4e\x63\x33\x62\x96\xd8\xe7\x46\xec\xb2\x7f\xb4\x7a\xc2\x5f\x4f\x2a\x71\x84\xad\x8c\x47\x80\x01\xf6\x37\x46\xb0\x88\xf7\x09\x1d\xe8\x5a\x4c\x16\x72\x83\x81\x02\x25\xb8\xe6\x6d\x64\xd9\x62\x3a\x39\x65\x96\x3d\x3b\x59\x58\x2d\x62\xce\x3d\xf0\x04\x24\xf1\x86\x7f\x7a\x9a\x86\x9d\x5d\x0b\x73\xa6\xdb\xe4\x6e\x22\x5d\xe1\xe4\xf9\x3e\xe3\xa0\x51\xf6\xd5\xf0\x9a\xf5\x4f\xe5\x43\xe6\xb1\x68\xa6\xbb\x3b\x09\xe8\xe8\xea\xe3\xb1\xc9\x44\x2b\x6d\x03\x00\x69\x2f\x55\x4a\x1f\xe3\xc1\xe3\x30\x2a\x0c\x51\x67\xa0\xb0\xf8\x63\x25\x15\x9a\x65\xfe\xd4\xf5\x95\xd9\xd6\x6c\xda\x6a\xfa\xb3\x12\x67\x61\x1d\xf3\x0c\x96\x43\xbd\x7d\x64\x2c\xa8\x98\x4e\x0b\x13\xa4\x2b\xd7\x88\xe2\xf0\xe3\x13\x42\x38\x91\x5a\x73\x5b\x3e\xb5\xa6\xfa\x13\x2d\xe5\x3d\xfa\xad\xed\xf3\x1c\x56\x08\xeb\x5e\x45\x88\xea\x09\x04\xc6\xa3\xec\x9e\x34\xa9\xaf\x84\x02\x0a\x78\xbb\xea\xf1\x40\x0a\x2d\x61\x54\x81\xd0\x71\x08\xf6\x50\xe2\x8a\x3c\x0f\x78\x68\xef\x5d\xc3\xdc\x0f\x56\x33\xce\xd9\x2d\x6f\xa3\x87\xa2\xb3\xfd\xde\xc3\x26\xb1\x42\x94\xf4\xd4\x48\x45\x35\x39\xd1\xf8\x29\x57\x27\x4f\x5f\x87\xd3\xf3\xe0\xdb\xe1\x1e\xca\xdb\xd7\x6f\xc5\x15\x88\xf5\x79\xe9\xcc\xf3\x13\x10\xca\xfa\xde\xff\x04\xab\x8f\x35\xde\xcd\xbd\x88\x46\xbc\x91\x13\x02\x92\x1e\x3b\xa9\xf2\x24\x31\x73\xc7\x5c\x63\xe5\x58\x63\x8f\x79\x85\x2f\x7f\x60\x40\x8d\x73\x0a\x12\xf9\x38\x7d\x5f\xa7\xf2\x9e\x9f\xe3\xbb\x77\xd5\xcc\xee\x8e\x37\xb7\x3f\xe0\x97\x27\xe0\xc7\xbc\x99\x74\x90\xe4\x39\x93\xe2\xf9\xf1\x80\x56\x57\xca\x17\x2f\xcc\x3d\x76\x91\x04\x04\x97\xd3\x45\x51\x34\xb7\x34\x64\x53\x6a\xcd\xb0\x1b\xa1\x98\xf0\xe8\x30\xb5\xf1\xdf\xdb\x65\x8d\x52\x30\x33\xd0\xf7\x46\x02\x03\x8b\xea\x0d\x10\x8d\xc0\x9a\x50\xa6\x46\xe1\x68\x2e\xa2\x95\x5d\xca\x21\x98\x8f\x0a\xe9\x37\xa7\xb5\xdf\xfe\x30\x65\xd5\x76\xf7\xf3\xea\x34\x65\x3d\x48\xb8\xdf\xdf\x24\x52\xeb\xe5\xfa\xfb\x67\xd7\x0c\x06\xdc\x87\xd3\xaa\xad\xde\x77\xea\x5e\x4a\xab\x60\xe7\x4a\x13\x25\xbf\x77\x3b\x5d\xad\x63\x31\xce\x0a\x1a\x8d\x63\x0b\x45\x8c\x5f\x21\xbb\xc4\x5d\xbe\xff\xbf\xcb\xc5\x83\x81\xdb\x3e\x8f\x54\x80\x82\x4f\x05\x06\x3f\x38\x93\xd2\x85\xd1\x15\x8f\x31\x91\x2b\xa3\xd8\x43\x2f\x16\xc0\x38\x8d\x49\x71\xbb\xce\xaa\xd3\x70\x9f\xb6\xd1\x42\xa4\xe1\x75\xc9\x7d\xcb\x87\xc3\xcd\x6e\x9d\xfb\x0f\x58\x3f\x5d\xd3\xbb\x96\xa3\xb9\x83\x2a\x9c\xff\x11\xd8\xe0\x4a\xa9\xb1\x1a\x17\x1e\xe0\x00\xd5\xf0\xe3\x2b\x9f\x8c\x2f\x58\x2e\xef\x4a\x6f\xa5\x54\x18\x3a\xe9\x8d\xbf\x40\x17\x21\x12\xff\x0a\x7e\x23\x82\x46\xf7\xf8\x8c\x00\xbd\x80\xbe\xe6\x64\x5e\x48\x17\x41\xa8\x19\xac\x75\x0a\xd6\x5a\x88\x38\x31\xd4\x39\xcd\xa5\x01\x68\xd2\x0a\xd8\x41\x32\x52\x35\x29\xa2\x72\x22\xed\xd3\xf7\xaf\xe9\xb8\xfb\xdd\xdc\x15\xa2\x35\xcf\x60\x89\x2b\x30\xf2\x00\x14\x21\x19\x14\xd4\x48\x68\xda\x9c\x63\xd7\xd3\xcd\xc2\x85\xd1\x48\xed\x49\x78\xbf\x06\x3b\xf9\xfd\x23\xca\xc9\x68\x06\x69\x77\x93\x7a\x0a\x54\x77\x40\x58\x08\x7f\xf5\x65\xa8\xe6\xad\x33\x10\x3c\x61\x9b\x4e\x7b\x6b\x5b\xea\x0c\x70\x3e\x49\x1e\xa0\xa5\x01\x56\xe6\xd8\xff\x4b\x8b\xac\xc5\xdc\xdf\x5f\x2a\xc7\x23\xc3\xb8\xaf\xd3\x80\x0c\x58\xf4\x7c\x15\x0b\x4a\x37\x8d\xa4\xb6\x51\x33\x50\xcb\x9b\x62\xf5\x69\xf7\x3b\x0d\x59\xbd\x6b\xee\x4b\x2b\x66\x19\x41\xc7\xca\x91\xf0\x56\xc8\xfa\x2b\x48\x52\x8a\xaf\xeb\xce\x97\x58\x67\x59\x19\xeb\x4a\x4e\x6c\xc9\x23\xa8\x86\xe3\x80\xf8\x54\x7c\xc1\xd8\x4f\xd5\x01\xc3\x28\x82\xd4\x32\x6c\xfc\x71\x13\x41\xf8\x52\xfa\x6e\xfe\xeb\x56\xc4\xc3\xd5\x44\xfb\xc3\xb1\x3d\x3e\x23\x6a\x3d\xa7\xbe\xe7\x29\x29\x82\xf4\x79\x74\x07\x34\x70\x1a\xa6\xe2\xe7\xb4\xd1\xf1\xdc\x3c\x58\x80\x19\x15\x53\xea\x55\xf8\x04\x34\x29\xc5\x3d\xc0\xcc\x75\xa3\x7d\xfa\xbe\xb6\x9a\xa5\xe8\xea\xf5\x46\xdb\x53\x91\x32\xef\x42\x29\x2c\x33\xea\x4b\x21\x06\x5c\x20\xc7\x76\x9d\x1a\x19\x01\x68\x26\xe1\x8d\x60\x21\x02\x0a\x96\x0c\x43\xe9\xc3\xdb\x57\x72\xa7\xfa\xd3\xc3\x8d\x1b\xf1\xda\x4d\x9f\x89\x6f\x3c\x29\x50\xad\x35\x9d\x74\xf1\x47\x42\x3d\xca\xdf\x47\x7b\x1f\x9e\xff\x4b\x0b\xbb\x6f\x15\x3e\xca\xaa\x24\x4d\xea\x33\xc6\x33\xb1\x4a\x32\xf4\xec\xd1\xc4\xfd\x66\xd7\xdc\xbf\xca\x1f\x08\xfb\x0d\xe6\xd9\xf4\xff\x17\x3e\x90\xc9\x8f\x62\x2a\xb8\x99\xe3\x5a\xaa\x3f\x14\xd7\x5b\xd5\x32\xe0\x0d\xb5\xbc\xb9\xc6\x75\x23\xff\xe8\xc1\xf0\xbe\xb3\x35\x5d\xf9\x3b\x58\x21\x0a\x5f\xae\x0a\xe6\xc1\xc0\x34\x91\x07\x28\xb8\x5e\x9c\x82\x26\xf5\x7d\x6d\x30\xde\x88\xfd\xc4\x38\xa8\x51\x20\xeb\x5e\xfc\x54\x96\xba\x41\x6d\x26\xb6\xc4\x95\xb2\xa1\x74\x38\xbb\xb1\xdf\x3d\x51\x2b\xc3\x68\xd3\x07\xa5\x38\xe3\x51\x5e\x44\xa9\xf0\xfd\x7d\x19\xfb\x39\xb6\x92\x54\x0c\xbf\xac\x4f\x53\xe2\x08\x75\x70\xca\x1c\x78\x49\xdd\xac\x00\xa7\x07\x2f\x07\x66\x3d\x46\xba\x5b\x2e\x23\xb1\x49\xfc\xf0\x94\x04\xed\xae\x91\xde\x5a\x35\x80\x79\xd6\xc5\xb2\xca\x00\xcb\x1c\xcf\x34\x04\x2b\x4f\xf6\x31\x2f\x75\xae\x7c\xde\xd2\xbd\x6f\x6e\xf6\xfd\xb1\x42\x96\x54\x88\xeb\xbb\x9c\x2d\x6d\xc1\x32\x9c\x04\x96\x19\x8c\x71\x52\x43\x46\x89\x05\x6f\xb0\x05\xdc\x84\xc1\xb0\xfc\x74\xe5\x87\x14\x02\x8a\x1a\x0c\xee\x96\x2c\xd5\xe9\x3d\xd9\xa2\xf1\xb2\xd9\xf2\x1e\x3f\x06\x0b\x16\x46\x03\x37\x7a\x88\x90\x08\x0c\x23\xbb\x26\x0e\x93\xa2\x1a\x99\xef\x44\x9a\x80\x87\x58\xec\x2f\x14\x98\x5c\x96\x9b\x93\x9c\x4f\x92\xdf\xd8\xb9\x0a\x72\x3b\x1c\xb3\x4d\x08\xa3\x13\xfc\x91\x5a\xf4\xc5\x81\xb4\xea\xec\x63\x53\xf6\xa3\x0c\x50\x38\xc0\x96\xdc\x01\xc0\x8c\xe4\x0c\x8f\xf4\xd8\xb0\x52\xa1\xae\x0e\x8a\xe9\xdf\x9b\x06\xeb\x42\x9c\xde\x28\x35\xe8\xe6\x5b\x7c\xd6\x17\xcd\x35\xba\xbb\xaa\xba\xcd\x7f\x9d\x51\xfd\x86\xc1\xb8\x7b\xa4\xae\x8a\xd7\x28\x0b\xad\xea\xb3\x85\x17\x07\xcc\x70\x86\xa9\x96\x3f\x79\x03\xa3\x7d\xfe\x09\x29\x3e\xa8\xdb\x82\xf4\x9e\xa8\xd0\x7c\xad\x45\xfb\x2e\x2f\x16\xbb\x3b\xb1\xef\xdd\xef\xd5\x5b\x72\x78\xc8\x1c\x16\x8c\xa1\x03\x06\x4c\x9f\x13\x24\x96\x03\x75\x83\x52\x00\xaa\x24\x2b\xc6\xa5\xba\x45\x64\x6f\xfc\x11\x1a\x84\x76\x2e\xae\xde\x9b\x38\xde\xa2\xd3\x59\xbb\x5b\x94\x38\xc8\x2f\x04\x24\xe9\x68\xe0\xe9\x01\xb9\x56\x36\xcd\xfe\xeb\x9a\x4c\x94\x5e\x86\x49\x2b\x58\x5b\x8a\x84\x7f\x58\xa6\x84\xd7\xda\x5d\xc6\x7a\xc6\x6a\xf4\x6a\xbb\x2b\xec\x6c\xec\x89\x16\x41\x18\xbf\x34\x26\x13\xda\xf2\x52\x9a\xc2\xe7\x1a\x69\x4c\x26\xcb\xc6\x46\x50\xc3\x37\x48\x14\xd3\xe8\xd0\x1d\x64\x14\x30\x6a\x20\x44\xaf\x05\xc3\x04\x70\xc7\x52\xa9\xe0\x7c\xe3\x03\xbf\x26\xbd\xf8\xe7\x4f\x0d\xa4\xe0\x92\x54\x69\xb0\x18\x4f\x5e\x0a\x3d\x47\x7a\xf4\x26\x95\xf1\x59\x18\x71\xae\x6c\xfc\x80\x79\x59\x3e\xd6\xd3\xcd\x44\xae\xb1\xe7\x6f\x23\x8a\xcb\x8c\xa1\x66\xc4\x61\xc9\xdf\x94\x14\x81\x94\x9c\x13\xb8\x26\xd3\x34\x66\xff\x63\xa9\x77\x44\x83\x01\xa4\x35\x42\xb8\x69\x3f\xfa\xac\xf5\x43\x9c\x12\xc0\x11\xe6\x70\x8c\x01\xe1\xac\x5c\xf3\xb0\xf0\x38\x5e\x98\x3a\x03\x65\x37\xbc\x4d\x72\x49\x86\x92\x26\x22\x6a\xcc\x67\xc8\x18\x5c\x92\x62\x80\x82\xd9\xe7\xee\x81\x4c\x6e\x1b\x4a\xeb\x99\x08\xc8\x2f\x80\x7f\x5e\x84\x12\x9b\x57\x4e\x16\x35\x0b\x74\x7d\x15\xa8\x19\x31\x34\xbc\x77\x89\x2d\x1b\x4d\x5b\x77\x28\x6d\x46\x87\xc7\xca\x24\xf7\x98\x97\x83\x75\xcf\x72\xb4\xc5\x62\x98\x5b\x0e\x82\xb9\x3f\x1f\xbd\x5d\xc4\x5d\xe5\xf0\xe2\xcb\xb9\x85\x67\x48\x8c\x8c\x0b\x9d\x1b\x3d\x98\x96\xb9\x2a\x75\x62\xd8\x9d\x50\x19\xea\xf0\x14\x03\xc2\xe9\x5e\xb1\x8f\x8d\xd8\xb8\x1d\x9f\x5b\xb6\x4a\x1f\xc7\x0b\xef\x61\x67\x4e\x51\xeb\x40\xf2\x60\x18\x13\xba\xd5\xc7\xcf\xd1\x31\xc5\x93\x3b\x05\xc9\xf5\x41\xdc\x0e\x27\xa9\xa6\x17\x91\x51\x1d\x05\x26\x21\x59\x6f\x11\xcc\xdd\xd7\xee\xee\x08\x06\xed\xfe\xf3\x91\x3e\xeb\x9b\xc3\x81\x81\x37\xda\x3d\xf4\x14\xcb\x5e\x99\x2f\x6c\x33\xcb\x90\x5a\x5c\xf0\x20\xb7\xd1\xfe\xf0\xa4\x6b\xc8\xef\x27\x74\x4c\x60\x2d\x22\x97\x32\xd5\x86\x6c\x50\x11\x0c\x27\x4d\x40\x28\x26\x72\xda\x5f\x2d\x7a\x15\x81\x5d\x8f\x84\x5f\xc8\x89\x85\x4a\x9f\xc1\x52\x00\x1a\xc0\x61\x8b\x9d\x97\xb2\x70\x5d\x6b\x21\x82\x1f\x8b\xd6\x65\x2e\x8e\xb7\x53\x0f\x63\x26\x92\x5d\x5a\x80\x7f\xc1\xaf\x16\xc3\x5f\x4f\xd4\x5c\x4e\xc4\x91\x85\xde\xe2\xec\x54\xec\xa6\x63\xc8\x7f\x8b\x9f\x50\x68\xde\x3a\x66\x9b\xd0\x48\x62\x36\x00\x90\x52\xdf\x32\x1f\x21\xc3\xb8\xa4\x85\xe0\x44\x8e\x62\x6a\x4a\xc9\x2e\x7b\x17\xf5\xf0\x1f\x93\x64\xa1\x1e\x65\xfe\x21\xdb\x04\x5e\x20\x3a\x90\x42\x9d\x01\x16\x99\x97\x5f\x9f\x85\x78\xec\x97\xff\xb9\x9f\x0a\x53\x94\x88\x34\xfc\x0f\xd5\x89\x65\x03\x34\x65\xd3\x5d\xd4\xfd\x98\xed\xd0\x7d\x91\xe8\x0d\xb9\x9a\x4e\xc1\xbb\x35\x52\x9b\x6d\x2a\x29\x71\x84\xf2\x3c\x1c\x16\x8f\xbc\xc7\x05\x97\x4f\x60\xac\x44\xdc\xd0\x09\x2f\xe8\xfc\x1f\xd4\xa5\x00\xc0\xac\x45\x1b\xd1\xe0\x4f\xbc\x92\x84\x62\x94\x95\x62\x25\x10\x8f\x9f\x87\x5b\x74\xe7\xab\x66\x01\x31\x79\x03\xa0\x44\x3a\xa9\x05\x02\x9b\x3f\x6e\xec\x8a\x22\x47\x08\xe4\x36\x9f\x01\x80\xf4\x19\x88\xc1\x23\x2f\x0f\xde\xd3\xab\xcc\x9e\x0a\xf5\x84\x4c\x3f\x81\x9f\x9f\x47\xee\x80\x0a\x16\x6d\xaf\x6a\xd3\xe8\x06\xb9\x25\x69\xb2\xad\x7e\x30\xbc\xbc\x8a\xa9\xfb\xa0\x7f\x76\xca\x26\x7d\x06\x93\x54\x12\x02\xe8\x8b\x07\x00\x2c\x80\xce\x12\x8a\xc9\x4b\xf4\xe1\x22\x2e\xc2\xe5\xf5\xcf\x6e\xf7\xa3\x19\xe8\x95\x11\x02\x34\x3d\xa1\xc3\xef\x7b\xc7\xc3\x94\x28\xe3\x15\xf1\x39\x57\x84\x00\x7a\xfe\xe7\x3c\x78\x00\x79\x7a\x2e\x55\x63\x10\x93\x97\x78\x30\x87\x9d\x4a\x3a\xfc\x82\x55\xf7\xb1\x32\xa4\x57\x44\xac\x37\x17\x5d\xce\x51\xfc\x57\x0e\xc2\x00\x40\xf6\xb1\xc5\x21\x69\x54\xd4\x19\xa8\xb4\x12\x73\x8f\x17\xe3\xbd\xaf\x74\xc3\xdf\x29\xac\xda\x17\x71\x1c\xbe\x8d\xe6\x8a\x57\xc4\x5b\x71\x09\x01\xf4\x2b\x70\xb6\xbb\x6c\x00\x9c\xbc\xa0\xb8\xbd\x9b\xff\x7c\x22\x26\xca\x2b\x8c\x0e\x70\xde\x60\x58\x91\xc4\x81\x01\xec\xf0\x1b\x89\x6f\xd8\x9c\x81\xbd\xeb\x8a\x0d\x1f\xd4\xef\x26\x22\x33\x32\x06\xd0\xcd\xc8\x3e\xab\x83\x38\xb0\xdd\xa3\x02\x2f\x8d\xa4\x4d\x27\x94\x20\x37\x04\x2b\x9f\xf3\x3c\x00\x73\x37\x01\x09\xc3\xff\x2f\xc7\x20\x9a\xac\xec\x90\xee\x76\xfc\xd4\xf4\xa5\x31\x00\x00\x37\x7c\xd5\x1e\xf8\x3a\xd8\xf9\x3a\xca\xdb\x7b\x3b\xda\xf9\x3a\x02\x92\x68\x09\x59\x51\xb4\x94\xa8\x94\x84\x31\x1a\x2d\x2f\x2d\x25\x2f\x29\x25\x8c\x96\x94\x47\xa3\xbb\xc5\xd0\x33\xff\x0f\xe0\xee\xe1\xe0\xe2\x14\xf8\xff\x07\xea\x7c\x62\x1c\x01\x00\x30\x0b\x32\x7e\xe0\x7b\xdf\xce\x1f\xe9\xe9\xed\xe1\xe4\xe2\xe6\x88\xf4\x0d\xf4\x74\x44\xba\x78\xfa\xda\x03\x40\x40\x0e\x61\x1f\x0e\xf3\x32\x15\x12\xea\xd7\x1f\x18\xd4\x5a\xbd\x0f\x50\xf0\xd1\x8a\xd9\xd3\x32\xf1\x31\xe9\xa4\x32\x53\x30\x21\x55\x71\xd2\xdd\x0e\x14\x7c\x1f\x8d\x91\x03\xd3\x3f\xfa\xbe\x0e\x7e\xe5\xfa\x4a\x35\x80\xd3\x2c\xd0\x16\x03\xb6\xae\x31\xf8\xee\xab\xc8\xa4\x01\x00\x00\x68\xa9\xe9\xa9\xd6\xa8\xd8\xe2\xff\x4f\x00\x00\x00\xff\xff\xf1\x18\xc7\x0e\x41\xe4\x00\x00") +var _web_uiV1StaticConsulLogoPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xba\xf7\x57\x13\xdf\xf7\xc6\x3b\xc1\x20\xa1\x08\xa1\x09\x0a\x52\xa4\x83\x74\xa5\x48\x49\x68\xd2\x7b\x97\x0e\x02\x22\xd2\xa4\xd7\x04\x08\x5d\x45\x69\x52\xa4\x4a\x15\x10\x90\x0e\x42\xa4\xaa\x14\xe1\x8d\x74\xe9\x4a\xe8\x84\x1e\x4a\xca\x5d\x7e\xbe\xf7\xfe\x11\x77\xcd\x9a\x35\xbf\xcc\xec\x39\x67\x9f\xd7\x7e\x9e\x73\x66\x4e\x92\x91\x81\xe6\x0d\xaa\xdb\x54\x00\x00\xdc\xd0\xd6\x52\x37\x01\x00\x32\xe0\xdf\x09\xb9\x0e\x00\xc0\x49\xc8\xe4\x25\x00\x00\x60\x77\x15\x7d\x15\x00\x68\x48\xa5\xc6\x3b\x91\x03\x00\xc0\xe5\xa2\x65\xa2\x0f\x00\x61\xfc\x00\x80\x44\x01\xc0\xbf\x5b\x90\x9b\x00\x10\x28\x01\x00\xdb\x8e\x00\xf0\x30\x1b\x00\x58\x7c\xdf\x77\x18\x2b\x02\x00\x70\xdd\x59\x57\x53\x1d\x20\xfd\x3b\x8a\xba\x2a\xd2\x01\x00\xa0\x08\xd0\xd6\xd7\xa0\x58\xbd\xc6\x09\x88\xb0\x54\x37\x0b\x48\x00\x00\x12\xd0\x56\x57\x31\x0b\x99\xdf\x25\xe0\xd2\x79\x2c\x0b\x56\x28\xa3\x96\xc3\xc5\x8a\xaf\x15\x6b\x6c\x3f\x49\xcb\xd1\xe3\xff\xa1\xf3\x19\xfc\x63\xc2\xce\xee\x41\x6d\x79\x85\x7b\x47\x75\x79\x85\xa7\x5b\x87\x7b\xde\xaf\x4e\x05\xcf\x16\x77\x17\xf7\xe0\x16\x77\xdc\x31\xe1\x86\xa5\x4b\x90\x7b\x70\x4b\x90\x9b\xc0\xf4\xae\x1b\x0e\xf3\x58\x6f\x34\xf3\x6e\x8a\x94\x50\xda\x13\x37\xa9\x66\xc8\x9d\x68\x64\xfc\x30\x6e\x89\x00\xc8\xf5\xae\xfa\x52\x40\xdf\xc2\xe1\xfd\x57\xd9\xa1\x64\xc5\x6f\x88\xec\xaf\x71\x53\xcb\xe2\x48\x38\x17\x14\x02\x26\x8b\xfe\xff\xc7\x85\x07\x7c\xfb\x8c\x12\x02\x8e\xe9\x3b\xc6\xe4\xf9\x28\x9f\xba\x9f\xbb\xc3\xae\x6e\x71\x9e\x3d\x04\x93\xf5\xfc\xc7\xc3\x04\x44\x3b\x82\x37\x13\xb8\x38\xaf\xab\x86\x42\x21\x83\xef\x1a\x16\x02\xc0\x31\x7e\x6b\x42\x71\x57\x95\x11\x8f\xe8\xf8\x36\xe3\x62\xb8\xa0\x2f\xc5\x3e\x7c\x6e\x87\x80\x5d\x46\x41\x71\x11\xad\xcb\x91\xf3\x85\x30\xd1\x45\x94\x0c\x22\x19\xed\x75\x37\xe3\x5a\xb4\x63\x1b\x84\x1c\xce\x25\xc7\xa5\x44\x15\x1e\xf0\x1d\x7b\xe7\x0c\x1b\x26\x9f\xd0\x07\x39\xb3\xef\x9e\xd9\x59\x3e\x7d\x41\xab\x2a\x09\x85\xbc\x86\x14\x03\x10\xf0\x9d\x4d\x95\xd9\x60\xc6\x95\x4d\x60\x8c\xee\xa8\xd3\xd8\x21\xf8\xd2\xba\x4e\x35\x87\xf3\x48\x1e\xd6\xef\x19\xa4\x20\x0b\x40\x75\xa2\xe1\x12\x10\x14\x19\x17\xf4\xfe\xe6\xdd\xdd\x4e\xeb\xd5\xca\x04\x6c\x71\x22\xf6\xf4\x52\x61\xb1\x7b\x66\xcb\x96\x70\x72\xf7\x3d\xdd\x51\x48\x36\x3a\x5a\x6c\xac\xaf\xdb\xfb\x2e\x13\x59\xf4\xca\x16\x3d\x15\x72\x65\xf6\x05\x10\xbd\xac\x5f\x49\xc1\x19\x3b\xd6\xd7\xbd\x7f\x1a\xee\x54\x37\xb7\x45\x7f\xb7\xfb\x2c\x91\xe1\xf3\x22\x38\xfc\xe0\x42\xa5\x9b\xe5\xf4\x01\xdc\x9d\xbc\xe4\xd7\x45\x0b\x77\x06\x59\xf4\x8a\x23\x84\x1c\xee\xfb\x7c\x93\xeb\xe0\x03\xca\x5d\x96\x9b\x93\xaf\xbf\x8f\x36\x62\xbc\x90\x31\xde\x68\x81\xff\xf3\xb6\x73\x89\x91\xba\x19\xcb\xb0\x24\x9b\x88\x64\xc2\xa6\x94\x86\x14\x26\x11\x1a\xcf\x3b\xa2\xf2\x4c\x91\x61\x64\x27\x35\x91\x27\x46\x5e\x2b\x9b\x67\x24\xda\x3f\x1e\xf9\x02\x9c\xc1\xf3\x93\x95\x6c\x08\x1a\xcc\xb6\xec\xc2\xe4\x37\xc3\xb7\x20\xf3\xc4\x6d\xf2\xc9\xb3\xc7\x0c\xfe\xb6\xbd\x55\xfa\x6d\x9e\x8c\x8f\x44\x93\xda\xe3\x47\x04\x07\xde\xab\x74\xd6\xe3\x38\x17\xa3\x96\xf6\x90\x62\x63\xc5\xc3\xc7\xfc\xaa\xb7\xa0\x90\x0e\x1e\x26\xa0\x47\x9d\x91\xfb\x24\x9c\xfe\x3c\x81\x79\xdf\x69\xcc\x86\x83\x99\x25\xbd\x54\x23\xa3\x54\xa3\xa9\x4d\xbf\xe9\x25\x77\x59\x7a\xd6\xfd\xb2\x36\x41\x6e\x53\x26\x01\x9a\x01\x3e\x7b\x04\x2f\x0d\x9f\x44\x82\x1c\x46\xf0\xf5\xad\x64\x17\xe0\x8e\x9f\x11\x80\xe4\x02\x68\xd8\x21\x40\x2f\x80\x34\x26\x9c\x76\x61\x5d\x96\x49\xd4\x46\x2c\x3f\x5f\x7e\x28\x7f\xf3\x09\x71\xe3\x2b\x20\x77\x0d\x2c\x46\x51\x2f\x4f\x96\x70\xcd\x8a\xc6\x2f\x96\x5b\x82\x75\xed\x41\xfc\x57\xc7\xec\x19\xdb\x91\x61\x31\x0c\x9f\x8d\x33\x9f\xa9\x73\x5c\x6e\xaf\x0e\xdf\xa8\xe8\xd4\x13\xb7\x5c\xa9\x46\x91\x64\x4f\x4b\x66\xcc\x2c\xc3\x07\x40\x94\x64\x38\xeb\x92\xd1\x0b\xc5\x73\xc0\xdd\xb1\xd1\x24\xc9\xf3\x2f\x49\x46\x10\x70\x4c\x10\x8a\x8c\x2b\x5b\x30\xac\xe9\x48\xc1\xfa\x64\x09\xd7\x7b\xef\x4c\x22\x7a\x29\x42\x4c\x52\x1d\xa2\x96\xed\xcb\xf5\x31\xb6\xec\xa5\xd0\x96\xb6\x69\xf2\x80\x57\x9a\x56\xce\x93\xc7\xc1\x5a\x16\x81\x87\x2f\x55\xff\x6b\x52\xff\xaf\xa9\x7f\xfc\xbe\x93\x60\x8a\xbc\x8e\x23\xad\x24\x60\x04\x45\xbe\x94\xd3\x3a\x9d\xd1\x00\x87\x92\x28\x28\x62\xce\x48\x63\x2b\x61\x97\x1a\xa6\x45\x2f\x80\xeb\x57\x43\x64\xeb\x00\x3b\xd2\x94\x76\x85\x8c\x2c\x8f\x5b\x42\x1e\x39\xb0\x43\xa5\x9a\xe3\x6c\x5f\x9a\xc8\xc2\xde\xeb\xdf\xd2\x1f\x44\x93\xe3\xf5\xce\xbc\xc3\x74\x72\x31\x42\xa3\xb8\x39\x66\x7f\x92\x26\x47\x9e\x06\x54\x96\x2d\x9d\x2c\x1f\x28\x59\xb1\x62\xfa\x68\xc5\x31\xb9\xd7\x49\x0d\xf2\x2f\xbb\xb7\x21\xe4\x70\x89\xb3\x13\xc7\xf5\x60\xc6\xf3\x7c\x70\xe4\x41\xbb\xc0\x66\x92\xea\xdb\xd2\x36\x2b\x9d\x59\x75\xdd\x5b\x26\x8a\x2e\x3a\x39\x2f\xb9\x45\x07\xbc\x3e\xd7\x74\x84\x68\xfb\xfd\xc7\xe0\xf4\xf4\xb5\x6f\xc6\x23\xf6\x00\x70\x11\xcf\x6b\x33\xf0\x0d\xd0\x58\x0f\xe3\x01\x64\xf0\xb8\x71\x93\xd2\x04\x63\xca\x2a\x48\xb1\xef\x0b\xbe\xa9\x66\xe4\x9a\xf8\x4e\x10\xd3\x49\x8b\xb1\x11\x5b\x55\xc8\xea\x6f\xf9\x48\xb5\xf8\x7d\x67\xff\x91\x4a\x70\xca\x45\xb6\x4d\x95\xd0\x64\x90\x44\xb0\x57\x52\xfb\x8d\x32\xa4\x4a\xa7\xc9\x78\x8a\x33\x30\xde\x59\x51\xf4\x2f\x73\xdf\x32\xfd\xfe\x15\x55\x2c\x15\xa1\x8f\x2a\x9c\x0c\xb0\x0a\x6c\x28\x95\xb7\x7a\xad\xa0\xae\xcf\x66\x12\xf1\x91\xdf\xd5\x24\xeb\x7e\x9e\xc4\x8f\xcf\xfb\x6b\xcc\x03\x03\xba\x52\x6a\xc3\xa8\x62\xeb\x11\xee\x24\xb9\x64\x6e\x40\x88\x6b\x25\x76\x23\x98\x7d\xe5\x15\x62\x3b\x4b\x99\x6c\x08\xc4\x6e\x4f\x27\xce\x64\x3b\x22\xfb\xbc\xd7\x42\x34\xa9\xd6\xc2\xfc\xb2\xad\xf2\xbf\xd3\x34\x0c\x86\xba\xc3\xe6\x63\xe5\xe4\xfd\x27\xcf\xd8\xa4\xfc\x55\x33\x62\x24\xc8\xb9\x87\x4c\x01\xe8\x27\x26\x70\xe1\x35\xa4\xd1\x75\xf0\xb7\x94\x3f\x2d\xdc\x94\x83\xd9\x62\xaa\x68\x16\x11\xf4\x68\x2e\x9d\xbc\xd6\x08\xff\x8b\x5e\xfe\x67\x13\xbc\x0d\xcf\xf5\x0d\x2a\xf4\x3d\xf8\xbd\xb4\x2a\xd6\x64\x94\x2b\xda\xcf\x6b\xd4\x0f\x29\x7b\xb9\x53\xe4\x92\xb9\x69\x9f\x25\x32\x8b\x2b\x5b\xe6\x53\xc6\xdf\xb6\xa5\x5d\x78\x02\xd1\x11\xc3\xd8\xd0\xae\x56\x67\xf5\x73\x64\x3d\xc0\x79\x1b\xfb\xcf\x1c\x49\xca\x5a\x8e\x2f\xbe\xb0\x2e\x7b\xa4\xed\x2f\x5a\xa8\x0a\x2d\x63\x3d\x49\x7b\xb3\x09\x4b\x5d\xf1\x2f\x86\x40\x5e\x93\x3b\x7f\x60\x78\xa9\xc8\x1d\x83\x7e\x57\xda\x55\x19\x12\x99\x12\x48\x07\xf0\x62\xa0\xae\xe5\x77\xbf\x49\xc5\x67\x8c\xb0\x9a\xc8\xb8\xea\x50\x53\xa6\xbc\xff\xef\x4e\x84\x41\xd9\x79\x86\xfa\x7f\x54\x18\xc1\x58\xb9\xa7\x95\xc4\x60\x22\xc9\x66\x1c\x96\xab\xda\x5a\xf0\xf2\xfb\x8d\x64\xa7\x6f\xdc\xbb\x6f\xf9\x0e\x13\xcc\xe3\x96\x44\xaa\xf7\xff\x94\x3c\x6a\xa5\xee\x30\x9d\x4d\xe9\xcc\xec\xca\x76\x69\xcb\xee\x1c\xff\x04\x0d\x18\x12\xdf\xfc\xcb\x0d\x40\x87\x90\x2b\xd9\x5c\x32\x92\x3d\x5a\x2f\xe0\xc5\x9c\x99\xa1\xcb\xfc\xbb\x20\x24\x34\xfe\x7b\x80\xfe\xeb\xd1\x77\x99\x01\x2d\xfc\xa3\x06\x53\x7f\xd3\x29\x53\x6c\xc7\x6d\x23\x2c\xca\x37\x4b\xfb\xc7\xef\x62\x04\xe7\xbe\xb7\xb0\x14\xbe\xfd\x0f\xf9\xe0\x23\x03\x95\xd8\x6a\xb5\x8c\x13\x9d\x27\x55\xa7\xdd\xc4\xc2\x55\x78\x47\x67\x41\x8a\x42\xfb\x5e\xa9\x9d\xd8\xb3\x4f\xe4\x81\xab\xd8\x3b\x51\x71\x45\x36\xdf\x01\xb8\xe0\xb5\x18\x17\xd4\xec\x02\x98\x47\x8d\xa2\x18\xab\x84\xa3\x26\x09\x16\x1b\xaa\x72\x24\xed\x3b\xba\x56\x55\x96\x6f\x08\x0f\xe9\xb5\xf0\xd7\xf2\x8a\x6e\xe9\x8d\x0c\x8e\x7d\x14\x53\x16\x97\x0c\x60\x90\xce\x78\xc6\xbb\x41\x39\x78\xed\x27\xbd\x15\xd3\xa1\x5d\xc2\x41\x42\x79\xff\xfe\x34\x53\x58\x45\x69\x3b\x1d\xce\x79\x1f\xe3\x36\xb4\x64\x67\x68\xed\xfa\x18\x47\x7b\x9e\x19\x5d\x5f\xaf\x22\x8b\x45\x92\xe8\x01\xd4\x5d\xae\x6c\x1a\x14\x19\x17\xeb\x43\x8a\xfa\xb3\xce\x81\xc3\x24\x52\xf6\xa7\xa1\x06\xd3\x50\xaf\xa0\x72\x61\xf1\x32\xbd\x2d\xbd\x05\xfe\x0d\x73\x96\xfc\x77\x42\xca\x7c\x92\xf7\x53\xe5\x9e\xf6\xd9\x77\x16\xf9\x48\xc4\x87\x0c\x0c\x44\xf4\x71\xe3\xdf\x0a\x35\x86\x9b\xc7\x2d\x2d\xa6\xb4\xe3\x66\x7e\x4d\xcf\xf7\x09\x49\xfb\xe8\x8e\xc4\x07\x61\xe1\x66\x53\xd1\x46\xd7\xc1\x8c\xa9\x46\x00\x58\x6d\x15\xa9\x0a\xd3\x3b\x68\xb5\x3a\x37\x6a\x5d\xd2\x1e\x7c\x73\x72\xdc\x79\xd9\x1b\x61\xad\x94\x27\x59\xaa\xdb\x11\x5b\x98\x29\xf4\x50\xd4\xb8\x49\x5d\x4e\xa7\x27\x8a\xc6\x41\xa2\xc7\x17\x78\xe7\xd4\xbd\x01\x25\xce\xa6\xcd\xee\x25\xab\xfa\xdc\x0c\xc0\xed\x3f\x1e\x0c\x3b\xe7\xf2\xfc\x4b\xd3\x5e\x45\x13\xc2\x11\x63\xb0\x14\x6d\x9f\x06\x89\xbb\xcb\xc5\xaa\x80\x22\xe3\x92\x33\xe9\x80\x10\x2b\x47\x08\x82\x22\x0e\x64\x40\x9a\x14\xdf\x1e\xfe\x53\x77\x9b\xad\x59\xa1\x76\xce\x44\x59\xf6\x2b\x71\x21\xa6\x42\x3e\x1a\x51\x67\xda\x87\x89\x57\xf8\xb6\x3e\x41\x0c\x39\xcb\xb1\xb9\xae\x33\xee\x99\x54\xa7\xf5\xe4\xa2\xb8\xa5\xf4\x74\x57\xa7\x74\xf3\x1d\x35\x37\xfb\x25\x78\x85\xaf\x4a\xc5\x7b\x10\x89\x07\x80\xb8\xc2\x25\x38\x12\x5f\x19\xfb\xf2\x82\xc1\x24\x15\x5b\xbc\x53\x56\x37\x53\x6b\xd2\xe5\x6e\xd0\x73\x8f\xf6\x4a\x7b\x2d\xb6\x09\xd7\xc5\x1e\x16\xe6\xe4\x31\x68\x3c\x86\xcd\xee\xb4\xbf\x4b\x14\x12\x2b\xd9\xaf\x2b\x86\xb1\x69\xe9\xe7\x9c\x7c\x72\x79\x61\xbf\x40\x38\x59\x6a\xf2\xbb\x22\x36\x35\x68\x4a\x06\x3b\x3a\xd0\x1f\x84\x53\x84\x1d\xd2\x00\x10\x0d\xb8\xc4\xa3\x44\x7d\x13\x09\x89\xb0\xfa\x33\xd0\x7c\xfa\xc5\xdd\x38\x65\x27\xad\xee\x7a\xc6\x3c\xa5\xd6\x6a\x18\xcc\x55\x4b\x7c\x87\xb6\x9b\xd7\x34\x22\x57\xe2\x7e\xac\x7c\xbf\xca\xc2\x58\x4c\x6c\x0f\xeb\x9a\x2b\xcb\xf1\x0d\xdd\xb5\x56\x91\x8f\x57\x3f\x2c\x26\x2e\x4e\xce\x9e\xef\x11\xc3\xe6\x85\x55\xec\x40\x07\xaf\x1d\xcd\x55\x32\xa4\x00\xee\x54\x55\x7a\xe8\x4b\x5e\xe7\x3e\xa6\x93\xfc\x6b\x1d\x17\x0a\x1d\x38\x10\xbc\xa0\x5a\x30\x29\xc5\xa6\xa1\x31\x85\xef\x34\xb3\x54\xdb\xde\x5c\xb0\x9b\x0b\xd5\x5d\x54\x78\xff\xc5\xf5\x64\x31\xcc\x4e\x56\xbf\x37\xf3\x83\x30\xaf\x07\x2e\x51\x47\xeb\xb6\x7b\xda\x2a\xc1\x9e\xe3\xfb\xcc\x9b\x0f\x1c\x00\xb8\x20\x59\x0c\xbd\xc6\xf3\x82\x98\x6e\x3f\xa0\x87\x93\x79\xe6\x9d\xe3\xf2\x40\x5d\xfe\xe8\x96\xbf\xfb\x8b\xf9\xcc\xad\x5c\x7c\x2e\x66\x45\x84\x41\x43\x37\xfb\x43\xa9\xe0\x0c\x23\x0d\xf4\x27\xfd\x2c\xcd\x61\x5a\xec\x05\xa3\x9a\x53\xe1\x6e\xff\x5e\x2b\x76\xe4\xb6\x83\xe2\x50\x6e\xb8\x8c\x93\x0c\x20\x07\xcd\x87\xcf\xea\x32\x47\x1b\x81\xc1\x3c\xd1\x46\x00\xd8\x50\x1f\xb5\x82\x9d\xcc\x19\xc3\xae\xbd\x03\x90\x5a\x34\x3f\xa4\x34\xb6\x6d\x35\xb4\xf3\x7f\x4f\x8d\x89\x66\x64\xd4\xf1\x89\x6e\x79\x4a\x69\x6c\x40\x34\x4d\x4b\x84\x52\x1d\x21\x07\x8f\x8e\x8b\xdf\x0b\x35\x8a\x53\x75\x5c\x4d\xff\x11\x3a\xee\xeb\x94\x1e\x7c\x66\xec\x7f\x23\xb9\xfd\x46\x6d\x41\x74\xe5\x67\xd5\xb7\x02\x5c\xac\xda\xfd\xf1\xc2\x72\xf7\x95\x20\xc4\xca\x4f\x11\xa2\x7e\x84\x52\x8d\x93\xf4\x50\xaf\xfd\xe7\x06\x88\xd0\x0e\x7e\x84\xae\xff\x41\xca\xab\x27\xca\x37\xd4\xe7\x0a\x1c\xcf\x7d\x69\xe1\xf2\x6b\xcc\x79\x07\x14\xe6\x99\xdd\x9d\x39\x4d\xcb\xdd\x30\xaf\x85\x39\x9d\xf9\xb8\x64\x1d\xfd\xa7\x63\x2c\x9b\x18\x66\x00\x9a\x8c\x74\xfc\xfe\xcf\xa9\x1d\xff\xc1\x54\xda\x7d\xb3\xa7\xae\xcd\x6a\x74\xba\xf4\xbc\xea\x4b\x4b\x84\x70\x5d\xa4\xa8\x8b\xd6\xb2\xb9\x1d\x5e\xd1\x4d\x70\x71\xb3\x55\x7c\x5f\xbf\x47\xb0\x57\x8e\xec\xdb\x40\xc4\x70\xc6\xec\xb7\x70\xc9\x0d\x59\xba\x46\xcc\xb7\xea\x5b\xfe\x9e\xe2\x18\x8b\x48\x73\x70\x17\x86\x0a\x48\x1c\x47\x3a\x6a\x25\xea\x5b\x8c\x4b\xdf\x01\x23\xac\x6e\x39\x8c\x8f\x8a\x83\x90\xa5\x0a\x56\x36\xf7\xaa\x72\x4c\xc3\xe7\x73\x06\xd2\x8e\x1e\x0f\x65\x74\x57\x19\x45\xf4\x58\x76\x08\xec\x6b\xf7\xc8\x7d\x05\x21\x8d\xfb\x75\xb3\x46\x94\xc5\x37\xf7\xff\x81\x79\x45\x57\x31\x22\x60\xa3\xdd\xb9\x4b\x4d\x77\xce\x1c\x6d\xb0\x0a\x02\xfe\x49\x1d\x6b\xc3\x1c\x55\xc7\xc4\x87\x81\x65\xc9\x2a\x71\x57\x9d\x06\x46\xf2\x40\x8c\x99\x7d\xb8\x77\xcb\x5d\x34\x7d\xeb\x77\xd9\x27\xf1\x86\x49\xb3\xdd\x8e\x64\x2b\x34\x2a\x53\x59\xb3\xef\xf8\x46\x09\x53\x61\x43\x51\x38\xa7\xe9\x90\xfa\x82\xcf\x5d\x67\x7d\xc4\x25\xb2\x7f\xac\xd0\x38\xff\x61\x0e\xe0\x2d\x8d\x36\x94\x18\x5c\xd6\x3e\x18\x16\x32\x9d\x28\x9c\xfb\xcf\xd2\x80\xa9\x49\x64\x2e\xf7\x64\x34\x5b\xdf\xfe\x2d\xeb\x63\x30\xfd\x6f\x16\x3d\x2e\xf6\x68\x57\xc6\xa0\xba\x92\x89\xd6\x56\xc6\x33\x1f\x4e\xb7\x51\x71\x4e\xc3\x9c\xce\xf8\x91\xde\x23\x30\xea\x2e\x17\xab\xb0\x2a\x08\x8a\x9a\x28\xf6\x77\xb0\x7a\x84\xc8\x5b\x49\xfd\xad\x8e\x6e\x63\x56\xf0\x93\xaa\xb3\x1b\x9d\xfe\x8b\xdd\xa6\x25\x52\x39\x3d\xbd\xdd\xaf\x24\x20\x77\xdd\x17\x98\xe1\xc6\x1b\xeb\x17\x63\xf7\x06\xf3\x5b\xf7\xc7\x58\x67\xb0\x3f\x59\x7f\xcb\x38\xdd\xdc\x0d\xff\xbf\x38\xce\xd2\x37\x9b\x0e\x9a\x62\x1c\x82\xeb\xcf\xf0\x6e\xf8\xbf\x55\x4a\x7b\x53\x42\x6a\xc4\xac\xfd\x95\x6a\xd5\x03\xea\xd7\x22\xec\x5f\x03\x29\x1d\xaa\x85\x4f\xf2\x17\xdb\x8e\x77\x14\x1a\x9b\x0d\xff\x3d\xfe\x8a\x3d\x3a\x56\x90\xac\xc4\x19\x3e\x1e\xdc\x5f\x7e\x0f\x40\x7e\x8a\x81\xdd\x1b\x14\xbf\xa0\xb5\x2e\xb6\x8a\x74\xe2\x89\xda\x0e\x30\xb8\xda\xce\xe0\x46\x98\x06\x1f\xfc\x73\x39\x28\x2e\x1b\xbe\x22\x44\x66\xf8\x31\x30\xf5\x6b\x9d\xcf\xa8\x25\x2c\xea\xcd\x83\xe0\xc8\x64\xb8\x84\x61\x91\x4d\xb0\x4a\x31\x18\x52\x70\xbb\x41\x9e\xba\x64\x0d\xaf\xb2\xca\xd9\x74\xee\x0a\xbc\xa1\x54\x1b\x4a\xd9\x49\x32\x75\x7f\x71\x39\x53\x4e\xb3\x65\x93\x1b\xeb\x90\xc1\x9a\x7b\xcd\xcf\x87\x12\xec\xe5\x0b\x7c\xe3\xc6\xfb\xe9\x17\x73\xee\xf2\xee\x3a\x2c\x66\xd7\x45\x9e\x38\xce\x7f\x07\x7d\x55\x51\x24\x03\x54\xe9\xa1\x27\xa0\x06\x6d\x4e\x97\x87\x56\x04\x27\xc6\x8b\xc7\x60\x18\x20\x38\xe6\x33\xf8\xae\xe0\x77\x32\x5a\xd2\x55\x6b\xf9\x3f\x76\xbc\xaa\xda\xc1\x1f\xa7\x3a\x5d\x2e\xd6\x40\x39\xb2\xe1\x1e\xbc\xb6\x7e\x31\xa7\x37\xff\x5e\x21\xa2\xc3\x96\xf8\x94\xc7\x95\xa5\xb8\xf1\x2e\xf4\xb9\x20\x98\x8b\x09\xd4\x63\xca\xc5\x84\x74\x49\x36\x3c\xd7\x1c\xb8\xe8\x7a\x48\xc4\x18\x15\x0c\x16\xd7\x30\x4d\x56\xbd\x9b\x4e\x73\xc8\x13\x17\x21\x69\x05\x1f\x58\xde\x8e\x71\x78\x72\x4a\x0d\xa6\x40\xf1\xd4\xb3\xf7\x72\x64\x31\x5f\xfe\x2b\x17\x2c\x4c\xd1\x9a\x58\xf2\xd1\xe8\xda\x63\x66\x10\xa2\x7a\xf5\xf5\x05\x48\x95\x12\xca\x0e\x2e\x06\xd8\xa5\x3b\xda\xae\xfa\x1e\xe2\x42\x63\x1c\x0a\x3e\x6a\xff\x78\x37\x93\xf6\xce\xf0\x6f\xf3\xb2\xee\xec\xdf\xc0\xa4\x12\x57\x33\x52\x0e\x9c\x4b\x4e\xf1\x3d\xb7\x7d\x33\x25\xda\x66\x72\x91\xf4\xc2\xbd\xe5\xec\x78\x47\x37\x93\x42\x66\xf5\x66\x93\x08\x99\x31\xc7\xff\x10\xa4\x4d\x34\x02\x5e\x53\x2a\x75\x5c\xc5\xc6\x38\x90\x01\x7c\xde\xe9\xb3\xc7\x79\x87\xd2\x1b\xc1\x27\x9c\xe5\xfa\x5b\x57\x54\x03\xee\x46\x5d\x86\xe8\x36\x04\x38\x86\xd8\x23\xb4\xa6\xa1\xeb\xe6\xb0\x3b\x98\x8f\xee\x92\x74\x20\x9c\x12\x6e\xf9\x0f\xf3\x8f\xa0\x0e\xd4\x55\xa8\xee\xf4\x92\xa9\x52\x42\x03\xd4\x9e\xaf\x7c\x43\xd2\x5a\xa0\x97\x17\x97\x6f\x6e\xcc\xdc\xa9\x29\xfc\xb1\x45\xcd\xd2\xba\xb6\x9c\x5b\x35\x84\xae\xeb\xd8\x64\xc0\x08\x82\xd6\xba\xe9\x21\xd7\xaf\x53\x14\xd1\x1c\x77\xe5\x8e\x28\x2f\xe8\x59\x93\x86\xdd\x53\xa6\xe8\x66\x26\xa6\xed\x3f\x38\x73\xd5\x0c\xd4\x43\xa8\x21\xb4\x71\xb3\xdf\x05\xb2\x39\x16\x09\xf6\xef\x97\x15\x98\x7a\xdf\x7c\xb6\x35\x6b\x7c\x27\xbb\x56\x77\x2f\x73\x12\x36\x71\x07\x6f\xde\x6b\x74\x5d\x3d\xa6\x10\xee\xfb\xc4\x17\x78\xc7\xd0\x6d\x6d\xb2\x58\xb8\x9c\x27\x49\xdc\x60\x3b\x6e\xee\xbc\xc8\x36\x8d\x26\xd4\x23\xaf\xad\xee\xc5\xc5\xc9\xc2\xc7\x19\x55\x41\xd9\x46\x1d\x56\x04\xa7\x53\x3c\x15\xf0\xdd\xf4\x81\x7c\xa8\x87\xc8\xd9\x48\xbb\x1d\x81\xce\xb4\xfc\xe4\x5a\xef\xb8\xe2\x47\x92\x2d\x17\x94\x5d\xe9\x3d\x4f\xbd\x68\xd2\xe2\x6c\x92\x02\xe9\x70\x3a\xe2\x74\x06\x57\xf1\x2a\x50\xcd\xed\x7a\x53\x3c\x39\xde\x25\xf1\xff\x8b\x23\x41\x9b\xfd\x77\xe6\xe5\xb1\x08\x93\xe7\x46\xf0\x49\xd9\x46\x8b\x4b\xdd\x98\x79\x06\xcc\xd8\x0e\xff\x85\x75\x92\x07\xfa\x92\xe6\xbd\x73\x41\x9d\xf0\x49\xed\xd4\xcb\x53\xd8\x72\x76\x5d\x54\x47\x6e\xc3\x59\xd1\x14\xdb\xb8\xd0\x3d\x80\xeb\x0b\x28\x06\x70\xf6\x2f\xe4\x0a\xab\xbf\x8c\xad\x0d\x67\x06\x8c\x6e\xea\xea\x60\x26\xdc\xf0\x71\x8c\xe4\x7b\x74\xe9\x37\x2f\x68\x9d\x04\xa9\xd7\x96\xa0\x90\x47\xb4\xb4\xf0\x3b\xbd\x9c\x37\x03\x36\x7c\xb0\x86\x79\xa4\x0b\x4c\xc4\x69\x94\x71\x70\x67\x1c\x39\x4a\x16\x0e\x4d\xae\x5c\x2c\x80\x92\x05\x12\x8c\x19\x2f\x73\x9b\xf1\x40\x91\x07\xed\x6b\x74\x5b\x81\x1c\xee\xe8\xf1\x11\x9d\x65\xf2\xbc\xc3\xa0\xd7\x51\x87\xd6\x11\x23\xe4\x11\x0b\x18\x49\xa9\x69\xbd\xc8\xfd\xae\xc2\x73\x62\xae\x3d\xb9\xf7\x56\xbc\xaa\xd8\xfe\xec\xf8\xc7\x93\x6b\x01\x17\xec\x0e\x5d\x61\xcc\x76\x9d\x41\x5e\xb3\xba\x0c\x34\xf4\x0d\xff\xa5\xca\x53\x34\x5d\x2a\x91\xc3\x95\x32\x67\xdc\xc4\x7c\xfa\x1d\xec\x04\xab\xd0\x9c\xad\x87\x9e\xd9\x1f\x26\xeb\x67\xee\x42\x21\xb4\xe0\x60\xc9\xe5\x7b\x1e\xfb\x30\xc5\x6c\x19\xd2\x2f\x81\xe1\xf5\x3c\xd7\x4c\x8e\x59\x36\x2e\x45\xd0\x37\x96\x62\xe0\xa5\x24\xfd\x22\xbe\x24\x0d\xff\x04\x30\xfa\x23\x93\xd4\xd5\x56\xd0\xe6\xcb\x5f\x41\x92\xf0\x7a\xc3\xf9\x9d\xa9\xf0\x51\x2f\x23\x2f\xf4\xa5\x28\x7b\xb4\xc7\xf7\x93\x3f\x7b\xa8\x63\x4e\x98\xdd\x47\x3c\xa6\xa7\xa9\xe1\x06\x60\xac\x8f\x2a\x79\x44\x4b\xad\xb1\xc2\x7a\x97\x09\x29\x59\xaa\x5b\x52\x88\x8e\xab\x83\x4d\xd7\x89\x65\x4e\x56\xd5\x29\x6a\x77\x77\x5b\x99\x10\x93\xf6\xdf\x58\x4a\x24\x9c\xff\xaf\x15\x97\x64\xc1\x10\x07\x11\x8f\xfd\x31\xac\x21\x1b\xa9\x30\xf5\x9d\x48\xeb\x33\xaa\x5a\xd5\x90\x34\xc7\x49\x24\x77\x31\x98\x5d\x1a\xb5\x2e\xeb\x16\xe0\x77\x71\x75\x75\x26\xf2\x4a\xcd\x54\x30\xd9\x61\x4e\xab\x20\xfc\x54\xfb\xc8\x70\x63\x78\xc8\xe1\xa9\x58\x7b\x0c\x68\xd2\xa9\x4e\x83\x0b\x7a\x72\x43\x5d\x4e\xc7\x43\x2c\x94\xdf\x53\xcb\x1d\x33\x2c\xcc\x4a\x35\xcc\x1c\x28\x7b\x4f\xb6\x68\x1d\x8b\x4f\xbd\x2b\xbe\x12\xc2\xcd\x84\x94\xbc\xbb\x72\x44\x37\x78\x41\xf8\x44\x2c\x3f\x30\xcc\x31\xb9\x7c\x45\x91\xe3\xa3\xd8\x7a\x87\x34\xdc\x24\x44\x28\x18\x39\xb8\xcb\x70\x23\x12\x1c\x93\x04\x06\x09\x32\x0c\x0c\x53\xe6\x29\xb6\x5a\x59\x94\x07\x50\x60\xf7\x78\xf7\xa4\x06\x96\x52\x6d\x38\x40\xdb\xd3\xb0\x23\x25\x2a\xbe\x15\x56\xee\xdb\x5f\x5e\x82\x28\xb4\x4e\x3c\xdd\x2e\x18\xe3\x9b\xa4\xc3\xe7\x7b\x87\xab\x7f\x20\xee\x9b\x66\x92\xb4\x8a\xcf\x23\x3e\x7c\x72\xe0\x82\xea\x49\x40\x90\xdf\x99\xf2\xdf\x7f\xd4\x46\x04\xb9\x2a\xf9\x89\xd9\xa4\x93\xb0\xd8\x02\x31\xa2\x4c\x5d\xa7\x6b\x25\x96\x25\x68\xc5\xd0\x6a\xc5\xd8\x57\x0f\xca\x81\xa4\xaf\x48\x39\xf0\x19\xde\xa7\x00\xf4\xfd\xfd\xd6\x76\x52\x27\xc4\xbb\x9b\xb2\xf0\xd5\xcf\xf5\x89\x02\x54\x03\x15\xea\xb2\xb0\xe8\x95\x90\x68\x40\x48\xaa\x6f\x58\x28\x45\xb1\xd5\xca\x8c\x4f\xd7\x8d\x4d\xe3\xd5\xe3\x2f\x0f\xa0\xe3\x32\xda\x50\x78\x08\xe8\x35\xb5\x2a\x88\xd5\x49\xd5\x96\xa8\xd2\x83\x0d\xbe\xa8\x46\x71\x47\x56\x95\xfe\x8c\xd8\x59\x9a\x4c\xfd\xb9\xbb\xe5\x33\xe8\x75\x74\x7b\x55\xf0\xc6\xdd\x39\x53\x2e\xb9\x2c\x2e\x40\x95\x75\x68\x90\xfd\x68\x41\xd5\x3a\x3f\x45\x3e\x24\x5c\x64\x9d\x49\x10\xd3\x23\x8c\x6c\xf9\x0b\x2b\x06\xeb\x29\xab\x82\x58\x8d\xef\xae\x11\x8a\xf3\xf1\x00\x9c\x87\x66\x40\xcc\x6b\xc0\x10\xb1\x67\x7c\x29\x8e\x11\x1e\x72\x10\x14\x53\x4e\x55\x69\xc3\x0b\x30\xef\x2f\xd7\xdb\xec\xc0\xdb\x48\x2b\xaf\x78\x0e\x08\xe3\x19\x12\xbc\x4c\x03\xda\xe4\x4e\xaf\x9d\x85\x07\xdc\x1b\x1f\x5c\x2c\x44\x58\x57\x65\x3c\xe8\xf0\x1a\x1a\x71\x12\x34\xa3\x7c\xba\x64\xa3\x0a\xca\x7e\x8e\xb2\x09\xe9\xdf\xe4\x5e\x5a\xb6\x58\xaa\x68\x97\x3b\x1b\xfa\x33\xb9\x4e\xad\x70\x69\xc8\x78\xf3\x22\x6b\x13\x23\x5b\xe0\x5b\x49\xed\x4e\xfb\x55\xfe\xa0\x03\xa8\xa3\x8b\x75\xa2\xf1\x1b\x84\x1a\x61\xff\x1b\x58\x08\xa4\x6c\xbd\xb5\x96\xc1\xfd\x73\x1b\x7d\xed\x25\xf7\x4f\xf9\xfb\x51\x9c\xd7\xfe\x00\xec\x20\x60\x0d\x29\xa9\xc9\xea\xff\x35\xf1\x9a\x2a\xbb\x13\x0d\x92\x52\x4d\xdd\x59\x8b\xff\x34\xd6\x91\x16\x3c\x45\x7e\x7d\x90\x1d\xe2\x96\x58\x14\xff\x38\x1a\x28\x1e\xf4\x2f\xbe\xf7\x92\x3b\x31\xf6\x93\xfc\xf9\x54\x3a\xb9\x97\xb2\xab\xb6\x08\xa7\xf8\x3b\x92\x83\xec\xcd\x8f\x6c\xf5\x0e\x0c\x89\x3d\xef\x68\x20\xdc\xf6\xa0\x9e\x27\xdc\xca\xfd\x3c\xea\xa8\x03\x3a\xb6\xdf\xbf\x03\xae\xc6\xcc\x33\xaa\x2c\x39\x04\x1c\x1c\x84\x9e\x92\x54\x83\x0f\x53\xee\xfe\xe7\xd3\xe4\x01\x09\xf8\x49\xef\xce\x8e\x94\xee\x17\x1a\x58\x31\x19\xb1\x63\xf1\xff\x96\x96\xed\xa1\x53\xe3\x36\x54\xe3\xa6\x33\xd2\xc4\xe7\xa6\x80\xfa\x9d\xd5\x7f\x2f\x45\xe2\x77\x46\x8e\xab\xf6\x42\x90\xa4\xbf\x90\xb7\x30\x98\x7d\xbb\xce\x1c\xe1\x55\x89\x56\xae\x86\xe1\xbc\x79\x51\x72\x5c\x23\xf4\x64\x00\x8a\xad\x1b\xe8\xa5\x1f\x64\xa7\xef\x05\x74\x69\xb4\xa9\x06\x3e\xaf\x39\x5b\x17\x6b\x19\xdb\xd5\x6c\xd3\x4e\x9b\xb1\x78\xe6\xc6\x06\x4e\x0d\xe4\xea\x34\x94\xb7\x69\x65\xb2\x9a\xf0\xc6\x3f\x49\xe2\x9e\x33\x65\x80\x6a\x06\xae\xab\xee\x8a\xf0\xa4\xaa\x9d\xef\x7d\x33\xc5\x90\x56\x11\xa1\x51\x38\x12\x05\x70\xbd\x49\xe6\xc6\x11\x0e\x02\xed\x02\xf1\xb3\xae\x82\x58\xe9\x3b\x02\x4e\x3d\xfd\xaf\x18\xe3\x9b\xfc\x3b\x2f\x27\x52\x76\x92\x38\x47\x2d\xfe\xc2\xcc\x05\x95\x6f\x94\x7c\xf1\x29\x5d\x01\xde\x3b\x19\xdc\x22\xd3\x91\xac\xa0\xc5\xb4\xa8\x65\x7b\x7c\xaf\x79\x6c\xfe\xb4\xac\xbc\xfe\x23\xf7\xaf\xc7\xe6\xc5\xcd\x1f\x7b\x3f\x32\x67\x4e\xdf\x4b\x9a\xa3\x75\x7a\xad\xd6\xd6\x07\xad\xa8\xe7\xac\x70\x65\xdf\x93\xf5\x5e\xbd\xba\xf5\x3b\xdf\xb9\x9d\xb8\x21\xf8\x37\x54\x77\xf9\xfc\x51\xe8\xd3\x5f\x3b\xa8\x90\x63\xa2\x1a\x8a\x5b\xdb\x59\x2b\x4d\x28\x8d\x37\x7e\x3d\xfb\x55\x73\x29\x1f\x1f\xc3\xcd\xa4\x6f\x5e\x69\x89\xbf\xe5\x3e\x29\xf0\x7e\x92\x97\x2b\x37\x2a\xfd\xc1\x24\xc2\xa0\x26\x85\x81\x4b\x68\x82\xfd\x8a\x99\x5e\x52\xd1\x1c\x3e\xd3\x28\xe3\x5c\xce\xad\x56\x42\x12\x22\x07\xe2\x36\xed\x41\x31\x94\x1a\x82\x00\x0f\x5c\xfd\x73\xe1\xcc\x94\xb8\x20\xde\x7c\x74\xa0\x81\x65\x9a\x91\xa5\xe0\xf7\x6b\xc2\xaf\x97\xdc\x04\x9e\xde\xf1\x93\xfa\x19\xdf\x85\x43\x54\x97\x4d\xeb\x5f\x51\x5d\xe7\x72\x3e\xbf\x0f\xe5\xe3\x2f\xac\xcb\xca\x3e\x6f\x67\xe9\xde\x16\x65\x0e\x6c\xb5\x35\xaf\x74\xd2\x1e\x29\xc9\xee\xbc\xa1\xc2\xb1\xfb\xf3\xe6\xee\xe4\xcd\x88\x13\x18\x05\xc4\x63\x87\xea\xbf\xfd\xdf\x46\xab\x74\x40\x22\x56\x24\xff\xb4\xce\xf8\x58\xde\x0d\xe5\x92\xe0\xfb\xfc\x3b\x12\x24\xb8\x94\x02\xba\x5e\x2f\x01\x38\x82\xe1\xbc\xc9\x4f\x72\x9c\xad\xfd\x1b\xb2\xa4\xb4\x15\xbd\xb4\xaa\x9a\x84\xca\xd2\x6f\x6a\x7f\x13\x4d\x9b\xb4\x65\x37\xb5\xab\x09\x2d\x88\x75\x7b\xaa\xe2\x5b\xea\x0b\xf6\xd6\x28\x9b\x81\x59\x8b\x91\x2a\x14\x1a\x9b\xa5\x26\x71\x99\xe5\x25\x2c\x72\xa8\x75\xd8\x2a\x84\xdc\xf1\x7b\xc0\xf7\x13\xba\xc0\x0b\x77\x1a\xa1\xd3\xa1\xf4\x49\x91\x8a\xb3\x26\xce\x99\x0a\x5c\xb4\xf2\xee\x03\x76\xcd\x90\x48\xe5\xce\x1d\xa8\xf7\xef\xc0\xea\x6e\x13\x63\x8f\x86\xca\xce\xb8\xae\xec\x74\xf1\x4d\xef\x86\x9a\x89\x64\x21\xd3\x5f\xfc\x0b\xf1\x91\xdc\x9c\xec\x3f\x19\x22\x14\x13\x19\xa0\x32\x98\x07\x52\xd5\x6c\xf3\x5d\x80\x0a\xdf\x57\x71\xb0\x44\x53\x42\x51\x2f\x6d\x2f\xa8\x5e\x4d\xce\x0f\xc2\xf7\x20\x6e\xad\x2b\xfb\x8f\xd0\x27\xf5\xf2\xca\x62\x26\xad\xa4\x97\xdc\x65\xbf\xe2\x33\x7e\x66\x4f\x98\x4d\xf0\x7a\x2c\x72\x53\x0e\x0c\x74\x2c\x18\x51\xa1\xde\x39\xd6\xfb\x02\x16\xe9\x5b\xe9\x79\xc7\xcd\xe8\xab\x80\xaa\xcf\xb4\xb5\x58\xbf\xec\x53\xf1\x0c\x24\xa5\xa6\x20\xa0\x56\xaa\x9b\xe3\xa0\xeb\xc2\x09\x8c\x5b\x50\x6d\x8f\x4c\x09\x54\x61\xc5\xb3\x32\x61\xa6\x77\xf0\x5f\x58\xd7\xfc\x9b\x8c\x46\xec\x74\x9d\xe3\xb9\x1b\x9e\xe9\x17\xaf\x7f\x7e\x44\x4d\x3e\x2a\xfa\xd7\xc5\x3b\x4a\x1c\xc3\x34\x24\x5c\xfb\x90\xa1\x31\x64\xe7\x80\x99\x74\x5c\xff\x21\x8f\xe1\x6b\x71\x97\x4f\xf8\xe4\x4b\x9c\x41\xef\x32\xcf\xbd\x49\x26\x45\x89\x93\x72\x30\xf4\x69\x97\x03\xc1\x41\x17\x80\x2b\x0e\x14\xd5\x98\x7c\xce\x6a\xe1\xad\x14\x21\xd7\x59\xe0\x3f\x7c\xae\x6f\x60\x38\x55\x5a\x25\xa4\x56\xa0\x93\xcb\x9b\x5e\xaf\xad\x13\xec\xab\x5a\x15\x4e\xf5\xd7\x09\xbd\x9c\x1e\x2f\xda\xb0\x46\xf0\xf8\xc3\x32\x63\x31\xe4\xa0\xba\x71\xf6\x35\xc6\x25\xc6\x08\x88\x57\x4f\x68\xe9\x2e\x58\x5f\x7e\xbe\xaf\xc6\x3a\x31\xb6\x7e\x52\xf6\xce\x92\x11\x21\x67\x6a\x4e\xcc\xd1\xfb\x2f\xc9\xa9\x90\xe4\x87\xe4\x59\x91\x71\x2a\x17\x6a\x7c\xa6\x51\x3c\x50\xb2\xbf\xbf\xee\x6c\x20\xc6\x12\xfc\xe2\x22\xdb\xa6\x46\xb0\x49\x47\x12\xc7\x50\xf1\x25\x36\x5e\x31\xd5\xe4\x7a\xd8\x21\x70\xe2\x4c\xb8\x16\x30\x06\x02\x36\xdf\x53\x8c\xeb\xd3\xcb\x25\x32\xac\xc0\x4a\x57\x3e\xa8\xb5\x99\x8d\x2f\x3a\xab\x04\xb7\x3a\xde\xe6\x1d\x79\xfb\xbe\x5e\x2b\x62\xe8\xcd\xc4\x2f\x73\xf9\xbc\xda\x1f\xd2\xb7\xd4\x86\x06\x45\xd3\xa6\xef\xb0\x5b\x0a\x4e\x4b\xb0\x5c\x88\x1a\xc6\xa6\xb4\xb7\xe7\x36\x2c\xa1\x83\x4a\xf0\x0d\xa2\x92\x14\x25\x99\x5a\xb0\xde\xcb\x42\x5f\x14\x99\x6f\x7f\xc0\x8f\x13\x9f\x14\x1c\x63\xfc\xc9\x70\xde\x61\xa3\x78\x8d\x00\xf1\xbe\x8b\x16\x5a\x5c\xf2\xbe\xc2\xee\x03\x3d\x29\x26\xff\x99\x0c\xab\xe6\x8f\x13\x26\xc6\xfe\xc7\xa1\x8b\x8b\xa3\x03\xf9\x0b\xf6\x23\x3f\x58\x02\x5b\x9f\x33\x7a\xab\x56\x7f\x0d\x76\x82\x85\x77\xb0\xf0\x71\xe9\x80\x36\x5b\x7f\xa3\x6d\x68\x91\xb8\x2f\x85\xc9\x70\x71\x1d\xf8\xef\x1e\xe8\x3b\x9d\x5c\x1b\x61\x8f\xfd\xfd\x0f\x42\xc7\x6f\xf5\xde\xe6\x4a\x95\x3d\x69\xe1\x77\x2f\xf7\x9c\x38\x31\xd3\x2f\x30\x60\x9b\x08\x98\xb8\x7b\x6b\xb4\xc7\xaf\xf7\xed\x41\xc4\x1d\x20\x1e\xe9\x2d\xb0\x6b\x33\x63\x31\x84\xbd\xf9\xa0\x95\x66\x15\xe7\x34\xd9\xc5\x97\xed\x88\x22\xf3\x45\x9d\x08\xe2\xf3\xc4\x10\xbd\x6f\x88\xdb\xe9\x7f\xcb\x36\x5a\xd6\x48\x77\x3d\xd2\xb0\xf4\xaf\x4d\xfa\xec\xfb\x78\x55\xe9\x2b\xe2\x7b\x85\x35\x46\x47\xd7\xd7\x7e\x4e\x7b\x2f\xcc\xfd\xf8\xf6\x3e\xc2\x3e\x38\xe5\x41\x9c\xc5\xad\x67\xb7\x2a\x6e\x9f\xb2\x2a\x76\xb4\x93\x0a\xf9\x97\xe8\x7c\x7d\x67\x10\xd0\xc9\xd5\x06\x4b\x0d\xae\x10\xd2\xa3\x50\x30\x2f\xc4\x12\xfc\xf7\xcd\xc6\x67\xb5\xb6\x8c\x14\x85\x01\xdb\x85\xb9\x0e\x6a\xae\x1d\x99\xa4\xd0\xa5\xe8\xb9\x64\xc5\x77\xb5\x3f\xfc\x3d\x4c\x87\xb6\x69\x0d\xa0\xf1\xfd\x1c\xd3\x71\x25\xfb\x35\x51\x1d\xb6\xa1\x9e\xd2\xae\x3e\xfe\xe0\x9b\x4d\xaf\x21\xb4\x4b\xa9\xaa\x07\x9c\x3c\xfd\x09\x1b\x89\x10\xa1\xe3\x63\x19\x23\x12\xff\x1c\x13\x51\x4a\xa3\x41\x96\xe3\x89\xbd\x52\x67\x35\xe9\xbe\x77\x7a\x5d\xca\x13\x34\xb1\x17\x5a\x11\x3f\xf2\x51\x63\x71\x71\x31\x49\x21\x4f\x81\x32\x3c\x5c\x76\xf5\x2f\x55\x87\x4d\x13\xaf\xdb\x01\xe1\x86\xd4\xae\xef\xb5\xb1\x3e\x14\xda\x01\xb4\xf9\xe0\x27\x27\xf3\x9f\x04\xda\x31\x50\x58\x23\x9e\x50\x94\x58\xc7\x23\x02\x5e\x59\x91\x27\x33\x2e\x06\x19\xae\x5c\x61\x43\xd1\x0c\x5c\x57\xdd\x02\xfe\x40\x7b\xf9\xf8\x0b\xfd\xe2\xf0\x1d\x0f\x4f\xf3\xc0\x86\x02\xc9\xd2\x80\x16\x61\x77\xf7\xea\xa3\x05\x3d\x8d\x82\x31\xd6\x23\xbd\x91\x41\xa1\xd5\x5b\x4f\x2b\x3e\x8e\x77\xb1\x1d\x37\x2f\x2f\x15\xca\x70\x48\xf5\x7b\x02\x8e\x32\xb4\xd4\xf3\x99\x48\x99\x1d\x87\x13\x20\xfb\x39\x8a\xcc\x17\xac\x0e\x41\x90\x1e\xcd\xa5\xed\xbe\xab\xd7\x3a\xca\xc3\x49\x2f\x2b\xbf\xb5\x44\x7c\xec\xfc\x4b\xfe\xdf\x42\x05\xcc\x17\x3c\x92\x61\xf5\x80\xd3\x3f\x28\x68\xed\x27\xc6\x62\x62\x69\x64\x20\xbf\x2b\x0d\x73\x53\x3f\xe7\x56\xc4\xb2\xd4\x91\x8d\x56\x7e\x06\x52\xb0\x67\x39\xa5\x79\x79\xb4\x19\xc1\x2a\x4b\x52\x91\xdd\xb1\x67\x02\x61\x25\xf5\x84\x36\x9b\x9f\x15\xe5\x59\x16\x0d\x5c\x03\xf6\x86\x90\x64\x37\x5c\xbf\x66\x58\xb9\x4a\x7b\xb0\xb4\xa6\x9d\x0d\x2a\xb1\x2c\x1b\xe6\xf0\x66\xd6\xfe\x98\x1b\x48\xfb\x2c\xe1\x60\x91\x25\x1d\xaf\x58\xdd\x2e\x17\xaf\xfe\x13\x98\x45\xcd\xec\x1b\xb2\x71\x2e\xbd\xaf\x5b\xf2\x85\x88\xab\x75\xad\xa6\x82\xae\xa8\x90\x37\xae\x70\xde\x12\xff\x99\x41\x88\x2e\x48\x23\xe0\xba\x5e\xaa\x6b\xd4\x68\x01\xb1\x91\x59\xfe\xea\x32\x76\x24\xf5\xa6\xee\x10\xcc\xd2\x16\xff\xf2\xfb\x09\xe2\xa1\x1c\x10\x4c\x19\xac\xf3\x31\xef\xb7\xc1\xbc\x67\xf5\xad\x9d\x1f\x06\xbd\x73\xa2\xd5\xde\x3f\x32\xac\x45\xd5\x37\x83\x4d\xc9\xc2\xe8\xf1\x4e\x59\x51\x68\xdb\x2b\x43\x91\x93\x3e\xf8\x9d\x6e\xe5\xca\xe0\x22\x16\xd7\xaf\xa6\x10\xde\xa7\x38\x9a\x00\x33\x32\x47\x87\x5b\x46\xf7\x92\xcc\x83\x18\x6a\xda\xf2\x7c\x5b\x38\xf4\x73\x52\x27\xca\x33\x72\x6b\xbf\x37\xea\x6a\x04\x86\x7e\x2a\xb9\x57\xa1\x97\x96\x29\x64\x91\xea\x82\x06\xc5\xb7\x75\x66\xc9\xa0\xcf\x9f\x57\x5d\x1a\x6b\x94\x85\x02\x95\x20\x38\xf3\x3c\x33\x30\x76\x8d\x4b\x15\xf8\xf6\xc6\x05\xd7\x23\xa7\x43\x6b\x84\xa9\x20\x43\x06\x3d\x33\xb4\x39\xdf\xfe\x33\x09\x2b\xa8\x16\x44\xf0\x9b\x36\x91\xad\x11\xe4\x99\x5e\xdd\xec\x1c\xc9\xb0\xe6\x63\x09\x96\xb1\xfc\x35\xfd\xa1\xf9\x65\xb3\xfd\xf8\x62\x8c\x50\xa3\xb0\xc6\xc2\x6f\x7c\x8c\x66\x06\x19\xf4\xe5\xa9\xa6\xeb\xc9\x15\x39\x49\x25\xfd\xbc\x17\x85\x57\x41\x11\x9c\x64\xbc\x03\x90\x85\x81\x7b\xbc\x10\x0a\x53\x48\x47\x1c\xa4\xb7\x97\x4c\x45\x83\x2b\xe4\x3b\x8a\x47\x3f\xd0\xf7\x9e\x8b\xce\x56\x5c\xda\x67\xdf\x92\xa2\x82\xdc\x5a\xc1\xe1\x8e\x57\xe9\xd9\x3c\x11\xec\x19\x20\xda\xaf\xc1\x0c\x67\x5d\xc1\x86\xef\x88\x44\x95\xe9\xb6\x3e\x7a\x26\x50\xae\xe6\x2d\x40\xd8\xc8\xf2\x3a\xbe\x18\xe9\xa8\x5a\xe4\x4b\xe2\xbc\x86\xa2\x70\x84\x9f\x08\xe2\x99\x9f\x42\x48\xc7\x9d\x97\x47\xd5\xa9\xa6\x88\x87\x76\x99\xa4\xaa\xfe\xf1\x85\xfa\x31\x04\xfb\x2a\x24\x3b\x36\xc7\x6e\xe2\xa9\xb7\xb4\x2b\x2c\x54\xd1\x55\x79\x5e\x67\x56\xe1\x41\x9c\x05\x7b\x6f\x57\xd4\xc6\x12\xbd\x19\x59\x49\x0d\xb1\xb2\xbf\xdb\xfb\x16\x5e\xa5\x87\x6e\x3c\x6f\x9c\x4e\x39\x81\xa3\x1b\xb1\xa9\x3b\xbd\xbe\x51\x39\x8c\xa3\xfd\xc8\xa4\xbe\x4e\x1b\x40\x45\x8f\x5a\x87\xa8\x0b\x83\x98\xfc\x9a\xcb\xc7\x75\xf4\x8b\xe3\xf6\x50\x5d\x81\xc1\x83\x6d\xb2\x96\x6f\xdd\x0d\xb1\x5b\x15\x2c\xba\x43\x55\x19\x42\xae\x6c\xfa\x09\xfc\x32\xea\x46\xd3\x0b\x7b\x6c\xd4\x53\xc1\x9c\xfa\x39\x74\xf2\x31\xc2\xf0\xe3\xca\x9e\x6e\x0a\xb8\x15\x29\xe6\xc7\x4c\x7c\x82\x0a\xcb\x2a\x76\xf9\xfb\x7d\x60\xbc\x60\xf1\x75\x7e\x5b\x47\x2e\xfe\x30\xc0\x9c\x28\x50\x52\x8b\xed\x71\x4a\x34\xd5\x5d\x1b\xb4\x1f\x99\x8b\xc8\x78\x80\x55\x7a\x2f\x55\xc8\x14\xd0\xba\xc2\xe0\x26\x31\xb9\xb0\x7b\x0f\xc2\x82\x8f\x22\xe7\xd2\x3b\xa0\xa8\x25\x18\x64\x75\xe3\xd8\x8b\x82\x45\x60\xdb\x3b\xde\xcb\x30\x9d\xb0\x53\xa6\x80\x1d\xe9\x15\xd2\x65\xd1\x10\xdc\x2a\x84\xab\x12\x52\xc9\x3d\x66\x3e\xa2\x92\x29\xf4\x5a\xff\x96\x09\x66\xb2\x20\xe8\x48\x5d\x45\x21\xbd\x56\x9b\xfa\x63\xac\x4b\x7a\x96\xdc\x53\x9d\x9a\x08\xff\xe2\xcb\x3c\x9c\x61\x56\x94\xe7\xf7\xe7\x2c\x67\xa2\x24\x86\x5d\x1b\x62\x14\xdf\xd7\xba\x71\xaa\x1d\x52\x36\x37\x13\x52\xf9\xd7\x87\x03\x9c\x8c\x20\x61\xc2\x0d\x7f\x32\xec\xf9\x83\xd3\xdd\x73\x82\x93\x31\x5e\xaa\x4f\x99\xe4\xd7\x3b\xb0\x20\xe9\x6a\x31\x97\xa4\xb0\x43\x57\xfe\xaa\x33\xb5\x7c\x44\x80\xf9\x55\x16\xab\x6f\xb5\xf1\xfe\x5f\x58\x8c\x0e\xd2\xfd\xf0\xaa\xa2\x88\x9c\x1c\x51\xa1\xde\xed\x7d\xe7\x22\xac\x76\x14\x76\xf2\xe8\x37\x56\xff\xa1\x51\x79\x18\x34\xec\x94\xe9\x64\xfb\xce\xe6\xa4\x03\xd7\x3d\x45\x68\x19\xa4\xb2\x5b\x4d\x85\xfd\xfe\xc8\xdb\x9b\xad\xda\x6b\xea\x2a\x76\xca\x79\xbf\xc6\xc6\x32\x33\x99\x17\x7b\x7e\x68\x6f\x2a\x6e\x3a\x7b\xc3\x46\x72\x67\x96\xe4\x4d\xf1\x1a\x62\x98\x1a\xb5\xea\x03\x9c\x2d\x49\x85\x0e\x99\x4d\x0c\x7e\x49\x4f\x05\xe7\x94\x47\x1e\xcc\x40\xd4\x2e\xcb\x6a\xcf\xe7\x58\x66\x18\x60\x39\x52\xa5\xb0\xbb\x7a\x93\xe7\x38\x55\x9e\xaa\xb1\x4f\xc2\x4d\x6d\x99\x4d\x85\x0b\x85\x32\xfb\x4a\x3f\xac\x3c\xe3\x55\x45\xd8\xe7\x51\xdd\xcb\x97\x74\xfe\x17\x9a\xed\x17\x74\x22\x27\x7d\x1c\xdc\x6b\x3b\x46\x83\x4e\xc7\x4a\xc8\x12\xdf\x6c\xe1\x58\xfb\xcc\xe8\x4a\x45\x10\x42\x8b\x4b\x8f\xde\x08\x04\x57\x03\x3e\x62\x56\xce\x93\x62\x5a\x02\x82\x2c\x61\x68\x23\x0b\x83\x41\xaf\xb4\x2c\x41\x93\x41\x49\x43\x24\xb7\xa3\x8d\xf6\xd5\x99\x42\x45\x0a\x82\x14\x32\xf4\x85\x6e\xb5\x77\x99\x1a\xa4\x4e\x89\x28\x06\xd8\xa5\x07\xf7\x1f\x71\x9a\x87\x31\x11\x85\x27\x3b\xaf\x06\x3e\x3d\xe7\xfd\xe9\x60\x9f\x4a\x4a\x11\x52\xbb\x54\x1a\x31\x76\x9e\xdd\x80\x6d\xfb\x02\xfb\x50\xb7\xcc\xfb\x1d\x9d\x05\x2d\x1c\x8b\x85\x32\xfb\x75\x15\xb5\xfa\x79\xf7\x3d\xf3\x08\xaa\xb0\x91\x4b\x2c\xef\xb9\x82\xf5\x55\x7e\x39\x16\x74\xe2\xbd\x25\x9b\xf3\xf7\x46\x0b\xc5\x7a\x91\xe9\xf7\x22\x9b\x1c\x27\xd9\x3a\xb8\x80\x46\x91\x06\xe8\x00\x51\x6b\xc4\xe4\x20\xfc\x91\x7a\xe3\xc5\x65\xfb\x40\x49\x98\xb0\xc7\xdb\x9a\x35\x67\x2f\x5b\x26\x10\xed\xd7\x94\x8e\xce\xa8\x3d\xf5\x8b\x8d\x42\x51\x0b\xe5\xb8\x8e\x71\x9c\x00\x21\xd3\xc9\xe1\x3c\x7c\x49\x1c\xbd\xe3\x00\x21\xb9\x0c\x59\x2d\xac\x7c\xf8\xa9\x82\x42\xeb\x19\xe3\x87\xc2\xd6\x7a\xd7\x47\xfb\x0d\x7f\xc5\x9f\xa8\x8d\x70\xcb\xec\x1e\x73\x06\x3e\xef\x1d\x29\x31\x08\x9e\xf9\x35\x1d\xab\x20\xdd\xdc\xc9\x26\x14\x9e\xe2\xbc\xef\xe5\x56\x8e\x95\x14\xc4\xc7\xfa\x11\x0d\xbc\x89\x7d\x8f\x2f\x7b\x36\x44\x13\x6f\x34\x57\x9b\x8c\xeb\xfe\x70\xb2\xa2\xf4\x12\xb7\x07\x21\x9e\x72\xe9\x50\x8e\x7f\xd9\x40\x71\x47\x36\x94\x8e\x14\xfe\x9e\x1a\xab\x65\x9a\x92\xf6\x50\xcb\x35\x17\x9c\x8e\x8f\x24\x74\x18\xa7\x7b\xac\xa6\x0c\x6c\xd7\x2d\xc1\xac\xc3\xbe\x71\x2b\xd2\xed\xf5\x2e\xa7\x5c\x5d\x79\x92\x34\x16\x1c\xb8\x98\x90\x15\xeb\x40\xaf\x43\xba\x50\x72\xd7\x97\xac\x2f\x01\x1e\xd2\x44\x71\xd3\xf2\x13\x85\xec\xbe\xef\x3e\x62\x7d\xfd\xfc\x0b\xf7\xb6\xf7\xf7\xc3\x86\xc2\x42\x7c\x06\xdb\x3a\x0b\x5a\x64\xec\x46\x3c\xc7\x85\x0f\xfa\xc0\x68\x87\x73\x0a\x51\xa2\x7d\x0d\xc1\x20\x06\x76\xfe\x25\x69\x16\x1e\x5e\x11\x6b\xe2\xfb\x26\x5a\xc3\xc9\x35\xce\xc9\xee\x7a\xec\x14\x99\x13\x15\xfc\xd8\xb3\xf7\x6d\xb7\x99\x19\xcb\xcf\xbd\xed\x8d\x77\x29\xdb\x5b\x1d\x77\x91\x8f\x8e\x1a\xb7\xa1\xde\x0b\x79\x32\xca\x21\x57\xcf\x57\x59\x5c\x33\xbd\x7b\xba\x7f\x2f\xfb\x13\xc2\xe7\x48\xc4\x52\x18\x3d\x8e\x05\x40\x1a\x01\x05\xc9\xb1\x10\x44\xaf\xf1\xee\xd4\xb7\x1f\xc3\xef\x64\xfe\x20\x32\x9b\x4a\x7d\xb8\xb9\xf1\x3c\x7e\x90\x56\xea\x8e\xce\xae\x82\xcf\x1c\xca\xd9\x32\xfb\xb5\x65\xb5\x37\x12\x9a\x9a\x24\x6f\x30\x12\x89\x21\x68\x74\x69\x5d\x7a\x1e\x7a\x86\x32\xbc\x67\x03\xe0\x92\x19\x8d\x62\x28\x86\x9e\x7c\xa4\x39\xf7\xbf\xde\xcb\x14\x5d\xa4\xf9\xb5\x90\xad\x48\xe3\x0e\x83\x5a\xc3\x7a\x49\x87\xaf\x4c\x45\xa1\x8d\xf0\x47\x77\xa9\xf8\xfb\x02\xa6\xf7\xa5\xec\xe4\x6f\xad\xed\x87\xcd\x77\x5f\x4c\xe7\xf4\x2e\xfb\x94\xef\x7e\x83\xde\xc1\xe1\x94\x79\x88\x63\xaa\xc3\x5d\x62\xfb\xeb\x7f\x92\x8c\x00\xda\x1f\x2a\x28\x18\xb0\x59\xa7\xa8\x6d\x17\xe1\xa4\x44\x9c\x11\xd2\xbd\xa4\x5d\x2b\xa2\xbd\xc2\x6b\xd2\x27\xb7\xdb\x4c\x2e\xe4\x0b\xdc\xda\x59\x8a\xf5\xf8\x43\x7c\x34\xb4\x54\xcf\x8b\x79\x70\xef\xf0\xf3\xbb\x0f\xf7\x48\x82\x96\x24\x95\x9a\x48\xe4\x26\xaf\x32\x00\x65\x5b\x37\xfe\x4f\x83\x7b\xf3\x81\x3a\x34\x53\x00\x9a\xc5\x09\x2d\x07\x6f\x02\x45\x0f\x5e\x80\x6f\x8e\x61\x4e\xfc\x45\xc8\x4f\x6d\xe7\x33\xdc\xe2\x95\x50\x89\x3c\x8e\xa1\x8b\xd6\x91\xb8\x80\x2d\xac\xf7\xd8\xb4\xb7\x6a\xdb\x01\x9d\xcc\x15\xbd\x1f\x42\x85\x5a\x15\x24\x07\xa6\x48\xba\xb8\x06\xdf\x2d\x6b\xee\x97\x16\xaf\xe5\x23\x55\x67\x08\x45\x3a\xd0\x9c\x7a\x24\xf0\xac\x30\xc7\x61\x66\xa4\xfe\xf7\xc5\xff\x77\xb5\x87\xe7\x62\x86\xf5\xad\xb3\xb8\x2f\xa0\x3d\x1d\xe4\xf2\xe2\xf2\xe8\x1a\x96\xf7\x1c\xf4\x10\x12\xd9\x20\x4f\x5b\xa8\x26\x7c\xcd\x78\x35\xba\x9e\xa1\xd7\xd1\x1b\x9e\x42\xb6\xa2\xf4\x8c\xd6\xa0\x40\xf0\xe9\xf0\xc6\x8b\x4b\xe9\x61\xf2\x53\xdb\x5e\xfe\x1c\xa7\xfb\x4c\x6b\xc0\x97\xf2\xf1\x2e\xc3\x2c\x11\x18\xe9\x69\x59\xc4\x2b\x67\x7b\xe4\x4f\x3f\x52\x91\xd4\x3d\x14\x1a\x00\x50\x64\xbe\x8e\x0f\x69\xce\x3c\x44\x4e\xaf\x01\x84\x8b\xd1\xf3\xb9\x6a\xc3\x34\x44\xa6\x64\x29\xa7\xf3\xeb\xb5\x3e\x65\x92\x71\x5f\x86\x75\xa0\xb4\x07\xac\x4d\xc1\xf4\xea\xe8\xbf\x8c\x8b\xb6\x9a\xff\xc8\x76\xa9\xaf\x24\x7a\xb0\x58\x17\x8e\x9a\x3f\xa9\x0c\xf8\xae\x27\x87\xb2\xf4\x79\x6b\x9b\x13\xb1\x52\x2b\x08\x8e\xa9\x27\x95\x79\x77\xa1\x65\xff\x92\xc1\xa7\x9f\x26\x9f\x39\x63\xf0\x7e\x78\x6b\x4c\x2c\x63\x52\x3a\x37\xf6\x8f\xa6\xb5\xa4\x23\xa3\x45\xe7\x03\x87\xf0\x9d\x45\xd3\xb2\xd6\x67\x54\x8b\xd1\xbe\xab\xd8\xf5\x21\xf5\x20\x3c\x23\xae\x1d\xde\x44\x16\xf5\x30\xe6\xd3\x23\xf1\x55\xad\x6b\x00\x61\x6e\x6f\xb6\xea\x9d\x65\x3a\xe2\xad\x4c\xd9\x32\x7d\x2f\x9a\x39\xc1\xd7\x53\x76\xbf\x66\x31\xaf\x6a\x31\xe2\xcd\x03\xce\xbf\x2e\x06\xaf\x8b\xcb\xc7\x53\x19\x88\x4e\x94\x51\xc6\x31\x68\x53\x7e\x18\xb8\x20\x65\xd4\x57\xef\x00\x6d\xa8\xec\xca\xb5\x1b\xa9\xf1\x6a\x03\xb2\x8d\x03\xc5\x5f\x76\xad\x2a\x75\x18\x91\x46\x1e\x1a\x91\x16\x2e\x6d\xd4\xc3\xe5\xf9\x1e\xff\x31\x4e\x20\x84\x1b\x89\x7b\x4e\x76\x34\x18\x89\xd6\x56\xec\x8d\x4a\xcb\xef\xfd\xd7\xfe\x9e\xb8\xf0\x5c\x43\x9e\xdb\xf4\xfe\xc1\x38\x87\xc6\x82\xdd\xb0\x95\xac\xb2\xf5\xa7\x08\x2b\xd3\xa7\x1c\x8f\x7f\xe3\xe3\x9b\x2f\xbd\x74\xcf\x19\x21\x8a\x28\x8a\x15\x00\x5c\x83\x40\xa7\x34\x8c\x1e\xc1\xde\xfd\xb2\xec\x3e\x93\x38\xfd\xb5\x95\x8b\xd7\x2c\xe9\x5b\x56\xa6\xf1\x7b\x3c\xb9\xf5\x93\xe0\xf1\x07\xb3\x98\x33\x9f\xbf\xd8\xd6\xf8\x07\xba\xdf\x2e\xd2\xc7\x84\x94\xa8\x86\xd5\x84\x8e\xa9\xac\x5d\x01\x5c\x28\x22\x2f\xfd\xda\x2d\x39\xad\x02\xb8\xd5\x85\xe3\x38\x4f\x51\xc2\x1d\x06\xb5\xc3\x9c\x64\xc5\x70\x27\x81\xb3\x91\xb9\xf7\x51\x42\xae\x69\xb7\x14\x8b\xce\x7a\x97\xde\x14\xb6\x8e\xdd\x24\x9d\xf9\x0d\x7e\xd9\x60\x3b\xfa\xe3\x4a\x08\x1f\x82\x4b\xec\x8b\xe7\x12\x20\xaa\xf4\x54\xf0\x54\x54\x3f\x81\x67\x91\x58\x71\x34\xbf\x26\xcb\x51\x4a\xba\xd0\x8b\xac\x37\x0c\x9a\xdd\x50\xa6\xf2\x05\xbc\x7f\xd4\x74\xe4\xb6\xec\x2f\x58\x55\x46\x75\x67\xb5\x4c\x7b\xf5\x0e\x45\x2c\x6f\xe3\x6a\x58\xd0\xeb\x9c\xf7\x76\xa8\x45\x36\x8e\x2f\x8f\x34\x6f\x2c\x1f\xc2\xc8\x90\xb3\x78\xfe\x1c\xb1\x64\x24\x6e\x93\x8e\x0e\xec\x4e\x17\x30\x44\x07\x89\xbf\xe6\xbc\xe4\x3f\xda\xf3\x23\xb3\xa4\x23\xc2\x4f\x84\xd8\xfb\xc2\x58\xa9\x82\x96\xeb\x9e\xd1\xc4\x42\x2d\x9d\x41\x16\x69\x1f\x13\x71\xea\xcf\x22\xbb\x43\x50\x5a\xc5\x62\x4f\x58\x2c\xb0\xe2\x28\x74\xd1\x8d\x62\xe0\x04\x4e\xb1\x8a\x2d\xdc\xae\x00\x21\xbb\x6d\xcd\x36\x1c\xc2\xdf\x10\xdd\x8f\x5d\xd7\x05\x18\xd4\x1a\xfb\x94\x71\xc6\x5f\x07\x16\x7e\x7c\x5b\x18\x15\xdf\x78\x36\x83\x1d\x99\xde\xcf\x30\x93\x1d\x33\x4e\xf9\x4a\x47\x85\xc0\x42\x86\x77\xb1\x03\x53\x74\x5c\x28\x62\x43\x85\x66\x1d\xbc\x1e\x25\x51\x09\x39\x17\xb9\x1e\xd3\x0e\x12\xd5\x01\x30\x50\x5d\xab\x89\x49\x69\x85\xcb\x0b\xf7\x56\x17\xcb\xcf\x0f\x42\x1b\x1c\xa4\xaf\xeb\x25\x65\xc2\x1c\x6a\x88\x6b\xf3\x49\x13\x57\xce\xdf\x53\x8b\x1c\x20\xe4\x45\xd4\xf4\xbd\xcb\x85\x5a\x93\x4d\xb4\x98\xe1\xa1\x91\x1d\xba\x09\xc4\x17\x2b\x13\x92\x6a\xf9\x53\xbf\xd9\x0d\xe5\xe7\x72\x64\x16\xe9\x1e\x5b\x3f\x32\x02\xaf\x8e\xe3\x86\x4e\x47\x33\xba\xb6\x9c\xf7\x6f\xf0\x56\xa9\xb4\x1d\xd0\xb9\xe1\x12\x06\x2e\xc2\x7f\x6c\x52\x00\x0d\xab\x94\xb4\x4c\x1c\x90\xe1\xad\xc3\x70\x70\xcc\x14\x99\x0a\x1f\xd7\xf5\xd3\x7a\xb8\xf3\xa7\x9a\x11\x18\xfa\x16\x3a\x42\xb8\x4e\x89\xa5\x55\xfb\xd2\xe3\x23\xb9\x20\xe6\xac\xcb\xe3\x0f\xa1\x75\x8c\x09\x61\x3c\xb9\xa8\xff\x94\x85\xe8\xa4\x16\x15\x73\x8b\x64\x1b\x71\x13\xac\xa2\xce\xe0\x48\xf1\x10\x82\x40\xf4\x16\x92\x01\x8f\xe7\x33\x26\xea\x94\x0d\x22\x11\xc5\xa5\xf8\x1c\x28\xf1\x54\x2c\xaa\xbd\xad\xf1\x6c\xdd\xf6\xf4\x72\x4f\xfe\x8f\xb7\x7e\xb9\xc6\x53\xe6\xcb\xa8\x1e\x4e\x26\xa2\xf1\xe2\x55\x18\x03\xde\xf9\x03\xe3\x39\xa5\x36\x3b\x0d\xff\x8d\xb0\x42\x9f\xb1\xbc\xbf\x71\x99\x5f\x9e\xa8\x90\x9c\x34\xd9\x47\xd9\x99\x59\xfc\xc3\x95\xbc\x72\xc2\x25\x05\xd0\xcd\x8c\x36\xe8\x36\x66\x84\x47\xb9\x70\x1d\x3b\xbf\xf6\x9b\x99\x04\xfc\x42\x7b\xb7\xd9\x45\x51\x65\x67\x27\xb4\xe0\x64\x83\xb4\x80\x6a\x27\x0c\x6c\xa8\x40\x93\x0f\x00\x75\xa8\xf1\x0e\xe7\xc8\x99\x25\x08\x3e\x73\xe7\x7d\x18\x41\x05\x73\xea\xdf\x79\x89\x9e\xba\x83\xc7\xd7\x8f\x45\x66\xfb\x82\x6b\x4a\xc6\xf1\x1f\x6a\x42\x77\x1a\x07\x86\xdc\x7f\x6b\x87\xa7\xb7\x52\x47\x61\x21\x83\x97\x84\x7d\xa2\xa3\x1b\xc2\xd2\x12\x0d\xc5\xc7\xd8\x53\x86\x90\x3f\x8c\xbb\xde\x9b\x4b\x49\x9e\x0e\xee\x5a\x00\xd0\x02\x5c\xd7\x01\x49\x30\x34\x4f\x5c\x88\xda\x52\x86\x41\xbc\x60\xc4\x73\x6c\x90\x6e\x56\x81\x8b\xd3\xdf\x12\x26\x67\x7c\x99\x60\x73\xdc\x2c\xce\xfa\x6c\xfa\x4a\x73\x80\xa0\xd1\xc8\xd9\x13\x0d\xe5\x40\x2e\x41\x3a\x88\x79\x7e\x88\x9c\x92\x73\x4b\x8b\x74\x4b\x03\xac\x07\xe2\x93\xc2\xf9\x44\xbd\x61\x40\xb6\x1c\xca\xa6\x3d\xbb\x31\xca\xb3\xfb\xf2\xc7\xe8\xc5\xbc\x97\xae\x33\xdf\x53\x96\x4b\x63\x31\x92\x44\x30\xc2\xcc\x0d\x86\x84\xe2\x63\x2a\xbe\x76\xba\x3f\x0c\x01\xe3\x53\xa3\x52\x91\xcb\xd2\x2b\x38\xb3\xb9\xee\x6f\x6e\xcd\x54\x14\xbe\x32\xa6\x2d\xa6\x93\xd4\x03\xee\xad\x7f\xf2\xc6\xbc\xbe\xd9\xbf\xff\x34\x34\xdc\x15\x72\xed\x19\xd5\xe8\x72\x41\x6d\x57\xb0\xcf\x60\x5b\x1f\x14\x17\x8c\x3b\xfe\x76\xd5\xf9\x98\xb8\x76\xcc\x9d\xa8\x1a\x02\xa8\x26\x0a\xe2\xa8\x83\x2e\x7e\x51\x6a\x36\x88\x78\x26\x6d\xd8\xdb\x1a\xe2\x03\xe7\xdf\x74\x27\xbc\x6e\x50\x35\x37\x7d\xea\xf7\xc0\x65\xb1\xbb\xdb\xea\xe2\xc9\x03\x97\x5a\x15\xbb\xf1\x2b\xbb\xcc\x9e\x87\xae\x08\x0f\x87\x3a\xbf\x28\x80\xfb\x9c\xfc\x5a\x91\x66\x2a\xdc\x2c\x0a\xee\xfb\x09\x9e\xc2\x02\x9c\x75\x81\x0e\xcb\x4a\x3a\x02\x42\x79\xa2\xd6\xd5\x55\xc2\x65\xbc\xdf\xea\x99\x95\x21\xf5\x43\xf6\x96\xf4\xf6\x16\x83\x0d\xde\x45\xd9\x4d\x2c\x88\xce\x72\x1e\xee\x70\x1e\x31\xea\x5d\x32\xaa\x45\x81\x29\xd6\x66\xa9\x6a\x04\xc3\x9e\x1e\x57\x03\x48\x1d\xb9\x89\x31\xec\xa6\x40\xe1\xf2\x4b\x92\xf5\x50\x46\x77\xa8\x6d\x1c\x6c\x60\x61\x74\x67\x1f\xb3\x38\x37\x7f\xca\x76\xdc\x9c\xc7\x37\xba\x18\x6b\xb1\x8a\x55\x0a\x6a\xbc\x54\x68\xde\x23\x87\xc6\x38\x48\xc0\xc3\x4e\x20\x21\x9a\x12\x86\x5f\x0b\x45\xa0\x27\x54\xf7\x87\x2d\xe5\x91\x8d\x59\x2d\xbb\x31\xfb\x37\xc5\xbc\x3a\x6c\x58\x82\x9c\xc5\x5d\x3d\x27\x18\x28\xcd\xa8\x24\xfa\x17\x6b\x4b\x03\x77\x2e\x4d\xd6\x63\xd3\x30\xfb\x5f\xa3\x4a\x0a\x11\x9f\x1d\x8c\x42\xcf\x6c\x48\x64\x2a\x86\x10\x3a\x64\x2a\xc7\x10\x41\x51\x14\xd6\x62\x62\xc4\x62\x8f\x78\x73\xb1\xe1\xcf\x7c\x31\x06\x51\xdb\x72\x2a\xbc\x92\xa8\xe7\xb5\xb0\x33\xb4\xc1\x79\x8f\xcc\x28\x77\xc1\xbc\x14\x4b\xb3\xdf\x71\x3f\x3e\x4f\xb0\x26\xe4\x0f\x5d\x02\x64\x94\x7a\xaa\x07\xd4\xaf\x93\xa1\xa9\x48\xf4\x69\xb0\xd5\x9c\xa3\x15\x16\x40\x64\xc2\x69\x80\xb5\x57\x9a\xf9\x12\x4c\xb0\xc6\x8a\xfc\x88\x28\x9e\xc3\x09\x13\xed\x50\x8b\x40\x3f\xb2\xa2\x25\x71\x17\xf1\xfd\x85\xab\x95\x27\x5b\x58\xef\xd1\x29\x6f\x95\xc5\x79\x5c\x4d\x14\x09\x05\xbb\x76\xc6\xfc\x72\x65\x43\xd3\x8a\x14\x53\x00\xa5\x82\xc7\x5e\xcb\xb8\x1a\xf8\xfc\x40\xfe\x2a\xbf\x33\x07\x66\x7d\xaf\x8a\x64\x52\xfe\xf4\xe6\xeb\xb9\xc0\xbf\xc0\x97\x9a\xf6\xce\x60\xf7\x97\x63\xde\xf7\xcc\xd0\xdf\x07\xde\x7b\xbd\xce\x6d\xd0\x46\x1f\xe0\xdc\x2f\x70\xce\xa7\x09\x2d\x7b\xcc\x6c\x39\x8e\x56\xea\x82\x64\xf9\xbd\x64\x3d\x69\x3d\x95\x6f\x90\xaf\xe5\x9e\x4a\x9b\xbb\x62\x8e\x1e\xe1\x2f\x1a\xe5\x09\x22\xda\x29\xf7\xcc\x98\x3b\x02\x23\xab\x8e\x5a\x39\x0b\x04\x11\xea\x92\x38\x06\x42\x2f\x0a\x4d\x6a\xe4\x45\xa1\x57\x8c\x68\x4a\x5d\xd7\xe5\x5e\x9c\x6e\x4f\xad\x24\x28\x08\xff\x81\x5d\xd4\x5e\xe5\x70\xd6\x30\x4d\x15\x0a\x33\x89\xf7\x48\x32\x12\x69\xfc\x3a\xf2\x7c\x39\x1c\x1c\x3e\x7e\xc1\x6d\x99\xac\x87\x69\x7f\x50\x40\x3e\x96\x11\xf2\xf9\x70\xd4\x79\x8f\xd0\xa0\x83\xf8\x22\xd5\xa4\x2f\x04\x59\x15\x67\xa5\xff\x64\xd7\x89\xd9\xbb\x11\x15\x83\xab\x22\x11\x4f\xc3\x1b\x62\x34\x3d\xef\x72\x93\xb5\x96\x8f\x0f\x05\x0d\xd9\x6f\x40\x82\x28\x35\xa7\xdd\x86\x88\xbb\xf3\x49\x47\xe1\x59\xfd\x54\xf5\x24\xf9\x23\xea\xa8\xb1\x14\x0c\x09\x9f\x58\x0a\xeb\x29\x96\xb3\xe8\x15\x49\x16\xd3\x46\xe8\xaf\xd2\x01\x87\xd8\x85\xd1\x2f\x67\xbb\x41\xf8\xe5\x2d\xda\xee\xd9\xf3\x2e\x97\x58\xb5\xb6\xf6\xac\x96\xfd\x88\x16\xb3\xf6\xb3\xa7\x43\x11\x7f\xa7\xed\x88\x2a\xc3\xcb\x0e\x6b\x2c\xcc\xd5\x34\x3b\x6b\x14\x5c\x60\xb4\x23\x6a\xeb\x8d\x20\xeb\xcd\x9b\x10\x7e\xc8\x65\x17\x68\xe9\x03\x2e\x52\xbb\x58\xeb\xa7\xc5\x7a\x9b\xa8\x9f\xbf\x38\xe6\x6f\x31\x71\x8e\x92\x7f\xe2\xf2\x37\x3e\xd9\x0d\x16\x53\x81\xb1\xe2\xff\x74\xb1\x95\x76\x32\x33\x81\xc1\x0d\x34\xf7\x4b\xbb\xfb\x5f\x1a\xde\x67\x71\x40\xba\xf0\xe3\x3d\xa5\x44\x17\x0b\x25\xeb\x1c\x1c\x3e\x46\x7c\x66\x6b\x95\xb5\x5e\x5c\xc7\x8a\xeb\x52\x51\x91\x8a\x86\x61\xf7\xa6\xc5\x17\x08\x31\x0d\xc5\x6a\x25\x5c\xb1\xd3\xea\x3d\x12\xc3\xcb\x85\xbc\x9b\xa1\xbd\x66\x95\x58\xc9\x34\x7d\xb9\x25\xbd\xb9\xce\xee\xe5\x06\xae\x2f\xc6\x16\x66\xa9\x88\xc3\x76\x7a\xf6\x6c\x97\x3d\xd0\x66\xda\xc9\xc6\x83\xab\x71\x10\x57\x90\x54\x9d\x68\xe4\x8e\x3d\xa6\xae\xf1\xc1\x16\x2e\xf5\xd7\x53\x87\xd7\x48\xe6\x07\xc1\x1b\x98\x88\xd3\x3e\x36\xea\x29\x36\xd7\x4c\x8c\xa3\xc3\xe6\xd5\x22\x5e\x85\xc5\xd5\xaa\xa4\xd0\x17\x47\xcd\x1f\x23\xe6\x1a\x6b\xdc\x0e\x22\xb6\x93\x3d\xfb\x63\xec\x8d\x5f\x08\xbf\x61\x68\x5d\xef\x44\x6a\xfc\x4b\x57\x48\x0e\x33\xec\x3d\x15\x97\xbb\xff\xcd\x02\xb4\x39\xbe\x35\x56\x78\x52\x01\x82\xdf\x73\xd5\x31\x45\xfb\x87\x6f\x1b\xbe\x4b\xde\x36\xe4\x8b\x77\x8b\x8f\xdc\xd7\x24\x1f\x58\x58\x4c\x52\x48\x55\xb6\xfb\xf4\xe5\x9f\x06\xb8\x33\x62\x38\x15\xd7\x84\x00\x27\x31\x52\xa5\x3a\xcc\xe9\x94\x9a\x3f\xf9\x1a\x2f\xe5\xf5\x0d\xaa\xf3\x38\xb4\xec\xdb\xf1\xe5\x80\xca\xda\x2a\x68\x93\xec\x0f\x86\x5e\x87\x03\x33\xf6\x2b\x28\x3c\xb6\x92\x12\x21\x8c\xd1\x22\x5d\x7e\x98\x64\x3b\x76\x5d\x4f\xe5\x8d\x2f\x4f\x88\x2c\xd1\x8c\x53\x6b\x6b\x2e\xf8\xbc\x1f\x11\xf2\x19\xff\xbb\xb9\xa9\x7d\xc8\x48\x57\xd5\x64\x7c\x8f\xf3\xfd\x12\xcb\xf4\x68\xdd\xe8\x36\x4b\x5e\x96\xe3\x42\x12\x84\x1a\x75\x4a\x0b\x39\xa3\xf3\x2d\x36\x3f\x0f\xe7\xd6\x40\x7c\x2e\x12\x38\xd1\xa8\x80\xf5\xc0\xe5\xb2\xa8\xe0\x09\xa5\xe8\x9b\xab\x74\xc0\xa5\x25\xa7\x40\xdd\xfb\x11\x4f\x92\x99\xdf\xa1\x87\x1c\x3f\x07\xa3\xae\xf3\x94\xa6\x29\xe6\x15\x9d\x61\xd6\xf2\x62\xd2\xef\xbc\x2f\x9d\x07\xd8\xbf\x47\x2c\x16\x68\xc7\xb5\x8b\xb9\xb1\xa8\x41\xb5\x17\xd7\x80\x79\x11\x30\x9e\x0a\xe9\x70\x1e\x1e\xae\x6b\xb6\xb3\x5a\xcf\x6f\xfd\xed\x36\x1a\xa7\xb1\x2b\x90\xf0\xc7\x0a\x72\x1f\x76\x67\x8d\x28\xea\x15\x05\xe2\x3a\x5b\x08\xda\xdd\xb5\xe4\x2c\x23\x56\xbf\xe4\x26\x89\x61\x8a\x6e\x5c\x2d\x50\xdc\xa0\x58\x89\x57\xd5\xc5\xb9\xbd\x34\x54\xb6\x15\x42\x18\x4d\x2c\x2c\xd2\xf6\xc2\xee\x2d\x71\x4e\xf5\x71\xc2\xad\x44\x62\x5c\x54\x1d\x53\x0f\x39\x08\x83\x8f\x0e\x0e\x64\x6f\x53\x99\xde\xc4\x17\xf2\x21\xd2\x6b\x92\x48\x8a\x71\x2f\x5f\x28\x43\xd3\xa3\x22\x0b\xb2\xfe\x7c\x04\x50\x03\x04\xa5\x61\x07\x0a\xe4\xac\xb3\x76\x0e\x09\x43\x18\x31\xc4\x0c\x0f\xa5\x52\xaa\xe5\x38\x15\xe2\x8a\x56\x21\x56\xd6\x81\xfe\xad\x98\x67\x9c\x51\x9f\x6d\x2f\x4a\xcb\xc7\x95\x2a\xa9\xc3\xeb\x26\xc5\xad\x66\xb0\x85\x2b\x33\x3f\xd6\xc5\x6b\xa2\x7a\x1a\x3e\xe8\x7a\xc3\x7d\xd7\x1c\xb3\xc9\xa0\xef\xa3\x6e\xd1\x7c\xd0\xdf\xdd\xa8\x8a\x1d\x87\x25\x7e\xa1\xea\x92\x49\x0f\x1b\xa5\x1d\x6e\x30\x01\xee\xda\x92\x88\xf4\x85\xb7\x81\x7e\x67\x19\x6d\xc4\x86\x37\x46\xb3\xe2\x78\xde\x41\x44\x4c\x59\x72\xf7\x98\xe3\x3e\x0d\x48\x74\xf3\xe7\xa0\x7b\xca\x14\xae\xdb\xaa\x26\xca\x89\xd1\x02\xbc\xf9\xf4\x42\x33\xf3\x3c\xae\x03\x3f\x90\x60\xe0\x6b\xbb\x55\x04\x41\x45\xee\xad\xe2\x72\xef\xe4\x41\x1f\x27\xae\x68\x2a\x29\xd2\xf5\x86\x87\x28\xbf\x9d\xc1\x4a\xb0\xb3\x91\x73\xf5\x9e\x62\x59\x88\xa3\x6e\xb0\x3a\x25\x2d\xf4\x11\xde\x0d\x8f\x4e\xfa\xfd\x77\xbb\x7e\x2c\x7c\x5c\xa2\x7f\x31\x1f\x75\x7c\x9e\xbe\x3e\xa4\x10\xec\xe6\x19\x6c\x3b\x12\xdb\xbb\x5c\xb8\xc5\xf9\x5c\x7d\xcd\x47\xed\x76\xd6\xae\x80\xf2\xd3\x18\x17\xc3\x84\x34\x15\x92\x0b\x94\xe3\x50\xce\xaf\xb0\x8a\xa3\xce\xd0\xc8\x98\xaa\xd3\xfb\x4b\x9f\x4b\xa5\x94\x84\xc7\xcc\x51\x11\x3b\x35\x79\x51\x42\x18\xc9\x6d\x81\x84\xff\x14\xb5\xbd\x43\xf7\x8b\xe4\xd6\xc1\x4f\x02\xad\x15\xd1\x5c\x2d\x50\x50\x0e\x2c\x2c\xea\xcc\xe3\x94\x1f\x0b\x91\xce\x54\xa6\xbf\x2c\xb3\x62\xfe\xf8\xac\xb3\x59\x60\x58\x98\xb1\xb0\x9b\x16\xc9\x70\x5f\xab\x0e\xab\x36\x63\xbd\xdd\x8d\xaa\x04\xfa\x11\x27\x0a\x94\xe2\xf5\xb8\xf0\x49\x10\xf7\x18\xc8\xf1\xe8\x93\x57\x1d\xbb\x2c\xf9\xd7\x94\xf6\x38\x83\xf3\xbc\x8f\xda\xbf\x96\xbb\x65\x4f\xbf\x89\x90\x9f\x8a\x0b\x74\xfd\x4d\x75\xde\x7f\x5e\xba\xab\xc0\x59\x9b\x81\xb8\x92\xf0\x54\x74\x84\x74\x50\x92\xea\x6f\x96\x8a\x7a\x69\xa9\xb4\xe1\xc9\x63\x3e\xb1\xdf\x6f\xf0\x9a\x50\x36\x54\x82\x44\xb1\x1f\xb2\x96\xd3\x9c\x53\x0e\x17\x42\x94\x39\xaa\xeb\x75\x64\xf9\xed\x41\x9b\x46\x47\x1b\xe2\xb8\x94\x2a\x31\x83\xc8\x3d\xe3\x6d\x4f\x96\xd6\x35\x52\xfe\xfe\xca\x46\x7c\xe4\x52\x6c\xff\xc0\x82\xbd\xa1\x8d\x43\x54\x93\x49\xd4\xc6\x61\xc6\xc5\xb8\x00\x5e\x89\xfc\x6b\xca\x45\x42\x33\xd7\x8d\x46\x3c\x08\x75\xc0\x02\xa1\xd5\x13\x70\x75\x64\x80\xe9\x2a\xc9\x18\x50\x29\x40\xd4\x05\x0c\xc8\x50\xd4\x44\xc7\x10\xa9\x7b\x66\xa1\x35\xcc\xd1\x49\x16\x40\x47\x06\xbe\xb9\x9f\x20\xee\x3d\x30\x86\xd8\x33\xde\x46\x1b\xb0\x4d\xe0\xc6\xc1\x86\xda\x01\x92\xad\x96\xd2\xd3\xa3\x74\x86\x19\x4b\xf6\xba\x36\xa9\xf2\xcf\xa8\x22\xd1\xa7\x9c\x16\x18\x96\xf7\x4b\x02\x6b\x04\xb2\xe8\x22\xf7\xbb\x1d\x75\xd7\xc9\x61\x94\x0a\x69\x37\x8d\x2d\xa8\x9e\x85\x55\x95\x8a\x95\xd2\x78\x18\x3b\x0b\xbe\x06\x24\xd6\xe0\x00\xf4\x85\x64\x9d\x85\x79\x47\x66\x8a\xbc\x4d\x9e\x50\x67\x7d\x7e\x7d\x75\x56\x7f\xcc\xd2\x50\x7d\x14\xd5\xb7\x87\x11\xa1\xb6\xb7\x41\x71\x42\xc0\xe8\x08\x29\xe7\xe3\xfb\xc8\x28\x69\x62\xa7\x76\x4a\x84\x4b\x5a\x1c\x5a\xad\xed\x94\xd7\x25\xea\x70\x35\xe9\xc8\x67\xe6\xd7\x34\x23\xf2\x1a\x25\xa9\x52\x8f\xe4\x72\xec\x44\x0f\x01\x27\x7c\xe8\x1b\x6f\x76\xec\xfc\xeb\x66\x1d\x34\xd2\x33\x94\x79\xda\x9f\xc4\x18\xba\xb7\xde\xa6\x5f\x60\x2a\xf8\x90\xcf\xb8\x09\x29\x3f\x54\xd2\x41\xc1\xe2\x88\x8e\x2d\xe9\x83\x66\x18\xf0\xd4\xc2\x25\x97\xa5\x9e\x04\x79\x2a\x78\x20\x42\x3c\x3f\x05\x5d\x1d\x66\x58\xc7\x4c\xd3\xff\x25\x12\x68\x54\xb4\x52\xe3\x64\x97\x23\x18\xef\x24\x44\x7a\x39\x2b\x01\x4a\x6d\xc4\x07\x40\xa2\x07\xad\x01\xfa\x90\x8b\xb0\xe7\x1e\xe4\x4c\xca\xdf\x5e\x4b\xef\x53\xc6\xaa\xac\x42\xbd\x95\x72\xa5\x60\xff\xfc\x70\xaf\xb6\xb4\xeb\xfa\x55\x0c\x3a\xfd\x00\x87\xe3\xa4\x9b\xca\x4a\xed\x4b\x50\xe7\x82\xb2\x17\x40\x0c\x9f\xcf\xbe\x07\x6b\x3b\x6b\xfd\x98\xfe\x7b\x3e\x30\x3a\xdb\x9e\x59\x72\x36\x5a\xaa\xb1\xf4\x46\xe8\x61\x82\xbc\xce\x5d\x5a\xe1\x00\xd9\x71\x39\x0a\x5f\xf9\x35\xf3\x64\xa7\x5f\x19\xb3\x1b\x1a\x8b\x84\xbd\xc5\x9c\xf9\x2b\xd9\x0d\x4f\xb6\xac\xfe\x98\xab\xc7\x93\x45\x9f\x5d\x1a\xd0\xfa\xa5\x64\xe3\x1f\x76\x60\xf1\xf2\x3a\xb6\x4b\x89\x30\xdc\xf6\x9f\x49\x92\xb0\xd3\x5b\x4b\xfe\xa9\xcb\x60\xc9\x56\x0e\xc3\x9c\x42\xb4\x7f\xc7\x79\x5e\x3e\xaa\x91\x76\xfc\xe6\x31\x96\x17\x4f\xf8\x11\xf5\xed\x23\x75\x0e\x9c\x2b\xe4\xe1\xbf\x79\xeb\xdd\x16\x30\x90\xbc\xef\x48\x38\x7a\xb4\xf6\xd7\xff\x77\x03\xe2\x7d\xd3\xf7\x60\xbe\x64\x03\xc7\xd7\x0c\xbe\xe7\x91\x39\xfe\x40\x82\x93\xbd\x04\xdf\xd9\x7f\x8f\x86\x88\x85\xca\x8f\x85\x10\xf5\x99\x4d\x29\x4c\xc7\xf5\xed\x7c\xdf\x7e\xf6\xc9\xbf\x25\xc3\x6e\x4f\x55\x3b\x59\x93\x88\xde\x88\xdb\xc0\x66\x23\xb3\xeb\x99\x67\xaa\x29\x49\xd1\x45\x6b\xb9\x07\xc9\xff\xf9\xef\xd8\xc0\x82\xfd\xb0\x55\xeb\x92\x92\xdd\xe5\x69\xd0\x67\xfd\xf3\x70\x3b\x22\x9e\x12\xd1\xf3\xc3\xe5\xee\x92\x38\x14\x42\xab\xc7\xb2\x8a\x95\x1d\x6c\xca\xf9\xf8\x3e\x94\xa0\x82\xd9\x19\xdb\xef\x27\xfe\x2e\xe5\x23\x44\xf7\x8f\x4b\x91\x95\xf6\x74\xa7\x90\x24\xb8\xc0\x70\x09\x4d\xbf\x9c\xb5\x5f\x42\xba\x61\x1e\xed\x95\x6e\xf7\x93\xfd\xc9\x17\x6b\xe7\x19\xb0\x1e\x74\x9d\x61\xa7\xc2\x1d\x41\x7b\xf3\xf5\xe2\x1b\xf0\x6c\x39\xf2\xa2\xd8\x1d\x74\xd9\x0c\x7a\x6d\xed\xaf\x2c\x47\x59\x77\x97\xed\x64\xd4\xdd\x29\x1b\x82\xc1\x7b\xd9\x52\xe3\xed\xe0\xab\x45\xd3\x32\x07\x2f\xbe\x3d\xf3\x4a\x01\x7c\x66\x51\xf0\xb0\x03\x04\x11\x0d\xf7\x75\x7c\x08\x41\xa0\xb9\xcb\xc9\x90\x67\xbb\x41\xcf\xb7\x9a\x13\x72\x60\xd6\xc2\x1f\x49\x16\x81\x87\xba\x6d\xde\x45\xa7\x81\xb0\x47\x40\xb6\x6f\xc6\xb4\xdd\x11\x3e\x40\x5f\xf9\x5d\x7d\xe9\x5e\x57\x5b\xba\xac\xeb\x60\xd8\x05\x9a\xdf\x9c\x32\xbb\x92\xf7\x2b\x6d\x12\xbf\x0a\x39\xbc\xab\x9e\x51\xa1\xd1\x64\x9c\xa8\x55\xf2\xf4\x26\xbf\xe9\x79\x67\x9e\xf6\xd5\xfe\x55\x45\x32\x7a\x5e\xcf\xba\xfa\x8b\xf9\x79\x70\x23\x5e\x2d\x0e\x0d\xc5\x93\x45\x17\xb1\xd9\xa1\xd0\xee\x17\x22\x40\x91\x52\x23\xa3\x4d\xc4\xa9\xdf\xb6\x78\x39\xcd\x56\x61\x5a\x18\x36\x53\x65\x7f\x00\xe2\x97\xb8\x25\x13\xba\xf7\xdc\x20\x95\xfe\x35\xb1\x2f\x5c\x20\x05\x8b\x71\xf1\x16\x5a\xc3\x09\x44\x6d\xaf\xfd\x6a\xb3\x7c\x94\xaf\x55\x2b\xed\xa5\xb3\xa5\x6b\xd3\xc0\x39\xf8\x3c\x22\x94\xe1\x0f\x91\xc6\x2f\x58\x61\x75\x01\x41\x7a\xb2\x65\xe9\xe9\xb1\x23\xa9\x66\x44\xc6\x8d\x27\x27\xeb\xf9\xef\xbf\x1f\x10\x53\x00\x0e\xeb\xaa\x10\xfd\x72\xc4\x7b\x91\x2e\xa4\x76\xe9\x8e\x2a\xbe\x25\x77\x57\x8d\x06\xa4\xd5\x11\x8b\x7e\xf1\xb0\x82\xd0\x39\xc3\x51\x8e\xce\x97\x29\x63\x9a\xec\xa2\xa5\xda\xdd\xe0\x6d\x7a\xf5\x2c\x6a\xfe\x07\xea\xc3\xf7\x7e\x08\x1a\x5a\xfb\xab\xf0\xc9\x84\x14\x06\xd7\x9c\xb0\x35\x63\x80\x69\x2e\xfc\x4e\x63\xf8\xfe\x74\x0c\x3a\x9e\x8f\x3a\x3e\x88\x4d\x2f\x73\x50\x1e\xca\xa5\xbb\xdd\x8b\x36\x4d\xe7\xfc\xf7\x3e\x15\x87\x4d\x93\x48\x3e\x35\xbb\xf1\x67\xba\x1a\x81\x67\x6c\xa9\x13\xa4\x80\x96\x12\xbc\xba\xf3\xd3\x20\x48\x45\x32\x6f\xbc\xdb\x1f\x19\xf9\xaa\xf6\xf3\x1f\x7f\x84\x3c\x53\x3e\xfc\xcc\x27\x03\xf1\x8b\x33\x49\x78\x70\x20\x0d\x72\xca\x0b\x86\xb7\xfa\xab\x94\xf6\x70\xcc\xc9\xef\x9c\x7a\x51\x30\x8a\x95\x70\x49\xf7\xd3\x0f\x99\x47\x3e\x1c\x6e\xa3\x57\xdc\xbd\xcb\xa6\x00\xbe\x17\x6d\x9a\x8f\x86\x12\xc9\xa2\x8b\x04\xc2\x20\x3d\xc2\x40\xd1\x10\xd3\x40\xdd\x27\x7e\xb4\xb4\x8d\x31\xd1\xcc\xf9\x69\x54\x62\xc5\x4b\xf3\xe4\x42\xa5\xcc\x99\xa8\x08\x0f\x91\xa8\xeb\x25\x5d\x80\x71\x6d\xc2\xb7\x82\x24\x23\xe0\xee\xbc\x6e\x4b\x33\xfe\x95\xbc\x9c\x5f\x28\x0f\xb1\x0b\xa5\xd1\x1d\x13\xd2\xf8\xb6\xbf\xdf\x68\x62\xb1\x76\x47\x37\xb3\x15\x6b\xc8\x16\x2c\x84\x21\x3e\x81\x61\xff\x2b\x3c\x60\xe1\xc7\xa7\xea\x5f\xa4\xc0\xb9\x58\x59\xf3\x8f\xea\x9a\xde\x4d\xa7\x8d\xfd\x7c\x97\x09\xcb\x10\x7a\x7c\xeb\x32\xe9\xc5\x9b\x3f\x37\x2f\x2e\x8f\xd9\x0e\x61\xb9\xb5\x82\xd6\xb3\x96\x64\x31\x4e\x80\x8f\x1d\x23\x33\x15\x6b\x38\x79\xd1\xb7\x7e\x18\x39\xd0\xf4\xce\x22\xdd\xd2\xad\xfa\x08\xc7\x66\x4d\x62\xd4\xd0\x28\x6b\x67\x3b\x9e\x0a\x46\xbf\xaf\x5e\x7c\x01\x11\x57\x0d\xaf\x2a\x44\xd4\xa7\xfe\xaf\x0b\x3e\xe0\x33\x27\x64\x62\x1a\xba\xfd\x73\x9a\x52\xde\x2f\x44\x91\xc2\x39\x39\x2b\xfd\x85\x9a\x9c\x8e\xdb\x8d\xad\xe0\x7f\xbd\x02\x2d\xfa\x83\xf8\x1f\x9d\x5f\x7b\xf9\x9d\x6d\x5c\xe0\x21\x15\xc9\x34\xd4\x6b\xf5\xb9\x01\xa9\x18\xf3\xc6\x5f\xc2\xc9\xa7\x84\xbb\x71\x22\x3f\x67\x3e\xa1\x50\xdc\xa2\xce\x86\x61\x58\xad\x73\x78\xb9\x11\x1f\xcb\x48\x78\xed\x8a\x13\x89\x86\x4b\x48\xe0\xe3\xad\x24\xc0\xd5\xf6\x4b\x2f\xd1\x8a\xe6\xe9\xdd\xfa\xac\x3a\xb4\x57\xea\x84\xef\x4c\xe2\xe2\x19\x19\xd8\xc2\xef\x9e\xfe\xd0\x7d\xf2\xa7\xf4\xc4\xf4\x35\x72\x56\x4f\xf2\xa2\x84\x47\x8c\x52\x40\x25\x83\xda\xe5\xfa\xab\xf3\x1d\x21\xd3\xcb\x87\xff\xe6\x0f\x5f\xae\x92\xf4\xad\xf6\x9c\xa6\xcf\xff\xfe\x5a\x1f\x6a\xfe\xa8\xea\x5f\x2f\x7e\x4e\x98\x23\x12\xdf\x76\x3b\xdd\x21\xfe\xf3\x03\xb0\xa1\xee\xf8\xa5\x4f\xd5\xd7\xc7\x82\x22\xbf\x8e\x5d\xd7\x3d\x85\x07\x2a\x12\x22\x4b\xbc\x04\x7e\xaa\x4c\xdf\x89\xd8\xea\x7d\x1d\x45\xbe\x5d\x9c\x5c\x2f\x81\x3c\x00\x5e\x72\xd9\x79\x12\x0b\x97\x13\x0b\x0b\xc5\x45\x96\x4d\x37\x8d\x18\x0d\x2e\x0d\x5c\x3e\x2f\xbf\x4a\xb5\x14\xc6\xb2\x04\x04\x53\x3c\xfe\x43\x20\x3e\x47\xa0\xd7\xc5\x51\x68\x38\xd7\x26\x9b\xdd\x8b\xfa\xdc\x7d\x52\x66\x4c\x90\xb0\xd3\xdb\xe1\xc4\x3e\xad\x20\xbb\x4c\xa1\xdc\xbc\x6a\xc1\x3a\x37\x1a\x21\xf2\x3d\x27\x00\x7d\x50\xc8\xca\xe7\xf8\x9c\x19\xc9\xe1\xfd\xf0\x16\x90\xd1\x24\x54\x36\xb6\x7e\x22\xbb\x26\x13\xca\xc1\xbf\xf9\xca\x25\xb1\xd3\x46\xfb\x6a\xff\x9b\x48\x66\x70\x0b\xe3\xd9\xf5\x80\x9f\x67\x74\x3b\x07\x02\xff\x0b\xcc\x92\x4f\x23\x69\xed\xef\xf7\xbc\xb8\xd4\xd6\xc4\x2e\xe2\xd9\xac\xc0\x6d\x72\x8c\x56\xea\xef\xbf\x6b\x39\x4a\x84\xfb\x4d\xc2\x40\x31\x07\x52\x1b\x72\xed\x65\x19\x99\x2f\xf2\x35\x62\xbe\x6c\xf4\x7c\x60\xeb\x23\xfe\xba\x93\xe0\x83\xdd\xe3\x7d\x16\x76\xe4\x86\xcb\xfe\xfc\x69\xd9\x90\x82\xa1\x14\xc6\x25\xf1\xf5\xc5\xd5\x0e\xfe\xc3\x1a\x51\xf5\x9c\x1a\x1c\x13\x05\xb5\x26\xca\x3a\x98\xb8\x49\xc5\x9f\xe0\x2b\x05\x1c\x45\xc4\x72\x0b\x6b\xbf\xbb\x17\xfb\xcb\xaf\xf4\xa3\xc8\x06\x4d\x40\x90\x15\xf4\xdc\x63\x06\x83\x9b\xba\xdb\x23\x3f\xbe\x9c\xe9\x2f\x72\xb3\xc4\x47\xa6\x11\x4a\x3f\x4e\x74\xd9\xf8\x37\xe3\xb0\x23\xd3\xfb\x5f\xbb\x57\x70\x9d\x04\xc2\x1c\xb1\xe4\x47\x2a\x9c\x8b\x15\xc2\x6d\xe1\xfb\xf4\x5a\x51\x93\x90\xbe\xa7\x18\x47\xd8\x9c\x83\x2c\x6f\xbc\x94\x87\xda\x43\x96\x46\x6d\xf6\xc7\xc7\x00\x5e\xe7\x6b\xbf\x44\x10\x15\x3c\x35\x09\x41\x85\xd1\xea\xac\xaf\x45\x4b\x98\xa7\xdb\xf7\x9d\xca\x4f\x30\x46\xf3\x35\x6c\xc7\xd6\x1c\x1e\xba\xa7\x64\x8e\xb1\x3e\x6b\xc4\xc7\x7a\x93\x0c\x6e\x91\xfe\xaf\x91\xf4\x4d\xaf\x95\x8a\x85\x40\xc8\xf7\xf5\xdf\x9b\xd4\xff\x9b\xac\x37\xfc\xcc\x96\xcd\x63\xee\x7f\x70\xf4\xdc\xfc\x67\x2f\x71\x37\x46\x82\x0e\x00\x5e\x22\x58\x1d\x77\x99\x00\x4e\xa7\xfd\xf2\xf2\x53\x44\x98\xa1\xcd\x43\xe3\xf1\xee\xda\x8e\xf3\xbf\xf5\x86\x4d\x0e\x6d\xd9\xbf\xd9\x84\xae\xa6\xbf\x89\x64\xd2\xe9\xe5\x30\x73\xcd\x1f\xd1\x0d\x9f\xb1\xf4\x3a\x70\x41\x69\x62\x0c\x1e\xdd\x7a\xcb\x6a\xe2\x4c\x9b\x93\xc5\xaa\x43\x77\xa5\x1e\x6e\x9d\xd2\xeb\x2b\xe3\xaa\x63\x5d\x39\xcc\x88\x3e\x85\xf9\x65\x02\x2e\x65\xc0\xc9\xf8\x73\xd5\xeb\x00\x1f\x66\xa5\xff\xe2\x0e\xa1\xac\x49\x28\x32\xd0\x24\x9e\x20\x01\x7e\x2e\x8e\x51\x24\x86\x94\xe1\x7f\x77\x65\x37\xde\xd8\xfb\x44\x2a\x3a\xc0\xd9\x10\xef\xae\x1a\x72\x41\xd9\xc9\xbd\xe4\x81\xdc\xd8\xc0\xc5\x1e\x69\x14\x4f\xe4\xac\xc0\x0c\x35\xaa\xc4\x6c\x61\xf0\x56\xe2\x19\x00\xe8\x25\x32\x48\x58\x50\xc1\x63\x5f\x7f\x42\x00\x46\x86\x7b\x1e\x22\xba\x7c\xa7\x9d\x47\xa8\x0c\x82\x1f\x60\x6f\xbc\xb8\x37\x96\xf5\x11\x1d\xf9\x5e\x92\x53\xc5\x7d\x78\x19\x7b\x46\xd7\x41\x8c\xfb\x07\x6c\x24\x77\x09\xc3\x30\x5a\xd6\xa5\x32\x1c\x78\xd2\xfb\x86\xd6\xe5\xee\x7d\x4a\x0a\xfd\x40\x3f\x86\x79\x17\x92\xca\x2a\xec\xe6\xce\x56\xff\xac\x20\xd0\x95\x45\x28\xd3\x13\x0a\x8c\x92\x3d\x6b\x2e\xd5\xb0\xe7\x38\x93\xc7\x51\xeb\x3a\x67\x8a\x6f\x3c\xc3\x2e\xe7\x56\x2f\xfd\x15\x34\x39\xbf\x4a\x27\xc6\x78\x23\xa2\xe1\x5c\x72\x54\xf3\x4c\xa0\x78\x40\xfa\xbe\xc5\xef\x37\xea\xac\x13\x45\x53\xa7\x30\xbf\x7d\x04\x52\xd2\x04\xb8\x8d\xf2\xc8\x19\x9d\x85\x61\xb4\x14\xba\x2a\xf2\xdf\x8b\x8b\x2c\xe7\x65\x7c\x86\x25\xb7\x37\xe6\x36\x28\x93\x9e\x37\x5c\x56\xa9\xb5\xa1\x3b\x1d\x32\x0e\x58\x9a\x89\x64\xd1\x8e\xac\x28\x0c\x99\x6f\x3f\xbd\xda\x1f\x97\x44\xae\xd7\x10\x27\xad\x68\xdf\x55\x98\xe4\x34\xec\x6b\xb6\x20\xd0\xf5\x98\x44\x99\xc2\x3b\x86\x39\xf1\xe9\x7f\x8e\xdf\xad\x1f\x6b\xe7\xf4\x05\x0a\x52\xe4\x53\x3f\x89\x9b\x2f\x89\x57\x7f\x42\x8f\xfa\x98\xd5\xfe\x4f\x12\x1d\xb3\x9b\x4e\x9f\x3a\x41\xa0\x6a\xef\x5f\x8d\x5d\xef\x0f\xed\x73\xa1\x37\xbf\x82\xd1\xf7\x2e\xdb\xac\xb4\x41\xdd\x08\xad\x19\x84\xfc\xa5\x5f\x06\xa3\x16\x7f\x7d\x9c\x5e\xf3\x97\x2c\x23\xf4\x8b\xc3\x65\x37\x3c\xb1\xb5\x15\xb5\x53\xf1\x3b\xcb\x3e\x17\x14\x7f\x88\x25\xd3\x0e\x5c\xd0\x97\xec\xb4\x4e\x93\x69\xd9\x3d\xf4\xc1\xf1\x91\x62\x5d\x70\x49\xab\x07\x71\xe6\x8e\x64\x76\x44\x95\x47\xf6\xa0\x4d\x47\x42\xf8\xad\xdc\xd3\x11\x04\x9b\xc0\xcf\xbd\xed\xba\x2d\xda\x82\x44\x0f\x04\xed\x2a\x26\xd6\xe3\xf8\xc3\x6f\xff\x66\x1b\x31\x4c\x4f\x8f\xb2\xf1\x7a\x54\xef\x11\x0b\x04\xcc\x13\xa7\x2f\x27\xea\x11\x30\xc6\xff\xe5\xfe\xae\xff\x16\x79\x42\xbd\x8e\x75\xe0\x70\x9f\x72\xea\x07\xc7\xbf\xcc\xc8\xeb\x4e\x0f\x48\xa3\x32\xe9\xd9\x3c\x7b\xcf\x0d\x60\x4a\x36\x99\x68\x79\xca\x69\x98\xe6\xd7\x96\xb4\xb3\xbd\x31\x16\xe1\x42\x33\xe6\xdc\x84\x83\x36\xf4\xf7\x73\x16\x08\xf8\x43\xf2\x32\x74\x95\x6f\x54\xf4\x31\x83\x08\xcd\x55\x69\x98\xbc\x8f\x9a\x5b\xbb\xed\xc2\x8f\xab\x9f\x08\xe7\x5b\x1e\xe4\x45\xdf\x84\x4c\x93\xf7\x57\xce\x2f\xec\x08\x81\xa3\x3d\xee\x8e\x64\x35\xa4\x12\x8c\xf7\x52\x76\x5d\x54\x7d\x7e\xc0\xf4\xbf\x85\x98\x24\x42\x7c\x9f\x73\x7a\x53\x93\x0b\x0a\x89\x07\xd1\xc9\xb3\x02\xf5\x69\x8f\x86\xe3\xf5\x82\x13\x22\x63\x16\x7d\x25\x65\x75\x73\x3b\xbb\xd9\x82\x75\xea\xd1\x15\x2d\x28\x33\xa7\x98\xb3\xb9\xb7\x16\xc0\x6d\x75\x6b\xd2\x8b\x3f\x46\x85\x73\xff\x8d\xfd\x34\x5b\x97\x85\x6a\xba\x2c\x1f\xcd\xa4\x59\xad\x13\x9b\xfc\xf6\x88\x4d\x7e\xa9\xdc\x1c\x4d\x78\x8d\x89\x42\x38\x17\xab\xeb\x3c\x0a\x06\xd4\xc7\xec\x67\x50\x75\x74\x6e\x3b\x7b\xd3\x5e\x81\x15\x9c\x74\x6b\x9a\xd2\x7d\x39\x14\x50\xbf\xc7\x0b\x0c\x1f\xf8\xe9\x7c\xfd\x2e\x0c\x28\xb9\x11\xab\x3b\x62\xff\x6c\x04\xb9\xf8\x3c\xa5\x55\x8e\x7b\x14\xa2\xd4\xf5\x95\xbe\x7e\xb4\x34\xf2\x6a\x3a\x62\xef\xf8\x51\xf5\xb2\xc4\x2a\xe7\x4d\x1c\x8b\x36\x82\x2c\x7a\x45\x8b\x72\xce\x3d\xa6\x77\xf9\xd8\xa0\x23\x7e\x64\x64\xea\x65\x60\x5d\xf9\xf8\xa8\x53\x61\x30\x13\x3b\x48\xa4\x3a\xe0\xf4\x30\xe3\x62\x56\xc1\x07\xb2\xec\x22\xe0\x86\xb8\x13\x18\x3d\x37\x7a\x69\x59\xf0\x3b\xb9\xb0\xf0\x93\x76\x5d\x31\x65\x22\xe1\x9d\x59\xf0\xce\xcf\xe7\x7b\x7f\xf6\x50\x5d\x94\x81\xc5\x9c\x7c\xf8\xbe\x5c\x02\x64\x55\x1c\x0a\x89\x8f\x5b\x96\x72\xeb\xee\x63\x2c\xfd\xf9\x6c\xf0\xf1\xef\x57\x0a\xc1\xb3\x89\x16\xd7\xe4\x50\xe6\xad\x69\x67\x7b\xb5\xa8\xfc\x58\xb1\x46\x33\x32\x4f\x0e\x9b\x47\x26\xff\x06\xb9\x35\x83\x58\x25\xf6\xba\x70\x78\xcb\xa7\x92\x56\x59\x7e\x7f\x1a\xad\xd6\x76\xf8\x64\xe8\x72\x97\xd8\x14\x4a\x37\x1f\x87\x06\xad\x6a\x23\x18\xcb\x5e\x51\x81\x63\x1a\xfa\xc5\xf1\xb1\x1c\x40\xab\x9f\x9c\xc6\xa8\x68\xad\x5b\x8d\xb8\xa7\xd4\xf0\x8d\x2b\xd4\xef\x9b\x48\x64\xa6\xd9\xe5\xdf\xfd\x97\x7e\xe9\x1f\x6e\x8a\xef\xa8\x87\x83\x1e\xd9\x3d\x8d\xa7\x24\x95\x5f\x91\xda\xf7\x66\xe7\xaa\x72\x4f\xa6\xfc\x6e\x49\xd1\x93\x53\xac\x74\xfa\x6d\xf4\xd4\xb6\x6f\x9f\xe6\xaa\x52\x8f\x3f\xde\xdf\xa0\x44\xac\x5e\xfe\x1b\x73\x1d\xab\x5d\xb4\x07\x41\x6d\x31\xa4\x81\xc3\x75\x94\xa2\x93\x72\x43\x37\xb9\x5d\x69\x97\xf1\xcc\x85\xd1\x22\x4a\xca\x35\xea\x92\xd7\xe5\x93\xec\xcf\x66\xd3\x82\xa9\x7e\x89\x17\x54\x70\xc7\x35\x87\x8c\x2b\x87\x1e\xf6\x26\x69\x79\x82\xf9\xe8\x80\x80\xe3\x88\x34\xc9\x93\x6a\x74\x31\x4f\x52\xd9\x7a\xd4\xca\xd0\xd1\xe1\x20\x38\xe5\x2a\xa5\x14\x16\x0d\x97\x78\x86\xb2\x26\x15\xc0\x9b\x5f\x48\x0a\x04\xfb\x77\x5f\xaa\xa8\x04\x73\x1e\xd2\xd3\x97\x33\xf9\xbb\x0b\xac\x2e\x10\x9d\x8b\x2f\x6f\x69\x7a\xf1\x4d\xab\xc4\x0e\xdb\xf0\x00\x2f\x49\xdd\x0a\x2f\xa8\x90\xa9\x95\x05\x24\x29\x40\x70\x23\xc8\x45\x64\x2e\xf7\x84\xca\x4d\x50\x72\x97\x31\xf2\xb6\xed\x48\xed\x69\x53\xe0\xf1\x70\xfb\xb6\xfe\x26\x3b\x8e\xae\x11\x0f\x72\xc4\xfb\xa8\x46\xc3\x25\x0a\xc0\x67\x05\xf5\x50\xe4\xbb\xc6\x27\x6a\x91\xe2\xd2\xd8\x91\xdb\x38\xec\x08\x2b\x76\x8a\xe9\xe1\x89\x11\xa0\xf9\x55\xe7\xb6\x5d\x67\xb7\x55\x68\xb8\xec\xfe\x2e\xa0\x2e\x0c\xf4\xbc\xd9\x51\xdf\x6d\xe7\x29\x03\xc0\x35\x08\x2c\x7d\x4f\x14\x06\x6d\x79\x55\x57\xb0\x3c\xe5\x30\x7d\xe7\x45\xd0\x7b\x17\x12\x3b\x92\x25\x30\x78\x0f\x13\xb1\xf7\xe7\xb3\x0e\xae\x68\xea\x88\x6e\x90\xc0\x53\xfb\x4f\x77\x58\xa5\xf2\x55\x01\xfd\x55\x3a\x80\x5f\xed\xcb\xd9\x9c\xc9\x7a\xa3\xc0\xad\x1d\x46\x1b\xe7\x29\xee\x02\x89\x3a\xe1\x00\xdc\xb4\xed\xe9\x5e\x67\x63\xfc\xbb\xf0\x75\xd9\x2f\x0f\x5b\xac\x0a\xc1\x8f\xac\x43\x2e\xe3\x10\xba\x7f\x0a\x33\x63\x1e\xca\xda\xbc\x75\x78\xcb\x3a\x44\x73\xc5\x5b\x78\x5d\xd7\x39\x33\xc1\xfa\xf8\xb2\xaf\xe6\x02\xda\x1b\x87\xf6\x25\x50\x83\x63\xfc\x7a\x7f\xe7\xe5\xf2\x21\x8d\x96\xfb\x14\xc9\xbf\x02\xc8\xc7\xe6\xc5\x17\xa9\x16\x43\x58\xc5\x9f\x56\x9c\x74\x6a\x94\x2b\xff\xfb\x85\x24\xbe\xf1\xcc\x07\xd1\x61\x7b\x81\xe2\xb6\x8f\x3e\x7b\xe4\x79\xc7\x1f\xe0\x77\xc2\xde\xd1\x20\xe7\x7a\xf6\xd7\x47\xfa\x02\x9b\x93\x3f\xfb\x6f\x2d\xa5\xc1\x5e\xea\x54\xb8\xeb\xe4\x04\xd9\xb4\x5f\x08\x0d\xf1\xfc\x74\x19\xfa\x61\xd5\x50\xdc\x0f\xf1\xf6\x44\x00\x0a\x79\x44\xb5\xac\xcc\x74\x8f\x9c\xc6\x14\xf8\x12\xf9\xa9\x23\xbf\x49\x76\x49\xc9\x0e\x3f\x45\xa8\xb9\x28\x16\x6a\xe0\xd9\xe9\x1a\x03\x85\x68\x94\x29\xb4\x62\x9e\xf9\x38\xd8\x08\x21\x1c\x75\x6a\x20\x7b\xda\x33\x2a\xe4\x5c\x35\xb7\xc6\x67\xa5\xa5\xc8\xee\x97\x9e\x88\xeb\x9d\x8b\x34\x32\xbb\x3e\x2b\xae\xf9\x72\xd7\x54\x51\x76\xd7\x3f\xea\xb6\x5e\xce\x4d\xac\x21\x5b\xe1\x3e\xef\x7b\x51\x08\x0b\xf1\xdb\x5d\x6a\x73\x2e\xa8\x1e\x53\xc1\x81\xe6\xf8\x47\x00\x5a\x89\xf5\x5a\xb2\x17\x03\x01\x73\xaf\x14\xd8\xb0\xf9\xc2\xc4\x41\xbe\x05\xf9\xf4\x5f\xf6\xaf\xe7\x78\x53\xae\x67\x4f\x8e\x42\x2b\x2e\xb2\x3b\xc3\x3c\x3f\x9d\xed\xbb\xa7\x64\xee\x94\x8f\x9c\x71\x85\xf5\x5f\xf6\x6f\xd8\xbd\xca\xa5\xe0\x92\x0b\x6f\xaf\xc5\x92\x2e\xec\x08\xaa\x13\x77\xc7\x5c\x68\x87\xea\x0d\xcf\xea\x8d\x46\xf2\xf7\x50\xfe\x1b\xc3\xed\xf3\xa2\xb3\xc1\x17\x57\x8b\x86\xbd\xa7\xe2\x50\xc8\x60\x3c\x54\x1c\x09\xa3\x2b\xe2\xa3\x84\x6e\xf7\xb6\xac\xdd\xb9\xc8\xee\x3c\x5d\xaa\x5a\xfb\xcd\x59\x97\x41\x1a\x76\x1b\xea\xd8\x7b\xd3\xd3\x44\x2d\xe3\x6a\x11\x95\xf1\x00\x16\x49\x7a\xb2\x05\x43\x7c\xb6\x25\xf6\x0b\xe0\x63\xa9\x90\x96\xcd\x12\x87\xa1\x96\x3c\xab\xa0\xcd\x86\xbd\xba\xf7\xf7\xb5\x5f\xb4\x57\x46\x69\x04\x1e\x1e\xd5\x8f\x5d\xd4\xfb\x02\xf6\xe9\xd6\xfb\xc3\xed\xf3\x9a\xdc\x49\x88\xbb\x3b\xff\x64\x5a\x21\x8a\x0f\xa9\x1a\x29\x8e\xfb\x02\xc8\xf9\x02\xc0\xc1\x67\x9d\x8b\x6f\xc3\xcc\xfe\x3c\xae\x3e\x0e\xb3\xaf\xed\x1e\x66\xce\x88\xf1\x8b\x4a\xe9\xb2\x86\x09\xdf\x1a\x00\xb5\x89\x36\xcc\xdb\x8f\xd8\x21\xee\xbb\x2e\x7d\x51\xb0\xe9\xec\x62\xf1\x6f\x61\x8d\x91\x9a\x24\x47\xe3\x36\x6f\xd8\x1c\xbf\xa8\xc3\xeb\x23\xf9\xc5\xce\xb0\x92\x0c\xff\x60\x7f\x8b\x96\x02\x2a\x37\x5e\x34\xfc\xf2\x50\x0b\x7b\x2b\xc1\xc4\x76\x96\xc4\x71\x33\xb9\xbd\x31\xab\xa1\x3b\x44\xc2\x4b\x11\x19\xb4\xe3\xf0\xe4\x1f\x25\x0d\x7f\xdd\x61\x57\xb7\x7c\x58\xfd\x7b\x6c\x01\x96\xed\xab\x8e\x1b\x57\x57\x9d\xad\x33\xb2\x22\x14\x82\x98\x00\x51\x2f\xf9\xd0\x45\xd1\x1a\xb7\x1a\x4d\x11\x8d\xd3\x93\x08\x6d\xf9\x4c\xc9\x52\xf9\xcc\x35\xd6\xb5\xae\xf0\x9a\x5b\x64\xcf\xbe\x37\x7d\x66\x0b\x2e\xa8\x71\xab\xb9\xaa\xbe\xb5\x73\xe8\xbd\xb0\x14\x04\x11\x57\xfb\x7a\x0d\x54\x3b\x8d\x98\x59\xa8\xd6\x76\xce\x60\x02\x10\x5b\x0e\xf5\xc7\x85\x77\x25\x4b\xc5\x58\x32\x87\x3b\x62\x0d\x6f\x5c\xa9\xd3\x51\xd7\x8d\x0d\xd8\xa3\xe5\x1d\x08\xb3\x19\x56\x94\xf3\xff\x2f\xac\x0d\x03\x15\x60\xa0\x09\x73\x2d\x44\x07\x19\x8c\xc4\x06\x3f\xbe\xbc\x3e\xc9\xf4\x6c\x39\xbf\xca\xdc\x42\x1a\xf3\x78\xfe\x8d\xb7\x58\x46\x66\x5c\xdc\xe7\x8e\xf7\x52\xda\x16\xc1\x5a\x26\xfe\xbe\xb6\xce\x5a\x2a\x5f\x88\x0f\xd9\x41\x1b\xc0\xc2\xc0\xc8\x27\xa1\x1a\x33\x63\x8f\xe2\xca\xce\xf6\x3d\x54\x57\x43\x4e\x93\x6c\x4a\x47\x5e\xb0\x24\x4e\xd6\xea\xf8\xb2\x16\x9c\x50\x4b\x7e\xa3\x3e\x69\x19\x91\xf0\x09\x08\xf0\x23\xc9\xe6\x91\xde\x7f\xf7\xa4\x36\x7d\x70\xf1\xb9\xdf\x28\x6c\x76\x23\xc2\xca\xb6\x77\x54\xd3\xfa\xf8\xd7\x69\x46\x33\xed\xab\x17\xac\x9b\xb5\xbf\x39\x01\xbd\xa5\x51\x01\x28\x84\xff\x26\xc9\x7e\x3d\x70\x5c\x8d\x1b\xcd\x38\x2f\x93\xcd\x53\x4f\x93\x73\x2b\xfe\xf9\xbb\x20\xc6\x9f\xd3\xf9\xd6\x7f\x5e\x6f\x3b\xdb\x05\xd7\x17\xd4\x6b\xdd\xf5\x4e\x97\x73\xd2\x5a\x4b\xf4\x4f\x46\x4a\x8d\xd8\xa9\xb9\x3d\xd2\x0e\x14\x79\x10\x67\xee\xd5\xab\x97\x70\x70\xbb\x36\x95\xb3\xa5\x68\xea\xf7\xed\xdd\x96\xdb\xf7\x3a\x95\x65\x8a\x67\x8a\x45\x80\x1b\x1d\x99\x44\xa1\x61\x8d\xd3\xe7\xbd\xfc\x63\x5f\xb3\x5b\x08\xeb\xc0\x97\xca\x76\xcf\x56\xf7\x57\x6c\x62\x18\xfb\x2f\x3f\x0a\x4f\x04\x6c\x49\x64\xd1\x8e\xbb\x94\x94\xe4\x21\x54\xc0\x29\xe1\x71\xbd\x9f\xd1\xf0\x08\x50\x89\x4d\xb9\x0d\x54\x8a\x61\x1e\x58\x16\x97\x7d\x54\x75\x05\xde\x48\x50\x50\xfa\xab\x17\x71\x4b\xcb\x01\xd7\xc0\xef\xaf\x55\xd0\xec\xd1\x71\x1e\x75\x65\xa1\x29\xa2\x57\xc3\x97\x3c\x48\x37\xb2\x88\xfa\xbc\x6a\xe6\x40\x58\xfe\xa5\xac\x79\xfa\x84\x3f\xf3\x45\xda\xda\x5a\x9c\x53\x01\xf6\xd7\x0a\x83\xb7\x72\xae\x54\xdd\xc6\xda\x4f\x19\x4d\xd1\xdc\x8a\xca\x0b\x16\x08\x98\x51\x83\x82\xef\xab\xe1\xe6\x24\xbc\x12\x9b\x70\x1b\xa8\x7c\xa5\x16\x4d\x90\x39\x60\x50\x83\xb3\xae\xd9\x73\x80\xce\xed\x61\xcf\x01\x63\x23\x4a\x89\xc8\xb1\xae\xc2\xc0\xdb\x0d\xca\xff\x5d\x61\x2b\x43\x01\xfc\x34\xc2\xff\x60\xcc\x44\xdb\x4e\x8f\x6d\xe2\x38\x3b\xf6\xe1\x2e\xa3\x12\xcd\xab\x2c\x74\x35\xce\xed\xa5\x0d\xad\x9b\xfd\xb7\xaa\xa2\x03\x3a\x7f\x25\xfd\xbf\xfa\xff\x52\x59\x48\xab\x03\xaf\xaf\x32\xb0\xfa\xc5\x45\x7d\xbb\x6c\xf9\x55\x9f\x34\x44\x69\x0e\x6a\x06\xc4\x2c\x52\xc4\xea\x20\x05\x76\x09\xaa\xcb\x67\x84\x4f\x2c\xc7\x30\x8b\xc1\x19\x41\x41\xc0\xf8\x07\x42\x0a\xf8\x2e\xa5\x31\xef\xac\x1d\xc9\x8f\x79\xd3\xd8\xa7\xfc\x5f\xdf\x5a\x23\x31\x58\xee\x61\xc8\x34\x89\x77\x19\x49\x16\xed\xf8\x62\x6b\x8d\x12\x82\x01\xc0\xee\x14\xdf\xa3\xfb\xa8\xa9\xc3\x5f\xdc\x1d\xb9\xb6\x12\xc7\x88\xd7\x41\x22\xb8\xde\xe2\x16\x48\x0a\x4e\xf1\x33\x0d\xb3\xe1\x09\xd3\x10\xc1\x5e\x02\xe7\x2e\x41\x7c\xec\x5d\xe6\xd6\x5c\x32\x3e\x46\xef\xbf\x49\xa3\xba\x49\x53\xa3\xf1\x45\x01\x5c\xc5\x2b\xf1\xda\xb0\xce\xe1\xfa\xa8\x5f\x4e\xfb\x02\x40\x36\x9e\xcd\x88\x0b\xaa\x27\x13\xcd\xaf\x12\x95\x02\xdb\xfc\xe4\xf3\x93\x0a\x49\x30\xe9\x92\x02\x32\x80\x22\x00\xd0\x00\xbe\x6b\xb2\x93\x2f\x1b\x3f\x67\xe7\x7b\x5a\x7b\x5c\x17\x2d\xf1\xe5\x31\x6b\x90\xc0\x57\xc7\x0d\xb4\xe3\x1e\xfa\xb3\x95\x89\x65\x5a\x79\x00\xe5\xe0\xfd\x8b\x31\xee\x85\x10\x45\xd7\xa8\x16\xb6\xe0\x16\xee\x87\x87\xbc\x52\x67\xbc\x50\x08\xf8\x8f\x41\x22\x03\x14\x73\x89\x13\x00\xae\x33\x47\x53\x4d\x92\x77\x04\x33\xa9\xd1\x62\xdd\x5d\x13\x3f\x1d\xd2\x89\x9c\x2a\x58\x78\x23\x60\x6a\xc6\x40\x07\x2f\xe9\x01\x33\xb2\x49\x88\x8f\x65\x68\x88\x6f\x54\xc3\xe5\xf7\x45\x5d\x91\x42\x2a\xe7\x93\x57\xbf\xb3\xfa\x85\xc7\xc5\xf0\x1f\xe6\xf5\xc9\xbe\x1e\xb6\x53\x92\x93\xf5\xfc\x65\x5c\xa5\x4c\x3c\xba\x0e\x96\xc6\x11\x4e\xaf\x32\x69\x35\xeb\x5b\xd0\x79\x3d\x81\xf7\x44\x11\xa9\xc6\xdf\x41\x40\x62\x25\xa1\xb0\xea\xbb\xf4\xdc\xc7\x08\x72\xff\xd2\x1b\x57\x60\xba\xff\xdb\xf8\xe9\x1d\x50\x4f\x8c\x95\x14\x74\xfa\x57\x70\x49\x7c\xbc\x02\x80\x23\x62\x4c\xcd\x68\x99\xa2\xeb\x3c\xea\xe0\xbf\x70\xda\xf1\x79\x23\xc1\x91\xce\x15\x21\x56\xa7\xd4\x9e\xc8\xb3\x59\xca\xa8\x54\x27\x61\xe0\x8e\x27\x89\x2f\xbe\x69\x20\xed\x85\xb0\xf7\x9f\xe3\xbe\x6e\xad\x84\xb2\xd2\xf6\x1d\x43\xa9\x69\x25\x53\x37\xd7\xcd\x2e\x0c\x27\xf0\x7a\x63\x54\x10\x0a\xe1\xe7\xf4\xf1\x49\x31\x02\x43\x9b\x84\xaf\xf5\x48\x48\xa2\x14\xc9\xfe\x1f\x12\xce\x2a\x2a\xea\xf7\xeb\xe2\xdf\x19\xba\x07\x04\x06\x74\x90\x6e\x49\x05\x06\x90\x16\x91\xee\xee\x10\x41\x90\x54\x69\x18\xe9\x90\xee\x6e\x45\x5a\x42\x9a\xa1\x1b\xe9\xee\x46\xba\x7b\x98\x77\xfd\xfe\xef\xc5\x73\xf7\x5c\x9c\x75\xd6\x3e\xeb\xb3\xf6\xc5\xde\x6f\x38\x41\xaf\xd7\x3f\x3c\x22\x85\xff\xdc\x1f\xc6\x72\x02\x62\x9f\x1f\xe3\x01\x49\x15\x3d\x26\x71\x43\xf5\xac\x78\xea\xbf\xc4\xf7\x0c\x34\xd8\xe1\x0d\xd5\x89\x35\xc7\xf6\xac\x07\xca\xb3\xd0\x47\xf3\x69\xbf\xa2\x67\x0a\x74\x10\x5c\x96\xd4\x98\x3f\xed\xab\x5e\x47\xd0\xb3\x4c\x4c\x09\xcc\xc7\x23\xba\xe8\x5e\x9d\x13\xaf\xef\xfe\x38\x6d\xc7\xdb\xb6\x8d\xe8\x6a\x01\xe1\x74\xbe\x42\xc5\xd0\x68\xa5\x94\x75\x49\x2d\x8a\xc6\xea\xb4\xdf\x47\x5a\x5a\x06\x81\x36\xfb\x12\x35\xdb\xe8\xfa\x95\x04\xf0\xb7\x55\x77\xc8\x09\x36\x50\x83\x6f\x8b\x0c\xa1\xb3\x81\xbf\x6d\xf7\x72\xe7\xbe\x9a\xc5\xee\x24\x2b\x6f\x17\x9a\x70\x44\x29\xf2\xcb\xce\x4b\xcb\x0b\xff\x5a\xd8\xbc\x88\xa9\x18\xc9\x5d\xc5\xb5\xe1\x3e\x5a\x34\x55\x35\x2c\x19\x6d\x59\x2a\xa8\x7c\xc4\x02\xb7\xff\xee\xe1\x89\xf1\x3a\xc1\xbf\xa8\x52\x0d\x7e\x8c\x82\x3c\x94\xc1\x7e\x81\x21\xeb\x8f\xd7\x23\x41\x0e\x8d\xe8\x2f\x21\x5d\xdb\x9c\x03\xcc\xa9\x91\x1f\x0e\x91\xf4\x13\x1d\x06\xf3\x8d\x99\x33\x4b\x62\x36\x99\x17\xac\x16\x68\xf0\x37\xc9\xd1\x6f\xb8\xef\x81\xd5\x18\xec\xb8\x59\xcd\x7c\xea\x1f\x38\x74\xa5\xd7\x48\x4c\xe0\x2c\x81\xfe\x3d\x7f\xf0\x67\x3c\x67\xba\xce\x56\xc9\x10\xc4\xce\x97\xeb\xb1\xf8\xef\x97\xb8\x06\x5e\x6a\x04\xff\x21\x00\x97\x58\x32\xe1\x84\x98\x0d\x5b\xba\x8f\x36\xce\x9c\x0d\x30\x37\x41\x58\xdf\x66\x77\xc5\x34\x6a\x69\xa9\xee\x09\x8a\x0b\x1c\x44\xb8\x52\xbd\x08\x4b\x14\xd2\xbc\x5a\x3a\x0c\x6c\x21\x2a\xa3\x41\x07\xfe\x47\x28\x4c\x1f\xc9\x83\x44\xd4\x5a\xdf\x53\xd0\xe5\xec\x83\x9c\x86\x71\x29\x4f\x42\xe2\x0e\x73\xf0\x04\x6f\xf0\x12\x7a\x80\x63\xc9\x33\x8e\xef\xd8\x75\xb2\x7a\xdf\x54\xef\xbf\xb1\xe8\xe0\x2e\xc1\xa9\xe6\xb4\x43\x8f\xc9\x80\x64\x56\xf9\x80\x66\xea\xbc\xbb\x35\x5a\x73\xe8\xb0\x25\xe5\xdc\xe6\xe5\x9c\xc6\x1d\xf4\x3d\x2a\x22\xeb\xbf\x8f\xbc\x1d\x98\x32\x44\x38\xe6\xb0\xab\x8b\x7c\xca\xaa\xf6\x1f\xc4\x5c\xd3\xc8\xae\x98\x46\x23\x2d\xd5\x7f\xc4\xe2\x41\x3d\xa3\x77\x42\xcc\x3a\xb3\x4a\x73\xd7\xca\xa9\xda\x39\x5f\x2e\x0a\x76\xef\x58\x21\xb8\x3d\x49\x9d\xf8\x1d\xce\x10\x7f\xb1\xf2\x73\xba\x7d\x92\x24\xc1\xa8\x83\x2f\x54\x3a\xc4\x92\x7a\x18\x74\xa9\xbc\x05\x43\xc9\x89\x11\x64\x32\xec\x54\x2f\xb1\x10\x8c\x66\xcc\x91\x0e\xa5\xd6\xa5\xbd\xa3\x69\xb7\xc7\xb4\x62\xec\x7b\xff\xad\xba\x6f\x42\x76\xf5\xda\x20\x44\x82\x52\x9a\xd7\xa2\x25\xf3\x8e\x38\xb0\x2c\x1b\xc7\x77\x59\xa3\x03\x5e\x3c\xb3\xf6\x8e\x1c\x11\x1a\xf1\xec\xe0\x91\xb5\x50\x29\x4e\x21\x75\x93\x1a\xd3\xe6\x60\x11\x4d\x6c\xdd\xa3\xd2\xd1\x8a\xcc\xac\x74\xcb\x11\xb8\xa2\x85\x49\x92\xce\x87\x6b\xfc\xe7\x08\xe4\x03\x47\x8f\x6b\x41\xaa\x27\x6e\xf3\x69\x27\xdf\xf3\x20\x84\xfd\xca\xa2\x7d\x96\x83\x77\xe0\x91\xce\xe6\x26\xae\x19\x73\xf2\xf2\x76\x75\xfc\xf9\xca\x71\x64\xd2\x0d\xda\x42\xde\x78\x94\xa6\xca\xff\x66\xb4\x97\x9c\x96\x4a\xc6\xda\xcb\xce\x76\xff\x79\x0d\x01\x3a\x67\x1f\x39\x8c\x41\x07\xc1\xc5\xec\xcc\x0b\xb8\x5c\x90\x3f\xf9\x52\xed\x9f\x2f\x72\x17\x19\x08\x39\xa0\xbb\x09\x18\x11\x1d\x66\xc0\x35\x14\x3d\x76\xaa\x31\x0a\x31\x37\xc5\x40\xac\x05\x03\xf3\x3f\xd0\x5c\x09\x89\xae\xfc\xb2\x9a\xbc\xd6\x47\x7e\xe1\x0d\x9a\xa3\x4b\xbd\xaa\xfc\xd3\x1c\x35\x86\x8f\xed\xa7\xf1\x1d\x28\x1e\x08\xee\x5b\x7f\x6e\x7f\x5e\x05\xaa\x3b\xbf\x19\xd5\x94\x4b\x51\x0d\xe9\xca\x90\xcb\x60\x65\x5a\x42\x5f\x9e\x7a\x5f\xb4\x41\x27\x0b\xc9\xd7\x0c\xe9\x9b\xed\x74\xc7\x3c\xf3\xfe\x6f\xdf\x0c\xe7\x49\xb7\xfc\x3e\xe1\x21\x1a\x03\x2e\x7f\xa5\x7d\xf6\x85\xc9\xa1\x45\x02\x75\x85\x34\xae\x96\xd2\xa4\x5b\x36\x25\xd4\xff\xdb\xf4\xdb\x24\xa1\x15\xef\x27\xb7\x57\xdb\x0e\xcb\xfa\x78\x4f\xdf\x1a\x6c\xa8\x89\xc0\x1e\x57\xce\x1f\x93\x6e\x88\x8f\x6b\x51\x1d\x17\xbf\xaa\x0e\x49\xaa\xac\x57\x92\xcd\x0b\x77\xdb\x2f\x39\x80\x1c\x30\x62\x5b\xf4\x33\x10\x2a\xf0\x1c\x15\x82\x76\x9b\xec\x59\x33\x26\x41\x0b\xe0\x96\xd3\xd2\x4c\xdd\x75\x52\x7d\xc5\xcd\xf1\x68\xdf\xe1\x18\xf8\xbc\xc8\xf2\xa1\xa7\xf2\x21\x7a\xc6\xaa\xf1\xde\x6a\xc0\x1b\xf7\x70\xda\x4f\x6b\x46\x02\x80\x4c\x23\x25\xe9\xe0\x9e\x60\xff\x15\x2f\x42\x83\xa6\x76\x0c\xa9\xc0\x93\x8f\x90\x57\x0e\x7a\x5d\xa4\x35\x71\x62\xd1\x6d\x92\x2d\x20\x52\x3b\xe2\xf2\x88\x37\xb0\x9b\x37\x52\xca\x59\xcb\x13\x3b\x9a\x2c\xa9\xda\xc6\x19\x2c\x84\xb6\x29\x01\x6f\xf8\xf4\x92\xba\xc2\x05\x52\xb7\x23\x44\x86\x1d\x0b\x4a\x1f\x74\xc6\xcb\x1b\x52\xee\xaf\x7d\xd1\xed\x4f\xa3\x97\xeb\x37\x72\x83\x31\xa3\x14\x66\xbf\xee\x3d\xb2\x82\x10\xcd\x5a\x5a\xaa\x45\xdc\x59\x32\x72\xb3\x19\x45\xb4\xaf\x16\xd1\xaa\x4f\x33\xd1\xcd\x55\x12\x23\x97\xb4\x35\x8f\xfa\x1b\x23\x81\xab\x50\x5c\x4c\x39\x05\x1c\x47\xfb\x94\xad\x15\x16\x08\x73\x70\x9f\xb7\x7e\xd8\x70\x62\xa2\xd6\x7c\xc2\x78\x5a\x84\x25\x0c\x3e\x1b\x98\x9e\xd4\xa5\x24\x63\xfe\x56\xca\xb5\x64\xdf\xb6\xc4\x42\x7e\xa8\xc4\x13\xff\x89\x6f\x16\xff\x2a\x9e\x54\xf4\xb7\xfa\x2e\xaf\x8b\xcf\x35\xee\x80\x16\x94\xf3\x83\xeb\xdd\xc5\x2f\xb1\xc3\xc5\x04\x7a\xe3\xef\x73\x9b\x79\xd2\x63\xec\x43\x63\xe4\xeb\x39\xf9\x8d\xef\xa3\x01\x04\x3f\x26\x36\x8e\x89\x39\xd5\x00\xb1\x4a\xa9\x36\x85\xa7\x0f\xa7\xad\x29\xda\xa5\xfc\xca\x4c\xd4\x56\xd7\x68\x08\x95\x68\x56\x73\xea\x77\x97\x88\x48\xb2\x73\x4a\xa0\xff\x66\xee\x0e\x48\x3f\x01\x3e\x14\x9f\x09\x87\xe5\x6e\x92\x66\xa9\x9a\x3a\xf1\x56\x7c\x62\x3e\xc4\x21\x5e\xc3\x7e\xe3\x05\x3c\x38\x56\xfd\xe7\xe0\x57\xdf\xfd\xb3\x00\xe1\x60\xb5\xee\x54\x5d\x61\x9a\x5f\xd9\xab\x78\x09\x1a\xc6\x57\x14\x71\x8b\xb3\x6a\xd6\x84\xc2\x99\x20\x74\x14\x00\x02\x03\x0e\x73\x7e\x06\xd8\x87\x7b\xfc\x4d\x98\xcd\xac\x52\x70\xfc\x54\x78\x20\x1a\xfd\x63\x68\xb8\xb6\x46\x3b\xf8\x4e\x7c\x17\xea\xbf\xbc\x56\x17\x98\x2e\x87\x0c\x34\xc3\x59\x5b\x61\xb9\x00\x49\xea\x18\x95\x8a\x23\xa9\x4d\x1b\x2b\x9f\xdc\xeb\xcc\x33\xad\xc4\xb1\x8b\x2b\x52\x59\x91\xca\xe1\x65\x8f\x3a\x7e\x73\xe7\x51\xfd\x56\x02\xa8\x0c\xb5\xaf\x8c\x4c\x17\x44\x56\x0b\xa3\xb6\x4d\x16\x6f\xb7\x3e\x44\x24\x5e\x3f\xb7\x1a\x16\x0b\x6f\x48\x26\x3f\x7a\x65\x12\x72\x67\x52\xd1\xcd\xe8\xa2\xa5\xd0\x26\xb9\x41\xfc\x2d\xe2\xd8\xf8\x33\xf5\xde\x29\x29\x0d\x40\x06\xc4\x0c\x50\x8d\x77\xd0\x7a\xf3\x9d\xaf\xa8\xce\x6c\x0a\x41\x70\x3c\x46\x23\x8e\xa0\x30\x04\xf4\xf3\x75\xfb\x48\xf6\xd2\x3d\xf2\x15\x07\x70\xf5\xff\x04\x2c\x02\x10\x3f\xc9\xdd\x07\x24\xcf\xdf\x42\x8f\xfc\xa4\x90\x70\xa5\x07\xb5\x45\xbf\xde\x10\xc8\x1a\xed\x41\xc7\x1e\xd4\x3f\xae\x2b\x86\x5f\x57\x87\x2c\xf9\xcf\x3a\x74\x7b\xf0\xac\xc4\x39\xbd\x39\xaf\xfe\x86\x7a\x68\xec\xd5\x7a\x4e\xde\xdd\x31\x96\x58\x6d\xf3\x69\xf4\x20\xa9\x1e\xec\x14\xff\x7f\xf9\xe5\x0f\xa2\x78\x3b\x48\xef\x56\xbd\xdb\x4d\xe7\x1e\x8e\x9b\x40\x33\x35\x6a\x5c\x9d\x77\xce\x88\x9f\x4d\xaa\x32\x81\x7e\x7a\xcd\xa6\xd8\x80\xfe\x97\xdf\x77\x43\x51\xad\x27\x8b\x5f\x1f\x22\xed\xb5\x1f\x63\x15\xc6\x28\x86\xd4\x9e\xd2\x2c\xbf\xdb\x86\x7d\x53\x26\x5d\x29\x63\xff\x5f\x86\x91\x56\xc2\x84\xdb\x74\xa4\x77\x31\xdc\x10\x89\x6d\x6e\xb2\xde\x5a\x8e\x84\x46\x29\x80\x4e\x4c\xdd\x79\x7e\x33\x60\x7f\xc1\xa2\x43\x3d\x58\x3f\x04\xcd\x3c\x2f\x40\xfb\x2c\xb2\xec\xe0\xf8\xa8\xa0\x02\x19\x8e\x5e\x67\x55\xf9\xde\xd7\x41\x5d\xd1\x24\x86\x16\x0b\x40\x4c\x48\x23\x58\x0d\x1b\xc1\x31\x49\x01\xf8\xd1\x22\xac\x87\xe4\xec\xdb\xfc\x03\x5c\xb4\xc2\xa4\xd7\x97\x33\x60\x8d\xf5\xc8\x85\xb8\x07\x8d\x1f\xe4\x4d\x55\x59\x70\x3f\xee\x9f\x68\xa9\x0e\x86\x15\x46\x42\x2e\x7a\xe2\x79\x7a\x2c\xfa\x1d\xdc\x17\xe1\x37\x7f\x72\x2b\xdd\xea\xc8\xae\x56\xfc\x5a\xf5\x6e\xdd\x05\x2c\xb7\x8c\x87\x02\x94\xc7\x19\x58\x0b\x9e\x6f\xfb\x1e\x30\x3c\xa0\xe4\x23\x15\x7a\x62\xc8\x2a\xc4\x55\x5a\xdc\x39\x2a\x50\x0d\x47\xab\x15\x96\xc1\xfc\xaa\xf4\x37\x0b\x3c\x60\xf0\x60\xfb\x83\xba\xba\x1b\x1a\x69\xfa\x42\xeb\x71\x23\xf2\x76\xbe\x98\x8b\x0f\x69\xbf\x7b\x7f\xe7\xb5\xc5\x26\x0d\xa8\xcb\x43\x87\x85\x2c\x5a\x4b\x33\xe2\xd8\xff\x76\x50\xe1\xf9\x01\x80\x42\x7d\x43\x66\xcd\xf1\x02\x59\x89\x94\xdd\x9c\xa9\xd6\x82\x29\x00\x79\x56\x9a\x23\x94\x95\xf7\xcc\x70\x76\xa4\x69\xc9\x55\xfd\xe5\x6c\x37\x4a\xe4\xc7\xc5\xea\xa3\x83\x75\x13\x27\xf7\x74\xd6\xdc\x14\x94\xfb\x53\x0f\xf2\xa5\x71\x22\x5a\xaf\xf0\x86\x6c\x3d\xa7\x73\xe2\xb0\x1f\xd7\x79\x94\x29\x4a\x85\x49\xa9\xaa\x68\x61\x5e\xa8\x4a\xe0\xdf\x71\x6b\x46\x09\x4a\x95\xb6\x42\xeb\x68\x21\x90\xba\xf2\x98\xf8\x3a\xdb\x4e\xb1\xef\x22\xe7\xe8\x84\xbb\x63\xc5\xb4\x3f\xa7\x9c\x7c\xf2\x80\x53\x55\x63\x45\xff\x05\xbb\x84\xb6\xd1\x83\xb7\x04\x96\xdf\x39\x83\x93\x1a\x45\x78\x56\x6a\xb9\x82\xdf\x65\xe2\xd4\x26\xfb\x12\x3d\x7a\xc7\x8e\x75\xc0\x74\x3e\xf0\x36\x9e\x03\x55\x33\x14\x46\xcd\x64\xa5\xc6\x03\x5b\x7f\xbc\x26\xf0\x19\x21\xc8\xb1\x24\x3e\x85\xce\xc4\xaf\xfc\x4d\x19\x27\x48\xc9\xff\xed\x82\xd6\xa5\x68\xbc\x3d\x55\xb8\x4d\x66\x8e\x3c\x92\x5c\x5a\xbf\x2e\xf5\x75\xc4\x55\x2b\x22\x73\x3a\x9c\xaf\x35\xcf\x6e\x35\x7b\xe3\x71\x3e\x2c\x34\x36\x55\xa2\xfb\xdf\x6b\x62\xb6\x0f\x12\x93\xd8\xbd\x16\x11\x90\xb4\x5d\xcf\x1c\x99\x2a\xd1\x8d\xad\x77\xeb\x0d\xe0\xee\x58\x79\xf2\xc0\x01\x14\xe1\x77\xff\xae\x10\x53\x31\x6e\xad\xca\x72\x7f\x69\xd7\xe7\x57\xae\xe6\x4d\x39\x75\xbd\xeb\x4b\x6d\x85\x0b\x82\x0c\xa9\x1b\x7c\xe9\x77\x9d\x10\xb8\xed\xd2\x52\xe6\x20\xff\x52\xa7\xa6\x49\x75\x89\xce\x3a\xf6\x88\x00\x0e\x2e\x97\xf7\xd5\x6f\x4a\x02\xe9\x51\xa9\x4b\xb3\xeb\x33\xcf\x0b\xd1\x9f\x5b\xf3\x1e\x9e\x05\xad\x7f\x18\x05\xb6\xcc\x51\x4f\xe9\xb4\x73\x6f\x86\xb4\x94\x0d\x14\x66\xad\xec\x5e\xda\x1e\x37\x04\xd6\x31\x4b\x61\x53\x6f\xee\x38\x50\x75\x22\x0c\x12\xbe\xd5\xb0\x33\xaf\x53\xea\xf7\x34\x67\xa9\xf1\x73\x3b\x75\xd9\xd2\x6f\x8b\xff\xed\xce\x84\xd5\x08\x3d\xe2\xed\xdf\xf3\x94\xb2\x49\xb1\x19\x1b\x54\x7e\xdd\xd7\xa3\xbc\x6c\x52\x7f\xf3\xc5\x8e\x40\x3c\xaf\x72\x85\x26\xe8\xe8\xbd\x3f\xc6\x13\x96\x07\x8a\xff\xe5\x4f\xfd\x0e\xd5\xf7\xb6\x5c\x9b\xee\x4c\xbb\x61\x67\x22\xeb\xbc\xa3\x3e\x54\xae\xa1\xbd\x9f\xce\x5a\x5c\x85\x7d\xf8\x1c\xe2\xd1\xa7\x2d\x9a\x85\xd9\x15\x3f\xcb\x60\x81\x6c\x59\x6a\x42\x59\xaf\x89\xd7\xf1\x76\x7f\x5c\xd8\x70\x62\x7d\x39\x4a\x64\xed\xa7\x55\xd5\xdd\x42\xd2\x11\xbe\x5f\x0d\x6d\x1e\x09\x0d\xa0\xac\xee\xaf\xcb\x9a\x1b\xb3\x4c\x69\x47\x9f\x26\xef\x10\x1c\xab\x0f\x75\x36\x7f\x59\xfe\x70\x92\x63\x27\x01\x91\xa3\x00\x87\x7e\x17\x1b\x4e\x4e\xd4\x9f\xea\x76\x0d\x25\xd1\xba\xdf\x13\x25\x0f\x68\xc9\xac\xa4\xd5\x23\xab\x68\x6f\x5d\xbd\x76\x43\x9d\x5f\xa3\xfe\x3b\xe5\x67\x62\x7f\xcc\x0e\xa7\x23\xb9\xc6\x5d\x42\xbe\xd2\x13\x43\xb8\x0f\x3a\x45\x12\xbe\xa4\xe9\xf3\x55\x75\x2a\x63\xd2\xb4\x54\x64\x51\x94\x02\x88\xb4\x9a\x77\x67\xb5\x38\xff\x1c\x33\xe6\x27\xd0\x0a\x6e\x27\x9c\x01\x4e\x7e\x72\x92\x5a\x50\x53\x13\x8e\x5f\x7e\xe7\x53\xbd\xec\x0f\xd3\x73\x1d\x2b\xc7\x3d\x99\xcd\xc7\x3b\xed\xbe\x60\xb1\x25\x53\xfa\xf7\x51\xcb\xf3\x28\x85\x68\x41\x53\x9d\x1f\xa6\x3e\x71\x77\x9d\xf6\xda\x8f\xa7\xea\xf8\x7e\x2b\x61\xfd\x8d\x32\x26\xc2\x2d\x3f\x75\x91\x55\x0a\x11\xb4\x19\x2f\x96\x02\xaf\x46\x72\xeb\xb6\xbf\xe9\x44\x13\x29\xed\x0a\x1a\xa5\xa8\x7f\xf2\x6b\x39\x52\xf8\xfd\xa1\xce\x32\x19\xaa\xb8\xf7\xcc\x52\x07\xdc\x47\x94\x7a\xe8\xd3\xaa\x87\x7a\x2f\xbe\x6d\x0f\xf6\xc7\x07\x26\x25\xeb\xd1\x58\x62\xab\x0d\xb7\xcf\x4c\xaf\xc6\x03\x99\xf5\xaa\x26\xe3\x6a\x69\x5c\xfa\x48\x57\xae\xd1\x3e\x86\xd5\xf1\x31\x8c\x1c\x56\xc0\xe3\x0e\xc3\x6b\x5e\x91\x37\xf5\x6d\x01\x49\x48\x16\x4d\x72\xbf\x43\xa9\xbb\x92\x0f\xae\xbf\x91\x61\xc2\x37\x53\xa0\x26\xa4\x0c\x3d\xec\xfd\x67\x9c\x0a\x26\xae\xaa\xea\xc4\xcf\x82\x5c\x61\x58\x21\x85\xb5\xa4\x5f\xb2\xbf\xe8\xb9\x4d\x1c\x92\x00\x9e\x1d\x0c\xbf\x1c\x97\x47\x1e\x8e\x2c\xe4\x51\x8a\xa9\xb9\xcc\x54\x1a\xcb\xd4\x60\x3a\x7e\x99\x73\xbc\x74\x88\x8c\xf5\xf5\xd5\xba\x0a\x51\x5e\x22\xb0\x6c\x7b\xa8\xda\xa9\xfe\x6a\x09\x8f\x13\xcb\xde\xc1\xcc\x56\xc6\x80\x01\xc6\x1c\xb5\xfa\xfa\x0e\x5b\xae\xad\x84\x63\x69\x51\x19\xde\x04\x93\x1a\x61\xa6\xf1\xdf\x50\x26\x39\xd4\x95\xb1\x8b\x37\x47\x0e\x17\xcf\x58\x4c\xae\x24\x4d\xda\x29\x3f\xc5\x40\x50\x59\x43\x58\xb9\x55\xdf\x09\xaa\x0e\xb0\xa8\xf6\xb3\xa8\x92\x26\xb3\xf2\x06\xc0\x2f\xa6\x3b\x6a\x34\x15\x67\x2a\xff\x3a\xb1\x59\xf8\xf8\xaf\x8d\x0d\x63\x95\x9b\xea\xab\xbe\x76\xe5\xa8\x40\xe9\xb9\x9e\x28\xf2\x76\x6d\xda\x4d\x75\x43\x75\xf0\xe7\x91\x9e\x97\xce\x67\x14\xc3\xdd\xce\xb3\x48\x1c\x31\xd9\xcb\x9c\x4f\xae\xa2\x4f\x33\x79\xca\x59\xb9\x79\x92\x26\xb3\xd9\xc8\x33\xa9\xb6\x1b\x41\x00\xaf\xdc\x69\x0d\x3d\x6a\x75\xc0\x73\x3d\x64\x42\x40\xf8\x49\xd5\x57\x97\xb6\x5a\xda\x94\x6f\xf5\xde\x0c\x46\xe9\x9f\xe8\x11\x29\xca\x17\x81\xb2\x49\x78\xcf\x2a\x1e\xd1\x30\xf8\x70\xef\x22\x6b\xb0\x52\xc9\xe8\xde\x63\xf4\xde\x3d\x09\xd0\xa1\xed\x69\x24\xbc\x0a\xc4\xf1\xee\x23\xb7\x62\xeb\x8d\xc2\x29\x6c\x94\x4a\x2a\x13\x2c\x4e\x6a\xac\xce\xc9\x9d\xdd\xb1\x35\x9f\xcb\x11\x6a\x75\x49\xc9\x66\x70\x86\x06\x74\x80\xa8\xe8\xac\x5c\x09\x29\xe5\xcc\x5c\x09\xb1\x13\xd5\x52\x07\x8a\x56\x8b\x8a\xac\xba\x9d\xfa\xdf\xc5\xc7\xc5\x76\xb1\xd4\x7c\xfd\x78\xce\x59\x25\x55\x28\x38\x3b\x57\x35\xf7\x77\xca\xb0\xa2\x7e\x26\x3a\x0b\x17\xea\x3e\x7a\x59\x91\xb9\x3c\x41\x99\xb5\x14\x85\x52\xef\x60\x70\x84\xe5\x2e\x48\xe0\x17\x08\xdf\x04\x69\x7a\x1c\xf6\x3e\x6b\xba\xba\x4b\x76\xad\xc5\x21\x3f\xaf\xbc\x6a\x8f\x0d\xd6\x22\x09\xf3\xc3\x07\x8a\x5c\x29\xde\xdf\x29\xa9\xa0\xc5\xa6\xba\xa1\x66\x6f\x44\xfe\x2a\x10\x0e\xff\xd5\xda\xa2\x35\x59\xfc\xbe\xe2\xbd\x6f\xbf\x86\x61\x73\x1c\x81\xa0\x17\x21\xbf\xbe\x40\xa3\x11\x33\xd0\x3f\xfd\x02\x65\x19\x73\xc5\x19\x53\x34\xfc\xd1\xbd\x45\xb7\x24\x00\x42\xa6\xfe\x77\x66\x25\x6d\x13\xbc\xe6\xd0\xd1\xa9\x1a\x13\xf2\x1c\x61\xa9\x18\xd2\xba\x2f\x56\x67\xc6\xcc\x9d\xfc\x44\x38\x4d\xe5\x60\x4c\xb6\xb6\x47\xc7\x2a\x3e\x9b\x85\xdb\xf4\x6d\x82\x2a\x23\xb6\x7e\x17\x7d\x24\x5c\xf5\x15\x59\xbd\x55\xd1\xce\x44\x1f\x51\x1d\xf7\xce\xa5\xd7\x38\x08\x93\x1b\xa7\x12\x44\x1f\x60\xc9\xe6\x8a\x89\x15\x65\x1e\x4d\x5a\x73\xc8\xb1\x1b\x56\xb6\x16\x62\x4d\x56\x41\xb1\x53\xc0\xf5\x32\x8c\x68\x77\x71\x70\x71\xa5\xb7\x45\x99\x14\xd2\xef\x2f\xc3\x78\xb0\xfc\xd1\x00\x2d\x1f\xc1\xc4\xe3\xc8\xb4\x9c\xc2\xbf\xb9\xd2\x09\xeb\x0e\xf1\xa9\x8a\x7c\xc2\xe2\x1c\xe1\x7d\xb8\xae\x73\xe0\x55\x42\xbd\x8f\xd6\x1f\x37\xf2\x23\xfb\x92\x02\x1e\x55\x0a\x17\x95\xac\x0d\xb8\x1a\x37\x58\x2f\x61\x8f\x68\x8e\x12\xfe\x9e\xd0\xfe\xab\xf1\x26\x75\x2b\xef\xae\xc7\x5b\xbf\x01\x99\x58\x93\x7f\xc7\xe0\x6e\x8c\x71\x9f\x06\x81\xbf\xc3\xa2\xe3\xa0\xcf\xbf\xdd\x1e\xd2\xd9\xf4\x08\xca\xb3\xa5\xaa\xe2\xdc\x46\x38\x69\x5a\x37\x1c\x06\xb6\xf4\xd3\xd7\xe4\x6b\x16\xe0\x48\x3a\x79\xef\x8e\xbb\x89\x0d\x1c\xae\x7c\x1f\x63\xc4\x76\xf1\x1c\xcc\x54\x71\x6c\x82\xd6\xe0\x7b\x65\xc1\x1f\x5e\x7f\xbd\x95\x1f\x32\x23\xe6\xcb\x92\x85\xad\x8f\x6e\xec\xd4\x79\x30\x2c\x7a\xfd\x45\xdd\x4e\xc1\x20\x75\x14\x18\x0a\x06\xa9\x87\x2c\xae\x95\xb1\xc6\x5f\x9e\x8b\x3c\x6d\xd4\x56\x8c\x1f\x39\x57\x3c\x63\x64\x0c\xb2\x1b\x9d\x5f\xe8\x38\xfe\xf7\xd1\x41\x69\x74\x7e\x02\x26\xc9\x06\x96\x7b\x5b\x81\xe7\xc4\x7a\x3e\x3f\xe0\xad\x7f\x9b\xab\x34\xd6\x51\x39\x32\x47\xb2\xc6\xc6\x67\xa8\xed\x7b\x7c\x3b\x7c\xf3\xe1\x38\x93\xc3\x67\x08\x42\xb2\xfc\x21\xab\x03\x0f\x52\xf4\x0e\xaf\x54\xf4\xd5\xf1\xda\x50\xd6\x9f\x7a\x2d\x2d\x3f\x3a\xcd\x66\xf8\x41\x2d\x76\x3b\xec\xe2\x3b\xbd\xcf\xc6\x43\xf9\xe3\xb2\xce\x38\xb7\xa4\x1d\x0f\x35\x7a\xbe\xf7\x2f\x06\x30\x6a\x8e\xe9\xd4\x13\x03\xb5\x0a\xd6\x90\x73\x22\xf6\x09\xc0\x90\x94\xff\x32\x13\x91\x66\x78\xd2\x8d\x16\xd5\x47\x03\x74\x82\x6d\x1b\x6f\x92\x6d\xed\x68\x36\x50\xbf\x19\x94\xad\x74\x33\xcf\x7f\x93\x79\xc9\x0b\xce\x0d\x76\x05\x11\x84\x9e\x62\x75\xd1\x81\x02\x6e\x9b\x19\x56\x73\x18\x88\xab\x03\x4f\xf5\x01\x77\x15\x97\x7a\xe6\xf4\x98\x99\xc1\x03\x79\xcf\x05\x54\x47\xf8\x5a\xf4\xc0\xcb\x4d\x4f\x5f\xf9\x65\x27\x8a\xcd\xe3\x55\xca\x0b\x62\xcc\xfb\x46\x8c\xd0\xca\x36\x75\x32\x2d\x7e\xc3\x40\xb3\x0e\x86\xfe\x97\xc2\xa8\xa9\x94\x80\x0a\xc2\xfb\x37\x9d\x7f\x8d\xbf\x9c\xce\x55\x0b\xa3\xe4\xdc\xac\xed\x48\xbe\x6e\xa8\x24\xa8\x6f\xe9\xc2\x03\xec\xae\x9f\x2f\x78\xfe\xcd\xe8\xff\x97\xfc\x19\xc7\x14\x36\xa5\x73\x5e\x1c\x31\xc2\x0d\x9d\xaa\x18\x4e\x4c\x14\x5d\x90\x17\xb5\xd1\xb2\xc0\x55\x47\xdc\x49\xad\x08\x25\x10\x27\xa9\x0e\xf6\xb0\x6a\x16\x30\x71\x55\xbd\x9b\xb5\xa9\xcf\xf5\x0c\x32\x3f\xda\x5c\x3f\x7a\x62\xb8\x6e\x02\x2d\x51\xc9\x44\x77\x05\xbb\x7d\xdf\x35\x9f\x4f\x5b\xe9\x5e\x19\xf7\x17\xf8\x2d\x37\x31\xa1\x9a\xc1\xf9\x9b\x01\x55\x6e\x75\x5a\x61\xd6\x93\x4c\x1a\xf0\x8a\x30\x5f\x17\x07\x87\xc8\x55\x0f\xb3\x07\x5a\x39\x68\x1a\xa3\x7c\x15\xa0\x17\xbb\x9c\x6e\xe0\xb6\xc2\x3d\x1c\xb7\xb2\xa9\xc2\x41\x02\xa3\x48\x1d\xf5\x3c\xc6\x69\x01\x4b\x45\xb7\xc5\xaa\x08\x8b\xaa\x7c\x4e\x71\x5d\x59\xc7\x36\xe5\x2e\x26\x70\xa5\xd8\x6a\xb2\x7a\xc3\x59\x0e\xc1\x61\x7e\x1f\x57\x91\xd5\xff\x0f\x5d\x09\x75\x55\x24\x3c\xad\xcc\xfd\x98\x19\x88\x34\x6d\x5f\x3e\x76\x79\xa7\x6e\xdf\xc8\x81\xa4\xe3\x7b\x25\x76\x20\xf0\xf6\x9b\x70\x11\x5e\xc4\x6b\x09\xdd\x58\xe8\x9f\xf8\xaf\xad\xce\x47\x52\xcc\x39\xc7\x1e\x82\x72\x5b\x20\x9b\x6a\x6f\xfe\xe0\x84\xc9\x4f\xaf\x43\xe6\xdc\x05\x80\x2a\x3c\x9e\x63\xa6\x03\xed\x10\x27\x82\x0e\x21\x64\xce\x2a\xf4\xd9\x32\x5f\x4e\x27\xcb\x81\xbe\x85\xb9\x4f\xdf\xd6\x66\x79\x7a\xa6\xef\x7a\x33\x8c\xf3\xf7\x4a\xec\x0b\x5f\x0a\xbe\xd6\xc9\x10\xca\x52\x14\x98\x9e\x58\x24\xaf\xd2\x9f\xdd\x94\x89\xbb\x25\x6f\x72\x96\x64\x7c\xe1\x62\xa6\x90\xfa\x6c\x70\x51\xfe\x36\xab\xcc\xd2\x8f\x96\xf0\xb8\x7a\xd5\x03\xfc\xf0\x1c\x04\x90\x92\x51\xbd\x52\x3f\xf4\xa5\x18\x6e\xff\x3d\xe1\x35\x9f\x98\x12\xc9\xd3\x6e\xb3\x68\x98\xbb\xc3\xa3\xf9\x0a\x69\xa4\x65\x7a\xe7\x5e\xe8\x1d\x4f\x8f\xeb\x99\xde\x21\x0d\x52\xdf\xf2\x1b\xc6\x6c\x9b\xf0\xba\xd3\x18\x67\x18\x21\x0d\xb6\xe8\x34\x31\x63\x7d\x05\xcd\xce\x28\xef\x67\x05\x56\x9f\x1f\xe8\xae\x04\x6a\x4b\x7f\x2f\xc7\x69\x93\xd3\x8b\x27\x73\xe4\xd3\xf8\xc3\xa2\xca\x4e\xfe\x61\x2c\xd4\xca\xf2\x2a\x9c\x7e\xc2\x48\xca\xed\x5a\xba\x46\x53\xfd\xd1\x4d\x29\xec\xdd\x1b\x7c\x2e\xaf\xa0\x9e\x1f\x05\xda\x7a\x16\x57\xb1\x3e\xc2\x0d\x8a\xe8\x77\x55\x37\xfb\xa1\xa7\x1e\x5d\xf7\xf3\xbe\xb5\x2b\x90\x2e\x33\x05\x8b\x07\x0e\xe7\x7f\xd5\xe1\xed\xad\xd9\x43\x63\xc8\x05\xc3\x24\x34\x3d\xf2\x45\x99\x06\x9e\x47\x7e\x25\x5f\x8d\x2f\x0b\x60\xd0\x02\x62\x60\xe2\xa5\xea\x48\x43\xbb\x5f\x67\xe4\x35\xc2\xb3\xca\xfa\x47\xa2\x8b\x2f\x91\x48\xdc\x02\x6b\xc2\x7f\x85\xb7\x55\x67\x24\x76\xb6\x83\xcf\x52\x36\x96\x74\xa5\xe8\x67\xb9\x40\x6a\x60\xc0\xe3\x57\x51\x96\xb6\x71\x33\x61\xfe\xfd\x1c\x18\x00\xc2\xd6\xff\xfd\x4a\xf3\x16\xfc\xa4\x30\x13\x9e\x66\x27\x59\x0f\x5e\x2d\xab\xe3\xc9\xce\x94\xc2\x5b\x29\xaf\xfd\x8b\x17\x61\x65\x15\x3e\x8e\x71\x87\xc6\x79\xab\x6d\x2e\x4a\x11\x94\x44\xbf\x78\xc9\x33\x80\x8e\xa2\x16\xb3\xa6\x17\xfa\x60\xfa\x4e\x50\xf5\xaf\x78\xcd\x48\x76\xb3\xc3\x63\xc9\x50\xe3\x3d\x32\x99\xe8\x8a\x35\xe5\xec\x49\x24\xe1\x63\xec\x72\xce\x53\xb3\x2e\x7a\x59\x98\xaf\x2c\xcf\x04\x32\x15\xf9\x01\x75\xac\x62\x22\xe4\x17\xb3\x58\xe8\x1a\x2a\x45\x78\x75\x8f\xf7\x79\x8f\x96\x37\x26\x6d\x7b\xe3\x5d\x48\x65\xfc\x0a\x7e\x52\xb5\x80\xf0\xb3\xea\xfe\x5b\x75\xa1\x7a\x08\x4e\x9e\xe8\xcd\xe2\x3f\xb1\xc3\xd7\x07\x33\x5d\xf7\x58\xe6\x6a\x54\x7f\x1e\x84\x6b\x84\x40\x1a\xeb\x82\xfa\x4c\xde\x35\x14\xb4\x00\x30\x24\x25\x6f\xb0\xe9\xdd\x13\xc3\x3f\x7a\x04\xb2\x31\x74\x93\x10\x97\x90\x9b\xc2\x2d\x2a\xc3\x91\xec\x60\xd1\x1c\xaf\xef\x46\x93\xba\x29\xa6\x35\xd9\x2a\x0e\x05\x36\xae\x1e\x27\xa0\x78\x52\x9c\x88\xe9\x1e\x04\x80\xd1\x0d\x0f\x91\xea\xb3\xa0\xdb\x96\x86\xfb\x2b\x74\x4e\xf2\x2e\x92\x99\x1b\x09\x7f\xeb\x2f\x81\xfb\x96\x90\xbf\xaa\x1b\x99\xb9\xf8\x05\x1d\xb2\x95\xbe\xed\x57\xed\x34\xd3\xf8\x42\xf8\x35\x5e\x99\x72\x90\x88\x83\x95\x34\xde\xee\xb3\x58\xae\x19\xe6\xe0\xc9\x86\xf0\xe6\x82\x46\x1b\x8f\x59\xd6\xb9\x41\x11\xa6\xe0\xf1\x09\xed\x39\x4d\xc0\xca\xe6\x50\x67\x4e\xf1\x8b\xf2\xc4\x3e\x8b\x66\x41\x31\xf7\x80\x60\xb3\x1d\x63\xf4\xfa\x7a\x43\xbd\xec\x78\xeb\x17\x39\x65\xc2\x03\x02\x1f\x6d\xc0\x53\x19\xe8\x82\x15\xd4\xcb\x5a\xf7\x70\x81\x62\x2c\x78\xcf\xf9\x3e\x4c\xd0\x2f\x2a\x22\xf0\xa7\xe5\x70\xc4\x00\x69\xd2\x14\xb5\xc6\x1a\xa3\x4b\xd5\xe6\x49\x48\xc0\xec\x45\xb1\xab\xe7\x6d\xd2\x65\xfc\x24\x31\xca\x74\x90\x12\x2d\xb8\x1e\x13\x78\x4a\xfe\x20\xc5\xa4\x64\xae\x5f\x56\x95\x6d\xa5\x9b\xe9\x87\x7c\x08\xba\xcd\xd4\x8b\x55\x91\x69\x19\x34\x53\xc3\xc3\xb5\xe3\x7b\x91\x80\xf8\xf9\x53\x13\x2f\x27\x10\xce\x36\xa1\x7d\xab\xd4\x89\xff\xfc\xd6\x2e\x12\xde\xd7\x28\x43\x29\x80\x63\x37\x7a\x24\x8b\x6f\xa7\x48\x04\xa1\xb7\xd3\x82\xda\xf1\x77\x53\x0f\x8d\xe9\xb1\x01\x81\x32\x46\x65\x6e\x6f\x08\xed\x26\x68\x6a\xaf\x64\x5e\x92\x93\x20\x8e\x20\xca\x6e\xa7\xaf\xd6\x36\xa6\x40\xa3\x09\x7a\xb9\x45\x63\x62\x50\xd7\x8a\x19\x64\xe5\x63\x34\xbd\xb1\x48\xb4\x47\x07\x72\xd9\x75\x69\xbd\xbf\x7b\x61\x7a\xd0\xf5\xfa\x10\x39\xa6\x78\x51\xc1\xb7\xf5\xc1\xac\x6b\xa9\x32\x04\xe4\x3c\xfa\x3e\x02\x19\x3b\x9f\x8b\xf6\xbd\xfd\x71\xf9\x61\x4e\x60\x87\xa9\xb8\x8e\x36\xea\x0c\x13\x97\x39\x07\x1d\x18\x04\x30\x0d\xc5\x96\x6a\x64\xc8\x5a\xf2\x3b\xd0\x80\x18\x8a\x23\xac\xbf\x84\x74\xe5\xd4\x72\x39\x24\xdc\x4b\x0c\x10\xd0\x31\xdb\x93\xc5\x53\x29\x44\x0d\x56\x0a\x77\xa8\x19\xfd\xe8\x43\x1e\x15\x55\xca\x99\x8a\xf3\x04\x0c\x81\x42\x2f\x00\x2b\x42\xf6\x5f\x22\x70\x51\x6e\xc7\xf0\x90\xdc\xd1\xa5\xb8\x6d\xca\x5c\xd7\x2b\x64\x28\x5a\x95\xb7\xe5\x0f\x0d\x16\x60\x5c\x56\x35\xb4\x9e\x3c\xfd\x6c\xee\xcb\x0e\x52\xd7\xee\x20\x9b\x0e\x3b\xd5\x3c\x1b\x8d\x68\xef\xda\xda\xb1\x94\xbd\xdb\x5e\xf4\xb9\xaf\xb0\xa6\x9d\x1b\x79\x95\x00\x10\x05\x92\x8d\xba\x79\x9e\xd4\x5b\x00\x74\xb8\x92\x1d\x84\xff\x2c\x5d\x9d\x85\xcd\x86\xd4\x95\x8a\x75\x43\x83\xf0\xd0\xab\xa4\x1e\x44\xe4\x50\x3b\x77\xa5\x45\x34\x00\xa4\x30\xa6\x3a\x15\x58\x2c\x3b\x2f\xa1\xee\xd1\xd8\x95\xc1\x2a\x34\x00\x1f\x10\x93\xc0\x5e\xa8\x1d\xfe\xf3\xae\x25\x45\xaa\x03\xe4\x2e\x9b\xbb\xf0\x63\xc8\xdf\x78\xac\x63\x11\xed\x8f\x57\x10\x70\x72\x9d\x7c\xf5\x0b\xc8\xf9\xf7\x5e\xb0\xf6\xa2\xf0\x52\xf4\xdf\xa7\xeb\x15\x79\x4a\xb4\xc8\x77\x1b\x8c\x38\x29\x04\x95\xd5\x14\xc7\x7d\xfc\xbf\xde\xbf\xff\x89\x5f\x2c\xda\xf8\x88\x1d\xf4\xb8\x29\x99\x8b\x49\x18\x2c\xa8\x48\xe5\x1c\xd3\xb7\x9b\x90\x74\xf5\x07\x97\x98\x7f\x7b\xec\x5a\x9e\x64\xbf\x07\x40\xb0\x6f\xb7\xf5\xda\xa8\x5a\x87\x6a\x86\x0b\x1f\x3b\x0f\xab\x0e\xd3\x19\xc7\xc6\xf6\x53\xe3\x45\x14\x30\x89\xdc\xe9\xa7\xfa\x52\x6d\x7f\x95\x72\x13\x52\x0e\xa3\x1e\x35\xbe\x21\x90\x35\xeb\xd8\x65\x78\x30\xf4\x8c\xea\x25\xf8\x6c\x7d\xaa\xb8\x7f\xfd\x44\xf8\xce\x31\xac\x93\xa7\x93\xea\x53\x33\x0a\xec\xfc\x8e\x0d\xfb\xbe\xe5\x20\xed\x7e\x86\xe0\xfa\x20\x39\xb4\xf3\x09\xdd\x6b\x50\x00\x8b\x16\xee\x00\x39\x67\xa4\x2f\xa7\xa5\xab\xb1\x30\x58\x81\x8f\xe4\x69\x4c\xe6\x0b\xf4\xaa\x2b\x26\xd0\x97\x90\xa2\xc8\xe7\xd6\x23\x8b\x57\x89\xc7\xa3\x4d\x6e\xf0\xbe\xe8\x53\x26\x86\xc7\x31\xf6\x14\x4e\x8e\x25\xc1\xa4\x7b\x0b\xd8\xac\x94\x1c\xc0\x39\x37\x90\x77\x75\x15\x34\x7f\xc4\x96\xcc\xbb\x46\xf3\xe5\x84\xa4\xf8\xb9\x0e\x15\xeb\x58\xa7\x06\x2d\x4c\xd3\xf6\x44\x1c\xfc\x9c\xdd\x62\x35\xff\x2e\xb8\xe4\x1b\x00\xb7\x09\xef\x6f\x15\xaa\x3d\xb2\x01\x4e\x68\x05\x47\x38\xb3\xf9\xc9\x3c\x84\xe7\xe7\x3f\x10\x10\xbf\x29\xe0\xcc\xa0\x8f\x82\x3f\xcd\xb7\x8b\x40\x08\x07\x3e\x53\xf1\xe1\x58\x35\x7f\xb1\xb6\xbd\x53\x5b\xac\xd6\xcb\x52\x3a\x40\xaa\xd6\x25\x27\x71\xdd\x13\xa7\xd7\x5a\x3a\x66\xe0\x44\xf3\xad\xb7\x75\xac\x8e\x60\xdc\x9c\x57\x26\x02\x47\xf2\xc7\xbb\xa8\x39\x77\xcf\x45\x05\xe0\x53\x18\x45\x09\x3e\xa7\x33\x79\x1a\xea\x98\x36\x76\xfe\x4d\x17\xba\x37\x3b\x40\xe9\x99\x26\x61\x92\x41\xe3\x27\x14\xaf\x8e\x15\x7a\xbd\x9e\x00\xcd\x02\x23\x9f\x5b\xaf\x78\x2f\xb8\xe8\x27\x76\xdf\xe7\xf1\x77\x86\x93\x0e\x7e\xde\x52\xb8\x28\xef\x0e\x22\x7e\x23\x57\x57\x2f\x03\x77\xc5\x7d\xd9\xd3\x8d\xbf\xdd\x96\xca\x3e\x26\xad\x9c\x7b\x94\x6b\x9a\x77\x6a\x33\x30\xf4\xab\xd8\x3e\xda\xc2\x81\xd8\xcb\xb8\xc5\xac\xaf\xd4\x4c\x61\x92\xb8\x9c\xf1\x64\x56\x08\x9b\x06\x7c\xf2\x18\xfd\xe3\xde\xd4\x2d\xf4\x47\xc3\x86\x66\xd2\x9a\xb9\x7c\xa9\x96\xa6\x0d\xd6\xfc\xcf\xdc\xb0\x31\x64\x6f\x48\x65\x3d\x12\x0c\x3c\x75\x76\xb7\x38\x55\xdc\x6f\x3a\x7d\x8d\x62\x77\xbe\x65\x87\x74\xf8\xd1\x12\x87\xdb\x57\x39\x5a\x67\xc3\xd1\x1f\x3d\xa7\x84\x43\xf4\xac\xc2\x72\x70\xb1\x08\x81\x28\xb8\x90\x95\x0e\xe6\xea\xc5\x3f\xd3\x4f\x27\xbc\x98\x0e\xb2\x85\xc2\x21\xb0\x3d\xef\x00\x73\xbd\x56\xa8\xab\x20\xac\x83\xa3\xd3\x44\x77\xe6\x89\xdc\xea\x34\x79\xa3\xae\x66\x0a\xd6\xe1\xf3\xad\x6f\x7d\x89\x52\xcc\xa0\xb7\xc1\xc0\xba\x60\x14\x3b\xf9\xcf\x9e\x76\x9a\x8d\xde\x18\xfd\xe5\xbd\xe7\x68\xa8\x42\x1b\xe6\x98\x65\x19\x12\x1b\xb8\x5b\xff\xb4\xbf\xdf\x0f\x43\x11\xac\x9f\x9c\xf3\x7e\x7b\xef\xab\xaa\xc8\x08\x3b\x59\x4a\x95\xbb\xca\xfe\xf9\x75\x91\x39\x54\x05\x9f\x3c\xd2\xff\x8e\xe0\x27\xae\x9e\x94\x9b\x1b\x1b\xf6\xfd\x3f\x53\x87\x13\xde\xa1\xc3\xb8\xb7\xae\xa3\xf7\x59\x4f\xff\xa0\x05\xc5\xaa\xd3\xe5\xbd\x26\x62\xe6\x8e\x2a\x67\xa6\x88\xa0\xae\xf9\x05\x0d\x4d\x3f\xba\x5e\xc0\xf3\x2a\xcf\xd4\x87\xc0\xb8\x57\xc0\xe8\x7b\x91\xe7\x44\xec\xaf\xa9\xc0\x06\x9a\x7a\x7f\x63\x52\x41\x65\x1d\x2b\xe9\x9e\x2c\x71\x68\x96\xef\xcf\xed\x50\xda\xc0\xa8\x35\xed\x3c\x54\x43\xf4\xa2\x37\xae\x33\xdb\xf1\xc1\x08\x02\xb6\x88\x51\xb3\x3b\x70\xfb\x40\x3b\xbf\x60\x0d\x46\xaf\x94\xc2\xaf\x1c\x27\x1f\xf3\x2b\x30\x54\xb1\xdb\xcd\x29\xe2\x41\x41\x58\x9d\xd8\x31\x02\x24\xc1\xf0\x05\xf9\xd9\x05\x41\x73\xac\xd4\x38\xcc\xef\x37\xcb\xfb\x16\x26\x0b\x11\xc2\xc2\x36\x24\x15\x57\xfc\x56\xc3\xf7\x3e\x8e\x7e\x3f\x0c\xe5\xbd\x2a\x4a\xc7\x23\xbf\xd3\x1b\xd3\x31\xbe\xf6\x2e\xff\x31\x7a\xb8\x54\x5f\x2d\xcf\x77\x3c\x69\xd2\x5a\x71\xad\x8a\xa4\x40\x54\x16\x60\x1d\x78\x75\x15\x47\x7c\x09\x8b\xd2\x7d\xc8\xa6\x77\xd0\x26\x77\x1b\x29\xb6\xb3\xce\x6c\x44\xe3\xb1\x44\xab\x5c\x3e\x1a\xf0\xcb\xed\x54\xdb\x1d\xd1\x0e\x52\x7a\x5d\xc2\x13\xef\x68\x28\xbb\xcc\x14\x78\x7e\x4b\x18\xd5\xdb\x49\x78\x5c\xe4\x5d\x65\xe7\x7e\x89\x27\x21\x28\x8c\xec\xa2\x5a\x23\x06\x23\xa1\xe6\x03\xf9\x26\x3f\x47\xf6\xf1\xf1\xf1\xb1\x81\xef\x8c\x39\xa2\x78\x1f\x2a\x72\x9a\x48\x2c\x05\xf5\xdf\x32\x96\x02\x4e\x80\xc3\x13\x13\x8e\x5d\x07\xd2\x3c\x2c\x33\x35\x52\x49\x88\xde\xcb\x1b\x72\x40\xd1\x62\x5b\xa5\xc3\xb7\x5e\x4d\xc3\x84\x5a\x1b\x0b\x81\x71\xe2\x7f\x24\xbe\x28\x0f\x6f\x1a\x35\x0c\xf3\x30\x3d\x4a\x67\xbc\x06\x6c\x88\xa3\xa2\x0d\xc1\x39\x32\xee\xb5\xc5\x95\x71\x15\x18\x66\xbd\xdb\x12\x00\x03\xc8\x29\xe3\x5f\xee\x32\x72\x6e\xcb\xf1\x2a\x17\xe5\x53\x3b\xe0\x8b\xc3\xf7\x8e\xf0\xbe\xb9\x17\xf3\x8d\x91\x2f\xff\xef\x9d\xc7\xea\x5b\xaf\xab\xbb\x69\xe1\x2d\x91\x37\xba\x13\x35\x4a\x10\x18\x36\x69\xff\xb0\xf9\x88\x68\xb9\xb0\x15\xcd\xf0\xaf\x50\xc0\x67\x89\x47\x1a\xcb\x5c\xf9\x47\x8f\xf5\x40\xab\x98\xa9\x7a\xb9\xc2\xe7\xcf\xbd\xeb\x67\x77\xcd\x89\x53\xfe\x47\x49\x74\x77\xad\xb8\x8a\x51\x04\xcb\x42\xcb\x2b\x22\xc0\xaa\x78\x5f\x9a\x9b\xea\xb1\x6d\xc9\x47\xed\xfe\xef\x16\x37\x73\x49\x7a\xce\xa2\xe6\x12\x36\xa5\xa2\x4a\xa0\x13\x3f\xca\xbb\x2b\x0f\x2a\x2b\xc6\x9c\xd1\x34\xad\xa5\x6e\xbc\x0e\xb9\x6b\x6c\xc2\xce\x24\xbd\x5f\xc5\x1a\x68\xa2\xb9\x5f\x8f\xa6\xbc\xd4\x9f\x87\xef\xb2\x7d\x6c\x4c\xc3\x28\xfe\xd1\x9a\x0d\x40\x43\x7c\xaa\x2c\xb1\x63\x5f\x3c\x4a\x5b\x77\xde\xf6\x86\x89\x89\xe0\x94\xdd\x02\xb9\x18\x6a\x51\xfc\xd0\xd5\x61\xa1\x95\x37\xcb\x63\x37\x49\x68\x71\xdc\x4f\x0e\xd3\x5b\xb8\x8f\xad\xe8\xda\x18\x34\xfa\x75\x9f\x47\x30\x1b\x51\x3b\x15\x3c\xe0\x6d\x7f\x55\x44\x43\x4b\x1a\x1f\xed\xb4\x55\xa3\x8f\xd6\xcc\x29\x6f\x7d\xca\xb3\x74\xf9\x7b\x87\xfc\x45\x91\xd2\xf9\xe2\x09\x93\x67\x35\x8f\x2d\x2e\x9f\xbc\xc4\x3e\x7d\x92\xe8\xd7\x9b\xf9\xd4\x31\xd0\x69\x62\x49\x85\xb5\xe4\x73\x03\xb7\x14\x3b\x89\x4c\xbd\xd6\x4d\x27\x7a\x01\xcd\xe1\xc1\x97\x4c\x26\x6b\xdb\x8e\x8c\x16\x86\x4c\xb5\xe3\x75\xc4\x88\x57\x72\x0a\x03\x2f\x3a\x06\xfe\x33\x8f\xe5\xb1\x61\x90\xb6\x40\xd2\x71\x13\x81\xa1\x3b\xdd\xf8\xa6\x23\x6f\x97\xe4\x47\xe2\xdf\xb7\xae\x9d\xe2\x3b\xce\x98\xce\xa1\xbf\xb0\xfd\x7c\xb6\x7f\xa3\x44\x6a\x54\x49\x60\x06\x01\x39\xcf\x17\xf6\xff\x28\x65\x10\xc0\x5c\x56\xed\xc0\x87\xa8\x83\xfc\xb4\x05\x98\x02\xa9\xcd\xea\xa1\xc4\x27\x6e\x27\xc0\x49\x18\xec\xc5\x7a\x74\x70\xd4\x95\xb9\x40\xd8\xfe\x4e\x07\xc3\x09\x30\xd1\x9c\xbd\xda\x60\x3f\x37\xcf\x5f\x14\x29\x9e\xe7\xe0\x5f\x01\x19\x04\x21\x37\x44\x0f\x78\x76\x3e\x0a\xe1\x37\xde\x87\x46\xcf\xde\x29\xa7\x6e\xd1\xaa\xa6\xce\xcc\xf0\x4f\x63\x03\xee\xf8\x88\x9f\xcd\x84\x9f\x87\x1e\xe8\x64\x00\xe0\x1b\x49\x4c\x57\x65\x41\x23\x5c\x9e\xea\xfb\x14\x84\xce\x70\xfd\xbd\xe2\x3a\xcb\xe7\x91\x47\x1c\x48\x78\xdb\xec\xb8\xdd\xb0\x84\xb3\xc7\xeb\xa6\xed\xd6\xe2\xc9\xd9\x67\x91\xce\xad\xfe\x32\x08\xe3\x56\x08\x67\xe5\x4a\xaa\xef\xfa\xe2\x50\x66\x0c\x32\xf0\xea\xf6\x29\x55\x54\x5f\x13\x25\xc3\x4d\x4b\xef\x6a\x0b\xa4\x66\x59\xf4\xd2\x96\x24\xc2\xb8\x3a\x74\x87\xcb\xab\x0f\x24\x83\xd1\x0e\x77\x2f\xa2\x2b\x65\x2f\x75\x71\xec\xa9\x17\xd7\x55\xcf\x52\x35\xb0\xda\x7c\x8b\xa1\x39\x54\x16\x99\x70\x39\xf7\x75\x7c\xf9\x9b\x4f\xfb\xa1\x5b\x88\xdb\x20\x16\x2e\x0b\xd0\xa8\x06\x2d\xa2\x04\xf4\x0c\xe5\xbd\xee\xcd\xa7\x1f\xe0\xef\x15\x38\x1b\x03\xaa\x3b\x4d\x78\x24\xc5\xda\xbd\x85\x8e\x16\x1b\x84\x2c\xbd\xfb\x21\x42\xcf\x76\xf6\x74\xc1\xfe\x67\x3f\x2a\x08\xab\x08\x2b\x95\xbd\xa6\x69\x4a\x8b\xb9\x55\xe8\x25\x2d\xe3\xd9\x87\x49\x79\x15\x2d\xde\x2b\x5a\xb0\xd4\x7c\x9c\xb2\x78\x38\xb6\x7a\x32\x7d\xa4\x0b\x02\x04\xaa\xd7\xb2\xc2\x29\x76\x8f\x21\xc9\xd1\x8b\x2c\x22\xd6\x90\x39\x0b\x5d\xfe\x67\x7f\xdd\xc8\x03\x0a\xcd\x56\x08\x20\x2f\x08\x30\xa9\x72\xa0\x39\x01\xeb\x50\xad\xc7\xd7\x24\x31\xba\xa0\x3c\xe9\x7c\xc2\x1a\x67\xcc\xec\x7b\x92\xa9\xeb\x3a\x73\x13\xff\x9f\x34\x89\x8b\xc3\xf8\x7f\xa8\xd7\xa7\x3b\x4b\x6f\x77\x4f\x13\x3c\x86\x69\x5a\x7a\xe0\xcd\xa5\x63\x53\x3c\x3b\x1f\x67\x68\x16\x61\x75\x47\xb4\x8d\xd3\xf2\xb8\xd8\xd7\x66\xe8\x79\x31\xac\x36\x4c\xe0\xbc\xba\x7b\xe0\x92\x55\x73\x5b\x8e\x78\xad\xa7\x12\x4a\x08\xa8\x8d\x2f\xd6\x2e\x54\xd7\x92\x08\xc5\x5f\xe9\x6c\xbc\xce\x27\x47\x7c\xeb\x4b\x95\xd2\x06\xb9\x8f\x18\x6e\xa0\x05\xa7\xb5\xc3\x7b\x8a\x71\x00\x1c\x15\xae\x0e\x8e\x6d\x5f\x2c\x84\x13\x4a\x95\xae\x25\xea\x46\x9b\x30\x49\xe1\x53\x93\xa9\xb6\xd2\x15\x05\xd5\x9a\xfd\x9e\x33\x88\xaf\xcf\x86\xe2\x6a\xf8\xa0\xf8\xbc\x7f\xfb\xe5\x5e\x08\xa4\xe5\x94\xa8\x0b\x1c\x0e\x79\xfc\x74\x38\x48\xcf\x34\x2d\x61\x9c\x58\xbb\x95\x97\xa6\x62\xc0\x94\x2b\xca\x44\xaf\x59\x60\x1e\x65\x15\x05\xaf\xc5\x2d\x99\x23\x13\xfa\xd4\x31\x54\xa5\x50\xb2\x6f\x5b\xa2\x35\x6a\x5c\xd1\x9a\x2e\xed\x2e\xae\x6e\x63\x32\x06\x2a\xa1\xeb\x28\x35\xc3\x79\x2a\x5d\xf9\x63\x74\xbc\xec\x76\xfe\x67\xb5\xf6\xed\xa2\x91\xbe\x87\x6f\x9b\xa3\xe3\xc8\x6c\xa0\x2e\xad\x72\x2a\x6d\x59\x61\x19\x51\x54\x5b\x60\x23\xe4\x82\xd5\xd8\x8d\x2c\xf0\x91\x69\xb0\xb2\x76\x41\x4d\x17\xf8\x1e\xae\x40\x30\xa3\x33\x80\x8c\x9c\x63\x6a\xd2\xd2\x2a\x37\x8b\xc2\x3e\xc4\x8a\x2e\xf8\x31\xda\xd2\xf4\xb2\xa7\x49\x68\xa7\xa4\x0e\x68\xb3\xc9\xc8\x37\x05\x85\xc2\x04\x56\x2a\x0a\xc6\xf2\xd3\xb0\x10\x00\x60\xc7\xad\x43\x01\x8d\xd6\x26\x01\xc2\xdb\xff\x58\xe9\xfc\xc6\xab\xa6\x6f\x3c\x46\x16\x01\x29\x2f\x18\x96\xd0\xfd\x30\xe3\xb1\xc1\x03\xa2\x2e\x3a\xb1\x83\xf8\x0c\x72\xa6\x90\x6c\xc5\x83\xb1\x0a\x0e\xec\xa6\x4f\xfb\xf0\x01\xd4\xbf\x16\x56\x1f\x76\x82\x03\xfa\x69\x5a\xa5\xcd\x78\x40\x72\x60\xda\x0a\xa5\xa4\x92\x9e\x5e\xc2\xc6\xca\x1f\x7c\x61\x3f\x44\x0f\x65\x0a\xa7\xc4\x0d\x61\xef\x8a\x25\xbe\xbc\x0f\xe4\xef\x2a\x81\x49\x25\xd2\x9b\x7c\xe5\x5d\xe1\x27\xff\xfa\xb3\xa8\xc1\xad\x2e\xee\x6a\xaf\xb3\xb4\xa1\x1a\xea\xda\xfc\xc3\x62\x59\x44\x8c\x73\x06\x69\x1d\xdd\x17\xd3\x36\xe2\x7b\xf5\xf2\xc8\x50\x31\x05\xa7\xcd\x35\x40\x88\x6b\x6d\xb8\xa0\xd6\xc3\x6b\xda\x5d\xc2\x3a\x7e\x2e\x50\x76\x3b\x18\xf5\xf8\xb2\x2b\xf3\x3f\x81\xee\x44\x24\xaa\xc2\x3a\x4a\x2a\x1d\xf1\xdc\xaa\xfc\x51\x98\xf1\xb4\x28\x0a\xc0\x97\x04\x01\x02\xf6\xbe\x76\x2c\x3f\xb8\x37\x3c\xd8\x4d\x29\xb3\xfe\x2c\x39\xd3\x7f\x1d\xf8\xfb\x22\xa9\x6b\x20\xfa\xc7\x90\x5d\x36\x77\xb2\xc4\x57\xdc\x8a\x57\x7f\x87\x11\x3e\x58\x39\xd0\x91\x5e\xcd\x09\x55\xac\x1c\x3b\x86\x9c\xae\x18\x7e\x07\x3c\x04\xb9\xf3\x60\xdc\x5e\x27\x13\x9d\x91\x22\x94\x02\x88\x97\x61\xbd\xae\x60\x30\x7c\x9d\xba\xe8\x6c\x1a\xf7\xe2\xab\xed\x2c\xab\x88\x3c\x1d\xb6\x73\x6d\x8f\x49\xbf\x7d\xfd\xb1\x43\xb6\xf6\xc0\xe8\x73\xf4\xa5\x0b\xe8\x6e\x9c\x8e\x4d\xfa\xe6\x9e\xcb\xd7\xef\x2c\x8b\x10\x18\x37\x92\x95\x37\xd2\x57\x7d\x2d\xa4\x9b\x54\xd1\x03\x3b\xf3\x5f\x5f\x27\x20\x93\xe1\x4c\x91\x81\x49\x13\xa5\x25\x39\xfe\x2e\xe8\x1e\x9c\x2b\xae\x69\x34\xd2\x3a\x16\xaf\xa3\x69\x6a\x8d\xad\x5a\x41\x5b\xfd\xf2\x66\xa5\x75\xb5\x8b\xac\x8d\xeb\xf1\x54\xb7\x1c\xc6\x9d\x1f\x44\xe6\x04\x9c\x3d\x79\x11\x76\x8e\x69\x9e\x0e\xf9\x8c\xcb\xb3\x92\x51\xb1\x1c\xba\xe0\xbe\xd7\x50\x76\x53\xf7\x05\x47\x95\xe8\xd1\x98\x38\x04\xe3\xc4\x68\xb1\x05\xfd\xcf\x65\xeb\xb0\x25\xa5\x89\x60\x2d\xc9\xa9\xc2\x9f\x57\x09\x74\x36\xbd\x4c\xb8\xe2\x84\x79\xd6\x59\x7a\xab\xf6\xe5\x94\xc7\xc4\x48\xb5\x32\xb5\xd8\x3b\x89\xf7\xb3\x95\xd8\x6b\xa5\xd4\xc4\xe7\x56\x91\x24\xe2\xaf\xd5\x1f\x3f\xe9\x17\x7a\x01\x6a\x58\x88\xa7\x17\xdb\x20\xaa\x7f\x6f\x25\x01\x1a\x23\x5b\x32\x59\x7c\xea\xea\x02\xf6\x64\xa7\xce\x18\x3d\x0a\x91\x0f\x68\x82\x35\x89\x9e\xcf\x10\x5c\xae\x69\x3f\x8b\x68\xee\x5d\xe6\xab\xa7\x94\xd3\x7e\x2b\xb1\xf6\xbe\xe2\xbf\xe5\x4c\xff\xf2\x9c\x36\x45\x05\x77\x2c\x22\x7d\x2b\xd6\x73\x25\x1c\x41\xc9\x12\x6d\xbe\x8b\x62\x36\x87\x83\x40\x0e\xd3\x8b\x3c\x64\x7d\x16\xdc\xeb\xa3\xea\xbd\xca\x40\x42\x6b\x89\x9a\x37\xa9\x2b\xdc\x46\x48\xec\xbb\xb0\x02\x27\x79\x21\x05\xfe\x48\xaf\xfd\x43\x66\x01\xbb\xcf\x1f\x35\x0d\xdf\x5b\x9b\x01\xef\xfd\xce\x27\x5b\x5e\x5f\xc5\x7a\xfb\x6c\x33\xa2\x3f\xa0\xb0\x8c\x17\x96\x12\x80\x63\xb7\xce\x33\xe0\x35\x96\x24\x08\xa8\x2d\x1e\x7d\xe8\x1d\x4c\x24\x79\x1f\x7e\xf9\xe1\xeb\xc5\xcc\x64\xe3\x87\xab\x77\x6b\xc0\x6b\x5a\xd7\xe7\xbe\x7f\xf4\x6e\x2f\x37\xd8\xcf\x49\x65\x9a\xf1\xef\xf1\xdb\xa4\x36\x56\xcd\x4d\x00\xf4\xbc\x21\xc7\x2b\xb6\xed\xcd\xc1\x86\x79\x2e\x45\x8b\xbf\x8a\x76\x61\x42\x94\x8a\x7b\xae\xe3\x88\x74\xcc\xa9\x12\x98\xcd\xe3\xf2\xf7\xd3\x76\x39\xce\xad\x6b\xfc\xc6\x26\x2c\x80\xa2\x88\xc0\x0f\x89\x43\xf7\x71\x09\x18\x35\x25\x39\xcf\x09\x01\xd5\xb2\x81\xf1\xbb\x39\xb6\xf3\xe7\xc2\xd8\xf1\xc3\x1b\xcc\x07\x4a\xb1\x97\xaa\xd1\xa0\x40\x06\xde\xbf\x9f\x07\x1e\x74\x43\x3b\x2d\xc3\x32\xbc\xd4\xff\xdc\x6c\x99\x67\xef\x32\xf9\x53\x31\xd5\xe2\x7b\x31\xd7\x6e\x64\x21\xa6\xdf\x34\x98\xc9\xd3\x01\x30\x6e\x6a\xde\x4d\xc7\x0e\x85\xbb\xb4\x73\x9a\xbf\xc7\x7b\x04\x12\x8d\x02\x28\xd6\x11\xc7\x1e\x74\xdd\x4b\xed\x5b\xe5\xe1\x6e\xd3\x6e\x58\x96\x48\x60\x98\xb0\xc2\x3e\xb1\xaf\xcf\x0f\x0e\xf4\x4c\xb2\xd0\x06\x3a\x5d\xe2\xc1\xe2\x2e\x5a\x75\xb3\x56\x78\x56\xf5\xf9\x45\xb2\xcc\xd7\xc3\x88\xd5\x27\xb8\xed\x1a\x6d\xbc\x58\x6d\x88\xc6\x6e\x7d\x2e\xdb\xa3\xa3\xff\x06\x3e\x1a\xa6\x3a\x9e\x09\xc1\xa2\xa1\x81\x81\x06\xbb\x33\x43\xb2\x5f\xe8\xfa\x3a\xbb\xb6\x7a\x4e\x74\x37\x13\xde\xfb\x8f\x3a\xe2\x85\x6c\x01\xaf\xc2\x76\x83\x20\x5b\x58\xbc\x4f\xd1\x72\x58\x00\x07\xf9\xf9\x78\x80\xed\xf9\x63\xd3\x4f\x45\x64\xbd\xc4\x27\xa3\x12\xf6\x9a\x36\x9c\x9a\x10\xcd\xa1\xa5\xa5\xc0\xf3\x93\x3b\x8d\xad\xe4\xe3\xec\x17\x2d\x9a\xa3\x4b\x87\x3d\x1e\x5a\xb9\x4b\x18\xa3\x76\xbb\x1b\xbf\xfe\xd5\x81\x21\xd3\xf8\xf5\xfa\x82\x8c\x7c\x05\x66\xc4\x96\x02\x58\xa3\xed\x8b\x95\xd7\x9c\x40\xe0\xa5\x84\xf9\xe7\x30\x2c\xa1\x20\x7f\x03\x4b\xdb\x96\xae\x56\x7f\xf6\x11\xc2\xfb\x0c\x56\x8a\xfe\xed\x1d\x0b\x59\xcf\xe7\xa7\x7f\x9c\xdb\x73\x7d\x40\x59\xfe\xbc\xc9\x7e\xd5\xed\x4f\xcc\xd9\xae\x3a\xde\xae\x5f\xcc\xd0\xfe\x40\xbb\xe4\x16\x3c\xd4\xf1\xa5\x7b\x3f\x71\x9d\x74\x14\x12\x66\x20\x54\xee\xb5\x3f\x3b\x0c\xaa\xba\x3b\x6e\xfd\x22\x71\x5e\xc1\xed\xd8\xa5\x2a\xd5\x44\xb6\xaa\xac\x70\x50\x2b\xac\xa1\x27\x20\xa9\xc8\x00\x9b\x0c\x52\xa6\x00\x8a\xbd\xf8\x3e\xec\xa3\xe2\x0b\xeb\x90\x7a\x45\x8f\x8d\x45\x4d\xcf\x60\xb5\x9b\xcf\x09\x31\xa1\xae\x76\x62\xef\x97\x9a\xbf\xe6\x3d\x98\x3a\xfc\xd5\x75\x14\x09\x4c\x36\x33\xc5\xbd\xa3\x00\x90\xf7\xc8\xe1\xbb\xeb\x40\x3f\x49\xd0\xde\x26\xe8\xb4\xa2\x05\x0c\xbc\x0f\x76\x77\x16\x7b\x2f\xe6\xb9\xa3\x74\xaa\x4b\xcb\xa3\xfb\x38\xf8\x76\xbe\xf1\x30\xe6\x51\xfb\x9d\x13\x66\x69\xf1\xe8\x43\x8b\xed\x46\xa7\x9b\x0a\x14\x7d\x2e\xc7\xb9\x45\xc2\xc9\xb1\x04\x42\x90\x01\x09\xe6\xa6\x78\x27\xbd\x68\x14\x7e\x5b\x5b\xa9\x1f\x42\x9c\x88\xbb\xc1\xf3\xf2\x63\xca\x20\x72\x4b\x06\x0b\xf8\x1d\xef\x71\xb8\xa8\xa1\x8e\xda\x83\xd7\x82\xb9\xff\x5d\xac\xa1\x6c\xcf\xe3\xab\xde\x5e\xe7\xa0\xb6\x09\xcb\xc6\x9a\xbf\x1e\xce\x57\xaa\x1a\x8e\x32\x46\x7a\x41\xe9\x5e\x1f\x55\x80\x11\xc1\xf0\xae\x89\x85\x0b\x6f\xcf\x41\x14\x6b\x4a\xc7\x50\xe5\x88\x87\x86\x14\xec\x73\xd4\x58\x79\x6c\x97\xa9\xc8\xd3\x72\x29\x2f\x53\x04\xa5\xe2\xf5\xde\x54\x49\xd1\xcc\x88\x41\x74\x3c\x8d\x76\x50\xde\x0d\xa7\xaa\x06\xd4\x74\xf1\xdd\x43\x7a\x0d\x3d\xca\x32\x2c\x5f\x98\xca\x7e\x9c\x9f\x01\x56\x28\x00\x95\x78\xa9\xa9\x6d\xfd\x39\xc4\xbe\xdc\xba\xd4\xff\x78\x87\x06\x27\xd2\x63\x1f\xf9\xf5\x30\x0d\x6d\xe2\xd0\xfa\x95\x04\x27\x85\xdf\xb5\xee\xc9\x55\x16\xf3\x79\xdc\x11\xc4\xd8\xcd\x89\xec\xfc\x31\xf9\xa3\x17\xf7\xc9\xfd\xcb\x1e\x39\xda\x8a\x04\xbf\x7b\x36\xbb\x65\x37\x3c\x1e\xe9\x4e\x86\x10\x1d\x37\xf7\x4a\xf2\xca\xf7\xd1\x44\xf8\x1d\x6d\x77\x01\xd1\x8f\x76\xa4\x67\xc4\x80\xd0\x7b\xeb\x4f\xac\x87\x2d\x46\x43\x4b\x5f\xf1\x2a\xde\x11\xc6\xbf\xfd\x9b\xf6\x39\x65\x0e\x8f\xd0\xd9\x60\xda\xc6\x41\xc0\x72\xa9\xf1\xb7\x1a\x6a\xf5\xbc\x7b\x8f\x35\x5d\xde\x2b\x71\x9d\xb2\xfd\xf8\x1a\xc0\xa4\x40\x8c\x3a\x54\xa3\x92\xb8\x54\x33\x31\x20\xb9\x41\x7f\x96\x6c\x52\x30\x92\xd8\x35\xfa\x53\x82\x00\xa3\x21\xe5\x9f\x26\x20\xc8\x7b\x14\x01\x49\xdb\xcd\x84\x3c\x9c\x2d\x6e\xd8\xf2\x54\xec\x3a\xaf\xe8\x9e\x16\xae\xc7\x37\xd7\xed\x1e\xcb\x3d\xc5\x6f\x85\xd3\x21\x87\x45\x0b\xa7\xae\x0c\x38\x71\x74\xbe\xe7\x24\xef\x36\xf1\x88\x6b\xfc\x6c\xfb\xf2\x51\x88\x2f\xbd\x39\x4a\x18\xa6\x3d\xe8\xf2\x86\x2a\x4d\x25\x75\x9c\xd6\x68\xfe\x3b\x2b\x69\x9b\xdf\xcd\xe1\xbf\x75\xe8\xb7\x95\xd3\x8a\xba\x54\xaa\x59\x66\xf6\xd1\x6a\xff\xfc\x81\xa7\xe9\x5e\x75\xec\x2f\x7d\x5d\x5b\xef\x64\x4d\xdc\xf0\xa1\x5f\x2d\x92\x55\xc8\x27\x77\x34\x7e\xbc\x5a\x88\xde\x84\x13\xb7\x29\xa7\x6a\x7f\x25\xbb\xea\xbc\x9f\xe8\x89\xbc\x9f\xd8\x5e\x8a\xdb\x3e\x92\xee\xc4\x0f\xf1\xf9\xb6\x8b\x87\xfe\xf9\x25\xe0\x5e\x86\x1e\xf7\xea\x9c\x3d\xef\xa9\x80\x7a\x51\x9d\xe2\xd7\x99\x89\xa4\x5a\xa8\xdb\xd5\x91\xea\xb3\xeb\x6d\xce\x81\x75\x6f\x79\xfd\xd4\x5f\x03\x8a\xce\xe9\x56\xb8\x32\xfc\xdb\xa1\x74\xc4\x7d\x15\xe4\x4e\xc0\x5f\xd2\x0f\xdc\x6b\x7f\xe8\xab\x15\xf4\x0b\xbd\x1a\x52\xaa\x1b\x92\x7e\x3f\x77\x64\x3e\x18\xae\xda\xde\xa6\xfe\xe8\xf9\xbc\x19\x12\xb8\x13\x74\x52\xd1\x60\x79\xbb\x42\x57\x3c\x18\x95\xf7\x84\x0e\x1b\xf8\x0e\xef\x20\xeb\xc4\x7f\x9e\x1f\x66\x0b\x43\x34\xa4\xa4\xff\xe9\x42\xe1\x23\x20\x8f\x4f\xa4\x93\xed\x4f\xac\xcf\xa1\x73\x66\xec\x2d\x1d\x26\x6f\x2c\xa7\xdb\x5d\x60\xf4\xc4\x12\xb9\xd0\x39\xe1\xf5\x93\x05\xad\xb7\xd8\x35\xc1\xa0\x07\x2e\x23\x92\x34\xc2\x59\xdb\xe2\x7c\x05\xaa\x71\x1e\xfb\x5e\x15\xb1\x26\x8a\xfb\x19\xe7\x74\xef\x6a\xd2\x60\xb8\x06\x6f\x88\xde\x22\xcb\x4a\x43\x25\xcd\xcb\x01\x7c\x14\x49\x36\x97\xf6\xd1\xbd\x2f\x8c\x72\x07\xe7\x84\x1d\xd4\x1a\xd7\x56\x19\x08\x67\x75\x22\x7a\x00\xc7\xca\xf8\x54\xe4\x97\x50\x0f\xfe\xed\xce\x7c\x68\xa9\x72\x39\xb6\x57\xf1\xdb\x7e\x23\xe5\xc3\x62\x2b\x3f\x41\x26\x83\x8f\x89\x69\x4a\x0e\x43\x60\x80\x55\x48\xdd\x88\x52\x13\xdd\x36\xfe\x63\xb0\xc7\x7d\x7f\xc2\x65\x7d\x41\x83\x57\xa4\x3b\x92\x15\x40\x25\x39\x69\x81\xcd\x54\x1d\x4e\x62\x2e\xef\x3b\xa9\x1f\x2f\xb1\xe3\x39\x0d\x15\x58\x94\xc3\xf4\x4b\xa8\x4b\xaa\x52\xab\x84\x6a\xf5\xbd\x45\x2d\xdf\xa5\x7e\xa7\x57\x66\x7e\xc1\x4e\xed\xea\x24\xed\xe6\x64\xe4\xfc\x3b\x1c\x80\x74\x2f\xd6\xe2\x09\x95\xe0\x97\x25\xbc\xaa\x8b\x89\x6e\xb8\xad\x52\x18\x14\x48\xd5\x79\x3a\x65\x69\x32\xdb\x4d\x20\x71\x43\xf1\xad\x28\x46\xce\xa6\xb5\x93\x0e\x1e\xce\x01\x60\x5e\xde\x20\x99\x34\x0b\xe8\xc5\x9d\x0a\xf3\xb3\x39\xd7\xc8\x5d\x07\xe9\x87\xbe\x5d\xe9\xc4\xe7\xe1\xb4\x6d\x42\x28\xef\x59\x01\x3a\x7a\xe2\x70\x13\xeb\xea\xb8\xee\x91\x76\xaa\xcb\x0a\x2a\x5d\xde\xa0\x02\x03\xcb\x1d\x8a\x80\x42\xc2\xd4\x04\xfa\x46\x4d\x13\x1e\xea\x53\x75\x05\x93\xf4\x4b\xa4\x96\xd6\x8e\x89\x91\xea\x23\xdc\x36\xf6\x98\x58\xe6\x46\x68\x66\x44\x4a\xd5\x60\xf3\x9e\xc7\xbe\xeb\xba\x98\x03\x45\x7b\xac\xfa\x6c\x1f\xb2\x2c\x58\x0f\xc5\xea\xbb\x17\xad\xa8\x19\xad\xc0\xbc\xf1\xfb\x29\x0b\x79\xca\xef\xfa\x5c\x35\x75\xea\xb0\xa0\xe5\x4b\x13\xcb\x8a\xc1\x8b\x5f\x8a\xd5\x14\x1e\xce\xc5\x2c\xc3\xcc\xf6\x71\xb1\x6c\x1a\x7c\x72\x54\xa0\x1c\x4f\x4d\x21\x4c\x98\xf3\x5f\x88\x1a\xd4\x75\x21\x41\xbf\x30\x47\xb4\xc9\x10\xef\xc3\xa7\x97\xef\xcb\x76\x2c\x8f\x4c\xb4\x73\x65\xa1\xae\xaa\xbb\x02\xae\x90\x1c\x01\xbc\xbf\x88\x2b\x6c\x49\x9c\x8f\x8d\xd3\xb2\x78\xf8\x26\xe9\x45\x46\x20\x02\x40\x09\x7a\x6e\x20\x5b\xb8\x15\xae\x70\x2d\xa8\xf1\xc7\x5f\xb8\x2f\x90\x3e\xd5\xe9\x4d\xf3\x32\x08\x86\x78\x89\x99\x60\x71\xa4\x31\xf4\x29\xbc\xbe\x53\xdd\x95\xc8\x64\x59\x56\x0d\xef\x24\x2b\x7d\xd4\x72\x24\x40\xaa\x3f\x31\x7f\x17\x73\x97\x1d\x78\x63\xf1\x0e\x47\x72\x63\x12\x2b\xa6\x21\xc5\x90\x78\xdb\x5c\x86\x1a\x60\x48\x00\xda\xf5\xc6\x6c\x6f\xa2\x03\xd9\x74\x2f\xf9\xc5\xc2\x8c\xc5\x89\xa4\x41\x70\xfc\x4a\xab\xd3\xf8\xf0\xf6\x89\xb7\xf8\x7f\x72\x5b\xc8\x00\x8c\x8b\xa4\xa2\xe9\xf7\x7f\x64\x26\xee\xa2\x17\x98\x6e\xf7\xe2\x37\x25\xd2\x8a\xe5\x91\xd1\xb7\x27\xe7\xf1\xb8\x32\xff\xec\x95\x1f\x3b\xa1\x33\x64\x86\x0d\x29\xe7\x68\xee\x3d\x07\xa7\xe3\xd3\x2c\x21\xae\x39\x62\x13\x00\xf1\x55\x91\x0a\x2c\x61\xb7\x9f\xd1\x4b\xaa\x17\x3c\xf4\xfd\x32\x41\x7b\x59\x61\xfe\x19\x99\xac\xe7\x22\xcb\x29\xbb\xcc\x40\x81\x12\x7b\x59\xbd\x5e\x22\x75\xdc\xfb\x70\xab\x2e\x90\x70\xa0\x68\xf0\xd0\x47\xac\x25\xae\x24\x81\x3a\x2d\x1d\xdb\xee\x38\xbd\x48\x06\x07\x97\x49\x8d\x6f\xab\x75\x81\x76\xad\x15\x9d\xfc\xe8\x7b\x7a\xdc\xfc\xa3\x44\xb3\x09\x3a\xbf\x5a\x04\xde\x37\x90\x36\xb9\x6b\x2a\xf8\x1d\xf1\x5a\xfb\x49\x98\xc4\x77\xc8\xb4\x7f\xfd\x5c\x30\xdc\xe9\x66\xe1\xf1\x6d\xed\xeb\xe7\x45\x27\x38\x54\x46\x8c\x39\x7f\x48\xb2\x94\x62\x99\x34\x0b\x68\x59\x72\x2d\xf4\x78\x31\xcb\x23\x1a\xba\x9d\x46\x36\xd8\xb0\x36\xe4\xb5\xa0\xf0\x54\xb5\xd1\x49\x0e\xd1\x90\x28\xee\xe7\xde\x07\xb1\xb0\xd6\x52\xed\x59\x6f\x5b\xe2\xe7\xce\x93\xb5\x64\x39\xc9\x23\xe6\x56\x8e\x38\xc0\x68\x79\x29\x2b\xf7\xb0\x76\x82\x44\x1c\x55\xda\x37\xd2\xb9\x6c\xa6\xe0\xed\x0f\x25\x67\xd1\xdc\x9f\xba\x1d\x5b\x5c\x1b\x6f\xf8\x6a\xf0\xf7\xa2\xbc\xd4\x49\xca\x9d\x4e\x50\xc6\x3f\xa7\x1b\x9e\xca\xe5\x34\x84\x72\x72\x6f\x87\xb3\xbf\x14\xa6\x75\xfd\x03\xa1\xc3\xdb\xa3\xac\x94\x60\x6a\x13\x06\x0f\x7c\x6b\x6a\x16\xf7\x19\xfd\x16\x63\xf2\x50\x59\x81\x49\x35\xca\x0d\x41\x75\x54\x72\xb5\x37\xea\x4a\x51\xe9\x21\xaf\x67\xc7\xd5\xd8\x2d\x0e\x1f\x5d\x89\xfe\x3a\xe0\x26\xbd\xbf\xab\xb0\x9c\x14\xb8\x70\x33\xbb\xa0\x5d\xbe\x46\xc9\x47\xe5\x2e\x47\x49\x79\x25\xe0\x08\x10\xb2\xdd\x84\x32\x07\x33\x85\xd1\x7f\xca\xd8\x06\x78\x31\xa3\x14\xeb\x65\x49\x8f\x05\xc3\x14\x78\xad\x3f\x53\x99\x2f\xc5\xd1\x70\xa7\xbf\xc8\xa5\x7a\x18\x82\x2f\xd5\x6d\x10\xff\x78\x5d\xa2\x33\xc7\xef\xdc\x80\x7f\xaf\x7f\xd7\x0e\x91\x94\x63\x78\xfa\x58\xc3\x0e\xd8\xca\x28\x64\xcf\x4d\xf8\xe6\xd4\xef\x12\x12\xfe\xe1\x19\xf8\x36\x06\xf3\x3e\xb5\x32\x41\x4d\x7b\xeb\xa7\x06\x37\x4a\x9e\x11\xe4\x45\x05\xc4\x49\x2b\x6c\xbc\x5e\x23\x13\x64\xea\x55\x54\xe2\xc4\x90\x24\x05\xf0\x23\x19\x49\x00\xaf\xd6\x5e\xb1\x60\x3a\x39\xd2\x95\xc2\x7a\xdf\xfa\xfb\x5e\x62\x59\xef\x64\xfa\xd9\x8d\xa2\xc7\xa6\x56\xc6\x15\x38\x7e\xe4\xcc\x75\x32\xd2\x63\xda\x4f\x6b\x23\x5b\x66\x2c\xf7\x15\xaf\x3b\x91\x81\x27\xe3\xab\xbf\x65\x9b\x4d\xc4\xcb\x0d\xc7\xb2\xb0\x86\xb6\xfc\x3a\x13\xc7\xb2\xee\x9e\x7d\xac\x73\xd8\xeb\x3a\x3f\xab\x1e\xb4\x7a\x60\x3c\x8e\x4f\xe7\x7d\x31\x00\x11\x1e\xf8\x1a\x81\x42\x30\x1e\x89\xa4\x18\x42\xb8\x1e\x82\x18\x78\x1f\x03\xbf\x94\x33\x01\x92\x10\x1c\xfd\xb2\x2a\xf6\xf5\x13\x66\x2a\xd2\xc1\x13\x38\x82\xaa\x28\xbc\x5d\x45\x81\x32\x5a\x26\xd9\xd6\x03\x30\x4e\x07\xdf\xfa\x21\xcb\x0e\x8e\xbb\x2f\xbb\x22\xd8\x65\x3c\x89\xce\xc7\xec\xd4\xa3\x84\xc3\x95\xa9\xcf\xea\xb8\x0f\xba\xb8\xa5\xef\x0b\xde\x90\x7d\xe5\x7a\xf8\xac\x06\x16\x11\xec\xfb\xa6\x03\xd2\x43\x20\xc8\x80\x43\x7f\x1e\xe8\x19\x2a\xe7\xe4\x3a\x30\x37\xf9\x72\x25\xe2\xc4\x8f\xc3\x7c\xb6\xf3\xae\x93\x3c\xd7\x3a\x1a\xc0\xd5\xc5\xf4\x9f\x69\xaf\x60\xf2\xf0\x47\x02\xf7\xfe\x2b\x86\x76\xac\x6b\x7e\x4c\xd4\x68\xf3\x0b\x45\xd0\xae\x81\x5f\x38\xdc\x4c\x0b\xe9\xd1\x6b\xcd\xf8\x1e\xd7\x28\x84\xd7\xd1\x3f\x79\x17\x0c\xf7\x78\xd3\x8d\xe6\x73\xc7\x97\x8c\x1c\x31\xc3\x96\x5b\x66\xb9\x4c\x09\x08\xeb\xfc\x10\xd6\xf9\x05\x8e\x68\x23\xa0\xb7\x41\xdd\x6f\xa0\x3f\xf6\xc4\x8c\x73\x62\x5d\x8a\xe2\xcb\x0e\xe2\xb8\x0f\x33\xca\x7e\x39\x9d\x2b\xcc\xbb\x8b\x0c\xd2\xe1\x91\xac\x14\x56\x73\x2d\x93\x7a\x5f\x24\xc7\x4c\x67\x83\xe7\xa5\x20\x89\x67\xd0\x02\x6a\xe1\x00\xf9\x72\xd6\x03\x65\x1d\xbc\xc5\x17\x5c\x2f\x1e\x51\x93\x1d\x95\x83\x77\x9d\x46\x68\xf5\x70\x84\x29\xf5\x09\xa7\xdc\xf2\x8c\xaf\xdd\x8a\xe9\xce\xf1\x96\x48\xe0\xb0\x10\x7c\x3c\x10\xc9\x1b\x95\x47\xc1\x8b\xf8\x09\x10\xe6\x34\x74\xd1\xad\x85\x36\x91\xbb\xfa\x61\x01\x92\x25\x39\x50\x69\x3f\x7e\xdc\x43\xa0\x0f\x14\x6a\x5f\xa5\xdf\x55\x8f\xcd\xc8\x41\xc7\x42\xb1\x2e\xad\x53\xe5\x01\x9b\x5f\x58\xbb\xc3\x32\xd9\xf5\x1a\xef\xb4\xc7\xc1\x02\x12\x5c\x85\x51\x4a\x1d\x2c\xc9\x72\x63\x77\x8e\x59\xaf\x71\x84\x6d\x63\xa1\xd6\x9c\x03\xe0\x83\xde\x02\x46\x43\xa6\x10\x52\x7a\xcc\x7c\xcc\x1c\xa4\x61\xd6\x87\xb2\x7b\x8a\x6f\xe0\x1a\xc3\xce\xc7\x8a\x96\x15\xbc\x27\xa1\xe6\x65\xbe\x9d\x2c\x12\x57\xda\x54\xd8\x26\x8c\xa5\x86\x66\x5a\x83\x56\x7e\xdd\xfe\x48\xab\xdf\x30\x17\x4c\xc5\xa7\x4d\x65\x5f\x6c\x1c\xfc\x24\x02\x8a\xc0\xb8\xcb\x31\x45\xa7\x24\x4f\xeb\xe0\x1f\xf3\xbb\x3a\xb1\xf8\x6e\x1d\xe3\xf0\x68\x8c\xb0\x00\x4c\x67\x6e\x79\xca\xec\x60\xbe\x3d\x63\x3e\x76\xb3\x81\x97\x71\xc3\x4f\x42\x03\xba\xd4\x6d\x70\xdb\x18\x8b\x61\xdc\x1c\x35\x1b\xdd\x63\x53\x0d\x55\x2e\x52\x3f\xdc\x77\x37\x9c\x9a\x72\x1b\x6f\x26\xed\x65\xc5\xcb\xd4\x1e\xda\xca\xbd\x98\x3a\xc9\x11\x51\xf2\xb1\x34\xc5\x18\x79\xf3\x3b\xd8\x21\x8c\x1e\xe8\xec\x9d\x30\x3c\x96\x0e\x2c\xae\x83\x1c\xa7\xc2\x6f\xf9\x76\x76\x97\xbe\xf8\x32\xc7\xb5\xd2\x0a\x98\x28\x79\xff\x47\x85\x78\x33\x0c\x66\xb4\x0f\x26\xfd\x8c\xa8\x5e\x6e\x3b\x43\x96\xdc\x76\x1c\x51\x7e\xe0\x43\x9f\x0b\xa0\xd6\xe2\xf0\x79\xe8\x35\xd0\x46\xb5\xde\x9e\xe6\xb7\x86\x47\xe5\xea\xb9\x6b\x22\x0f\x20\xcc\xa0\xe4\xfd\xa4\x5b\x7e\x9d\x80\xe6\xbb\x01\x4a\x55\x0c\xc7\xc6\xa6\x00\x7a\x44\xd2\x75\x97\x97\x2a\x63\x9c\x68\x40\x26\x7a\xb3\x40\x96\xcc\x56\xc6\x33\x89\xf7\x1d\xa1\x57\xd9\x52\x0c\xdb\x80\x92\xee\x56\x84\x6d\x40\x01\x5d\xb3\xa8\x85\xea\xf5\x87\xb6\x27\x10\xf2\x49\x13\x41\x4f\xbd\xed\x56\xa4\xc3\xca\x4a\x77\x39\xcc\xfd\xa2\xee\xcf\xa1\x35\x96\xdb\xc1\x99\x10\x9b\xf9\x2c\xb3\x30\xef\x2e\x11\xee\xe0\xb6\x50\xee\xe5\xfc\x0d\x12\x9a\xb4\x46\xfb\xfe\xb2\x4e\x4b\x88\xb0\xc4\x6f\x28\x47\x06\x18\xde\x21\x22\x69\xd3\x63\x07\xd4\x78\x3e\x85\x8d\x2f\xa6\x21\x5f\x1e\xc4\x93\xbf\x16\xc8\x35\x01\xd6\x5d\x88\x9a\x5e\x13\x31\x26\xd1\xf8\xc2\x24\x33\x38\xe3\x86\xc7\x53\xce\xcc\xa6\xbd\xf4\xe4\xea\xfa\x92\xbf\x4d\x5f\x4f\x29\x02\x09\xc9\x04\x7b\xd2\x43\xed\x3f\x79\xe5\x18\x57\x96\x48\x41\x31\x81\xb2\x59\xf2\xe9\x1a\xd8\xf3\x8a\xe3\xc4\x09\xe4\xd4\x6b\xc4\xd1\x1a\x98\x0f\x91\xce\x1d\x46\x1b\x6f\xfb\x2c\xf5\xe2\x9f\x2d\x5c\x7b\x4a\xb9\xa1\x63\x09\x3a\xdb\xd0\x63\xf2\xa4\x27\xc4\xe8\x86\xfb\x44\x30\x8e\xc1\xcc\xb6\xae\x83\xff\x17\x94\xaf\x63\x9b\x5a\x99\xaf\x84\xdc\x18\xbe\xbb\x04\x89\xd9\xf7\x34\x00\x34\x69\x08\x3a\xbf\xba\x53\x6f\xdf\x84\x90\xb3\x70\xe1\x03\x3f\xe8\x18\x89\xd3\x78\xd1\x21\xe0\x1e\x72\x0b\xa2\x7c\xfa\xa1\xa9\xa5\xab\x3f\x9f\x53\x0f\x66\x35\xc0\x29\x7c\x85\xc2\xa9\xeb\x07\x95\xd0\x39\x4e\x8e\x6e\x02\x79\xcd\x01\xe9\x8b\x94\xd5\x24\xe2\xb0\xcc\x50\xa7\x10\x8c\x9a\xc6\x2e\xd2\x03\x37\x52\x42\xd1\x87\x19\xea\x9c\x25\xc5\xf9\xfe\x25\x9a\x3d\x79\xb1\x8f\xe6\xb3\x6b\x22\x37\x15\x41\x7e\x91\xed\x3b\xed\x2b\x24\xe2\xd1\xaf\xc8\x43\xb8\x6e\xc4\xb0\x0b\x81\x9a\x86\x35\x5e\x39\xf7\x45\x17\x00\x00\x9d\x7b\x00\xc0\xfc\xca\x68\xac\xfb\x13\x2c\x55\x65\x9b\x5e\x78\x57\x7d\x20\x15\x1b\x9d\x34\x20\x47\x82\xf3\x9d\xaa\xa8\x6d\x81\x0c\xf0\xfa\x05\xde\x7d\xb5\xf1\x0d\x40\x94\xd6\xc3\x85\x87\x92\x90\x38\xb2\x79\x6c\x34\xae\x27\x09\x5d\x31\xeb\x16\xcb\xec\x78\x95\x3b\xd4\x78\xad\xcd\x00\xc2\x49\xb6\xcd\x0f\x05\x88\x10\x74\xb1\x81\xa8\xb4\xf9\xc5\xf8\x75\x9c\xa2\xf1\xd5\x9d\x5a\xa4\xdc\x79\x56\x9e\x5d\x19\x04\x10\x8e\x63\x8c\xba\x54\xbf\x62\x61\x8b\x4c\x04\xb7\x7d\x73\x35\x25\x46\x14\xa1\xb2\x5f\x88\x24\x96\x0b\x62\xeb\x4d\x7d\x00\x85\xba\x79\xb1\x99\x0d\xd5\x87\x77\xc4\x2f\x79\x72\x61\x7d\x3f\x03\x20\xa9\x79\x98\xdb\x39\x84\x5e\xb1\x2d\xfe\x00\x79\x77\x37\x5e\x47\xcc\x81\xc5\xf3\x2d\x10\x9c\x17\xb4\x86\x33\x3a\x47\x16\xfc\x1c\x4d\xbb\xdc\x79\x1e\xfb\x24\xf8\xf1\xfc\x9f\x8b\x18\x31\xaa\x31\xbf\x47\x9d\x68\x9b\x7a\x10\x06\x10\x2b\x93\x20\x8e\x0d\xfd\xf1\x18\x07\xba\xc3\x20\x18\xfe\x70\x5d\x29\x77\x20\x0a\xa6\x85\x7c\xc4\xb7\xc8\x98\xac\x8b\x7e\x67\x57\xa7\x49\x81\x40\xbb\x3d\x98\x60\xca\xe7\xc2\xc3\xcc\xbe\x3f\x8d\x77\x6e\x23\x93\xe1\x1b\xca\xe5\x99\xf6\x8b\x81\xac\x41\xb7\x48\xe1\x7d\xfb\x72\x3a\x4c\xb0\xdb\x4b\xaf\xf0\xfd\xb5\x26\x96\x90\xbb\x05\x75\x6b\xb5\x09\x60\x21\xdb\x55\xb2\xe8\x51\xea\x39\x2d\xc4\x09\xdb\x28\xe1\x91\x86\xd6\x40\x06\xc8\xb0\xa4\xaa\xab\x9c\xda\x44\x34\xfb\x9e\x43\x8e\xca\xfe\x1d\x0a\x5c\xd1\xa6\x2b\x00\xdb\x92\xb8\x32\x7b\x70\x6a\xa6\xc8\x20\x4c\xaf\xb1\x90\xaf\x6f\xbd\x0d\x3c\x6b\x02\x49\x50\x69\x1b\x7d\xf5\xd9\x7e\xe4\x01\x4f\xb1\xc9\x41\xb4\x3c\x58\x39\xce\xe3\x74\x81\x68\x67\x0c\x10\xe0\xf4\x1d\x3e\x79\x2f\x89\x1b\x45\x45\xdc\x26\x8c\x9d\xcc\x58\x11\xd9\x97\x1b\x64\x64\x28\x01\x04\x03\xea\x43\xb6\x6d\x4d\x42\xe3\x4e\x98\x8b\xdd\x19\xfc\x93\x79\x43\x9f\x95\x42\x61\x92\x4f\x32\xb7\xed\x68\x37\xaf\xb1\xf2\x07\xd5\x83\x00\x44\x7e\xa3\xa2\xcf\x2c\x81\x38\x6e\xe8\x4c\x3c\x34\xc4\xe7\xb9\x3f\x63\x61\xc3\x2f\x7e\xf0\x77\x73\x2b\x99\x25\x82\x57\x51\x03\xfb\xf0\x4e\x2a\xa9\xaf\x7d\xda\x7e\x69\xd7\xb9\xbf\x70\xe1\x81\x0b\x30\x38\x4d\x72\x5d\x22\x06\xaf\xa1\x05\xa5\xcc\x03\x2f\xdf\x6d\x2b\x43\xe0\xc3\xa6\x53\x42\x47\x64\x74\x7c\xcf\x12\x60\xb9\x7c\x05\x7a\x22\x84\xe6\xfb\xc6\xb8\x0a\x0b\x78\xc9\xc2\x6f\x51\x25\xd9\x06\xc7\x0e\xc9\xdf\xde\x39\xb4\x5d\x09\x4a\x42\x0a\x59\x19\xbc\xa7\x3a\x30\xe7\xa9\xd6\x65\xdb\x7e\xab\x6c\xae\x1d\xee\x81\x2c\x0f\x91\x74\xfa\x8c\x0f\xc8\x65\x44\x67\xe3\x00\x91\xc6\xc7\x60\x29\xf4\x2a\xe6\x58\x8f\x91\x6b\xee\x05\x8d\x58\x06\xa9\x95\xf3\x62\x9d\x38\x8c\xcb\xcf\x54\xc3\x76\xac\xbd\x59\xf0\x40\xf6\x2a\x9c\xf9\xb7\xb4\xfe\x17\x4e\xc2\x6f\x7d\xf2\x64\x17\x91\x8c\x4f\x1c\x08\x41\x3b\xa1\x13\xe6\x3c\x37\x74\x74\xc0\x77\xfd\x05\x01\xb2\xb4\x6b\xab\x09\x7b\x03\x69\x3c\x17\x6a\x29\x6d\x6e\xc1\x05\xc6\x10\xc6\x37\xc6\xd4\x84\x51\x6a\xa3\x36\xf0\x21\xaf\xb1\x69\xb0\x1b\xab\xed\x0e\x61\xea\x51\x54\x84\xba\x86\xf6\xee\x5b\x75\xd7\xc1\xd1\xc2\xec\x66\x49\x27\x48\xd4\x5f\x0c\x35\xda\xd2\x97\x94\xb4\x82\xb4\x1b\xba\x0d\x74\xee\x4f\x0d\x14\xb2\x8b\x08\x89\xb5\xd5\xf0\xba\xb0\xbd\x36\x9d\x08\x7f\x94\xac\xbb\x74\x62\x9c\xbc\xea\xac\xf7\xef\xc8\xc6\x00\x16\x14\x66\x83\xfc\x8f\xc4\x7f\xa4\xa4\x77\x9a\xd8\x09\xb1\x6d\x4f\x3b\x2c\x7a\xe8\xa9\xdb\x12\xe5\xdd\xef\x44\x7f\x8e\x6c\x31\x7b\xf5\xef\x03\x99\x59\xef\xb3\x72\xd2\xc1\x67\x9c\x58\x80\x73\x5b\xca\xb5\xb8\xbd\x0c\xef\x9f\x40\x01\xcf\x75\x20\x54\x18\x7f\x00\x03\xcc\xa2\x85\xc8\x0f\x52\x28\xda\x2c\x2a\x9a\xef\x7b\x86\x4f\x43\x85\x91\x59\xb6\x92\x13\xb4\x38\xbe\x93\xc9\xe8\x54\x17\x77\x95\x9f\x98\x67\x90\x64\x4f\xf6\xec\xca\x53\xd4\x5c\xc1\xde\x91\xd3\x56\x82\xcf\xca\x5a\x7a\x07\xcf\x73\x9d\xfb\xf0\x25\xce\x2f\x34\x09\x3f\xb1\xc2\x2c\x5d\x31\x20\x2d\x2a\x31\xd5\xb4\x17\x99\x0a\x1e\x2d\xa2\x5e\x46\x6b\xb0\x81\x9f\xbc\xdb\x74\x22\x8f\x42\x08\x3f\x1d\x70\xfd\x6e\xdf\x55\x2f\x72\xf0\x44\x4c\x85\x17\x4f\xa1\x3c\xfc\x23\x84\x6b\xd7\x73\xc9\x88\x51\x6e\xb2\xfc\x7d\xe9\x54\xc4\xc2\x29\xd7\x12\x7d\x75\xfe\xe2\x8f\xe6\x82\x31\xd6\x26\xbc\x0f\x38\x06\x3f\x77\x65\x55\xc6\xf7\x85\x42\x28\xfc\x37\xe8\x00\x92\xca\x69\x93\x0a\x29\x3d\x92\xa0\xd8\x16\x4a\x39\x6d\xec\xbe\x5e\x3e\x1c\x00\xde\x11\x48\x5f\x41\x1d\x46\x9b\x8b\xfb\x5d\xa2\xdd\xa5\xf8\xca\x63\x19\xb7\x88\xa6\xd3\x23\xb8\xad\x0b\xe8\x37\xcf\x3e\x71\xee\x48\x54\xff\xa6\xd0\xe7\xef\x14\x51\xa7\xeb\x7f\xe4\x87\xae\xd7\x75\xe3\x34\xdf\x11\x8c\xbf\x2a\x4b\xa0\xcf\xd4\x66\x7b\xda\xff\xbb\x4d\x70\x6d\x2b\x32\xe1\x0b\x67\x45\x13\x16\x6e\x36\xff\xcc\xf5\xbf\x02\x63\x4c\xdf\xba\x96\x68\xb9\x96\xbf\x45\xf8\xed\xa1\x02\x6e\x1c\xb5\x07\x5a\xd4\x94\xd3\xb2\xbf\x6f\xef\xf2\xbf\x12\x61\xff\x02\x6a\x1a\x0b\x21\x4e\x26\xe8\x93\x48\x22\x2a\x04\x64\xda\x1e\xfa\x54\x10\x22\xc3\x06\x8e\x97\x2a\x68\x9a\x0d\x5f\x63\x48\x54\x97\x72\xb9\x21\x0c\xbd\xbe\x7f\xb7\x8a\x6b\x24\xd7\xb9\xa0\xe5\xa0\x0e\x10\xc7\x5d\x50\x5e\x90\x63\xf6\x2e\x89\x00\x66\xae\x98\x57\x65\x0d\x7b\x97\x41\x55\x2e\x1e\x8d\x1c\x12\x42\xe1\x26\x88\x96\x7a\xd7\xeb\xc7\x1a\xe7\x85\xb8\x14\x50\xd9\x86\x35\x8a\xf1\xcb\xfd\x3a\xd6\x2e\x03\x66\x67\x2b\x31\xe3\xc7\xaa\xe5\x77\x06\x5d\xf4\x4f\x98\xbc\x3c\xbe\xfb\x87\xbc\xbe\xab\xc0\xa1\x15\x90\x35\x53\xc3\x97\x5c\x20\x1a\xc5\x05\xa9\xd9\xd4\x35\xbf\xa5\x1c\x92\xd2\x61\xbb\xba\xf6\xa7\x8d\x38\xa7\xbc\x50\x4a\xb9\x9c\xac\x81\x7b\x2c\x61\xa8\x7d\x7d\x55\x53\xfe\xd4\x89\xb8\xde\x1d\x1d\x0d\x7e\xab\x36\xac\xb4\x1a\x19\x8c\x43\x07\x17\x15\xd7\x20\xc5\x55\xaa\x3b\x3f\xe1\x04\xf9\x62\xb5\x81\x00\x3b\xae\x4f\x9f\xc4\x33\xf8\xc5\x15\xd2\xac\xf4\xbf\x38\x7b\xce\xda\x5d\x5b\xf6\xd9\x1f\xaf\x25\xdc\xfe\x7b\x3b\xb0\x0c\x06\x08\xae\x3e\x8c\x84\x04\x01\xc4\xca\x81\x90\x0b\x89\x63\x6d\xc8\x5b\x65\xcc\x37\xdf\x2a\x42\x1c\x48\xdd\x20\x0f\xe6\xf1\x52\x4d\x91\x79\x47\xaf\xf0\xa9\xe9\xac\xb2\xa9\xaf\xee\xc4\xb0\x69\xc0\x36\xdc\x19\x16\x39\xe4\xae\x21\x33\xe9\xe0\xa8\xee\xb7\xe1\xf0\xb8\x42\xcf\x11\xa7\x2e\xf5\xdd\x48\x80\x97\xc5\x8e\xf4\x73\xc1\x12\x6a\x65\xd6\x8a\x1a\x34\x18\xbe\x51\xeb\xfe\x4d\x24\x34\xa0\x0f\x03\x0e\x2e\xfa\xee\xa2\x03\x3b\xe6\x27\xe3\x38\x90\x3e\x0f\x65\x10\x1c\x57\x79\x0e\x10\x00\x2f\xa2\xda\x9a\x7f\xab\xdd\x7b\xff\x2e\x30\x31\x7a\xc1\xce\x63\x11\x15\x55\x2a\xfa\x91\x95\x6a\xfd\xe8\x6b\x47\xeb\x17\xc7\x9e\x7a\xe5\x7d\x14\xbe\xfd\xca\x98\x3a\xde\xae\x76\x11\x4c\x1a\x17\xfc\x59\x07\x9c\x87\x49\x2f\x59\x5f\xe5\xb3\x19\x2e\x99\x2c\x80\xb3\xf0\x22\x64\xd8\x10\xf7\xfc\x21\x58\x3b\x0d\xf3\x3a\x7e\x94\x69\xda\x9c\x13\x1c\xf0\xd9\xa3\x36\x49\xcb\x5c\xc5\x78\x48\x59\x52\xf5\x67\xd9\x73\xe6\x94\x00\x26\xcd\x02\xd2\xe7\x69\x38\xab\x72\x6c\x20\xcb\x37\x7d\x21\x5c\xbb\x8f\xd7\x82\xba\x03\xbc\x2e\x1f\x6d\xab\x06\x70\x9f\xa6\xff\xe0\xdb\x88\xca\xcf\xe5\x32\x94\x93\xb5\x51\x76\x17\xb5\xb9\x35\x54\x3b\xb9\xd9\x40\x13\x4f\x62\xfd\xc2\x02\xac\x4d\xdc\x5c\xb2\xb9\xb4\x97\x39\xf6\x3e\x7f\x21\x6f\x4c\x74\x01\x5a\xa1\xae\xb4\x8b\x7a\x45\xad\xc8\xf8\xca\x3a\x50\x9b\x3d\x8c\xf2\x20\x04\xd4\x11\xe8\x37\xe2\xbf\xc2\x8a\xbb\xd0\x63\x26\xb3\xbf\x6b\x85\xce\xbd\x70\xea\x6b\xed\xbc\x6f\xaa\x3c\xed\xe6\x9a\xd2\x56\x8d\xff\xb4\xc2\x49\xdf\x21\x01\xe7\x98\x47\x5a\xcf\xd5\xb1\x50\x00\xaf\x80\x51\xe6\x60\x8b\xb4\x80\x8d\xb4\x80\x0d\xbc\x08\xa6\x57\x38\xbd\xcc\xc1\x16\xfc\xb2\x8d\xc7\xd7\x5a\x2b\x2b\x77\x15\xa6\xb3\xb8\x1f\x3e\x6b\xed\x93\x6c\x14\xbd\x06\x16\xdb\x33\x44\x02\x53\xbd\xbf\xb3\x80\xe9\xa3\x98\x3a\x62\xa4\xa9\x3a\xb8\xb7\x97\x16\x25\xfd\x4f\x0b\x2c\x9b\x53\x2c\x9d\x86\x30\x97\xbf\x50\xd4\x28\xc3\xc4\x05\x0e\xe2\x33\x3f\xc3\xc1\xbd\xe1\x6b\x02\x72\x9d\xda\xbb\xb0\xe3\xa3\x7f\x5b\x39\x28\xb1\x4f\xa4\x8f\x80\x99\x13\xe6\xde\x12\xf5\x86\xc9\x10\x0b\xf2\x66\xe0\xe3\xd9\xf5\x06\x65\x2a\xcd\x8f\xe4\xaa\x82\x86\x67\x42\x94\xc5\x8e\x4b\xa9\x02\x47\x60\x04\xe8\xbe\x63\xa5\xfa\x31\x60\xa6\xcb\xd0\x4e\x97\x21\xd0\x2c\x81\x6c\x55\x62\xbe\xd4\x3c\x4c\xa0\xa9\xc0\xa5\x6e\x39\x0f\xee\xde\xa2\xdf\x37\xa3\x9e\x95\xf1\xcd\xa0\x13\x14\xd4\xeb\x75\x51\x11\x21\x59\xc2\x20\x09\x20\x6c\xb8\x93\x34\x7e\x14\xfc\x20\x62\x4f\xaa\x79\xa7\xe4\xe6\xf4\xc2\x21\x3e\xe1\x68\x95\xdc\x29\x90\x7d\x3b\x89\xbd\xda\x45\xff\x4b\x84\xc7\x12\xd7\xd6\xba\x4a\x6d\xb1\xc6\x42\x42\xca\x8a\xe2\x86\xae\x59\x7e\x9c\x81\x07\x12\x1b\x4e\x13\xe8\xcb\x09\xa8\x1b\x17\xd7\xcb\xa4\xec\x43\x1c\x5c\x56\xed\x8d\xac\x58\xc1\x92\xfc\x32\x69\x7b\x16\x73\x71\x7a\x3c\xbf\xe9\xda\xdd\xd7\xa2\x55\xff\x4c\x85\xcb\x74\x1a\xd4\x58\xd6\xdb\xb0\x9c\xf8\x14\xf6\xfc\x8d\x9e\xc0\x9d\x73\x0e\x1c\x60\x73\x2c\x38\xb5\x94\x93\xcd\x02\x43\x16\x5f\x37\xb1\x60\x60\xbb\x80\x3a\x5e\x8b\x66\x91\x99\x49\x77\x76\xb8\xf2\xf1\xf8\xfd\x56\x6b\xc9\x15\x85\x7f\xf1\x60\x3c\x15\x1b\x6e\x4f\x35\x67\x03\x69\x07\x6d\x3b\x8c\x4c\x2d\xdf\x7a\xff\xbe\xc3\x92\x69\xc6\x07\x04\x6c\xb4\xc1\x22\x1e\x80\x08\xfe\xc8\xf3\x40\xb3\x22\xba\x04\x2a\x06\xbe\xf4\x3e\xf6\x78\x1b\x5b\xcd\x71\x4b\xc1\x30\x76\x72\xf6\x14\xc6\xf1\xa2\xb8\xf5\x60\xa5\xc8\xb8\xb7\x9c\xc1\x4a\x5c\x9a\x16\x2a\xf4\xdb\x69\x3f\xba\xfc\x8f\xb3\xd1\xc2\xfe\xb8\x24\x6f\x91\x58\xe6\xd1\xcb\x51\x3f\x2e\x79\xf8\x98\x94\xa7\x0a\x66\xbd\xf5\xe5\x79\x12\x27\xe3\xab\x29\x6e\x99\x97\xe8\xa1\xcc\xe1\x94\xb8\x72\xfa\x43\xf4\x58\x30\x72\x4c\x04\x1c\xdc\x03\x7a\x11\xec\xfe\x97\xe5\x41\x4a\xb9\x30\x7b\xcb\xe2\xef\x8e\xa1\xfc\x7d\xff\xdb\x81\xbf\x3b\xeb\x2a\xc3\xdd\x8b\xe8\x2c\x8f\xe8\xe5\x3b\x54\xf8\x68\x6c\x08\x66\x14\xc3\x72\x37\x08\xa0\x02\x6f\x43\x1c\x5c\x30\xb9\x9d\xd4\xa2\x2c\x9c\x55\x09\xd6\x11\x78\x32\x69\x7b\x0c\x58\x1d\x96\x96\xfe\xa7\xac\xa5\xe0\x1c\x7d\x0e\x6c\x80\x3b\x31\x56\xbd\x3f\x4e\x34\x4c\xec\x8e\x68\xfd\x64\xa8\x52\xd5\x3d\xee\xb7\xa5\x7b\x6d\x12\x43\xfa\x68\xd6\xe9\x11\x33\x24\x84\x05\x2d\xdb\x6c\xa4\x47\xd5\x96\x8d\x41\x27\x63\x5c\xcf\x01\xd0\x19\x92\x71\xfa\x56\x19\xdd\x86\xf2\x16\x18\xcd\x86\xf9\x30\x3a\xc4\x1f\xa8\x6b\x63\xff\xaf\x0e\x73\x49\xb4\xba\xd6\x4d\x42\xbf\xdc\xa8\x1a\x8f\x13\x2c\xa9\x06\xda\x25\x47\x1f\xb3\xf1\x12\xd3\x61\xa6\xfb\xf3\x5a\xbe\x9b\x0f\xf3\x17\x14\x30\x8c\x85\x8e\x07\x7f\x66\x30\x8f\xfd\xf0\x0a\x9a\xcd\x4c\x38\xcc\x00\x50\x38\x17\xe4\xdd\xd5\x6e\x90\x9f\x8a\x85\xdf\xfe\x91\xb9\xf9\xc3\xf5\xbb\xd6\x7f\x7b\x79\x59\x69\x2e\x7a\x7a\x5c\xa7\x9c\x1e\x13\xc5\xfc\x5d\x9d\xd2\xf9\xdc\xe5\x42\x11\x6f\xb7\xf2\x68\xd5\xf3\x3d\x10\xf3\xe3\xa3\xcb\xc3\xb8\xce\xc1\x64\x98\xff\xd5\x54\x81\x7c\x6b\x79\xe3\x8d\x47\xc7\x98\x37\x23\xfa\xa7\x98\x1f\xc2\x6b\x86\xa6\x8c\x8d\xbc\xbc\x8b\xe6\x2c\xdf\x5e\x7b\x59\x2c\x71\xc6\x21\x51\xeb\xee\x2a\x9e\xfd\x3c\x53\xb4\xba\x27\xfe\x30\xd0\xd8\xb6\xd9\x8d\xc9\x89\xc6\x3f\xbc\x4d\x32\x21\x87\xed\xae\x10\x78\x33\xa5\xe5\x45\x60\x46\xe8\xbc\x6d\x71\xc4\xdb\x95\xc9\x17\x97\xf9\xce\xe2\x5d\x3c\x7b\x52\xee\xbd\xd2\x59\xe5\x19\xb4\xfd\x06\x32\xcd\xdb\x83\x05\x84\x98\xf3\x96\x50\x57\x39\xec\xdb\x68\x43\xf1\xdb\xda\x56\xa9\x5e\x30\x86\xd1\xea\x39\x67\x84\xa0\x94\x50\x39\x4d\x4d\xac\xc9\x6e\xa1\xd0\xb6\x6a\x11\x94\x02\x02\xaf\x75\x98\x16\x78\xa7\x9d\x7b\xd3\xa2\x59\xe8\x56\x8c\x5f\x26\x8e\xa4\xf6\xe3\xb2\x7c\xa7\x18\xa0\x42\x58\x10\xda\x14\x94\xd2\x74\xd5\x2d\x7d\x59\x67\xfa\x42\x4b\xa2\x9a\xe9\x0f\xce\x97\xb5\x63\x5d\xa0\x19\x82\x40\x92\x48\xaa\x4e\xfb\x85\x42\x2e\x4a\x1f\x05\x73\x49\x80\x33\x25\xed\xa8\xec\xfe\x7f\x04\xac\xf8\x7b\x04\x9a\x02\xb7\xe9\x69\x11\x15\x10\x6c\x82\xd0\x7c\x78\xb1\x69\x89\xe0\xe6\xdd\x9f\x3e\x10\xc2\x15\xf3\xeb\x1f\x8e\xe3\x17\xd0\xa9\x91\xec\xa5\x28\x9f\xca\x78\x27\x71\x9f\x18\x81\xa3\x95\x74\xbe\xab\x1c\xed\xdf\xe7\x04\x52\x48\x39\x20\x87\x44\x41\xb2\xab\x31\x80\x12\x49\x08\x54\x1d\x99\xa1\xe6\x0e\x67\xd7\x6f\x97\x66\x85\x7e\x94\x9c\xd1\x16\x71\xfb\x52\xbb\x86\xca\xb8\x99\x4f\xe5\x91\xd3\x11\x37\x76\x8d\xe1\xf5\xb3\x70\xa6\xc9\xb4\xc6\x0a\x16\xaa\xea\xe2\xef\xf9\xf9\xbe\x7e\xdf\xe2\x6a\x99\x7b\x57\x59\xd4\x50\xdb\x23\xd0\xd6\x6a\xb7\xba\xa6\x4a\xf5\x9a\x8c\x79\xf5\xd7\x52\xaa\x6e\x85\x09\x51\x53\xdf\x63\x44\x09\x18\x81\x8f\x5b\x13\x54\xd5\x58\xa3\xa6\x53\xd1\x47\xd8\x8d\xd3\x50\xe4\x6b\xa1\x60\xef\xc5\x65\xe9\xa3\x33\xba\x24\x66\x33\xd3\xb1\x20\x1e\x38\x53\x6e\xfc\xec\x8a\x9d\xc0\x73\x75\xbe\xd6\x6e\xb9\xe5\xd9\xe7\x90\x3b\x21\x5c\x9e\x54\xf9\x35\x2a\x79\xcf\x20\x65\x5b\x0a\x52\x6c\x2a\xf2\xa8\xe0\x3a\xfc\x88\x33\xc3\xa9\x17\x1e\xe0\xb1\x8e\x8a\x43\x57\xe8\x65\xea\xf9\xa1\x32\x80\xc3\x76\x99\x97\x52\x9d\x59\xa0\x59\xc4\x5e\x0a\xa9\x0b\x2b\xd7\xc8\xa0\x23\x94\x47\x11\xe3\x39\x01\x0e\xf2\xa5\x8d\x99\x2e\x47\xbe\x9f\xf3\x1e\xf6\x9f\x11\x4c\x3d\xe3\x5e\x93\x05\xd8\x30\x24\x0b\x9d\x27\x9f\xca\xa5\xe0\xe4\x74\x8f\xe2\x37\x11\xd3\x04\x9a\xf1\xce\x29\x6b\x1b\x97\x22\x9b\x93\x5e\x9f\x9f\x7d\x3c\xc3\xf9\x79\x5d\x93\x6d\x4d\x74\xdb\x9b\x16\x61\x4a\x0f\x1b\x66\x90\x7c\xba\xc7\xcd\x03\x01\xe8\x30\xe9\xcc\xa3\xc6\xf1\xbb\x77\x36\x88\x6f\xf7\xb4\x94\x3d\x3d\x72\x4b\xad\x7e\xda\x55\x69\x6b\xea\x95\x15\x6b\x60\x1f\xce\x88\x69\x8d\x1a\xb7\x78\x52\xd0\x58\xab\x1e\x32\x3c\xa0\xf0\x22\xf7\x94\x64\xff\x36\x3f\xf2\x9e\xd7\x7e\x70\x5b\x47\x8b\x18\xc6\xfb\xe6\xa9\x79\xff\x5e\x9b\x73\x4f\xbb\x7e\x46\x0f\xc8\x5a\xef\x5a\x2d\xb2\x98\xa6\x96\xf7\x7f\xb0\x2e\xae\xd2\x8e\x9f\x33\x91\x77\x13\xcb\xa5\xd5\x51\x1e\x3d\x6b\xe9\x2c\x47\xea\x62\xe7\x02\x37\x02\x83\x3e\x58\x80\x64\x76\x59\x1f\x81\x22\xf3\x65\xb8\xb4\xf3\x47\x33\xce\xbd\x97\x7f\xba\xce\x9f\xb1\xdf\x7b\x72\x1f\x1d\x48\x7e\x66\x88\x52\x03\x7a\x20\xd9\x60\xc8\x36\xd9\xa5\x63\x0c\x7f\xef\xbb\x8e\x04\xc5\xdf\x60\x31\x39\x23\xaa\xf4\x7b\x37\xa3\x55\xdc\x94\x58\x96\xec\x2d\x9d\x4d\x12\x63\x0a\x0f\xca\x4a\x53\xd0\x89\xb8\xeb\xa3\x11\x00\x84\x3e\x0e\xc9\xb2\x79\x40\xdc\x9f\xef\x4d\x59\xe2\xde\x98\x0c\xb1\x1f\xb2\x64\x70\x45\xb5\xc5\x50\x25\x51\x84\x0b\x8c\xb3\x3a\x22\xb8\xf8\x2c\x79\xb6\x4b\x97\xd3\xf9\xc4\x1f\x6d\x0a\x1f\x8e\x36\xd8\xcf\x41\x72\x5c\xfe\x48\xf0\xbd\x09\x82\x97\xb9\xa8\xe4\xd2\x8f\x8e\x5e\x2f\xf1\x65\x85\x98\x92\xdf\x65\x87\xca\x01\xcf\xcf\x8f\xe3\xd9\x25\xe4\xa6\x3d\x30\xe6\xd5\x7f\x41\x39\x4a\xf0\xb4\x09\x23\x17\x66\xcb\x77\x50\xca\x81\xe2\xe7\xae\xef\x3c\x84\x8e\x26\xd9\xb6\x47\x07\xf7\x69\xb5\x70\xaf\xea\x1d\x28\x80\x9a\xad\x3c\x11\xd4\x7c\xe7\xc5\x71\x39\xf9\x14\x32\x6c\x6e\x33\x3d\x52\xe0\x9a\x02\xf3\x5d\x22\xbb\x78\x66\x65\x61\xc4\x4b\x01\x6a\xcb\xa8\xaf\x75\x71\x5f\x47\xb4\x65\x37\xf2\x00\xa0\xc6\x31\x47\xf9\x90\x0c\xb8\xb0\x95\xc9\xd2\xe7\x2e\xd6\xd5\x82\x46\x2b\x0b\xd6\x2a\xba\xbf\x17\x35\xf7\xfb\x93\x58\x25\x94\xa3\x4d\x70\xed\xf8\x16\x30\x2e\x25\x6d\xdf\x25\xb5\xa0\x0f\xfe\x44\x79\x79\x4f\xf5\x6d\x08\x57\xda\x33\xe8\xfd\xd4\x53\xd1\xa0\x28\xa7\xb8\x6d\x67\x44\xb1\x4d\x5d\x25\x1b\x52\xdb\x28\xc6\x41\xa6\xe4\x5e\x74\x68\x7f\xfa\x3b\xd4\xcd\x35\x16\x7b\x79\x83\x4e\xbd\xf6\xc0\xe4\x5a\x43\x47\xfb\x57\x43\xd2\x9f\x3f\x67\x7c\x6e\xe9\x8c\x0e\x16\x92\x54\xae\x6f\x70\x71\xfc\x01\x9a\xdd\xe7\x66\xa1\x9a\x9a\xdb\x53\xde\x43\x73\xee\x31\x02\x12\x68\xab\xc2\xb3\x65\x68\x44\x22\x0f\x07\xc7\x52\x50\x63\x1b\x8f\x4c\xd3\xe5\x31\xf4\xb1\xdd\x0e\x62\x8b\x72\xfb\xfd\x80\xba\xaf\xfa\x5f\x9d\xd9\x7e\xf4\xb8\x5f\xa5\x96\x16\x9a\x63\x3b\x66\x86\xef\x75\xed\x2a\x49\xd3\x68\x5c\xd7\xa8\xcb\x62\x0f\x8f\x95\xdd\x99\xf4\x3c\x53\xd0\x61\x41\xf5\x0e\xe4\xef\xb5\x5f\xe1\xf9\xfd\xec\xe0\xf2\xbc\xec\x8d\x90\xe2\x3d\xae\xcc\xdd\x5c\x46\xeb\x49\x6d\xef\x2f\x09\x13\xb6\x12\xbf\x5f\x6a\x0f\xf6\xc8\x19\x58\x33\x66\x60\x3e\xfb\x52\x3b\xf4\xa7\x9d\x8b\x81\xeb\xe9\xf4\xc7\x1e\x8e\xbb\xc7\x91\x3e\x61\x68\xc0\x05\x98\x90\x1f\x73\xd5\x2d\xf7\x23\x90\xf3\x9e\xd0\xe3\xee\x8d\x54\x53\x5e\x83\xbb\x35\x5d\x09\x35\x40\x1e\x90\x18\xd1\x94\x5d\x61\x5d\xca\x3a\x6a\xf3\x1c\x5c\xf6\x1c\x51\xee\x00\x6f\xb7\x21\xab\x84\xe4\xc7\x05\xa6\x3d\x63\x49\x84\xb0\x90\x17\xe8\x85\x65\xb1\x70\x7f\xb7\x3a\xbe\xf9\x8d\x09\x2a\x29\xec\x8b\x5c\x64\xbf\x35\x96\xeb\x16\x9e\xad\xf3\xed\x8c\x5b\x21\xde\x74\x3e\x6f\xe9\xbd\x47\x1b\xbe\xca\x2d\xb4\x27\xc4\xe0\xda\x73\xf0\x10\xfb\xe4\x78\xd4\x9d\x39\x5c\xf5\xd6\x35\x78\x68\x80\xdc\x15\x07\x52\xd9\x53\xa0\xc9\x43\x5d\xfa\x9c\x50\x2e\x43\x9d\xb0\x5c\xa6\xfe\x7d\x5f\xa9\x51\x68\x43\xba\x9d\xed\xfd\x11\x8a\x7a\xe3\xfc\x19\x41\xad\xaa\xc3\x0b\x2d\x64\x11\x27\x85\xf2\xb7\x63\xe8\x43\xd6\xd9\x93\x42\xa0\xf6\x40\x58\x8a\xb9\x48\xae\x0e\x89\x0f\xdc\x75\x97\xdd\x0c\x70\x96\xfc\x92\xc8\xfe\x35\x20\xa1\xcd\x26\xbe\x12\x90\x8e\x66\x5f\xf9\x58\xc0\x49\x98\x2d\x6f\x60\xc5\x6c\xd7\xd7\xbd\x54\x5f\x6d\x39\x50\xfa\x93\xf2\xb4\xe5\xa0\xac\xf5\x7a\xde\x74\x69\xf5\xd8\x32\x07\x8c\xf0\xcd\xcb\x19\xf6\xdd\x50\xbf\x63\xad\xa6\xd8\xe2\xb1\x0a\xd6\x31\xab\xec\x40\x36\x78\x0f\xa9\x2b\xe5\xde\x18\x0d\x24\x68\x90\xc9\x45\xcf\x4c\xfc\xf1\x5b\x74\xb7\xe2\xdf\xc9\x49\x40\x48\x29\x63\x10\x8a\x19\x75\xc0\xc2\x1b\x04\x10\x68\x57\xb3\x77\x84\xff\xd2\x22\x9e\xa4\x60\x58\xb3\xbd\xb2\x9e\xed\xe0\xfd\x28\x8c\xe5\x43\x5f\x4c\x66\x86\x74\x80\x7d\xd3\xef\x8f\x63\x7d\x1b\xbe\x98\xf4\xc2\xcd\x81\xdc\xab\x37\x9a\xb1\xfc\x3b\x7e\xe2\x8b\x06\x6d\x45\x52\xbf\x14\x2e\x8e\xc9\xaf\xab\xad\xd7\xc6\x64\x60\x9a\x95\x8a\xe0\x44\x42\xc1\x12\xec\x17\x61\xfa\xd1\x3f\x86\xce\xf2\xd9\xcf\xe5\x87\x58\xc2\xec\x95\xd3\xd2\xf8\x37\x7f\xa5\x44\x3e\x09\x8f\x10\x48\xb4\xd0\xce\x7d\x87\x05\x54\xe2\xd5\xbd\x08\x4b\x15\x34\xd7\xd1\xce\xdd\xf2\x1e\x1a\x3e\xee\xce\x68\x66\xff\xfd\x54\x6e\xb8\x47\x9c\xe5\xc0\xf0\xd6\x37\xd7\x51\xb2\x7e\x6b\xe5\x07\x80\xf5\x2f\xee\xf2\x08\xfa\x38\xdf\x60\xec\x73\xba\x35\xd5\x95\xad\x3c\x55\x40\xfb\x24\xf8\x47\xf4\x1e\xea\x2d\x6c\x32\x45\xb9\xd5\xd7\x45\x55\x51\x9e\x9c\x79\x45\x5c\xf3\xc1\x83\xfb\x88\x9c\xce\x08\xf7\x3a\x83\x1c\x9a\x7b\x73\x13\xa9\x8e\x05\x4c\x26\xb0\x17\x9a\x78\xc4\x3d\xb4\xfc\x2b\x7e\xf8\x40\x26\x73\xee\xf4\xaa\x03\x89\xb7\x0d\x51\x34\xd8\xc4\x19\x71\x64\x81\xa5\x9f\xa0\x27\x2e\x0b\x07\x30\x56\xa2\x03\x94\x33\x89\x27\x77\xd6\x72\x60\xda\x8c\x74\xd8\xc0\x10\xcb\xa2\x33\x9f\x10\xf6\x83\xdf\x15\x45\x87\xe4\x84\x51\x46\x0c\x55\x92\x7d\x87\xbf\x71\x06\x10\x75\xb3\x4d\x4a\x18\x68\xc6\x39\x52\x54\xee\x9c\x44\xd1\xe9\x55\xa8\xff\x8f\xa0\xe5\x0d\x4f\x1f\x8b\x29\xd5\x55\x58\xb4\x28\x0c\x24\xf0\xe4\xc6\xd7\x56\xa5\x91\xe8\xbe\xf6\x28\x2b\x99\x8b\x7f\x8d\x68\x55\xad\x76\xfc\x71\xe5\x27\xa9\xc4\xb5\x21\xfa\x93\x31\x46\xee\xd1\xb0\xd6\x47\xfc\xb2\x29\xf2\x34\xd3\x61\x3d\x32\x00\xa2\xe1\xf8\x94\xa5\xbf\x26\x8b\x71\x15\x72\xd4\x98\xd2\x00\x03\x6d\x95\x9d\xe3\xa4\x5d\x93\x1d\x10\x78\xa2\xd7\x8e\xef\x66\x94\xf1\xf6\xbe\x12\x75\x18\xa1\x39\x00\x1b\x56\xfc\xf9\x45\x4e\x55\x0d\xbf\xb8\xb2\x7e\xf4\x01\x5b\x10\x92\x24\xaf\xe1\xe6\xcc\x45\x1d\x35\xa8\x9b\xc5\x54\x82\x14\x36\xf4\x2e\xf9\xa1\x86\xf6\xda\x34\xfd\xa0\xe9\x11\xa1\x01\x6e\x64\x13\x57\x5e\x53\x85\x87\xfb\x6c\x98\xef\x5d\xde\x56\x9d\x6d\x98\xe3\xfa\x91\x0c\xa9\x33\xbc\x8f\xa3\x6d\xad\x8c\x2d\xd2\xa1\xb8\xf3\x6b\x11\xb2\x2c\x95\x72\x5f\x58\xb5\xf6\xdf\xa4\xfb\x3e\xf8\xf3\x8f\x59\xe3\xc5\xaa\x83\xf0\x8b\x30\xfd\xa4\xae\x01\x5e\xba\x4f\xd6\x10\x3a\xc9\xb8\xbd\xbc\x84\x23\x33\x8a\x79\x51\xcb\xb0\x56\xc0\x52\x65\xf5\xf1\x72\xa5\x22\xf7\x93\x25\xe8\x9b\x7e\x1a\xf3\x35\xa7\xfe\xbf\x97\x51\xed\xcf\xaf\x6e\xa3\x45\xcb\xc3\xbf\x46\xb8\x8e\xb3\xd6\xbe\x3a\x35\x58\xbe\x13\x03\xcc\xf3\x1d\x41\xc4\xbf\xfd\x30\x0d\x30\xe5\x3c\x3c\x5f\xd3\x9b\x06\xf8\xb8\x79\x7f\xba\x56\x7e\x02\x00\x16\xd3\xf2\x6f\xa4\xb4\x7e\x3b\x6f\x3e\xeb\xcd\x3a\x1e\x13\x3d\x23\x3f\xcd\x50\x9e\x55\xd1\xce\x4d\xd7\x0e\x72\x98\x0f\x3c\xe4\xc5\x14\x3e\xba\xcf\x8c\xc9\x1f\x75\x3f\x24\x9b\x94\x01\x1e\x9b\x43\x54\x12\x49\x5a\x1a\x1f\x03\xb8\x9d\xa8\x81\xc9\xef\xf4\x85\xc8\xaa\xb4\x9b\x47\x25\xed\xab\xc0\xd5\x4a\xc9\xe2\x88\x6c\xd1\xd4\x99\xc7\x2d\x45\xbb\xb0\x9d\xf7\xe1\xeb\x6a\xba\x6a\x69\xef\x53\x21\xad\x2b\x5f\x7d\x8c\x6d\xae\x3d\xd9\x80\x1c\x9f\x2d\xf9\xb3\xf5\xfe\xe6\xab\x11\x0a\x68\xb6\x68\xdb\x3e\x11\x66\x87\x9a\x88\xe5\x3b\x09\x4f\x73\xc6\xd3\xa5\x7a\xe5\xb8\xca\x15\x69\xbd\x60\x9f\x91\x6e\x49\x43\x6c\x92\x8e\x20\xea\x4b\x29\x4b\x6b\x19\x10\x55\x90\xef\x42\x8b\x3f\xdc\x6c\xaa\x9b\x7d\xb8\xfd\xe9\x85\x20\x95\x34\x6f\xd6\x1b\x0f\x90\x3f\x65\x8e\xed\x3e\xdc\x54\x2f\xa6\xdc\xd0\xf9\xc1\x7d\x96\x55\xec\x2f\x2f\xd8\x5a\x40\xc6\x81\x9c\x72\x8b\x07\x64\xb0\xb8\xde\xfe\x3a\xbd\x55\xa9\x95\x40\x1d\xec\xcf\xe5\x9f\x9f\x80\x20\x9b\xc4\xfa\x92\xeb\x8c\x49\x81\xc8\x38\x1e\xf3\xbb\xf1\xfb\x3f\x92\xcc\x82\x2b\xea\xef\xeb\xe2\xdf\x19\x06\x18\x42\x19\x4a\x40\x05\x86\x2e\x09\x09\x01\xa9\x19\x69\xa4\x53\x1a\xa4\x41\x1a\x04\xc9\x01\x01\x11\x41\x60\x08\x29\xe9\xee\xee\x46\x50\xba\xbb\xa5\x41\xba\x73\x9e\xf5\xfb\x3f\x6f\xe0\xec\xbb\x3e\xf7\xec\x7b\xf6\x5d\x67\x2a\x93\x07\x51\x74\x74\xf9\xfb\xde\x5b\xcf\x9f\x28\xde\x3f\x81\x60\xe1\xed\x4d\x13\x8f\xb1\xf6\x43\x85\xe2\xe8\x98\x5a\xcb\x34\x75\xfb\xcb\x2f\x3e\x1b\x9d\xca\xff\x8c\x53\x96\x23\x4a\x60\x21\x6e\x33\x14\x81\xa9\x24\x23\x95\xc3\x38\xc1\x26\x44\xba\x18\xde\x09\x43\xcc\xce\x69\xd3\x4d\xa4\x1b\xae\x31\x95\x5b\xa9\x64\xd9\x1f\x32\xce\x21\xed\xf5\x65\x6f\x67\x4e\x67\xaa\x8b\x2d\xa8\xa7\x9d\x44\xf8\x89\x6b\xf9\xb7\xe5\xad\xe9\x6f\x49\x38\xdd\x20\x54\x22\x6f\x95\xd2\x57\x2d\xca\xbf\x07\xa6\x98\xcf\x74\x28\x32\x8a\x3c\x5f\x7c\x44\x9e\xa0\x34\x2b\xd6\x9a\xd2\xb6\x28\x60\xad\x05\x26\x04\x78\xfa\xf9\xd6\x9d\x6d\x64\x6e\x82\xfa\xf2\xf9\xff\xc5\xd0\x68\xd4\x97\xac\xd5\xdc\xa1\xef\x2a\xb2\x32\xe8\xdd\x0e\x3f\x61\xaa\x0f\x30\x2b\xcb\xee\xe1\x97\x82\x43\xdd\xdf\x06\xbd\x67\xaf\x99\x66\x74\x80\xcc\x58\x94\xf2\xf2\x29\x81\x9f\x7f\x4b\x9b\xc4\xea\xcb\x17\x07\xcb\x93\xfb\xb4\x63\x9b\x82\x2f\x6e\x0d\x0d\x5f\x14\xf0\x59\xb9\xde\x1c\xee\x3e\xfe\xb4\x2a\xb7\xbc\xff\x18\xfe\x58\x61\x8c\x7e\xb9\xb1\x9e\xfc\xd6\x6f\xa0\x43\xde\x3a\x48\x37\x7d\x92\x60\xe4\x1b\xd3\xf3\x8d\x07\x1d\x10\xc2\xdb\x94\xc1\x4f\xd8\x5e\xc1\xd1\x44\x5c\xcf\xd7\xda\xed\x8b\x81\x78\x55\x1e\x66\x5b\x51\xd9\x38\xc8\x97\x1b\x91\x8d\x9b\x9d\x66\x84\x42\xb2\xbc\xbc\x16\xd4\x38\x78\x7f\xa0\x47\x52\xa4\xfa\x6b\x10\x84\x69\xf3\x95\xce\x65\x2d\x68\x78\xf7\xe5\x48\x5e\xb9\x93\x80\x67\x53\x2a\x08\x94\xb9\xd0\xc5\x0c\x4c\x50\x22\xe3\xee\xd0\x77\x9f\x38\x95\x1c\x5c\x16\xd0\x72\xcc\xdb\x20\x1d\x64\xf0\xdf\x66\xb7\x12\x7e\x16\xb1\xa0\x0b\xbf\xcb\x0e\xf5\x79\x49\x26\x8c\xf4\xa8\x99\x50\x7b\xd9\xd1\x64\xba\x21\x31\xd4\x0b\xd2\x19\x1b\xc8\xea\xe1\x3f\xb2\x7b\xd8\x30\xe9\x48\x14\xa6\x52\x3e\x6e\x3c\x8e\x5d\xda\x28\xf4\xd1\x86\xef\xe2\x44\x53\xe9\xe6\xa7\xda\x33\x7b\x25\x4a\x85\x21\xcd\xf5\x65\xb1\x36\x52\x91\xcf\xc2\x27\x64\x40\x1b\x47\xb3\x85\x17\x1c\xb1\xad\x29\x89\x72\xda\x33\xee\xa5\x54\xbf\x31\x37\xba\xfd\xfe\x97\x46\xb7\xc7\x7f\xd8\xe4\xb1\xde\x1c\x63\x59\x5a\xff\x8e\x8e\x89\xf1\x35\x5e\x08\x12\x87\xde\x0a\x87\x1c\x0c\x3d\x07\x10\x8b\x04\xaa\xee\xbd\x9e\x4c\x60\x76\x32\x2b\xf4\x13\x79\xc9\x22\x19\x66\x34\x88\x25\x92\x27\x00\x46\x88\xe5\xd9\xab\x27\xc0\x10\x5c\xe7\xc2\xb2\x7e\x39\xe0\xc5\x6a\xf2\xe1\x44\x2f\xe4\x11\xc3\x9f\x62\xf3\x5e\xab\x86\x98\xbe\xbc\xe7\x02\x25\xcb\xe9\x60\xd8\x2b\x6c\x18\x70\xc3\xc7\x9a\x83\xab\x82\x22\xb8\x6d\x80\x22\xa5\xdb\x8d\xab\x8c\xcf\xa8\x83\xdb\xa7\x97\xd4\x02\xa7\x9e\x62\xca\xb9\xbe\xa8\x95\x44\x36\xe1\x63\x1e\x4b\xfa\xe9\x19\xac\x68\x84\xf0\xd7\x68\xaa\xb7\x31\x68\x88\xe2\x97\x62\xe0\x72\xae\xc7\x7c\x5b\x1e\xe7\x87\xdd\x1f\x52\x50\x47\x06\x28\xa3\xb9\x0a\xdc\xe9\x52\x00\x75\x73\x67\x79\xa7\xde\x17\x6b\xd4\xfd\xbc\x3b\xa4\x65\x84\xc7\x9c\x82\x7b\x58\x7b\x5d\x47\x07\x7f\xf7\x85\x14\x07\xb0\xf4\xf4\x76\x13\x7b\x3b\x0f\xdc\x2e\xd9\xea\x50\x54\x20\x60\xae\x4d\x5d\xa7\x00\x24\x66\x68\x2e\xd0\x53\x75\xaa\xc6\xca\x3c\x21\x8f\x21\x09\xc7\xc3\x3d\x03\xf3\xc7\xa1\xfe\x36\xbb\xb5\x95\xb3\xb6\x1d\xe6\xb3\x0a\xfe\x13\x08\xc7\x7a\x0e\x12\x88\xb9\x7a\x18\xb2\xd9\xa0\xd6\x97\xf4\x1e\xd1\x3b\xa4\x99\xb4\x2e\x72\x9c\x6a\x4b\x7b\x9c\x0a\x94\x81\xe1\xc5\xf8\xed\x1a\x10\x51\x8b\x76\x0d\xe8\x9d\x02\xb2\x3c\x23\xb2\xad\x22\xda\xbf\xe4\xa7\xcc\x1d\xcd\xc4\xc9\x25\xf4\xa3\x59\x1c\x80\xe8\x79\x6e\xd3\x8f\x7d\x6e\xbe\x40\xaf\x23\x53\xf3\x95\x7c\x53\x6e\x78\x6a\xdd\xf1\xe7\x72\xc4\xcf\x00\x27\xba\x99\x4d\x6c\x68\xb1\xb0\xe2\x71\x34\x08\xf1\x93\x83\x83\x9b\xd5\x2d\x1f\x2f\x92\x1a\x09\x30\x5a\x28\x70\x97\x90\x55\xf3\xc1\x68\x70\x28\x9f\x11\x01\x08\xef\x37\x5a\x7c\xb9\xb6\xf2\x03\xcf\x05\xb1\x01\xbe\xec\x6e\x7b\xde\x92\x06\x6a\x0e\x10\x24\x06\xc9\xed\x60\xca\x2d\x5f\xdc\x43\xac\xe9\xca\x71\x62\xb5\xa1\xbb\x43\xca\x9e\xb1\x5b\xae\xe2\x97\x8d\x6c\xff\x40\xed\x78\x90\x1a\xb5\x5c\x6a\xf9\xe7\x69\xb5\x5e\xa7\xe9\xbe\xc3\xfc\xee\xd2\xad\x21\xce\x24\xf2\x98\x40\x39\xf8\x8c\x05\x0f\x87\x1c\xd9\xa6\x0e\x13\x0d\x64\xf2\xeb\xe0\x95\xc5\xa8\xa6\x94\x0b\x1f\xb7\x94\x0a\x17\xe7\xb8\x8f\xe3\x4f\x51\x3f\xd7\xe7\x2a\xd4\x21\x0b\x7b\x62\xe2\x76\xf9\x22\x5b\xb5\xba\x59\x5d\xd3\x18\x8a\x87\x15\x14\x6c\x24\x52\xd2\x96\x78\xcb\x63\xac\x5d\x89\x97\x2c\xca\x67\x5b\x81\x81\x17\x7e\x53\xe6\x8c\x8d\xa3\xe0\x0d\x89\x0d\xf4\xdd\x60\x7a\x41\x64\x62\xee\x0a\xdc\x09\x3a\x78\x42\x11\xef\x43\x24\xaf\xde\xd9\xc7\x26\x7c\x26\xab\xeb\xfd\xb0\xc0\xfc\xba\x7a\x29\x7c\xd1\x41\xa1\x83\x72\xf4\x33\x05\x7c\xfb\x71\x29\x08\x31\xa9\xa5\xe6\x77\x5b\x7d\xe2\x60\x91\x64\x60\x05\x89\xd0\xf2\xeb\x27\xee\xa4\x26\xdf\x3f\x28\xf9\xd3\xc6\xf6\xa2\xcf\x18\x6c\x6b\xe7\x43\x5a\xfd\x40\xc4\x7f\x70\x61\x73\x35\x3b\xec\xd7\xd3\xe4\x89\x15\x98\x01\x52\xa1\x3a\x9b\x3e\xbb\x25\xc7\xe2\x5b\xbf\xed\xd8\x94\x31\x35\x73\x9e\x2f\x7e\x70\xe8\x94\x58\xb1\x0f\x27\x0b\xa4\x92\xec\x33\xb7\x3b\xd1\x79\x1a\xe8\x6e\xde\xf1\x7c\x27\x31\xc9\x4d\xd8\x26\x9a\xb1\x5a\xaf\x43\x2d\x55\x07\x33\x6d\x6a\xdf\x1c\x17\x17\xe8\xa5\xee\x7a\x84\xf7\x0b\x77\xe9\x72\xb3\x60\x3a\x95\xb7\xd7\x55\x43\x40\x78\x4f\xbf\x49\xe7\xd1\x08\xb3\xd9\xcd\xaa\x0d\xcd\x04\x36\x1e\xf9\x03\xd0\x4e\x18\x4c\xf5\xca\x94\x1c\x9a\xe8\xc3\xdf\x09\x1f\xec\xe6\x6b\x1c\x57\x84\xfc\x13\x60\x66\xa2\x54\xb9\x33\xac\x6f\xfe\xee\xcc\x35\xb1\xec\x4a\xa0\x27\x48\x89\x07\x30\xf2\x7d\xad\xab\x1d\x62\x6b\xeb\x98\xd0\x5e\xf3\x3e\xb0\x18\x40\x50\x5d\xd0\xcb\xe0\xc9\x4a\x5f\xb7\x58\x5c\xd7\x35\xe5\xad\xab\x50\xd9\x4c\x35\xcb\x76\x77\xde\x26\x5d\x2f\x73\x2c\xed\x09\xbe\x9a\x4a\xe7\xa5\x9c\x3a\xcd\xfa\xf1\x3c\xbd\xfc\x55\x59\xc7\xd6\xc3\xef\x3c\x43\xab\x91\x47\x5c\xa6\xdf\x63\x67\xc3\x9a\xd3\x45\xae\x5e\x84\x5f\x19\x05\x0b\xc9\xbd\xc4\x4d\x33\x66\xcb\x7f\xdb\x8d\x5d\x07\xdc\x9a\x02\x8e\x41\xa5\x18\xaf\xdb\x32\x0d\xcd\x43\xff\x4f\xb9\xec\x69\xf1\x3b\x9e\xd5\x69\x3a\x86\xcd\x29\xd5\x72\x4f\x00\x6d\x3a\x83\xeb\x1d\x0e\xdf\x63\xc0\xcd\x06\x67\x9d\x08\xc4\x23\x99\x9b\xcb\x74\xcc\x2b\x99\xf1\xb3\x5e\xe6\x49\x77\xb7\xc6\x71\xa3\xf6\xd3\x38\x28\x2b\x1a\xc4\x82\x42\x31\x41\x61\x46\x24\x94\x2f\x48\x8b\x00\x44\x4e\x3c\xf3\x9e\xbe\x55\x9c\xf1\x34\xef\x7a\x6d\x3e\xe1\xcc\x6f\x2d\xd5\x8a\x72\xd6\xb6\x3a\x57\xbd\xeb\x50\x85\x7c\x68\x49\x85\x73\x9b\x5d\xb3\x19\xc9\x82\xda\x68\x86\xb0\xa6\xbe\x1c\xa9\x5e\x0b\x56\x75\xff\xe5\x9d\xff\xbc\xf6\xec\xc8\xb7\x6e\x5a\xe4\x84\xd4\x5b\x30\xc0\xbb\x99\x9e\xfd\xc8\x26\x80\x27\x36\x68\x74\x39\x2d\x4a\xf1\xf8\x9f\x81\xae\xf0\x23\x43\x05\x90\x48\x71\x5b\x22\x06\xae\x91\xdd\x63\x5f\xa9\x38\xe3\x39\x70\xa0\xca\x9a\xda\x4f\x39\x16\xf8\x2b\xea\x07\x64\x56\x69\x49\x94\xfc\xf3\x19\xe0\x19\xc9\x59\xca\x2f\xf9\x3e\x9e\x6e\x9c\x5e\x72\xa1\xc7\xf7\x69\xc9\x27\x32\x56\x32\x25\xa6\x0f\xe8\x9e\xe7\x8c\x21\x7a\x8d\xfc\x11\xe6\x6f\x22\xd2\xb9\xaf\xe2\x00\xfc\xfd\x27\x21\xfe\x55\x74\x00\x82\x5d\xf7\xc4\xf3\xb6\xf8\xa4\xa8\xe1\xf6\xd5\x2f\xfc\xb3\x4e\xe7\x4b\x48\x3d\x7b\x1f\xc5\x93\xec\x4b\x0f\xe5\x7e\xda\x7a\xfc\xb9\xcf\x1f\x57\x0f\x69\x2f\x9f\x09\xef\x1f\xe4\x6f\xd9\x5d\x61\xda\xb8\x68\x02\x56\x3e\x49\xfb\xd2\x66\xb6\x2e\xff\xae\x09\xc6\x43\xbe\xa1\x54\x27\x79\x95\xf8\x9b\x41\xfb\x86\x02\x7b\x33\xbd\xe7\xb9\x28\xc1\x2d\x4d\x6d\x39\x0c\x21\xc8\x84\x00\x03\x24\xae\x72\x8a\xee\xce\x4f\xb0\x9e\x7e\x1b\xa6\x33\x65\x4d\xac\xce\x66\x5a\xec\xf0\xd2\xcd\xb1\x08\xdd\x86\xce\x70\xe3\x08\x10\xfe\xf1\x3e\xbb\x7c\x65\x09\xb4\x0b\x81\xf5\xd4\x6c\x3a\xe8\x9a\xd9\x2b\x46\x5f\xf4\x42\x25\xdf\xb3\x46\xf3\xf7\x56\xbf\xa9\x78\xaf\xf0\x42\x81\xe1\x99\xf5\xb2\x65\xc7\xe8\xca\x33\x1a\xd2\x29\xea\x91\x00\x27\xe9\x74\x3f\x38\x22\x87\x6a\x47\xfc\x77\xe8\xa0\x78\xf9\xfe\x2f\x9a\x96\x20\x36\xda\x9d\xfa\xbd\x74\x27\xfe\xea\x64\x63\xf4\xf2\xbc\x70\x8e\x81\x2b\x7f\x35\xd6\xed\xec\xb1\xda\xf8\x41\xe7\xdc\xc3\xe3\x9f\x30\x0b\x60\x05\x00\xb7\xce\xdb\x5d\x7c\xcd\x47\x0a\x91\x80\xa3\x04\xbe\x0c\xd0\x53\x3e\xfb\xfc\x8d\x95\x2c\x2f\xe3\x52\xef\xca\xe4\xda\xcc\xf5\x01\x39\xd0\xf3\xb2\x53\xd5\xc7\x00\xc7\x83\xee\x31\x7a\x37\x33\x5c\xb1\x02\x1f\x91\xc5\x0e\x0f\xc4\xdf\xc9\x10\xee\x7b\x8e\xca\xe5\x28\x2e\x1c\xc9\x94\x7c\xa7\x55\x66\xf7\xc9\x0c\x64\x29\xa7\xa4\x3b\x86\xde\x34\x19\x8c\x7d\x97\xe7\x07\x04\xe2\xc1\xd3\x21\x9e\x97\xe5\x12\xb4\xed\x21\x53\xde\x26\x18\x23\x04\xaa\x4f\xf7\x24\x54\x21\x4c\xe4\xb2\xbd\x16\x2d\x72\x26\xfd\xf7\xa4\x42\xed\xe3\x2d\x50\xf7\xde\xd3\xd5\x51\xda\x4f\xd0\xe3\xcd\x43\xb5\xe9\xf5\x97\x88\xa6\x47\x45\xb7\x12\xd6\xf3\xf3\x0c\x39\x92\x98\x7b\xac\x7b\x43\x09\xe8\x75\x9b\xa4\xe1\x6a\xd8\x37\xad\xb8\xcc\x17\xe1\x5f\xeb\x48\x9c\xe1\xbc\xd2\x36\x83\xdd\xb6\x66\x65\xfb\x16\xcc\x08\x6b\xf2\x20\xa9\x8a\xb0\xdd\xb0\x5f\x33\x28\x21\xf5\xd7\xc5\x0d\x25\xeb\x77\x36\x07\x25\x7e\x1c\x40\xc7\xaf\xd6\x11\x51\x54\x98\x42\xff\xab\xd5\x0d\xa4\xd1\x2f\xbf\xcf\x80\xd3\x02\x7d\x3f\xde\xb7\x5f\x04\x8d\xcf\x26\x14\x8e\x1f\xca\xce\x55\x44\x48\xc3\x09\x1f\x54\x01\x84\x27\xcb\x9f\x29\x2c\xd0\x84\x7a\x90\x63\xaa\xc6\xb2\x0b\x79\x53\xfc\x92\x8b\x31\x5a\x49\x3c\xbc\xc0\x4e\xd6\x3b\x83\xa7\x5e\x06\x2d\x3a\xa7\x1f\xbd\x3c\xcc\xad\x20\x58\x10\x8e\x3f\xa2\xf7\xec\x90\x09\x83\xdd\xff\xd0\xd9\xf8\x10\x11\x7b\x44\x64\xf6\x6b\x68\x38\xed\xd1\xb2\x26\x98\x07\xd7\x66\x82\x6f\x05\xab\x1f\x11\x94\x51\xaf\x18\xfd\x5e\x01\x77\xb7\x75\x2e\x17\xe2\xf4\x8b\x98\x96\x61\x8d\x10\x04\xff\x85\xec\x11\x75\x7b\xd2\x6e\xcd\x0c\x92\x81\x25\xf2\x6b\x8c\x59\xcf\xc6\xea\x82\x7a\x14\x55\x77\x1f\x1b\xc9\x25\xa2\xa7\x89\x79\x0a\xf9\xb1\x4d\xc2\x1d\x84\x90\xfc\x86\x21\xbf\x83\x94\xa2\xec\xec\x29\xbe\xa5\x9b\x33\x1f\xf7\x4c\x09\x9f\xff\xdc\xe7\xeb\xe3\x0e\x27\xf3\xfb\xf3\xfb\xc5\xf5\x39\x5c\x15\x6f\x52\xa1\x6a\x2c\x2f\x79\x98\x55\x62\x59\x3f\x5a\x22\x8f\xb7\xaf\xcb\x6f\x6f\x3e\xbf\xf5\x32\xba\x14\x43\x4c\x5a\x9a\xa5\xfc\x0e\x0a\x80\x80\xdc\x50\x86\xd7\xda\x97\xd4\x5b\x84\xce\xd3\xdd\xcf\xd3\xb5\x12\x77\x98\xaf\xee\x87\x89\x81\xf4\x42\x05\xea\x1f\x4e\x31\x91\x31\xc5\xc8\x41\x7f\xdc\x54\x73\xbf\xf5\x12\x14\x08\xa5\xad\xa9\x27\x60\xae\x4d\x59\x95\x81\x48\x57\x15\x15\xb3\x90\x73\xe5\x95\xc6\x72\x1c\x81\x53\x3e\x7a\x3d\xf1\xe5\xcb\x79\xf8\x65\xb1\xbe\xff\xf0\x15\x3a\x2b\x73\x71\x01\xef\xfa\x66\x93\x6f\x77\xb8\xbf\x6a\xcc\x9d\x3d\x63\xae\x7c\x7a\x52\xc5\xb3\xa5\x63\x78\x68\x09\xef\x7a\x3f\x82\x60\x97\xfb\x2d\xdf\x98\x6f\x48\x06\xb0\xda\x29\xf1\xe2\xc0\xdf\x5c\x00\x43\x8a\xbf\x7b\xf4\x5c\xad\x53\xb8\x7b\x21\xf8\x65\x43\xe9\x73\xd4\x7c\xd0\xb3\xc7\xab\xa9\xb2\xd7\xe9\xb7\xb6\xae\x12\xa5\xbd\x03\x15\xd0\xa2\xa3\x97\xd1\x02\xf1\xbf\x2e\x6a\x49\x2e\xee\x2b\x15\xee\xb3\x7a\x70\xb5\x4d\x3f\x92\x75\xa1\xe6\x9e\xda\xce\x04\xcd\x0a\x24\x6e\xfe\x2e\x61\x80\x9b\xb2\xbe\xd2\x8a\xd1\xd1\xa4\xb0\x1b\xd9\x05\x51\xbe\xcb\xc2\xe9\x38\xc2\x63\x05\x21\x23\xb5\xcb\x91\x51\x6d\x3a\xcd\x82\xfc\xb9\x7f\xa0\x7d\x3f\x2c\x73\xbc\xf7\x86\x0b\xdb\x66\xc4\x38\x31\x63\x8a\x2b\x93\x15\xdc\xe4\x52\xed\x05\xe1\xb6\x71\x36\x3b\xdf\x22\x08\xfa\x96\x1d\x7f\x6a\x2d\x09\x90\x7a\x62\xa9\xbe\xa5\xbd\x33\xf9\x6b\x5c\xe7\x87\x31\x5b\xbd\xa1\xc5\x4a\xba\x25\x96\x06\xc8\x4e\x8f\x1b\xa6\x61\x3c\xfa\xef\x05\x28\x5c\xb9\x0f\x37\x47\x70\xe2\x95\x28\x6b\xcc\xb5\x2d\xad\x45\xc5\xed\xb4\x82\x1d\x8a\x95\x13\x55\x5e\x7c\xbd\x26\x8f\xaf\x35\x22\xbe\xcf\x74\x74\xa6\x33\x1e\x8b\xf5\xc8\xa4\xb6\xb3\xe2\x60\x1f\x6c\x0a\x4a\xc6\x0f\x9e\x00\x4a\xd7\x10\xed\xcf\xb3\xb3\xa5\xb5\xf9\x29\xec\xc8\xe3\x70\xfa\x35\xa4\x78\x57\x8e\x3b\x9a\xf2\x44\xee\x9b\x95\x8e\x37\xa0\x06\x7c\x01\x3f\x4b\xaa\x14\x1a\x78\xa5\xa7\x2a\xed\x0e\x08\xbe\xa6\xdc\x16\x9b\x9f\x92\xfd\xcd\x7a\x99\xd6\xcc\x02\x73\x0a\xe9\xa8\x78\xef\x59\x54\x0f\x37\x1e\xe6\x56\x30\x9e\x7b\xbd\xb4\x56\x6f\xb3\x71\x7b\xbb\x8c\xcb\xb2\x84\xb7\xea\xff\xcb\xe9\x57\x03\x5b\x05\x09\xee\xd0\x08\xe5\x07\x95\xe7\xa8\xd9\xa0\x69\xbd\x36\x77\xf8\xb0\xea\xe9\xa5\x30\x58\x3b\xc6\xe6\xeb\x7b\x07\xf9\x0f\xd5\xfa\x20\x57\x40\x7b\x6c\xdb\x4b\x2d\x8b\xdc\x9a\xe8\xeb\x23\x29\x3c\xa1\xb0\x5f\x30\x7f\x2a\x93\x2a\x92\xf4\xcc\x31\xf4\xe7\xdf\x45\x4c\x3c\x00\x7c\xb1\xe3\xad\x8d\xa4\xc2\x61\xcf\x4f\xa5\xed\xd4\x02\xb6\x57\x95\x78\x74\xd9\xfc\xb0\x74\x43\xbc\x50\x42\xef\x80\xb2\xb8\x17\x0c\x7f\xd8\x54\xde\xc6\x47\xd3\x37\x4c\xbc\xfa\x94\x30\xeb\xc6\xbd\xc3\xe4\xa5\xe0\xe2\xf9\xbc\x82\x58\x79\xea\x4d\x3b\x95\x4c\x6d\x56\x46\x4b\x1f\x7f\x43\x8c\x71\xac\xe3\xd4\x98\x67\x0c\xb1\x66\xc0\xfd\x73\x28\x26\x2a\xa5\x1c\x29\x61\x16\x73\x2c\xb1\xc9\x7f\x28\x19\x86\xda\xf8\x3b\x74\xb3\x23\xb6\xa8\xba\xbd\x7d\x99\x53\x8e\xc7\xbd\xdf\xf3\xf3\xd1\xb6\xe1\x91\x07\xbe\xc8\xe9\x62\x7d\x95\x8d\x7c\x71\x7a\xa3\x90\xc8\xbf\x1a\xf7\x4e\xa6\x85\x99\x6f\xc2\x45\x16\x93\x25\x48\xb8\x73\xeb\xef\x3d\x27\x13\x9c\x49\xdc\x76\x63\xf1\x0d\x8a\x87\xc1\xc1\xf2\xe2\x46\x69\xfd\xbf\x39\x48\x83\x3f\xc8\xcc\x06\x4f\x2e\x33\xb9\xf1\x20\xba\xe0\xf7\x5c\xa2\xc0\xef\x50\x9a\x58\x94\xb2\xfc\xe7\x12\xc9\x60\x98\x50\x69\x60\xf1\x5d\xa5\x01\xe7\xb0\x5c\x51\xaf\xe1\xa5\x94\xd7\xbc\xef\x2b\xed\x6c\x96\xaf\x5d\x31\x09\x01\x10\x1f\xfe\x03\xa6\xef\x28\xde\xc0\x0f\xfa\xb2\x0d\x0a\xda\x8d\xfa\x06\x51\x07\x94\x6c\xcd\x4a\x78\x85\x80\xad\xde\xa5\x5f\x00\xed\xbf\x63\xda\x57\xe7\xca\x50\xcc\xc3\x68\x81\x2b\x9d\x55\x68\xd5\xcf\xa0\x2a\xfb\xb7\xc5\xf9\xaa\xe8\x40\xe2\xa5\x2c\xca\xbf\x43\x0e\x9d\xad\xce\x56\xa5\x17\xb0\xd7\x6e\x4a\xff\x5c\x38\xf5\xc4\xbd\x55\x78\xa7\x7a\x72\x38\x1b\x53\xcb\xb3\x63\x3c\x83\x8a\xe8\x14\xbf\x6e\x7c\x5c\x1b\xca\x95\xac\x7f\x34\xba\xc8\xa3\x3f\x85\xa9\x4e\x4b\xcc\x58\x07\x00\x94\xfe\xc8\x22\x9a\xad\xa2\xb3\xde\x42\x9a\x34\x0c\xcd\xa7\x75\x1d\xfb\x26\x1a\x7f\xd4\x9e\x5d\x9a\xa6\x3d\x68\x8c\x8e\x8d\x47\x48\x80\x67\x86\xbd\x3e\x91\x68\x44\xe8\x04\x50\x5d\x81\x9e\x7c\x0f\xa9\xbd\x88\xdf\xe0\x4e\x35\x98\x7a\x30\xbd\x17\xde\x3f\xc4\x27\x38\x11\x60\xf8\xaa\x63\x88\x1d\x27\x1c\xb2\xca\xe8\x48\xb7\x12\x0e\xef\x9f\x3a\x36\x12\x78\x7b\x70\x90\x8a\xf6\x3f\x5d\xaf\xbc\x48\x9b\x4a\xd3\x58\x2e\x34\xef\xc5\x62\xcf\x78\x0e\x67\x05\xf8\x89\x1c\x0d\x1f\xb2\xdb\xca\xc5\x31\xa6\xf2\xfe\x6f\xae\x24\xc4\x4c\x4b\xdf\x3f\x8e\xd8\xb4\xc3\x5e\xe4\xd4\x22\x6f\x7c\xb9\x4b\x31\xcb\xdc\x7c\x62\xdd\x77\x97\xc9\xae\x81\xf5\x9a\xe8\x2d\x3e\x3b\x24\x3a\xb5\x2e\xf3\x40\xfb\xe3\xda\x10\xd6\x8f\xf2\x68\xe5\x56\x4e\xbb\x83\x1b\xa3\x85\xd9\x60\xae\x30\xde\x33\x67\x09\xa1\x42\x19\x84\xbd\xa3\x82\x56\x46\x4d\xd8\xee\x41\xfd\xbb\x0a\xf3\xd7\xe2\xd4\xa0\x97\xb2\x0a\xb5\xcc\x69\xd3\xd4\x99\xcf\x78\xf7\xf8\x0b\x14\x78\x32\xdc\x8e\x21\x9e\x60\x11\xdb\xe2\x0f\x57\xfc\xc2\x90\xdc\x22\x38\x43\x1b\x6b\x1c\xc1\xe9\x98\x64\x49\x67\x2e\x89\xf7\x81\x8b\xa8\x8a\xce\x04\x7b\xf2\x8f\x0f\xa9\x70\x32\x4d\xa9\x06\xde\xf4\x52\xcb\x94\xb5\xc6\x1c\x15\x26\x73\xa1\xa7\xec\x94\xf2\xcd\x46\x89\xf1\xa9\x9a\x7c\xe6\xe3\x6a\x6a\x54\xaa\xfd\xd5\x22\x0c\x7f\xa1\x8d\xb7\x5d\x06\x0f\x6f\xae\x88\x70\xfc\xdb\xf0\x1f\x8b\x7f\x2e\x2a\x1c\xd1\xe3\x3a\x10\x4d\x28\xe8\xe3\x8e\xf6\x4a\xbb\x8e\xfe\xcc\x60\xa2\x15\xe7\x20\x9a\x5a\x49\xe3\x4a\xf6\xfa\xe5\x4b\x05\x20\x84\x69\xa7\xd6\x73\x51\x9b\x6f\xea\x3e\xe6\x93\xbd\x8e\xf3\xb1\xdc\x66\x8a\x2e\x09\x87\x43\xf6\x3f\x6e\xd7\x97\x2c\x44\xa3\xa4\x0c\xb7\x34\x38\xdb\x76\x7f\x47\x6b\xec\xa6\x57\x76\x27\x8b\xd4\x3e\xb3\x31\x5a\x87\xe7\x42\x00\x72\x58\x7e\x15\xb9\x85\x65\x69\xa6\x41\xd4\xef\x7c\x26\x9e\x42\x4c\x57\x2d\xfa\x42\x16\x7b\x71\xd0\x75\xe2\x93\x5f\x83\x87\x21\x24\x26\xf8\xd0\xe8\x12\x5a\x25\xf5\x7a\x03\xeb\xea\x4b\x77\x3d\x27\x2e\x78\x5e\x4b\xad\x26\x9e\x6e\x3e\x47\x77\xa7\x22\x9a\xb9\x48\x3b\xf0\x83\xf0\x53\x2e\x55\xaa\x49\x21\x50\xb2\x59\xfa\x73\x06\x7c\xa8\x73\xbe\x20\xd1\x8e\xe1\x75\x31\xcb\x71\x83\xe2\x9b\x57\x31\xd1\xab\x85\xf5\x1f\xba\x8f\x3f\x72\x2a\xd1\xfc\xb0\xca\xe1\x3e\x7d\x7b\x62\xd5\x10\x73\x92\x17\x2c\x7d\x5d\x9b\xf8\x4b\x5f\xf1\x8d\x34\x62\x90\xcb\xaf\xa3\x2b\xed\x6c\xeb\x70\x7f\x99\x73\x89\x3b\x08\xa3\x41\x52\xb9\x8c\xc3\x02\x7a\x75\xa9\x1f\x52\x1f\x28\xdc\xf9\x8d\x69\xa3\x79\xf7\xef\x40\xf9\xb0\x18\x61\x48\xc3\xa9\x67\x9f\xcf\xe1\xa6\xcf\xf9\xeb\x2e\x25\x22\xf5\x77\xb3\xd6\xaa\xb0\x10\x25\xf0\xd9\x14\x37\x16\x4a\x5d\x8d\x2d\xb9\x88\x75\xb6\x9a\xad\x04\xf6\x5d\xa6\x84\x0f\xbe\xac\x24\x24\x28\x61\x58\xda\xac\x35\xb2\x68\x6f\x9d\x86\xa6\x9a\xe2\xf8\x8c\x25\xda\xf2\x81\xca\x5c\x94\xd1\x96\xf4\x83\x83\xdf\x75\x42\x95\x1d\xa9\xf6\xd4\xcf\x63\xca\xc9\xed\x8c\x46\x4f\x87\x8c\xec\x14\x4f\x7e\x0b\x71\x93\xa0\x2f\xe7\x76\x4f\x8c\x50\x66\x88\x50\x96\x76\x0e\xfd\x13\x68\xcb\x61\x46\x8d\x3f\x0a\x1b\xd0\x5b\x53\xf5\x8d\x64\x07\x58\x15\xdf\x4c\xee\x92\xb1\x69\xe5\xfd\x79\xfa\x37\x1d\x96\xbc\xa7\x17\x97\x13\xf7\xf4\x6d\xef\x13\x15\xb9\x27\x91\xfd\xaf\xde\xc2\x70\xdd\x0c\x2e\x1f\xc3\x7e\xa1\xe0\x43\x78\x13\x62\xd8\x29\x59\x8d\x95\xaa\xfe\x90\x3e\x46\xf3\x06\xde\xc2\x46\xf6\xc2\xd7\xec\x85\x42\xec\xa5\xef\xf0\x0c\xca\xdf\xe7\x0f\x40\x4f\x88\x36\xf1\x92\x3f\x1d\xa6\x79\x1c\xfa\x9f\xe9\xdf\x99\x72\x29\xd2\xdd\xe1\xbe\x9d\x59\x08\xdb\xbc\xef\x21\x9e\xd9\xb3\xb1\x33\xe3\xb0\xf1\x8f\x2e\xcf\xde\x50\x0b\x0f\x4e\x26\x99\xf7\x16\xb5\xf0\x95\x77\x36\xff\x93\xaf\x21\x8e\x70\x3a\x50\xfc\x56\x37\x88\x7e\xb7\xdf\xe3\x73\x9e\x95\x58\xe8\x43\xa7\x1f\x33\x1c\x39\xf6\x01\xd0\x78\xdf\xcd\x42\x75\x7a\x3a\x98\xdd\x82\xbd\x9a\x96\x51\xa1\x00\x3e\x23\x65\xbb\x03\xa1\x0e\x7a\x7e\xa6\xb0\x55\xb5\xc4\xe2\xe5\x8d\x5e\x41\x95\xa4\x28\xc3\x06\xb5\xe3\x4e\x49\x24\x0f\x85\x6f\xf1\x11\xef\xb8\x50\x94\x84\xfc\xab\x41\xb1\x6d\xe0\x20\x47\x4d\xd3\x55\xa0\x8d\xde\xa4\xb3\x75\x45\xa7\xe3\x34\x76\x92\xd6\x02\x50\x15\x02\xcf\x6a\x45\x6b\xaa\xc9\x3f\xae\x94\x02\x03\xea\x14\x57\x06\xf1\x1f\x4a\x49\x28\xc8\xa4\x1a\x82\xa8\x60\xbf\x84\x90\xc5\xad\xbd\xce\x81\xac\x5d\x08\x61\x9c\x1f\xc4\xeb\x8d\xf8\x95\xf9\x41\xff\x64\x68\xc1\xf8\x3f\x25\xc9\x4c\x15\x50\x98\x23\xc7\x77\xc8\x8e\xc3\xe5\xe6\x04\xcc\xd3\xaf\xc3\x92\xc6\xc7\x2c\x46\xb8\x45\xa5\x49\x87\x05\x74\x55\x73\xf7\x36\xa7\xdf\xba\xd1\x37\xea\x9d\xf4\x6f\xbb\xc4\x6d\x24\xc8\x5c\xbd\xc5\xec\x0d\xfd\x45\x2d\xc4\x4d\x43\xbf\x08\x84\x65\x8e\x08\x13\xf3\x28\x0e\x5d\x91\xeb\xee\x1d\xc7\x36\xdc\x58\xf7\xdd\xb1\x9a\x46\x63\xbb\x4b\xbd\x01\x11\x82\x16\x95\x84\x3c\x0e\x54\x9e\x19\x8f\x79\x19\xa7\x28\xe3\x55\xf9\x1e\xc6\x0a\xff\x79\x0e\x60\x72\x29\x5f\xd8\xa4\x03\x2b\xf1\xfc\x75\x06\x5a\xdb\x5c\x5d\x0b\x34\x93\xf5\x9a\x94\xa1\x9f\x63\x79\x73\x4e\xe5\x35\x14\x28\x2b\x7f\xe2\x5a\xef\xcc\x3f\x2f\x84\x40\x99\x29\x0e\x3f\x53\x46\x53\x8c\xb4\xd0\x9b\x18\xb7\xb3\x13\x7f\xd9\xea\x3b\x5f\x48\x1a\x7c\x59\xf0\x1c\xb4\x0a\x21\xd6\x97\x5d\x6c\x54\x97\xb9\x58\x47\x99\x40\x33\xcf\x9b\xef\x14\x14\x54\xd9\x9c\xd2\xab\x56\x88\xf6\x0f\x58\x82\x30\x08\xa8\xc6\xab\x96\xcb\x71\x1c\x20\x99\xce\x41\xbc\x37\x41\x25\xd5\xbc\x3a\x32\x6d\x76\xb4\x8a\x44\x92\x81\x2f\xa7\x32\xbf\x21\xd2\xf1\x85\xa6\x44\x71\x6f\x35\xe1\x2a\x5d\x76\x79\xe3\x95\x09\x25\xbc\xfe\xe2\x09\x76\x32\x03\x4f\xdb\xbb\x62\xa3\xb4\xd2\xbe\x3c\xed\xb0\x5d\xad\xce\x10\x71\xfa\x04\x0a\xf7\xcb\xde\x1f\xae\x35\x97\xcf\xa6\xda\xda\xde\xf7\xdc\xfa\x04\x07\xc7\xc9\x8a\xe3\x8d\x88\xf4\x7e\x7f\x12\x25\x59\xaf\x35\xb1\xc0\x49\xe1\xea\x5a\x4c\x86\xf2\x92\x40\xc5\x75\x57\x56\xd6\x27\x97\x0b\x52\xe1\xdb\x43\xd7\x6f\xdd\x33\x20\xcf\x71\xdf\x30\x43\x6f\xe2\xda\x95\x4f\x21\xcd\x89\xe0\xd4\xf4\x1f\xbe\x5f\x30\x76\x6d\x60\x44\x7a\x0d\x7e\x77\x32\x15\xcd\x93\x10\x7c\x2f\xe6\x3b\x8b\x86\x0e\x51\x08\x8b\x93\xd1\xc7\x5f\xa7\xe9\x63\x2b\xfe\x83\x72\x3a\x25\xb0\x07\x2c\x96\x3e\xfc\x5a\xa0\xbd\x38\xbf\xda\xd3\x2c\xe3\x44\x6d\x0e\xde\xff\xcd\xe2\xbc\x8f\xb5\xbe\x93\xf3\x6b\xdc\xe1\x20\x25\x6d\x71\xce\x3f\xf7\xef\x73\x85\x32\x5e\xee\xc1\xb2\x9f\x92\xee\x69\x5e\x31\x50\xb8\x7e\x14\x37\x62\xc3\xc8\xe4\x08\x09\xeb\x68\x73\xfd\xa5\x7b\xb5\x52\xc8\xce\xef\xe1\x5d\x7b\x31\x54\xd2\xb0\xbb\xdf\xd3\xd8\x65\x69\x2e\x15\x87\x75\x11\xdc\xca\xbd\xf4\x83\x92\x3c\x1e\x2a\x67\xe2\xaf\xa1\x01\x20\x06\x13\xd4\x2d\x33\xb2\x8d\x34\x59\x95\x2f\x30\x24\x44\x84\x41\x40\x28\x53\x05\x2e\x51\xee\xa0\x77\x73\x2a\x35\xf5\xc0\xdc\x87\xde\x77\xe4\x5f\x51\xbf\x3f\x47\xad\x23\x24\xec\x95\x14\xe0\x7a\x94\xde\xcf\x50\xcb\xf8\x87\x4f\x22\x0f\x63\x7f\x1a\x9f\x8a\x79\xc9\x0a\x1c\x89\x16\xc6\x2f\xb7\xbd\x0c\xb6\x1f\xfa\xf9\xaa\x30\xb7\xdf\xd8\x07\xe7\x46\x05\x4e\x0c\x83\xfb\x0c\x9f\xc7\x4a\xe3\x01\xd9\x85\x9d\x06\x41\x51\x22\x86\x71\x3f\xaa\xe9\x9a\x3a\xd9\x36\x2f\xd6\xc2\xdd\xf7\xd7\xe2\xfa\x1c\x39\x9e\x2e\x06\xdf\xaf\x8f\xa5\xa2\x57\xc0\x90\x18\x3a\xfd\x1e\x7a\x6f\x59\x35\x57\x7b\xfd\xbf\x71\x1f\x94\x52\x27\xa9\x79\x05\xc2\x8f\x5c\x0d\x77\x5e\x2e\x37\x7d\xcc\xbc\x4b\x65\xab\x12\xad\x56\xe9\x3b\xeb\x84\x23\x37\x70\x81\x9b\x3c\xb9\x4b\x43\xd0\xb6\x93\xe4\x8d\xa3\x14\x77\x6b\x01\x49\xc8\x84\xc6\xa7\x7d\xf4\x41\x54\x85\x02\x44\x0a\x05\x93\x54\xf5\xe1\xb1\xf7\xb1\x7d\xbb\x80\xe2\x7a\x3a\x3f\x59\xa4\x13\x3d\x03\x44\xe2\x4e\x97\x1a\x12\xb0\x83\x4d\x2d\xde\x22\xa5\xdb\x97\x59\xfb\x9b\x22\xef\xa6\x3c\x47\xa8\x69\x73\xa1\x57\x44\x5d\x97\x94\x64\xdb\x6a\xc3\x11\xed\xcb\xd8\xc1\x7e\x82\x1d\xb4\x7a\x85\x4c\xc5\x0f\x1d\x24\xaa\x42\x5d\x85\x60\xbd\x20\xb8\x2c\xa2\x2f\xc9\xae\x90\x2b\x24\x9c\x8d\xf3\x0f\xd9\x5e\x97\x90\x63\x58\x43\x55\x7c\x6d\xa9\xb1\x88\xda\xc3\xe4\xc7\x31\xa3\x53\xad\xa4\x20\x0b\xcc\xed\x61\x15\x4f\x27\x0e\xfd\x6a\xd4\x67\x00\x6c\x30\x61\xd8\x45\xd7\x9c\xf4\x2a\xa7\x78\x13\x4d\xf6\xd4\x47\x25\x85\x39\x77\x40\xe1\xd2\x2a\xfc\xb2\xec\x27\x6b\x9b\xc6\xd8\x02\x35\x94\x36\x5e\x60\xe4\x9f\x7f\x64\x40\xbd\x04\xbd\x82\xc6\x9b\x7e\x0d\x56\x9c\x6b\x37\x23\x7f\x66\xd3\x68\x26\x88\xf5\xf6\x41\xbe\x11\x12\xa0\x04\xb5\x1b\x0d\xdc\xf3\x53\x78\xb8\xc0\xc4\xa6\x9b\xbf\xaa\x02\xdf\x29\x88\x97\x50\xca\x86\xf3\x5e\x11\x83\x75\x8c\x82\xc8\x7a\x7a\xd8\x19\x3e\x24\x0e\x8b\x61\xfd\x96\xd9\x4d\xe5\x88\x80\x63\xcf\x2c\xe0\x1c\x40\x95\xdf\x44\x86\x41\xb3\x38\x06\xb0\xe6\x35\x21\x06\x9d\xa6\xdc\x9b\xf1\x78\x5d\xca\x7d\x68\x4b\xf2\xb0\xc8\x6a\xb2\x64\xba\x03\x87\xec\xfd\x67\xb4\x29\x2f\x30\xef\x05\xcc\xc4\xfe\xe6\xb3\x41\xba\x9e\xca\x5d\x93\x2b\xa1\x86\x1c\x9c\xc8\x9c\xab\x0d\x70\x43\x00\xfc\x46\xfd\x92\xc2\x17\xb4\xae\xa1\x4f\xea\x7a\xc9\x36\xad\xd3\x57\x81\xc7\xed\x76\xf8\x83\xcb\x49\x65\x2d\xe7\xab\x5f\x4f\x9a\x22\xd0\x12\x98\xc6\xc8\x89\x1b\x5c\x4a\x9f\xc7\x08\x27\x21\x55\x7d\x1a\x84\x52\x46\x0d\x7a\xd3\x61\xe8\x07\xf9\xb3\xf1\x51\x0e\xa5\x1d\x40\x9d\x35\x55\x24\x71\x3a\xf5\xde\xa5\xf4\x23\xae\x9e\x59\x55\xe6\x73\x55\x00\xa0\x26\x85\x7c\x16\x06\x1b\xe1\x65\x2c\xbb\xcf\xee\x11\x0b\x88\x3c\x07\x63\x68\x11\xde\x57\x74\x57\xa2\xd6\xa3\xb8\xfe\xbf\x31\x94\x71\x51\x4c\xc5\x0f\xab\x2b\x8b\x1a\x4b\x2d\xeb\x44\x2c\xba\x30\x39\xfa\x92\x7c\x7e\x8f\x7d\xa9\x1d\x49\x0a\xd7\x8f\x36\x1c\x17\x32\x63\xb1\x9b\xdf\x3b\xa9\x0f\x60\x0e\x0e\xcc\x25\xfa\xb4\x3f\x59\x31\xbb\xf2\x3d\x3e\x03\x6a\xc9\x93\xb4\x4c\x80\xe4\xa9\x3c\x78\x51\xfb\xde\x54\x80\xf0\xd6\xb4\xda\xf2\xef\x87\xb5\xdb\x19\xba\xe7\xcb\xc9\x2f\x0f\x34\x35\xeb\x2e\xfe\x7a\x55\x7a\xda\xaa\x78\xab\xb9\x3a\xb9\xc0\xa6\x51\xf4\x07\xf1\x6e\x8d\x9f\xcc\x5a\x6f\x86\xb6\xbe\xc5\x0d\x13\x26\x6e\xa4\xbb\x5b\x6b\xe7\x5d\xf9\x97\xd9\x47\x11\x0d\xc0\xc5\x00\x1a\x53\x23\x54\xbc\x28\x8a\x4d\x32\x55\x8f\x95\x83\xe2\x77\x01\x9d\xaa\xaf\x29\x14\x2b\xf0\xa4\xab\xf8\xfa\x2b\x14\x0b\xfa\x9a\x98\xe4\xc9\x51\xa8\x2d\x9c\x8c\x29\x21\xeb\x29\x14\x9b\xf4\xbc\x93\xf7\x22\xab\xf2\x4a\x44\xf7\xda\x14\x1f\xf9\x7b\x69\xfd\x2f\x8d\x84\xd7\x9b\x83\x22\x56\x8e\x99\x36\x0a\x86\x1f\x4e\xb5\x31\x4e\x27\x64\x92\x02\x9b\x2b\xf5\xbb\x7f\x85\x36\xad\xe1\x21\x94\xb2\xed\xb6\xf8\x83\xcb\xc9\x2f\xc5\xaf\x56\xcc\xaf\x4b\x6a\xaa\xcf\x85\x4c\xae\x6f\x4b\x30\xe5\xec\x00\x2a\x8a\x77\x2c\x6a\x98\x1c\xff\x13\xe1\xe9\x77\x40\x16\x20\x8f\x4b\x9a\xc7\xb3\xfa\x4d\xd7\x9c\xcd\xf3\x82\x83\x2b\xcc\x14\x91\x4d\x1b\x06\x14\x95\x35\x1c\xb1\xda\xf9\x5d\x8c\x7e\x3d\x71\x3c\x18\x78\x6a\xac\x77\xfb\x12\xa3\x6c\x44\x84\x8b\xa3\x79\xb3\x65\x05\xc7\x47\x48\x7d\x61\x87\x94\x7c\x02\x06\x79\x80\x4d\x78\x5a\x9f\x1d\x85\x00\x85\x4a\x07\xa5\xee\xa0\x11\x65\x7a\xfe\xf8\xf0\x47\x52\xe5\xc7\x17\x82\xef\x47\xc9\x55\x61\x0a\x41\xf4\x30\x66\xc5\xae\x37\x58\xa6\x4c\x3e\x1d\x4e\xc8\x77\xdb\xf0\x84\x55\xda\xbb\xc5\x15\xbb\x97\xa1\x17\x60\x68\x87\x44\xa0\x14\xeb\x8f\xfc\x1f\xb2\x61\xc2\xf3\xf2\x42\xc1\x8b\x41\x55\x5f\x85\x5d\xdc\xbf\x30\x9a\x87\xc4\xfa\x05\x9b\x0b\x83\x37\x49\x1c\x36\xde\x0f\xc5\x0c\xc7\x17\x3a\xfa\xfa\x64\xfa\x94\xa4\x37\xe9\xa3\x1a\xf1\x3b\xfe\x44\xd9\x1e\x19\x7d\x83\x7e\xbe\xa2\x65\x50\x21\x02\xea\x99\x5e\x7a\x8b\xd8\x1c\x96\xe4\x95\x08\xbc\xfd\x2b\x1d\x4c\xdf\xe0\xf7\x08\x60\xf8\x3e\x82\x8c\x05\x7d\x47\x69\x0c\x18\x6a\x58\xc6\x95\x64\xfb\x62\xc6\x37\x76\xe7\xd3\x8a\x35\xc5\xe7\x94\x66\xf6\xb8\x56\xa5\x97\x93\xba\x2c\x2d\x3d\xf1\x36\x32\x64\xcc\xdb\x24\xcc\x64\x57\x5d\x0e\xe7\x08\x2d\x04\x57\xff\xc5\x69\x79\x30\x58\xa0\x35\x3c\xcf\xe6\xf8\x3f\x82\xd9\xc8\x86\x53\x59\xf3\x87\x97\x52\xca\x96\x42\xb4\x05\x49\x03\xb4\x07\xb5\xe0\xd6\x24\x7f\x5b\x09\x8b\x4e\xf7\xcd\x3b\xa4\xee\x9f\xc3\xbd\xaa\xfe\x52\xd3\x64\xa5\x7e\x11\xab\x2d\x91\xe4\x71\xb9\xea\x52\xe0\xaa\xf6\x06\xee\x2e\x09\xf3\x12\xaa\x22\x62\xcf\x31\x8e\x87\x83\xfe\x8c\xf2\x95\x22\x6d\x56\x96\x7e\xbf\x13\xa3\x75\x2c\x2c\x16\x7d\xb5\x96\xc7\x35\x16\x5d\x23\xff\x50\x5b\x37\x90\xe1\x36\x19\xa0\x9b\x18\xbb\x83\xff\x6c\x70\x4d\xf8\x87\xfb\x19\xc8\x37\x8d\x98\x50\xc0\x9e\x80\x6b\xa2\xaa\x61\x50\x24\x98\xed\x91\xb4\x73\xfc\x07\x27\xcb\x77\xe3\xe3\xe3\x8b\xe3\x56\xd4\xba\x71\x97\xc4\x1e\x41\x69\x96\xb9\xb4\xf4\xa2\xe3\x5d\x5d\x62\xdf\x8b\x07\xc2\xc3\x43\x2f\x41\x84\x07\x54\x54\xe4\x3b\x34\xe4\xa6\x87\x76\x87\x62\xde\xdc\xac\x56\x77\xbb\xae\x5f\x36\xc7\x29\x88\x8a\xa7\xdf\x72\xba\x2f\x42\xad\x95\x89\xa5\xc4\x06\x3f\x22\x91\x8c\x97\x09\x6e\xbb\x32\xe5\x98\xea\x6d\xbf\x87\x8d\xca\xfb\x59\xbf\xa9\xf9\x0d\x4d\x99\x88\x87\xf4\x1e\xb5\x3c\x36\x5a\xea\xc5\x13\xfc\xc5\x69\x39\xbd\x70\x99\x65\x86\xc7\x00\x12\x61\xe1\x94\x70\xbc\x18\xa6\xcb\x2d\x61\x50\x49\xbb\x94\x4f\x29\xa8\xf3\x6c\xb7\x26\xb8\xb6\xf1\xfd\x75\x75\xba\x4b\xa1\x06\x5e\xb8\xdc\x1b\x3c\x60\x07\xc7\x20\x1b\xae\x2e\x07\xd0\x41\x43\x51\x78\x75\x05\xa7\x7d\xc8\x9e\xe5\xb9\x17\x8d\xcf\xe6\xb1\x3d\x8a\x32\x70\xc9\x91\x5e\x1f\xe7\xa4\xfa\xad\xf2\x36\x44\x0c\xe4\xba\x8a\x5d\xf5\xed\x65\x99\x6b\xeb\xf7\x96\x01\x80\x14\x70\x01\x54\x01\x14\x36\xc0\x7a\xdf\xc2\x4d\xe1\x77\x1f\xb7\x38\xe0\x58\x98\x62\x3e\xb4\x97\x34\x84\x85\xcc\xf6\x8e\x3a\xf7\xbf\xf2\x6f\x75\x39\x2b\xdb\x93\x29\x27\xfa\xe9\x60\x6d\xaa\xc8\x52\x91\x80\xa5\x9c\x24\x47\x82\xf7\x93\xa1\x37\xea\x54\x2d\xdc\x8f\xc4\xe5\xcf\x75\x7b\x26\xc3\xd5\x75\x4b\xb3\x94\xb8\xa4\x4d\xef\xb4\x69\x83\x4d\x91\x48\x25\x10\xf5\xf5\x39\x27\x3d\x9d\xd9\xf5\x8b\x36\xed\xf1\x52\xa3\xb2\xa7\x82\x3a\x49\x73\xe7\x29\xfd\x0a\xec\x2c\x38\x71\x41\x6a\xa0\xf0\x10\x19\xd8\xeb\x5e\x7b\x04\xc0\x28\xd7\xc1\x06\x11\x27\x2d\xed\x37\x6f\x32\x85\xc8\xea\x63\x5f\x8e\x76\x49\xdf\x9a\xce\xe2\x3f\x16\x8e\xcb\xe8\xf8\xf6\xac\xa3\x9e\x2e\xdc\xb1\x48\xfc\x09\xd0\x25\xee\x8d\x75\x90\x26\x7d\x20\x71\x43\x93\xb0\xea\x2b\x1b\x82\x07\xe0\x44\x9b\xe4\x07\x26\x7d\xfa\xb2\xa1\xf3\x6c\xae\xcf\x45\xc3\x70\xa8\x51\xa1\x03\x6a\x9d\xcb\x11\x26\x87\xb0\x58\x61\xcf\xb4\x2f\xca\xb4\x28\x6a\xd6\xaa\x08\x3c\x71\x58\x9a\x2f\x7a\x8a\x2c\xd1\x9f\xe5\x4e\x72\x4b\xae\xbe\x7f\x45\x73\x1b\xe9\x15\x35\xdc\xe2\x76\x21\xed\x0d\xa8\x13\x64\xfc\xb3\x68\xc9\x1b\xe6\xab\x2a\x70\x79\xa5\x05\x46\x29\x64\x5a\x18\x5c\x2c\x9c\x17\xb6\x3e\x1c\xc7\xc1\x8b\xf1\x13\xb4\x9f\x0a\xf9\x48\xc0\xb2\x23\x89\x9b\xc1\xf2\x91\x2c\x54\x0f\x48\x79\x54\x17\x8d\x8a\x0f\xcd\xd3\xfb\x1d\xb8\x76\x38\xfb\x81\x6f\x78\x59\x60\x97\x70\x43\x99\x23\xe2\xed\xda\xd0\x8f\xfe\x8f\xf7\xab\xe8\x7b\xa1\x43\xd6\xe0\x22\x77\xdf\x9a\x19\x6d\x05\xaa\xc8\x8d\x17\x69\x9b\x84\x69\xba\x8a\x28\x7a\x3c\x39\x24\xca\x43\xfb\xb6\xd3\x9e\xb2\x59\xbd\xf6\x2e\xab\x2b\xdc\x5f\xb5\x36\x50\x41\x7f\x4d\x69\x7b\xd1\x97\x44\x00\xa5\xd6\x95\x16\x7f\x2e\xa1\x0d\x5e\x80\x5e\x12\x55\x4c\x2b\xb2\x3f\xfb\x07\xa0\xe8\xf0\x28\x69\x48\x4b\xba\xc2\xf3\x69\x2d\xef\x0c\xc1\xe9\xec\x29\xf9\x85\xe9\xec\xe4\xed\x50\xe0\x48\xd9\x93\x01\x9a\x7f\x84\xbd\x33\x5f\x12\xa3\x99\xc6\x60\xa4\xcf\xd0\x38\x79\x5c\x6d\x14\xa9\xe1\xea\x00\x86\x6b\x33\x88\xf9\x8c\x8f\xcf\x65\xe1\x78\x0b\x3b\x0e\x6b\x77\x67\x6c\x54\x6d\xf4\xab\xfe\xb4\x25\x0c\x1d\xda\xe9\xab\x29\xf4\xbb\x5c\xe3\x28\x19\x4e\xf7\x17\x04\x82\x49\x75\x9e\x5f\xe0\x20\x42\x48\x30\x1f\xb2\xa1\xe0\x50\xd1\x57\xd6\x45\xa6\x4f\x25\xd3\x3e\xa7\x8d\x26\xc2\x69\xf0\x43\xc5\x69\xca\x52\x29\x04\x0d\x42\xe0\xe9\x3a\x83\xe9\x5a\x02\x9f\xb1\x00\xd5\x7c\x88\xd6\x86\xe6\x24\x56\x61\x51\x0a\x6b\x8a\x02\xb1\x6a\x2f\x36\xf6\xd0\x57\x42\x51\x69\xcf\xca\x3a\x29\xb7\xfa\x4c\x15\x0e\x45\xf2\x45\x3f\x2f\x1a\xae\xa3\x7a\x58\xe8\x61\x88\x7c\x61\xc2\xcc\x78\x54\x91\x88\x26\x5e\xfa\x95\x22\x6f\xda\xf1\x76\x27\x97\xc3\x34\xfa\x40\xcc\x46\xc4\xa1\x39\x5f\xdb\x76\x01\x23\xda\xf6\x85\xa2\x66\xdf\xc1\x9a\x06\xb1\x08\xdd\xd5\xe2\x9b\x31\x28\x8f\xa3\x48\x48\xf1\x8c\xd8\xac\x30\x09\x5c\x7f\xa2\xbf\x5b\xf4\x96\xf3\xbc\xec\x31\x9f\xdf\xb3\xd7\xf4\xf0\x12\x7e\x9e\xc0\x70\xe9\x31\x48\x14\xbc\x74\xf8\xce\x11\x3e\x2e\xff\xe6\x87\x02\x6a\xdd\x20\x3b\x95\x52\xe8\x0c\x1f\x55\x4f\xac\x09\x42\x90\x43\x12\x8a\xa0\x9b\xec\xf4\xe2\x65\x5f\x63\xa7\x15\xf4\xf0\x7e\xef\x29\x4b\x45\x98\x88\xee\x38\x7e\x60\x10\x5a\x7f\x58\x03\xc3\x1d\xea\xb3\x22\x1a\x32\x5b\x84\x3a\x85\xc5\x5e\x97\x7d\x29\x23\x6d\xd5\x76\x53\x13\xc9\xff\xaa\xdd\xbc\xb6\x2c\x15\x2e\xd1\xde\x1d\x0c\xa0\xd1\x5c\x5e\x6f\x00\xf1\x98\x03\xd3\x1e\x7f\x97\xac\xcc\x26\xc2\xdc\xb7\x80\x2a\x9e\xed\x94\x96\x51\xbd\xab\xb5\xb8\x47\xc2\x31\x11\x9d\xe9\x30\xdb\x59\x6d\x58\x77\xef\x93\x4f\xcc\x23\x26\x0c\x9f\xe5\x6c\xb4\xa8\x99\x0a\x8e\x34\x35\x81\xb3\x12\x54\x86\xbf\xd1\xdb\xc2\x53\x92\x92\xf7\x89\xda\x0d\xbc\x25\xd9\x6e\x7a\x5a\xbd\x55\xf5\x98\x6d\x6f\x18\xc2\x4b\xe8\x75\xf3\x52\xb6\xf8\xf3\xe3\x11\x87\x33\xf7\x98\x66\x3c\xf9\x79\x97\x98\xa7\xd6\x4c\x07\xd5\x0d\xa1\x87\x57\x0d\xda\xe2\x4f\x2b\x68\xda\x8f\x3f\x22\xa4\x61\xfb\x32\xdd\x3e\x5a\x87\x67\xd8\x09\x85\x5a\x7c\x20\x55\xa6\x80\x2e\xee\xf8\xfd\x48\xa6\x1d\x57\x8b\xee\xa2\x1c\x53\x25\x00\x82\x1c\x8a\x03\xb9\xb3\xfc\x15\x11\x47\xd7\xc6\xf7\xd8\xbd\x65\xd4\x4a\x09\x6f\x3a\x8b\xb9\x51\xfc\x45\xba\x94\x59\xf1\xb0\xcd\x2e\x74\x77\xeb\x5b\x71\x3b\xfe\xb4\x93\x6e\xde\x7e\x8d\xc1\xc8\x8a\x81\x2d\x35\x4d\xd3\x99\x8f\xb3\x3a\x5a\xd3\x86\xcf\x6f\xb8\xc0\x90\x8f\x5b\x61\x25\xad\x08\xa0\x54\xcd\x44\x77\x7e\xcd\x7c\xcd\x85\xff\xab\xc0\x5c\x90\xa3\xc7\x55\x57\xa5\xc1\x25\xba\x26\x71\x38\xf0\xe0\x42\xba\x2c\xe7\x54\x25\x92\xd7\x8f\xfc\xc6\x50\xc4\x77\xbe\x48\x15\x80\x43\x5d\x52\xc3\x67\x53\xd8\x97\x64\x84\x0e\xfa\x88\x48\xd7\x71\x04\xd2\xc2\x2e\x13\xe5\x78\x03\x47\xc3\x2f\x01\x75\xed\x76\x60\xd8\x01\x8a\xbb\xe0\xaf\x67\x31\x60\x6d\x56\x9a\x0f\x0d\xab\xeb\x56\xde\xeb\x88\xd6\xd4\xf6\x8e\xea\x97\xe0\x92\xe2\x9a\x68\xf2\x18\x95\x79\x95\xea\x36\x96\xc5\x3f\x5f\x68\x4d\x6b\x11\xf8\x3b\xf0\xcf\x0a\xd5\x43\x4f\x36\x3c\x57\xc5\xd1\xa8\x6c\x9b\x1b\xd9\x36\xcf\xda\x7a\xf8\xb1\xb0\xf9\x19\x34\x50\x91\x9b\xf8\x33\x3a\xf6\x8a\xc2\x51\x9e\x7a\x70\x2a\xf2\x60\xb2\x0c\x0b\x51\x22\x52\x88\x25\x53\x72\xbb\xf0\xfa\x6c\xaa\x3e\x32\x2c\xc0\x33\xae\xed\x97\x76\x9b\x95\x05\xd4\xac\x2c\xe6\x8c\x46\xaa\x8b\x36\xe3\x8f\x73\xfa\x74\x32\x71\x89\x36\x65\x2b\x6d\xc4\x4c\xa8\xa3\x5d\xf8\x8f\x57\xdf\x4b\xef\x58\x48\x4e\x23\x5d\x0f\x5a\xa2\xcc\x76\x39\x0a\xa4\xcd\x66\xa8\x55\xb1\x80\xc1\x15\x4d\xe3\xb2\xa7\x65\xf9\xef\x1b\x77\x41\x00\xa0\x2a\xef\x06\x57\x5d\xee\xff\x94\x56\x2d\x30\x1a\x42\xe7\x40\x43\x88\x05\x87\xba\x10\x13\x6e\x2b\x53\x0d\x12\x53\x4e\xc5\xb2\x37\x92\x7c\x7f\xec\xd1\xfe\xf2\x29\x2e\x6d\xec\xd1\x94\x19\x64\xd8\xcb\xe8\x79\x06\x78\x2b\x3d\x0a\xa1\xfe\x0e\x7e\x40\x2d\xf7\xf4\x58\x21\xb9\xe0\xf2\xf9\xd2\xe5\xec\x43\x19\xd1\x16\x3d\x36\x42\xdd\x70\x77\xa9\xb2\x1d\xe2\xa6\x1c\x60\x54\xb6\xeb\xc1\x2b\xde\x14\xd5\x43\x66\x85\x07\x32\x91\x02\xcf\x24\x5d\xbd\x6f\x5a\xd9\xef\x58\xe1\x01\x00\x13\x4a\x00\x19\xf5\xcd\x34\x54\x44\x94\x0b\x82\x13\x97\xac\xcc\xeb\x47\x43\xf8\x2a\x48\xde\x22\x97\x7b\x01\xfa\x7d\x36\x83\xaf\xe4\xdf\xc7\xbb\x16\xb9\x1b\x61\xaf\xb6\x82\x83\x87\xa3\x54\x16\x0b\xdc\x21\x43\x20\x7b\x1d\xc4\xa8\x95\xaf\x0e\x42\x90\x42\x26\x72\xe2\x6b\xeb\x27\xd4\xd3\x24\x0e\x2f\xc2\xb7\x40\x71\x52\x6b\x64\x1f\x05\x15\x86\xb6\x52\x14\x88\xbc\xb4\x4c\x8c\xdb\xdc\xce\xc0\x70\xa8\x8b\x1a\x63\x71\x10\x2e\x55\x1b\x52\x86\x67\xf0\x88\x89\xaa\x63\x42\xd1\x23\xa1\x1d\xff\x8a\xea\xa9\x6b\xf7\x29\x04\xfd\xd4\x3d\xc7\x7d\x04\x92\xb0\x22\x96\xe7\x4c\x87\xf3\xaa\x9b\x00\xc6\x3d\x9a\x0f\x46\x31\xe3\x59\x7b\x21\x6a\xec\x04\xcc\x76\x1b\xb1\xc0\x6e\x9d\x80\x14\x49\x5b\xce\xe9\x30\x11\x9f\x1f\x36\x4e\xec\x47\xc2\x48\x56\x00\x06\x69\x90\x93\xf9\x20\x47\x6e\x5c\xc3\x4c\xd5\x9c\x1d\x77\xf0\xce\x90\x91\xa5\x06\x4c\x53\xf1\x52\x47\xbd\xd2\x44\xd4\x86\x57\x9e\x9f\x69\xe8\x3c\xa6\x75\x4b\x88\x82\x13\x00\xd0\x75\x58\x34\x5f\x40\x8c\x20\x2d\x12\xd5\xb2\xc9\x33\x7d\xdd\xc8\x92\xce\xd8\x60\x10\x00\x24\x30\xca\x20\x36\xc6\x59\x98\xb6\x2a\xe0\xbe\x5c\xe5\xe2\x14\x30\x2f\x10\x0c\xd2\x60\x8d\x53\x1c\x04\xc2\xf9\xfd\x7b\x0d\x87\xc7\xa6\xfb\x99\x44\x64\xdb\x41\xce\xcb\x40\x33\x2f\xc8\xd8\x52\x4c\xc0\xa5\xd7\xec\x81\xf0\x7a\x67\xb8\x5d\x1d\xab\x64\x35\xa7\x53\xc2\x9d\x15\x22\x8f\x4a\x72\xe6\x79\xbe\x39\xc4\x6d\xa3\x89\x28\xac\xed\xe1\x24\xf5\xfc\x9e\x6d\xef\x31\x25\x3d\x51\xe5\x43\x1a\x66\x70\x7f\xb7\xcd\xdb\xc0\x85\x06\xc9\x62\xc6\x3f\xb7\xf5\x9a\x0c\xfb\xb7\xb7\x11\xcb\x3e\xfe\x1b\x98\x79\xab\xbc\xb5\x0c\xf6\x88\x23\x83\x8c\x4d\x99\xc8\xf6\x56\x41\xc2\x9e\xfa\xd2\x37\x0d\xe7\xc4\xc3\xcb\x4c\x05\xd0\x6f\xf9\xb9\x30\x97\xe6\xad\x09\xb3\xb1\x25\xae\x7a\xa2\xc3\xe7\x89\xee\xe3\x2c\xdf\x62\xfc\x62\x94\x41\xbd\xc2\xff\x6a\x9e\x91\xaf\x05\xff\x66\xb2\x22\x78\xfd\xe6\xf7\xe7\xa5\x3e\x94\x69\xae\x4d\xb3\x1e\x79\x20\xfc\x4f\x30\xa9\x80\x26\xd6\x8d\x8a\x94\x3f\x4d\x43\xe5\x8e\xc5\xab\xc0\x2c\x83\x43\xa1\x40\x93\xa4\x83\xf3\x4c\x31\x60\x75\x39\x5c\x1b\x3c\xb1\x9a\xcd\x64\x46\xf3\x7a\x3f\x80\x42\xfb\xd9\x5c\xc9\xa1\x6f\xc5\x11\x6e\xd1\xa3\xfd\x08\xf9\x36\xf9\x3c\x24\x09\xf4\xa3\xcb\x01\xe6\x21\x6b\xab\x08\xe3\x27\xb8\x65\x8f\xb4\x4a\xb3\x26\x50\xbe\x08\xba\x60\xc2\x51\x1e\xc7\xc5\x45\x46\x5d\x9b\x2e\x90\xbf\x1c\xb2\x18\xef\xc8\x16\x05\x80\x5e\xec\x80\xef\xc9\xac\xfc\xe1\xe9\x7e\x09\xc7\xb4\x5c\x82\x93\x3a\xf9\x8c\x31\xcd\x43\x1a\x48\x46\x56\x69\xd9\xeb\xbe\x88\xb0\xe3\xac\xc5\x14\x0f\x80\xe5\xeb\xf7\x63\xdf\xf2\x19\x5a\x00\x19\xf5\xf6\xd1\xd3\xb3\xd9\xf5\xce\xda\xd9\x88\x7a\xea\x23\xcf\xb7\xf0\xbc\xf4\x77\xe2\x7c\xd3\xbb\x37\xdf\xc6\xeb\x9f\x01\x00\x0a\x2f\x29\x0e\xb8\xbd\x15\xc6\x04\x94\xe0\xe3\x2a\x07\x3d\x7e\x82\xf3\x06\x06\x41\x32\xf7\x31\x6a\x4f\xc9\x47\xb0\xde\x14\x2a\xe1\xd1\x2f\xde\x17\xd7\xe9\xf0\xdd\xb3\xc4\x97\x71\x2b\xdd\x44\xbc\x7e\xa4\x19\xd8\x3a\xa3\xbd\xdc\xa0\x3d\xb9\xcc\xa1\xef\x47\xae\xdc\xa8\x88\x3d\xa2\x4f\x43\xd9\x02\x40\x03\xe1\x0c\x24\x44\xf2\xe9\x5f\xfe\xba\x29\xce\xd5\xa4\x4e\xc9\x8c\x62\x01\x65\x96\x38\x71\x8b\x29\x97\xdd\x2e\x1a\xde\xd2\xc4\xbf\x12\x8e\x6a\x52\xf1\xc7\xb3\x86\x97\xd9\x9f\x5d\xbe\x52\x18\x92\x19\x84\xa2\x6d\xdf\x5c\x7a\x82\x96\x7c\x2f\x0d\x03\x69\x2d\x21\xc8\xa8\x51\x57\x22\x1c\x31\xa2\xad\x71\x37\xae\xea\xb1\x25\xa8\x29\xca\x9a\x15\x41\x90\xaf\xe9\xa6\x5c\xc3\xe1\xbe\xff\x9d\x78\xa4\x33\x7b\xb9\x78\x1c\x11\x90\x5f\x98\xee\xa5\xb1\xd5\x26\x3a\x70\x63\x21\x1f\x72\xd9\xd2\xc3\x03\x04\xc2\x4f\xfb\x9a\x0e\x5b\xdf\x1e\x2c\x36\xc9\x92\x5c\x6c\xc4\xbc\xec\x79\xb9\x6a\x67\x1a\x5a\x93\x46\xc0\x5d\x23\xf2\x46\x2d\xdd\xda\x02\xa1\xa5\xda\xab\x9d\x34\x67\x3b\xaa\xed\xa8\xac\xef\x88\x82\x49\x47\x89\xc6\xad\x3b\x35\xad\xf8\xed\xb0\x77\x06\xbb\x81\x50\x0d\x00\x34\x70\x80\x9a\x4d\x46\xc2\x48\xf8\xd5\x8e\x68\xef\x51\xde\x4f\x2c\xfc\x00\x23\x66\x6a\x30\x40\xa9\x4a\x04\x00\xcd\x49\x1d\x76\x22\xc2\x87\x1d\x7a\x4a\x98\xbe\x09\x2f\x10\xe3\x4b\xed\xa4\x5d\x0f\x87\xb8\x08\x5a\xff\xea\x29\x5b\x28\x7d\x17\x0f\x82\xd5\xf3\x0d\xf1\xff\x57\x79\x84\x57\xea\x8d\x76\x62\x64\x6b\xfb\xc6\x97\x1f\xee\x58\xbd\x14\x46\x88\x39\x68\xfe\x82\xcb\xb5\x80\xc5\xc3\x48\x08\x5b\x26\x4e\x97\x07\xb3\xc7\x48\x19\xda\x5b\x4f\xf3\xd1\xe8\xa7\x9e\x3d\xfb\xa8\x10\x4a\x2f\xf7\x1d\x4f\xdd\xaf\x71\xc5\xe7\x80\x8d\xf7\x0c\x2c\x25\x06\x02\xea\x19\x00\x64\x94\x30\x9d\xe5\xdd\x5a\xd1\xfd\x15\x94\xe2\x2d\xff\x47\x45\x2f\x9f\x84\x2f\xf0\x3b\x6f\xd7\x43\xe2\x74\xd2\xbb\x79\x1b\x25\xe6\x9b\x1b\x65\x5a\xf3\x96\xcf\x5d\xe1\x98\xfc\x79\x43\x47\xf6\x0c\x34\x65\x3f\xe7\x79\x93\xc7\xf7\x81\x64\x4d\x12\xac\xd7\x93\x20\xad\x6d\x28\x35\x0e\xd6\xfb\x77\xd0\x40\x78\x55\xe7\x7f\x78\xde\x07\xaf\x8e\xbd\xe9\x10\xd3\xef\x5a\xcd\x76\x4a\x99\x12\xdb\xad\x48\xab\x99\x81\x62\x94\x84\x7e\xcb\x60\x4b\x0f\x1b\x78\xc7\xe7\xf8\xe7\x7d\xfd\x5a\x3d\x1f\xe1\x8e\x4b\x18\x79\xfc\x38\xe0\x37\xe6\x18\x14\xf3\x62\xed\xa5\x6b\x4d\xc1\xe2\x98\xd0\xa0\xd2\x95\x98\x08\x67\x10\x1e\x5a\x0b\x52\x20\xa6\xeb\x24\xfe\xcd\x13\x84\xb6\x05\xa7\x53\x00\xc8\xa8\x44\x33\xd4\x6a\x64\xd9\x2e\xf9\x36\x05\xf0\x14\xc8\x97\x41\xb8\xf7\x9b\x85\x6c\xa8\x2d\x9e\x15\x64\x38\x17\xb2\x05\x5a\x2b\xc2\x04\x4c\x78\x77\xc9\xa1\xc6\xae\xef\x52\x01\x60\x20\x4f\xd0\x84\x1e\x0c\x7f\x82\x13\x1a\xf9\xcb\x1c\x81\xd7\xae\x9d\x3c\xe7\xb5\xa4\x56\xda\x39\x51\x1a\x85\x37\x0e\xe9\xf5\x52\xf4\xab\xfd\x71\x49\xd4\x24\x02\x1e\x9b\xb3\x00\x03\x61\x00\x04\x69\xf9\x19\xb2\x46\x6b\x7c\x7c\xf9\xe2\x2e\xbd\x09\x3d\x2c\x12\x56\x63\x34\xfe\x4d\x90\xa3\xe7\x84\xe0\xcb\xd4\x79\xd3\xed\xd4\x5b\xee\x7d\xab\x25\x9f\x87\x3f\x3e\xfb\x1f\x67\x7d\x56\x95\x67\x3d\x1f\x86\xa2\x3f\xed\x79\x4d\xbe\x33\xb2\xb1\xb1\x9c\xd2\xe2\x67\x48\x67\xcf\x43\xf8\x32\x77\x6d\xba\x7e\xe5\xf0\x97\xc3\x23\x18\xe8\x4f\x11\xd9\x61\x6c\x37\x95\x0e\x10\xdd\x26\x1b\x76\x26\xaa\x7a\x58\x45\x4e\x79\xd7\x8f\x69\x1a\x4f\x81\x93\x7e\x1e\xb9\xa7\xe1\x83\x11\x8f\xd2\x96\x7c\x56\x47\x6e\x86\x69\x39\x5f\x47\xf6\xc7\x1f\x76\xca\xd7\x33\x9c\xe1\x04\x45\x04\x6e\xbe\x16\xc6\x46\x46\xcd\x9a\x4a\xfd\xc0\x1c\xf7\x19\x13\xff\x77\x8b\xb3\x7b\x5a\xbe\x1b\x0a\x86\xfe\x05\x26\x1c\x8e\xbb\x29\x0b\xda\x10\x5d\xb3\xc0\x62\x98\x7c\x25\x04\xf5\x67\xad\x41\x1d\x1f\x99\xde\x5b\xb0\x70\x92\xe0\xf3\x97\xfd\x2f\x72\x90\x50\xfc\x93\x9e\x9b\xb8\x7f\xb9\x39\x2d\xbf\xdb\x41\xfb\x57\xc3\xaf\xda\xe6\x1b\x8b\x7b\xbb\x36\x97\x22\xdc\xe7\xef\x98\xff\x82\x00\x39\x25\x1c\x45\x0e\xa2\x62\x79\x70\x21\x7d\x68\xe5\xdc\x84\xc3\x3b\xf1\xe4\x9e\xc7\x01\x8b\xc9\x8c\x8a\x1b\xd9\x08\xd0\xab\x57\x0a\x43\xcc\x67\x2c\x58\x3d\x7c\xef\xb6\x14\xa2\xe9\xa1\xbc\xfa\xd9\xc5\x77\x31\xda\x77\xaf\x81\x6d\x41\x76\x99\x9d\xfd\xbc\x6b\x41\xe3\xc5\xc1\x3b\x0a\x41\xf6\x4d\xda\xd8\x0f\x1b\x1e\x9c\x69\xbe\x3a\x1b\x67\xd2\xcc\x7f\xc8\xd9\xe5\xbf\x03\xdb\x10\xc4\x1e\x8d\x3b\xf8\x57\x3a\x7a\x9d\x1c\x59\xba\x93\xd2\xfa\xfe\xe6\xdf\xb3\x4f\xb2\x9f\xac\x1a\x0a\x16\x8d\xca\x76\x64\x3a\xb4\x3c\xbb\x56\x4a\x8b\x42\xb7\xdd\x01\xc2\x23\xe6\xe1\xae\x66\x91\x97\x20\x60\xe4\x07\x01\x8f\x1c\x90\x0f\xa4\xcf\x15\xc2\x8a\x94\xec\x0b\xac\x39\xa6\x73\x2b\x90\xaa\x9e\x65\x8a\x24\x1a\x44\xac\x62\x7d\x57\x6d\xc5\xcf\x9a\xb1\x5b\xe8\xe1\x67\x41\x67\x3c\x7b\xb4\x52\x10\xa4\x65\x24\x9d\x03\x26\xbf\xc8\x58\xd0\x37\xe9\xd3\x96\xcd\x43\xb7\x60\x5d\x55\xdb\xa7\x9a\x52\x4c\x7f\x4a\x91\x8f\xf1\xc6\x3a\x36\xbb\xfc\x93\x9e\xb7\xef\x58\x20\x28\x35\x79\xfc\xd7\x79\x1e\x55\x34\x4d\x75\x13\xea\x69\x6d\x7a\xd3\x5a\x40\x7e\x7c\x49\x7b\x8c\x79\xb5\xf9\x9e\x2e\x05\xe8\x87\x34\x00\x10\x3a\x90\xb8\xa5\x10\x5a\x43\x34\xf5\x6d\x6c\xeb\xce\x50\x9b\x2c\x9f\xf6\x87\xc1\x20\x93\xb0\x74\xec\x88\xf1\xfb\x2f\x6f\x87\x24\xe5\x49\x08\xb0\x4c\x9d\xe1\x10\x64\x6e\x3c\x88\x03\xd3\xaa\x85\xd9\xaf\xac\x38\xd9\x97\xed\x3e\x5c\xe4\x7a\xe6\xaf\xe9\x14\xeb\x5f\x8c\xef\xf5\x39\x45\x29\x34\x49\x55\x9e\x97\x3d\x6f\x58\x97\xc6\xdb\xb7\xa0\x84\xdc\x85\xab\x68\x7f\xab\x59\xaf\xdd\xdc\xd3\x1e\x2b\x71\xa3\xc1\x23\x13\x6c\x12\x94\x04\xf8\xd2\x52\xca\xc6\xfd\x55\x90\x34\xee\x17\xf9\x10\x01\x24\x6e\x9f\x4b\x10\x68\x92\x48\xae\x49\x79\x90\x1d\xcf\x22\xa7\xca\xde\xb8\xb0\x02\x6f\x21\x0c\x50\x5e\xf7\xf0\xed\x0b\x41\xa0\xdd\xd3\x79\x59\x0f\x73\x13\x73\x77\x58\xca\x5f\x23\xf1\x0a\xec\x15\xd9\x7e\x7d\xe6\x9b\x81\x5e\x3f\x43\xb5\x6a\x3a\xc5\xee\x11\xd4\xea\x2d\xf6\x7a\xe3\x8a\xc7\x30\x74\x5f\x5b\x69\x41\x14\x17\x50\x8f\xd9\x1e\x2d\x50\xe0\x3b\x91\x23\x5d\x4b\xdf\x73\xd5\x4d\xe8\xb3\xe7\x69\xcc\x32\xd7\x7b\x67\xc5\xe2\xa1\xc7\x85\x4a\xc4\xf4\xdc\xc4\xd7\x34\x6f\x46\xec\xee\x2a\x84\x60\x81\x70\x8d\xdf\x40\x1d\xc6\x59\x99\xc2\x2d\x02\xc3\xd1\x94\xf8\xcc\x51\x62\x10\x53\xa5\xae\x7f\x2f\x26\x1d\xe5\x2e\xb4\x45\x6d\x04\x41\x4c\x0a\xb5\xa4\x9e\xcf\x44\x74\xc7\xeb\x2d\xf7\x7b\x37\x95\xd2\x67\x7e\x45\x39\x7f\xa7\x4d\xee\x6e\xf0\xf8\x0b\x36\x41\xf0\x9a\xec\xc6\x23\x54\x88\xff\xda\x2a\xb5\xa5\x9e\xc7\x5a\xf0\xce\xbe\x97\x19\x86\xc4\x49\xe9\x60\x57\x40\xdb\xb3\x4a\x32\xbd\x01\x16\xdd\x82\x7a\x4e\x18\x32\xaa\x80\xd1\xf4\x9b\x87\xdb\x63\xa2\x6f\x17\x94\x65\xfb\x96\x0e\xbe\xee\x7c\x97\x5f\x08\x6a\x4f\xe6\x15\xa3\xa4\xeb\xeb\xf7\x17\x35\x89\xcd\x05\xd6\x2a\x92\xb1\x65\x39\x25\x0c\x9d\x6a\xc1\xec\x59\x04\xa5\x13\xb7\x49\x35\xff\x89\x00\x70\x01\x2a\x9e\x5e\xfb\x6c\x00\x35\x37\x15\xf4\x62\xd6\xd6\xaf\x22\x67\x49\x13\x32\xca\xe2\x7b\x3f\x0c\xa8\x41\x7a\x77\x52\x4e\x2a\xc9\x7d\xa6\x78\xea\x1f\x49\xbe\xc6\x06\x0f\xe4\x92\x48\xc3\xcc\x6f\xbe\x96\x3c\xac\xe1\xf9\x67\x1c\x0b\x96\x4d\xd4\xe4\x38\x7e\x20\x7b\xe8\x57\xd7\xbf\xa7\x66\x96\xc3\xe3\x6a\xad\x25\x30\x0d\x7c\xa1\x27\xde\x94\xe4\x3e\x7b\x91\x25\x6d\x45\x71\xf3\xad\x62\xf0\x0e\xfc\xaf\xb2\x24\x15\x37\x0e\xe7\xb1\x1d\x58\x08\x58\x11\x67\x9f\x4d\x13\x74\x6f\x65\xc9\xf3\x69\x13\x8d\xfb\x65\x50\x1e\xe7\xd8\x5a\xf1\xf3\xde\xb2\x4e\xaa\xfc\x31\xcb\x06\xc7\x9a\x45\x20\xc8\xc4\xaf\x5f\x9b\x1e\xea\xf2\x89\xaa\x7c\x5a\x62\xf7\x66\x5a\x4b\xb9\xb8\x2e\x6d\xd3\xbf\x66\x46\xdb\x3f\xcb\xee\x8e\x05\x0c\x32\x91\x41\x18\xb7\x18\xbe\xc2\x1c\xfd\x64\xb9\xfe\x91\x41\x1a\x1f\x3a\xd4\x26\x1f\x07\xb1\x0a\x7b\xbb\x0a\xa2\xa4\x23\x1c\xf9\x41\x30\x32\x81\x6d\x6c\x6f\xfb\x8d\xa0\xd6\xeb\xa7\x7c\xa6\xf2\x0d\x4d\x6a\xb0\x32\x17\x30\x8a\x1d\xf0\xa5\xe9\x53\x19\x21\xf5\x2a\x29\x7e\x46\x83\x6a\x26\x34\x50\x51\x90\x58\xc5\xc1\x9a\xdf\xdb\xb6\x01\xf1\xbb\x5d\x6f\x79\x86\xd5\x67\x63\x28\xfa\x5a\xd6\x12\x61\x1c\x82\xf7\x6c\x72\xe8\xfb\x8b\xca\xd8\x63\xca\x7f\x56\x2d\x2a\x49\xaf\x3d\x32\xfc\x0f\x1e\x25\x36\x18\x14\xf7\xef\x82\xe4\x0a\x09\xb7\x25\xeb\xd8\xe1\x80\x50\xa0\xdc\xd6\x6a\xe6\xbd\xbc\xfe\x86\x2c\xcf\x86\x11\x00\xc0\xa9\x22\x5b\x1e\x3a\x03\xae\x5b\xe2\x72\x6b\xa1\x3f\xb9\x15\x34\x83\x87\x9a\xff\x03\xe6\xf5\xb5\xe4\x01\xa4\xbe\x80\xa9\xeb\xeb\xd9\xfd\xc9\x70\x7a\x9b\x3b\xbc\x84\x7a\xfb\xde\x3f\x9f\x31\xb1\xb9\xcb\x6f\xa3\xa4\x64\xa1\x2e\x9d\xef\x32\x64\x30\xc8\x72\x89\xc0\x89\x4d\x14\x00\xbe\x1a\x01\x28\xba\xb8\xac\xa4\x46\xa8\xf6\xb3\xb9\xf7\x1d\x89\xbb\x9d\x08\x00\x40\x30\x8d\xf2\x2b\x7f\x53\x44\x97\x44\xa0\x9b\xa8\x0a\x1e\xc1\xb4\xb2\xe8\xf8\xf2\xa4\x88\x21\x89\x46\xef\x8b\x30\xd6\x53\xfe\xf5\xd3\xcb\x00\xb0\xb7\x34\xbe\x30\x5d\x36\x75\xbe\xac\x8d\xdd\xa0\x59\xb2\x58\xc0\x48\x15\x41\x3a\xa9\xb6\x91\xf7\x45\xb7\x0d\xe4\xaa\xfe\x63\x43\x9d\xb5\x9c\xd2\xc6\x3e\x30\x8b\x33\xd0\x10\x70\x12\x65\x4e\x32\xe6\x9a\xa7\xad\x15\xf0\xe3\xdf\x6f\x00\x00\x40\x06\xe1\x68\x54\xf6\xb4\xed\x62\xac\xd5\x9d\x40\x39\x76\xbb\xdd\x93\x6c\x13\x0b\x0e\xe5\x95\x27\xd1\xc6\xc8\x4b\xfb\x9f\x71\x3c\xb2\x77\xce\x29\x68\xc9\x72\x69\x14\xdf\xb1\xfb\x2e\x09\x90\x8d\x5b\x95\x2d\x09\xf3\x2e\x87\xc4\x4c\x75\x8e\x8a\x16\x27\x9e\x81\x0d\x64\x40\x30\x92\x30\x54\x39\x42\x59\x9d\x37\xbd\xaa\x62\xe5\xc3\xbf\xcd\x66\x15\x29\x2b\xda\xfb\x6a\xc9\xd3\xc7\xde\x5b\x39\xbe\x7b\x4d\x39\xb5\x7a\x41\xc4\xd2\x40\x20\xfc\x0f\x13\x5d\xeb\xf9\xe1\x3b\x60\xe1\x35\x6f\x5a\x7f\xc3\x3f\x4e\xf6\x55\xf5\x83\x05\x75\x88\xae\x81\x6d\x81\x71\x9b\xe1\xab\x69\x13\x27\x4a\x00\xb0\x34\x3b\x76\x2f\x80\x20\xb2\x6f\xd5\x9b\xdf\x9a\xb0\x82\x33\xc1\xf0\x33\x70\x75\xeb\xbb\x5a\xff\xd1\xa9\x5f\xab\x2f\x3c\x41\x09\xf0\xe0\xc9\x90\x0b\x22\xa3\xc5\xde\xe6\x0c\xec\x89\x40\x23\x81\xa7\x8e\x76\x78\x40\xd5\x31\x52\x0a\x66\x5e\x48\x15\x5b\x5f\xb2\x61\x10\x6f\x68\x67\xed\xb8\x2d\xde\x22\xbc\x43\xa0\xd4\x02\xc2\x0b\xdb\x18\x6d\xaa\xfb\x1e\xfe\x83\xee\x93\x20\xc2\x9a\xdb\xca\xb2\xb5\x45\x13\x0c\x97\x11\x25\x84\xd5\xba\xfc\x3b\x06\xcb\x81\x2f\xc6\xb1\xb7\x76\x94\x87\xee\xa5\x54\xa9\x14\x6f\x32\x87\xc1\x5d\x79\xc3\xcb\x6c\xc9\x98\xa3\x6b\x86\x53\x9c\xf0\x84\xd8\x40\xfa\xff\xc2\x3e\xf3\xab\x43\xc6\x49\x27\x35\x10\xc2\xd0\xd6\xf6\x9b\xee\x8f\x96\x76\xc6\x5e\xc5\x9b\x24\xdc\x0c\x68\x65\xbd\x09\x07\xb7\x6d\x4a\x42\xd4\xc1\x27\xec\x04\x62\x62\xa7\x1d\x08\xa2\x18\xd7\x15\x0d\xdd\x3e\x05\xd7\x2b\xf2\x5b\xf5\x12\x20\x80\x77\x4b\x96\xcb\x5e\x16\x82\xa7\x97\x3a\x4f\xf5\xf0\xc6\x24\x41\x62\xb4\x0a\x64\x20\x68\xa0\x62\x82\xe7\x9d\x31\x08\xe0\x3c\xac\x44\x3f\x19\xe1\x88\x69\xad\x37\xe5\x41\xf2\xea\xfe\x10\xf3\xa8\xc9\xe5\xee\xea\x4d\x49\xae\x26\x25\x00\x72\xfd\x87\x5a\xdc\xc0\xf0\x37\x63\x1f\xdb\x3d\x29\xdb\x03\x4a\x29\x4c\xaa\xb6\x3f\x38\x6c\x2d\x1a\x2b\xf0\x3e\x33\x02\x98\xe5\x2d\x73\x0a\x1e\x7a\x92\xe7\x67\xcb\xa8\xc4\x07\xdb\xe5\x59\xe1\x37\x01\xbf\x44\x01\x08\x92\x0b\xeb\xf3\x1b\xc0\x76\x48\x4d\x9b\xdf\xaf\x81\x17\x33\x7e\x20\x49\xb4\x1d\xd7\x1d\xdf\x88\xff\x59\x0c\xe0\xeb\xc8\x21\x03\xb0\x9a\x01\x9b\x5e\x54\x6d\xd1\x9f\xcd\x1f\x6f\x2f\xb8\xf5\x1a\x85\x52\xce\xce\xd3\xc8\xf5\x10\x65\x8b\xf9\x94\x6d\xee\x1e\xcb\x5e\xdf\x15\xde\x77\xca\x1b\xb0\x6b\xc5\x29\x37\xd1\x4b\xc3\xcc\x77\x29\x27\x7e\x4b\x8f\x62\x15\x5a\x89\xd5\x66\x42\xd5\x13\xce\x82\xbf\x83\x63\x18\xad\xae\x8b\x21\xf7\xee\xef\x2c\xb9\x40\xb7\xea\xf8\x28\xa8\x8d\x11\x0a\x78\x6f\x0a\x20\xcd\xbd\x9b\x56\x1c\xec\xb7\x16\x23\xbb\xc3\x3d\x41\x00\xca\x5c\xf4\xa6\x87\xa3\x29\x71\xd9\xa0\xc8\xae\x3f\xca\xa8\x90\xe4\xbf\x46\x88\x61\x2c\xc9\x11\xd1\x10\x1e\xd5\x52\x76\xd1\x24\xb1\x1f\xa3\x10\xc6\xd7\x44\xd9\x5c\x55\x43\xbb\xea\x40\xca\xf7\xa2\xde\x36\xd8\xed\x94\x46\x40\x9e\xc8\xbf\xda\xbe\x3d\x63\xae\x59\xda\x57\x6e\xad\x22\x3b\x7b\x12\x1c\xf9\x8c\x3d\x81\x25\x7e\x87\x25\x83\x0b\x65\x4f\xc5\x07\xdf\xf8\xb3\xc2\xd5\x12\x33\xa1\x08\xd8\xba\xa8\x7c\x82\x19\xc9\xb3\x06\x62\x00\x9b\x31\x9f\x87\x09\x27\x46\x21\x93\x2d\xd0\x3c\x5f\xf1\xa7\x99\x55\xc8\x5b\x0e\x80\xfe\x57\x3f\xd6\x17\x30\x7c\x17\x5b\x68\x08\x7b\x86\xab\x5e\x3f\x59\xfa\x92\x22\x45\xc1\x71\x8c\xc2\x4f\x06\x16\x17\xd3\x7d\x9e\xf4\xa0\x7f\x28\x3a\xd8\x86\x0d\x30\x9f\xb1\x60\x5f\xd8\x3f\x92\x82\x41\x12\x01\xdf\x06\x40\x0a\xfd\x1d\x9a\x40\xd3\xf9\x1a\x47\x4d\xa5\x67\xa0\xe4\x01\xc4\xd5\x00\xc8\x1d\x81\x09\xf7\x48\xac\xeb\xf8\x8d\x6e\xdf\x37\xdc\x3b\x77\x13\xa6\x2a\xde\xdc\x0c\xc3\x6c\x21\x67\xd7\x14\x8f\x07\x96\xfd\xcd\x44\x6e\x45\x53\x82\xc0\xe8\x42\x2d\x6a\x02\xd0\xff\x7e\x71\x01\x51\x41\x48\x79\xc7\xb1\x93\x1c\x59\x92\xa8\x40\x39\xb6\x3f\x15\xa1\x89\xf2\x6b\x44\x4e\xbd\xd8\x88\xa0\xe8\x16\x00\x30\x39\x5c\x6f\xd9\x8f\x40\x9f\x06\xfc\x36\xf7\x1e\xa3\xf0\xd3\x86\xe1\xd9\x4e\x59\x5c\x1a\x2d\xf7\x3e\xc4\xec\x69\x99\x91\xdf\x48\x03\x53\xb8\x08\xd8\x7a\xa5\x93\x28\x11\xb6\x66\x1f\x4a\xc1\x51\xaf\xd6\x9a\x80\xde\x57\x25\xfa\xf1\x19\x8b\x20\x98\x91\x12\x63\x93\x6a\xc6\xdd\x02\x50\xfe\xc5\x0e\xbd\xc4\x2d\x07\xb5\x7f\x24\x1f\xf5\x2c\xb7\xf6\xf7\x8a\x3d\xa6\xf9\xef\x64\x24\xec\xf2\x96\x19\x25\x3e\x87\x3f\x59\x1a\x96\xff\x88\x28\x80\xbc\x4e\x41\x3c\x6c\x30\x64\xd4\xdb\x2f\x59\xa1\xe9\x39\xa7\x49\xe9\x63\x89\x67\x35\xe1\x81\xc3\xe6\x2d\xef\x6f\x64\x79\x3e\xbf\xc4\x08\xfd\x30\x02\xa4\x28\x1b\xb8\x00\x60\xc6\x5b\xd8\xf1\xd2\xb9\xf7\x3a\xb8\x24\x6c\x37\x9b\xfb\xee\x85\x1a\x44\xd7\xc0\xde\x1a\xb3\xfd\xec\xd9\xf5\xa1\xaa\xfc\x8b\xf6\x5c\x24\x34\xd0\xe0\xbd\x50\x5c\x66\xc1\x71\xa3\xac\xb4\xd9\xd8\x34\x2f\xb8\xb2\xe4\xf8\xfe\x3e\x85\xb6\x36\x31\xf2\x31\x8a\xed\xf8\x7d\x78\x9f\x26\x14\x45\xfc\x11\x22\x55\x07\x99\x03\x4c\x5c\xd9\xe7\x89\x28\xf6\xb9\x2f\xaa\x96\xb6\xd0\xa8\x84\x33\xb1\x14\x3a\x29\x82\xed\xc1\x67\xe4\x6b\x1e\xad\xad\xd1\xfe\xa4\x5e\x31\xe0\x2e\x1f\x40\x11\x5f\x0a\x66\x4e\xf2\xeb\xb6\x5e\x0e\x88\x7a\xf4\x79\x5a\x4c\x7a\x8a\xc5\xd7\xb9\x6b\x45\xb3\xd1\xfd\xe7\x21\x8d\xe5\xdd\xeb\xb3\x3a\xb0\x32\xa3\x65\x5a\x6e\x58\x01\x0c\x20\x46\x37\x03\xf2\x0d\xc0\x2b\x60\x06\x57\xd7\x1f\x33\x9a\x79\x6f\xaa\xb1\x86\x1b\xd3\x7a\x54\x15\x04\xf0\xf4\x9b\x39\xb6\x3a\x99\x3c\x0c\x71\x34\x25\xce\xa3\xe4\x03\xa0\x81\x8a\xa9\xf5\xc7\x44\x5d\x35\x99\x0e\x90\xf3\xda\x9e\x4b\x16\xdf\x80\xae\xa3\x84\x0f\xf1\x9c\xfe\xfd\x66\x9d\xdf\x0c\xda\x82\x8c\x5e\xf2\x68\x92\x29\x12\x68\x30\x00\x32\xc5\x04\x4e\x06\x94\xd0\x46\xfa\x95\xd1\xcc\x53\x13\xee\x2d\xdf\x1e\xab\x2c\xc3\xa3\x97\x9a\x81\x46\x4e\xb1\x87\xad\x15\x31\xf7\x83\xc9\xe4\x66\x8f\xfe\x07\xb1\x97\xd4\x38\x1b\x0f\x58\x91\x8d\x37\x96\xf8\x73\x45\xe4\xcb\x9c\x1c\xd3\xda\x8e\xac\x16\x68\xad\x33\x74\x4a\x7b\xf3\x3b\x37\xc8\x74\x33\x1f\x9a\xc0\x96\x2b\x03\x48\xc9\xdd\xa0\x98\x9e\xe0\x80\x81\x26\x4b\xc8\x06\x2e\x9f\xf6\x73\xd6\x20\x3c\xb4\xf1\x87\x82\x65\xff\x5b\x9b\x83\xdb\xa2\x47\xf6\x78\x68\x69\x20\x9e\x40\x06\xb6\x3e\x20\xaf\x1b\x7b\x5e\x7c\x97\x61\x27\xe5\xcb\xbc\xb8\x1f\xd8\x34\x3a\xc6\x75\x28\xfa\x5c\xd5\x86\xd6\xe2\xee\x8b\x3e\xb6\x07\xad\xb2\x68\xbf\x33\x31\x0f\x5f\x91\x3f\x8a\x8d\x14\x30\xd3\xc6\xad\x5e\x9d\x21\x30\x91\x98\x7b\xd1\x48\xfb\x49\xb1\x9a\xd9\x97\xc8\x2a\xa2\xaf\xf7\xc4\x56\xf2\xb6\xc4\x23\x75\xbd\x4d\xa7\x3a\x8e\x3e\xbb\x8e\x48\x86\x18\x05\xff\xf3\x29\xe6\x49\xe6\xa3\x8f\xa7\x4b\x0e\xb3\x27\xb4\x86\x53\xea\xfb\xdf\xd9\xd9\x93\xb1\x2f\x09\xd2\xe4\x71\x5f\xd7\x32\xb2\x83\xd1\x27\xa0\x5c\x23\xa8\x62\x1c\x10\x3a\xb2\xf5\x3e\x30\xb6\x13\x01\x98\x88\x84\xe5\xfb\x57\xce\xdd\xa4\xa7\xe0\xbd\xb2\x7c\x41\x07\x03\x80\x6a\xd4\xd2\xbb\xb2\x9d\xb6\xdb\xa1\x98\xbb\x3a\x5e\x9a\x7e\xd0\x7f\xf1\x9e\xeb\x7b\xf5\x8c\xbf\x5b\x5e\xbc\x31\x5f\xe0\xcd\x78\xe6\xad\xfc\x5b\x52\xef\x98\xd6\x15\xa1\xc0\x3f\xe9\xb6\x38\x2a\xaf\x9e\xa4\xb0\x8c\x54\xd0\xad\x3e\x39\xcd\xc7\x35\xd9\x6c\x06\x3e\x8c\x51\xf0\x70\x5d\x1e\x2e\x7f\xf1\xbe\x3c\xe8\xfe\xc6\xfb\xab\x5f\xe5\x62\x22\x13\x07\x98\xe2\xa9\x77\x84\x84\x73\xd6\x4c\xb8\x47\x68\xd8\x8d\x5d\x3a\x4f\xe5\x07\xbe\xb0\x10\xad\xcd\xc6\x6f\xac\xf9\x71\xfa\x58\x38\xce\x86\x76\x2a\x95\xe8\xa0\xc5\xfb\xf2\xcf\xfd\xed\x25\x8b\xef\x35\x34\x50\x91\x2e\xba\x81\x12\xde\x42\x5d\x0e\xfe\x69\xdf\xa7\xa7\xb1\x65\xd4\xab\x4d\x80\x2d\xab\x6b\x85\xce\x8f\x69\x7d\x88\xaa\x65\x7e\x2c\xa1\x6f\x83\x99\xec\x62\xba\x25\x00\xac\xdd\x65\x9f\xbd\x26\x90\xa7\x50\xfe\x85\x60\x85\x00\x26\x8d\x1e\x00\xa0\x98\x01\x00\xdb\xb7\x23\xc1\xd9\xe7\x59\x8f\x25\x82\x8a\x1d\x20\x17\xea\x6f\x39\x36\xa9\x37\xf0\xe3\xcc\x93\x6c\x35\x22\xc1\x6a\xc2\x86\xbd\x5e\xc5\x50\x08\x0d\xad\xf9\x7d\x52\x7a\x56\x43\x89\x2a\x04\x0e\x75\x79\x4a\x4f\x50\xd9\x4a\xd2\x3e\x22\x82\x29\x04\xd2\xbd\xc2\xb2\x53\x02\xdb\x16\xc6\xa6\x5e\x44\x72\xa2\xdf\x96\x6b\xcd\x5a\x8d\x2d\xb1\x0a\x4b\x5c\x37\x3d\x8b\xb8\xf4\x61\x2e\x72\xa2\x07\x3e\x6c\x53\xfa\x13\xa9\xbf\x01\x8d\x8b\x3b\x2a\xe7\x00\xa1\x9f\x40\x80\xba\xad\xaa\xe4\x00\xc1\x0a\x1b\xda\x89\xfd\x7e\x32\xb7\xd6\xe1\xaa\xd8\x89\x4a\xdc\xc7\x0a\x0f\x94\xce\x9e\x67\xf7\x49\xa7\xd7\x53\x51\x54\xb4\x0f\xe7\x91\xbc\x0c\xc7\xfb\x80\xff\x26\xce\x38\x8c\x18\x00\xf0\xf6\x51\x74\x9b\x78\xf9\xc9\x0b\xfd\x9e\x8a\x6c\xb3\x7d\x02\xee\x9d\x4b\xef\x90\x28\x5a\xf3\x7b\x15\x7f\x97\xac\x87\x2e\x97\x9e\xe5\xe0\xa5\x49\x7f\x03\x40\xaa\x0b\x00\x50\x60\x93\xf7\xbf\x62\xad\x62\x19\x89\x11\xab\x33\x04\xed\x2d\x29\x79\xd6\xdf\xec\xcf\x93\xe8\x43\xc5\x77\x6e\x85\xec\xa0\xa8\x4c\xdc\x75\xdb\x51\x35\x4e\x7d\xf2\xc8\x42\xed\x91\xb0\x50\x54\xc0\x01\xfb\x7f\x53\x28\xbc\x3f\xaa\xfb\xdd\x30\x3d\x21\x40\x26\x8f\xd2\x1a\x4c\xb7\xf8\xa4\xc8\x26\xd4\x17\x27\x3f\xd8\x45\x82\x78\x35\x60\x72\xbb\xb5\x17\x41\x2b\x6e\x50\x4d\x0b\x04\xe0\x00\xfc\xab\xe6\xe7\x87\xed\x5f\x8f\x23\xf1\x01\x20\xc1\xef\x52\xa2\x9d\x8c\x00\x40\xfd\x22\x32\xf2\x54\x3c\x01\xab\x02\x26\x68\xc0\x7e\x77\xc1\xc8\xde\xb6\x5f\xf7\x07\x27\x29\x7c\x3c\x09\x9a\x88\x0f\xca\xdc\x49\x31\xe2\xae\xd1\xca\xca\x39\x95\x15\x88\x99\x5f\x5c\xff\x9d\x41\xfb\xee\x7f\xaa\x92\x9d\xef\x5f\xd8\x13\x3f\x39\xef\x79\x33\x8b\x5f\xa8\x1b\x59\xf0\x49\x47\x57\x0d\x32\xca\x75\x92\xc4\x84\x2a\x4e\xec\xb8\xf8\x62\x37\x88\xb9\x8c\xe1\xd8\x8f\x14\x8e\x13\x10\x7a\xf9\xb0\x7f\x10\xda\x84\xf1\x7e\xa2\x5e\xc5\xa3\xa2\x5c\x03\x50\x9e\x74\xbc\xbd\x07\x5e\x87\x45\x41\xe0\xef\xec\xb7\x05\xf9\x95\xf9\xaa\x9e\xe0\x03\x40\x3a\xda\xfa\x75\x9e\xa0\x82\xbd\x96\xdd\xf6\x9d\xe9\x24\xfe\xbf\x83\xb2\x11\x52\x14\xfc\x4f\x22\x1a\x9d\x40\xad\xf4\xe7\x3b\x77\x4f\x7e\x11\xbe\x5a\xed\x9d\xed\x94\x46\x75\x4a\x7f\x7c\x22\x7c\x57\x7a\xa0\x1b\x8d\xca\x7f\xf7\x30\x7e\x59\x26\x80\xf9\xfb\x9f\x9a\xa8\xb4\x66\x86\xd9\x5d\x16\x18\x6e\x70\x2f\x1b\x83\xf1\xda\x1c\xd2\x4d\x60\xc8\xd3\x03\x00\x46\x66\x48\x4f\x37\xe2\x8a\x4e\xd4\x59\x92\xd8\xe4\xd1\xe7\x26\x69\xfd\x0a\x05\xfb\xf3\x39\x42\x66\x08\x18\x80\xb1\x7f\x75\x80\x9c\x59\x16\x94\x54\x26\x75\xd0\x4e\x0e\xb6\x07\x3c\x70\x8a\x7c\x4d\x87\x22\x60\xe6\x9a\x32\x29\x5f\xd6\x3e\x0b\x15\x42\xbf\xf3\x3e\x10\xc7\xfd\x1a\xf6\x52\x50\x23\x9f\x10\x55\x21\x6e\x2f\x38\x23\xe2\x7b\x58\xbb\x9d\x4e\xf6\xbf\xee\x56\xb8\xe5\x53\x89\xd6\x42\x99\x4d\xfb\x4f\xdc\xd3\x1a\xde\xe3\xc2\xf4\xef\x87\x03\x6f\x69\x4d\x70\x20\xed\xd0\x79\x30\x69\x0b\x90\x22\x37\x37\x55\xdf\x32\x36\xa1\xcd\x99\x16\xf7\xe7\x6c\x4a\x8a\x12\x92\x81\x4e\x90\x41\x38\x72\xd5\x92\xe7\xeb\x75\xac\x85\x74\x18\x52\x56\x34\x91\xff\xe7\x46\x19\xd3\x5f\x9f\x84\x9c\x85\x0a\x8f\x3c\x4e\x97\x32\x4a\x4e\x14\x7a\xcc\xa8\x18\xd2\x75\xe9\xf1\x44\xde\xd2\xc1\xa1\xa1\xb5\x3d\x45\x91\x0a\x43\xb7\x12\x2d\x6a\x98\xd1\x18\xf4\xe9\x1f\xab\x4a\x1c\xea\x35\x5a\x7c\x14\xe3\x34\x46\x91\x19\x13\xac\xd8\x02\x00\x72\x8b\x4f\xa0\x3c\x72\x10\x98\x49\x2d\xbb\x10\xe8\x48\x27\x69\xce\x3d\x62\x7c\x20\xfb\x70\xad\x39\x1d\xfd\x2e\x77\xd8\x21\x7e\xce\x56\xb5\x26\x30\x22\x64\xa8\xe5\xa0\xec\x7f\xa6\x60\x26\x4c\xf8\x02\xf2\x92\x46\xde\xbd\x5c\xd1\x3c\xc9\x52\x54\x15\x19\xf0\x6a\x0a\x63\x34\x58\x9b\x30\x41\xb3\x92\x41\x7d\x9f\xd0\xc1\x43\xd7\x4b\xe9\xe7\x71\x85\x0f\x47\x71\xf7\x06\xdb\x1e\x66\xcf\x7b\x86\xd9\xb5\xcb\x59\x58\x27\x56\x7f\x5d\xb1\xec\xdf\xaa\xf4\xdd\xa5\x15\x4c\x4a\xb4\x87\x43\x51\xb1\xf6\x01\xab\x2f\xdd\xbd\xc3\x18\x11\x76\x32\x26\x5b\x06\xb9\x3f\x3e\x9c\xab\x93\xe7\x0a\xd9\xe5\x33\x52\xf1\x99\x08\xbe\xb5\xd7\xe2\x0f\x37\xa9\x5a\x3a\x86\x00\xff\x91\x5d\x27\xa4\xe4\x21\x92\x1d\x8e\x09\x6f\x80\x00\x6c\x78\xa1\xf1\x3d\x3f\x07\x33\x9b\x7c\x13\x8e\xeb\x84\xe3\x5e\xc5\x04\xbd\x44\x52\x02\x30\xde\x4c\x4a\x98\x94\x4b\x5a\xc0\xf4\xd8\x27\x0b\xee\x2d\x89\x9b\x0f\x35\xf7\x55\x97\x65\x02\x7e\x95\x6a\x2e\x34\xb7\x8a\x53\x28\x04\xb5\xb2\xc1\xc3\x6a\xa8\xc3\x2d\x41\x3f\x20\x6b\x86\x11\xbb\x14\xe6\x18\x08\x02\x00\x39\x25\x68\xd0\x9f\x4f\xef\x79\x15\xda\x19\x6d\x76\x32\x5b\x26\xd4\x29\xaa\x4a\x2b\x45\xb3\x32\x00\x00\x30\x41\xaf\x2b\xa6\x2d\x72\xd5\x68\xcd\x4e\x5d\x59\xd6\xc4\x90\x02\xa8\x26\x2c\x18\x44\x18\x4b\xbd\xd6\x4a\x76\x6b\xbd\xe3\x51\x10\x14\xaa\x6c\xa1\xca\xf7\xb9\x27\x06\xdd\x54\xf3\xe3\xfc\xd5\x7c\x63\xbe\x50\xa1\xb5\x57\x58\x39\x16\x7e\x6a\x36\x1a\x97\x0c\x3c\x94\x4d\xa1\xba\x83\xab\x79\x43\x13\xe3\xa0\xbf\x16\x11\xd2\x11\xd9\x47\xe5\x7f\x6b\x33\x7a\xff\xaf\xab\x68\xf0\x56\xc2\xd8\xb1\xb5\x4d\xcd\x85\xa6\x56\x40\x2d\x3a\xfb\xf7\x22\xad\xca\xcd\x33\xf3\x3b\x2b\x97\x73\xa2\x91\xd9\x67\x12\x76\x41\x18\x24\xbd\x0b\x61\xba\xd9\x8c\xd8\x36\xa7\x52\x01\x18\xf5\xd1\xfc\xfa\x96\xd6\xd8\xe6\x5e\x68\xab\x72\x23\xb0\xc4\xe0\xe7\xd9\xa3\x14\x16\x76\x96\x22\x8e\x47\xfb\x97\x6d\xad\x6a\xaa\x89\x70\xcc\x71\x3f\x93\x77\xd5\x6d\x51\x76\x12\xfe\x68\x2b\xde\xc9\xa2\xc7\x32\x53\xd5\x05\x36\x02\xb6\x6e\x10\x3a\x44\xba\x2a\x4a\x62\x9c\xf2\xc8\x76\x7b\xd3\x85\xfe\xe7\x62\xf3\xf4\xd2\xa0\x77\x93\x22\x4c\x6c\xad\x62\xe0\x8d\x3e\x1b\x19\x75\x4e\x3a\xb6\x26\x2e\xa0\x60\xb1\x55\xe3\xc3\xdc\xd2\x48\xc3\x6f\x6b\xa9\xea\xb8\xdb\xbc\xc3\xde\xf9\x24\x3b\x4f\xac\x19\x8b\x25\xa4\x95\x9a\xea\xe3\xfa\xa5\xe9\x94\xbf\x26\xf0\xdc\x1b\xb0\x74\x3e\x48\xa6\x22\x02\xda\xdb\xf1\x03\x46\x4f\xc5\x1d\x11\x75\xaf\x50\x76\xd7\xe1\x71\xaf\xb1\x03\xb9\xdc\x54\x76\xa5\x25\x99\x7a\x29\xc5\x5b\x5a\x4c\x8a\x14\xda\xd7\x37\x4d\x7b\x1c\x3d\xfc\xc9\x31\xa8\xcb\x86\xf9\xff\x59\x13\x4e\xb2\xb9\x1a\x75\xf5\x38\xdb\x73\x6f\xa5\xf5\x71\xe0\x88\x7d\x1f\x03\x5e\x7d\x29\xfd\x9c\x00\x5f\xfe\xc1\x46\x73\xcb\x7e\x60\x53\x8b\xa1\x53\x5d\x5d\xd8\xc1\x94\xf6\xe8\xe2\x42\xaf\xf7\xfc\x86\x62\xf9\xf2\x94\x94\x80\x49\x25\x5d\xaf\xb3\x81\x44\xeb\x1c\x51\xa4\x69\xad\x3f\xff\x9a\xbf\x83\x01\x86\x8e\x8f\x09\x00\x70\x1a\xd3\xc7\xc2\x34\xa5\xde\x80\x16\xd8\x6a\x26\xdf\x2c\xa9\x69\x5b\x09\x93\x01\x23\x4a\x84\x84\xdb\xfb\xd8\xfa\x93\xd8\x71\xfa\xb8\xba\x12\x73\xec\xba\x9d\xa8\x77\xf3\x2d\xde\x97\x50\x7c\x10\x04\x39\x46\x49\x0f\xfe\xcb\xb0\x24\xc6\xb3\xfb\x08\x2a\x06\x5e\x75\x62\xc8\xca\xdb\x17\x49\x29\xde\xcd\xea\x91\xe0\x82\xfc\xe5\xc0\x78\xf6\x60\x0c\xea\x1f\x24\x2d\x95\x01\x20\xbc\x9a\x45\xe0\x25\x6d\xbb\x36\xf6\x0f\xc8\x5d\x4e\x7c\xa3\xed\x4d\xb1\xd0\xce\xad\x90\x63\xa3\x3e\xc4\x91\xdc\x7e\x92\x04\x52\xfb\xbd\xd2\x4f\xe3\x7b\xb4\xe3\xb7\xff\x9e\x6f\x7e\x9c\x50\x54\x14\x23\x37\xa2\x3a\xd8\x89\x9f\x11\xf6\x98\x85\x17\x1d\xee\xaf\x09\xfc\x92\xbd\x6a\x1e\x39\xfa\x6d\xf6\xe0\x6a\x71\x07\xb2\xd4\x04\xb2\x7d\x8e\xc6\x76\xb5\x64\xeb\x70\xc6\x72\x87\x0c\x19\xd2\x8b\x27\xb4\xcb\x0a\x03\x29\x63\x5a\x7f\x9c\x86\x28\xbc\xdf\x06\xb5\xd4\x58\x17\x61\x33\xff\x19\x42\x4e\x15\x11\xbc\xe6\x61\x2b\x67\xf9\xfe\xe5\x7f\xb5\x43\x42\x51\xf5\x14\xf0\x41\x2c\xa7\x14\x0a\x60\x84\x62\x9a\x28\xc2\x6b\x01\x0b\x16\x79\x2a\xab\x73\x67\xc3\x85\x69\xe0\x7d\x00\xf8\xd8\x01\x80\xe4\xad\x46\xc8\x16\x56\x0b\x28\x45\x61\x6c\x22\xd8\xd0\xe9\x5d\xee\x88\xcd\x33\xd1\xaa\x43\x35\x28\x76\xe6\x1e\xa8\xa5\xc1\x84\x43\xe7\x45\xda\xfe\xe1\x46\x33\x7e\x1e\xaf\xe2\x42\x07\x35\x18\x1a\x98\x92\x44\x46\x0c\x1b\xc4\x0d\x7d\xba\x5c\x0f\x0d\xf5\x02\xf9\xc8\x51\x80\x8e\x57\x11\x8e\x81\xc6\xd6\x67\x59\x21\x12\x07\x27\x87\x89\xa7\x96\x8b\x57\x58\x03\xe5\x00\xe5\x28\x01\x8c\xc6\xfb\x0d\xe8\x3b\x7b\x7d\x9e\x9c\x77\x46\x49\x2c\x6f\x2a\x6f\x91\x16\x78\xcd\x31\xbc\xd0\xb9\xd1\xa8\x3a\x2e\x59\x5a\xb6\xe0\xdf\x46\x0b\x56\xa4\xfc\xcb\xdd\x36\x59\x62\x14\x3c\x6f\xeb\xbf\x16\x34\x75\x18\x7c\xe1\xf7\x43\x46\x91\x30\xfc\xe9\xdf\x7a\x28\x14\x2e\x46\x01\xe7\x82\x1a\x6c\x1b\xef\x7f\x09\x59\xfe\x62\xe4\xe1\xbf\x5c\x48\x6b\x22\x1e\x2e\xd1\x4e\xf8\xaa\xe3\xeb\xe9\x41\xd3\x61\xcf\x23\xdf\x19\x52\x04\x36\x40\x0d\x10\x02\x7f\x00\xc4\x93\xff\xdf\x74\x83\xa3\x55\x7d\xec\x05\x6f\x7b\x5a\xf2\x1a\x8c\x39\xe6\xfa\x6e\xb2\x0f\xd7\x32\xa3\x80\x80\xa2\x50\xee\x5a\xfc\x03\xcc\xd9\xd2\xfe\x1c\xc6\x35\xf6\xb8\xc8\xe9\xc4\x22\x8c\x7d\xcb\x7a\xc1\x81\xab\x4d\x14\xea\xa2\x47\x7f\x3a\xa6\x6a\xb9\x73\x4b\xd6\x74\x88\x64\x9a\x5f\xfb\x2c\x9d\x4a\x7a\x2f\x48\x37\xaa\xfa\x46\x53\x2a\x34\x36\x3a\x36\x5c\xc8\xf5\xf0\x92\xc7\x72\x0a\x0b\xc6\x6b\xc9\xba\xb2\x2e\x29\x87\xd2\xe2\x6c\xb3\xbf\x89\xe5\x9c\xd9\x9d\x13\x5d\xc7\x72\x5b\x26\x2c\x84\x56\x26\x9c\xc7\x52\x68\xeb\x25\x15\x27\x76\x58\x76\x09\x71\x51\x8b\x7e\x18\xeb\x6c\x06\x20\x54\x88\xfa\xb1\x48\x51\xfe\x7c\x65\x71\x60\x60\xaa\x34\x99\xb8\x13\x24\x1f\x22\x3a\xc8\x00\x1b\x24\x86\xa6\x7b\x04\xfc\x95\x4d\x95\xb0\xee\x5e\x36\xbb\xb2\x5a\x15\xa3\xf9\x92\x48\x01\x98\x31\x43\x7a\x4e\x40\x28\x4d\xa5\x25\x83\xf2\x38\xc5\x25\x2d\xed\x99\x0f\x1f\x1f\x29\x06\xf2\xc8\xe3\xc7\xff\x36\x32\xb0\xb1\x4d\xca\xfb\x53\x52\x48\x25\x84\x27\x02\x19\xeb\xf3\xcb\x84\x22\xa2\x28\x25\xb5\xdb\x46\x27\xed\xcf\x2e\x57\xaf\x07\xa0\x01\xb7\x97\x87\x91\x0c\x10\xf4\x47\xbc\x5f\x91\x6a\x0c\xb4\xb4\x36\x45\x0f\xdb\xcb\xc9\x45\x5a\xfe\xb1\x89\x44\xa0\x20\xc6\x20\x30\x6b\x8a\x26\x64\x22\x9d\x14\xbf\x7c\x85\x91\x2c\xea\x8b\xb2\x50\x7a\xbd\xd1\xb8\xa3\xef\xad\xe9\xea\x74\x19\x7f\xf5\x8f\x4d\x3a\x36\x1e\xfc\xbc\x4a\x6d\xc1\x2b\x22\x09\x43\x9b\xfb\x2f\x44\x53\xc9\x69\xaf\xc3\xac\x91\x8e\x4f\xec\xaf\xb0\x53\x6e\x3d\x9f\x06\x32\x46\x9b\x5c\x75\x99\xe9\xed\xb8\xa0\xcc\xcd\x3c\xef\xae\x5e\xf8\xe6\xe1\x34\x4b\xc8\x1f\xea\xdc\x7d\x52\x5b\x47\x65\x29\x7a\x2e\x29\xb6\x44\xe6\x99\x3a\x84\xcf\x46\x19\x81\x56\x87\xbf\xa6\xa2\x42\x3a\x0c\xe5\xdb\xf5\x6d\x6d\x74\xce\x50\x9b\x43\x55\xc6\xe7\x16\x9f\x15\xde\x53\x82\x5a\xaa\x4c\x8a\xa6\x09\x6a\xd5\xcb\xf4\x3a\xa2\x4b\xf0\x1f\xf7\xc6\xe8\x64\xe6\x59\x3c\xd1\xe6\x84\xf2\x72\xbd\xf4\xf0\x3f\x99\x5a\x5b\x6a\xce\xf6\x5c\x10\x79\x38\xfc\x9e\x98\x73\xa8\x19\x26\x0b\xef\xf5\x64\xf9\xc9\xf2\x89\x00\x6d\x70\x27\x16\xe2\x47\xb3\x78\x2f\x3f\x10\x01\x00\x94\x45\x86\x16\x69\x50\x56\x7d\x64\xff\x19\x9b\xe1\x87\x61\x15\x71\xc4\x7a\x84\x1a\xbf\x72\x19\xc5\xf3\x8d\xeb\x9c\xf8\xa7\xf5\x61\xa2\xc5\x7a\x48\x51\x6e\x93\x74\xca\x04\xf2\x4b\xa6\xc0\xf0\x37\x61\x4d\x12\xb6\x57\x5d\x19\x41\x5b\x45\x8f\x06\x3d\x1f\x46\x06\x60\xe0\xec\x02\x57\xd4\x52\x50\x9d\xb8\xe5\xfe\x2d\x3f\x9c\x1f\x88\x5a\x92\x62\x7d\x99\x4a\x2b\x22\x81\xf3\xc8\x9f\xdb\xb5\x0a\xfd\x48\x1e\x0f\x3b\xa8\x09\xcc\xbf\xfd\x8f\xb0\x3c\xbd\x8a\x0f\x4e\x88\xbd\x0e\x4a\x8f\x3a\x9f\xe9\xf3\xa0\x21\x6b\xbb\x5c\x88\xbe\x16\x88\x23\x75\x1d\xbb\xe4\xc5\x03\xb3\x7b\xf4\xc7\x63\xfc\x7d\x2a\xe7\x1e\xc6\x23\xa7\x92\x22\x7d\x98\xe7\x9d\x2a\x25\x4d\xac\x4d\x1f\x01\x6e\x4d\x74\x55\x4a\x1f\xbe\xe3\x45\x66\xbc\x8c\x2c\xbd\x89\x8c\xdc\x13\x58\xbc\x1a\xea\xea\xd4\x71\x2d\x3d\xf1\xea\x3e\xc1\x5c\x48\xb4\x3a\x1f\xb9\x6e\x47\x5a\x0c\x1b\xe6\x34\x3a\x7f\x7c\xcb\xf8\xb2\xff\x70\x50\x97\xc7\x03\x0c\xac\x5c\x49\x92\x53\x8f\x96\x04\x7c\x3e\x01\xe1\x73\x28\xed\xcf\x79\xd0\x3c\xf1\xb3\x6f\xc9\x6d\xeb\x81\xa8\xb1\xf8\x72\xc7\x20\x60\xb3\xd6\xdb\x77\x65\x34\x5c\x73\x98\xbd\xfb\xbd\x08\xa2\xa4\xd7\x8e\x08\xff\xe8\x88\xea\xb1\x24\x56\x48\x54\xa2\x39\x02\x6d\xec\x23\xa2\x5f\x7f\xa2\x43\x86\x8c\xfd\x71\xc9\xfb\xcd\xf1\x83\x15\x66\xe9\x8d\xfe\xb5\x95\x22\xfa\xc7\x73\xe9\xbb\x9d\x2f\x3a\xc9\x98\xdd\x16\xfd\x1a\xa5\xed\x41\x2f\x22\x57\x7b\xa1\x81\x68\xa8\x1c\xc3\x8d\xdf\xf0\xda\x7d\x1a\xb6\x2b\x39\x18\x4a\x45\x82\x0f\xc8\x2d\xc7\x4b\xce\xb3\x13\xcd\x35\x5a\xc7\xea\xed\x66\x6e\x54\x05\x7f\xea\xc3\x15\xfa\xe4\x1a\x5a\xea\xea\xd5\xb4\xc2\x2a\xf8\x23\x59\x6f\x25\x3f\x73\x61\xa2\x61\x79\x91\x89\xe7\x85\xda\x56\x82\xae\xab\x29\xfd\xe9\xdb\x0f\x93\x69\xeb\x27\x91\xb5\x74\xd3\x20\xc4\x34\xd8\xd6\x6f\x5f\xfe\xa1\x7b\xfa\x63\xa5\xbf\xaa\x5b\xac\x7f\x29\xf4\x84\x17\x34\x92\x18\x24\xd0\x6f\xa6\x3c\x48\x48\xa3\x39\x08\x0f\xbd\x2f\x90\x92\x14\x8c\x5c\xce\xe1\x31\xe7\x71\xbc\xf4\x8d\x1f\xc8\x01\x28\x33\xe4\xa5\x17\x82\x29\x1a\x0f\x59\x61\xf0\x47\x9f\x9b\x40\x31\xfb\xdd\xb5\x95\xef\x6f\x8a\x79\x76\x6e\x13\x21\x10\x54\x41\x4a\xa9\x85\xd8\x46\x4e\x5c\x6e\xfc\xb8\x70\xc9\x3f\xab\x16\xcb\xba\x48\x84\xde\x7e\xf0\x91\x50\x8c\x77\x4a\xf4\x35\x03\xd3\x28\x77\xe3\xdf\xc8\xa7\x0f\x3c\xbf\xac\xc9\x3e\x30\x5d\x72\x10\x7d\x5b\xf6\x3a\x18\xb9\xa3\xd0\x55\xb9\x96\x55\x44\x5b\x08\xf9\x11\xa3\xd5\x20\x86\x83\x9e\xff\x56\x76\x02\x9b\x76\xf8\x84\xad\xdd\xbd\xef\x44\xee\x1e\xd3\xad\xf1\xfe\x00\x03\x70\x35\x08\x23\x5e\xa0\x14\x37\x8a\x11\x61\x6b\x39\x92\x8b\xbe\xca\xa9\x6d\x2c\x74\x4d\x4a\x3c\xbb\x57\x84\x76\x32\xb2\x25\x88\xfb\x66\x4c\x68\x3b\x16\xf3\x0b\xd4\xbd\xc7\x96\xb5\x57\x72\x92\x2b\x9d\x89\xbb\xa0\x19\xde\xc0\xc7\x49\x34\x92\xf9\x73\x44\x14\x73\xab\xb9\x2d\xf0\xb0\xb9\xe8\x6b\x77\xaf\x1f\x49\x80\x39\xb2\x35\xc4\x98\x75\x59\x2d\xa7\x03\xbe\xd7\x52\x8a\x68\x34\xcd\x48\x66\x4f\x6f\x4c\x04\xda\x75\xc6\xd7\x33\x3d\xf9\x59\x9b\xe4\x9f\xfa\x81\x12\x00\x90\x5b\x78\x0a\xe5\x11\x2a\xba\xf7\x84\xe2\x67\xdb\x62\x73\x46\x68\xbc\x2b\x9f\xe4\x28\x84\xdf\x64\x1f\x5a\xa9\xc3\xe0\x8d\x7d\x3b\xe7\x29\xbf\x8d\x9a\xf5\xa6\x39\x01\xa1\x85\xe1\xeb\xfd\xa0\xcb\x47\xf4\x91\xc8\x7f\x2f\xcf\x70\xe0\x1a\x1d\x28\x42\x0c\x4f\x05\xb7\xf3\xa4\x23\x84\xff\x76\x5f\x36\xb8\xce\x68\xb9\xf7\x41\xad\xa0\xe4\xa1\xb6\x67\xc7\x1e\x2d\x8e\x4b\x2a\x8d\x26\xef\xb2\x2a\x1c\x5e\xef\xfa\x5c\xbc\x1c\xb4\x9a\x78\xc8\x0a\x8e\xaa\x48\xb0\x03\x01\x3c\xea\xe2\x08\x39\xe3\xee\x52\x94\xbc\x2e\xdf\xe7\xdc\x8d\x97\x16\x1d\xda\xd3\x9b\xf9\xea\x26\x63\xc9\x92\xe4\x48\x85\x5c\x15\x63\x03\x1b\x5b\x1d\x8a\x0f\x35\xad\x3f\x4e\xfb\xc5\x63\x56\xbd\x29\x68\x34\xea\x04\x90\xbf\x9e\xa1\x48\xa9\x5c\x66\xe5\xde\x9d\xb3\x30\x5d\x32\x95\xde\x38\x6a\x87\x4f\x62\xfe\x21\x8f\x6f\x05\x39\x36\x69\xad\x44\x2f\xec\x99\xe5\x89\x43\xd6\xff\xc0\x00\x69\x52\xf3\xc1\x93\x44\xc3\xda\xbb\xdf\x4a\x3f\x9b\x78\xa4\x80\xff\x72\x99\x8c\xd5\x01\x76\x3b\xf4\x1a\x00\xb0\x14\x70\x9b\xc2\x56\x94\x3e\x0b\x9e\x3e\xae\x3a\x29\xad\xe4\x75\x8c\x03\x9b\xc1\xd8\xbf\x16\x38\x7b\x55\x6d\xb3\x72\x97\x4c\xbb\x45\x68\x7c\xf2\x8c\x3d\xa6\xde\x26\xca\x79\x8e\x49\x9e\x39\xbe\x7a\x1e\x0c\xb8\x50\x51\xae\x1c\x44\x0a\x52\xee\xe9\x9f\x17\xa5\x98\xb7\x3e\x64\x1f\xcd\xe9\x08\xba\xfa\xd7\x2f\x8c\xf9\xe9\x6c\x9d\x7d\x1a\xbb\xbe\x97\x73\x23\x70\x36\x1c\x15\x9e\x9f\xef\xf5\x9e\x17\x8f\x29\xd8\xb7\x03\x9d\x82\xa2\x5e\x26\x5a\x99\xb9\x0f\x84\x5e\x03\xa3\xbf\xbd\x99\x51\xf1\x3d\x62\xb2\xe4\x25\x99\x25\x64\xbc\xa9\x95\x42\x91\x22\x58\x99\x51\x43\x17\xb9\x71\xe1\xbf\x8d\x1a\xc6\x46\x1c\xb8\x6a\x6b\xb4\x27\x09\x6d\x6b\xd9\x21\x88\xf7\x46\xdd\xed\xa2\x20\x32\xd0\x1f\x46\xca\x0a\xb4\x31\x7f\x97\xf1\xe7\x99\x42\x4c\x13\xd1\x37\x7f\xcc\x50\xc6\x35\x77\x55\xea\x09\x87\x22\x1a\x5b\x48\xda\xee\xd8\x21\x75\x10\x0c\xf3\xac\xfe\x71\xda\x17\x78\x61\x5f\xb6\x8f\xd5\xc6\xf7\x87\x35\x1d\xd8\xe6\xfd\x45\x1a\x35\x95\xbe\x26\x34\x5a\xe2\x00\x51\x6e\xcf\x6e\x31\x29\x22\x88\x1f\xc6\x3f\xe5\x02\xa7\xaf\x3d\x2a\xe7\x57\x76\xe4\x9c\xe9\xdb\xd3\xb1\x6b\xec\x86\xb0\x4d\x0f\xb4\xe3\x29\x77\x82\xb7\x1f\x21\xb8\xa8\xb1\x5e\x5f\x74\x1b\x3e\x7c\xad\x78\xc0\xd6\x67\x6b\x3e\xe5\xc7\xdc\xe8\xeb\x37\x48\xe8\x39\xd8\xb6\x95\x39\xdf\x80\xf7\xef\x0e\xaa\x5d\xc1\x6a\xd8\x86\x43\x9e\x8a\xf6\xbb\x7f\xbf\xb9\xf4\x38\x76\x44\x0d\x7d\x04\x58\xc1\x51\xab\xe9\x40\x28\x4f\xba\xbb\xd3\x5d\xc5\xd5\x1a\x04\x1a\x55\x48\x55\x8d\x8d\x9d\x67\xcd\xf1\x2d\x64\xf8\x84\x15\xfc\x7a\x1e\x3b\x11\xce\xd4\x9f\x57\x56\xc2\x5f\xb3\x15\xaf\x57\xb8\x96\x9f\x39\x35\x06\xf9\xc1\x58\x43\xa0\x77\x06\x1d\x4d\x53\x83\xc2\xb7\xe4\xdf\x04\xd2\x06\x9f\x69\xf9\x4f\x1c\xed\x85\xa8\xf0\x71\x53\xbf\x9b\x6e\xbb\xc8\x3e\xba\xd7\xb7\x58\x6b\x1b\xf2\xfa\x27\xa2\x88\x06\x0b\x77\x17\x4a\x3c\x06\x99\x3c\xcd\xb3\x8b\xff\x3d\x87\x2b\x7c\x68\xaa\x4f\x4a\xc3\x38\xdd\x7a\x08\x6a\xe3\xf8\x03\x57\x05\xa4\x28\xe9\x68\xe1\xad\xbf\x5b\xb6\x0c\x48\x50\x2e\x3d\x8e\x24\xf0\xa5\xc0\xac\x17\x3b\xa0\xc1\x4c\x28\x00\x00\x24\x07\x64\xac\xf5\x7d\xc9\x3a\xbb\x5e\x4b\x27\xba\x83\xda\xc1\x66\x76\xf4\x3e\x2a\xb8\xc1\x58\x23\x0c\xa8\x14\x0e\xc9\xbf\x77\xa3\xff\x1e\x5a\x19\x25\x98\x43\x3f\xd5\x94\x72\xb7\x9c\xf2\x63\x6a\x74\x2e\x78\x31\xcd\x13\xda\x98\xaf\x3d\x3b\x8f\xc6\x3e\x3d\x24\xfa\x62\x0a\x18\x93\x76\xc6\x05\xc4\xd2\x45\x16\x7d\x50\x80\x57\xf2\x0a\x60\x22\x0e\xf0\xe2\xb0\x02\xef\x53\x78\xd9\x78\x44\x49\x90\xc0\x63\x3e\x3f\x49\xe2\x20\x0a\x7b\x77\xe9\xb5\x09\x29\xe2\x91\x00\x40\x95\x59\x7e\x88\x70\xa6\xe8\x1b\xe7\x79\x4e\x5c\x6e\x2e\x25\xc8\xbe\xce\xed\xc0\xab\xcf\xf9\x1d\xbc\x80\xe0\x29\x3e\x68\x7d\x00\x2f\xe2\x01\x25\xe4\x5f\x6d\xe4\x8f\x6e\x32\x36\x76\x28\x24\x70\xfc\x67\x6e\xec\xe5\x2a\x72\xab\xbf\x27\x70\x1f\xa9\x94\xd6\xa2\xc4\x54\xb1\xe2\xd3\x7a\x1a\xa4\x80\x1e\xbc\xfa\xa0\x4b\xe2\x59\xae\x71\xd4\x87\x3e\x0b\x06\xdf\xb4\x1f\xe2\xa2\x71\xf0\x51\x10\x19\x32\x90\xf3\x77\x16\x62\x24\x92\xc6\xfc\x3e\x69\xe8\xeb\x8b\xb9\xbe\xca\x9e\x1d\x83\x57\x8f\x15\x02\x60\x80\x34\xb9\x39\xe7\x5e\x65\x5d\xbc\xde\xdc\xe0\x46\x3c\x73\x22\xe3\x7e\x63\xaf\x98\xf2\x06\xab\x69\x80\x26\x1d\x2a\x86\x9a\x37\x1c\xf4\xf2\x01\x49\x7d\xfb\xa6\xab\x0c\x84\x8a\x76\xd5\xbd\xa8\x59\xfc\xf7\xb3\xae\xd6\x05\xb3\xa2\x3d\x7b\x47\x81\x2d\x7b\xed\x2e\x1d\xb5\x51\xe5\x74\x49\x14\xf8\x7f\xbc\x97\x57\x34\xdb\x0f\xfc\xf7\xbf\x89\x84\x20\xad\xad\x56\x25\x46\xd1\x58\xb1\x4a\xd5\x48\xd4\xa6\x46\xad\x1a\x35\x6a\x14\xa5\x76\x6d\x22\x54\x55\x6d\x35\x6a\xd7\xae\xd9\x2a\x4a\x6b\x6b\x51\x7b\x54\x8d\x9a\x8d\xad\x45\xad\x18\x21\xcf\xf9\xfd\x9f\xab\xe7\xe2\xb9\xfd\x9f\xf3\xb9\x7d\x9d\xcf\x7e\x9f\xf3\x06\x0c\x4c\x46\xbf\x55\xf5\x1e\x96\x0e\x2b\x8b\x5b\x82\xd6\x28\x90\x65\x94\x50\x0c\x8d\xfd\x1f\x78\x0c\x39\x0f\x00\x96\x8d\xfb\xbb\xab\x6c\x24\x42\xd5\x69\x13\xea\x14\x3c\x44\xa3\x34\x70\x06\xc8\xe8\xe1\xcd\xdc\x96\xa2\x96\xe6\xf1\x1f\xa6\x19\x16\x15\xb0\x4c\xb7\x9f\xf2\x47\x23\x04\x15\xdb\xe2\x51\x00\x08\x82\x26\x39\xe4\x8d\xed\x6d\x8f\x7a\x11\x2d\xfd\x89\x52\xdb\xc4\xbc\xb5\xb0\xd5\xd3\xbb\xdb\xed\x16\xce\xc2\x76\xd8\x7c\xda\x27\xf0\x9f\x43\x54\x0f\x86\x9a\x63\x3f\x65\x13\xdb\xea\x4d\x06\xa9\x30\x7a\x54\x34\x38\x50\x4e\x17\xd3\xa8\x7d\x31\x58\x60\xd5\xb0\xa7\xd6\x42\xc9\xe8\x20\xa1\xae\x0a\x26\xb9\x7f\xb9\x78\x1b\x6f\xa0\xe5\x1d\x84\xb1\x41\xc9\xf5\x0b\x9b\x71\x04\xbd\xfb\x61\x1a\x6a\xc9\xf2\x37\x7d\x18\x7a\xe8\x64\x5d\x44\x8f\xe9\x11\xf8\xb6\x57\x76\x83\x78\xa3\xfa\xc4\x0f\x40\x3f\x4d\x8b\x4f\xab\xf5\x60\x6e\xf3\xf2\x5f\x3c\x6b\x5d\x2d\x3d\x0e\x56\xc7\x2c\x16\x60\x74\x33\x31\x31\x89\xda\x85\x9c\x39\x35\x16\xdc\x77\x02\xea\x96\x94\x56\x8d\xd5\xef\x40\x1e\x29\x01\x92\x8c\x42\x40\x74\x52\x9d\x14\x72\x73\x7d\xc3\xbe\x57\x43\x3f\xb9\xc5\xed\x74\xb2\xaa\x6c\x23\x30\x43\x74\xe8\x09\xed\xb2\x9d\xef\x01\x05\xeb\x10\xae\xd5\xa2\x3e\xed\x5a\xed\xcf\xa3\xe7\xdf\x1a\xfb\xb3\xe5\x3d\x34\x18\xa1\xa9\x51\x1d\x48\x2c\x6e\x39\xe2\xb6\x23\x26\x44\xf9\xec\xf4\x65\xcf\x49\x51\x34\xb9\xc9\x1e\x01\xb0\xc9\xa2\x7a\xf6\x65\x6f\xed\xdb\x84\xfb\xc9\x1e\xdc\xa9\xbc\xf7\x97\x28\x92\x18\xea\xf3\x5a\x3b\x6c\x1d\xfe\x16\xef\x20\x9a\x9f\xce\xac\x75\xeb\xd6\xab\x1d\x1e\x60\x8d\x02\x49\x88\x00\xdb\xc2\xf8\x82\x40\x2a\x14\x69\x3f\xa8\x13\xe5\x2a\x60\x15\x4e\x06\x0d\x0a\xa5\x6b\x56\x8d\x31\x79\x38\xdf\x2e\x12\x30\x50\x56\x2b\x3a\xbd\x35\xbf\x2d\x13\xfa\xee\x87\x69\xe4\x67\x86\x7a\x2e\x13\xdf\x7c\x49\x03\x18\xbc\x42\x1c\x67\x1d\xc1\xfe\x58\x55\x96\x5c\x20\x1a\xda\x2b\x7c\xd9\xf0\xd9\xf4\xec\x27\xa1\x6b\xca\xfa\xd7\x77\xd2\xc4\x64\xe9\xf1\x17\x73\xfd\xd3\x1a\xde\x3e\x9a\x66\xfe\x03\xa7\x32\xd2\x2d\x51\x47\x05\x57\xb9\x8a\x93\x7d\x21\x82\xec\xff\x08\x55\xc7\x9f\x43\x06\xad\x0d\xe2\x75\x0f\x62\xa0\x15\x08\x0e\x88\x00\x7d\x60\x4c\xcd\x9d\x7d\x55\x95\xb0\x0f\xd5\xd6\xa7\x5b\x4e\x3b\x9c\xfe\x57\x87\x6a\x39\x40\x43\x7a\x67\x79\xa5\x20\xac\x43\xb7\xd1\xca\xba\x9f\x62\x80\xc7\xc7\x8d\xcb\x8d\xc8\xa3\xb5\x32\x19\x3e\x67\x0a\xdc\xe2\x75\x10\xb0\xd7\x17\x93\xae\x75\x2f\x1b\x12\x2c\xf0\x15\x41\x5a\xa2\xf2\x3e\x49\x43\x66\xa4\x4d\x2f\x84\xe2\x3a\xe3\x5b\x52\x54\x31\xd2\xdd\x36\x0f\xdd\x9d\x4f\xa7\xfc\xeb\x6a\x6b\x27\x1b\x6c\xbe\x7f\xfe\xc3\xc9\x51\xf6\xe9\x65\x94\x4e\x76\x1f\xa7\x81\xf9\xfc\x40\x20\x79\x59\xdc\xa6\x9c\x34\xf2\x82\x9d\x0c\x00\xb3\xc0\x12\x80\xa3\x15\x5c\x4c\x56\xda\x05\xc2\x76\x18\x98\x01\x7b\xb4\x2a\xe4\x50\x9a\x8c\x63\x62\x48\x82\xe2\x14\x80\x95\x98\xa8\x90\x31\x43\xd3\xc5\xd9\xc1\xd6\x8b\xae\x88\xa3\x84\xcd\x09\x52\xf1\xae\x8b\xc5\x06\x4d\x84\x38\xa7\x7c\xf8\xae\xcb\xd8\x29\x59\xc9\xea\x49\x98\xf5\x07\xbc\x40\x8e\xae\xa7\x96\x0a\x52\x0b\x8e\xe9\xfa\xc7\x96\xc3\x5c\x16\x09\x29\xa2\x4b\xb2\x2a\xe2\xdb\xba\xa9\x2d\xbc\x5c\x09\xe0\x82\xaa\x2b\xc4\x5b\x1a\xb3\x43\x7d\x4a\xde\x86\xc9\x12\x3e\x7c\x32\xd1\xf3\x30\xa2\xfe\x59\xbc\xeb\xc7\x6c\xa5\xe6\xa6\x20\x76\x9b\x7c\x2c\x6e\x5d\x4e\x7a\x53\x16\x23\x0f\x4c\x7b\xf2\x82\xbb\x76\x35\x0e\xef\x44\xe4\xfb\x41\xa0\x1d\x4d\xc5\x31\x38\xe7\x6b\xef\xcb\x61\x7d\xbe\x1a\x62\x92\xfb\x81\x1a\xe6\x97\xfd\xa6\xc7\x95\xfe\xc4\xea\x5a\x4b\x6e\xe1\xff\xa6\x05\xbb\x19\xe3\x16\xa0\xab\xf4\x74\x93\x54\x16\x6c\xbe\x5b\x1b\x1e\x58\x72\x34\xe6\x34\x56\xdd\xe1\xc9\x93\xb4\xc6\x80\x91\x40\xdf\x88\xb3\x3d\xec\xb6\x57\x58\x50\x1e\xdd\x53\x0e\x77\x16\x5b\x9c\x1f\x08\xf1\x6b\x7e\x77\x59\xb1\x39\x51\x2b\x84\xaf\x99\xd0\x69\xf9\xad\x8f\xad\x97\xbe\xbc\xec\x35\xb3\x20\xaf\xb5\xfe\x6a\x68\xa7\xc0\xb1\xe6\xc4\x00\x74\x7a\x6d\xd7\x84\xc0\x49\xf6\x06\x40\x0e\x1e\xc4\x8b\xe4\xb8\x8a\x2e\x58\x64\xf2\x14\x81\xd4\x89\x59\x06\xd9\xdf\x39\x4f\x33\x3b\x96\x5c\x1c\xfc\x5c\x25\xbd\x19\x9c\x25\x59\x8c\xb4\xf5\x41\xf9\xff\x42\x85\x93\x85\x08\xe4\x8d\x83\xb4\xe3\x8b\x17\xaf\x86\x23\x7a\xa3\xa8\x36\xdf\x46\x48\xf3\xe0\x1e\x2d\xa5\x78\xd3\x14\xe5\x9b\x7e\x6a\xef\xdd\xe3\x54\x92\xc9\xbb\x23\x69\x66\xa3\xf0\xbe\xcd\xd4\xf5\x5d\xbb\x2b\xe5\xe1\x15\x81\x3e\xc9\xe4\x82\xce\xd7\xc3\xaf\x52\x70\x96\x12\x17\xe4\x73\x41\xd9\x2d\xf2\xf1\xc4\xe4\xf1\x5d\x39\x06\xd0\x98\x01\xc6\x86\x8f\x87\xe4\x36\x22\x6e\x74\x8a\x6d\x87\x7f\x55\xc5\x34\x8d\x6b\xce\xde\xc9\x41\x81\x45\x12\x45\xdb\xda\x52\x03\x09\x0d\xf3\x7f\x64\x7d\xae\x5a\xe6\x1d\x2a\xde\xe3\xb9\xcf\xb8\x27\x97\xec\x68\xc6\xd0\x5e\xf5\xa0\xd3\x46\x11\x35\xa3\x1c\xf6\xde\xc1\x43\xc6\xf7\xa9\x0f\x8a\x60\x0d\x02\x5d\x54\x16\x7c\xf8\x06\x00\x7a\x59\xeb\x6a\xb1\x9d\x54\x6c\xf3\x1b\xbd\xad\xde\xbd\x3d\x36\xb4\xe5\xd6\xbe\xaf\x07\x0f\xa8\xd6\xe2\xb7\x4d\x08\xd9\xd0\x17\xa1\x96\x74\x1b\x0f\x51\x7d\x5d\xe6\x19\x7f\x73\x99\x73\xfa\xb7\xf4\x16\xce\x53\xc9\xbe\x65\x67\xed\x7f\x56\x5b\x42\x3b\x42\x00\x07\xc0\x88\x1c\x91\xcf\x4f\xcd\x6b\xfb\x40\x0f\xc3\x76\x55\x8e\x15\xac\x8e\xb9\x66\xfd\xeb\x7b\xdb\xe5\xd9\xb3\xb5\x5f\x81\x1a\xe6\x9d\x75\x9d\x65\x2a\xda\x80\x58\x8c\x5b\x50\x2c\xa9\xf0\x2d\x55\xf8\xc7\x54\x62\x18\xa9\x69\x45\x41\xa1\x2f\x50\x46\x83\xe1\xa9\x27\x2f\x65\x8a\x02\xb8\x28\x36\xe2\xe4\x54\x42\x2e\x22\x2f\x81\x01\x1e\x76\xa8\xe0\xfe\x49\x23\xa4\x21\xdc\xea\x53\x3e\x75\xa1\x93\x82\x53\xd5\xad\xfa\xe7\x77\x34\x7a\xe6\x27\xa3\x8f\xe7\xe3\x7a\xdb\x6a\xbc\xbd\x73\x35\x1f\x3d\x4c\x8f\xbb\xfc\xf8\xd5\xe4\x6b\x4f\x91\xda\x3a\x95\xf2\x67\xa3\x0b\x3b\x4b\x82\x49\x47\x08\xc0\x0f\x95\xbe\x35\x82\xd1\x5e\x7f\x6f\xa8\x8a\x49\x14\xc4\x10\xea\x4f\xb6\xf4\xd6\x26\x65\x9f\xd5\x2d\xa2\x66\xfb\x39\x92\xd7\x2d\xf5\x7c\x7b\x18\x52\x70\x9c\x06\xcd\x8f\x2b\x49\xeb\x2c\x52\x01\x1e\x95\x4b\x61\x4d\xe6\xbe\xfe\xa8\xf4\xc5\x3a\x93\x65\x15\x0d\x20\x2a\x75\xa9\xfc\x11\x00\x40\x3b\xa5\x7c\x68\x22\x11\xdc\x54\xec\x17\x6d\x2a\x4a\xa5\xfa\x47\xdf\x1a\xb3\x5a\x2d\x26\x6a\xad\x2a\xb7\x3c\xc4\xea\x27\x77\xb3\x94\x42\x53\xb5\xea\xa4\x87\x9e\x5e\x32\x24\xdf\xcb\x5d\x24\x3b\x57\x9f\x2e\x92\x57\xd4\x09\xeb\xf8\x3e\x01\x5f\x05\x90\x98\xad\x12\xc0\x68\x97\xde\x0e\xb9\xa6\x32\x48\x0b\xa0\xad\x20\x51\xdf\x23\x14\x79\x31\xcb\xfc\xe1\xfe\x8b\x9f\xcf\x7b\x9e\x1d\x5b\xbe\x72\x3f\x92\x67\x52\x7d\x73\xd8\x7a\xef\x36\x23\xa0\x3a\x25\xbc\x57\x50\xf2\x2f\x9f\xcb\x81\x94\xff\x94\x65\x5e\xdc\xdf\xe7\x69\xb3\x1b\x54\x54\xcf\x51\xc1\x05\xad\x05\xe3\x4f\x33\xbb\x5e\x5f\xed\xb9\xc4\x2f\xaf\x9f\xfa\x07\xb0\xa7\x43\x57\xb5\x3e\xdb\x0d\xbc\xaf\x62\xb3\xe8\x6a\x43\x5b\xde\x38\x6d\x2a\x69\xb6\x75\x36\x3e\xf9\xf9\xb8\xeb\x91\x4e\x68\xef\xfe\xb4\x99\x8c\x5e\x5e\x51\x8a\x03\x6f\xad\xc4\x81\x26\x38\x6c\x66\x9f\x5c\x8b\x58\xac\x22\x7f\x19\xc9\xf8\x95\x08\x1c\x80\x92\x20\x6b\xbf\x07\x3c\x17\xe2\x6e\x82\xe1\x1b\x47\x90\x28\x15\xa4\x0e\xff\xca\xce\xeb\xa1\x3b\x1e\xee\x6b\x6d\xad\xb3\xa3\x3b\xe5\x39\x1b\xa9\x6d\x9f\xd8\xb1\xda\x38\x9c\x51\xe0\x52\xf9\xef\xa2\xcf\x0c\xa4\x95\xbe\xfd\xf0\xc0\xa4\x23\x59\xa2\xb7\xf5\x2a\x9a\xd0\xfb\x0d\x73\xbf\xa6\x03\x3d\xd2\x81\x64\x40\xfb\xde\xcf\xfd\xf9\xd2\x3f\x26\x99\x8e\xdd\x58\xcd\x87\x99\x18\x66\xf1\xdd\xba\x07\x62\xa8\xed\xfe\xed\xf3\xf8\xe8\xb5\xa9\xad\xd9\xa1\x92\xf4\xb3\xb4\xaa\x81\x85\x9f\x14\x67\xde\xb2\x8d\x23\xb6\x7a\xeb\xb7\xf5\x1c\x43\xef\xec\x5e\x9c\xb7\xb7\x19\x5d\x2c\xf2\x9e\x02\xb7\x7c\x5b\x80\x4c\x3a\xdc\xe0\xfa\x35\x82\x02\x1b\x16\xf2\xf5\x15\xf4\xdb\x27\x6a\x6e\xda\x88\x4a\x99\x8b\xd9\xd6\xa1\x39\xd9\x5a\x93\xa3\x8c\x23\x9c\xde\x37\xa5\x95\x9b\x2a\xda\x60\x3d\xcc\x6a\x42\x51\x8c\xbe\x85\x3c\x59\xed\xdb\xa1\xf2\xcc\xc8\x99\xfe\x27\xda\x9d\x65\xbb\x1e\x0f\xff\x54\xaa\x22\xeb\x08\xc3\x6f\x1d\x72\x6f\xf1\x1f\x04\x67\x5e\xe5\x65\x6a\x48\xef\x78\xa9\xcb\x1c\x2f\x7b\x19\x17\x85\xbb\x91\xde\x20\xb7\xb4\x8d\x86\xaa\x26\x8f\x4a\x56\x4b\x83\x5a\x9d\x2b\xfd\x3f\x8a\x05\x77\xc3\x36\x9e\xc4\x22\xcd\x62\x20\xcc\xc3\x0f\x15\xd4\x14\x4e\xbd\xc7\x2e\xa7\xc2\x43\xcb\x8e\x33\x32\xe9\x70\x5f\xb1\x20\xcf\xe8\xb8\x9b\xe0\x2e\x77\xfc\x5b\x58\x4c\x34\xa4\xee\x95\xa8\xdf\xd1\x82\xd3\xce\x93\x4f\x09\x83\xb2\xba\xf9\x6b\xe8\xdb\x7b\x56\x49\xf3\x21\x11\xee\x66\x0c\xf9\x0d\xd2\x97\x86\x93\x70\x25\xc5\xfe\x13\x7d\x59\xda\x9d\x4b\xeb\xe1\x27\xea\x5f\x3b\x0a\x42\x22\xb0\x32\x94\xd1\x7f\x51\x9a\xd9\x6e\xe2\xdb\xfc\x0a\xda\x70\xe5\xb3\x83\xa6\x99\x73\x2d\xb1\xb0\x1e\x88\xa1\x19\xa7\xc5\x71\x90\x89\xcd\x43\xd7\x77\xb2\xb4\x8d\xde\x53\xfb\x33\x95\x41\x18\x1b\x03\x48\xf3\xac\xcc\xd9\xc9\xf5\x4d\x8d\x46\xe9\xcb\x8f\x74\x35\xb7\xc8\xbf\x88\xb5\x32\x4a\x7b\xe6\xae\x4a\x98\xfa\x37\xf4\xb1\xb8\xdb\xa0\x76\xf4\xe3\x41\x7a\x06\x7a\x56\x5a\x9a\xec\x78\xfe\x97\x38\x7b\x7d\xcc\x4f\xc7\x57\x36\x33\xfd\xad\x47\xbf\x23\x4e\x27\x73\x8a\x44\xde\xc2\xe4\x6c\x54\x46\x70\xbd\x5f\x29\x2c\x59\xf2\x3f\x49\x5f\xbe\x77\xa2\xe4\xa4\x32\x0f\x7f\x6c\xdf\x79\xbb\x82\x33\x82\xa2\x8c\x89\x22\x32\xaa\xe3\x3d\x29\xc2\x4b\xf0\xb7\x61\xbe\xf2\xce\xe3\x97\xf0\x40\x37\xae\x48\xe5\x94\xb1\x91\x20\xdd\x76\xf3\x5b\xac\x66\x1c\xb3\x16\x63\x86\x4f\x9d\xac\x8e\x73\x36\x27\xbe\x70\x94\x8d\x08\xe3\xab\x7e\x6b\x87\x4b\xf3\x83\xda\x1f\x9d\x85\x1f\x2f\xfc\x9d\x25\xef\x39\x8f\xcd\x2c\xa9\xaa\x1f\x80\x14\x36\xc4\x8b\x44\x0d\x81\x41\x2a\x67\x83\xe1\x88\xd7\xf3\x20\xbb\x5c\xdc\x7b\x53\xcc\x74\x00\xbf\x05\x5a\x68\x8b\xba\x0f\x8c\x31\xa5\x73\xfe\x77\x94\x3b\xf8\xa4\xf6\x8f\xd3\x82\xf9\xfb\xc9\xca\xa6\xbb\x4b\x8f\x92\x00\xa5\xb2\x3a\x2e\x83\x66\x82\xf0\xfe\x87\xea\xbd\x17\xf7\x72\x95\x85\x2c\x3b\x53\xab\xf1\x5f\x3e\x9a\xf8\x6e\x73\x33\x29\x15\xbf\x8a\x28\xa7\x67\x4b\xd7\x94\x3b\x16\xa3\x90\xb3\xa1\xeb\x2c\xef\x51\x0a\xca\x4b\x6f\xc9\x70\xd8\x63\x9a\x3f\xe7\x28\xdb\x4a\xfb\x9c\xde\x6a\x3d\x39\xa5\xed\x7e\xa4\xfe\xd3\xd1\x5f\x37\x5f\xa9\x0c\x7a\x98\xce\xdb\x67\x22\xd0\xc7\xbb\x19\xf3\xd8\x41\x81\xbf\xac\xae\x2d\xfb\xe0\xd2\x21\x2e\x0c\xb4\x01\xcd\xa4\x30\x00\x72\x98\xf8\x62\x71\xce\xbf\xc6\xca\x61\x31\x6b\x50\x07\x16\xec\xbe\xf8\x8e\xa5\x78\x4b\x5b\xea\xc5\x99\xb6\x51\x6b\xfc\x1d\x88\x58\xce\xfb\xfd\x25\x3b\xcc\x6a\x63\xef\xd7\xe8\xa2\xd8\x5e\xf7\x78\xe5\x6a\xf6\x90\x27\xca\xeb\x7f\xdd\x59\xe7\xb4\xe7\x61\x56\x9a\x23\xec\x31\xaf\x70\x84\x97\xac\x3d\x07\x8c\xfc\x17\x39\xc7\xd3\xe5\x71\x4f\xf6\x34\x24\xce\x5c\x28\xc9\xd3\x7b\xd9\x4a\x26\x53\x4f\x82\xec\xaa\x4b\x6d\x6e\xce\xf6\x07\xf5\xd8\xcb\xc6\xe1\x16\x7e\x50\x04\x19\x31\x38\xe4\x52\xd7\xa9\xde\x70\x00\xd6\xdf\x7d\xc4\x04\xe9\xba\x29\x59\xf8\x5e\x0e\xd1\xd9\x88\x90\x9b\x47\x1c\x28\xf4\x54\x31\x99\xcc\x31\x5f\xc0\x6b\x70\xd2\xa3\x5c\x3e\x6a\x5e\x64\xdb\xbe\x16\x23\x68\xcc\x1d\xdf\x1b\x49\x9d\xf2\xc5\x7a\xd2\xa3\xed\x43\x6e\xe8\xb9\xc5\xbd\xf6\x4a\xa8\xef\xac\x6b\xda\x08\x9c\x11\x99\xa4\xda\x28\xf7\x9c\x43\x70\x5f\xc8\xd6\x7b\xca\xfe\xd1\x84\xe9\x37\x75\xa3\xf5\xec\x17\xec\xe1\x3e\x95\x4b\xdc\xa6\x22\x8b\x8d\x93\xf6\xe2\x9d\x72\x6f\xf1\x76\x79\xf8\x93\xc0\xf1\x11\x02\xfa\x29\x49\x29\x88\x5b\xf6\xe4\xdf\xb3\xa1\xe5\x2d\xeb\x9b\x0d\xcc\x3e\xd5\x35\x19\xe9\x16\x5b\x69\x39\x03\x3f\x45\x13\xe7\xc7\x29\x82\xee\xfe\xad\xda\xc9\xc8\xc4\xf1\x26\xf3\xff\xaa\xee\x7f\x91\x23\xc1\x88\xfb\xc5\x41\x5e\x2a\x12\xae\x0e\x3f\x5a\xf8\x3b\x1b\x0a\x38\x77\x2d\x55\x47\x08\x01\x4e\x5c\xcc\xc0\xfa\x20\x1b\x2f\xb2\xed\x1e\xba\xcd\x04\xad\xc3\xbf\x92\x6e\xb1\xb5\xf5\xe4\xce\x8c\x6c\xfe\x1d\xc9\xf6\x14\xbf\x99\xae\xe2\x5d\x3a\x10\x6e\x67\x18\x8c\x75\x48\x65\x2a\xf7\x53\x84\x7e\xc9\xe3\x7d\x66\xa5\xf6\x67\xba\x62\xfa\xc9\x46\xc8\x2e\x72\xfb\x3a\x97\x13\x49\xfd\x1b\x0d\x57\xe2\xcb\xd1\x55\x94\x1d\xa9\x3a\x9a\x2f\x4d\x58\x2f\x30\x24\xe7\xc1\xe5\x7b\xb9\xb0\x45\xed\x7c\xea\x2e\x6f\xb1\x09\x56\xb7\x49\x0b\xf7\xf2\x57\xb4\xee\x7e\xa2\x84\x0f\x32\xdd\x65\xdb\xf2\x65\x66\x2c\x7a\xa6\x99\x51\x6a\xa8\x3e\x70\x1a\xff\x2f\xf7\xcf\x52\x3e\x93\x27\x62\xc2\x78\x9c\x91\x2c\x1e\x71\xf9\xb7\x7a\x36\x9c\xb8\xa9\x7d\xce\x70\xe8\x71\xe5\xab\x15\xee\x36\x18\xda\x01\x95\x28\x48\xf3\xbc\x2f\xd8\x59\xdc\x82\x23\x24\xfb\x99\x6f\x96\x84\x6e\xef\x08\x07\xbf\xf9\xa4\xe3\x3e\x48\xdb\x14\xa5\x49\xdd\x71\x03\x64\xc6\xb8\xa9\x09\x58\x1a\x98\x13\x20\x28\x25\xa6\x60\xee\xd4\x3b\x35\xbc\xcf\xb8\x4c\xb8\x1a\x4d\xac\xdf\x71\xb6\x58\xc9\xe2\x9d\x8c\xd6\x9f\xdd\x5d\xb7\xd6\x21\x28\x95\x49\xde\x74\x03\x92\xb8\xc5\x62\xf2\x05\x2f\x14\x5c\xed\x73\xf7\x32\xe5\x74\xf3\x51\xe6\x19\x2e\xe9\xbd\x87\x85\xd5\x0e\xd7\xdc\x1a\x5e\xfb\xcc\xd4\x2d\x4f\xdc\x88\x9f\x70\x8c\x4f\x75\x7c\x9e\xfa\xdf\xf5\xa5\x3a\x44\x68\xf7\x31\x52\x53\x26\x7f\xcd\x4c\xcb\x3a\x9f\x80\x97\xd5\x79\x67\xfe\x23\xaf\x88\x5b\x57\x91\x12\xcf\xcd\x77\xe9\xf5\x1a\x29\x1f\x89\x75\xe4\x44\xd8\x7c\xa5\xe5\xc7\x42\x8a\xfd\x18\x75\xb5\xaf\xfe\x61\x00\xc7\x22\x9b\xef\x68\xac\xe5\x4e\x7d\xfa\xb8\x5b\x35\xd9\xb0\xce\x8c\xad\xd7\x5a\x44\x48\x32\xf3\x50\x43\x18\x3b\x52\x91\xa1\x5a\x1d\xe9\x90\x59\xbc\xa6\x25\x7d\xb9\x7f\xea\xd5\x01\x50\xaa\x63\xe2\xcb\xd8\x5e\x87\x6f\xf6\x85\x9b\xa8\xc2\xcd\xf2\x42\xc7\xca\xc2\xbf\xa8\xae\x83\x37\x70\x2e\xb5\x93\x1a\x5e\xb0\x19\x83\x42\xc1\x7d\x5f\x28\x05\x80\x5b\x71\x08\x90\xc3\xa9\xa9\x16\xf5\xdf\x9c\xa0\xe8\x8a\xc3\xa1\x2c\x30\x2c\x6a\xf4\xa5\xde\x85\x15\x39\x15\xec\x89\x4e\x92\xdc\xc2\x1c\x4a\xc2\xce\x39\xcc\x26\x7a\x34\xb1\x48\xa8\x5a\x12\x2f\x53\x71\x31\xac\x4e\x53\x5e\xf8\x14\x0e\x42\xbf\x84\xa4\x01\x86\x58\xbc\xe4\x88\x5a\x80\xd8\xed\x71\xa3\xaf\xd7\xe8\x58\xff\x92\xd7\x46\x76\xd3\xc9\x34\x41\x4c\x60\x09\x38\x5a\xc3\xb6\xea\x2f\xf8\xb4\x93\x2e\x0c\xf9\x85\x17\x79\xf6\x9c\x31\xf9\x80\x9f\xe8\x51\xde\x53\xf4\x6b\x24\x00\x73\x83\xec\xfd\xee\x22\xf0\x21\x1d\x87\xcd\x4c\xff\xe4\x53\x93\x38\xb3\x2b\xf9\x6b\x02\xa1\x89\x7d\x18\xa1\xe4\x02\x06\xe0\x0a\x0e\xd0\xdc\x88\xf6\x8c\x89\xaa\x99\x02\x60\x9e\xd4\x48\xc0\x01\x49\xdd\xc4\xd8\x91\x0a\x09\x01\xf6\x6e\x68\xea\xd3\x3b\xd3\x82\x45\xb1\x8e\x3a\xf4\x33\x8c\x10\x2e\xad\x8e\x8c\xdc\x75\x2a\xa0\xe3\xce\x02\x15\xbb\x26\xd8\xca\x97\xe8\xcf\x04\xa8\x00\x6c\x9a\xb6\x10\x18\x1f\x23\x1b\xc8\x56\x15\xaf\x72\x63\xec\x1d\x24\x55\xfb\x51\xf2\x4e\xb2\x36\x9a\x1a\xa7\xc7\x3f\xf6\x12\x92\x0b\xb0\xe5\x72\x9c\xa9\xf2\xbc\x25\x56\x9c\x73\xe0\xd4\xc3\xb2\x92\x72\xfa\x83\x8c\x08\x88\xdd\x55\xd2\x5d\xb9\x99\xe7\x0c\x23\x84\x98\x11\xa3\x3e\x38\x1e\xbc\x84\x67\xe7\x05\xa7\xd4\x7d\x25\x50\x3b\xf4\x2a\xee\x40\x41\x6d\x19\x07\xf8\xf6\x66\x23\x77\xd9\xc6\x8f\x93\x19\xc7\xd5\xc1\xe6\x66\xe6\xc5\x6c\x8c\x99\xb7\x60\xbe\x70\x69\x28\x35\x8a\x1a\x21\x7f\x1a\xd5\x97\x5a\x86\x15\x62\x95\xcf\x67\x92\xac\x17\x8f\x88\x23\x5d\x89\xc9\x25\x2a\xfd\xbc\x98\x4b\xb2\xe6\xa3\x0f\xe7\x96\x2c\xd1\x04\xcf\x99\x7c\x5d\x78\xb6\x70\xf1\x31\xbf\x56\x96\xec\xf6\x65\x69\x47\x85\x4c\xf6\x63\x66\x06\x49\x5d\x15\x58\xd4\xc5\x9d\x13\x77\xbb\x5b\x83\x89\x85\x36\x4d\xf5\x0e\x35\x27\xd6\xfb\x97\x22\xde\xe0\x2e\xa3\xe2\xf6\x0c\x62\x22\x97\xda\x8f\x3a\xee\x01\x36\xd0\x90\x81\xd6\x1e\xf9\xd9\xb3\x0d\x9d\x16\xbe\xdc\xce\xcf\x77\xb5\xd8\x5d\xfb\x35\x83\xc4\xb6\xdb\x9c\xa4\x23\x95\x87\xd0\x48\x23\xca\xb2\xf1\xca\xac\xce\xc8\xc4\x29\x8b\xf0\x33\x42\xf6\x51\xfb\xed\xbe\xb3\x17\xf8\x43\x37\x90\xae\xdb\x55\xc8\xe8\x9b\xda\xa4\x19\x48\xfc\xd7\x28\x4d\x7a\x90\x61\x4a\x4a\x5b\x0a\xcd\x00\x17\x2d\x58\xef\x86\xf2\xe0\x59\x83\xb7\x80\x1c\x1a\xdc\x2f\x92\xef\xc8\xa2\x65\x5c\xc5\x1d\x83\x3c\x78\xf5\xe7\xeb\x79\xf6\x2f\xe8\x6e\x64\xfe\x82\x33\xe9\x54\xdc\xec\x57\x7e\x53\x85\x33\xc6\x43\x1f\x40\xdc\xdf\x02\x80\x02\x20\xd3\xd1\x00\xd0\x4d\xe2\xe1\x05\x90\xb7\x0f\xee\xb8\x88\x37\xe3\xf4\xf0\x6f\xdc\xd8\x5a\x5a\x1f\xee\x3d\x83\x26\x37\xae\x7e\xa8\x1a\x7e\xf7\x72\x01\x80\xbc\x51\x86\x80\x16\xa4\xf1\xdd\xe2\xe9\xbf\xc2\xcf\x09\x96\x47\xe4\xfa\xec\x83\x46\xe8\x73\x56\xdf\x94\xcb\x14\x14\x48\x5d\x07\x4c\xe1\xbb\x8e\x60\x06\x3e\xd2\x72\x44\x53\xfb\x90\x2f\x2f\xa4\x79\x92\x98\x07\xee\x31\x82\x43\xd5\x9c\x42\x04\x2e\xe6\xf1\xfe\xd3\xa3\xa7\xc9\x0c\xe8\xc9\x3d\x17\x56\x7f\x6a\x64\x1f\x69\x49\x6a\x93\xcb\xa1\xb5\xb7\xbd\x69\xf6\x6c\x9b\x38\x95\xad\xec\xb1\xd9\x02\x87\x58\x00\xbd\x7c\x5b\x20\x58\x36\x58\xed\x89\x51\x01\x95\xed\x55\x0c\xc8\x53\x8b\x4d\x82\x3f\x89\x99\x46\x53\xe4\xb6\x30\x75\x4c\x05\xbb\x34\xd1\x7b\x81\x1b\xfa\x3b\x5b\x69\xc0\x39\x27\x13\x02\x13\x80\xf1\xf6\xc5\xf1\x52\xc7\x94\x0e\x0f\x24\xb2\xfe\xa5\x0b\x0f\x2a\xba\x5c\x28\x52\x3b\xb7\xeb\x70\xb8\x2e\x6f\x42\xee\x4a\x5e\x03\x6d\xcc\x90\x11\x78\xb0\xed\x33\x2c\xc8\xf3\x25\x5b\x0a\x57\xe6\x1a\x48\x93\x48\x49\x4f\x9f\x80\x9a\xcb\xc5\xfb\x2f\x95\x17\x3a\x41\x74\xa5\x42\xd2\x1d\x19\x83\xa9\x91\x7d\x55\xcb\x52\x9b\x3b\x8f\x2f\x04\x11\xd5\x0d\x61\xa4\x8f\xdb\xf1\xf9\x26\x55\xb6\xfa\x8c\xce\x00\x86\x42\x2f\x2e\x9c\x0d\x0c\x53\x04\xc6\xf8\x3b\x3c\x77\x80\x0e\x0e\xc0\x07\x44\x83\xd3\xe9\x89\x09\x04\x15\x45\x81\x13\xa8\xca\x52\x10\x8e\x24\x8b\x99\x7d\xba\xf2\xa8\x0e\xf8\x03\x75\xc2\x8f\x0e\x08\x16\xf2\x26\x8c\x1f\x34\x36\x1e\x78\xe4\xf5\xfd\x72\xef\xf1\x14\x67\xf8\xf9\x6a\xdd\x45\x49\xaf\xc3\x15\x79\x4a\xe5\xa7\xa4\xa2\x9d\xf0\x39\x10\x7a\xbd\x00\x68\x8a\x82\xd3\x83\x5c\xb8\x23\xb0\x79\xc0\xd5\x5c\x08\x76\xec\x47\x60\xb0\xf8\x3a\xa2\xa9\xa2\xbc\x32\x07\xb5\x71\x05\x93\xb4\x29\x50\x30\xae\xdc\x77\xa6\xaf\xd4\x36\x7e\xb6\x79\x3e\x95\xb5\x8b\x70\xba\x78\xa8\x85\xf4\x3d\xa5\x93\xbc\xb4\xfb\xa3\x7c\xf3\x1c\x61\x46\xf6\x01\xd3\xe0\x74\xfa\x71\x2b\x18\xdc\x58\x2a\xf8\xfc\xec\xc7\xb9\x2e\xe5\x0b\xf3\xf6\xfb\x8d\x24\x0a\xad\x62\x7b\xc8\xe0\xb8\x5c\xc3\x28\x27\x0e\x39\x11\x09\x49\x12\xcd\x35\x43\x88\xce\x22\x2e\x49\x16\x07\x82\xf9\xe2\xbf\xf2\xbf\x54\x94\x77\xbc\x5c\xf6\xc0\xd4\xc2\x62\x38\xc9\x1b\x3f\xdb\xf3\xc6\xdb\x79\x9a\xce\xf2\x43\x0d\x00\x2b\x6f\xca\x15\xa8\x6a\x38\xb7\x06\x7c\x6f\x94\xf3\x7d\xf6\xc1\x55\x0e\x4a\x71\x61\x3c\x6e\x55\x6a\xee\x26\x0e\x69\x84\x1b\x29\xfe\x92\x4d\xe4\x0e\x6b\xfa\x49\xfa\xfe\xc2\xcc\x12\xf1\x67\xbd\xe5\xef\xd3\xaa\xff\xfa\x92\x08\xa7\xa2\xf4\x38\xef\x9e\x24\x73\xe1\xc1\xb6\x34\x6c\x52\xfc\x49\xe9\xb4\x1d\x6f\x89\xb4\x23\x14\x02\x17\xb1\xab\x53\x74\xde\x97\x6d\x95\x31\xa5\x9b\x52\x46\xeb\x3f\x0a\x19\xfd\x69\x90\x7d\x8e\x77\xe9\xe9\x65\xa4\xa6\xc9\x6e\x25\xa1\xe4\xf5\x29\x0e\xe5\xd0\x96\x0d\x85\xba\x54\xb3\x0b\xad\x9e\xc5\xe7\x61\x84\xfc\x69\x2f\xc6\x78\x32\x09\xf7\x74\xf1\x26\x5f\x49\x91\x6d\x7d\xa5\xed\xb4\x39\xda\x4d\x9c\xeb\x19\x2b\xfc\x0b\xad\xfa\x1d\xb8\xc5\xf2\xa8\xdc\x50\xf5\x64\x7d\x43\x06\x51\xb2\x76\xbe\x7c\xcb\xff\x5e\xe2\x2a\x5a\x04\x87\x4c\xd5\x00\x6b\x9a\xb1\x54\xff\x6d\x39\x5f\xca\xa8\xac\xa6\xfb\x14\xbb\x53\x5a\x1d\xcb\xe1\x6b\x75\x36\xd6\xa5\xb4\x0c\x7b\x78\xe1\xe5\x1f\x9e\x32\x80\xf8\x78\xb9\xce\x76\x08\xe8\xb2\xdf\x55\x01\x1b\x26\x76\x8c\x3a\xa9\x8c\x75\xbe\x83\x6f\xa9\x8f\xce\x0d\x05\x07\xbb\x9b\x18\x0f\xe2\xd8\x83\x30\xa2\x28\xea\xbb\x3c\x38\x64\x2a\x4f\xc1\xb8\xf8\x63\x7c\x75\xe2\x4f\x0b\xe5\x30\xb2\x05\xe1\xf1\x97\x40\x8f\x89\xdd\x91\xbd\xc4\x1a\x52\x11\x2f\xf2\xf3\x56\xa2\xc0\xf9\x37\xb3\x4b\x00\xd7\x13\xce\x8d\x05\xa1\x9f\x2b\x74\x9b\x62\xf3\x3c\xc3\x78\x21\x30\x4f\xfd\xe4\x05\xbb\x9f\xb5\x7f\xd6\x5b\xae\xeb\x95\xb8\x53\x0e\xfe\x90\x93\x78\x9f\x83\xc6\x5b\x71\xe1\x35\x17\xd0\x01\xab\x9d\x29\x07\x9d\x8b\xf3\xe5\xe4\xbf\x19\x03\xc7\x19\xee\xf7\x5e\xdf\xd8\xf4\x22\xbe\xe0\x1b\xdc\x4b\xbc\x76\xa2\x35\xbb\x36\xb5\xbe\x4f\x85\x21\x28\xd7\x2e\xf5\x3f\xed\x7f\xf9\x1c\xd2\xc5\x17\x1f\x87\xe6\xa7\xbf\x42\xbb\x31\xcf\x10\x0d\xad\xea\x1b\x03\x03\xaf\x34\xdf\x1b\x63\x3f\x3e\x91\x71\xff\xbb\x7a\x31\x58\x39\x55\x71\x76\x90\xae\x41\x2b\x04\xa1\x5f\x21\xd1\x43\xa2\x8a\xf6\xd7\x9e\x0e\x07\x93\x36\x5d\xcf\xbb\x05\xd5\x1e\x4f\x98\xa8\x3e\x4c\x21\x98\x84\xce\x4d\x22\x12\x3c\x1b\x10\x1c\x17\x76\xd1\x88\x87\x97\xb0\x20\xa0\x34\x97\x81\x09\x32\xd1\x4f\x55\xf6\x02\x0a\xf3\xd4\x2b\xb1\x91\x8a\xec\x71\xea\x9c\x77\x61\x23\x69\xb2\xbc\x76\x05\xc9\x7c\x18\x40\xe2\x73\x44\x19\x31\x9f\x63\x9d\x77\xd7\x5b\x04\x11\x0f\xdd\x2f\x56\x2e\x8f\x7a\x16\xff\xae\xb5\x54\xe3\xbe\x73\x24\x29\xf9\x87\xfb\x3e\xb1\x91\x5e\x4b\xac\x0c\x73\x10\x31\x00\x06\x81\xbb\x59\xd4\x25\x0d\x2c\x09\x2f\x28\x7e\x13\x02\xb2\x0d\x3a\x8a\xc3\x33\x8f\x2a\x7f\x41\x3d\x7e\x19\xa9\xde\x25\x18\x4f\xca\x8d\xbd\x41\xd2\xd0\x80\x20\x81\xb7\x14\x04\x72\xb5\x05\xa6\x2f\x42\x4a\x2e\x2e\xf5\x3d\xa4\xc3\x48\x9e\x63\x61\x1b\x37\x5f\x46\x2b\xbf\xcb\xf1\x18\x5f\xb8\x2c\xee\x0f\x73\x26\x25\x2b\x79\xee\xe7\x49\xf0\xf2\x80\x70\x97\x0f\xc1\xff\xde\xe3\x68\xbe\x7f\x81\xa6\xa8\x50\x08\x00\x99\x90\x0e\xab\xa7\xce\xc2\xfe\xc4\xea\x2f\xb2\xa8\x1e\x5a\xa8\x86\xb9\xe9\xed\x31\xc1\xd0\x45\x98\xa4\x3b\x44\x37\xe8\x4a\x6e\xc6\x27\x9a\x9d\x48\x7d\x33\x8b\x7c\xb7\x6b\x73\xd7\xb1\x09\xf3\xa4\xb7\x5e\x89\x5f\xce\xba\xff\x84\x89\x4b\x76\xe9\x85\x8d\xc1\xc9\x01\x29\x88\xcf\xa4\x64\xa5\x51\x0a\xb4\x7d\xdc\xf2\x95\x98\x1d\xc6\x0d\x7d\x98\xee\x3f\x4a\x00\xf0\xd8\x6c\x69\x35\xf7\x25\xba\x3a\x79\x22\xa9\x9b\x74\x19\xd5\x58\x8c\xbb\xeb\xba\x60\x92\x39\x38\xed\x76\xa7\xfd\x48\x41\xda\xe1\x32\x44\x95\x6c\xf8\x59\xe7\xe4\xda\x0b\x13\xe1\xe9\x8c\x62\x8f\x12\xc4\x25\xd7\xbd\x7d\x9d\xd9\xdf\xd7\x58\x80\xa6\x2d\x0d\x75\x4a\x45\x40\x6a\x90\xde\x03\x88\x48\xfd\x0c\xd2\x6a\xa0\xe8\xe2\xef\xe4\x4f\xec\xf8\x37\x2a\x37\x64\x55\xb9\xb5\xed\x9f\x30\xb8\xfe\x9f\x5d\x0a\xe9\xe5\xc3\xb1\x40\x19\xf8\x29\xcb\xc6\x3d\x36\x5a\xea\xb2\x89\xb7\xb8\xc5\x66\x6d\xdc\x44\xe4\xf4\x1f\xaa\x49\xbf\xf5\x7f\x8e\x40\x18\xda\x23\x6a\x4e\x52\xe3\x94\x6a\xce\x92\x3f\x60\x41\x68\x02\x7f\x0c\x6e\x4f\x93\xa7\x19\x37\x8a\xe4\xb1\x7d\x96\x68\xc8\x63\x0b\xe0\xde\x51\x49\x07\x57\x97\xda\xb4\xfa\x39\xcc\x35\x5b\x4c\x79\xb0\xb8\x39\xb2\xeb\xd0\xf2\xc1\x00\xc1\x14\xd9\x2b\xd6\x0b\xdf\x03\x39\x13\x75\x8e\x33\xf4\xb5\x77\x9c\x2c\x57\xfd\x36\xd8\x8e\xbd\xae\x84\xdf\xc7\x23\x6a\xce\x92\x8d\x22\xc0\xb6\x7a\x6c\x4b\x57\x62\xd6\xa8\x8a\xa9\x23\x36\x1a\x3b\x03\x4c\x3a\xcb\xe9\xd1\xf0\xfc\xb5\x9f\xdb\x67\xb3\x43\x75\x5e\x8f\x5b\x4b\x17\x77\x68\x40\x7e\xe3\xc4\x44\xe4\xb5\x78\x64\x8a\xac\x9f\xf5\xcc\xf7\x60\xce\x44\x9d\xe1\x0c\xfd\x57\xc3\xa6\x46\xeb\x76\xd0\xf6\xa6\x7f\xfe\x05\x8b\x7b\xbd\x9f\x8e\xd4\xba\xbd\x9c\x4f\x92\x1f\x53\x42\x3b\x72\x92\xef\xcb\x22\x6f\x6a\xa1\x45\x0d\xd1\xdf\xf9\x6c\x7b\x86\xaf\x4c\x94\x35\x57\xfa\x5d\xf4\x0f\xd5\x79\x05\xb7\x96\x2e\x62\x79\x70\x83\xb4\x39\xfd\x05\x35\x07\x45\xb9\x2d\xe7\x27\x9b\xf8\xf3\x80\x8f\x4b\x6e\xb2\x57\xac\xd3\x04\x7b\x14\x9f\x1e\x16\xbd\x21\xb9\x50\x87\xf1\x35\x9f\x83\x46\x4f\xf8\x8a\x22\xc1\xb6\x57\xb5\xfe\x51\x02\x87\x2f\xa0\x42\x87\x41\x14\xbf\xb9\x23\xa4\x25\x3c\x43\xea\x43\xd2\x2d\xdd\xcb\x85\x65\x51\x3d\xd5\x95\x32\x17\x3f\x55\x2c\xcd\x27\xe5\x64\x04\x2e\xb8\x91\x7d\xe6\x4c\x06\x9b\x26\x43\x4b\xb6\x95\x4b\x4a\x41\x75\x4b\x0a\x0b\xff\xbd\x70\xfc\x94\x7d\xb4\xf2\xe6\x86\xca\x6e\x6c\xb8\x71\x77\x62\x65\xd8\xca\x1b\x0c\x08\xdd\x1b\xc7\xc6\xaa\x59\x21\x20\x27\x64\x8e\x46\x81\x13\x5e\x70\x8f\xba\xbd\xab\x4e\xaf\x31\x3b\xda\x96\x45\xf5\xe4\x96\xa4\x07\x99\xd0\x39\x47\x6b\x92\xe0\xbc\x13\xaf\x20\x49\x4a\xa9\x4f\xbf\xed\x13\xf3\x58\xe7\xa9\x38\x6f\x3c\x26\xa0\x09\xd7\x67\x2b\x9c\x3b\xbe\xc7\x2a\x6d\xcd\x26\x7e\x39\x4d\x35\x25\x8d\x95\x2a\x6e\xec\x68\x0c\x5f\xc9\x09\x59\xcf\x01\x69\xe1\xbb\xf7\x29\x98\xe5\x18\x40\x2e\x81\x60\x43\x6c\x01\x05\xee\xad\xf7\xa3\xd5\xeb\x25\x4d\xd6\x13\xb5\x0b\x28\x4e\x7f\xd3\xac\x59\xbf\x89\xa2\x40\x14\xf5\xb7\x42\x95\xbe\x7a\x24\x0c\xa6\xcf\xf0\x97\x6f\x60\x31\xb4\x6e\x49\x61\xfa\x81\xe7\x2d\x94\xa9\xc1\xa6\xd3\xd1\x8b\x68\xc5\xef\x1b\xbd\x84\xf3\x48\xc9\xf3\xdb\x87\x66\xfb\x10\x0c\x21\x31\x87\x41\x6e\x99\x17\x40\x1b\xc3\x0c\xd8\x46\xf8\xe8\x59\xc0\x63\x79\x14\xbd\x89\x52\x58\xdd\x81\xb2\x19\x61\xbf\xd0\xa3\xe1\xe4\x7f\x73\x16\x0f\xdb\xd3\xfc\x66\xc0\xa9\xaa\xd8\x5a\xc0\x9b\x3d\x19\x48\x31\x62\xaf\x97\xb1\x5e\x1c\x39\xcb\xe6\xbc\xb1\xde\x69\xda\x39\xef\xb2\x81\x1d\x7a\x2c\x39\x1b\xd5\xab\xc5\xee\xd5\x8d\x18\xda\xd2\x17\x5e\x61\x72\x9f\x7a\x15\x8d\xb8\x6d\xe4\x59\xa8\x16\xc4\x26\xa1\x8c\xdc\x62\x60\x7b\x2d\xc2\xc6\x42\xe1\xb5\x8b\xbb\x0a\x50\xa6\xd9\x3a\x83\x1a\x4c\xb3\x66\xf7\xff\xd6\x79\x05\x57\x97\x2e\x8a\xc8\xf7\xa7\x70\xd0\x33\xb5\x82\xfb\x1c\x31\xf4\xf4\x4a\x4c\x4f\xe7\x97\x5e\xfc\x82\x12\xff\x15\xa5\x5c\x04\x28\x6f\x23\x9a\x2a\x9c\xbd\x78\xbb\xd5\x15\x5c\x7a\x94\x6f\xb6\x29\xc7\x2e\x6b\xf8\x2b\x7b\xef\x2c\xad\xc4\xf2\x4b\xf2\x2b\xdb\x72\xf1\x24\xa5\x4b\x4f\xf3\xc1\x63\x20\xb9\x5a\x8f\xd6\xb8\x6e\x84\xb7\x56\xd4\xda\xd4\x6e\x7d\x4a\xcf\x9e\x35\x19\x28\x0a\x54\x33\x88\xd7\x2e\x48\x0d\xd3\x4f\x3a\x7d\xfb\x65\x96\x78\xdd\xa4\x7e\xe0\xba\x2c\xb9\x3b\x1e\xba\xee\x32\x09\x47\x81\x52\x1b\x15\x24\xb6\xbc\xba\x11\xa1\x22\xdf\x87\x94\x2b\x2a\x11\xf3\x17\x7d\xcd\x91\x60\x40\xcb\x31\x8a\x84\x33\x8c\xc2\x64\x99\x21\x77\xd8\xe5\xc2\x72\x80\x0d\x57\x4c\xf5\x64\xe9\x67\xdf\xa2\x47\x73\x4d\x16\x13\x1e\xcc\x5c\x8e\xdf\xf7\xde\x7d\x83\x3c\xe3\x55\x1d\xa6\xd3\x73\x5c\x92\x70\x91\x3d\x2c\x08\x4a\x3a\xfa\x94\x27\x22\xc7\x69\x09\xf5\x2f\x2b\x39\x88\xfe\xf3\x70\x48\x90\x1a\x87\xad\xbc\xc0\x4e\x9e\x8f\xee\xf1\x31\x81\x04\xef\x3b\x08\x8d\x08\x41\xd4\xff\xd1\x7c\x85\x62\xe5\xa4\xc1\x05\xeb\x5c\x37\xc2\xab\x2b\x6c\x5a\xad\x27\x3d\x44\x64\x1b\x1a\xe2\x7a\x63\x39\x04\x29\x99\xa6\x83\x81\xc0\x67\x90\xe4\x39\xfb\x71\x17\x97\x16\xeb\xe1\x93\xe0\x5f\x81\xbb\x9b\x4e\x63\x33\x62\x96\xd8\xe7\x46\xec\xb2\x7f\xb4\x7a\xc2\x5f\x4f\x2a\x71\x84\xad\x8c\x47\x80\x01\xf6\x37\x46\xb0\x88\xf7\x09\x1d\xe8\x5a\x4c\x16\x72\x83\x81\x02\x25\xb8\xe6\x6d\x64\xd9\x62\x3a\x39\x65\x96\x3d\x3b\x59\x58\x2d\x62\xce\x3d\xf0\x04\x24\xf1\x86\x7f\x7a\x9a\x86\x9d\x5d\x0b\x73\xa6\xdb\xe4\x6e\x22\x5d\xe1\xe4\xf9\x3e\xe3\xa0\x51\xf6\xd5\xf0\x9a\xf5\x4f\xe5\x43\xe6\xb1\x68\xa6\xbb\x3b\x09\xe8\xe8\xea\xe3\xb1\xc9\x44\x2b\x6d\x03\x00\x69\x2f\x55\x4a\x1f\xe3\xc1\xe3\x30\x2a\x0c\x51\x67\xa0\xb0\xf8\x63\x25\x15\x9a\x65\xfe\xd4\xf5\x95\xd9\xd6\x6c\xda\x6a\xfa\xb3\x12\x67\x61\x1d\xf3\x0c\x96\x43\xbd\x7d\x64\x2c\xa8\x98\x4e\x0b\x13\xa4\x2b\xd7\x88\xe2\xf0\xe3\x13\x42\x38\x91\x5a\x73\x5b\x3e\xb5\xa6\xfa\x13\x2d\xe5\x3d\xfa\xad\xed\xf3\x1c\x56\x08\xeb\x5e\x45\x88\xea\x09\x04\xc6\xa3\xec\x9e\x34\xa9\xaf\x84\x02\x0a\x78\xbb\xea\xf1\x40\x0a\x2d\x61\x54\x81\xd0\x71\x08\xf6\x50\xe2\x8a\x3c\x0f\x78\x68\xef\x5d\xc3\xdc\x0f\x56\x33\xce\xd9\x2d\x6f\xa3\x87\xa2\xb3\xfd\xde\xc3\x26\xb1\x42\x94\xf4\xd4\x48\x45\x35\x39\xd1\xf8\x29\x57\x27\x4f\x5f\x87\xd3\xf3\xe0\xdb\xe1\x1e\xca\xdb\xd7\x6f\xc5\x15\x88\xf5\x79\xe9\xcc\xf3\x13\x10\xca\xfa\xde\xff\x04\xab\x8f\x35\xde\xcd\xbd\x88\x46\xbc\x91\x13\x02\x92\x1e\x3b\xa9\xf2\x24\x31\x73\xc7\x5c\x63\xe5\x58\x63\x8f\x79\x85\x2f\x7f\x60\x40\x8d\x73\x0a\x12\xf9\x38\x7d\x5f\xa7\xf2\x9e\x9f\xe3\xbb\x77\xd5\xcc\xee\x8e\x37\xb7\x3f\xe0\x97\x27\xe0\xc7\xbc\x99\x74\x90\xe4\x39\x93\xe2\xf9\xf1\x80\x56\x57\xca\x17\x2f\xcc\x3d\x76\x91\x04\x04\x97\xd3\x45\x51\x34\xb7\x34\x64\x53\x6a\xcd\xb0\x1b\xa1\x98\xf0\xe8\x30\xb5\xf1\xdf\xdb\x65\x8d\x52\x30\x33\xd0\xf7\x46\x02\x03\x8b\xea\x0d\x10\x8d\xc0\x9a\x50\xa6\x46\xe1\x68\x2e\xa2\x95\x5d\xca\x21\x98\x8f\x0a\xe9\x37\xa7\xb5\xdf\xfe\x30\x65\xd5\x76\xf7\xf3\xea\x34\x65\x3d\x48\xb8\xdf\xdf\x24\x52\xeb\xe5\xfa\xfb\x67\xd7\x0c\x06\xdc\x87\xd3\xaa\xad\xde\x77\xea\x5e\x4a\xab\x60\xe7\x4a\x13\x25\xbf\x77\x3b\x5d\xad\x63\x31\xce\x0a\x1a\x8d\x63\x0b\x45\x8c\x5f\x21\xbb\xc4\x5d\xbe\xff\xbf\xcb\xc5\x83\x81\xdb\x3e\x8f\x54\x80\x82\x4f\x05\x06\x3f\x38\x93\xd2\x85\xd1\x15\x8f\x31\x91\x2b\xa3\xd8\x43\x2f\x16\xc0\x38\x8d\x49\x71\xbb\xce\xaa\xd3\x70\x9f\xb6\xd1\x42\xa4\xe1\x75\xc9\x7d\xcb\x87\xc3\xcd\x6e\x9d\xfb\x0f\x58\x3f\x5d\xd3\xbb\x96\xa3\xb9\x83\x2a\x9c\xff\x11\xd8\xe0\x4a\xa9\xb1\x1a\x17\x1e\xe0\x00\xd5\xf0\xe3\x2b\x9f\x8c\x2f\x58\x2e\xef\x4a\x6f\xa5\x54\x18\x3a\xe9\x8d\xbf\x40\x17\x21\x12\xff\x0a\x7e\x23\x82\x46\xf7\xf8\x8c\x00\xbd\x80\xbe\xe6\x64\x5e\x48\x17\x41\xa8\x19\xac\x75\x0a\xd6\x5a\x88\x38\x31\xd4\x39\xcd\xa5\x01\x68\xd2\x0a\xd8\x41\x32\x52\x35\x29\xa2\x72\x22\xed\xd3\xf7\xaf\xe9\xb8\xfb\xdd\xdc\x15\xa2\x35\xcf\x60\x89\x2b\x30\xf2\x00\x14\x21\x19\x14\xd4\x48\x68\xda\x9c\x63\xd7\xd3\xcd\xc2\x85\xd1\x48\xed\x49\x78\xbf\x06\x3b\xf9\xfd\x23\xca\xc9\x68\x06\x69\x77\x93\x7a\x0a\x54\x77\x40\x58\x08\x7f\xf5\x65\xa8\xe6\xad\x33\x10\x3c\x61\x9b\x4e\x7b\x6b\x5b\xea\x0c\x70\x3e\x49\x1e\xa0\xa5\x01\x56\xe6\xd8\xff\x4b\x8b\xac\xc5\xdc\xdf\x5f\x2a\xc7\x23\xc3\xb8\xaf\xd3\x80\x0c\x58\xf4\x7c\x15\x0b\x4a\x37\x8d\xa4\xb6\x51\x33\x50\xcb\x9b\x62\xf5\x69\xf7\x3b\x0d\x59\xbd\x6b\xee\x4b\x2b\x66\x19\x41\xc7\xca\x91\xf0\x56\xc8\xfa\x2b\x48\x52\x8a\xaf\xeb\xce\x97\x58\x67\x59\x19\xeb\x4a\x4e\x6c\xc9\x23\xa8\x86\xe3\x80\xf8\x54\x7c\xc1\xd8\x4f\xd5\x01\xc3\x28\x82\xd4\x32\x6c\xfc\x71\x13\x41\xf8\x52\xfa\x6e\xfe\xeb\x56\xc4\xc3\xd5\x44\xfb\xc3\xb1\x3d\x3e\x23\x6a\x3d\xa7\xbe\xe7\x29\x29\x82\xf4\x79\x74\x07\x34\x70\x1a\xa6\xe2\xe7\xb4\xd1\xf1\xdc\x3c\x58\x80\x19\x15\x53\xea\x55\xf8\x04\x34\x29\xc5\x3d\xc0\xcc\x75\xa3\x7d\xfa\xbe\xb6\x9a\xa5\xe8\xea\xf5\x46\xdb\x53\x91\x32\xef\x42\x29\x2c\x33\xea\x4b\x21\x06\x5c\x20\xc7\x76\x9d\x1a\x19\x01\x68\x26\xe1\x8d\x60\x21\x02\x0a\x96\x0c\x43\xe9\xc3\xdb\x57\x72\xa7\xfa\xd3\xc3\x8d\x1b\xf1\xda\x4d\x9f\x89\x6f\x3c\x29\x50\xad\x35\x9d\x74\xf1\x47\x42\x3d\xca\xdf\x47\x7b\x1f\x9e\xff\x4b\x0b\xbb\x6f\x15\x3e\xca\xaa\x24\x4d\xea\x33\xc6\x33\xb1\x4a\x32\xf4\xec\xd1\xc4\xfd\x66\xd7\xdc\xbf\xca\x1f\x08\xfb\x0d\xe6\xd9\xf4\xff\x17\x3e\x90\xc9\x8f\x62\x2a\xb8\x99\xe3\x5a\xaa\x3f\x14\xd7\x5b\xd5\x32\xe0\x0d\xb5\xbc\xb9\xc6\x75\x23\xff\xe8\xc1\xf0\xbe\xb3\x35\x5d\xf9\x3b\x58\x21\x0a\x5f\xae\x0a\xe6\xc1\xc0\x34\x91\x07\x28\xb8\x5e\x9c\x82\x26\xf5\x7d\x6d\x30\xde\x88\xfd\xc4\x38\xa8\x51\x20\xeb\x5e\xfc\x54\x96\xba\x41\x6d\x26\xb6\xc4\x95\xb2\xa1\x74\x38\xbb\xb1\xdf\x3d\x51\x2b\xc3\x68\xd3\x07\xa5\x38\xe3\x51\x5e\x44\xa9\xf0\xfd\x7d\x19\xfb\x39\xb6\x92\x54\x0c\xbf\xac\x4f\x53\xe2\x08\x75\x70\xca\x1c\x78\x49\xdd\xac\x00\xa7\x07\x2f\x07\x66\x3d\x46\xba\x5b\x2e\x23\xb1\x49\xfc\xf0\x94\x04\xed\xae\x91\xde\x5a\x35\x80\x79\xd6\xc5\xb2\xca\x00\xcb\x1c\xcf\x34\x04\x2b\x4f\xf6\x31\x2f\x75\xae\x7c\xde\xd2\xbd\x6f\x6e\xf6\xfd\xb1\x42\x96\x54\x88\xeb\xbb\x9c\x2d\x6d\xc1\x32\x9c\x04\x96\x19\x8c\x71\x52\x43\x46\x89\x05\x6f\xb0\x05\xdc\x84\xc1\xb0\xfc\x74\xe5\x87\x14\x02\x8a\x1a\x0c\xee\x96\x2c\xd5\xe9\x3d\xd9\xa2\xf1\xb2\xd9\xf2\x1e\x3f\x06\x0b\x16\x46\x03\x37\x7a\x88\x90\x08\x0c\x23\xbb\x26\x0e\x93\xa2\x1a\x99\xef\x44\x9a\x80\x87\x58\xec\x2f\x14\x98\x5c\x96\x9b\x93\x9c\x4f\x92\xdf\xd8\xb9\x0a\x72\x3b\x1c\xb3\x4d\x08\xa3\x13\xfc\x91\x5a\xf4\xc5\x81\xb4\xea\xec\x63\x53\xf6\xa3\x0c\x50\x38\xc0\x96\xdc\x01\xc0\x8c\xe4\x0c\x8f\xf4\xd8\xb0\x52\xa1\xae\x0e\x8a\xe9\xdf\x9b\x06\xeb\x42\x9c\xde\x28\x35\xe8\xe6\x5b\x7c\xd6\x17\xcd\x35\xba\xbb\xaa\xba\xcd\x7f\x9d\x51\xfd\x86\xc1\xb8\x7b\xa4\xae\x8a\xd7\x28\x0b\xad\xea\xb3\x85\x17\x07\xcc\x70\x86\xa9\x96\x3f\x79\x03\xa3\x7d\xfe\x09\x29\x3e\xa8\xdb\x82\xf4\x9e\xa8\xd0\x7c\xad\x45\xfb\x2e\x2f\x16\xbb\x3b\xb1\xef\xdd\xef\xd5\x5b\x72\x78\xc8\x1c\x16\x8c\xa1\x03\x06\x4c\x9f\x13\x24\x96\x03\x75\x83\x52\x00\xaa\x24\x2b\xc6\xa5\xba\x45\x64\x6f\xfc\x11\x1a\x84\x76\x2e\xae\xde\x9b\x38\xde\xa2\xd3\x59\xbb\x5b\x94\x38\xc8\x2f\x04\x24\xe9\x68\xe0\xe9\x01\xb9\x56\x36\xcd\xfe\xeb\x9a\x4c\x94\x5e\x86\x49\x2b\x58\x5b\x8a\x84\x7f\x58\xa6\x84\xd7\xda\x5d\xc6\x7a\xc6\x6a\xf4\x6a\xbb\x2b\xec\x6c\xec\x89\x16\x41\x18\xbf\x34\x26\x13\xda\xf2\x52\x9a\xc2\xe7\x1a\x69\x4c\x26\xcb\xc6\x46\x50\xc3\x37\x48\x14\xd3\xe8\xd0\x1d\x64\x14\x30\x6a\x20\x44\xaf\x05\xc3\x04\x70\xc7\x52\xa9\xe0\x7c\xe3\x03\xbf\x26\xbd\xf8\xe7\x4f\x0d\xa4\xe0\x92\x54\x69\xb0\x18\x4f\x5e\x0a\x3d\x47\x7a\xf4\x26\x95\xf1\x59\x18\x71\xae\x6c\xfc\x80\x79\x59\x3e\xd6\xd3\xcd\x44\xae\xb1\xe7\x6f\x23\x8a\xcb\x8c\xa1\x66\xc4\x61\xc9\xdf\x94\x14\x81\x94\x9c\x13\xb8\x26\xd3\x34\x66\xff\x63\xa9\x77\x44\x83\x01\xa4\x35\x42\xb8\x69\x3f\xfa\xac\xf5\x43\x9c\x12\xc0\x11\xe6\x70\x8c\x01\xe1\xac\x5c\xf3\xb0\xf0\x38\x5e\x98\x3a\x03\x65\x37\xbc\x4d\x72\x49\x86\x92\x26\x22\x6a\xcc\x67\xc8\x18\x5c\x92\x62\x80\x82\xd9\xe7\xee\x81\x4c\x6e\x1b\x4a\xeb\x99\x08\xc8\x2f\x80\x7f\x5e\x84\x12\x9b\x57\x4e\x16\x35\x0b\x74\x7d\x15\xa8\x19\x31\x34\xbc\x77\x89\x2d\x1b\x4d\x5b\x77\x28\x6d\x46\x87\xc7\xca\x24\xf7\x98\x97\x83\x75\xcf\x72\xb4\xc5\x62\x98\x5b\x0e\x82\xb9\x3f\x1f\xbd\x5d\xc4\x5d\xe5\xf0\xe2\xcb\xb9\x85\x67\x48\x8c\x8c\x0b\x9d\x1b\x3d\x98\x96\xb9\x2a\x75\x62\xd8\x9d\x50\x19\xea\xf0\x14\x03\xc2\xe9\x5e\xb1\x8f\x8d\xd8\xb8\x1d\x9f\x5b\xb6\x4a\x1f\xc7\x0b\xef\x61\x67\x4e\x51\xeb\x40\xf2\x60\x18\x13\xba\xd5\xc7\xcf\xd1\x31\xc5\x93\x3b\x05\xc9\xf5\x41\xdc\x0e\x27\xa9\xa6\x17\x91\x51\x1d\x05\x26\x21\x59\x6f\x11\xcc\xdd\xd7\xee\xee\x08\x06\xed\xfe\xf3\x91\x3e\xeb\x9b\xc3\x81\x81\x37\xda\x3d\xf4\x14\xcb\x5e\x99\x2f\x6c\x33\xcb\x90\x5a\x5c\xf0\x20\xb7\xd1\xfe\xf0\xa4\x6b\xc8\xef\x27\x74\x4c\x60\x2d\x22\x97\x32\xd5\x86\x6c\x50\x11\x0c\x27\x4d\x40\x28\x26\x72\xda\x5f\x2d\x7a\x15\x81\x5d\x8f\x84\x5f\xc8\x89\x85\x4a\x9f\xc1\x52\x00\x1a\xc0\x61\x8b\x9d\x97\xb2\x70\x5d\x6b\x21\x82\x1f\x8b\xd6\x65\x2e\x8e\xb7\x53\x0f\x63\x26\x92\x5d\x5a\x80\x7f\xc1\xaf\x16\xc3\x5f\x4f\xd4\x5c\x4e\xc4\x91\x85\xde\xe2\xec\x54\xec\xa6\x63\xc8\x7f\x8b\x9f\x50\x68\xde\x3a\x66\x9b\xd0\x48\x62\x36\x00\x90\x52\xdf\x32\x1f\x21\xc3\xb8\xa4\x85\xe0\x44\x8e\x62\x6a\x4a\xc9\x2e\x7b\x17\xf5\xf0\x1f\x93\x64\xa1\x1e\x65\xfe\x21\xdb\x04\x5e\x20\x3a\x90\x42\x9d\x01\x16\x99\x97\x5f\x9f\x85\x78\xec\x97\xff\xb9\x9f\x0a\x53\x94\x88\x34\xfc\x0f\xd5\x89\x65\x03\x34\x65\xd3\x5d\xd4\xfd\x98\xed\xd0\x7d\x91\xe8\x0d\xb9\x9a\x4e\xc1\xbb\x35\x52\x9b\x6d\x2a\x29\x71\x84\xf2\x3c\x1c\x16\x8f\xbc\xc7\x05\x97\x4f\x60\xac\x44\xdc\xd0\x09\x2f\xe8\xfc\x1f\xd4\xa5\x00\xc0\xac\x45\x1b\xd1\xe0\x4f\xbc\x92\x84\x62\x94\x95\x62\x25\x10\x8f\x9f\x87\x5b\x74\xe7\xab\x66\x01\x31\x79\x03\xa0\x44\x3a\xa9\x05\x02\x9b\x3f\x6e\xec\x8a\x22\x47\x08\xe4\x36\x9f\x01\x80\xf4\x19\x88\xc1\x23\x2f\x0f\xde\xd3\xab\xcc\x9e\x0a\xf5\x84\x4c\x3f\x81\x9f\x9f\x47\xee\x80\x0a\x16\x6d\xaf\x6a\xd3\xe8\x06\xb9\x25\x69\xb2\xad\x7e\x30\xbc\xbc\x8a\xa9\xfb\xa0\x7f\x76\xca\x26\x7d\x06\x93\x54\x12\x02\xe8\x8b\x07\x00\x2c\x80\xce\x12\x8a\xc9\x4b\xf4\xe1\x22\x2e\xc2\xe5\xf5\xcf\x6e\xf7\xa3\x19\xe8\x95\x11\x02\x34\x3d\xa1\xc3\xef\x7b\xc7\xc3\x94\x28\xe3\x15\xf1\x39\x57\x84\x00\x7a\xfe\xe7\x3c\x78\x00\x79\x7a\x2e\x55\x63\x10\x93\x97\x78\x30\x87\x9d\x4a\x3a\xfc\x82\x55\xf7\xb1\x32\xa4\x57\x44\xac\x37\x17\x5d\xce\x51\xfc\x57\x0e\xc2\x00\x40\xf6\xb1\xc5\x21\x69\x54\xd4\x19\xa8\xb4\x12\x73\x8f\x17\xe3\xbd\xaf\x74\xc3\xdf\x29\xac\xda\x17\x71\x1c\xbe\x8d\xe6\x8a\x57\xc4\x5b\x71\x09\x01\xf4\x2b\x70\xb6\xbb\x6c\x00\x9c\xbc\xa0\xb8\xbd\x9b\xff\x7c\x22\x26\xca\x2b\x8c\x0e\x70\xde\x60\x58\x91\xc4\x81\x01\xec\xf0\x1b\x89\x6f\xd8\x9c\x81\xbd\xeb\x8a\x0d\x1f\xd4\xef\x26\x22\x33\x32\x06\xd0\xcd\xc8\x3e\xab\x83\x38\xb0\xdd\xa3\x02\x2f\x8d\xa4\x4d\x27\x94\x20\x37\x04\x2b\x9f\xf3\x3c\x00\x73\x37\x01\x09\xc3\xff\x2f\xc7\x20\x9a\xac\xec\x90\xee\x76\xfc\xd4\xf4\xa5\x31\x00\x00\x37\x7c\xd5\x1e\xf8\x3a\xd8\xf9\x3a\xca\xdb\x7b\x3b\xda\xf9\x3a\x02\x92\x68\x09\x59\x51\xb4\x94\xa8\x94\x84\x31\x1a\x2d\x2f\x2d\x25\x2f\x29\x25\x8c\x96\x94\x47\xa3\xbb\xc5\xd0\x33\xff\x0f\xe0\xee\xe1\xe0\xe2\x14\xf8\xff\x07\xea\x7c\x62\x1c\x01\x00\x30\x0b\x32\x7e\xe0\x7b\xdf\xce\x1f\xe9\xe9\xed\xe1\xe4\xe2\xe6\x88\xf4\x0d\xf4\x74\x44\xba\x78\xfa\xda\x03\x40\x40\x0e\x61\x1f\x0e\xf3\x32\x15\x12\xea\xd7\x1f\x18\xd4\x5a\xbd\x0f\x50\xf0\xd1\x8a\xd9\xd3\x32\xf1\x31\xe9\xa4\x32\x53\x30\x21\x55\x71\xd2\xdd\x0e\x14\x7c\x1f\x8d\x91\x03\xd3\x3f\xfa\xbe\x0e\x7e\xe5\xfa\x4a\x35\x80\xd3\x2c\xd0\x16\x03\xb6\xae\x31\xf8\xee\xab\xc8\xa4\x01\x00\x00\x68\xa9\xe9\xa9\xd6\xa8\xd8\xe2\xff\x4f\x00\x00\x00\xff\xff\xf1\x18\xc7\x0e\x41\xe4\x00\x00") -func web_uiStaticConsulLogoPngBytes() ([]byte, error) { +func web_uiV1StaticConsulLogoPngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticConsulLogoPng, - "web_ui/static/consul-logo.png", + _web_uiV1StaticConsulLogoPng, + "web_ui/v1/static/consul-logo.png", ) } -func web_uiStaticConsulLogoPng() (*asset, error) { - bytes, err := web_uiStaticConsulLogoPngBytes() +func web_uiV1StaticConsulLogoPng() (*asset, error) { + bytes, err := web_uiV1StaticConsulLogoPngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/consul-logo.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/consul-logo.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticFavicon128Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x2b\x6d\xd4\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x7b\x70\x1b\xd7\x79\xef\xef\x9c\x5d\xec\x02\x20\x16\x04\x01\x10\x24\x20\x3e\xa0\x17\x29\xcb\x90\x2c\x1b\x7e\x51\x71\x43\xc5\xb1\xe5\xc4\x95\xe3\x1b\xc5\x49\xa3\xb6\xa9\xfa\x98\xea\xf6\xde\x3e\x72\xd3\xde\x4e\xa6\xcd\x74\x32\x99\xde\x4e\x26\x93\xe9\x6d\xd3\xdb\x34\x13\xb5\x79\x28\x69\xea\x3c\x5a\x25\x8e\xed\xc4\xaf\xd8\x96\xe3\x48\x7e\x88\xb2\x1e\xb4\x2c\xc2\xa4\x44\x52\x14\x48\x42\x20\x08\xe2\xb9\xbb\xd8\x3d\xe7\xfe\xb1\x80\x44\x51\x7c\x80\x14\x5f\x4a\xf8\x9b\x59\x13\x23\x63\x1f\x38\xdf\x6f\xbf\xf3\x9d\xef\xfb\xce\xf7\x01\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\x6b\x58\xc3\x1a\x7e\xb5\x40\x56\xfa\x01\x96\x0b\xd1\x68\x94\x02\x40\x30\x18\xbc\xe6\xdf\xc7\xc6\xc6\xa0\xeb\x3a\x00\xa0\xab\xab\x8b\x2d\xff\x93\xad\x2c\x7e\x69\x08\x10\x8d\x46\xa9\xcf\xe7\x83\xcf\xe7\x83\xa2\x28\x00\x40\xcb\xc7\xd4\xcf\x98\xf2\x99\x4d\xf3\x97\x01\x80\xa6\x69\x6c\x6c\x6c\x0c\x63\x63\x63\x38\x76\xec\xd8\x2f\x25\x39\x6e\x5a\x02\x74\x74\x74\xd0\x60\x30\x08\xbf\xdf\x5f\x11\x2e\x05\x20\x82\x43\x14\x19\x91\x6a\x74\xc1\xed\xd2\x84\x40\xad\x2a\x36\xc9\x06\xf1\x3b\x4a\x82\xd7\xa1\xd3\x5a\x91\x11\x3b\xe5\x44\x22\x1c\x94\x51\xae\x9b\x04\xba\x6a\x63\x19\xd5\x66\x4e\xa8\x22\x4b\xe6\x64\x73\x24\x2b\x9b\xf1\xac\x6c\xa4\x74\x91\xab\x9c\xc0\x00\xae\x1c\x4c\xd3\x34\xd6\xdf\xdf\x8f\x23\x47\x8e\xfc\x52\x10\xe2\xa6\x22\x40\x67\x67\x27\x0d\x87\xc3\x90\x65\xd9\x12\x36\x20\xd9\x4c\x62\xf7\xe5\x6d\x4d\x8d\x19\x69\x47\x63\x56\x8a\x7a\xf3\xb6\x2d\x1e\x55\xdc\x24\x9a\x24\x40\x40\xec\xf3\xfd\x81\xdc\xfa\xaf\x61\x12\xa4\x8b\x92\x39\x98\xac\x29\x9d\xbb\xec\x2a\x9d\x19\x51\xb4\xe3\x09\xa5\x14\xcb\x49\x66\x06\x04\x3a\xca\x84\x48\x26\x93\xac\xbb\xbb\x1b\xb1\x58\xec\xa6\x24\xc4\xaa\x27\x40\x34\x1a\xa5\x6d\x6d\x6d\x50\x14\x85\x02\x90\x00\x48\xb5\x45\x31\xb0\x3e\x65\xdf\xd9\x9a\xb2\xbf\x2f\x98\x91\xef\x93\x0d\xd2\x42\x40\xc4\xa5\x7c\x0e\x0e\xc0\x24\x3c\x35\xee\x2c\x9d\x18\xac\x53\x7f\x7e\xc1\xab\xbe\x38\x5c\xab\xc5\x4c\x8a\x02\x00\x1d\x00\xeb\xe9\xe9\x61\x37\x9b\x66\x58\xb5\x04\xe8\xec\xec\xa4\xed\xed\xed\x57\xde\xf4\x1a\x8d\xfa\xdb\x13\x35\xbb\x37\x5f\x76\x3c\x1a\xc8\x49\x3b\x05\x4e\xdc\x2b\xf9\x7c\x1c\xdc\x28\xd8\x58\xac\xcf\x5f\xfc\xc9\xb9\x40\xe1\x87\xc3\xb5\x5a\x8c\x13\x8b\x0c\xd9\x6c\x96\x75\x75\x75\xdd\x14\x5a\x61\xd5\x11\x60\xcf\x9e\x3d\x34\x14\x0a\x51\x00\x12\x61\x70\xb6\xa4\xed\x3b\xb6\x0d\xd7\x7c\x22\x9c\xb2\x3f\x2c\x30\xea\x5f\x75\x0f\x0c\x8b\x0c\xe3\x4e\xe3\x8d\xee\xc6\xfc\x77\xce\x35\xe4\x7f\x52\x90\x58\x0a\x80\x9a\xcd\x66\x8d\x58\x2c\xb6\xaa\x57\x17\xab\x66\x3c\x27\x0b\x5e\x30\x89\x7b\x4b\xc2\x79\xff\xed\x97\x5c\xff\xdd\x97\xb7\xed\x5c\x6a\xf5\xbe\x98\xd0\x04\x16\x3f\xd7\x90\xff\xd6\x5b\xeb\x72\xdf\x4e\x3b\x8d\x21\x94\x89\xb0\x5a\x35\xc2\x8a\x13\xa0\xa3\xa3\x83\x6e\xdb\xb6\x8d\x02\x90\x28\x83\xeb\x96\xd1\x9a\xdd\x77\x0d\x2a\x9f\xac\x55\xc5\x3b\xc9\xca\x3f\xde\x82\x61\x50\x9e\x7a\x27\x90\xff\xe6\x9b\xad\x99\x7f\xcd\xd8\xcd\x38\x00\x35\x99\x4c\x1a\x87\x0f\x1f\x5e\x55\x24\x58\xd1\x11\xde\xb7\x6f\x1f\x55\x14\x45\x02\x87\xb3\x75\xdc\x7e\xf7\x7d\xe7\x6b\x3f\xe3\xcf\xdb\xee\xbb\x99\x05\x3f\x15\x3a\x65\x89\xb7\x9a\xb2\x5f\x3a\xd1\x9c\xfd\x77\x4d\xe4\x49\x00\xfa\x99\x33\x67\xd8\x6a\xf1\x2b\xac\xc8\x48\xef\xde\xbd\x9b\x86\xc3\x61\x0a\xc0\xe9\x2e\x0a\x4d\x9d\x7d\x75\x9f\xde\x30\x66\xff\x38\x01\x91\x56\xe2\x79\x96\x1a\x1c\x40\x56\x36\xba\x5f\xdd\x90\xfe\x6c\xac\xbe\xf8\x0a\x08\x72\xd9\x6c\x56\x7f\xfc\xf1\xc7\x57\x9c\x04\xc2\x72\xdf\x70\xdf\xbe\x7d\xb4\xa1\xa1\x41\x22\x1c\x9e\x1d\x97\x5c\x8f\x3d\xfc\x8e\xff\x6b\xf5\x79\xe9\x3e\x02\xb2\xec\xcf\xb2\x5c\x20\x00\x64\x93\x06\x36\x25\x1d\x1f\x09\xe4\xa4\xa6\x78\xad\x76\x86\x38\x6d\xc5\x68\x34\xca\x00\x60\x78\x78\x98\xaf\xd4\xb3\x2d\xdb\xa0\x47\xa3\x51\xfa\xc8\x23\x8f\x08\xb2\x2c\x3b\x5c\xaa\x10\x7e\xf8\x1d\xdf\x17\x6f\x8b\xbb\xfe\x52\xe4\x74\x45\x97\x73\xcb\x09\x02\x42\xbd\x45\xdb\xf6\x2d\xa3\xce\x87\x27\xec\xc6\xf9\x94\xd3\xb8\x14\x0a\x85\x4a\xc0\xca\x91\x60\x59\xa6\x80\xb2\xca\x17\x01\x38\xc3\x63\xf6\xfb\x76\xf7\x78\xff\x9f\xb3\x24\x84\x97\xfa\xbe\x1c\x1c\x8c\x80\x69\x22\x53\x55\x91\xa9\xaa\x8d\x15\x74\x81\xeb\x8c\x72\xc6\x00\x26\x70\x88\x36\x93\x88\xb2\x41\xed\x8e\x92\xe0\x94\x0d\x62\x17\x19\x11\x81\xa5\xb7\x42\x18\xb8\x7e\x3a\x94\xfb\xbb\x97\x37\xa7\xff\x11\x40\xee\xe0\xc1\x83\x2b\x32\x1d\x2c\xf9\xf2\x6a\xef\xde\xbd\xd4\xef\xf7\x4b\x84\xc3\x7d\xf7\x80\xfb\x77\xef\x1e\x74\x7f\x56\xe0\xc4\xb9\xd8\xf7\xe1\xe0\xd0\x05\xae\x26\x6b\x4a\xc9\x11\xb7\x36\x74\xd9\x55\x8a\xa7\x9c\xa5\x78\x56\x36\x53\xaa\x8d\x4d\x70\x40\x2d\xbb\x70\xaf\x04\x7b\xca\x10\xc1\x21\x12\xc0\x6e\x33\x89\xd3\xa5\x09\xf5\x9e\xa2\x2d\x50\x9f\xb3\x85\x1a\xb2\x52\x53\x43\x4e\x6a\x74\xea\xd4\xb5\xd8\x94\x20\x80\x94\x93\xcd\x1a\x00\x4e\x00\x85\x29\xcf\xb4\x6c\x58\x52\x02\x54\xac\x7c\xd1\x24\x81\xdd\x3d\xde\xcf\x6e\xbe\xec\xf8\xfd\xc5\x1c\x48\x0e\x8e\xb4\xc3\x48\x9e\xf7\x15\x7b\x07\xbc\xea\xd9\x11\x45\xef\xd3\x45\x9e\x00\x90\x29\x1f\x85\xf2\xa1\x97\x0f\x03\xd7\x12\xc0\x0a\x22\x11\x50\x0e\x48\xba\xc8\xa5\x94\x68\xd8\x53\x35\x86\xf3\xbc\xbf\xe8\x06\xe0\xa6\x0c\x5e\x7f\xde\xb6\xbe\x65\xdc\xbe\x65\xc3\x98\x63\x4b\x43\x56\x0a\x09\x9c\xd0\xeb\x9f\x66\x7e\x38\x17\x28\x1c\xed\x6a\xce\x3e\x8f\x15\x12\x7c\x05\x4b\x46\x80\xfd\xfb\xf7\x53\x59\x96\xed\x0e\x9d\x36\xed\x79\xdb\xff\xa5\x50\x46\xfe\xc0\x62\x88\x9e\x03\x28\xda\xcc\x5c\x4f\x7d\xe1\xec\xb9\x86\xc2\x1b\x97\x5d\x7a\x0f\xa3\x48\x00\x48\x02\x48\x03\xc8\xc1\x12\xba\x8a\x49\x51\x3c\x5c\xff\xe6\x4f\xc6\xe4\xb0\xb1\x58\x3e\x24\x00\x4e\x46\xe1\x4a\x28\x25\x4f\x42\x29\x79\x8f\x37\x67\x03\xb5\xaa\xb0\x7e\xf3\x65\xe7\x9d\x5b\x47\x6b\x76\xd4\x15\x44\xff\x42\x08\x7d\xb9\x46\x1f\x7a\x69\xf3\xf8\xd7\x38\xc1\x10\x80\x5c\x36\x9b\x5d\x31\x12\x2c\xc9\x54\x57\x11\xbe\x4b\x13\x36\x3c\x7a\xc6\xff\xd5\xfa\xbc\xb4\xf3\x46\xaf\xc9\xc1\x31\x56\x53\x4a\xbc\xb5\x2e\x77\x34\x56\x5f\x38\x56\x12\xf9\x20\x80\x11\x5c\x15\x7c\xe5\x4d\xbf\x22\xf4\x64\x32\x09\x5d\xd7\x31\x3c\x3c\x3c\xa7\x3b\xb6\x92\x4f\x20\x49\x12\x42\xa1\x10\x30\x39\xc4\x5c\x26\x03\x00\x17\x00\x3f\x80\x00\x65\x68\x6a\x4e\xdb\xa3\x77\x0c\x29\xf7\x35\x8f\xcb\x1b\x28\xaa\xd3\x0a\xaa\xc8\x0a\xdf\xdf\x31\xfa\xf9\x54\x8d\xf1\x0c\x80\xf3\x00\x32\x07\x0f\x1e\x34\x16\x30\x24\x8b\x82\x45\x27\x40\x45\xf8\x8a\x2a\x6c\xfa\xf0\xe9\xfa\x6f\x78\x8b\xb6\x3b\x6e\xe4\x7a\x1c\x1c\xc9\x9a\xd2\xc8\x1b\x2d\x99\x17\x7b\xfd\xc5\x5f\x70\x8a\x41\x00\x71\x58\x82\xcf\x61\xd2\x9b\xde\xdf\xdf\x8f\x78\x3c\x8e\xee\xee\xee\x45\x7b\xa3\x3a\x3b\x3b\x69\x28\x14\xaa\x44\x23\x45\x00\x76\x58\x64\xf0\x02\x68\x04\x47\x4b\x63\x56\xba\xfd\x9e\x01\xf7\xee\xd6\x94\xbd\x8d\xce\x32\xa4\x0c\x9c\x3d\x73\xcb\xd8\xd7\x63\x81\xe2\x77\x00\x9c\x03\x90\xea\xea\xea\x32\x56\x32\x56\xb0\xa8\x04\xa8\x08\xdf\xa9\xd3\xf0\xde\x53\xf5\x87\xfc\x05\xe9\xce\x1b\xb9\x5e\x4e\x32\x33\xaf\xb5\x4e\xbc\x70\xb6\x31\xff\x12\xa3\xe8\x05\x30\x84\xab\x82\xd7\x35\x4d\x33\x96\x33\x39\xa3\xa3\xa3\x83\x86\xc3\xe1\xc9\xa1\xe9\x0a\x11\x42\xe0\xd8\xd0\x9c\x96\xef\xb9\xef\xbc\x67\x4f\x20\x67\x0b\x4d\x9d\x1a\x38\x80\xb7\xd6\x65\x5f\x7c\x65\x63\xfa\x4b\x20\x38\x09\x20\x11\x8f\xc7\xf5\xa7\x9e\x7a\x6a\x45\x6d\x80\x45\x23\x40\xc5\xda\x97\x0d\xd2\xf4\xe1\xd3\xf5\x5f\x6b\xcc\xca\xef\x5d\xe8\xb5\x18\xe1\xac\xbb\x31\x7f\xfc\xe8\xfa\x89\x1f\xaa\x36\xd6\x0d\x60\x10\x40\xc5\xb8\xd3\x57\x43\x12\xc6\x24\x6f\xa6\x88\xab\x53\x43\x13\x65\x68\xdb\x1e\x77\x7d\xb0\xa3\xbf\xf6\x01\xd9\xa4\xf6\xca\xf7\x87\x6a\xd5\xde\x1f\x6e\xbf\xfc\x39\x93\xe2\x38\x80\xa1\x6c\x36\x5b\x58\x0d\x9e\xc0\x45\x21\x40\x79\x30\x24\xca\x10\xd8\x73\xd6\xff\xf7\x1b\xc6\x1c\x8f\x2d\xf4\x5a\x13\x76\x23\xf5\x42\x5b\xea\x3f\x2f\xd6\x69\x47\x00\xf4\xc2\x52\xf7\x69\x00\x6a\x3c\x1e\x67\x2b\xfd\xc6\x4c\xc5\xa4\xbc\x05\x09\x16\x11\x1a\x01\x6c\xa8\x2d\x8a\xd1\x07\x62\x75\x1f\x6f\x4a\xcb\x9b\x0a\x12\x4b\x7f\xf7\xf6\xd1\xbf\xcd\xda\xcd\x97\x61\xcd\xfb\xb9\x95\x9c\xf7\x27\xe3\x86\x09\x10\x8d\x46\x69\x34\x1a\x15\x01\x78\x3a\x7b\x3d\x9f\xde\x71\xc9\xf5\xe7\x0b\xb1\x8c\x39\x38\xde\xf5\x17\x4f\xbf\xd8\x36\xfe\x1d\xd5\xc6\x4e\xc2\x1a\xa8\x24\x80\x42\x36\x9b\x35\x56\xc3\xdb\x32\x1b\x26\x85\xb3\xed\xb0\xa6\x85\x16\xca\xd0\x76\xd7\xa0\xfb\x83\x23\x6e\x3d\x36\xe0\x55\x9f\x06\x10\x03\x90\x7e\xf9\xe5\x97\xd9\x6a\x09\x0d\xdf\x30\x01\x0e\x1c\x38\x20\x02\x70\xdf\x32\xe2\x7c\xec\xc1\x1e\xef\x97\xe9\x02\x62\xf7\x26\xe1\xec\x58\x78\xe2\x99\xae\xe6\xec\x0f\x38\xc1\x59\x58\x2a\x3f\xa3\x69\x9a\xda\xdd\xdd\xbd\xaa\x13\x2a\xa6\xa2\xec\xfb\x10\x01\xb8\x61\x4d\x0b\x1e\x58\x86\xea\x08\x80\x54\x4f\x4f\x8f\xb1\x9a\xd2\xc6\x6e\x88\x00\x65\xa3\xcf\x55\x9f\xb3\xdd\xf1\xd1\x93\x81\xff\x92\x4c\xea\x9d\xef\x35\x34\x81\xa9\xcf\xb5\xa7\xbe\xdb\xe7\x2f\x3e\x0d\x4b\xf8\x23\x00\x72\xf1\x78\xdc\x58\x6d\xea\xbe\x5a\x4c\xce\x71\x28\x1f\x0c\x37\x90\x0f\x10\x89\x44\x68\x38\x1c\x86\x24\x49\x90\x65\x19\xd9\x6c\xb6\xaa\xa5\x6d\x35\x58\x30\x01\xca\x2a\x4f\xb2\x19\xa4\xe9\x37\x4e\x06\x1e\xf7\xe7\xe7\x6f\xf1\x17\x6c\x66\xee\xc9\x5b\x93\xff\x36\x5c\xab\x3f\x0f\x4b\x3d\x8e\x00\x50\xbb\xba\xba\xd8\xcd\xf4\xd6\xcf\x84\xb2\x6d\x04\x4d\xd3\xb0\x10\x4d\x16\x8d\x46\x69\x24\x12\x81\x2c\xcb\x15\x5f\x44\x45\xbb\x5e\x49\x55\xbf\xd1\xdc\x82\x05\x11\x20\x12\x89\xd0\x9d\x3b\x77\x8a\xe0\xf0\x76\xf6\x79\xfe\x6a\xc7\x25\xe5\xcf\xe6\x7b\xa1\xbc\x64\x66\x7e\x14\xb9\xfc\x2f\x97\x95\xd2\xcf\x60\x09\x3f\xa9\x69\x9a\x7a\xe8\xd0\xa1\x9b\x5e\xf0\x8b\x81\xb2\x71\x29\x82\xc3\xb9\x61\xcc\x7e\xef\xb6\x61\xd7\x6f\x35\x64\xa5\xed\x84\x83\x8e\xd5\x94\xce\xbd\xdd\x98\xff\xde\xb9\x40\xe1\x65\x4e\x91\xb9\x91\x4c\xa3\x05\x85\x83\x3f\xf8\xc1\x0f\x12\x51\x14\x9d\x4d\x13\xf2\xaf\xbd\xaf\xb7\xee\x0b\x74\x9e\xb1\xfc\xa2\x68\xe6\x7e\xb4\xed\xf2\x97\x2f\x2b\xa5\xe7\x01\xf4\x00\xb8\x9c\x4c\x26\xb5\xef\x7e\xf7\xbb\x6b\xc2\x87\x35\x85\x6c\xdd\xba\x55\xa4\x0c\x9e\xf7\xbf\x5b\xf7\xd7\xf7\x5d\xf0\x7c\xa9\xae\x68\xdb\x61\x63\xb4\xc1\xc6\x68\xc0\xad\x89\x5b\x37\x8e\x39\x1e\x0b\x66\xe5\xd6\xf3\xbe\xe2\x6b\xb2\xcb\xa9\x06\x83\x41\x16\x8b\xc5\xe6\x1d\x52\x9e\x37\x01\x76\xef\xde\x4d\xfd\x7e\xbf\x24\x9a\x64\xdd\x23\x6f\xfb\xff\xb9\xa6\x24\xac\x9b\xcf\xf9\xba\xc0\xf4\x1f\x47\x92\x5f\x19\xa9\x2d\x3d\x03\xcb\x1b\x36\x96\x4c\x26\xf5\xd5\x96\x2b\xb7\x92\x78\xf8\xe1\x87\x05\x00\xca\x3d\x03\xee\x3f\xba\xfd\x92\xf2\x19\x32\x8d\x9b\x99\x80\x10\x8f\x2a\x46\x14\x4d\xa8\xed\xad\x2f\x1e\x55\x14\xa5\x98\xcd\x66\x31\x36\x36\x36\x2f\x12\xcc\x3b\xaa\x55\x76\x7e\xb8\xa3\x43\xca\x27\xbc\x05\xdb\x8e\xf9\x9c\x6b\x12\xce\x5e\x68\x4b\xfd\x7b\xdc\xa3\x3f\x0b\x4b\xed\xa7\xd6\x84\x7f\x2d\x3a\x3b\x3b\x29\x00\xc9\xa9\xd3\x96\x3b\x86\x94\x4f\xce\xb5\xa4\x6e\x4b\x38\x7f\xbb\x3e\x6b\x8b\x00\xb0\x47\x22\x91\x79\xdf\x6f\x5e\x04\xd8\xb7\x6f\x1f\x05\x60\x57\x54\x61\xc3\x1d\x17\x95\x3f\x9a\xcf\xbc\xcf\xc1\xf1\x66\x4b\xe6\x99\x58\xa0\xf8\x04\xca\x73\xfe\x9a\xf0\xaf\x47\x38\x1c\x06\x00\x7b\x53\x5a\xbe\x57\x32\xa9\x7f\xae\xef\x53\x10\x69\x7d\xca\xf1\x20\x00\x67\x79\x9f\xe4\xbc\x50\xf5\x09\x6d\x6d\x6d\xd6\xfa\x96\xc3\x7d\x6f\x7f\xed\xff\x90\xab\x78\xb8\xc9\xe8\xf7\xaa\xdd\x6f\xb4\x64\xbe\x0d\x4b\xed\x27\x35\x4d\x5b\x13\xfe\x34\x28\xef\x7b\x94\x5c\x9a\xb8\xbe\xda\x73\x3c\x45\x71\x13\xac\xb8\xc4\xd2\x11\x20\x1a\x8d\x02\x80\xdd\x57\xb0\x6d\xd9\x92\x70\xce\xcb\xd5\x9b\x93\xcc\xf4\x0b\x6d\xe3\xff\xca\xa8\xb5\xce\xd7\x34\xad\xb0\x66\xed\xcf\x0a\x5a\xb4\x99\x6a\xb5\x5f\xd6\x05\x66\x60\x01\xc2\x47\xb5\x27\x5d\x79\xfb\x01\xf7\x5d\x83\xca\x1f\xce\x27\xa5\x8b\x83\xe3\xa5\x4d\xe3\xff\x91\x97\xcd\x13\xb0\xfc\xfa\x85\x63\xc7\x8e\x2d\xe4\x59\x7f\x95\xc0\xe2\xb5\x7a\x8f\x41\xb8\x3e\xd7\x17\x39\x38\xfa\xbd\xea\x29\x58\x7e\x81\x79\xa3\x2a\x02\x94\xdf\x7e\xc9\x53\x10\x37\x6d\xbe\xec\xfc\xd0\x7c\x6e\xf0\xae\xbf\x78\xbc\xcf\x5f\x7c\x16\x65\xf7\x6e\x4f\x4f\xcf\xaa\xf1\x83\xaf\x46\x68\x9a\xc6\x00\xa8\x13\x0e\xa3\xff\x5c\x43\xfe\xd5\xb9\xbe\x3f\xec\xd6\x63\x03\x75\xea\x09\x58\xee\xe6\x79\x8f\x6b\x55\x04\x28\xc7\xbf\xdd\x3b\x2e\xb9\x7e\x6b\x3e\x6f\xbf\x26\xb0\xc2\xcf\x37\xa6\xbf\x0d\x82\xf3\x00\x52\xd9\x6c\x76\x55\xf9\xc1\x57\x23\xfa\xfb\xfb\x81\x72\xec\xe0\x95\x8d\xe9\x6f\x5c\xac\x55\x67\x5c\xdc\x8f\x3b\x4a\x89\x67\xb6\x8c\x7d\xb9\x9c\x24\x53\x88\xc7\xe3\xf3\x1e\xdb\x39\xfd\x00\xbb\x77\xef\xa6\x1e\x8f\x47\xb6\x97\xe8\x86\x07\x62\xde\xff\x23\xb2\xea\x08\xc0\x01\xbc\xd1\x9a\x79\xfa\x82\x5f\xfd\x11\x80\x0b\x00\x72\x87\x0e\x1d\x32\xe7\xfb\x80\xbf\x6a\x18\x18\x18\xe0\x91\x48\x84\x89\xa2\xc8\x4c\x0a\xfd\xdd\xfa\x62\x6f\x49\x60\xa2\x5b\x15\xbc\x36\x2b\xbf\x80\xe7\x25\x96\x3d\x13\xcc\xbf\xfe\x7c\x7b\xea\x2b\x79\x3b\x7b\x1d\x96\x76\xcd\x3f\xfe\xf8\xe3\xf3\x1e\xdf\x39\x23\x77\x95\x2d\x5c\x6d\x09\xe7\x6e\xbb\x51\xbd\xe5\x9f\x97\xcc\xd4\xc9\x75\xd9\x1f\xc2\xca\xe2\xc9\xf5\xf4\xf4\xac\xbd\xf9\x55\xe2\xd8\xb1\x63\xd8\xb5\x6b\x57\x0e\x40\xbf\x21\x70\xfd\x78\x4b\x36\x71\xa2\x29\xfb\xa4\xa3\x44\xfd\x04\x84\x16\x6d\x66\xca\xa4\x88\x03\xe8\x47\x79\x7c\xcf\x9c\x39\xb3\xa0\xf1\x9d\x95\x00\xe5\xca\x5a\x22\x38\x3c\x5b\x47\x6a\x1e\x9d\xcf\x85\x4f\x34\x65\x9f\xd3\x45\x1e\x03\x90\xd2\x34\x4d\x5f\x53\xfd\xd5\xa3\x62\x23\x95\x49\x30\x08\x20\xc5\x28\x7a\xf3\x32\xab\x68\x5f\x15\x56\x76\x54\x0e\x40\xa1\xa7\xa7\x67\xc1\x01\xa1\x59\x09\xd0\xd6\xd6\x06\x00\x92\x3f\x6f\x6b\x0b\xe4\xaa\x4f\xee\x2c\xd8\xcc\xcc\xdb\x8d\xb9\xa7\x51\x8e\xee\x75\x77\x77\x2f\xe4\xd9\x7e\xa5\x11\x8b\xc5\x58\x2c\x16\x63\xfb\xf6\xed\x2b\x28\x8a\xa2\xc2\xca\x8a\xaa\xd8\x6c\x0c\x80\x91\xcd\x66\xd9\xd1\xa3\x47\x31\x30\x30\xb0\xe0\x97\x6b\x56\x02\x94\x8d\x3f\xe7\xc6\xa4\xe3\xc1\xf9\x24\x7a\x9c\x6d\xc8\xbf\xa2\xd9\xf8\x79\x00\x69\x4d\xd3\xf4\x5f\x86\xd0\xee\x4a\xa1\x9c\x09\xc5\xa2\xd1\x28\x73\xb9\x5c\x00\x80\x5c\x2e\xb7\x68\x49\x32\x33\x0a\x75\x92\xfa\x77\x6f\x4a\x3a\xee\xaf\xf6\x82\x26\xe1\xc6\xdb\xc1\xfc\xb3\xb0\x92\x38\xd7\xde\xfe\x79\xa0\x52\xcc\x72\x3a\xe1\xce\x26\xf0\x68\x34\x4a\x27\x17\xc0\xd4\x75\x1d\xfd\xfd\xfd\x55\x25\xcd\xce\x48\x80\xd6\xd6\x56\x00\x90\xdc\xaa\xd0\xe4\x2d\xd8\xb6\xcc\x75\xa1\x0a\xe2\x6e\xed\xdc\xb8\xd3\x38\x07\x4b\x65\xad\x68\xce\xfb\xcd\x80\x49\xb9\x84\x57\x8e\xf2\xb6\x71\x23\x9b\xcd\xb2\xd9\x72\x21\xa7\x14\xd2\xaa\x1c\x00\x60\x84\xc3\x61\xbd\xa3\xa3\xc3\x38\x76\xec\xd8\xac\x44\x98\x91\x00\xe5\xc0\x82\xbd\x39\x6d\xbf\x97\xf2\xea\x0a\x37\x70\x00\x3d\x0d\x85\x57\x61\xbd\xfd\x85\xfe\xfe\xfe\x35\xe1\xcf\x80\xb6\xb6\x36\xda\xd1\xd1\x01\x59\x96\xed\x92\x41\xdc\xeb\xc7\x1c\xf7\x36\x4d\xc8\xf7\x50\x46\xc4\xb1\x9a\xd2\xbb\xbd\xfe\xc2\x8b\x50\x94\x91\x03\x07\x0e\xa8\xd3\x95\x9f\xab\xa4\xe1\x0b\x0c\xae\x2d\xa3\x35\x0f\x6c\x19\x75\x7e\xc4\x9f\xb7\x6d\x31\x29\x57\x2f\xd5\xea\xc7\x4f\xad\xcb\x7e\x3b\xee\x46\xf7\xae\x5d\xbb\x0a\xc1\x60\x70\xc6\xbd\x13\xb3\xcd\xeb\x14\x80\xb3\x65\xdc\xde\x51\x6d\xd4\xcf\xa4\x5c\xbf\xe0\x2d\x1e\x03\x90\x02\x60\x3c\xf7\xdc\x73\xab\x82\x00\x93\xaa\x8a\x02\xd7\x3b\xbf\x58\x32\x99\xc4\xf0\xf0\xf0\xb2\x96\x83\xdd\xb5\x6b\x17\x05\xe0\x6c\x4d\xd9\xef\x7d\x7f\xac\xee\x8b\x8a\x26\x6e\x9f\x3c\xce\x3b\xfb\x6b\x53\xc7\x9b\x33\x7f\xf7\x7a\x6b\xe6\x5b\xed\xed\xed\x19\x00\x57\x9c\x68\x15\xe1\x3b\x75\xda\xf4\xeb\x6f\xfb\xff\x21\x94\x91\xf6\x4c\x0e\x1b\xb7\x5f\x16\xef\xdc\x9c\x74\xfc\xce\xeb\x2d\x99\xbf\x79\xbd\x35\xf3\xcd\xf6\xf6\xf6\xdc\xd8\xd8\x98\x31\xdd\x8e\xa9\x69\x09\xd0\xd1\xd1\x51\x99\xff\x5d\xc1\x8c\xb4\xb5\xda\x1f\x95\x70\xe9\xbd\x79\x89\x0d\x02\x28\x68\x9a\xb6\xe2\x79\xef\x93\xd4\xab\x08\x40\xa2\x06\xb7\x4b\x45\xe6\xa1\x26\x5c\x00\x98\x29\x22\xa7\x3b\x68\xda\xef\xf7\xeb\x7e\xbf\x5f\xdf\xb6\x6d\x9b\xb1\x1c\x7b\x0f\xf6\xef\xdf\x4f\x01\x38\x9b\xc7\xe5\x9d\x8f\xbc\xed\x7f\x5c\x64\xc4\x33\xf5\x3b\x22\x23\xde\x7b\x06\xdc\x5f\x14\x18\x71\xfd\x62\xfd\xc4\xbf\xb4\xb7\xb7\xa7\x8f\x1c\x39\xc2\xa2\xd1\x28\xf5\xfb\xfd\x22\xe1\xf0\x7e\xf0\x1d\xdf\x3f\xac\xcb\xc8\x7b\xa6\xbb\x07\xe5\xc4\x79\xef\x80\xfb\x0b\x19\xbb\x91\x7a\xa7\xb1\xf0\xa3\x68\x34\x9a\x99\xce\x1e\x9b\x96\x00\x65\x83\x42\x74\xab\x42\xa8\x46\x17\x9a\xaa\xfd\x61\x03\x75\xea\x69\x10\xa4\x00\xa8\x65\x97\xe6\x8a\xe0\x9a\xca\x63\x25\xee\xa9\x8b\x97\x1e\xa8\x1b\x36\x1e\x75\x64\xcc\x3b\xa9\x89\x00\xac\x04\x4b\x80\x40\x65\x02\x46\xf2\xb5\xc2\x1b\xe3\x21\xdb\x0f\xd3\x41\xf1\x95\x50\x28\x94\x39\x70\xe0\xc0\x92\x15\x72\x8a\x46\xa3\x54\x96\x65\x49\x60\xf0\xbf\xef\xdd\xba\xcf\x4f\x27\xfc\x0a\x08\x08\xbd\x63\x48\xf9\x74\xac\xbe\xf0\xea\x65\xa5\xf4\xc6\xfe\xfd\xfb\x0b\xb2\x2c\x03\x80\x73\xc3\x98\xe3\x81\xa6\xb4\xfc\xf0\x6c\xf7\x22\x20\x62\x47\x7f\xed\xa7\xdf\xad\x2f\xbe\x0a\x59\x56\x3b\x3a\x3a\xf4\xa9\xbf\x69\xda\x58\x40\x59\x55\x4a\xf5\x79\xa9\xad\xfa\xf9\x9f\x63\xc8\xa3\xbd\x05\xcb\x41\xb1\x62\x3e\xff\xbd\x7b\xf7\xd2\x6d\xdb\xb6\x89\x60\xdc\xe3\x1b\xd4\x3f\x76\xcb\x2b\xf9\x97\x9a\xce\x6a\x87\x5c\xe3\xe6\x5e\xc1\x44\x0b\x01\xec\x04\xa0\x04\xa0\x84\xc3\x29\x18\xd8\xe0\x1e\x33\x3f\xde\x72\x46\xfd\xde\x2d\xaf\xe4\x9f\xad\x8b\x97\x1e\x06\xe7\xee\x6d\xdb\xb6\x89\x7b\xf7\xee\xbd\xe1\x3a\x00\x53\x51\xf1\xad\xac\x9b\x90\xef\xac\x2b\x8a\x73\x66\x54\x09\x9c\x38\x6f\x19\xad\xf9\x28\x00\xd7\xa4\x1a\xc9\xae\x8d\x49\xc7\xaf\x4f\x97\x2a\x36\x15\x8a\x26\x6c\x09\xe4\x6c\xdb\x01\x48\xe5\x64\x93\x6b\x30\xd3\x05\x28\x00\xc9\x97\xb7\x6d\xae\x76\xfe\x37\x28\x57\xc7\x6a\x4a\xbd\x58\xc1\x6a\x17\x57\x0c\xa3\x12\x0f\xad\x7f\x4b\xfd\x87\xa6\xb7\xb5\xaf\xd9\x74\xde\x56\xcd\x6f\x20\x00\x24\x95\x6f\x6f\x39\xa5\x3e\xde\x72\x46\xfd\x1c\x31\xb9\xdf\xef\xf7\x4b\x8b\x4d\x82\xb2\x6f\xc5\xee\xcb\xdb\x6e\xaf\x76\x07\x55\xbd\x25\x40\x17\x2c\xe1\x5b\xd5\xd5\xd4\xea\x34\x33\x01\x81\xa2\x8a\x1b\x00\x48\xe5\x7b\x5f\x83\xd9\x08\x60\xf7\x16\xc4\x0d\x55\x3d\x21\x80\x09\x87\x11\x57\x45\x96\x44\xb9\x56\x6e\xb5\xe7\x2d\x16\x2a\xc2\xa7\x06\x0f\xad\x3f\x5e\xfc\x6a\x6d\xc2\xf8\x6d\xb2\x80\x24\x09\x02\x88\x75\x97\x8c\x3f\x09\x9f\x2c\x7e\xb1\x42\x82\xdd\xbb\x77\x2f\xb6\x26\x90\x08\x27\xf6\xb9\xbf\x66\xc1\x10\x38\x43\x65\xda\xb2\x40\x8b\x36\x56\x55\xc2\x08\x07\x90\x97\xcd\x1c\x66\x18\x8b\xeb\x6c\x80\xb2\x33\x82\x02\xb0\xd7\x15\x6c\x55\xcf\xff\x63\x4e\x63\x10\x04\x39\x00\xc6\xd8\xd8\x58\xb5\xa7\x2d\x0a\x2a\x86\x11\x38\xf7\x36\x77\xab\x9f\x75\xa5\xcd\xdd\x37\x72\x3d\x02\xc0\x9d\x30\x7f\x33\x18\xd3\xe2\xf1\x5b\xec\x5f\x0c\x87\xc3\xa9\xb6\xb6\xb6\x39\x1d\x2b\x9d\x9d\x9d\xb4\xdc\xac\x02\x00\x66\xdb\xbd\xc3\x2e\xbb\xf4\x01\x0e\x5e\x55\x39\xaa\x64\x4d\x69\x08\xd7\x26\x7c\x18\x03\x5e\xf5\xf4\xa6\xa4\xf3\xfe\xb9\xce\xd6\x45\x96\xb9\x6c\x9d\x3f\x6d\x85\x94\xeb\x08\xe0\xf3\xf9\x00\x6b\x7e\xb4\xd7\xe8\x42\xd5\xd1\xbf\x71\x67\x69\x08\x96\xfa\x5f\x76\x02\x94\xb3\x61\x9d\x9e\x61\x63\xb7\x67\xd8\xf8\xed\xc5\xb8\x26\x01\x50\x3f\x50\xfa\xb3\x4c\x40\xfc\x79\xce\x27\xbe\xdc\xd1\xd1\x91\x8b\xc5\x62\xd7\x7d\xaf\xb5\xb5\x95\xee\xda\xb5\xab\xb2\x7b\xa7\x72\x50\x00\x46\x28\x14\x32\xa2\xd1\xa8\x31\xcd\x3a\x5e\x8f\xd7\x6a\x67\xc7\x1d\xc6\x90\xb7\x38\xfb\x4b\xc6\xc0\x59\x9f\xaf\xf8\x3a\xae\x26\x7c\x30\x00\xb9\x9e\x40\xe1\xe7\x77\x0d\xba\x3f\x5e\xab\x8a\x8d\xb3\x9d\xdf\xdd\x98\x7b\x59\xb3\xb1\x04\xac\x6d\xf5\xd7\xfd\xff\xeb\xd4\x82\x24\x49\x00\x20\xca\x06\x75\xc9\xc6\xcc\x16\xea\x54\x4c\xd8\x8d\x78\xe5\x21\x97\xd3\xfb\xd7\xd1\xd1\x41\x65\x59\x96\x08\xe3\xfe\xc6\x5e\xed\x53\x0b\x51\xfb\x33\x81\x70\x48\x8d\x31\xed\x53\xe0\xdc\x2b\xcb\xb2\x18\x89\x44\xae\xb9\x76\x47\x47\x07\x7d\xe8\xa1\x87\xa8\x2c\xcb\xae\x40\xd6\xb6\xf5\x81\x9e\xba\xcf\xfd\xde\xeb\xc1\x27\xff\xe0\xb5\xe0\xb3\x1f\x3d\x59\xff\xb5\xdb\x2e\xb9\x1e\x13\x4d\xe2\x6d\x6f\x6f\x97\xca\x19\xd5\x48\x26\x93\x0c\x80\x6a\x52\x8c\xbc\xb4\x79\xfc\x5b\x06\x9d\x39\xed\x8b\x03\x38\xdb\x98\x7f\x65\xc4\xad\x9f\x84\x15\xf9\xab\x10\xa0\x50\x12\x78\xff\x4f\x6f\x19\x3b\x58\x14\xcd\xdc\x4c\xe7\x0e\x7a\xd4\x73\xc7\xc2\x99\xc7\x51\x76\xcb\x4f\x47\xe0\x99\x08\x40\x6d\x26\x71\x56\xbb\x02\x00\x80\xbc\x6c\x8e\xe2\x6a\x41\xa6\x65\x43\xd9\xaa\xb6\x2b\x49\x73\xa7\x9c\xe7\xdb\x17\xfb\xfa\x35\x69\x76\x9f\x73\x82\x6d\x05\x60\xdf\xb6\x6d\xdb\x95\x7f\x8f\x44\x22\xd6\x52\x93\xc3\x1d\xbd\xa8\xfc\xce\x6f\xbc\xd5\x70\x24\x32\xe2\xfa\xdf\xb5\xaa\xf8\x5e\x45\x13\xef\x5e\x37\x61\xff\xd8\xae\x5e\xcf\xb7\x3f\x76\x32\xf0\xb8\xa2\x0a\x1b\x14\x45\xb1\xef\xdf\xbf\x9f\x96\x33\xa1\x55\x00\x89\x8b\x75\xda\xcf\x9e\xde\x9a\x3c\x98\x93\xcc\xcc\xd4\xfb\x9a\x84\xb3\x53\xa1\xec\x2b\x2f\x6d\x1e\xff\x2a\xac\x62\x52\x85\xfe\xfe\x7e\x76\xf4\xe8\x51\x94\xcf\x1f\x1a\x71\xeb\x3f\xfb\xfe\xed\x89\x2f\xf4\xf9\x8a\xdd\x25\xca\x0c\x0e\x6b\x35\x96\x93\xcc\xcc\xeb\xad\x13\xcf\xfc\x38\x92\xfc\x82\x21\xf0\xb3\xb0\x42\xf2\xd5\x39\x82\x2a\xde\x32\xd9\xa0\x6e\xca\x51\xf5\x12\xb0\x60\x63\x29\x2c\x30\x31\xf1\x46\x50\x5e\x1a\xb9\x6a\x47\x4b\x0f\x2d\x45\xc5\x2b\x02\x88\xee\x84\xf1\x50\xc1\x23\x9c\x50\x14\xe5\xca\x0a\xa7\x9c\x27\xe9\xda\x92\x70\xee\x79\xcf\xf9\xda\xbf\xa7\xd3\xd4\x39\x26\x20\x08\xe4\xa4\xfb\x1f\x79\xdb\xff\xd5\xef\xef\x48\x7c\x02\xb2\x3c\xd2\xd9\xd9\xa9\x27\x93\x49\xe6\xf7\xfb\xd3\x00\x62\x17\x7c\xea\x0f\xbf\x7d\xe7\xf0\xbb\x9b\x92\xce\x5f\x6b\xcc\x48\x61\x91\x11\x29\x55\x53\x1a\xe9\xf3\x15\x8f\xa7\x9c\x46\x17\x08\xce\x01\x48\x68\x9a\xa6\x57\x3c\xab\xe1\x70\xd8\x08\x85\x42\x19\x00\xb1\x71\xa7\xa1\x3e\x79\x6b\xb2\xd7\x51\xa2\x2d\x2e\x4d\x68\x30\x29\xd7\x27\xec\xc6\x45\x53\xc0\x20\xac\x1a\x0b\xb3\x26\xe2\xce\xe4\x0a\xa6\x92\x41\xaa\x2e\x8e\xc8\x09\x0c\x5d\x60\x39\x2c\xb3\x06\x98\x14\xb1\x74\xd5\xa4\xd9\xbc\x76\x29\xcd\x07\x35\x69\x73\x07\xac\x65\x58\x0a\xb8\x3a\xed\x88\x26\x09\xec\xbc\x50\xfb\x99\xe9\x84\x3f\x19\xf5\x39\xdb\x7d\xb7\x8e\xd4\xec\x3d\xb5\x2e\xf7\xcd\xf6\xf6\x76\xfd\xe0\xc1\x83\x6c\xef\xde\xbd\xba\xdf\xef\x4f\x02\x30\x34\x1b\x4f\xbe\x1d\xcc\x9f\x7d\x3b\x98\x77\xc3\xd2\xca\x05\x58\xc5\x31\x46\x50\xae\x80\x36\x59\x80\x4f\x3d\xf5\x54\xe5\xfc\x14\xac\x02\x98\x89\xa2\xc4\xce\x16\x25\x66\x47\x79\x8a\x28\x9f\x97\x01\xa0\xce\x56\x90\x62\x3a\x02\x50\x00\x74\x3e\xea\x9f\x03\xcc\xa4\x57\xaa\x70\x2e\x1b\xca\x06\xab\x48\x18\x77\xd9\x54\x36\xab\x31\x74\x23\x90\x0a\xac\x09\x9c\x3b\x41\x88\xb8\x67\xcf\x1e\xa3\x7c\x5f\x7b\x30\x23\xdd\xa1\x68\x42\xdb\x5c\xe7\x13\x10\x6c\xbe\xec\x78\xe4\xd4\xba\xdc\x61\x94\x0b\x5c\x1d\x3e\x7c\x98\xed\xd9\xb3\x47\x0f\x85\x42\x49\x58\x82\x8a\xe3\xea\x52\xcf\x80\xa5\xe6\x75\x4d\xd3\xf4\xe9\xf6\x50\x1c\x3e\x7c\x98\x45\xa3\x51\x23\x12\x89\x64\x64\x59\x2e\xc0\x9a\xe7\xe9\xa4\xf3\xe7\x8c\x26\x02\xb3\x04\x83\x28\xaf\x3e\x01\x84\x13\x30\x4e\xf8\xb2\xab\xff\x8a\xbd\x42\x18\x9c\x84\x61\xd1\xcb\xcf\x56\x20\x98\x70\x11\x0e\x3b\x27\xa0\x93\x6a\x08\x4a\xb5\xaa\xb8\xa9\x5a\x2d\x59\x5b\x14\xc3\x84\xc3\xc5\x09\xc4\x68\x34\x6a\x74\x75\x75\x55\x62\x0e\x6c\xf7\xee\xdd\x2c\x1c\x0e\xab\x98\x64\x93\x65\xb3\x59\x36\x57\xbb\x99\x72\x1d\x05\x00\xd0\x3b\x3b\x3b\x8d\xca\x12\x74\x3e\x7d\x0e\x67\x9c\x02\x00\x3e\x3f\x6b\xda\xca\x5d\x5e\x99\xe8\x1f\x01\x5d\xca\x7b\x73\x02\x86\xeb\x0d\x66\xd1\x24\xd5\x8f\x91\x21\x70\xc6\xcb\x6f\xf8\xd4\xee\xa5\x93\xa2\xa6\x0b\xfe\x0d\x0b\x75\xbd\xcf\xf8\x96\x33\x52\xbd\x41\x47\x38\x68\xb5\x95\x32\x97\x02\x4c\x80\x61\x8a\x24\x47\x75\xbe\x24\x5a\xc0\x90\x48\x86\x13\x32\x75\x80\xd9\xb0\x5b\x3f\x6f\x12\x6e\x08\x55\x68\xcb\x78\xad\x16\x43\x79\x4c\x97\xc2\x4f\x52\xc9\x26\x02\xe6\xd7\x02\x77\xa6\x07\x67\x8c\x72\x83\xa3\xba\x12\x22\x04\xa0\x02\x23\x15\x07\xc8\x72\x83\x01\x44\x55\x5d\x74\xc8\x96\x32\x03\x4b\x71\x83\xa2\x8b\x0e\x82\x58\x3e\x8e\x64\x32\x09\xbf\xdf\xcf\x00\xa8\x69\x87\xd1\xdf\xef\x2d\x9e\xd8\x38\xe6\xbc\x7b\xb6\xf3\x4d\xc2\x8d\xd3\xc1\xfc\xf3\xb0\xe6\x7f\x63\xb2\x7a\x9e\x54\x06\x66\x72\x7b\xdb\xaa\x3a\x94\xb6\xb5\xb5\xd1\x68\x34\x3a\xb9\x8a\x29\x2d\x5f\xd3\x40\x95\x7d\x0c\x67\x64\xae\x26\xf2\x9c\xa5\xd7\xe7\xa6\x00\xe1\x10\x65\x83\xb8\xb0\xcc\x04\x18\x1e\x1e\x46\x28\x14\x32\x40\x50\xc8\xfa\x85\x6e\x25\x65\xde\x50\x59\xda\x99\x90\xf3\x8b\xa7\x51\x0e\x72\x1d\x3e\x7c\x98\x95\x53\xb1\x54\x10\x24\x5e\xda\x9c\xfe\x86\x2f\x2f\x85\x3d\xaa\x38\x2d\xf9\x38\x38\x5e\x6b\x9d\xf8\xd1\xa8\x5b\x3f\x01\xcb\xd8\xbb\x22\x90\x72\x91\x2d\x89\x70\xd8\x7d\x39\x5b\xa3\x2f\x6f\xdb\x40\x00\x3a\xee\x30\xfa\x13\x0a\x86\xda\xdb\xdb\xd5\x70\x38\xac\x4f\x97\xd6\x35\x29\x1d\xcc\xe9\xcf\xd9\x5a\x36\x5f\x76\xee\xf6\x16\xc4\xcd\x25\x81\x17\x2e\x7a\xd4\x9f\xf7\xd6\x17\x8f\xb6\xb7\xb7\x67\xc2\xe1\xf0\xb4\x46\x64\x05\xd3\x11\x80\x01\x60\x9a\xc8\x0a\x8c\xc0\x10\xf8\xdc\x9b\x47\x08\x08\x9c\xba\xe0\x01\x4a\x15\x16\x2f\x8b\x2d\xd0\xd5\xd5\xc5\xca\xf9\x73\xb9\x74\xa3\xed\xe7\x8d\xbd\xfa\xc7\x29\xab\xce\x77\x51\x2d\x0c\x11\xb9\x89\x80\xf8\x3a\xca\x6e\x6e\xc0\x9a\x6f\xdb\xdb\xdb\x0d\x00\xc9\x9c\x6c\x9e\xf8\xcf\x1d\x89\x2f\xbc\xef\xdd\xba\xdf\x5b\x9f\xb2\x6f\xa5\xe5\x52\xf2\x1c\x1c\x79\xc9\xcc\x1c\x5d\x3f\xf1\xe3\xb3\x0d\x85\x1f\xc0\xda\xc4\x71\x65\x83\x4c\x59\xf8\x4e\x7f\xce\xd6\x76\xff\xbb\x75\x7f\xd3\x98\x91\x3e\x40\x61\x05\x88\x38\xb8\x9e\xac\x29\xbd\x72\x64\x63\xfa\x6f\x87\xea\x70\x72\xd7\xae\x5d\x05\xe0\xea\x7e\x81\x4a\xfd\x20\xca\xe0\x79\xcf\x05\xcf\x81\x1d\x97\x5c\x7f\x39\xb9\x91\xe6\x2d\xa3\x35\x7f\x7e\xef\x80\x71\xfc\xd9\x2d\x63\x7f\x11\xaf\xc5\xc9\x03\x07\x0e\x14\x66\x2a\x4c\x79\x9d\x70\x35\x4d\x83\x2c\xcb\xac\x44\x59\xc1\xa4\x5c\x15\x4c\xe2\xaa\x66\xa0\x14\x4d\x08\x4e\x77\xbd\xa5\x86\xa6\x69\x86\x2c\xcb\x39\xdd\x49\x63\xe9\x46\xf1\x35\x6f\xdc\x58\x70\x89\xda\xe9\x30\xd6\x6c\x7b\xd1\x94\xc8\x20\xa6\x94\x75\x2f\x93\x2f\x07\xa0\x3f\x27\x9b\xec\xc9\x5b\x93\xf1\xba\xa2\xb8\xad\x31\x23\x6d\xb2\x99\xd4\x3e\xe1\x30\x46\xe2\x6e\xed\x4c\xc9\xda\x1c\xd3\x8b\x72\x4d\x84\x23\x47\x8e\xb0\x8a\xf0\x03\x59\xdb\xf6\xbd\xa7\x03\xdf\xb3\x1b\xf4\x9a\x78\x00\x01\x91\xea\xf3\xd2\x03\xff\xad\xbb\xfe\xce\x67\xb6\x8c\xfd\x41\x6f\x7d\xf1\x85\xc9\xb1\x88\xf2\x9b\xef\x7e\xcf\x05\xcf\x27\xef\x18\x72\xfd\xf5\xd4\x95\x08\x01\x50\xab\x8a\x77\x3e\x7a\xa6\xfe\x07\x87\x6f\xbb\xfc\xd1\x51\x45\x3f\xb1\x6f\xdf\xbe\x69\x4b\xd3\x5e\xb7\x37\xb0\xb9\xb9\x99\x28\x8a\x22\x32\x0a\xef\xb6\x61\xd7\x87\x64\x93\x2a\x53\xbf\x33\x1d\x52\xce\x52\xdf\xa0\x57\x7b\x05\x40\xbe\xab\xab\x6b\xd9\xf6\x00\x7a\x3c\x1e\xe2\xf7\xfb\x19\x08\x84\x42\xad\x50\xf4\x5e\x32\x3a\x17\x4b\x0b\x68\x0e\x92\x1c\xdc\xee\xf8\x47\x2e\x90\x77\x00\xa4\xbb\xbb\xbb\xcd\x4a\x6f\x9f\xe1\xe1\x61\xee\x72\xb9\xb8\xdf\xef\xd7\x01\x64\x41\x90\x52\x6d\x6c\x20\xe9\x2a\x75\x8f\xba\xf5\x37\x27\x1c\xc6\x09\x46\x71\x0e\xd6\xbe\xc8\x31\x4d\xd3\x8a\x87\x0e\x1d\x62\xd1\x68\x94\x36\x37\x37\x8b\x84\xa1\xfe\x43\x6f\xd7\x7f\xc5\xa3\x8a\x33\xd6\x75\xa1\x9c\xd8\x9b\xc7\xe5\xf7\xbc\xd3\x98\x7f\x8a\xcb\x42\xb6\xb5\xb5\xd5\xdc\xb1\x63\x07\x91\x65\xd9\x51\x9f\xb3\xdd\xf1\x40\xcc\xfb\xcf\xb3\xed\xd7\x10\x39\xa9\x09\x64\xa5\xcd\x6f\x07\xf3\x3f\x95\x2c\x5f\x01\x9f\xda\x9b\x68\xa6\x39\x9b\x71\x02\x35\x27\x9b\xd7\x87\x8f\x66\x80\xaf\x60\x0b\xc3\x2a\x93\xba\xac\x76\x40\xd9\xc8\x31\x00\x24\x4b\x0e\x7a\xf2\x62\x44\xfe\xd6\x7c\x56\x30\x33\xc1\x14\xa0\x0f\x6e\xb7\xff\x9b\x29\x91\x73\x28\x6f\x6f\x9b\x6a\x5d\x1f\x39\x72\x84\x75\x75\x75\x19\x9a\xa6\x65\x60\xed\xd1\x3b\x07\xe0\x24\x80\x13\x00\xba\x51\x2e\x77\x1b\x8f\xc7\xaf\x94\xbf\xab\xc4\x2e\x82\x59\xe9\x8e\x40\xce\x36\x67\x1f\x05\x87\x21\x34\x6d\x19\xad\xd9\x8b\x72\x09\x98\xb2\xc1\xe7\x6a\x1f\x75\x7e\x58\xa8\x22\xa7\x20\x90\xb3\xed\x0c\x4e\x48\x3b\x00\xd8\xcb\xf7\xbe\x06\xd7\x09\x6b\x78\x78\x18\xb0\xe6\x70\x3d\xed\x30\x46\xe6\xba\x41\x05\xde\x82\x2d\x4c\xb8\x55\xa6\xa4\x5c\xe8\x68\xd9\x50\xde\x18\x99\x03\x30\x38\xd1\x68\x7b\x72\xe8\x56\xf9\xbb\x8c\x2e\x9c\x04\xa6\x00\x7d\xe0\x36\xc7\xd7\xf3\x5e\xf1\x67\xb0\xf6\xe6\x15\x66\xda\xe0\xd2\xd5\xd5\xc5\x0e\x1d\x3a\xc4\x8e\x1e\x3d\x6a\xc4\xe3\xf1\x8a\x0b\x36\x9d\xcd\x66\x33\x3d\x3d\x3d\xea\xc1\x83\x07\xaf\xa9\x78\x5a\xc9\x08\x6a\xc8\x4a\xd1\x6a\x52\xba\x00\xa0\x31\x2b\xdd\x85\xab\x25\x60\x28\x00\x67\x20\x27\x55\x15\xf8\x22\x20\xb4\x21\x27\xdf\x05\xc0\x3e\x5d\x46\xd0\x75\xea\x63\x92\x61\xa5\x26\x6b\x4a\x83\xd5\xdc\x04\x00\x5c\x9a\x10\x72\x69\x82\x3f\x6b\x37\xcf\x97\x5d\xa5\xcb\x86\x63\xc7\x8e\xb1\x60\x30\x68\x94\x7d\xe3\xb1\x54\x93\xf4\xbd\x92\x83\x66\x9a\xcf\xa8\xbf\x29\xa9\xbc\xea\x90\x36\x00\xa8\x35\x34\x31\xb8\xdd\xfe\xad\x82\x47\xa8\x54\x2f\x4d\xc7\xe3\xf1\x39\x37\xb8\x74\x77\x77\xb3\x79\xec\x82\x92\x04\x56\x7d\xf7\x73\x81\x11\x17\xae\xd5\xae\x92\x49\xe7\xe1\x84\xa2\xac\xb2\x4c\xbc\x0e\x33\x4e\x01\x00\xd4\xb1\x9a\x52\x5f\xb5\x45\xe7\x04\x4e\xa4\x86\xac\x14\x01\x20\x2d\xa4\x5a\xd5\x8d\xe2\xf0\xe1\xc3\x4c\xd3\x34\xab\x28\x33\x41\x77\xd6\x2f\xfe\x57\xcf\x7d\x35\x9f\x1b\xd9\x28\xbd\x58\x92\x48\x6e\xb6\xdf\xc1\x01\xe8\x76\x92\x8e\xb7\xcb\x3f\x89\xed\x74\x7e\xae\xe0\x11\x9e\x04\x70\x16\x40\x22\x99\x4c\x2e\x49\x53\x87\x09\x87\x71\xb9\xda\xb1\x4d\xd6\xe8\x83\xb8\x76\x65\xc5\x12\x2e\xbd\xbf\x9a\x73\x4d\xc2\xf5\x81\x3a\xf5\x6d\xcc\xb0\x32\x9b\xd1\x11\x04\x4b\x03\x9c\x37\x09\xd7\xc5\x2a\x03\x43\x2d\xe3\xf6\x7b\x7a\xeb\x8b\x87\x61\xad\x77\x97\x1d\x87\x0e\x1d\x62\xfb\xf7\xef\x57\x65\x59\x1e\x01\xa0\x9a\x36\x92\x1a\x69\x93\xfb\x47\x37\x4a\x61\xd7\x98\x79\x9b\x6b\xdc\xdc\x64\xcf\x31\xbf\xa0\x73\x27\x08\x60\x48\xa4\xa0\xba\xe8\x48\xce\x2b\xc4\xf2\x75\xc2\x19\x2e\x90\x7e\x58\x2a\x7f\x04\x40\x66\x09\xcb\xd8\xe9\x17\x3d\x5a\xb7\x2a\x9a\x69\x87\x21\xcc\xaa\xa1\x0c\xca\xf5\xb3\x8d\x85\x23\xb8\xb6\x04\x4c\xe1\x6c\x63\xe1\xa5\xdb\x87\x94\xc7\x24\x46\x67\xb5\x03\x2e\x78\x8b\x27\x32\x76\x73\x10\x80\x5a\x2e\x3f\x73\x0d\xa6\xad\x10\x12\x89\x44\x20\x8a\xa2\x58\x12\xb8\xb2\x25\xe1\x7c\xd0\x61\x08\xb5\xd5\xfc\x2a\xd9\xa0\xf6\x53\xeb\x72\x3f\x02\xc1\x84\x24\x49\xe6\xd0\xd0\xd0\xb2\x77\xc3\x3c\x75\xea\x14\x0f\x06\x83\x4c\x51\x14\x0d\x40\x16\xc0\x18\x28\x19\xd1\x6b\x68\x2c\xe7\x17\xdf\x4a\x87\x6c\xaf\xa7\x9a\x6d\xaf\xa6\x9a\x6c\x2f\xa5\x83\xb6\x97\x72\x3e\xf1\x15\xdd\x49\xdf\x04\x25\xef\xc0\x32\xda\x46\x00\x64\xfb\xfb\xfb\x97\xa4\x5a\x79\x5b\x5b\x1b\x64\x59\xa6\x86\xc0\x6d\x25\x81\xbb\xc2\x29\xfb\x8c\xd9\xc1\x1c\x1c\x27\x9a\xb2\x4f\xbf\x5b\x5f\x7c\xb2\x9c\x14\x52\x84\x45\x02\xa2\xd9\x18\x51\x6d\x4c\x0e\xa7\xec\xdb\x09\xc8\xb4\x17\xc8\xca\x46\xea\x27\x5b\xc7\xfe\x51\xb7\xf1\x33\x00\xc6\xfa\xfa\xfa\xcc\x81\x81\x81\x6b\x64\x32\x2d\x01\x1a\x1a\x1a\x88\xc7\xe3\x11\x40\xe0\x0a\xe4\xa4\x3b\x02\x39\xa9\xaa\xec\x60\xc9\x20\x9e\xf3\xbe\xe2\x0b\x05\x99\x5d\x74\x3a\x9d\x5a\x77\x77\xf7\x8a\xb4\x43\x8d\xc5\x62\x3c\x9b\xcd\x72\x9f\xcf\xa7\xcb\xb2\x5c\x84\x65\x98\x8d\x01\x18\x86\x65\xad\x0f\x02\x18\x80\xe5\x9c\x19\x04\x70\x09\x56\xfc\x3d\x93\xcd\x66\xf5\x43\x87\x0e\x99\x7d\x7d\x55\xcf\x7e\xf3\x05\x69\x6e\x6e\x66\x00\xf8\xa8\xa2\xa7\x4d\xca\x9d\xa1\x8c\xbc\x89\x4e\xe9\x45\xc8\x08\x67\x27\xd7\xe5\x5e\x3a\xba\x7e\xe2\x6b\xdc\x5a\x4e\xa6\xfb\xfb\xfb\xcd\xd1\xd1\x51\xf8\xfd\x7e\x0e\xc0\x4c\xb8\x4a\xc9\x71\xa7\xa1\x37\x64\xa5\xf5\x92\x49\xec\x15\x22\x95\xf7\x68\xf4\x3e\x75\xeb\xd8\x3f\x65\x1c\xe6\xd1\xf2\x6f\x2e\x1e\x3e\x7c\xf8\xba\xe5\xf9\xb4\x53\x40\x3c\x1e\x47\x38\x1c\x36\x00\xe4\x06\x3d\xea\xc9\xad\x23\x35\x0f\x54\x13\x13\xa0\x20\x74\x73\xd2\xf9\xe0\x65\x65\xe2\x0d\x45\x51\x2a\x39\x6c\x2b\x82\x72\x81\x05\x00\xd0\x77\xef\xde\x6d\x04\x83\x41\x75\x8a\xbf\x1d\x28\x3f\x5f\x35\x7e\xf7\xc5\x42\x77\x77\x37\xdb\xb6\x6d\x9b\xa1\x28\x4a\x0a\x04\xe7\x8e\x37\x67\xbf\xd6\xe7\x2f\x9e\xde\x32\xea\xbc\xaf\x3e\x27\x35\x11\x00\x29\x67\x29\xd1\x13\x28\xbc\x96\x70\x95\x7e\x51\xce\x08\x4a\x4e\xce\x08\x0a\x85\x42\xba\xa2\x28\x49\x10\x9c\x8d\x05\x0a\xfa\x79\x5f\xb1\x6b\xdd\x84\x7c\xbb\x3f\x6f\x0b\x95\x28\xd7\x47\xdc\xda\xf9\xcb\xae\xd2\x5b\x9c\x20\x86\xb2\x07\x72\xa6\x12\x32\x33\xca\xb5\xdc\x09\x24\x50\xa3\xd1\x5d\xbf\xff\x7a\xe8\x1b\x42\x95\x76\xc0\x84\xdd\xe8\x3d\x74\xd7\xf0\xa3\x8c\xa2\xbf\xa7\xa7\x47\x5d\x2b\x0d\x33\x3d\x2a\x1d\xd6\x50\xe9\x3a\x06\x04\x60\x65\x1d\x51\x58\x4b\xda\x04\xae\xf6\x45\x54\xa7\xba\x72\x27\x9d\xef\x2e\x5f\xc3\x0b\x6b\xa9\x58\x59\x12\x27\xcb\x47\x61\xb6\x2e\x25\x33\x56\x09\x2b\xdb\x01\xb4\x24\x70\xc7\xfa\x71\xfb\x7d\x8a\x26\x56\x95\x22\x2e\x1b\xc4\x3b\xe2\xd6\x8f\xa7\x9d\x46\x9f\xa2\x28\xea\xa9\x53\xa7\x56\xac\x35\xfa\x6a\xc6\xa9\x53\xa7\x78\x5b\x5b\x9b\x39\x69\x8a\x1a\x85\x35\x15\x5d\xc4\x55\x43\x34\xad\x69\x9a\xfa\xf5\xaf\x7f\xfd\x3a\xd5\x5d\xb6\x75\x4c\x45\x51\x8a\xa8\xd8\x3a\xd6\x35\xe2\xe5\xbf\xe3\xb0\x9a\x6f\x98\xb3\x25\x87\xcc\x48\x80\xb2\x8b\x95\x80\xc0\x29\x1b\xb4\xb5\x75\xdc\x7e\x5b\x35\x3f\x8c\x80\x40\x36\xa8\xbd\xa7\xa1\xf0\x82\x28\x8a\x79\x4d\xd3\x78\x22\x91\x58\x23\xc1\x34\x28\xdb\x48\x5c\x51\x14\x5d\x96\x65\x15\xd6\x9b\x9b\x85\xd5\x28\x4b\xed\xee\xee\x36\x7f\xfa\xd3\x9f\xce\x28\xbc\x58\x2c\xc6\xbb\xba\xba\x98\xcb\xe5\x32\x65\x59\xd6\xca\x64\x52\x93\xc9\xa4\xde\xd7\xd7\x67\x3e\xf1\xc4\x13\xe6\x5c\x6d\xe9\x67\x9d\xda\x0f\x1c\x38\x20\x01\x68\xf4\x14\xc4\x0f\x7c\xe2\x78\xe3\x97\xab\x49\x7c\x00\x00\x93\x70\xf5\xf1\x3b\x46\x3f\x9c\x74\x95\x8e\x66\xb3\xd9\xdc\x6a\xef\xf8\xf5\xab\x8c\xb9\x04\x6a\x00\xc8\xa5\x1d\x46\xef\xb0\x5b\x3b\xd7\x34\x61\xaf\xaa\x20\xbd\xc0\x89\x3d\x7a\x51\xd9\xff\xec\x96\x54\xb7\xa2\x28\x6a\x5b\x5b\x9b\xb1\x56\x1e\x76\xe1\xa8\xf4\x1e\xc2\xa4\x84\x91\x64\x32\x89\xc5\x68\x9e\x39\x6b\xa5\x50\x9f\xcf\x47\x3c\x1e\x0f\x40\x20\x01\xf0\xcf\x95\xf9\x32\x19\xde\x82\x6d\x43\x5f\x7d\xf1\x85\xa2\xc4\x46\x7d\x3e\x9f\xbe\x52\x4b\xc2\x9b\x19\x7b\xf6\xec\xa1\xbb\x76\xed\x12\x3c\x1e\x8f\x2c\x19\xc4\xed\x2d\xd8\x42\x8a\x26\xfa\x4c\xca\x05\x49\x71\xf0\x70\x38\xcc\x5b\x5b\x5b\xf9\x3b\xef\xbc\xb3\xe0\xb1\x9d\x95\x00\x7d\x7d\x7d\x3c\x1a\x8d\x12\x00\xc2\x84\xdd\xe0\xb7\x8e\xd4\x3c\x68\x9b\xc3\xf3\x54\x01\x05\xb1\xb9\x34\xc1\x13\xab\x2f\xbc\x24\xcf\x10\x8a\x5c\xc3\xcc\xd8\xbb\x77\x2f\x6d\x68\x68\x90\xe4\x12\x09\xdc\x77\xc1\xf3\xc7\xbb\x7b\xbc\xff\x74\xfb\x25\xe5\x33\x91\xe1\x9a\xff\xb9\xe3\x92\xeb\x37\x7d\x05\x5b\xd3\xa8\xa2\x9f\x13\xdd\x8e\x62\x24\x12\x31\x17\x6a\x6c\xcf\x59\x2b\xb8\xad\xad\x8d\xcb\xb2\x4c\x4c\x0a\x9b\xa3\x44\xc3\xa1\x8c\x3c\x67\x1e\x7c\x05\x9e\xa2\xb8\x71\x44\xd1\x4f\x4c\x38\x8d\x7e\x9f\xcf\xa7\xad\xad\x08\xaa\xc3\x9e\x3d\x7b\x68\x43\x43\x83\xe4\xd0\x69\xcb\x47\x4e\x07\xbe\xb9\x71\xcc\xf9\xbb\x22\xa3\x5e\x02\x42\x09\x08\x15\x38\x71\xfb\xf3\xd2\xdd\x9b\x93\x8e\x07\x2e\x78\xd5\x9f\x1b\x0e\x9a\x6e\x6b\x6b\x33\x17\xa2\x65\xe7\x24\x80\x2c\xcb\x24\x14\x0a\x71\x00\x34\x6d\x37\xd8\xb6\x61\xd7\x6e\xca\xab\xeb\x12\x46\x40\x68\x63\x56\x6a\x10\x39\x0b\xf4\x00\x00\x0b\x4d\x49\x44\x41\x54\x3f\xdb\x90\xff\x29\x91\x84\x7c\x30\x18\x34\x17\xd2\xd9\xea\x57\x0d\xbb\x76\xed\x12\x00\x78\x1f\x3a\xe7\xfd\x3f\xcd\x13\xf6\x47\x66\xfa\x9e\x6c\xd2\xfa\x60\x46\xbe\xf5\x6c\x63\xfe\x19\xc9\xbe\x30\x2d\x3b\xa7\x20\x87\x87\x87\x79\x79\x1f\x1c\xd7\x6c\x5c\x70\xab\xc2\xe6\x40\x4e\x6a\xad\xf6\x06\x0e\x43\x08\x08\x9c\x18\x83\x5e\xf5\xb8\xa2\x28\xda\xda\xb2\x70\x76\xec\xdd\xbb\x97\x3a\x9d\x4e\x87\x37\x2f\x46\x3a\xfb\xea\x3e\x3f\x57\x85\xd6\x1a\x9d\xb6\x5c\x56\x4a\x27\xc7\x9d\xc6\xf9\x85\x68\xd9\xaa\xc2\xb6\xe5\x44\xc6\x02\x80\xf8\xf1\xe6\xec\x7f\xcd\xb6\xa5\x79\x3a\xec\xb8\xe4\xfa\xa3\xe6\x71\x79\x27\x00\xe7\xce\x9d\x3b\x57\x6c\xff\xc0\xcd\x80\x4a\x7d\xc6\x60\x46\xbe\xb7\x9a\x8c\x1f\x02\x82\xd6\x94\xfd\xfd\x00\x9c\x65\x57\xf7\xbc\x50\xd5\x09\x93\xd2\xae\x52\x69\x87\x71\xfa\x6c\x15\x9d\x2c\x26\x43\xe0\xc4\xfe\x60\x8f\xf7\xf3\x4e\x9d\x86\x01\x5c\xd9\x2b\xbf\x86\x19\x21\xc9\x06\xad\xaf\xfa\xcb\x26\xf1\x62\x81\xe9\x78\x55\x9f\x50\xd6\x02\x39\x10\xc4\xdf\x68\xcd\xfc\x40\x15\xd9\xb4\x85\x09\x66\x82\x5b\x13\xdb\x1e\x3a\xe7\xfb\x3b\xca\x10\x50\x14\x45\xda\xb3\x67\xcf\x1a\x09\x66\xc1\x84\xc3\xa8\x7a\xfb\x50\xb2\xa6\x14\x5f\xe8\x7d\xaa\x16\xc2\xe4\xe4\xcb\x9c\x6c\x76\x77\x35\x65\x9e\x99\xef\x44\xde\x32\x2e\x3f\xfc\xde\x3e\xcf\xa7\xc0\xe1\x09\x85\x42\xe2\x72\xe7\x0e\xde\x44\x30\x86\x6a\xb5\xb3\x45\xd1\x4c\xcf\xf5\x45\x93\x70\xa3\xd7\x5f\x7c\x1d\x58\xd8\xee\xec\x79\xb5\x8e\x95\x24\x09\x0d\x0d\x0d\x0c\x00\x4b\x28\xa5\xec\xc6\xa4\xfd\x5e\x67\x49\xa8\x3a\xb7\x8d\x80\xa0\x21\x2b\xdd\x65\x50\x9e\x1c\x76\xeb\xe7\xfc\x7e\xbf\xee\x72\xb9\xf8\xd4\x24\x85\x5f\x65\xb4\xb6\xb6\xc2\xe9\x74\x52\x53\xe0\x92\x49\xb9\xa7\x75\xdc\x7e\xdb\xcc\x09\x23\xc0\x99\x50\xfe\x85\x73\x8d\x85\x1f\x02\x88\x6b\x9a\x56\x9c\xaf\x11\x38\x2f\x02\x0c\x0d\x0d\x55\xfa\xd9\x98\x8c\x82\xa7\x9c\x86\xb9\x25\xe1\xdc\x39\x53\x46\xca\x74\x20\x20\xa4\x39\x2d\x77\x16\x24\xf3\x62\x42\x29\xf5\xfa\xfd\xfe\xd2\x1a\x09\xae\x42\x10\x84\x2b\x09\x23\x23\x8a\x9e\x16\x18\xa9\x0b\x66\xa5\x0d\x53\xc7\x98\x83\xe3\x5c\xa0\xf0\xc6\xcb\x9b\xd2\x5f\x29\xef\x3f\x48\x4d\x97\xf1\x33\xe7\xfd\xe6\xfb\x80\xa6\x69\x56\x1e\xd0\xc8\xd8\x4d\xcd\x6e\xd0\x60\x30\x2b\x57\x5d\x4f\x10\x00\x08\x88\xd0\x3a\x6e\x7f\x7f\x41\x32\x07\x12\x4a\xe9\xfc\x1a\x09\xae\x22\x91\x48\xf0\xb2\xf3\xcd\x04\x81\x76\xd1\xa3\x0d\x0e\xd6\xa9\xc3\x84\x13\x99\x72\x42\x8a\x36\x56\xb8\xe8\xd1\xfa\x5e\xdd\x30\xf1\x44\x57\x73\xf6\x3b\x8c\xe2\x0c\xac\x66\x9c\xc5\x27\x9e\x78\x62\x69\xa7\x80\xca\x03\x06\x83\x41\xae\x28\x8a\x09\x02\x33\xee\xd6\xd2\x1b\xc7\x1c\x77\x3b\x4b\x42\x55\x3b\x88\x2a\xa0\x20\x62\x38\x65\x7f\x50\x17\xd8\xe8\x88\xa2\xc7\xfc\x7e\x7f\x29\x18\x0c\xf2\x35\x47\x91\x15\x26\x8e\x44\x22\x86\x28\x8a\x2a\x08\x32\x39\xbb\x39\x74\xde\x5f\x7c\xeb\xf4\xba\xdc\xd1\xd3\xeb\x72\x3f\xeb\xad\x2f\xfe\x2c\xed\x34\x8e\xc1\xca\xf8\x19\x06\x50\x78\xf5\xd5\x57\xf9\x7c\x3b\x87\x03\x0b\x20\x00\x60\xc5\xa1\xa3\xd1\x28\x07\x50\x62\x14\xc6\xa8\x5b\xcb\x6f\x19\x75\x76\x08\x55\x7a\x08\x2b\x20\x20\x62\xcb\xb8\xfd\x41\xc9\x24\xec\x62\x9d\x76\x46\x71\x2b\xa5\xd6\xd6\x56\x76\x23\xc1\x8d\xd5\x86\xce\xce\x4e\x1a\x0e\x87\xc9\x7c\xb5\xdb\xa9\x53\xa7\x2a\x24\x28\xc2\x4a\xee\x18\x85\x95\xdb\xd7\x5f\x3e\x2e\xa1\xbc\xe5\xec\xd5\x57\x5f\xe5\x0b\x8d\x0a\x2e\x88\x00\x80\xb5\x89\xb4\xb9\xb9\xd9\x04\x50\xca\xcb\x4c\x55\x6d\x4c\x5e\x9f\xb2\x6f\xab\xb6\x64\x4a\x05\x04\x84\x06\x33\xd2\xaf\xf9\x73\xb6\xd0\x60\x9d\x76\x42\x52\x1c\xc5\x48\x24\xc2\x4d\xd3\xc4\xcd\xec\x31\xac\x44\xf2\xea\x7d\x7e\x5b\x43\x5d\xbd\xed\xf6\xbb\xa2\xdc\xe5\x72\x61\x3e\x44\x28\x1b\x74\xcc\xe7\xf3\x69\xa2\x28\x16\x60\x25\x8b\x64\xca\x7f\x8b\x3d\x3d\x3d\xe6\x13\x4f\x3c\xc1\x16\xf2\xe6\x57\x70\x43\x95\xd5\xca\xf5\xf8\x25\x00\x8d\xe0\xb8\xe3\x81\x58\xdd\x5f\x44\x46\x5c\x73\xee\x77\x9b\x09\x29\x47\xe9\xc4\xb3\x5b\x52\x9f\x1a\x75\xeb\xa7\x61\x75\xc2\x5c\x92\xd4\xec\xa5\x44\x24\x12\xa1\xd1\x68\x14\xb2\x2c\xdb\x6d\x06\xf1\x3e\x10\xf3\xfe\x29\xe5\x10\x9f\xde\x3a\xf6\x77\x20\xc8\x9d\x39\x73\xc6\x58\xce\xc6\x14\x73\x61\xc1\x1a\x00\xb0\xa6\x82\xf2\xaa\xa0\x04\x82\xd2\x60\x9d\x36\x1c\xcc\x48\xb7\xd6\xaa\xe2\x82\xf6\x86\x39\x0c\x21\x78\x4b\xa2\xe6\xc3\x8c\xf0\xec\x88\xa2\xf7\xba\xdc\x8a\x19\x89\x44\x4c\x51\x14\xc9\xcd\x10\x4a\xde\xbb\x77\x2f\x6d\x6f\x6f\x17\x45\x51\x74\x35\x66\xa4\xdb\x1f\xed\xae\x3f\xd8\x34\x61\xff\x0d\x6f\x41\xbc\x27\x2f\x99\x17\x12\x4a\xa9\xb7\xa1\xa1\x61\x55\x75\x51\xbb\x21\x02\x00\x96\x9a\x2a\xef\x25\xd4\x18\x45\x69\xc0\xab\x8e\x86\x53\x8e\xdb\x9d\x25\xa1\xaa\xba\x02\x53\x41\x39\xb1\x37\xa7\xe5\x87\xc2\xe3\xf6\x3b\x92\x35\xa5\x1e\xb5\x86\x4c\x84\x42\x21\xb3\xad\xad\x8d\xeb\xba\x4e\x6e\x44\xdd\x2d\x15\x2a\xea\xde\xe9\x74\xca\x92\x41\x02\x3b\x2f\xd4\xfe\xc9\xfd\xef\x7a\xbf\xe4\x2a\x09\x1b\x09\xac\xa5\x6f\xd3\x84\xfc\x9e\x0b\x5e\xf5\x48\x41\x62\xc9\x48\x24\x52\x5a\x2d\xa1\xf1\x1b\x26\x00\x00\x64\xb3\x59\x84\xc3\xe1\x12\x00\xad\x24\xf0\x62\xbf\xb7\x38\xba\x31\xe9\xb8\x43\x36\xa9\x63\x21\xd7\x23\x20\x70\xe9\xe2\xfa\x5b\x46\x6b\x3e\x56\x5b\x14\x3d\x97\x5d\x7a\x1f\x6a\x6c\x5a\x38\x1c\x66\x95\xfc\x84\xd5\xa0\x11\x2a\x82\x57\x14\x45\xa6\x0c\xb5\xb7\x8c\x3a\x1f\x7e\xf8\xac\xff\x2b\xe1\x71\xc7\x63\x02\x88\x3c\xf9\xbb\x02\x27\x8e\xd0\x84\xb4\xfd\x5c\x43\xe1\x59\x22\x09\x85\xd6\xd6\x56\x73\x35\x18\xbb\x8b\x42\x80\xb1\xb1\x31\xee\x72\xb9\xe0\xf7\xfb\x4b\x00\x8a\x9a\x8d\xe7\x07\xeb\xd4\xb1\x0d\x63\x8e\xdb\x64\xb3\xba\x0c\xa2\xe9\x40\x41\xa4\x40\x5e\xba\x27\x32\x52\xf3\x98\xa3\x44\x1d\xc9\x1a\x63\x90\x38\x6d\x7a\x28\x14\x62\xd1\x68\x94\xbb\x5c\xae\x79\x5b\xd7\x37\x8a\x48\x24\x42\xdf\xff\xfe\xf7\x93\x9d\x3b\x77\x0a\x8a\xa2\xc8\x84\xa3\x76\x53\xd2\xb1\xeb\x03\xe7\x7c\xff\x77\xdb\xb0\xeb\x7f\xd9\x4d\xa1\x61\x26\xc3\xca\x51\x12\x82\x2e\x5d\xa8\xe9\xf3\x15\x8f\x39\x6b\x9c\xaa\x24\x49\x7c\x25\xb6\xcf\x4d\xc6\xa2\x96\xd7\xad\xd4\xae\x81\xb5\x49\xa1\xcd\x53\x10\xdf\xfb\x68\xb7\xff\x93\x75\x45\x5b\xd5\x65\xe7\x67\x43\x89\xb2\x44\x4f\xa0\xf0\xfd\xd3\xa1\xdc\xa1\xcb\xae\xd2\x79\x6e\x55\xee\x32\x34\x4d\x33\x96\x72\x67\x4f\x34\x1a\xa5\xad\xad\xad\x95\x50\xad\x08\x40\xb2\x97\xa8\xa7\x2d\xe1\xd8\x7d\x5b\x5c\xf9\x03\x6f\x41\xbc\xbb\xda\xbd\xfe\x1c\x9c\xfd\xac\x6d\xfc\x4f\xbb\x83\xf9\xef\x02\xc8\xcc\x54\xbb\x67\xb9\xb0\xe8\xf5\x95\x2b\x9d\x3b\x00\x78\x00\x6c\x72\xa9\xc2\xce\x3d\x67\x7d\x7f\xdc\x98\x95\x5b\x16\xeb\x1e\x0c\x5c\x4f\xba\x4a\xaf\xbc\xd3\x90\xff\xc1\x05\xaf\xfa\x72\xda\x61\x24\x40\xa0\xa3\x5c\xab\x38\x9b\xcd\xb2\x6c\x36\x3b\x5b\xc3\x86\x59\xd1\xd1\xd1\x41\x7d\x3e\x1f\x26\x55\x05\x15\x01\x48\xa2\x49\x9c\xeb\x26\xe4\xad\x5b\x12\xce\x0f\xaf\x1f\x73\x7c\x48\x36\x68\xcb\x42\x06\x50\x17\x58\xea\xfb\x3b\x12\x1f\x49\xba\x4a\x27\x34\x4d\xcb\xcd\x56\xc5\x6b\xa9\xb1\x14\x05\xb6\xa7\x92\x20\x2c\x19\xe4\xce\x07\x7b\xbc\x7f\xb8\x29\xe9\xd8\x3e\x5f\x3f\xc1\x5c\x30\x09\xcf\x24\x6b\x4a\xaf\x0d\x78\xd5\x97\x2e\x7a\xd4\xa3\x09\x57\xe9\xbc\x66\xbb\x52\xb8\xba\x52\xbc\xfa\xba\x22\x8f\x93\x3e\xd3\x29\x9f\x2b\x87\x08\x0e\xc9\x53\x14\xfd\xa1\x8c\xbc\xa3\x35\x65\x7f\x5f\x73\x5a\xde\xe5\x28\xd1\x4d\xd5\xbe\xed\xb3\x21\xe9\xd4\x4f\x7c\xff\xf6\xc4\x3e\x5d\xe4\x83\xfd\xfd\xfd\xfa\x4a\xf5\x58\x5c\x12\x02\x00\x57\x72\xd9\x45\x58\x7b\xd7\x5a\x28\xc3\xf6\xbb\x07\xdd\xfb\xee\x1a\x74\x3f\x20\xf0\xa5\xa9\x2a\xca\xc1\x99\x41\x79\x72\xdc\x61\x74\x8f\xd5\x94\xce\x25\x5d\xa5\x9e\x8c\x6c\xf4\x67\x1c\x66\x5c\x15\x59\x5a\x13\x59\x41\x17\x98\xc1\x01\x06\x02\x80\x03\x02\x27\xa2\x64\x12\xd1\x5e\xa2\x6e\x47\x49\xf0\x7a\x8a\x62\xd8\x53\x14\xc3\xbe\xbc\xed\xd6\x40\x4e\xda\xea\x2c\xd1\x4d\x84\x13\xe7\x62\x0f\x14\x07\x70\xae\x21\x7f\xf0\xd9\x2d\xa9\xbf\xc2\x0a\x4e\x05\x4b\x56\xd6\xed\xb9\xe7\x9e\x63\x9d\x9d\x9d\x46\xb9\xeb\xe5\x79\x46\xa1\xbf\xd6\x9a\xc9\x8d\x2a\xfa\xe0\x03\x3d\xde\x8f\xd7\x2c\x70\x99\x38\x1b\x08\x08\xb5\x31\x12\x08\xe4\xa5\xfb\x03\x79\xe9\x7e\x24\x2a\x25\x8c\x39\xe3\x80\xce\x09\x0a\x8c\x70\x95\x13\x18\x1c\x60\x04\x10\x29\x27\x22\xe1\x70\x52\x0e\x3b\x40\xa4\x25\x7b\x23\xa6\x40\x15\xcd\xcc\x40\x9d\x7a\x01\x56\x26\xcf\x8a\x14\xd4\x00\x16\x69\x15\x30\x13\x06\x06\x06\xb8\xa6\x69\xbc\xb9\xb9\xb9\x04\xa0\x00\x82\x89\xb4\xd3\x18\x89\x05\x0a\xe7\xeb\x0a\xe2\x3a\x4f\x51\xf4\x2f\xf6\x94\x30\x15\x95\x75\x38\x01\x11\x29\x88\x43\xe0\x44\x11\x38\xa9\x15\x39\xf1\x08\x9c\xb8\x29\x27\x2e\x0a\x22\x13\x10\x61\x39\x84\xcf\xc1\x71\xd1\xa3\xf5\xfe\x38\x92\xfc\xa7\x4b\x1e\xfd\x65\x58\x3e\x7e\x6d\xa5\x9c\x43\x4b\x4a\x00\xc0\x8a\x1e\x76\x75\x75\xb1\x48\x24\x52\x12\x45\x51\x05\x90\xd1\x45\x9e\x8a\x05\x0a\xef\xe6\x25\xd3\x0c\x66\xa4\x56\x1b\xa3\xb6\xa5\x7e\x8e\xd5\x00\x4d\x60\xea\xab\x1b\x26\x7e\x72\x64\x53\xfa\xdf\x54\x89\xbf\x09\x2b\xa8\x93\x8d\xc7\xe3\xc6\x4a\x45\x41\x97\x9c\x00\x15\x9c\x3a\x75\x8a\xb7\xb6\xb6\x9a\x4e\xa7\x53\x85\x55\x58\x31\x9d\x50\x4a\x03\x3d\x81\x42\xaf\x4b\x17\xfc\x75\x05\xb1\x61\xa9\xb5\xc1\x4a\x81\x83\xa3\xcf\x5f\x3c\xfb\xd4\xad\xc9\x7f\x1d\xf0\x69\x4f\x73\x82\xd3\xb0\x2a\x94\x4c\x24\x93\xc9\xd2\x42\xe2\xf8\x8b\x85\x65\x23\x00\x00\xbc\xf3\xce\x3b\x5c\x92\x24\xde\xd0\xd0\xa0\x03\xc8\x03\x48\xeb\x22\x4f\xbe\xeb\x2f\x9e\xbb\x54\xab\x25\xbc\x05\x5b\x63\x8d\x4e\xdd\xbf\x2c\x44\xe0\xe0\xb8\xec\x2a\xc5\x9f\x6b\x1f\xff\xde\x9b\x2d\xd9\xff\xd0\x6c\xfc\x4d\x58\xa5\xe7\x46\x00\xe4\xcf\x9c\x39\x63\x3e\xff\xfc\xf3\x2b\x1a\x17\x58\xb1\x91\xde\xb7\x6f\x1f\x55\x14\x45\x84\x55\xd5\xc2\x0f\x6b\xa5\xd0\xb6\x29\xe9\xec\xbc\x7b\x50\xd9\xe5\xcb\xdb\x1a\x6f\x56\x22\x70\x70\x8c\x3b\x8d\xe4\x1b\x2d\x99\x17\x63\xf5\x85\x97\x18\x45\x2f\xac\xa2\x0f\x49\x58\x35\x87\x8d\xd5\xb2\x65\x7e\x45\x47\x38\x1a\x8d\xd2\x2b\x8d\x9f\xac\xe5\x62\x85\x08\x1b\x36\x26\x1d\xef\xb9\xfd\x92\x72\x5f\x30\x23\xb5\xdc\x2c\x44\xe0\xe0\x48\xb8\x4a\xf1\x13\x4d\xd9\x57\x7a\xeb\x0b\xbf\x30\x29\xce\xc3\x12\x7c\x02\xe5\x5e\x41\xe5\x36\x2f\xab\x42\xf8\xc0\x0a\x13\xa0\x82\xb2\xcf\x80\xc2\x6a\xa9\x52\x21\x42\x88\x70\x84\x83\x19\xe9\xb6\xc8\xb0\x6b\xe7\xc6\xa4\x63\x8b\x64\x52\xfb\xaa\x78\xe0\x29\xd0\x29\xd3\x2f\xf8\x8a\xb1\xd3\xa1\xfc\xd1\x78\xad\xd6\xc5\x09\x06\x61\x95\x6a\xa9\x08\x5e\x8d\xc7\xe3\x6c\x35\xe6\x36\xac\xaa\xf1\x2c\x27\x98\x54\x88\xe0\x82\x15\x53\x68\x04\x10\xb2\x97\x68\x78\x53\xd2\x71\xd7\xe6\xcb\xce\xed\xa1\x09\xa9\xc5\xc6\xe8\xb2\x97\xa6\x9f\x0c\x83\x72\x63\x44\xd1\x86\x7a\x02\x85\xd3\xbd\xfe\xe2\x9b\x45\x89\xf5\xc3\x4a\xd9\x1a\x81\xd5\x5e\xae\x80\x55\x2c\xf8\x0a\x56\x15\x01\x2a\x98\x44\x84\x8a\x8d\x50\xd1\x0a\x01\x00\x01\xa7\x46\x5b\x5a\xd2\xf6\x6d\x2d\xe3\xf6\xb6\xa6\xb4\xdc\xe2\xd2\x04\x0f\x5d\xe2\x9f\x52\x69\x00\x71\xa9\x56\x1f\x1c\xf0\xaa\xb1\xc1\x3a\xb5\x3b\x27\x99\x03\x20\x18\x81\xf5\xa6\xa7\x60\x15\x7b\x52\x01\xe8\xab\x5d\xf0\x15\xac\x4a\x02\x54\x50\x8e\x2e\x02\xe5\x60\x0c\xae\x92\xc1\x03\x8b\x10\x5e\xca\xe0\x77\xab\xe2\xba\xc6\xac\xb4\xa1\x21\x2b\xb5\xf8\xf2\xb6\x80\xb7\x20\x7a\x1d\x25\xc1\x45\x39\x28\xaa\xea\xcf\x7d\x15\x1c\x1c\x8c\x80\xa9\x22\x2b\xa4\x1d\x46\x3a\xe9\xd2\x47\x12\xae\xd2\xd0\xb0\x5b\x3b\x3f\xe1\x30\x2e\x9a\xf4\x4a\xf9\xb5\x54\xf9\xc8\xa1\xfc\xb6\xa3\xca\x3e\x3d\xab\x09\xab\x9a\x00\x15\x44\x22\x11\xda\xd6\xd6\x36\x39\x1c\x2b\xc2\x72\xa1\x3a\x61\x4d\x15\xee\xc9\x07\xe1\x70\xc9\x06\x75\xd7\x68\x82\xcf\xad\x09\x5e\x7b\x89\xba\xed\x06\x75\xda\x4b\xd4\x2e\x30\x22\x0a\x96\xfb\x97\x32\x0a\xc3\xa0\xdc\xd0\x44\xa6\x6a\x22\x2b\x14\x6c\x66\x26\x27\x9b\xe9\x9c\x6c\xa6\x8a\x36\x36\xce\xad\xbd\x90\x19\xe0\x9a\x63\xb2\xc0\x75\x00\x46\x32\x99\x64\xb1\x58\x0c\xd3\xf5\xe6\x5d\xed\xb8\x29\x08\x30\x19\x53\xc8\x50\x39\xa4\x49\x87\x7d\x9a\x43\xc2\x55\xe2\x54\x6c\x87\x4a\x6f\xa3\xca\x9e\x47\x7d\xd2\xa1\x4e\x73\x54\xc2\xcd\x06\xac\x22\x4d\x37\xad\xd0\x27\xe3\xa6\x23\xc0\x54\x74\x74\x74\xd0\x60\x30\x78\xa5\xe9\x35\x26\x87\x73\xa7\xff\x3c\x35\x12\xc9\xa6\x1c\xc6\x94\xbf\x0c\xb0\xda\xbe\x0f\x0f\x0f\x57\xdd\x91\xf3\x66\xc1\x4d\x4f\x80\xe9\x10\x8d\x46\xa9\xcf\xe7\x83\x24\x49\xf0\xf9\x7c\x90\x65\x19\x98\x7b\x27\x34\xd3\x34\xed\x4a\x53\xc7\x85\x26\x93\xac\x61\x0d\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\xab\x1e\xff\x1f\x26\xf5\xd6\xf1\x64\x30\x2a\xac\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x81\x22\x7c\x0b\x92\x2b\x00\x00") +var _web_uiV1StaticFavicon128Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x2b\x6d\xd4\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x7b\x70\x1b\xd7\x79\xef\xef\x9c\x5d\xec\x02\x20\x16\x04\x01\x10\x24\x20\x3e\xa0\x17\x29\xcb\x90\x2c\x1b\x7e\x51\x71\x43\xc5\xb1\xe5\xc4\x95\xe3\x1b\xc5\x49\xa3\xb6\xa9\xfa\x98\xea\xf6\xde\x3e\x72\xd3\xde\x4e\xa6\xcd\x74\x32\x99\xde\x4e\x26\x93\xe9\x6d\xd3\xdb\x34\x13\xb5\x79\x28\x69\xea\x3c\x5a\x25\x8e\xed\xc4\xaf\xd8\x96\xe3\x48\x7e\x88\xb2\x1e\xb4\x2c\xc2\xa4\x44\x52\x14\x48\x42\x20\x08\xe2\xb9\xbb\xd8\x3d\xe7\xfe\xb1\x80\x44\x51\x7c\x80\x14\x5f\x4a\xf8\x9b\x59\x13\x23\x63\x1f\x38\xdf\x6f\xbf\xf3\x9d\xef\xfb\xce\xf7\x01\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\x6b\x58\xc3\x1a\x7e\xb5\x40\x56\xfa\x01\x96\x0b\xd1\x68\x94\x02\x40\x30\x18\xbc\xe6\xdf\xc7\xc6\xc6\xa0\xeb\x3a\x00\xa0\xab\xab\x8b\x2d\xff\x93\xad\x2c\x7e\x69\x08\x10\x8d\x46\xa9\xcf\xe7\x83\xcf\xe7\x83\xa2\x28\x00\x40\xcb\xc7\xd4\xcf\x98\xf2\x99\x4d\xf3\x97\x01\x80\xa6\x69\x6c\x6c\x6c\x0c\x63\x63\x63\x38\x76\xec\xd8\x2f\x25\x39\x6e\x5a\x02\x74\x74\x74\xd0\x60\x30\x08\xbf\xdf\x5f\x11\x2e\x05\x20\x82\x43\x14\x19\x91\x6a\x74\xc1\xed\xd2\x84\x40\xad\x2a\x36\xc9\x06\xf1\x3b\x4a\x82\xd7\xa1\xd3\x5a\x91\x11\x3b\xe5\x44\x22\x1c\x94\x51\xae\x9b\x04\xba\x6a\x63\x19\xd5\x66\x4e\xa8\x22\x4b\xe6\x64\x73\x24\x2b\x9b\xf1\xac\x6c\xa4\x74\x91\xab\x9c\xc0\x00\xae\x1c\x4c\xd3\x34\xd6\xdf\xdf\x8f\x23\x47\x8e\xfc\x52\x10\xe2\xa6\x22\x40\x67\x67\x27\x0d\x87\xc3\x90\x65\xd9\x12\x36\x20\xd9\x4c\x62\xf7\xe5\x6d\x4d\x8d\x19\x69\x47\x63\x56\x8a\x7a\xf3\xb6\x2d\x1e\x55\xdc\x24\x9a\x24\x40\x40\xec\xf3\xfd\x81\xdc\xfa\xaf\x61\x12\xa4\x8b\x92\x39\x98\xac\x29\x9d\xbb\xec\x2a\x9d\x19\x51\xb4\xe3\x09\xa5\x14\xcb\x49\x66\x06\x04\x3a\xca\x84\x48\x26\x93\xac\xbb\xbb\x1b\xb1\x58\xec\xa6\x24\xc4\xaa\x27\x40\x34\x1a\xa5\x6d\x6d\x6d\x50\x14\x85\x02\x90\x00\x48\xb5\x45\x31\xb0\x3e\x65\xdf\xd9\x9a\xb2\xbf\x2f\x98\x91\xef\x93\x0d\xd2\x42\x40\xc4\xa5\x7c\x0e\x0e\xc0\x24\x3c\x35\xee\x2c\x9d\x18\xac\x53\x7f\x7e\xc1\xab\xbe\x38\x5c\xab\xc5\x4c\x8a\x02\x00\x1d\x00\xeb\xe9\xe9\x61\x37\x9b\x66\x58\xb5\x04\xe8\xec\xec\xa4\xed\xed\xed\x57\xde\xf4\x1a\x8d\xfa\xdb\x13\x35\xbb\x37\x5f\x76\x3c\x1a\xc8\x49\x3b\x05\x4e\xdc\x2b\xf9\x7c\x1c\xdc\x28\xd8\x58\xac\xcf\x5f\xfc\xc9\xb9\x40\xe1\x87\xc3\xb5\x5a\x8c\x13\x8b\x0c\xd9\x6c\x96\x75\x75\x75\xdd\x14\x5a\x61\xd5\x11\x60\xcf\x9e\x3d\x34\x14\x0a\x51\x00\x12\x61\x70\xb6\xa4\xed\x3b\xb6\x0d\xd7\x7c\x22\x9c\xb2\x3f\x2c\x30\xea\x5f\x75\x0f\x0c\x8b\x0c\xe3\x4e\xe3\x8d\xee\xc6\xfc\x77\xce\x35\xe4\x7f\x52\x90\x58\x0a\x80\x9a\xcd\x66\x8d\x58\x2c\xb6\xaa\x57\x17\xab\x66\x3c\x27\x0b\x5e\x30\x89\x7b\x4b\xc2\x79\xff\xed\x97\x5c\xff\xdd\x97\xb7\xed\x5c\x6a\xf5\xbe\x98\xd0\x04\x16\x3f\xd7\x90\xff\xd6\x5b\xeb\x72\xdf\x4e\x3b\x8d\x21\x94\x89\xb0\x5a\x35\xc2\x8a\x13\xa0\xa3\xa3\x83\x6e\xdb\xb6\x8d\x02\x90\x28\x83\xeb\x96\xd1\x9a\xdd\x77\x0d\x2a\x9f\xac\x55\xc5\x3b\xc9\xca\x3f\xde\x82\x61\x50\x9e\x7a\x27\x90\xff\xe6\x9b\xad\x99\x7f\xcd\xd8\xcd\x38\x00\x35\x99\x4c\x1a\x87\x0f\x1f\x5e\x55\x24\x58\xd1\x11\xde\xb7\x6f\x1f\x55\x14\x45\x02\x87\xb3\x75\xdc\x7e\xf7\x7d\xe7\x6b\x3f\xe3\xcf\xdb\xee\xbb\x99\x05\x3f\x15\x3a\x65\x89\xb7\x9a\xb2\x5f\x3a\xd1\x9c\xfd\x77\x4d\xe4\x49\x00\xfa\x99\x33\x67\xd8\x6a\xf1\x2b\xac\xc8\x48\xef\xde\xbd\x9b\x86\xc3\x61\x0a\xc0\xe9\x2e\x0a\x4d\x9d\x7d\x75\x9f\xde\x30\x66\xff\x38\x01\x91\x56\xe2\x79\x96\x1a\x1c\x40\x56\x36\xba\x5f\xdd\x90\xfe\x6c\xac\xbe\xf8\x0a\x08\x72\xd9\x6c\x56\x7f\xfc\xf1\xc7\x57\x9c\x04\xc2\x72\xdf\x70\xdf\xbe\x7d\xb4\xa1\xa1\x41\x22\x1c\x9e\x1d\x97\x5c\x8f\x3d\xfc\x8e\xff\x6b\xf5\x79\xe9\x3e\x02\xb2\xec\xcf\xb2\x5c\x20\x00\x64\x93\x06\x36\x25\x1d\x1f\x09\xe4\xa4\xa6\x78\xad\x76\x86\x38\x6d\xc5\x68\x34\xca\x00\x60\x78\x78\x98\xaf\xd4\xb3\x2d\xdb\xa0\x47\xa3\x51\xfa\xc8\x23\x8f\x08\xb2\x2c\x3b\x5c\xaa\x10\x7e\xf8\x1d\xdf\x17\x6f\x8b\xbb\xfe\x52\xe4\x74\x45\x97\x73\xcb\x09\x02\x42\xbd\x45\xdb\xf6\x2d\xa3\xce\x87\x27\xec\xc6\xf9\x94\xd3\xb8\x14\x0a\x85\x4a\xc0\xca\x91\x60\x59\xa6\x80\xb2\xca\x17\x01\x38\xc3\x63\xf6\xfb\x76\xf7\x78\xff\x9f\xb3\x24\x84\x97\xfa\xbe\x1c\x1c\x8c\x80\x69\x22\x53\x55\x91\xa9\xaa\x8d\x15\x74\x81\xeb\x8c\x72\xc6\x00\x26\x70\x88\x36\x93\x88\xb2\x41\xed\x8e\x92\xe0\x94\x0d\x62\x17\x19\x11\x81\xa5\xb7\x42\x18\xb8\x7e\x3a\x94\xfb\xbb\x97\x37\xa7\xff\x11\x40\xee\xe0\xc1\x83\x2b\x32\x1d\x2c\xf9\xf2\x6a\xef\xde\xbd\xd4\xef\xf7\x4b\x84\xc3\x7d\xf7\x80\xfb\x77\xef\x1e\x74\x7f\x56\xe0\xc4\xb9\xd8\xf7\xe1\xe0\xd0\x05\xae\x26\x6b\x4a\xc9\x11\xb7\x36\x74\xd9\x55\x8a\xa7\x9c\xa5\x78\x56\x36\x53\xaa\x8d\x4d\x70\x40\x2d\xbb\x70\xaf\x04\x7b\xca\x10\xc1\x21\x12\xc0\x6e\x33\x89\xd3\xa5\x09\xf5\x9e\xa2\x2d\x50\x9f\xb3\x85\x1a\xb2\x52\x53\x43\x4e\x6a\x74\xea\xd4\xb5\xd8\x94\x20\x80\x94\x93\xcd\x1a\x00\x4e\x00\x85\x29\xcf\xb4\x6c\x58\x52\x02\x54\xac\x7c\xd1\x24\x81\xdd\x3d\xde\xcf\x6e\xbe\xec\xf8\xfd\xc5\x1c\x48\x0e\x8e\xb4\xc3\x48\x9e\xf7\x15\x7b\x07\xbc\xea\xd9\x11\x45\xef\xd3\x45\x9e\x00\x90\x29\x1f\x85\xf2\xa1\x97\x0f\x03\xd7\x12\xc0\x0a\x22\x11\x50\x0e\x48\xba\xc8\xa5\x94\x68\xd8\x53\x35\x86\xf3\xbc\xbf\xe8\x06\xe0\xa6\x0c\x5e\x7f\xde\xb6\xbe\x65\xdc\xbe\x65\xc3\x98\x63\x4b\x43\x56\x0a\x09\x9c\xd0\xeb\x9f\x66\x7e\x38\x17\x28\x1c\xed\x6a\xce\x3e\x8f\x15\x12\x7c\x05\x4b\x46\x80\xfd\xfb\xf7\x53\x59\x96\xed\x0e\x9d\x36\xed\x79\xdb\xff\xa5\x50\x46\xfe\xc0\x62\x88\x9e\x03\x28\xda\xcc\x5c\x4f\x7d\xe1\xec\xb9\x86\xc2\x1b\x97\x5d\x7a\x0f\xa3\x48\x00\x48\x02\x48\x03\xc8\xc1\x12\xba\x8a\x49\x51\x3c\x5c\xff\xe6\x4f\xc6\xe4\xb0\xb1\x58\x3e\x24\x00\x4e\x46\xe1\x4a\x28\x25\x4f\x42\x29\x79\x8f\x37\x67\x03\xb5\xaa\xb0\x7e\xf3\x65\xe7\x9d\x5b\x47\x6b\x76\xd4\x15\x44\xff\x42\x08\x7d\xb9\x46\x1f\x7a\x69\xf3\xf8\xd7\x38\xc1\x10\x80\x5c\x36\x9b\x5d\x31\x12\x2c\xc9\x54\x57\x11\xbe\x4b\x13\x36\x3c\x7a\xc6\xff\xd5\xfa\xbc\xb4\xf3\x46\xaf\xc9\xc1\x31\x56\x53\x4a\xbc\xb5\x2e\x77\x34\x56\x5f\x38\x56\x12\xf9\x20\x80\x11\x5c\x15\x7c\xe5\x4d\xbf\x22\xf4\x64\x32\x09\x5d\xd7\x31\x3c\x3c\x3c\xa7\x3b\xb6\x92\x4f\x20\x49\x12\x42\xa1\x10\x30\x39\xc4\x5c\x26\x03\x00\x17\x00\x3f\x80\x00\x65\x68\x6a\x4e\xdb\xa3\x77\x0c\x29\xf7\x35\x8f\xcb\x1b\x28\xaa\xd3\x0a\xaa\xc8\x0a\xdf\xdf\x31\xfa\xf9\x54\x8d\xf1\x0c\x80\xf3\x00\x32\x07\x0f\x1e\x34\x16\x30\x24\x8b\x82\x45\x27\x40\x45\xf8\x8a\x2a\x6c\xfa\xf0\xe9\xfa\x6f\x78\x8b\xb6\x3b\x6e\xe4\x7a\x1c\x1c\xc9\x9a\xd2\xc8\x1b\x2d\x99\x17\x7b\xfd\xc5\x5f\x70\x8a\x41\x00\x71\x58\x82\xcf\x61\xd2\x9b\xde\xdf\xdf\x8f\x78\x3c\x8e\xee\xee\xee\x45\x7b\xa3\x3a\x3b\x3b\x69\x28\x14\xaa\x44\x23\x45\x00\x76\x58\x64\xf0\x02\x68\x04\x47\x4b\x63\x56\xba\xfd\x9e\x01\xf7\xee\xd6\x94\xbd\x8d\xce\x32\xa4\x0c\x9c\x3d\x73\xcb\xd8\xd7\x63\x81\xe2\x77\x00\x9c\x03\x90\xea\xea\xea\x32\x56\x32\x56\xb0\xa8\x04\xa8\x08\xdf\xa9\xd3\xf0\xde\x53\xf5\x87\xfc\x05\xe9\xce\x1b\xb9\x5e\x4e\x32\x33\xaf\xb5\x4e\xbc\x70\xb6\x31\xff\x12\xa3\xe8\x05\x30\x84\xab\x82\xd7\x35\x4d\x33\x96\x33\x39\xa3\xa3\xa3\x83\x86\xc3\xe1\xc9\xa1\xe9\x0a\x11\x42\xe0\xd8\xd0\x9c\x96\xef\xb9\xef\xbc\x67\x4f\x20\x67\x0b\x4d\x9d\x1a\x38\x80\xb7\xd6\x65\x5f\x7c\x65\x63\xfa\x4b\x20\x38\x09\x20\x11\x8f\xc7\xf5\xa7\x9e\x7a\x6a\x45\x6d\x80\x45\x23\x40\xc5\xda\x97\x0d\xd2\xf4\xe1\xd3\xf5\x5f\x6b\xcc\xca\xef\x5d\xe8\xb5\x18\xe1\xac\xbb\x31\x7f\xfc\xe8\xfa\x89\x1f\xaa\x36\xd6\x0d\x60\x10\x40\xc5\xb8\xd3\x57\x43\x12\xc6\x24\x6f\xa6\x88\xab\x53\x43\x13\x65\x68\xdb\x1e\x77\x7d\xb0\xa3\xbf\xf6\x01\xd9\xa4\xf6\xca\xf7\x87\x6a\xd5\xde\x1f\x6e\xbf\xfc\x39\x93\xe2\x38\x80\xa1\x6c\x36\x5b\x58\x0d\x9e\xc0\x45\x21\x40\x79\x30\x24\xca\x10\xd8\x73\xd6\xff\xf7\x1b\xc6\x1c\x8f\x2d\xf4\x5a\x13\x76\x23\xf5\x42\x5b\xea\x3f\x2f\xd6\x69\x47\x00\xf4\xc2\x52\xf7\x69\x00\x6a\x3c\x1e\x67\x2b\xfd\xc6\x4c\xc5\xa4\xbc\x05\x09\x16\x11\x1a\x01\x6c\xa8\x2d\x8a\xd1\x07\x62\x75\x1f\x6f\x4a\xcb\x9b\x0a\x12\x4b\x7f\xf7\xf6\xd1\xbf\xcd\xda\xcd\x97\x61\xcd\xfb\xb9\x95\x9c\xf7\x27\xe3\x86\x09\x10\x8d\x46\x69\x34\x1a\x15\x01\x78\x3a\x7b\x3d\x9f\xde\x71\xc9\xf5\xe7\x0b\xb1\x8c\x39\x38\xde\xf5\x17\x4f\xbf\xd8\x36\xfe\x1d\xd5\xc6\x4e\xc2\x1a\xa8\x24\x80\x42\x36\x9b\x35\x56\xc3\xdb\x32\x1b\x26\x85\xb3\xed\xb0\xa6\x85\x16\xca\xd0\x76\xd7\xa0\xfb\x83\x23\x6e\x3d\x36\xe0\x55\x9f\x06\x10\x03\x90\x7e\xf9\xe5\x97\xd9\x6a\x09\x0d\xdf\x30\x01\x0e\x1c\x38\x20\x02\x70\xdf\x32\xe2\x7c\xec\xc1\x1e\xef\x97\xe9\x02\x62\xf7\x26\xe1\xec\x58\x78\xe2\x99\xae\xe6\xec\x0f\x38\xc1\x59\x58\x2a\x3f\xa3\x69\x9a\xda\xdd\xdd\xbd\xaa\x13\x2a\xa6\xa2\xec\xfb\x10\x01\xb8\x61\x4d\x0b\x1e\x58\x86\xea\x08\x80\x54\x4f\x4f\x8f\xb1\x9a\xd2\xc6\x6e\x88\x00\x65\xa3\xcf\x55\x9f\xb3\xdd\xf1\xd1\x93\x81\xff\x92\x4c\xea\x9d\xef\x35\x34\x81\xa9\xcf\xb5\xa7\xbe\xdb\xe7\x2f\x3e\x0d\x4b\xf8\x23\x00\x72\xf1\x78\xdc\x58\x6d\xea\xbe\x5a\x4c\xce\x71\x28\x1f\x0c\x37\x90\x0f\x10\x89\x44\x68\x38\x1c\x86\x24\x49\x90\x65\x19\xd9\x6c\xb6\xaa\xa5\x6d\x35\x58\x30\x01\xca\x2a\x4f\xb2\x19\xa4\xe9\x37\x4e\x06\x1e\xf7\xe7\xe7\x6f\xf1\x17\x6c\x66\xee\xc9\x5b\x93\xff\x36\x5c\xab\x3f\x0f\x4b\x3d\x8e\x00\x50\xbb\xba\xba\xd8\xcd\xf4\xd6\xcf\x84\xb2\x6d\x04\x4d\xd3\xb0\x10\x4d\x16\x8d\x46\x69\x24\x12\x81\x2c\xcb\x15\x5f\x44\x45\xbb\x5e\x49\x55\xbf\xd1\xdc\x82\x05\x11\x20\x12\x89\xd0\x9d\x3b\x77\x8a\xe0\xf0\x76\xf6\x79\xfe\x6a\xc7\x25\xe5\xcf\xe6\x7b\xa1\xbc\x64\x66\x7e\x14\xb9\xfc\x2f\x97\x95\xd2\xcf\x60\x09\x3f\xa9\x69\x9a\x7a\xe8\xd0\xa1\x9b\x5e\xf0\x8b\x81\xb2\x71\x29\x82\xc3\xb9\x61\xcc\x7e\xef\xb6\x61\xd7\x6f\x35\x64\xa5\xed\x84\x83\x8e\xd5\x94\xce\xbd\xdd\x98\xff\xde\xb9\x40\xe1\x65\x4e\x91\xb9\x91\x4c\xa3\x05\x85\x83\x3f\xf8\xc1\x0f\x12\x51\x14\x9d\x4d\x13\xf2\xaf\xbd\xaf\xb7\xee\x0b\x74\x9e\xb1\xfc\xa2\x68\xe6\x7e\xb4\xed\xf2\x97\x2f\x2b\xa5\xe7\x01\xf4\x00\xb8\x9c\x4c\x26\xb5\xef\x7e\xf7\xbb\x6b\xc2\x87\x35\x85\x6c\xdd\xba\x55\xa4\x0c\x9e\xf7\xbf\x5b\xf7\xd7\xf7\x5d\xf0\x7c\xa9\xae\x68\xdb\x61\x63\xb4\xc1\xc6\x68\xc0\xad\x89\x5b\x37\x8e\x39\x1e\x0b\x66\xe5\xd6\xf3\xbe\xe2\x6b\xb2\xcb\xa9\x06\x83\x41\x16\x8b\xc5\xe6\x1d\x52\x9e\x37\x01\x76\xef\xde\x4d\xfd\x7e\xbf\x24\x9a\x64\xdd\x23\x6f\xfb\xff\xb9\xa6\x24\xac\x9b\xcf\xf9\xba\xc0\xf4\x1f\x47\x92\x5f\x19\xa9\x2d\x3d\x03\xcb\x1b\x36\x96\x4c\x26\xf5\xd5\x96\x2b\xb7\x92\x78\xf8\xe1\x87\x05\x00\xca\x3d\x03\xee\x3f\xba\xfd\x92\xf2\x19\x32\x8d\x9b\x99\x80\x10\x8f\x2a\x46\x14\x4d\xa8\xed\xad\x2f\x1e\x55\x14\xa5\x98\xcd\x66\x31\x36\x36\x36\x2f\x12\xcc\x3b\xaa\x55\x76\x7e\xb8\xa3\x43\xca\x27\xbc\x05\xdb\x8e\xf9\x9c\x6b\x12\xce\x5e\x68\x4b\xfd\x7b\xdc\xa3\x3f\x0b\x4b\xed\xa7\xd6\x84\x7f\x2d\x3a\x3b\x3b\x29\x00\xc9\xa9\xd3\x96\x3b\x86\x94\x4f\xce\xb5\xa4\x6e\x4b\x38\x7f\xbb\x3e\x6b\x8b\x00\xb0\x47\x22\x91\x79\xdf\x6f\x5e\x04\xd8\xb7\x6f\x1f\x05\x60\x57\x54\x61\xc3\x1d\x17\x95\x3f\x9a\xcf\xbc\xcf\xc1\xf1\x66\x4b\xe6\x99\x58\xa0\xf8\x04\xca\x73\xfe\x9a\xf0\xaf\x47\x38\x1c\x06\x00\x7b\x53\x5a\xbe\x57\x32\xa9\x7f\xae\xef\x53\x10\x69\x7d\xca\xf1\x20\x00\x67\x79\x9f\xe4\xbc\x50\xf5\x09\x6d\x6d\x6d\xd6\xfa\x96\xc3\x7d\x6f\x7f\xed\xff\x90\xab\x78\xb8\xc9\xe8\xf7\xaa\xdd\x6f\xb4\x64\xbe\x0d\x4b\xed\x27\x35\x4d\x5b\x13\xfe\x34\x28\xef\x7b\x94\x5c\x9a\xb8\xbe\xda\x73\x3c\x45\x71\x13\xac\xb8\xc4\xd2\x11\x20\x1a\x8d\x02\x80\xdd\x57\xb0\x6d\xd9\x92\x70\xce\xcb\xd5\x9b\x93\xcc\xf4\x0b\x6d\xe3\xff\xca\xa8\xb5\xce\xd7\x34\xad\xb0\x66\xed\xcf\x0a\x5a\xb4\x99\x6a\xb5\x5f\xd6\x05\x66\x60\x01\xc2\x47\xb5\x27\x5d\x79\xfb\x01\xf7\x5d\x83\xca\x1f\xce\x27\xa5\x8b\x83\xe3\xa5\x4d\xe3\xff\x91\x97\xcd\x13\xb0\xfc\xfa\x85\x63\xc7\x8e\x2d\xe4\x59\x7f\x95\xc0\xe2\xb5\x7a\x8f\x41\xb8\x3e\xd7\x17\x39\x38\xfa\xbd\xea\x29\x58\x7e\x81\x79\xa3\x2a\x02\x94\xdf\x7e\xc9\x53\x10\x37\x6d\xbe\xec\xfc\xd0\x7c\x6e\xf0\xae\xbf\x78\xbc\xcf\x5f\x7c\x16\x65\xf7\x6e\x4f\x4f\xcf\xaa\xf1\x83\xaf\x46\x68\x9a\xc6\x00\xa8\x13\x0e\xa3\xff\x5c\x43\xfe\xd5\xb9\xbe\x3f\xec\xd6\x63\x03\x75\xea\x09\x58\xee\xe6\x79\x8f\x6b\x55\x04\x28\xc7\xbf\xdd\x3b\x2e\xb9\x7e\x6b\x3e\x6f\xbf\x26\xb0\xc2\xcf\x37\xa6\xbf\x0d\x82\xf3\x00\x52\xd9\x6c\x76\x55\xf9\xc1\x57\x23\xfa\xfb\xfb\x81\x72\xec\xe0\x95\x8d\xe9\x6f\x5c\xac\x55\x67\x5c\xdc\x8f\x3b\x4a\x89\x67\xb6\x8c\x7d\xb9\x9c\x24\x53\x88\xc7\xe3\xf3\x1e\xdb\x39\xfd\x00\xbb\x77\xef\xa6\x1e\x8f\x47\xb6\x97\xe8\x86\x07\x62\xde\xff\x23\xb2\xea\x08\xc0\x01\xbc\xd1\x9a\x79\xfa\x82\x5f\xfd\x11\x80\x0b\x00\x72\x87\x0e\x1d\x32\xe7\xfb\x80\xbf\x6a\x18\x18\x18\xe0\x91\x48\x84\x89\xa2\xc8\x4c\x0a\xfd\xdd\xfa\x62\x6f\x49\x60\xa2\x5b\x15\xbc\x36\x2b\xbf\x80\xe7\x25\x96\x3d\x13\xcc\xbf\xfe\x7c\x7b\xea\x2b\x79\x3b\x7b\x1d\x96\x76\xcd\x3f\xfe\xf8\xe3\xf3\x1e\xdf\x39\x23\x77\x95\x2d\x5c\x6d\x09\xe7\x6e\xbb\x51\xbd\xe5\x9f\x97\xcc\xd4\xc9\x75\xd9\x1f\xc2\xca\xe2\xc9\xf5\xf4\xf4\xac\xbd\xf9\x55\xe2\xd8\xb1\x63\xd8\xb5\x6b\x57\x0e\x40\xbf\x21\x70\xfd\x78\x4b\x36\x71\xa2\x29\xfb\xa4\xa3\x44\xfd\x04\x84\x16\x6d\x66\xca\xa4\x88\x03\xe8\x47\x79\x7c\xcf\x9c\x39\xb3\xa0\xf1\x9d\x95\x00\xe5\xca\x5a\x22\x38\x3c\x5b\x47\x6a\x1e\x9d\xcf\x85\x4f\x34\x65\x9f\xd3\x45\x1e\x03\x90\xd2\x34\x4d\x5f\x53\xfd\xd5\xa3\x62\x23\x95\x49\x30\x08\x20\xc5\x28\x7a\xf3\x32\xab\x68\x5f\x15\x56\x76\x54\x0e\x40\xa1\xa7\xa7\x67\xc1\x01\xa1\x59\x09\xd0\xd6\xd6\x06\x00\x92\x3f\x6f\x6b\x0b\xe4\xaa\x4f\xee\x2c\xd8\xcc\xcc\xdb\x8d\xb9\xa7\x51\x8e\xee\x75\x77\x77\x2f\xe4\xd9\x7e\xa5\x11\x8b\xc5\x58\x2c\x16\x63\xfb\xf6\xed\x2b\x28\x8a\xa2\xc2\xca\x8a\xaa\xd8\x6c\x0c\x80\x91\xcd\x66\xd9\xd1\xa3\x47\x31\x30\x30\xb0\xe0\x97\x6b\x56\x02\x94\x8d\x3f\xe7\xc6\xa4\xe3\xc1\xf9\x24\x7a\x9c\x6d\xc8\xbf\xa2\xd9\xf8\x79\x00\x69\x4d\xd3\xf4\x5f\x86\xd0\xee\x4a\xa1\x9c\x09\xc5\xa2\xd1\x28\x73\xb9\x5c\x00\x80\x5c\x2e\xb7\x68\x49\x32\x33\x0a\x75\x92\xfa\x77\x6f\x4a\x3a\xee\xaf\xf6\x82\x26\xe1\xc6\xdb\xc1\xfc\xb3\xb0\x92\x38\xd7\xde\xfe\x79\xa0\x52\xcc\x72\x3a\xe1\xce\x26\xf0\x68\x34\x4a\x27\x17\xc0\xd4\x75\x1d\xfd\xfd\xfd\x55\x25\xcd\xce\x48\x80\xd6\xd6\x56\x00\x90\xdc\xaa\xd0\xe4\x2d\xd8\xb6\xcc\x75\xa1\x0a\xe2\x6e\xed\xdc\xb8\xd3\x38\x07\x4b\x65\xad\x68\xce\xfb\xcd\x80\x49\xb9\x84\x57\x8e\xf2\xb6\x71\x23\x9b\xcd\xb2\xd9\x72\x21\xa7\x14\xd2\xaa\x1c\x00\x60\x84\xc3\x61\xbd\xa3\xa3\xc3\x38\x76\xec\xd8\xac\x44\x98\x91\x00\xe5\xc0\x82\xbd\x39\x6d\xbf\x97\xf2\xea\x0a\x37\x70\x00\x3d\x0d\x85\x57\x61\xbd\xfd\x85\xfe\xfe\xfe\x35\xe1\xcf\x80\xb6\xb6\x36\xda\xd1\xd1\x01\x59\x96\xed\x92\x41\xdc\xeb\xc7\x1c\xf7\x36\x4d\xc8\xf7\x50\x46\xc4\xb1\x9a\xd2\xbb\xbd\xfe\xc2\x8b\x50\x94\x91\x03\x07\x0e\xa8\xd3\x95\x9f\xab\xa4\xe1\x0b\x0c\xae\x2d\xa3\x35\x0f\x6c\x19\x75\x7e\xc4\x9f\xb7\x6d\x31\x29\x57\x2f\xd5\xea\xc7\x4f\xad\xcb\x7e\x3b\xee\x46\xf7\xae\x5d\xbb\x0a\xc1\x60\x70\xc6\xbd\x13\xb3\xcd\xeb\x14\x80\xb3\x65\xdc\xde\x51\x6d\xd4\xcf\xa4\x5c\xbf\xe0\x2d\x1e\x03\x90\x02\x60\x3c\xf7\xdc\x73\xab\x82\x00\x93\xaa\x8a\x02\xd7\x3b\xbf\x58\x32\x99\xc4\xf0\xf0\xf0\xb2\x96\x83\xdd\xb5\x6b\x17\x05\xe0\x6c\x4d\xd9\xef\x7d\x7f\xac\xee\x8b\x8a\x26\x6e\x9f\x3c\xce\x3b\xfb\x6b\x53\xc7\x9b\x33\x7f\xf7\x7a\x6b\xe6\x5b\xed\xed\xed\x19\x00\x57\x9c\x68\x15\xe1\x3b\x75\xda\xf4\xeb\x6f\xfb\xff\x21\x94\x91\xf6\x4c\x0e\x1b\xb7\x5f\x16\xef\xdc\x9c\x74\xfc\xce\xeb\x2d\x99\xbf\x79\xbd\x35\xf3\xcd\xf6\xf6\xf6\xdc\xd8\xd8\x98\x31\xdd\x8e\xa9\x69\x09\xd0\xd1\xd1\x51\x99\xff\x5d\xc1\x8c\xb4\xb5\xda\x1f\x95\x70\xe9\xbd\x79\x89\x0d\x02\x28\x68\x9a\xb6\xe2\x79\xef\x93\xd4\xab\x08\x40\xa2\x06\xb7\x4b\x45\xe6\xa1\x26\x5c\x00\x98\x29\x22\xa7\x3b\x68\xda\xef\xf7\xeb\x7e\xbf\x5f\xdf\xb6\x6d\x9b\xb1\x1c\x7b\x0f\xf6\xef\xdf\x4f\x01\x38\x9b\xc7\xe5\x9d\x8f\xbc\xed\x7f\x5c\x64\xc4\x33\xf5\x3b\x22\x23\xde\x7b\x06\xdc\x5f\x14\x18\x71\xfd\x62\xfd\xc4\xbf\xb4\xb7\xb7\xa7\x8f\x1c\x39\xc2\xa2\xd1\x28\xf5\xfb\xfd\x22\xe1\xf0\x7e\xf0\x1d\xdf\x3f\xac\xcb\xc8\x7b\xa6\xbb\x07\xe5\xc4\x79\xef\x80\xfb\x0b\x19\xbb\x91\x7a\xa7\xb1\xf0\xa3\x68\x34\x9a\x99\xce\x1e\x9b\x96\x00\x65\x83\x42\x74\xab\x42\xa8\x46\x17\x9a\xaa\xfd\x61\x03\x75\xea\x69\x10\xa4\x00\xa8\x65\x97\xe6\x8a\xe0\x9a\xca\x63\x25\xee\xa9\x8b\x97\x1e\xa8\x1b\x36\x1e\x75\x64\xcc\x3b\xa9\x89\x00\xac\x04\x4b\x80\x40\x65\x02\x46\xf2\xb5\xc2\x1b\xe3\x21\xdb\x0f\xd3\x41\xf1\x95\x50\x28\x94\x39\x70\xe0\xc0\x92\x15\x72\x8a\x46\xa3\x54\x96\x65\x49\x60\xf0\xbf\xef\xdd\xba\xcf\x4f\x27\xfc\x0a\x08\x08\xbd\x63\x48\xf9\x74\xac\xbe\xf0\xea\x65\xa5\xf4\xc6\xfe\xfd\xfb\x0b\xb2\x2c\x03\x80\x73\xc3\x98\xe3\x81\xa6\xb4\xfc\xf0\x6c\xf7\x22\x20\x62\x47\x7f\xed\xa7\xdf\xad\x2f\xbe\x0a\x59\x56\x3b\x3a\x3a\xf4\xa9\xbf\x69\xda\x58\x40\x59\x55\x4a\xf5\x79\xa9\xad\xfa\xf9\x9f\x63\xc8\xa3\xbd\x05\xcb\x41\xb1\x62\x3e\xff\xbd\x7b\xf7\xd2\x6d\xdb\xb6\x89\x60\xdc\xe3\x1b\xd4\x3f\x76\xcb\x2b\xf9\x97\x9a\xce\x6a\x87\x5c\xe3\xe6\x5e\xc1\x44\x0b\x01\xec\x04\xa0\x04\xa0\x84\xc3\x29\x18\xd8\xe0\x1e\x33\x3f\xde\x72\x46\xfd\xde\x2d\xaf\xe4\x9f\xad\x8b\x97\x1e\x06\xe7\xee\x6d\xdb\xb6\x89\x7b\xf7\xee\xbd\xe1\x3a\x00\x53\x51\xf1\xad\xac\x9b\x90\xef\xac\x2b\x8a\x73\x66\x54\x09\x9c\x38\x6f\x19\xad\xf9\x28\x00\xd7\xa4\x1a\xc9\xae\x8d\x49\xc7\xaf\x4f\x97\x2a\x36\x15\x8a\x26\x6c\x09\xe4\x6c\xdb\x01\x48\xe5\x64\x93\x6b\x30\xd3\x05\x28\x00\xc9\x97\xb7\x6d\xae\x76\xfe\x37\x28\x57\xc7\x6a\x4a\xbd\x58\xc1\x6a\x17\x57\x0c\xa3\x12\x0f\xad\x7f\x4b\xfd\x87\xa6\xb7\xb5\xaf\xd9\x74\xde\x56\xcd\x6f\x20\x00\x24\x95\x6f\x6f\x39\xa5\x3e\xde\x72\x46\xfd\x1c\x31\xb9\xdf\xef\xf7\x4b\x8b\x4d\x82\xb2\x6f\xc5\xee\xcb\xdb\x6e\xaf\x76\x07\x55\xbd\x25\x40\x17\x2c\xe1\x5b\xd5\xd5\xd4\xea\x34\x33\x01\x81\xa2\x8a\x1b\x00\x48\xe5\x7b\x5f\x83\xd9\x08\x60\xf7\x16\xc4\x0d\x55\x3d\x21\x80\x09\x87\x11\x57\x45\x96\x44\xb9\x56\x6e\xb5\xe7\x2d\x16\x2a\xc2\xa7\x06\x0f\xad\x3f\x5e\xfc\x6a\x6d\xc2\xf8\x6d\xb2\x80\x24\x09\x02\x88\x75\x97\x8c\x3f\x09\x9f\x2c\x7e\xb1\x42\x82\xdd\xbb\x77\x2f\xb6\x26\x90\x08\x27\xf6\xb9\xbf\x66\xc1\x10\x38\x43\x65\xda\xb2\x40\x8b\x36\x56\x55\xc2\x08\x07\x90\x97\xcd\x1c\x66\x18\x8b\xeb\x6c\x80\xb2\x33\x82\x02\xb0\xd7\x15\x6c\x55\xcf\xff\x63\x4e\x63\x10\x04\x39\x00\xc6\xd8\xd8\x58\xb5\xa7\x2d\x0a\x2a\x86\x11\x38\xf7\x36\x77\xab\x9f\x75\xa5\xcd\xdd\x37\x72\x3d\x02\xc0\x9d\x30\x7f\x33\x18\xd3\xe2\xf1\x5b\xec\x5f\x0c\x87\xc3\xa9\xb6\xb6\xb6\x39\x1d\x2b\x9d\x9d\x9d\xb4\xdc\xac\x02\x00\x66\xdb\xbd\xc3\x2e\xbb\xf4\x01\x0e\x5e\x55\x39\xaa\x64\x4d\x69\x08\xd7\x26\x7c\x18\x03\x5e\xf5\xf4\xa6\xa4\xf3\xfe\xb9\xce\xd6\x45\x96\xb9\x6c\x9d\x3f\x6d\x85\x94\xeb\x08\xe0\xf3\xf9\x00\x6b\x7e\xb4\xd7\xe8\x42\xd5\xd1\xbf\x71\x67\x69\x08\x96\xfa\x5f\x76\x02\x94\xb3\x61\x9d\x9e\x61\x63\xb7\x67\xd8\xf8\xed\xc5\xb8\x26\x01\x50\x3f\x50\xfa\xb3\x4c\x40\xfc\x79\xce\x27\xbe\xdc\xd1\xd1\x91\x8b\xc5\x62\xd7\x7d\xaf\xb5\xb5\x95\xee\xda\xb5\xab\xb2\x7b\xa7\x72\x50\x00\x46\x28\x14\x32\xa2\xd1\xa8\x31\xcd\x3a\x5e\x8f\xd7\x6a\x67\xc7\x1d\xc6\x90\xb7\x38\xfb\x4b\xc6\xc0\x59\x9f\xaf\xf8\x3a\xae\x26\x7c\x30\x00\xb9\x9e\x40\xe1\xe7\x77\x0d\xba\x3f\x5e\xab\x8a\x8d\xb3\x9d\xdf\xdd\x98\x7b\x59\xb3\xb1\x04\xac\x6d\xf5\xd7\xfd\xff\xeb\xd4\x82\x24\x49\x00\x20\xca\x06\x75\xc9\xc6\xcc\x16\xea\x54\x4c\xd8\x8d\x78\xe5\x21\x97\xd3\xfb\xd7\xd1\xd1\x41\x65\x59\x96\x08\xe3\xfe\xc6\x5e\xed\x53\x0b\x51\xfb\x33\x81\x70\x48\x8d\x31\xed\x53\xe0\xdc\x2b\xcb\xb2\x18\x89\x44\xae\xb9\x76\x47\x47\x07\x7d\xe8\xa1\x87\xa8\x2c\xcb\xae\x40\xd6\xb6\xf5\x81\x9e\xba\xcf\xfd\xde\xeb\xc1\x27\xff\xe0\xb5\xe0\xb3\x1f\x3d\x59\xff\xb5\xdb\x2e\xb9\x1e\x13\x4d\xe2\x6d\x6f\x6f\x97\xca\x19\xd5\x48\x26\x93\x0c\x80\x6a\x52\x8c\xbc\xb4\x79\xfc\x5b\x06\x9d\x39\xed\x8b\x03\x38\xdb\x98\x7f\x65\xc4\xad\x9f\x84\x15\xf9\xab\x10\xa0\x50\x12\x78\xff\x4f\x6f\x19\x3b\x58\x14\xcd\xdc\x4c\xe7\x0e\x7a\xd4\x73\xc7\xc2\x99\xc7\x51\x76\xcb\x4f\x47\xe0\x99\x08\x40\x6d\x26\x71\x56\xbb\x02\x00\x80\xbc\x6c\x8e\xe2\x6a\x41\xa6\x65\x43\xd9\xaa\xb6\x2b\x49\x73\xa7\x9c\xe7\xdb\x17\xfb\xfa\x35\x69\x76\x9f\x73\x82\x6d\x05\x60\xdf\xb6\x6d\xdb\x95\x7f\x8f\x44\x22\xd6\x52\x93\xc3\x1d\xbd\xa8\xfc\xce\x6f\xbc\xd5\x70\x24\x32\xe2\xfa\xdf\xb5\xaa\xf8\x5e\x45\x13\xef\x5e\x37\x61\xff\xd8\xae\x5e\xcf\xb7\x3f\x76\x32\xf0\xb8\xa2\x0a\x1b\x14\x45\xb1\xef\xdf\xbf\x9f\x96\x33\xa1\x55\x00\x89\x8b\x75\xda\xcf\x9e\xde\x9a\x3c\x98\x93\xcc\xcc\xd4\xfb\x9a\x84\xb3\x53\xa1\xec\x2b\x2f\x6d\x1e\xff\x2a\xac\x62\x52\x85\xfe\xfe\x7e\x76\xf4\xe8\x51\x94\xcf\x1f\x1a\x71\xeb\x3f\xfb\xfe\xed\x89\x2f\xf4\xf9\x8a\xdd\x25\xca\x0c\x0e\x6b\x35\x96\x93\xcc\xcc\xeb\xad\x13\xcf\xfc\x38\x92\xfc\x82\x21\xf0\xb3\xb0\x42\xf2\xd5\x39\x82\x2a\xde\x32\xd9\xa0\x6e\xca\x51\xf5\x12\xb0\x60\x63\x29\x2c\x30\x31\xf1\x46\x50\x5e\x1a\xb9\x6a\x47\x4b\x0f\x2d\x45\xc5\x2b\x02\x88\xee\x84\xf1\x50\xc1\x23\x9c\x50\x14\xe5\xca\x0a\xa7\x9c\x27\xe9\xda\x92\x70\xee\x79\xcf\xf9\xda\xbf\xa7\xd3\xd4\x39\x26\x20\x08\xe4\xa4\xfb\x1f\x79\xdb\xff\xd5\xef\xef\x48\x7c\x02\xb2\x3c\xd2\xd9\xd9\xa9\x27\x93\x49\xe6\xf7\xfb\xd3\x00\x62\x17\x7c\xea\x0f\xbf\x7d\xe7\xf0\xbb\x9b\x92\xce\x5f\x6b\xcc\x48\x61\x91\x11\x29\x55\x53\x1a\xe9\xf3\x15\x8f\xa7\x9c\x46\x17\x08\xce\x01\x48\x68\x9a\xa6\x57\x3c\xab\xe1\x70\xd8\x08\x85\x42\x19\x00\xb1\x71\xa7\xa1\x3e\x79\x6b\xb2\xd7\x51\xa2\x2d\x2e\x4d\x68\x30\x29\xd7\x27\xec\xc6\x45\x53\xc0\x20\xac\x1a\x0b\xb3\x26\xe2\xce\xe4\x0a\xa6\x92\x41\xaa\x2e\x8e\xc8\x09\x0c\x5d\x60\x39\x2c\xb3\x06\x98\x14\xb1\x74\xd5\xa4\xd9\xbc\x76\x29\xcd\x07\x35\x69\x73\x07\xac\x65\x58\x0a\xb8\x3a\xed\x88\x26\x09\xec\xbc\x50\xfb\x99\xe9\x84\x3f\x19\xf5\x39\xdb\x7d\xb7\x8e\xd4\xec\x3d\xb5\x2e\xf7\xcd\xf6\xf6\x76\xfd\xe0\xc1\x83\x6c\xef\xde\xbd\xba\xdf\xef\x4f\x02\x30\x34\x1b\x4f\xbe\x1d\xcc\x9f\x7d\x3b\x98\x77\xc3\xd2\xca\x05\x58\xc5\x31\x46\x50\xae\x80\x36\x59\x80\x4f\x3d\xf5\x54\xe5\xfc\x14\xac\x02\x98\x89\xa2\xc4\xce\x16\x25\x66\x47\x79\x8a\x28\x9f\x97\x01\xa0\xce\x56\x90\x62\x3a\x02\x50\x00\x74\x3e\xea\x9f\x03\xcc\xa4\x57\xaa\x70\x2e\x1b\xca\x06\xab\x48\x18\x77\xd9\x54\x36\xab\x31\x74\x23\x90\x0a\xac\x09\x9c\x3b\x41\x88\xb8\x67\xcf\x1e\xa3\x7c\x5f\x7b\x30\x23\xdd\xa1\x68\x42\xdb\x5c\xe7\x13\x10\x6c\xbe\xec\x78\xe4\xd4\xba\xdc\x61\x94\x0b\x5c\x1d\x3e\x7c\x98\xed\xd9\xb3\x47\x0f\x85\x42\x49\x58\x82\x8a\xe3\xea\x52\xcf\x80\xa5\xe6\x75\x4d\xd3\xf4\xe9\xf6\x50\x1c\x3e\x7c\x98\x45\xa3\x51\x23\x12\x89\x64\x64\x59\x2e\xc0\x9a\xe7\xe9\xa4\xf3\xe7\x8c\x26\x02\xb3\x04\x83\x28\xaf\x3e\x01\x84\x13\x30\x4e\xf8\xb2\xab\xff\x8a\xbd\x42\x18\x9c\x84\x61\xd1\xcb\xcf\x56\x20\x98\x70\x11\x0e\x3b\x27\xa0\x93\x6a\x08\x4a\xb5\xaa\xb8\xa9\x5a\x2d\x59\x5b\x14\xc3\x84\xc3\xc5\x09\xc4\x68\x34\x6a\x74\x75\x75\x55\x62\x0e\x6c\xf7\xee\xdd\x2c\x1c\x0e\xab\x98\x64\x93\x65\xb3\x59\x36\x57\xbb\x99\x72\x1d\x05\x00\xd0\x3b\x3b\x3b\x8d\xca\x12\x74\x3e\x7d\x0e\x67\x9c\x02\x00\x3e\x3f\x6b\xda\xca\x5d\x5e\x99\xe8\x1f\x01\x5d\xca\x7b\x73\x02\x86\xeb\x0d\x66\xd1\x24\xd5\x8f\x91\x21\x70\xc6\xcb\x6f\xf8\xd4\xee\xa5\x93\xa2\xa6\x0b\xfe\x0d\x0b\x75\xbd\xcf\xf8\x96\x33\x52\xbd\x41\x47\x38\x68\xb5\x95\x32\x97\x02\x4c\x80\x61\x8a\x24\x47\x75\xbe\x24\x5a\xc0\x90\x48\x86\x13\x32\x75\x80\xd9\xb0\x5b\x3f\x6f\x12\x6e\x08\x55\x68\xcb\x78\xad\x16\x43\x79\x4c\x97\xc2\x4f\x52\xc9\x26\x02\xe6\xd7\x02\x77\xa6\x07\x67\x8c\x72\x83\xa3\xba\x12\x22\x04\xa0\x02\x23\x15\x07\xc8\x72\x83\x01\x44\x55\x5d\x74\xc8\x96\x32\x03\x4b\x71\x83\xa2\x8b\x0e\x82\x58\x3e\x8e\x64\x32\x09\xbf\xdf\xcf\x00\xa8\x69\x87\xd1\xdf\xef\x2d\x9e\xd8\x38\xe6\xbc\x7b\xb6\xf3\x4d\xc2\x8d\xd3\xc1\xfc\xf3\xb0\xe6\x7f\x63\xb2\x7a\x9e\x54\x06\x66\x72\x7b\xdb\xaa\x3a\x94\xb6\xb5\xb5\xd1\x68\x34\x3a\xb9\x8a\x29\x2d\x5f\xd3\x40\x95\x7d\x0c\x67\x64\xae\x26\xf2\x9c\xa5\xd7\xe7\xa6\x00\xe1\x10\x65\x83\xb8\xb0\xcc\x04\x18\x1e\x1e\x46\x28\x14\x32\x40\x50\xc8\xfa\x85\x6e\x25\x65\xde\x50\x59\xda\x99\x90\xf3\x8b\xa7\x51\x0e\x72\x1d\x3e\x7c\x98\x95\x53\xb1\x54\x10\x24\x5e\xda\x9c\xfe\x86\x2f\x2f\x85\x3d\xaa\x38\x2d\xf9\x38\x38\x5e\x6b\x9d\xf8\xd1\xa8\x5b\x3f\x01\xcb\xd8\xbb\x22\x90\x72\x91\x2d\x89\x70\xd8\x7d\x39\x5b\xa3\x2f\x6f\xdb\x40\x00\x3a\xee\x30\xfa\x13\x0a\x86\xda\xdb\xdb\xd5\x70\x38\xac\x4f\x97\xd6\x35\x29\x1d\xcc\xe9\xcf\xd9\x5a\x36\x5f\x76\xee\xf6\x16\xc4\xcd\x25\x81\x17\x2e\x7a\xd4\x9f\xf7\xd6\x17\x8f\xb6\xb7\xb7\x67\xc2\xe1\xf0\xb4\x46\x64\x05\xd3\x11\x80\x01\x60\x9a\xc8\x0a\x8c\xc0\x10\xf8\xdc\x9b\x47\x08\x08\x9c\xba\xe0\x01\x4a\x15\x16\x2f\x8b\x2d\xd0\xd5\xd5\xc5\xca\xf9\x73\xb9\x74\xa3\xed\xe7\x8d\xbd\xfa\xc7\x29\xab\xce\x77\x51\x2d\x0c\x11\xb9\x89\x80\xf8\x3a\xca\x6e\x6e\xc0\x9a\x6f\xdb\xdb\xdb\x0d\x00\xc9\x9c\x6c\x9e\xf8\xcf\x1d\x89\x2f\xbc\xef\xdd\xba\xdf\x5b\x9f\xb2\x6f\xa5\xe5\x52\xf2\x1c\x1c\x79\xc9\xcc\x1c\x5d\x3f\xf1\xe3\xb3\x0d\x85\x1f\xc0\xda\xc4\x71\x65\x83\x4c\x59\xf8\x4e\x7f\xce\xd6\x76\xff\xbb\x75\x7f\xd3\x98\x91\x3e\x40\x61\x05\x88\x38\xb8\x9e\xac\x29\xbd\x72\x64\x63\xfa\x6f\x87\xea\x70\x72\xd7\xae\x5d\x05\xe0\xea\x7e\x81\x4a\xfd\x20\xca\xe0\x79\xcf\x05\xcf\x81\x1d\x97\x5c\x7f\x39\xb9\x91\xe6\x2d\xa3\x35\x7f\x7e\xef\x80\x71\xfc\xd9\x2d\x63\x7f\x11\xaf\xc5\xc9\x03\x07\x0e\x14\x66\x2a\x4c\x79\x9d\x70\x35\x4d\x83\x2c\xcb\xac\x44\x59\xc1\xa4\x5c\x15\x4c\xe2\xaa\x66\xa0\x14\x4d\x08\x4e\x77\xbd\xa5\x86\xa6\x69\x86\x2c\xcb\x39\xdd\x49\x63\xe9\x46\xf1\x35\x6f\xdc\x58\x70\x89\xda\xe9\x30\xd6\x6c\x7b\xd1\x94\xc8\x20\xa6\x94\x75\x2f\x93\x2f\x07\xa0\x3f\x27\x9b\xec\xc9\x5b\x93\xf1\xba\xa2\xb8\xad\x31\x23\x6d\xb2\x99\xd4\x3e\xe1\x30\x46\xe2\x6e\xed\x4c\xc9\xda\x1c\xd3\x8b\x72\x4d\x84\x23\x47\x8e\xb0\x8a\xf0\x03\x59\xdb\xf6\xbd\xa7\x03\xdf\xb3\x1b\xf4\x9a\x78\x00\x01\x91\xea\xf3\xd2\x03\xff\xad\xbb\xfe\xce\x67\xb6\x8c\xfd\x41\x6f\x7d\xf1\x85\xc9\xb1\x88\xf2\x9b\xef\x7e\xcf\x05\xcf\x27\xef\x18\x72\xfd\xf5\xd4\x95\x08\x01\x50\xab\x8a\x77\x3e\x7a\xa6\xfe\x07\x87\x6f\xbb\xfc\xd1\x51\x45\x3f\xb1\x6f\xdf\xbe\x69\x4b\xd3\x5e\xb7\x37\xb0\xb9\xb9\x99\x28\x8a\x22\x32\x0a\xef\xb6\x61\xd7\x87\x64\x93\x2a\x53\xbf\x33\x1d\x52\xce\x52\xdf\xa0\x57\x7b\x05\x40\xbe\xab\xab\x6b\xd9\xf6\x00\x7a\x3c\x1e\xe2\xf7\xfb\x19\x08\x84\x42\xad\x50\xf4\x5e\x32\x3a\x17\x4b\x0b\x68\x0e\x92\x1c\xdc\xee\xf8\x47\x2e\x90\x77\x00\xa4\xbb\xbb\xbb\xcd\x4a\x6f\x9f\xe1\xe1\x61\xee\x72\xb9\xb8\xdf\xef\xd7\x01\x64\x41\x90\x52\x6d\x6c\x20\xe9\x2a\x75\x8f\xba\xf5\x37\x27\x1c\xc6\x09\x46\x71\x0e\xd6\xbe\xc8\x31\x4d\xd3\x8a\x87\x0e\x1d\x62\xd1\x68\x94\x36\x37\x37\x8b\x84\xa1\xfe\x43\x6f\xd7\x7f\xc5\xa3\x8a\x33\xd6\x75\xa1\x9c\xd8\x9b\xc7\xe5\xf7\xbc\xd3\x98\x7f\x8a\xcb\x42\xb6\xb5\xb5\xd5\xdc\xb1\x63\x07\x91\x65\xd9\x51\x9f\xb3\xdd\xf1\x40\xcc\xfb\xcf\xb3\xed\xd7\x10\x39\xa9\x09\x64\xa5\xcd\x6f\x07\xf3\x3f\x95\x2c\x5f\x01\x9f\xda\x9b\x68\xa6\x39\x9b\x71\x02\x35\x27\x9b\xd7\x87\x8f\x66\x80\xaf\x60\x0b\xc3\x2a\x93\xba\xac\x76\x40\xd9\xc8\x31\x00\x24\x4b\x0e\x7a\xf2\x62\x44\xfe\xd6\x7c\x56\x30\x33\xc1\x14\xa0\x0f\x6e\xb7\xff\x9b\x29\x91\x73\x28\x6f\x6f\x9b\x6a\x5d\x1f\x39\x72\x84\x75\x75\x75\x19\x9a\xa6\x65\x60\xed\xd1\x3b\x07\xe0\x24\x80\x13\x00\xba\x51\x2e\x77\x1b\x8f\xc7\xaf\x94\xbf\xab\xc4\x2e\x82\x59\xe9\x8e\x40\xce\x36\x67\x1f\x05\x87\x21\x34\x6d\x19\xad\xd9\x8b\x72\x09\x98\xb2\xc1\xe7\x6a\x1f\x75\x7e\x58\xa8\x22\xa7\x20\x90\xb3\xed\x0c\x4e\x48\x3b\x00\xd8\xcb\xf7\xbe\x06\xd7\x09\x6b\x78\x78\x18\xb0\xe6\x70\x3d\xed\x30\x46\xe6\xba\x41\x05\xde\x82\x2d\x4c\xb8\x55\xa6\xa4\x5c\xe8\x68\xd9\x50\xde\x18\x99\x03\x30\x38\xd1\x68\x7b\x72\xe8\x56\xf9\xbb\x8c\x2e\x9c\x04\xa6\x00\x7d\xe0\x36\xc7\xd7\xf3\x5e\xf1\x67\xb0\xf6\xe6\x15\x66\xda\xe0\xd2\xd5\xd5\xc5\x0e\x1d\x3a\xc4\x8e\x1e\x3d\x6a\xc4\xe3\xf1\x8a\x0b\x36\x9d\xcd\x66\x33\x3d\x3d\x3d\xea\xc1\x83\x07\xaf\xa9\x78\x5a\xc9\x08\x6a\xc8\x4a\xd1\x6a\x52\xba\x00\xa0\x31\x2b\xdd\x85\xab\x25\x60\x28\x00\x67\x20\x27\x55\x15\xf8\x22\x20\xb4\x21\x27\xdf\x05\xc0\x3e\x5d\x46\xd0\x75\xea\x63\x92\x61\xa5\x26\x6b\x4a\x83\xd5\xdc\x04\x00\x5c\x9a\x10\x72\x69\x82\x3f\x6b\x37\xcf\x97\x5d\xa5\xcb\x86\x63\xc7\x8e\xb1\x60\x30\x68\x94\x7d\xe3\xb1\x54\x93\xf4\xbd\x92\x83\x66\x9a\xcf\xa8\xbf\x29\xa9\xbc\xea\x90\x36\x00\xa8\x35\x34\x31\xb8\xdd\xfe\xad\x82\x47\xa8\x54\x2f\x4d\xc7\xe3\xf1\x39\x37\xb8\x74\x77\x77\xb3\x79\xec\x82\x92\x04\x56\x7d\xf7\x73\x81\x11\x17\xae\xd5\xae\x92\x49\xe7\xe1\x84\xa2\xac\xb2\x4c\xbc\x0e\x33\x4e\x01\x00\xd4\xb1\x9a\x52\x5f\xb5\x45\xe7\x04\x4e\xa4\x86\xac\x14\x01\x20\x2d\xa4\x5a\xd5\x8d\xe2\xf0\xe1\xc3\x4c\xd3\x34\xab\x28\x33\x41\x77\xd6\x2f\xfe\x57\xcf\x7d\x35\x9f\x1b\xd9\x28\xbd\x58\x92\x48\x6e\xb6\xdf\xc1\x01\xe8\x76\x92\x8e\xb7\xcb\x3f\x89\xed\x74\x7e\xae\xe0\x11\x9e\x04\x70\x16\x40\x22\x99\x4c\x2e\x49\x53\x87\x09\x87\x71\xb9\xda\xb1\x4d\xd6\xe8\x83\xb8\x76\x65\xc5\x12\x2e\xbd\xbf\x9a\x73\x4d\xc2\xf5\x81\x3a\xf5\x6d\xcc\xb0\x32\x9b\xd1\x11\x04\x4b\x03\x9c\x37\x09\xd7\xc5\x2a\x03\x43\x2d\xe3\xf6\x7b\x7a\xeb\x8b\x87\x61\xad\x77\x97\x1d\x87\x0e\x1d\x62\xfb\xf7\xef\x57\x65\x59\x1e\x01\xa0\x9a\x36\x92\x1a\x69\x93\xfb\x47\x37\x4a\x61\xd7\x98\x79\x9b\x6b\xdc\xdc\x64\xcf\x31\xbf\xa0\x73\x27\x08\x60\x48\xa4\xa0\xba\xe8\x48\xce\x2b\xc4\xf2\x75\xc2\x19\x2e\x90\x7e\x58\x2a\x7f\x04\x40\x66\x09\xcb\xd8\xe9\x17\x3d\x5a\xb7\x2a\x9a\x69\x87\x21\xcc\xaa\xa1\x0c\xca\xf5\xb3\x8d\x85\x23\xb8\xb6\x04\x4c\xe1\x6c\x63\xe1\xa5\xdb\x87\x94\xc7\x24\x46\x67\xb5\x03\x2e\x78\x8b\x27\x32\x76\x73\x10\x80\x5a\x2e\x3f\x73\x0d\xa6\xad\x10\x12\x89\x44\x20\x8a\xa2\x58\x12\xb8\xb2\x25\xe1\x7c\xd0\x61\x08\xb5\xd5\xfc\x2a\xd9\xa0\xf6\x53\xeb\x72\x3f\x02\xc1\x84\x24\x49\xe6\xd0\xd0\xd0\xb2\x77\xc3\x3c\x75\xea\x14\x0f\x06\x83\x4c\x51\x14\x0d\x40\x16\xc0\x18\x28\x19\xd1\x6b\x68\x2c\xe7\x17\xdf\x4a\x87\x6c\xaf\xa7\x9a\x6d\xaf\xa6\x9a\x6c\x2f\xa5\x83\xb6\x97\x72\x3e\xf1\x15\xdd\x49\xdf\x04\x25\xef\xc0\x32\xda\x46\x00\x64\xfb\xfb\xfb\x97\xa4\x5a\x79\x5b\x5b\x1b\x64\x59\xa6\x86\xc0\x6d\x25\x81\xbb\xc2\x29\xfb\x8c\xd9\xc1\x1c\x1c\x27\x9a\xb2\x4f\xbf\x5b\x5f\x7c\xb2\x9c\x14\x52\x84\x45\x02\xa2\xd9\x18\x51\x6d\x4c\x0e\xa7\xec\xdb\x09\xc8\xb4\x17\xc8\xca\x46\xea\x27\x5b\xc7\xfe\x51\xb7\xf1\x33\x00\xc6\xfa\xfa\xfa\xcc\x81\x81\x81\x6b\x64\x32\x2d\x01\x1a\x1a\x1a\x88\xc7\xe3\x11\x40\xe0\x0a\xe4\xa4\x3b\x02\x39\xa9\xaa\xec\x60\xc9\x20\x9e\xf3\xbe\xe2\x0b\x05\x99\x5d\x74\x3a\x9d\x5a\x77\x77\xf7\x8a\xb4\x43\x8d\xc5\x62\x3c\x9b\xcd\x72\x9f\xcf\xa7\xcb\xb2\x5c\x84\x65\x98\x8d\x01\x18\x86\x65\xad\x0f\x02\x18\x80\xe5\x9c\x19\x04\x70\x09\x56\xfc\x3d\x93\xcd\x66\xf5\x43\x87\x0e\x99\x7d\x7d\x55\xcf\x7e\xf3\x05\x69\x6e\x6e\x66\x00\xf8\xa8\xa2\xa7\x4d\xca\x9d\xa1\x8c\xbc\x89\x4e\xe9\x45\xc8\x08\x67\x27\xd7\xe5\x5e\x3a\xba\x7e\xe2\x6b\xdc\x5a\x4e\xa6\xfb\xfb\xfb\xcd\xd1\xd1\x51\xf8\xfd\x7e\x0e\xc0\x4c\xb8\x4a\xc9\x71\xa7\xa1\x37\x64\xa5\xf5\x92\x49\xec\x15\x22\x95\xf7\x68\xf4\x3e\x75\xeb\xd8\x3f\x65\x1c\xe6\xd1\xf2\x6f\x2e\x1e\x3e\x7c\xf8\xba\xe5\xf9\xb4\x53\x40\x3c\x1e\x47\x38\x1c\x36\x00\xe4\x06\x3d\xea\xc9\xad\x23\x35\x0f\x54\x13\x13\xa0\x20\x74\x73\xd2\xf9\xe0\x65\x65\xe2\x0d\x45\x51\x2a\x39\x6c\x2b\x82\x72\x81\x05\x00\xd0\x77\xef\xde\x6d\x04\x83\x41\x75\x8a\xbf\x1d\x28\x3f\x5f\x35\x7e\xf7\xc5\x42\x77\x77\x37\xdb\xb6\x6d\x9b\xa1\x28\x4a\x0a\x04\xe7\x8e\x37\x67\xbf\xd6\xe7\x2f\x9e\xde\x32\xea\xbc\xaf\x3e\x27\x35\x11\x00\x29\x67\x29\xd1\x13\x28\xbc\x96\x70\x95\x7e\x51\xce\x08\x4a\x4e\xce\x08\x0a\x85\x42\xba\xa2\x28\x49\x10\x9c\x8d\x05\x0a\xfa\x79\x5f\xb1\x6b\xdd\x84\x7c\xbb\x3f\x6f\x0b\x95\x28\xd7\x47\xdc\xda\xf9\xcb\xae\xd2\x5b\x9c\x20\x86\xb2\x07\x72\xa6\x12\x32\x33\xca\xb5\xdc\x09\x24\x50\xa3\xd1\x5d\xbf\xff\x7a\xe8\x1b\x42\x95\x76\xc0\x84\xdd\xe8\x3d\x74\xd7\xf0\xa3\x8c\xa2\xbf\xa7\xa7\x47\x5d\x2b\x0d\x33\x3d\x2a\x1d\xd6\x50\xe9\x3a\x06\x04\x60\x65\x1d\x51\x58\x4b\xda\x04\xae\xf6\x45\x54\xa7\xba\x72\x27\x9d\xef\x2e\x5f\xc3\x0b\x6b\xa9\x58\x59\x12\x27\xcb\x47\x61\xb6\x2e\x25\x33\x56\x09\x2b\xdb\x01\xb4\x24\x70\xc7\xfa\x71\xfb\x7d\x8a\x26\x56\x95\x22\x2e\x1b\xc4\x3b\xe2\xd6\x8f\xa7\x9d\x46\x9f\xa2\x28\xea\xa9\x53\xa7\x56\xac\x35\xfa\x6a\xc6\xa9\x53\xa7\x78\x5b\x5b\x9b\x39\x69\x8a\x1a\x85\x35\x15\x5d\xc4\x55\x43\x34\xad\x69\x9a\xfa\xf5\xaf\x7f\xfd\x3a\xd5\x5d\xb6\x75\x4c\x45\x51\x8a\xa8\xd8\x3a\xd6\x35\xe2\xe5\xbf\xe3\xb0\x9a\x6f\x98\xb3\x25\x87\xcc\x48\x80\xb2\x8b\x95\x80\xc0\x29\x1b\xb4\xb5\x75\xdc\x7e\x5b\x35\x3f\x8c\x80\x40\x36\xa8\xbd\xa7\xa1\xf0\x82\x28\x8a\x79\x4d\xd3\x78\x22\x91\x58\x23\xc1\x34\x28\xdb\x48\x5c\x51\x14\x5d\x96\x65\x15\xd6\x9b\x9b\x85\xd5\x28\x4b\xed\xee\xee\x36\x7f\xfa\xd3\x9f\xce\x28\xbc\x58\x2c\xc6\xbb\xba\xba\x98\xcb\xe5\x32\x65\x59\xd6\xca\x64\x52\x93\xc9\xa4\xde\xd7\xd7\x67\x3e\xf1\xc4\x13\xe6\x5c\x6d\xe9\x67\x9d\xda\x0f\x1c\x38\x20\x01\x68\xf4\x14\xc4\x0f\x7c\xe2\x78\xe3\x97\xab\x49\x7c\x00\x00\x93\x70\xf5\xf1\x3b\x46\x3f\x9c\x74\x95\x8e\x66\xb3\xd9\xdc\x6a\xef\xf8\xf5\xab\x8c\xb9\x04\x6a\x00\xc8\xa5\x1d\x46\xef\xb0\x5b\x3b\xd7\x34\x61\xaf\xaa\x20\xbd\xc0\x89\x3d\x7a\x51\xd9\xff\xec\x96\x54\xb7\xa2\x28\x6a\x5b\x5b\x9b\xb1\x56\x1e\x76\xe1\xa8\xf4\x1e\xc2\xa4\x84\x91\x64\x32\x89\xc5\x68\x9e\x39\x6b\xa5\x50\x9f\xcf\x47\x3c\x1e\x0f\x40\x20\x01\xf0\xcf\x95\xf9\x32\x19\xde\x82\x6d\x43\x5f\x7d\xf1\x85\xa2\xc4\x46\x7d\x3e\x9f\xbe\x52\x4b\xc2\x9b\x19\x7b\xf6\xec\xa1\xbb\x76\xed\x12\x3c\x1e\x8f\x2c\x19\xc4\xed\x2d\xd8\x42\x8a\x26\xfa\x4c\xca\x05\x49\x71\xf0\x70\x38\xcc\x5b\x5b\x5b\xf9\x3b\xef\xbc\xb3\xe0\xb1\x9d\x95\x00\x7d\x7d\x7d\x3c\x1a\x8d\x12\x00\xc2\x84\xdd\xe0\xb7\x8e\xd4\x3c\x68\x9b\xc3\xf3\x54\x01\x05\xb1\xb9\x34\xc1\x13\xab\x2f\xbc\x24\xcf\x10\x8a\x5c\xc3\xcc\xd8\xbb\x77\x2f\x6d\x68\x68\x90\xe4\x12\x09\xdc\x77\xc1\xf3\xc7\xbb\x7b\xbc\xff\x74\xfb\x25\xe5\x33\x91\xe1\x9a\xff\xb9\xe3\x92\xeb\x37\x7d\x05\x5b\xd3\xa8\xa2\x9f\x13\xdd\x8e\x62\x24\x12\x31\x17\x6a\x6c\xcf\x59\x2b\xb8\xad\xad\x8d\xcb\xb2\x4c\x4c\x0a\x9b\xa3\x44\xc3\xa1\x8c\x3c\x67\x1e\x7c\x05\x9e\xa2\xb8\x71\x44\xd1\x4f\x4c\x38\x8d\x7e\x9f\xcf\xa7\xad\xad\x08\xaa\xc3\x9e\x3d\x7b\x68\x43\x43\x83\xe4\xd0\x69\xcb\x47\x4e\x07\xbe\xb9\x71\xcc\xf9\xbb\x22\xa3\x5e\x02\x42\x09\x08\x15\x38\x71\xfb\xf3\xd2\xdd\x9b\x93\x8e\x07\x2e\x78\xd5\x9f\x1b\x0e\x9a\x6e\x6b\x6b\x33\x17\xa2\x65\xe7\x24\x80\x2c\xcb\x24\x14\x0a\x71\x00\x34\x6d\x37\xd8\xb6\x61\xd7\x6e\xca\xab\xeb\x12\x46\x40\x68\x63\x56\x6a\x10\x39\x0b\xf4\x00\x00\x0b\x4d\x49\x44\x41\x54\x3f\xdb\x90\xff\x29\x91\x84\x7c\x30\x18\x34\x17\xd2\xd9\xea\x57\x0d\xbb\x76\xed\x12\x00\x78\x1f\x3a\xe7\xfd\x3f\xcd\x13\xf6\x47\x66\xfa\x9e\x6c\xd2\xfa\x60\x46\xbe\xf5\x6c\x63\xfe\x19\xc9\xbe\x30\x2d\x3b\xa7\x20\x87\x87\x87\x79\x79\x1f\x1c\xd7\x6c\x5c\x70\xab\xc2\xe6\x40\x4e\x6a\xad\xf6\x06\x0e\x43\x08\x08\x9c\x18\x83\x5e\xf5\xb8\xa2\x28\xda\xda\xb2\x70\x76\xec\xdd\xbb\x97\x3a\x9d\x4e\x87\x37\x2f\x46\x3a\xfb\xea\x3e\x3f\x57\x85\xd6\x1a\x9d\xb6\x5c\x56\x4a\x27\xc7\x9d\xc6\xf9\x85\x68\xd9\xaa\xc2\xb6\xe5\x44\xc6\x02\x80\xf8\xf1\xe6\xec\x7f\xcd\xb6\xa5\x79\x3a\xec\xb8\xe4\xfa\xa3\xe6\x71\x79\x27\x00\xe7\xce\x9d\x3b\x57\x6c\xff\xc0\xcd\x80\x4a\x7d\xc6\x60\x46\xbe\xb7\x9a\x8c\x1f\x02\x82\xd6\x94\xfd\xfd\x00\x9c\x65\x57\xf7\xbc\x50\xd5\x09\x93\xd2\xae\x52\x69\x87\x71\xfa\x6c\x15\x9d\x2c\x26\x43\xe0\xc4\xfe\x60\x8f\xf7\xf3\x4e\x9d\x86\x01\x5c\xd9\x2b\xbf\x86\x19\x21\xc9\x06\xad\xaf\xfa\xcb\x26\xf1\x62\x81\xe9\x78\x55\x9f\x50\xd6\x02\x39\x10\xc4\xdf\x68\xcd\xfc\x40\x15\xd9\xb4\x85\x09\x66\x82\x5b\x13\xdb\x1e\x3a\xe7\xfb\x3b\xca\x10\x50\x14\x45\xda\xb3\x67\xcf\x1a\x09\x66\xc1\x84\xc3\xa8\x7a\xfb\x50\xb2\xa6\x14\x5f\xe8\x7d\xaa\x16\xc2\xe4\xe4\xcb\x9c\x6c\x76\x77\x35\x65\x9e\x99\xef\x44\xde\x32\x2e\x3f\xfc\xde\x3e\xcf\xa7\xc0\xe1\x09\x85\x42\xe2\x72\xe7\x0e\xde\x44\x30\x86\x6a\xb5\xb3\x45\xd1\x4c\xcf\xf5\x45\x93\x70\xa3\xd7\x5f\x7c\x1d\x58\xd8\xee\xec\x79\xb5\x8e\x95\x24\x09\x0d\x0d\x0d\x0c\x00\x4b\x28\xa5\xec\xc6\xa4\xfd\x5e\x67\x49\xa8\x3a\xb7\x8d\x80\xa0\x21\x2b\xdd\x65\x50\x9e\x1c\x76\xeb\xe7\xfc\x7e\xbf\xee\x72\xb9\xf8\xd4\x24\x85\x5f\x65\xb4\xb6\xb6\xc2\xe9\x74\x52\x53\xe0\x92\x49\xb9\xa7\x75\xdc\x7e\xdb\xcc\x09\x23\xc0\x99\x50\xfe\x85\x73\x8d\x85\x1f\x02\x88\x6b\x9a\x56\x9c\xaf\x11\x38\x2f\x02\x0c\x0d\x0d\x55\xfa\xd9\x98\x8c\x82\xa7\x9c\x86\xb9\x25\xe1\xdc\x39\x53\x46\xca\x74\x20\x20\xa4\x39\x2d\x77\x16\x24\xf3\x62\x42\x29\xf5\xfa\xfd\xfe\xd2\x1a\x09\xae\x42\x10\x84\x2b\x09\x23\x23\x8a\x9e\x16\x18\xa9\x0b\x66\xa5\x0d\x53\xc7\x98\x83\xe3\x5c\xa0\xf0\xc6\xcb\x9b\xd2\x5f\x29\xef\x3f\x48\x4d\x97\xf1\x33\xe7\xfd\xe6\xfb\x80\xa6\x69\x56\x1e\xd0\xc8\xd8\x4d\xcd\x6e\xd0\x60\x30\x2b\x57\x5d\x4f\x10\x00\x08\x88\xd0\x3a\x6e\x7f\x7f\x41\x32\x07\x12\x4a\xe9\xfc\x1a\x09\xae\x22\x91\x48\xf0\xb2\xf3\xcd\x04\x81\x76\xd1\xa3\x0d\x0e\xd6\xa9\xc3\x84\x13\x99\x72\x42\x8a\x36\x56\xb8\xe8\xd1\xfa\x5e\xdd\x30\xf1\x44\x57\x73\xf6\x3b\x8c\xe2\x0c\xac\x66\x9c\xc5\x27\x9e\x78\x62\x69\xa7\x80\xca\x03\x06\x83\x41\xae\x28\x8a\x09\x02\x33\xee\xd6\xd2\x1b\xc7\x1c\x77\x3b\x4b\x42\x55\x3b\x88\x2a\xa0\x20\x62\x38\x65\x7f\x50\x17\xd8\xe8\x88\xa2\xc7\xfc\x7e\x7f\x29\x18\x0c\xf2\x35\x47\x91\x15\x26\x8e\x44\x22\x86\x28\x8a\x2a\x08\x32\x39\xbb\x39\x74\xde\x5f\x7c\xeb\xf4\xba\xdc\xd1\xd3\xeb\x72\x3f\xeb\xad\x2f\xfe\x2c\xed\x34\x8e\xc1\xca\xf8\x19\x06\x50\x78\xf5\xd5\x57\xf9\x7c\x3b\x87\x03\x0b\x20\x00\x60\xc5\xa1\xa3\xd1\x28\x07\x50\x62\x14\xc6\xa8\x5b\xcb\x6f\x19\x75\x76\x08\x55\x7a\x08\x2b\x20\x20\x62\xcb\xb8\xfd\x41\xc9\x24\xec\x62\x9d\x76\x46\x71\x2b\xa5\xd6\xd6\x56\x76\x23\xc1\x8d\xd5\x86\xce\xce\x4e\x1a\x0e\x87\xc9\x7c\xb5\xdb\xa9\x53\xa7\x2a\x24\x28\xc2\x4a\xee\x18\x85\x95\xdb\xd7\x5f\x3e\x2e\xa1\xbc\xe5\xec\xd5\x57\x5f\xe5\x0b\x8d\x0a\x2e\x88\x00\x80\xb5\x89\xb4\xb9\xb9\xd9\x04\x50\xca\xcb\x4c\x55\x6d\x4c\x5e\x9f\xb2\x6f\xab\xb6\x64\x4a\x05\x04\x84\x06\x33\xd2\xaf\xf9\x73\xb6\xd0\x60\x9d\x76\x42\x52\x1c\xc5\x48\x24\xc2\x4d\xd3\xc4\xcd\xec\x31\xac\x44\xf2\xea\x7d\x7e\x5b\x43\x5d\xbd\xed\xf6\xbb\xa2\xdc\xe5\x72\x61\x3e\x44\x28\x1b\x74\xcc\xe7\xf3\x69\xa2\x28\x16\x60\x25\x8b\x64\xca\x7f\x8b\x3d\x3d\x3d\xe6\x13\x4f\x3c\xc1\x16\xf2\xe6\x57\x70\x43\x95\xd5\xca\xf5\xf8\x25\x00\x8d\xe0\xb8\xe3\x81\x58\xdd\x5f\x44\x46\x5c\x73\xee\x77\x9b\x09\x29\x47\xe9\xc4\xb3\x5b\x52\x9f\x1a\x75\xeb\xa7\x61\x75\xc2\x5c\x92\xd4\xec\xa5\x44\x24\x12\xa1\xd1\x68\x14\xb2\x2c\xdb\x6d\x06\xf1\x3e\x10\xf3\xfe\x29\xe5\x10\x9f\xde\x3a\xf6\x77\x20\xc8\x9d\x39\x73\xc6\x58\xce\xc6\x14\x73\x61\xc1\x1a\x00\xb0\xa6\x82\xf2\xaa\xa0\x04\x82\xd2\x60\x9d\x36\x1c\xcc\x48\xb7\xd6\xaa\xe2\x82\xf6\x86\x39\x0c\x21\x78\x4b\xa2\xe6\xc3\x8c\xf0\xec\x88\xa2\xf7\xba\xdc\x8a\x19\x89\x44\x4c\x51\x14\xc9\xcd\x10\x4a\xde\xbb\x77\x2f\x6d\x6f\x6f\x17\x45\x51\x74\x35\x66\xa4\xdb\x1f\xed\xae\x3f\xd8\x34\x61\xff\x0d\x6f\x41\xbc\x27\x2f\x99\x17\x12\x4a\xa9\xb7\xa1\xa1\x61\x55\x75\x51\xbb\x21\x02\x00\x96\x9a\x2a\xef\x25\xd4\x18\x45\x69\xc0\xab\x8e\x86\x53\x8e\xdb\x9d\x25\xa1\xaa\xba\x02\x53\x41\x39\xb1\x37\xa7\xe5\x87\xc2\xe3\xf6\x3b\x92\x35\xa5\x1e\xb5\x86\x4c\x84\x42\x21\xb3\xad\xad\x8d\xeb\xba\x4e\x6e\x44\xdd\x2d\x15\x2a\xea\xde\xe9\x74\xca\x92\x41\x02\x3b\x2f\xd4\xfe\xc9\xfd\xef\x7a\xbf\xe4\x2a\x09\x1b\x09\xac\xa5\x6f\xd3\x84\xfc\x9e\x0b\x5e\xf5\x48\x41\x62\xc9\x48\x24\x52\x5a\x2d\xa1\xf1\x1b\x26\x00\x00\x64\xb3\x59\x84\xc3\xe1\x12\x00\xad\x24\xf0\x62\xbf\xb7\x38\xba\x31\xe9\xb8\x43\x36\xa9\x63\x21\xd7\x23\x20\x70\xe9\xe2\xfa\x5b\x46\x6b\x3e\x56\x5b\x14\x3d\x97\x5d\x7a\x1f\x6a\x6c\x5a\x38\x1c\x66\x95\xfc\x84\xd5\xa0\x11\x2a\x82\x57\x14\x45\xa6\x0c\xb5\xb7\x8c\x3a\x1f\x7e\xf8\xac\xff\x2b\xe1\x71\xc7\x63\x02\x88\x3c\xf9\xbb\x02\x27\x8e\xd0\x84\xb4\xfd\x5c\x43\xe1\x59\x22\x09\x85\xd6\xd6\x56\x73\x35\x18\xbb\x8b\x42\x80\xb1\xb1\x31\xee\x72\xb9\xe0\xf7\xfb\x4b\x00\x8a\x9a\x8d\xe7\x07\xeb\xd4\xb1\x0d\x63\x8e\xdb\x64\xb3\xba\x0c\xa2\xe9\x40\x41\xa4\x40\x5e\xba\x27\x32\x52\xf3\x98\xa3\x44\x1d\xc9\x1a\x63\x90\x38\x6d\x7a\x28\x14\x62\xd1\x68\x94\xbb\x5c\xae\x79\x5b\xd7\x37\x8a\x48\x24\x42\xdf\xff\xfe\xf7\x93\x9d\x3b\x77\x0a\x8a\xa2\xc8\x84\xa3\x76\x53\xd2\xb1\xeb\x03\xe7\x7c\xff\x77\xdb\xb0\xeb\x7f\xd9\x4d\xa1\x61\x26\xc3\xca\x51\x12\x82\x2e\x5d\xa8\xe9\xf3\x15\x8f\x39\x6b\x9c\xaa\x24\x49\x7c\x25\xb6\xcf\x4d\xc6\xa2\x96\xd7\xad\xd4\xae\x81\xb5\x49\xa1\xcd\x53\x10\xdf\xfb\x68\xb7\xff\x93\x75\x45\x5b\xd5\x65\xe7\x67\x43\x89\xb2\x44\x4f\xa0\xf0\xfd\xd3\xa1\xdc\xa1\xcb\xae\xd2\x79\x6e\x55\xee\x32\x34\x4d\x33\x96\x72\x67\x4f\x34\x1a\xa5\xad\xad\xad\x95\x50\xad\x08\x40\xb2\x97\xa8\xa7\x2d\xe1\xd8\x7d\x5b\x5c\xf9\x03\x6f\x41\xbc\xbb\xda\xbd\xfe\x1c\x9c\xfd\xac\x6d\xfc\x4f\xbb\x83\xf9\xef\x02\xc8\xcc\x54\xbb\x67\xb9\xb0\xe8\xf5\x95\x2b\x9d\x3b\x00\x78\x00\x6c\x72\xa9\xc2\xce\x3d\x67\x7d\x7f\xdc\x98\x95\x5b\x16\xeb\x1e\x0c\x5c\x4f\xba\x4a\xaf\xbc\xd3\x90\xff\xc1\x05\xaf\xfa\x72\xda\x61\x24\x40\xa0\xa3\x5c\xab\x38\x9b\xcd\xb2\x6c\x36\x3b\x5b\xc3\x86\x59\xd1\xd1\xd1\x41\x7d\x3e\x1f\x26\x55\x05\x15\x01\x48\xa2\x49\x9c\xeb\x26\xe4\xad\x5b\x12\xce\x0f\xaf\x1f\x73\x7c\x48\x36\x68\xcb\x42\x06\x50\x17\x58\xea\xfb\x3b\x12\x1f\x49\xba\x4a\x27\x34\x4d\xcb\xcd\x56\xc5\x6b\xa9\xb1\x14\x05\xb6\xa7\x92\x20\x2c\x19\xe4\xce\x07\x7b\xbc\x7f\xb8\x29\xe9\xd8\x3e\x5f\x3f\xc1\x5c\x30\x09\xcf\x24\x6b\x4a\xaf\x0d\x78\xd5\x97\x2e\x7a\xd4\xa3\x09\x57\xe9\xbc\x66\xbb\x52\xb8\xba\x52\xbc\xfa\xba\x22\x8f\x93\x3e\xd3\x29\x9f\x2b\x87\x08\x0e\xc9\x53\x14\xfd\xa1\x8c\xbc\xa3\x35\x65\x7f\x5f\x73\x5a\xde\xe5\x28\xd1\x4d\xd5\xbe\xed\xb3\x21\xe9\xd4\x4f\x7c\xff\xf6\xc4\x3e\x5d\xe4\x83\xfd\xfd\xfd\xfa\x4a\xf5\x58\x5c\x12\x02\x00\x57\x72\xd9\x45\x58\x7b\xd7\x5a\x28\xc3\xf6\xbb\x07\xdd\xfb\xee\x1a\x74\x3f\x20\xf0\xa5\xa9\x2a\xca\xc1\x99\x41\x79\x72\xdc\x61\x74\x8f\xd5\x94\xce\x25\x5d\xa5\x9e\x8c\x6c\xf4\x67\x1c\x66\x5c\x15\x59\x5a\x13\x59\x41\x17\x98\xc1\x01\x06\x02\x80\x03\x02\x27\xa2\x64\x12\xd1\x5e\xa2\x6e\x47\x49\xf0\x7a\x8a\x62\xd8\x53\x14\xc3\xbe\xbc\xed\xd6\x40\x4e\xda\xea\x2c\xd1\x4d\x84\x13\xe7\x62\x0f\x14\x07\x70\xae\x21\x7f\xf0\xd9\x2d\xa9\xbf\xc2\x0a\x4e\x05\x4b\x56\xd6\xed\xb9\xe7\x9e\x63\x9d\x9d\x9d\x46\xb9\xeb\xe5\x79\x46\xa1\xbf\xd6\x9a\xc9\x8d\x2a\xfa\xe0\x03\x3d\xde\x8f\xd7\x2c\x70\x99\x38\x1b\x08\x08\xb5\x31\x12\x08\xe4\xa5\xfb\x03\x79\xe9\x7e\x24\x2a\x25\x8c\x39\xe3\x80\xce\x09\x0a\x8c\x70\x95\x13\x18\x1c\x60\x04\x10\x29\x27\x22\xe1\x70\x52\x0e\x3b\x40\xa4\x25\x7b\x23\xa6\x40\x15\xcd\xcc\x40\x9d\x7a\x01\x56\x26\xcf\x8a\x14\xd4\x00\x16\x69\x15\x30\x13\x06\x06\x06\xb8\xa6\x69\xbc\xb9\xb9\xb9\x04\xa0\x00\x82\x89\xb4\xd3\x18\x89\x05\x0a\xe7\xeb\x0a\xe2\x3a\x4f\x51\xf4\x2f\xf6\x94\x30\x15\x95\x75\x38\x01\x11\x29\x88\x43\xe0\x44\x11\x38\xa9\x15\x39\xf1\x08\x9c\xb8\x29\x27\x2e\x0a\x22\x13\x10\x61\x39\x84\xcf\xc1\x71\xd1\xa3\xf5\xfe\x38\x92\xfc\xa7\x4b\x1e\xfd\x65\x58\x3e\x7e\x6d\xa5\x9c\x43\x4b\x4a\x00\xc0\x8a\x1e\x76\x75\x75\xb1\x48\x24\x52\x12\x45\x51\x05\x90\xd1\x45\x9e\x8a\x05\x0a\xef\xe6\x25\xd3\x0c\x66\xa4\x56\x1b\xa3\xb6\xa5\x7e\x8e\xd5\x00\x4d\x60\xea\xab\x1b\x26\x7e\x72\x64\x53\xfa\xdf\x54\x89\xbf\x09\x2b\xa8\x93\x8d\xc7\xe3\xc6\x4a\x45\x41\x97\x9c\x00\x15\x9c\x3a\x75\x8a\xb7\xb6\xb6\x9a\x4e\xa7\x53\x85\x55\x58\x31\x9d\x50\x4a\x03\x3d\x81\x42\xaf\x4b\x17\xfc\x75\x05\xb1\x61\xa9\xb5\xc1\x4a\x81\x83\xa3\xcf\x5f\x3c\xfb\xd4\xad\xc9\x7f\x1d\xf0\x69\x4f\x73\x82\xd3\xb0\x2a\x94\x4c\x24\x93\xc9\xd2\x42\xe2\xf8\x8b\x85\x65\x23\x00\x00\xbc\xf3\xce\x3b\x5c\x92\x24\xde\xd0\xd0\xa0\x03\xc8\x03\x48\xeb\x22\x4f\xbe\xeb\x2f\x9e\xbb\x54\xab\x25\xbc\x05\x5b\x63\x8d\x4e\xdd\xbf\x2c\x44\xe0\xe0\xb8\xec\x2a\xc5\x9f\x6b\x1f\xff\xde\x9b\x2d\xd9\xff\xd0\x6c\xfc\x4d\x58\xa5\xe7\x46\x00\xe4\xcf\x9c\x39\x63\x3e\xff\xfc\xf3\x2b\x1a\x17\x58\xb1\x91\xde\xb7\x6f\x1f\x55\x14\x45\x84\x55\xd5\xc2\x0f\x6b\xa5\xd0\xb6\x29\xe9\xec\xbc\x7b\x50\xd9\xe5\xcb\xdb\x1a\x6f\x56\x22\x70\x70\x8c\x3b\x8d\xe4\x1b\x2d\x99\x17\x63\xf5\x85\x97\x18\x45\x2f\xac\xa2\x0f\x49\x58\x35\x87\x8d\xd5\xb2\x65\x7e\x45\x47\x38\x1a\x8d\xd2\x2b\x8d\x9f\xac\xe5\x62\x85\x08\x1b\x36\x26\x1d\xef\xb9\xfd\x92\x72\x5f\x30\x23\xb5\xdc\x2c\x44\xe0\xe0\x48\xb8\x4a\xf1\x13\x4d\xd9\x57\x7a\xeb\x0b\xbf\x30\x29\xce\xc3\x12\x7c\x02\xe5\x5e\x41\xe5\x36\x2f\xab\x42\xf8\xc0\x0a\x13\xa0\x82\xb2\xcf\x80\xc2\x6a\xa9\x52\x21\x42\x88\x70\x84\x83\x19\xe9\xb6\xc8\xb0\x6b\xe7\xc6\xa4\x63\x8b\x64\x52\xfb\xaa\x78\xe0\x29\xd0\x29\xd3\x2f\xf8\x8a\xb1\xd3\xa1\xfc\xd1\x78\xad\xd6\xc5\x09\x06\x61\x95\x6a\xa9\x08\x5e\x8d\xc7\xe3\x6c\x35\xe6\x36\xac\xaa\xf1\x2c\x27\x98\x54\x88\xe0\x82\x15\x53\x68\x04\x10\xb2\x97\x68\x78\x53\xd2\x71\xd7\xe6\xcb\xce\xed\xa1\x09\xa9\xc5\xc6\xe8\xb2\x97\xa6\x9f\x0c\x83\x72\x63\x44\xd1\x86\x7a\x02\x85\xd3\xbd\xfe\xe2\x9b\x45\x89\xf5\xc3\x4a\xd9\x1a\x81\xd5\x5e\xae\x80\x55\x2c\xf8\x0a\x56\x15\x01\x2a\x98\x44\x84\x8a\x8d\x50\xd1\x0a\x01\x00\x01\xa7\x46\x5b\x5a\xd2\xf6\x6d\x2d\xe3\xf6\xb6\xa6\xb4\xdc\xe2\xd2\x04\x0f\x5d\xe2\x9f\x52\x69\x00\x71\xa9\x56\x1f\x1c\xf0\xaa\xb1\xc1\x3a\xb5\x3b\x27\x99\x03\x20\x18\x81\xf5\xa6\xa7\x60\x15\x7b\x52\x01\xe8\xab\x5d\xf0\x15\xac\x4a\x02\x54\x50\x8e\x2e\x02\xe5\x60\x0c\xae\x92\xc1\x03\x8b\x10\x5e\xca\xe0\x77\xab\xe2\xba\xc6\xac\xb4\xa1\x21\x2b\xb5\xf8\xf2\xb6\x80\xb7\x20\x7a\x1d\x25\xc1\x45\x39\x28\xaa\xea\xcf\x7d\x15\x1c\x1c\x8c\x80\xa9\x22\x2b\xa4\x1d\x46\x3a\xe9\xd2\x47\x12\xae\xd2\xd0\xb0\x5b\x3b\x3f\xe1\x30\x2e\x9a\xf4\x4a\xf9\xb5\x54\xf9\xc8\xa1\xfc\xb6\xa3\xca\x3e\x3d\xab\x09\xab\x9a\x00\x15\x44\x22\x11\xda\xd6\xd6\x36\x39\x1c\x2b\xc2\x72\xa1\x3a\x61\x4d\x15\xee\xc9\x07\xe1\x70\xc9\x06\x75\xd7\x68\x82\xcf\xad\x09\x5e\x7b\x89\xba\xed\x06\x75\xda\x4b\xd4\x2e\x30\x22\x0a\x96\xfb\x97\x32\x0a\xc3\xa0\xdc\xd0\x44\xa6\x6a\x22\x2b\x14\x6c\x66\x26\x27\x9b\xe9\x9c\x6c\xa6\x8a\x36\x36\xce\xad\xbd\x90\x19\xe0\x9a\x63\xb2\xc0\x75\x00\x46\x32\x99\x64\xb1\x58\x0c\xd3\xf5\xe6\x5d\xed\xb8\x29\x08\x30\x19\x53\xc8\x50\x39\xa4\x49\x87\x7d\x9a\x43\xc2\x55\xe2\x54\x6c\x87\x4a\x6f\xa3\xca\x9e\x47\x7d\xd2\xa1\x4e\x73\x54\xc2\xcd\x06\xac\x22\x4d\x37\xad\xd0\x27\xe3\xa6\x23\xc0\x54\x74\x74\x74\xd0\x60\x30\x78\xa5\xe9\x35\x26\x87\x73\xa7\xff\x3c\x35\x12\xc9\xa6\x1c\xc6\x94\xbf\x0c\xb0\xda\xbe\x0f\x0f\x0f\x57\xdd\x91\xf3\x66\xc1\x4d\x4f\x80\xe9\x10\x8d\x46\xa9\xcf\xe7\x83\x24\x49\xf0\xf9\x7c\x90\x65\x19\x98\x7b\x27\x34\xd3\x34\xed\x4a\x53\xc7\x85\x26\x93\xac\x61\x0d\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\xab\x1e\xff\x1f\x26\xf5\xd6\xf1\x64\x30\x2a\xac\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x81\x22\x7c\x0b\x92\x2b\x00\x00") -func web_uiStaticFavicon128PngBytes() ([]byte, error) { +func web_uiV1StaticFavicon128PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticFavicon128Png, - "web_ui/static/favicon-128.png", + _web_uiV1StaticFavicon128Png, + "web_ui/v1/static/favicon-128.png", ) } -func web_uiStaticFavicon128Png() (*asset, error) { - bytes, err := web_uiStaticFavicon128PngBytes() +func web_uiV1StaticFavicon128Png() (*asset, error) { + bytes, err := web_uiV1StaticFavicon128PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/favicon-128.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/favicon-128.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticFavicon16x16Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x35\x03\xca\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x02\xfc\x49\x44\x41\x54\x38\x8d\x7d\x53\x5d\x48\x53\x61\x18\x7e\xbf\xef\x7c\x3b\x3b\x3f\xcb\x2d\x97\x67\xb6\x8d\xb9\x74\xce\xf2\x27\xeb\xc6\x56\xf6\x43\x41\xd1\x2f\x15\x89\x20\x44\x48\x17\xdd\x94\x37\x51\x14\x12\x51\x89\x57\xde\x45\x42\x05\x11\x44\x3f\xf4\x43\x44\x57\x41\x65\x7f\x0a\x2a\x46\x62\x69\x66\x53\xf2\x87\xe9\x6c\xe7\xcc\xa9\xdb\xce\xce\xce\xce\xd7\x45\x28\x0a\xea\x7b\xf7\xc2\xf3\x3c\xf0\x3e\xef\xf3\x30\xb0\xcc\xf0\x3c\x8f\x6d\x36\x1b\x62\x59\x16\x69\x9a\x86\x28\xa5\x74\x29\x1c\x5a\xb4\x20\x84\x2b\xd7\x95\xfb\x6b\xac\x15\x67\x37\x42\xee\x1e\x4b\x8a\x71\x67\x30\x55\xc3\x9c\xfa\xe3\x5d\xb2\xff\xe9\xa3\xf1\xd6\x07\x93\x4a\x44\x5d\x52\x40\x10\x04\x7c\x65\x43\xd5\xe5\x23\x71\xdf\x75\x8d\x31\xd4\x41\x7b\xf2\x73\x18\xc7\x83\x3c\x32\x09\x9e\xb8\x10\x70\xc5\xcc\xa5\xc3\xd6\x64\xeb\xc9\xe0\x9d\x5d\x8a\xa2\x18\x73\x3c\x02\x00\x40\x08\xc1\x0d\xc5\x35\x0d\xfb\x67\xf2\xea\x3b\x24\xe5\xe1\x2d\xe5\xc3\xa5\xbe\xce\x5f\x13\xaa\xaa\x1a\x00\x00\x92\x24\x91\x03\x85\x81\xfd\x40\x41\x8b\x46\xa3\x60\xb7\xdb\xb1\x2c\xcb\x00\x00\xff\x85\x8e\x97\xec\xda\xde\x5b\x74\x83\x36\xef\x38\xdb\x6c\xb5\x5a\xc9\x72\xbe\x00\x00\x6c\x29\x2c\xf7\x7e\x2d\xb9\xf6\xb7\xb2\x70\xb3\x0f\x00\x80\x61\x59\x16\x37\x7a\xaa\x6e\x23\x06\x93\x0b\xe3\xcf\x8f\x85\x27\xc3\xa9\x95\x04\x80\x23\x2a\x38\x2d\x72\x87\x32\xd0\x36\x15\x8b\xa5\xb1\xc7\xe9\x16\xf2\xa7\x2d\x7b\xda\xf9\xd0\xc3\x3f\x23\xc3\x89\x39\x9c\xd7\xe1\x92\x4e\xaf\xdf\x5b\x7f\xd0\x1f\x38\x4c\x08\xc1\x00\x00\x65\x1e\xbf\xf3\xbe\xab\xf6\x6d\x8c\xd1\xfa\xef\xe7\x9c\xfa\x52\x96\xe7\xcf\x25\x6e\x2e\xdb\x43\x28\x62\x7f\x26\x42\xdf\xe6\xc8\x0c\xc3\xe0\x5a\xe7\x8e\x66\x29\x82\xaa\x28\xac\x01\xa6\x42\xdc\x5c\x93\x2e\xbb\xf8\x29\x2b\x74\x67\x94\x26\xfb\xc2\xfa\xec\x44\x4f\x96\xd2\x32\x3d\x91\x4c\x10\x84\x30\x06\x0a\xb0\xf0\xcd\x08\x21\xc0\x26\x06\x03\x18\x00\x08\x0c\x5e\x14\x08\xa4\x59\x56\x87\x8c\x11\x8a\x84\x47\x65\x3d\x92\x50\x89\x43\x4d\xab\x9a\xc1\x70\x36\x51\x3b\x41\x36\x9e\x8f\xf2\xe9\xe0\xbb\x50\xf7\x47\x00\x00\xc3\x30\xe8\x24\x9f\x6e\x5d\xe5\xb4\x27\x7b\x2d\xb1\x9b\xaf\x3b\x5b\x3e\xbc\x1a\x6d\x7f\xc1\x10\x82\x6a\xf9\x8a\xa6\x84\x57\xe8\xaa\x4c\xb9\xeb\x3a\xd1\xd8\x4b\x10\x45\x11\xbf\xde\x7a\xf9\x7d\xdb\xa6\xab\x83\xb9\x39\x12\xb7\x92\x7f\x08\x21\xbc\xde\x5f\xc4\x9d\x29\x39\x58\xed\x2f\xf0\x71\x00\x80\x71\x3c\x1e\x37\x9e\x65\x7a\x9a\x6c\x49\x92\x5f\x9f\x77\xb4\xd1\x6c\x36\xe3\xe5\x04\x28\xa5\xc6\x1a\x62\x71\x9f\x41\x15\xf7\x9c\xe6\x6c\x2f\x00\x18\x0c\x00\xc0\xe0\x54\x68\xa8\xa8\xb0\xc8\xb1\x5b\x59\x5b\x57\xec\xf2\x39\xfa\x60\xb2\x2d\x3a\x1b\x9b\x8f\xac\xd9\x6c\xc6\x87\x7c\x81\xad\xa5\x52\x7e\x41\x4b\xb0\xab\xbb\x25\x6b\xec\xe6\xf7\xa1\xfe\x89\x4c\x26\x43\xe7\xa3\x2c\xe5\xe4\xb0\x57\x8a\xab\x9b\x76\x87\x1d\xe7\x74\x4c\xa7\xfb\x78\xe5\xcd\xb0\x26\x07\x79\x6c\x12\x4a\xc8\xda\x80\x6b\x96\xdb\x36\xb2\x3a\xd5\x7e\xf2\xf7\xed\x4a\x59\x96\xe7\xa3\xbc\xa8\x4c\x3c\xcf\xe3\x7d\xa5\xdb\x02\x27\x84\x4d\x75\xde\x19\x61\xa7\x25\x45\xb2\x75\x4c\xf5\x88\xa8\x0d\x74\xb0\xe3\x4f\x1e\x8f\x7d\xbe\xfb\x7b\x68\x70\x7a\x91\x2f\x4b\xdd\x6a\x32\x99\xb0\xc3\xe1\x20\xa2\x28\x72\xba\xae\xeb\xd1\x68\x54\x5d\x58\xa0\x85\xf3\x0f\x37\x93\x32\x03\xb1\xf9\x4d\x7e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xb0\x22\x7d\xd3\x35\x03\x00\x00") +var _web_uiV1StaticFavicon16x16Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x35\x03\xca\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x02\xfc\x49\x44\x41\x54\x38\x8d\x7d\x53\x5d\x48\x53\x61\x18\x7e\xbf\xef\x7c\x3b\x3b\x3f\xcb\x2d\x97\x67\xb6\x8d\xb9\x74\xce\xf2\x27\xeb\xc6\x56\xf6\x43\x41\xd1\x2f\x15\x89\x20\x44\x48\x17\xdd\x94\x37\x51\x14\x12\x51\x89\x57\xde\x45\x42\x05\x11\x44\x3f\xf4\x43\x44\x57\x41\x65\x7f\x0a\x2a\x46\x62\x69\x66\x53\xf2\x87\xe9\x6c\xe7\xcc\xa9\xdb\xce\xce\xce\xce\xd7\x45\x28\x0a\xea\x7b\xf7\xc2\xf3\x3c\xf0\x3e\xef\xf3\x30\xb0\xcc\xf0\x3c\x8f\x6d\x36\x1b\x62\x59\x16\x69\x9a\x86\x28\xa5\x74\x29\x1c\x5a\xb4\x20\x84\x2b\xd7\x95\xfb\x6b\xac\x15\x67\x37\x42\xee\x1e\x4b\x8a\x71\x67\x30\x55\xc3\x9c\xfa\xe3\x5d\xb2\xff\xe9\xa3\xf1\xd6\x07\x93\x4a\x44\x5d\x52\x40\x10\x04\x7c\x65\x43\xd5\xe5\x23\x71\xdf\x75\x8d\x31\xd4\x41\x7b\xf2\x73\x18\xc7\x83\x3c\x32\x09\x9e\xb8\x10\x70\xc5\xcc\xa5\xc3\xd6\x64\xeb\xc9\xe0\x9d\x5d\x8a\xa2\x18\x73\x3c\x02\x00\x40\x08\xc1\x0d\xc5\x35\x0d\xfb\x67\xf2\xea\x3b\x24\xe5\xe1\x2d\xe5\xc3\xa5\xbe\xce\x5f\x13\xaa\xaa\x1a\x00\x00\x92\x24\x91\x03\x85\x81\xfd\x40\x41\x8b\x46\xa3\x60\xb7\xdb\xb1\x2c\xcb\x00\x00\xff\x85\x8e\x97\xec\xda\xde\x5b\x74\x83\x36\xef\x38\xdb\x6c\xb5\x5a\xc9\x72\xbe\x00\x00\x6c\x29\x2c\xf7\x7e\x2d\xb9\xf6\xb7\xb2\x70\xb3\x0f\x00\x80\x61\x59\x16\x37\x7a\xaa\x6e\x23\x06\x93\x0b\xe3\xcf\x8f\x85\x27\xc3\xa9\x95\x04\x80\x23\x2a\x38\x2d\x72\x87\x32\xd0\x36\x15\x8b\xa5\xb1\xc7\xe9\x16\xf2\xa7\x2d\x7b\xda\xf9\xd0\xc3\x3f\x23\xc3\x89\x39\x9c\xd7\xe1\x92\x4e\xaf\xdf\x5b\x7f\xd0\x1f\x38\x4c\x08\xc1\x00\x00\x65\x1e\xbf\xf3\xbe\xab\xf6\x6d\x8c\xd1\xfa\xef\xe7\x9c\xfa\x52\x96\xe7\xcf\x25\x6e\x2e\xdb\x43\x28\x62\x7f\x26\x42\xdf\xe6\xc8\x0c\xc3\xe0\x5a\xe7\x8e\x66\x29\x82\xaa\x28\xac\x01\xa6\x42\xdc\x5c\x93\x2e\xbb\xf8\x29\x2b\x74\x67\x94\x26\xfb\xc2\xfa\xec\x44\x4f\x96\xd2\x32\x3d\x91\x4c\x10\x84\x30\x06\x0a\xb0\xf0\xcd\x08\x21\xc0\x26\x06\x03\x18\x00\x08\x0c\x5e\x14\x08\xa4\x59\x56\x87\x8c\x11\x8a\x84\x47\x65\x3d\x92\x50\x89\x43\x4d\xab\x9a\xc1\x70\x36\x51\x3b\x41\x36\x9e\x8f\xf2\xe9\xe0\xbb\x50\xf7\x47\x00\x00\xc3\x30\xe8\x24\x9f\x6e\x5d\xe5\xb4\x27\x7b\x2d\xb1\x9b\xaf\x3b\x5b\x3e\xbc\x1a\x6d\x7f\xc1\x10\x82\x6a\xf9\x8a\xa6\x84\x57\xe8\xaa\x4c\xb9\xeb\x3a\xd1\xd8\x4b\x10\x45\x11\xbf\xde\x7a\xf9\x7d\xdb\xa6\xab\x83\xb9\x39\x12\xb7\x92\x7f\x08\x21\xbc\xde\x5f\xc4\x9d\x29\x39\x58\xed\x2f\xf0\x71\x00\x80\x71\x3c\x1e\x37\x9e\x65\x7a\x9a\x6c\x49\x92\x5f\x9f\x77\xb4\xd1\x6c\x36\xe3\xe5\x04\x28\xa5\xc6\x1a\x62\x71\x9f\x41\x15\xf7\x9c\xe6\x6c\x2f\x00\x18\x0c\x00\xc0\xe0\x54\x68\xa8\xa8\xb0\xc8\xb1\x5b\x59\x5b\x57\xec\xf2\x39\xfa\x60\xb2\x2d\x3a\x1b\x9b\x8f\xac\xd9\x6c\xc6\x87\x7c\x81\xad\xa5\x52\x7e\x41\x4b\xb0\xab\xbb\x25\x6b\xec\xe6\xf7\xa1\xfe\x89\x4c\x26\x43\xe7\xa3\x2c\xe5\xe4\xb0\x57\x8a\xab\x9b\x76\x87\x1d\xe7\x74\x4c\xa7\xfb\x78\xe5\xcd\xb0\x26\x07\x79\x6c\x12\x4a\xc8\xda\x80\x6b\x96\xdb\x36\xb2\x3a\xd5\x7e\xf2\xf7\xed\x4a\x59\x96\xe7\xa3\xbc\xa8\x4c\x3c\xcf\xe3\x7d\xa5\xdb\x02\x27\x84\x4d\x75\xde\x19\x61\xa7\x25\x45\xb2\x75\x4c\xf5\x88\xa8\x0d\x74\xb0\xe3\x4f\x1e\x8f\x7d\xbe\xfb\x7b\x68\x70\x7a\x91\x2f\x4b\xdd\x6a\x32\x99\xb0\xc3\xe1\x20\xa2\x28\x72\xba\xae\xeb\xd1\x68\x54\x5d\x58\xa0\x85\xf3\x0f\x37\x93\x32\x03\xb1\xf9\x4d\x7e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xb0\x22\x7d\xd3\x35\x03\x00\x00") -func web_uiStaticFavicon16x16PngBytes() ([]byte, error) { +func web_uiV1StaticFavicon16x16PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticFavicon16x16Png, - "web_ui/static/favicon-16x16.png", + _web_uiV1StaticFavicon16x16Png, + "web_ui/v1/static/favicon-16x16.png", ) } -func web_uiStaticFavicon16x16Png() (*asset, error) { - bytes, err := web_uiStaticFavicon16x16PngBytes() +func web_uiV1StaticFavicon16x16Png() (*asset, error) { + bytes, err := web_uiV1StaticFavicon16x16PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/favicon-16x16.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/favicon-16x16.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticFavicon196x196Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x33\x40\xcc\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\xc4\x00\x00\x00\xc4\x08\x06\x00\x00\x00\xc0\xa6\x8e\x6b\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xdc\xbd\x79\x70\x1c\xc9\x79\x2f\xf8\xfb\xb2\xab\xab\x0f\x34\x1a\x0d\x10\x00\x41\x00\x3c\x40\x82\xe7\xf0\x1e\x0e\x87\xa4\x24\x8a\xe6\x68\x34\x1a\xcd\xe8\xb2\xa5\x99\xb1\xf6\xf9\x59\xf2\xc1\x75\xec\x0b\xaf\xd7\xe1\xb5\x23\x14\x2f\x1c\x1b\x1b\xbb\x2f\x76\xbd\x11\xf6\x86\xe3\xc5\x5b\xbf\x08\xaf\xec\x90\xe4\xd0\x61\xeb\xd6\xe8\x9e\xd1\x9c\x1a\x6a\x0e\xce\x90\x43\x72\x86\x37\x41\x10\x04\x01\x10\x67\xa3\xd1\xe8\xae\xae\xca\xdc\x3f\xaa\xb2\x2a\x2b\xbb\xaa\xbb\xc1\xa1\xe2\xd9\x9b\x11\x40\x57\xe5\xfd\x65\x7e\x77\x1e\x05\x44\x07\xe6\xfd\x21\xe2\x37\x2a\xaf\xfe\xac\xc7\xe9\x65\xe3\xea\x6a\x25\x44\xb5\xd7\x28\xcf\xbd\xac\xbf\x95\xb6\x9b\xd5\xad\x8f\x47\x23\x18\x9a\x8d\x67\x54\x59\xbd\x8d\x38\x18\xa2\xe6\xa5\x51\x3f\xa3\xfa\x11\xd7\x87\x66\x7d\xfd\x37\x03\xc3\x7b\x41\xa4\x7b\x5d\xe7\xdd\x20\x7b\xdc\xe0\xae\xb4\xbd\xbb\xa9\x67\xa5\xc8\xf2\xaf\x3d\xbc\x97\xb1\xfc\xd7\x12\x56\x0c\x83\x11\x93\x51\x7d\xe6\x31\x71\x4c\xf9\xd5\xe3\xa0\x3d\xc7\xd5\xab\x77\x8e\x47\x3c\x47\xb5\x13\x55\x5f\xb3\xbe\xeb\x7d\x51\xf3\x46\xd5\x19\xd5\xb7\x66\xfd\x95\xed\x70\x2d\x5d\x1f\xa3\x46\x75\xea\xf1\xcd\xc6\x3a\xae\xee\x46\xf5\x37\x0b\x2b\x19\xe3\x56\xda\xfe\xb7\x0a\xc3\x8a\x42\x1c\x01\x35\x6b\x3c\x4a\x15\x6b\x24\xda\x5a\xa5\xf2\x28\x31\x1a\xf7\xdb\xa8\x2f\x71\x7d\x6b\xa5\xde\x95\xd4\xdf\x4a\xde\x46\x6d\xc6\x85\xa8\x72\x71\xf5\xb4\x22\x85\x5b\xed\x4f\xa3\x36\xfe\x2d\xc1\xb0\xa2\x4e\xb5\xda\x70\x2b\xf5\xc6\xd5\x11\xd7\xc1\x56\xcb\x34\xcb\x13\x17\xd7\x0c\xa9\xf5\x7e\x35\x22\xf2\xa8\xb8\x56\xe0\x8e\x8b\x6b\x16\x5a\x19\xaf\x46\x79\xef\x45\xdb\xf7\xaa\x9e\x7f\x2d\x30\x34\xcd\xd8\x0a\x35\x35\xaa\xb8\x55\xee\xd0\x4a\x5d\x51\x79\xee\x25\xc1\x36\xeb\xc7\xdd\xc0\x10\x57\x4f\x2b\xed\xb5\x1a\x56\x52\x76\xa5\xed\xb4\x32\xbe\x77\x5b\xf7\xdd\x96\xfd\xb5\xc0\xb0\x12\x04\xd7\x27\x58\xe7\xae\x7a\x3c\x22\x9e\xf5\xb8\xb8\xf7\xb8\xf6\xa2\xea\x69\x45\x34\xc7\x95\x69\x96\x3f\xae\x4f\x51\x30\x36\xaa\xbb\x51\x1d\xcd\x60\x8b\x6a\xaf\x51\x5f\xa2\xca\xc7\xf5\x21\xea\xf9\x6e\xc6\xb3\x19\x7c\xff\x26\x60\x30\xd0\xd8\xf0\x6d\x14\xdf\xc8\x60\x6d\x64\x1c\xab\xf1\x32\x4e\x35\x68\xd4\x7c\x51\xf5\x46\xd5\x13\x17\xe2\xf2\x45\x19\xbb\x8d\xf2\xc7\xf5\x29\xca\x78\x6e\x34\x16\x51\xfd\x63\xa8\x37\xe8\xf4\x7e\xb5\x12\xa2\xc6\x46\x0d\x6a\x5a\x2b\x9c\x55\xd6\xa7\xcf\x4b\x54\x3d\x51\x06\xe9\xbf\x59\x18\xa2\x28\x07\x11\x71\xad\x74\x20\x2e\x34\xe3\xbc\x8d\xb8\x68\x5c\x5c\xb3\x76\x5a\x69\xbb\xd5\x32\x71\x93\xfd\xeb\x6e\xbb\xd5\xb4\x56\xea\xb9\x5b\x18\x64\x7c\xdc\x1c\xfc\xff\x15\x86\xd8\x4a\x5a\x6d\x2c\xaa\xe1\xa8\xb4\x56\xda\x59\x49\x5b\xad\xd4\xd3\x6a\xbb\x51\xe2\x5b\x7f\x6f\x65\xc0\x01\x00\x86\x61\xd4\xe5\xbd\xef\xbe\xfb\x58\xa3\xf7\xa8\x32\x31\x6d\x35\x7a\x6f\x25\xcf\xdd\x94\x69\xa5\x2f\x77\x5b\xee\x5f\x05\x0c\x84\x7a\xf1\xd1\x48\x6c\xb5\x9a\x37\x2a\x5f\xa3\xce\xb4\xba\x86\xd1\xca\xba\x47\xab\xed\x35\xeb\x67\xb3\x7a\xea\xc2\xb1\x63\xc7\x58\x22\x91\x00\x00\x74\x76\x76\xa2\xab\xab\x6b\x25\xc5\x23\xc3\xe8\xe8\x28\x6a\xb5\x1a\x9e\x7d\xf6\x59\x3e\x3c\x3c\xcc\xae\x5c\xb9\x12\xd5\xc7\x66\xbf\x7a\x58\x69\xb9\x56\xe6\xba\xd9\xbc\xe8\xf9\xff\x55\xc2\x40\x0d\x32\xeb\xcf\x32\x34\x5b\x4c\x6a\x86\x6c\xea\xc0\x45\xd5\xad\xc7\xe9\xf1\x71\x3a\x60\x54\x3f\xe2\xb8\x43\xb3\x81\x54\xdb\xd4\xfb\x8f\x03\x07\x0e\xb0\x9e\x9e\x1e\x74\x75\x75\xc1\x34\x4d\x24\x93\x49\x08\x21\x02\x2e\x43\xc4\x84\x10\x00\xc0\x88\xc8\xef\xa3\x10\x02\x44\x24\x7f\x99\xf7\xcb\x65\xbc\xda\x3f\x2d\x2d\x64\xb7\x70\xce\xb1\xbc\xbc\x0c\x00\xb8\x7e\xfd\x3a\x2c\xcb\xc2\x1b\x6f\xbc\xc1\xd3\xe9\x34\xab\x54\x2a\x8d\x16\xbf\x9a\x31\x91\x46\x63\x11\x85\x03\xad\x94\x69\x34\x1f\xef\xa5\x9e\x5f\x0b\x0c\xa1\x59\x68\xd2\x70\x2b\x79\x5a\x91\x16\x7a\x67\xe2\xf2\x35\xe3\xce\x51\x84\xd5\xa8\xed\xb8\xf6\x1b\xf6\x6f\xf3\xe6\xcd\x6c\xe3\xc6\x8d\xc8\xe7\xf3\xe8\xec\xec\x54\xf3\x48\x84\x66\x5e\x1c\xf3\xe2\x98\x12\x67\x90\x00\x4b\xd9\xcc\x48\xd9\xcc\x34\x6d\x32\x13\x82\x0c\x26\x60\x30\x41\x06\x04\x20\x08\x9c\x93\xb0\x39\xc1\xb6\x0c\x6e\x59\x09\x6e\x59\x86\xb0\x6b\x4c\xd8\x20\x70\xaf\x2f\xb6\xd7\xa6\xad\xf4\x95\x2b\x7f\x00\xc0\xcb\xe5\x32\xe6\xe7\xe7\xf1\xf4\xd3\x4f\x37\xe2\xa8\x8d\x42\x33\xee\xda\xa8\x9e\x28\x46\xb2\xd2\xf2\xad\xf6\xaf\x95\x3c\x77\x05\x83\x4a\x10\x71\x54\x87\x88\xc2\xad\x8a\xb3\x86\x8d\xc7\xc4\xb7\x9a\x7e\xb7\x65\x9a\xc1\x84\x0f\x7c\xe0\x03\xac\xb7\xb7\x57\xaa\x3c\xcc\xe3\xea\x12\xd1\x0d\x21\x04\x23\x90\x91\x10\x30\x4c\x9b\xa5\xdb\xac\x44\x21\x5f\x49\xf4\xe6\x2b\x46\x5f\xd6\x4a\xf4\x15\x2a\xc6\xda\x8e\x65\xa3\x3f\x5d\x63\xdd\x06\xa7\xbc\xc1\x29\xcf\x04\x72\x24\xc8\x00\x60\x50\x40\x40\x7e\x3f\x04\x60\xc3\x25\x8c\xb2\x43\x28\x3b\x8c\x17\x2b\x86\x98\x2e\xa5\x9c\x89\xc5\x94\x3d\x55\x4c\xdb\x37\x17\xd3\xce\xf8\x42\xda\x9e\x5a\x4e\xf2\xd9\x25\xd3\x29\xd9\x09\x61\x09\x82\x8d\x80\x50\xfc\x3f\x21\x04\x17\x42\xe0\xc6\x8d\x1b\xf8\xf9\xcf\x7f\xde\xea\x38\xb6\xaa\xae\xbc\x97\xf0\x5e\x08\x62\x25\xf5\xdf\x15\x0c\xba\xca\xd4\x4a\x43\xad\x76\x68\x25\xe9\x8d\x38\xf9\xdd\xf4\x21\xae\x4c\x5d\x79\xc6\x18\xe3\x9c\xf3\x0f\x7c\xe0\x03\x6c\x70\x70\x10\xb9\x5c\x4e\xe6\xf3\x09\x00\x02\x06\x13\x30\x4d\x87\xa5\xf3\x95\x44\x57\xef\xa2\xb9\x61\x75\xc9\xdc\xd9\x59\x4e\x6e\x6f\xaf\x26\x36\xa6\x6b\xac\xdf\xe0\xd4\xc5\x04\xd2\x00\x0c\x80\x00\x11\xb4\xe1\x6b\x43\x42\xf9\x21\x84\xf2\x80\x00\x12\xf0\x67\x44\xd4\x65\x11\x5c\x00\x16\x67\x28\x59\x09\x3e\xbd\x64\x3a\xa3\xf3\x19\xfb\xc2\x4c\x5b\xed\xfc\x64\xbb\x75\x61\x26\x5b\x9b\x28\x9b\xbc\x68\x33\x61\x09\x08\x9b\x88\x54\x42\x01\xe7\x9c\x2f\x2c\x2c\xe0\xed\xb7\xdf\xc6\xc5\x8b\x17\x7f\x1d\x8c\xe6\x5f\x7b\x68\x09\x06\x5d\x42\x00\x8d\x55\x25\x44\xe4\x69\x45\x0d\x89\xcb\xf7\x9e\x01\x88\xc8\xd7\xaa\x5a\x86\xbd\x7b\xf7\xb2\xf5\xeb\xd7\x63\xf5\xea\xd5\xba\x04\x30\x88\xc8\x48\xda\x94\x5d\x55\x4e\xf6\x0e\x2c\xa4\x76\x0c\xcc\xa7\x0e\xaf\x5a\x4a\xee\xce\xd6\xd8\xb0\xc1\xa9\x1b\x20\x43\xd7\x37\x05\x04\x08\x7a\xac\x9f\x58\x87\xec\x0d\xb2\x34\x4d\xf5\xed\x11\x08\x08\x42\xb9\x9a\x10\xa3\xc5\xb4\x7d\xe1\x76\xbe\xfa\xea\x78\x87\xf5\xe6\x64\xbb\x35\xb2\x90\xb6\xe7\x05\x84\x05\x97\x30\x6c\xcf\x16\xe1\x9c\x73\x3e\x3a\x3a\x8a\x0b\x17\x2e\x60\x74\x74\xb4\x55\xf5\xb7\xd9\xbb\x1e\xdf\x48\x85\x8a\xaa\xa3\x15\x1b\x40\x2d\xa7\x86\x7b\x06\x43\x94\xca\xd4\x6a\x63\xcd\x1a\x68\xc5\x00\x42\x4c\xd9\xa8\xf8\x46\xba\x7e\x4b\xfd\x34\x0c\x83\x6d\xd8\xb0\x01\x43\x43\x43\x58\xbb\x76\xad\x74\x71\x32\x49\x00\x10\x30\x33\x35\x96\x5f\x53\x34\x37\x6e\x9a\xc9\x1e\xe9\x2b\x9a\xef\x6b\xaf\x26\x76\x27\x1d\xea\x06\x60\x10\x08\x10\x02\x08\x0c\x63\xf7\x1d\xe4\x0a\x05\x3f\x0e\xde\xc8\x7a\x0f\xf2\x47\x48\x69\xa1\x23\x37\x40\x24\x94\x67\x99\x42\x0a\x91\xb9\x65\x84\x52\xd4\x8d\xf5\xd2\x85\x80\x70\xe3\x39\x27\x94\xab\x06\x1f\x9d\x69\xab\xbd\x36\xd2\x55\x79\xe1\x46\x67\xe5\xf4\x7c\xc6\x9e\xb2\x13\xa2\x02\xc0\x12\xc2\x95\x20\x9c\x73\x6e\x59\x16\x4e\x9f\x3e\x8d\x91\x91\x11\x14\x8b\xc5\x28\x04\x6c\x84\xa8\xad\xe2\x4b\x23\x24\x6f\x68\xc3\xbd\x87\xb8\xbb\x82\x81\x22\x12\xa1\x55\x82\x06\x71\x77\x53\xe6\x6e\xcb\xb5\xaa\x56\x45\xd6\xb7\x7d\xfb\x76\xb6\x73\xe7\x4e\x14\x0a\x05\x84\x24\x01\xc8\x4c\x08\x64\x07\xe7\xd3\x1b\xb7\xdc\xc9\x3c\x3c\x30\x9f\x3e\xd6\x5e\x4d\xec\x64\x02\x05\x1d\x11\x55\x47\x50\xd8\x33\x14\x46\xfc\xc8\xa0\x56\xa0\x3c\xab\x84\x25\x88\x40\xaa\x5e\x45\x8a\x48\xf1\xe2\xdd\x3c\x41\x94\x24\x24\x99\x4f\x10\x81\xd4\xfa\x21\x2c\x2b\x21\xc6\xa7\xdb\x6a\xaf\x5d\xeb\x5e\xfe\xf1\x95\xee\xf2\xaf\x16\xd2\xce\x2c\x08\x15\x21\x84\xaf\x56\x09\x21\xf8\xb5\x6b\xd7\x70\xfa\xf4\x69\xcc\xce\xce\xea\xe3\x1a\xa5\x1d\xa8\xef\x51\x79\x64\x5c\x54\x7a\x54\x3d\xcd\xea\x6e\xa5\x5d\xbd\x9e\x15\xc3\x10\x2f\xa1\x7f\x7d\xe1\xd7\xad\x8f\xd6\xd5\xff\x07\x7f\xf0\x07\x8c\x31\x26\x3d\x40\x86\x10\xc2\x48\x08\xca\x76\x95\x93\xfd\xc3\xd3\x99\xa3\xdb\x26\xb3\x9f\x68\xaf\x1a\x07\x12\x82\x72\x6e\x89\x28\x0e\xae\xd6\x28\x20\x04\x69\x71\x01\xb7\x16\x1e\x1b\xd7\xd3\xd5\xba\xfd\x3a\x7d\x5a\x0a\x38\xbd\x94\x38\x01\x91\xc0\x43\x76\x59\xbf\x5b\x36\x24\x91\x80\xb0\x11\xe2\xb9\xb0\x24\x5d\xb9\xd5\x0a\x5e\x4b\x88\xb1\xf1\xbc\xf5\xcc\xbb\xab\x97\x7e\x70\xa3\xab\xf2\x76\xc5\xe0\x45\x10\x2a\x00\x6c\x8f\x40\xf8\xe8\xe8\x28\xce\x9c\x39\x83\x89\x89\x89\x58\xdb\x2b\x66\xdc\x11\x91\xaf\x55\x26\xda\xd0\xd6\xbb\xcb\xb0\xd2\x3a\x99\x2e\x21\xb0\xc2\x8e\xdc\x4d\x19\x59\xae\x15\x7d\xf4\xae\xc3\x91\x23\x47\xd8\xf0\xf0\x30\x52\xa9\x94\x6a\x1c\xa7\x4d\x87\x72\x83\xf3\xa9\x2d\xbb\x6e\xe7\x9e\x5c\x53\x4c\x7d\x28\x65\xd3\x20\x40\x86\xc4\x25\xe1\x21\x17\x79\xff\x02\x24\x0f\x10\x58\x20\x8c\xf0\xc2\x47\x48\x0f\x27\x51\x2f\x2c\x24\x32\x87\x6c\x09\x8f\xcd\x93\x24\x00\xd9\x5a\x9d\xa4\x89\x10\x3d\x61\x29\x00\x12\x14\xca\x12\xb6\x67\xc2\x3a\x9b\x80\x00\x27\x94\x16\xd2\xf6\xe9\xab\xdd\xcb\xdf\x7a\x77\xf5\xd2\x2f\xe6\x33\xf6\x04\x67\x50\x55\x2a\x3e\x37\x37\x87\xe7\x9e\x7b\x0e\xd3\xd3\xd3\xad\x20\x55\x33\xe4\x6b\x45\x5d\x6a\x45\x9d\x6e\x15\xc9\x9b\xb5\x13\x59\x46\x12\x84\x0c\x8d\xf4\x2c\xbd\x91\xa8\xce\x36\x02\xa0\x91\x8d\xa0\xd7\x19\x15\xdf\x12\x27\x79\xe0\x81\x07\xd8\x8e\x1d\x3b\x90\x4a\xa5\x98\x97\x6e\x02\x30\x33\x16\x2b\x6c\xb9\x93\x3d\xb4\x63\x22\xfb\x64\xf7\x92\x79\x8c\x09\xca\x43\x78\x8c\xd8\x43\xf4\x10\x47\x77\x19\xac\xc7\xa8\xe5\x82\x5a\x90\xac\x72\xf7\xba\x5f\xa5\x3c\x44\x7d\x5e\xe9\x65\xf2\xcd\x09\x59\x84\x02\xab\x01\x8a\xd1\x2c\x09\x49\x20\x58\xd8\x53\x2b\x95\x2a\x92\x2f\x39\x20\x3c\xa2\x0a\xca\x8b\x20\xd1\x6b\x5b\xf8\x7d\xac\x18\xfc\xd2\xf5\x55\x95\xef\x9e\xeb\x2b\x7d\x67\x22\x6f\x8d\x38\x24\xca\x44\xe4\x13\xc6\x95\x2b\x57\xf0\x8b\x5f\xfc\xa2\x91\xa1\x1a\x35\x7f\xfa\x5c\xde\x8d\xa1\xdb\x8a\xee\xff\x5e\xea\xad\x83\x41\xdf\xba\xd1\x08\x90\x7b\x15\xdf\x8c\x7b\xb4\x42\x00\x75\x69\xc3\xc3\xc3\x6c\xef\xde\xbd\xe8\xec\xec\x94\x12\xc1\x84\x40\x3a\x5b\x63\x85\xed\x13\x6d\x47\x77\x4e\xb4\xfd\x6e\xc7\xb2\x71\x88\x00\x53\x72\x53\xdd\xf6\xad\x37\x7e\xdd\xa0\x1b\xcb\xba\xba\x53\xaf\xf6\x84\xf3\xc5\xd8\xd8\x01\x71\x00\x81\x96\xa4\x54\xe9\xb5\x0e\x69\x59\x84\x89\xd3\xad\x9c\x34\xc2\x0b\x10\x3f\x20\x28\xa8\x04\xa6\xe5\x23\x4f\x2d\x03\x04\x6a\x4c\x4c\x8c\x75\x56\xbf\xfd\xd6\xc0\xe2\xbf\xdc\xea\xa8\x5e\xe2\x0c\x25\x00\x16\x00\xdb\x71\x1c\x7e\xf3\xe6\x4d\x9c\x3c\x79\x12\x8b\x8b\x8b\x2b\x51\x8b\xe2\x0c\xe0\x46\x08\xdd\x2a\x93\x6e\xc5\x6e\x69\xd6\x6e\xa8\xcf\x8d\x6c\x88\x56\xd5\x98\x95\x18\xbf\xad\x4a\x89\xb8\x0e\x03\x11\x6d\x3d\xf2\xc8\x23\x6c\xdd\xba\x75\x80\xbb\x9d\xdd\x20\x50\xda\x74\x28\xbf\x63\xa2\xed\xe8\xae\xdb\xb9\xcf\x77\x96\x8d\x43\x0c\x94\x06\xa2\xed\x5e\x45\xe3\x71\xdf\x15\x35\x3e\xc8\x13\x94\x54\x91\x50\xcd\xa7\xd7\xe3\xb7\x27\xd5\x2c\x85\xca\x02\xbb\x00\xe1\x38\xbd\x6c\xc4\x73\x54\x7a\xa3\xd0\x2c\x5f\xb8\x1d\x81\x5a\x42\x8c\x8f\x74\x55\xbe\x79\x6a\x70\xf1\x6b\x93\xed\xd6\x08\x08\x65\x78\x84\xb1\xb4\xb4\xc4\x2f\x5e\xbc\x88\x37\xde\x78\xe3\x5e\xdb\x81\xad\x3a\x64\xe2\xd2\x5b\x41\xfa\xa6\x61\xa5\x46\xf5\xdd\x34\xd2\xaa\x41\xb6\xd2\xc1\xc0\x9e\x3d\x7b\xd8\xee\xdd\xbb\x91\xc9\x64\x5c\x1b\x01\x48\x27\x38\x72\x43\x33\x99\xfd\x87\x6e\x74\xfc\x87\xae\x25\xe3\x18\x13\x64\x0a\x45\xb7\x07\x10\x76\x91\x42\xe3\xe0\x5e\xf0\xd5\x25\x84\xdd\x9b\x0a\x03\xd6\x54\xac\x40\x3f\xf7\x75\x77\xcd\x61\xe4\xf9\x89\x10\x5a\xab\x50\x6d\x0a\x28\x6d\xea\x52\xc7\xcb\x20\xd5\x2a\x5f\xd4\x20\x78\xf4\x6b\xd5\x3c\x5a\xc2\xb3\x77\xe2\x24\x16\x94\x36\xd5\xbe\xd6\x12\x7c\xec\x62\x6f\xf9\xcb\x6f\xac\x2d\x7e\x63\x21\xed\x8c\x7b\x9e\x29\x8b\x88\xec\xa9\xa9\x29\x7c\xf7\xbb\xdf\xfd\x75\x3a\x47\xfe\x9b\x04\xd5\x86\x68\x64\x2f\xdc\xad\x7b\xac\x15\xf5\x49\x0f\x51\xed\x85\xda\x19\x18\x18\x60\x07\x0f\x1e\x44\x77\x77\xb7\xaf\x1e\x91\x40\xae\xaf\x68\x6e\x3c\x38\x9a\xff\xc3\xb5\xf3\xa9\x4f\x26\x38\x2b\xe8\xfa\xbb\x8f\x68\x12\x72\xe9\xf1\x51\xe2\x7d\xe2\x89\x32\x6a\xa3\x0c\x6f\x04\x48\x54\x87\x61\x4a\xa6\x48\xa9\xa3\xab\x5e\xf2\x51\x08\xdf\xaa\x6f\x45\x32\xc4\xe7\x89\x97\x31\x31\x66\x4f\xdd\xb3\x80\xe0\x25\xd3\x39\xf7\x76\x7f\xe9\xef\xde\xee\x5f\xfa\x59\xd5\xe0\xf3\x9e\x57\xca\xb2\x2c\x8b\x9f\x3d\x7b\x16\x6f\xbf\xfd\x36\x6a\xb5\x5a\x94\xc1\x2c\x9f\x65\x68\x66\x83\x36\x2b\x13\x87\x5f\xef\x49\xc3\x50\x9f\x13\xda\x18\x68\x7c\x34\xd4\x09\x75\xbc\x64\x9a\x9a\x47\x1d\x63\xf9\xc7\xb4\x3a\xa1\xc5\x0b\xa5\x8e\xa8\xf2\x7a\x1a\x01\x10\x9f\xfe\xf4\xa7\xa9\xbd\xbd\x9d\x11\x91\x09\x20\x9b\xb1\x58\xcf\xc1\xd1\xfc\x13\x47\xaf\x75\xfe\x9f\xdd\x4b\xc9\x63\x09\xc1\xd2\x32\x73\x50\xca\x43\x3e\x15\x73\x14\x3f\xbf\xcc\x5b\x27\x32\x09\x81\xb8\xd0\x93\x28\xc8\x12\x58\xe7\x4a\x9b\x9a\x5a\x15\xe4\xd3\xca\x29\xbf\x24\xff\x13\xa9\xd1\xc1\xc8\x79\xd4\x4a\x4a\x1c\x29\x75\xfa\xc5\xf5\xd2\x9a\xdd\xe4\x37\xab\x49\xb1\x50\x9d\x6e\x4b\x94\xb2\x69\xf5\xe0\x42\xfa\xc3\x6b\xe7\x53\x1b\x4b\x69\x67\xb4\x98\xb6\x4b\x20\x38\x8c\x31\xd1\xdf\xdf\x8f\xc1\xc1\x41\x31\x3b\x3b\x4b\x4b\x4b\x4b\x72\xae\xa2\x10\x54\xc5\x19\x1d\x07\x64\xba\x02\x41\x08\x17\x08\xd1\xf8\xa1\xd7\x4b\xca\x3b\xd3\xda\x51\xe3\x43\x43\xa0\xa6\x49\x09\xd1\x8a\xbb\x2b\x2a\xc4\x95\x6d\xe6\x89\x68\xc6\x15\xa2\xf2\xf0\x47\x1f\x7d\x94\x0d\x0e\x0e\x32\x00\x06\x11\x99\x8c\x23\xb7\x61\x36\xbd\xf7\x7d\xd7\x0b\x7f\xd6\x55\x36\x8e\x42\x90\x21\x39\xbf\xbf\xc4\xa5\xa8\x38\x01\xe9\x7b\x06\x25\x02\x35\x26\xd0\x15\x14\xa3\x14\x14\xd2\xf1\x65\x25\x61\xe3\xd5\x2b\xef\x63\xa1\xa6\x77\xf8\x7d\x51\xea\x95\xdc\x3f\xbc\x1d\xdc\xeb\x49\x90\x5f\x22\xb5\x1a\x27\x71\x42\x4f\x53\x7a\x11\xfa\x85\x16\x17\x6e\xa3\x71\x5c\x50\xa7\xfc\x2f\x60\x33\x31\x75\xb1\xb7\xfc\xff\x9e\xdc\x50\xfc\x4a\xc9\xb4\xa7\x88\xa8\x02\xc0\xe2\x9c\xf3\xe7\x9e\x7b\x0e\x57\xaf\x5e\x8d\xe3\xe4\xad\x78\x1e\xe3\xb4\x8e\xa8\xb8\xa6\xf8\x12\xd3\x4e\xa3\xbe\x35\x5d\x98\x6b\xc5\xbd\xd5\x4a\x58\x89\x71\x54\x17\xb7\x7d\xfb\x76\x76\xff\xfd\xf7\x23\x93\xc9\x30\x6f\x8b\x45\x36\x53\x63\xdd\x87\x6e\xe4\xff\xbb\xed\x93\x6d\x27\x92\x0e\xeb\xf3\xc4\x7b\x9d\x3f\xde\xd7\xa1\x01\x8f\x43\x7a\x79\xbc\x77\x20\x40\x86\x10\x05\x21\xac\xcb\xfb\xb9\x14\xb5\x29\xb0\x21\x84\xf7\xae\xaa\x4b\x52\x0c\xa8\x6a\x8a\x6b\x04\xa8\x9c\xd8\xaf\x3e\x52\x07\xaa\x57\x86\xfc\x35\x90\x28\x3d\x29\xaa\x0a\xe8\x7d\x55\xba\xd8\xb0\x8a\xb0\x9a\xa8\xd6\x29\x20\xec\xe9\xb6\xda\xf3\xaf\x0c\x2d\xfc\xf5\x48\x57\xe5\xb4\xa0\xc0\x1b\x75\xe9\xd2\x25\x3c\xff\xfc\xf3\xad\xe0\xca\xdd\xd8\x96\xcd\xde\xef\xb6\x1d\x3f\x24\x94\x42\xaa\x08\x92\xcf\xb2\x22\x55\x20\xeb\x2a\x90\x2c\xaf\x8a\x39\x55\x55\xd2\x89\x89\xb4\xb4\x28\xf5\xca\x2f\x73\xf4\xe8\x51\x76\xff\xfd\xf7\x23\x99\x4c\x1a\x00\x52\x04\xca\x0f\x2c\xa4\x76\x7d\xe4\xc2\xaa\xff\xb4\x71\x26\xf3\xef\x0d\xce\xf2\xe1\x1d\x3f\x04\x90\x8b\xf4\x42\x9d\x76\x92\x84\xa0\x2c\x57\xf9\x3d\xf1\xd2\x7d\x5e\x18\x70\x74\x5d\xcd\x51\x51\x48\xad\xc7\xd5\x98\x02\x45\x25\xd8\x62\x11\x56\x5e\x02\xa9\xa3\x72\x7b\x2f\x4e\x4a\x0f\x0a\xfa\x1e\x96\x0c\x32\x26\xd0\xce\xdc\x6e\x0a\x4f\x78\x49\x09\xa4\x2e\xc9\xd5\x4b\x43\xf2\xea\xf0\x9a\xf4\x1f\x54\x27\x83\xde\x8e\x9b\xdf\x27\x12\x96\xad\x19\x1b\x37\x4d\x67\x3e\x6c\xda\xac\x32\x99\xb7\x46\x1c\x06\x1b\x80\xb3\x6a\xd5\x2a\x7e\xea\xd4\x29\xe1\x37\x1f\x9e\x67\xf5\xb9\x51\x9a\x7c\xe6\x4d\xca\x44\xe1\xcd\x4a\xdb\x51\x03\x4b\xa0\x1e\xf1\x55\x3d\x4d\xd7\xc3\xa2\x2a\x55\x45\x8f\x2e\xb1\x65\x9a\x1a\xaf\xea\x77\x6a\x5d\x50\xde\x05\x00\x3c\xf6\xd8\x63\x6c\xe3\xc6\x8d\x4c\x08\x91\x24\xa2\x8c\xc1\x59\xe1\x81\x9b\xf9\x4f\x7d\xf0\x6a\xe7\xff\xd5\x51\x49\xec\x87\x00\xf3\xf5\x6d\x0f\xa1\xbd\x47\x2f\x8e\x94\xc9\xf7\x90\x4e\x61\x89\x44\xaa\x02\x1e\xfc\xba\x45\xa5\x8f\x1e\x5e\xe9\xa0\x1e\x7f\xff\x90\xa4\x16\x52\xe3\x55\x0c\xf2\x3a\x43\x2e\x62\x09\x06\xce\x19\x1c\x4e\x82\x3b\x0c\x36\x67\xc2\x11\x04\x87\x33\xb9\xd9\x03\xbe\x39\xad\x34\x00\xd9\x03\x77\x64\x02\x76\x4f\x1e\x0c\x02\x14\xea\x8b\xa4\x50\x85\x3c\xfd\xda\x7d\x75\x4d\x99\x6d\x9f\x38\x28\x20\x50\x3f\xf8\xeb\x19\x32\x3f\x49\xfe\x01\x06\xd6\xb6\xa6\x68\x1e\x5d\x53\x4c\xf5\xcf\xb4\xd5\xde\x5d\x4a\xf1\xa2\x10\x82\xef\xdd\xbb\x57\xbc\xf5\xd6\x5b\xba\xfe\xae\xe3\x43\x2b\xb8\xa2\x3f\xab\x33\xa8\x96\x51\x19\xb8\x6a\x8f\xe8\x65\xa2\xca\xab\x82\x20\x74\x0d\x4d\x9c\x87\xa0\x91\xc7\xa7\x99\x2a\xa5\xe7\xd1\x7f\x63\xc3\xef\xfe\xee\xef\x32\x6f\xb5\xd9\x00\x90\xcd\x56\x59\xdf\x07\xae\x15\xfe\x70\xcb\x9d\xec\x09\x26\x28\x0b\x28\xb8\xec\x4d\x94\xbf\x3d\x22\xa4\xba\xc0\x1f\x02\x75\x74\xfd\x7f\xea\xbe\x23\x45\xdd\x72\xab\x0c\xf8\x33\xfc\x06\x11\xec\x63\xf2\xa7\xd3\x6d\x9b\x13\xb8\x95\x70\x2a\x4b\x26\x2f\x95\x52\x76\x71\x21\xed\x14\x4b\x29\xbb\x58\x4d\xf2\xca\x72\x92\x97\xab\x06\xaf\xd8\x24\x2c\xce\xc0\x39\x09\x2e\x00\xce\x04\x31\x26\x60\x18\x9c\x0c\xd3\x21\x33\x65\xb3\x6c\xa6\x96\xc8\xb6\x55\x13\xb9\x5c\x35\x91\xef\xa8\x18\xf9\x36\x2b\x91\x4f\xdb\x94\x4e\x70\x32\x74\x9b\x23\x40\x7b\xe5\x9d\x74\xd0\xc9\x87\x27\xa4\x69\x91\x82\xfc\x14\xae\xc7\x05\x4f\x84\xcb\x50\x20\x41\x7d\x82\x13\x30\x07\x17\x52\x4f\x1c\xbd\x5a\x28\x7d\x73\xef\x9d\xbf\x24\x22\xdb\x30\x0c\x79\xc2\x4f\x86\x46\xf3\x1e\x97\xc6\x63\x9e\x9b\xe5\xb9\x1b\x57\xb0\x5f\xc6\x88\x8a\x6c\xf1\xb9\x59\x5a\xb3\x78\x3d\x8f\x4f\x78\x9f\xfb\xdc\xe7\x98\x69\x9a\x4c\x08\x91\x26\x50\xb6\xbf\x98\xda\x71\xfc\x72\xe7\x7f\xec\x5e\x4a\x1e\x27\x10\x53\x0d\xc0\x30\x3f\x0d\x44\x7e\x80\xf4\xaa\x59\xe8\x67\x0c\xd4\x07\xc9\xfd\xb4\x78\xf8\x75\x29\x6a\x13\xa4\x86\x25\x60\x13\xec\x65\xd3\x29\xcf\x65\xed\xd9\x3b\x39\x6b\x62\x2a\x57\x1b\x9f\xcb\xd6\xa6\x8b\x69\x67\xb6\x6a\xf0\x45\xe1\xea\xd4\xf2\xcf\x06\xd5\x9d\x6a\x83\x10\x82\x7b\x6e\x63\x78\xf0\x1b\x10\xc2\x00\xdc\x93\x75\xf0\xb6\x9d\x24\x39\xb5\xe5\xaa\x89\x42\xa1\x6c\x74\xf7\x96\xcc\xbe\x9e\xa5\x64\x5f\xd7\x52\xb2\x3b\x57\x4d\xe4\x93\x9c\xcc\xc0\x08\xaf\x37\x94\x75\x39\xe1\xa1\xb9\x3f\x5e\x8a\x5d\x80\x28\xf5\x0c\xde\xe8\x09\xa5\x56\x28\xed\x81\x08\x8b\x29\x7b\xec\x85\x4d\xf3\x3f\xf5\xfa\xcb\x84\x10\x6c\xd7\xae\x5d\x38\x7b\xf6\x6c\x94\xbe\xdf\xc8\xe0\xd5\xf3\x46\xc5\x35\x33\x94\x9b\x19\xd6\x51\x0c\xda\x0f\x86\x1e\x11\x53\xe9\x4a\xc2\xdd\x94\x01\x00\xbe\x75\xeb\x56\x76\xf8\xf0\x61\x98\xa6\x69\x00\x30\x19\x28\x3f\x3c\x9d\x39\xf8\xc1\x2b\x9d\xff\x47\x9b\xc5\xb6\x05\x06\x73\xd8\x83\x04\xef\x59\x25\x0e\x40\x51\x9d\xb4\xf4\xc0\x66\x0d\x71\x3a\xe5\x39\x90\x14\xee\xaa\xb4\x8b\x26\x55\x83\x97\xe7\xb2\xf6\xf4\x58\xa1\x32\x3a\xd6\x51\x1d\x99\x6d\xb3\x27\x96\x0d\x67\xc6\x61\x28\xc3\x5d\xcd\xad\x28\x7f\x01\x31\x20\x7c\xcc\xd3\x23\x04\x85\xcb\xbb\x48\x04\x28\xa7\xf4\x14\x82\xb0\x18\x4f\xcf\x65\x85\x39\x97\xb5\xb3\xd7\xbb\x2b\x69\xe2\xc8\xa5\x1c\xd6\x51\x58\x36\x7a\xd7\x14\xcd\x75\x6b\xe7\xd2\x1b\x7a\x4a\xc9\xbe\x6c\x2d\x91\x63\x52\x8d\xf4\x17\x3e\x84\x07\x43\xb0\x4d\x83\x84\x0b\x8f\xf0\xb6\x7e\x00\x81\xa6\xe5\x8f\x89\x97\xc7\xd7\xe3\xc8\x23\x30\xa1\x48\x0e\x21\x50\x33\x44\xf9\xc5\x4d\xf3\x5f\xbf\x93\xab\x4d\x7b\x17\x2b\xa8\x70\x01\xf5\xf8\x10\xe5\x85\x6a\x25\x34\xd2\x32\xa2\x08\x4b\xad\x3f\xaa\x9d\x48\xef\xa6\x11\x91\xb9\x99\xca\xd4\xcc\x75\x16\xeb\xd2\xd2\xca\x86\xea\x3c\x74\xe8\x10\xdb\xbd\x7b\xb7\xec\x53\x9a\x04\xf2\x7b\x6e\xe5\x3e\x7a\x78\xa4\xe3\x7f\x31\x6d\xd6\xaf\xae\x21\xf8\x34\xa0\xeb\xec\xd0\x1e\xeb\x69\x21\x44\x33\x02\x08\xce\x0e\x84\x26\x3e\xe0\x9a\x95\x24\x2f\x4f\xe4\xad\xf1\xeb\x5d\xcb\x97\x6e\x76\x56\xaf\x14\xd3\xf6\xa4\xc3\x50\x04\x50\x04\x50\x06\x50\xf2\x7e\x55\x22\x88\x24\x04\x09\xab\x86\x30\x6e\xbf\xdc\x38\xa6\xfd\xc9\xd3\x7b\x26\x3c\xe2\x00\x90\x16\x0c\xd9\x0a\xe3\xd9\x89\xa4\x95\x9b\xc8\x5b\xb9\xd3\x03\xa5\x5c\x9b\x95\x58\xbd\xa6\x68\xae\x1b\x9a\xc9\x6c\x1b\x9c\x4f\xad\x6b\xaf\x26\x0a\x81\x6c\x08\x54\x1e\xff\x57\x59\x5d\x94\x6a\x90\x2a\x09\xfd\xbc\x0a\xd3\x21\x4d\xa5\x14\x04\xfe\xc6\xda\xe2\xcf\xae\x76\x2f\xbf\x05\x42\x91\x40\x15\x09\xaf\x27\x1d\x74\xc4\x6f\x84\x6b\x51\x44\x12\xe7\x22\x8d\x7a\x6e\xa5\x8c\xee\xc2\xd5\xfb\xc3\xf4\xab\x2c\x1b\x35\xdc\x0a\xd7\x8f\xea\x60\x53\x5b\xe3\xd0\xa1\x43\x6c\xd7\xae\x5d\x80\x67\x2f\x18\x0e\x75\x1d\x1a\xc9\x7f\x76\xef\xad\xf6\x3f\x4f\x08\xca\xc7\x0a\x01\x51\x8f\x58\xfe\x04\x8b\xb0\x35\xe6\x17\x51\xec\x68\xd7\x29\x13\xb8\x30\x25\x11\xd8\x09\x61\x4f\xb7\xd5\x26\x2e\xf7\x2c\xbf\x73\x6d\xd5\xf2\x3b\xc5\xb4\x7d\x9b\x13\xe6\x41\x3e\x21\x94\x84\x10\x65\x00\x65\xe9\x87\x97\x5b\x1a\x3c\xd8\x6c\x29\x05\xbc\x5f\xa9\x22\xe9\xdc\x13\x0d\xb8\xaa\xfc\x95\xd2\xc3\x80\x2b\x41\x4c\x21\x84\x09\x20\x4d\x44\x69\x00\x59\x0e\x91\x2b\xa5\x9c\xfc\xe5\xee\xe5\x77\xaf\x74\x2f\xbf\x9a\xb5\x58\xcf\xe0\x7c\x7a\x78\xcb\x9d\xec\xee\xfe\x05\x73\x5d\xda\x66\x69\x5d\x5a\xfa\xe7\x2c\xea\xc6\x54\x1b\x6b\x6d\x88\xe5\xd8\x82\x04\xae\x74\x2f\xbf\xf9\xe6\x60\xe9\xa7\x82\x30\x0e\x60\x16\x2e\x63\xb0\xbd\x03\x46\x6a\x88\x43\x5e\x3d\x2d\xaa\x9c\xfe\x1c\x55\x57\x1d\x62\x23\x1a\xdf\x9a\x4a\x24\xa9\x32\xc9\x42\x71\xdc\x7f\x25\xbe\xe4\x56\xf4\x41\x3f\x1c\x3c\x78\x30\x90\x0c\x02\x59\x83\x53\xf7\x07\xae\x75\x7c\x7e\xe7\xed\xdc\xff\x24\x8d\x67\xc9\x98\xa4\xfa\xa2\x7a\x3b\x54\xdf\x59\x30\x77\xaa\x2e\xa5\x19\x98\x14\xd8\x14\x32\x52\x9a\xcd\x96\x21\x2a\x23\x5d\x95\x2b\xe7\xd6\x94\xde\x9c\x68\xb7\x2e\xd7\x12\x62\x1a\x84\x79\x00\xf3\xf0\x08\x01\x9e\x34\xf0\x08\xc1\x96\x5b\xa4\xe5\x79\x65\x09\x2b\x11\x71\xce\x5d\xb0\x25\xd2\x4f\x4f\x4f\x63\x66\x66\x26\x6e\x28\x30\x34\x34\x04\xd3\x34\x83\x81\x63\x4c\x8e\x1f\x54\x5b\x83\x88\xa4\x64\x37\x01\x98\x92\x30\x40\xc8\x72\x21\xf2\x4b\x29\x5e\xb8\xb8\xba\x7c\xf5\x4a\x4f\xf9\xf5\xae\x72\x72\xfd\xd6\xc9\xec\xde\xad\x53\xd9\x9d\x39\x2b\x91\x57\x07\x2a\x7c\x38\xd5\x1b\x07\x45\x1a\x08\xa9\x3a\x85\x96\xe4\xdd\xf9\x98\x6e\xab\x8d\xbd\xbc\x71\xfe\x3b\x76\x42\x8c\x00\x98\xf2\xc6\xc7\xb2\x6d\x9b\xbf\xf2\xca\x2b\x12\x84\x66\x08\xdb\xcc\x79\x13\x67\x13\x44\xa5\xab\x21\x8e\xa1\xcb\xe7\x28\x22\xe1\x0a\x88\x0d\x91\xf6\xbd\x48\x87\xa8\x3a\xfc\xe7\xc3\x87\x0f\xb3\x9d\x3b\x77\xc2\x3b\xc5\x96\x4d\x39\xac\xf7\xf8\xe5\xce\x3f\xde\x32\x95\x3d\xc1\x40\xa6\x2f\xd5\xa3\xb8\x94\xf7\xa0\x22\xb6\x2e\x2f\x42\x06\xa6\xef\x37\x44\xb0\x0d\x1a\x2e\x81\x95\x4c\xa7\x78\xb9\x67\xf9\xdc\xd9\xfe\xd2\x6b\x73\x19\xfb\x86\x80\x98\x05\x30\x4b\x44\x21\x42\x10\x42\xa8\xea\x90\xca\xf9\x79\xb5\x5a\xc5\xec\xec\x6c\xe8\x4e\xa4\x6c\x36\xcb\xca\xe5\x72\xa3\xb1\x6b\x38\xee\x9b\x37\x6f\x06\x00\x5c\xbe\x7c\x99\x3f\xfe\xf8\xe3\xac\xad\xad\x0d\xf9\x7c\x1e\x9a\x21\x1e\x9c\x09\x77\x09\x24\x0b\x20\x2b\x84\xc8\x13\x51\x01\x40\x01\x40\x77\xd6\x62\x6b\xb6\x4c\x65\xf7\xef\xbc\xdd\xb6\xbf\xab\x9c\xec\x66\xf0\x6c\x8d\xa8\x10\x61\x8f\xa9\x61\xd9\x70\x4a\xdf\xdf\x39\xfd\x5f\xc7\xf3\xd5\x5f\x12\xd1\x35\x00\x13\x00\x8a\x42\x08\xeb\xfc\xf9\xf3\x78\xe5\x95\x57\xa2\x08\xa1\x19\x0e\xc5\xd9\x15\x77\x3b\x7e\x77\x55\xa6\x01\xd8\x4d\xad\x74\xbd\xe2\x15\x79\x01\x0e\x1e\x3c\xc8\xf6\xec\xd9\x03\xb8\xdb\x30\xb2\xa9\x1a\xeb\x3b\x7e\xa5\xf0\xc7\x9b\xa7\xb2\x27\x98\x20\x43\xf7\x0a\x01\x08\x6d\x97\x90\xc8\x4c\xea\x0a\x95\x42\x15\xa1\xd5\x59\x9f\x6a\x84\xef\x3a\x04\x04\x96\x4c\x5e\xbc\xd8\x5b\x7e\xfb\xec\x9a\xd2\x6b\xf3\x19\xfb\x06\x08\x53\x42\x88\x59\x22\x9a\x45\x60\x23\x94\x35\x75\x88\x03\xee\xa5\x60\xa3\xa3\xa3\x98\x99\x99\xc1\xf9\xf3\xe7\x79\x26\x93\x61\xcb\xcb\xcb\x8d\x6c\xa5\xf7\xca\x70\x90\x4c\x26\x99\xb7\x89\x0e\x07\x0e\x1c\x60\x5b\xb7\x6e\x45\x32\x99\x84\x69\x9a\x51\x76\x47\x1a\x40\xce\xfb\x2b\x08\x21\xba\x09\xd4\x9d\xa9\xb1\x81\x2d\x77\xb2\x7b\x77\x8f\xe7\x0e\x76\x96\x8d\x5e\x16\x96\xab\xf5\x36\x96\xd6\x07\x9b\x09\xfb\xa5\x8d\xf3\xdf\x3e\xd3\x5f\xfa\x1e\x08\x57\x00\x8c\xc3\x95\xa0\x95\xdb\xb7\x6f\xf3\x1f\xfc\xe0\x07\xad\x22\x7e\x2b\xe1\xbd\x20\xfc\x5d\x95\x25\xc4\x1b\xc0\x7a\x1c\x10\x3f\xc1\x51\xc4\x80\xb8\xe7\x07\x1f\x7c\x10\x7b\xf6\xec\x81\x10\xc2\x00\x90\x4d\x72\xd6\xfd\xd0\xa5\xce\x3f\xd9\x3a\x95\xfd\x23\x06\x18\xc2\xd7\x85\xd4\x45\xa8\xe0\x1c\x73\x70\xe8\x45\xe9\x01\x41\xf1\xac\x20\xbc\xe4\x03\xa5\x2e\x01\xd4\x0c\x6e\x5d\xe8\x2d\x9f\x3e\x3d\xb0\xf8\xca\x6c\xd6\xbe\x0a\xc2\x14\x80\x69\xb8\x7a\x70\x51\xda\x07\x50\xae\x6f\x11\x42\xf0\xe9\xe9\x69\xdc\xb8\x71\x03\x53\x53\x53\x18\x1b\x1b\x6b\x45\x2f\xd5\x39\x5e\xb3\x32\x51\x63\xaa\xbe\x47\x96\xd9\xb6\x6d\x1b\x1b\x1a\x1a\xc2\xe0\xe0\x20\xbc\x2b\x32\x83\x43\x52\x81\xd4\xc8\x0b\x21\x0a\x44\xd4\x0d\x81\xde\x6c\x8d\xad\xbf\xef\x76\xdb\xc1\xdd\xe3\xb9\x83\x39\x2b\x91\x0f\xf6\x7e\x69\xa7\xf2\x02\xa3\x01\x80\xc0\xb9\xbe\xa5\x97\x9f\xdf\x3c\xf7\x25\x87\xe1\x12\x80\x51\x6f\xcc\x2a\xc5\x62\xd1\xfe\xfe\xf7\xbf\x0f\x4d\x22\xb6\x0c\x03\x9a\x33\xd2\x46\x65\xf4\xd0\xac\x5c\x6c\xff\xe2\x24\x44\x33\xc4\x8f\x6a\xbc\xd5\x77\x7c\xfe\xf3\x9f\x67\xc9\x64\xd2\x10\x42\x64\x93\x9c\x75\x7f\xf0\x6a\xe1\xbf\xbf\xef\x76\xdb\xff\x48\x20\x13\x90\xb8\x1d\x5e\x14\xf2\x0d\xe5\x10\xd7\x57\xfc\xec\x8a\x6e\x24\xa4\x14\x91\x9e\x23\xb8\xe5\x38\x09\x7e\xa3\xb3\x72\xe9\x8d\x75\xc5\x17\x6f\xe7\xad\xf3\xc2\x95\x08\x53\x44\x34\x8d\x40\x35\x92\x9e\x12\x1b\x00\x5f\x5c\x5c\xc4\xbb\xef\xbe\x8b\xd3\xa7\x4f\xaf\xc8\x36\x8a\x09\xad\x8c\x9f\x9e\x06\xb4\xe6\xb9\x03\xe0\xde\x26\x3e\x3c\x3c\x8c\xd5\xab\x57\xcb\xf2\x52\xa5\x4a\x0b\x21\xb2\x44\x94\x07\xd0\x05\xa0\x17\x02\xbd\xf9\x4a\x62\xe8\xc0\xcd\xfc\xb1\xad\x53\xd9\xdd\xa6\xcd\xd2\xc1\x9e\x44\xe9\x00\x08\xd6\x1d\x6e\x75\x54\xaf\xfc\x70\xc7\xcc\xdf\x2d\x9b\xfc\x1c\x80\x6b\x70\x99\x48\xd9\x71\x1c\xfb\x8b\x5f\xfc\xe2\x3d\x83\x41\xcb\xd7\x28\x4e\xc6\xc7\x31\x67\x19\x5a\x71\x12\x31\x20\x7c\x62\x6e\xa5\x93\xb5\xe2\xd0\xdb\xdb\xcb\x1e\x7d\xf4\x51\xb9\xce\x90\x4e\x08\xea\x3e\x3c\xd2\xf1\xef\xf6\x8f\xb5\x7f\x21\xc1\x29\x5d\xef\xee\x20\xcf\x23\xd2\x40\x94\xab\x16\xb3\x4f\x3d\x81\x6a\x24\x8d\xc5\x52\xca\x99\x7f\x75\x7d\xf1\xf9\x8b\x3d\xe5\x57\x6b\x09\x3e\x06\xa2\x09\xb8\xdc\x6d\x56\x08\x51\x82\x6b\x28\x5b\x00\xb8\xe3\x38\x7c\x72\x72\x12\x4f\x3f\xfd\x34\x4f\xa5\x52\xac\x5a\xad\xca\xd6\x9a\x31\x07\x3d\xac\x98\x59\xa0\x1e\x51\x56\x32\x2f\xee\xa4\xba\x52\x82\x7f\xf0\x83\x1f\x64\x9b\x36\x6d\xf2\xef\x9f\x82\xe7\xd2\x86\xab\x46\xe5\x01\x74\x03\xe8\x65\x1c\xfd\x83\x0b\xa9\x5d\x87\xaf\x77\x7c\x68\xf5\xa2\xb9\x8e\x69\x8a\x92\x00\xb0\x64\x3a\xf3\xdf\xdb\x79\xe7\xff\xb9\x93\xab\xbd\x0a\x82\xb4\x1b\x4a\x00\xac\xe7\x9f\x7f\x1e\x97\x2e\x5d\x6a\x55\x7d\x6e\x09\x86\x98\xb2\x77\x83\xa3\x0d\x55\x77\x3d\x4f\x23\x1b\xe2\x9e\x07\x6f\x3b\x86\xe1\xad\x40\x17\xee\x1f\x6b\xff\xe4\xe1\xeb\x1d\xff\xc9\xf0\xaf\x7f\x51\xb5\x20\x65\x35\x5a\x76\xd4\xa7\x11\xf5\x72\xae\xc0\xcf\x1e\xba\xca\xc5\x8b\x77\x48\xf0\x8b\xbd\xe5\xd3\xaf\xae\x5f\x78\x66\x21\xe3\x5c\x86\x3b\x91\x13\xf0\x08\x81\x88\xca\x70\xdd\xa6\xdc\xb2\x2c\x7e\xe1\xc2\x05\xbc\xfa\xea\xab\xf7\x8c\x09\xfc\x1a\xc2\x5d\xe9\xe0\x4f\x3d\xf5\x14\xf3\xce\x90\xa8\x12\x23\x47\x44\x05\x21\x44\x1f\x80\xde\x94\xc3\xd6\xed\x1f\x6b\x7f\x68\xcf\xad\xf6\x43\x99\x1a\xcb\x4a\xad\xb4\xc6\x78\xe5\xd9\x2d\x73\x5f\xbf\xb8\xba\xfc\x63\x21\xc4\x15\x22\x1a\x17\x42\x14\x01\x58\xa3\xa3\xa3\xfc\xa7\x3f\xfd\xe9\x3d\x35\x6c\x9b\xe4\x5d\x89\x8d\xd0\x4a\xde\x50\x9a\xba\xdb\x55\xf2\x58\x86\x00\x2f\x99\x16\xa7\xff\xc6\x95\xad\x8b\x7b\xec\xb1\xc7\x58\x67\x67\x27\x83\xbb\x63\xb5\x63\x78\x3a\x73\xf8\x83\x57\x0b\x7f\x95\xe4\xac\xa0\xf6\x8e\x02\x5c\x0e\x16\x8b\x10\xf6\x89\xfb\x5b\x0e\x28\xd8\xb5\x29\xe3\xdd\x07\xf2\xa5\xc2\xcb\x1b\x17\x7e\xfc\xda\xfa\xe2\x0f\x97\x4d\x71\x11\xc0\x75\x00\x63\x70\xdd\x84\x0b\x92\x18\xaa\xd5\xaa\x73\xe1\xc2\x05\xf1\xf4\xd3\x4f\xf3\x5b\xb7\x6e\xc9\x2a\x75\xf8\xa2\xe2\xa2\xc6\x29\x64\xb9\x68\x03\xdf\x6c\x8c\xf5\xb2\x6a\xdb\x2a\xa8\x02\xf5\xfd\x8a\xcb\x4b\x00\xe8\xe2\xc5\x8b\x28\x16\x8b\xa2\xbb\xbb\x9b\xa7\x52\x29\x0e\xa0\x06\xc0\x22\xa2\xaa\x37\x0e\x65\x9e\x40\xf9\x56\x47\xf5\xd6\x78\x47\x75\x62\xd5\x92\xd9\x9b\xb5\x58\x07\x00\xfe\xd6\x60\xe9\xe7\x67\x06\x4a\x3f\x12\x84\xeb\xe4\x4a\xd6\x05\x22\xaa\x96\xcb\x65\xfe\x9d\xef\x7c\x87\x47\xb4\xfd\x6b\x81\x41\x7b\x8f\xaa\x23\xae\x9d\xb8\xf4\xba\x7a\xa4\x51\xdd\x2a\x05\xb6\xaa\xc7\xa9\x79\x71\xec\xd8\x31\x6c\xde\xbc\x59\x9e\x70\xcb\xf7\x15\xcd\xdd\x8f\x9d\x5f\xf5\x9f\x73\x56\x62\x4b\xdd\xf9\x05\xd9\xbd\xa8\xa0\xeb\x4d\x31\x79\x04\x04\xc6\x0a\xd5\x2b\x2f\x6e\x9c\xff\xd1\x9d\x5c\xed\x2c\x08\x63\x08\x4b\x05\xb9\xaa\xcc\x2f\x5d\xba\x84\x37\xde\x78\x03\xa5\x52\xa9\x15\x83\xae\xa9\xf7\x2c\x22\xae\xd5\x34\xbc\x87\xf2\x2b\xaa\x67\xd7\xae\x5d\xec\xf0\xe1\xc3\x32\x8f\x74\xd7\xe6\x10\xd8\x16\xfd\x6d\x16\x5b\x77\x78\xa4\xe3\xe1\x5c\x35\x91\xfd\xd1\x8e\x99\x2f\x5a\x86\xb8\x04\x97\x99\x4c\x03\x28\x57\x2a\x15\xfb\xcb\x5f\xfe\x72\x33\xae\xfb\x6b\x83\x41\x49\x47\x44\xb9\xa8\xb2\x2d\xa5\x45\x11\x44\x54\x41\xfd\xb9\xe5\x70\xdf\x7d\xf7\xb1\x23\x47\x8e\xc0\x23\x86\x5c\x7b\x25\xb1\xf1\x93\x67\xbb\xff\xb6\xab\x9c\x3c\xe4\x33\x06\x95\x28\x94\xf3\xc4\x81\xda\x14\x5a\x51\x80\x5c\x4e\x0a\x68\x22\xd8\xa6\x56\x63\xdc\x3e\xdf\xb7\xf4\xda\x2b\x43\x0b\x3f\xb0\x12\x62\x04\xee\x2a\xea\x04\x5c\xd7\xa0\xef\x42\x9d\x9a\x9a\xc2\xc9\x93\x27\x31\x39\x39\x89\xbb\x81\x2b\x22\x34\x9b\xac\x56\xc7\x6f\x25\xf3\x21\xeb\x5f\xb1\x6e\xdd\xde\xde\xce\xee\xbf\xff\x7e\x6c\xd9\xb2\x05\x08\xbb\x6a\x0b\x42\x88\x2e\x22\xea\x66\x1c\x39\x83\x13\xac\x84\x98\x02\x61\x02\x1e\x31\x00\xb0\x9e\x79\xe6\x19\x5c\xbb\x76\xed\x6e\xda\xbe\x67\x30\x34\x29\xa3\xd7\x8d\x88\xbc\x75\xf5\x34\xb3\x21\x5a\x31\x02\x1b\x86\xdf\xff\xfd\xdf\x67\x8c\x31\x77\x4b\x06\x67\x7d\x1f\xb9\xd0\xf5\x85\xe1\xe9\xcc\xbf\x53\x77\xad\xaa\xb6\x01\x14\x74\x97\xb7\x5c\x48\x4f\xaa\x9f\x2f\x74\x8d\x9e\x54\x93\x04\xaa\x86\x28\xbf\x3c\x34\xff\x93\x77\xfb\x96\x5e\x70\x18\x46\xe0\xfa\xc8\xa7\x85\x10\x45\x4f\x2d\xb0\x97\x97\x97\xf9\xa9\x53\xa7\xf0\xce\x3b\xef\xac\x74\xa0\x9b\x85\xa8\x41\xbf\x2b\x26\x12\x53\xbe\x55\xdd\x79\xc5\xe9\x9f\xfa\xd4\xa7\x98\xbc\xb0\x41\x08\x91\x26\x22\xb9\xb0\x97\x06\xc0\x3d\xa7\x83\x5c\x97\xb1\xce\x9c\x39\x83\xd7\x5e\x7b\xed\x6e\x6c\x80\x96\x60\x30\x4d\x93\x59\x96\x75\x2f\xe6\x67\x25\x12\x05\xc0\xca\x16\xe6\xe2\x3a\x12\xab\x52\x7c\xf6\xb3\x9f\x65\xb9\x5c\x8e\x09\x21\xb2\x0c\xd4\x75\xf0\x46\xfe\xa9\x07\x6f\xe4\xff\x57\x72\x2f\x11\x0b\x8c\x85\xba\x5b\xea\x82\x9d\x96\xe1\x7c\x41\x9c\x7a\xad\x0b\x40\x58\x4c\xd9\xf3\xbf\xd8\x3c\xf7\xed\x91\xae\xca\x49\x10\x46\x01\x8c\x7b\x8b\x6c\x25\x21\x44\x85\x88\xec\x91\x91\x11\xfc\xec\x67\x3f\x8b\x13\xaf\x2a\x0c\xad\xc0\xaa\x86\x56\xd5\xac\x56\x25\x6e\xab\xc8\x1f\x55\xa6\xd5\x10\xca\xff\xc0\x03\x0f\xb0\x7d\xfb\xf6\xc9\xcf\x02\x98\xca\xea\x37\xe0\x6e\x51\xb1\x88\xc8\xbe\x73\xe7\x8e\xb4\x1b\x5a\xad\xbf\xe5\x7e\x3d\xfc\xf0\xc3\x0c\x70\xb7\xb0\xdc\xbc\x79\x13\xb6\x6d\x37\xfb\xd8\xcb\x4a\xd4\x7d\x99\x8e\x46\xfd\x51\x55\xa6\x56\x2b\x89\xd2\xeb\x42\xe9\x8c\x31\xbc\xff\xfd\xef\xc7\xd6\xad\x5b\xe5\xe0\x16\x36\xcd\x64\xde\xff\xc8\x85\x55\xff\x39\x65\x53\xaf\x90\x4d\x4b\x17\xa9\xff\x2e\xd5\x27\xf7\x57\xd1\x9c\x02\x89\x11\xca\xe3\xa6\xdf\xc9\xd5\xc6\x9e\xdd\x32\xf7\xcd\xc9\x9c\xf5\x16\x08\xa3\x42\x88\x09\x22\x92\xf6\x82\xe5\x38\x0e\x7f\xe9\xa5\x97\xa4\x6b\x50\x47\xea\x48\x18\x62\xd2\xf5\xb8\xa8\x71\x88\x0b\x71\x63\xd6\xca\xf8\xb6\x52\x26\xae\xbf\x51\xef\x6a\x19\x3f\xbd\xbb\xbb\x1b\xc7\x8f\x1f\x47\xa1\x50\xd0\xbf\x91\xc7\x85\x10\xfc\xf6\xed\xdb\x78\xe6\x99\x67\xa0\x7c\xc7\xee\x6e\xec\x04\x00\xe0\x8c\x31\x36\x30\x30\x80\xbd\x7b\xf7\x62\xf5\xea\xd5\x50\x2e\xa3\xd6\xc7\x0c\x42\x08\x3e\x33\x33\x83\xd3\xa7\x4f\x63\x74\x74\x14\xb6\x6d\xc7\xc2\x10\x13\x5a\xb5\x5f\x62\xbf\x31\xa7\x37\xa6\xa7\x45\xe5\x0f\x95\x39\x71\xe2\x04\x83\x67\xac\xb5\x55\xd9\xba\xdf\x3a\xd3\xfb\x77\x9d\xcb\xc9\x83\xa1\xdb\xdb\x15\x6e\x0f\x11\xde\x8a\x11\xba\x4d\x22\xa4\x32\xb9\x2b\xd6\x32\xe2\x4e\xae\x36\xf6\xa3\xed\x33\xff\x34\x9f\xb1\xcf\x0a\x88\x51\x00\x13\xde\xd6\x8b\x32\x00\xbb\x58\x2c\xf2\xaf\x7f\xfd\xeb\xcd\xd4\x98\xbb\xb1\x95\x5a\x91\x9c\x2b\x8d\xbb\x97\x76\x47\x33\x04\x05\xe2\x11\x19\x1f\xf9\xc8\x47\xe4\x6d\x88\x98\x9c\x9c\xc4\xf7\xbe\xf7\xbd\xb8\x31\xbc\x2b\xdb\xe9\x63\x1f\xfb\x18\x5b\xb3\x66\x8d\x4c\x37\xb4\x3f\x59\xc6\xdf\x42\xef\xed\x1a\x56\xa5\x7c\x53\x18\x22\xe0\x6e\x36\x3e\xb1\x2a\x53\x9c\x68\x69\x69\x92\xe5\x4a\x34\x80\x6c\x82\xa3\xf7\xa1\x4b\x5d\x7f\xb6\x7d\x32\x7b\x22\x74\xfb\x75\xd8\x4e\x96\x6b\x70\xf0\x3b\xa5\x7b\x91\x94\xbc\xae\x3a\x25\x30\xd6\x51\xbd\xf2\xb3\x6d\xb3\x5f\x5d\x4c\x3b\x67\xe1\x6e\x23\x98\x82\xb7\xaf\x06\x80\xf5\xee\xbb\xef\xe2\xa5\x97\x5e\x7a\x2f\x3a\xfc\x7f\xeb\x70\x2f\x0c\xcd\xf7\x6c\x07\xbe\xc7\x50\xd7\xde\x53\x4f\x3d\xc5\xf2\xf9\xbc\x4b\x08\x02\xe9\x4c\x8d\x15\x36\xce\x64\xf6\x6f\x98\x4d\x7f\xa0\x77\xd1\xdc\x61\x08\x4a\xd7\x98\x28\x4d\xe5\xac\x0b\xd7\xba\x97\x9f\x1b\xe9\xac\xbc\x5d\x31\x79\x11\xde\x2e\x82\x4a\xa5\xc2\x1b\x78\xb8\xde\x53\x68\xd5\xcb\xd4\x54\xf7\x92\xe1\xe1\x87\x1f\x66\x43\x43\x43\x0c\x40\x1a\x02\x85\xed\x93\xd9\x8f\x3c\x74\xb9\xeb\xff\x36\x38\xe5\xf4\x85\x35\x6d\x9b\x8c\xe6\x69\x0a\x68\x55\x3f\x47\x20\x20\x30\x9e\xb7\xae\xfd\x64\xfb\xcc\x3f\x15\x53\xf6\x59\x00\x23\x44\x34\x25\x84\x98\x27\xa2\x8a\x10\xc2\x56\x76\x5d\x36\x13\xed\x2d\xc1\xd5\x42\x68\xa4\x72\xae\xc4\x7e\x68\x54\x77\x33\x9d\xb9\x99\x04\x68\x56\x6f\xb3\x76\xd4\x77\x35\xb4\x62\x2b\x30\x00\xfc\x89\x27\x9e\x60\x85\x42\x81\xc1\x3d\x04\x96\xdd\x34\x9d\xd9\x7f\x68\xa4\xe3\xcf\xba\x96\x8d\x23\x24\x90\x0d\x96\x59\xdd\x79\xe6\x84\xd2\x6c\xb6\xf6\xf2\xc9\x0d\x0b\x7f\x7d\xbd\xab\x72\x4e\xb8\x17\x30\x57\x96\x97\x97\xf9\x57\xbe\xf2\x95\x86\xea\xcf\xdd\xc0\x90\x40\xf4\x82\x9a\xfc\x93\x15\xa8\x0b\x22\x3a\xef\x66\x6a\xdc\x43\x0f\x3d\x44\x00\x92\x44\x94\xcd\x57\x13\x1b\x1f\xbe\xb8\xea\x7f\xcf\xd6\x12\x83\x61\x6f\x11\xc9\xe3\x0c\x7e\xcd\x42\x79\x0e\x21\xbf\x5f\x8e\x7c\xb5\x6a\x2a\x57\x1b\xfd\xf1\xf6\x99\x2f\x2f\xa6\x9d\x33\x44\x74\x83\x88\x26\x84\x10\x0b\x44\x54\xb1\x2c\xcb\x7e\xe9\xa5\x97\x70\xe6\xcc\x19\xd9\x77\x09\x97\xfe\x2e\x49\xb0\xd9\x24\xc6\x2d\x48\xea\x21\x2e\x9f\xda\xbe\xda\x6e\xab\x8b\x71\xea\xc2\x12\xb4\x34\x65\xd4\x20\x94\x7a\xf4\x45\xa9\xb8\x39\x56\xf3\x44\xd5\xc3\xb4\x74\x9d\x75\x01\xe1\x71\x6d\x08\xc3\x13\x4f\x3c\x41\x9e\x7d\x92\x66\xa0\xfc\x9e\x5b\xb9\x8f\xfc\xc6\x95\xce\xff\x92\xb3\x12\xbb\x98\xa0\xa4\xbc\x5a\xd1\x35\x2d\x5d\x26\xc8\x40\x66\xb6\xc6\x86\x37\xce\x66\x3e\x54\x4b\x88\xd1\xc9\x76\x6b\x4c\x40\xd4\x92\xc9\x24\x5f\xb7\x6e\x1d\x2e\x5f\xbe\x0c\xe1\x5f\x5a\xf2\xde\x61\x88\x32\x44\xb8\xf2\xc7\x22\xe2\x54\xa0\xfd\xca\x0c\xc3\x60\x4f\x3e\xf9\x24\x23\x22\x83\x88\xd2\x24\xd0\xf5\xe0\x8d\x8e\xdf\xed\xa8\x24\x76\x00\xf0\x6f\x64\x11\xd2\x0e\xf0\xfa\xed\x8f\xa2\x97\x2e\x23\x84\x80\xbf\x26\xa1\x5e\x28\x30\xc3\x35\x52\xff\x00\x00\x20\x00\x49\x44\x41\x54\xdd\x56\x1b\xff\xe9\xb6\x99\x7f\x2a\xa6\x9d\x33\x9e\x37\x69\x02\xc0\xbc\x24\x86\x9f\xfe\xf4\xa7\xb8\x7c\xf9\xb2\xda\xc7\x66\x12\x41\x1f\x03\xa6\xe5\x6b\x64\x90\x46\x95\x51\xcb\xb5\xc2\xa9\xe3\x0c\xe3\x46\xe5\x38\xe2\xe7\x24\xaa\x4d\xbd\x6e\xbd\x9c\xde\x0f\x7d\xdc\x74\xb8\xf4\xfe\xe9\x6d\x47\xc2\xd0\xd1\xd1\xc1\xe0\x1e\x68\xca\x6d\xbe\x93\x7d\xff\x91\x91\x8e\xbf\x32\x38\xf5\xaa\x37\x15\xfa\xab\x4e\x52\x85\xf6\x70\x3d\x69\xb3\xfe\x23\x23\x1d\x7f\xb5\x69\x3a\x73\x84\x40\x79\x00\x66\x4f\x4f\x0f\xf6\xed\xdb\x77\x4f\x61\x88\x2b\xa4\x02\xd7\x0c\x60\x06\x80\x1d\x38\x70\x00\x8a\x5e\x98\x5d\x3f\x9b\xde\xbd\x65\x2a\xf3\x04\x40\x41\x19\x85\x3e\x7d\xd1\xa8\xf2\x51\x12\xc1\xb6\x0d\x72\xff\x05\x46\xb8\xc0\x92\xe9\x14\x9f\xdd\x32\xf7\xf5\xd9\xac\x7d\x46\x40\xc8\xd5\xe7\x79\x00\x56\xad\x56\xb3\x7f\xf6\xb3\x9f\xe1\xf6\xed\xdb\x6a\xdf\x54\x78\x5a\x79\x67\x2b\xc8\xa3\x8f\x07\x9a\xc4\xab\xe9\x3a\x22\x01\xe1\x09\x8a\xfb\x8d\x83\x4b\xcf\x13\x57\x47\xa3\x72\x7a\xf9\x46\x46\xaa\xcc\xab\xbf\xc7\xf6\xfd\x73\x9f\xfb\x9c\x1c\x97\x74\xd6\x62\x7d\x0f\xde\xc8\xff\x89\xe9\xb0\x5e\x39\xff\x3e\xbb\x16\x52\x42\x90\xaf\x3a\x4b\x4d\x22\xe9\x50\xef\x91\xeb\x1d\x7f\x96\xb2\xa9\x1b\xee\x26\x45\x63\xfb\xf6\xed\xd0\xdb\x7a\x2f\x30\xe8\xc4\xd0\x0a\x70\x7a\xe0\x00\xf8\xee\xdd\xbb\xe1\xf9\xad\xb3\x69\x9b\xf5\x1d\x1e\xe9\xf8\xe3\x24\xa7\x82\x34\x90\xfd\xb3\xc3\xf0\x54\x22\x6d\x20\xe4\x05\x5a\x80\xe2\x89\x55\x8c\xed\x8a\xc1\xcb\xcf\x6e\x9e\xfd\xfa\x44\xbb\xf5\x3a\x08\xa3\x44\x34\x0e\xef\xd8\x62\xb5\x5a\xb5\xff\xf1\x1f\xff\x91\x8f\x8f\x8f\x37\x93\x6c\xcd\x90\x2c\x6a\x30\x5b\x41\x9a\xa8\xe7\xa8\xba\xa3\x10\x28\x8e\x19\xc5\x11\x64\xd4\x7c\xe9\x79\x1a\x11\x76\xa3\x72\x51\xa1\x11\x41\xea\xd2\x47\xad\xcf\x87\x61\x78\x78\x98\x25\x93\x49\x9f\x59\x0e\xdf\xc9\x1e\xed\x2c\x1b\x07\xfc\xdb\x06\xa1\xfe\x06\xaf\xaa\xea\x2c\x95\xa9\xc2\xb2\x71\x60\xd3\x4c\xf6\x08\xdc\x33\x1e\x46\x26\x93\xb9\xa7\x30\x34\xe3\x9c\x51\xa1\x2e\xcf\xe3\x8f\x3f\x2e\x81\x37\x20\x90\xbb\x6f\xa2\xed\x43\x3d\x4b\x72\x6b\x86\xb4\x0f\xc2\xc8\x2e\x10\x56\xf4\xd4\x78\xdd\xf7\xc5\x49\xd8\xaf\xae\x2f\xfe\xe8\xda\x2a\x77\xd1\x4d\x08\x31\xe1\xed\xb6\xac\xd4\x6a\x35\xfb\x4b\x5f\xfa\x52\x23\x95\xa8\x95\xb0\xd2\xfc\xad\xd4\xf3\x5e\x10\x51\x25\xec\x38\x35\x2f\x0a\xe9\xa3\x54\xac\xb8\x3e\xa9\xc4\xa3\xb7\x15\x17\xa2\xf0\xa5\x21\xa3\x04\xc0\x86\x86\x86\x40\x44\x8c\x88\x4c\x02\xf2\x43\x33\xe9\xdf\x20\xc0\x84\xa7\x26\x09\x6f\x9d\x29\x50\x97\x83\x25\x57\x19\x84\xb7\x58\x4b\x02\xc6\xd0\x4c\xfa\x37\x48\x20\x0f\xef\x1e\xa8\x87\x1e\x7a\xe8\x9e\xc1\x10\xa7\xfb\xaa\x19\xa3\xd4\xa4\x50\xc5\xfd\xfd\xfd\x80\x77\x63\x46\x7b\x35\xd1\xbf\xe7\x56\xee\xf3\xc4\xc9\x84\xa2\xee\x28\xa0\xf9\x4f\xaa\x15\x14\x95\xc7\x25\x18\x81\x0b\xab\x97\x5e\x3b\xbb\xa6\xf4\x2c\x08\x23\x70\xd7\x19\xe6\x01\xf8\x36\x83\xd6\x9f\x38\xfd\x5e\xe7\xbc\x51\xef\xad\xd4\xa5\xff\xb6\xa2\x42\x35\xfb\x8d\x93\x0a\x51\x36\x82\x9a\x16\x57\x46\x6f\x5f\x27\x98\xa8\xfc\x51\xed\xc4\x8d\x43\x54\x88\x85\xa1\xbb\xbb\x5b\x22\xb9\x69\x38\x94\x2f\x54\x8c\x61\x80\x82\x03\x60\x52\x3b\x08\xab\x0b\x61\xab\x5f\xc6\x11\xa1\xab\x9c\xdc\x96\xb2\x59\x01\x1e\x41\x6c\xda\xb4\x49\x87\xe5\xae\x61\x88\xd2\x67\x9b\xa9\x4a\xa1\x46\x3f\xf6\xb1\x8f\xc9\x41\x30\x49\x20\xbf\x6f\xac\xfd\xb7\xda\xab\x89\x2d\x3e\x44\x1e\xcb\xf7\x17\xa5\xe5\x31\x36\xcf\x78\x72\x6d\x67\x65\xdf\x92\x80\x7b\xe3\x83\xc7\x0e\x26\xda\xad\x6b\x2f\x6d\x5c\xf8\x96\x93\xc0\x35\x78\xe7\x77\xe5\x56\x8c\x57\x5f\x7d\x15\x9e\x9a\xa4\xf7\xb7\x95\x49\x8f\xd3\x23\x7d\xd8\x62\xde\xd5\x31\x8b\x12\xc1\x6a\xfd\x51\x08\x1c\x55\x56\x17\xe9\x71\x84\x1a\xd7\x8e\x2e\x21\xe3\xec\x13\x15\x16\x7d\xde\xa3\xfa\x1c\xd5\x56\x14\xae\x44\xf5\xc7\x87\x21\x97\xcb\xc9\xfc\x86\xc1\x29\x9b\x74\x58\xae\x91\xdb\x52\x25\x04\x29\x45\xd4\x78\xd3\xa6\x42\x82\x23\x87\xf0\xbd\x62\xf7\x04\x06\x43\xc9\x04\x2d\xb1\x91\x38\xf4\xf3\xae\x5e\xbd\x5a\x1e\x38\xc9\x76\x96\x93\x1b\xb6\x4d\x65\x3f\x4d\x82\x98\x0a\x85\xf4\x1e\xa9\x1a\xa1\x7f\x5c\x57\xb1\x1d\x42\x9a\x92\x00\x96\x93\xbc\xf8\xd2\xa6\xf9\x6f\x2f\x1b\xce\x35\x02\xc9\xc3\xec\x65\x00\xd6\xf9\xf3\xe7\x71\xe1\xc2\x85\xc8\x3e\x21\x1e\xf1\x9b\xa5\xe9\xf1\x8d\xe2\x5a\xd1\xa7\xe3\xca\x34\xaa\x9f\x45\x3c\xab\x04\x14\x25\xb1\xf5\x74\x9d\xc8\xa3\x10\x20\x2e\x5f\x1c\xf1\x34\x2b\x13\x89\x3b\xfd\xfd\xfd\x72\x3b\x06\x03\xc0\x1c\x26\x98\xc3\x84\x9b\x57\x71\x0a\xab\x3b\x36\xc2\x3e\xd4\x40\xd5\xf6\x4d\x4f\xf2\xd4\x73\xaf\x4e\x4f\xfa\xdc\x13\x18\xe2\xb8\xa0\xda\x40\x6c\xf8\xc4\x27\x3e\xc1\x18\x63\xee\xcd\x72\x02\xf9\x3d\xe3\x6d\x9f\xca\xd4\xd8\x3a\x55\x53\xf2\xed\x04\xd5\x03\xec\x05\xe9\x6f\x56\x75\x47\x29\x31\x04\x09\xfe\xda\xba\xe2\x4f\xc6\xf3\xd6\x5b\x44\x34\x06\xf7\xb8\x67\x09\x80\x3d\x32\x32\x82\x5f\xfe\xf2\x97\x5c\x08\x11\x35\xe1\x71\x6a\x4b\x33\xd5\xa8\x91\x3a\xa4\x97\x8b\xab\x27\xee\xbd\x51\x99\x46\xf6\x8f\x4e\x40\x71\xed\x70\xd4\x97\x8f\x2a\xd3\x28\x9f\x5e\xa6\x15\x35\x4b\xef\x4b\x1d\x0c\x8a\x04\x07\x00\xd4\x98\xb0\xe7\x33\xf6\x04\xe0\x6e\xc9\x51\xed\x6a\x89\x08\x2a\x9a\xf8\x0b\x2b\x14\x10\xca\x42\xda\x9e\xaa\x1a\xc2\x82\x9f\x16\x62\xa5\xef\x09\x06\x7d\xf2\x75\x71\x12\xab\xf7\x0e\x0c\x0c\x30\x79\x90\x5d\x08\x91\x5d\x55\x4e\x6e\xdc\x7c\x27\xfb\x71\xff\x83\x20\xca\x42\x9c\xe2\x54\xf2\x09\x43\x2a\x4d\x44\xca\x57\x7a\x14\x17\xdb\x48\x57\xe5\xdc\xb9\x35\x4b\xcf\x82\x30\x26\x84\x98\xf6\xb6\x20\x5b\x73\x73\x73\xdc\xdb\x01\x19\x05\x70\x1c\xe2\x34\xd2\xc5\xf5\x01\xd2\x11\xa4\x55\x64\x8f\x0a\x2b\x21\x0c\xf9\xac\xeb\xe2\x71\xaa\x53\x2b\xc4\xdc\xac\x4c\xd4\x7b\x2b\xaa\x62\x5c\xbb\x91\x75\x55\xab\x55\x08\x21\xb8\x10\xc2\x16\x04\x6b\xb4\xb3\x72\x8e\x43\x70\x5f\x29\x12\x61\x02\x70\x55\x68\xe9\x89\x17\x5a\x9c\xc0\x8d\xae\xca\xdb\x36\x13\x15\xaf\x3f\x5c\x6e\x44\xbc\x17\x30\xa8\x08\xb5\x12\x75\x83\xef\xdd\xbb\x57\x96\x37\x09\x94\xdb\x35\xde\xf6\xb1\x4c\x8d\xf5\x4b\x37\xab\xee\x29\xd2\x5e\x41\x42\xd9\xbe\xa1\xe4\x11\x9e\xaa\xf4\xab\x0d\x0b\x4f\xdb\x09\x31\x0a\x60\x8a\x88\x8a\xde\x29\x37\xfd\x56\xb8\xb8\xbe\x36\x53\xf5\x5a\x55\x91\x5a\xe1\xda\x71\x6d\xc4\xc5\xeb\x2a\x46\xa3\xdf\x28\xf1\x1e\x55\x3f\x57\xfe\xa2\xfa\xac\xbf\xeb\x76\x47\xdc\xdc\x37\xb2\x3d\xa2\xfa\x1b\x09\x83\x65\x59\xf0\x6e\x37\xb4\x41\x28\x5f\xee\x29\x9f\x2a\xa5\x9c\x29\xd7\x5e\x74\x59\x63\x9d\xd2\xac\x10\x85\x1f\x05\xa0\x6c\xf2\xe9\x0b\xbd\xe5\x57\xe1\x7d\x2a\x58\x5e\x19\x7a\xaf\x60\x68\xc4\xed\x1a\xaa\x4c\xaa\x67\x29\x57\x4d\xf4\x6f\x9d\xca\x7e\x3c\x64\x3b\x28\x90\x84\x9c\x4d\xbe\x7b\xd5\x1b\x02\x6d\x75\x5a\x90\xe0\x6f\x0d\x2c\x3e\x33\x95\xab\x9d\x81\x72\xd2\x0d\x00\x7f\xf9\xe5\x97\x71\xeb\xd6\xad\x46\xfd\x6a\xc6\xcd\x57\xc2\xdd\x81\x16\xd4\xc6\x15\xe6\xd3\xf3\x46\x49\xb2\x28\x1d\xb8\x19\x93\x8a\x83\x2b\x8a\x69\xc4\xd5\xdd\xac\xed\x58\x84\x8f\x68\x23\x14\x37\x31\x31\x01\x4f\xbd\xb5\x84\x10\xa5\x62\xca\x19\x7d\x75\x7d\xf1\xfb\x4e\x42\x58\xd2\xdb\x24\xfd\xee\xee\x99\xfa\x40\x6b\x08\xce\xcd\x13\x1c\x26\xac\x57\xd7\x17\x9f\x5e\x4c\x39\xa3\x70\xef\xd7\xb5\x88\x88\x5f\xba\x74\x29\xb6\xed\x95\xc2\xd0\x48\x2c\xc7\xea\xe2\xc7\x8e\x1d\x93\xa7\xab\x4c\x08\xe4\xb6\x4f\x66\x1f\x4a\xdb\x6c\xd0\x5f\x78\x26\xf8\x00\x85\x3c\x08\x8a\xba\x24\xd5\xa8\xd0\x57\x7d\x48\x60\xaa\xdd\x1a\x39\xdb\xbf\xf4\x9c\x80\x90\xd7\xc4\x94\x84\x10\xf6\xcd\x9b\x37\x79\x93\x53\x6e\x51\xfd\xd6\x91\xa5\x11\xa2\xc5\xa9\x00\xad\x22\x7b\xd4\x44\x34\xea\x5f\xab\xf9\xd5\xd0\x68\xa2\xd5\xba\x5b\x91\x80\x32\x3e\x0a\x56\x7d\x5c\xa2\xb8\x6c\xb3\xba\xfd\xf0\xdc\x73\xcf\xc9\x6b\x3f\x2d\x00\x25\x10\xa6\x2f\xac\x5e\x7a\xe9\xd4\x60\xe9\x67\x36\x13\xb6\xba\x40\x27\xef\xee\x55\xbf\x62\xe4\x7d\xec\xd1\x3e\xd3\xbf\xf8\x8b\xf3\x7d\xa5\xe7\x40\x98\x96\x67\x5d\x38\xe7\xfc\xea\xd5\xab\x51\xb0\xde\x15\x0c\x86\x96\x21\x8e\xc2\x42\x95\x0e\x0f\x0f\xfb\x57\x99\x64\x2c\xd6\xbb\x7d\xaa\xed\xe3\xf2\x9b\x6e\x92\xda\x29\xc2\x97\xac\x3f\x04\x9f\x77\x72\x15\x27\x4e\xb0\x5f\x5f\xb7\xf8\xa3\x65\xc3\x19\x21\xa2\x29\x78\xf7\xfe\x54\x2a\x15\xfe\xda\x6b\xaf\x45\x01\xa1\xeb\x84\x71\xaa\x4f\x14\x1c\x51\x36\x47\x1c\xe7\x8b\x1b\xd0\x66\xd2\x2a\x4a\x1a\xb4\xda\x1f\xde\x20\x3e\xaa\x8d\x28\x7b\x2a\x2e\x4e\xaf\x4f\xcf\xa7\x97\x69\xd4\x4f\x3d\xd4\xc1\x90\x48\x24\xd8\xf4\xf4\x34\xba\xbb\xbb\x6d\xef\x28\xef\xb4\xc3\x30\xfa\xab\xf5\x0b\xdf\x59\x32\x9d\xf2\xfd\x37\xdb\x3f\x94\xaf\x26\xba\x7c\x4e\x49\xf0\x71\x02\x10\x28\x99\xce\xfc\xeb\xeb\x8a\x3f\x3b\xbf\x66\xe9\xe7\x0e\x73\x6f\x0b\x24\xa2\x12\x00\xfb\xf6\xed\xdb\xb8\x79\xf3\xe6\x3d\x83\xc1\x68\x94\x18\x03\xa8\x3c\xdd\x64\x08\x21\xb2\x43\x33\x99\x03\x1d\xcb\xc6\x8e\x90\xae\x47\xd1\xe7\xa2\x21\x8d\x68\xef\xcb\xa0\xd2\xdd\x26\x37\x77\x8d\x76\x56\xce\x5d\xef\x5a\x7e\xdd\x23\x86\x79\x00\x15\x21\x84\xfd\xf6\xdb\x6f\x63\x66\x66\xa6\x11\x72\xc5\x01\x1c\x47\x40\x51\x65\xd0\xe0\x3d\xaa\x6e\x44\xe4\xd1\x43\x23\x82\x8d\xeb\x0f\x50\xdf\xf7\xa8\xc9\xd6\xdf\xe5\x73\x9c\x64\x8f\x83\x41\x8d\x8b\x1a\xb7\x28\xfc\x68\xaa\x26\xa9\xf5\x38\x8e\x83\x17\x5e\x78\x01\x9f\xfc\xe4\x27\x79\x22\x91\xa8\xc0\xbd\x2e\x74\x02\x8c\xf0\x76\x7f\xc9\x1e\xe9\x5a\xbe\xb0\xf9\x4e\xf6\xc0\x86\xb9\xf4\xb6\x7c\xc5\x28\x24\x38\x19\x0e\x09\xbb\x98\xb6\xe7\x6f\x74\x55\x2e\x5c\xea\x29\xbf\x59\x4c\x3b\x97\xbd\xcd\x9c\xfe\x5d\xb2\xb5\x5a\x8d\xbf\xf5\xd6\x5b\xf7\x14\x06\xfd\x1b\x73\x8d\xb8\x20\x03\xdc\xfd\xec\x80\xfb\x9d\x02\xc6\x91\xdf\x7a\x27\xfb\x48\x42\x90\x09\xf2\x36\x64\x41\xdd\x5f\xab\x7f\xf7\x98\xfc\x2d\x1a\xc1\x71\x6a\x97\x48\x6a\x09\x51\x39\x35\xb8\xf8\x0c\x67\x98\xf0\xce\x42\x97\x01\xd8\x33\x33\x33\x72\x2b\x77\xa3\xc9\xd4\x07\xa5\x91\x8e\xab\x0e\x4a\xa3\x10\x35\xb9\xfa\x60\x37\x23\x26\xbd\x7c\x54\x3f\x1b\x95\x69\xd6\x2f\xbd\xee\x56\x55\xa5\xa8\xf4\xa8\x7a\xf4\xf4\xa8\xf2\x2d\x49\x67\x6f\x1e\xd9\xbe\x7d\xfb\x6c\x22\x2a\x7b\xd7\x87\xda\x20\x58\xc5\x8c\x33\x7f\x6a\xed\xe2\x8d\xd3\x83\x8b\x85\x94\xcd\x3a\x12\x9c\x0c\x87\x09\xbb\x6a\xf0\x05\xc7\xfd\x2e\xc7\x34\x10\xba\x7f\xb7\x2c\x84\xe0\x17\x2e\x5c\xd0\xdd\xba\xef\x19\x06\xfd\x1b\x73\x51\xc8\x14\x9a\xb0\x42\xa1\x00\xb8\xd7\x96\xa4\xbb\x97\xcc\x0d\x7d\x45\xf3\x90\x5f\x03\x05\xab\xce\xfe\x6a\xbc\xf0\x37\xb2\x2a\x21\x70\x2a\x4b\x5d\x71\xa4\xab\xf2\xf6\x78\x47\xf5\x0c\x3c\xaf\x12\xbc\x1d\xac\xdf\xfe\xf6\xb7\x75\xc0\xe2\x00\x6c\xc4\x15\xa2\x06\x41\xcd\xa7\xa7\x45\x71\xee\x46\xc8\xd6\x90\x43\xc6\x94\x8b\x23\x86\x66\x48\x1c\x15\x56\x5a\xa6\x55\x62\xbb\xdb\xba\x22\xeb\x79\xe3\x8d\x37\xb8\xe3\x38\xec\x81\x07\x1e\xb0\xbc\x3c\x36\xdc\x53\x70\xf3\x20\x4c\x38\x84\x5c\xd9\xe4\xf2\x82\x03\x99\x56\x06\x82\x0f\xd5\xc0\xfb\x42\xd3\xc5\x8b\x17\x71\xf2\xe4\xc9\x95\x30\x92\x96\x60\x50\x55\xa6\x46\x93\x07\x00\xfc\x91\x47\x1e\x91\x04\x62\x10\x28\x37\x3c\x9d\xfd\x80\xe9\x50\x21\xfc\x2d\x2a\x65\x65\x11\x08\x56\xaa\x7d\x1f\x9a\xb2\x40\xe1\x85\x1a\xe3\x95\x33\xfd\x25\x29\x1d\xfc\x53\x6f\xd7\xaf\x5f\xbf\x6b\xc0\xd0\x98\x80\x9a\x49\x91\x56\x38\x6b\x23\xb5\x41\xb5\x01\x1a\xd5\x19\x15\xd7\x48\x52\xaf\x44\x37\x8e\xaa\xaf\x99\x5d\xa4\x96\x69\xd4\x4e\x5c\x99\xa6\xda\xc6\x5b\x6f\xbd\x05\xc6\x18\xf6\xef\xdf\x6f\xcb\x8f\xce\xc0\x45\xfa\x79\x00\x92\x18\x64\x79\x1b\x2e\x01\x54\xe4\xad\x1f\xb6\x6d\xdb\x97\x2f\x5f\x96\x47\x83\xef\x39\x0c\x71\x1f\x5d\x94\x15\x85\x2a\xe8\xeb\xeb\x93\xef\x69\xd3\xa1\xc2\xc6\xe9\xf4\x71\x08\x62\xee\xe7\x70\x55\x35\x48\x79\x56\xfe\xfb\xdf\x76\x90\x5e\x36\xef\x1b\xce\x63\x85\xea\x3b\x13\xf9\xea\x79\x04\xab\xd1\x16\x00\x7e\xfa\xf4\x69\xbd\x5f\xf7\x62\x10\x5a\xe1\xca\x51\x63\xa0\xe7\x6d\xa4\x86\xe9\xe5\x5a\xe9\x47\x14\x11\x45\xf5\xaf\x91\xba\xd5\xa8\x4f\x8d\x88\x55\xcf\x13\xd5\x4e\x54\xfd\x7a\x99\x96\x60\x38\x75\xea\x14\x9f\x9e\x9e\x66\x47\x8f\x1e\xb5\x33\x99\x8c\xbc\x48\xa0\x02\xf8\x1f\x9d\x94\xaa\xb4\xdc\x8d\xc0\x89\xc8\x9e\x9b\x9b\xc3\xbf\xfc\xcb\xbf\xac\xa4\x3f\x2b\x86\x41\xb5\x21\xf4\xc9\xa9\x03\x2e\x95\x4a\xc9\x32\xe9\xde\x92\x39\x5c\x58\x4e\x6e\x53\xf7\x22\xc9\xa0\x2e\xb3\x93\x17\x11\x08\x09\x75\xdf\x3b\xc1\x21\x61\x9f\x5b\xb3\xf4\xa2\xe3\x7e\xa3\x61\x5e\x72\x8d\x8b\x17\x2f\x62\x7e\x7e\x3e\x6a\x02\xa3\x90\x48\x7d\x8e\x22\x8a\x66\x5c\xad\x15\x09\xd1\x88\xf3\xaa\xed\x35\xea\x5b\xa3\x3e\xc4\x21\x7a\x23\x09\x1e\xd5\xb7\x28\xc2\x8c\xca\xdb\x0a\x91\x37\xea\xaf\xde\xb7\x56\xe3\x00\x00\x37\x6e\xdc\xc0\x57\xbe\xf2\x15\xbe\x73\xe7\x4e\x36\x34\x34\x64\xaf\x5a\xb5\x4a\x7e\x4e\x8c\x01\xfe\x76\x0c\xee\x38\x0e\xe6\xe7\xe7\x71\xfa\xf4\x69\x8c\x8c\x8c\xfc\xda\x61\xd0\xbd\x4c\x7a\xe5\x7e\xf8\xd0\x87\x3e\xe4\xab\x4b\x10\xc8\x6e\x98\x4d\x3f\x98\x90\xdf\x80\x83\xb6\x55\x17\x3a\x89\xd4\xed\xec\xf5\xdf\x67\xdb\x6a\xa3\x37\x0b\x95\x33\x02\x62\x9e\xe0\xba\xd2\x6a\xb5\x1a\x7f\xf1\xc5\x17\x5b\x01\xb0\x19\x92\x36\x2b\xd3\x88\xdb\x47\x0d\x7a\xb3\x76\xe2\x88\xaa\x11\x2c\xcd\x10\x29\x2a\x5f\x54\x1b\x6a\x9a\x8a\x7c\xad\x10\x52\x23\xe2\x6e\xa6\x52\xb7\xa2\xce\xc5\xc2\x70\xee\xdc\x39\x7e\xee\xdc\x39\x3f\xc3\xa6\x4d\x9b\xd0\xd7\xd7\x87\x5f\xfe\xf2\x97\xbc\xbb\xbb\x9b\x4d\x4f\x4f\xb7\xca\x0c\xee\x09\x0c\xba\x97\x29\xaa\xd3\xdc\x30\x0c\xb6\x71\xe3\x46\xc0\x93\x0e\x29\x87\x0a\xeb\x67\xd3\xef\x07\xc2\xeb\x0b\xf2\x5e\xa5\x60\xdf\x52\x70\x55\xa5\x6f\x5e\x78\x3e\x58\xe1\xa5\x5f\xe8\x2d\xbf\x62\x19\x62\x82\x40\xf2\xfa\x18\xfb\xc6\x8d\x1b\x51\xfd\x89\x02\x3a\x0a\x38\x35\xaf\x5e\x4f\x9c\x9a\xd2\x0a\xd2\x37\x13\xc5\x7a\x1f\x9a\xa9\x50\x51\xfd\xd1\x61\x88\x82\x27\x6a\xa2\xf5\xf2\x71\x08\xd4\x4a\xfb\x6a\xbd\x51\x30\x36\x65\x9e\x88\x81\x61\x60\x60\x80\x4d\x4d\x4d\xc1\xfb\x2c\x58\x24\x0c\x57\xaf\x5e\xc5\xd5\xab\x57\x39\x00\x36\x3d\x3d\x1d\x09\x43\x7f\x7f\x3f\xc6\xc7\xc7\xf9\xf1\xe3\xc7\x55\x98\x00\x80\xfd\xe2\x17\xbf\x88\x63\x30\x2d\xc1\x10\xe5\x65\xaa\x7b\xef\xee\xee\x06\x00\xff\x9a\xc3\xae\xa5\xe4\x86\x8e\x65\x63\x38\xbc\x96\xe8\xb9\x59\x29\xb8\x60\xcc\x3f\x02\xaa\xda\xd0\xca\xce\xc4\x72\x92\xcf\x5f\x5f\xb5\xfc\x16\xdc\x33\x0e\x25\xf9\xc1\x12\x0f\xa8\x38\x75\xa6\x11\x77\xd6\x91\x56\xe6\xd7\x01\x6f\xa4\x86\x45\x95\x89\x52\x85\xa2\xda\x69\x34\x19\x51\xaa\x5b\x33\x35\xad\x99\x4a\x17\x47\x0c\x51\x79\x1b\x11\x4f\x5c\xbf\xe2\x60\x8c\xea\x17\x07\xdc\x9b\xc5\x87\x86\x86\x90\xcf\xe7\x91\xc9\x64\xa0\xd8\x04\x9c\x88\x50\x2e\x97\x31\x36\x36\xc6\x9e\x7f\xfe\xf9\x15\xc3\xb0\x7e\xfd\x7a\xb6\x77\xef\x5e\xf4\xf6\xf6\xca\xe3\xca\x00\xdc\xed\xdf\x52\xc5\x1a\x1e\x1e\x66\xd5\x6a\x95\xdf\xb9\x73\x07\x3f\xfa\xd1\x8f\x56\x0c\x43\x94\xca\x54\xc7\x99\x87\x86\x86\x00\xb8\x9f\x83\x15\x42\x64\xfb\x8b\xa9\x3d\x49\x4e\x39\xf7\xd8\x5f\x70\x92\x29\x38\x00\x14\x6c\xe1\x88\xd8\xda\xe4\xbf\xdc\xea\xa8\xbe\xb3\x90\xb6\x47\x00\x14\x3d\xcf\x12\x9f\x9d\x9d\x45\x22\x91\x60\x8e\xe3\xa8\x7d\xd1\xfb\xd5\x0a\x77\xd6\xb9\xb9\x9e\x37\x4a\x22\xea\x65\x5a\x09\xba\x0d\xa0\x97\x8f\x93\x3e\x71\xed\xc4\xf5\x47\x8f\x8b\x1b\x8f\x38\x35\x26\xae\xed\x46\x84\xd8\xa8\x4c\xa8\x2f\x03\x03\x03\x38\x76\xec\x18\xda\xda\xda\x64\x7e\xc3\xfb\xbe\x36\x03\x00\x6f\xeb\x06\xcf\x64\x32\x7c\xcb\x96\x2d\x7c\xcb\x96\x2d\xb8\x73\xe7\x0e\x9e\x7d\xf6\x59\x14\x8b\xc5\x86\x30\x14\x0a\x05\x1c\x3f\x7e\x1c\xab\x56\xad\x92\x84\xa0\x7e\x79\x95\x21\x3c\x07\xb6\x69\x9a\xf6\xc0\xc0\x80\x7d\xe2\xc4\x09\x9c\x39\x73\x46\x7e\x00\xa7\x29\x0c\x40\xfd\xd6\x0d\x7d\xf0\x00\x00\xf2\xca\x41\x21\x84\x49\x44\xd9\xf5\xb3\xe9\x03\x00\x31\xdd\x9e\xa6\xba\x67\x75\x49\x2e\x08\x02\x02\x82\xc0\x2f\xf5\x96\x5f\x73\x48\xcc\x7a\xb6\x83\x45\x44\xfc\x5b\xdf\xfa\x56\x2b\xaa\x44\x5c\x5c\x54\xb9\x28\xce\x1d\x95\x1e\x27\x3d\xf4\xb6\x1a\x71\xb4\x46\x7d\x6e\x86\xe0\x51\x21\x4a\xc2\xc4\xa9\x6e\x51\x21\x8e\xe0\x9a\xa9\x88\x71\x2a\x46\xa4\xc4\x3a\x7a\xf4\x28\xb6\x6e\xdd\x2a\x91\xd5\x00\x60\x9a\x36\x65\x3b\xcb\x66\x5f\x4f\x29\x39\x98\x10\x64\x2c\x27\x79\x69\xba\xcd\x1a\x2b\xa6\x9d\x69\x3b\x21\x2a\x00\xac\x9e\x9e\x1e\xfb\x89\x27\x9e\xe0\xaf\xbf\xfe\x3a\x53\xee\xd1\xaa\x83\xe1\xf1\xc7\x1f\x67\xd9\x6c\x96\xc1\xfb\x88\x64\xba\xc6\xf2\xeb\x67\xd3\x3b\xd7\xcf\xa5\xdf\xb7\x7a\xd1\xdc\x61\x70\xca\x56\x0c\x3e\x3d\x91\xb7\xce\x5f\x5b\xb5\xfc\xf2\xad\x8e\xea\x25\x3b\x21\xca\x00\xac\xdd\xbb\x77\xdb\xeb\xd6\xad\x93\xde\xa9\x58\x18\x64\x5c\x9c\x97\x29\x14\xbc\xc5\x38\x46\x44\x66\xc6\x62\x85\x9e\x52\x72\x67\xc8\x2e\xf0\x55\xa4\xc0\xdf\xaa\x7d\xe6\x21\xfc\x0b\x42\x25\xe9\x14\x6f\x75\x54\xcf\x7b\x8b\x70\x15\x00\xb6\x72\x89\x6d\xdc\x44\xc7\x21\x6f\xb3\x10\x87\x50\x51\x6d\xc5\x21\x71\x2c\xc3\x68\xb5\xde\x9d\x3b\x77\xb2\xb5\x6b\xd7\x22\x9b\xcd\x86\xfa\x36\x3a\x3a\x8a\xe5\xe5\x65\x9c\x3b\x77\xae\x15\x22\x6c\xd4\xdf\xa8\xf1\x5b\x49\x7f\x5b\xcd\xe3\xc7\x3d\xfe\xf8\xe3\xac\xbf\xbf\x9f\xc1\xbb\x96\x32\x65\x53\x7e\xd7\xed\xdc\xb1\xad\x53\xd9\xdf\x2e\x2c\x1b\x7b\x13\x9c\x0a\x5e\x3d\x76\x2d\x21\x26\xa6\xdb\x6a\xaf\x9d\x1e\x58\xfc\xd2\xb5\xee\xe5\xb7\x1d\x86\x12\x63\xac\xf2\xc0\x03\x0f\xd8\x8e\xe3\x30\x0f\x7e\xbf\x8d\x42\xa1\xc0\x1e\x7b\xec\x31\x78\xc4\x90\x26\x8e\xdc\xf0\x74\x66\xef\xc1\xd1\xfc\x9f\x74\x95\x93\xef\x67\x02\x39\xb9\xb4\xdb\x01\xa0\xb7\x94\xe4\xf7\x4d\xb4\xcd\xde\x2c\x54\xbe\x7d\x72\xc3\xc2\xdf\x4f\xe5\x6a\xd7\x88\xa8\x52\x28\x14\xac\x4f\x7f\xfa\xd3\xf8\xe6\x37\xbf\xc9\xa3\x60\x50\xe1\xf3\xf5\x30\x65\x00\xea\x06\xc3\xfb\x68\x9f\x01\xc0\xec\x2d\x25\x87\x53\x0e\xeb\xf6\x57\xdb\x3c\x63\x3a\x1c\x82\xc5\xb7\xd0\x9a\x9c\x9f\x24\x70\xab\xa3\xfa\xce\x72\x92\xcb\x0f\xf7\x55\x00\x70\xed\x82\xb1\x56\x27\x32\xaa\x4c\x23\x2e\x18\x57\x2e\xca\x6e\x88\x23\x12\x35\x2e\x92\x50\xd6\xac\x59\xc3\x6e\xdf\xbe\xcd\x9f\x7c\xf2\x49\xd6\xd1\xd1\x01\xc0\xb7\xc1\xea\xfa\xb1\x6a\xd5\x2a\x0e\x00\x47\x8e\x1c\x01\xe0\x6e\x73\xf0\x24\xa5\x0e\x57\x23\x86\xd0\xec\x39\xea\x7d\xa5\x65\x42\xcf\x8f\x3c\xf2\x48\x40\x0c\x40\xb6\xb7\x94\x1c\x3e\x7e\xb9\xf3\x0b\xab\x17\xcd\x8f\x12\xc8\x94\xd7\xd0\x79\x7b\xd5\x4c\xd3\x61\x1b\xfb\x8b\xa9\x8d\x7d\x8b\xe6\x47\x2f\xf5\x94\xff\xeb\x4b\x1b\xe7\xbf\x58\x4e\xf1\x29\x22\x2a\x1f\x39\x72\xc4\x26\x22\x76\xf6\xec\x59\x0e\xb8\xdf\x88\x78\xfc\xf1\xc7\x7d\x62\x60\x1c\x85\x83\xa3\xf9\xdf\xbc\xff\x66\xfb\x5f\x1a\x9c\xba\x43\xbb\x61\x03\x24\x63\x06\xa7\xee\x0d\xb3\xe9\x13\x3d\x25\xf3\xd0\x4f\xb7\xcd\xfc\xe9\xcd\x42\xf5\x1c\x11\x95\xba\xba\xba\xac\xc3\x87\x0f\xcb\xd5\xed\x58\x1c\x4a\x68\x89\x2a\xfe\x0a\x00\xec\xc8\x91\x23\xd4\xd3\xd3\x43\xde\x47\xfa\x0a\xdb\xa7\xda\x1e\x1d\x9c\x4f\x1d\x81\xbf\x6f\x3d\x00\xda\xdd\xdb\x8e\xa0\x0a\xf5\xfe\x25\xff\xf4\x9c\x80\x00\xf8\x9b\x83\xa5\xa7\xef\xe4\x6a\x6f\x0a\x88\x29\x00\x4b\x00\x6a\xca\x77\x07\x54\x0a\x63\xb2\x2f\x4a\xbf\x64\x50\x69\x4d\x2f\xc3\xbd\x74\x8e\x30\x4c\x51\xf9\xe4\xaf\x2e\xcb\x84\x92\xcf\x3f\xcd\xa8\x94\x11\x6a\x5e\xc6\x18\x1b\x1c\x1c\xa4\x63\xc7\x8e\xd1\xbe\x7d\xfb\x70\xe0\xc0\x81\x44\x2a\x95\x4a\x78\xaa\x44\x0a\xae\xc8\x4f\x91\xfb\x9c\x06\x90\x04\x60\x0a\xf7\xea\x4f\x43\x7e\x5f\x3a\x9b\xcd\xd2\xfe\xfd\xfb\x69\xd7\xae\x5d\xe8\xef\xef\xc7\x95\x2b\x57\x24\xfc\xb2\x7d\xbd\x8f\x6a\x9a\x88\xc8\xa3\xfe\x41\x2b\x23\x9f\x25\x4c\xa4\xd4\x45\x11\xef\x00\x20\xb6\x6e\xdd\xca\x76\xed\xda\x05\x22\x4a\x0a\x21\x72\x3d\x4b\xe6\xa6\xc7\xcf\x77\xff\x97\x55\xe5\xe4\x71\x80\x12\x04\xb9\x43\x41\x55\x9b\x3d\x7b\x53\x20\xd5\x5d\x4e\x3e\xb8\xaa\x9c\xec\xb8\xbe\x6a\xf9\x94\xc3\x44\x8d\x88\x9c\x9e\x9e\x1e\x3e\x3a\x3a\x4a\x95\x4a\x45\x1c\x3d\x7a\x94\xfa\xfa\xfa\x5c\x35\x1d\xd4\xb1\x77\x3c\xf7\xd8\xa1\x1b\x1d\xff\xc9\x70\xa8\x2b\xd8\x25\x1d\x40\xe8\x03\xec\xb5\x67\x3a\xb4\x7a\x60\x21\xbd\x6b\xac\x50\x7d\x75\x29\xe9\x14\x89\xc8\xee\xe9\xe9\x71\x6e\xdd\xba\x45\x4b\x4b\x4b\x2a\xdc\xf2\x97\x00\xf7\xa3\x8b\xea\xa4\xab\x93\x4d\x00\xf8\xfb\xde\xf7\x3e\xf2\x26\x35\x93\x10\xd4\xbd\xf7\x56\xfb\x93\x9d\xcb\xc6\x70\xb0\xbd\x9b\x82\xff\xca\x1a\x43\x70\xb0\x43\x19\x13\x6f\x03\xa0\x95\xe4\x8b\xaf\xae\x2f\x7e\x6b\xd9\xe4\x97\x89\x68\x8e\x88\xca\xa5\x52\x89\x9f\x3b\x77\x4e\x17\x35\x2a\xb1\x86\x04\x8d\x32\x99\x32\x9f\x0a\x60\x88\xa8\x11\xcd\x0d\xd4\xf2\x14\x91\x57\x27\x36\x9d\x20\x43\x1b\x7c\xdb\xda\xda\xd8\x47\x3e\xf2\x11\xec\xdb\xb7\x0f\xb9\x5c\x8e\x11\x51\x12\xee\xb5\x8d\x19\x56\x13\x1d\x6d\x73\xce\x70\xe7\xa4\xfd\x60\xd7\x2d\xfb\xe1\xae\x71\xfb\xd1\xce\x5b\xb5\x8f\x74\x4e\x38\xc7\x3b\xa6\xec\x07\x73\xb3\xce\x66\xb3\xc2\x0b\x04\xa2\x9a\x49\x0e\x88\x12\x44\x44\x86\x61\x88\x8e\x8e\x0e\xdc\x7f\xff\xfd\x30\x0c\x43\x1e\x8e\x8a\xea\x83\x4e\xec\x51\xcf\xcd\xf2\xc4\xe5\x8d\x2c\xff\xc8\x23\x8f\x90\xf7\x45\xd9\x4c\xda\x66\x7d\x8f\x5c\xec\xfa\xcb\x9e\x25\xf3\x21\x1f\xe9\x01\xf8\x47\x82\x21\xa5\x44\x80\x1b\x10\x60\x85\x8a\xb1\x13\x84\xc9\x5b\x05\xeb\x12\x08\x96\x61\x18\x4e\x67\x67\xa7\xb8\x74\xe9\x92\x38\x7e\xfc\x38\x31\xc6\x92\x44\xd4\x56\xa8\x18\x43\x1f\xbe\xd8\xf5\x37\xa6\xc3\xd6\xb8\x57\xd7\x28\xf2\x41\xf5\x6a\x2a\x38\x49\x20\xa4\x6c\x5a\x93\xb3\x8c\xe4\x95\x9e\xe5\xd7\x04\xa1\x42\x44\x76\x6f\x6f\xaf\x50\xce\xd5\xe8\x8c\x52\xe8\x6e\xd7\xba\xe7\x6c\x36\x2b\x5d\x67\x66\xca\x66\x85\xee\xa5\xe4\x46\x55\x5c\xf9\xc0\x6b\xbc\x55\x31\x17\xea\xf2\xce\x65\xec\xf1\x62\xda\x19\x13\x42\x94\xa5\xab\x75\x6c\x6c\x0c\x11\xa1\x91\x8e\x0b\xd4\x8b\xf6\x46\x7a\x75\xa3\xd0\x4a\xb9\xd8\x7a\x76\xee\xdc\xc9\x0e\x1f\x3e\x2c\xc7\xc9\x10\x42\xa4\x19\x47\xb6\x7d\xc6\xd9\xd6\x39\x5e\x7b\x34\x37\xe3\x1c\x4f\xd4\xc4\xb0\x77\xb9\x16\xc2\x74\x18\xd4\x2f\x18\x66\x6b\x29\x7a\x7b\xbe\x2f\xf9\xe3\xf9\x35\xc6\xf3\xcb\x79\x36\x0a\xef\x03\x91\x7b\xf6\xec\xb1\x77\xee\xdc\x89\x06\x1f\x48\xd7\x43\xab\x06\xfb\x4a\xeb\x62\x00\x78\x5b\x5b\x1b\x03\x60\x10\x51\x6e\xeb\x54\xdb\xb1\xfe\x85\xd4\xe3\xca\x32\x93\x1b\xea\xb7\xad\xf9\x66\xa6\x77\x27\x93\xb1\x6b\x3c\xf7\x1f\x2e\xf7\x2c\xbf\x76\x27\x57\x3b\x07\xc0\x5e\xb3\x66\x8d\xf5\x87\x7f\xf8\x87\xfe\x01\x34\x02\xe5\xf7\x8e\xe5\x3e\x93\xa9\xb1\x8d\x21\x33\x14\xf0\xbe\xab\x13\x76\xf1\x87\x82\x20\xac\x9d\x4b\x3d\xde\xbf\x90\xfa\xce\x58\x67\xf5\x57\x00\xac\xae\xae\x2e\x4b\x59\xf0\xab\x83\x5f\xb7\x21\xea\x82\x61\x18\x32\xdd\x68\xaf\x26\x7a\x33\x16\xeb\x0b\x37\x0a\x5f\x5e\x09\x2f\x82\xfc\xf3\x7f\xd0\x16\xe5\xdc\xb8\x89\xbc\x75\xc9\x66\x42\x9e\x93\xb6\x01\x60\x76\x76\x56\xad\xb5\x91\x01\xab\xe6\x89\xd3\xed\x5b\x75\x27\xb6\x12\xe2\xbc\x12\x00\x80\x8f\x7e\xf4\xa3\x6c\x70\x70\x10\x70\x09\xc1\x24\x81\x5c\x7e\xda\xd9\xd9\x7b\xdd\xfa\xfd\xb6\x79\xe7\x43\xc4\xd1\xad\x6f\x82\x17\xc2\xe7\x92\x8a\x3f\x42\x30\xc6\xd1\x6d\x96\xc5\xf1\xde\xeb\xd6\xb1\x55\x37\xad\xd1\x62\xaf\xf1\xcf\x53\x1b\xcd\xaf\x55\x72\x6c\x0c\x44\x95\x44\x22\x61\x7d\xfe\xf3\x9f\xb7\x2f\x5f\xbe\x8c\x97\x5f\x7e\x59\xed\x53\x94\x0d\x18\x35\x2e\x51\x63\x10\xe7\x8e\x54\xcb\x84\xe2\x3e\xf6\xb1\x8f\xc9\x3d\x47\x66\xc2\x41\x61\xfb\x64\xf6\xb7\x98\x20\x13\x08\xcf\x73\xc8\x86\x94\xfe\x16\x52\x9e\x05\x90\xb6\x59\xff\xa6\xe9\xcc\x6f\x4c\xb5\x59\xd7\xe4\x96\x7f\xa5\x3d\x33\x6d\xb3\xee\xb5\xf3\xe9\x63\xfe\x62\x96\xc6\x4b\x42\xcc\x18\x70\xcf\x68\x2b\xaa\x7a\x92\x53\x61\xfd\x5c\xfa\x7d\x63\x85\xea\xdb\x02\xa2\x0c\xc0\x1e\x1a\x1a\xe2\xd3\xd3\xd3\x91\xf8\xa2\x1b\x99\x4c\xf9\x65\x7b\xf6\xec\x61\x42\x08\xe6\xf9\x93\xcd\xc2\xb2\xd1\x6f\x70\x6f\xbb\x86\xbc\x6e\x90\x44\xe8\x2e\x56\xff\x36\x36\x59\xa3\x42\xc0\xee\x9f\xc0\x44\xbb\x75\x05\xe4\x1b\xd3\x36\x00\x7e\xfe\xfc\xf9\x38\x2f\x47\x54\x68\x86\xd8\xb2\xac\x5a\x3e\x04\x5b\xc4\x33\x9a\xc4\xa9\x75\x32\x00\x78\xf4\xd1\x47\xd9\xe0\xe0\xa0\x7b\x94\x16\xc8\x99\x55\x31\xb8\xf6\x7c\xe5\x8f\x87\xde\x5a\xfe\x5a\x6e\xd6\x7e\x8a\x71\x78\x2b\x9a\xca\x20\x00\x8a\x6e\xa9\x8c\x9d\x6f\x83\x11\x48\x80\x19\x36\x36\x74\x8e\xdb\x7f\xb1\xe9\xb5\xe5\xaf\xf5\x5e\xb7\x3e\x49\x8e\x28\x00\x48\x27\x93\x49\x73\xc7\x8e\x1d\xec\xd8\xb1\x63\x51\x63\xa3\x1a\xcb\x51\xe3\x11\x15\x17\x37\x8e\x6a\x19\x1f\x79\x72\xb9\x1c\x53\xdc\xf0\xe9\x7c\xd5\xe8\xeb\x5c\x36\x76\x0a\xd7\x99\xee\x83\x2b\xdf\x08\x02\xd2\xe5\x28\xaf\x19\x02\x84\x4a\x14\x6c\xc3\x6c\xfa\x98\xbc\xd1\xdb\xbb\xf2\x52\x8e\xb1\x99\xae\xb1\xde\x36\x2b\x31\x18\x6c\xa6\x56\xdb\x09\xbe\x45\xe8\xdb\x13\x90\x43\x2d\x40\x24\x40\x02\x6c\xf5\xa2\xb9\x9b\x84\x7b\xb1\x19\x11\xb1\xe1\xe1\x61\x09\x9f\x84\xcd\x7f\x66\x40\x1d\x57\xf0\xd5\x90\x81\x81\x01\x00\x80\x67\xf0\xa5\xbb\xca\xc9\xf5\x04\x18\x0a\xa8\x6e\x08\x75\xcc\x03\xde\xef\xa4\xbc\xe6\xdc\xfd\x57\x4b\x88\xf2\x74\x5b\xed\x3a\x3c\x62\x50\x17\xe3\x9a\x4c\x86\x8a\x8c\x3a\x72\xea\x22\x5d\x0d\x2a\x82\xeb\x9c\x51\xf7\xa4\xe8\x03\xa5\x7b\x64\xfc\xfe\x3d\xfa\xe8\xa3\x6c\xed\xda\xb5\x0c\x80\x49\x40\x3e\x3b\xef\x6c\xdb\xf8\xc6\xf2\xdf\x76\x8d\xd9\x7f\xc1\x38\xba\x15\x03\x32\xcc\x14\x44\xf0\xac\x5e\xd9\xa3\x5c\x68\x18\x9a\x60\xc3\x12\xdb\xd6\x5c\xb2\xfe\x76\xdd\xdb\x95\x3f\x37\x2a\x7c\x50\x08\x91\x06\x60\x6c\xd9\xb2\x85\x1d\x3d\x7a\xd4\xfd\xa0\x5f\x63\xb8\x74\x2e\x1f\xe7\x4d\x64\x0d\xf2\xfa\x63\xd2\xdb\xdb\xeb\xb7\x43\x44\x66\xd6\x4a\xf4\x1b\x0e\xcb\x13\x51\x98\x19\x0a\x95\xa1\x93\x0f\xb8\xaf\xee\x78\x04\x02\x22\x64\xad\x44\x7f\xd2\xa1\x9c\xc7\x58\x64\xdf\x0c\x22\x32\xb3\x35\xd6\x95\xe0\xc8\x4a\x8c\x13\x20\x04\x9b\x45\x95\x6f\x49\xc8\xb6\xfc\x1d\xd5\xe4\xbf\xa7\x6d\xd6\x45\xde\xe5\xc8\x11\xe3\xa4\x86\xba\x5b\x37\xd4\xc9\x57\x11\xd1\x20\x90\xd9\xb5\x94\x5c\x17\x98\x2c\x1e\x4f\x13\x80\xbc\xc2\x5c\x9a\xd7\xea\x80\xf8\xeb\x12\x2e\x28\x58\x32\x9d\xe9\xa5\x94\x33\x0d\xf7\xd4\x93\x4d\x44\x7c\x61\x61\x01\x8e\xe3\xc4\x4d\xaa\xae\xd7\x73\xed\x59\x77\x21\xc6\xd9\x03\x51\xe5\x64\x5b\x88\x79\xaf\x23\x04\x84\x89\xc1\x80\x10\xb9\xb6\x79\x67\xc7\xfa\xd3\xcb\x7f\x9b\x5e\xe4\x1f\x76\xed\x32\xa1\x48\x83\xe0\x99\xbc\xeb\xfe\xdd\x5d\xef\x01\xc6\x04\x9e\x3a\xf8\x71\xee\xed\x13\x5e\xbc\x10\xd9\xc2\x84\xfd\x3f\xac\x7f\xbb\xf2\x1f\x93\x96\xe8\x87\x70\x27\x77\xdb\xb6\x6d\xd8\xb5\x6b\x97\xda\xe7\x28\x38\xa2\x42\x23\xa2\xd0\xeb\x09\x8d\xa3\xf2\x6d\x6a\x57\x65\xe2\xc8\x52\xa8\x9c\xd7\x67\x05\x69\x05\x49\x27\x4b\xa0\xe7\x08\x04\x8e\x17\x59\x97\x22\x19\x7c\xdc\xab\x31\xd7\x2b\xe9\xdb\x27\x50\x3c\x4a\xf2\x02\x64\xff\x1c\xbf\x24\x0a\x99\xcf\xed\xc3\xb2\xc1\xcb\x4a\xbd\x0d\xd5\xf1\x28\xae\x20\x9f\xf9\xc0\xc0\x80\x6f\x28\x26\x38\xd2\x1d\x15\x63\x9d\x7a\x6d\x8c\xdf\xac\x2a\xb2\xbc\x3f\x97\x28\xa4\x80\x84\x3f\x18\x0b\x19\x7b\xdc\x4a\xf0\x22\xdc\x95\x69\x1b\x00\x94\x8b\xc7\xf4\xbe\xa9\xa1\x91\x0a\xd5\x28\xbd\x19\x82\xc4\x11\x82\x5e\x2f\x07\x80\x83\x07\x0f\x06\xc4\x00\xe4\xd2\x8b\x7c\xdb\xba\x33\x95\xbf\x4e\x95\xc5\x01\x5f\x12\x7a\xbc\xcc\x1f\x0f\xb9\x4e\xa3\xea\xbf\xfe\x18\x8a\xe0\x34\x21\x69\x33\x0e\xf8\x56\x2a\x01\x46\x6e\xc6\x79\x6a\xdd\xd9\xca\x17\x12\x35\xd1\x0b\xef\xfb\x08\x07\x0e\x1c\x88\x83\x51\x9f\x70\x9d\x23\x46\x21\x44\x9c\xfa\x14\xab\x5a\x55\x0d\x61\x71\x12\xb6\x7c\x27\x05\x38\xc5\xb9\x18\x3c\x08\x85\x69\x7a\x61\xc9\x74\x66\x6b\x09\xa1\xf7\x1f\x00\x50\x4a\x39\xc5\xb2\xe9\xcc\x02\x21\x02\x42\xdd\xbb\x76\xa9\x45\x10\x04\x66\xdb\x6a\xe3\x9c\x20\xef\x6f\xd2\x43\x08\x2e\xfd\x80\x90\x9f\xd8\xd6\xd6\xa6\x7e\x22\xd5\x48\x39\x2c\x97\x76\x6f\x5c\xf6\x55\x23\x75\x13\x5f\xc8\x72\x50\xc4\x61\x68\x6e\x21\x30\x97\xb1\xc7\xb9\x77\xc9\x14\x00\xf5\x3a\x4a\xbd\x1f\x4d\xa9\x19\xd1\x13\x15\x27\xfa\xeb\xc4\x3f\xe2\x11\x24\x2a\x8d\xf5\xf4\xf4\xa8\x1c\x39\x9b\xa8\x89\xbe\xb5\xe7\x2a\x5f\x30\x97\xc5\x7e\xdf\xa5\x10\x32\x1e\x83\x0f\xc0\xf8\xdf\xc7\xf0\xdd\x2c\xf0\x75\x61\xf2\x2d\x43\x19\x02\xab\x34\xb4\x1d\x06\x60\xed\x77\x9c\xa7\x56\x5f\xad\x8e\x8e\x6f\x4b\xfd\x3d\x88\x78\x22\x91\x28\x7f\xe6\x33\x9f\x91\x5b\x13\x9a\xc1\x10\x0a\x07\x0f\x1e\x94\xbb\x98\x65\x7e\x00\xee\x59\x05\xed\x78\x66\xac\x9d\xb1\x90\xb1\x67\x97\x4c\x3e\x5d\xa8\xb0\x75\xa1\x9e\x2a\x90\x84\x62\x34\xa7\x90\x80\xc0\x4c\x5b\x6d\x0c\xe4\x1b\xd3\x1c\x1e\x5e\x10\x91\x5d\x49\xf2\xd2\xed\xbc\x75\xa9\xa3\x92\xdc\x10\xae\x39\xda\x57\xa7\x3b\x9b\x38\xc1\xbe\xd5\x51\xbd\x02\x17\xdf\x64\x1b\x71\x81\xa9\xb7\x27\x87\x44\x67\x7b\x7b\xbb\x9c\x44\x46\x44\x86\x69\xb3\x9c\x69\x53\x3e\xb0\x1e\x14\xc3\xd0\xa3\x79\xb9\xeb\x50\x6e\xf2\x93\x9f\x94\x56\xbb\x3f\x97\xad\x8d\x81\x02\xfb\xa1\x5a\xad\x42\xe9\x43\x9c\x1d\xa1\xc7\x45\x79\x49\xa0\xc5\x45\x49\x3e\x3d\x7f\x23\xdb\xa2\xae\xde\xfb\xef\xbf\x5f\xda\x3a\x69\x08\x91\x5f\x7d\xb5\xfa\x64\x76\x81\x7f\x38\xf8\x64\xb6\x6a\x3c\x7b\xeb\xb3\x82\x5c\x55\xc9\xb7\xb9\x02\x69\x21\x6f\x1b\x71\xd5\x26\x95\xc3\x29\x07\xaa\x14\xfb\xc2\xab\xdd\x58\x75\xb3\xf6\x47\x4b\x5d\x89\xb3\x0b\xab\x93\x2f\x02\xb0\x3b\x3b\x3b\xad\x7d\xfb\xf6\xc1\xbb\x81\x22\x8a\x41\xf8\xe1\xd0\xa1\x43\x58\xbb\x76\x2d\x0a\x85\x82\x94\xfe\xa1\xef\x43\x0b\x21\xf8\xae\x5d\xbb\xf8\xce\x9d\x3b\xb1\xb8\xb8\x88\xf3\xe7\xcf\xe3\xdc\xb9\x73\x12\x17\x74\xb5\xd3\xae\x18\xbc\x78\xa3\x6b\xf9\x74\xc7\x78\xfb\x3a\xd9\x73\xc9\x2a\x43\x7a\xbf\x0f\xb9\x87\x14\xd2\xc8\x26\xd8\xa3\x85\xca\x3b\xf0\x10\x56\xdd\xb9\x0a\xc0\x12\x84\xd2\xb9\x35\x4b\x2f\x6c\x9e\xce\x1e\x4b\x70\x32\x83\x6f\x0e\x06\x38\x28\xeb\xf5\x3f\xe3\x2c\x82\xdb\x5d\x66\xdb\x6a\x23\x63\x85\xea\xbb\x12\xe7\x00\x60\x71\x71\x51\x9f\xeb\xba\xc9\xaf\xd3\x17\xfb\xfb\xfb\xa1\x5a\xfc\xd9\x5a\xa2\x60\x70\xca\xba\x93\x43\x0a\x43\x53\x0c\x26\xff\x0e\xff\xf0\x8c\xb8\x0c\xd0\xbd\x77\xa9\x98\x72\x26\x85\x10\x3a\xb5\xc6\xe9\xf7\x8d\x74\x7d\x44\x94\x89\xb2\x3b\x1a\xd5\x1b\x97\x37\xb2\xcc\xda\xb5\x6b\x01\x6f\x9b\x42\xdb\x9c\xb3\xa3\xeb\x66\xed\xf7\x00\xc1\x7c\xbd\xd5\xd7\xfb\x85\x5c\x91\x0f\x8f\x85\x2e\xb1\x15\x9d\x42\xda\x63\xf2\xdb\x7a\x52\xe5\xf4\xeb\x93\x59\x09\x60\x0e\xba\xfa\x2e\x59\x7f\x9c\xa8\x09\xf9\x69\x29\xb6\x7b\xf7\x6e\xd9\x67\xdd\xc9\xc0\x01\x20\x9f\xcf\xe3\x89\x27\x9e\xc0\xae\x5d\xbb\x58\x67\x67\xa7\x41\x44\x69\x00\x59\xc3\xa1\x42\xbb\x65\xf4\xb6\x57\x12\xfd\x6d\x55\xd6\x9d\xe4\xac\x00\x20\x07\x20\x9d\xcf\xe7\x8d\xc3\x87\x0f\xb3\xdf\xfe\xed\xdf\x46\x57\x57\x17\x00\x20\x97\xcb\xa9\xf3\x60\x81\x50\x3a\xbb\x66\xe9\x05\xa9\xd6\x28\x1c\x10\x1e\x08\x21\xd5\x89\x20\x19\x84\x1b\xa6\x73\xb5\x91\xd1\xce\xea\x79\x78\xdf\x15\x97\xbb\x62\xd5\x8b\xcd\xc6\x3b\xaa\x17\x2e\xf4\x2e\xbd\x1c\xe8\xa0\xc1\xe0\x05\xaa\x39\x05\xea\xba\x67\xbf\xd8\x09\x51\x79\x7d\xdd\xe2\x8f\x2a\x06\x9f\x82\x67\xb3\xc2\xb5\x83\x64\xf7\xea\x18\x61\x9c\xd5\xcd\x01\x7f\x9f\x39\x03\x60\xe4\xaa\xac\xab\xce\xd7\xec\x19\x0e\xd2\xa7\xae\x9e\x7b\x08\xfd\x7a\xf1\x0e\x09\xab\x94\x72\x66\xa1\xdc\xc9\x19\x71\x2c\x30\xaa\x3f\x51\xe9\x8d\xca\xc4\xe9\xbc\x2b\x8d\x97\x69\x78\xec\xb1\xc7\x7c\xdf\x3b\xb8\xc8\x77\xdf\xa8\x7d\x26\x61\xa3\x9f\x7c\x1b\x81\x14\x60\x7d\x73\xd2\xad\x41\x26\x7b\xec\x5e\x55\xa5\x48\x0e\xa6\x57\x4f\x20\x65\x54\xd1\xa0\x5c\x02\xe7\x56\x85\x74\x89\x1f\x2c\xdc\xae\x1d\x9d\x59\x9b\xfc\x3e\x88\xac\x54\x2a\xc5\x0f\x1e\x3c\x88\xd7\x5e\x7b\x4d\x95\x6e\x0c\x00\xdf\xba\x75\x2b\x1e\x78\xe0\x01\xf8\x3b\x46\x05\xd2\xf9\x6a\xa2\x6b\xdb\x64\xdb\x91\xf5\x73\xe9\x87\x3a\x96\x13\x5b\x98\xa0\xac\xcd\x44\xa9\x94\x72\xae\xdd\x2c\x54\x5e\x78\xa7\x6f\xe9\xc5\x85\xb4\x33\x0d\x42\x25\x97\xcb\x59\x8f\x3d\xf6\x18\xff\xca\x57\xbe\x82\x72\xb9\x8c\xa9\xa9\x29\xf4\xf6\xf6\x72\xb8\x9e\xc2\xe2\x4c\x5b\xed\xca\xa9\xc1\xc5\x9f\xbc\xef\x7a\xc7\x53\x09\xb9\x0b\x1a\x8a\x7a\x58\x17\x7c\x84\xb5\x7e\xb5\xbe\xf8\xfd\x4a\xb0\xa7\x4d\xbf\xab\xd5\x12\x42\x14\x41\x34\xf5\xca\xd0\xc2\x77\xf2\x15\xa3\x6f\xed\x7c\x6a\x47\x1d\x8e\x29\xae\x3a\x89\x9a\x9c\x04\x7f\x73\x70\xf1\x99\x2b\xdd\xe5\x93\x20\xf7\xea\x1a\x00\x36\xe7\x9c\x2b\x38\x57\x37\xff\x72\x2f\x13\x21\x40\x24\x02\x20\xd6\xac\x59\x43\x03\x03\x03\x04\x77\xdf\x4d\x47\xff\x42\xea\xc0\xd0\x4c\xe6\x28\x85\x65\xbb\x37\xc1\x61\xc4\x77\xe7\x33\xfc\x6d\x69\x00\xa8\x1a\x7c\xe1\xf4\x40\xe9\x7b\x56\x52\xdc\x22\xa2\x05\x00\xd6\xd8\xd8\x98\xb8\x75\xeb\x96\xef\x38\x50\xb2\x87\x4c\x77\xaf\x6f\x42\xed\xa3\x12\x17\x02\x4a\xab\x4b\xcd\x13\x57\xa7\xde\xb6\x1a\x04\x00\x71\xec\xd8\x31\xf2\xb6\x63\xb4\x67\x8a\x7c\x7b\xdf\xe5\xea\x5f\x24\x38\xda\x5c\xa4\x55\x01\x07\x14\x6c\x0f\x7e\x35\x71\x11\xa8\x28\xde\xb3\x27\x79\xd5\x7d\x3a\xae\x2d\x12\x96\xc0\x72\x5c\x09\x60\xc9\xaa\xc8\xcf\xad\x49\xbe\x28\x12\xb4\x28\x84\xa8\x65\xb3\x59\x7e\xfe\xfc\x79\x15\x1e\x31\x38\x38\xc8\x1e\x7e\xf8\x61\x24\x93\x49\x03\x40\x8a\x71\x74\xec\xbe\x9d\xfb\xd0\x87\x2f\x76\xfd\xcd\xc6\x99\xcc\x1f\xe5\xab\xc6\xde\xa4\x4d\x83\x49\xce\x56\xa7\x1c\xb6\x36\x5f\x4d\xec\x1e\x58\x48\x3d\xbe\x65\xaa\xed\x28\x11\x8a\x53\xed\xd6\xb8\x20\xf0\x64\x32\xc9\xf7\xef\xdf\x2f\x6c\xdb\xc6\xe2\xe2\x22\xd6\xac\x59\xc3\xc9\x05\x82\x04\x84\x31\xd9\x6e\xcd\x1a\x9c\xda\x7a\x4b\xc9\x75\x4c\xb8\x7b\x99\x24\xec\xc1\xb9\x99\x00\x69\xab\x09\x5e\x7e\x65\xe3\xc2\xb7\x2f\xac\x2e\xff\x1c\x84\x31\x00\xb3\x42\x88\x65\x00\xf6\xdf\xff\xfd\xdf\xf3\x3d\x7b\xf6\x80\x31\x26\x3c\x98\x85\x6d\x40\x8c\x74\x55\xc6\x32\x35\xd6\xd1\xb9\x6c\xf4\x25\x04\x98\xaf\x9d\xa8\x67\x71\x00\x94\x93\x4e\xf1\xd5\xf5\xc5\x1f\x9d\x5a\xbb\xf8\x5d\xce\x30\x02\x60\x12\xc0\x02\x11\x59\x97\x2e\x5d\x12\x57\xae\x5c\x91\x38\x22\xff\x7c\xdc\x4f\x28\x11\x50\x13\x77\xed\xda\x85\x42\xa1\x90\x00\x90\x82\x40\x61\xdd\x7c\xfa\xc1\x75\xf3\xe9\xc3\x21\x43\x4f\x55\x13\x94\xd5\x41\x39\x10\xd2\x68\x22\x0f\x61\xca\x26\x9f\x3e\x3d\xb0\xf8\x03\x9b\x89\x09\x22\x5a\x14\x42\xd8\x93\x93\x93\x42\xd9\xa3\xa3\x22\x6a\x14\x81\x48\xa4\x57\x01\xd1\xd3\x75\x04\x57\x89\x4d\x27\x20\x15\x66\xbd\x6d\xbf\xcc\x83\x0f\x3e\x48\x7d\x7d\x7d\xd2\x76\xe8\x5c\x75\xb3\xf6\xa9\xfc\xb4\xf3\x70\x48\x95\x95\xc2\x80\x02\x63\x51\xbe\xb8\x38\x2e\x7c\x84\xa7\x60\xe0\xe4\x50\x85\x04\x82\xe4\x2e\xd2\x1e\x93\x2e\x4b\x77\xce\xc9\xcf\x9b\xa8\x89\x42\xa9\x2b\x71\xd2\xca\xb2\xdb\x00\xaa\xa9\x54\xca\x9e\x9f\x9f\xa7\xb9\xb9\x39\x00\xa0\x4c\x26\x43\x0f\x3f\xfc\x30\xd2\xe9\x34\x03\x90\x61\x1c\x9d\xef\xbf\x56\xf8\xf7\x07\x6f\xb6\xff\x6f\xe9\x1a\xdb\xe8\x76\x84\xfc\x86\xfd\xba\x01\x32\x39\xeb\x1b\x9c\x4f\xfd\x46\x9b\x95\x70\x46\x0b\x95\x0b\x82\xa1\xe6\x6d\x90\x13\x3f\xf9\xc9\x4f\xf8\xce\x9d\x3b\xc9\xdb\xc5\x00\x22\xe2\x02\x42\xdc\x2a\x54\xa7\x16\xd3\xce\x52\xe7\x72\xb2\x37\x5d\x63\x59\x57\x3b\x52\x76\x37\x11\xc0\x09\x7c\xb2\xdd\xba\xf1\xc2\xf0\xfc\xb7\x2e\xf5\x96\x9f\x17\x10\x37\x00\x4c\x7a\xc7\x00\xac\x0b\x17\x2e\x88\xd1\xd1\x51\xe2\x9c\x63\x60\x60\x80\x93\x7b\x6b\xb8\x00\xe0\xd8\x4c\xd4\x6e\xac\xaa\x8c\xdc\xc9\xd5\xa6\x99\xa0\x84\x69\x53\x86\x88\x48\x90\x10\xb5\x04\xac\x62\xc6\x9e\xbd\xd8\x53\x7e\xeb\xc5\xe1\xf9\xef\x5c\xeb\x5e\xfe\xa5\x60\x18\x11\x42\x8c\x93\xfb\x09\xb6\x65\xc7\x71\x9c\xe7\x9f\x7f\x1e\x95\x4a\x05\x0a\x1e\xa9\x1a\x05\x45\xdd\xdc\xc7\x00\xf0\x55\xab\x56\x31\x00\xee\x96\x65\x10\x4b\xd9\x2c\x2f\xb1\x27\xd0\x04\xbc\x41\xf4\x26\xd8\xff\xde\x30\x05\x06\xa4\xba\xa9\x00\x39\x40\xc6\xbf\xab\x96\xcd\x9e\xcf\x18\x00\x00\x20\x00\x49\x44\x41\x54\xe0\x15\xef\x70\x88\xed\x0d\xa4\x14\xf1\x6a\xfb\x40\x7d\x9f\xa0\xc4\xeb\x4e\x00\xf5\xb9\x4e\x5d\x88\x48\xd7\xeb\xd2\x0d\xe8\x3a\x17\xa6\xf7\x0d\x33\xd7\x57\xce\x91\xcf\x4f\xdb\x47\x48\x80\x85\x06\x43\x35\xf3\xa4\xab\x54\x12\x8a\x8a\xff\x7e\xf6\x80\xdb\x4b\xd5\x33\x60\x36\x11\xaa\x46\x94\x3a\xca\x91\x6f\x9f\x71\x1e\x58\x5c\x95\x78\x93\x88\x8a\x42\x08\x76\xed\xda\x35\xdf\x05\x7a\xe0\xc0\x01\x26\xbf\x0d\x0d\x81\xdc\xce\xdb\xb9\x0f\xef\x19\xcf\x7d\x21\x21\x28\x17\x3a\xd6\xeb\xf5\xc7\xfd\x09\x62\x99\xa0\xfc\x7d\x13\x6d\xff\xf3\x62\xca\x99\x79\x7d\x5d\xf1\x9b\x82\xc0\x4d\xd3\xac\x7c\xfc\xe3\x1f\xc7\x97\xbf\xfc\x65\x7e\xe2\xc4\x89\xe0\xa2\x31\x80\x71\x06\xf6\xee\xea\x72\xe5\x46\x57\xe5\xe2\xd0\x4c\x66\xcf\xda\xf9\xd4\x70\x67\x39\xd9\x9d\x74\xc8\xac\x1a\xbc\x32\xd5\x6e\x8d\xdf\xe8\xac\x5c\x1a\x2b\x54\xcf\x5b\x09\x31\x0a\xc2\x18\x81\x26\xe0\x5e\x6d\x69\xd5\x6a\x35\x7e\xe6\xcc\x19\x00\xe0\x67\xce\x9c\xc1\xd0\xd0\x10\xeb\xed\xed\xb5\xe1\xaa\x53\x00\x81\x3b\x84\xf2\xd5\x55\xcb\xf3\xd7\xbb\x2a\x6f\x65\x6b\x89\xd5\x59\x8b\x15\x0c\x4e\x86\x65\x88\x72\xc9\xb4\x67\xaa\x86\x98\x86\x7b\x83\xcb\x14\xdc\x4b\xef\xe4\x4d\x7f\xf6\xb9\x73\xe7\x30\x37\x37\x17\xa5\x86\xfb\x71\xea\x11\xd2\x48\x04\x21\x22\x06\x01\x23\x53\x63\x79\x75\x56\x54\x11\xa5\x72\x00\x95\xa7\xab\x2e\x48\x00\xb0\x12\xa2\xe4\x50\x60\x38\x21\x1e\xf1\xd5\xb8\x46\xae\x52\x1d\x28\x3d\xaf\x5e\x97\x1a\xaf\xc2\x1c\x1a\x14\xbd\xed\x54\x2a\xe5\x2f\x44\x19\x96\xe8\x4e\x95\xf8\x36\x3f\x67\x48\x0d\xf2\x9f\xea\xa4\x68\xa0\x36\x41\xc9\x1f\xc4\x91\x22\xfe\x55\xfd\x2b\xac\x76\xfa\xc6\x08\xa4\x9c\x69\x9b\x73\xf6\x33\x81\x9c\x20\x98\x44\x54\xf9\xcd\xdf\xfc\x4d\x26\x6f\x3b\xdc\xb2\x65\x8b\x84\x25\x5b\x58\x36\x36\x3c\x38\x9a\xff\x73\xf7\x50\x0d\xea\xfa\xa2\xb6\xe0\x7a\xc0\xa4\xef\x90\xd2\xfb\xc6\x72\x7f\x7a\xa3\xb3\x72\x6e\xa2\xbd\xfa\x36\x11\xd9\x7d\x7d\x7d\x16\x00\xbc\xf5\xd6\x5b\xd8\xb7\x6f\x9f\xa5\x7a\x86\x04\x44\xa9\x6c\xf2\xd9\xf3\x7d\x4b\x23\xe7\xfb\x96\xf2\x4c\x20\x4d\x80\x21\x00\xdb\x73\xb7\xcf\x7b\x3a\xfd\xb4\xf7\x57\x04\x50\x26\x22\xfb\xe4\xc9\x93\xa1\xe3\xa4\xdf\xfd\xee\x77\xf9\x67\x3f\xfb\x59\xe4\x72\x39\x0b\xde\x2d\xf0\xe4\x5e\x83\x39\x2f\x08\xf9\xa5\x94\x93\x5b\x4a\x39\x69\x79\x87\x13\x3c\x9b\x06\xee\x19\xfd\x22\x80\x92\xb7\x5f\xce\x7a\xf3\xcd\x37\x71\xea\xd4\x29\x1d\xc7\xeb\x70\x29\xee\x6e\x57\x1f\x51\x84\x10\x60\x20\x66\x70\x32\x09\xc1\x9c\x91\x3e\xaa\xf2\x51\xaa\xcd\x08\x1c\x0e\xd2\xe6\xb4\x12\xbc\x2c\x20\x6c\x02\x71\xc5\x78\x8a\x0a\x71\x1c\x3b\x0a\x69\xe3\x42\x14\x27\x68\x44\x50\xb1\x75\x78\xdf\x58\x66\x00\xcc\xd4\x12\xef\x4f\x38\xe8\xf2\xa5\x83\x0f\xb7\x62\x44\x28\xa2\x40\xdd\xc8\xe6\x1b\xc7\x3e\xf2\x03\x21\x31\xa2\xd2\x04\x00\x80\x82\xf5\x0b\x45\x55\x52\x33\x9a\xcb\x7c\x03\xab\x89\xbc\x6d\xba\xfb\x74\xe4\x85\x10\xfb\xf7\xef\x67\xde\xb6\x0e\x13\x40\xee\xbe\x89\xb6\xc7\xb2\x16\x1b\x56\x57\x8b\x65\x77\xa3\x08\xc3\xcf\x23\x80\xb4\xcd\xd6\xed\x9c\x68\xfb\xc4\x64\xbb\x75\x0d\xde\x96\x9b\x47\x1f\x7d\x14\x3f\xfe\xf1\x8f\x39\x63\x8c\xed\xde\xbd\xdb\xbf\x9a\xd2\xdb\xa0\x57\x04\x21\x07\x20\xcb\xc9\xf5\x82\x79\xc8\xac\x5e\x4d\x59\xf2\x3e\x9e\x59\x11\x42\xd8\x67\xcf\x9e\xc5\xc5\x8b\x17\xeb\x98\xe2\x57\xbf\xfa\x55\xfe\xe4\x93\x4f\xa2\xa3\xa3\xc3\x52\x3d\x4f\x00\xd2\x42\x88\x34\x11\xf9\x37\xfd\x79\xb7\xfb\x55\x00\x54\x88\xc8\x12\x42\x58\x42\x08\xfb\xcc\x99\x33\x92\x18\xe2\xe6\xdb\xc7\x8b\xa8\xed\xdf\x3a\x67\x65\x00\x18\x13\xa4\xe4\x0d\xb0\x3f\xb8\x6f\x43\x8e\x21\xf9\x7b\x4b\x7c\xc3\x11\xee\x6a\xac\xc3\x84\xa5\x48\x87\xa8\xd0\x4c\x6d\x6a\x65\x25\x36\x2a\x7f\x9c\x84\x68\x54\x56\x2f\xe7\x9e\x15\xae\xf0\x7e\x08\x18\xc1\xa5\xcd\x81\xd7\x28\x40\xd8\xc0\x0d\x18\xe0\xbb\xf0\xf5\xf4\x20\xa8\x5e\x7b\x59\x1f\x42\x54\xa1\x7a\xa1\xc2\x3b\x64\xdd\xf4\x84\x2d\x0a\x86\x25\x0a\x4e\x8a\xa9\xfb\x80\xb0\x63\xc7\x0e\xe9\x21\x34\x0d\x87\x0a\xeb\xe7\xd2\xc7\x08\xc4\x74\x55\xd6\x17\xec\x8a\x11\xe3\xc2\xe4\x7b\xf5\x41\x20\xac\x9d\x4b\x1d\x4b\x39\xf4\xa5\xaa\xe1\x7e\x1f\xbc\xbd\xbd\x9d\x03\xf0\x0f\xf0\xef\xd9\xb3\x47\x5e\x49\x69\x79\xbf\xa6\xf7\x67\xc0\x5d\xcb\x92\xc8\x2c\xaf\xa7\xb4\x00\xd8\xd5\x6a\x95\x9f\x3b\x77\x4e\xe7\xde\xa1\xf0\xcf\xff\xfc\xcf\x38\x74\xe8\x10\xdf\xbe\x7d\xbb\x65\x18\x86\x2c\x5f\xd6\xb6\x7a\x48\xbc\xf2\x17\xf8\xaa\xd5\x2a\xff\xf2\x97\xbf\x1c\x87\x6b\x91\x0c\x53\xbf\xdb\x55\x57\x63\x64\x60\x4c\x48\xe2\x11\xa1\x5b\xbe\x25\x01\x48\x9d\x58\x8a\x7c\x49\x04\x90\x79\x5c\x83\xca\x5f\x7b\x90\x88\xd4\xd1\xd1\xc1\x16\x16\x16\x64\x7b\x3a\x32\xc6\x01\xd2\x6c\x21\x4f\x57\x03\xd5\x38\xbd\x6c\x23\x09\x84\xe3\xc7\x8f\xab\xf9\xcd\x84\x85\x55\xf0\x20\x0c\xc1\xec\xdb\x03\xe4\x19\xd0\x92\x48\x28\xf8\xf5\xc6\x2f\x6c\x6f\x90\xa4\x1d\x05\x49\xbd\xf1\xf5\x9d\x33\xaa\x71\x1e\x1e\x0c\xe2\x48\x1b\x36\xf2\x95\xe0\x4e\x54\xf6\x7b\xbf\xf7\x7b\xea\xb6\xfd\x74\x9b\xc5\x7a\x73\xd5\xc4\x86\x80\x20\x83\x8d\x99\xbe\x2c\x53\x54\x3c\xe1\x35\x2e\xa4\x61\x0f\xa0\xcd\x4a\xac\xcb\x55\x8c\xde\x6a\xae\x36\x0e\xc0\xe8\xe8\xe8\x90\xb6\x0a\x7b\xf5\xd5\x57\xf9\xc8\xc8\x08\x7b\xe8\xa1\x87\x78\x2e\x97\xb3\xa4\x34\x90\x27\x00\xb5\x39\xe2\x00\xb8\xe3\x38\xfc\xd6\xad\x5b\xf8\xc9\x4f\x7e\x12\xc7\xbc\xfc\x77\x21\x04\x3f\x79\xf2\x24\x3b\x7b\xf6\x2c\xf6\xed\xdb\xc7\x07\x07\x07\x79\x7b\x7b\xbb\x8d\x08\x1c\x11\x42\xf0\x62\xb1\x88\x91\x91\x11\x68\x57\xe5\xeb\x75\x47\xaa\x4f\xfa\x25\x03\x21\xa4\x50\x8d\x3e\x92\x12\x42\xee\x1f\xf1\x1d\x99\x8a\x7f\x5c\x4a\x04\xa9\x13\xfb\x15\x79\xe6\xbc\xbb\xe7\xc5\x57\x97\x88\x08\x0b\x0b\x0b\xb1\xfa\x9c\x0e\xac\xd6\x57\x3d\xae\x91\x1d\x12\x57\x4f\x54\x5c\x14\x61\xc8\xd5\x5c\xc6\x1c\x91\x0e\x2e\x6f\x16\x21\x75\xc8\x07\x16\xd2\x26\x08\x50\x8f\xa4\xee\xef\x4b\x16\x04\x1e\x3a\x85\xfb\xeb\xaa\x68\x14\x11\x84\xd4\x1c\x01\x46\x8e\xc8\x2a\xdc\x12\xff\xf0\x0f\xff\xc0\x4f\x9c\x38\x21\xdf\x0d\xc3\x61\xf9\x04\xa7\xac\x4f\x88\x42\xeb\xae\x32\x5f\x01\x7d\x87\x9d\x02\x4c\x50\x3a\x65\x93\xff\xb1\x74\x0a\x2e\x24\x06\x00\x4c\x4e\x4e\xf2\xaf\x7e\xf5\xab\x18\x18\x18\x60\x9b\x36\x6d\xe2\x9b\x37\x6f\xe6\x89\x44\xa2\xce\xfd\xce\x39\xc7\xa5\x4b\x97\xa0\xdc\xcc\x18\x35\x07\xf2\x39\xd4\x46\xa9\x54\xe2\x2f\xbd\xf4\x12\x03\xc0\x57\xaf\x5e\xcd\x06\x06\x06\xf8\x9b\x6f\xbe\xc9\x8f\x1e\x3d\xca\x64\x7d\xab\x57\xaf\x66\x93\x93\x93\x71\x04\xd0\xc8\xc9\x02\x20\xbc\x30\xa7\x06\x9d\xf2\x98\x1c\x3c\x7f\x1c\xe5\xfc\x12\x85\x17\x60\x22\x06\x5b\xf7\x68\x44\xd8\x0e\x7a\x07\xa3\x10\xbb\x59\x68\x44\x18\x2b\x09\x91\x52\xca\xeb\x33\x13\x0c\xdc\xc5\xf5\x00\x61\x42\x6a\x8f\xbf\xf6\x20\x35\x25\xe5\x5d\x4a\x09\x05\xd1\x82\xb5\x87\x90\x7e\xe5\x96\x51\x9d\xce\x8a\x1a\xa6\x96\x07\x01\x82\xd5\x79\xca\xa0\x70\x67\x26\x48\x18\x82\xc0\xfd\x79\xd0\x6d\x95\x90\x1d\x21\x99\x5b\x50\x97\x2b\xa4\x04\xb7\xdd\x0d\x78\xb1\xfb\xdf\x00\xe0\xd6\xad\x5b\xfc\xd6\xad\x5b\x78\xf1\xc5\x17\x01\x00\x5b\xb7\x6e\x65\x8a\x6d\xd0\xcc\x13\x08\x2d\x3e\x4e\x55\x66\x93\x93\x93\x7c\x72\x72\x12\x00\x42\xc4\xa5\x10\x43\x54\x1f\x9b\x32\x48\x1d\xd1\x42\x9d\x53\x10\x97\x73\x12\xb6\x6f\x34\x87\xed\x40\x08\x04\x6e\x56\xff\x2c\x4c\xa0\x13\xf8\x63\xcd\x44\x70\xb3\xb3\xfa\x1b\xd1\xe9\x56\x43\x23\x3b\x22\xca\xa5\x1a\xd7\x4e\x54\x3d\xfe\xe0\x09\x21\xfc\xbe\x3a\x49\xaa\xa8\xea\xa0\xeb\x09\x82\x3b\x1e\x42\x40\x1e\x6a\x90\x76\x94\x97\x10\x5a\x9d\x0e\x90\x5a\xf8\x12\xc2\x77\xef\xc8\x05\x2c\x69\x74\xfb\x2e\x59\xf8\x71\x42\x3d\x70\x43\xb0\xb9\x41\xfe\x37\x9b\x65\x50\x99\xce\x72\x92\x97\x97\x0d\xa7\x18\xb6\x5e\x82\x7a\x7c\x48\xfc\x2d\xd4\xb2\x3d\xf8\x34\x58\x35\xc4\x7c\x29\xe5\x94\xd5\x31\x89\x18\xc7\x3a\xfb\xf3\xe2\xc5\x8b\xea\xbb\x3e\x1f\x51\xf3\xd3\x4c\x5b\x88\xc3\x0f\x5d\x15\x8e\x66\xea\xf1\x36\x24\x80\xc0\xed\x1a\x1b\xe4\x07\x50\x38\xb9\xdf\x03\x0e\x1b\x76\xde\xe0\xf9\x8b\x70\xca\xe6\x5f\x3f\x3d\x58\xa0\x93\x86\x79\x8c\x77\x49\xe7\x0a\x7a\x9c\xaf\x12\xc4\x00\xa3\xdb\x0c\x51\x06\x76\x2b\xc6\x7c\x9d\x01\xae\x32\x86\x5a\x9a\xcd\x00\x14\xb4\xe3\x8d\x87\x94\x98\xea\x62\x9b\x1b\x94\x77\x85\x49\x04\x46\x01\x42\x8a\xbc\x7b\x3f\xae\xda\xb5\xb0\x48\x90\xf3\x21\x09\x8e\x1b\x54\xae\x99\x54\x42\xfd\xd8\xf9\x46\xe6\x72\x92\x97\x6e\x77\x58\x17\x0a\x15\x63\x83\x47\x87\x81\x44\x13\x41\xbd\xc1\xa4\x51\xc0\xf8\xbc\x3c\xb7\xdb\xab\x97\xca\x49\x5e\xf2\xd4\x5d\x0e\x80\x77\x76\x76\x32\xcf\xaf\x5f\x37\xb6\x5d\x5d\x5d\xc8\xe7\xdd\x23\xe4\xde\x56\x09\xde\xdf\xdf\xcf\xc6\xc7\xc7\xf5\x71\x57\xc7\xbc\x11\x2e\x86\x60\xdb\xb7\x6f\x9f\x7a\x58\xc9\xaf\xef\xd6\xad\x5b\xf0\x2e\x4f\x8e\xc3\x91\x28\x02\xf6\x61\x30\x50\x8f\x38\xa1\xcc\x92\x00\x38\x09\x3b\x0a\x91\xeb\x74\x4f\x28\xf3\xab\x24\x10\x08\x86\x43\xd2\x13\x12\x05\x78\x14\x42\x46\xd9\x0a\x71\xe5\xa2\xde\x1b\x95\x6f\x25\x9f\x3f\x36\xde\x36\x75\xbb\x9a\xa5\x29\x9e\x40\x25\xe1\x20\xab\x22\x76\x24\x89\xfb\x3a\xa6\x54\x9b\x14\x3d\x47\x0f\x51\x6b\x3a\x50\xd5\x4d\x52\xe9\xc2\x1f\xf7\x5a\x8a\xa6\x9c\xa4\x7f\x16\x59\x0f\x1c\x80\x25\x20\xca\xe7\xfb\x96\x7e\x39\x3c\x9d\x39\x6a\x3a\x2c\x4b\x9e\x24\xf7\x17\x4d\xa5\x4b\x58\x04\x76\x63\x60\x4b\x08\xd8\x09\x51\x79\xa7\xaf\xfc\x32\x08\x65\x08\xf7\x0e\x2d\x05\x17\x42\xf3\x75\xf0\xe0\x41\xb6\x7d\xfb\x76\x18\x86\x81\x44\x22\x01\x04\xf6\x17\x38\xe7\xbc\x56\xab\x61\x7c\x7c\x1c\x3f\xff\xf9\xcf\x61\x18\x06\xbc\xcb\xe9\x18\x1a\x33\x25\x6e\x18\x06\x1b\x1a\x1a\xc2\xde\xbd\x7b\x51\x28\x14\x02\x75\x30\x6c\xa3\xf0\xf5\xeb\xd7\xe3\xe0\xc1\x83\xb8\x76\xed\x1a\x4e\x9d\x3a\x85\xc5\xc5\x45\x1d\x97\x74\x9b\x22\xd4\x76\xd4\x47\x17\xeb\xf5\x51\x80\xdb\x09\x61\x05\x1e\x3f\xa1\xcc\x94\xe7\x1f\x21\xc5\x08\x57\x83\xf2\x6e\x3a\x94\x83\xbf\xc2\x1b\xe2\xbc\x51\x56\xbf\x0a\x04\x22\xe2\xe2\xde\x1b\xc5\xc5\xb5\x83\x88\x77\x00\xe0\xf3\xf3\xf3\xb2\xaf\x1c\x80\x5d\x4b\xb3\xd9\x5a\x86\x4d\x24\x16\xf9\x46\x1d\x49\x43\xcf\x00\x94\x7d\x1c\x52\x11\x57\x8d\xe1\xc0\xf6\x50\xa5\x86\x46\x2c\xfa\x66\x3f\x52\x2a\x10\x20\x2c\xe7\x13\xd7\x04\x0b\x1d\xce\xe7\x00\x50\x2a\x95\x90\xcb\xe5\x38\xdc\x83\x58\xa5\xdb\xf9\xea\x3b\x97\x7a\xca\xbf\xba\x6f\xa2\xed\x38\x79\x5e\x31\xdf\x0e\xf2\x43\x98\x18\xbc\x0e\xe0\xda\xaa\xca\x9b\xa3\x9d\x95\xb3\x70\xef\xe0\xb5\x00\xf0\xb9\xb9\x39\x14\x8b\x45\x7f\xac\x0f\x1d\x3a\xc4\x36\x6f\xde\x8c\x4c\x26\x23\x11\xcc\xfd\x13\x60\xfe\xe6\x0d\x22\x9e\x4a\xa5\xec\xa1\xa1\x21\x7e\xe2\xc4\x09\xcc\xcd\xcd\xe1\xd9\x67\x9f\x65\xb3\xb3\xb3\x0d\x99\xd5\xaa\x55\xab\xd8\x43\x0f\x3d\xa4\x7e\xce\xcd\x80\xeb\xf5\x34\x0c\x4e\x06\x13\x04\x87\x09\xce\x09\x36\x08\xb6\x61\x18\xf6\x96\x2d\x5b\xec\x0d\x1b\x36\xf0\x8b\x17\x2f\xb2\x93\x27\x4f\xca\xba\xa2\xf0\x2a\xf4\x1e\xbb\x75\x03\x61\x2a\xe2\xcb\x49\x5e\x92\xba\x81\xd0\xb0\xc0\x5f\x8b\xd0\x3c\x2d\xfe\x74\x0a\x40\x90\x80\xe9\xb0\xac\xc1\xc9\xb0\x13\xa2\xa1\xed\x12\xd1\x27\x35\x5f\x9c\xc1\x15\xd7\xf7\xa6\xae\xb6\x06\x03\xc5\xde\x7c\xf3\x4d\xee\x9d\x4a\xb3\x01\x58\x3c\x81\x52\xa9\x2b\xf1\x4e\xaa\xc4\x37\xd6\x5d\x58\xa8\x22\xab\x77\x0e\xc2\xf7\x40\xf9\x36\x01\xf9\x59\x49\x25\x18\x9d\xb8\xfc\x21\xd4\xea\xf0\x2c\x62\xe1\xae\x8e\xda\x8b\xdd\x89\x73\x08\xf6\xfa\xf3\x6a\xb5\x8a\x6c\x36\xcb\xbe\xfa\xd5\xaf\xf2\x13\x27\x4e\x70\xb8\x3e\xfb\x79\xce\x30\xf5\xd2\xc6\x85\x7f\xf1\x77\x8c\x86\x16\x12\x3d\x4b\x8f\x82\xb5\x09\x69\x49\x4c\xb4\x5b\x57\x5e\xd8\x34\xf7\x0d\x3b\x21\xc6\xe1\x2e\xa8\x59\x00\xf8\xe8\xe8\xa8\x7f\xec\xf7\x53\x9f\xfa\x14\xeb\xe9\xe9\x91\x44\x60\x92\x40\xba\x63\xd9\xc8\x77\x2f\x25\x07\xdb\xab\x89\xbe\x04\x27\x73\xc9\x74\xa6\xe7\xb2\xf6\xf8\x4c\x5b\x6d\xaa\xe6\xdd\xbb\xda\xd9\xd9\x69\x7f\xfa\xd3\x9f\xe6\xa7\x4e\x9d\x62\xa7\x4e\x9d\x52\xe7\x58\xce\x09\xef\xe9\xe9\x61\x8f\x3e\xfa\xa8\xdc\x8f\x65\x02\x48\x77\x54\x8c\xae\xa1\xd9\xcc\xde\x0d\xb3\xe9\x0f\xe6\x2b\xc6\x86\xa4\x43\xb9\xe5\x24\x9f\x9a\xc8\x57\x5f\xbf\xba\x6a\xf9\xe5\x5b\x85\xea\x88\xc3\x50\x36\x4d\xb3\xb2\x6b\xd7\x2e\xde\xd5\xd5\xc5\x7f\xf8\xc3\x1f\xea\x75\x47\xb5\x57\x27\x21\xe2\x02\xaf\x18\xbc\x04\x28\x4c\x4f\xd9\xf7\x2e\x45\xaf\x34\xac\xfd\xaf\xd1\x43\xdd\xcb\x44\x30\x1d\xca\x26\x1d\x32\x6b\x8c\xfb\xfe\x69\x65\x1d\xa2\x6e\x30\x1a\xf4\x47\xb7\x1b\xf4\xb4\x28\xc2\xa9\x83\xa9\x41\x9d\xa1\x60\x59\x16\x92\xc9\x24\x77\x57\x41\xa9\x34\xbf\xda\x78\xbd\x6b\xac\xf6\x61\x38\xc2\x84\xbf\xce\x00\x10\x79\x88\x2a\xdd\xad\x42\xee\xf4\x0c\x0e\xac\x00\x81\x2a\x22\x5d\xb3\x02\x22\xc4\x91\xe5\x86\xbe\x60\x17\xb1\x2f\x52\xfd\x4c\x24\x04\xaa\x59\x36\xb1\xd4\x99\xb8\x88\x60\x41\x8c\xcf\xce\xce\xa2\x5c\x2e\x73\x00\x28\x97\xcb\x3c\x9b\xcd\xca\x05\xb3\xe9\x8a\xe1\x8c\xfc\x74\xdb\xcc\x3f\xbe\xff\x5a\xe1\x33\x9b\xa7\xb3\xfb\x13\x1c\x86\xec\x7f\xb0\xe6\xe1\x36\x6a\x13\xec\x91\x55\xcb\xe7\x5e\xd8\x34\xff\x8d\xb2\xc9\xaf\xc0\xdd\x66\x51\x12\x42\x58\xb6\x6d\x73\x6f\x41\x0e\x9f\xfc\xe4\x27\x25\x31\x98\x10\x48\x77\x2f\x25\x07\xf7\x8f\xb5\xff\xd6\xfa\xd9\xf4\x27\xd3\x36\xdb\xc0\x84\xb7\x52\x0d\x58\xb5\x84\x98\x9e\x6d\xab\xbd\x72\xba\xbf\xf4\x95\xab\xdd\xcb\xa7\x6b\x8c\x97\x88\xa8\xb2\x7f\xff\x7e\x5b\x08\x81\x37\xdf\x7c\xb3\x6e\x7e\x14\x62\x48\x27\x38\xf2\xdb\x27\xda\x8e\x1c\xb8\x99\xff\xd3\x7c\x25\xb1\x9f\x80\xb4\x6b\x4f\x01\xf9\x2a\xd0\x5b\x4a\x7e\x7a\xc7\x44\xdb\xd4\x68\x67\xe5\x9b\x27\x37\x14\xbf\x38\x9d\xab\x8d\x02\x28\x0f\x0c\x0c\xd8\x4f\x3e\xf9\x24\xbe\xf1\x8d\x6f\x44\xa9\xe2\xa1\xf6\xe4\x6e\xd7\x00\x9f\xbd\xdf\x5d\xbb\x76\x91\x69\x9a\x8c\x88\x4c\x10\xf2\x5d\xe5\xe4\x96\xa1\x99\xcc\x61\x26\x37\x0f\xe8\x9a\x91\x27\x66\x03\x37\x23\x05\x1c\xd0\x33\xbc\x39\x09\xe7\xdd\xbe\xf2\x4f\xaa\x49\x31\x01\x60\x59\x08\xe1\xbc\xf2\xca\x2b\x8e\xd7\x87\x28\x62\x10\x5a\x9c\xfc\xad\x33\x55\x50\x8f\xd0\xc2\x8b\x93\x7a\x48\x9c\xad\x24\xf3\x52\x44\x1a\x01\x10\x83\x83\x83\x94\xcf\xe7\x09\x40\x02\x84\x94\x6d\x52\x22\x37\x63\xef\x4a\x55\x44\x8f\x1c\x0c\x52\xce\x40\xa8\xdb\x23\x48\xea\xfb\xe4\x22\x79\x18\xb7\x5d\x10\xe4\x62\x99\x77\x1a\x5f\x59\xd7\x91\x79\x94\x1e\xfa\x3d\x23\xcc\xac\x35\x9f\x59\x58\x6d\xbc\x0c\xa2\x09\x00\x8b\x00\xac\xaf\x7d\xed\x6b\x8e\xcc\xe2\x38\x0e\xad\x5b\xb7\xce\x97\xf2\x44\xe4\xd4\x0c\x61\x8d\x74\x2d\xdf\x98\x69\xab\xcd\x65\x6a\x89\x4c\xca\xa1\x4c\x82\x53\x02\xee\x01\x47\x6e\x25\x45\x75\xb2\xbd\x36\xfa\xca\xd0\xfc\x8f\x5f\x5f\xb7\xf8\xc3\x8a\xc9\x2f\x82\x70\x13\x2e\x41\x2c\x11\x91\x7d\xfa\xf4\x69\x71\xfb\xf6\x6d\xf1\x89\x4f\x7c\x82\xad\x5e\xbd\x5a\x72\xee\xdc\xb6\xa9\xec\xfb\x1f\xbe\xd8\xf5\x37\x03\xc5\xd4\x53\x26\x67\xab\x19\x28\x45\xa0\x04\x04\x31\x46\x94\x34\x38\x75\xe4\x2c\x63\xe7\xd0\x4c\xe6\xb1\xce\x65\x23\x75\xab\x60\x5d\xb0\x13\xee\x35\x96\xfd\xfd\xfd\x7c\x61\x61\x01\xb3\xb3\xb3\xfe\x9c\xfe\xce\xef\xfc\x0e\xf3\x54\xb0\x74\x82\xa3\xeb\xd0\x48\xc7\x53\x87\x47\x3a\xfe\x2a\x53\x4b\x6c\x61\x44\x46\xa0\x8a\xc9\xe1\x26\x4a\x08\xca\x75\x2e\x1b\x07\x87\x66\x33\x07\x26\x73\xd6\xe9\xc5\xb4\xb3\x08\xc0\x49\xa7\xd3\x76\x36\x9b\xa5\xd1\xd1\xd1\x28\xbc\x91\xb8\x22\x12\xea\x8b\xfa\xbb\x79\xf3\x66\x78\xb7\xb3\x25\x85\x10\xb9\x7c\xc5\x18\xda\x3c\x9d\xfd\x20\x03\x31\xdd\xf0\x0a\xa1\x0f\xa0\x1c\x87\x94\x54\x22\xcf\x56\x13\x5d\xe9\x29\x3f\x53\x4a\x39\x63\xc2\xfd\x40\x8a\xcd\x18\x83\xe7\x79\x50\x09\x53\xed\x4f\x14\x32\xab\x04\x22\xc2\xad\x87\xca\xcb\xb2\x3a\x51\xa8\x84\x26\x50\x5f\xb7\x8c\x03\x00\x91\x4c\x26\x69\xdd\xba\x75\x10\x42\x10\x11\x19\x9c\x90\x16\xc6\xff\xd7\xdd\xbb\x06\xd9\x71\xdd\x77\x62\xbf\xff\xe9\xbe\xcf\xb9\x73\xe7\x89\x99\xc1\x00\x98\x19\xbc\x08\x3e\x20\x90\x20\x48\x9a\x14\x29\x93\xa2\x2c\x52\xb2\x2d\x59\x96\x14\x3b\xce\x87\x38\x4e\x45\xae\x24\x9b\x7c\x70\xaa\x92\xad\x64\x3f\x6c\x55\xb6\x52\xa9\xdd\x24\x55\xa9\xad\xda\xa4\xe2\x8a\x2c\x31\x8e\x37\x72\xed\xca\x2b\x4b\x36\x6d\x8b\x22\x25\xe8\x45\x8b\x14\x49\x90\x04\x21\x02\x18\x60\x06\x83\x01\x30\xef\xc7\x9d\x3b\xf7\xd1\xb7\xfb\xfc\xf3\xa1\xfb\x74\x9f\x7b\xe6\xf4\xbd\x77\x40\x38\x65\xa7\xab\x66\x6e\xf7\x79\xff\xcf\xf9\xbf\xcf\x8b\x32\xe5\xd5\xe0\x2c\x31\x39\x6d\xf6\x41\x3c\xf3\xac\xf4\xfd\x84\x38\x74\x77\xab\x52\x4f\x12\xaf\x5d\x6c\xc5\x46\x73\x3b\x5a\x9e\x18\xba\xc4\x76\x6b\xe5\x68\x63\xf1\xa1\xfc\xd7\x82\xac\xb8\x86\x70\x65\xe7\x2e\x33\xfb\x6f\xbf\xfd\x76\x3c\xd8\xab\xab\xab\x3c\x3e\x3e\x4e\xe5\x72\x99\x99\x39\x20\xa2\x16\x33\x7b\x2c\xa8\xb6\x51\xf4\x57\x2e\x8f\xd5\x3e\xb8\x32\x56\xbb\x74\x7d\xb4\x71\xf9\xfa\x68\xe3\xd2\xc5\xc9\xdd\x37\xdf\x3e\xbc\xf3\x83\x0b\x87\x76\x5e\x5d\xeb\xf3\xdf\x0d\x88\xaf\x13\xd1\x2d\x66\x5e\x25\xa2\x2a\x33\x37\x2b\x95\x8a\x7c\xe5\x95\x57\xe4\xf3\xcf\x3f\x2f\xa6\xa6\xa6\x94\x64\x28\x9f\x58\x2b\xfc\xd2\xaf\x5c\x19\xfe\xdf\x0a\xbe\xb8\x0f\xba\x17\x4b\xd7\x04\x23\x49\x44\x4c\xf9\x91\x5a\xe6\x89\xb1\x6a\x76\xf4\xfa\x48\xfd\xad\xc0\x81\x07\x20\x98\x98\x98\x90\x73\x73\x73\xe4\x79\x1e\x7f\xfa\xd3\x9f\x16\xa3\xa3\xa3\x82\x88\xf2\x60\x94\x1f\xb9\x5d\xfa\xf5\x27\x6e\x0c\xfc\x0f\x2e\xd3\x40\x58\x1e\x47\x6a\x27\x62\x24\x8c\x25\x70\xa8\x8d\x4c\x4e\x6d\xe5\x1f\x5e\x1c\x68\xbe\x59\xcb\xc9\x6d\x66\x0e\x46\x46\x46\x82\xe5\xe5\x65\xec\xec\xec\x98\x8c\x56\xe1\x0d\x1c\xad\xbb\x75\x29\x41\xc5\x62\x11\x93\x93\x93\x40\x78\x10\x6f\x5f\x2e\x10\xe3\x0f\x2c\x17\x3f\x2d\x24\xb9\xca\x28\x6b\x5b\xab\x64\x79\x57\xde\x10\x6d\x70\xc5\xcd\xa1\xc6\x4f\xd7\x8a\xad\x59\x22\xaa\x02\x68\x45\xfb\x21\x00\xbb\x84\x20\xe3\xbd\x4d\x8a\x59\x50\xc6\x94\x2c\x3a\x5c\xed\x86\x8f\x01\xaf\x11\xa6\x4b\x22\xb1\xba\xba\x2a\xcf\x9e\x3d\x0b\x21\x04\x01\x10\x44\x94\xf1\x0a\x22\x28\xec\x04\x33\xb9\x1a\x4f\xc6\x3c\x21\x42\x6a\xb6\xf6\x8d\x66\xc4\x2a\xce\x1f\x0f\x68\xf8\xad\x6d\xfe\x81\x76\x14\x47\x9c\x28\x56\xa5\x08\x72\xf9\x68\xf6\x2f\x2a\x63\xee\x8f\x41\x74\x87\x99\x37\x01\x78\x9b\x9b\x9b\xf2\xd2\xa5\x4b\xa4\xc1\xc0\x8b\x8b\x8b\x74\xe4\xc8\x11\x2e\x16\x8b\x12\x40\x10\x19\xc5\x0d\x10\xaa\x4c\xa8\x34\x5c\xb9\xb2\x53\x08\x16\x37\x8b\xfe\xb5\xed\x9c\x7f\xbd\x99\xe5\x79\x26\x2c\x82\x70\x8b\xc2\xb2\xd7\xa3\xb1\x6a\xee\xec\xec\xc8\x97\x5f\x7e\x19\x85\x42\x81\x9e\x79\xe6\x19\x10\x91\x03\xa0\x58\x6e\x38\xd3\x2f\x5e\x1e\xfe\x17\x7d\x9e\x7b\x0a\x51\x1b\xd5\xd3\xb6\x8b\x52\xe7\x0f\x44\xa2\xdc\x70\x1e\x04\x68\x6d\x71\xb0\xf9\x21\x83\x3d\xd7\x75\x83\x72\xb9\xcc\xd5\x6a\x95\x1e\x7f\xfc\x71\x08\x21\x1c\x00\x7d\x03\x0d\xe7\xe8\x0b\x97\x47\xfe\x97\x6c\x20\xc6\x11\x17\xa1\xfa\x92\xd4\xfe\x29\x20\x66\x42\x61\x1b\xb2\x01\x1d\xec\x6f\xba\xf9\x6b\xa3\xf5\x37\x58\xa0\x4e\x44\x72\x6c\x6c\x4c\x5e\xbe\x7c\x99\xa4\x94\xa6\x46\x20\x00\xb0\xae\x66\xd8\x0c\x0d\x44\xee\x46\x59\xcb\x04\xd5\x96\xc3\xd5\x84\x3a\x75\xaa\x54\x83\x1f\x29\x0d\xac\x30\x2c\x72\xe5\x25\x98\x28\x06\xea\xee\x21\x42\x7c\xb1\x86\x88\x6e\x9c\x51\x0d\xb2\x4d\xaa\xa4\x79\x93\xd2\x26\x5a\x74\x2f\x87\x59\xae\xf9\xd8\xe2\x6c\x75\x23\x3a\xaa\xdf\x47\x78\x67\xf2\x56\xe0\x60\xf1\xf6\x7d\xf9\x7f\xe7\xe7\x68\x0b\x0a\x46\x6d\x8d\x57\xc8\xe9\x11\xdb\x09\xc9\xa1\x64\x11\x97\x67\x44\x33\xfc\x50\x73\x79\x9a\x9d\xa1\x14\xfa\x84\x90\xe2\x78\x00\x3b\x23\xce\xa5\xb5\xe9\xec\xab\x20\x52\x37\xb7\x7a\x00\xfc\xe8\x1a\x63\x7d\x2c\x45\xbd\x5e\xc7\x5f\xfe\xe5\x5f\x62\x7d\x7d\x3d\x74\xc1\x32\x57\x11\xaa\x3f\x8b\x00\x66\x89\xe8\x43\x00\x17\x99\xf9\x22\x11\x5d\x04\x70\x09\xc0\x2c\x33\x2f\x30\xf3\x5a\x44\x0c\x5e\xa5\x52\x91\xdf\xf9\xce\x77\xb0\xb3\xb3\x23\xb7\xb7\xb7\x65\xbc\x92\x96\x51\xfe\xd8\x9d\xd2\x6f\x0c\xd4\xdd\x47\x93\xf5\x5b\xac\x44\x01\x42\x2b\x2a\x7c\xd7\x6d\xa8\x08\x29\xdc\x87\xee\xf4\x7d\x65\x78\x37\x73\x82\x88\x8a\x00\xdc\xe9\xe9\x69\xfc\xc6\x6f\xfc\x86\x3a\xcc\x21\xcb\xcc\xe5\x33\xb7\x4b\xbf\x59\x68\x89\x63\xca\x36\x8b\x85\x82\xea\xc7\x98\xe2\x38\xf9\x8d\xe6\x69\x8e\x6c\xe5\x3f\x3f\xb5\x99\x7b\x14\xe1\x3e\x71\x77\x60\x60\x40\xb9\x7a\x75\x97\x6b\x3c\xce\xa9\x13\x21\x6f\xbf\xfd\xb6\x0c\x1b\x1f\xba\x1b\x3d\x97\xab\x4d\x57\x56\xdb\xf6\x90\x6b\xdc\x40\x9f\x58\x4d\x1c\x18\x1c\x73\x05\xd5\xd6\xe1\x5a\x66\x8a\xa2\xf5\x30\x00\x10\x6d\xdc\x4f\xf3\x32\xd9\x8c\xe2\xb4\xb4\x7a\x7c\x37\x27\x81\x99\x56\xcf\x63\x35\xec\xcf\x9f\x3f\x2f\xa5\x94\xca\x8d\x59\x01\xb0\xd6\x2c\x89\x0f\x6f\xdd\x9f\xfb\xb7\x41\x06\x35\x00\xa0\x36\xae\xae\x2d\xd3\x20\x0d\xf1\x63\xbd\x01\x31\x77\x23\x95\x46\x9f\xcd\xa6\x98\x4a\x62\x89\xc1\x00\x9a\x7d\xb4\x74\xeb\xfe\xdc\x9f\xca\x0c\x2d\x20\x44\xec\x1a\x00\x7f\x7d\x7d\x1d\xb3\xb3\xb3\xd6\xfe\xab\xd7\xeb\xf2\x9b\xdf\xfc\xa6\xbc\x7c\xf9\xb2\x6c\xb5\x5a\x6a\x35\x6a\x05\xc0\x1a\x33\x2f\x01\x58\x24\xa2\x45\x00\x8b\xcc\xbc\xc4\xcc\x2b\x44\x54\x21\xa2\x5a\xab\xd5\xf2\x66\x67\x67\xe5\x37\xbe\xf1\x0d\x19\x1d\x23\x8f\xdf\xf9\x9d\xdf\x89\x3d\x4a\xd9\x80\x86\x8f\xad\x17\x7e\x95\x98\x42\xf7\x6a\x64\x07\x29\x9b\x48\xdf\xf1\xa7\x2f\x6f\x54\xfd\x54\xf0\xc5\xe1\xe3\xeb\x85\x67\x01\x14\x29\xb9\x22\x4b\xf5\x7f\x3e\x17\x88\xe1\x23\x9b\xf9\xe7\x48\xdb\x5e\xab\xb4\x4c\xc5\x33\xe2\x2d\x09\xb1\x13\x23\x8c\x60\x10\x1c\x89\xd2\x7d\xab\xc5\x17\xd5\x51\x96\x00\xc4\x0b\x2f\xbc\xa0\xcf\x3d\xb4\x8d\x7f\xaa\xfb\x69\x74\x74\x54\xe7\xbc\xbe\xe7\xc8\x5a\x3d\x23\xb7\x34\x1e\xd8\xf6\x13\x2f\x62\x6b\x53\x62\xb4\xd4\xd1\x0d\xa5\x83\x75\xf7\xb0\x23\xa9\xc8\xcc\xe6\x2c\xb9\x0d\x21\xd1\xe1\xbd\x9b\x27\xca\x04\xb6\x93\xcb\x56\x7f\xd2\xbc\x53\x22\xba\x1d\xd5\x47\xb8\xde\x7e\x83\xc1\xb7\xb7\x0e\xba\x3f\xba\x73\x32\xf7\x17\xec\xc0\x6b\xef\x17\xd6\x46\x5e\x89\x71\x40\xf3\x6b\xb6\x73\x37\x85\x48\xb1\x64\xd0\x46\x3b\x2a\xa3\x95\xa3\xad\x9b\x1f\xcb\xff\xdf\xcd\x92\xb8\x04\x60\x89\x99\x2b\xcc\xe1\x0e\x44\xc3\x43\xa3\xdb\x58\x31\x8c\xe7\xcf\x9f\xc7\xcb\x2f\xbf\xac\x08\xc7\x8b\xf6\x23\xd4\x10\x12\x48\x15\xe1\x92\xea\x9a\xda\x54\x73\xf5\xea\x55\xf9\xb5\xaf\x7d\x4d\xbe\xf6\xda\x6b\x7a\x9f\xa2\xbf\xbf\x1f\x88\x4e\x39\x2f\x37\xdc\xc9\xfe\xa6\x73\x2c\xd6\x3f\x35\x15\x49\x39\x12\x34\x10\x22\x0f\x9c\x8a\x03\xc0\x24\x8e\x6c\xe5\x9e\x44\xc8\xc1\xf5\x89\x5b\x01\x20\xdb\xe7\x39\x13\xe5\xa6\x3b\xa3\xfb\x16\xe2\xed\x05\xea\x9d\xb4\xfa\xb4\x06\x28\x2d\xe5\x40\x35\x7b\xc6\x95\xc9\xd9\xb1\x23\x23\x23\x31\x2c\xc6\x23\x6c\x13\x73\x00\x80\xb5\xb5\x35\xa9\xe9\xc2\xbe\x24\x6e\x6c\x15\xfc\xdb\x93\x95\xdc\x23\xaa\x61\xf1\xf8\xb2\xe6\x59\x81\xae\x37\x72\x24\xfd\x29\x6e\x68\xb9\xe1\x1e\x2e\xb4\x44\xb9\x95\x0b\x2f\x7c\xcc\xe5\x72\x98\x9a\x9a\x12\x0b\x0b\x0b\x7a\xa7\xdb\xe6\x29\xd2\xc2\x3a\xcd\x25\xa4\xce\x2f\x60\x2f\x61\xb4\xa9\x1a\xb6\x72\x5e\x79\xe5\x15\x7d\x07\x57\x05\xc0\x12\x88\xb2\x6b\xd3\x99\xbf\x92\x0e\xf9\x93\x97\x1b\x9f\x77\x5b\x28\x29\xae\xa8\x75\x89\xc6\xc6\x90\xd8\x18\xfa\x7b\x9b\xe3\x83\xda\xbc\x4a\x0c\x46\xa3\xe4\xdc\xbe\x79\x3a\xff\x8d\xda\xa0\x78\x13\x44\xba\x3a\xe3\x2f\x2e\x2e\xe2\xe6\xcd\x9b\x26\x6c\x3a\xdc\x71\x3f\xac\xac\xac\xe0\xb5\xd7\x5e\xc3\x6b\xaf\xbd\x86\x13\x27\x4e\x88\x91\x91\x11\x39\x31\x31\x11\xc3\xba\xba\xba\x8a\x8d\x8d\x0d\x5c\xbe\x7c\x59\xa9\xcb\xd6\xfe\x8b\x66\x9f\xb3\x45\x4f\x4c\x38\x92\x8a\x31\x5d\x43\xa9\x82\x3a\x0c\x1a\x30\xaa\x2b\x62\x05\x1b\x28\x7a\xce\x04\x31\x8a\x4c\xc9\x34\x80\x2a\xbf\xe0\x85\x67\xbb\x86\xf9\xda\x97\xaf\x93\x5a\x2f\x16\x75\x5d\x88\x77\xed\x2a\x3c\xc0\xc8\xb7\xc4\x58\xc6\xa7\xb2\x27\x64\x96\x88\x44\x2e\x97\xb3\xf5\x95\x00\xda\x77\xcc\xd9\x00\x57\x61\x3e\x88\xbc\xf5\xbe\xd6\xa2\x9a\x84\xd3\x1c\x1e\x26\xd3\xd3\x40\xd7\x0c\xc7\xe8\x33\xef\x8b\xe1\xc1\xba\x3b\x51\xc9\xf9\x1f\x22\x34\x50\xc5\xc2\xc2\x82\x5a\xdb\xde\xd5\x4f\xdc\x21\xcc\x44\x60\x1b\xc2\x77\x72\xbd\xda\xea\xd8\x93\xf6\xa7\x3f\xfd\x29\x3e\xf5\xa9\x4f\xf9\x8e\xe3\x78\x08\xf7\x12\xbb\x20\x12\x1b\x87\xdd\x57\x5a\xf9\x42\x65\xf2\x72\xf3\xf3\xf9\x1d\x39\xb9\xa7\x64\x6d\x31\x13\x69\xa3\x98\x38\x20\x0c\xe9\x12\xb1\x51\x29\x48\xee\x1c\x70\x3f\xbc\x75\x7f\xee\xcf\xbc\x22\xbd\x0f\xa2\x79\x84\x7b\x85\x2b\x00\xbc\x7a\xbd\x2e\x5f\x79\xe5\x15\xf3\x6c\x5c\x5b\xdb\xf7\x10\xff\xec\xec\xac\x9c\x9d\x9d\xb5\x79\xef\xd4\xbb\x59\x5e\x5c\x4e\x34\x8f\xe4\x22\xe4\xea\x86\xd2\x10\x21\x24\x25\x5c\x1a\x0a\x64\xc5\x27\xda\x96\x40\xb3\x4b\x8c\x6c\x44\x10\x40\x84\x17\xcc\x2c\x3c\x97\xa5\xa4\xb8\xce\x36\x29\x64\x28\x22\x51\x97\x25\x1f\xaa\x9e\x96\xc3\x9e\x14\xf1\x92\x75\x91\xcd\x66\xd3\xfa\x64\x8f\xe1\x19\x8b\x58\xc7\x71\xc4\xfa\xfa\xba\xca\xe4\x03\x68\x6c\x14\x5a\xb7\x24\xc1\x57\x2a\x50\x64\x5e\x47\xf4\x11\xad\xe8\x54\x36\xa1\xc6\xf1\x62\x5d\x0f\x80\x60\xca\x8f\xef\x64\x4f\x51\x78\x50\x96\x0b\x00\x91\x4e\x67\xb6\xc7\xd6\xbe\x6e\xef\x6d\xc0\x69\xf1\x9d\x54\x24\x05\xe3\x9e\x3e\xd0\xc2\xd5\x23\xe6\xe7\xe7\x65\x74\x69\x89\xda\x12\xb9\xc1\xcc\x8b\x20\x9a\xdd\x19\x75\x7f\x74\xed\xf1\xc2\xff\xbe\x3a\x93\xf9\xa1\x9f\x41\x8d\xdb\xb8\x7e\xdc\x51\x88\x95\xcc\x3d\x87\x7a\x45\x3c\x8d\x01\x06\xa1\x59\xa4\xb5\x5b\x0f\xe6\xbe\x75\xe3\xe1\xfc\x57\xbd\x3e\xf1\x56\x44\x0c\x4b\xcc\xbc\x05\xa0\xd1\x6c\x36\xe5\x77\xbf\xfb\x5d\xfd\x22\x74\xb3\x0f\x6c\x0e\x07\x9b\x9d\x21\xba\xe4\xd1\xbf\xf5\xf6\x8a\x66\x46\x36\xf4\xb3\x5d\xf5\x95\xb8\x60\x05\x8b\x32\x76\x55\xa2\x28\x2c\x0a\xae\x65\x64\x45\x1d\xbb\xad\xaf\x84\x26\x22\xd4\x33\x41\xad\xe9\xca\x8a\x72\xce\x28\xf3\x2b\xb1\x4d\x6c\xfd\xc7\x91\x6a\x05\x30\x31\x6e\x0e\x35\x2e\x36\x5c\xa9\xb6\xb9\x4a\x63\x95\x75\x9b\x7a\xa9\x28\x72\x8f\x7a\x10\x04\x81\x6c\x34\x1a\x22\x5a\xdd\xe8\x03\xf0\xb6\x0b\xfe\x52\xcb\xe1\x9a\xe3\x53\x19\xa0\x36\x97\x61\x0c\x24\xc5\x0e\xc6\xb8\xc0\x84\x37\x86\x8d\x9d\xa8\x64\x4f\x93\x44\x5e\x52\xb8\xcb\x6b\x68\x68\x28\xcd\x10\xb6\x49\x8c\x4e\xef\x36\xee\xdf\xed\x3b\x4d\x9a\xa4\xd6\x27\x84\x10\xb3\xb3\xb3\xf2\xc4\x89\x13\x3e\x42\xbd\x3b\x92\xa2\xf0\xfc\xac\xa8\xde\xbe\x3f\xb7\xb6\x7e\x38\xf3\xf3\x91\x5b\xad\x27\xca\xcb\xfe\xfd\xd9\x06\x0f\x92\x84\x6b\x1e\xdc\xd5\x7e\x86\x4d\xa8\x54\x07\x0e\xbc\x46\xc9\x59\xd9\x9c\xcc\x5c\xd8\x3a\xe8\xbe\xe9\x67\x69\x01\x44\xb7\x01\x2c\x21\x34\x82\xab\x44\xd4\xf0\x3c\xcf\xff\xab\xbf\xfa\x2b\xac\xac\xac\x98\x6d\xee\x64\x63\xd9\x90\xdc\xb4\x37\x3a\x32\x8f\x73\xe7\xce\xc5\x79\x89\xc8\xdf\xca\x07\x6d\x67\xbb\xc6\xea\x1f\x25\x26\x34\xa3\x9d\xf0\xa1\x9d\xdc\x27\xc1\xf2\xf2\x58\xed\x0d\x84\x4c\x57\x2d\x20\x55\xe3\xe1\xd7\xb2\xb2\x72\xa7\xec\x5d\x29\x37\x9d\xc3\xba\x81\x92\x08\x5c\xad\x3f\xd5\xea\x88\x58\x4a\x30\x02\x82\x7f\x63\xa8\x71\x11\xd1\xc5\x9e\x00\xb0\xbb\xbb\x0b\x21\x84\x88\x9c\x24\x6d\x7d\xd5\xe9\xbc\x7c\x71\xe3\xc6\x0d\x1c\x3e\x7c\x58\xe9\x92\xde\x6e\x36\xd8\xd8\xcd\x06\x6b\xb9\x88\x20\xda\xf4\xc3\xa8\x81\xca\x93\x62\xaa\x91\x89\xa1\x45\x38\xb0\x9b\xbd\xbf\xd8\x12\xc3\xbb\x39\xb9\xc4\xcc\xf1\x2d\x9d\x68\x47\x4e\x9b\x1e\x6f\x0e\x20\xb0\x17\x91\xd3\x7e\xf5\x72\xf4\xc7\x56\xa6\xfe\xec\x29\x47\x4a\x29\xcf\x9f\x3f\x2f\x88\x48\x1e\x3b\x76\x2c\xde\x27\xce\xe1\x11\x9d\x55\x22\xaa\x34\xfb\x9d\xb5\xdb\xa7\xc4\xd5\x95\xa3\xd9\x43\xc5\x6d\x39\xd3\xb7\x19\xcc\x14\xb7\x83\x89\x6c\x5d\x0e\x0a\x1f\x79\x62\x76\x01\x92\x2c\xc8\xf7\x33\xa2\xe1\x15\xc5\xda\xee\x90\x58\xdc\x1d\x72\xe7\xeb\xfd\xe2\x86\x74\x68\x05\xe1\x71\x2a\xea\x74\x8a\x2d\x84\xc4\xe7\x79\x9e\xe7\x7f\xfd\xeb\x5f\xef\xe6\x50\xe8\xf6\xec\x97\x71\x00\x80\x7c\xeb\xad\xb7\x70\xee\xdc\x39\x15\xef\x37\x5d\x59\x99\x1f\xae\x5f\x78\xf8\x76\x69\x2a\xf6\x3a\xb6\xd1\x7d\xc2\x38\x15\x63\xd6\xe7\x29\x76\x73\xc1\xda\x8d\xe1\xc6\xfb\xd0\x2e\xcf\x89\xd2\x84\x86\x3f\xa1\x76\x69\x62\xf7\xc7\xc7\xd7\x0b\xcf\xb8\x01\xb2\xb1\x57\x29\x2c\x3a\x46\xb0\xc4\xd3\xa4\xd5\x45\x84\xb5\x3e\xef\xfa\xcd\xc1\xc6\x2f\x18\x5c\x23\x84\x0b\x13\xa5\x94\x48\x68\xa1\x7d\xdc\x6d\x87\x1d\xc7\x8f\x3a\xd0\x49\x49\x08\xcf\xe5\xca\x6a\xc9\x9b\x1f\xae\xb9\xc7\xe2\xd9\x56\x06\x92\x73\x4c\x09\xb1\xac\x22\xcd\xbc\x69\xb3\xc0\x81\xbe\xa6\x33\x39\xba\x9b\x3d\xb6\x9b\xad\xcf\x46\x6d\xf0\xcf\x9c\x39\x83\xf7\xde\x7b\xcf\x1c\x80\x5e\xf4\x7d\x93\x88\xcc\xfc\x69\x79\x3b\x11\x98\xfe\x6e\x1a\xdb\x00\x42\x09\xfa\xea\xab\xaf\x62\x75\x75\x55\x3c\xf6\xd8\x63\xbe\xeb\xba\xb5\xa8\x9f\x1a\x08\x3d\x36\x6b\x20\x1a\xf4\x73\xb4\x58\x19\x13\x97\x2b\x63\x6e\x09\x8c\x22\x31\xe7\x85\x8f\x02\xc9\xf0\x7e\x3f\x76\xc8\x0b\x5c\xd4\xd1\xee\xed\xd9\xd2\xfe\x2a\x51\x78\x03\xd1\xa6\xfc\x97\x5e\x7a\x29\x8d\xd3\xeb\xfd\xa2\xf7\x4d\xa7\x38\xdb\x3b\x2c\xe9\x01\xec\x39\xdb\xb5\x01\x42\xf5\xbd\xc9\xea\xf7\x8f\xaf\x17\x3e\x5e\x6a\xb8\xa3\x8a\x1a\xda\x6d\xc9\xf0\x89\xe7\x28\x34\xd9\xf1\xde\xc1\xea\xf7\x76\x72\xc1\xed\x08\xee\xb6\x13\xc0\x11\xae\xcf\xaa\x2c\x0c\x35\xde\xfd\x70\x6c\xf7\xc7\x0f\x2e\xf5\x3d\x2f\x94\xdb\x55\xa9\xe7\x7b\x6c\xaf\xa4\x56\xcf\x91\xb5\x9f\x4d\x57\xfe\xa2\x99\xe1\x25\x42\x38\x9f\x02\x40\x5e\xb9\x72\x45\x87\xad\x0d\x76\xb5\x74\x43\x77\x8c\xa9\x48\x26\x22\xba\xff\xfe\xfb\x95\x01\x95\x65\x70\x69\xa0\xe1\x4e\x4f\x6f\xe6\x1f\x0d\x0f\x0e\xd0\xcf\x1b\xd5\x36\xae\x53\xe2\x05\x50\x9e\x95\xb8\x74\x02\x04\xe0\x56\x73\xc1\xcd\x9b\x43\xcd\x0b\x44\xb4\x0b\xc0\xab\xd5\x6a\x3c\x3f\x3f\xaf\x0f\x80\xde\x16\x68\x6d\xe4\x08\x08\x36\xc2\xf7\xb4\xdf\x80\x0d\xc6\xb7\xe1\x0c\x8c\xff\x54\x07\x99\xf9\x48\x0b\x8f\xc9\x7b\x79\x79\x99\xd7\xd7\xd7\x69\x68\x68\x48\xcd\x06\xb7\x90\x9c\x3c\xb1\x8b\x10\xa1\x37\x01\x6c\x80\xb0\x01\xa2\x55\x76\x68\x49\xba\x74\x5b\xba\x74\x8b\x1d\xba\x0d\xa2\x5b\x00\x6e\x01\xb8\x1d\xfd\x2d\x23\x94\x0a\x9b\x08\x97\x64\x34\x99\xb9\xb5\xb8\xb8\xc8\x2f\xbf\xfc\x32\x5a\xad\x96\xad\x9d\x26\xac\x66\x9f\x75\xea\x07\x5b\x9c\x82\x51\xef\x6b\x78\x9e\xc7\x13\x13\x13\x6a\x6d\x97\x00\x90\xa9\x67\x24\x3c\x97\x31\xbd\x95\x3b\x2d\x58\x38\xaa\x53\xe3\x27\x51\xfa\xdb\x66\xf0\x6f\x0e\x36\x2f\xfe\xf8\xd8\xd6\xbf\x0e\x1c\xcc\x03\x58\x8d\xfa\x4b\xdf\xd7\xc1\x08\xd7\x8f\xb9\x77\xca\xde\xd6\x68\x2d\x73\x78\xa0\xee\x8e\x13\xa2\x72\xda\xd4\xcf\xe4\x3f\x33\x10\x38\xec\xfd\x6c\xba\xf2\x17\xbf\x18\xdf\xfd\x2e\xc2\xb5\x58\x1b\x08\x4f\xef\xf3\x5f\x7e\xf9\x65\x1b\x5e\x01\x08\xd7\x32\x29\x80\x75\x6e\x42\x00\xa8\x5e\xaf\xe3\x91\x47\x1e\x81\x10\x82\x98\x39\x4b\x44\x7d\x04\x0c\x3c\xb0\xdc\xf7\x49\x42\xb8\xce\x3d\xf2\x95\x44\x9e\xa4\x58\x26\x42\xa7\x56\xcd\xe1\x06\x35\x41\x93\xf3\x45\xe6\xe2\xc1\xea\x5f\x73\x78\xd7\x5c\x33\x97\xcb\xc9\xf7\xdf\x7f\x5f\x35\x4e\x71\x21\xdd\x99\x10\xb7\x4b\x03\x44\x0f\x33\xc8\x6e\x0f\x72\xe8\x70\x9a\x08\x60\x23\x30\x33\x9d\x5e\x8f\xd4\xe3\xb7\xb7\xb7\x79\x7e\x7e\x9e\x5a\xad\x16\x0f\x0f\x0f\x4b\xd7\x75\x03\x84\x84\xd1\x44\x42\x18\x3b\x50\x84\x11\xfe\xad\x03\xf1\x09\x73\x6b\xd1\x12\x89\x75\x66\xde\xa4\xf0\xdc\xdb\x5d\x84\x52\xa1\xb5\xbb\xbb\x2b\x5f\x7a\xe9\x25\x39\x3b\x3b\x4b\x9a\x01\xdd\xd6\x06\x4b\x7b\x6d\x30\xdb\xd2\xa4\xa5\xb5\x31\x1c\x00\xc0\xd5\xab\x57\xf9\xdc\xb9\x73\x11\xcf\x63\x22\x22\x67\xad\xd4\xaa\x78\x0e\x63\xa2\x92\x3b\xea\x4a\x64\x58\x5b\xde\x63\x2e\xed\x61\x00\x37\x86\x1a\x17\xbf\x77\x6a\xf3\xa5\x7a\xb8\x78\xf0\x0e\x42\x69\xd8\xac\x54\x2a\xfc\xd2\x4b\x2f\xc9\x33\x67\xce\xa8\x0d\x46\x00\x40\xbe\xc3\xf2\xc6\x50\x63\x31\x23\xa9\x38\xb2\x9b\x39\x18\x9e\x1f\xab\xf4\x23\x24\x2a\x3b\x01\xbb\x39\x7f\xeb\x27\x47\xb7\xbf\xf3\xee\xa1\xea\x5f\x4a\xe2\x05\x22\x5a\x62\xe6\x0a\x11\x79\x97\x2f\x5f\xe6\x85\x85\x85\xb4\x3e\x68\xbb\xa7\xda\xe4\x94\x04\x40\x96\x4a\x25\x3a\x70\xe0\x00\x00\x38\x44\x94\x6f\xba\x32\xff\xe0\x52\xdf\x2f\xe7\x02\x51\x62\x84\xcb\x90\x95\x4f\x3d\x9e\x91\x8c\x15\xbc\x44\x4a\xc4\x4b\xc1\xa3\xf4\x39\x5f\x0c\xde\x18\x6e\x9c\xaf\xe6\x82\x25\x00\x8d\x4c\x26\xa3\x16\xa6\xe9\x9c\x4f\x1f\x6c\x89\x04\x19\x55\x3a\x18\x69\x75\x4e\x6e\x0e\xb6\x0a\x33\x89\xcc\xc6\x59\x6d\xaa\x9a\x5e\x37\xcc\x3c\xbe\xef\xf3\x9d\x3b\x77\xe8\xdd\x77\xdf\x95\x8e\xe3\x20\x97\xcb\xc9\x42\xa1\xe0\x23\x39\x87\xa8\xc1\xcc\x75\x22\xaa\x31\xf3\x2e\x11\xed\x20\x5c\x4e\xbd\x1b\xcd\x27\xec\x12\x51\x1d\x40\x33\x5a\x84\xe7\x6f\x6c\x6c\xf0\xbb\xef\xbe\x8b\x57\x5f\x7d\xd5\xb4\x85\x6c\xc4\xab\xab\x00\x0c\x3b\xcc\x7a\x9b\xd3\x18\x43\x9a\x8a\xda\x46\x30\x0f\x3c\xf0\x00\x65\x32\x19\x89\x50\x93\x90\x0c\xe6\x95\x72\x6b\xed\xd6\x60\xf3\x76\x5f\xcb\x29\x17\x5a\x4e\xbf\xd3\x76\x96\x17\x10\x10\xfc\xed\x82\xbf\xf6\xf3\xa9\x9d\x57\x7e\x7a\x6c\xfb\x9b\xf5\x8c\xbc\x0c\xc2\x2d\x84\x0c\xa1\x2e\xa5\xf4\xff\xf8\x8f\xff\x58\x02\x10\xad\x56\x0b\x47\x8e\x1c\x91\x44\xf1\xa1\x76\x81\xef\xb0\x77\x63\xa8\xb1\x70\x73\xa8\xb9\x08\x00\x6e\x20\x72\x82\x49\x30\xb1\x6c\xba\xb2\xbe\x55\xf0\xd7\x2e\x4d\xec\xbe\xf5\x83\x93\x5b\xff\x76\x61\xa8\xf9\x3a\x08\x37\x28\x94\xbe\x5b\x00\x1a\x52\xca\xe0\x5b\xdf\xfa\x96\xc9\x48\x14\x6c\x84\x90\x9e\xba\x1b\xa3\xbf\xff\xfb\xbf\xef\x22\xbc\x87\x60\x0c\xc0\x7d\xbf\xf6\xc1\xc8\x3f\x39\xb1\x56\x78\x26\xd9\x3e\x6a\x2c\x66\xdb\xa3\x3d\x26\x98\xaa\xde\x18\x8c\x37\xa7\x76\xfe\xd7\x9f\xce\x6c\xff\x1f\x20\x2c\x31\x73\x75\x69\x69\x49\x7e\xe7\x3b\xdf\x49\xf3\xf6\xa4\xe9\xbc\x7a\x3c\x2c\x79\xf4\xb0\xb4\x7c\x69\x86\x79\xb7\xb0\x4e\x75\xe3\xe8\xd1\xa3\x62\x72\x72\x12\x33\x33\x33\xc8\xe5\x72\x70\x1c\x47\xa9\x9f\xe6\x23\x99\x19\x41\x10\xa0\x5a\xad\x62\x6e\x6e\x0e\x6f\xbe\xf9\x66\x2f\x76\x4e\x27\x7b\xc1\x06\xb7\xcd\x56\x48\xeb\x8f\x4e\x7d\x20\x00\xc8\xe8\x3e\x69\x17\xe1\x85\x86\xc3\x00\x26\xc0\x98\x74\x18\x93\xc3\xb5\xcc\xf1\xf1\x9d\xec\xd4\x40\xdd\x1d\x15\x4c\xa2\xe1\x06\xb5\xd5\x52\x6b\x71\xb9\xdf\xbb\x56\xcf\xc8\x45\x06\xdf\x06\x70\x9b\x88\xd6\x10\x9d\xed\x3a\x37\x37\x27\xbf\xf7\xbd\xef\x49\x00\x82\x88\xf0\xeb\xbf\xfe\xeb\x98\x98\x98\x10\x44\x94\x65\xe6\x12\x11\x0d\x33\xf3\x18\x11\x4d\x80\x31\x9c\xf7\xc5\x68\x9f\x27\x46\x1c\x49\x6e\xd3\x95\x8d\x7a\x46\xae\x7b\x0e\xaf\x81\xb0\x86\xd0\x2b\xb7\xc2\xcc\x5b\x11\x13\xf2\xde\x7a\xeb\x2d\xb5\xe7\xc2\xd6\x7f\x00\x42\xb7\x6b\xa7\x8e\xd7\x3b\x36\x36\x18\x17\x86\x1a\x17\x8f\xaf\x15\x3e\x4e\x40\x74\x59\x88\x9d\x18\xda\x0c\xab\x50\xc0\xc6\x21\x04\xc2\xb1\xb5\xc2\x73\x6f\x1d\xde\xf9\x66\x33\x23\x37\x88\xc8\x1d\x1f\x1f\xf7\x0a\x85\x82\xa8\xd7\xeb\xca\xa8\x32\x07\x49\x6f\x4f\x27\xf7\xa8\x39\x88\xdd\xf2\x99\xc8\xa1\xa7\x93\x46\x9c\x19\x9f\x4a\x28\x73\x73\x73\x72\x6e\x6e\x0e\x3f\xf9\xc9\x4f\x00\x00\xd3\xd3\xd3\xe2\xc6\x8d\x1b\xb6\xbd\xcf\x69\x70\xaa\x30\xfd\xd7\xf6\x9e\xe6\x54\x30\xd3\xea\x8f\xcd\x59\x90\xe6\x44\xb0\x22\xd0\x9b\x6f\xbe\x89\x27\x9e\x78\x42\x6d\x40\x02\x42\xd7\x73\x35\x20\xac\xad\x96\x5a\x0b\xab\xa5\x56\x39\x52\xb5\x05\x42\xfc\x09\xcf\x76\x05\x36\x08\xb4\x11\xbd\xd7\x00\x78\x8d\x46\x23\x26\x06\x20\x64\xb2\xaf\xbd\xf6\x1a\x3e\xf7\xb9\xcf\xc9\x72\xb9\xac\x8e\xaf\x4c\xca\x20\x94\x1b\x19\x59\x6a\x64\x64\x3e\xca\xa3\xf0\xb3\x12\x11\x81\x7e\xb6\xab\xff\xc6\x1b\x6f\x40\x1d\xa4\x9c\xd2\x3f\x12\x48\x96\x7f\x77\x32\x30\xf9\xd8\xb1\x63\x54\x28\x14\x88\xc3\xd3\xe1\x8a\x92\x50\xba\x7f\xb5\xef\x13\xea\xbc\xd7\xf0\xea\x28\xcd\x0f\xbc\x47\x5d\x42\x9b\x1a\xa5\x2a\xcc\xf9\x62\x70\xa5\xdf\x7b\x6b\xb3\xcf\x5f\x60\xe6\x86\x10\x22\xf8\xd9\xcf\x7e\xa6\x36\xb8\xd8\x76\x16\xb9\xd2\x00\x00\x20\x00\x49\x44\x41\x54\x44\x7f\x2c\xda\xb0\x57\xcd\xd1\xf3\x98\x30\x91\x11\x6e\x53\x17\x4c\x11\xaa\x97\xa1\xd7\x9b\xa6\x63\xa7\xa9\x2d\xf1\xef\xf6\xf6\x76\xaa\xee\x6a\x94\xa5\x1e\xa5\xa6\xe9\xea\x9a\xe9\x2c\xe8\x64\xfc\xeb\xb0\xd9\x88\xad\x93\x13\xc1\x56\x8f\x82\x87\x00\xf0\xd2\xd2\x12\x31\x33\x26\x26\x26\x24\x11\x05\x08\x55\xc3\x3a\x42\xe4\xdd\x61\xe6\x0d\x22\x5a\x45\xc8\xa9\xef\x50\xb8\x91\x69\x19\xa1\x01\xad\xbc\x67\xad\x9d\x9d\x1d\xf9\x27\x7f\xf2\x27\xba\x3a\x48\x00\x64\xab\xd5\xe2\x8b\x17\x2f\xf2\xf4\xf4\x34\xfa\xfa\xfa\x24\x33\xb7\xa2\x95\xbd\xaa\x8e\x2d\x00\xeb\xd1\x32\x96\x55\x44\xf6\x98\x22\x06\x44\x6a\xd2\x9b\x6f\xbe\x89\x77\xdf\x7d\x57\xda\x60\x40\xbb\x8a\xcd\xb1\xd5\x62\xe9\xdc\xf8\xfb\xd0\xa1\x43\x34\x34\x34\x84\x48\x3c\xe6\x3c\x87\xf3\x33\x1b\xf9\x47\xfa\x9b\xee\xd8\x9e\xcd\xef\xd1\x84\x4c\xbc\x9e\x27\x2a\x45\x9f\x47\xd1\x9c\x4f\xae\xc3\xd4\xbc\x72\xa0\xfe\x7a\x24\xd6\x5a\xc7\x8f\x1f\xe7\x4b\x97\x2e\xd9\x06\xc2\x1c\x68\x1d\x49\xd5\xb7\x89\x90\xfa\xe0\x9a\x70\xa5\x19\xa4\x26\x82\xd8\xbc\x39\xe6\x93\x26\x25\xd2\xf2\x74\xaa\xdb\x06\x4f\x37\x43\xd8\xd6\x0e\x33\x4d\x9a\xf1\xdd\x8d\xb1\xd8\xca\x8e\x09\xe9\xce\x9d\x3b\xdc\x6a\xb5\x68\x74\x74\x54\x66\x32\x19\x45\x14\x1e\x42\x9b\x68\x07\xc0\x36\xc2\xcb\x4a\x94\x1b\x79\x07\xa1\xc3\xc0\x03\xd0\xba\x71\xe3\x06\x47\x7a\x7d\x2a\x0c\xbf\xf8\xc5\x2f\x88\x88\xf8\xc0\x81\x03\xd2\x71\x1c\x55\x47\xec\xb0\x88\x3c\x95\xaa\xdc\x5a\x14\xe7\xd7\xeb\x75\xf9\xf5\xaf\x7f\x5d\x2e\x2d\x2d\xa5\xf5\xe9\x1e\x9c\x31\xbd\x4c\x26\x17\x14\x08\x8d\x26\x3a\x76\xec\x18\x47\x1e\x85\x8c\x24\xf4\x15\x5b\x62\xe2\xc8\x56\xee\x4c\x48\x00\xd1\x2e\x2f\xe8\x13\x70\x40\xec\x05\x88\xdc\xb3\x9a\x97\x2c\x8a\x27\x14\x3d\x67\xf4\xc6\x50\xe3\x87\xb5\x9c\x5c\x25\x22\x2f\x9f\xcf\xeb\xc6\xb5\x8e\x50\x36\xe4\x4f\xf3\xfc\xec\x81\xc1\xe8\x70\xd3\xf0\xd6\xa5\x48\x1a\x91\xc5\x9d\x66\xbc\x9b\xd2\x24\xad\x6e\x55\xaf\xe9\x25\xd3\xeb\x4f\x73\x07\xa6\x3d\xbd\x10\x83\xcd\x39\xd0\x8d\x40\x6d\x86\xb5\x4d\x7a\x31\x00\xac\xac\xac\xf0\x7b\xef\xbd\xc7\x03\x03\x03\x28\x97\xcb\x52\x08\xa1\x13\x46\x03\x21\x47\x6f\xa8\x30\x0e\x2f\xca\x91\xe7\xcf\x9f\xc7\x3b\xef\xbc\xd3\x91\x18\x54\xd8\xed\xdb\xb7\xf9\xc2\x85\x0b\xec\xba\xae\xee\xb0\x50\xde\x3c\x2f\xfa\xf5\x01\xf8\x6b\x6b\x6b\xf2\xd2\xa5\x4b\xfc\x37\x7f\xf3\x37\x36\x89\x98\xd6\x17\xac\x02\x3a\x3d\xba\x61\x2d\x22\x7d\xb0\x0c\x60\x66\x6c\x27\xf3\xcb\xff\xde\x85\xb1\x7f\x96\x09\x44\x1e\x1a\xd7\x67\xad\x5a\xa5\x25\x59\x6d\x0b\x4e\xe2\xde\x3e\xbc\xf3\x2f\x7f\x74\x6c\xfb\x5f\x81\xb0\x04\xa0\x36\x37\x37\x27\x5f\x79\xe5\x15\x60\x2f\xd7\xed\x66\x4c\xf7\x6a\x6c\x03\x7b\xb9\x43\x9a\x5d\x60\x4b\xdf\x4b\x19\xbd\xe4\x49\x0b\x4b\x43\xca\x6e\x75\xef\x27\x7f\xb7\x7c\x77\x5b\x06\x00\xe0\xb9\xe7\x9e\x13\x33\x33\x33\x6d\x61\xcb\xcb\xcb\xd8\xd8\xd8\x50\x27\x86\x77\xab\xaf\xa7\xfa\x9f\x7a\xea\x29\xa1\x5f\x21\x3c\x3c\x3c\xac\x1f\x6b\xb3\x6f\x18\xd2\xce\x65\x52\x4f\x3c\xc0\x4b\x4b\x4b\x88\x96\x09\x7b\xcc\x5c\xdb\x28\xfa\x0b\x6b\x7d\xad\xeb\x07\x77\x72\x0f\x26\x6b\x98\x80\x88\xf5\xc7\x4f\x88\xf7\xed\xa7\x4d\xab\x17\xb5\xe8\xeb\xbe\x95\xe2\xaf\x5e\x38\x54\xfd\x77\x3b\xf9\xa0\x02\xc0\x3b\x72\xe4\x88\x37\x32\x32\x82\xf5\xf5\x75\xd3\x60\xb4\x21\x1f\xb0\xb7\x23\x91\x92\x47\x7f\x6c\x1d\xd5\x09\xa1\x3b\xc5\xf5\x8a\x58\x66\xbb\xd3\x1e\x13\x36\xdb\xc0\xda\x1c\x0a\x66\x7f\x74\x22\x70\xb3\x8c\x5e\xda\x66\xeb\x77\x6b\xf9\x3f\xf8\xc1\x0f\xee\x0a\x86\xbe\xbe\x3e\x31\x3c\x3c\x8c\x9b\x37\x6f\xf6\x04\x83\x71\x9f\xb6\x22\x86\xbb\x86\x21\xed\xb0\x63\x95\x31\x6e\xe8\x8d\x1b\x37\x30\x31\x31\x21\x39\x3c\xea\xbc\xea\x0b\xde\xb8\x7a\xa0\xfe\xf3\x89\x9d\xec\x83\xca\x6f\xa4\xaf\x31\x51\x7a\x8b\x3e\x5b\x06\x24\x12\x44\x3f\x39\xae\xe4\x39\xc7\x1e\x58\xee\xfb\xd4\x1b\x53\x95\x45\x06\xd7\x5c\xd7\xf5\xcf\x9e\x3d\xab\xbc\x0e\xd0\xda\xa1\x13\x88\x1e\xbe\xa7\xbd\x5d\xde\x3b\x3d\x69\x75\x76\xe2\x36\xbd\xd6\x29\x2d\xe1\x69\xc4\x94\x36\xb0\xdd\xda\x21\x3a\x7c\x77\xab\xcf\xd6\xe6\xb4\xa7\x13\x9c\xfb\x82\xe1\xcc\x99\x33\xe2\xd8\xb1\x63\x28\x95\x4a\x70\x5d\x17\xd9\x6c\x16\xf5\x7a\x5d\x30\x33\x9a\xcd\x26\xe6\xe6\xe6\xc4\xa5\x4b\x97\x50\xab\xd5\xac\xf9\xef\x25\x0c\xfa\xc4\x9c\x59\x49\x9b\x2e\xbe\xbc\xbc\xcc\x0f\x3f\xfc\x30\x1c\xc7\x21\x00\x2e\x08\xf9\x46\x46\x3a\xf7\xad\x14\x9f\x76\xa5\xc8\x11\x90\xec\x1c\x8c\x08\x43\xdb\x02\x80\x98\x0a\xa2\xf0\xf8\xf0\xbf\x50\x73\xa3\x72\xd3\x1d\xbb\x36\x5a\x3f\xdf\x74\xe5\x16\x11\xb5\x86\x86\x86\x82\xf9\xf9\x79\xaa\xd7\xeb\xba\x7d\x03\xad\x4d\xba\xdd\x60\x33\xb8\xbb\x19\xce\xfa\x3b\x3a\xa4\x37\xbd\x5a\x66\xdd\x69\x76\x8a\xad\x2d\x36\x1b\x4d\x87\xc1\x84\xc9\x1c\x07\x5b\xbd\x66\x99\xa6\x0d\x04\xb4\x8f\x2b\x19\x79\x6c\x61\x64\x09\xe3\x94\x3c\xb6\xbf\xae\x30\x64\x32\x19\x21\xa5\xe4\xaf\x7c\xe5\x2b\xe2\xc8\x91\x23\xa2\xaf\xaf\xcf\xc9\x64\x32\xc2\x71\x1c\x17\x80\x93\xc9\x64\x9c\x4c\x26\x43\x85\x42\x41\x1c\x3c\x78\x10\xa7\x4e\x9d\xe2\x62\xb1\x48\x8b\x8b\x8b\x6c\x69\xdb\x3d\x83\x41\xf7\x32\xd9\x8c\x41\x7d\xc0\xf8\xe8\xd1\xa3\x54\x2c\x16\x55\x78\xa6\xe9\xca\xdc\xc4\x4e\xf6\xc4\x48\x2d\x73\x44\x2b\x27\xde\x09\xa9\x4b\x8b\x78\x6b\x9f\x16\x4e\x40\xbc\x73\x32\xe7\xd3\x70\xcb\xe1\x95\xc5\x41\xef\x22\x28\xf4\x12\xf4\xf5\xf5\xf1\x8d\x1b\x37\x28\x5a\xa6\xab\x1b\x9d\x7a\xa7\x2b\x42\xd0\x91\xd0\xe6\x41\x30\x91\xc2\x66\xb0\xdb\x3a\xce\xc6\x89\xcc\x38\xd3\x50\xb5\xb9\x79\x6d\xf9\xcc\x38\xbd\x1d\x26\x72\x53\x87\x7c\x30\xd2\xe9\x61\xb6\xf1\x34\x61\x97\xb0\xd7\x6d\xd6\x67\xc6\xb1\xe5\xaf\x27\x18\x7e\xf7\x77\x7f\x97\x9e\x78\xe2\x09\x87\xc2\x93\x3b\x72\x60\x14\x0a\x2d\x51\x1e\xac\xbb\x07\x06\xea\xee\x81\xbc\x2f\xca\x0c\x38\x81\x60\x01\x02\xb9\xae\x4b\xe3\xe3\xe3\x7c\xe2\xc4\x09\xd4\xeb\x75\xfd\xf2\xc4\x7b\x0a\x43\x9a\xdb\xd5\xfa\xdb\x6c\x36\xdb\xbc\x4d\x20\xe4\x99\xd0\x77\x7c\xad\xf0\xb8\x40\x34\x03\x1b\x55\x65\x38\x94\xac\xef\x6d\xdf\x4c\x34\x54\xcf\x1c\xbe\x76\xa0\xf6\x83\x66\x86\xb7\x01\x78\x03\x03\x03\x81\x76\x78\x55\x37\x64\x35\x39\x74\x5a\x5c\xb7\xef\xb4\xf7\xbb\x4d\x77\xb7\x65\x9a\x92\x4b\x27\x6e\x1b\x97\x4c\x4b\x07\x2d\x5d\x1a\xc7\x84\x11\x06\x23\x5d\x9a\x07\xcc\x94\x8c\x5d\x61\x38\x78\xf0\xa0\xf8\xf2\x97\xbf\x4c\xd9\x6c\xd6\x05\x90\x23\x46\xdf\xc1\x4a\xf6\xd8\x93\x37\xca\xff\xfe\x53\x37\x06\xfe\xeb\x87\x6f\xf7\xff\xa3\x87\x96\xfa\x7e\xef\xc1\xe5\xbe\xdf\xbe\x6f\xb5\xf8\x2b\x07\x76\x33\xc3\xf5\x8c\xdc\xdc\xcd\x05\x75\x10\x64\x2e\x97\xc3\xf4\xf4\xb4\xdc\xd9\xd9\xa1\x8d\x8d\x0d\x53\x7a\x7f\x64\x18\xf4\x8b\xdb\xbb\x89\x1c\x34\x1a\x0d\x3a\x75\xea\x14\x32\x99\x8c\x2a\x28\xbb\x9b\x0d\xc4\xf4\x66\xe1\x4c\xc9\x73\x86\x4d\x4f\x93\x36\x0d\x61\xfa\x98\xe2\xf7\xf8\xee\x66\x02\x32\x92\x06\xdd\x40\x78\xf3\xc3\x8d\xb7\x23\x29\x11\x0c\x0d\x0d\xa9\xcb\xc8\x4d\x00\x75\xb1\x9c\x26\xd5\x4c\xf5\xc1\x1c\x2c\x13\x56\xb6\xe4\x4b\x4b\x9b\xd6\x57\x69\xa2\xda\xda\xa7\x96\xfa\x55\x98\xc9\xc9\xcd\x41\xb5\x49\x36\x18\xef\x66\xbc\x4d\xa2\xe8\x6d\xb0\x49\x54\x93\xcb\xc3\x92\x26\x4d\x45\x6d\xab\x6f\x72\x72\x52\xbc\xf8\xe2\x8b\x88\x88\x21\xef\x06\x34\xf0\xf4\xdc\xc0\x7f\xf0\x89\x6b\x43\xff\xd3\xc1\x9d\xdc\x97\xf3\x2d\x67\xc6\x95\x18\x72\x40\xfd\x8e\x14\x43\xf9\x96\x98\x39\xb0\x9b\xfd\xd4\xc9\xd5\xe2\x67\x5d\x29\x2a\x4b\x65\xef\x26\x0b\xf8\x42\x08\x39\x3d\x3d\x2d\xd5\xc9\x30\xf7\x12\x06\x7d\xf9\xb7\x49\x69\xed\x98\x8b\x70\x01\x5b\x3e\x9f\xa7\x89\x89\x09\x30\xb3\x00\x90\x09\x04\xb2\xae\xa4\xf2\xf4\x66\xfe\x91\x50\x05\xa2\xe4\x10\x3a\x55\x80\x4e\x1c\xf1\xbb\x76\xe8\x63\xcc\xbf\x08\x83\x75\x77\xfa\x4e\xd9\xfb\xf9\x76\xde\x5f\x01\xd0\xcc\xe7\xf3\xd2\x71\x1c\xdc\xbe\x7d\xdb\x54\x99\x6c\x22\x51\x8f\xb3\x89\x6b\x7d\xd0\xd2\x44\xbb\xc9\x49\xcc\x32\xd3\xd2\x9b\xa2\x98\xb0\xb7\x1e\x3d\xad\xb0\x84\xd9\x06\xc9\xac\xdb\x0c\xd3\xf3\xe8\xc4\x00\x03\x0e\x1b\x91\xa7\x95\x6d\x22\xba\x8d\x39\xd8\xda\xdb\x11\x86\x2f\x7e\xf1\x8b\x94\xcd\x66\x5d\x22\xca\x67\x7c\x1a\x7d\x7e\x76\xe8\x3f\xff\xd8\x9d\xd2\x7f\x97\x61\x71\x80\x80\x88\x31\x86\xbc\x21\xfc\x0e\x27\x7c\x1d\xa6\x81\xc9\x4a\xf6\xb9\x62\xcb\x91\x0b\x83\x8d\x4b\xd1\x25\xf2\xf2\xe4\xc9\x93\x3c\x37\x37\x47\xd1\x72\xf8\x7b\x02\x83\x39\x31\x67\x72\x2d\xf5\xc4\x15\xb5\x5a\x2d\x9c\x3a\x75\x8a\xa3\x59\x68\x01\x20\xbf\x53\x08\x82\x07\x56\xfa\x3e\x9e\x0d\xa8\x80\x08\x28\x9d\x9a\x74\xa4\x8f\x37\x11\x45\x16\xb7\xbe\x7b\x0a\xc4\x70\x98\x8a\x03\x0d\x77\x70\xf6\x40\xfd\xc7\xd2\x41\x8d\x88\x5a\xc3\xc3\xc3\x72\x79\x79\x19\xd5\x6a\xd5\xc6\x11\x4d\xae\x6b\x12\x81\xfa\x83\xe5\x57\xef\x40\x58\xf2\xeb\x9d\x65\xf6\x93\x59\x5f\x5a\xb8\x1e\x0f\xec\x6d\x1b\x8c\x34\x12\x7b\x89\x45\x7f\xcc\xb0\xb4\x3c\xe6\x98\xda\x60\x32\x39\xa6\x09\xbf\x19\x9f\x56\x8e\x4d\x32\xb4\xb5\xe7\xf9\xe7\x9f\x17\x63\x63\x63\x82\x88\x32\x60\x0c\x3e\x7a\xab\xff\x37\x1f\xb9\xd5\xff\xdf\x3a\xa0\x82\xda\x34\x44\x51\xf1\x4c\xda\x01\xd2\x50\xa8\x42\x99\xd1\xdd\xcc\x23\x2d\x97\x6f\xdd\x29\x7b\xd7\x41\x68\xe5\x72\xb9\x20\x9f\xcf\xf3\xfc\xfc\xbc\xde\xa6\x8f\x04\x83\xee\x65\xb2\x71\x2d\xd2\x12\x03\x80\xdc\xdd\xdd\xe5\x83\x07\x0f\x52\xb9\x5c\x66\x00\x82\x88\xdc\x96\x60\xb7\xd0\x12\x07\x26\x2b\xb9\x53\x31\x60\x11\x30\xea\x80\x01\x52\x01\x0a\x07\xf4\xbd\x12\xac\x61\x09\x11\x4a\x4d\xe7\x88\xef\xf2\x9d\xdb\x65\xef\x0a\x08\x2d\xc7\x71\xfc\xc1\xc1\x41\x36\xee\x31\xb6\x71\x66\x9d\x58\x4c\xe4\x30\x61\xb2\x49\x43\xb3\x33\xf5\xce\xd2\xd3\xaa\xfa\x75\x84\xee\x24\xa9\x34\xc0\xdb\x88\x43\x6f\xbf\xcd\xd8\xd6\xeb\x31\xc3\xcc\x3c\x7a\x7b\x6c\x0c\xc1\x64\x0e\x26\xf3\xeb\x96\x47\xef\x57\x9d\x0b\x9b\x2a\xea\x1e\x18\x46\x47\x47\xe9\xe9\xa7\x9f\x06\xc2\x73\x82\xfb\x46\x6b\x99\x13\x9f\xba\x3a\xfc\xcf\x73\x81\x38\xc0\x00\xa0\x56\x31\xc4\xb8\x12\xe1\x06\x21\x39\xb9\x83\x00\x01\xca\x8e\xed\x64\x1e\xb8\x76\xa0\xfe\x6a\x23\x23\xb7\x01\xf8\xfd\xfd\xfd\xc1\xdc\xdc\x1c\x35\x9b\xcd\x7b\x02\x43\x37\xa3\xda\xaa\x7e\x5c\xbd\x7a\x95\x1f\x7d\xf4\xd1\xb0\xcd\x44\x0e\x08\xd9\x9d\x5c\xc0\x27\xd7\x0a\x8f\xe5\x7c\x2a\x28\x00\xdb\x6e\x66\x4a\x28\x03\xc9\xd6\xd3\x48\x6d\xa2\x44\x44\x86\x95\x92\x33\xba\x9b\x39\xbe\x30\xd4\xf8\x49\x2d\x27\x37\x89\xc8\x2f\x95\x4a\x32\x08\x02\x44\xeb\x52\x4c\xc4\xd0\xdb\x6c\xb6\xdf\x26\x21\xd2\xc4\xa7\x39\xb8\x2a\x8f\xcd\xa5\xdb\x89\x1b\xc3\x12\x66\x12\x6d\x27\xc9\xa6\xa7\xb7\x11\xaf\x39\x3e\x7a\x9c\x2d\xcc\xf6\x07\xad\x0c\x9d\xa3\xdb\xfe\x6c\xc4\x6d\xce\xcd\xa4\xc2\x70\xfa\xf4\x69\x4c\x4c\x4c\x08\x00\x59\x02\x0d\x3e\x7c\xbb\xf4\xa5\x99\x8d\xfc\xe7\xd4\xfe\xb9\xd0\x05\xaf\x14\xe8\xf6\x83\xcd\xd4\x11\x46\x1c\x7d\xbb\x92\x06\x5b\x0e\xdf\xb9\x39\xd8\xfc\x00\x84\x46\xb4\x4c\x84\xa3\x89\xbc\x8f\x0c\x83\xae\x6f\x9a\x8f\x2d\x4e\x00\x40\x36\x9b\x15\xd5\x6a\x15\x44\xe4\x33\x73\x0d\xc0\xd6\x56\xc1\xbf\xfe\xe1\x58\xed\x6f\xd5\x1d\x03\xea\x78\x4f\x00\xea\x72\x40\xa8\x99\x69\xfd\xb4\x35\x25\x26\x63\x19\xc9\x61\x7c\xc1\x73\x66\x3e\x71\x7d\xf0\xbf\xcc\xb5\x68\x8c\x99\xf3\x00\xc4\xe3\x8f\x3f\x8e\xe8\xc4\x69\xa9\xfd\x75\x6a\xaf\x3e\x51\x63\x4e\xda\xe8\xe9\x75\x8e\x2d\x52\xd2\x03\xed\x9d\xd7\xe9\xdd\xd6\x1e\x3d\x8d\xd9\x36\xb3\x1e\x33\x8d\xad\xad\xe6\xf7\x7e\xd3\xd8\xbe\x6d\xe1\x36\xd8\xd2\xda\x6c\x85\xe1\xf8\xf1\xe3\x2a\x6f\x56\x30\xca\x47\x36\xf3\x1f\x87\xba\x80\x13\x80\x3a\xd5\x31\x79\x38\xd9\x79\xac\x18\x6b\x84\xce\xc4\xe1\x25\xf2\x99\x80\x86\x11\x9d\xf4\x77\xf4\xe8\xd1\x7b\x06\x43\xa7\x4e\x4c\x7d\x3c\xcf\x53\x97\x62\x47\x97\x88\xa0\xc2\xe0\x95\x8b\x07\x77\x5f\xdd\xcd\xca\x8d\x44\x42\x24\x87\x0f\xe8\x12\x40\x2d\x09\x0f\x41\x8f\xa0\x06\xd4\xad\x38\xd1\x0e\x3c\xc6\xe1\xad\xdc\x67\xce\x2d\x96\xbf\x44\xa0\x41\x00\x79\x22\x72\x9f\x79\xe6\x99\x5e\x9b\xd9\x0d\x26\x1b\x72\x9a\xf9\x74\x75\x29\x0d\xa1\x6d\x79\x7a\x7d\xd2\xca\xe8\x94\xce\x7c\xb7\x11\x56\x1a\xa2\xda\xc2\x3b\x11\x62\xa7\x77\xfd\xe9\x88\x47\xe1\xb9\xc8\x10\xcc\x9c\xcd\x04\x54\xee\x6f\x3a\x53\xba\x8d\x10\x6b\x0e\xea\xa1\xf6\xfc\x21\x8f\x55\x37\xa4\x02\xfd\x4d\xe7\x70\x36\x10\xc3\x88\x8e\xa6\xd4\x0e\xcc\xfe\xc8\x30\x08\x0b\x00\xe6\xc0\x5a\x39\xef\x87\x1f\x7e\x28\x2b\x95\x8a\x44\xb2\x69\x63\x63\xbb\xe0\xcf\x5f\x1a\xdf\xfd\xb1\xda\x37\x6b\xee\x9c\x33\xe5\xb4\x19\x47\xc6\xbb\x00\x65\x1f\xbe\x55\xfa\x4f\xa7\x37\xf3\x8f\x20\x3a\xac\xb6\x54\x2a\x89\xcf\x7e\xf6\xb3\x69\x1c\x4f\x0f\x33\x11\x58\x8f\x37\x3d\x31\x66\x1e\x89\x74\xe4\xd4\xd3\x76\x2b\xa7\x5b\x7e\xfd\xd7\x2c\xa3\x97\xbc\xbd\x96\xdd\x8b\x84\xe8\x45\x1a\xa5\xd5\xd9\x66\x67\x9a\xf9\x14\xc2\x12\x91\x2b\x98\xf2\x82\x91\x57\x4a\x41\xc2\x19\x13\xdd\x28\x3e\x31\x1d\x89\x56\x11\xab\xd3\x04\x08\xa6\x6c\x74\x33\x51\xda\xf9\xc0\x77\x0d\x83\xad\xb0\x5e\xb8\x91\x00\x20\xbe\xf1\x8d\x6f\xa8\xb0\x06\x11\x55\x24\x78\xe5\xdd\x43\xd5\x57\xb7\xf3\xfe\x92\x02\xd0\xbc\x87\x8d\x81\x18\xf8\x70\x15\x6c\xac\x48\x69\x61\x80\x5a\xe6\x91\x0d\x68\xec\x93\x57\x87\xfe\xe9\x50\xdd\x3d\x81\xe8\x48\xf3\xc3\x87\x0f\x8b\xe7\x9f\x7f\x3e\x3a\x91\xbd\xad\x7d\xc2\xf8\xb5\x3d\xbd\x72\xd0\x4e\xf9\xd3\xca\x01\xf6\x22\x88\x2d\x7f\xa7\xf6\xe9\xe5\xa8\x5f\x61\x7c\xf7\x2a\x59\xcc\xf4\x69\x2a\xa6\x8d\x50\x3a\x85\xe9\xef\xbd\x30\x0f\x30\xb3\x60\x66\xb4\x1c\x46\xd3\xe5\x9a\xe2\x7e\x6c\x22\x48\xf4\xcd\x91\xb7\x25\xa4\x19\x1d\x43\x80\x7a\x46\x56\x5b\x0e\xb7\xd5\x7b\xea\xd4\xa9\x7b\x02\x43\xa7\xc1\x13\xd8\xdb\xf9\x7a\x01\x12\x00\xaa\xd5\x6a\x9b\x94\xd8\xcd\x06\xf3\xef\x1c\xae\x7e\x4f\x0a\x48\x65\x08\xc5\xb0\xc2\x22\x19\x39\xbe\x5d\x28\x0a\x53\xf7\xd5\x71\xfc\x3d\xd0\x70\xce\x7c\xf2\xea\xd0\x1f\xe4\x5b\x62\x02\xe1\xfe\x5d\xf7\xc4\x89\x13\x98\x9e\x9e\xb6\x34\x3b\x6e\x9f\xed\xdd\xf6\x74\xe3\xa2\x66\xff\x74\xe2\xec\x69\xb6\xc7\x7e\xda\xa7\xe7\xb7\x31\xac\x4e\xe5\x99\xc4\xa6\x4b\x3b\x1b\x5c\x36\xe2\x4c\xb3\xb7\xd2\x74\x70\x33\x4f\x5b\x7b\x26\x27\x27\x05\x00\x10\x91\x24\x22\x04\x82\xbd\x8d\x62\x78\x46\x30\x47\x36\x81\xb2\x98\xd5\x88\x33\x22\xba\xe0\xf0\xb8\x4f\x95\x46\xa5\x58\xea\xf7\x66\x1b\xae\x6c\xbb\x44\xde\xf0\x40\xde\x35\x0c\x9d\xa8\x3c\x8d\x03\xb6\x3d\x6a\xd3\x76\x74\xb4\xfa\x16\x08\x6b\x97\xc7\x6a\x3f\x59\x29\x79\xd7\xf7\xde\xd2\x19\x3e\xc9\xdc\x03\xed\xd1\x9d\x62\xf7\x4b\xdb\x99\x3b\x84\xc3\x5b\xb9\x5f\xff\xc4\xf5\x81\xaf\x38\x12\xc3\x44\x94\x67\x66\xf7\x93\x9f\xfc\xa4\x59\x74\x27\x35\x4f\x8f\x57\x8f\x8d\x7b\xa6\xe9\xd4\x69\xe9\xba\xf5\xa1\xed\xbd\x13\x03\x32\xdf\xd3\x08\xc6\x46\xc8\x36\x06\x66\x53\x81\xbb\x71\xce\x4e\x8f\xad\x1c\x61\xfc\xc5\x61\x6b\x6b\x6b\xfa\x2a\x55\x9f\x01\xef\xda\x68\xfd\x82\x24\xf8\x89\xab\x95\xdb\x54\xe6\x3d\xc6\x34\x25\x81\x01\xb1\x3f\x7b\xa0\xf6\x73\x68\x37\xaf\x6a\x73\x62\x1f\x19\x86\x34\xd1\x97\xd6\xd9\xe6\x23\x2c\xb6\xc4\x5a\xc3\x95\x0b\xaf\x1f\xdd\xfe\x56\xcb\x91\x1e\x60\xf7\x87\xee\xf1\x0b\x72\xd2\x19\x7b\xfd\xa8\x0c\x01\x72\x1f\x58\xea\xfb\xfd\x27\x6e\x0c\xfc\x96\x88\x88\xc2\x75\x5d\xf7\x2b\x5f\xf9\x8a\x8d\x7b\x9b\xb0\x98\x69\xcc\x74\x69\xba\x75\x5a\x3e\xb3\x2e\xf5\xdd\x09\x59\x91\x92\xae\x17\x8e\x8b\x94\x34\xe6\xaf\x4d\xaa\x74\x52\x11\x3b\x95\xdb\x29\xbd\xd9\x46\x5b\x3d\x12\x80\xf4\x3c\x0f\xbb\xbb\xbb\xf1\x71\xa8\x0c\xae\xce\x0d\xd7\xdf\x59\xee\xf7\xae\x24\xe3\x9b\x5c\x82\x02\xa0\xcd\x9e\xd0\x7f\x19\x8c\x95\x92\x77\xe5\xe6\x60\xf3\x03\x84\x7b\xa6\x3d\x00\x72\x79\x79\xf9\x9e\xc1\x60\x5e\xba\xd8\x69\x1e\xc2\xf4\x5f\xc7\xe9\xb6\xb7\xb7\xe9\xe4\xc9\x93\x52\xad\xfa\x03\xc1\xa9\xe4\x83\x56\xb9\xe1\x4e\x1c\xa8\x66\xa6\x93\xeb\xa4\x90\xb8\x5b\xb5\x85\x4f\xc6\x21\x6c\xf1\x6e\x3a\x52\x35\x68\xf3\x13\xe3\x3b\x99\xb3\xcd\x0c\xdf\x58\xe9\xf7\x6e\x32\xd8\x27\x22\x79\xe6\xcc\x19\xde\xda\xda\xa2\xad\xad\x2d\x1d\x68\xb3\xed\x7a\x9b\xd3\xbe\xd3\xfa\x21\x2d\x9f\xc0\xde\xbe\x42\x87\x5f\x5b\x3a\xdb\x84\x92\x59\xa6\xe9\xdf\x17\x5a\x98\x48\xc9\xa3\xc3\xa3\xff\x4a\x23\xce\xac\x43\x0f\x37\xeb\xb5\xb5\x47\x58\xd2\xb4\xb5\x27\x97\xcb\xe1\xd0\xa1\x43\xa0\xf0\x71\x03\x07\xb9\x4a\xde\x6f\xcd\x6c\xe4\xcf\xb8\x92\x72\xea\xb6\xda\x36\x65\x81\x12\x9c\x51\xf6\x44\x3d\x23\x2b\xaf\xde\xb7\xf9\x7f\x6d\x17\xfc\x0f\x40\x58\x46\xb8\x8f\xba\x75\xf1\xe2\x45\x5e\x5e\x5e\xbe\x27\x30\xa8\xa5\x1b\x3a\x20\xfa\x9f\x84\xbd\x53\xdb\x0a\xab\x54\x2a\x38\x78\xf0\x20\xa2\xdb\x2e\x11\x11\x85\x58\xeb\x6b\xd5\x8e\xad\x17\x1f\x2e\xf8\xd4\x07\x22\xed\x42\x8b\x04\xe8\xb6\xe6\xa9\x82\x13\x4a\x88\x3b\x4a\x25\x71\x98\x0a\x87\xb6\x73\x4f\xee\x66\xe5\xec\x5a\xa9\x75\x0b\xe1\x4c\x36\xcf\xcc\xcc\xc8\x77\xde\x79\xc7\x24\x6e\xb3\xcd\xb6\x3f\xb3\x03\xcd\x7c\x26\x22\xea\x9d\x68\x4a\x07\x13\x51\xcd\xfe\x32\xd3\xe9\x5a\x82\x4e\xbc\x36\xc2\x14\xc6\xb7\xf9\x6e\xe6\x81\x91\x06\x46\x1c\x19\xe9\x4d\x44\x49\x65\x80\x06\x5c\x66\xb9\x7b\xda\xb3\xbc\xbc\xcc\x8f\x3d\xf6\x18\xb4\xf4\xa2\x92\x0f\xbc\xed\x82\xbf\x7b\x64\x33\x7f\xbf\xcb\x94\x8d\xef\x26\x24\xc5\x03\x75\x0e\xca\xa8\x65\x64\xe5\xfb\x27\x37\xff\xf5\x8d\xe1\xc6\x8f\x19\xbc\x18\x9d\x72\xd8\xf0\x7d\xdf\xd7\xf6\x4e\x7f\x64\x18\x6c\x8b\xfb\xcc\x82\xcc\x8e\xb3\x72\xd8\x2b\x57\xae\x70\x74\xec\xa5\x32\x74\x84\xe7\x32\x37\x5d\x49\x33\x1b\x85\x8f\x09\x90\x20\x36\x58\x92\x3a\xee\x50\x99\xd4\xb1\x54\x08\x3b\x22\xbe\x43\x4f\x6b\x08\x88\x21\x98\x8a\x47\xb6\xf2\x4f\xee\xe4\x83\xab\x1b\x7d\xad\x25\x10\x5a\x44\xc4\x67\xcf\x9e\xe5\xcd\xcd\x4d\x6c\x6d\x6d\xe9\x6d\x56\x48\x48\x29\xbf\x30\xd2\xa9\xaa\xf4\x78\xa0\x1d\x99\x4d\xe2\xd1\x8d\x53\xb3\x6e\x18\xf5\xe8\x7d\xa8\xca\x31\xb9\xb6\x49\x00\x66\xdd\xb0\xbc\xeb\x70\xa4\x11\xb6\x49\x54\x7a\x5a\xbd\xbd\x26\x57\xd5\xfb\xc0\x06\x83\xad\x5d\x6d\xe1\x23\x23\x23\x34\x38\x38\x98\xe4\x25\x60\xa3\xe8\x6f\xdf\x1a\x68\x2e\x95\x1b\xee\x48\x9f\x27\xfa\x05\xe0\xc4\xfb\x66\xd4\xf5\xc3\x82\xbd\xc5\xc1\xe6\xd5\xef\x9d\xda\xf8\x7f\x6e\x0e\xc6\xa7\xf1\xad\x20\x3c\x73\xc9\x9b\x9b\x9b\xe3\xb9\xb9\xb9\x7b\x06\x83\x93\x92\x50\x7d\x9b\x83\x65\x76\x74\x5b\x45\xf9\x7c\x1e\xe3\xe3\xe3\x40\x68\xe8\x10\x08\x62\xb3\xd0\x6a\x0c\x36\xdc\x83\xa3\xbb\x99\xc3\xa4\x0e\xbb\xd5\x0e\xbd\x55\xc7\x60\x2a\xfd\x28\x3e\xc8\x16\x9a\x2a\xa5\x1b\x57\x51\x62\x97\xa9\x74\x78\x2b\xf7\x44\x2d\x1b\x5c\x5b\x2d\xb5\x6e\x53\x78\xe7\x35\x4f\x4d\x4d\xc9\x0b\x17\x2e\x98\xba\xbc\x49\x1c\x2a\x4c\x87\xdb\x44\xae\x34\xd5\xc2\x56\x8e\x59\x4f\xa7\x72\xda\xfa\x0c\xed\x44\xa7\x23\xa9\x19\xae\xff\x9a\xef\x3a\x97\x33\x11\xc3\x64\x66\x66\xdd\xb6\x72\xd2\x9c\x29\x69\x08\x66\xb6\x71\x0f\x0c\xd7\xae\x5d\xe3\x87\x1f\x7e\x18\x42\x08\x46\x78\x5a\x46\x00\x82\x5f\xcd\x05\x95\xd9\x03\xf5\x2b\x77\xca\xcd\x3b\xb5\xac\xac\xf9\x82\xbd\x5a\x56\x56\x37\xfa\x5a\xcb\xb3\x07\xea\x1f\xfc\x6c\xa6\xf2\xbd\x77\x0e\x57\xff\x7a\x27\x1f\x7c\x80\xf0\xd0\xe2\x65\x44\xe7\xc0\x56\xab\xd5\xe0\xdb\xdf\xfe\xf6\x3d\x85\xa1\xd3\x8e\x39\x5b\x45\x36\x37\x5d\x0c\xfc\xe2\xe2\x22\xcf\xcc\xcc\xa0\x58\x2c\x02\x40\xc0\xcc\xc4\x82\x68\xb9\xdf\xdb\x3c\xb6\x51\x38\x53\xf0\x9d\x92\xad\x65\x89\xee\x18\xe2\x9c\x76\xca\x53\x92\xb0\x2d\x20\x54\xbd\x32\x52\x94\xa7\x36\xf3\xcf\x35\x32\x72\x6e\xb5\xd4\xba\x03\x0a\xd7\xca\x9f\x3b\x77\x8e\xdf\x7e\xfb\x6d\x8e\x0e\x69\xb6\x21\x9c\x89\x58\x69\xea\x88\x8d\xa0\x6c\x5c\x31\x4d\x34\x77\xaa\xc7\xc6\xf5\x6d\xf5\x9b\xef\x69\xdc\xde\x46\xe0\xa6\x14\x30\xe3\xcd\x27\xad\xee\xb4\xb6\xd8\xe0\x4c\x2d\x67\x7d\x7d\x9d\xa6\xa7\xa7\xa5\xe3\x38\x12\xea\x30\x68\x42\x43\x0a\x54\xb6\x0b\xc1\xd2\xc2\x70\xf3\xc3\x5f\x4c\xd4\xde\xfa\xe0\xe0\xee\x1b\x1f\x8e\xd7\xfe\x76\x61\xb0\xf1\xf6\x4e\x21\xb8\x24\x05\xe6\x11\x5e\x23\xac\x88\xa1\x21\xa5\xf4\xb5\x6b\x01\xee\x19\x0c\xdd\x16\xf7\xd9\xe2\x4c\x51\xd4\xd6\x21\xad\x56\x8b\x66\x66\x66\x64\x24\x0d\x24\x00\xe1\x39\xcc\xb5\x6c\x20\x67\x36\xf3\x0f\x39\x4c\xae\x7e\x16\x2c\x58\x33\xb4\x81\x68\x4d\x0b\xb7\x89\x4d\x8e\x6f\x9c\x51\x0a\x66\x54\x23\x11\x1c\x49\x85\xc3\xdb\xb9\xa7\x01\xac\x2d\x95\xbd\x1b\x10\xd4\x02\x80\xc7\x1e\x7b\x4c\xf6\xf7\xf7\x63\x61\x61\x81\xb8\xfd\x0e\xa5\xb4\x0e\xd1\x1f\x9d\xc3\xa5\x21\x70\x5a\x1e\x5b\xdf\xe9\x75\xa7\x19\xee\xe6\x60\x91\x91\x47\xf7\x20\xd9\x88\x52\x6f\xa3\x59\xa7\x2e\xd9\x01\x7b\xdb\x4d\x62\x33\xdb\x06\xb4\x4b\x49\x33\x6f\x57\x18\xb6\xb7\xb7\xe5\xc6\xc6\x06\x1d\x3d\x7a\x54\x46\xf3\x12\x2d\x75\x13\x6a\x74\x3a\xb7\x3a\x1d\x5d\x9d\xf4\x77\x07\xc9\xf5\x00\xeb\xd1\xed\x49\x4d\x29\xa5\xff\xfa\xeb\xaf\x63\x75\x75\xd5\xd6\x8e\x8f\x04\x83\x6d\xc7\x9c\x69\x70\xc2\x48\x93\x66\x3c\x02\x08\x8f\x01\x19\x1e\x1e\xa6\xa1\xa1\x21\x8e\x4e\x6d\x06\x08\xd8\x2c\xf8\xf5\x4c\x20\xfa\x27\x2b\xd9\x13\xea\x74\x3f\x40\x3f\x24\x59\xa3\x81\x48\x3f\x4a\xd6\x7b\x85\x32\x83\x15\x38\x00\xe2\x13\x02\x09\x70\x18\xc5\x43\xdb\xf9\x67\x8a\x2d\x21\x6f\x0d\x34\xaf\x48\x27\xf4\x4f\x8f\x8c\x8c\xf0\xa1\x43\x87\xf8\xf2\xe5\xcb\x36\xe4\xb1\x71\x4d\xf5\xae\x08\xc1\xa6\x63\xdb\x54\x20\x5d\x3d\xea\xc5\x10\xb7\x71\x6d\x68\xdf\xba\x3c\x34\x55\x20\x18\xdf\xdd\x90\xdd\x2c\xd7\xe6\x28\xd1\x0d\x7c\x06\xc0\x2f\xbe\xf8\x22\x9d\x3b\x77\x8e\x9e\x7e\xfa\x69\x1a\x1b\x1b\x53\x57\xf9\xda\x70\xc2\x66\x57\xa5\xc2\x10\x6d\x09\x46\xc4\x34\x03\x00\x2d\x22\xaa\x6b\xa7\xef\x6d\x01\xd8\x24\x22\x75\x6d\x80\x3a\xed\xaf\x41\x44\x5e\xb5\x5a\x0d\x5e\x7a\xe9\x25\xb9\xba\xba\x6a\x73\x88\xd8\x54\x47\xd5\x56\xa0\xdd\xc6\xb3\xc2\xe0\x68\x85\x49\xa3\x20\x93\x9b\x99\x46\xa8\x8d\xbb\x32\x00\x5c\xbf\x7e\x3d\x56\x9d\x98\x39\x88\x88\x42\x2c\xf7\x7b\x1b\x63\xd5\xec\xf4\x60\xc3\x1d\x53\x6a\x51\xb2\xe8\x37\x29\xa1\x4d\x62\x68\x71\xe6\x77\x12\x46\x20\x50\x76\x6c\x27\xfb\xe4\x68\x2d\x3b\xb8\xdc\xdf\xbc\xd2\xcc\x70\x1d\x80\x2c\x95\x4a\xf2\xd4\xa9\x53\x68\x36\x9b\x58\x5f\x5f\xb7\x49\x8a\x6e\xef\x36\xae\x9e\x96\xce\x0c\x4f\x2b\xdb\x56\x96\x4e\x80\x12\xf6\xba\xdb\xe4\x23\x92\x01\xd6\xf3\xa4\xa9\x59\x3a\xb2\x58\x9d\x0e\xa5\x52\x09\x4f\x3c\xf1\x04\xbd\xf0\xc2\x0b\x34\x34\x34\x24\xf2\xf9\xbc\xa3\xae\x3c\x7b\xf4\xd1\x47\xc5\xb1\x63\xc7\x78\x61\x61\x81\x3c\xcf\xd3\xdb\x62\x73\x4e\x74\x84\x61\x7b\x7b\x9b\xde\x79\xe7\x1d\x59\x28\x14\x30\x30\x30\x10\x58\xee\xd3\xa8\x47\xd7\x04\x34\xa2\xb0\x56\xab\xd5\xf2\xaf\x5d\xbb\xc6\xe7\xcf\x9f\x47\xb3\xd9\x4c\x85\x21\x6a\x87\x8d\x58\xcc\x36\x5a\x61\x70\xb4\xc2\xd2\x3a\x90\x8c\x8c\x9d\x54\x85\x78\x30\xd4\xdc\x04\x00\x44\x9c\x00\x81\x00\x96\xfb\xbd\xad\x99\x8d\xc2\x43\x39\x9f\xfa\xd4\x22\xae\xe4\xbc\x57\x63\x07\x9d\x3e\x7c\xda\xa7\x1e\xa6\xa7\x16\x0c\x31\x54\x77\xcf\x1c\xd9\x2c\x3c\xb8\xd6\xe7\x5d\xda\xc9\x05\x3b\x20\xc8\x6c\x36\xcb\x53\x53\x53\x72\x64\x64\x84\xae\x5f\xbf\x6e\x8a\x55\x1d\x2e\x53\x5a\xa6\x71\x62\x5b\x9a\x5e\xa4\x6c\xa7\xba\x15\x64\x9d\x08\x4a\x6f\x87\x8e\x08\xdd\x88\xdb\x44\x0a\xb3\x4e\x8c\x8f\x8f\xd3\xe7\x3f\xff\x79\x1c\x3c\x78\x50\x10\x91\x03\x46\xae\xd0\x12\xfd\x1f\x5b\x2a\xdd\xb7\x52\xf2\xaa\x4c\x90\xc5\x62\x91\x8f\x1c\x39\xc2\xc6\x1e\x77\x9b\x8a\xd6\x13\x0c\x37\x6f\xde\xe4\x6b\xd7\xae\x51\x10\x04\x5c\x28\x14\x64\x26\x93\x09\x98\x39\x10\x42\xf8\x52\xca\x80\x99\x83\xe5\xe5\x65\xb9\xb0\xb0\xc0\xdf\xfe\xf6\xb7\xe5\xfc\xfc\x3c\x35\x9b\xcd\x54\x18\xb4\xba\xcd\x70\x73\x9c\xcc\xf9\x2a\xa9\x7f\xa8\x47\x17\xe7\x69\xc6\x33\xd0\x4e\x3c\xb6\x74\x71\xda\x27\x9f\x7c\x12\x67\xce\x9c\x11\xd1\xa9\xe1\x65\x00\x93\x00\x8e\x4d\x6d\xe4\x3f\xf9\xd9\x0f\x87\xff\xa3\x42\xcb\x29\xb5\xdf\x2d\x11\xb5\x5c\x11\x89\x01\xb5\x29\x83\x93\x0b\xe3\x75\xaa\x0a\xe3\x9a\xae\x9c\x7f\x63\xaa\xf2\x3f\xbe\x37\xb9\xfb\x5d\xdf\xe1\xad\x48\x57\xf5\x5b\xad\x96\xfc\xda\xd7\xbe\x66\xb6\xdb\x06\x43\x2f\x7d\x62\xa6\xb3\x95\x65\xcb\xdb\xa9\x5c\x5d\x35\x32\x67\x9e\x61\xc9\x67\xc6\x99\xe5\xdb\xe2\xe3\xb6\x15\x0a\x05\x9c\x3d\x7b\x16\xa7\x4f\x9f\x06\xd4\xbd\xd3\x8c\xfc\x58\x35\x33\xf5\xfc\xd5\xe1\x3f\x18\xab\x66\x3e\xf3\xe3\xa3\xdb\xff\xe8\xed\xc3\x3b\x3f\x40\x78\xdb\x93\x57\xa9\x54\xe4\x9f\xfe\xe9\x9f\xea\x17\xbb\xdb\x70\xe3\x23\xc1\x90\xc9\x64\x84\x76\x5b\x52\x47\x18\x2c\x71\x77\x9d\x47\xdf\x53\x4d\x29\xbf\xea\x49\x53\x19\x4c\xe9\x10\x77\xce\x9d\x3b\x77\x68\x74\x74\x94\x07\x06\x06\x98\x88\x18\x80\x64\x66\xde\x29\x04\x8d\x7a\x46\xfa\xd3\x9b\xf9\x07\x05\x93\xd0\x4f\x04\x57\xa5\x86\x5b\x22\xc2\x66\xc4\xf3\x77\x8a\x78\xd4\x06\x23\x02\x62\x6b\x24\xb6\x4b\x42\xb7\xad\x2b\xc5\xe0\xe1\xad\xfc\x27\x47\x77\x33\xc3\xcb\xfd\xde\xd5\xa6\xcb\x1e\x08\x2c\x84\xe0\xc7\x1e\x7b\x8c\xcb\xe5\x32\xb4\xbd\xb8\x36\x8e\xae\xc3\x66\xc2\xaa\x3a\xd0\x54\x19\x60\xc4\xdb\x44\xbb\xae\xb3\xa6\xf5\xab\x4d\x3d\xb5\x71\x3e\x9b\x2a\x95\x16\x6f\x72\x69\x9c\x3c\x79\x92\x5e\x7c\xf1\x45\x44\x0b\xf0\x32\x00\x72\x8e\xc4\xd0\x03\x2b\xc5\x67\x3f\x75\x65\xf8\x7f\x1e\xae\xbb\x9f\x12\xa0\xbe\xd1\x6a\xe6\x63\x77\x06\x9a\x3f\xaf\xe6\x83\x2d\x66\x0e\xf2\xf9\xbc\xcc\xe5\x72\x7c\xf3\xe6\xcd\x4e\x2a\xe0\x47\x82\x41\x4a\xd9\x13\x0c\x29\x71\x77\x9d\xc7\xc1\xde\x41\x37\x7f\xbb\x3d\xb6\x7c\x11\xfe\x32\xcf\xce\xce\xf2\x83\x0f\x3e\x88\x4c\x26\xc3\x00\x02\x22\x92\x20\x60\xad\xd4\xaa\x64\x03\xea\x3f\xb8\x93\x9d\x81\x42\x6d\xcd\x40\x08\xdf\x43\x4a\xd0\x4f\xea\xa0\xe8\x48\x8f\xd8\x39\x1b\xa5\x23\x4e\x36\xa7\xab\x66\x10\x53\x76\xb8\xee\x3e\x7a\x74\xbd\xf8\x58\xd3\x95\x4b\x1b\xc5\xd6\x0a\x13\x98\x88\x78\x64\x64\x84\xcf\x9e\x3d\x8b\xe8\xa4\x71\x73\x00\xd5\x93\x46\x20\xa6\xce\x9a\xd6\xe9\x66\x9c\xd9\xcf\x66\xf9\x69\x1e\x2c\x58\xd2\xf4\x9a\xc7\x9a\xfe\x8b\x5f\xfc\xa2\x78\xe8\xa1\x87\xe0\xba\xae\x0b\x20\x07\xa0\xd8\xdf\x70\x0e\x3d\x37\x3b\xf4\x5f\x9c\xbb\x59\xfe\x27\x85\xc0\x99\x56\xbd\x99\x91\x34\x3a\xba\x9b\x39\x38\x3b\x5a\x7f\x3d\x70\x50\x03\x10\x8c\x8d\x8d\x05\xab\xab\xab\x14\xdd\x79\x61\xb3\x5b\xfe\xce\x61\xe8\x21\x9d\x2d\x3c\xad\xac\x36\xa3\x3a\x4d\xbf\x35\x0b\x49\x33\xd8\x4c\xae\x09\x3d\xec\xbd\xf7\xde\x93\x8f\x3e\xfa\x68\x78\x17\x59\x68\x64\x07\x0c\xe6\xa5\x01\x6f\xa3\xcf\x73\x86\x0e\x54\xb3\x47\x84\x76\x52\x47\xdb\x11\x36\x48\x8c\x6c\x28\xa2\x30\xd4\xac\x30\x4d\x42\x39\xea\xba\x56\x95\x2f\xef\x8b\xc9\xa3\x1b\x85\xcf\x8c\xed\x64\x47\x37\x8b\xfe\x8d\x5a\x56\x36\x19\x8c\x68\xce\x82\x1e\x78\xe0\x01\x04\x41\xa0\xdc\x78\xa6\xa4\x33\x09\x42\x6f\x8d\x69\xc8\x76\x32\x68\x6d\xe9\x4c\x3b\xc4\x54\xb5\x6c\x83\x68\x93\xdc\xb6\x3c\x7a\x9b\xe3\xb0\x2f\x7c\xe1\x0b\xf4\x89\x4f\x7c\x82\x8a\xc5\xa2\x20\xa2\x1c\x80\x7c\xd6\xa7\xe1\x07\x97\xfa\x7e\xe5\x85\xcb\xc3\xff\x62\xb2\x92\xfb\x9c\xc3\xe1\xe9\x29\x60\x75\x6e\x3b\xa1\xcf\x73\x8e\xe6\x7c\xe1\x2d\x0c\x35\x2e\x32\xc1\x03\x10\x4c\x4f\x4f\xcb\x0b\x17\x2e\xe8\x88\xfc\xff\x09\x0c\x96\x6f\x5b\xdd\x69\xf9\x4d\xbc\x6e\x9b\xa8\x75\x8c\x44\x7a\x26\x95\xc8\xcc\x64\x52\xb3\x19\xa6\x73\xda\x58\x4f\x64\x66\x4c\x4e\x4e\x4a\x22\x52\xee\xd8\x40\x0a\xc8\x5b\x03\xcd\xb5\xe1\x5a\xe6\xe0\x50\x74\xdd\x2a\xb0\xb7\x11\x3a\x54\xa4\x06\x89\x10\xab\x50\x61\xe3\x23\x62\xd0\x13\x47\xcd\x21\x10\x04\x53\x76\xa8\xe1\x3e\x7a\x7c\xbd\xf8\x89\x7c\x4b\xb4\x36\xfa\x5a\xb7\x5b\x0e\x4b\x10\xa4\xeb\xba\x98\x9a\x9a\xc2\xa9\x53\xa7\xe0\xba\x2e\x1a\x8d\x06\x35\x1a\x0d\x1b\xb2\x4b\x24\x30\xa6\xf5\x8f\xd9\xd1\x36\x63\xd6\x26\x25\xcc\x01\xd6\x89\x49\xff\x36\xfb\x7c\x4f\x17\xe9\xf1\x44\x44\x53\x53\x53\xf4\xec\xb3\xcf\xd2\x53\x4f\x3d\x45\xe5\x72\x59\x10\x51\x86\x88\xf2\x42\xa2\x7c\x68\x3b\xf7\xc0\x27\xaf\x0e\xfd\x37\x67\xee\x94\xfe\xab\x7c\xcb\x99\xa2\xa8\x13\xf5\x9b\x43\x43\x26\x45\x34\x52\x73\x1f\xdc\xc9\x07\x57\x56\xfb\x5a\x0b\x08\xd7\x90\x05\x93\x93\x93\x98\x9b\x9b\xa3\x48\xc5\xf9\x3b\x81\xc1\x12\x66\x73\x02\xa5\xd9\x76\xa6\x24\xd6\xd5\xe3\x3d\xc4\xab\x5f\xa9\xa5\x37\x2e\x0d\xe1\x53\x0d\xe8\x94\xf8\xb8\x8c\xa5\xa5\x25\xce\xe5\x72\x34\x36\x36\xc6\x00\xfc\x68\xd2\x2e\x08\x1c\x04\x37\x07\x9b\x4b\x63\xd5\xec\x91\x72\xc3\x19\x8d\x75\x24\xd5\xf4\x18\xfd\xa8\x0d\x2a\x50\x22\x15\x42\x81\x90\xe4\x8b\xce\xf1\x49\x44\x0d\x54\x38\x21\x1b\xd0\xe8\x64\x25\xf7\xe9\xe3\x6b\x85\x47\x41\xd8\xd9\x2a\xb4\x36\x02\x27\x44\xf4\x6c\x36\x8b\x43\x87\x0e\xe1\xa1\x87\x1e\xe2\xbe\xbe\x3e\xf2\x7d\x9f\x76\x76\x76\x80\xbd\x83\xa2\x0f\x30\x19\x7f\xaa\xef\xcc\xc1\xd4\x6d\x07\xb3\xac\x34\x69\x6c\xba\x12\x75\x37\xab\xde\xbf\xfa\x38\x48\x44\xc6\xf2\xf4\xf4\x34\x3d\xfb\xec\xb3\x78\xf8\xe1\x87\x51\x2a\x95\x84\xe3\x38\x19\x66\xce\x13\xa8\xef\x40\x35\x73\xec\x99\xb9\xc1\xff\xe4\xa9\xf9\x81\x7f\x36\x54\x77\x9f\xa2\xf0\x44\x0c\x20\x5a\x70\x96\x08\x5c\x8a\x4f\xc4\x10\x8c\xdc\xf8\x4e\xee\xc1\x5b\x03\xcd\x37\x77\x73\xc1\x26\x00\xbf\x54\x2a\xc9\x4c\x26\xa3\xdb\x13\xf7\x0c\x06\x2d\x0f\xb4\xb4\x69\xb6\x92\xcd\xfb\x67\x22\xbe\x5e\xbe\x99\x07\x40\xfb\xd2\x8d\x34\x31\x64\xe3\x62\x7b\x0c\x68\xa3\x81\x56\x3d\x6d\x71\x71\x91\x8f\x1c\x39\x82\xbe\xbe\x3e\x8e\x5c\xb1\x01\x33\xfb\xbe\x0b\xff\xd6\x60\x73\x65\x74\x37\x3b\x39\xd0\x70\x46\xe3\xf5\x4e\x88\x0f\x2a\xd1\xd4\x27\x75\x6c\x4d\x62\x6c\xe8\x87\x17\x90\x76\xfe\x0d\x47\x50\x91\x9e\x26\x2a\x35\xef\x3b\x53\x53\x9b\xf9\x17\x8f\x6d\x14\x1e\x91\x40\xb5\x92\x0f\x2a\xbe\xc3\x81\xea\xa0\xd1\xd1\x51\x3e\x79\xf2\x24\x4f\x4f\x4f\x23\x9f\xcf\xd3\xd2\xd2\x92\xee\xde\x34\x19\x86\x29\x19\x61\x89\x37\xa5\x8c\xad\xff\xcc\x7c\x3a\x42\xd9\x0c\x54\x18\xf9\x18\x00\x9e\x7c\xf2\x49\x7a\xf6\xd9\x67\x71\xf2\xe4\x49\xd1\xd7\xd7\xe7\x20\xf4\x1e\xe5\x89\xd1\x3f\xba\x9b\x3d\xfa\xe4\x8d\x81\xff\xf0\x99\xb9\x81\xff\x7e\x62\x27\xfb\x59\x47\x8a\x7e\xa2\x70\x57\x5a\x72\xb1\x0d\x45\xf6\x58\x72\x5c\x90\xaa\x2d\x23\x69\x78\x74\x37\x73\xf0\xda\x68\xfd\x75\xdf\xe1\x3a\x11\xf9\xa3\xa3\xa3\x41\x64\x8b\xdd\x33\x18\x8c\x3e\x35\xc3\xd5\x63\x63\xe2\xb6\xb1\xd1\xcb\x37\x25\x4d\x5b\x1e\x73\x2d\x93\x5e\x89\x4d\x15\xb0\x01\x6c\x6b\xa0\x4d\x47\x14\x00\xf8\xf2\xe5\xcb\x3c\x35\x35\x85\x62\xb1\x28\x95\x94\x20\x22\xbf\x19\xde\x41\x7c\x67\x74\x37\x73\x68\xa0\xe1\x8e\x42\x0d\x44\xf4\xc4\x24\xac\xf3\xe7\xf6\xd7\xe4\x3b\x31\x27\x92\x78\x4b\x3e\x62\xca\xf4\xb5\x9c\x63\x33\x9b\xf9\xcf\x1e\xdd\xc8\x9f\x75\x24\xb5\x2a\x79\x7f\x5d\xed\xd7\x25\x22\x14\x8b\x45\x3a\x7c\xf8\x30\xce\x9d\x3b\x87\xc9\xc9\x49\xba\x72\xe5\x8a\xd9\x17\x0a\xee\x6e\xb3\xd4\x80\xbd\x1f\xd3\x98\x88\x9e\xbe\x23\xa3\x01\x80\x8f\x7f\xfc\xe3\xe2\xa9\xa7\x9e\xa2\xa7\x9f\x7e\x9a\xc6\xc7\xc7\x85\xeb\xba\x0e\x33\x67\x88\x28\x0f\x46\x69\x7c\x27\x7b\xfc\xa9\xf9\x81\xff\xf8\x99\xb9\x81\x7f\x3a\x59\xc9\x7d\x2e\x23\xc5\x30\xa2\x95\xfa\xaa\x43\x62\x27\x05\x12\xbb\xad\xcd\x03\x18\x11\x4e\xc9\x73\x66\xb2\x01\xd5\x23\x7b\xa2\x41\x44\xf2\x81\x07\x1e\xe0\x68\x9e\xe0\xae\x61\xb0\xbc\xa7\xcd\xea\xdb\x24\xb1\xf9\x74\x33\xdc\xad\x79\x08\xed\x88\x6f\xe3\x58\x69\x8f\xe9\x47\xee\xe4\x6b\x87\x19\xfe\xdb\xbf\xfd\xdb\x62\x60\x60\x40\x20\xbc\xff\xba\x0c\x60\x0c\x8c\xa9\xbc\x2f\xee\xff\xe4\xd5\xa1\xdf\x3e\xb9\x5a\x78\x54\x68\x18\x1c\xcf\x4d\xc4\x97\x3c\x26\x50\x51\xdb\x8b\xf1\x6e\x52\x42\x6a\x10\x03\x80\x5f\xcb\xc8\x0f\x67\x0f\xd4\xfe\xcd\xe5\x03\xb5\xef\xad\x96\x5a\x0b\x2d\x97\x6b\xcc\xec\x11\x91\x8f\xd0\x6d\x2c\x99\x59\x7a\x9e\x87\xb9\xb9\x39\xfc\xe8\x47\x3f\x92\xa3\xa3\xa3\x62\x6d\x6d\xcd\x36\x67\xb3\x07\xee\x2e\xef\xe6\x63\x33\x52\xe3\xef\x4f\x7f\xfa\xd3\x62\x7a\x7a\x5a\x49\x40\x11\xc5\xbb\xcc\xec\x12\x28\xdb\xe7\x39\x83\x47\x36\x73\x67\x1e\x5a\xea\xfb\xd2\xc4\x4e\xf6\x05\x57\xd2\xa8\x02\x9c\xf4\xd3\xc0\x10\x09\x55\x6d\x02\x48\xdf\x93\xd2\xbe\x15\x38\x4c\xe3\x0b\xae\x9c\x3f\xbe\xf9\x8f\xdf\x3f\xb8\xfb\x32\x83\x37\x88\xa8\xb1\xb6\xb6\x26\xff\xec\xcf\xfe\xcc\xa6\x52\xa7\xc2\x90\x92\xb6\x93\x6a\xde\x0b\x6e\xf6\x52\x97\x19\x2f\x00\x48\x93\xc1\x76\xcd\xb0\x8f\xc6\x98\xe5\x40\xcf\x7f\xe8\xd0\x21\xf1\xe2\x8b\x2f\x2a\xb7\x5f\x16\x8a\x28\x80\xa9\x5c\x8b\xee\x7b\x7a\x6e\xf0\x37\x1f\x5a\xea\x7b\xd2\x91\x24\x62\xa5\x56\x7b\xda\x16\x08\xaa\xb0\x48\xe4\x5b\x89\x24\x4e\xb3\x97\x56\x54\x59\x09\x3e\xb0\x6c\x39\xbc\xb2\xd6\xd7\xfa\xe9\xec\x68\xed\xcf\x6f\x0c\x35\x2f\x6c\x15\x5a\x6b\x81\x40\x0d\x14\x5e\xec\x87\x88\x38\x88\x08\x52\x4a\xb9\xbd\xbd\x0d\x20\xbc\x69\xe9\x8d\x37\xde\xb8\xdb\x7e\x82\x10\x42\x44\xa7\xab\x43\xcd\xca\x9e\x39\x73\x46\xe4\x72\x39\xcc\xcc\xcc\xc0\x75\x5d\xf4\xf7\xf7\xeb\x7d\x2a\x10\xaa\x44\x2e\x18\xd9\x9c\x4f\xc5\xf1\x6a\x76\xea\xc4\x6a\xe1\xb9\xa9\xcd\xfc\xaf\xf5\x37\xdd\xd3\x82\xa9\x64\x5a\x95\x1c\xdb\x5b\x1d\x50\xc0\xd2\x7f\x49\x9f\x01\xbb\xb9\x60\xf6\xdb\xa7\xd7\xfe\xb3\x95\x92\x77\x11\x84\x0a\x00\xef\xea\xd5\xab\xf2\xfb\xdf\xff\xbe\x9e\xa3\xdb\x44\xa6\x2d\xcc\x46\x18\x9d\xe2\x7b\x65\x36\x69\x44\x15\xa7\x23\x23\xa1\x0e\x84\xc9\xe5\x6c\xdf\xdd\x66\x26\x6d\xf9\xda\x9e\xdf\xfb\xbd\xdf\x13\x99\x4c\xc6\x8d\x2e\x74\x2c\x01\x18\x63\xe6\xc3\x0e\xd3\xb1\x73\x37\xfb\x7f\xed\xf1\x9b\xe5\xe7\xb3\x81\xc8\x02\x6a\x40\xa3\x81\xb4\xbd\x31\xc2\xc3\xce\x12\xc4\x8e\x09\x24\x8c\x67\xed\x2a\xaf\x64\x96\x9b\xa3\x11\x0e\x89\x22\xca\x93\x50\x8d\xf4\x1c\x5e\x58\xeb\x6b\xfd\xed\xfc\x48\xfd\xd5\xc5\x81\xe6\x7b\xeb\x7d\xad\xdb\x9e\xcb\x6a\x93\xbb\x1f\x5d\x33\xa6\x60\x93\x08\x89\x25\xac\x33\x24\x18\x2c\x2c\x2c\xb4\xc1\xfd\xdd\xef\x7e\x57\x02\xc0\x0b\x2f\xbc\xd0\xd6\xf7\xc5\x62\x11\x63\x63\x63\xf1\x77\x44\xac\x3a\xf2\x0b\x66\x16\x51\x58\x16\x0c\xb7\xe4\x39\xa5\xb1\x9d\xcc\xcc\xf4\x66\xfe\xc9\xa9\xcd\xfc\xa7\xfa\x1b\xee\x23\x0e\xd3\x70\xdc\x0f\x11\x12\x93\x86\xcc\xa1\xe3\x21\x61\x34\xac\xc1\x9f\xf8\xbd\xa3\x13\xf5\x54\x1e\xd5\x5b\xb1\xcb\x9b\x71\xa7\xdf\xfb\xee\x77\x4e\xaf\xfd\xe3\x7a\x56\x2e\x02\xa8\x04\x41\xe0\x7f\xf5\xab\x5f\x4d\x43\x56\xf3\xb1\x21\xb6\xfe\xd8\xf2\x77\xf2\x28\xf5\x92\x27\x2d\x4e\x00\x7b\xe9\xbf\x53\x85\xbd\xa4\xe9\x45\xac\xb5\x35\xee\xd0\xa1\x43\x78\xe1\x85\x17\x90\xc9\x64\xf4\x5b\x4e\x47\x01\x4c\x12\xe3\xd8\x7d\x2b\xc5\xa7\x7f\xf9\xda\xe0\xe7\x8b\x2d\x51\x6e\xe7\xfe\x89\xfb\x15\x88\xc7\xaf\x0d\x22\x53\x8a\x30\x18\xa6\x6d\x12\x9f\x3c\x4d\xe9\x79\x12\xa2\x62\xdf\x17\xbc\x51\xcd\x05\x97\x96\xfb\xbd\x37\x6e\x0f\x78\xef\x2e\xf7\x7b\xb3\x95\x9c\xbf\xd6\x70\x65\x95\x45\x28\x39\x80\xf8\x57\xf5\x85\x34\xca\xed\xd4\x77\xfa\x7b\xbb\x14\x60\xb8\x8e\xa4\x6c\xc1\x17\xa5\xe1\x5d\x77\x62\xbc\x9a\xbd\xff\xf0\x56\xfe\xf1\x91\xdd\xcc\x63\x85\x96\x38\x26\x18\x25\x8a\xf3\xe8\x27\xb0\xf7\xae\x36\xb6\x2b\xa3\x2a\x9d\x55\x17\x55\x79\xe4\xfb\x07\x77\xff\xe5\x0f\x4e\x6c\xfe\x2b\x29\xb0\x02\xa0\xb6\xbe\xbe\x2e\xbf\xf9\xcd\x6f\x76\x52\xc3\x3b\x31\x50\x5b\xbc\xed\xb1\x11\x40\x2f\xe5\x74\xac\x5b\x87\x2e\x8d\x5a\x6d\x80\xa5\xd9\x1d\xdd\xc4\x9e\x59\x17\x00\x88\xc3\x87\x0f\xe3\x97\x7e\xe9\x97\x30\x32\x32\x12\x72\x3d\xa0\xc4\xcc\xc3\x00\x26\x09\x34\x75\x68\x3b\xfb\xf8\x73\xb3\x43\x5f\x18\xdd\xcd\x4c\x86\x59\x74\xde\x9e\x70\x2b\xdb\x49\x81\xba\xea\xd4\x76\x9e\x60\xac\x27\x47\x25\x1a\xea\x53\x5b\x19\xba\x9b\x20\x76\xb8\x30\x18\xf0\x02\xc1\x1b\xf5\x8c\x5c\xd8\x2c\xfa\x57\x2a\x79\xff\xea\x4a\xc9\xbb\xb2\x9d\xf7\x17\xab\xb9\x60\xad\x9a\x0b\x6a\x9e\xc3\x5e\x04\x6b\x1b\x81\x60\xef\xa3\x6c\x00\xf5\xee\xe6\x7d\xca\xf6\x37\xdc\x52\xc9\xf6\x5e\x6e\x19\x00\x00\x10\xcd\x49\x44\x41\x54\x73\xc6\x86\x6a\x99\xa9\xd1\xdd\xcc\xa9\xc1\xba\x7b\xff\x40\xdd\x3d\x96\xf3\x00\xca\x10\x35\xef\xc5\x61\x87\x51\x06\xc8\x55\xba\x7f\xdb\xf2\x97\x98\xc0\xdb\xc3\xf4\x8b\x31\xdb\xc2\x34\x89\xa1\x09\x8e\xa8\x0c\x4e\x0c\x6e\x93\x26\xc2\xc3\xc7\xb6\xce\x9f\xd8\xfa\x83\x8b\x07\x77\x5f\x06\x42\xd5\xe9\x0f\xff\xf0\x0f\xef\x5a\x6d\xc4\xfe\x99\xf2\xdd\xa8\xf3\xd6\xfc\xca\xa8\x06\x3a\xab\x3a\xfa\x93\x96\xae\x93\x88\x4a\x4b\x1b\x13\x4d\x36\x9b\xc5\x67\x3e\xf3\x19\x75\x4a\xb4\x8b\xf0\x40\xb2\x61\x00\x13\xcc\x3c\x55\xf2\x9c\x13\x9f\xb8\x3e\xf8\x1b\xf7\xad\x16\x1f\x21\x09\xa1\x7b\x44\xda\x45\x3f\xda\xb9\x3d\x10\x0e\xb2\x86\xcd\xc9\xf4\x44\xb2\x36\x2a\xe6\xa8\x11\x62\x70\xd4\x3b\x6a\xf3\x7b\xa2\xa0\x25\xe9\x54\xf9\x6a\x1d\x55\xa8\x6e\x40\x32\xe0\x49\x42\x2d\x10\xbc\xe6\xb9\x72\xad\xe9\xca\x8d\xba\x2b\x37\xea\x19\x59\x69\x66\x64\x55\x12\xfb\x92\xd0\xe2\xd0\x88\x13\x82\x91\x71\x24\x65\xf3\x2d\x51\xca\xf9\xa2\x5c\x6c\x39\xc3\xf9\x96\x18\xcb\x48\x1a\x76\x24\x0d\x13\xa3\x48\xa1\x7a\x64\xd1\xf9\x35\x2a\xa5\xbd\xc1\xf1\x67\x4a\xbf\x24\x49\x35\x79\x62\x12\x44\x0a\xe3\x51\x12\x57\x0a\x78\xb3\xa3\xb5\xff\xf3\xaf\x1e\xdc\xf8\xe7\x08\xf7\x30\x34\x5e\x7f\xfd\x75\xf9\xfe\xfb\xef\x77\x63\x9a\xb6\x38\x58\xe2\x7b\x61\xd0\xb6\x38\xb3\x2c\xb3\xcc\x3d\xef\x66\xef\x76\xd3\xd7\xf6\xfb\x6d\x7b\x3a\xe6\xf9\xc2\x17\xbe\x20\xc6\xc6\xc6\x14\x51\xe4\x01\x0c\x22\xf4\x40\x1d\x76\x25\xcd\x9c\x5d\x2c\x7d\xfa\xd1\xc5\xfe\x5f\xce\xfb\xa2\x08\x40\x1b\x1c\xbb\xfe\xa7\x3f\xed\x7e\x15\x7b\x58\x17\xbc\xea\x29\x4f\x5a\x39\xe9\xad\x4a\x52\x5a\x61\x30\x31\x34\xad\xd6\xd4\xc6\x1b\x22\xae\xd3\xd3\xc9\x23\x61\x84\x31\xc2\xa3\x61\xde\x9c\xaa\x7c\xe3\xe2\xc4\xee\xbf\x69\xb9\x7c\x05\x76\x82\x30\x9f\x5e\xec\x8b\x7b\xf1\xec\xbb\x1e\xf3\x06\x21\x95\x99\x90\x40\x4e\x5a\xbc\xfe\x0d\x2d\x5c\x85\xb1\x91\x5f\x7d\xeb\xe1\x52\x0b\xdb\x53\xc6\x87\x1f\x7e\xc8\x00\x30\x39\x39\x19\x6e\x44\x0f\x37\x8e\x78\x20\x34\xa5\x40\xfd\xf6\x80\x77\xe7\x4e\xb9\xb9\x32\xba\x9b\x99\x28\x79\x4e\x39\x76\x23\x42\x1b\x76\x65\x20\x1a\x8d\x4d\x00\xea\x80\x18\x89\x7f\x37\x46\xc2\x76\x05\x2a\x24\x42\x3d\x77\xbb\x06\x61\x43\x5e\x3d\xbf\x0d\xf9\x13\x0e\xaf\x16\x29\xc6\x46\xbe\x61\xc4\x86\x12\x4b\x33\x80\x91\x48\x8d\xf8\x9a\xe3\x68\xb6\x99\xa3\x38\x75\x8f\x9f\xb6\x58\x3e\xe9\x83\x3d\xb4\x92\xcc\xfc\x27\x52\x95\x63\x69\xa9\xfa\x45\x82\xb1\x54\xf6\xe6\xbf\x7b\xff\xc6\x9f\xcc\x8e\xd6\x7f\x14\x08\xbe\x83\x70\xa7\x5b\x83\x99\x5b\x8b\x8b\x8b\x58\x59\x59\x31\x71\x00\xb0\xab\xe6\x7a\x9c\xc9\x3b\x04\xf6\xe2\x51\x1a\x7f\x31\xd3\xe8\x38\xd6\xd3\xa3\xdf\x20\xa4\x23\xb5\xea\x1e\x69\x74\x97\xfe\x0d\x2d\x9f\x4e\x7d\x7a\x19\xea\x5b\x01\x6f\x36\x50\x58\xd2\x8b\x3b\x77\xee\xc8\x56\xab\x45\x87\x0e\x1d\x92\x14\xde\x41\xe1\xc7\xbb\xa7\x08\xcd\x9d\x5c\xb0\x79\x6d\xb4\x7e\x5d\x30\x65\x47\x6a\x99\x31\x97\xc9\x35\xd5\x9f\x78\xf9\xb8\xee\x75\x32\x54\x85\xb0\x25\xea\x2e\x82\x08\xf9\x29\xf9\x25\x20\x59\x3b\x15\xe7\xd3\x11\x52\x15\x95\x20\x3a\x69\x75\xab\x32\xc2\xfa\x39\xba\x7b\x2f\xf4\xeb\x2b\x3d\x3e\x0e\x43\xa2\xca\xc5\xb3\xf3\xa4\xf2\x26\x75\xb6\xb5\x11\xd4\xd6\x8e\xb0\x4c\x5d\xfd\x53\xf9\x10\x13\x45\xd2\x17\x68\xab\x23\xc1\xf5\xbd\x75\xeb\x7d\xc3\x04\x34\x5d\xae\xbd\x75\x64\xe7\xfc\x0f\x4e\x6c\x7e\x73\xbb\xe0\xbf\x0f\xa2\x05\x00\x2b\x00\x2a\x44\xe4\xb5\x5a\x2d\x79\xfe\xfc\x79\x04\x41\xa0\xf0\x42\x27\x0c\x15\x66\xc3\x05\x5d\x8d\x31\xd3\xeb\xf8\x09\x23\x5d\x3c\x9a\xe8\x2c\x0d\xd2\x88\x2a\x66\xc8\xb6\xfd\x10\xe6\xb7\x0d\xb1\xf5\x82\x6c\x06\xb3\x59\x99\xce\x09\x4c\xe9\x60\xe6\x63\x00\x58\x5e\x5e\xa6\xb7\xdf\x7e\x5b\x3e\xf0\xc0\x03\xc8\x66\xb3\x89\xa4\x00\x9a\x0c\x6e\xf8\x2e\xea\x37\x07\x1b\x37\x57\xfa\x5b\x6b\x23\xb5\xcc\x78\xb1\xe5\xf4\x03\x94\x20\x61\x84\x61\x21\x62\x84\x15\xa8\x25\x21\xba\x56\x10\x72\x42\x63\x1b\xab\x06\x7c\x98\x25\x71\xc3\x52\x5c\x9e\xee\xe1\x8a\x10\x46\x19\xa5\x50\xe5\x42\x43\x74\x7d\xf9\x08\x12\xe6\xac\x7b\x70\x34\x99\xac\xd6\x15\xe9\x2e\xe0\xf0\x9d\x11\x9f\x84\x08\xc5\xb9\xd1\xe6\x6e\x56\x07\x48\xb3\x3e\x0b\x4d\xb1\xa7\x2c\x21\xc0\x28\x73\xd8\x0e\xdd\x1e\x4a\x28\x36\x6e\x5e\x24\x31\x96\xca\xde\xfc\x6b\x27\x37\xff\xfc\x17\x13\xb5\xef\xfb\x0e\x66\x23\x62\x58\x22\xa2\x6d\x22\xaa\x33\xb3\xff\x47\x7f\xf4\x47\x32\x08\x02\x93\x08\x4c\x0d\xc4\x86\x0b\x3a\xee\x69\x1d\xd3\x36\x24\xc2\x08\x33\x19\x74\x9a\x34\xe9\x24\x99\x62\xed\x46\x5f\xfe\x6d\xf3\x30\x99\xa2\xa6\x53\xe5\x69\x61\xea\xbb\xad\xe2\x94\x74\x80\x41\x18\xef\xbd\xf7\x1e\x0f\x0d\x0d\x61\x68\x68\x88\x11\x11\x45\x24\x96\xeb\x10\x54\xdb\x2e\xf8\xeb\x57\x0e\xd4\x67\x5b\x0e\xfb\xa3\xbb\x99\x71\x57\x52\xd6\xdc\x81\xd7\xf6\xa6\x7b\x91\xda\x7f\xa2\x94\xc9\x09\x1f\x0a\xa5\xd5\x7f\x5d\xe1\x30\x3b\x45\x97\x3c\xb6\x54\x6d\xaa\x8a\x45\x15\xe3\x36\xe4\x53\xdc\x3d\x6a\x87\xe6\x4f\x0e\x89\x5a\x11\x8a\x22\x02\x05\x88\x0a\x4f\xa4\x64\x1b\x65\x9b\x2a\x56\x9c\x46\x79\x91\x12\x95\xa8\x9d\x20\x19\xbb\x59\x59\xf9\xd9\xf4\xf6\xab\x3f\x3c\xbe\xf5\xad\x8d\x62\xeb\x3d\x10\x5d\x03\xe2\x73\x92\xb6\x81\xf0\xf0\xe1\x8b\x17\x2f\x62\x71\x71\x51\x67\xa4\x3a\x72\x9b\x5d\xa2\x06\x47\x1f\x73\xd3\x99\x63\xe2\x8f\x8e\x83\x26\x23\xd7\x99\xb8\xae\xe2\x2b\x2d\xc6\x26\x71\xf4\x7c\xa4\xaf\x76\x85\x51\x60\x1a\xb2\x9b\x8f\x49\xb9\x69\x52\xc4\x04\x5c\x2f\xaf\x13\x61\x88\xeb\xd7\xaf\x4b\x00\x18\x1b\x1b\x53\xc7\x97\x78\x44\xd4\x44\xb4\x29\x3d\x70\x78\xf7\xf6\x40\xf3\xd6\xc2\x50\x63\x31\xef\x3b\x7d\xe5\x86\x33\x28\x98\x9c\x04\x09\x93\x71\xd0\x39\x37\x42\x66\xdb\x36\x32\x64\x1b\xbf\x08\xa1\xf6\xa2\xb1\x91\x57\x97\x10\x46\x7c\x92\x33\x41\x3a\x3d\x26\xe6\xec\x4a\x65\xe1\xa4\xbd\x4a\x22\xc4\x6a\x9f\x22\x04\x0d\x9e\xa8\x94\x64\x49\x7c\x9b\x0a\xa4\x62\x11\xe7\x45\x9c\x26\x29\x4f\x49\x2c\x75\xc2\x22\x08\x68\x39\xec\x5d\x19\xab\xbf\xfb\xda\x7d\x9b\xdf\xba\x3e\xd2\xf8\x71\xe0\x60\x16\xc0\x02\x85\x47\xc4\x6c\x00\xa8\x32\x73\xd3\xf7\xfd\xe0\xab\x5f\xfd\xaa\x8c\x88\x41\x7f\x14\x32\xaa\x5f\x36\xfe\xa0\xfd\xea\xdd\x6a\xaa\xd8\x36\xdc\x82\x11\x6e\x96\x63\xab\xc7\xd4\x80\x54\x5d\x08\x47\xe0\xde\x3e\x36\xf7\x5a\x37\x9d\x2e\x6d\xfe\xc2\x5a\xae\x5a\x03\x15\xed\xd3\xce\x22\xbc\x44\x65\x18\xe1\x64\xde\x84\x90\x98\x9c\xda\xcc\x3f\xfc\x4b\x37\xca\xcf\x8d\xef\x64\x0f\x0b\xa8\x59\xde\x88\x3f\x6b\x58\x1a\x23\xb3\x8e\x9f\x51\x7c\xd2\x63\xed\x24\xb5\xc7\xe6\x36\xf6\x67\x28\xc2\xb1\xd9\x17\x89\xb1\xaf\xcf\x00\xb7\x3b\x00\x10\x37\x63\xaf\x44\x6a\x77\x79\x6a\xe9\xe3\xc6\x9a\x84\xa6\x97\x97\x30\x01\x74\x19\x75\x06\x20\x89\xe5\xed\x72\x73\xfe\xcd\xe9\xca\x0f\x6e\x0e\x34\xdf\x67\x81\xdb\x00\x96\x00\xac\x21\x3c\x1a\xa6\x8a\x50\x2a\x48\x63\x0d\xd3\x7e\xe7\x07\x7a\x55\xc3\x3f\xaa\x37\xb3\x5b\x39\x02\xa1\x1b\xdc\xea\xe7\x4d\x43\xe6\x34\x04\x86\x51\x46\xaf\xe5\xc0\xc8\x03\xa4\x77\x66\xfc\xfd\xcc\x33\xcf\x88\x07\x1f\x7c\x50\x85\x65\x91\x2c\x10\x54\x2e\xda\x89\x4c\x40\x93\x27\xd6\x0a\xe7\x1e\xbe\x5d\x7a\xf2\x40\x35\x3b\xe9\x68\x97\xfc\x91\x81\x38\xba\x78\x54\x52\x03\x40\xdb\xcc\xf7\x1e\x84\x8d\x02\x92\x5b\x32\xf7\x22\xb6\x6d\x22\xb0\xfd\xc6\xcd\x76\x96\xd6\x86\xa7\x5a\xa3\xf4\xc9\x35\xa5\xfd\x98\x0d\x6a\x9b\x3c\xeb\x14\x66\xd6\x63\x3c\x01\xb1\x5c\xee\xf7\x16\xdf\x3e\xbc\xf3\xe3\xf9\xe1\xc6\xbb\xbe\x90\xb7\x41\xa4\x08\x61\x03\x09\x21\x78\x52\x4a\xf9\xde\x7b\xef\xe9\x6b\xb7\x3e\xaa\x1b\xb5\x17\x24\xee\x25\xac\xd7\x76\xec\x49\xd7\x4d\x42\xdc\x0d\x65\xa6\x95\x61\x2b\x0b\x1d\xca\xb3\x01\xd8\x56\xc6\xe7\x3f\xff\x79\x11\x4d\xe4\x09\x84\x44\xa1\x08\x63\x18\x21\x61\x8c\xe5\x7c\x71\xf8\xe4\x5a\xe1\xec\xc7\x6e\x97\x9e\x38\xb0\x9b\x99\x20\x86\x20\xa5\x0f\x18\x88\xb5\x87\xc1\x86\xd4\x03\x44\x7b\x05\x12\xb5\x29\x89\x42\x54\x54\xbb\x2b\x54\x43\xf7\x36\xc2\x63\x24\x06\x31\x10\x6f\x6e\x32\x90\xb6\x2d\x7d\x9b\xc2\x17\xd7\xdc\x4e\x78\x6c\x27\x12\x13\x8c\xf8\xdd\x20\x72\x06\x43\x12\xe4\x6a\xc9\xbb\x7d\x61\xb2\xfa\xb7\x73\x23\xf5\x77\x9b\x19\x5e\x44\xe8\x39\x5a\x41\x42\x08\x35\x44\x77\x32\x54\x2a\x15\x19\x5d\xa9\x96\x86\x13\xfb\xe5\xe2\x77\x8b\x6b\x5d\xb9\xfe\x7e\xca\xd0\x25\x44\x5a\x01\xdd\x54\x9f\x34\x09\x03\xf4\x06\x6c\xa7\xf7\xb4\x32\x04\x00\xe9\xba\xae\x38\x7d\xfa\x34\x9e\x78\xe2\x09\x15\xe6\x02\xc8\x32\x73\x91\x88\x06\x99\x79\x90\x88\x46\x01\x8c\x65\x7d\x9a\x9c\xd9\x28\x7c\xec\xf4\x9d\xbe\x47\x0f\x56\xb2\x33\xae\x24\xb7\x9d\x4b\xab\x35\x4b\xc9\xaf\x89\x8c\x7a\x98\x29\x09\x94\x7d\xb0\x57\xf5\x41\x14\x63\x10\x8d\x52\xad\x74\x35\x88\x91\xb4\x80\x38\xd9\xb1\xa6\xb9\x79\x01\xd6\xec\x00\x5d\x85\xe3\xb6\xb4\x40\xa2\xc2\xa1\x4d\x2d\x63\x6d\x5e\x02\xf0\x05\xfb\x8b\x03\x8d\xeb\x17\x0f\xee\xfe\xfc\xc6\x70\xe3\x03\xdf\xe1\x25\x84\x44\xb0\x06\x60\x23\x3a\x62\x52\x11\x82\xef\xfb\xbe\xfc\xd9\xcf\x7e\x86\x0f\x3e\xf8\xa0\xd3\xf8\xea\xe3\xac\xd2\xed\x07\x39\x6d\x65\xef\x87\xc0\x4c\x4d\xa5\x53\x9a\x54\x95\x09\x96\xf7\x6e\x0d\xeb\xd6\xc8\x7d\xab\x43\x5d\x9e\xd4\x7c\xcf\x3f\xff\xbc\x98\x9e\x9e\x46\x26\x93\x51\x6a\x54\x16\xe1\xf2\x8f\x32\x33\x0f\x13\xd1\x30\x18\xa3\xae\xa4\x89\xf1\x9d\xcc\xf1\xd3\x77\x4a\x4f\x1c\xd9\xca\x1f\x2b\x7a\xa2\xa4\x4f\xb4\x75\x5a\xb6\x90\x84\xa1\x8d\x22\xc8\xcc\xa8\xab\x5d\x46\x5a\xbd\x92\x98\x73\xc7\x12\x2a\x22\xb8\x58\x3d\x6a\x5f\x81\xab\x08\x40\xd9\x0b\xf1\xbc\x4b\x9a\x14\xda\xa3\xce\xc5\x24\x81\xdd\x6c\x50\x99\x1f\x69\x5c\xf9\xc5\x78\xed\xc2\x72\xa9\x79\x35\x10\x58\x01\x61\x0d\x91\x8d\xa0\x11\x42\x03\xe1\x8a\x5e\x79\xf9\xf2\x65\xfc\xf0\x87\x3f\xec\x05\x39\xbb\x49\xf7\xfd\xe4\x57\xdf\xe8\x90\x7f\x3f\x9a\x4b\x47\x02\x23\x4b\xc2\x5e\x1a\xd7\x4d\x7f\x03\xec\x1d\x02\x2d\x2e\x8d\x7b\xa4\x75\x66\xa7\xbc\x71\x7d\x5f\xfe\xf2\x97\xc5\xd0\xd0\x10\x88\x28\xdc\x23\x10\x11\x06\x33\x97\x23\xa9\x31\x0c\x60\x58\x80\x46\xcb\x0d\xe7\xc8\xd1\xf5\xc2\x83\xf7\x2f\xf7\x9d\x1e\xdd\xcd\x4c\xb8\x4c\x2e\x60\xda\x14\x11\xff\xa7\x04\xb9\xf7\xe8\xf1\x11\x66\xb3\xa6\x0e\xb5\xa9\x31\x0a\x11\xc9\x94\x14\x9a\x81\x1e\x55\x68\x72\xfa\x36\x09\x10\x13\x85\x29\x25\xda\xbf\xdb\x56\x02\xc7\xc4\xc7\x08\x88\xfd\x95\x52\xeb\xf6\xd5\xb1\xda\xa5\x6b\x23\xf5\x8b\x3b\xf9\xe0\x26\x13\x36\x90\xd8\x07\xca\x58\xae\x01\xf0\xa2\x09\x51\x7f\x65\x65\x05\xdf\xfa\xd6\xb7\xd2\x6c\x3e\xdb\x93\xc6\xa5\xd3\xec\x54\x5b\x58\x1a\x3e\xd9\xca\xe9\x54\xb7\x59\x76\x47\x18\x4c\x8d\xd3\x6c\x50\x2f\xe2\xaa\x57\x95\xab\xd7\xb0\x5e\x0d\xf9\x54\x42\x9a\x99\x99\x11\x8f\x3d\xf6\x18\x86\x87\x87\x01\xb5\x79\x26\x31\xbe\x4b\x48\x0c\xf0\x61\x30\x86\x05\x63\xf8\x40\x35\x3b\x7d\x62\xad\x70\x7a\x6a\x33\x7f\x6c\xa8\xe6\x8e\x66\x64\x74\xab\x0d\xf6\x76\x92\x4d\x2d\xda\x23\x25\x3a\x3c\x86\x30\x89\x1d\x44\x40\xbb\xe7\xca\x34\x73\xf4\x34\xb1\x7a\x45\xed\xd2\x4d\x37\x47\x18\x8c\x96\xc3\xde\x66\xc1\x5f\xbb\x31\xdc\x98\x9d\x1d\xad\x5d\x5a\xed\x6b\xcd\x31\x61\x03\x84\x0d\x66\xde\x22\xa2\x2d\x84\x84\x50\x43\x62\x23\xf8\x00\xe4\x9d\x3b\x77\xf0\xd6\x5b\x6f\xe1\xf6\xed\xdb\xfb\xe1\xf0\xfb\xd1\xe9\xf7\x63\x7f\x74\xc2\xc5\x6e\xb8\xd3\x4b\x5b\x00\x74\x37\xaa\x7b\x79\x7a\x15\x7f\x77\x6d\xf9\xa7\xc4\x75\x4d\x77\xfc\xf8\x71\xf1\xc8\x23\x8f\x60\x78\x78\x58\x6d\xa8\x51\xea\x54\x1e\xa1\x3a\xa5\x13\xc7\x20\x18\xc3\xd9\x80\x86\x47\x77\x33\x47\xa6\x37\xf2\xf7\x1d\xda\xce\x4d\x8d\xec\x66\xc6\x72\xbe\xc8\x13\x20\x48\x9f\xb4\x30\x1e\x53\xfd\x69\x8f\x30\x82\x14\xd7\x87\x8e\xbc\x86\x7a\xd5\xa6\x32\x45\xd6\x49\x5c\x8e\x3e\xf7\x90\xe4\xe1\x50\x29\x92\x4d\x57\x36\x36\xfa\xfc\xb5\x85\xc1\xc6\xf5\x85\xa1\xc6\xec\x7a\x5f\xeb\xa6\xe7\xf0\x1a\x23\x21\x80\x48\x25\x52\xd2\xa0\x81\x50\x22\x48\x66\xf6\x57\x56\x56\x70\xe1\xc2\x05\x2c\x2c\x2c\xd8\x74\xed\x3d\xfd\x6c\xef\x91\x38\x5e\xe5\xed\x24\xf9\x3b\x49\x87\x5e\xf2\xa4\xb5\x29\xcd\x5e\x48\x85\x81\xb4\xc4\xea\x49\x13\x39\x69\x95\xd9\x0a\x4f\x53\x69\xd2\xc4\x68\x2f\x9d\x63\xa6\xed\x96\xa7\xad\x13\xbe\xf4\xa5\x2f\x89\x91\x91\x11\x55\x86\x8b\x70\xef\x71\x96\x88\xf2\x08\x55\xaa\x12\x11\x95\x23\xd5\xaa\x0c\xa0\x2c\x24\x06\xfb\x9b\xce\x81\x89\x9d\xdc\xd4\xe4\x56\x6e\x66\xbc\x9a\x9d\x1c\xa8\x3b\x83\x39\x5f\x14\x95\xdd\x61\x6c\x20\x82\xb6\xc2\x2e\xac\xdd\x70\x01\x99\x92\x44\x5f\x96\x1e\x65\x68\x33\xa0\x93\x79\x0d\xbb\x91\xcf\x04\x78\x2e\x37\xb6\x0a\xad\x8d\x95\x52\xeb\xf6\xad\x81\xc6\xfc\x52\xb9\xb5\x58\xcd\xf9\xcb\x81\xc0\x16\xc2\xfd\x09\x95\x88\x00\x2a\x48\x54\xa2\x06\x22\x69\xa0\x76\xfc\x2d\x2f\x2f\xe3\xcf\xff\xfc\xcf\x7b\xe1\xb4\x66\x58\xaf\x76\x42\x9a\xfa\x93\xa6\x52\xc1\x48\xdf\x8d\x09\x76\x4a\xdb\x13\x0c\xbd\xb8\x5d\xf5\x4a\xf4\x42\x7a\x55\x65\x52\x2b\x87\x1d\xa1\xd3\xca\xf9\x28\xf5\xc0\x71\x1c\x11\x04\x81\x7c\x3e\x32\xbe\x5d\xd7\x15\x00\xe2\xad\x98\x06\x71\x14\xa3\xed\xac\x25\x66\x2e\x11\xa8\x04\xa0\xec\x4a\x2a\x17\x5a\x62\x68\x64\x37\x33\x36\x56\xcd\x4e\x8e\xec\xba\x63\x03\x0d\x77\xb8\xd4\x74\xca\x39\x5f\x64\x1d\x49\x2e\x29\x98\x22\x43\x83\x14\x8d\x20\x22\x1e\xd6\xd6\x26\x69\xa2\x22\x4d\xf8\x70\x42\x6a\x32\x10\x2c\x3d\x87\x1b\xbb\xd9\xa0\xba\x55\xf0\x37\x56\x4b\xde\xd2\x5a\xa9\xb5\xb4\x5e\x6c\x2d\xd5\xb2\x72\xd3\x17\x5c\x01\x50\x01\xa1\x1a\x5d\x2e\x52\x45\x48\x00\x6a\xee\x40\x11\x81\x17\xed\x07\x97\xcd\x66\x53\x5e\xbf\x7e\x1d\x3f\xfa\xd1\x8f\xa4\x10\x42\x48\x29\xd5\x78\x98\x7d\x69\xeb\xdf\x5e\xd2\x74\xb3\x01\x3a\xe5\xe9\x94\xa6\xd7\xb2\xf7\x05\x83\xee\x65\xea\x64\x74\x74\xa2\xd8\xb4\xef\x6e\xdc\x7b\x3f\x92\xa0\x53\x5d\xb6\x76\x76\x4a\x83\xc1\xc1\x41\x1c\x39\x72\x04\x67\xcf\x9e\x45\x2e\x97\x03\x12\xc2\x70\xb5\x19\xf0\x2c\x80\x3c\x33\x17\x11\xaa\x57\x45\x22\x52\xef\x25\x70\xa8\x76\xb9\x92\x8a\x79\x5f\x0c\xf4\x35\x9d\xc1\x52\xd3\x29\x97\x3c\x67\xb0\xdc\x70\xca\xe5\x86\x5b\x2e\xb4\x44\x31\xe7\x8b\x7c\x36\x10\xd9\x4c\x40\x59\xc1\x70\xc3\x1b\x92\xc2\xb9\x10\x42\x48\x08\x1c\xfe\x4a\x49\x2c\x7d\xc1\x5e\xcb\x61\xaf\xe9\xca\xc6\x6e\x36\xa8\x55\x73\x41\xa5\x9a\x0b\x2a\x95\x9c\xbf\xb5\x93\x0f\xb6\x76\xb3\x41\xa5\xe1\xca\x6d\xdf\xe1\x1a\x03\x55\x10\x1a\xcc\x5c\xd3\xd4\x1f\xfd\x4f\x27\x00\x9f\xb4\x93\x43\xaa\xd5\x2a\xde\x79\xe7\x1d\x7c\xf8\xe1\x87\xdd\x90\xa5\xd3\xd3\x0b\x53\xdc\x0f\x42\xf6\x2a\x69\xba\xb5\xf3\xae\x61\xd8\x8f\x51\x0d\xa4\x23\x27\x2c\xe1\xbd\x22\x73\x5a\xf9\xfb\xe1\x42\xe6\xf7\x7e\xa5\x17\x7e\xeb\xb7\x7e\x4b\x0c\x0e\x0e\xaa\x74\xea\x4f\x37\xc8\x63\x22\xd1\xff\x98\x39\x1f\x11\x50\x5e\x8b\x57\x79\x5c\x30\x5c\xc1\xc8\xba\x92\x32\x8e\x24\xd7\x61\x72\x05\x43\x08\x19\xda\x34\x4c\x2c\x65\x48\x0c\x7e\xcb\x61\x2f\x10\xdc\x0a\x08\x3e\x92\xd3\x3d\x3c\x24\x48\xed\x45\xcb\xe0\xd3\xfe\x3c\xed\x2f\x3e\x1d\x44\xfd\xad\xaf\xaf\x63\x61\x61\x01\xf3\xf3\xf3\x58\x5d\x5d\xdd\x0f\xa3\x51\xf1\xdd\x54\x55\xbd\x1c\x5b\x59\x36\xc6\xda\x4d\x32\xa4\xb5\xc7\x96\xe6\x23\xc3\xb0\x9f\x99\xea\x5e\x90\x54\x8f\x83\x25\xbe\x93\xda\xa4\x37\x3a\xad\x7c\x5b\x9e\x4e\x9c\xa0\x53\xc7\xec\x69\xd3\xf8\xf8\xb8\x38\x7a\xf4\x28\x8e\x1f\x3f\x8e\x62\xb1\x08\x75\xda\x45\x24\x35\xda\x88\x84\x99\x5d\x00\xd9\xc8\xbd\xab\x54\x2e\x65\x97\x64\x91\x48\x1b\x57\xe5\xd3\x4e\xcb\x88\xdb\x15\xb9\x4c\x63\xa4\x8d\xfe\x7c\xe3\xcf\x43\x3b\x71\x98\x61\x3a\xf2\xfb\xfa\xf1\x38\xb5\x5a\x0d\x57\xae\x5c\xc1\xcf\x7f\xfe\xf3\x6e\xdc\x74\x3f\x1c\xb7\x9b\x64\xef\x94\xb7\x5b\xd9\xbd\xe4\x49\x2b\xe3\x23\xc3\xd0\x89\x20\xba\xa9\x43\x9d\x74\x7b\xdb\xbb\x59\x56\x27\x31\xd8\x29\xfd\x7e\x45\x68\xb7\xf6\xa5\xd6\x75\xfa\xf4\x69\x31\x3e\x3e\x8e\xa9\xa9\x29\x44\x67\x25\x09\x2d\x8d\xf9\xe7\x02\xf1\x11\x31\x2e\x33\x0b\x00\x2e\x11\x09\x83\x10\xf4\x32\xf4\x7a\x4d\xa2\xd0\x89\xc3\xf6\x2b\x81\xe4\x6c\x28\x2d\x0c\x0b\x0b\x0b\xf8\xeb\xbf\xfe\xeb\x5e\x11\x18\x96\xb8\x5e\xde\xf7\xfb\xf4\x82\x1b\xdd\xa4\xcd\xdf\x39\x0c\x9d\x26\xe6\xba\x11\x84\xad\xc1\x30\xc2\xef\x86\x72\x6d\x75\x77\x4a\xbb\x9f\x72\x7a\x55\xbd\xf6\xe4\x19\x1e\x1e\x16\x07\x0f\x1e\xc4\xcc\xcc\x0c\x72\xb9\x1c\x86\x87\x87\x21\x84\x88\xd3\x47\x48\xaf\x97\x61\x22\xbe\xde\x3f\x69\x52\x51\xff\xd6\x09\x05\x06\xe2\x83\x99\xa5\xef\xfb\xd8\xde\xde\x46\xb5\x5a\xc5\xad\x5b\xb7\xf0\xc1\x07\x1f\xdc\x2d\xb2\xc6\x70\xde\x83\xbc\x1f\xa5\x9c\x8f\xfa\x7c\x64\x18\x6c\x46\x75\x27\xea\x05\xd2\x11\x6a\x3f\xd4\x99\x86\xa8\x69\xd4\x6e\x96\x63\x0b\x4b\x83\xc3\x06\x8f\x09\x47\x27\x18\xac\xbf\xd1\xdc\x06\xd6\xd7\xd7\xe5\xc7\x3f\xfe\x71\x01\x00\x27\x4f\x9e\x84\xe3\x84\x5b\x4c\xd4\x6f\x84\xc4\x6d\x04\x60\x3d\x75\xd0\x72\x6e\x93\x94\x12\x91\xd7\x07\x00\x30\x3f\x3f\x8f\x46\xa3\x81\xb5\xb5\x35\x5c\xb9\x72\xa5\x9b\x84\xed\xd6\x17\xb0\x7c\x9b\x61\xbd\x20\x58\xb7\xf1\xef\x25\xfd\xdf\x27\x18\xf6\x70\x2b\x5b\x62\x5b\x58\xaf\xf9\x3a\xa5\xed\xa4\x82\x98\x1c\xd5\xf6\x6d\x96\xdb\x8d\x1b\x77\x6b\x73\xb7\x36\xf6\x92\x46\x00\xc0\xd4\xd4\x94\x38\x7e\xfc\x78\x9c\x47\x7f\xff\xd5\x5f\xfd\x55\xeb\xbb\x9e\x4e\x4b\xdf\xa9\x5f\xd2\xda\xd8\x6b\xdf\xa7\xf5\x57\xb7\x31\xe8\x65\x7c\x6c\xed\xf8\x07\x03\x43\xaf\x48\x7f\x37\xc4\x63\x8b\xef\x54\x6e\x27\x04\xec\x86\x9c\x77\x4b\xdc\xbd\xd4\xdb\x2d\x5d\xa7\xb2\x7b\x69\x9b\xed\x31\x07\x75\x3f\x8c\xc8\x56\x4e\xaf\xe9\xcd\x70\x1b\x62\xf7\xfa\xfc\x83\x85\xa1\x17\x20\xf7\x3b\xa8\xdd\x10\xa2\xd7\x30\x5b\x7c\x2f\x1c\xbb\xdb\x73\x37\x48\xda\xa9\x8c\x8f\x52\xaf\x0d\x69\x3a\x11\x61\x2f\x9c\xb4\x1b\x97\xfc\xa8\x75\xa5\x49\x80\x7f\xc8\x30\x74\xcd\x94\xd6\xa8\x4e\x15\xef\x97\x9b\xf6\x2a\x0d\xf6\x53\x4e\x5a\x27\x77\xfb\xee\x54\x77\xaf\x6d\xe9\x65\x60\xf6\x53\xe6\x7e\x39\xf2\x7e\xe2\x7b\x1d\xa3\x5e\xdb\xf3\xff\x07\x18\x52\x23\xef\x86\x83\x76\xe3\x7e\x1f\xa5\xec\x4e\x75\xdd\x8b\xf2\xf7\x9b\xe7\x5e\x48\x87\x5e\x08\x24\x8d\x6b\x76\xca\x63\xcb\xdf\x2b\xf3\xb3\x95\xdb\xad\x1c\x5b\xdb\xd2\xf2\x98\xe9\xfe\x5e\xc1\x20\x3a\xfc\xf5\x52\x89\x4d\x7a\xa4\x95\x65\x6d\x40\x8f\x75\x75\xe2\xfe\xfb\x4d\xd7\x0b\x8c\x9d\xda\xd9\xad\x9e\x5e\xc3\x7a\xed\x9f\xb4\xb0\xfd\xc4\x77\x4b\xbf\x5f\x4e\x9e\xd6\xf6\x4e\xed\xf9\x87\x06\x43\x4f\x95\xf6\x5a\x89\xad\x8c\x5e\x10\xad\x97\x72\xba\x7d\xef\x87\x8b\xd8\xca\xda\x0f\x0c\xdd\x38\xd8\x7e\x90\xa0\x57\x2e\xd9\xa9\x9e\x5e\x08\x3d\xad\x7d\x77\x83\xe4\xdd\xda\x65\xbe\xff\x43\x80\x61\x5f\x15\xa5\x15\xda\x2b\xb7\xeb\x85\x73\xdc\x2d\x31\xf4\x02\xc3\x7e\xeb\xee\x36\x90\xf7\xb2\xee\xb4\xb2\xba\x3d\xbd\xd4\xff\xf7\xa9\xee\x7b\x55\xce\x3d\x87\xe1\xff\x05\xa3\x5d\x9f\x39\x4a\xbc\xd5\x80\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x19\xa0\xdd\x2c\x36\x91\x00\x00") +var _web_uiV1StaticFavicon196x196Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x33\x40\xcc\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\xc4\x00\x00\x00\xc4\x08\x06\x00\x00\x00\xc0\xa6\x8e\x6b\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xdc\xbd\x79\x70\x1c\xc9\x79\x2f\xf8\xfb\xb2\xab\xab\x0f\x34\x1a\x0d\x10\x00\x41\x00\x3c\x40\x82\xe7\xf0\x1e\x0e\x87\xa4\x24\x8a\xe6\x68\x34\x1a\xcd\xe8\xb2\xa5\x99\xb1\xf6\xf9\x59\xf2\xc1\x75\xec\x0b\xaf\xd7\xe1\xb5\x23\x14\x2f\x1c\x1b\x1b\xbb\x2f\x76\xbd\x11\xf6\x86\xe3\xc5\x5b\xbf\x08\xaf\xec\x90\xe4\xd0\x61\xeb\xd6\xe8\x9e\xd1\x9c\x1a\x6a\x0e\xce\x90\x43\x72\x86\x37\x41\x10\x04\x01\x10\x67\xa3\xd1\xe8\xae\xae\xca\xdc\x3f\xaa\xb2\x2a\x2b\xbb\xaa\xbb\xc1\xa1\xe2\xd9\x9b\x11\x40\x57\xe5\xfd\x65\x7e\x77\x1e\x05\x44\x07\xe6\xfd\x21\xe2\x37\x2a\xaf\xfe\xac\xc7\xe9\x65\xe3\xea\x6a\x25\x44\xb5\xd7\x28\xcf\xbd\xac\xbf\x95\xb6\x9b\xd5\xad\x8f\x47\x23\x18\x9a\x8d\x67\x54\x59\xbd\x8d\x38\x18\xa2\xe6\xa5\x51\x3f\xa3\xfa\x11\xd7\x87\x66\x7d\xfd\x37\x03\xc3\x7b\x41\xa4\x7b\x5d\xe7\xdd\x20\x7b\xdc\xe0\xae\xb4\xbd\xbb\xa9\x67\xa5\xc8\xf2\xaf\x3d\xbc\x97\xb1\xfc\xd7\x12\x56\x0c\x83\x11\x93\x51\x7d\xe6\x31\x71\x4c\xf9\xd5\xe3\xa0\x3d\xc7\xd5\xab\x77\x8e\x47\x3c\x47\xb5\x13\x55\x5f\xb3\xbe\xeb\x7d\x51\xf3\x46\xd5\x19\xd5\xb7\x66\xfd\x95\xed\x70\x2d\x5d\x1f\xa3\x46\x75\xea\xf1\xcd\xc6\x3a\xae\xee\x46\xf5\x37\x0b\x2b\x19\xe3\x56\xda\xfe\xb7\x0a\xc3\x8a\x42\x1c\x01\x35\x6b\x3c\x4a\x15\x6b\x24\xda\x5a\xa5\xf2\x28\x31\x1a\xf7\xdb\xa8\x2f\x71\x7d\x6b\xa5\xde\x95\xd4\xdf\x4a\xde\x46\x6d\xc6\x85\xa8\x72\x71\xf5\xb4\x22\x85\x5b\xed\x4f\xa3\x36\xfe\x2d\xc1\xb0\xa2\x4e\xb5\xda\x70\x2b\xf5\xc6\xd5\x11\xd7\xc1\x56\xcb\x34\xcb\x13\x17\xd7\x0c\xa9\xf5\x7e\x35\x22\xf2\xa8\xb8\x56\xe0\x8e\x8b\x6b\x16\x5a\x19\xaf\x46\x79\xef\x45\xdb\xf7\xaa\x9e\x7f\x2d\x30\x34\xcd\xd8\x0a\x35\x35\xaa\xb8\x55\xee\xd0\x4a\x5d\x51\x79\xee\x25\xc1\x36\xeb\xc7\xdd\xc0\x10\x57\x4f\x2b\xed\xb5\x1a\x56\x52\x76\xa5\xed\xb4\x32\xbe\x77\x5b\xf7\xdd\x96\xfd\xb5\xc0\xb0\x12\x04\xd7\x27\x58\xe7\xae\x7a\x3c\x22\x9e\xf5\xb8\xb8\xf7\xb8\xf6\xa2\xea\x69\x45\x34\xc7\x95\x69\x96\x3f\xae\x4f\x51\x30\x36\xaa\xbb\x51\x1d\xcd\x60\x8b\x6a\xaf\x51\x5f\xa2\xca\xc7\xf5\x21\xea\xf9\x6e\xc6\xb3\x19\x7c\xff\x26\x60\x30\xd0\xd8\xf0\x6d\x14\xdf\xc8\x60\x6d\x64\x1c\xab\xf1\x32\x4e\x35\x68\xd4\x7c\x51\xf5\x46\xd5\x13\x17\xe2\xf2\x45\x19\xbb\x8d\xf2\xc7\xf5\x29\xca\x78\x6e\x34\x16\x51\xfd\x63\xa8\x37\xe8\xf4\x7e\xb5\x12\xa2\xc6\x46\x0d\x6a\x5a\x2b\x9c\x55\xd6\xa7\xcf\x4b\x54\x3d\x51\x06\xe9\xbf\x59\x18\xa2\x28\x07\x11\x71\xad\x74\x20\x2e\x34\xe3\xbc\x8d\xb8\x68\x5c\x5c\xb3\x76\x5a\x69\xbb\xd5\x32\x71\x93\xfd\xeb\x6e\xbb\xd5\xb4\x56\xea\xb9\x5b\x18\x64\x7c\xdc\x1c\xfc\xff\x15\x86\xd8\x4a\x5a\x6d\x2c\xaa\xe1\xa8\xb4\x56\xda\x59\x49\x5b\xad\xd4\xd3\x6a\xbb\x51\xe2\x5b\x7f\x6f\x65\xc0\x01\x00\x86\x61\xd4\xe5\xbd\xef\xbe\xfb\x58\xa3\xf7\xa8\x32\x31\x6d\x35\x7a\x6f\x25\xcf\xdd\x94\x69\xa5\x2f\x77\x5b\xee\x5f\x05\x0c\x84\x7a\xf1\xd1\x48\x6c\xb5\x9a\x37\x2a\x5f\xa3\xce\xb4\xba\x86\xd1\xca\xba\x47\xab\xed\x35\xeb\x67\xb3\x7a\xea\xc2\xb1\x63\xc7\x58\x22\x91\x00\x00\x74\x76\x76\xa2\xab\xab\x6b\x25\xc5\x23\xc3\xe8\xe8\x28\x6a\xb5\x1a\x9e\x7d\xf6\x59\x3e\x3c\x3c\xcc\xae\x5c\xb9\x12\xd5\xc7\x66\xbf\x7a\x58\x69\xb9\x56\xe6\xba\xd9\xbc\xe8\xf9\xff\x55\xc2\x40\x0d\x32\xeb\xcf\x32\x34\x5b\x4c\x6a\x86\x6c\xea\xc0\x45\xd5\xad\xc7\xe9\xf1\x71\x3a\x60\x54\x3f\xe2\xb8\x43\xb3\x81\x54\xdb\xd4\xfb\x8f\x03\x07\x0e\xb0\x9e\x9e\x1e\x74\x75\x75\xc1\x34\x4d\x24\x93\x49\x08\x21\x02\x2e\x43\xc4\x84\x10\x00\xc0\x88\xc8\xef\xa3\x10\x02\x44\x24\x7f\x99\xf7\xcb\x65\xbc\xda\x3f\x2d\x2d\x64\xb7\x70\xce\xb1\xbc\xbc\x0c\x00\xb8\x7e\xfd\x3a\x2c\xcb\xc2\x1b\x6f\xbc\xc1\xd3\xe9\x34\xab\x54\x2a\x8d\x16\xbf\x9a\x31\x91\x46\x63\x11\x85\x03\xad\x94\x69\x34\x1f\xef\xa5\x9e\x5f\x0b\x0c\xa1\x59\x68\xd2\x70\x2b\x79\x5a\x91\x16\x7a\x67\xe2\xf2\x35\xe3\xce\x51\x84\xd5\xa8\xed\xb8\xf6\x1b\xf6\x6f\xf3\xe6\xcd\x6c\xe3\xc6\x8d\xc8\xe7\xf3\xe8\xec\xec\x54\xf3\x48\x84\x66\x5e\x1c\xf3\xe2\x98\x12\x67\x90\x00\x4b\xd9\xcc\x48\xd9\xcc\x34\x6d\x32\x13\x82\x0c\x26\x60\x30\x41\x06\x04\x20\x08\x9c\x93\xb0\x39\xc1\xb6\x0c\x6e\x59\x09\x6e\x59\x86\xb0\x6b\x4c\xd8\x20\x70\xaf\x2f\xb6\xd7\xa6\xad\xf4\x95\x2b\x7f\x00\xc0\xcb\xe5\x32\xe6\xe7\xe7\xf1\xf4\xd3\x4f\x37\xe2\xa8\x8d\x42\x33\xee\xda\xa8\x9e\x28\x46\xb2\xd2\xf2\xad\xf6\xaf\x95\x3c\x77\x05\x83\x4a\x10\x71\x54\x87\x88\xc2\xad\x8a\xb3\x86\x8d\xc7\xc4\xb7\x9a\x7e\xb7\x65\x9a\xc1\x84\x0f\x7c\xe0\x03\xac\xb7\xb7\x57\xaa\x3c\xcc\xe3\xea\x12\xd1\x0d\x21\x04\x23\x90\x91\x10\x30\x4c\x9b\xa5\xdb\xac\x44\x21\x5f\x49\xf4\xe6\x2b\x46\x5f\xd6\x4a\xf4\x15\x2a\xc6\xda\x8e\x65\xa3\x3f\x5d\x63\xdd\x06\xa7\xbc\xc1\x29\xcf\x04\x72\x24\xc8\x00\x60\x50\x40\x40\x7e\x3f\x04\x60\xc3\x25\x8c\xb2\x43\x28\x3b\x8c\x17\x2b\x86\x98\x2e\xa5\x9c\x89\xc5\x94\x3d\x55\x4c\xdb\x37\x17\xd3\xce\xf8\x42\xda\x9e\x5a\x4e\xf2\xd9\x25\xd3\x29\xd9\x09\x61\x09\x82\x8d\x80\x50\xfc\x3f\x21\x04\x17\x42\xe0\xc6\x8d\x1b\xf8\xf9\xcf\x7f\xde\xea\x38\xb6\xaa\xae\xbc\x97\xf0\x5e\x08\x62\x25\xf5\xdf\x15\x0c\xba\xca\xd4\x4a\x43\xad\x76\x68\x25\xe9\x8d\x38\xf9\xdd\xf4\x21\xae\x4c\x5d\x79\xc6\x18\xe3\x9c\xf3\x0f\x7c\xe0\x03\x6c\x70\x70\x10\xb9\x5c\x4e\xe6\xf3\x09\x00\x02\x06\x13\x30\x4d\x87\xa5\xf3\x95\x44\x57\xef\xa2\xb9\x61\x75\xc9\xdc\xd9\x59\x4e\x6e\x6f\xaf\x26\x36\xa6\x6b\xac\xdf\xe0\xd4\xc5\x04\xd2\x00\x0c\x80\x00\x11\xb4\xe1\x6b\x43\x42\xf9\x21\x84\xf2\x80\x00\x12\xf0\x67\x44\xd4\x65\x11\x5c\x00\x16\x67\x28\x59\x09\x3e\xbd\x64\x3a\xa3\xf3\x19\xfb\xc2\x4c\x5b\xed\xfc\x64\xbb\x75\x61\x26\x5b\x9b\x28\x9b\xbc\x68\x33\x61\x09\x08\x9b\x88\x54\x42\x01\xe7\x9c\x2f\x2c\x2c\xe0\xed\xb7\xdf\xc6\xc5\x8b\x17\x7f\x1d\x8c\xe6\x5f\x7b\x68\x09\x06\x5d\x42\x00\x8d\x55\x25\x44\xe4\x69\x45\x0d\x89\xcb\xf7\x9e\x01\x88\xc8\xd7\xaa\x5a\x86\xbd\x7b\xf7\xb2\xf5\xeb\xd7\x63\xf5\xea\xd5\xba\x04\x30\x88\xc8\x48\xda\x94\x5d\x55\x4e\xf6\x0e\x2c\xa4\x76\x0c\xcc\xa7\x0e\xaf\x5a\x4a\xee\xce\xd6\xd8\xb0\xc1\xa9\x1b\x20\x43\xd7\x37\x05\x04\x08\x7a\xac\x9f\x58\x87\xec\x0d\xb2\x34\x4d\xf5\xed\x11\x08\x08\x42\xb9\x9a\x10\xa3\xc5\xb4\x7d\xe1\x76\xbe\xfa\xea\x78\x87\xf5\xe6\x64\xbb\x35\xb2\x90\xb6\xe7\x05\x84\x05\x97\x30\x6c\xcf\x16\xe1\x9c\x73\x3e\x3a\x3a\x8a\x0b\x17\x2e\x60\x74\x74\xb4\x55\xf5\xb7\xd9\xbb\x1e\xdf\x48\x85\x8a\xaa\xa3\x15\x1b\x40\x2d\xa7\x86\x7b\x06\x43\x94\xca\xd4\x6a\x63\xcd\x1a\x68\xc5\x00\x42\x4c\xd9\xa8\xf8\x46\xba\x7e\x4b\xfd\x34\x0c\x83\x6d\xd8\xb0\x01\x43\x43\x43\x58\xbb\x76\xad\x74\x71\x32\x49\x00\x10\x30\x33\x35\x96\x5f\x53\x34\x37\x6e\x9a\xc9\x1e\xe9\x2b\x9a\xef\x6b\xaf\x26\x76\x27\x1d\xea\x06\x60\x10\x08\x10\x02\x08\x0c\x63\xf7\x1d\xe4\x0a\x05\x3f\x0e\xde\xc8\x7a\x0f\xf2\x47\x48\x69\xa1\x23\x37\x40\x24\x94\x67\x99\x42\x0a\x91\xb9\x65\x84\x52\xd4\x8d\xf5\xd2\x85\x80\x70\xe3\x39\x27\x94\xab\x06\x1f\x9d\x69\xab\xbd\x36\xd2\x55\x79\xe1\x46\x67\xe5\xf4\x7c\xc6\x9e\xb2\x13\xa2\x02\xc0\x12\xc2\x95\x20\x9c\x73\x6e\x59\x16\x4e\x9f\x3e\x8d\x91\x91\x11\x14\x8b\xc5\x28\x04\x6c\x84\xa8\xad\xe2\x4b\x23\x24\x6f\x68\xc3\xbd\x87\xb8\xbb\x82\x81\x22\x12\xa1\x55\x82\x06\x71\x77\x53\xe6\x6e\xcb\xb5\xaa\x56\x45\xd6\xb7\x7d\xfb\x76\xb6\x73\xe7\x4e\x14\x0a\x05\x84\x24\x01\xc8\x4c\x08\x64\x07\xe7\xd3\x1b\xb7\xdc\xc9\x3c\x3c\x30\x9f\x3e\xd6\x5e\x4d\xec\x64\x02\x05\x1d\x11\x55\x47\x50\xd8\x33\x14\x46\xfc\xc8\xa0\x56\xa0\x3c\xab\x84\x25\x88\x40\xaa\x5e\x45\x8a\x48\xf1\xe2\xdd\x3c\x41\x94\x24\x24\x99\x4f\x10\x81\xd4\xfa\x21\x2c\x2b\x21\xc6\xa7\xdb\x6a\xaf\x5d\xeb\x5e\xfe\xf1\x95\xee\xf2\xaf\x16\xd2\xce\x2c\x08\x15\x21\x84\xaf\x56\x09\x21\xf8\xb5\x6b\xd7\x70\xfa\xf4\x69\xcc\xce\xce\xea\xe3\x1a\xa5\x1d\xa8\xef\x51\x79\x64\x5c\x54\x7a\x54\x3d\xcd\xea\x6e\xa5\x5d\xbd\x9e\x15\xc3\x10\x2f\xa1\x7f\x7d\xe1\xd7\xad\x8f\xd6\xd5\xff\x07\x7f\xf0\x07\x8c\x31\x26\x3d\x40\x86\x10\xc2\x48\x08\xca\x76\x95\x93\xfd\xc3\xd3\x99\xa3\xdb\x26\xb3\x9f\x68\xaf\x1a\x07\x12\x82\x72\x6e\x89\x28\x0e\xae\xd6\x28\x20\x04\x69\x71\x01\xb7\x16\x1e\x1b\xd7\xd3\xd5\xba\xfd\x3a\x7d\x5a\x0a\x38\xbd\x94\x38\x01\x91\xc0\x43\x76\x59\xbf\x5b\x36\x24\x91\x80\xb0\x11\xe2\xb9\xb0\x24\x5d\xb9\xd5\x0a\x5e\x4b\x88\xb1\xf1\xbc\xf5\xcc\xbb\xab\x97\x7e\x70\xa3\xab\xf2\x76\xc5\xe0\x45\x10\x2a\x00\x6c\x8f\x40\xf8\xe8\xe8\x28\xce\x9c\x39\x83\x89\x89\x89\x58\xdb\x2b\x66\xdc\x11\x91\xaf\x55\x26\xda\xd0\xd6\xbb\xcb\xb0\xd2\x3a\x99\x2e\x21\xb0\xc2\x8e\xdc\x4d\x19\x59\xae\x15\x7d\xf4\xae\xc3\x91\x23\x47\xd8\xf0\xf0\x30\x52\xa9\x94\x6a\x1c\xa7\x4d\x87\x72\x83\xf3\xa9\x2d\xbb\x6e\xe7\x9e\x5c\x53\x4c\x7d\x28\x65\xd3\x20\x40\x86\xc4\x25\xe1\x21\x17\x79\xff\x02\x24\x0f\x10\x58\x20\x8c\xf0\xc2\x47\x48\x0f\x27\x51\x2f\x2c\x24\x32\x87\x6c\x09\x8f\xcd\x93\x24\x00\xd9\x5a\x9d\xa4\x89\x10\x3d\x61\x29\x00\x12\x14\xca\x12\xb6\x67\xc2\x3a\x9b\x80\x00\x27\x94\x16\xd2\xf6\xe9\xab\xdd\xcb\xdf\x7a\x77\xf5\xd2\x2f\xe6\x33\xf6\x04\x67\x50\x55\x2a\x3e\x37\x37\x87\xe7\x9e\x7b\x0e\xd3\xd3\xd3\xad\x20\x55\x33\xe4\x6b\x45\x5d\x6a\x45\x9d\x6e\x15\xc9\x9b\xb5\x13\x59\x46\x12\x84\x0c\x8d\xf4\x2c\xbd\x91\xa8\xce\x36\x02\xa0\x91\x8d\xa0\xd7\x19\x15\xdf\x12\x27\x79\xe0\x81\x07\xd8\x8e\x1d\x3b\x90\x4a\xa5\x98\x97\x6e\x02\x30\x33\x16\x2b\x6c\xb9\x93\x3d\xb4\x63\x22\xfb\x64\xf7\x92\x79\x8c\x09\xca\x43\x78\x8c\xd8\x43\xf4\x10\x47\x77\x19\xac\xc7\xa8\xe5\x82\x5a\x90\xac\x72\xf7\xba\x5f\xa5\x3c\x44\x7d\x5e\xe9\x65\xf2\xcd\x09\x59\x84\x02\xab\x01\x8a\xd1\x2c\x09\x49\x20\x58\xd8\x53\x2b\x95\x2a\x92\x2f\x39\x20\x3c\xa2\x0a\xca\x8b\x20\xd1\x6b\x5b\xf8\x7d\xac\x18\xfc\xd2\xf5\x55\x95\xef\x9e\xeb\x2b\x7d\x67\x22\x6f\x8d\x38\x24\xca\x44\xe4\x13\xc6\x95\x2b\x57\xf0\x8b\x5f\xfc\xa2\x91\xa1\x1a\x35\x7f\xfa\x5c\xde\x8d\xa1\xdb\x8a\xee\xff\x5e\xea\xad\x83\x41\xdf\xba\xd1\x08\x90\x7b\x15\xdf\x8c\x7b\xb4\x42\x00\x75\x69\xc3\xc3\xc3\x6c\xef\xde\xbd\xe8\xec\xec\x94\x12\xc1\x84\x40\x3a\x5b\x63\x85\xed\x13\x6d\x47\x77\x4e\xb4\xfd\x6e\xc7\xb2\x71\x88\x00\x53\x72\x53\xdd\xf6\xad\x37\x7e\xdd\xa0\x1b\xcb\xba\xba\x53\xaf\xf6\x84\xf3\xc5\xd8\xd8\x01\x71\x00\x81\x96\xa4\x54\xe9\xb5\x0e\x69\x59\x84\x89\xd3\xad\x9c\x34\xc2\x0b\x10\x3f\x20\x28\xa8\x04\xa6\xe5\x23\x4f\x2d\x03\x04\x6a\x4c\x4c\x8c\x75\x56\xbf\xfd\xd6\xc0\xe2\xbf\xdc\xea\xa8\x5e\xe2\x0c\x25\x00\x16\x00\xdb\x71\x1c\x7e\xf3\xe6\x4d\x9c\x3c\x79\x12\x8b\x8b\x8b\x2b\x51\x8b\xe2\x0c\xe0\x46\x08\xdd\x2a\x93\x6e\xc5\x6e\x69\xd6\x6e\xa8\xcf\x8d\x6c\x88\x56\xd5\x98\x95\x18\xbf\xad\x4a\x89\xb8\x0e\x03\x11\x6d\x3d\xf2\xc8\x23\x6c\xdd\xba\x75\x80\xbb\x9d\xdd\x20\x50\xda\x74\x28\xbf\x63\xa2\xed\xe8\xae\xdb\xb9\xcf\x77\x96\x8d\x43\x0c\x94\x06\xa2\xed\x5e\x45\xe3\x71\xdf\x15\x35\x3e\xc8\x13\x94\x54\x91\x50\xcd\xa7\xd7\xe3\xb7\x27\xd5\x2c\x85\xca\x02\xbb\x00\xe1\x38\xbd\x6c\xc4\x73\x54\x7a\xa3\xd0\x2c\x5f\xb8\x1d\x81\x5a\x42\x8c\x8f\x74\x55\xbe\x79\x6a\x70\xf1\x6b\x93\xed\xd6\x08\x08\x65\x78\x84\xb1\xb4\xb4\xc4\x2f\x5e\xbc\x88\x37\xde\x78\xe3\x5e\xdb\x81\xad\x3a\x64\xe2\xd2\x5b\x41\xfa\xa6\x61\xa5\x46\xf5\xdd\x34\xd2\xaa\x41\xb6\xd2\xc1\xc0\x9e\x3d\x7b\xd8\xee\xdd\xbb\x91\xc9\x64\x5c\x1b\x01\x48\x27\x38\x72\x43\x33\x99\xfd\x87\x6e\x74\xfc\x87\xae\x25\xe3\x18\x13\x64\x0a\x45\xb7\x07\x10\x76\x91\x42\xe3\xe0\x5e\xf0\xd5\x25\x84\xdd\x9b\x0a\x03\xd6\x54\xac\x40\x3f\xf7\x75\x77\xcd\x61\xe4\xf9\x89\x10\x5a\xab\x50\x6d\x0a\x28\x6d\xea\x52\xc7\xcb\x20\xd5\x2a\x5f\xd4\x20\x78\xf4\x6b\xd5\x3c\x5a\xc2\xb3\x77\xe2\x24\x16\x94\x36\xd5\xbe\xd6\x12\x7c\xec\x62\x6f\xf9\xcb\x6f\xac\x2d\x7e\x63\x21\xed\x8c\x7b\x9e\x29\x8b\x88\xec\xa9\xa9\x29\x7c\xf7\xbb\xdf\xfd\x75\x3a\x47\xfe\x9b\x04\xd5\x86\x68\x64\x2f\xdc\xad\x7b\xac\x15\xf5\x49\x0f\x51\xed\x85\xda\x19\x18\x18\x60\x07\x0f\x1e\x44\x77\x77\xb7\xaf\x1e\x91\x40\xae\xaf\x68\x6e\x3c\x38\x9a\xff\xc3\xb5\xf3\xa9\x4f\x26\x38\x2b\xe8\xfa\xbb\x8f\x68\x12\x72\xe9\xf1\x51\xe2\x7d\xe2\x89\x32\x6a\xa3\x0c\x6f\x04\x48\x54\x87\x61\x4a\xa6\x48\xa9\xa3\xab\x5e\xf2\x51\x08\xdf\xaa\x6f\x45\x32\xc4\xe7\x89\x97\x31\x31\x66\x4f\xdd\xb3\x80\xe0\x25\xd3\x39\xf7\x76\x7f\xe9\xef\xde\xee\x5f\xfa\x59\xd5\xe0\xf3\x9e\x57\xca\xb2\x2c\x8b\x9f\x3d\x7b\x16\x6f\xbf\xfd\x36\x6a\xb5\x5a\x94\xc1\x2c\x9f\x65\x68\x66\x83\x36\x2b\x13\x87\x5f\xef\x49\xc3\x50\x9f\x13\xda\x18\x68\x7c\x34\xd4\x09\x75\xbc\x64\x9a\x9a\x47\x1d\x63\xf9\xc7\xb4\x3a\xa1\xc5\x0b\xa5\x8e\xa8\xf2\x7a\x1a\x01\x10\x9f\xfe\xf4\xa7\xa9\xbd\xbd\x9d\x11\x91\x09\x20\x9b\xb1\x58\xcf\xc1\xd1\xfc\x13\x47\xaf\x75\xfe\x9f\xdd\x4b\xc9\x63\x09\xc1\xd2\x32\x73\x50\xca\x43\x3e\x15\x73\x14\x3f\xbf\xcc\x5b\x27\x32\x09\x81\xb8\xd0\x93\x28\xc8\x12\x58\xe7\x4a\x9b\x9a\x5a\x15\xe4\xd3\xca\x29\xbf\x24\xff\x13\xa9\xd1\xc1\xc8\x79\xd4\x4a\x4a\x1c\x29\x75\xfa\xc5\xf5\xd2\x9a\xdd\xe4\x37\xab\x49\xb1\x50\x9d\x6e\x4b\x94\xb2\x69\xf5\xe0\x42\xfa\xc3\x6b\xe7\x53\x1b\x4b\x69\x67\xb4\x98\xb6\x4b\x20\x38\x8c\x31\xd1\xdf\xdf\x8f\xc1\xc1\x41\x31\x3b\x3b\x4b\x4b\x4b\x4b\x72\xae\xa2\x10\x54\xc5\x19\x1d\x07\x64\xba\x02\x41\x08\x17\x08\xd1\xf8\xa1\xd7\x4b\xca\x3b\xd3\xda\x51\xe3\x43\x43\xa0\xa6\x49\x09\xd1\x8a\xbb\x2b\x2a\xc4\x95\x6d\xe6\x89\x68\xc6\x15\xa2\xf2\xf0\x47\x1f\x7d\x94\x0d\x0e\x0e\x32\x00\x06\x11\x99\x8c\x23\xb7\x61\x36\xbd\xf7\x7d\xd7\x0b\x7f\xd6\x55\x36\x8e\x42\x90\x21\x39\xbf\xbf\xc4\xa5\xa8\x38\x01\xe9\x7b\x06\x25\x02\x35\x26\xd0\x15\x14\xa3\x14\x14\xd2\xf1\x65\x25\x61\xe3\xd5\x2b\xef\x63\xa1\xa6\x77\xf8\x7d\x51\xea\x95\xdc\x3f\xbc\x1d\xdc\xeb\x49\x90\x5f\x22\xb5\x1a\x27\x71\x42\x4f\x53\x7a\x11\xfa\x85\x16\x17\x6e\xa3\x71\x5c\x50\xa7\xfc\x2f\x60\x33\x31\x75\xb1\xb7\xfc\xff\x9e\xdc\x50\xfc\x4a\xc9\xb4\xa7\x88\xa8\x02\xc0\xe2\x9c\xf3\xe7\x9e\x7b\x0e\x57\xaf\x5e\x8d\xe3\xe4\xad\x78\x1e\xe3\xb4\x8e\xa8\xb8\xa6\xf8\x12\xd3\x4e\xa3\xbe\x35\x5d\x98\x6b\xc5\xbd\xd5\x4a\x58\x89\x71\x54\x17\xb7\x7d\xfb\x76\x76\xff\xfd\xf7\x23\x93\xc9\x30\x6f\x8b\x45\x36\x53\x63\xdd\x87\x6e\xe4\xff\xbb\xed\x93\x6d\x27\x92\x0e\xeb\xf3\xc4\x7b\x9d\x3f\xde\xd7\xa1\x01\x8f\x43\x7a\x79\xbc\x77\x20\x40\x86\x10\x05\x21\xac\xcb\xfb\xb9\x14\xb5\x29\xb0\x21\x84\xf7\xae\xaa\x4b\x52\x0c\xa8\x6a\x8a\x6b\x04\xa8\x9c\xd8\xaf\x3e\x52\x07\xaa\x57\x86\xfc\x35\x90\x28\x3d\x29\xaa\x0a\xe8\x7d\x55\xba\xd8\xb0\x8a\xb0\x9a\xa8\xd6\x29\x20\xec\xe9\xb6\xda\xf3\xaf\x0c\x2d\xfc\xf5\x48\x57\xe5\xb4\xa0\xc0\x1b\x75\xe9\xd2\x25\x3c\xff\xfc\xf3\xad\xe0\xca\xdd\xd8\x96\xcd\xde\xef\xb6\x1d\x3f\x24\x94\x42\xaa\x08\x92\xcf\xb2\x22\x55\x20\xeb\x2a\x90\x2c\xaf\x8a\x39\x55\x55\xd2\x89\x89\xb4\xb4\x28\xf5\xca\x2f\x73\xf4\xe8\x51\x76\xff\xfd\xf7\x23\x99\x4c\x1a\x00\x52\x04\xca\x0f\x2c\xa4\x76\x7d\xe4\xc2\xaa\xff\xb4\x71\x26\xf3\xef\x0d\xce\xf2\xe1\x1d\x3f\x04\x90\x8b\xf4\x42\x9d\x76\x92\x84\xa0\x2c\x57\xf9\x3d\xf1\xd2\x7d\x5e\x18\x70\x74\x5d\xcd\x51\x51\x48\xad\xc7\xd5\x98\x02\x45\x25\xd8\x62\x11\x56\x5e\x02\xa9\xa3\x72\x7b\x2f\x4e\x4a\x0f\x0a\xfa\x1e\x96\x0c\x32\x26\xd0\xce\xdc\x6e\x0a\x4f\x78\x49\x09\xa4\x2e\xc9\xd5\x4b\x43\xf2\xea\xf0\x9a\xf4\x1f\x54\x27\x83\xde\x8e\x9b\xdf\x27\x12\x96\xad\x19\x1b\x37\x4d\x67\x3e\x6c\xda\xac\x32\x99\xb7\x46\x1c\x06\x1b\x80\xb3\x6a\xd5\x2a\x7e\xea\xd4\x29\xe1\x37\x1f\x9e\x67\xf5\xb9\x51\x9a\x7c\xe6\x4d\xca\x44\xe1\xcd\x4a\xdb\x51\x03\x4b\xa0\x1e\xf1\x55\x3d\x4d\xd7\xc3\xa2\x2a\x55\x45\x8f\x2e\xb1\x65\x9a\x1a\xaf\xea\x77\x6a\x5d\x50\xde\x05\x00\x3c\xf6\xd8\x63\x6c\xe3\xc6\x8d\x4c\x08\x91\x24\xa2\x8c\xc1\x59\xe1\x81\x9b\xf9\x4f\x7d\xf0\x6a\xe7\xff\xd5\x51\x49\xec\x87\x00\xf3\xf5\x6d\x0f\xa1\xbd\x47\x2f\x8e\x94\xc9\xf7\x90\x4e\x61\x89\x44\xaa\x02\x1e\xfc\xba\x45\xa5\x8f\x1e\x5e\xe9\xa0\x1e\x7f\xff\x90\xa4\x16\x52\xe3\x55\x0c\xf2\x3a\x43\x2e\x62\x09\x06\xce\x19\x1c\x4e\x82\x3b\x0c\x36\x67\xc2\x11\x04\x87\x33\xb9\xd9\x03\xbe\x39\xad\x34\x00\xd9\x03\x77\x64\x02\x76\x4f\x1e\x0c\x02\x14\xea\x8b\xa4\x50\x85\x3c\xfd\xda\x7d\x75\x4d\x99\x6d\x9f\x38\x28\x20\x50\x3f\xf8\xeb\x19\x32\x3f\x49\xfe\x01\x06\xd6\xb6\xa6\x68\x1e\x5d\x53\x4c\xf5\xcf\xb4\xd5\xde\x5d\x4a\xf1\xa2\x10\x82\xef\xdd\xbb\x57\xbc\xf5\xd6\x5b\xba\xfe\xae\xe3\x43\x2b\xb8\xa2\x3f\xab\x33\xa8\x96\x51\x19\xb8\x6a\x8f\xe8\x65\xa2\xca\xab\x82\x20\x74\x0d\x4d\x9c\x87\xa0\x91\xc7\xa7\x99\x2a\xa5\xe7\xd1\x7f\x63\xc3\xef\xfe\xee\xef\x32\x6f\xb5\xd9\x00\x90\xcd\x56\x59\xdf\x07\xae\x15\xfe\x70\xcb\x9d\xec\x09\x26\x28\x0b\x28\xb8\xec\x4d\x94\xbf\x3d\x22\xa4\xba\xc0\x1f\x02\x75\x74\xfd\x7f\xea\xbe\x23\x45\xdd\x72\xab\x0c\xf8\x33\xfc\x06\x11\xec\x63\xf2\xa7\xd3\x6d\x9b\x13\xb8\x95\x70\x2a\x4b\x26\x2f\x95\x52\x76\x71\x21\xed\x14\x4b\x29\xbb\x58\x4d\xf2\xca\x72\x92\x97\xab\x06\xaf\xd8\x24\x2c\xce\xc0\x39\x09\x2e\x00\xce\x04\x31\x26\x60\x18\x9c\x0c\xd3\x21\x33\x65\xb3\x6c\xa6\x96\xc8\xb6\x55\x13\xb9\x5c\x35\x91\xef\xa8\x18\xf9\x36\x2b\x91\x4f\xdb\x94\x4e\x70\x32\x74\x9b\x23\x40\x7b\xe5\x9d\x74\xd0\xc9\x87\x27\xa4\x69\x91\x82\xfc\x14\xae\xc7\x05\x4f\x84\xcb\x50\x20\x41\x7d\x82\x13\x30\x07\x17\x52\x4f\x1c\xbd\x5a\x28\x7d\x73\xef\x9d\xbf\x24\x22\xdb\x30\x0c\x79\xc2\x4f\x86\x46\xf3\x1e\x97\xc6\x63\x9e\x9b\xe5\xb9\x1b\x57\xb0\x5f\xc6\x88\x8a\x6c\xf1\xb9\x59\x5a\xb3\x78\x3d\x8f\x4f\x78\x9f\xfb\xdc\xe7\x98\x69\x9a\x4c\x08\x91\x26\x50\xb6\xbf\x98\xda\x71\xfc\x72\xe7\x7f\xec\x5e\x4a\x1e\x27\x10\x53\x0d\xc0\x30\x3f\x0d\x44\x7e\x80\xf4\xaa\x59\xe8\x67\x0c\xd4\x07\xc9\xfd\xb4\x78\xf8\x75\x29\x6a\x13\xa4\x86\x25\x60\x13\xec\x65\xd3\x29\xcf\x65\xed\xd9\x3b\x39\x6b\x62\x2a\x57\x1b\x9f\xcb\xd6\xa6\x8b\x69\x67\xb6\x6a\xf0\x45\xe1\xea\xd4\xf2\xcf\x06\xd5\x9d\x6a\x83\x10\x82\x7b\x6e\x63\x78\xf0\x1b\x10\xc2\x00\xdc\x93\x75\xf0\xb6\x9d\x24\x39\xb5\xe5\xaa\x89\x42\xa1\x6c\x74\xf7\x96\xcc\xbe\x9e\xa5\x64\x5f\xd7\x52\xb2\x3b\x57\x4d\xe4\x93\x9c\xcc\xc0\x08\xaf\x37\x94\x75\x39\xe1\xa1\xb9\x3f\x5e\x8a\x5d\x80\x28\xf5\x0c\xde\xe8\x09\xa5\x56\x28\xed\x81\x08\x8b\x29\x7b\xec\x85\x4d\xf3\x3f\xf5\xfa\xcb\x84\x10\x6c\xd7\xae\x5d\x38\x7b\xf6\x6c\x94\xbe\xdf\xc8\xe0\xd5\xf3\x46\xc5\x35\x33\x94\x9b\x19\xd6\x51\x0c\xda\x0f\x86\x1e\x11\x53\xe9\x4a\xc2\xdd\x94\x01\x00\xbe\x75\xeb\x56\x76\xf8\xf0\x61\x98\xa6\x69\x00\x30\x19\x28\x3f\x3c\x9d\x39\xf8\xc1\x2b\x9d\xff\x47\x9b\xc5\xb6\x05\x06\x73\xd8\x83\x04\xef\x59\x25\x0e\x40\x51\x9d\xb4\xf4\xc0\x66\x0d\x71\x3a\xe5\x39\x90\x14\xee\xaa\xb4\x8b\x26\x55\x83\x97\xe7\xb2\xf6\xf4\x58\xa1\x32\x3a\xd6\x51\x1d\x99\x6d\xb3\x27\x96\x0d\x67\xc6\x61\x28\xc3\x5d\xcd\xad\x28\x7f\x01\x31\x20\x7c\xcc\xd3\x23\x04\x85\xcb\xbb\x48\x04\x28\xa7\xf4\x14\x82\xb0\x18\x4f\xcf\x65\x85\x39\x97\xb5\xb3\xd7\xbb\x2b\x69\xe2\xc8\xa5\x1c\xd6\x51\x58\x36\x7a\xd7\x14\xcd\x75\x6b\xe7\xd2\x1b\x7a\x4a\xc9\xbe\x6c\x2d\x91\x63\x52\x8d\xf4\x17\x3e\x84\x07\x43\xb0\x4d\x83\x84\x0b\x8f\xf0\xb6\x7e\x00\x81\xa6\xe5\x8f\x89\x97\xc7\xd7\xe3\xc8\x23\x30\xa1\x48\x0e\x21\x50\x33\x44\xf9\xc5\x4d\xf3\x5f\xbf\x93\xab\x4d\x7b\x17\x2b\xa8\x70\x01\xf5\xf8\x10\xe5\x85\x6a\x25\x34\xd2\x32\xa2\x08\x4b\xad\x3f\xaa\x9d\x48\xef\xa6\x11\x91\xb9\x99\xca\xd4\xcc\x75\x16\xeb\xd2\xd2\xca\x86\xea\x3c\x74\xe8\x10\xdb\xbd\x7b\xb7\xec\x53\x9a\x04\xf2\x7b\x6e\xe5\x3e\x7a\x78\xa4\xe3\x7f\x31\x6d\xd6\xaf\xae\x21\xf8\x34\xa0\xeb\xec\xd0\x1e\xeb\x69\x21\x44\x33\x02\x08\xce\x0e\x84\x26\x3e\xe0\x9a\x95\x24\x2f\x4f\xe4\xad\xf1\xeb\x5d\xcb\x97\x6e\x76\x56\xaf\x14\xd3\xf6\xa4\xc3\x50\x04\x50\x04\x50\x06\x50\xf2\x7e\x55\x22\x88\x24\x04\x09\xab\x86\x30\x6e\xbf\xdc\x38\xa6\xfd\xc9\xd3\x7b\x26\x3c\xe2\x00\x90\x16\x0c\xd9\x0a\xe3\xd9\x89\xa4\x95\x9b\xc8\x5b\xb9\xd3\x03\xa5\x5c\x9b\x95\x58\xbd\xa6\x68\xae\x1b\x9a\xc9\x6c\x1b\x9c\x4f\xad\x6b\xaf\x26\x0a\x81\x6c\x08\x54\x1e\xff\x57\x59\x5d\x94\x6a\x90\x2a\x09\xfd\xbc\x0a\xd3\x21\x4d\xa5\x14\x04\xfe\xc6\xda\xe2\xcf\xae\x76\x2f\xbf\x05\x42\x91\x40\x15\x09\xaf\x27\x1d\x74\xc4\x6f\x84\x6b\x51\x44\x12\xe7\x22\x8d\x7a\x6e\xa5\x8c\xee\xc2\xd5\xfb\xc3\xf4\xab\x2c\x1b\x35\xdc\x0a\xd7\x8f\xea\x60\x53\x5b\xe3\xd0\xa1\x43\x6c\xd7\xae\x5d\x80\x67\x2f\x18\x0e\x75\x1d\x1a\xc9\x7f\x76\xef\xad\xf6\x3f\x4f\x08\xca\xc7\x0a\x01\x51\x8f\x58\xfe\x04\x8b\xb0\x35\xe6\x17\x51\xec\x68\xd7\x29\x13\xb8\x30\x25\x11\xd8\x09\x61\x4f\xb7\xd5\x26\x2e\xf7\x2c\xbf\x73\x6d\xd5\xf2\x3b\xc5\xb4\x7d\x9b\x13\xe6\x41\x3e\x21\x94\x84\x10\x65\x00\x65\xe9\x87\x97\x5b\x1a\x3c\xd8\x6c\x29\x05\xbc\x5f\xa9\x22\xe9\xdc\x13\x0d\xb8\xaa\xfc\x95\xd2\xc3\x80\x2b\x41\x4c\x21\x84\x09\x20\x4d\x44\x69\x00\x59\x0e\x91\x2b\xa5\x9c\xfc\xe5\xee\xe5\x77\xaf\x74\x2f\xbf\x9a\xb5\x58\xcf\xe0\x7c\x7a\x78\xcb\x9d\xec\xee\xfe\x05\x73\x5d\xda\x66\x69\x5d\x5a\xfa\xe7\x2c\xea\xc6\x54\x1b\x6b\x6d\x88\xe5\xd8\x82\x04\xae\x74\x2f\xbf\xf9\xe6\x60\xe9\xa7\x82\x30\x0e\x60\x16\x2e\x63\xb0\xbd\x03\x46\x6a\x88\x43\x5e\x3d\x2d\xaa\x9c\xfe\x1c\x55\x57\x1d\x62\x23\x1a\xdf\x9a\x4a\x24\xa9\x32\xc9\x42\x71\xdc\x7f\x25\xbe\xe4\x56\xf4\x41\x3f\x1c\x3c\x78\x30\x90\x0c\x02\x59\x83\x53\xf7\x07\xae\x75\x7c\x7e\xe7\xed\xdc\xff\x24\x8d\x67\xc9\x98\xa4\xfa\xa2\x7a\x3b\x54\xdf\x59\x30\x77\xaa\x2e\xa5\x19\x98\x14\xd8\x14\x32\x52\x9a\xcd\x96\x21\x2a\x23\x5d\x95\x2b\xe7\xd6\x94\xde\x9c\x68\xb7\x2e\xd7\x12\x62\x1a\x84\x79\x00\xf3\xf0\x08\x01\x9e\x34\xf0\x08\xc1\x96\x5b\xa4\xe5\x79\x65\x09\x2b\x11\x71\xce\x5d\xb0\x25\xd2\x4f\x4f\x4f\x63\x66\x66\x26\x6e\x28\x30\x34\x34\x04\xd3\x34\x83\x81\x63\x4c\x8e\x1f\x54\x5b\x83\x88\xa4\x64\x37\x01\x98\x92\x30\x40\xc8\x72\x21\xf2\x4b\x29\x5e\xb8\xb8\xba\x7c\xf5\x4a\x4f\xf9\xf5\xae\x72\x72\xfd\xd6\xc9\xec\xde\xad\x53\xd9\x9d\x39\x2b\x91\x57\x07\x2a\x7c\x38\xd5\x1b\x07\x45\x1a\x08\xa9\x3a\x85\x96\xe4\xdd\xf9\x98\x6e\xab\x8d\xbd\xbc\x71\xfe\x3b\x76\x42\x8c\x00\x98\xf2\xc6\xc7\xb2\x6d\x9b\xbf\xf2\xca\x2b\x12\x84\x66\x08\xdb\xcc\x79\x13\x67\x13\x44\xa5\xab\x21\x8e\xa1\xcb\xe7\x28\x22\xe1\x0a\x88\x0d\x91\xf6\xbd\x48\x87\xa8\x3a\xfc\xe7\xc3\x87\x0f\xb3\x9d\x3b\x77\xc2\x3b\xc5\x96\x4d\x39\xac\xf7\xf8\xe5\xce\x3f\xde\x32\x95\x3d\xc1\x40\xa6\x2f\xd5\xa3\xb8\x94\xf7\xa0\x22\xb6\x2e\x2f\x42\x06\xa6\xef\x37\x44\xb0\x0d\x1a\x2e\x81\x95\x4c\xa7\x78\xb9\x67\xf9\xdc\xd9\xfe\xd2\x6b\x73\x19\xfb\x86\x80\x98\x05\x30\x4b\x44\x21\x42\x10\x42\xa8\xea\x90\xca\xf9\x79\xb5\x5a\xc5\xec\xec\x6c\xe8\x4e\xa4\x6c\x36\xcb\xca\xe5\x72\xa3\xb1\x6b\x38\xee\x9b\x37\x6f\x06\x00\x5c\xbe\x7c\x99\x3f\xfe\xf8\xe3\xac\xad\xad\x0d\xf9\x7c\x1e\x9a\x21\x1e\x9c\x09\x77\x09\x24\x0b\x20\x2b\x84\xc8\x13\x51\x01\x40\x01\x40\x77\xd6\x62\x6b\xb6\x4c\x65\xf7\xef\xbc\xdd\xb6\xbf\xab\x9c\xec\x66\xf0\x6c\x8d\xa8\x10\x61\x8f\xa9\x61\xd9\x70\x4a\xdf\xdf\x39\xfd\x5f\xc7\xf3\xd5\x5f\x12\xd1\x35\x00\x13\x00\x8a\x42\x08\xeb\xfc\xf9\xf3\x78\xe5\x95\x57\xa2\x08\xa1\x19\x0e\xc5\xd9\x15\x77\x3b\x7e\x77\x55\xa6\x01\xd8\x4d\xad\x74\xbd\xe2\x15\x79\x01\x0e\x1e\x3c\xc8\xf6\xec\xd9\x03\xb8\xdb\x30\xb2\xa9\x1a\xeb\x3b\x7e\xa5\xf0\xc7\x9b\xa7\xb2\x27\x98\x20\x43\xf7\x0a\x01\x08\x6d\x97\x90\xc8\x4c\xea\x0a\x95\x42\x15\xa1\xd5\x59\x9f\x6a\x84\xef\x3a\x04\x04\x96\x4c\x5e\xbc\xd8\x5b\x7e\xfb\xec\x9a\xd2\x6b\xf3\x19\xfb\x06\x08\x53\x42\x88\x59\x22\x9a\x45\x60\x23\x94\x35\x75\x88\x03\xee\xa5\x60\xa3\xa3\xa3\x98\x99\x99\xc1\xf9\xf3\xe7\x79\x26\x93\x61\xcb\xcb\xcb\x8d\x6c\xa5\xf7\xca\x70\x90\x4c\x26\x99\xb7\x89\x0e\x07\x0e\x1c\x60\x5b\xb7\x6e\x45\x32\x99\x84\x69\x9a\x51\x76\x47\x1a\x40\xce\xfb\x2b\x08\x21\xba\x09\xd4\x9d\xa9\xb1\x81\x2d\x77\xb2\x7b\x77\x8f\xe7\x0e\x76\x96\x8d\x5e\x16\x96\xab\xf5\x36\x96\xd6\x07\x9b\x09\xfb\xa5\x8d\xf3\xdf\x3e\xd3\x5f\xfa\x1e\x08\x57\x00\x8c\xc3\x95\xa0\x95\xdb\xb7\x6f\xf3\x1f\xfc\xe0\x07\xad\x22\x7e\x2b\xe1\xbd\x20\xfc\x5d\x95\x25\xc4\x1b\xc0\x7a\x1c\x10\x3f\xc1\x51\xc4\x80\xb8\xe7\x07\x1f\x7c\x10\x7b\xf6\xec\x81\x10\xc2\x00\x90\x4d\x72\xd6\xfd\xd0\xa5\xce\x3f\xd9\x3a\x95\xfd\x23\x06\x18\xc2\xd7\x85\xd4\x45\xa8\xe0\x1c\x73\x70\xe8\x45\xe9\x01\x41\xf1\xac\x20\xbc\xe4\x03\xa5\x2e\x01\xd4\x0c\x6e\x5d\xe8\x2d\x9f\x3e\x3d\xb0\xf8\xca\x6c\xd6\xbe\x0a\xc2\x14\x80\x69\xb8\x7a\x70\x51\xda\x07\x50\xae\x6f\x11\x42\xf0\xe9\xe9\x69\xdc\xb8\x71\x03\x53\x53\x53\x18\x1b\x1b\x6b\x45\x2f\xd5\x39\x5e\xb3\x32\x51\x63\xaa\xbe\x47\x96\xd9\xb6\x6d\x1b\x1b\x1a\x1a\xc2\xe0\xe0\x20\xbc\x2b\x32\x83\x43\x52\x81\xd4\xc8\x0b\x21\x0a\x44\xd4\x0d\x81\xde\x6c\x8d\xad\xbf\xef\x76\xdb\xc1\xdd\xe3\xb9\x83\x39\x2b\x91\x0f\xf6\x7e\x69\xa7\xf2\x02\xa3\x01\x80\xc0\xb9\xbe\xa5\x97\x9f\xdf\x3c\xf7\x25\x87\xe1\x12\x80\x51\x6f\xcc\x2a\xc5\x62\xd1\xfe\xfe\xf7\xbf\x0f\x4d\x22\xb6\x0c\x03\x9a\x33\xd2\x46\x65\xf4\xd0\xac\x5c\x6c\xff\xe2\x24\x44\x33\xc4\x8f\x6a\xbc\xd5\x77\x7c\xfe\xf3\x9f\x67\xc9\x64\xd2\x10\x42\x64\x93\x9c\x75\x7f\xf0\x6a\xe1\xbf\xbf\xef\x76\xdb\xff\x48\x20\x13\x90\xb8\x1d\x5e\x14\xf2\x0d\xe5\x10\xd7\x57\xfc\xec\x8a\x6e\x24\xa4\x14\x91\x9e\x23\xb8\xe5\x38\x09\x7e\xa3\xb3\x72\xe9\x8d\x75\xc5\x17\x6f\xe7\xad\xf3\xc2\x95\x08\x53\x44\x34\x8d\x40\x35\x92\x9e\x12\x1b\x00\x5f\x5c\x5c\xc4\xbb\xef\xbe\x8b\xd3\xa7\x4f\xaf\xc8\x36\x8a\x09\xad\x8c\x9f\x9e\x06\xb4\xe6\xb9\x03\xe0\xde\x26\x3e\x3c\x3c\x8c\xd5\xab\x57\xcb\xf2\x52\xa5\x4a\x0b\x21\xb2\x44\x94\x07\xd0\x05\xa0\x17\x02\xbd\xf9\x4a\x62\xe8\xc0\xcd\xfc\xb1\xad\x53\xd9\xdd\xa6\xcd\xd2\xc1\x9e\x44\xe9\x00\x08\xd6\x1d\x6e\x75\x54\xaf\xfc\x70\xc7\xcc\xdf\x2d\x9b\xfc\x1c\x80\x6b\x70\x99\x48\xd9\x71\x1c\xfb\x8b\x5f\xfc\xe2\x3d\x83\x41\xcb\xd7\x28\x4e\xc6\xc7\x31\x67\x19\x5a\x71\x12\x31\x20\x7c\x62\x6e\xa5\x93\xb5\xe2\xd0\xdb\xdb\xcb\x1e\x7d\xf4\x51\xb9\xce\x90\x4e\x08\xea\x3e\x3c\xd2\xf1\xef\xf6\x8f\xb5\x7f\x21\xc1\x29\x5d\xef\xee\x20\xcf\x23\xd2\x40\x94\xab\x16\xb3\x4f\x3d\x81\x6a\x24\x8d\xc5\x52\xca\x99\x7f\x75\x7d\xf1\xf9\x8b\x3d\xe5\x57\x6b\x09\x3e\x06\xa2\x09\xb8\xdc\x6d\x56\x08\x51\x82\x6b\x28\x5b\x00\xb8\xe3\x38\x7c\x72\x72\x12\x4f\x3f\xfd\x34\x4f\xa5\x52\xac\x5a\xad\xca\xd6\x9a\x31\x07\x3d\xac\x98\x59\xa0\x1e\x51\x56\x32\x2f\xee\xa4\xba\x52\x82\x7f\xf0\x83\x1f\x64\x9b\x36\x6d\xf2\xef\x9f\x82\xe7\xd2\x86\xab\x46\xe5\x01\x74\x03\xe8\x65\x1c\xfd\x83\x0b\xa9\x5d\x87\xaf\x77\x7c\x68\xf5\xa2\xb9\x8e\x69\x8a\x92\x00\xb0\x64\x3a\xf3\xdf\xdb\x79\xe7\xff\xb9\x93\xab\xbd\x0a\x82\xb4\x1b\x4a\x00\xac\xe7\x9f\x7f\x1e\x97\x2e\x5d\x6a\x55\x7d\x6e\x09\x86\x98\xb2\x77\x83\xa3\x0d\x55\x77\x3d\x4f\x23\x1b\xe2\x9e\x07\x6f\x3b\x86\xe1\xad\x40\x17\xee\x1f\x6b\xff\xe4\xe1\xeb\x1d\xff\xc9\xf0\xaf\x7f\x51\xb5\x20\x65\x35\x5a\x76\xd4\xa7\x11\xf5\x72\xae\xc0\xcf\x1e\xba\xca\xc5\x8b\x77\x48\xf0\x8b\xbd\xe5\xd3\xaf\xae\x5f\x78\x66\x21\xe3\x5c\x86\x3b\x91\x13\xf0\x08\x81\x88\xca\x70\xdd\xa6\xdc\xb2\x2c\x7e\xe1\xc2\x05\xbc\xfa\xea\xab\xf7\x8c\x09\xfc\x1a\xc2\x5d\xe9\xe0\x4f\x3d\xf5\x14\xf3\xce\x90\xa8\x12\x23\x47\x44\x05\x21\x44\x1f\x80\xde\x94\xc3\xd6\xed\x1f\x6b\x7f\x68\xcf\xad\xf6\x43\x99\x1a\xcb\x4a\xad\xb4\xc6\x78\xe5\xd9\x2d\x73\x5f\xbf\xb8\xba\xfc\x63\x21\xc4\x15\x22\x1a\x17\x42\x14\x01\x58\xa3\xa3\xa3\xfc\xa7\x3f\xfd\xe9\x3d\x35\x6c\x9b\xe4\x5d\x89\x8d\xd0\x4a\xde\x50\x9a\xba\xdb\x55\xf2\x58\x86\x00\x2f\x99\x16\xa7\xff\xc6\x95\xad\x8b\x7b\xec\xb1\xc7\x58\x67\x67\x27\x83\xbb\x63\xb5\x63\x78\x3a\x73\xf8\x83\x57\x0b\x7f\x95\xe4\xac\xa0\xf6\x8e\x02\x5c\x0e\x16\x8b\x10\xf6\x89\xfb\x5b\x0e\x28\xd8\xb5\x29\xe3\xdd\x07\xf2\xa5\xc2\xcb\x1b\x17\x7e\xfc\xda\xfa\xe2\x0f\x97\x4d\x71\x11\xc0\x75\x00\x63\x70\xdd\x84\x0b\x92\x18\xaa\xd5\xaa\x73\xe1\xc2\x05\xf1\xf4\xd3\x4f\xf3\x5b\xb7\x6e\xc9\x2a\x75\xf8\xa2\xe2\xa2\xc6\x29\x64\xb9\x68\x03\xdf\x6c\x8c\xf5\xb2\x6a\xdb\x2a\xa8\x02\xf5\xfd\x8a\xcb\x4b\x00\xe8\xe2\xc5\x8b\x28\x16\x8b\xa2\xbb\xbb\x9b\xa7\x52\x29\x0e\xa0\x06\xc0\x22\xa2\xaa\x37\x0e\x65\x9e\x40\xf9\x56\x47\xf5\xd6\x78\x47\x75\x62\xd5\x92\xd9\x9b\xb5\x58\x07\x00\xfe\xd6\x60\xe9\xe7\x67\x06\x4a\x3f\x12\x84\xeb\xe4\x4a\xd6\x05\x22\xaa\x96\xcb\x65\xfe\x9d\xef\x7c\x87\x47\xb4\xfd\x6b\x81\x41\x7b\x8f\xaa\x23\xae\x9d\xb8\xf4\xba\x7a\xa4\x51\xdd\x2a\x05\xb6\xaa\xc7\xa9\x79\x71\xec\xd8\x31\x6c\xde\xbc\x59\x9e\x70\xcb\xf7\x15\xcd\xdd\x8f\x9d\x5f\xf5\x9f\x73\x56\x62\x4b\xdd\xf9\x05\xd9\xbd\xa8\xa0\xeb\x4d\x31\x79\x04\x04\xc6\x0a\xd5\x2b\x2f\x6e\x9c\xff\xd1\x9d\x5c\xed\x2c\x08\x63\x08\x4b\x05\xb9\xaa\xcc\x2f\x5d\xba\x84\x37\xde\x78\x03\xa5\x52\xa9\x15\x83\xae\xa9\xf7\x2c\x22\xae\xd5\x34\xbc\x87\xf2\x2b\xaa\x67\xd7\xae\x5d\xec\xf0\xe1\xc3\x32\x8f\x74\xd7\xe6\x10\xd8\x16\xfd\x6d\x16\x5b\x77\x78\xa4\xe3\xe1\x5c\x35\x91\xfd\xd1\x8e\x99\x2f\x5a\x86\xb8\x04\x97\x99\x4c\x03\x28\x57\x2a\x15\xfb\xcb\x5f\xfe\x72\x33\xae\xfb\x6b\x83\x41\x49\x47\x44\xb9\xa8\xb2\x2d\xa5\x45\x11\x44\x54\x41\xfd\xb9\xe5\x70\xdf\x7d\xf7\xb1\x23\x47\x8e\xc0\x23\x86\x5c\x7b\x25\xb1\xf1\x93\x67\xbb\xff\xb6\xab\x9c\x3c\xe4\x33\x06\x95\x28\x94\xf3\xc4\x81\xda\x14\x5a\x51\x80\x5c\x4e\x0a\x68\x22\xd8\xa6\x56\x63\xdc\x3e\xdf\xb7\xf4\xda\x2b\x43\x0b\x3f\xb0\x12\x62\x04\xee\x2a\xea\x04\x5c\xd7\xa0\xef\x42\x9d\x9a\x9a\xc2\xc9\x93\x27\x31\x39\x39\x89\xbb\x81\x2b\x22\x34\x9b\xac\x56\xc7\x6f\x25\xf3\x21\xeb\x5f\xb1\x6e\xdd\xde\xde\xce\xee\xbf\xff\x7e\x6c\xd9\xb2\x05\x08\xbb\x6a\x0b\x42\x88\x2e\x22\xea\x66\x1c\x39\x83\x13\xac\x84\x98\x02\x61\x02\x1e\x31\x00\xb0\x9e\x79\xe6\x19\x5c\xbb\x76\xed\x6e\xda\xbe\x67\x30\x34\x29\xa3\xd7\x8d\x88\xbc\x75\xf5\x34\xb3\x21\x5a\x31\x02\x1b\x86\xdf\xff\xfd\xdf\x67\x8c\x31\x77\x4b\x06\x67\x7d\x1f\xb9\xd0\xf5\x85\xe1\xe9\xcc\xbf\x53\x77\xad\xaa\xb6\x01\x14\x74\x97\xb7\x5c\x48\x4f\xaa\x9f\x2f\x74\x8d\x9e\x54\x93\x04\xaa\x86\x28\xbf\x3c\x34\xff\x93\x77\xfb\x96\x5e\x70\x18\x46\xe0\xfa\xc8\xa7\x85\x10\x45\x4f\x2d\xb0\x97\x97\x97\xf9\xa9\x53\xa7\xf0\xce\x3b\xef\xac\x74\xa0\x9b\x85\xa8\x41\xbf\x2b\x26\x12\x53\xbe\x55\xdd\x79\xc5\xe9\x9f\xfa\xd4\xa7\x98\xbc\xb0\x41\x08\x91\x26\x22\xb9\xb0\x97\x06\xc0\x3d\xa7\x83\x5c\x97\xb1\xce\x9c\x39\x83\xd7\x5e\x7b\xed\x6e\x6c\x80\x96\x60\x30\x4d\x93\x59\x96\x75\x2f\xe6\x67\x25\x12\x05\xc0\xca\x16\xe6\xe2\x3a\x12\xab\x52\x7c\xf6\xb3\x9f\x65\xb9\x5c\x8e\x09\x21\xb2\x0c\xd4\x75\xf0\x46\xfe\xa9\x07\x6f\xe4\xff\x57\x72\x2f\x11\x0b\x8c\x85\xba\x5b\xea\x82\x9d\x96\xe1\x7c\x41\x9c\x7a\xad\x0b\x40\x58\x4c\xd9\xf3\xbf\xd8\x3c\xf7\xed\x91\xae\xca\x49\x10\x46\x01\x8c\x7b\x8b\x6c\x25\x21\x44\x85\x88\xec\x91\x91\x11\xfc\xec\x67\x3f\x8b\x13\xaf\x2a\x0c\xad\xc0\xaa\x86\x56\xd5\xac\x56\x25\x6e\xab\xc8\x1f\x55\xa6\xd5\x10\xca\xff\xc0\x03\x0f\xb0\x7d\xfb\xf6\xc9\xcf\x02\x98\xca\xea\x37\xe0\x6e\x51\xb1\x88\xc8\xbe\x73\xe7\x8e\xb4\x1b\x5a\xad\xbf\xe5\x7e\x3d\xfc\xf0\xc3\x0c\x70\xb7\xb0\xdc\xbc\x79\x13\xb6\x6d\x37\xfb\xd8\xcb\x4a\xd4\x7d\x99\x8e\x46\xfd\x51\x55\xa6\x56\x2b\x89\xd2\xeb\x42\xe9\x8c\x31\xbc\xff\xfd\xef\xc7\xd6\xad\x5b\xe5\xe0\x16\x36\xcd\x64\xde\xff\xc8\x85\x55\xff\x39\x65\x53\xaf\x90\x4d\x4b\x17\xa9\xff\x2e\xd5\x27\xf7\x57\xd1\x9c\x02\x89\x11\xca\xe3\xa6\xdf\xc9\xd5\xc6\x9e\xdd\x32\xf7\xcd\xc9\x9c\xf5\x16\x08\xa3\x42\x88\x09\x22\x92\xf6\x82\xe5\x38\x0e\x7f\xe9\xa5\x97\xa4\x6b\x50\x47\xea\x48\x18\x62\xd2\xf5\xb8\xa8\x71\x88\x0b\x71\x63\xd6\xca\xf8\xb6\x52\x26\xae\xbf\x51\xef\x6a\x19\x3f\xbd\xbb\xbb\x1b\xc7\x8f\x1f\x47\xa1\x50\xd0\xbf\x91\xc7\x85\x10\xfc\xf6\xed\xdb\x78\xe6\x99\x67\xa0\x7c\xc7\xee\x6e\xec\x04\x00\xe0\x8c\x31\x36\x30\x30\x80\xbd\x7b\xf7\x62\xf5\xea\xd5\x50\x2e\xa3\xd6\xc7\x0c\x42\x08\x3e\x33\x33\x83\xd3\xa7\x4f\x63\x74\x74\x14\xb6\x6d\xc7\xc2\x10\x13\x5a\xb5\x5f\x62\xbf\x31\xa7\x37\xa6\xa7\x45\xe5\x0f\x95\x39\x71\xe2\x04\x83\x67\xac\xb5\x55\xd9\xba\xdf\x3a\xd3\xfb\x77\x9d\xcb\xc9\x83\xa1\xdb\xdb\x15\x6e\x0f\x11\xde\x8a\x11\xba\x4d\x22\xa4\x32\xb9\x2b\xd6\x32\xe2\x4e\xae\x36\xf6\xa3\xed\x33\xff\x34\x9f\xb1\xcf\x0a\x88\x51\x00\x13\xde\xd6\x8b\x32\x00\xbb\x58\x2c\xf2\xaf\x7f\xfd\xeb\xcd\xd4\x98\xbb\xb1\x95\x5a\x91\x9c\x2b\x8d\xbb\x97\x76\x47\x33\x04\x05\xe2\x11\x19\x1f\xf9\xc8\x47\xe4\x6d\x88\x98\x9c\x9c\xc4\xf7\xbe\xf7\xbd\xb8\x31\xbc\x2b\xdb\xe9\x63\x1f\xfb\x18\x5b\xb3\x66\x8d\x4c\x37\xb4\x3f\x59\xc6\xdf\x42\xef\xed\x1a\x56\xa5\x7c\x53\x18\x22\xe0\x6e\x36\x3e\xb1\x2a\x53\x9c\x68\x69\x69\x92\xe5\x4a\x34\x80\x6c\x82\xa3\xf7\xa1\x4b\x5d\x7f\xb6\x7d\x32\x7b\x22\x74\xfb\x75\xd8\x4e\x96\x6b\x70\xf0\x3b\xa5\x7b\x91\x94\xbc\xae\x3a\x25\x30\xd6\x51\xbd\xf2\xb3\x6d\xb3\x5f\x5d\x4c\x3b\x67\xe1\x6e\x23\x98\x82\xb7\xaf\x06\x80\xf5\xee\xbb\xef\xe2\xa5\x97\x5e\x7a\x2f\x3a\xfc\x7f\xeb\x70\x2f\x0c\xcd\xf7\x6c\x07\xbe\xc7\x50\xd7\xde\x53\x4f\x3d\xc5\xf2\xf9\xbc\x4b\x08\x02\xe9\x4c\x8d\x15\x36\xce\x64\xf6\x6f\x98\x4d\x7f\xa0\x77\xd1\xdc\x61\x08\x4a\xd7\x98\x28\x4d\xe5\xac\x0b\xd7\xba\x97\x9f\x1b\xe9\xac\xbc\x5d\x31\x79\x11\xde\x2e\x82\x4a\xa5\xc2\x1b\x78\xb8\xde\x53\x68\xd5\xcb\xd4\x54\xf7\x92\xe1\xe1\x87\x1f\x66\x43\x43\x43\x0c\x40\x1a\x02\x85\xed\x93\xd9\x8f\x3c\x74\xb9\xeb\xff\x36\x38\xe5\xf4\x85\x35\x6d\x9b\x8c\xe6\x69\x0a\x68\x55\x3f\x47\x20\x20\x30\x9e\xb7\xae\xfd\x64\xfb\xcc\x3f\x15\x53\xf6\x59\x00\x23\x44\x34\x25\x84\x98\x27\xa2\x8a\x10\xc2\x56\x76\x5d\x36\x13\xed\x2d\xc1\xd5\x42\x68\xa4\x72\xae\xc4\x7e\x68\x54\x77\x33\x9d\xb9\x99\x04\x68\x56\x6f\xb3\x76\xd4\x77\x35\xb4\x62\x2b\x30\x00\xfc\x89\x27\x9e\x60\x85\x42\x81\xc1\x3d\x04\x96\xdd\x34\x9d\xd9\x7f\x68\xa4\xe3\xcf\xba\x96\x8d\x23\x24\x90\x0d\x96\x59\xdd\x79\xe6\x84\xd2\x6c\xb6\xf6\xf2\xc9\x0d\x0b\x7f\x7d\xbd\xab\x72\x4e\xb8\x17\x30\x57\x96\x97\x97\xf9\x57\xbe\xf2\x95\x86\xea\xcf\xdd\xc0\x90\x40\xf4\x82\x9a\xfc\x93\x15\xa8\x0b\x22\x3a\xef\x66\x6a\xdc\x43\x0f\x3d\x44\x00\x92\x44\x94\xcd\x57\x13\x1b\x1f\xbe\xb8\xea\x7f\xcf\xd6\x12\x83\x61\x6f\x11\xc9\xe3\x0c\x7e\xcd\x42\x79\x0e\x21\xbf\x5f\x8e\x7c\xb5\x6a\x2a\x57\x1b\xfd\xf1\xf6\x99\x2f\x2f\xa6\x9d\x33\x44\x74\x83\x88\x26\x84\x10\x0b\x44\x54\xb1\x2c\xcb\x7e\xe9\xa5\x97\x70\xe6\xcc\x19\xd9\x77\x09\x97\xfe\x2e\x49\xb0\xd9\x24\xc6\x2d\x48\xea\x21\x2e\x9f\xda\xbe\xda\x6e\xab\x8b\x71\xea\xc2\x12\xb4\x34\x65\xd4\x20\x94\x7a\xf4\x45\xa9\xb8\x39\x56\xf3\x44\xd5\xc3\xb4\x74\x9d\x75\x01\xe1\x71\x6d\x08\xc3\x13\x4f\x3c\x41\x9e\x7d\x92\x66\xa0\xfc\x9e\x5b\xb9\x8f\xfc\xc6\x95\xce\xff\x92\xb3\x12\xbb\x98\xa0\xa4\xbc\x5a\xd1\x35\x2d\x5d\x26\xc8\x40\x66\xb6\xc6\x86\x37\xce\x66\x3e\x54\x4b\x88\xd1\xc9\x76\x6b\x4c\x40\xd4\x92\xc9\x24\x5f\xb7\x6e\x1d\x2e\x5f\xbe\x0c\xe1\x5f\x5a\xf2\xde\x61\x88\x32\x44\xb8\xf2\xc7\x22\xe2\x54\xa0\xfd\xca\x0c\xc3\x60\x4f\x3e\xf9\x24\x23\x22\x83\x88\xd2\x24\xd0\xf5\xe0\x8d\x8e\xdf\xed\xa8\x24\x76\x00\xf0\x6f\x64\x11\xd2\x0e\xf0\xfa\xed\x8f\xa2\x97\x2e\x23\x84\x80\xbf\x26\xa1\x5e\x28\x30\xc3\x35\x52\xff\x00\x00\x20\x00\x49\x44\x41\x54\xdd\x56\x1b\xff\xe9\xb6\x99\x7f\x2a\xa6\x9d\x33\x9e\x37\x69\x02\xc0\xbc\x24\x86\x9f\xfe\xf4\xa7\xb8\x7c\xf9\xb2\xda\xc7\x66\x12\x41\x1f\x03\xa6\xe5\x6b\x64\x90\x46\x95\x51\xcb\xb5\xc2\xa9\xe3\x0c\xe3\x46\xe5\x38\xe2\xe7\x24\xaa\x4d\xbd\x6e\xbd\x9c\xde\x0f\x7d\xdc\x74\xb8\xf4\xfe\xe9\x6d\x47\xc2\xd0\xd1\xd1\xc1\xe0\x1e\x68\xca\x6d\xbe\x93\x7d\xff\x91\x91\x8e\xbf\x32\x38\xf5\xaa\x37\x15\xfa\xab\x4e\x52\x85\xf6\x70\x3d\x69\xb3\xfe\x23\x23\x1d\x7f\xb5\x69\x3a\x73\x84\x40\x79\x00\x66\x4f\x4f\x0f\xf6\xed\xdb\x77\x4f\x61\x88\x2b\xa4\x02\xd7\x0c\x60\x06\x80\x1d\x38\x70\x00\x8a\x5e\x98\x5d\x3f\x9b\xde\xbd\x65\x2a\xf3\x04\x40\x41\x19\x85\x3e\x7d\xd1\xa8\xf2\x51\x12\xc1\xb6\x0d\x72\xff\x05\x46\xb8\xc0\x92\xe9\x14\x9f\xdd\x32\xf7\xf5\xd9\xac\x7d\x46\x40\xc8\xd5\xe7\x79\x00\x56\xad\x56\xb3\x7f\xf6\xb3\x9f\xe1\xf6\xed\xdb\x6a\xdf\x54\x78\x5a\x79\x67\x2b\xc8\xa3\x8f\x07\x9a\xc4\xab\xe9\x3a\x22\x01\xe1\x09\x8a\xfb\x8d\x83\x4b\xcf\x13\x57\x47\xa3\x72\x7a\xf9\x46\x46\xaa\xcc\xab\xbf\xc7\xf6\xfd\x73\x9f\xfb\x9c\x1c\x97\x74\xd6\x62\x7d\x0f\xde\xc8\xff\x89\xe9\xb0\x5e\x39\xff\x3e\xbb\x16\x52\x42\x90\xaf\x3a\x4b\x4d\x22\xe9\x50\xef\x91\xeb\x1d\x7f\x96\xb2\xa9\x1b\xee\x26\x45\x63\xfb\xf6\xed\xd0\xdb\x7a\x2f\x30\xe8\xc4\xd0\x0a\x70\x7a\xe0\x00\xf8\xee\xdd\xbb\xe1\xf9\xad\xb3\x69\x9b\xf5\x1d\x1e\xe9\xf8\xe3\x24\xa7\x82\x34\x90\xfd\xb3\xc3\xf0\x54\x22\x6d\x20\xe4\x05\x5a\x80\xe2\x89\x55\x8c\xed\x8a\xc1\xcb\xcf\x6e\x9e\xfd\xfa\x44\xbb\xf5\x3a\x08\xa3\x44\x34\x0e\xef\xd8\x62\xb5\x5a\xb5\xff\xf1\x1f\xff\x91\x8f\x8f\x8f\x37\x93\x6c\xcd\x90\x2c\x6a\x30\x5b\x41\x9a\xa8\xe7\xa8\xba\xa3\x10\x28\x8e\x19\xc5\x11\x64\xd4\x7c\xe9\x79\x1a\x11\x76\xa3\x72\x51\xa1\x11\x41\xea\xd2\x47\xad\xcf\x87\x61\x78\x78\x98\x25\x93\x49\x9f\x59\x0e\xdf\xc9\x1e\xed\x2c\x1b\x07\xfc\xdb\x06\xa1\xfe\x06\xaf\xaa\xea\x2c\x95\xa9\xc2\xb2\x71\x60\xd3\x4c\xf6\x08\xdc\x33\x1e\x46\x26\x93\xb9\xa7\x30\x34\xe3\x9c\x51\xa1\x2e\xcf\xe3\x8f\x3f\x2e\x81\x37\x20\x90\xbb\x6f\xa2\xed\x43\x3d\x4b\x72\x6b\x86\xb4\x0f\xc2\xc8\x2e\x10\x56\xf4\xd4\x78\xdd\xf7\xc5\x49\xd8\xaf\xae\x2f\xfe\xe8\xda\x2a\x77\xd1\x4d\x08\x31\xe1\xed\xb6\xac\xd4\x6a\x35\xfb\x4b\x5f\xfa\x52\x23\x95\xa8\x95\xb0\xd2\xfc\xad\xd4\xf3\x5e\x10\x51\x25\xec\x38\x35\x2f\x0a\xe9\xa3\x54\xac\xb8\x3e\xa9\xc4\xa3\xb7\x15\x17\xa2\xf0\xa5\x21\xa3\x04\xc0\x86\x86\x86\x40\x44\x8c\x88\x4c\x02\xf2\x43\x33\xe9\xdf\x20\xc0\x84\xa7\x26\x09\x6f\x9d\x29\x50\x97\x83\x25\x57\x19\x84\xb7\x58\x4b\x02\xc6\xd0\x4c\xfa\x37\x48\x20\x0f\xef\x1e\xa8\x87\x1e\x7a\xe8\x9e\xc1\x10\xa7\xfb\xaa\x19\xa3\xd4\xa4\x50\xc5\xfd\xfd\xfd\x80\x77\x63\x46\x7b\x35\xd1\xbf\xe7\x56\xee\xf3\xc4\xc9\x84\xa2\xee\x28\xa0\xf9\x4f\xaa\x15\x14\x95\xc7\x25\x18\x81\x0b\xab\x97\x5e\x3b\xbb\xa6\xf4\x2c\x08\x23\x70\xd7\x19\xe6\x01\xf8\x36\x83\xd6\x9f\x38\xfd\x5e\xe7\xbc\x51\xef\xad\xd4\xa5\xff\xb6\xa2\x42\x35\xfb\x8d\x93\x0a\x51\x36\x82\x9a\x16\x57\x46\x6f\x5f\x27\x98\xa8\xfc\x51\xed\xc4\x8d\x43\x54\x88\x85\xa1\xbb\xbb\x5b\x22\xb9\x69\x38\x94\x2f\x54\x8c\x61\x80\x82\x03\x60\x52\x3b\x08\xab\x0b\x61\xab\x5f\xc6\x11\xa1\xab\x9c\xdc\x96\xb2\x59\x01\x1e\x41\x6c\xda\xb4\x49\x87\xe5\xae\x61\x88\xd2\x67\x9b\xa9\x4a\xa1\x46\x3f\xf6\xb1\x8f\xc9\x41\x30\x49\x20\xbf\x6f\xac\xfd\xb7\xda\xab\x89\x2d\x3e\x44\x1e\xcb\xf7\x17\xa5\xe5\x31\x36\xcf\x78\x72\x6d\x67\x65\xdf\x92\x80\x7b\xe3\x83\xc7\x0e\x26\xda\xad\x6b\x2f\x6d\x5c\xf8\x96\x93\xc0\x35\x78\xe7\x77\xe5\x56\x8c\x57\x5f\x7d\x15\x9e\x9a\xa4\xf7\xb7\x95\x49\x8f\xd3\x23\x7d\xd8\x62\xde\xd5\x31\x8b\x12\xc1\x6a\xfd\x51\x08\x1c\x55\x56\x17\xe9\x71\x84\x1a\xd7\x8e\x2e\x21\xe3\xec\x13\x15\x16\x7d\xde\xa3\xfa\x1c\xd5\x56\x14\xae\x44\xf5\xc7\x87\x21\x97\xcb\xc9\xfc\x86\xc1\x29\x9b\x74\x58\xae\x91\xdb\x52\x25\x04\x29\x45\xd4\x78\xd3\xa6\x42\x82\x23\x87\xf0\xbd\x62\xf7\x04\x06\x43\xc9\x04\x2d\xb1\x91\x38\xf4\xf3\xae\x5e\xbd\x5a\x1e\x38\xc9\x76\x96\x93\x1b\xb6\x4d\x65\x3f\x4d\x82\x98\x0a\x85\xf4\x1e\xa9\x1a\xa1\x7f\x5c\x57\xb1\x1d\x42\x9a\x92\x00\x96\x93\xbc\xf8\xd2\xa6\xf9\x6f\x2f\x1b\xce\x35\x02\xc9\xc3\xec\x65\x00\xd6\xf9\xf3\xe7\x71\xe1\xc2\x85\xc8\x3e\x21\x1e\xf1\x9b\xa5\xe9\xf1\x8d\xe2\x5a\xd1\xa7\xe3\xca\x34\xaa\x9f\x45\x3c\xab\x04\x14\x25\xb1\xf5\x74\x9d\xc8\xa3\x10\x20\x2e\x5f\x1c\xf1\x34\x2b\x13\x89\x3b\xfd\xfd\xfd\x72\x3b\x06\x03\xc0\x1c\x26\x98\xc3\x84\x9b\x57\x71\x0a\xab\x3b\x36\xc2\x3e\xd4\x40\xd5\xf6\x4d\x4f\xf2\xd4\x73\xaf\x4e\x4f\xfa\xdc\x13\x18\xe2\xb8\xa0\xda\x40\x6c\xf8\xc4\x27\x3e\xc1\x18\x63\xee\xcd\x72\x02\xf9\x3d\xe3\x6d\x9f\xca\xd4\xd8\x3a\x55\x53\xf2\xed\x04\xd5\x03\xec\x05\xe9\x6f\x56\x75\x47\x29\x31\x04\x09\xfe\xda\xba\xe2\x4f\xc6\xf3\xd6\x5b\x44\x34\x06\xf7\xb8\x67\x09\x80\x3d\x32\x32\x82\x5f\xfe\xf2\x97\x5c\x08\x11\x35\xe1\x71\x6a\x4b\x33\xd5\xa8\x91\x3a\xa4\x97\x8b\xab\x27\xee\xbd\x51\x99\x46\xf6\x8f\x4e\x40\x71\xed\x70\xd4\x97\x8f\x2a\xd3\x28\x9f\x5e\xa6\x15\x35\x4b\xef\x4b\x1d\x0c\x8a\x04\x07\x00\xd4\x98\xb0\xe7\x33\xf6\x04\xe0\x6e\xc9\x51\xed\x6a\x89\x08\x2a\x9a\xf8\x0b\x2b\x14\x10\xca\x42\xda\x9e\xaa\x1a\xc2\x82\x9f\x16\x62\xa5\xef\x09\x06\x7d\xf2\x75\x71\x12\xab\xf7\x0e\x0c\x0c\x30\x79\x90\x5d\x08\x91\x5d\x55\x4e\x6e\xdc\x7c\x27\xfb\x71\xff\x83\x20\xca\x42\x9c\xe2\x54\xf2\x09\x43\x2a\x4d\x44\xca\x57\x7a\x14\x17\xdb\x48\x57\xe5\xdc\xb9\x35\x4b\xcf\x82\x30\x26\x84\x98\xf6\xb6\x20\x5b\x73\x73\x73\xdc\xdb\x01\x19\x05\x70\x1c\xe2\x34\xd2\xc5\xf5\x01\xd2\x11\xa4\x55\x64\x8f\x0a\x2b\x21\x0c\xf9\xac\xeb\xe2\x71\xaa\x53\x2b\xc4\xdc\xac\x4c\xd4\x7b\x2b\xaa\x62\x5c\xbb\x91\x75\x55\xab\x55\x08\x21\xb8\x10\xc2\x16\x04\x6b\xb4\xb3\x72\x8e\x43\x70\x5f\x29\x12\x61\x02\x70\x55\x68\xe9\x89\x17\x5a\x9c\xc0\x8d\xae\xca\xdb\x36\x13\x15\xaf\x3f\x5c\x6e\x44\xbc\x17\x30\xa8\x08\xb5\x12\x75\x83\xef\xdd\xbb\x57\x96\x37\x09\x94\xdb\x35\xde\xf6\xb1\x4c\x8d\xf5\x4b\x37\xab\xee\x29\xd2\x5e\x41\x42\xd9\xbe\xa1\xe4\x11\x9e\xaa\xf4\xab\x0d\x0b\x4f\xdb\x09\x31\x0a\x60\x8a\x88\x8a\xde\x29\x37\xfd\x56\xb8\xb8\xbe\x36\x53\xf5\x5a\x55\x91\x5a\xe1\xda\x71\x6d\xc4\xc5\xeb\x2a\x46\xa3\xdf\x28\xf1\x1e\x55\x3f\x57\xfe\xa2\xfa\xac\xbf\xeb\x76\x47\xdc\xdc\x37\xb2\x3d\xa2\xfa\x1b\x09\x83\x65\x59\xf0\x6e\x37\xb4\x41\x28\x5f\xee\x29\x9f\x2a\xa5\x9c\x29\xd7\x5e\x74\x59\x63\x9d\xd2\xac\x10\x85\x1f\x05\xa0\x6c\xf2\xe9\x0b\xbd\xe5\x57\xe1\x7d\x2a\x58\x5e\x19\x7a\xaf\x60\x68\xc4\xed\x1a\xaa\x4c\xaa\x67\x29\x57\x4d\xf4\x6f\x9d\xca\x7e\x3c\x64\x3b\x28\x90\x84\x9c\x4d\xbe\x7b\xd5\x1b\x02\x6d\x75\x5a\x90\xe0\x6f\x0d\x2c\x3e\x33\x95\xab\x9d\x81\x72\xd2\x0d\x00\x7f\xf9\xe5\x97\x71\xeb\xd6\xad\x46\xfd\x6a\xc6\xcd\x57\xc2\xdd\x81\x16\xd4\xc6\x15\xe6\xd3\xf3\x46\x49\xb2\x28\x1d\xb8\x19\x93\x8a\x83\x2b\x8a\x69\xc4\xd5\xdd\xac\xed\x58\x84\x8f\x68\x23\x14\x37\x31\x31\x01\x4f\xbd\xb5\x84\x10\xa5\x62\xca\x19\x7d\x75\x7d\xf1\xfb\x4e\x42\x58\xd2\xdb\x24\xfd\xee\xee\x99\xfa\x40\x6b\x08\xce\xcd\x13\x1c\x26\xac\x57\xd7\x17\x9f\x5e\x4c\x39\xa3\x70\xef\xd7\xb5\x88\x88\x5f\xba\x74\x29\xb6\xed\x95\xc2\xd0\x48\x2c\xc7\xea\xe2\xc7\x8e\x1d\x93\xa7\xab\x4c\x08\xe4\xb6\x4f\x66\x1f\x4a\xdb\x6c\xd0\x5f\x78\x26\xf8\x00\x85\x3c\x08\x8a\xba\x24\xd5\xa8\xd0\x57\x7d\x48\x60\xaa\xdd\x1a\x39\xdb\xbf\xf4\x9c\x80\x90\xd7\xc4\x94\x84\x10\xf6\xcd\x9b\x37\x79\x93\x53\x6e\x51\xfd\xd6\x91\xa5\x11\xa2\xc5\xa9\x00\xad\x22\x7b\xd4\x44\x34\xea\x5f\xab\xf9\xd5\xd0\x68\xa2\xd5\xba\x5b\x91\x80\x32\x3e\x0a\x56\x7d\x5c\xa2\xb8\x6c\xb3\xba\xfd\xf0\xdc\x73\xcf\xc9\x6b\x3f\x2d\x00\x25\x10\xa6\x2f\xac\x5e\x7a\xe9\xd4\x60\xe9\x67\x36\x13\xb6\xba\x40\x27\xef\xee\x55\xbf\x62\xe4\x7d\xec\xd1\x3e\xd3\xbf\xf8\x8b\xf3\x7d\xa5\xe7\x40\x98\x96\x67\x5d\x38\xe7\xfc\xea\xd5\xab\x51\xb0\xde\x15\x0c\x86\x96\x21\x8e\xc2\x42\x95\x0e\x0f\x0f\xfb\x57\x99\x64\x2c\xd6\xbb\x7d\xaa\xed\xe3\xf2\x9b\x6e\x92\xda\x29\xc2\x97\xac\x3f\x04\x9f\x77\x72\x15\x27\x4e\xb0\x5f\x5f\xb7\xf8\xa3\x65\xc3\x19\x21\xa2\x29\x78\xf7\xfe\x54\x2a\x15\xfe\xda\x6b\xaf\x45\x01\xa1\xeb\x84\x71\xaa\x4f\x14\x1c\x51\x36\x47\x1c\xe7\x8b\x1b\xd0\x66\xd2\x2a\x4a\x1a\xb4\xda\x1f\xde\x20\x3e\xaa\x8d\x28\x7b\x2a\x2e\x4e\xaf\x4f\xcf\xa7\x97\x69\xd4\x4f\x3d\xd4\xc1\x90\x48\x24\xd8\xf4\xf4\x34\xba\xbb\xbb\x6d\xef\x28\xef\xb4\xc3\x30\xfa\xab\xf5\x0b\xdf\x59\x32\x9d\xf2\xfd\x37\xdb\x3f\x94\xaf\x26\xba\x7c\x4e\x49\xf0\x71\x02\x10\x28\x99\xce\xfc\xeb\xeb\x8a\x3f\x3b\xbf\x66\xe9\xe7\x0e\x73\x6f\x0b\x24\xa2\x12\x00\xfb\xf6\xed\xdb\xb8\x79\xf3\xe6\x3d\x83\xc1\x68\x94\x18\x03\xa8\x3c\xdd\x64\x08\x21\xb2\x43\x33\x99\x03\x1d\xcb\xc6\x8e\x90\xae\x47\xd1\xe7\xa2\x21\x8d\x68\xef\xcb\xa0\xd2\xdd\x26\x37\x77\x8d\x76\x56\xce\x5d\xef\x5a\x7e\xdd\x23\x86\x79\x00\x15\x21\x84\xfd\xf6\xdb\x6f\x63\x66\x66\xa6\x11\x72\xc5\x01\x1c\x47\x40\x51\x65\xd0\xe0\x3d\xaa\x6e\x44\xe4\xd1\x43\x23\x82\x8d\xeb\x0f\x50\xdf\xf7\xa8\xc9\xd6\xdf\xe5\x73\x9c\x64\x8f\x83\x41\x8d\x8b\x1a\xb7\x28\xfc\x68\xaa\x26\xa9\xf5\x38\x8e\x83\x17\x5e\x78\x01\x9f\xfc\xe4\x27\x79\x22\x91\xa8\xc0\xbd\x2e\x74\x02\x8c\xf0\x76\x7f\xc9\x1e\xe9\x5a\xbe\xb0\xf9\x4e\xf6\xc0\x86\xb9\xf4\xb6\x7c\xc5\x28\x24\x38\x19\x0e\x09\xbb\x98\xb6\xe7\x6f\x74\x55\x2e\x5c\xea\x29\xbf\x59\x4c\x3b\x97\xbd\xcd\x9c\xfe\x5d\xb2\xb5\x5a\x8d\xbf\xf5\xd6\x5b\xf7\x14\x06\xfd\x1b\x73\x8d\xb8\x20\x03\xdc\xfd\xec\x80\xfb\x9d\x02\xc6\x91\xdf\x7a\x27\xfb\x48\x42\x90\x09\xf2\x36\x64\x41\xdd\x5f\xab\x7f\xf7\x98\xfc\x2d\x1a\xc1\x71\x6a\x97\x48\x6a\x09\x51\x39\x35\xb8\xf8\x0c\x67\x98\xf0\xce\x42\x97\x01\xd8\x33\x33\x33\x72\x2b\x77\xa3\xc9\xd4\x07\xa5\x91\x8e\xab\x0e\x4a\xa3\x10\x35\xb9\xfa\x60\x37\x23\x26\xbd\x7c\x54\x3f\x1b\x95\x69\xd6\x2f\xbd\xee\x56\x55\xa5\xa8\xf4\xa8\x7a\xf4\xf4\xa8\xf2\x2d\x49\x67\x6f\x1e\xd9\xbe\x7d\xfb\x6c\x22\x2a\x7b\xd7\x87\xda\x20\x58\xc5\x8c\x33\x7f\x6a\xed\xe2\x8d\xd3\x83\x8b\x85\x94\xcd\x3a\x12\x9c\x0c\x87\x09\xbb\x6a\xf0\x05\xc7\xfd\x2e\xc7\x34\x10\xba\x7f\xb7\x2c\x84\xe0\x17\x2e\x5c\xd0\xdd\xba\xef\x19\x06\xfd\x1b\x73\x51\xc8\x14\x9a\xb0\x42\xa1\x00\xb8\xd7\x96\xa4\xbb\x97\xcc\x0d\x7d\x45\xf3\x90\x5f\x03\x05\xab\xce\xfe\x6a\xbc\xf0\x37\xb2\x2a\x21\x70\x2a\x4b\x5d\x71\xa4\xab\xf2\xf6\x78\x47\xf5\x0c\x3c\xaf\x12\xbc\x1d\xac\xdf\xfe\xf6\xb7\x75\xc0\xe2\x00\x6c\xc4\x15\xa2\x06\x41\xcd\xa7\xa7\x45\x71\xee\x46\xc8\xd6\x90\x43\xc6\x94\x8b\x23\x86\x66\x48\x1c\x15\x56\x5a\xa6\x55\x62\xbb\xdb\xba\x22\xeb\x79\xe3\x8d\x37\xb8\xe3\x38\xec\x81\x07\x1e\xb0\xbc\x3c\x36\xdc\x53\x70\xf3\x20\x4c\x38\x84\x5c\xd9\xe4\xf2\x82\x03\x99\x56\x06\x82\x0f\xd5\xc0\xfb\x42\xd3\xc5\x8b\x17\x71\xf2\xe4\xc9\x95\x30\x92\x96\x60\x50\x55\xa6\x46\x93\x07\x00\xfc\x91\x47\x1e\x91\x04\x62\x10\x28\x37\x3c\x9d\xfd\x80\xe9\x50\x21\xfc\x2d\x2a\x65\x65\x11\x08\x56\xaa\x7d\x1f\x9a\xb2\x40\xe1\x85\x1a\xe3\x95\x33\xfd\x25\x29\x1d\xfc\x53\x6f\xd7\xaf\x5f\xbf\x6b\xc0\xd0\x98\x80\x9a\x49\x91\x56\x38\x6b\x23\xb5\x41\xb5\x01\x1a\xd5\x19\x15\xd7\x48\x52\xaf\x44\x37\x8e\xaa\xaf\x99\x5d\xa4\x96\x69\xd4\x4e\x5c\x99\xa6\xda\xc6\x5b\x6f\xbd\x05\xc6\x18\xf6\xef\xdf\x6f\xcb\x8f\xce\xc0\x45\xfa\x79\x00\x92\x18\x64\x79\x1b\x2e\x01\x54\xe4\xad\x1f\xb6\x6d\xdb\x97\x2f\x5f\x96\x47\x83\xef\x39\x0c\x71\x1f\x5d\x94\x15\x85\x2a\xe8\xeb\xeb\x93\xef\x69\xd3\xa1\xc2\xc6\xe9\xf4\x71\x08\x62\xee\xe7\x70\x55\x35\x48\x79\x56\xfe\xfb\xdf\x76\x90\x5e\x36\xef\x1b\xce\x63\x85\xea\x3b\x13\xf9\xea\x79\x04\xab\xd1\x16\x00\x7e\xfa\xf4\x69\xbd\x5f\xf7\x62\x10\x5a\xe1\xca\x51\x63\xa0\xe7\x6d\xa4\x86\xe9\xe5\x5a\xe9\x47\x14\x11\x45\xf5\xaf\x91\xba\xd5\xa8\x4f\x8d\x88\x55\xcf\x13\xd5\x4e\x54\xfd\x7a\x99\x96\x60\x38\x75\xea\x14\x9f\x9e\x9e\x66\x47\x8f\x1e\xb5\x33\x99\x8c\xbc\x48\xa0\x02\xf8\x1f\x9d\x94\xaa\xb4\xdc\x8d\xc0\x89\xc8\x9e\x9b\x9b\xc3\xbf\xfc\xcb\xbf\xac\xa4\x3f\x2b\x86\x41\xb5\x21\xf4\xc9\xa9\x03\x2e\x95\x4a\xc9\x32\xe9\xde\x92\x39\x5c\x58\x4e\x6e\x53\xf7\x22\xc9\xa0\x2e\xb3\x93\x17\x11\x08\x09\x75\xdf\x3b\xc1\x21\x61\x9f\x5b\xb3\xf4\xa2\xe3\x7e\xa3\x61\x5e\x72\x8d\x8b\x17\x2f\x62\x7e\x7e\x3e\x6a\x02\xa3\x90\x48\x7d\x8e\x22\x8a\x66\x5c\xad\x15\x09\xd1\x88\xf3\xaa\xed\x35\xea\x5b\xa3\x3e\xc4\x21\x7a\x23\x09\x1e\xd5\xb7\x28\xc2\x8c\xca\xdb\x0a\x91\x37\xea\xaf\xde\xb7\x56\xe3\x00\x00\x37\x6e\xdc\xc0\x57\xbe\xf2\x15\xbe\x73\xe7\x4e\x36\x34\x34\x64\xaf\x5a\xb5\x4a\x7e\x4e\x8c\x01\xfe\x76\x0c\xee\x38\x0e\xe6\xe7\xe7\x71\xfa\xf4\x69\x8c\x8c\x8c\xfc\xda\x61\xd0\xbd\x4c\x7a\xe5\x7e\xf8\xd0\x87\x3e\xe4\xab\x4b\x10\xc8\x6e\x98\x4d\x3f\x98\x90\xdf\x80\x83\xb6\x55\x17\x3a\x89\xd4\xed\xec\xf5\xdf\x67\xdb\x6a\xa3\x37\x0b\x95\x33\x02\x62\x9e\xe0\xba\xd2\x6a\xb5\x1a\x7f\xf1\xc5\x17\x5b\x01\xb0\x19\x92\x36\x2b\xd3\x88\xdb\x47\x0d\x7a\xb3\x76\xe2\x88\xaa\x11\x2c\xcd\x10\x29\x2a\x5f\x54\x1b\x6a\x9a\x8a\x7c\xad\x10\x52\x23\xe2\x6e\xa6\x52\xb7\xa2\xce\xc5\xc2\x70\xee\xdc\x39\x7e\xee\xdc\x39\x3f\xc3\xa6\x4d\x9b\xd0\xd7\xd7\x87\x5f\xfe\xf2\x97\xbc\xbb\xbb\x9b\x4d\x4f\x4f\xb7\xca\x0c\xee\x09\x0c\xba\x97\x29\xaa\xd3\xdc\x30\x0c\xb6\x71\xe3\x46\xc0\x93\x0e\x29\x87\x0a\xeb\x67\xd3\xef\x07\xc2\xeb\x0b\xf2\x5e\xa5\x60\xdf\x52\x70\x55\xa5\x6f\x5e\x78\x3e\x58\xe1\xa5\x5f\xe8\x2d\xbf\x62\x19\x62\x82\x40\xf2\xfa\x18\xfb\xc6\x8d\x1b\x51\xfd\x89\x02\x3a\x0a\x38\x35\xaf\x5e\x4f\x9c\x9a\xd2\x0a\xd2\x37\x13\xc5\x7a\x1f\x9a\xa9\x50\x51\xfd\xd1\x61\x88\x82\x27\x6a\xa2\xf5\xf2\x71\x08\xd4\x4a\xfb\x6a\xbd\x51\x30\x36\x65\x9e\x88\x81\x61\x60\x60\x80\x4d\x4d\x4d\xc1\xfb\x2c\x58\x24\x0c\x57\xaf\x5e\xc5\xd5\xab\x57\x39\x00\x36\x3d\x3d\x1d\x09\x43\x7f\x7f\x3f\xc6\xc7\xc7\xf9\xf1\xe3\xc7\x55\x98\x00\x80\xfd\xe2\x17\xbf\x88\x63\x30\x2d\xc1\x10\xe5\x65\xaa\x7b\xef\xee\xee\x06\x00\xff\x9a\xc3\xae\xa5\xe4\x86\x8e\x65\x63\x38\xbc\x96\xe8\xb9\x59\x29\xb8\x60\xcc\x3f\x02\xaa\xda\xd0\xca\xce\xc4\x72\x92\xcf\x5f\x5f\xb5\xfc\x16\xdc\x33\x0e\x25\xf9\xc1\x12\x0f\xa8\x38\x75\xa6\x11\x77\xd6\x91\x56\xe6\xd7\x01\x6f\xa4\x86\x45\x95\x89\x52\x85\xa2\xda\x69\x34\x19\x51\xaa\x5b\x33\x35\xad\x99\x4a\x17\x47\x0c\x51\x79\x1b\x11\x4f\x5c\xbf\xe2\x60\x8c\xea\x17\x07\xdc\x9b\xc5\x87\x86\x86\x90\xcf\xe7\x91\xc9\x64\xa0\xd8\x04\x9c\x88\x50\x2e\x97\x31\x36\x36\xc6\x9e\x7f\xfe\xf9\x15\xc3\xb0\x7e\xfd\x7a\xb6\x77\xef\x5e\xf4\xf6\xf6\xca\xe3\xca\x00\xdc\xed\xdf\x52\xc5\x1a\x1e\x1e\x66\xd5\x6a\x95\xdf\xb9\x73\x07\x3f\xfa\xd1\x8f\x56\x0c\x43\x94\xca\x54\xc7\x99\x87\x86\x86\x00\xb8\x9f\x83\x15\x42\x64\xfb\x8b\xa9\x3d\x49\x4e\x39\xf7\xd8\x5f\x70\x92\x29\x38\x00\x14\x6c\xe1\x88\xd8\xda\xe4\xbf\xdc\xea\xa8\xbe\xb3\x90\xb6\x47\x00\x14\x3d\xcf\x12\x9f\x9d\x9d\x45\x22\x91\x60\x8e\xe3\xa8\x7d\xd1\xfb\xd5\x0a\x77\xd6\xb9\xb9\x9e\x37\x4a\x22\xea\x65\x5a\x09\xba\x0d\xa0\x97\x8f\x93\x3e\x71\xed\xc4\xf5\x47\x8f\x8b\x1b\x8f\x38\x35\x26\xae\xed\x46\x84\xd8\xa8\x4c\xa8\x2f\x03\x03\x03\x38\x76\xec\x18\xda\xda\xda\x64\x7e\xc3\xfb\xbe\x36\x03\x00\x6f\xeb\x06\xcf\x64\x32\x7c\xcb\x96\x2d\x7c\xcb\x96\x2d\xb8\x73\xe7\x0e\x9e\x7d\xf6\x59\x14\x8b\xc5\x86\x30\x14\x0a\x05\x1c\x3f\x7e\x1c\xab\x56\xad\x92\x84\xa0\x7e\x79\x95\x21\x3c\x07\xb6\x69\x9a\xf6\xc0\xc0\x80\x7d\xe2\xc4\x09\x9c\x39\x73\x46\x7e\x00\xa7\x29\x0c\x40\xfd\xd6\x0d\x7d\xf0\x00\x00\xf2\xca\x41\x21\x84\x49\x44\xd9\xf5\xb3\xe9\x03\x00\x31\xdd\x9e\xa6\xba\x67\x75\x49\x2e\x08\x02\x02\x82\xc0\x2f\xf5\x96\x5f\x73\x48\xcc\x7a\xb6\x83\x45\x44\xfc\x5b\xdf\xfa\x56\x2b\xaa\x44\x5c\x5c\x54\xb9\x28\xce\x1d\x95\x1e\x27\x3d\xf4\xb6\x1a\x71\xb4\x46\x7d\x6e\x86\xe0\x51\x21\x4a\xc2\xc4\xa9\x6e\x51\x21\x8e\xe0\x9a\xa9\x88\x71\x2a\x46\xa4\xc4\x3a\x7a\xf4\x28\xb6\x6e\xdd\x2a\x91\xd5\x00\x60\x9a\x36\x65\x3b\xcb\x66\x5f\x4f\x29\x39\x98\x10\x64\x2c\x27\x79\x69\xba\xcd\x1a\x2b\xa6\x9d\x69\x3b\x21\x2a\x00\xac\x9e\x9e\x1e\xfb\x89\x27\x9e\xe0\xaf\xbf\xfe\x3a\x53\xee\xd1\xaa\x83\xe1\xf1\xc7\x1f\x67\xd9\x6c\x96\xc1\xfb\x88\x64\xba\xc6\xf2\xeb\x67\xd3\x3b\xd7\xcf\xa5\xdf\xb7\x7a\xd1\xdc\x61\x70\xca\x56\x0c\x3e\x3d\x91\xb7\xce\x5f\x5b\xb5\xfc\xf2\xad\x8e\xea\x25\x3b\x21\xca\x00\xac\xdd\xbb\x77\xdb\xeb\xd6\xad\x93\xde\xa9\x58\x18\x64\x5c\x9c\x97\x29\x14\xbc\xc5\x38\x46\x44\x66\xc6\x62\x85\x9e\x52\x72\x67\xc8\x2e\xf0\x55\xa4\xc0\xdf\xaa\x7d\xe6\x21\xfc\x0b\x42\x25\xe9\x14\x6f\x75\x54\xcf\x7b\x8b\x70\x15\x00\xb6\x72\x89\x6d\xdc\x44\xc7\x21\x6f\xb3\x10\x87\x50\x51\x6d\xc5\x21\x71\x2c\xc3\x68\xb5\xde\x9d\x3b\x77\xb2\xb5\x6b\xd7\x22\x9b\xcd\x86\xfa\x36\x3a\x3a\x8a\xe5\xe5\x65\x9c\x3b\x77\xae\x15\x22\x6c\xd4\xdf\xa8\xf1\x5b\x49\x7f\x5b\xcd\xe3\xc7\x3d\xfe\xf8\xe3\xac\xbf\xbf\x9f\xc1\xbb\x96\x32\x65\x53\x7e\xd7\xed\xdc\xb1\xad\x53\xd9\xdf\x2e\x2c\x1b\x7b\x13\x9c\x0a\x5e\x3d\x76\x2d\x21\x26\xa6\xdb\x6a\xaf\x9d\x1e\x58\xfc\xd2\xb5\xee\xe5\xb7\x1d\x86\x12\x63\xac\xf2\xc0\x03\x0f\xd8\x8e\xe3\x30\x0f\x7e\xbf\x8d\x42\xa1\xc0\x1e\x7b\xec\x31\x78\xc4\x90\x26\x8e\xdc\xf0\x74\x66\xef\xc1\xd1\xfc\x9f\x74\x95\x93\xef\x67\x02\x39\xb9\xb4\xdb\x01\xa0\xb7\x94\xe4\xf7\x4d\xb4\xcd\xde\x2c\x54\xbe\x7d\x72\xc3\xc2\xdf\x4f\xe5\x6a\xd7\x88\xa8\x52\x28\x14\xac\x4f\x7f\xfa\xd3\xf8\xe6\x37\xbf\xc9\xa3\x60\x50\xe1\xf3\xf5\x30\x65\x00\xea\x06\xc3\xfb\x68\x9f\x01\xc0\xec\x2d\x25\x87\x53\x0e\xeb\xf6\x57\xdb\x3c\x63\x3a\x1c\x82\xc5\xb7\xd0\x9a\x9c\x9f\x24\x70\xab\xa3\xfa\xce\x72\x92\xcb\x0f\xf7\x55\x00\x70\xed\x82\xb1\x56\x27\x32\xaa\x4c\x23\x2e\x18\x57\x2e\xca\x6e\x88\x23\x12\x35\x2e\x92\x50\xd6\xac\x59\xc3\x6e\xdf\xbe\xcd\x9f\x7c\xf2\x49\xd6\xd1\xd1\x01\xc0\xb7\xc1\xea\xfa\xb1\x6a\xd5\x2a\x0e\x00\x47\x8e\x1c\x01\xe0\x6e\x73\xf0\x24\xa5\x0e\x57\x23\x86\xd0\xec\x39\xea\x7d\xa5\x65\x42\xcf\x8f\x3c\xf2\x48\x40\x0c\x40\xb6\xb7\x94\x1c\x3e\x7e\xb9\xf3\x0b\xab\x17\xcd\x8f\x12\xc8\x94\xd7\xd0\x79\x7b\xd5\x4c\xd3\x61\x1b\xfb\x8b\xa9\x8d\x7d\x8b\xe6\x47\x2f\xf5\x94\xff\xeb\x4b\x1b\xe7\xbf\x58\x4e\xf1\x29\x22\x2a\x1f\x39\x72\xc4\x26\x22\x76\xf6\xec\x59\x0e\xb8\xdf\x88\x78\xfc\xf1\xc7\x7d\x62\x60\x1c\x85\x83\xa3\xf9\xdf\xbc\xff\x66\xfb\x5f\x1a\x9c\xba\x43\xbb\x61\x03\x24\x63\x06\xa7\xee\x0d\xb3\xe9\x13\x3d\x25\xf3\xd0\x4f\xb7\xcd\xfc\xe9\xcd\x42\xf5\x1c\x11\x95\xba\xba\xba\xac\xc3\x87\x0f\xcb\xd5\xed\x58\x1c\x4a\x68\x89\x2a\xfe\x0a\x00\xec\xc8\x91\x23\xd4\xd3\xd3\x43\xde\x47\xfa\x0a\xdb\xa7\xda\x1e\x1d\x9c\x4f\x1d\x81\xbf\x6f\x3d\x00\xda\xdd\xdb\x8e\xa0\x0a\xf5\xfe\x25\xff\xf4\x9c\x80\x00\xf8\x9b\x83\xa5\xa7\xef\xe4\x6a\x6f\x0a\x88\x29\x00\x4b\x00\x6a\xca\x77\x07\x54\x0a\x63\xb2\x2f\x4a\xbf\x64\x50\x69\x4d\x2f\xc3\xbd\x74\x8e\x30\x4c\x51\xf9\xe4\xaf\x2e\xcb\x84\x92\xcf\x3f\xcd\xa8\x94\x11\x6a\x5e\xc6\x18\x1b\x1c\x1c\xa4\x63\xc7\x8e\xd1\xbe\x7d\xfb\x70\xe0\xc0\x81\x44\x2a\x95\x4a\x78\xaa\x44\x0a\xae\xc8\x4f\x91\xfb\x9c\x06\x90\x04\x60\x0a\xf7\xea\x4f\x43\x7e\x5f\x3a\x9b\xcd\xd2\xfe\xfd\xfb\x69\xd7\xae\x5d\xe8\xef\xef\xc7\x95\x2b\x57\x24\xfc\xb2\x7d\xbd\x8f\x6a\x9a\x88\xc8\xa3\xfe\x41\x2b\x23\x9f\x25\x4c\xa4\xd4\x45\x11\xef\x00\x20\xb6\x6e\xdd\xca\x76\xed\xda\x05\x22\x4a\x0a\x21\x72\x3d\x4b\xe6\xa6\xc7\xcf\x77\xff\x97\x55\xe5\xe4\x71\x80\x12\x04\xb9\x43\x41\x55\x9b\x3d\x7b\x53\x20\xd5\x5d\x4e\x3e\xb8\xaa\x9c\xec\xb8\xbe\x6a\xf9\x94\xc3\x44\x8d\x88\x9c\x9e\x9e\x1e\x3e\x3a\x3a\x4a\x95\x4a\x45\x1c\x3d\x7a\x94\xfa\xfa\xfa\x5c\x35\x1d\xd4\xb1\x77\x3c\xf7\xd8\xa1\x1b\x1d\xff\xc9\x70\xa8\x2b\xd8\x25\x1d\x40\xe8\x03\xec\xb5\x67\x3a\xb4\x7a\x60\x21\xbd\x6b\xac\x50\x7d\x75\x29\xe9\x14\x89\xc8\xee\xe9\xe9\x71\x6e\xdd\xba\x45\x4b\x4b\x4b\x2a\xdc\xf2\x97\x00\xf7\xa3\x8b\xea\xa4\xab\x93\x4d\x00\xf8\xfb\xde\xf7\x3e\xf2\x26\x35\x93\x10\xd4\xbd\xf7\x56\xfb\x93\x9d\xcb\xc6\x70\xb0\xbd\x9b\x82\xff\xca\x1a\x43\x70\xb0\x43\x19\x13\x6f\x03\xa0\x95\xe4\x8b\xaf\xae\x2f\x7e\x6b\xd9\xe4\x97\x89\x68\x8e\x88\xca\xa5\x52\x89\x9f\x3b\x77\x4e\x17\x35\x2a\xb1\x86\x04\x8d\x32\x99\x32\x9f\x0a\x60\x88\xa8\x11\xcd\x0d\xd4\xf2\x14\x91\x57\x27\x36\x9d\x20\x43\x1b\x7c\xdb\xda\xda\xd8\x47\x3e\xf2\x11\xec\xdb\xb7\x0f\xb9\x5c\x8e\x11\x51\x12\xee\xb5\x8d\x19\x56\x13\x1d\x6d\x73\xce\x70\xe7\xa4\xfd\x60\xd7\x2d\xfb\xe1\xae\x71\xfb\xd1\xce\x5b\xb5\x8f\x74\x4e\x38\xc7\x3b\xa6\xec\x07\x73\xb3\xce\x66\xb3\xc2\x0b\x04\xa2\x9a\x49\x0e\x88\x12\x44\x44\x86\x61\x88\x8e\x8e\x0e\xdc\x7f\xff\xfd\x30\x0c\x43\x1e\x8e\x8a\xea\x83\x4e\xec\x51\xcf\xcd\xf2\xc4\xe5\x8d\x2c\xff\xc8\x23\x8f\x90\xf7\x45\xd9\x4c\xda\x66\x7d\x8f\x5c\xec\xfa\xcb\x9e\x25\xf3\x21\x1f\xe9\x01\xf8\x47\x82\x21\xa5\x44\x80\x1b\x10\x60\x85\x8a\xb1\x13\x84\xc9\x5b\x05\xeb\x12\x08\x96\x61\x18\x4e\x67\x67\xa7\xb8\x74\xe9\x92\x38\x7e\xfc\x38\x31\xc6\x92\x44\xd4\x56\xa8\x18\x43\x1f\xbe\xd8\xf5\x37\xa6\xc3\xd6\xb8\x57\xd7\x28\xf2\x41\xf5\x6a\x2a\x38\x49\x20\xa4\x6c\x5a\x93\xb3\x8c\xe4\x95\x9e\xe5\xd7\x04\xa1\x42\x44\x76\x6f\x6f\xaf\x50\xce\xd5\xe8\x8c\x52\xe8\x6e\xd7\xba\xe7\x6c\x36\x2b\x5d\x67\x66\xca\x66\x85\xee\xa5\xe4\x46\x55\x5c\xf9\xc0\x6b\xbc\x55\x31\x17\xea\xf2\xce\x65\xec\xf1\x62\xda\x19\x13\x42\x94\xa5\xab\x75\x6c\x6c\x0c\x11\xa1\x91\x8e\x0b\xd4\x8b\xf6\x46\x7a\x75\xa3\xd0\x4a\xb9\xd8\x7a\x76\xee\xdc\xc9\x0e\x1f\x3e\x2c\xc7\xc9\x10\x42\xa4\x19\x47\xb6\x7d\xc6\xd9\xd6\x39\x5e\x7b\x34\x37\xe3\x1c\x4f\xd4\xc4\xb0\x77\xb9\x16\xc2\x74\x18\xd4\x2f\x18\x66\x6b\x29\x7a\x7b\xbe\x2f\xf9\xe3\xf9\x35\xc6\xf3\xcb\x79\x36\x0a\xef\x03\x91\x7b\xf6\xec\xb1\x77\xee\xdc\x89\x06\x1f\x48\xd7\x43\xab\x06\xfb\x4a\xeb\x62\x00\x78\x5b\x5b\x1b\x03\x60\x10\x51\x6e\xeb\x54\xdb\xb1\xfe\x85\xd4\xe3\xca\x32\x93\x1b\xea\xb7\xad\xf9\x66\xa6\x77\x27\x93\xb1\x6b\x3c\xf7\x1f\x2e\xf7\x2c\xbf\x76\x27\x57\x3b\x07\xc0\x5e\xb3\x66\x8d\xf5\x87\x7f\xf8\x87\xfe\x01\x34\x02\xe5\xf7\x8e\xe5\x3e\x93\xa9\xb1\x8d\x21\x33\x14\xf0\xbe\xab\x13\x76\xf1\x87\x82\x20\xac\x9d\x4b\x3d\xde\xbf\x90\xfa\xce\x58\x67\xf5\x57\x00\xac\xae\xae\x2e\x4b\x59\xf0\xab\x83\x5f\xb7\x21\xea\x82\x61\x18\x32\xdd\x68\xaf\x26\x7a\x33\x16\xeb\x0b\x37\x0a\x5f\x5e\x09\x2f\x82\xfc\xf3\x7f\xd0\x16\xe5\xdc\xb8\x89\xbc\x75\xc9\x66\x42\x9e\x93\xb6\x01\x60\x76\x76\x56\xad\xb5\x91\x01\xab\xe6\x89\xd3\xed\x5b\x75\x27\xb6\x12\xe2\xbc\x12\x00\x80\x8f\x7e\xf4\xa3\x6c\x70\x70\x10\x70\x09\xc1\x24\x81\x5c\x7e\xda\xd9\xd9\x7b\xdd\xfa\xfd\xb6\x79\xe7\x43\xc4\xd1\xad\x6f\x82\x17\xc2\xe7\x92\x8a\x3f\x42\x30\xc6\xd1\x6d\x96\xc5\xf1\xde\xeb\xd6\xb1\x55\x37\xad\xd1\x62\xaf\xf1\xcf\x53\x1b\xcd\xaf\x55\x72\x6c\x0c\x44\x95\x44\x22\x61\x7d\xfe\xf3\x9f\xb7\x2f\x5f\xbe\x8c\x97\x5f\x7e\x59\xed\x53\x94\x0d\x18\x35\x2e\x51\x63\x10\xe7\x8e\x54\xcb\x84\xe2\x3e\xf6\xb1\x8f\xc9\x3d\x47\x66\xc2\x41\x61\xfb\x64\xf6\xb7\x98\x20\x13\x08\xcf\x73\xc8\x86\x94\xfe\x16\x52\x9e\x05\x90\xb6\x59\xff\xa6\xe9\xcc\x6f\x4c\xb5\x59\xd7\xe4\x96\x7f\xa5\x3d\x33\x6d\xb3\xee\xb5\xf3\xe9\x63\xfe\x62\x96\xc6\x4b\x42\xcc\x18\x70\xcf\x68\x2b\xaa\x7a\x92\x53\x61\xfd\x5c\xfa\x7d\x63\x85\xea\xdb\x02\xa2\x0c\xc0\x1e\x1a\x1a\xe2\xd3\xd3\xd3\x91\xf8\xa2\x1b\x99\x4c\xf9\x65\x7b\xf6\xec\x61\x42\x08\xe6\xf9\x93\xcd\xc2\xb2\xd1\x6f\x70\x6f\xbb\x86\xbc\x6e\x90\x44\xe8\x2e\x56\xff\x36\x36\x59\xa3\x42\xc0\xee\x9f\xc0\x44\xbb\x75\x05\xe4\x1b\xd3\x36\x00\x7e\xfe\xfc\xf9\x38\x2f\x47\x54\x68\x86\xd8\xb2\xac\x5a\x3e\x04\x5b\xc4\x33\x9a\xc4\xa9\x75\x32\x00\x78\xf4\xd1\x47\xd9\xe0\xe0\xa0\x7b\x94\x16\xc8\x99\x55\x31\xb8\xf6\x7c\xe5\x8f\x87\xde\x5a\xfe\x5a\x6e\xd6\x7e\x8a\x71\x78\x2b\x9a\xca\x20\x00\x8a\x6e\xa9\x8c\x9d\x6f\x83\x11\x48\x80\x19\x36\x36\x74\x8e\xdb\x7f\xb1\xe9\xb5\xe5\xaf\xf5\x5e\xb7\x3e\x49\x8e\x28\x00\x48\x27\x93\x49\x73\xc7\x8e\x1d\xec\xd8\xb1\x63\x51\x63\xa3\x1a\xcb\x51\xe3\x11\x15\x17\x37\x8e\x6a\x19\x1f\x79\x72\xb9\x1c\x53\xdc\xf0\xe9\x7c\xd5\xe8\xeb\x5c\x36\x76\x0a\xd7\x99\xee\x83\x2b\xdf\x08\x02\xd2\xe5\x28\xaf\x19\x02\x84\x4a\x14\x6c\xc3\x6c\xfa\x98\xbc\xd1\xdb\xbb\xf2\x52\x8e\xb1\x99\xae\xb1\xde\x36\x2b\x31\x18\x6c\xa6\x56\xdb\x09\xbe\x45\xe8\xdb\x13\x90\x43\x2d\x40\x24\x40\x02\x6c\xf5\xa2\xb9\x9b\x84\x7b\xb1\x19\x11\xb1\xe1\xe1\x61\x09\x9f\x84\xcd\x7f\x66\x40\x1d\x57\xf0\xd5\x90\x81\x81\x01\x00\x80\x67\xf0\xa5\xbb\xca\xc9\xf5\x04\x18\x0a\xa8\x6e\x08\x75\xcc\x03\xde\xef\xa4\xbc\xe6\xdc\xfd\x57\x4b\x88\xf2\x74\x5b\xed\x3a\x3c\x62\x50\x17\xe3\x9a\x4c\x86\x8a\x8c\x3a\x72\xea\x22\x5d\x0d\x2a\x82\xeb\x9c\x51\xf7\xa4\xe8\x03\xa5\x7b\x64\xfc\xfe\x3d\xfa\xe8\xa3\x6c\xed\xda\xb5\x0c\x80\x49\x40\x3e\x3b\xef\x6c\xdb\xf8\xc6\xf2\xdf\x76\x8d\xd9\x7f\xc1\x38\xba\x15\x03\x32\xcc\x14\x44\xf0\xac\x5e\xd9\xa3\x5c\x68\x18\x9a\x60\xc3\x12\xdb\xd6\x5c\xb2\xfe\x76\xdd\xdb\x95\x3f\x37\x2a\x7c\x50\x08\x91\x06\x60\x6c\xd9\xb2\x85\x1d\x3d\x7a\xd4\xfd\xa0\x5f\x63\xb8\x74\x2e\x1f\xe7\x4d\x64\x0d\xf2\xfa\x63\xd2\xdb\xdb\xeb\xb7\x43\x44\x66\xd6\x4a\xf4\x1b\x0e\xcb\x13\x51\x98\x19\x0a\x95\xa1\x93\x0f\xb8\xaf\xee\x78\x04\x02\x22\x64\xad\x44\x7f\xd2\xa1\x9c\xc7\x58\x64\xdf\x0c\x22\x32\xb3\x35\xd6\x95\xe0\xc8\x4a\x8c\x13\x20\x04\x9b\x45\x95\x6f\x49\xc8\xb6\xfc\x1d\xd5\xe4\xbf\xa7\x6d\xd6\x45\xde\xe5\xc8\x11\xe3\xa4\x86\xba\x5b\x37\xd4\xc9\x57\x11\xd1\x20\x90\xd9\xb5\x94\x5c\x17\x98\x2c\x1e\x4f\x13\x80\xbc\xc2\x5c\x9a\xd7\xea\x80\xf8\xeb\x12\x2e\x28\x58\x32\x9d\xe9\xa5\x94\x33\x0d\xf7\xd4\x93\x4d\x44\x7c\x61\x61\x01\x8e\xe3\xc4\x4d\xaa\xae\xd7\x73\xed\x59\x77\x21\xc6\xd9\x03\x51\xe5\x64\x5b\x88\x79\xaf\x23\x04\x84\x89\xc1\x80\x10\xb9\xb6\x79\x67\xc7\xfa\xd3\xcb\x7f\x9b\x5e\xe4\x1f\x76\xed\x32\xa1\x48\x83\xe0\x99\xbc\xeb\xfe\xdd\x5d\xef\x01\xc6\x04\x9e\x3a\xf8\x71\xee\xed\x13\x5e\xbc\x10\xd9\xc2\x84\xfd\x3f\xac\x7f\xbb\xf2\x1f\x93\x96\xe8\x87\x70\x27\x77\xdb\xb6\x6d\xd8\xb5\x6b\x97\xda\xe7\x28\x38\xa2\x42\x23\xa2\xd0\xeb\x09\x8d\xa3\xf2\x6d\x6a\x57\x65\xe2\xc8\x52\xa8\x9c\xd7\x67\x05\x69\x05\x49\x27\x4b\xa0\xe7\x08\x04\x8e\x17\x59\x97\x22\x19\x7c\xdc\xab\x31\xd7\x2b\xe9\xdb\x27\x50\x3c\x4a\xf2\x02\x64\xff\x1c\xbf\x24\x0a\x99\xcf\xed\xc3\xb2\xc1\xcb\x4a\xbd\x0d\xd5\xf1\x28\xae\x20\x9f\xf9\xc0\xc0\x80\x6f\x28\x26\x38\xd2\x1d\x15\x63\x9d\x7a\x6d\x8c\xdf\xac\x2a\xb2\xbc\x3f\x97\x28\xa4\x80\x84\x3f\x18\x0b\x19\x7b\xdc\x4a\xf0\x22\xdc\x95\x69\x1b\x00\x94\x8b\xc7\xf4\xbe\xa9\xa1\x91\x0a\xd5\x28\xbd\x19\x82\xc4\x11\x82\x5e\x2f\x07\x80\x83\x07\x0f\x06\xc4\x00\xe4\xd2\x8b\x7c\xdb\xba\x33\x95\xbf\x4e\x95\xc5\x01\x5f\x12\x7a\xbc\xcc\x1f\x0f\xb9\x4e\xa3\xea\xbf\xfe\x18\x8a\xe0\x34\x21\x69\x33\x0e\xf8\x56\x2a\x01\x46\x6e\xc6\x79\x6a\xdd\xd9\xca\x17\x12\x35\xd1\x0b\xef\xfb\x08\x07\x0e\x1c\x88\x83\x51\x9f\x70\x9d\x23\x46\x21\x44\x9c\xfa\x14\xab\x5a\x55\x0d\x61\x71\x12\xb6\x7c\x27\x05\x38\xc5\xb9\x18\x3c\x08\x85\x69\x7a\x61\xc9\x74\x66\x6b\x09\xa1\xf7\x1f\x00\x50\x4a\x39\xc5\xb2\xe9\xcc\x02\x21\x02\x42\xdd\xbb\x76\xa9\x45\x10\x04\x66\xdb\x6a\xe3\x9c\x20\xef\x6f\xd2\x43\x08\x2e\xfd\x80\x90\x9f\xd8\xd6\xd6\xa6\x7e\x22\xd5\x48\x39\x2c\x97\x76\x6f\x5c\xf6\x55\x23\x75\x13\x5f\xc8\x72\x50\xc4\x61\x68\x6e\x21\x30\x97\xb1\xc7\xb9\x77\xc9\x14\x00\xf5\x3a\x4a\xbd\x1f\x4d\xa9\x19\xd1\x13\x15\x27\xfa\xeb\xc4\x3f\xe2\x11\x24\x2a\x8d\xf5\xf4\xf4\xa8\x1c\x39\x9b\xa8\x89\xbe\xb5\xe7\x2a\x5f\x30\x97\xc5\x7e\xdf\xa5\x10\x32\x1e\x83\x0f\xc0\xf8\xdf\xc7\xf0\xdd\x2c\xf0\x75\x61\xf2\x2d\x43\x19\x02\xab\x34\xb4\x1d\x06\x60\xed\x77\x9c\xa7\x56\x5f\xad\x8e\x8e\x6f\x4b\xfd\x3d\x88\x78\x22\x91\x28\x7f\xe6\x33\x9f\x91\x5b\x13\x9a\xc1\x10\x0a\x07\x0f\x1e\x94\xbb\x98\x65\x7e\x00\xee\x59\x05\xed\x78\x66\xac\x9d\xb1\x90\xb1\x67\x97\x4c\x3e\x5d\xa8\xb0\x75\xa1\x9e\x2a\x90\x84\x62\x34\xa7\x90\x80\xc0\x4c\x5b\x6d\x0c\xe4\x1b\xd3\x1c\x1e\x5e\x10\x91\x5d\x49\xf2\xd2\xed\xbc\x75\xa9\xa3\x92\xdc\x10\xae\x39\xda\x57\xa7\x3b\x9b\x38\xc1\xbe\xd5\x51\xbd\x02\x17\xdf\x64\x1b\x71\x81\xa9\xb7\x27\x87\x44\x67\x7b\x7b\xbb\x9c\x44\x46\x44\x86\x69\xb3\x9c\x69\x53\x3e\xb0\x1e\x14\xc3\xd0\xa3\x79\xb9\xeb\x50\x6e\xf2\x93\x9f\x94\x56\xbb\x3f\x97\xad\x8d\x81\x02\xfb\xa1\x5a\xad\x42\xe9\x43\x9c\x1d\xa1\xc7\x45\x79\x49\xa0\xc5\x45\x49\x3e\x3d\x7f\x23\xdb\xa2\xae\xde\xfb\xef\xbf\x5f\xda\x3a\x69\x08\x91\x5f\x7d\xb5\xfa\x64\x76\x81\x7f\x38\xf8\x64\xb6\x6a\x3c\x7b\xeb\xb3\x82\x5c\x55\xc9\xb7\xb9\x02\x69\x21\x6f\x1b\x71\xd5\x26\x95\xc3\x29\x07\xaa\x14\xfb\xc2\xab\xdd\x58\x75\xb3\xf6\x47\x4b\x5d\x89\xb3\x0b\xab\x93\x2f\x02\xb0\x3b\x3b\x3b\xad\x7d\xfb\xf6\xc1\xbb\x81\x22\x8a\x41\xf8\xe1\xd0\xa1\x43\x58\xbb\x76\x2d\x0a\x85\x82\x94\xfe\xa1\xef\x43\x0b\x21\xf8\xae\x5d\xbb\xf8\xce\x9d\x3b\xb1\xb8\xb8\x88\xf3\xe7\xcf\xe3\xdc\xb9\x73\x12\x17\x74\xb5\xd3\xae\x18\xbc\x78\xa3\x6b\xf9\x74\xc7\x78\xfb\x3a\xd9\x73\xc9\x2a\x43\x7a\xbf\x0f\xb9\x87\x14\xd2\xc8\x26\xd8\xa3\x85\xca\x3b\xf0\x10\x56\xdd\xb9\x0a\xc0\x12\x84\xd2\xb9\x35\x4b\x2f\x6c\x9e\xce\x1e\x4b\x70\x32\x83\x6f\x0e\x06\x38\x28\xeb\xf5\x3f\xe3\x2c\x82\xdb\x5d\x66\xdb\x6a\x23\x63\x85\xea\xbb\x12\xe7\x00\x60\x71\x71\x51\x9f\xeb\xba\xc9\xaf\xd3\x17\xfb\xfb\xfb\xa1\x5a\xfc\xd9\x5a\xa2\x60\x70\xca\xba\x93\x43\x0a\x43\x53\x0c\x26\xff\x0e\xff\xf0\x8c\xb8\x0c\xd0\xbd\x77\xa9\x98\x72\x26\x85\x10\x3a\xb5\xc6\xe9\xf7\x8d\x74\x7d\x44\x94\x89\xb2\x3b\x1a\xd5\x1b\x97\x37\xb2\xcc\xda\xb5\x6b\x01\x6f\x9b\x42\xdb\x9c\xb3\xa3\xeb\x66\xed\xf7\x00\xc1\x7c\xbd\xd5\xd7\xfb\x85\x5c\x91\x0f\x8f\x85\x2e\xb1\x15\x9d\x42\xda\x63\xf2\xdb\x7a\x52\xe5\xf4\xeb\x93\x59\x09\x60\x0e\xba\xfa\x2e\x59\x7f\x9c\xa8\x09\xf9\x69\x29\xb6\x7b\xf7\x6e\xd9\x67\xdd\xc9\xc0\x01\x20\x9f\xcf\xe3\x89\x27\x9e\xc0\xae\x5d\xbb\x58\x67\x67\xa7\x41\x44\x69\x00\x59\xc3\xa1\x42\xbb\x65\xf4\xb6\x57\x12\xfd\x6d\x55\xd6\x9d\xe4\xac\x00\x20\x07\x20\x9d\xcf\xe7\x8d\xc3\x87\x0f\xb3\xdf\xfe\xed\xdf\x46\x57\x57\x17\x00\x20\x97\xcb\xa9\xf3\x60\x81\x50\x3a\xbb\x66\xe9\x05\xa9\xd6\x28\x1c\x10\x1e\x08\x21\xd5\x89\x20\x19\x84\x1b\xa6\x73\xb5\x91\xd1\xce\xea\x79\x78\xdf\x15\x97\xbb\x62\xd5\x8b\xcd\xc6\x3b\xaa\x17\x2e\xf4\x2e\xbd\x1c\xe8\xa0\xc1\xe0\x05\xaa\x39\x05\xea\xba\x67\xbf\xd8\x09\x51\x79\x7d\xdd\xe2\x8f\x2a\x06\x9f\x82\x67\xb3\xc2\xb5\x83\x64\xf7\xea\x18\x61\x9c\xd5\xcd\x01\x7f\x9f\x39\x03\x60\xe4\xaa\xac\xab\xce\xd7\xec\x19\x0e\xd2\xa7\xae\x9e\x7b\x08\xfd\x7a\xf1\x0e\x09\xab\x94\x72\x66\xa1\xdc\xc9\x19\x71\x2c\x30\xaa\x3f\x51\xe9\x8d\xca\xc4\xe9\xbc\x2b\x8d\x97\x69\x78\xec\xb1\xc7\x7c\xdf\x3b\xb8\xc8\x77\xdf\xa8\x7d\x26\x61\xa3\x9f\x7c\x1b\x81\x14\x60\x7d\x73\xd2\xad\x41\x26\x7b\xec\x5e\x55\xa5\x48\x0e\xa6\x57\x4f\x20\x65\x54\xd1\xa0\x5c\x02\xe7\x56\x85\x74\x89\x1f\x2c\xdc\xae\x1d\x9d\x59\x9b\xfc\x3e\x88\xac\x54\x2a\xc5\x0f\x1e\x3c\x88\xd7\x5e\x7b\x4d\x95\x6e\x0c\x00\xdf\xba\x75\x2b\x1e\x78\xe0\x01\xf8\x3b\x46\x05\xd2\xf9\x6a\xa2\x6b\xdb\x64\xdb\x91\xf5\x73\xe9\x87\x3a\x96\x13\x5b\x98\xa0\xac\xcd\x44\xa9\x94\x72\xae\xdd\x2c\x54\x5e\x78\xa7\x6f\xe9\xc5\x85\xb4\x33\x0d\x42\x25\x97\xcb\x59\x8f\x3d\xf6\x18\xff\xca\x57\xbe\x82\x72\xb9\x8c\xa9\xa9\x29\xf4\xf6\xf6\x72\xb8\x9e\xc2\xe2\x4c\x5b\xed\xca\xa9\xc1\xc5\x9f\xbc\xef\x7a\xc7\x53\x09\xb9\x0b\x1a\x8a\x7a\x58\x17\x7c\x84\xb5\x7e\xb5\xbe\xf8\xfd\x4a\xb0\xa7\x4d\xbf\xab\xd5\x12\x42\x14\x41\x34\xf5\xca\xd0\xc2\x77\xf2\x15\xa3\x6f\xed\x7c\x6a\x47\x1d\x8e\x29\xae\x3a\x89\x9a\x9c\x04\x7f\x73\x70\xf1\x99\x2b\xdd\xe5\x93\x20\xf7\xea\x1a\x00\x36\xe7\x9c\x2b\x38\x57\x37\xff\x72\x2f\x13\x21\x40\x24\x02\x20\xd6\xac\x59\x43\x03\x03\x03\x04\x77\xdf\x4d\x47\xff\x42\xea\xc0\xd0\x4c\xe6\x28\x85\x65\xbb\x37\xc1\x61\xc4\x77\xe7\x33\xfc\x6d\x69\x00\xa8\x1a\x7c\xe1\xf4\x40\xe9\x7b\x56\x52\xdc\x22\xa2\x05\x00\xd6\xd8\xd8\x98\xb8\x75\xeb\x96\xef\x38\x50\xb2\x87\x4c\x77\xaf\x6f\x42\xed\xa3\x12\x17\x02\x4a\xab\x4b\xcd\x13\x57\xa7\xde\xb6\x1a\x04\x00\x71\xec\xd8\x31\xf2\xb6\x63\xb4\x67\x8a\x7c\x7b\xdf\xe5\xea\x5f\x24\x38\xda\x5c\xa4\x55\x01\x07\x14\x6c\x0f\x7e\x35\x71\x11\xa8\x28\xde\xb3\x27\x79\xd5\x7d\x3a\xae\x2d\x12\x96\xc0\x72\x5c\x09\x60\xc9\xaa\xc8\xcf\xad\x49\xbe\x28\x12\xb4\x28\x84\xa8\x65\xb3\x59\x7e\xfe\xfc\x79\x15\x1e\x31\x38\x38\xc8\x1e\x7e\xf8\x61\x24\x93\x49\x03\x40\x8a\x71\x74\xec\xbe\x9d\xfb\xd0\x87\x2f\x76\xfd\xcd\xc6\x99\xcc\x1f\xe5\xab\xc6\xde\xa4\x4d\x83\x49\xce\x56\xa7\x1c\xb6\x36\x5f\x4d\xec\x1e\x58\x48\x3d\xbe\x65\xaa\xed\x28\x11\x8a\x53\xed\xd6\xb8\x20\xf0\x64\x32\xc9\xf7\xef\xdf\x2f\x6c\xdb\xc6\xe2\xe2\x22\xd6\xac\x59\xc3\xc9\x05\x82\x04\x84\x31\xd9\x6e\xcd\x1a\x9c\xda\x7a\x4b\xc9\x75\x4c\xb8\x7b\x99\x24\xec\xc1\xb9\x99\x00\x69\xab\x09\x5e\x7e\x65\xe3\xc2\xb7\x2f\xac\x2e\xff\x1c\x84\x31\x00\xb3\x42\x88\x65\x00\xf6\xdf\xff\xfd\xdf\xf3\x3d\x7b\xf6\x80\x31\x26\x3c\x98\x85\x6d\x40\x8c\x74\x55\xc6\x32\x35\xd6\xd1\xb9\x6c\xf4\x25\x04\x98\xaf\x9d\xa8\x67\x71\x00\x94\x93\x4e\xf1\xd5\xf5\xc5\x1f\x9d\x5a\xbb\xf8\x5d\xce\x30\x02\x60\x12\xc0\x02\x11\x59\x97\x2e\x5d\x12\x57\xae\x5c\x91\x38\x22\xff\x7c\xdc\x4f\x28\x11\x50\x13\x77\xed\xda\x85\x42\xa1\x90\x00\x90\x82\x40\x61\xdd\x7c\xfa\xc1\x75\xf3\xe9\xc3\x21\x43\x4f\x55\x13\x94\xd5\x41\x39\x10\xd2\x68\x22\x0f\x61\xca\x26\x9f\x3e\x3d\xb0\xf8\x03\x9b\x89\x09\x22\x5a\x14\x42\xd8\x93\x93\x93\x42\xd9\xa3\xa3\x22\x6a\x14\x81\x48\xa4\x57\x01\xd1\xd3\x75\x04\x57\x89\x4d\x27\x20\x15\x66\xbd\x6d\xbf\xcc\x83\x0f\x3e\x48\x7d\x7d\x7d\xd2\x76\xe8\x5c\x75\xb3\xf6\xa9\xfc\xb4\xf3\x70\x48\x95\x95\xc2\x80\x02\x63\x51\xbe\xb8\x38\x2e\x7c\x84\xa7\x60\xe0\xe4\x50\x85\x04\x82\xe4\x2e\xd2\x1e\x93\x2e\x4b\x77\xce\xc9\xcf\x9b\xa8\x89\x42\xa9\x2b\x71\xd2\xca\xb2\xdb\x00\xaa\xa9\x54\xca\x9e\x9f\x9f\xa7\xb9\xb9\x39\x00\xa0\x4c\x26\x43\x0f\x3f\xfc\x30\xd2\xe9\x34\x03\x90\x61\x1c\x9d\xef\xbf\x56\xf8\xf7\x07\x6f\xb6\xff\x6f\xe9\x1a\xdb\xe8\x76\x84\xfc\x86\xfd\xba\x01\x32\x39\xeb\x1b\x9c\x4f\xfd\x46\x9b\x95\x70\x46\x0b\x95\x0b\x82\xa1\xe6\x6d\x90\x13\x3f\xf9\xc9\x4f\xf8\xce\x9d\x3b\xc9\xdb\xc5\x00\x22\xe2\x02\x42\xdc\x2a\x54\xa7\x16\xd3\xce\x52\xe7\x72\xb2\x37\x5d\x63\x59\x57\x3b\x52\x76\x37\x11\xc0\x09\x7c\xb2\xdd\xba\xf1\xc2\xf0\xfc\xb7\x2e\xf5\x96\x9f\x17\x10\x37\x00\x4c\x7a\xc7\x00\xac\x0b\x17\x2e\x88\xd1\xd1\x51\xe2\x9c\x63\x60\x60\x80\x93\x7b\x6b\xb8\x00\xe0\xd8\x4c\xd4\x6e\xac\xaa\x8c\xdc\xc9\xd5\xa6\x99\xa0\x84\x69\x53\x86\x88\x48\x90\x10\xb5\x04\xac\x62\xc6\x9e\xbd\xd8\x53\x7e\xeb\xc5\xe1\xf9\xef\x5c\xeb\x5e\xfe\xa5\x60\x18\x11\x42\x8c\x93\xfb\x09\xb6\x65\xc7\x71\x9c\xe7\x9f\x7f\x1e\x95\x4a\x05\x0a\x1e\xa9\x1a\x05\x45\xdd\xdc\xc7\x00\xf0\x55\xab\x56\x31\x00\xee\x96\x65\x10\x4b\xd9\x2c\x2f\xb1\x27\xd0\x04\xbc\x41\xf4\x26\xd8\xff\xde\x30\x05\x06\xa4\xba\xa9\x00\x39\x40\xc6\xbf\xab\x96\xcd\x9e\xcf\x18\x00\x00\x20\x00\x49\x44\x41\x54\xe0\x15\xef\x70\x88\xed\x0d\xa4\x14\xf1\x6a\xfb\x40\x7d\x9f\xa0\xc4\xeb\x4e\x00\xf5\xb9\x4e\x5d\x88\x48\xd7\xeb\xd2\x0d\xe8\x3a\x17\xa6\xf7\x0d\x33\xd7\x57\xce\x91\xcf\x4f\xdb\x47\x48\x80\x85\x06\x43\x35\xf3\xa4\xab\x54\x12\x8a\x8a\xff\x7e\xf6\x80\xdb\x4b\xd5\x33\x60\x36\x11\xaa\x46\x94\x3a\xca\x91\x6f\x9f\x71\x1e\x58\x5c\x95\x78\x93\x88\x8a\x42\x08\x76\xed\xda\x35\xdf\x05\x7a\xe0\xc0\x01\x26\xbf\x0d\x0d\x81\xdc\xce\xdb\xb9\x0f\xef\x19\xcf\x7d\x21\x21\x28\x17\x3a\xd6\xeb\xf5\xc7\xfd\x09\x62\x99\xa0\xfc\x7d\x13\x6d\xff\xf3\x62\xca\x99\x79\x7d\x5d\xf1\x9b\x82\xc0\x4d\xd3\xac\x7c\xfc\xe3\x1f\xc7\x97\xbf\xfc\x65\x7e\xe2\xc4\x89\xe0\xa2\x31\x80\x71\x06\xf6\xee\xea\x72\xe5\x46\x57\xe5\xe2\xd0\x4c\x66\xcf\xda\xf9\xd4\x70\x67\x39\xd9\x9d\x74\xc8\xac\x1a\xbc\x32\xd5\x6e\x8d\xdf\xe8\xac\x5c\x1a\x2b\x54\xcf\x5b\x09\x31\x0a\xc2\x18\x81\x26\xe0\x5e\x6d\x69\xd5\x6a\x35\x7e\xe6\xcc\x19\x00\xe0\x67\xce\x9c\xc1\xd0\xd0\x10\xeb\xed\xed\xb5\xe1\xaa\x53\x00\x81\x3b\x84\xf2\xd5\x55\xcb\xf3\xd7\xbb\x2a\x6f\x65\x6b\x89\xd5\x59\x8b\x15\x0c\x4e\x86\x65\x88\x72\xc9\xb4\x67\xaa\x86\x98\x86\x7b\x83\xcb\x14\xdc\x4b\xef\xe4\x4d\x7f\xf6\xb9\x73\xe7\x30\x37\x37\x17\xa5\x86\xfb\x71\xea\x11\xd2\x48\x04\x21\x22\x06\x01\x23\x53\x63\x79\x75\x56\x54\x11\xa5\x72\x00\x95\xa7\xab\x2e\x48\x00\xb0\x12\xa2\xe4\x50\x60\x38\x21\x1e\xf1\xd5\xb8\x46\xae\x52\x1d\x28\x3d\xaf\x5e\x97\x1a\xaf\xc2\x1c\x1a\x14\xbd\xed\x54\x2a\xe5\x2f\x44\x19\x96\xe8\x4e\x95\xf8\x36\x3f\x67\x48\x0d\xf2\x9f\xea\xa4\x68\xa0\x36\x41\xc9\x1f\xc4\x91\x22\xfe\x55\xfd\x2b\xac\x76\xfa\xc6\x08\xa4\x9c\x69\x9b\x73\xf6\x33\x81\x9c\x20\x98\x44\x54\xf9\xcd\xdf\xfc\x4d\x26\x6f\x3b\xdc\xb2\x65\x8b\x84\x25\x5b\x58\x36\x36\x3c\x38\x9a\xff\x73\xf7\x50\x0d\xea\xfa\xa2\xb6\xe0\x7a\xc0\xa4\xef\x90\xd2\xfb\xc6\x72\x7f\x7a\xa3\xb3\x72\x6e\xa2\xbd\xfa\x36\x11\xd9\x7d\x7d\x7d\x16\x00\xbc\xf5\xd6\x5b\xd8\xb7\x6f\x9f\xa5\x7a\x86\x04\x44\xa9\x6c\xf2\xd9\xf3\x7d\x4b\x23\xe7\xfb\x96\xf2\x4c\x20\x4d\x80\x21\x00\xdb\x73\xb7\xcf\x7b\x3a\xfd\xb4\xf7\x57\x04\x50\x26\x22\xfb\xe4\xc9\x93\xa1\xe3\xa4\xdf\xfd\xee\x77\xf9\x67\x3f\xfb\x59\xe4\x72\x39\x0b\xde\x2d\xf0\xe4\x5e\x83\x39\x2f\x08\xf9\xa5\x94\x93\x5b\x4a\x39\x69\x79\x87\x13\x3c\x9b\x06\xee\x19\xfd\x22\x80\x92\xb7\x5f\xce\x7a\xf3\xcd\x37\x71\xea\xd4\x29\x1d\xc7\xeb\x70\x29\xee\x6e\x57\x1f\x51\x84\x10\x60\x20\x66\x70\x32\x09\xc1\x9c\x91\x3e\xaa\xf2\x51\xaa\xcd\x08\x1c\x0e\xd2\xe6\xb4\x12\xbc\x2c\x20\x6c\x02\x71\xc5\x78\x8a\x0a\x71\x1c\x3b\x0a\x69\xe3\x42\x14\x27\x68\x44\x50\xb1\x75\x78\xdf\x58\x66\x00\xcc\xd4\x12\xef\x4f\x38\xe8\xf2\xa5\x83\x0f\xb7\x62\x44\x28\xa2\x40\xdd\xc8\xe6\x1b\xc7\x3e\xf2\x03\x21\x31\xa2\xd2\x04\x00\x80\x82\xf5\x0b\x45\x55\x52\x33\x9a\xcb\x7c\x03\xab\x89\xbc\x6d\xba\xfb\x74\xe4\x85\x10\xfb\xf7\xef\x67\xde\xb6\x0e\x13\x40\xee\xbe\x89\xb6\xc7\xb2\x16\x1b\x56\x57\x8b\x65\x77\xa3\x08\xc3\xcf\x23\x80\xb4\xcd\xd6\xed\x9c\x68\xfb\xc4\x64\xbb\x75\x0d\xde\x96\x9b\x47\x1f\x7d\x14\x3f\xfe\xf1\x8f\x39\x63\x8c\xed\xde\xbd\xdb\xbf\x9a\xd2\xdb\xa0\x57\x04\x21\x07\x20\xcb\xc9\xf5\x82\x79\xc8\xac\x5e\x4d\x59\xf2\x3e\x9e\x59\x11\x42\xd8\x67\xcf\x9e\xc5\xc5\x8b\x17\xeb\x98\xe2\x57\xbf\xfa\x55\xfe\xe4\x93\x4f\xa2\xa3\xa3\xc3\x52\x3d\x4f\x00\xd2\x42\x88\x34\x11\xf9\x37\xfd\x79\xb7\xfb\x55\x00\x54\x88\xc8\x12\x42\x58\x42\x08\xfb\xcc\x99\x33\x92\x18\xe2\xe6\xdb\xc7\x8b\xa8\xed\xdf\x3a\x67\x65\x00\x18\x13\xa4\xe4\x0d\xb0\x3f\xb8\x6f\x43\x8e\x21\xf9\x7b\x4b\x7c\xc3\x11\xee\x6a\xac\xc3\x84\xa5\x48\x87\xa8\xd0\x4c\x6d\x6a\x65\x25\x36\x2a\x7f\x9c\x84\x68\x54\x56\x2f\xe7\x9e\x15\xae\xf0\x7e\x08\x18\xc1\xa5\xcd\x81\xd7\x28\x40\xd8\xc0\x0d\x18\xe0\xbb\xf0\xf5\xf4\x20\xa8\x5e\x7b\x59\x1f\x42\x54\xa1\x7a\xa1\xc2\x3b\x64\xdd\xf4\x84\x2d\x0a\x86\x25\x0a\x4e\x8a\xa9\xfb\x80\xb0\x63\xc7\x0e\xe9\x21\x34\x0d\x87\x0a\xeb\xe7\xd2\xc7\x08\xc4\x74\x55\xd6\x17\xec\x8a\x11\xe3\xc2\xe4\x7b\xf5\x41\x20\xac\x9d\x4b\x1d\x4b\x39\xf4\xa5\xaa\xe1\x7e\x1f\xbc\xbd\xbd\x9d\x03\xf0\x0f\xf0\xef\xd9\xb3\x47\x5e\x49\x69\x79\xbf\xa6\xf7\x67\xc0\x5d\xcb\x92\xc8\x2c\xaf\xa7\xb4\x00\xd8\xd5\x6a\x95\x9f\x3b\x77\x4e\xe7\xde\xa1\xf0\xcf\xff\xfc\xcf\x38\x74\xe8\x10\xdf\xbe\x7d\xbb\x65\x18\x86\x2c\x5f\xd6\xb6\x7a\x48\xbc\xf2\x17\xf8\xaa\xd5\x2a\xff\xf2\x97\xbf\x1c\x87\x6b\x91\x0c\x53\xbf\xdb\x55\x57\x63\x64\x60\x4c\x48\xe2\x11\xa1\x5b\xbe\x25\x01\x48\x9d\x58\x8a\x7c\x49\x04\x90\x79\x5c\x83\xca\x5f\x7b\x90\x88\xd4\xd1\xd1\xc1\x16\x16\x16\x64\x7b\x3a\x32\xc6\x01\xd2\x6c\x21\x4f\x57\x03\xd5\x38\xbd\x6c\x23\x09\x84\xe3\xc7\x8f\xab\xf9\xcd\x84\x85\x55\xf0\x20\x0c\xc1\xec\xdb\x03\xe4\x19\xd0\x92\x48\x28\xf8\xf5\xc6\x2f\x6c\x6f\x90\xa4\x1d\x05\x49\xbd\xf1\xf5\x9d\x33\xaa\x71\x1e\x1e\x0c\xe2\x48\x1b\x36\xf2\x95\xe0\x4e\x54\xf6\x7b\xbf\xf7\x7b\xea\xb6\xfd\x74\x9b\xc5\x7a\x73\xd5\xc4\x86\x80\x20\x83\x8d\x99\xbe\x2c\x53\x54\x3c\xe1\x35\x2e\xa4\x61\x0f\xa0\xcd\x4a\xac\xcb\x55\x8c\xde\x6a\xae\x36\x0e\xc0\xe8\xe8\xe8\x90\xb6\x0a\x7b\xf5\xd5\x57\xf9\xc8\xc8\x08\x7b\xe8\xa1\x87\x78\x2e\x97\xb3\xa4\x34\x90\x27\x00\xb5\x39\xe2\x00\xb8\xe3\x38\xfc\xd6\xad\x5b\xf8\xc9\x4f\x7e\x12\xc7\xbc\xfc\x77\x21\x04\x3f\x79\xf2\x24\x3b\x7b\xf6\x2c\xf6\xed\xdb\xc7\x07\x07\x07\x79\x7b\x7b\xbb\x8d\x08\x1c\x11\x42\xf0\x62\xb1\x88\x91\x91\x11\x68\x57\xe5\xeb\x75\x47\xaa\x4f\xfa\x25\x03\x21\xa4\x50\x8d\x3e\x92\x12\x42\xee\x1f\xf1\x1d\x99\x8a\x7f\x5c\x4a\x04\xa9\x13\xfb\x15\x79\xe6\xbc\xbb\xe7\xc5\x57\x97\x88\x08\x0b\x0b\x0b\xb1\xfa\x9c\x0e\xac\xd6\x57\x3d\xae\x91\x1d\x12\x57\x4f\x54\x5c\x14\x61\xc8\xd5\x5c\xc6\x1c\x91\x0e\x2e\x6f\x16\x21\x75\xc8\x07\x16\xd2\x26\x08\x50\x8f\xa4\xee\xef\x4b\x16\x04\x1e\x3a\x85\xfb\xeb\xaa\x68\x14\x11\x84\xd4\x1c\x01\x46\x8e\xc8\x2a\xdc\x12\xff\xf0\x0f\xff\xc0\x4f\x9c\x38\x21\xdf\x0d\xc3\x61\xf9\x04\xa7\xac\x4f\x88\x42\xeb\xae\x32\x5f\x01\x7d\x87\x9d\x02\x4c\x50\x3a\x65\x93\xff\xb1\x74\x0a\x2e\x24\x06\x00\x4c\x4e\x4e\xf2\xaf\x7e\xf5\xab\x18\x18\x18\x60\x9b\x36\x6d\xe2\x9b\x37\x6f\xe6\x89\x44\xa2\xce\xfd\xce\x39\xc7\xa5\x4b\x97\xa0\xdc\xcc\x18\x35\x07\xf2\x39\xd4\x46\xa9\x54\xe2\x2f\xbd\xf4\x12\x03\xc0\x57\xaf\x5e\xcd\x06\x06\x06\xf8\x9b\x6f\xbe\xc9\x8f\x1e\x3d\xca\x64\x7d\xab\x57\xaf\x66\x93\x93\x93\x71\x04\xd0\xc8\xc9\x02\x20\xbc\x30\xa7\x06\x9d\xf2\x98\x1c\x3c\x7f\x1c\xe5\xfc\x12\x85\x17\x60\x22\x06\x5b\xf7\x68\x44\xd8\x0e\x7a\x07\xa3\x10\xbb\x59\x68\x44\x18\x2b\x09\x91\x52\xca\xeb\x33\x13\x0c\xdc\xc5\xf5\x00\x61\x42\x6a\x8f\xbf\xf6\x20\x35\x25\xe5\x5d\x4a\x09\x05\xd1\x82\xb5\x87\x90\x7e\xe5\x96\x51\x9d\xce\x8a\x1a\xa6\x96\x07\x01\x82\xd5\x79\xca\xa0\x70\x67\x26\x48\x18\x82\xc0\xfd\x79\xd0\x6d\x95\x90\x1d\x21\x99\x5b\x50\x97\x2b\xa4\x04\xb7\xdd\x0d\x78\xb1\xfb\xdf\x00\xe0\xd6\xad\x5b\xfc\xd6\xad\x5b\x78\xf1\xc5\x17\x01\x00\x5b\xb7\x6e\x65\x8a\x6d\xd0\xcc\x13\x08\x2d\x3e\x4e\x55\x66\x93\x93\x93\x7c\x72\x72\x12\x00\x42\xc4\xa5\x10\x43\x54\x1f\x9b\x32\x48\x1d\xd1\x42\x9d\x53\x10\x97\x73\x12\xb6\x6f\x34\x87\xed\x40\x08\x04\x6e\x56\xff\x2c\x4c\xa0\x13\xf8\x63\xcd\x44\x70\xb3\xb3\xfa\x1b\xd1\xe9\x56\x43\x23\x3b\x22\xca\xa5\x1a\xd7\x4e\x54\x3d\xfe\xe0\x09\x21\xfc\xbe\x3a\x49\xaa\xa8\xea\xa0\xeb\x09\x82\x3b\x1e\x42\x40\x1e\x6a\x90\x76\x94\x97\x10\x5a\x9d\x0e\x90\x5a\xf8\x12\xc2\x77\xef\xc8\x05\x2c\x69\x74\xfb\x2e\x59\xf8\x71\x42\x3d\x70\x43\xb0\xb9\x41\xfe\x37\x9b\x65\x50\x99\xce\x72\x92\x97\x97\x0d\xa7\x18\xb6\x5e\x82\x7a\x7c\x48\xfc\x2d\xd4\xb2\x3d\xf8\x34\x58\x35\xc4\x7c\x29\xe5\x94\xd5\x31\x89\x18\xc7\x3a\xfb\xf3\xe2\xc5\x8b\xea\xbb\x3e\x1f\x51\xf3\xd3\x4c\x5b\x88\xc3\x0f\x5d\x15\x8e\x66\xea\xf1\x36\x24\x80\xc0\xed\x1a\x1b\xe4\x07\x50\x38\xb9\xdf\x03\x0e\x1b\x76\xde\xe0\xf9\x8b\x70\xca\xe6\x5f\x3f\x3d\x58\xa0\x93\x86\x79\x8c\x77\x49\xe7\x0a\x7a\x9c\xaf\x12\xc4\x00\xa3\xdb\x0c\x51\x06\x76\x2b\xc6\x7c\x9d\x01\xae\x32\x86\x5a\x9a\xcd\x00\x14\xb4\xe3\x8d\x87\x94\x98\xea\x62\x9b\x1b\x94\x77\x85\x49\x04\x46\x01\x42\x8a\xbc\x7b\x3f\xae\xda\xb5\xb0\x48\x90\xf3\x21\x09\x8e\x1b\x54\xae\x99\x54\x42\xfd\xd8\xf9\x46\xe6\x72\x92\x97\x6e\x77\x58\x17\x0a\x15\x63\x83\x47\x87\x81\x44\x13\x41\xbd\xc1\xa4\x51\xc0\xf8\xbc\x3c\xb7\xdb\xab\x97\xca\x49\x5e\xf2\xd4\x5d\x0e\x80\x77\x76\x76\x32\xcf\xaf\x5f\x37\xb6\x5d\x5d\x5d\xc8\xe7\xdd\x23\xe4\xde\x56\x09\xde\xdf\xdf\xcf\xc6\xc7\xc7\xf5\x71\x57\xc7\xbc\x11\x2e\x86\x60\xdb\xb7\x6f\x9f\x7a\x58\xc9\xaf\xef\xd6\xad\x5b\xf0\x2e\x4f\x8e\xc3\x91\x28\x02\xf6\x61\x30\x50\x8f\x38\xa1\xcc\x92\x00\x38\x09\x3b\x0a\x91\xeb\x74\x4f\x28\xf3\xab\x24\x10\x08\x86\x43\xd2\x13\x12\x05\x78\x14\x42\x46\xd9\x0a\x71\xe5\xa2\xde\x1b\x95\x6f\x25\x9f\x3f\x36\xde\x36\x75\xbb\x9a\xa5\x29\x9e\x40\x25\xe1\x20\xab\x22\x76\x24\x89\xfb\x3a\xa6\x54\x9b\x14\x3d\x47\x0f\x51\x6b\x3a\x50\xd5\x4d\x52\xe9\xc2\x1f\xf7\x5a\x8a\xa6\x9c\xa4\x7f\x16\x59\x0f\x1c\x80\x25\x20\xca\xe7\xfb\x96\x7e\x39\x3c\x9d\x39\x6a\x3a\x2c\x4b\x9e\x24\xf7\x17\x4d\xa5\x4b\x58\x04\x76\x63\x60\x4b\x08\xd8\x09\x51\x79\xa7\xaf\xfc\x32\x08\x65\x08\xf7\x0e\x2d\x05\x17\x42\xf3\x75\xf0\xe0\x41\xb6\x7d\xfb\x76\x18\x86\x81\x44\x22\x01\x04\xf6\x17\x38\xe7\xbc\x56\xab\x61\x7c\x7c\x1c\x3f\xff\xf9\xcf\x61\x18\x06\xbc\xcb\xe9\x18\x1a\x33\x25\x6e\x18\x06\x1b\x1a\x1a\xc2\xde\xbd\x7b\x51\x28\x14\x02\x75\x30\x6c\xa3\xf0\xf5\xeb\xd7\xe3\xe0\xc1\x83\xb8\x76\xed\x1a\x4e\x9d\x3a\x85\xc5\xc5\x45\x1d\x97\x74\x9b\x22\xd4\x76\xd4\x47\x17\xeb\xf5\x51\x80\xdb\x09\x61\x05\x1e\x3f\xa1\xcc\x94\xe7\x1f\x21\xc5\x08\x57\x83\xf2\x6e\x3a\x94\x83\xbf\xc2\x1b\xe2\xbc\x51\x56\xbf\x0a\x04\x22\xe2\xe2\xde\x1b\xc5\xc5\xb5\x83\x88\x77\x00\xe0\xf3\xf3\xf3\xb2\xaf\x1c\x80\x5d\x4b\xb3\xd9\x5a\x86\x4d\x24\x16\xf9\x46\x1d\x49\x43\xcf\x00\x94\x7d\x1c\x52\x11\x57\x8d\xe1\xc0\xf6\x50\xa5\x86\x46\x2c\xfa\x66\x3f\x52\x2a\x10\x20\x2c\xe7\x13\xd7\x04\x0b\x1d\xce\xe7\x00\x50\x2a\x95\x90\xcb\xe5\x38\xdc\x83\x58\xa5\xdb\xf9\xea\x3b\x97\x7a\xca\xbf\xba\x6f\xa2\xed\x38\x79\x5e\x31\xdf\x0e\xf2\x43\x98\x18\xbc\x0e\xe0\xda\xaa\xca\x9b\xa3\x9d\x95\xb3\x70\xef\xe0\xb5\x00\xf0\xb9\xb9\x39\x14\x8b\x45\x7f\xac\x0f\x1d\x3a\xc4\x36\x6f\xde\x8c\x4c\x26\x23\x11\xcc\xfd\x13\x60\xfe\xe6\x0d\x22\x9e\x4a\xa5\xec\xa1\xa1\x21\x7e\xe2\xc4\x09\xcc\xcd\xcd\xe1\xd9\x67\x9f\x65\xb3\xb3\xb3\x0d\x99\xd5\xaa\x55\xab\xd8\x43\x0f\x3d\xa4\x7e\xce\xcd\x80\xeb\xf5\x34\x0c\x4e\x06\x13\x04\x87\x09\xce\x09\x36\x08\xb6\x61\x18\xf6\x96\x2d\x5b\xec\x0d\x1b\x36\xf0\x8b\x17\x2f\xb2\x93\x27\x4f\xca\xba\xa2\xf0\x2a\xf4\x1e\xbb\x75\x03\x61\x2a\xe2\xcb\x49\x5e\x92\xba\x81\xd0\xb0\xc0\x5f\x8b\xd0\x3c\x2d\xfe\x74\x0a\x40\x90\x80\xe9\xb0\xac\xc1\xc9\xb0\x13\xa2\xa1\xed\x12\xd1\x27\x35\x5f\x9c\xc1\x15\xd7\xf7\xa6\xae\xb6\x06\x03\xc5\xde\x7c\xf3\x4d\xee\x9d\x4a\xb3\x01\x58\x3c\x81\x52\xa9\x2b\xf1\x4e\xaa\xc4\x37\xd6\x5d\x58\xa8\x22\xab\x77\x0e\xc2\xf7\x40\xf9\x36\x01\xf9\x59\x49\x25\x18\x9d\xb8\xfc\x21\xd4\xea\xf0\x2c\x62\xe1\xae\x8e\xda\x8b\xdd\x89\x73\x08\xf6\xfa\xf3\x6a\xb5\x8a\x6c\x36\xcb\xbe\xfa\xd5\xaf\xf2\x13\x27\x4e\x70\xb8\x3e\xfb\x79\xce\x30\xf5\xd2\xc6\x85\x7f\xf1\x77\x8c\x86\x16\x12\x3d\x4b\x8f\x82\xb5\x09\x69\x49\x4c\xb4\x5b\x57\x5e\xd8\x34\xf7\x0d\x3b\x21\xc6\xe1\x2e\xa8\x59\x00\xf8\xe8\xe8\xa8\x7f\xec\xf7\x53\x9f\xfa\x14\xeb\xe9\xe9\x91\x44\x60\x92\x40\xba\x63\xd9\xc8\x77\x2f\x25\x07\xdb\xab\x89\xbe\x04\x27\x73\xc9\x74\xa6\xe7\xb2\xf6\xf8\x4c\x5b\x6d\xaa\xe6\xdd\xbb\xda\xd9\xd9\x69\x7f\xfa\xd3\x9f\xe6\xa7\x4e\x9d\x62\xa7\x4e\x9d\x52\xe7\x58\xce\x09\xef\xe9\xe9\x61\x8f\x3e\xfa\xa8\xdc\x8f\x65\x02\x48\x77\x54\x8c\xae\xa1\xd9\xcc\xde\x0d\xb3\xe9\x0f\xe6\x2b\xc6\x86\xa4\x43\xb9\xe5\x24\x9f\x9a\xc8\x57\x5f\xbf\xba\x6a\xf9\xe5\x5b\x85\xea\x88\xc3\x50\x36\x4d\xb3\xb2\x6b\xd7\x2e\xde\xd5\xd5\xc5\x7f\xf8\xc3\x1f\xea\x75\x47\xb5\x57\x27\x21\xe2\x02\xaf\x18\xbc\x04\x28\x4c\x4f\xd9\xf7\x2e\x45\xaf\x34\xac\xfd\xaf\xd1\x43\xdd\xcb\x44\x30\x1d\xca\x26\x1d\x32\x6b\x8c\xfb\xfe\x69\x65\x1d\xa2\x6e\x30\x1a\xf4\x47\xb7\x1b\xf4\xb4\x28\xc2\xa9\x83\xa9\x41\x9d\xa1\x60\x59\x16\x92\xc9\x24\x77\x57\x41\xa9\x34\xbf\xda\x78\xbd\x6b\xac\xf6\x61\x38\xc2\x84\xbf\xce\x00\x10\x79\x88\x2a\xdd\xad\x42\xee\xf4\x0c\x0e\xac\x00\x81\x2a\x22\x5d\xb3\x02\x22\xc4\x91\xe5\x86\xbe\x60\x17\xb1\x2f\x52\xfd\x4c\x24\x04\xaa\x59\x36\xb1\xd4\x99\xb8\x88\x60\x41\x8c\xcf\xce\xce\xa2\x5c\x2e\x73\x00\x28\x97\xcb\x3c\x9b\xcd\xca\x05\xb3\xe9\x8a\xe1\x8c\xfc\x74\xdb\xcc\x3f\xbe\xff\x5a\xe1\x33\x9b\xa7\xb3\xfb\x13\x1c\x86\xec\x7f\xb0\xe6\xe1\x36\x6a\x13\xec\x91\x55\xcb\xe7\x5e\xd8\x34\xff\x8d\xb2\xc9\xaf\xc0\xdd\x66\x51\x12\x42\x58\xb6\x6d\x73\x6f\x41\x0e\x9f\xfc\xe4\x27\x25\x31\x98\x10\x48\x77\x2f\x25\x07\xf7\x8f\xb5\xff\xd6\xfa\xd9\xf4\x27\xd3\x36\xdb\xc0\x84\xb7\x52\x0d\x58\xb5\x84\x98\x9e\x6d\xab\xbd\x72\xba\xbf\xf4\x95\xab\xdd\xcb\xa7\x6b\x8c\x97\x88\xa8\xb2\x7f\xff\x7e\x5b\x08\x81\x37\xdf\x7c\xb3\x6e\x7e\x14\x62\x48\x27\x38\xf2\xdb\x27\xda\x8e\x1c\xb8\x99\xff\xd3\x7c\x25\xb1\x9f\x80\xb4\x6b\x4f\x01\xf9\x2a\xd0\x5b\x4a\x7e\x7a\xc7\x44\xdb\xd4\x68\x67\xe5\x9b\x27\x37\x14\xbf\x38\x9d\xab\x8d\x02\x28\x0f\x0c\x0c\xd8\x4f\x3e\xf9\x24\xbe\xf1\x8d\x6f\x44\xa9\xe2\xa1\xf6\xe4\x6e\xd7\x00\x9f\xbd\xdf\x5d\xbb\x76\x91\x69\x9a\x8c\x88\x4c\x10\xf2\x5d\xe5\xe4\x96\xa1\x99\xcc\x61\x26\x37\x0f\xe8\x9a\x91\x27\x66\x03\x37\x23\x05\x1c\xd0\x33\xbc\x39\x09\xe7\xdd\xbe\xf2\x4f\xaa\x49\x31\x01\x60\x59\x08\xe1\xbc\xf2\xca\x2b\x8e\xd7\x87\x28\x62\x10\x5a\x9c\xfc\xad\x33\x55\x50\x8f\xd0\xc2\x8b\x93\x7a\x48\x9c\xad\x24\xf3\x52\x44\x1a\x01\x10\x83\x83\x83\x94\xcf\xe7\x09\x40\x02\x84\x94\x6d\x52\x22\x37\x63\xef\x4a\x55\x44\x8f\x1c\x0c\x52\xce\x40\xa8\xdb\x23\x48\xea\xfb\xe4\x22\x79\x18\xb7\x5d\x10\xe4\x62\x99\x77\x1a\x5f\x59\xd7\x91\x79\x94\x1e\xfa\x3d\x23\xcc\xac\x35\x9f\x59\x58\x6d\xbc\x0c\xa2\x09\x00\x8b\x00\xac\xaf\x7d\xed\x6b\x8e\xcc\xe2\x38\x0e\xad\x5b\xb7\xce\x97\xf2\x44\xe4\xd4\x0c\x61\x8d\x74\x2d\xdf\x98\x69\xab\xcd\x65\x6a\x89\x4c\xca\xa1\x4c\x82\x53\x02\xee\x01\x47\x6e\x25\x45\x75\xb2\xbd\x36\xfa\xca\xd0\xfc\x8f\x5f\x5f\xb7\xf8\xc3\x8a\xc9\x2f\x82\x70\x13\x2e\x41\x2c\x11\x91\x7d\xfa\xf4\x69\x71\xfb\xf6\x6d\xf1\x89\x4f\x7c\x82\xad\x5e\xbd\x5a\x72\xee\xdc\xb6\xa9\xec\xfb\x1f\xbe\xd8\xf5\x37\x03\xc5\xd4\x53\x26\x67\xab\x19\x28\x45\xa0\x04\x04\x31\x46\x94\x34\x38\x75\xe4\x2c\x63\xe7\xd0\x4c\xe6\xb1\xce\x65\x23\x75\xab\x60\x5d\xb0\x13\xee\x35\x96\xfd\xfd\xfd\x7c\x61\x61\x01\xb3\xb3\xb3\xfe\x9c\xfe\xce\xef\xfc\x0e\xf3\x54\xb0\x74\x82\xa3\xeb\xd0\x48\xc7\x53\x87\x47\x3a\xfe\x2a\x53\x4b\x6c\x61\x44\x46\xa0\x8a\xc9\xe1\x26\x4a\x08\xca\x75\x2e\x1b\x07\x87\x66\x33\x07\x26\x73\xd6\xe9\xc5\xb4\xb3\x08\xc0\x49\xa7\xd3\x76\x36\x9b\xa5\xd1\xd1\xd1\x28\xbc\x91\xb8\x22\x12\xea\x8b\xfa\xbb\x79\xf3\x66\x78\xb7\xb3\x25\x85\x10\xb9\x7c\xc5\x18\xda\x3c\x9d\xfd\x20\x03\x31\xdd\xf0\x0a\xa1\x0f\xa0\x1c\x87\x94\x54\x22\xcf\x56\x13\x5d\xe9\x29\x3f\x53\x4a\x39\x63\xc2\xfd\x40\x8a\xcd\x18\x83\xe7\x79\x50\x09\x53\xed\x4f\x14\x32\xab\x04\x22\xc2\xad\x87\xca\xcb\xb2\x3a\x51\xa8\x84\x26\x50\x5f\xb7\x8c\x03\x00\x91\x4c\x26\x69\xdd\xba\x75\x10\x42\x10\x11\x19\x9c\x90\x16\xc6\xff\xd7\xdd\xbb\x06\xd9\x71\xdd\x77\x62\xbf\xff\xe9\xbe\xcf\xb9\x73\xe7\x89\x99\xc1\x00\x98\x19\xbc\x08\x3e\x20\x90\x20\x48\x9a\x14\x29\x93\xa2\x2c\x52\xb2\x2d\x59\x96\x14\x3b\xce\x87\x38\x4e\x45\xae\x24\x9b\x7c\x70\xaa\x92\xad\x64\x3f\x6c\x55\xb6\x52\xa9\xdd\x24\x55\xa9\xad\xda\xa4\xe2\x8a\x2c\x31\x8e\x37\x72\xed\xca\x2b\x4b\x36\x6d\x8b\x22\x25\xe8\x45\x8b\x14\x49\x90\x04\x21\x02\x18\x60\x06\x83\x01\x30\xef\xc7\x9d\x3b\xf7\xd1\xb7\xfb\xfc\xf3\xa1\xfb\x74\x9f\x7b\xe6\xf4\xbd\x77\x40\x38\x65\xa7\xab\x66\x6e\xf7\x79\xff\xcf\xf9\xbf\xcf\x8b\x32\xe5\xd5\xe0\x2c\x31\x39\x6d\xf6\x41\x3c\xf3\xac\xf4\xfd\x84\x38\x74\x77\xab\x52\x4f\x12\xaf\x5d\x6c\xc5\x46\x73\x3b\x5a\x9e\x18\xba\xc4\x76\x6b\xe5\x68\x63\xf1\xa1\xfc\xd7\x82\xac\xb8\x86\x70\x65\xe7\x2e\x33\xfb\x6f\xbf\xfd\x76\x3c\xd8\xab\xab\xab\x3c\x3e\x3e\x4e\xe5\x72\x99\x99\x39\x20\xa2\x16\x33\x7b\x2c\xa8\xb6\x51\xf4\x57\x2e\x8f\xd5\x3e\xb8\x32\x56\xbb\x74\x7d\xb4\x71\xf9\xfa\x68\xe3\xd2\xc5\xc9\xdd\x37\xdf\x3e\xbc\xf3\x83\x0b\x87\x76\x5e\x5d\xeb\xf3\xdf\x0d\x88\xaf\x13\xd1\x2d\x66\x5e\x25\xa2\x2a\x33\x37\x2b\x95\x8a\x7c\xe5\x95\x57\xe4\xf3\xcf\x3f\x2f\xa6\xa6\xa6\x94\x64\x28\x9f\x58\x2b\xfc\xd2\xaf\x5c\x19\xfe\xdf\x0a\xbe\xb8\x0f\xba\x17\x4b\xd7\x04\x23\x49\x44\x4c\xf9\x91\x5a\xe6\x89\xb1\x6a\x76\xf4\xfa\x48\xfd\xad\xc0\x81\x07\x20\x98\x98\x98\x90\x73\x73\x73\xe4\x79\x1e\x7f\xfa\xd3\x9f\x16\xa3\xa3\xa3\x82\x88\xf2\x60\x94\x1f\xb9\x5d\xfa\xf5\x27\x6e\x0c\xfc\x0f\x2e\xd3\x40\x58\x1e\x47\x6a\x27\x62\x24\x8c\x25\x70\xa8\x8d\x4c\x4e\x6d\xe5\x1f\x5e\x1c\x68\xbe\x59\xcb\xc9\x6d\x66\x0e\x46\x46\x46\x82\xe5\xe5\x65\xec\xec\xec\x98\x8c\x56\xe1\x0d\x1c\xad\xbb\x75\x29\x41\xc5\x62\x11\x93\x93\x93\x40\x78\x10\x6f\x5f\x2e\x10\xe3\x0f\x2c\x17\x3f\x2d\x24\xb9\xca\x28\x6b\x5b\xab\x64\x79\x57\xde\x10\x6d\x70\xc5\xcd\xa1\xc6\x4f\xd7\x8a\xad\x59\x22\xaa\x02\x68\x45\xfb\x21\x00\xbb\x84\x20\xe3\xbd\x4d\x8a\x59\x50\xc6\x94\x2c\x3a\x5c\xed\x86\x8f\x01\xaf\x11\xa6\x4b\x22\xb1\xba\xba\x2a\xcf\x9e\x3d\x0b\x21\x04\x01\x10\x44\x94\xf1\x0a\x22\x28\xec\x04\x33\xb9\x1a\x4f\xc6\x3c\x21\x42\x6a\xb6\xf6\x8d\x66\xc4\x2a\xce\x1f\x0f\x68\xf8\xad\x6d\xfe\x81\x76\x14\x47\x9c\x28\x56\xa5\x08\x72\xf9\x68\xf6\x2f\x2a\x63\xee\x8f\x41\x74\x87\x99\x37\x01\x78\x9b\x9b\x9b\xf2\xd2\xa5\x4b\xa4\xc1\xc0\x8b\x8b\x8b\x74\xe4\xc8\x11\x2e\x16\x8b\x12\x40\x10\x19\xc5\x0d\x10\xaa\x4c\xa8\x34\x5c\xb9\xb2\x53\x08\x16\x37\x8b\xfe\xb5\xed\x9c\x7f\xbd\x99\xe5\x79\x26\x2c\x82\x70\x8b\xc2\xb2\xd7\xa3\xb1\x6a\xee\xec\xec\xc8\x97\x5f\x7e\x19\x85\x42\x81\x9e\x79\xe6\x19\x10\x91\x03\xa0\x58\x6e\x38\xd3\x2f\x5e\x1e\xfe\x17\x7d\x9e\x7b\x0a\x51\x1b\xd5\xd3\xb6\x8b\x52\xe7\x0f\x44\xa2\xdc\x70\x1e\x04\x68\x6d\x71\xb0\xf9\x21\x83\x3d\xd7\x75\x83\x72\xb9\xcc\xd5\x6a\x95\x1e\x7f\xfc\x71\x08\x21\x1c\x00\x7d\x03\x0d\xe7\xe8\x0b\x97\x47\xfe\x97\x6c\x20\xc6\x11\x17\xa1\xfa\x92\xd4\xfe\x29\x20\x66\x42\x61\x1b\xb2\x01\x1d\xec\x6f\xba\xf9\x6b\xa3\xf5\x37\x58\xa0\x4e\x44\x72\x6c\x6c\x4c\x5e\xbe\x7c\x99\xa4\x94\xa6\x46\x20\x00\xb0\xae\x66\xd8\x0c\x0d\x44\xee\x46\x59\xcb\x04\xd5\x96\xc3\xd5\x84\x3a\x75\xaa\x54\x83\x1f\x29\x0d\xac\x30\x2c\x72\xe5\x25\x98\x28\x06\xea\xee\x21\x42\x7c\xb1\x86\x88\x6e\x9c\x51\x0d\xb2\x4d\xaa\xa4\x79\x93\xd2\x26\x5a\x74\x2f\x87\x59\xae\xf9\xd8\xe2\x6c\x75\x23\x3a\xaa\xdf\x47\x78\x67\xf2\x56\xe0\x60\xf1\xf6\x7d\xf9\x7f\xe7\xe7\x68\x0b\x0a\x46\x6d\x8d\x57\xc8\xe9\x11\xdb\x09\xc9\xa1\x64\x11\x97\x67\x44\x33\xfc\x50\x73\x79\x9a\x9d\xa1\x14\xfa\x84\x90\xe2\x78\x00\x3b\x23\xce\xa5\xb5\xe9\xec\xab\x20\x52\x37\xb7\x7a\x00\xfc\xe8\x1a\x63\x7d\x2c\x45\xbd\x5e\xc7\x5f\xfe\xe5\x5f\x62\x7d\x7d\x3d\x74\xc1\x32\x57\x11\xaa\x3f\x8b\x00\x66\x89\xe8\x43\x00\x17\x99\xf9\x22\x11\x5d\x04\x70\x09\xc0\x2c\x33\x2f\x30\xf3\x5a\x44\x0c\x5e\xa5\x52\x91\xdf\xf9\xce\x77\xb0\xb3\xb3\x23\xb7\xb7\xb7\x65\xbc\x92\x96\x51\xfe\xd8\x9d\xd2\x6f\x0c\xd4\xdd\x47\x93\xf5\x5b\xac\x44\x01\x42\x2b\x2a\x7c\xd7\x6d\xa8\x08\x29\xdc\x87\xee\xf4\x7d\x65\x78\x37\x73\x82\x88\x8a\x00\xdc\xe9\xe9\x69\xfc\xc6\x6f\xfc\x86\x3a\xcc\x21\xcb\xcc\xe5\x33\xb7\x4b\xbf\x59\x68\x89\x63\xca\x36\x8b\x85\x82\xea\xc7\x98\xe2\x38\xf9\x8d\xe6\x69\x8e\x6c\xe5\x3f\x3f\xb5\x99\x7b\x14\xe1\x3e\x71\x77\x60\x60\x40\xb9\x7a\x75\x97\x6b\x3c\xce\xa9\x13\x21\x6f\xbf\xfd\xb6\x0c\x1b\x1f\xba\x1b\x3d\x97\xab\x4d\x57\x56\xdb\xf6\x90\x6b\xdc\x40\x9f\x58\x4d\x1c\x18\x1c\x73\x05\xd5\xd6\xe1\x5a\x66\x8a\xa2\xf5\x30\x00\x10\x6d\xdc\x4f\xf3\x32\xd9\x8c\xe2\xb4\xb4\x7a\x7c\x37\x27\x81\x99\x56\xcf\x63\x35\xec\xcf\x9f\x3f\x2f\xa5\x94\xca\x8d\x59\x01\xb0\xd6\x2c\x89\x0f\x6f\xdd\x9f\xfb\xb7\x41\x06\x35\x00\xa0\x36\xae\xae\x2d\xd3\x20\x0d\xf1\x63\xbd\x01\x31\x77\x23\x95\x46\x9f\xcd\xa6\x98\x4a\x62\x89\xc1\x00\x9a\x7d\xb4\x74\xeb\xfe\xdc\x9f\xca\x0c\x2d\x20\x44\xec\x1a\x00\x7f\x7d\x7d\x1d\xb3\xb3\xb3\xd6\xfe\xab\xd7\xeb\xf2\x9b\xdf\xfc\xa6\xbc\x7c\xf9\xb2\x6c\xb5\x5a\x6a\x35\x6a\x05\xc0\x1a\x33\x2f\x01\x58\x24\xa2\x45\x00\x8b\xcc\xbc\xc4\xcc\x2b\x44\x54\x21\xa2\x5a\xab\xd5\xf2\x66\x67\x67\xe5\x37\xbe\xf1\x0d\x19\x1d\x23\x8f\xdf\xf9\x9d\xdf\x89\x3d\x4a\xd9\x80\x86\x8f\xad\x17\x7e\x95\x98\x42\xf7\x6a\x64\x07\x29\x9b\x48\xdf\xf1\xa7\x2f\x6f\x54\xfd\x54\xf0\xc5\xe1\xe3\xeb\x85\x67\x01\x14\x29\xb9\x22\x4b\xf5\x7f\x3e\x17\x88\xe1\x23\x9b\xf9\xe7\x48\xdb\x5e\xab\xb4\x4c\xc5\x33\xe2\x2d\x09\xb1\x13\x23\x8c\x60\x10\x1c\x89\xd2\x7d\xab\xc5\x17\xd5\x51\x96\x00\xc4\x0b\x2f\xbc\xa0\xcf\x3d\xb4\x8d\x7f\xaa\xfb\x69\x74\x74\x54\xe7\xbc\xbe\xe7\xc8\x5a\x3d\x23\xb7\x34\x1e\xd8\xf6\x13\x2f\x62\x6b\x53\x62\xb4\xd4\xd1\x0d\xa5\x83\x75\xf7\xb0\x23\xa9\xc8\xcc\xe6\x2c\xb9\x0d\x21\xd1\xe1\xbd\x9b\x27\xca\x04\xb6\x93\xcb\x56\x7f\xd2\xbc\x53\x22\xba\x1d\xd5\x47\xb8\xde\x7e\x83\xc1\xb7\xb7\x0e\xba\x3f\xba\x73\x32\xf7\x17\xec\xc0\x6b\xef\x17\xd6\x46\x5e\x89\x71\x40\xf3\x6b\xb6\x73\x37\x85\x48\xb1\x64\xd0\x46\x3b\x2a\xa3\x95\xa3\xad\x9b\x1f\xcb\xff\xdf\xcd\x92\xb8\x04\x60\x89\x99\x2b\xcc\xe1\x0e\x44\xc3\x43\xa3\xdb\x58\x31\x8c\xe7\xcf\x9f\xc7\xcb\x2f\xbf\xac\x08\xc7\x8b\xf6\x23\xd4\x10\x12\x48\x15\xe1\x92\xea\x9a\xda\x54\x73\xf5\xea\x55\xf9\xb5\xaf\x7d\x4d\xbe\xf6\xda\x6b\x7a\x9f\xa2\xbf\xbf\x1f\x88\x4e\x39\x2f\x37\xdc\xc9\xfe\xa6\x73\x2c\xd6\x3f\x35\x15\x49\x39\x12\x34\x10\x22\x0f\x9c\x8a\x03\xc0\x24\x8e\x6c\xe5\x9e\x44\xc8\xc1\xf5\x89\x5b\x01\x20\xdb\xe7\x39\x13\xe5\xa6\x3b\xa3\xfb\x16\xe2\xed\x05\xea\x9d\xb4\xfa\xb4\x06\x28\x2d\xe5\x40\x35\x7b\xc6\x95\xc9\xd9\xb1\x23\x23\x23\x31\x2c\xc6\x23\x6c\x13\x73\x00\x80\xb5\xb5\x35\xa9\xe9\xc2\xbe\x24\x6e\x6c\x15\xfc\xdb\x93\x95\xdc\x23\xaa\x61\xf1\xf8\xb2\xe6\x59\x81\xae\x37\x72\x24\xfd\x29\x6e\x68\xb9\xe1\x1e\x2e\xb4\x44\xb9\x95\x0b\x2f\x7c\xcc\xe5\x72\x98\x9a\x9a\x12\x0b\x0b\x0b\x7a\xa7\xdb\xe6\x29\xd2\xc2\x3a\xcd\x25\xa4\xce\x2f\x60\x2f\x61\xb4\xa9\x1a\xb6\x72\x5e\x79\xe5\x15\x7d\x07\x57\x05\xc0\x12\x88\xb2\x6b\xd3\x99\xbf\x92\x0e\xf9\x93\x97\x1b\x9f\x77\x5b\x28\x29\xae\xa8\x75\x89\xc6\xc6\x90\xd8\x18\xfa\x7b\x9b\xe3\x83\xda\xbc\x4a\x0c\x46\xa3\xe4\xdc\xbe\x79\x3a\xff\x8d\xda\xa0\x78\x13\x44\xba\x3a\xe3\x2f\x2e\x2e\xe2\xe6\xcd\x9b\x26\x6c\x3a\xdc\x71\x3f\xac\xac\xac\xe0\xb5\xd7\x5e\xc3\x6b\xaf\xbd\x86\x13\x27\x4e\x88\x91\x91\x11\x39\x31\x31\x11\xc3\xba\xba\xba\x8a\x8d\x8d\x0d\x5c\xbe\x7c\x59\xa9\xcb\xd6\xfe\x8b\x66\x9f\xb3\x45\x4f\x4c\x38\x92\x8a\x31\x5d\x43\xa9\x82\x3a\x0c\x1a\x30\xaa\x2b\x62\x05\x1b\x28\x7a\xce\x04\x31\x8a\x4c\xc9\x34\x80\x2a\xbf\xe0\x85\x67\xbb\x86\xf9\xda\x97\xaf\x93\x5a\x2f\x16\x75\x5d\x88\x77\xed\x2a\x3c\xc0\xc8\xb7\xc4\x58\xc6\xa7\xb2\x27\x64\x96\x88\x44\x2e\x97\xb3\xf5\x95\x00\xda\x77\xcc\xd9\x00\x57\x61\x3e\x88\xbc\xf5\xbe\xd6\xa2\x9a\x84\xd3\x1c\x1e\x26\xd3\xd3\x40\xd7\x0c\xc7\xe8\x33\xef\x8b\xe1\xc1\xba\x3b\x51\xc9\xf9\x1f\x22\x34\x50\xc5\xc2\xc2\x82\x5a\xdb\xde\xd5\x4f\xdc\x21\xcc\x44\x60\x1b\xc2\x77\x72\xbd\xda\xea\xd8\x93\xf6\xa7\x3f\xfd\x29\x3e\xf5\xa9\x4f\xf9\x8e\xe3\x78\x08\xf7\x12\xbb\x20\x12\x1b\x87\xdd\x57\x5a\xf9\x42\x65\xf2\x72\xf3\xf3\xf9\x1d\x39\xb9\xa7\x64\x6d\x31\x13\x69\xa3\x98\x38\x20\x0c\xe9\x12\xb1\x51\x29\x48\xee\x1c\x70\x3f\xbc\x75\x7f\xee\xcf\xbc\x22\xbd\x0f\xa2\x79\x84\x7b\x85\x2b\x00\xbc\x7a\xbd\x2e\x5f\x79\xe5\x15\xf3\x6c\x5c\x5b\xdb\xf7\x10\xff\xec\xec\xac\x9c\x9d\x9d\xb5\x79\xef\xd4\xbb\x59\x5e\x5c\x4e\x34\x8f\xe4\x22\xe4\xea\x86\xd2\x10\x21\x24\x25\x5c\x1a\x0a\x64\xc5\x27\xda\x96\x40\xb3\x4b\x8c\x6c\x44\x10\x40\x84\x17\xcc\x2c\x3c\x97\xa5\xa4\xb8\xce\x36\x29\x64\x28\x22\x51\x97\x25\x1f\xaa\x9e\x96\xc3\x9e\x14\xf1\x92\x75\x91\xcd\x66\xd3\xfa\x64\x8f\xe1\x19\x8b\x58\xc7\x71\xc4\xfa\xfa\xba\xca\xe4\x03\x68\x6c\x14\x5a\xb7\x24\xc1\x57\x2a\x50\x64\x5e\x47\xf4\x11\xad\xe8\x54\x36\xa1\xc6\xf1\x62\x5d\x0f\x80\x60\xca\x8f\xef\x64\x4f\x51\x78\x50\x96\x0b\x00\x91\x4e\x67\xb6\xc7\xd6\xbe\x6e\xef\x6d\xc0\x69\xf1\x9d\x54\x24\x05\xe3\x9e\x3e\xd0\xc2\xd5\x23\xe6\xe7\xe7\x65\x74\x69\x89\xda\x12\xb9\xc1\xcc\x8b\x20\x9a\xdd\x19\x75\x7f\x74\xed\xf1\xc2\xff\xbe\x3a\x93\xf9\xa1\x9f\x41\x8d\xdb\xb8\x7e\xdc\x51\x88\x95\xcc\x3d\x87\x7a\x45\x3c\x8d\x01\x06\xa1\x59\xa4\xb5\x5b\x0f\xe6\xbe\x75\xe3\xe1\xfc\x57\xbd\x3e\xf1\x56\x44\x0c\x4b\xcc\xbc\x05\xa0\xd1\x6c\x36\xe5\x77\xbf\xfb\x5d\xfd\x22\x74\xb3\x0f\x6c\x0e\x07\x9b\x9d\x21\xba\xe4\xd1\xbf\xf5\xf6\x8a\x66\x46\x36\xf4\xb3\x5d\xf5\x95\xb8\x60\x05\x8b\x32\x76\x55\xa2\x28\x2c\x0a\xae\x65\x64\x45\x1d\xbb\xad\xaf\x84\x26\x22\xd4\x33\x41\xad\xe9\xca\x8a\x72\xce\x28\xf3\x2b\xb1\x4d\x6c\xfd\xc7\x91\x6a\x05\x30\x31\x6e\x0e\x35\x2e\x36\x5c\xa9\xb6\xb9\x4a\x63\x95\x75\x9b\x7a\xa9\x28\x72\x8f\x7a\x10\x04\x81\x6c\x34\x1a\x22\x5a\xdd\xe8\x03\xf0\xb6\x0b\xfe\x52\xcb\xe1\x9a\xe3\x53\x19\xa0\x36\x97\x61\x0c\x24\xc5\x0e\xc6\xb8\xc0\x84\x37\x86\x8d\x9d\xa8\x64\x4f\x93\x44\x5e\x52\xb8\xcb\x6b\x68\x68\x28\xcd\x10\xb6\x49\x8c\x4e\xef\x36\xee\xdf\xed\x3b\x4d\x9a\xa4\xd6\x27\x84\x10\xb3\xb3\xb3\xf2\xc4\x89\x13\x3e\x42\xbd\x3b\x92\xa2\xf0\xfc\xac\xa8\xde\xbe\x3f\xb7\xb6\x7e\x38\xf3\xf3\x91\x5b\xad\x27\xca\xcb\xfe\xfd\xd9\x06\x0f\x92\x84\x6b\x1e\xdc\xd5\x7e\x86\x4d\xa8\x54\x07\x0e\xbc\x46\xc9\x59\xd9\x9c\xcc\x5c\xd8\x3a\xe8\xbe\xe9\x67\x69\x01\x44\xb7\x01\x2c\x21\x34\x82\xab\x44\xd4\xf0\x3c\xcf\xff\xab\xbf\xfa\x2b\xac\xac\xac\x98\x6d\xee\x64\x63\xd9\x90\xdc\xb4\x37\x3a\x32\x8f\x73\xe7\xce\xc5\x79\x89\xc8\xdf\xca\x07\x6d\x67\xbb\xc6\xea\x1f\x25\x26\x34\xa3\x9d\xf0\xa1\x9d\xdc\x27\xc1\xf2\xf2\x58\xed\x0d\x84\x4c\x57\x2d\x20\x55\xe3\xe1\xd7\xb2\xb2\x72\xa7\xec\x5d\x29\x37\x9d\xc3\xba\x81\x92\x08\x5c\xad\x3f\xd5\xea\x88\x58\x4a\x30\x02\x82\x7f\x63\xa8\x71\x11\xd1\xc5\x9e\x00\xb0\xbb\xbb\x0b\x21\x84\x88\x9c\x24\x6d\x7d\xd5\xe9\xbc\x7c\x71\xe3\xc6\x0d\x1c\x3e\x7c\x58\xe9\x92\xde\x6e\x36\xd8\xd8\xcd\x06\x6b\xb9\x88\x20\xda\xf4\xc3\xa8\x81\xca\x93\x62\xaa\x91\x89\xa1\x45\x38\xb0\x9b\xbd\xbf\xd8\x12\xc3\xbb\x39\xb9\xc4\xcc\xf1\x2d\x9d\x68\x47\x4e\x9b\x1e\x6f\x0e\x20\xb0\x17\x91\xd3\x7e\xf5\x72\xf4\xc7\x56\xa6\xfe\xec\x29\x47\x4a\x29\xcf\x9f\x3f\x2f\x88\x48\x1e\x3b\x76\x2c\xde\x27\xce\xe1\x11\x9d\x55\x22\xaa\x34\xfb\x9d\xb5\xdb\xa7\xc4\xd5\x95\xa3\xd9\x43\xc5\x6d\x39\xd3\xb7\x19\xcc\x14\xb7\x83\x89\x6c\x5d\x0e\x0a\x1f\x79\x62\x76\x01\x92\x2c\xc8\xf7\x33\xa2\xe1\x15\xc5\xda\xee\x90\x58\xdc\x1d\x72\xe7\xeb\xfd\xe2\x86\x74\x68\x05\xe1\x71\x2a\xea\x74\x8a\x2d\x84\xc4\xe7\x79\x9e\xe7\x7f\xfd\xeb\x5f\xef\xe6\x50\xe8\xf6\xec\x97\x71\x00\x80\x7c\xeb\xad\xb7\x70\xee\xdc\x39\x15\xef\x37\x5d\x59\x99\x1f\xae\x5f\x78\xf8\x76\x69\x2a\xf6\x3a\xb6\xd1\x7d\xc2\x38\x15\x63\xd6\xe7\x29\x76\x73\xc1\xda\x8d\xe1\xc6\xfb\xd0\x2e\xcf\x89\xd2\x84\x86\x3f\xa1\x76\x69\x62\xf7\xc7\xc7\xd7\x0b\xcf\xb8\x01\xb2\xb1\x57\x29\x2c\x3a\x46\xb0\xc4\xd3\xa4\xd5\x45\x84\xb5\x3e\xef\xfa\xcd\xc1\xc6\x2f\x18\x5c\x23\x84\x0b\x13\xa5\x94\x48\x68\xa1\x7d\xdc\x6d\x87\x1d\xc7\x8f\x3a\xd0\x49\x49\x08\xcf\xe5\xca\x6a\xc9\x9b\x1f\xae\xb9\xc7\xe2\xd9\x56\x06\x92\x73\x4c\x09\xb1\xac\x22\xcd\xbc\x69\xb3\xc0\x81\xbe\xa6\x33\x39\xba\x9b\x3d\xb6\x9b\xad\xcf\x46\x6d\xf0\xcf\x9c\x39\x83\xf7\xde\x7b\xcf\x1c\x80\x5e\xf4\x7d\x93\x88\xcc\xfc\x69\x79\x3b\x11\x98\xfe\x6e\x1a\xdb\x00\x42\x09\xfa\xea\xab\xaf\x62\x75\x75\x55\x3c\xf6\xd8\x63\xbe\xeb\xba\xb5\xa8\x9f\x1a\x08\x3d\x36\x6b\x20\x1a\xf4\x73\xb4\x58\x19\x13\x97\x2b\x63\x6e\x09\x8c\x22\x31\xe7\x85\x8f\x02\xc9\xf0\x7e\x3f\x76\xc8\x0b\x5c\xd4\xd1\xee\xed\xd9\xd2\xfe\x2a\x51\x78\x03\xd1\xa6\xfc\x97\x5e\x7a\x29\x8d\xd3\xeb\xfd\xa2\xf7\x4d\xa7\x38\xdb\x3b\x2c\xe9\x01\xec\x39\xdb\xb5\x01\x42\xf5\xbd\xc9\xea\xf7\x8f\xaf\x17\x3e\x5e\x6a\xb8\xa3\x8a\x1a\xda\x6d\xc9\xf0\x89\xe7\x28\x34\xd9\xf1\xde\xc1\xea\xf7\x76\x72\xc1\xed\x08\xee\xb6\x13\xc0\x11\xae\xcf\xaa\x2c\x0c\x35\xde\xfd\x70\x6c\xf7\xc7\x0f\x2e\xf5\x3d\x2f\x94\xdb\x55\xa9\xe7\x7b\x6c\xaf\xa4\x56\xcf\x91\xb5\x9f\x4d\x57\xfe\xa2\x99\xe1\x25\x42\x38\x9f\x02\x40\x5e\xb9\x72\x45\x87\xad\x0d\x76\xb5\x74\x43\x77\x8c\xa9\x48\x26\x22\xba\xff\xfe\xfb\x95\x01\x95\x65\x70\x69\xa0\xe1\x4e\x4f\x6f\xe6\x1f\x0d\x0f\x0e\xd0\xcf\x1b\xd5\x36\xae\x53\xe2\x05\x50\x9e\x95\xb8\x74\x02\x04\xe0\x56\x73\xc1\xcd\x9b\x43\xcd\x0b\x44\xb4\x0b\xc0\xab\xd5\x6a\x3c\x3f\x3f\xaf\x0f\x80\xde\x16\x68\x6d\xe4\x08\x08\x36\xc2\xf7\xb4\xdf\x80\x0d\xc6\xb7\xe1\x0c\x8c\xff\x54\x07\x99\xf9\x48\x0b\x8f\xc9\x7b\x79\x79\x99\xd7\xd7\xd7\x69\x68\x68\x48\xcd\x06\xb7\x90\x9c\x3c\xb1\x8b\x10\xa1\x37\x01\x6c\x80\xb0\x01\xa2\x55\x76\x68\x49\xba\x74\x5b\xba\x74\x8b\x1d\xba\x0d\xa2\x5b\x00\x6e\x01\xb8\x1d\xfd\x2d\x23\x94\x0a\x9b\x08\x97\x64\x34\x99\xb9\xb5\xb8\xb8\xc8\x2f\xbf\xfc\x32\x5a\xad\x96\xad\x9d\x26\xac\x66\x9f\x75\xea\x07\x5b\x9c\x82\x51\xef\x6b\x78\x9e\xc7\x13\x13\x13\x6a\x6d\x97\x00\x90\xa9\x67\x24\x3c\x97\x31\xbd\x95\x3b\x2d\x58\x38\xaa\x53\xe3\x27\x51\xfa\xdb\x66\xf0\x6f\x0e\x36\x2f\xfe\xf8\xd8\xd6\xbf\x0e\x1c\xcc\x03\x58\x8d\xfa\x4b\xdf\xd7\xc1\x08\xd7\x8f\xb9\x77\xca\xde\xd6\x68\x2d\x73\x78\xa0\xee\x8e\x13\xa2\x72\xda\xd4\xcf\xe4\x3f\x33\x10\x38\xec\xfd\x6c\xba\xf2\x17\xbf\x18\xdf\xfd\x2e\xc2\xb5\x58\x1b\x08\x4f\xef\xf3\x5f\x7e\xf9\x65\x1b\x5e\x01\x08\xd7\x32\x29\x80\x75\x6e\x42\x00\xa8\x5e\xaf\xe3\x91\x47\x1e\x81\x10\x82\x98\x39\x4b\x44\x7d\x04\x0c\x3c\xb0\xdc\xf7\x49\x42\xb8\xce\x3d\xf2\x95\x44\x9e\xa4\x58\x26\x42\xa7\x56\xcd\xe1\x06\x35\x41\x93\xf3\x45\xe6\xe2\xc1\xea\x5f\x73\x78\xd7\x5c\x33\x97\xcb\xc9\xf7\xdf\x7f\x5f\x35\x4e\x71\x21\xdd\x99\x10\xb7\x4b\x03\x44\x0f\x33\xc8\x6e\x0f\x72\xe8\x70\x9a\x08\x60\x23\x30\x33\x9d\x5e\x8f\xd4\xe3\xb7\xb7\xb7\x79\x7e\x7e\x9e\x5a\xad\x16\x0f\x0f\x0f\x4b\xd7\x75\x03\x84\x84\xd1\x44\x42\x18\x3b\x50\x84\x11\xfe\xad\x03\xf1\x09\x73\x6b\xd1\x12\x89\x75\x66\xde\xa4\xf0\xdc\xdb\x5d\x84\x52\xa1\xb5\xbb\xbb\x2b\x5f\x7a\xe9\x25\x39\x3b\x3b\x4b\x9a\x01\xdd\xd6\x06\x4b\x7b\x6d\x30\xdb\xd2\xa4\xa5\xb5\x31\x1c\x00\xc0\xd5\xab\x57\xf9\xdc\xb9\x73\x11\xcf\x63\x22\x22\x67\xad\xd4\xaa\x78\x0e\x63\xa2\x92\x3b\xea\x4a\x64\x58\x5b\xde\x63\x2e\xed\x61\x00\x37\x86\x1a\x17\xbf\x77\x6a\xf3\xa5\x7a\xb8\x78\xf0\x0e\x42\x69\xd8\xac\x54\x2a\xfc\xd2\x4b\x2f\xc9\x33\x67\xce\xa8\x0d\x46\x00\x40\xbe\xc3\xf2\xc6\x50\x63\x31\x23\xa9\x38\xb2\x9b\x39\x18\x9e\x1f\xab\xf4\x23\x24\x2a\x3b\x01\xbb\x39\x7f\xeb\x27\x47\xb7\xbf\xf3\xee\xa1\xea\x5f\x4a\xe2\x05\x22\x5a\x62\xe6\x0a\x11\x79\x97\x2f\x5f\xe6\x85\x85\x85\xb4\x3e\x68\xbb\xa7\xda\xe4\x94\x04\x40\x96\x4a\x25\x3a\x70\xe0\x00\x00\x38\x44\x94\x6f\xba\x32\xff\xe0\x52\xdf\x2f\xe7\x02\x51\x62\x84\xcb\x90\x95\x4f\x3d\x9e\x91\x8c\x15\xbc\x44\x4a\xc4\x4b\xc1\xa3\xf4\x39\x5f\x0c\xde\x18\x6e\x9c\xaf\xe6\x82\x25\x00\x8d\x4c\x26\xa3\x16\xa6\xe9\x9c\x4f\x1f\x6c\x89\x04\x19\x55\x3a\x18\x69\x75\x4e\x6e\x0e\xb6\x0a\x33\x89\xcc\xc6\x59\x6d\xaa\x9a\x5e\x37\xcc\x3c\xbe\xef\xf3\x9d\x3b\x77\xe8\xdd\x77\xdf\x95\x8e\xe3\x20\x97\xcb\xc9\x42\xa1\xe0\x23\x39\x87\xa8\xc1\xcc\x75\x22\xaa\x31\xf3\x2e\x11\xed\x20\x5c\x4e\xbd\x1b\xcd\x27\xec\x12\x51\x1d\x40\x33\x5a\x84\xe7\x6f\x6c\x6c\xf0\xbb\xef\xbe\x8b\x57\x5f\x7d\xd5\xb4\x85\x6c\xc4\xab\xab\x00\x0c\x3b\xcc\x7a\x9b\xd3\x18\x43\x9a\x8a\xda\x46\x30\x0f\x3c\xf0\x00\x65\x32\x19\x89\x50\x93\x90\x0c\xe6\x95\x72\x6b\xed\xd6\x60\xf3\x76\x5f\xcb\x29\x17\x5a\x4e\xbf\xd3\x76\x96\x17\x10\x10\xfc\xed\x82\xbf\xf6\xf3\xa9\x9d\x57\x7e\x7a\x6c\xfb\x9b\xf5\x8c\xbc\x0c\xc2\x2d\x84\x0c\xa1\x2e\xa5\xf4\xff\xf8\x8f\xff\x58\x02\x10\xad\x56\x0b\x47\x8e\x1c\x91\x44\xf1\xa1\x76\x81\xef\xb0\x77\x63\xa8\xb1\x70\x73\xa8\xb9\x08\x00\x6e\x20\x72\x82\x49\x30\xb1\x6c\xba\xb2\xbe\x55\xf0\xd7\x2e\x4d\xec\xbe\xf5\x83\x93\x5b\xff\x76\x61\xa8\xf9\x3a\x08\x37\x28\x94\xbe\x5b\x00\x1a\x52\xca\xe0\x5b\xdf\xfa\x96\xc9\x48\x14\x6c\x84\x90\x9e\xba\x1b\xa3\xbf\xff\xfb\xbf\xef\x22\xbc\x87\x60\x0c\xc0\x7d\xbf\xf6\xc1\xc8\x3f\x39\xb1\x56\x78\x26\xd9\x3e\x6a\x2c\x66\xdb\xa3\x3d\x26\x98\xaa\xde\x18\x8c\x37\xa7\x76\xfe\xd7\x9f\xce\x6c\xff\x1f\x20\x2c\x31\x73\x75\x69\x69\x49\x7e\xe7\x3b\xdf\x49\xf3\xf6\xa4\xe9\xbc\x7a\x3c\x2c\x79\xf4\xb0\xb4\x7c\x69\x86\x79\xb7\xb0\x4e\x75\xe3\xe8\xd1\xa3\x62\x72\x72\x12\x33\x33\x33\xc8\xe5\x72\x70\x1c\x47\xa9\x9f\xe6\x23\x99\x19\x41\x10\xa0\x5a\xad\x62\x6e\x6e\x0e\x6f\xbe\xf9\x66\x2f\x76\x4e\x27\x7b\xc1\x06\xb7\xcd\x56\x48\xeb\x8f\x4e\x7d\x20\x00\xc8\xe8\x3e\x69\x17\xe1\x85\x86\xc3\x00\x26\xc0\x98\x74\x18\x93\xc3\xb5\xcc\xf1\xf1\x9d\xec\xd4\x40\xdd\x1d\x15\x4c\xa2\xe1\x06\xb5\xd5\x52\x6b\x71\xb9\xdf\xbb\x56\xcf\xc8\x45\x06\xdf\x06\x70\x9b\x88\xd6\x10\x9d\xed\x3a\x37\x37\x27\xbf\xf7\xbd\xef\x49\x00\x82\x88\xf0\xeb\xbf\xfe\xeb\x98\x98\x98\x10\x44\x94\x65\xe6\x12\x11\x0d\x33\xf3\x18\x11\x4d\x80\x31\x9c\xf7\xc5\x68\x9f\x27\x46\x1c\x49\x6e\xd3\x95\x8d\x7a\x46\xae\x7b\x0e\xaf\x81\xb0\x86\xd0\x2b\xb7\xc2\xcc\x5b\x11\x13\xf2\xde\x7a\xeb\x2d\xb5\xe7\xc2\xd6\x7f\x00\x42\xb7\x6b\xa7\x8e\xd7\x3b\x36\x36\x18\x17\x86\x1a\x17\x8f\xaf\x15\x3e\x4e\x40\x74\x59\x88\x9d\x18\xda\x0c\xab\x50\xc0\xc6\x21\x04\xc2\xb1\xb5\xc2\x73\x6f\x1d\xde\xf9\x66\x33\x23\x37\x88\xc8\x1d\x1f\x1f\xf7\x0a\x85\x82\xa8\xd7\xeb\xca\xa8\x32\x07\x49\x6f\x4f\x27\xf7\xa8\x39\x88\xdd\xf2\x99\xc8\xa1\xa7\x93\x46\x9c\x19\x9f\x4a\x28\x73\x73\x73\x72\x6e\x6e\x0e\x3f\xf9\xc9\x4f\x00\x00\xd3\xd3\xd3\xe2\xc6\x8d\x1b\xb6\xbd\xcf\x69\x70\xaa\x30\xfd\xd7\xf6\x9e\xe6\x54\x30\xd3\xea\x8f\xcd\x59\x90\xe6\x44\xb0\x22\xd0\x9b\x6f\xbe\x89\x27\x9e\x78\x42\x6d\x40\x02\x42\xd7\x73\x35\x20\xac\xad\x96\x5a\x0b\xab\xa5\x56\x39\x52\xb5\x05\x42\xfc\x09\xcf\x76\x05\x36\x08\xb4\x11\xbd\xd7\x00\x78\x8d\x46\x23\x26\x06\x20\x64\xb2\xaf\xbd\xf6\x1a\x3e\xf7\xb9\xcf\xc9\x72\xb9\xac\x8e\xaf\x4c\xca\x20\x94\x1b\x19\x59\x6a\x64\x64\x3e\xca\xa3\xf0\xb3\x12\x11\x81\x7e\xb6\xab\xff\xc6\x1b\x6f\x40\x1d\xa4\x9c\xd2\x3f\x12\x48\x96\x7f\x77\x32\x30\xf9\xd8\xb1\x63\x54\x28\x14\x88\xc3\xd3\xe1\x8a\x92\x50\xba\x7f\xb5\xef\x13\xea\xbc\xd7\xf0\xea\x28\xcd\x0f\xbc\x47\x5d\x42\x9b\x1a\xa5\x2a\xcc\xf9\x62\x70\xa5\xdf\x7b\x6b\xb3\xcf\x5f\x60\xe6\x86\x10\x22\xf8\xd9\xcf\x7e\xa6\x36\xb8\xd8\x76\x16\xb9\xd2\x00\x00\x20\x00\x49\x44\x41\x54\x44\x7f\x2c\xda\xb0\x57\xcd\xd1\xf3\x98\x30\x91\x11\x6e\x53\x17\x4c\x11\xaa\x97\xa1\xd7\x9b\xa6\x63\xa7\xa9\x2d\xf1\xef\xf6\xf6\x76\xaa\xee\x6a\x94\xa5\x1e\xa5\xa6\xe9\xea\x9a\xe9\x2c\xe8\x64\xfc\xeb\xb0\xd9\x88\xad\x93\x13\xc1\x56\x8f\x82\x87\x00\xf0\xd2\xd2\x12\x31\x33\x26\x26\x26\x24\x11\x05\x08\x55\xc3\x3a\x42\xe4\xdd\x61\xe6\x0d\x22\x5a\x45\xc8\xa9\xef\x50\xb8\x91\x69\x19\xa1\x01\xad\xbc\x67\xad\x9d\x9d\x1d\xf9\x27\x7f\xf2\x27\xba\x3a\x48\x00\x64\xab\xd5\xe2\x8b\x17\x2f\xf2\xf4\xf4\x34\xfa\xfa\xfa\x24\x33\xb7\xa2\x95\xbd\xaa\x8e\x2d\x00\xeb\xd1\x32\x96\x55\x44\xf6\x98\x22\x06\x44\x6a\xd2\x9b\x6f\xbe\x89\x77\xdf\x7d\x57\xda\x60\x40\xbb\x8a\xcd\xb1\xd5\x62\xe9\xdc\xf8\xfb\xd0\xa1\x43\x34\x34\x34\x84\x48\x3c\xe6\x3c\x87\xf3\x33\x1b\xf9\x47\xfa\x9b\xee\xd8\x9e\xcd\xef\xd1\x84\x4c\xbc\x9e\x27\x2a\x45\x9f\x47\xd1\x9c\x4f\xae\xc3\xd4\xbc\x72\xa0\xfe\x7a\x24\xd6\x5a\xc7\x8f\x1f\xe7\x4b\x97\x2e\xd9\x06\xc2\x1c\x68\x1d\x49\xd5\xb7\x89\x90\xfa\xe0\x9a\x70\xa5\x19\xa4\x26\x82\xd8\xbc\x39\xe6\x93\x26\x25\xd2\xf2\x74\xaa\xdb\x06\x4f\x37\x43\xd8\xd6\x0e\x33\x4d\x9a\xf1\xdd\x8d\xb1\xd8\xca\x8e\x09\xe9\xce\x9d\x3b\xdc\x6a\xb5\x68\x74\x74\x54\x66\x32\x19\x45\x14\x1e\x42\x9b\x68\x07\xc0\x36\xc2\xcb\x4a\x94\x1b\x79\x07\xa1\xc3\xc0\x03\xd0\xba\x71\xe3\x06\x47\x7a\x7d\x2a\x0c\xbf\xf8\xc5\x2f\x88\x88\xf8\xc0\x81\x03\xd2\x71\x1c\x55\x47\xec\xb0\x88\x3c\x95\xaa\xdc\x5a\x14\xe7\xd7\xeb\x75\xf9\xf5\xaf\x7f\x5d\x2e\x2d\x2d\xa5\xf5\xe9\x1e\x9c\x31\xbd\x4c\x26\x17\x14\x08\x8d\x26\x3a\x76\xec\x18\x47\x1e\x85\x8c\x24\xf4\x15\x5b\x62\xe2\xc8\x56\xee\x4c\x48\x00\xd1\x2e\x2f\xe8\x13\x70\x40\xec\x05\x88\xdc\xb3\x9a\x97\x2c\x8a\x27\x14\x3d\x67\xf4\xc6\x50\xe3\x87\xb5\x9c\x5c\x25\x22\x2f\x9f\xcf\xeb\xc6\xb5\x8e\x50\x36\xe4\x4f\xf3\xfc\xec\x81\xc1\xe8\x70\xd3\xf0\xd6\xa5\x48\x1a\x91\xc5\x9d\x66\xbc\x9b\xd2\x24\xad\x6e\x55\xaf\xe9\x25\xd3\xeb\x4f\x73\x07\xa6\x3d\xbd\x10\x83\xcd\x39\xd0\x8d\x40\x6d\x86\xb5\x4d\x7a\x31\x00\xac\xac\xac\xf0\x7b\xef\xbd\xc7\x03\x03\x03\x28\x97\xcb\x52\x08\xa1\x13\x46\x03\x21\x47\x6f\xa8\x30\x0e\x2f\xca\x91\xe7\xcf\x9f\xc7\x3b\xef\xbc\xd3\x91\x18\x54\xd8\xed\xdb\xb7\xf9\xc2\x85\x0b\xec\xba\xae\xee\xb0\x50\xde\x3c\x2f\xfa\xf5\x01\xf8\x6b\x6b\x6b\xf2\xd2\xa5\x4b\xfc\x37\x7f\xf3\x37\x36\x89\x98\xd6\x17\xac\x02\x3a\x3d\xba\x61\x2d\x22\x7d\xb0\x0c\x60\x66\x6c\x27\xf3\xcb\xff\xde\x85\xb1\x7f\x96\x09\x44\x1e\x1a\xd7\x67\xad\x5a\xa5\x25\x59\x6d\x0b\x4e\xe2\xde\x3e\xbc\xf3\x2f\x7f\x74\x6c\xfb\x5f\x81\xb0\x04\xa0\x36\x37\x37\x27\x5f\x79\xe5\x15\x60\x2f\xd7\xed\x66\x4c\xf7\x6a\x6c\x03\x7b\xb9\x43\x9a\x5d\x60\x4b\xdf\x4b\x19\xbd\xe4\x49\x0b\x4b\x43\xca\x6e\x75\xef\x27\x7f\xb7\x7c\x77\x5b\x06\x00\xe0\xb9\xe7\x9e\x13\x33\x33\x33\x6d\x61\xcb\xcb\xcb\xd8\xd8\xd8\x50\x27\x86\x77\xab\xaf\xa7\xfa\x9f\x7a\xea\x29\xa1\x5f\x21\x3c\x3c\x3c\xac\x1f\x6b\xb3\x6f\x18\xd2\xce\x65\x52\x4f\x3c\xc0\x4b\x4b\x4b\x88\x96\x09\x7b\xcc\x5c\xdb\x28\xfa\x0b\x6b\x7d\xad\xeb\x07\x77\x72\x0f\x26\x6b\x98\x80\x88\xf5\xc7\x4f\x88\xf7\xed\xa7\x4d\xab\x17\xb5\xe8\xeb\xbe\x95\xe2\xaf\x5e\x38\x54\xfd\x77\x3b\xf9\xa0\x02\xc0\x3b\x72\xe4\x88\x37\x32\x32\x82\xf5\xf5\x75\xd3\x60\xb4\x21\x1f\xb0\xb7\x23\x91\x92\x47\x7f\x6c\x1d\xd5\x09\xa1\x3b\xc5\xf5\x8a\x58\x66\xbb\xd3\x1e\x13\x36\xdb\xc0\xda\x1c\x0a\x66\x7f\x74\x22\x70\xb3\x8c\x5e\xda\x66\xeb\x77\x6b\xf9\x3f\xf8\xc1\x0f\xee\x0a\x86\xbe\xbe\x3e\x31\x3c\x3c\x8c\x9b\x37\x6f\xf6\x04\x83\x71\x9f\xb6\x22\x86\xbb\x86\x21\xed\xb0\x63\x95\x31\x6e\xe8\x8d\x1b\x37\x30\x31\x31\x21\x39\x3c\xea\xbc\xea\x0b\xde\xb8\x7a\xa0\xfe\xf3\x89\x9d\xec\x83\xca\x6f\xa4\xaf\x31\x51\x7a\x8b\x3e\x5b\x06\x24\x12\x44\x3f\x39\xae\xe4\x39\xc7\x1e\x58\xee\xfb\xd4\x1b\x53\x95\x45\x06\xd7\x5c\xd7\xf5\xcf\x9e\x3d\xab\xbc\x0e\xd0\xda\xa1\x13\x88\x1e\xbe\xa7\xbd\x5d\xde\x3b\x3d\x69\x75\x76\xe2\x36\xbd\xd6\x29\x2d\xe1\x69\xc4\x94\x36\xb0\xdd\xda\x21\x3a\x7c\x77\xab\xcf\xd6\xe6\xb4\xa7\x13\x9c\xfb\x82\xe1\xcc\x99\x33\xe2\xd8\xb1\x63\x28\x95\x4a\x70\x5d\x17\xd9\x6c\x16\xf5\x7a\x5d\x30\x33\x9a\xcd\x26\xe6\xe6\xe6\xc4\xa5\x4b\x97\x50\xab\xd5\xac\xf9\xef\x25\x0c\xfa\xc4\x9c\x59\x49\x9b\x2e\xbe\xbc\xbc\xcc\x0f\x3f\xfc\x30\x1c\xc7\x21\x00\x2e\x08\xf9\x46\x46\x3a\xf7\xad\x14\x9f\x76\xa5\xc8\x11\x90\xec\x1c\x8c\x08\x43\xdb\x02\x80\x98\x0a\xa2\xf0\xf8\xf0\xbf\x50\x73\xa3\x72\xd3\x1d\xbb\x36\x5a\x3f\xdf\x74\xe5\x16\x11\xb5\x86\x86\x86\x82\xf9\xf9\x79\xaa\xd7\xeb\xba\x7d\x03\xad\x4d\xba\xdd\x60\x33\xb8\xbb\x19\xce\xfa\x3b\x3a\xa4\x37\xbd\x5a\x66\xdd\x69\x76\x8a\xad\x2d\x36\x1b\x4d\x87\xc1\x84\xc9\x1c\x07\x5b\xbd\x66\x99\xa6\x0d\x04\xb4\x8f\x2b\x19\x79\x6c\x61\x64\x09\xe3\x94\x3c\xb6\xbf\xae\x30\x64\x32\x19\x21\xa5\xe4\xaf\x7c\xe5\x2b\xe2\xc8\x91\x23\xa2\xaf\xaf\xcf\xc9\x64\x32\xc2\x71\x1c\x17\x80\x93\xc9\x64\x9c\x4c\x26\x43\x85\x42\x41\x1c\x3c\x78\x10\xa7\x4e\x9d\xe2\x62\xb1\x48\x8b\x8b\x8b\x6c\x69\xdb\x3d\x83\x41\xf7\x32\xd9\x8c\x41\x7d\xc0\xf8\xe8\xd1\xa3\x54\x2c\x16\x55\x78\xa6\xe9\xca\xdc\xc4\x4e\xf6\xc4\x48\x2d\x73\x44\x2b\x27\xde\x09\xa9\x4b\x8b\x78\x6b\x9f\x16\x4e\x40\xbc\x73\x32\xe7\xd3\x70\xcb\xe1\x95\xc5\x41\xef\x22\x28\xf4\x12\xf4\xf5\xf5\xf1\x8d\x1b\x37\x28\x5a\xa6\xab\x1b\x9d\x7a\xa7\x2b\x42\xd0\x91\xd0\xe6\x41\x30\x91\xc2\x66\xb0\xdb\x3a\xce\xc6\x89\xcc\x38\xd3\x50\xb5\xb9\x79\x6d\xf9\xcc\x38\xbd\x1d\x26\x72\x53\x87\x7c\x30\xd2\xe9\x61\xb6\xf1\x34\x61\x97\xb0\xd7\x6d\xd6\x67\xc6\xb1\xe5\xaf\x27\x18\x7e\xf7\x77\x7f\x97\x9e\x78\xe2\x09\x87\xc2\x93\x3b\x72\x60\x14\x0a\x2d\x51\x1e\xac\xbb\x07\x06\xea\xee\x81\xbc\x2f\xca\x0c\x38\x81\x60\x01\x02\xb9\xae\x4b\xe3\xe3\xe3\x7c\xe2\xc4\x09\xd4\xeb\x75\xfd\xf2\xc4\x7b\x0a\x43\x9a\xdb\xd5\xfa\xdb\x6c\x36\xdb\xbc\x4d\x20\xe4\x99\xd0\x77\x7c\xad\xf0\xb8\x40\x34\x03\x1b\x55\x65\x38\x94\xac\xef\x6d\xdf\x4c\x34\x54\xcf\x1c\xbe\x76\xa0\xf6\x83\x66\x86\xb7\x01\x78\x03\x03\x03\x81\x76\x78\x55\x37\x64\x35\x39\x74\x5a\x5c\xb7\xef\xb4\xf7\xbb\x4d\x77\xb7\x65\x9a\x92\x4b\x27\x6e\x1b\x97\x4c\x4b\x07\x2d\x5d\x1a\xc7\x84\x11\x06\x23\x5d\x9a\x07\xcc\x94\x8c\x5d\x61\x38\x78\xf0\xa0\xf8\xf2\x97\xbf\x4c\xd9\x6c\xd6\x05\x90\x23\x46\xdf\xc1\x4a\xf6\xd8\x93\x37\xca\xff\xfe\x53\x37\x06\xfe\xeb\x87\x6f\xf7\xff\xa3\x87\x96\xfa\x7e\xef\xc1\xe5\xbe\xdf\xbe\x6f\xb5\xf8\x2b\x07\x76\x33\xc3\xf5\x8c\xdc\xdc\xcd\x05\x75\x10\x64\x2e\x97\xc3\xf4\xf4\xb4\xdc\xd9\xd9\xa1\x8d\x8d\x0d\x53\x7a\x7f\x64\x18\xf4\x8b\xdb\xbb\x89\x1c\x34\x1a\x0d\x3a\x75\xea\x14\x32\x99\x8c\x2a\x28\xbb\x9b\x0d\xc4\xf4\x66\xe1\x4c\xc9\x73\x86\x4d\x4f\x93\x36\x0d\x61\xfa\x98\xe2\xf7\xf8\xee\x66\x02\x32\x92\x06\xdd\x40\x78\xf3\xc3\x8d\xb7\x23\x29\x11\x0c\x0d\x0d\xa9\xcb\xc8\x4d\x00\x75\xb1\x9c\x26\xd5\x4c\xf5\xc1\x1c\x2c\x13\x56\xb6\xe4\x4b\x4b\x9b\xd6\x57\x69\xa2\xda\xda\xa7\x96\xfa\x55\x98\xc9\xc9\xcd\x41\xb5\x49\x36\x18\xef\x66\xbc\x4d\xa2\xe8\x6d\xb0\x49\x54\x93\xcb\xc3\x92\x26\x4d\x45\x6d\xab\x6f\x72\x72\x52\xbc\xf8\xe2\x8b\x88\x88\x21\xef\x06\x34\xf0\xf4\xdc\xc0\x7f\xf0\x89\x6b\x43\xff\xd3\xc1\x9d\xdc\x97\xf3\x2d\x67\xc6\x95\x18\x72\x40\xfd\x8e\x14\x43\xf9\x96\x98\x39\xb0\x9b\xfd\xd4\xc9\xd5\xe2\x67\x5d\x29\x2a\x4b\x65\xef\x26\x0b\xf8\x42\x08\x39\x3d\x3d\x2d\xd5\xc9\x30\xf7\x12\x06\x7d\xf9\xb7\x49\x69\xed\x98\x8b\x70\x01\x5b\x3e\x9f\xa7\x89\x89\x09\x30\xb3\x00\x90\x09\x04\xb2\xae\xa4\xf2\xf4\x66\xfe\x91\x50\x05\xa2\xe4\x10\x3a\x55\x80\x4e\x1c\xf1\xbb\x76\xe8\x63\xcc\xbf\x08\x83\x75\x77\xfa\x4e\xd9\xfb\xf9\x76\xde\x5f\x01\xd0\xcc\xe7\xf3\xd2\x71\x1c\xdc\xbe\x7d\xdb\x54\x99\x6c\x22\x51\x8f\xb3\x89\x6b\x7d\xd0\xd2\x44\xbb\xc9\x49\xcc\x32\xd3\xd2\x9b\xa2\x98\xb0\xb7\x1e\x3d\xad\xb0\x84\xd9\x06\xc9\xac\xdb\x0c\xd3\xf3\xe8\xc4\x00\x03\x0e\x1b\x91\xa7\x95\x6d\x22\xba\x8d\x39\xd8\xda\xdb\x11\x86\x2f\x7e\xf1\x8b\x94\xcd\x66\x5d\x22\xca\x67\x7c\x1a\x7d\x7e\x76\xe8\x3f\xff\xd8\x9d\xd2\x7f\x97\x61\x71\x80\x80\x88\x31\x86\xbc\x21\xfc\x0e\x27\x7c\x1d\xa6\x81\xc9\x4a\xf6\xb9\x62\xcb\x91\x0b\x83\x8d\x4b\xd1\x25\xf2\xf2\xe4\xc9\x93\x3c\x37\x37\x47\xd1\x72\xf8\x7b\x02\x83\x39\x31\x67\x72\x2d\xf5\xc4\x15\xb5\x5a\x2d\x9c\x3a\x75\x8a\xa3\x59\x68\x01\x20\xbf\x53\x08\x82\x07\x56\xfa\x3e\x9e\x0d\xa8\x80\x08\x28\x9d\x9a\x74\xa4\x8f\x37\x11\x45\x16\xb7\xbe\x7b\x0a\xc4\x70\x98\x8a\x03\x0d\x77\x70\xf6\x40\xfd\xc7\xd2\x41\x8d\x88\x5a\xc3\xc3\xc3\x72\x79\x79\x19\xd5\x6a\xd5\xc6\x11\x4d\xae\x6b\x12\x81\xfa\x83\xe5\x57\xef\x40\x58\xf2\xeb\x9d\x65\xf6\x93\x59\x5f\x5a\xb8\x1e\x0f\xec\x6d\x1b\x8c\x34\x12\x7b\x89\x45\x7f\xcc\xb0\xb4\x3c\xe6\x98\xda\x60\x32\x39\xa6\x09\xbf\x19\x9f\x56\x8e\x4d\x32\xb4\xb5\xe7\xf9\xe7\x9f\x17\x63\x63\x63\x82\x88\x32\x60\x0c\x3e\x7a\xab\xff\x37\x1f\xb9\xd5\xff\xdf\x3a\xa0\x82\xda\x34\x44\x51\xf1\x4c\xda\x01\xd2\x50\xa8\x42\x99\xd1\xdd\xcc\x23\x2d\x97\x6f\xdd\x29\x7b\xd7\x41\x68\xe5\x72\xb9\x20\x9f\xcf\xf3\xfc\xfc\xbc\xde\xa6\x8f\x04\x83\xee\x65\xb2\x71\x2d\xd2\x12\x03\x80\xdc\xdd\xdd\xe5\x83\x07\x0f\x52\xb9\x5c\x66\x00\x82\x88\xdc\x96\x60\xb7\xd0\x12\x07\x26\x2b\xb9\x53\x31\x60\x11\x30\xea\x80\x01\x52\x01\x0a\x07\xf4\xbd\x12\xac\x61\x09\x11\x4a\x4d\xe7\x88\xef\xf2\x9d\xdb\x65\xef\x0a\x08\x2d\xc7\x71\xfc\xc1\xc1\x41\x36\xee\x31\xb6\x71\x66\x9d\x58\x4c\xe4\x30\x61\xb2\x49\x43\xb3\x33\xf5\xce\xd2\xd3\xaa\xfa\x75\x84\xee\x24\xa9\x34\xc0\xdb\x88\x43\x6f\xbf\xcd\xd8\xd6\xeb\x31\xc3\xcc\x3c\x7a\x7b\x6c\x0c\xc1\x64\x0e\x26\xf3\xeb\x96\x47\xef\x57\x9d\x0b\x9b\x2a\xea\x1e\x18\x46\x47\x47\xe9\xe9\xa7\x9f\x06\xc2\x73\x82\xfb\x46\x6b\x99\x13\x9f\xba\x3a\xfc\xcf\x73\x81\x38\xc0\x00\xa0\x56\x31\xc4\xb8\x12\xe1\x06\x21\x39\xb9\x83\x00\x01\xca\x8e\xed\x64\x1e\xb8\x76\xa0\xfe\x6a\x23\x23\xb7\x01\xf8\xfd\xfd\xfd\xc1\xdc\xdc\x1c\x35\x9b\xcd\x7b\x02\x43\x37\xa3\xda\xaa\x7e\x5c\xbd\x7a\x95\x1f\x7d\xf4\xd1\xb0\xcd\x44\x0e\x08\xd9\x9d\x5c\xc0\x27\xd7\x0a\x8f\xe5\x7c\x2a\x28\x00\xdb\x6e\x66\x4a\x28\x03\xc9\xd6\xd3\x48\x6d\xa2\x44\x44\x86\x95\x92\x33\xba\x9b\x39\xbe\x30\xd4\xf8\x49\x2d\x27\x37\x89\xc8\x2f\x95\x4a\x32\x08\x02\x44\xeb\x52\x4c\xc4\xd0\xdb\x6c\xb6\xdf\x26\x21\xd2\xc4\xa7\x39\xb8\x2a\x8f\xcd\xa5\xdb\x89\x1b\xc3\x12\x66\x12\x6d\x27\xc9\xa6\xa7\xb7\x11\xaf\x39\x3e\x7a\x9c\x2d\xcc\xf6\x07\xad\x0c\x9d\xa3\xdb\xfe\x6c\xc4\x6d\xce\xcd\xa4\xc2\x70\xfa\xf4\x69\x4c\x4c\x4c\x08\x00\x59\x02\x0d\x3e\x7c\xbb\xf4\xa5\x99\x8d\xfc\xe7\xd4\xfe\xb9\xd0\x05\xaf\x14\xe8\xf6\x83\xcd\xd4\x11\x46\x1c\x7d\xbb\x92\x06\x5b\x0e\xdf\xb9\x39\xd8\xfc\x00\x84\x46\xb4\x4c\x84\xa3\x89\xbc\x8f\x0c\x83\xae\x6f\x9a\x8f\x2d\x4e\x00\x40\x36\x9b\x15\xd5\x6a\x15\x44\xe4\x33\x73\x0d\xc0\xd6\x56\xc1\xbf\xfe\xe1\x58\xed\x6f\xd5\x1d\x03\xea\x78\x4f\x00\xea\x72\x40\xa8\x99\x69\xfd\xb4\x35\x25\x26\x63\x19\xc9\x61\x7c\xc1\x73\x66\x3e\x71\x7d\xf0\xbf\xcc\xb5\x68\x8c\x99\xf3\x00\xc4\xe3\x8f\x3f\x8e\xe8\xc4\x69\xa9\xfd\x75\x6a\xaf\x3e\x51\x63\x4e\xda\xe8\xe9\x75\x8e\x2d\x52\xd2\x03\xed\x9d\xd7\xe9\xdd\xd6\x1e\x3d\x8d\xd9\x36\xb3\x1e\x33\x8d\xad\xad\xe6\xf7\x7e\xd3\xd8\xbe\x6d\xe1\x36\xd8\xd2\xda\x6c\x85\xe1\xf8\xf1\xe3\x2a\x6f\x56\x30\xca\x47\x36\xf3\x1f\x87\xba\x80\x13\x80\x3a\xd5\x31\x79\x38\xd9\x79\xac\x18\x6b\x84\xce\xc4\xe1\x25\xf2\x99\x80\x86\x11\x9d\xf4\x77\xf4\xe8\xd1\x7b\x06\x43\xa7\x4e\x4c\x7d\x3c\xcf\x53\x97\x62\x47\x97\x88\xa0\xc2\xe0\x95\x8b\x07\x77\x5f\xdd\xcd\xca\x8d\x44\x42\x24\x87\x0f\xe8\x12\x40\x2d\x09\x0f\x41\x8f\xa0\x06\xd4\xad\x38\xd1\x0e\x3c\xc6\xe1\xad\xdc\x67\xce\x2d\x96\xbf\x44\xa0\x41\x00\x79\x22\x72\x9f\x79\xe6\x99\x5e\x9b\xd9\x0d\x26\x1b\x72\x9a\xf9\x74\x75\x29\x0d\xa1\x6d\x79\x7a\x7d\xd2\xca\xe8\x94\xce\x7c\xb7\x11\x56\x1a\xa2\xda\xc2\x3b\x11\x62\xa7\x77\xfd\xe9\x88\x47\xe1\xb9\xc8\x10\xcc\x9c\xcd\x04\x54\xee\x6f\x3a\x53\xba\x8d\x10\x6b\x0e\xea\xa1\xf6\xfc\x21\x8f\x55\x37\xa4\x02\xfd\x4d\xe7\x70\x36\x10\xc3\x88\x8e\xa6\xd4\x0e\xcc\xfe\xc8\x30\x08\x0b\x00\xe6\xc0\x5a\x39\xef\x87\x1f\x7e\x28\x2b\x95\x8a\x44\xb2\x69\x63\x63\xbb\xe0\xcf\x5f\x1a\xdf\xfd\xb1\xda\x37\x6b\xee\x9c\x33\xe5\xb4\x19\x47\xc6\xbb\x00\x65\x1f\xbe\x55\xfa\x4f\xa7\x37\xf3\x8f\x20\x3a\xac\xb6\x54\x2a\x89\xcf\x7e\xf6\xb3\x69\x1c\x4f\x0f\x33\x11\x58\x8f\x37\x3d\x31\x66\x1e\x89\x74\xe4\xd4\xd3\x76\x2b\xa7\x5b\x7e\xfd\xd7\x2c\xa3\x97\xbc\xbd\x96\xdd\x8b\x84\xe8\x45\x1a\xa5\xd5\xd9\x66\x67\x9a\xf9\x14\xc2\x12\x91\x2b\x98\xf2\x82\x91\x57\x4a\x41\xc2\x19\x13\xdd\x28\x3e\x31\x1d\x89\x56\x11\xab\xd3\x04\x08\xa6\x6c\x74\x33\x51\xda\xf9\xc0\x77\x0d\x83\xad\xb0\x5e\xb8\x91\x00\x20\xbe\xf1\x8d\x6f\xa8\xb0\x06\x11\x55\x24\x78\xe5\xdd\x43\xd5\x57\xb7\xf3\xfe\x92\x02\xd0\xbc\x87\x8d\x81\x18\xf8\x70\x15\x6c\xac\x48\x69\x61\x80\x5a\xe6\x91\x0d\x68\xec\x93\x57\x87\xfe\xe9\x50\xdd\x3d\x81\xe8\x48\xf3\xc3\x87\x0f\x8b\xe7\x9f\x7f\x3e\x3a\x91\xbd\xad\x7d\xc2\xf8\xb5\x3d\xbd\x72\xd0\x4e\xf9\xd3\xca\x01\xf6\x22\x88\x2d\x7f\xa7\xf6\xe9\xe5\xa8\x5f\x61\x7c\xf7\x2a\x59\xcc\xf4\x69\x2a\xa6\x8d\x50\x3a\x85\xe9\xef\xbd\x30\x0f\x30\xb3\x60\x66\xb4\x1c\x46\xd3\xe5\x9a\xe2\x7e\x6c\x22\x48\xf4\xcd\x91\xb7\x25\xa4\x19\x1d\x43\x80\x7a\x46\x56\x5b\x0e\xb7\xd5\x7b\xea\xd4\xa9\x7b\x02\x43\xa7\xc1\x13\xd8\xdb\xf9\x7a\x01\x12\x00\xaa\xd5\x6a\x9b\x94\xd8\xcd\x06\xf3\xef\x1c\xae\x7e\x4f\x0a\x48\x65\x08\xc5\xb0\xc2\x22\x19\x39\xbe\x5d\x28\x0a\x53\xf7\xd5\x71\xfc\x3d\xd0\x70\xce\x7c\xf2\xea\xd0\x1f\xe4\x5b\x62\x02\xe1\xfe\x5d\xf7\xc4\x89\x13\x98\x9e\x9e\xb6\x34\x3b\x6e\x9f\xed\xdd\xf6\x74\xe3\xa2\x66\xff\x74\xe2\xec\x69\xb6\xc7\x7e\xda\xa7\xe7\xb7\x31\xac\x4e\xe5\x99\xc4\xa6\x4b\x3b\x1b\x5c\x36\xe2\x4c\xb3\xb7\xd2\x74\x70\x33\x4f\x5b\x7b\x26\x27\x27\x05\x00\x10\x91\x24\x22\x04\x82\xbd\x8d\x62\x78\x46\x30\x47\x36\x81\xb2\x98\xd5\x88\x33\x22\xba\xe0\xf0\xb8\x4f\x95\x46\xa5\x58\xea\xf7\x66\x1b\xae\x6c\xbb\x44\xde\xf0\x40\xde\x35\x0c\x9d\xa8\x3c\x8d\x03\xb6\x3d\x6a\xd3\x76\x74\xb4\xfa\x16\x08\x6b\x97\xc7\x6a\x3f\x59\x29\x79\xd7\xf7\xde\xd2\x19\x3e\xc9\xdc\x03\xed\xd1\x9d\x62\xf7\x4b\xdb\x99\x3b\x84\xc3\x5b\xb9\x5f\xff\xc4\xf5\x81\xaf\x38\x12\xc3\x44\x94\x67\x66\xf7\x93\x9f\xfc\xa4\x59\x74\x27\x35\x4f\x8f\x57\x8f\x8d\x7b\xa6\xe9\xd4\x69\xe9\xba\xf5\xa1\xed\xbd\x13\x03\x32\xdf\xd3\x08\xc6\x46\xc8\x36\x06\x66\x53\x81\xbb\x71\xce\x4e\x8f\xad\x1c\x61\xfc\xc5\x61\x6b\x6b\x6b\xfa\x2a\x55\x9f\x01\xef\xda\x68\xfd\x82\x24\xf8\x89\xab\x95\xdb\x54\xe6\x3d\xc6\x34\x25\x81\x01\xb1\x3f\x7b\xa0\xf6\x73\x68\x37\xaf\x6a\x73\x62\x1f\x19\x86\x34\xd1\x97\xd6\xd9\xe6\x23\x2c\xb6\xc4\x5a\xc3\x95\x0b\xaf\x1f\xdd\xfe\x56\xcb\x91\x1e\x60\xf7\x87\xee\xf1\x0b\x72\xd2\x19\x7b\xfd\xa8\x0c\x01\x72\x1f\x58\xea\xfb\xfd\x27\x6e\x0c\xfc\x96\x88\x88\xc2\x75\x5d\xf7\x2b\x5f\xf9\x8a\x8d\x7b\x9b\xb0\x98\x69\xcc\x74\x69\xba\x75\x5a\x3e\xb3\x2e\xf5\xdd\x09\x59\x91\x92\xae\x17\x8e\x8b\x94\x34\xe6\xaf\x4d\xaa\x74\x52\x11\x3b\x95\xdb\x29\xbd\xd9\x46\x5b\x3d\x12\x80\xf4\x3c\x0f\xbb\xbb\xbb\xf1\x71\xa8\x0c\xae\xce\x0d\xd7\xdf\x59\xee\xf7\xae\x24\xe3\x9b\x5c\x82\x02\xa0\xcd\x9e\xd0\x7f\x19\x8c\x95\x92\x77\xe5\xe6\x60\xf3\x03\x84\x7b\xa6\x3d\x00\x72\x79\x79\xf9\x9e\xc1\x60\x5e\xba\xd8\x69\x1e\xc2\xf4\x5f\xc7\xe9\xb6\xb7\xb7\xe9\xe4\xc9\x93\x52\xad\xfa\x03\xc1\xa9\xe4\x83\x56\xb9\xe1\x4e\x1c\xa8\x66\xa6\x93\xeb\xa4\x90\xb8\x5b\xb5\x85\x4f\xc6\x21\x6c\xf1\x6e\x3a\x52\x35\x68\xf3\x13\xe3\x3b\x99\xb3\xcd\x0c\xdf\x58\xe9\xf7\x6e\x32\xd8\x27\x22\x79\xe6\xcc\x19\xde\xda\xda\xa2\xad\xad\x2d\x1d\x68\xb3\xed\x7a\x9b\xd3\xbe\xd3\xfa\x21\x2d\x9f\xc0\xde\xbe\x42\x87\x5f\x5b\x3a\xdb\x84\x92\x59\xa6\xe9\xdf\x17\x5a\x98\x48\xc9\xa3\xc3\xa3\xff\x4a\x23\xce\xac\x43\x0f\x37\xeb\xb5\xb5\x47\x58\xd2\xb4\xb5\x27\x97\xcb\xe1\xd0\xa1\x43\xa0\xf0\x71\x03\x07\xb9\x4a\xde\x6f\xcd\x6c\xe4\xcf\xb8\x92\x72\xea\xb6\xda\x36\x65\x81\x12\x9c\x51\xf6\x44\x3d\x23\x2b\xaf\xde\xb7\xf9\x7f\x6d\x17\xfc\x0f\x40\x58\x46\xb8\x8f\xba\x75\xf1\xe2\x45\x5e\x5e\x5e\xbe\x27\x30\xa8\xa5\x1b\x3a\x20\xfa\x9f\x84\xbd\x53\xdb\x0a\xab\x54\x2a\x38\x78\xf0\x20\xa2\xdb\x2e\x11\x11\x85\x58\xeb\x6b\xd5\x8e\xad\x17\x1f\x2e\xf8\xd4\x07\x22\xed\x42\x8b\x04\xe8\xb6\xe6\xa9\x82\x13\x4a\x88\x3b\x4a\x25\x71\x98\x0a\x87\xb6\x73\x4f\xee\x66\xe5\xec\x5a\xa9\x75\x0b\xe1\x4c\x36\xcf\xcc\xcc\xc8\x77\xde\x79\xc7\x24\x6e\xb3\xcd\xb6\x3f\xb3\x03\xcd\x7c\x26\x22\xea\x9d\x68\x4a\x07\x13\x51\xcd\xfe\x32\xd3\xe9\x5a\x82\x4e\xbc\x36\xc2\x14\xc6\xb7\xf9\x6e\xe6\x81\x91\x06\x46\x1c\x19\xe9\x4d\x44\x49\x65\x80\x06\x5c\x66\xb9\x7b\xda\xb3\xbc\xbc\xcc\x8f\x3d\xf6\x18\xb4\xf4\xa2\x92\x0f\xbc\xed\x82\xbf\x7b\x64\x33\x7f\xbf\xcb\x94\x8d\xef\x26\x24\xc5\x03\x75\x0e\xca\xa8\x65\x64\xe5\xfb\x27\x37\xff\xf5\x8d\xe1\xc6\x8f\x19\xbc\x18\x9d\x72\xd8\xf0\x7d\xdf\xd7\xf6\x4e\x7f\x64\x18\x6c\x8b\xfb\xcc\x82\xcc\x8e\xb3\x72\xd8\x2b\x57\xae\x70\x74\xec\xa5\x32\x74\x84\xe7\x32\x37\x5d\x49\x33\x1b\x85\x8f\x09\x90\x20\x36\x58\x92\x3a\xee\x50\x99\xd4\xb1\x54\x08\x3b\x22\xbe\x43\x4f\x6b\x08\x88\x21\x98\x8a\x47\xb6\xf2\x4f\xee\xe4\x83\xab\x1b\x7d\xad\x25\x10\x5a\x44\xc4\x67\xcf\x9e\xe5\xcd\xcd\x4d\x6c\x6d\x6d\xe9\x6d\x56\x48\x48\x29\xbf\x30\xd2\xa9\xaa\xf4\x78\xa0\x1d\x99\x4d\xe2\xd1\x8d\x53\xb3\x6e\x18\xf5\xe8\x7d\xa8\xca\x31\xb9\xb6\x49\x00\x66\xdd\xb0\xbc\xeb\x70\xa4\x11\xb6\x49\x54\x7a\x5a\xbd\xbd\x26\x57\xd5\xfb\xc0\x06\x83\xad\x5d\x6d\xe1\x23\x23\x23\x34\x38\x38\x98\xe4\x25\x60\xa3\xe8\x6f\xdf\x1a\x68\x2e\x95\x1b\xee\x48\x9f\x27\xfa\x05\xe0\xc4\xfb\x66\xd4\xf5\xc3\x82\xbd\xc5\xc1\xe6\xd5\xef\x9d\xda\xf8\x7f\x6e\x0e\xc6\xa7\xf1\xad\x20\x3c\x73\xc9\x9b\x9b\x9b\xe3\xb9\xb9\xb9\x7b\x06\x83\x93\x92\x50\x7d\x9b\x83\x65\x76\x74\x5b\x45\xf9\x7c\x1e\xe3\xe3\xe3\x40\x68\xe8\x10\x08\x62\xb3\xd0\x6a\x0c\x36\xdc\x83\xa3\xbb\x99\xc3\xa4\x0e\xbb\xd5\x0e\xbd\x55\xc7\x60\x2a\xfd\x28\x3e\xc8\x16\x9a\x2a\xa5\x1b\x57\x51\x62\x97\xa9\x74\x78\x2b\xf7\x44\x2d\x1b\x5c\x5b\x2d\xb5\x6e\x53\x78\xe7\x35\x4f\x4d\x4d\xc9\x0b\x17\x2e\x98\xba\xbc\x49\x1c\x2a\x4c\x87\xdb\x44\xae\x34\xd5\xc2\x56\x8e\x59\x4f\xa7\x72\xda\xfa\x0c\xed\x44\xa7\x23\xa9\x19\xae\xff\x9a\xef\x3a\x97\x33\x11\xc3\x64\x66\x66\xdd\xb6\x72\xd2\x9c\x29\x69\x08\x66\xb6\x71\x0f\x0c\xd7\xae\x5d\xe3\x87\x1f\x7e\x18\x42\x08\x46\x78\x5a\x46\x00\x82\x5f\xcd\x05\x95\xd9\x03\xf5\x2b\x77\xca\xcd\x3b\xb5\xac\xac\xf9\x82\xbd\x5a\x56\x56\x37\xfa\x5a\xcb\xb3\x07\xea\x1f\xfc\x6c\xa6\xf2\xbd\x77\x0e\x57\xff\x7a\x27\x1f\x7c\x80\xf0\xd0\xe2\x65\x44\xe7\xc0\x56\xab\xd5\xe0\xdb\xdf\xfe\xf6\x3d\x85\xa1\xd3\x8e\x39\x5b\x45\x36\x37\x5d\x0c\xfc\xe2\xe2\x22\xcf\xcc\xcc\xa0\x58\x2c\x02\x40\xc0\xcc\xc4\x82\x68\xb9\xdf\xdb\x3c\xb6\x51\x38\x53\xf0\x9d\x92\xad\x65\x89\xee\x18\xe2\x9c\x76\xca\x53\x92\xb0\x2d\x20\x54\xbd\x32\x52\x94\xa7\x36\xf3\xcf\x35\x32\x72\x6e\xb5\xd4\xba\x03\x0a\xd7\xca\x9f\x3b\x77\x8e\xdf\x7e\xfb\x6d\x8e\x0e\x69\xb6\x21\x9c\x89\x58\x69\xea\x88\x8d\xa0\x6c\x5c\x31\x4d\x34\x77\xaa\xc7\xc6\xf5\x6d\xf5\x9b\xef\x69\xdc\xde\x46\xe0\xa6\x14\x30\xe3\xcd\x27\xad\xee\xb4\xb6\xd8\xe0\x4c\x2d\x67\x7d\x7d\x9d\xa6\xa7\xa7\xa5\xe3\x38\x12\xea\x30\x68\x42\x43\x0a\x54\xb6\x0b\xc1\xd2\xc2\x70\xf3\xc3\x5f\x4c\xd4\xde\xfa\xe0\xe0\xee\x1b\x1f\x8e\xd7\xfe\x76\x61\xb0\xf1\xf6\x4e\x21\xb8\x24\x05\xe6\x11\x5e\x23\xac\x88\xa1\x21\xa5\xf4\xb5\x6b\x01\xee\x19\x0c\xdd\x16\xf7\xd9\xe2\x4c\x51\xd4\xd6\x21\xad\x56\x8b\x66\x66\x66\x64\x24\x0d\x24\x00\xe1\x39\xcc\xb5\x6c\x20\x67\x36\xf3\x0f\x39\x4c\xae\x7e\x16\x2c\x58\x33\xb4\x81\x68\x4d\x0b\xb7\x89\x4d\x8e\x6f\x9c\x51\x0a\x66\x54\x23\x11\x1c\x49\x85\xc3\xdb\xb9\xa7\x01\xac\x2d\x95\xbd\x1b\x10\xd4\x02\x80\xc7\x1e\x7b\x4c\xf6\xf7\xf7\x63\x61\x61\x81\xb8\xfd\x0e\xa5\xb4\x0e\xd1\x1f\x9d\xc3\xa5\x21\x70\x5a\x1e\x5b\xdf\xe9\x75\xa7\x19\xee\xe6\x60\x91\x91\x47\xf7\x20\xd9\x88\x52\x6f\xa3\x59\xa7\x2e\xd9\x01\x7b\xdb\x4d\x62\x33\xdb\x06\xb4\x4b\x49\x33\x6f\x57\x18\xb6\xb7\xb7\xe5\xc6\xc6\x06\x1d\x3d\x7a\x54\x46\xf3\x12\x2d\x75\x13\x6a\x74\x3a\xb7\x3a\x1d\x5d\x9d\xf4\x77\x07\xc9\xf5\x00\xeb\xd1\xed\x49\x4d\x29\xa5\xff\xfa\xeb\xaf\x63\x75\x75\xd5\xd6\x8e\x8f\x04\x83\x6d\xc7\x9c\x69\x70\xc2\x48\x93\x66\x3c\x02\x08\x8f\x01\x19\x1e\x1e\xa6\xa1\xa1\x21\x8e\x4e\x6d\x06\x08\xd8\x2c\xf8\xf5\x4c\x20\xfa\x27\x2b\xd9\x13\xea\x74\x3f\x40\x3f\x24\x59\xa3\x81\x48\x3f\x4a\xd6\x7b\x85\x32\x83\x15\x38\x00\xe2\x13\x02\x09\x70\x18\xc5\x43\xdb\xf9\x67\x8a\x2d\x21\x6f\x0d\x34\xaf\x48\x27\xf4\x4f\x8f\x8c\x8c\xf0\xa1\x43\x87\xf8\xf2\xe5\xcb\x36\xe4\xb1\x71\x4d\xf5\xae\x08\xc1\xa6\x63\xdb\x54\x20\x5d\x3d\xea\xc5\x10\xb7\x71\x6d\x68\xdf\xba\x3c\x34\x55\x20\x18\xdf\xdd\x90\xdd\x2c\xd7\xe6\x28\xd1\x0d\x7c\x06\xc0\x2f\xbe\xf8\x22\x9d\x3b\x77\x8e\x9e\x7e\xfa\x69\x1a\x1b\x1b\x53\x57\xf9\xda\x70\xc2\x66\x57\xa5\xc2\x10\x6d\x09\x46\xc4\x34\x03\x00\x2d\x22\xaa\x6b\xa7\xef\x6d\x01\xd8\x24\x22\x75\x6d\x80\x3a\xed\xaf\x41\x44\x5e\xb5\x5a\x0d\x5e\x7a\xe9\x25\xb9\xba\xba\x6a\x73\x88\xd8\x54\x47\xd5\x56\xa0\xdd\xc6\xb3\xc2\xe0\x68\x85\x49\xa3\x20\x93\x9b\x99\x46\xa8\x8d\xbb\x32\x00\x5c\xbf\x7e\x3d\x56\x9d\x98\x39\x88\x88\x42\x2c\xf7\x7b\x1b\x63\xd5\xec\xf4\x60\xc3\x1d\x53\x6a\x51\xb2\xe8\x37\x29\xa1\x4d\x62\x68\x71\xe6\x77\x12\x46\x20\x50\x76\x6c\x27\xfb\xe4\x68\x2d\x3b\xb8\xdc\xdf\xbc\xd2\xcc\x70\x1d\x80\x2c\x95\x4a\xf2\xd4\xa9\x53\x68\x36\x9b\x58\x5f\x5f\xb7\x49\x8a\x6e\xef\x36\xae\x9e\x96\xce\x0c\x4f\x2b\xdb\x56\x96\x4e\x80\x12\xf6\xba\xdb\xe4\x23\x92\x01\xd6\xf3\xa4\xa9\x59\x3a\xb2\x58\x9d\x0e\xa5\x52\x09\x4f\x3c\xf1\x04\xbd\xf0\xc2\x0b\x34\x34\x34\x24\xf2\xf9\xbc\xa3\xae\x3c\x7b\xf4\xd1\x47\xc5\xb1\x63\xc7\x78\x61\x61\x81\x3c\xcf\xd3\xdb\x62\x73\x4e\x74\x84\x61\x7b\x7b\x9b\xde\x79\xe7\x1d\x59\x28\x14\x30\x30\x30\x10\x58\xee\xd3\xa8\x47\xd7\x04\x34\xa2\xb0\x56\xab\xd5\xf2\xaf\x5d\xbb\xc6\xe7\xcf\x9f\x47\xb3\xd9\x4c\x85\x21\x6a\x87\x8d\x58\xcc\x36\x5a\x61\x70\xb4\xc2\xd2\x3a\x90\x8c\x8c\x9d\x54\x85\x78\x30\xd4\xdc\x04\x00\x44\x9c\x00\x81\x00\x96\xfb\xbd\xad\x99\x8d\xc2\x43\x39\x9f\xfa\xd4\x22\xae\xe4\xbc\x57\x63\x07\x9d\x3e\x7c\xda\xa7\x1e\xa6\xa7\x16\x0c\x31\x54\x77\xcf\x1c\xd9\x2c\x3c\xb8\xd6\xe7\x5d\xda\xc9\x05\x3b\x20\xc8\x6c\x36\xcb\x53\x53\x53\x72\x64\x64\x84\xae\x5f\xbf\x6e\x8a\x55\x1d\x2e\x53\x5a\xa6\x71\x62\x5b\x9a\x5e\xa4\x6c\xa7\xba\x15\x64\x9d\x08\x4a\x6f\x87\x8e\x08\xdd\x88\xdb\x44\x0a\xb3\x4e\x8c\x8f\x8f\xd3\xe7\x3f\xff\x79\x1c\x3c\x78\x50\x10\x91\x03\x46\xae\xd0\x12\xfd\x1f\x5b\x2a\xdd\xb7\x52\xf2\xaa\x4c\x90\xc5\x62\x91\x8f\x1c\x39\xc2\xc6\x1e\x77\x9b\x8a\xd6\x13\x0c\x37\x6f\xde\xe4\x6b\xd7\xae\x51\x10\x04\x5c\x28\x14\x64\x26\x93\x09\x98\x39\x10\x42\xf8\x52\xca\x80\x99\x83\xe5\xe5\x65\xb9\xb0\xb0\xc0\xdf\xfe\xf6\xb7\xe5\xfc\xfc\x3c\x35\x9b\xcd\x54\x18\xb4\xba\xcd\x70\x73\x9c\xcc\xf9\x2a\xa9\x7f\xa8\x47\x17\xe7\x69\xc6\x33\xd0\x4e\x3c\xb6\x74\x71\xda\x27\x9f\x7c\x12\x67\xce\x9c\x11\xd1\xa9\xe1\x65\x00\x93\x00\x8e\x4d\x6d\xe4\x3f\xf9\xd9\x0f\x87\xff\xa3\x42\xcb\x29\xb5\xdf\x2d\x11\xb5\x5c\x11\x89\x01\xb5\x29\x83\x93\x0b\xe3\x75\xaa\x0a\xe3\x9a\xae\x9c\x7f\x63\xaa\xf2\x3f\xbe\x37\xb9\xfb\x5d\xdf\xe1\xad\x48\x57\xf5\x5b\xad\x96\xfc\xda\xd7\xbe\x66\xb6\xdb\x06\x43\x2f\x7d\x62\xa6\xb3\x95\x65\xcb\xdb\xa9\x5c\x5d\x35\x32\x67\x9e\x61\xc9\x67\xc6\x99\xe5\xdb\xe2\xe3\xb6\x15\x0a\x05\x9c\x3d\x7b\x16\xa7\x4f\x9f\x06\xd4\xbd\xd3\x8c\xfc\x58\x35\x33\xf5\xfc\xd5\xe1\x3f\x18\xab\x66\x3e\xf3\xe3\xa3\xdb\xff\xe8\xed\xc3\x3b\x3f\x40\x78\xdb\x93\x57\xa9\x54\xe4\x9f\xfe\xe9\x9f\xea\x17\xbb\xdb\x70\xe3\x23\xc1\x90\xc9\x64\x84\x76\x5b\x52\x47\x18\x2c\x71\x77\x9d\x47\xdf\x53\x4d\x29\xbf\xea\x49\x53\x19\x4c\xe9\x10\x77\xce\x9d\x3b\x77\x68\x74\x74\x94\x07\x06\x06\x98\x88\x18\x80\x64\x66\xde\x29\x04\x8d\x7a\x46\xfa\xd3\x9b\xf9\x07\x05\x93\xd0\x4f\x04\x57\xa5\x86\x5b\x22\xc2\x66\xc4\xf3\x77\x8a\x78\xd4\x06\x23\x02\x62\x6b\x24\xb6\x4b\x42\xb7\xad\x2b\xc5\xe0\xe1\xad\xfc\x27\x47\x77\x33\xc3\xcb\xfd\xde\xd5\xa6\xcb\x1e\x08\x2c\x84\xe0\xc7\x1e\x7b\x8c\xcb\xe5\x32\xb4\xbd\xb8\x36\x8e\xae\xc3\x66\xc2\xaa\x3a\xd0\x54\x19\x60\xc4\xdb\x44\xbb\xae\xb3\xa6\xf5\xab\x4d\x3d\xb5\x71\x3e\x9b\x2a\x95\x16\x6f\x72\x69\x9c\x3c\x79\x92\x5e\x7c\xf1\x45\x44\x0b\xf0\x32\x00\x72\x8e\xc4\xd0\x03\x2b\xc5\x67\x3f\x75\x65\xf8\x7f\x1e\xae\xbb\x9f\x12\xa0\xbe\xd1\x6a\xe6\x63\x77\x06\x9a\x3f\xaf\xe6\x83\x2d\x66\x0e\xf2\xf9\xbc\xcc\xe5\x72\x7c\xf3\xe6\xcd\x4e\x2a\xe0\x47\x82\x41\x4a\xd9\x13\x0c\x29\x71\x77\x9d\xc7\xc1\xde\x41\x37\x7f\xbb\x3d\xb6\x7c\x11\xfe\x32\xcf\xce\xce\xf2\x83\x0f\x3e\x88\x4c\x26\xc3\x00\x02\x22\x92\x20\x60\xad\xd4\xaa\x64\x03\xea\x3f\xb8\x93\x9d\x81\x42\x6d\xcd\x40\x08\xdf\x43\x4a\xd0\x4f\xea\xa0\xe8\x48\x8f\xd8\x39\x1b\xa5\x23\x4e\x36\xa7\xab\x66\x10\x53\x76\xb8\xee\x3e\x7a\x74\xbd\xf8\x58\xd3\x95\x4b\x1b\xc5\xd6\x0a\x13\x98\x88\x78\x64\x64\x84\xcf\x9e\x3d\x8b\xe8\xa4\x71\x73\x00\xd5\x93\x46\x20\xa6\xce\x9a\xd6\xe9\x66\x9c\xd9\xcf\x66\xf9\x69\x1e\x2c\x58\xd2\xf4\x9a\xc7\x9a\xfe\x8b\x5f\xfc\xa2\x78\xe8\xa1\x87\xe0\xba\xae\x0b\x20\x07\xa0\xd8\xdf\x70\x0e\x3d\x37\x3b\xf4\x5f\x9c\xbb\x59\xfe\x27\x85\xc0\x99\x56\xbd\x99\x91\x34\x3a\xba\x9b\x39\x38\x3b\x5a\x7f\x3d\x70\x50\x03\x10\x8c\x8d\x8d\x05\xab\xab\xab\x14\xdd\x79\x61\xb3\x5b\xfe\xce\x61\xe8\x21\x9d\x2d\x3c\xad\xac\x36\xa3\x3a\x4d\xbf\x35\x0b\x49\x33\xd8\x4c\xae\x09\x3d\xec\xbd\xf7\xde\x93\x8f\x3e\xfa\x68\x78\x17\x59\x68\x64\x07\x0c\xe6\xa5\x01\x6f\xa3\xcf\x73\x86\x0e\x54\xb3\x47\x84\x76\x52\x47\xdb\x11\x36\x48\x8c\x6c\x28\xa2\x30\xd4\xac\x30\x4d\x42\x39\xea\xba\x56\x95\x2f\xef\x8b\xc9\xa3\x1b\x85\xcf\x8c\xed\x64\x47\x37\x8b\xfe\x8d\x5a\x56\x36\x19\x8c\x68\xce\x82\x1e\x78\xe0\x01\x04\x41\xa0\xdc\x78\xa6\xa4\x33\x09\x42\x6f\x8d\x69\xc8\x76\x32\x68\x6d\xe9\x4c\x3b\xc4\x54\xb5\x6c\x83\x68\x93\xdc\xb6\x3c\x7a\x9b\xe3\xb0\x2f\x7c\xe1\x0b\xf4\x89\x4f\x7c\x82\x8a\xc5\xa2\x20\xa2\x1c\x80\x7c\xd6\xa7\xe1\x07\x97\xfa\x7e\xe5\x85\xcb\xc3\xff\x62\xb2\x92\xfb\x9c\xc3\xe1\xe9\x29\x60\x75\x6e\x3b\xa1\xcf\x73\x8e\xe6\x7c\xe1\x2d\x0c\x35\x2e\x32\xc1\x03\x10\x4c\x4f\x4f\xcb\x0b\x17\x2e\xe8\x88\xfc\xff\x09\x0c\x96\x6f\x5b\xdd\x69\xf9\x4d\xbc\x6e\x9b\xa8\x75\x8c\x44\x7a\x26\x95\xc8\xcc\x64\x52\xb3\x19\xa6\x73\xda\x58\x4f\x64\x66\x4c\x4e\x4e\x4a\x22\x52\xee\xd8\x40\x0a\xc8\x5b\x03\xcd\xb5\xe1\x5a\xe6\xe0\x50\x74\xdd\x2a\xb0\xb7\x11\x3a\x54\xa4\x06\x89\x10\xab\x50\x61\xe3\x23\x62\xd0\x13\x47\xcd\x21\x10\x04\x53\x76\xa8\xe1\x3e\x7a\x7c\xbd\xf8\x89\x7c\x4b\xb4\x36\xfa\x5a\xb7\x5b\x0e\x4b\x10\xa4\xeb\xba\x98\x9a\x9a\xc2\xa9\x53\xa7\xe0\xba\x2e\x1a\x8d\x06\x35\x1a\x0d\x1b\xb2\x4b\x24\x30\xa6\xf5\x8f\xd9\xd1\x36\x63\xd6\x26\x25\xcc\x01\xd6\x89\x49\xff\x36\xfb\x7c\x4f\x17\xe9\xf1\x44\x44\x53\x53\x53\xf4\xec\xb3\xcf\xd2\x53\x4f\x3d\x45\xe5\x72\x59\x10\x51\x86\x88\xf2\x42\xa2\x7c\x68\x3b\xf7\xc0\x27\xaf\x0e\xfd\x37\x67\xee\x94\xfe\xab\x7c\xcb\x99\xa2\xa8\x13\xf5\x9b\x43\x43\x26\x45\x34\x52\x73\x1f\xdc\xc9\x07\x57\x56\xfb\x5a\x0b\x08\xd7\x90\x05\x93\x93\x93\x98\x9b\x9b\xa3\x48\xc5\xf9\x3b\x81\xc1\x12\x66\x73\x02\xa5\xd9\x76\xa6\x24\xd6\xd5\xe3\x3d\xc4\xab\x5f\xa9\xa5\x37\x2e\x0d\xe1\x53\x0d\xe8\x94\xf8\xb8\x8c\xa5\xa5\x25\xce\xe5\x72\x34\x36\x36\xc6\x00\xfc\x68\xd2\x2e\x08\x1c\x04\x37\x07\x9b\x4b\x63\xd5\xec\x91\x72\xc3\x19\x8d\x75\x24\xd5\xf4\x18\xfd\xa8\x0d\x2a\x50\x22\x15\x42\x81\x90\xe4\x8b\xce\xf1\x49\x44\x0d\x54\x38\x21\x1b\xd0\xe8\x64\x25\xf7\xe9\xe3\x6b\x85\x47\x41\xd8\xd9\x2a\xb4\x36\x02\x27\x44\xf4\x6c\x36\x8b\x43\x87\x0e\xe1\xa1\x87\x1e\xe2\xbe\xbe\x3e\xf2\x7d\x9f\x76\x76\x76\x80\xbd\x83\xa2\x0f\x30\x19\x7f\xaa\xef\xcc\xc1\xd4\x6d\x07\xb3\xac\x34\x69\x6c\xba\x12\x75\x37\xab\xde\xbf\xfa\x38\x48\x44\xc6\xf2\xf4\xf4\x34\x3d\xfb\xec\xb3\x78\xf8\xe1\x87\x51\x2a\x95\x84\xe3\x38\x19\x66\xce\x13\xa8\xef\x40\x35\x73\xec\x99\xb9\xc1\xff\xe4\xa9\xf9\x81\x7f\x36\x54\x77\x9f\xa2\xf0\x44\x0c\x20\x5a\x70\x96\x08\x5c\x8a\x4f\xc4\x10\x8c\xdc\xf8\x4e\xee\xc1\x5b\x03\xcd\x37\x77\x73\xc1\x26\x00\xbf\x54\x2a\xc9\x4c\x26\xa3\xdb\x13\xf7\x0c\x06\x2d\x0f\xb4\xb4\x69\xb6\x92\xcd\xfb\x67\x22\xbe\x5e\xbe\x99\x07\x40\xfb\xd2\x8d\x34\x31\x64\xe3\x62\x7b\x0c\x68\xa3\x81\x56\x3d\x6d\x71\x71\x91\x8f\x1c\x39\x82\xbe\xbe\x3e\x8e\x5c\xb1\x01\x33\xfb\xbe\x0b\xff\xd6\x60\x73\x65\x74\x37\x3b\x39\xd0\x70\x46\xe3\xf5\x4e\x88\x0f\x2a\xd1\xd4\x27\x75\x6c\x4d\x62\x6c\xe8\x87\x17\x90\x76\xfe\x0d\x47\x50\x91\x9e\x26\x2a\x35\xef\x3b\x53\x53\x9b\xf9\x17\x8f\x6d\x14\x1e\x91\x40\xb5\x92\x0f\x2a\xbe\xc3\x81\xea\xa0\xd1\xd1\x51\x3e\x79\xf2\x24\x4f\x4f\x4f\x23\x9f\xcf\xd3\xd2\xd2\x92\xee\xde\x34\x19\x86\x29\x19\x61\x89\x37\xa5\x8c\xad\xff\xcc\x7c\x3a\x42\xd9\x0c\x54\x18\xf9\x18\x00\x9e\x7c\xf2\x49\x7a\xf6\xd9\x67\x71\xf2\xe4\x49\xd1\xd7\xd7\xe7\x20\xf4\x1e\xe5\x89\xd1\x3f\xba\x9b\x3d\xfa\xe4\x8d\x81\xff\xf0\x99\xb9\x81\xff\x7e\x62\x27\xfb\x59\x47\x8a\x7e\xa2\x70\x57\x5a\x72\xb1\x0d\x45\xf6\x58\x72\x5c\x90\xaa\x2d\x23\x69\x78\x74\x37\x73\xf0\xda\x68\xfd\x75\xdf\xe1\x3a\x11\xf9\xa3\xa3\xa3\x41\x64\x8b\xdd\x33\x18\x8c\x3e\x35\xc3\xd5\x63\x63\xe2\xb6\xb1\xd1\xcb\x37\x25\x4d\x5b\x1e\x73\x2d\x93\x5e\x89\x4d\x15\xb0\x01\x6c\x6b\xa0\x4d\x47\x14\x00\xf8\xf2\xe5\xcb\x3c\x35\x35\x85\x62\xb1\x28\x95\x94\x20\x22\xbf\x19\xde\x41\x7c\x67\x74\x37\x73\x68\xa0\xe1\x8e\x42\x0d\x44\xf4\xc4\x24\xac\xf3\xe7\xf6\xd7\xe4\x3b\x31\x27\x92\x78\x4b\x3e\x62\xca\xf4\xb5\x9c\x63\x33\x9b\xf9\xcf\x1e\xdd\xc8\x9f\x75\x24\xb5\x2a\x79\x7f\x5d\xed\xd7\x25\x22\x14\x8b\x45\x3a\x7c\xf8\x30\xce\x9d\x3b\x87\xc9\xc9\x49\xba\x72\xe5\x8a\xd9\x17\x0a\xee\x6e\xb3\xd4\x80\xbd\x1f\xd3\x98\x88\x9e\xbe\x23\xa3\x01\x80\x8f\x7f\xfc\xe3\xe2\xa9\xa7\x9e\xa2\xa7\x9f\x7e\x9a\xc6\xc7\xc7\x85\xeb\xba\x0e\x33\x67\x88\x28\x0f\x46\x69\x7c\x27\x7b\xfc\xa9\xf9\x81\xff\xf8\x99\xb9\x81\x7f\x3a\x59\xc9\x7d\x2e\x23\xc5\x30\xa2\x95\xfa\xaa\x43\x62\x27\x05\x12\xbb\xad\xcd\x03\x18\x11\x4e\xc9\x73\x66\xb2\x01\xd5\x23\x7b\xa2\x41\x44\xf2\x81\x07\x1e\xe0\x68\x9e\xe0\xae\x61\xb0\xbc\xa7\xcd\xea\xdb\x24\xb1\xf9\x74\x33\xdc\xad\x79\x08\xed\x88\x6f\xe3\x58\x69\x8f\xe9\x47\xee\xe4\x6b\x87\x19\xfe\xdb\xbf\xfd\xdb\x62\x60\x60\x40\x20\xbc\xff\xba\x0c\x60\x0c\x8c\xa9\xbc\x2f\xee\xff\xe4\xd5\xa1\xdf\x3e\xb9\x5a\x78\x54\x68\x18\x1c\xcf\x4d\xc4\x97\x3c\x26\x50\x51\xdb\x8b\xf1\x6e\x52\x42\x6a\x10\x03\x80\x5f\xcb\xc8\x0f\x67\x0f\xd4\xfe\xcd\xe5\x03\xb5\xef\xad\x96\x5a\x0b\x2d\x97\x6b\xcc\xec\x11\x91\x8f\xd0\x6d\x2c\x99\x59\x7a\x9e\x87\xb9\xb9\x39\xfc\xe8\x47\x3f\x92\xa3\xa3\xa3\x62\x6d\x6d\xcd\x36\x67\xb3\x07\xee\x2e\xef\xe6\x63\x33\x52\xe3\xef\x4f\x7f\xfa\xd3\x62\x7a\x7a\x5a\x49\x40\x11\xc5\xbb\xcc\xec\x12\x28\xdb\xe7\x39\x83\x47\x36\x73\x67\x1e\x5a\xea\xfb\xd2\xc4\x4e\xf6\x05\x57\xd2\xa8\x02\x9c\xf4\xd3\xc0\x10\x09\x55\x6d\x02\x48\xdf\x93\xd2\xbe\x15\x38\x4c\xe3\x0b\xae\x9c\x3f\xbe\xf9\x8f\xdf\x3f\xb8\xfb\x32\x83\x37\x88\xa8\xb1\xb6\xb6\x26\xff\xec\xcf\xfe\xcc\xa6\x52\xa7\xc2\x90\x92\xb6\x93\x6a\xde\x0b\x6e\xf6\x52\x97\x19\x2f\x00\x48\x93\xc1\x76\xcd\xb0\x8f\xc6\x98\xe5\x40\xcf\x7f\xe8\xd0\x21\xf1\xe2\x8b\x2f\x2a\xb7\x5f\x16\x8a\x28\x80\xa9\x5c\x8b\xee\x7b\x7a\x6e\xf0\x37\x1f\x5a\xea\x7b\xd2\x91\x24\x62\xa5\x56\x7b\xda\x16\x08\xaa\xb0\x48\xe4\x5b\x89\x24\x4e\xb3\x97\x56\x54\x59\x09\x3e\xb0\x6c\x39\xbc\xb2\xd6\xd7\xfa\xe9\xec\x68\xed\xcf\x6f\x0c\x35\x2f\x6c\x15\x5a\x6b\x81\x40\x0d\x14\x5e\xec\x87\x88\x38\x88\x08\x52\x4a\xb9\xbd\xbd\x0d\x20\xbc\x69\xe9\x8d\x37\xde\xb8\xdb\x7e\x82\x10\x42\x44\xa7\xab\x43\xcd\xca\x9e\x39\x73\x46\xe4\x72\x39\xcc\xcc\xcc\xc0\x75\x5d\xf4\xf7\xf7\xeb\x7d\x2a\x10\xaa\x44\x2e\x18\xd9\x9c\x4f\xc5\xf1\x6a\x76\xea\xc4\x6a\xe1\xb9\xa9\xcd\xfc\xaf\xf5\x37\xdd\xd3\x82\xa9\x64\x5a\x95\x1c\xdb\x5b\x1d\x50\xc0\xd2\x7f\x49\x9f\x01\xbb\xb9\x60\xf6\xdb\xa7\xd7\xfe\xb3\x95\x92\x77\x11\x84\x0a\x00\xef\xea\xd5\xab\xf2\xfb\xdf\xff\xbe\x9e\xa3\xdb\x44\xa6\x2d\xcc\x46\x18\x9d\xe2\x7b\x65\x36\x69\x44\x15\xa7\x23\x23\xa1\x0e\x84\xc9\xe5\x6c\xdf\xdd\x66\x26\x6d\xf9\xda\x9e\xdf\xfb\xbd\xdf\x13\x99\x4c\xc6\x8d\x2e\x74\x2c\x01\x18\x63\xe6\xc3\x0e\xd3\xb1\x73\x37\xfb\x7f\xed\xf1\x9b\xe5\xe7\xb3\x81\xc8\x02\x6a\x40\xa3\x81\xb4\xbd\x31\xc2\xc3\xce\x12\xc4\x8e\x09\x24\x8c\x67\xed\x2a\xaf\x64\x96\x9b\xa3\x11\x0e\x89\x22\xca\x93\x50\x8d\xf4\x1c\x5e\x58\xeb\x6b\xfd\xed\xfc\x48\xfd\xd5\xc5\x81\xe6\x7b\xeb\x7d\xad\xdb\x9e\xcb\x6a\x93\xbb\x1f\x5d\x33\xa6\x60\x93\x08\x89\x25\xac\x33\x24\x18\x2c\x2c\x2c\xb4\xc1\xfd\xdd\xef\x7e\x57\x02\xc0\x0b\x2f\xbc\xd0\xd6\xf7\xc5\x62\x11\x63\x63\x63\xf1\x77\x44\xac\x3a\xf2\x0b\x66\x16\x51\x58\x16\x0c\xb7\xe4\x39\xa5\xb1\x9d\xcc\xcc\xf4\x66\xfe\xc9\xa9\xcd\xfc\xa7\xfa\x1b\xee\x23\x0e\xd3\x70\xdc\x0f\x11\x12\x93\x86\xcc\xa1\xe3\x21\x61\x34\xac\xc1\x9f\xf8\xbd\xa3\x13\xf5\x54\x1e\xd5\x5b\xb1\xcb\x9b\x71\xa7\xdf\xfb\xee\x77\x4e\xaf\xfd\xe3\x7a\x56\x2e\x02\xa8\x04\x41\xe0\x7f\xf5\xab\x5f\x4d\x43\x56\xf3\xb1\x21\xb6\xfe\xd8\xf2\x77\xf2\x28\xf5\x92\x27\x2d\x4e\x00\x7b\xe9\xbf\x53\x85\xbd\xa4\xe9\x45\xac\xb5\x35\xee\xd0\xa1\x43\x78\xe1\x85\x17\x90\xc9\x64\xf4\x5b\x4e\x47\x01\x4c\x12\xe3\xd8\x7d\x2b\xc5\xa7\x7f\xf9\xda\xe0\xe7\x8b\x2d\x51\x6e\xe7\xfe\x89\xfb\x15\x88\xc7\xaf\x0d\x22\x53\x8a\x30\x18\xa6\x6d\x12\x9f\x3c\x4d\xe9\x79\x12\xa2\x62\xdf\x17\xbc\x51\xcd\x05\x97\x96\xfb\xbd\x37\x6e\x0f\x78\xef\x2e\xf7\x7b\xb3\x95\x9c\xbf\xd6\x70\x65\x95\x45\x28\x39\x80\xf8\x57\xf5\x85\x34\xca\xed\xd4\x77\xfa\x7b\xbb\x14\x60\xb8\x8e\xa4\x6c\xc1\x17\xa5\xe1\x5d\x77\x62\xbc\x9a\xbd\xff\xf0\x56\xfe\xf1\x91\xdd\xcc\x63\x85\x96\x38\x26\x18\x25\x8a\xf3\xe8\x27\xb0\xf7\xae\x36\xb6\x2b\xa3\x2a\x9d\x55\x17\x55\x79\xe4\xfb\x07\x77\xff\xe5\x0f\x4e\x6c\xfe\x2b\x29\xb0\x02\xa0\xb6\xbe\xbe\x2e\xbf\xf9\xcd\x6f\x76\x52\xc3\x3b\x31\x50\x5b\xbc\xed\xb1\x11\x40\x2f\xe5\x74\xac\x5b\x87\x2e\x8d\x5a\x6d\x80\xa5\xd9\x1d\xdd\xc4\x9e\x59\x17\x00\x88\xc3\x87\x0f\xe3\x97\x7e\xe9\x97\x30\x32\x32\x12\x72\x3d\xa0\xc4\xcc\xc3\x00\x26\x09\x34\x75\x68\x3b\xfb\xf8\x73\xb3\x43\x5f\x18\xdd\xcd\x4c\x86\x59\x74\xde\x9e\x70\x2b\xdb\x49\x81\xba\xea\xd4\x76\x9e\x60\xac\x27\x47\x25\x1a\xea\x53\x5b\x19\xba\x9b\x20\x76\xb8\x30\x18\xf0\x02\xc1\x1b\xf5\x8c\x5c\xd8\x2c\xfa\x57\x2a\x79\xff\xea\x4a\xc9\xbb\xb2\x9d\xf7\x17\xab\xb9\x60\xad\x9a\x0b\x6a\x9e\xc3\x5e\x04\x6b\x1b\x81\x60\xef\xa3\x6c\x00\xf5\xee\xe6\x7d\xca\xf6\x37\xdc\x52\xc9\xf6\x5e\x6e\x19\x00\x00\x10\xcd\x49\x44\x41\x54\x73\xc6\x86\x6a\x99\xa9\xd1\xdd\xcc\xa9\xc1\xba\x7b\xff\x40\xdd\x3d\x96\xf3\x00\xca\x10\x35\xef\xc5\x61\x87\x51\x06\xc8\x55\xba\x7f\xdb\xf2\x97\x98\xc0\xdb\xc3\xf4\x8b\x31\xdb\xc2\x34\x89\xa1\x09\x8e\xa8\x0c\x4e\x0c\x6e\x93\x26\xc2\xc3\xc7\xb6\xce\x9f\xd8\xfa\x83\x8b\x07\x77\x5f\x06\x42\xd5\xe9\x0f\xff\xf0\x0f\xef\x5a\x6d\xc4\xfe\x99\xf2\xdd\xa8\xf3\xd6\xfc\xca\xa8\x06\x3a\xab\x3a\xfa\x93\x96\xae\x93\x88\x4a\x4b\x1b\x13\x4d\x36\x9b\xc5\x67\x3e\xf3\x19\x75\x4a\xb4\x8b\xf0\x40\xb2\x61\x00\x13\xcc\x3c\x55\xf2\x9c\x13\x9f\xb8\x3e\xf8\x1b\xf7\xad\x16\x1f\x21\x09\xa1\x7b\x44\xda\x45\x3f\xda\xb9\x3d\x10\x0e\xb2\x86\xcd\xc9\xf4\x44\xb2\x36\x2a\xe6\xa8\x11\x62\x70\xd4\x3b\x6a\xf3\x7b\xa2\xa0\x25\xe9\x54\xf9\x6a\x1d\x55\xa8\x6e\x40\x32\xe0\x49\x42\x2d\x10\xbc\xe6\xb9\x72\xad\xe9\xca\x8d\xba\x2b\x37\xea\x19\x59\x69\x66\x64\x55\x12\xfb\x92\xd0\xe2\xd0\x88\x13\x82\x91\x71\x24\x65\xf3\x2d\x51\xca\xf9\xa2\x5c\x6c\x39\xc3\xf9\x96\x18\xcb\x48\x1a\x76\x24\x0d\x13\xa3\x48\xa1\x7a\x64\xd1\xf9\x35\x2a\xa5\xbd\xc1\xf1\x67\x4a\xbf\x24\x49\x35\x79\x62\x12\x44\x0a\xe3\x51\x12\x57\x0a\x78\xb3\xa3\xb5\xff\xf3\xaf\x1e\xdc\xf8\xe7\x08\xf7\x30\x34\x5e\x7f\xfd\x75\xf9\xfe\xfb\xef\x77\x63\x9a\xb6\x38\x58\xe2\x7b\x61\xd0\xb6\x38\xb3\x2c\xb3\xcc\x3d\xef\x66\xef\x76\xd3\xd7\xf6\xfb\x6d\x7b\x3a\xe6\xf9\xc2\x17\xbe\x20\xc6\xc6\xc6\x14\x51\xe4\x01\x0c\x22\xf4\x40\x1d\x76\x25\xcd\x9c\x5d\x2c\x7d\xfa\xd1\xc5\xfe\x5f\xce\xfb\xa2\x08\x40\x1b\x1c\xbb\xfe\xa7\x3f\xed\x7e\x15\x7b\x58\x17\xbc\xea\x29\x4f\x5a\x39\xe9\xad\x4a\x52\x5a\x61\x30\x31\x34\xad\xd6\xd4\xc6\x1b\x22\xae\xd3\xd3\xc9\x23\x61\x84\x31\xc2\xa3\x61\xde\x9c\xaa\x7c\xe3\xe2\xc4\xee\xbf\x69\xb9\x7c\x05\x76\x82\x30\x9f\x5e\xec\x8b\x7b\xf1\xec\xbb\x1e\xf3\x06\x21\x95\x99\x90\x40\x4e\x5a\xbc\xfe\x0d\x2d\x5c\x85\xb1\x91\x5f\x7d\xeb\xe1\x52\x0b\xdb\x53\xc6\x87\x1f\x7e\xc8\x00\x30\x39\x39\x19\x6e\x44\x0f\x37\x8e\x78\x20\x34\xa5\x40\xfd\xf6\x80\x77\xe7\x4e\xb9\xb9\x32\xba\x9b\x99\x28\x79\x4e\x39\x76\x23\x42\x1b\x76\x65\x20\x1a\x8d\x4d\x00\xea\x80\x18\x89\x7f\x37\x46\xc2\x76\x05\x2a\x24\x42\x3d\x77\xbb\x06\x61\x43\x5e\x3d\xbf\x0d\xf9\x13\x0e\xaf\x16\x29\xc6\x46\xbe\x61\xc4\x86\x12\x4b\x33\x80\x91\x48\x8d\xf8\x9a\xe3\x68\xb6\x99\xa3\x38\x75\x8f\x9f\xb6\x58\x3e\xe9\x83\x3d\xb4\x92\xcc\xfc\x27\x52\x95\x63\x69\xa9\xfa\x45\x82\xb1\x54\xf6\xe6\xbf\x7b\xff\xc6\x9f\xcc\x8e\xd6\x7f\x14\x08\xbe\x83\x70\xa7\x5b\x83\x99\x5b\x8b\x8b\x8b\x58\x59\x59\x31\x71\x00\xb0\xab\xe6\x7a\x9c\xc9\x3b\x04\xf6\xe2\x51\x1a\x7f\x31\xd3\xe8\x38\xd6\xd3\xa3\xdf\x20\xa4\x23\xb5\xea\x1e\x69\x74\x97\xfe\x0d\x2d\x9f\x4e\x7d\x7a\x19\xea\x5b\x01\x6f\x36\x50\x58\xd2\x8b\x3b\x77\xee\xc8\x56\xab\x45\x87\x0e\x1d\x92\x14\xde\x41\xe1\xc7\xbb\xa7\x08\xcd\x9d\x5c\xb0\x79\x6d\xb4\x7e\x5d\x30\x65\x47\x6a\x99\x31\x97\xc9\x35\xd5\x9f\x78\xf9\xb8\xee\x75\x32\x54\x85\xb0\x25\xea\x2e\x82\x08\xf9\x29\xf9\x25\x20\x59\x3b\x15\xe7\xd3\x11\x52\x15\x95\x20\x3a\x69\x75\xab\x32\xc2\xfa\x39\xba\x7b\x2f\xf4\xeb\x2b\x3d\x3e\x0e\x43\xa2\xca\xc5\xb3\xf3\xa4\xf2\x26\x75\xb6\xb5\x11\xd4\xd6\x8e\xb0\x4c\x5d\xfd\x53\xf9\x10\x13\x45\xd2\x17\x68\xab\x23\xc1\xf5\xbd\x75\xeb\x7d\xc3\x04\x34\x5d\xae\xbd\x75\x64\xe7\xfc\x0f\x4e\x6c\x7e\x73\xbb\xe0\xbf\x0f\xa2\x05\x00\x2b\x00\x2a\x44\xe4\xb5\x5a\x2d\x79\xfe\xfc\x79\x04\x41\xa0\xf0\x42\x27\x0c\x15\x66\xc3\x05\x5d\x8d\x31\xd3\xeb\xf8\x09\x23\x5d\x3c\x9a\xe8\x2c\x0d\xd2\x88\x2a\x66\xc8\xb6\xfd\x10\xe6\xb7\x0d\xb1\xf5\x82\x6c\x06\xb3\x59\x99\xce\x09\x4c\xe9\x60\xe6\x63\x00\x58\x5e\x5e\xa6\xb7\xdf\x7e\x5b\x3e\xf0\xc0\x03\xc8\x66\xb3\x89\xa4\x00\x9a\x0c\x6e\xf8\x2e\xea\x37\x07\x1b\x37\x57\xfa\x5b\x6b\x23\xb5\xcc\x78\xb1\xe5\xf4\x03\x94\x20\x61\x84\x61\x21\x62\x84\x15\xa8\x25\x21\xba\x56\x10\x72\x42\x63\x1b\xab\x06\x7c\x98\x25\x71\xc3\x52\x5c\x9e\xee\xe1\x8a\x10\x46\x19\xa5\x50\xe5\x42\x43\x74\x7d\xf9\x08\x12\xe6\xac\x7b\x70\x34\x99\xac\xd6\x15\xe9\x2e\xe0\xf0\x9d\x11\x9f\x84\x08\xc5\xb9\xd1\xe6\x6e\x56\x07\x48\xb3\x3e\x0b\x4d\xb1\xa7\x2c\x21\xc0\x28\x73\xd8\x0e\xdd\x1e\x4a\x28\x36\x6e\x5e\x24\x31\x96\xca\xde\xfc\x6b\x27\x37\xff\xfc\x17\x13\xb5\xef\xfb\x0e\x66\x23\x62\x58\x22\xa2\x6d\x22\xaa\x33\xb3\xff\x47\x7f\xf4\x47\x32\x08\x02\x93\x08\x4c\x0d\xc4\x86\x0b\x3a\xee\x69\x1d\xd3\x36\x24\xc2\x08\x33\x19\x74\x9a\x34\xe9\x24\x99\x62\xed\x46\x5f\xfe\x6d\xf3\x30\x99\xa2\xa6\x53\xe5\x69\x61\xea\xbb\xad\xe2\x94\x74\x80\x41\x18\xef\xbd\xf7\x1e\x0f\x0d\x0d\x61\x68\x68\x88\x11\x11\x45\x24\x96\xeb\x10\x54\xdb\x2e\xf8\xeb\x57\x0e\xd4\x67\x5b\x0e\xfb\xa3\xbb\x99\x71\x57\x52\xd6\xdc\x81\xd7\xf6\xa6\x7b\x91\xda\x7f\xa2\x94\xc9\x09\x1f\x0a\xa5\xd5\x7f\x5d\xe1\x30\x3b\x45\x97\x3c\xb6\x54\x6d\xaa\x8a\x45\x15\xe3\x36\xe4\x53\xdc\x3d\x6a\x87\xe6\x4f\x0e\x89\x5a\x11\x8a\x22\x02\x05\x88\x0a\x4f\xa4\x64\x1b\x65\x9b\x2a\x56\x9c\x46\x79\x91\x12\x95\xa8\x9d\x20\x19\xbb\x59\x59\xf9\xd9\xf4\xf6\xab\x3f\x3c\xbe\xf5\xad\x8d\x62\xeb\x3d\x10\x5d\x03\xe2\x73\x92\xb6\x81\xf0\xf0\xe1\x8b\x17\x2f\x62\x71\x71\x51\x67\xa4\x3a\x72\x9b\x5d\xa2\x06\x47\x1f\x73\xd3\x99\x63\xe2\x8f\x8e\x83\x26\x23\xd7\x99\xb8\xae\xe2\x2b\x2d\xc6\x26\x71\xf4\x7c\xa4\xaf\x76\x85\x51\x60\x1a\xb2\x9b\x8f\x49\xb9\x69\x52\xc4\x04\x5c\x2f\xaf\x13\x61\x88\xeb\xd7\xaf\x4b\x00\x18\x1b\x1b\x53\xc7\x97\x78\x44\xd4\x44\xb4\x29\x3d\x70\x78\xf7\xf6\x40\xf3\xd6\xc2\x50\x63\x31\xef\x3b\x7d\xe5\x86\x33\x28\x98\x9c\x04\x09\x93\x71\xd0\x39\x37\x42\x66\xdb\x36\x32\x64\x1b\xbf\x08\xa1\xf6\xa2\xb1\x91\x57\x97\x10\x46\x7c\x92\x33\x41\x3a\x3d\x26\xe6\xec\x4a\x65\xe1\xa4\xbd\x4a\x22\xc4\x6a\x9f\x22\x04\x0d\x9e\xa8\x94\x64\x49\x7c\x9b\x0a\xa4\x62\x11\xe7\x45\x9c\x26\x29\x4f\x49\x2c\x75\xc2\x22\x08\x68\x39\xec\x5d\x19\xab\xbf\xfb\xda\x7d\x9b\xdf\xba\x3e\xd2\xf8\x71\xe0\x60\x16\xc0\x02\x85\x47\xc4\x6c\x00\xa8\x32\x73\xd3\xf7\xfd\xe0\xab\x5f\xfd\xaa\x8c\x88\x41\x7f\x14\x32\xaa\x5f\x36\xfe\xa0\xfd\xea\xdd\x6a\xaa\xd8\x36\xdc\x82\x11\x6e\x96\x63\xab\xc7\xd4\x80\x54\x5d\x08\x47\xe0\xde\x3e\x36\xf7\x5a\x37\x9d\x2e\x6d\xfe\xc2\x5a\xae\x5a\x03\x15\xed\xd3\xce\x22\xbc\x44\x65\x18\xe1\x64\xde\x84\x90\x98\x9c\xda\xcc\x3f\xfc\x4b\x37\xca\xcf\x8d\xef\x64\x0f\x0b\xa8\x59\xde\x88\x3f\x6b\x58\x1a\x23\xb3\x8e\x9f\x51\x7c\xd2\x63\xed\x24\xb5\xc7\xe6\x36\xf6\x67\x28\xc2\xb1\xd9\x17\x89\xb1\xaf\xcf\x00\xb7\x3b\x00\x10\x37\x63\xaf\x44\x6a\x77\x79\x6a\xe9\xe3\xc6\x9a\x84\xa6\x97\x97\x30\x01\x74\x19\x75\x06\x20\x89\xe5\xed\x72\x73\xfe\xcd\xe9\xca\x0f\x6e\x0e\x34\xdf\x67\x81\xdb\x00\x96\x00\xac\x21\x3c\x1a\xa6\x8a\x50\x2a\x48\x63\x0d\xd3\x7e\xe7\x07\x7a\x55\xc3\x3f\xaa\x37\xb3\x5b\x39\x02\xa1\x1b\xdc\xea\xe7\x4d\x43\xe6\x34\x04\x86\x51\x46\xaf\xe5\xc0\xc8\x03\xa4\x77\x66\xfc\xfd\xcc\x33\xcf\x88\x07\x1f\x7c\x50\x85\x65\x91\x2c\x10\x54\x2e\xda\x89\x4c\x40\x93\x27\xd6\x0a\xe7\x1e\xbe\x5d\x7a\xf2\x40\x35\x3b\xe9\x68\x97\xfc\x91\x81\x38\xba\x78\x54\x52\x03\x40\xdb\xcc\xf7\x1e\x84\x8d\x02\x92\x5b\x32\xf7\x22\xb6\x6d\x22\xb0\xfd\xc6\xcd\x76\x96\xd6\x86\xa7\x5a\xa3\xf4\xc9\x35\xa5\xfd\x98\x0d\x6a\x9b\x3c\xeb\x14\x66\xd6\x63\x3c\x01\xb1\x5c\xee\xf7\x16\xdf\x3e\xbc\xf3\xe3\xf9\xe1\xc6\xbb\xbe\x90\xb7\x41\xa4\x08\x61\x03\x09\x21\x78\x52\x4a\xf9\xde\x7b\xef\xe9\x6b\xb7\x3e\xaa\x1b\xb5\x17\x24\xee\x25\xac\xd7\x76\xec\x49\xd7\x4d\x42\xdc\x0d\x65\xa6\x95\x61\x2b\x0b\x1d\xca\xb3\x01\xd8\x56\xc6\xe7\x3f\xff\x79\x11\x4d\xe4\x09\x84\x44\xa1\x08\x63\x18\x21\x61\x8c\xe5\x7c\x71\xf8\xe4\x5a\xe1\xec\xc7\x6e\x97\x9e\x38\xb0\x9b\x99\x20\x86\x20\xa5\x0f\x18\x88\xb5\x87\xc1\x86\xd4\x03\x44\x7b\x05\x12\xb5\x29\x89\x42\x54\x54\xbb\x2b\x54\x43\xf7\x36\xc2\x63\x24\x06\x31\x10\x6f\x6e\x32\x90\xb6\x2d\x7d\x9b\xc2\x17\xd7\xdc\x4e\x78\x6c\x27\x12\x13\x8c\xf8\xdd\x20\x72\x06\x43\x12\xe4\x6a\xc9\xbb\x7d\x61\xb2\xfa\xb7\x73\x23\xf5\x77\x9b\x19\x5e\x44\xe8\x39\x5a\x41\x42\x08\x35\x44\x77\x32\x54\x2a\x15\x19\x5d\xa9\x96\x86\x13\xfb\xe5\xe2\x77\x8b\x6b\x5d\xb9\xfe\x7e\xca\xd0\x25\x44\x5a\x01\xdd\x54\x9f\x34\x09\x03\xf4\x06\x6c\xa7\xf7\xb4\x32\x04\x00\xe9\xba\xae\x38\x7d\xfa\x34\x9e\x78\xe2\x09\x15\xe6\x02\xc8\x32\x73\x91\x88\x06\x99\x79\x90\x88\x46\x01\x8c\x65\x7d\x9a\x9c\xd9\x28\x7c\xec\xf4\x9d\xbe\x47\x0f\x56\xb2\x33\xae\x24\xb7\x9d\x4b\xab\x35\x4b\xc9\xaf\x89\x8c\x7a\x98\x29\x09\x94\x7d\xb0\x57\xf5\x41\x14\x63\x10\x8d\x52\xad\x74\x35\x88\x91\xb4\x80\x38\xd9\xb1\xa6\xb9\x79\x01\xd6\xec\x00\x5d\x85\xe3\xb6\xb4\x40\xa2\xc2\xa1\x4d\x2d\x63\x6d\x5e\x02\xf0\x05\xfb\x8b\x03\x8d\xeb\x17\x0f\xee\xfe\xfc\xc6\x70\xe3\x03\xdf\xe1\x25\x84\x44\xb0\x06\x60\x23\x3a\x62\x52\x11\x82\xef\xfb\xbe\xfc\xd9\xcf\x7e\x86\x0f\x3e\xf8\xa0\xd3\xf8\xea\xe3\xac\xd2\xed\x07\x39\x6d\x65\xef\x87\xc0\x4c\x4d\xa5\x53\x9a\x54\x95\x09\x96\xf7\x6e\x0d\xeb\xd6\xc8\x7d\xab\x43\x5d\x9e\xd4\x7c\xcf\x3f\xff\xbc\x98\x9e\x9e\x46\x26\x93\x51\x6a\x54\x16\xe1\xf2\x8f\x32\x33\x0f\x13\xd1\x30\x18\xa3\xae\xa4\x89\xf1\x9d\xcc\xf1\xd3\x77\x4a\x4f\x1c\xd9\xca\x1f\x2b\x7a\xa2\xa4\x4f\xb4\x75\x5a\xb6\x90\x84\xa1\x8d\x22\xc8\xcc\xa8\xab\x5d\x46\x5a\xbd\x92\x98\x73\xc7\x12\x2a\x22\xb8\x58\x3d\x6a\x5f\x81\xab\x08\x40\xd9\x0b\xf1\xbc\x4b\x9a\x14\xda\xa3\xce\xc5\x24\x81\xdd\x6c\x50\x99\x1f\x69\x5c\xf9\xc5\x78\xed\xc2\x72\xa9\x79\x35\x10\x58\x01\x61\x0d\x91\x8d\xa0\x11\x42\x03\xe1\x8a\x5e\x79\xf9\xf2\x65\xfc\xf0\x87\x3f\xec\x05\x39\xbb\x49\xf7\xfd\xe4\x57\xdf\xe8\x90\x7f\x3f\x9a\x4b\x47\x02\x23\x4b\xc2\x5e\x1a\xd7\x4d\x7f\x03\xec\x1d\x02\x2d\x2e\x8d\x7b\xa4\x75\x66\xa7\xbc\x71\x7d\x5f\xfe\xf2\x97\xc5\xd0\xd0\x10\x88\x28\xdc\x23\x10\x11\x06\x33\x97\x23\xa9\x31\x0c\x60\x58\x80\x46\xcb\x0d\xe7\xc8\xd1\xf5\xc2\x83\xf7\x2f\xf7\x9d\x1e\xdd\xcd\x4c\xb8\x4c\x2e\x60\xda\x14\x11\xff\xa7\x04\xb9\xf7\xe8\xf1\x11\x66\xb3\xa6\x0e\xb5\xa9\x31\x0a\x11\xc9\x94\x14\x9a\x81\x1e\x55\x68\x72\xfa\x36\x09\x10\x13\x85\x29\x25\xda\xbf\xdb\x56\x02\xc7\xc4\xc7\x08\x88\xfd\x95\x52\xeb\xf6\xd5\xb1\xda\xa5\x6b\x23\xf5\x8b\x3b\xf9\xe0\x26\x13\x36\x90\xd8\x07\xca\x58\xae\x01\xf0\xa2\x09\x51\x7f\x65\x65\x05\xdf\xfa\xd6\xb7\xd2\x6c\x3e\xdb\x93\xc6\xa5\xd3\xec\x54\x5b\x58\x1a\x3e\xd9\xca\xe9\x54\xb7\x59\x76\x47\x18\x4c\x8d\xd3\x6c\x50\x2f\xe2\xaa\x57\x95\xab\xd7\xb0\x5e\x0d\xf9\x54\x42\x9a\x99\x99\x11\x8f\x3d\xf6\x18\x86\x87\x87\x01\xb5\x79\x26\x31\xbe\x4b\x48\x0c\xf0\x61\x30\x86\x05\x63\xf8\x40\x35\x3b\x7d\x62\xad\x70\x7a\x6a\x33\x7f\x6c\xa8\xe6\x8e\x66\x64\x74\xab\x0d\xf6\x76\x92\x4d\x2d\xda\x23\x25\x3a\x3c\x86\x30\x89\x1d\x44\x40\xbb\xe7\xca\x34\x73\xf4\x34\xb1\x7a\x45\xed\xd2\x4d\x37\x47\x18\x8c\x96\xc3\xde\x66\xc1\x5f\xbb\x31\xdc\x98\x9d\x1d\xad\x5d\x5a\xed\x6b\xcd\x31\x61\x03\x84\x0d\x66\xde\x22\xa2\x2d\x84\x84\x50\x43\x62\x23\xf8\x00\xe4\x9d\x3b\x77\xf0\xd6\x5b\x6f\xe1\xf6\xed\xdb\xfb\xe1\xf0\xfb\xd1\xe9\xf7\x63\x7f\x74\xc2\xc5\x6e\xb8\xd3\x4b\x5b\x00\x74\x37\xaa\x7b\x79\x7a\x15\x7f\x77\x6d\xf9\xa7\xc4\x75\x4d\x77\xfc\xf8\x71\xf1\xc8\x23\x8f\x60\x78\x78\x58\x6d\xa8\x51\xea\x54\x1e\xa1\x3a\xa5\x13\xc7\x20\x18\xc3\xd9\x80\x86\x47\x77\x33\x47\xa6\x37\xf2\xf7\x1d\xda\xce\x4d\x8d\xec\x66\xc6\x72\xbe\xc8\x13\x20\x48\x9f\xb4\x30\x1e\x53\xfd\x69\x8f\x30\x82\x14\xd7\x87\x8e\xbc\x86\x7a\xd5\xa6\x32\x45\xd6\x49\x5c\x8e\x3e\xf7\x90\xe4\xe1\x50\x29\x92\x4d\x57\x36\x36\xfa\xfc\xb5\x85\xc1\xc6\xf5\x85\xa1\xc6\xec\x7a\x5f\xeb\xa6\xe7\xf0\x1a\x23\x21\x80\x48\x25\x52\xd2\xa0\x81\x50\x22\x48\x66\xf6\x57\x56\x56\x70\xe1\xc2\x05\x2c\x2c\x2c\xd8\x74\xed\x3d\xfd\x6c\xef\x91\x38\x5e\xe5\xed\x24\xf9\x3b\x49\x87\x5e\xf2\xa4\xb5\x29\xcd\x5e\x48\x85\x81\xb4\xc4\xea\x49\x13\x39\x69\x95\xd9\x0a\x4f\x53\x69\xd2\xc4\x68\x2f\x9d\x63\xa6\xed\x96\xa7\xad\x13\xbe\xf4\xa5\x2f\x89\x91\x91\x11\x55\x86\x8b\x70\xef\x71\x96\x88\xf2\x08\x55\xaa\x12\x11\x95\x23\xd5\xaa\x0c\xa0\x2c\x24\x06\xfb\x9b\xce\x81\x89\x9d\xdc\xd4\xe4\x56\x6e\x66\xbc\x9a\x9d\x1c\xa8\x3b\x83\x39\x5f\x14\x95\xdd\x61\x6c\x20\x82\xb6\xc2\x2e\xac\xdd\x70\x01\x99\x92\x44\x5f\x96\x1e\x65\x68\x33\xa0\x93\x79\x0d\xbb\x91\xcf\x04\x78\x2e\x37\xb6\x0a\xad\x8d\x95\x52\xeb\xf6\xad\x81\xc6\xfc\x52\xb9\xb5\x58\xcd\xf9\xcb\x81\xc0\x16\xc2\xfd\x09\x95\x88\x00\x2a\x48\x54\xa2\x06\x22\x69\xa0\x76\xfc\x2d\x2f\x2f\xe3\xcf\xff\xfc\xcf\x7b\xe1\xb4\x66\x58\xaf\x76\x42\x9a\xfa\x93\xa6\x52\xc1\x48\xdf\x8d\x09\x76\x4a\xdb\x13\x0c\xbd\xb8\x5d\xf5\x4a\xf4\x42\x7a\x55\x65\x52\x2b\x87\x1d\xa1\xd3\xca\xf9\x28\xf5\xc0\x71\x1c\x11\x04\x81\x7c\x3e\x32\xbe\x5d\xd7\x15\x00\xe2\xad\x98\x06\x71\x14\xa3\xed\xac\x25\x66\x2e\x11\xa8\x04\xa0\xec\x4a\x2a\x17\x5a\x62\x68\x64\x37\x33\x36\x56\xcd\x4e\x8e\xec\xba\x63\x03\x0d\x77\xb8\xd4\x74\xca\x39\x5f\x64\x1d\x49\x2e\x29\x98\x22\x43\x83\x14\x8d\x20\x22\x1e\xd6\xd6\x26\x69\xa2\x22\x4d\xf8\x70\x42\x6a\x32\x10\x2c\x3d\x87\x1b\xbb\xd9\xa0\xba\x55\xf0\x37\x56\x4b\xde\xd2\x5a\xa9\xb5\xb4\x5e\x6c\x2d\xd5\xb2\x72\xd3\x17\x5c\x01\x50\x01\xa1\x1a\x5d\x2e\x52\x45\x48\x00\x6a\xee\x40\x11\x81\x17\xed\x07\x97\xcd\x66\x53\x5e\xbf\x7e\x1d\x3f\xfa\xd1\x8f\xa4\x10\x42\x48\x29\xd5\x78\x98\x7d\x69\xeb\xdf\x5e\xd2\x74\xb3\x01\x3a\xe5\xe9\x94\xa6\xd7\xb2\xf7\x05\x83\xee\x65\xea\x64\x74\x74\xa2\xd8\xb4\xef\x6e\xdc\x7b\x3f\x92\xa0\x53\x5d\xb6\x76\x76\x4a\x83\xc1\xc1\x41\x1c\x39\x72\x04\x67\xcf\x9e\x45\x2e\x97\x03\x12\xc2\x70\xb5\x19\xf0\x2c\x80\x3c\x33\x17\x11\xaa\x57\x45\x22\x52\xef\x25\x70\xa8\x76\xb9\x92\x8a\x79\x5f\x0c\xf4\x35\x9d\xc1\x52\xd3\x29\x97\x3c\x67\xb0\xdc\x70\xca\xe5\x86\x5b\x2e\xb4\x44\x31\xe7\x8b\x7c\x36\x10\xd9\x4c\x40\x59\xc1\x70\xc3\x1b\x92\xc2\xb9\x10\x42\x48\x08\x1c\xfe\x4a\x49\x2c\x7d\xc1\x5e\xcb\x61\xaf\xe9\xca\xc6\x6e\x36\xa8\x55\x73\x41\xa5\x9a\x0b\x2a\x95\x9c\xbf\xb5\x93\x0f\xb6\x76\xb3\x41\xa5\xe1\xca\x6d\xdf\xe1\x1a\x03\x55\x10\x1a\xcc\x5c\xd3\xd4\x1f\xfd\x4f\x27\x00\x9f\xb4\x93\x43\xaa\xd5\x2a\xde\x79\xe7\x1d\x7c\xf8\xe1\x87\xdd\x90\xa5\xd3\xd3\x0b\x53\xdc\x0f\x42\xf6\x2a\x69\xba\xb5\xf3\xae\x61\xd8\x8f\x51\x0d\xa4\x23\x27\x2c\xe1\xbd\x22\x73\x5a\xf9\xfb\xe1\x42\xe6\xf7\x7e\xa5\x17\x7e\xeb\xb7\x7e\x4b\x0c\x0e\x0e\xaa\x74\xea\x4f\x37\xc8\x63\x22\xd1\xff\x98\x39\x1f\x11\x50\x5e\x8b\x57\x79\x5c\x30\x5c\xc1\xc8\xba\x92\x32\x8e\x24\xd7\x61\x72\x05\x43\x08\x19\xda\x34\x4c\x2c\x65\x48\x0c\x7e\xcb\x61\x2f\x10\xdc\x0a\x08\x3e\x92\xd3\x3d\x3c\x24\x48\xed\x45\xcb\xe0\xd3\xfe\x3c\xed\x2f\x3e\x1d\x44\xfd\xad\xaf\xaf\x63\x61\x61\x01\xf3\xf3\xf3\x58\x5d\x5d\xdd\x0f\xa3\x51\xf1\xdd\x54\x55\xbd\x1c\x5b\x59\x36\xc6\xda\x4d\x32\xa4\xb5\xc7\x96\xe6\x23\xc3\xb0\x9f\x99\xea\x5e\x90\x54\x8f\x83\x25\xbe\x93\xda\xa4\x37\x3a\xad\x7c\x5b\x9e\x4e\x9c\xa0\x53\xc7\xec\x69\xd3\xf8\xf8\xb8\x38\x7a\xf4\x28\x8e\x1f\x3f\x8e\x62\xb1\x08\x75\xda\x45\x24\x35\xda\x88\x84\x99\x5d\x00\xd9\xc8\xbd\xab\x54\x2e\x65\x97\x64\x91\x48\x1b\x57\xe5\xd3\x4e\xcb\x88\xdb\x15\xb9\x4c\x63\xa4\x8d\xfe\x7c\xe3\xcf\x43\x3b\x71\x98\x61\x3a\xf2\xfb\xfa\xf1\x38\xb5\x5a\x0d\x57\xae\x5c\xc1\xcf\x7f\xfe\xf3\x6e\xdc\x74\x3f\x1c\xb7\x9b\x64\xef\x94\xb7\x5b\xd9\xbd\xe4\x49\x2b\xe3\x23\xc3\xd0\x89\x20\xba\xa9\x43\x9d\x74\x7b\xdb\xbb\x59\x56\x27\x31\xd8\x29\xfd\x7e\x45\x68\xb7\xf6\xa5\xd6\x75\xfa\xf4\x69\x31\x3e\x3e\x8e\xa9\xa9\x29\x44\x67\x25\x09\x2d\x8d\xf9\xe7\x02\xf1\x11\x31\x2e\x33\x0b\x00\x2e\x11\x09\x83\x10\xf4\x32\xf4\x7a\x4d\xa2\xd0\x89\xc3\xf6\x2b\x81\xe4\x6c\x28\x2d\x0c\x0b\x0b\x0b\xf8\xeb\xbf\xfe\xeb\x5e\x11\x18\x96\xb8\x5e\xde\xf7\xfb\xf4\x82\x1b\xdd\xa4\xcd\xdf\x39\x0c\x9d\x26\xe6\xba\x11\x84\xad\xc1\x30\xc2\xef\x86\x72\x6d\x75\x77\x4a\xbb\x9f\x72\x7a\x55\xbd\xf6\xe4\x19\x1e\x1e\x16\x07\x0f\x1e\xc4\xcc\xcc\x0c\x72\xb9\x1c\x86\x87\x87\x21\x84\x88\xd3\x47\x48\xaf\x97\x61\x22\xbe\xde\x3f\x69\x52\x51\xff\xd6\x09\x05\x06\xe2\x83\x99\xa5\xef\xfb\xd8\xde\xde\x46\xb5\x5a\xc5\xad\x5b\xb7\xf0\xc1\x07\x1f\xdc\x2d\xb2\xc6\x70\xde\x83\xbc\x1f\xa5\x9c\x8f\xfa\x7c\x64\x18\x6c\x46\x75\x27\xea\x05\xd2\x11\x6a\x3f\xd4\x99\x86\xa8\x69\xd4\x6e\x96\x63\x0b\x4b\x83\xc3\x06\x8f\x09\x47\x27\x18\xac\xbf\xd1\xdc\x06\xd6\xd7\xd7\xe5\xc7\x3f\xfe\x71\x01\x00\x27\x4f\x9e\x84\xe3\x84\x5b\x4c\xd4\x6f\x84\xc4\x6d\x04\x60\x3d\x75\xd0\x72\x6e\x93\x94\x12\x91\xd7\x07\x00\x30\x3f\x3f\x8f\x46\xa3\x81\xb5\xb5\x35\x5c\xb9\x72\xa5\x9b\x84\xed\xd6\x17\xb0\x7c\x9b\x61\xbd\x20\x58\xb7\xf1\xef\x25\xfd\xdf\x27\x18\xf6\x70\x2b\x5b\x62\x5b\x58\xaf\xf9\x3a\xa5\xed\xa4\x82\x98\x1c\xd5\xf6\x6d\x96\xdb\x8d\x1b\x77\x6b\x73\xb7\x36\xf6\x92\x46\x00\xc0\xd4\xd4\x94\x38\x7e\xfc\x78\x9c\x47\x7f\xff\xd5\x5f\xfd\x55\xeb\xbb\x9e\x4e\x4b\xdf\xa9\x5f\xd2\xda\xd8\x6b\xdf\xa7\xf5\x57\xb7\x31\xe8\x65\x7c\x6c\xed\xf8\x07\x03\x43\xaf\x48\x7f\x37\xc4\x63\x8b\xef\x54\x6e\x27\x04\xec\x86\x9c\x77\x4b\xdc\xbd\xd4\xdb\x2d\x5d\xa7\xb2\x7b\x69\x9b\xed\x31\x07\x75\x3f\x8c\xc8\x56\x4e\xaf\xe9\xcd\x70\x1b\x62\xf7\xfa\xfc\x83\x85\xa1\x17\x20\xf7\x3b\xa8\xdd\x10\xa2\xd7\x30\x5b\x7c\x2f\x1c\xbb\xdb\x73\x37\x48\xda\xa9\x8c\x8f\x52\xaf\x0d\x69\x3a\x11\x61\x2f\x9c\xb4\x1b\x97\xfc\xa8\x75\xa5\x49\x80\x7f\xc8\x30\x74\xcd\x94\xd6\xa8\x4e\x15\xef\x97\x9b\xf6\x2a\x0d\xf6\x53\x4e\x5a\x27\x77\xfb\xee\x54\x77\xaf\x6d\xe9\x65\x60\xf6\x53\xe6\x7e\x39\xf2\x7e\xe2\x7b\x1d\xa3\x5e\xdb\xf3\xff\x07\x18\x52\x23\xef\x86\x83\x76\xe3\x7e\x1f\xa5\xec\x4e\x75\xdd\x8b\xf2\xf7\x9b\xe7\x5e\x48\x87\x5e\x08\x24\x8d\x6b\x76\xca\x63\xcb\xdf\x2b\xf3\xb3\x95\xdb\xad\x1c\x5b\xdb\xd2\xf2\x98\xe9\xfe\x5e\xc1\x20\x3a\xfc\xf5\x52\x89\x4d\x7a\xa4\x95\x65\x6d\x40\x8f\x75\x75\xe2\xfe\xfb\x4d\xd7\x0b\x8c\x9d\xda\xd9\xad\x9e\x5e\xc3\x7a\xed\x9f\xb4\xb0\xfd\xc4\x77\x4b\xbf\x5f\x4e\x9e\xd6\xf6\x4e\xed\xf9\x87\x06\x43\x4f\x95\xf6\x5a\x89\xad\x8c\x5e\x10\xad\x97\x72\xba\x7d\xef\x87\x8b\xd8\xca\xda\x0f\x0c\xdd\x38\xd8\x7e\x90\xa0\x57\x2e\xd9\xa9\x9e\x5e\x08\x3d\xad\x7d\x77\x83\xe4\xdd\xda\x65\xbe\xff\x43\x80\x61\x5f\x15\xa5\x15\xda\x2b\xb7\xeb\x85\x73\xdc\x2d\x31\xf4\x02\xc3\x7e\xeb\xee\x36\x90\xf7\xb2\xee\xb4\xb2\xba\x3d\xbd\xd4\xff\xf7\xa9\xee\x7b\x55\xce\x3d\x87\xe1\xff\x05\xa3\x5d\x9f\x39\x4a\xbc\xd5\x80\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x19\xa0\xdd\x2c\x36\x91\x00\x00") -func web_uiStaticFavicon196x196PngBytes() ([]byte, error) { +func web_uiV1StaticFavicon196x196PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticFavicon196x196Png, - "web_ui/static/favicon-196x196.png", + _web_uiV1StaticFavicon196x196Png, + "web_ui/v1/static/favicon-196x196.png", ) } -func web_uiStaticFavicon196x196Png() (*asset, error) { - bytes, err := web_uiStaticFavicon196x196PngBytes() +func web_uiV1StaticFavicon196x196Png() (*asset, error) { + bytes, err := web_uiV1StaticFavicon196x196PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/favicon-196x196.png", size: 37174, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/favicon-196x196.png", size: 37174, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticFavicon32x32Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x1b\x08\xe4\xf7\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x07\xe2\x49\x44\x41\x54\x58\x85\xc5\x57\x7d\x6c\x53\xd7\x15\x3f\xf7\xbe\xe7\xe7\xef\x60\x3b\x01\xc7\xd8\xc4\x49\xec\x1a\xc7\x01\x4a\x02\x49\xa1\x59\x4b\x80\xb6\x34\x10\x4d\x81\xa9\x15\x43\xeb\x90\xd6\xb5\x9d\xa6\x6a\x12\x74\x0c\xa1\xa9\x63\x52\xa5\x69\x1d\xab\xb4\xae\x45\xa2\xea\xb4\xb5\xf4\x03\x28\xd0\x0f\x0a\xac\x45\x0d\xe4\x83\x26\x5d\xf9\x70\x4a\x82\xb3\x38\xae\xed\x24\x4e\x1c\xc7\x4e\xec\x38\xef\x39\x2f\xcf\xef\xbd\xbb\x3f\x5a\x67\x21\x24\x05\x86\xb6\xfd\xfe\xba\xba\xe7\xbe\xf3\xfb\xdd\x73\xcf\x3d\xe7\x3e\x80\xff\x33\xd0\x9d\x7e\xa0\x56\xab\xb1\xc9\x64\x02\x8d\x46\x03\x4a\xa5\x12\x0b\x82\x00\x99\x4c\x46\x4e\x26\x93\xc0\x71\x9c\xfc\x5f\x11\xa0\xd3\xe9\xf0\x32\x57\x99\x66\xbd\xc1\xf3\xd0\x72\x62\xde\xb8\x90\x63\x56\xe8\xa6\x28\x9b\x42\x42\x2a\x11\x13\x81\x55\x4a\x43\xa3\xda\x6c\x57\x37\x95\xb8\x70\x3e\xdd\xfd\xc9\x57\xfe\xeb\xe9\xf1\xf1\xf1\xdb\x12\xf3\x9d\x02\x94\x4a\x25\x7e\xb0\x72\x4d\xc1\x0e\xf5\xea\xe7\xee\x8d\xe5\xfd\x54\x25\x62\xd3\xad\x1c\x0a\x58\x66\x7d\x66\xee\xf0\x51\xb1\xe3\xc5\x46\xef\xe7\x91\x5b\x45\x65\x5e\x01\x36\x9b\x0d\x3f\x53\xbe\x65\xfb\xe6\x88\xe5\x65\xb5\x48\x15\xcc\xb4\x11\x20\x20\x21\x90\xb3\x94\x2c\x28\x64\x44\x53\x32\xa2\xd1\x2c\x57\x02\x25\xb3\xe7\x6d\xf1\xbd\x07\x3a\x4f\x1e\x8a\x46\xa3\xf3\x8a\xa0\xe7\x9a\x2c\x73\xbb\x99\x7d\x96\xfa\x03\xab\xc2\x79\xbf\xc8\x39\x96\x81\x40\x28\x9f\xbf\xe6\x5f\x98\x39\x1b\xc9\xe3\x5b\x47\xa4\x74\x78\x92\xe7\x79\x25\xa3\x64\xcc\x8a\xbc\x22\xeb\x84\xaa\xe6\x9e\xb8\xa6\xde\x31\xaa\x5e\x49\x11\x84\x19\x09\xeb\xcc\xa2\x66\xbd\xd9\x6c\xfe\x4b\x34\x1a\x15\x6e\x3b\x02\x4e\xa7\x93\x7e\xc1\xb6\xed\xe0\xbd\x51\xfd\xd3\xb9\xb9\x3e\x23\xef\xbb\x50\x3a\xb6\xff\xf2\x70\xcf\xb9\xde\xde\x5e\x36\x1a\x8d\x82\x28\x8a\x37\xec\xca\x6a\xb5\x62\xa7\xd3\xa9\x59\x65\x73\x6f\x58\x1f\xca\xdf\xaf\xce\x62\xdd\x21\xab\x6f\xe3\x07\x1f\x7f\x34\x24\x49\xd2\xbc\x11\xb8\x41\x40\x7e\x7e\x3e\xfe\xed\xea\x1f\xed\xde\x10\xce\x3f\x80\x00\x01\x01\x02\x6d\x25\xe3\x87\x4f\x33\xbd\x7b\x9a\x5b\x5a\x12\xa9\x54\xea\x96\x89\xa5\xd7\xeb\xf1\xf7\x6a\x6a\x0c\x66\x43\x81\xe1\xe4\x99\x8f\xc2\x13\x13\x13\x32\x45\x51\xd8\xe1\x70\x60\x84\x10\x04\x02\x01\x79\xa6\xa0\x1b\x04\x3c\x5d\xb7\xbd\xf2\xd9\x90\xa7\x9d\x26\x88\x21\x40\xa0\xc9\x99\x7a\xf5\x68\xfa\xd2\xde\xd6\xd6\xd6\xcc\xad\x88\xbf\x0b\x5b\x6b\xeb\x8a\x9e\x4b\x55\xfd\x1d\x13\xa0\xff\x5c\xd0\xb1\xe5\x68\xe3\xa9\x40\xce\x86\x73\x83\xb2\xb2\x32\xba\x21\x59\x7a\x80\x26\x88\x01\x00\xe8\xb4\x70\x67\x4f\x64\xbc\xfb\xee\x96\x1c\x00\x60\xad\xc1\xf5\x90\x69\x52\xe1\x31\xf0\x0a\xd7\x7d\xda\xd2\xcd\x33\x6d\xd3\x49\xf8\xb0\xa3\x6a\x8d\xbd\x57\xb5\x01\x00\x80\x65\xa4\xd4\x99\x82\xfe\x5d\xad\x1f\xde\x3d\x39\x00\xc0\x15\x18\xfc\xcc\xb1\x48\x7d\x11\x13\x44\x5f\xa1\x87\xcf\xde\x24\xc0\x62\xb1\xe0\xb5\x5c\xe1\x93\xb9\x8c\xbf\xb2\x24\xfd\x46\xcb\xa5\xb6\xc0\xec\x44\xfb\x4f\xc0\x30\x0c\x3e\xd7\xdc\x18\x19\x28\x1b\xda\x84\x10\x82\x60\x7b\x90\xd7\x6a\xb5\x38\x57\x1f\x68\x00\x00\xbb\xdd\xce\x94\x8c\xaa\x1f\x01\x00\x90\x11\x91\xbf\x54\xc7\xfe\xd6\xd7\xd7\x37\x2f\x39\xc3\x30\xd8\xe1\x70\x60\xa3\x36\x4f\x95\xe4\xd2\x7c\x20\x10\x90\xb3\xd9\xec\x4d\xeb\x97\x79\xca\x55\xbb\x16\x3f\xba\x8f\x26\x48\x75\x70\xf4\xc2\x0b\x2a\x85\x92\x79\xd9\xf5\xe3\x57\x44\x4c\x32\x7f\x1c\x3d\xb7\xf7\xea\xb5\x8e\x0c\x0d\x00\x50\x6a\x5c\x5c\xa4\x4f\x52\x8b\x01\x00\x46\x74\x42\xe0\x9f\x43\xc1\xc0\x6c\x67\x39\x18\x8d\x46\xbc\x63\xf5\x23\x0d\xf7\x84\xa9\x97\x14\x31\x52\x2c\xa8\x51\xd0\xbf\x7e\xc5\xae\x23\x5f\x7e\x7a\x7a\xf6\x2d\xf9\xa1\xb3\x76\xdb\xda\x1e\xc3\x6f\x00\x00\x76\xb8\x1e\x18\xc4\x04\xe1\x65\xbd\xba\x9f\x00\x00\x6c\x75\xd7\xb4\x5e\xbd\xd6\xf1\x1e\x0d\x00\x50\xa4\x30\xb9\x72\xe1\x4f\x68\xb3\xbe\xf8\x60\x9c\x9f\x4f\x40\x5d\x75\xed\x8a\xb2\x6e\x7c\x04\x13\xc2\x00\x00\x28\x27\x49\x69\x79\x0f\x3e\xbe\xa9\x7a\xdd\xaa\x33\x6d\x8d\xbe\xed\x55\x9b\x56\x7b\x90\xb9\xfa\xd4\xc4\x57\xef\x26\xd4\x42\x44\xa0\x64\x1e\xcb\x88\x8e\xab\x85\xfe\x29\x2c\xa5\x27\x15\x0b\x58\x11\x13\x61\x40\x91\xf6\x4f\x1f\x81\x81\xd6\x4c\xd7\xf8\x49\x85\x3c\xc2\x71\xdc\x9c\xe4\x7a\xbd\x1e\x97\x8a\x79\x8f\x61\x22\x30\x33\xe7\xb1\x0c\x8c\x93\x18\x1b\xb6\x6c\xdc\x34\xfc\x6c\xef\x8a\x46\x46\xc2\xba\x25\x66\xfd\xda\x83\xb1\x7f\xec\xcc\x54\x88\x0f\xd0\x88\x62\x9a\xbc\xed\x97\x39\x8e\x93\x07\xab\xd7\x54\xc8\x44\x16\x5b\x2e\xb6\xf6\x4f\x0b\x80\x19\xd7\x11\x00\xe6\xaf\xdb\x34\x0d\x04\xcf\xdd\x3e\x08\x06\xac\xd5\xeb\x18\x11\x13\x99\x91\x00\x04\x9a\xd0\xa3\xf1\x51\xb9\x63\x9c\xf5\x21\x84\x20\x18\x0c\x8a\x14\x45\xc1\x48\x30\x92\xce\x12\x49\x4c\x26\x93\x30\x2d\x80\x45\xd9\xb1\x9c\x23\x8d\x40\x2d\x62\x18\x66\x4e\x92\x64\x32\x29\x0f\x1b\xc4\x8f\x0b\x29\xf8\x25\x25\xc1\xf4\x22\x89\x06\x7e\x48\x2f\x9c\xfd\xac\xa9\x65\x38\xef\xc1\xba\xad\x16\x5e\x53\x7d\x99\x44\xde\xbe\x4f\x5d\xee\xfe\x79\xd8\xdd\x8c\x08\xa2\x5f\xab\x75\x6e\x54\x62\x85\xea\xc9\xaf\x9d\x8d\x12\x26\xfc\x9f\xd6\x59\x6b\xde\xfc\xf4\x84\x0f\x03\x00\x0c\x88\x63\x41\x02\x04\x00\x00\x16\x72\x0a\x8f\xc9\x64\x9a\xb3\x49\x01\x00\x34\x7b\xbf\xb8\xfc\x75\x95\xfa\x19\xd6\x40\x05\x45\x05\xf0\xac\x91\x0a\xf4\xae\x56\x3f\xd5\x7c\xa5\xbd\x23\x12\x89\xc8\x87\xde\x7f\xab\xe9\xa5\x8b\x47\xfe\x70\xfc\x83\x93\x11\x17\x63\xbe\x5f\x25\x52\x05\x4a\x09\x1b\x96\x2a\xcc\x0f\x96\x50\xa6\x35\x34\x41\x2a\xa5\x84\x0d\x4b\x75\x8b\x2b\xa7\x23\xd0\x9f\x1e\xe9\x4f\xab\xdc\xc3\x0b\x78\xba\xb0\x80\x55\xb8\xdc\x25\xc5\xc5\x5e\xf0\xfa\xe7\x12\x10\x08\x04\xc4\x63\x1c\x77\x78\xf9\xf2\xe5\xa7\x74\x3a\x9d\x81\x65\xd9\x54\xe7\xc5\xce\x54\xae\xe5\xf2\x3c\x2f\xf3\xfc\x37\x39\xdc\x2e\x86\xcf\x5a\x6c\xcc\x29\x4c\x10\x6e\xc7\x03\x27\x24\x22\xcb\x7a\x3b\xbd\x4a\xc4\x84\x6f\x4a\x77\x9f\x06\xf8\xb6\x17\xb8\x5c\x2e\x7a\xbf\xad\xe1\x9d\x8a\x41\xfd\xe3\x00\x00\x6d\xf6\xd4\xef\xf7\x5c\xfa\xeb\xaf\x93\xc9\xe4\x5d\x15\x22\xa5\x52\x89\x3d\x1e\x0f\x0d\x00\x10\x8f\xc7\x45\x59\x96\xc1\x68\x34\x62\x59\x96\xc1\xef\xf7\xcb\x92\x24\xc9\x18\x00\x20\x1c\x0e\xcb\xd7\x0a\xc6\xdf\xca\x1d\x43\xc5\xa0\xfe\x67\xeb\x2a\xd7\x14\xde\x0d\x39\x00\xc0\xd4\xd4\x94\xec\xf5\x7a\x05\x1d\xad\xd2\xbc\x5a\xfc\xc4\x91\x43\x25\x3b\x8f\x17\xe6\xe5\x1b\xba\xbb\xbb\xc5\x5c\x47\xc4\x00\x00\x82\x20\xc8\x9f\x0f\x5d\x3f\x1f\x36\xf1\x97\x01\x00\xd4\x22\x65\xd8\x39\xb5\xf2\x15\xb7\xdb\x3d\x6f\x2e\xdc\x09\xea\x17\x57\x35\xb8\xe2\x9a\xc7\x9d\x09\xcd\xb6\xfa\x82\xca\xed\x33\x6d\xd3\xd7\xcf\xeb\xf5\xf2\x17\x8a\x12\xcf\x8b\x88\x88\x00\x00\xae\xb8\x7a\xdb\x6e\x5b\xdd\xf3\x76\xbb\x1d\xcf\x76\x78\xa7\xe8\x55\x24\xaf\x26\xb4\xc2\xd0\xa8\x26\x3b\xec\x57\xa7\xbe\x98\x69\xa3\x72\x83\x6c\x36\x4b\x26\xb0\xd0\x5f\x58\x6c\xcd\x2f\x4e\xaa\xab\x11\x20\x58\x92\x56\xad\x73\xd9\x9d\xfa\x90\x96\x6d\x8a\x8d\xc4\xa4\xdb\x25\x74\x3a\x9d\x74\x45\xa9\xc7\xd4\x1f\x1b\xe4\x09\x21\x64\x20\x1e\x8d\xf7\x95\x51\xef\xb4\x1b\x62\xaf\x35\xb6\x35\x07\x58\x96\x25\x37\x09\x00\x00\x18\x19\x19\x91\xc4\xd2\xbc\x76\x9b\xca\x54\xb9\x88\x65\x1c\x08\x10\x58\x27\x54\x6b\x6b\x74\xce\x87\x35\x1e\xcb\xf5\x84\xcc\x0d\xa5\x52\x29\x72\x33\xe5\x37\xb0\x5a\xad\xb8\xa1\x6a\x63\xf9\xaf\x14\xb5\x6f\x6e\xca\x3a\x76\x85\x4a\xc8\xdb\xa1\x81\x3e\x3e\x93\xc9\x10\xbf\xdf\xcf\xf6\xf4\xf4\xb0\x33\xc9\x01\xe6\x78\x13\xd2\x34\x8d\xeb\x37\x6f\x29\x78\x8c\x5d\xfa\xfa\xca\x41\xdd\xf7\x73\x3d\x82\x00\x81\xc1\x05\x53\x2d\x5d\x79\xa9\x63\x57\xf9\xfe\xb6\xbe\xa9\x44\x30\x23\x09\xbc\x12\xd3\x8c\x8d\x31\xd9\x2a\x34\x45\xf7\xaf\xe0\xf2\x7f\x60\x1f\x53\x3d\x8a\x01\x61\x00\x00\x9f\x99\x7b\x77\xcf\xc0\xb1\x27\x42\xa1\xd0\xed\xbd\x09\xa7\xc3\x42\x51\xb8\xb6\xb6\x56\x57\xa7\x5f\xb6\xa7\x36\x60\xdc\xad\xc9\x52\x9a\xd9\x6b\x08\x10\x20\x00\x02\x02\xa0\xd1\xb7\x84\x33\x31\x49\x4b\x99\x26\x67\xea\xc5\x37\x82\x8d\xbf\xeb\xec\xec\x14\xe7\x13\x40\xcd\x35\x49\x08\x21\xa1\x50\x68\xaa\x8f\xa4\x5a\x13\x15\xfa\x4f\x28\x05\x6d\x32\x71\x74\xb1\x42\xc6\x8a\x7f\x2b\x47\x80\x00\x51\x08\xd0\x0d\x9b\x98\xa4\x25\xde\x6b\x65\x4f\x7d\xe8\x18\x7a\xea\xfd\xce\x0b\xef\xf9\x7c\xbe\x79\xc9\xe7\x8d\xc0\x4c\x30\x0c\x83\xcb\xcb\xcb\xe9\xe5\xee\x72\x67\x99\x60\xaa\x5f\x92\x54\xad\x5b\xc8\x29\x5c\xba\x29\xca\x44\x4b\x88\x11\x29\x22\xb0\x8c\x34\x96\xd0\x65\x03\x03\x06\xbe\xd9\xa7\x1c\x3b\xdd\xd5\xe3\xf3\x77\x75\x75\x89\x82\x20\xdc\xb2\x90\xdd\xd1\xcf\xa9\xd9\x6c\xc6\x16\x8b\x85\x36\x1a\x8d\x2a\xad\x56\xab\x61\x18\x86\x16\x04\x41\xcc\x64\x32\xfc\xd8\xd8\x58\x26\x1a\x8d\x8a\xb1\x58\xec\xae\x9f\x71\xff\x53\xfc\x0b\x22\x7e\x8f\x92\x6b\x8a\xba\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x1b\xb0\xd0\x40\x1b\x08\x00\x00") +var _web_uiV1StaticFavicon32x32Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x1b\x08\xe4\xf7\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x07\xe2\x49\x44\x41\x54\x58\x85\xc5\x57\x7d\x6c\x53\xd7\x15\x3f\xf7\xbe\xe7\xe7\xef\x60\x3b\x01\xc7\xd8\xc4\x49\xec\x1a\xc7\x01\x4a\x02\x49\xa1\x59\x4b\x80\xb6\x34\x10\x4d\x81\xa9\x15\x43\xeb\x90\xd6\xb5\x9d\xa6\x6a\x12\x74\x0c\xa1\xa9\x63\x52\xa5\x69\x1d\xab\xb4\xae\x45\xa2\xea\xb4\xb5\xf4\x03\x28\xd0\x0f\x0a\xac\x45\x0d\xe4\x83\x26\x5d\xf9\x70\x4a\x82\xb3\x38\xae\xed\x24\x4e\x1c\xc7\x4e\xec\x38\xef\x39\x2f\xcf\xef\xbd\xbb\x3f\x5a\x67\x21\x24\x05\x86\xb6\xfd\xfe\xba\xba\xe7\xbe\xf3\xfb\xdd\x73\xcf\x3d\xe7\x3e\x80\xff\x33\xd0\x9d\x7e\xa0\x56\xab\xb1\xc9\x64\x02\x8d\x46\x03\x4a\xa5\x12\x0b\x82\x00\x99\x4c\x46\x4e\x26\x93\xc0\x71\x9c\xfc\x5f\x11\xa0\xd3\xe9\xf0\x32\x57\x99\x66\xbd\xc1\xf3\xd0\x72\x62\xde\xb8\x90\x63\x56\xe8\xa6\x28\x9b\x42\x42\x2a\x11\x13\x81\x55\x4a\x43\xa3\xda\x6c\x57\x37\x95\xb8\x70\x3e\xdd\xfd\xc9\x57\xfe\xeb\xe9\xf1\xf1\xf1\xdb\x12\xf3\x9d\x02\x94\x4a\x25\x7e\xb0\x72\x4d\xc1\x0e\xf5\xea\xe7\xee\x8d\xe5\xfd\x54\x25\x62\xd3\xad\x1c\x0a\x58\x66\x7d\x66\xee\xf0\x51\xb1\xe3\xc5\x46\xef\xe7\x91\x5b\x45\x65\x5e\x01\x36\x9b\x0d\x3f\x53\xbe\x65\xfb\xe6\x88\xe5\x65\xb5\x48\x15\xcc\xb4\x11\x20\x20\x21\x90\xb3\x94\x2c\x28\x64\x44\x53\x32\xa2\xd1\x2c\x57\x02\x25\xb3\xe7\x6d\xf1\xbd\x07\x3a\x4f\x1e\x8a\x46\xa3\xf3\x8a\xa0\xe7\x9a\x2c\x73\xbb\x99\x7d\x96\xfa\x03\xab\xc2\x79\xbf\xc8\x39\x96\x81\x40\x28\x9f\xbf\xe6\x5f\x98\x39\x1b\xc9\xe3\x5b\x47\xa4\x74\x78\x92\xe7\x79\x25\xa3\x64\xcc\x8a\xbc\x22\xeb\x84\xaa\xe6\x9e\xb8\xa6\xde\x31\xaa\x5e\x49\x11\x84\x19\x09\xeb\xcc\xa2\x66\xbd\xd9\x6c\xfe\x4b\x34\x1a\x15\x6e\x3b\x02\x4e\xa7\x93\x7e\xc1\xb6\xed\xe0\xbd\x51\xfd\xd3\xb9\xb9\x3e\x23\xef\xbb\x50\x3a\xb6\xff\xf2\x70\xcf\xb9\xde\xde\x5e\x36\x1a\x8d\x82\x28\x8a\x37\xec\xca\x6a\xb5\x62\xa7\xd3\xa9\x59\x65\x73\x6f\x58\x1f\xca\xdf\xaf\xce\x62\xdd\x21\xab\x6f\xe3\x07\x1f\x7f\x34\x24\x49\xd2\xbc\x11\xb8\x41\x40\x7e\x7e\x3e\xfe\xed\xea\x1f\xed\xde\x10\xce\x3f\x80\x00\x01\x01\x02\x6d\x25\xe3\x87\x4f\x33\xbd\x7b\x9a\x5b\x5a\x12\xa9\x54\xea\x96\x89\xa5\xd7\xeb\xf1\xf7\x6a\x6a\x0c\x66\x43\x81\xe1\xe4\x99\x8f\xc2\x13\x13\x13\x32\x45\x51\xd8\xe1\x70\x60\x84\x10\x04\x02\x01\x79\xa6\xa0\x1b\x04\x3c\x5d\xb7\xbd\xf2\xd9\x90\xa7\x9d\x26\x88\x21\x40\xa0\xc9\x99\x7a\xf5\x68\xfa\xd2\xde\xd6\xd6\xd6\xcc\xad\x88\xbf\x0b\x5b\x6b\xeb\x8a\x9e\x4b\x55\xfd\x1d\x13\xa0\xff\x5c\xd0\xb1\xe5\x68\xe3\xa9\x40\xce\x86\x73\x83\xb2\xb2\x32\xba\x21\x59\x7a\x80\x26\x88\x01\x00\xe8\xb4\x70\x67\x4f\x64\xbc\xfb\xee\x96\x1c\x00\x60\xad\xc1\xf5\x90\x69\x52\xe1\x31\xf0\x0a\xd7\x7d\xda\xd2\xcd\x33\x6d\xd3\x49\xf8\xb0\xa3\x6a\x8d\xbd\x57\xb5\x01\x00\x80\x65\xa4\xd4\x99\x82\xfe\x5d\xad\x1f\xde\x3d\x39\x00\xc0\x15\x18\xfc\xcc\xb1\x48\x7d\x11\x13\x44\x5f\xa1\x87\xcf\xde\x24\xc0\x62\xb1\xe0\xb5\x5c\xe1\x93\xb9\x8c\xbf\xb2\x24\xfd\x46\xcb\xa5\xb6\xc0\xec\x44\xfb\x4f\xc0\x30\x0c\x3e\xd7\xdc\x18\x19\x28\x1b\xda\x84\x10\x82\x60\x7b\x90\xd7\x6a\xb5\x38\x57\x1f\x68\x00\x00\xbb\xdd\xce\x94\x8c\xaa\x1f\x01\x00\x90\x11\x91\xbf\x54\xc7\xfe\xd6\xd7\xd7\x37\x2f\x39\xc3\x30\xd8\xe1\x70\x60\xa3\x36\x4f\x95\xe4\xd2\x7c\x20\x10\x90\xb3\xd9\xec\x4d\xeb\x97\x79\xca\x55\xbb\x16\x3f\xba\x8f\x26\x48\x75\x70\xf4\xc2\x0b\x2a\x85\x92\x79\xd9\xf5\xe3\x57\x44\x4c\x32\x7f\x1c\x3d\xb7\xf7\xea\xb5\x8e\x0c\x0d\x00\x50\x6a\x5c\x5c\xa4\x4f\x52\x8b\x01\x00\x46\x74\x42\xe0\x9f\x43\xc1\xc0\x6c\x67\x39\x18\x8d\x46\xbc\x63\xf5\x23\x0d\xf7\x84\xa9\x97\x14\x31\x52\x2c\xa8\x51\xd0\xbf\x7e\xc5\xae\x23\x5f\x7e\x7a\x7a\xf6\x2d\xf9\xa1\xb3\x76\xdb\xda\x1e\xc3\x6f\x00\x00\x76\xb8\x1e\x18\xc4\x04\xe1\x65\xbd\xba\x9f\x00\x00\x6c\x75\xd7\xb4\x5e\xbd\xd6\xf1\x1e\x0d\x00\x50\xa4\x30\xb9\x72\xe1\x4f\x68\xb3\xbe\xf8\x60\x9c\x9f\x4f\x40\x5d\x75\xed\x8a\xb2\x6e\x7c\x04\x13\xc2\x00\x00\x28\x27\x49\x69\x79\x0f\x3e\xbe\xa9\x7a\xdd\xaa\x33\x6d\x8d\xbe\xed\x55\x9b\x56\x7b\x90\xb9\xfa\xd4\xc4\x57\xef\x26\xd4\x42\x44\xa0\x64\x1e\xcb\x88\x8e\xab\x85\xfe\x29\x2c\xa5\x27\x15\x0b\x58\x11\x13\x61\x40\x91\xf6\x4f\x1f\x81\x81\xd6\x4c\xd7\xf8\x49\x85\x3c\xc2\x71\xdc\x9c\xe4\x7a\xbd\x1e\x97\x8a\x79\x8f\x61\x22\x30\x33\xe7\xb1\x0c\x8c\x93\x18\x1b\xb6\x6c\xdc\x34\xfc\x6c\xef\x8a\x46\x46\xc2\xba\x25\x66\xfd\xda\x83\xb1\x7f\xec\xcc\x54\x88\x0f\xd0\x88\x62\x9a\xbc\xed\x97\x39\x8e\x93\x07\xab\xd7\x54\xc8\x44\x16\x5b\x2e\xb6\xf6\x4f\x0b\x80\x19\xd7\x11\x00\xe6\xaf\xdb\x34\x0d\x04\xcf\xdd\x3e\x08\x06\xac\xd5\xeb\x18\x11\x13\x99\x91\x00\x04\x9a\xd0\xa3\xf1\x51\xb9\x63\x9c\xf5\x21\x84\x20\x18\x0c\x8a\x14\x45\xc1\x48\x30\x92\xce\x12\x49\x4c\x26\x93\x30\x2d\x80\x45\xd9\xb1\x9c\x23\x8d\x40\x2d\x62\x18\x66\x4e\x92\x64\x32\x29\x0f\x1b\xc4\x8f\x0b\x29\xf8\x25\x25\xc1\xf4\x22\x89\x06\x7e\x48\x2f\x9c\xfd\xac\xa9\x65\x38\xef\xc1\xba\xad\x16\x5e\x53\x7d\x99\x44\xde\xbe\x4f\x5d\xee\xfe\x79\xd8\xdd\x8c\x08\xa2\x5f\xab\x75\x6e\x54\x62\x85\xea\xc9\xaf\x9d\x8d\x12\x26\xfc\x9f\xd6\x59\x6b\xde\xfc\xf4\x84\x0f\x03\x00\x0c\x88\x63\x41\x02\x04\x00\x00\x16\x72\x0a\x8f\xc9\x64\x9a\xb3\x49\x01\x00\x34\x7b\xbf\xb8\xfc\x75\x95\xfa\x19\xd6\x40\x05\x45\x05\xf0\xac\x91\x0a\xf4\xae\x56\x3f\xd5\x7c\xa5\xbd\x23\x12\x89\xc8\x87\xde\x7f\xab\xe9\xa5\x8b\x47\xfe\x70\xfc\x83\x93\x11\x17\x63\xbe\x5f\x25\x52\x05\x4a\x09\x1b\x96\x2a\xcc\x0f\x96\x50\xa6\x35\x34\x41\x2a\xa5\x84\x0d\x4b\x75\x8b\x2b\xa7\x23\xd0\x9f\x1e\xe9\x4f\xab\xdc\xc3\x0b\x78\xba\xb0\x80\x55\xb8\xdc\x25\xc5\xc5\x5e\xf0\xfa\xe7\x12\x10\x08\x04\xc4\x63\x1c\x77\x78\xf9\xf2\xe5\xa7\x74\x3a\x9d\x81\x65\xd9\x54\xe7\xc5\xce\x54\xae\xe5\xf2\x3c\x2f\xf3\xfc\x37\x39\xdc\x2e\x86\xcf\x5a\x6c\xcc\x29\x4c\x10\x6e\xc7\x03\x27\x24\x22\xcb\x7a\x3b\xbd\x4a\xc4\x84\x6f\x4a\x77\x9f\x06\xf8\xb6\x17\xb8\x5c\x2e\x7a\xbf\xad\xe1\x9d\x8a\x41\xfd\xe3\x00\x00\x6d\xf6\xd4\xef\xf7\x5c\xfa\xeb\xaf\x93\xc9\xe4\x5d\x15\x22\xa5\x52\x89\x3d\x1e\x0f\x0d\x00\x10\x8f\xc7\x45\x59\x96\xc1\x68\x34\x62\x59\x96\xc1\xef\xf7\xcb\x92\x24\xc9\x18\x00\x20\x1c\x0e\xcb\xd7\x0a\xc6\xdf\xca\x1d\x43\xc5\xa0\xfe\x67\xeb\x2a\xd7\x14\xde\x0d\x39\x00\xc0\xd4\xd4\x94\xec\xf5\x7a\x05\x1d\xad\xd2\xbc\x5a\xfc\xc4\x91\x43\x25\x3b\x8f\x17\xe6\xe5\x1b\xba\xbb\xbb\xc5\x5c\x47\xc4\x00\x00\x82\x20\xc8\x9f\x0f\x5d\x3f\x1f\x36\xf1\x97\x01\x00\xd4\x22\x65\xd8\x39\xb5\xf2\x15\xb7\xdb\x3d\x6f\x2e\xdc\x09\xea\x17\x57\x35\xb8\xe2\x9a\xc7\x9d\x09\xcd\xb6\xfa\x82\xca\xed\x33\x6d\xd3\xd7\xcf\xeb\xf5\xf2\x17\x8a\x12\xcf\x8b\x88\x88\x00\x00\xae\xb8\x7a\xdb\x6e\x5b\xdd\xf3\x76\xbb\x1d\xcf\x76\x78\xa7\xe8\x55\x24\xaf\x26\xb4\xc2\xd0\xa8\x26\x3b\xec\x57\xa7\xbe\x98\x69\xa3\x72\x83\x6c\x36\x4b\x26\xb0\xd0\x5f\x58\x6c\xcd\x2f\x4e\xaa\xab\x11\x20\x58\x92\x56\xad\x73\xd9\x9d\xfa\x90\x96\x6d\x8a\x8d\xc4\xa4\xdb\x25\x74\x3a\x9d\x74\x45\xa9\xc7\xd4\x1f\x1b\xe4\x09\x21\x64\x20\x1e\x8d\xf7\x95\x51\xef\xb4\x1b\x62\xaf\x35\xb6\x35\x07\x58\x96\x25\x37\x09\x00\x00\x18\x19\x19\x91\xc4\xd2\xbc\x76\x9b\xca\x54\xb9\x88\x65\x1c\x08\x10\x58\x27\x54\x6b\x6b\x74\xce\x87\x35\x1e\xcb\xf5\x84\xcc\x0d\xa5\x52\x29\x72\x33\xe5\x37\xb0\x5a\xad\xb8\xa1\x6a\x63\xf9\xaf\x14\xb5\x6f\x6e\xca\x3a\x76\x85\x4a\xc8\xdb\xa1\x81\x3e\x3e\x93\xc9\x10\xbf\xdf\xcf\xf6\xf4\xf4\xb0\x33\xc9\x01\xe6\x78\x13\xd2\x34\x8d\xeb\x37\x6f\x29\x78\x8c\x5d\xfa\xfa\xca\x41\xdd\xf7\x73\x3d\x82\x00\x81\xc1\x05\x53\x2d\x5d\x79\xa9\x63\x57\xf9\xfe\xb6\xbe\xa9\x44\x30\x23\x09\xbc\x12\xd3\x8c\x8d\x31\xd9\x2a\x34\x45\xf7\xaf\xe0\xf2\x7f\x60\x1f\x53\x3d\x8a\x01\x61\x00\x00\x9f\x99\x7b\x77\xcf\xc0\xb1\x27\x42\xa1\xd0\xed\xbd\x09\xa7\xc3\x42\x51\xb8\xb6\xb6\x56\x57\xa7\x5f\xb6\xa7\x36\x60\xdc\xad\xc9\x52\x9a\xd9\x6b\x08\x10\x20\x00\x02\x02\xa0\xd1\xb7\x84\x33\x31\x49\x4b\x99\x26\x67\xea\xc5\x37\x82\x8d\xbf\xeb\xec\xec\x14\xe7\x13\x40\xcd\x35\x49\x08\x21\xa1\x50\x68\xaa\x8f\xa4\x5a\x13\x15\xfa\x4f\x28\x05\x6d\x32\x71\x74\xb1\x42\xc6\x8a\x7f\x2b\x47\x80\x00\x51\x08\xd0\x0d\x9b\x98\xa4\x25\xde\x6b\x65\x4f\x7d\xe8\x18\x7a\xea\xfd\xce\x0b\xef\xf9\x7c\xbe\x79\xc9\xe7\x8d\xc0\x4c\x30\x0c\x83\xcb\xcb\xcb\xe9\xe5\xee\x72\x67\x99\x60\xaa\x5f\x92\x54\xad\x5b\xc8\x29\x5c\xba\x29\xca\x44\x4b\x88\x11\x29\x22\xb0\x8c\x34\x96\xd0\x65\x03\x03\x06\xbe\xd9\xa7\x1c\x3b\xdd\xd5\xe3\xf3\x77\x75\x75\x89\x82\x20\xdc\xb2\x90\xdd\xd1\xcf\xa9\xd9\x6c\xc6\x16\x8b\x85\x36\x1a\x8d\x2a\xad\x56\xab\x61\x18\x86\x16\x04\x41\xcc\x64\x32\xfc\xd8\xd8\x58\x26\x1a\x8d\x8a\xb1\x58\xec\xae\x9f\x71\xff\x53\xfc\x0b\x22\x7e\x8f\x92\x6b\x8a\xba\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x1b\xb0\xd0\x40\x1b\x08\x00\x00") -func web_uiStaticFavicon32x32PngBytes() ([]byte, error) { +func web_uiV1StaticFavicon32x32PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticFavicon32x32Png, - "web_ui/static/favicon-32x32.png", + _web_uiV1StaticFavicon32x32Png, + "web_ui/v1/static/favicon-32x32.png", ) } -func web_uiStaticFavicon32x32Png() (*asset, error) { - bytes, err := web_uiStaticFavicon32x32PngBytes() +func web_uiV1StaticFavicon32x32Png() (*asset, error) { + bytes, err := web_uiV1StaticFavicon32x32PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/favicon-32x32.png", size: 2075, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/favicon-32x32.png", size: 2075, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticFavicon96x96Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xbb\x27\x44\xd8\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x60\x00\x00\x00\x60\x08\x06\x00\x00\x00\xe2\x98\x77\x38\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x79\x70\x1c\xd7\x99\xdf\xef\xbd\xee\x99\xe9\xb9\x0f\xcc\x00\x83\xc1\x00\x18\xe2\x22\x00\xf1\x00\x6f\x52\x92\x25\x48\xa6\x68\x51\xa2\x69\x59\xd6\xae\xb5\x8e\x77\x1d\xbb\xca\x49\x65\x8f\x6c\x5c\xa9\x4d\xe2\x4a\x25\xae\xad\xc4\xe5\x4a\x39\xc9\x46\xbb\xde\xec\xa6\x9c\x2d\x5f\x6b\xaf\xe5\x95\x25\xaf\x24\xeb\xa4\x64\x91\x92\x45\x90\x22\x41\x88\x24\x48\x10\x04\x71\x0c\x0e\x0e\x06\x83\x99\x9e\xbb\xbb\xa7\xe7\xbd\xfc\x81\x19\x60\x00\x02\x24\x40\x02\x94\x76\xe3\xaf\xaa\xd1\xbf\x19\xbc\xf9\xde\xfd\xeb\xef\x7d\xef\x68\xe0\x37\xf2\xb1\x10\xba\x02\xde\x68\xfd\xeb\x85\xff\xd1\x0b\xad\xb8\xb0\x4a\x8c\x35\xe2\xb5\xea\xff\xff\x02\x8b\xb8\x51\x36\xba\xb5\xfe\xa6\x07\xfc\x46\x3e\x3e\x42\x4a\x77\x0a\x80\x2d\xb9\xa3\x84\x2b\xff\xbf\x34\x2c\xd6\x1b\x4b\x92\x04\xaf\xd7\x0b\x9f\xcf\x07\xaf\xd7\x0b\xbb\xdd\x0e\xbb\xdd\x4e\x45\x51\xa4\x82\x20\x80\x73\x4e\x01\x80\x10\x42\x39\xe7\x20\x84\xb0\xf2\x5d\x55\x55\x96\xcf\xe7\x91\x4a\xa5\x98\x2c\xcb\x98\x99\x99\xc1\xb5\x6b\xd7\x2a\xf3\xb5\x52\x5e\x3e\x32\x5c\x59\x01\x1f\x89\x50\x4a\xe1\xf7\xfb\x11\x0c\x06\xd1\xd8\xd8\x48\xdd\x6e\x37\x05\x87\x28\x32\x22\xd9\x54\xc1\xeb\xce\x8b\x4d\x76\x45\x6c\x70\x28\x42\xa3\xa4\x53\x8f\xb9\x20\xb8\xc4\x22\x91\x28\x87\x91\x13\xe8\x45\xca\x15\x45\x64\xa9\xbc\x81\xc5\xb3\xa6\xe2\xf5\x94\xa4\x8f\xca\x92\x3e\x9a\x34\xeb\x53\x9a\xc0\x73\x20\xd0\xf2\xf9\x3c\x0b\x87\xc3\x2c\x1c\x0e\xe3\xfa\xf5\xeb\x50\x14\x65\xc3\x1a\xd0\x5a\xf1\xd2\x1e\x70\xd7\xc4\xe3\xf1\xd0\x96\x96\x16\xb4\xb5\xb5\x51\xb3\xd9\x2c\x1a\x18\xb5\xd5\xa4\x8d\xed\x0d\x09\xd3\x03\x81\x94\x69\x5f\x55\xd6\xb0\x4d\x2a\xd0\x00\x01\x31\x92\x5b\xe8\x2a\xf5\x80\x79\x0c\x02\x56\x10\x78\x4c\x36\xeb\x03\xd7\xed\xda\x99\x09\xb7\x72\x7c\xd2\xa9\xf6\xe6\x0c\x2c\xae\x17\x75\x6d\x74\x74\x94\x5d\xbd\x7a\x15\xe3\xe3\xe3\x77\x35\xcf\xcb\xc9\x72\x3d\x60\xa3\xa8\x06\x84\x10\xba\x69\xd3\x26\x6c\xd9\xb2\x05\xd5\xd5\xd5\xa2\x08\x6a\x6b\x48\x48\x7b\xdb\x66\x2c\x9f\x0d\xc5\xa5\x43\xe6\x02\x6d\x20\x20\x94\x57\x24\x6c\x55\x78\x49\x05\x2c\xc5\x1c\x1c\x3a\xe5\xf1\x88\x43\x7b\xef\x8a\x2f\xf7\x0f\x43\xbe\xfc\x1b\x8a\x81\xc5\x53\xa9\x94\x76\xf9\xf2\x65\xd6\xdf\xdf\x0f\x5d\xd7\xd7\x23\x8f\x77\xd4\x03\x36\x4c\x08\x21\x68\x6d\x6d\xc5\x8e\x1d\x3b\xa8\xd3\xe1\x34\xda\x55\x21\xb0\xe5\xba\xf5\xe9\xce\x69\xeb\x3f\xb3\xa9\x42\x3b\xe1\xb7\x6a\xe3\xeb\x27\x9c\x00\x3a\x65\xf1\x21\x6f\xfe\xf9\xf3\x81\xcc\xf7\x22\x0e\xed\x62\x5e\x55\x72\x03\x03\x03\xec\xf4\xe9\xd3\xff\xf4\x28\xa8\xae\xae\x8e\xee\xdd\xbb\x17\x5e\xaf\x57\x72\x29\x86\xd0\x9e\xb0\xfd\x5f\x6d\x8e\x5a\xbe\x60\x60\xd4\xb3\x5e\x71\xdc\xaa\x07\xac\x84\x19\xb8\x36\xe5\x54\x8f\x7d\xd0\x90\x7e\x66\xcc\xad\xf4\xe4\x95\x7c\xae\xaf\xaf\x8f\x5d\xb8\x70\xe1\xae\x51\xd3\x86\x52\xd0\x83\x0f\x3e\x48\x5b\x5b\x5b\x8d\x96\xa2\x58\xbd\x77\xcc\xf1\x07\x5b\xaf\x5b\xff\x85\xc8\xa8\x6b\x4d\xf4\xb2\x1a\x7c\x9b\x15\x50\xc6\x20\xd0\xc3\x6e\xf5\x95\xf7\x36\xc9\xdf\x9c\xb1\x15\x2e\xce\xc6\x67\x95\x13\x27\x4e\x60\x66\x66\xa6\xb2\x4c\x36\xa4\x07\x08\xa5\x0f\x95\x1c\x40\x2a\x3e\x2f\xfd\x7e\x55\xb8\xb1\xb1\x11\x47\x8f\x1e\x15\x6a\x6b\xfc\xf6\x2d\xd3\xb6\xa7\x3e\xdd\xef\xfd\x61\x7d\x42\x7a\x8c\x72\x22\x81\x60\xae\xf4\xca\xa1\xef\x10\x2f\x24\xf6\xf6\xff\x12\x10\xea\xca\x8b\x9b\xef\x99\xb6\xfe\xae\xa5\x40\xed\xc9\x1a\xf1\x72\x53\x7b\x6b\xce\x60\x30\xb0\xa9\xa9\x29\x60\x1d\xdb\xca\x52\xbc\xee\xe4\x7b\xdf\x7d\xf7\xd1\xce\xce\x4e\xa3\x43\x15\x9b\x3e\x39\xe8\xfe\x66\x63\x42\x3a\x0a\x80\x92\x52\xbc\x1c\x1c\xeb\x8d\xd7\xbb\x78\x92\x92\x7e\xe9\xed\xd6\xc4\x9f\x8c\xb9\x95\x13\xd7\x23\xd7\x73\x2f\xbd\xf4\xd2\x86\x51\x52\xb9\x07\x50\x2c\x34\x26\x5e\xf1\xf9\x66\xb8\xfc\x3b\x0e\x00\x76\xbb\x9d\x1e\x3e\x7c\x98\x6c\xda\xb4\xc9\xd2\x32\x6b\x79\xec\xe8\x45\xef\xdf\x7a\xb3\xc6\xbd\x04\x84\x60\xa1\xa8\x70\x3b\x18\xe0\x60\x04\x4c\x31\xb0\x7c\x4a\x2a\x26\x53\x92\x2e\xa7\xa4\x62\x32\x6b\x2c\x66\x54\x03\x53\x19\xe1\x8c\x70\x50\xca\x4b\x15\x7d\x5b\xfd\x76\x01\x4b\x3a\xf5\xb5\xcd\x58\x3e\x67\x60\xa4\x90\x68\x30\x7c\x50\x2c\x16\x8b\x91\x48\x64\xad\xe5\xb3\x2a\xbc\x2e\xbe\x20\xa7\xd3\x89\x23\x47\x8e\x50\xbb\xd9\xea\xda\x3f\xe2\xfc\xa3\xdd\x61\xfb\x7f\xa0\x9c\x18\x79\x29\x16\x10\x80\x57\x50\xc7\x4d\x31\xe1\xd0\x29\xd7\x63\xd6\x42\x64\xca\xa9\x86\xa7\xed\xda\xe8\xac\xb5\x10\x4e\x99\x8a\xd3\x05\x81\xa7\x00\xae\x70\x40\xaf\x18\x01\x8b\xe0\x90\x04\x06\x9b\x4d\x13\x7d\x9e\x9c\xd8\x50\x9d\x36\x36\x04\x52\xa6\x50\x4d\xca\x18\x30\x15\x89\x34\x67\x65\xf1\x39\x13\x08\x58\x15\xa6\x80\xa4\x53\x5e\x07\xc0\x52\x5d\x5d\xad\x2c\x53\x4e\xeb\x22\xe5\x0a\xb8\xed\x2e\x16\x08\x04\xe8\xa7\x3e\xf5\x29\x6a\x21\xc6\xea\x83\x03\x9e\xff\xd6\x36\x63\xfe\x62\xb9\x15\x2e\x64\xab\xe2\xa1\xb7\x0c\xe6\x00\x74\xca\xf4\xb0\x5b\x1d\xbe\xea\xcb\xf5\x86\xdd\xca\xb9\x9c\x81\x8d\x72\xf0\x28\x21\x44\xe6\x9c\x67\x00\x28\x84\x10\x8d\x73\xe8\x4b\xd2\x4b\x39\xb8\x58\x14\x88\x98\x34\xeb\x92\x2c\x15\x6c\x23\x55\x8a\x03\x1c\x5e\x63\x91\x34\xd4\x25\x4d\xdb\x5b\x67\x2c\x3b\x37\xcd\x4a\xed\x92\x4e\x25\x02\x32\x57\xc8\xf3\x89\xbb\x11\x73\x00\xd7\xbc\xf9\xde\xd3\x0d\xa9\xbf\x07\xa0\xc9\xb2\xbc\xb4\x8c\xd6\x0d\x97\x2b\x60\xa9\x15\xb4\xaa\x81\x55\xb9\xf0\xad\xc4\x18\xf8\xf4\x45\xef\x77\x83\x49\xd3\x21\x70\x32\xff\x74\xe1\xbc\xfc\x94\x59\xb9\xbf\x67\x8c\xc5\xcc\xf9\x40\xa6\xe7\x52\x4d\xf6\xad\x8c\xa9\x78\x89\x83\x4f\x10\x42\xe2\x9c\xf3\x14\x00\x05\x80\x9e\xcb\xe5\x58\x3a\x9d\x66\xc9\x64\x12\xc5\x62\x11\xa5\x02\x01\x00\x48\x92\x04\xab\xd5\x0a\xab\xd5\x0a\xbb\xdd\x4e\x1d\x0e\x07\x05\x20\x82\xc0\xa8\x0a\xcc\x36\x52\xa5\xbc\x33\xe2\x51\x02\x26\x9d\xb4\xb5\xcd\x58\x1e\xec\x9a\xb4\x3f\xe0\xc9\x89\x5e\xb2\x28\x1d\x8b\x45\x36\x17\xa2\xc7\xda\x12\xcf\x70\x8a\x01\x45\x51\x72\x1b\x39\x3e\xb8\xed\x81\x58\x20\x10\xc0\xa3\x8f\x3e\x2a\x5a\xb9\x21\xf8\xc4\x45\xdf\xf7\xfc\x49\xd3\x03\x2b\x19\x2c\xcb\x59\x2f\x59\x53\x31\x73\xb6\x3e\xf5\xf6\x85\xda\xec\xab\x05\xca\x2e\x11\x42\x26\x38\xe7\x71\x00\x4a\x32\x99\xd4\x27\x26\x26\xd8\xf8\xf8\x38\x62\xb1\x18\xf2\xf9\xfc\xad\x92\xb3\x28\x63\x81\x40\x80\xfa\xfd\x7e\x34\x34\x34\xc0\xeb\xf5\x8a\x94\x52\x89\x73\xee\x20\x84\x04\x09\x43\x5b\x6b\xcc\xfc\xc8\xbe\x31\xe7\x21\x4f\x4e\xac\x26\x65\x8e\x04\x00\x70\x68\x02\xd7\xfe\xbe\x2b\xfa\xa7\x51\x9b\xf6\x1c\xe7\x7c\xf4\xb5\xd7\x5e\xd3\x27\x26\x26\x36\xbc\x02\xd6\x24\x0e\x87\x83\x1e\x3d\x7a\x94\x3a\x8d\xd6\xc0\xd1\x7e\xef\x77\x83\xb2\xe9\xd0\xcd\x5a\x54\xa5\xc5\xa2\x13\xae\x9f\x0f\x64\x7a\x4e\x37\xa6\x9e\x55\x0c\xac\x8f\x73\x3e\x0a\x20\xae\x28\x8a\x36\x38\x38\xc8\x4e\x9d\x3a\xb5\xee\x16\x47\x57\x57\x17\xdd\xbc\x79\x33\x75\x3a\x9d\x22\x00\x17\xe7\x3c\x28\x32\xb2\x65\xdb\x94\xed\xb3\xfb\xc2\xce\x43\x92\x4e\xa5\x72\x3a\x8f\xb5\x25\xbe\xdf\x5f\x9b\xfd\x0b\xce\xf9\x40\x6f\x6f\xaf\x72\xf6\xec\xd9\x0d\x1d\x94\xad\x34\x10\x5b\xb1\xc6\x0c\x06\x03\x3e\xf7\xb9\xcf\x51\xa7\xdd\xe1\x39\x7c\xa9\xea\x99\xd6\x98\xf9\xe9\xf2\x83\xab\x4c\x3b\x95\x98\x90\x05\x4b\x2f\x66\xd1\xa2\xc7\x36\x27\x7e\x18\xb1\x6b\x6f\x72\xf0\x41\x42\x48\x2c\x99\x4c\x2a\xe7\xce\x9d\x63\x83\x83\x83\x1b\x3e\xf4\xaf\xab\xab\xa3\x7b\xf6\xec\x81\xcf\xe7\x33\x12\x42\x3c\xe0\x68\x71\x28\xc2\xbd\x0f\x5f\xf5\x7c\xb9\x31\x61\x6a\xeb\xf7\x67\xdf\x3b\xd6\x96\xf8\x06\x08\x7a\x27\x26\x26\x52\xaf\xbe\xfa\xea\xdc\x40\xed\xe3\xe2\x0b\x22\x84\xe0\xd1\x47\x1f\x45\x7d\xb0\xde\x71\xef\x88\xf3\xeb\x7b\xc6\xed\xff\x8e\x94\x38\x1f\x58\x79\xcc\x04\xc2\x71\xd1\x9f\xed\x39\xde\x22\x7f\x57\x17\xf8\x69\xce\xf9\x84\xaa\xaa\x99\xde\xde\x5e\xd6\xdf\xdf\x5f\xce\xe4\x9d\xc8\x9a\x32\x1f\x0a\x85\xb0\x7f\xff\x7e\xea\x70\x38\x24\xce\x79\x80\x82\x6c\xe9\x8c\x58\x3f\x39\x58\x9d\x7b\xbd\x20\xf0\x9e\x54\x2a\x15\xff\xe9\x4f\x7f\xaa\xaf\x45\xe7\xed\xe2\x35\x51\xd0\xae\x5d\xbb\xe8\xce\x9d\x3b\xa5\xd6\x98\xe5\xa9\xc7\x2e\x55\x7d\x97\x82\x18\x6f\xf5\x1b\x9d\x70\xfd\x44\xb3\xfc\xfc\xf9\x40\xe6\x47\x1c\xfc\x3c\x21\x24\x3a\x38\x38\xa8\xbd\xf3\xce\x3b\x1f\xb9\x2b\x78\xcf\x9e\x3d\x74\xfb\xf6\xed\x22\xa5\xd4\x01\xc0\xc6\x39\xcf\x30\xc6\x52\x2f\xbe\xf8\xa2\x3e\x33\x33\xb3\xaa\xf4\x35\x37\x37\x53\x51\x14\x91\x48\x24\x10\x8d\x46\xd7\x9c\xa7\x55\x53\x50\x4d\x4d\x0d\x8e\x1c\x39\x22\x7a\x34\xe3\xb6\xa7\x7b\x6b\x7e\x29\x15\x84\x6a\x60\x79\xda\x29\x63\x8d\x32\xed\xd5\xce\xd9\xff\x3b\xe2\x51\x9e\xe5\xe0\x97\x0a\x85\x82\xfc\xee\xbb\xef\xb2\x6b\xd7\xae\xdd\x34\xae\xbb\x89\x7d\x3e\x1f\x76\xef\xde\x8d\xfa\xfa\x7a\x1a\x8b\xc5\x58\x4f\x4f\x0f\x4a\xee\x87\x15\x7f\x1b\x0c\x06\xe9\x9e\x3d\x7b\xe0\xf5\x7a\x8d\x84\x10\x11\x00\x38\xe7\x7a\x36\x9b\xd5\x4f\x9d\x3a\xc5\x2a\x66\xe1\x6e\x99\x86\x55\x51\x90\x20\x08\x78\xea\xa9\xa7\xa8\xcb\xee\xf4\x3e\x79\xde\xf7\xe3\xfa\xa4\xf4\xf0\xcd\xc2\x03\x80\x2a\x30\xe5\xa5\x2d\xb1\xff\x3d\xee\x54\x9e\x25\x84\x0c\x26\x93\xc9\xcc\xab\xaf\xbe\xca\x52\xa9\xd4\xad\x7e\x7a\x3b\x72\xd7\x2a\xac\xa5\xa5\x05\xdd\xdd\xdd\xa2\x47\x31\xb6\xec\x1f\x73\x7c\xad\x21\x21\x3d\x40\x38\xe8\xa4\x53\xed\x39\xd5\x98\x7a\x66\xc6\x5e\xb8\xd8\xd7\xd7\xa7\x9d\x3e\x7d\x7a\x55\x69\x5b\xd5\x40\x6c\xd7\xae\x5d\xd4\xe9\x74\x4a\x5b\x27\x6d\x5f\x0c\x26\x4d\x0f\xf3\xf2\x88\x91\x00\x58\x06\xeb\x02\xd3\x5e\xe9\x9c\xfd\xeb\x09\xa7\xfa\x77\x84\x90\xc1\xc9\xc9\xc9\xcc\x2f\x7f\xf9\xcb\x8d\xa6\x9c\x0d\x19\x28\x55\x62\x9f\xcf\x47\xbb\xbb\xbb\xc5\xaa\xbc\x71\xdb\x6f\x7d\x58\xfd\x82\x59\x13\x82\x00\x00\x02\x34\xc7\x2c\x2d\x0d\xb2\xf4\xd8\x2f\xb6\xce\x7c\x1e\x5d\x5d\xef\x4d\x4f\x4f\x6b\x63\x63\x63\xec\x56\x3a\xcb\xb5\xb1\xdc\x7d\xbe\x57\x6c\xdb\xb6\x4d\xb4\x29\x42\xdb\x81\x51\xc7\x9f\x80\x13\xcc\xfb\x5b\x38\x6e\xc0\x9c\x70\xbc\xd5\x96\xf8\xdb\x31\xb7\xf2\x2c\x08\x2a\x0b\x9f\xae\xa0\x7f\xbd\x30\x36\x1a\x77\x75\x75\x81\x12\xea\x78\x60\xd8\xf5\xa7\x96\x82\x10\x04\x78\xc9\xd3\x05\x00\x1c\xc6\x22\xf5\x74\x5f\x75\x7f\x8b\x70\x78\x76\xee\xdc\xb9\x2a\x9d\xcb\x7d\xb9\xe8\xbb\xc7\x1e\x7b\x8c\x52\x42\x6d\x07\x46\x9d\x5f\x33\xeb\x42\x75\xd9\x7f\x4a\xb0\xe0\x4b\x2d\x63\x0e\x8e\x33\xf5\xe9\xd7\x2e\x57\x67\x7f\xc0\xc1\x07\x26\x27\x27\x33\xaf\xbd\xf6\xda\x86\x14\xc6\x12\xbc\xe1\x71\x10\x42\x68\x7d\x7d\x3d\x35\xe9\x34\x10\x94\x4d\xf7\xcf\x7d\xb7\x10\xb0\x8c\xbd\x59\x43\x97\x2b\x2f\xb6\xf9\x7c\x3e\xd1\x6a\xb5\xde\x52\xff\x4d\x29\xa8\xa6\xa6\x86\xd6\xd5\xd5\x19\x7d\x19\xc3\xce\xf6\xa8\xe5\x29\x3e\xef\xba\x5d\x9e\x82\x26\x5c\xea\x60\x4f\x28\xf9\x57\x84\x90\x4b\xc9\x64\xf2\x6e\xd0\x4e\xa5\x6c\x28\x05\x71\xce\x99\x28\x8a\xa2\xa0\xc2\x45\x39\x91\x38\xb0\xe0\xc4\x23\x0b\x98\x10\x88\x26\x9d\xfa\x01\x88\xd9\x6c\x56\xbb\x95\xfe\x9b\x52\xd0\x8e\x1d\x3b\x40\x08\xb1\xed\x09\x3b\xfe\x80\x72\x22\x91\x15\x68\x07\x04\x50\x45\x96\x3b\xd6\x96\xf8\x0b\x46\xd1\xa7\x69\x9a\xfc\xc6\x1b\x6f\xdc\x0d\xda\xb9\xab\x14\x04\x00\x8a\x81\x65\x52\x92\x1e\x2d\xd3\x4e\x25\x05\x11\x02\x68\x02\xcf\xc8\x66\x3d\x0a\x80\x55\x55\x55\xdd\x3e\x05\xd5\xd4\xd4\xa0\xbe\xbe\xde\xe8\xc9\x8a\xdb\x5a\x62\xe6\x23\xe5\xde\xb6\x1c\x05\x01\x1c\x27\x43\xc9\xe7\x65\xa9\x70\x82\x73\x1e\x3d\x79\xf2\x24\x4b\x24\x12\x95\xe9\xfe\x47\x4f\x41\x00\x68\x3e\x9f\x67\x45\xc2\xe3\xa7\x1b\x52\xbf\xe0\xa5\x02\x2f\x4b\x99\x82\xcf\x05\xd3\xaf\xe5\xc5\xe2\x14\x63\x8c\x65\x32\x99\x5b\xea\xac\x34\x89\x16\x5d\xed\xed\xed\x20\x84\x58\xba\x26\xed\x5f\x22\x20\x22\xe7\x73\x36\xfe\x9c\x8f\x9f\x2f\xc2\x33\xb6\x42\xf8\x42\x6d\xe6\xc7\x84\x90\xf0\xe8\xe8\xa8\x76\xe5\xca\x95\x1b\xf4\x6d\xf0\x85\xbb\x81\xaf\x5c\xb9\xc2\x08\x21\xb1\xcb\x35\xb9\x67\x4f\x34\xcb\x3f\x53\x04\xae\x94\xe7\x3c\x0a\x94\x6b\x67\x83\xe9\x37\x4e\x35\xa4\xbe\x4b\x08\x89\x5c\xbd\x7a\x55\x57\x55\xf5\x96\x3a\x2b\xdd\xd1\x65\xca\x60\x26\x93\x89\x36\x35\x35\x51\xa9\x40\x83\x6d\x33\x96\x23\x65\x8a\x23\x28\xfb\x77\x08\xca\x73\x1c\x20\xc0\xfb\xa1\xe4\x4f\x8a\x84\x0f\xe8\x05\x3d\xf3\xde\x7b\xef\x2d\xd5\x87\xbb\x84\x2b\xe3\xdd\x10\x7c\xf6\xec\x59\x34\x34\x34\xe4\x3c\x1e\xcf\xa5\x73\x75\x99\x3f\x1b\xa8\xce\x1d\xaf\x49\x1b\xb7\x52\x0e\x1a\xb5\x17\xae\x64\x8c\xc5\x33\x20\x18\xc8\xe7\xf3\x99\xd2\x38\xe0\x96\x3a\x2b\x67\xc4\xe6\x29\xa8\xa5\xa5\x05\x06\x83\x41\x6a\x99\x32\x3f\x66\xd2\x89\x07\x58\x18\x32\x57\x52\x10\x08\x30\xe9\xd0\x06\xc7\x3c\xca\xeb\x00\x62\x67\xce\x9c\x61\x15\xae\xe3\xbb\xca\xcd\x77\x23\xbe\x62\xb1\x88\xe7\x9e\x7b\x8e\x3d\xf9\xe4\x93\xb2\xd7\xeb\x3d\x9f\x33\x14\xc3\xa3\x55\xca\x31\x00\x94\x73\x9e\x21\x84\xc8\xa9\x54\x4a\x79\xfd\xf5\xd7\xd9\x12\x17\xfa\xda\xac\xa0\xd6\xd6\x56\x0a\x0e\xc7\xe6\xa8\xe5\x71\xf0\x8a\xd6\x0e\x2c\xb1\x7c\x38\xce\x05\xd3\x2f\x72\x82\xe1\x5c\x36\xa7\xdc\xcd\xf5\x34\xcb\xc8\x86\x0f\xc4\xca\xe0\xf9\xe7\x9f\x67\x5b\xb7\x6e\x55\x9a\x9a\x9a\x22\x4e\xa7\x93\x02\x40\x36\x9b\x65\xd7\xae\x5d\x43\x5f\x5f\xdf\x72\x65\xb0\xa2\xce\x65\x29\xc8\xeb\xf5\x8a\x36\x4d\x68\xa8\x4d\x9b\x76\x96\x5b\xfc\x72\x14\x94\x92\x8a\xd1\x91\xaa\xfc\x9b\x00\xe2\x1f\x7e\xf8\x61\x65\xf7\x02\xee\x9c\x52\x3e\x56\x14\xd4\xd6\xd6\x46\x01\xa0\xe4\x36\xc7\x85\x0b\x17\x50\x6a\x70\x8c\x52\x4a\x19\x63\x0c\x00\x5c\x2e\x17\x6d\x6c\x6c\x84\xc5\x62\x01\x00\xc8\xb2\x8c\xcb\x97\x2f\xb3\x95\xf4\xdf\x40\x41\xed\xed\xed\x94\x10\x62\xac\x4f\x98\xee\x17\x18\xb1\x94\xff\xb9\x1c\x05\x0d\x54\x67\xdf\xd3\x09\x1f\xd5\x0b\xba\x72\xf5\xea\xd5\x79\x1d\x95\xfa\xee\x12\xde\x10\xbd\x35\x35\x35\xb4\xbb\xbb\x1b\x0e\x87\x43\x12\xf8\xdc\x22\xe1\xee\x07\xbb\x75\x45\x55\xb4\x33\x67\xce\xb0\x4b\x97\x2e\x01\x00\x2d\x95\x3d\xba\xbb\xbb\x69\x5b\x5b\x9b\x28\x14\x89\xcd\x9d\x17\xfd\x45\xca\x75\x59\xd2\x23\x07\x0e\x1c\xc8\x7d\xf0\xc1\x07\xec\xc2\x85\x0b\x37\xc4\x75\x03\x05\x05\x02\x01\x4a\x08\xb1\x34\x26\xa4\x4f\x80\x2f\xac\x6a\xb8\x81\x82\x00\x5c\xf5\xe5\xdf\x24\x84\xc4\x87\x87\x87\x59\xc5\x13\x7f\xc3\xa4\xb6\xb6\x96\xfa\xfd\x7e\xb8\xdd\x6e\x88\xa2\x08\x45\x51\x90\x4e\xa7\x11\x89\x44\xe8\xf5\xeb\xd7\xd7\x95\x6a\x3a\x3b\x3b\xe9\x7d\xf7\xdd\x27\x3a\x15\x31\xb4\xef\x8a\xf3\x8f\x1b\x13\xd2\xc3\x02\x87\x71\xda\xa6\xf5\x9d\x6e\x48\x3d\x23\xdd\x7f\xff\x19\xb7\xdb\xad\xfc\xfa\xd7\xbf\x66\x00\xf0\xf8\xe3\x8f\xd3\xba\x40\x9d\xad\x6b\xc2\xf6\x85\x3d\xe3\x8e\x7f\x6b\xd1\x68\x88\x03\x2c\x6e\xd1\x7b\x8f\xb7\x24\xfe\x93\x78\xe0\xc0\xfb\x66\xb3\x59\x29\xcd\x2f\xcf\xc7\xb5\x88\x82\x08\x21\xb4\xb6\xb6\x96\x82\xc3\x11\x48\x9a\xba\x16\xad\x6c\x58\x42\x41\xb2\xb9\x30\x15\xb3\x16\xce\x03\xc8\x55\xb4\xfe\x0d\xa1\x97\x5d\xbb\x76\xd1\xce\xce\x4e\x6a\x36\x9b\x45\xc2\xb8\x64\x50\xb8\x8b\x16\xb9\xc4\x04\xa2\x68\x12\x91\x39\x81\x92\xcd\x66\xf5\x2b\x57\xae\xb0\x8a\x29\xc4\xdb\xa6\x9d\xaa\xaa\x2a\xba\x7f\xff\x7e\xd1\x9d\x37\x74\x3e\xf5\x61\xf5\x0b\x56\x95\x86\xca\x2b\x39\x1a\xe3\x52\x53\x50\x96\x0e\xbd\xd2\x19\xfb\x12\xef\xec\x7c\x2d\x91\x48\x28\x36\x9b\x0d\x81\x40\xc0\xb2\x7b\xdc\xfe\xfb\xf7\x8d\x38\xbf\x09\x0e\x4a\xc8\xdc\x24\x6c\x55\x56\xdc\x7f\xf4\xa2\xf7\xe7\xcf\x6d\x9f\xf9\xcc\xf6\xed\xdb\xdf\x1f\x1b\x1b\xd3\xa7\xa7\xa7\xe7\x2b\x7a\x11\x05\xd9\xed\x76\x58\x2c\x16\x6a\x57\x85\xa0\x4d\x15\x02\xcb\xad\x65\x28\x53\x50\xd8\xa5\x9e\xe7\xe0\x51\x55\x51\xb5\x48\x24\x32\xaf\xa3\x52\xdf\x9d\xe2\x40\x20\x80\xee\xee\x6e\xd1\x66\xb5\x5a\xec\x33\xc5\x7b\xbd\x97\xf2\x5f\xb2\xcd\xea\xf7\xd3\x22\xaa\x01\x18\x01\x68\x45\x11\x53\x69\xaf\x78\x62\xb6\x41\xfa\x81\x6d\xe7\xce\xd3\x9b\x37\x6f\x56\xde\x7a\xeb\x2d\x56\xca\xe4\x6d\xc5\xbd\x63\xc7\x0e\x88\x82\xe8\x78\xf0\x9a\xeb\x9b\x36\x4d\x08\x81\x2c\xcc\xd8\x11\x02\x88\x9c\xd8\x1e\x1a\x72\x7f\x3b\xec\x56\xfb\xf6\xef\xdf\x1f\x16\x45\x11\x66\x8d\x86\xf6\x86\x1d\x7f\x42\x40\xe8\xd2\xf0\x06\x46\x1d\xf7\x8e\x3a\xbf\xfe\xc2\xd6\x99\xdf\xdd\xb1\x63\x47\xac\xe4\x1f\x03\x96\x0e\xc4\x7c\x3e\x1f\x00\x18\xbd\x59\x43\xfb\x0d\x83\xaf\x25\x03\xb1\x49\xa7\x7a\x9e\x10\x92\x8a\x44\x22\xac\xf4\x00\x5a\xd7\xab\xb1\xb1\x11\x87\x0f\x1f\x16\xdd\xa2\xa5\xa9\xe9\x6c\xfe\x7b\x4d\x67\xf3\xbf\x74\x4c\xeb\x4f\x0b\x45\x04\x09\x60\x2c\xad\x0b\x35\x8a\x05\x84\x5c\x11\xfd\xf7\x9a\x4f\xe7\x5f\x6f\xec\x53\xfe\xd2\x69\xb0\x04\x8f\x1c\x39\x22\x36\x36\x36\xa2\x32\x6f\x6b\xc1\x8d\x8d\x8d\x65\xa7\xdb\x03\x73\x79\x27\x15\xe5\x30\x87\x6d\xaa\xd0\xe4\x4f\x19\xf7\x8a\xa2\x28\x02\x30\x56\x67\x8c\xbb\x0d\x45\xe2\x59\x29\x7c\x4d\xca\xb8\xdb\xc0\x88\xb7\xae\xae\xae\xb2\xd7\x2d\xf6\x05\xb9\x5c\x2e\x00\x10\xab\xb2\x86\xcd\x65\x3b\x7f\xde\xd7\x51\xc2\xa5\xe7\x02\x8b\xda\xb5\x0b\x9c\x73\x65\x72\x72\xb2\xfc\xfb\x4a\x5d\x77\x84\xeb\xea\xea\xe8\xc1\x83\x07\x45\xb3\x4a\xda\x5b\x4e\xe5\x5e\x70\xcc\xe8\x4f\x12\x70\x5a\xf6\xb9\x00\x1c\x0b\x78\xee\x4e\x38\x44\x57\x44\xff\xbd\x96\x0f\xf2\xcf\x9a\x74\x12\x3a\x78\xf0\xa0\xe8\xf5\x7a\x17\xe5\x6f\xb5\x58\x10\x04\x6a\x60\xc4\x43\x39\x91\x56\xf2\xf9\x00\x80\xc8\x88\x17\x73\x2c\x42\x39\xb8\x54\x2a\xa6\x65\xc3\x73\xc2\xc1\x01\x49\x10\x84\xca\xfc\xde\x48\x41\x00\x8c\xae\xbc\xd8\xb0\xa0\x6c\x4e\x2a\x29\x48\x11\x59\x26\x6d\x2a\x86\x01\x68\xb1\x58\x0c\x95\x3a\xee\x14\x0b\x82\x80\xee\xee\x6e\x2a\x82\x56\x87\xce\xe5\xbe\x6b\xca\xf1\xce\x1b\x12\xb1\x28\x41\x7c\xfe\x4e\x00\x48\xe9\xe2\xde\xc6\x3e\xe5\x2f\xaf\xed\x31\xff\xee\x43\x0f\x3d\x14\xfd\xf9\xcf\x7f\x3e\x6f\xa5\x00\xa0\x94\x52\x34\x37\x37\xd3\x4d\x9b\x36\xc1\x66\xb3\x51\x00\x34\x95\x4a\xb1\xcb\x97\x2f\x63\x72\x72\x12\xa5\x85\x5d\xc8\x19\x8a\x99\x8c\xb1\x18\x73\xaa\xa2\x7f\x39\xb7\x33\x23\xd0\x13\x96\xc2\x54\xe9\x6b\x36\x6d\xd7\x86\x14\x91\xa5\xcc\xba\xe0\x58\x2e\xfc\x75\x87\x36\xa8\x53\x9e\x63\x15\x89\xc1\x52\x0a\xf2\x78\x3c\x00\x20\xd9\x55\xd1\x7f\x03\xed\x54\xe0\x8c\xa9\x18\xd3\x29\x4f\x71\xce\xd9\xf4\xf4\xf4\xba\x52\x4f\x57\x57\x17\xac\x56\xab\xe4\x1b\xd3\xbe\x62\x4e\xb1\xbd\x7c\xde\x0c\x23\x58\x16\xf3\xf2\xe7\x05\x6c\x8b\x17\x0f\x7a\x26\x0b\xbf\xed\x76\xbb\x2d\x9d\x9d\x9d\xe5\xfc\x01\x00\xfb\xcc\x67\x3e\x83\x87\xba\x1f\x92\x76\x7b\x5b\x3b\x1f\xd2\x1a\x9f\x7e\xa0\xd0\xf8\xe4\x8e\xda\xb6\xa6\xc7\x1f\x7f\xdc\xf8\xe8\xa3\x8f\xd2\x54\x2a\xc5\x34\x4d\x63\x8c\x22\x7e\x2e\x98\x7e\x65\xce\xef\x75\x23\xa5\x8c\xb9\x95\xbe\xa4\x54\x1c\x06\xa0\x01\xd0\x55\x03\x0f\xf7\x84\x52\xcf\x2f\x17\x5e\x13\x98\x72\x32\x94\x7c\x16\x04\xf2\xe4\xe4\xe4\x22\xba\x5b\x64\x05\x89\xa2\x48\x09\x60\xb4\x68\xd4\x53\xe9\xff\x41\x05\xe6\x7c\xae\x02\x40\x90\x2b\x68\x85\x75\x1f\x7c\x75\x74\x74\x50\x52\xe4\xd5\xde\xb1\xc2\x97\xc9\xfc\x8a\xa2\xb9\x56\x4e\x96\xc5\x73\xf7\x85\x85\x61\x1c\x84\x13\xf8\x46\x0b\x5f\x8d\xd7\x19\x7e\xd1\xd1\xd1\xa1\x5c\xbc\x78\x11\x00\xd8\x17\xbf\xf8\x45\xd1\x61\xb2\x7a\x1e\xbe\xe2\xfe\x46\x7b\xd4\xf2\x95\x39\xbf\x3e\x47\x91\x20\x75\x2e\x98\xfe\x1f\x64\x53\xc3\x9f\x7f\xfe\xf3\x9f\x4f\x8d\x8e\x8e\xb2\xd6\xd6\xd6\xd8\x87\x75\x99\x1f\xdb\x55\xa1\x61\xc7\xa4\xfd\x61\xca\x09\x9d\x2b\x07\x8e\x49\xa7\x3a\xf4\xe6\xe6\xf8\x33\x1c\x3c\x92\x88\x27\xf4\x64\x32\x89\x50\x28\x14\xf9\x30\x90\xf9\x5e\x91\x70\x71\xff\x98\xe3\xa8\x55\x13\x1c\x1c\xc0\x8c\xbd\x30\x71\xbc\x25\xf1\xc3\x19\x7b\xe1\x6d\xce\xb9\x5c\x1e\x3b\x94\x2b\x61\x11\x05\x39\x9d\x4e\x10\x10\xa3\x49\xa7\xb6\x72\x5b\x2b\x4b\x25\x05\xe5\x0d\x4c\xe6\x9c\x6b\xc9\x64\xb2\xb2\x00\x71\xa7\xb8\xa6\xa6\x06\x66\xb3\x59\xb4\x24\x8a\xbb\x0d\x0a\x0f\x2d\x8a\x78\xc5\x04\xf1\xc5\xf7\x12\x96\x32\xac\x53\xca\xb0\x76\xb7\xdb\x1d\x75\xb9\x5c\x5a\x57\x57\x17\xb5\x58\x2c\xb6\x4f\x0c\xba\xbe\xd1\x31\x6d\xf9\xfd\x72\x85\x11\x00\x22\x27\x8e\xdd\xe3\xf6\x3f\x55\x45\xa6\x9d\x69\xc0\x77\xa2\xd1\x68\x2e\x9b\xcd\xe6\x6c\x36\xdb\xc5\x77\x9b\x92\xdf\xec\xf7\x67\x8f\x37\x24\xa4\x5d\x02\x23\xc6\x88\x43\x1b\x98\x72\xaa\xef\x72\x82\x3e\x70\xc4\xdf\x7d\xf7\x5d\xc8\xb2\x0c\x9f\xcf\x97\xb3\xd9\x6c\x17\x2f\x06\xb2\xcf\x5c\xf2\x67\x5f\xb7\xa9\x42\xb0\x48\xa1\x65\x8d\xc5\x61\x10\x0c\x02\x08\x0f\x0d\x0d\x69\xe1\x70\xb8\x22\x13\x4b\x06\x62\x84\x10\x91\x32\x88\x02\x2b\xcf\xf8\x54\x64\xb6\x02\xab\x22\x4b\x11\x42\xf4\x8a\x9d\x85\xeb\x22\x3e\x9f\x8f\x12\x42\x8c\xe6\x14\xdb\x51\x2e\x9e\xf2\xb8\x03\xc0\xf2\xb8\xd4\x09\xe6\x76\x1a\x2d\xc2\xd4\x9c\x66\xdb\x14\x87\xf0\x7e\x5b\x5b\x9b\xd6\xd4\xd4\x24\x5a\x55\xa1\x69\x4b\xc4\xfa\xcf\xcb\x0b\x88\x2b\x67\xb2\x40\x08\x76\x4c\xd8\xff\xe8\xc3\xba\xcc\x73\xf5\xf5\xf5\xa3\x2f\xbe\xf8\x22\x7b\xec\xb1\xc7\xe2\x36\x9b\xad\x37\x6e\xd5\xc3\x71\x6b\xe6\x65\xcc\x35\x98\x0c\x80\xb8\xae\xeb\xa9\x9e\x9e\x1e\xbd\x44\xc1\x78\xf9\xe5\x97\xd1\xdd\xdd\x2d\xfb\xfd\xfe\x4b\x8c\x62\x34\x65\x2e\x5a\x4a\x65\x93\x03\x90\xe9\xef\xef\xd7\xcb\x83\xb6\x0a\xb9\xc1\x17\x04\x70\x88\x73\x1b\x1d\x56\xa6\x20\x46\xb8\x0e\x40\xaf\x50\xb4\x2e\x14\x54\x36\x02\x44\x8d\x57\xdf\x9c\x76\x6e\x41\x41\x25\x2c\xaa\xbc\x16\x80\xb8\x6d\xdb\x36\x10\x42\x44\x6f\xd2\xd0\x25\x70\x62\x59\x69\xb9\xbc\xa5\x40\xfd\x0e\x45\x68\x2a\x58\xa5\x09\x59\x96\x95\x9f\xfc\xe4\x27\xec\xc0\x81\x03\x99\xe6\xe6\xe6\x9c\xc5\x62\xa1\x00\x50\x2c\x16\xd9\xd8\xd8\x18\x3b\x77\xee\x1c\x66\x67\x67\xe7\x29\x38\x95\x4a\xb1\x17\x5f\x7c\x11\x0d\x0d\x0d\xca\xa6\x4d\x9b\x94\xaa\xaa\xaa\x38\xe7\x1c\x91\x48\x04\xc3\xc3\xc3\xa8\x18\x97\x2c\x2a\xef\xe5\xdc\xd1\xf3\x72\x93\x81\xd8\xa2\x27\xf9\x3a\x63\xca\x2b\x5b\x26\x6e\x8d\x57\xda\x5b\x33\x77\xa8\xc1\x9c\xe5\x03\x80\x16\x05\x4e\x2b\x0b\x7c\x2e\x3f\x15\xe1\x01\x14\x28\x17\x01\xa0\xa1\xa1\x81\x86\xc3\x61\x9c\x3c\x79\x12\x27\x4f\x9e\x64\x16\x8b\x85\x89\xa2\x88\x25\xeb\x9a\x6e\x48\x7f\x38\x1c\xc6\x12\x9a\xb9\x69\xf8\x45\x14\xc4\x39\x07\x27\x04\x8c\x2c\x7c\x2e\xcf\xf9\xce\x63\x00\x02\x23\xc6\x8a\xf5\x9c\xeb\xe9\x03\xa2\x9c\x73\x56\x30\xd3\x28\x27\x0b\x2d\x9d\x63\x65\x3c\xdf\x0f\xca\x5e\x5b\x94\xa7\x07\x09\x34\x33\x9d\x06\xc0\x8a\xc5\x22\x28\xa5\x2c\x62\xd7\x86\x72\x46\x16\xb7\xa8\xd4\xb3\xdc\x8e\xc9\x19\x5b\x61\x38\x2d\x15\xa3\x00\x58\x38\x1c\x9e\x77\x4b\xb4\xb6\xb6\xc2\xe1\x70\x00\x00\x52\xa9\x14\xc6\xc6\xc6\xb0\xc4\xf7\x34\x2f\x5d\x5d\x5d\x65\x6f\x28\x05\x00\x59\x96\xd9\xc5\x8b\x17\x57\xdc\x95\xbf\x68\x83\x46\x69\xb7\x8a\xae\x53\x3e\x37\x9b\xbf\x8c\x41\xcb\x39\x60\xd2\xa9\x8d\x10\xb2\x5c\xeb\xbd\x19\xd5\x94\xc3\xad\x88\x53\xa9\x14\x08\x21\x5a\xd6\x45\xfb\x41\x08\x23\x9c\x53\xf0\x8a\x64\x2c\x87\x2b\xee\xf3\xc9\xe4\x00\x17\xa0\xe5\x9d\x74\x00\x80\x7e\xea\xd4\x29\xec\xd9\xb3\x47\x23\x06\xc3\xc4\x89\x66\xf9\x27\x9f\x1a\xf0\xfc\x3e\xe1\x8b\x7b\x7c\x81\x32\xed\x44\xb3\xfc\x03\x4e\x10\x49\xa5\x52\x0c\x00\x1e\x7a\xe8\x21\xda\xdc\xdc\x2c\x4a\x4c\x70\xf8\x32\xc6\x26\xc2\x41\x63\x75\x85\xe1\x6d\xdb\xb6\xa5\x26\x26\x26\xb4\x57\x5e\x79\x65\x3e\x8f\x6e\xb7\x1b\x8f\x3f\xfe\x38\xb5\x9a\x2d\x96\xfa\x84\xa9\xcb\x1f\x37\xed\x2c\x08\x2c\x37\x52\xe5\x7e\xa7\xfe\x70\x7d\x78\x74\x74\x54\xab\x58\xa8\x30\x5f\x3e\x4b\xf7\x88\x31\x0e\xe8\xaa\x81\x65\xa0\xae\x4c\x41\x16\x4d\x70\x81\x43\x2c\xb5\x9c\x75\xa3\xa0\xd2\x9a\x4c\x4d\xb5\xd2\x81\xac\x8b\x0e\xda\xe2\xac\x7d\xae\xb0\x57\x41\x47\x4b\x24\x5d\x25\x9c\x2f\x98\x48\x18\x80\x36\x3c\x3c\x0c\x49\x92\xd8\xce\x9d\x3b\x23\x57\x7c\xb9\x1f\xab\x02\x63\x07\x46\x9d\x4f\x7a\x72\xa2\x7f\x6e\x54\xaf\x4e\xbc\xd7\x94\xfc\x49\xc4\xa1\xbd\x0c\x20\x7e\xe1\xc2\x05\x76\xe8\xd0\x21\x1a\x6a\x0c\xd9\xba\x26\x6d\x5f\xd8\x3f\xe6\xfc\x8f\x26\x9d\x04\x01\x82\x82\xc0\xa2\xbd\xc1\xf4\x9f\x9d\x6a\x0c\xfe\xf5\x53\x4f\x3d\x95\x7a\xe1\x85\x17\x60\xb1\x58\x70\xe4\xc8\x11\xea\x12\xad\x81\xc7\xcf\x57\x3d\x53\x2f\x9b\x9e\x28\xb3\xc5\xfd\xc3\x3c\x73\xba\x21\xf5\x5f\xd0\x18\xfa\xeb\xa3\x47\x8f\x66\x5e\x7a\xe9\xa5\xf2\x6a\xf0\x1b\x29\x28\x95\x4a\x51\xbb\xdd\xae\xe5\x0c\x45\x19\x58\x99\x82\xec\xaa\x50\x4d\x00\xc9\xe3\xf1\x50\x2c\x7e\x18\xdf\x91\x24\x12\x09\xc8\xb2\xac\xbb\x5c\xae\xc8\x74\xb3\xe9\x67\xd6\x44\xfe\x3f\xcf\x35\xe8\xb5\x51\x10\x28\x61\xd3\x2d\xa6\x67\x39\x10\x8d\x4e\x4f\xeb\xb9\x5c\x8e\x9d\x39\x73\x06\x75\x75\x75\xb9\x9a\x9a\x9a\x81\x11\x4f\xfe\x6f\x46\x3d\xca\x71\x49\xa7\x01\x0e\xce\x54\x91\x87\x41\x30\xc4\x39\x9f\x18\x1b\x1b\x53\x44\x51\x44\x63\x63\xa3\xd4\x19\xb1\x3e\xfd\xe0\x35\xd7\x5f\x96\xbd\x9b\x00\x60\xd0\x49\xf5\xbe\x31\xc7\xb7\x08\x87\xf5\x64\x08\xdf\x3e\x70\xe0\x40\xc6\x6e\xb7\xc3\x2c\x99\x1d\x0f\x5f\x76\xff\xb7\x06\x59\x7a\x82\xcf\x9b\x64\x00\x65\xb0\xed\x1f\x73\x7c\x2b\x63\x2a\xa6\xb8\xbf\xe6\x87\x1d\x1d\x1d\xca\xa5\x4b\x97\x16\x86\xe6\x15\x77\xaa\x69\x1a\x03\xa0\xa5\xe6\x78\xb0\xc2\x11\xb4\x80\x39\x00\x9b\x26\x78\x0d\x45\xe2\x30\x18\x0c\x6b\xf1\xf3\x60\x35\xf8\xe2\xc5\x8b\x0c\x80\x9c\xf6\x0a\xaf\xc6\x1a\x0d\xc7\xca\x76\x0e\x29\x95\xee\x52\x5c\x79\x2f\xdb\x96\x91\x66\xe3\x8b\x39\xa7\xf0\x0e\x00\xb9\xaf\xaf\x6f\x5e\xff\x2b\xaf\xbc\x82\x91\x91\x91\x14\x80\x41\x10\xbc\xad\x18\xd8\x73\x8a\xc8\x9e\x07\xc1\x7b\x8c\xb1\xe1\x81\x81\x81\xdc\xb1\x63\xc7\xd0\xd1\xd1\x41\x05\x4e\xbc\x7b\xc6\xed\x5f\x23\x58\x44\xb5\xf3\x95\xbf\x63\xd2\xfe\x87\xe6\x02\x0d\x75\x76\x76\xd2\xfa\xfa\x7a\xd1\xa9\x88\xed\x2d\x31\xf3\x13\x4b\xc3\x96\xc2\xd3\xdd\x61\xfb\x1f\x0b\x9c\x78\xb7\x6d\xdb\xb6\xa8\x7c\x16\x51\xd0\xec\xec\x2c\xbc\x5e\xaf\x26\x9b\x0b\x13\xc0\xca\x14\x64\x28\x12\x87\x2b\x2f\x36\x44\xed\xfc\xa2\xdf\xef\xa7\xeb\xe9\x8e\x1e\x18\x18\x40\x67\x67\x67\xce\xe3\xf1\x0c\x4d\xb5\x9b\x9e\xa1\x45\x58\x3c\x13\x85\x7b\xe7\xc7\x59\x37\xa1\x20\x4e\x80\x99\x4d\x86\x63\xd3\x2d\xc6\xbf\x02\xc1\x70\xe4\x7a\x44\xa9\xb0\x48\x68\xa1\x50\xc0\x9b\x6f\xbe\x89\xea\xea\x6a\xad\xa1\xa1\x41\xf3\xfb\xfd\x29\xc6\x18\x22\x91\x08\x86\x86\x86\x90\x4a\xa5\x20\x49\x12\x1c\x0e\x07\x35\xab\x42\xd0\xa1\x88\x4d\x73\x79\xbe\xd1\x6a\x32\x14\x89\xcb\x9b\x35\x74\x8d\x1b\xd5\x21\x00\xa8\xca\x8a\xdb\x28\x87\xb4\x52\x78\x87\x2a\x36\x59\x34\x21\xc8\x1c\x8e\x88\x24\x49\x4c\x51\x94\x1b\x29\x28\x9f\xcf\x53\xce\xb9\x12\xb3\xea\x57\x81\x95\x29\x88\x10\x02\x7f\xda\xb8\x7d\xda\xa6\x1d\xf3\xf9\x7c\x5a\x24\x12\x59\x37\x4b\x88\x31\x86\xb7\xde\x7a\x8b\x3e\xf1\xc4\x13\xb2\x28\x8a\xbd\xe3\x5b\x4c\xdf\xcc\xba\x85\xdf\xf1\x0f\xaa\x47\x0d\x2a\x77\x60\x59\x0a\x22\xd0\x2c\x24\x7e\x7d\xb3\xe9\x17\xb2\x5f\x7c\x16\x84\xf4\x65\x32\x99\xd4\xaf\x7e\xf5\x2b\x70\xce\x6f\x48\x5b\x34\x1a\x45\x34\x1a\x5d\x36\x7e\x45\x51\x00\x80\x72\xc2\x8d\xf3\x75\xbe\xc2\x39\x13\x3a\xe5\xf3\xad\x39\x6f\x60\xf3\x7b\x89\x97\x0b\xaf\x18\x58\x4a\x31\x30\xbd\x14\xc7\x7c\x9a\x16\x59\x41\xa5\xc3\x29\xf4\x59\xab\x36\xc4\x08\xd7\x09\xc8\x42\x0f\xa9\x1c\x81\x02\xa8\x93\xa5\xdd\xe7\x03\x59\x4b\x5d\x5d\x5d\xe6\xc2\x85\x0b\xeb\x62\x05\x95\x71\x22\x91\x60\xaf\xbf\xfe\x3a\x1e\x7d\xf4\xd1\xa8\x28\x8a\xa7\xe3\x41\x43\x4c\xf6\x8b\xc7\x1d\x51\xfd\x41\x7b\x4c\xef\x94\xb2\xac\x9a\xea\x30\x16\x45\xa2\xa9\x36\x1a\x49\xf9\x84\x8b\x29\x9f\x78\x9c\x0b\xe4\x3c\xe7\x7c\x34\x97\xcd\xa6\x5e\x7e\xf9\x65\x96\xc9\x64\xd6\x3c\x18\x94\x24\x89\x02\x60\x39\x03\x93\x63\x36\x6d\xd8\x9f\x36\xb5\x63\x19\x91\xcd\xfa\xd4\xb4\x5d\x1b\xc4\xdc\x33\x90\x46\xed\xda\x50\xc2\xac\x4f\x78\xf2\x86\xe0\x72\xe1\xaf\x7a\x73\xa7\x0b\x94\xc9\x45\xbd\x58\x8e\xef\x46\x2b\x48\x96\x65\x10\x42\xf4\xac\x91\x4d\x25\x25\x3d\xe2\xae\x50\xb6\x64\x20\x86\x7a\xd9\xb4\x9b\x32\xb8\xaa\xab\xab\x63\x15\x8b\x02\xd6\xd5\x22\x7a\xee\xb9\xe7\xd8\xc3\x0f\x3f\x1c\xaf\xae\xae\xce\x31\x91\x4c\xc8\x01\xc3\x69\x39\x60\xf0\x02\x70\xa0\x34\x23\x06\x20\x05\x20\x0a\x20\x06\x40\x9e\x9c\x9c\xd4\xde\x7d\xf7\x5d\xa4\xd3\xe9\xdb\x8a\x57\x51\x14\x24\x12\x09\xe6\x76\xbb\x63\x27\x9a\xe5\x1f\x7d\xf6\xbc\xef\x1b\x06\x46\xe7\xb7\x62\x11\x42\x50\x24\x9c\xbd\xdb\x24\xff\x2d\xa3\x98\x62\x6c\xae\x55\x83\xd2\x89\x37\x37\xc7\xff\xcf\x67\x2e\xfa\xbe\x2e\xe9\x74\x7e\x31\x03\x08\x10\xb5\x69\xe1\x93\xa1\xe4\xf7\x08\x21\xb1\xd1\xd1\xd1\x45\x0e\xcc\xf2\x59\x11\x1c\x00\x57\x14\x85\x77\x76\x76\x42\x14\x45\xc9\x97\x35\xee\xf7\xa5\x0d\x4d\xcb\x51\x10\x08\x20\x32\x62\x9d\x74\xa9\xa7\xb2\x36\x0c\x46\xa3\x51\xbd\x64\x3b\xf3\xf5\xbc\x54\x55\xe5\x03\x03\x03\x3c\x91\x48\x14\xad\x56\x6b\xc6\x66\xb3\xc5\x39\xe7\x11\x00\x61\x42\xc8\x08\xe7\x7c\x84\x10\x32\xc6\x18\x9b\x99\x9e\x9e\x4e\xf7\xf4\xf4\x14\x4f\x9f\x3e\xcd\x34\x4d\xbb\xd3\xb8\x51\x5f\x5f\x5f\xc8\x48\x2c\x3e\xe1\x52\x93\xce\xbc\x58\x67\x2e\x50\x2b\x23\x9c\x47\x6d\xda\xc4\x5b\x6d\x89\xef\x8f\x7a\x94\x9f\x72\xf0\x70\x6f\x6f\xaf\x36\x36\x36\xc6\x83\xc1\xa0\x9a\x91\xd8\xcc\x90\x37\x3f\x4e\x39\x71\x08\x1c\x62\x4a\xd2\xe5\x8b\xb5\xd9\xf7\x7f\xd5\x96\xf8\x5f\xaa\x81\xf7\x30\xc6\x66\xdf\x7e\xfb\x6d\x56\xa2\x20\x0e\x80\x2f\xdd\x29\xcf\xa6\xa6\xa6\x58\x73\x73\x73\x2a\xec\x56\xce\xdc\x13\xb1\x1d\x5c\xa8\xc9\xc5\x14\x44\x40\xd0\x3e\x6d\xfd\xf4\xb8\x5b\x7d\xad\xbd\xbd\x5d\x19\x1f\x1f\x9f\xef\x56\x65\x5d\xb8\x4d\x0a\x5a\x8a\x87\x87\x87\xd9\xf0\xf0\x30\x05\xa0\x85\x42\x21\xdd\x66\xb3\xcd\x27\x2b\x93\xc9\xa0\xd4\xaa\xd6\x3a\x30\x5c\x11\x5f\xbe\x7c\x19\xc1\x60\x50\x09\x85\x42\x43\xd7\x9d\xda\x8f\x7e\xbe\x7d\xe6\xa4\xb1\x48\x82\x00\xa0\x09\x3c\x02\x82\x21\x00\xe1\xd8\x4c\x2c\xd7\xd7\xd7\x07\xce\x39\x02\x81\x80\x12\x0a\x85\x86\x64\x8b\x9e\x79\xab\x35\x7e\x86\x80\x78\x00\xe8\xa5\xe3\x16\xc2\x8c\xb1\xd8\x3b\xef\xbc\xa3\x97\x16\x2d\xcf\x97\xd5\xd2\xf3\x82\x88\xd9\x6c\x46\x43\x43\x03\x72\x06\x66\xda\x3e\x65\x7b\x42\xe0\x73\xcf\x81\xa5\x14\x04\x00\x4e\x45\xac\xed\xf7\x67\x7f\x21\xb9\x6c\xb3\x03\x03\x03\x4c\xd7\xf5\x9b\x39\x8f\xc9\x7a\x60\x59\x96\xe7\x1f\xa2\xd1\x68\xb4\x7c\x6c\xc1\xcd\xe2\xbd\x2d\x3c\x32\x32\x02\x8b\xc5\x52\xf0\x78\x3c\x49\x42\xc9\xf5\x22\xc5\x60\x91\xe2\x0a\x08\x86\x18\x63\x91\xa1\xa1\x21\xe5\xd8\xb1\x63\x28\x16\x8b\xf3\xe1\x0b\x85\x82\xee\xf5\x7a\x53\x06\x83\x21\x02\x82\x30\x08\x46\x08\x21\x93\x99\x4c\x26\xfd\xd6\x5b\x6f\x15\x47\x47\x47\xb1\x34\xae\x65\x87\x92\x5f\xfd\xea\x57\x8d\x04\xa4\xf3\x89\x0b\xde\xbf\x09\xc5\xcd\x3b\x97\xa3\xa0\xb9\xd5\x89\x1c\xef\x36\x25\xff\xeb\xd9\x60\xea\xdb\x67\xcf\x9e\xcd\xf4\xf6\xf6\xae\xa7\x5f\xe8\x63\x21\x1e\x8f\x87\x86\x42\x21\x78\xbd\x5e\x00\x73\xa6\xfa\xc8\xc8\x08\xe2\xf1\xf8\x8a\x79\x6d\x6c\x6c\xa4\x5e\xaf\x17\x65\x13\x77\x25\xbf\x11\xb0\xc4\x0a\x42\xa9\xeb\x27\x12\x09\xdd\xe3\xf1\xc4\xae\x54\xe7\x4e\x34\x26\xa4\x9d\x73\xcf\x81\xc5\x14\x54\xf6\xa5\x6f\x9f\xb2\x7d\xe1\x42\x20\xf3\xa3\x7b\xee\xb9\x67\xb8\x54\x01\xeb\x4e\x41\xab\xc4\xeb\xe2\x12\x5f\x8a\xe3\xf1\x78\xb9\xb0\x17\x7d\x1f\x0a\x85\x68\x53\x53\x13\xdc\x6e\x37\x05\x80\x74\x3a\xcd\xae\x5d\xbb\x86\x6b\xd7\xae\x61\x6c\x6c\x8c\x8d\x8d\x8d\xad\x4a\xff\x0d\x14\x04\x80\x18\x0c\x06\x04\x83\x41\x9e\x92\x74\xb6\x35\x62\x3b\x62\x60\xd4\xb4\x1c\x05\x11\x02\x98\x74\xe2\xce\x19\x58\x74\xb6\x8a\xf7\x52\x4a\x0b\x25\x7f\x4e\xa5\xce\x79\xbd\x1b\x8c\x57\x8a\x77\x5d\xb1\x28\x8a\xe4\xd0\xa1\x43\xd8\xb9\x63\xa7\x31\x64\xf1\xd5\x6f\xc9\x79\x1e\x6c\x2c\xba\xee\xb1\x7b\x9c\x7a\x6d\x5b\x28\x5b\xdf\x50\xaf\x8f\x8f\x8f\x93\x42\xa1\xb0\x2a\x9d\x8b\xac\xa0\xf2\x35\x3d\x3d\xcd\xbb\xba\xba\x38\x13\x40\x6c\x9a\xd8\x59\x9b\x36\xb5\x2c\x47\x41\xc0\x9c\x59\x56\x9d\x31\x76\xf6\xfb\xb3\x2f\xba\x6b\xbc\x89\xab\x57\xaf\xb2\x92\x4b\x63\x5d\x2d\xa2\x8f\xcb\x75\xf8\xf0\x61\xd2\x10\xac\x77\x1c\x18\x75\xfc\xeb\xc3\x03\x55\x3f\x68\x8b\x59\xbf\xd4\x3c\x6b\xfe\xad\x2d\xd7\x6d\x5f\xb1\x69\x82\x23\x16\x14\xce\x36\x84\x1a\xd5\xfe\xfe\xfe\xe2\x6a\xf4\x2d\x3d\xb2\xac\x3c\xf8\x43\x55\x55\x15\x77\xbb\xdd\x2c\x69\x2e\x92\xad\xd7\x6d\x8f\x13\x90\x85\x19\xc0\x52\xdb\x2b\x63\x03\xa3\x36\xa3\x4e\xa5\x31\xaf\x76\xdc\xe5\x76\x29\x43\x43\x43\x65\x5d\x4b\xf5\xd2\x0d\xc4\x95\x71\x6d\x08\xde\xba\x75\x2b\xe9\xe8\xe8\x90\xb6\x4d\xd9\xbf\x7c\xff\x88\xf3\xdb\x94\x11\xa9\x3c\xe2\x25\x1c\x86\x9a\x8c\xf1\x00\xe5\x84\x45\xfd\xfc\x94\xc9\x64\x2a\x4c\x4c\x4c\xdc\x52\xe7\xb2\x14\x04\x80\xa8\xaa\x8a\xd6\xd6\xd6\xa2\x6a\xe4\x05\x4f\x4e\xdc\xe6\xcb\x1a\xeb\x51\x2e\xfc\x72\xe0\x0a\xec\xcd\x1a\xee\x89\x38\xd4\x73\xf0\x5b\x47\x54\x55\xd5\xa3\xd1\xe8\x3f\x39\x0a\x7a\xe4\x91\x47\xa8\x24\x1a\x6b\x0f\x0f\x54\x7d\x47\xd2\x05\xcf\x52\x9f\x0f\x01\x81\x2f\x6b\xd8\xd2\x5f\x9b\x7d\xde\x51\xed\x99\xbd\x70\xe1\x02\x67\x8c\xdd\x54\x67\xe5\x03\x61\xd1\x35\x39\x39\xc9\xa6\xa7\xa7\x35\xce\xf9\xd4\x07\xf5\xe9\xbf\xd3\x09\xd7\x17\x86\x29\xc0\x52\x2c\x30\x62\xfc\xe4\x55\xcf\xb7\xcc\x1a\x0d\xed\xd9\xb3\x47\x2c\x59\x0d\x77\xb4\x46\xe8\xe3\x76\x59\xad\x56\x6a\x2e\x50\xbf\x4d\x15\x1a\x00\x2c\x3a\xe5\xa5\x8c\x0d\x45\xe2\x72\xe5\xc5\x4e\x51\x14\x45\x5d\xd7\x6f\xa9\x73\x25\xb7\x31\x00\xd0\x73\xe7\xce\x81\x10\x22\xcf\x5a\x0b\x3d\x97\xfd\xd9\xf7\xca\xb4\x53\xae\xbf\xa5\xd8\xa1\x88\x2d\x8f\x5c\xf1\x7c\xcb\x28\x1a\x5c\x87\x0e\x1d\xa2\x26\x93\x69\xcd\xee\xe8\x3b\xc0\xab\x71\x89\xdf\x36\x2e\x6d\x39\xa5\x3a\xe5\xb4\x58\x9e\x31\x5c\x46\x38\x81\x9e\x37\x30\x0d\x00\xad\xaf\xaf\xbf\xa5\xfe\x1b\x0a\xbd\x32\xc0\xf8\xf8\x38\x22\x91\x88\x06\x82\x70\x4f\x63\xea\x07\x79\xb1\x98\x59\x89\x82\xca\x53\x07\x9b\xe2\xd2\xd1\xfb\x87\x9d\xff\xde\x66\xb5\x39\x0e\x1f\x3e\x0c\x83\xc1\xb0\xe1\x85\x53\x71\xdf\x30\x2c\xcb\x32\x18\x63\x4c\x15\xb9\x1c\x76\x2b\xe7\xe7\xf2\xbc\x98\x82\x00\x20\x62\xd7\x86\x64\xb3\x1e\x06\xa0\x27\x93\xc9\x5b\xea\x5f\xd6\x0a\xaa\xbc\xe2\xf1\x38\xe9\xe8\xe8\xd0\x35\x81\x29\x05\x01\xae\x50\x5c\xea\x22\x95\xcd\xbf\xf2\x11\x4b\x00\xc2\x09\xfc\x69\xe3\x9e\x82\xc0\xe4\x54\xad\xe1\x7c\x20\x10\x28\x6f\x5b\xfd\xc8\x2d\x98\x3b\xb9\x38\xe7\xbc\xa6\xa6\x86\x3b\x1c\x0e\x4c\xdb\xb5\x7c\x73\xcc\x7c\xbf\x51\x27\xe6\x4a\xb7\xb3\x62\x60\xb9\xd7\x3a\x66\xff\x7b\xc6\x58\x3c\x9d\x4c\x26\xd3\xbd\xbd\xbd\xb7\xb4\x84\x56\xb4\x82\x4a\xdf\xf1\x5c\x2e\x47\x9c\x4e\x67\xd1\xe3\xf1\xa8\x33\xb6\x42\xa2\x2e\x69\xda\xe7\x54\xc5\xaa\x4a\x2b\x68\x29\x06\x27\xb4\x41\x96\x1e\xcc\x1b\xd8\x4c\xb6\xd6\x78\x29\x18\x0c\x16\xae\x5c\xb9\x52\xb6\x00\xfe\xd1\x5a\x41\xf9\x7c\x1e\xad\xad\xad\xba\x66\xe0\xf2\xa0\x2f\x3f\x26\x70\xe2\x34\xea\xd4\xa2\x8a\x4c\x19\xf6\xe5\xfb\xdf\xd8\x9c\xf8\xce\xac\x4d\x7f\x1d\xc0\xd4\xa9\x53\xa7\x0a\xb3\xb3\xb3\xb7\x6f\x05\x55\x7e\x3f\x35\x35\x85\x8e\x8e\x8e\x82\x60\x10\xf3\x53\x4e\x2d\xd5\x31\x6d\xe9\x16\x19\x35\xdc\x9c\x8e\x88\xd0\x18\x97\x1e\x29\x52\x9e\x49\x05\x0c\x17\x5a\x5a\x5b\xf4\xf1\xf1\x71\xae\xaa\xea\xc7\xd2\x0a\x2a\xbd\x1e\xe5\xa6\x61\xd2\xe9\x34\x8a\xc5\x62\xb1\xae\xae\x2e\x53\x10\xf9\xe4\x68\x95\xd2\xfb\x61\x5d\xe6\x9d\xbe\x60\xe6\xe5\x61\xaf\xf2\x0f\x8a\x81\xf5\x00\x18\x1f\x1a\x1a\x52\x7a\x7b\x7b\x57\x17\x6f\xe9\xc3\x4d\xbb\x49\xb1\x58\xe4\xd9\x6c\x16\xa1\x50\x48\x55\x44\x96\xc9\x48\xcc\xd8\x1c\x33\xef\x24\x9c\x54\x2e\x56\x5b\x8e\x8e\x68\xbd\x6c\x7a\xd8\x52\xa0\xf6\x68\x0d\xce\xb6\x6c\x6e\xcd\x27\x93\x49\x2e\xcb\xf2\xc7\x86\x92\x1c\x0e\x07\xe9\xee\xee\xc6\xfd\xf7\xdf\x4f\x5b\x5a\x5a\x78\x36\x9b\x45\x69\xcd\xeb\xb2\xe1\xa7\xa7\xa7\x79\x2e\x97\x63\x5e\xaf\x37\x63\x30\x18\xa6\x09\x21\x63\x00\x46\x39\xe7\xe3\xba\xae\xcf\x9e\x3d\x7b\xb6\xd0\x5f\x59\x6d\x67\x00\x00\x07\x76\x49\x44\x41\x54\xd3\xd3\xb3\xea\xfc\xdd\x92\x82\xca\xff\x8b\xc7\xe3\xcc\xe5\x72\xb1\xaa\xaa\xaa\xdc\xac\xa5\x10\x33\xe9\xb4\xc1\x9f\x32\x35\x2d\x47\x41\x95\x98\x70\x42\x6a\x32\xc6\xbd\x75\x49\x53\xd7\x75\xaf\xfe\x41\xb0\x6d\x53\xca\xe5\x72\xb1\xa9\xa9\x29\x52\x2c\x16\x3f\x52\x0a\x6a\x6f\x6f\x27\x87\x0e\x1d\xa2\x3e\x97\xc7\xfd\xd0\x68\xd5\x1f\xc2\x6e\xca\x56\x77\x34\xc6\xe2\xf1\x38\x97\x65\x79\xc5\xdf\xc6\x62\x31\x72\xe9\xd2\x25\x9e\x48\x24\xf4\x58\x2c\xa6\x46\x22\x11\xe5\xf2\xe5\xcb\x85\xf7\xdf\x7f\x9f\x4f\x4c\x4c\x60\x2d\x69\x58\x15\x05\x95\x71\x38\x1c\x46\x73\x73\xb3\x2e\x49\x52\x76\xdc\xa5\x4c\xd5\x64\x8c\x5b\x5d\x79\x43\x35\x29\x17\x78\x39\xe0\x0d\x1d\x8d\xc0\xa9\x8a\x4d\x1d\xd3\x96\xcf\x66\x4c\x2c\x82\x7a\xfb\x68\x6b\x5b\x5b\x41\xd7\x75\xc4\x62\xb1\xbb\x4e\x41\xb5\xb5\xb5\xe4\xe0\xc1\x83\xe8\xec\xe8\x94\x6a\xf2\xd2\x8e\x4f\xf7\xfb\xfe\xa6\x39\x66\xf9\x4a\x20\x65\xda\x77\xc5\x9f\x7b\x2d\xd0\x58\x9f\xba\x76\xed\x1a\x34\x4d\x5b\x51\x0f\xe7\x1c\x89\x44\xa2\xec\xed\x44\x22\x91\x28\xbf\x06\x65\x4d\xe9\x59\x15\x05\x95\x2f\xce\x39\x8f\x44\x22\x68\x6e\x6e\x56\xa8\x28\xa4\x47\x3d\xca\xf5\xa0\x6c\xda\x61\x57\x45\xd7\xbc\xca\x25\x74\xc4\xc1\x51\x3e\xcd\x4f\x64\xc4\xde\x32\x6b\xfe\x4c\x4d\xca\xd8\x91\x74\xe1\x8a\xaf\x25\x28\x37\x35\x35\xb1\x42\xa1\xc0\x4b\x1e\xc7\x0d\xa5\x9b\x40\x20\x40\xf6\xed\xdb\x87\x7d\xfb\xf6\x19\xab\x4c\xf6\x9a\xfd\x63\xce\x7f\x73\x70\xd0\xfd\x1d\xa7\x2a\xb6\x12\x00\xe6\x02\xf5\xdb\x34\xd1\x3d\x5a\xad\x9d\xf0\xfb\xfd\xf9\x81\x81\x81\x0d\x4f\xd3\xaa\x29\xa8\x8c\xf3\xf9\x3c\x64\x59\xe6\x4d\x4d\x4d\x79\x26\x12\x79\xc4\x93\x8f\x34\xc8\xd2\x4e\x8b\x26\xd8\x97\xa5\xa0\xb9\x3f\x20\x28\x1f\x75\x46\x88\x3b\x6f\x68\xbf\x67\xda\xfa\x3b\x76\x45\xa8\xce\x56\x09\x23\x81\xd6\xc6\x4c\x7b\x7b\x3b\x37\x9b\xcd\xc8\xe5\x72\x44\x51\x94\x75\xa3\x20\x93\xc9\x44\x5b\x5a\x5a\xc8\x27\x3e\xf1\x09\xd2\xd5\xd5\x65\xac\x76\x56\x55\x6d\x9f\xb2\x7d\xf1\xd1\x81\xaa\xbf\x0a\x25\xa4\x27\x28\x23\xa6\x79\x7b\x9e\x03\xbe\xac\x61\x6b\xda\x54\x0c\x67\xab\xc5\x4b\x26\x93\x49\x5f\x8d\x3f\xe7\x4e\x70\xb9\x4b\x2c\x1d\x90\xdd\x52\x36\x6f\xde\x8c\x07\x1f\x7c\xd0\x08\x20\x68\xd6\xe8\xc3\x47\x2f\x7a\xbf\xee\x4f\x1b\x43\xcb\x1d\x61\xcc\xb1\xd0\xf7\x96\x62\x46\x78\x66\xc8\x9b\x7b\xfe\x42\x6d\xf6\x7b\x53\x4e\xf5\x3c\xa3\xc8\xc9\xb2\xac\x87\xc3\x61\x16\x89\x44\x10\x89\x44\xa0\xaa\xea\xaa\x0f\x77\x15\x45\x11\x2e\x97\x0b\xf5\xf5\xf5\xf0\xfb\xfd\xa8\xab\xab\x13\x29\xa1\x46\xa7\x22\x06\x3b\x22\x96\xdf\xde\x7a\xdd\xf6\x65\x4b\x41\x08\xdd\x98\xca\x05\xd1\x04\x26\xff\xac\x2b\xfa\xd9\x98\xad\xd0\xf3\xe6\x9b\x6f\x6a\x23\x23\x23\xab\x2e\x97\xb5\xca\xcd\xd2\x71\x4b\xd9\xbb\x77\x2f\xdd\xbe\x7d\xbb\x11\x40\xd0\x54\xa4\xf7\x1f\xba\xe2\xf9\x5a\x73\xcc\xbc\x8d\xcc\x6f\x26\x58\x4c\x41\x73\x31\xae\x84\xc1\x64\xb3\x7e\x7e\xb8\x2a\xff\xca\x48\x95\xf2\xfa\xb4\x5d\x1b\xd0\x28\xcb\x10\x42\xf4\x5c\x2e\xc7\x92\xc9\x24\x53\x55\x15\xf1\x78\x1c\x8b\xf7\xb9\x01\x0e\x87\x03\x46\xa3\x11\x55\x55\x55\xd4\x6c\x36\x53\x51\x14\x29\xe1\x90\x5c\x79\x31\xd0\x18\x97\x1e\x68\x89\x99\x3f\x5d\x9b\x32\x3d\x20\x70\x62\x03\xb0\xaa\x77\xcb\xc4\xac\x5a\xdf\xcf\xba\xa2\x9f\xcb\x30\x35\xfc\xfd\xef\x7f\x7f\xdd\x96\x5f\x2e\x95\xa5\x3d\xa0\x32\x67\x14\xab\x98\x39\xea\xea\xea\xc2\xee\xdd\xbb\x45\x4a\x69\x80\x32\xec\x3e\x30\xea\xfc\x97\xbb\xc6\xed\x07\x29\x16\xba\x75\xe9\x60\x95\xb9\x8f\xab\xc2\x9c\xa9\x22\x9b\x9a\xb1\x15\xfa\xa6\xed\xda\xf9\x59\x4b\xa1\x3f\x69\xd6\x47\x33\xc6\x62\x44\x15\x59\xa6\x20\x70\x9d\x97\x96\xd0\x0b\x8c\x88\x46\x9d\x48\xe6\x02\xf5\x38\x15\xb1\xc1\x9d\x33\xb4\x55\x67\x0c\x5b\xfd\x69\xd3\x4e\xbb\x2a\xb4\x11\x0e\x89\x80\xac\xfd\xe5\x3e\xe0\xb8\x5c\x93\xfb\xfe\x1b\xed\xf1\x3f\x3e\x7f\xfe\x7c\xa6\xa7\xa7\xa7\x5c\x2e\xeb\x3a\xe3\xb6\x74\x75\xf4\x72\xbe\xa1\x9b\xe2\xbe\xbe\x3e\xa4\xd3\x69\xbd\xbb\xbb\x7b\x0a\x82\xf0\xde\xaf\x37\x25\xe5\x88\x5d\x1b\xfd\xe4\x55\xf7\xd3\x96\x82\x60\xbb\x3d\x3b\x85\x50\x49\x17\x82\xf5\xb2\x10\x0c\xca\xd2\x91\x85\x87\x13\xd7\x39\xa0\x30\x0a\x85\x83\xeb\x00\x28\xe5\xc4\x48\x38\x2c\x04\x30\xde\xec\x04\xf7\x95\x36\x65\xac\x84\x15\x91\x65\xc2\x6e\x25\x0c\xc0\x58\xde\x1b\x70\xb3\x72\xb8\x5d\xbc\x26\x2b\x68\xa5\x2b\x91\x48\xf0\xc9\xc9\x49\xde\xd8\xd8\x98\x17\x45\x31\x1e\xb7\x14\x86\xaf\x56\xe7\xc7\xdc\x79\xb1\xc1\x95\x17\xbd\x73\x4f\xe6\x5b\x51\xd0\xaa\x30\x25\x1c\x46\xca\x61\xa1\xa0\x36\xca\x60\xa5\x20\x12\x38\x84\x3b\x79\x8d\xd5\x92\x57\x5a\x61\xcc\xad\x0c\xbe\xb4\x25\xf6\x3f\x27\x5d\xda\x2b\x00\x22\xd7\xae\x5d\xd3\x4b\x13\xeb\x1f\xbd\x15\xb4\x12\xce\x66\xb3\xb8\x76\xed\x1a\xf7\x7a\xbd\x8a\xc3\xe1\x48\x6a\x22\x9f\x18\xac\xce\xf5\xcb\x92\x5e\x08\xa4\x4d\x4d\xc6\x22\x35\xde\x68\x11\xdd\x39\x2e\x37\xfa\xb5\xb6\xf0\xe5\x70\xce\xc8\x32\xc7\x5b\xe4\xe7\xdf\x6b\x4e\x7e\x47\x11\xd9\x09\x42\xc8\xd8\xe4\xe4\x64\xfe\xf8\xf1\xe3\x65\xea\x58\x77\x2b\x68\x4d\x03\xb1\x5b\xe1\x42\xa1\x80\xc1\xc1\x41\x10\x42\x0a\x35\x35\x35\x69\x42\x49\x24\x66\x2b\x5c\xed\xf7\x67\x2e\x81\xc0\xea\xcb\x1a\x02\x02\x27\x02\xa9\x88\xe1\x8e\xf1\x2a\x0a\xf6\x56\x58\xa3\x4c\xeb\xab\x4b\xff\xfa\xd5\xce\xf8\x9f\x5f\x77\x6a\x2f\x80\xa0\x8f\x73\x1e\x39\x77\xee\x9c\x7a\xfc\xf8\xf1\x35\x97\xc3\x5a\xf0\x1d\x59\x41\x37\x13\xaf\xd7\x4b\xef\xbd\xf7\x5e\xd4\xd4\xd4\x48\x84\x10\x2f\xe7\xbc\xc5\xa1\x8a\x7b\x77\x4e\xd8\x3f\xdd\x19\xb1\xee\x34\xea\x44\xba\x43\x3a\x02\xca\x2f\xeb\xbc\x4d\xda\x51\x05\xa6\x0d\xd4\x64\x7b\xcf\x06\xd3\x2f\xa5\xcc\xc5\x1e\xce\xf9\x30\x21\x24\x1a\x8b\xc5\x94\x13\x27\x4e\x20\x16\x8b\x6d\xf8\x3a\xa7\x3b\xb6\x82\x6e\x86\x09\x21\xb4\xa3\xa3\x03\xbb\x76\xed\xa2\x66\xb3\xd9\x02\xc0\x0b\x8e\x26\x4b\x81\x6e\xeb\x8c\x58\x1f\xb9\x27\x62\xdd\xeb\xca\x8b\x1e\x52\x3a\x97\x6e\x6d\x96\x52\x09\x93\xb5\x15\x3a\x07\x47\x4a\x2a\xca\xfd\xfe\xec\xe9\x7e\x7f\xe6\xcd\xac\x91\xf5\x81\x60\x14\x40\x54\xd3\xb4\xdc\x07\x1f\x7c\xc0\x2e\x5d\xba\x54\x5e\xd6\xbe\x6e\xd6\xce\x4a\x78\x69\x05\x6c\x88\x18\x0c\x06\x6c\xdb\xb6\x0d\xf7\xdc\x73\x0f\x95\x24\xc9\x02\xc0\x05\x20\x48\x38\x9a\x02\x49\xd3\xbe\xb6\xa8\x65\xef\xa6\xb8\xd4\x6e\x57\x05\xc7\xdc\xba\xff\x95\x07\x6e\xcb\xe1\x5b\x09\x07\x47\xc6\x58\x4c\x8d\x7a\x94\xc1\xc1\xea\xdc\xe9\x09\xa7\x7a\x8a\x53\x0c\x03\x98\xc0\xdc\xfb\x6b\x72\xfd\xfd\xfd\xec\xfc\xf9\xf3\xa8\x58\xcf\x73\x57\x64\xc3\x28\x68\x25\xd9\xb5\x6b\x17\x6d\x6b\x6b\xa3\x36\x9b\xcd\x48\x08\xb1\x71\xce\xbd\x00\x02\x22\x27\x0d\x55\x59\x43\x47\xbd\x2c\x75\xd6\x26\x8d\x4d\xd5\x19\x63\xc0\xaa\x09\x36\xca\x41\xe7\x4d\x83\xd5\x50\x10\x38\x38\x01\xcb\x1a\x8b\x99\x99\xb9\x97\xc1\x8d\x8e\xbb\xd4\x8b\x31\xab\xd6\x5f\x14\x30\x01\x60\x8a\x73\x1e\x23\x84\xa4\x72\xb9\x9c\x76\xf9\xf2\x65\xb6\xd1\x2f\xea\xb9\x99\x6c\x28\x05\x2d\xa3\xb7\xac\x13\xcd\xcd\xcd\xb4\xad\xad\x6d\xce\x55\x40\xa9\x11\x40\xb9\x67\x78\xc0\xe1\xa5\x1c\x5e\xa9\x40\xab\x5d\x8a\x58\xef\x50\xc4\x6a\x87\x22\x78\xa4\x82\x60\x33\xe9\x54\x12\x19\x31\x0a\x1c\x94\x01\xac\x28\x70\x5d\x11\x99\x52\x3a\x42\x27\x9e\x32\xeb\x51\x59\xd2\x27\x73\xc6\x62\x84\x11\xc4\x40\x10\x03\x10\xe3\x9c\xa7\x08\x21\x19\xc6\x98\x36\x39\x39\xa9\x0f\x0e\x0e\x62\x64\x64\x04\xa5\x8d\x0d\x1b\x4e\x35\x2b\xe1\xbb\x42\x41\x37\x13\x93\xc9\x84\x50\x28\x84\xc6\xc6\x46\xd4\xd6\xd6\x52\x93\xc9\x24\x62\x6e\xf3\x45\xb9\x52\xa4\x8a\xbb\x84\xb9\xf5\xac\x62\x45\x9a\x75\xcc\x6d\xd4\xd0\x30\xf7\xe2\xb7\x5c\xe9\x52\x4a\x97\xa6\x69\x9a\x3e\x35\x35\xc5\xc6\xc6\xc6\x30\x3a\x3a\x0a\x55\x55\xef\x62\x0e\x6f\x2e\x77\x9d\x82\x6e\x25\x3e\x9f\x8f\xfa\xfd\x7e\x78\xbd\x5e\xb8\xdd\x6e\x58\xad\x56\x5a\xda\x36\x44\x09\x21\x94\xf3\xb9\x03\x08\x4a\x98\x95\x28\x88\x11\x42\x18\x00\xa6\xaa\x2a\x4b\xa7\xd3\x2c\x91\x48\x20\x16\x8b\x21\x12\x89\x60\xb5\x2f\xe4\xf9\x28\xe4\x23\xa3\xa0\xb5\x62\x9f\xcf\x47\xe7\x8e\x67\x03\xaa\xaa\xaa\xe6\x13\x99\x4c\x26\xa1\xeb\x3a\x74\x5d\x47\x32\x99\x44\x69\x5d\xea\x47\x46\x29\x6b\xc5\x1f\x39\x05\xfd\x46\x7e\x23\x1f\x0b\xa1\x58\xd9\x13\x4a\xd7\x09\x63\x83\xf1\x7a\xa5\xf3\xae\xe2\xff\x07\x59\x1a\x81\xc4\xe6\xd3\xe7\x74\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x57\x79\xe4\xe3\xbb\x27\x00\x00") +var _web_uiV1StaticFavicon96x96Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xbb\x27\x44\xd8\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x60\x00\x00\x00\x60\x08\x06\x00\x00\x00\xe2\x98\x77\x38\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x79\x70\x1c\xd7\x99\xdf\xef\xbd\xee\x99\xe9\xb9\x0f\xcc\x00\x83\xc1\x00\x18\xe2\x22\x00\xf1\x00\x6f\x52\x92\x25\x48\xa6\x68\x51\xa2\x69\x59\xd6\xae\xb5\x8e\x77\x1d\xbb\xca\x49\x65\x8f\x6c\x5c\xa9\x4d\xe2\x4a\x25\xae\xad\xc4\xe5\x4a\x39\xc9\x46\xbb\xde\xec\xa6\x9c\x2d\x5f\x6b\xaf\xe5\x95\x25\xaf\x24\xeb\xa4\x64\x91\x92\x45\x90\x22\x41\x88\x24\x48\x10\x04\x71\x0c\x0e\x0e\x06\x83\x99\x9e\xbb\xbb\xa7\xe7\xbd\xfc\x81\x19\x60\x00\x02\x24\x40\x02\x94\x76\xe3\xaf\xaa\xd1\xbf\x19\xbc\xf9\xde\xfd\xeb\xef\x7d\xef\x68\xe0\x37\xf2\xb1\x10\xba\x02\xde\x68\xfd\xeb\x85\xff\xd1\x0b\xad\xb8\xb0\x4a\x8c\x35\xe2\xb5\xea\xff\xff\x02\x8b\xb8\x51\x36\xba\xb5\xfe\xa6\x07\xfc\x46\x3e\x3e\x42\x4a\x77\x0a\x80\x2d\xb9\xa3\x84\x2b\xff\xbf\x34\x2c\xd6\x1b\x4b\x92\x04\xaf\xd7\x0b\x9f\xcf\x07\xaf\xd7\x0b\xbb\xdd\x0e\xbb\xdd\x4e\x45\x51\xa4\x82\x20\x80\x73\x4e\x01\x80\x10\x42\x39\xe7\x20\x84\xb0\xf2\x5d\x55\x55\x96\xcf\xe7\x91\x4a\xa5\x98\x2c\xcb\x98\x99\x99\xc1\xb5\x6b\xd7\x2a\xf3\xb5\x52\x5e\x3e\x32\x5c\x59\x01\x1f\x89\x50\x4a\xe1\xf7\xfb\x11\x0c\x06\xd1\xd8\xd8\x48\xdd\x6e\x37\x05\x87\x28\x32\x22\xd9\x54\xc1\xeb\xce\x8b\x4d\x76\x45\x6c\x70\x28\x42\xa3\xa4\x53\x8f\xb9\x20\xb8\xc4\x22\x91\x28\x87\x91\x13\xe8\x45\xca\x15\x45\x64\xa9\xbc\x81\xc5\xb3\xa6\xe2\xf5\x94\xa4\x8f\xca\x92\x3e\x9a\x34\xeb\x53\x9a\xc0\x73\x20\xd0\xf2\xf9\x3c\x0b\x87\xc3\x2c\x1c\x0e\xe3\xfa\xf5\xeb\x50\x14\x65\xc3\x1a\xd0\x5a\xf1\xd2\x1e\x70\xd7\xc4\xe3\xf1\xd0\x96\x96\x16\xb4\xb5\xb5\x51\xb3\xd9\x2c\x1a\x18\xb5\xd5\xa4\x8d\xed\x0d\x09\xd3\x03\x81\x94\x69\x5f\x55\xd6\xb0\x4d\x2a\xd0\x00\x01\x31\x92\x5b\xe8\x2a\xf5\x80\x79\x0c\x02\x56\x10\x78\x4c\x36\xeb\x03\xd7\xed\xda\x99\x09\xb7\x72\x7c\xd2\xa9\xf6\xe6\x0c\x2c\xae\x17\x75\x6d\x74\x74\x94\x5d\xbd\x7a\x15\xe3\xe3\xe3\x77\x35\xcf\xcb\xc9\x72\x3d\x60\xa3\xa8\x06\x84\x10\xba\x69\xd3\x26\x6c\xd9\xb2\x05\xd5\xd5\xd5\xa2\x08\x6a\x6b\x48\x48\x7b\xdb\x66\x2c\x9f\x0d\xc5\xa5\x43\xe6\x02\x6d\x20\x20\x94\x57\x24\x6c\x55\x78\x49\x05\x2c\xc5\x1c\x1c\x3a\xe5\xf1\x88\x43\x7b\xef\x8a\x2f\xf7\x0f\x43\xbe\xfc\x1b\x8a\x81\xc5\x53\xa9\x94\x76\xf9\xf2\x65\xd6\xdf\xdf\x0f\x5d\xd7\xd7\x23\x8f\x77\xd4\x03\x36\x4c\x08\x21\x68\x6d\x6d\xc5\x8e\x1d\x3b\xa8\xd3\xe1\x34\xda\x55\x21\xb0\xe5\xba\xf5\xe9\xce\x69\xeb\x3f\xb3\xa9\x42\x3b\xe1\xb7\x6a\xe3\xeb\x27\x9c\x00\x3a\x65\xf1\x21\x6f\xfe\xf9\xf3\x81\xcc\xf7\x22\x0e\xed\x62\x5e\x55\x72\x03\x03\x03\xec\xf4\xe9\xd3\xff\xf4\x28\xa8\xae\xae\x8e\xee\xdd\xbb\x17\x5e\xaf\x57\x72\x29\x86\xd0\x9e\xb0\xfd\x5f\x6d\x8e\x5a\xbe\x60\x60\xd4\xb3\x5e\x71\xdc\xaa\x07\xac\x84\x19\xb8\x36\xe5\x54\x8f\x7d\xd0\x90\x7e\x66\xcc\xad\xf4\xe4\x95\x7c\xae\xaf\xaf\x8f\x5d\xb8\x70\xe1\xae\x51\xd3\x86\x52\xd0\x83\x0f\x3e\x48\x5b\x5b\x5b\x8d\x96\xa2\x58\xbd\x77\xcc\xf1\x07\x5b\xaf\x5b\xff\x85\xc8\xa8\x6b\x4d\xf4\xb2\x1a\x7c\x9b\x15\x50\xc6\x20\xd0\xc3\x6e\xf5\x95\xf7\x36\xc9\xdf\x9c\xb1\x15\x2e\xce\xc6\x67\x95\x13\x27\x4e\x60\x66\x66\xa6\xb2\x4c\x36\xa4\x07\x08\xa5\x0f\x95\x1c\x40\x2a\x3e\x2f\xfd\x7e\x55\xb8\xb1\xb1\x11\x47\x8f\x1e\x15\x6a\x6b\xfc\xf6\x2d\xd3\xb6\xa7\x3e\xdd\xef\xfd\x61\x7d\x42\x7a\x8c\x72\x22\x81\x60\xae\xf4\xca\xa1\xef\x10\x2f\x24\xf6\xf6\xff\x12\x10\xea\xca\x8b\x9b\xef\x99\xb6\xfe\xae\xa5\x40\xed\xc9\x1a\xf1\x72\x53\x7b\x6b\xce\x60\x30\xb0\xa9\xa9\x29\x60\x1d\xdb\xca\x52\xbc\xee\xe4\x7b\xdf\x7d\xf7\xd1\xce\xce\x4e\xa3\x43\x15\x9b\x3e\x39\xe8\xfe\x66\x63\x42\x3a\x0a\x80\x92\x52\xbc\x1c\x1c\xeb\x8d\xd7\xbb\x78\x92\x92\x7e\xe9\xed\xd6\xc4\x9f\x8c\xb9\x95\x13\xd7\x23\xd7\x73\x2f\xbd\xf4\xd2\x86\x51\x52\xb9\x07\x50\x2c\x34\x26\x5e\xf1\xf9\x66\xb8\xfc\x3b\x0e\x00\x76\xbb\x9d\x1e\x3e\x7c\x98\x6c\xda\xb4\xc9\xd2\x32\x6b\x79\xec\xe8\x45\xef\xdf\x7a\xb3\xc6\xbd\x04\x84\x60\xa1\xa8\x70\x3b\x18\xe0\x60\x04\x4c\x31\xb0\x7c\x4a\x2a\x26\x53\x92\x2e\xa7\xa4\x62\x32\x6b\x2c\x66\x54\x03\x53\x19\xe1\x8c\x70\x50\xca\x4b\x15\x7d\x5b\xfd\x76\x01\x4b\x3a\xf5\xb5\xcd\x58\x3e\x67\x60\xa4\x90\x68\x30\x7c\x50\x2c\x16\x8b\x91\x48\x64\xad\xe5\xb3\x2a\xbc\x2e\xbe\x20\xa7\xd3\x89\x23\x47\x8e\x50\xbb\xd9\xea\xda\x3f\xe2\xfc\xa3\xdd\x61\xfb\x7f\xa0\x9c\x18\x79\x29\x16\x10\x80\x57\x50\xc7\x4d\x31\xe1\xd0\x29\xd7\x63\xd6\x42\x64\xca\xa9\x86\xa7\xed\xda\xe8\xac\xb5\x10\x4e\x99\x8a\xd3\x05\x81\xa7\x00\xae\x70\x40\xaf\x18\x01\x8b\xe0\x90\x04\x06\x9b\x4d\x13\x7d\x9e\x9c\xd8\x50\x9d\x36\x36\x04\x52\xa6\x50\x4d\xca\x18\x30\x15\x89\x34\x67\x65\xf1\x39\x13\x08\x58\x15\xa6\x80\xa4\x53\x5e\x07\xc0\x52\x5d\x5d\xad\x2c\x53\x4e\xeb\x22\xe5\x0a\xb8\xed\x2e\x16\x08\x04\xe8\xa7\x3e\xf5\x29\x6a\x21\xc6\xea\x83\x03\x9e\xff\xd6\x36\x63\xfe\x62\xb9\x15\x2e\x64\xab\xe2\xa1\xb7\x0c\xe6\x00\x74\xca\xf4\xb0\x5b\x1d\xbe\xea\xcb\xf5\x86\xdd\xca\xb9\x9c\x81\x8d\x72\xf0\x28\x21\x44\xe6\x9c\x67\x00\x28\x84\x10\x8d\x73\xe8\x4b\xd2\x4b\x39\xb8\x58\x14\x88\x98\x34\xeb\x92\x2c\x15\x6c\x23\x55\x8a\x03\x1c\x5e\x63\x91\x34\xd4\x25\x4d\xdb\x5b\x67\x2c\x3b\x37\xcd\x4a\xed\x92\x4e\x25\x02\x32\x57\xc8\xf3\x89\xbb\x11\x73\x00\xd7\xbc\xf9\xde\xd3\x0d\xa9\xbf\x07\xa0\xc9\xb2\xbc\xb4\x8c\xd6\x0d\x97\x2b\x60\xa9\x15\xb4\xaa\x81\x55\xb9\xf0\xad\xc4\x18\xf8\xf4\x45\xef\x77\x83\x49\xd3\x21\x70\x32\xff\x74\xe1\xbc\xfc\x94\x59\xb9\xbf\x67\x8c\xc5\xcc\xf9\x40\xa6\xe7\x52\x4d\xf6\xad\x8c\xa9\x78\x89\x83\x4f\x10\x42\xe2\x9c\xf3\x14\x00\x05\x80\x9e\xcb\xe5\x58\x3a\x9d\x66\xc9\x64\x12\xc5\x62\x11\xa5\x02\x01\x00\x48\x92\x04\xab\xd5\x0a\xab\xd5\x0a\xbb\xdd\x4e\x1d\x0e\x07\x05\x20\x82\xc0\xa8\x0a\xcc\x36\x52\xa5\xbc\x33\xe2\x51\x02\x26\x9d\xb4\xb5\xcd\x58\x1e\xec\x9a\xb4\x3f\xe0\xc9\x89\x5e\xb2\x28\x1d\x8b\x45\x36\x17\xa2\xc7\xda\x12\xcf\x70\x8a\x01\x45\x51\x72\x1b\x39\x3e\xb8\xed\x81\x58\x20\x10\xc0\xa3\x8f\x3e\x2a\x5a\xb9\x21\xf8\xc4\x45\xdf\xf7\xfc\x49\xd3\x03\x2b\x19\x2c\xcb\x59\x2f\x59\x53\x31\x73\xb6\x3e\xf5\xf6\x85\xda\xec\xab\x05\xca\x2e\x11\x42\x26\x38\xe7\x71\x00\x4a\x32\x99\xd4\x27\x26\x26\xd8\xf8\xf8\x38\x62\xb1\x18\xf2\xf9\xfc\xad\x92\xb3\x28\x63\x81\x40\x80\xfa\xfd\x7e\x34\x34\x34\xc0\xeb\xf5\x8a\x94\x52\x89\x73\xee\x20\x84\x04\x09\x43\x5b\x6b\xcc\xfc\xc8\xbe\x31\xe7\x21\x4f\x4e\xac\x26\x65\x8e\x04\x00\x70\x68\x02\xd7\xfe\xbe\x2b\xfa\xa7\x51\x9b\xf6\x1c\xe7\x7c\xf4\xb5\xd7\x5e\xd3\x27\x26\x26\x36\xbc\x02\xd6\x24\x0e\x87\x83\x1e\x3d\x7a\x94\x3a\x8d\xd6\xc0\xd1\x7e\xef\x77\x83\xb2\xe9\xd0\xcd\x5a\x54\xa5\xc5\xa2\x13\xae\x9f\x0f\x64\x7a\x4e\x37\xa6\x9e\x55\x0c\xac\x8f\x73\x3e\x0a\x20\xae\x28\x8a\x36\x38\x38\xc8\x4e\x9d\x3a\xb5\xee\x16\x47\x57\x57\x17\xdd\xbc\x79\x33\x75\x3a\x9d\x22\x00\x17\xe7\x3c\x28\x32\xb2\x65\xdb\x94\xed\xb3\xfb\xc2\xce\x43\x92\x4e\xa5\x72\x3a\x8f\xb5\x25\xbe\xdf\x5f\x9b\xfd\x0b\xce\xf9\x40\x6f\x6f\xaf\x72\xf6\xec\xd9\x0d\x1d\x94\xad\x34\x10\x5b\xb1\xc6\x0c\x06\x03\x3e\xf7\xb9\xcf\x51\xa7\xdd\xe1\x39\x7c\xa9\xea\x99\xd6\x98\xf9\xe9\xf2\x83\xab\x4c\x3b\x95\x98\x90\x05\x4b\x2f\x66\xd1\xa2\xc7\x36\x27\x7e\x18\xb1\x6b\x6f\x72\xf0\x41\x42\x48\x2c\x99\x4c\x2a\xe7\xce\x9d\x63\x83\x83\x83\x1b\x3e\xf4\xaf\xab\xab\xa3\x7b\xf6\xec\x81\xcf\xe7\x33\x12\x42\x3c\xe0\x68\x71\x28\xc2\xbd\x0f\x5f\xf5\x7c\xb9\x31\x61\x6a\xeb\xf7\x67\xdf\x3b\xd6\x96\xf8\x06\x08\x7a\x27\x26\x26\x52\xaf\xbe\xfa\xea\xdc\x40\xed\xe3\xe2\x0b\x22\x84\xe0\xd1\x47\x1f\x45\x7d\xb0\xde\x71\xef\x88\xf3\xeb\x7b\xc6\xed\xff\x8e\x94\x38\x1f\x58\x79\xcc\x04\xc2\x71\xd1\x9f\xed\x39\xde\x22\x7f\x57\x17\xf8\x69\xce\xf9\x84\xaa\xaa\x99\xde\xde\x5e\xd6\xdf\xdf\x5f\xce\xe4\x9d\xc8\x9a\x32\x1f\x0a\x85\xb0\x7f\xff\x7e\xea\x70\x38\x24\xce\x79\x80\x82\x6c\xe9\x8c\x58\x3f\x39\x58\x9d\x7b\xbd\x20\xf0\x9e\x54\x2a\x15\xff\xe9\x4f\x7f\xaa\xaf\x45\xe7\xed\xe2\x35\x51\xd0\xae\x5d\xbb\xe8\xce\x9d\x3b\xa5\xd6\x98\xe5\xa9\xc7\x2e\x55\x7d\x97\x82\x18\x6f\xf5\x1b\x9d\x70\xfd\x44\xb3\xfc\xfc\xf9\x40\xe6\x47\x1c\xfc\x3c\x21\x24\x3a\x38\x38\xa8\xbd\xf3\xce\x3b\x1f\xb9\x2b\x78\xcf\x9e\x3d\x74\xfb\xf6\xed\x22\xa5\xd4\x01\xc0\xc6\x39\xcf\x30\xc6\x52\x2f\xbe\xf8\xa2\x3e\x33\x33\xb3\xaa\xf4\x35\x37\x37\x53\x51\x14\x91\x48\x24\x10\x8d\x46\xd7\x9c\xa7\x55\x53\x50\x4d\x4d\x0d\x8e\x1c\x39\x22\x7a\x34\xe3\xb6\xa7\x7b\x6b\x7e\x29\x15\x84\x6a\x60\x79\xda\x29\x63\x8d\x32\xed\xd5\xce\xd9\xff\x3b\xe2\x51\x9e\xe5\xe0\x97\x0a\x85\x82\xfc\xee\xbb\xef\xb2\x6b\xd7\xae\xdd\x34\xae\xbb\x89\x7d\x3e\x1f\x76\xef\xde\x8d\xfa\xfa\x7a\x1a\x8b\xc5\x58\x4f\x4f\x0f\x4a\xee\x87\x15\x7f\x1b\x0c\x06\xe9\x9e\x3d\x7b\xe0\xf5\x7a\x8d\x84\x10\x11\x00\x38\xe7\x7a\x36\x9b\xd5\x4f\x9d\x3a\xc5\x2a\x66\xe1\x6e\x99\x86\x55\x51\x90\x20\x08\x78\xea\xa9\xa7\xa8\xcb\xee\xf4\x3e\x79\xde\xf7\xe3\xfa\xa4\xf4\xf0\xcd\xc2\x03\x80\x2a\x30\xe5\xa5\x2d\xb1\xff\x3d\xee\x54\x9e\x25\x84\x0c\x26\x93\xc9\xcc\xab\xaf\xbe\xca\x52\xa9\xd4\xad\x7e\x7a\x3b\x72\xd7\x2a\xac\xa5\xa5\x05\xdd\xdd\xdd\xa2\x47\x31\xb6\xec\x1f\x73\x7c\xad\x21\x21\x3d\x40\x38\xe8\xa4\x53\xed\x39\xd5\x98\x7a\x66\xc6\x5e\xb8\xd8\xd7\xd7\xa7\x9d\x3e\x7d\x7a\x55\x69\x5b\xd5\x40\x6c\xd7\xae\x5d\xd4\xe9\x74\x4a\x5b\x27\x6d\x5f\x0c\x26\x4d\x0f\xf3\xf2\x88\x91\x00\x58\x06\xeb\x02\xd3\x5e\xe9\x9c\xfd\xeb\x09\xa7\xfa\x77\x84\x90\xc1\xc9\xc9\xc9\xcc\x2f\x7f\xf9\xcb\x8d\xa6\x9c\x0d\x19\x28\x55\x62\x9f\xcf\x47\xbb\xbb\xbb\xc5\xaa\xbc\x71\xdb\x6f\x7d\x58\xfd\x82\x59\x13\x82\x00\x00\x02\x34\xc7\x2c\x2d\x0d\xb2\xf4\xd8\x2f\xb6\xce\x7c\x1e\x5d\x5d\xef\x4d\x4f\x4f\x6b\x63\x63\x63\xec\x56\x3a\xcb\xb5\xb1\xdc\x7d\xbe\x57\x6c\xdb\xb6\x4d\xb4\x29\x42\xdb\x81\x51\xc7\x9f\x80\x13\xcc\xfb\x5b\x38\x6e\xc0\x9c\x70\xbc\xd5\x96\xf8\xdb\x31\xb7\xf2\x2c\x08\x2a\x0b\x9f\xae\xa0\x7f\xbd\x30\x36\x1a\x77\x75\x75\x81\x12\xea\x78\x60\xd8\xf5\xa7\x96\x82\x10\x04\x78\xc9\xd3\x05\x00\x1c\xc6\x22\xf5\x74\x5f\x75\x7f\x8b\x70\x78\x76\xee\xdc\xb9\x2a\x9d\xcb\x7d\xb9\xe8\xbb\xc7\x1e\x7b\x8c\x52\x42\x6d\x07\x46\x9d\x5f\x33\xeb\x42\x75\xd9\x7f\x4a\xb0\xe0\x4b\x2d\x63\x0e\x8e\x33\xf5\xe9\xd7\x2e\x57\x67\x7f\xc0\xc1\x07\x26\x27\x27\x33\xaf\xbd\xf6\xda\x86\x14\xc6\x12\xbc\xe1\x71\x10\x42\x68\x7d\x7d\x3d\x35\xe9\x34\x10\x94\x4d\xf7\xcf\x7d\xb7\x10\xb0\x8c\xbd\x59\x43\x97\x2b\x2f\xb6\xf9\x7c\x3e\xd1\x6a\xb5\xde\x52\xff\x4d\x29\xa8\xa6\xa6\x86\xd6\xd5\xd5\x19\x7d\x19\xc3\xce\xf6\xa8\xe5\x29\x3e\xef\xba\x5d\x9e\x82\x26\x5c\xea\x60\x4f\x28\xf9\x57\x84\x90\x4b\xc9\x64\xf2\x6e\xd0\x4e\xa5\x6c\x28\x05\x71\xce\x99\x28\x8a\xa2\xa0\xc2\x45\x39\x91\x38\xb0\xe0\xc4\x23\x0b\x98\x10\x88\x26\x9d\xfa\x01\x88\xd9\x6c\x56\xbb\x95\xfe\x9b\x52\xd0\x8e\x1d\x3b\x40\x08\xb1\xed\x09\x3b\xfe\x80\x72\x22\x91\x15\x68\x07\x04\x50\x45\x96\x3b\xd6\x96\xf8\x0b\x46\xd1\xa7\x69\x9a\xfc\xc6\x1b\x6f\xdc\x0d\xda\xb9\xab\x14\x04\x00\x8a\x81\x65\x52\x92\x1e\x2d\xd3\x4e\x25\x05\x11\x02\x68\x02\xcf\xc8\x66\x3d\x0a\x80\x55\x55\x55\xdd\x3e\x05\xd5\xd4\xd4\xa0\xbe\xbe\xde\xe8\xc9\x8a\xdb\x5a\x62\xe6\x23\xe5\xde\xb6\x1c\x05\x01\x1c\x27\x43\xc9\xe7\x65\xa9\x70\x82\x73\x1e\x3d\x79\xf2\x24\x4b\x24\x12\x95\xe9\xfe\x47\x4f\x41\x00\x68\x3e\x9f\x67\x45\xc2\xe3\xa7\x1b\x52\xbf\xe0\xa5\x02\x2f\x4b\x99\x82\xcf\x05\xd3\xaf\xe5\xc5\xe2\x14\x63\x8c\x65\x32\x99\x5b\xea\xac\x34\x89\x16\x5d\xed\xed\xed\x20\x84\x58\xba\x26\xed\x5f\x22\x20\x22\xe7\x73\x36\xfe\x9c\x8f\x9f\x2f\xc2\x33\xb6\x42\xf8\x42\x6d\xe6\xc7\x84\x90\xf0\xe8\xe8\xa8\x76\xe5\xca\x95\x1b\xf4\x6d\xf0\x85\xbb\x81\xaf\x5c\xb9\xc2\x08\x21\xb1\xcb\x35\xb9\x67\x4f\x34\xcb\x3f\x53\x04\xae\x94\xe7\x3c\x0a\x94\x6b\x67\x83\xe9\x37\x4e\x35\xa4\xbe\x4b\x08\x89\x5c\xbd\x7a\x55\x57\x55\xf5\x96\x3a\x2b\xdd\xd1\x65\xca\x60\x26\x93\x89\x36\x35\x35\x51\xa9\x40\x83\x6d\x33\x96\x23\x65\x8a\x23\x28\xfb\x77\x08\xca\x73\x1c\x20\xc0\xfb\xa1\xe4\x4f\x8a\x84\x0f\xe8\x05\x3d\xf3\xde\x7b\xef\x2d\xd5\x87\xbb\x84\x2b\xe3\xdd\x10\x7c\xf6\xec\x59\x34\x34\x34\xe4\x3c\x1e\xcf\xa5\x73\x75\x99\x3f\x1b\xa8\xce\x1d\xaf\x49\x1b\xb7\x52\x0e\x1a\xb5\x17\xae\x64\x8c\xc5\x33\x20\x18\xc8\xe7\xf3\x99\xd2\x38\xe0\x96\x3a\x2b\x67\xc4\xe6\x29\xa8\xa5\xa5\x05\x06\x83\x41\x6a\x99\x32\x3f\x66\xd2\x89\x07\x58\x18\x32\x57\x52\x10\x08\x30\xe9\xd0\x06\xc7\x3c\xca\xeb\x00\x62\x67\xce\x9c\x61\x15\xae\xe3\xbb\xca\xcd\x77\x23\xbe\x62\xb1\x88\xe7\x9e\x7b\x8e\x3d\xf9\xe4\x93\xb2\xd7\xeb\x3d\x9f\x33\x14\xc3\xa3\x55\xca\x31\x00\x94\x73\x9e\x21\x84\xc8\xa9\x54\x4a\x79\xfd\xf5\xd7\xd9\x12\x17\xfa\xda\xac\xa0\xd6\xd6\x56\x0a\x0e\xc7\xe6\xa8\xe5\x71\xf0\x8a\xd6\x0e\x2c\xb1\x7c\x38\xce\x05\xd3\x2f\x72\x82\xe1\x5c\x36\xa7\xdc\xcd\xf5\x34\xcb\xc8\x86\x0f\xc4\xca\xe0\xf9\xe7\x9f\x67\x5b\xb7\x6e\x55\x9a\x9a\x9a\x22\x4e\xa7\x93\x02\x40\x36\x9b\x65\xd7\xae\x5d\x43\x5f\x5f\xdf\x72\x65\xb0\xa2\xce\x65\x29\xc8\xeb\xf5\x8a\x36\x4d\x68\xa8\x4d\x9b\x76\x96\x5b\xfc\x72\x14\x94\x92\x8a\xd1\x91\xaa\xfc\x9b\x00\xe2\x1f\x7e\xf8\x61\x65\xf7\x02\xee\x9c\x52\x3e\x56\x14\xd4\xd6\xd6\x46\x01\xa0\xe4\x36\xc7\x85\x0b\x17\x50\x6a\x70\x8c\x52\x4a\x19\x63\x0c\x00\x5c\x2e\x17\x6d\x6c\x6c\x84\xc5\x62\x01\x00\xc8\xb2\x8c\xcb\x97\x2f\xb3\x95\xf4\xdf\x40\x41\xed\xed\xed\x94\x10\x62\xac\x4f\x98\xee\x17\x18\xb1\x94\xff\xb9\x1c\x05\x0d\x54\x67\xdf\xd3\x09\x1f\xd5\x0b\xba\x72\xf5\xea\xd5\x79\x1d\x95\xfa\xee\x12\xde\x10\xbd\x35\x35\x35\xb4\xbb\xbb\x1b\x0e\x87\x43\x12\xf8\xdc\x22\xe1\xee\x07\xbb\x75\x45\x55\xb4\x33\x67\xce\xb0\x4b\x97\x2e\x01\x00\x2d\x95\x3d\xba\xbb\xbb\x69\x5b\x5b\x9b\x28\x14\x89\xcd\x9d\x17\xfd\x45\xca\x75\x59\xd2\x23\x07\x0e\x1c\xc8\x7d\xf0\xc1\x07\xec\xc2\x85\x0b\x37\xc4\x75\x03\x05\x05\x02\x01\x4a\x08\xb1\x34\x26\xa4\x4f\x80\x2f\xac\x6a\xb8\x81\x82\x00\x5c\xf5\xe5\xdf\x24\x84\xc4\x87\x87\x87\x59\xc5\x13\x7f\xc3\xa4\xb6\xb6\x96\xfa\xfd\x7e\xb8\xdd\x6e\x88\xa2\x08\x45\x51\x90\x4e\xa7\x11\x89\x44\xe8\xf5\xeb\xd7\xd7\x95\x6a\x3a\x3b\x3b\xe9\x7d\xf7\xdd\x27\x3a\x15\x31\xb4\xef\x8a\xf3\x8f\x1b\x13\xd2\xc3\x02\x87\x71\xda\xa6\xf5\x9d\x6e\x48\x3d\x23\xdd\x7f\xff\x19\xb7\xdb\xad\xfc\xfa\xd7\xbf\x66\x00\xf0\xf8\xe3\x8f\xd3\xba\x40\x9d\xad\x6b\xc2\xf6\x85\x3d\xe3\x8e\x7f\x6b\xd1\x68\x88\x03\x2c\x6e\xd1\x7b\x8f\xb7\x24\xfe\x93\x78\xe0\xc0\xfb\x66\xb3\x59\x29\xcd\x2f\xcf\xc7\xb5\x88\x82\x08\x21\xb4\xb6\xb6\x96\x82\xc3\x11\x48\x9a\xba\x16\xad\x6c\x58\x42\x41\xb2\xb9\x30\x15\xb3\x16\xce\x03\xc8\x55\xb4\xfe\x0d\xa1\x97\x5d\xbb\x76\xd1\xce\xce\x4e\x6a\x36\x9b\x45\xc2\xb8\x64\x50\xb8\x8b\x16\xb9\xc4\x04\xa2\x68\x12\x91\x39\x81\x92\xcd\x66\xf5\x2b\x57\xae\xb0\x8a\x29\xc4\xdb\xa6\x9d\xaa\xaa\x2a\xba\x7f\xff\x7e\xd1\x9d\x37\x74\x3e\xf5\x61\xf5\x0b\x56\x95\x86\xca\x2b\x39\x1a\xe3\x52\x53\x50\x96\x0e\xbd\xd2\x19\xfb\x12\xef\xec\x7c\x2d\x91\x48\x28\x36\x9b\x0d\x81\x40\xc0\xb2\x7b\xdc\xfe\xfb\xf7\x8d\x38\xbf\x09\x0e\x4a\xc8\xdc\x24\x6c\x55\x56\xdc\x7f\xf4\xa2\xf7\xe7\xcf\x6d\x9f\xf9\xcc\xf6\xed\xdb\xdf\x1f\x1b\x1b\xd3\xa7\xa7\xa7\xe7\x2b\x7a\x11\x05\xd9\xed\x76\x58\x2c\x16\x6a\x57\x85\xa0\x4d\x15\x02\xcb\xad\x65\x28\x53\x50\xd8\xa5\x9e\xe7\xe0\x51\x55\x51\xb5\x48\x24\x32\xaf\xa3\x52\xdf\x9d\xe2\x40\x20\x80\xee\xee\x6e\xd1\x66\xb5\x5a\xec\x33\xc5\x7b\xbd\x97\xf2\x5f\xb2\xcd\xea\xf7\xd3\x22\xaa\x01\x18\x01\x68\x45\x11\x53\x69\xaf\x78\x62\xb6\x41\xfa\x81\x6d\xe7\xce\xd3\x9b\x37\x6f\x56\xde\x7a\xeb\x2d\x56\xca\xe4\x6d\xc5\xbd\x63\xc7\x0e\x88\x82\xe8\x78\xf0\x9a\xeb\x9b\x36\x4d\x08\x81\x2c\xcc\xd8\x11\x02\x88\x9c\xd8\x1e\x1a\x72\x7f\x3b\xec\x56\xfb\xf6\xef\xdf\x1f\x16\x45\x11\x66\x8d\x86\xf6\x86\x1d\x7f\x42\x40\xe8\xd2\xf0\x06\x46\x1d\xf7\x8e\x3a\xbf\xfe\xc2\xd6\x99\xdf\xdd\xb1\x63\x47\xac\xe4\x1f\x03\x96\x0e\xc4\x7c\x3e\x1f\x00\x18\xbd\x59\x43\xfb\x0d\x83\xaf\x25\x03\xb1\x49\xa7\x7a\x9e\x10\x92\x8a\x44\x22\xac\xf4\x00\x5a\xd7\xab\xb1\xb1\x11\x87\x0f\x1f\x16\xdd\xa2\xa5\xa9\xe9\x6c\xfe\x7b\x4d\x67\xf3\xbf\x74\x4c\xeb\x4f\x0b\x45\x04\x09\x60\x2c\xad\x0b\x35\x8a\x05\x84\x5c\x11\xfd\xf7\x9a\x4f\xe7\x5f\x6f\xec\x53\xfe\xd2\x69\xb0\x04\x8f\x1c\x39\x22\x36\x36\x36\xa2\x32\x6f\x6b\xc1\x8d\x8d\x8d\x65\xa7\xdb\x03\x73\x79\x27\x15\xe5\x30\x87\x6d\xaa\xd0\xe4\x4f\x19\xf7\x8a\xa2\x28\x02\x30\x56\x67\x8c\xbb\x0d\x45\xe2\x59\x29\x7c\x4d\xca\xb8\xdb\xc0\x88\xb7\xae\xae\xae\xb2\xd7\x2d\xf6\x05\xb9\x5c\x2e\x00\x10\xab\xb2\x86\xcd\x65\x3b\x7f\xde\xd7\x51\xc2\xa5\xe7\x02\x8b\xda\xb5\x0b\x9c\x73\x65\x72\x72\xb2\xfc\xfb\x4a\x5d\x77\x84\xeb\xea\xea\xe8\xc1\x83\x07\x45\xb3\x4a\xda\x5b\x4e\xe5\x5e\x70\xcc\xe8\x4f\x12\x70\x5a\xf6\xb9\x00\x1c\x0b\x78\xee\x4e\x38\x44\x57\x44\xff\xbd\x96\x0f\xf2\xcf\x9a\x74\x12\x3a\x78\xf0\xa0\xe8\xf5\x7a\x17\xe5\x6f\xb5\x58\x10\x04\x6a\x60\xc4\x43\x39\x91\x56\xf2\xf9\x00\x80\xc8\x88\x17\x73\x2c\x42\x39\xb8\x54\x2a\xa6\x65\xc3\x73\xc2\xc1\x01\x49\x10\x84\xca\xfc\xde\x48\x41\x00\x8c\xae\xbc\xd8\xb0\xa0\x6c\x4e\x2a\x29\x48\x11\x59\x26\x6d\x2a\x86\x01\x68\xb1\x58\x0c\x95\x3a\xee\x14\x0b\x82\x80\xee\xee\x6e\x2a\x82\x56\x87\xce\xe5\xbe\x6b\xca\xf1\xce\x1b\x12\xb1\x28\x41\x7c\xfe\x4e\x00\x48\xe9\xe2\xde\xc6\x3e\xe5\x2f\xaf\xed\x31\xff\xee\x43\x0f\x3d\x14\xfd\xf9\xcf\x7f\x3e\x6f\xa5\x00\xa0\x94\x52\x34\x37\x37\xd3\x4d\x9b\x36\xc1\x66\xb3\x51\x00\x34\x95\x4a\xb1\xcb\x97\x2f\x63\x72\x72\x12\xa5\x85\x5d\xc8\x19\x8a\x99\x8c\xb1\x18\x73\xaa\xa2\x7f\x39\xb7\x33\x23\xd0\x13\x96\xc2\x54\xe9\x6b\x36\x6d\xd7\x86\x14\x91\xa5\xcc\xba\xe0\x58\x2e\xfc\x75\x87\x36\xa8\x53\x9e\x63\x15\x89\xc1\x52\x0a\xf2\x78\x3c\x00\x20\xd9\x55\xd1\x7f\x03\xed\x54\xe0\x8c\xa9\x18\xd3\x29\x4f\x71\xce\xd9\xf4\xf4\xf4\xba\x52\x4f\x57\x57\x17\xac\x56\xab\xe4\x1b\xd3\xbe\x62\x4e\xb1\xbd\x7c\xde\x0c\x23\x58\x16\xf3\xf2\xe7\x05\x6c\x8b\x17\x0f\x7a\x26\x0b\xbf\xed\x76\xbb\x2d\x9d\x9d\x9d\xe5\xfc\x01\x00\xfb\xcc\x67\x3e\x83\x87\xba\x1f\x92\x76\x7b\x5b\x3b\x1f\xd2\x1a\x9f\x7e\xa0\xd0\xf8\xe4\x8e\xda\xb6\xa6\xc7\x1f\x7f\xdc\xf8\xe8\xa3\x8f\xd2\x54\x2a\xc5\x34\x4d\x63\x8c\x22\x7e\x2e\x98\x7e\x65\xce\xef\x75\x23\xa5\x8c\xb9\x95\xbe\xa4\x54\x1c\x06\xa0\x01\xd0\x55\x03\x0f\xf7\x84\x52\xcf\x2f\x17\x5e\x13\x98\x72\x32\x94\x7c\x16\x04\xf2\xe4\xe4\xe4\x22\xba\x5b\x64\x05\x89\xa2\x48\x09\x60\xb4\x68\xd4\x53\xe9\xff\x41\x05\xe6\x7c\xae\x02\x40\x90\x2b\x68\x85\x75\x1f\x7c\x75\x74\x74\x50\x52\xe4\xd5\xde\xb1\xc2\x97\xc9\xfc\x8a\xa2\xb9\x56\x4e\x96\xc5\x73\xf7\x85\x85\x61\x1c\x84\x13\xf8\x46\x0b\x5f\x8d\xd7\x19\x7e\xd1\xd1\xd1\xa1\x5c\xbc\x78\x11\x00\xd8\x17\xbf\xf8\x45\xd1\x61\xb2\x7a\x1e\xbe\xe2\xfe\x46\x7b\xd4\xf2\x95\x39\xbf\x3e\x47\x91\x20\x75\x2e\x98\xfe\x1f\x64\x53\xc3\x9f\x7f\xfe\xf3\x9f\x4f\x8d\x8e\x8e\xb2\xd6\xd6\xd6\xd8\x87\x75\x99\x1f\xdb\x55\xa1\x61\xc7\xa4\xfd\x61\xca\x09\x9d\x2b\x07\x8e\x49\xa7\x3a\xf4\xe6\xe6\xf8\x33\x1c\x3c\x92\x88\x27\xf4\x64\x32\x89\x50\x28\x14\xf9\x30\x90\xf9\x5e\x91\x70\x71\xff\x98\xe3\xa8\x55\x13\x1c\x1c\xc0\x8c\xbd\x30\x71\xbc\x25\xf1\xc3\x19\x7b\xe1\x6d\xce\xb9\x5c\x1e\x3b\x94\x2b\x61\x11\x05\x39\x9d\x4e\x10\x10\xa3\x49\xa7\xb6\x72\x5b\x2b\x4b\x25\x05\xe5\x0d\x4c\xe6\x9c\x6b\xc9\x64\xb2\xb2\x00\x71\xa7\xb8\xa6\xa6\x06\x66\xb3\x59\xb4\x24\x8a\xbb\x0d\x0a\x0f\x2d\x8a\x78\xc5\x04\xf1\xc5\xf7\x12\x96\x32\xac\x53\xca\xb0\x76\xb7\xdb\x1d\x75\xb9\x5c\x5a\x57\x57\x17\xb5\x58\x2c\xb6\x4f\x0c\xba\xbe\xd1\x31\x6d\xf9\xfd\x72\x85\x11\x00\x22\x27\x8e\xdd\xe3\xf6\x3f\x55\x45\xa6\x9d\x69\xc0\x77\xa2\xd1\x68\x2e\x9b\xcd\xe6\x6c\x36\xdb\xc5\x77\x9b\x92\xdf\xec\xf7\x67\x8f\x37\x24\xa4\x5d\x02\x23\xc6\x88\x43\x1b\x98\x72\xaa\xef\x72\x82\x3e\x70\xc4\xdf\x7d\xf7\x5d\xc8\xb2\x0c\x9f\xcf\x97\xb3\xd9\x6c\x17\x2f\x06\xb2\xcf\x5c\xf2\x67\x5f\xb7\xa9\x42\xb0\x48\xa1\x65\x8d\xc5\x61\x10\x0c\x02\x08\x0f\x0d\x0d\x69\xe1\x70\xb8\x22\x13\x4b\x06\x62\x84\x10\x91\x32\x88\x02\x2b\xcf\xf8\x54\x64\xb6\x02\xab\x22\x4b\x11\x42\xf4\x8a\x9d\x85\xeb\x22\x3e\x9f\x8f\x12\x42\x8c\xe6\x14\xdb\x51\x2e\x9e\xf2\xb8\x03\xc0\xf2\xb8\xd4\x09\xe6\x76\x1a\x2d\xc2\xd4\x9c\x66\xdb\x14\x87\xf0\x7e\x5b\x5b\x9b\xd6\xd4\xd4\x24\x5a\x55\xa1\x69\x4b\xc4\xfa\xcf\xcb\x0b\x88\x2b\x67\xb2\x40\x08\x76\x4c\xd8\xff\xe8\xc3\xba\xcc\x73\xf5\xf5\xf5\xa3\x2f\xbe\xf8\x22\x7b\xec\xb1\xc7\xe2\x36\x9b\xad\x37\x6e\xd5\xc3\x71\x6b\xe6\x65\xcc\x35\x98\x0c\x80\xb8\xae\xeb\xa9\x9e\x9e\x1e\xbd\x44\xc1\x78\xf9\xe5\x97\xd1\xdd\xdd\x2d\xfb\xfd\xfe\x4b\x8c\x62\x34\x65\x2e\x5a\x4a\x65\x93\x03\x90\xe9\xef\xef\xd7\xcb\x83\xb6\x0a\xb9\xc1\x17\x04\x70\x88\x73\x1b\x1d\x56\xa6\x20\x46\xb8\x0e\x40\xaf\x50\xb4\x2e\x14\x54\x36\x02\x44\x8d\x57\xdf\x9c\x76\x6e\x41\x41\x25\x2c\xaa\xbc\x16\x80\xb8\x6d\xdb\x36\x10\x42\x44\x6f\xd2\xd0\x25\x70\x62\x59\x69\xb9\xbc\xa5\x40\xfd\x0e\x45\x68\x2a\x58\xa5\x09\x59\x96\x95\x9f\xfc\xe4\x27\xec\xc0\x81\x03\x99\xe6\xe6\xe6\x9c\xc5\x62\xa1\x00\x50\x2c\x16\xd9\xd8\xd8\x18\x3b\x77\xee\x1c\x66\x67\x67\xe7\x29\x38\x95\x4a\xb1\x17\x5f\x7c\x11\x0d\x0d\x0d\xca\xa6\x4d\x9b\x94\xaa\xaa\xaa\x38\xe7\x1c\x91\x48\x04\xc3\xc3\xc3\xa8\x18\x97\x2c\x2a\xef\xe5\xdc\xd1\xf3\x72\x93\x81\xd8\xa2\x27\xf9\x3a\x63\xca\x2b\x5b\x26\x6e\x8d\x57\xda\x5b\x33\x77\xa8\xc1\x9c\xe5\x03\x80\x16\x05\x4e\x2b\x0b\x7c\x2e\x3f\x15\xe1\x01\x14\x28\x17\x01\xa0\xa1\xa1\x81\x86\xc3\x61\x9c\x3c\x79\x12\x27\x4f\x9e\x64\x16\x8b\x85\x89\xa2\x88\x25\xeb\x9a\x6e\x48\x7f\x38\x1c\xc6\x12\x9a\xb9\x69\xf8\x45\x14\xc4\x39\x07\x27\x04\x8c\x2c\x7c\x2e\xcf\xf9\xce\x63\x00\x02\x23\xc6\x8a\xf5\x9c\xeb\xe9\x03\xa2\x9c\x73\x56\x30\xd3\x28\x27\x0b\x2d\x9d\x63\x65\x3c\xdf\x0f\xca\x5e\x5b\x94\xa7\x07\x09\x34\x33\x9d\x06\xc0\x8a\xc5\x22\x28\xa5\x2c\x62\xd7\x86\x72\x46\x16\xb7\xa8\xd4\xb3\xdc\x8e\xc9\x19\x5b\x61\x38\x2d\x15\xa3\x00\x58\x38\x1c\x9e\x77\x4b\xb4\xb6\xb6\xc2\xe1\x70\x00\x00\x52\xa9\x14\xc6\xc6\xc6\xb0\xc4\xf7\x34\x2f\x5d\x5d\x5d\x65\x6f\x28\x05\x00\x59\x96\xd9\xc5\x8b\x17\x57\xdc\x95\xbf\x68\x83\x46\x69\xb7\x8a\xae\x53\x3e\x37\x9b\xbf\x8c\x41\xcb\x39\x60\xd2\xa9\x8d\x10\xb2\x5c\xeb\xbd\x19\xd5\x94\xc3\xad\x88\x53\xa9\x14\x08\x21\x5a\xd6\x45\xfb\x41\x08\x23\x9c\x53\xf0\x8a\x64\x2c\x87\x2b\xee\xf3\xc9\xe4\x00\x17\xa0\xe5\x9d\x74\x00\x80\x7e\xea\xd4\x29\xec\xd9\xb3\x47\x23\x06\xc3\xc4\x89\x66\xf9\x27\x9f\x1a\xf0\xfc\x3e\xe1\x8b\x7b\x7c\x81\x32\xed\x44\xb3\xfc\x03\x4e\x10\x49\xa5\x52\x0c\x00\x1e\x7a\xe8\x21\xda\xdc\xdc\x2c\x4a\x4c\x70\xf8\x32\xc6\x26\xc2\x41\x63\x75\x85\xe1\x6d\xdb\xb6\xa5\x26\x26\x26\xb4\x57\x5e\x79\x65\x3e\x8f\x6e\xb7\x1b\x8f\x3f\xfe\x38\xb5\x9a\x2d\x96\xfa\x84\xa9\xcb\x1f\x37\xed\x2c\x08\x2c\x37\x52\xe5\x7e\xa7\xfe\x70\x7d\x78\x74\x74\x54\xab\x58\xa8\x30\x5f\x3e\x4b\xf7\x88\x31\x0e\xe8\xaa\x81\x65\xa0\xae\x4c\x41\x16\x4d\x70\x81\x43\x2c\xb5\x9c\x75\xa3\xa0\xd2\x9a\x4c\x4d\xb5\xd2\x81\xac\x8b\x0e\xda\xe2\xac\x7d\xae\xb0\x57\x41\x47\x4b\x24\x5d\x25\x9c\x2f\x98\x48\x18\x80\x36\x3c\x3c\x0c\x49\x92\xd8\xce\x9d\x3b\x23\x57\x7c\xb9\x1f\xab\x02\x63\x07\x46\x9d\x4f\x7a\x72\xa2\x7f\x6e\x54\xaf\x4e\xbc\xd7\x94\xfc\x49\xc4\xa1\xbd\x0c\x20\x7e\xe1\xc2\x05\x76\xe8\xd0\x21\x1a\x6a\x0c\xd9\xba\x26\x6d\x5f\xd8\x3f\xe6\xfc\x8f\x26\x9d\x04\x01\x82\x82\xc0\xa2\xbd\xc1\xf4\x9f\x9d\x6a\x0c\xfe\xf5\x53\x4f\x3d\x95\x7a\xe1\x85\x17\x60\xb1\x58\x70\xe4\xc8\x11\xea\x12\xad\x81\xc7\xcf\x57\x3d\x53\x2f\x9b\x9e\x28\xb3\xc5\xfd\xc3\x3c\x73\xba\x21\xf5\x5f\xd0\x18\xfa\xeb\xa3\x47\x8f\x66\x5e\x7a\xe9\xa5\xf2\x6a\xf0\x1b\x29\x28\x95\x4a\x51\xbb\xdd\xae\xe5\x0c\x45\x19\x58\x99\x82\xec\xaa\x50\x4d\x00\xc9\xe3\xf1\x50\x2c\x7e\x18\xdf\x91\x24\x12\x09\xc8\xb2\xac\xbb\x5c\xae\xc8\x74\xb3\xe9\x67\xd6\x44\xfe\x3f\xcf\x35\xe8\xb5\x51\x10\x28\x61\xd3\x2d\xa6\x67\x39\x10\x8d\x4e\x4f\xeb\xb9\x5c\x8e\x9d\x39\x73\x06\x75\x75\x75\xb9\x9a\x9a\x9a\x81\x11\x4f\xfe\x6f\x46\x3d\xca\x71\x49\xa7\x01\x0e\xce\x54\x91\x87\x41\x30\xc4\x39\x9f\x18\x1b\x1b\x53\x44\x51\x44\x63\x63\xa3\xd4\x19\xb1\x3e\xfd\xe0\x35\xd7\x5f\x96\xbd\x9b\x00\x60\xd0\x49\xf5\xbe\x31\xc7\xb7\x08\x87\xf5\x64\x08\xdf\x3e\x70\xe0\x40\xc6\x6e\xb7\xc3\x2c\x99\x1d\x0f\x5f\x76\xff\xb7\x06\x59\x7a\x82\xcf\x9b\x64\x00\x65\xb0\xed\x1f\x73\x7c\x2b\x63\x2a\xa6\xb8\xbf\xe6\x87\x1d\x1d\x1d\xca\xa5\x4b\x97\x16\x86\xe6\x15\x77\xaa\x69\x1a\x03\xa0\xa5\xe6\x78\xb0\xc2\x11\xb4\x80\x39\x00\x9b\x26\x78\x0d\x45\xe2\x30\x18\x0c\x6b\xf1\xf3\x60\x35\xf8\xe2\xc5\x8b\x0c\x80\x9c\xf6\x0a\xaf\xc6\x1a\x0d\xc7\xca\x76\x0e\x29\x95\xee\x52\x5c\x79\x2f\xdb\x96\x91\x66\xe3\x8b\x39\xa7\xf0\x0e\x00\xb9\xaf\xaf\x6f\x5e\xff\x2b\xaf\xbc\x82\x91\x91\x91\x14\x80\x41\x10\xbc\xad\x18\xd8\x73\x8a\xc8\x9e\x07\xc1\x7b\x8c\xb1\xe1\x81\x81\x81\xdc\xb1\x63\xc7\xd0\xd1\xd1\x41\x05\x4e\xbc\x7b\xc6\xed\x5f\x23\x58\x44\xb5\xf3\x95\xbf\x63\xd2\xfe\x87\xe6\x02\x0d\x75\x76\x76\xd2\xfa\xfa\x7a\xd1\xa9\x88\xed\x2d\x31\xf3\x13\x4b\xc3\x96\xc2\xd3\xdd\x61\xfb\x1f\x0b\x9c\x78\xb7\x6d\xdb\xb6\xa8\x7c\x16\x51\xd0\xec\xec\x2c\xbc\x5e\xaf\x26\x9b\x0b\x13\xc0\xca\x14\x64\x28\x12\x87\x2b\x2f\x36\x44\xed\xfc\xa2\xdf\xef\xa7\xeb\xe9\x8e\x1e\x18\x18\x40\x67\x67\x67\xce\xe3\xf1\x0c\x4d\xb5\x9b\x9e\xa1\x45\x58\x3c\x13\x85\x7b\xe7\xc7\x59\x37\xa1\x20\x4e\x80\x99\x4d\x86\x63\xd3\x2d\xc6\xbf\x02\xc1\x70\xe4\x7a\x44\xa9\xb0\x48\x68\xa1\x50\xc0\x9b\x6f\xbe\x89\xea\xea\x6a\xad\xa1\xa1\x41\xf3\xfb\xfd\x29\xc6\x18\x22\x91\x08\x86\x86\x86\x90\x4a\xa5\x20\x49\x12\x1c\x0e\x07\x35\xab\x42\xd0\xa1\x88\x4d\x73\x79\xbe\xd1\x6a\x32\x14\x89\xcb\x9b\x35\x74\x8d\x1b\xd5\x21\x00\xa8\xca\x8a\xdb\x28\x87\xb4\x52\x78\x87\x2a\x36\x59\x34\x21\xc8\x1c\x8e\x88\x24\x49\x4c\x51\x94\x1b\x29\x28\x9f\xcf\x53\xce\xb9\x12\xb3\xea\x57\x81\x95\x29\x88\x10\x02\x7f\xda\xb8\x7d\xda\xa6\x1d\xf3\xf9\x7c\x5a\x24\x12\x59\x37\x4b\x88\x31\x86\xb7\xde\x7a\x8b\x3e\xf1\xc4\x13\xb2\x28\x8a\xbd\xe3\x5b\x4c\xdf\xcc\xba\x85\xdf\xf1\x0f\xaa\x47\x0d\x2a\x77\x60\x59\x0a\x22\xd0\x2c\x24\x7e\x7d\xb3\xe9\x17\xb2\x5f\x7c\x16\x84\xf4\x65\x32\x99\xd4\xaf\x7e\xf5\x2b\x70\xce\x6f\x48\x5b\x34\x1a\x45\x34\x1a\x5d\x36\x7e\x45\x51\x00\x80\x72\xc2\x8d\xf3\x75\xbe\xc2\x39\x13\x3a\xe5\xf3\xad\x39\x6f\x60\xf3\x7b\x89\x97\x0b\xaf\x18\x58\x4a\x31\x30\xbd\x14\xc7\x7c\x9a\x16\x59\x41\xa5\xc3\x29\xf4\x59\xab\x36\xc4\x08\xd7\x09\xc8\x42\x0f\xa9\x1c\x81\x02\xa8\x93\xa5\xdd\xe7\x03\x59\x4b\x5d\x5d\x5d\xe6\xc2\x85\x0b\xeb\x62\x05\x95\x71\x22\x91\x60\xaf\xbf\xfe\x3a\x1e\x7d\xf4\xd1\xa8\x28\x8a\xa7\xe3\x41\x43\x4c\xf6\x8b\xc7\x1d\x51\xfd\x41\x7b\x4c\xef\x94\xb2\xac\x9a\xea\x30\x16\x45\xa2\xa9\x36\x1a\x49\xf9\x84\x8b\x29\x9f\x78\x9c\x0b\xe4\x3c\xe7\x7c\x34\x97\xcd\xa6\x5e\x7e\xf9\x65\x96\xc9\x64\xd6\x3c\x18\x94\x24\x89\x02\x60\x39\x03\x93\x63\x36\x6d\xd8\x9f\x36\xb5\x63\x19\x91\xcd\xfa\xd4\xb4\x5d\x1b\xc4\xdc\x33\x90\x46\xed\xda\x50\xc2\xac\x4f\x78\xf2\x86\xe0\x72\xe1\xaf\x7a\x73\xa7\x0b\x94\xc9\x45\xbd\x58\x8e\xef\x46\x2b\x48\x96\x65\x10\x42\xf4\xac\x91\x4d\x25\x25\x3d\xe2\xae\x50\xb6\x64\x20\x86\x7a\xd9\xb4\x9b\x32\xb8\xaa\xab\xab\x63\x15\x8b\x02\xd6\xd5\x22\x7a\xee\xb9\xe7\xd8\xc3\x0f\x3f\x1c\xaf\xae\xae\xce\x31\x91\x4c\xc8\x01\xc3\x69\x39\x60\xf0\x02\x70\xa0\x34\x23\x06\x20\x05\x20\x0a\x20\x06\x40\x9e\x9c\x9c\xd4\xde\x7d\xf7\x5d\xa4\xd3\xe9\xdb\x8a\x57\x51\x14\x24\x12\x09\xe6\x76\xbb\x63\x27\x9a\xe5\x1f\x7d\xf6\xbc\xef\x1b\x06\x46\xe7\xb7\x62\x11\x42\x50\x24\x9c\xbd\xdb\x24\xff\x2d\xa3\x98\x62\x6c\xae\x55\x83\xd2\x89\x37\x37\xc7\xff\xcf\x67\x2e\xfa\xbe\x2e\xe9\x74\x7e\x31\x03\x08\x10\xb5\x69\xe1\x93\xa1\xe4\xf7\x08\x21\xb1\xd1\xd1\xd1\x45\x0e\xcc\xf2\x59\x11\x1c\x00\x57\x14\x85\x77\x76\x76\x42\x14\x45\xc9\x97\x35\xee\xf7\xa5\x0d\x4d\xcb\x51\x10\x08\x20\x32\x62\x9d\x74\xa9\xa7\xb2\x36\x0c\x46\xa3\x51\xbd\x64\x3b\xf3\xf5\xbc\x54\x55\xe5\x03\x03\x03\x3c\x91\x48\x14\xad\x56\x6b\xc6\x66\xb3\xc5\x39\xe7\x11\x00\x61\x42\xc8\x08\xe7\x7c\x84\x10\x32\xc6\x18\x9b\x99\x9e\x9e\x4e\xf7\xf4\xf4\x14\x4f\x9f\x3e\xcd\x34\x4d\xbb\xd3\xb8\x51\x5f\x5f\x5f\xc8\x48\x2c\x3e\xe1\x52\x93\xce\xbc\x58\x67\x2e\x50\x2b\x23\x9c\x47\x6d\xda\xc4\x5b\x6d\x89\xef\x8f\x7a\x94\x9f\x72\xf0\x70\x6f\x6f\xaf\x36\x36\x36\xc6\x83\xc1\xa0\x9a\x91\xd8\xcc\x90\x37\x3f\x4e\x39\x71\x08\x1c\x62\x4a\xd2\xe5\x8b\xb5\xd9\xf7\x7f\xd5\x96\xf8\x5f\xaa\x81\xf7\x30\xc6\x66\xdf\x7e\xfb\x6d\x56\xa2\x20\x0e\x80\x2f\xdd\x29\xcf\xa6\xa6\xa6\x58\x73\x73\x73\x2a\xec\x56\xce\xdc\x13\xb1\x1d\x5c\xa8\xc9\xc5\x14\x44\x40\xd0\x3e\x6d\xfd\xf4\xb8\x5b\x7d\xad\xbd\xbd\x5d\x19\x1f\x1f\x9f\xef\x56\x65\x5d\xb8\x4d\x0a\x5a\x8a\x87\x87\x87\xd9\xf0\xf0\x30\x05\xa0\x85\x42\x21\xdd\x66\xb3\xcd\x27\x2b\x93\xc9\xa0\xd4\xaa\xd6\x3a\x30\x5c\x11\x5f\xbe\x7c\x19\xc1\x60\x50\x09\x85\x42\x43\xd7\x9d\xda\x8f\x7e\xbe\x7d\xe6\xa4\xb1\x48\x82\x00\xa0\x09\x3c\x02\x82\x21\x00\xe1\xd8\x4c\x2c\xd7\xd7\xd7\x07\xce\x39\x02\x81\x80\x12\x0a\x85\x86\x64\x8b\x9e\x79\xab\x35\x7e\x86\x80\x78\x00\xe8\xa5\xe3\x16\xc2\x8c\xb1\xd8\x3b\xef\xbc\xa3\x97\x16\x2d\xcf\x97\xd5\xd2\xf3\x82\x88\xd9\x6c\x46\x43\x43\x03\x72\x06\x66\xda\x3e\x65\x7b\x42\xe0\x73\xcf\x81\xa5\x14\x04\x00\x4e\x45\xac\xed\xf7\x67\x7f\x21\xb9\x6c\xb3\x03\x03\x03\x4c\xd7\xf5\x9b\x39\x8f\xc9\x7a\x60\x59\x96\xe7\x1f\xa2\xd1\x68\xb4\x7c\x6c\xc1\xcd\xe2\xbd\x2d\x3c\x32\x32\x02\x8b\xc5\x52\xf0\x78\x3c\x49\x42\xc9\xf5\x22\xc5\x60\x91\xe2\x0a\x08\x86\x18\x63\x91\xa1\xa1\x21\xe5\xd8\xb1\x63\x28\x16\x8b\xf3\xe1\x0b\x85\x82\xee\xf5\x7a\x53\x06\x83\x21\x02\x82\x30\x08\x46\x08\x21\x93\x99\x4c\x26\xfd\xd6\x5b\x6f\x15\x47\x47\x47\xb1\x34\xae\x65\x87\x92\x5f\xfd\xea\x57\x8d\x04\xa4\xf3\x89\x0b\xde\xbf\x09\xc5\xcd\x3b\x97\xa3\xa0\xb9\xd5\x89\x1c\xef\x36\x25\xff\xeb\xd9\x60\xea\xdb\x67\xcf\x9e\xcd\xf4\xf6\xf6\xae\xa7\x5f\xe8\x63\x21\x1e\x8f\x87\x86\x42\x21\x78\xbd\x5e\x00\x73\xa6\xfa\xc8\xc8\x08\xe2\xf1\xf8\x8a\x79\x6d\x6c\x6c\xa4\x5e\xaf\x17\x65\x13\x77\x25\xbf\x11\xb0\xc4\x0a\x42\xa9\xeb\x27\x12\x09\xdd\xe3\xf1\xc4\xae\x54\xe7\x4e\x34\x26\xa4\x9d\x73\xcf\x81\xc5\x14\x54\xf6\xa5\x6f\x9f\xb2\x7d\xe1\x42\x20\xf3\xa3\x7b\xee\xb9\x67\xb8\x54\x01\xeb\x4e\x41\xab\xc4\xeb\xe2\x12\x5f\x8a\xe3\xf1\x78\xb9\xb0\x17\x7d\x1f\x0a\x85\x68\x53\x53\x13\xdc\x6e\x37\x05\x80\x74\x3a\xcd\xae\x5d\xbb\x86\x6b\xd7\xae\x61\x6c\x6c\x8c\x8d\x8d\x8d\xad\x4a\xff\x0d\x14\x04\x80\x18\x0c\x06\x04\x83\x41\x9e\x92\x74\xb6\x35\x62\x3b\x62\x60\xd4\xb4\x1c\x05\x11\x02\x98\x74\xe2\xce\x19\x58\x74\xb6\x8a\xf7\x52\x4a\x0b\x25\x7f\x4e\xa5\xce\x79\xbd\x1b\x8c\x57\x8a\x77\x5d\xb1\x28\x8a\xe4\xd0\xa1\x43\xd8\xb9\x63\xa7\x31\x64\xf1\xd5\x6f\xc9\x79\x1e\x6c\x2c\xba\xee\xb1\x7b\x9c\x7a\x6d\x5b\x28\x5b\xdf\x50\xaf\x8f\x8f\x8f\x93\x42\xa1\xb0\x2a\x9d\x8b\xac\xa0\xf2\x35\x3d\x3d\xcd\xbb\xba\xba\x38\x13\x40\x6c\x9a\xd8\x59\x9b\x36\xb5\x2c\x47\x41\xc0\x9c\x59\x56\x9d\x31\x76\xf6\xfb\xb3\x2f\xba\x6b\xbc\x89\xab\x57\xaf\xb2\x92\x4b\x63\x5d\x2d\xa2\x8f\xcb\x75\xf8\xf0\x61\xd2\x10\xac\x77\x1c\x18\x75\xfc\xeb\xc3\x03\x55\x3f\x68\x8b\x59\xbf\xd4\x3c\x6b\xfe\xad\x2d\xd7\x6d\x5f\xb1\x69\x82\x23\x16\x14\xce\x36\x84\x1a\xd5\xfe\xfe\xfe\xe2\x6a\xf4\x2d\x3d\xb2\xac\x3c\xf8\x43\x55\x55\x15\x77\xbb\xdd\x2c\x69\x2e\x92\xad\xd7\x6d\x8f\x13\x90\x85\x19\xc0\x52\xdb\x2b\x63\x03\xa3\x36\xa3\x4e\xa5\x31\xaf\x76\xdc\xe5\x76\x29\x43\x43\x43\x65\x5d\x4b\xf5\xd2\x0d\xc4\x95\x71\x6d\x08\xde\xba\x75\x2b\xe9\xe8\xe8\x90\xb6\x4d\xd9\xbf\x7c\xff\x88\xf3\xdb\x94\x11\xa9\x3c\xe2\x25\x1c\x86\x9a\x8c\xf1\x00\xe5\x84\x45\xfd\xfc\x94\xc9\x64\x2a\x4c\x4c\x4c\xdc\x52\xe7\xb2\x14\x04\x80\xa8\xaa\x8a\xd6\xd6\xd6\xa2\x6a\xe4\x05\x4f\x4e\xdc\xe6\xcb\x1a\xeb\x51\x2e\xfc\x72\xe0\x0a\xec\xcd\x1a\xee\x89\x38\xd4\x73\xf0\x5b\x47\x54\x55\xd5\xa3\xd1\xe8\x3f\x39\x0a\x7a\xe4\x91\x47\xa8\x24\x1a\x6b\x0f\x0f\x54\x7d\x47\xd2\x05\xcf\x52\x9f\x0f\x01\x81\x2f\x6b\xd8\xd2\x5f\x9b\x7d\xde\x51\xed\x99\xbd\x70\xe1\x02\x67\x8c\xdd\x54\x67\xe5\x03\x61\xd1\x35\x39\x39\xc9\xa6\xa7\xa7\x35\xce\xf9\xd4\x07\xf5\xe9\xbf\xd3\x09\xd7\x17\x86\x29\xc0\x52\x2c\x30\x62\xfc\xe4\x55\xcf\xb7\xcc\x1a\x0d\xed\xd9\xb3\x47\x2c\x59\x0d\x77\xb4\x46\xe8\xe3\x76\x59\xad\x56\x6a\x2e\x50\xbf\x4d\x15\x1a\x00\x2c\x3a\xe5\xa5\x8c\x0d\x45\xe2\x72\xe5\xc5\x4e\x51\x14\x45\x5d\xd7\x6f\xa9\x73\x25\xb7\x31\x00\xd0\x73\xe7\xce\x81\x10\x22\xcf\x5a\x0b\x3d\x97\xfd\xd9\xf7\xca\xb4\x53\xae\xbf\xa5\xd8\xa1\x88\x2d\x8f\x5c\xf1\x7c\xcb\x28\x1a\x5c\x87\x0e\x1d\xa2\x26\x93\x69\xcd\xee\xe8\x3b\xc0\xab\x71\x89\xdf\x36\x2e\x6d\x39\xa5\x3a\xe5\xb4\x58\x9e\x31\x5c\x46\x38\x81\x9e\x37\x30\x0d\x00\xad\xaf\xaf\xbf\xa5\xfe\x1b\x0a\xbd\x32\xc0\xf8\xf8\x38\x22\x91\x88\x06\x82\x70\x4f\x63\xea\x07\x79\xb1\x98\x59\x89\x82\xca\x53\x07\x9b\xe2\xd2\xd1\xfb\x87\x9d\xff\xde\x66\xb5\x39\x0e\x1f\x3e\x0c\x83\xc1\xb0\xe1\x85\x53\x71\xdf\x30\x2c\xcb\x32\x18\x63\x4c\x15\xb9\x1c\x76\x2b\xe7\xe7\xf2\xbc\x98\x82\x00\x20\x62\xd7\x86\x64\xb3\x1e\x06\xa0\x27\x93\xc9\x5b\xea\x5f\xd6\x0a\xaa\xbc\xe2\xf1\x38\xe9\xe8\xe8\xd0\x35\x81\x29\x05\x01\xae\x50\x5c\xea\x22\x95\xcd\xbf\xf2\x11\x4b\x00\xc2\x09\xfc\x69\xe3\x9e\x82\xc0\xe4\x54\xad\xe1\x7c\x20\x10\x28\x6f\x5b\xfd\xc8\x2d\x98\x3b\xb9\x38\xe7\xbc\xa6\xa6\x86\x3b\x1c\x0e\x4c\xdb\xb5\x7c\x73\xcc\x7c\xbf\x51\x27\xe6\x4a\xb7\xb3\x62\x60\xb9\xd7\x3a\x66\xff\x7b\xc6\x58\x3c\x9d\x4c\x26\xd3\xbd\xbd\xbd\xb7\xb4\x84\x56\xb4\x82\x4a\xdf\xf1\x5c\x2e\x47\x9c\x4e\x67\xd1\xe3\xf1\xa8\x33\xb6\x42\xa2\x2e\x69\xda\xe7\x54\xc5\xaa\x4a\x2b\x68\x29\x06\x27\xb4\x41\x96\x1e\xcc\x1b\xd8\x4c\xb6\xd6\x78\x29\x18\x0c\x16\xae\x5c\xb9\x52\xb6\x00\xfe\xd1\x5a\x41\xf9\x7c\x1e\xad\xad\xad\xba\x66\xe0\xf2\xa0\x2f\x3f\x26\x70\xe2\x34\xea\xd4\xa2\x8a\x4c\x19\xf6\xe5\xfb\xdf\xd8\x9c\xf8\xce\xac\x4d\x7f\x1d\xc0\xd4\xa9\x53\xa7\x0a\xb3\xb3\xb3\xb7\x6f\x05\x55\x7e\x3f\x35\x35\x85\x8e\x8e\x8e\x82\x60\x10\xf3\x53\x4e\x2d\xd5\x31\x6d\xe9\x16\x19\x35\xdc\x9c\x8e\x88\xd0\x18\x97\x1e\x29\x52\x9e\x49\x05\x0c\x17\x5a\x5a\x5b\xf4\xf1\xf1\x71\xae\xaa\xea\xc7\xd2\x0a\x2a\xbd\x1e\xe5\xa6\x61\xd2\xe9\x34\x8a\xc5\x62\xb1\xae\xae\x2e\x53\x10\xf9\xe4\x68\x95\xd2\xfb\x61\x5d\xe6\x9d\xbe\x60\xe6\xe5\x61\xaf\xf2\x0f\x8a\x81\xf5\x00\x18\x1f\x1a\x1a\x52\x7a\x7b\x7b\x57\x17\x6f\xe9\xc3\x4d\xbb\x49\xb1\x58\xe4\xd9\x6c\x16\xa1\x50\x48\x55\x44\x96\xc9\x48\xcc\xd8\x1c\x33\xef\x24\x9c\x54\x2e\x56\x5b\x8e\x8e\x68\xbd\x6c\x7a\xd8\x52\xa0\xf6\x68\x0d\xce\xb6\x6c\x6e\xcd\x27\x93\x49\x2e\xcb\xf2\xc7\x86\x92\x1c\x0e\x07\xe9\xee\xee\xc6\xfd\xf7\xdf\x4f\x5b\x5a\x5a\x78\x36\x9b\x45\x69\xcd\xeb\xb2\xe1\xa7\xa7\xa7\x79\x2e\x97\x63\x5e\xaf\x37\x63\x30\x18\xa6\x09\x21\x63\x00\x46\x39\xe7\xe3\xba\xae\xcf\x9e\x3d\x7b\xb6\xd0\x5f\x59\x6d\x67\x00\x00\x07\x76\x49\x44\x41\x54\xd3\xd3\xb3\xea\xfc\xdd\x92\x82\xca\xff\x8b\xc7\xe3\xcc\xe5\x72\xb1\xaa\xaa\xaa\xdc\xac\xa5\x10\x33\xe9\xb4\xc1\x9f\x32\x35\x2d\x47\x41\x95\x98\x70\x42\x6a\x32\xc6\xbd\x75\x49\x53\xd7\x75\xaf\xfe\x41\xb0\x6d\x53\xca\xe5\x72\xb1\xa9\xa9\x29\x52\x2c\x16\x3f\x52\x0a\x6a\x6f\x6f\x27\x87\x0e\x1d\xa2\x3e\x97\xc7\xfd\xd0\x68\xd5\x1f\xc2\x6e\xca\x56\x77\x34\xc6\xe2\xf1\x38\x97\x65\x79\xc5\xdf\xc6\x62\x31\x72\xe9\xd2\x25\x9e\x48\x24\xf4\x58\x2c\xa6\x46\x22\x11\xe5\xf2\xe5\xcb\x85\xf7\xdf\x7f\x9f\x4f\x4c\x4c\x60\x2d\x69\x58\x15\x05\x95\x71\x38\x1c\x46\x73\x73\xb3\x2e\x49\x52\x76\xdc\xa5\x4c\xd5\x64\x8c\x5b\x5d\x79\x43\x35\x29\x17\x78\x39\xe0\x0d\x1d\x8d\xc0\xa9\x8a\x4d\x1d\xd3\x96\xcf\x66\x4c\x2c\x82\x7a\xfb\x68\x6b\x5b\x5b\x41\xd7\x75\xc4\x62\xb1\xbb\x4e\x41\xb5\xb5\xb5\xe4\xe0\xc1\x83\xe8\xec\xe8\x94\x6a\xf2\xd2\x8e\x4f\xf7\xfb\xfe\xa6\x39\x66\xf9\x4a\x20\x65\xda\x77\xc5\x9f\x7b\x2d\xd0\x58\x9f\xba\x76\xed\x1a\x34\x4d\x5b\x51\x0f\xe7\x1c\x89\x44\xa2\xec\xed\x44\x22\x91\x28\xbf\x06\x65\x4d\xe9\x59\x15\x05\x95\x2f\xce\x39\x8f\x44\x22\x68\x6e\x6e\x56\xa8\x28\xa4\x47\x3d\xca\xf5\xa0\x6c\xda\x61\x57\x45\xd7\xbc\xca\x25\x74\xc4\xc1\x51\x3e\xcd\x4f\x64\xc4\xde\x32\x6b\xfe\x4c\x4d\xca\xd8\x91\x74\xe1\x8a\xaf\x25\x28\x37\x35\x35\xb1\x42\xa1\xc0\x4b\x1e\xc7\x0d\xa5\x9b\x40\x20\x40\xf6\xed\xdb\x87\x7d\xfb\xf6\x19\xab\x4c\xf6\x9a\xfd\x63\xce\x7f\x73\x70\xd0\xfd\x1d\xa7\x2a\xb6\x12\x00\xe6\x02\xf5\xdb\x34\xd1\x3d\x5a\xad\x9d\xf0\xfb\xfd\xf9\x81\x81\x81\x0d\x4f\xd3\xaa\x29\xa8\x8c\xf3\xf9\x3c\x64\x59\xe6\x4d\x4d\x4d\x79\x26\x12\x79\xc4\x93\x8f\x34\xc8\xd2\x4e\x8b\x26\xd8\x97\xa5\xa0\xb9\x3f\x20\x28\x1f\x75\x46\x88\x3b\x6f\x68\xbf\x67\xda\xfa\x3b\x76\x45\xa8\xce\x56\x09\x23\x81\xd6\xc6\x4c\x7b\x7b\x3b\x37\x9b\xcd\xc8\xe5\x72\x44\x51\x94\x75\xa3\x20\x93\xc9\x44\x5b\x5a\x5a\xc8\x27\x3e\xf1\x09\xd2\xd5\xd5\x65\xac\x76\x56\x55\x6d\x9f\xb2\x7d\xf1\xd1\x81\xaa\xbf\x0a\x25\xa4\x27\x28\x23\xa6\x79\x7b\x9e\x03\xbe\xac\x61\x6b\xda\x54\x0c\x67\xab\xc5\x4b\x26\x93\x49\x5f\x8d\x3f\xe7\x4e\x70\xb9\x4b\x2c\x1d\x90\xdd\x52\x36\x6f\xde\x8c\x07\x1f\x7c\xd0\x08\x20\x68\xd6\xe8\xc3\x47\x2f\x7a\xbf\xee\x4f\x1b\x43\xcb\x1d\x61\xcc\xb1\xd0\xf7\x96\x62\x46\x78\x66\xc8\x9b\x7b\xfe\x42\x6d\xf6\x7b\x53\x4e\xf5\x3c\xa3\xc8\xc9\xb2\xac\x87\xc3\x61\x16\x89\x44\x10\x89\x44\xa0\xaa\xea\xaa\x0f\x77\x15\x45\x11\x2e\x97\x0b\xf5\xf5\xf5\xf0\xfb\xfd\xa8\xab\xab\x13\x29\xa1\x46\xa7\x22\x06\x3b\x22\x96\xdf\xde\x7a\xdd\xf6\x65\x4b\x41\x08\xdd\x98\xca\x05\xd1\x04\x26\xff\xac\x2b\xfa\xd9\x98\xad\xd0\xf3\xe6\x9b\x6f\x6a\x23\x23\x23\xab\x2e\x97\xb5\xca\xcd\xd2\x71\x4b\xd9\xbb\x77\x2f\xdd\xbe\x7d\xbb\x11\x40\xd0\x54\xa4\xf7\x1f\xba\xe2\xf9\x5a\x73\xcc\xbc\x8d\xcc\x6f\x26\x58\x4c\x41\x73\x31\xae\x84\xc1\x64\xb3\x7e\x7e\xb8\x2a\xff\xca\x48\x95\xf2\xfa\xb4\x5d\x1b\xd0\x28\xcb\x10\x42\xf4\x5c\x2e\xc7\x92\xc9\x24\x53\x55\x15\xf1\x78\x1c\x8b\xf7\xb9\x01\x0e\x87\x03\x46\xa3\x11\x55\x55\x55\xd4\x6c\x36\x53\x51\x14\x29\xe1\x90\x5c\x79\x31\xd0\x18\x97\x1e\x68\x89\x99\x3f\x5d\x9b\x32\x3d\x20\x70\x62\x03\xb0\xaa\x77\xcb\xc4\xac\x5a\xdf\xcf\xba\xa2\x9f\xcb\x30\x35\xfc\xfd\xef\x7f\x7f\xdd\x96\x5f\x2e\x95\xa5\x3d\xa0\x32\x67\x14\xab\x98\x39\xea\xea\xea\xc2\xee\xdd\xbb\x45\x4a\x69\x80\x32\xec\x3e\x30\xea\xfc\x97\xbb\xc6\xed\x07\x29\x16\xba\x75\xe9\x60\x95\xb9\x8f\xab\xc2\x9c\xa9\x22\x9b\x9a\xb1\x15\xfa\xa6\xed\xda\xf9\x59\x4b\xa1\x3f\x69\xd6\x47\x33\xc6\x62\x44\x15\x59\xa6\x20\x70\x9d\x97\x96\xd0\x0b\x8c\x88\x46\x9d\x48\xe6\x02\xf5\x38\x15\xb1\xc1\x9d\x33\xb4\x55\x67\x0c\x5b\xfd\x69\xd3\x4e\xbb\x2a\xb4\x11\x0e\x89\x80\xac\xfd\xe5\x3e\xe0\xb8\x5c\x93\xfb\xfe\x1b\xed\xf1\x3f\x3e\x7f\xfe\x7c\xa6\xa7\xa7\xa7\x5c\x2e\xeb\x3a\xe3\xb6\x74\x75\xf4\x72\xbe\xa1\x9b\xe2\xbe\xbe\x3e\xa4\xd3\x69\xbd\xbb\xbb\x7b\x0a\x82\xf0\xde\xaf\x37\x25\xe5\x88\x5d\x1b\xfd\xe4\x55\xf7\xd3\x96\x82\x60\xbb\x3d\x3b\x85\x50\x49\x17\x82\xf5\xb2\x10\x0c\xca\xd2\x91\x85\x87\x13\xd7\x39\xa0\x30\x0a\x85\x83\xeb\x00\x28\xe5\xc4\x48\x38\x2c\x04\x30\xde\xec\x04\xf7\x95\x36\x65\xac\x84\x15\x91\x65\xc2\x6e\x25\x0c\xc0\x58\xde\x1b\x70\xb3\x72\xb8\x5d\xbc\x26\x2b\x68\xa5\x2b\x91\x48\xf0\xc9\xc9\x49\xde\xd8\xd8\x98\x17\x45\x31\x1e\xb7\x14\x86\xaf\x56\xe7\xc7\xdc\x79\xb1\xc1\x95\x17\xbd\x73\x4f\xe6\x5b\x51\xd0\xaa\x30\x25\x1c\x46\xca\x61\xa1\xa0\x36\xca\x60\xa5\x20\x12\x38\x84\x3b\x79\x8d\xd5\x92\x57\x5a\x61\xcc\xad\x0c\xbe\xb4\x25\xf6\x3f\x27\x5d\xda\x2b\x00\x22\xd7\xae\x5d\xd3\x4b\x13\xeb\x1f\xbd\x15\xb4\x12\xce\x66\xb3\xb8\x76\xed\x1a\xf7\x7a\xbd\x8a\xc3\xe1\x48\x6a\x22\x9f\x18\xac\xce\xf5\xcb\x92\x5e\x08\xa4\x4d\x4d\xc6\x22\x35\xde\x68\x11\xdd\x39\x2e\x37\xfa\xb5\xb6\xf0\xe5\x70\xce\xc8\x32\xc7\x5b\xe4\xe7\xdf\x6b\x4e\x7e\x47\x11\xd9\x09\x42\xc8\xd8\xe4\xe4\x64\xfe\xf8\xf1\xe3\x65\xea\x58\x77\x2b\x68\x4d\x03\xb1\x5b\xe1\x42\xa1\x80\xc1\xc1\x41\x10\x42\x0a\x35\x35\x35\x69\x42\x49\x24\x66\x2b\x5c\xed\xf7\x67\x2e\x81\xc0\xea\xcb\x1a\x02\x02\x27\x02\xa9\x88\xe1\x8e\xf1\x2a\x0a\xf6\x56\x58\xa3\x4c\xeb\xab\x4b\xff\xfa\xd5\xce\xf8\x9f\x5f\x77\x6a\x2f\x80\xa0\x8f\x73\x1e\x39\x77\xee\x9c\x7a\xfc\xf8\xf1\x35\x97\xc3\x5a\xf0\x1d\x59\x41\x37\x13\xaf\xd7\x4b\xef\xbd\xf7\x5e\xd4\xd4\xd4\x48\x84\x10\x2f\xe7\xbc\xc5\xa1\x8a\x7b\x77\x4e\xd8\x3f\xdd\x19\xb1\xee\x34\xea\x44\xba\x43\x3a\x02\xca\x2f\xeb\xbc\x4d\xda\x51\x05\xa6\x0d\xd4\x64\x7b\xcf\x06\xd3\x2f\xa5\xcc\xc5\x1e\xce\xf9\x30\x21\x24\x1a\x8b\xc5\x94\x13\x27\x4e\x20\x16\x8b\x6d\xf8\x3a\xa7\x3b\xb6\x82\x6e\x86\x09\x21\xb4\xa3\xa3\x03\xbb\x76\xed\xa2\x66\xb3\xd9\x02\xc0\x0b\x8e\x26\x4b\x81\x6e\xeb\x8c\x58\x1f\xb9\x27\x62\xdd\xeb\xca\x8b\x1e\x52\x3a\x97\x6e\x6d\x96\x52\x09\x93\xb5\x15\x3a\x07\x47\x4a\x2a\xca\xfd\xfe\xec\xe9\x7e\x7f\xe6\xcd\xac\x91\xf5\x81\x60\x14\x40\x54\xd3\xb4\xdc\x07\x1f\x7c\xc0\x2e\x5d\xba\x54\x5e\xd6\xbe\x6e\xd6\xce\x4a\x78\x69\x05\x6c\x88\x18\x0c\x06\x6c\xdb\xb6\x0d\xf7\xdc\x73\x0f\x95\x24\xc9\x02\xc0\x05\x20\x48\x38\x9a\x02\x49\xd3\xbe\xb6\xa8\x65\xef\xa6\xb8\xd4\x6e\x57\x05\xc7\xdc\xba\xff\x95\x07\x6e\xcb\xe1\x5b\x09\x07\x47\xc6\x58\x4c\x8d\x7a\x94\xc1\xc1\xea\xdc\xe9\x09\xa7\x7a\x8a\x53\x0c\x03\x98\xc0\xdc\xfb\x6b\x72\xfd\xfd\xfd\xec\xfc\xf9\xf3\xa8\x58\xcf\x73\x57\x64\xc3\x28\x68\x25\xd9\xb5\x6b\x17\x6d\x6b\x6b\xa3\x36\x9b\xcd\x48\x08\xb1\x71\xce\xbd\x00\x02\x22\x27\x0d\x55\x59\x43\x47\xbd\x2c\x75\xd6\x26\x8d\x4d\xd5\x19\x63\xc0\xaa\x09\x36\xca\x41\xe7\x4d\x83\xd5\x50\x10\x38\x38\x01\xcb\x1a\x8b\x99\x99\xb9\x97\xc1\x8d\x8e\xbb\xd4\x8b\x31\xab\xd6\x5f\x14\x30\x01\x60\x8a\x73\x1e\x23\x84\xa4\x72\xb9\x9c\x76\xf9\xf2\x65\xb6\xd1\x2f\xea\xb9\x99\x6c\x28\x05\x2d\xa3\xb7\xac\x13\xcd\xcd\xcd\xb4\xad\xad\x6d\xce\x55\x40\xa9\x11\x40\xb9\x67\x78\xc0\xe1\xa5\x1c\x5e\xa9\x40\xab\x5d\x8a\x58\xef\x50\xc4\x6a\x87\x22\x78\xa4\x82\x60\x33\xe9\x54\x12\x19\x31\x0a\x1c\x94\x01\xac\x28\x70\x5d\x11\x99\x52\x3a\x42\x27\x9e\x32\xeb\x51\x59\xd2\x27\x73\xc6\x62\x84\x11\xc4\x40\x10\x03\x10\xe3\x9c\xa7\x08\x21\x19\xc6\x98\x36\x39\x39\xa9\x0f\x0e\x0e\x62\x64\x64\x04\xa5\x8d\x0d\x1b\x4e\x35\x2b\xe1\xbb\x42\x41\x37\x13\x93\xc9\x84\x50\x28\x84\xc6\xc6\x46\xd4\xd6\xd6\x52\x93\xc9\x24\x62\x6e\xf3\x45\xb9\x52\xa4\x8a\xbb\x84\xb9\xf5\xac\x62\x45\x9a\x75\xcc\x6d\xd4\xd0\x30\xf7\xe2\xb7\x5c\xe9\x52\x4a\x97\xa6\x69\x9a\x3e\x35\x35\xc5\xc6\xc6\xc6\x30\x3a\x3a\x0a\x55\x55\xef\x62\x0e\x6f\x2e\x77\x9d\x82\x6e\x25\x3e\x9f\x8f\xfa\xfd\x7e\x78\xbd\x5e\xb8\xdd\x6e\x58\xad\x56\x5a\xda\x36\x44\x09\x21\x94\xf3\xb9\x03\x08\x4a\x98\x95\x28\x88\x11\x42\x18\x00\xa6\xaa\x2a\x4b\xa7\xd3\x2c\x91\x48\x20\x16\x8b\x21\x12\x89\x60\xb5\x2f\xe4\xf9\x28\xe4\x23\xa3\xa0\xb5\x62\x9f\xcf\x47\xe7\x8e\x67\x03\xaa\xaa\xaa\xe6\x13\x99\x4c\x26\xa1\xeb\x3a\x74\x5d\x47\x32\x99\x44\x69\x5d\xea\x47\x46\x29\x6b\xc5\x1f\x39\x05\xfd\x46\x7e\x23\x1f\x0b\xa1\x58\xd9\x13\x4a\xd7\x09\x63\x83\xf1\x7a\xa5\xf3\xae\xe2\xff\x07\x59\x1a\x81\xc4\xe6\xd3\xe7\x74\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x57\x79\xe4\xe3\xbb\x27\x00\x00") -func web_uiStaticFavicon96x96PngBytes() ([]byte, error) { +func web_uiV1StaticFavicon96x96PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticFavicon96x96Png, - "web_ui/static/favicon-96x96.png", + _web_uiV1StaticFavicon96x96Png, + "web_ui/v1/static/favicon-96x96.png", ) } -func web_uiStaticFavicon96x96Png() (*asset, error) { - bytes, err := web_uiStaticFavicon96x96PngBytes() +func web_uiV1StaticFavicon96x96Png() (*asset, error) { + bytes, err := web_uiV1StaticFavicon96x96PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/favicon-96x96.png", size: 10171, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/favicon-96x96.png", size: 10171, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticFaviconIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x0b\x50\x93\xd7\xba\x3f\xfc\x1a\xd3\x48\x29\x07\xa8\xa5\xd4\x5a\x04\x44\x84\x00\xe1\x16\x62\x08\x21\x24\x10\x20\xdc\x62\x80\x00\x81\x04\x08\x49\x48\x56\x20\xdc\x21\x84\x10\xee\xd1\x5a\x6b\xbd\x15\x2f\x6d\xad\xf5\xd2\x6d\x6d\x6b\xdd\xd6\x5a\xab\x6e\xb7\x5a\x8e\xb5\x6a\xbb\xad\x5a\x4b\x9d\x4e\xbf\x4e\x87\xd3\xd3\xe9\xde\xd3\xe9\x78\x3c\x4e\x8f\xc3\xf1\x30\xbe\xdf\x3c\x6f\xf2\x62\x08\x09\x06\xd4\xb6\xfb\x3f\xfb\x99\x59\xb3\xde\x24\xef\xba\x3c\xcf\x7a\xd6\xef\x79\x9e\xb5\xd6\xfb\x06\xc3\xe6\x61\x8f\x61\xfe\xfe\x90\x87\x62\x75\x54\x0c\x93\x61\x18\xb6\x68\x91\xed\xf3\xda\xc7\x31\xec\x0c\x15\xc3\x42\x43\x6d\x9f\xdf\xf1\xc7\x30\x91\x2f\x86\x25\x24\xd8\x3f\x2f\xc7\xb0\x1b\xc1\x18\x96\x9e\x6e\xfb\x4c\x17\x62\xd8\xf6\x2c\x0c\xa3\x63\x18\xe6\x8f\x61\x58\x28\x66\xfb\x7e\x36\xf4\xd8\x63\x8f\x51\x82\x82\x82\x68\x91\x91\x91\xbe\xcb\x96\x2d\xf3\x5e\xb8\x70\x21\xc5\x93\x72\x8f\x3f\xfe\x38\x25\x73\x45\x21\xb7\x43\xf0\xe6\xfe\x3e\xe6\xd9\x1f\x87\x62\x2e\xdf\x1e\x8c\xfd\xfc\x96\x85\x73\xec\x92\x9a\x3f\x60\x5c\x16\xb6\xdc\xd7\x5d\xd9\xa7\x9f\x0e\xa4\x35\x08\x86\x37\x5b\xe9\x5f\x4d\x0c\x45\x5f\xb9\xd1\x92\xf4\xd6\xfe\xaa\xd8\x35\x56\x75\xfc\xa6\xf5\x96\xa4\x93\xe7\xac\x91\x5f\xe3\x3d\x9c\xe3\xe7\x9f\x7a\xea\xa9\x69\x7d\x79\xe2\x89\x27\x28\x4d\xfc\x57\xb6\xc3\x3d\x75\xcc\x57\xb7\x07\x3f\x1b\xe6\xef\xf8\xfb\x82\x05\x0b\x28\xa9\x91\x12\xae\x20\xaa\x24\x1d\x78\x8b\x88\x88\xf0\xa1\xd1\x68\x93\xf5\xe4\xb3\xab\x72\xa1\xac\x8e\x35\xbc\x1e\xee\x9d\x89\xc7\xa4\x68\x5e\xf8\x20\xe3\xd2\x2d\x76\x74\x3a\x9d\x6c\xdb\x9c\x72\xe4\x54\x7f\xc2\xa7\xdf\x05\x3e\xbd\xc8\x6b\xa6\xb2\xf3\xe6\xcd\xa3\x44\x46\xd0\xbd\xf2\x63\x90\x2c\x7c\x59\x04\xdc\x4b\x89\x08\xa7\xfb\x5b\xa3\xae\x8d\xab\x56\xac\x1d\x74\xbc\x97\x1e\x1e\xb3\xb8\x84\xdb\x64\xcd\xe1\xc8\xa4\x5e\x5e\x5e\x14\xe8\x57\x62\x14\x27\xb4\x97\x75\xfa\x1b\x75\x61\xbb\xa8\x27\xf9\xc4\xd5\xd8\x88\xa4\x20\x76\x54\x06\x63\x55\xe4\x75\x3c\x2f\x5e\x2d\x25\xcb\x52\xa9\x54\x4a\x25\xdb\x7a\x50\xbe\x64\x3b\x2e\x0f\xde\x36\xb1\x32\x5b\xc6\x32\xa5\xef\x3f\x50\x92\x59\xcb\xab\x8c\x5b\xd5\x9b\x14\x9d\x1a\xa4\x8c\x7b\xd1\xfa\xcc\x53\x8b\x7d\x58\xf4\xf4\x68\x28\x9f\x9f\xa0\x99\x2c\x3f\x7f\xfe\x7c\x4a\x45\xe2\xe0\x01\xa2\xfc\x92\x6d\x78\x26\x77\x65\x42\xeb\x8a\xfd\xfb\x64\x99\x7a\x7e\xbb\xf0\x8d\x57\x73\xf8\x92\x88\x86\x8c\x97\xd7\x2d\x79\x2e\xc4\x37\x2c\x34\xdc\xc7\x4a\xbf\x36\xae\xe5\xbe\x64\x75\xec\xff\x73\xcf\x84\x06\x66\xd3\x35\x16\x4e\x44\xbe\x18\xfa\x03\xdf\x45\x04\xc7\x2e\xee\x59\x71\xf2\x6c\x89\x40\xc7\xef\x4b\xfa\xf8\x52\x44\x48\xec\x22\x18\x07\x13\xfb\xf0\xb1\xfe\xc4\x4f\xbe\x0f\x09\x0e\xf5\x9e\x49\x7e\x44\xbd\x8b\x9f\xf3\x92\xf3\x8c\xc8\xf1\x5e\x41\x4c\x31\x0f\xc6\xaf\x21\x6d\xdb\x56\x3f\x3f\x3f\xea\x4c\xe5\xe3\x97\x27\x87\x0e\xc6\x7c\xf1\x73\xe2\xf2\xd4\x70\x47\x79\xd5\xb2\x36\xac\x86\x3a\x5a\xd3\x76\xbd\x19\x1f\xc3\x5c\x0c\x32\x27\x7f\x0f\x0c\x0c\xa4\x4a\x52\x6b\xc4\x12\x6e\x8d\x08\xc6\xd0\xae\x83\x53\xf4\xc4\xdb\xdb\x9b\xa2\x4c\x5a\x63\xb1\xd2\xbf\xba\x33\x18\xf3\xc5\xad\x2e\xfe\x81\xa3\x8d\xe9\x5b\x36\xb7\x65\xec\xdc\xd1\xc3\x3e\x79\x0d\xea\xee\x66\x1f\x3b\x3b\xd3\x5c\x82\xba\x13\xc2\x78\x74\x94\xb8\x6d\xb8\x3f\xf1\x93\xd1\xa1\xe8\x2b\x37\x07\x19\x97\xfe\x61\x66\x7d\x74\xaa\x28\xa6\x0d\x05\x2c\x0c\x9c\x51\xbf\x1c\x09\xe6\x62\x40\x40\x00\xc5\xdf\xdf\x9f\x02\xe4\xee\x3e\x1c\xc7\xb0\x71\x01\x86\x8d\xf9\x61\xd8\x05\x1c\xc3\xae\xfc\x1f\x86\xed\xc6\x31\x6c\xd7\xff\x60\xd8\xa9\x6a\x0c\x3b\x55\x86\x61\xbb\xff\xc7\xf6\x1d\xfc\x06\xf7\xdc\xf4\xb3\x95\x81\xb2\x30\x09\x16\x61\x18\x96\xe0\x19\xce\x50\x5c\x5c\x3b\xe6\x14\xd0\x3d\xe8\x3b\xcc\x53\xc7\xef\x3d\xb8\x76\x57\x3f\x16\x14\x14\x44\x4d\x17\x64\x04\xd5\xac\x6c\x91\xb6\x14\xae\xb7\xb4\x17\x6c\x5d\xd7\x26\xd9\x3c\xa8\x93\x58\x54\x79\xd9\x62\x7a\x44\x44\x04\x0d\xda\xf5\xa0\xef\x53\x52\x60\x60\x20\xa5\xb4\xa0\x9a\x63\x12\xee\x3b\x38\xc8\xb8\xf4\xeb\xaa\x88\xaf\x71\x98\x4b\xb6\xdc\x76\x6d\x8d\xba\x76\xa7\x3b\xf5\xf0\x79\x75\x61\x87\x6c\xf9\xf2\xe5\x34\x57\xf5\xb8\xea\x3f\x83\x11\xeb\xdd\x9a\x3f\xbc\x6e\x28\xea\xea\xb8\xd5\x5e\xa7\x95\xfe\xd5\x78\x7f\xe2\xd9\x6b\x3d\xec\xbf\x9c\xe9\x65\x9d\xb9\x38\x14\x73\xf9\x17\x6b\xa4\xad\x2d\xc8\x4d\x19\xfb\x0f\x2c\x5b\xb6\x8c\x7a\x3f\xf9\xc4\xc5\xc5\xfb\x98\x32\xde\x3e\x44\x94\x8d\xf8\x1a\xef\x4f\x3c\x77\xbd\x32\xc5\xa2\x8c\xa5\x27\xfa\x03\x4f\x3e\x3e\x3e\x94\x27\x9f\x7c\x92\x12\xb6\x74\x19\x2d\x2f\xa9\x9a\xdf\x95\x72\x98\xb8\xb7\x2e\x7d\x83\xd1\x71\x5e\xb8\x92\xcf\xb3\xcf\x3e\x4b\xed\x10\xbd\xbe\x9d\xec\x53\x0b\xef\x8d\xcd\x61\xa1\xe1\x5e\x33\xf0\x4d\xf1\xf3\xf3\xa3\xe4\xaf\xa8\xe6\x3e\xf3\xcc\x33\xd0\x77\x4a\x64\x64\xa4\x57\x6a\x6a\x6a\xc0\xbf\xfd\xdb\xbf\x4d\x91\x0f\xcc\x8f\xaa\xfc\xc6\x5c\x6b\xe4\xe8\x04\xd4\xdf\xc8\xdf\xbe\x1a\xfa\x39\x1b\x3d\x81\x39\xd1\x99\xb5\x67\xd7\x60\xec\xe7\x37\x25\x42\x39\xd3\x51\x2e\xe1\xe1\xe1\x34\x0b\xe7\xd8\xc5\x55\x11\xd7\x71\x4b\xf2\xf1\x33\x41\xcf\x05\xcd\x88\x25\xae\x08\x78\x31\xa5\xbd\xfb\x26\x60\x62\x5e\x4a\x39\xd3\x51\x3e\x85\x42\x05\xdb\x6a\x97\x4b\x41\xaa\x82\x3d\x93\x4c\x5c\x25\xc0\x29\xd0\xd5\x58\x46\x1c\x2d\x3e\x9a\xe5\x1b\x19\x19\x49\x85\xf6\xc8\x79\xd3\x92\xbb\xa5\x1f\x74\xae\x97\x75\xfa\xf2\x92\x25\x4b\xa8\xce\x63\x0f\x63\x27\xe0\x67\x04\x95\xe6\xd5\x14\xe5\x66\x8b\xa3\xed\x58\x34\x29\x9f\x8c\xd4\x9c\xd0\x6e\xee\x91\x8b\xad\xe2\xcd\x83\x52\x71\x45\x98\x39\xed\xd0\x88\x41\xb2\xda\x00\x36\x0e\xee\x35\xf3\x0f\x1e\xb2\x46\x5c\xc7\x8d\x59\x7b\x86\x49\x4c\x77\x24\x71\x76\x09\x53\x11\xb1\xe9\xe7\x8a\xa0\x6d\xb8\x3c\x74\xcb\xb8\x22\xdf\xa0\x04\x5d\xe2\x72\x53\x03\x52\x38\x29\x0b\x4b\x33\x10\x9f\xb0\xe3\xec\x93\xe7\xeb\x8b\x06\x24\xa0\x7b\x96\x94\x8f\x4e\x82\xce\x3d\xfb\xec\xb3\x14\x0b\xe7\xf8\x39\x18\xd7\x06\xd1\x06\xa3\x33\xef\x04\xbe\xa6\x0d\xee\x04\x9b\x54\x11\x64\x4b\x95\x8c\x97\x46\xe5\x15\x95\x0b\xfb\x13\x3f\xf9\xa1\x2f\x69\xe4\xbb\x74\x41\x86\x4f\x1e\xb3\x9a\xcf\x8c\xe2\x2e\x0e\x08\x08\xa0\x16\x32\xeb\x24\x49\x51\xa9\x41\x50\x7e\xd1\xa2\x45\x94\x1e\xa2\xfe\xeb\x78\x63\xce\x46\xa3\xf3\x9c\x00\xfb\x5a\x9d\x3a\xb8\xc3\x56\xff\x36\x5b\xfd\x31\xeb\xaf\xad\x2c\x28\xf4\x1d\x88\xfb\xec\x87\x81\xf8\x0b\xdf\x49\xc4\x85\xfe\x86\x22\x6b\x5d\x45\x81\x86\x1b\x1d\x1d\xed\x55\x2b\xe9\x94\xe5\x0a\x57\x86\x03\xbe\xfa\xfa\xfa\x82\x7c\x0e\x40\xfd\xc6\xec\xdd\x5b\x01\xc3\x9c\xe5\x93\xc6\x12\x31\x14\xcb\x86\x7f\xb6\xd9\xe5\xad\xe3\x45\x69\x5a\x19\x8c\xdb\xf2\x30\xba\xf7\xb2\xd0\x08\xef\xb2\x0c\x7d\x16\xc8\xa7\x77\xc5\xa9\xab\x4d\xb2\xa1\x22\xc2\x66\xa4\x7e\x70\xf2\x99\x67\x9e\x21\x64\xd0\x90\xb9\xd9\x6c\x8d\xf8\x1a\xef\x65\x9f\xbc\x6a\xc7\x12\x47\xfd\xa6\xc0\xfc\x88\x5a\x1e\xbb\x50\x10\x57\x28\x62\xc6\xa4\x84\xda\x7d\x99\xc9\x14\xbd\x3c\x7e\xa1\x39\xf5\xd0\x7e\x6d\xfa\x6a\x2d\x7f\x85\x28\xa8\x27\xf9\xf8\xc9\xda\x0c\xab\x86\xf4\x85\xb2\x39\xc5\x71\xa4\x7e\x96\xe5\x68\xf8\xb3\xc0\xde\xc9\x6b\xa8\x8b\xc5\x5a\xe1\x9b\x9b\x25\x8e\x08\x09\x09\xa1\xd8\x71\x95\xf8\x1d\xc6\xc0\xc2\x39\x7e\x06\xf0\xcc\xc2\xfd\xf0\x5c\x6c\x6c\xec\x7d\xed\xbd\x33\x81\x2c\xba\x04\xef\x1e\xb2\xd2\xaf\xdd\x29\x16\xaa\x78\x8e\xf3\x0b\xd2\xca\xd4\x6a\x8e\x95\x3e\x7a\x07\x78\x68\xcb\x79\x65\x78\xd9\xb2\x65\x33\x61\xee\xb4\x04\xba\xde\x26\x78\x63\xfd\x20\xe3\xd2\x4f\xc2\x15\x2b\xe9\xce\xfc\x81\x1e\x36\x08\x86\xfb\x49\x39\x19\xb3\x77\xed\xe1\xa5\xa6\x05\xd8\x71\x71\x9a\x4c\x88\x31\x89\x8a\xf2\xaa\x95\xb6\x8b\x01\xd7\xe0\x7b\xd0\x95\x90\x90\x10\xaa\x83\x5d\x76\xb6\x2b\xd4\x36\xde\x9e\xad\x24\x3e\xf7\x25\x8d\x8c\x35\x48\xd6\x18\x45\x99\xb9\xe1\xf1\xf1\xf1\xde\x30\xf6\xa0\x7f\x69\xbc\xb4\x40\x4d\x61\x87\xac\x9b\xf7\xfe\x59\xb8\xb7\x29\x7f\x43\xbf\xd3\x9c\x76\xb6\x2f\x93\x04\x3e\x4c\x2d\x7f\x4d\xe3\x50\xd4\x97\xbf\x92\x36\x6b\x28\xea\xea\x9d\x5e\xd6\xe9\xef\x2d\xdc\xa3\x97\x7b\x92\x4f\x5c\x1f\x8c\xfd\xdb\x2d\x47\xfb\x62\xe4\xbd\xbd\x0b\xe6\xe9\x0c\xc3\x33\xc5\xfe\x02\x46\x70\xe2\x32\x82\x5b\x79\xbb\x87\xc1\xe7\xb2\xda\xed\xa3\x95\xb4\x8f\x11\xd7\x09\x9b\xd6\xcd\x39\x7a\x54\xcc\x56\xa7\x93\x58\x36\x83\x8e\xb9\xc5\xc5\x65\x61\xcb\x69\xc2\xf8\x52\xb6\x8c\xd5\xa9\xac\xe1\xac\x6a\x56\xac\xe8\x41\xf9\x89\x6a\x51\x1c\x3d\x69\x21\x60\x90\x07\x63\x3f\x13\x2f\x0f\x4c\x38\x8e\x63\xf8\xdf\x71\xec\x2e\x86\x63\xe3\x98\x00\xbb\x79\x77\x00\xfb\x0f\x1c\xc7\xfe\x13\xff\x3b\x76\x01\xff\x3b\x76\x05\xc7\xb1\x2b\xf8\xdf\xb0\x4d\x17\x3e\xc3\x76\x5b\x07\x88\x04\xd7\x57\xf0\xff\x8f\xf8\x0d\xee\x81\x7b\xff\x1b\xc7\x89\xb2\x13\x98\x80\xa8\x8b\xa8\x17\xc7\x09\x3f\x0c\xbc\xaf\xf4\x39\xc4\x7b\x7f\x54\x82\xb9\x9e\x90\x90\x40\xcb\xc8\xc8\xf0\x15\x8b\xc5\x8b\xa4\x52\x69\x10\xe4\x42\xa1\xd0\x1f\xbe\xb7\xe3\xe2\x43\x25\xc0\xaf\xc4\xc4\x44\x5a\x95\x5c\x19\xdd\x5c\xf2\x82\xc9\x24\xdc\x77\xb4\x27\xf9\x2f\xdf\xf6\x27\x7c\xfa\xcb\x40\xec\x67\xb7\x20\xef\x61\xff\xe5\x5b\x93\xf0\xad\x63\xcd\xd2\xb5\xe6\x2a\xb9\x92\xc1\x64\x32\x69\x8e\xf1\xe4\x5c\x09\xec\xb9\x4a\xa1\x63\x75\x66\xef\x39\x30\x18\xf3\x85\x6d\x5e\xde\x27\x0d\xc6\x7c\x71\xbb\x33\x6b\xcf\x41\x95\x02\xb1\xa1\xfc\x5c\xda\x05\x8c\xce\xcc\xcc\xf4\x6d\x29\x5a\x6f\x25\xfc\x58\x17\xed\xd8\xf0\x6e\x74\xdc\x1a\xf9\xf5\x84\x9b\x7e\xfc\xda\x5a\xb8\xa1\x3f\x36\x36\x76\x56\x7d\x80\xb9\x5b\x28\x29\x0a\x34\x09\xdf\x3a\x6c\xb5\xfb\xcc\x64\x7b\x3d\xec\x93\x23\x0d\x59\x1b\x0d\x2b\x79\x55\x09\x29\x2b\xd2\x7c\x93\x98\x49\xb4\x64\x16\xd7\x27\x8f\x2b\xa3\xeb\xb3\x5e\xd0\x58\x52\x3e\x3a\x6a\xf3\x05\x6d\x65\xcc\xfc\x83\xfb\x96\x2e\x5d\x3a\xab\x71\xc8\xc9\xc9\xf1\xef\x12\x1c\x38\xe1\xc8\x4b\xef\x8a\xd3\xe7\xcb\xb3\xea\x38\xa1\xa1\xa1\x60\x53\xdd\x96\x7d\xee\xb9\xe7\x28\x45\xc2\x6a\x86\x85\x73\xec\x44\x7f\xe2\x27\xd7\x05\xa9\x42\xff\xd9\xb4\x1d\x1b\x1b\x4b\x6b\xcf\x7f\x65\xd8\x91\x67\xa3\x70\xcf\xfa\x38\x46\x3c\x6d\x36\xf5\x84\x87\x87\x53\x79\xac\xcc\x00\x32\x86\x79\xfa\xe9\xa7\x29\x30\x4f\x24\x12\xc9\x22\xb0\xb9\xae\xca\x80\x9d\x43\xe5\xc6\x5c\xb0\xa3\x64\xdb\x6d\x59\x3b\x06\xc1\x66\xcf\xa6\x6d\x57\x54\x5d\xaa\x8d\xeb\x63\x9e\xfd\xb1\x3f\xf1\x93\x9f\x54\xb2\x7a\x96\x2b\x19\xf2\x78\x3c\x6f\x4b\xca\x47\x9f\x93\xbc\x77\xf3\xde\x3f\x48\xa7\xd3\xe7\xa4\xbf\x8e\x34\x7f\xfe\x7c\xac\xb9\xf0\x45\x15\x59\x6f\xeb\xca\x4d\x8d\x8f\x3d\xf6\xd8\x94\x7b\x60\xae\xea\x65\x5d\x62\x52\xdf\x06\x63\xbe\xb8\x91\x97\x59\xb4\xf8\x41\xdb\x26\x29\x65\x45\x9a\x7f\x37\xef\xf0\x3b\xdd\xa9\x47\x0e\xf2\x53\x32\x03\x9c\x7f\x8f\x88\x88\xa0\x9a\x84\x6f\xbd\x43\xf6\xb1\x43\xb4\x73\x8d\x43\x1c\x33\x67\x22\xd6\x88\x12\x13\x69\x90\x82\x82\x82\x28\x8b\x17\x2f\xa6\xc4\xc4\xc4\x50\xa3\xa2\xa2\xa8\x8e\xf1\x2d\xe0\xe9\x40\xfc\x85\x9f\x6c\xe3\x3e\x3a\x51\x9c\x2b\x8f\x98\xa9\x5e\xb0\xf9\x22\x91\x68\xa1\x54\x2a\x0d\x83\xdc\x9d\x0f\x50\xb8\xb2\x78\x71\x67\xe6\x9f\x0e\x9b\x84\x6f\x1d\x29\x29\x92\x05\x15\x17\x96\x2c\x36\x8a\xde\xd8\xd7\x91\xfb\xda\xce\xec\x6c\xd1\xe4\xdc\x28\x2f\xac\x61\x90\xb2\xef\x4b\x1a\xb9\x0e\xfd\x75\xd7\x36\xe8\xb6\xa6\xac\x55\x55\x15\xbb\xee\x3b\x79\xd8\xf0\xed\xaa\xb8\x75\xdf\x6a\xca\x9a\xab\x96\x2e\x5d\x4a\xe8\x0a\xf8\x5d\x10\x3f\xc0\x18\xb7\x14\xaf\xd3\x4e\x8e\xbb\x64\x53\x6b\xab\x64\x73\x3b\xf9\xb9\xb9\x64\x4d\x15\xe9\x6e\xd5\x97\xf4\x4a\xee\x61\xc6\x7b\x07\xdd\xe9\x3c\xe8\x6d\x55\x59\x2d\x07\x62\x19\xdb\x5a\x98\x3d\x2d\xdd\x72\x5b\x51\xaa\x62\x81\x8c\x75\x8a\x56\x61\x8b\xf4\x45\x73\x49\x71\x59\x50\x45\x81\x36\x7a\x30\xe6\xf2\xcf\x43\xd1\x57\x6e\xc8\xf3\xea\x98\xca\x82\x16\xae\x95\x7e\xed\x36\x7c\x2e\xcd\xa9\x89\x26\xeb\x6d\x96\xae\x9d\xd4\xcf\xce\xac\xbd\xdb\xdd\xc9\x13\x74\x42\x95\xdd\xb3\x7a\x4a\xdb\xf6\xa4\xca\xb1\xf4\xd7\x54\x69\x16\x0f\x32\x2e\xdd\x84\x7a\x40\x9f\x62\x63\x63\x29\xac\xc4\x64\xef\x15\x4c\x8e\x37\xc4\x1f\xe0\xf7\xf0\x58\x99\x81\x29\x49\xfc\x85\x8e\x71\x7b\xb3\x74\xad\xd2\xa1\xfd\x57\xdd\xb5\x0f\xf1\x77\x4d\x66\xaf\xeb\xf6\xb3\x7b\x7a\x4b\x0a\xcb\x03\x86\xa2\xaf\xde\x82\x7a\xba\xf8\xef\xed\x4b\x4f\x4f\xa7\xaa\x2b\xf5\x2c\x6d\x55\x03\x37\x26\x26\x86\x16\x1a\x1a\x4a\xad\x90\xc9\xc3\x65\x65\xe5\xa1\x8e\x6d\x68\x25\x66\x31\xd9\x7e\x97\xe0\xc0\xa1\xf0\xf0\x70\xb7\xba\x5f\x9c\xa3\x48\x80\x58\x69\x4a\xfb\x21\x5b\xc7\x0b\x45\xe5\x0c\xe0\xaf\x24\x43\xcb\x36\x08\x37\x36\xa6\xae\x48\x5f\xa8\x2b\x6f\xe3\x0f\x45\x5f\xbd\x0d\x98\x66\x90\xf5\x14\xe9\x2b\x8c\xc2\x41\xc6\x17\xb7\x06\xe2\x3e\xfb\xa5\xba\x14\x25\x90\x75\x4a\xf3\x14\x11\xa4\xfe\xf5\xb2\xce\x7c\x93\x92\x92\xe2\x36\x0e\x81\x31\x28\xcf\x6e\x90\x2a\x96\x6f\xfe\x5e\xbe\x64\x1b\xae\x88\xd8\xf4\x5d\xb9\xa8\x5e\xe2\xef\xef\x3f\xa5\xcf\xa0\x5b\x0d\x92\xe7\x15\xf7\x70\x67\x73\x73\x9b\x78\xb8\x95\xfc\xdc\x50\xb8\x4a\x46\xde\xcb\xe1\x70\xbc\x06\xe2\x2e\xfe\x48\xcc\x3f\xfa\xe8\x44\x65\x89\x3a\xce\x5d\xfb\x98\x1d\xaf\x60\x0e\x83\xed\x83\xdc\x61\x6d\x6c\x0a\xc5\x44\x33\xbc\x3a\xb2\xde\x18\x34\x66\xee\x5d\x9b\x94\xc0\xf6\xe1\xae\xe0\x2f\xec\x12\x1c\xd8\x69\xca\xd8\x3f\x9c\x10\xc7\x9c\xe4\x11\xc6\xc2\x94\xf1\xf6\x2e\xb2\x6f\xed\xf9\xaf\x6c\x7c\x18\xb8\x4f\xf6\x15\x64\xc6\xe5\x72\xbd\x53\x53\x53\xbd\xa1\x2d\xb0\x35\xce\xf7\x29\xc5\xcd\xbc\x49\xfc\x8d\xfd\xfc\x86\xbc\xb4\x3a\xc2\xd5\x9a\xc2\x5c\xa8\xb4\xa8\x3c\xd8\x9c\xf6\xe7\xb3\xdd\xbc\xf7\xcf\x57\x48\xab\xc2\x5d\xdd\x03\x72\xb4\x70\x8e\x9d\x9a\xd4\xc3\xf4\x77\x8e\x66\x64\x64\xf8\x3c\x68\xdb\x60\x7f\x5a\x8a\xd6\x69\x1c\x70\xa8\xd9\xd9\xfe\x60\x76\x6c\xa9\xc8\x43\x4c\x2b\xfd\xda\x38\x69\x7f\xdb\x0b\xb6\x0d\xa7\xa5\xa5\x79\xcf\xe4\x73\x78\x42\x79\xe9\xc5\xc1\xfd\x09\xe7\x46\xfb\xe3\xcf\x7f\x23\xc9\xac\x70\xc9\x3f\x66\x8f\x01\x5b\x72\xb6\x18\xc9\x71\x80\xbc\x23\xf7\xf5\x3d\x12\x49\x61\xa0\xb3\x7e\xbb\x23\xc0\x88\xdc\xdc\xbc\x85\x55\x15\xaa\x30\xfb\x7a\x1d\xe1\x4f\x82\x8d\x03\x7f\xf4\x7e\xeb\xaa\x80\xef\xa6\xf4\xb7\x5f\x75\xf4\xbf\x7a\x38\xc7\x47\xeb\x15\xa6\x52\xa1\x50\xe8\xbb\x64\xc9\x12\x8a\xb3\x5e\x80\x8c\xc1\xf7\x12\x08\x04\x3e\xfa\xca\x76\x89\x85\xfb\xe1\xa5\xde\x15\xa7\xbe\x91\x16\x95\x06\x79\xb0\x8e\x3b\x8d\xe8\xf4\x28\x9a\x31\xe3\xcd\xcd\x53\xfd\xcf\x51\xdc\xc2\xfd\xf0\x6a\x6b\xe1\x86\x35\x75\xd5\x6d\xf9\x0a\x45\x65\x34\xd8\x3f\x79\x85\x9c\xae\xaf\x6e\x15\xb5\x14\xbd\x34\xd8\x9d\x7a\xf8\x92\x95\xfe\xd5\xa4\xff\x69\x12\xbe\x75\x00\xe2\x92\xd9\xb6\x8f\xd9\xd6\xa8\x29\xfa\x9c\x55\x0a\x88\x93\x5d\xfa\xde\xf4\x6b\x13\xe0\xeb\x0f\x45\x5d\xbb\xe3\xd8\x4f\x32\x01\x0e\x37\x8a\x36\x1a\xee\x13\x9f\xcf\x48\xe0\x3f\x08\x52\xb2\x03\x3b\x84\xbb\xd7\x0e\xc5\x5c\xfe\xc5\x93\xf8\x63\x28\xea\xea\x2d\x53\xfa\xfe\xad\x22\x9e\x24\xd8\xd5\x3c\x9f\x0b\x01\xae\xaf\x60\x72\x7c\x6a\x84\xdd\x45\x80\x5d\xbd\xec\xbf\x8e\x0c\xc4\x5f\xf8\x6e\x90\x71\xe9\xc7\x81\xb8\x8b\xdf\xf7\xae\x38\x75\xae\x2b\xfd\xdd\x57\x6b\x33\x07\x2b\xb8\x2b\xf8\xfe\xf6\x75\x83\x47\x42\x60\x47\x41\xd7\x96\x2f\x5f\x4e\x61\x30\x18\x54\xd0\x6b\x18\xab\x87\xc5\xeb\x6f\x4d\x38\x49\x37\x43\x70\x7c\x70\x3e\x7e\x17\x9b\x87\x4f\xf8\x8d\xe1\xe3\x82\xff\xc5\x6f\x0e\xe0\xf8\x4d\x1c\xbf\xf2\x1f\x38\x7e\xe5\x3f\x71\xfc\xca\x27\x38\x8e\x5f\xc0\xf1\xa4\x0b\x13\x03\x49\x17\xc6\x05\x49\x17\x6e\x26\xe2\x44\x82\x6b\xf8\x0e\xc7\x93\xe0\x9e\xff\xb4\x97\x81\xb2\xe3\x03\x38\x51\xd7\xc4\x82\x11\x1c\xc7\xe6\x11\x6d\x10\x6d\xd9\x89\x6e\xdf\x2b\x52\xdd\x7f\x9d\x82\xe2\x26\xff\x67\xb9\xf6\x68\xed\xca\xd3\x04\x04\x3a\x07\xb6\x15\xfc\x5d\xc0\x5a\xe7\xf5\xdd\x87\x9c\x1e\x88\xa0\xaf\xd1\xd1\xd1\x94\xcc\xcc\x4c\x5a\x79\x79\xb9\x6f\x6d\x6d\xed\x22\x9d\x4e\x17\x86\x10\x8a\xd6\xe9\x74\x0c\x9d\x4e\x17\x81\x10\x0a\xae\xa9\xa9\x09\x90\x48\x24\xde\x1c\x0e\x87\x0a\xf3\xec\x41\x6d\x9f\x03\xcd\x5a\x7f\xe6\xcd\x9b\x47\x59\xb6\x6c\x19\x45\x22\x91\x78\xe9\x74\xba\x50\xbd\xa6\x31\xbf\xb9\xf4\xf9\xd5\x46\xd1\x1b\x87\xcd\x69\x87\x2e\xf7\xb2\xff\x3a\xd6\xc7\xfc\xf7\x7f\xf4\x27\x7e\xf2\x73\x5f\xd2\xc7\x3f\x59\x38\xc7\xbe\xed\xca\x78\xfb\x6c\x9b\x78\xcb\x2e\x43\x65\x77\x1d\xd2\x21\x96\x52\xa9\x5c\xc8\xe5\x72\xa9\xbe\xbe\xbe\x0f\xaa\xb7\xb3\xd2\x1f\xe8\x37\xc8\x19\x69\xeb\x38\x2d\x45\x2f\x6d\xb4\xa4\x7c\x74\x9d\x88\xed\x23\xbe\xb6\xad\xb7\xda\x93\xe3\xb5\x63\x02\x9b\x32\x10\x77\xe1\x46\x67\xd6\x9b\x27\x0c\x55\x26\x8d\x56\xab\x0d\x16\x08\x04\x34\x3b\xce\x3d\x32\xfd\x01\x3d\x2e\x28\x28\xf0\x42\x5a\x3d\xb3\x4d\xbc\x65\xe7\x40\xdc\xc5\x1b\x9e\xd8\x1d\xdb\x9a\xb5\xeb\x6b\xb0\xdd\xdd\xa9\x87\x2f\x1b\xaa\xba\xb4\x6a\xb5\x3a\x30\x26\x26\x66\x2e\xfa\x7c\x5f\xfd\x01\x9f\x19\xf4\xb7\xb1\xa2\xaf\xb5\x8f\xf9\xef\x3f\x3a\xef\xfd\xce\x7c\xed\x90\xbb\xb9\x06\xdf\xa2\x33\x6b\xef\x51\x54\x5b\xcf\x02\x9d\x7a\x98\xfa\x13\x17\x17\x47\xd1\xe9\x50\x78\x47\xde\x6b\xfb\x09\x1f\xc6\x8d\x9e\x80\x5e\x80\xdd\xed\xe1\x1c\x3f\xd1\x95\xfe\xf6\x76\x63\xf6\x2e\xab\x31\x67\x67\x6f\x67\xd6\x9e\x35\x5d\xfc\xf7\x76\xf5\xb2\x4e\x9f\x1b\x8a\xfa\xf2\x16\xb9\x57\xe1\x2a\xf5\x70\x8e\x9f\x93\x4a\xa5\xde\x0f\x4b\x7f\x12\x12\x12\x28\x48\x5b\x17\x67\xe6\x1f\x3c\xe7\xca\x17\x22\x62\x0a\xc6\xdf\x7e\xec\xcc\xda\xbb\x46\x5f\x66\x66\xe6\xe5\xe6\x7b\x25\x25\x25\x51\x21\xce\x04\xff\x08\x12\xd8\xf0\xc8\xc8\x48\x0a\xe0\x8e\xb4\x50\xe6\xdf\x5c\xb2\x46\x6c\xe6\xbd\x0f\xb2\xb8\xed\xa4\x4b\x77\x9a\xca\x56\x49\xc2\xc2\xc2\x66\xab\x43\x2e\xf5\x07\xfa\x80\xb4\x7a\x7a\x77\xea\x07\x9f\x4f\xb6\x43\xe4\x93\x6b\x51\x3f\xb7\xe7\x6f\x6f\x95\x16\x96\xf9\x82\xcf\x41\xa5\x52\x3d\x19\x6b\x02\x6f\x81\x47\xb5\xcc\x10\x66\xe6\xbf\xb7\x8b\xdc\x23\x37\x8a\x76\xad\x49\x4b\x4b\x73\xde\x0b\xf6\xe4\x7a\x9a\xfe\x80\xed\xd1\x68\x34\x8b\x4d\x19\xfb\x8f\xad\x22\xc7\x3b\xf2\x9e\x9e\x58\x52\x8e\x1e\xa9\x29\xd7\x07\x03\x16\xcd\xd5\xee\x40\xfc\x98\x9c\x9c\x4c\x6d\x2c\x1b\xca\x32\xf3\xde\xdf\x55\x52\x5c\xea\xe3\xb0\x87\x48\x24\xf0\xc9\x60\x0c\xbd\xbd\xbd\x3d\xd6\x1f\xb0\x2b\x25\x25\x25\xde\xad\x85\x1b\xd6\x3a\xeb\x8c\x6d\x1f\x6f\xf7\x9a\x82\xfc\x02\xaf\x19\xce\x37\xcc\x8a\x9e\x7e\xfa\x69\x62\x8e\x39\x9f\x27\x8b\x8f\x8f\xa7\xd4\xd6\xd6\x2e\x46\x08\x31\xb5\x5a\x6d\x10\x9b\xcd\x76\xb7\xe6\x39\x65\x1c\xa0\x5c\x7d\x4d\x7b\xee\x50\xf4\xe5\x5f\x27\x75\x26\x82\x8c\xd9\x5e\xb3\x08\x85\x42\x2a\xd8\x2f\x17\xe5\x1f\xda\x35\xc8\x1c\xd5\xd6\x47\x9b\xd3\xfe\x7c\x7e\x30\xe6\x8b\x5f\xbb\x53\x3f\xb8\xa4\xd7\x34\x24\x38\xad\x1d\x4c\xd3\x1f\x90\x81\x4a\xa5\x0a\xec\xe6\xbd\x7f\xce\x51\x67\x20\x37\x09\xdf\xda\x2a\xca\x16\xd1\xec\x7d\x7f\xa4\x09\xe6\x7a\x7b\xc1\xb6\x35\x8e\xd8\xd4\x91\xf3\xfa\x56\x3e\x9f\x4f\x9d\x49\x7f\x58\x2c\x16\xb5\x41\xde\xa7\x74\xd6\x9b\x5e\xd6\xe9\xcf\xcb\xcb\x2a\x7c\xdd\xad\xc7\x3c\x6c\x62\x32\x99\x14\xa3\xe8\x8d\x75\x8e\xf6\xce\x24\x7c\x6b\x27\xf0\xe5\xe2\x76\xa2\x4f\xe0\x37\x56\x57\x57\x2f\xec\x4e\xfd\xe0\xbc\xd5\xa1\x9c\x95\xfe\xd5\x78\xbd\xa2\x8b\x03\x7a\xea\x5c\xe6\x51\x5d\x03\x46\x69\x2a\x1a\xc2\x06\xe2\x2f\x7c\x03\xb2\x1f\x88\xfd\x6c\x0c\xc9\xdb\xa2\x9d\xe2\xb7\x29\xfa\xb3\x74\xe9\x52\x4a\x7d\x4d\x5b\x3a\xd8\x28\xab\x83\xde\x74\x65\xbc\xbd\x4b\x20\x10\xb8\x1a\xb7\x47\x9a\x9e\x7a\xea\x29\x8a\x38\xaf\xd0\x47\x53\xdc\xc6\x90\xe4\x4b\x7d\xc9\xb3\x19\xee\xf4\x27\x3d\x3d\x9d\xd6\x9e\xff\xca\x66\x6b\xc4\x94\xb5\x85\x3b\x75\x55\x1d\x4c\x07\x1f\xf1\x91\x92\xbf\xbf\x3f\x25\x2b\x2b\x8b\x26\x93\xc9\x7c\x20\x27\xf7\x1a\x6c\x67\x73\xb8\x54\xb1\x58\xec\x05\x98\xeb\x84\x55\xc4\x75\x65\x65\xa5\x7f\x4f\xf2\x89\xab\x36\x8c\xb7\xe9\x8f\x85\x73\x6c\x04\x7c\x36\xa7\xf1\x9a\xf1\x1a\x70\x15\xec\xb6\x48\x24\xf2\xca\xcb\xcb\xf3\x02\x9b\x04\x36\xf8\x7e\x65\x89\x73\x3f\x4a\xe5\xc2\x26\xd9\x90\xc9\x28\xda\x75\xb8\xa9\x6c\x95\x45\xa5\x52\x05\x2c\x5a\xb4\x88\xf8\xbe\x41\x61\x41\x6d\xe2\x2d\x3b\x0c\xd5\x9d\x8a\xd2\xd2\x52\x1f\x87\xb5\x22\x62\xfd\x1b\x69\xeb\x22\x86\xa2\xbe\xbc\x4d\xda\x28\xc8\xdb\xc4\xc3\x66\x88\x4d\x3c\x1d\x73\xb0\xfd\x80\x5f\x5a\xa5\xa1\x54\x2d\x36\x6d\x56\xe5\x76\xef\xac\x2d\x6b\x33\xe9\x74\x88\x21\x12\x89\x68\xce\xf6\xc9\x31\x01\xcf\x4d\x65\x56\x04\x3e\x29\xd9\x87\xe6\x92\x17\xda\x75\x3a\x1d\xad\xb9\xf4\xf9\x66\x2b\x7d\x94\xf0\xbd\x86\xa2\xaf\x8e\x1b\x2a\xcd\x45\x51\x51\x51\x93\xfa\xb3\x64\xc9\x12\x4a\x83\xc2\x22\xb6\x4e\x9e\x99\xb0\xe1\xbd\xa1\xaa\x8b\xeb\xe9\x7e\x11\x60\xb6\x56\xab\x0b\xad\xc9\xe8\x3b\x28\x0f\xd9\x3a\x71\x6f\x1d\x7d\x1b\x5e\x19\xb3\xfe\x07\x6d\x65\xa3\x0c\x78\x20\xef\x07\x2c\x0b\x0d\x0d\xa5\xd8\xcf\xee\x60\x29\x29\x29\xd4\xce\xac\x37\x77\x38\x62\x4e\x17\xff\xbd\x43\x08\x21\x1f\x33\xff\xe0\x11\xc7\xef\x8d\xd9\xbb\xb6\xc2\xfd\xa4\xfc\x41\xc6\x2d\xc5\xeb\x9a\x49\x9f\xd6\x6a\x5f\xa7\xd2\x6a\xd0\x22\x87\x23\xa9\x33\xea\x40\x49\x49\x89\x8f\x2a\xab\x77\x67\xc5\x92\x6d\xc4\xb9\x2c\xf2\x7c\x16\x99\x2b\x22\x36\xfd\xac\xd3\xd4\x31\x21\x76\x84\xb8\x18\xb0\x0e\x69\xeb\xb8\x48\xab\xe7\x80\xee\xb2\x58\x2c\x4a\x8b\xf4\xc5\x0a\xab\x83\x9f\xd2\xb6\xf2\x65\x43\x69\x69\x29\xb5\x3d\xff\x15\xcb\xbd\xbe\x7d\x8d\xb7\x48\x5f\x54\x00\xef\x64\xfb\x49\x49\x49\x94\xf6\x82\x6d\xab\x1d\xcb\xf6\x27\x9c\xfb\x5e\x2e\x97\xfb\x7b\xa2\x37\x80\x6b\x3a\x4d\x5d\xb4\x7c\xe9\xf0\xaf\xb6\x33\x65\x0e\x69\xc9\xbd\x5c\x95\xdd\xb3\x19\x70\xa2\xa2\xa2\xc2\xb7\x4d\xbc\x65\xfb\x50\xf4\x95\xdb\xf6\xfd\xf4\x75\xa5\xa5\xa5\xde\x3c\x1e\x8f\xda\x5a\xb8\x41\x61\xe6\x1f\xdc\xd1\xb6\x72\xb3\x32\x53\x98\x49\x03\x3d\x17\x17\x48\xbc\x8d\xa2\x5d\xfd\x3d\xc9\x27\x8e\xb5\x89\xb7\xa0\xf4\xf4\x74\x47\x3c\xc4\xc0\x1f\xec\xc8\xdd\xb1\xd1\x51\x7f\x7a\x59\xa7\x47\xe5\x72\xb9\xdb\x73\xf8\x8e\x04\xf3\xb3\xb6\xac\x55\xea\x6a\xff\x87\x48\x41\xb6\xbc\x9a\xb5\x66\x44\xa7\xd3\x79\xd7\xa9\x9b\xe3\xac\xf4\xaf\xee\x90\xfa\x30\x14\x7d\xe5\x57\x7d\xad\x21\xdc\xdb\xdb\x9b\x58\x6b\x06\xdd\x0e\x08\x08\x98\x1c\x63\xf0\xc9\x40\xde\x0c\x06\x83\xe2\x62\xdd\x92\x42\xf6\xdf\x31\x26\x72\xd1\x7f\xb7\xfa\x03\x75\x6a\x4a\xdb\x8a\x1c\xcf\x0c\x92\xd7\x8e\x7a\x54\xc5\x7c\x61\x44\x2e\x97\x7b\xe9\x95\x2d\x74\xe2\x7c\xc3\xbd\xf8\x6b\x5c\xa7\x32\x04\xc3\x5c\x80\xb1\x41\x08\x05\x55\x57\x57\xfb\xd3\xe9\x74\x42\xc6\x80\xfd\xf9\xf9\xf9\x5e\x55\x55\x55\xfe\x39\x39\x39\x34\xe7\xf3\x4b\xe0\xb3\xb5\x17\x6c\xb3\xda\x7c\x35\x88\xa9\xae\xe3\xfd\x89\x9f\x8c\x01\x6e\x79\xa2\x3f\x30\x17\x35\x4a\x14\x26\x0f\xd9\x7a\x5b\x0e\x7d\x25\xfa\x3b\x3d\xaf\xc9\xe8\x5f\x0f\xb2\x12\x0a\x85\x34\x93\xf0\xad\xcd\xc0\x03\x24\xa3\x68\x97\xb5\xa8\xa8\x88\x5a\xab\xa9\x5d\xdc\x5e\xb0\x6d\xa7\x85\x73\xfc\x1b\xa3\x68\xd7\x21\xc0\x44\xf0\x4d\x6b\x6b\x6b\x17\xb5\x14\xaf\x5b\x6b\x12\xee\x3b\xd9\x54\xb6\xca\x0c\x7c\x38\x9e\x63\x83\x58\xa5\xa5\xe8\x25\x03\x81\xfb\x76\xdf\x67\x28\xfa\xf2\x2d\x9d\x16\x85\x7a\x79\x79\x76\x14\x1d\x7c\x2b\x25\x6f\xe8\x55\x52\xfe\x93\x89\x1c\x87\xa5\xc3\x37\x54\x0a\x14\x0e\xbe\x01\xe0\x0d\x27\x99\x43\xad\x2e\xaa\x0f\xaf\x2a\xd2\x87\x32\x99\x4c\x2a\xd8\xa5\x96\xa2\x97\x4c\xe4\x39\x34\x62\xbf\x3c\xef\xd5\x61\x9d\x4e\xe7\xd5\x5a\xb8\xa1\xff\xde\xf9\xb4\xd1\x89\xc6\xf2\x01\xa5\x43\xac\x4f\x01\xdf\xa6\x41\xde\x93\x35\x25\xa6\x8e\xfc\x1a\xaf\xaf\x36\x0a\x1d\x6c\xcf\x8c\xf8\x03\xf1\x88\xb4\xa8\xd4\xb7\x7a\xc5\x9a\x77\x08\x99\x3b\xe8\x8f\x62\xd9\xcb\x3f\x69\x4a\xda\xb2\x20\x4e\x73\x57\x0f\xf4\xbf\x33\x6b\xef\x76\xc7\x3e\x98\xd3\xfe\x7c\x98\xc0\xcf\xb4\x3f\x1f\x71\xfc\xde\x98\xb3\x73\x23\xf0\x4c\xd6\x01\xf2\xd0\xaa\x51\x90\x35\xea\xda\x6d\x52\x7f\x20\xb5\x16\x6e\xec\xb7\xfb\x7c\x1e\xd9\x2f\xe0\x81\xcf\xe7\xd3\x54\xc5\x2d\xfc\x1a\xc1\xc0\x6a\x25\x6f\x08\x6c\x18\x2a\x2b\x96\x07\xd8\xe5\xe0\x36\x11\x32\x2c\xef\x03\xff\xeb\xb6\xd5\x86\x81\x13\xcd\xd2\xb5\xb2\xfc\xfc\x7c\x4a\xab\x64\x73\x1d\xb1\x37\x11\x61\x97\xbf\x6c\x50\x64\x3f\x6f\x32\xc9\xff\xca\x95\x2b\xbd\x7b\xd8\x27\x2f\x4e\xae\x7d\xd8\xce\xb4\x9e\x03\x6c\x9e\xed\x5a\x1f\xf8\x27\x60\x13\xc1\x27\xf4\xf4\x99\x24\xcc\xb6\xd7\x47\xd1\xcb\xba\x98\x1d\xb9\x3b\x8c\x0d\x65\x03\x7c\x98\x2b\xd0\x36\xf8\x20\x2d\x45\xeb\x65\xa6\x8c\xb7\x37\x37\x95\xac\xce\x75\x90\xfd\xe4\x18\xc2\x1c\xee\xc8\x7b\xcd\x7a\x6f\xcd\xc6\x76\xa6\xbf\x4e\xd5\xc2\xb7\xaf\x09\x78\xe4\xff\x3c\xe8\x35\x95\x4a\x25\x30\x14\xe6\x1d\xe0\x11\xf8\x15\x80\x9d\xe0\x07\xc0\x18\xda\xcf\x38\x62\xce\xfe\x33\x7c\x5f\x57\xdd\x1e\x47\x9c\x89\xb5\xeb\x0f\xf0\x62\xcc\xde\xbd\x1f\xfc\x41\xfb\x19\xd4\xdf\x2c\x65\x67\x67\xd3\x90\xb6\x8e\x69\xa8\x32\xa9\x90\xb6\x9e\x0d\x7e\xa4\x9b\x3e\x4c\x52\x6e\x6e\xae\x57\x37\xf7\xc8\xb1\x55\x93\x38\x64\xf3\x97\xea\x95\xed\xf9\x10\x9b\x79\xa8\x06\x0f\x4c\x80\x87\x75\xaa\x56\x7e\x7f\xc2\xb9\x9f\x56\xd9\xd6\x4b\x7f\xa9\xaf\x36\xe6\xdb\x7d\x49\x67\x9a\x1c\x07\xb0\x13\x8d\x15\x7d\x59\x36\xdb\x72\x7d\xf2\xec\xab\x25\xe5\xe8\x65\xad\x56\x17\xe6\x29\x16\x3d\xe8\x35\xf8\xfa\xc6\x9c\x9d\xc3\x8e\x98\x63\x12\xee\x7b\x93\xc7\xe3\xd1\x5c\xf5\xdb\x21\xa7\xe4\xe6\xe6\xd2\xba\x79\x87\x0f\x91\xfa\x73\x6f\xed\x61\xc7\xbe\x9a\x9a\x9a\x40\xbb\x5d\x7f\xa4\x09\xe4\xdc\x9e\xbf\xdd\x42\xb4\x6d\xef\x83\x31\x67\xe7\x5a\x98\x0b\x33\xe9\x0f\x10\xc4\x5a\xba\xca\x66\xfa\x50\xcc\xe5\x1b\xab\x26\x6d\x09\x81\x5b\x78\xab\x64\xd3\x30\xf0\x00\x3e\xa4\x8b\x71\x7c\x68\x04\xf6\x5c\x26\x95\xfb\x77\xa7\x7e\xf0\xce\x50\xd4\x97\xbf\x58\x52\x3e\x3a\x5c\x29\x53\x05\xba\x79\xe6\x70\xda\x38\x80\x6d\x6b\x2d\x5a\xaf\xb1\xda\xf5\x87\xd4\x25\xe0\xa1\xbd\x60\xdb\x2e\xad\x56\x4b\xd8\x4c\xbb\x6f\x3d\x67\x3d\x01\x59\x81\x5f\xa3\x56\xab\xfd\x9d\xce\xe6\x10\x6b\x39\x80\x9f\x30\x8f\xd9\x6c\x36\xd5\xe9\xdc\xbb\xcb\x7e\x3b\xa6\xcc\xcc\x4c\x9a\x29\xf3\x4f\x0e\x7b\xed\xf7\xec\x72\x97\xe0\xbd\x73\x7a\x4d\x63\x56\x59\x59\x99\x8f\x7d\x4d\x69\x56\x09\xfa\xb6\x62\xc5\x0a\xaa\x46\xa3\x59\xdc\x58\xd1\xdf\x6e\xcc\xde\xfd\x8e\x46\xa3\x09\xb2\xaf\x71\xcc\x36\xb9\x24\x88\xf5\x8a\x0a\x8b\xbd\xcd\x69\x87\xf6\x4f\x59\xbf\xb5\xdb\xe7\x81\xb8\x8b\x37\x5a\x0b\x37\x0c\x23\x9d\x9e\x09\x3e\x23\xc8\x0a\xe2\x12\x77\x8f\xe0\x01\x9e\x03\x8e\x83\xef\xa6\xd1\x68\x16\xd5\xa9\x5a\xa5\xa6\x8c\xfd\x67\x20\x2e\xb4\xc7\x2a\x9b\xc1\xdf\xbd\xdf\x73\xa9\x2e\xc8\xa5\x3d\xc0\xec\x3e\x4d\x71\x91\xd4\xbb\x4b\x70\x60\xd7\x3d\x5d\x72\xd8\x93\x88\x20\xe2\x9c\x9f\xdb\xf3\x5f\xd9\x5f\xaf\x6c\xaf\x42\x3a\xc4\x00\x5f\x51\x26\x93\xf9\x82\x3d\x87\xf8\xbd\xa8\xa8\xc8\x1b\x6c\xb8\x4e\xa7\x0b\x46\x3a\x3d\xb7\xb1\x7c\xc0\xdc\x95\xfe\xee\xb9\xa1\xa8\x2f\xef\x38\xee\x65\xc0\xe7\x06\x79\x8f\x26\x23\x23\xe3\xa1\xee\x5f\xc0\x38\xe4\xe4\xe4\xd2\x3a\xf2\x5e\x33\x81\x9f\xbe\x6a\x8a\x3e\xdd\xbb\x86\xb9\xd1\x9f\xf8\xc9\xcf\x66\xfe\xc1\xcf\x8d\x39\x3b\x0f\xb7\x89\xb7\xec\x69\x5b\xf9\xf2\xce\xf6\xfc\xed\xfb\x3a\xb3\xf6\x9e\xb4\xa4\x1c\xbd\x3e\xc8\xb8\xf4\xeb\xd4\xb5\xbd\xa9\xd7\x3d\xec\x93\x67\x8b\x8a\x8a\x66\x7c\x86\xcd\x53\xfd\x71\x26\xc0\x2e\x83\xac\x87\xd7\xc7\x3c\x7b\xf5\x1e\xb6\x7e\x8d\xdf\xff\xda\x31\x77\x7d\x0d\xf6\xc6\xcc\x3f\xb8\xa7\xb2\x4c\xbd\xc8\x31\xee\x7a\x50\xfd\x71\xbe\x06\x1f\x44\x22\x2e\xf4\x6e\x2f\xd8\x6a\x18\x88\xfd\x6c\xcc\xdd\x58\xac\x72\x9a\xf3\xee\xf6\xbf\xec\x67\xbf\xcf\x18\xca\xfa\xf8\x60\xb3\x9c\x9e\x05\x75\xd9\x87\xfb\xf4\xdb\xa3\x04\x98\x53\xb4\x52\xea\xd3\x52\xb8\x41\xd1\xc3\x39\x7e\xcc\xb6\x17\xe4\x7e\x5f\xcb\x79\xff\x74\x30\xe6\x8b\x9f\xba\x04\x07\x76\xd4\x95\x5a\x38\xe0\x6f\xdb\xd7\xf7\xe6\x9a\xe6\x4c\xe0\x1b\x43\xdc\x51\x5e\xac\x0c\x6c\x91\xbe\x28\xe9\xcc\xde\xb3\xba\x3b\xf5\x83\x03\xbd\xac\x33\xe7\xfb\x13\x3e\x1d\x1d\x88\xbf\xf0\x4d\x7f\xe2\x27\x57\x41\xc6\x66\xfe\xc1\x5d\x1d\x79\xaf\xb5\x1b\xca\xfa\xb8\xe2\x3c\x89\x37\xd8\x98\x39\x60\x8d\x2b\xf2\x58\x7f\x66\xba\x7e\xfc\xf1\xc7\x09\x9f\x9f\xc1\x60\x10\x3c\x41\x3c\x09\x58\x09\x7a\x01\xbe\x5f\x64\x64\x24\xe1\x5f\x39\x01\xec\xc3\xba\xfe\x67\xa6\x07\xd1\xbd\xdf\x3d\xd9\x4e\x0b\x91\xe7\x95\x1c\xf3\x11\x3f\x22\xbf\x8b\xcd\x23\xf2\x71\x0c\x1b\x80\xfc\x26\x86\x85\x40\x3e\x32\x0f\xf3\x83\x7c\x50\x30\x4e\x7c\x9e\x87\xdf\x85\xfc\xee\x7c\x1c\xff\x18\xc7\xb0\x89\x05\xb6\x7a\x26\x42\x70\xfc\xae\x00\xc3\xc6\x43\x70\x7c\x22\x04\xc3\xc6\x05\xb6\xfc\xe6\x80\xed\x7b\xc8\xe1\xbe\x31\xfc\x5e\xfe\x7f\xff\x85\x61\xff\x81\x4f\xe0\xff\x7d\x01\xf2\x9b\x82\xb1\x55\x90\x8f\x85\xc0\xe7\x7f\xc7\xc7\x7c\x52\xff\xcb\x96\x0b\xf0\xa9\x79\xe2\x15\xdb\x7d\x37\xa7\x94\xb3\xd5\x43\xd4\xff\x5f\xf7\xda\x21\xdb\x25\xfb\x41\xf6\x0b\xfa\x79\x37\x04\xc3\x26\xfc\x6c\xdf\xdf\xb5\xf3\x41\xf2\x85\x63\x36\x3e\x27\xf9\x1e\xc3\x6c\x72\x20\xe5\x32\x61\x97\x13\x6e\x97\x1b\x3e\x16\xe2\x5a\xbe\xb6\x9c\x6e\x7f\x96\x6c\xf0\xff\xa1\xe7\xc9\xfe\x45\xff\x9c\x44\xa3\xd1\x30\xf0\xa1\x21\x16\x49\x4c\x4c\x24\xd6\xe5\x05\x02\x01\x91\x58\x2c\x16\xf1\x5d\x44\x44\x04\xb1\xfe\x0f\xf7\xfe\xb3\xd3\xfc\xf9\xf3\x89\x35\x1e\x1e\x8f\x47\x91\xc9\x64\x34\x84\x90\x2f\x42\x28\x10\x21\x14\x86\x10\x62\x20\x84\x98\x08\x21\x8e\x3d\xb1\xec\xdf\xc1\x6f\x8b\xe0\x5e\x28\xc3\xe7\xf3\x27\xf7\x70\xfe\x59\x08\x7c\x54\x18\x53\xb5\x5a\xed\x8d\x10\x5a\x8c\x10\x62\xeb\x6b\x0d\xb2\xc6\xf2\x01\x6b\x9b\x78\xcb\x3b\xa6\xcc\x7d\x67\xbb\x53\x0f\x5f\xeb\x49\x3e\xf1\x7d\x2f\xeb\xf4\x0f\xbd\xac\xd3\x3f\xf6\x24\xff\xe5\xfb\xee\xd4\x0f\x46\x4d\xc2\xb7\xce\xb5\x17\x6c\x3b\xd0\x24\x1b\x5a\xa3\xd7\x34\x54\x40\x59\x84\x50\x10\xd4\x25\x10\x08\x88\x18\xec\xf7\xe6\xcf\x1d\x3d\xfb\xec\xb3\x14\xb1\x58\x4c\x45\x08\x2d\x84\xb1\xad\x57\x76\x18\xda\xf3\x5e\x39\xd4\xc3\xfe\xcb\xf7\xd6\x28\xdb\xf3\x79\xb3\x49\x56\xfa\xb5\x89\x5e\xf6\x5f\xc7\x3a\xf2\x5e\x3b\x0c\x75\xd9\x75\x24\x00\xda\x78\x90\xf3\xe1\x0f\x9b\x7c\x7c\x7c\x28\x39\x39\x39\xc0\x77\x00\xd2\x21\x7e\x73\xe9\xf3\xeb\x2d\x9c\x8f\xbe\x71\x7c\xa6\xf3\x41\x13\xc4\x7f\x3d\x9c\xe3\xdf\x36\x97\xac\xd9\x08\x6d\x40\x5b\x79\x79\x79\xd4\xdf\x6a\xef\xdd\x1d\xc5\xc5\xc5\x51\x34\x1a\x8d\x0f\xd2\x21\x66\x53\xd9\xaa\xb5\xbd\xac\x33\x3f\xb8\x3b\xcb\xf6\x70\xe4\xf0\x35\xde\x97\xf4\xf1\x8f\xcd\xa5\xab\xd7\x21\x1d\x62\x41\xdb\xd0\x87\xdf\x9a\xef\x05\x0b\x16\x60\x20\x7f\x98\xdf\xf5\x35\x6d\x9a\xee\xd4\x0f\xae\x3e\x4a\xbe\x5d\xc9\xa1\x9b\x7b\xe4\x5a\xbd\xb2\x5d\x03\x7d\x10\x0a\x85\xbf\x99\x0c\xfc\xfc\xfc\x28\xe5\xe5\xe5\x34\xa4\x43\x8c\x96\xe2\x75\x5b\x3d\x7d\xc6\xdb\xb9\xff\xc4\x73\xd8\xf4\xaf\x6e\x12\x29\x72\xf4\xf6\x5c\xe4\x37\x14\x73\xf9\x76\x6b\xe1\x86\x35\x60\x2f\x9e\x78\xe2\x89\x47\xce\x3b\xc4\x68\x4a\xa5\xd2\x1b\xe9\xf4\xdc\xce\xcc\x3f\x9d\xf4\xb4\xcf\x43\xd1\x57\x7e\xb6\x70\x3f\x3c\xd8\x91\xf7\x9a\xb1\xa9\x74\xb5\xa8\xbe\xba\x33\x5c\xaf\x69\x5c\x88\x74\x7a\x98\x3b\x3e\xa8\xb6\xde\xb7\xae\xa6\x2d\xa8\xb1\x7c\x80\xdb\x26\xde\x82\xcc\xfc\x83\x3b\x07\x62\x3f\xff\xce\x93\xfa\xcd\xfc\x83\x6f\x2a\x95\x4a\xaf\x47\x6d\x23\x9f\x7c\xf2\x49\xc2\xa6\xe9\x6b\x0d\x59\x16\xee\x87\x57\x3d\xc0\xac\x3b\x96\x94\xa3\x87\x5b\xa4\x2f\x16\xe9\x34\x75\xfe\x80\xdb\xe0\xf3\x80\x3d\xf7\xf3\xf3\xc3\xec\x67\x42\x09\x9a\x37\x6f\x1e\xe0\x28\xf1\x3c\x14\xc4\xc8\x22\x91\x88\xaa\x56\x69\xbc\x41\x1e\x5d\x82\x77\x5f\x1d\x8a\xfa\xf2\xa6\xab\x36\xfa\x13\x3f\x19\xd5\xd7\x36\x2c\xb6\x9f\xd5\x7c\x64\x04\xf1\x7b\x55\x55\x95\x17\xaa\xad\x4f\xef\x49\x3e\x71\xfd\x3e\xba\x3d\xd1\x9d\xfa\xc1\x3b\x86\x4a\x73\x1c\xf8\x30\xf6\xb5\x88\x59\xb7\x09\xe3\xb9\x74\xe9\x52\xc2\xa6\xd6\xa9\x5a\x82\x3a\x33\xff\xb4\xce\x4a\xbf\x36\x39\xd7\x86\xa2\xbe\xbc\xd5\x50\xd9\xcd\x05\xff\xea\x91\x30\x6d\x27\x18\x9b\xe2\xe2\x62\x2a\xd2\xe9\x99\xdd\xa9\x87\x3f\x9f\x89\xf7\xfe\xf8\xf3\xdf\x34\x95\x59\x45\x80\x0f\xb3\x7d\x87\xc1\x4c\x04\x7e\x8f\x44\x22\xa1\x1a\xaa\x4c\x71\x3d\xec\x93\xa7\xc8\xf3\x2f\x52\xa9\x94\xf6\xa8\xf5\x3e\x39\x39\x99\x02\x7e\xa9\x51\xb4\xeb\xd0\x4c\x78\x66\xe6\xbd\xbf\x4f\xa7\x36\x04\xc2\xfd\x8f\xaa\x4f\x91\x91\x91\x14\x95\x52\xed\xdd\x5a\xb4\x3e\x1f\xf4\xd1\x95\xfd\x87\xf1\x82\x18\x23\x23\x23\x83\x2a\x14\x0a\xa9\x51\x51\x51\x73\xee\x0f\xe0\x1d\x42\xc8\xbf\xa9\x74\x75\x3f\x71\xf6\xcb\x8d\xbe\x1b\x45\x6f\x0c\xd6\xd4\xa8\xbc\x1f\xf5\xde\x13\x66\x9b\x8b\x44\x5c\xe1\x2a\x46\x02\x4c\x01\x3d\x01\x9f\x19\x21\xc4\x43\x88\xf0\x95\x82\x4b\x4b\x4b\x69\xae\xde\x65\x35\x13\x81\x1c\x61\xfe\xea\xd5\x4d\xa2\x81\xb8\xcf\x5c\x3e\xcf\x41\x3c\xef\x9a\xff\x8a\x09\xc6\xe2\x51\x3e\xbf\xe7\x29\x01\x16\x20\x1d\x8a\x68\xcf\xdf\xbe\x6f\x20\xfe\xfc\x2f\x03\x71\x17\x6e\x74\xe4\xbc\x7e\x10\xe9\xf4\x8c\xac\xac\xac\x59\xed\x31\x03\x6e\x81\xec\x4c\x19\x6f\x9f\x74\xc7\xbb\x31\x7b\xf7\x9a\x3f\x0a\xef\x30\x5e\x60\x9f\x5a\x0b\x37\xae\x76\xde\x07\x69\x2f\xd8\xb6\x55\xab\xd5\xfa\x7a\x1a\x57\xc3\x7c\x01\xbe\x1a\x14\xdd\x1a\xe2\x6c\xa3\x0b\xfe\xbb\x53\x3f\x38\xa4\xd1\xd4\xfa\xce\x61\x4f\xe2\x91\x10\xd8\x4f\x98\xab\x16\xee\x87\x23\xce\x7d\xed\x65\x9d\xbe\x06\x31\xc3\x93\x4f\x3e\xe9\x51\x5d\x60\x83\x11\x42\xa1\xdd\xdc\x23\x2e\xf1\x7e\x20\xee\xe2\x98\x5e\xdd\x14\x6a\x3f\xe7\xf9\x87\x21\x18\x7f\x33\xff\xcf\x07\x9c\xfb\xdb\xc3\x39\x7e\x46\xab\xd5\xfa\x78\x3a\xfe\x30\xef\x0d\x95\xe6\x69\x67\xe5\x49\xbd\x6f\x2e\x79\x41\x01\x31\xdf\x23\x67\x68\x96\xc4\x66\xb3\x29\x0d\x8a\x1e\xee\x50\xd4\xd5\x49\x7f\x09\x7c\x86\x26\xd9\x50\x2e\x9f\xcf\xf7\x68\xac\x88\xe7\x23\x10\x0a\xec\x4a\x7f\xfb\x98\xab\xb1\xb7\xa4\x7c\x74\x12\xe2\xae\xdf\x3b\xf6\x74\x45\x80\x01\x60\xf3\x0c\x95\x5d\xd1\x9d\x99\x6f\xae\x36\x09\xf7\xad\x6d\x90\xf7\x30\xf3\xf3\xf3\xa9\x8e\xfe\xe6\x4c\x04\x72\xd2\xd7\x1a\xd8\x43\x31\x97\x6f\xb9\xb2\x75\x0d\xf2\x3e\x51\x4a\x4a\xca\x1f\x8e\x77\xb0\x8b\x90\x30\xfb\x3b\x9d\x40\x17\x20\x05\x07\x07\xcf\xaa\xaf\x0a\x85\xc2\xab\x45\xba\xd6\xec\x6a\xec\x7b\xd8\x7f\x39\x07\x38\xea\x70\x4e\xeb\x77\xa7\xa0\xa0\x20\xc7\xf5\x45\x7f\xb8\x76\x7c\x96\x07\x7c\x47\x88\xd5\x35\x1a\x8d\x37\xe0\x03\xd8\x41\x77\xfd\x07\x3b\x86\x10\x5a\xd8\x25\x78\xf7\x84\x2b\xfe\x5b\x0b\x37\x34\x42\x5d\x0f\xda\x67\x98\x63\x2c\x16\x8b\x22\x10\x08\xa8\x90\xe0\x7a\x2e\xef\x81\x03\xde\x61\x3c\xf4\xb5\x86\xdc\x66\xe9\x0b\x1b\x5b\xa4\x2f\x6e\xd6\x6b\x1a\xc4\xc0\x03\xf8\xdf\xe4\xef\x48\xa7\xe7\x35\x28\x2c\x46\x43\x55\x57\x33\xd2\x21\xa6\x3b\xdf\x11\xf0\x1c\xe9\x50\x38\xf9\x5e\xa5\x29\x31\x6c\xd4\x97\xbf\xea\x35\x0d\x11\x33\xbd\xe7\xe6\x7e\x04\xb6\x12\x7c\x76\xfb\x3a\x70\x1c\x42\x28\xdd\xee\xa3\xc1\x75\x00\xc4\x19\xae\xde\x8d\xee\x8e\xc0\xaf\xab\xaf\x69\x93\xf4\x27\x7c\xfa\x8f\x7b\xb6\xe9\xb3\x1b\xf5\xd5\x9d\x15\x10\x13\x57\x55\x55\xd1\xea\x6a\xda\x8a\xfa\x92\x3e\xfe\x81\x7c\xd7\xa5\x85\xfb\xe1\x65\xa4\xad\x67\x43\x8c\xe9\x5c\x1f\x97\xcb\xa5\xd4\xd5\xb4\xa6\xbb\xc2\xfd\x9e\xe4\xe3\xe7\x40\xc7\xc8\x39\x36\x5b\x82\xf1\x80\xb1\xd0\x69\x11\x5f\x5d\xd0\xb5\xb3\x8a\xf9\xc2\x37\x8a\x88\x4d\x37\x14\x91\x9b\x7e\xa9\x4e\x7a\xe1\xba\x7a\xa5\x69\xbb\x4e\x87\x78\x6a\xb5\xda\xc7\x13\x5d\x80\x98\x12\xfa\x63\xca\x78\x7b\x5a\x5c\x62\xe6\xbd\x7f\x86\x58\x8f\x44\x28\xc0\x9c\x76\xe8\x8c\xf3\xef\x1d\x79\xaf\x6e\x07\x7b\xe8\x1c\x17\x40\xac\xd9\x54\xb6\xda\xe0\x4a\xf7\x8d\xa2\x37\x86\x21\xae\x9b\x0b\xef\x30\xaf\x80\x2f\xad\xd2\x20\xab\x64\xbc\xf4\xbd\xbb\xb3\xf8\x55\xf1\xeb\xbe\xd5\xa9\xea\x8b\x6a\x6a\x6a\xbc\x1d\xe7\x28\xf4\x13\x70\x2c\x29\x29\x89\xd8\x23\x01\x3b\x4e\xf2\x4f\xbe\x0f\x77\xea\xba\xc0\xb9\xef\xec\xfc\x07\x0e\xc4\x9f\x1f\x73\x61\xc3\xce\x42\x59\xe7\xb8\x5c\x2e\x97\x7b\xb5\x15\x6c\x5d\xe7\x8a\xff\x16\xe9\x8b\x75\xae\x74\xc6\x13\x82\x72\xba\x5a\x3d\xbb\x32\x66\xfd\x98\xdb\xe7\x10\x48\x19\xc4\xae\xfb\x56\xa7\x45\x4c\xfb\x73\x61\xf7\xd6\xdb\x6c\x7b\x09\xd1\xe0\x97\x81\x7c\x40\x9f\x00\xeb\x8c\xd9\xbb\xa7\xf5\xb7\x4b\xf0\xde\x3e\xb5\x5a\xed\x05\x98\xd7\x9d\xfa\xc1\x91\x69\x63\x99\xbd\x7b\x1d\x94\x75\xee\xa7\x56\xab\xf5\xee\xcc\xda\xb3\xc7\x15\xff\x0d\x95\xdd\xb9\x10\xdb\xce\x96\x77\x90\x31\xe8\xbd\x4a\x64\xd9\x7e\x3f\xde\x27\xdf\xcb\x95\x67\x5e\x0f\x3e\x06\x94\x95\xcb\xe5\x34\xa4\xad\xe7\x75\xe4\xbd\x76\xc0\xc2\x3d\x7a\xdd\x24\xdc\x77\xaa\xae\xa6\x55\x06\x75\x26\x26\x26\x52\x74\xea\xfa\x40\x0b\xe7\xd8\x61\xfb\xf3\x02\x78\x2f\xfb\xe4\xc9\x3a\x55\x4b\x10\xb9\xcf\x66\xa8\x32\xc5\x0d\xc4\x5d\xfc\x96\x8c\x05\x7a\xd9\x7f\x3d\xa5\xd7\x34\x04\xba\xb2\x8b\x08\x21\x9f\xae\xf4\x77\x0f\xbb\xf2\xf9\xea\x54\x2d\x2c\xd0\xbf\xd9\xf2\x0f\xb6\x08\xe9\x50\x50\x65\xcc\xfa\x6f\x3d\xe5\xbf\x2a\x6e\x1d\xf8\xeb\x8b\xf3\xf2\xf2\xa0\x6c\x70\x37\xef\xf0\xf9\x29\xfe\x77\xfc\xf9\x7f\xe8\x35\x0d\x5c\x88\xf1\x81\x0f\xd0\x8f\xfa\xea\xce\x60\x43\xb5\x29\x54\xa1\xa8\xa4\x39\x62\x34\xf4\x59\x5b\x53\xe7\xdf\x5c\xf2\x82\xa8\x49\x66\xe5\x56\x55\x56\x7b\xbb\x5b\x2f\x83\x39\x61\xe6\x1f\x9c\xe6\xf7\x59\x23\x47\xef\xe8\x35\x0d\x71\x73\xe1\x1f\xe6\xab\x4e\x8b\x22\x88\xe7\x3f\x3c\xe4\x5f\x1e\x36\x7c\x43\xa7\x23\xf6\x02\x29\xf5\xd5\x46\xa1\x2b\x3c\x6e\x95\x6c\xea\x05\xfc\x27\xdb\xf1\xf3\xf3\xc3\xdc\xc5\x37\x80\x17\x60\x73\x01\x57\x67\x5a\x0b\xb1\xf3\x7f\xd4\x0d\xff\x09\x73\xe1\x1f\xc6\x42\xa7\xd5\x87\x4f\x7b\xff\xdb\x4c\x29\x74\xcb\x4d\x9d\x0e\x05\x2b\x95\x4a\x8a\xa1\xd2\xcc\x77\xc5\x7f\x7b\xc1\x56\x0b\xf8\x22\x60\x53\xed\x6b\x1e\x3e\xe4\xbe\xa9\xe3\xda\x1b\xf1\xfe\x3c\xfb\x1e\x2c\xc8\x0b\xe6\xb0\xbb\x38\x08\x21\xe4\xdd\x25\x78\x77\x9a\x3d\x21\xf4\x5f\xdd\xcc\x01\x3f\x65\xb6\xfc\x83\x3d\x47\x3a\x14\xa0\x88\xdc\xe4\x16\xf7\x9d\x53\x65\xf4\x86\x51\xd2\x87\xd1\xd6\xea\xfc\xfb\x92\x46\x2e\x4d\xf1\x45\xa2\xaf\xde\xac\x57\xb6\x47\x0b\x85\x42\xc2\xae\x20\xad\x9e\xdf\x24\x1b\xb2\x36\x97\x3e\xbf\x56\x5f\x6b\xc8\x87\xb2\x20\x77\x90\x0d\xb1\x0f\xab\x43\x09\x7a\x75\x93\x42\xaf\x69\x28\x45\x08\x45\x80\x2c\x5c\xad\x07\x81\xef\xdb\x99\xb5\x77\xa7\x2b\xfc\x33\x54\x76\x49\xec\xe7\x3f\x67\x4d\x80\x61\x4a\xfe\xe0\x56\x4f\xf9\xaf\xc9\xe8\x5b\x4b\xea\x36\xe8\x5c\xbd\xb2\x3d\xdc\xc2\x3d\x7a\x60\x28\xfa\xca\x0f\x7d\x49\x1f\x8f\x34\xca\x06\x85\x60\xab\xa5\x52\x29\x55\xaf\x6e\x12\xf6\xb2\xce\x7c\x3f\x89\x0d\xb1\x9f\xdd\x80\xd8\x15\xfc\x1f\xc0\x05\xbd\xa6\x51\x68\xe1\x7e\x78\xd5\x1a\x39\x4a\xbc\x8b\xc3\x24\x7c\xeb\x24\xd2\xe9\x19\xae\xe2\xc1\xe2\xe2\x62\x5a\x7b\xc1\xb6\xd5\xae\xf8\x6f\x2e\x59\xd3\x0c\xbf\xcf\x85\xff\xc8\xc8\x48\x8a\xb6\xc6\x10\xae\x58\xf6\xf2\x4f\xf7\xe3\x5d\xb1\x7c\xf3\x98\x4e\x5d\x1f\xec\x88\x51\x80\xa1\xc0\x2f\xd8\x67\xf0\x1f\x19\x0c\x06\x85\xb4\xff\x9d\x59\x7b\xf7\x3b\xf7\xb5\x9b\x7b\xe4\x9c\xdd\xfe\x2f\x34\x65\xec\x9f\x66\xff\xda\x56\xbe\xbc\x16\xf4\xc2\xb9\x9f\x10\x3b\x36\x97\x3e\xaf\x72\xc5\x7f\x47\xee\x8e\x57\xc1\x26\xcd\x75\x2d\x15\xe2\x8e\xda\xb2\xd6\x74\x45\xd8\xf0\x3f\xdc\xf2\xbe\xec\xe5\x1f\x6a\x2b\x5a\x38\x19\x19\x19\xf7\x9d\x67\xe0\x87\xba\xf3\x7f\xc0\xe7\xb1\x9f\xa3\x58\xd4\x9f\xf0\xe9\x34\xff\xc7\xcc\x3b\x74\x0c\xf0\xc2\xb9\xce\xb8\xb8\x38\xd0\x35\x96\x2b\xbc\xe9\xe6\x1e\x39\x0f\xf5\xcd\x75\xef\x1d\x62\x73\xd0\x39\xad\xb2\x21\x4c\xc9\xb5\x6e\x95\x87\x0d\xff\x20\x5f\xb2\x6d\x02\x92\x62\xd9\xf0\x98\x92\x37\xb4\x51\x5b\x63\x08\x06\xac\xf2\xf4\x99\x2a\x98\xc7\x9d\x59\x7b\x37\x4f\xeb\x6b\xea\x91\x23\xe0\xcb\x00\x8f\x3d\xc9\x27\xa6\xad\x87\x75\x66\xbd\xe9\xd2\x97\x25\xd6\xbb\x75\x28\x90\x7c\xaf\xe5\x14\xcc\x89\xb9\x7c\x0b\x69\xeb\x58\x0f\x1a\xfb\xdb\xdf\x43\x4b\x55\xab\xd4\xde\x5a\xa5\x61\x91\xb6\xc6\xb0\x08\xae\x41\x3f\x66\x1b\x03\x02\x3e\xea\xd5\x4d\x8b\x7b\x59\xa7\x47\xc8\xf3\xc8\x03\xf1\x17\xae\xd7\x57\x77\x46\x83\xef\x03\xf1\x4c\x63\x45\x1f\x7f\x28\xfa\xca\x2f\xf7\x74\xe3\xc2\x37\x75\xaa\xd6\x30\xb0\xcb\xce\xf5\x91\x6b\xa8\x66\xfe\x7b\x07\xa7\xcf\x81\xaf\xf1\xe6\x92\xe7\x4d\x0f\x73\xaf\xf1\x89\x27\x9e\xc0\xe6\x1a\x4f\x91\x04\x38\xaf\x52\xaa\xbd\x1b\xcb\x07\xb9\x4d\x65\xab\xd3\x6b\x55\x88\xf0\x0b\x49\x7e\x04\x02\x01\xa5\xbe\xa6\x2d\xb8\xbd\x60\x2b\x6a\x5b\xf9\xb2\x12\xa9\x1a\x02\x66\xb2\xe3\x30\x0e\x2d\xc5\x2f\x21\x57\x18\xd0\x9d\x7a\x18\xe6\x40\xb0\x2b\xd9\xfd\x9e\x04\xe3\x41\xfe\xff\x08\x95\x4a\x25\xf6\x41\x20\xf6\x87\x04\x38\x09\x31\x04\xf4\x19\x64\x75\xbf\x77\xfe\x01\xee\xea\x6b\x1b\x42\x87\xa2\xaf\x4c\xdb\x73\x05\xfb\x51\x5f\x6d\x94\xc1\xdc\x79\x88\xef\x38\x7b\xa8\x14\x15\x15\x45\x81\xb8\xc7\x1e\x2f\x2d\x06\xcc\x26\xf5\xc1\x13\x02\x59\x2a\x95\x4a\xef\x2e\xc1\x81\x69\x76\xc5\x16\x5b\x1d\x80\xd8\x3a\x34\x3e\x3e\xfe\x0f\xa5\x03\x18\xf9\x5e\x26\x84\x02\xea\x95\x46\x8d\x31\x67\xe7\x11\xa3\x68\xd7\x51\x43\x55\x97\x01\xe4\x30\x9b\x73\x32\xe0\x23\x36\x28\x2c\xe9\xae\xde\x93\x6f\x8d\x1c\x9d\x68\x90\xf7\x36\x82\x5c\x1f\xc6\xfb\xbe\x1f\x26\x29\x14\x0a\x62\xdd\x7e\x28\xfa\xf2\xed\x55\xf7\xd6\xad\xee\x34\x96\x0f\x34\x43\xcc\xec\x29\x6e\x81\x6f\x08\xfc\x59\xb8\x47\x5d\xae\x03\xf6\x25\x7d\x3c\x86\xb4\x75\x3c\xf0\xd1\x3c\x5d\x57\x7e\xd4\x44\xfa\x03\x5d\xfc\xf7\xa6\xc5\x2f\x16\xce\xb1\x8b\xa0\x17\x3e\x3e\x9e\xbf\x1a\x18\xec\x9c\x4d\x07\x46\x5d\x9e\xdd\x33\x09\xf7\x9d\x40\x08\xd1\x73\x72\x72\xa8\x7f\x04\x2c\x80\x71\xd0\x6a\xb5\x30\x66\xa7\x9c\xfb\xda\xcb\x3a\x7d\x09\x21\xe4\x3f\x1b\x5b\x03\x31\x12\xd8\xba\xae\xf4\x77\x5c\xc6\x03\xb6\x33\x08\x9b\x77\x00\x16\x80\xcd\xf8\x23\xc8\x00\xe2\xc1\xb6\x95\x2f\x1b\x9c\xfd\xb7\x8e\xbc\xd7\x7a\xe7\xe2\xbb\x83\xcd\xd0\xab\x9b\x82\x07\xe2\x3e\xfb\xc1\xa5\x0c\xe8\x5f\x4d\xb4\x14\xaf\xdb\x8c\x10\x0a\xcb\xcf\xcf\xa7\xfe\xde\xe7\x96\x7d\x7d\x7d\x89\x73\x3a\x1d\x39\xaf\x9b\x07\x19\x7f\xfb\x6e\x90\x71\xe9\xfb\xce\xac\xbd\x56\xb5\x4a\xe3\x33\xd7\x7d\x5a\xf0\xd5\x9a\xca\x56\x15\xb9\x9b\x07\x20\x83\x56\xc9\xa6\x9d\x48\x87\x18\x10\xe7\x3d\xca\x33\xba\xc4\x7f\xcc\xe5\xe7\x53\xb5\x5a\xad\x97\x3b\x3f\x19\xe2\x7d\xf0\xb3\x21\x96\x05\x59\x40\x4c\xf3\x20\xfb\xf3\xf6\x35\x38\x90\xe9\xa0\xbb\xf3\x68\xf0\x7d\x67\xd6\x9b\x27\x90\xb6\x4e\xa8\xd5\x6a\xfd\xa1\x6f\x0f\x53\x17\x00\xb7\x59\x2c\x16\x79\xd6\x94\xdd\x20\xef\x41\x08\xa1\xa0\xb9\xac\xc7\xcc\x85\x9e\x7a\xea\x29\x8a\x5a\xa5\xf6\x31\xa7\xfd\x79\x9f\x2b\xfe\x1d\x70\x66\xcc\x50\x69\x36\x02\x2e\x82\xbd\x81\x3e\x3f\xc8\x3b\x96\x41\xf6\x60\xb7\x89\xb3\x67\x08\x85\xd5\x2b\xdb\x91\x25\xe5\xa3\x51\x2b\xfd\x2b\xb0\x69\x26\x88\x6f\x9d\xde\x3f\xf5\xc8\x28\x38\x38\x98\xa2\xd3\x20\x7f\x0b\xf7\xe8\xb4\xf5\x51\xe7\xf9\x60\x12\xee\x1b\xa9\x53\xb5\xa8\x40\x0e\x5a\xad\xd6\x17\x74\x36\x26\x26\x86\xe2\x89\xbf\xe0\xeb\xeb\x4b\xe0\x0e\xcc\x3b\x62\xbc\x11\x0a\xd7\x6b\x1a\x65\xc6\x9c\x37\x8e\x0e\x45\x5f\x1d\x9f\x8c\x63\xe2\x3e\xbb\x51\xa7\x6a\x91\x3a\xef\x15\x3c\x4a\x82\x78\x4b\xa7\xd1\x13\xff\x8b\xb2\xea\x3e\x67\x33\x87\xa2\xae\x8e\x77\xa5\xbf\x7d\xbe\x41\xde\xd3\x8b\x74\x48\x08\x7c\x80\x0d\x86\xf8\x4a\x2a\x95\xd2\x40\x26\xe4\xfe\x1f\xd8\x50\xc0\x67\xe0\xc5\x7e\x7e\x3e\x0c\xe9\x10\xdf\x50\x65\x6a\xef\xcc\xda\x7b\x6a\x30\xe6\x8b\xdb\xae\xda\xe8\x49\x3e\x3e\x8a\x74\x7a\x56\x61\x61\xe1\x6f\xe6\x84\x80\xbe\x01\x9e\x76\x66\xbe\xb9\xce\xdd\xff\x28\x39\x63\x43\x7f\xc2\xa7\xbf\x98\x84\x6f\x9d\x6d\x29\x5e\xf7\xaa\xa1\xba\xb3\x1d\x69\xeb\x4a\x91\x0e\x89\xec\xfb\x7f\xe9\xc4\xb5\x56\x2f\xad\x57\x76\x34\x36\x97\xbc\x30\xdc\x99\xb5\xf7\x4c\x1f\x73\xe4\x27\x4f\xce\xbf\x76\x66\xed\xdd\xf7\x5b\x9d\xff\x25\x09\xf0\x00\xb0\xbe\xa5\x78\x5d\xc5\x60\xcc\xe5\x69\xef\xba\xbf\x9f\x3c\x88\xf7\xe0\xc7\xfe\x8d\xf8\x1f\x2e\xdb\x7f\x72\x7d\x7e\xcb\xdd\x3b\xf1\xef\x33\xd7\x6e\x77\xe4\xbe\x6e\x82\xbe\xfc\xd6\xfe\x07\xe0\x3b\xd8\x16\xdb\xda\xe4\x87\x07\x7f\xcb\xf3\xef\xab\x88\xe7\x00\x46\x2e\x36\xc8\x7b\x39\xa0\xfb\xbf\xe7\x79\x84\x90\x90\x10\xc2\xd6\x36\x97\x3e\x9f\xdf\xc7\x1c\xb9\xf8\xa8\xe5\x30\x10\xfb\xd9\xf7\x6d\xe2\x61\xa4\x56\xd5\x12\xcf\x3e\xfc\x11\xfc\x4e\xb0\xcf\x60\x8b\x6b\x6a\x54\xde\xcd\xd2\xb5\x92\x9e\xe4\x13\x27\xdc\xf9\x4b\x73\x49\xc4\x73\x1f\xcc\xb3\x9f\xb7\x89\xb7\xa0\x5a\x95\x9e\xf0\x2f\x66\x7b\x9e\xf3\xb7\x20\x98\x13\x0c\x06\x83\xd8\x6b\xa9\xaf\xee\x8c\xe8\xc8\x7d\xdd\xdc\xcb\x3a\x3d\x62\xa5\x7f\x35\x97\x67\x24\xee\xf4\x27\x9c\xbb\xdc\x99\xf9\xa7\xb5\x8d\x15\x7d\x6c\xf0\x01\xd8\x6c\xf6\x1f\x92\x6f\x57\x04\x7e\x70\x72\x72\x32\xc5\x7e\x86\x36\xa0\xa9\x6c\xb5\xb0\x23\xef\xd5\xd6\xae\xf4\x77\xb6\x5a\x52\x3e\x3a\x0c\x72\x81\x31\xed\x4f\x3c\x7b\xa9\x8f\x75\xe6\x9c\x85\x73\xec\x68\x97\xe0\xbd\x1d\xc6\x9c\x9d\xe6\x66\xe9\x5a\x71\x7d\x4d\x5b\x10\xcc\x2b\xf0\x65\xc1\xf7\xf8\x23\xe8\xf9\x5c\x09\xfc\x38\xe0\x21\x3e\x3e\x9e\xf0\xcd\x21\x4e\x13\x8b\xc5\x34\xc0\x6d\x48\x12\x89\x84\x26\x16\x8b\x09\x5f\x20\x31\x31\x91\x78\x37\xd8\x6c\x62\xf5\x7f\xd1\xbf\xe8\x5f\x34\x77\xc2\xef\x4f\x83\xc4\xab\x0a\xf0\x09\xfb\xcd\x63\x18\x46\xfc\x1d\xcc\x20\x86\xd9\xdf\x61\x80\xcd\xb7\xfd\x4c\xdc\x30\x8e\x09\x6e\x42\x7e\x73\x1e\x7e\x77\x1e\xdc\xbe\x00\xc7\x57\xe1\x38\x3e\x12\x82\xe3\x7f\x87\x62\x02\x7b\xad\x03\xb6\x7c\x1e\xf1\x67\x36\xb6\x7b\xf1\xb1\x81\xbb\xf3\x6d\xb9\xed\x3d\x0f\x63\x03\x13\x7e\xb6\xdf\xc7\x89\xfc\x7f\xf1\x71\xfb\x5f\xd1\x90\xf9\x4d\xa2\xba\xdd\xf6\xdc\xcf\xef\xa6\x00\xbf\x29\xb8\x4b\x5b\x70\x53\x80\x8f\x85\xdc\xa5\x2d\x18\x1b\xc0\x47\xfc\x6c\xf9\xe0\x82\x4d\x7e\x7e\x44\xbe\x00\x6a\x76\x95\xef\xc6\x1d\xee\x23\xca\x91\xf5\x38\xd4\x4b\xb6\x33\xa5\x1f\x93\xb9\xbd\x9f\x64\xbf\x49\x3e\x48\xbe\xee\xda\xf9\x25\xfe\xf5\x17\x1f\xbf\x27\x07\x52\x2e\xa4\x9c\x48\xb9\x91\x72\x1c\xc7\x42\xc6\xa0\xcc\x5d\x0c\xc3\xe6\x39\xc8\x1d\x1f\xc1\x30\x5b\x5b\x18\x46\x54\x71\x97\x1c\xd4\xb1\x10\x0f\x06\xf7\xff\x0f\x00\x00\xff\xff\x9f\xf0\xbc\x2c\xbe\x86\x00\x00") +var _web_uiV1StaticFaviconIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x0b\x50\x93\xd7\xba\x3f\xfc\x1a\xd3\x48\x29\x07\xa8\xa5\xd4\x5a\x04\x44\x84\x00\xe1\x16\x62\x08\x21\x24\x10\x20\xdc\x62\x80\x00\x81\x04\x08\x49\x48\x56\x20\xdc\x21\x84\x10\xee\xd1\x5a\x6b\xbd\x15\x2f\x6d\xad\xf5\xd2\x6d\x6d\x6b\xdd\xd6\x5a\xab\x6e\xb7\x5a\x8e\xb5\x6a\xbb\xad\x5a\x4b\x9d\x4e\xbf\x4e\x87\xd3\xd3\xe9\xde\xd3\xe9\x78\x3c\x4e\x8f\xc3\xf1\x30\xbe\xdf\x3c\x6f\xf2\x62\x08\x09\x06\xd4\xb6\xfb\x3f\xfb\x99\x59\xb3\xde\x24\xef\xba\x3c\xcf\x7a\xd6\xef\x79\x9e\xb5\xd6\xfb\x06\xc3\xe6\x61\x8f\x61\xfe\xfe\x90\x87\x62\x75\x54\x0c\x93\x61\x18\xb6\x68\x91\xed\xf3\xda\xc7\x31\xec\x0c\x15\xc3\x42\x43\x6d\x9f\xdf\xf1\xc7\x30\x91\x2f\x86\x25\x24\xd8\x3f\x2f\xc7\xb0\x1b\xc1\x18\x96\x9e\x6e\xfb\x4c\x17\x62\xd8\xf6\x2c\x0c\xa3\x63\x18\xe6\x8f\x61\x58\x28\x66\xfb\x7e\x36\xf4\xd8\x63\x8f\x51\x82\x82\x82\x68\x91\x91\x91\xbe\xcb\x96\x2d\xf3\x5e\xb8\x70\x21\xc5\x93\x72\x8f\x3f\xfe\x38\x25\x73\x45\x21\xb7\x43\xf0\xe6\xfe\x3e\xe6\xd9\x1f\x87\x62\x2e\xdf\x1e\x8c\xfd\xfc\x96\x85\x73\xec\x92\x9a\x3f\x60\x5c\x16\xb6\xdc\xd7\x5d\xd9\xa7\x9f\x0e\xa4\x35\x08\x86\x37\x5b\xe9\x5f\x4d\x0c\x45\x5f\xb9\xd1\x92\xf4\xd6\xfe\xaa\xd8\x35\x56\x75\xfc\xa6\xf5\x96\xa4\x93\xe7\xac\x91\x5f\xe3\x3d\x9c\xe3\xe7\x9f\x7a\xea\xa9\x69\x7d\x79\xe2\x89\x27\x28\x4d\xfc\x57\xb6\xc3\x3d\x75\xcc\x57\xb7\x07\x3f\x1b\xe6\xef\xf8\xfb\x82\x05\x0b\x28\xa9\x91\x12\xae\x20\xaa\x24\x1d\x78\x8b\x88\x88\xf0\xa1\xd1\x68\x93\xf5\xe4\xb3\xab\x72\xa1\xac\x8e\x35\xbc\x1e\xee\x9d\x89\xc7\xa4\x68\x5e\xf8\x20\xe3\xd2\x2d\x76\x74\x3a\x9d\x6c\xdb\x9c\x72\xe4\x54\x7f\xc2\xa7\xdf\x05\x3e\xbd\xc8\x6b\xa6\xb2\xf3\xe6\xcd\xa3\x44\x46\xd0\xbd\xf2\x63\x90\x2c\x7c\x59\x04\xdc\x4b\x89\x08\xa7\xfb\x5b\xa3\xae\x8d\xab\x56\xac\x1d\x74\xbc\x97\x1e\x1e\xb3\xb8\x84\xdb\x64\xcd\xe1\xc8\xa4\x5e\x5e\x5e\x14\xe8\x57\x62\x14\x27\xb4\x97\x75\xfa\x1b\x75\x61\xbb\xa8\x27\xf9\xc4\xd5\xd8\x88\xa4\x20\x76\x54\x06\x63\x55\xe4\x75\x3c\x2f\x5e\x2d\x25\xcb\x52\xa9\x54\x4a\x25\xdb\x7a\x50\xbe\x64\x3b\x2e\x0f\xde\x36\xb1\x32\x5b\xc6\x32\xa5\xef\x3f\x50\x92\x59\xcb\xab\x8c\x5b\xd5\x9b\x14\x9d\x1a\xa4\x8c\x7b\xd1\xfa\xcc\x53\x8b\x7d\x58\xf4\xf4\x68\x28\x9f\x9f\xa0\x99\x2c\x3f\x7f\xfe\x7c\x4a\x45\xe2\xe0\x01\xa2\xfc\x92\x6d\x78\x26\x77\x65\x42\xeb\x8a\xfd\xfb\x64\x99\x7a\x7e\xbb\xf0\x8d\x57\x73\xf8\x92\x88\x86\x8c\x97\xd7\x2d\x79\x2e\xc4\x37\x2c\x34\xdc\xc7\x4a\xbf\x36\xae\xe5\xbe\x64\x75\xec\xff\x73\xcf\x84\x06\x66\xd3\x35\x16\x4e\x44\xbe\x18\xfa\x03\xdf\x45\x04\xc7\x2e\xee\x59\x71\xf2\x6c\x89\x40\xc7\xef\x4b\xfa\xf8\x52\x44\x48\xec\x22\x18\x07\x13\xfb\xf0\xb1\xfe\xc4\x4f\xbe\x0f\x09\x0e\xf5\x9e\x49\x7e\x44\xbd\x8b\x9f\xf3\x92\xf3\x8c\xc8\xf1\x5e\x41\x4c\x31\x0f\xc6\xaf\x21\x6d\xdb\x56\x3f\x3f\x3f\xea\x4c\xe5\xe3\x97\x27\x87\x0e\xc6\x7c\xf1\x73\xe2\xf2\xd4\x70\x47\x79\xd5\xb2\x36\xac\x86\x3a\x5a\xd3\x76\xbd\x19\x1f\xc3\x5c\x0c\x32\x27\x7f\x0f\x0c\x0c\xa4\x4a\x52\x6b\xc4\x12\x6e\x8d\x08\xc6\xd0\xae\x83\x53\xf4\xc4\xdb\xdb\x9b\xa2\x4c\x5a\x63\xb1\xd2\xbf\xba\x33\x18\xf3\xc5\xad\x2e\xfe\x81\xa3\x8d\xe9\x5b\x36\xb7\x65\xec\xdc\xd1\xc3\x3e\x79\x0d\xea\xee\x66\x1f\x3b\x3b\xd3\x5c\x82\xba\x13\xc2\x78\x74\x94\xb8\x6d\xb8\x3f\xf1\x93\xd1\xa1\xe8\x2b\x37\x07\x19\x97\xfe\x61\x66\x7d\x74\xaa\x28\xa6\x0d\x05\x2c\x0c\x9c\x51\xbf\x1c\x09\xe6\x62\x40\x40\x00\xc5\xdf\xdf\x9f\x02\xe4\xee\x3e\x1c\xc7\xb0\x71\x01\x86\x8d\xf9\x61\xd8\x05\x1c\xc3\xae\xfc\x1f\x86\xed\xc6\x31\x6c\xd7\xff\x60\xd8\xa9\x6a\x0c\x3b\x55\x86\x61\xbb\xff\xc7\xf6\x1d\xfc\x06\xf7\xdc\xf4\xb3\x95\x81\xb2\x30\x09\x16\x61\x18\x96\xe0\x19\xce\x50\x5c\x5c\x3b\xe6\x14\xd0\x3d\xe8\x3b\xcc\x53\xc7\xef\x3d\xb8\x76\x57\x3f\x16\x14\x14\x44\x4d\x17\x64\x04\xd5\xac\x6c\x91\xb6\x14\xae\xb7\xb4\x17\x6c\x5d\xd7\x26\xd9\x3c\xa8\x93\x58\x54\x79\xd9\x62\x7a\x44\x44\x04\x0d\xda\xf5\xa0\xef\x53\x52\x60\x60\x20\xa5\xb4\xa0\x9a\x63\x12\xee\x3b\x38\xc8\xb8\xf4\xeb\xaa\x88\xaf\x71\x98\x4b\xb6\xdc\x76\x6d\x8d\xba\x76\xa7\x3b\xf5\xf0\x79\x75\x61\x87\x6c\xf9\xf2\xe5\x34\x57\xf5\xb8\xea\x3f\x83\x11\xeb\xdd\x9a\x3f\xbc\x6e\x28\xea\xea\xb8\xd5\x5e\xa7\x95\xfe\xd5\x78\x7f\xe2\xd9\x6b\x3d\xec\xbf\x9c\xe9\x65\x9d\xb9\x38\x14\x73\xf9\x17\x6b\xa4\xad\x2d\xc8\x4d\x19\xfb\x0f\x2c\x5b\xb6\x8c\x7a\x3f\xf9\xc4\xc5\xc5\xfb\x98\x32\xde\x3e\x44\x94\x8d\xf8\x1a\xef\x4f\x3c\x77\xbd\x32\xc5\xa2\x8c\xa5\x27\xfa\x03\x4f\x3e\x3e\x3e\x94\x27\x9f\x7c\x92\x12\xb6\x74\x19\x2d\x2f\xa9\x9a\xdf\x95\x72\x98\xb8\xb7\x2e\x7d\x83\xd1\x71\x5e\xb8\x92\xcf\xb3\xcf\x3e\x4b\xed\x10\xbd\xbe\x9d\xec\x53\x0b\xef\x8d\xcd\x61\xa1\xe1\x5e\x33\xf0\x4d\xf1\xf3\xf3\xa3\xe4\xaf\xa8\xe6\x3e\xf3\xcc\x33\xd0\x77\x4a\x64\x64\xa4\x57\x6a\x6a\x6a\xc0\xbf\xfd\xdb\xbf\x4d\x91\x0f\xcc\x8f\xaa\xfc\xc6\x5c\x6b\xe4\xe8\x04\xd4\xdf\xc8\xdf\xbe\x1a\xfa\x39\x1b\x3d\x81\x39\xd1\x99\xb5\x67\xd7\x60\xec\xe7\x37\x25\x42\x39\xd3\x51\x2e\xe1\xe1\xe1\x34\x0b\xe7\xd8\xc5\x55\x11\xd7\x71\x4b\xf2\xf1\x33\x41\xcf\x05\xcd\x88\x25\xae\x08\x78\x31\xa5\xbd\xfb\x26\x60\x62\x5e\x4a\x39\xd3\x51\x3e\x85\x42\x05\xdb\x6a\x97\x4b\x41\xaa\x82\x3d\x93\x4c\x5c\x25\xc0\x29\xd0\xd5\x58\x46\x1c\x2d\x3e\x9a\xe5\x1b\x19\x19\x49\x85\xf6\xc8\x79\xd3\x92\xbb\xa5\x1f\x74\xae\x97\x75\xfa\xf2\x92\x25\x4b\xa8\xce\x63\x0f\x63\x27\xe0\x67\x04\x95\xe6\xd5\x14\xe5\x66\x8b\xa3\xed\x58\x34\x29\x9f\x8c\xd4\x9c\xd0\x6e\xee\x91\x8b\xad\xe2\xcd\x83\x52\x71\x45\x98\x39\xed\xd0\x88\x41\xb2\xda\x00\x36\x0e\xee\x35\xf3\x0f\x1e\xb2\x46\x5c\xc7\x8d\x59\x7b\x86\x49\x4c\x77\x24\x71\x76\x09\x53\x11\xb1\xe9\xe7\x8a\xa0\x6d\xb8\x3c\x74\xcb\xb8\x22\xdf\xa0\x04\x5d\xe2\x72\x53\x03\x52\x38\x29\x0b\x4b\x33\x10\x9f\xb0\xe3\xec\x93\xe7\xeb\x8b\x06\x24\xa0\x7b\x96\x94\x8f\x4e\x82\xce\x3d\xfb\xec\xb3\x14\x0b\xe7\xf8\x39\x18\xd7\x06\xd1\x06\xa3\x33\xef\x04\xbe\xa6\x0d\xee\x04\x9b\x54\x11\x64\x4b\x95\x8c\x97\x46\xe5\x15\x95\x0b\xfb\x13\x3f\xf9\xa1\x2f\x69\xe4\xbb\x74\x41\x86\x4f\x1e\xb3\x9a\xcf\x8c\xe2\x2e\x0e\x08\x08\xa0\x16\x32\xeb\x24\x49\x51\xa9\x41\x50\x7e\xd1\xa2\x45\x94\x1e\xa2\xfe\xeb\x78\x63\xce\x46\xa3\xf3\x9c\x00\xfb\x5a\x9d\x3a\xb8\xc3\x56\xff\x36\x5b\xfd\x31\xeb\xaf\xad\x2c\x28\xf4\x1d\x88\xfb\xec\x87\x81\xf8\x0b\xdf\x49\xc4\x85\xfe\x86\x22\x6b\x5d\x45\x81\x86\x1b\x1d\x1d\xed\x55\x2b\xe9\x94\xe5\x0a\x57\x86\x03\xbe\xfa\xfa\xfa\x82\x7c\x0e\x40\xfd\xc6\xec\xdd\x5b\x01\xc3\x9c\xe5\x93\xc6\x12\x31\x14\xcb\x86\x7f\xb6\xd9\xe5\xad\xe3\x45\x69\x5a\x19\x8c\xdb\xf2\x30\xba\xf7\xb2\xd0\x08\xef\xb2\x0c\x7d\x16\xc8\xa7\x77\xc5\xa9\xab\x4d\xb2\xa1\x22\xc2\x66\xa4\x7e\x70\xf2\x99\x67\x9e\x21\x64\xd0\x90\xb9\xd9\x6c\x8d\xf8\x1a\xef\x65\x9f\xbc\x6a\xc7\x12\x47\xfd\xa6\xc0\xfc\x88\x5a\x1e\xbb\x50\x10\x57\x28\x62\xc6\xa4\x84\xda\x7d\x99\xc9\x14\xbd\x3c\x7e\xa1\x39\xf5\xd0\x7e\x6d\xfa\x6a\x2d\x7f\x85\x28\xa8\x27\xf9\xf8\xc9\xda\x0c\xab\x86\xf4\x85\xb2\x39\xc5\x71\xa4\x7e\x96\xe5\x68\xf8\xb3\xc0\xde\xc9\x6b\xa8\x8b\xc5\x5a\xe1\x9b\x9b\x25\x8e\x08\x09\x09\xa1\xd8\x71\x95\xf8\x1d\xc6\xc0\xc2\x39\x7e\x06\xf0\xcc\xc2\xfd\xf0\x5c\x6c\x6c\xec\x7d\xed\xbd\x33\x81\x2c\xba\x04\xef\x1e\xb2\xd2\xaf\xdd\x29\x16\xaa\x78\x8e\xf3\x0b\xd2\xca\xd4\x6a\x8e\x95\x3e\x7a\x07\x78\x68\xcb\x79\x65\x78\xd9\xb2\x65\x33\x61\xee\xb4\x04\xba\xde\x26\x78\x63\xfd\x20\xe3\xd2\x4f\xc2\x15\x2b\xe9\xce\xfc\x81\x1e\x36\x08\x86\xfb\x49\x39\x19\xb3\x77\xed\xe1\xa5\xa6\x05\xd8\x71\x71\x9a\x4c\x88\x31\x89\x8a\xf2\xaa\x95\xb6\x8b\x01\xd7\xe0\x7b\xd0\x95\x90\x90\x10\xaa\x83\x5d\x76\xb6\x2b\xd4\x36\xde\x9e\xad\x24\x3e\xf7\x25\x8d\x8c\x35\x48\xd6\x18\x45\x99\xb9\xe1\xf1\xf1\xf1\xde\x30\xf6\xa0\x7f\x69\xbc\xb4\x40\x4d\x61\x87\xac\x9b\xf7\xfe\x59\xb8\xb7\x29\x7f\x43\xbf\xd3\x9c\x76\xb6\x2f\x93\x04\x3e\x4c\x2d\x7f\x4d\xe3\x50\xd4\x97\xbf\x92\x36\x6b\x28\xea\xea\x9d\x5e\xd6\xe9\xef\x2d\xdc\xa3\x97\x7b\x92\x4f\x5c\x1f\x8c\xfd\xdb\x2d\x47\xfb\x62\xe4\xbd\xbd\x0b\xe6\xe9\x0c\xc3\x33\xc5\xfe\x02\x46\x70\xe2\x32\x82\x5b\x79\xbb\x87\xc1\xe7\xb2\xda\xed\xa3\x95\xb4\x8f\x11\xd7\x09\x9b\xd6\xcd\x39\x7a\x54\xcc\x56\xa7\x93\x58\x36\x83\x8e\xb9\xc5\xc5\x65\x61\xcb\x69\xc2\xf8\x52\xb6\x8c\xd5\xa9\xac\xe1\xac\x6a\x56\xac\xe8\x41\xf9\x89\x6a\x51\x1c\x3d\x69\x21\x60\x90\x07\x63\x3f\x13\x2f\x0f\x4c\x38\x8e\x63\xf8\xdf\x71\xec\x2e\x86\x63\xe3\x98\x00\xbb\x79\x77\x00\xfb\x0f\x1c\xc7\xfe\x13\xff\x3b\x76\x01\xff\x3b\x76\x05\xc7\xb1\x2b\xf8\xdf\xb0\x4d\x17\x3e\xc3\x76\x5b\x07\x88\x04\xd7\x57\xf0\xff\x8f\xf8\x0d\xee\x81\x7b\xff\x1b\xc7\x89\xb2\x13\x98\x80\xa8\x8b\xa8\x17\xc7\x09\x3f\x0c\xbc\xaf\xf4\x39\xc4\x7b\x7f\x54\x82\xb9\x9e\x90\x90\x40\xcb\xc8\xc8\xf0\x15\x8b\xc5\x8b\xa4\x52\x69\x10\xe4\x42\xa1\xd0\x1f\xbe\xb7\xe3\xe2\x43\x25\xc0\xaf\xc4\xc4\x44\x5a\x95\x5c\x19\xdd\x5c\xf2\x82\xc9\x24\xdc\x77\xb4\x27\xf9\x2f\xdf\xf6\x27\x7c\xfa\xcb\x40\xec\x67\xb7\x20\xef\x61\xff\xe5\x5b\x93\xf0\xad\x63\xcd\xd2\xb5\xe6\x2a\xb9\x92\xc1\x64\x32\x69\x8e\xf1\xe4\x5c\x09\xec\xb9\x4a\xa1\x63\x75\x66\xef\x39\x30\x18\xf3\x85\x6d\x5e\xde\x27\x0d\xc6\x7c\x71\xbb\x33\x6b\xcf\x41\x95\x02\xb1\xa1\xfc\x5c\xda\x05\x8c\xce\xcc\xcc\xf4\x6d\x29\x5a\x6f\x25\xfc\x58\x17\xed\xd8\xf0\x6e\x74\xdc\x1a\xf9\xf5\x84\x9b\x7e\xfc\xda\x5a\xb8\xa1\x3f\x36\x36\x76\x56\x7d\x80\xb9\x5b\x28\x29\x0a\x34\x09\xdf\x3a\x6c\xb5\xfb\xcc\x64\x7b\x3d\xec\x93\x23\x0d\x59\x1b\x0d\x2b\x79\x55\x09\x29\x2b\xd2\x7c\x93\x98\x49\xb4\x64\x16\xd7\x27\x8f\x2b\xa3\xeb\xb3\x5e\xd0\x58\x52\x3e\x3a\x6a\xf3\x05\x6d\x65\xcc\xfc\x83\xfb\x96\x2e\x5d\x3a\xab\x71\xc8\xc9\xc9\xf1\xef\x12\x1c\x38\xe1\xc8\x4b\xef\x8a\xd3\xe7\xcb\xb3\xea\x38\xa1\xa1\xa1\x60\x53\xdd\x96\x7d\xee\xb9\xe7\x28\x45\xc2\x6a\x86\x85\x73\xec\x44\x7f\xe2\x27\xd7\x05\xa9\x42\xff\xd9\xb4\x1d\x1b\x1b\x4b\x6b\xcf\x7f\x65\xd8\x91\x67\xa3\x70\xcf\xfa\x38\x46\x3c\x6d\x36\xf5\x84\x87\x87\x53\x79\xac\xcc\x00\x32\x86\x79\xfa\xe9\xa7\x29\x30\x4f\x24\x12\xc9\x22\xb0\xb9\xae\xca\x80\x9d\x43\xe5\xc6\x5c\xb0\xa3\x64\xdb\x6d\x59\x3b\x06\xc1\x66\xcf\xa6\x6d\x57\x54\x5d\xaa\x8d\xeb\x63\x9e\xfd\xb1\x3f\xf1\x93\x9f\x54\xb2\x7a\x96\x2b\x19\xf2\x78\x3c\x6f\x4b\xca\x47\x9f\x93\xbc\x77\xf3\xde\x3f\x48\xa7\xd3\xe7\xa4\xbf\x8e\x34\x7f\xfe\x7c\xac\xb9\xf0\x45\x15\x59\x6f\xeb\xca\x4d\x8d\x8f\x3d\xf6\xd8\x94\x7b\x60\xae\xea\x65\x5d\x62\x52\xdf\x06\x63\xbe\xb8\x91\x97\x59\xb4\xf8\x41\xdb\x26\x29\x65\x45\x9a\x7f\x37\xef\xf0\x3b\xdd\xa9\x47\x0e\xf2\x53\x32\x03\x9c\x7f\x8f\x88\x88\xa0\x9a\x84\x6f\xbd\x43\xf6\xb1\x43\xb4\x73\x8d\x43\x1c\x33\x67\x22\xd6\x88\x12\x13\x69\x90\x82\x82\x82\x28\x8b\x17\x2f\xa6\xc4\xc4\xc4\x50\xa3\xa2\xa2\xa8\x8e\xf1\x2d\xe0\xe9\x40\xfc\x85\x9f\x6c\xe3\x3e\x3a\x51\x9c\x2b\x8f\x98\xa9\x5e\xb0\xf9\x22\x91\x68\xa1\x54\x2a\x0d\x83\xdc\x9d\x0f\x50\xb8\xb2\x78\x71\x67\xe6\x9f\x0e\x9b\x84\x6f\x1d\x29\x29\x92\x05\x15\x17\x96\x2c\x36\x8a\xde\xd8\xd7\x91\xfb\xda\xce\xec\x6c\xd1\xe4\xdc\x28\x2f\xac\x61\x90\xb2\xef\x4b\x1a\xb9\x0e\xfd\x75\xd7\x36\xe8\xb6\xa6\xac\x55\x55\x15\xbb\xee\x3b\x79\xd8\xf0\xed\xaa\xb8\x75\xdf\x6a\xca\x9a\xab\x96\x2e\x5d\x4a\xe8\x0a\xf8\x5d\x10\x3f\xc0\x18\xb7\x14\xaf\xd3\x4e\x8e\xbb\x64\x53\x6b\xab\x64\x73\x3b\xf9\xb9\xb9\x64\x4d\x15\xe9\x6e\xd5\x97\xf4\x4a\xee\x61\xc6\x7b\x07\xdd\xe9\x3c\xe8\x6d\x55\x59\x2d\x07\x62\x19\xdb\x5a\x98\x3d\x2d\xdd\x72\x5b\x51\xaa\x62\x81\x8c\x75\x8a\x56\x61\x8b\xf4\x45\x73\x49\x71\x59\x50\x45\x81\x36\x7a\x30\xe6\xf2\xcf\x43\xd1\x57\x6e\xc8\xf3\xea\x98\xca\x82\x16\xae\x95\x7e\xed\x36\x7c\x2e\xcd\xa9\x89\x26\xeb\x6d\x96\xae\x9d\xd4\xcf\xce\xac\xbd\xdb\xdd\xc9\x13\x74\x42\x95\xdd\xb3\x7a\x4a\xdb\xf6\xa4\xca\xb1\xf4\xd7\x54\x69\x16\x0f\x32\x2e\xdd\x84\x7a\x40\x9f\x62\x63\x63\x29\xac\xc4\x64\xef\x15\x4c\x8e\x37\xc4\x1f\xe0\xf7\xf0\x58\x99\x81\x29\x49\xfc\x85\x8e\x71\x7b\xb3\x74\xad\xd2\xa1\xfd\x57\xdd\xb5\x0f\xf1\x77\x4d\x66\xaf\xeb\xf6\xb3\x7b\x7a\x4b\x0a\xcb\x03\x86\xa2\xaf\xde\x82\x7a\xba\xf8\xef\xed\x4b\x4f\x4f\xa7\xaa\x2b\xf5\x2c\x6d\x55\x03\x37\x26\x26\x86\x16\x1a\x1a\x4a\xad\x90\xc9\xc3\x65\x65\xe5\xa1\x8e\x6d\x68\x25\x66\x31\xd9\x7e\x97\xe0\xc0\xa1\xf0\xf0\x70\xb7\xba\x5f\x9c\xa3\x48\x80\x58\x69\x4a\xfb\x21\x5b\xc7\x0b\x45\xe5\x0c\xe0\xaf\x24\x43\xcb\x36\x08\x37\x36\xa6\xae\x48\x5f\xa8\x2b\x6f\xe3\x0f\x45\x5f\xbd\x0d\x98\x66\x90\xf5\x14\xe9\x2b\x8c\xc2\x41\xc6\x17\xb7\x06\xe2\x3e\xfb\xa5\xba\x14\x25\x90\x75\x4a\xf3\x14\x11\xa4\xfe\xf5\xb2\xce\x7c\x93\x92\x92\xe2\x36\x0e\x81\x31\x28\xcf\x6e\x90\x2a\x96\x6f\xfe\x5e\xbe\x64\x1b\xae\x88\xd8\xf4\x5d\xb9\xa8\x5e\xe2\xef\xef\x3f\xa5\xcf\xa0\x5b\x0d\x92\xe7\x15\xf7\x70\x67\x73\x73\x9b\x78\xb8\x95\xfc\xdc\x50\xb8\x4a\x46\xde\xcb\xe1\x70\xbc\x06\xe2\x2e\xfe\x48\xcc\x3f\xfa\xe8\x44\x65\x89\x3a\xce\x5d\xfb\x98\x1d\xaf\x60\x0e\x83\xed\x83\xdc\x61\x6d\x6c\x0a\xc5\x44\x33\xbc\x3a\xb2\xde\x18\x34\x66\xee\x5d\x9b\x94\xc0\xf6\xe1\xae\xe0\x2f\xec\x12\x1c\xd8\x69\xca\xd8\x3f\x9c\x10\xc7\x9c\xe4\x11\xc6\xc2\x94\xf1\xf6\x2e\xb2\x6f\xed\xf9\xaf\x6c\x7c\x18\xb8\x4f\xf6\x15\x64\xc6\xe5\x72\xbd\x53\x53\x53\xbd\xa1\x2d\xb0\x35\xce\xf7\x29\xc5\xcd\xbc\x49\xfc\x8d\xfd\xfc\x86\xbc\xb4\x3a\xc2\xd5\x9a\xc2\x5c\xa8\xb4\xa8\x3c\xd8\x9c\xf6\xe7\xb3\xdd\xbc\xf7\xcf\x57\x48\xab\xc2\x5d\xdd\x03\x72\xb4\x70\x8e\x9d\x9a\xd4\xc3\xf4\x77\x8e\x66\x64\x64\xf8\x3c\x68\xdb\x60\x7f\x5a\x8a\xd6\x69\x1c\x70\xa8\xd9\xd9\xfe\x60\x76\x6c\xa9\xc8\x43\x4c\x2b\xfd\xda\x38\x69\x7f\xdb\x0b\xb6\x0d\xa7\xa5\xa5\x79\xcf\xe4\x73\x78\x42\x79\xe9\xc5\xc1\xfd\x09\xe7\x46\xfb\xe3\xcf\x7f\x23\xc9\xac\x70\xc9\x3f\x66\x8f\x01\x5b\x72\xb6\x18\xc9\x71\x80\xbc\x23\xf7\xf5\x3d\x12\x49\x61\xa0\xb3\x7e\xbb\x23\xc0\x88\xdc\xdc\xbc\x85\x55\x15\xaa\x30\xfb\x7a\x1d\xe1\x4f\x82\x8d\x03\x7f\xf4\x7e\xeb\xaa\x80\xef\xa6\xf4\xb7\x5f\x75\xf4\xbf\x7a\x38\xc7\x47\xeb\x15\xa6\x52\xa1\x50\xe8\xbb\x64\xc9\x12\x8a\xb3\x5e\x80\x8c\xc1\xf7\x12\x08\x04\x3e\xfa\xca\x76\x89\x85\xfb\xe1\xa5\xde\x15\xa7\xbe\x91\x16\x95\x06\x79\xb0\x8e\x3b\x8d\xe8\xf4\x28\x9a\x31\xe3\xcd\xcd\x53\xfd\xcf\x51\xdc\xc2\xfd\xf0\x6a\x6b\xe1\x86\x35\x75\xd5\x6d\xf9\x0a\x45\x65\x34\xd8\x3f\x79\x85\x9c\xae\xaf\x6e\x15\xb5\x14\xbd\x34\xd8\x9d\x7a\xf8\x92\x95\xfe\xd5\xa4\xff\x69\x12\xbe\x75\x00\xe2\x92\xd9\xb6\x8f\xd9\xd6\xa8\x29\xfa\x9c\x55\x0a\x88\x93\x5d\xfa\xde\xf4\x6b\x13\xe0\xeb\x0f\x45\x5d\xbb\xe3\xd8\x4f\x32\x01\x0e\x37\x8a\x36\x1a\xee\x13\x9f\xcf\x48\xe0\x3f\x08\x52\xb2\x03\x3b\x84\xbb\xd7\x0e\xc5\x5c\xfe\xc5\x93\xf8\x63\x28\xea\xea\x2d\x53\xfa\xfe\xad\x22\x9e\x24\xd8\xd5\x3c\x9f\x0b\x01\xae\xaf\x60\x72\x7c\x6a\x84\xdd\x45\x80\x5d\xbd\xec\xbf\x8e\x0c\xc4\x5f\xf8\x6e\x90\x71\xe9\xc7\x81\xb8\x8b\xdf\xf7\xae\x38\x75\xae\x2b\xfd\xdd\x57\x6b\x33\x07\x2b\xb8\x2b\xf8\xfe\xf6\x75\x83\x47\x42\x60\x47\x41\xd7\x96\x2f\x5f\x4e\x61\x30\x18\x54\xd0\x6b\x18\xab\x87\xc5\xeb\x6f\x4d\x38\x49\x37\x43\x70\x7c\x70\x3e\x7e\x17\x9b\x87\x4f\xf8\x8d\xe1\xe3\x82\xff\xc5\x6f\x0e\xe0\xf8\x4d\x1c\xbf\xf2\x1f\x38\x7e\xe5\x3f\x71\xfc\xca\x27\x38\x8e\x5f\xc0\xf1\xa4\x0b\x13\x03\x49\x17\xc6\x05\x49\x17\x6e\x26\xe2\x44\x82\x6b\xf8\x0e\xc7\x93\xe0\x9e\xff\xb4\x97\x81\xb2\xe3\x03\x38\x51\xd7\xc4\x82\x11\x1c\xc7\xe6\x11\x6d\x10\x6d\xd9\x89\x6e\xdf\x2b\x52\xdd\x7f\x9d\x82\xe2\x26\xff\x67\xb9\xf6\x68\xed\xca\xd3\x04\x04\x3a\x07\xb6\x15\xfc\x5d\xc0\x5a\xe7\xf5\xdd\x87\x9c\x1e\x88\xa0\xaf\xd1\xd1\xd1\x94\xcc\xcc\x4c\x5a\x79\x79\xb9\x6f\x6d\x6d\xed\x22\x9d\x4e\x17\x86\x10\x8a\xd6\xe9\x74\x0c\x9d\x4e\x17\x81\x10\x0a\xae\xa9\xa9\x09\x90\x48\x24\xde\x1c\x0e\x87\x0a\xf3\xec\x41\x6d\x9f\x03\xcd\x5a\x7f\xe6\xcd\x9b\x47\x59\xb6\x6c\x19\x45\x22\x91\x78\xe9\x74\xba\x50\xbd\xa6\x31\xbf\xb9\xf4\xf9\xd5\x46\xd1\x1b\x87\xcd\x69\x87\x2e\xf7\xb2\xff\x3a\xd6\xc7\xfc\xf7\x7f\xf4\x27\x7e\xf2\x73\x5f\xd2\xc7\x3f\x59\x38\xc7\xbe\xed\xca\x78\xfb\x6c\x9b\x78\xcb\x2e\x43\x65\x77\x1d\xd2\x21\x96\x52\xa9\x5c\xc8\xe5\x72\xa9\xbe\xbe\xbe\x0f\xaa\xb7\xb3\xd2\x1f\xe8\x37\xc8\x19\x69\xeb\x38\x2d\x45\x2f\x6d\xb4\xa4\x7c\x74\x9d\x88\xed\x23\xbe\xb6\xad\xb7\xda\x93\xe3\xb5\x63\x02\x9b\x32\x10\x77\xe1\x46\x67\xd6\x9b\x27\x0c\x55\x26\x8d\x56\xab\x0d\x16\x08\x04\x34\x3b\xce\x3d\x32\xfd\x01\x3d\x2e\x28\x28\xf0\x42\x5a\x3d\xb3\x4d\xbc\x65\xe7\x40\xdc\xc5\x1b\x9e\xd8\x1d\xdb\x9a\xb5\xeb\x6b\xb0\xdd\xdd\xa9\x87\x2f\x1b\xaa\xba\xb4\x6a\xb5\x3a\x30\x26\x26\x66\x2e\xfa\x7c\x5f\xfd\x01\x9f\x19\xf4\xb7\xb1\xa2\xaf\xb5\x8f\xf9\xef\x3f\x3a\xef\xfd\xce\x7c\xed\x90\xbb\xb9\x06\xdf\xa2\x33\x6b\xef\x51\x54\x5b\xcf\x02\x9d\x7a\x98\xfa\x13\x17\x17\x47\xd1\xe9\x50\x78\x47\xde\x6b\xfb\x09\x1f\xc6\x8d\x9e\x80\x5e\x80\xdd\xed\xe1\x1c\x3f\xd1\x95\xfe\xf6\x76\x63\xf6\x2e\xab\x31\x67\x67\x6f\x67\xd6\x9e\x35\x5d\xfc\xf7\x76\xf5\xb2\x4e\x9f\x1b\x8a\xfa\xf2\x16\xb9\x57\xe1\x2a\xf5\x70\x8e\x9f\x93\x4a\xa5\xde\x0f\x4b\x7f\x12\x12\x12\x28\x48\x5b\x17\x67\xe6\x1f\x3c\xe7\xca\x17\x22\x62\x0a\xc6\xdf\x7e\xec\xcc\xda\xbb\x46\x5f\x66\x66\xe6\xe5\xe6\x7b\x25\x25\x25\x51\x21\xce\x04\xff\x08\x12\xd8\xf0\xc8\xc8\x48\x0a\xe0\x8e\xb4\x50\xe6\xdf\x5c\xb2\x46\x6c\xe6\xbd\x0f\xb2\xb8\xed\xa4\x4b\x77\x9a\xca\x56\x49\xc2\xc2\xc2\x66\xab\x43\x2e\xf5\x07\xfa\x80\xb4\x7a\x7a\x77\xea\x07\x9f\x4f\xb6\x43\xe4\x93\x6b\x51\x3f\xb7\xe7\x6f\x6f\x95\x16\x96\xf9\x82\xcf\x41\xa5\x52\x3d\x19\x6b\x02\x6f\x81\x47\xb5\xcc\x10\x66\xe6\xbf\xb7\x8b\xdc\x23\x37\x8a\x76\xad\x49\x4b\x4b\x73\xde\x0b\xf6\xe4\x7a\x9a\xfe\x80\xed\xd1\x68\x34\x8b\x4d\x19\xfb\x8f\xad\x22\xc7\x3b\xf2\x9e\x9e\x58\x52\x8e\x1e\xa9\x29\xd7\x07\x03\x16\xcd\xd5\xee\x40\xfc\x98\x9c\x9c\x4c\x6d\x2c\x1b\xca\x32\xf3\xde\xdf\x55\x52\x5c\xea\xe3\xb0\x87\x48\x24\xf0\xc9\x60\x0c\xbd\xbd\xbd\x3d\xd6\x1f\xb0\x2b\x25\x25\x25\xde\xad\x85\x1b\xd6\x3a\xeb\x8c\x6d\x1f\x6f\xf7\x9a\x82\xfc\x02\xaf\x19\xce\x37\xcc\x8a\x9e\x7e\xfa\x69\x62\x8e\x39\x9f\x27\x8b\x8f\x8f\xa7\xd4\xd6\xd6\x2e\x46\x08\x31\xb5\x5a\x6d\x10\x9b\xcd\x76\xb7\xe6\x39\x65\x1c\xa0\x5c\x7d\x4d\x7b\xee\x50\xf4\xe5\x5f\x27\x75\x26\x82\x8c\xd9\x5e\xb3\x08\x85\x42\x2a\xd8\x2f\x17\xe5\x1f\xda\x35\xc8\x1c\xd5\xd6\x47\x9b\xd3\xfe\x7c\x7e\x30\xe6\x8b\x5f\xbb\x53\x3f\xb8\xa4\xd7\x34\x24\x38\xad\x1d\x4c\xd3\x1f\x90\x81\x4a\xa5\x0a\xec\xe6\xbd\x7f\xce\x51\x67\x20\x37\x09\xdf\xda\x2a\xca\x16\xd1\xec\x7d\x7f\xa4\x09\xe6\x7a\x7b\xc1\xb6\x35\x8e\xd8\xd4\x91\xf3\xfa\x56\x3e\x9f\x4f\x9d\x49\x7f\x58\x2c\x16\xb5\x41\xde\xa7\x74\xd6\x9b\x5e\xd6\xe9\xcf\xcb\xcb\x2a\x7c\xdd\xad\xc7\x3c\x6c\x62\x32\x99\x14\xa3\xe8\x8d\x75\x8e\xf6\xce\x24\x7c\x6b\x27\xf0\xe5\xe2\x76\xa2\x4f\xe0\x37\x56\x57\x57\x2f\xec\x4e\xfd\xe0\xbc\xd5\xa1\x9c\x95\xfe\xd5\x78\xbd\xa2\x8b\x03\x7a\xea\x5c\xe6\x51\x5d\x03\x46\x69\x2a\x1a\xc2\x06\xe2\x2f\x7c\x03\xb2\x1f\x88\xfd\x6c\x0c\xc9\xdb\xa2\x9d\xe2\xb7\x29\xfa\xb3\x74\xe9\x52\x4a\x7d\x4d\x5b\x3a\xd8\x28\xab\x83\xde\x74\x65\xbc\xbd\x4b\x20\x10\xb8\x1a\xb7\x47\x9a\x9e\x7a\xea\x29\x8a\x38\xaf\xd0\x47\x53\xdc\xc6\x90\xe4\x4b\x7d\xc9\xb3\x19\xee\xf4\x27\x3d\x3d\x9d\xd6\x9e\xff\xca\x66\x6b\xc4\x94\xb5\x85\x3b\x75\x55\x1d\x4c\x07\x1f\xf1\x91\x92\xbf\xbf\x3f\x25\x2b\x2b\x8b\x26\x93\xc9\x7c\x20\x27\xf7\x1a\x6c\x67\x73\xb8\x54\xb1\x58\xec\x05\x98\xeb\x84\x55\xc4\x75\x65\x65\xa5\x7f\x4f\xf2\x89\xab\x36\x8c\xb7\xe9\x8f\x85\x73\x6c\x04\x7c\x36\xa7\xf1\x9a\xf1\x1a\x70\x15\xec\xb6\x48\x24\xf2\xca\xcb\xcb\xf3\x02\x9b\x04\x36\xf8\x7e\x65\x89\x73\x3f\x4a\xe5\xc2\x26\xd9\x90\xc9\x28\xda\x75\xb8\xa9\x6c\x95\x45\xa5\x52\x05\x2c\x5a\xb4\x88\xf8\xbe\x41\x61\x41\x6d\xe2\x2d\x3b\x0c\xd5\x9d\x8a\xd2\xd2\x52\x1f\x87\xb5\x22\x62\xfd\x1b\x69\xeb\x22\x86\xa2\xbe\xbc\x4d\xda\x28\xc8\xdb\xc4\xc3\x66\x88\x4d\x3c\x1d\x73\xb0\xfd\x80\x5f\x5a\xa5\xa1\x54\x2d\x36\x6d\x56\xe5\x76\xef\xac\x2d\x6b\x33\xe9\x74\x88\x21\x12\x89\x68\xce\xf6\xc9\x31\x01\xcf\x4d\x65\x56\x04\x3e\x29\xd9\x87\xe6\x92\x17\xda\x75\x3a\x1d\xad\xb9\xf4\xf9\x66\x2b\x7d\x94\xf0\xbd\x86\xa2\xaf\x8e\x1b\x2a\xcd\x45\x51\x51\x51\x93\xfa\xb3\x64\xc9\x12\x4a\x83\xc2\x22\xb6\x4e\x9e\x99\xb0\xe1\xbd\xa1\xaa\x8b\xeb\xe9\x7e\x11\x60\xb6\x56\xab\x0b\xad\xc9\xe8\x3b\x28\x0f\xd9\x3a\x71\x6f\x1d\x7d\x1b\x5e\x19\xb3\xfe\x07\x6d\x65\xa3\x0c\x78\x20\xef\x07\x2c\x0b\x0d\x0d\xa5\xd8\xcf\xee\x60\x29\x29\x29\xd4\xce\xac\x37\x77\x38\x62\x4e\x17\xff\xbd\x43\x08\x21\x1f\x33\xff\xe0\x11\xc7\xef\x8d\xd9\xbb\xb6\xc2\xfd\xa4\xfc\x41\xc6\x2d\xc5\xeb\x9a\x49\x9f\xd6\x6a\x5f\xa7\xd2\x6a\xd0\x22\x87\x23\xa9\x33\xea\x40\x49\x49\x89\x8f\x2a\xab\x77\x67\xc5\x92\x6d\xc4\xb9\x2c\xf2\x7c\x16\x99\x2b\x22\x36\xfd\xac\xd3\xd4\x31\x21\x76\x84\xb8\x18\xb0\x0e\x69\xeb\xb8\x48\xab\xe7\x80\xee\xb2\x58\x2c\x4a\x8b\xf4\xc5\x0a\xab\x83\x9f\xd2\xb6\xf2\x65\x43\x69\x69\x29\xb5\x3d\xff\x15\xcb\xbd\xbe\x7d\x8d\xb7\x48\x5f\x54\x00\xef\x64\xfb\x49\x49\x49\x94\xf6\x82\x6d\xab\x1d\xcb\xf6\x27\x9c\xfb\x5e\x2e\x97\xfb\x7b\xa2\x37\x80\x6b\x3a\x4d\x5d\xb4\x7c\xe9\xf0\xaf\xb6\x33\x65\x0e\x69\xc9\xbd\x5c\x95\xdd\xb3\x19\x70\xa2\xa2\xa2\xc2\xb7\x4d\xbc\x65\xfb\x50\xf4\x95\xdb\xf6\xfd\xf4\x75\xa5\xa5\xa5\xde\x3c\x1e\x8f\xda\x5a\xb8\x41\x61\xe6\x1f\xdc\xd1\xb6\x72\xb3\x32\x53\x98\x49\x03\x3d\x17\x17\x48\xbc\x8d\xa2\x5d\xfd\x3d\xc9\x27\x8e\xb5\x89\xb7\xa0\xf4\xf4\x74\x47\x3c\xc4\xc0\x1f\xec\xc8\xdd\xb1\xd1\x51\x7f\x7a\x59\xa7\x47\xe5\x72\xb9\xdb\x73\xf8\x8e\x04\xf3\xb3\xb6\xac\x55\xea\x6a\xff\x87\x48\x41\xb6\xbc\x9a\xb5\x66\x44\xa7\xd3\x79\xd7\xa9\x9b\xe3\xac\xf4\xaf\xee\x90\xfa\x30\x14\x7d\xe5\x57\x7d\xad\x21\xdc\xdb\xdb\x9b\x58\x6b\x06\xdd\x0e\x08\x08\x98\x1c\x63\xf0\xc9\x40\xde\x0c\x06\x83\xe2\x62\xdd\x92\x42\xf6\xdf\x31\x26\x72\xd1\x7f\xb7\xfa\x03\x75\x6a\x4a\xdb\x8a\x1c\xcf\x0c\x92\xd7\x8e\x7a\x54\xc5\x7c\x61\x44\x2e\x97\x7b\xe9\x95\x2d\x74\xe2\x7c\xc3\xbd\xf8\x6b\x5c\xa7\x32\x04\xc3\x5c\x80\xb1\x41\x08\x05\x55\x57\x57\xfb\xd3\xe9\x74\x42\xc6\x80\xfd\xf9\xf9\xf9\x5e\x55\x55\x55\xfe\x39\x39\x39\x34\xe7\xf3\x4b\xe0\xb3\xb5\x17\x6c\xb3\xda\x7c\x35\x88\xa9\xae\xe3\xfd\x89\x9f\x8c\x01\x6e\x79\xa2\x3f\x30\x17\x35\x4a\x14\x26\x0f\xd9\x7a\x5b\x0e\x7d\x25\xfa\x3b\x3d\xaf\xc9\xe8\x5f\x0f\xb2\x12\x0a\x85\x34\x93\xf0\xad\xcd\xc0\x03\x24\xa3\x68\x97\xb5\xa8\xa8\x88\x5a\xab\xa9\x5d\xdc\x5e\xb0\x6d\xa7\x85\x73\xfc\x1b\xa3\x68\xd7\x21\xc0\x44\xf0\x4d\x6b\x6b\x6b\x17\xb5\x14\xaf\x5b\x6b\x12\xee\x3b\xd9\x54\xb6\xca\x0c\x7c\x38\x9e\x63\x83\x58\xa5\xa5\xe8\x25\x03\x81\xfb\x76\xdf\x67\x28\xfa\xf2\x2d\x9d\x16\x85\x7a\x79\x79\x76\x14\x1d\x7c\x2b\x25\x6f\xe8\x55\x52\xfe\x93\x89\x1c\x87\xa5\xc3\x37\x54\x0a\x14\x0e\xbe\x01\xe0\x0d\x27\x99\x43\xad\x2e\xaa\x0f\xaf\x2a\xd2\x87\x32\x99\x4c\x2a\xd8\xa5\x96\xa2\x97\x4c\xe4\x39\x34\x62\xbf\x3c\xef\xd5\x61\x9d\x4e\xe7\xd5\x5a\xb8\xa1\xff\xde\xf9\xb4\xd1\x89\xc6\xf2\x01\xa5\x43\xac\x4f\x01\xdf\xa6\x41\xde\x93\x35\x25\xa6\x8e\xfc\x1a\xaf\xaf\x36\x0a\x1d\x6c\xcf\x8c\xf8\x03\xf1\x88\xb4\xa8\xd4\xb7\x7a\xc5\x9a\x77\x08\x99\x3b\xe8\x8f\x62\xd9\xcb\x3f\x69\x4a\xda\xb2\x20\x4e\x73\x57\x0f\xf4\xbf\x33\x6b\xef\x76\xc7\x3e\x98\xd3\xfe\x7c\x98\xc0\xcf\xb4\x3f\x1f\x71\xfc\xde\x98\xb3\x73\x23\xf0\x4c\xd6\x01\xf2\xd0\xaa\x51\x90\x35\xea\xda\x6d\x52\x7f\x20\xb5\x16\x6e\xec\xb7\xfb\x7c\x1e\xd9\x2f\xe0\x81\xcf\xe7\xd3\x54\xc5\x2d\xfc\x1a\xc1\xc0\x6a\x25\x6f\x08\x6c\x18\x2a\x2b\x96\x07\xd8\xe5\xe0\x36\x11\x32\x2c\xef\x03\xff\xeb\xb6\xd5\x86\x81\x13\xcd\xd2\xb5\xb2\xfc\xfc\x7c\x4a\xab\x64\x73\x1d\xb1\x37\x11\x61\x97\xbf\x6c\x50\x64\x3f\x6f\x32\xc9\xff\xca\x95\x2b\xbd\x7b\xd8\x27\x2f\x4e\xae\x7d\xd8\xce\xb4\x9e\x03\x6c\x9e\xed\x5a\x1f\xf8\x27\x60\x13\xc1\x27\xf4\xf4\x99\x24\xcc\xb6\xd7\x47\xd1\xcb\xba\x98\x1d\xb9\x3b\x8c\x0d\x65\x03\x7c\x98\x2b\xd0\x36\xf8\x20\x2d\x45\xeb\x65\xa6\x8c\xb7\x37\x37\x95\xac\xce\x75\x90\xfd\xe4\x18\xc2\x1c\xee\xc8\x7b\xcd\x7a\x6f\xcd\xc6\x76\xa6\xbf\x4e\xd5\xc2\xb7\xaf\x09\x78\xe4\xff\x3c\xe8\x35\x95\x4a\x25\x30\x14\xe6\x1d\xe0\x11\xf8\x15\x80\x9d\xe0\x07\xc0\x18\xda\xcf\x38\x62\xce\xfe\x33\x7c\x5f\x57\xdd\x1e\x47\x9c\x89\xb5\xeb\x0f\xf0\x62\xcc\xde\xbd\x1f\xfc\x41\xfb\x19\xd4\xdf\x2c\x65\x67\x67\xd3\x90\xb6\x8e\x69\xa8\x32\xa9\x90\xb6\x9e\x0d\x7e\xa4\x9b\x3e\x4c\x52\x6e\x6e\xae\x57\x37\xf7\xc8\xb1\x55\x93\x38\x64\xf3\x97\xea\x95\xed\xf9\x10\x9b\x79\xa8\x06\x0f\x4c\x80\x87\x75\xaa\x56\x7e\x7f\xc2\xb9\x9f\x56\xd9\xd6\x4b\x7f\xa9\xaf\x36\xe6\xdb\x7d\x49\x67\x9a\x1c\x07\xb0\x13\x8d\x15\x7d\x59\x36\xdb\x72\x7d\xf2\xec\xab\x25\xe5\xe8\x65\xad\x56\x17\xe6\x29\x16\x3d\xe8\x35\xf8\xfa\xc6\x9c\x9d\xc3\x8e\x98\x63\x12\xee\x7b\x93\xc7\xe3\xd1\x5c\xf5\xdb\x21\xa7\xe4\xe6\xe6\xd2\xba\x79\x87\x0f\x91\xfa\x73\x6f\xed\x61\xc7\xbe\x9a\x9a\x9a\x40\xbb\x5d\x7f\xa4\x09\xe4\xdc\x9e\xbf\xdd\x42\xb4\x6d\xef\x83\x31\x67\xe7\x5a\x98\x0b\x33\xe9\x0f\x10\xc4\x5a\xba\xca\x66\xfa\x50\xcc\xe5\x1b\xab\x26\x6d\x09\x81\x5b\x78\xab\x64\xd3\x30\xf0\x00\x3e\xa4\x8b\x71\x7c\x68\x04\xf6\x5c\x26\x95\xfb\x77\xa7\x7e\xf0\xce\x50\xd4\x97\xbf\x58\x52\x3e\x3a\x5c\x29\x53\x05\xba\x79\xe6\x70\xda\x38\x80\x6d\x6b\x2d\x5a\xaf\xb1\xda\xf5\x87\xd4\x25\xe0\xa1\xbd\x60\xdb\x2e\xad\x56\x4b\xd8\x4c\xbb\x6f\x3d\x67\x3d\x01\x59\x81\x5f\xa3\x56\xab\xfd\x9d\xce\xe6\x10\x6b\x39\x80\x9f\x30\x8f\xd9\x6c\x36\xd5\xe9\xdc\xbb\xcb\x7e\x3b\xa6\xcc\xcc\x4c\x9a\x29\xf3\x4f\x0e\x7b\xed\xf7\xec\x72\x97\xe0\xbd\x73\x7a\x4d\x63\x56\x59\x59\x99\x8f\x7d\x4d\x69\x56\x09\xfa\xb6\x62\xc5\x0a\xaa\x46\xa3\x59\xdc\x58\xd1\xdf\x6e\xcc\xde\xfd\x8e\x46\xa3\x09\xb2\xaf\x71\xcc\x36\xb9\x24\x88\xf5\x8a\x0a\x8b\xbd\xcd\x69\x87\xf6\x4f\x59\xbf\xb5\xdb\xe7\x81\xb8\x8b\x37\x5a\x0b\x37\x0c\x23\x9d\x9e\x09\x3e\x23\xc8\x0a\xe2\x12\x77\x8f\xe0\x01\x9e\x03\x8e\x83\xef\xa6\xd1\x68\x16\xd5\xa9\x5a\xa5\xa6\x8c\xfd\x67\x20\x2e\xb4\xc7\x2a\x9b\xc1\xdf\xbd\xdf\x73\xa9\x2e\xc8\xa5\x3d\xc0\xec\x3e\x4d\x71\x91\xd4\xbb\x4b\x70\x60\xd7\x3d\x5d\x72\xd8\x93\x88\x20\xe2\x9c\x9f\xdb\xf3\x5f\xd9\x5f\xaf\x6c\xaf\x42\x3a\xc4\x00\x5f\x51\x26\x93\xf9\x82\x3d\x87\xf8\xbd\xa8\xa8\xc8\x1b\x6c\xb8\x4e\xa7\x0b\x46\x3a\x3d\xb7\xb1\x7c\xc0\xdc\x95\xfe\xee\xb9\xa1\xa8\x2f\xef\x38\xee\x65\xc0\xe7\x06\x79\x8f\x26\x23\x23\xe3\xa1\xee\x5f\xc0\x38\xe4\xe4\xe4\xd2\x3a\xf2\x5e\x33\x81\x9f\xbe\x6a\x8a\x3e\xdd\xbb\x86\xb9\xd1\x9f\xf8\xc9\xcf\x66\xfe\xc1\xcf\x8d\x39\x3b\x0f\xb7\x89\xb7\xec\x69\x5b\xf9\xf2\xce\xf6\xfc\xed\xfb\x3a\xb3\xf6\x9e\xb4\xa4\x1c\xbd\x3e\xc8\xb8\xf4\xeb\xd4\xb5\xbd\xa9\xd7\x3d\xec\x93\x67\x8b\x8a\x8a\x66\x7c\x86\xcd\x53\xfd\x71\x26\xc0\x2e\x83\xac\x87\xd7\xc7\x3c\x7b\xf5\x1e\xb6\x7e\x8d\xdf\xff\xda\x31\x77\x7d\x0d\xf6\xc6\xcc\x3f\xb8\xa7\xb2\x4c\xbd\xc8\x31\xee\x7a\x50\xfd\x71\xbe\x06\x1f\x44\x22\x2e\xf4\x6e\x2f\xd8\x6a\x18\x88\xfd\x6c\xcc\xdd\x58\xac\x72\x9a\xf3\xee\xf6\xbf\xec\x67\xbf\xcf\x18\xca\xfa\xf8\x60\xb3\x9c\x9e\x05\x75\xd9\x87\xfb\xf4\xdb\xa3\x04\x98\x53\xb4\x52\xea\xd3\x52\xb8\x41\xd1\xc3\x39\x7e\xcc\xb6\x17\xe4\x7e\x5f\xcb\x79\xff\x74\x30\xe6\x8b\x9f\xba\x04\x07\x76\xd4\x95\x5a\x38\xe0\x6f\xdb\xd7\xf7\xe6\x9a\xe6\x4c\xe0\x1b\x43\xdc\x51\x5e\xac\x0c\x6c\x91\xbe\x28\xe9\xcc\xde\xb3\xba\x3b\xf5\x83\x03\xbd\xac\x33\xe7\xfb\x13\x3e\x1d\x1d\x88\xbf\xf0\x4d\x7f\xe2\x27\x57\x41\xc6\x66\xfe\xc1\x5d\x1d\x79\xaf\xb5\x1b\xca\xfa\xb8\xe2\x3c\x89\x37\xd8\x98\x39\x60\x8d\x2b\xf2\x58\x7f\x66\xba\x7e\xfc\xf1\xc7\x09\x9f\x9f\xc1\x60\x10\x3c\x41\x3c\x09\x58\x09\x7a\x01\xbe\x5f\x64\x64\x24\xe1\x5f\x39\x01\xec\xc3\xba\xfe\x67\xa6\x07\xd1\xbd\xdf\x3d\xd9\x4e\x0b\x91\xe7\x95\x1c\xf3\x11\x3f\x22\xbf\x8b\xcd\x23\xf2\x71\x0c\x1b\x80\xfc\x26\x86\x85\x40\x3e\x32\x0f\xf3\x83\x7c\x50\x30\x4e\x7c\x9e\x87\xdf\x85\xfc\xee\x7c\x1c\xff\x18\xc7\xb0\x89\x05\xb6\x7a\x26\x42\x70\xfc\xae\x00\xc3\xc6\x43\x70\x7c\x22\x04\xc3\xc6\x05\xb6\xfc\xe6\x80\xed\x7b\xc8\xe1\xbe\x31\xfc\x5e\xfe\x7f\xff\x85\x61\xff\x81\x4f\xe0\xff\x7d\x01\xf2\x9b\x82\xb1\x55\x90\x8f\x85\xc0\xe7\x7f\xc7\xc7\x7c\x52\xff\xcb\x96\x0b\xf0\xa9\x79\xe2\x15\xdb\x7d\x37\xa7\x94\xb3\xd5\x43\xd4\xff\x5f\xf7\xda\x21\xdb\x25\xfb\x41\xf6\x0b\xfa\x79\x37\x04\xc3\x26\xfc\x6c\xdf\xdf\xb5\xf3\x41\xf2\x85\x63\x36\x3e\x27\xf9\x1e\xc3\x6c\x72\x20\xe5\x32\x61\x97\x13\x6e\x97\x1b\x3e\x16\xe2\x5a\xbe\xb6\x9c\x6e\x7f\x96\x6c\xf0\xff\xa1\xe7\xc9\xfe\x45\xff\x9c\x44\xa3\xd1\x30\xf0\xa1\x21\x16\x49\x4c\x4c\x24\xd6\xe5\x05\x02\x01\x91\x58\x2c\x16\xf1\x5d\x44\x44\x04\xb1\xfe\x0f\xf7\xfe\xb3\xd3\xfc\xf9\xf3\x89\x35\x1e\x1e\x8f\x47\x91\xc9\x64\x34\x84\x90\x2f\x42\x28\x10\x21\x14\x86\x10\x62\x20\x84\x98\x08\x21\x8e\x3d\xb1\xec\xdf\xc1\x6f\x8b\xe0\x5e\x28\xc3\xe7\xf3\x27\xf7\x70\xfe\x59\x08\x7c\x54\x18\x53\xb5\x5a\xed\x8d\x10\x5a\x8c\x10\x62\xeb\x6b\x0d\xb2\xc6\xf2\x01\x6b\x9b\x78\xcb\x3b\xa6\xcc\x7d\x67\xbb\x53\x0f\x5f\xeb\x49\x3e\xf1\x7d\x2f\xeb\xf4\x0f\xbd\xac\xd3\x3f\xf6\x24\xff\xe5\xfb\xee\xd4\x0f\x46\x4d\xc2\xb7\xce\xb5\x17\x6c\x3b\xd0\x24\x1b\x5a\xa3\xd7\x34\x54\x40\x59\x84\x50\x10\xd4\x25\x10\x08\x88\x18\xec\xf7\xe6\xcf\x1d\x3d\xfb\xec\xb3\x14\xb1\x58\x4c\x45\x08\x2d\x84\xb1\xad\x57\x76\x18\xda\xf3\x5e\x39\xd4\xc3\xfe\xcb\xf7\xd6\x28\xdb\xf3\x79\xb3\x49\x56\xfa\xb5\x89\x5e\xf6\x5f\xc7\x3a\xf2\x5e\x3b\x0c\x75\xd9\x75\x24\x00\xda\x78\x90\xf3\xe1\x0f\x9b\x7c\x7c\x7c\x28\x39\x39\x39\xc0\x77\x00\xd2\x21\x7e\x73\xe9\xf3\xeb\x2d\x9c\x8f\xbe\x71\x7c\xa6\xf3\x41\x13\xc4\x7f\x3d\x9c\xe3\xdf\x36\x97\xac\xd9\x08\x6d\x40\x5b\x79\x79\x79\xd4\xdf\x6a\xef\xdd\x1d\xc5\xc5\xc5\x51\x34\x1a\x8d\x0f\xd2\x21\x66\x53\xd9\xaa\xb5\xbd\xac\x33\x3f\xb8\x3b\xcb\xf6\x70\xe4\xf0\x35\xde\x97\xf4\xf1\x8f\xcd\xa5\xab\xd7\x21\x1d\x62\x41\xdb\xd0\x87\xdf\x9a\xef\x05\x0b\x16\x60\x20\x7f\x98\xdf\xf5\x35\x6d\x9a\xee\xd4\x0f\xae\x3e\x4a\xbe\x5d\xc9\xa1\x9b\x7b\xe4\x5a\xbd\xb2\x5d\x03\x7d\x10\x0a\x85\xbf\x99\x0c\xfc\xfc\xfc\x28\xe5\xe5\xe5\x34\xa4\x43\x8c\x96\xe2\x75\x5b\x3d\x7d\xc6\xdb\xb9\xff\xc4\x73\xd8\xf4\xaf\x6e\x12\x29\x72\xf4\xf6\x5c\xe4\x37\x14\x73\xf9\x76\x6b\xe1\x86\x35\x60\x2f\x9e\x78\xe2\x89\x47\xce\x3b\xc4\x68\x4a\xa5\xd2\x1b\xe9\xf4\xdc\xce\xcc\x3f\x9d\xf4\xb4\xcf\x43\xd1\x57\x7e\xb6\x70\x3f\x3c\xd8\x91\xf7\x9a\xb1\xa9\x74\xb5\xa8\xbe\xba\x33\x5c\xaf\x69\x5c\x88\x74\x7a\x98\x3b\x3e\xa8\xb6\xde\xb7\xae\xa6\x2d\xa8\xb1\x7c\x80\xdb\x26\xde\x82\xcc\xfc\x83\x3b\x07\x62\x3f\xff\xce\x93\xfa\xcd\xfc\x83\x6f\x2a\x95\x4a\xaf\x47\x6d\x23\x9f\x7c\xf2\x49\xc2\xa6\xe9\x6b\x0d\x59\x16\xee\x87\x57\x3d\xc0\xac\x3b\x96\x94\xa3\x87\x5b\xa4\x2f\x16\xe9\x34\x75\xfe\x80\xdb\xe0\xf3\x80\x3d\xf7\xf3\xf3\xc3\xec\x67\x42\x09\x9a\x37\x6f\x1e\xe0\x28\xf1\x3c\x14\xc4\xc8\x22\x91\x88\xaa\x56\x69\xbc\x41\x1e\x5d\x82\x77\x5f\x1d\x8a\xfa\xf2\xa6\xab\x36\xfa\x13\x3f\x19\xd5\xd7\x36\x2c\xb6\x9f\xd5\x7c\x64\x04\xf1\x7b\x55\x55\x95\x17\xaa\xad\x4f\xef\x49\x3e\x71\xfd\x3e\xba\x3d\xd1\x9d\xfa\xc1\x3b\x86\x4a\x73\x1c\xf8\x30\xf6\xb5\x88\x59\xb7\x09\xe3\xb9\x74\xe9\x52\xc2\xa6\xd6\xa9\x5a\x82\x3a\x33\xff\xb4\xce\x4a\xbf\x36\x39\xd7\x86\xa2\xbe\xbc\xd5\x50\xd9\xcd\x05\xff\xea\x91\x30\x6d\x27\x18\x9b\xe2\xe2\x62\x2a\xd2\xe9\x99\xdd\xa9\x87\x3f\x9f\x89\xf7\xfe\xf8\xf3\xdf\x34\x95\x59\x45\x80\x0f\xb3\x7d\x87\xc1\x4c\x04\x7e\x8f\x44\x22\xa1\x1a\xaa\x4c\x71\x3d\xec\x93\xa7\xc8\xf3\x2f\x52\xa9\x94\xf6\xa8\xf5\x3e\x39\x39\x99\x02\x7e\xa9\x51\xb4\xeb\xd0\x4c\x78\x66\xe6\xbd\xbf\x4f\xa7\x36\x04\xc2\xfd\x8f\xaa\x4f\x91\x91\x91\x14\x95\x52\xed\xdd\x5a\xb4\x3e\x1f\xf4\xd1\x95\xfd\x87\xf1\x82\x18\x23\x23\x23\x83\x2a\x14\x0a\xa9\x51\x51\x51\x73\xee\x0f\xe0\x1d\x42\xc8\xbf\xa9\x74\x75\x3f\x71\xf6\xcb\x8d\xbe\x1b\x45\x6f\x0c\xd6\xd4\xa8\xbc\x1f\xf5\xde\x13\x66\x9b\x8b\x44\x5c\xe1\x2a\x46\x02\x4c\x01\x3d\x01\x9f\x19\x21\xc4\x43\x88\xf0\x95\x82\x4b\x4b\x4b\x69\xae\xde\x65\x35\x13\x81\x1c\x61\xfe\xea\xd5\x4d\xa2\x81\xb8\xcf\x5c\x3e\xcf\x41\x3c\xef\x9a\xff\x8a\x09\xc6\xe2\x51\x3e\xbf\xe7\x29\x01\x16\x20\x1d\x8a\x68\xcf\xdf\xbe\x6f\x20\xfe\xfc\x2f\x03\x71\x17\x6e\x74\xe4\xbc\x7e\x10\xe9\xf4\x8c\xac\xac\xac\x59\xed\x31\x03\x6e\x81\xec\x4c\x19\x6f\x9f\x74\xc7\xbb\x31\x7b\xf7\x9a\x3f\x0a\xef\x30\x5e\x60\x9f\x5a\x0b\x37\xae\x76\xde\x07\x69\x2f\xd8\xb6\x55\xab\xd5\xfa\x7a\x1a\x57\xc3\x7c\x01\xbe\x1a\x14\xdd\x1a\xe2\x6c\xa3\x0b\xfe\xbb\x53\x3f\x38\xa4\xd1\xd4\xfa\xce\x61\x4f\xe2\x91\x10\xd8\x4f\x98\xab\x16\xee\x87\x23\xce\x7d\xed\x65\x9d\xbe\x06\x31\xc3\x93\x4f\x3e\xe9\x51\x5d\x60\x83\x11\x42\xa1\xdd\xdc\x23\x2e\xf1\x7e\x20\xee\xe2\x98\x5e\xdd\x14\x6a\x3f\xe7\xf9\x87\x21\x18\x7f\x33\xff\xcf\x07\x9c\xfb\xdb\xc3\x39\x7e\x46\xab\xd5\xfa\x78\x3a\xfe\x30\xef\x0d\x95\xe6\x69\x67\xe5\x49\xbd\x6f\x2e\x79\x41\x01\x31\xdf\x23\x67\x68\x96\xc4\x66\xb3\x29\x0d\x8a\x1e\xee\x50\xd4\xd5\x49\x7f\x09\x7c\x86\x26\xd9\x50\x2e\x9f\xcf\xf7\x68\xac\x88\xe7\x23\x10\x0a\xec\x4a\x7f\xfb\x98\xab\xb1\xb7\xa4\x7c\x74\x12\xe2\xae\xdf\x3b\xf6\x74\x45\x80\x01\x60\xf3\x0c\x95\x5d\xd1\x9d\x99\x6f\xae\x36\x09\xf7\xad\x6d\x90\xf7\x30\xf3\xf3\xf3\xa9\x8e\xfe\xe6\x4c\x04\x72\xd2\xd7\x1a\xd8\x43\x31\x97\x6f\xb9\xb2\x75\x0d\xf2\x3e\x51\x4a\x4a\xca\x1f\x8e\x77\xb0\x8b\x90\x30\xfb\x3b\x9d\x40\x17\x20\x05\x07\x07\xcf\xaa\xaf\x0a\x85\xc2\xab\x45\xba\xd6\xec\x6a\xec\x7b\xd8\x7f\x39\x07\x38\xea\x70\x4e\xeb\x77\xa7\xa0\xa0\x20\xc7\xf5\x45\x7f\xb8\x76\x7c\x96\x07\x7c\x47\x88\xd5\x35\x1a\x8d\x37\xe0\x03\xd8\x41\x77\xfd\x07\x3b\x86\x10\x5a\xd8\x25\x78\xf7\x84\x2b\xfe\x5b\x0b\x37\x34\x42\x5d\x0f\xda\x67\x98\x63\x2c\x16\x8b\x22\x10\x08\xa8\x90\xe0\x7a\x2e\xef\x81\x03\xde\x61\x3c\xf4\xb5\x86\xdc\x66\xe9\x0b\x1b\x5b\xa4\x2f\x6e\xd6\x6b\x1a\xc4\xc0\x03\xf8\xdf\xe4\xef\x48\xa7\xe7\x35\x28\x2c\x46\x43\x55\x57\x33\xd2\x21\xa6\x3b\xdf\x11\xf0\x1c\xe9\x50\x38\xf9\x5e\xa5\x29\x31\x6c\xd4\x97\xbf\xea\x35\x0d\x11\x33\xbd\xe7\xe6\x7e\x04\xb6\x12\x7c\x76\xfb\x3a\x70\x1c\x42\x28\xdd\xee\xa3\xc1\x75\x00\xc4\x19\xae\xde\x8d\xee\x8e\xc0\xaf\xab\xaf\x69\x93\xf4\x27\x7c\xfa\x8f\x7b\xb6\xe9\xb3\x1b\xf5\xd5\x9d\x15\x10\x13\x57\x55\x55\xd1\xea\x6a\xda\x8a\xfa\x92\x3e\xfe\x81\x7c\xd7\xa5\x85\xfb\xe1\x65\xa4\xad\x67\x43\x8c\xe9\x5c\x1f\x97\xcb\xa5\xd4\xd5\xb4\xa6\xbb\xc2\xfd\x9e\xe4\xe3\xe7\x40\xc7\xc8\x39\x36\x5b\x82\xf1\x80\xb1\xd0\x69\x11\x5f\x5d\xd0\xb5\xb3\x8a\xf9\xc2\x37\x8a\x88\x4d\x37\x14\x91\x9b\x7e\xa9\x4e\x7a\xe1\xba\x7a\xa5\x69\xbb\x4e\x87\x78\x6a\xb5\xda\xc7\x13\x5d\x80\x98\x12\xfa\x63\xca\x78\x7b\x5a\x5c\x62\xe6\xbd\x7f\x86\x58\x8f\x44\x28\xc0\x9c\x76\xe8\x8c\xf3\xef\x1d\x79\xaf\x6e\x07\x7b\xe8\x1c\x17\x40\xac\xd9\x54\xb6\xda\xe0\x4a\xf7\x8d\xa2\x37\x86\x21\xae\x9b\x0b\xef\x30\xaf\x80\x2f\xad\xd2\x20\xab\x64\xbc\xf4\xbd\xbb\xb3\xf8\x55\xf1\xeb\xbe\xd5\xa9\xea\x8b\x6a\x6a\x6a\xbc\x1d\xe7\x28\xf4\x13\x70\x2c\x29\x29\x89\xd8\x23\x01\x3b\x4e\xf2\x4f\xbe\x0f\x77\xea\xba\xc0\xb9\xef\xec\xfc\x07\x0e\xc4\x9f\x1f\x73\x61\xc3\xce\x42\x59\xe7\xb8\x5c\x2e\x97\x7b\xb5\x15\x6c\x5d\xe7\x8a\xff\x16\xe9\x8b\x75\xae\x74\xc6\x13\x82\x72\xba\x5a\x3d\xbb\x32\x66\xfd\x98\xdb\xe7\x10\x48\x19\xc4\xae\xfb\x56\xa7\x45\x4c\xfb\x73\x61\xf7\xd6\xdb\x6c\x7b\x09\xd1\xe0\x97\x81\x7c\x40\x9f\x00\xeb\x8c\xd9\xbb\xa7\xf5\xb7\x4b\xf0\xde\x3e\xb5\x5a\xed\x05\x98\xd7\x9d\xfa\xc1\x91\x69\x63\x99\xbd\x7b\x1d\x94\x75\xee\xa7\x56\xab\xf5\xee\xcc\xda\xb3\xc7\x15\xff\x0d\x95\xdd\xb9\x10\xdb\xce\x96\x77\x90\x31\xe8\xbd\x4a\x64\xd9\x7e\x3f\xde\x27\xdf\xcb\x95\x67\x5e\x0f\x3e\x06\x94\x95\xcb\xe5\x34\xa4\xad\xe7\x75\xe4\xbd\x76\xc0\xc2\x3d\x7a\xdd\x24\xdc\x77\xaa\xae\xa6\x55\x06\x75\x26\x26\x26\x52\x74\xea\xfa\x40\x0b\xe7\xd8\x61\xfb\xf3\x02\x78\x2f\xfb\xe4\xc9\x3a\x55\x4b\x10\xb9\xcf\x66\xa8\x32\xc5\x0d\xc4\x5d\xfc\x96\x8c\x05\x7a\xd9\x7f\x3d\xa5\xd7\x34\x04\xba\xb2\x8b\x08\x21\x9f\xae\xf4\x77\x0f\xbb\xf2\xf9\xea\x54\x2d\x2c\xd0\xbf\xd9\xf2\x0f\xb6\x08\xe9\x50\x50\x65\xcc\xfa\x6f\x3d\xe5\xbf\x2a\x6e\x1d\xf8\xeb\x8b\xf3\xf2\xf2\xa0\x6c\x70\x37\xef\xf0\xf9\x29\xfe\x77\xfc\xf9\x7f\xe8\x35\x0d\x5c\x88\xf1\x81\x0f\xd0\x8f\xfa\xea\xce\x60\x43\xb5\x29\x54\xa1\xa8\xa4\x39\x62\x34\xf4\x59\x5b\x53\xe7\xdf\x5c\xf2\x82\xa8\x49\x66\xe5\x56\x55\x56\x7b\xbb\x5b\x2f\x83\x39\x61\xe6\x1f\x9c\xe6\xf7\x59\x23\x47\xef\xe8\x35\x0d\x71\x73\xe1\x1f\xe6\xab\x4e\x8b\x22\x88\xe7\x3f\x3c\xe4\x5f\x1e\x36\x7c\x43\xa7\x23\xf6\x02\x29\xf5\xd5\x46\xa1\x2b\x3c\x6e\x95\x6c\xea\x05\xfc\x27\xdb\xf1\xf3\xf3\xc3\xdc\xc5\x37\x80\x17\x60\x73\x01\x57\x67\x5a\x0b\xb1\xf3\x7f\xd4\x0d\xff\x09\x73\xe1\x1f\xc6\x42\xa7\xd5\x87\x4f\x7b\xff\xdb\x4c\x29\x74\xcb\x4d\x9d\x0e\x05\x2b\x95\x4a\x8a\xa1\xd2\xcc\x77\xc5\x7f\x7b\xc1\x56\x0b\xf8\x22\x60\x53\xed\x6b\x1e\x3e\xe4\xbe\xa9\xe3\xda\x1b\xf1\xfe\x3c\xfb\x1e\x2c\xc8\x0b\xe6\xb0\xbb\x38\x08\x21\xe4\xdd\x25\x78\x77\x9a\x3d\x21\xf4\x5f\xdd\xcc\x01\x3f\x65\xb6\xfc\x83\x3d\x47\x3a\x14\xa0\x88\xdc\xe4\x16\xf7\x9d\x53\x65\xf4\x86\x51\xd2\x87\xd1\xd6\xea\xfc\xfb\x92\x46\x2e\x4d\xf1\x45\xa2\xaf\xde\xac\x57\xb6\x47\x0b\x85\x42\xc2\xae\x20\xad\x9e\xdf\x24\x1b\xb2\x36\x97\x3e\xbf\x56\x5f\x6b\xc8\x87\xb2\x20\x77\x90\x0d\xb1\x0f\xab\x43\x09\x7a\x75\x93\x42\xaf\x69\x28\x45\x08\x45\x80\x2c\x5c\xad\x07\x81\xef\xdb\x99\xb5\x77\xa7\x2b\xfc\x33\x54\x76\x49\xec\xe7\x3f\x67\x4d\x80\x61\x4a\xfe\xe0\x56\x4f\xf9\xaf\xc9\xe8\x5b\x4b\xea\x36\xe8\x5c\xbd\xb2\x3d\xdc\xc2\x3d\x7a\x60\x28\xfa\xca\x0f\x7d\x49\x1f\x8f\x34\xca\x06\x85\x60\xab\xa5\x52\x29\x55\xaf\x6e\x12\xf6\xb2\xce\x7c\x3f\x89\x0d\xb1\x9f\xdd\x80\xd8\x15\xfc\x1f\xc0\x05\xbd\xa6\x51\x68\xe1\x7e\x78\xd5\x1a\x39\x4a\xbc\x8b\xc3\x24\x7c\xeb\x24\xd2\xe9\x19\xae\xe2\xc1\xe2\xe2\x62\x5a\x7b\xc1\xb6\xd5\xae\xf8\x6f\x2e\x59\xd3\x0c\xbf\xcf\x85\xff\xc8\xc8\x48\x8a\xb6\xc6\x10\xae\x58\xf6\xf2\x4f\xf7\xe3\x5d\xb1\x7c\xf3\x98\x4e\x5d\x1f\xec\x88\x51\x80\xa1\xc0\x2f\xd8\x67\xf0\x1f\x19\x0c\x06\x85\xb4\xff\x9d\x59\x7b\xf7\x3b\xf7\xb5\x9b\x7b\xe4\x9c\xdd\xfe\x2f\x34\x65\xec\x9f\x66\xff\xda\x56\xbe\xbc\x16\xf4\xc2\xb9\x9f\x10\x3b\x36\x97\x3e\xaf\x72\xc5\x7f\x47\xee\x8e\x57\xc1\x26\xcd\x75\x2d\x15\xe2\x8e\xda\xb2\xd6\x74\x45\xd8\xf0\x3f\xdc\xf2\xbe\xec\xe5\x1f\x6a\x2b\x5a\x38\x19\x19\x19\xf7\x9d\x67\xe0\x87\xba\xf3\x7f\xc0\xe7\xb1\x9f\xa3\x58\xd4\x9f\xf0\xe9\x34\xff\xc7\xcc\x3b\x74\x0c\xf0\xc2\xb9\xce\xb8\xb8\x38\xd0\x35\x96\x2b\xbc\xe9\xe6\x1e\x39\x0f\xf5\xcd\x75\xef\x1d\x62\x73\xd0\x39\xad\xb2\x21\x4c\xc9\xb5\x6e\x95\x87\x0d\xff\x20\x5f\xb2\x6d\x02\x92\x62\xd9\xf0\x98\x92\x37\xb4\x51\x5b\x63\x08\x06\xac\xf2\xf4\x99\x2a\x98\xc7\x9d\x59\x7b\x37\x4f\xeb\x6b\xea\x91\x23\xe0\xcb\x00\x8f\x3d\xc9\x27\xa6\xad\x87\x75\x66\xbd\xe9\xd2\x97\x25\xd6\xbb\x75\x28\x90\x7c\xaf\xe5\x14\xcc\x89\xb9\x7c\x0b\x69\xeb\x58\x0f\x1a\xfb\xdb\xdf\x43\x4b\x55\xab\xd4\xde\x5a\xa5\x61\x91\xb6\xc6\xb0\x08\xae\x41\x3f\x66\x1b\x03\x02\x3e\xea\xd5\x4d\x8b\x7b\x59\xa7\x47\xc8\xf3\xc8\x03\xf1\x17\xae\xd7\x57\x77\x46\x83\xef\x03\xf1\x4c\x63\x45\x1f\x7f\x28\xfa\xca\x2f\xf7\x74\xe3\xc2\x37\x75\xaa\xd6\x30\xb0\xcb\xce\xf5\x91\x6b\xa8\x66\xfe\x7b\x07\xa7\xcf\x81\xaf\xf1\xe6\x92\xe7\x4d\x0f\x73\xaf\xf1\x89\x27\x9e\xc0\xe6\x1a\x4f\x91\x04\x38\xaf\x52\xaa\xbd\x1b\xcb\x07\xb9\x4d\x65\xab\xd3\x6b\x55\x88\xf0\x0b\x49\x7e\x04\x02\x01\xa5\xbe\xa6\x2d\xb8\xbd\x60\x2b\x6a\x5b\xf9\xb2\x12\xa9\x1a\x02\x66\xb2\xe3\x30\x0e\x2d\xc5\x2f\x21\x57\x18\xd0\x9d\x7a\x18\xe6\x40\xb0\x2b\xd9\xfd\x9e\x04\xe3\x41\xfe\xff\x08\x95\x4a\x25\xf6\x41\x20\xf6\x87\x04\x38\x09\x31\x04\xf4\x19\x64\x75\xbf\x77\xfe\x01\xee\xea\x6b\x1b\x42\x87\xa2\xaf\x4c\xdb\x73\x05\xfb\x51\x5f\x6d\x94\xc1\xdc\x79\x88\xef\x38\x7b\xa8\x14\x15\x15\x45\x81\xb8\xc7\x1e\x2f\x2d\x06\xcc\x26\xf5\xc1\x13\x02\x59\x2a\x95\x4a\xef\x2e\xc1\x81\x69\x76\xc5\x16\x5b\x1d\x80\xd8\x3a\x34\x3e\x3e\xfe\x0f\xa5\x03\x18\xf9\x5e\x26\x84\x02\xea\x95\x46\x8d\x31\x67\xe7\x11\xa3\x68\xd7\x51\x43\x55\x97\x01\xe4\x30\x9b\x73\x32\xe0\x23\x36\x28\x2c\xe9\xae\xde\x93\x6f\x8d\x1c\x9d\x68\x90\xf7\x36\x82\x5c\x1f\xc6\xfb\xbe\x1f\x26\x29\x14\x0a\x62\xdd\x7e\x28\xfa\xf2\xed\x55\xf7\xd6\xad\xee\x34\x96\x0f\x34\x43\xcc\xec\x29\x6e\x81\x6f\x08\xfc\x59\xb8\x47\x5d\xae\x03\xf6\x25\x7d\x3c\x86\xb4\x75\x3c\xf0\xd1\x3c\x5d\x57\x7e\xd4\x44\xfa\x03\x5d\xfc\xf7\xa6\xc5\x2f\x16\xce\xb1\x8b\xa0\x17\x3e\x3e\x9e\xbf\x1a\x18\xec\x9c\x4d\x07\x46\x5d\x9e\xdd\x33\x09\xf7\x9d\x40\x08\xd1\x73\x72\x72\xa8\x7f\x04\x2c\x80\x71\xd0\x6a\xb5\x30\x66\xa7\x9c\xfb\xda\xcb\x3a\x7d\x09\x21\xe4\x3f\x1b\x5b\x03\x31\x12\xd8\xba\xae\xf4\x77\x5c\xc6\x03\xb6\x33\x08\x9b\x77\x00\x16\x80\xcd\xf8\x23\xc8\x00\xe2\xc1\xb6\x95\x2f\x1b\x9c\xfd\xb7\x8e\xbc\xd7\x7a\xe7\xe2\xbb\x83\xcd\xd0\xab\x9b\x82\x07\xe2\x3e\xfb\xc1\xa5\x0c\xe8\x5f\x4d\xb4\x14\xaf\xdb\x8c\x10\x0a\xcb\xcf\xcf\xa7\xfe\xde\xe7\x96\x7d\x7d\x7d\x89\x73\x3a\x1d\x39\xaf\x9b\x07\x19\x7f\xfb\x6e\x90\x71\xe9\xfb\xce\xac\xbd\x56\xb5\x4a\xe3\x33\xd7\x7d\x5a\xf0\xd5\x9a\xca\x56\x15\xb9\x9b\x07\x20\x83\x56\xc9\xa6\x9d\x48\x87\x18\x10\xe7\x3d\xca\x33\xba\xc4\x7f\xcc\xe5\xe7\x53\xb5\x5a\xad\x97\x3b\x3f\x19\xe2\x7d\xf0\xb3\x21\x96\x05\x59\x40\x4c\xf3\x20\xfb\xf3\xf6\x35\x38\x90\xe9\xa0\xbb\xf3\x68\xf0\x7d\x67\xd6\x9b\x27\x90\xb6\x4e\xa8\xd5\x6a\xfd\xa1\x6f\x0f\x53\x17\x00\xb7\x59\x2c\x16\x79\xd6\x94\xdd\x20\xef\x41\x08\xa1\xa0\xb9\xac\xc7\xcc\x85\x9e\x7a\xea\x29\x8a\x5a\xa5\xf6\x31\xa7\xfd\x79\x9f\x2b\xfe\x1d\x70\x66\xcc\x50\x69\x36\x02\x2e\x82\xbd\x81\x3e\x3f\xc8\x3b\x96\x41\xf6\x60\xb7\x89\xb3\x67\x08\x85\xd5\x2b\xdb\x91\x25\xe5\xa3\x51\x2b\xfd\x2b\xb0\x69\x26\x88\x6f\x9d\xde\x3f\xf5\xc8\x28\x38\x38\x98\xa2\xd3\x20\x7f\x0b\xf7\xe8\xb4\xf5\x51\xe7\xf9\x60\x12\xee\x1b\xa9\x53\xb5\xa8\x40\x0e\x5a\xad\xd6\x17\x74\x36\x26\x26\x86\xe2\x89\xbf\xe0\xeb\xeb\x4b\xe0\x0e\xcc\x3b\x62\xbc\x11\x0a\xd7\x6b\x1a\x65\xc6\x9c\x37\x8e\x0e\x45\x5f\x1d\x9f\x8c\x63\xe2\x3e\xbb\x51\xa7\x6a\x91\x3a\xef\x15\x3c\x4a\x82\x78\x4b\xa7\xd1\x13\xff\x8b\xb2\xea\x3e\x67\x33\x87\xa2\xae\x8e\x77\xa5\xbf\x7d\xbe\x41\xde\xd3\x8b\x74\x48\x08\x7c\x80\x0d\x86\xf8\x4a\x2a\x95\xd2\x40\x26\xe4\xfe\x1f\xd8\x50\xc0\x67\xe0\xc5\x7e\x7e\x3e\x0c\xe9\x10\xdf\x50\x65\x6a\xef\xcc\xda\x7b\x6a\x30\xe6\x8b\xdb\xae\xda\xe8\x49\x3e\x3e\x8a\x74\x7a\x56\x61\x61\xe1\x6f\xe6\x84\x80\xbe\x01\x9e\x76\x66\xbe\xb9\xce\xdd\xff\x28\x39\x63\x43\x7f\xc2\xa7\xbf\x98\x84\x6f\x9d\x6d\x29\x5e\xf7\xaa\xa1\xba\xb3\x1d\x69\xeb\x4a\x91\x0e\x89\xec\xfb\x7f\xe9\xc4\xb5\x56\x2f\xad\x57\x76\x34\x36\x97\xbc\x30\xdc\x99\xb5\xf7\x4c\x1f\x73\xe4\x27\x4f\xce\xbf\x76\x66\xed\xdd\xf7\x5b\x9d\xff\x25\x09\xf0\x00\xb0\xbe\xa5\x78\x5d\xc5\x60\xcc\xe5\x69\xef\xba\xbf\x9f\x3c\x88\xf7\xe0\xc7\xfe\x8d\xf8\x1f\x2e\xdb\x7f\x72\x7d\x7e\xcb\xdd\x3b\xf1\xef\x33\xd7\x6e\x77\xe4\xbe\x6e\x82\xbe\xfc\xd6\xfe\x07\xe0\x3b\xd8\x16\xdb\xda\xe4\x87\x07\x7f\xcb\xf3\xef\xab\x88\xe7\x00\x46\x2e\x36\xc8\x7b\x39\xa0\xfb\xbf\xe7\x79\x84\x90\x90\x10\xc2\xd6\x36\x97\x3e\x9f\xdf\xc7\x1c\xb9\xf8\xa8\xe5\x30\x10\xfb\xd9\xf7\x6d\xe2\x61\xa4\x56\xd5\x12\xcf\x3e\xfc\x11\xfc\x4e\xb0\xcf\x60\x8b\x6b\x6a\x54\xde\xcd\xd2\xb5\x92\x9e\xe4\x13\x27\xdc\xf9\x4b\x73\x49\xc4\x73\x1f\xcc\xb3\x9f\xb7\x89\xb7\xa0\x5a\x95\x9e\xf0\x2f\x66\x7b\x9e\xf3\xb7\x20\x98\x13\x0c\x06\x83\xd8\x6b\xa9\xaf\xee\x8c\xe8\xc8\x7d\xdd\xdc\xcb\x3a\x3d\x62\xa5\x7f\x35\x97\x67\x24\xee\xf4\x27\x9c\xbb\xdc\x99\xf9\xa7\xb5\x8d\x15\x7d\x6c\xf0\x01\xd8\x6c\xf6\x1f\x92\x6f\x57\x04\x7e\x70\x72\x72\x32\xc5\x7e\x86\x36\xa0\xa9\x6c\xb5\xb0\x23\xef\xd5\xd6\xae\xf4\x77\xb6\x5a\x52\x3e\x3a\x0c\x72\x81\x31\xed\x4f\x3c\x7b\xa9\x8f\x75\xe6\x9c\x85\x73\xec\x68\x97\xe0\xbd\x1d\xc6\x9c\x9d\xe6\x66\xe9\x5a\x71\x7d\x4d\x5b\x10\xcc\x2b\xf0\x65\xc1\xf7\xf8\x23\xe8\xf9\x5c\x09\xfc\x38\xe0\x21\x3e\x3e\x9e\xf0\xcd\x21\x4e\x13\x8b\xc5\x34\xc0\x6d\x48\x12\x89\x84\x26\x16\x8b\x09\x5f\x20\x31\x31\x91\x78\x37\xd8\x6c\x62\xf5\x7f\xd1\xbf\xe8\x5f\x34\x77\xc2\xef\x4f\x83\xc4\xab\x0a\xf0\x09\xfb\xcd\x63\x18\x46\xfc\x1d\xcc\x20\x86\xd9\xdf\x61\x80\xcd\xb7\xfd\x4c\xdc\x30\x8e\x09\x6e\x42\x7e\x73\x1e\x7e\x77\x1e\xdc\xbe\x00\xc7\x57\xe1\x38\x3e\x12\x82\xe3\x7f\x87\x62\x02\x7b\xad\x03\xb6\x7c\x1e\xf1\x67\x36\xb6\x7b\xf1\xb1\x81\xbb\xf3\x6d\xb9\xed\x3d\x0f\x63\x03\x13\x7e\xb6\xdf\xc7\x89\xfc\x7f\xf1\x71\xfb\x5f\xd1\x90\xf9\x4d\xa2\xba\xdd\xf6\xdc\xcf\xef\xa6\x00\xbf\x29\xb8\x4b\x5b\x70\x53\x80\x8f\x85\xdc\xa5\x2d\x18\x1b\xc0\x47\xfc\x6c\xf9\xe0\x82\x4d\x7e\x7e\x44\xbe\x00\x6a\x76\x95\xef\xc6\x1d\xee\x23\xca\x91\xf5\x38\xd4\x4b\xb6\x33\xa5\x1f\x93\xb9\xbd\x9f\x64\xbf\x49\x3e\x48\xbe\xee\xda\xf9\x25\xfe\xf5\x17\x1f\xbf\x27\x07\x52\x2e\xa4\x9c\x48\xb9\x91\x72\x1c\xc7\x42\xc6\xa0\xcc\x5d\x0c\xc3\xe6\x39\xc8\x1d\x1f\xc1\x30\x5b\x5b\x18\x46\x54\x71\x97\x1c\xd4\xb1\x10\x0f\x06\xf7\xff\x0f\x00\x00\xff\xff\x9f\xf0\xbc\x2c\xbe\x86\x00\x00") -func web_uiStaticFaviconIcoBytes() ([]byte, error) { +func web_uiV1StaticFaviconIcoBytes() ([]byte, error) { return bindataRead( - _web_uiStaticFaviconIco, - "web_ui/static/favicon.ico", + _web_uiV1StaticFaviconIco, + "web_ui/v1/static/favicon.ico", ) } -func web_uiStaticFaviconIco() (*asset, error) { - bytes, err := web_uiStaticFaviconIcoBytes() +func web_uiV1StaticFaviconIco() (*asset, error) { + bytes, err := web_uiV1StaticFaviconIcoBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/favicon.ico", size: 34494, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/favicon.ico", size: 34494, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticFaviconPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x35\x03\xca\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x02\xfc\x49\x44\x41\x54\x38\x8d\x7d\x53\x5d\x48\x53\x61\x18\x7e\xbf\xef\x7c\x3b\x3b\x3f\xcb\x2d\x97\x67\xb6\x8d\xb9\x74\xce\xf2\x27\xeb\xc6\x56\xf6\x43\x41\xd1\x2f\x15\x89\x20\x44\x48\x17\xdd\x94\x37\x51\x14\x12\x51\x89\x57\xde\x45\x42\x05\x11\x44\x3f\xf4\x43\x44\x57\x41\x65\x7f\x0a\x2a\x46\x62\x69\x66\x53\xf2\x87\xe9\x6c\xe7\xcc\xa9\xdb\xce\xce\xce\xce\xd7\x45\x28\x0a\xea\x7b\xf7\xc2\xf3\x3c\xf0\x3e\xef\xf3\x30\xb0\xcc\xf0\x3c\x8f\x6d\x36\x1b\x62\x59\x16\x69\x9a\x86\x28\xa5\x74\x29\x1c\x5a\xb4\x20\x84\x2b\xd7\x95\xfb\x6b\xac\x15\x67\x37\x42\xee\x1e\x4b\x8a\x71\x67\x30\x55\xc3\x9c\xfa\xe3\x5d\xb2\xff\xe9\xa3\xf1\xd6\x07\x93\x4a\x44\x5d\x52\x40\x10\x04\x7c\x65\x43\xd5\xe5\x23\x71\xdf\x75\x8d\x31\xd4\x41\x7b\xf2\x73\x18\xc7\x83\x3c\x32\x09\x9e\xb8\x10\x70\xc5\xcc\xa5\xc3\xd6\x64\xeb\xc9\xe0\x9d\x5d\x8a\xa2\x18\x73\x3c\x02\x00\x40\x08\xc1\x0d\xc5\x35\x0d\xfb\x67\xf2\xea\x3b\x24\xe5\xe1\x2d\xe5\xc3\xa5\xbe\xce\x5f\x13\xaa\xaa\x1a\x00\x00\x92\x24\x91\x03\x85\x81\xfd\x40\x41\x8b\x46\xa3\x60\xb7\xdb\xb1\x2c\xcb\x00\x00\xff\x85\x8e\x97\xec\xda\xde\x5b\x74\x83\x36\xef\x38\xdb\x6c\xb5\x5a\xc9\x72\xbe\x00\x00\x6c\x29\x2c\xf7\x7e\x2d\xb9\xf6\xb7\xb2\x70\xb3\x0f\x00\x80\x61\x59\x16\x37\x7a\xaa\x6e\x23\x06\x93\x0b\xe3\xcf\x8f\x85\x27\xc3\xa9\x95\x04\x80\x23\x2a\x38\x2d\x72\x87\x32\xd0\x36\x15\x8b\xa5\xb1\xc7\xe9\x16\xf2\xa7\x2d\x7b\xda\xf9\xd0\xc3\x3f\x23\xc3\x89\x39\x9c\xd7\xe1\x92\x4e\xaf\xdf\x5b\x7f\xd0\x1f\x38\x4c\x08\xc1\x00\x00\x65\x1e\xbf\xf3\xbe\xab\xf6\x6d\x8c\xd1\xfa\xef\xe7\x9c\xfa\x52\x96\xe7\xcf\x25\x6e\x2e\xdb\x43\x28\x62\x7f\x26\x42\xdf\xe6\xc8\x0c\xc3\xe0\x5a\xe7\x8e\x66\x29\x82\xaa\x28\xac\x01\xa6\x42\xdc\x5c\x93\x2e\xbb\xf8\x29\x2b\x74\x67\x94\x26\xfb\xc2\xfa\xec\x44\x4f\x96\xd2\x32\x3d\x91\x4c\x10\x84\x30\x06\x0a\xb0\xf0\xcd\x08\x21\xc0\x26\x06\x03\x18\x00\x08\x0c\x5e\x14\x08\xa4\x59\x56\x87\x8c\x11\x8a\x84\x47\x65\x3d\x92\x50\x89\x43\x4d\xab\x9a\xc1\x70\x36\x51\x3b\x41\x36\x9e\x8f\xf2\xe9\xe0\xbb\x50\xf7\x47\x00\x00\xc3\x30\xe8\x24\x9f\x6e\x5d\xe5\xb4\x27\x7b\x2d\xb1\x9b\xaf\x3b\x5b\x3e\xbc\x1a\x6d\x7f\xc1\x10\x82\x6a\xf9\x8a\xa6\x84\x57\xe8\xaa\x4c\xb9\xeb\x3a\xd1\xd8\x4b\x10\x45\x11\xbf\xde\x7a\xf9\x7d\xdb\xa6\xab\x83\xb9\x39\x12\xb7\x92\x7f\x08\x21\xbc\xde\x5f\xc4\x9d\x29\x39\x58\xed\x2f\xf0\x71\x00\x80\x71\x3c\x1e\x37\x9e\x65\x7a\x9a\x6c\x49\x92\x5f\x9f\x77\xb4\xd1\x6c\x36\xe3\xe5\x04\x28\xa5\xc6\x1a\x62\x71\x9f\x41\x15\xf7\x9c\xe6\x6c\x2f\x00\x18\x0c\x00\xc0\xe0\x54\x68\xa8\xa8\xb0\xc8\xb1\x5b\x59\x5b\x57\xec\xf2\x39\xfa\x60\xb2\x2d\x3a\x1b\x9b\x8f\xac\xd9\x6c\xc6\x87\x7c\x81\xad\xa5\x52\x7e\x41\x4b\xb0\xab\xbb\x25\x6b\xec\xe6\xf7\xa1\xfe\x89\x4c\x26\x43\xe7\xa3\x2c\xe5\xe4\xb0\x57\x8a\xab\x9b\x76\x87\x1d\xe7\x74\x4c\xa7\xfb\x78\xe5\xcd\xb0\x26\x07\x79\x6c\x12\x4a\xc8\xda\x80\x6b\x96\xdb\x36\xb2\x3a\xd5\x7e\xf2\xf7\xed\x4a\x59\x96\xe7\xa3\xbc\xa8\x4c\x3c\xcf\xe3\x7d\xa5\xdb\x02\x27\x84\x4d\x75\xde\x19\x61\xa7\x25\x45\xb2\x75\x4c\xf5\x88\xa8\x0d\x74\xb0\xe3\x4f\x1e\x8f\x7d\xbe\xfb\x7b\x68\x70\x7a\x91\x2f\x4b\xdd\x6a\x32\x99\xb0\xc3\xe1\x20\xa2\x28\x72\xba\xae\xeb\xd1\x68\x54\x5d\x58\xa0\x85\xf3\x0f\x37\x93\x32\x03\xb1\xf9\x4d\x7e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xb0\x22\x7d\xd3\x35\x03\x00\x00") +var _web_uiV1StaticFaviconPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x35\x03\xca\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x02\xfc\x49\x44\x41\x54\x38\x8d\x7d\x53\x5d\x48\x53\x61\x18\x7e\xbf\xef\x7c\x3b\x3b\x3f\xcb\x2d\x97\x67\xb6\x8d\xb9\x74\xce\xf2\x27\xeb\xc6\x56\xf6\x43\x41\xd1\x2f\x15\x89\x20\x44\x48\x17\xdd\x94\x37\x51\x14\x12\x51\x89\x57\xde\x45\x42\x05\x11\x44\x3f\xf4\x43\x44\x57\x41\x65\x7f\x0a\x2a\x46\x62\x69\x66\x53\xf2\x87\xe9\x6c\xe7\xcc\xa9\xdb\xce\xce\xce\xce\xd7\x45\x28\x0a\xea\x7b\xf7\xc2\xf3\x3c\xf0\x3e\xef\xf3\x30\xb0\xcc\xf0\x3c\x8f\x6d\x36\x1b\x62\x59\x16\x69\x9a\x86\x28\xa5\x74\x29\x1c\x5a\xb4\x20\x84\x2b\xd7\x95\xfb\x6b\xac\x15\x67\x37\x42\xee\x1e\x4b\x8a\x71\x67\x30\x55\xc3\x9c\xfa\xe3\x5d\xb2\xff\xe9\xa3\xf1\xd6\x07\x93\x4a\x44\x5d\x52\x40\x10\x04\x7c\x65\x43\xd5\xe5\x23\x71\xdf\x75\x8d\x31\xd4\x41\x7b\xf2\x73\x18\xc7\x83\x3c\x32\x09\x9e\xb8\x10\x70\xc5\xcc\xa5\xc3\xd6\x64\xeb\xc9\xe0\x9d\x5d\x8a\xa2\x18\x73\x3c\x02\x00\x40\x08\xc1\x0d\xc5\x35\x0d\xfb\x67\xf2\xea\x3b\x24\xe5\xe1\x2d\xe5\xc3\xa5\xbe\xce\x5f\x13\xaa\xaa\x1a\x00\x00\x92\x24\x91\x03\x85\x81\xfd\x40\x41\x8b\x46\xa3\x60\xb7\xdb\xb1\x2c\xcb\x00\x00\xff\x85\x8e\x97\xec\xda\xde\x5b\x74\x83\x36\xef\x38\xdb\x6c\xb5\x5a\xc9\x72\xbe\x00\x00\x6c\x29\x2c\xf7\x7e\x2d\xb9\xf6\xb7\xb2\x70\xb3\x0f\x00\x80\x61\x59\x16\x37\x7a\xaa\x6e\x23\x06\x93\x0b\xe3\xcf\x8f\x85\x27\xc3\xa9\x95\x04\x80\x23\x2a\x38\x2d\x72\x87\x32\xd0\x36\x15\x8b\xa5\xb1\xc7\xe9\x16\xf2\xa7\x2d\x7b\xda\xf9\xd0\xc3\x3f\x23\xc3\x89\x39\x9c\xd7\xe1\x92\x4e\xaf\xdf\x5b\x7f\xd0\x1f\x38\x4c\x08\xc1\x00\x00\x65\x1e\xbf\xf3\xbe\xab\xf6\x6d\x8c\xd1\xfa\xef\xe7\x9c\xfa\x52\x96\xe7\xcf\x25\x6e\x2e\xdb\x43\x28\x62\x7f\x26\x42\xdf\xe6\xc8\x0c\xc3\xe0\x5a\xe7\x8e\x66\x29\x82\xaa\x28\xac\x01\xa6\x42\xdc\x5c\x93\x2e\xbb\xf8\x29\x2b\x74\x67\x94\x26\xfb\xc2\xfa\xec\x44\x4f\x96\xd2\x32\x3d\x91\x4c\x10\x84\x30\x06\x0a\xb0\xf0\xcd\x08\x21\xc0\x26\x06\x03\x18\x00\x08\x0c\x5e\x14\x08\xa4\x59\x56\x87\x8c\x11\x8a\x84\x47\x65\x3d\x92\x50\x89\x43\x4d\xab\x9a\xc1\x70\x36\x51\x3b\x41\x36\x9e\x8f\xf2\xe9\xe0\xbb\x50\xf7\x47\x00\x00\xc3\x30\xe8\x24\x9f\x6e\x5d\xe5\xb4\x27\x7b\x2d\xb1\x9b\xaf\x3b\x5b\x3e\xbc\x1a\x6d\x7f\xc1\x10\x82\x6a\xf9\x8a\xa6\x84\x57\xe8\xaa\x4c\xb9\xeb\x3a\xd1\xd8\x4b\x10\x45\x11\xbf\xde\x7a\xf9\x7d\xdb\xa6\xab\x83\xb9\x39\x12\xb7\x92\x7f\x08\x21\xbc\xde\x5f\xc4\x9d\x29\x39\x58\xed\x2f\xf0\x71\x00\x80\x71\x3c\x1e\x37\x9e\x65\x7a\x9a\x6c\x49\x92\x5f\x9f\x77\xb4\xd1\x6c\x36\xe3\xe5\x04\x28\xa5\xc6\x1a\x62\x71\x9f\x41\x15\xf7\x9c\xe6\x6c\x2f\x00\x18\x0c\x00\xc0\xe0\x54\x68\xa8\xa8\xb0\xc8\xb1\x5b\x59\x5b\x57\xec\xf2\x39\xfa\x60\xb2\x2d\x3a\x1b\x9b\x8f\xac\xd9\x6c\xc6\x87\x7c\x81\xad\xa5\x52\x7e\x41\x4b\xb0\xab\xbb\x25\x6b\xec\xe6\xf7\xa1\xfe\x89\x4c\x26\x43\xe7\xa3\x2c\xe5\xe4\xb0\x57\x8a\xab\x9b\x76\x87\x1d\xe7\x74\x4c\xa7\xfb\x78\xe5\xcd\xb0\x26\x07\x79\x6c\x12\x4a\xc8\xda\x80\x6b\x96\xdb\x36\xb2\x3a\xd5\x7e\xf2\xf7\xed\x4a\x59\x96\xe7\xa3\xbc\xa8\x4c\x3c\xcf\xe3\x7d\xa5\xdb\x02\x27\x84\x4d\x75\xde\x19\x61\xa7\x25\x45\xb2\x75\x4c\xf5\x88\xa8\x0d\x74\xb0\xe3\x4f\x1e\x8f\x7d\xbe\xfb\x7b\x68\x70\x7a\x91\x2f\x4b\xdd\x6a\x32\x99\xb0\xc3\xe1\x20\xa2\x28\x72\xba\xae\xeb\xd1\x68\x54\x5d\x58\xa0\x85\xf3\x0f\x37\x93\x32\x03\xb1\xf9\x4d\x7e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xb0\x22\x7d\xd3\x35\x03\x00\x00") -func web_uiStaticFaviconPngBytes() ([]byte, error) { +func web_uiV1StaticFaviconPngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticFaviconPng, - "web_ui/static/favicon.png", + _web_uiV1StaticFaviconPng, + "web_ui/v1/static/favicon.png", ) } -func web_uiStaticFaviconPng() (*asset, error) { - bytes, err := web_uiStaticFaviconPngBytes() +func web_uiV1StaticFaviconPng() (*asset, error) { + bytes, err := web_uiV1StaticFaviconPngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/favicon.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/favicon.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticLoadingCylonPinkSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xd3\xcf\x6b\xdb\x30\x14\x07\xf0\x7b\xfe\x8a\xc7\xdb\x65\xbb\xd8\xb2\xe2\x05\xb3\x58\x81\x6d\x97\x5d\xb2\xc3\x56\x72\x57\xec\x17\x5b\xd4\x96\x84\xf4\x6c\x27\xfd\xeb\x8b\xdd\x1f\x94\x52\xe8\x2d\xed\x41\x42\x42\x7c\xbf\x48\x1f\x50\x19\xc7\x06\xce\x7d\x67\xa3\xc2\x96\xd9\xff\x48\xd3\x69\x9a\x92\x69\x9d\xb8\xd0\xa4\x52\x08\x91\xc6\xb1\x41\x18\x0d\x4d\xbf\xdc\x59\xa1\x80\x2c\x87\xb5\x84\xac\x40\x98\x4c\xcd\xad\xc2\xb5\x44\x68\xc9\x34\x2d\x2b\xcc\x11\x4e\xa6\xeb\x14\x7e\xa9\x37\x85\x3e\x4a\x04\x1f\x28\x52\x18\xe9\x67\xf4\x54\xf1\x3f\xcd\xc6\x29\xb4\xce\x12\xee\x56\x00\xa5\xd7\xdc\x82\xf3\xba\x32\x7c\x51\x28\x92\x02\x81\x83\xb6\xf1\xe4\x42\xaf\x70\x59\x76\x9a\xe9\xab\x00\xf1\x0d\xa1\x56\xb8\x97\xf3\x0d\x0e\x59\x01\x7f\x36\x70\xc8\xf2\xbb\xa5\x07\xa0\xd4\xd6\xf4\x9a\xe9\xe6\x29\x0d\x9a\x39\x98\xe3\xc0\xf4\x57\xf7\xf4\xd8\x35\x1f\x20\xf0\xc5\xd3\x8b\x72\x84\x51\x77\x03\xc5\xf9\x75\x62\x0b\x32\x9f\x67\x01\x02\xa1\x1e\x82\x42\x19\x11\x8e\xd4\x18\xab\x50\x20\x04\xf2\xa4\xf9\xb7\x1b\x2c\x2b\x34\xb6\xa6\x93\xb1\x66\xee\xb8\xa5\xcb\x7f\xdf\x19\xbb\xf4\x24\x12\x1e\x46\x0e\x22\x29\xb6\xaf\xf6\x08\x95\xee\xaa\xbd\xab\x49\x61\x5c\x32\x08\xe9\xc2\x91\xce\x1e\x6f\xc2\x7c\x7f\x17\x46\x3c\xc3\x14\xd7\x87\x49\xb2\xf8\x71\x36\xf2\xb3\xe3\xc8\x6b\xe1\x94\xf3\x77\xdd\xad\xee\x03\x00\x00\xff\xff\x70\xd5\x10\x78\xd7\x03\x00\x00") +var _web_uiV1StaticLoadingCylonPinkSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xd3\xcf\x6b\xdb\x30\x14\x07\xf0\x7b\xfe\x8a\xc7\xdb\x65\xbb\xd8\xb2\xe2\x05\xb3\x58\x81\x6d\x97\x5d\xb2\xc3\x56\x72\x57\xec\x17\x5b\xd4\x96\x84\xf4\x6c\x27\xfd\xeb\x8b\xdd\x1f\x94\x52\xe8\x2d\xed\x41\x42\x42\x7c\xbf\x48\x1f\x50\x19\xc7\x06\xce\x7d\x67\xa3\xc2\x96\xd9\xff\x48\xd3\x69\x9a\x92\x69\x9d\xb8\xd0\xa4\x52\x08\x91\xc6\xb1\x41\x18\x0d\x4d\xbf\xdc\x59\xa1\x80\x2c\x87\xb5\x84\xac\x40\x98\x4c\xcd\xad\xc2\xb5\x44\x68\xc9\x34\x2d\x2b\xcc\x11\x4e\xa6\xeb\x14\x7e\xa9\x37\x85\x3e\x4a\x04\x1f\x28\x52\x18\xe9\x67\xf4\x54\xf1\x3f\xcd\xc6\x29\xb4\xce\x12\xee\x56\x00\xa5\xd7\xdc\x82\xf3\xba\x32\x7c\x51\x28\x92\x02\x81\x83\xb6\xf1\xe4\x42\xaf\x70\x59\x76\x9a\xe9\xab\x00\xf1\x0d\xa1\x56\xb8\x97\xf3\x0d\x0e\x59\x01\x7f\x36\x70\xc8\xf2\xbb\xa5\x07\xa0\xd4\xd6\xf4\x9a\xe9\xe6\x29\x0d\x9a\x39\x98\xe3\xc0\xf4\x57\xf7\xf4\xd8\x35\x1f\x20\xf0\xc5\xd3\x8b\x72\x84\x51\x77\x03\xc5\xf9\x75\x62\x0b\x32\x9f\x67\x01\x02\xa1\x1e\x82\x42\x19\x11\x8e\xd4\x18\xab\x50\x20\x04\xf2\xa4\xf9\xb7\x1b\x2c\x2b\x34\xb6\xa6\x93\xb1\x66\xee\xb8\xa5\xcb\x7f\xdf\x19\xbb\xf4\x24\x12\x1e\x46\x0e\x22\x29\xb6\xaf\xf6\x08\x95\xee\xaa\xbd\xab\x49\x61\x5c\x32\x08\xe9\xc2\x91\xce\x1e\x6f\xc2\x7c\x7f\x17\x46\x3c\xc3\x14\xd7\x87\x49\xb2\xf8\x71\x36\xf2\xb3\xe3\xc8\x6b\xe1\x94\xf3\x77\xdd\xad\xee\x03\x00\x00\xff\xff\x70\xd5\x10\x78\xd7\x03\x00\x00") -func web_uiStaticLoadingCylonPinkSvgBytes() ([]byte, error) { +func web_uiV1StaticLoadingCylonPinkSvgBytes() ([]byte, error) { return bindataRead( - _web_uiStaticLoadingCylonPinkSvg, - "web_ui/static/loading-cylon-pink.svg", + _web_uiV1StaticLoadingCylonPinkSvg, + "web_ui/v1/static/loading-cylon-pink.svg", ) } -func web_uiStaticLoadingCylonPinkSvg() (*asset, error) { - bytes, err := web_uiStaticLoadingCylonPinkSvgBytes() +func web_uiV1StaticLoadingCylonPinkSvg() (*asset, error) { + bytes, err := web_uiV1StaticLoadingCylonPinkSvgBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/loading-cylon-pink.svg", size: 983, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/loading-cylon-pink.svg", size: 983, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticMstile144x144Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x3c\x40\xc3\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x90\x00\x00\x00\x90\x08\x06\x00\x00\x00\xe7\x46\xe2\xb8\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x69\x90\x1c\x47\x76\x26\xf8\x3d\x8f\xc8\xc8\xb3\xb2\xb2\x32\x13\x75\x5f\x59\x28\x14\x0a\x27\x89\xb3\x41\x80\x40\x93\x68\x76\x83\x0d\x92\xad\x6e\xb5\x34\x23\x69\xa6\xa5\xde\x59\x8d\x64\x63\x2b\x8d\x6c\x4c\xbb\xa3\x95\xc9\xd6\xc6\x34\x63\x6b\xda\x31\x4d\x9b\x56\x1a\x69\x65\x52\x6b\xa5\xd6\x31\xad\xab\x4f\xb5\xd8\x64\xf3\x26\x01\x82\x47\x93\xe0\x01\xa0\x0a\xc4\x51\x55\x40\xdd\x57\x56\x56\xde\x19\x19\xe1\x6f\x7f\x64\x44\x66\x64\x56\x66\xa1\x00\xe2\xd2\xb6\xbc\xac\x2c\x22\x3c\xbe\x74\x7f\xee\xfe\xe2\xf9\xf3\xe7\xcf\xdd\x09\x80\x00\x20\xad\x6b\x6d\x90\xd6\x55\xd4\xc4\xd5\x3e\xd7\x62\x36\x92\xce\xad\x62\xd6\x7b\x7f\xb7\x31\xff\x1c\x1c\xe1\x76\x57\xd6\x46\xd2\xfb\xa7\x82\x11\x8e\x77\xa2\x4e\xdc\x8f\x2c\x86\x6a\xc0\x76\x70\x7e\x7d\xb5\x92\xc1\x7e\xe7\x8c\xbf\x1b\x12\xe6\x7e\x94\x3e\xf7\x1b\x4d\xf7\x1b\xe6\x9e\x86\x5a\xe2\xea\x11\x7b\xb7\x30\xf7\x83\x14\xbc\x2f\x31\xb6\x04\x92\x1b\xb8\xd6\x26\x5a\x4f\x32\xd5\xcb\xb4\x9e\x34\x5b\x0f\xe3\x7c\xae\x27\xed\xee\x05\xa6\x11\xb6\x5e\xf8\x51\xc6\xdc\x17\xe1\xbe\xf9\xba\x1c\x98\x5a\xbd\xa0\xf6\xb7\x3f\xb2\x18\x15\x6b\x25\x4c\xbd\x67\x34\xc0\xd4\x72\xe4\x7a\xa3\xb9\x9b\xc1\xd4\xe6\x71\xaf\x31\xf6\xfd\x7a\xdd\xdf\x8f\x24\x86\xea\x44\xde\xae\x50\xaf\xeb\xbb\x6f\x30\xdb\xb6\x6d\x13\x81\x40\x00\x2d\x2d\x2d\x65\x40\x30\x18\x44\x30\x18\xac\xfa\xd1\xd2\xd2\x12\xf2\xf9\x7c\xf9\x79\x75\x75\x15\xc9\x64\x12\xa3\xa3\xa3\xeb\xe5\x77\x5f\x97\xfd\x76\x62\xa8\x4e\xe4\xcd\x48\xa0\x3b\x89\xa9\x27\xe5\xea\x49\x85\xba\x57\x55\x55\x61\x18\x86\xdc\xbb\x77\xaf\x68\x69\x69\x41\x24\x12\x41\x73\x73\x33\x88\x48\x38\xf2\x72\xde\x83\x99\x05\x51\xdd\x6f\xca\xa6\x51\x32\x33\x88\x48\xda\x71\xc5\x62\x51\x66\x32\x19\xac\xac\xac\x20\x1e\x8f\xe3\xdd\x77\xdf\x5d\x4f\x57\x58\xaf\x3c\xff\x24\x31\xb5\x4a\x74\x6d\xb8\xdf\x86\x85\x0d\x31\x2e\x97\x0b\xe1\x70\x18\xb1\x58\x0c\x1d\x1d\x1d\x88\x46\xa3\x20\x22\x61\x31\x45\xa9\xab\x66\xa8\xaa\x24\xcd\x6d\x90\xcf\x53\x54\x42\xc1\xbc\x12\xf5\x18\x22\xec\x36\x44\xc8\xa7\x2b\x21\xcd\x24\xbf\xc2\xa4\x09\x49\x1a\x00\x48\x62\xc3\x14\xac\xe7\x55\xb9\x9a\x77\xc9\x64\xde\x25\x13\x39\x97\x5c\x4a\x6b\x66\x3c\xa7\x99\x89\x82\x22\xb3\xa6\x80\xce\x60\x03\x80\xe1\x60\x2c\xb9\xbc\xbc\x8c\xf1\xf1\x71\xcc\xcc\xcc\x60\x61\x61\x01\x52\xde\xe8\xe3\xfe\xa7\x19\x6e\xa6\x0b\xdb\xa8\x04\x91\x0d\xde\x6d\x14\xd3\x48\xaa\xac\xa1\x83\x88\x44\x4f\x4f\x0f\x06\x07\x07\xd1\xdd\xdd\x0d\x8f\xc7\x63\x4b\x15\x15\x0c\xcd\x25\xc9\x13\xca\xa9\xd1\xd6\x94\x36\x1c\x4d\xbb\x76\x45\xb2\xae\xe1\xe6\xbc\x3a\xe8\x29\x8a\x76\x55\x52\x50\x30\x3c\x25\x3c\x09\x80\x4b\xa9\x32\x50\x92\x42\x6c\xc7\xa0\x54\x4d\x6c\x97\x5d\x4a\x42\xde\x10\x9c\xc8\xb9\xcc\x99\x94\xc7\x9c\x58\xf4\x17\x2f\x2c\x05\x8a\xe7\x17\x02\xfa\xc5\x84\xd7\x88\x1b\x82\xf3\x20\xe8\x00\x0c\x00\x32\x93\xc9\xc8\xf9\xf9\x79\x8c\x8c\x8c\x60\x76\x76\x16\xcc\x7c\xcb\x92\xf5\x7e\xc3\x50\x0d\xb0\xb6\x11\x9d\x0d\xe6\x0c\xb5\x0c\xb0\x9e\xe4\x58\x2f\x9d\x9b\xc1\x94\x43\x38\x1c\xc6\xd0\xd0\x10\xfa\xfb\xfb\xd1\xd4\xd4\x64\x4b\x18\x55\x91\xf0\x85\xb3\xae\xce\xee\x84\xfb\xc1\xde\x15\xcf\x27\x37\xa5\xb5\xbd\xbe\xa2\x18\x24\x86\x0f\x20\x80\x19\x04\x02\x97\xf9\x81\x01\xa2\x12\x7b\x70\xe9\xbe\x1e\x86\x40\x16\x33\x55\x30\x00\x55\xd8\x0a\x5c\x4a\x9e\x90\xce\xba\xe4\x95\xf9\x26\xfd\xec\x64\x28\x7f\x6a\x3a\x54\x38\xbb\xec\x2b\xce\x98\xc4\x79\x94\x24\x94\x91\x4e\xa7\xe5\xd8\xd8\x18\x46\x46\x46\x90\x4c\x26\x37\x52\xdc\xfb\x3a\xdc\x09\x25\xfa\x46\x12\xe4\x46\x18\x27\x13\x95\xdf\x29\x8a\x22\x3a\x3b\x3b\xb1\x77\xef\x5e\x44\xa3\x51\xa1\x28\x8a\x60\x66\x4d\x61\xf2\x6d\x4a\x6b\xfd\x83\x4b\xde\xe3\x03\xcb\xde\xcf\x36\xe7\xd4\xdd\x0a\x23\x04\x26\x87\xe0\xc0\xc7\xbf\x87\xf5\x4c\x8e\x2b\xd6\xc1\x80\xa5\x49\x48\x26\x7c\xc5\xb3\x13\xe1\xfc\xf3\x97\x36\x65\x5f\x58\xf2\x17\xaf\x9b\xc4\x59\x00\xba\x94\x52\xce\xcc\xcc\xc8\x8b\x17\x2f\x62\x62\x62\xa2\xc4\xc0\xd5\x61\xbd\x7a\xb9\x6f\x30\xf7\xbd\x21\x51\x55\x55\xb1\x75\xeb\x56\x3c\xf8\xe0\x83\xf0\xfb\xfd\x76\xf7\xe4\x69\x2a\x28\xad\x43\x8b\xbe\xc7\x86\xe7\x7d\x5f\x0c\x67\x5d\x07\x05\x53\xa0\xd4\x86\xce\x56\xb6\x8b\x58\xea\x90\xa8\x2e\x27\x6c\x04\x53\xf9\xce\xaa\x31\xa8\xc1\x36\xc6\x98\xc4\xe9\x65\x7f\xf1\xed\x8f\x5a\xb3\xdf\xbc\xb4\x29\xfb\x42\xca\x6d\x2e\x80\x90\x07\x60\x2c\x2f\x2f\xcb\xf7\xde\x7b\x0f\x53\x53\x53\xd0\x75\x7d\x4d\x1d\xa0\xb1\x64\xbe\xe7\x98\xfb\x76\x18\xaf\xaa\xaa\xd8\xb6\x6d\x1b\x76\xed\xda\x85\x40\x20\x60\x4b\x9b\x40\x47\x52\x1b\x7a\x60\xa6\xe9\x5f\xf5\xc5\x3d\x9f\xd3\x4c\xea\x2c\x75\x2f\xf5\x1a\xbe\x3a\xdc\x19\x4c\xfd\xb0\x1e\x86\xc1\xd0\x15\x9e\x1a\x0f\xe7\xfe\xe1\x5c\x67\xe6\xaf\x67\x83\x85\x8b\x26\x71\x96\x88\xf4\x6c\x36\x2b\x4f\x9f\x3e\x8d\x89\x89\x89\x8f\xab\x47\xde\x35\x0c\xd5\x00\xd1\x00\xdc\xa8\xab\xd9\xa8\x42\x7d\x33\x18\xf4\xf5\xf5\x89\x03\x07\x0e\x20\x1c\x0e\x0b\x00\x1a\x49\x04\xfa\x57\x3c\x7b\xf7\x4d\x36\xfd\x62\x47\xd2\xfd\x98\xc2\x14\xa8\x53\xd0\x52\xa8\xdf\xee\x1f\x0f\xc3\x28\xf5\x88\xb5\x42\xe9\x63\x62\x4c\xe2\xf4\x4c\x73\xe1\xd9\xb3\xdd\xa9\xaf\x4e\x84\xf3\xef\x33\x21\xcd\xcc\xfa\xf2\xf2\xb2\xfc\xd6\xb7\xbe\xb5\x5e\x7d\xd7\x53\x70\xef\x09\xe6\x4e\x4a\xa0\x5b\x0a\x27\x4f\x9e\x14\x5d\x5d\x5d\x82\x88\x34\x62\xf8\x7a\x57\x3c\xfb\x0f\x5e\x0b\xfe\xbb\x8e\xa4\xf6\x19\x02\x3c\x8d\xbb\x21\x60\x2d\x57\xdc\x2e\x0c\x4a\x8a\x33\x35\xe2\x8c\x5b\xc7\x70\x69\xb4\x97\x9f\x0d\xea\xcf\xbe\xd5\xbf\xfa\x07\x93\xa1\xc2\xfb\x4c\xc8\x32\xb3\x7e\xed\xda\x35\xf9\xdc\x73\xcf\xdd\xd7\xe3\xff\xfb\xc6\x90\xb8\x6f\xdf\x3e\xb1\x73\xe7\x4e\xb8\xdd\x6e\x0d\x0c\x4f\x24\xe3\x1a\x78\x68\x22\xf8\x2b\xb1\xb8\xf7\x27\x14\x26\x5f\x09\x6e\x57\x7a\x85\xf8\x4a\x2c\x70\xa7\x30\x4e\x16\xa8\x27\xbc\x6e\x17\xc6\x24\x4e\x8f\x45\x72\x7f\xf7\x46\xff\xea\x7f\x8f\xfb\x8c\x09\x06\x67\x8b\xc5\xa2\xf1\xde\x7b\xef\xe1\x83\x0f\x3e\x70\x42\xd7\x1b\x76\xdf\x55\xcc\x3d\x37\x24\x6e\xda\xb4\x09\xc7\x8e\x1d\x43\x24\x12\x51\x99\x59\xf3\x1a\x4a\xeb\xfe\xeb\x4d\x3f\xf3\xc0\x4c\xe0\x3f\xb8\xa4\x08\xdb\xb8\x7a\x8d\xed\x7c\xbe\xdb\x18\x3b\xfe\x4e\x60\x8a\x42\x2e\xbc\xdf\x9d\xfe\x9d\x77\xbb\x53\x7f\x53\x70\xc9\x25\x00\xf9\xb9\xb9\x39\xf9\xea\xab\xaf\x62\x75\x75\x15\xf7\x53\x50\x50\x29\x17\xd7\xf9\x77\xc6\xdb\x65\x94\x35\x71\x5c\xf3\x2c\xeb\xdc\xd7\xa6\x23\x01\xf0\xd6\xad\x5b\xe9\xd1\x47\x1f\x45\x53\x53\x93\x06\x46\x53\x2c\xee\x3d\x74\x72\x24\xf2\x7b\x03\x71\xef\xbf\x56\x58\xf8\xca\xa6\x3c\xcb\xb8\x47\x55\xc6\x3d\xa0\x2a\xe6\x0e\x62\x9c\x16\x9f\x46\xe1\x76\x62\x04\xc3\xdf\xb5\xea\x3e\x3e\xb0\xec\xfd\x44\xc2\x57\x1c\x5b\xf5\x98\xcb\x81\xa6\x80\x1c\x1e\x1e\x36\x93\xc9\x24\x56\x56\x56\x24\x2a\xf5\x58\xef\x8a\x75\xde\xdd\x56\x8c\x82\x92\x64\xb0\x4b\x26\x6a\xae\x70\xbc\xb7\x7f\x58\xcf\x5a\xe2\xc4\xd8\xbf\x41\x0d\xb6\x0a\x73\xe2\xc4\x09\xf1\xc0\x03\x0f\x08\x45\x51\xbc\x1e\x53\xb4\x1f\x1b\x6b\xf9\xf7\x47\xc7\x42\xbf\xed\xd7\xc5\x00\x11\x11\xc0\xa0\x72\x63\xda\xa9\x11\x88\x4b\xcf\xb6\xb5\xf8\x6e\x60\xec\xa6\x27\x50\x09\xc3\x8e\x67\xdc\x31\x0c\xf9\x0c\xa5\x67\xcb\x82\xef\xc7\xbc\x86\x50\x67\x83\x85\x4b\x52\xa1\x42\x2c\x16\x93\xa6\x69\x62\x7e\x7e\xde\xae\xdf\x7a\xd7\xf5\xde\xdd\x56\x8c\x2d\x81\x6c\x26\xb0\x19\xc0\xf9\x99\xd4\x93\x46\xa8\xc1\xd5\x8b\x77\x32\x54\x19\xd3\xdc\xdc\x2c\x7e\xfc\xc7\x7f\x9c\x5a\x5b\x5b\x55\x30\xfc\xed\x29\xf7\xee\x27\x46\xa2\xbf\x37\xb0\xec\xf9\x19\x01\xd2\xaa\x94\x50\xb2\x74\x10\x22\x4b\xf1\xb4\x52\xbd\x4d\x18\x2e\x63\xac\x67\x00\x52\x40\x32\x81\xed\x7f\x54\x5a\xd4\xaa\x32\x2a\x25\x41\x54\x89\xb3\xee\x99\x4a\xef\xd8\xce\xfe\x36\x60\x14\x90\xbb\x3d\xa5\x1d\xe9\x4d\x78\x76\x2c\x34\x15\xcf\x65\xdd\x32\xde\xde\xde\x6e\x8c\x8d\x8d\xa1\x50\x28\x34\x92\x18\xb5\xd2\xfe\x8e\x61\x08\x0d\x0c\x78\xb8\x3d\xba\x4f\x55\x88\xc5\x62\x38\x7e\xfc\x38\x14\x45\xd1\x88\x11\xdc\x3e\xe7\x7f\xfc\xe8\x58\xe8\xb7\x3c\x86\xe8\xb4\x31\xb6\x0d\x85\xeb\x8c\x64\xc8\x7a\x5f\xba\xbf\x15\x0c\x50\x14\xac\x67\xdc\x66\x7a\xc5\x6b\xc4\x93\x1e\x23\x91\xf4\x98\x89\xac\x66\x26\x73\x2e\x99\x2d\xa8\x32\x6b\x12\x1b\x52\xc0\x00\x00\x21\xed\xc9\x57\xe1\xf1\x16\x45\xc0\xaf\x2b\xc1\x60\x5e\x0d\x35\xe7\xd4\x70\x28\xaf\x86\xfc\xba\x08\x28\x92\x54\x38\x72\xae\xba\x32\x57\x7f\xcb\x1f\x13\x33\x15\x2a\xfc\xdd\x37\x76\x2f\xfc\x32\x80\xc4\xdb\x6f\xbf\x6d\xd4\x28\xd6\xf7\x24\xa8\x68\x6c\xec\x5b\x6f\xf8\x58\x6f\x44\x55\x0f\x53\x7e\x1f\x8b\xc5\xc4\xa7\x3e\xf5\x29\x21\x84\xd0\x5c\x26\x45\x8f\x8c\x35\xff\x2f\xbb\x66\x03\xff\x5e\x30\x79\xaa\xb5\x02\xe7\x67\x0f\x7b\xda\xc9\xc1\x18\x56\xfc\x06\x30\x12\x8c\xbc\x4b\x66\x17\xfd\xc5\xb9\xe9\x50\xe1\xfa\x5c\xb0\x30\xb1\xec\x2b\xce\xe4\x5d\x72\xc5\x24\xa4\x41\xc8\x02\xc8\x03\xd0\xad\x7f\xa3\x4e\x99\x54\xc7\xbf\x07\x80\x07\x0c\x9f\x22\x11\xf0\xeb\x4a\x24\x9a\x71\x75\x77\x24\xdd\xfd\x5d\xab\xee\xde\x48\xc6\xd5\xaa\x99\xd0\xca\x24\xd8\xf3\x6c\x35\xe5\x73\x14\x60\xc3\x98\x94\xdb\x58\x78\x71\xcb\xca\xb7\xad\x79\x3f\xb8\xdd\x6e\xbb\xfe\x6f\xd5\xde\x76\x5b\x30\x6a\xcd\x4b\x38\x00\xeb\x19\x12\xeb\x11\xde\xd0\xaa\x7c\xf8\xf0\x61\xb1\x63\xc7\x0e\x41\x44\x1e\x77\x91\xda\x4f\x7c\x14\xf9\xcd\xd8\xb2\xe7\xa7\xc0\x10\x55\xee\x37\xe5\x0f\x8f\x51\x96\xe1\x70\x7c\x8b\xf6\xfc\x16\x1a\x63\x00\x20\xa3\x99\xe9\x89\x70\xee\xca\x58\x24\x37\x32\x17\xd4\xaf\x64\x5d\x72\x9e\xc1\x09\x22\x4a\x30\x73\x16\x40\x9a\x88\xca\x8c\xc3\xcc\x06\x11\x49\x66\x96\xd6\xb5\x94\x66\x89\x38\xc1\xcc\x02\x80\x20\x22\x95\x99\x35\x00\x1e\x53\x21\xcf\xaa\xc7\xf0\x25\xbd\x66\x70\x2c\x9a\x0f\x12\x23\x1c\x28\x28\x1d\xdd\x09\xf7\xd0\xc0\xb2\x77\x7b\x4f\xc2\xd3\xef\x36\x84\x07\x5c\xe9\x35\x9d\x43\x91\xaa\x61\xfc\x0d\x30\x45\x21\xf5\x17\x86\x56\xfe\x22\xe1\x35\xae\x5b\xf4\xca\x44\x22\x51\xaf\xaa\x45\x9d\xfb\x7a\x4c\x71\xdb\x30\x4e\x06\xaa\x05\xc8\x3a\xf7\xf5\xe2\xd6\x7d\x76\x30\x8f\x2f\x98\x53\x06\x4e\x8e\x46\xbe\xd2\x96\xd2\x8e\x13\x08\x20\x47\x07\xc3\x6c\x55\xa2\x83\x49\x88\xcb\xf2\x86\x9c\xf1\x16\xcc\xc6\x00\x80\xae\x48\x7d\xaa\xb9\x30\x31\xd2\x9e\x79\xe7\x7a\x4b\xfe\x82\xae\xf0\x0c\x08\x71\x00\x71\x00\x49\x02\xa5\x01\xe4\x89\x68\x8d\xb4\xb1\xfd\x78\x6c\x67\xb2\x5a\xa7\x32\xa7\x13\x9a\xf5\x4e\x05\xa0\x5a\xd2\x40\x03\xe0\x63\x42\x20\xe5\x31\x43\xa3\xed\xd9\x1f\x8e\xb6\x65\xa3\x3e\x5d\xf4\x0c\xc4\xbd\xbb\xb7\xcf\xf9\xf7\xb6\xa5\xb4\x4e\x85\x49\x38\x3f\x0e\xaa\xcb\x3d\x40\x2d\x46\x82\xf1\x56\x5f\xf2\xfb\xd7\x5b\xf2\xa7\x40\x98\x03\x90\x2d\x16\x8b\xf2\xd2\xa5\x4b\x1b\x69\x93\x7a\xf1\xb7\x15\x63\xeb\x40\x77\xc4\x48\xf8\xd0\x43\x0f\x61\xe7\xce\x9d\x82\x88\x7c\xcd\x39\x75\xf0\x73\xe7\xa3\x7f\x18\xce\xaa\x07\xcb\x5d\x8f\x05\x74\x76\x4a\xb5\xb6\x92\xaa\x2f\xb5\x06\x03\x00\x05\xd5\xcc\x8f\xb6\x65\xdf\x3f\xd7\x91\x3e\xb3\xe2\x33\x2e\x73\xa9\x92\x17\x00\x24\x00\x24\x51\xea\xa2\xf2\xb6\x94\xb1\x68\x94\xb3\xb3\xb3\x30\x0c\x03\xf6\xf5\xfc\xf9\xf3\xb2\xb5\xb5\x55\x2c\x2c\x2c\xc8\xe6\xe6\x66\xb1\xba\xba\x2a\x9b\x9b\x9b\x85\xcb\xe5\xc2\xd2\xd2\x92\xdc\xb9\x73\xa7\xf0\xf9\x7c\x88\x44\x22\xf0\xfb\xfd\x08\x87\xc3\x76\xb9\xed\x7f\x0d\x56\x17\xc7\xcc\x41\x22\x8a\x02\x88\x0a\x89\xce\xb6\x94\xb6\x63\xcf\x74\xd3\xc3\xb1\x65\xcf\x90\x4b\x0a\x75\x6d\xb9\xea\x95\xb5\xf4\x7c\x25\x9a\x3d\xfb\xec\xb6\xe5\xdf\x31\x05\xde\x07\x30\x05\x20\xfd\xf2\xcb\x2f\xcb\xcb\x97\x2f\xdb\xf5\xfd\xff\x4f\x43\xe2\xe1\xc3\x87\xb1\x63\xc7\x0e\x01\xc0\x17\xcd\xba\x76\x3e\x75\x7e\xd3\x1f\x34\xe7\xd5\x07\x6f\x54\x69\x76\x1c\xb0\xb6\x32\xed\x38\x06\x23\xe7\x92\xd9\x0b\xed\x99\x77\xde\xef\x4a\xbd\x92\x71\xcb\xab\xcc\x3c\x83\x0a\xe3\xd8\xd2\xc6\x60\x66\x99\xcb\xe5\xe4\xe4\xe4\x24\x66\x67\x67\xb1\xb2\xb2\x82\xc5\xc5\xc5\xdb\x32\x48\xe8\xea\xea\x42\x4b\x4b\x0b\x3a\x3a\x3a\xd0\xda\xda\x6a\x7b\x0b\x38\x99\x29\xc0\xcc\x61\x00\xad\x04\xea\x0e\x67\xd5\x6d\xfb\x27\x83\xc7\x07\x17\xbd\xdb\x35\x29\xb4\x7a\x75\xe0\xfc\x38\x96\x7d\xc5\x99\x6f\x3e\xb0\xf0\x5b\x39\x4d\xbe\xc9\xcc\x13\x00\x92\xa3\xa3\xa3\xc6\xe9\xd3\xa7\x6f\x40\xfa\xdd\x0b\xb5\x6d\xb7\x5e\xd8\xa8\x24\x92\x7b\xf6\xec\x11\x07\x0e\x1c\x10\x00\x7c\xc1\x9c\x32\xf8\xf9\x73\x9b\xbe\xda\x92\x73\xed\x2d\x41\xaa\x47\x45\x25\x22\xd6\x8e\x96\xea\x19\xf7\x18\x0c\x53\xc0\x18\x6d\xcb\x9c\xfd\x61\x4f\xf2\x85\xa4\xc7\x1c\x05\x61\x0a\x25\xc6\x89\x03\xc8\xc2\xd2\x69\x56\x57\x57\xe5\xf8\xf8\x38\xc6\xc6\xc6\xb0\xbc\xbc\xdc\x48\x67\xb3\xcb\x53\x6f\xb2\xf8\x46\x98\xda\x0f\x4f\x76\x76\x76\x8a\x58\x2c\x86\x58\x2c\x06\xaf\xd7\x6b\x3b\xba\x79\x00\x04\x00\x84\x01\xb4\x83\xd1\xdb\x96\xd2\x1e\x38\x74\x2d\xf8\x99\xbe\xb8\x67\x90\x6a\x98\xd4\x2e\x77\x41\xe1\xec\x77\x76\x2f\xfe\xde\x5c\x50\xff\x01\x80\x4b\x00\xe2\xf1\x78\x5c\xff\xf6\xb7\xbf\x0d\xd3\x34\x37\x44\xcf\xdd\xc0\xd0\x0d\x80\xf5\x2a\x11\x35\xef\xaa\xe2\x63\xb1\x98\x38\x7e\xfc\xb8\x50\x14\xc5\x17\xc8\x2b\x03\x3f\x76\x3e\xfa\x07\xd1\x8c\xeb\xf0\x8d\x5c\x20\xd6\x28\xd0\xe0\x8a\xb1\x84\x19\x4c\xc0\x74\xb3\x3e\x71\x7a\x20\xf1\x8f\x73\x4d\xfa\xbb\x20\x5c\xb7\xa4\x4e\x9c\x88\xb2\xcc\xac\x1b\x86\x61\x8c\x8d\x8d\x61\x74\x74\x14\x0b\x0b\x0b\xeb\xe5\x76\x47\xcc\x14\xce\x30\x30\x30\x80\xcd\x9b\x37\xa3\xbf\xbf\xdf\x96\x4a\x36\x23\x45\x01\x74\x0a\x50\xff\xe6\x25\xef\x91\x23\xe3\xcd\x8f\x87\x72\x6a\x94\xca\x2e\x90\x04\x29\x58\xbe\xb8\x65\xe5\xeb\x17\xda\x33\x7f\xcd\xe0\x11\x22\x5a\x48\xa7\xd3\xf9\xa7\x9f\x7e\xfa\xbe\x9b\xca\x70\xb6\x6a\xc3\x51\xd4\x46\x43\x6b\x6b\xab\x78\xea\xa9\xa7\xa0\x28\x8a\x4f\x33\xa8\xf3\x73\xe7\xa3\xbf\xdb\xb5\xea\x7e\xbc\x6a\xf4\xe4\x08\xb5\x23\x91\x7a\x0f\x0c\xa0\xa0\xca\xfc\xdb\xbd\xc9\x97\x3e\xec\x4c\xff\xc0\x50\xf8\x0a\x80\xeb\x00\x96\x50\xea\xaa\xf4\x74\x3a\x6d\x9c\x3b\x77\x0e\xe7\xce\x9d\xab\x47\x7f\x23\xe9\xf2\x71\x31\xeb\x49\xe4\xf2\x35\x10\x08\x60\xfb\xf6\xed\xd8\xb9\x73\x27\x54\x55\xb5\x25\x52\x10\x40\x2b\x18\xbd\x1e\x43\x0c\x1f\x1e\x6f\xfe\xb1\xed\x73\xfe\xfd\x2a\x93\xca\x60\x9c\xef\xc8\xbc\xf6\xd2\xe0\xca\x1f\x72\x49\xef\x99\x91\x52\x66\x5f\x78\xe1\x05\xe9\xf0\x13\xba\x65\x7a\x6e\x37\xe6\xb6\x19\x12\x83\xc1\x20\x9e\x78\xe2\x09\x34\x35\x35\x79\x84\x44\xf4\xd3\x1f\x85\xff\xd3\xf0\x82\xef\xdf\x50\x8d\x0a\x0c\x54\x04\x0d\x88\xcb\xdd\x53\x05\xc3\x55\xdd\xd7\x7c\x93\x7e\xfd\xa5\x2d\x2b\xdf\x98\x0f\xe8\x3f\x24\xa2\x31\x66\x9e\x03\x90\x20\xa2\x7c\x26\x93\x31\xde\x7f\xff\x7d\x7c\xf4\xd1\x47\x30\x0c\xa3\x1e\x5d\x1b\xd1\xed\x3e\x8e\xfe\xb7\xe1\xe0\xf5\x7a\xf1\xc0\x03\x0f\x60\x78\x78\x18\x2e\x97\x4b\x23\x22\x0f\x33\x87\x89\xa8\x13\x8c\xc1\x58\xdc\x73\xf4\xf8\xe5\x96\xcf\x67\x34\x33\xfe\xad\xdd\x8b\xff\xb5\xa0\xc8\xb3\x44\x34\xc1\xcc\xc9\x0f\x3f\xfc\x50\xbe\xf5\xd6\x5b\xb7\x8b\x94\xdb\x1a\xea\xf5\x2b\x1b\x91\x44\x6b\x30\x27\x4f\x9e\x14\xdd\xdd\xdd\x2a\x18\xe1\x4f\x5c\x0b\xfe\xc2\xa1\x6b\xc1\xff\x04\x50\xc3\x06\xb0\x87\xee\xa0\xfa\x5d\x1b\x13\xcb\xf3\xed\x99\xb7\x4f\x0f\x24\xfe\x5e\x57\x78\x04\x84\x09\x58\x52\x47\x4a\x69\x8c\x8c\x8c\xc8\x33\x67\xce\xd4\xb3\x59\x35\xa2\xf1\xbe\xc1\x9c\x38\x71\x42\xf4\xf5\xf5\xd9\xca\x76\x00\x25\xdd\xa8\x3b\x98\x57\xfa\x09\xd0\x57\xbd\xe6\x87\x00\x26\x00\x24\xae\x5d\xbb\x66\xfc\xe0\x07\x3f\xb8\xa1\xde\x79\xaf\xca\x55\xdb\x85\xc1\x01\xa8\xd5\x83\xea\xe9\x46\x12\x00\x8e\x1c\x39\x22\x76\xec\xd8\xa1\x02\x08\xc4\x96\x3c\x9f\x79\x62\x34\xf2\x55\xc5\xa4\x40\x95\x3d\xa5\x76\xfa\x95\x6c\xdb\x4f\x0d\x86\x4a\x86\xb3\xd7\x36\x27\xfe\xf1\x7c\x47\xe6\x69\x09\xbe\x48\x44\x53\xcc\x9c\x00\x90\x5d\x58\x58\x90\x6f\xbd\xf5\x16\xe6\xe6\xe6\x6a\xca\x7a\xdb\xf4\x9a\xf5\x30\x8d\xf4\xc3\x9b\xc6\xc4\x62\x31\x71\xf8\xf0\x61\xf8\xfd\x7e\x95\x99\x7d\x44\x14\x44\x69\xd4\x66\xa0\x24\x61\x93\xe9\x74\x5a\xff\xfa\xd7\xbf\xfe\xb1\xf3\x8a\x44\x22\xc2\x1a\x48\x7c\xac\x74\xea\x61\x6e\x66\x14\x56\x37\x74\x75\x75\x89\x93\x27\x4f\x0a\x22\xf2\x85\xb2\xea\xce\x9f\xfc\xa0\xf5\x7f\xf8\x74\xa5\xdf\xe9\xa9\x5c\x31\x12\x3a\xa6\x7e\xca\x6b\xaf\xaa\x31\x19\x97\x4c\x3e\xbf\x35\xfe\x77\x13\xe1\xfc\xf3\x20\x5c\x02\x30\x03\x20\x69\x18\x86\xfe\xce\x3b\xef\xe0\xc3\x0f\x3f\xfc\x58\x7a\xda\xfd\x16\x8e\x1d\x3b\x26\xb6\x6e\xdd\x5a\x5e\x9a\x84\x52\x03\x19\x85\x42\xc1\xf8\xf3\x3f\xff\xf3\x5b\x2e\xeb\xe1\xc3\x87\x45\x2c\x16\x83\xdb\xed\x86\xa2\x28\x42\x4a\x89\x7c\x3e\x2f\x67\x67\x67\x31\x3a\x3a\x8a\xd9\xd9\xd9\xdb\x52\x8f\x1f\xdb\x90\xf8\x73\x3f\xf7\x73\xc2\xed\x76\x7b\x54\x93\x3a\x9f\x3a\x1f\xfd\x9d\xbe\x84\xe7\x49\xa0\xb1\x91\xb0\x91\x6d\x07\x60\xa4\x35\x33\xf9\xbd\x1d\x4b\x7f\x32\xdf\x54\x3c\x65\x31\xcf\x1c\x33\xa7\x53\xa9\x94\xf1\xea\xab\xaf\xda\x85\xbe\xab\xc3\xd4\x1b\x60\x9c\xe1\x96\x31\x5d\x5d\x5d\xd8\xb6\x6d\x1b\x06\x06\x06\xc0\xcc\x18\x19\x19\xc1\xeb\xaf\xbf\x7e\xd3\xe9\x28\x8a\x82\x87\x1e\x7a\x08\x5b\xb6\x6c\x81\xcb\xe5\xb2\xad\xe4\xaa\xb5\x3a\x57\xa2\x64\x7d\x37\x00\x18\xe3\xe3\xe3\xf2\xf9\xe7\x9f\xff\xd8\xe5\xaa\x55\xa2\x37\x1c\x88\x08\x8f\x3d\xf6\x18\xfa\xfb\xfb\x55\x02\x85\x0f\x5c\x6f\xfa\xf9\xc3\x13\xcd\xbf\x49\x96\xde\x53\x6b\xf8\x73\x9a\xca\xea\x59\xa2\x13\x9e\xe2\xd2\xf7\x76\x2c\xff\xc9\x92\x5f\x3f\x45\x44\x57\x80\x92\xd9\x7e\x6c\x6c\x4c\xbe\xfe\xfa\xeb\xc8\xe5\x72\xce\xc2\xd4\x2b\x60\xa3\xe7\x3b\x81\xb9\x23\xdd\xc1\xc7\xc5\x3c\xf1\xc4\x13\xa2\xab\xab\x4b\x45\xc9\x25\xb8\x7f\xd7\x9c\xff\x8b\x7d\x71\xcf\x31\x4f\x51\x84\x75\x95\x93\x53\xcd\x85\xb7\xcf\x77\xa4\xff\x7e\x36\xa8\x5f\x64\x70\x36\x97\xcb\x19\xdf\xfb\xde\xf7\xb0\xba\xba\xfa\xb1\xbb\xb0\xba\xba\x4d\x9d\x50\xe6\xc0\xcd\x9b\x37\xe3\x53\x9f\xfa\x94\x00\x10\xd8\x94\x76\xed\xfd\xc9\xf7\x5a\xbf\xe9\x92\x14\xaa\x32\x12\x96\x9d\x5e\xb8\x26\x99\xea\xb8\xb4\xdb\x4c\x7c\x77\xe7\xd2\xff\xb3\x14\x28\x9e\x42\xc9\x68\xb6\xc4\xcc\xd9\x8b\x17\x2f\xca\x53\xa7\x4e\xd5\x53\xec\xec\x02\x35\x0a\x3f\x72\x98\xcf\x7e\xf6\xb3\xa2\xa7\xa7\x47\x05\x23\xb0\x7b\x26\xf0\xb9\xc3\x13\xcd\xff\xc5\x6d\x50\x77\xad\x7b\x88\x21\x38\xfe\x41\x67\xfa\x2b\x67\x62\xab\x7f\x2a\x05\x12\x35\x7a\xd6\x4d\xd3\xa3\x38\x80\x04\xc7\x14\x65\x83\x7f\x00\x20\x55\x55\xf1\x99\xcf\x7c\x06\x6e\xb7\xdb\xad\x98\xe8\x38\x71\x31\xf2\x5b\xe1\xbc\x6b\xbb\xed\x98\x50\xf1\xa9\xab\xf5\xb8\xb3\xfd\xee\x2a\x98\xac\x4b\x26\xbf\xb7\x63\xf9\x8f\x16\x03\xc5\x97\x41\xb8\x0c\x60\x81\x99\x73\x67\xce\x9c\x91\xef\xbc\xf3\x4e\x2d\x2d\xbc\x01\x1a\xef\x26\xa6\x76\x7a\xf7\x9e\x60\x76\xee\xdc\x49\x3b\x77\xee\x14\x00\x9a\x86\x17\x7c\x27\x8f\x5f\x6e\xf9\x43\x4d\x8a\x08\xc1\x5e\x94\x5d\xba\x12\x08\x0a\x93\xb7\x23\xa9\x3d\x4a\x40\x62\x2a\x54\xb8\xa0\xb9\x35\x3d\x18\x0c\xf2\xc4\xc4\xc4\x2d\xd1\x63\x4b\x14\x9b\xcb\xe4\x46\xfe\x0f\x1e\x3c\x88\xa6\xa6\x26\x15\x40\x60\xc7\x5c\xe0\xc9\xae\x55\xf7\x23\xa5\x9f\x3b\x16\xd4\xad\x5d\xaa\x8b\x5a\x4c\x51\x91\xf9\xe7\xb7\xc6\xff\x6a\xbe\x49\x7f\x15\x84\x2b\x28\x31\x4f\xfe\x8d\x37\xde\x90\x17\x2e\x5c\xa8\x47\x57\x23\x1a\x7f\x64\x31\x44\x84\x3d\x7b\xf6\x00\x80\xe6\xd5\x45\xf7\xe1\xf1\xe6\xdf\xb0\x57\xb1\xd8\x93\x42\x65\x87\x29\x2b\x10\x48\xec\x99\x6e\xfa\xd5\x68\xc6\xb5\x1d\x80\x67\x60\x60\x40\x34\x35\x35\xdd\x12\x3d\x02\x25\x26\x72\xf6\x79\xc2\x71\x5d\xf3\x1f\x89\x44\xc4\xd6\xad\x5b\xc1\xcc\x1e\x7f\x41\xe9\xfd\xc4\xf5\xe0\xaf\x08\x90\x5a\xf2\x7d\xb4\x74\x1b\xc7\x30\xdd\x19\x9c\x18\x49\x2c\x4f\x0d\x24\xbe\x63\x8d\xb6\xae\xa0\xd4\x6d\xe5\xcf\x9c\x39\x23\xcf\x9f\x3f\x2f\x51\x4d\xd7\xbd\xbe\xaf\xad\xa7\xfb\x06\xd3\xd5\xd5\x65\xef\x4a\xe2\x8b\xc5\x3d\xc7\x9a\x0a\xca\x10\x97\xcd\xb0\xd6\x95\xac\xba\xe7\xd2\x1b\x06\xc3\x65\x52\x78\x68\xc1\xf7\x14\x33\x07\x84\x10\xa2\xaf\xaf\xef\x96\xe8\x71\x4a\x20\x27\x87\x01\xf5\x39\x50\x1e\x38\x70\xa0\x64\x49\x05\x05\xf7\x4f\x36\xfd\x9c\x4f\x17\xbd\x65\x36\x61\xae\x0c\xd3\xd9\xa1\x28\xb3\x63\x15\x84\x55\x88\x73\xed\x99\xd3\xe7\x3b\x32\xdf\x65\xf0\x25\x00\x0b\x52\xca\xac\x43\xf2\x38\xf3\xbf\x1f\xee\x1b\x7d\x85\x8d\xfe\xef\x1a\xa6\xa3\xa3\xc3\xde\x07\xc9\xd7\x9a\xd2\xf6\x10\x43\xa0\xdc\x06\x95\xb6\xb0\x57\xc3\x12\xac\x7b\x06\xba\x92\xee\xfd\x00\x02\x44\xa4\xc6\x62\xb1\x5b\xa2\xa7\x11\x67\xa1\x4e\xbc\x68\x6d\x6d\x15\xdd\xdd\xdd\x82\x99\x3d\x91\xac\x6b\x78\xfb\x9c\xff\x67\xc8\x22\x8e\x18\x95\xee\xcb\xa2\x9e\xca\x0a\x74\x05\x03\x10\xe6\x9a\xf4\xb1\xd7\x07\x12\xff\x83\x09\x97\x88\x68\x8e\x99\xb3\x63\x63\x63\xf2\xfc\xf9\xf3\xa8\x93\xbf\xf3\xb9\x5e\xdc\xdd\xc0\x34\xfa\xcd\x3d\xc7\x74\x76\x76\x02\x96\xbb\xad\x66\x8a\x90\xad\x7b\x56\x06\x30\x80\xcd\x49\xc4\x56\xbc\x85\xf1\x14\x45\x14\xa5\xb9\x39\x21\x84\xb8\x61\x5e\xf5\xe2\x9c\x3e\xd1\xb2\x06\xb4\x26\xfe\xc1\x07\x1f\x14\x44\xa4\x12\x28\xb8\x6f\xb2\xe9\xe7\x34\x93\xc2\x65\x75\xd3\xf2\xac\x23\xdb\xc5\xd4\xf6\xee\xab\xda\x66\x85\x51\x70\x71\xf6\xc5\xa1\x95\x3f\xd7\x15\x39\x02\xd0\x0c\x33\xa7\x27\x27\x27\x8d\x97\x5e\x7a\xe9\x46\xf9\xd7\xbe\xbf\x9b\x18\xb9\x0e\xf6\x5e\x63\x00\x94\xea\x3b\xe5\x36\x12\x4e\xb5\xbf\xac\x40\x3b\x57\xab\x38\x42\x46\x33\x93\x96\xb7\xa5\x93\x41\x6e\x8a\x9e\x0d\x7f\x8d\x91\x48\x44\xf4\xf7\xf7\x0b\x22\xf2\x44\xb2\xea\xd0\xe0\xa2\xf7\x49\x62\x07\x61\x35\x44\xb2\xa3\xff\xb5\xe3\x99\x80\xb7\x7a\x57\xff\x71\xc9\x5f\x7c\x07\xa5\xe9\x89\x64\x2a\x95\x32\x9e\x7d\xf6\x59\xe9\xcc\xab\x86\x8e\x7a\xd7\xfb\x05\x53\x4f\x3f\xb8\xab\x98\x44\x22\x01\x66\x96\xcc\x6c\x4c\xb6\x14\x2e\x98\xc4\x06\x60\xd5\x7f\x59\x8d\xb0\x35\x22\x94\xaf\x0c\xc6\x58\x24\xf7\x3e\x33\x1b\xd6\x8e\x69\x70\xa4\xbb\x61\x7a\xea\x11\x58\xef\x19\x07\x0f\x1e\x04\x4a\x7b\xf3\x04\xf7\x4c\x35\x7d\xa9\x64\xf3\xa9\x30\x8a\x4d\x54\x25\x54\xd8\xdd\xc6\x4c\x37\x17\x2e\x9d\xeb\xcc\x7c\x0f\x84\x31\x00\x71\xd3\x34\xf5\xd7\x5f\x7f\xdd\x99\x9f\xb3\x10\x58\xe7\xf9\x5e\x63\x80\xb5\x5f\xea\x3d\xc1\xac\xac\xac\x80\x88\x24\x11\x65\x67\x82\x85\x91\x6b\x2d\xf9\xf7\xcb\xed\x40\x76\xcd\x57\x66\x01\xec\x16\x4a\x78\x8d\x99\x8b\x6d\xd9\x53\x44\x94\xb6\x76\x4e\xbb\x25\x7a\x04\xaa\xc5\x52\x43\xc5\xad\xab\xab\x0b\x00\x3c\x4d\x05\xa5\x7f\x70\xd1\x77\x12\x28\xeb\xc9\x40\x99\x85\x9c\x8c\xc4\x55\xca\xb3\x49\x6c\x9c\x1a\x58\xfd\x1b\xcb\x9f\x67\x09\x40\xfe\xdc\xb9\x73\x72\x72\x72\x72\x3d\x45\xad\x96\x96\xda\x42\xdc\x2b\x0c\x1a\xdc\xdf\x75\xcc\x87\x1f\x7e\x28\xa5\x94\x06\x80\xac\x14\x98\x7b\x79\xcb\xca\x5f\xae\x78\x0d\xc7\x4c\x73\x85\x6d\xec\x76\x29\xa8\x32\xfb\xc2\xd0\xca\xd7\xf2\x2e\x39\x06\x20\xcd\xcc\xc6\x8b\x2f\xbe\x78\x4b\xf4\xd4\x93\x3a\xce\x7b\x01\x40\x1c\x3e\x7c\x58\x08\x21\x54\x00\x81\x9d\xb3\xfe\xa7\xdc\xa6\x88\xda\x26\xc1\xf5\x8c\x84\xce\xa5\xc2\xa3\xed\x99\xd3\xf3\x41\xfd\x87\x28\x4d\x8e\xa6\x97\x97\x97\x8d\xf7\xdf\x7f\x1f\xa8\x2f\x79\x6a\xc5\xe8\x7a\x8a\xdc\xbd\xc4\xd4\xd2\x7e\x4f\x30\x13\x13\x13\x40\x69\xf1\xc0\x5c\xca\x63\x9e\xfd\xf6\xee\xc5\xaf\x5c\xda\x94\x3b\x6b\x08\x36\xca\x83\x18\x30\x24\x41\x4e\x35\x17\xae\x7c\x7b\xd7\xc2\xef\x4d\x87\x0a\x2f\xa3\xd2\x16\xf2\x56\xe9\x71\x2a\xd1\x4e\x69\x54\x15\x62\xb1\x98\x00\xa0\x69\x06\x45\x87\x17\xfc\x9f\xa3\x7a\x20\x00\x6b\x0c\x89\x96\x5e\x94\x73\xc9\xe4\x0f\x7b\x92\xdf\x45\xc9\x93\x30\x29\xa5\x34\x4e\x9d\x3a\x85\x62\xb1\x08\x34\xfe\xca\x9c\x05\xb8\x5f\x31\x8d\xea\xec\xae\x62\x5e\x78\xe1\x05\xf9\xa5\x2f\x7d\xc9\xf0\x7a\xbd\x49\x00\x13\x29\x8f\x89\x67\xb7\x2d\x2f\x84\xb3\xae\x1d\x1d\xab\xda\x60\x40\x57\x42\x79\x55\x66\xe7\x9b\xf4\xb1\xf9\x26\xfd\x9c\x14\x18\x43\xc9\xdf\x28\x2e\xa5\x74\x3a\xe9\xdf\x34\x3d\xf6\x51\x07\xf5\x40\x02\x28\xf9\xf6\xfa\x7c\x3e\x01\xc0\xd7\xbb\xe2\x39\xd8\x94\x57\x06\x1a\xaf\x9a\xb0\x5d\x33\x50\x36\x24\x12\x11\x46\xda\x33\xa7\x93\x1e\x73\x84\x99\x97\x88\x28\x7b\xe9\xd2\x25\xe9\xf0\x59\x6e\xd4\xc7\xd6\x93\x4c\xb2\xc1\xfd\x9d\xc6\xd4\x86\xf5\xf4\xb5\x7b\x82\xf9\xfe\xf7\xbf\x8f\x27\x9e\x78\x22\xef\x76\xbb\x97\x00\xe8\x0c\xc4\x97\x7c\xfa\xc4\x92\x4f\x0f\x12\x91\x66\x2d\x6b\x4a\x32\x73\x1c\x8c\x25\x94\x56\xaf\xe8\xa7\x4f\x9f\x6e\xd4\x16\x1b\xa2\xa7\xde\xd2\xe6\xaa\xfe\x6e\xfb\xf6\xed\x02\x25\xe5\x39\xb0\x6d\xde\xff\x94\x00\xa9\x65\xf7\x0c\x2e\xa9\x67\xec\x70\xf6\xa9\xf8\xf7\x94\xba\xb3\xbc\x6a\xa6\xdf\xef\x4c\x3f\xcd\xe0\x19\x00\xc9\x62\xb1\x68\xbc\xf6\xda\x6b\x37\x94\x7a\x68\xfc\x35\xd4\xbb\xbf\x1b\x18\x34\xc0\xd4\x0b\x77\x1d\xb3\xbc\xbc\x8c\xa7\x9f\x7e\x5a\x9c\x38\x71\x42\xf7\xfb\xfd\x09\x6b\xa1\xc1\x02\x11\x69\x28\x2d\x82\x94\xcc\xac\x13\x51\x9e\x99\xf3\xf9\x7c\xde\x78\xf3\xcd\x37\x71\xf9\xf2\xe5\x8d\xb4\x45\x43\x7a\x9c\x87\xad\x38\xbf\xbc\x32\xb8\xad\xad\x0d\x00\x3c\x7e\x5d\x74\x76\x27\xdc\x87\x9d\x63\xf3\x92\x9d\xb0\x62\xfb\xb1\xb5\xfd\xb2\x18\x22\xc2\xa5\x4d\xb9\x37\xd3\x6e\xf3\x12\x4a\x8a\xb3\x7e\xe1\xc2\x85\x5a\x42\x6a\xbf\xf8\x46\x05\xaa\xa5\xef\x6e\x62\x1a\xfd\xe6\xbe\xc2\x2c\x2f\x2f\xe3\xeb\x5f\xff\xba\x7c\xf8\xe1\x87\x8d\xbe\xbe\x3e\xc3\xe7\xf3\xe5\x1d\x58\x00\x90\x86\x61\xc8\x4b\x97\x2e\xe1\xf4\xe9\xd3\x4e\xbd\xe7\x96\xe9\x59\xd7\x90\xb8\x73\xe7\x4e\x5b\x79\xf6\xf4\xae\x78\x0e\x56\x0c\x87\x65\xb7\xc2\x2a\x23\x61\xad\x21\xb1\x28\xa4\x7e\xae\x33\xfd\x3c\x08\x73\x60\x64\x75\x5d\x37\xde\x7e\xfb\xed\x5a\x06\x71\x16\xa0\xde\xd7\xdf\x88\xbe\xbb\x89\x59\x8f\xae\xfb\x0e\x73\xfa\xf4\x69\x69\xe9\x35\x32\x16\x8b\x89\xae\xae\x2e\x4c\x4f\x4f\x43\x4a\x89\x6b\xd7\xae\xdd\x48\x0a\xdf\x54\x5e\xeb\x1e\xf7\xd4\xd9\xd9\x59\x5a\x17\xce\x08\x0c\x2e\xf9\x3e\x55\xb6\x2a\x97\xbb\x2c\x38\x26\xf6\xd7\x1a\x12\xe7\x82\xfa\xa5\x25\x7f\x71\x04\xd6\x2a\x8a\x91\x91\x91\xda\x3c\xd6\xe3\xfe\x5a\x4c\x3d\x49\x79\xaf\x31\xce\x70\x57\x31\x03\x03\x03\xc2\xea\x1d\x00\x00\x85\x42\x01\xe3\xe3\xe3\x58\x59\x59\xa9\x4a\x67\x7c\x7c\x5c\x8e\x8f\x8f\x3b\xd3\x11\x00\x10\x08\x04\xb0\x6d\xdb\x36\x74\x74\x74\xc0\xe3\xf1\x94\xd3\x49\x24\x12\x18\x1f\x1f\xc7\xf8\xf8\xb8\xbd\xd2\x65\x5d\x7a\xec\xcd\x15\xd6\x28\xd2\x8a\xa2\xa0\xa7\xa7\x07\x00\x34\x8f\x21\x5a\xdb\x93\xda\x5e\x7b\x56\x17\xa8\x28\xd0\x8d\xbc\x0d\x01\xe0\x42\x5b\xe6\x35\xa6\x92\x5b\x2a\x11\xd9\xeb\xb9\xeb\x29\xed\xb5\xe1\x7e\xc7\x00\x6b\x1b\xf6\x8e\x63\x3c\x1e\x0f\x8e\x1e\x3d\x0a\x6b\x46\xa0\x76\x00\x24\xf7\xed\xdb\x27\x13\x89\x84\x7c\xf3\xcd\x37\x31\x39\x39\x59\x37\x1d\x9f\xcf\x27\xf6\xee\xdd\x8b\x6d\xdb\xb6\x09\x00\x4e\x5f\x6c\x00\x90\xa1\x50\xc8\xe8\xeb\xeb\x33\x0e\x1d\x3a\x24\x2d\x1d\x69\x5d\x9a\x55\x54\x73\x96\x5d\x00\x69\x9a\x26\x14\x45\x51\x01\x78\x5a\xd3\xae\x61\x6f\x51\x44\x9d\x06\xf1\x92\xae\xe3\x98\xac\xab\xba\x63\xe4\x55\x99\xbc\x16\xce\xbf\x85\xd2\xca\xd1\xfc\xcc\xcc\x8c\x4c\x24\x12\xeb\x89\x47\x3b\x6c\x44\x91\xad\x8d\xbf\x23\x18\x22\xb2\x5d\x52\xd6\x13\xfb\xf5\x74\x84\xdb\x8e\x19\x18\x18\xc0\x43\x0f\x3d\x04\xbf\xdf\xaf\x82\xe1\xf1\xe9\x22\xd4\x9d\x70\xef\x0c\xe6\xd5\xf6\xbc\x2a\xd3\xf3\x4d\xfa\xc8\x52\xa0\x38\xd3\xd2\xd2\x92\x3f\x71\xe2\x84\x7e\xe9\xd2\x25\xe9\x18\xac\x94\xd3\x39\x79\xf2\x24\xc2\xe1\xb0\x0a\x86\xa7\x39\xa7\x76\x6e\x5b\xf0\x3d\xde\x9d\x70\x7f\xc2\x25\x45\x20\xa5\x19\x53\xe3\x91\xfc\xcb\x97\x36\x65\x4f\x93\xc7\x9b\xf8\xe4\x27\x3f\xa9\x77\x74\x74\xd4\x4d\xc7\xa6\xd9\xc9\xc5\x55\x5f\xc1\x91\x23\x47\x00\x6b\x96\xb7\x77\xc5\xf3\x09\x02\xa9\xc4\x28\x6d\xbf\x06\x67\xa8\x7e\xb2\x25\xd2\x54\xa8\x30\x92\x73\xc9\x29\x94\x56\x8f\x1a\xe7\xce\x9d\xab\xcd\xc3\x19\x6a\x15\xb6\x1b\xe1\x6e\x1b\xa6\xa5\xa5\x45\xf4\xf6\xf6\xa2\xb3\xb3\x13\x5e\xaf\x17\xd1\x68\xb4\x0c\x5a\x5d\x5d\x85\x75\x16\x98\x98\x9d\x9d\xc5\xf4\xf4\x34\x0a\x85\x42\x83\x24\x1b\xe6\xf5\xb1\x31\x5b\xb6\x6c\xc1\x23\x8f\x3c\x22\x88\x48\xf3\x14\x45\xeb\x27\xae\x05\x7f\x76\xc7\x9c\xff\xdf\xba\x4c\xea\x84\x75\xd2\x10\x13\xb2\x33\xc1\xc2\xf7\x4f\x0d\xac\x7e\x65\x3e\xa8\x8f\x0c\x0f\x0f\x67\x85\x10\x78\xf5\xd5\x57\xc1\xcc\xf0\x7a\xbd\x78\xe2\x89\x27\x10\x0e\x87\x35\x21\x11\xdc\x3f\x19\xfc\xa9\xfd\x93\x4d\xbf\xe6\x32\x45\xa7\xbd\x82\xa6\x0d\x2e\x6c\x5e\xf6\xfe\xc2\xde\xa9\xa6\xd3\xcf\x6f\x8d\xff\xfa\x5c\x50\x3f\x3f\x3c\x3c\x9c\xcd\x66\xb3\xb0\xbc\x43\xd7\x04\xe7\x1e\x89\x84\x52\xc5\x32\x00\x3e\x70\xe0\x00\xf9\x7c\x3e\x17\x80\xd6\x43\x13\xcd\xbf\x10\x2c\x28\xdd\x6b\x99\xa7\x36\x94\x07\xf1\x78\xa7\x27\xf5\x9d\xa5\xa6\xe2\x19\x00\x8b\xf9\x7c\xbe\x60\x71\x31\xd7\xfc\xdb\x79\x56\x12\x68\x8c\xe1\xdb\x89\x19\x1a\x1a\xa2\x47\x1f\x7d\x14\x7b\xf7\xee\x15\x3d\x3d\x3d\x4a\x73\x73\xb3\xea\xf5\x7a\xdd\x04\xb8\x51\x5a\xcd\xa0\x79\x3c\x1e\xb5\xa9\xa9\x49\x69\x6d\x6d\x15\x03\x03\x03\x3c\x3c\x3c\xcc\x3e\x9f\x0f\x53\x53\x53\xb2\x4e\x9a\x8d\xf2\xfa\x58\x98\xe6\xe6\x66\x3c\xf6\xd8\x63\x70\xb9\x5c\x6e\xaf\x2e\xba\x7f\xec\x7c\xf4\xf7\x07\x97\xbc\xff\x56\x61\x11\x24\x10\xc1\xb2\xb5\x11\xc8\xd5\x54\x50\xb7\x6f\x59\xf2\x3d\xbe\x10\xd0\xcf\xae\x7a\xcc\xc5\x48\x34\x52\x34\x0c\x83\xe7\xe7\xe7\x71\xec\xd8\x31\x58\x0e\xf7\xcd\x87\xae\x35\xff\xfc\x27\xae\x05\x7f\x4b\x65\xd1\x0c\x58\xd6\xbb\x4a\x3a\xe4\x2d\x2a\x7d\x9b\x97\xbd\x8f\x8e\x87\x73\xaf\xe6\x34\xb9\xda\xd6\xd6\x66\x5c\xbf\x7e\x9d\xb3\xd9\x2c\x6a\x69\x6e\x68\x48\x6c\x6e\x6e\x06\x33\x6b\x6e\x53\x84\x22\x19\xd7\x50\x85\x35\x2a\xa1\x91\x21\xd1\x10\x9c\x9f\x6e\x2e\x7c\xc0\xcc\x49\x22\xd2\xa7\xa6\xa6\xec\x74\xeb\x85\x9b\xd1\x0b\xea\x29\xb6\x37\x85\xe9\xe8\xe8\xc0\xb1\x63\xc7\x10\x0c\x06\x05\x00\x8d\x00\x8f\x3b\x65\xb6\x07\x56\xcc\x07\x7d\xab\x72\x87\x5a\x90\xdd\xc2\x84\x8f\x05\x74\x53\xa5\x78\xbe\x49\x7c\x94\x09\x29\xef\x67\x42\xca\x15\xb7\xdb\x9d\xde\xb5\x6b\x97\xbe\x7d\xfb\x76\xe3\xec\xd9\xb3\xb8\x70\xe1\x02\x74\x5d\xdf\x48\xb9\x6e\x19\xb3\x6f\xdf\x3e\x78\x3c\x1e\x8d\x18\xe1\x4f\x5e\x0d\xfd\x5a\x7b\x4a\x7b\xdc\x1e\xfa\xb2\x35\x0a\xb6\x9d\xf6\x40\x80\xdb\xa0\xee\x4f\x5f\x0a\xff\xee\xdf\x3e\xb8\xf0\xd3\x29\xb7\x71\x65\xdf\xbe\x7d\x59\x21\x04\x06\x06\x06\x04\x00\x5f\x67\x52\xdb\xbf\x6f\xaa\xe9\xd7\x08\x50\x2b\x33\x64\x6b\xd3\xf1\x16\xc5\xc0\x23\x57\x5a\xfe\x8f\xef\xec\x5a\xfc\x65\x26\xd2\x8f\x1e\x3d\xaa\x7f\xfb\xdb\xdf\x5e\x43\x73\x43\x43\xa2\xcb\xe5\x12\xcc\xac\x45\x32\xae\x7e\xcd\xa4\x50\xd9\x48\x68\xbb\xba\xad\x63\x48\x8c\xfb\x8c\xa9\x94\xdb\xbc\x8e\xd2\x76\x2b\x72\x7c\x7c\x1c\x75\xf2\xb1\x89\xb9\x91\x6e\xb2\x9e\x4e\xb4\x61\x8c\x10\x42\x7c\xe2\x13\x9f\x80\xb5\x5b\x9a\x46\x8c\x40\xf3\x82\x71\x70\xd3\x44\xf1\x7f\xf2\xad\x9a\x8f\x90\x44\x08\x80\x70\xce\x5b\x33\x00\xcc\x11\x00\xe4\x75\x2f\x9d\x8f\x77\xb9\xfe\x7a\xb9\xd7\xf5\x1d\x68\x62\x61\xff\xfe\xfd\x7a\x2c\x16\x33\xac\x33\x2d\x6e\xa6\x5c\x1b\xc6\x04\x83\x41\x11\x8b\xc5\x04\x33\x7b\xda\x53\xee\xdd\x83\x8b\xbe\x7f\x61\x59\x4b\x2a\x3b\xfc\x59\x5b\x05\x33\x55\x24\x49\xa0\xa0\x0c\xef\x9a\x0d\xfc\xf4\x99\xfe\xc4\xef\xa8\xaa\xaa\x1f\x38\x70\xc0\x40\x69\x7d\x58\x70\xf7\x4c\xe0\x5f\x29\x12\xc1\x8d\xa4\xd3\xb5\xea\x3e\xde\x9a\xd6\x76\xce\x36\x15\x12\xe1\x70\xd8\x08\x06\x83\x32\x99\x4c\x56\xd1\x5c\x1e\xd6\x39\xef\x77\xed\xda\x65\x1f\x15\xa9\x45\x33\xae\x41\x62\x12\x64\x33\x0f\x5b\xb9\x94\xa7\xba\xd6\x7a\x24\xce\x35\x15\x2e\xb1\x40\xd2\xb2\x7a\xca\xf1\xf1\x71\xe7\x10\xd2\x99\x67\x3d\x1a\x50\xe7\xbe\x16\x77\xd3\x98\x47\x1e\x79\x04\xbb\x76\xed\x12\x44\xe4\xf3\x64\xe4\xd0\xc0\xbb\xb9\xdf\xed\x7f\x2f\xff\xcd\xc0\x8a\xf1\xe3\x42\x72\x98\x00\x61\x7b\x4c\xda\xa1\xb2\x77\x33\x3c\xee\x1c\xef\x6f\xbf\xa2\x7f\x65\xe8\x4c\xf6\xbb\x2d\x33\xc6\x49\x02\x82\x91\x48\x44\xfb\xf2\x97\xbf\xbc\xa6\xfe\xd6\xa1\xe7\xa6\x30\x7d\x7d\x7d\x50\x14\x45\x00\xf0\xf5\xc7\x3d\x8f\x2a\xd2\x5a\x2e\x7e\x23\x6f\x43\x10\x06\x97\xbc\x9f\x21\x50\x10\x15\x53\x8d\x2a\x40\xc1\xce\x55\xf7\x7e\xe2\x8d\x79\x2d\x0a\x26\x5f\xe7\xaa\xfb\x00\x00\x8f\xa2\x28\xb6\xdf\x74\x15\x8d\xce\xaf\x40\xda\xf7\x9b\x36\x6d\xb2\xf7\x05\xf4\x44\x33\xae\x2d\x76\xe2\x95\xfa\x65\x54\x2c\x86\x76\x9a\x96\x71\x91\x18\x73\x41\xfd\x22\x80\x24\x33\x1b\xd6\xae\xea\xce\xf4\xed\xff\xda\xbc\x9d\xd7\x7a\x71\x12\x0d\xa4\xe5\x8d\x30\xc7\x8f\x1f\x17\x83\x83\x83\x2a\x98\x83\xcd\x8b\xe6\xb1\xc1\xb7\x72\xdf\x6c\x5a\x32\x7f\x8a\x18\x9a\xd3\x04\x51\x2e\x9b\xa3\x48\x76\xb4\x2d\x6d\xb5\x3c\xef\xec\x3d\x97\xff\xf3\xae\x91\xc2\xaf\x0a\x89\xa8\xa6\x69\x9e\x2f\x7f\xf9\xcb\xa2\xbd\xbd\x7d\x23\xf4\xc8\x9b\xc1\x74\x74\x74\x00\xa5\xa1\xb6\xaf\x39\xaf\x0e\x96\xdb\xba\xec\x6d\x88\x6a\x6f\xc3\xb2\x4d\x0e\xf0\xeb\x4a\xb7\x5a\xf2\xd9\xb2\x87\xe8\xaa\xcb\xa4\xa0\xcb\xa4\x10\x36\x98\x0e\x01\xf0\x14\x45\x3b\x11\x79\x00\x08\x4d\x2b\x6f\xaa\x56\xa6\xb1\xee\x17\x61\x1d\x85\xad\x82\xe1\x69\xc9\xba\xfa\x6d\x2e\x2d\x4f\x59\x90\x95\x83\xd3\x28\x64\x61\x24\xc1\x58\xf2\x17\xaf\x32\x73\x9e\x88\x0c\xc7\x26\x08\xb5\x92\xa6\x96\x89\xea\x61\x1a\x5d\x37\x8c\x39\x72\xe4\x88\x18\x1c\x1c\x14\xcc\x1c\x68\x5a\x32\x1f\xee\xfb\x20\xf7\xff\xba\x0a\x3c\x50\xb6\x7d\x3a\x96\xbc\x94\x74\x00\xbb\x3b\xa6\xaa\x06\xb1\x15\x40\x06\x40\xcc\x9e\xe8\xf5\xe2\x7f\xec\x1a\x2d\xfc\x2a\x49\x0e\x6b\x9a\xa6\x7d\xf2\x93\x9f\x84\xdb\xed\x6e\x44\xc7\x8d\x68\xae\x8b\xf1\x7a\xbd\x60\x66\xc1\xcc\x2a\x97\x75\x96\x52\xe7\xba\x9e\xb7\x21\x00\x18\x42\xea\x92\x58\xb5\x7e\x2f\x98\x19\x45\xa5\xe4\x0b\xb4\xd1\x74\x18\x40\xd2\x63\xc4\xed\xdf\x3b\x56\xd9\x94\xe9\xad\x6b\x48\x0c\x04\x02\x60\x66\xe1\x92\xc2\xd7\x54\x50\x5a\xed\xa4\x89\xea\x6d\x82\x59\x6d\x48\x2c\xa8\x32\x99\x76\x9b\x73\xd6\x36\xba\xd2\xb2\x8c\xde\xa8\x6b\xaa\x0d\xb7\x05\xd3\xdd\xdd\x2d\xec\x7d\x1a\xbd\x69\xb9\xbd\xef\xc3\xfc\x7f\x57\x0c\xb4\x56\x0e\xf5\x72\x92\x5e\xcb\x30\x0e\xc6\x2a\xef\x22\x52\x61\x2e\x22\x16\x91\xc9\xe2\x2f\xe9\x5e\x9a\x9f\x1f\xd0\xfe\x34\x18\x0c\x26\x8e\x1c\x39\x62\xbc\xf4\xd2\x4b\x4e\x12\xd6\x28\xf1\x2d\x2d\x2d\xe8\xe9\xe9\x11\x96\x83\x9e\x00\x50\xde\xec\xf3\xca\x95\x2b\xc8\xe7\xf3\x55\xe5\xb0\x24\x83\x5c\x08\xe8\x13\xdb\xe6\x7d\x15\xf9\x48\x95\xed\xd4\x2b\x5a\x9b\x45\x1e\x18\x71\x9f\x31\x23\x05\x0c\xab\x13\x96\x00\x24\x03\xf9\xeb\x2d\x85\xf3\xbb\x66\x5d\xfd\xd5\x5e\x8b\xf5\xd3\x31\x85\xcc\xcf\x05\xf5\x71\x22\xaa\xdd\x3f\xbb\xb1\x21\xb1\xa9\xa9\x49\xa8\xaa\x2a\x88\x48\xa8\x92\x02\x6e\x43\x84\xab\x8c\x87\x37\x30\x24\x66\x34\x33\x5e\x50\x65\x02\xa5\xad\x74\x9d\xcb\x74\xea\x85\x3b\x66\x48\x54\x55\x15\x07\x0e\x1c\x00\x00\x8d\x24\x47\xbb\x46\x0b\xbf\xa6\xe8\xdc\x5b\x91\x38\x35\x9f\x02\xd9\x3d\x98\x33\xde\x39\xb6\x04\x4a\xdb\x0e\xdb\xa2\x88\x40\x80\xda\x76\x55\xff\xb5\xd4\x26\xf5\xed\x5c\x50\x39\x1b\x8b\xc5\xd2\x9d\x9d\x9d\x98\x99\x99\x59\x53\xd9\xc1\x60\x10\x0f\x3f\xfc\x30\xda\xdb\xdb\x85\xaa\xaa\x02\x35\x5b\x2c\xc7\x62\x31\xb9\x7f\xff\x7e\x63\x74\x74\x14\x6f\xbd\xf5\x96\x04\x80\xd9\xd9\x59\xb4\xb5\xb5\x49\x00\xfa\x78\x24\xf7\xde\xa1\x6b\xcd\x69\xb7\x51\x3a\xda\xd3\xa6\xac\x3c\xa0\x41\xf5\xc6\x5c\xe3\xe1\xdc\xfb\x28\x39\x99\xd9\x3b\x6f\x19\x00\xd2\xe7\x3a\xd2\x2f\x0e\x2f\xf8\x1e\x73\x99\xe4\xb9\x51\x3a\x93\xa1\xc2\xf9\xb8\xaf\x38\x66\xa5\x23\xcf\x9e\x3d\xbb\xa6\x5c\x6b\x94\x68\xaf\xd7\x0b\x45\x51\x00\x40\xf5\xe9\x22\xa4\x99\xc2\x57\xf6\x37\x74\x28\x69\x8d\x3c\x12\x53\x6e\x73\x41\x96\x76\x80\x71\x33\x5a\xe4\x00\x00\x20\x00\x49\x44\x41\x54\x37\x8a\xc5\x62\xbd\xee\xa9\xde\xbf\x13\xb3\x1e\x16\x35\xd8\x86\x98\x58\x2c\x86\x4d\x9b\x36\x09\x00\xbe\xe6\x39\xe3\x91\xc0\xb2\xf9\x78\x95\x19\xa2\x2c\x51\xac\x2a\x77\x74\xcf\xb5\x18\xe7\x66\x9f\xe5\x40\xa5\x5f\x2a\x26\x42\xed\x97\x0a\xbf\x02\xc9\x21\x45\x51\x54\xcb\x77\xbc\x8a\xa6\xfe\xfe\x7e\x7c\xfe\xf3\x9f\x47\x77\x77\xb7\xa6\x2a\x6a\x60\x53\xca\x35\xfc\x89\x6b\xc1\x9f\x3d\x71\x31\xfc\x9b\x8f\x7d\xd4\xf2\xeb\x0f\x4e\x05\x7e\xa2\x39\xa7\xf6\x6b\x9a\x16\x78\xe0\x81\x07\xd4\x9f\xf8\x89\x9f\x10\x6d\x6d\x6d\xc2\x92\xde\x06\x80\xf4\xaa\xc7\xbc\xf2\x5e\x57\xea\x59\x3b\xf3\x7a\xcb\x96\xed\x37\x71\x9f\x31\x35\xda\x9e\x7d\x19\xa5\x6d\x8e\x6d\xe9\x61\x00\x48\x2e\x06\x8a\xe7\xdf\xec\x4b\x7e\x87\x01\xb9\x5e\x3a\x69\xcd\x8c\xbf\xba\x39\xf1\x97\x52\x60\x01\x40\xbe\x58\x2c\x4a\x97\xcb\xb5\xa6\xae\xd7\x78\x24\x5a\xce\x45\x02\x80\xea\x36\x44\x50\x30\x34\xbb\xf6\x36\x62\x48\x4c\xbb\xcd\x25\x50\x69\xa7\x54\xcb\xe3\xd0\x0e\xb7\x2a\x6d\x6e\x09\x63\x75\x5d\x1a\x24\x87\xa2\xd7\x8a\x5f\x22\xeb\x8b\xaf\x98\x21\xe0\x10\x3e\xce\x6e\x78\x2d\xa6\xfc\x86\xaa\xaf\x36\xae\x69\xd9\x3c\xee\x4b\xca\x9d\xd9\x90\x92\x88\x44\x22\x46\x73\x73\xb3\xb4\x76\xbc\x40\x5f\x5f\x9f\x78\xec\xb1\xc7\x84\x10\x42\x73\x17\x45\xeb\x27\xaf\x86\x7e\x79\xcb\xa2\xf7\x67\x55\x49\xd1\xca\x2e\x25\x2c\x0f\x5d\xe3\xa9\xf7\xba\x52\x5f\x79\xa7\x37\xf9\x77\xe1\x70\x38\xf1\xd9\xcf\x7e\x56\x7f\xe5\x95\x57\xa0\xeb\xba\xd4\x34\x2d\x0b\xc2\xdc\x3b\xbd\xc9\xbf\x6f\x2a\x28\xed\xdb\xe7\xfc\x87\x09\xa5\x91\xb1\xd3\xf3\x93\xc1\x48\xba\xcd\xa5\x1f\x0c\x2f\xff\x51\x5e\x95\x63\xb0\x06\x32\x57\xae\x5c\x41\x2c\x16\x33\x54\x55\x4d\x83\x70\xfd\xbd\xee\xd4\xdf\x33\xb1\x7a\xf0\x5a\xf0\xa4\xc7\x28\x09\x08\x3b\x1d\x06\x63\xbe\x49\x9f\x78\x71\x68\xe5\x2f\x12\x3e\xe3\x7d\x58\xfe\xeb\x97\x2e\x5d\xaa\xf5\x20\x15\x00\xa4\xf3\xb8\x27\x00\xe0\x9d\x3b\x77\x8a\x9e\x9e\x1e\x05\x80\x3f\x92\x75\x3d\xb0\x6d\xde\x77\x12\xd6\x31\x32\x55\x5f\x70\x55\x95\x57\x44\xe1\x44\x24\xf7\xc6\x64\x73\xfe\x34\x11\xc5\x33\x99\x8c\x71\xe1\xc2\x05\xe7\xf8\xa0\xf6\x1f\x0d\xe2\xb9\x86\xae\x7a\xf1\x0d\x31\xc1\x60\x50\x1c\x3c\x78\x50\x10\x91\xd7\x93\x92\x0f\xb6\x5f\xd5\xff\x03\x31\x5c\x25\x05\x98\xac\x8a\xb2\xe4\x27\x3b\x86\x1c\xb0\x95\xe4\x6a\x8c\x33\x8b\x6a\xb1\x6f\xa7\x01\xcd\x74\x21\x9e\x8a\x28\x3f\xb4\x1c\xb9\xe4\xd4\xd4\x14\xb9\x5c\x2e\x7a\xe2\x89\x27\xe0\x72\xb9\xdc\x1e\x43\x74\x3e\x75\x21\xfa\x3b\x03\xcb\xde\x2f\x0b\x16\xbe\x32\xc9\xa5\xe1\x1d\xa9\x92\x9a\xbb\x57\xdd\x9f\xf6\xeb\x8a\x36\x1e\xce\xbf\x27\x14\xa1\x87\xc3\x61\xf3\xea\xd5\xab\x68\x6f\x6f\x97\xcc\x6c\x4a\x82\x71\x2d\x9c\x9f\x4c\xf8\x8c\x5c\x73\x5e\x8d\xba\x8b\xc2\x2b\x00\xc1\x28\xad\xf1\x1a\x6d\xcb\xfe\xf0\xc5\xad\x2b\x7f\x16\xf7\x15\xdf\x02\x30\x0e\x60\x75\x69\x69\xc9\x78\xe6\x99\x67\x60\x9a\x26\xba\xbb\xbb\x4d\x66\x2e\x32\x50\x98\x0b\x16\x67\xae\x6c\xca\x5e\xc9\x68\x32\x57\x50\x65\x21\xe5\x31\x93\x93\x2d\x85\x2b\x3f\xec\x4d\xbd\x78\x26\x96\xfc\x9b\x94\xdb\x78\xc7\x4a\x23\x6e\x18\x86\xfe\xf2\xcb\x2f\xdb\x27\x4a\x57\x55\xc8\x1a\x43\xe2\xf9\xf3\xe7\xe5\x43\x0f\x3d\x04\x22\x52\xbd\x45\x11\x84\xdd\x2d\x6c\xc4\x90\x08\x46\xce\x25\x93\x28\xe9\x3f\xf6\x99\x56\xeb\xe9\x40\xb5\x92\xc3\x19\x6e\xd9\x90\x68\x19\xbb\x54\x30\x7c\x81\x15\x73\x3f\x49\xf8\xec\x1e\x7e\xcd\x76\x33\x95\xe1\x58\xb9\xf7\xaf\xc5\x38\x8a\x5c\x11\xf2\xec\x30\x6d\x00\x68\x5a\x36\x0f\x11\x10\x04\x51\xbc\xbd\xbd\xdd\x00\x20\x0f\x1f\x3e\x2c\xbc\x5e\xaf\xca\xcc\xc1\x4f\x5c\x6f\xfe\xc5\xae\x55\xf7\xe7\x2a\x06\xbc\xb5\x86\x3b\x06\xd4\xed\x73\xfe\x5f\x9a\x69\x2e\x9c\x1b\x69\xcf\x7e\x27\x1c\x0e\x1b\x57\xaf\x5e\x95\x33\x33\x33\xb2\xb3\xb3\x33\xcd\xcc\x53\x26\xb1\x71\xb1\x35\x1b\xbf\xbc\x29\xfb\x7a\x53\x41\xed\xf1\xea\x22\x68\x28\xac\xaf\x7a\x8c\x59\x5d\xe1\x29\x06\x5f\x07\x30\x45\x44\x09\x29\xa5\x7e\xea\xd4\x29\x00\xa5\xd5\x1b\xd6\x9c\x5f\x96\x99\x67\x18\xac\xaf\x7a\xcd\x85\x77\x7a\x52\x1f\xa2\xb4\x6b\xac\x00\x90\xb7\xce\x14\x99\x03\x97\x36\x6d\x37\x4d\x33\xff\xdc\x73\xcf\x21\x95\x4a\xd5\x1b\x35\xaf\xf5\x48\xdc\xb7\x6f\x9f\x3d\x0b\x2d\x54\x93\xfc\xe5\xc5\x83\xf6\x57\xea\x30\xb6\xd5\x7a\x24\x32\x01\x05\x55\xa6\x1d\x47\x0a\xa0\x36\xfd\x06\x8d\x0f\x07\xa6\x11\xe3\x88\x9a\xdf\x35\xc4\x58\x1f\x80\x00\xb3\xc7\xbb\x6a\xee\xaa\x30\x80\xa3\x9b\xaa\x08\x5d\xfb\xa5\x35\xf0\x5a\x8b\x71\x46\x97\x31\x54\x99\x10\x02\x00\x2d\x2b\x07\x94\x22\x42\xa6\x06\x6d\xd3\xa6\x4d\x79\x00\xe8\xed\xed\x05\x33\x6b\xfe\xa2\xd2\xb9\x63\xd6\xff\x65\x62\xaa\x5e\x0a\x45\xb6\x04\xb4\x72\x23\x80\x18\xea\x9e\xa9\xa6\x5f\xfc\x68\x53\xee\xb4\xa9\x70\x7e\x68\x68\x28\xff\xcd\x6f\x7e\x13\x8f\x3f\xfe\xb8\xd1\xd9\xd9\x69\xeb\x34\x49\x03\x3c\x95\xf0\x1a\xc1\x84\xb7\xa4\x86\x58\x87\xc8\x24\x88\x28\x01\x94\x0e\xed\x7d\xf5\xd5\x57\xb1\xb4\xb4\x54\xae\xfb\x67\x9f\x7d\x16\x8f\x3e\xfa\xa8\x11\x8b\xc5\xd2\x28\x7d\xe4\x09\x06\x4f\x59\x6e\xaf\x02\x80\x01\x46\x9e\x99\xb3\x44\x94\x37\x0c\x43\x7f\xee\xb9\xe7\x30\x3d\x3d\x8d\x9a\x50\x6e\x8b\x35\x1e\x89\x8e\x93\x69\x84\x60\x2a\xeb\x3f\x95\x43\xdb\x50\xfe\xfa\xaa\x99\xaa\xc4\x45\x92\xb8\x60\x9d\x7a\x03\x67\xba\x58\x2b\x69\xea\xd9\x82\x6e\x64\x48\xac\x0d\x75\x31\xdd\xdd\xdd\xb6\x92\xe7\x71\xe5\xb9\x1d\x55\x52\xc5\xd1\x57\x01\x8e\xf8\xc6\x98\x8a\xc9\xdf\xa1\x6f\xd8\xcf\x16\x03\x08\x13\x01\x55\x97\x51\x53\x53\x54\x00\xe2\x8b\x5f\xfc\x22\xbc\x5e\xaf\x00\xe0\xeb\x4a\xb8\x0f\x6a\x26\x45\x4b\xd5\x65\x31\x6b\x83\xe5\xc6\x20\xa0\x25\xeb\xda\x19\xca\xa9\x03\xcb\x81\xe2\x42\x20\x10\xd0\x0d\xc3\x30\xfe\xf1\x1f\xff\x11\x8f\x3c\xf2\x88\x31\x34\x34\x94\x06\x90\x25\xa2\x38\x4a\x93\xbe\x02\x80\xb4\x86\xda\x06\x00\x23\x99\x4c\x1a\xaf\xbd\xf6\x9a\x73\x34\x28\x01\xc0\x30\x0c\xf9\xfc\xf3\xcf\x63\xf3\xe6\xcd\x78\xf0\xc1\x07\xf3\x91\x48\x44\x27\xa2\x24\x2a\x4a\xb1\x24\x22\x29\xa5\x34\xa6\xa6\xa6\xf0\xcc\x33\xcf\xdc\xc8\x70\xbb\xd6\x23\xd1\xb9\x6b\xaa\x60\x88\x8a\x88\x47\xc5\x34\xd2\xd0\x23\x91\x21\x09\xe5\xa3\x93\x6a\x32\xaf\x27\x69\xd6\x93\x32\xb5\x98\x5a\x49\xd6\x10\x63\x1f\xd3\x04\x40\x53\x4c\x0e\x94\x49\x2d\xaf\xd3\x77\x68\xc6\x8e\x9d\xf1\x1b\x62\x2a\xc5\xb3\xa2\x2b\x8c\x54\x56\xa8\x19\xaa\x30\x11\xb0\x3e\x40\x84\xc3\x61\xd8\xd3\x41\x81\x82\xd2\x57\x1e\x62\x33\x59\xa7\x54\x95\x3b\x4c\x38\xd9\x96\xc1\x50\x18\xbe\x80\x2e\x3a\x97\x98\x35\x21\x04\xac\x5d\x56\xf1\xca\x2b\xaf\xe0\xca\x95\x2b\x32\x16\x8b\xc9\x58\x2c\x66\xb8\xdd\xee\xbc\x83\x42\xb9\xbc\xbc\x8c\xd1\xd1\x51\x5c\xbe\x7c\x19\x86\x61\x34\xac\xbb\xab\x57\xaf\x62\x7c\x7c\x1c\x52\x4a\x63\xef\xde\xbd\x65\xcf\x46\xd3\x34\x31\x33\x33\x83\xeb\xd7\xaf\x23\x99\x4c\xa2\xc1\xef\xab\x7a\x93\x46\x1e\x89\xb6\xd5\x51\x54\x34\x81\x8d\x18\x12\xcb\x0d\xeb\x64\xc4\x1b\x19\xfc\xee\x88\x21\x91\x99\x05\x01\x82\x89\xe4\x7a\x46\xc2\x4a\x41\x1a\x63\x1a\x18\x12\x4b\x7a\x4c\xa5\x07\x92\x25\xdd\xbb\x6a\x6f\x6c\xc1\xcc\xaa\x14\x10\x1b\x31\xdc\x39\xac\xc1\xb2\xa8\x30\x6c\xaf\xc3\xe5\xe5\x65\xc3\x2e\xdf\xd4\xd4\x14\xa6\xa6\xa6\x60\xe9\x36\x46\x77\x77\xb7\xb0\xdc\x4b\x6a\xeb\xa0\x5e\x9d\x95\x1b\x5f\xca\xd2\x4c\xc4\xd9\xb3\x67\x9d\xf1\x37\x9d\x4e\xbd\xf3\xc2\x04\x50\x62\x00\x49\x65\x23\x94\xa5\xe8\xc1\x39\x60\x29\xc7\x3b\x47\x66\x82\x4b\x27\xea\xd5\x6c\x2e\x55\x4f\x72\xd4\xbe\xdb\x08\xa6\x51\x9a\x6b\x9e\xc9\xea\x77\x0c\x8d\xd2\x4e\x69\xc3\xd6\x3b\xe6\x0a\xae\x6a\xbf\xf3\x8d\x60\x6c\x25\x98\x2a\x76\x47\x16\x30\x4c\x17\x65\xed\xb2\x5b\x7a\xa4\x24\x22\x39\xdf\xa4\x8f\x33\x20\x05\x48\x54\xce\xc9\x5b\x2b\x81\xec\xfa\xcc\xb9\xcc\x44\xc2\x6b\xc4\xed\xdf\xf7\xf6\xf6\x8a\xeb\xd7\xaf\x57\xd5\x8f\xb5\x27\x10\x66\x67\x67\x6d\x1a\x85\x25\xf5\x1b\xd5\x21\xea\xd5\x73\x7b\x7b\xbb\x70\x4e\xc1\xac\xae\xae\xc2\xf2\x1c\xdd\x50\x3a\xf5\x4e\x2c\x2c\x37\xbe\x2c\x2f\x8d\xb5\x2a\xca\xa1\x23\x70\x59\x09\xe4\x2a\x8e\x52\x24\xdc\x76\x81\xea\xa5\xdd\x80\x18\xe7\x75\x3d\x3b\xcf\x7a\xa3\xb6\x7a\x4c\xa8\x17\xfc\x62\xa6\xdc\x48\xb6\x1d\xab\x8a\x61\xec\x06\x5d\x1f\xe3\x14\x58\x65\x89\xe1\xc0\x14\x35\x8a\x1b\x1a\xa5\x01\x18\x44\x04\x5d\xd7\xa1\x69\x9a\x64\x66\x7d\xbe\x49\x1f\x5b\x0c\x14\xaf\xb4\xa6\xb4\x21\xd4\x49\xd3\xb9\x03\x9d\xb5\x6b\xc6\x3b\x59\x97\x5c\x22\x22\x9d\x99\x91\xc9\x64\x9c\xe5\xc3\x23\x8f\x3c\x22\xda\xdb\xdb\x6d\x9f\x26\xc1\xcc\x48\xa5\x52\x98\x9b\x9b\x13\xaf\xbc\xf2\x4a\xa3\x41\x48\x55\x3d\x3d\xfc\xf0\xc3\x62\x68\x68\x48\x28\x8a\x22\xec\xb6\xb2\x75\xd7\x85\x85\x05\xbc\xf7\xde\x7b\xf6\x0a\x8e\x75\xd3\x29\x3b\x53\x3b\x1b\xc0\x9e\x7f\x29\x0a\xce\x95\x2a\xad\x62\x8d\xb5\x75\x04\xe7\x01\x2a\x0e\x83\x18\xdc\x86\x08\x60\x7d\x69\xb1\x11\x09\x54\x1b\x6e\xc4\x3c\x55\x98\x78\x3c\x2e\x42\xa1\x90\x04\x91\x9e\x69\x51\x46\x01\x48\xe6\xd2\xd1\x44\x25\xce\x80\xa5\xfc\x56\xee\xcb\x8a\x72\x3d\x4c\xb9\x8c\x76\xb7\x55\x1e\x8b\x97\x31\xd9\x66\x75\x8c\x45\xc9\x7d\x17\x80\xfc\xda\xd7\xbe\x26\x7f\xfe\xe7\x7f\x1e\x42\x88\x3c\x03\x4b\xa7\x06\x12\x7f\xf7\xb9\x0b\xd1\xff\xd5\x65\x0a\x0f\x6a\x42\xa5\xb7\x27\x24\xdd\xc6\xd2\xdb\xbd\xc9\x6f\x83\x4a\xeb\xe8\xb2\xd9\xac\x8c\xc7\xe3\xd0\x34\x0d\x47\x8f\x1e\x15\xfd\xfd\xfd\x42\x51\x14\x15\x0c\x55\x48\xa8\x82\x49\x95\x04\x19\x6c\x0a\xea\xc1\x60\xd0\x18\x1a\x1a\x32\xa6\xa7\xa7\xe5\xd3\x4f\x3f\x5d\xb7\xce\xb6\x6d\xdb\x86\x43\x87\x0e\x09\x97\xcb\xa5\x82\xe1\xf1\x16\x45\xa0\x39\xaf\x46\x35\x83\x3c\x49\x8f\x19\x4f\x7a\x8c\x78\xeb\xa6\xd6\xfc\x89\x13\x27\xf4\xe9\xe9\x69\x34\x4a\xc7\x0e\x6b\x74\x20\x87\x13\xb9\xcc\xb9\xcc\x34\xec\x2a\xa4\x8a\xdd\xc2\x2a\xab\xa5\x3b\x57\x86\xba\x00\xc1\x57\x54\x82\x96\xf2\xe8\xcc\xa7\x9e\x04\x5a\xef\x5a\xdb\x17\xd7\xfb\x7d\x43\xcc\xca\xca\x0a\xac\xa5\xbc\xd9\x4c\x48\x19\x29\xba\x29\xae\x15\x38\x5a\x56\x92\xcb\xe5\x70\x2e\x8a\x74\x48\xa2\x1a\x8c\x03\x51\xc6\x94\x7f\x60\xc5\xaf\xb6\xa9\x6f\x33\x90\x46\xc9\x85\x05\x44\x24\x26\x26\x26\x10\x8b\xc5\xf2\x00\x16\xa6\x42\x85\xd7\x5f\x18\x8a\xb7\x1e\xbf\xdc\xf2\xaf\xdd\x86\xe2\x2b\xdb\x90\xac\xa3\xac\x00\x60\xd5\x63\x2c\x3d\xbb\x2d\xfe\xc7\xab\x1e\xe3\x3c\x18\x09\x22\xd2\x47\x46\x46\xa0\xaa\x2a\x1e\x7f\xfc\x71\xb4\xb5\xb5\xa9\x04\xf2\xb5\xa6\x5c\xfd\xbb\x66\x03\x5f\xec\x58\xd5\x0e\xba\x4d\x11\xd6\x15\x4e\xce\x37\xe9\x67\x2f\xb4\x67\xbe\x39\xdd\x5c\xb8\xd8\xd9\xd9\x99\xfd\xd9\x9f\xfd\x59\xe3\xe9\xa7\x9f\xc6\xf2\xf2\x72\xb9\x7e\x86\x87\x87\xf1\xf0\xc3\x0f\x0b\x00\x1e\x7f\x41\x69\x3f\x78\x3d\xf8\xa5\x2d\x8b\xde\x7f\xe1\x29\x8a\x7e\x02\x54\x93\x90\x58\x0c\xe8\x67\xde\xe9\x4d\xfd\xc1\xd5\x48\xee\x9d\xce\xce\xce\x74\xbd\x74\x9c\x6d\xe1\xf4\x89\x66\x00\xe8\xe8\xe8\xa0\xce\xce\x4e\x01\xc0\xe7\x2d\x2a\x7d\xdb\xe7\xfd\x9f\x15\xd6\xe6\xe1\xf6\x87\x57\x9e\x33\xa9\xa3\x8b\xae\x7a\x8c\x6b\x63\xd1\xfc\xcb\x20\x24\x13\x89\x84\x61\x39\x93\x39\xf3\x20\xab\xf1\xb9\xc1\x3f\x35\xc0\xd1\x46\x31\xb3\xb3\xb3\xbc\x7f\xff\x7e\x02\x20\x58\xc0\xeb\x2a\x70\xbf\x2f\x21\x87\x2a\xfc\xc0\x96\x03\x1c\xec\x02\x39\x58\x64\x2d\xa6\xe4\x2b\xcc\x65\x1b\x50\x55\x3c\x33\x74\x9f\x98\x9b\x19\xf6\x7c\x8d\x55\xba\x4a\x44\xc9\xf1\xf1\x71\xf3\xfa\xf5\xeb\x72\x6c\x6c\x8c\x1f\x7c\xf0\x41\xa9\x28\x8a\x09\x82\xb1\xec\x33\x16\xc7\x22\xb9\x29\x97\x29\x7c\x5e\x43\xf8\x04\x43\x98\x0a\xcc\x94\xc7\x5c\xb9\xd0\x9e\x79\xfb\x85\xa1\x95\x3f\x5b\xf1\x19\x6f\x12\xd1\x18\x11\xad\xe4\x72\x39\xfd\x07\x3f\xf8\x81\x7c\xf2\xc9\x27\xa9\xbd\xbd\x5d\xa5\xd2\xbe\x94\x3f\xf5\xe9\x4b\xe1\x3f\xee\x48\x6a\x27\xfd\x45\x75\xb3\x66\x8a\x4e\x5f\x51\x89\x45\x33\xda\xe1\xad\x8b\xbe\x9f\xf0\xeb\x42\x9d\x0c\x15\x46\x14\x4d\xd5\x63\xb1\x98\x69\x1d\x0d\xc1\xbd\xbd\xbd\xf4\xe8\xa3\x8f\x0a\x21\x84\x27\x9c\x75\x0d\x7d\xe1\xdc\xa6\x3f\xed\x5b\xf1\xfc\x8c\x66\x8a\x68\x49\x59\x27\xa1\x80\x7c\x4d\x05\x75\xeb\xe0\x92\xf7\x0b\x9a\xa4\xfc\x54\x4b\xe1\xa2\xea\x52\x8b\xd1\x68\xd4\xbc\x78\xf1\x62\xdd\x36\xb3\xa7\x32\xd8\xbe\xfa\x7c\x3e\xb2\xfc\x67\xbd\xaa\x49\x9d\xbb\x66\xfd\x4f\x29\x4c\x2a\xb1\x73\x2e\xac\xf2\x85\x56\x0d\x68\x98\x91\x77\xc9\xf8\xc5\xb6\xec\xb3\x20\x24\x3c\x1e\x4f\xf1\xc3\x0f\x3f\x64\x47\x1e\xf6\x8f\xab\xf4\x6e\x67\xfe\x8e\x77\xb5\xbf\x73\xfe\xe6\x86\x98\xcd\x9b\x37\x97\x76\x2f\x25\x52\x0b\x7e\x61\x86\x67\x8c\xa3\xc2\x84\xbb\x32\x44\x27\x07\x1b\x52\x75\xca\x35\x98\xd2\xe7\x62\xdb\xc1\x2a\xd7\x52\x1d\x10\xe6\x07\xdd\xdf\x4a\x45\x94\x97\x89\x68\x86\x99\xb3\xdf\xf9\xce\x77\x4c\x9b\x2e\x29\x25\x75\x77\x77\x9b\x00\x0a\x0c\xce\xe6\x35\x5e\x1a\x8b\xe4\x46\x2e\x74\x64\xce\x8e\xb4\x67\xce\x7e\xd0\x95\x3e\x75\xb6\x3b\xfd\xec\x44\x38\xff\x4a\x51\xe5\x73\x0c\x9e\x20\xa2\xb8\x94\xb2\x70\xea\xd4\x29\x1e\x1c\x1c\xa4\x2d\x5b\xb6\x08\x66\x6e\xde\x3d\x1b\xf8\xfc\xb1\xab\xa1\xff\x5b\x65\x11\x22\x54\x14\x7b\xfb\x2a\x98\x3c\x6d\x29\xed\x61\x8f\x21\xe4\xb5\x70\xfe\x7d\xd5\xe5\x2a\xb4\xb4\xb4\xf0\xd8\xd8\x18\x3f\xf9\xe4\x93\xe4\x76\xbb\xdd\x2e\x83\x3a\x9e\x1a\x89\xfe\xfe\xa6\x8c\x76\x84\xac\x6e\x64\x4d\x3a\x20\xad\x3d\xa9\x1d\xcd\xbb\xe4\xc4\x5c\x53\xe1\x4a\x20\x10\x28\x98\xa6\x89\xb9\xb9\x39\x67\x7d\x0b\x00\xbc\xc6\x88\x97\x4a\xa5\xec\x7b\x23\xe7\x32\x93\xba\xc2\xa5\xad\xab\xaa\x64\xb7\xcd\x30\xa8\xfa\x7a\x41\x84\xa6\x82\xd2\xaa\x48\xf2\xd9\xdd\x98\xb5\x7b\x63\xa3\xa9\x88\xf5\x94\xe3\x1b\xe9\x45\xeb\x62\xae\x5c\xb9\x02\x94\x8e\xbf\x4c\xe8\x5e\x1a\x99\x1b\xd4\xfe\x81\x09\xb2\xa4\xfc\x5b\xce\x51\x16\xfd\xa5\x6e\x9b\xcb\x67\x98\xd5\x62\x9c\x4a\x75\xed\x81\x8a\xd9\x90\xb8\xb2\xd4\xeb\x7a\x86\x88\x16\x98\x39\x6b\x79\x60\x96\xcb\xf3\xc1\x07\x1f\xc8\x77\xdf\x7d\x57\x5a\xd6\xdd\x39\x66\xbe\x08\xc2\xdb\x05\x45\xbe\x92\xf4\x9a\x4f\x27\xdd\xc6\x33\x86\xc2\xaf\x31\xf8\x1d\x66\xbe\x42\x44\x0b\xa6\x69\xe6\x5f\x7e\xf9\x65\x39\x33\x33\x83\x9d\x3b\x77\x82\x99\x3d\x4d\xba\xda\x7b\x68\xa2\xf9\x37\x04\xa8\xac\x43\x95\x4d\x51\x65\x05\x1c\x20\x90\xd8\x39\x1b\xf8\xa5\x9e\x15\xf7\x61\x66\xf6\xc5\x62\x31\xf1\xc5\x2f\x7e\x51\xf8\xfd\x7e\xc1\xcc\xbe\x6d\x0b\xbe\x27\xdb\x52\xda\xb1\xaa\x76\xac\x93\x8e\x00\x69\x07\xaf\x05\x7f\xbd\xa9\xa0\xf6\x33\xb3\x67\xcf\x9e\x3d\xb6\x61\xb4\x8a\x5f\x6c\x0b\x64\xbd\x20\x0d\xc1\xd9\xbc\xcb\x4c\x96\x33\x5a\xa7\x25\xed\xe0\xd3\x95\x56\x4f\x69\x0e\x4d\xf5\x7a\xbd\x42\x5a\x06\x87\x9a\xbc\xea\x29\xd9\x37\xa2\x47\xdc\x0c\xe6\xfc\xf9\xf3\xc8\xe7\xf3\x06\x11\xa5\x41\x34\xb3\xdc\xeb\x7a\x3a\xd1\xa1\xbe\x53\xe2\x18\xcb\x12\x6c\x7d\x14\x55\x56\x61\xb6\x1c\x55\x9c\x18\x38\xf4\xe9\x8a\x29\x08\x45\x0f\xc5\xaf\xef\xf4\xfc\x19\x2b\x34\xc6\xcc\x71\x00\xba\x65\x57\x71\xd2\x23\xde\x7d\xf7\x5d\x9c\x3e\x7d\x5a\xa6\xd3\xe9\x3c\x80\x84\x75\x54\xe7\x15\x66\xbe\x08\xe0\x22\x80\x31\x00\x33\x44\x94\x88\xc7\xe3\xfa\x0f\x7e\xf0\x03\x79\xf5\xea\x55\xd9\xd3\xd3\x03\xcb\x77\xc8\x17\x5b\xf6\x1c\xf7\x15\x45\x3f\x50\x1a\xac\x94\xcd\x07\x15\xdb\x51\x59\xa0\x2a\x4c\xbe\x1d\xf3\xfe\x9f\x44\x69\x8e\x4b\xb5\x8c\x9a\x2a\x80\xe0\xd0\x82\xef\x29\x94\xcf\x33\x59\x3f\x1d\x5f\x51\xf4\xc6\xe2\x9e\x63\x00\x7c\xaa\xaa\x0a\x6b\xa5\xb2\xb3\x0d\xd6\x7a\x24\x2e\x2c\x2c\xa0\x50\x28\x48\x4d\xd3\x0c\x53\x50\x36\xe9\x31\x17\xc2\x59\x0c\x60\x43\x86\x44\x86\xcb\xa4\x40\x73\x5e\xed\x4c\x7b\x4c\x0d\x28\xb9\x33\x5c\xbb\x76\xad\x5e\x23\x37\x7a\xbe\x2d\x18\x5d\xd7\xf1\xee\xbb\xef\xe2\xc8\x91\x23\x79\x00\x4b\x2c\xe8\xd2\xe4\x4e\xcf\x57\x89\xf3\x6a\xf3\x9c\xb1\xd7\x31\xf0\xb1\x48\xb7\xba\xb4\xb2\x5e\x5c\x29\x57\x3d\x43\x62\xd1\x4b\x89\x89\x3d\xde\x3f\x2e\x34\x29\x6f\x5a\x0c\x91\x8e\xc7\xe3\x72\x6c\x6c\xac\xee\x88\x73\x74\x74\x14\xe3\xe3\xe3\x18\x18\x18\x30\x62\xb1\x98\x11\x89\x44\xca\x6b\xd2\x33\x99\x0c\x16\x16\x16\x70\xf9\xf2\x65\x58\xbb\x8d\x01\x00\x5a\x5a\x5a\x6c\x63\xa2\xaf\x2d\xa5\xed\x2b\x9b\x4f\x2c\xfa\xec\x81\x4b\xad\x2d\x89\xc1\x68\x4f\xba\xf7\x12\x28\x08\x42\x1c\xa5\x91\xa1\xa6\x9a\x14\x0a\x67\x5d\xc3\x36\xe6\x46\xe9\x00\x40\x7b\xd2\xbd\xef\x5c\x67\xe6\x5b\x00\x92\x2d\x2d\x2d\x7a\x6d\xb9\xd6\x33\x24\x1a\x00\xf2\x71\x5f\x71\xaa\x3f\xee\xdd\x90\x21\xd1\xc2\x88\xd6\x94\x6b\xdb\x54\x73\xfe\x25\x22\x12\x2d\x2d\x2d\xd2\x61\x4f\xa8\xca\xbc\xe6\xf9\xb6\x1a\x12\x01\xe0\xc2\x85\x0b\x32\x16\x8b\xa1\x3c\x93\xad\x40\xbb\xb6\xcb\xf3\x47\x1d\xde\xc2\x4f\x47\xaf\x15\x1f\x26\x13\xea\xad\x18\x12\x33\x2d\xe2\xfa\xe4\x4e\xcf\x5f\xe4\x03\xe2\x14\x73\x49\x67\x31\x4d\x53\x7f\xee\xb9\xe7\x6a\x48\xac\x2e\x57\x3e\x9f\x97\x23\x23\x23\x62\x64\x64\x44\x6a\x9a\x26\x74\x5d\x97\x81\x40\x40\xa4\xd3\xe9\xba\x65\xb7\x1c\xf5\x05\x33\x7b\x5c\xa6\x08\x56\xd5\x79\xd9\x7e\x55\xdf\x20\xa9\x48\xf8\x04\xc3\x23\x09\xf6\x0a\x1b\x01\xc0\xc3\x4e\x63\xeb\x06\xd2\x21\xc0\xc3\xcc\x1a\x11\xd9\x0b\x07\xaa\xca\x55\x3b\x3c\x16\x00\xb0\xb8\xb8\x08\xcb\xaa\x99\x5f\xf2\x17\x27\x4a\xfa\x81\x3d\xdc\xb4\x45\x9d\xf5\xcc\x15\xa5\xbc\x74\x84\x25\xa3\x33\xe9\xde\x49\x20\x0f\x33\xab\xdd\xdd\xdd\x76\xda\xce\x7c\x6a\x2b\xd9\x79\xdd\x88\x21\x71\xc3\x98\x97\x5e\x7a\x09\xd9\x6c\xd6\xb0\x26\x0d\x27\x58\xa5\xb3\x33\x5b\xdd\x5f\x1d\xdb\xef\xfd\xe3\x4c\x8b\x98\x60\x82\x5c\x63\x48\x2c\x77\x6d\x15\x7d\x07\x04\xe8\x6e\x4a\xce\x6e\xd5\xbe\x7f\xf5\x80\xef\xb7\xf3\x4d\xca\xcb\x5c\x3a\x59\x68\xc1\x34\xcd\xfc\x8b\x2f\xbe\x68\xbb\x3c\x34\xa2\xab\x4a\x37\xb2\x7c\x6b\x60\xed\x8e\x5a\x17\x03\x54\xa4\x5f\x56\x33\xd3\x95\x38\x38\x85\x3e\xaa\xe2\xad\x90\xd1\x64\xc2\xa4\xf2\xc4\x38\x98\x19\x86\x60\x99\xf2\x18\x0b\x37\x93\xce\x78\x38\x37\x62\xd3\x56\xe3\x20\xd8\xd8\x90\xb8\xb2\xb2\x82\xee\xee\x6e\x9b\x81\xae\x32\x20\xc9\x96\x4c\x37\x30\x24\x02\x84\xb6\x94\xb6\xdd\x25\x29\x58\x54\xa0\x5a\x13\x75\x77\xd5\x90\xe8\x8c\xcc\x66\xb3\x78\xfa\xe9\xa7\xf1\xc4\x13\x4f\xe8\x3e\x9f\x2f\x01\xc0\x00\x51\x36\x1d\x51\xe3\x57\x0f\x2a\x17\xfc\x09\xf3\x81\x96\x99\xe2\x5e\x7f\x5c\xf6\xbb\x0a\x32\x28\x24\x54\xb6\x26\x91\xad\xe9\x89\x7c\xae\x49\xcc\x25\xda\xd5\x0f\x57\x5b\xd5\x77\x4d\x8d\x2e\x81\xe8\x3a\x33\xcf\x58\xa3\x25\xfd\xc5\x17\x5f\x84\x75\xa2\xf2\x2d\xd1\xd8\x08\x93\xcd\x66\x61\x4d\x4c\x1b\x93\xa1\xfc\x85\x07\xa6\x03\x52\x80\x44\xd9\x86\x54\x13\x9c\x4a\xf0\x48\x7b\xe6\x0c\x2a\x3e\xd1\x92\x88\x0c\x66\xce\x5e\xda\x94\x7b\xbb\x2d\xa5\xed\x2e\x8f\xc0\xd6\x49\x27\xad\x99\x4b\xd3\xa1\xc2\x05\x58\xfe\xed\x75\x8e\x19\xad\x3f\x99\xba\xbc\xbc\x0c\x00\x06\x33\xeb\x2b\x3e\x63\x2a\xef\x92\x09\x6f\x51\x09\xdb\xa3\xdb\x52\x2e\x0e\x3b\x8a\x45\xb4\x6d\x6c\xf4\xeb\x4a\x67\x24\xe3\x1a\x9c\x6d\x2a\x4c\x28\x8a\x22\x3a\x3a\x3a\xca\x73\x36\x58\x2b\x71\x6e\xbb\x21\xb1\x16\xb3\xb2\xb2\x82\xa7\x9f\x7e\x1a\x47\x8f\x1e\xd5\xdb\xda\xda\x92\xd6\x14\x41\x92\x05\xe6\xd2\x11\x75\x2c\x15\x56\x4e\x09\x46\x54\x2d\xf0\x26\x57\x81\x43\xc2\x60\x8d\x05\xa4\xa1\x89\x64\xd1\x4d\xcb\x52\xc5\x12\x97\x5c\x3b\x17\xac\xd1\x56\x9c\x88\xb2\xa6\x69\xea\x2f\xbd\xf4\x92\xad\xb7\x34\x2a\xcf\x9a\xfa\xdd\x28\x26\x1e\x8f\xa3\xbf\xbf\x5f\x12\x51\xf6\x7a\x4b\xe1\xfd\xf9\x26\xfd\x4a\x7b\x4a\x1b\xb2\x3b\x99\xda\x25\xc9\x76\xdb\x24\x3d\xe6\xc2\xe5\x4d\xd9\x53\xb0\xb6\xf0\xb5\x99\x90\x88\x92\x17\xda\xd3\x2f\x6f\x9b\xf7\x3d\x16\xcd\xb8\xfa\x6f\x94\xce\xbb\x3d\xa9\xef\x67\x4b\x1b\x64\x64\x99\xd9\xe9\xee\x5c\xa6\x71\x8d\x21\x11\x00\x2d\x2f\x2f\xcb\x7d\xfb\xf6\x09\x22\x72\x49\x81\x40\x5f\xdc\xf3\x50\x73\x5e\xed\xd8\x88\x21\xd1\x52\x35\x95\x94\xc7\x9c\x9a\x09\xe9\xef\x02\xc8\xa4\x52\x29\x69\x1d\x57\x79\x57\x0c\x89\xf5\x30\xf9\x7c\x9e\x3f\xfa\xe8\x23\x76\xbb\xdd\x1c\x8d\x46\x0d\x21\x44\xde\xea\xd6\x56\x88\x68\x11\x44\xb3\xd2\x45\xd7\x8a\x1e\x71\x49\xf7\x89\x8b\x45\xaf\xb8\x60\x6a\xf4\x11\x2b\x74\x09\x44\x57\x89\xe8\x1a\x11\xcd\x58\xf8\xec\xdc\xdc\x9c\xf1\xcc\x33\xcf\x60\x6e\x6e\x4e\x6e\xa0\x4c\x1b\x29\xf7\x1a\xcc\xec\xec\x2c\xef\xd9\xb3\x87\x84\x10\x24\x05\x5c\x0b\x01\x3d\xbd\x79\xc9\x77\xc0\x25\x85\x9b\xca\x9e\x00\x8e\xc5\x0d\x44\x28\x2a\x9c\x7f\x7e\x6b\xfc\xab\x8b\x81\xe2\x1b\x44\x34\x43\x44\x59\x5d\xd7\x59\x55\x4b\xcb\xca\x4c\x05\x98\x6e\x2e\xc4\xfb\x56\x3c\xbb\x3d\x86\xf0\xd7\x4b\x87\x09\xf2\x5c\x67\xe6\xd5\x37\xfb\x92\x7f\x01\x81\xab\x44\x14\x4f\x24\x12\xc5\x37\xdf\x7c\x73\x0d\xfd\x6b\x0c\x89\x76\xc5\x5b\xe7\x9b\x2b\x44\xe4\x0f\xe6\xd5\xad\xdd\xab\xee\x5d\xb6\x84\x59\xcf\x90\x58\xc2\x10\x5c\xa6\x50\x47\xda\x32\xcf\x32\x21\xe5\x76\xbb\x8b\xa3\xa3\xa3\xce\x01\x9c\x53\x72\xde\x11\x43\x62\x23\xcc\xd4\xd4\x14\xbf\xf7\xde\x7b\x32\x10\x08\xc8\x68\x34\xaa\xa3\x24\xe6\xd3\x28\xed\x5a\xba\x6c\xed\x24\x3b\x07\x60\xde\xfa\x5f\x64\xe6\x15\x22\x5a\x65\xe6\x7c\x3a\x9d\x2e\xbe\xf1\xc6\x1b\x7c\xe6\xcc\x19\x59\x28\x14\x9c\x0c\xdb\xa8\x3c\xb5\xe5\xba\x29\x4c\x5f\x5f\x1f\xfc\x7e\x3f\x33\xb3\xcc\xba\x65\x6e\x32\x94\x5f\x88\x64\x5c\xdd\x01\x5d\x69\x71\xce\xe1\x81\x18\xcb\x3e\x63\xe6\xb9\xe1\xf8\x5f\x5e\x6f\x29\x3c\xc7\xe0\x71\x22\x4a\xa4\x52\xa9\xe2\x5f\xfd\xd5\x5f\xc9\xde\xde\x5e\xf8\xfd\x7e\xc9\xcc\x66\x5e\xe3\xec\x95\x68\x6e\x42\x30\xf9\x9a\xf3\x6a\x58\x95\x25\xc7\x41\x26\xc8\xb8\xcf\x58\x3c\x3d\x90\xf8\x87\x77\x7b\x52\x7f\xc7\x02\xa3\xcc\x3c\x4f\x44\xd9\x37\xde\x78\x83\xe3\xf1\xf8\x1a\x9a\xeb\x99\x76\x04\x00\x69\x9d\x6d\xee\x01\xd0\xdd\xb9\xaa\x7d\xfe\x8b\x1f\xb4\xfe\x9f\x42\x92\x5a\x35\xc5\xe5\x54\xc2\x6a\xe2\x0c\xe2\xfc\xdf\xec\x9d\xff\x97\x4b\x81\xe2\x69\x66\x4e\x7e\xf5\xab\x5f\x35\xb0\x36\x6c\xd4\x90\xb8\x91\x19\xf8\x5b\xc2\x3c\xf8\xe0\x83\xa2\xb3\xb3\x13\xa1\x50\x08\x7e\xbf\xbf\x32\x42\xb1\x14\xcf\x62\xb1\x28\xf3\xf9\x7c\x79\xdb\x37\xc7\x00\x63\xbd\x70\x23\x3d\x67\xc3\x98\x70\x38\x8c\x2f\x7c\xe1\x0b\x50\x14\xc5\xc7\xcc\x51\x02\xfa\x05\xd3\x60\x7b\x52\x7b\xa0\x6b\xd5\x3d\xe4\xd7\x95\x60\xde\x25\xb3\x73\x4d\xfa\xd8\x54\xa8\xf0\x9e\x21\xf8\x0a\x83\xc7\x2c\x83\x64\xf6\x99\x67\x9e\x91\x33\x33\x33\x70\xa4\xe3\x61\xe6\x30\x80\x6e\x02\xf5\x6b\x26\x75\x47\x32\xae\x3e\x97\x49\x9e\xb4\xdb\x8c\x27\xbc\xc6\x35\x49\xb8\xce\xe0\x09\x94\x6c\x53\xe9\xc9\xc9\x49\xc3\xf2\x4e\x5c\x43\x33\xd5\x89\x14\x00\xe4\xee\xdd\xbb\xc5\xa1\x43\x87\x54\x00\x51\xcd\xa0\x43\x5f\x7a\xa7\xfd\x0f\x9b\xf2\x6a\x2b\x6e\xc4\x40\xe5\x57\x8c\x1f\xf6\xa4\x7e\xff\xcc\xc0\xea\x6f\x03\x98\x1b\x19\x19\xb1\x37\xb4\xae\x55\x9a\x6b\xf3\x6e\x84\x69\x34\xd4\xbf\x6d\x98\xe6\xe6\x66\xb1\xba\xba\x5a\x75\x2d\x14\x0a\xc8\xe7\xf3\xeb\xfd\x1e\x37\xc8\xeb\x63\x63\x36\x6f\xde\x2c\x8e\x1f\x3f\x2e\x00\x68\x44\x14\x62\xe6\x28\x80\x28\x80\x10\x4a\x6e\xad\x06\x80\x24\x11\x2d\x59\x5b\xfb\x26\x98\x39\x7f\xe1\xc2\x05\x79\xe6\xcc\x99\x7a\xe9\xa8\x44\x14\x60\xe6\x10\x80\x30\x00\x1f\x4a\xfa\xb0\x6e\xa5\x13\xb7\xb6\xe6\xc9\x4e\x4f\x4f\x1b\xcf\x3e\xfb\x2c\x4c\xd3\xac\x4b\xb3\x82\x8a\xf9\xac\xca\x8c\x26\xa5\xc4\xf0\xf0\x30\x88\x48\x31\x09\xbe\xb6\xb4\xb6\x2b\x9a\xd5\xfa\xd7\x18\x12\xab\xe6\x33\x9c\x7b\x24\x12\x9a\x74\x25\x3c\xd2\x9e\xf9\xbe\x41\x9c\x68\x6a\x6a\x2a\x8e\x8c\x8c\x40\x4a\xe9\x1c\x38\xd6\xcb\xbb\x2a\xf9\x9a\x77\xce\xcc\x6e\x3b\xc6\xea\x92\xc8\xda\x85\x8c\x0b\x85\x02\x59\x1b\x4d\xd6\xfe\x8e\xb1\xf6\xf3\xb9\x63\x98\x95\x95\x15\x4e\x24\x12\xe8\xee\xee\x36\x14\x45\xc9\x03\x48\x13\x51\x9c\x88\xe6\x2c\x3d\x67\xca\x9a\x87\x9b\x27\xa2\x94\x69\x9a\xf9\x37\xde\x78\x83\x2d\xab\x78\x55\x3a\xd3\xd3\xd3\x68\x6f\x6f\x37\xdd\x6e\x77\x01\x96\x6f\x35\x11\x2d\x13\xd1\x82\x95\xde\xb2\xc5\x3c\xf9\x91\x91\x11\xf3\x95\x57\x5e\x81\x69\x9a\x0d\x69\x56\x1c\x04\x3b\x95\x5c\x64\xb3\x59\xb9\x75\xeb\x56\x68\x9a\x26\x00\xf8\x08\x14\xd9\xb2\xe8\x3d\x52\x19\xb4\x5b\xa5\xad\x5d\xc5\xc0\x28\xdb\x8b\x34\x43\x84\x96\xfd\xc6\x85\x25\x7f\xf1\x92\xaa\xaa\x7a\xa1\x50\x90\x0b\x0b\x0b\xb6\xd2\xe9\x54\x1a\x9d\x57\x38\xee\x6b\x31\x7c\x9f\x60\x6c\x1d\x60\x3d\x9a\x6f\x2b\x66\x65\x65\x45\x4e\x4c\x4c\x90\xc7\xe3\x91\xa1\x50\x48\x27\xa2\x3c\x95\xd6\xa0\xa5\x88\x28\xcd\xcc\x39\x29\x65\x7e\x6c\x6c\xcc\x7c\xe5\x95\x57\x60\x79\x30\xae\x49\x27\x93\xc9\xc8\x8b\x17\x2f\xd2\xea\xea\x2a\xfb\x7c\x3e\xc3\xeb\xf5\xea\x42\x88\x02\x33\xe7\x00\x14\x4c\xd3\x2c\x4c\x4c\x4c\x98\xaf\xbf\xfe\x3a\x8f\x8c\x8c\xd8\xdd\x75\x43\x9a\xeb\x7a\x24\xda\xcf\xb3\xb3\xb3\xd8\xb2\x65\x8b\x01\x20\x39\x15\x2a\xbc\x97\x73\xc9\x84\xb7\x58\x3a\x15\xaf\x9e\x47\xa2\x6d\x98\xaa\x58\x38\x49\x3c\x30\x13\xf8\x97\x97\x37\x65\x9f\x33\x89\xd3\x83\x83\x83\xc6\x85\x0b\x17\x44\x65\x7a\xac\x2a\xdf\x9b\x31\x24\xd6\x0b\x77\x12\xd3\x08\x7f\x57\x31\xab\xab\xab\xf2\xa5\x97\x5e\x82\xdb\xed\x16\x85\x42\xc1\x00\x80\x83\x07\x0f\x8a\xb7\xdf\x7e\x5b\xf6\xf6\xf6\x8a\xf9\xf9\x79\x14\x0a\x85\x1b\xa6\x63\x9a\xa6\xbc\x7c\xf9\xb2\xbd\x03\xab\x04\x20\x3b\x3a\x3a\x84\x35\x52\xae\x67\x26\x69\x48\xb3\x2d\x81\x6a\xa5\x80\x04\x40\xcc\x8c\xc1\xc1\x41\x26\x22\x61\x08\xf6\x45\x33\xae\xed\xd1\xb4\xd6\x57\x5a\xbf\x54\x71\x28\x27\xb2\x57\xca\x03\x95\x91\x5a\x29\xde\x5f\x50\xda\xa7\x43\x85\xb7\x92\x5e\x73\xd2\xef\xf7\x17\x96\x96\x96\x38\x91\x48\x00\x8d\x25\x50\xed\x68\xcd\x7e\x57\xaf\x20\x77\x0b\xb3\x66\x94\x8a\xea\xae\xe6\xae\x62\x4c\xd3\x2c\x63\xa6\xa7\xa7\x09\x00\xaf\xae\xae\x92\xa3\xab\x41\x5b\x5b\x1b\xed\xda\xb5\x8b\xb6\x6c\xd9\x42\x0f\x3f\xfc\x30\x22\x91\x08\xf5\xf5\xf5\x81\x88\x90\x48\x24\xd6\xe4\x95\x4e\xa7\x6f\x89\x1e\xa7\x0e\x84\x5a\x50\x2e\x97\xc3\xf0\xf0\x30\x2b\x8a\x42\x44\xa4\x15\x15\xd9\x34\xbc\xe8\x7b\xd8\xe6\x12\x02\x50\xcf\x90\xe8\xdc\x00\x43\x10\x29\x81\x82\x12\xfa\xa8\x35\xfb\xa2\x04\x67\xc3\xe1\xb0\x61\x6d\x38\x5e\xab\x83\x38\xaf\xb5\x3a\x8b\x93\x3e\x71\x0f\x30\x8d\x68\x85\xe3\xfd\x7d\x81\xe9\xec\xec\xa4\x27\x9f\x7c\x92\x76\xed\xda\x25\xda\xda\xda\x94\x70\x38\xac\x69\x9a\xa6\x86\xc3\x61\x35\x1a\x8d\x8a\x81\x81\x01\xde\xba\x75\x2b\xb2\xd9\x2c\xad\xac\xac\x7c\x6c\x7a\xea\x1a\x12\xad\x7b\x32\x4d\x53\xb6\xb4\xb4\x50\x34\x1a\x25\x00\x6a\x46\x93\x62\x70\xc9\x77\xd8\x57\x14\xcd\xeb\x1a\x12\xc9\xba\xb3\x18\x2a\x50\x50\xba\x17\x9a\xf4\xf7\x13\x3e\x73\xc2\xe3\xf1\x14\x8a\xc5\x22\x5b\xba\x10\xd7\xf9\xaf\x95\x06\xb5\xf1\xf7\x02\x73\xdb\x8d\x84\x77\x02\xb3\x73\xe7\x4e\x3a\x7e\xfc\xb8\x70\xbb\xdd\x6e\x95\xa9\xa9\x67\xd5\xb3\x6b\xc7\x9c\xff\xc9\x6d\xf3\xfe\x27\xba\x92\xee\xdd\x6e\x43\xb8\x52\x1e\x33\xad\x7a\x35\x33\x16\x8b\xc9\x70\x38\xcc\x96\xf7\xc0\x2d\xd3\xd3\xd0\x90\x68\xc7\x4d\x4c\x4c\xc8\x7d\xfb\xf6\x81\x99\x89\x05\x3c\x9a\x49\xed\x3d\x09\xcf\x2e\xcb\x62\x59\xd7\x90\x58\xcb\x50\x82\x49\x09\xe7\x5c\x5d\x23\xed\x99\xe7\x24\x21\x1b\x8d\x46\x6d\x4f\x45\xd4\xc9\xbf\x9e\xe8\x84\xe3\x8a\x7b\x84\xa9\x47\xeb\xc7\x32\x12\xde\x4e\xcc\x8e\x1d\x3b\xe8\xf0\xe1\xc3\xa5\x33\x6d\xd3\xae\xad\x9f\x1d\x8d\xfc\x5f\x07\x26\x83\xff\xa5\x3b\xe1\xf9\x5c\x6b\x46\x7b\xb8\x63\xd5\xfd\xe9\x2d\x4b\xde\x9f\xd9\xbc\xec\x3b\xb8\xe2\x2b\x5e\x49\x7a\xcd\x78\x28\x14\x32\xc3\xe1\x30\x4f\x4c\x4c\x10\x97\xbc\xea\x6e\x9a\x1e\x05\x6b\x2b\x8d\x6a\xe3\x2c\x6b\x28\x00\xa8\xab\x1e\x83\xb7\xcf\xfb\x1f\x29\x99\xd3\x51\x23\xd0\xea\x4b\x25\x10\xe0\xd3\x45\x57\x56\x93\x93\xf3\x4d\xc5\x51\x55\x55\x0b\x3e\x9f\x8f\xaf\x5f\xbf\xbe\x9e\x5e\xe2\x54\x66\x19\xf5\xc3\xdd\xc4\x00\x95\x8a\x93\x8e\xe7\x7b\x8e\x69\x6f\x6f\xc7\x63\x8f\x3d\x26\x88\xc8\x17\xc9\xa8\xdb\xbe\x70\xae\xf5\x2f\x23\x59\xd7\x31\x01\x72\x39\xbd\x0d\x09\x24\xbc\x45\xa5\x7f\x70\xc9\x7b\x72\x3e\xa0\x9f\x4d\xfa\xcc\xb9\x50\x28\x54\xcc\x64\x32\xbc\xb4\xb4\x44\x1b\xc9\xab\x16\xe3\x94\x40\x76\x20\xac\xe5\x3c\xd8\x3b\x74\x16\x15\x76\x05\x0b\xca\x40\x5b\x4a\x1b\xa8\x28\x42\x35\xbf\x06\x60\xcf\xcc\x57\x24\x11\xa1\x35\xa5\x6d\xbb\xba\x29\xf7\x72\xc1\xc5\xcb\xd1\x68\xd4\x98\x9b\x9b\xe3\x54\x2a\xe5\xe4\xf4\x5a\xbd\xc4\x79\x75\x72\xfe\xbd\xc0\xd4\x4a\x68\xa7\x7e\x74\x4f\x31\x27\x4e\x9c\x80\xd7\xeb\x75\xa9\x4c\x9b\x3e\x3b\x1a\xf9\x6f\xd1\xac\x76\xa8\xd4\x08\xf5\x97\x51\x0b\x26\x7f\xd7\xaa\x7b\xcf\xa5\xd6\xec\x0b\x45\x85\x53\xad\xad\xad\xc5\x8b\x17\x2f\x3a\x95\xf3\x0d\xd3\xe3\x1c\x42\xdb\xff\x6b\x9e\xc7\xc7\xc7\xa1\xeb\xba\x01\x20\x0b\xc2\xc2\x7b\x5d\xe9\xef\xe9\x0a\x67\x6d\x46\xa9\x74\x8a\xb5\x7c\x58\x0a\x36\xc6\x57\x54\xba\x8f\x5d\x0d\xfd\x8a\x90\x08\x13\x91\x73\x63\x4a\x67\xde\xa8\xb9\xaf\xf7\x7c\xaf\x31\x40\x7d\x89\x79\xd7\x31\x9d\x9d\x9d\x88\x44\x22\x82\x88\x7c\x3d\x09\xcf\xa1\xce\x55\xf7\xf1\x8d\x9c\xda\x1c\x2c\x28\xdb\xb7\xcd\xf9\x3f\x47\x44\x3e\x9f\xcf\xa7\x0e\x0e\x0e\xde\x12\x3d\xa2\x26\x52\xd6\x7b\xce\xe7\xf3\x18\x1d\x1d\x05\x4a\x4e\xea\xf1\x84\xd7\xb8\x78\xa9\x35\xfb\x36\x93\xd3\xf2\x6c\xc9\x1b\xb6\x89\xb4\x48\x65\x54\x61\x62\xcb\x9e\xcf\x6f\x9f\xf3\x3f\x09\x46\x20\x10\x08\xa8\xc7\x8e\x1d\xab\x47\x78\x6d\x21\xea\xd9\x21\xee\x25\x06\x58\xdb\xed\xde\x13\x8c\xbd\x15\x30\x33\xfb\xba\x12\xee\x23\x84\xd2\xc4\x68\xd9\xaf\xdb\x62\x1b\xa7\x88\xb5\xc3\x40\xdc\xf3\x29\x66\x0e\x02\x10\x03\x03\x03\xb7\x44\x4f\xed\x57\xdf\xf0\xf9\xc3\x0f\x3f\x44\xb1\x58\x34\x00\xa4\x41\x98\x39\xdb\x9d\xfa\x6e\x41\xe5\x74\xad\x47\x62\x89\xa9\xe0\xe0\x1f\x86\x13\x43\x0c\xf5\xc8\x78\xf3\x6f\x44\x33\xae\x9d\x44\xe4\xeb\xef\xef\x17\xbb\x77\xef\x76\xd2\xb2\x11\x43\xe2\xdd\xc6\xac\x6b\x4c\xbb\x97\x98\x4d\x9b\x36\xd9\xbb\x80\x78\xfc\xba\xd2\x69\x83\x37\xe2\x6d\xe8\xd3\x95\x76\xb2\xe6\xc1\xac\x7d\x31\x6f\x9a\x9e\xda\x46\x6b\x74\x45\x2e\x97\x93\xa3\xa3\xa3\xa0\xd2\xf6\xbd\xf1\x15\xaf\x31\x72\xbe\x3d\xfd\x9a\xbd\xc3\x96\x53\xdb\x81\xf3\xae\x3c\x2a\xab\x60\x3c\x86\xd2\xfe\x99\x8f\xc2\xff\xc5\x5d\x14\xdd\x44\xe4\x39\x70\xe0\x80\xe8\xed\xed\xad\x43\x63\x39\xdc\xc8\x7a\x7c\xa7\x31\x4e\x0b\xed\x8d\x7e\x77\x57\x31\x6e\xb7\xdb\xde\x58\x41\x2d\xa8\x32\x5f\x52\x5c\x1c\xbb\x86\xd4\x04\x7b\x39\x1c\x81\x90\x75\xc9\x34\x5b\x5b\xfc\x44\x22\x91\x5b\xa2\x47\xd4\x5c\x1b\xbd\x07\x00\xf1\xc1\x07\x1f\xa0\x58\x2c\x1a\xcc\x9c\x64\xf0\xcc\xd9\x9e\xd4\x77\x33\x9a\x19\x07\x2c\x26\xaf\x31\x24\x32\x73\x15\x13\x39\x31\x9b\xd2\xae\xc3\xc7\xaf\x84\xfe\x37\x45\x22\xaa\x28\x8a\x76\xe4\xc8\x11\x04\x83\xc1\x35\x79\xd6\xa3\xe3\x1e\x60\x6a\xdf\xdd\x37\x18\x5d\xd7\xed\x4d\x11\x8c\xd9\x60\x61\x8c\xc1\x65\x9d\xb3\xac\x95\x5a\x83\xe3\xd2\x82\x81\xca\xdf\x44\x24\x77\x1e\x25\xcf\x53\x69\x79\xa1\xde\x34\x3d\xeb\x1a\x12\x51\x63\x5c\x33\x0c\x43\x6a\x9a\x46\x1d\x1d\x1d\x4c\x44\x5c\x54\x98\x8a\x0a\xfb\xfb\xe3\x9e\x5d\xa2\x62\x3e\x5c\x63\x48\x84\x23\xe1\x32\x06\x84\x48\xc6\xb5\x4b\x30\xe5\xa6\x42\x85\x73\x2e\x4d\xd3\x63\xb1\x98\x39\x31\x31\x01\x5d\xd7\xeb\xe6\x5f\xe7\xfe\x47\xde\x90\x18\x08\x04\xa8\xbb\xbb\x9b\x00\xb8\xd3\x9a\xe9\xda\xbc\xe4\x3b\xec\x35\x94\x20\x01\x68\xe4\xb5\x48\x20\xe4\x55\x99\x7c\x75\x70\xf5\x4f\x0a\x2e\xfe\x88\x88\x56\x17\x16\x16\xcc\x3a\x46\xc5\x8f\x6f\x48\x44\x0d\x63\x4d\x4f\x4f\xf3\xd6\xad\x5b\x59\xd3\x34\x66\x66\x2c\xfb\x8b\xb9\xae\xa4\x7b\x67\x73\x5e\x8d\x36\x32\x24\x3a\xb5\xb7\x6a\x0c\x51\x7b\x4a\x3b\x50\x50\xe5\xcc\x7c\xb0\x78\x55\x73\x6b\xc5\xfe\xfe\x7e\xf3\xfc\xf9\xf3\xf5\xf2\x77\x0e\xf1\x9c\x71\x77\x0b\x83\x3a\x75\x65\x5f\xef\x19\x66\x6e\x6e\x4e\xee\xd9\xb3\x87\xac\xf9\x4a\x25\xe9\x35\x79\x70\xc9\xbb\x5f\x61\x52\x4a\xbd\x00\xaa\x57\xd4\x02\x90\x60\x9c\x89\xad\xfe\xfd\xb5\x70\xfe\x45\x10\xa6\x99\x39\xf3\x8d\x6f\x7c\xc3\xbc\x51\x5e\xf5\xe8\xd9\x90\x21\xd1\x71\x2f\x00\x70\xb1\x58\xa4\xbe\xbe\x3e\x93\x88\x4c\x16\xc0\x92\xbf\x98\x1d\x9e\xf7\x1d\x56\x20\xd4\x2a\x66\x01\x6a\x6e\xb0\xc6\xd8\x28\x40\x6a\x4f\xc2\xf3\xc9\x8c\xdb\x9c\x58\x0c\x14\xc7\x35\x4d\x33\x86\x87\x87\xe5\xc4\xc4\x04\xe9\xba\xfe\xcf\x86\xc4\x0d\x60\x62\xb1\x18\x7b\xbd\x5e\x49\x44\x94\xf0\x1a\xa9\x15\x9f\x51\xe8\x58\xd5\x36\x6b\x26\x79\x6c\x77\x1b\xdb\x1e\x54\x50\x39\x7b\x26\xb6\xfa\xdd\x0f\xba\xd2\x7f\x0b\xc2\x15\x66\x5e\x2e\x14\x0a\xc5\xd1\xd1\x51\xb2\x9c\xc6\x6e\x8a\x9e\x8d\x1a\x12\xab\x0c\x6d\x2b\x2b\x2b\xd4\xdd\xdd\xcd\x7e\xbf\x5f\x02\xe0\xac\x26\x8b\x04\x0a\x75\x27\xdc\xc3\xe5\x4d\x07\x2c\x78\x5d\x5d\xae\xc6\xd8\x28\x40\xae\xde\x15\xf7\xd1\x9c\x26\xaf\x2f\x36\x15\x27\x34\x4d\x33\x1c\x92\xe8\x9f\x0d\x89\x37\xc0\xac\xae\xae\x62\x68\x68\x88\x89\xc8\x60\x70\x71\xc5\x67\x2c\x5e\xde\x94\xbb\x92\x77\x49\x83\x00\x61\x08\x2e\xae\x78\x8d\xc5\x8b\xad\xd9\xf7\x5f\x19\x5c\xf9\xdb\xf1\x48\xfe\x79\x10\x3e\x62\xe6\x79\x00\xb9\xb7\xde\x7a\x8b\xad\x25\x3b\x37\x4d\x4f\x43\x8f\xc4\x9a\x67\x38\xdf\x31\x33\xe6\xe6\xe6\x30\x3c\x3c\x6c\x12\x91\x24\x22\x9e\x6f\xd2\x93\x9d\x49\xf7\xb6\xe6\xbc\x1a\x75\xc2\xc9\xc1\x28\x36\xdb\xd4\x8e\xd8\x08\x80\x60\x78\xfa\xe3\xde\xc7\x74\x45\xce\xce\x37\xe9\x63\x9a\xdb\x5d\xdc\xb6\x6d\x9b\x4c\xa5\x52\x48\x24\x12\xce\x01\x69\xed\x70\xcf\x8e\xbb\x9b\x18\xae\x79\x7f\x4f\x31\xa9\x54\x4a\x16\x8b\x45\x74\x77\x77\x1b\x44\x54\x60\x70\x5a\x57\xe5\xd2\x4c\x48\xff\x68\xb4\x3d\xfb\xf6\x87\x5d\xe9\xd7\x46\x3a\x32\xaf\x4c\xb6\x14\x4e\xe7\x5c\xe6\x07\x44\x74\xd5\x62\x9e\xec\xf5\xeb\xd7\x4d\x6b\xb5\xc5\x2d\xd1\xd3\xd0\x23\xb1\xc1\x73\x39\xe1\x7c\x3e\x2f\xdd\x6e\x37\x59\x87\x81\x18\x92\x98\xe7\x9b\xf4\xd4\x96\x45\xdf\x01\x55\x0a\xb7\xfd\xd3\xd2\x52\xa0\x0a\x3d\xb5\x5e\x8b\x4e\x0c\x81\x5c\xbd\x09\xcf\x23\x8a\xa4\xe2\x74\x73\x61\x44\xd5\x5c\x46\x7f\x7f\xbf\xcc\xe5\x72\xbc\xb4\xb4\x84\x06\xf4\xd8\x71\xb5\xcf\x77\x12\xe3\x14\xe7\xb7\x05\x13\x89\x44\x68\xf3\xe6\xcd\xe8\xe9\xe9\x41\xa1\x50\x40\x2e\x97\xbb\xa9\x74\x16\x16\x16\xc8\x34\x4d\xee\xea\xea\x32\x2c\x6f\xc5\x94\xb5\xc2\x64\x9e\x99\xa7\x89\x68\x92\x99\xaf\x59\xae\xaf\x71\x00\xb9\xeb\xd7\xaf\x9b\x2f\xbc\xf0\x02\xac\x89\xd4\x5b\x2a\x97\x93\x81\xea\x49\x9c\x7a\x9c\x58\x7e\x5e\x58\x58\x40\x57\x57\x97\xf4\xfb\xfd\x26\x00\x23\xef\xe2\x42\xd2\x63\xf0\xc0\xb2\xf7\x81\xd2\x16\xc1\xa5\xfc\xc8\xf9\x6b\x8b\x8c\x8a\x3b\x48\x35\x86\x00\x57\x57\xd2\x7d\x34\x94\x57\x43\x53\xa1\xc2\x79\xa9\x52\xae\xb7\xb7\xd7\x0c\x85\x42\x3c\x3d\x3d\x6d\xf7\xd3\xb5\xfa\x9a\x4d\xab\xd3\x86\x73\x3b\x31\xce\xbe\xbf\x1e\xf6\x96\x31\x3e\x9f\x8f\x0e\x1d\x3a\x44\x47\x8f\x1e\x45\x6f\x6f\xaf\xda\xd1\xd1\x21\xb6\x6f\xdf\x8e\x96\x96\x16\x4c\x4e\x4e\x42\x4a\xb9\xe1\xbc\xe6\xe7\xe7\x71\xf6\xec\x59\xb3\xb3\xb3\xd3\x0c\x04\x02\x05\x00\x39\x22\x4a\x5a\x4b\x92\x56\x2c\xa6\xca\x66\xb3\xd9\xe2\xd7\xbe\xf6\x35\xf3\xea\xd5\xab\xe4\x58\x61\x72\x4b\xe5\x5a\xd7\x23\x11\xf5\x39\xb1\x7c\x35\x4d\x93\x17\x17\x17\x69\x70\x70\xd0\x54\x55\xd5\x44\x69\x5d\x51\xca\x6d\xd2\xa6\x8e\x94\xdb\x9a\x6c\xb5\x86\x90\xeb\x78\x2d\xd6\x62\x08\x44\x91\x8c\x6b\x6f\xef\x8a\x67\xd7\x5c\x50\x3f\x97\xd3\x64\x32\x1c\x09\x9b\x5b\xb6\x6c\x91\xc9\x64\x92\x56\x57\x57\xeb\x35\x7c\x23\x23\xe1\xed\xc0\xd4\xd3\x03\x9c\x9f\xc4\x2d\x61\xba\xba\xba\xe8\xe4\xc9\x93\xe8\xec\xec\x54\x09\xe4\xeb\x5e\x75\x0f\x6d\x9f\xf7\x3f\x34\x1d\xd2\xaf\x87\xc3\x61\x19\x8d\x46\xe5\x95\x2b\x57\x6e\x3a\xaf\x4b\x97\x2e\xf1\xdc\xdc\x1c\x0c\xc3\x30\x93\xc9\xa4\xe1\x72\xb9\x8a\xd3\xd3\xd3\xc6\xcc\xcc\x8c\xf9\xe1\x87\x1f\xb2\xe3\x1c\xf8\x8f\x5d\xae\x75\x3d\x12\x1d\xf1\x70\xdc\x3b\xb1\x22\x97\xcb\xa1\x58\x2c\xa2\xa7\xa7\xc7\x24\xa2\x22\x08\xe6\x4c\xb3\xbe\x35\xd6\xea\x8f\x00\x00\x0d\x00\xff\x0d\x00\xf2\xea\x49\x44\x41\x54\x14\xcd\x68\x03\x2d\x39\xb5\xcd\x66\xa2\x32\x45\x75\xbc\x16\xab\xf6\xe1\x71\xe8\x48\x7e\x5d\xed\x1f\x5a\xf4\x7e\x46\x57\xe5\xc2\xa2\xbf\x38\xe5\x72\x6b\xe6\xe6\xcd\x9b\x65\x20\x10\xc0\xb5\x6b\xd7\x6a\x69\xac\xa2\xab\x41\x39\x6e\x15\x53\xfb\xae\x9e\xa4\xde\x30\xc6\xeb\xf5\xd2\xd1\xa3\x47\x71\xf0\xe0\x41\xa1\x69\x9a\x5b\x48\x84\x76\xcf\x06\x7e\xec\xd3\x97\xc2\x7f\xd2\x93\xf0\xfc\xe4\x52\xa0\xf8\x5e\xdc\x5b\x9c\x6b\x6e\x6e\x36\x54\x55\x65\xc7\x51\x03\x1b\xce\x2b\x95\x4a\x61\x72\x72\x12\xe3\xe3\xe3\x38\x7f\xfe\x3c\xc6\xc6\xc6\x30\x39\x39\x09\xeb\x08\xa9\x9b\xa6\xb9\x11\xe6\xa6\x0c\x89\x8e\x67\x72\xfe\x6e\x71\x71\x91\x23\x91\x08\x5a\x5a\x5a\x4c\x00\x86\x14\x28\x4e\x86\xf2\x8b\x3d\x09\xcf\x0e\xbf\xae\x34\xd7\xa3\xa0\x91\xb1\xd1\xea\xdc\x60\xcb\x2b\x55\x8a\xe6\xfe\xb8\xe7\xb3\xd1\xac\xab\x63\xbe\x49\xff\x48\x57\x39\x17\xdd\x14\x35\x77\xef\xde\xcd\x00\xec\xa5\xc5\x4e\x1a\x6b\xef\xeb\x95\xe3\x66\x31\xb7\xcd\x00\xb8\x6f\xdf\x3e\x7a\xf4\xd1\x47\xd1\xda\xda\xaa\x12\xc8\xdf\x9c\x57\x62\x9f\xf9\x28\xf2\x9f\x1f\x9c\x0e\xfc\x47\xa5\xb4\x75\x9d\xbb\x33\xa9\xed\x1b\x8f\xe6\x5e\x2d\xb8\x38\xd1\xd6\xd6\x66\x2c\x2f\x2f\xb3\x75\x7c\xd4\x6d\xa7\xe7\xe3\x62\x6e\xda\x90\x58\xe7\x5e\x00\xe0\xb1\xb1\x31\xde\xb2\x65\x0b\xbb\xdd\x6e\x03\x40\xd1\x50\x58\x9f\x0a\x15\x96\x63\x71\xcf\x6e\x77\x51\xf1\x95\x1d\x9b\x6e\x60\x6c\xac\xc8\x2a\xe7\x29\x5e\xa4\x84\xb3\xae\x07\xb6\x2e\xf8\x4e\xb0\xe0\xe4\x92\xbf\x38\x4d\xaa\x30\xbb\xba\xba\xcc\x2d\x5b\xb6\xa0\x58\x2c\xd2\xf2\xf2\xb2\xf3\x23\x80\xe3\xbe\xb6\x1c\xb7\x8a\x01\xd6\xd6\xd5\x86\x0d\x6e\x43\x43\x43\x74\xe2\xc4\x09\xea\xef\xef\x57\x15\x45\xf1\xb8\xa4\x88\x3c\x30\x1d\xf8\xf1\xcf\x7c\x14\xf9\xfd\x4d\x19\xd7\x51\x01\x52\xec\xcf\x5d\x33\x45\xa4\x25\xab\xb6\x5d\x8e\xe6\x4e\x49\xe2\x5c\x5f\x5f\x9f\xf1\xd1\x47\x1f\x91\x61\x18\x1b\xca\xeb\x6e\x62\x6e\xc9\x90\xe8\xc0\x54\xe9\x0a\xe3\xe3\xe3\xb4\x79\xf3\x66\x53\xd3\x34\x83\x99\xf5\x82\x8b\x73\x53\xa1\xc2\xd2\xe6\x65\xef\x6e\xcd\xde\x1f\x79\x1d\xaf\xc5\x4a\x20\xab\x6b\xab\xbc\x22\x66\x68\x52\xb4\xf4\xad\x78\x4e\x0e\x2c\x7b\xf7\x65\x5d\x72\x7e\xd5\x6b\xac\xb8\xdc\x9a\xd9\xd7\xd7\x27\x77\xef\xde\x0d\x4d\xd3\x68\x7a\x7a\xda\x49\xb3\x5d\xf0\x7b\x66\x48\xdc\xbf\x7f\x3f\x7d\xfa\xd3\x9f\xa6\xcd\x9b\x37\x0b\xb7\xdb\xed\x16\x12\xa1\xcd\x71\xdf\xc3\x8f\x5f\x0c\xff\xb7\x6d\x0b\xfe\x7f\xa7\x49\xd1\x62\x4b\x5d\x67\x55\x34\xe7\xd5\x2d\x00\xd2\x53\x21\xfd\xbc\x10\x42\xef\xe8\xe8\x30\x2f\x5e\xbc\x58\x9b\xdf\x4d\xd3\x73\xbb\x31\xb7\x64\x48\xac\x73\x15\x00\xa8\x58\x2c\xca\xd5\xd5\x55\x8a\xc5\x62\x06\x11\x19\x44\xa4\x67\x35\x99\x9d\x0b\x16\x92\x7d\x71\xef\x0e\xcd\x14\xee\x72\x0e\x00\x1a\x1b\x1b\x2b\xdc\x53\xd6\x89\x2a\x7b\x32\x93\xbf\xa8\xf4\x6f\x59\xf2\x7e\xa1\x3b\xe1\xde\x9e\xd3\xe4\x62\xd2\x6b\x26\x14\x55\x41\x5b\x5b\x1b\xef\xdd\xbb\x97\x23\x91\x08\x09\x21\xc8\xda\x0c\xa0\x1e\xad\x65\x9a\xd7\x29\x4f\x2d\x66\xc3\xc6\xbd\x81\x81\x01\xb2\xba\x2a\xea\xea\xea\x52\x15\x45\xf1\x08\x50\xb0\x6f\xc5\x73\xf0\xb1\x4b\x2d\xff\x79\xdf\x54\xd3\xff\xee\xd7\x95\xcd\xd6\x96\xe5\x35\x99\x33\xac\xfd\x19\xa9\x3d\xe5\xde\xbb\x10\xd0\xcf\x26\xbc\xc6\x54\x20\x10\xd0\x5d\x2e\x17\xa6\xa6\xa6\x6e\x9a\x9e\x3b\x89\x21\xeb\xe1\xb6\x86\x9e\x9e\x1e\x7c\xfa\xd3\x9f\x16\xaa\xaa\x7a\x00\xb4\x32\xf3\xd0\xa6\x8c\xf6\xc9\xa7\x2e\x44\x7f\x21\x98\x57\xc2\x95\x0d\xa9\x4a\xa1\x5c\x71\x55\x55\x59\xea\xc4\x9c\xce\x98\x15\xae\xae\x60\x18\xac\x2f\x06\x8a\xaf\x7d\xd0\x95\xfe\xf3\xb1\x48\xee\x74\x5e\x95\x09\x10\xf2\xcc\x6c\x00\x90\x63\x63\x63\x98\x9d\x9d\xc5\xf4\xf4\x34\x56\x57\x57\xed\x04\xea\xb9\x28\xd4\xc6\xad\x87\xb1\xbf\x42\x01\x00\xcd\xcd\xcd\xe8\xec\xec\x44\x47\x47\x07\x62\xb1\x18\x14\x45\x11\x28\x1d\x78\xa7\x79\x0c\x11\x8e\x2d\x7b\x0e\x3d\x38\xdd\xf4\x3f\x6f\x4a\xbb\x8e\x11\xec\x23\x44\x2b\xdd\x78\x75\xb9\x9c\x81\x90\x76\x1b\x57\xbe\xf1\xc0\xc2\x97\x12\x1e\x63\x84\x88\xb2\xcf\x3f\xff\xbc\x1c\x1f\x1f\x5f\x97\x9e\x8d\xd0\x7c\xbb\x30\x4e\x06\xaa\xfd\x71\xbd\xe7\x7a\x15\x2c\xeb\x60\xe4\xfe\xfd\xfb\xc5\x9e\x3d\x7b\x04\x4a\x0e\x4b\xad\x00\x06\x23\x59\xd7\x91\xcf\x8e\x46\xfe\x4d\x34\xe3\xea\x74\x32\x8b\xfd\x19\x96\xaa\xcf\x62\x19\x46\x79\xfe\xc6\xd9\xa5\x35\xc6\xc0\xc8\x68\xe6\xa5\xab\x91\xfc\x3f\x5c\x6a\xcd\x7e\x6f\xae\x49\x1f\x33\x05\x67\x41\xa5\xdd\xb5\x98\x59\x66\x32\x19\x39\x3b\x3b\x8b\x5c\x2e\x87\xd9\xd9\x59\xa4\xd3\x69\x2c\x2f\x2f\x4b\x45\x51\x44\x9d\xcd\x03\xaa\xca\x65\x63\x5a\x5a\x5a\x44\x30\xf8\xff\xb5\x77\x75\xbd\x6d\x23\x57\xf4\xdc\x21\x45\x51\xb2\x2c\x5b\x8e\x62\xcb\xb2\xd7\x71\xec\x24\x9b\xe6\xab\x4e\xda\x8d\xf7\x61\x37\x09\x36\x41\x80\x6d\x81\xa2\x0f\x7d\xe9\xf3\xfe\x82\xfd\x0f\xfd\x0f\x7d\x2c\xfa\x10\xa0\x2d\x90\xb6\xd8\x00\x05\xda\xa4\x68\x83\x7d\x08\x62\xac\x8d\x38\x71\x16\x1b\x7f\x24\x8e\x6d\xf8\x23\x96\x65\x59\xa6\x29\x4a\xa4\x66\xfa\x40\x52\xa2\x65\x52\x91\x1c\x39\x71\x93\xbd\x80\x40\x89\x73\x34\x43\xce\x5c\xdd\x19\x1e\x52\xf7\xc4\xd1\xd9\xd9\x89\x44\x22\x81\xde\xde\x5e\xb4\xb7\xb7\x33\xc0\xc9\x45\x08\x52\x24\x81\x68\xcf\xb6\x32\x78\xea\x55\xf4\x97\xc3\x1b\x91\x5f\xc7\x8a\xd2\x69\x00\xf2\xeb\x73\x12\xfa\x9e\x17\x16\x12\xc5\x6f\xbe\x39\xbb\xfe\xb5\xc5\xc4\xaa\xae\xeb\xc6\xad\x5b\xb7\x82\x8e\xd5\x77\x2c\x0e\x12\x73\x20\x11\xc8\xad\x7c\x74\x74\x14\x17\x2e\x5c\x60\x00\x54\xd8\xd9\x24\x4e\xb4\x99\xd2\xa5\x9b\x3f\x74\x7d\x75\x6c\x53\x3d\x65\xf7\x1e\x01\xce\x73\x43\xde\x64\x33\x95\xe4\x9d\xce\x5f\xa7\xed\x8e\x75\xa7\x36\x51\x17\x23\x08\xc6\xb6\x5a\x7e\x3c\xdf\x65\xdc\x7b\x99\x28\x7c\xbb\xd6\x5e\x9a\xde\x51\x78\x4e\x40\x94\xdc\x6c\x5d\x80\xad\x2b\xe6\x12\x69\x6b\x6b\x6b\xa8\xf9\xcb\x75\xf5\x58\x88\x90\x4a\xa5\x5c\x46\x9d\x39\x79\x0b\x99\xa3\x0d\x26\x13\x48\x89\x98\x2c\xde\xb3\xad\x9c\x38\xb6\xa9\x7e\x3e\x98\x55\x6f\x74\x18\xf2\x25\x12\xa4\x56\x83\xa5\x3d\x35\xb9\x17\x0a\x15\x45\x1f\xa7\xa8\x3e\x46\x60\x6c\x20\xff\xbb\x07\x83\xf9\xdf\x83\x90\x79\xfe\xfc\xb9\x75\xef\xde\x3d\xef\x0f\xbc\x76\xc0\xbd\xfb\x0f\x14\x43\xa8\xef\x81\xaf\xf3\x44\xd7\x02\x31\xa3\xa3\xa3\xec\xfc\xf9\xf3\x8c\x31\xa6\xc2\x4e\x25\x32\x18\xb2\xe8\xc2\x67\xcf\x3b\x7e\x7b\x7e\x35\xf6\x29\x13\xc4\x04\x76\x5f\x9d\x79\xad\x9a\x62\xd7\xe9\x60\xbf\x15\x53\x00\xc6\x79\xb0\xaa\x54\x94\xc5\x72\x2e\x62\x4e\xad\xc4\x4b\x13\x6b\xed\xa5\xc9\xcd\xa8\x39\x9f\x8b\x58\x99\x32\x13\x46\x99\x50\x02\x81\x7b\xce\xa7\xd6\x8b\x98\xd3\x06\x23\x10\x63\x02\xb2\xc4\x49\x8d\x17\xe5\xae\x84\x2e\x0f\xf6\x6c\x2b\xe7\xd2\x5b\xe1\x4f\x12\x05\xf9\x9c\x6a\xb2\x01\x02\x14\x3b\x5a\xd6\x6a\x41\xef\x3e\x3a\xaf\x03\x35\x82\xb1\x18\xcf\xff\xe3\xcc\xc6\x57\x2f\x8e\x18\xf7\x84\x10\xda\x9d\x3b\x77\xb8\x43\x61\x04\x0d\x3c\x50\x7f\x2c\x5b\x82\xa9\x8d\x40\x7e\xa0\x20\x6b\x04\x03\xc0\xd6\x0e\xbd\x71\xe3\x06\x24\x49\x52\x89\xa8\x13\xc0\x00\x09\x9c\x3e\xb3\xda\xf6\xe5\xe7\x73\x9d\xbf\x52\x3d\x0a\x36\x5e\xe1\xfb\xbd\x6b\xa2\x6a\x58\xdf\x3f\x46\x40\x00\xba\x29\x89\x8c\x1e\x2a\x2f\x6b\x6a\x79\xb5\x20\xf3\x57\x46\x88\x67\x0b\xa1\xf2\x96\x25\x09\xc3\xd1\x49\xe3\x24\x20\xcb\x9c\x54\xd5\x64\x1d\xaa\xc5\x3a\x23\xa6\xd4\x1d\x2b\x4a\xa9\x58\x51\x4a\xcb\x9c\xba\x99\x40\xb4\xda\x07\x3e\xeb\xf1\x1a\x29\xac\x37\xc5\xbc\x4c\x18\x7f\xf9\xdb\xf9\xf5\xaf\x01\x64\x26\x27\x27\xad\xb1\xb1\xb1\x46\xba\xff\x40\x6d\x8f\x6a\x73\x8d\xf9\x79\xa1\xfb\xbe\xb6\xbc\x16\x53\xb1\x85\x85\x05\xdc\xbd\x7b\x97\x5d\xbf\x7e\xdd\x50\x14\x25\x0b\xc0\x12\x04\xe3\x69\x6a\x47\xcb\xb4\x99\xcb\x5f\xcc\x24\x7e\xd3\xad\x85\xfa\x5d\x0a\x11\xa8\x5e\x9b\xed\xfe\xdf\x87\x67\xda\xda\x37\x86\x40\x40\x34\x5c\xa6\x01\xa5\xcc\x06\x12\x46\xc8\x29\xaf\x6f\xde\x75\x9a\x3b\xdb\xb8\x8d\x56\xf7\x91\x83\xd9\x9d\x0a\xf0\x4d\x31\x16\x83\xf5\xa8\x6f\xfb\x5f\x63\xc7\xf2\x7f\xa4\xdd\x51\x3a\x68\xec\x7c\xc7\xe1\x20\x30\x2d\x23\x12\x7d\xf6\x7b\xcb\x58\x3e\x9f\xe7\x8f\x1e\x3d\x12\x27\x4f\x9e\xe4\xe1\x70\xb8\x04\xa0\x00\xc2\xb6\xa6\x58\xd9\x99\x6e\x7d\x4e\xe6\xac\xfd\xa8\xa6\xf4\x4a\x20\xe6\x1e\xc6\xde\xf8\x52\x6d\xa4\xd5\x18\x78\xca\xc8\xe7\x55\x09\x04\x9e\xed\xee\x7a\x5a\x8f\x01\x01\xb9\x88\x99\xb9\xfb\x71\xf6\x4f\x8f\xd3\x3b\x7f\x2d\x4b\x78\x0e\x20\x23\x84\x28\xde\xb9\x73\xc7\xef\x09\x42\x77\xeb\x3b\x06\x07\x81\x69\x29\x91\xe8\xd3\xe0\x9e\xf5\xd2\xd4\xd4\x94\xe8\xea\xea\x12\x89\x44\xa2\x24\x84\x28\x10\x91\x56\x66\xc8\xbf\x4c\x18\x2f\x56\x3b\x8a\x1b\x47\xb5\x50\x5f\xc4\x94\x62\xbb\xd2\xc7\x00\x7b\x7b\x1b\xd5\x2b\xb3\x83\xc7\x38\x65\xb4\x7b\xeb\xb7\x7e\x69\x15\xa6\x2c\x09\xeb\x69\x6a\x67\xec\x9f\xa7\xb3\x7f\xc8\xc4\xcc\x6f\x61\x3f\x00\xb6\x0a\x5b\x52\xa1\xec\x24\x2d\xad\x1d\x03\xbf\x40\x7a\xa0\x98\x96\x12\x89\xf0\x77\x32\x51\x5b\xcf\xfc\xfc\x3c\x15\x8b\x45\xd1\xdf\xdf\x5f\x26\xa2\x02\x80\x1d\x10\xb4\xad\x48\x79\xed\xd9\x51\x7d\xa6\x4c\x90\xbb\x77\x94\x3e\x49\x90\x54\x4b\x24\x7a\x97\xc8\x41\x64\x63\xab\x31\x8d\xaa\x2d\xb7\x0a\xf3\x2a\x66\x2e\xdf\xfd\x38\xfb\xe7\xc7\x7d\xda\xdf\x4b\x12\x7f\x04\x60\x96\x88\xd6\x00\xec\x6c\x6e\x6e\x5a\xb7\x6f\xdf\xf6\xb2\xe6\xb5\x63\x40\x08\x1e\x8b\xff\x0f\x22\x11\x0d\x2e\xc2\x93\xc9\x24\xbb\x79\xf3\x26\x62\xb1\x98\x2c\x84\x50\x9d\x04\x92\xfd\x04\x1a\xe8\x2c\xc8\x3f\xfd\xf4\x65\xfc\x17\x27\xd6\xa3\x67\x64\x01\xd9\x9d\x8a\x6c\xf3\x4e\x3b\xaf\x27\x1b\xdf\x1c\xe3\xb5\xea\x74\xd7\x5a\x8c\xc0\x76\xb8\x9c\xfb\x6e\x20\xff\xdf\xa7\x3d\x3b\xff\x29\x4b\x98\x05\xb0\x00\xe0\x15\x00\x8d\x73\x5e\x7a\xf6\xec\x19\x77\xd4\x9a\x2b\x7d\x88\xf7\x95\x48\x0c\xd8\xfa\x62\xae\x5e\xbd\xca\x4e\x9d\x3a\x65\x73\x2a\x44\x31\xd8\x9c\x51\x3f\x09\x0c\xf6\x6d\x85\x3f\xf9\xf9\x42\xfb\x17\x1f\xe5\xd4\x21\x26\xc0\xdc\x2e\xdf\x1f\xd9\xd8\x1a\x4c\x23\x04\x60\xe3\x18\x01\x3d\xc4\xb5\x27\x69\x6d\x6c\x32\xad\xfd\xbb\x10\xe2\xd3\x02\x62\x81\x6c\x6d\xb1\x1c\x11\x19\xba\xae\x5b\xf7\xef\xdf\xc7\xe2\xe2\x62\x50\xdf\xbf\x9f\x44\x62\x33\x98\xa3\x47\x8f\xe2\xca\x95\x2b\x38\x72\xe4\x08\x13\x42\xa8\xb0\xb5\xae\x92\x44\x94\x76\x1c\xe9\xe2\xa5\xc5\xf6\x6b\x03\xb9\xf0\x90\xc4\xed\xdc\x8e\x6f\x42\x36\x36\x85\xd9\x37\x01\x58\x07\xe3\x44\x9c\xef\x53\x3b\x13\x4f\x7a\xb5\xfb\x9a\x52\x9e\x25\x5b\x83\x63\x15\x40\x96\x88\x74\xd3\x34\x4b\xb3\xb3\xb3\x78\xf0\xe0\x01\x9c\x6c\xb1\x6f\x95\x24\x6c\x04\x43\xa8\xef\x81\x6f\x4c\x24\x36\x58\x0f\x03\xc0\x19\x63\x6c\x64\x64\x04\xe7\xce\x9d\x83\xaa\xaa\x32\x6c\x06\x3b\x0e\x3b\x22\xa5\x49\xa0\x3f\xa9\x85\x7e\x72\x61\x39\xf6\xd9\xf0\x46\xe4\x4c\xc4\x64\x51\x77\xb0\xf7\x4b\x36\x36\x8a\xa9\x44\x93\x26\x09\x40\xda\x55\x2e\xc0\x09\x3c\xd3\x66\xae\x3e\xed\xdd\xf9\x6e\x3a\xa9\x3f\x34\x42\x7c\x1e\x84\x25\x00\xab\x00\xb2\xb0\x75\x29\x4a\x2b\x2b\x2b\xfc\xe1\xc3\x87\x58\x5f\x5f\x7f\x67\x24\x61\x23\x98\xda\x08\x74\x20\x44\xe2\x3e\x8c\x5f\xbb\x76\x8d\x0d\x0f\x0f\x33\x49\x92\x64\x21\x84\x02\x20\x4e\x44\x5d\x42\x88\x6e\x02\xa5\xa3\x26\x1b\x1c\xce\x44\x7e\x76\x7a\xad\x6d\xa4\x47\x53\xd2\x12\xb7\xd7\x49\x95\xc5\x2a\xdc\xc8\x52\xbb\x4c\x45\xd3\x18\xdf\x6b\x87\x26\x49\x42\x5d\xe1\xda\x8b\xae\xc2\xf4\x0f\x3d\xfa\xc4\x72\xbc\xf8\x84\x33\x2c\x3b\x8a\x3f\x19\x21\x44\x0e\xb6\xdc\x42\x29\x9f\xcf\xf3\x89\x89\x09\xcc\xcd\xcd\x05\xde\x5a\x39\x4c\xb6\xf7\x67\x58\x3f\xca\xf8\x85\x35\xbf\xef\xd6\xb3\xd7\x61\x2a\xed\x77\x74\x74\x60\x64\x64\x04\xc3\xc3\xc3\x4c\x96\x65\x19\xf6\x9d\xec\x28\xec\x0c\xed\x49\x00\xdd\xc4\x91\x4a\x14\xe4\xe1\xe3\x1b\x91\x73\xc3\x1b\x91\xd3\xc9\x9d\x50\x2a\x54\x26\xc5\x75\x26\xd7\xea\x45\x8c\x86\x30\xd5\xe5\xd1\xae\xcf\x41\x18\x01\xc1\x75\x85\x6b\x4b\x9d\xc6\xfc\xdc\x91\xc2\xf7\x8b\x89\xe2\x53\x43\xe6\x4b\x20\xac\xc2\x56\xfe\xc9\x02\xc8\x03\xd0\x01\x94\x36\x37\x37\xf9\xe4\xe4\x24\xa6\xa7\xa7\xdf\x0a\x01\xd8\x2a\x4c\xbd\x29\xac\xb6\x82\x66\xdf\x7b\x3f\x37\x8b\xd9\x73\x02\xce\x42\x1b\x64\x4b\x40\xca\xb0\x1d\x29\x06\xdb\x99\xba\x84\x10\x49\x26\xa8\xbb\xbd\x28\x7d\xd4\x9b\x0f\x0f\x0d\x6c\xaa\x27\x52\xdb\x4a\x7f\x87\x21\x77\x4a\xdc\xb9\x13\x0e\xdf\x89\x0b\x00\xf9\xc4\xa0\xbd\x16\x44\x00\xda\xb5\x08\x14\x65\x6e\x64\xda\xcc\x57\xcb\x1d\xc5\xf9\x85\xce\xe2\xec\x7a\xcc\x9c\x2b\xca\x7c\x15\x84\x0c\x6c\x02\x30\x4b\x44\x79\x61\x0b\xf0\x1a\x42\x08\x6b\x7b\x7b\x9b\x8f\x8f\x8f\x63\x66\x66\x26\xe8\xdc\x1b\xe9\x9f\x77\x86\xa9\x17\x81\xfc\xac\x91\x86\x82\xb0\xcd\x62\x7c\xcb\x46\x46\x46\xd8\xd9\xb3\x67\xe1\xa8\x10\xbb\x51\x49\x85\xed\x4c\x71\x87\x0a\x88\x13\xa8\x8b\x09\x74\xb6\x95\xa4\x9e\xe4\x4e\xa8\x3f\xa9\x29\xe9\xa4\x2e\x77\x27\xf4\x50\x32\x5a\x92\x62\x8a\x45\x8a\xcc\x49\xa6\xca\x34\xec\x89\x58\x35\x1e\xe2\xcd\xbc\xc6\x09\xdc\x62\xc2\x32\x42\x5c\xdf\x0e\x97\xf3\x9b\x11\x33\xb3\x1e\x2b\xad\xae\xc7\xcc\xa5\x6c\xd4\x5c\x2c\xc9\x22\x2b\x80\x2c\x08\x39\xe7\x2a\x2a\x2f\x84\xc8\xc3\x96\x15\x30\x84\x10\x96\x65\x59\xd6\xda\xda\x1a\xa6\xa6\xa6\xdc\x8c\xf2\x41\x76\xa8\xa2\x8d\x1f\x86\x7c\x76\xb6\x7a\x81\xdc\x48\x3d\x4d\xb5\xc5\x18\xc3\xc0\xc0\x00\x86\x86\x86\x70\xfc\xf8\x71\x30\xc6\x18\x11\xc9\x8e\xb6\xa7\x22\x84\x88\x12\x51\x14\x76\x94\x8a\x03\x88\x09\x21\x62\x04\x8a\x12\x10\x0b\x95\x29\x16\xb6\x58\x47\x5b\x49\x8a\xab\x26\x8b\x85\x2d\x16\x55\x2d\x16\x0d\x95\x49\x91\x38\xc9\x92\xb0\x6f\xa7\x94\x09\x56\x99\x09\xab\x28\x73\xa3\x28\x73\xc3\x90\xb9\xae\x2b\x3c\x5f\x08\xf1\x7c\x51\xe6\x5b\x16\x13\x1a\x20\x74\xd8\x52\x03\x1a\xec\x29\x49\x83\x3d\x2d\xe9\x00\x0c\xb2\xc5\xed\x4a\x44\xc4\xb3\xd9\x2c\x7f\xf1\xe2\x05\xc6\xc7\xc7\xeb\xad\x35\xeb\xf5\xef\xa1\xc3\x1c\x9a\xcb\xf8\x06\x31\xbe\x27\x38\x34\x34\xc4\x86\x86\x86\x90\x4e\xa7\x11\x0e\x87\x99\x9b\x70\xc9\x33\xdd\xa9\x00\x14\x87\xac\x74\xb7\xae\x98\xac\xe2\x60\x64\x00\xb2\x93\xed\xab\x7a\x25\x55\x7d\x76\xc8\x82\xad\x66\xe3\xbe\x0c\x21\x84\xeb\x20\x06\x80\x12\x11\xb9\x65\x96\x73\xac\x3c\x93\xc9\x70\x57\x2a\xca\xc9\xd0\xef\x3d\x0f\xef\xb4\x1e\x74\xee\x87\x1a\x73\x28\x88\xc4\x56\x61\x5c\x25\xe4\x8b\x17\x2f\xb2\xde\xde\x5e\xa4\x52\x29\x57\x77\xdd\x7d\xf8\xcb\x55\x2f\x76\x1d\xc5\x75\x1c\x2f\x06\x0e\xc6\x4d\xdc\x04\x00\xae\x64\xa4\xdf\xd6\x75\x2e\xce\x39\x87\xa6\x69\x3c\x9b\xcd\x62\x61\x61\x01\x4b\x4b\x4b\x08\x50\x64\x7e\x27\xfd\x73\x10\x98\xc3\x18\x81\xbc\x8e\x1b\x74\x22\x68\x14\xe3\x8a\x88\x5c\xbe\x7c\x99\xf5\xf5\xf5\x81\x88\xe0\xa4\x73\xab\x44\x1a\xf7\xfb\xce\x67\xef\x7e\x38\x4e\x52\x79\x0f\xd8\x3c\x8f\x65\x59\x7c\x6b\x6b\x0b\xb9\x5c\x0e\x9a\xa6\x61\x65\x65\x05\x8b\x8b\x8b\xf5\x8e\xdd\xbb\xff\xbd\xc1\x1c\x2a\x22\xb1\xce\xc1\xfa\xb5\xd9\x32\x8c\x73\x1b\x05\xf1\x78\xdc\x4d\xb3\x57\xb1\x4c\x26\x03\xc3\x30\x00\x00\xd3\xd3\xd3\x15\x31\x3a\x47\x31\x07\xd8\xdb\x0f\x41\xe7\xfc\x5e\x62\x0e\x2d\x91\x18\x50\xb7\x9f\x23\xbe\x0d\xcc\x8f\xd6\x84\xb1\x9a\x6d\xed\x7e\xbf\xb2\xd7\xed\x6f\x06\xd3\x4c\xfb\x6f\x13\x53\xcf\x3e\x64\xcc\x9e\x4e\x0c\xea\xbc\x66\xdf\x37\x52\x67\x10\x26\x08\xeb\x67\xef\x02\xd3\xc8\x31\x7f\x88\x98\xfa\x05\xcd\x54\xd2\x02\xcc\xdb\x68\xa3\x19\x4c\x2d\xf6\x47\x0c\xaa\x97\xb0\xb5\x0b\x4f\xbf\x2f\x35\x8a\xa9\xad\x8f\xef\x13\xe3\xd7\x46\xd0\x22\xef\x6d\x60\x6a\x8f\xb9\xb6\x33\x3f\x48\xcc\xff\x00\xaf\x7b\x44\x0e\x96\x2e\xd3\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe1\xff\xf0\x7b\x3b\x4e\x00\x00") +var _web_uiV1StaticMstile144x144Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x3c\x40\xc3\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x90\x00\x00\x00\x90\x08\x06\x00\x00\x00\xe7\x46\xe2\xb8\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x69\x90\x1c\x47\x76\x26\xf8\x3d\x8f\xc8\xc8\xb3\xb2\xb2\x32\x13\x75\x5f\x59\x28\x14\x0a\x27\x89\xb3\x41\x80\x40\x93\x68\x76\x83\x0d\x92\xad\x6e\xb5\x34\x23\x69\xa6\xa5\xde\x59\x8d\x64\x63\x2b\x8d\x6c\x4c\xbb\xa3\x95\xc9\xd6\xc6\x34\x63\x6b\xda\x31\x4d\x9b\x56\x1a\x69\x65\x52\x6b\xa5\xd6\x31\xad\xab\x4f\xb5\xd8\x64\xf3\x26\x01\x82\x47\x93\xe0\x01\xa0\x0a\xc4\x51\x55\x40\xdd\x57\x56\x56\xde\x19\x19\xe1\x6f\x7f\x64\x44\x66\x64\x56\x66\xa1\x00\xe2\xd2\xb6\xbc\xac\x2c\x22\x3c\xbe\x74\x7f\xee\xfe\xe2\xf9\xf3\xe7\xcf\xdd\x09\x80\x00\x20\xad\x6b\x6d\x90\xd6\x55\xd4\xc4\xd5\x3e\xd7\x62\x36\x92\xce\xad\x62\xd6\x7b\x7f\xb7\x31\xff\x1c\x1c\xe1\x76\x57\xd6\x46\xd2\xfb\xa7\x82\x11\x8e\x77\xa2\x4e\xdc\x8f\x2c\x86\x6a\xc0\x76\x70\x7e\x7d\xb5\x92\xc1\x7e\xe7\x8c\xbf\x1b\x12\xe6\x7e\x94\x3e\xf7\x1b\x4d\xf7\x1b\xe6\x9e\x86\x5a\xe2\xea\x11\x7b\xb7\x30\xf7\x83\x14\xbc\x2f\x31\xb6\x04\x92\x1b\xb8\xd6\x26\x5a\x4f\x32\xd5\xcb\xb4\x9e\x34\x5b\x0f\xe3\x7c\xae\x27\xed\xee\x05\xa6\x11\xb6\x5e\xf8\x51\xc6\xdc\x17\xe1\xbe\xf9\xba\x1c\x98\x5a\xbd\xa0\xf6\xb7\x3f\xb2\x18\x15\x6b\x25\x4c\xbd\x67\x34\xc0\xd4\x72\xe4\x7a\xa3\xb9\x9b\xc1\xd4\xe6\x71\xaf\x31\xf6\xfd\x7a\xdd\xdf\x8f\x24\x86\xea\x44\xde\xae\x50\xaf\xeb\xbb\x6f\x30\xdb\xb6\x6d\x13\x81\x40\x00\x2d\x2d\x2d\x65\x40\x30\x18\x44\x30\x18\xac\xfa\xd1\xd2\xd2\x12\xf2\xf9\x7c\xf9\x79\x75\x75\x15\xc9\x64\x12\xa3\xa3\xa3\xeb\xe5\x77\x5f\x97\xfd\x76\x62\xa8\x4e\xe4\xcd\x48\xa0\x3b\x89\xa9\x27\xe5\xea\x49\x85\xba\x57\x55\x55\x61\x18\x86\xdc\xbb\x77\xaf\x68\x69\x69\x41\x24\x12\x41\x73\x73\x33\x88\x48\x38\xf2\x72\xde\x83\x99\x05\x51\xdd\x6f\xca\xa6\x51\x32\x33\x88\x48\xda\x71\xc5\x62\x51\x66\x32\x19\xac\xac\xac\x20\x1e\x8f\xe3\xdd\x77\xdf\x5d\x4f\x57\x58\xaf\x3c\xff\x24\x31\xb5\x4a\x74\x6d\xb8\xdf\x86\x85\x0d\x31\x2e\x97\x0b\xe1\x70\x18\xb1\x58\x0c\x1d\x1d\x1d\x88\x46\xa3\x20\x22\x61\x31\x45\xa9\xab\x66\xa8\xaa\x24\xcd\x6d\x90\xcf\x53\x54\x42\xc1\xbc\x12\xf5\x18\x22\xec\x36\x44\xc8\xa7\x2b\x21\xcd\x24\xbf\xc2\xa4\x09\x49\x1a\x00\x48\x62\xc3\x14\xac\xe7\x55\xb9\x9a\x77\xc9\x64\xde\x25\x13\x39\x97\x5c\x4a\x6b\x66\x3c\xa7\x99\x89\x82\x22\xb3\xa6\x80\xce\x60\x03\x80\xe1\x60\x2c\xb9\xbc\xbc\x8c\xf1\xf1\x71\xcc\xcc\xcc\x60\x61\x61\x01\x52\xde\xe8\xe3\xfe\xa7\x19\x6e\xa6\x0b\xdb\xa8\x04\x91\x0d\xde\x6d\x14\xd3\x48\xaa\xac\xa1\x83\x88\x44\x4f\x4f\x0f\x06\x07\x07\xd1\xdd\xdd\x0d\x8f\xc7\x63\x4b\x15\x15\x0c\xcd\x25\xc9\x13\xca\xa9\xd1\xd6\x94\x36\x1c\x4d\xbb\x76\x45\xb2\xae\xe1\xe6\xbc\x3a\xe8\x29\x8a\x76\x55\x52\x50\x30\x3c\x25\x3c\x09\x80\x4b\xa9\x32\x50\x92\x42\x6c\xc7\xa0\x54\x4d\x6c\x97\x5d\x4a\x42\xde\x10\x9c\xc8\xb9\xcc\x99\x94\xc7\x9c\x58\xf4\x17\x2f\x2c\x05\x8a\xe7\x17\x02\xfa\xc5\x84\xd7\x88\x1b\x82\xf3\x20\xe8\x00\x0c\x00\x32\x93\xc9\xc8\xf9\xf9\x79\x8c\x8c\x8c\x60\x76\x76\x16\xcc\x7c\xcb\x92\xf5\x7e\xc3\x50\x0d\xb0\xb6\x11\x9d\x0d\xe6\x0c\xb5\x0c\xb0\x9e\xe4\x58\x2f\x9d\x9b\xc1\x94\x43\x38\x1c\xc6\xd0\xd0\x10\xfa\xfb\xfb\xd1\xd4\xd4\x64\x4b\x18\x55\x91\xf0\x85\xb3\xae\xce\xee\x84\xfb\xc1\xde\x15\xcf\x27\x37\xa5\xb5\xbd\xbe\xa2\x18\x24\x86\x0f\x20\x80\x19\x04\x02\x97\xf9\x81\x01\xa2\x12\x7b\x70\xe9\xbe\x1e\x86\x40\x16\x33\x55\x30\x00\x55\xd8\x0a\x5c\x4a\x9e\x90\xce\xba\xe4\x95\xf9\x26\xfd\xec\x64\x28\x7f\x6a\x3a\x54\x38\xbb\xec\x2b\xce\x98\xc4\x79\x94\x24\x94\x91\x4e\xa7\xe5\xd8\xd8\x18\x46\x46\x46\x90\x4c\x26\x37\x52\xdc\xfb\x3a\xdc\x09\x25\xfa\x46\x12\xe4\x46\x18\x27\x13\x95\xdf\x29\x8a\x22\x3a\x3b\x3b\xb1\x77\xef\x5e\x44\xa3\x51\xa1\x28\x8a\x60\x66\x4d\x61\xf2\x6d\x4a\x6b\xfd\x83\x4b\xde\xe3\x03\xcb\xde\xcf\x36\xe7\xd4\xdd\x0a\x23\x04\x26\x87\xe0\xc0\xc7\xbf\x87\xf5\x4c\x8e\x2b\xd6\xc1\x80\xa5\x49\x48\x26\x7c\xc5\xb3\x13\xe1\xfc\xf3\x97\x36\x65\x5f\x58\xf2\x17\xaf\x9b\xc4\x59\x00\xba\x94\x52\xce\xcc\xcc\xc8\x8b\x17\x2f\x62\x62\x62\xa2\xc4\xc0\xd5\x61\xbd\x7a\xb9\x6f\x30\xf7\xbd\x21\x51\x55\x55\xb1\x75\xeb\x56\x3c\xf8\xe0\x83\xf0\xfb\xfd\x76\xf7\xe4\x69\x2a\x28\xad\x43\x8b\xbe\xc7\x86\xe7\x7d\x5f\x0c\x67\x5d\x07\x05\x53\xa0\xd4\x86\xce\x56\xb6\x8b\x58\xea\x90\xa8\x2e\x27\x6c\x04\x53\xf9\xce\xaa\x31\xa8\xc1\x36\xc6\x98\xc4\xe9\x65\x7f\xf1\xed\x8f\x5a\xb3\xdf\xbc\xb4\x29\xfb\x42\xca\x6d\x2e\x80\x90\x07\x60\x2c\x2f\x2f\xcb\xf7\xde\x7b\x0f\x53\x53\x53\xd0\x75\x7d\x4d\x1d\xa0\xb1\x64\xbe\xe7\x98\xfb\x76\x18\xaf\xaa\xaa\xd8\xb6\x6d\x1b\x76\xed\xda\x85\x40\x20\x60\x4b\x9b\x40\x47\x52\x1b\x7a\x60\xa6\xe9\x5f\xf5\xc5\x3d\x9f\xd3\x4c\xea\x2c\x75\x2f\xf5\x1a\xbe\x3a\xdc\x19\x4c\xfd\xb0\x1e\x86\xc1\xd0\x15\x9e\x1a\x0f\xe7\xfe\xe1\x5c\x67\xe6\xaf\x67\x83\x85\x8b\x26\x71\x96\x88\xf4\x6c\x36\x2b\x4f\x9f\x3e\x8d\x89\x89\x89\x8f\xab\x47\xde\x35\x0c\xd5\x00\xd1\x00\xdc\xa8\xab\xd9\xa8\x42\x7d\x33\x18\xf4\xf5\xf5\x89\x03\x07\x0e\x20\x1c\x0e\x0b\x00\x1a\x49\x04\xfa\x57\x3c\x7b\xf7\x4d\x36\xfd\x62\x47\xd2\xfd\x98\xc2\x14\xa8\x53\xd0\x52\xa8\xdf\xee\x1f\x0f\xc3\x28\xf5\x88\xb5\x42\xe9\x63\x62\x4c\xe2\xf4\x4c\x73\xe1\xd9\xb3\xdd\xa9\xaf\x4e\x84\xf3\xef\x33\x21\xcd\xcc\xfa\xf2\xf2\xb2\xfc\xd6\xb7\xbe\xb5\x5e\x7d\xd7\x53\x70\xef\x09\xe6\x4e\x4a\xa0\x5b\x0a\x27\x4f\x9e\x14\x5d\x5d\x5d\x82\x88\x34\x62\xf8\x7a\x57\x3c\xfb\x0f\x5e\x0b\xfe\xbb\x8e\xa4\xf6\x19\x02\x3c\x8d\xbb\x21\x60\x2d\x57\xdc\x2e\x0c\x4a\x8a\x33\x35\xe2\x8c\x5b\xc7\x70\x69\xb4\x97\x9f\x0d\xea\xcf\xbe\xd5\xbf\xfa\x07\x93\xa1\xc2\xfb\x4c\xc8\x32\xb3\x7e\xed\xda\x35\xf9\xdc\x73\xcf\xdd\xd7\xe3\xff\xfb\xc6\x90\xb8\x6f\xdf\x3e\xb1\x73\xe7\x4e\xb8\xdd\x6e\x0d\x0c\x4f\x24\xe3\x1a\x78\x68\x22\xf8\x2b\xb1\xb8\xf7\x27\x14\x26\x5f\x09\x6e\x57\x7a\x85\xf8\x4a\x2c\x70\xa7\x30\x4e\x16\xa8\x27\xbc\x6e\x17\xc6\x24\x4e\x8f\x45\x72\x7f\xf7\x46\xff\xea\x7f\x8f\xfb\x8c\x09\x06\x67\x8b\xc5\xa2\xf1\xde\x7b\xef\xe1\x83\x0f\x3e\x70\x42\xd7\x1b\x76\xdf\x55\xcc\x3d\x37\x24\x6e\xda\xb4\x09\xc7\x8e\x1d\x43\x24\x12\x51\x99\x59\xf3\x1a\x4a\xeb\xfe\xeb\x4d\x3f\xf3\xc0\x4c\xe0\x3f\xb8\xa4\x08\xdb\xb8\x7a\x8d\xed\x7c\xbe\xdb\x18\x3b\xfe\x4e\x60\x8a\x42\x2e\xbc\xdf\x9d\xfe\x9d\x77\xbb\x53\x7f\x53\x70\xc9\x25\x00\xf9\xb9\xb9\x39\xf9\xea\xab\xaf\x62\x75\x75\x15\xf7\x53\x50\x50\x29\x17\xd7\xf9\x77\xc6\xdb\x65\x94\x35\x71\x5c\xf3\x2c\xeb\xdc\xd7\xa6\x23\x01\xf0\xd6\xad\x5b\xe9\xd1\x47\x1f\x45\x53\x53\x93\x06\x46\x53\x2c\xee\x3d\x74\x72\x24\xf2\x7b\x03\x71\xef\xbf\x56\x58\xf8\xca\xa6\x3c\xcb\xb8\x47\x55\xc6\x3d\xa0\x2a\xe6\x0e\x62\x9c\x16\x9f\x46\xe1\x76\x62\x04\xc3\xdf\xb5\xea\x3e\x3e\xb0\xec\xfd\x44\xc2\x57\x1c\x5b\xf5\x98\xcb\x81\xa6\x80\x1c\x1e\x1e\x36\x93\xc9\x24\x56\x56\x56\x24\x2a\xf5\x58\xef\x8a\x75\xde\xdd\x56\x8c\x82\x92\x64\xb0\x4b\x26\x6a\xae\x70\xbc\xb7\x7f\x58\xcf\x5a\xe2\xc4\xd8\xbf\x41\x0d\xb6\x0a\x73\xe2\xc4\x09\xf1\xc0\x03\x0f\x08\x45\x51\xbc\x1e\x53\xb4\x1f\x1b\x6b\xf9\xf7\x47\xc7\x42\xbf\xed\xd7\xc5\x00\x11\x11\xc0\xa0\x72\x63\xda\xa9\x11\x88\x4b\xcf\xb6\xb5\xf8\x6e\x60\xec\xa6\x27\x50\x09\xc3\x8e\x67\xdc\x31\x0c\xf9\x0c\xa5\x67\xcb\x82\xef\xc7\xbc\x86\x50\x67\x83\x85\x4b\x52\xa1\x42\x2c\x16\x93\xa6\x69\x62\x7e\x7e\xde\xae\xdf\x7a\xd7\xf5\xde\xdd\x56\x8c\x2d\x81\x6c\x26\xb0\x19\xc0\xf9\x99\xd4\x93\x46\xa8\xc1\xd5\x8b\x77\x32\x54\x19\xd3\xdc\xdc\x2c\x7e\xfc\xc7\x7f\x9c\x5a\x5b\x5b\x55\x30\xfc\xed\x29\xf7\xee\x27\x46\xa2\xbf\x37\xb0\xec\xf9\x19\x01\xd2\xaa\x94\x50\xb2\x74\x10\x22\x4b\xf1\xb4\x52\xbd\x4d\x18\x2e\x63\xac\x67\x00\x52\x40\x32\x81\xed\x7f\x54\x5a\xd4\xaa\x32\x2a\x25\x41\x54\x89\xb3\xee\x99\x4a\xef\xd8\xce\xfe\x36\x60\x14\x90\xbb\x3d\xa5\x1d\xe9\x4d\x78\x76\x2c\x34\x15\xcf\x65\xdd\x32\xde\xde\xde\x6e\x8c\x8d\x8d\xa1\x50\x28\x34\x92\x18\xb5\xd2\xfe\x8e\x61\x08\x0d\x0c\x78\xb8\x3d\xba\x4f\x55\x88\xc5\x62\x38\x7e\xfc\x38\x14\x45\xd1\x88\x11\xdc\x3e\xe7\x7f\xfc\xe8\x58\xe8\xb7\x3c\x86\xe8\xb4\x31\xb6\x0d\x85\xeb\x8c\x64\xc8\x7a\x5f\xba\xbf\x15\x0c\x50\x14\xac\x67\xdc\x66\x7a\xc5\x6b\xc4\x93\x1e\x23\x91\xf4\x98\x89\xac\x66\x26\x73\x2e\x99\x2d\xa8\x32\x6b\x12\x1b\x52\xc0\x00\x00\x21\xed\xc9\x57\xe1\xf1\x16\x45\xc0\xaf\x2b\xc1\x60\x5e\x0d\x35\xe7\xd4\x70\x28\xaf\x86\xfc\xba\x08\x28\x92\x54\x38\x72\xae\xba\x32\x57\x7f\xcb\x1f\x13\x33\x15\x2a\xfc\xdd\x37\x76\x2f\xfc\x32\x80\xc4\xdb\x6f\xbf\x6d\xd4\x28\xd6\xf7\x24\xa8\x68\x6c\xec\x5b\x6f\xf8\x58\x6f\x44\x55\x0f\x53\x7e\x1f\x8b\xc5\xc4\xa7\x3e\xf5\x29\x21\x84\xd0\x5c\x26\x45\x8f\x8c\x35\xff\x2f\xbb\x66\x03\xff\x5e\x30\x79\xaa\xb5\x02\xe7\x67\x0f\x7b\xda\xc9\xc1\x18\x56\xfc\x06\x30\x12\x8c\xbc\x4b\x66\x17\xfd\xc5\xb9\xe9\x50\xe1\xfa\x5c\xb0\x30\xb1\xec\x2b\xce\xe4\x5d\x72\xc5\x24\xa4\x41\xc8\x02\xc8\x03\xd0\xad\x7f\xa3\x4e\x99\x54\xc7\xbf\x07\x80\x07\x0c\x9f\x22\x11\xf0\xeb\x4a\x24\x9a\x71\x75\x77\x24\xdd\xfd\x5d\xab\xee\xde\x48\xc6\xd5\xaa\x99\xd0\xca\x24\xd8\xf3\x6c\x35\xe5\x73\x14\x60\xc3\x98\x94\xdb\x58\x78\x71\xcb\xca\xb7\xad\x79\x3f\xb8\xdd\x6e\xbb\xfe\x6f\xd5\xde\x76\x5b\x30\x6a\xcd\x4b\x38\x00\xeb\x19\x12\xeb\x11\xde\xd0\xaa\x7c\xf8\xf0\x61\xb1\x63\xc7\x0e\x41\x44\x1e\x77\x91\xda\x4f\x7c\x14\xf9\xcd\xd8\xb2\xe7\xa7\xc0\x10\x55\xee\x37\xe5\x0f\x8f\x51\x96\xe1\x70\x7c\x8b\xf6\xfc\x16\x1a\x63\x00\x20\xa3\x99\xe9\x89\x70\xee\xca\x58\x24\x37\x32\x17\xd4\xaf\x64\x5d\x72\x9e\xc1\x09\x22\x4a\x30\x73\x16\x40\x9a\x88\xca\x8c\xc3\xcc\x06\x11\x49\x66\x96\xd6\xb5\x94\x66\x89\x38\xc1\xcc\x02\x80\x20\x22\x95\x99\x35\x00\x1e\x53\x21\xcf\xaa\xc7\xf0\x25\xbd\x66\x70\x2c\x9a\x0f\x12\x23\x1c\x28\x28\x1d\xdd\x09\xf7\xd0\xc0\xb2\x77\x7b\x4f\xc2\xd3\xef\x36\x84\x07\x5c\xe9\x35\x9d\x43\x91\xaa\x61\xfc\x0d\x30\x45\x21\xf5\x17\x86\x56\xfe\x22\xe1\x35\xae\x5b\xf4\xca\x44\x22\x51\xaf\xaa\x45\x9d\xfb\x7a\x4c\x71\xdb\x30\x4e\x06\xaa\x05\xc8\x3a\xf7\xf5\xe2\xd6\x7d\x76\x30\x8f\x2f\x98\x53\x06\x4e\x8e\x46\xbe\xd2\x96\xd2\x8e\x13\x08\x20\x47\x07\xc3\x6c\x55\xa2\x83\x49\x88\xcb\xf2\x86\x9c\xf1\x16\xcc\xc6\x00\x80\xae\x48\x7d\xaa\xb9\x30\x31\xd2\x9e\x79\xe7\x7a\x4b\xfe\x82\xae\xf0\x0c\x08\x71\x00\x71\x00\x49\x02\xa5\x01\xe4\x89\x68\x8d\xb4\xb1\xfd\x78\x6c\x67\xb2\x5a\xa7\x32\xa7\x13\x9a\xf5\x4e\x05\xa0\x5a\xd2\x40\x03\xe0\x63\x42\x20\xe5\x31\x43\xa3\xed\xd9\x1f\x8e\xb6\x65\xa3\x3e\x5d\xf4\x0c\xc4\xbd\xbb\xb7\xcf\xf9\xf7\xb6\xa5\xb4\x4e\x85\x49\x38\x3f\x0e\xaa\xcb\x3d\x40\x2d\x46\x82\xf1\x56\x5f\xf2\xfb\xd7\x5b\xf2\xa7\x40\x98\x03\x90\x2d\x16\x8b\xf2\xd2\xa5\x4b\x1b\x69\x93\x7a\xf1\xb7\x15\x63\xeb\x40\x77\xc4\x48\xf8\xd0\x43\x0f\x61\xe7\xce\x9d\x82\x88\x7c\xcd\x39\x75\xf0\x73\xe7\xa3\x7f\x18\xce\xaa\x07\xcb\x5d\x8f\x05\x74\x76\x4a\xb5\xb6\x92\xaa\x2f\xb5\x06\x03\x00\x05\xd5\xcc\x8f\xb6\x65\xdf\x3f\xd7\x91\x3e\xb3\xe2\x33\x2e\x73\xa9\x92\x17\x00\x24\x00\x24\x51\xea\xa2\xf2\xb6\x94\xb1\x68\x94\xb3\xb3\xb3\x30\x0c\x03\xf6\xf5\xfc\xf9\xf3\xb2\xb5\xb5\x55\x2c\x2c\x2c\xc8\xe6\xe6\x66\xb1\xba\xba\x2a\x9b\x9b\x9b\x85\xcb\xe5\xc2\xd2\xd2\x92\xdc\xb9\x73\xa7\xf0\xf9\x7c\x88\x44\x22\xf0\xfb\xfd\x08\x87\xc3\x76\xb9\xed\x7f\x0d\x56\x17\xc7\xcc\x41\x22\x8a\x02\x88\x0a\x89\xce\xb6\x94\xb6\x63\xcf\x74\xd3\xc3\xb1\x65\xcf\x90\x4b\x0a\x75\x6d\xb9\xea\x95\xb5\xf4\x7c\x25\x9a\x3d\xfb\xec\xb6\xe5\xdf\x31\x05\xde\x07\x30\x05\x20\xfd\xf2\xcb\x2f\xcb\xcb\x97\x2f\xdb\xf5\xfd\xff\x4f\x43\xe2\xe1\xc3\x87\xb1\x63\xc7\x0e\x01\xc0\x17\xcd\xba\x76\x3e\x75\x7e\xd3\x1f\x34\xe7\xd5\x07\x6f\x54\x69\x76\x1c\xb0\xb6\x32\xed\x38\x06\x23\xe7\x92\xd9\x0b\xed\x99\x77\xde\xef\x4a\xbd\x92\x71\xcb\xab\xcc\x3c\x83\x0a\xe3\xd8\xd2\xc6\x60\x66\x99\xcb\xe5\xe4\xe4\xe4\x24\x66\x67\x67\xb1\xb2\xb2\x82\xc5\xc5\xc5\xdb\x32\x48\xe8\xea\xea\x42\x4b\x4b\x0b\x3a\x3a\x3a\xd0\xda\xda\x6a\x7b\x0b\x38\x99\x29\xc0\xcc\x61\x00\xad\x04\xea\x0e\x67\xd5\x6d\xfb\x27\x83\xc7\x07\x17\xbd\xdb\x35\x29\xb4\x7a\x75\xe0\xfc\x38\x96\x7d\xc5\x99\x6f\x3e\xb0\xf0\x5b\x39\x4d\xbe\xc9\xcc\x13\x00\x92\xa3\xa3\xa3\xc6\xe9\xd3\xa7\x6f\x40\xfa\xdd\x0b\xb5\x6d\xb7\x5e\xd8\xa8\x24\x92\x7b\xf6\xec\x11\x07\x0e\x1c\x10\x00\x7c\xc1\x9c\x32\xf8\xf9\x73\x9b\xbe\xda\x92\x73\xed\x2d\x41\xaa\x47\x45\x25\x22\xd6\x8e\x96\xea\x19\xf7\x18\x0c\x53\xc0\x18\x6d\xcb\x9c\xfd\x61\x4f\xf2\x85\xa4\xc7\x1c\x05\x61\x0a\x25\xc6\x89\x03\xc8\xc2\xd2\x69\x56\x57\x57\xe5\xf8\xf8\x38\xc6\xc6\xc6\xb0\xbc\xbc\xdc\x48\x67\xb3\xcb\x53\x6f\xb2\xf8\x46\x98\xda\x0f\x4f\x76\x76\x76\x8a\x58\x2c\x86\x58\x2c\x06\xaf\xd7\x6b\x3b\xba\x79\x00\x04\x00\x84\x01\xb4\x83\xd1\xdb\x96\xd2\x1e\x38\x74\x2d\xf8\x99\xbe\xb8\x67\x90\x6a\x98\xd4\x2e\x77\x41\xe1\xec\x77\x76\x2f\xfe\xde\x5c\x50\xff\x01\x80\x4b\x00\xe2\xf1\x78\x5c\xff\xf6\xb7\xbf\x0d\xd3\x34\x37\x44\xcf\xdd\xc0\xd0\x0d\x80\xf5\x2a\x11\x35\xef\xaa\xe2\x63\xb1\x98\x38\x7e\xfc\xb8\x50\x14\xc5\x17\xc8\x2b\x03\x3f\x76\x3e\xfa\x07\xd1\x8c\xeb\xf0\x8d\x5c\x20\xd6\x28\xd0\xe0\x8a\xb1\x84\x19\x4c\xc0\x74\xb3\x3e\x71\x7a\x20\xf1\x8f\x73\x4d\xfa\xbb\x20\x5c\xb7\xa4\x4e\x9c\x88\xb2\xcc\xac\x1b\x86\x61\x8c\x8d\x8d\x61\x74\x74\x14\x0b\x0b\x0b\xeb\xe5\x76\x47\xcc\x14\xce\x30\x30\x30\x80\xcd\x9b\x37\xa3\xbf\xbf\xdf\x96\x4a\x36\x23\x45\x01\x74\x0a\x50\xff\xe6\x25\xef\x91\x23\xe3\xcd\x8f\x87\x72\x6a\x94\xca\x2e\x90\x04\x29\x58\xbe\xb8\x65\xe5\xeb\x17\xda\x33\x7f\xcd\xe0\x11\x22\x5a\x48\xa7\xd3\xf9\xa7\x9f\x7e\xfa\xbe\x9b\xca\x70\xb6\x6a\xc3\x51\xd4\x46\x43\x6b\x6b\xab\x78\xea\xa9\xa7\xa0\x28\x8a\x4f\x33\xa8\xf3\x73\xe7\xa3\xbf\xdb\xb5\xea\x7e\xbc\x6a\xf4\xe4\x08\xb5\x23\x91\x7a\x0f\x0c\xa0\xa0\xca\xfc\xdb\xbd\xc9\x97\x3e\xec\x4c\xff\xc0\x50\xf8\x0a\x80\xeb\x00\x96\x50\xea\xaa\xf4\x74\x3a\x6d\x9c\x3b\x77\x0e\xe7\xce\x9d\xab\x47\x7f\x23\xe9\xf2\x71\x31\xeb\x49\xe4\xf2\x35\x10\x08\x60\xfb\xf6\xed\xd8\xb9\x73\x27\x54\x55\xb5\x25\x52\x10\x40\x2b\x18\xbd\x1e\x43\x0c\x1f\x1e\x6f\xfe\xb1\xed\x73\xfe\xfd\x2a\x93\xca\x60\x9c\xef\xc8\xbc\xf6\xd2\xe0\xca\x1f\x72\x49\xef\x99\x91\x52\x66\x5f\x78\xe1\x05\xe9\xf0\x13\xba\x65\x7a\x6e\x37\xe6\xb6\x19\x12\x83\xc1\x20\x9e\x78\xe2\x09\x34\x35\x35\x79\x84\x44\xf4\xd3\x1f\x85\xff\xd3\xf0\x82\xef\xdf\x50\x8d\x0a\x0c\x54\x04\x0d\x88\xcb\xdd\x53\x05\xc3\x55\xdd\xd7\x7c\x93\x7e\xfd\xa5\x2d\x2b\xdf\x98\x0f\xe8\x3f\x24\xa2\x31\x66\x9e\x03\x90\x20\xa2\x7c\x26\x93\x31\xde\x7f\xff\x7d\x7c\xf4\xd1\x47\x30\x0c\xa3\x1e\x5d\x1b\xd1\xed\x3e\x8e\xfe\xb7\xe1\xe0\xf5\x7a\xf1\xc0\x03\x0f\x60\x78\x78\x18\x2e\x97\x4b\x23\x22\x0f\x33\x87\x89\xa8\x13\x8c\xc1\x58\xdc\x73\xf4\xf8\xe5\x96\xcf\x67\x34\x33\xfe\xad\xdd\x8b\xff\xb5\xa0\xc8\xb3\x44\x34\xc1\xcc\xc9\x0f\x3f\xfc\x50\xbe\xf5\xd6\x5b\xb7\x8b\x94\xdb\x1a\xea\xf5\x2b\x1b\x91\x44\x6b\x30\x27\x4f\x9e\x14\xdd\xdd\xdd\x2a\x18\xe1\x4f\x5c\x0b\xfe\xc2\xa1\x6b\xc1\xff\x04\x50\xc3\x06\xb0\x87\xee\xa0\xfa\x5d\x1b\x13\xcb\xf3\xed\x99\xb7\x4f\x0f\x24\xfe\x5e\x57\x78\x04\x84\x09\x58\x52\x47\x4a\x69\x8c\x8c\x8c\xc8\x33\x67\xce\xd4\xb3\x59\x35\xa2\xf1\xbe\xc1\x9c\x38\x71\x42\xf4\xf5\xf5\xd9\xca\x76\x00\x25\xdd\xa8\x3b\x98\x57\xfa\x09\xd0\x57\xbd\xe6\x87\x00\x26\x00\x24\xae\x5d\xbb\x66\xfc\xe0\x07\x3f\xb8\xa1\xde\x79\xaf\xca\x55\xdb\x85\xc1\x01\xa8\xd5\x83\xea\xe9\x46\x12\x00\x8e\x1c\x39\x22\x76\xec\xd8\xa1\x02\x08\xc4\x96\x3c\x9f\x79\x62\x34\xf2\x55\xc5\xa4\x40\x95\x3d\xa5\x76\xfa\x95\x6c\xdb\x4f\x0d\x86\x4a\x86\xb3\xd7\x36\x27\xfe\xf1\x7c\x47\xe6\x69\x09\xbe\x48\x44\x53\xcc\x9c\x00\x90\x5d\x58\x58\x90\x6f\xbd\xf5\x16\xe6\xe6\xe6\x6a\xca\x7a\xdb\xf4\x9a\xf5\x30\x8d\xf4\xc3\x9b\xc6\xc4\x62\x31\x71\xf8\xf0\x61\xf8\xfd\x7e\x95\x99\x7d\x44\x14\x44\x69\xd4\x66\xa0\x24\x61\x93\xe9\x74\x5a\xff\xfa\xd7\xbf\xfe\xb1\xf3\x8a\x44\x22\xc2\x1a\x48\x7c\xac\x74\xea\x61\x6e\x66\x14\x56\x37\x74\x75\x75\x89\x93\x27\x4f\x0a\x22\xf2\x85\xb2\xea\xce\x9f\xfc\xa0\xf5\x7f\xf8\x74\xa5\xdf\xe9\xa9\x5c\x31\x12\x3a\xa6\x7e\xca\x6b\xaf\xaa\x31\x19\x97\x4c\x3e\xbf\x35\xfe\x77\x13\xe1\xfc\xf3\x20\x5c\x02\x30\x03\x20\x69\x18\x86\xfe\xce\x3b\xef\xe0\xc3\x0f\x3f\xfc\x58\x7a\xda\xfd\x16\x8e\x1d\x3b\x26\xb6\x6e\xdd\x5a\x5e\x9a\x84\x52\x03\x19\x85\x42\xc1\xf8\xf3\x3f\xff\xf3\x5b\x2e\xeb\xe1\xc3\x87\x45\x2c\x16\x83\xdb\xed\x86\xa2\x28\x42\x4a\x89\x7c\x3e\x2f\x67\x67\x67\x31\x3a\x3a\x8a\xd9\xd9\xd9\xdb\x52\x8f\x1f\xdb\x90\xf8\x73\x3f\xf7\x73\xc2\xed\x76\x7b\x54\x93\x3a\x9f\x3a\x1f\xfd\x9d\xbe\x84\xe7\x49\xa0\xb1\x91\xb0\x91\x6d\x07\x60\xa4\x35\x33\xf9\xbd\x1d\x4b\x7f\x32\xdf\x54\x3c\x65\x31\xcf\x1c\x33\xa7\x53\xa9\x94\xf1\xea\xab\xaf\xda\x85\xbe\xab\xc3\xd4\x1b\x60\x9c\xe1\x96\x31\x5d\x5d\x5d\xd8\xb6\x6d\x1b\x06\x06\x06\xc0\xcc\x18\x19\x19\xc1\xeb\xaf\xbf\x7e\xd3\xe9\x28\x8a\x82\x87\x1e\x7a\x08\x5b\xb6\x6c\x81\xcb\xe5\xb2\xad\xe4\xaa\xb5\x3a\x57\xa2\x64\x7d\x37\x00\x18\xe3\xe3\xe3\xf2\xf9\xe7\x9f\xff\xd8\xe5\xaa\x55\xa2\x37\x1c\x88\x08\x8f\x3d\xf6\x18\xfa\xfb\xfb\x55\x02\x85\x0f\x5c\x6f\xfa\xf9\xc3\x13\xcd\xbf\x49\x96\xde\x53\x6b\xf8\x73\x9a\xca\xea\x59\xa2\x13\x9e\xe2\xd2\xf7\x76\x2c\xff\xc9\x92\x5f\x3f\x45\x44\x57\x80\x92\xd9\x7e\x6c\x6c\x4c\xbe\xfe\xfa\xeb\xc8\xe5\x72\xce\xc2\xd4\x2b\x60\xa3\xe7\x3b\x81\xb9\x23\xdd\xc1\xc7\xc5\x3c\xf1\xc4\x13\xa2\xab\xab\x4b\x45\xc9\x25\xb8\x7f\xd7\x9c\xff\x8b\x7d\x71\xcf\x31\x4f\x51\x84\x75\x95\x93\x53\xcd\x85\xb7\xcf\x77\xa4\xff\x7e\x36\xa8\x5f\x64\x70\x36\x97\xcb\x19\xdf\xfb\xde\xf7\xb0\xba\xba\xfa\xb1\xbb\xb0\xba\xba\x4d\x9d\x50\xe6\xc0\xcd\x9b\x37\xe3\x53\x9f\xfa\x94\x00\x10\xd8\x94\x76\xed\xfd\xc9\xf7\x5a\xbf\xe9\x92\x14\xaa\x32\x12\x96\x9d\x5e\xb8\x26\x99\xea\xb8\xb4\xdb\x4c\x7c\x77\xe7\xd2\xff\xb3\x14\x28\x9e\x42\xc9\x68\xb6\xc4\xcc\xd9\x8b\x17\x2f\xca\x53\xa7\x4e\xd5\x53\xec\xec\x02\x35\x0a\x3f\x72\x98\xcf\x7e\xf6\xb3\xa2\xa7\xa7\x47\x05\x23\xb0\x7b\x26\xf0\xb9\xc3\x13\xcd\xff\xc5\x6d\x50\x77\xad\x7b\x88\x21\x38\xfe\x41\x67\xfa\x2b\x67\x62\xab\x7f\x2a\x05\x12\x35\x7a\xd6\x4d\xd3\xa3\x38\x80\x04\xc7\x14\x65\x83\x7f\x00\x20\x55\x55\xf1\x99\xcf\x7c\x06\x6e\xb7\xdb\xad\x98\xe8\x38\x71\x31\xf2\x5b\xe1\xbc\x6b\xbb\xed\x98\x50\xf1\xa9\xab\xf5\xb8\xb3\xfd\xee\x2a\x98\xac\x4b\x26\xbf\xb7\x63\xf9\x8f\x16\x03\xc5\x97\x41\xb8\x0c\x60\x81\x99\x73\x67\xce\x9c\x91\xef\xbc\xf3\x4e\x2d\x2d\xbc\x01\x1a\xef\x26\xa6\x76\x7a\xf7\x9e\x60\x76\xee\xdc\x49\x3b\x77\xee\x14\x00\x9a\x86\x17\x7c\x27\x8f\x5f\x6e\xf9\x43\x4d\x8a\x08\xc1\x5e\x94\x5d\xba\x12\x08\x0a\x93\xb7\x23\xa9\x3d\x4a\x40\x62\x2a\x54\xb8\xa0\xb9\x35\x3d\x18\x0c\xf2\xc4\xc4\xc4\x2d\xd1\x63\x4b\x14\x9b\xcb\xe4\x46\xfe\x0f\x1e\x3c\x88\xa6\xa6\x26\x15\x40\x60\xc7\x5c\xe0\xc9\xae\x55\xf7\x23\xa5\x9f\x3b\x16\xd4\xad\x5d\xaa\x8b\x5a\x4c\x51\x91\xf9\xe7\xb7\xc6\xff\x6a\xbe\x49\x7f\x15\x84\x2b\x28\x31\x4f\xfe\x8d\x37\xde\x90\x17\x2e\x5c\xa8\x47\x57\x23\x1a\x7f\x64\x31\x44\x84\x3d\x7b\xf6\x00\x80\xe6\xd5\x45\xf7\xe1\xf1\xe6\xdf\xb0\x57\xb1\xd8\x93\x42\x65\x87\x29\x2b\x10\x48\xec\x99\x6e\xfa\xd5\x68\xc6\xb5\x1d\x80\x67\x60\x60\x40\x34\x35\x35\xdd\x12\x3d\x02\x25\x26\x72\xf6\x79\xc2\x71\x5d\xf3\x1f\x89\x44\xc4\xd6\xad\x5b\xc1\xcc\x1e\x7f\x41\xe9\xfd\xc4\xf5\xe0\xaf\x08\x90\x5a\xf2\x7d\xb4\x74\x1b\xc7\x30\xdd\x19\x9c\x18\x49\x2c\x4f\x0d\x24\xbe\x63\x8d\xb6\xae\xa0\xd4\x6d\xe5\xcf\x9c\x39\x23\xcf\x9f\x3f\x2f\x51\x4d\xd7\xbd\xbe\xaf\xad\xa7\xfb\x06\xd3\xd5\xd5\x65\xef\x4a\xe2\x8b\xc5\x3d\xc7\x9a\x0a\xca\x10\x97\xcd\xb0\xd6\x95\xac\xba\xe7\xd2\x1b\x06\xc3\x65\x52\x78\x68\xc1\xf7\x14\x33\x07\x84\x10\xa2\xaf\xaf\xef\x96\xe8\x71\x4a\x20\x27\x87\x01\xf5\x39\x50\x1e\x38\x70\xa0\x64\x49\x05\x05\xf7\x4f\x36\xfd\x9c\x4f\x17\xbd\x65\x36\x61\xae\x0c\xd3\xd9\xa1\x28\xb3\x63\x15\x84\x55\x88\x73\xed\x99\xd3\xe7\x3b\x32\xdf\x65\xf0\x25\x00\x0b\x52\xca\xac\x43\xf2\x38\xf3\xbf\x1f\xee\x1b\x7d\x85\x8d\xfe\xef\x1a\xa6\xa3\xa3\xc3\xde\x07\xc9\xd7\x9a\xd2\xf6\x10\x43\xa0\xdc\x06\x95\xb6\xb0\x57\xc3\x12\xac\x7b\x06\xba\x92\xee\xfd\x00\x02\x44\xa4\xc6\x62\xb1\x5b\xa2\xa7\x11\x67\xa1\x4e\xbc\x68\x6d\x6d\x15\xdd\xdd\xdd\x82\x99\x3d\x91\xac\x6b\x78\xfb\x9c\xff\x67\xc8\x22\x8e\x18\x95\xee\xcb\xa2\x9e\xca\x0a\x74\x05\x03\x10\xe6\x9a\xf4\xb1\xd7\x07\x12\xff\x83\x09\x97\x88\x68\x8e\x99\xb3\x63\x63\x63\xf2\xfc\xf9\xf3\xa8\x93\xbf\xf3\xb9\x5e\xdc\xdd\xc0\x34\xfa\xcd\x3d\xc7\x74\x76\x76\x02\x96\xbb\xad\x66\x8a\x90\xad\x7b\x56\x06\x30\x80\xcd\x49\xc4\x56\xbc\x85\xf1\x14\x45\x14\xa5\xb9\x39\x21\x84\xb8\x61\x5e\xf5\xe2\x9c\x3e\xd1\xb2\x06\xb4\x26\xfe\xc1\x07\x1f\x14\x44\xa4\x12\x28\xb8\x6f\xb2\xe9\xe7\x34\x93\xc2\x65\x75\xd3\xf2\xac\x23\xdb\xc5\xd4\xf6\xee\xab\xda\x66\x85\x51\x70\x71\xf6\xc5\xa1\x95\x3f\xd7\x15\x39\x02\xd0\x0c\x33\xa7\x27\x27\x27\x8d\x97\x5e\x7a\xe9\x46\xf9\xd7\xbe\xbf\x9b\x18\xb9\x0e\xf6\x5e\x63\x00\x94\xea\x3b\xe5\x36\x12\x4e\xb5\xbf\xac\x40\x3b\x57\xab\x38\x42\x46\x33\x93\x96\xb7\xa5\x93\x41\x6e\x8a\x9e\x0d\x7f\x8d\x91\x48\x44\xf4\xf7\xf7\x0b\x22\xf2\x44\xb2\xea\xd0\xe0\xa2\xf7\x49\x62\x07\x61\x35\x44\xb2\xa3\xff\xb5\xe3\x99\x80\xb7\x7a\x57\xff\x71\xc9\x5f\x7c\x07\xa5\xe9\x89\x64\x2a\x95\x32\x9e\x7d\xf6\x59\xe9\xcc\xab\x86\x8e\x7a\xd7\xfb\x05\x53\x4f\x3f\xb8\xab\x98\x44\x22\x01\x66\x96\xcc\x6c\x4c\xb6\x14\x2e\x98\xc4\x06\x60\xd5\x7f\x59\x8d\xb0\x35\x22\x94\xaf\x0c\xc6\x58\x24\xf7\x3e\x33\x1b\xd6\x8e\x69\x70\xa4\xbb\x61\x7a\xea\x11\x58\xef\x19\x07\x0f\x1e\x04\x4a\x7b\xf3\x04\xf7\x4c\x35\x7d\xa9\x64\xf3\xa9\x30\x8a\x4d\x54\x25\x54\xd8\xdd\xc6\x4c\x37\x17\x2e\x9d\xeb\xcc\x7c\x0f\x84\x31\x00\x71\xd3\x34\xf5\xd7\x5f\x7f\xdd\x99\x9f\xb3\x10\x58\xe7\xf9\x5e\x63\x80\xb5\x5f\xea\x3d\xc1\xac\xac\xac\x80\x88\x24\x11\x65\x67\x82\x85\x91\x6b\x2d\xf9\xf7\xcb\xed\x40\x76\xcd\x57\x66\x01\xec\x16\x4a\x78\x8d\x99\x8b\x6d\xd9\x53\x44\x94\xb6\x76\x4e\xbb\x25\x7a\x04\xaa\xc5\x52\x43\xc5\xad\xab\xab\x0b\x00\x3c\x4d\x05\xa5\x7f\x70\xd1\x77\x12\x28\xeb\xc9\x40\x99\x85\x9c\x8c\xc4\x55\xca\xb3\x49\x6c\x9c\x1a\x58\xfd\x1b\xcb\x9f\x67\x09\x40\xfe\xdc\xb9\x73\x72\x72\x72\x72\x3d\x45\xad\x96\x96\xda\x42\xdc\x2b\x0c\x1a\xdc\xdf\x75\xcc\x87\x1f\x7e\x28\xa5\x94\x06\x80\xac\x14\x98\x7b\x79\xcb\xca\x5f\xae\x78\x0d\xc7\x4c\x73\x85\x6d\xec\x76\x29\xa8\x32\xfb\xc2\xd0\xca\xd7\xf2\x2e\x39\x06\x20\xcd\xcc\xc6\x8b\x2f\xbe\x78\x4b\xf4\xd4\x93\x3a\xce\x7b\x01\x40\x1c\x3e\x7c\x58\x08\x21\x54\x00\x81\x9d\xb3\xfe\xa7\xdc\xa6\x88\xda\x26\xc1\xf5\x8c\x84\xce\xa5\xc2\xa3\xed\x99\xd3\xf3\x41\xfd\x87\x28\x4d\x8e\xa6\x97\x97\x97\x8d\xf7\xdf\x7f\x1f\xa8\x2f\x79\x6a\xc5\xe8\x7a\x8a\xdc\xbd\xc4\xd4\xd2\x7e\x4f\x30\x13\x13\x13\x40\x69\xf1\xc0\x5c\xca\x63\x9e\xfd\xf6\xee\xc5\xaf\x5c\xda\x94\x3b\x6b\x08\x36\xca\x83\x18\x30\x24\x41\x4e\x35\x17\xae\x7c\x7b\xd7\xc2\xef\x4d\x87\x0a\x2f\xa3\xd2\x16\xf2\x56\xe9\x71\x2a\xd1\x4e\x69\x54\x15\x62\xb1\x98\x00\xa0\x69\x06\x45\x87\x17\xfc\x9f\xa3\x7a\x20\x00\x6b\x0c\x89\x96\x5e\x94\x73\xc9\xe4\x0f\x7b\x92\xdf\x45\xc9\x93\x30\x29\xa5\x34\x4e\x9d\x3a\x85\x62\xb1\x08\x34\xfe\xca\x9c\x05\xb8\x5f\x31\x8d\xea\xec\xae\x62\x5e\x78\xe1\x05\xf9\xa5\x2f\x7d\xc9\xf0\x7a\xbd\x49\x00\x13\x29\x8f\x89\x67\xb7\x2d\x2f\x84\xb3\xae\x1d\x1d\xab\xda\x60\x40\x57\x42\x79\x55\x66\xe7\x9b\xf4\xb1\xf9\x26\xfd\x9c\x14\x18\x43\xc9\xdf\x28\x2e\xa5\x74\x3a\xe9\xdf\x34\x3d\xf6\x51\x07\xf5\x40\x02\x28\xf9\xf6\xfa\x7c\x3e\x01\xc0\xd7\xbb\xe2\x39\xd8\x94\x57\x06\x1a\xaf\x9a\xb0\x5d\x33\x50\x36\x24\x12\x11\x46\xda\x33\xa7\x93\x1e\x73\x84\x99\x97\x88\x28\x7b\xe9\xd2\x25\xe9\xf0\x59\x6e\xd4\xc7\xd6\x93\x4c\xb2\xc1\xfd\x9d\xc6\xd4\x86\xf5\xf4\xb5\x7b\x82\xf9\xfe\xf7\xbf\x8f\x27\x9e\x78\x22\xef\x76\xbb\x97\x00\xe8\x0c\xc4\x97\x7c\xfa\xc4\x92\x4f\x0f\x12\x91\x66\x2d\x6b\x4a\x32\x73\x1c\x8c\x25\x94\x56\xaf\xe8\xa7\x4f\x9f\x6e\xd4\x16\x1b\xa2\xa7\xde\xd2\xe6\xaa\xfe\x6e\xfb\xf6\xed\x02\x25\xe5\x39\xb0\x6d\xde\xff\x94\x00\xa9\x65\xf7\x0c\x2e\xa9\x67\xec\x70\xf6\xa9\xf8\xf7\x94\xba\xb3\xbc\x6a\xa6\xdf\xef\x4c\x3f\xcd\xe0\x19\x00\xc9\x62\xb1\x68\xbc\xf6\xda\x6b\x37\x94\x7a\x68\xfc\x35\xd4\xbb\xbf\x1b\x18\x34\xc0\xd4\x0b\x77\x1d\xb3\xbc\xbc\x8c\xa7\x9f\x7e\x5a\x9c\x38\x71\x42\xf7\xfb\xfd\x09\x6b\xa1\xc1\x02\x11\x69\x28\x2d\x82\x94\xcc\xac\x13\x51\x9e\x99\xf3\xf9\x7c\xde\x78\xf3\xcd\x37\x71\xf9\xf2\xe5\x8d\xb4\x45\x43\x7a\x9c\x87\xad\x38\xbf\xbc\x32\xb8\xad\xad\x0d\x00\x3c\x7e\x5d\x74\x76\x27\xdc\x87\x9d\x63\xf3\x92\x9d\xb0\x62\xfb\xb1\xb5\xfd\xb2\x18\x22\xc2\xa5\x4d\xb9\x37\xd3\x6e\xf3\x12\x4a\x8a\xb3\x7e\xe1\xc2\x85\x5a\x42\x6a\xbf\xf8\x46\x05\xaa\xa5\xef\x6e\x62\x1a\xfd\xe6\xbe\xc2\x2c\x2f\x2f\xe3\xeb\x5f\xff\xba\x7c\xf8\xe1\x87\x8d\xbe\xbe\x3e\xc3\xe7\xf3\xe5\x1d\x58\x00\x90\x86\x61\xc8\x4b\x97\x2e\xe1\xf4\xe9\xd3\x4e\xbd\xe7\x96\xe9\x59\xd7\x90\xb8\x73\xe7\x4e\x5b\x79\xf6\xf4\xae\x78\x0e\x56\x0c\x87\x65\xb7\xc2\x2a\x23\x61\xad\x21\xb1\x28\xa4\x7e\xae\x33\xfd\x3c\x08\x73\x60\x64\x75\x5d\x37\xde\x7e\xfb\xed\x5a\x06\x71\x16\xa0\xde\xd7\xdf\x88\xbe\xbb\x89\x59\x8f\xae\xfb\x0e\x73\xfa\xf4\x69\x69\xe9\x35\x32\x16\x8b\x89\xae\xae\x2e\x4c\x4f\x4f\x43\x4a\x89\x6b\xd7\xae\xdd\x48\x0a\xdf\x54\x5e\xeb\x1e\xf7\xd4\xd9\xd9\x59\x5a\x17\xce\x08\x0c\x2e\xf9\x3e\x55\xb6\x2a\x97\xbb\x2c\x38\x26\xf6\xd7\x1a\x12\xe7\x82\xfa\xa5\x25\x7f\x71\x04\xd6\x2a\x8a\x91\x91\x91\xda\x3c\xd6\xe3\xfe\x5a\x4c\x3d\x49\x79\xaf\x31\xce\x70\x57\x31\x03\x03\x03\xc2\xea\x1d\x00\x00\x85\x42\x01\xe3\xe3\xe3\x58\x59\x59\xa9\x4a\x67\x7c\x7c\x5c\x8e\x8f\x8f\x3b\xd3\x11\x00\x10\x08\x04\xb0\x6d\xdb\x36\x74\x74\x74\xc0\xe3\xf1\x94\xd3\x49\x24\x12\x18\x1f\x1f\xc7\xf8\xf8\xb8\xbd\xd2\x65\x5d\x7a\xec\xcd\x15\xd6\x28\xd2\x8a\xa2\xa0\xa7\xa7\x07\x00\x34\x8f\x21\x5a\xdb\x93\xda\x5e\x7b\x56\x17\xa8\x28\xd0\x8d\xbc\x0d\x01\xe0\x42\x5b\xe6\x35\xa6\x92\x5b\x2a\x11\xd9\xeb\xb9\xeb\x29\xed\xb5\xe1\x7e\xc7\x00\x6b\x1b\xf6\x8e\x63\x3c\x1e\x0f\x8e\x1e\x3d\x0a\x6b\x46\xa0\x76\x00\x24\xf7\xed\xdb\x27\x13\x89\x84\x7c\xf3\xcd\x37\x31\x39\x39\x59\x37\x1d\x9f\xcf\x27\xf6\xee\xdd\x8b\x6d\xdb\xb6\x09\x00\x4e\x5f\x6c\x00\x90\xa1\x50\xc8\xe8\xeb\xeb\x33\x0e\x1d\x3a\x24\x2d\x1d\x69\x5d\x9a\x55\x54\x73\x96\x5d\x00\x69\x9a\x26\x14\x45\x51\x01\x78\x5a\xd3\xae\x61\x6f\x51\x44\x9d\x06\xf1\x92\xae\xe3\x98\xac\xab\xba\x63\xe4\x55\x99\xbc\x16\xce\xbf\x85\xd2\xca\xd1\xfc\xcc\xcc\x8c\x4c\x24\x12\xeb\x89\x47\x3b\x6c\x44\x91\xad\x8d\xbf\x23\x18\x22\xb2\x5d\x52\xd6\x13\xfb\xf5\x74\x84\xdb\x8e\x19\x18\x18\xc0\x43\x0f\x3d\x04\xbf\xdf\xaf\x82\xe1\xf1\xe9\x22\xd4\x9d\x70\xef\x0c\xe6\xd5\xf6\xbc\x2a\xd3\xf3\x4d\xfa\xc8\x52\xa0\x38\xd3\xd2\xd2\x92\x3f\x71\xe2\x84\x7e\xe9\xd2\x25\xe9\x18\xac\x94\xd3\x39\x79\xf2\x24\xc2\xe1\xb0\x0a\x86\xa7\x39\xa7\x76\x6e\x5b\xf0\x3d\xde\x9d\x70\x7f\xc2\x25\x45\x20\xa5\x19\x53\xe3\x91\xfc\xcb\x97\x36\x65\x4f\x93\xc7\x9b\xf8\xe4\x27\x3f\xa9\x77\x74\x74\xd4\x4d\xc7\xa6\xd9\xc9\xc5\x55\x5f\xc1\x91\x23\x47\x00\x6b\x96\xb7\x77\xc5\xf3\x09\x02\xa9\xc4\x28\x6d\xbf\x06\x67\xa8\x7e\xb2\x25\xd2\x54\xa8\x30\x92\x73\xc9\x29\x94\x56\x8f\x1a\xe7\xce\x9d\xab\xcd\xc3\x19\x6a\x15\xb6\x1b\xe1\x6e\x1b\xa6\xa5\xa5\x45\xf4\xf6\xf6\xa2\xb3\xb3\x13\x5e\xaf\x17\xd1\x68\xb4\x0c\x5a\x5d\x5d\x85\x75\x16\x98\x98\x9d\x9d\xc5\xf4\xf4\x34\x0a\x85\x42\x83\x24\x1b\xe6\xf5\xb1\x31\x5b\xb6\x6c\xc1\x23\x8f\x3c\x22\x88\x48\xf3\x14\x45\xeb\x27\xae\x05\x7f\x76\xc7\x9c\xff\xdf\xba\x4c\xea\x84\x75\xd2\x10\x13\xb2\x33\xc1\xc2\xf7\x4f\x0d\xac\x7e\x65\x3e\xa8\x8f\x0c\x0f\x0f\x67\x85\x10\x78\xf5\xd5\x57\xc1\xcc\xf0\x7a\xbd\x78\xe2\x89\x27\x10\x0e\x87\x35\x21\x11\xdc\x3f\x19\xfc\xa9\xfd\x93\x4d\xbf\xe6\x32\x45\xa7\xbd\x82\xa6\x0d\x2e\x6c\x5e\xf6\xfe\xc2\xde\xa9\xa6\xd3\xcf\x6f\x8d\xff\xfa\x5c\x50\x3f\x3f\x3c\x3c\x9c\xcd\x66\xb3\xb0\xbc\x43\xd7\x04\xe7\x1e\x89\x84\x52\xc5\x32\x00\x3e\x70\xe0\x00\xf9\x7c\x3e\x17\x80\xd6\x43\x13\xcd\xbf\x10\x2c\x28\xdd\x6b\x99\xa7\x36\x94\x07\xf1\x78\xa7\x27\xf5\x9d\xa5\xa6\xe2\x19\x00\x8b\xf9\x7c\xbe\x60\x71\x31\xd7\xfc\xdb\x79\x56\x12\x68\x8c\xe1\xdb\x89\x19\x1a\x1a\xa2\x47\x1f\x7d\x14\x7b\xf7\xee\x15\x3d\x3d\x3d\x4a\x73\x73\xb3\xea\xf5\x7a\xdd\x04\xb8\x51\x5a\xcd\xa0\x79\x3c\x1e\xb5\xa9\xa9\x49\x69\x6d\x6d\x15\x03\x03\x03\x3c\x3c\x3c\xcc\x3e\x9f\x0f\x53\x53\x53\xb2\x4e\x9a\x8d\xf2\xfa\x58\x98\xe6\xe6\x66\x3c\xf6\xd8\x63\x70\xb9\x5c\x6e\xaf\x2e\xba\x7f\xec\x7c\xf4\xf7\x07\x97\xbc\xff\x56\x61\x11\x24\x10\xc1\xb2\xb5\x11\xc8\xd5\x54\x50\xb7\x6f\x59\xf2\x3d\xbe\x10\xd0\xcf\xae\x7a\xcc\xc5\x48\x34\x52\x34\x0c\x83\xe7\xe7\xe7\x71\xec\xd8\x31\x58\x0e\xf7\xcd\x87\xae\x35\xff\xfc\x27\xae\x05\x7f\x4b\x65\xd1\x0c\x58\xd6\xbb\x4a\x3a\xe4\x2d\x2a\x7d\x9b\x97\xbd\x8f\x8e\x87\x73\xaf\xe6\x34\xb9\xda\xd6\xd6\x66\x5c\xbf\x7e\x9d\xb3\xd9\x2c\x6a\x69\x6e\x68\x48\x6c\x6e\x6e\x06\x33\x6b\x6e\x53\x84\x22\x19\xd7\x50\x85\x35\x2a\xa1\x91\x21\xd1\x10\x9c\x9f\x6e\x2e\x7c\xc0\xcc\x49\x22\xd2\xa7\xa6\xa6\xec\x74\xeb\x85\x9b\xd1\x0b\xea\x29\xb6\x37\x85\xe9\xe8\xe8\xc0\xb1\x63\xc7\x10\x0c\x06\x05\x00\x8d\x00\x8f\x3b\x65\xb6\x07\x56\xcc\x07\x7d\xab\x72\x87\x5a\x90\xdd\xc2\x84\x8f\x05\x74\x53\xa5\x78\xbe\x49\x7c\x94\x09\x29\xef\x67\x42\xca\x15\xb7\xdb\x9d\xde\xb5\x6b\x97\xbe\x7d\xfb\x76\xe3\xec\xd9\xb3\xb8\x70\xe1\x02\x74\x5d\xdf\x48\xb9\x6e\x19\xb3\x6f\xdf\x3e\x78\x3c\x1e\x8d\x18\xe1\x4f\x5e\x0d\xfd\x5a\x7b\x4a\x7b\xdc\x1e\xfa\xb2\x35\x0a\xb6\x9d\xf6\x40\x80\xdb\xa0\xee\x4f\x5f\x0a\xff\xee\xdf\x3e\xb8\xf0\xd3\x29\xb7\x71\x65\xdf\xbe\x7d\x59\x21\x04\x06\x06\x06\x04\x00\x5f\x67\x52\xdb\xbf\x6f\xaa\xe9\xd7\x08\x50\x2b\x33\x64\x6b\xd3\xf1\x16\xc5\xc0\x23\x57\x5a\xfe\x8f\xef\xec\x5a\xfc\x65\x26\xd2\x8f\x1e\x3d\xaa\x7f\xfb\xdb\xdf\x5e\x43\x73\x43\x43\xa2\xcb\xe5\x12\xcc\xac\x45\x32\xae\x7e\xcd\xa4\x50\xd9\x48\x68\xbb\xba\xad\x63\x48\x8c\xfb\x8c\xa9\x94\xdb\xbc\x8e\xd2\x76\x2b\x72\x7c\x7c\x1c\x75\xf2\xb1\x89\xb9\x91\x6e\xb2\x9e\x4e\xb4\x61\x8c\x10\x42\x7c\xe2\x13\x9f\x80\xb5\x5b\x9a\x46\x8c\x40\xf3\x82\x71\x70\xd3\x44\xf1\x7f\xf2\xad\x9a\x8f\x90\x44\x08\x80\x70\xce\x5b\x33\x00\xcc\x11\x00\xe4\x75\x2f\x9d\x8f\x77\xb9\xfe\x7a\xb9\xd7\xf5\x1d\x68\x62\x61\xff\xfe\xfd\x7a\x2c\x16\x33\xac\x33\x2d\x6e\xa6\x5c\x1b\xc6\x04\x83\x41\x11\x8b\xc5\x04\x33\x7b\xda\x53\xee\xdd\x83\x8b\xbe\x7f\x61\x59\x4b\x2a\x3b\xfc\x59\x5b\x05\x33\x55\x24\x49\xa0\xa0\x0c\xef\x9a\x0d\xfc\xf4\x99\xfe\xc4\xef\xa8\xaa\xaa\x1f\x38\x70\xc0\x40\x69\x7d\x58\x70\xf7\x4c\xe0\x5f\x29\x12\xc1\x8d\xa4\xd3\xb5\xea\x3e\xde\x9a\xd6\x76\xce\x36\x15\x12\xe1\x70\xd8\x08\x06\x83\x32\x99\x4c\x56\xd1\x5c\x1e\xd6\x39\xef\x77\xed\xda\x65\x1f\x15\xa9\x45\x33\xae\x41\x62\x12\x64\x33\x0f\x5b\xb9\x94\xa7\xba\xd6\x7a\x24\xce\x35\x15\x2e\xb1\x40\xd2\xb2\x7a\xca\xf1\xf1\x71\xe7\x10\xd2\x99\x67\x3d\x1a\x50\xe7\xbe\x16\x77\xd3\x98\x47\x1e\x79\x04\xbb\x76\xed\x12\x44\xe4\xf3\x64\xe4\xd0\xc0\xbb\xb9\xdf\xed\x7f\x2f\xff\xcd\xc0\x8a\xf1\xe3\x42\x72\x98\x00\x61\x7b\x4c\xda\xa1\xb2\x77\x33\x3c\xee\x1c\xef\x6f\xbf\xa2\x7f\x65\xe8\x4c\xf6\xbb\x2d\x33\xc6\x49\x02\x82\x91\x48\x44\xfb\xf2\x97\xbf\xbc\xa6\xfe\xd6\xa1\xe7\xa6\x30\x7d\x7d\x7d\x50\x14\x45\x00\xf0\xf5\xc7\x3d\x8f\x2a\xd2\x5a\x2e\x7e\x23\x6f\x43\x10\x06\x97\xbc\x9f\x21\x50\x10\x15\x53\x8d\x2a\x40\xc1\xce\x55\xf7\x7e\xe2\x8d\x79\x2d\x0a\x26\x5f\xe7\xaa\xfb\x00\x00\x8f\xa2\x28\xb6\xdf\x74\x15\x8d\xce\xaf\x40\xda\xf7\x9b\x36\x6d\xb2\xf7\x05\xf4\x44\x33\xae\x2d\x76\xe2\x95\xfa\x65\x54\x2c\x86\x76\x9a\x96\x71\x91\x18\x73\x41\xfd\x22\x80\x24\x33\x1b\xd6\xae\xea\xce\xf4\xed\xff\xda\xbc\x9d\xd7\x7a\x71\x12\x0d\xa4\xe5\x8d\x30\xc7\x8f\x1f\x17\x83\x83\x83\x2a\x98\x83\xcd\x8b\xe6\xb1\xc1\xb7\x72\xdf\x6c\x5a\x32\x7f\x8a\x18\x9a\xd3\x04\x51\x2e\x9b\xa3\x48\x76\xb4\x2d\x6d\xb5\x3c\xef\xec\x3d\x97\xff\xf3\xae\x91\xc2\xaf\x0a\x89\xa8\xa6\x69\x9e\x2f\x7f\xf9\xcb\xa2\xbd\xbd\x7d\x23\xf4\xc8\x9b\xc1\x74\x74\x74\x00\xa5\xa1\xb6\xaf\x39\xaf\x0e\x96\xdb\xba\xec\x6d\x88\x6a\x6f\xc3\xb2\x4d\x0e\xf0\xeb\x4a\xb7\x5a\xf2\xd9\xb2\x87\xe8\xaa\xcb\xa4\xa0\xcb\xa4\x10\x36\x98\x0e\x01\xf0\x14\x45\x3b\x11\x79\x00\x08\x4d\x2b\x6f\xaa\x56\xa6\xb1\xee\x17\x61\x1d\x85\xad\x82\xe1\x69\xc9\xba\xfa\x6d\x2e\x2d\x4f\x59\x90\x95\x83\xd3\x28\x64\x61\x24\xc1\x58\xf2\x17\xaf\x32\x73\x9e\x88\x0c\xc7\x26\x08\xb5\x92\xa6\x96\x89\xea\x61\x1a\x5d\x37\x8c\x39\x72\xe4\x88\x18\x1c\x1c\x14\xcc\x1c\x68\x5a\x32\x1f\xee\xfb\x20\xf7\xff\xba\x0a\x3c\x50\xb6\x7d\x3a\x96\xbc\x94\x74\x00\xbb\x3b\xa6\xaa\x06\xb1\x15\x40\x06\x40\xcc\x9e\xe8\xf5\xe2\x7f\xec\x1a\x2d\xfc\x2a\x49\x0e\x6b\x9a\xa6\x7d\xf2\x93\x9f\x84\xdb\xed\x6e\x44\xc7\x8d\x68\xae\x8b\xf1\x7a\xbd\x60\x66\xc1\xcc\x2a\x97\x75\x96\x52\xe7\xba\x9e\xb7\x21\x00\x18\x42\xea\x92\x58\xb5\x7e\x2f\x98\x19\x45\xa5\xe4\x0b\xb4\xd1\x74\x18\x40\xd2\x63\xc4\xed\xdf\x3b\x56\xd9\x94\xe9\xad\x6b\x48\x0c\x04\x02\x60\x66\xe1\x92\xc2\xd7\x54\x50\x5a\xed\xa4\x89\xea\x6d\x82\x59\x6d\x48\x2c\xa8\x32\x99\x76\x9b\x73\xd6\x36\xba\xd2\xb2\x8c\xde\xa8\x6b\xaa\x0d\xb7\x05\xd3\xdd\xdd\x2d\xec\x7d\x1a\xbd\x69\xb9\xbd\xef\xc3\xfc\x7f\x57\x0c\xb4\x56\x0e\xf5\x72\x92\x5e\xcb\x30\x0e\xc6\x2a\xef\x22\x52\x61\x2e\x22\x16\x91\xc9\xe2\x2f\xe9\x5e\x9a\x9f\x1f\xd0\xfe\x34\x18\x0c\x26\x8e\x1c\x39\x62\xbc\xf4\xd2\x4b\x4e\x12\xd6\x28\xf1\x2d\x2d\x2d\xe8\xe9\xe9\x11\x96\x83\x9e\x00\x50\xde\xec\xf3\xca\x95\x2b\xc8\xe7\xf3\x55\xe5\xb0\x24\x83\x5c\x08\xe8\x13\xdb\xe6\x7d\x15\xf9\x48\x95\xed\xd4\x2b\x5a\x9b\x45\x1e\x18\x71\x9f\x31\x23\x05\x0c\xab\x13\x96\x00\x24\x03\xf9\xeb\x2d\x85\xf3\xbb\x66\x5d\xfd\xd5\x5e\x8b\xf5\xd3\x31\x85\xcc\xcf\x05\xf5\x71\x22\xaa\xdd\x3f\xbb\xb1\x21\xb1\xa9\xa9\x49\xa8\xaa\x2a\x88\x48\xa8\x92\x02\x6e\x43\x84\xab\x8c\x87\x37\x30\x24\x66\x34\x33\x5e\x50\x65\x02\xa5\xad\x74\x9d\xcb\x74\xea\x85\x3b\x66\x48\x54\x55\x15\x07\x0e\x1c\x00\x00\x8d\x24\x47\xbb\x46\x0b\xbf\xa6\xe8\xdc\x5b\x91\x38\x35\x9f\x02\xd9\x3d\x98\x33\xde\x39\xb6\x04\x4a\xdb\x0e\xdb\xa2\x88\x40\x80\xda\x76\x55\xff\xb5\xd4\x26\xf5\xed\x5c\x50\x39\x1b\x8b\xc5\xd2\x9d\x9d\x9d\x98\x99\x99\x59\x53\xd9\xc1\x60\x10\x0f\x3f\xfc\x30\xda\xdb\xdb\x85\xaa\xaa\x02\x35\x5b\x2c\xc7\x62\x31\xb9\x7f\xff\x7e\x63\x74\x74\x14\x6f\xbd\xf5\x96\x04\x80\xd9\xd9\x59\xb4\xb5\xb5\x49\x00\xfa\x78\x24\xf7\xde\xa1\x6b\xcd\x69\xb7\x51\x3a\xda\xd3\xa6\xac\x3c\xa0\x41\xf5\xc6\x5c\xe3\xe1\xdc\xfb\x28\x39\x99\xd9\x3b\x6f\x19\x00\xd2\xe7\x3a\xd2\x2f\x0e\x2f\xf8\x1e\x73\x99\xe4\xb9\x51\x3a\x93\xa1\xc2\xf9\xb8\xaf\x38\x66\xa5\x23\xcf\x9e\x3d\xbb\xa6\x5c\x6b\x94\x68\xaf\xd7\x0b\x45\x51\x00\x40\xf5\xe9\x22\xa4\x99\xc2\x57\xf6\x37\x74\x28\x69\x8d\x3c\x12\x53\x6e\x73\x41\x96\x76\x80\x71\x33\x5a\xe4\x00\x00\x20\x00\x49\x44\x41\x54\x37\x8a\xc5\x62\xbd\xee\xa9\xde\xbf\x13\xb3\x1e\x16\x35\xd8\x86\x98\x58\x2c\x86\x4d\x9b\x36\x09\x00\xbe\xe6\x39\xe3\x91\xc0\xb2\xf9\x78\x95\x19\xa2\x2c\x51\xac\x2a\x77\x74\xcf\xb5\x18\xe7\x66\x9f\xe5\x40\xa5\x5f\x2a\x26\x42\xed\x97\x0a\xbf\x02\xc9\x21\x45\x51\x54\xcb\x77\xbc\x8a\xa6\xfe\xfe\x7e\x7c\xfe\xf3\x9f\x47\x77\x77\xb7\xa6\x2a\x6a\x60\x53\xca\x35\xfc\x89\x6b\xc1\x9f\x3d\x71\x31\xfc\x9b\x8f\x7d\xd4\xf2\xeb\x0f\x4e\x05\x7e\xa2\x39\xa7\xf6\x6b\x9a\x16\x78\xe0\x81\x07\xd4\x9f\xf8\x89\x9f\x10\x6d\x6d\x6d\xc2\x92\xde\x06\x80\xf4\xaa\xc7\xbc\xf2\x5e\x57\xea\x59\x3b\xf3\x7a\xcb\x96\xed\x37\x71\x9f\x31\x35\xda\x9e\x7d\x19\xa5\x6d\x8e\x6d\xe9\x61\x00\x48\x2e\x06\x8a\xe7\xdf\xec\x4b\x7e\x87\x01\xb9\x5e\x3a\x69\xcd\x8c\xbf\xba\x39\xf1\x97\x52\x60\x01\x40\xbe\x58\x2c\x4a\x97\xcb\xb5\xa6\xae\xd7\x78\x24\x5a\xce\x45\x02\x80\xea\x36\x44\x50\x30\x34\xbb\xf6\x36\x62\x48\x4c\xbb\xcd\x25\x50\x69\xa7\x54\xcb\xe3\xd0\x0e\xb7\x2a\x6d\x6e\x09\x63\x75\x5d\x1a\x24\x87\xa2\xd7\x8a\x5f\x22\xeb\x8b\xaf\x98\x21\xe0\x10\x3e\xce\x6e\x78\x2d\xa6\xfc\x86\xaa\xaf\x36\xae\x69\xd9\x3c\xee\x4b\xca\x9d\xd9\x90\x92\x88\x44\x22\x46\x73\x73\xb3\xb4\x76\xbc\x40\x5f\x5f\x9f\x78\xec\xb1\xc7\x84\x10\x42\x73\x17\x45\xeb\x27\xaf\x86\x7e\x79\xcb\xa2\xf7\x67\x55\x49\xd1\xca\x2e\x25\x2c\x0f\x5d\xe3\xa9\xf7\xba\x52\x5f\x79\xa7\x37\xf9\x77\xe1\x70\x38\xf1\xd9\xcf\x7e\x56\x7f\xe5\x95\x57\xa0\xeb\xba\xd4\x34\x2d\x0b\xc2\xdc\x3b\xbd\xc9\xbf\x6f\x2a\x28\xed\xdb\xe7\xfc\x87\x09\xa5\x91\xb1\xd3\xf3\x93\xc1\x48\xba\xcd\xa5\x1f\x0c\x2f\xff\x51\x5e\x95\x63\xb0\x06\x32\x57\xae\x5c\x41\x2c\x16\x33\x54\x55\x4d\x83\x70\xfd\xbd\xee\xd4\xdf\x33\xb1\x7a\xf0\x5a\xf0\xa4\xc7\x28\x09\x08\x3b\x1d\x06\x63\xbe\x49\x9f\x78\x71\x68\xe5\x2f\x12\x3e\xe3\x7d\x58\xfe\xeb\x97\x2e\x5d\xaa\xf5\x20\x15\x00\xa4\xf3\xb8\x27\x00\xe0\x9d\x3b\x77\x8a\x9e\x9e\x1e\x05\x80\x3f\x92\x75\x3d\xb0\x6d\xde\x77\x12\xd6\x31\x32\x55\x5f\x70\x55\x95\x57\x44\xe1\x44\x24\xf7\xc6\x64\x73\xfe\x34\x11\xc5\x33\x99\x8c\x71\xe1\xc2\x05\xe7\xf8\xa0\xf6\x1f\x0d\xe2\xb9\x86\xae\x7a\xf1\x0d\x31\xc1\x60\x50\x1c\x3c\x78\x50\x10\x91\xd7\x93\x92\x0f\xb6\x5f\xd5\xff\x03\x31\x5c\x25\x05\x98\xac\x8a\xb2\xe4\x27\x3b\x86\x1c\xb0\x95\xe4\x6a\x8c\x33\x8b\x6a\xb1\x6f\xa7\x01\xcd\x74\x21\x9e\x8a\x28\x3f\xb4\x1c\xb9\xe4\xd4\xd4\x14\xb9\x5c\x2e\x7a\xe2\x89\x27\xe0\x72\xb9\xdc\x1e\x43\x74\x3e\x75\x21\xfa\x3b\x03\xcb\xde\x2f\x0b\x16\xbe\x32\xc9\xa5\xe1\x1d\xa9\x92\x9a\xbb\x57\xdd\x9f\xf6\xeb\x8a\x36\x1e\xce\xbf\x27\x14\xa1\x87\xc3\x61\xf3\xea\xd5\xab\x68\x6f\x6f\x97\xcc\x6c\x4a\x82\x71\x2d\x9c\x9f\x4c\xf8\x8c\x5c\x73\x5e\x8d\xba\x8b\xc2\x2b\x00\xc1\x28\xad\xf1\x1a\x6d\xcb\xfe\xf0\xc5\xad\x2b\x7f\x16\xf7\x15\xdf\x02\x30\x0e\x60\x75\x69\x69\xc9\x78\xe6\x99\x67\x60\x9a\x26\xba\xbb\xbb\x4d\x66\x2e\x32\x50\x98\x0b\x16\x67\xae\x6c\xca\x5e\xc9\x68\x32\x57\x50\x65\x21\xe5\x31\x93\x93\x2d\x85\x2b\x3f\xec\x4d\xbd\x78\x26\x96\xfc\x9b\x94\xdb\x78\xc7\x4a\x23\x6e\x18\x86\xfe\xf2\xcb\x2f\xdb\x27\x4a\x57\x55\xc8\x1a\x43\xe2\xf9\xf3\xe7\xe5\x43\x0f\x3d\x04\x22\x52\xbd\x45\x11\x84\xdd\x2d\x6c\xc4\x90\x08\x46\xce\x25\x93\x28\xe9\x3f\xf6\x99\x56\xeb\xe9\x40\xb5\x92\xc3\x19\x6e\xd9\x90\x68\x19\xbb\x54\x30\x7c\x81\x15\x73\x3f\x49\xf8\xec\x1e\x7e\xcd\x76\x33\x95\xe1\x58\xb9\xf7\xaf\xc5\x38\x8a\x5c\x11\xf2\xec\x30\x6d\x00\x68\x5a\x36\x0f\x11\x10\x04\x51\xbc\xbd\xbd\xdd\x00\x20\x0f\x1f\x3e\x2c\xbc\x5e\xaf\xca\xcc\xc1\x4f\x5c\x6f\xfe\xc5\xae\x55\xf7\xe7\x2a\x06\xbc\xb5\x86\x3b\x06\xd4\xed\x73\xfe\x5f\x9a\x69\x2e\x9c\x1b\x69\xcf\x7e\x27\x1c\x0e\x1b\x57\xaf\x5e\x95\x33\x33\x33\xb2\xb3\xb3\x33\xcd\xcc\x53\x26\xb1\x71\xb1\x35\x1b\xbf\xbc\x29\xfb\x7a\x53\x41\xed\xf1\xea\x22\x68\x28\xac\xaf\x7a\x8c\x59\x5d\xe1\x29\x06\x5f\x07\x30\x45\x44\x09\x29\xa5\x7e\xea\xd4\x29\x00\xa5\xd5\x1b\xd6\x9c\x5f\x96\x99\x67\x18\xac\xaf\x7a\xcd\x85\x77\x7a\x52\x1f\xa2\xb4\x6b\xac\x00\x90\xb7\xce\x14\x99\x03\x97\x36\x6d\x37\x4d\x33\xff\xdc\x73\xcf\x21\x95\x4a\xd5\x1b\x35\xaf\xf5\x48\xdc\xb7\x6f\x9f\x3d\x0b\x2d\x54\x93\xfc\xe5\xc5\x83\xf6\x57\xea\x30\xb6\xd5\x7a\x24\x32\x01\x05\x55\xa6\x1d\x47\x0a\xa0\x36\xfd\x06\x8d\x0f\x07\xa6\x11\xe3\x88\x9a\xdf\x35\xc4\x58\x1f\x80\x00\xb3\xc7\xbb\x6a\xee\xaa\x30\x80\xa3\x9b\xaa\x08\x5d\xfb\xa5\x35\xf0\x5a\x8b\x71\x46\x97\x31\x54\x99\x10\x02\x00\x2d\x2b\x07\x94\x22\x42\xa6\x06\x6d\xd3\xa6\x4d\x79\x00\xe8\xed\xed\x05\x33\x6b\xfe\xa2\xd2\xb9\x63\xd6\xff\x65\x62\xaa\x5e\x0a\x45\xb6\x04\xb4\x72\x23\x80\x18\xea\x9e\xa9\xa6\x5f\xfc\x68\x53\xee\xb4\xa9\x70\x7e\x68\x68\x28\xff\xcd\x6f\x7e\x13\x8f\x3f\xfe\xb8\xd1\xd9\xd9\x69\xeb\x34\x49\x03\x3c\x95\xf0\x1a\xc1\x84\xb7\xa4\x86\x58\x87\xc8\x24\x88\x28\x01\x94\x0e\xed\x7d\xf5\xd5\x57\xb1\xb4\xb4\x54\xae\xfb\x67\x9f\x7d\x16\x8f\x3e\xfa\xa8\x11\x8b\xc5\xd2\x28\x7d\xe4\x09\x06\x4f\x59\x6e\xaf\x02\x80\x01\x46\x9e\x99\xb3\x44\x94\x37\x0c\x43\x7f\xee\xb9\xe7\x30\x3d\x3d\x8d\x9a\x50\x6e\x8b\x35\x1e\x89\x8e\x93\x69\x84\x60\x2a\xeb\x3f\x95\x43\xdb\x50\xfe\xfa\xaa\x99\xaa\xc4\x45\x92\xb8\x60\x9d\x7a\x03\x67\xba\x58\x2b\x69\xea\xd9\x82\x6e\x64\x48\xac\x0d\x75\x31\xdd\xdd\xdd\xb6\x92\xe7\x71\xe5\xb9\x1d\x55\x52\xc5\xd1\x57\x01\x8e\xf8\xc6\x98\x8a\xc9\xdf\xa1\x6f\xd8\xcf\x16\x03\x08\x13\x01\x55\x97\x51\x53\x53\x54\x00\xe2\x8b\x5f\xfc\x22\xbc\x5e\xaf\x00\xe0\xeb\x4a\xb8\x0f\x6a\x26\x45\x4b\xd5\x65\x31\x6b\x83\xe5\xc6\x20\xa0\x25\xeb\xda\x19\xca\xa9\x03\xcb\x81\xe2\x42\x20\x10\xd0\x0d\xc3\x30\xfe\xf1\x1f\xff\x11\x8f\x3c\xf2\x88\x31\x34\x34\x94\x06\x90\x25\xa2\x38\x4a\x93\xbe\x02\x80\xb4\x86\xda\x06\x00\x23\x99\x4c\x1a\xaf\xbd\xf6\x9a\x73\x34\x28\x01\xc0\x30\x0c\xf9\xfc\xf3\xcf\x63\xf3\xe6\xcd\x78\xf0\xc1\x07\xf3\x91\x48\x44\x27\xa2\x24\x2a\x4a\xb1\x24\x22\x29\xa5\x34\xa6\xa6\xa6\xf0\xcc\x33\xcf\xdc\xc8\x70\xbb\xd6\x23\xd1\xb9\x6b\xaa\x60\x88\x8a\x88\x47\xc5\x34\xd2\xd0\x23\x91\x21\x09\xe5\xa3\x93\x6a\x32\xaf\x27\x69\xd6\x93\x32\xb5\x98\x5a\x49\xd6\x10\x63\x1f\xd3\x04\x40\x53\x4c\x0e\x94\x49\x2d\xaf\xd3\x77\x68\xc6\x8e\x9d\xf1\x1b\x62\x2a\xc5\xb3\xa2\x2b\x8c\x54\x56\xa8\x19\xaa\x30\x11\xb0\x3e\x40\x84\xc3\x61\xd8\xd3\x41\x81\x82\xd2\x57\x1e\x62\x33\x59\xa7\x54\x95\x3b\x4c\x38\xd9\x96\xc1\x50\x18\xbe\x80\x2e\x3a\x97\x98\x35\x21\x04\xac\x5d\x56\xf1\xca\x2b\xaf\xe0\xca\x95\x2b\x32\x16\x8b\xc9\x58\x2c\x66\xb8\xdd\xee\xbc\x83\x42\xb9\xbc\xbc\x8c\xd1\xd1\x51\x5c\xbe\x7c\x19\x86\x61\x34\xac\xbb\xab\x57\xaf\x62\x7c\x7c\x1c\x52\x4a\x63\xef\xde\xbd\x65\xcf\x46\xd3\x34\x31\x33\x33\x83\xeb\xd7\xaf\x23\x99\x4c\xa2\xc1\xef\xab\x7a\x93\x46\x1e\x89\xb6\xd5\x51\x54\x34\x81\x8d\x18\x12\xcb\x0d\xeb\x64\xc4\x1b\x19\xfc\xee\x88\x21\x91\x99\x05\x01\x82\x89\xe4\x7a\x46\xc2\x4a\x41\x1a\x63\x1a\x18\x12\x4b\x7a\x4c\xa5\x07\x92\x25\xdd\xbb\x6a\x6f\x6c\xc1\xcc\xaa\x14\x10\x1b\x31\xdc\x39\xac\xc1\xb2\xa8\x30\x6c\xaf\xc3\xe5\xe5\x65\xc3\x2e\xdf\xd4\xd4\x14\xa6\xa6\xa6\x60\xe9\x36\x46\x77\x77\xb7\xb0\xdc\x4b\x6a\xeb\xa0\x5e\x9d\x95\x1b\x5f\xca\xd2\x4c\xc4\xd9\xb3\x67\x9d\xf1\x37\x9d\x4e\xbd\xf3\xc2\x04\x50\x62\x00\x49\x65\x23\x94\xa5\xe8\xc1\x39\x60\x29\xc7\x3b\x47\x66\x82\x4b\x27\xea\xd5\x6c\x2e\x55\x4f\x72\xd4\xbe\xdb\x08\xa6\x51\x9a\x6b\x9e\xc9\xea\x77\x0c\x8d\xd2\x4e\x69\xc3\xd6\x3b\xe6\x0a\xae\x6a\xbf\xf3\x8d\x60\x6c\x25\x98\x2a\x76\x47\x16\x30\x4c\x17\x65\xed\xb2\x5b\x7a\xa4\x24\x22\x39\xdf\xa4\x8f\x33\x20\x05\x48\x54\xce\xc9\x5b\x2b\x81\xec\xfa\xcc\xb9\xcc\x44\xc2\x6b\xc4\xed\xdf\xf7\xf6\xf6\x8a\xeb\xd7\xaf\x57\xd5\x8f\xb5\x27\x10\x66\x67\x67\x6d\x1a\x85\x25\xf5\x1b\xd5\x21\xea\xd5\x73\x7b\x7b\xbb\x70\x4e\xc1\xac\xae\xae\xc2\xf2\x1c\xdd\x50\x3a\xf5\x4e\x2c\x2c\x37\xbe\x2c\x2f\x8d\xb5\x2a\xca\xa1\x23\x70\x59\x09\xe4\x2a\x8e\x52\x24\xdc\x76\x81\xea\xa5\xdd\x80\x18\xe7\x75\x3d\x3b\xcf\x7a\xa3\xb6\x7a\x4c\xa8\x17\xfc\x62\xa6\xdc\x48\xb6\x1d\xab\x8a\x61\xec\x06\x5d\x1f\xe3\x14\x58\x65\x89\xe1\xc0\x14\x35\x8a\x1b\x1a\xa5\x01\x18\x44\x04\x5d\xd7\xa1\x69\x9a\x64\x66\x7d\xbe\x49\x1f\x5b\x0c\x14\xaf\xb4\xa6\xb4\x21\xd4\x49\xd3\xb9\x03\x9d\xb5\x6b\xc6\x3b\x59\x97\x5c\x22\x22\x9d\x99\x91\xc9\x64\x9c\xe5\xc3\x23\x8f\x3c\x22\xda\xdb\xdb\x6d\x9f\x26\xc1\xcc\x48\xa5\x52\x98\x9b\x9b\x13\xaf\xbc\xf2\x4a\xa3\x41\x48\x55\x3d\x3d\xfc\xf0\xc3\x62\x68\x68\x48\x28\x8a\x22\xec\xb6\xb2\x75\xd7\x85\x85\x05\xbc\xf7\xde\x7b\xf6\x0a\x8e\x75\xd3\x29\x3b\x53\x3b\x1b\xc0\x9e\x7f\x29\x0a\xce\x95\x2a\xad\x62\x8d\xb5\x75\x04\xe7\x01\x2a\x0e\x83\x18\xdc\x86\x08\x60\x7d\x69\xb1\x11\x09\x54\x1b\x6e\xc4\x3c\x55\x98\x78\x3c\x2e\x42\xa1\x90\x04\x91\x9e\x69\x51\x46\x01\x48\xe6\xd2\xd1\x44\x25\xce\x80\xa5\xfc\x56\xee\xcb\x8a\x72\x3d\x4c\xb9\x8c\x76\xb7\x55\x1e\x8b\x97\x31\xd9\x66\x75\x8c\x45\xc9\x7d\x17\x80\xfc\xda\xd7\xbe\x26\x7f\xfe\xe7\x7f\x1e\x42\x88\x3c\x03\x4b\xa7\x06\x12\x7f\xf7\xb9\x0b\xd1\xff\xd5\x65\x0a\x0f\x6a\x42\xa5\xb7\x27\x24\xdd\xc6\xd2\xdb\xbd\xc9\x6f\x83\x4a\xeb\xe8\xb2\xd9\xac\x8c\xc7\xe3\xd0\x34\x0d\x47\x8f\x1e\x15\xfd\xfd\xfd\x42\x51\x14\x15\x0c\x55\x48\xa8\x82\x49\x95\x04\x19\x6c\x0a\xea\xc1\x60\xd0\x18\x1a\x1a\x32\xa6\xa7\xa7\xe5\xd3\x4f\x3f\x5d\xb7\xce\xb6\x6d\xdb\x86\x43\x87\x0e\x09\x97\xcb\xa5\x82\xe1\xf1\x16\x45\xa0\x39\xaf\x46\x35\x83\x3c\x49\x8f\x19\x4f\x7a\x8c\x78\xeb\xa6\xd6\xfc\x89\x13\x27\xf4\xe9\xe9\x69\x34\x4a\xc7\x0e\x6b\x74\x20\x87\x13\xb9\xcc\xb9\xcc\x34\xec\x2a\xa4\x8a\xdd\xc2\x2a\xab\xa5\x3b\x57\x86\xba\x00\xc1\x57\x54\x82\x96\xf2\xe8\xcc\xa7\x9e\x04\x5a\xef\x5a\xdb\x17\xd7\xfb\x7d\x43\xcc\xca\xca\x0a\xac\xa5\xbc\xd9\x4c\x48\x19\x29\xba\x29\xae\x15\x38\x5a\x56\x92\xcb\xe5\x70\x2e\x8a\x74\x48\xa2\x1a\x8c\x03\x51\xc6\x94\x7f\x60\xc5\xaf\xb6\xa9\x6f\x33\x90\x46\xc9\x85\x05\x44\x24\x26\x26\x26\x10\x8b\xc5\xf2\x00\x16\xa6\x42\x85\xd7\x5f\x18\x8a\xb7\x1e\xbf\xdc\xf2\xaf\xdd\x86\xe2\x2b\xdb\x90\xac\xa3\xac\x00\x60\xd5\x63\x2c\x3d\xbb\x2d\xfe\xc7\xab\x1e\xe3\x3c\x18\x09\x22\xd2\x47\x46\x46\xa0\xaa\x2a\x1e\x7f\xfc\x71\xb4\xb5\xb5\xa9\x04\xf2\xb5\xa6\x5c\xfd\xbb\x66\x03\x5f\xec\x58\xd5\x0e\xba\x4d\x11\xd6\x15\x4e\xce\x37\xe9\x67\x2f\xb4\x67\xbe\x39\xdd\x5c\xb8\xd8\xd9\xd9\x99\xfd\xd9\x9f\xfd\x59\xe3\xe9\xa7\x9f\xc6\xf2\xf2\x72\xb9\x7e\x86\x87\x87\xf1\xf0\xc3\x0f\x0b\x00\x1e\x7f\x41\x69\x3f\x78\x3d\xf8\xa5\x2d\x8b\xde\x7f\xe1\x29\x8a\x7e\x02\x54\x93\x90\x58\x0c\xe8\x67\xde\xe9\x4d\xfd\xc1\xd5\x48\xee\x9d\xce\xce\xce\x74\xbd\x74\x9c\x6d\xe1\xf4\x89\x66\x00\xe8\xe8\xe8\xa0\xce\xce\x4e\x01\xc0\xe7\x2d\x2a\x7d\xdb\xe7\xfd\x9f\x15\xd6\xe6\xe1\xf6\x87\x57\x9e\x33\xa9\xa3\x8b\xae\x7a\x8c\x6b\x63\xd1\xfc\xcb\x20\x24\x13\x89\x84\x61\x39\x93\x39\xf3\x20\xab\xf1\xb9\xc1\x3f\x35\xc0\xd1\x46\x31\xb3\xb3\xb3\xbc\x7f\xff\x7e\x02\x20\x58\xc0\xeb\x2a\x70\xbf\x2f\x21\x87\x2a\xfc\xc0\x96\x03\x1c\xec\x02\x39\x58\x64\x2d\xa6\xe4\x2b\xcc\x65\x1b\x50\x55\x3c\x33\x74\x9f\x98\x9b\x19\xf6\x7c\x8d\x55\xba\x4a\x44\xc9\xf1\xf1\x71\xf3\xfa\xf5\xeb\x72\x6c\x6c\x8c\x1f\x7c\xf0\x41\xa9\x28\x8a\x09\x82\xb1\xec\x33\x16\xc7\x22\xb9\x29\x97\x29\x7c\x5e\x43\xf8\x04\x43\x98\x0a\xcc\x94\xc7\x5c\xb9\xd0\x9e\x79\xfb\x85\xa1\x95\x3f\x5b\xf1\x19\x6f\x12\xd1\x18\x11\xad\xe4\x72\x39\xfd\x07\x3f\xf8\x81\x7c\xf2\xc9\x27\xa9\xbd\xbd\x5d\xa5\xd2\xbe\x94\x3f\xf5\xe9\x4b\xe1\x3f\xee\x48\x6a\x27\xfd\x45\x75\xb3\x66\x8a\x4e\x5f\x51\x89\x45\x33\xda\xe1\xad\x8b\xbe\x9f\xf0\xeb\x42\x9d\x0c\x15\x46\x14\x4d\xd5\x63\xb1\x98\x69\x1d\x0d\xc1\xbd\xbd\xbd\xf4\xe8\xa3\x8f\x0a\x21\x84\x27\x9c\x75\x0d\x7d\xe1\xdc\xa6\x3f\xed\x5b\xf1\xfc\x8c\x66\x8a\x68\x49\x59\x27\xa1\x80\x7c\x4d\x05\x75\xeb\xe0\x92\xf7\x0b\x9a\xa4\xfc\x54\x4b\xe1\xa2\xea\x52\x8b\xd1\x68\xd4\xbc\x78\xf1\x62\xdd\x36\xb3\xa7\x32\xd8\xbe\xfa\x7c\x3e\xb2\xfc\x67\xbd\xaa\x49\x9d\xbb\x66\xfd\x4f\x29\x4c\x2a\xb1\x73\x2e\xac\xf2\x85\x56\x0d\x68\x98\x91\x77\xc9\xf8\xc5\xb6\xec\xb3\x20\x24\x3c\x1e\x4f\xf1\xc3\x0f\x3f\x64\x47\x1e\xf6\x8f\xab\xf4\x6e\x67\xfe\x8e\x77\xb5\xbf\x73\xfe\xe6\x86\x98\xcd\x9b\x37\x97\x76\x2f\x25\x52\x0b\x7e\x61\x86\x67\x8c\xa3\xc2\x84\xbb\x32\x44\x27\x07\x1b\x52\x75\xca\x35\x98\xd2\xe7\x62\xdb\xc1\x2a\xd7\x52\x1d\x10\xe6\x07\xdd\xdf\x4a\x45\x94\x97\x89\x68\x86\x99\xb3\xdf\xf9\xce\x77\x4c\x9b\x2e\x29\x25\x75\x77\x77\x9b\x00\x0a\x0c\xce\xe6\x35\x5e\x1a\x8b\xe4\x46\x2e\x74\x64\xce\x8e\xb4\x67\xce\x7e\xd0\x95\x3e\x75\xb6\x3b\xfd\xec\x44\x38\xff\x4a\x51\xe5\x73\x0c\x9e\x20\xa2\xb8\x94\xb2\x70\xea\xd4\x29\x1e\x1c\x1c\xa4\x2d\x5b\xb6\x08\x66\x6e\xde\x3d\x1b\xf8\xfc\xb1\xab\xa1\xff\x5b\x65\x11\x22\x54\x14\x7b\xfb\x2a\x98\x3c\x6d\x29\xed\x61\x8f\x21\xe4\xb5\x70\xfe\x7d\xd5\xe5\x2a\xb4\xb4\xb4\xf0\xd8\xd8\x18\x3f\xf9\xe4\x93\xe4\x76\xbb\xdd\x2e\x83\x3a\x9e\x1a\x89\xfe\xfe\xa6\x8c\x76\x84\xac\x6e\x64\x4d\x3a\x20\xad\x3d\xa9\x1d\xcd\xbb\xe4\xc4\x5c\x53\xe1\x4a\x20\x10\x28\x98\xa6\x89\xb9\xb9\x39\x67\x7d\x0b\x00\xbc\xc6\x88\x97\x4a\xa5\xec\x7b\x23\xe7\x32\x93\xba\xc2\xa5\xad\xab\xaa\x64\xb7\xcd\x30\xa8\xfa\x7a\x41\x84\xa6\x82\xd2\xaa\x48\xf2\xd9\xdd\x98\xb5\x7b\x63\xa3\xa9\x88\xf5\x94\xe3\x1b\xe9\x45\xeb\x62\xae\x5c\xb9\x02\x94\x8e\xbf\x4c\xe8\x5e\x1a\x99\x1b\xd4\xfe\x81\x09\xb2\xa4\xfc\x5b\xce\x51\x16\xfd\xa5\x6e\x9b\xcb\x67\x98\xd5\x62\x9c\x4a\x75\xed\x81\x8a\xd9\x90\xb8\xb2\xd4\xeb\x7a\x86\x88\x16\x98\x39\x6b\x79\x60\x96\xcb\xf3\xc1\x07\x1f\xc8\x77\xdf\x7d\x57\x5a\xd6\xdd\x39\x66\xbe\x08\xc2\xdb\x05\x45\xbe\x92\xf4\x9a\x4f\x27\xdd\xc6\x33\x86\xc2\xaf\x31\xf8\x1d\x66\xbe\x42\x44\x0b\xa6\x69\xe6\x5f\x7e\xf9\x65\x39\x33\x33\x83\x9d\x3b\x77\x82\x99\x3d\x4d\xba\xda\x7b\x68\xa2\xf9\x37\x04\xa8\xac\x43\x95\x4d\x51\x65\x05\x1c\x20\x90\xd8\x39\x1b\xf8\xa5\x9e\x15\xf7\x61\x66\xf6\xc5\x62\x31\xf1\xc5\x2f\x7e\x51\xf8\xfd\x7e\xc1\xcc\xbe\x6d\x0b\xbe\x27\xdb\x52\xda\xb1\xaa\x76\xac\x93\x8e\x00\x69\x07\xaf\x05\x7f\xbd\xa9\xa0\xf6\x33\xb3\x67\xcf\x9e\x3d\xb6\x61\xb4\x8a\x5f\x6c\x0b\x64\xbd\x20\x0d\xc1\xd9\xbc\xcb\x4c\x96\x33\x5a\xa7\x25\xed\xe0\xd3\x95\x56\x4f\x69\x0e\x4d\xf5\x7a\xbd\x42\x5a\x06\x87\x9a\xbc\xea\x29\xd9\x37\xa2\x47\xdc\x0c\xe6\xfc\xf9\xf3\xc8\xe7\xf3\x06\x11\xa5\x41\x34\xb3\xdc\xeb\x7a\x3a\xd1\xa1\xbe\x53\xe2\x18\xcb\x12\x6c\x7d\x14\x55\x56\x61\xb6\x1c\x55\x9c\x18\x38\xf4\xe9\x8a\x29\x08\x45\x0f\xc5\xaf\xef\xf4\xfc\x19\x2b\x34\xc6\xcc\x71\x00\xba\x65\x57\x71\xd2\x23\xde\x7d\xf7\x5d\x9c\x3e\x7d\x5a\xa6\xd3\xe9\x3c\x80\x84\x75\x54\xe7\x15\x66\xbe\x08\xe0\x22\x80\x31\x00\x33\x44\x94\x88\xc7\xe3\xfa\x0f\x7e\xf0\x03\x79\xf5\xea\x55\xd9\xd3\xd3\x03\xcb\x77\xc8\x17\x5b\xf6\x1c\xf7\x15\x45\x3f\x50\x1a\xac\x94\xcd\x07\x15\xdb\x51\x59\xa0\x2a\x4c\xbe\x1d\xf3\xfe\x9f\x44\x69\x8e\x4b\xb5\x8c\x9a\x2a\x80\xe0\xd0\x82\xef\x29\x94\xcf\x33\x59\x3f\x1d\x5f\x51\xf4\xc6\xe2\x9e\x63\x00\x7c\xaa\xaa\x0a\x6b\xa5\xb2\xb3\x0d\xd6\x7a\x24\x2e\x2c\x2c\xa0\x50\x28\x48\x4d\xd3\x0c\x53\x50\x36\xe9\x31\x17\xc2\x59\x0c\x60\x43\x86\x44\x86\xcb\xa4\x40\x73\x5e\xed\x4c\x7b\x4c\x0d\x28\xb9\x33\x5c\xbb\x76\xad\x5e\x23\x37\x7a\xbe\x2d\x18\x5d\xd7\xf1\xee\xbb\xef\xe2\xc8\x91\x23\x79\x00\x4b\x2c\xe8\xd2\xe4\x4e\xcf\x57\x89\xf3\x6a\xf3\x9c\xb1\xd7\x31\xf0\xb1\x48\xb7\xba\xb4\xb2\x5e\x5c\x29\x57\x3d\x43\x62\xd1\x4b\x89\x89\x3d\xde\x3f\x2e\x34\x29\x6f\x5a\x0c\x91\x8e\xc7\xe3\x72\x6c\x6c\xac\xee\x88\x73\x74\x74\x14\xe3\xe3\xe3\x18\x18\x18\x30\x62\xb1\x98\x11\x89\x44\xca\x6b\xd2\x33\x99\x0c\x16\x16\x16\x70\xf9\xf2\x65\x58\xbb\x8d\x01\x00\x5a\x5a\x5a\x6c\x63\xa2\xaf\x2d\xa5\xed\x2b\x9b\x4f\x2c\xfa\xec\x81\x4b\xad\x2d\x89\xc1\x68\x4f\xba\xf7\x12\x28\x08\x42\x1c\xa5\x91\xa1\xa6\x9a\x14\x0a\x67\x5d\xc3\x36\xe6\x46\xe9\x00\x40\x7b\xd2\xbd\xef\x5c\x67\xe6\x5b\x00\x92\x2d\x2d\x2d\x7a\x6d\xb9\xd6\x33\x24\x1a\x00\xf2\x71\x5f\x71\xaa\x3f\xee\xdd\x90\x21\xd1\xc2\x88\xd6\x94\x6b\xdb\x54\x73\xfe\x25\x22\x12\x2d\x2d\x2d\xd2\x61\x4f\xa8\xca\xbc\xe6\xf9\xb6\x1a\x12\x01\xe0\xc2\x85\x0b\x32\x16\x8b\xa1\x3c\x93\xad\x40\xbb\xb6\xcb\xf3\x47\x1d\xde\xc2\x4f\x47\xaf\x15\x1f\x26\x13\xea\xad\x18\x12\x33\x2d\xe2\xfa\xe4\x4e\xcf\x5f\xe4\x03\xe2\x14\x73\x49\x67\x31\x4d\x53\x7f\xee\xb9\xe7\x6a\x48\xac\x2e\x57\x3e\x9f\x97\x23\x23\x23\x62\x64\x64\x44\x6a\x9a\x26\x74\x5d\x97\x81\x40\x40\xa4\xd3\xe9\xba\x65\xb7\x1c\xf5\x05\x33\x7b\x5c\xa6\x08\x56\xd5\x79\xd9\x7e\x55\xdf\x20\xa9\x48\xf8\x04\xc3\x23\x09\xf6\x0a\x1b\x01\xc0\xc3\x4e\x63\xeb\x06\xd2\x21\xc0\xc3\xcc\x1a\x11\xd9\x0b\x07\xaa\xca\x55\x3b\x3c\x16\x00\xb0\xb8\xb8\x08\xcb\xaa\x99\x5f\xf2\x17\x27\x4a\xfa\x81\x3d\xdc\xb4\x45\x9d\xf5\xcc\x15\xa5\xbc\x74\x84\x25\xa3\x33\xe9\xde\x49\x20\x0f\x33\xab\xdd\xdd\xdd\x76\xda\xce\x7c\x6a\x2b\xd9\x79\xdd\x88\x21\x71\xc3\x98\x97\x5e\x7a\x09\xd9\x6c\xd6\xb0\x26\x0d\x27\x58\xa5\xb3\x33\x5b\xdd\x5f\x1d\xdb\xef\xfd\xe3\x4c\x8b\x98\x60\x82\x5c\x63\x48\x2c\x77\x6d\x15\x7d\x07\x04\xe8\x6e\x4a\xce\x6e\xd5\xbe\x7f\xf5\x80\xef\xb7\xf3\x4d\xca\xcb\x5c\x3a\x59\x68\xc1\x34\xcd\xfc\x8b\x2f\xbe\x68\xbb\x3c\x34\xa2\xab\x4a\x37\xb2\x7c\x6b\x60\xed\x8e\x5a\x17\x03\x54\xa4\x5f\x56\x33\xd3\x95\x38\x38\x85\x3e\xaa\xe2\xad\x90\xd1\x64\xc2\xa4\xf2\xc4\x38\x98\x19\x86\x60\x99\xf2\x18\x0b\x37\x93\xce\x78\x38\x37\x62\xd3\x56\xe3\x20\xd8\xd8\x90\xb8\xb2\xb2\x82\xee\xee\x6e\x9b\x81\xae\x32\x20\xc9\x96\x4c\x37\x30\x24\x02\x84\xb6\x94\xb6\xdd\x25\x29\x58\x54\xa0\x5a\x13\x75\x77\xd5\x90\xe8\x8c\xcc\x66\xb3\x78\xfa\xe9\xa7\xf1\xc4\x13\x4f\xe8\x3e\x9f\x2f\x01\xc0\x00\x51\x36\x1d\x51\xe3\x57\x0f\x2a\x17\xfc\x09\xf3\x81\x96\x99\xe2\x5e\x7f\x5c\xf6\xbb\x0a\x32\x28\x24\x54\xb6\x26\x91\xad\xe9\x89\x7c\xae\x49\xcc\x25\xda\xd5\x0f\x57\x5b\xd5\x77\x4d\x8d\x2e\x81\xe8\x3a\x33\xcf\x58\xa3\x25\xfd\xc5\x17\x5f\x84\x75\xa2\xf2\x2d\xd1\xd8\x08\x93\xcd\x66\x61\x4d\x4c\x1b\x93\xa1\xfc\x85\x07\xa6\x03\x52\x80\x44\xd9\x86\x54\x13\x9c\x4a\xf0\x48\x7b\xe6\x0c\x2a\x3e\xd1\x92\x88\x0c\x66\xce\x5e\xda\x94\x7b\xbb\x2d\xa5\xed\x2e\x8f\xc0\xd6\x49\x27\xad\x99\x4b\xd3\xa1\xc2\x05\x58\xfe\xed\x75\x8e\x19\xad\x3f\x99\xba\xbc\xbc\x0c\x00\x06\x33\xeb\x2b\x3e\x63\x2a\xef\x92\x09\x6f\x51\x09\xdb\xa3\xdb\x52\x2e\x0e\x3b\x8a\x45\xb4\x6d\x6c\xf4\xeb\x4a\x67\x24\xe3\x1a\x9c\x6d\x2a\x4c\x28\x8a\x22\x3a\x3a\x3a\xca\x73\x36\x58\x2b\x71\x6e\xbb\x21\xb1\x16\xb3\xb2\xb2\x82\xa7\x9f\x7e\x1a\x47\x8f\x1e\xd5\xdb\xda\xda\x92\xd6\x14\x41\x92\x05\xe6\xd2\x11\x75\x2c\x15\x56\x4e\x09\x46\x54\x2d\xf0\x26\x57\x81\x43\xc2\x60\x8d\x05\xa4\xa1\x89\x64\xd1\x4d\xcb\x52\xc5\x12\x97\x5c\x3b\x17\xac\xd1\x56\x9c\x88\xb2\xa6\x69\xea\x2f\xbd\xf4\x92\xad\xb7\x34\x2a\xcf\x9a\xfa\xdd\x28\x26\x1e\x8f\xa3\xbf\xbf\x5f\x12\x51\xf6\x7a\x4b\xe1\xfd\xf9\x26\xfd\x4a\x7b\x4a\x1b\xb2\x3b\x99\xda\x25\xc9\x76\xdb\x24\x3d\xe6\xc2\xe5\x4d\xd9\x53\xb0\xb6\xf0\xb5\x99\x90\x88\x92\x17\xda\xd3\x2f\x6f\x9b\xf7\x3d\x16\xcd\xb8\xfa\x6f\x94\xce\xbb\x3d\xa9\xef\x67\x4b\x1b\x64\x64\x99\xd9\xe9\xee\x5c\xa6\x71\x8d\x21\x11\x00\x2d\x2f\x2f\xcb\x7d\xfb\xf6\x09\x22\x72\x49\x81\x40\x5f\xdc\xf3\x50\x73\x5e\xed\xd8\x88\x21\xd1\x52\x35\x95\x94\xc7\x9c\x9a\x09\xe9\xef\x02\xc8\xa4\x52\x29\x69\x1d\x57\x79\x57\x0c\x89\xf5\x30\xf9\x7c\x9e\x3f\xfa\xe8\x23\x76\xbb\xdd\x1c\x8d\x46\x0d\x21\x44\xde\xea\xd6\x56\x88\x68\x11\x44\xb3\xd2\x45\xd7\x8a\x1e\x71\x49\xf7\x89\x8b\x45\xaf\xb8\x60\x6a\xf4\x11\x2b\x74\x09\x44\x57\x89\xe8\x1a\x11\xcd\x58\xf8\xec\xdc\xdc\x9c\xf1\xcc\x33\xcf\x60\x6e\x6e\x4e\x6e\xa0\x4c\x1b\x29\xf7\x1a\xcc\xec\xec\x2c\xef\xd9\xb3\x87\x84\x10\x24\x05\x5c\x0b\x01\x3d\xbd\x79\xc9\x77\xc0\x25\x85\x9b\xca\x9e\x00\x8e\xc5\x0d\x44\x28\x2a\x9c\x7f\x7e\x6b\xfc\xab\x8b\x81\xe2\x1b\x44\x34\x43\x44\x59\x5d\xd7\x59\x55\x4b\xcb\xca\x4c\x05\x98\x6e\x2e\xc4\xfb\x56\x3c\xbb\x3d\x86\xf0\xd7\x4b\x87\x09\xf2\x5c\x67\xe6\xd5\x37\xfb\x92\x7f\x01\x81\xab\x44\x14\x4f\x24\x12\xc5\x37\xdf\x7c\x73\x0d\xfd\x6b\x0c\x89\x76\xc5\x5b\xe7\x9b\x2b\x44\xe4\x0f\xe6\xd5\xad\xdd\xab\xee\x5d\xb6\x84\x59\xcf\x90\x58\xc2\x10\x5c\xa6\x50\x47\xda\x32\xcf\x32\x21\xe5\x76\xbb\x8b\xa3\xa3\xa3\xce\x01\x9c\x53\x72\xde\x11\x43\x62\x23\xcc\xd4\xd4\x14\xbf\xf7\xde\x7b\x32\x10\x08\xc8\x68\x34\xaa\xa3\x24\xe6\xd3\x28\xed\x5a\xba\x6c\xed\x24\x3b\x07\x60\xde\xfa\x5f\x64\xe6\x15\x22\x5a\x65\xe6\x7c\x3a\x9d\x2e\xbe\xf1\xc6\x1b\x7c\xe6\xcc\x19\x59\x28\x14\x9c\x0c\xdb\xa8\x3c\xb5\xe5\xba\x29\x4c\x5f\x5f\x1f\xfc\x7e\x3f\x33\xb3\xcc\xba\x65\x6e\x32\x94\x5f\x88\x64\x5c\xdd\x01\x5d\x69\x71\xce\xe1\x81\x18\xcb\x3e\x63\xe6\xb9\xe1\xf8\x5f\x5e\x6f\x29\x3c\xc7\xe0\x71\x22\x4a\xa4\x52\xa9\xe2\x5f\xfd\xd5\x5f\xc9\xde\xde\x5e\xf8\xfd\x7e\xc9\xcc\x66\x5e\xe3\xec\x95\x68\x6e\x42\x30\xf9\x9a\xf3\x6a\x58\x95\x25\xc7\x41\x26\xc8\xb8\xcf\x58\x3c\x3d\x90\xf8\x87\x77\x7b\x52\x7f\xc7\x02\xa3\xcc\x3c\x4f\x44\xd9\x37\xde\x78\x83\xe3\xf1\xf8\x1a\x9a\xeb\x99\x76\x04\x00\x69\x9d\x6d\xee\x01\xd0\xdd\xb9\xaa\x7d\xfe\x8b\x1f\xb4\xfe\x9f\x42\x92\x5a\x35\xc5\xe5\x54\xc2\x6a\xe2\x0c\xe2\xfc\xdf\xec\x9d\xff\x97\x4b\x81\xe2\x69\x66\x4e\x7e\xf5\xab\x5f\x35\xb0\x36\x6c\xd4\x90\xb8\x91\x19\xf8\x5b\xc2\x3c\xf8\xe0\x83\xa2\xb3\xb3\x13\xa1\x50\x08\x7e\xbf\xbf\x32\x42\xb1\x14\xcf\x62\xb1\x28\xf3\xf9\x7c\x79\xdb\x37\xc7\x00\x63\xbd\x70\x23\x3d\x67\xc3\x98\x70\x38\x8c\x2f\x7c\xe1\x0b\x50\x14\xc5\xc7\xcc\x51\x02\xfa\x05\xd3\x60\x7b\x52\x7b\xa0\x6b\xd5\x3d\xe4\xd7\x95\x60\xde\x25\xb3\x73\x4d\xfa\xd8\x54\xa8\xf0\x9e\x21\xf8\x0a\x83\xc7\x2c\x83\x64\xf6\x99\x67\x9e\x91\x33\x33\x33\x70\xa4\xe3\x61\xe6\x30\x80\x6e\x02\xf5\x6b\x26\x75\x47\x32\xae\x3e\x97\x49\x9e\xb4\xdb\x8c\x27\xbc\xc6\x35\x49\xb8\xce\xe0\x09\x94\x6c\x53\xe9\xc9\xc9\x49\xc3\xf2\x4e\x5c\x43\x33\xd5\x89\x14\x00\xe4\xee\xdd\xbb\xc5\xa1\x43\x87\x54\x00\x51\xcd\xa0\x43\x5f\x7a\xa7\xfd\x0f\x9b\xf2\x6a\x2b\x6e\xc4\x40\xe5\x57\x8c\x1f\xf6\xa4\x7e\xff\xcc\xc0\xea\x6f\x03\x98\x1b\x19\x19\xb1\x37\xb4\xae\x55\x9a\x6b\xf3\x6e\x84\x69\x34\xd4\xbf\x6d\x98\xe6\xe6\x66\xb1\xba\xba\x5a\x75\x2d\x14\x0a\xc8\xe7\xf3\xeb\xfd\x1e\x37\xc8\xeb\x63\x63\x36\x6f\xde\x2c\x8e\x1f\x3f\x2e\x00\x68\x44\x14\x62\xe6\x28\x80\x28\x80\x10\x4a\x6e\xad\x06\x80\x24\x11\x2d\x59\x5b\xfb\x26\x98\x39\x7f\xe1\xc2\x05\x79\xe6\xcc\x99\x7a\xe9\xa8\x44\x14\x60\xe6\x10\x80\x30\x00\x1f\x4a\xfa\xb0\x6e\xa5\x13\xb7\xb6\xe6\xc9\x4e\x4f\x4f\x1b\xcf\x3e\xfb\x2c\x4c\xd3\xac\x4b\xb3\x82\x8a\xf9\xac\xca\x8c\x26\xa5\xc4\xf0\xf0\x30\x88\x48\x31\x09\xbe\xb6\xb4\xb6\x2b\x9a\xd5\xfa\xd7\x18\x12\xab\xe6\x33\x9c\x7b\x24\x12\x9a\x74\x25\x3c\xd2\x9e\xf9\xbe\x41\x9c\x68\x6a\x6a\x2a\x8e\x8c\x8c\x40\x4a\xe9\x1c\x38\xd6\xcb\xbb\x2a\xf9\x9a\x77\xce\xcc\x6e\x3b\xc6\xea\x92\xc8\xda\x85\x8c\x0b\x85\x02\x59\x1b\x4d\xd6\xfe\x8e\xb1\xf6\xf3\xb9\x63\x98\x95\x95\x15\x4e\x24\x12\xe8\xee\xee\x36\x14\x45\xc9\x03\x48\x13\x51\x9c\x88\xe6\x2c\x3d\x67\xca\x9a\x87\x9b\x27\xa2\x94\x69\x9a\xf9\x37\xde\x78\x83\x2d\xab\x78\x55\x3a\xd3\xd3\xd3\x68\x6f\x6f\x37\xdd\x6e\x77\x01\x96\x6f\x35\x11\x2d\x13\xd1\x82\x95\xde\xb2\xc5\x3c\xf9\x91\x91\x11\xf3\x95\x57\x5e\x81\x69\x9a\x0d\x69\x56\x1c\x04\x3b\x95\x5c\x64\xb3\x59\xb9\x75\xeb\x56\x68\x9a\x26\x00\xf8\x08\x14\xd9\xb2\xe8\x3d\x52\x19\xb4\x5b\xa5\xad\x5d\xc5\xc0\x28\xdb\x8b\x34\x43\x84\x96\xfd\xc6\x85\x25\x7f\xf1\x92\xaa\xaa\x7a\xa1\x50\x90\x0b\x0b\x0b\xb6\xd2\xe9\x54\x1a\x9d\x57\x38\xee\x6b\x31\x7c\x9f\x60\x6c\x1d\x60\x3d\x9a\x6f\x2b\x66\x65\x65\x45\x4e\x4c\x4c\x90\xc7\xe3\x91\xa1\x50\x48\x27\xa2\x3c\x95\xd6\xa0\xa5\x88\x28\xcd\xcc\x39\x29\x65\x7e\x6c\x6c\xcc\x7c\xe5\x95\x57\x60\x79\x30\xae\x49\x27\x93\xc9\xc8\x8b\x17\x2f\xd2\xea\xea\x2a\xfb\x7c\x3e\xc3\xeb\xf5\xea\x42\x88\x02\x33\xe7\x00\x14\x4c\xd3\x2c\x4c\x4c\x4c\x98\xaf\xbf\xfe\x3a\x8f\x8c\x8c\xd8\xdd\x75\x43\x9a\xeb\x7a\x24\xda\xcf\xb3\xb3\xb3\xd8\xb2\x65\x8b\x01\x20\x39\x15\x2a\xbc\x97\x73\xc9\x84\xb7\x58\x3a\x15\xaf\x9e\x47\xa2\x6d\x98\xaa\x58\x38\x49\x3c\x30\x13\xf8\x97\x97\x37\x65\x9f\x33\x89\xd3\x83\x83\x83\xc6\x85\x0b\x17\x44\x65\x7a\xac\x2a\xdf\x9b\x31\x24\xd6\x0b\x77\x12\xd3\x08\x7f\x57\x31\xab\xab\xab\xf2\xa5\x97\x5e\x82\xdb\xed\x16\x85\x42\xc1\x00\x80\x83\x07\x0f\x8a\xb7\xdf\x7e\x5b\xf6\xf6\xf6\x8a\xf9\xf9\x79\x14\x0a\x85\x1b\xa6\x63\x9a\xa6\xbc\x7c\xf9\xb2\xbd\x03\xab\x04\x20\x3b\x3a\x3a\x84\x35\x52\xae\x67\x26\x69\x48\xb3\x2d\x81\x6a\xa5\x80\x04\x40\xcc\x8c\xc1\xc1\x41\x26\x22\x61\x08\xf6\x45\x33\xae\xed\xd1\xb4\xd6\x57\x5a\xbf\x54\x71\x28\x27\xb2\x57\xca\x03\x95\x91\x5a\x29\xde\x5f\x50\xda\xa7\x43\x85\xb7\x92\x5e\x73\xd2\xef\xf7\x17\x96\x96\x96\x38\x91\x48\x00\x8d\x25\x50\xed\x68\xcd\x7e\x57\xaf\x20\x77\x0b\xb3\x66\x94\x8a\xea\xae\xe6\xae\x62\x4c\xd3\x2c\x63\xa6\xa7\xa7\x09\x00\xaf\xae\xae\x92\xa3\xab\x41\x5b\x5b\x1b\xed\xda\xb5\x8b\xb6\x6c\xd9\x42\x0f\x3f\xfc\x30\x22\x91\x08\xf5\xf5\xf5\x81\x88\x90\x48\x24\xd6\xe4\x95\x4e\xa7\x6f\x89\x1e\xa7\x0e\x84\x5a\x50\x2e\x97\xc3\xf0\xf0\x30\x2b\x8a\x42\x44\xa4\x15\x15\xd9\x34\xbc\xe8\x7b\xd8\xe6\x12\x02\x50\xcf\x90\xe8\xdc\x00\x43\x10\x29\x81\x82\x12\xfa\xa8\x35\xfb\xa2\x04\x67\xc3\xe1\xb0\x61\x6d\x38\x5e\xab\x83\x38\xaf\xb5\x3a\x8b\x93\x3e\x71\x0f\x30\x8d\x68\x85\xe3\xfd\x7d\x81\xe9\xec\xec\xa4\x27\x9f\x7c\x92\x76\xed\xda\x25\xda\xda\xda\x94\x70\x38\xac\x69\x9a\xa6\x86\xc3\x61\x35\x1a\x8d\x8a\x81\x81\x01\xde\xba\x75\x2b\xb2\xd9\x2c\xad\xac\xac\x7c\x6c\x7a\xea\x1a\x12\xad\x7b\x32\x4d\x53\xb6\xb4\xb4\x50\x34\x1a\x25\x00\x6a\x46\x93\x62\x70\xc9\x77\xd8\x57\x14\xcd\xeb\x1a\x12\xc9\xba\xb3\x18\x2a\x50\x50\xba\x17\x9a\xf4\xf7\x13\x3e\x73\xc2\xe3\xf1\x14\x8a\xc5\x22\x5b\xba\x10\xd7\xf9\xaf\x95\x06\xb5\xf1\xf7\x02\x73\xdb\x8d\x84\x77\x02\xb3\x73\xe7\x4e\x3a\x7e\xfc\xb8\x70\xbb\xdd\x6e\x95\xa9\xa9\x67\xd5\xb3\x6b\xc7\x9c\xff\xc9\x6d\xf3\xfe\x27\xba\x92\xee\xdd\x6e\x43\xb8\x52\x1e\x33\xad\x7a\x35\x33\x16\x8b\xc9\x70\x38\xcc\x96\xf7\xc0\x2d\xd3\xd3\xd0\x90\x68\xc7\x4d\x4c\x4c\xc8\x7d\xfb\xf6\x81\x99\x89\x05\x3c\x9a\x49\xed\x3d\x09\xcf\x2e\xcb\x62\x59\xd7\x90\x58\xcb\x50\x82\x49\x09\xe7\x5c\x5d\x23\xed\x99\xe7\x24\x21\x1b\x8d\x46\x6d\x4f\x45\xd4\xc9\xbf\x9e\xe8\x84\xe3\x8a\x7b\x84\xa9\x47\xeb\xc7\x32\x12\xde\x4e\xcc\x8e\x1d\x3b\xe8\xf0\xe1\xc3\xa5\x33\x6d\xd3\xae\xad\x9f\x1d\x8d\xfc\x5f\x07\x26\x83\xff\xa5\x3b\xe1\xf9\x5c\x6b\x46\x7b\xb8\x63\xd5\xfd\xe9\x2d\x4b\xde\x9f\xd9\xbc\xec\x3b\xb8\xe2\x2b\x5e\x49\x7a\xcd\x78\x28\x14\x32\xc3\xe1\x30\x4f\x4c\x4c\x10\x97\xbc\xea\x6e\x9a\x1e\x05\x6b\x2b\x8d\x6a\xe3\x2c\x6b\x28\x00\xa8\xab\x1e\x83\xb7\xcf\xfb\x1f\x29\x99\xd3\x51\x23\xd0\xea\x4b\x25\x10\xe0\xd3\x45\x57\x56\x93\x93\xf3\x4d\xc5\x51\x55\x55\x0b\x3e\x9f\x8f\xaf\x5f\xbf\xbe\x9e\x5e\xe2\x54\x66\x19\xf5\xc3\xdd\xc4\x00\x95\x8a\x93\x8e\xe7\x7b\x8e\x69\x6f\x6f\xc7\x63\x8f\x3d\x26\x88\xc8\x17\xc9\xa8\xdb\xbe\x70\xae\xf5\x2f\x23\x59\xd7\x31\x01\x72\x39\xbd\x0d\x09\x24\xbc\x45\xa5\x7f\x70\xc9\x7b\x72\x3e\xa0\x9f\x4d\xfa\xcc\xb9\x50\x28\x54\xcc\x64\x32\xbc\xb4\xb4\x44\x1b\xc9\xab\x16\xe3\x94\x40\x76\x20\xac\xe5\x3c\xd8\x3b\x74\x16\x15\x76\x05\x0b\xca\x40\x5b\x4a\x1b\xa8\x28\x42\x35\xbf\x06\x60\xcf\xcc\x57\x24\x11\xa1\x35\xa5\x6d\xbb\xba\x29\xf7\x72\xc1\xc5\xcb\xd1\x68\xd4\x98\x9b\x9b\xe3\x54\x2a\xe5\xe4\xf4\x5a\xbd\xc4\x79\x75\x72\xfe\xbd\xc0\xd4\x4a\x68\xa7\x7e\x74\x4f\x31\x27\x4e\x9c\x80\xd7\xeb\x75\xa9\x4c\x9b\x3e\x3b\x1a\xf9\x6f\xd1\xac\x76\xa8\xd4\x08\xf5\x97\x51\x0b\x26\x7f\xd7\xaa\x7b\xcf\xa5\xd6\xec\x0b\x45\x85\x53\xad\xad\xad\xc5\x8b\x17\x2f\x3a\x95\xf3\x0d\xd3\xe3\x1c\x42\xdb\xff\x6b\x9e\xc7\xc7\xc7\xa1\xeb\xba\x01\x20\x0b\xc2\xc2\x7b\x5d\xe9\xef\xe9\x0a\x67\x6d\x46\xa9\x74\x8a\xb5\x7c\x58\x0a\x36\xc6\x57\x54\xba\x8f\x5d\x0d\xfd\x8a\x90\x08\x13\x91\x73\x63\x4a\x67\xde\xa8\xb9\xaf\xf7\x7c\xaf\x31\x40\x7d\x89\x79\xd7\x31\x9d\x9d\x9d\x88\x44\x22\x82\x88\x7c\x3d\x09\xcf\xa1\xce\x55\xf7\xf1\x8d\x9c\xda\x1c\x2c\x28\xdb\xb7\xcd\xf9\x3f\x47\x44\x3e\x9f\xcf\xa7\x0e\x0e\x0e\xde\x12\x3d\xa2\x26\x52\xd6\x7b\xce\xe7\xf3\x18\x1d\x1d\x05\x4a\x4e\xea\xf1\x84\xd7\xb8\x78\xa9\x35\xfb\x36\x93\xd3\xf2\x6c\xc9\x1b\xb6\x89\xb4\x48\x65\x54\x61\x62\xcb\x9e\xcf\x6f\x9f\xf3\x3f\x09\x46\x20\x10\x08\xa8\xc7\x8e\x1d\xab\x47\x78\x6d\x21\xea\xd9\x21\xee\x25\x06\x58\xdb\xed\xde\x13\x8c\xbd\x15\x30\x33\xfb\xba\x12\xee\x23\x84\xd2\xc4\x68\xd9\xaf\xdb\x62\x1b\xa7\x88\xb5\xc3\x40\xdc\xf3\x29\x66\x0e\x02\x10\x03\x03\x03\xb7\x44\x4f\xed\x57\xdf\xf0\xf9\xc3\x0f\x3f\x44\xb1\x58\x34\x00\xa4\x41\x98\x39\xdb\x9d\xfa\x6e\x41\xe5\x74\xad\x47\x62\x89\xa9\xe0\xe0\x1f\x86\x13\x43\x0c\xf5\xc8\x78\xf3\x6f\x44\x33\xae\x9d\x44\xe4\xeb\xef\xef\x17\xbb\x77\xef\x76\xd2\xb2\x11\x43\xe2\xdd\xc6\xac\x6b\x4c\xbb\x97\x98\x4d\x9b\x36\xd9\xbb\x80\x78\xfc\xba\xd2\x69\x83\x37\xe2\x6d\xe8\xd3\x95\x76\xb2\xe6\xc1\xac\x7d\x31\x6f\x9a\x9e\xda\x46\x6b\x74\x45\x2e\x97\x93\xa3\xa3\xa3\xa0\xd2\xf6\xbd\xf1\x15\xaf\x31\x72\xbe\x3d\xfd\x9a\xbd\xc3\x96\x53\xdb\x81\xf3\xae\x3c\x2a\xab\x60\x3c\x86\xd2\xfe\x99\x8f\xc2\xff\xc5\x5d\x14\xdd\x44\xe4\x39\x70\xe0\x80\xe8\xed\xed\xad\x43\x63\x39\xdc\xc8\x7a\x7c\xa7\x31\x4e\x0b\xed\x8d\x7e\x77\x57\x31\x6e\xb7\xdb\xde\x58\x41\x2d\xa8\x32\x5f\x52\x5c\x1c\xbb\x86\xd4\x04\x7b\x39\x1c\x81\x90\x75\xc9\x34\x5b\x5b\xfc\x44\x22\x91\x5b\xa2\x47\xd4\x5c\x1b\xbd\x07\x00\xf1\xc1\x07\x1f\xa0\x58\x2c\x1a\xcc\x9c\x64\xf0\xcc\xd9\x9e\xd4\x77\x33\x9a\x19\x07\x2c\x26\xaf\x31\x24\x32\x73\x15\x13\x39\x31\x9b\xd2\xae\xc3\xc7\xaf\x84\xfe\x37\x45\x22\xaa\x28\x8a\x76\xe4\xc8\x11\x04\x83\xc1\x35\x79\xd6\xa3\xe3\x1e\x60\x6a\xdf\xdd\x37\x18\x5d\xd7\xed\x4d\x11\x8c\xd9\x60\x61\x8c\xc1\x65\x9d\xb3\xac\x95\x5a\x83\xe3\xd2\x82\x81\xca\xdf\x44\x24\x77\x1e\x25\xcf\x53\x69\x79\xa1\xde\x34\x3d\xeb\x1a\x12\x51\x63\x5c\x33\x0c\x43\x6a\x9a\x46\x1d\x1d\x1d\x4c\x44\x5c\x54\x98\x8a\x0a\xfb\xfb\xe3\x9e\x5d\xa2\x62\x3e\x5c\x63\x48\x84\x23\xe1\x32\x06\x84\x48\xc6\xb5\x4b\x30\xe5\xa6\x42\x85\x73\x2e\x4d\xd3\x63\xb1\x98\x39\x31\x31\x01\x5d\xd7\xeb\xe6\x5f\xe7\xfe\x47\xde\x90\x18\x08\x04\xa8\xbb\xbb\x9b\x00\xb8\xd3\x9a\xe9\xda\xbc\xe4\x3b\xec\x35\x94\x20\x01\x68\xe4\xb5\x48\x20\xe4\x55\x99\x7c\x75\x70\xf5\x4f\x0a\x2e\xfe\x88\x88\x56\x17\x16\x16\xcc\x3a\x46\xc5\x8f\x6f\x48\x44\x0d\x63\x4d\x4f\x4f\xf3\xd6\xad\x5b\x59\xd3\x34\x66\x66\x2c\xfb\x8b\xb9\xae\xa4\x7b\x67\x73\x5e\x8d\x36\x32\x24\x3a\xb5\xb7\x6a\x0c\x51\x7b\x4a\x3b\x50\x50\xe5\xcc\x7c\xb0\x78\x55\x73\x6b\xc5\xfe\xfe\x7e\xf3\xfc\xf9\xf3\xf5\xf2\x77\x0e\xf1\x9c\x71\x77\x0b\x83\x3a\x75\x65\x5f\xef\x19\x66\x6e\x6e\x4e\xee\xd9\xb3\x87\xac\xf9\x4a\x25\xe9\x35\x79\x70\xc9\xbb\x5f\x61\x52\x4a\xbd\x00\xaa\x57\xd4\x02\x90\x60\x9c\x89\xad\xfe\xfd\xb5\x70\xfe\x45\x10\xa6\x99\x39\xf3\x8d\x6f\x7c\xc3\xbc\x51\x5e\xf5\xe8\xd9\x90\x21\xd1\x71\x2f\x00\x70\xb1\x58\xa4\xbe\xbe\x3e\x93\x88\x4c\x16\xc0\x92\xbf\x98\x1d\x9e\xf7\x1d\x56\x20\xd4\x2a\x66\x01\x6a\x6e\xb0\xc6\xd8\x28\x40\x6a\x4f\xc2\xf3\xc9\x8c\xdb\x9c\x58\x0c\x14\xc7\x35\x4d\x33\x86\x87\x87\xe5\xc4\xc4\x04\xe9\xba\xfe\xcf\x86\xc4\x0d\x60\x62\xb1\x18\x7b\xbd\x5e\x49\x44\x94\xf0\x1a\xa9\x15\x9f\x51\xe8\x58\xd5\x36\x6b\x26\x79\x6c\x77\x1b\xdb\x1e\x54\x50\x39\x7b\x26\xb6\xfa\xdd\x0f\xba\xd2\x7f\x0b\xc2\x15\x66\x5e\x2e\x14\x0a\xc5\xd1\xd1\x51\xb2\x9c\xc6\x6e\x8a\x9e\x8d\x1a\x12\xab\x0c\x6d\x2b\x2b\x2b\xd4\xdd\xdd\xcd\x7e\xbf\x5f\x02\xe0\xac\x26\x8b\x04\x0a\x75\x27\xdc\xc3\xe5\x4d\x07\x2c\x78\x5d\x5d\xae\xc6\xd8\x28\x40\xae\xde\x15\xf7\xd1\x9c\x26\xaf\x2f\x36\x15\x27\x34\x4d\x33\x1c\x92\xe8\x9f\x0d\x89\x37\xc0\xac\xae\xae\x62\x68\x68\x88\x89\xc8\x60\x70\x71\xc5\x67\x2c\x5e\xde\x94\xbb\x92\x77\x49\x83\x00\x61\x08\x2e\xae\x78\x8d\xc5\x8b\xad\xd9\xf7\x5f\x19\x5c\xf9\xdb\xf1\x48\xfe\x79\x10\x3e\x62\xe6\x79\x00\xb9\xb7\xde\x7a\x8b\xad\x25\x3b\x37\x4d\x4f\x43\x8f\xc4\x9a\x67\x38\xdf\x31\x33\xe6\xe6\xe6\x30\x3c\x3c\x6c\x12\x91\x24\x22\x9e\x6f\xd2\x93\x9d\x49\xf7\xb6\xe6\xbc\x1a\x75\xc2\xc9\xc1\x28\x36\xdb\xd4\x8e\xd8\x08\x80\x60\x78\xfa\xe3\xde\xc7\x74\x45\xce\xce\x37\xe9\x63\x9a\xdb\x5d\xdc\xb6\x6d\x9b\x4c\xa5\x52\x48\x24\x12\xce\x01\x69\xed\x70\xcf\x8e\xbb\x9b\x18\xae\x79\x7f\x4f\x31\xa9\x54\x4a\x16\x8b\x45\x74\x77\x77\x1b\x44\x54\x60\x70\x5a\x57\xe5\xd2\x4c\x48\xff\x68\xb4\x3d\xfb\xf6\x87\x5d\xe9\xd7\x46\x3a\x32\xaf\x4c\xb6\x14\x4e\xe7\x5c\xe6\x07\x44\x74\xd5\x62\x9e\xec\xf5\xeb\xd7\x4d\x6b\xb5\xc5\x2d\xd1\xd3\xd0\x23\xb1\xc1\x73\x39\xe1\x7c\x3e\x2f\xdd\x6e\x37\x59\x87\x81\x18\x92\x98\xe7\x9b\xf4\xd4\x96\x45\xdf\x01\x55\x0a\xb7\xfd\xd3\xd2\x52\xa0\x0a\x3d\xb5\x5e\x8b\x4e\x0c\x81\x5c\xbd\x09\xcf\x23\x8a\xa4\xe2\x74\x73\x61\x44\xd5\x5c\x46\x7f\x7f\xbf\xcc\xe5\x72\xbc\xb4\xb4\x84\x06\xf4\xd8\x71\xb5\xcf\x77\x12\xe3\x14\xe7\xb7\x05\x13\x89\x44\x68\xf3\xe6\xcd\xe8\xe9\xe9\x41\xa1\x50\x40\x2e\x97\xbb\xa9\x74\x16\x16\x16\xc8\x34\x4d\xee\xea\xea\x32\x2c\x6f\xc5\x94\xb5\xc2\x64\x9e\x99\xa7\x89\x68\x92\x99\xaf\x59\xae\xaf\x71\x00\xb9\xeb\xd7\xaf\x9b\x2f\xbc\xf0\x02\xac\x89\xd4\x5b\x2a\x97\x93\x81\xea\x49\x9c\x7a\x9c\x58\x7e\x5e\x58\x58\x40\x57\x57\x97\xf4\xfb\xfd\x26\x00\x23\xef\xe2\x42\xd2\x63\xf0\xc0\xb2\xf7\x81\xd2\x16\xc1\xa5\xfc\xc8\xf9\x6b\x8b\x8c\x8a\x3b\x48\x35\x86\x00\x57\x57\xd2\x7d\x34\x94\x57\x43\x53\xa1\xc2\x79\xa9\x52\xae\xb7\xb7\xd7\x0c\x85\x42\x3c\x3d\x3d\x6d\xf7\xd3\xb5\xfa\x9a\x4d\xab\xd3\x86\x73\x3b\x31\xce\xbe\xbf\x1e\xf6\x96\x31\x3e\x9f\x8f\x0e\x1d\x3a\x44\x47\x8f\x1e\x45\x6f\x6f\xaf\xda\xd1\xd1\x21\xb6\x6f\xdf\x8e\x96\x96\x16\x4c\x4e\x4e\x42\x4a\xb9\xe1\xbc\xe6\xe7\xe7\x71\xf6\xec\x59\xb3\xb3\xb3\xd3\x0c\x04\x02\x05\x00\x39\x22\x4a\x5a\x4b\x92\x56\x2c\xa6\xca\x66\xb3\xd9\xe2\xd7\xbe\xf6\x35\xf3\xea\xd5\xab\xe4\x58\x61\x72\x4b\xe5\x5a\xd7\x23\x11\xf5\x39\xb1\x7c\x35\x4d\x93\x17\x17\x17\x69\x70\x70\xd0\x54\x55\xd5\x44\x69\x5d\x51\xca\x6d\xd2\xa6\x8e\x94\xdb\x9a\x6c\xb5\x86\x90\xeb\x78\x2d\xd6\x62\x08\x44\x91\x8c\x6b\x6f\xef\x8a\x67\xd7\x5c\x50\x3f\x97\xd3\x64\x32\x1c\x09\x9b\x5b\xb6\x6c\x91\xc9\x64\x92\x56\x57\x57\xeb\x35\x7c\x23\x23\xe1\xed\xc0\xd4\xd3\x03\x9c\x9f\xc4\x2d\x61\xba\xba\xba\xe8\xe4\xc9\x93\xe8\xec\xec\x54\x09\xe4\xeb\x5e\x75\x0f\x6d\x9f\xf7\x3f\x34\x1d\xd2\xaf\x87\xc3\x61\x19\x8d\x46\xe5\x95\x2b\x57\x6e\x3a\xaf\x4b\x97\x2e\xf1\xdc\xdc\x1c\x0c\xc3\x30\x93\xc9\xa4\xe1\x72\xb9\x8a\xd3\xd3\xd3\xc6\xcc\xcc\x8c\xf9\xe1\x87\x1f\xb2\xe3\x1c\xf8\x8f\x5d\xae\x75\x3d\x12\x1d\xf1\x70\xdc\x3b\xb1\x22\x97\xcb\xa1\x58\x2c\xa2\xa7\xa7\xc7\x24\xa2\x22\x08\xe6\x4c\xb3\xbe\x35\xd6\xea\x8f\x00\x00\x0d\x00\xff\x0d\x00\xf2\xea\x49\x44\x41\x54\x14\xcd\x68\x03\x2d\x39\xb5\xcd\x66\xa2\x32\x45\x75\xbc\x16\xab\xf6\xe1\x71\xe8\x48\x7e\x5d\xed\x1f\x5a\xf4\x7e\x46\x57\xe5\xc2\xa2\xbf\x38\xe5\x72\x6b\xe6\xe6\xcd\x9b\x65\x20\x10\xc0\xb5\x6b\xd7\x6a\x69\xac\xa2\xab\x41\x39\x6e\x15\x53\xfb\xae\x9e\xa4\xde\x30\xc6\xeb\xf5\xd2\xd1\xa3\x47\x71\xf0\xe0\x41\xa1\x69\x9a\x5b\x48\x84\x76\xcf\x06\x7e\xec\xd3\x97\xc2\x7f\xd2\x93\xf0\xfc\xe4\x52\xa0\xf8\x5e\xdc\x5b\x9c\x6b\x6e\x6e\x36\x54\x55\x65\xc7\x51\x03\x1b\xce\x2b\x95\x4a\x61\x72\x72\x12\xe3\xe3\xe3\x38\x7f\xfe\x3c\xc6\xc6\xc6\x30\x39\x39\x09\xeb\x08\xa9\x9b\xa6\xb9\x11\xe6\xa6\x0c\x89\x8e\x67\x72\xfe\x6e\x71\x71\x91\x23\x91\x08\x5a\x5a\x5a\x4c\x00\x86\x14\x28\x4e\x86\xf2\x8b\x3d\x09\xcf\x0e\xbf\xae\x34\xd7\xa3\xa0\x91\xb1\xd1\xea\xdc\x60\xcb\x2b\x55\x8a\xe6\xfe\xb8\xe7\xb3\xd1\xac\xab\x63\xbe\x49\xff\x48\x57\x39\x17\xdd\x14\x35\x77\xef\xde\xcd\x00\xec\xa5\xc5\x4e\x1a\x6b\xef\xeb\x95\xe3\x66\x31\xb7\xcd\x00\xb8\x6f\xdf\x3e\x7a\xf4\xd1\x47\xd1\xda\xda\xaa\x12\xc8\xdf\x9c\x57\x62\x9f\xf9\x28\xf2\x9f\x1f\x9c\x0e\xfc\x47\xa5\xb4\x75\x9d\xbb\x33\xa9\xed\x1b\x8f\xe6\x5e\x2d\xb8\x38\xd1\xd6\xd6\x66\x2c\x2f\x2f\xb3\x75\x7c\xd4\x6d\xa7\xe7\xe3\x62\x6e\xda\x90\x58\xe7\x5e\x00\xe0\xb1\xb1\x31\xde\xb2\x65\x0b\xbb\xdd\x6e\x03\x40\xd1\x50\x58\x9f\x0a\x15\x96\x63\x71\xcf\x6e\x77\x51\xf1\x95\x1d\x9b\x6e\x60\x6c\xac\xc8\x2a\xe7\x29\x5e\xa4\x84\xb3\xae\x07\xb6\x2e\xf8\x4e\xb0\xe0\xe4\x92\xbf\x38\x4d\xaa\x30\xbb\xba\xba\xcc\x2d\x5b\xb6\xa0\x58\x2c\xd2\xf2\xf2\xb2\xf3\x23\x80\xe3\xbe\xb6\x1c\xb7\x8a\x01\xd6\xd6\xd5\x86\x0d\x6e\x43\x43\x43\x74\xe2\xc4\x09\xea\xef\xef\x57\x15\x45\xf1\xb8\xa4\x88\x3c\x30\x1d\xf8\xf1\xcf\x7c\x14\xf9\xfd\x4d\x19\xd7\x51\x01\x52\xec\xcf\x5d\x33\x45\xa4\x25\xab\xb6\x5d\x8e\xe6\x4e\x49\xe2\x5c\x5f\x5f\x9f\xf1\xd1\x47\x1f\x91\x61\x18\x1b\xca\xeb\x6e\x62\x6e\xc9\x90\xe8\xc0\x54\xe9\x0a\xe3\xe3\xe3\xb4\x79\xf3\x66\x53\xd3\x34\x83\x99\xf5\x82\x8b\x73\x53\xa1\xc2\xd2\xe6\x65\xef\x6e\xcd\xde\x1f\x79\x1d\xaf\xc5\x4a\x20\xab\x6b\xab\xbc\x22\x66\x68\x52\xb4\xf4\xad\x78\x4e\x0e\x2c\x7b\xf7\x65\x5d\x72\x7e\xd5\x6b\xac\xb8\xdc\x9a\xd9\xd7\xd7\x27\x77\xef\xde\x0d\x4d\xd3\x68\x7a\x7a\xda\x49\xb3\x5d\xf0\x7b\x66\x48\xdc\xbf\x7f\x3f\x7d\xfa\xd3\x9f\xa6\xcd\x9b\x37\x0b\xb7\xdb\xed\x16\x12\xa1\xcd\x71\xdf\xc3\x8f\x5f\x0c\xff\xb7\x6d\x0b\xfe\x7f\xa7\x49\xd1\x62\x4b\x5d\x67\x55\x34\xe7\xd5\x2d\x00\xd2\x53\x21\xfd\xbc\x10\x42\xef\xe8\xe8\x30\x2f\x5e\xbc\x58\x9b\xdf\x4d\xd3\x73\xbb\x31\xb7\x64\x48\xac\x73\x15\x00\xa8\x58\x2c\xca\xd5\xd5\x55\x8a\xc5\x62\x06\x11\x19\x44\xa4\x67\x35\x99\x9d\x0b\x16\x92\x7d\x71\xef\x0e\xcd\x14\xee\x72\x0e\x00\x1a\x1b\x1b\x2b\xdc\x53\xd6\x89\x2a\x7b\x32\x93\xbf\xa8\xf4\x6f\x59\xf2\x7e\xa1\x3b\xe1\xde\x9e\xd3\xe4\x62\xd2\x6b\x26\x14\x55\x41\x5b\x5b\x1b\xef\xdd\xbb\x97\x23\x91\x08\x09\x21\xc8\xda\x0c\xa0\x1e\xad\x65\x9a\xd7\x29\x4f\x2d\x66\xc3\xc6\xbd\x81\x81\x01\xb2\xba\x2a\xea\xea\xea\x52\x15\x45\xf1\x08\x50\xb0\x6f\xc5\x73\xf0\xb1\x4b\x2d\xff\x79\xdf\x54\xd3\xff\xee\xd7\x95\xcd\xd6\x96\xe5\x35\x99\x33\xac\xfd\x19\xa9\x3d\xe5\xde\xbb\x10\xd0\xcf\x26\xbc\xc6\x54\x20\x10\xd0\x5d\x2e\x17\xa6\xa6\xa6\x6e\x9a\x9e\x3b\x89\x21\xeb\xe1\xb6\x86\x9e\x9e\x1e\x7c\xfa\xd3\x9f\x16\xaa\xaa\x7a\x00\xb4\x32\xf3\xd0\xa6\x8c\xf6\xc9\xa7\x2e\x44\x7f\x21\x98\x57\xc2\x95\x0d\xa9\x4a\xa1\x5c\x71\x55\x55\x59\xea\xc4\x9c\xce\x98\x15\xae\xae\x60\x18\xac\x2f\x06\x8a\xaf\x7d\xd0\x95\xfe\xf3\xb1\x48\xee\x74\x5e\x95\x09\x10\xf2\xcc\x6c\x00\x90\x63\x63\x63\x98\x9d\x9d\xc5\xf4\xf4\x34\x56\x57\x57\xed\x04\xea\xb9\x28\xd4\xc6\xad\x87\xb1\xbf\x42\x01\x00\xcd\xcd\xcd\xe8\xec\xec\x44\x47\x47\x07\x62\xb1\x18\x14\x45\x11\x28\x1d\x78\xa7\x79\x0c\x11\x8e\x2d\x7b\x0e\x3d\x38\xdd\xf4\x3f\x6f\x4a\xbb\x8e\x11\xec\x23\x44\x2b\xdd\x78\x75\xb9\x9c\x81\x90\x76\x1b\x57\xbe\xf1\xc0\xc2\x97\x12\x1e\x63\x84\x88\xb2\xcf\x3f\xff\xbc\x1c\x1f\x1f\x5f\x97\x9e\x8d\xd0\x7c\xbb\x30\x4e\x06\xaa\xfd\x71\xbd\xe7\x7a\x15\x2c\xeb\x60\xe4\xfe\xfd\xfb\xc5\x9e\x3d\x7b\x04\x4a\x0e\x4b\xad\x00\x06\x23\x59\xd7\x91\xcf\x8e\x46\xfe\x4d\x34\xe3\xea\x74\x32\x8b\xfd\x19\x96\xaa\xcf\x62\x19\x46\x79\xfe\xc6\xd9\xa5\x35\xc6\xc0\xc8\x68\xe6\xa5\xab\x91\xfc\x3f\x5c\x6a\xcd\x7e\x6f\xae\x49\x1f\x33\x05\x67\x41\xa5\xdd\xb5\x98\x59\x66\x32\x19\x39\x3b\x3b\x8b\x5c\x2e\x87\xd9\xd9\x59\xa4\xd3\x69\x2c\x2f\x2f\x4b\x45\x51\x44\x9d\xcd\x03\xaa\xca\x65\x63\x5a\x5a\x5a\x44\x30\xf8\xff\xb5\x77\x75\xbd\x6d\x23\x57\xf4\xdc\x21\x45\x51\xb2\x2c\x5b\x8e\x62\xcb\xb2\xd7\x71\xec\x24\x9b\xe6\xab\x4e\xda\x8d\xf7\x61\x37\x09\x36\x41\x80\x6d\x81\xa2\x0f\x7d\xe9\xf3\xfe\x82\xfd\x0f\xfd\x0f\x7d\x2c\xfa\x10\xa0\x2d\x90\xb6\xd8\x00\x05\xda\xa4\x68\x83\x7d\x08\x62\xac\x8d\x38\x71\x16\x1b\x7f\x24\x8e\x6d\xf8\x23\x96\x65\x59\xa6\x29\x4a\xa4\x66\xfa\x40\x52\xa2\x65\x52\x91\x1c\x39\x71\x93\xbd\x80\x40\x89\x73\x34\x43\xce\x5c\xdd\x19\x1e\x52\xf7\xc4\xd1\xd9\xd9\x89\x44\x22\x81\xde\xde\x5e\xb4\xb7\xb7\x33\xc0\xc9\x45\x08\x52\x24\x81\x68\xcf\xb6\x32\x78\xea\x55\xf4\x97\xc3\x1b\x91\x5f\xc7\x8a\xd2\x69\x00\xf2\xeb\x73\x12\xfa\x9e\x17\x16\x12\xc5\x6f\xbe\x39\xbb\xfe\xb5\xc5\xc4\xaa\xae\xeb\xc6\xad\x5b\xb7\x82\x8e\xd5\x77\x2c\x0e\x12\x73\x20\x11\xc8\xad\x7c\x74\x74\x14\x17\x2e\x5c\x60\x00\x54\xd8\xd9\x24\x4e\xb4\x99\xd2\xa5\x9b\x3f\x74\x7d\x75\x6c\x53\x3d\x65\xf7\x1e\x01\xce\x73\x43\xde\x64\x33\x95\xe4\x9d\xce\x5f\xa7\xed\x8e\x75\xa7\x36\x51\x17\x23\x08\xc6\xb6\x5a\x7e\x3c\xdf\x65\xdc\x7b\x99\x28\x7c\xbb\xd6\x5e\x9a\xde\x51\x78\x4e\x40\x94\xdc\x6c\x5d\x80\xad\x2b\xe6\x12\x69\x6b\x6b\x6b\xa8\xf9\xcb\x75\xf5\x58\x88\x90\x4a\xa5\x5c\x46\x9d\x39\x79\x0b\x99\xa3\x0d\x26\x13\x48\x89\x98\x2c\xde\xb3\xad\x9c\x38\xb6\xa9\x7e\x3e\x98\x55\x6f\x74\x18\xf2\x25\x12\xa4\x56\x83\xa5\x3d\x35\xb9\x17\x0a\x15\x45\x1f\xa7\xa8\x3e\x46\x60\x6c\x20\xff\xbb\x07\x83\xf9\xdf\x83\x90\x79\xfe\xfc\xb9\x75\xef\xde\x3d\xef\x0f\xbc\x76\xc0\xbd\xfb\x0f\x14\x43\xa8\xef\x81\xaf\xf3\x44\xd7\x02\x31\xa3\xa3\xa3\xec\xfc\xf9\xf3\x8c\x31\xa6\xc2\x4e\x25\x32\x18\xb2\xe8\xc2\x67\xcf\x3b\x7e\x7b\x7e\x35\xf6\x29\x13\xc4\x04\x76\x5f\x9d\x79\xad\x9a\x62\xd7\xe9\x60\xbf\x15\x53\x00\xc6\x79\xb0\xaa\x54\x94\xc5\x72\x2e\x62\x4e\xad\xc4\x4b\x13\x6b\xed\xa5\xc9\xcd\xa8\x39\x9f\x8b\x58\x99\x32\x13\x46\x99\x50\x02\x81\x7b\xce\xa7\xd6\x8b\x98\xd3\x06\x23\x10\x63\x02\xb2\xc4\x49\x8d\x17\xe5\xae\x84\x2e\x0f\xf6\x6c\x2b\xe7\xd2\x5b\xe1\x4f\x12\x05\xf9\x9c\x6a\xb2\x01\x02\x14\x3b\x5a\xd6\x6a\x41\xef\x3e\x3a\xaf\x03\x35\x82\xb1\x18\xcf\xff\xe3\xcc\xc6\x57\x2f\x8e\x18\xf7\x84\x10\xda\x9d\x3b\x77\xb8\x43\x61\x04\x0d\x3c\x50\x7f\x2c\x5b\x82\xa9\x8d\x40\x7e\xa0\x20\x6b\x04\x03\xc0\xd6\x0e\xbd\x71\xe3\x06\x24\x49\x52\x89\xa8\x13\xc0\x00\x09\x9c\x3e\xb3\xda\xf6\xe5\xe7\x73\x9d\xbf\x52\x3d\x0a\x36\x5e\xe1\xfb\xbd\x6b\xa2\x6a\x58\xdf\x3f\x46\x40\x00\xba\x29\x89\x8c\x1e\x2a\x2f\x6b\x6a\x79\xb5\x20\xf3\x57\x46\x88\x67\x0b\xa1\xf2\x96\x25\x09\xc3\xd1\x49\xe3\x24\x20\xcb\x9c\x54\xd5\x64\x1d\xaa\xc5\x3a\x23\xa6\xd4\x1d\x2b\x4a\xa9\x58\x51\x4a\xcb\x9c\xba\x99\x40\xb4\xda\x07\x3e\xeb\xf1\x1a\x29\xac\x37\xc5\xbc\x4c\x18\x7f\xf9\xdb\xf9\xf5\xaf\x01\x64\x26\x27\x27\xad\xb1\xb1\xb1\x46\xba\xff\x40\x6d\x8f\x6a\x73\x8d\xf9\x79\xa1\xfb\xbe\xb6\xbc\x16\x53\xb1\x85\x85\x05\xdc\xbd\x7b\x97\x5d\xbf\x7e\xdd\x50\x14\x25\x0b\xc0\x12\x04\xe3\x69\x6a\x47\xcb\xb4\x99\xcb\x5f\xcc\x24\x7e\xd3\xad\x85\xfa\x5d\x0a\x11\xa8\x5e\x9b\xed\xfe\xdf\x87\x67\xda\xda\x37\x86\x40\x40\x34\x5c\xa6\x01\xa5\xcc\x06\x12\x46\xc8\x29\xaf\x6f\xde\x75\x9a\x3b\xdb\xb8\x8d\x56\xf7\x91\x83\xd9\x9d\x0a\xf0\x4d\x31\x16\x83\xf5\xa8\x6f\xfb\x5f\x63\xc7\xf2\x7f\xa4\xdd\x51\x3a\x68\xec\x7c\xc7\xe1\x20\x30\x2d\x23\x12\x7d\xf6\x7b\xcb\x58\x3e\x9f\xe7\x8f\x1e\x3d\x12\x27\x4f\x9e\xe4\xe1\x70\xb8\x04\xa0\x00\xc2\xb6\xa6\x58\xd9\x99\x6e\x7d\x4e\xe6\xac\xfd\xa8\xa6\xf4\x4a\x20\xe6\x1e\xc6\xde\xf8\x52\x6d\xa4\xd5\x18\x78\xca\xc8\xe7\x55\x09\x04\x9e\xed\xee\x7a\x5a\x8f\x01\x01\xb9\x88\x99\xb9\xfb\x71\xf6\x4f\x8f\xd3\x3b\x7f\x2d\x4b\x78\x0e\x20\x23\x84\x28\xde\xb9\x73\xc7\xef\x09\x42\x77\xeb\x3b\x06\x07\x81\x69\x29\x91\xe8\xd3\xe0\x9e\xf5\xd2\xd4\xd4\x94\xe8\xea\xea\x12\x89\x44\xa2\x24\x84\x28\x10\x91\x56\x66\xc8\xbf\x4c\x18\x2f\x56\x3b\x8a\x1b\x47\xb5\x50\x5f\xc4\x94\x62\xbb\xd2\xc7\x00\x7b\x7b\x1b\xd5\x2b\xb3\x83\xc7\x38\x65\xb4\x7b\xeb\xb7\x7e\x69\x15\xa6\x2c\x09\xeb\x69\x6a\x67\xec\x9f\xa7\xb3\x7f\xc8\xc4\xcc\x6f\x61\x3f\x00\xb6\x0a\x5b\x52\xa1\xec\x24\x2d\xad\x1d\x03\xbf\x40\x7a\xa0\x98\x96\x12\x89\xf0\x77\x32\x51\x5b\xcf\xfc\xfc\x3c\x15\x8b\x45\xd1\xdf\xdf\x5f\x26\xa2\x02\x80\x1d\x10\xb4\xad\x48\x79\xed\xd9\x51\x7d\xa6\x4c\x90\xbb\x77\x94\x3e\x49\x90\x54\x4b\x24\x7a\x97\xc8\x41\x64\x63\xab\x31\x8d\xaa\x2d\xb7\x0a\xf3\x2a\x66\x2e\xdf\xfd\x38\xfb\xe7\xc7\x7d\xda\xdf\x4b\x12\x7f\x04\x60\x96\x88\xd6\x00\xec\x6c\x6e\x6e\x5a\xb7\x6f\xdf\xf6\xb2\xe6\xb5\x63\x40\x08\x1e\x8b\xff\x0f\x22\x11\x0d\x2e\xc2\x93\xc9\x24\xbb\x79\xf3\x26\x62\xb1\x98\x2c\x84\x50\x9d\x04\x92\xfd\x04\x1a\xe8\x2c\xc8\x3f\xfd\xf4\x65\xfc\x17\x27\xd6\xa3\x67\x64\x01\xd9\x9d\x8a\x6c\xf3\x4e\x3b\xaf\x27\x1b\xdf\x1c\xe3\xb5\xea\x74\xd7\x5a\x8c\xc0\x76\xb8\x9c\xfb\x6e\x20\xff\xdf\xa7\x3d\x3b\xff\x29\x4b\x98\x05\xb0\x00\xe0\x15\x00\x8d\x73\x5e\x7a\xf6\xec\x19\x77\xd4\x9a\x2b\x7d\x88\xf7\x95\x48\x0c\xd8\xfa\x62\xae\x5e\xbd\xca\x4e\x9d\x3a\x65\x73\x2a\x44\x31\xd8\x9c\x51\x3f\x09\x0c\xf6\x6d\x85\x3f\xf9\xf9\x42\xfb\x17\x1f\xe5\xd4\x21\x26\xc0\xdc\x2e\xdf\x1f\xd9\xd8\x1a\x4c\x23\x04\x60\xe3\x18\x01\x3d\xc4\xb5\x27\x69\x6d\x6c\x32\xad\xfd\xbb\x10\xe2\xd3\x02\x62\x81\x6c\x6d\xb1\x1c\x11\x19\xba\xae\x5b\xf7\xef\xdf\xc7\xe2\xe2\x62\x50\xdf\xbf\x9f\x44\x62\x33\x98\xa3\x47\x8f\xe2\xca\x95\x2b\x38\x72\xe4\x08\x13\x42\xa8\xb0\xb5\xae\x92\x44\x94\x76\x1c\xe9\xe2\xa5\xc5\xf6\x6b\x03\xb9\xf0\x90\xc4\xed\xdc\x8e\x6f\x42\x36\x36\x85\xd9\x37\x01\x58\x07\xe3\x44\x9c\xef\x53\x3b\x13\x4f\x7a\xb5\xfb\x9a\x52\x9e\x25\x5b\x83\x63\x15\x40\x96\x88\x74\xd3\x34\x4b\xb3\xb3\xb3\x78\xf0\xe0\x01\x9c\x6c\xb1\x6f\x95\x24\x6c\x04\x43\xa8\xef\x81\x6f\x4c\x24\x36\x58\x0f\x03\xc0\x19\x63\x6c\x64\x64\x04\xe7\xce\x9d\x83\xaa\xaa\x32\x6c\x06\x3b\x0e\x3b\x22\xa5\x49\xa0\x3f\xa9\x85\x7e\x72\x61\x39\xf6\xd9\xf0\x46\xe4\x4c\xc4\x64\x51\x77\xb0\xf7\x4b\x36\x36\x8a\xa9\x44\x93\x26\x09\x40\xda\x55\x2e\xc0\x09\x3c\xd3\x66\xae\x3e\xed\xdd\xf9\x6e\x3a\xa9\x3f\x34\x42\x7c\x1e\x84\x25\x00\xab\x00\xb2\xb0\x75\x29\x4a\x2b\x2b\x2b\xfc\xe1\xc3\x87\x58\x5f\x5f\x7f\x67\x24\x61\x23\x98\xda\x08\x74\x20\x44\xe2\x3e\x8c\x5f\xbb\x76\x8d\x0d\x0f\x0f\x33\x49\x92\x64\x21\x84\x02\x20\x4e\x44\x5d\x42\x88\x6e\x02\xa5\xa3\x26\x1b\x1c\xce\x44\x7e\x76\x7a\xad\x6d\xa4\x47\x53\xd2\x12\xb7\xd7\x49\x95\xc5\x2a\xdc\xc8\x52\xbb\x4c\x45\xd3\x18\xdf\x6b\x87\x26\x49\x42\x5d\xe1\xda\x8b\xae\xc2\xf4\x0f\x3d\xfa\xc4\x72\xbc\xf8\x84\x33\x2c\x3b\x8a\x3f\x19\x21\x44\x0e\xb6\xdc\x42\x29\x9f\xcf\xf3\x89\x89\x09\xcc\xcd\xcd\x05\xde\x5a\x39\x4c\xb6\xf7\x67\x58\x3f\xca\xf8\x85\x35\xbf\xef\xd6\xb3\xd7\x61\x2a\xed\x77\x74\x74\x60\x64\x64\x04\xc3\xc3\xc3\x4c\x96\x65\x19\xf6\x9d\xec\x28\xec\x0c\xed\x49\x00\xdd\xc4\x91\x4a\x14\xe4\xe1\xe3\x1b\x91\x73\xc3\x1b\x91\xd3\xc9\x9d\x50\x2a\x54\x26\xc5\x75\x26\xd7\xea\x45\x8c\x86\x30\xd5\xe5\xd1\xae\xcf\x41\x18\x01\xc1\x75\x85\x6b\x4b\x9d\xc6\xfc\xdc\x91\xc2\xf7\x8b\x89\xe2\x53\x43\xe6\x4b\x20\xac\xc2\x56\xfe\xc9\x02\xc8\x03\xd0\x01\x94\x36\x37\x37\xf9\xe4\xe4\x24\xa6\xa7\xa7\xdf\x0a\x01\xd8\x2a\x4c\xbd\x29\xac\xb6\x82\x66\xdf\x7b\x3f\x37\x8b\xd9\x73\x02\xce\x42\x1b\x64\x4b\x40\xca\xb0\x1d\x29\x06\xdb\x99\xba\x84\x10\x49\x26\xa8\xbb\xbd\x28\x7d\xd4\x9b\x0f\x0f\x0d\x6c\xaa\x27\x52\xdb\x4a\x7f\x87\x21\x77\x4a\xdc\xb9\x13\x0e\xdf\x89\x0b\x00\xf9\xc4\xa0\xbd\x16\x44\x00\xda\xb5\x08\x14\x65\x6e\x64\xda\xcc\x57\xcb\x1d\xc5\xf9\x85\xce\xe2\xec\x7a\xcc\x9c\x2b\xca\x7c\x15\x84\x0c\x6c\x02\x30\x4b\x44\x79\x61\x0b\xf0\x1a\x42\x08\x6b\x7b\x7b\x9b\x8f\x8f\x8f\x63\x66\x66\x26\xe8\xdc\x1b\xe9\x9f\x77\x86\xa9\x17\x81\xfc\xac\x91\x86\x82\xb0\xcd\x62\x7c\xcb\x46\x46\x46\xd8\xd9\xb3\x67\xe1\xa8\x10\xbb\x51\x49\x85\xed\x4c\x71\x87\x0a\x88\x13\xa8\x8b\x09\x74\xb6\x95\xa4\x9e\xe4\x4e\xa8\x3f\xa9\x29\xe9\xa4\x2e\x77\x27\xf4\x50\x32\x5a\x92\x62\x8a\x45\x8a\xcc\x49\xa6\xca\x34\xec\x89\x58\x35\x1e\xe2\xcd\xbc\xc6\x09\xdc\x62\xc2\x32\x42\x5c\xdf\x0e\x97\xf3\x9b\x11\x33\xb3\x1e\x2b\xad\xae\xc7\xcc\xa5\x6c\xd4\x5c\x2c\xc9\x22\x2b\x80\x2c\x08\x39\xe7\x2a\x2a\x2f\x84\xc8\xc3\x96\x15\x30\x84\x10\x96\x65\x59\xd6\xda\xda\x1a\xa6\xa6\xa6\xdc\x8c\xf2\x41\x76\xa8\xa2\x8d\x1f\x86\x7c\x76\xb6\x7a\x81\xdc\x48\x3d\x4d\xb5\xc5\x18\xc3\xc0\xc0\x00\x86\x86\x86\x70\xfc\xf8\x71\x30\xc6\x18\x11\xc9\x8e\xb6\xa7\x22\x84\x88\x12\x51\x14\x76\x94\x8a\x03\x88\x09\x21\x62\x04\x8a\x12\x10\x0b\x95\x29\x16\xb6\x58\x47\x5b\x49\x8a\xab\x26\x8b\x85\x2d\x16\x55\x2d\x16\x0d\x95\x49\x91\x38\xc9\x92\xb0\x6f\xa7\x94\x09\x56\x99\x09\xab\x28\x73\xa3\x28\x73\xc3\x90\xb9\xae\x2b\x3c\x5f\x08\xf1\x7c\x51\xe6\x5b\x16\x13\x1a\x20\x74\xd8\x52\x03\x1a\xec\x29\x49\x83\x3d\x2d\xe9\x00\x0c\xb2\xc5\xed\x4a\x44\xc4\xb3\xd9\x2c\x7f\xf1\xe2\x05\xc6\xc7\xc7\xeb\xad\x35\xeb\xf5\xef\xa1\xc3\x1c\x9a\xcb\xf8\x06\x31\xbe\x27\x38\x34\x34\xc4\x86\x86\x86\x90\x4e\xa7\x11\x0e\x87\x99\x9b\x70\xc9\x33\xdd\xa9\x00\x14\x87\xac\x74\xb7\xae\x98\xac\xe2\x60\x64\x00\xb2\x93\xed\xab\x7a\x25\x55\x7d\x76\xc8\x82\xad\x66\xe3\xbe\x0c\x21\x84\xeb\x20\x06\x80\x12\x11\xb9\x65\x96\x73\xac\x3c\x93\xc9\x70\x57\x2a\xca\xc9\xd0\xef\x3d\x0f\xef\xb4\x1e\x74\xee\x87\x1a\x73\x28\x88\xc4\x56\x61\x5c\x25\xe4\x8b\x17\x2f\xb2\xde\xde\x5e\xa4\x52\x29\x57\x77\xdd\x7d\xf8\xcb\x55\x2f\x76\x1d\xc5\x75\x1c\x2f\x06\x0e\xc6\x4d\xdc\x04\x00\xae\x64\xa4\xdf\xd6\x75\x2e\xce\x39\x87\xa6\x69\x3c\x9b\xcd\x62\x61\x61\x01\x4b\x4b\x4b\x08\x50\x64\x7e\x27\xfd\x73\x10\x98\xc3\x18\x81\xbc\x8e\x1b\x74\x22\x68\x14\xe3\x8a\x88\x5c\xbe\x7c\x99\xf5\xf5\xf5\x81\x88\xe0\xa4\x73\xab\x44\x1a\xf7\xfb\xce\x67\xef\x7e\x38\x4e\x52\x79\x0f\xd8\x3c\x8f\x65\x59\x7c\x6b\x6b\x0b\xb9\x5c\x0e\x9a\xa6\x61\x65\x65\x05\x8b\x8b\x8b\xf5\x8e\xdd\xbb\xff\xbd\xc1\x1c\x2a\x22\xb1\xce\xc1\xfa\xb5\xd9\x32\x8c\x73\x1b\x05\xf1\x78\xdc\x4d\xb3\x57\xb1\x4c\x26\x03\xc3\x30\x00\x00\xd3\xd3\xd3\x15\x31\x3a\x47\x31\x07\xd8\xdb\x0f\x41\xe7\xfc\x5e\x62\x0e\x2d\x91\x18\x50\xb7\x9f\x23\xbe\x0d\xcc\x8f\xd6\x84\xb1\x9a\x6d\xed\x7e\xbf\xb2\xd7\xed\x6f\x06\xd3\x4c\xfb\x6f\x13\x53\xcf\x3e\x64\xcc\x9e\x4e\x0c\xea\xbc\x66\xdf\x37\x52\x67\x10\x26\x08\xeb\x67\xef\x02\xd3\xc8\x31\x7f\x88\x98\xfa\x05\xcd\x54\xd2\x02\xcc\xdb\x68\xa3\x19\x4c\x2d\xf6\x47\x0c\xaa\x97\xb0\xb5\x0b\x4f\xbf\x2f\x35\x8a\xa9\xad\x8f\xef\x13\xe3\xd7\x46\xd0\x22\xef\x6d\x60\x6a\x8f\xb9\xb6\x33\x3f\x48\xcc\xff\x00\xaf\x7b\x44\x0e\x96\x2e\xd3\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe1\xff\xf0\x7b\x3b\x4e\x00\x00") -func web_uiStaticMstile144x144PngBytes() ([]byte, error) { +func web_uiV1StaticMstile144x144PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticMstile144x144Png, - "web_ui/static/mstile-144x144.png", + _web_uiV1StaticMstile144x144Png, + "web_ui/v1/static/mstile-144x144.png", ) } -func web_uiStaticMstile144x144Png() (*asset, error) { - bytes, err := web_uiStaticMstile144x144PngBytes() +func web_uiV1StaticMstile144x144Png() (*asset, error) { + bytes, err := web_uiV1StaticMstile144x144PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/mstile-144x144.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/mstile-144x144.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticMstile150x150Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x2b\x40\xd4\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x01\x0e\x00\x00\x01\x0e\x08\x06\x00\x00\x00\x78\xb1\xf9\xa5\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xd4\xbd\x69\x90\x24\xc7\x75\x26\xf8\xb9\x67\x64\x64\x56\x56\x56\x76\x76\xdd\x7d\x1f\xec\x1b\x40\xa3\x01\x36\x71\x11\x60\x13\x4d\x11\xa4\x00\x88\x12\x48\xd1\x48\x89\x43\xea\x22\x60\xab\x5d\x1b\x1b\x1b\xb3\x5d\x93\xc9\xd6\xc6\xf4\x63\x77\x6c\x6d\x7f\xec\xef\xb5\x05\x45\xdd\xd4\x90\x5a\x91\x14\x25\x82\x04\x41\x02\x24\x0e\x02\x20\xae\x06\x40\xa0\x81\xbe\x0b\x8d\x3e\xaa\xeb\x3e\xb2\xb2\xb2\x32\x23\xdc\xf7\x47\x84\x47\x7a\xbc\x74\xf7\x88\x6a\x60\x66\x77\xdd\xac\x2a\x23\xdc\x9f\x3f\x7f\xfe\xc2\xfd\x5d\xee\xe1\x01\x00\x3c\xfe\xd3\x93\x9e\xc7\x49\x3e\x85\x31\xd5\xa7\xc9\x56\x6e\x6a\xc7\xd4\xae\x0b\x5f\x56\xfb\x26\xbc\x94\x6e\x5b\x1f\x5d\xf4\xe6\xa1\x8b\xd6\x33\xfd\xe5\xc5\x9d\x45\x9f\xeb\x39\xae\xe7\x59\xe5\x69\xdf\x46\xff\x07\xf9\xa5\xf8\xf3\xb4\x49\x61\xb2\xf0\xe7\x19\x5b\xb6\x36\x5d\xf8\x5d\x30\x36\xba\xf3\xe2\xcb\x83\xe3\x7a\xe9\x36\xb5\x6b\x2a\x33\xa6\xeb\x1d\x5c\x79\x1e\x38\xc5\x9f\x37\xb9\x26\x60\x1e\x5a\xfe\x6b\x25\x13\x93\x5d\x70\xa6\xeb\xf5\x0a\xac\xac\x01\x90\x55\xdf\x05\x93\x97\x9f\x79\xda\xcc\x3b\xa1\xaf\xa7\x9d\xac\x3a\x59\x7d\xcf\x3b\xe9\x6c\x6d\xad\x77\xe2\xe6\x4d\xd7\xc3\x4f\x13\x7c\x16\xdf\x6c\x63\xee\x7a\xf1\xf6\xe0\x58\x8f\xc4\xf9\x30\x06\xae\xad\x6c\xbd\x82\x66\xbd\xed\xba\x04\xdc\xf5\xe0\x33\x95\xad\x97\x1f\x79\x06\xbf\x0d\xf6\xc3\xa2\xdd\x06\x9b\x45\xa7\xa9\xdc\x25\x14\xae\x47\xc8\xb8\xda\xb4\x95\xe7\x6d\xd3\xa5\xf4\x5c\x6d\xaf\xe7\x39\x5c\xcf\x7c\x59\x2f\x8e\xeb\x15\xaa\xb6\x7c\x6b\x3f\x3d\x02\x28\x2c\xc0\xea\x5a\x60\xfd\x0c\x16\x96\x3c\xbd\x8e\xb0\x94\x9b\xf0\x9a\xea\xda\xda\x57\x65\xfa\x2f\x6d\x2f\x6f\x9b\x80\x99\x27\xae\x94\x87\x7e\x13\x6f\x29\xdd\x59\xb0\xfa\xaf\xa9\x5d\x1b\x1e\xbd\xde\xf5\x3c\x63\xfa\x7c\x6d\x03\x59\x10\x38\x53\xff\x28\x1d\x9c\xe4\xb9\x78\x92\x05\xa7\x3f\x5b\x3a\x16\x40\x60\x6d\xf4\x50\x38\xda\x47\x57\x3b\xae\x71\x60\x2a\xa7\x34\xaa\xeb\x0f\xc2\x03\xda\xb7\xac\x3a\xa6\xf9\x90\xa2\x93\x93\x3f\x53\x5a\x8f\x86\x75\x49\xf9\xf5\x68\x89\x3c\xf9\x59\x34\xe5\x69\x33\x0f\x0e\x13\x2d\xb6\x36\xb2\x26\xdd\xf5\xf0\x38\x4f\x5a\x8f\x66\x31\x5d\x67\xe5\xb9\xda\x70\xf1\x24\x8f\x10\xba\x1e\xad\xe8\x1a\x67\x79\x68\xb0\xc1\xe4\x79\xae\xeb\xe9\x5b\x5e\x5c\x59\xf4\x5d\x0f\x6c\xde\x31\xb5\x5e\xfe\x71\xa6\x15\x98\xa4\x0f\x60\x97\x98\xae\x32\x57\x3e\x25\xc4\x94\x97\x27\x5f\x4f\x79\x24\xbc\x29\xad\x47\x4b\xbb\xca\x6c\x6d\xdb\xfa\x60\xab\x93\xa5\x85\x5c\x74\x9a\x2c\x07\x7a\x9f\xa5\x3d\x6d\x70\x7a\xca\x83\xcf\xf5\x9c\x4d\x78\x4c\xf9\x79\xeb\xb8\xc6\x87\xab\xbf\x36\xbe\x51\x5c\xb6\xe7\x6a\xe2\x43\x16\x2e\x64\xc0\x9a\xac\xa1\xf5\xf0\xc3\x35\x0e\x68\x3d\x17\xad\x2e\xfa\x8c\x84\xe5\x91\xbe\x59\xbf\xea\x3a\x8f\x56\xe3\x86\x32\x9a\x77\xbd\x52\x33\x8f\x96\xc9\x5b\x96\xb7\xcf\xf4\xd7\xa5\x65\x4c\x5a\xda\xd5\xa6\x0d\x26\x4f\x3b\x59\x34\xdb\xda\xb4\xe1\xb7\x3d\x2b\x13\x6d\x36\x7c\xae\xe7\xe5\xea\x53\x9e\x76\x5d\xed\xbb\xf0\xe4\xa5\xd9\x35\x46\x5d\xcf\x24\xcf\x33\x30\xd1\x66\x82\x75\xf1\xcb\x86\xcb\x35\xaf\xd6\xd5\x37\x0f\x66\x69\xe5\xf2\xf9\x60\xb8\xd7\x61\x75\x5f\x8c\x4a\xb6\xbc\xfe\xb4\xcd\xff\xcc\xab\xc9\x04\x7a\xdb\xb5\xf5\x8f\x5e\xbb\x7c\x4e\xda\x0f\x4a\x8b\x0e\x6b\xab\x63\x6a\xd7\xd6\x1f\x8a\x47\x2f\xa7\xfd\xb2\xf1\xd4\xe6\x97\xbb\x9e\xbb\x89\x4f\x34\x51\x3e\xd8\x68\x31\xf5\xc5\xa6\xed\x4c\xcf\xd9\xf6\x7c\xf3\x26\x13\xfd\xb6\xf1\xe4\x6a\x57\x95\xbb\x9e\xa5\x80\xb9\xcf\xb4\x6d\x93\x65\x41\xcb\xb3\x78\x60\xba\xa6\x34\x51\xba\xe9\xbd\x69\x5c\x65\x59\x22\x00\x20\x6c\x12\x90\x4e\x24\x1b\x41\xb6\x4e\x51\x01\x42\xcb\xf5\x32\x4a\xb0\x0e\x67\x6b\xc3\x04\x6f\xa2\xc1\x44\xa7\x4b\x3a\xbb\xfa\xee\x62\x6c\xd6\x64\xb7\xb5\xb5\xde\x32\xd3\x03\xd7\xdb\xb4\x09\x41\x93\xd0\xcf\x9a\x94\x2e\x61\x45\xfb\xeb\x9a\x40\x26\x21\x45\x71\x0b\xf4\xe2\xa5\x89\xb6\x91\xa5\x65\x75\xba\x4d\xf7\x79\x04\x1c\xa5\xd1\x25\xf4\x4c\xb4\xd2\x76\x6d\xfd\xb3\x09\x7a\x97\x90\xd4\x71\x52\xfa\x6c\x34\xd2\xfe\xeb\xf5\x75\x5a\xb2\x04\xab\xb1\x03\x26\x69\x96\x67\x12\x64\x31\xd2\x36\xe0\x4d\x38\xb2\xda\xb3\xb5\x49\xeb\xdb\xb4\x8d\x4d\x60\x5e\x4f\x9b\xb4\x3d\x5b\x9f\x4c\xed\x98\xca\x6c\x7d\xa0\x65\xae\x36\x5d\xf5\xb2\x68\xc9\xe2\xa9\x09\xc6\xd6\x9e\xa9\x9e\x8d\x47\xb4\x2c\x2f\xcd\x36\x9c\x26\x5a\x5c\xf4\xb9\xc6\x68\x9e\xbe\x99\x52\x9e\xf1\x92\x05\xef\x7a\xee\x59\xf4\xd9\x68\xa2\xb8\x6d\x75\x5c\xbc\x37\x16\x64\x0d\x28\x17\x33\x74\x82\x6c\x65\x59\x75\x4d\x38\xb2\xe8\xb4\xa5\xeb\x81\xf9\xb0\xf0\xfe\xb7\x86\xcb\x33\xf1\x68\x5e\xd6\x24\x5b\x4f\xbb\xae\xb6\xd7\xc3\xd3\xac\xdf\xf5\xe2\xb3\xe1\x77\xc1\x66\xd5\xcb\x23\x74\xaf\x17\xdf\x7a\xd3\x7a\x84\x53\x9e\xb6\x32\xfb\xc6\xe2\x0c\x97\xaf\xe5\xca\xd3\xef\x75\xc4\xa6\x18\x40\x96\xa9\xe7\x8a\x3b\x98\xe0\x5d\x65\x59\xbe\xaa\x0d\x9e\xd2\xfb\x41\xda\xb5\xd1\x92\x67\x80\xe4\x31\x35\xf3\xb4\x6d\x2b\x33\xc5\x23\x4c\x75\x6c\x63\xc0\x54\xce\x73\xd4\x31\xd1\x63\xaa\x93\x67\x1c\xd0\x3e\x98\x7e\x4d\xed\xaf\xc7\x85\x32\xb5\x6d\xa3\xdd\x34\xb6\xb3\xfa\x96\xa7\x6d\x13\x1e\x53\xdb\x26\x9a\x4d\xd7\x79\xca\x6c\x7d\x48\xf2\x5c\x12\xd9\x36\x10\x75\xed\xe2\xf2\x05\x75\x3c\xa6\x01\x4a\x7d\x2c\xca\x60\x93\x80\xb2\xf9\xc1\x7a\xbe\xee\x03\x53\x5a\x4c\x0c\xca\x33\xd9\x29\x3d\x94\x26\xbd\x5d\x4a\x0f\x1d\x28\xb6\xf6\xe9\x35\xad\x47\xfb\x62\x82\xbf\x1e\x7a\x4d\xbe\xae\xa9\x2e\xc5\x9f\x57\x6b\xda\x14\x84\x6d\xac\x65\x69\x7e\x3a\x5e\x5c\x02\x8b\xb6\x4f\xc7\x46\x9e\xe4\xc2\x99\x25\xa0\x4c\xbc\xa1\x63\xc3\x36\x71\x5d\x4a\xc2\x95\xe7\x52\x20\xa6\xba\x74\x0c\xd8\x9e\x41\xcf\x5c\x36\x01\xd2\x07\x6b\xfa\x35\x5d\xbb\x1a\xa5\xd7\xb6\x8e\xd9\x60\x6d\x34\x65\xd1\x70\x3d\xfd\xb0\xe1\x73\xd1\xe0\x82\x35\xc1\xe5\xc5\x4f\xeb\xd3\x3c\x13\x9e\x24\x6d\xdb\xb6\x8d\xeb\xd7\xea\xef\x63\x1f\xfb\x58\x0a\xf6\x0b\x5f\xf8\x02\xff\xc2\x17\xbe\xc0\xe9\xb5\xaa\xaf\xea\x51\xfc\x19\x34\x53\x98\x3c\x7d\xb0\xd5\xa7\x78\x68\x7b\x59\xcf\xdd\x06\xe7\xa2\xfb\x83\xc2\xb8\xfa\xe6\xa2\xdd\x56\x3f\x8b\xbf\x36\x1a\xf2\xf0\xde\x45\x67\x4f\xbe\x69\x03\x18\x0c\x79\x26\xc9\x08\xf4\x4a\x7c\xa0\x57\xe2\x65\x69\x07\x57\x99\x2d\x51\x98\x2c\x5a\xf3\x9a\x9d\x79\xdb\x70\xc1\x7d\x58\xc9\x89\xd7\xf7\x7d\xde\x6e\xb7\x93\xf2\xdb\x6e\xbb\x8d\xbf\xf4\xd2\x4b\xe2\xb7\x7e\xeb\xb7\x92\x7e\x0f\x0f\x0f\xa3\x58\x2c\xae\xab\x51\x29\x25\x18\x63\xc6\x3c\x29\x25\x00\x24\xe5\x4b\x4b\x4b\x58\x59\x59\x01\x00\xfc\xdb\xbf\xfd\x5b\x8a\xd6\xb1\xb1\x31\x7e\xed\xda\x35\x17\xbf\x6c\xe3\xc6\x05\x6b\xab\x6f\x73\x09\x6c\x16\x9c\x69\x6c\xd8\xda\xc9\xa2\x9b\x26\x17\x6d\x79\xf0\x9b\xee\x6d\xf4\x9a\xd2\x7a\x60\xf5\x76\x4c\xcf\xc1\x4a\x13\x15\x1c\x59\x1d\x05\xcc\x1d\xcf\x73\x6d\x23\x26\xab\x6c\xbd\x0c\x76\x3d\xec\xf5\xd0\x60\x12\x92\x80\xf9\xc1\xd8\xae\xb3\x04\xab\xcd\x4c\xed\xa1\x7b\x70\x70\x90\xcf\xcd\xcd\x89\xe3\xc7\x8f\x73\xdf\xf7\x51\x2a\x95\x30\x3a\x3a\x0a\x00\xa9\x89\x2e\xa5\xe4\xfa\x24\x07\xc0\x0d\x82\x20\x81\xd1\x7f\x09\x8c\x9e\x27\x68\xbe\x94\x52\x90\x76\x05\x15\x2e\x33\x33\x33\x68\x36\x9b\x00\x80\xc7\x1f\x7f\x5c\xa8\x3e\x70\xce\xb9\x10\xc2\x35\x91\x5c\x7c\x34\xa5\x3c\x42\x04\x86\xbc\xbc\xca\xcc\x56\xc7\x46\x83\x4a\x59\x02\x32\x8f\xd2\x74\xcd\x4d\x8a\x6f\x3d\x78\x5d\x74\xeb\x78\x8d\xcf\x82\x19\x0a\x68\x25\x97\xa4\x07\xa9\xeb\x9a\x3c\xb4\x0d\xbd\x1d\x58\xf2\x4d\x52\xdd\xd6\x49\xd7\x04\x34\x5d\xbb\xe0\x6c\xc9\xf5\x00\x6d\xe5\x14\xa7\x53\x6b\x15\x0a\x05\xf4\xf5\xf5\xa1\xaf\xaf\x0f\x37\xdd\x74\x13\x00\x60\x68\x68\x08\x1b\x37\x6e\xa4\x13\x3d\xa9\xab\x04\x81\xc2\x47\xef\x69\xbe\xa9\x3e\x90\x12\x40\x82\xb4\x25\x68\xbe\xea\x5b\x2c\x30\x52\xf9\xb1\xf0\x10\x86\xfa\x90\x52\xe2\xe2\xc5\x8b\xe8\x74\x3a\x78\xea\xa9\xa7\x44\xb5\x5a\xe5\x52\x4a\xac\xac\xac\x5c\xcf\xb3\xb1\xf1\x9f\x26\xd7\x98\xc9\xaa\x93\x25\x40\x5c\xf0\x59\x4a\x66\x3d\xf3\x89\xe6\x03\xf9\xf9\x71\xbd\x7d\xb1\xde\xd3\x55\x15\x97\x74\xcb\x92\xca\x1f\x44\x7a\xc2\x01\x4f\x09\xb7\x49\x58\x90\xf2\xbc\x0c\xb2\x95\xe7\x65\x76\x96\x96\x72\xc1\x27\x34\x6c\xd9\xb2\x85\xef\xda\xb5\x0b\xd5\x6a\x15\xdb\xb7\x6f\xb7\xf5\x4f\xff\xa5\xd7\xd1\x9f\x04\x67\x00\xe7\x12\x1e\x97\xcc\x8b\xef\x3d\x3f\xe0\x5e\x39\xe0\x7e\x39\xe0\x7e\x5f\x87\x57\x0a\x82\x79\x5c\x30\xaf\x10\xc3\x31\x09\x8f\x01\x5c\x00\x81\x64\x32\x10\x0c\x81\x60\x10\x9d\x82\x68\xad\x16\x45\xab\xed\x89\x76\xbb\x20\xdb\x6b\x9e\x08\x42\x2e\x03\xc9\x10\x08\x48\x21\x23\xb8\x00\x00\x24\xa4\x40\x24\x30\x44\xdc\x2f\xf5\x07\x74\x85\x4e\x72\xaf\x3a\xd7\xe9\x74\x70\xe6\xcc\x19\x5c\xba\x74\x09\x13\x13\x13\xc2\xf3\x3c\x1e\x04\x41\xde\x67\x41\x79\x99\xf7\x39\xe6\x79\x5e\x26\xb8\x3c\xca\xf4\x7a\xe0\xfe\x5b\xd4\x75\xf5\xc7\xa5\xe8\x7a\xf2\x5c\xae\x8a\x9e\xf2\x4a\x65\x1b\xbc\x0d\x27\x25\xc8\x85\xd3\x96\xb2\x34\x95\x69\x60\x50\x78\x97\x80\xca\x4b\x37\x85\xb1\x95\x0b\x00\x28\x16\x8b\xfc\xd6\x5b\x6f\x05\x00\xdc\x74\xd3\x4d\xe0\x3c\x01\xe7\x40\x8f\xd5\x90\x12\x0c\x00\x3c\xc4\xc2\xc1\x13\xcc\xab\xb4\x0b\xe5\x81\xb5\x42\xad\xba\x56\x18\xec\xeb\x14\x86\x6b\xad\xc2\x78\xad\xe5\x6d\x19\x58\x2b\x8c\x17\x43\x56\xf7\x04\xab\x16\x04\xaf\x72\x89\x2a\x97\xac\xca\x24\x7c\xd6\xa5\xcf\x63\x11\xde\x24\x49\x96\x9a\xf0\x81\x64\x68\x0b\xc8\x96\xe0\x68\x0a\x26\x9b\x01\x97\x0b\x6b\x9e\x98\x6b\xfa\x62\x66\xc5\x0f\xaf\x2d\x97\x82\xa9\x46\x29\x9c\x6a\x94\xc2\xc9\xa5\x52\xb8\xb4\xe2\x87\xcd\xb0\x20\x83\x80\xcb\x40\x02\x01\x00\x21\x21\x03\x25\x50\x94\x95\x42\xf8\x29\xe2\x7e\x63\x76\x76\x16\x97\x2f\x5f\xc6\xaf\x7e\xf5\x2b\xc1\x18\xe3\x9a\xdb\x95\xc5\x57\xd7\xa4\xb0\xd5\xcf\x7a\x9e\x59\xd6\x41\x1e\x5c\x2e\x1a\xf2\xe2\xcd\xb2\x24\x68\xbb\x79\x85\x8d\xab\x2d\x2b\xdd\xba\xe0\x50\x85\x7a\x72\x21\x70\x11\x6b\xeb\x9c\x6d\x12\x23\x03\xd6\xa6\xf1\x4d\xf5\x5c\xf4\x67\x09\x19\x13\x7e\x17\x8d\xb4\x1d\x3d\xf5\xb4\x59\xad\x56\xd1\x68\x34\x04\x00\x3c\xf2\xc8\x23\x3d\x02\x42\x73\x21\x12\xe1\x80\x68\x52\x7b\xc5\x90\xf9\x95\x4e\xa1\xb2\xb1\xe9\xd5\xeb\xab\xde\xe6\xfa\xaa\xb7\x7d\xb0\x59\xdc\xbb\xa1\xe5\xed\x29\x75\xf8\x56\x4f\xb0\x51\x0e\x54\x98\x44\x19\x60\x91\xe5\xa1\x87\x2d\xa4\x04\x1c\x71\x0c\x29\xe3\xc1\xc0\xf4\x32\x40\x82\x21\x5d\x2b\x9d\xe2\x29\x2d\x24\x64\x5b\x32\x34\x43\x2e\xe7\x3a\x05\x39\xd9\x2c\x86\x17\xe7\x2a\xc1\xd9\xd9\xfe\xce\x99\xf9\xbe\xce\xc5\xf9\x4a\x30\xb5\x52\x0a\x9b\x2d\x4f\xb4\x05\x64\x80\xc8\x32\x09\x90\xb6\x4c\x4c\x16\x0a\x1e\x7d\xf4\xd1\xac\x31\xb3\xde\x7c\x97\xa2\x30\xe1\x70\x09\x8e\xeb\x19\x87\xa6\xf6\x5c\x6d\xeb\x6d\xb9\x2c\x24\x97\xc0\x34\xd1\x91\x27\xdf\xd8\xa6\x49\x70\xe4\xd5\xd0\xeb\x9d\x74\xb6\xf2\x3c\x42\x81\x76\x02\x70\x3f\x1c\x17\x1d\x59\xc2\x4b\x25\x1b\x53\x69\x72\xf1\x2a\x81\xf9\xf2\x97\xbf\xcc\x2b\x95\x0a\x3c\xcf\xd3\xcb\x39\xf9\xf3\x00\x78\x90\xf0\xfa\xdb\x85\x72\xad\x55\xa8\x0f\xaf\xf8\x9b\x47\x1b\xc5\x7d\xc3\x8d\xe2\x4d\x03\x6b\x85\x43\xa5\x80\x6f\xe7\x92\xd5\xb9\x84\x1f\xc3\x03\x3d\x93\x5b\x02\x60\xc9\x4f\x66\x4a\xe0\xd4\x45\xb7\xbe\x24\xa2\x43\xc6\x65\x2c\x46\x0f\xd9\x2d\x57\x65\x60\x5d\x0b\x41\x02\x81\x60\x68\x74\x0a\x62\x72\xd5\x17\x67\xe7\xfa\x3a\x6f\x4d\x0f\x74\xde\x9e\xaa\xb6\x27\x16\xfa\x82\x99\xa5\x52\xd8\x08\x0b\x32\x90\x52\x06\x8c\xb1\x20\xb6\x46\x02\xdd\x2a\x91\x52\x0a\x00\x68\xb5\x5a\xf8\xfb\xbf\xff\x7b\x31\x32\x32\xc2\xa7\xa7\xa7\x5d\x3d\xca\xd2\xac\x79\xac\xc6\x2c\xdc\xeb\x29\xcb\x52\xb2\x14\xc6\x45\x5f\x96\x05\x61\xb3\x4e\xb2\x92\x4b\xd0\xf4\xe4\x99\x86\x55\x96\x75\xb0\x5e\xcd\x6e\xd2\xcc\x59\x82\xc1\x24\x48\xb2\x98\x0c\xf4\x32\xc8\x56\x66\x62\x66\x16\x1e\x97\xd6\xa1\x30\xd8\xb7\x6f\x1f\xdf\xb4\x69\x13\xb6\x6d\xdb\x86\x72\xb9\x0c\xce\x39\xb5\x28\xba\x82\x02\xf0\xfc\x80\x95\x37\x36\x8b\x83\x63\x0d\x7f\xfb\xe6\x45\xff\xc6\xa1\x95\xe2\x47\xfb\xdb\x85\x7d\x7e\xc8\x37\x73\x81\x2a\x03\xfc\x5e\x01\x61\x48\x06\xcb\x22\x12\x00\xe9\xec\x68\x8a\xf7\x4a\x96\x54\x4e\x8f\x40\xd1\xf2\x13\x21\x81\xc4\xec\x30\xc2\xea\x34\x44\x02\x25\x10\x0c\xad\x80\xcb\xb9\x56\x51\x9c\x5f\xe8\x0b\xde\xbc\x56\x6d\x9f\xb8\xb2\x61\xed\xec\x7c\x25\x98\x5a\x2c\x07\x4b\xb1\x5b\x13\x20\x76\x73\xe2\x5f\x20\xb2\x42\x44\x10\x04\xe8\x74\x3a\xf8\x87\x7f\xf8\x87\x3c\xda\x1e\x06\x18\x95\xd6\x6b\xc9\xb8\xe0\xf2\xce\x17\x93\xe2\xcb\x43\xff\x7a\x60\x3f\x2c\x3c\x56\x58\xe6\x28\xb4\x4d\x34\xd7\xa4\xb7\x5d\xbb\x24\xb4\xde\x3e\xcd\xcf\x32\xad\x4c\xf4\x51\xf8\x2c\x29\x9f\xf7\xde\xd5\xa7\xa4\xbd\x7d\xfb\xf6\xf1\x5b\x6e\xb9\x05\xb5\x5a\x0d\x00\xa8\xa0\xe0\x52\x4a\x8f\x31\xe6\x41\xc2\xef\x6f\xf3\xca\xf0\x8a\xbf\x75\xe7\x5c\xf9\xc6\x91\x46\xf1\x96\x0d\x2d\xef\xc6\x72\x87\xef\x2e\x08\x56\x67\x80\xef\x12\x13\xca\xed\x67\x29\xd7\xa2\x2b\x0a\x94\xfc\xd0\xe5\x08\x95\x29\x46\x19\x63\x58\x9a\xbd\xfe\x44\x2c\x18\x43\x29\x20\x85\xb2\x48\x56\x7c\x71\x7a\xa6\xbf\xf3\xda\xc5\x8d\xad\x57\xaf\x0d\xb4\x27\xe6\xfb\x3a\x73\x61\x01\x6d\x29\x65\x5b\x73\x6b\x94\x35\x02\x00\x62\x69\x69\x09\xdf\xfe\xf6\xb7\xc5\xa6\x4d\x9b\xf8\xd5\xab\x57\x6d\x13\xd4\xa6\xa1\x6d\x65\x7a\x72\x29\xb7\xac\x36\x6c\x38\xd6\x43\x4b\x96\x70\xca\xc2\x97\x35\x37\xb2\x94\xb5\xf1\xd7\xf4\xae\x8a\xcb\x34\xcf\x63\x1a\x51\x78\x8a\x53\xbf\xa7\x79\x59\x78\xb3\xac\x17\x57\xdb\x2e\x9c\x59\xe6\x21\x4d\x29\x3e\x8c\x8c\x8c\xe0\xa6\x9b\x6e\xc2\xb6\x6d\xdb\xe0\xfb\x7e\x22\x2c\xe2\xf8\x05\x07\xe0\x49\x29\x3d\x06\xe6\xf7\xb7\x0b\xd5\xe1\x95\xe2\xd6\x5d\x73\xe5\x23\xe3\x4b\xfe\x9d\xf5\xd5\xe2\x91\x62\xc8\x36\x73\x89\x0a\x03\xd3\xda\x96\x80\x64\xdd\xf9\xd6\x33\x07\x35\x35\x2f\x35\xed\xaf\xf2\x65\x5c\xb1\xeb\x36\x24\xb0\x91\xf5\xa1\x21\x4e\xcc\x11\x7d\x82\xa7\xdb\x4f\x5c\x16\xa9\xc1\xb0\x58\xd0\x28\x57\x85\xe9\x6e\x8d\x8c\xe3\x26\x2c\xaa\x9b\x48\xaf\x2e\x29\x9a\xe3\x13\xd1\xc5\x18\x24\x64\x3b\xe4\x72\x6e\xc5\x0f\xdf\x9d\xe9\xef\xbc\x72\xa9\xbe\xf6\xf2\xa5\xfa\xda\xe9\xf9\xbe\x60\x26\xe0\xa2\x85\xc8\xfa\x48\xac\x11\x15\x70\xed\x74\x3a\x58\x58\x58\xc0\xb9\x73\xe7\x70\xee\xdc\x39\xb5\x31\xcd\x36\xf1\xb2\x7e\xa1\xc1\xeb\x78\xa0\xdd\x53\x7c\xb6\xfc\x2c\x81\xe4\x82\xcd\xa3\x4c\x69\x3f\x3f\xec\x36\x8d\x42\xc7\x75\x74\xa0\xa9\x31\x53\x07\x60\x80\x37\xe5\xbb\x08\x37\xc1\x98\xe0\x69\xca\x92\xc6\xa6\xe4\x1a\x00\x36\xfc\x56\x3a\x1e\x78\xe0\x01\x3e\x32\x32\x02\xdf\xf7\x15\xbc\xfa\x53\x6e\x88\x5f\xea\xb0\xca\x50\xb3\xb8\xf9\x23\x33\x95\xa3\x5b\x16\xfd\x8f\xd7\x57\x8b\x47\xfc\x90\x6d\x65\x92\x55\xd4\x44\x64\x44\x40\xf4\x06\x2b\x01\xd3\x5c\xa7\x96\x47\x02\x9b\xaa\x9b\x0e\x82\x52\xf8\x04\x06\x2c\xd5\x9e\x76\xdb\x4b\x83\x2d\xe5\x88\xab\x58\xbc\xa9\x9e\x6a\x12\x32\x08\xb9\x5c\x58\x29\x8a\x77\x27\x6b\x6b\xcf\x4f\x0c\xb6\x7e\x79\x79\xc3\xda\xd9\xe5\x72\xb8\x20\x20\x5b\xba\x3b\x13\xc7\x48\x00\x40\x2c\x2c\x2c\xe0\x9f\xfe\xe9\x9f\x5c\x1a\xdf\x35\x4e\xf2\xc0\xda\x2c\x88\x2c\x1c\x79\xc7\xa8\xa9\x3d\xbd\x8d\xbc\xf3\x26\x4f\xfb\x79\x68\xea\x69\xdf\x26\x38\x28\x91\x7a\x72\x49\x3a\x0a\x67\xc3\x4d\x61\x74\x38\x9b\x44\xa5\x1d\xb1\x49\xca\xeb\x31\x2b\x4d\x7d\xb1\x4a\xdb\x43\x87\x0e\xf1\x83\x07\x0f\x62\x68\x68\x48\xa7\xa7\x2b\x2c\x24\xbc\x82\x44\xb9\x7f\xad\x30\xb8\x73\xbe\xef\xd0\xae\xd9\xf2\xbd\x63\xcb\xfe\xdd\xe5\x80\xef\x66\x92\x55\x58\xac\x8d\xa3\x89\x69\x9a\x65\xe9\x69\x94\xed\x62\x74\xe1\x69\x30\xb3\x47\xe2\x50\x8b\xc0\x52\x96\x04\x47\x55\xac\xb3\xb7\x08\x4c\x12\xc3\xa6\x67\xe6\x47\x6d\x93\xde\x74\xef\xd2\x4b\xc0\x3d\x86\x94\x5e\x03\x90\x41\xc0\xe5\xcc\x72\x29\x7c\xf3\xe2\xc6\xd6\x93\x67\x46\x56\x9f\x9b\xae\xb6\xaf\xb4\x0b\xb2\x09\x86\x36\x34\x2b\x04\x91\x20\x11\x8b\x8b\x8b\x38\x75\xea\x14\xde\x7b\xef\x3d\x2c\x2d\x2d\x21\xda\xac\x9a\x6b\x5c\xe9\xd7\x79\xcc\x78\x13\x5e\x9b\x40\xc9\x03\x9b\x75\x6f\xc3\xe7\xea\x9b\xa9\x9e\x89\x3e\x57\x1b\x49\x32\xb9\x2a\x3a\x82\x3c\xda\xd9\x39\xc9\x0c\x30\xeb\xb1\x34\x4c\xf8\x5d\x02\x23\x8f\xc9\xe9\xca\xb3\xd2\xa2\xde\x0d\xf9\xdd\xdf\xfd\x5d\x3e\x38\x38\xa8\xb6\x56\x73\xc6\x98\x17\xbb\x24\x3e\x24\x3c\x3f\x64\xd5\xb1\x65\x7f\xf3\xde\xe9\xca\xdd\x3b\xe6\xcb\xbf\x59\x5d\x2b\x1c\xe6\x12\x75\x48\xc6\x7b\x83\x93\xda\xbc\xd6\x3d\x0f\x10\x4d\x0f\xbb\x12\xa7\x93\x52\x4d\xe8\xb4\x64\x31\x4d\x5d\xf5\x5f\x76\xdd\x09\xad\x71\x6a\x81\xf4\x34\xaa\x92\xab\xdc\x52\x96\xa2\xc6\x66\xf9\xe8\x89\xf0\x4d\x42\xb6\xdb\x9e\x3c\x3f\x59\x5b\x7b\xea\xec\xd0\xea\x4f\x2f\x6e\x6c\x9d\x6e\x94\xc2\x05\xc1\xd0\x92\x88\xe2\x21\xda\xaa\x8c\x00\x80\x89\x89\x09\x3c\xf1\xc4\x13\x79\xc6\xf0\xf5\x98\xf7\x26\x58\x95\x6c\x13\x38\xef\xf8\x33\xe5\xe5\x11\x66\x79\xac\x8f\x2c\xfa\xac\xb0\xba\xe0\x70\x49\x1b\x18\x60\xf2\x08\x97\xf5\x6a\x7b\x13\x1e\x53\xfb\x59\x16\x4f\x1e\x6b\xc9\x04\xd7\x63\x39\x15\x0a\x05\xec\xdf\xbf\x1f\x37\xde\x78\x23\xea\xf5\xba\x0e\x9b\xac\x88\x40\xc2\xef\xeb\xf0\xda\xf6\xf9\xf2\xee\x7d\xd3\x7d\x9f\xd9\xb2\x58\xbe\xbf\x14\xb0\x3d\x90\xcc\xd3\x03\x94\x34\x80\xa9\x54\x7a\x2a\x94\x61\x70\x11\xa0\x60\xc1\x8c\xc1\xce\x1e\x57\x44\xb3\x12\x4c\x0b\x23\xdd\xed\xe4\xd1\x7d\x37\xbc\x21\x21\x15\x31\x0a\x77\xdc\xba\xd1\x62\xe8\xb9\xcb\x4e\x66\x97\xa4\x37\x94\x93\x17\x57\xc8\xe4\xdc\x52\x39\x78\xe9\xdc\xf0\xea\xf7\x4f\x8f\x34\x5f\x9a\xed\xef\xcc\x08\x86\x16\x58\x12\x54\x55\xc2\x43\x34\x1a\x0d\xbc\xfd\xf6\xdb\x78\xe3\x8d\x37\x4c\x0a\x84\xa6\x3c\x0a\xc8\xa5\xc0\x6c\x70\x26\x58\x9b\xd6\xcf\x12\x04\x34\xd9\xac\xfb\x3c\x8a\x9c\xc2\xd9\x3c\x09\x00\xdd\x18\x87\xa9\x61\x17\x51\x7a\x9e\xad\xc1\xf5\xd4\xa1\x65\x80\x9d\x0e\x13\x5d\x7a\x1d\xdb\x43\xcb\x23\x20\x53\x8c\xda\xb0\x61\x03\x1e\x78\xe0\x01\xf4\xf7\xf7\xab\xf7\x36\x94\x85\xe1\x31\xc6\x7c\x00\x7e\xb5\x55\xa8\xed\x9b\xae\x1c\xde\x37\xdd\xf7\xd0\xd0\x4a\xf1\xb8\x27\xf8\xb8\xcb\x5a\x48\x62\x8b\x64\x82\xf7\x24\xf3\x92\x47\x3a\x88\x29\xb5\xd9\x9d\xf2\x4e\xf4\x60\xa4\x2d\xa8\x91\xfa\xe9\x01\xe9\x5a\x22\x71\x99\xde\x99\x2c\x93\x48\xa2\x1b\x10\xb5\xc1\x52\x09\xa7\xf5\x51\xc6\x92\x93\xa5\x84\x9d\x06\x9e\x48\xb5\xae\x94\x15\x90\xad\xa6\x2f\xde\x9c\x18\x5c\xfd\xee\x3b\x63\xcd\xa7\xae\xd6\xd6\x26\x05\x47\x4b\x4a\xd9\x06\x90\x12\x20\xad\x56\x0b\x7f\xf7\x77\x7f\x97\xd7\x2d\xc8\x3b\xa9\xf2\xb8\x27\x7a\x9e\x6b\xce\xd0\xf6\x40\xea\x52\x7c\xb4\x3c\x4b\x60\x01\xf9\xfb\x67\xec\x8b\x69\xc8\xae\x57\xba\x5d\x8f\xc4\xd4\x93\x0b\x96\xe6\xc3\x50\x66\xc3\xa5\xee\xaf\xc7\x8c\xc3\xbd\xf7\xde\xcb\xf7\xec\xd9\xa3\x26\x20\x87\x16\xec\x44\x24\x30\xea\x07\xaf\x55\x8e\x1e\xbc\xd6\xff\x7b\x1b\x5a\xde\x27\xb8\x44\x95\xe9\xa6\x03\x4d\x44\x10\xb8\x17\x2a\x53\x15\x7b\x20\x52\x39\x4e\x75\xed\xf2\x19\x7a\x83\xa8\xeb\xa1\x4b\x17\x2c\x2e\xf8\x5e\xfb\xc4\x4e\x8f\xbd\xad\xfc\x34\x01\x10\x6b\x9e\x3c\x7d\x79\xc3\xda\xf7\x4e\x6c\x59\xfe\xb7\xcb\xf5\xb5\x2b\x92\xa1\x09\xa4\x2d\x10\x29\xa5\x10\x42\xe0\x95\x57\x5e\xd1\x2d\x10\xa3\x76\x45\xfe\x31\x64\xbb\x37\xe1\x02\x81\x59\xaf\x3b\x91\xc7\xd2\x37\xb5\x71\x3d\xee\x4a\x8f\x62\xb5\x3d\x87\xeb\xe9\x5c\x0a\x31\xb2\x19\x9d\x65\x19\xd0\x8e\xe5\xc1\x4b\x53\x5e\xab\x26\x81\xb9\xf7\xde\x7b\xf9\xae\x5d\xbb\xe0\x79\x5e\xb2\x61\x2b\xb1\x30\x24\xca\xfd\xed\x42\xfd\xe0\xb5\xca\x6d\x07\xaf\xf5\x7f\xa9\xbe\xea\xdd\xc5\x25\xea\x0c\xac\x37\x26\x20\xbb\x61\xca\x64\x05\x04\xd6\x10\xa6\xd9\x34\x49\x09\x9a\x64\xe1\x32\xe5\x6a\x24\x36\x41\xdc\x40\x0f\x66\xa6\x63\x60\xe8\x15\x5d\x26\x21\x20\xc1\xa4\x43\x58\x01\xda\x4c\x8e\xdc\x1b\x96\xca\x23\x95\xa8\x65\x24\xd3\xf5\xd3\xc1\x52\x03\x6f\x74\x58\x15\xad\xd5\x7e\xa9\xbc\x8e\x05\x48\xd0\xf2\xc4\xe9\x8b\x1b\xd7\xbe\xf7\xeb\xcd\x8d\x1f\x5f\xa9\xad\x5d\x14\x1c\x2d\x68\x02\x44\xc5\x41\xde\x7b\xef\x3d\xbc\xf1\xc6\x1b\x98\x9c\x9c\x04\xdc\x26\xbc\x9e\xf2\x98\xfa\xff\x5f\xc0\x67\x2a\xbf\xde\x79\x6a\xb5\x38\x5c\x44\xba\x92\xcb\x4a\xc8\x92\xc6\x79\x05\x54\x9e\x94\x25\x41\x6d\x70\x1c\x80\xf8\xfd\xdf\xff\x7d\x1e\xbb\x25\x1c\x5d\x2b\xc3\x07\xe0\x97\x3b\xbc\xb6\x7f\xaa\x72\xf4\xc6\xab\xfd\xbf\xb7\xb1\x59\xbc\xbb\x20\x31\x98\x63\x1f\x67\x9c\x72\xd8\x15\xeb\xda\x78\x95\x2f\x2a\x90\x6b\xf9\xd4\x05\x98\x9a\xac\xe9\x29\x9d\xcc\x79\x57\x22\x82\xc4\x20\x12\xd2\x3d\xd0\x05\x4a\x52\x9f\xd0\x46\x81\x55\xb0\x95\xc6\x73\xe2\x1f\xc9\x64\x7b\xd5\x17\xef\x4e\x6c\x5c\xfd\xee\x1b\x5b\x1a\x8f\x4f\x57\x3b\x97\x24\x8b\x5c\x18\x6d\x39\x17\x9d\x4e\x47\xfc\xf5\x5f\xff\xb5\xcb\x5d\x71\x8d\x53\x53\xde\x7a\xc6\xae\xcb\x4a\xcf\xb2\x3a\xd6\xeb\xb2\xe4\xed\x0b\x2d\x57\x49\x00\xdd\xe0\xa8\xca\x70\x11\xed\x62\xa6\x0b\x4e\x87\xcd\x92\x80\x79\xad\x08\x8a\x77\xbd\x34\xa4\xda\x39\x76\xec\x18\xdf\xb1\x63\x07\xca\xe5\xb2\x12\x18\x1c\x91\xc0\x28\x17\x03\x56\xd9\x3e\x5f\x3e\x74\xf3\x95\xea\x17\xc7\x97\xfc\xcf\x16\x05\x1b\x45\xbc\x51\x4b\x8f\x00\x18\x0d\x06\x18\x7c\x81\x54\xca\xb3\x5e\x62\x0f\x27\x9a\x6d\x88\x1c\xee\x40\xa6\x44\x59\x47\xb8\xb2\x07\x57\x8f\x78\x21\xb4\x51\x9b\xcb\x21\xf8\x52\x98\x7a\x85\x0e\xc5\x6e\xaa\x9d\x5c\x33\x34\x97\x4a\xc1\xeb\xa7\x47\x9b\xff\xe5\xed\xf1\x95\x67\x16\xcb\xe1\x14\x58\x62\x81\x24\xcb\xb8\x4b\x4b\x4b\xf8\xce\x77\xbe\x63\x1b\x8f\x30\xe4\x9b\xc6\xa8\x9e\xb2\xb4\x7b\x5e\x3c\x36\xdc\x2e\xba\xf2\xe2\x77\xcd\x55\x63\x52\x9c\x35\x99\xef\x14\x11\x4d\x79\xac\x07\x53\x1d\xbd\x8d\xf5\x48\xbf\x3c\xb0\xb9\xa5\xbc\x5a\x5e\xfd\xda\xd7\xbe\xc6\xcb\xe5\xb2\xaa\x9b\xc4\x31\xb8\x40\x65\x7c\xc9\xdf\x7e\xd3\xd5\xea\x6f\xed\x9c\x2b\x7f\xbe\x1c\xf0\xdd\x0c\xcc\x03\xf2\x45\xfe\x9d\x30\xeb\x5d\x8a\x40\x3e\xeb\x41\x6a\xbb\x3a\x7b\x60\xb3\x08\x32\xed\x52\x35\xdd\x1a\xf0\xa4\x02\xac\x6e\x12\x4d\x2d\x1b\x63\xa7\xd7\x03\x67\x30\x46\x7a\x5c\x98\x90\x61\x61\xae\xbf\xf3\xdc\xdb\xe3\x2b\xdf\x3a\x3d\xd2\x7c\xa5\x59\x0c\x97\x00\xa4\x36\x93\xb5\xdb\x6d\x71\xe9\xd2\x25\xfc\xec\x67\x3f\x5b\xcf\xd8\xb2\x2a\x26\xad\x1c\x16\x18\x97\x45\x70\x3d\x56\x7b\x1e\x7a\x5d\x29\xb3\x4d\x2a\x38\x5c\x9a\x5e\x4f\x79\xac\x13\x9b\xb4\x33\xb5\x91\xe5\xa3\x65\xb5\x6d\xa2\xd9\xfa\x10\xeb\xf5\x3a\x3f\x7a\xf4\x28\x76\xef\xde\xad\xea\x71\x29\xa5\x87\xe8\xfd\x90\x72\xad\x55\x18\xbe\x61\xb2\xff\x13\x07\xaf\xf5\x7f\xb5\xba\x56\x38\xc2\x24\x2b\xa7\x96\x55\x55\x4c\x80\xdc\x03\xe8\x31\x14\x68\xfc\x20\x05\x44\xcc\x78\x48\xa4\x57\x43\x18\x5d\x7e\xd5\x62\x1b\x29\x7a\x7a\xad\x7a\xa9\x84\x01\x08\x6c\xec\x63\xa4\xe8\xb7\xe1\x8b\x75\x36\xd9\x48\x0e\xd6\x43\x7b\xf4\x2f\xb2\xb0\x14\x5e\x19\x97\xe9\x75\x2d\x82\x25\x8e\xcd\x80\xb1\xa4\x5d\xe8\x71\x13\x0a\x4c\xe3\x31\xd4\x12\xa1\xcf\x89\xd8\x40\x80\x44\xa7\x20\xaf\x5c\xda\xb0\xf6\x2f\x27\xb6\x2e\x7f\xe7\xca\x86\xb5\x89\x80\xc9\x26\x80\x16\x00\xf5\x82\x9d\x98\x9d\x9d\xc5\x77\xbf\xfb\xdd\x3c\xda\xdb\x35\xd6\xf3\xc4\x19\x6c\x78\xf2\x08\x22\x57\xb2\xc1\xdb\xe2\x18\x2e\xba\x52\x78\x94\xab\xb2\x5e\x3f\x89\x96\xbb\x98\x63\x23\x90\x12\xe6\x72\x5d\xf2\xc2\xe8\x6d\x02\x16\x06\xfc\xe1\x1f\xfe\x21\xf7\x7d\x3f\xbd\xbc\x0a\x56\xf6\x04\xab\xee\x9c\x2b\x1f\xb8\xe5\xd2\xc0\x57\xc7\x96\xfd\xfb\x0b\x92\xd5\x4d\xc1\x44\x3d\x07\x88\x9d\x06\xc9\x7a\xe2\x7f\xba\xa7\x62\x84\x8d\x27\x98\x04\x03\xd3\x66\xad\xed\x15\x15\x75\x47\xe3\x89\xc9\x9e\x8d\x94\x55\x42\x26\x58\x4c\x40\x32\xa1\x24\x11\x66\x44\x00\x29\xd8\x6e\x67\x75\x7c\x29\x09\x15\xfd\x30\x2d\xe6\xa1\x6f\x29\xa5\xdc\xa3\x31\x0c\xc8\x6e\x7b\x20\x1d\x87\x0e\x17\x67\x6a\xfb\x4c\x12\x9a\xb5\x98\x46\xba\xff\xe8\xd2\x41\xf0\xca\x88\xce\x60\xc5\x17\x6f\xbd\x33\xb6\xf2\xcd\xb7\x36\x35\x52\xee\x0b\x62\xeb\x23\x0c\x43\x71\xe1\xc2\x05\x3c\xf5\xd4\x53\x79\x2c\x04\x97\x95\xa1\x97\xbb\xf0\xb8\xdc\x6c\x13\x8e\x3c\x78\x69\x72\x85\x1b\x5c\xe5\x09\x7d\x8c\x66\x90\xca\x2e\xc4\x79\x4c\x31\xbd\xcc\xc6\x14\x18\xe0\x68\x1e\xc5\xeb\x62\x90\xf5\xc1\x7e\xfc\xe3\x1f\xe7\xfb\xf6\xed\x43\xb1\x58\xe4\x71\xbe\x27\xa5\xf4\x19\x58\xa5\xbe\xea\x0d\xdf\x7a\x69\xe0\xfe\x7d\xd3\x7d\x7f\x52\x8a\xb6\x86\x73\x63\x70\x4e\x4b\x34\x9a\x90\xac\x46\xf4\xd8\xf5\xf1\x74\xd3\x51\x19\x62\x03\xfa\xec\x77\xb9\x07\xa9\x17\xce\x52\x6f\xc4\xa6\x2d\x12\x53\xbc\xa1\x6b\xce\x93\xba\xaa\x2f\x24\xbc\x61\x5a\x61\x96\xf1\x3a\x2e\x8d\x64\xd8\xdc\x07\xf4\xd0\x45\x2c\x97\x34\x13\x7b\x85\x18\x23\x56\x85\xc5\x95\x52\x6d\x81\x31\x6d\x03\x9c\xc6\x81\xd4\xfe\x16\x24\x2f\xe5\x85\x4c\x36\xa6\xab\xed\x1f\xbd\xbc\x7d\xf9\xaf\x27\x36\xae\xbe\x1b\x16\xd0\x00\xd0\x8a\x63\x1f\x89\xf5\xf1\xf8\xe3\x8f\xa3\xd9\x6c\xe6\x19\xd7\x59\x8a\x54\x4f\x2e\x6b\xdf\x25\x54\x6c\x02\x26\x4f\x1e\xa5\xdf\x74\x6d\xa3\x01\x80\xf9\x5d\x15\x4a\xa8\xcb\x5c\x72\xc1\xda\x08\xfb\x20\x3e\x9c\x4b\xb0\xd0\x8e\x26\x69\xc7\x8e\x1d\xfc\xf0\xe1\xc3\xd8\xb4\x69\x93\x82\x57\x3b\x3e\xcb\x05\x89\xea\x47\x66\x2a\x87\x6e\x7f\xaf\xf6\xa7\x1b\x9b\xde\x7d\x0c\xcc\xa7\x56\x46\x62\x3d\xa4\xb4\x96\x5b\xa0\xa4\xa6\xbe\x69\xa3\x96\x3e\x29\x53\xf9\xf1\x8d\xc5\x82\xb0\x5d\xa5\x69\xd2\x66\x1f\xd0\x33\x9b\x7b\xdc\xa6\x64\xd5\x44\x17\x56\x64\x76\x1a\xfc\x8d\x64\x89\x58\xb7\x0e\x14\x2c\x95\x22\xa4\xef\x29\x38\xf4\x0a\xa8\x1e\xf7\x0f\x66\x1e\x26\xc2\x21\x65\x89\x18\x38\x64\x90\x6e\x29\x6b\x85\x01\x2d\x2f\x7c\xf7\x9d\xf1\xe6\xff\xf5\xda\xd6\xe5\x27\x1a\x7e\x38\x27\xa3\x17\xe9\xf4\xf7\x60\xf0\xf4\xd3\x4f\xe3\xd4\xa9\x53\x79\x27\xf1\xf5\x58\x29\xb6\x94\xc7\xd2\x30\xc1\x67\xb5\x91\xd7\x70\x48\xe1\x29\x58\x90\x4a\xcb\x2f\x43\x5a\x41\xb9\x60\x6d\xd7\x74\x98\xd9\xee\x39\xba\x8f\x59\xfd\x09\x2d\x5f\x87\x57\x65\x14\x17\x07\x20\xbf\xf4\xa5\x2f\xb1\x81\x81\x01\x75\xef\x03\x28\x01\xa8\xf4\xb7\xf9\xf0\x5d\x13\xf5\x87\x6e\xbb\x58\xfb\x8b\xea\x9a\x77\x1b\x07\x2b\x28\x33\x9b\x69\x0e\xb6\x6a\x5c\x9f\x30\xe9\x4f\x03\x44\xbf\x2a\x8b\x69\xff\x69\x81\x3e\xae\x75\x37\x21\x05\x1b\x73\x58\xc9\x00\xa9\x69\xf7\x08\x5c\x65\xea\x33\x40\x6b\x07\x29\x42\x7a\x04\x47\x6a\xde\x69\x33\x36\x65\x6d\xc4\x74\xe8\xcd\x50\x61\xc9\x62\xaa\x12\x18\x86\x74\x9b\x16\x53\x44\x32\xc2\x3f\x86\x9e\x0d\xa4\x29\x6b\x86\x69\x3c\x20\xb2\xb8\x4b\xb7\xde\x67\x9d\x46\x72\x91\xf0\x54\x8b\x7f\xc4\xb1\x95\x62\xc8\x87\x47\x1b\xfe\x27\xb6\x2e\x96\x37\x37\x4a\xe1\xa5\xa5\xbe\xb0\x21\x91\x3e\xc5\x7d\xc7\x8e\x1d\xf2\xb5\xd7\x5e\xd3\xc7\x1c\xc8\xb5\x1a\x9f\x12\xe9\xb9\xa5\xee\xa9\xf8\xa4\x63\x56\x25\x7d\x9c\x9b\xf0\xe8\xdc\xd5\xf3\x68\xfb\x12\xf6\x36\x28\x1d\x7a\xbf\xa8\xe0\x49\xe1\x2c\x10\xa4\xb4\x71\xdb\x24\xa5\x65\xf4\x5a\x1f\x46\x26\x3c\xb4\xbd\xbc\x1d\x72\x31\x89\xb6\x2d\x01\xc8\xaf\x7f\xfd\xeb\xea\x4c\x8c\x02\x22\x81\x51\x62\x12\x03\x3b\xe6\xcb\x07\x8f\x9f\xd9\xf8\x3f\xee\x9a\xeb\x7b\xd8\x13\x6c\x84\xc5\x13\x85\xc5\xc3\x49\x0d\xc4\xee\xb2\x6a\xd7\x04\x20\xdf\x13\x89\x06\x9e\x39\xd0\xd0\xd5\x8a\xb2\x2b\x13\xec\xfb\xcc\xa3\x06\x25\xb4\x78\x49\x8f\x99\xae\x21\x4a\xae\x55\xdc\xc4\x80\x57\x69\x64\x7d\xc6\x29\xb2\x12\x82\xba\xc4\xaa\xb6\xb5\xea\x5a\x69\x3a\x78\xa9\xe6\x71\x3a\xe6\x12\x2f\x82\x2a\x2b\x26\xde\x18\xd7\x95\x4f\x24\xb8\x4a\x85\x86\xc5\xd0\x49\x2d\xcb\xca\x34\x8d\xc9\xb3\x8a\xcb\xd2\xde\xa2\x2e\xa5\x15\xdd\x5d\x57\x8f\x91\xce\x32\xc9\x8a\xd5\x36\x3f\xb8\x63\xbe\xfc\xb1\xa2\x60\xf3\x33\x03\x9d\xab\x21\x47\xc8\x22\xe6\x0a\x00\x62\xd7\xae\x5d\xec\x9d\x77\xde\x51\x93\x4b\x9f\x68\x54\x80\xe8\x8a\x4e\xb7\x4a\x74\x21\x42\xc7\x33\x15\xb9\x8a\x0d\x3a\xac\x6e\x21\x98\x14\x37\x15\x2c\x34\x99\xe6\x2e\x15\x6a\x7a\x5e\x4f\x9f\x0a\x04\x19\x95\x6a\xb4\xe3\xfa\x24\x35\x75\x4c\x35\xa2\x08\x70\x99\x51\x8c\xd4\xb5\x09\x18\x0a\xab\x77\x0a\x48\x33\x00\x00\x44\xb9\x5c\x66\xf7\xdf\x7f\x3f\x3b\x76\xec\x18\xd3\x0e\xd2\x29\x31\xc6\xfa\x4a\x1d\x3e\xf8\xd1\xf7\x07\xee\xbb\x73\x62\xc3\x7f\x1a\x5c\xf5\x3e\xc1\x24\xf3\x55\x34\x3f\x49\xba\x56\xd5\x35\x39\x79\x3f\x22\xca\x22\x2a\x35\x19\xc4\x48\x60\x19\xd5\xda\x06\xa1\x91\xf8\xdf\xac\x3b\x29\x98\xf6\x5f\x27\x48\x87\x55\x90\xba\x85\xd4\x45\xda\x6b\x1d\x45\x71\x8d\x34\xad\xdd\x32\x92\x17\x75\x22\xd1\xf4\x4c\x99\x4b\xc4\x2d\xd0\xd7\x4d\x22\xb1\x9b\x32\x05\x22\x18\xa9\xf3\x30\xd2\xf8\xfa\x0c\x4f\xd8\x18\xf3\x27\xb1\x34\x64\x72\x97\xb4\xad\x89\xed\x6e\x9f\x99\x12\x2e\xda\x0e\x5e\xdd\x12\x89\x61\x22\xb9\xa1\x0f\x27\x45\x0b\x12\x3e\x31\x30\xe6\x09\x36\x32\xbe\xec\xdf\x31\xd2\xf0\xab\xb3\xfd\x9d\x73\xcd\xa2\x68\x82\x21\x64\x8c\xa1\xaf\xaf\x4f\x68\x56\x07\x21\xa4\x67\x22\x93\x01\x92\x1a\xc3\x74\xfe\x08\x52\xae\x3f\x19\xe1\x80\x05\xd2\xf3\x54\x87\x35\x95\xdb\xe8\x04\xa9\x67\x13\x84\x09\x70\x96\x8f\xa4\xee\x55\x72\xad\x5c\xa8\x72\x57\x50\x33\x0b\x9f\xc9\xe7\xa2\xb8\x8d\xbf\x07\x0f\x1e\xc4\xad\xb7\xde\x8a\xfe\xfe\x7e\x00\xe0\x52\x4a\x3f\x7e\x21\xad\xb2\x61\xd5\x1b\xbd\x73\xa2\xf6\x95\xdd\x33\x7d\x5f\x2b\x0a\x36\x6a\x0a\x9a\x25\xd7\x5d\xe5\xa4\x69\xd3\x1e\x05\x6d\x9a\xab\x44\x4b\xdb\x36\x2e\x75\x21\xf3\xed\xd1\xd0\x27\x57\x8c\xc5\x12\x37\x91\x90\x90\x0c\x42\x30\x29\x02\x2e\x83\x76\x41\xb6\x3a\x05\xd1\xee\x78\xb2\xbd\x56\x10\xed\x35\x2f\xba\x0f\xb9\x0c\xc2\x18\x2e\xe4\x91\x0f\xcf\x25\x78\x41\x82\x73\xc1\x3c\x4f\x30\xaf\x18\x72\xdf\x0f\x99\x5f\x0c\x99\x5f\x0a\xb8\xef\x87\xbc\x5c\x0c\x99\xef\x85\xcc\x2b\x44\xdf\x63\xe1\xc9\x74\xeb\x99\x3f\xcc\xc8\xa3\xde\xbe\x39\x5e\xe1\x27\xfd\xef\x79\x81\x8f\xba\x6b\x52\x26\x6e\x4d\xaa\x69\xa2\x8e\x92\x67\x40\xac\x15\x03\x2f\x5b\x0b\x95\xe0\x67\x4f\xec\x9f\xfb\x9f\xaf\x0e\xac\x5d\x64\x8c\xb5\x00\x04\xb3\xb3\xb3\xe2\xb1\xc7\x1e\x43\xab\xd5\xca\x5a\x1d\x01\x7a\xc7\x2a\xcd\x83\x21\xdf\x54\xcf\x86\xd7\xd6\x86\x0d\xc6\x46\x97\x2d\x76\xd2\xf3\xeb\x69\x08\x4c\xc9\x46\x80\x4e\x88\x2b\xf2\x0b\x72\xed\x62\xae\xca\xa3\xb0\x7a\x99\x0d\x9f\x00\x80\x83\x07\x0f\xe2\xce\x3b\xef\x84\xe7\x79\x3c\xae\xe3\x31\xc6\xca\x4c\xa2\xba\x6d\xbe\xbc\xe7\x8e\xf7\x6a\x7f\x3a\xb6\xec\xdf\xcf\x25\xab\xa4\x2d\x0c\xed\x52\x53\xf7\x54\x89\x27\x63\x4a\x8d\x37\xc3\x40\xa7\x59\xcc\x10\x78\xa4\x96\x44\xcf\x84\x48\x52\xb7\x56\xd7\x75\x89\x5d\x85\x58\x29\x84\x1c\x22\xe0\xb2\xbd\x56\x14\xad\x15\x3f\x6c\x2c\x97\x82\x85\xc5\xbe\x70\x69\xc5\x0f\x97\x1a\xf1\x37\x4e\x5a\x9e\x68\x06\x05\xd1\x16\x0c\x41\x2c\x2c\xda\x92\xc9\x50\xc6\x7c\x93\x80\x48\xf5\x53\x26\x5a\x85\x33\xc9\x0a\xea\xe3\x4e\x9e\x80\xef\x85\xdc\x2f\x85\xac\x5c\xee\x14\x2a\x03\xad\x42\x6d\x60\xad\x50\x1b\x58\xf3\x6a\xb5\x56\xa1\xd6\xdf\x2e\xd4\xfa\x3a\xbc\xe2\x85\xdc\xe3\x12\x1e\x93\x89\x68\x44\xfa\x9d\x92\xd8\xa1\x49\xdc\x3c\xd2\x6b\x89\xc4\xed\xa2\x82\xb7\xc7\x7a\x52\x56\x5d\xe2\x66\x69\xcb\xd5\xb1\x10\x81\x44\x0a\x47\xd7\x4a\x62\xda\x5b\xb7\xba\x95\xa2\xf2\x00\x30\xf8\x82\xc9\x4a\xcb\x13\xea\xf5\x83\x36\x00\x0c\x0e\x0e\x2a\xa1\xa1\x92\x2d\x00\x49\xe7\x8d\x6d\xae\xb9\xe6\x86\x0d\xa7\x4b\xb9\xc2\x50\xee\x9a\x9b\x14\xc6\x29\xf8\x3c\x0d\xc8\xd6\x98\x89\x60\x9b\xc5\xe1\xaa\x4b\xdb\x71\x95\xbb\x24\xb8\x51\x4a\x1e\x3c\x78\x90\x2b\xa1\xa1\x0e\xd6\x91\x52\x96\x8b\x82\xd7\x0e\x5c\xab\xdc\xf6\xb1\x8b\xb5\xff\x58\x5b\x2b\x1c\x65\x00\xa7\xaf\xa7\xd3\x0d\x4d\x49\xa2\xaf\xb1\xc7\x79\x89\x36\xa3\x3b\xa7\x22\x80\x08\x96\xc4\x22\x98\xae\xd9\x7a\xac\x57\xd3\x2b\xe8\xbd\x04\x49\x48\x74\xb8\x6c\xb7\x8a\xa2\xb5\x5c\x0a\x17\xe6\x2b\x9d\x99\xd9\xfe\xce\xcc\x5c\x25\x98\x59\x2e\x05\x4b\x2d\x4f\x34\xda\x9e\x6c\x06\x5c\xae\x21\x7d\x2a\x56\xea\xc4\x70\xfd\x90\x1b\xf5\x75\x35\x5d\x70\x09\xe8\xdf\x7a\x11\x71\x8c\x48\x72\x00\x1e\x20\xd4\xc1\x45\xd1\x44\x8a\x4e\x3b\xeb\x2b\x06\xbc\x5c\x0e\x78\x75\x60\xad\x50\xdb\xd8\x2c\x0e\x0e\x35\xbd\xd1\xc1\x66\x71\x78\xa0\xe5\xd5\x2a\x1d\x5e\xf5\x42\xf8\x89\xc0\x54\x31\x8a\xa4\x7b\x31\x3f\x54\xdc\x44\x49\x6c\x35\xe1\x59\x2f\x7b\xbb\x35\x23\x91\x61\x0c\xcc\x28\xcb\x23\x76\x45\xa2\xfc\x34\x02\x43\x56\xe2\x82\x49\x06\x2c\x95\xc2\x8b\xcf\xec\x5e\xf8\x2f\xf3\x7d\x9d\x20\xee\xb3\x69\x32\xea\x13\x99\x4e\xca\xbc\x73\x4b\x2f\xb7\xcd\x13\x17\x7e\x93\x12\xa6\x29\x4b\x20\xb9\x70\xa6\xee\x4d\x16\x87\xcd\x44\xa1\x16\x81\x09\x1e\x04\x36\xcb\x3c\x33\x49\x3e\x9b\xe5\xe2\x94\xb2\x77\xdd\x75\x17\x0a\x85\x82\xb2\x32\x7c\x48\x94\x2b\x9d\xc2\xf0\x2d\x97\x06\xee\x3b\x7c\xb5\xfa\x1f\x4a\x01\xdb\x99\x4c\xf8\xee\x4e\xa5\xe8\xc7\x14\x3e\x02\x52\xae\x40\x32\xb6\x98\xae\x05\x53\x66\x40\xd7\x44\xd1\xdd\xf7\xc4\x74\x56\x2d\xc6\xb0\x29\xd3\x3c\x7d\xa0\x6f\x37\xa0\x28\x11\x32\x04\x6b\x9e\x68\x2d\xf6\x05\x73\xd3\xd5\xf6\xe4\xe4\x40\x7b\x72\xb6\xbf\x33\xd5\xf0\xc3\x85\x56\x51\x2c\xc7\x67\x4e\xa8\x4d\x4b\xed\x78\xf9\xb0\x8d\x48\x40\xb4\x63\xbe\x25\xbb\x21\xe3\x6b\xa1\xbe\x55\xa2\x7f\xd7\xb5\xdb\x6d\xa6\x9e\x03\xe8\xe7\x1c\xe2\x37\x85\xd5\x4e\x5b\x8f\x31\xe6\x87\x0c\x7e\xe8\x0b\x6f\xb5\x18\xfa\xf3\x7d\x9d\xf2\xc5\x7a\xcb\xe7\x60\xe5\x52\xc0\x07\xfa\xdb\x85\xda\xd0\x4a\x71\x74\x7c\xc9\xdf\x3c\xda\xf0\xc7\x37\xac\x16\x06\xcb\x41\xa1\xe2\x09\x78\xa9\xf9\x2e\x59\xea\xb0\xe3\x6e\x8c\xa3\x6b\x5d\xe9\xae\x84\x3a\x12\x40\xaa\x7f\x3d\xee\x9e\xf6\x50\x35\x9f\x53\xea\x81\xd5\x38\xd6\x42\xad\x91\xe8\x79\x30\xb4\xbc\x70\xe9\x95\xed\x4b\x3f\xbc\xb8\x71\xed\x8a\xfe\xbd\x5c\x4b\xa2\xe3\x37\x8f\x82\xb4\xe1\x30\xe1\xb1\x4d\x7a\x57\x1c\x31\x8f\xa0\xd0\xdb\xb1\xb5\xd9\x23\x1f\x3c\xf4\x4e\x7a\x97\x10\xa1\x44\xd8\x7c\x24\x13\xe1\x36\x57\xc7\xd6\x41\xda\x66\x8f\x00\x29\x95\x4a\x78\xf0\xc1\x07\x79\x7c\xf6\xa7\x1a\xd8\x3e\x03\xab\xf4\xb7\x0b\xa3\x77\x4e\xd4\xbe\xb8\x7f\xaa\xf2\xdf\x15\x05\x1f\x4e\x19\xf8\xdd\xb1\xd8\xe3\x8e\x00\x24\x2e\xc1\xd2\xca\x4a\x4d\xf0\xee\xae\xcf\xae\x56\x8c\x2b\xa7\x4d\x5f\x7d\x33\x52\x12\xd4\x54\x83\x58\xe1\xea\xfa\xf8\x32\x72\x3f\x82\x15\x3f\x68\xcc\x54\xdb\x93\x57\x36\xb4\x2f\x5d\x1d\x58\xbb\xb4\xd0\x17\xcc\xac\xfa\x62\x51\x32\x34\xa5\x94\x2d\xc6\x58\x4b\x4a\xd9\x62\x60\x2d\x4d\x58\xb4\x11\xbf\xb4\xc5\x18\x4b\x7d\x9b\x84\x1c\xa5\x27\x00\x08\xd7\x64\x50\x1f\xa2\x06\xc0\xb5\xcf\x30\xea\x2e\xa0\x27\xa5\x54\x31\x24\x2f\xd9\xb2\xcf\x58\x19\x80\x2f\x01\x7f\xd5\x0b\xcb\xab\x5e\x58\x9e\xed\xef\x94\x4f\x8f\x34\x2b\x7d\x1d\xbe\xa1\xd6\xf2\x06\xc7\x97\xfd\xad\x5b\x16\x4a\xdb\x47\x1b\xc5\xf1\xfe\x76\xa1\xe6\x09\xe6\x31\x20\xb5\x22\xc2\x68\x60\x57\x05\x34\xb5\x80\x6d\x3a\x24\xa1\x59\x72\x92\x41\xaa\x80\x77\x22\x50\x4c\xfc\x56\xab\x30\xda\x86\xba\xf8\x39\x84\x5c\xb4\xdf\x1e\x5f\x79\xe6\x9d\xb1\xe6\x09\x74\x77\x93\x2a\x3e\x22\x0c\x43\x7d\x9c\xaa\x44\x2d\x06\xdb\xdc\xd0\x61\xf5\x6b\x6a\x99\x98\xe6\x84\xad\x9c\x5a\x07\xa6\xe4\x0a\x0d\xb8\xe6\x66\x4f\xb9\x67\x69\x84\x4a\x1f\x13\x51\x26\x7f\x89\x96\xdb\xac\x87\x2c\x53\xca\x24\x6c\x7a\x60\x1f\x78\xe0\x01\x25\x34\x94\x00\x2c\xc7\xbb\x40\xb7\xde\x73\xbe\xfe\x47\x3b\xe7\xca\xff\x8e\x0b\x56\x05\xd0\x15\x05\x64\xb0\x41\xdf\xd1\x18\x2b\xa9\xd4\xfb\x0d\xfa\x7a\xbf\x72\x6b\xd0\x8d\x53\x30\x29\xb5\x81\xd7\x1d\xdf\xe9\xe5\x42\x24\xee\x4a\xea\xdd\x15\x2d\x9e\x22\x98\x14\xcd\x62\xd8\xb8\x36\xd0\xbe\x72\x71\xe3\xda\xf9\xcb\x1b\xd6\x2e\x2e\xf6\x05\x33\x9d\x82\x5c\x96\x52\x36\x19\x63\x4d\x29\x65\x13\x12\x2d\x44\xbb\x1a\x53\x02\x23\xb6\x2e\x12\xb7\x84\xb8\x23\x6a\x2f\x42\xf2\x05\x79\xc5\x7f\xd7\xeb\xfc\x5a\x3e\xb5\x3e\xf4\xed\xfa\x89\x20\x01\x39\xec\x28\x0e\x4a\x97\x01\x94\xc1\x50\x59\xf5\x45\x79\xd5\x6f\x12\xa5\xc8\x58\x00\x00\x20\x00\x49\x44\x41\x54\x57\xae\xd5\xda\xa7\xde\x1e\x5f\x19\xa8\xb5\x0a\x83\xe3\x4b\xfe\xf6\x1d\xf3\xe5\xdd\x9b\x96\x4a\x5b\xfb\xdb\x85\x1a\x97\xe0\x6a\x49\x98\xa9\xb5\x85\x94\x5b\x83\xae\x4b\xa3\xc7\x23\xd2\xfe\x49\xda\x0b\x22\xfd\xe9\x2e\x4d\xb3\xde\xba\x00\x04\xa4\x98\xd8\xd8\x7a\xeb\xb5\x6d\xcb\x4f\x07\x05\x39\x07\x60\x29\x7e\x06\xc9\x56\xf4\xab\x57\xaf\x2a\xbe\xd8\xac\x66\xc0\x3e\x37\xf4\x7b\x9b\xc2\x5d\x0f\x1e\x13\x2d\xb4\x0d\x53\x9b\x2e\xe5\xee\xa2\x37\x15\xe3\x30\x75\xc4\x66\x76\x99\xa4\x53\x56\x07\x6c\x0c\x32\x59\x22\x14\x67\xaa\x5e\xa9\x54\xc2\x03\x0f\x3c\xc0\x87\x87\x87\x55\x1f\x94\xbf\x5d\x1d\x5f\xf6\x77\x1f\x3b\x5b\xff\x0f\x63\xcb\xfe\x83\x5c\x32\x5f\x1a\xf7\x36\xa4\x67\x37\x0d\x63\x40\xea\x93\x26\x3d\x20\x55\x39\xf5\xb3\xd3\x20\xda\x8a\x09\x12\x43\x1b\x2c\x65\x4e\x47\xd6\x4a\xc0\x65\x30\xd3\xdf\x99\x3c\x3b\xbc\xfa\xee\x7b\x43\xad\xb3\x0b\xe5\x60\x2a\x28\xc8\x65\x00\x0d\x00\x4d\x00\x4d\xc6\x58\x33\xbe\x56\xc2\x42\x7f\x9f\xa2\x8d\xc8\x7a\x48\x3e\x9f\x88\xae\x50\x10\x51\xf0\xb1\x2b\x34\xba\x2c\x50\x7d\xef\x75\x55\xb4\x03\x8c\x74\xb8\x24\x5f\x3d\x07\x44\xd6\x88\xb2\x4e\xf4\x83\x9b\x93\x67\x22\xa5\xf4\x11\x1f\x51\xa0\xfe\x18\x63\x95\xa0\x20\x2b\xb3\x95\x4e\x65\xae\x3f\xb8\x70\x6a\xac\xf9\x7a\xad\xe5\x0d\x6f\x9f\x2f\xef\xdc\x33\xdd\x77\x60\xac\xe1\x6f\x2d\x86\xcc\x4f\x09\x80\x38\xee\x40\xb7\x98\xea\xa7\x98\xa5\xc3\x18\xe4\x21\xe9\xab\x64\xd0\x5d\xc9\xf8\x59\xb0\x6e\xe1\x4c\x7f\xe7\xd2\x8b\x3b\x97\x1e\x5f\x29\x86\x57\x20\x31\xc7\x18\x5b\x8a\x05\xb7\x3a\x41\x0c\xef\xbf\xff\xbe\xce\x32\x3a\x6e\x4d\x0a\x8f\x93\x72\x5a\x66\xb3\xc8\x6d\x38\x4c\x6d\xda\x68\xa2\xc9\x14\x2a\x30\xe1\xb7\xcd\x41\x98\x82\x3d\x79\xfc\xa2\x3c\xd2\xca\x46\xa0\xcb\x5c\xa2\xc9\x48\xbc\xe6\x9e\xa8\x01\x5a\x96\x52\x56\xb7\x2f\x94\xf7\xdd\x7b\x76\xe3\x9f\x6f\x6c\x7a\x9f\x54\xef\x9a\x74\x03\x91\x40\x6f\xfc\x01\x89\xcb\xd2\x0d\x77\xd0\xf7\x19\x7a\xc4\x8e\x29\xbc\x46\x52\x6f\xa9\xee\xcb\x0b\x26\xd1\xf4\xc5\xd2\x85\xc1\xd5\xb3\xa7\x47\x9b\x6f\x4d\x0e\xb4\x2f\x75\x0a\x72\x1e\x91\x1b\xb2\xc4\xc0\x9a\x52\xca\x46\x2c\x30\xa8\x85\x11\x20\xb2\x30\xe8\x37\x56\x95\x35\x91\xda\xe9\xa8\xf8\x46\x85\x46\xca\x6c\x37\x6c\x68\xa3\x82\x86\xd4\xe3\x24\x3f\xe5\xd6\x00\xd1\xc7\xa8\xd0\x1d\x5f\x5e\x1c\xac\x4e\x5c\x19\x00\x15\xc6\x58\x05\x40\x25\xe4\xa8\xcc\x57\x82\xab\xf3\x95\xc6\x85\xb7\xc7\x57\x5e\x1b\x6d\x14\x37\xef\x9f\xaa\xdc\xb8\x6b\xae\x6f\x5f\xb5\x55\xa8\x73\x25\x41\xe8\xc3\xd0\x04\x41\xef\x93\x60\xe9\xe7\xaa\xc3\x6a\xcf\x5f\xed\xeb\x50\xc2\x7d\xc5\x0f\x16\x5e\xdc\xb9\xf8\xa3\x99\xfe\xce\x19\xc6\xd8\x14\x80\xb9\xf8\x59\x24\x5f\x93\x9b\x9f\x9f\xc7\x5b\x6f\xbd\x65\xb3\x9e\x6d\x31\x3c\x97\x5b\x61\x53\xc0\x14\xa7\x0d\xd6\x44\x87\x8e\xdb\x25\x20\x60\xb8\x36\xa5\x54\x1d\x46\x0a\x28\x33\x5c\xf1\x0f\x17\x21\x59\xb0\xae\x76\x5c\x84\x8b\xcf\x7f\xfe\xf3\xd4\xd2\x28\x43\xa2\xba\x6b\xae\x7c\xe3\x27\xce\xd5\xff\xbc\xbe\xea\xdd\xc5\xc0\xa8\x00\x33\x0a\x89\x54\xbe\x2d\xf5\x2a\xae\x5e\xf0\x5c\x7b\x15\x00\xc1\xa5\x58\xe8\x0b\x66\x4e\x8f\x34\x4f\x9e\x1e\x69\xbe\xb5\xd8\x17\x5c\x13\x0c\x4b\x00\x96\xc0\xd0\x00\x92\xbf\x44\x60\xa0\x1b\xbb\x48\x7d\x37\x84\xfc\xa9\xd4\xc3\xc3\xf3\xe7\xcf\xa3\xd9\x6c\x02\x00\x9e\x7f\xfe\x79\x27\x8f\x3d\xcf\xe3\x41\x10\xa4\x60\x36\x6f\xde\xcc\xaf\x5c\xb9\x22\x00\xe0\xae\xbb\xee\xe2\x00\xe0\xfb\x3e\xf6\xee\xdd\xdb\xe3\xe2\xc4\xd6\x86\xba\xd5\x5d\xce\x44\x80\x40\x73\x65\xe2\xbf\x8a\xf6\x57\x05\x50\x85\x44\x8d\x4b\xd4\xaa\x6b\x85\xb1\x3d\x33\x95\x7d\xfb\xa7\x2a\x87\x87\x56\x8a\xa3\x05\x19\x9d\x87\xc2\x54\x50\xb3\x47\xaa\xab\xd5\x93\xac\x07\x46\x52\x0c\xd3\xe6\xa2\xfd\xab\x9d\x4b\x3f\x7c\x7d\xcb\xf2\x4f\x43\x8e\x8b\x00\x26\x01\xcc\x00\x58\x42\xfc\xca\x3d\x00\xf1\xe8\xa3\x8f\xe6\x1a\xab\xeb\x80\x59\x2f\xfc\x7f\x6d\x18\x17\x1c\x07\xd2\x47\x07\xda\x24\x67\x5e\x89\x65\x13\x36\x80\x99\x41\xeb\x11\x4a\xa2\x52\xa9\xf0\xcf\x7c\xe6\x33\x18\x19\x19\x01\xd2\x42\xa3\xb6\x77\xba\xef\xc8\xc7\x2f\xd4\xff\x7c\x43\xab\x70\xd4\x28\x34\x3e\xe4\xb4\xde\x63\xfe\x3a\x91\x3b\x72\xe5\x9d\xb1\xe6\x5b\x17\x86\x56\xdf\x6d\xf8\xe1\xb4\xe4\x58\x00\x62\xa1\x01\x34\x54\x1c\x03\x91\xd0\xd0\x83\x9d\x3d\xc2\x42\x2d\xa1\xaa\x16\x82\x20\xc0\xb9\x73\xe7\x00\x00\x4f\x3f\xfd\x74\x92\xdf\xd7\xd7\xc7\x57\x57\x57\xaf\x47\x48\xe7\x4a\x04\xbf\x7e\x92\x9a\xce\xa3\xd4\xc7\xb6\x75\xb7\x06\x91\xe0\xf0\xa4\x94\x89\x0b\x03\x25\x3c\x80\x2a\xa4\xac\x31\xb0\x5a\xa5\xcd\xc7\x76\xce\xf5\xed\x3b\x70\xad\x72\xe3\xf8\xb2\xbf\xb5\x28\xb8\xaf\xf3\x57\x33\x17\x93\x00\xb3\xed\x7c\x14\x5b\x12\x90\xe2\xe4\xf8\xca\xf3\xcf\xee\x5e\xf8\xfe\x5a\x51\x9e\x97\x52\x4e\xc6\x16\xc7\x02\xba\x02\x5c\xbc\xf0\xc2\x0b\xf8\xf5\xaf\x7f\xfd\x41\xf8\xb7\xde\x39\x60\x9b\x7f\xeb\x99\x53\x59\x38\xb2\x68\xed\x81\xa5\x82\x03\x04\xd0\x65\x52\xd9\x04\x84\xcd\xa2\xd0\xf1\xd0\x3a\xb6\x0e\x71\x00\xe8\xef\xef\xc7\xa7\x3f\xfd\x69\x8c\x8e\x8e\x02\x44\x68\xec\x9f\xaa\xdc\xfa\xf1\x0b\x1b\xfe\xd3\xc0\x5a\xe1\x30\x03\xeb\xee\xd1\x20\x31\x0b\xc3\x7a\x5d\x92\xd2\x82\x80\xec\xc3\x80\x96\xad\x82\xa9\x40\x77\x0f\x87\x2d\x49\x89\xa0\x80\x60\xba\xbf\x7d\xe5\x9d\xb1\xe6\x9b\xe7\x87\x56\xdf\x5d\x29\x85\xd7\x24\x4b\x0b\x0c\x68\x16\x46\xbc\xac\x1a\xc4\x2e\x49\x8f\x65\xa1\xe8\xbc\x74\xe9\x12\x3a\x9d\x0e\x4e\x9d\x3a\x85\x8b\x17\x2f\xe6\x15\xde\x30\xe4\x65\xf9\xc5\x36\x57\xd4\xaa\x50\xaa\xd5\x2a\x0a\x85\x02\x16\x17\x17\xc5\xa7\x3f\xfd\x69\xce\x39\xc7\xf6\xed\xdb\xa9\x9b\x93\x7c\x57\x57\x0b\xb2\x26\xb1\x10\x25\x40\xa4\x94\x55\xc6\x58\x4d\x4a\x59\x67\x60\xb5\x4a\x87\x8f\xec\x9c\xeb\x3b\x70\x68\xb2\xff\xf0\xd8\x72\x71\xab\x27\x98\x9f\xec\xe3\x48\xce\x38\xd1\x96\x74\xb5\xa0\x74\xfc\x48\x62\xf7\x46\x05\xc5\xbb\x51\xf1\x2b\x1b\xda\xa7\x9f\xd8\x3f\xfb\xad\xc5\x72\x78\x1a\x0c\x57\x00\x4c\x4a\x29\x17\x10\xc5\x98\xda\x00\x82\x53\xa7\x4e\xe1\x99\x67\x9e\x41\xbc\x94\x6d\x1a\xdb\x94\x4f\x94\x57\x79\xe6\x93\x8b\xdf\x26\xfc\xa6\xfa\x26\x97\x27\x0f\x5d\xae\xb1\x94\x82\x65\x19\x95\xf5\xe4\xb2\x48\x6c\x1d\xb2\x11\x68\x2a\x37\x5e\x57\x2a\x15\xdc\x77\xdf\x7d\x18\x19\x19\x81\x0a\xba\x49\x29\xcb\x0c\xac\xf6\x91\xd9\xbe\xc3\xf7\x9e\xa9\xff\x2f\xfd\xed\xc2\x61\xb5\xc2\x91\xde\x90\x95\xde\xaf\x91\xde\x5f\xd5\x9d\xf8\xc9\xbe\x09\xa8\xac\xee\x61\x3b\x29\xf3\x57\x8f\xc4\xf5\x48\x26\xd5\x86\x84\x60\x10\xb3\xfd\x9d\xc9\x93\x63\x2b\xaf\x9f\x1f\x5e\x3d\xb9\x5c\x0a\xaf\x0a\xc8\x05\xc6\xd8\x52\x3c\x18\x1b\x8c\xb1\x06\x90\x2c\xad\xea\x7b\x2f\x04\xa2\x98\x44\x12\xd0\x5c\x5c\x5c\xc4\xf2\xf2\x32\xa6\xa6\xa6\xf0\xca\x2b\xaf\x88\x42\xa1\xc0\xc3\x30\x34\x3d\xb3\xac\x41\xec\xca\xcf\xab\x18\xa0\xe5\x59\x07\x96\xba\x56\xf1\x12\x00\xf8\xec\x67\x3f\xcb\x07\x06\x06\xb0\x71\xe3\xc6\x04\x87\xec\x7e\x98\x9b\xba\x32\x15\x29\x65\x85\x31\x56\x91\x52\xd6\x74\x01\xd2\xdf\xe6\x9b\x76\xcf\xf6\x1d\x38\x34\xd9\x7f\x64\x64\xc5\xdf\x5c\x88\x97\x73\x7b\x52\x8f\x0e\x30\x07\x4c\x97\x4b\xc1\xcc\x4f\x0e\xcc\xfd\xc3\xe5\x0d\x6b\x27\xc0\x70\x09\x91\x8b\xb2\x80\x48\xa8\xb7\x00\x04\x4b\x4b\x4b\xf8\xf6\xb7\xbf\x9d\x65\x49\xdb\x7e\x29\xcf\x5c\xd7\x59\xf8\x01\xf3\x1c\xcd\xf2\x0c\xb2\x04\x13\xc5\xe3\xa4\x89\xc1\x3e\xb0\xf2\x10\x95\xa5\xc1\x6c\xb0\x79\x5c\x14\x00\xe0\xbf\xfd\xdb\xbf\x8d\xb1\xb1\x31\x80\x58\x1a\x3b\xe6\xcb\x87\xee\x3d\x53\xff\x8b\x0d\xad\xe2\x6d\x5a\x68\x0f\x76\x7b\x34\x8f\xb3\x9b\x2f\xd9\x8c\x0d\x01\x89\xe5\x72\x38\x77\x7a\xa4\xf9\xd6\xc9\xf1\x95\xd7\x17\xfa\x82\xf7\x25\xc3\x1c\xd0\x63\x65\xa8\x18\x86\xc9\x1d\x01\x00\xb1\xb8\xb8\xa8\x0e\xcd\x45\xb5\x5a\xe5\x8d\x46\x03\xc8\xe7\x0a\xc2\x90\x67\xb5\x10\x2c\xb0\x36\x98\xf5\x98\xb7\x26\x7c\x1c\x80\xd8\xbc\x79\x33\xbf\xe1\x86\x1b\x50\xaf\xd7\x51\xaf\xd7\x95\x35\x92\xb2\x40\xa0\xf6\xe4\x30\x56\x8e\x05\x48\x55\x13\x20\x83\x0c\xac\xbe\xa1\xe5\x6d\xd9\x3f\x55\x39\xbc\x7f\xaa\x72\xb8\xbe\xea\x0d\x17\x64\xd7\x4d\x35\xbd\xff\xd2\xd5\x27\xca\x72\x94\xe8\x14\x64\xeb\xe9\x8f\x2c\xfc\xf3\xc9\xf1\x95\xa7\x65\x57\x68\xcc\xc4\x01\xd1\x96\x94\x32\x10\x42\x88\x6f\x7e\xf3\x9b\x2e\x2d\xee\x12\x16\x2e\xbe\x66\xf1\x74\xbd\x38\x29\x6d\x36\xd8\x3c\xcf\xd1\xd4\x7e\xf2\xab\x0b\x8e\x2c\xc2\xb2\x24\x11\xb4\x72\x1b\xe1\x79\x3a\x90\xe4\xed\xdf\xbf\x9f\xdf\x7d\xf7\xdd\x28\x14\x0a\xdd\x97\xd5\x24\x6a\x5b\x16\x4b\x87\x8e\x9f\xd9\xf8\x67\x83\x4d\xef\x13\x49\x4c\x23\xbd\x70\xa2\x2e\xbb\x45\x9a\x07\x93\x94\xe9\xbb\x42\xe9\x0e\x51\xcd\xea\x30\xae\xee\xa5\xcd\x17\xb4\x3c\xd1\xbc\x30\xd4\x7a\xf7\xd7\x9b\x1a\xaf\x5c\x1b\x68\x5f\x10\x1c\x73\x40\x5a\x68\xc4\x71\x0c\x75\x34\x7f\x8f\x3b\xd2\x6e\xb7\x71\xf5\xea\x55\x9c\x3a\x75\x0a\x13\x13\x13\x59\xe6\xa6\x6d\xb0\xba\x06\x72\xd6\x80\x47\x4e\x3c\x59\x29\x8b\x86\x24\x6f\xe7\xce\x9d\x7c\xf7\xee\xdd\xd8\xb6\x6d\x1b\x4a\xa5\x12\x74\x0b\x44\xbd\x3a\x80\xee\x72\xae\x8a\x81\xd4\x00\xd4\xa5\x94\x83\x05\xc9\x06\x87\x57\x8a\x3b\x6e\xbc\x5a\x3d\xba\x67\xa6\xef\x50\x5f\x87\x57\xe9\x4b\x85\x34\xa9\x18\x48\xc8\xa4\xf8\xf5\xa6\xc6\x2f\x9e\xdd\xbd\xf0\xfd\xb0\x80\x8b\x5a\x5c\x43\x3d\xab\x40\x08\x21\xfe\xf2\x2f\xff\x72\x3d\x1a\x3e\xf7\xf8\x76\xe4\x67\xcd\xbd\xf5\x28\x5f\x53\x1b\x1f\xf8\x99\xea\xae\x8a\x09\x71\x1e\x44\xeb\xa9\x97\x5b\x1a\xef\xdd\xbb\x17\x9f\xfc\xe4\x27\x95\x4f\x9c\x58\x1a\xe3\xcb\xfe\x9e\xe3\x67\x36\xfe\xd9\x48\xa3\xf8\x1b\xeb\x0e\x84\x9a\x8c\x0e\xb3\xc7\xe1\x46\xa3\x09\x21\xc1\xa4\x98\xae\x76\xae\x9c\xd8\xb2\xfc\xfc\xf9\xa1\xd5\xb7\x3b\x05\x39\x03\x96\x08\x8d\x25\x29\xe5\x92\x0a\x7a\x6a\x02\x23\xd9\x6b\x01\x40\xac\xac\xac\xe0\xc4\x89\x13\x38\x79\xf2\x64\x96\xb9\xaa\xee\xf3\x08\xef\x3c\x66\xb0\xab\x0d\x9a\xd6\x63\x61\xba\xea\xd2\x7c\x00\x10\x23\x23\x23\xbc\x5e\xaf\xe3\xb6\xdb\x6e\x43\xa5\x52\x49\xac\x10\x00\xfa\xbe\x90\x32\xe2\xa5\xf7\xd8\x02\xa9\x03\xa8\x03\x18\x2c\x0a\x3e\xbc\x7d\xbe\x7c\xf0\xd6\x4b\xd5\x3b\xc6\x97\x4a\xdb\x0b\x32\x76\x5f\x68\x70\x54\x0b\xa0\x5e\xac\xaf\x9d\x7c\xe2\xc0\xec\xdf\xaf\xf8\xe2\x6c\x1c\xd7\x50\xc1\xd0\xa6\x94\x32\x90\x52\x06\xb1\xd0\xf8\x30\xb4\xf8\xf5\x0a\xe8\x3c\x0a\x3c\x8f\xd0\xc9\x43\x57\xee\xfe\xd1\x0d\x60\x2e\xa4\x2a\xb9\xcc\x2a\xd3\xb5\x4d\xeb\x99\x70\x71\x00\x62\xcf\x9e\x3d\xb8\xf7\xde\x7b\xd5\xbd\xda\x46\x5e\x1d\x6c\x7a\x5b\x3f\x71\xae\xfe\xef\x47\x1a\xc5\xdf\x80\x04\x4f\xbf\x67\xa0\xb6\x71\x9b\xdd\x88\x64\x7f\x42\x12\xb3\x80\xb6\xd1\xab\xbb\xd5\x58\xea\xe7\x69\x5a\x90\xa9\x37\x54\x57\x8b\xa2\xf1\xee\x58\xf3\xf5\xd7\xb7\x2c\xbf\xb8\x54\x0a\xdf\x57\x02\x23\x8e\x63\xe8\x6e\x89\x7a\x8f\x24\x11\x18\x61\x18\x8a\x89\x89\x09\x4c\x4e\x4e\xe2\xed\xb7\xdf\x56\x3c\xb2\x59\x01\xa6\x44\xcb\x74\x1c\x7a\xb9\xcd\xaa\xb0\x3d\x2f\xd3\xbd\xa9\x8e\x8b\x4e\x1b\x2c\xad\x97\xdc\x4f\x4f\x4f\x8b\xe9\xe9\x69\x9c\x39\x73\x06\x07\x0e\x1c\xe0\xa3\xa3\xa3\xd8\xb3\x67\x8f\x28\x14\x0a\xea\xbd\x1a\xb5\x85\xbe\x8d\x28\x90\xdc\x64\x8c\x35\xa4\x94\x4b\x00\x1a\x41\x41\x2e\x9d\x1f\x5a\x5d\x9a\xac\xad\x5d\xbc\xe9\x4a\xf5\xe8\xe1\xab\xd5\x3b\x2a\x6d\x5e\x85\xda\x7a\x9e\x6c\xa8\x89\x9e\xdd\x42\x5f\x30\xf9\xfc\xae\x85\x1f\x35\xfc\xf0\x12\x63\x6c\x06\xc0\x82\x72\x4f\x10\x2f\x7d\x2f\x2e\x2e\xea\xf4\x03\xf6\xc9\x44\x79\xe9\xb2\xe4\x4c\xf8\x28\xac\x89\xff\xb6\x3c\x65\xb1\x52\xfa\x5c\x56\x2a\xa5\xc3\x86\xd7\x86\xc7\xba\x8f\xc3\x54\x79\xbd\xe6\x9a\x4d\xb2\x3a\x61\xcb\xe5\x32\xff\xea\x57\xbf\xaa\x6f\x6f\x2e\x03\xa8\xf6\xaf\xf1\xf1\xe3\x67\x06\xff\x74\xd7\x6c\xf9\x0f\x79\xfc\x7d\x93\x75\xef\xc9\xc8\x01\x97\xb8\x25\xea\x3a\x96\x2b\xfa\xb5\x60\x12\x53\x03\xed\x8b\xcf\xef\x5c\x7a\xea\xfd\x8d\xad\x53\x92\x61\x06\x91\xc0\x98\x63\x8c\x2d\x40\x73\x4b\xd0\x7d\x77\x24\x79\xc0\x8f\x3e\xfa\xa8\x18\x1a\x1a\xe2\xb3\xb3\xb3\x7a\xd3\x79\x2c\x3c\x0a\x67\x9b\xe0\xd7\x93\x6c\x83\x4b\xc7\x79\xbd\xda\x31\xeb\xde\x69\xb1\x3e\xf2\xc8\x23\xfa\x84\x52\x16\x28\x75\x5f\xea\x52\xca\x3a\x63\x6c\x90\x49\x0c\x6f\x5a\xf2\xf7\x7f\xfc\x42\xfd\xf8\xa6\x25\x7f\x27\x97\x8c\xeb\xcf\x7c\xd5\x0b\x1b\x4f\xef\x59\xf8\xe7\x77\x47\x9b\xcf\x6a\xc1\xd0\xb9\xd8\x3a\x6c\x03\x08\x56\x56\x56\xc4\xb7\xbe\xf5\x2d\x97\x05\x08\x43\x99\x89\x57\x14\x6e\x3d\xcf\x79\x3d\x38\xae\xc7\xda\xd7\xf3\xd7\xe3\x6d\x40\x3f\x01\x4c\xc6\x95\x58\xfc\x27\xb4\x7b\xca\x40\x05\xeb\xea\x94\x09\x87\x5e\x57\xd3\x01\x80\xaa\xf7\xe0\x83\x0f\xb2\x6a\xb5\xaa\x68\xf3\xa5\x94\xfd\xe5\xb0\x30\x74\xf7\x85\xfa\xbf\xdb\x33\xd3\xf7\xc7\x1c\xac\xd4\x8d\x6f\xe9\xab\x1f\x71\x17\x92\x99\xce\x12\xed\x82\x14\x8c\xea\x2a\xdd\x3c\xa4\x11\x13\xdb\xb8\x4c\xad\xa4\x80\x25\x56\x46\xc7\x93\xad\xb7\x36\xaf\xbc\xf8\xd4\xde\xf9\xc7\x66\xfa\x3b\xa7\x24\xe4\x15\xc6\xd8\x24\x80\xc9\x58\x73\xcd\x23\xb2\x34\x56\xe3\x41\xd8\x01\xa2\xa3\xe7\xce\x9c\x39\x83\x27\x9f\x7c\x12\xad\x56\x8b\xad\xae\xae\xd2\xa6\x15\x5f\x74\xfe\xe8\x79\x94\x9f\xea\x5e\xfd\x4a\x74\x43\x38\x3a\x8c\xfe\xa7\x97\x9b\x9e\xb7\x6d\xc7\x83\xc1\xd8\x4f\x87\x90\x08\x1c\x27\xf0\xa6\x7b\xfa\xfc\x75\x7c\x0a\x1e\x00\xf0\xea\xab\xaf\xca\x4a\xa5\xc2\x86\x87\x87\x65\x4c\xa7\xda\x5a\x1f\xc6\xfc\x6d\x23\xda\x8e\xbf\x26\xa5\xec\x48\xa0\xdd\x28\x89\xa5\x73\xc3\xcd\x09\xc9\xd0\x19\x6c\x16\x47\xd5\xd2\x6d\x87\x8b\xf6\xeb\x5b\x1a\x4f\xbe\xb9\xb9\xf1\x73\xc9\x71\x15\xc0\xb5\x58\xe0\x2f\x33\xc6\xd6\x10\xbb\x91\x4f\x3e\xf9\x24\x96\x96\x96\x74\xde\xe9\x7d\xa4\x7f\x2a\x09\x02\xa7\xf3\x46\x09\x04\xca\x77\x1b\x2e\xd3\x9c\xd1\x9f\xb1\x8e\x57\xc2\x8e\x4f\xd5\x85\x21\x4f\x7f\x26\x0a\xaf\x69\x1c\xd2\xe7\x96\x6b\x17\x53\x5e\x49\x75\xbd\x29\xa9\xff\xb9\xcf\x7d\x8e\x8f\x8f\x8f\xab\xbc\x32\x80\x0a\x17\xa8\xdf\xfe\xde\x86\xdf\xb9\xe5\x72\xf5\x7f\x2a\x86\x7c\x58\x97\x11\x1f\xca\x22\x49\x9e\xe3\xb7\x10\x09\x8d\xb9\x4a\x30\xf9\xd2\xf6\xa5\x67\xce\x8e\x34\x4f\x84\x0c\x53\x88\x2d\x0d\x74\x03\xa0\xfa\xe6\x2d\x81\xf8\x64\xec\x33\x67\xce\xe0\xe7\x3f\xff\xf9\x7a\x78\xb4\x5e\x9e\x5e\xcf\x33\xf8\x30\xb4\xd9\x07\x7d\xf6\xeb\x4e\xf7\xdc\x73\x0f\x3f\x78\xf0\xa0\x7a\x51\xcf\x8b\x2d\x53\x7d\x17\x6a\x15\x71\xdc\x03\xc0\x30\x17\x18\xde\x35\xd7\x77\xf0\xb6\xf7\x6a\xc7\x87\x57\x8a\x5b\xcf\x0f\xad\xbe\xf4\xd4\xde\xf9\xff\x7b\xd5\x17\x13\x88\xf6\x6a\xcc\xc4\x56\x62\xf2\x2e\xca\x9b\x6f\xbe\x89\x17\x5f\x7c\xf1\xc3\xe0\xe7\x7f\x0b\xb8\x3c\xb0\x1f\x56\x9b\x89\x35\xe4\x91\x4c\x93\x5f\x63\x33\xbd\x5c\xbe\x9d\x5e\x9e\x3b\x30\x13\x2f\xbb\xaa\x81\x50\x06\x50\xbd\x61\xb2\xff\xee\xc3\x57\xfa\xff\x87\x62\xc8\x86\xa3\x37\x51\xb5\x13\x1b\xf4\x8f\xfe\xb8\x5c\x16\x2a\xa3\x53\x72\x5d\x8b\x65\x10\x97\x44\xc9\xd9\x80\xcb\xe0\xe2\xc6\xd6\xe9\x17\x76\x2e\x3e\x35\x53\xed\x9c\x89\x5d\x13\x5d\x68\xa8\xef\x70\xe8\x71\x0c\x31\x3f\x3f\x8f\x93\x27\x4f\xe2\xe4\xc9\x93\xaa\x5f\x7a\xca\x32\xff\x4d\xcf\x83\xd6\xa7\xf9\x59\x71\x05\xda\xb6\x09\xb7\xcb\x45\xcd\x72\x51\x4c\x75\x6d\x7e\xbc\xcd\xff\x77\xc2\x3f\xfb\xec\xb3\x62\x6a\x6a\x8a\xdf\x70\xc3\x0d\x18\x1a\x1a\x0a\x00\x70\xed\xe5\x3e\x75\x06\x49\x2b\x76\x13\x9b\x21\x93\x8d\x73\x43\xab\x0b\x8b\xe5\xe0\xc2\xbe\xe9\xca\xfe\xd3\x23\xcd\x37\x56\x8b\x62\x42\x4a\x39\xc5\x18\x9b\x83\xb6\x9d\x9c\x31\x26\xde\x78\xe3\x0d\xbc\xfc\xf2\xcb\x36\xde\xe8\x74\xe7\xe9\x9b\x89\xef\x59\xbc\xd0\xf9\x61\x7a\x9e\x26\xfe\x9a\xee\x5d\xf4\xd8\x70\xe5\xa1\x49\x00\xdd\xe5\xd8\x3c\x7e\x67\x96\x85\x91\x67\xf0\xc0\x76\xfd\x47\x7f\xf4\x47\x3c\xfe\x50\x92\x8a\x9e\xd7\xb7\xce\x97\x0e\x7d\xfa\xd4\xe0\x7f\xae\xad\x15\x8e\xa4\xb7\x10\x53\xab\xd9\x9e\x92\x5d\xa1\xda\xe9\xe1\x56\x58\xf4\xca\x9b\x35\x2f\x6c\xbe\x3d\xde\x7c\xe5\xc4\x96\xe5\xe7\x1a\xa5\xf0\x3d\xa4\x85\x86\xda\xf9\x99\x04\xd4\x00\x08\x21\x04\x5e\x78\xe1\x05\x3d\xe8\x09\x03\x1f\x6c\xbc\xc8\xf3\x6b\xc3\x47\xf1\xe6\x19\xc8\x26\x81\xe6\x6a\x13\x8e\x7b\x64\xe4\x9b\xda\x74\xc1\xda\xda\xe4\xa5\x52\x09\x6b\x6b\x6b\x22\x1e\x37\xfa\x3e\x10\xf5\x22\x9d\xda\x7d\x5a\x63\x8c\x55\x21\x51\x29\x48\xf0\x90\xa1\x89\xe8\xfd\xa0\x05\x29\xe5\x42\xbc\x11\xaf\x0d\x40\xac\xac\xac\x88\x1f\xfc\xe0\x07\x68\x34\x1a\xb6\xb1\x6a\xe3\x8f\xab\xaf\xd0\xca\x5d\x02\x81\xe2\x36\xe1\x74\x4d\x6c\xda\xa6\x6b\x5e\xdb\x70\x66\xdd\x27\xd7\x2e\xc1\x41\x09\x37\x69\x29\x97\xe6\x72\x11\x9d\xea\x5c\xfc\x49\x46\x8e\xee\x0a\x4a\xad\xba\x56\xd8\xfc\xc0\xc9\xa1\xbf\x18\x5f\xf6\x3f\x0b\xc9\xb8\xf6\xc2\x2a\x14\xe1\xa6\x83\x80\xf5\xe5\xb6\xd4\x69\x52\x70\x27\xba\xbb\x50\x42\x62\xa9\x1c\xce\xbd\xba\x6d\xf9\x99\x77\x47\x57\x5e\x6e\x7b\x52\x2d\xd7\xa9\x20\xa8\x7a\xbf\x24\xd9\xf1\x19\x86\xa1\xb8\x7c\xf9\x32\x7e\xf2\x93\x9f\xd8\x1e\xaa\x89\x2f\xb4\x2c\x6b\xb0\x02\xf6\x41\x40\x61\xb3\x06\x64\x9e\x81\xa4\xd3\xec\xd2\x80\x34\xe5\x15\x3e\x34\x2f\x8f\x55\xa2\xc3\xe2\xf8\xf1\xe3\x7c\xdb\xb6\x6d\xf0\x7d\x5f\xed\x01\x49\x05\x4f\xa5\x94\xe5\x78\x3f\x08\x47\x24\x24\x9a\xda\xbb\x41\x49\x30\xf4\x89\x27\x9e\xc0\xf4\xf4\x74\x16\x0f\x74\xda\xf3\x5a\x5f\xb4\x1e\xad\x9b\x57\x29\x64\x59\x13\x36\x1a\x5c\x0a\x24\x8f\x11\xd0\x33\x76\x4c\x07\xf9\xac\xa7\xd3\xae\x0e\xe9\x04\x50\x62\x38\x00\x51\x2a\x95\x70\xfc\xf8\x71\xee\xfb\xbe\x2a\xf7\x00\x54\x8a\x21\xab\xdf\x35\xb1\xe1\xf7\xc6\x96\xfd\x64\xaf\x86\xfa\x5e\x47\xf2\x6e\x02\x98\x76\xe4\x7e\xf4\x93\x9c\xce\x05\xb5\x9c\xaa\x7b\x1c\xfa\x41\x3a\x48\xc1\x80\x75\xc3\x1c\xea\x93\x83\x33\xfd\x9d\x2b\x2f\xec\x5c\xfc\xd9\xc4\x60\xeb\x8d\x90\xc9\x49\x86\xe8\x15\x6b\xa4\xb7\x22\x27\x42\x63\x69\x69\x09\x6f\xbe\xf9\x26\xde\x79\xe7\x1d\x17\x3f\x28\x1f\xf5\xa4\xc3\xba\xea\xd8\x60\x74\xde\xda\xda\xb1\xe1\xb5\x69\x99\xac\x49\x6e\xc3\xa5\xe7\xe9\xf7\xb6\x76\x6c\x63\xc9\x55\x2f\x81\x7d\xea\xa9\xa7\x00\x40\x7c\xf1\x8b\x5f\x44\xbd\x5e\x17\x71\x79\x10\x1f\x3b\xd0\x46\x24\x44\xd4\x0b\x76\x41\x5c\x96\xfa\xc4\x63\xbc\x82\xa2\xf3\x2e\xeb\xd9\xb9\x14\xa3\xa9\x3e\xed\x0f\x4a\xa5\x12\xaa\xd5\x2a\x9f\x9d\x9d\x15\x00\x70\xe7\x9d\x77\xe2\x85\x17\x5e\x10\x43\x43\x43\x1c\x00\xe2\x55\xb7\xbc\xd6\x00\x85\x75\x29\x97\xac\xe7\x0e\xc7\xaf\x00\xba\xfb\x38\x68\x12\xda\x6f\x96\xe6\x30\xd5\xc9\xca\xe3\x00\xb0\xb6\xb6\x26\xb6\x6d\xdb\xa6\x6f\x33\xae\x14\x24\xab\xdd\x7c\xa5\xfa\xc9\xbd\xd3\x7d\x5f\x63\x60\x7e\x77\x01\xa4\x6b\x33\xa4\x5e\xa7\xd6\x62\xd7\xea\x65\xa6\x04\x32\x05\xc6\xb4\x7d\x1b\x36\x0b\x24\xfa\xac\xc0\xd5\x0d\x6b\x13\xcf\xed\x5a\x7c\x7c\xb2\xd6\x7e\x47\x32\x4c\x32\x30\xe5\x9e\xa8\xbd\x19\x6a\x5f\x86\xe8\x74\x3a\x62\x72\x72\x12\xbf\xf8\xc5\x2f\x10\xbf\x29\x6a\x1b\x34\x2e\xed\x8c\x1c\xe5\x2e\x5c\x79\x26\xbd\x49\x80\xdb\xb4\xbb\x69\xc2\x9b\xe8\xc8\x73\xaf\x70\x99\xc6\x82\x0d\xb7\xad\xdc\x49\xd3\x0f\x7e\xf0\x03\x1c\x3b\x76\x0c\x5b\xb6\x6c\x11\xb1\x32\xd2\xcf\x2f\x49\xfa\x19\x2f\x8d\x27\x67\xaf\x9e\x3e\x7d\x5a\xc7\x99\xd7\x8a\x03\x7a\x79\x6b\xd3\xd2\x29\x9a\x07\x06\x06\xf8\xf2\xf2\xb2\xb8\xff\xfe\xfb\xd5\xdb\xde\x91\x72\x94\x12\x37\xdd\x74\x53\x72\xcd\x18\xe3\xe7\xcf\x9f\x87\x94\x12\x4f\x3e\xf9\x24\xe5\x9f\x6b\xbe\xf5\xb4\xf9\x01\xee\x8d\x49\xb9\x2a\xaa\x82\x4d\x4a\xd9\x06\x98\x29\xb9\x84\x4d\x92\xb6\x6f\xdf\x8e\x4f\x7d\xea\x53\xd0\xe2\x1a\x15\x44\xef\xa0\x1c\xb9\xef\xdd\xc1\xff\xad\xbf\x5d\x38\x20\x01\x80\x75\x23\x96\x9a\x27\x91\x6c\xe4\x4a\x9f\xf7\x99\x48\x10\xed\x0b\x6c\x00\xe2\x2f\xb3\x77\x7b\xdd\x7d\xa9\x2d\xf9\x17\xc9\x15\x31\x31\xd4\x3a\xf9\xcc\xee\x85\xc7\x17\xfa\x82\x73\x12\x52\x2d\xb1\x2a\xa1\xd1\x44\x7c\x4c\x1f\x63\x4c\x04\x41\x80\xa7\x9f\x7e\x5a\xbd\xd2\xee\xd2\x30\x30\x94\xad\xe7\x1e\x1f\x42\x59\x16\x6c\x9e\xba\x79\xeb\xd8\x2c\x15\xdb\x58\x73\x8d\x2f\x93\xb2\x72\x4e\xee\x2d\x5b\xb6\xf0\xe3\xc7\x8f\xa3\x5c\x2e\x03\x40\x72\x62\x3b\x80\xd4\xb1\x89\x41\x10\x88\x89\x89\x09\x7d\xc5\xcb\xe6\x0a\xd0\x32\x68\x79\x2e\x81\x9c\x94\xa9\x97\xfd\x8e\x1d\x3b\xc6\xf7\xed\xdb\x97\x3a\x72\x40\x2b\x37\xf5\x29\xf9\x9d\x98\x98\xc0\x4f\x7f\xfa\x53\xc1\x39\xe7\x42\x88\xf5\xcc\xc9\x14\x7f\x1c\xf5\x9c\x96\x9d\x5e\xce\xb4\x02\x17\x43\x40\xca\x69\xb2\xc1\x98\xa4\x2e\x07\xba\x71\x0d\x19\x9d\x9a\xed\x43\xa2\x56\x6b\x15\xb6\x7e\xf6\xdd\xa1\x3f\xdf\xb4\x54\xfa\x9c\x2b\x26\x61\x3a\x0f\xa3\x27\x8e\x91\xf8\x28\xd9\xcb\xad\xea\x03\x46\x67\x87\x57\x5f\x7f\xfa\x23\xf3\x3f\x5a\xf1\xc5\x7b\x60\xc9\x21\x2e\x2a\xf2\x9e\xf8\xc3\x52\x4a\x71\xf5\xea\x55\xbc\xfe\xfa\xeb\xb8\x74\xe9\x92\xea\x77\x5e\xa1\x41\x93\xcd\x72\xb0\xc1\x1a\x07\xa6\x05\x06\x06\x78\xd7\x04\x30\xd5\xfb\xff\x7d\xfa\xfa\xd7\xbf\xce\x39\xef\xb2\x48\x08\x01\xcb\xfb\x27\xb6\xf4\x81\x79\x71\xec\xd8\x31\xbe\x7f\xff\x7e\xfd\x58\x46\x8e\xee\x72\xb2\x12\x6a\xfa\x41\x48\x02\xda\xcb\x8f\xda\x89\x6c\xe2\x9d\x77\xde\xc1\xb3\xcf\x3e\xfb\xff\xea\xb3\xb1\x7d\x90\xc9\x64\xfe\xb8\x98\xe7\x12\x18\x46\xb3\x97\xc6\x35\x3c\xc1\xea\xb7\x5e\x1a\xf8\xad\xf1\x25\xff\x3e\x65\x59\x24\x4b\xa3\x34\xb1\xde\xad\xe5\xa9\x85\x16\x20\xe5\xaf\x44\x59\xb2\x27\x26\x82\x38\x5f\x30\x88\xd3\x23\xcd\x57\x9e\xfe\xc8\xc2\x63\xad\x62\x78\x11\xd1\x86\x2e\x7d\xe5\x44\x09\x0d\x01\x40\x7c\xe3\x1b\xdf\xc8\x32\x09\x5d\x13\xd7\xc5\x9f\x3c\x82\x57\xe5\x9b\xda\x77\x69\x4c\x5b\x1b\x26\xdc\xb6\x36\x6d\xcf\xd4\x35\x36\x6c\x6e\x95\xc9\x9c\xcf\x6a\x7b\xbd\xe5\x1c\x80\xf8\xfe\xf7\xbf\x0f\x15\x47\xf8\xe8\x47\x3f\xca\x5f\x7d\xf5\xd5\xf5\xf2\xc0\xf6\x5c\xb2\xe8\xc2\xc0\xc0\x00\x7f\xe0\x81\x07\x50\xab\xd5\xf4\x95\x1f\x75\x94\xa2\xc7\x05\xfc\xa1\x95\x62\x6d\xb0\x59\x1c\x2d\x08\x94\x19\x18\x6f\x7b\x62\x69\xae\x2f\x98\x9a\xab\x74\x9a\x92\x47\xca\x4a\x7b\x29\x32\x38\x78\xf0\xa0\x78\xf6\xd9\x67\x5d\xf4\x66\xf5\x27\xab\x8e\x8b\x9f\x00\x3e\xd8\x4b\x6e\xb4\x71\xd7\x04\x49\xe1\x7b\xf8\xe1\x87\xf5\xa5\xb3\x0a\x24\xea\x07\xa6\x2a\x77\x7d\xf2\x6c\xfd\x3f\x97\x82\xc2\xd6\x3c\x0b\xad\xa9\xcf\x13\x98\x3e\x77\x8e\x5e\x24\xe4\xb3\xaf\x00\xa2\x3d\x1a\x27\xc7\x56\x5e\xfa\xe5\xae\xc5\xc7\xd6\x3c\x71\x09\x2c\xd9\x14\xa4\x84\x46\x72\xfa\x53\x18\x86\xe2\x9b\xdf\xfc\xa6\x88\x69\x77\x32\xd6\x50\x66\xe2\x87\xcd\x2c\xcc\x63\xd6\xdb\x2c\x42\x97\xeb\x99\xc7\x45\xc8\x63\xa6\xe7\x99\x38\x59\x34\xbb\x06\xad\x9e\x4c\x56\x95\xa9\xdc\xd6\x66\x1e\x98\x2c\xa1\xaf\xb7\xbf\x1e\xfe\xe3\xcb\x5f\xfe\x32\xaf\xd5\x6a\x40\xf7\x9b\x34\x3e\x24\xfc\xc1\xa6\x37\xb8\x6f\xba\x72\xc7\xde\xe9\xca\x6f\xf6\xb7\xf9\x8d\x5e\xc8\x47\x59\x7c\xc4\xa2\x04\x5a\x01\x97\x33\xcb\xe5\xe0\x95\x77\xc6\x9a\x3f\x3e\x37\xbc\xfa\xda\x62\x39\x58\x00\x4b\x1f\xc3\xd0\xe9\x74\xc4\x0f\x7f\xf8\x43\x4c\x4f\x4f\xe7\x11\x00\x94\x5f\xb6\x67\x66\xed\x8b\x7e\xaf\xbe\x56\xcf\xd1\xdd\xe2\x0a\xf4\x6e\x5d\xee\x71\xbe\x34\x38\x8e\xee\x96\x55\xae\xe5\x43\xab\x1b\x6d\xf3\xf3\x3c\x2e\x84\x90\x47\x8f\x1e\x2d\x20\x32\xd3\x4a\x00\xaa\xc3\x2b\xc5\x5d\xf7\x9c\xaf\xff\xc7\xda\x9a\x77\x93\xbe\x5f\xc3\x68\x6d\xa4\x56\x41\x98\x0a\x61\xf4\x2e\xcb\xaa\xd6\xf5\x5b\x2a\x34\x98\x0c\x4e\x8e\xaf\xbc\xf4\xcb\x5d\x0b\x8f\xad\x15\xe5\x45\x30\x5c\x05\x30\xcd\x18\x9b\x05\xb0\x0c\x60\x15\xd1\x96\xe6\xa0\xd3\xe9\xc8\xbf\xfa\xab\xbf\x12\x1a\x66\xbd\xcf\xd4\xce\xa1\xf6\x0f\x27\x65\x92\x5c\x33\x92\xa7\x97\xe9\x0f\x98\xde\xab\x6b\x49\xee\x4d\xdb\x88\xc9\xb6\xb6\x14\xcd\xf4\xb9\xd3\xed\xeb\x7a\x1b\x26\x3a\x74\x58\xba\x75\x99\xf2\x4c\x87\xa7\x75\xf4\xb6\xe9\xf6\x6a\x9d\x57\x02\x69\xfe\xb8\xda\x54\x13\x87\x3e\x33\x13\x5d\x74\x32\xd1\xf6\x29\xef\x60\xb8\x4f\xf8\xf9\xa5\x2f\x7d\x89\x6f\xd8\xb0\x01\x88\x97\x87\x19\x63\x7d\xc5\x80\xd5\x6e\xb9\x32\xf0\xf1\x4f\x9e\xdd\xf8\xbf\xee\x9c\xeb\xfb\xe3\x4a\x87\xdf\xe2\x09\x3e\xc2\xc1\x2a\x1c\xac\x1c\xbd\x52\xc1\xfa\x3d\x89\x91\x4a\xa7\x70\xd3\xb6\x85\xf2\x67\x76\xce\x95\x0f\x09\x2e\x67\x17\xcb\xc1\x7c\x58\x48\xda\x13\x9c\x73\xec\xd9\xb3\x47\xbe\xfe\xfa\xeb\x36\x7e\x52\x1d\x6c\xeb\x9b\x3e\x87\x73\xf5\x8d\xae\xaa\xd8\x4c\xb4\xbc\xe6\x2b\x2d\x4b\xc1\x7d\xe2\x13\x9f\xc0\x9e\x3d\x7b\x94\x4f\xe7\x01\x28\x17\x03\x56\xbf\xe5\xd2\xc0\x43\x43\xcd\xe2\x1d\xe9\x6f\x84\x46\x74\x27\xcb\xa6\x3a\xe9\xd0\x43\x17\x5a\xa9\xce\x22\x69\x82\xed\xa6\x80\xc9\xe0\xd4\xe8\xca\x2b\x2f\xee\x58\xfc\x71\xcb\x13\x17\x19\xd8\x24\xba\xaf\x55\xeb\x3b\x41\xc5\xe4\xe4\x24\xfe\xf5\x5f\xff\x55\xd7\x34\xf4\xda\xd4\xff\xac\xe4\xd2\xe2\x20\x65\x7a\x39\xbd\x36\xdd\xdb\xf0\x99\xca\x29\xec\x7a\xb4\xb0\xad\x7d\x13\x6f\x6c\xf5\xf3\x98\xd8\x7a\x1d\x0a\x4f\xf1\x9a\xf0\x99\xf8\x6a\xe3\xbf\xad\xed\x2c\x9e\xa7\xda\xff\xd2\x97\xbe\xa4\x5b\x1a\x3e\x63\xac\xd2\xbf\x56\x18\xbc\xfb\xfc\x86\xdf\xfb\xc8\x4c\xdf\x23\x45\xc1\xc6\x53\x9f\x1e\xd5\xc6\x2b\x4b\x7c\x74\xc9\x0b\x92\xd5\x36\xae\x7a\xf7\xdf\x7d\xbe\x7e\xe3\x48\xc3\xff\x3f\x7f\xb5\x63\xf1\x5f\x1a\x7e\x38\xc7\xa2\xcf\x5e\xb4\x3d\xcf\xa3\x3c\xa1\xd7\x79\x9e\xb3\x8b\x07\x14\x27\x47\x6c\x71\x00\x5d\x49\x62\xb3\x2e\xa8\x64\xd7\xf3\x55\xd2\x35\x81\x2a\x4b\x24\xdf\xa6\x4d\x9b\xd8\x9d\x77\xde\xa9\x1a\x2e\x02\xe8\x03\x50\xdb\x3b\x53\xb9\xfd\x96\x4b\xd5\xff\xbe\x28\xf8\xc6\xee\x96\x72\xc5\x45\x06\xfd\x5b\x06\x4c\xbf\x06\xb4\x2f\xfb\xa9\x55\x94\xb8\x8a\x7e\xfa\x53\xea\x3a\x2a\x0f\x99\x14\x67\x47\x9a\x27\x9e\xdf\xb5\xf4\xd8\x4a\x29\xbc\x10\xbf\xa4\xa6\xf6\x69\xac\x20\x76\x4f\x18\x63\xe2\xfc\xf9\xf3\xf8\xd9\xcf\x7e\x06\x21\x84\x46\x54\xea\x71\x73\xa4\x45\x16\xb4\x6b\xa6\x5d\x0b\x52\x9f\x5a\x69\x54\x4b\xea\xed\xe8\xf8\x14\x2c\x15\x0c\x54\x23\x32\xa4\x9f\x89\x8e\x87\xde\x9b\xea\xeb\xf9\xb4\x9f\x94\x17\xd4\xda\xa4\x16\x08\xb5\x36\x38\xa9\xcf\xd1\xcb\x4f\xa0\x97\x1e\x5a\x4f\xcf\x83\x56\x46\x9f\x11\xc8\x35\xe5\x81\xc9\x42\xb4\xf1\x56\xaf\xaf\xa7\x04\xd7\x5d\x77\xdd\xc5\xb7\x6f\xdf\x0e\xc4\x9f\x85\x60\x8c\x55\x2a\x6d\x3e\x7c\xf7\x85\xfa\xd7\xf6\x4f\x57\xfe\x7d\x51\xf2\xa1\xd4\x71\x10\xea\x9b\x2e\x3d\xdb\x0c\xa2\x1b\xc6\x18\x0a\x82\x6d\x18\x6a\x7a\x47\xfa\x3a\x85\xf6\xd5\x0d\xed\xb3\x41\x41\x26\x81\xd3\xa3\x47\x8f\xca\xbe\xbe\x3e\x76\xf9\xf2\x65\x26\xd3\x4b\x33\x7a\x3f\xa8\x05\xca\xb5\x96\x4c\x63\x9a\xce\x67\x68\x79\x5a\xa8\xd9\x9c\x6c\x52\x5a\x2f\xa7\xbe\x9f\x09\xa7\x38\x72\xe4\x88\x82\x4f\x0e\x65\xa9\xad\x16\xc6\x8f\x5c\xaa\x7e\xa5\x1c\xf0\xcd\xd1\xa4\x8f\x5d\x0f\xed\x1d\x14\xe5\x5e\xa4\x26\x7f\x92\x93\x76\x6b\xba\x5f\x51\x63\xdd\xd7\x58\x58\xfa\x61\x08\x48\x4c\x0c\xb6\xde\x7a\x61\xe7\xe2\xe3\x8d\x52\x38\x01\xc6\x26\xa5\x94\x29\x4b\x03\x71\x4c\x23\x16\x1a\xa2\xd3\xe9\xe8\x3c\x70\x69\x3e\x5a\x66\xd2\x80\x3a\x1f\xb3\xb4\x24\xbd\x76\x69\x13\x53\x7d\xaa\x59\x6d\xda\xda\xe6\xeb\xba\x60\x5d\xf8\xb2\xf0\xd3\xfa\x36\xbe\x9a\x2c\x05\x5b\xbb\x79\x70\xe9\x89\xf2\xde\xc5\x47\x9b\x26\x36\xd2\x70\xe8\xd0\x21\x00\xc9\x01\x44\xe5\x82\x40\xed\xe6\xcb\xd5\xcf\xee\x9b\xae\x3c\x52\x90\xac\xa6\xa6\xa2\x94\x88\x3e\x04\x95\x8c\x69\x00\x12\xda\xd8\xed\x66\x33\x00\x45\xc1\x87\xf7\x4d\x57\xbe\x7e\xe3\xd5\xfe\xe3\x4c\xa2\x8a\xe8\x60\x67\x0f\x00\x3f\x74\xe8\x10\xe2\x73\x68\x75\xfa\x6c\x5e\x82\x4e\x6f\xde\x71\x9b\x2a\xcf\x1b\x88\x52\x02\xc1\xc6\x5c\x93\xc0\x48\x26\xc7\xc7\x3e\xf6\x31\xbe\x6d\xdb\x36\x00\x80\x8c\xbe\x31\x5a\xe6\x02\xb5\x9b\xaf\x54\x7f\x73\xa4\xe1\xdf\x81\x64\x77\x68\xe4\x9c\xa4\x0e\x1c\x87\x72\x58\xe2\x0c\x8d\xa9\xc9\x57\xca\x35\xe6\x26\x5b\x39\xf4\xfa\x1a\x9e\xab\xb5\xf6\xd9\x17\x76\x2e\x3e\xbe\x58\x0e\xcf\x49\xc8\x49\x00\x33\x8c\xb1\x85\xf8\x40\x18\x75\x7e\x46\x22\x34\x0c\x7d\xa4\x2e\x98\x2b\xb9\x60\x69\x99\x49\x00\x53\xcd\x67\xc3\x67\xa2\x13\x19\xbf\x2e\x17\xc1\x54\xc7\x96\xef\xe2\x81\x8d\x6e\xaa\x64\xb8\xe3\xcf\x36\x61\x69\xb9\x8d\x9f\x26\x9e\xd9\xdc\x2d\x95\x4c\xe6\x3c\xad\x6b\x1d\x0f\xf1\xb2\xa9\x3a\xb9\xbd\xb2\x69\xb1\xb4\xef\xe0\xb5\xfe\x3f\x28\x08\x36\x08\x20\x51\x80\xda\xc7\xe3\x90\x98\xcc\x71\x46\xca\x6e\x48\xcc\x69\x89\x62\xc8\xc6\x6f\xba\x5a\xfd\x93\xb1\x65\x7f\xb7\x94\xb2\x1c\xb7\xc1\xa5\x94\xfc\xbe\xfb\xee\xe3\xf1\xba\xb3\x4d\x89\xdb\x78\x6f\x4a\xae\xe7\xce\x4d\x83\xd3\x84\xc0\xf4\xf0\x4c\xcc\xa7\x5a\x8e\x03\x10\x7b\xf7\xee\x55\xd7\x5e\xfc\xce\x40\x75\xcb\x62\xe9\xc0\xfe\xa9\xfe\xdf\x2d\x48\x56\x8d\x26\xbc\x8c\x3e\x91\x18\x73\x35\x11\xc2\x29\x06\xa6\x25\x4a\xfa\xf4\x2f\x24\x0f\x43\x37\xd6\x23\xb7\x25\xc2\x38\x57\x09\xae\xfc\x72\xd7\xc2\x8f\x66\xfa\x3b\xa7\xc0\xa0\xce\x97\x9c\x43\x74\xea\x78\x12\xad\x7e\xef\xbd\xf7\x74\xa1\x91\x87\xb1\x59\x0f\xc1\xe6\x1b\x53\xbe\xdb\x2c\x36\x57\xdb\x7a\x3d\x97\x0f\xee\xc2\xe1\x6a\xd7\x36\x31\x6d\xd6\x85\x6d\x02\xda\xf0\x9a\xf2\x4c\x56\x80\x4d\xc9\xe9\xf4\x50\xbf\xdd\x34\xb6\x6d\x42\xc3\xa6\xad\xe9\xb3\xa2\x56\x4c\xea\x3e\x3e\x74\x28\x39\x2f\xd5\x0b\x59\xed\xd0\xb5\xfe\xdf\xac\xae\x15\x0e\x45\x73\x5f\xd7\x6c\xfa\x6f\xd7\xf2\x60\x40\x5a\x79\xaa\xb2\x78\x7e\x0c\xac\x15\x6e\x3c\x34\xd9\xff\x19\x06\x56\x8d\xe7\x93\x07\x00\x3b\x76\xec\x40\x1c\x57\xd1\xe9\xb6\x8d\x37\xda\x3f\x2a\xc4\x5d\x63\xd6\xf8\x90\x4d\x9a\xcc\x26\x7d\x29\x9c\x8e\x53\x00\x10\xb7\xdf\x7e\x3b\x8f\x0f\xe6\xe1\x88\x5f\x3c\x2a\x86\xac\xfe\xd1\xf7\x07\xbe\xd8\xdf\xe6\x7b\xba\xfc\xd3\x5c\x8a\x9e\x60\xa8\x6e\x52\x68\xf7\x89\x58\x8e\xdf\x5f\xa1\x0f\x23\xc6\x2b\x19\xd0\x2c\x8a\x85\x5f\xee\x5a\xfc\xd1\xd5\x0d\xed\xb7\x11\x6d\xee\x4a\xdc\x93\xf8\x7b\x26\x6d\xc4\x42\xe3\x89\x27\x9e\x58\x8f\xf9\x6f\xfa\xa5\x49\x1f\xcc\x26\xed\x45\xeb\xba\x5c\x00\x6a\x4e\xe6\xb1\x6a\xf2\x4c\x72\x9a\x4c\x13\x89\x4e\x4a\x0a\xe7\x1a\x70\x36\x5a\x68\x9e\xcd\x7a\xd2\xdb\xb5\xf1\xdf\x85\x97\xd2\x4a\xf1\xdb\xea\xd8\xea\xf7\x58\x1d\xb7\xdd\x76\x5b\xf2\xf1\xa9\x78\x42\x97\xeb\xab\xde\xe6\xcd\x8b\xa5\xbb\x93\x53\xeb\x34\x97\x04\x40\xf7\xd0\x6b\xa5\xe8\x52\x85\xe9\xb2\xe4\x5b\xc7\x12\xfe\xd6\x85\xd2\x27\x37\xb4\x0a\xa3\xb1\xd5\xe1\xc5\x6d\x62\xe7\xce\x9d\x7a\xff\x4c\x3c\x53\xc9\x26\x4c\x6d\x0a\x20\x55\x4f\x3f\x73\xd4\x26\xa5\x6d\x12\xdb\xa5\xa1\x38\x00\x6c\xd9\xb2\x85\xdf\x7c\xf3\xcd\xc9\x97\xcd\x11\x7d\x18\xba\xb2\x67\xba\x72\x78\xf3\x52\xe9\x3e\x48\xf0\xee\x64\x4f\x9f\xe6\xa5\xdc\x0e\xe5\x89\x28\xcb\x41\x7d\x48\x87\x31\x06\x7d\xa9\x84\x81\xa5\x82\xa2\x2a\xce\x24\x99\x44\xc8\x11\xbc\xb4\x63\xe9\x89\x0b\x43\xab\x27\x24\x4b\x1d\xde\x92\x08\x0d\x29\xa5\xf8\xc6\x37\xbe\x21\xf4\x9d\x7c\xe8\x9d\x24\x40\x36\x5f\x28\x0c\xad\x07\x03\x9c\xa9\xbe\xe9\xda\x94\x6c\xcf\xc2\x25\x1c\x6c\x93\xc5\xd4\x37\xd3\x64\x31\xe5\x9b\xf0\xdb\xea\xaa\x32\xaa\xc5\xa9\x82\xa2\xb4\xba\x84\x8f\xcb\x92\xa0\x82\xc9\x66\x69\xdb\x04\x9f\x89\x2e\x1d\x17\x00\x60\xd3\xa6\x4d\xfa\xe1\xda\x9e\x94\xb2\xb2\x69\xc9\xdf\xd7\xdf\xe6\xbb\x4d\xa1\xd8\xd4\x22\x60\xfc\x49\x4b\xb5\x52\x98\x5a\x09\x24\x21\x6c\xc6\x18\xaa\xed\xc2\xce\xe1\x15\x7f\xf7\x62\x5f\x38\x19\xb7\xc5\x01\xf0\xd1\xd1\x51\xbd\xbf\x26\xc3\x00\xe8\xe5\xb7\xad\x8f\xa6\x6b\x01\x80\xd3\x8a\x26\xc6\xd0\x5f\x53\x23\x54\x02\x0b\x00\xb8\x7c\xf9\xb2\x00\x90\x3a\xa9\xbc\xaf\xc3\x07\x6f\xb9\x54\xfd\x6a\x31\x64\x83\xea\x4d\x56\xc5\x1d\xfd\x1b\x4a\x91\x70\xe8\x12\xa2\x04\x45\xea\xa3\xd0\x09\x2f\x65\xd7\xa4\x83\xe6\x12\x02\x90\x0c\xe2\x9d\xb1\x95\xe7\x7f\xbd\xa9\xf1\xcb\x58\x68\xe8\x07\xb8\x34\x59\xf4\x31\x61\x11\x6f\x1d\xd7\xdf\x17\xb0\xf1\x44\x2f\x03\xcc\x03\xcd\x05\x93\xc5\x6b\x4e\x7e\xf5\x6b\xd3\x40\xb7\x69\x06\x1b\x2e\xfa\x2c\x69\xb2\xe1\xb3\x4d\xe8\x2c\x8b\x89\xf2\xc4\x26\xd0\x6c\xf4\x98\xda\xca\x2b\x4c\xa8\x35\x64\x6b\x2b\x8f\x20\x32\x59\x89\xc9\xfc\xf1\x7d\x9f\xc7\x07\x51\xa9\xe4\x31\xb0\x72\x7d\xd5\xdb\x55\x10\xac\x12\xb9\xcd\x71\x09\xd3\x7f\x34\xb7\x3b\x19\xb4\xe9\xb1\x9f\x4a\xb1\xfb\xed\x09\x56\x1b\x5f\xf2\x0f\x22\x3a\x3a\xc0\x07\xa0\x5b\x1c\x3a\xbd\x74\xce\xba\xf8\x9f\xa5\xa4\x92\x71\x6b\xb3\x1a\x6c\xd2\x58\x2f\x33\x35\x96\x6a\xf4\xe1\x87\x1f\x56\x0d\x79\x00\xca\x4c\x46\x27\x7a\x0d\x35\x8b\x77\x81\xb8\x7a\x49\x52\x92\xd8\xc0\x39\x99\xc4\x40\x68\x95\x48\xe2\x28\xaf\xa6\x7b\x76\x87\xc4\xe5\x0d\x6b\xa7\x5f\xd8\xb9\xf8\x13\x11\xbb\x27\xf4\xd4\x27\x20\x72\x4f\x7e\xfc\xe3\x1f\xdb\x4c\x35\x53\x5f\x6d\x13\xd9\x06\xeb\xb2\x08\x54\x72\x4d\x00\x5b\xd2\x07\x82\x4b\x5b\xe4\xa1\xcb\x25\x08\x28\x9d\xb6\x32\x57\x1d\x2a\xc4\x28\x4d\xb4\x5c\x17\xae\x74\x92\xbb\xea\xd8\x04\x88\x4d\x88\xd8\xe8\xa7\x02\xde\x24\xd8\x92\xfb\xb1\xb1\x31\x48\x29\xd5\x27\x1d\x3c\x00\xbe\x27\x58\xb9\xbf\xed\x8d\x33\x65\xd9\xab\x88\x7d\x6a\x81\x53\x0b\x66\xd0\xf8\x87\x96\xa4\x5e\x2f\x8a\x79\x78\xb5\x56\x61\x33\x22\xc1\xa1\x3e\xea\x6d\xb3\x6a\x4d\xcf\x9c\xf6\xc7\xa6\x90\x28\xbc\xa0\xc0\x36\xc6\xb8\x84\x8b\xa9\x21\x00\xc0\x43\x0f\x3d\x94\x3e\x54\x45\x46\xfe\xde\x0d\x93\xfd\xbf\xc7\x25\xca\x3d\x56\x83\xe6\xf3\x31\x92\xa7\x5d\xf4\xe4\x25\xb7\x9a\xb0\x50\xbf\x0b\x7d\xc1\xd4\x73\xbb\x16\x7f\xd8\x2c\x8a\x8b\x60\xa9\x17\xd6\x5a\xf1\x39\x0d\xa2\xdd\x6e\xe3\xcd\x37\xdf\xb4\xf5\x4b\x67\x76\x96\x30\xb5\xf2\x42\xc3\x45\x93\xad\x2d\x7d\x72\x98\xe0\x29\x5d\x26\x5a\x6c\x16\x42\x9e\xc4\x0d\x7f\x94\x4e\x4a\x83\x89\x16\x05\xaf\xe3\xb5\x0d\x56\x97\x15\x47\x69\xca\xc2\x4d\x69\xb1\xf5\x01\x86\x3a\x2e\x58\x3a\x06\x12\xd8\x1d\x3b\x76\x20\xde\x94\x95\x7c\x0f\x06\x80\x07\x48\x3f\x36\x13\xe2\x71\xad\x7d\xa2\x43\xff\x8b\xfd\x18\x99\xc0\x44\x49\xca\xee\x9a\xa2\x1e\xec\x67\x00\x8a\x21\xaf\xa1\xbb\xbd\x81\x2b\x78\x4b\x72\x8d\x1d\x1b\x1c\xcd\x4b\x7e\x6d\x03\x53\x4f\x94\x51\x7a\x3e\xbd\x4e\x1e\xde\xe0\xe0\xa0\xba\xf7\x00\xf8\x5c\xa2\x76\xe0\x5a\xff\xdd\x1b\x56\xbd\x23\x4c\xdb\xa7\x11\x75\xb4\x6b\x9a\xa5\xdd\x93\xf4\x05\x63\x9a\xbd\x41\xce\xd5\xe8\x6e\x1b\x8b\x7e\xd7\x0a\xb2\xf9\xda\xd6\xe5\x9f\x4d\x0d\xb4\x4f\xa1\x7b\xdc\x9f\xb2\x34\x5a\x8c\x31\xb1\xb6\xb6\x26\xfe\xe6\x6f\xfe\x46\x5c\xbd\x7a\x95\xf6\x97\xf6\xcf\x96\x9f\x65\xf6\xd3\x64\xd5\x58\x70\x0b\x1b\x93\x76\x30\x59\x13\xfa\x9f\x4d\x90\x50\xfc\x26\x13\xd5\xd4\x1f\xdb\xe4\xa1\xc9\x34\xa6\xa8\x75\x41\xf1\x99\xe8\xb4\x29\x32\xd7\xf3\xc9\x1a\xcf\xeb\x11\xf4\x59\x74\xf6\xf0\x35\xb6\x38\x10\x5f\x73\xc9\xa4\x17\x70\x19\xc4\x9b\x0c\x62\x01\xa1\xac\x0a\xb5\x72\x28\x93\x8f\x63\x4b\xc4\xfb\xc0\x12\xeb\x42\xc6\x31\x3e\x19\xaf\xd2\xaa\x79\x12\xb7\xc1\x24\xa4\x94\x49\x7c\x43\xb5\x3d\x32\x32\x62\xb3\x2c\x6c\xee\x48\x1e\x0b\x2c\xf5\xdc\x6d\x8c\x34\x99\x39\xa6\xc1\x6b\x1a\x88\xfc\xa1\x87\x1e\xe2\xf1\x67\x1b\x23\xc1\x21\x51\xa9\xaf\x7a\x9b\xf7\x4f\xf5\x3d\xc4\xc1\xbc\xb4\x29\xa6\x47\x8c\x4c\xa9\x9b\x2f\x35\x73\x44\xea\xf0\xa4\xaa\x88\x76\x86\xbe\x76\x6a\xb4\xf9\xb2\x64\x98\x42\xfa\x3c\x8d\x16\x00\xb1\xb6\xb6\x26\x9e\x7e\xfa\x69\xbd\x9a\x8b\x17\x36\xad\x6d\x1b\x80\x36\xeb\xc2\x24\xf5\xa1\xe5\xe9\xbf\x79\x27\xa0\xad\x1d\x13\x3e\x1b\x5d\x36\x4b\x4a\xd5\xcf\x23\xb8\x28\xbc\x7e\x4f\x85\x0e\x0c\xbf\xb4\x6d\x17\x2f\x4d\x89\xf6\x23\x8f\x80\xa7\xb0\x74\x92\x99\x70\x64\x95\x25\x96\x47\xc8\x20\x96\xca\xe1\x9c\x60\x68\xc7\x7b\x0d\xb4\x55\x14\xa6\xa4\x84\xbe\xc5\x3c\xaa\x9f\x38\xe4\x5d\xb5\x28\x93\xd5\xc5\xc4\x32\x11\x8b\x7d\xc1\x8c\xde\x9e\xba\x26\x34\xd9\xc6\x83\xed\x3a\xd7\x73\x76\x69\x39\x53\xe3\xae\x01\x00\x00\x7c\xe7\xce\x9d\x89\xb5\xc1\x18\xf3\xa4\x94\x65\x2e\x51\xdd\x3f\x55\xb9\xa7\xd6\xf2\x0e\x01\x48\xcc\x33\x00\x48\x40\xb7\xbf\xdd\x2d\x51\xf9\x91\x60\xd5\x36\x7c\xc9\x9f\x8b\x46\xf4\x00\x00\x20\x00\x49\x44\x41\x54\xee\xc6\x0c\xa6\x7d\xfc\x95\x75\x7d\x93\x98\xa9\x12\x4c\x4a\x48\x48\x4c\x55\xdb\x13\xaf\x6d\x5d\x7e\xaa\xed\xc9\x2b\x52\x4a\xf5\x65\x35\xb5\x82\x12\x48\x29\xc5\xc5\x8b\x17\x31\x31\x31\x41\xfb\x42\xfb\x6c\x9a\xe0\x26\x49\x4e\xf9\xa0\xc3\x66\x0d\x7c\x9b\xc0\xa2\x79\x59\xf5\x4d\xd7\x36\x81\xb0\x1e\xfc\xb4\xae\x89\x3f\xd0\xca\x5c\xda\xdc\x04\x4f\xaf\x5d\xca\xc9\x66\x1d\xe8\xe5\xd4\x8a\x32\xd1\xe4\x12\xd2\x36\x58\x5b\x1f\x38\x00\x3c\xf7\xdc\x73\x42\x77\xbf\xa5\x94\x42\x42\x06\xb3\x95\xce\xd5\x4e\x41\x36\x21\x59\xb2\x22\xc2\xba\x4b\x7e\x51\xc0\x9f\xd1\x00\xa9\x4c\x1d\xe0\xaf\xf6\x6f\x24\x5e\x8d\x8c\x3e\x96\x7d\xb9\xb6\x76\x01\x80\xfa\xd2\x9d\x8d\x17\xb4\x9f\xae\xe7\x68\xb3\x80\xf5\x79\x20\x28\x22\x53\x03\xb6\x87\x6c\x4b\xe2\xc8\x91\x23\x28\x14\x0a\xaa\xae\xc7\x18\x2b\xd7\x57\xbd\xad\xfb\xa6\x2a\x0f\x32\x30\x1f\x40\x22\x38\x99\x12\xa0\x2a\x53\x99\x61\xac\xeb\xeb\x21\x25\x69\x91\x92\x34\x32\x25\x79\x22\x84\xab\x45\xb1\x74\x62\x6b\xe3\xa9\xb9\x4a\x70\x01\xd1\xae\xd0\xb9\xf8\x24\xeb\x96\xfa\x74\xc1\xfb\xef\xbf\x8f\xe7\x9f\x7f\x5e\xf5\xc9\x36\x88\x6c\x12\xda\x65\x81\x98\xe0\x4d\x65\x26\x8d\x6e\x83\x37\x3d\x4c\x9b\xf0\xb2\xd1\x41\x07\x91\xcd\x0d\xd0\x93\x4d\x58\x66\x4d\x2c\x3d\x3f\xcb\xea\xb1\xe1\xa5\x34\x65\x4d\x76\x3d\x9f\xd2\x91\x27\xe5\x19\xdb\x4e\x25\x30\x36\x36\xc6\x35\x37\x45\x20\x3e\xdb\x74\x7a\xa0\x7d\x69\xbe\xaf\x73\x31\xb2\x38\xba\x6e\x4a\x6a\xb3\x62\x9c\x64\xb2\x8d\x54\x2f\xe8\xae\xbd\x28\x77\x45\x32\x60\xb1\x2f\xb8\x74\xad\xd6\xb9\x14\xb7\x93\x08\x0f\xc3\xaa\x60\xcf\xa4\x27\x7d\xb2\xdd\xbb\xc6\xb8\xd3\x14\x77\x99\x7a\x56\xa2\x86\x87\x87\x55\x1d\x4f\x4a\x59\x66\x12\xd5\xfd\x53\xfd\xf7\xd4\xd6\xbc\x43\xa9\x08\xa8\x4a\x92\xfe\x76\x8d\x34\x7b\x9c\x07\xdd\x0d\x31\xb2\xcb\x66\x01\x29\xce\x0d\xad\xbe\x76\x61\x70\xf5\x0d\xb0\xe4\xa5\xb5\xd4\x0a\x4a\x10\x04\x78\xe1\x85\x17\xb0\xb6\xb6\x96\xd7\x12\xc8\x53\xae\xf3\xc0\xe6\x8e\xd8\xcc\x68\x9b\xcb\x67\x6b\xcb\xa6\x15\x5c\x1a\xc2\xd6\x9e\x4b\xc3\xd0\x64\x72\x31\x6c\x74\xd2\xb1\x93\x35\x68\x6d\xc2\xda\x24\x80\x6c\xfc\xd2\x85\xaa\xc9\xda\xc8\x12\x4e\xa6\x72\xda\x57\xab\xfb\x74\xed\xda\xb5\xe4\x84\x2e\xed\x4c\xd3\xf6\x72\x29\x9c\x3b\x37\xbc\xfa\x5a\xc8\xd0\x46\x62\x35\xb0\xee\x66\x2f\x65\x79\x40\x59\x15\x74\x57\x34\x10\x1d\x75\x89\x58\x8f\x32\x84\x1c\xed\x73\x43\xab\xaf\x34\xfc\x60\x8e\x31\xd6\x52\x87\xfc\xc4\xed\x9a\xe8\x37\xf5\x33\x8f\x35\xa5\x52\x4f\xbf\x6d\x26\xab\xe9\xc1\x67\x99\x9d\x1c\x48\x7c\x2c\x0f\xb1\xb5\x51\x6b\x15\xc6\xf7\x4e\xf7\xdd\x57\x90\xcc\x67\x7a\x04\x54\x6a\x8c\x53\xbf\xb1\x14\xd6\x57\xa5\x7a\x16\x56\xd0\xcd\x60\xe9\x0d\xfd\x98\xab\x04\x57\x5e\xdf\xd2\x78\xa6\x5d\x10\x93\x52\xca\xd4\x91\x7f\x52\xca\x40\x08\x21\x7e\xf1\x8b\x5f\x20\xfe\x98\x30\x75\xbd\x6c\x83\xc2\x24\x95\x4d\xfc\x32\x0d\x5e\xbd\x3c\xcb\x3d\xc8\x03\xe3\x6a\x53\xe5\xd1\xfa\xa6\x72\xdb\x04\x34\x25\x7d\x80\x51\x01\x69\x1a\x80\x14\xb7\x6b\xcc\xc0\x50\x66\x9b\xf8\x79\x71\xb9\xcc\x72\x9a\x5c\x16\x1c\x1d\xf3\xb4\xdf\x3d\x29\x0c\x43\xb5\xaa\xa2\x4e\x4f\x6f\x09\xc8\xc6\x99\x91\xd5\x13\x53\x03\xed\xb3\xdd\x93\xfa\x35\x37\x5d\xed\xd9\x48\xc6\x3c\x5d\x38\x20\x9e\x3b\x24\xa6\xfb\xdb\xe7\x4f\x8e\xaf\xfc\x4a\x46\x9f\x79\x68\xc5\xdf\x26\x0e\xa4\x94\x98\x9b\x9b\x43\xa3\xd1\xa0\x7d\xb3\x59\x9f\xa6\xbe\x41\xbb\xb6\x0a\x4e\x13\x63\xf4\x64\x32\xd3\x6d\x29\xd9\xa7\x1f\xff\xf9\x00\x2a\x7b\x66\x2a\x47\x93\xd8\x46\x2a\xc9\x48\xbe\xa6\xc2\x19\x89\x83\x12\x25\x96\x78\x75\x3d\x66\x1d\xd4\xce\xd1\x38\x3f\xe0\xb2\xfd\xc6\x96\xe5\x5f\xcc\xf5\x77\x2e\x00\x50\x1f\x7f\x4e\x9d\x48\xfe\xee\xbb\xef\xe2\xfc\xf9\xf3\xb4\x2f\x2e\xab\x0b\xb0\x0f\x44\x97\x8b\xe0\xd2\x54\xa6\x7b\x9d\x0e\x3a\x69\xb2\x84\x35\x15\x06\xae\x67\x48\x07\x88\x09\x0f\x90\xa6\x4f\xdd\x9b\x04\x84\xe9\xd7\x64\x25\x98\xb4\xb5\xc9\x92\x30\xd1\x6c\xd2\x90\x26\xe1\xee\xb2\x0a\x6c\xcf\xcd\x26\xac\x6d\x7d\xa2\x29\xf5\xfc\x7e\xfd\xeb\x5f\x27\x79\xf1\x44\x6e\x01\x68\x2c\x96\x83\x4b\x2f\xee\x58\xfa\xd1\x8a\x1f\xce\x01\xe8\x5d\x07\x48\x6d\x21\x45\x37\xfe\xc7\x34\x4b\x24\x8e\xe5\x35\x7c\x31\xf3\xab\x1d\x4b\x8f\x2f\x97\xc3\x49\xc6\xd8\x52\x6c\x71\x04\xf1\x99\xa4\xe2\xbb\xdf\xfd\xae\x88\xbf\x4b\x6c\x52\x12\x26\x01\x41\xc7\xbd\x6b\x3c\x25\xb8\x4c\xa6\xac\x42\x62\xd3\x28\x26\xe6\xe1\xf6\xdb\x6f\x4f\xf6\xe9\x23\x16\x1a\xd5\xb5\xc2\xf0\x9e\xe9\xbe\x4f\x17\x24\x2a\x5d\x26\x29\xd1\xda\xbb\xad\x96\xa9\x40\xa8\x1e\xb7\x48\x09\x0b\xc3\xda\x4b\xcc\xd0\x8b\x1b\xd7\xde\x3a\x3d\xb2\xfa\xb2\x64\xa9\xb3\x42\xd5\x76\x72\x4c\x4d\x4d\xe1\xb9\xe7\x9e\xb3\x4d\x48\xa0\x97\x99\xb6\x89\x0b\x4b\x9e\x8e\xc7\x66\x91\xa8\x72\x13\x7e\xd3\x40\x37\xe1\x77\x69\x0b\xd7\x64\xce\x52\x10\xb6\x72\xdb\x64\xd5\x93\xab\x1f\x74\x0c\xb9\xc6\x93\x69\x20\x9b\x04\x91\x6d\x90\xeb\x79\x2e\x2b\x42\xa7\xcf\x35\xc1\x74\xba\x4c\xd7\x3a\x1e\x5c\xbd\x7a\x55\x3f\x45\xbd\xcd\x18\x6b\x32\xc6\x96\xc0\xb0\xf0\x7e\xbd\xf5\xeb\xe7\x76\x2f\x7e\xaf\xe1\x87\x0b\x49\x2d\xb5\x9a\x12\xef\xcf\xd0\x07\x77\x4a\x51\xc6\x66\xca\x8a\x1f\x2e\x3c\xbf\x6b\xe1\x5f\xdf\x1b\x6c\xbd\x81\xd8\x0d\x97\x52\x36\xd5\x9e\x24\x00\xa8\xd7\xeb\x36\x25\x60\xea\x47\x1e\x65\x68\xb4\xb0\x5c\x03\x94\x22\x33\x49\x66\x00\xd1\xc1\xc3\x37\xdc\x70\x03\xdd\xa7\x5f\xde\x31\x57\x3e\x3c\xd4\x2c\xa6\xf7\x6d\xe8\xef\x97\x98\x4f\x22\xb6\xec\xac\x8b\x6f\x69\x7c\x84\x01\x2d\x2f\x5c\x7a\x7d\xcb\xf2\x2f\xd6\x3c\x31\x85\xc8\xda\x50\x27\x78\x05\x88\xa4\xbf\x78\xfd\xf5\xd7\x15\xed\xa6\x49\x6d\x32\x43\x5d\x70\x59\x93\x83\x6a\x3f\x9b\xb9\x6b\x13\x52\x26\x0d\x6c\xd2\xbc\x3a\x0d\xae\xc9\x61\xc2\xa3\xe7\xd1\x7e\xba\x70\xdb\x84\x8a\x0d\xb7\x4b\x48\x99\x92\x49\x28\xe4\x49\xae\xc9\x6d\x9a\x1c\xa6\x3e\x09\xf4\xd2\xec\x52\x20\xa9\xfb\xf7\xdf\x7f\x1f\xf1\xfb\x4e\x02\xb1\xab\x22\xa5\x6c\x00\x98\x93\x1c\x53\xa7\x47\x9a\xbf\x7a\x6a\xef\xdc\x3f\x4d\x57\xdb\x97\x24\x4b\x2f\x29\xb2\xee\xc1\x33\x69\xf7\x1d\x80\x80\xc4\x74\xb5\x7d\xf1\xe7\x7b\xe6\xff\xe9\xd4\x68\xf3\x57\x92\x61\x2a\x5e\x2d\x4c\x82\xfe\x8c\x31\x71\xee\xdc\x39\x2c\x2c\x2c\xd0\xb1\x69\xeb\x93\xe9\x97\x26\x9b\x30\x11\xf4\xe8\x40\xbd\x31\x75\x6d\x6a\x2c\x35\xc0\x8f\x1c\x39\x02\xcf\xf3\xf4\x97\xd9\xca\xe5\x80\xd7\xf7\xcc\xf4\xdd\x5b\x0c\x59\x5d\x37\xc3\xba\x3b\x6c\x15\xe3\x34\xcb\x83\xf5\x00\x75\x7d\xbe\x58\x48\xc8\xc4\x7c\x8b\xef\x21\x71\x76\x64\xf5\x95\xab\xb5\xf6\x29\xb0\x24\x18\x9a\x5a\x45\x79\xe3\x8d\x37\x30\x31\x31\x91\x35\x60\xf5\x3e\x66\x09\x54\x13\x8c\x4d\x9b\xd9\x5c\x0d\xd3\x03\xce\x12\x6a\x54\x78\x98\xb4\x8b\x29\xdf\x65\x51\x98\xda\xb7\xe1\x31\x95\xb9\xb4\xb3\xcb\xc4\x77\xc1\x98\xc6\x20\x15\xdc\x54\x88\x53\x7a\x6c\xda\xd3\x84\x37\xab\x4d\xda\xbe\x09\x6f\x82\x4b\x08\x01\xce\xb9\x40\x14\x20\x6d\x4a\x29\x97\x18\x63\x9e\xe0\xf0\x2e\x0c\xb5\x5e\x9e\xab\x04\x73\x87\xaf\x54\xef\xd8\x3d\xdb\x77\xe3\xc0\x5a\x61\x90\x4b\xc6\x99\x7e\x92\x76\x6c\x45\x0b\x26\xc5\x52\x39\x98\x39\x37\xb4\xfa\xd6\xc9\xf1\x95\x97\xe6\x2b\xc1\x39\xd9\x7d\x75\x62\x09\x51\x8c\xa3\x0d\x40\x48\x29\xf1\xda\x6b\xaf\x51\xba\x5c\x34\x5f\x2f\x8c\x00\xc0\x3d\xf4\x0e\x1a\xdb\xe4\xb1\x0d\x46\x31\x34\x34\xa4\xce\x1f\x50\x47\xbf\x57\xc6\x96\xfd\xdd\x63\xcb\xfe\x51\x06\xc6\x53\xc7\xfa\x25\xc2\x40\xdb\xf0\x92\xec\x9c\x63\xd0\x5f\xf6\xd1\x3e\x22\x0f\x16\x9f\x62\xae\x7f\x06\x41\x32\x89\xe5\x52\x38\xf3\xc6\xe6\xc6\x73\x01\x97\x33\x6a\xbf\x06\x8b\xbe\x54\x1e\x00\x10\x33\x33\x33\x78\xe3\x8d\x37\x5c\x0c\xd1\x93\x6d\x10\x53\x58\x9b\x65\x40\xf3\x4c\x96\x4c\x16\x6e\x3d\xdf\x96\x5c\x34\x9a\xac\x0d\x8a\xcf\xd5\xa7\xbc\x34\x28\x18\x3a\x36\x4c\x79\xae\x49\x4c\x15\x92\x8d\xa7\x36\x3c\x3a\x8c\x4b\x50\xd9\x9e\x53\x96\x70\xb3\x59\x5b\xd6\xbc\xbf\xfc\xcb\xbf\x14\x8f\x3c\xf2\x08\xe2\xa0\x65\x0b\x91\x4b\xc1\x19\x63\x10\x90\xc1\x42\x25\x68\x3d\xbf\x6b\x71\xfa\xe4\xf8\xca\xeb\x5b\x17\x4a\xbb\x47\x1b\xfe\xd6\x0d\x2d\x6f\xd0\x0f\x58\x59\x02\xa2\x53\x90\xed\x85\xbe\x60\x6e\xba\xda\xbe\xf4\xfe\xc6\xd6\xd9\x85\x72\x70\x39\xe4\x98\x91\x90\x53\xf1\x57\x05\x17\x62\x61\xd4\x8a\xdb\x17\xaf\xbe\xfa\x2a\xe6\xe7\xe7\x6d\x63\xd4\x94\x4c\xbc\xce\x52\x48\x49\xa2\xaf\xd5\xbb\x18\x62\x14\x1a\x9b\x36\x6d\x4a\x9d\xee\xc5\x18\x2b\x33\x89\xca\x47\x66\x2b\xb7\x97\x03\x3e\xde\xf3\xfd\x13\x68\xaf\xc5\xab\x35\x6a\xb5\x31\x06\xe9\x38\x11\xd3\xad\x0b\xba\x8f\x23\x16\x28\xa7\x46\x9b\x2f\xce\x55\x3a\x17\xc0\xb0\xc0\xc0\x52\x1f\x4e\x0a\xc3\x50\x7c\xef\x7b\xdf\xb3\x3d\x78\x97\x60\x34\x4d\x02\x13\x0f\x68\x32\x4d\x02\x5b\x1b\xa6\x76\xd6\xf3\xe0\x4d\xed\xae\xb7\x4d\xda\x8e\x4b\x79\xd0\xfa\xeb\xe1\x8b\x4e\x5b\x96\x40\xb2\x59\xbc\x26\x3a\xf2\xf0\xc8\x65\x81\xe4\xed\x83\x6d\x7e\x58\x85\xd5\xf4\xf4\x34\x46\x46\x46\x02\x00\x60\xd1\x77\x6a\x17\x10\xef\xed\x00\xd0\xea\x70\xd1\x98\xee\x6f\xcf\xcd\xf6\x77\xce\x15\x04\xab\xfa\x21\xeb\xf7\x04\xf3\x25\x80\x90\xcb\x76\xbb\x20\x57\x42\x2e\x1b\x12\x68\x48\xc8\x05\xc6\xd8\x02\x24\x16\x10\x59\xd4\x4b\x9a\x72\x0c\x1a\x8d\x06\x5e\x7b\xed\x35\x9b\x25\x65\xeb\x83\xab\xbf\xb6\xfb\x04\x87\xfa\xe8\xb4\xed\x01\x65\x4d\x1c\x7e\xf0\xe0\x41\x25\x08\x3c\xe5\xa6\xd4\x5a\xde\xe8\xe6\x45\xff\x0e\x26\x99\x9f\x3e\xc9\x48\x59\x0f\xfa\x2e\xae\xae\x60\xa1\xc1\x65\x53\x04\xa4\x5b\x4d\x62\xa5\x14\xce\x9c\x1c\x5b\x79\x41\x44\x2e\xca\x82\x94\x32\x65\x6d\xcc\xcd\xcd\xe9\xfd\xb0\xf5\xcb\xa5\xbd\x4d\x83\xc5\xe5\xca\xd9\x84\x91\xcb\xbc\xa5\xb0\x36\x7a\x5d\x78\xe9\x40\x06\xb2\xdb\xd4\xeb\x99\xca\x4c\x30\xd4\x2a\x70\x09\x1b\x13\x2c\x08\x2c\x2c\x30\xa6\xfe\x98\x60\xa9\x75\x67\xa2\xdb\xc6\x5b\x1b\x7d\x79\x60\x4d\x29\x05\xfb\xfd\xef\x7f\x5f\xfc\xce\xef\xfc\x0e\x1f\x1d\x1d\x0d\xb4\x80\xa9\x40\x2c\x38\x10\x59\xc6\x0b\x12\xa8\x76\xb8\x28\x07\x05\xe6\x2b\x1c\xf1\x66\xae\x36\x63\xac\x09\xa0\xc9\xc0\x1a\x31\x7c\x43\x4a\xd9\x64\xda\x07\xb3\x9b\xcd\x26\xfe\xf1\x1f\xff\xd1\x35\xf1\x5d\xd6\x60\x1e\x8b\xd1\xf8\x9b\xbc\x55\x67\x60\x00\x25\xc4\xf8\x60\xc6\xc6\xc6\xd4\x5b\xb0\x1c\x80\x2f\xa5\x2c\x6f\x5b\x28\x1d\xd8\xb0\xea\x1d\x48\x9b\x0f\x32\x3e\x84\x58\xc6\x71\x8a\xe8\xe0\x92\x64\x47\x1c\x93\xa9\x3d\xfb\x6a\x5b\xae\xfa\xf0\x92\xda\x3c\xa3\x2a\x48\x40\x9c\x1e\x59\x7d\x71\xa1\x12\x5c\x92\x90\x0b\x90\x91\x8b\x12\x9b\x87\x62\x65\x65\x05\x3f\xfd\xe9\x4f\x4d\xfd\xc9\x62\x96\x2d\x99\x06\xb1\x2b\xb9\xf8\x4a\xdb\x33\x4d\xc2\x3c\xb4\x64\x69\xd1\x3c\x38\xf2\x08\x0c\x3d\xcf\x56\x66\x6a\xdf\x04\x9b\xd7\xea\x33\xe1\x73\x59\x64\x36\x8d\x4b\xfb\x67\xeb\x93\x0d\xd6\x54\x9e\xc7\x52\xe1\x4f\x3c\xf1\x04\xee\xbb\xef\x3e\x8c\x8c\x8c\x04\xb1\xb2\x54\x71\xb7\x36\xa2\xf8\xc4\x12\xba\xe7\x69\xe8\xaf\xc6\x0b\xc6\x58\x3b\x8e\x5f\xb4\x62\x65\xd8\x92\x52\x26\x9b\xbd\x00\x04\x2b\x2b\x2b\x4a\x68\x64\x29\xc0\x2c\x4b\xd4\xa5\x08\x60\x82\xcd\xfa\xae\x8a\x9e\x7a\x1a\xbb\xf5\xd6\x5b\xf9\xc0\xc0\x80\xaa\xe7\x01\xf0\x8b\x82\x57\x77\xcd\xf6\x7d\xbc\x28\x58\x95\xe9\xb1\x0a\x68\xa7\x1b\xa1\x7b\x52\x57\xf7\x03\x6c\xdd\x65\x29\xc6\xc8\xb5\x16\xf4\x50\x87\xff\x34\x22\x6b\xe3\x57\xb2\xeb\xa2\x34\x10\x49\xe9\x00\x80\xf8\xd6\xb7\xbe\x65\x1b\xa0\xa6\x7e\x52\x06\xda\xea\x50\x18\xd7\xe4\x33\x69\x30\x5a\x66\x83\x73\x4d\x78\xd7\xc4\xc8\x6b\x6d\xb8\x06\x91\x0b\x87\x89\x5e\xd3\x00\x73\x69\x71\x0a\xeb\xaa\x67\xa2\xd7\x96\x97\x35\x76\x5d\xb0\xb6\x6b\x75\x6f\x52\x2c\x59\x5a\x1d\xcd\x66\x93\xff\xcb\xbf\xfc\x8b\x78\xe8\xa1\x87\xf8\xc8\xc8\x88\xda\x6b\x91\xb8\x2b\xe8\x7e\xa8\xc9\x53\x31\x42\x00\x88\x57\x65\x04\xba\x9f\x7e\x0c\xe2\xeb\x00\x80\x10\x42\x88\xe5\xe5\x65\x7c\xe7\x3b\xdf\xc9\x52\x80\x26\xa1\x6a\x1b\x1b\x36\x58\xa3\x22\xf0\x48\x86\x0d\x99\xb1\xc1\xd1\xd1\x51\x1d\xd6\x03\x50\x1e\x6c\x7a\xe3\x63\xcb\xc5\xdb\x10\x9f\x5c\x1e\x31\x22\xfa\x95\x7a\x94\x34\xca\xd0\x0b\x53\x1b\xba\xa2\x57\x4f\xf4\x78\x48\xca\xa5\x11\x17\x86\x56\x5f\x9b\xab\x74\x2e\xa2\xfb\x59\x83\xe4\xb0\xe1\x78\xe7\x9c\x89\x6e\x9d\xb1\x2e\x09\x6b\xd3\x6c\xae\x7a\xa6\xc9\x6e\xd2\xa8\x94\x2e\xd7\x80\x37\xd1\x6f\x4a\x74\x70\xbb\x34\xb7\xfe\xeb\xb2\x0e\x5c\xbc\xb3\x4d\x72\xca\x8b\x3c\xb0\x59\x7d\x73\xc1\xb8\x9e\x5d\x9e\xb6\x5d\xfd\x33\x69\x64\x18\xca\x4c\x6d\xea\xf9\xfc\xf1\xc7\x1f\xc7\xea\xea\xaa\x78\xf8\xe1\x87\xa1\x36\x6a\x21\x12\x04\x1c\x91\x25\x91\x58\xed\xf1\x78\x57\x74\xf7\xfc\x69\x1f\xcc\x76\x3d\x37\x4a\xa7\x4d\x19\xb8\x14\x86\x4b\x18\x71\x3d\xc6\xe1\x1a\xa0\x46\x64\xf1\x47\x67\xd4\x40\xf5\x01\x94\xb7\xcd\x97\x0f\xf7\x75\x0a\x9b\x63\xa7\x04\xc9\xd7\xaa\x80\xe4\x3a\x79\xb1\xd5\x78\xbe\x46\x77\x55\x25\xca\xd6\x23\x1d\xd1\x75\xd3\x0f\x17\x4e\x8d\x36\x5f\x91\x3c\x0a\x16\x49\x29\x9b\xd0\xac\x8d\x33\x67\xce\xe8\x7d\xb0\x69\x09\xca\x94\x3c\x03\x37\x8f\xe6\x32\xb5\x97\x67\xd0\x51\x38\xda\xae\x69\x40\xeb\xb0\x26\xe1\x41\xf1\xba\x12\xe5\x97\xcd\xb2\xb0\x59\x05\x26\x7a\x69\x9e\x8e\x2f\xaf\x55\x95\x25\xd8\xb3\xac\x1b\x9b\x40\x77\xf5\xc3\x25\xa0\xf5\x5f\xdb\x64\x4b\xb5\x13\xef\xe4\xe4\x3f\xfd\xe9\x4f\x31\x31\x31\x21\x1e\x79\xe4\x11\x30\xc6\x44\x7c\xec\x44\x72\xf8\x8f\x76\x10\x10\x18\x63\x42\xbf\x06\x80\x77\xde\x79\x07\x27\x4e\x9c\x70\xd1\xe9\x1a\x37\xb6\x44\x79\xe7\x52\x2e\x49\x3f\x4d\x16\x87\x4d\x13\xa4\x1e\xf6\xcd\x37\xdf\xac\x0f\xb4\xe8\xa8\xb4\x90\x55\x77\xcc\x97\xef\xe4\x12\x3e\xd0\xdd\x2a\x4b\xf7\x79\xc5\x6b\x29\xa9\x3b\x3d\xa5\x96\x61\x13\xd8\xee\x57\xe7\xaf\x6c\x68\x9f\x9c\xaa\xb6\x2f\x40\x3b\x37\x14\xf1\xeb\xf2\x2b\x2b\x2b\x78\xf9\xe5\x97\x5d\x56\x80\x9e\x6c\x8c\xd6\xfb\x9e\x35\xc8\x4d\x75\x8d\xcc\x26\x65\xfa\x64\xb4\x69\x3b\xd3\xaf\x9e\x6c\x13\x26\x8b\x16\x1d\xde\xd5\x8e\x4b\xc3\xdb\x26\xa8\x4b\x38\xdb\x60\x8d\x63\xcc\xd0\xbe\x49\x30\x67\x69\x55\x9a\x47\xad\x21\x9b\xe6\x76\xd1\xa9\xf2\xf2\xc2\x02\x80\x88\x8f\x71\xc0\xa3\x8f\x3e\x2a\xee\xb8\xe3\x0e\x3e\x34\x34\x24\xb6\x6c\xd9\x92\x94\xab\x77\x53\x94\xc0\x00\x80\xd9\xd9\x59\x5c\xb9\x72\x05\x2f\xbe\xf8\xa2\x6b\x72\x53\x45\x61\xa2\xc1\xd4\x5f\xd3\x78\x00\xc9\x33\xc2\xd2\x7d\x1c\xae\x01\x97\x42\xbc\x7d\xfb\x76\x45\x6c\x24\x38\x24\xfc\xfa\xaa\x37\x3a\xbc\x52\x3c\xac\x26\x39\x43\x5a\x68\xa4\x56\x4a\xe2\x13\x9d\xd3\x79\x88\x5d\x14\xcd\x8b\x51\x01\xd3\xf8\xbe\xe5\xc9\xc6\xe9\x91\xe6\x6b\x41\x01\x73\xf1\x2a\x4a\xb2\xfc\xca\x18\x13\x67\xcf\x9e\x75\x31\x42\xcf\xe7\x04\xc6\x65\xa2\xd9\x18\x6e\x62\xbc\x6d\x60\xc3\x92\x6f\x1a\xc8\x36\xed\x4e\x07\x49\xa6\x66\x20\xf5\xb3\x04\x01\xa5\x8f\xf6\x91\xe2\x31\xd1\x9c\xa5\xe1\x69\x1b\x26\x61\x07\x03\x1c\x6d\xd7\x54\xae\x97\xb9\x04\xae\x89\x2e\x13\x6f\x4d\xf8\x6d\xcf\xcc\x84\xd7\x7a\xff\xe2\x8b\x2f\x8a\x42\xa1\xc0\x8b\xc5\x22\x00\x60\x60\x60\x00\x07\x0f\x1e\xc4\x33\xcf\x3c\x23\xca\xe5\x32\x6f\xb5\x5a\xa2\x5c\x2e\xf3\x20\x08\x10\x04\x81\xa9\x5f\x59\xfd\x35\x8d\x39\x13\x1c\xa5\xdb\x95\x92\xb1\xa6\x5c\x15\xda\x80\x6d\x92\x24\x04\x8d\x8c\x8c\xe8\xc8\x7c\x00\x95\xad\x0b\xa5\x43\xa5\x80\x8f\xda\x96\x51\x99\xe1\x26\xb5\x77\x23\xe5\xa2\x90\x4a\xf1\xe6\xb1\x99\xfe\xf6\xc4\xe5\x0d\x6b\xa7\x10\x2f\x4f\x41\x7b\x65\x7e\x65\x65\x05\x2f\xbd\xf4\x52\x5e\x0b\x41\xef\x9b\xde\x17\x97\x85\x60\x9b\x28\xc2\x52\xcf\x84\xd7\xd6\x4e\xd6\xe0\x33\xd1\x9e\x57\x28\x01\xf9\xfa\x60\x82\xcd\xcb\xcb\x3c\x1a\x4f\xa7\x8f\x4e\x3e\xbd\xcc\x84\xd7\x35\xf9\x5d\xf9\x2e\x21\xa3\xb7\x9f\xb7\xdd\xbc\x42\xcc\x26\x24\x93\xf2\x30\x0c\x11\x86\x21\x00\xa0\xd5\x6a\x61\x7a\x7a\x5a\x00\xe0\xad\x56\x4b\xa8\x3c\x47\xbf\x00\x00\x1b\x37\x6e\x44\xbd\x5e\xb7\xd2\x75\xe1\xc2\x05\xdb\x7c\xc8\x12\xaa\x4e\x78\xdd\x55\xa1\xda\x0b\xe8\x1d\x4c\x00\x80\x6d\xdb\xb6\xf1\xf8\x2b\xd9\x3c\xc6\xe1\x17\x24\x2a\xbb\xe6\x62\x37\x25\xd9\xdd\x29\x53\x2f\xb3\xa5\xf7\x66\x74\xef\x6c\x82\x26\xed\xe6\x48\x84\x0c\xed\x8b\x1b\xd7\xde\x5a\x2d\x8a\xe4\xfc\xd0\xf8\x8b\xf2\x7a\x6c\x43\xef\xcf\x7a\x92\xcd\x54\xcb\xd2\xa4\xa6\x7b\x9b\x25\xb0\x1e\xe1\x90\xa5\xf1\x28\xce\x3c\x1a\xdf\x94\xef\x6a\x9b\x5e\x9b\x84\x0f\xad\x47\x85\x8d\x4d\x43\x52\xdc\x2e\x3a\x29\x8c\x09\xb7\xed\xda\x45\x17\xb4\x7c\x97\xa0\x4f\xa5\xbe\xbe\x3e\xbe\xba\xba\x2a\x0e\x1c\x38\xc0\xe3\xef\xc4\x9a\x68\xc3\x9b\x6f\xbe\x89\x85\x85\x05\xcc\xcc\xcc\xd8\xf0\x99\x68\xb6\xc1\xf5\xa4\xcf\x7f\xfe\xf3\xa8\x54\x2a\xe8\xeb\xeb\x33\xb5\x2f\x18\x63\x58\x5e\x5e\xe6\xcd\x66\x13\xaf\xbe\xfa\x2a\x96\x97\x97\xd5\x91\x12\x14\x9e\x8e\x9d\x2c\x85\xca\xe9\xce\xd1\x2c\x4d\x04\x00\x38\x70\xe0\x80\x2a\x4b\x04\x47\xa5\x5d\xa8\x0f\x37\xfc\xc3\x80\x16\x14\x4d\x56\x43\xba\x1b\xcd\x55\x92\x60\xd1\x0b\x6b\xe9\xe3\xd6\x92\xc3\x4c\xa2\x25\x59\x99\xb8\x2a\x12\xc0\x8a\x1f\xce\x4d\x0c\xae\xbe\x0d\xd6\x3d\x3f\x54\x09\x0d\x00\x38\x75\xea\x94\x4e\x73\xd6\x20\x37\xf5\x1b\x70\x0f\x4c\x10\x38\x97\x50\xa0\x93\x2f\x4b\x33\xb9\xb4\xae\xcb\x8c\x57\x38\xf2\x68\x52\x97\xa0\xc8\xa3\x99\x4d\xf7\x79\x84\x8f\xad\xcc\x66\xfd\x50\x3a\x6c\xb8\xf2\x6a\xcb\x3c\x34\x65\xf2\x6b\x74\x74\x14\xb7\xde\x7a\x2b\x06\x06\x06\xd4\x5b\xa8\x00\x80\xf8\x55\x0b\x75\x0d\x20\x8a\x57\xdc\x7b\xef\xbd\x68\xb7\xdb\x98\x9d\x9d\xc5\x99\x33\x67\xf8\xa9\x53\xa7\xb2\x84\x47\x4f\x9b\x34\x1d\x3b\x76\x8c\xef\xd8\xb1\x03\xe5\x72\x39\x09\xa8\xd2\x5f\x85\x57\x4a\x89\x6a\xb5\x2a\xaa\xd5\x2a\xee\xbf\xff\x7e\xd1\x68\x34\x70\xf6\xec\x59\xbc\xfb\xee\xbb\x58\x5a\x5a\x72\x59\xa4\x2e\xeb\x51\x00\x69\x8b\xc3\x26\xad\x53\x48\x8a\xc5\x22\xdf\xb8\x71\xa3\x5e\xe6\x41\xa2\x3c\xb6\xec\xef\x2c\x07\x7c\x3c\xf9\x92\x1a\x74\x37\x44\x7d\x85\x5e\x2d\xad\x46\x4b\x2b\xc9\x46\xb0\x18\x52\x3f\x7f\x40\x9d\xcf\xa8\xbf\x2c\x3b\x59\x6b\x9f\x9d\xaf\x04\x17\x11\x2d\xbf\xaa\xd8\x86\x00\x80\xcb\x97\x2f\x63\x65\x65\x45\xef\xa8\xce\x0c\x9a\x4f\xfb\x69\x13\x32\x2e\xe1\x60\xc2\x47\x61\x4c\x83\xde\xa4\xcd\xa9\xd6\xcb\x12\x14\xa6\x64\x12\x72\xb4\x9e\xcb\x34\xcd\xab\x11\x29\x4f\x6c\x82\x0e\xc8\xee\x93\xd1\xa2\x25\x79\x2e\x0d\x6c\x52\x72\x26\x1a\x4d\xe3\xd9\xa5\x14\x7a\xf8\x77\xe3\x8d\x37\xf2\x3b\xef\xbc\x33\xc1\x41\x3e\x83\xc0\x81\xd4\x0a\xa0\x5a\x11\x11\xa5\x52\x49\x6c\xde\xbc\x59\x6c\xda\xb4\x09\x37\xdc\x70\x03\x7f\xfb\xed\xb7\x95\x82\xcb\x12\x9e\x09\x0d\xbe\xef\xf3\x76\xbb\x2d\xfe\xe0\x0f\xfe\x80\x97\x4a\xa5\x54\xbb\xea\xf3\x8f\x3a\x1d\xf1\x92\xaf\x5a\xb9\x09\xd4\xf2\x6e\x7f\x7f\xbf\x38\x72\xe4\x88\xd8\xbb\x77\x2f\xbe\xf5\xad\x6f\x99\xfa\x9d\x47\x90\x03\xe8\xee\x56\x33\x69\x9c\x84\x49\x5a\x39\xdf\xbe\x7d\xbb\xee\x53\x71\x00\x3e\x93\x28\x6f\x59\x2c\xdd\xcc\x25\x2b\xcb\x78\x7b\x27\x15\x06\x89\x20\x00\x5d\x35\xa1\xc1\x8c\x04\x58\x3b\x46\x0d\xe8\x70\xd9\x9a\x18\x5c\x7d\xb3\x53\x90\xc9\x5b\x81\xda\x2e\x3a\xf1\xe6\x9b\x6f\xaa\x20\x92\xde\x07\xdb\x24\x36\x69\x79\x5a\xc7\xc9\x38\x52\xe6\xd2\x56\xa6\x89\x67\xa2\xc9\x64\x25\xd1\xf6\x69\x1d\x1b\x8e\x2c\x01\x08\x02\x4f\x69\xb6\x59\x9c\xa6\xc1\x6e\xc2\x43\x61\x6c\x7c\x35\x59\x65\x79\x27\x94\x0d\x6f\x1e\xeb\xc9\xd4\x27\x0a\x9b\xb4\xf5\xc5\x2f\x7e\x91\xd7\xeb\x75\x90\x09\x1a\xbd\x62\x21\xe1\x79\x21\xf3\x0a\x82\x7b\xd1\xae\x68\x88\x80\xcb\x40\x30\xa8\x53\xb9\x82\x78\x69\x55\x0c\x0d\x0d\x05\xf7\xdc\x73\x0f\x36\x6f\xde\x8c\x9f\xff\xfc\xe7\xb4\x3f\xd6\x7e\xff\xc6\x6f\xfc\x06\xb6\x6e\xdd\x9a\x6a\x5b\x4a\xe9\x31\x30\xdf\x0f\x59\xb9\x7f\xad\x50\xdf\xb6\x58\xda\xda\xd7\x2e\x0c\x72\x09\xaf\x53\x90\x8d\xa5\x72\x38\x73\x6d\xa0\x3d\xb5\xe2\x87\x4b\x01\x97\x2d\x30\x24\x2b\x8f\xfd\xfd\xfd\xe2\x2b\x5f\xf9\x0a\x4e\x9d\x3a\x85\x13\x27\x4e\x20\x0c\x43\x9b\x65\x67\x7a\x06\x00\x7a\xdf\x55\x31\x31\x3d\xf5\xf0\xcf\x9d\x3b\x27\x3e\xf5\xa9\x4f\x71\xad\xbe\xef\x09\x56\xdd\xb2\x58\x3a\x9c\x04\x38\x93\x53\x9c\x23\x20\x1a\xab\xd0\x63\x1b\x89\x10\x49\xc1\xb0\xee\x2e\xd1\xee\x5b\xb0\x53\x57\x6b\xed\x73\x88\x4e\x2b\x57\xfb\xf5\x05\x63\x4c\x84\x61\x88\xf7\xdf\x7f\x9f\x4e\x4c\x4a\xbb\xce\x0c\x13\x63\xe0\x80\x33\xc1\xd2\x64\x13\xc0\x2e\x81\xac\xd7\x33\xe5\x53\x1c\x36\x81\x62\xa3\xdf\xa9\x75\x8b\xc5\x22\x07\x80\x4e\xa7\x83\xf8\x1e\x9d\x4e\xc7\x65\x21\x28\x9c\x59\xda\xdc\x25\x10\x5d\xfd\xd5\x61\x4d\xfd\xb6\x3d\x2b\x3a\xe9\x4c\x16\x97\x4d\x60\xd3\x3e\x00\x88\x94\xdc\xe1\xc3\x87\xf9\xed\xb7\xdf\x0e\x20\x7a\x81\x13\x91\x86\xf7\x19\x98\xef\x09\x56\x19\x5b\xf6\x47\xb7\x2d\x94\x6e\x1c\x5d\xf6\x0f\x0e\xac\x15\xc6\x25\x80\xb6\x27\x96\xe6\xfb\x82\xf7\xa7\x06\xda\x6f\x5d\xaa\xaf\x9d\x5f\x2c\x07\x0b\x02\x68\x4b\xc8\x76\x2c\x78\x82\xbd\x7b\xf7\x8a\x8d\x1b\x37\xf2\xc7\x1e\x7b\x0c\x6b\x6b\x6b\xb4\xe9\x84\x2e\xce\x39\xbf\xff\xfe\xfb\xb1\x69\xd3\x26\xc4\x6d\x47\x3b\x4d\xc1\xfc\x72\x87\xd7\xf6\x4d\x57\x0e\xef\x9f\xaa\xfc\xe6\x60\xd3\x3b\xea\x87\x7c\x3b\x8b\x0e\xcc\xe2\x60\x68\x0b\x86\x46\xcb\x13\xe7\xaf\xd6\xd6\x9e\x79\x77\xac\xf9\x93\x89\xc1\xd5\xf3\x21\x63\xcd\x58\x80\xb4\x2b\x95\x0a\x6e\xbd\xf5\x56\x51\xa9\x54\xf0\xdc\x73\xcf\x71\x21\x44\x96\x1c\x48\xf1\x97\x06\x47\xf5\x4a\x46\x73\xf3\xcb\x5f\xfe\x72\x4a\xf2\x01\xf0\x37\xae\x7a\xa3\xb5\x96\xb7\xa7\xcb\x75\x10\xb3\x22\xf5\xd2\x0a\x7a\x85\x47\xd7\x32\x51\xd1\x90\xe4\xe5\xfb\x18\xc5\xe4\x40\xfb\xfc\x72\x29\x9c\x84\xf6\xda\xbc\x8a\x6f\x9c\x3c\x79\x52\xd1\xa9\xd3\x6f\x1a\x6c\x20\x30\x26\xc6\xd0\x3c\x53\xbe\x49\x9b\x52\xcd\x01\x52\x6e\x1a\xf0\x26\x5a\x68\x1b\x34\x9f\xe2\xa5\x65\x36\x2d\xcf\x3d\xcf\x43\x10\x04\xe2\xb6\xdb\x6e\xe3\x00\x70\xc3\x0d\x37\xa0\x58\x2c\x52\xdf\x98\x87\x61\x88\xf8\x18\x3c\x00\xe0\xf1\x4a\x95\x9e\x5c\x83\xca\x24\xf8\x4c\x7d\xc8\xea\x57\x8f\xd2\x42\xef\xf3\xcc\x12\x06\x79\xac\x1b\xa3\x15\x73\xf3\xcd\x37\xe3\xb6\xdb\x6e\x03\xa2\x09\x1b\x7d\x7d\x5e\xc2\xf7\x24\xab\xec\x9d\xae\x1c\xb8\xf9\x4a\xf5\x4b\x43\x2b\xc5\x4f\x7a\x21\xdb\x1e\xbd\xcc\xd9\x8d\xe3\x6d\x59\x84\x90\xd7\x64\x63\xd5\x13\x27\xcf\x0d\xaf\x7e\xe7\xcd\xcd\x8d\x9f\xcd\xf4\x77\x66\x10\x9f\x48\x07\x20\x18\x1a\x1a\x0a\x1e\x78\xe0\x01\x7c\xef\x7b\xdf\x33\xf1\x8a\x03\x10\x0f\x3c\xf0\x00\x1f\x1f\x1f\x57\x31\x14\x9f\x31\x56\xe6\x02\x95\xdd\xb3\x7d\xfb\x3e\x76\xb1\xf6\x27\xc3\x2b\xc5\xfb\xb9\x64\x75\x62\xab\x83\x09\x94\x39\x43\xad\xba\x56\xd8\xbc\x67\xa6\xef\xae\x1d\xf3\xe5\xdf\xbf\x30\xd8\xfa\xeb\x17\x76\x2e\xfe\xf3\x42\x5f\x30\x23\x21\x79\xfc\x2e\x4c\x70\xe0\xc0\x01\xf1\xcc\x33\xcf\x98\x84\x86\x73\x5c\xaa\x36\x6d\x13\x46\x7f\x08\x18\x1a\x1a\xc2\x83\x0f\x3e\x88\x52\xa9\xc4\x11\xbd\x9c\x53\x85\xc4\xe8\xe1\xab\xfd\x0f\x1e\x3b\xbb\xf1\x2f\x0a\x92\xf9\x89\xab\xa2\x99\x11\x89\x98\xd0\x0f\xef\x81\xd4\x45\x47\xda\x4a\x21\xcb\x2c\x01\x17\xed\x27\xf7\xce\x3f\xfa\xce\x78\xf3\x27\x52\xca\x4b\x8c\xb1\x49\xf5\x26\xac\x8c\xbf\x32\x6f\xe8\x38\x7d\x10\xb4\x6f\x36\x78\x9b\x59\xeb\xc2\x6f\x2b\xa7\xf5\x5d\x66\xb6\x71\xf0\x10\xdc\x34\x65\x4d\x68\xbe\x77\xef\x5e\x9c\x39\x73\x46\x9d\x07\x9b\x24\xb2\x6b\x31\xc9\x27\xa7\xb2\x09\x0d\x1e\x31\x9f\x69\x5b\x36\x1a\x4c\x93\xd2\x94\xef\xc2\x05\x0b\xac\xed\x19\x98\x60\x5c\x8a\xd0\x2a\x6c\x1e\x7e\xf8\x61\xfd\x7c\x19\x1f\x40\x79\xc3\xaa\x37\x7a\xcf\xb9\x0d\x5f\xd9\x31\x5f\xfe\x9a\x27\xf8\xe6\xe4\xad\x4b\xfd\xc5\x4c\xa8\x3c\xa8\x61\x1d\x2c\x97\xc2\x17\x5f\xde\xbe\xf4\x7f\x9c\x1c\x5f\x79\x2d\x60\xa9\x37\xb8\x83\xd9\xd9\x59\x3c\xf6\xd8\x63\x50\x4b\xb0\x2a\x7d\xee\x73\x9f\xe3\xe3\xe3\xe3\x8a\x26\x5f\x4a\x59\xf1\x43\x5e\xbb\xf5\xd2\xc0\x27\x6f\xb9\x3c\xf0\x67\xa5\x80\xef\x63\x71\x53\xa9\x57\xca\x55\x22\x73\x49\x42\x8a\xd9\xfe\xce\xbf\x3e\xb9\x6f\xfe\x7f\xbf\x3a\xd0\xbe\x28\x21\x1b\x4a\x78\xb4\xdb\x6d\xf1\xb7\x7f\xfb\xb7\x36\x6b\xda\xf8\xbc\x0a\x5a\x33\x82\x34\xad\x88\x56\x65\x6c\x75\x75\x55\xdc\x7e\xfb\xed\x0c\x40\x01\x40\x51\x4a\xd9\xef\x49\x36\x78\xe3\xd5\xea\x7d\x63\x0d\xff\xa3\x6a\x53\x57\x32\xf8\xb4\x8d\x5b\xdd\x7b\xfd\x8b\xf3\xc9\xde\xf3\xb4\x41\x42\xd2\x52\x29\xb8\xfa\xea\xf6\xe5\x1f\xaf\x7a\xe1\xfb\x8c\xb1\x59\x00\x2b\xea\x10\x93\x6f\x7c\xe3\x1b\x21\xa9\x69\xea\x8b\xca\xeb\xe9\x93\xc6\x5e\x61\xa8\xaf\xca\x75\x86\x4a\x43\x99\xe9\x44\x00\x1d\xbf\xc2\xcb\x60\x6e\x4b\xc7\xaf\xd3\x44\xdb\xd6\x93\xaa\x67\x82\x13\xf7\xdc\x73\x0f\x3f\x7e\xfc\x38\x76\xef\xde\x8d\xa3\x47\x8f\x32\x0d\xb6\x80\xc8\x3f\x4f\xbe\xed\xcb\x18\x2b\xa8\xbf\xb8\xbc\xa0\x60\xa5\x94\x4c\xbd\x7c\x75\xf4\xe8\x51\xfe\xd1\x8f\x7e\x14\x37\xdf\x7c\x33\x3b\x71\xe2\x84\x38\x78\xf0\x20\x9b\x99\x99\x61\x84\x06\x41\xae\xa1\x5d\xeb\xfd\xe7\x04\x4e\xe7\x15\x48\x3d\x0a\x4b\x79\xc7\x60\xe7\x2f\x7d\xf6\x3a\x3e\xfa\x0c\x65\xb5\x5a\xe5\x9f\xff\xfc\xe7\x59\xb9\x5c\x56\xbc\xf1\x21\x51\x19\x5e\x29\x6e\xfb\xcc\xa9\xc1\x3f\xdb\xba\x50\xfe\xe3\x82\x64\x75\x26\xd5\x71\x54\x5a\x2c\x2f\x19\xd2\x5d\x52\x18\x18\xf7\x43\xb6\x7d\xcb\x62\xf9\x8e\x62\xc8\x67\xae\xd4\xd7\x2e\x0a\xc8\x50\xd1\xd4\xd7\xd7\x27\x6a\xb5\x1a\xce\x9f\x3f\xaf\xd3\x2f\x8f\x1d\x3b\xf6\xff\x70\xf6\xae\x41\x76\x1c\xd7\x99\xe0\x77\xb2\xea\xd6\xbd\x7d\xfb\xf6\xed\x46\x77\xe3\xd5\x00\x1a\x0d\x12\x00\x1f\x06\x41\x12\xa0\x1e\xa6\x48\x91\xb2\x48\x8b\x92\x28\x5b\x23\x2b\x64\xf9\x21\xd1\x94\x25\x44\xcc\xce\x4c\x6c\x4c\x6c\x4c\xcc\x6e\x38\x66\x62\x37\xf6\xd7\xc4\xc6\xc6\xc4\xc4\xc6\xfe\x18\x8a\x72\x58\xa4\x45\x69\x2c\xcb\x61\x3b\x68\xeb\xcd\x87\x4d\x51\x12\x09\x80\x00\x08\x3e\xf0\x20\x1e\x0d\xa0\xd1\x68\x34\xfa\x71\xfb\xf6\x7d\xd4\xad\xca\xb3\x3f\x2a\x33\x2b\x2b\x6f\xd5\x05\xbc\x19\xd1\x7d\xab\x32\xb3\xf2\x71\xf2\xe4\xc9\x73\x4e\x9e\x3c\x49\x9a\xd3\x61\xe6\x8a\xcf\x34\x7a\xf0\x52\xfd\xb7\x0f\x5e\x1e\xf9\xdf\x83\x98\x66\xdc\xcb\xd7\xcd\xc1\x72\x27\xb0\x69\x16\xd1\x50\x4f\xec\xdd\xda\x28\xef\x9c\xaf\x77\x8f\xb7\xca\xb2\xc5\xcc\x31\x11\xc5\xbe\xef\xe3\xce\x3b\xef\xb4\xb9\x4c\xe4\x8c\x63\x66\x0c\x6c\xc2\xa1\x23\xed\x01\x64\x64\x11\x9f\x0f\x1e\x3c\x48\x48\x44\x94\x12\x11\x0d\x07\x11\x6d\x3e\x78\x79\xe4\x0b\x23\xa1\x3f\x4d\xd0\x37\x50\xd9\x67\x50\x90\x55\x60\x18\x9a\x92\x3d\x25\x0b\x27\x9b\x16\x5a\x00\xe0\xca\x58\xf7\xe4\xfb\x9b\x5b\xaf\xc6\x82\xaf\x11\xd1\x2a\x92\x5d\x95\x1e\x80\x98\x88\x68\x6e\x6e\xce\x9e\xa8\x79\xfd\xb1\x47\x53\x03\xc5\x8e\x73\x57\x45\x7b\xf2\xba\x84\xc4\x2e\xc7\x25\x56\x45\x69\xee\x90\xba\xe5\xbb\xc1\x26\x42\x2e\x0f\x66\x0f\xa8\x7e\x17\x00\xe4\xc4\xc4\x04\xb5\xdb\x6d\xf9\xd4\x53\x4f\x89\x2d\x5b\xb6\xe8\x8b\xb1\x3c\xe5\x27\xc5\x67\xe6\x12\x11\x95\x00\x94\x01\x94\x99\xb9\x42\xa0\x0a\x31\x97\x49\x62\x88\x80\x00\xa0\x32\x08\x25\x00\x25\x68\x05\x20\xa0\x89\x07\x01\x20\x21\x04\x0e\x1e\x3c\x88\xe9\xe9\x69\xdc\x75\xd7\x5d\xe8\x76\xbb\xb8\x71\xe3\x46\x11\x7c\xf2\xfa\x59\x34\xb9\x6d\x22\xe0\xc2\x5f\xc3\x43\xe4\x7c\x6f\x8f\x8f\xbd\x32\x16\x8d\xad\x5b\xb7\x79\x7e\xe2\x89\x27\x30\x31\x31\x01\x24\xc4\xb3\x0c\xa0\x3a\xd2\xf5\xb6\x7c\xea\xfd\xf1\xff\xb0\x65\x2d\xf8\x22\x31\x95\xa0\x70\x36\xc5\x71\x0b\xdf\xd9\x1a\x30\x55\x3a\x81\xe0\x31\xc6\x26\x5a\xc1\x3d\x52\x60\x76\xbe\x1e\xce\x81\x28\xd6\x4a\xd3\x91\x91\x11\x6e\xb7\xdb\x58\x5c\x5c\x04\x00\xf9\xf4\xd3\x4f\x0b\x35\x76\x3e\x11\x95\x01\x8c\xdc\xb9\x30\xfc\xd1\x0f\xcf\xd6\xff\xac\x1c\x89\x9d\xc6\xe5\x04\x00\x73\x63\xb2\x05\x31\x06\x4c\xfb\x92\x76\xb0\xb2\xd4\x26\xaa\xf4\xc4\xce\x7a\xa7\x54\xba\x3c\xda\x3d\xd9\x2b\x71\x17\x40\x0c\x40\x96\x4a\x25\xa9\x9c\x01\xd9\x04\xd5\x1d\x1f\x33\x06\xae\x3f\x8e\x9b\xc9\xe3\x00\xcc\x09\x3e\x1f\x40\x30\x1c\x7a\x63\xb5\x8e\xbf\x9d\x15\x00\x33\x1c\x86\x05\xd8\xa4\x46\xdb\xa6\xdc\x21\x1e\x56\x30\xbb\x2d\x89\x62\x54\xce\x8f\x84\x67\x7b\x5e\xe2\x2a\x4d\xed\xa6\x48\x20\x39\x29\x78\xf8\xf0\xe1\x22\xf9\x38\x4f\x47\xf0\x2f\x11\x43\x8a\xfa\x6f\xa7\xdd\x8a\xf8\x31\xa8\x2d\x45\x6d\xb7\xdb\x54\x14\x97\xa9\xe3\xe3\x1f\xff\xb8\x98\x99\x99\x81\x5a\x29\xf5\x9f\xde\xaa\xf3\xc1\x1c\xf8\x3d\x54\x82\x76\x3c\x5e\x5e\x97\x9b\x86\x1a\xf1\xf6\x52\x87\x37\x79\x11\x4f\x08\x89\x2a\x49\xae\x30\x51\xc4\x02\x2d\xe9\x51\x23\x2a\xd3\xb5\x4e\x4d\xcc\xb5\xeb\xde\x5c\x58\xa1\xc5\x5e\x85\x5a\xb0\x8e\x78\x03\xc9\x15\x00\xc3\xc3\xc3\xf2\xd1\x47\x1f\xc5\xb6\x6d\xdb\xc4\xdb\x6f\xbf\x8d\xc5\xc5\x45\x17\x86\x83\x60\x84\x9b\xa4\x01\xfd\x30\x2d\x82\xa1\x1b\x77\xb3\xf1\xe8\x2b\x7b\x7a\x7a\x5a\x28\x8b\xe8\x04\x66\x40\xa5\x14\xd1\xd8\x47\x2e\xd6\x7f\x6f\xf3\x5a\xf0\x79\x80\x7c\x42\xff\x22\x08\xe6\xf4\xc0\x26\xf5\xcf\x3a\x8d\xeb\xe5\x08\xd3\xf7\x5f\xae\xfd\xfb\xab\x23\xe1\x85\xb9\xd1\xee\x69\x50\x02\x47\xdf\xf7\xc3\x7b\xee\xb9\x07\xef\xbf\xff\xbe\x7c\xfc\xf1\xc7\x8d\x71\xa5\x9a\x63\xd5\x91\xae\xbf\xe5\xbe\x2b\x23\x4f\x0d\xf5\xc4\x6d\xfd\x7e\xf2\xd0\xcf\xa3\xea\x36\x18\xe2\x46\x36\xe7\xe1\x6f\x5f\x2d\x7f\xfe\xae\x85\xe1\xb7\x0e\xef\x68\xfc\x23\x93\x39\xae\x21\xbe\xfe\xf5\xaf\xe3\xaf\xff\xfa\xaf\x5d\x87\xc7\x36\x5c\x4d\x28\xf2\xc7\x91\x87\xc8\xf2\xab\x5f\xfd\xaa\x96\x8b\x35\x60\x83\x8d\xcd\x60\x7b\x39\xa6\xc9\x0c\x87\x01\x97\x7b\xd0\x49\x4e\x67\x9d\x38\x7b\x3c\xf4\xf7\xa1\xc7\xad\xf9\x91\xf0\x03\x4e\x0d\xbe\x8c\xed\x86\x3a\x5e\x6c\x77\x6a\xd0\x44\x85\x13\x97\xd7\xd7\x41\xf2\xb4\xcc\x29\xc3\x7d\x76\x11\xdc\xfd\x2d\x82\x6f\x5e\xd9\x45\x75\xf4\xc5\x7d\xe1\x0b\x5f\x10\xea\x06\x3d\x43\x30\xa0\x2d\x7a\x7b\x5c\xad\xac\xc9\xa9\xfa\x42\x74\xdf\xf0\x4a\xfc\x91\xa0\x25\xef\xf4\x7b\x3c\x4d\x8c\x1a\x18\x01\xc0\x3e\x40\x76\xdf\x93\x3f\x42\xc8\x84\x8e\xf4\x68\xbe\x57\xa1\xd3\xad\xba\x38\xd2\xd8\xe8\x1f\x6e\x8d\x79\x17\x7a\x15\x5a\x41\x7a\xb0\x30\x22\xa2\x68\xcf\x9e\x3d\x72\xc7\x8e\x1d\x78\xee\xb9\xe7\x06\xf5\xb7\x88\x10\x0f\x82\x6f\xde\x58\xca\x9c\xf4\x41\x22\x5d\x5e\x1d\x7d\xc4\xc8\xba\xbe\xd4\x07\x10\x80\x51\xdd\xb6\x5a\xbe\x73\xf7\x62\xf5\xab\x02\x54\x01\x90\x2f\x0f\x90\xbb\xf4\x39\x6c\xa4\x85\xeb\xc3\xa1\x77\xf7\x03\x97\x47\xfe\xe0\x1f\x46\xc2\xff\x16\x7b\xac\x09\xb1\xd8\xb0\x61\x83\x04\x80\x5d\xbb\x76\xe9\xb6\xfa\x48\xf4\x88\xd5\xbb\xaf\x55\x1f\x9a\x68\x95\x1e\x24\xed\xaa\x42\xdb\x3b\xd9\xf2\x89\xc5\x37\xb9\x2c\xaf\x79\x56\x9b\x10\x9e\xa4\xb1\x3d\xd7\x87\x7e\xf7\xcc\x64\xeb\xe8\x4a\x35\x32\xce\xaf\x84\x10\xb2\xc0\x4b\x7a\x1f\xc1\xcd\xdb\x8e\xcd\x00\x53\x87\x5d\xbb\x76\xe9\x03\x39\x5a\xcb\xec\x13\x23\x18\x6f\xf9\xbb\x3c\x99\xd8\x6f\x64\x1d\xf7\x58\xc1\x56\xd2\x98\x6d\x56\x47\x81\x6a\xde\x91\x32\x25\x0c\x34\x2a\xd1\xfc\xca\x50\x34\xcf\xe0\x0e\x21\x83\xac\xf2\xde\x7b\xef\x15\xca\x11\xf1\x20\xce\x21\x0f\xf9\xf2\x08\x8d\x5b\x4e\x1e\xa2\xdf\x94\x12\xe7\xc4\xbb\x6d\xb3\xe3\xf2\xda\x74\x4b\x2b\xb6\xde\x3a\xfd\xca\x57\xbe\x22\x86\x86\x86\xfa\x09\x46\x28\xeb\x23\x37\xe2\x3b\x37\x5c\xe9\x7d\x6a\x78\x55\x3e\xea\xf5\x78\x06\x09\xb1\x10\xa9\x69\x4d\x9f\x3d\xaf\x00\x48\x70\xa2\xe8\x0b\x88\x51\xa3\x98\x27\xfd\x9e\xdc\x57\x59\x93\x9f\x19\x9b\x8f\xe6\xbb\xc3\xe2\xf0\xca\x66\xff\x1f\x56\xb6\x96\x0e\x87\x55\xca\xec\x14\x94\xcb\x65\x79\xe8\xd0\x21\x9c\x3b\x77\x0e\x87\x0f\x1f\xc6\xca\xca\x4a\x51\xfb\x6f\x05\xae\x36\x4c\x5c\x18\xdf\x0c\x96\x79\x61\x10\x71\x11\x00\xa4\x7b\x7d\x69\x39\x16\xf5\xbb\xae\x0d\x7f\xba\x1c\xd1\x74\x06\x5f\x6d\xb6\x82\x90\xb5\x80\xce\x51\x56\x26\x3a\x3d\xe8\x04\xb1\x7d\xb9\xfc\x3b\x5b\xd7\x82\xbf\xbb\x3c\xda\x6d\xaa\x6d\x5a\xc9\xcc\xa1\x56\x60\x5b\x8e\xbf\x83\x92\x14\xf5\x99\xa5\xa1\x4f\x7a\x12\x75\xa3\x8c\xb5\xe4\x10\x6d\x6d\x0d\x5d\xbc\xae\x93\x52\x5b\xaa\x8c\xfc\xc2\x00\x11\x63\x43\xcb\xbf\x6f\xfb\x4a\x79\xdf\x4a\x35\x5a\x40\x3a\x86\x83\xb8\xe0\xcc\x02\xab\x39\x8e\x22\x04\x36\x05\x8c\x8c\x8c\xc0\xf3\xb4\x4a\x24\x41\xd0\x52\x4c\xd5\x89\x56\x69\x9a\x00\xdf\x86\x9b\x0b\x38\x58\x5b\x55\xda\x72\x54\xb3\x70\x29\xc5\x74\x28\xa7\x7a\xbc\x5e\xeb\x5d\xe8\x94\xe4\x8a\xd5\x39\x49\x44\x90\x52\xba\x7b\xe0\x79\x93\xcd\x16\xbb\x8a\xb8\x10\x37\xe4\x89\x03\x6e\x99\xc8\x79\x76\xdb\xe0\x96\x99\x47\x10\xec\x6f\xed\xe0\x72\x40\x99\xef\x7c\xdf\xc7\x43\x0f\x3d\x84\x3d\x7b\xf6\x08\xc0\xda\x2e\x04\x02\x8a\xb9\x36\x72\x23\xde\x3d\x79\x31\xfc\xfd\xe1\xe5\xf8\x09\x11\x63\x2a\xe1\x2a\x60\x2c\xf8\xd3\x3b\xb1\xc8\x50\xf9\x74\xc3\x2b\x49\x64\x75\x35\xa1\xe5\x91\xbe\xe2\xc5\x34\x33\xd4\x88\x67\x2a\x6b\xf2\xb1\xf1\xb9\xe8\x57\x37\xb6\x97\xbe\xb3\xbc\xcd\x7f\x23\x0a\xb0\x82\xf4\x0e\xd3\x68\xd7\xae\x5d\x72\xfb\xf6\xed\xf8\x8b\xbf\xf8\x0b\xbb\xed\x79\x93\xff\x66\xab\x5b\xde\x82\x70\xb3\xfc\x45\xa2\x49\x1e\xe7\x96\x29\x57\x89\x08\x9a\xf8\x56\x46\x3a\xfe\xd4\xb6\xd5\xf2\xc7\xf5\x4d\xf1\x36\xbe\xda\x26\x04\xfd\x4b\xbb\xab\xd6\xb3\x4e\x8b\x83\x50\x92\x98\xdc\x75\xa3\xf2\xb1\x2b\xa3\xdd\x0b\x48\xae\x4f\xd0\x36\x1e\xf6\xb8\xfb\x00\x2a\x1b\x9b\xa5\xe9\xb1\xb6\xbf\xcf\x10\x01\x87\xe3\x21\x7b\xb5\xb6\xb9\x77\xd3\x90\xec\x84\xd2\xe3\xec\x4b\x1a\xdb\xb2\x16\xdc\xfb\x9e\x5c\xff\x55\x2c\xa8\x89\x84\x58\x46\x87\x0e\x1d\x12\xdf\xf9\xce\x77\xb0\xbe\xbe\x3e\x90\xb8\xdb\x13\x4b\xbf\xe7\xae\x0e\xfa\xf8\x2f\x12\xd9\x4b\x00\xf0\xfd\x98\xaa\x23\x1d\x6f\x4b\xb6\xc1\xf6\x5b\xba\xfd\xaa\x59\x25\x9d\x4b\x5f\xbc\x0b\x3b\xaf\xfd\x9b\xe8\x37\x70\x63\xb8\x37\x1b\x0b\x36\x3e\x37\xa0\xac\xdf\x7a\xbd\x1e\xde\x7f\xff\x7d\x97\xcd\x2f\x12\x11\x8a\x10\x70\x10\x82\xe6\x95\x9d\x27\x7f\xe7\x95\x7b\xb3\xf6\xe4\x7d\x3f\x88\xa8\x99\xef\x3d\xcf\xc3\xc7\x3f\xfe\x71\xec\xd9\xb3\x47\x7f\xe7\x13\x51\x05\xcc\xd5\x52\x5b\x6e\xd9\xf6\x5e\xf7\xcb\xd3\x27\xda\xff\xef\xc8\x62\xfc\x75\x2f\xc6\x34\x25\x47\x02\xa0\xcf\x0e\x25\x2e\x1c\x35\x5a\xa5\xac\x21\x65\xf1\x2b\x5d\x21\x75\xba\x26\x36\x20\x08\xc6\x58\x79\x3d\x7e\x62\xeb\x99\xee\x7f\xdb\x79\xac\xf3\x1f\x6b\x4b\xf1\x5e\x48\xae\xc3\xf2\x9f\x59\x2a\x95\xc4\xd3\x4f\x3f\x2d\x94\xb3\x27\xbb\x1f\xae\x48\xe8\x12\xc8\x22\x91\xa5\x88\xab\x74\xc7\x25\x6f\xac\xf2\x70\xc4\x8e\x17\x4f\x3d\xf5\x94\xd0\x5b\xd4\x00\x7c\x02\x55\x36\xae\x97\x66\x2a\x3d\xb1\xdd\x2c\xda\x96\x4e\xc3\x18\x18\x19\x88\x59\xe8\x0d\x05\x3f\xe6\x74\xed\x04\xcc\xb6\x37\x31\x89\xe9\xe5\xca\x83\xbe\xa4\x1a\x2c\xd7\x81\x56\xfd\xc6\x6e\xa3\x16\x7a\x53\xa5\x98\xc6\x00\x80\x49\x13\x30\xa5\x33\xb7\xa6\x0c\x2b\x63\x49\xfb\xda\xd4\x3e\x75\xbe\xa5\xb5\x25\x90\x18\x6f\x95\xee\xac\xf4\x44\x1d\xc9\x98\x19\xd7\x85\x0e\xd1\xc8\x23\xd6\x03\xe5\xfb\xcc\x8a\x7d\xff\xfd\xf7\xeb\xfc\xba\x63\x7e\x25\x12\xf5\x6a\xcf\xdb\xa4\x1b\xca\x86\x2c\x6b\x02\x48\xb0\x60\x69\x29\x49\x75\x07\xec\x54\x47\x32\x23\x20\x12\xdc\x59\x1c\xee\x5d\xe4\x94\xdb\xc8\x70\x1c\xc8\x12\x3e\x97\x08\xba\xfd\x70\x91\x2f\x8f\x78\xb8\xc8\x6c\xff\xc1\xca\x93\x57\x4e\x5e\xfd\x2e\x51\x76\x91\xf9\x66\xe2\x49\x86\x98\x10\x91\xf8\xc4\x27\x3e\x81\xdd\xbb\x77\x6b\x3b\x8c\x00\x40\x05\xcc\xf5\xe1\x65\xb9\x7b\xe6\x58\xfb\x7f\x9b\xb8\xd4\xfb\x3f\xbc\x90\xef\x44\x8a\x84\x29\x7d\x66\x06\xbb\x30\xd7\x38\xc6\x4a\x3e\x54\x58\xd6\x77\xc9\x37\xd9\x93\x23\xd1\xd2\x0b\x89\xf1\xda\x52\xfc\xb5\xe9\xe3\x9d\xff\x3a\x39\xdb\x7b\x48\x44\x3c\x8e\xc4\x7a\x31\x20\x22\x51\x2a\x95\xc4\x63\x8f\x3d\x56\x04\x0f\x3b\xe4\x11\xf0\x3c\x4e\x65\x10\x2b\x9d\x57\xc7\xa0\xb1\x31\x65\x98\x33\x52\xc9\xaf\xb2\xce\x44\x65\xbc\x55\xba\xdd\xbe\xbe\x94\x2c\x42\x61\x6e\x14\xd4\x2c\x9c\x25\x9e\x73\xca\xd2\xa5\xf3\x58\x13\x6f\x95\x56\x0d\xbd\xed\x95\x9e\x18\x03\x50\xd1\xe7\x4d\x2c\x11\x28\xe9\x9c\xd5\x00\x00\x20\x00\x49\x44\x41\x54\xde\x88\x2a\xb5\xae\x37\x29\x98\x2a\xba\x7c\xad\xec\xcc\xc8\x25\xaa\x21\xc9\x94\xca\x2e\xdd\xb0\xea\x4f\xc4\xaa\xb4\x7d\xe5\x48\x8c\xfb\x92\x6a\xca\x22\xd5\xd7\xf1\xbf\xf9\x9b\xbf\x99\xc7\x19\x67\xe0\xec\x4e\x0a\x38\xcf\x7d\xc8\xab\x10\xd6\x27\xa2\x60\xac\x5d\x9a\x0c\x22\x31\x66\x58\xb1\x54\x8e\xcb\x4a\x1e\x0e\x12\x92\x01\xb6\x8b\x8c\xf6\x2f\xd0\x29\xc9\xa5\xd5\x4a\xb4\x08\x4a\xc5\x14\xfd\xf7\xfc\xf3\xcf\x0f\x62\xf1\xdd\x4e\xbb\x7d\x1d\xf4\x2e\xd1\x4f\x20\x5c\x96\xdb\x25\xb4\x79\xdf\xfc\x4b\x58\xed\x22\xa4\xce\x3c\x3f\xfe\xf8\xe3\xb8\xed\xb6\xdb\x60\x89\x26\x15\x30\xd7\x47\xe7\xa3\xfd\x3b\x8f\xb7\xff\xef\xe1\x15\xf9\xc7\x60\xae\xd8\x85\x30\x52\x51\x24\x73\x12\x59\xc9\xc7\x6a\x0d\x54\x39\xd9\xfc\x92\x89\x4b\x4a\x81\xf9\x55\x5f\x58\xe3\x1b\x74\xe5\x03\x5b\x4f\x77\xff\xeb\x96\x33\xdd\xcf\x8b\x88\xc7\x89\xa8\xca\xcc\x01\x12\xb1\x4a\x7c\xe3\x1b\xdf\x10\x53\x53\x53\xba\xea\x3c\x18\xe5\x71\x5c\x79\x1c\x9e\x0d\x97\x41\x62\x90\x9d\x5e\x34\x09\x4c\xdd\xfb\xf7\xef\x87\x7b\x78\x0c\x89\x47\xbb\x3a\x40\x22\xd5\x63\xc0\x5a\xc5\xc9\x9e\xc9\x29\x30\x60\x89\x09\x3a\xce\xca\xc7\xea\x3b\x4f\x52\xad\x14\x53\xd5\x32\x65\x77\xdb\xe8\x13\x91\x1f\x44\x62\x84\x18\xc2\x16\xff\x53\xfa\x65\x71\xfa\xe9\xb6\x09\xd8\x6e\xa7\xd5\x0e\xed\xf3\x57\xb7\x4f\x30\x02\xc1\x14\x20\x21\x1a\x9a\x58\xd9\x30\x2c\xe2\x00\x33\x13\x25\x6f\xe5\xee\xfb\xb5\x76\x54\xfc\x7a\xc7\xdb\xec\x49\xaa\x82\x35\xb5\x33\xcb\x97\x22\xc4\x9a\xf2\xea\x77\x0b\x98\xd6\x6f\xaa\xef\x50\x6f\xaa\xe3\xab\x95\x68\xbe\x95\x5c\xd2\xdb\x61\xeb\x62\xdd\x9c\x50\xb4\xd2\xe7\xb1\xac\xb9\xab\xb9\x03\x87\xbc\xfe\x0f\x42\xec\x9b\x11\x24\x9d\x3f\xaf\xad\x79\x04\x2a\x8f\xc0\xc8\x9d\x3b\x77\x02\xc9\x18\x24\x44\x43\x72\x7d\xfc\x72\xef\xa3\xdb\xdf\xed\xfe\x5f\xa5\x0e\x7f\x54\xcb\xdd\xb6\x11\x1e\x29\xf6\x2e\xe1\xac\x2d\xc5\xb4\x82\xb3\xad\x62\x32\xc3\x62\x2b\xe1\xd4\xf7\xac\xcb\x81\xe2\x4e\x32\x08\x46\x10\x31\xb6\x4c\xce\xf6\xfe\xd3\xb6\xf7\x3b\x7f\xe4\x85\x72\xd2\x26\x1e\x00\xc4\xdc\xdc\x9c\xb4\x74\x64\x79\x30\x70\x17\xb1\x42\x38\xe4\x7c\xeb\x7e\x73\xab\x9c\x4d\x6e\x60\x66\x9f\x18\xbe\x27\x29\x25\xc2\x46\x34\xe1\x94\x7e\xda\xa2\x8a\x12\x4d\x5c\x89\xdb\xfd\xd5\x1c\x08\x0b\x8e\x62\x91\x6c\xb9\x52\xea\xa8\xd8\x3e\x75\x0b\x00\xa2\x15\xc4\x1d\x26\x48\x7b\xf1\x35\x7c\xbc\xcb\xb0\x6b\xce\xc6\x26\x1a\x16\xc1\x31\xfe\x7f\x55\xde\x56\x49\xae\x74\x7d\xa9\x4f\xd2\xaa\x6e\x66\xf4\x07\x79\x38\x2e\xec\x17\x37\xf4\x0d\x98\x46\x38\x4d\x95\x49\x22\xa8\x77\xfc\x2d\x1e\x23\x48\x1b\x99\x62\x21\x59\xaf\x86\xc6\xd9\x84\xd8\x11\xaa\x9d\x06\x03\x04\xac\x0c\x45\x73\x91\xe0\x16\xac\x73\x29\x40\xe2\xc5\x5c\x08\xe1\x22\xd2\xcd\x10\x26\x8f\x9d\x75\x11\x68\xd0\xa4\x1e\xc4\x99\xe9\x74\x97\x63\xc9\x23\x1a\x45\xed\x2d\x7c\x3f\x70\xe0\x80\x38\x74\xe8\x90\x26\xda\x9a\xd3\xa8\x8d\x5d\x8b\x0e\x6c\x39\x13\xfe\x99\x1f\xf2\xdd\x09\xbc\x6d\x6c\x31\xfc\xb1\x79\x4e\x87\x49\x33\xbc\xae\xf0\xab\x75\x4f\x64\x0f\x9e\xfa\x26\xf9\x65\x45\x84\xfa\xd2\x01\x90\xe4\xb1\x0d\x73\xd1\xbf\xdd\x72\x36\xfc\x82\xe8\x25\x9c\x87\x6a\xaf\x38\x74\xe8\x90\x78\xec\xb1\xc7\xf4\x76\xa7\x1d\x5c\xee\x4d\xc7\xe5\xfd\xba\x71\xb7\xf2\x4d\xde\x18\x66\xda\x70\xfc\xf8\x71\x57\x24\x04\x13\x44\xd7\x97\x9d\x0c\xa1\xc8\xf4\xdb\x92\x4d\xc8\xca\xe0\x70\x18\x99\x5f\x0b\x64\x1d\x5f\x36\x3a\x7e\x6c\x8e\x73\xe7\x4d\x5e\x66\xc6\xca\x50\x74\xa3\xe7\x71\xcb\x19\xa6\x24\x3d\x55\x3c\x59\x69\x9a\x72\xa4\x74\xce\xe4\xcd\x7c\x0b\xac\x55\xa2\xc5\x9e\xc7\x11\xf7\xc9\xa5\x7d\xa1\x8f\xf3\x70\x07\xc1\x1d\x0c\x09\x40\x1e\x3c\x78\xd0\x78\x60\xd6\x1c\x47\x49\x52\xa5\x16\x7a\x9b\x00\x12\x06\x25\x6d\xbd\x0c\x5b\xa4\x4d\x07\x97\x0a\x43\x11\xe9\x9c\x76\x33\x12\xc2\xc1\x4a\x4c\xe1\xe4\x76\x2b\xa9\xcb\x76\x4e\xf3\x01\x83\x27\xa1\x9b\x3e\x28\xae\x48\x2e\x76\x75\x41\x45\x22\x4b\x11\xfb\x9c\xc7\xd1\x0d\xaa\x47\x3f\xcb\xfd\xfb\xf7\xeb\x7c\x89\x7d\x01\x50\x1b\x5e\x8e\xef\xdc\x72\xa6\xfb\xbf\x94\xba\xbc\xcf\x08\x1a\x16\x20\xb9\x0f\x7b\x13\xa2\x90\xcd\x93\x59\x36\xd3\xf8\xcc\xd9\x15\x1d\x97\x7d\xcf\x0d\x0c\x90\xc4\xf8\xf8\x95\xde\xbf\x9e\xbc\x18\x3e\xa6\x15\xa6\xca\x90\x49\xec\xdc\xb9\x53\x1f\xe1\xb6\x43\x91\xc8\x99\xf7\xdb\x97\x5f\xf9\xbe\x95\x00\xe4\xed\xb7\xdf\xae\xd3\x25\x00\x39\x3e\x3e\xae\xb3\x15\x89\x95\x19\x7c\xb7\x27\x2c\x03\x72\xa5\x1a\x2d\xc8\xc4\x40\xca\xa2\xc5\x16\x20\x0c\xf8\x94\x7c\x60\x60\xe3\xe0\xbc\xe6\x44\x2c\x4e\x60\xb5\x12\x2d\x44\xd6\xa4\x75\x26\xaf\x44\xb2\x58\x47\x4b\xd5\xde\x42\xb3\x1c\x2d\x18\xdd\x94\xae\x0f\x16\x07\x61\xb7\x0f\x94\x70\x84\x3a\x57\x9e\xf8\x04\x40\x12\x47\x37\x86\x7b\x97\x7b\xc2\x18\x54\x16\x85\x5c\x2e\xcf\xb6\x1c\x2d\x62\x0d\x71\xe4\xc8\x11\x79\xf0\xe0\x41\x7b\xa2\xf8\x9e\xa4\xca\x50\x28\xc6\x32\x62\x86\xc3\x51\x64\xb6\xac\xd8\x42\xba\x4c\x3e\x64\x81\xaa\x00\x21\x05\x47\xcb\xd5\x68\x9e\x13\xa2\xa1\x7d\x1b\x48\x00\xda\x3e\xc0\xed\x5c\x91\x78\x02\xe4\x4f\xe6\x41\x72\x71\xde\xb7\x83\xc2\xcd\x58\xe4\x22\x02\x34\x28\xaf\x00\x20\x9f\x78\xe2\x09\x11\x04\x81\xd1\x6b\x30\x73\xb5\xdc\xe1\x2d\x5b\xce\x86\x7f\x5a\x5e\xe7\x0f\x93\xca\x9f\xbd\x56\x42\xe9\x8f\x88\xad\x6d\xc1\x7e\x0b\xdd\x14\xd9\xd3\x01\x20\xd8\xbc\x49\x72\xfb\x5e\xba\xc8\x2a\xdb\x5f\x33\xb6\x80\xbe\xf7\x57\x07\x62\x86\x88\x30\x35\x39\xdb\xfb\xd7\x9d\xba\x77\xb9\xb1\xc9\x3f\x66\x39\x93\x89\x9e\x7a\xea\x29\xfc\xe0\x07\x3f\x40\xb3\xd9\x2c\xc4\xb7\x9c\x38\x77\xdc\x24\x00\xf9\x7b\xbf\xf7\x7b\x62\x6c\x6c\x2c\xc3\xc5\x58\x2e\x1f\xd0\x6e\xb7\xd1\x6a\xb5\xc4\xe2\xe2\x22\x5e\x7d\xf5\xd5\xc2\x32\x2d\x8f\xfd\x49\x1f\x88\x24\x98\xe5\xb5\x91\xee\x95\xf5\x20\x5e\xac\x77\xfd\xa9\xd4\xfd\x43\x4a\x49\x6d\x42\x93\xb1\x82\x66\xb2\x69\x84\x43\x53\x92\x63\x19\x8b\xb5\xde\xac\xa4\xf4\x4a\x0f\x4a\xef\x52\xd1\x8e\x78\x24\x80\x68\x3d\x90\x8d\xab\xf5\xf0\xdd\xf1\xf5\xd2\x6e\x10\x84\x61\x2e\x14\x2d\x32\xa6\x25\xfa\x19\x59\xe2\x9e\x31\xc4\xb4\xa4\xcf\x76\x49\x2e\xcd\xd5\xc3\x0f\x40\xfd\xf3\x2b\x67\x0c\x74\x30\xc4\x36\xef\x58\xbd\x0d\x5c\xf3\x6c\x1d\xbd\x16\x00\x84\x2f\xa9\x52\x89\xc4\x78\xd2\x9e\x14\x29\x6d\x62\xe1\x8a\x23\x09\x22\x5a\xc4\xc2\x32\xf8\xb2\x55\x1c\x00\xa3\xe7\xc9\xe6\x5a\x39\xba\x01\x42\x48\x48\xc5\x14\x22\x92\xa7\x4f\x9f\xb6\x3b\x54\x84\x80\x79\xf2\xf2\xad\x70\x1d\xee\x4a\x54\xc4\x41\xe4\xe5\xcd\x13\x37\xdc\xba\xf2\xca\x2e\xa4\xf8\xd6\xdd\x35\x3e\x33\x57\x04\xa3\x3e\x79\x31\x7c\x62\x78\x39\x7e\x02\xcc\xbe\x3d\x91\x13\x25\x9e\x86\xa5\x56\x62\x2a\x7e\x84\x09\x44\xa9\xb2\x33\xa3\xfc\x54\x93\xdf\x56\x6d\xe8\xf1\xc9\x9a\xd9\x58\x6e\x97\x4c\x82\x35\xa6\x56\x9e\x52\x97\xef\xdc\xfc\x41\xf7\x4f\xdb\x23\xe2\xff\x0c\x2b\x14\xea\xc9\x50\x2e\x97\xe5\x03\x0f\x3c\x80\x57\x5e\x79\x25\x4f\x7c\xcb\x83\x9d\x00\x20\x3d\xcf\x13\x1f\xfe\xf0\x87\xc5\xc6\x8d\x1b\xa1\xae\x1d\x05\x94\x5e\x40\xad\xd6\x66\x57\x02\x4a\xb4\x1e\x1a\x1a\x42\xa5\x52\x91\x13\x13\x13\x72\xe7\xce\x9d\xe2\xe2\xc5\x8b\x78\xf5\xd5\x57\xfb\x60\x7d\xf6\xec\x59\x1c\x38\x70\x40\x9b\x1c\x48\x00\x11\x03\x61\xa3\x1c\x2f\xce\x8d\x76\xdf\x1d\x59\xf0\xa6\x52\x9c\xce\xae\x92\xae\x57\x3b\x77\x01\x35\xba\x05\xa4\x5c\x78\x2c\x64\xe7\xf2\x68\xf7\x94\xb5\x28\x4a\xc7\x30\x52\x7b\xee\x0a\x41\xe8\xbc\xb7\x79\xfd\xcd\x99\xa5\xca\x83\xb5\xae\xbf\x09\x29\x98\x91\x39\xa7\xa2\xc7\xc5\xaa\x57\x4b\x9d\xc9\xf8\x64\x29\xc8\x95\xd1\xee\xc9\xc5\xe1\x70\x0e\x96\xb3\x6f\x5d\xff\x2f\x7f\xf9\xcb\x3c\x31\xdb\x1e\x2b\xe1\x4e\xba\xdc\x41\x53\x47\x8c\xf5\xbb\x60\x66\xbf\x1c\x89\x6a\x39\x12\xf5\xbe\x15\x47\xb7\xd4\x88\x25\x59\x0d\x4e\x6a\x7c\x47\xa6\x7f\x99\x0e\x23\x41\xeb\xd0\xe3\x66\xbb\x24\x9b\xc8\x9e\x8d\x00\x00\x7c\xf0\xc1\x07\x36\xbb\x59\xc4\xd6\x16\xb1\xb7\xee\x37\x45\xfa\x0f\xf7\xdb\x42\x16\xd7\xfa\x6e\x10\xd1\xb8\x59\x7c\x46\x3c\xa9\xd5\x6a\xf8\xa3\x3f\xfa\x23\xc3\xe1\x11\x51\x40\x44\xd5\xe1\xa5\x78\xef\xd8\xd5\xe8\xf7\x49\xa2\x4e\x4a\xa3\x69\x94\xa2\x0a\x53\xa8\x4f\x47\x91\x5e\xbf\x49\x16\xf2\xe8\x6f\x8c\xe2\x14\x48\x95\xa4\x86\x51\x64\x6b\x08\xd3\x67\xb3\x23\xa3\x38\x1b\x5d\x4f\x92\x0b\x20\x66\x31\xd4\x90\x8f\x4e\x5c\xea\x3d\x46\x40\x5d\x29\x74\x7d\x66\x16\x7b\xf6\xec\xb1\xaf\xd7\xc8\x83\x4d\x06\x71\xb7\x6c\xd9\x22\x3e\xfd\xe9\x4f\x63\xdf\xbe\x7d\xd8\xb2\x65\x8b\xfe\x2e\x50\xb6\x0e\x89\xce\xc7\xfa\x53\x8a\x59\xfb\x4e\x56\xbf\x52\xa9\x88\xbd\x7b\xf7\xe2\xa9\xa7\x9e\x12\x8f\x3e\xfa\x68\x86\x58\xad\xaf\xaf\x2b\xc9\x17\x52\xad\xba\xc9\x8d\xf2\x1e\x37\x4f\x6f\x6c\x1f\xee\x7a\xdc\x4c\x45\x05\x4b\x2c\x07\xcc\xe2\x67\x16\x3e\xbd\xfa\xb3\x22\xcb\x6a\x7c\x34\x71\x06\x31\x16\x87\x7b\x67\xe7\x46\xbb\x17\x40\x66\xd2\x46\xaa\x6e\x4d\x3c\xa4\xe2\x00\x3a\x00\x5a\xf3\x23\xe1\x85\x0f\x26\xda\x87\x25\x71\x64\xea\x66\x9b\x33\x54\xef\x7a\xbb\x5d\xd7\xad\x56\x02\x82\xe2\x94\xd4\x77\xcd\x40\x2e\xbe\xb3\xa5\xf9\xab\xae\xcf\x2b\xaa\x8e\x50\xf7\x9d\x88\x6c\x0e\xce\x15\xc9\xa1\x7f\x3d\x2b\xc2\x15\x76\x93\x0c\x9e\x47\x87\x0f\x1f\xd6\xa2\x8a\xa7\x06\xa6\xb6\xb1\x19\xec\xbe\x63\xa1\xfa\x84\xcf\xa2\x6a\xb3\x6d\x0a\x6c\x6a\xd5\x4a\xa8\x5c\x46\x64\xc9\x20\xaf\x25\x43\xc3\x46\x3b\xa0\x31\x14\xcf\xbe\x3d\xd5\xfc\x59\x2c\x70\x1d\xc9\x6d\x6d\x1d\x22\x8a\xe3\x38\x96\x4b\x4b\x4b\xb4\xba\xba\xca\xaa\x8d\xf6\xaf\x25\xec\x98\x3e\xd8\xe9\x59\x2a\x96\x4d\xb3\xcb\x70\xd3\xdd\xf7\xbc\xd5\xd2\xfd\xd6\x6d\x0b\x0a\xde\xed\x35\xca\x10\x95\xfd\xfb\xf7\x93\xda\x45\xf1\x90\x9c\x54\xad\x8a\x88\xc7\xb7\x9e\x0e\x9f\xaa\xae\xca\xdf\x22\x40\xd8\x5c\x9a\xb1\x11\x20\xeb\xd7\xd4\xe0\x5c\xa5\x69\x20\x9d\x3a\x8c\x4e\xe7\xbe\x5e\x1d\x93\x55\x2a\x21\x2c\x9a\x87\xd1\xcf\x69\xc5\x44\x69\x79\x69\xe7\x59\xf5\x9e\x82\x72\x5b\x6e\x6c\x8e\xfb\xbf\x8a\x2a\xa2\x01\x75\xf7\x0d\x11\xc5\xb5\x5a\x0d\x67\xcf\x9e\x85\x9a\xa8\xc2\x81\x03\x01\x90\xbe\xef\x0b\x29\x25\x7f\xfe\xf3\x9f\xa7\xf1\xf1\x71\x01\x80\xd4\x2e\x44\x00\x20\xf0\xa5\x18\xae\x85\xde\xf8\xf4\x4a\x65\xe7\xce\xe5\xca\xde\xed\x2b\xe5\x3d\x5b\x9a\xc1\xb6\x89\xf5\xd2\x78\x49\xd2\x50\xe8\x31\xa4\x48\xba\xa0\xdc\x03\xc0\xf7\x7d\x4c\x4c\x4c\xf0\xe6\xcd\x9b\xe9\xea\xd5\xab\x08\xc3\x50\x02\xc0\xf1\xe3\xc7\x59\xe9\xf2\x88\x99\x3d\x22\x0a\x18\x1c\xac\x57\xe2\xb8\xde\xf5\x26\x36\x35\x83\xdb\xcc\xc2\x87\x7e\x11\xdc\xf8\xe2\x30\x3d\xb0\x4d\xc1\x35\x35\x66\xf4\x3c\x6e\xfd\x72\xa6\xf1\x83\x6b\x23\xbd\xf7\x41\xb8\x41\x44\x0d\x24\x67\xb0\x7a\x48\x16\x47\xd6\x8b\xb4\xd2\x27\x96\x24\x38\x58\xae\x46\x6b\x1b\xd7\x83\x6d\x23\x1d\x6f\x73\x52\xa4\x36\xaa\x4c\x21\x97\x2e\x1e\x50\x0b\x48\xd6\xeb\x0d\x08\xe8\x79\xb2\xf3\xd6\xf6\xe6\x8f\x4e\x6d\x6e\xfd\x82\x05\xae\x01\x58\xa6\xe4\x9a\x91\x2e\x11\xc9\x67\x9e\x79\x26\xd6\xf0\x47\xff\x42\xa8\xe3\xc9\x35\x39\xef\x53\x92\xc6\x71\x8c\x43\x87\x0e\xe9\x13\xb1\x66\x05\x1c\xea\x89\xba\x27\x29\xc8\x4c\x17\xd3\x89\x54\x16\xce\xe8\x36\xb4\x58\x62\xef\x27\x6b\xc4\xcd\x14\xc0\x68\x97\xe2\x95\x9e\xc7\x19\xdb\x0d\x00\x72\x75\x75\x15\x17\x2f\x5e\xd4\x6d\x75\xdb\x9c\xd7\x87\x22\xd1\x25\xb7\xbf\xb7\x18\x8a\x88\x47\x9e\x98\x93\xc7\x86\xbb\x21\x93\x9f\x88\xcc\x29\x4d\x7d\x2e\x88\x99\xab\xc3\xcb\xf1\xee\xda\x52\xf4\xdb\x04\xf8\xf6\x0a\xa7\xb9\x3c\xed\xfc\x59\x07\xed\x31\x5e\x8f\x41\xb2\x00\x71\x66\x5c\xf4\xa9\x4e\x4e\xff\x59\x5c\x04\x65\x44\xca\xe4\x47\xed\xc5\x30\x43\x1f\xd7\xee\x1b\x7f\x2b\xae\xd4\xe5\x3b\xc7\xaf\xf4\x3e\x79\xa5\x2e\xe6\x90\x9c\x6e\x8e\x88\x28\xda\xbc\x79\xb3\xdc\xbc\x79\x33\xe6\xe6\xe6\x72\x61\x00\x00\x0f\x3d\xf4\x10\xf6\xee\xdd\xab\x2d\x2a\x93\xd3\xa2\x8c\x8a\x48\x7c\xdc\x6e\xbf\x63\xa1\xfa\xd0\xd4\x6a\xf9\xe1\x5a\xe8\xed\xf3\x24\x8d\x11\x10\x30\x10\x31\x71\xa7\x27\x78\x7e\x65\x28\x3a\x7c\x7e\xa2\xf3\xf2\x7b\x9b\xd7\x8f\xae\x95\xe3\x15\xb5\xf8\x44\xcc\x1c\x6e\xdf\xbe\x5d\x7e\xf9\xcb\x5f\xc6\xb3\xcf\x3e\x0b\x00\xe2\xae\xbb\xee\x32\xba\x05\x4a\x1c\xdc\xb4\x88\xa8\xd9\x13\xbc\x74\x78\xc7\xda\x4f\x37\xae\x07\x33\x9b\xd6\x4a\xbb\x6d\x78\xf7\x6b\x8a\x15\x81\x75\xce\x61\x91\x1a\x1b\x49\x88\x4e\x6d\x6c\xbd\x7e\x76\xb2\xfd\x16\x83\x1b\x84\xc4\xdc\x1c\x0e\xee\xa9\xef\x23\x65\x8a\xde\x24\xa2\x95\x46\x25\xbe\xfc\xfa\xcc\xea\x8b\x8f\x7c\x30\x56\xdd\xbc\x16\xec\xce\x6c\xb9\x66\x60\x9f\xfc\xea\x03\x70\x66\x18\x19\x88\x85\x0c\xdf\xdd\xb2\xfe\xda\xf1\xa9\xb5\x7f\x8e\x05\x16\x99\xb9\x41\x89\xc9\xbb\x16\x97\x8c\x8e\x05\xfd\xf3\x25\x43\x44\xf2\x94\x4e\xb9\xc1\x96\x29\x01\xf8\x41\x44\xc3\x42\x9d\x51\x21\xa4\xc4\x40\xe5\x86\x4d\x0a\x4c\x82\xa1\xc6\x2a\x3d\x23\xb2\x58\x88\x0a\x60\x3d\x90\x4b\x8c\xd4\xc1\x6a\x8e\xe6\xd7\x15\x31\xf2\xde\xff\x25\xf9\xdd\x50\x44\x50\xf2\x08\x81\x0b\xd8\x22\x45\x6d\x9e\x68\x64\x7f\x23\x91\xc0\x58\xee\xd8\xb1\x43\x23\x90\x0f\xa0\x42\x8c\xda\xf8\x95\xde\xa7\xbc\x1e\xa6\x00\x8b\x2d\xb6\x44\xbe\x64\xe1\xa1\x14\x69\xa1\x56\x21\x35\x99\x09\x29\x31\xcf\x70\x24\x8a\x58\xa4\xdc\x83\xad\x03\xc9\x32\x49\x36\x67\xc2\x7d\x98\xcb\x99\x23\x13\x6a\x97\x32\x18\xbd\x16\x7d\x26\x68\xf1\x26\x30\x2a\x50\x0e\xb2\x89\x08\x3b\x76\xec\x70\xe1\xa8\x61\x04\x00\x19\xb3\x7a\x66\xae\x80\x51\xab\x75\xbd\xc9\x4f\x9c\xdd\xf0\xe5\xcf\xbc\x3b\xf1\xcd\xdf\x98\x1f\xfe\x2f\xe3\xad\xd2\xe7\x83\x58\xec\xf6\x98\x26\x89\xa9\x2e\x18\xe3\x5e\x2c\xa6\x86\x22\xef\xc0\xd6\x46\xf9\xd0\x47\x2e\xd6\xff\xfb\xbf\x7a\x7b\xe3\x7f\xf9\x8d\xf9\xe1\x8f\xfa\x32\xb1\xd4\x54\x4a\x66\x9f\x88\xa0\x0e\x96\xc9\xf7\xde\x7b\x4f\x86\x61\xa8\xeb\xd7\xb7\xc9\x37\x41\x58\x59\x19\x8a\x66\x5f\xda\xbd\xfc\x57\x4b\xd5\xe8\xb2\xe1\xf8\x35\x31\xb5\x7a\x6f\x13\x58\x9b\xe0\x32\x01\x92\x58\x7e\x30\xd1\x3e\xfa\xab\x99\xd5\x1f\x46\x1e\x2f\x29\x4e\xc3\xdc\x79\x4c\x44\xf2\x9b\xdf\xfc\xa6\x7c\xe6\x99\x67\x6c\x45\x69\xa8\xf2\xac\x80\xb0\x38\x5f\x0f\xdf\xfb\xf9\xde\xe5\xbf\x9e\xdd\xd0\x39\x19\x0b\x8e\xb4\x28\xe4\x12\x0d\x7b\x2a\xb1\xe2\x90\xba\x25\xd9\x3a\xb2\x7d\xed\x67\xbf\xd8\xb5\xfa\x0f\x1d\x5f\xce\x01\x58\xa1\xf4\x42\xb3\x10\x80\x54\x97\x43\xdd\x4c\x0f\x27\x80\xc4\x03\x98\xd1\x46\x38\x58\x60\x82\x72\xde\xa3\x3d\x47\x0d\x01\xa8\x6f\x5f\xa9\xdc\x3b\xbd\x52\xf9\x4d\xc1\xe4\x69\xcd\x58\x66\xc1\x23\x38\x22\x8a\x2d\x8b\xa7\x79\x52\x8e\x23\x4b\x5c\x2e\x8e\x77\x7e\x7d\x69\x43\xf7\x38\x08\xcb\x44\xb4\xae\x29\xf3\x5f\xfe\xe5\x5f\xc6\x56\x2d\xb6\x98\xa5\xd9\xdd\x41\x4a\x5e\x76\xf2\xdb\xc2\xb9\x6e\x3d\x5b\xe9\x36\xf1\xb0\xf3\xe8\x7a\xec\x67\x72\x9e\xed\xb2\xd9\xf9\xde\x1e\x0c\x77\xc8\xf9\xc9\x27\x9f\x14\x23\x23\x23\xa0\xc4\xe9\x4e\x00\x46\xad\xdc\xe6\x1d\x9b\x3f\x08\xff\x8d\xd7\xc3\xa4\x51\xd0\x59\x30\xa6\x0c\x50\xd5\x93\xd6\xf4\x1b\x71\x25\xe9\x7a\xca\x66\x5b\x86\x60\xa6\xa5\xe4\xac\xa8\x9a\x3d\x47\x56\xc1\xa6\x44\x19\x6b\x79\x33\xec\xb1\xbd\x50\x10\x00\x11\x63\x43\xb7\x26\x8e\xb5\x47\xc5\x15\x22\xea\x42\xc9\xf4\xb5\x5a\x8d\xdf\x7e\xfb\x6d\x17\xb6\x98\x9c\x9c\x14\x5f\xfa\xd2\x97\xc8\xf7\xfd\x54\xbf\x03\xaa\x6d\x6a\x96\xa6\x7f\xfb\xd4\xf8\x7f\xd8\x75\x63\xe8\x7f\x0e\xa4\x98\x22\xa6\x94\xe8\x68\x0e\x5d\xb5\x47\x8b\x0e\x82\x51\x1e\x8a\xbc\x3b\x77\xac\x94\x1f\xae\xf6\x44\xf3\x6a\xbd\x7b\x29\x12\x1c\x01\x60\x4a\x1a\x2b\x0f\x1e\x3c\x48\x47\x8e\x1c\x61\x25\xae\x18\x20\x5a\xca\x4a\x5a\x2f\xc7\xbd\x2b\xa3\xdd\x2b\xf5\xae\x3f\x5a\xef\xf8\x13\x82\x13\x8b\x52\x50\x2a\xba\xa4\xa2\x63\xca\x71\x31\x01\x5d\x5f\xb6\x4e\x6e\x5d\xff\xa7\x5f\xdc\xb6\xfa\x62\xab\x2c\x2f\x00\xb8\xc6\xcc\x4b\x8a\x9b\xe8\x02\x88\xd6\xd6\xd6\x78\x76\x76\x96\x98\x99\xb6\x6f\xdf\x8e\x6a\xb5\x6a\xc6\x50\xe3\x05\x83\xb9\x1d\xc8\xf6\xc5\xf1\xce\xa5\x56\x10\xaf\x8f\x76\xfc\xb1\x72\x24\xaa\x94\xca\xa0\x0e\x0a\x30\x7a\x1e\x77\xae\x8c\x85\xa7\xff\xf9\xf6\x95\x17\xdf\xd9\xba\xfe\x8b\xd8\xc3\x1c\x11\x5d\x03\xa0\x2f\x35\x6b\x21\x71\x8a\x25\xbf\xf5\xad\x6f\xd9\x38\xad\x4b\x71\x71\x34\x23\xaa\xe4\x6e\xb9\x00\xc0\x47\x3e\xf2\x11\x93\x66\xc4\x15\x86\x28\xc7\xa2\x4a\x0c\x5f\x2f\x7d\x19\x02\xa1\x07\xd1\x5d\x0d\xad\x5d\x14\x13\xdf\xc7\xee\x01\x0c\xc8\x76\x49\x36\x60\x71\x1b\x4e\x3e\x57\x3c\xb0\xdb\x7d\x33\xf1\x23\x8f\x82\x62\x40\xde\x41\xca\xe3\xbc\x7c\xee\x2e\x4c\xd1\xf7\x6e\x5b\x01\x40\xd4\x6a\x35\x0c\x0f\x0f\x03\x29\x77\x17\x10\x50\x1d\x59\x8c\xf6\xfb\x5d\x9e\xd6\x4a\x4e\x13\xcc\x24\xcf\x72\xcf\xb6\x3e\x83\xd5\xd2\x4f\x8a\x10\xa4\x96\xa3\xd9\x31\x53\x1f\xa4\xc8\xef\x88\x3d\x36\xfe\x68\xe9\x39\x6f\x47\xcd\x48\xd6\xa9\x1f\xd9\x60\xf4\x5a\xf4\xc8\xd2\xb6\xd2\x1b\x52\x70\x43\x71\x51\x51\xad\x56\xd3\xbb\x1d\x19\x18\x7c\xe6\x33\x9f\x41\x10\x04\x56\xff\xa9\xb6\xa9\x59\x9a\xf9\xed\x53\xe3\x7f\x36\xb1\x5e\x7a\x02\x20\x91\x48\x60\xf6\x96\x28\x0c\x0d\xd3\x4a\x63\x7b\xf9\x2b\xc5\xb4\x7d\xdf\xd5\xda\x9f\x95\xa4\x18\x79\xf5\xf6\xe5\xef\x84\x3e\x2f\x29\xd8\x4b\x66\x96\x4f\x3e\xf9\xa4\x38\x72\xe4\x08\x3a\x9d\x0e\x2a\x95\x8a\xe1\x3a\x14\x67\xe0\x33\xb3\x7f\x63\xb8\x27\x7f\x7c\xc7\xd2\xfa\x1d\xd7\xab\x07\xef\x9e\x1f\x7e\x60\x62\xbd\x34\xe5\x31\xf9\x19\xfd\x86\x66\xf6\x88\xd1\xf1\x65\xeb\xca\x68\xf7\xec\xc9\xad\xeb\x6f\x5c\x1a\xeb\xbe\x13\x0b\x9e\x63\xe6\x05\x22\x5a\x22\xe7\xfa\xd2\xb3\x67\xcf\x9a\x4b\x92\x4e\x9e\x3c\x89\x47\x1e\x79\x44\x52\xb2\x55\xdb\xd1\xe6\xe0\xaa\xaf\xb2\x5d\x92\xe1\xb1\x6d\xcd\xc6\x07\x93\xed\x77\xa7\x56\xcb\xb7\xed\x5c\xaa\xec\x1d\x6b\xfb\x93\x95\x9e\xa8\x7a\x4c\xa2\xe7\x71\xb4\x56\x8e\x56\x16\x46\x7a\x97\x2f\x8d\x75\xce\x5d\x1b\x09\xcf\x87\x1e\x2f\x00\xbc\x08\xd0\x02\x80\x25\xa8\x9b\x10\x91\xe8\x9d\xec\xeb\x26\x8b\xe6\x87\x8e\x13\x40\xea\xc8\xa7\x88\x1d\xc7\xaf\x7f\xfd\x6b\xa9\xf7\xb9\xb5\x8e\x43\x30\xfc\x20\xa2\x1a\x99\x42\x2d\xb9\x8e\x12\xb4\x4a\xe2\x32\xb8\x99\x06\x05\xd8\xcc\x04\x30\x6b\x2e\x03\x02\x68\x97\xe2\x26\x1c\x8b\xd1\x9c\x76\xea\x8e\xb9\x22\xc1\x20\xe2\x51\xa4\xe3\x18\x54\x66\xde\x7b\x5e\x3b\x06\xd5\xe1\xc6\xe7\xbd\x63\x6c\x6c\x0c\xa3\xa3\xa3\x40\xaa\x1c\x0b\x20\xb9\x5a\xbb\x11\x1f\x24\x46\x45\xdb\x4f\xa4\x93\xd7\x5e\x66\xf4\x4e\x47\x2a\xa6\xc0\xa4\xba\x94\xc5\x7e\xa5\x54\xf7\xa1\x42\x76\xb7\x8c\x53\x1a\xe0\xfa\x95\xcd\x84\x94\x58\xa5\xe5\x24\x44\xad\xb2\x26\xf7\x07\x6d\x39\xde\xad\x79\x8b\x48\x75\x37\xe2\xe2\xc5\x8b\x11\x9c\xf1\x52\xce\xb0\x8d\xdd\xca\x70\xe8\x6d\x7a\xf0\xfc\xe8\x37\x26\xd6\x4b\xbf\x4d\x4c\x42\xb3\xe0\x76\x3d\x7d\x0c\x97\xad\xa2\x51\x09\x1e\x63\x6c\xcf\xf5\xa1\x43\x6b\xe5\xe8\xc6\x1b\xd3\x8d\x17\x63\x62\xbd\x20\x85\x53\x53\x53\xf2\xc5\x17\x5f\x94\x17\x2f\x5e\x14\x77\xdc\x71\x87\xde\xd5\x08\x01\xb4\xd4\x38\x00\x84\xa8\x13\xc8\xe8\xc4\x54\xb3\xf1\xc1\x44\xfb\xfd\xad\x8d\x60\x66\x6b\xa3\x3c\x33\xb9\x5e\xda\x54\x89\x44\xc5\x93\xe4\x47\x82\xa3\xd5\x4a\xb4\x72\xad\x1e\x5e\xbe\x52\xef\x9e\x5b\x1a\xee\x5d\x09\x3d\x5e\x00\x61\x09\xc0\x02\x18\x4b\x5a\xb7\x00\xb5\x30\xae\xaf\xaf\xdb\xb7\x10\xe2\xf4\xe9\xd3\xd8\xb4\x69\x13\xee\xba\xeb\x2e\x8d\xf3\x66\x56\x2b\xfd\x43\x08\xa2\x56\xa3\x1c\xaf\x34\x36\xb5\xae\x9c\x99\x6c\xbf\x55\x8a\x69\xc4\x97\x14\x10\x20\x24\x21\xea\x79\x72\x3d\x12\xdc\x92\x94\x88\x5b\x00\x56\x00\xd2\x75\x9b\x9b\x10\x39\x39\x69\x2e\x9f\x7b\xee\xb9\x3c\x7d\x60\xe1\xbb\x7b\x93\x5b\xdf\x4a\xaa\x6f\xaf\xb2\x95\xa3\x82\xc9\x2f\x47\xa2\xe6\xb2\xc5\x7d\x08\x44\xf6\x9b\x96\x03\x91\x9e\x9f\xb0\x06\x38\xc5\x7f\x82\x04\x47\xa1\xcf\xeb\x28\x26\x16\xae\xae\xa2\x48\x09\x79\x33\xce\xc3\xe5\x5a\xf2\x42\x1e\x51\x71\xdb\x91\xc7\x5d\xb8\x75\xe7\xb5\xa5\xaf\xac\x0d\x1b\x36\xd8\x71\x89\x53\x9e\x08\xb5\xa1\xb5\x78\x1f\x90\x9d\xcc\x19\xad\xbd\x9d\x96\xcb\x2d\x58\xf1\x94\x1d\x9f\x6c\xb9\x76\x91\x96\x03\x1a\x23\x8d\xa4\x53\x91\x9d\x05\x20\x95\x80\xd2\x2b\x3c\xf5\x5a\xe0\xf7\x78\x7b\xa5\xc9\xdb\xbb\xc3\x3c\xcb\xc9\x36\x69\x08\x24\x97\x1d\x7d\xff\xfb\xdf\x07\x00\xb1\x61\xc3\x06\x7c\xf1\x8b\x5f\xd4\x9c\x98\x60\xe6\x8a\x00\xd5\xee\x9e\xaf\x3e\xba\x7d\xa5\xf2\x79\x52\x1c\xb2\x45\x96\x4c\xdb\x32\xcb\x50\x66\xc5\xa2\x54\x17\x41\x40\x29\xa6\x2d\x77\xcf\x0f\x3f\x3d\xbb\xa1\xf3\xee\x95\x7a\xf7\x34\xac\xed\xd0\xcf\x7d\xee\x73\xe2\xe7\x3f\xff\x39\x88\x08\x7b\xf6\xec\x91\x94\xb8\x72\x30\xb6\x15\x6a\x8c\x42\x26\x34\x9b\xe5\x68\xe9\xcc\xc6\xf8\xd2\x07\x93\xed\xb7\x82\x58\x54\x05\xa3\x4c\x0c\x9f\x09\x51\x4f\xf0\x7a\xe4\x71\x8b\x81\x26\x83\x1b\x44\xa4\x26\x2e\x1a\x44\xd4\x60\xe6\x26\x5b\x77\x1e\xbf\xf0\xc2\x0b\x7d\x8a\xe1\xd7\x5e\x7b\x0d\x5b\xb7\x6e\x15\x1b\x36\x6c\x88\xd4\x51\x8f\x8e\xe2\xbc\x35\x17\xd2\x54\xe5\xd5\x22\x21\x2b\xb1\x47\x15\xa8\x13\xae\x4a\xd1\xa9\x39\xa6\x26\x27\x37\x02\xe8\xdf\x16\xd4\x85\x66\x00\xa4\xe5\xe1\x3c\x2f\xe4\xe1\x6a\x86\xe3\xc8\xcb\x94\x29\xcc\x46\x2c\xc1\x89\xc9\x79\x86\x69\xb0\xa5\x74\x00\x19\xd3\xb6\x74\x08\xb3\x83\x6a\x3d\xdb\xd1\x52\x70\x18\x7a\xb2\xc3\x60\x7d\xb8\x47\xba\x6d\xc8\x09\x83\x76\x2d\xdc\x7c\xff\x7f\x39\x14\xa0\x9f\x58\x0c\xe2\x46\xf2\x76\x57\x06\xb5\x55\xec\xd9\xb3\x47\x5b\x89\x0a\x28\x5f\xa1\x41\x5b\x4e\xfa\x5d\x9e\xb6\x44\x57\x0b\xae\xb6\x3a\xca\x81\x8f\x65\x6d\x97\x92\x19\x77\x07\x2b\xcd\x97\xe5\x01\xad\xf1\xcb\xec\x12\xa4\xf9\xfb\xbe\x60\xcb\xd0\xdd\x6c\x0d\xab\x26\x48\xae\x0e\xad\xc5\xb7\xaf\x6e\xf2\x8e\x92\x20\x6d\xb1\x2c\x46\x46\x46\xe4\x8e\x1d\x3b\x70\xe9\xd2\x25\xec\xde\xbd\xdb\x28\xe1\x91\x1c\xcd\xaf\x8c\xb5\xfc\xa9\x3b\x16\xaa\xbf\xe7\x31\xc6\x32\x5d\xb4\xf4\x36\x96\x4a\xa1\x2f\xd8\x92\x1d\xab\xde\xd7\xba\xde\xdd\xfb\xae\xd6\x3e\x37\x3f\x12\xfe\x77\x99\xda\x52\xc8\xad\x5b\xb7\xca\x56\xab\x25\x5f\x79\xe5\x15\x00\x10\x7b\xf7\xee\x95\x48\x94\x97\x40\xba\x88\x29\xa5\x29\xd5\x98\xb9\x26\x05\x55\xdb\x14\x07\x4a\xfc\xd2\xf9\x22\x35\xd1\x5b\x04\x6a\x22\xb9\x44\x4c\x4f\xda\x8e\x2a\x33\x02\x20\xdf\x79\xe7\x1d\xb7\xc9\x06\x9f\xbe\xff\xfd\xef\xcb\x2f\x7e\xf1\x8b\x62\x7c\x7c\x5c\xdb\x79\x68\xc5\x69\x48\xc9\x0e\x55\x13\x89\xb2\x57\x13\x0d\x5f\xb7\x55\x95\xaf\x89\x47\x4b\xb5\xc7\x78\x6b\x43\x3e\xd1\x18\x24\x82\x67\x38\x12\xf7\xd2\x69\xfd\xdb\xc7\x5a\xbb\x96\xa3\xc4\xe4\xdb\xac\x60\x06\x85\xf4\x68\x51\x56\x41\x6a\xd8\x5f\xbd\x50\x58\x8a\x52\xb2\x0a\x91\x84\x28\x12\x09\x85\x75\x3b\x33\x3d\x3d\x2d\x66\x67\x67\x07\x4d\xee\x9b\x51\xcf\xa2\xf4\x5b\x15\x6b\x6e\xe5\xdb\x5b\x25\x3e\xf6\xf7\x66\x0c\x2c\x38\xfb\x00\x82\xa0\x25\x37\x09\x89\x5a\x92\x95\x33\xb3\x41\x8b\x0e\x89\x55\xa2\xe3\x96\x31\x33\x61\xd4\x33\x3b\x8a\x3c\x40\x4d\xc0\xfe\x4b\xb1\x6c\xc5\x9f\xce\x97\x1d\x70\x57\x1c\xd5\x63\x9e\x72\x2c\xa0\x54\xa4\x0a\x5a\x72\x9a\x18\x15\xa9\x8e\x92\x13\x11\x3c\xcf\x43\xa5\x52\x01\x00\xb9\x7b\xf7\x6e\x61\x11\xcd\x80\x99\xab\x33\x4b\x95\x03\x63\x1d\x7f\xbf\x4d\xa6\x4c\x9b\xb8\x80\x60\xd8\xc8\x64\xa9\xa8\x8d\x09\x0a\x51\xb0\x6d\xb5\xfc\x5b\x1b\xda\xa5\xbf\xbb\x31\xdc\x33\xba\x06\x66\x96\x9f\xfa\xd4\xa7\xc4\x8f\x7f\xfc\x63\xf9\xda\x6b\xaf\x01\x80\xcd\x79\x68\x82\x10\xaa\x89\xd8\x44\xea\xb8\x28\x00\x8c\x13\x6f\xa8\xd5\x3e\xd4\x93\xd5\x9a\xb4\xfa\x7b\xc9\xcc\xf2\xdd\x77\xdf\xc5\xeb\xaf\xbf\x3e\x90\x33\xfd\xe1\x0f\x7f\x88\xf5\xf5\x75\xf9\xb5\xaf\x7d\x0d\x9e\xe7\x69\x02\x12\xa9\x36\xb5\x14\xb1\x08\xac\x6d\x7b\xcd\x71\x68\x3d\x4d\x44\x44\x21\xa5\xd7\x51\x46\xcc\x2c\xc3\x30\xcc\x33\xc3\x47\x4e\x1b\x72\x7f\x5d\x67\xc5\x76\xc8\xac\x8a\x59\xa2\x91\xe8\x39\xc0\x59\x5c\xea\x0f\x59\x44\xd6\xe3\xc9\x9a\x0d\xb6\xd6\x3e\xc3\x0a\x03\x60\xb0\x64\x82\x4d\x65\x93\x7c\xd9\x83\x40\x79\x4a\xc8\x3c\x85\x63\x1e\x60\x06\x7d\x5b\x14\x6e\xa6\x4c\x2d\xd2\x7b\xe4\xe9\x50\x0a\xbf\x19\x19\x19\x01\x2c\x1d\x00\x00\x3f\xe8\xf0\x56\x30\x84\xad\x77\xd0\x2a\x4a\xc3\x45\x50\x02\x51\x76\x46\x43\xaf\xb2\x86\x4b\xb0\x95\x97\xd0\xf3\x2a\xab\xdf\x20\xab\x7c\x3b\x24\x12\xa6\xfa\xd6\x10\x93\x74\x3a\xa7\x04\x26\x5b\x92\xce\x52\xea\xf0\x16\x92\xa8\x90\x97\x78\xbc\xd2\xb9\xce\x9c\x39\x23\xef\xbe\xfb\x6e\x31\x32\x32\xa2\xc7\xd8\x07\x10\x94\x24\xd5\xa6\x56\xcb\x1f\xf2\x12\x4f\x59\x7d\x38\xa6\xcd\x4d\xfa\x44\x26\x28\x82\x6a\x7f\x64\x11\x3c\x02\x50\x0d\xbd\x99\xad\xab\xc1\x9d\x37\x86\x7b\x73\x48\xe4\xfd\x88\x88\x64\xa9\x54\x92\x9e\xe7\x89\x28\x8a\xf0\xca\x2b\xaf\x48\x22\x12\x7b\xf6\xec\x31\x97\x37\xab\x95\xdc\x47\xb2\x92\xeb\x55\x3e\x73\x5b\x80\xb5\xda\xbb\x7f\x92\x88\xa2\x76\xbb\x0d\xcb\x9f\x4c\xde\x82\x62\xd2\xd4\x45\xea\x78\xe3\x8d\x37\x70\xcf\x3d\xf7\xc8\x91\x91\x11\xbd\x98\x46\x94\xf8\xcf\x30\xa2\x9d\x5b\x96\xb5\xf0\x46\x76\xd9\xe7\xcf\x9f\xc7\x89\x13\x27\xb0\xb0\xb0\x50\x44\x18\xe0\x3c\xf7\xcd\x1f\xdf\x89\x74\x59\x6b\xcd\x6d\x20\x3b\x79\x05\x32\xce\x45\x00\x4b\x47\x91\x55\x48\x29\x40\xaa\x6f\x6d\xb6\x32\x2d\xcf\x5e\x1d\xb5\x68\x22\x29\x39\x0d\x6b\xb1\x89\x20\x22\x58\xdc\x46\x91\x18\x00\x2b\xfd\x5f\x92\x96\x07\x3c\x0c\x78\x1f\x24\xbe\xe4\xd5\xe7\xa6\xe7\x12\x20\xe5\x50\x46\xa7\x27\x77\xf3\x86\x3c\x0e\xa4\x4e\x86\x53\xa2\x4b\x16\xbc\x2d\xfb\x4d\x9b\x05\x4c\xb7\xb4\x4c\x1d\xc4\x94\x7b\xac\x22\x29\x99\xad\xb2\xac\x22\xf4\xa1\x36\x43\xec\x55\xbe\xcc\x1d\x1f\xba\x10\x5b\xf4\xd1\x63\xcb\xf0\x7b\x3c\x26\x62\xae\xc8\x52\xea\x83\x42\xfd\xca\x7d\xfb\xf6\x25\xf5\xa5\xfe\x5e\x2a\xc3\xa1\x37\xbe\xa1\xe5\xef\x25\xb5\x8b\x62\xda\x6f\xf0\x4a\x8b\x4c\x40\xa6\x27\xae\x52\xde\x2c\x56\x69\xbc\x27\x51\xdd\xdc\x0c\x7e\xe3\x24\xaf\xbf\x8e\xf4\xf2\x75\x4c\x4d\x4d\x61\x72\x72\x12\xd7\xae\x5d\x93\x00\xf0\xf2\xcb\x2f\xcb\x2b\x57\xae\x88\x07\x1f\x7c\x50\x06\x41\x60\x70\x44\x11\x07\xdd\xfe\x22\x45\xb8\x9e\xb4\x00\x20\xa5\x94\xf2\xd9\x67\x9f\x95\x8e\x1e\x2b\x4f\x45\xe0\x72\xfe\x38\x79\xf2\xa4\x3c\x77\xee\x9c\x68\xb5\x5a\xf2\x8f\xff\xf8\x8f\x51\xad\x56\x33\xdc\xa9\xd9\x45\xcb\xfe\x4a\x6b\xee\xca\x56\xab\x85\xef\x7c\xe7\x3b\x45\x2a\x89\x9b\xcd\xab\x0c\xbe\xfa\x83\x12\x75\xc8\xac\x46\xc9\x40\x09\xc1\x64\x58\x33\x17\xf9\xc8\xc1\x5a\x83\x64\x9a\xa5\x26\x18\x84\xcb\xae\xa0\x50\x22\x0c\x24\xab\x36\x58\x1c\x87\xb4\x38\x8e\x41\x0a\xd0\xa2\x49\x3a\x48\xcc\xd0\xdf\xdd\x4c\x9c\x41\x4e\xfa\xad\x22\x41\x51\x39\x7d\xf9\x2c\x78\x0b\x00\xbe\x88\xb9\x6a\xa6\xab\xb6\xb3\x30\xcf\xc8\x1a\x79\x9a\x49\x6b\x89\x1b\x7a\xd2\xeb\x93\xae\x19\xc2\xe2\xe4\x57\xf5\x68\xb2\xa2\x4d\xcf\x93\x54\x36\xac\xbf\x19\x35\x7b\xdb\x17\xe9\x18\xa6\x9c\x86\xc5\xed\x48\xae\x10\x1b\xb6\xde\x1c\x4a\xb3\xae\xa7\x34\x96\xb2\x00\x7c\x3f\x16\xf5\x20\x16\x75\xd8\x75\x69\xee\xc2\x3a\x33\x62\x38\xa1\xcc\x69\x5f\xca\xfe\x30\x92\x6d\x69\x26\xe5\x01\x1c\xa2\xd6\xf5\xb6\x0b\x46\x45\x0a\xb2\xdb\xd4\x37\x86\xa7\x4f\x9f\xc6\xf2\xf2\x32\xee\xb9\xe7\x1e\x4c\x4f\x4f\xcb\x52\xa9\x64\x4f\x5a\x23\xc6\x3b\x3a\x38\x69\x89\x0d\x58\x5b\x5b\xc3\xd1\xa3\x47\x01\x00\xcb\xcb\xcb\xb7\xba\x38\x65\x42\xab\xd5\x02\x12\xdd\x07\xba\xdd\xae\x04\x20\xff\xe4\x4f\xfe\x44\x78\x9e\x67\x9c\x24\x59\xe2\x12\xe2\x38\x86\x94\x12\x17\x2f\x5e\xc4\xcb\x2f\xbf\x5c\xb4\xe0\x15\x71\xc5\x83\xda\xd4\xa7\xe3\xb8\xd9\x2a\x9e\xa4\x31\x04\x25\x0e\x5d\x93\xc6\xa6\x6b\x8b\x0a\xe9\xa0\x26\xb8\x4b\x36\x2e\x9a\xf4\x8c\x81\x98\xd9\x88\x4f\xb2\x32\xa5\x62\x8a\x6b\x48\xd6\xd7\x9e\xfe\xdf\x3e\x1d\x8d\x13\x7f\x33\x0e\x02\xe8\x87\xc5\xcd\x58\xba\x3c\xe0\xe7\xd5\x69\xc3\x3a\x03\xe7\x5d\xbb\x76\xb9\xc4\x2e\x81\xb5\xe4\x4a\xba\x73\xa0\xfe\xb3\x45\xa0\x35\x71\x80\x7d\x59\xb7\x9a\xd0\x66\xf2\xaa\xfc\xfa\xc8\x37\xd9\xf0\x67\x67\xac\x32\xd4\x01\x5a\x14\xb2\x79\xfd\x54\xb7\x62\xad\xee\x46\x21\x6a\xb3\x33\x96\x87\x7b\x89\x80\xd8\xac\xee\x06\xe6\xcf\x3c\xf3\x8c\x7b\xb7\xad\x00\xe0\xfb\x12\x55\x4f\x92\xb6\x84\xca\x96\x6f\x35\xd0\xd0\x0a\x13\x28\x7d\xb7\xf4\x20\xb6\x7a\x98\xc1\xf0\x63\xaa\x0a\x46\x10\xa7\x62\x21\x00\x68\x6e\x23\x83\x47\xd7\xaf\x5f\x17\x2f\xbd\xf4\x92\xce\x22\x1f\x79\xe4\x11\xdc\x71\xc7\x1d\xaa\x69\x59\xab\x66\x0d\xd7\x9c\xbb\x76\x8b\x74\x5d\x79\xab\xbb\x8b\x63\x26\x4d\x11\x0d\x00\x10\xca\x93\x3c\xee\xbb\xef\x3e\x71\xec\xd8\x31\x93\xef\xbe\xfb\xee\x13\xe7\xcf\x9f\xc7\xea\xea\xea\xad\xe8\xdb\x6e\x36\x37\xfa\xde\x8b\xec\x38\xdc\xc6\xe7\xb3\xe0\x9a\xfd\xb3\x29\xbd\xf6\x23\x4a\xe9\x2a\x94\x19\x3c\xeb\x1c\x43\x86\x57\x31\x04\xc4\x24\xbb\x4e\x64\x41\x44\x5a\x39\xea\x76\xea\x66\x3a\x0d\x37\xb8\xfa\x10\xa0\x38\xbf\x4b\x7c\xdc\x50\x44\x70\x06\xe5\x71\xf3\x16\x8a\x86\x20\x80\x05\x45\x66\x52\xab\x60\x6f\xcb\x26\x13\x3b\x99\xd4\xda\x54\x3c\x9d\xe4\x69\x39\x3a\x2e\x65\xf5\x53\xa2\x61\x9e\x13\x36\x50\x15\xed\x28\xb1\x8c\x0d\x89\xce\xa2\x97\x74\x4e\xb9\x47\x9b\x18\x29\xf6\xd1\x14\x27\x10\x69\x83\x4e\x7b\x4c\x73\x88\x06\x00\xf8\x92\x20\x94\xc8\x6a\x57\x0a\x8b\x16\x5a\x7a\xd0\x2c\xc7\x53\x68\x43\x64\xc5\x45\x1e\x47\x92\x12\x22\x65\x29\xff\xf1\xe4\x93\x4f\x8a\x17\x5f\x7c\xd1\x6e\x0b\xe0\xe0\xd8\xab\xaf\xbe\x2a\xb5\x72\xf1\xb6\xdb\x6e\x13\xe7\xce\x9d\x93\x1f\xfa\xd0\x87\xc4\x9b\x6f\xbe\x29\x85\x10\x42\x1f\xb7\x2d\x08\x83\x26\x73\x51\x9a\x1b\x9f\x89\xb3\x89\x06\x00\x4d\x44\x8a\x16\xab\xbc\x72\x8a\x74\x1b\x76\x9b\x4c\x5e\x97\x28\xb8\x93\xc9\x20\xb2\xfe\x03\x00\x58\xa2\x44\xf2\x6e\xab\xae\xd3\x1f\x15\x63\xad\x3e\xf6\xc2\x90\x55\x89\x93\xf3\x40\x9c\xb6\xcb\xae\xbf\x60\x47\x45\xff\xba\x5c\x93\x9b\xc7\x8e\x97\x28\x26\x16\x45\x80\x73\x83\x5b\x86\x5d\x77\x5e\xfd\x79\x83\x9f\x41\x80\x7e\x7d\x12\x84\xf4\xa0\xec\x09\x34\x33\x90\xfa\x70\xd5\x8e\x65\x98\x93\x95\xdd\x8e\x4b\x05\x8a\xe4\x43\x56\xac\x5c\x92\x87\xad\xf2\x9c\x05\x5b\xa7\x69\x31\x34\x33\x76\xe9\x60\x1a\xae\xc3\xce\x64\x4d\x6e\xd8\xdf\x32\x83\x05\x85\x2c\xfa\x61\xf9\xcc\x33\xcf\x98\x38\x9b\xb3\xec\x79\x1c\x86\x3e\xb7\x9c\xa6\x65\x69\xa1\x79\xc8\x9e\x9c\xd1\x84\xc5\x7c\xe7\x56\x0a\xc8\xb5\x72\xbc\x22\x15\xc1\xb3\xeb\x7d\xf1\xc5\x17\x5d\xb1\x35\xef\xd9\x8c\xef\xb9\x73\xe7\x00\x00\x6f\xbe\xf9\xa6\x04\x80\xc1\x34\x23\x5f\x0c\xc9\xa9\xa7\x88\x73\x2e\xc2\x21\xb7\x2c\x37\xb8\x78\x7f\x2b\x62\x79\x11\x7e\x17\xb2\x28\x7d\x19\x6d\xc0\x32\x00\x49\x1c\xf5\x61\x87\x4e\xd4\x8f\x96\x7c\x99\x96\x63\x3d\xb8\xa3\xa9\xe9\x12\x27\x3a\x14\xbb\x6e\x67\x70\x8b\x00\x63\x03\x71\x10\x40\xdc\xbc\x6e\x3c\x9c\xdf\x3c\x56\x32\x2f\x7f\x1e\xe1\xcd\x2b\x33\xf7\xf9\xfc\xf9\xf3\x19\xd3\x7a\xad\xdb\x89\x02\xd1\xd4\xab\xab\x3d\x69\x88\x6c\x0e\x40\x09\x2a\x56\x9c\xb1\x20\x55\x94\x9c\x48\x73\x06\xfa\xcf\x3e\x6a\x6f\xa9\x37\x75\x9a\x33\x3e\x94\x52\x01\x55\xa7\x15\x6f\x44\x03\xce\xcf\x0b\x42\x54\xa2\x16\x0b\x32\x7e\x36\x75\xb0\x6e\x30\x33\x71\xcc\x2c\xd7\x83\xb8\xb5\x3c\xd4\x9b\xb3\x0f\xda\xe5\x31\x11\x7d\x29\xae\xa4\x95\xf3\x5d\x2c\x38\x5c\x18\x09\x2f\x80\xfa\x26\x92\x7b\x3d\x00\x90\x3f\x8e\x79\x5c\xae\x9d\xe6\xc6\xdb\xe5\xd8\x1c\x6f\x5e\x5d\x79\xef\xb7\x22\xca\x0c\x5a\xf0\x06\xb5\xd7\xce\xe3\xe6\xcd\x95\x38\x5c\x03\x30\xe1\xfc\x02\xc8\x8a\x0a\x49\x60\x48\x82\x84\x8d\xa0\x7d\xcb\x40\x3f\x17\x91\x09\x9c\x13\x9f\x16\x21\x08\xa9\xcb\xf8\x01\xfa\x0d\xbb\xad\xb9\x6c\x3f\xfa\x29\xeb\xad\xb2\x85\x79\x44\x75\x90\x48\x87\x01\x79\xf3\xca\x2c\x62\x41\x6d\xae\x43\x02\x90\x61\x85\xae\x83\x20\xc1\x2c\xd2\x15\xdf\xf6\xa6\xa6\x1f\x6c\xb1\x02\x19\xf6\x3d\xf1\xbd\x91\x4d\x83\xf9\xd4\x7e\x06\xec\x81\xc8\x04\x9b\xe8\x67\xda\x69\x69\xb9\xcc\x37\x8e\xd8\x43\x8c\xde\x10\x2d\x4a\x81\xbe\x23\x04\x5a\xc7\x61\xf7\x99\x88\xa2\x9e\xc7\xad\x2b\x63\xdd\xf7\x67\x96\x87\x1e\xf2\x24\x02\xbb\x69\x59\x80\x39\xf1\x85\x79\xd2\x8c\xeb\x81\x5c\x9c\xab\x77\x2f\xc2\xda\x2a\xd5\x59\x95\x07\x2c\xa0\x1f\x77\x50\x10\x2f\x77\xee\xdc\x29\x00\xe8\x73\x37\x6e\xde\xbc\x71\xbe\xd9\x64\xcf\xc3\x13\xb7\x1c\xf9\xd0\x43\x0f\x89\xad\x5b\xb7\xe6\x12\x84\xef\x7f\xff\xfb\x12\x48\xbc\xc8\x29\xf1\x7e\x50\x1f\xdc\x36\xb8\xf5\x67\xd2\xf2\xb6\x63\x07\x72\x1e\x00\xa4\x3e\x26\x0c\x68\x1c\x4c\x09\x4a\x1f\xe5\x77\x07\x31\xa3\x24\xcd\x4f\x23\x26\xe1\x49\x73\xd3\x7a\x91\x7e\xc0\x6d\x9b\x2b\xc7\x15\xc9\x84\x79\xab\x85\x1b\x06\x51\x74\xf7\x5b\x37\xcd\x2e\xc3\xce\x93\x37\xb8\xb9\x44\xcc\x9e\x40\x00\x45\x61\x55\x2c\x49\x81\x8e\x17\xab\xcb\x81\x8c\x4d\x46\x86\x06\xa8\x8f\xad\x5f\xeb\x5c\x4b\x66\xd2\xb9\x66\xe2\x56\x79\x99\x41\xb3\x74\x1c\xa9\xd1\x95\x5e\xce\xb5\x6b\x04\xeb\x5b\xb6\xeb\x26\xeb\x7c\x4b\x92\x27\x1c\x12\xf3\xfa\x76\x74\xc0\xd1\xe5\x24\xef\x9a\xe3\xd2\x86\x52\xe1\xc5\x0d\x9d\x53\xfb\xae\x46\x73\xe3\xad\xd2\x8c\x69\x92\xd9\x61\x51\xb7\xc4\xab\x3e\xd8\x06\x85\x69\x50\xca\x64\x4a\xb9\x20\x09\x96\x57\x46\xbb\x27\x57\x2b\xb1\xbe\xfb\xd6\x1c\xa6\x74\x76\xee\xfa\xf0\x65\xf3\xe6\xcd\xb8\x76\xed\x9a\xfc\xdd\xdf\xfd\x5d\xb1\x61\xc3\x06\x94\x4a\x25\xb3\x8b\xa1\x7e\x05\x11\xa1\xdd\x6e\xa3\xd1\x68\xa0\xd1\x68\xe8\x1d\x0d\xbb\x4c\xfd\x0c\xdc\x1c\x37\xfa\x44\x85\x47\x1e\x79\x04\xd3\xd3\xd3\x62\x68\x68\xc8\xce\xaf\xdb\x20\x34\x1c\x95\xe7\x3e\xc9\xcc\x58\x58\x58\x10\x6f\xbe\xf9\x26\xae\x5e\xbd\x2a\x38\xf5\xb7\x51\xb4\xf0\x16\xf5\xdf\xb4\xc5\x47\xfe\xc4\x73\x3b\x61\x37\x0c\x0c\x48\x49\x88\x5c\xdd\x99\xbd\xe2\xe5\x5a\x96\xdb\x84\x24\xef\x99\x4c\xa5\xbe\x2f\x45\xe0\x10\x1e\x01\x40\x16\x58\x8e\xe6\x01\xa1\x08\x30\x79\x5c\xc3\xcd\xb8\x95\x3c\xd8\x14\x11\x2c\x20\x87\x18\xe4\xb4\x35\xf7\xd9\xe5\x36\x00\x8e\xc2\x21\xb1\x12\x05\xb4\x20\xda\x3c\xe3\x82\xd1\x3e\x32\x9f\x8c\x45\xd6\xb0\x4e\xef\x20\xa4\xa2\x03\x1c\x4e\xc4\xe5\xe8\x9c\xe3\xe1\x49\x54\x76\x42\x6a\x8e\x43\x4d\xc6\x2c\xc3\x93\xd6\x9e\x2a\x61\x01\x29\x10\xb6\x47\xbc\x4b\x70\x0c\xfb\x14\x12\xe3\xc2\x85\x0b\x98\x99\x99\xd1\xc4\xc3\x38\xd3\x59\x19\x8a\xe6\x4e\x6d\x5a\x7f\xfd\xc3\x17\x47\xa7\x7c\xa6\x20\xcb\x11\xa5\x5e\x43\x88\x28\xbd\x34\xc9\xea\xb3\x6d\x3b\xa4\x4d\x01\xd6\xca\xf1\xc2\xc9\xad\xeb\xbf\x88\x84\x6c\x12\x8c\x73\x21\x09\x00\xca\x27\x87\x3d\x56\x3a\xc8\x27\x9e\x78\x42\x6c\xdb\xb6\x0d\x9e\xe7\x99\xed\x64\x20\x63\x31\x6a\x7e\x87\x86\x86\x64\xa5\x52\xc1\xe6\xcd\x9b\xe5\xee\xdd\xbb\xc5\xd2\xd2\x12\x7e\xf0\x83\x1f\xc8\x4a\xa5\x22\xd4\x49\xd4\x22\xce\xc4\x7e\xce\x4c\xd8\x47\x1e\x79\x44\xcc\xcc\xcc\x20\x08\x02\x50\xce\x5d\x2c\x8a\x68\xe8\x36\x18\x03\x30\x22\x92\x9b\x37\x6f\xc6\x67\x3f\xfb\x59\x79\xf5\xea\x55\xbc\xf5\xd6\x5b\x62\x7e\x7e\x1e\xca\xff\x86\xdd\xd7\xa2\x85\xb7\xef\xdd\x47\xfe\xa4\xe8\x0b\x19\xa5\x1d\x41\x46\x1e\x77\x32\x6c\xa9\x31\x04\xca\xda\x6c\x68\x3b\x0f\x57\xcb\xcd\xea\xbf\x61\x6f\xd9\x22\x3f\x92\x82\x20\xa6\x8a\x06\xa4\x3d\x20\x8a\x68\x0c\x12\x27\xdc\x67\xb7\xf3\x83\xd2\xec\x6f\x6f\x55\xf6\xcc\x4b\x73\xd9\xbb\xbc\xb4\xdc\xb2\xd6\xd6\xd6\x50\xaf\xd7\x13\x6e\x4e\x99\x0d\xc7\x3e\x5a\xed\xba\x77\x2e\x68\xf3\x0c\xc0\x16\x6c\xe1\x88\x0f\x7a\x1c\x52\x1d\x44\x0a\x55\xbd\xf2\xea\x23\xef\xd6\x37\x49\x6e\x18\xbf\xa3\x56\xc3\x52\x0e\x5f\x4d\x51\x6b\x12\x92\x26\x40\x96\x32\x84\xb4\x52\xd5\x2c\x1e\x49\xa9\x51\x89\x96\x3a\x35\x31\xcf\x40\x48\xca\x4a\x53\xc1\x02\x7b\xf6\xec\x11\xc7\x8e\x1d\xc3\xcc\xcc\x8c\x86\x4f\x84\xe4\x3c\x46\x4b\x12\x1a\xef\x6d\x6e\xfd\x7a\xdb\x6a\xe5\xee\xe9\xe5\xf2\x7d\x5a\x9f\x92\xf1\x1c\x6e\x11\x12\x43\x28\x1c\x3b\x21\x0d\x88\x9e\xe0\xce\xbb\x5b\xd6\xff\x69\x7e\xa4\x7b\x0e\xe9\xd1\x72\xe3\x73\x73\x7e\x7e\x3e\x33\x1e\x00\xe4\xe3\x8f\x3f\x2e\x66\x66\xec\xb8\x5a\x31\x00\x00\x20\x00\x49\x44\x41\x54\x66\x0c\x47\x61\x8d\x6d\x6a\x31\xca\x10\xd6\x6e\x95\x11\xb7\x54\x7f\xe4\xc4\xc4\x84\x3c\x74\xe8\x90\x58\x00\x31\x40\xce\xbf\x58\x58\xc0\x4b\x2f\xbd\x84\x46\xa3\x31\x88\x23\xed\x0b\x4f\x3f\xfd\xb4\xf0\x7d\x5f\x73\x14\xba\x6e\x9f\x40\xbe\x1f\x93\xef\x4b\x11\x04\x11\xf9\x82\x49\x44\x1e\x47\xa1\x27\xc3\x9e\xc7\x91\x84\xb9\xfe\x20\x22\xa2\x68\x6a\x6a\x0a\x5b\xb7\x6e\x95\xef\xbc\xf3\x0e\x5e\x7f\xfd\x75\x5d\x7c\xde\x82\x97\xd7\x3e\xf3\x7b\xb3\xd3\xb1\x12\x30\x7e\x21\x34\x22\xcb\x98\x10\x75\x7c\xd9\xd2\x23\x98\x9a\x31\x27\x68\x97\x21\x18\xb0\x28\x3e\x58\x59\x2d\xea\xd5\x20\xbb\x94\xe9\x95\x43\x00\x7e\xa5\x27\x86\x75\xdd\x36\x25\xcd\x6b\x1f\xb2\x93\x3e\x6f\x45\x2f\x1a\xa4\x3c\x56\x70\x90\x18\x52\x94\x56\x54\x6e\x1e\x07\x53\x44\xc0\x24\x00\xa1\x57\x3c\x4e\x1d\xd6\x86\x20\x74\x9a\x13\xde\xfb\xf5\x85\xe8\xe3\x90\xe4\xc3\x12\x1b\xd8\xa2\x0e\x86\xcb\x66\xb2\x56\x61\x45\x1a\x8c\xe8\xe2\xdc\x0b\x6b\x3f\x9b\x34\xc5\xab\xe8\xe1\xb1\x76\xcd\xec\x15\x3e\xbb\xaa\x6b\xf2\xe4\x9a\xc1\x27\xa1\x33\x22\xce\x85\x43\xb4\x82\xf4\x90\x95\x11\x57\xe2\x38\xc6\xc2\xc2\x82\xbc\x78\xf1\xa2\x50\x7e\x56\x25\x2c\xef\x57\x6b\xe5\xf8\xf2\x2f\x76\xad\xbc\x38\x14\x8e\x8f\x6d\x5c\x2f\xcd\x64\x8d\x0e\x1d\xc3\xb5\x2c\xb5\x4c\x73\x11\x10\x13\xa2\x53\x9b\x5a\xbf\x3a\xb6\xad\xf9\xcf\x52\x60\x89\x40\x4d\x4e\x5c\x04\x1a\x67\xd8\xe7\xcf\x9f\xd7\xf5\x03\x00\xbe\xf4\xa5\x2f\x89\xb1\xb1\x31\x3d\xa6\x9a\x50\xf8\x82\x29\x28\x47\xa2\x52\xef\x78\xf5\x91\x8e\x5f\x2f\xc7\x54\x11\x92\x44\x2b\x90\xad\xf5\x20\x6e\x34\x2a\x51\xb3\xe3\xcb\x16\x13\xf4\xb9\x92\x08\x80\xdc\xb4\x69\x93\xfc\xf2\x97\xbf\x8c\x57\x5e\x79\x05\xa7\x4f\x9f\xbe\x19\x97\x21\x00\xc8\xaf\x7d\xed\x6b\x42\x39\x35\x12\x50\x57\x43\x12\xa3\x32\xd2\xf1\xea\xdb\x56\xcb\xd3\xd3\x2b\x95\x07\xea\x6d\x7f\x4f\xb5\x27\x36\x09\x49\x41\xcf\x97\xcd\xd5\x4a\x74\xf6\x6a\x3d\x7c\xf3\xf2\x58\xf7\xec\xe2\x70\x6f\x31\xf2\x8c\x53\xe2\x88\x88\xa2\x7d\xfb\xf6\xc9\x7a\xbd\x2e\xde\x7a\xeb\x2d\x63\x25\x5b\x10\x5c\x35\x86\x04\x52\x51\x65\xa0\x3c\xa3\x80\x9a\x5a\xc2\x01\x32\xf4\x65\x8b\x01\x99\xcc\xf3\x14\x71\x12\x7c\xb6\x58\x5c\x4b\x3e\xce\x2a\xcf\xac\x31\x56\xd4\x45\xaf\x84\x04\x60\xa8\xe7\xd5\x34\x50\x6d\x8e\xc3\xe9\x8c\x1d\xf2\x06\xc0\xed\xd3\xcd\xa8\x7c\x11\x95\x45\x4e\x7c\x9e\x38\x93\xd7\x36\x97\x33\x19\xc8\xf5\xfc\xcd\xdf\xfc\x0d\xbe\xf1\x8d\x6f\xe8\x72\x12\xa4\x63\xee\xac\x4d\x78\xef\x45\x65\x5a\x2a\x75\x78\x93\x3d\x59\x13\x75\x82\xc5\xb9\x21\x6b\x5d\xaa\xf7\x4b\xb3\xe7\x4e\x2c\xdd\x87\x3d\x1e\xda\x8a\x54\x5d\xa5\x00\x20\xdd\x72\x85\x4d\xfc\xe1\x8c\x2d\x52\x5d\x47\x52\x3c\xcc\xb5\x09\x20\xb0\x80\x6c\x6c\xf2\x8f\xb1\x40\x93\xd2\x13\x9a\x92\x99\xe5\xea\xea\x2a\xce\x9d\x3b\x27\x01\xe0\xd8\xb1\x63\x98\x9e\x9e\xb6\x4f\x76\xb6\x00\x34\x40\x58\x5a\xa8\xf5\x4e\xbd\xb4\x77\xf9\xaf\x1e\xf9\x60\xec\x0b\x9b\x1b\xc1\x6e\x32\xed\xc9\xda\xbb\xda\xc1\x6e\x73\xcf\xe3\xce\x7b\x9b\x5b\xbf\xfa\xf5\xce\xd5\x7f\xe8\x96\x12\xd7\x79\x9c\x9c\x58\x35\xee\x29\x17\x17\x17\x8d\x3f\xdb\x5a\xad\x86\xcf\x7e\xf6\xb3\xda\x37\x8a\x39\x93\x42\xa0\xca\x86\x75\x7f\x7c\xef\xf5\xea\xfe\x99\xa5\xca\xe3\xa3\x1d\x7f\x7f\x10\xd3\x14\x71\x72\x42\x55\x12\x37\x23\xc1\x0b\xab\x95\xe8\xd8\xc5\xf1\xce\xcf\xcf\x6c\x6c\x9f\xb8\x31\xdc\x5b\x94\xe0\x8e\x4d\x40\x1e\x7d\xf4\x51\x09\x40\x58\x57\x7d\xb8\xe2\x2e\x00\xc8\xaf\x7f\xfd\xeb\x42\xdd\x5a\xe8\x03\xf0\xc1\xa8\x54\x22\x51\xbf\xeb\x5a\x75\xff\x3d\x57\x6b\x4f\xd5\xdb\xfe\x83\x1e\xd3\x24\x01\x42\x2f\xe4\x4c\xc0\xc4\x7a\x80\x5d\x37\x86\x9a\xed\x92\x7c\xf7\xc2\x44\xfb\x7f\x1c\x9b\x6a\xfe\xec\x7a\xad\xb7\x80\xe4\x34\x70\x07\x40\x34\x3d\x3d\x2d\x37\x6e\xdc\x88\xe7\x9f\x7f\x3e\x0f\x37\xf3\xf0\xda\xa4\xeb\xcb\x3c\xd9\xfa\x15\x76\xdc\x8e\x1d\x3b\x68\xf3\xe6\xcd\x00\x8c\x63\x95\x21\x22\x1a\xd9\xb8\x16\xec\x9e\x5e\xa9\x1c\x10\x20\x73\x21\xa8\x51\x55\x18\x1b\x68\xc5\x2e\x42\x8b\x31\x36\x91\x48\x57\x35\xcd\x9a\x98\x0b\xd3\x01\x5a\xaa\xf6\xde\xbd\x30\xde\x39\x4e\x44\x6b\x44\xd4\x65\xe6\x1e\x00\x79\xf4\xe8\x51\xdd\x46\xbb\xcd\xfa\x57\xa7\xd9\x93\xd7\x4d\x37\xcc\xbd\xd3\x6c\x76\xfe\xe0\xc4\xe7\x01\x96\x9c\x34\xb7\x6d\xf6\xba\x27\x9d\xbc\x64\xb5\xd3\xae\x13\x0f\x3c\xf0\x40\x02\x46\xe5\xe5\x1a\x44\x65\xe9\x53\xb9\xda\x90\x3b\x2a\x4d\xb9\x0b\xc6\x4a\x34\xf9\x34\xcb\x8e\x5b\x06\x57\xa6\x44\xb2\xf2\xa7\xcf\xc9\xb8\x64\x39\x10\xb2\xfe\x1b\xae\x41\x73\x14\x9a\x80\x6b\x02\x41\x9a\x40\x69\x91\x25\xfd\x35\x9c\x28\x31\x7a\x15\x71\xed\xea\x9e\xf2\xdf\xc4\x81\xb8\x82\xc4\x2f\x85\xf6\x47\x21\x9f\x7f\xfe\xf9\x58\xc3\x6c\x7d\x7d\x9d\x8e\x1e\x3d\xaa\x3d\xea\xdb\xb0\x21\x10\xb8\x19\xc4\x9d\x8b\x1b\x3a\xb3\xe5\x58\x94\x47\x3b\xa5\x09\x4f\x52\xc9\x35\x28\xcc\xa8\x40\xc0\x90\x00\x56\x86\xa2\xf9\x37\xa6\xd7\x7e\x72\x64\xc7\xda\xcf\xba\x25\xbe\xcc\xcc\xf3\x44\xb4\x48\xca\xa1\x0d\x33\xc7\x00\xe2\xef\x7c\xe7\x3b\x32\x8e\x63\xd2\x44\xa3\x5e\xaf\x03\xe9\xd5\x14\x65\x3f\xa6\xfa\xfd\x57\x46\x1e\x7c\xe4\xec\x86\xff\x74\xdb\xd2\xd0\xbf\xa9\x77\xbc\x8f\x96\xa4\xd8\x26\x18\x75\x01\xaa\x12\xa3\xe2\x41\xd4\x4b\x92\xb6\xd6\x42\xff\xfe\xa9\xd5\xf2\x67\x6f\x5b\x1a\xba\xaf\x1c\x79\x8d\xa5\xe1\xde\x8d\x9e\xc7\x31\x33\xb3\xd6\xa7\xec\xdc\xb9\x93\x8f\x1e\x3d\xaa\xf1\x02\x16\x6e\x61\xc7\x8e\x1d\xf4\xe5\x2f\x7f\x59\xe3\x80\x8f\xe4\xb4\xf0\xf0\x44\xab\x34\xf5\xc9\xd3\x1b\x0e\xed\xbb\x5a\xfb\xcf\xc3\x3d\xef\x7e\x01\x1a\x26\x5b\x70\x23\x6d\x3f\x0c\x10\x28\x08\xa4\xd8\xb6\xb1\x59\xfa\xe4\xae\xa5\xa1\x7b\x42\x9f\xcf\x2d\xd6\x7a\xcb\xe6\x62\x0b\x22\x94\x4a\x25\xb9\x67\xcf\x1e\x3a\x79\xf2\x64\x16\xde\xfd\x73\x42\xb7\x4f\x02\xd6\xa4\x57\x91\x1a\x99\x8d\xf0\x6b\x13\x0e\x05\xc4\x0a\x80\x91\x89\x56\x69\x66\xe7\x72\xe5\x43\x1e\x53\x29\x83\x74\x9a\x2f\xb6\xa6\xa7\x7b\xa0\x2a\x59\xc1\x5c\x4d\xbf\x55\x29\x80\x66\x39\xbe\x74\x76\x63\xfb\x0d\x10\x9a\x48\xbc\x30\xc5\x44\xc4\xd7\xaf\x5f\xc7\xea\xea\xaa\xfe\xd2\x9e\xb8\x46\x32\x72\xe2\xdc\x7c\x40\x76\xe2\xda\x84\x52\x38\x79\x75\x7a\x1e\x71\xc9\xe3\xd2\xec\x7c\xb0\xea\xe0\x9c\x74\x3b\x9f\x21\x36\xa3\xa3\xa3\x62\x66\x66\x46\x1f\x76\x23\x4a\xce\x6d\x94\x00\xaa\x48\x9f\x44\xfd\x7a\x74\xaf\x27\xa9\x0c\xd2\x27\x8e\x1d\x16\x0e\xf6\xab\xb6\x7f\x81\x91\xf7\xcd\xc1\x30\x4a\xc7\x28\x63\x27\xa3\xf2\x6b\xbb\x90\x94\x38\xa4\x4a\xaa\x8c\x6a\xd5\x10\x2b\x23\xdf\x3b\x96\xaf\x24\x97\xb7\x95\x5e\x5e\x99\xf2\x7f\xc5\xc0\x75\x24\x4e\x72\x5b\x94\x5c\x07\x10\x1f\x39\x72\x24\x03\x93\xa9\xa9\x29\xba\xfd\xf6\xdb\x39\x59\x64\x1d\x62\x4e\x88\x43\x8f\xbb\xe7\xc7\x3b\x17\xaf\x8e\x86\x57\x98\x48\xfa\x92\x4a\x1e\x93\x47\xe9\xd8\x41\x12\xa2\xae\x2f\x3b\xd7\x87\x7b\x57\xde\x9e\x6a\xbe\xfe\xda\xed\xab\x3f\xbc\xb4\xa1\x7b\x5c\x0a\xcc\x01\x98\x27\xa2\x45\x00\xab\x00\xda\x50\xbe\x31\x96\x96\x96\xf0\xde\x7b\xef\xf1\xc8\xc8\x08\x3d\xf9\xe4\x93\x18\x1d\x1d\x05\xa5\x57\x31\x54\x87\x42\x31\xfe\xf8\xe9\xf1\xa7\xf7\x5d\x1d\xfe\xcf\x43\x91\xb8\x47\x80\x02\x7b\xb2\xea\xbe\x27\x98\x64\x16\x4c\x3f\x88\x69\xe7\xd6\x46\xf9\x93\x9b\xd7\x82\x91\x6b\x23\xe1\x99\x4e\xc0\x21\x00\x66\xe6\x98\x88\x70\xe0\xc0\x01\x9c\x3f\x7f\x9e\x3a\x9d\x8e\xbd\xa8\xc9\xdf\xff\xfd\xdf\x37\x44\x83\x93\xfb\x63\x6a\x5b\xd7\xca\x3b\x3f\x79\x66\xc3\x7f\x9c\x5a\x2d\xff\xb1\x07\xaa\xd9\xdb\xe7\xb6\xb8\x68\x56\x60\xcd\x19\x82\x44\x10\xd3\xce\x1d\x2b\x95\x87\x05\xd3\xdc\xd5\xd1\xf0\x2a\x13\x24\x11\xc5\x00\x64\x10\x04\x5c\xaf\xd7\xe9\xc2\x85\x0b\x7a\xae\xb8\xc4\xcc\xc5\x59\xce\x73\xe4\xd3\xa7\x1c\x74\xac\x19\x25\x80\x28\xf4\x64\x5b\x1d\x7d\x57\x99\xac\x6e\x5b\x21\xa1\x6d\x29\xd2\x19\xce\x83\xb2\x79\x2c\xff\xbb\x60\x00\xb5\xd0\x9b\x14\x0c\x3f\xa6\xec\x81\xa8\x03\x07\x0e\x20\xc7\xe4\x5c\x87\x22\xdd\x05\x9c\xbc\x45\x0a\xd0\xa2\xf4\x9b\x29\x4c\x07\x95\x37\xa8\xde\xbe\xb4\xd5\xd5\x55\x34\x1a\x0d\xed\x77\x54\xcb\xfa\x1d\x10\x9a\xeb\x1b\xbc\x33\xcd\x71\xff\xe4\xe8\xb5\xe8\xc1\xbc\x8d\xc7\x41\x41\x2b\x2a\x6f\x92\xcb\x7a\xb6\x88\x7f\x1e\xff\x64\xe2\x53\x6e\xc7\x28\x5e\xd5\x7f\x06\xd0\x2b\xd3\xe2\xd2\xb6\xd2\xaf\x41\xd4\x20\xe5\xd5\x1b\x8a\x5d\x6f\xb7\xdb\x98\x98\x98\x10\x37\x6e\xdc\x30\x45\xce\xcd\xcd\xe1\xcd\x37\xdf\xc4\x47\x3f\xfa\x51\xdb\xef\x44\x53\x25\x4b\x10\x22\x26\x74\xae\x8c\x76\x9b\x57\xeb\xdd\x0f\x86\x43\x6f\xe3\x86\x56\x69\x72\x38\x14\x63\x43\x91\x57\x89\x89\x65\xbb\x14\x37\xd7\xca\xf1\xca\x52\xb5\x77\x35\xf4\x79\x85\x81\x25\x10\x56\x98\x79\x91\x12\x6f\x5c\xc6\xc3\x38\x14\x9e\xbc\xfd\xf6\xdb\x00\x20\xd6\xd6\xd6\x64\xbd\x5e\x37\xab\x3c\x80\x6a\xb9\x27\xc6\x1e\x3d\xbb\xe1\xe9\xdb\x6e\x0c\xfd\x5b\xc1\xa8\x91\x75\xde\x47\xf7\xb3\x6f\x34\x12\xc4\x4f\x74\x76\x8c\xfa\xf6\x95\xf2\x9f\x3c\x7e\x6a\x7c\xfc\xa7\x77\x2c\xfd\x97\xa5\xe1\x68\x4e\xcd\xa7\x0e\x11\xc9\x8f\x7f\xfc\xe3\xf8\xc9\x4f\x7e\x22\xda\xed\x36\x00\xc8\x4f\x7f\xfa\xd3\x19\x9f\x2c\x44\x54\xad\x75\xbd\x4d\x1f\x3b\x3f\xfa\xef\x36\xad\x05\xbf\x23\x40\x81\x5b\xa7\xa3\xe7\xd6\xa7\x00\xac\xf6\x11\x4a\x31\x4d\xdf\x7f\x65\xe4\xcf\xba\xbe\x8c\x4e\x4c\x35\x5f\x91\x89\xf1\x1b\x88\x28\xdc\xb5\x6b\x97\x3c\x71\xe2\x04\x96\x96\x96\x0a\xf5\x6f\xd6\xbb\x28\xf2\xc7\x61\x26\xdd\xf1\xe3\xc7\xc5\x3d\xf7\xdc\x93\x34\x80\xcd\x51\x77\xd9\x0e\x64\x23\x12\x1c\x06\x31\x0c\x61\x60\xbd\x42\x59\xd0\xcb\x20\xb8\x45\x1c\x52\xd9\xc4\x46\xb3\x34\x6f\xa5\x27\xc6\xcb\x91\xa8\xac\x97\xe2\x8c\x6e\xe2\x6f\xff\xf6\x6f\xf3\x08\x5c\xd1\x0e\x4b\x91\xce\x66\x90\xf2\xb2\x28\xdd\x4d\xbb\xd5\xba\x6f\x96\xaf\xaf\xdc\xe3\xc7\x8f\x8b\xad\x5b\xb7\x6a\x99\x52\x7b\x93\x6a\xc6\x1e\x56\x16\xa7\x4b\xaf\x55\x57\xe3\xbd\x41\x9b\x27\x33\x04\x98\xb5\xe0\xa2\x44\x10\x68\x7d\x45\x0a\xd7\x84\x40\x67\x09\x42\x72\x95\x4a\xaa\x34\xd5\x3a\x2a\xcd\x6d\x64\x1c\xf9\xa4\x9f\x19\x51\x45\xbf\xb1\xad\x40\xd5\x17\x38\x09\x44\xcb\x53\xfe\xeb\xed\xba\x98\x45\x32\xf9\x5b\x6c\x39\xb2\x59\x5b\x5b\x83\x22\x1a\x19\x58\x9f\x38\x71\x42\x6e\xdb\xb6\x4d\x6c\xdf\xbe\x5d\x22\x71\x88\x93\x94\x9c\x7c\x97\x38\xd2\x01\x37\x62\x42\x7d\xad\x12\x2f\xac\x55\xe2\x0a\x18\x01\x21\xb9\xa4\x0a\x40\xc4\xe0\x0e\x52\xd7\x79\x0d\x02\x19\xb7\x7d\x94\x78\xe2\x32\xd7\x2f\xbe\xf6\xda\x6b\x38\x7d\xfa\xb4\xdc\xb9\x73\xa7\x78\xec\xb1\xc7\x04\x90\xdc\x56\x48\x44\x81\x90\xa8\x1f\xb8\x5c\x7b\xe2\xf6\xc5\xa1\xff\x29\x21\x1a\x50\x38\x6b\xe3\xab\xea\xaf\x5e\x60\x0d\xb8\x52\x32\x4a\xa0\xca\xe6\xb5\xe0\x77\x1e\x3a\x37\xb6\xf4\x93\x3b\x97\xfe\x9f\x8e\x2f\x13\x22\xc8\x8c\xcd\x9b\x37\x47\x33\x33\x33\x78\xef\xbd\xf7\x00\x00\xdb\xb7\x6f\xd7\xf8\xa0\xae\xfd\xa4\xfa\x87\x66\x47\xfe\xd5\xd6\xd5\xf2\xef\x08\x50\x00\xbb\x1e\xdb\xd6\x21\x45\x06\x25\x2e\xa6\xad\xd0\x4a\xeb\x72\x44\x33\x07\x2e\x8f\xfc\xbb\xc5\x5a\x6f\xfe\xd2\x68\xe7\xa4\x82\x69\xe4\xfb\xbe\x54\x44\xc3\x0e\x45\xfa\x3d\xa9\x6f\x72\xb3\xe9\x95\xcd\x56\x8b\x5e\xaf\x27\xd5\xf5\x08\x9a\xfa\x05\x00\x6a\x5e\x4c\x1b\xf6\x2c\x0e\x3d\x58\x8e\xbc\x51\xcd\x2e\x01\xa9\x75\xa2\x91\x79\x6d\x16\x2a\x83\x7f\x04\xdb\x10\xc9\x56\xc1\x27\xb2\x31\xc2\xd3\x1b\x5b\x2f\x75\x02\xbe\xa1\x06\xba\x47\x44\xf1\xae\x5d\xbb\xf0\xee\xbb\xef\xba\xfa\x0a\x57\x2e\xb3\xc5\x0a\x57\x94\xd0\x13\x56\xb3\x64\x40\xb6\xff\x76\xba\xfd\xeb\x96\x65\xa7\xbb\x71\x76\x7b\xf2\xca\x19\x94\x87\x84\x10\xb8\xfd\xf6\xdb\xf5\x5d\xa6\x44\x09\x00\x3d\x22\x2a\xf5\xca\x14\x95\xba\x5c\x1f\x5a\x93\xb7\x09\x7b\x15\x30\x62\x86\x42\x28\x05\x4f\x2d\xaa\x90\x71\xc0\x63\x35\x85\xac\xca\x2d\x7d\x05\x99\xef\x33\x64\x28\xcd\xc7\x48\xf5\x1c\x8a\xeb\x48\x3b\xa0\x74\x29\x44\x68\x8f\x8a\xb3\x57\xf7\x56\xfe\x36\x2a\xd1\x2c\x11\x5d\x87\x5a\xe9\x29\xeb\x6b\xd3\x2e\xde\x14\x33\x3b\x3b\x8b\x89\x89\x09\x8c\x8e\x8e\x32\x92\xc5\x2a\x56\x13\xbd\xa7\x88\x47\x47\xe1\xc5\x1a\x80\x35\x06\x37\x40\xb4\x02\xc2\x0d\x06\x2f\x01\xb8\x41\x44\x8b\x8a\xcb\x58\x42\xea\xf3\xb3\x8d\xe4\x3a\x80\x88\x99\xe5\x37\xbf\xf9\x4d\x79\xfd\xfa\x75\x02\xc0\x9f\xf8\xc4\x27\x48\x39\x52\xf2\x88\xa8\x02\xc6\xf0\x96\xb5\x60\xf7\x83\xe7\x47\xff\xd7\x4a\xe4\x4d\xf7\xe9\x86\x74\xa3\x6d\x71\x8d\x2d\x04\xb4\x69\x48\x92\xc7\xaf\x77\xbd\xdd\x6d\x5f\x9e\x9e\xaf\x87\x97\x41\xc6\x19\x37\x4f\x4d\x4d\xf1\xb1\x63\xc7\xe4\xe7\x3e\xf7\x39\xed\xd0\xc8\x43\xe2\x3e\x71\x64\x6b\x23\xd8\xfb\xe1\xd9\xfa\xbf\xaf\x44\x62\x5b\xb2\x2b\x49\xe6\x92\xa7\x74\x3c\x52\xd8\x93\x5b\xb1\xa5\x73\x22\x26\x94\x62\xda\x58\x89\xbc\x68\x76\xbc\x7b\x52\xed\xb6\xc4\x44\xc4\x07\x0e\x1c\xe0\x4e\xa7\x43\xd7\xaf\x5f\xd7\xe3\xa2\xc7\xa6\x6f\x4e\xd8\xda\x5c\x3b\x98\x2d\x18\x65\xec\xa2\xe3\x24\x33\x4b\x66\x8e\x7a\x3e\x77\xba\xbe\x5c\xd1\x44\x2f\x51\xd8\x59\x6d\x85\x8a\xcb\x9b\x2e\x26\x5f\x3f\x37\xa2\x0b\x29\xc5\x54\x1f\x0e\xbd\x31\xa8\x63\xd8\x7a\x4b\xd8\xf7\x0d\x93\x74\x33\x2e\xc0\xee\x8b\x1d\x37\xa8\xbf\x79\xcf\x79\xe5\xe6\x95\x95\xb7\x6d\xe5\xfe\xe5\x05\xb7\x0c\xb9\xb2\xb2\x82\x0f\x3e\xf8\x00\x48\xe0\x1d\x21\xdd\x9a\x6c\xb0\x47\x4b\x8b\x3b\x83\x7f\x5e\xdf\xe0\xbd\xaf\xc0\x0e\xfb\x00\xa2\x1e\x8b\x24\xa4\x71\xe6\xf0\x1b\x93\x39\xe0\x66\xf2\x53\xf6\xe0\x9b\x1d\xaf\xc5\x1b\x43\x4c\xe0\xf0\x86\x8a\x2b\xd1\x0b\x85\x1e\xc3\x5e\x99\x96\x16\x6e\x0b\x7e\x16\x0e\x89\xcb\x4a\x09\xd9\x44\xc2\x01\x44\x00\xe4\xe2\xe2\xa2\x0b\xef\x0c\xdc\xc3\x30\x94\x3f\xfa\xd1\x8f\xe4\xec\xec\x2c\x28\xb5\x43\xe8\x00\x68\x2a\x71\x63\x11\xc0\x02\x80\x39\x00\x97\x89\x68\x16\xc0\x05\x00\xb3\x44\x34\x4b\x44\x97\x01\xcc\x11\xf5\x5d\x07\x10\x02\x88\xe2\x38\x96\xcf\x3e\xfb\x6c\xa6\xee\x89\x89\x09\xa8\xb1\x4b\x9c\x44\x4b\xaa\xdf\x75\x6d\xf8\x53\xb5\xd0\xdb\x97\x9e\xf3\x49\x27\xa5\x21\x9c\x19\x3d\x13\x60\xf2\x3a\x03\x4d\x00\x3c\x49\x63\xf7\x5c\xad\x7d\xa5\xda\x13\x93\x48\x5d\x0f\x8a\x52\xa9\x84\x43\x87\x0e\x89\xad\x5b\xb7\x02\xc9\x46\x84\xd6\x27\xd6\xee\xbe\x36\xfc\xf8\x70\xd7\xdb\xad\x69\xbe\x21\xe0\x80\x31\x7a\x33\x36\x24\xa6\x36\x4e\x17\x10\x33\x21\x93\x0c\x02\xe4\x4f\xad\x06\x8f\x6d\x5b\x2d\xdf\x09\xa0\xaa\x98\x01\x41\x44\x78\xf7\xdd\x77\x8b\xe6\x4e\x06\x47\xf3\x64\x76\xe1\x3e\x6b\xfd\x02\x94\x98\x42\x44\x32\x12\xdc\x69\x97\x64\x23\xb5\x1a\xb4\xa0\x69\xd6\x10\x32\x7d\x30\xdd\xb1\xa1\x59\xf4\x9c\x00\xb8\x3a\xd6\xf6\x37\xc1\x72\xc2\xca\xcc\xa2\x5e\xaf\xe3\xf6\xdb\x6f\x77\x59\xff\xbc\x67\x3b\xf4\xc9\x68\x28\x0e\xb6\x08\x21\x0a\xde\x8b\xf4\x16\x79\xe2\x4f\xd1\x37\xee\x7b\x86\x40\x9d\x3c\x79\x12\xdd\x6e\xd7\x4c\x1a\x4e\x2e\x07\x6e\x30\xf3\x52\x38\x24\x66\xaf\xdd\x16\xfc\xa4\x5b\x15\xf3\x1a\x99\xb5\x02\xd3\xec\x52\x01\x8a\xf3\xd3\x07\xdf\x48\x2f\x3c\x86\x03\x01\xac\x61\xa3\xf4\x2f\x79\x4f\x18\x36\x6d\x6b\xa3\x4f\xde\x1a\xb1\x54\xc9\xf0\x29\x57\xa3\xc7\x9a\x21\x3d\xea\xdc\x98\x2e\xfd\x53\x63\xa3\xff\x16\x92\x6b\x01\x56\x90\xd5\x29\x48\xa5\x53\xc8\x83\x7b\x26\xee\x47\x3f\xfa\x91\x3c\x77\xee\x9c\x71\x5c\x83\x94\x88\x36\x55\xb9\x4b\x48\x89\x88\xfe\x5b\x54\x7f\xb6\x3e\xc3\x10\x8d\xb5\xb5\x35\xf9\xe6\x9b\x6f\xf6\xd5\xab\x9c\xe1\x18\x11\xa1\x16\x7a\x5b\x76\xac\x94\x1f\x25\x90\x60\x76\x10\x54\x13\xe5\x4c\x14\x67\xf4\x3e\x0a\x82\x99\xaf\x88\x09\xa3\x1d\xff\xc0\xf4\x72\xe5\x6e\x30\xaa\x40\xc6\x3f\x89\xdd\x26\x1f\x40\x65\x28\x14\x63\x5b\x1b\xc1\x83\x04\x04\x9a\x95\x67\xcd\x4b\x03\x29\xa7\x6e\xea\x86\x12\x1b\xb3\x93\x8b\x9c\xef\xca\x91\x98\xda\x75\xa3\xf2\x31\x3f\xa6\x1a\x14\xf1\x02\x20\x0e\x1d\x3a\x24\x46\x46\x46\xf2\x70\x18\x56\x5c\xdf\xb1\xfa\xdc\x55\x5b\x1f\x7b\x56\x93\x57\x32\x73\x14\x09\xee\xb4\x02\xb9\x62\x78\x32\x17\xa4\xc4\x59\xa8\x3a\x9c\x87\xbd\x05\xc8\x7d\x0f\x80\x60\x12\xe3\xad\xd2\x0e\xc1\x08\xc8\x39\xb3\xa2\x6e\xab\xcf\xd3\x4f\xb8\x7a\x03\xb7\xd3\x76\x70\x09\x03\x72\xf2\xb9\x9c\x82\xcb\x41\x14\xe9\x50\xec\x72\x5c\x8e\xa3\x88\xcb\xcb\xb4\xb3\xd1\x68\xe0\xcc\x99\x33\x46\x19\x8d\x04\xf1\xcd\x75\x80\xcd\x71\xef\x9d\xf9\x3d\xc1\x3f\xf6\xca\xb4\x64\x6b\x37\x52\x9f\xa3\x36\xf2\x10\xb2\x5c\x48\x2a\x16\xa6\x88\xad\xe5\x74\xa4\xdf\x68\xb1\x45\x97\xa4\x88\x92\x3e\x85\x6b\xd4\x27\xd6\x60\x4a\x8f\xc2\xa5\xed\xa5\xd7\x17\x77\x06\xaf\xb2\x48\x56\x7b\x66\x36\x97\xff\x00\x90\x0b\x0b\x0b\x38\x7b\xf6\xac\x8b\x98\x45\x1c\x19\x7e\xf6\xb3\x9f\xc9\x6f\x7f\xfb\xdb\xf2\xfc\xf9\xf3\x36\x2c\x43\x0d\x13\x4e\x1c\x07\x67\xfe\x98\xb9\x85\x94\x58\x85\x00\xa2\xf5\xf5\x75\xf9\xcc\x33\xcf\xc8\xef\x7e\xf7\xbb\xf2\xc4\x89\x13\x99\x3a\x9e\x7a\xea\x29\x9b\xc0\x07\x04\xaa\x6c\x6c\x96\x66\x46\xba\xde\x5e\xc0\x66\x2a\x52\x5d\x4e\x12\xcf\x69\x74\x46\xbf\xa1\xe0\x94\x61\x4f\x92\x5f\xc1\x54\x9d\x5e\xae\xfc\xa6\x60\xe8\x49\xab\xb9\x6a\x0d\x0b\x43\x38\x26\xd7\x4b\xd3\xb5\xae\x3f\x63\x97\x93\x59\x1c\x74\xe5\x44\x30\x16\xc3\x6e\x53\x73\xbe\x13\x20\x7f\xb2\x19\xec\xaf\xf4\xc4\x98\x6e\x83\xe6\xea\x95\x1b\xc7\x41\x74\x41\xba\x1e\xc0\xfa\x42\x1c\xc7\x50\xb7\x78\xeb\x02\x24\x11\x45\xb1\xe0\x70\xad\x1c\x2d\x31\x58\x12\x51\x7a\x73\x3a\x6b\x63\xa4\x2c\xfb\x66\xe4\xe5\xd4\xd5\x74\xa2\x4c\xd2\xc8\x69\x56\x30\xcd\x5a\x11\xc6\xda\xfe\x76\xc1\x54\x89\x59\x66\x0e\xbc\xdd\x71\xc7\x1d\xe2\xd4\xa9\x53\x79\x14\xd1\x7e\xce\xe3\x32\xf2\x90\x35\x8f\xab\x28\xca\x8f\x5b\xc8\x37\x28\x6f\xde\xbb\x1d\x32\xf1\xc7\x8e\x1d\xc3\x5d\x77\xdd\x05\xcf\xf3\x34\xf1\x68\x41\x6f\xcf\x09\xaa\xac\x6c\xf1\xdf\x14\x31\x57\xb6\x9e\x0e\x9f\xf4\x43\xd4\x13\xf8\x27\x08\xc4\xea\xd7\xdd\x7d\xc9\x68\x2c\x2c\x51\xd2\x3e\x6f\xa2\x39\x8d\x84\x58\xa4\x04\xc8\xfe\x9f\x5a\x0a\xb3\x91\xf7\x95\x32\xf4\x8d\x6b\xb7\x07\x3f\x8e\x4b\x74\x19\x6a\xd5\x77\x95\x91\x96\x82\xdb\x86\x9f\x0b\x9f\x3e\x7c\x7c\xe9\xa5\x97\x10\xc7\xb1\x04\x20\xbf\xfa\xd5\xaf\x8a\x72\xb9\xac\x17\xb4\x3e\x78\x6a\x7c\x8d\xa2\x08\x51\x14\xe1\xb9\xe7\x9e\x93\x95\x4a\x25\x8f\x50\xb9\xf5\x28\x53\x6e\x54\xc6\x5b\xfe\x4e\x21\xa9\x9a\x3d\x40\xe7\xa8\x45\x6d\x77\x8c\x56\x48\xb5\x43\x36\xac\x52\x72\xbe\xb1\x59\xba\x5b\x30\xd5\x24\x58\x7b\x28\xb7\xfb\xa1\xb9\x9e\x60\xb4\xe3\x6f\xf7\x63\x1a\x73\xfb\x97\x3d\x02\xe2\x08\x2a\xda\x3a\x9b\xac\xb8\x9c\x50\x0b\xbd\xe9\x91\xae\xb7\xa9\x59\x89\xe7\x80\xcc\xa1\x52\x17\x36\xee\x62\x27\x6c\xcb\x51\x3b\x43\x06\xd1\x8f\x1c\x39\x82\x03\x07\x0e\x68\x96\x34\x71\xbd\x4e\x14\x35\x2a\xf1\x42\x2c\x38\x24\x89\x4a\x4a\x11\x13\x84\x4c\x4d\x94\xf4\xea\x96\x52\x44\x1d\x97\xd5\xd6\xab\x73\x10\xd6\xd6\xed\x68\xdb\x9f\xae\x44\xa2\x1a\x95\xd9\xe7\xc4\xa5\x3e\x98\x59\x9c\x3a\x75\x4a\xdf\xfe\x65\xda\x88\xfc\xc9\x9f\xc7\x85\x14\x4d\xdc\x3c\x2e\xc6\x8d\x47\x4e\x5a\x1e\xdc\x06\xe9\x50\xf2\xea\xca\x9b\x2c\xa2\xd5\x6a\xc9\x9f\xfe\xf4\xa7\xe2\x89\x27\x9e\x30\xe6\xe7\x94\x5c\x1d\xe8\x03\xf0\x99\xe0\x2f\x6d\x2b\xfd\x42\x7a\x14\x4d\x9d\xea\x3e\x59\xea\xf0\xb8\x41\x4d\x82\xb1\xec\x4c\x50\x98\xcc\x21\x2f\x32\xc4\x05\x66\xb1\xb2\x68\x80\x2a\xc2\x1a\x3b\x43\x5c\x52\x6d\x7d\x3a\x59\x94\x8e\x43\x50\x74\x63\x47\xe9\xb5\xf9\xdd\xe5\x1f\xc7\x01\xcd\x32\xb3\x26\x1a\x4d\xb5\x2b\x14\x11\x91\x5c\x58\x58\x30\xfd\x2b\x80\x61\x11\xdc\x84\x22\x1a\x00\x20\x9e\x7b\xee\x39\x93\xfe\x87\x7f\xf8\x87\x78\xe1\x85\x17\xe4\xd7\xbf\xfe\x75\xf1\xec\xb3\xcf\x9a\x5f\xfb\x5b\x00\xe8\x74\x3a\x85\x44\xc9\xf7\x7d\x73\x0e\x85\x94\x49\x77\x35\xf4\xa6\x08\x64\xae\x39\x4d\x01\x91\x3e\x66\x39\x91\x14\x9f\x53\xc2\x92\x75\x8f\xa9\x9f\x83\x58\x8c\x7b\x92\xaa\x3d\x21\x0d\xc7\x01\x98\x43\x8e\x42\xe1\x7b\x30\xdc\xf5\x26\x04\xc3\xef\x2b\xdf\xde\x41\xd1\x1c\x25\xd9\xf5\xe7\x11\xad\xec\x42\xe2\xc7\x54\xab\x44\x62\x4c\xd9\x89\xe8\xab\x15\xb0\x65\xcb\x16\xf8\xbe\x8f\x28\x8a\x0c\xec\x5c\x58\xe6\xb1\xea\x6e\x30\x7a\x0e\xa4\x54\x27\x02\x10\x36\x2a\xd1\xf5\x48\x70\xcb\x20\x65\x5f\xb3\x35\x45\x64\x83\x64\x29\xc4\xd9\x6c\x7b\xe8\xee\x27\xdc\x86\x26\x34\x8c\x6a\xe8\x6d\x19\xe9\x78\xe3\x40\x56\x5c\xf9\x83\x3f\xf8\x83\x81\xac\xad\xdd\xee\x01\xf1\x79\x48\x94\xc7\x39\xe4\xc9\x79\x76\xde\xa2\xf4\x3c\x80\xdb\x7f\x83\xb8\x1f\xf3\x7e\xe5\xca\x15\xcc\xcf\xcf\xeb\xb3\x2b\x21\x92\x95\xbb\x09\x60\x89\x88\xe6\x21\x68\x6e\x65\xab\xff\xcb\x8b\xf7\x56\xbe\xd7\x1e\x15\x17\xcc\x6e\x0a\x34\xf7\xec\x18\x80\x19\x71\x46\xeb\x34\x28\x55\x6c\x1b\x76\x9a\x60\xaf\x90\x59\xa1\x1a\x29\xc1\x50\x4a\xd9\x28\x10\x8d\xab\x7b\xcb\x2f\x5e\xdd\x5b\xfe\x87\x38\xa0\x0b\x48\x8c\xac\x16\x94\x12\xb3\xa5\xda\x2d\x17\x16\x16\x60\xb9\xe4\xcb\x1b\xbf\x3c\xae\xad\x88\xc8\x1b\x78\xbd\xf0\xc2\x0b\x00\x60\x88\xc5\xb3\xcf\x3e\x9b\xf3\x49\xae\xae\x0a\x00\x70\xef\xbd\xf7\x0a\xed\xec\x57\xe1\xb9\x0f\xc0\xf7\x12\x33\x72\xd5\x65\x7b\xd2\x66\x54\x0a\x1a\x9a\xfd\x35\xea\xc5\x51\xeb\x17\xac\x89\x2d\x24\x2a\xbe\x44\xa0\x94\xa0\xa6\x2d\x8a\x68\x18\xef\xe9\x91\xc7\x42\x3b\xc4\xca\xd6\xa7\x9e\x5d\xf7\xed\x4e\x53\x6c\x83\x7c\x67\x99\x06\x01\x82\x12\x55\x80\xbe\xe7\x46\x00\xc0\xc6\x8d\x1b\x11\x45\x51\x9e\x62\xd4\xc0\x30\x6f\xe2\xe8\xdf\xdc\xc1\xd5\x87\xaf\x00\x44\xab\x95\x78\xa9\xe3\xcb\x86\xea\x70\xda\x21\x8b\xc9\xb0\x1b\xcf\xe6\x9f\x5e\x03\xad\x3e\x2a\xe9\x26\xfd\x8e\x10\x48\x1a\xdb\xd8\x2c\x6d\x57\x9e\xb1\x7d\x52\x17\xef\x06\x41\x60\xb7\xb7\x88\x80\xdc\x2c\x3e\xaf\x7f\x79\xc4\xc1\xae\xc7\x46\xe6\xa2\xbc\x79\x04\xc4\x8e\x73\xf5\x23\x76\xdd\x7d\xec\x73\x1c\xc7\xf2\xc5\x17\x5f\xc4\xb5\x6b\xd7\x80\x64\x45\x0a\x15\xeb\xdf\x00\xb0\xc8\xcc\xf3\x20\x9a\x5b\xdf\xe0\xbd\x75\xfe\xfe\xa1\x17\x96\x76\x94\x5e\x8f\x4b\xe8\x64\xd7\xa7\x6c\xb0\xb7\xcf\xa1\x1f\x73\x73\xb3\xc9\xa6\xb7\xd5\xd9\x26\x22\x82\xe4\xfa\xb8\x7f\xee\xe2\x7d\x95\x17\xae\xef\x2c\xbd\x2c\x3d\x9a\x05\x30\x8f\x54\x31\xd9\x84\xa5\x10\x3d\x71\xe2\x84\x46\x48\x37\x14\x89\x79\x79\x21\x8f\xe3\xb3\xd3\x8a\x44\x4b\x37\xbd\xef\x5d\x1b\x5d\x31\x33\x98\x20\x7a\x1e\x47\x46\x0b\xa4\xba\xcd\x86\x62\xa4\x13\x31\x65\x3a\xac\xa9\xcd\x16\xbe\xe7\x18\xde\x45\x1e\x77\x7a\x1e\x6b\x2e\x27\xd3\x37\x8b\x13\x17\x8d\x4a\xb4\x2a\x89\x43\x62\xb5\x05\xcb\x6e\x7d\x7a\x4f\xcb\x52\xd6\x32\xb2\x94\x46\xb5\x92\xed\x79\x08\x42\xa3\x12\xcd\x2d\x55\xa3\x95\xbe\xc6\x01\x18\x1a\x1a\x1a\x24\xaa\x0b\x17\xd0\x79\xab\xa4\xf4\x7d\x5f\x48\x29\x35\xd1\x30\x5b\x84\xa1\x27\x5b\xeb\xe5\x78\x11\x39\xa1\x50\xb2\x2a\x48\xa0\x9c\x74\x62\xf2\x27\xd7\x83\x3d\x82\x51\x81\xa5\x7d\x2e\x97\xcb\x76\xfb\x74\xb0\x89\x48\x1e\x31\x44\x41\x5e\x3b\x4f\x5e\x19\x83\xf2\xb9\x04\x20\x8f\x90\xc9\x01\xf1\xb7\xd4\x76\x29\xa5\xfc\xfb\xbf\xff\x7b\x29\xa5\xd4\xbb\x2c\xfa\x16\xaf\x06\x25\xe6\xd3\xf3\x20\x9a\xeb\x55\xc4\xa9\xcb\x77\x95\xff\xee\xe2\xfe\xca\x5f\x35\xc7\xbd\xb3\xb1\x4f\x61\x3f\xca\x02\x16\x23\xed\xbc\xa3\x0f\xd9\xb4\x7a\x4a\x23\x73\x62\x63\x43\xb2\x33\x4c\x0b\x57\xf7\x04\x3f\xb9\x70\x5f\xe5\x85\xe6\xb8\xf7\x16\x04\x5d\x06\x61\x0e\xc9\xae\xc6\x12\x2c\x2b\x51\x66\x96\xcf\x3c\xf3\x8c\xd4\x87\xd9\x54\x28\x82\x5b\x1e\xac\x8a\xe4\x6e\xe4\xc4\xbb\x63\x63\x87\x3c\x98\xcb\xe3\xc7\x8f\xdb\x0e\x7c\xcc\x22\xd8\x2a\xc5\x0d\x06\xa4\xd1\xf5\xe8\xc5\x8d\xb2\x0b\xbc\xf5\xa1\xf5\x0c\xb3\x2d\x6b\x27\xe9\x6a\x5a\x25\xb9\x22\xc9\x5c\x9a\xe4\xb6\x4f\xb7\x47\x36\x83\x78\xa5\xe7\x71\x2b\x21\xe0\x9a\x8f\x4c\xeb\x23\x8b\x3b\x54\xd5\xa6\xc4\xde\x21\x58\xe9\x69\xa5\x84\xaa\x5c\x1b\x09\xcf\x35\xcb\x71\x03\xf9\x30\xb7\xdb\xd4\x37\x56\x79\x8e\x7c\xfa\xe4\x7b\x25\xeb\x98\x38\x4d\x3c\x22\x8f\x5b\xab\x95\x78\x61\xdb\x2a\x90\xca\x5a\xc8\xe0\xa5\xed\x00\xdd\x51\x69\xa4\x97\xe4\xa4\x51\x26\xaf\x3e\xf1\x39\xb9\x5e\xda\x1d\x44\xa2\xd6\x2a\x99\xfb\x39\x6f\x49\xb1\x98\xd3\xe1\xa2\xfe\x15\xa5\xb9\x61\x50\x7a\x51\xdd\xb7\x12\x8a\x74\x2b\x7d\xe5\xbc\xfa\xea\xab\x78\xf8\xe1\x87\xa5\x92\xc7\x43\x67\x9b\x3c\x02\x21\x64\x8f\x3a\x8d\x4d\x7e\xb3\x35\xe6\xcd\x8e\x2c\xc6\x7b\x37\xcc\xf5\xf6\x57\x1b\xf1\xb4\xd7\x43\x05\xd2\xbe\xd4\xc9\x16\x8b\x53\x02\x92\xda\x0e\xa9\x15\x4c\x9d\x94\x65\x00\xd2\x43\xd8\x1d\x16\x8b\xab\x9b\xfd\x77\x57\xb7\xf8\x27\x3b\x55\x71\x09\x82\xf4\xd6\xe7\x92\xfa\xd3\x3b\x1b\x21\x33\x47\x52\x4a\xf9\xad\x6f\x7d\x2b\x4f\xff\x33\xa8\xdf\x45\x22\x9c\x0d\x17\x3b\x1d\x4e\xfa\xbf\xa8\xbc\x7b\xef\xbd\xd7\x70\x53\xd6\x44\x96\x0b\xb5\xf0\x52\xe4\x71\x2b\x88\xa8\x66\xc9\x7e\x0a\x47\x2d\xe4\xb5\xf4\x0b\xac\xd2\x92\x09\x6c\xe9\x44\x54\x5e\x22\x40\x82\xe5\xe9\x4d\xad\xc3\x91\x60\xc3\x8d\x39\xc7\x3a\x8c\x2e\xf1\xc6\x70\x6f\x71\x65\x28\x9a\x1d\x4a\xec\x3e\x8c\xe8\xd3\xbf\x00\x3b\x11\x79\x6e\x28\x2c\xb1\x26\x12\xb2\x75\xb5\x1e\x9e\x8d\x04\xdb\x8e\x8c\x24\x00\x9c\x3a\x75\x0a\xca\xd9\x50\x21\x7c\x6d\xcb\x51\x5d\xbb\x44\xff\x5c\x96\x47\x8f\x1e\xe5\x07\x1e\x78\x40\xe7\xf5\x01\x0c\x31\x61\x68\xac\xe3\x6f\xdf\xb1\x52\xbe\x57\x30\x89\xac\x25\x68\x3a\xf9\x75\x31\xa9\xf2\x33\x1d\x00\xb2\x6a\x21\xcd\x67\x51\x0a\x7c\x8f\x49\x9c\x9f\x68\xbf\xde\x0a\xe2\xeb\xac\xae\xea\x03\x20\xef\xb9\xe7\x1e\x1c\x3f\x7e\xdc\x1e\x16\x76\xfe\x74\x7f\x6c\x89\x28\xaf\x7f\x3a\xde\x1e\x0e\x69\xe5\x65\x2b\x7d\x90\x04\xe0\xe6\xa5\x82\x34\xe9\xa4\xeb\x38\xb7\x0f\xe4\x96\xb1\xb4\xb4\x44\xeb\xeb\xeb\xd8\xb6\x6d\x9b\x3e\x04\x26\x91\xbd\x62\xb0\x0b\xb5\xfd\x28\x3d\x5a\xef\x8c\x88\x85\xc6\xc6\xd2\x85\xf5\x71\x6f\x36\x2a\x53\x53\x6d\x69\x09\x92\xfa\x54\x74\x82\x85\xe6\x3c\x65\x86\x0f\x26\xb0\xa0\x48\x96\xd0\xe9\x0e\x7b\xd7\x1b\x1b\xbd\x33\xd7\x67\x82\xd7\x17\x76\x05\xaf\x35\x36\xfa\x6f\x45\x65\x31\x0b\xa2\x79\x24\xa2\xc9\x75\xa4\x46\x56\x86\xd3\x88\xe3\x58\xbe\xfe\xfa\xeb\x58\x5c\x5c\xb4\xfb\x6e\xc3\x3b\x6f\xec\x74\x3a\x90\x0f\x17\xf7\x1b\x1b\x86\x36\xec\xf3\xde\x19\xe9\x64\x30\x79\x86\x87\x87\x31\x33\x33\x03\xeb\xf8\x7a\x09\x84\xe1\x98\x30\xbc\x73\xb9\xb2\x7f\xb8\xe7\x4d\x26\x08\x6a\x8d\x46\x06\xab\xb2\x1c\x9b\x99\xdb\x36\x51\x31\x34\x84\xb1\x5e\x8e\xaf\xbd\x76\xdb\xea\x5f\x85\x3e\x5f\x03\x41\xeb\x81\xb4\xd3\x1f\x56\xba\x06\x9f\x88\x2a\xb1\xc0\xd0\x70\xe8\x4d\x4e\x35\xca\x77\x7b\xac\x0e\xa5\x16\xb2\xf3\x76\xfb\xb2\x99\xd2\xa3\x03\x49\x7b\x6e\x0c\xf7\xce\xbf\xb5\x7d\xed\x87\x9d\x40\x5e\x51\xba\x28\x63\x51\x7b\xf5\xea\x55\x5c\xba\x74\x49\xc3\xcb\x85\x3f\x80\xe4\x90\x5b\x91\x3e\xa3\x50\xcf\x81\x64\x85\x0b\x01\x84\x4b\xd5\xde\x95\x48\x70\x27\xb9\xdf\x93\x32\x28\xa1\x59\x3e\x5b\x55\x6a\xbf\xa7\x9d\x44\x3a\xbc\x8a\x6b\xd1\xfd\x2e\x47\x62\xd3\x96\x46\x30\xb3\x50\xeb\xbd\x4b\x84\x00\x40\x47\x53\xe7\x6a\xb5\xaa\x6f\xb7\x02\xf2\x57\x6b\x97\x35\xce\xcb\x97\xd7\xe7\x9b\xad\x84\x45\xdf\x15\xb1\x7b\x37\x2b\xc7\x55\xdc\xe5\x95\x2b\x00\xc8\xd3\xa7\x4f\x0b\x00\xf8\xd8\xc7\x3e\xa6\x6f\x14\xb3\x57\x70\x6d\xb3\xa0\x75\x20\x2b\x71\x80\x95\xb5\x71\xef\x6a\x73\x83\x77\xca\xef\xf1\x86\x52\x87\xc7\x87\x1a\xf1\xa6\xa0\xcd\x63\x41\x47\x8e\x79\x21\x57\x85\x84\x4f\x92\x7d\x26\x92\x2c\x10\xc6\x3e\x85\xbd\x0a\x35\xc2\x21\xb1\xd2\x19\x11\x0b\xdd\x21\xb1\x14\x95\xe9\x06\x0b\x6a\x20\x39\xad\xdc\xd0\x7f\x4a\x5c\x6a\xc2\xb2\x99\x60\x66\x19\xc7\xb1\xfc\xe5\x2f\x7f\x89\xf7\xdf\x7f\xff\x66\xfd\xee\xeb\xe3\x2d\xe4\xb1\x43\x91\x58\x92\x2b\x9b\xe7\xb5\xe3\xdc\xb9\x73\xf2\xe1\x87\x1f\xd6\xdb\xbb\x9a\x18\x77\x5a\x41\xbc\x74\x66\xb2\xf5\xab\xc9\x66\x69\xaf\x40\xff\x96\xaf\x4d\xff\x0d\x7d\x70\x15\x1f\x36\xd7\xa1\x1e\x67\x37\x74\x8e\x35\xcb\xf1\x12\x28\x35\x8a\x63\xeb\x8e\x64\xf5\x6e\x2e\x96\x7e\x7f\xd3\xfa\x91\xdb\x6e\x0c\x3d\xb8\x79\xad\xb4\xd7\xdd\xd6\xcd\x0b\xce\x06\x4b\x76\xce\x11\x21\x12\x1c\x9e\xda\xd8\xfa\xd5\x6a\x25\x9a\x87\x65\x18\xa7\xfa\x8e\x66\x53\x9f\x29\x2c\x1c\x1f\xe1\xb2\xfe\x83\xb4\xdd\xd2\xd1\x71\x44\x44\x14\x2e\x55\x7b\x0b\x9d\x92\x5c\x2a\xc7\xa2\xc6\xaa\xd5\x8a\x61\x48\x88\xb2\xc5\xd2\xa5\x8a\x65\xd5\x6d\xb3\xc2\x59\xd4\x3c\x23\xea\x30\x04\x10\x6c\x59\x2b\xff\xc6\xbb\xb2\xf5\x4a\x4f\x48\xa3\xfd\x0d\x82\x40\xb6\x5a\xad\x3c\x64\xcb\x93\xa3\x5d\x36\x19\x28\x26\x02\x76\xb0\xbf\xcd\x13\x7b\xf4\xf3\x20\x31\x28\xaf\x2d\x45\x72\x7a\x51\x5a\x46\xc6\x3c\x7d\xfa\x34\x4e\x9f\x3e\x8d\xcf\x7c\xe6\x33\x62\xdb\xb6\x6d\x99\xdb\xd4\x91\x4c\xdc\x16\x12\xd3\xec\x06\x12\x25\x65\x8d\x09\xd5\xa8\x2c\x6a\xbd\x80\x2b\xad\xba\xa8\x10\x10\x10\xa3\x42\x31\x4a\xc4\xec\xeb\x7b\x6c\x58\x50\x24\x05\xba\x2c\x10\x22\xf1\xfb\xa9\x6f\x5c\x6f\x11\x25\xc6\x56\x16\xa1\x68\x52\x72\x73\x7b\xe6\x36\xf4\x38\x8e\xf1\xe7\x7f\xfe\xe7\x45\xfd\xc8\xeb\x53\x1e\xbc\x6f\x26\x73\x0f\x82\xdb\xad\x3c\x67\xc2\xb7\xbf\xfd\x6d\x79\xe8\xd0\x21\xa1\xfb\x00\x20\x94\x84\xe6\x99\x8d\xed\xb7\xf6\x5e\xaf\x3e\x34\xb9\x5e\xda\x4d\x70\x89\x40\x2a\x36\x90\x83\xbf\x94\x61\x86\x00\xbd\x8b\xb8\x56\x8e\x17\x8e\x4f\x35\x5f\x65\x65\x82\x6f\xd5\x67\x16\x01\x4e\xbd\xbf\x75\x88\xa8\xd5\xa8\x44\x73\x27\xa6\xd6\x5e\x7a\xe8\xdc\xd8\x96\xa1\x9e\xa8\x67\xb5\x1a\xd6\x84\xd1\xce\x94\x48\x71\x18\xd6\x82\x9d\xe6\x66\x5c\x1e\xed\x9e\x3c\xbd\xa9\x75\x44\x0a\x68\x7f\x24\x7a\xfc\xa4\x32\x3b\x77\xe1\x65\xbf\x27\x7a\x4f\x67\x00\x8a\x82\xbc\xeb\xae\xbb\x84\xea\x14\x2c\xe2\x11\x76\x4a\x72\x65\xa5\x12\xcd\x8f\x76\xfc\x69\x23\xd7\xb1\x25\xa2\x58\xad\xb6\xaf\x23\xd4\xe2\x8a\xad\xd7\xe8\xeb\x25\x25\x94\x72\xf3\x5a\x70\xf7\x50\x4f\x8c\x45\x15\x5e\x50\xfb\xdb\xf6\x64\x1d\x44\x18\xf2\x56\xaa\x3c\x82\x51\xa4\xeb\x28\x92\xab\xf3\xd2\x6e\xa5\x1e\x38\x79\xdc\xf7\x5b\xe1\x72\x4c\xde\x9f\xff\xfc\xe7\xe8\x76\xbb\xf2\xe9\xa7\x9f\x46\xa9\x54\x32\xc8\xa7\x11\x1f\x8a\xf3\x50\x67\x1e\xaa\x00\x2a\xea\xb9\x02\x20\x60\x82\xcf\x02\x3e\x33\xec\x2b\x10\x6d\xf1\x47\x5b\x67\xea\x9d\x9c\x0e\x25\xe7\x45\x6c\x8b\xcc\x90\x52\xd7\x7b\xda\x19\xae\xdb\x5f\xb7\x1f\xb7\xc2\xd1\xdd\x8c\x53\x28\x22\x44\xb7\x52\x6e\x5f\x9e\x87\x1f\x7e\x58\xe8\x3e\x40\x5b\xea\x12\x9a\xab\x43\xd1\xdc\x1b\xd3\x8d\x1f\x7d\xf2\xcc\xf8\x9f\x94\x23\xd4\x8c\xfe\xe2\xa6\x21\xf5\xe1\x0a\x24\xe8\xdd\xf3\xb8\x73\x62\xaa\xf9\xd2\xf5\x5a\x6f\x96\xc1\x0d\x02\x69\x53\xf8\xcc\x7d\x3a\xb0\xb8\x1e\x00\x4d\x10\x35\x4e\x6f\x6c\x1d\xa9\x77\xfc\x2d\xf7\x5f\x1e\x79\x22\x88\xa9\x42\x2e\x5b\xa1\xeb\x34\x92\x91\x4d\x5a\xd8\xcc\xb9\x1b\xd5\x68\xf6\x57\x33\xab\xff\xb8\x56\x8e\x2f\x23\x3d\x74\x18\xea\x36\x5c\xb8\x70\x41\x1b\xd9\xd9\x73\x4c\xb7\xc9\xc0\xce\x43\x56\x8f\x6e\xcb\x9e\x19\x0a\xbd\xb8\xb8\x28\xf7\xed\xdb\x47\xea\xc4\xa6\x00\x50\x22\xa2\x0a\x03\xc3\x13\xad\xd2\xf4\xd6\x46\xf0\x1b\xa9\x72\x54\x53\x40\xad\xd7\x40\x2a\x13\x1a\x85\x69\xca\x75\x24\x9a\xfa\x94\x88\xa7\x44\x24\x29\xcf\x67\xaa\xcc\x8d\x76\x0f\x2f\x0f\xf5\xe6\x88\xa8\xcd\xcc\x3d\x22\x8a\xef\xbf\xff\x7e\x28\x8f\x60\x76\x9b\x6d\xb9\xcc\xee\x83\xab\xa7\x90\x56\x7e\xe1\xc4\xd9\xbf\x4e\xeb\x73\xf5\x14\x76\xfd\xc8\xc9\x67\xcb\x87\x28\xf8\x36\xaf\x7d\x6e\xd9\x19\xd9\x3d\x8e\x63\x06\x80\x63\xc7\x8e\xf1\xfe\xfd\xfb\xb5\x85\xa9\x54\x4e\x62\x7a\x0a\x4e\x3d\x24\x2b\x5b\x5b\x71\x07\xeb\x48\xb9\x11\xfd\xb7\xac\xe4\xdc\x65\x24\xba\x8a\x65\x66\x5e\x22\xa2\x65\x22\x5a\x56\xf1\xab\x48\x44\x93\x35\x4a\x4e\x98\x76\x00\x74\xd5\x02\x12\x4b\x29\xf9\xc8\x91\x23\x78\xf5\xd5\x57\x65\xa3\xd1\xb0\xe1\xe5\xb6\xdb\xd6\x3d\xb8\xba\x1e\x38\xf9\x8a\x74\x45\xae\x6e\x43\x3f\xdb\x63\xa0\xcb\xc9\xd3\x6f\x08\xe7\x7b\x31\x3b\x3b\x2b\xf7\xed\xdb\x47\x9e\xe7\x69\xa5\x22\x01\xf0\x19\x5c\x5a\xa9\x46\x6d\x00\xb4\x79\xad\x7c\x9b\xc7\xf0\xed\x49\x6e\x5c\x27\x1a\x0e\x3a\xe5\x4a\x12\x51\x3d\x69\x6a\x24\x38\x3c\x39\xb5\xfe\xf2\xe1\x1d\x6b\x3f\x8e\x04\x5f\x05\x70\x9d\x88\x56\x91\x1e\xfc\x8b\x9f\x79\xe6\x19\x79\xff\xfd\xf7\x93\x10\x89\x77\x00\x45\xcc\x09\x00\xc5\xc4\xde\xf5\x91\xde\x12\x01\x62\x72\xbd\x94\x78\x7c\x57\xdd\x4b\xdd\x39\xa6\xee\x10\xfa\x02\x01\x8b\xc3\xbd\xd9\x57\xf6\xac\xfc\xf5\xd5\x7a\x78\x92\xc1\xd7\x90\x9c\x20\x6e\x28\xdc\xe8\x49\x29\xe5\x2b\xaf\xbc\x82\x56\xab\xe5\xce\x29\x97\x43\x64\xed\x01\x4c\x4f\x20\x7b\xda\xb2\x13\x4f\xc7\x8f\x1f\x97\x07\x0e\x1c\x10\x94\x04\x1f\x40\x99\x09\xc3\x43\x91\x37\xb9\xeb\xc6\xd0\x03\x02\xf0\x32\x3c\x9b\xd6\x40\xf7\x71\x11\x1a\xd0\x48\xb7\xf9\x54\xad\x66\xab\xcb\x9a\xa6\xc4\x08\xba\xbe\xbc\x32\x3b\xde\x7d\x1b\x84\xb6\x9a\x0c\x31\x00\x79\xed\xda\x35\x5a\x5b\x5b\x23\xab\x16\x97\x10\xda\x13\xde\x46\xb8\x3c\x65\x9c\x4b\x3c\x74\xc8\x23\x0c\x79\x5c\x8e\x5b\xa6\x5d\xa7\xb0\xde\x75\xf9\x76\x1e\x3b\x5f\xde\xf7\x2e\x71\xb1\x89\x1e\x1f\x3b\x76\x8c\xe3\x38\xa6\xa9\xa9\x29\xed\x9a\x8e\x91\x72\x1f\x3d\x24\x6e\x09\x3a\xea\x6f\x1d\x4a\xd4\x50\x84\xc0\xd6\x5b\xac\x21\xe1\x52\x56\xd5\xf3\x3a\x80\xf5\x44\x54\xa1\xb6\x5a\x9d\x7a\x48\x56\xc4\x98\x88\x78\x7e\x7e\x1e\xdf\xfb\xde\xf7\xe4\xfc\xfc\x7c\x1e\x3c\x6d\x18\xd9\x70\x73\x27\x75\x11\x11\x70\x89\x85\x0d\x47\x3b\xce\xe5\x22\x5c\x82\x5c\x54\x67\x06\xbf\x1f\x78\xe0\x01\xbb\x0e\x22\x22\x62\x82\x98\xaf\x87\xcb\x3d\x8f\xbb\x9b\x9a\xc1\x8e\x92\xa4\xb2\x11\x03\x6c\x7b\x73\x6d\xec\x45\xf6\x8e\x06\xa1\xe3\xcb\xe6\xb1\x6d\xcd\x97\xdf\x9c\x6e\xfc\xa4\xe7\xf3\x65\x65\x1c\xb7\x8c\x84\x80\x87\x00\xe2\xb5\xb5\x35\x3e\x79\xf2\x24\x1f\x3d\x7a\x94\x0f\x1c\x38\x40\x0e\x07\x42\x44\xc4\x11\x31\xe6\x47\xc3\x85\xd5\xa1\x78\x65\xbc\x5d\x9a\xac\xf4\x44\x4d\x6f\xc8\x9a\x79\xd7\xa7\x14\x4d\x88\xd6\xf9\xf1\xce\xdb\x2f\xed\x59\xfe\xc1\xc2\x48\xef\x3d\x50\xa2\xd0\x26\xa2\x55\x66\x5e\xd7\x1c\xe3\x37\xbf\xf9\xcd\xb8\xd5\x6a\xb9\x38\xeb\x8e\x1d\x01\x89\xeb\xc0\xbc\x55\x59\x23\x65\x1f\x65\x57\x3b\x2b\x00\xe0\x31\x73\x00\xa0\x1a\x0b\x54\xee\x58\xa8\x7e\x24\x90\x62\xd8\xea\x6b\x5a\x5d\x1e\x15\xd4\x27\xa4\x6c\x14\xb3\x5e\x33\x81\x40\xbe\x24\x9c\x9f\xe8\xfc\x32\xf4\x79\x15\xa9\x32\x27\x7e\xe5\x95\x57\xf4\x04\xb4\x61\x65\x77\xba\x08\xc9\xb2\x35\xf4\xaf\x4a\x3a\xaf\xcb\x29\xb8\x44\xc3\xcd\x93\x97\xd7\x5d\x69\x5d\xee\x25\xef\x3b\x97\x2b\x82\x53\x1e\xdc\xef\xe7\xe7\xe7\xf9\xe8\xd1\xa3\xc4\xcc\x98\x9c\x9c\x64\xdf\xf7\x25\x33\x33\x25\x6e\x17\xb5\x0f\x8a\x9e\xe2\x46\x42\x24\xab\x5d\x97\x99\xdb\x48\xb4\xea\x6d\xc5\xd1\x69\xbd\x86\x76\xb0\x1b\x22\x21\x3c\x5a\x0e\x8e\x99\x99\xe7\xe6\xe6\xf0\xbd\xef\x7d\x4f\x9e\x3e\x7d\x5a\xcf\x1e\x9b\x80\xdb\xe3\xe2\x12\x45\x9b\xab\xd0\xf1\x76\x5f\xf3\x88\x7d\x1e\x5c\xf3\xb8\x4a\x7b\x1c\x5d\x18\x16\x2d\x8e\x12\x00\xed\xde\xbd\x9b\x66\x66\x66\x00\x24\xfe\x38\xed\xfa\x98\x20\xe7\x47\xc2\x1b\x57\xc6\xba\x97\x86\x22\x51\x19\xee\x7a\x75\x8f\x51\xea\x57\xf4\xb3\xa9\xa5\xe7\x71\x38\x37\xda\x3d\xf3\xcf\xb7\xaf\xbe\xf8\xce\xd6\xf5\x5f\xc4\x82\x2f\x83\xe8\x1a\x92\x83\x7f\x6b\x0a\xde\x3d\x66\x96\xef\xbc\xf3\x0e\xe6\xe6\xe6\x18\x80\x18\x1e\x1e\xc6\xe4\xe4\x24\xab\x2d\x62\x56\xaa\x01\x06\x20\x59\x50\x7c\xa3\xda\x5b\x3e\xbb\xb1\xf5\x41\xb3\x1c\xaf\x94\x63\x51\x29\xc5\xa2\x42\x0c\xa1\xa7\x4f\xb2\x62\x20\x6a\x07\xb2\x79\x69\xac\x7b\xe6\x97\xbb\x1a\x3f\x3d\x3c\xdd\xf8\x59\x2b\x90\x17\x18\x3c\x0f\x60\x81\x88\x96\x15\xd1\xe8\x30\x73\x14\xc7\xb1\xbc\x7a\xf5\x2a\x29\xc5\xa8\x4b\xe0\xfb\x38\x39\xdb\x8e\x43\x47\xe6\x29\x03\xed\x20\x95\xb5\x9b\x5e\xcd\x3a\xcd\x72\xbc\x78\x63\xb8\x37\x3b\xbc\xe2\x6d\xea\xcb\x4d\x48\x0f\x4c\x59\x23\x97\x9a\x89\xe6\x07\xc5\x79\x25\x34\x07\x84\x7a\xc7\xbf\x6d\xd3\x5a\x70\xdb\x5a\xa5\x7d\x59\x1d\xb3\x17\x44\x24\xfe\xf4\x4f\xff\x14\xdf\xfe\xf6\xb7\xf3\x2c\x12\xa5\xf3\xaa\xc4\x76\xe9\x00\x00\x20\x00\x49\x44\x41\x54\x5b\xa4\xec\x41\x4e\x9c\x2b\x2f\xdf\x8a\x52\xb5\xa8\xbc\x41\x6d\xba\x99\x22\xd4\x8d\xcb\xfb\xed\x53\x00\x1e\x3d\x7a\x54\x1c\x3d\x7a\x54\x6e\xdc\xb8\x51\xdc\x77\xdf\x7d\x72\xd7\xae\x5d\xa6\x2c\xad\xcb\xb0\x26\x86\xfb\x6e\x6c\x19\x72\x6c\x1b\x30\x3b\x3b\x8b\x1f\xff\xf8\xc7\xb2\x54\x2a\x09\xe7\x42\x9f\xa2\x76\xb9\x6d\x84\x93\x06\xf4\xe3\x9d\x1b\x8a\xe0\x93\xc7\x46\x0f\x1a\xaf\xbc\x7a\x4d\x38\x77\xee\x1c\xb6\x6d\xdb\x86\x3b\xee\xb8\xc3\xe8\x18\x38\x7b\x8f\x8a\xbc\x36\x12\x86\x3f\xbe\x63\xe9\xda\xc6\x66\x69\xe7\xcc\xf2\xd0\x9d\x53\xab\xc1\xf4\x70\xe8\xd5\xcb\x91\xa8\x30\x80\x58\x70\xd4\x2c\xc7\x2b\x0b\xb5\x70\xee\xc2\x78\xe7\xf4\xdc\x68\xf7\x4c\xe8\xf1\x02\x08\x8b\x00\x2d\x28\x11\x30\xe3\xd0\xe8\xf2\xe5\xcb\x38\x7c\xf8\xb0\xe9\xc7\x1b\x6f\xbc\x21\x36\x6d\xda\x84\x89\x89\x09\x3d\xc7\x5a\x96\x0e\x2a\x62\x70\xa7\x55\x92\xad\x63\xdb\x9a\xd7\xdf\xd9\xb2\xfe\xd6\x58\xdb\xdf\xb8\xa9\x19\x4c\xd5\x42\xaf\x2e\x24\xfc\x4e\x49\xb6\x9a\x41\xdc\xb8\x31\xdc\x9b\x5f\xad\x44\xd7\x62\x81\x25\x10\x96\x54\xdd\xb6\xbd\x8d\x39\xb1\xac\x94\xd9\x45\xb8\xd7\x37\x96\xee\xe9\xd8\x3c\x80\x66\x06\xb2\xd9\x6c\xa2\x56\xab\x69\xc0\x86\xcc\x1c\xc6\x02\xad\x2b\xa3\xdd\xf7\x77\xac\x94\x1f\x70\x29\xb0\x4d\x00\x0a\x39\x0a\x9d\xd1\xca\xef\x2a\x7f\x4a\x31\xd5\x67\x96\x2b\x07\xcf\x4f\xb4\x0f\x4b\x41\xfa\x60\x50\xe4\x79\x9e\xbc\xef\xbe\xfb\x70\xf8\xf0\x61\xb7\x1f\x79\x84\xc4\x45\xce\x41\x93\x7d\x10\x02\xdb\xe5\x0d\xfa\x05\x8a\x91\xfc\x66\x44\x20\x8f\x68\x17\xb5\xc5\x9d\x38\x00\x20\xae\x5f\xbf\x2e\x7f\xfa\xd3\x9f\x62\x78\x78\x58\xac\xaf\xaf\xcb\x4f\x7c\xe2\x13\x02\x80\x1c\x1f\x1f\xd7\x4e\x6b\x00\xf4\x29\xe6\x32\xe1\xdc\xb9\x73\x90\x52\xe2\xe5\x97\x5f\x96\xba\x1c\x20\xf1\x0c\x87\x7e\x18\xe5\xb5\x7d\xd0\x38\x14\x4d\x76\x37\xaf\x5b\x57\x11\x21\xc9\xab\x77\x10\xbc\x33\xed\x91\x52\xe2\xd5\x57\x5f\x95\xea\x7a\x45\x89\x44\xf1\x6b\xb7\x27\x02\xd0\xe9\xf9\xdc\x98\x1b\x0d\x17\xe7\xeb\xe1\x19\x5f\x52\xad\x14\x8b\xe1\x72\x44\x15\xa6\x44\x2c\x08\x7d\xd9\xea\x09\x5e\x93\x84\x06\x08\x0d\xc0\xf8\x24\x59\xd2\x3b\x52\x8a\x20\x44\x6b\x6b\x6b\xf8\xe1\x0f\x7f\x68\xb7\x5f\x74\xbb\x5d\x1c\x3f\x7e\x1c\xbf\xf5\x5b\xbf\xa5\xe7\x19\x90\x4c\x74\x09\x98\x7b\x5a\x5a\x00\x56\x7a\x3e\x2f\x5e\x1f\xe9\xcd\x5d\xaf\xf5\xde\xa3\xe4\x78\x3c\x38\xc9\x17\x82\x8c\x2b\x86\x06\x92\x03\x87\xfa\x18\x80\x56\x74\x87\x00\x64\xce\xbd\xb2\x45\xb0\x32\x70\x75\x77\x55\x8a\x90\xc1\x20\xa3\x94\x49\x56\xeb\xcc\x4a\x87\x81\xd6\xdc\x68\xf7\x4c\x2c\xb8\xe3\xcb\xe4\x60\x90\x56\xd8\x18\xc0\x5b\x2c\x47\xe6\x1e\x90\x3c\xf5\x18\x60\xc9\x6c\xfa\x87\xfc\xa9\x95\xf2\x03\xa3\x1d\xff\xef\x96\x86\x7a\x4b\x4a\xc7\x22\x98\x59\x4c\x4c\x4c\x48\xcf\xf3\xec\xd3\x93\x45\x93\xae\x88\xa8\x64\x80\x52\x10\x8a\x88\xd1\xa0\xf2\x07\x71\x2f\x83\x90\xbe\xa8\x5d\x79\x79\x07\x11\x4b\x01\x40\xaa\xc9\xae\xef\x30\x2d\xec\xff\x86\x0d\x1b\xc4\xf2\xf2\x72\x21\xd7\xb4\xbe\xbe\xee\xb6\xc7\x4e\xbf\x15\x62\x70\x33\xb8\xe7\x72\x02\x4e\x5d\x79\x69\x45\x75\x0f\x82\x4d\x61\xfd\xcf\x3f\xff\xbc\xfc\xca\x57\xbe\x82\xa1\xa1\x21\xdb\x42\xd7\x5c\x4b\x49\x44\x4d\x06\xaf\x48\x41\xd5\x50\x70\xb5\xeb\x45\xc1\x7a\x99\xf4\xe9\x6d\x7d\x0b\x9d\x9e\xb4\x4d\xc7\xd6\x45\x1b\x31\x46\x00\xf0\xdd\xef\x7e\x37\x97\x0b\x3e\x7b\xf6\xac\x38\x7b\xf6\xac\x54\x77\xec\x44\x6a\x1e\xb5\x90\xde\xab\xdb\x44\xa2\xac\xae\x26\x9b\x14\x1c\x20\xb5\xac\x4e\xce\x34\xc1\x10\x98\x96\xf6\x4f\xa2\xda\x15\x2a\x51\x55\x5e\xbc\x78\x11\x3f\xf9\xc9\x4f\xf2\xe6\xbd\x0d\x97\xbe\x36\xba\xca\x51\x20\x2b\x3f\xc2\x8a\x03\x00\x3e\x79\xf2\x24\x1f\x3c\x78\x30\xd1\xd6\x30\x7b\x44\x14\x30\x78\xa8\xe7\x71\xe9\x8e\xeb\xc3\x1f\x29\x47\xa4\xf6\x99\x9d\xbb\x36\x74\x49\x94\x88\x1e\xa6\x54\x8b\x68\xd8\x66\x1d\x89\x0f\x04\x58\x76\x20\x8c\x92\xa4\xea\xea\x50\x7c\x7a\x7e\x24\x3c\x4f\x44\xda\x4a\x32\x1e\x1b\x1b\xe3\x77\xde\x79\x07\x51\x14\xd9\x72\xb6\x2d\xe7\xf6\x29\x7a\xad\x78\xdc\xe4\x1b\x5b\xa1\x26\x72\xe2\xed\x34\x47\x63\x93\x79\xcf\xab\xbb\xa8\xbd\xee\xdf\xa0\x34\x20\xbf\x5e\x2e\xf8\x1e\x45\xe5\x29\x33\xe3\xbc\x7e\xe7\xe9\x58\xec\x34\x5b\x87\x63\xa7\xa1\xa0\xdd\x45\x69\x76\x5d\x6e\x7b\x07\x29\x48\x6d\xdd\x85\xb0\xbe\x21\xf4\xf7\x59\xd7\x9d\x07\x63\x83\x27\x8b\x8b\x8b\xb4\x63\xc7\x0e\x56\xd7\x2e\xea\xab\x04\x22\xa4\x4a\x66\x7b\x87\x6a\x15\xc0\x2a\x33\xeb\x5d\xa8\x1b\x96\x48\xb0\xa2\xd2\x35\xd1\x30\x8a\xfd\x13\x27\x4e\x60\x6e\x6e\x8e\x98\xd9\xee\x7f\x06\x4f\x8f\x1e\x3d\x2a\xef\xbf\xff\x7e\x08\x21\xf4\x9d\x2c\xda\x86\xaa\x87\x84\x6b\x68\x29\x5d\x45\xe2\x7b\x95\x79\x45\xed\x86\xad\x22\xdd\x0d\x5b\x53\x0a\xf1\xb6\x22\x1c\x11\x11\xc9\x0b\x17\x2e\xfc\x7f\xc4\xbd\x6b\x90\x1c\xc7\x75\x2e\xf8\x9d\xac\xea\xc7\xf4\xf4\xf4\xbc\x30\x83\xc1\x00\x83\x37\x41\x90\x00\x41\x10\x00\x45\x52\x12\xaf\x64\x4a\x21\xdb\x94\x64\xf9\x86\x63\xef\x2a\xa4\x30\x69\xaf\x6d\xde\xdd\x88\xfd\xe1\xdd\x1b\x7b\x7f\x6c\xc4\xc6\x8d\x8d\x7b\xf7\xc7\xc6\xc6\xee\xbf\x8d\x8d\x90\x65\x87\xf5\x0a\xcb\xf2\xda\x6b\xaf\xbc\x96\xac\x2b\x5f\x5b\xb6\x44\xbd\x0c\x80\x0f\x50\x20\x41\x12\xc4\x73\x66\x30\x33\x98\x47\x4f\x4f\x4f\x3f\xaa\x32\xf7\x47\x55\x56\x9f\x3a\x9d\x55\xdd\xa0\xb4\xb1\x19\x18\x74\x55\x3e\x4f\x9e\x3c\xf9\x9d\x93\x8f\xca\xc4\xf7\xbe\xf7\x3d\x84\x61\xc8\xe7\xa5\x5c\xed\x2c\x27\xe8\x49\x5e\xc8\x64\x1b\x45\x23\x43\x50\x8f\x1d\x3b\x46\xf1\x98\x59\x11\x91\x87\x64\x6b\xac\x19\xd9\xbb\x5d\x3c\xbc\x67\xa7\x70\xd4\x2e\xcb\x5a\xab\x82\xe4\x44\x28\x77\x49\xb3\x1a\x3b\x46\x81\x5d\x66\x4a\x7f\xbc\x43\x50\x40\x81\x0c\xda\x37\xa6\x5b\x3f\x0d\x3d\xec\xc4\xa8\x19\x12\x91\x6e\xb7\xdb\x88\xef\xfd\xb4\x0c\xb0\xf5\x90\x8d\xa2\xd9\xbb\x75\x5c\x68\x64\x1a\x29\xbc\x36\x8e\x71\x84\xc9\x1a\xf2\xb2\xfa\xcc\x3d\x16\x9f\xd3\x26\xf3\x71\xd1\x6d\x1c\xcf\xbc\x3c\x08\x7f\x99\x9f\x0c\xe7\x8e\xd7\x9b\xcb\x81\xab\xee\xdc\x4f\x86\xb9\x3a\xb6\x75\x52\x10\x79\xd9\xae\x30\x17\xd0\xf3\x7c\x38\x20\x70\xda\x5c\x3c\x90\xed\x2c\xcb\x26\x00\x66\x7b\x7b\x9b\xd6\xd6\xd6\x70\xe8\xd0\x21\xe3\xfb\xbe\xb5\x18\xf9\x1e\x99\x4e\xbc\xca\x64\x57\x9d\xb6\xe3\xb9\x0b\xdb\x51\xb7\xd0\xfb\x6e\xa7\x65\x8c\x69\xc7\x93\xca\x41\xb3\xd9\x34\x7f\xfc\xc7\x7f\xac\xef\xde\xbd\x4b\xe9\xe3\x28\x52\x72\x99\xd0\x7d\xf9\xf2\x65\x7d\xf0\xe0\x41\x1a\x1d\x1d\xd5\x88\x26\x6e\x43\xc4\x2b\x65\x31\x2d\xbb\x94\x6c\xd2\xa3\x1d\x56\x6e\xd3\xae\x86\x81\xed\xb7\x69\xb7\xdb\xfa\xc6\x8d\x1b\xf8\xa7\x7f\xfa\x27\x74\x3a\x1d\x57\x7b\x4a\xf9\xe2\x86\x04\x01\xbd\x53\xce\x9d\xd6\x85\x23\x03\xea\x74\x3a\x38\x72\xe4\x88\xfd\xb4\x9d\x62\xf0\x28\x01\xa8\x78\x9a\x46\x8f\xdc\x1f\x39\xaf\x40\x5e\x0a\xeb\x39\x68\x18\x20\x75\x89\x4a\xe2\xd7\x83\x8b\xe4\x83\x1f\xb2\xc1\xc9\x15\x92\x54\x08\x55\x79\x69\xbc\x73\x79\xab\x1c\xdc\x8b\x99\xd1\x35\xc6\x98\xf1\xf1\x71\x73\xfd\xfa\x75\xc4\x63\x6f\x2e\x08\xbc\xc3\xa7\x1a\x04\x69\x61\xe4\x7e\x40\x7f\x67\x37\xe2\x57\x86\x49\x60\x90\x80\xc5\xc3\x78\x79\x3c\xdc\x95\x8f\xcb\xec\x96\xda\x49\xd6\xd1\xe6\xe5\x02\x14\xa9\x99\x65\xb8\xa4\xc7\xc5\x3f\x09\xa2\x3c\x3e\x4f\x67\x1d\x1f\x4a\xc8\x29\x71\x2e\x5f\x5c\x48\x95\xf0\xe7\x61\xd2\x5a\x93\xd6\xa0\x4b\x29\x70\x9a\xa4\x85\xc3\xc3\x92\xba\x6e\x6f\x6f\xeb\xbb\x77\xef\x92\xe7\x79\x98\x9e\x9e\x36\x88\x2c\x05\x6b\x79\x58\x00\x69\x23\xd6\xfc\x88\x2c\x8a\xdd\xf8\xb9\x15\x87\x75\x11\x69\xf8\x50\x6b\x1d\x7e\xf1\x8b\x5f\xd4\xaf\xbf\xfe\xba\xe4\x93\x54\x42\x32\x0c\x6f\xbe\xf9\xa6\x09\xc3\x90\xc6\xc7\xc7\x4d\xb1\x58\xb4\x74\x5b\xeb\xc3\x5a\x42\xed\x18\xa0\x2c\x5d\x76\x1f\x8f\xdd\x1c\x18\xd6\xeb\x75\xf3\xb5\xaf\x7d\x4d\xbf\xf7\xde\x7b\xc4\x86\xf6\x92\x27\xf6\x5d\xb6\x71\x02\x30\x1e\xd2\x9d\x87\x33\xdf\xd5\x51\x74\xb7\xdb\xa5\x2b\x57\xae\xe8\x0b\x17\x2e\xd8\x0d\x2a\x9e\x31\xa6\x40\xa0\x91\x8e\xaf\xfd\x13\xab\x95\x0f\x14\x43\xaa\xf2\x53\x89\x62\x5c\xe8\x91\x63\xc3\x2c\x78\x50\x1a\xf2\x52\x13\xac\x84\x04\x54\x60\x00\x5f\xd3\xa8\x21\xac\xdd\x98\x6a\x5d\x31\xf1\x9e\x0e\x22\xd2\xc5\x62\x51\xff\xf8\xc7\x3f\x96\x9d\xc9\xd2\x2d\xb5\x28\xff\x95\xc0\x01\xc6\x3c\x29\xa4\x12\x60\xa5\x36\xe3\x79\x66\x59\x28\x2e\xa0\x72\xa5\x73\x69\x73\x5e\xae\xb4\x9a\x20\xd2\x72\xba\xa4\x75\xe2\x12\x56\x59\x26\xef\x98\x59\x1a\x48\x02\x2d\x90\x6d\xe2\x9a\x8c\x30\xa9\xe9\x5c\xc2\xca\xeb\xc7\x87\x30\x9c\x1e\x5e\x4f\x9e\xce\x25\xd3\x59\xf1\xfa\xda\xa3\xd9\x6c\x9a\x9b\x37\x6f\x52\xa3\xd1\xc0\xcc\xcc\x0c\x0a\x85\x82\x5d\x1e\xb5\xdb\xc2\x93\xcd\x76\x88\x3b\x6a\xbc\x8d\xdc\x5e\xe7\x10\x68\xad\xf5\xe6\xe6\xa6\xf9\xea\x57\xbf\x9a\x47\x1b\xaf\xa3\x8b\x8f\x6a\x79\x79\x19\xaf\xbf\xfe\xba\x0e\xc3\x90\xa6\xa6\xa6\x0c\x11\x19\xa5\x94\x06\x60\x62\x3a\x42\x44\x16\x78\x08\x24\x9f\x88\x84\xdd\x6e\xd7\xfc\xe1\x1f\xfe\x61\x78\xf1\xe2\x45\x73\xe5\xca\x15\x09\x9e\x52\x1e\xb2\xe4\x8e\xcb\x01\x79\x70\x37\x1a\x84\x7f\x4a\x03\x2d\x2c\x2c\xa8\xe3\xc7\x8f\xdb\x79\x0e\x45\x44\x05\x10\x4a\x81\x32\xe5\xb9\xed\xd2\xe1\xe9\x66\xe1\x70\xf2\xed\x2b\xf5\x40\x83\x4b\x2a\xf8\x6e\x51\x08\x23\xc4\x82\x09\x21\x9e\x60\xed\x91\x4e\x20\x55\x0a\x54\xe5\xf6\x64\xfb\xc7\xbb\x25\xbd\x81\x1e\xa2\x9b\xe9\xe9\x69\x7e\x90\xb1\x14\x78\xd7\xf8\x96\x0b\xbb\x0b\x24\xa4\x90\x4a\xb3\x1d\x2c\x2c\x65\xea\xb2\x7c\x25\xaa\xbb\xf2\x05\xb2\x05\x98\xd3\x2b\x81\xc8\xd5\x11\x79\x7d\x78\x67\xb7\xfe\x10\xf9\x48\x9a\x78\x99\x1c\x40\x64\x3a\xfb\x2e\xf9\x28\x87\x2b\x12\x24\x24\xf8\xb8\x64\x8e\xc7\xe5\xf5\x91\x65\x4a\x8b\x4b\xd2\x27\x2d\x27\x69\xad\xb9\x78\xe1\xd4\xb8\xf7\xef\xdf\xa7\xd7\x5f\x7f\x5d\xef\xee\xee\xd2\xdf\xfe\xed\xdf\xea\xb3\x67\xcf\xc2\x18\x63\x3b\x6e\x72\xfa\x7f\x9c\x5e\xc7\xce\x5c\xb9\x72\x05\x6f\xbc\xf1\x06\xbe\xff\xfd\xef\xbb\xda\x32\xab\x6c\x97\x5f\x22\x5b\xcb\xcb\xcb\xe6\xb5\xd7\x5e\xa3\xcb\x97\x2f\xeb\x4e\xa7\x43\xdf\xfa\xd6\xb7\xc2\xb3\x67\xcf\x42\x6b\x6d\x8c\x31\xe6\x8b\x5f\xfc\x62\xf8\xf8\xe3\x8f\xc3\x82\xc5\xed\xdb\xb7\x69\x77\x77\x57\xca\x17\x72\xda\x42\xce\x75\xc8\x76\xd2\x4c\xb5\xa7\x08\x76\x31\x3f\x55\xa9\xf8\x83\x20\x45\xf1\xdd\x0f\xc6\x98\x3d\x44\x74\xf8\xd1\xa5\xca\x2f\x3f\xf7\xce\xe4\x4b\xbe\x56\xc5\x1e\x52\x30\xc8\x48\xae\x0b\x43\xca\xd2\xe8\x1d\x99\xcd\xaa\x25\x92\xda\xe7\x90\x4c\xeb\xe2\xc2\xf6\xff\xf6\xf2\x91\xad\x3f\x31\xd1\xd9\x96\xf6\xce\x0e\x1d\x9f\xc8\x3e\x88\x7e\xfe\x2e\xeb\x9e\xc7\x0f\x17\x7f\x86\xcd\x83\xbf\x73\x27\x85\xc5\x45\x5f\x56\xbe\x32\x8f\x3c\x7a\x5c\x74\x64\xd5\xc1\x45\x5f\x1e\x8d\x79\xfc\x1e\x54\xd6\xa0\xfc\xf3\xe2\x0c\x6a\xaf\xac\x30\x17\xed\x59\xb2\x9f\xd7\xde\x38\x77\xee\x9c\x8a\x2f\x8e\x4e\xde\x81\xe8\x4a\xc9\x6e\xb7\x0b\x64\xb7\xbd\x2c\x53\xc6\xcd\x72\x79\xfc\xcd\x6b\xe3\x07\x09\x73\x95\x93\x6a\x13\x79\xe9\x34\x90\x46\x17\x89\xe4\x09\xea\xed\xdf\xbf\x9f\xc6\xc6\xc6\x6c\x97\xb6\x37\xbc\x8d\x74\x7d\xe3\x1f\x5d\x1b\x39\x5b\x0a\xbc\x5a\x6f\xf7\x39\x03\x04\xbe\xcc\xca\xad\x09\x01\x1a\xfc\x60\x13\x4b\x54\xef\xab\x3f\xf8\x23\x5d\x6f\xe4\xbd\xe9\xdd\x1f\x76\x0a\x66\x1b\xd1\x5c\x87\x06\x10\xce\xce\xce\x12\x3b\x7a\x5f\x0e\x27\xa4\x16\x95\x96\x81\xcb\xa2\x90\xa8\x9f\x65\x91\x71\x78\x73\xf1\xd4\x65\x05\xc8\xb4\x72\xd8\x22\xd1\x5e\xd2\x26\x87\x5b\xdc\x02\x71\x69\x30\x9e\x87\x34\xdf\xad\xe3\x34\x64\xa5\xb1\x65\xf3\x34\xae\x61\x0b\x2f\x9b\xbf\xf3\xfc\xb8\x93\xf9\xf3\x36\xe8\xb3\x7c\x45\x7d\xb9\x95\x93\x65\xa9\x64\xd1\xce\x69\x71\x95\xe5\xb2\x9e\x14\x00\x5a\x5a\x5a\xe2\x79\x9b\xa5\xa5\x25\x5a\x5a\x5a\x42\xbc\x6d\x41\x0e\xdf\xac\x9f\x2c\x8b\x00\xe8\xc7\x1e\x7b\x4c\xad\xac\xac\xb8\xea\x25\x79\xe6\xb2\xe4\x5c\x72\xd2\xd7\x6f\x59\xbd\x5d\x56\xa8\x8b\x56\x17\x0e\x80\x03\x87\x6c\x48\x9e\x11\x2f\x98\x00\x98\xb7\xde\x7a\xcb\xc4\x27\x9f\xdb\x4a\xf8\xc6\x98\x72\xd7\x33\x85\xe9\x66\xe1\xc0\x4c\xa3\x70\x84\x4c\x32\xe3\xd9\x67\x35\x08\xc3\xa3\x57\x7d\x00\xbd\x2b\x16\x7a\x7e\xbd\x33\x48\x22\xcf\x62\xa0\x26\x5a\x05\xfd\xee\x62\xad\x73\x3d\x9e\x00\xea\x00\xd0\xd5\x6a\xd5\x5c\xbe\x7c\x59\x0a\x02\xef\xa8\xbc\x24\x39\xbc\x70\x75\x60\x1e\x2f\x4b\xa8\x5d\x71\x39\x4f\x65\x5c\x0e\x38\x3c\x6d\x96\x75\x23\xc3\x91\x91\x9f\xab\xd3\x73\x41\xb3\x8e\x97\xcd\x69\xe1\xbc\xc8\x1a\xce\xc8\xa1\x0f\xe7\x5b\x56\x98\x04\x41\xd9\x11\x5d\x1d\x43\xe6\x0b\x11\xc6\xdf\x39\xbf\x5c\x1d\x4a\xf2\xcb\x3a\xa9\x75\x5d\x72\x23\xcb\x91\x79\x49\xe0\xc9\x8b\x2b\x79\x63\x5e\x78\xe1\x05\xf5\xf8\xe3\x8f\xe3\xec\xd9\xb3\x74\xf8\xf0\x61\x3c\xf1\xc4\x13\x74\xfa\xf4\x69\x3c\xfe\xf8\xe3\x78\xf5\xd5\x57\xf5\x27\x3e\xf1\x09\x15\x0f\xbf\x65\x3d\x78\xfd\xa4\x02\x94\xef\x2e\x5e\x48\x40\xe0\xf1\x5d\xca\x92\xcb\x31\x5c\xab\x2a\x36\x03\x89\xde\xa9\xc6\xd8\xbb\x77\xaf\x3a\x79\xf2\xa4\xb5\x0c\x08\xb1\xd5\xa1\x61\x4a\x0a\x54\x39\xbc\x3e\xf2\xb8\xaf\xa9\x98\x1e\x8e\xd8\x1c\xc4\x31\xfb\x40\xfa\x9e\x4d\xbb\xa2\xe2\xd2\x85\x3d\xc2\x0a\xd5\xb6\x5f\xbb\x3e\xb3\xfb\x83\x8e\x67\x76\x0c\x4c\x17\x80\x56\x4a\x99\xd9\xd9\x59\xbc\xf3\xce\x3b\x2e\x0d\x92\xd5\xb8\x52\x68\xb9\x3f\xc4\xbb\x14\x52\xd7\xbb\xe5\xa1\xec\x6c\xb2\xc3\xba\x68\xe1\x71\x80\x34\x5d\xae\x4e\xea\x12\x0e\x97\x16\x95\xf4\x65\x69\x69\x09\x12\x40\x9a\x6f\xbc\x6e\xbc\x1c\x97\xf5\xc0\x7f\x5d\x80\xea\xea\xa4\x32\x6d\x56\x99\x59\xe5\x0c\xa3\x65\xe1\x88\x9b\x45\xbf\x2d\x9b\x83\xac\xab\xdc\x61\xe2\x02\x00\x3e\xfb\xd9\xcf\xd2\x33\xcf\x3c\x43\x17\x2e\x5c\x20\xdf\xf7\x95\xef\xfb\xe4\xfb\xbe\x07\x44\xc7\x1b\xc4\x7e\x38\x7f\xfe\xbc\x9a\x98\x98\xa0\xf3\xe7\xcf\xe3\xe1\x87\x1f\xa6\x8c\xd5\x18\xee\xf2\xea\x9b\x55\xbf\xbc\x3a\x65\x81\xa9\x91\x93\xa3\xbc\xe2\x1c\xd5\xfa\xcc\xb7\x76\xbb\x4d\x73\x73\x73\x18\x1b\x1b\xa3\x68\x5f\x4a\x74\xdc\x19\x80\x91\x8e\xaf\xbd\x85\xad\xf2\xc9\x6a\xc7\x9b\x01\xd8\x1a\x49\xa2\xf7\x18\x02\xb0\x20\x18\xf4\x76\x95\x4a\xbd\xc4\xac\x94\x28\x3e\xa1\x14\xaa\x99\xdd\xa2\x7e\x7b\xb9\xd6\x79\x0f\x44\xed\x78\x46\x3b\xac\x54\x2a\x66\x65\x65\x85\xb6\xb7\xb7\x65\xa5\xa5\x50\xc9\x8e\x06\x47\x1c\x17\x43\x79\x67\x73\x75\x30\x5e\x9e\xe4\x9f\x04\x21\x17\x8f\xa5\xe0\x49\x90\x81\x23\xae\xb0\xe9\x52\x9a\xdc\x35\x76\x97\xf9\xb9\xc0\x46\xf2\x2c\xcb\x2a\xc9\xb2\x1e\xb8\xcb\x8b\x23\x05\x55\x0e\xb9\x24\x70\x4a\x9a\x86\x89\x2b\x9f\x1f\x24\x3f\x97\x0c\xf1\x70\x4e\xbb\x33\xdf\x87\x1e\x7a\x48\x7d\xea\x53\x9f\xa2\xa7\x9e\x7a\x8a\x4a\xa5\x92\x22\x22\x2f\xfe\xe6\x2a\x3a\xaa\x30\x52\xe2\x05\xa4\xaf\x84\xf4\xe2\x4d\x5f\xaa\x58\x2c\xe2\xfc\xf9\xf3\x38\x7e\xfc\x38\xbd\xf1\xc6\x1b\x2e\x7e\x49\x59\xe3\x4e\xd6\x9f\xd7\x01\x19\xfe\x8e\x1e\xd8\x8b\x6b\x2d\x0e\x9e\x98\x0b\x99\x14\xd4\x84\x21\x5a\x6b\xba\x76\xed\x9a\xb6\xbb\x48\x01\x28\x63\x4c\x81\x88\x4a\x5d\xcf\x14\xc6\xda\xde\xcc\x7c\xbd\xf4\x70\xfa\xc8\x35\x9e\x9d\xf5\x4a\xa1\x41\x1a\x34\x78\x1a\x76\x19\x50\x2f\x2e\xbc\x6a\xdb\x1b\xbf\x3e\xdd\xfa\x61\xc7\x33\x3b\x20\x74\x89\x48\x2b\xa5\xcc\xd8\xd8\x98\xb9\x75\xeb\x16\x05\x41\x20\x1b\xdd\xa5\xe5\x5c\x0c\xcb\x42\x75\xce\x9b\xac\x4e\x9e\x57\x0e\x98\x7f\x5e\x9c\xbc\x70\x09\x42\xa9\xb6\x61\xe9\x5c\x9d\x5c\xd6\xcb\xc6\x71\x69\x49\x29\x30\x59\x40\x2b\xcb\x71\x75\x58\x29\x47\x2e\x61\x95\x43\x03\x20\xdf\x9a\x92\x96\x5e\x4a\xb9\x65\xf0\x8f\x5b\x5f\xbc\xde\x92\x17\x52\x69\x70\x1a\x24\xcf\x38\xf8\xf6\x59\xb1\x1f\xff\xf8\xc7\xd5\xb9\x73\xe7\xe0\x79\x9e\x05\x0c\x8f\x88\x0a\x44\x54\xf4\x43\x1a\x19\xe9\xaa\xb1\xf1\x96\x3f\x3d\xd5\x2c\xcc\x54\x5b\xde\x78\xb9\xab\x46\x09\x28\x18\x82\x32\x04\x05\x82\xdd\x28\x46\xe5\x72\x19\x67\xce\x9c\xc1\xde\xbd\x7b\x29\xe7\x2a\x54\xeb\x5c\x0a\x90\xd7\xdb\x49\xaf\xe0\x35\xe7\x85\x8d\x07\x0f\xfd\x8d\xc1\x33\x91\x9d\x24\xa5\xbd\xc6\xc7\xc7\xd5\x43\x0f\x3d\x64\x6f\xc1\x22\x8a\x2e\x93\x29\x12\x51\x39\x50\xc6\x3f\xbc\x5e\x3e\x53\x0a\xd5\x68\xea\x7e\x41\xb6\xaf\xbc\x77\x80\x6a\x5c\xab\x98\x92\xf4\x17\xcd\xd1\x8b\xb1\xa0\x42\x60\x87\x20\x13\x4a\x81\x9a\xe9\x78\xe6\xd6\xd2\x78\xfb\x5d\x43\xc9\xe7\xf6\x41\xad\x56\x33\xad\x56\x0b\xf7\xee\xdd\x1b\x88\x9e\x2e\xc6\x38\xe2\x93\x23\xcc\x3e\xbb\x04\xc8\x15\x9f\xf3\x95\xf3\x59\x86\x65\x95\xe3\xd2\x82\x79\x1a\x42\xfa\xf1\x32\x79\x5a\xd9\x79\xc0\xde\xc1\xfc\xb9\xd0\x65\x95\x2d\x01\x47\x0a\xb5\x6b\x18\xec\xaa\xa3\x86\x9b\x76\x5e\x07\xc9\x4b\x59\xa6\x04\x07\x59\x57\xa0\xbf\xb3\xf0\x3c\xe5\xe4\xb0\x4b\x7e\xb8\xec\xa4\xca\x29\x14\x0a\xea\xb9\xe7\x9e\xa3\xa3\x47\x8f\x02\xd1\x30\xc4\x8f\x95\x6b\x79\xa4\xa3\x26\x0f\xaf\x97\x4f\x9c\xbd\x5b\xfd\xc4\x13\x77\xc7\x3e\x77\x7a\xa9\xfa\x9b\x27\x57\x2a\xff\xf9\x89\xd5\xca\x67\x4e\xac\x55\x7e\xf9\xf0\xfa\xc8\xd9\xb9\xed\xd2\x9c\x21\xd3\x6e\x15\x74\x37\x54\x51\xbb\x10\x11\x94\x52\x66\x62\x62\xc2\x1c\x3c\x78\x90\x6e\xdc\xb8\x61\x3f\xb5\xb0\xe5\xf3\x76\x71\xcd\x89\xf1\x7a\x67\xc9\xa9\xb4\x84\x6d\xde\x49\x7a\x97\xc5\xe1\x42\x21\x5e\x50\x52\x60\xbb\xdd\xd6\xd3\xd3\xd3\x76\x33\x8a\x8a\xc1\xc3\x07\x50\x6a\x7b\x5a\xcd\x34\x0a\x07\xa7\x9b\x85\x43\xc9\xc9\x44\x09\x08\x50\xef\x03\x38\xc3\x32\x27\x7b\xd4\x1a\xf5\x3c\x01\x98\x04\x4d\xe2\xbb\x66\xe3\x38\x04\x40\x19\xf2\xc6\x5b\xfe\xcc\xad\xc9\xf6\x4f\x9b\x05\xbd\x01\x8a\xce\xe9\x00\x60\xa6\xa6\xa6\xcc\x6b\xaf\xbd\xe6\xd2\x34\x52\xe3\x70\x2d\xc8\x19\x25\xfd\x25\xfa\xda\x78\x72\x78\x27\xad\x35\x39\xf4\xe3\xe1\x2e\xd0\xe2\x79\xcb\xb2\xa5\x30\x4b\xed\x2b\xb5\xa1\xac\x33\x44\x5a\xde\xa6\x70\xbc\xcb\x09\xc0\x2c\xcb\x85\xcb\x4d\x9e\x85\x21\xe7\x7b\x24\x3f\x64\x79\xae\x76\xe3\xd6\x91\x2b\x0e\x84\x7f\x16\x7d\x12\x50\x80\x7e\xcd\x3d\x88\xbf\x60\xfe\xc9\xbb\xef\xfb\xea\x97\x7e\xe9\x97\x60\x41\x23\x56\xa8\x25\xcf\x50\x75\xff\x66\xe9\xe8\x47\xae\x4f\xfc\xce\xe3\x8b\x63\xff\x66\xdf\x76\xf1\x3f\x1b\xeb\xf8\xe7\x4a\xa1\x3a\x54\xd0\x6a\xae\xa0\xd5\xbe\x52\xa8\x0e\x55\x3b\xfe\xd9\x99\x9d\xc2\xc7\x0e\x6f\x94\x3f\x34\xdb\x28\x4e\x35\x8b\xe1\x5a\xa3\x14\xee\xea\xf8\x66\x16\x8a\x0e\xeb\xd6\x07\x0e\x1c\xc0\xbb\xef\xbe\x0b\x7e\x3d\xa6\x83\x7e\x97\x9c\xcb\xb6\xe0\x71\xac\x93\x7e\x09\x9f\xa5\xc5\x21\x1b\xc5\xa5\x05\x53\x85\xbf\xf7\xde\x7b\x3a\x3e\xb1\xc8\x1e\xeb\xee\x19\x63\x4a\xda\x43\x11\x40\xf9\xd0\x46\xf9\xd1\x82\x56\xa5\x1e\x68\x44\xe5\xc7\x47\x93\x8a\x83\x8b\xd2\x4a\x2b\x59\x94\xa1\x34\x58\xc8\xab\x94\x0b\x21\xed\x51\x86\x36\x6f\x4f\xb6\xaf\x6a\x95\x6c\xf3\xd5\xc5\x62\x51\x07\x41\x40\xf7\xee\xdd\x93\x75\x94\x82\xcd\x4d\x66\x08\x7f\xa9\xe1\x65\xe7\x76\x69\x4e\x57\x5e\xbc\x11\x64\xc7\x93\x9d\x87\xa7\xe3\xf9\xb9\xb4\xb7\x8c\x23\xb5\xa1\x8b\x3e\x97\x85\xc4\x9d\xcb\xbc\xe5\x74\xcb\x77\xa9\x7c\xa4\x80\x4a\x2d\x2d\x01\xc3\x35\x3f\x90\xa7\xfd\x24\x0d\xb2\xbe\x79\x16\x82\x9c\x0f\xb0\x4e\x82\x15\xcf\x07\x70\xe7\x6b\x79\x09\x46\x07\x94\x52\xf4\xb1\x8f\x7d\x0c\x87\x0f\x1f\xb6\xbb\xab\x8b\x44\x54\xf6\x43\x1a\x3f\xbb\x38\xf6\xec\x47\xde\x9d\xf8\x0f\x7b\x76\x0a\x9f\xf1\xb5\xda\x03\x90\x97\x3e\x91\x9c\x1f\x32\x4c\xca\xd7\x6a\x66\x62\xd7\x7f\xfa\xc0\x66\xf9\xd1\xae\x67\xee\xde\xaf\x76\xd7\xec\x45\x4e\x1c\x3c\xae\x5e\xbd\x2a\xc1\x60\x18\x4b\xd4\xc5\x8f\xbc\x76\x4e\xd2\x72\x8b\x43\xa2\xa8\x8b\x41\x96\x89\x29\x73\x6c\x7e\x7e\x1e\xd5\x6a\x95\xc0\x26\x75\x00\x94\x5b\x05\x8d\xf9\x7a\xe9\x58\xad\xe5\xcd\x25\xcc\xb0\xb7\xa8\x9b\x18\x06\xe2\x12\xec\xbe\x8d\xe4\xd6\xb0\xb8\x24\x8a\x11\xc6\x5a\x29\x96\xf4\xe4\xce\x0a\x44\xdf\xb0\xd4\xda\xde\xdc\xca\x58\xf7\x95\xad\x72\xb0\x4a\xd1\x05\xc7\x5d\x00\x66\xdf\xbe\x7d\x26\x3e\x5e\xd0\xd6\x89\x77\x34\xfe\xcc\xfd\xf2\x1a\xc1\x85\xe0\x10\xe9\xa5\x76\x72\xc5\x4b\xf1\xd1\x91\x07\x6f\x30\xdb\x3e\x2e\x8d\x9c\x45\x9b\x4d\x03\x47\x78\x96\x96\x87\x23\x6d\x16\xe8\x66\x81\xb0\xab\x6e\xc6\x11\xdf\xa5\xa0\xf2\xe4\x4d\x5a\x2a\x2e\x8b\xc0\xa6\x93\xf9\x70\x3e\x64\xcd\xa3\x48\xb0\x92\x34\x66\x69\xea\x3e\xab\xe9\xd4\xa9\x53\x78\xec\xb1\xc7\x12\xd0\x00\x50\xf6\x42\x4c\x5c\xb8\x5d\xfb\xd8\x93\xb7\x6b\xff\xa1\x1c\x78\x0f\xdb\x6b\xae\x7a\x32\x9f\xc8\x72\x8f\xf9\x31\x85\x64\x40\xa5\xd0\x5b\x98\xaf\x97\xce\x05\x9e\xb9\x75\xaf\xd6\x5d\x06\x45\x5f\xd8\x02\xc0\xc8\xc8\x88\xde\xdc\xdc\xa4\x8d\x8d\x0d\x08\x1a\x49\xd0\x2e\x79\x25\xfb\xc0\x30\xed\x9c\x00\x87\xab\xe1\xb3\x84\xbf\xcf\x44\xd5\x5a\xf3\x3d\x1d\x76\xae\xc3\x27\xa2\x62\xe0\x19\xcf\xd7\x34\xba\xb0\x59\x3e\xed\xe9\xde\x87\x6f\xc9\x19\x89\x3d\x7c\x48\x40\xa4\xb7\xbd\x9c\x5d\x20\x83\xde\xc5\xc9\xc9\xbc\x88\x01\xf8\xa4\xaa\xaf\x69\xbc\xda\xf6\x8a\x37\xa7\x5b\xaf\x74\x3d\xb3\x83\xde\x99\x98\x18\x1d\x1d\x35\x6f\xbf\xfd\xb6\x6d\x0f\x17\xfa\x2a\x87\x3f\x8f\xaf\x45\x5c\x39\x01\xc5\x35\x93\x6b\xcc\xed\x2a\xc3\xa5\xdd\x5c\x5a\x8e\x3f\xdb\x5f\xd9\xe9\x64\x79\xb2\x43\x4b\x93\x9c\xd7\x05\x0e\x7f\x5e\x5e\x16\xc0\xf2\x7a\xf1\x32\x5c\xf4\x72\xbe\xb9\x14\x93\x1c\x8b\x73\xfe\xf2\xf2\xf8\x3b\xe7\x67\x5e\xc7\xe6\x65\x01\x69\x3e\xf3\xb2\x24\xa0\xf1\x5f\xee\xa4\xdc\x48\xbe\x99\x4f\x7f\xfa\xd3\xa4\x94\x52\xf1\xaa\xc9\x08\x0c\x6a\x27\x57\x2a\x4f\x3d\x73\x63\xfc\xdf\x97\x02\xb5\x60\x51\x81\xf8\x91\x13\xf2\xf8\x09\x83\x64\x8b\x82\x3d\x5e\xc2\x33\x98\x9a\x6d\x14\x4f\x6d\x97\xc3\x9f\xdd\x1f\xed\xae\x01\xbd\x61\xf9\xb1\x63\xc7\xcc\xc5\x8b\x17\x79\x5d\x24\xdf\xa4\xe5\x67\xeb\x22\xfb\x35\xd0\x2f\x4b\xfc\x37\x01\x0e\x39\x79\x22\x1b\xd9\xc5\xcc\x54\x81\x23\x23\x23\xea\xf1\xc7\x1f\x4f\xf2\x88\xe7\x3b\x7c\x00\xe5\xdd\xa2\xc6\xc2\x66\xf9\xe1\x6a\xd7\x9b\x4a\xb1\xdf\xde\x01\x91\x30\x0e\xe9\xe6\x35\xb1\x27\x03\x18\x39\x2f\xd2\xab\x92\x01\x19\xc2\x68\xd7\xdb\x1f\x2a\x73\x67\xb1\xd6\x7e\x4f\xc3\x74\x62\x73\x2e\xa8\xd5\x6a\x86\x88\xb0\xb8\xb8\x08\x87\x93\xda\x57\x3a\x2e\xd4\x2e\x20\x80\xf0\x93\x69\x65\x63\xb9\x26\xfd\xb8\x3f\xd0\xdf\x70\x2e\xcd\xc8\x69\x97\x74\xbb\x26\xc5\xe4\x38\x5c\xa6\xe1\xda\x38\x6b\xc8\xc6\x3b\x08\x0f\x97\x40\x22\x35\x1c\xc4\x2f\x6f\x41\x17\x68\xf4\xc9\x98\x83\x06\x17\xd8\xc9\x49\x67\x08\x7f\xc9\x2b\xa9\x00\x24\x58\xb8\x68\x90\xf3\x63\x3c\x9d\x01\x80\x27\x9f\x7c\xd2\x9e\x55\x53\x32\xc6\x54\x66\x1b\xc5\x23\x1f\x79\x77\xf2\xdf\x56\x3b\xde\x19\xae\x0c\xa3\x02\x4c\x32\xf1\x9f\x12\x26\xe2\x8d\x1c\xa5\x21\x22\xf8\x9a\xa6\x27\x77\xa3\x39\xbd\x96\x1f\x36\xd9\x87\x6d\x7a\x74\x74\x94\x6e\xde\xbc\xc9\x79\xc5\x79\xc0\x65\x40\x02\xa9\x0b\x1c\x5d\xbc\x4a\xda\xcd\x5a\x1c\x12\x6d\x65\x62\x97\xa0\x26\x05\x06\x41\x60\xca\xe5\x32\xcd\xce\xce\xda\x43\x5e\x15\x11\x79\x44\x54\xe8\x7a\xc6\x2f\x06\xaa\x7a\x60\xab\xf4\x48\x7a\x69\x96\x52\x3f\x7d\x64\x8b\xe3\xec\x48\x3e\x10\x20\x97\x61\x08\x28\xd6\x5a\xfe\xde\x95\xb1\xee\x2b\xdb\x23\xe1\x3a\x18\x22\xef\xd9\xb3\xc7\xbc\xf2\xca\x2b\xae\x89\x42\xce\xb4\x41\x1d\x70\x90\x9f\x64\x76\x96\x39\xec\xea\xec\x32\x9e\x7c\x96\xf4\x71\x20\x18\x14\x4f\x76\x38\x57\xde\x1c\x34\x5c\x13\x8d\x2e\xcb\x33\xcb\xda\x92\x71\x78\xb8\x04\x5d\x2e\x7b\xd2\x62\x90\xd6\x89\x34\xbf\x6d\x5d\x5d\x7c\xe5\x65\xba\xf2\xe6\xe9\xa4\x39\xee\x2a\x43\xc6\x71\x5a\x26\x2f\xbd\xf4\x92\x42\x24\xff\x05\x00\x15\xcf\xd0\xc4\xf9\xbb\x63\xbf\x76\x68\x63\xe4\x5f\x11\xc8\xb7\xb7\xad\x44\x19\xd9\xc9\x7e\x82\x38\x29\xd3\x1a\x25\xec\xda\x10\x2b\xe3\x84\x72\xa0\x66\x0c\xe1\xde\xad\xa9\xf6\x35\x44\x9f\x5b\x84\x00\xf4\xc4\xc4\x84\xdd\x35\xcd\xe9\x73\x59\xc9\x40\x9a\xe7\xdc\x49\xe0\x94\x16\x2a\x01\xbd\xf3\x38\x24\x30\x70\x06\x4a\xe7\x2c\x70\x64\x64\x84\x0e\x1f\x3e\x6c\xe7\x2a\xec\x5c\x47\x11\x84\x42\xb3\xa8\xf5\xc2\x66\xe9\x64\xa5\xeb\x4d\xf4\x65\x98\x21\xee\xa9\x6b\x12\x08\xe8\x7d\x3e\x6b\x92\x49\x53\xcb\x4c\xbb\x3c\x4b\x44\x28\x86\x34\x35\x12\x78\xe6\xce\x44\xeb\xf5\xae\x67\xda\x88\x8e\x5a\x0b\x3d\xcf\xc3\xec\xec\x2c\xde\x7b\xef\x3d\xc4\x27\x46\x73\xd3\x96\x0b\x8a\x4b\x30\x5c\x80\xe9\x02\x08\xc9\x3f\x39\x1c\x01\xcb\x57\x3a\x57\xfe\xb2\xc3\xc8\x8e\x21\x05\x77\x10\xb0\xb8\x34\x4d\x56\x7e\xdc\x8f\x44\x3c\x69\x5d\x65\x75\x28\x9e\x87\xe4\x91\x54\x54\x12\x28\x6c\xbe\xb2\x4c\xd9\x21\xb8\x93\xfc\x96\x20\xc2\x3b\x80\x9c\xa7\xe0\xe5\x71\x10\xcd\x02\x89\xbe\xb9\xc1\x0f\x7c\xe0\x03\x34\x37\x37\x07\x44\x73\x7c\x45\x00\xd5\x89\x5d\x7f\xe1\xc9\x5b\xb5\xdf\x1b\xed\xfa\x47\xa2\xc8\x71\x11\xc9\xbe\xa4\x18\x31\x92\x39\x8e\x1e\xa0\xc4\xff\x7a\xdf\x7f\xda\xa8\x40\xb1\x1c\xa8\xd1\x1b\x53\xad\x1f\xb6\xfc\x70\x3b\x9e\xcf\x4b\xac\x8e\x5b\xb7\x6e\x65\x0d\xb7\xa4\xac\xbb\x14\x80\xe4\x91\x93\x37\xdc\x84\xe3\x8e\xfb\x6b\x16\x6e\x9f\x15\x8b\xa3\x00\xa8\x6b\xd7\xae\xe9\x7a\xbd\x6e\xf7\x65\x04\xf1\xe9\x5c\x0d\x63\x4c\x7d\xbb\x14\x2c\xbe\x35\xdb\xfc\x91\x26\x93\x94\x63\xa2\xd9\x51\xfb\x96\x2e\x3d\x9e\x3c\x85\x3d\x1d\xc9\x80\x43\xaf\x43\x1a\x28\xc9\x4b\x01\xfe\xc2\x46\xe9\xf9\xd3\x4b\xd5\xe7\x94\x46\x15\xd1\xed\x65\x45\x00\x58\x58\x58\xc0\xb3\xcf\x3e\x0b\xdf\xf7\xa5\x69\x2c\x4d\xf4\xac\xf1\xad\x8b\x17\x60\x71\xb5\x88\x9b\xc5\xdf\x2c\x9e\xca\x67\x25\xe2\x49\x9a\x64\x18\xf7\xe3\x75\x94\x42\xa0\xc5\xbb\xa4\x39\xab\x0c\x57\x7d\x5d\x75\xe6\xf1\x64\x5d\x78\xb9\xc3\xf2\x4d\xbe\xcb\xfc\x64\xbe\x79\xfe\x92\x3e\x99\x2f\x06\x84\x65\xb5\xab\x3e\x71\xe2\x44\x52\xe7\xf8\xea\x90\xf2\x5c\xbd\x78\xa2\xd6\xf6\x4f\x24\xba\x0f\xd6\xa0\x8e\x05\x36\x06\x0f\x3e\x54\x49\xce\xb2\x41\x2f\x0a\xc5\xbf\x30\x51\x78\xb5\xe5\x9d\x98\xab\x17\x4f\x12\x51\x25\x2e\x4b\x11\x91\x9a\x9c\x9c\x84\x70\xb2\xcd\x64\x58\x5e\x7b\x67\xf1\x26\xd5\x80\x32\x92\xab\x81\x65\x87\x4b\x11\xf6\xf5\xaf\x7f\x5d\x1b\x63\x34\x90\x5c\x4a\xdd\x04\xd0\xd0\x84\xcd\xb7\x67\x76\x2f\x6f\x8e\x04\x77\x12\x66\x18\x4a\x70\x2f\xb9\x28\x2f\xe1\x55\x0f\x24\xc0\x7e\xa4\x23\x8e\x37\xc6\xfe\x47\x28\x68\x9a\x3a\xbd\x34\xfa\xe2\x81\xcd\xf2\x49\x18\x54\x11\xa1\xbf\x0f\x40\x9d\x38\x71\x02\xb1\x56\xc8\xd2\xfa\xb2\xbe\x29\x80\x64\x71\x5d\xe3\x72\xf9\xe7\xca\xdb\xe5\xa4\x30\x4b\xde\xcb\x38\x3c\x5d\x1e\x38\x49\xfa\xb2\x3a\x86\x4b\xb8\x5c\xc2\x24\xf3\x73\x75\x70\x99\x2e\xaf\xc3\x0d\xea\xc0\x59\x75\x76\xd1\x24\x5d\x56\xfb\x64\xa5\x1b\xa6\xde\xb9\xfe\x95\x4a\x25\x29\x9b\x88\x7c\x18\x94\x27\x9b\x85\x63\x9e\xa6\x1a\x80\xb4\x45\xcd\x8f\x0c\x8c\xaf\xa1\x48\xb9\xac\x93\xe7\x29\x4a\xeb\x6b\xaa\xee\xdf\x2a\x9d\x42\xa4\x18\xfd\xf8\x1a\x07\x2b\xdb\x09\x1d\x0e\x9a\xf3\xc0\x23\x4f\xbe\x53\x6e\x90\x06\xca\x73\x2e\x81\x56\x8d\x46\x03\x31\x78\xf4\x4e\x63\x26\xd4\xb7\x4b\xc1\x9d\xab\x7b\x77\x5e\xd6\xb0\x56\x87\x49\x8c\xc9\x14\x8b\xe4\xc8\x57\x8e\xc0\x20\xfc\x52\x71\xe2\x71\xa0\x21\x8c\xb5\xbd\x93\x1f\xb8\x35\xf6\xdb\xd5\x8e\x37\x0b\xa0\x62\x8c\x29\xda\x7b\x67\x3f\xfa\xd1\x8f\xda\x3a\x67\x31\xca\xba\x41\x16\xc6\xa0\xb8\x79\xe0\xeb\xb2\x2a\xe0\x78\xce\x13\x68\x97\xb6\x76\xc5\x75\x99\xd9\x2e\xcb\x24\xcb\x0d\x02\x4c\xeb\x9f\x05\x78\x92\xbe\xbc\x67\x9e\xc6\xc5\x1f\x19\x2f\x8b\x7e\x97\x3c\xe7\x81\xab\xcb\x42\x73\x95\xe1\x2c\xaf\x56\xab\x29\x00\x60\xf7\xb0\xf8\x9e\x41\xb9\xda\xf1\xe6\x94\x89\xae\x2d\x00\x33\xa0\xed\x32\x6c\x9c\x86\xad\x20\xb2\x88\x89\x33\xf1\xff\xd1\x6f\x6c\x81\xa8\xb1\xb6\x77\x00\x06\x65\xfb\xcd\x8b\x31\x46\x19\x63\x30\x33\x33\x23\x2d\xb9\x3c\xfa\xb3\x14\x8a\xac\x7b\x2a\x9d\xcb\x84\x95\x9a\xc4\xa5\x85\xb2\xb4\x23\x2e\x5d\xba\x64\xc3\x35\xe2\x4b\x8b\x8d\x31\x75\x4d\xd8\xbc\x36\xd3\xbc\xb8\x5e\xe9\xde\x32\x31\x68\x24\x46\x82\xfc\x65\x23\x71\x63\xad\x36\xe2\xec\x34\xc9\xe8\x05\x88\xc3\x48\xb0\xdb\x40\xed\xab\x97\x3e\x7e\xfe\xd6\xd8\x67\x94\xc6\x04\x80\x8a\x65\x6e\xa5\x52\xc1\x67\x3e\xf3\x19\x69\x55\x48\x26\x4b\xcb\x41\x89\xb8\x2e\xa6\x66\x35\x8a\x0b\x64\xa5\xbf\xcb\x5a\x71\xf9\xe7\x95\x9b\x95\x7e\x50\x87\xce\xcb\x43\xba\xa1\x4c\x59\x96\x97\xe4\x95\x2b\x4e\x56\x19\xfc\xd9\x65\x69\x70\x70\x76\x69\xcd\xbc\x7c\x86\x2d\xd3\xa5\x30\xfa\xfa\xc4\x99\x33\x67\x00\x24\x43\x10\x05\xc0\x27\x43\x45\xa5\x51\x96\x96\x73\x32\x99\x10\xcf\x80\xf6\x40\xc4\x0a\x31\x21\x6d\x80\xf4\x26\x46\xd9\xbb\xf2\x35\x55\x11\x6d\x2e\xf3\x11\x59\x39\x20\x22\xac\xae\xae\xe6\x59\x88\x59\x7c\xe0\x75\x95\x06\x85\x7c\xce\x6c\xd0\x2c\x21\x70\xc5\x4f\x31\xf1\xad\xb7\xde\x82\xb5\x3a\xe2\x33\x19\xe3\x1b\xb7\xb1\x59\x2f\x87\x8b\xaf\xed\xdf\xf9\x07\x4d\x08\xe4\xf8\xc3\xce\x79\xf0\xb9\x8f\x04\x61\xe3\x67\xb2\x43\x1b\x4a\x8c\x95\x5e\x1c\x63\x22\x84\x31\x48\x26\x9a\x94\xa1\xca\xa9\x7b\xa3\xff\xc5\xa3\xcb\xa3\x1f\x20\x50\x15\xd1\x2d\xed\xbe\x31\xc6\xdf\xbb\x77\x2f\x3e\xfc\xe1\x0f\xab\xb8\xa1\x25\x63\x5d\xcc\x92\x56\x84\xd4\xf6\x9c\x6f\xb2\x91\x78\xfa\x3c\x7e\xeb\x9c\x3f\xe9\xb2\xac\x08\x49\x23\x90\x4d\x0b\x90\x5d\x07\x97\xb0\xd9\xbc\x24\x1d\x79\x75\x92\x4a\x08\xe2\x37\x4f\xdb\xb9\xca\xcb\xa2\x43\xa6\x19\x64\x25\x0c\x02\xd0\x41\xef\xa9\x5f\x7b\x34\x60\x3c\xe4\x50\x00\x94\x01\x7c\x13\x83\x43\xda\x86\x30\x4c\xfa\xed\x37\x5b\xc6\x62\x46\x14\x4e\xd2\xea\x88\xf2\xb6\xb6\x07\x00\x74\x95\x09\x0c\x12\x0b\xa7\x7f\xb8\xd3\xcf\x67\x09\x0a\xae\x3a\xca\x70\x17\x2f\x95\x6c\x38\x57\xa1\xd6\x49\x21\x96\x02\x96\x10\x15\x5f\x32\xa3\x81\x68\xae\x83\xa2\xbb\x1c\x1a\x20\xac\xbf\x35\xd3\xbc\xb8\x52\xed\xbc\x63\x2c\xf3\xc8\x1a\x18\x0c\x55\x8d\x9d\x59\x66\x8b\x29\xe8\xa1\x45\x72\xd7\x0a\x4b\x87\x18\x6d\xa3\xe4\x94\xdc\x06\x57\x08\x69\xf6\x99\x1b\xe3\xff\xdd\xde\xed\xe2\x51\x18\x54\x89\xa8\x1c\xef\x33\x51\x8f\x3c\xf2\x88\x1d\x56\x49\xc6\x66\x69\xca\x3c\x61\xcc\x02\xd5\x2c\xed\xef\xea\xd8\x83\x2c\x97\xbc\xb6\xca\xd2\xec\x79\xda\x87\x97\xe5\x1a\x2e\x48\x61\xcb\x02\x88\x3c\x8d\xe6\x02\x4c\x29\xb4\x2e\x70\x71\x81\xac\x8b\x8e\x2c\xfa\x25\x8d\xfc\xd9\x65\x9d\x00\x69\xfa\x5d\x74\xba\x80\x5c\x03\xc0\x87\x3f\xfc\xe1\x24\x2f\xdb\x81\x43\x65\x74\xbd\x1c\x6c\x1a\x42\x90\x1e\x75\xa7\x95\x66\xef\x7c\x7f\xf4\x2c\x0f\x31\x41\x0a\xa0\xf7\xe9\x45\xa4\x3c\x83\xb5\x6a\xf7\x0e\xff\x48\x34\xde\x80\x89\x4f\x7e\xf2\x93\x52\x0e\xf2\xea\x64\xfd\x5c\x3c\x92\xef\x89\x5f\x56\x03\x48\x53\x4c\x89\x3f\x20\x9b\xf9\x00\x80\xad\xad\x2d\x9b\x36\x88\x6f\x91\x6a\x00\xd8\x6c\xfb\x7a\xe5\xe2\xc2\xf6\x77\x3b\x9e\x69\xa6\x60\x58\xcc\x5b\xf0\xc3\x8e\x93\xf0\xac\x45\x3a\xf1\x4c\xd6\xf2\x88\xe7\xaa\x2b\x5d\x75\xf2\x63\x6f\x4f\xfe\x37\xb5\x96\x37\x8f\x68\xbe\xa3\x8c\x78\xb2\xf4\x85\x17\x5e\xc8\x13\x16\xa9\xc1\x91\x13\x4f\xc6\xcf\xf2\xcf\x02\xe4\x2c\xf0\x70\x81\xbb\xab\x0c\x57\x3d\x24\x58\xb9\x34\x4e\x1e\xe0\x0c\xa3\xed\xf3\x34\x74\x16\x60\x48\xeb\x2e\x0b\xb0\xb3\xac\x96\x2c\x10\xcd\x12\x7e\x29\xbf\xae\xb6\xcb\x02\xa5\x41\x6d\xd2\xc7\xbb\xc4\x8a\x25\xe8\x8d\x4a\xb0\x12\x28\xd3\x4a\x0d\xcb\x93\xc9\x0e\x2e\xc0\x88\x97\x68\x79\x46\x48\x85\x25\x49\x89\xd0\xf6\x74\xe3\xf6\x44\xeb\x5d\x08\x5e\x10\x11\x7e\xfa\xd3\x9f\x42\x38\x97\xa2\x70\x29\xcb\x2c\x59\xe9\x93\x41\x17\xe2\xb8\x98\x2d\x3b\x00\x77\x2e\xc1\x55\xdf\xf8\xc6\x37\x34\x00\xbb\xca\x12\x20\x5e\x61\x01\x61\xf3\xe6\x54\xeb\x8d\xdb\x13\xed\x2b\x26\x36\xcf\x52\xab\xb2\x82\x97\x89\x4b\x2d\xdf\x5a\x3f\x96\xd8\x82\x34\x00\x43\x1c\x70\xa2\xa5\xae\x3d\x8d\xc2\xc7\xff\xc5\xf5\x89\xdf\xae\xb4\xd5\x1c\x11\x55\x10\x8d\x0d\x55\xb9\x5c\x56\xbf\xf9\x9b\xbf\xe9\xea\x20\x2e\x4b\xc1\xe5\x9f\xe5\xc7\x79\x22\x41\x17\x0e\xff\x3c\xad\xec\xca\x3b\xab\xbc\xbc\x67\x97\x36\x97\x42\xe1\x52\x1a\x59\xfe\x79\x61\xdc\x3f\x0b\x10\x24\x9d\xd6\x65\x59\x29\x2e\x10\x95\x65\x02\xfd\xb4\x64\x01\xaa\xcb\xb9\xda\xd9\x05\xfc\x29\x00\x5e\x59\x59\x01\x90\x68\x7d\x2b\xfb\xc1\xf2\x58\xe7\x66\xbd\x1c\x2c\xda\xe5\x54\x3b\xf8\x8e\xf4\x1a\xa5\x15\x9f\x58\x49\x31\xd6\xb2\xe6\xe7\x6c\x22\xb2\xc6\x37\x47\x82\x3b\x6b\xa3\xdd\x45\x44\xd7\x39\xda\x7e\x86\x98\x16\x57\x5b\xe4\x29\xa7\xbc\x7a\xcb\x7c\x00\x40\xe7\x35\x1a\x7f\xce\xb5\x2e\xd0\xdf\x98\x1a\x00\xee\xdf\xbf\x6f\xaf\xcf\x4b\xe6\x3a\x8c\x31\x9b\x1d\xa5\xd7\x5e\x39\xb0\xfd\x0f\x8d\x52\xb8\xd6\x4b\x92\x98\x0b\xbd\xd7\x14\x90\xb0\x25\xab\xc4\xa2\x60\x23\xbe\x38\x5e\x32\xbc\xe1\x13\xac\x06\x20\x03\xff\xf0\xfd\x91\xcf\x3e\x75\x73\xfc\x37\x4a\x5d\xb5\xc7\xae\x7f\x1b\x63\xf2\xc0\xc3\x55\x37\x57\x58\x9e\x06\x74\x69\x78\x97\x93\x9a\x34\xab\x6d\x06\x85\xb9\x2c\xc6\xac\x32\xb3\xac\xa6\x3c\xc1\xca\x7a\x1f\x46\xe0\x5c\x7e\x92\x5e\x09\xa6\x59\x16\x41\x56\xbe\x12\x18\x64\x79\x59\xe0\x2d\xdf\x5d\xe0\x96\x95\x56\xdf\xb8\x71\x03\x00\xec\xdc\x9e\x8e\xef\x54\x69\x6d\x97\x83\xf5\x5b\x13\xed\xd7\x34\x8c\xe6\x0b\x85\xc9\xd0\x25\xfe\x46\xa5\xe7\x8c\xcd\x27\x99\x3c\xed\x1d\xce\x1b\x09\x78\x48\xe8\xbc\x37\xdd\xba\xb4\x5b\xd0\xf5\x78\xbf\x94\x3d\xac\x5b\x03\xb0\xab\x2a\x96\xde\x41\x80\x20\xeb\x98\x09\x16\x3c\xae\x3c\xe5\x5c\xee\x1a\xe3\x05\xf1\x5f\x6e\x17\xd8\x77\xae\xff\x0d\x00\xd5\xed\x76\x71\xe4\xc8\x11\x63\xec\xf1\x45\x91\x53\x44\xe4\x6f\x17\xc3\x70\xa4\xeb\x8d\xed\xdd\x2e\x1e\x55\x20\x95\xec\x72\x61\x73\x19\x46\x64\xd8\xdb\x57\x67\xe7\x3c\xa8\xc7\x57\xea\x01\x76\x54\x58\x64\x69\xf0\x0b\x25\x15\xa8\x38\xb5\xeb\x9f\x04\x61\xf9\xde\x58\xe7\x56\x48\xc6\xde\x70\xa5\x7d\xdf\xc7\xa9\x53\xa7\x70\xe7\xce\x1d\xda\xdd\xdd\xd5\xac\x3e\x94\xc1\xc4\xbe\xfa\xb2\x70\x23\xd2\x4a\xdb\xc8\x95\x9f\xcd\xc3\x95\x46\xf2\x37\xab\x51\xb3\xca\x49\x19\x76\x22\x8e\xa4\xdf\x45\x7b\x56\xbb\xf3\x70\x23\xe2\x6a\x11\xc7\x20\x2d\x5b\x52\xd6\x5c\xf9\xf1\x32\xf3\xf2\x87\x78\x36\x8e\xfc\x79\x7a\x99\x8f\x7c\x97\x74\x0e\x8a\x8b\x30\x0c\xcd\xf1\xe3\xc7\xa9\x5c\x2e\xdb\xbb\x86\x7c\x44\xa7\x78\x95\x9a\x85\xd0\xec\xaf\x97\x4f\x54\xba\xde\x04\xac\x44\xb2\x25\xd8\x48\x96\x39\xdb\xf9\x01\x57\xac\x23\x18\x82\x21\x83\xfb\xa3\xdd\xf7\x7e\x7c\xa8\xfe\x7f\xb7\x8a\xfa\x36\x80\x0d\x22\x6a\x18\x63\x5a\x44\xa4\xef\xde\xbd\x2b\x3f\xad\x70\xd5\x5f\xf6\x65\xc9\x73\x57\xdb\xf1\x7c\x0c\x07\x0e\x99\xa9\x6d\x0c\xdb\x10\x7c\x86\x41\x36\x2a\x47\xab\x44\xe8\xd6\xd7\xd7\xcd\xe4\xe4\x24\x4d\x4e\x4e\x26\xa0\x1a\x1f\x33\x58\x00\xc1\xdb\x2a\x07\xad\x7d\xdb\xa5\xc3\xd5\xb6\x37\x0d\x43\x3d\x4b\xcd\x4e\x88\xb2\x6e\x90\x3a\xd4\x98\x5f\xb1\x10\xff\xa6\x3e\xb9\x4f\xfc\xd8\x57\xb5\xf1\x64\xa9\xd2\xaa\x32\xdd\x2c\x9c\xe8\xf8\xe6\xf6\x5a\xb5\xbb\xac\x09\xdd\xb8\x44\x5d\x28\x14\x70\xe8\xd0\x21\xb3\xb8\xb8\xc8\xc1\x83\xf3\x46\x76\x7a\xd9\xc1\x39\xa3\x65\xa7\x07\x8b\xe3\x12\x42\x72\xa4\xcf\x7a\xe7\xcf\xc8\x88\xc3\xe9\x74\x85\xb9\x80\x44\xd2\xeb\xca\x47\x09\xff\x2c\x59\xc9\xeb\xdc\x36\xae\x2b\x7f\x57\x19\xbc\xce\x9c\x0e\xc9\x3b\xae\xfc\xf2\xe2\xe4\xd1\x20\x95\xc5\xa0\xdf\x84\xde\xd1\xd1\x51\xcc\xcd\xcd\x25\xdf\x6b\x21\x9a\x47\x2b\xee\x16\x34\x19\x32\x6a\xbe\x5e\x7a\xa8\x90\xdc\x37\x64\x01\x41\x60\x78\x2a\x0c\xa9\x61\x8a\x21\x60\xb7\xa0\xeb\x3f\x3e\x54\xff\xab\xdb\x93\xed\x57\x41\x58\xa5\xf8\x8e\x5a\xbb\xed\xfc\xeb\x5f\xff\x7a\x56\xdd\xf2\xda\xa5\x87\x58\xfd\x71\x64\xbb\x18\xa0\x77\xe6\xa8\x71\x24\x94\x08\x25\x2d\x11\x1b\x9f\xd5\xba\x6f\x96\x42\x5d\xbf\x7e\x5d\x3f\xf6\xd8\x63\xe4\x79\x9e\xbd\xf9\x8d\xe2\x71\x60\xa1\xe3\x1b\x13\x28\xa3\x0e\x6c\x96\x8e\xfb\x46\x95\xc8\x66\x91\x8c\xe7\x4c\x8f\xb1\xb1\x99\x66\xad\x8e\xd4\xf8\x90\x53\x10\xb3\x80\xaf\xbc\x20\x06\x8d\x68\xe5\xc5\xc0\xd7\x34\x31\xd3\x28\x3c\xd4\x2a\x98\x1b\xf7\x47\xbb\xab\x86\x92\x4f\xf0\x4d\xa1\x50\xc0\xc1\x83\x07\xcd\xd2\xd2\x12\x35\x9b\x4d\x17\x78\xb8\x9e\xe1\x68\x04\x89\xe0\xca\xf6\xcf\x8e\x00\x00\x20\x00\x49\x44\x41\x54\x52\x93\x73\x1e\xca\x06\x93\xf9\x48\x6d\x3a\x6c\xbe\xb2\x5d\xa4\x20\x48\x6d\x8e\x01\xef\xb2\x5e\x36\x5c\xf2\x44\xd6\x0d\xe8\x17\x58\x57\x3d\x6c\x3c\x9e\x87\xac\x23\xa1\x9f\x1e\x09\x9c\xd2\x3a\x92\x8a\x4f\x00\xe2\x3b\x1d\xc4\xe6\x9b\xc5\x07\xc2\x60\x1e\x26\xf4\x37\x1a\x0d\x3a\x75\xea\x14\xdf\xcb\x11\x81\x07\xc1\xdf\x18\x09\x76\x94\x41\x61\xb6\x51\x3c\xa4\x0c\xf9\x29\x59\xb7\x2e\x01\x09\xeb\xdf\xfb\x72\xd6\x10\xd0\xf2\x75\xe3\xd5\xfd\x8d\xff\x78\x65\xdf\xce\x3f\x6a\x85\x65\x63\xcc\x7d\x8a\x6e\xa9\xdf\x45\xb4\x08\x61\xae\x5f\xbf\x4e\xad\x56\x4b\xf2\xd7\xd5\x1e\xbc\xff\x4a\x0b\x4d\xf2\xde\x02\x6f\x12\xd7\x13\x19\xba\xac\x08\x17\x22\xcb\x86\xe4\x8d\x07\x99\xcf\xf8\xf8\x38\x66\x66\x66\x0c\x80\xe4\x1e\x16\x22\x52\x20\xf8\xf5\x72\xd0\x1e\x6f\x15\xf6\xec\xd9\x29\x2c\x90\xb1\x9f\x00\x72\x53\xc2\xe6\x4c\x09\x33\x53\x0a\x92\x35\x2d\x3f\x3d\xa9\x77\x2e\xa9\x0d\xef\x01\x0e\x81\x50\x08\x69\xcf\x6c\xa3\xf8\xd0\x4e\x51\xbf\xbb\x3e\x1a\xac\x21\xbe\xd0\x89\x88\x4c\xb1\x58\xc4\xc2\xc2\x82\x89\x8f\xa3\x97\xf5\x93\x9a\x09\x48\x0b\xab\xd4\x7e\xae\xb8\x9c\x7a\xa9\x61\x2d\xff\x78\xdc\x14\xda\x8b\x32\x64\xc7\x96\x82\x2f\xcb\x83\xc8\xc7\x05\x32\x72\xd8\x25\x4d\x78\x57\x9b\xf3\xbc\xf2\x2c\x14\x20\x2d\x27\xf2\xdd\x65\x0d\x65\x59\x60\xbc\x9e\x2e\xb9\x95\x34\xf1\x3c\xa4\x1c\xbb\x94\x20\xef\x3c\x9c\x5e\xc9\x27\x03\x00\xed\x76\x9b\x4e\x9f\x3e\x0d\xdf\xf7\x89\x5d\x28\xa6\x8c\x31\xa4\x3d\xd0\xca\x58\x67\xc3\x00\x34\xd5\x2c\xcc\x15\x34\x95\x00\x4a\xe3\x86\x55\x8c\x76\x43\x18\x11\x28\x1e\x9e\xec\x14\xc3\xcd\x8b\x0b\xdb\xdf\x7d\x75\x7f\xe3\xef\x03\xdf\xdc\x01\xb0\x42\x44\x9b\x00\x76\xe2\x8b\xa6\xc3\xe5\xe5\x65\x5c\xbd\x7a\x15\x5a\x6b\x57\x7d\xa4\x45\x96\xd5\x5e\x2e\x19\xe6\x6d\xd2\x07\x1c\xb2\xb1\xb9\x59\xcb\x33\x95\x1a\x26\x0b\xc1\x12\x7e\x6c\x6c\x6c\xd0\xc9\x93\x27\xa1\x94\x4a\x0a\x8e\x19\xeb\x6b\x32\x54\x1f\x09\x5b\xf3\xf5\xd2\xd1\x4a\x57\x8d\xa7\x86\x21\x1c\x7c\xc9\xd6\x48\x80\x46\xca\x89\x0f\x85\x88\x01\x48\x04\x57\x09\x79\x04\x42\x31\xa4\xd9\xbd\xdb\xc5\xe3\xdb\xe5\xf0\xda\x46\x25\xd8\x00\x21\x88\x27\xb7\x4c\xa1\x50\xc0\xc9\x93\x27\xf1\xfa\xeb\xaf\xf3\xfa\x4b\x3e\xb8\x84\xd6\xa5\x55\xa5\x55\xc1\xf3\x92\x9d\x52\xe6\xcb\x6b\xeb\x2a\x13\x2c\x2f\x09\x22\x3c\x9d\x7d\xce\xd3\xfa\x2e\xed\x2b\xcb\x21\x47\x5e\x52\xd8\x20\xca\xc9\x02\x27\x57\x27\xe6\xf1\xe4\xd0\x2c\x8b\x0f\xae\x8e\xc2\xd3\x4b\xfe\x73\xfa\xf8\xb3\xd4\xb2\x1c\x74\x9d\xc3\x71\x16\x97\x00\xe8\x57\x5f\x7d\xd5\x1e\x6a\x65\x62\x19\x37\x40\xb4\xab\x33\x54\xd0\x4b\xb5\xf6\xca\x7a\xa5\x7b\x7f\xbc\xe5\x4f\x94\x42\x35\xaa\x4c\x74\x29\x9a\xfd\xbc\x3e\xe2\x8e\x49\x6a\xd1\xf5\x4d\xeb\xce\x44\xfb\xda\xf7\x8f\x6e\xfd\x3f\x6f\xcf\x36\x7f\x14\x78\xb8\x6b\x8c\x59\x21\xa2\x0d\x63\xcc\x76\xbc\x47\x2a\x20\x22\xf3\xf2\xcb\x2f\x63\x7d\x7d\x9d\xd7\x47\x2a\x8f\xac\x36\xb2\xce\x25\xc3\xb2\xae\x00\xd2\x97\x4e\x4b\x10\x90\x82\xc1\x05\xde\xc6\xe1\xfe\x12\xc1\x92\xb8\xed\x76\x9b\xb6\xb6\xb6\x70\xf4\xe8\x51\x13\xdf\x13\x61\xac\xe5\x61\x00\x6f\xb7\xa8\x75\xe0\x19\x7d\x60\xab\xfc\xb0\x17\x52\x21\x31\x10\x90\x36\x32\x12\xa9\x33\x40\xb4\xdf\x0e\xc9\x04\x53\xea\x8c\x83\xe4\xe8\xa4\x1e\x94\xa4\x2c\x10\xf6\x5b\x0a\x69\x6e\x5f\xbd\xf4\x70\xa3\x1c\xbe\xb9\x5e\x09\x36\x28\xba\x65\x5c\x03\x30\xa5\x52\xc9\x82\x87\xd4\xf8\x5c\x58\x38\xbf\x78\xe6\x2e\xad\xee\x1a\x1b\xcb\x06\x03\xf3\x77\x59\x11\xce\xf1\xb5\x78\xe6\x66\xb8\x4d\xe7\xa2\xd3\x65\xa1\x64\x95\xe9\xea\x98\x2e\x90\xca\xea\xec\xae\x30\x39\x2c\x71\xe5\x81\x0c\xbe\xb8\xc0\x5a\x6a\x47\x09\x9e\x12\xa4\x81\xfe\x4e\x92\x67\x31\x49\x6b\x8c\x03\x57\xd2\x26\x93\x93\x93\x34\x35\x35\x45\x31\x68\x18\x00\x26\x91\x2b\x45\xe1\xe6\x48\x77\xe3\xdd\x99\xd6\x3b\xf7\x47\x83\x55\x65\x60\x14\xc8\x23\x00\x9a\x10\x86\xca\xe8\xb6\x67\xda\x8d\x52\xb8\x71\x6b\xaa\xf5\xd6\x8f\x0f\x6d\xff\xfd\xa5\x85\xed\xbf\x5f\xaf\x04\xef\x68\x32\x4b\x00\xee\x11\xd1\x3a\x80\x2d\x44\x43\x94\x2e\x11\x85\x8b\x8b\x8b\xb8\x7c\xf9\xb2\xbd\x7a\x52\x2a\x08\xce\x3b\x97\x72\x91\x6d\x20\xc3\x79\x1e\x31\xa9\xf9\x08\xcc\x13\xd9\x84\xae\xb0\x2c\x74\x4e\xe2\x14\x0a\x05\xf5\xc9\x4f\x7e\x12\x33\x33\x33\x88\x67\x9c\xcb\x00\x6a\x00\xf6\x18\x63\xe6\x8b\xa1\x3a\xfc\xe1\xf7\xc6\x7f\xe3\xb1\xc5\xea\x73\x8a\xd7\x27\x39\x6f\xd4\x9a\x1e\x91\x5f\x82\x24\xbc\x7b\xd8\x3a\xf3\xbb\x6a\x5d\x4e\x9c\x9a\x62\x60\xb0\x5b\xd0\x6f\xfe\xd3\xd1\xcd\xff\xe1\xea\xde\xe6\x25\x10\xea\x00\x9a\xf1\x92\x9a\xde\xdd\xdd\xd5\x5f\xf9\xca\x57\x5c\x7c\xc8\x7a\xce\x0a\x77\xc5\xe7\x2e\x2b\x9e\x74\xae\xb0\x61\xe3\x67\xb5\x61\x96\x73\x75\xb0\x61\xca\x94\x71\xb2\x68\xe6\x34\xe4\xc5\x75\xe5\x07\x0c\x90\xbb\x21\x68\x95\x69\x86\x69\xbb\xbc\x36\x57\x00\xf4\x6f\xfd\xd6\x6f\xa9\x62\xb1\xa8\xe2\xf7\xa2\x31\xa6\x0a\xa0\x4a\x44\x53\xc6\x98\x29\x22\x9a\x02\x50\x83\x41\xad\x1c\xa8\xf1\x5a\xcb\xab\xf9\xa1\x2a\x13\x0c\xda\xbe\x69\x6d\x97\x82\xcd\xb6\x6f\xb6\x0c\x4c\x9d\x88\xea\xc6\x98\xf5\x18\x30\x36\x11\x6d\xa6\x6c\xc4\x1f\x91\xea\x2f\x7c\xe1\x0b\x41\xa1\x50\x50\xdd\x6e\x37\x8f\x26\x17\x4f\xf2\xea\x04\xe4\xf0\x81\x9f\x00\x06\xa4\x51\x5c\x16\xc4\x13\x4b\xb3\xdb\xa5\xa9\x52\x08\xae\xb5\xd6\x6f\xbe\xf9\xa6\xb9\x70\xe1\x82\x1d\xa6\x24\xdd\x9e\x88\x94\x26\x78\x1b\x95\x6e\x63\xbe\x5e\x3a\x58\xed\xf8\x53\x3d\x33\x23\xb6\x24\x88\x0f\x52\x18\x30\xf6\x7d\x7e\x4c\x69\x1d\xcf\xa3\xf7\x0a\x4c\xa7\x30\x04\x5f\xd3\x9e\xfd\x5b\xa5\x0b\x6d\x5f\xbf\xbd\x36\xda\xbd\x6f\x28\x9a\xef\x00\xa2\xd5\x96\x27\x9e\x78\x02\xb5\x5a\x8d\x6e\xdc\xb8\x91\xa7\xfd\xa5\xa6\xb5\xf1\x04\x81\x7d\x3c\x76\x59\x01\x3c\x5f\xeb\xf8\x50\x86\xfb\x65\x59\x39\x1c\x5a\x49\xa4\x95\x74\xe6\x59\x54\x52\x08\x79\x1e\x59\x96\x95\x1c\x46\xb8\xac\x36\x4e\x0f\xb7\x26\x00\x77\xbd\x65\x47\x90\x34\x70\x4b\x4b\x5a\x4a\x2e\xeb\x8c\x6b\x5f\x17\x4f\x24\xcd\x3c\x0e\x4f\x2f\xe9\x32\x8b\x8b\x8b\x74\xf8\xf0\x61\xe3\xfb\x3e\x00\x68\x22\x0a\x89\x28\x40\x64\x21\xb4\x10\x59\x0b\xbb\x20\x6c\x07\x9e\xd9\xda\x29\xe9\xd5\xed\x72\xb8\xbc\x5d\x0e\x17\x9b\x45\xbd\x18\x7a\x58\x31\x30\x2b\x44\xb4\x02\x60\x95\x88\xd6\x8c\x31\x9b\x44\x54\x47\xb4\x99\xb2\x13\xef\x17\xd1\x6b\x6b\x6b\xae\x83\x8a\x39\x6f\x5c\xd6\xa3\x94\xa5\xac\x76\x71\xa5\x4b\x9d\x00\x26\x81\x80\xa3\x8d\xcc\xc8\xfa\x73\x20\xe1\xe6\x9c\x14\xac\x24\xed\xc5\x8b\x17\xcd\x85\x0b\x17\x78\x3e\xc6\x5e\xe6\xd4\xf1\x8d\x6e\x16\x75\x67\x61\xb3\xf4\x70\x74\xa5\x02\x93\x7a\x2e\x0e\x49\xb7\xc8\x32\x29\x58\xe9\xc2\xb0\xe6\x7b\x3d\xc8\x3e\x00\xf6\x3c\xc7\xc9\xf9\x7a\xe9\x09\x22\x2c\xaf\x56\xbb\xcb\x5a\x45\x27\x49\x1b\x63\xa0\x94\x32\x53\x53\x53\xe6\xd2\xa5\x4b\x83\xc6\xdd\x92\x4f\xd2\xb9\x86\x86\x3c\x6d\x96\x99\xe9\x02\x13\x6e\x62\x67\xb5\x85\x2c\x8b\xb7\xb1\x14\x0e\xf9\x2b\x05\x8b\xff\x4a\xd3\x37\x4f\x01\x65\xe5\xc1\x9d\xac\xbf\x0c\xcb\xa2\xcd\x95\x67\x56\x39\x83\x3a\x4a\x16\x5d\x9c\x87\x59\xe5\xf1\xb6\xa0\x9d\x9d\x1d\xfd\xea\xab\xaf\x9a\x47\x1f\x7d\x14\x85\x42\x01\x71\x58\x18\xff\xb5\xe3\xbf\x5d\x00\x3b\x88\x2c\x88\xad\xf8\xef\x3e\x80\x75\x00\x6b\x44\xb4\x16\x3f\x6f\x02\xd8\x22\xa2\x06\x80\x16\xe2\xeb\x3f\xc2\x30\xd4\x7f\xf7\x77\x7f\x87\x9b\x37\x6f\x4a\x59\x92\x7c\x90\xf2\x91\x65\x7d\xb9\xc0\x5a\x86\x19\x20\x3a\xe2\x2c\x2b\x53\x97\x35\xe1\xd2\x0e\x7d\xdd\x19\xe9\x2e\x9b\xd2\x44\xa5\x52\x89\x16\x16\x16\x30\x32\x32\xa2\xe3\xe5\x59\x13\xff\x2a\x10\xa9\x7a\x29\xe8\x28\x90\xb7\x6f\xab\x74\x3c\x3a\xa3\xd4\xf4\x96\x56\x09\xfd\x77\xcb\x26\x64\x47\x7e\xbd\x23\xe7\xe5\xaa\x4a\x3a\x6d\xb4\xea\x15\xc7\x65\xf3\x1f\xbe\x56\x93\x7b\xb7\x8b\xe7\x4a\x81\xda\x5d\xa9\x76\x6e\x07\x5e\x34\x5c\xb1\xc7\x0d\x9e\x3f\x7f\x1e\x97\x2e\x5d\xd2\xd3\xd3\xd3\xb4\xbb\xbb\x9b\x57\x77\x97\x06\x96\xd6\x44\x1e\xcf\x78\x7b\x88\x8a\x3a\xe3\x66\x59\x2b\x59\xd6\x07\xcf\x3f\xab\x8d\xa5\xd6\x06\xd2\x20\x26\xb5\x38\xc4\x3b\x2f\xcf\xa5\xed\x64\xde\x70\x84\x4b\xba\x80\x7e\xf0\x74\x75\xf8\x14\x5d\xe7\xcf\x9f\x57\x4b\x4b\x4b\x49\xbc\x6a\xb5\xaa\x3a\x9d\x8e\xcb\xe2\x72\xb9\xac\x7a\xf2\xf8\xce\x3a\xbf\xf6\xda\x6b\xe6\x91\x47\x1e\x41\xa1\x50\xd0\xe8\x81\x47\x00\xa0\x6b\x8c\xd9\x25\xa2\x5d\x44\x16\xc4\x36\x80\x7a\xfc\x67\x41\x64\x3b\xfe\xb3\x80\xd1\x41\x04\x1a\x61\x10\x04\xe6\x7b\xdf\xfb\x1e\xae\x5f\xbf\xce\xcb\xce\xe2\xaf\x6c\x1b\xa9\x90\xb2\xda\x4e\x86\x27\xce\x02\x07\x0f\x74\x99\x98\x52\x43\x49\xad\x66\xd3\x59\xa7\x33\xd2\x9a\x30\x0c\x4d\xbb\xdd\xa6\x23\x47\x8e\xc0\x4e\x92\xda\x09\x53\x00\xca\x10\x68\x6d\xb4\xb3\x3d\xb5\x5b\x98\x99\x6c\xfa\xf3\xc9\x26\x2e\xc4\x13\xa0\x76\x9d\x1b\x71\x87\xe7\x5b\x46\xa3\x63\xd0\x41\x60\x3b\xef\xac\xa9\x62\x90\xf8\x45\x73\xa7\x26\x26\x9a\x04\xd0\x18\x78\x86\xc6\x66\x76\x8a\x67\xc7\xda\x9e\xb7\x56\xed\xde\x6c\xfb\xba\x1d\xd3\x0a\x22\xd2\xe7\xcf\x9f\xc7\x91\x23\x47\x70\xef\xde\x3d\xec\xec\xec\x58\x3e\xf0\x5f\xce\x07\x39\x24\x91\xa6\x36\xf7\xe7\x7c\xe5\x1d\x9c\x0f\xfb\x24\xef\x65\x9c\x94\xc9\x2c\xe8\xc9\xca\x1f\x22\x8e\xcb\xdc\x05\xf3\xe7\x42\xa5\x45\x1c\x29\x98\xd2\xf2\xe1\x79\x4a\x81\x74\x99\xff\x52\xf6\xb2\xac\x18\x69\x39\x6b\x00\xe6\x73\x9f\xfb\x9c\x7a\xe6\x99\x67\x68\x7e\x7e\x1e\xe7\xce\x9d\xf3\x2e\x5c\xb8\x80\x73\xe7\xce\xd1\x91\x23\x47\x50\x2a\x95\x88\x81\x49\x16\x2d\xd2\x0a\x97\x16\x9b\xcb\x1a\x4c\xd1\xbc\xba\xba\x4a\xb5\x5a\x0d\x63\x63\x63\x36\x4c\x23\x5a\x09\xe9\x22\x02\x82\x56\xfc\xd7\x8c\xff\x76\xe3\xbf\x26\x90\x5c\x30\x66\x0f\xde\xd6\xb7\x6f\xdf\xc6\x9f\xfd\xd9\x9f\xe9\x8d\x8d\x8d\xbe\xfe\x95\xc1\x67\x09\xf6\xd6\x49\xde\xe6\xb5\x5d\x0a\x30\xe5\x4d\x6e\x40\xba\x70\xd7\xf8\x8e\xbf\xbb\x04\xc8\xc6\x73\x81\x91\x02\x40\x1b\x1b\x1b\xe8\x76\xbb\x98\x9f\x9f\x4f\x3a\xa3\x4d\x6b\x60\xbc\x50\x01\xf7\x47\xbb\xf5\xfd\x5b\xa5\xc3\x95\xae\x1a\xb7\xe0\xd0\xdb\xde\xd1\x2b\x86\xc0\x4a\x4d\xec\x06\x6e\x69\xa4\xad\x0e\x18\x4e\x24\x45\x98\x62\x7a\xcf\x14\xef\xf3\xf0\x0c\x8d\x4c\x35\x0b\x67\xf6\xec\x14\x26\xb7\xca\xc1\xed\x46\x29\xdc\x01\xf5\x18\x6f\x37\x8a\x8d\x8d\x8d\x61\x69\x69\x89\x74\x34\x9d\xcd\x01\x21\x45\x59\x9a\x82\x3e\x7f\x6e\x81\x70\xbf\x2c\x0b\x81\x3f\x4b\x10\xc8\x02\x06\x2e\x4c\x2e\xb0\x91\xf4\x49\x61\x94\xd6\x8b\xab\x5c\xd9\xa1\xb2\x3a\x1a\x44\xbe\x32\x7f\xa9\x25\x65\xfe\x52\x36\x13\x7a\x94\x52\xb4\x6f\xdf\x3e\x7c\xf4\xa3\x1f\xa5\x8f\x7e\xf4\xa3\x14\x4f\x50\xda\xeb\x0a\x3c\x20\x9a\x53\x2b\x16\x8b\x98\x9f\x9f\x37\x0f\x3d\xf4\x10\x5d\xb9\x72\x25\xcf\x2a\xcc\xfb\xb5\x74\xc1\x41\x57\x52\xdf\x46\xa3\x81\x6b\xd7\xae\xe9\xd5\xd5\x55\x1a\x1b\x1b\x33\xd5\x6a\xd5\xb6\xad\x1d\xba\x58\x60\xe8\x22\xb2\x44\xba\x14\x1d\xbd\x69\xad\x13\x0d\x20\xbc\x7f\xff\xbe\xf9\xc9\x4f\x7e\x82\x1f\xff\xf8\xc7\xae\x09\xe1\x2c\x9e\x4b\x70\x77\xf1\x5c\xf6\x71\x97\x4c\xa6\x40\xc9\x63\x91\x5d\x99\x49\x2d\x07\xf6\x2e\x51\x4a\x6a\x51\xa9\xa5\x38\x93\xf5\xca\xca\x8a\x39\x7c\xf8\x30\x55\x2a\x15\x9d\x68\xfc\x64\xff\x17\xa9\xdd\xa2\x0e\x9b\x45\xdd\x3e\xb0\x59\x3e\x56\xd0\x54\x4e\xed\xdf\x88\xa9\x91\xbb\x75\x79\x58\xea\x5d\xc6\x21\x20\xfa\xb8\x28\x2a\xb3\xb7\xb5\x3d\x9d\x58\x19\x2a\xd4\xda\xde\x23\xf3\xf5\xd2\xb1\xae\x6f\x96\xd6\x47\x82\x75\x4d\xd1\x3e\x0f\xc4\x93\xa6\x33\x33\x33\x66\xdf\xbe\x7d\xb8\x76\xed\x9a\xd4\xfe\x52\xbb\xf3\xc6\xcb\xb3\x4a\xb2\x3a\xa8\xab\x16\xae\x1a\xdb\x30\x49\x03\x80\x3e\x60\x73\xb5\xb1\x8b\x7b\x5c\xb0\xa4\x05\x21\x35\x99\xec\xf8\x2e\x2d\x28\x41\x4c\x8b\xfc\x24\x68\xc8\x32\xe5\x6f\x92\xcf\x53\x4f\x3d\x45\xcf\x3e\xfb\x2c\xaa\xd5\x2a\xe2\x73\x57\x7c\x22\x2a\x2a\x50\x61\xbe\x5e\x9c\xac\xb6\xbd\x91\xed\x52\x10\xc4\xb2\x46\xa5\x52\x49\x1f\x3f\x7e\x9c\xde\x78\xe3\x0d\x59\x97\x41\xa0\x21\xad\x8b\xbc\xb8\x06\x80\xda\xda\xda\xd2\xd7\xae\x5d\xa3\x8b\x17\x2f\xea\xf8\x46\x00\x53\x28\x14\x74\xac\x38\xad\x25\xa2\x11\x4f\xa6\x1a\x63\xf4\xe6\xe6\xa6\xd9\xdd\xdd\x35\x5f\xf9\xca\x57\xf4\xd5\xab\x57\xcd\xfd\xfb\xf7\x5d\x4a\x59\x4e\x35\xd8\xe7\x3c\x6b\xc4\x15\xd7\x38\xe2\x4a\x00\x4a\x0a\x95\x13\x25\xbc\xb1\xa4\xa0\xb9\x00\x42\xbe\x67\xe5\x23\x27\x63\x14\x00\xfd\xb9\xcf\x7d\x4e\x55\xab\xd5\xe4\x02\x27\x22\xaa\x22\x5e\xa2\x55\xa0\x83\x17\x6e\x8d\xfd\xf2\x93\xb7\x6b\xbf\x52\x08\x55\xd9\xd5\xeb\xb8\x4b\xc2\x24\x58\x48\xd8\x4b\xbc\x0c\x5c\x13\xac\xbd\xd5\x5a\x1b\xcb\xa0\xe5\xeb\x77\xae\xec\xdb\xf9\xdf\x2f\x1d\xd8\xfe\xce\x6e\x41\xaf\x1b\x98\x26\x22\x73\xb3\x63\x8c\xd1\xed\x76\x1b\x5f\xfe\xf2\x97\x5d\x13\x4e\xd2\xe5\x09\xa2\xe5\x57\x56\x5c\xee\x0f\xb8\xf3\x71\xa5\x95\x71\x5d\xf4\x64\xd1\xca\x69\xca\xa3\xd9\x45\x47\x56\xd9\x83\xf2\x01\x7b\x77\xd5\xc7\x59\x87\x5f\xf9\x95\x5f\x51\x07\x0f\x1e\xb4\xef\x7e\xfc\x57\xf4\x42\x94\x1f\x5e\x1d\x3d\xfe\x81\x9b\x63\xbf\xb3\x5b\xd0\xcb\xdf\x7e\xe4\xfe\xff\xb1\x59\x0e\x36\x63\xad\x1e\x18\x63\x82\x7a\xbd\x8e\x6f\x7d\xeb\x5b\xa8\xd7\xeb\x3c\x5f\x17\xe0\x66\x81\xf0\xa0\xfa\x38\x79\x74\xfc\xf8\x71\xf5\xce\x3b\xef\x68\x00\x78\xfe\xf9\xe7\xd5\xdf\xfc\xcd\xdf\x68\xee\x17\x83\x5f\x9e\x0c\x0c\x55\xce\x03\xd2\x26\xc3\xfb\xea\x2d\x77\x8e\x4a\xcd\x28\xad\x0d\xa9\xc9\xa4\x56\xe5\x7f\xbc\x30\x59\x46\xd2\x8d\x8b\xc5\x22\xcd\xcd\xcd\x19\xa5\x94\x89\x2d\x0f\x13\x7f\x45\x0b\x10\x68\xb5\xda\xdd\xaa\x74\xbc\xea\x9e\x9d\xc2\x01\x05\x52\x64\x04\x0a\xf0\x13\x90\xc0\x28\x62\x73\x1b\x36\xba\x01\x12\xeb\x22\x56\x38\xfd\x36\x00\xcf\x32\xde\x48\x46\x20\xf8\x5a\x4d\xed\x6d\x14\x9f\x9e\xdd\x29\x8c\xae\x57\xba\x37\x9b\x45\xdd\x06\x60\x69\x35\x9e\xe7\xe1\xc2\x85\x0b\x98\x9b\x9b\xa3\xb7\xdf\x7e\x9b\xd7\x55\x9a\x87\x96\x14\x97\x56\x23\x91\x46\xc6\xe5\x5a\x9c\x53\x2e\x4d\x4b\xa9\xd5\x21\xe2\x72\xfa\x80\xfe\xb6\x91\x56\x88\xcb\x6a\x90\xd6\x8c\xd4\x6c\x2e\x4d\x8c\x21\xf3\xd1\x70\xd7\xd9\x35\xcc\xc1\xb9\x73\xe7\xe8\xb9\xe7\x9e\xa3\xf8\x73\x72\xb2\x56\x06\x80\x91\x62\x97\x26\x9e\xbc\x3d\xfe\xb1\x0f\xdc\x1a\xfb\x1f\xab\x1d\xef\xe3\x95\xae\xf7\xa8\xaf\xd5\xca\xed\xa9\xd6\x0d\x13\x4d\x74\x85\x44\x84\x72\xb9\xac\x2b\x95\x0a\xae\x5f\xbf\xae\x05\x3d\x5c\xf3\xf2\x72\x39\xdd\xae\xb6\x94\x5a\x1b\x8e\x78\x66\x7d\x7d\x3d\xc9\x33\x96\x1b\x70\x3f\x57\x1a\x91\xaf\xab\xad\x5c\x6d\x21\xad\xc4\xbc\xf6\x93\xe1\x7d\x6d\xca\x27\x47\x81\x7e\xe4\xc9\x02\x07\x17\x91\xbc\x10\x29\xa4\x94\x11\x6e\x96\x96\x96\xcc\xa5\x4b\x97\x92\xbb\x67\xa9\x77\xae\x00\x19\x63\x28\x54\x06\x2b\x63\x9d\xf5\xc9\xdd\xc2\xec\xc4\xae\x3f\xd7\xff\x65\x2c\xb3\x18\xd8\xc6\xb0\xe8\x29\x0d\x0c\x3d\x6b\x24\x46\x87\x04\x50\xd8\xb6\xf4\x38\x8c\x5f\x04\x6c\x0f\x03\x52\xa0\xf2\xf8\xae\x7f\xee\xf0\xfa\xc8\xa9\xae\x6f\xee\xdc\x1f\xed\x6e\x18\xc0\x1e\x20\x69\x00\x98\x5a\xad\x46\x67\xcf\x9e\x45\xa1\x50\xc0\xdd\xbb\x77\x65\xa7\xe1\xfc\x92\x8d\xe5\x12\x38\x1e\x57\x02\x10\xcf\x53\xa6\xb7\x69\x5c\x82\x2b\xdb\xc2\xd5\x36\x52\x91\xc8\xf2\x65\xdb\x03\xe9\xf6\x76\x75\x24\xa0\xbf\x03\x48\x3e\x48\xd9\xe3\x71\x25\xff\x08\x80\x79\xf1\xc5\x17\xd5\xc1\x83\x07\x51\x28\x14\x14\x45\x17\x81\x15\x00\x8c\x10\xa8\x32\xd5\xf4\x0f\x7c\xfc\xda\xd4\xbf\x3e\xb9\x32\xfa\x6f\x8a\x21\x1d\x8e\x3f\x90\x1a\x19\x6f\xf9\x27\x1a\xa5\xf0\x67\x6b\xa3\xdd\x35\x03\x13\x5a\x99\x9b\x9c\x9c\x34\xdd\x6e\x97\xee\xdd\xbb\x97\x45\xaf\x8b\xfe\xbc\xba\xf0\x77\x99\x9f\x2b\x1f\x97\x6c\xb8\x86\x17\x59\x3c\x92\xed\x92\x55\x4e\x96\x65\x68\xc4\xaf\x4b\xfe\x34\x90\xde\x00\xe6\xd2\x54\x5a\x64\x94\x55\xb8\x0b\x6c\x24\x33\x79\xe1\x52\xb8\xcd\x89\x13\x27\xa8\x54\x2a\xa5\xca\x8e\x81\x04\x1d\x4f\xeb\xb5\xb1\xee\xc6\x6c\xa3\x38\x3f\xd6\xf6\xa6\x7a\xe0\x61\x7b\xac\x89\x3f\x06\xa2\x1e\xe7\x92\xb0\xb8\x70\x6e\x33\xc5\x87\xa7\xf0\xf3\x4c\x93\x65\xdc\x38\x72\xf4\xf1\x2d\xbb\x31\x2e\xce\x98\x40\x54\x0a\xd5\xc2\xc2\x46\xe9\xa3\x93\xbb\x05\x75\x7f\xb4\x7b\xa7\x55\xd0\x41\x14\x8d\x08\x80\x56\x4a\x61\x6e\x6e\xce\x9c\x3b\x77\x8e\xe2\x7d\x1f\xb6\x9e\xd2\x32\x70\x69\x61\x2e\x70\x2e\x2b\x42\x6a\x5d\x0e\xfc\x52\x00\xa5\x05\xe1\x02\x24\x49\x87\x4b\x1b\x81\xc5\x75\xc9\x0a\x67\xb5\x14\x3a\x29\x7c\x80\x9b\x26\x19\xae\x1d\x71\x01\x80\xe6\xe6\xe6\xa8\xd1\x68\xe8\x97\x5e\x7a\x49\xc5\x97\x6b\xd9\x89\xcf\x92\x31\xa6\xe2\x1b\x9a\x78\x6c\x79\xf4\x99\x8f\x5f\x9b\xfe\x9f\x66\x76\x0a\xbf\xa6\x40\x15\xbe\xe9\xcf\xd3\x98\x9c\xde\x29\x1c\x5c\x1a\x6f\x5f\xdc\x29\x86\x3b\xf1\xc6\x2c\x6d\x8c\x31\x0b\x0b\x0b\xe6\xe2\xc5\x8b\x92\x2e\xce\xe3\xbc\x76\xe3\x72\x2d\xfb\x80\xab\x9e\xb2\x3f\x64\x01\x36\x77\x52\x49\x70\x3f\x5e\x6e\x96\xc5\x9a\x05\xf4\x3c\x0e\x58\x1c\x4e\x7f\x52\x7f\xf9\x59\xbd\x24\x8c\x3b\x89\xfc\x32\xae\x4b\x28\x25\x53\x24\x23\x92\x72\xae\x5c\xb9\x62\x0f\x42\xb1\x71\x12\xcb\x83\x88\xd0\xf2\x75\xb8\x59\xe9\xd6\xf7\xd5\x4b\x07\x47\xba\xde\x18\xb3\x33\x92\x6f\x53\x12\x20\x60\x35\xa1\x78\x89\x56\xd6\x90\x84\x28\x24\x13\xb3\x20\x7e\xdb\xa4\xbb\x0b\x02\x50\x86\x46\xa7\x77\x0a\x1f\x38\xbc\x51\x3e\x0d\x60\x6d\x73\x24\x58\x0f\x94\xd1\x94\x8c\x81\x22\x77\xfe\xfc\x79\x1c\x38\x70\x80\x76\x77\x77\xb1\xb5\xb5\xe5\xb2\x12\x78\xee\xbc\xc3\x66\xbd\xbb\x00\x99\x5b\x83\x32\x2e\x07\x1c\x97\xb6\x93\x1d\xdb\xa5\xa9\x12\x56\xa3\x5f\x56\x80\x7e\xa1\xe4\x71\x65\x7b\x4b\x50\x72\x85\x4b\xde\x24\xb2\xf8\xab\xbf\xfa\xab\x74\xfe\xfc\x79\x3c\xf9\xe4\x93\xd6\x5a\xf6\x11\x59\x19\x65\x32\xa8\xee\x6d\x14\x0f\x7d\xe4\xdd\xc9\xdf\x3e\xb3\x58\xfd\xb7\xe5\x40\x3d\x44\x7d\xfb\x84\xa3\x36\x2e\x07\x6a\x6e\xa2\x55\x28\xdf\x98\x6a\x5d\x0e\x3c\xd3\x31\xc6\x84\xf1\xce\x80\xf0\xd8\xb1\x63\x74\xeb\xd6\x2d\x74\x3a\x1d\x17\x08\xc8\x3a\xba\xea\xc9\xeb\xe2\x8a\xcb\xe3\xb8\xac\x2a\x57\x27\x76\x59\x3d\x12\x7c\x79\x7c\x97\xe5\xc1\xf3\x91\x6d\xef\xa2\xd1\x95\xbf\x01\xb3\x38\x14\x4b\xec\xca\x30\xcb\xec\xe2\x42\x0f\xa4\x05\xca\xc5\x94\x2c\x66\x12\x00\xf3\xc6\x1b\x6f\x98\xf3\xe7\xcf\xdb\xf4\xe9\x3f\x82\x6a\x94\xc2\x56\xbd\x1c\xec\xec\xab\x97\x0e\x95\xba\xaa\xd2\xb7\xaa\x22\x25\x04\xe8\xa1\x08\xb1\xca\xb9\xe2\xa5\xd2\xe4\xe4\x9b\x58\x29\x00\x81\xbc\x72\xa0\x0e\xed\xdf\x2c\x7d\x68\xb6\x51\x9c\x6a\x16\xf5\x72\xa3\x14\xb6\xe2\xfd\x6a\x14\xef\xfd\x30\xd5\x6a\x95\x0e\x1f\x3e\x6c\x16\x16\x16\xe8\xad\xb7\xde\x92\x9d\x22\xaf\x73\xdb\x12\xfb\x78\xc5\xe2\xb8\xb4\x86\xcb\x04\x95\x16\x80\xcb\x52\x71\x29\x02\xee\xcf\xf3\xc2\x80\x3c\x6c\x38\xd7\xa2\x92\xab\xb2\x3e\xdc\x3f\x65\x5d\x3d\xf6\xd8\x63\xea\x93\x9f\xfc\x24\x4d\x4e\x4e\x42\x29\xa5\xe2\x53\xb6\x4a\x00\x8a\x30\xa8\x54\xdb\xde\xcc\x13\x77\xc7\x3e\xf6\xc1\x1b\x13\xff\xfd\x5c\xbd\xf8\x69\x4f\xab\x1a\xa5\x0e\xc4\x61\x6d\x1f\x3d\xa8\x6a\xdb\x3b\xa2\x0c\x56\xef\x4c\xb4\xdf\x85\xa2\xae\x31\x26\x04\x60\xca\xe5\xb2\xfe\xd1\x8f\x7e\xe4\x02\x4e\x5e\x3f\xc9\x87\x2c\x1e\xba\xda\xd8\x65\xc1\x70\x7f\x0e\x44\x9c\x77\x06\xfd\xed\xed\xe2\xa5\x4d\x07\xa4\xe5\x42\x96\x05\xa4\xe9\x76\xa8\x48\x67\x7b\x25\x16\x87\x86\x9b\x38\xb0\x44\xae\x49\x12\xa9\x11\x73\x27\x82\x1c\xf9\xf6\x69\x14\x00\xb4\x6f\xdf\x3e\xbb\x21\x0c\x88\x4d\x48\x22\x32\x20\xa0\x5e\x0e\x9a\x3b\xa5\xb0\x39\x5f\x2f\x1d\x2e\x86\xaa\x2c\x33\x4a\xa9\x62\x59\x23\xfb\x63\xd0\xbb\x8a\x16\x40\xdf\x55\xe1\x82\x40\x6b\xa1\x70\x49\x41\xf2\x4e\x50\x06\xd5\x89\x5d\xff\xcc\xc1\xcd\xf2\xb9\xb1\x96\x6f\x76\x4a\xe1\x7a\xb3\xa0\x3b\xa0\x5e\x03\x28\xa5\x4c\xb5\x5a\xa5\xb3\x67\xcf\x62\x61\x61\x01\x31\x80\xb8\x78\xc5\xdf\x65\xa3\xf2\x86\xcd\x8a\x2b\xf9\x0d\x96\x16\xe2\xd7\x05\xfc\x12\x34\x38\x27\xf9\x33\x9f\x23\x91\x69\x6d\x38\x89\xb4\xdc\xb9\x64\x8e\x3b\x02\xa0\x9f\x7f\xfe\x79\xba\x70\xe1\x02\x1d\x3b\x76\x0c\x4a\x29\x15\x0f\x49\x0a\x88\x3e\x92\x2c\x97\x03\x35\xf9\xd0\x5a\xe5\xec\x07\x6f\x8c\xff\x57\x27\x56\x2b\xff\xe5\x48\x57\x1d\xa7\x68\xe8\x92\x9c\xdb\x69\xac\x45\x4a\x40\xef\xca\x01\x82\x02\x8a\xd3\x3b\xc5\x93\x5b\x23\xc1\x6b\xf7\x2b\xc1\x7d\xb0\xb3\x3b\xcf\x9e\x3d\x8b\x20\x08\xb0\xb2\xb2\xe2\x02\x36\x4e\xb3\xce\x08\x77\xa8\x9b\x54\x3d\xb5\x23\xae\x9c\x47\xe4\x0a\x5d\x96\x0d\xa4\x01\x80\xc7\xe1\x7d\x92\x77\x09\xde\x3e\x9c\x36\x09\xee\x92\x3e\xfb\x9e\xc8\x8b\xeb\xb3\xfa\x2c\xb3\x46\x76\x7e\x97\x16\x92\xc8\xe7\x8a\x2b\xe3\x81\x85\xd3\xf2\xf2\x32\x88\x28\x39\x82\xcd\x9e\x8f\x81\x18\x40\xa0\xc8\x6c\x8c\x04\x8d\x76\x41\x77\xf7\x6d\x15\x0f\x17\xb4\x2a\xa6\xf6\x80\xc0\x9e\x35\xea\x68\x39\x46\x55\xaa\x15\xf9\x97\xb2\x0c\x43\x92\x4a\x71\xd0\x60\x99\xf6\x36\xa7\x12\x88\xc8\x2b\x86\xb4\x6f\xb6\x51\xfc\xe0\xc2\x66\xf9\x91\x52\x48\xcd\x7a\x39\xdc\xe8\x78\x46\x47\x32\x1a\x9d\x41\x62\x01\xe4\xdc\xb9\x73\x38\x79\xf2\x24\x95\xcb\x65\x6a\x34\x1a\xd4\x6e\xb7\x5d\xda\xdd\x85\xf6\xb6\x11\x5d\x9a\xcb\xf5\x2b\xe7\x2f\x5c\xfc\x77\x75\x62\x97\x42\x90\xca\xa1\xcf\x84\x45\x7f\x47\xca\xca\x83\x2b\xac\xbe\xf0\xe7\x9f\x7f\x9e\x9e\x7d\xf6\x59\x9a\x98\x98\x40\xa9\x54\x52\xf1\x06\xae\x02\xa2\x7b\x80\xcb\xbe\xa6\xda\x81\xad\xf2\x43\xcf\xdc\x18\xff\xfc\x99\xc5\xea\xef\x4f\xed\x16\x3e\xec\x19\x55\xe1\xe7\x5a\x50\x32\xc9\x6d\x1b\xd0\xce\x63\x51\x32\x6d\xe5\x19\x35\xb6\xa7\x59\x98\xbf\x3b\xde\xbe\xb4\x5b\xd4\x0d\x10\x02\x22\xd2\x4a\x29\x33\x3f\x3f\x6f\x2e\x5f\xbe\x2c\x69\xe5\x3c\xe5\x1d\x33\x4b\x89\xca\x3e\x25\xc1\x9c\xa7\x71\x29\x5f\x19\x4f\x5a\x0f\xb2\x2c\x17\x90\x4b\x9e\x4b\x85\xcd\xc1\x84\x97\x2f\xbb\x50\x92\xaf\x27\x3c\xed\xb3\xcb\x94\xc9\x1a\x1f\xbb\x50\xcc\x35\x6b\xeb\x42\x30\xc9\x44\x03\x80\x16\x17\x17\x75\xbc\xd2\x92\x2c\xd1\xc6\x61\x9a\x88\x48\xc3\x60\x7d\xb4\x5b\x0f\x15\xc2\xb9\x7a\xf1\x88\x67\xc8\x27\x8b\x0c\x26\xaa\x5b\xba\x93\xf3\xb3\x38\x80\x68\x22\x14\x3d\xbf\x84\xdd\x26\x2d\x64\x86\xe2\xd8\x5c\xf8\x10\x7f\xdb\x62\xcb\xb3\x48\x13\xc5\x57\x86\x8a\x23\x81\x3a\x3a\x5f\x2f\x7f\x78\x7e\xab\x74\x40\x19\xb4\x76\x8a\x61\xa3\xeb\x19\xde\x88\x00\x7a\x4b\xd1\x47\x8e\x1c\xc1\xc2\xc2\x02\xbd\xfd\xf6\xdb\xdc\x8a\xe0\x82\xe1\xe2\x97\xd4\x34\x3a\x23\x8d\xb4\x3e\xac\x3f\x17\x34\x69\x9d\x48\x41\x03\xfa\x81\x9f\x5b\x31\x59\x66\x30\x84\xbf\xec\x48\x89\x20\x57\xab\x55\x75\xea\xd4\x29\x3a\x77\xee\x1c\x3e\xf2\x91\x8f\x50\xad\x56\x83\xe7\x79\x0a\xd1\x96\x81\x02\xa2\xeb\x2c\xca\x9e\xc6\xd8\xde\x7a\xf1\xc8\x53\xb7\x6a\xff\xf2\xc2\xed\xb1\xdf\xdf\xbb\x5d\xfc\x64\x51\xd3\x1e\xca\x30\x19\x6d\xbb\xf5\xe6\xb7\x7b\x97\x1a\xd9\x76\x1b\xe9\xaa\x7d\x63\x6d\x9f\x6e\x4f\xb6\x7e\xd6\x51\xba\x45\x44\x21\x10\x9d\xa1\x71\xe8\xd0\x21\xba\x79\xf3\x26\x82\x20\x90\x7c\x91\x9a\x5a\x02\xae\xb4\x02\x81\x7e\xb0\x94\x9d\x9c\x44\x9e\x2e\x25\x9c\x35\xad\xe0\x02\x13\x9b\xb7\x6c\x07\xd7\x33\x4f\x03\x91\x56\xb6\x2b\xf1\xc9\x51\xee\xa4\x50\x65\x99\xd4\x52\xe8\xa4\x79\xca\x51\x4a\x36\xac\x14\xd6\xbe\xe1\xcc\xa3\x8f\x3e\x4a\xf1\xce\x3a\x43\xd1\x35\x0b\x88\x27\xb1\xb4\x86\xc1\x5a\xb5\xb3\xa9\x15\xf4\x6c\xa3\xb8\xe0\x1b\x2a\x24\xc7\xae\x01\x29\x9b\xc3\xae\x97\x5a\xbf\x48\x98\xa8\x9f\xfa\x24\x7e\xac\x99\x80\x64\x0b\x7a\x0f\x63\xac\x75\x13\x7d\x2b\x13\xe5\x07\x80\x9d\x71\x1a\x0d\x5f\xa8\x52\xed\x78\x8f\x2d\x6c\x96\x9f\x9d\xdf\x2a\x1d\x54\xa0\xd6\x4e\x29\x6c\x04\x1e\x34\x45\x27\xbd\x53\xbc\x6a\x44\xc5\x62\x11\xb5\x5a\xcd\x9c\x3f\x7f\x9e\xe6\xe6\xe6\x68\xcf\x9e\x3d\xb4\xbd\xbd\x8d\x76\xbb\xcd\x01\xd5\x25\x30\x5c\x7b\xc8\x61\x47\x5e\x1b\x01\xee\xb1\x33\x7f\x96\x6d\x63\xd3\xca\x8e\x01\x47\x5a\x1b\x57\xe6\x95\xca\x77\x74\x74\x94\xa6\xa7\xa7\xe9\x99\x67\x9e\xa1\xb3\x67\xcf\xe2\xe8\xd1\xa3\xa8\xd5\x6a\x96\x37\x05\xc4\x1b\xb8\x8c\x31\x65\x5f\xd3\xd8\xcc\x4e\xe1\xd0\x85\xdb\xb5\x4f\x3f\x7d\xb3\xf6\xdf\xce\x6f\x95\x7e\xa3\x18\x7a\x07\x14\xc8\x33\xf1\xf7\x4c\xc6\x02\x3e\x28\x3d\xfa\x14\xed\x6b\x95\x4a\xef\xf8\x27\x52\xb5\x96\x7f\xd4\x10\x96\x97\x6b\x9d\x1b\x5a\xa1\x83\xf8\x18\xc9\xd1\xd1\x51\x1d\x6f\xf1\x96\xc3\xb7\x3c\x0b\x8b\xd7\x35\x6b\xbe\x49\xf2\x48\xb6\xb3\xcb\x62\x71\x0d\x03\xa5\xbf\xa4\xcf\x15\x3f\x65\x3d\x08\x7a\x5d\x20\xd4\xd7\xc7\xf9\x50\x85\x6b\x0f\x39\x0c\xe1\x8e\x90\x2e\x58\x0a\xa4\x0b\x10\xa4\x79\x24\x89\x71\x09\xad\x79\xed\xb5\xd7\xcc\xc9\x93\x27\xa9\x58\x2c\x26\xf3\x1c\x76\x7b\x2e\x11\x69\x4d\x46\xdf\xab\x75\xd6\xbb\x9e\xe9\xee\x6d\x14\xf7\xfb\x9a\x4a\xc9\x69\xe9\x56\xc5\x10\x12\x61\xea\xdb\xbb\xc1\xde\x23\xcf\x48\xda\x7a\xdf\xad\x20\xb5\x15\x3e\xf2\xeb\x09\x65\x62\x14\x13\x53\x60\xec\x2f\xfe\xe6\xa5\x3a\xd6\xf6\x1e\x3b\xb8\x51\x7e\xf6\xc0\x56\xf9\x70\x21\xa4\xb0\x51\x0c\x77\xba\xca\x68\x50\xb4\x01\xcf\x1e\xe0\x0c\x00\xb5\x5a\x8d\xf6\xee\xdd\x6b\x4e\x9d\x3a\x85\xfd\xfb\xf7\xd3\xb5\x6b\xd7\xcc\xc8\xc8\x88\x22\x22\x7b\xba\x93\x9c\x7b\x90\x9d\x93\xb7\x13\xe7\x6b\x8a\xb7\x8e\x76\x92\x1a\xd3\x25\x94\xb2\x4d\xb3\x2c\x4f\xd9\x59\x52\xed\xbf\x7f\xff\x7e\x3a\x77\xee\x1c\x3d\xf5\xd4\x53\x38\x7d\xfa\x34\x26\x27\x27\x51\x2a\x95\xac\x75\xe1\x21\xba\xdf\xb7\x44\xa0\x11\x5f\x53\x6d\xbe\x5e\x3a\xfa\xe4\xed\xda\xbf\x7c\xea\xe6\xf8\xef\x1f\xd8\x2c\xfd\xab\x52\xe8\x1d\x24\xd8\x03\x7f\xe3\xca\xda\xe6\xb6\x16\x06\xd2\xba\xc1\x5e\x47\x90\x4a\xc3\x00\x46\x81\x4a\x53\x3b\xfe\xb1\x7a\x39\x7c\xf3\xfe\x68\x77\x15\xd1\x31\x92\x21\x11\xe9\x27\x9e\x78\x02\xf5\x7a\xdd\x6e\xcc\xe2\x8a\x94\xf7\x05\x69\x81\x64\xf1\x01\x2c\x9c\xb7\x9f\x0b\x7c\x78\x07\x86\xe3\x99\xfb\xc9\x76\x75\x59\x8e\xd2\x9a\x91\x96\x84\x2c\x47\x02\x56\x52\x4f\x9b\xc0\x35\x14\xc9\xfb\xe5\xce\x15\x96\x97\x4e\x8e\xa7\xf2\xd2\x03\x00\x3e\xff\xf9\xcf\xab\x4a\xa5\xa2\x00\xd8\x1d\x81\x15\x00\x13\xc6\x98\x3d\x00\xe6\x3c\x43\xf3\x8f\xdc\x1b\xfd\xd0\x33\x37\xc6\x7f\x65\xb4\xa3\x6a\xbd\xa3\x03\xed\xe9\x61\x71\x7d\xc5\x2c\x7b\xcf\x2f\x2f\x8c\xf3\x8b\x01\x0d\x87\xd3\x14\xf8\x20\x2d\x4e\xec\xd9\x10\xa0\xc9\x6c\xd6\x4b\xc1\x3f\xbf\x33\xb3\xfb\x57\x6f\xcd\x36\x5f\x5e\xaf\x74\xd7\x34\xa1\x09\x20\x30\x30\x01\xa2\x6d\xec\xda\xd6\xdf\xde\xd0\xb5\xb6\xb6\x86\x7b\xf7\xee\xe1\xe5\x97\x5f\xd6\xbe\xef\xab\x20\x08\xb2\xda\x81\xbf\x03\xfd\xed\x95\x15\xd7\xc5\xfb\x41\xed\x98\x97\x47\x52\x76\xa1\x50\x50\x4f\x3e\xf9\x24\x00\xe0\xe1\x87\x1f\xb6\xe7\x53\x00\x80\x5d\x1d\x51\x71\x1a\x1f\x26\xb2\x32\x46\xba\xaa\x76\x60\xb3\x74\xf4\xe1\x95\xca\x2f\x1f\xd8\x2a\x3f\x5f\x0a\xe8\x28\x81\xfc\x88\x91\xdc\x9c\x00\x2c\xd3\x5d\xe3\x37\xb7\xeb\x8f\x69\x9b\x6b\xbd\xd2\xf9\xc7\xef\x3c\xbc\xfe\xef\xef\x8d\x75\xaf\x81\x50\x8f\xef\x2b\x09\x8c\x31\xfa\x0f\xfe\xe0\x0f\x64\x27\x72\xf1\xd6\xc5\x0f\xee\x27\x5d\x16\xe0\x66\xf1\x36\x2b\xbf\x41\xed\xe4\xfa\xcd\xab\x43\x9e\x4c\x40\xce\x71\x48\x24\xca\x32\xbb\x6c\x06\xd2\x94\xb2\xce\x64\xfc\x4a\x0d\x94\x37\x77\x92\xa0\xf0\xce\xce\x0e\x8e\x1e\x3d\x6a\x57\x5a\x4c\x1c\x37\x8c\x87\x2f\xda\x10\xcc\x5a\xb5\xbb\xd9\x28\x85\x8d\xb9\xed\xe2\x81\x62\xa8\x46\x92\x61\x89\x05\x00\xdb\xe9\x53\x46\x73\xda\xf0\x89\xee\x5e\xe1\x61\x22\xee\x20\x9d\x2e\xf2\x4f\x59\x21\xf1\xb3\x32\x54\x2e\x07\xde\xd1\x7d\xf5\xe2\xc7\x4f\xac\x56\xfe\xc5\xdc\x76\x71\x5a\x81\x76\x77\x0b\x61\xbb\xeb\x01\x14\x1d\xab\x48\x88\xdb\xc6\x0e\x69\x46\x47\x47\x69\x66\x66\xc6\x5c\xb8\x70\x81\x9e\x78\xe2\x09\x7b\x20\x92\x9a\x9a\x9a\xa2\x95\x95\x15\xa9\xed\x5c\x1a\x8f\xfa\x29\x74\xb6\xab\xf4\x77\xb5\x91\xcc\xc3\xc8\x74\x17\x2e\x5c\xa0\xc5\xc5\x45\xf3\xd2\x4b\x2f\xa9\x27\x9e\x78\x02\xb3\xb3\xb3\x98\x9d\x9d\x8d\x17\x46\xc8\x43\xfc\x2d\x49\x5c\xdf\x22\x80\x11\xa5\x51\xd9\xd3\x2c\xec\x3d\xb3\x54\x7d\xf6\xc3\xef\x8d\xff\xd7\xa7\x97\x47\x7f\x7f\xba\x59\x78\xae\xa0\xd5\x34\x81\xd2\x9d\x2e\x05\x1c\x94\xd6\x01\xa9\x78\x06\x76\x28\x93\x3a\xf9\x3a\xa3\x29\xcb\x5d\xb5\xbf\xda\xf5\xd5\xed\xc9\xd6\x1b\x5d\xcf\xd8\xf9\x8e\x90\x88\x70\xe0\xc0\x01\xbc\xfb\xee\xbb\xd2\xf2\xe3\x2a\x44\x0e\xdf\x52\x72\x8c\xf4\xf0\x83\x5b\x2e\xfc\x59\xf6\x05\xb0\x3c\xa4\xe3\x56\x85\x7d\x77\xb5\x93\x6b\x38\xcb\xfb\xa0\x94\x9d\x1c\xf5\x17\xa5\x25\x0c\x46\x24\xeb\xb2\xfc\xac\xcb\x42\x45\x1e\xce\xd3\x0c\x42\xbc\x54\x9e\x1f\xfc\xe0\x07\xd5\xe9\xd3\xa7\xc1\x6e\xc9\x2a\x22\xba\x40\x7a\x82\xa2\x73\x1c\xe7\x08\x34\x77\x70\xa3\xf4\xf8\xb3\xd7\x27\x3e\xb5\x67\xa7\x30\xcf\x27\x3f\xfb\x74\x8c\x64\x05\xd8\x7b\x9e\x75\x91\xa4\x65\x71\x5c\xd6\x87\xe9\xfd\x24\xf8\x84\x74\x1a\x13\xaf\x38\x6b\xc2\xe6\x76\x29\xfc\xc9\xad\xc9\xd6\xb7\xae\x4f\xef\xfe\xf3\x6a\xb5\xb3\xbc\x13\xcf\xf0\xc7\x57\xfc\xf1\x6b\x05\x39\xcf\xb4\x31\x26\xb9\x1a\xf3\x8b\x5f\xfc\xa2\x06\x80\xc7\x1f\x7f\x5c\xbd\xfa\xea\xab\xba\x5c\x2e\xab\x56\xab\xc5\x29\x77\xb5\x57\x9e\x76\x02\xfa\xdb\x35\xb7\x9d\x7f\xf7\x77\x7f\x57\xd9\x1d\xbf\x71\x5c\x3b\xdc\xb3\x56\x85\xe2\x6d\xa8\x34\x8a\x13\xbb\x7e\x6d\x61\xb3\x7c\xe2\xe8\xfd\xf2\x2f\xcd\x6e\x17\x3f\x5e\x0a\xd4\x71\x8a\xda\x17\xc9\x61\xd3\xd2\xc8\x18\xca\xb9\x2d\x8b\xbc\x6c\x0c\x80\x50\x99\xc6\x2b\xf3\xdb\xff\xcb\x0f\x0f\x6f\x7d\x23\x50\x66\x9d\x88\x9a\x88\xce\xcb\xd0\xf7\xee\xdd\xc3\x5f\xfd\xd5\x5f\x3d\xa8\x15\x37\x6c\x9c\xac\x3e\x02\x0c\xd9\x4f\x7e\xce\x72\xf2\xe4\x20\x95\x4f\x16\x0f\x5d\x9d\x7a\x90\xa0\x41\xa4\xc9\x32\x5d\xb3\x4c\xa5\xac\x32\x01\x44\x63\xd7\xa7\x9f\x7e\x1a\x8f\x3d\xf6\x98\xf5\x4f\xc0\x03\x40\xcd\x18\xb3\x87\x88\x66\x61\x30\x37\xdb\x28\x3c\xfc\xe1\xeb\x13\xcf\x1f\xd8\xb4\xa7\x88\xd9\x7e\x9c\x5e\x5d\x49\x5c\x2c\x4d\x26\x2b\x7c\x18\x37\xbc\x9d\x9c\x91\xdc\xc0\x00\x9d\xae\x67\x16\xb7\xcb\xe1\x2b\x4b\x63\xed\x1f\xdc\x9c\x6a\x5d\x5a\xa9\x76\xee\xd4\xcb\x61\x03\x14\x5d\x2e\x6c\xcd\x66\xbb\x4d\x1a\x80\x5d\xb2\xb6\x59\x59\x3f\x74\xbb\xdd\xde\x7d\xbb\x00\xbe\xf4\xa5\x2f\x69\x00\x78\xe4\x91\x47\x12\xbe\x5e\xbd\x7a\x35\xe5\xc7\xdf\xaf\x5e\xbd\xaa\xed\x2f\x00\xbc\xf8\xe2\x8b\xea\x4b\x5f\xfa\x92\x7e\xf1\xc5\x17\x15\x00\xf8\xbe\x0f\xcf\x4b\x2e\x03\x94\x20\x61\xfd\xf8\x9f\x0f\xc0\xf7\x43\x2a\x4f\x35\xfd\xa9\xf9\xad\xd2\xf1\x83\x1b\xe5\xa7\xf6\xec\x14\x3e\x58\xe9\x7a\x8f\x7a\x1a\x35\x00\x6a\x50\x1b\x0c\xc3\xea\xe1\x80\xc6\x9d\x93\x81\x41\xab\xa0\x6f\xfc\xe3\xd1\xcd\x7f\x77\x75\x6f\xf3\x65\x10\x36\x8d\x31\x4d\x8a\xbe\xa6\xd5\x5f\xf8\xc2\x17\xf2\x86\x0d\xc3\x76\xf0\xbc\xe1\xc7\x83\x00\x53\x1e\x90\x0f\x52\xe6\xef\x27\x8e\x82\xb0\x38\x78\x24\xeb\xb2\x50\x27\x2b\x7c\x10\x72\xe5\xe5\x95\x57\x5e\xe2\xff\xf4\xd3\x4f\xab\x33\x67\xce\x00\x91\xe6\xf2\x11\x2f\xd3\x01\x98\x00\x30\x05\x60\x0f\x0c\xe6\xc6\x5b\xfe\xb1\xa7\x6f\xd4\x3e\xf1\xd0\x6a\xe5\x8c\xaf\xe1\xdb\xf9\x0a\x7b\x15\x64\x7a\x73\x46\x82\x1c\x88\xde\xec\xb2\xac\x9c\x03\x91\x96\x48\x7f\x78\x72\xa8\x72\x6a\xea\x51\xc4\xe3\xe1\x8e\x78\x31\x88\xb4\xba\x9e\x59\x6e\x94\xc2\x9f\xad\x57\xba\xaf\x2d\x8e\xb7\x2f\x2f\x8f\x75\x6e\x6c\x8e\x04\x6b\xbb\x05\xdd\xe2\x40\x12\xf3\x27\x99\x17\xe1\xfc\xb3\xa0\x92\x1c\x93\xd8\x9b\xec\x4d\x09\x8b\x23\x9c\xbb\xbe\xb1\x79\x0c\x48\x8a\xc5\x95\x20\x91\x80\x05\x19\x14\x6b\x2d\xbf\x32\xb1\xeb\xcf\x2f\x6c\x94\x4e\xcc\x36\x8a\x4f\x4c\xee\xfa\x67\x47\xba\xde\x89\x08\x2c\xc8\x87\xbb\xdc\x5c\x97\xa2\xf5\xfd\x99\x24\x99\xf9\x19\x18\xac\x57\x82\x97\xbf\xf3\xf0\xfa\xbf\xbb\x57\xeb\x5c\x43\x74\xa4\x5f\x0b\x40\x70\xef\xde\x3d\x3d\xa4\xd5\xf1\x20\x6e\x90\xe5\x37\x28\xcd\xcf\x43\x43\x9e\x45\xe2\xcc\x6f\x18\x4e\x0f\x6b\xbe\xf2\x82\xc0\xde\x65\xfc\xac\x70\x49\xa8\x13\x84\x3c\xcf\x53\x61\x18\xea\x97\x5e\x7a\x89\x0b\x67\x62\x79\x20\x02\x90\x59\x18\xcc\x55\xba\xea\xc0\xf9\xdb\x63\x1f\x39\xbd\x54\xfd\x60\x31\xa4\x32\x39\xaa\x9c\x1c\x19\xd8\xd7\xdb\x6d\x84\xf8\x57\x76\x72\xe9\x86\x52\x83\xec\xd9\x95\x9f\x14\xfe\x78\x38\x63\x80\x8e\x26\x34\xda\xbe\xbe\x55\x2f\x07\x6f\x6e\x8e\x04\x57\x57\xab\xdd\x77\xee\x8d\x75\x6e\xed\x14\xc3\xb5\x46\x29\x6c\x04\x5e\x34\xb1\x8a\x34\x88\x48\x20\x91\x02\x30\x8c\x80\x49\xd0\x90\xd6\x04\x7f\xf6\x61\xa0\x4a\x01\x95\xab\x1d\xbf\x56\x6d\x7b\x7b\xe6\xb7\x4a\x47\xa7\x77\xfc\x47\x26\x77\x0b\x8f\x8e\x76\xbc\xe3\x85\x90\xe6\x94\x41\x05\xcc\xb2\x70\xce\x4d\xdb\x67\x3b\x67\x91\x6a\x1f\x7e\x8f\x0e\x8b\x97\x66\x5d\x2a\xa6\x41\x4f\x61\xf4\xe9\x8d\xbe\x34\x76\x12\xc0\x04\xb7\x26\x5b\x5f\xff\xf6\xc9\xf5\xff\xb5\x55\xd4\xcb\x88\xce\xfe\xec\x00\x08\x62\xab\xc3\x25\xab\x83\x64\x39\x6f\x6a\x60\x98\xce\x3b\xec\xd0\x72\x50\xd9\x59\xf4\x72\x97\x0b\x1c\x59\x1d\x95\x57\x60\xa0\x25\xe0\x48\x3f\x08\x68\xf2\x90\x72\x28\xd4\xfc\xdc\xe7\x3e\xa7\x46\x47\x47\xc1\xe6\x3c\xec\x5d\x2d\x13\x88\x2c\x8f\xd9\x42\x48\xf3\x27\x57\x2a\x4f\x3d\x79\xab\xf6\xd1\xb1\xb6\x37\xd5\x67\x06\x5b\x2b\x24\x7e\x4e\x1e\xd2\x7b\xd2\xd1\x9b\xed\xcc\x20\x26\xc7\x82\x48\x85\xa7\xd2\xc4\x5d\x24\x23\x4e\x24\xec\x3c\xbf\x34\x90\x04\x9e\x5e\x69\x16\xf4\xad\xad\x72\x70\x63\xa7\x14\xde\xdc\x1a\x09\x6e\xad\x54\xbb\x8b\x3b\xc5\x70\xb3\xeb\xe9\x66\xc7\x33\xad\x8e\xaf\x3b\x21\x41\x1b\x18\x7b\xd2\x14\xe0\x1e\xe2\x64\x59\x1d\xaa\xef\xd7\x40\xf9\x1a\x7e\x21\x54\xc5\x72\xa0\xca\x7e\x48\xd5\x5a\xdb\x9f\x98\x69\x14\x0e\x8c\xb7\xfc\x23\x63\x2d\xff\xf0\x58\xdb\x3b\x5c\xee\xaa\x79\x5f\xd3\x9e\x08\x28\xd2\xcb\xa7\xbc\x3c\x37\x23\xff\xff\x70\xe9\xb2\xe3\xf9\x8e\xfa\x6b\xfb\x1a\xff\xf3\xf7\x8f\x6e\x7e\x5d\x2b\xac\x23\xb6\x3a\x56\x56\x56\xf4\x5f\xfe\xe5\x5f\xfe\x3c\x43\x85\xbc\x3e\x30\xac\xb2\xce\x2a\xff\x41\xad\x8e\x41\x7d\xbc\x2f\x4f\x72\x79\x0e\x41\x78\x1e\x6a\x5a\x37\xc8\x22\x19\x76\x18\x94\xf9\x3c\x31\x31\x81\x4f\x7d\xea\x53\xa8\x54\x2a\x40\xb4\xf6\xef\x03\xa8\x10\x51\xc5\x18\x33\x85\x68\xe8\x32\xab\x0c\xcd\x2d\x6c\x96\x4e\x3d\x73\x63\xfc\xe3\x7b\x1b\xc5\x83\xca\xd8\x31\xb8\xe8\x95\xa0\xa4\x73\x92\x61\xcb\x7b\x76\x66\x1e\xbd\x61\x8c\xd5\x84\x7c\xf2\x33\x59\x95\x89\x53\xda\xb0\x5e\x5c\x66\xdd\xf4\x0d\x8b\x7a\x54\x00\xe8\x8d\x88\x2c\x3d\x89\xd6\x04\x9b\x5c\xb5\x45\x19\x6d\x80\xc0\x10\x5a\xa1\x32\x9b\x5d\x65\xd6\x3b\xbe\x5e\x6b\x16\xf4\x5a\xb3\x18\x2e\xef\x16\xf4\x6a\xdb\xd7\xeb\x6d\x5f\xd7\x77\x0b\xba\xd1\xf6\x75\xab\xe5\xeb\x56\xd7\x33\x1d\x43\x46\xeb\xe8\x2c\x55\xcd\x34\xbd\x52\x06\x8a\x0c\xa9\x72\x40\xc5\x62\xa0\xca\xc5\x50\x95\xcb\x5d\x55\xad\x74\xd5\x54\x31\x50\x53\x23\x5d\x35\x53\xe9\x78\xb3\xa3\x1d\x6f\xae\x18\xd2\x1e\x5f\xd3\x84\x32\x54\x53\x06\x65\x00\xbe\x6b\x9e\xe2\x81\x20\x21\x07\xab\xe5\x5c\xd4\xfb\x8d\xd3\x0b\xcc\x1e\xe6\xc4\x97\x75\xfd\xec\xaf\x4f\xad\xfd\xeb\xc5\xf1\xce\x35\xf4\xac\x0e\xfd\xcd\x6f\x7e\x13\x4b\x4b\x4b\xc0\xf0\x7d\xc4\x15\x37\x4f\xe1\xc2\xe1\x37\x48\xc1\x66\x4d\x1d\x0c\x63\x59\x0c\x43\x1f\x00\x28\x7f\x08\x42\x38\x01\xb2\xa0\x61\x4d\x2f\xd7\x30\x85\xe7\xed\x02\x9d\x41\x95\x53\x9b\x9b\x9b\xf8\xea\x57\xbf\xaa\xe3\x7d\x1e\xf6\x4c\x8c\x66\xac\x49\xb5\x31\x91\xf9\xae\xc9\x74\x6e\x4d\xb6\x3a\xdb\xa5\x70\xf3\xe9\x5b\xb5\xe7\x8e\xac\x8d\x9c\x2e\x68\x2a\x12\xb7\x2a\xe2\xe7\x48\xc0\xa2\x67\x4a\x0c\x0f\xbe\x33\x31\x1e\xf0\xd8\xb8\x46\x68\x4e\xea\xe5\x45\x06\x02\x3c\xa8\x67\x3a\x13\xd2\xd6\x44\x8c\x12\xd1\xb9\x22\xd2\x20\x67\xe0\xc6\xc6\xe0\x49\x3e\x20\x05\x63\x8a\x04\x2a\xaa\x80\x6a\x45\xc2\xc1\xd1\xae\xc2\xc4\xae\x9d\xcb\x88\x80\x05\x04\x6d\x80\x8e\x21\xb4\x34\x99\x16\xf3\x0b\x0c\x8c\x1d\xda\xa8\x78\xe9\x53\x91\x89\xe6\x27\x94\xa1\x32\x01\x45\x8a\xbe\x44\xf5\x09\xf0\x63\x9a\x94\x6b\xf7\x44\xef\x90\xb6\x74\x18\xc9\x48\x44\xfd\x43\x0c\x3b\x8c\x88\x79\x90\xda\x83\x23\x9c\x6b\x8a\xaa\x67\xf4\xa5\x5f\x00\x4c\xe3\x00\x00\x1b\xf9\x49\x44\x41\x54\x15\x42\x2e\x60\xc9\xbc\xd9\x64\xf9\x6e\x41\xaf\x5c\xdd\xbb\xf3\xed\x8d\x91\xa0\x15\x9f\x2c\xa6\x84\xa5\x34\x6c\x27\x46\x4e\xb8\x4b\xf6\x07\x29\xd6\x41\x56\x7c\x16\x88\x65\xd1\x92\x57\x8f\xbe\x7c\xfd\x8c\xc8\x83\x88\xcf\x22\x48\x82\x45\x1e\xc1\x59\x04\xe6\x8d\x07\x39\x0d\x89\xfb\xda\xd7\xbe\xa6\x3f\xff\xf9\xcf\xab\xd1\xd1\x51\xbb\xe2\xa0\x01\x70\xf0\xe8\x80\x28\xd8\x18\x0d\x5a\xff\xe9\xf8\xc6\xf6\xe3\x95\xee\xca\x99\xc5\xea\xd3\xa3\x1d\x6f\x02\x86\xed\xf5\xb0\xf3\x1d\xc6\x24\xe2\xd6\x9b\x48\xed\x85\xd9\x2e\x60\xef\xaf\x05\x10\xc9\x36\xec\xe4\x66\x3c\x9e\x46\x6f\xf3\x19\x3f\x2c\xc8\xe6\x95\x00\x83\xb1\x4f\xd6\x94\x88\x72\xe7\x13\x7f\x5c\xfc\x93\x67\x66\xdd\x58\xab\xc5\xb0\xf4\xf1\xf7\x36\x0a\xd1\xfd\x34\x7e\xfc\xed\x4d\x25\xb1\x86\x2c\x3c\xb1\x4d\x72\xbc\x76\xf6\x27\x7d\x1a\x1a\x7a\xbd\x35\x3e\x7d\x3e\xb1\xa8\xc8\xd6\x82\xcf\x52\x24\x55\x60\x7c\xee\x91\x4e\x6c\x9f\x05\xb3\xd3\x52\x98\x93\xc2\x8e\xa4\x2c\x01\xbc\x60\x60\xcb\xef\xe1\x31\x96\x0f\x88\x69\x4d\xcf\x69\x25\x7b\x3c\x12\x22\xc9\x6e\xd4\xd3\xab\xd5\xce\x3b\x3f\x39\x58\xff\x3f\x6f\x4c\xb5\x7e\xa0\x15\x3a\xd1\x4e\xd3\xbe\xe1\x55\x96\x56\x77\x29\x3f\xa7\xf6\xce\x88\xeb\x0a\xb7\xbf\x72\xf8\x08\x0c\xee\x27\xc3\x5a\xf3\x79\x4a\x3c\xe9\xbb\xf6\x30\x14\xc0\xce\x07\xa5\x0b\xb1\x4d\xc3\xff\xb4\x88\x6f\x89\xe5\x10\xcf\x2b\xcc\xe3\x32\x23\x3d\x95\xa7\xc9\xf0\x07\xdc\xf4\xd9\xf8\x36\xad\xba\x73\xe7\x0e\x7c\xdf\xc7\xf4\xf4\xb4\xa1\xe8\x40\x16\x7b\xed\x5e\x17\xbd\x23\xe8\xbb\xa1\x87\xce\xe2\x78\xe7\xde\x6a\xb5\x7b\x7f\x7c\xb7\x30\x3e\xda\xf5\xc6\x23\xf1\x8f\x8b\x24\x80\x6f\x3b\x37\xb1\x94\xda\xed\xe9\x91\xfc\x51\x42\x61\xb2\x67\xa1\x77\x9c\x18\xfb\x46\x22\x9d\xa6\xf7\xa1\x1c\x25\x69\x6d\x3c\x12\xf1\xf8\x96\xf8\xe4\x37\xc9\xdf\xa4\xf2\x48\x86\x56\x09\xd7\xec\xd7\x9f\x69\x3a\x23\x5a\x7a\x5f\x86\x46\x9d\x24\x7d\x6a\x1a\xa7\xc9\x06\x50\x9c\x67\x6f\xe8\x86\x1e\xaf\xe2\xa8\x09\x7d\xb0\x65\x24\x88\xc3\xe2\xf4\x00\x81\x88\x92\x7c\x53\x51\xb9\x45\x67\xab\x49\x22\x0e\x28\x29\x33\xc9\x9b\x49\x03\x09\xda\x93\xcf\x0d\x78\xdb\x25\x4d\x94\x7a\x81\x81\x41\xd7\x33\xad\x6b\xb3\xcd\x9f\xfe\xc3\xf1\xcd\xff\x6b\xb9\xd6\x7d\xcb\x28\xd8\xeb\x17\x9b\x44\xd4\x8e\xe5\xc9\x7c\xef\x7b\xdf\xd3\x48\xf7\x11\xfb\x6e\x9d\xec\x0b\xae\xb8\x9c\x7a\x30\x7f\xd9\x59\x79\x3f\x31\x2c\x0f\xde\xef\x6c\x3a\x99\x3f\x90\xee\x7f\x1c\x18\x8c\xc8\x83\xe7\x25\x69\xb7\x74\x68\x7e\x93\x9b\xcd\xd0\x88\x84\x3c\x5c\x12\x06\xe6\xc7\x33\xe7\xe8\xc8\x01\xc6\xc5\x00\x9e\xa7\x64\x8a\x64\x10\xcf\x9f\xa7\xd5\xad\x56\x8b\x6e\xde\xbc\xa9\x7d\xdf\xa7\xf8\x93\x7c\x13\x1f\xcc\x62\x97\x2c\x3b\xf1\x6f\xd7\xc0\x74\xeb\xe5\x60\xf3\xe6\x54\xeb\x36\x01\x98\x6a\x16\x67\x7c\x4d\x05\x4e\x9d\x89\xc7\x29\x76\x98\x92\x38\xbb\xdc\x6a\x23\xf3\xdd\x88\x29\x45\x24\x80\x26\x59\xca\xb5\x9a\x9a\x45\x4d\xbe\x91\xe1\x1d\x8d\x78\x50\x4f\x8b\xc6\x34\xa4\x4a\x32\xbd\x76\xef\x75\xc8\xf4\x90\x21\x6d\xf1\x44\xf4\x45\xa0\xc8\xad\x04\x0b\x96\xc4\x86\x59\xc2\x06\x91\x62\x2e\x9c\x73\x3e\x98\x7a\xa0\x63\xa4\xf6\x4f\x80\xb9\x97\xd8\x58\x6b\x4d\x94\xd5\x03\xe4\xec\x42\x7b\x40\x60\x2f\xf0\x4a\xe7\x9b\xb6\x16\x6c\xfb\x45\x1c\x02\x0c\xd6\x2b\xc1\xf2\x0f\x8e\x6e\x7d\xe7\xd2\x81\xed\xbf\x6f\x16\xf4\x2d\x22\xba\x07\x60\x83\x88\xb6\x8c\x31\xf6\x98\xc1\x60\x6b\x6b\x0b\x37\x6f\xde\xa4\x4e\xa7\xe3\x02\x0c\x2b\xcf\x1c\x24\x64\x87\xb6\xef\xbc\x46\x5a\xf8\x5b\x36\xf2\xdf\x3e\xd9\x47\xaf\x55\x6c\x5e\x9a\xc5\xcb\xeb\xab\xb2\x2f\x2a\xa4\x69\x93\x00\x92\xbc\xf3\x53\xce\x6d\xa1\x24\x32\x91\x1d\x56\x23\xcd\x14\x12\x69\x25\x50\xc8\x67\x4e\x18\x8f\xcf\xcb\x71\xa1\x36\xa7\xcd\x55\x36\x00\x98\xbb\x77\xef\x1a\x22\xb2\x87\x01\xd9\xf2\x92\x6b\xf7\x10\x5d\xfa\xdb\x01\x51\xd0\xf5\x4c\xeb\xee\x44\x7b\x71\x7d\x34\x58\x9b\x68\xf9\x93\x95\x8e\x1a\xb7\x82\x9e\x00\x06\x81\x15\xe9\xe8\x2f\x19\xe3\xe3\x44\xd8\x79\x3c\xd6\x09\xed\xae\x51\xae\x0d\x5d\xeb\x89\x24\x6b\x0c\xdb\x09\xfa\x3b\x92\x5c\xa1\x88\x94\x2b\x9b\x24\x4c\xf2\x61\xb4\x58\xa0\x91\x16\x46\x42\x16\xa5\x84\xa0\x77\x7e\xb3\x7b\xdf\x07\xef\xa8\x49\xdd\x18\xad\x94\x44\xb2\xf4\xb2\x00\x3b\x8c\x63\xe0\xd7\x27\x9d\xe8\x95\x9d\xaa\x0f\x3b\xde\x20\x46\xbf\xb4\xe5\x67\xb9\x2d\x1b\x90\xa2\xb8\x5d\x5f\x77\xde\x9a\x6d\x5e\xfe\xde\xf1\xcd\xbf\xbe\x3d\xd1\x7e\x5d\x2b\x2c\x02\x58\xa1\xf8\xb2\x67\xc4\x93\xa2\xb1\x05\x6b\x5e\x7f\xfd\x75\xdc\xba\x75\x0b\xe8\x1f\x1a\xb8\x60\x55\xca\x38\xef\x0f\x12\x78\x78\x5a\x3e\x02\xe0\xe9\x38\x00\x0c\x52\xd2\x3c\x0f\xfe\x6e\xf3\xe1\xb4\x5b\x3f\xde\xe4\x32\xdf\x14\x70\x70\xf1\x94\x63\x25\x57\x27\x96\x26\x93\x74\xb2\x70\xd9\xd9\xa5\x35\xc1\x99\x21\x09\x96\x48\x2a\xf3\x07\x04\x98\x2d\x2d\x2d\xe1\xe2\xc5\x8b\x3a\x3e\xc3\x54\xdb\x6f\x5a\x10\x0f\x59\xc8\x5e\xbd\x47\xe8\x6a\x98\xee\x46\x25\xd8\xbc\x35\xd5\xba\xad\x09\xe1\xc4\x6e\x61\xda\xd7\x54\x94\x73\x08\x89\xe3\x7d\xdb\x24\x30\xd0\x0b\xb0\xaa\x3a\x26\x3d\xf5\x91\x1d\xeb\x24\xd1\xfc\x49\x2f\x53\x63\xff\x67\x1a\x33\x0a\x62\x4d\x13\x77\x92\xde\xea\x4c\x6c\xbd\xf0\xf0\x24\x29\x67\xb9\xd5\xe0\xf1\x80\xcc\x5a\x52\xd6\x12\xb1\x49\x79\x55\xc5\xac\x65\xd2\xc5\x13\x70\x61\x9d\x9f\xc5\xed\x1d\x3b\x10\xf3\x22\xa9\x43\x42\x05\xe4\x8a\x47\x4a\x82\xb8\xb9\x94\x42\x9b\x18\x30\x93\x28\x8c\xe8\xe4\x1a\x50\x0b\x1a\x22\xcf\x38\x0e\xb1\x4a\xda\x79\x1b\x0d\x60\xad\xda\x5d\xfc\xd1\xe1\xad\xef\x5e\x3e\xd0\xf8\x5e\xa3\xa4\x6f\x18\x98\x25\x22\x5a\xa6\xe8\xd2\xe7\x4d\x00\xdb\x44\xd4\x8a\xad\x8d\xb0\x5e\xaf\xe3\x87\x3f\xfc\x21\xba\xdd\x2e\xe3\x48\x5f\x9f\xe1\x60\xc1\x6b\xe9\xea\x67\x49\x87\x14\xe9\xc8\x11\x97\xf7\x55\xa1\xa6\x52\xf9\x73\xee\xf2\x7e\x22\x95\xb6\xec\x93\x40\x3f\x28\xf1\x3c\x0c\xd8\x1c\x07\x47\x29\x89\x36\xd2\x54\x71\x75\x68\xe9\x38\x3a\x4a\xc2\x5c\x66\x9a\x04\x18\x17\xea\x01\xfd\x74\x71\x30\x91\x20\x62\xde\x78\xe3\x0d\x33\x35\x35\x45\x93\x93\x93\x06\x80\xfd\x2c\x3f\xb9\x76\x2f\xb9\x6a\x8f\xd0\x69\x7b\x66\xf7\xee\x78\xfb\xee\xea\x58\x77\xb5\xd2\xf5\x2a\xd5\x8e\x1a\x27\x90\xe2\xf3\x19\xb2\xa6\x89\xc2\xe4\x71\xac\x96\x4d\x34\xa1\x8d\x47\xfd\x79\x50\x2f\x2e\x1f\xdf\xa7\xc2\xc0\xd2\x26\x15\x25\x56\x16\x4b\x97\xe2\x28\xa7\x9b\x58\x8b\xf5\xfb\x13\x58\xba\xa4\x55\xd3\xa0\xd1\xb7\xfc\xc1\xfb\xa7\x18\x1b\xf5\xfa\x70\xba\xc2\xbd\x43\xa0\xa3\x42\x9d\xfb\x38\xec\x44\xb1\xf4\x4f\x59\x2e\xbd\x30\xd3\x57\x1e\x1c\x40\x28\x2b\x19\x11\xb3\x5b\xd0\x8d\x37\xe6\x76\xfe\xf9\xfb\xc7\xb6\xbe\x7d\x67\xa2\x7d\x25\xf4\x70\x07\x84\x7b\x44\xb4\x82\xe8\xd6\xf8\x2d\x00\x8d\x78\x5e\x23\x00\x10\xd4\xeb\x75\x7c\xfb\xdb\xdf\xc6\xf6\xf6\x36\xb7\x16\x5c\x13\xfd\xbc\x63\x73\xd9\x97\x61\xdc\x1f\xc2\x8f\x87\xc9\x5f\x57\x3c\x59\xa6\x04\xaf\x41\x61\xca\x11\xd7\x49\x0b\xc1\x6d\xf2\x0c\x5a\xba\x01\xfa\x99\x35\xcc\xea\x4b\x5e\xfa\x07\xcd\x27\x2f\xcf\xbe\xb0\xdf\xfb\xbd\xdf\x53\xf1\x52\x9a\x42\xfc\x79\xbe\x31\xa6\x42\xd1\xcd\x71\x35\xfb\xb1\x1c\x0c\xf6\x8c\x76\xd4\xfe\x93\xf7\x46\xcf\x9d\x5a\x1e\x3d\x37\xb1\xeb\xef\x51\x20\xc5\xd9\x98\x9a\xd1\x4f\x69\xe9\xf8\x97\x90\x74\x22\xbb\xd2\x90\x09\xb3\xb1\xbf\x9c\xf6\x48\xc2\x1c\xfa\xa5\xb7\x1a\xc3\xcb\xcb\xa0\x03\x39\x61\x96\x46\x6e\x25\xa4\xea\xc9\x57\x7f\x1c\x19\x26\x9d\xdc\xf1\x95\x8f\xb5\x7a\x52\xd6\x06\x2b\x2f\xd5\xf9\x59\x39\x86\x1d\x90\x24\xaa\x8e\xfe\x52\x52\xf9\xf2\x2d\xfb\x36\x1f\x69\xe1\x18\x18\x04\xca\x04\x8b\xb5\xce\x8d\x57\xf6\x6f\xbf\x7c\x7b\xb2\x7d\x35\x50\x66\xcd\xc0\xac\x01\x58\x27\xa2\x4d\x00\x75\x63\x4c\x13\x40\x8b\x7a\xb7\xbd\xe9\x46\xa3\x81\x3f\xf9\x93\x3f\xc9\xea\x2b\x2e\x59\xb4\x6e\x90\xfc\xca\x3e\x97\xd7\xaf\xf2\xca\x18\xd4\x3f\xf2\xd2\xe4\xf5\x77\xe7\xaa\x0a\xd7\xe8\x12\xe1\xf8\xbb\xb4\x34\xa4\xbf\x34\x83\x90\x11\x97\x8b\xae\xfd\xe3\xe1\x32\xbe\x7d\x97\x8c\x90\x16\x91\xcd\x53\x22\xb8\x02\x60\x96\x96\x96\x68\x76\x76\xd6\x8c\x8c\x8c\xd8\x65\x5a\x1d\x5b\x1f\x1d\xf4\xc6\xae\x6d\x03\xd3\xe9\xfa\x68\xde\x1b\xeb\x2c\x2f\x8e\xb7\x17\x0d\x91\xa9\xb6\xbd\x5a\x41\x53\xc9\x0a\x5f\x3c\x2c\x76\xce\x73\xa6\x34\x1b\x45\xe2\x9f\xda\x36\xdd\x67\x46\xa7\x94\x65\xda\x51\x2f\x8c\xc7\xe1\x7b\x3d\x52\x71\x4c\xbf\x5f\x8a\x26\x6e\xd5\xa3\xa7\xad\xed\x86\x36\x50\x3a\x4d\xef\xda\x09\xee\x89\x5e\xa5\x93\xb9\x08\xd6\x9d\x99\xf1\x9c\x58\x03\x09\xd0\xf5\x78\x92\xaa\x26\x2f\x27\x0e\xe7\xa4\x1b\x44\xbc\xee\xfb\x2e\x25\x99\xeb\xe8\xd1\x63\x58\xbc\xe4\x37\x86\x16\x4d\x46\xdf\x1f\xed\x2e\x5d\x5a\xd8\xfe\xc1\x4f\x0e\x6d\xff\xfd\xca\x58\xf7\x4d\xad\xb0\x68\x60\x96\x89\x68\x95\x0d\x4d\x76\xe2\x15\x94\x0e\x80\xd0\x18\xa3\x2f\x5f\xbe\x8c\xef\x7c\xe7\x3b\xb2\x73\x72\x79\xcb\x1a\x5a\xf3\xb0\xac\xf9\x05\x69\x29\xb8\xe6\x34\x80\xb4\xbc\xcb\xe5\x5b\x97\x35\x9f\xd5\xef\xe4\x9c\x8a\xcb\x2a\xe2\xe9\xfa\xd4\x0e\xb1\x08\x2e\x94\x93\xc4\x01\x6e\x64\xcc\xb3\x5a\xf2\x10\x39\x2b\xcc\x86\xcb\x32\x87\xb5\x70\x78\xfa\x24\x6d\xb5\x5a\x55\x8d\x46\x43\xff\xce\xef\xfc\x8e\x8a\xcf\xb3\x54\x88\x76\x9c\xda\x0f\xe5\xaa\xe8\x6d\x59\x9f\x02\x30\xe5\x87\xb4\x67\x7e\xab\xf4\xd0\x99\xc5\xd1\x0f\x1c\xd8\x2c\x1f\x2d\x85\x54\x8e\xc6\xcb\xd2\x0c\x88\xb5\x9d\x9c\xb8\x03\x8b\x92\x68\xbe\x58\x4f\x5a\x85\x6c\xf7\x69\x64\x8c\xd3\xa3\x8e\x63\x3b\x0b\x7a\xe6\x4e\x02\x5c\x19\xa6\x09\x73\x3d\xba\xac\x56\x76\x18\x24\x59\x61\xfd\x24\x01\x30\xac\x93\xca\xf2\xd2\x3c\x49\x57\xc6\xc0\x8d\x92\x80\x93\xee\x84\x36\x5b\x35\x9e\xde\xc4\x3c\x70\xd8\x43\xec\x83\x44\x0d\xa3\xb7\x4b\xe1\xe6\xdb\x33\xcd\x2b\x3f\x9b\xdb\xb9\xb4\x51\x09\x6e\x1b\xc2\xba\x31\x66\x9d\x88\xd6\x01\x6c\x1a\x63\x1a\xf1\xe6\x41\x6b\x65\x68\x63\x4c\xd0\x6c\x36\xf1\xb5\xaf\x7d\x6d\x90\x55\x91\x67\xb1\x67\xf5\xab\x3c\x6b\x3b\xaf\xff\x64\xf5\xcd\x5c\xd9\xcf\xa0\x2b\x2b\xdf\x81\x61\x9e\x23\x02\x47\x2e\x4e\x14\x89\xc4\xdc\x5a\xe0\x56\x86\x94\x47\x23\xe2\x4a\x0b\x45\xce\xfa\xba\x24\x51\x2a\x20\x69\x89\xf0\x70\x72\xa4\xd5\x00\x54\xa7\xd3\x01\x00\x0a\xc3\x10\xd3\xd3\xd3\xa6\x50\x28\x68\x00\x76\xe2\x34\x40\x64\x92\xb6\x89\xa8\x6d\x05\x28\x24\xb3\x5b\x1f\x09\x36\x6e\x4e\xb5\x6e\x6d\x8d\x04\x1b\x23\x81\x57\xae\x74\xd5\xa8\x32\xe4\x59\x71\xe5\xa6\x7e\x6f\xe2\x8e\x19\xd1\x76\x05\x25\xd9\xc6\x4e\x09\x65\xbd\x65\xcf\xf4\xa6\xac\x5e\x07\xe6\x1b\x96\xa2\x04\xc9\xc0\x21\xe9\x51\x40\x5a\x4f\xc7\x3a\xde\xf0\x86\xb0\x69\x39\x83\xa2\xb2\x6c\xe7\x37\x89\x16\x07\xb3\x0e\x00\xc8\x25\x59\x5b\x9e\x5c\xda\x64\xa5\x59\x93\xa7\xb7\xfa\x82\x64\x1e\xc7\x05\x73\xe0\x16\x05\xfa\x85\xca\xe2\x10\x88\x43\x2f\x25\x93\xcf\x3d\x4c\xec\x99\x81\x86\x80\x9d\xa2\xae\xbf\xb3\xa7\x79\xe5\xe5\x23\x5b\x7f\xf7\xe6\xde\xe6\x4f\x77\x8a\xe1\x4d\x10\x2d\x01\xa9\xb9\x8c\x3a\x11\x6d\x03\xd8\xb5\x56\x46\x18\x86\xe1\xc6\xc6\x06\xfe\xf4\x4f\xff\x34\x6b\x12\xd3\x35\x59\x29\xe5\x9a\x5b\xc5\xc3\xcc\x21\x66\x75\x5c\x69\xc9\x70\xeb\xc4\x95\x1f\x6f\x0c\x59\x36\x8f\x2f\xd3\x48\xfa\x39\x1e\xa4\xca\xa6\x0c\x42\x5d\x96\x86\x75\x83\xc6\x65\x2e\x24\xcc\x1a\x47\x0d\x83\x7e\xc3\x86\x43\xc4\x01\xf3\xeb\xa3\xbd\x52\xa9\xe0\x13\x9f\xf8\x04\xa6\xa7\xa7\xa1\x94\x52\x00\xec\xe1\x32\xbe\x31\xa6\x1c\x7f\xef\x52\x43\xcf\x02\x99\x20\xd0\x54\x39\x50\x7b\x8f\xad\x8d\x3c\x7a\x6a\x79\xf4\xec\x4c\xa3\x70\xc0\xd7\xe4\xcb\xa3\x0a\x01\x03\x12\x63\x18\x2b\xd4\xa9\x5d\x92\xc6\xc4\x43\x1e\x8b\x20\xfd\xf9\x24\xd6\x0d\x1b\xb3\x47\x19\x22\xe9\x9f\x76\x8c\x92\xde\x42\x1f\xff\x32\x23\xc5\x24\x65\xf4\xe6\x48\xd2\xe7\x72\xa2\x07\x66\x49\x56\xa9\x97\x54\xd9\xfc\xc5\xbd\x75\x5c\xe0\xbf\xb4\x68\x64\x39\xe0\xd6\x4e\x86\xe5\xe5\x8a\xcb\x0c\x1c\x8b\x96\x2d\x5f\x37\x6f\x4e\xb6\xae\xbd\x3e\xbf\x73\x69\xb9\xd6\x7e\x37\x8c\x3e\x50\xb3\xd6\xc5\x26\x11\xd5\x01\x34\x01\x58\x2b\x23\x39\xe7\xa4\xdb\xed\xe2\x95\x57\x5e\x81\xb8\x1a\x21\x6f\x2e\x20\x4f\xbe\xb3\x64\x73\x58\x6b\x22\xaf\x6f\xe6\x59\x08\x59\xf4\xe5\x59\x26\x32\x5f\x57\x19\x00\xa2\xf3\x38\x86\xad\x94\xcb\x65\x75\xec\x61\xf2\x19\x86\x49\x59\x65\x3c\x48\xe3\x0d\xca\x43\xff\xfa\xaf\xff\xba\x9a\x99\x99\x81\x9d\x3c\x8d\x27\x4e\x7d\x44\x9f\xea\x57\x10\x0f\x61\x88\xc8\x0e\x61\x26\xca\x1d\x35\x73\xec\xfe\xc8\xa3\xa7\x96\x47\xcf\xcd\x6e\x17\xe7\x3d\x03\x3f\xb2\x28\xd8\x99\x0e\x62\xd5\x80\x0f\x63\xec\x2a\x6a\xf4\xea\x9e\xc4\x23\xd6\x71\x7a\x5d\x05\xc8\x36\xe7\x7b\xe6\xb9\xec\xa4\xf6\x43\x5c\xa0\x67\x01\x65\x4c\x79\xf6\x0f\x07\x44\x79\xfd\x4e\xda\x10\xae\x28\x79\x43\x94\x61\x4b\x72\xd9\x2a\x96\x2b\x3d\xc0\xb8\x3d\xd9\x7e\xe7\xf5\x7d\x8d\x4b\x77\xc7\xdb\xef\xc6\x5f\xb4\x5a\xb0\xd8\x44\x74\xae\x46\x03\x0c\x30\x10\x1f\x47\x60\xcf\x15\xad\x54\x2a\xaa\xd9\x6c\x0e\xea\xa8\x80\x43\x96\x90\xdf\x67\x86\x01\x12\x99\xef\x20\xa5\x38\x68\x58\x91\xe5\xe7\x2a\x37\x8f\xde\x94\x1f\x07\x0e\xe9\xf2\x18\xe7\x7a\x1f\xa6\xa2\x79\xc4\xb8\xca\xcf\x6a\x18\x57\x3c\x4e\x33\x1c\x7e\x99\xe8\x6a\x0f\xff\x8d\xcf\xf8\xb0\x71\xad\xf5\x91\xcc\x7f\x18\x63\xaa\x44\x94\x58\x20\x00\x26\xca\x5d\x35\x73\x70\xa3\x74\xfc\xe4\xbd\xd1\x33\xfb\xb7\xec\xed\x72\x0e\x8b\x23\xfe\x8d\x3a\x71\xfa\x8b\xd8\x3c\x6d\x6e\x58\x07\x49\xa5\x85\x23\xcd\x10\x7d\xdc\x35\x55\xd2\x57\xac\x2b\x9d\x88\xdf\xbf\xe1\xca\x91\x81\x30\x9a\x53\x87\x28\x21\x0b\x4b\x2c\xaa\xc6\xcf\x22\x02\x07\x42\x1b\xa4\x61\xb0\x53\x0a\x37\xdf\x9d\xde\x7d\xf3\xea\xde\xe6\x6b\xab\xd5\xce\xed\x0c\xc0\xe0\x16\x46\x07\xec\xfc\x92\xb5\xb5\x35\xfc\xc5\x5f\xfc\xc5\xb0\xca\x33\x4f\x71\x65\x3d\x0f\xdb\x79\xdf\x4f\x3c\xc0\x5d\xc6\x20\x9a\xb2\xea\xc4\x9d\x13\x54\x5c\x16\xc7\x30\xc3\x04\x38\xe2\x0f\x72\x0f\x02\x24\xc3\xe6\xfb\x7e\x69\xc9\x74\xbf\xf6\x6b\xbf\xa6\xe6\xe6\xe6\x00\xc0\x7e\x05\x69\xcf\xfa\x28\xda\x21\x0c\x62\x0b\x24\x5e\xc2\xad\xc1\x60\xa2\x18\xd2\xf4\xec\x76\xf1\xe0\xc3\x2b\x95\xd3\x87\xd7\xcb\x27\x46\x3b\x5e\x2d\x3d\xeb\x10\xbb\xa1\x7a\xe8\xcf\x53\x83\x9f\xc3\xe5\x95\xed\xea\xb1\x36\x48\x4c\xbc\xf6\xa7\x4d\x4d\x42\xfc\xc2\x48\x0d\xc9\xe8\x8d\x4a\x77\xe5\x9d\x3d\xbb\x3f\x7b\x67\x4f\xf3\x67\x1b\x95\x60\x49\x13\x36\x41\xd8\x44\xb4\x3a\x52\x47\xbc\xb4\x1a\x4f\x7c\x36\x99\x85\x91\x1c\xbd\xf8\xc6\x1b\x6f\xe0\x07\x3f\xf8\x41\x96\x02\x42\x86\xff\x30\x9a\x7d\x98\x61\x8e\x2c\x83\x87\x0d\x33\x2c\xc9\xa2\x67\x98\x7e\x3c\x08\x78\x32\xf3\xcd\x1a\xaa\xb8\xdc\xb0\xc3\x0d\x20\xbf\x50\x38\x9e\x01\x37\x93\xf2\xdc\x83\xc4\x19\x3a\xae\xef\xfb\xd8\xbf\x7f\x3f\xce\x9c\x39\x83\x7d\xfb\xf6\x59\xba\x12\x0b\x04\xf1\x81\x41\x76\x0f\x88\x31\xa6\x16\x5b\x21\x35\x18\x4c\xf8\x1a\x13\x13\xbb\x85\x7d\xc7\xd6\x46\x4e\x1e\xbd\x3f\x72\x62\xb2\xe9\xcf\x16\x52\x3b\x51\xad\x42\x1d\xf2\x7c\xd3\x94\x55\xe0\x18\xca\x0c\xe3\x1c\x73\x12\xd9\x71\xd9\x70\xe7\xc1\x88\xeb\xcd\x9a\xc9\x62\x86\x05\x0c\x39\x05\x67\x9f\x59\xb0\x81\x41\xdb\xd7\xcd\xa5\xf1\xce\xad\xb7\x67\x9a\x3f\xbb\x3d\xde\xbe\xde\x2c\x86\xab\x31\x60\xd4\x11\x01\x46\x03\xcc\xc2\x40\x74\xf8\x4e\xca\xc2\x00\xa0\x97\x96\x96\xf0\xcd\x6f\x7e\xf3\x41\x86\xcb\x3c\x0e\xd0\xdf\xc1\x78\x7a\xd7\x33\x77\x79\xf1\xb3\x00\xea\xe7\x29\x7b\x18\x9a\x86\xcd\x17\xe4\x08\xcc\xcb\x6c\x18\xb3\x28\xab\xa2\x59\x84\x0d\x62\x5c\x56\x5a\x59\x31\x99\xdf\xb0\xc8\xec\xca\x07\x85\x42\x41\x75\xbb\x5d\xfd\xc2\x0b\x2f\xa8\x52\xa9\x04\x00\x76\x03\x99\x4f\x44\xbe\x31\xc6\x9e\x38\x66\x01\xc4\x2e\xe5\x56\x09\x54\x23\x60\xa2\xd2\x51\xd3\xfb\xea\xa5\xc3\x47\xef\x8f\x9c\xd8\xbf\x55\x3a\x38\xda\xf6\x6a\x9e\x89\x0f\xb9\xe1\x5a\x18\xe8\x8d\x1f\x6c\x8f\x21\xf4\x4c\xf6\x64\x92\x22\x35\x31\x92\x8e\x0b\x96\x97\xcd\x2f\x76\x7d\x4b\xc4\x7c\x26\x34\x49\x1f\xf7\x7c\xde\x6b\xdf\x87\x75\x90\x06\xb4\x07\x30\x9f\x06\x1c\xa6\xd3\xf5\x4c\x67\x73\x24\x58\xbb\x3d\xd1\xba\x71\x7d\xba\x75\x6d\xb5\xda\xb9\xd5\xf1\xcc\x06\x60\xea\x26\x5a\x15\xb1\x73\x17\x0d\x64\x00\x86\x3d\x72\x61\x65\x65\x05\xf1\xe9\x5d\x79\x6e\xd0\x50\x61\x18\xff\xac\x38\x3f\x4f\x3e\xc3\xba\x07\x19\x3a\xe1\x41\xcb\xcd\x6a\x55\x17\xc2\x66\x21\x21\x8f\xff\x7e\x4c\x1f\x57\x7e\x92\x86\x2c\xc4\xb4\xef\x2e\x1a\x06\x31\x4a\xa6\x75\xe6\x33\x31\x31\x81\x53\xa7\x4e\xe1\xc8\x91\x23\xf6\xa4\x31\xa7\x05\x12\xff\x55\xe2\x79\x10\x0b\x22\x35\x00\x55\x3f\xa4\x89\x89\x5d\x7f\xdf\xc1\x8d\xf2\xe1\x03\x9b\xa5\xc3\x7b\x76\x0a\xf3\x95\x8e\x57\x49\x40\x64\xd0\x04\x41\x86\xd5\xd1\xb7\xac\xd0\x9f\xb2\xdf\xc3\x08\x3c\x92\x96\x4b\xdf\x64\x46\xbf\xcb\x9e\x52\xc9\x98\xef\x18\x30\x84\x71\xe5\x17\xef\xf0\xec\x6c\x97\xc2\xfa\x52\xad\x73\xe7\xe6\xd4\xee\x3b\x4b\xb5\xce\xad\x9d\x62\xb8\xaa\x55\x34\x04\x41\xcf\xb2\xe0\x60\xd1\x44\xbc\xa9\x0f\xf1\x8e\xcf\x78\xb9\x5d\xaf\xae\xae\xe2\xb5\xd7\x5e\xc3\xbb\xef\xbe\x9b\xd5\x69\xb9\x7b\x10\xe5\xc8\xd3\xb8\xf2\xcd\xb3\x18\x5c\x96\xf0\xb0\x65\x0f\xab\x30\xdf\x6f\x78\xe6\xaf\xcb\xe2\x70\x55\x0e\x48\x57\x70\x58\x0b\x63\x98\x4a\xcb\x72\x5c\xe5\x0e\x62\xfc\x20\xda\xf3\xf2\x1c\x06\xf9\x15\x00\xfd\xa1\x0f\x7d\x48\x71\x00\x61\xdb\xd7\xf9\x32\xae\x05\x91\xaa\xfd\x4b\xc0\xc4\xa0\x5a\x0a\x68\x72\x62\xb7\x30\xb7\x7f\xab\x74\xf0\xc0\x66\xe9\xe0\x9e\x9d\xc2\x5c\xa5\xeb\x55\x3d\x1d\x9d\xaa\x95\x28\x7f\x7e\x07\x2a\xc0\x57\x6a\x7b\x9b\xc6\x28\xbd\x73\x03\xfc\xf4\x30\xd7\x04\xac\x61\x9d\x9e\x1c\x9d\x55\x18\x33\x79\xd3\x15\xcc\x07\x29\x54\x02\xff\x62\x96\x15\x38\x60\xb5\x25\x3e\xd9\x1d\x81\x67\x3a\xdb\xa5\x60\xf3\xde\x58\x77\xf1\xee\x78\xfb\xc6\x52\xad\x7d\xa7\x5e\x0e\x57\x03\x2f\xfa\x42\xd5\x18\xd3\x40\xf4\xfd\x88\xd3\xba\x88\xef\x9e\x49\x86\x24\xc6\x18\xbd\xbe\xbe\x8e\x3f\xff\xf3\x3f\x1f\x46\x2e\x7e\x11\xef\xd2\xfd\x22\xf3\x1f\xc6\x0a\x7a\x10\xfa\xde\x77\x7e\x94\x11\x00\x0c\x3f\x34\xc9\x4b\x23\x0b\xcf\x02\x1f\x57\x9c\xbc\x21\xcc\x30\x34\x3c\x88\x69\x36\x28\x9f\x14\x8f\x3e\xf8\xc1\x0f\xaa\x63\xc7\x8e\x61\x64\x64\xc4\xc6\xcf\xb5\x42\x10\x01\x48\x05\x3d\x10\xa9\xc0\xa0\x5a\x0c\x68\x7c\xb2\xe5\xcf\xce\x6d\x95\x0e\xec\xdb\x2e\x1e\x98\xde\x29\xcc\x8e\xb5\xfd\x89\x42\x48\x45\x65\xd8\xfd\x22\xa9\x21\x86\x5d\x9d\x40\xff\x6a\x0c\xdc\x7e\x03\xbf\x83\x01\xd2\x28\xc2\xfc\xe4\x30\x47\x16\xd3\xfb\x42\x38\xca\x34\x39\x1d\xd5\x6e\x2a\xe3\xf6\x8c\x05\xc4\xe4\x98\x46\x83\x90\xa0\xdb\xbe\x6e\xd5\xcb\xc1\xfa\x6a\xb5\xbb\x78\x77\xbc\x7d\xe7\xde\x58\xe7\x4e\xa3\x14\xde\x0f\x94\xae\x23\xba\x0c\xa9\x11\xef\xec\x6c\xc4\xcf\x4d\x22\x6a\xc5\xab\x23\xc9\x70\x84\x5b\x17\xc6\x18\xbd\xb5\xb5\x85\x6f\x7c\xe3\x1b\xc9\xc9\xf8\x8e\xb6\xe5\x6e\x90\xbc\xb9\xe2\x66\x29\xac\xac\x3c\xe1\x88\xf3\x20\xf9\xe5\xd1\x99\x55\xee\x20\x37\x4c\xbd\xfb\xca\x21\x64\x74\x8e\x9c\x0a\x0c\xd3\x21\xf3\x34\x79\x5e\x9c\x61\xfd\xb2\xc2\x1f\x04\x5d\x87\xa1\xd1\xe5\x97\x4a\xf7\xe2\x8b\x2f\xaa\x52\xa9\x04\x7e\x07\xaa\xbd\xa9\x2c\x5e\xca\x2d\x3a\x2c\x91\x64\x7f\x88\x31\xa6\x02\xa0\xe2\x6b\xaa\x56\xba\xde\xe4\x74\xb3\xb0\x67\xae\x5e\x3c\xb0\x77\xbb\x38\x3f\xb1\x5b\xd8\x53\xe9\xa8\xaa\xaf\xc9\x57\xc6\x36\x98\x05\x13\xbe\xae\x1a\x13\x93\x35\x86\x90\x73\x1b\x72\xbe\x23\xef\x97\x67\x62\x67\x3f\x1f\x70\xea\x82\x7f\x11\xa8\x09\xba\xe3\xe9\xce\x4e\x29\xac\xaf\x8f\x04\x2b\xcb\xb5\xf6\x9d\xe5\x5a\x67\x71\xb3\x1c\xac\xed\x16\xf5\x96\xa1\xbe\x61\x87\x7c\xb7\x96\x85\xfd\xc6\x48\x83\x4d\x7a\x6a\xad\xd1\x68\x34\xf0\xf5\xaf\x7f\xfd\x41\xac\x02\xee\x86\x89\x9b\xa7\x84\x7e\xde\xbc\x65\xfe\xef\xc7\x62\xcf\x2b\xf3\xfd\xf0\xa2\xaf\x5c\xd7\xaa\xca\xb0\x44\xe7\xa1\xb7\xf5\xe7\x04\xf0\xb8\x0f\x82\xac\x2e\x50\x18\xc6\x52\x19\x04\x70\xae\xb2\xf3\x90\x3a\xd3\x1a\x3a\x7d\xfa\xb4\x7a\xf8\xe1\x87\x31\x39\x39\x09\x22\xb2\x97\x14\x71\x00\xb1\x17\x47\xd9\x15\x99\x32\x11\xd9\xdf\x4a\xbc\x42\x53\x41\x34\x47\x52\x26\x50\xc5\xd7\x34\x3a\xd2\x55\xb5\xc9\x5d\x7f\xcf\x74\xa3\x30\xbb\xb7\x51\x9c\x9b\xde\x29\xcc\x56\x3b\x5e\xcd\x0f\x55\x31\xda\x70\xd6\x4f\x64\xe6\x46\xb2\xf8\x39\xc2\x0d\x3e\xaf\xd0\xbf\xe7\x44\x5a\x06\x72\x3c\xd3\xfb\x78\xad\x17\xbf\x67\x8d\xf4\x88\x32\x04\x84\x64\x82\xb6\xaf\x5b\x8d\x52\xb8\xb9\x36\xda\x5d\xb9\x37\xd6\x59\xbe\x3f\xda\x5d\xde\x2a\x07\xeb\xad\x82\xde\x0e\xc9\x34\x4d\x0c\x08\x14\x59\x17\xa9\x3f\x6e\x55\x18\x63\x3a\xf6\x3b\x12\x88\x15\x92\x20\x08\xf0\x47\x7f\xf4\x47\xfa\xc4\x89\x13\xea\xda\xb5\x6b\xef\xd7\x1a\x1d\x26\x6e\xd6\xf3\x2f\x2a\xdd\xb0\x79\x3c\x68\xfd\xf0\x0b\xc8\x23\xf1\xcb\x5a\x55\x19\x06\x1c\xf2\xb4\xfc\x83\x10\xea\xca\x7f\xd8\x8e\xce\xfd\x5c\xe5\x66\x95\x93\x65\x69\x0c\x62\x72\x16\xad\x00\x80\x23\x47\x8e\xa8\xf7\xde\x7b\x4f\x6e\x24\x83\x3d\x1d\x3b\x7e\xe7\xfb\x42\x8a\xcc\x12\x29\xa3\x07\x2a\x15\xee\x07\x83\xb2\x02\xca\x7e\x48\xa3\xa3\x1d\xaf\x56\x6b\xf9\x13\x13\xbb\xfe\xd4\x54\xd3\xdf\x33\xd5\x2c\x4c\x8d\xb5\xbd\x5a\x39\x9e\x27\xf1\x0c\x29\x32\x50\x00\xf5\x19\x0c\xdc\x58\x01\x1b\xee\x24\x46\x01\x90\x35\xeb\xe9\x9c\xf7\xb4\xcb\xa3\x20\xe8\x90\x8c\xee\x7a\xa6\xb3\x5b\xd0\x8d\x9d\x62\xd8\xd8\xa8\x04\xeb\xf7\x2b\xdd\xb5\x8d\x4a\x77\x6d\x6b\x24\x58\x6f\x16\x74\x23\x54\x66\xc7\xc0\xb4\x10\x75\x7e\x6b\x3d\xb4\xd8\x33\x5f\x09\x69\x31\xa0\xe0\xfb\x2e\xec\x90\x04\xf6\x97\xed\xc3\x18\xd4\xa6\xdc\x65\x59\xd2\x2e\xbf\x41\xb2\x9f\xd5\x01\x5d\x74\x0c\xea\xdc\x79\xe5\x70\x97\xd5\x97\xf2\xe8\xcb\xeb\x0b\x79\xfd\xad\xaf\x4c\x6e\x71\xc8\x88\x83\x50\xc7\x55\xa1\xf7\x63\xba\x0d\x8a\x3f\x0c\xd3\xb3\xe8\x71\xe5\x33\xac\x1b\x26\xaf\xcc\x38\x4f\x3d\xf5\x94\x3a\x73\xe6\x0c\xdf\xe5\xa9\xd0\xb3\x42\xf8\xc5\xcb\x29\x20\x41\x6c\x99\xf0\xe1\x4d\xfc\x1c\xcd\x9b\x98\x64\xfe\xa4\x48\x40\x91\x0c\x4a\x85\x90\xca\xa5\x40\x95\x47\x3b\x5e\x6d\xb4\xe3\x55\xab\x6d\xaf\x56\x6d\x7b\xb5\xb1\xb6\x57\x2d\x45\x77\xa2\x14\x8b\x21\x15\xfd\x50\x15\xd9\xfc\x89\x8a\xc1\x42\x11\x00\x8a\x87\x42\x06\xd0\x16\x20\x0c\xa0\xed\xbd\x2b\x81\xa7\x3b\x5d\x65\x82\xc0\x33\x9d\x96\xaf\x5b\xcd\xa2\x6e\xee\x14\xc3\xc6\x4e\x31\x6c\xec\x94\xc2\x7a\xa3\x18\xd6\x1b\xa5\xb0\xd1\xf2\x75\x33\x54\xa6\x63\x08\x6d\xc3\x41\x00\x09\x08\xf0\xb9\x89\x24\x1c\xbd\x95\x10\x6b\x59\x70\x90\x48\x36\x6b\xd9\xdf\xd5\xd5\x55\xbc\xfa\xea\xab\xb8\x7e\xfd\x7a\x1e\x60\xd8\x67\xeb\x86\x95\x8d\x41\xd6\x76\x9e\x7b\x3f\x69\x78\x5a\xee\x06\x29\x3a\x1e\xef\x41\xca\xce\x2a\x47\xe6\xe5\xa2\x43\x01\xfd\x43\x95\x61\x4d\xa9\xcc\x0c\x87\x20\xfc\x81\x4c\x22\x47\xb9\x83\x00\x6c\x50\x43\x0d\x02\xa0\x41\x42\x33\xec\x2f\x4a\xa5\x92\x9a\x9d\x9d\xc5\xa1\x43\x87\x70\xf4\xe8\x51\x94\xcb\x65\x4e\x83\x05\x0f\xa0\x37\xa9\xca\x2d\x92\x64\x8e\x24\x7e\xef\xfb\x13\xe1\x51\x3a\x13\xe5\x45\xd1\x9d\xad\x3e\x19\x94\x08\xa4\x3c\x03\x5f\x69\xf2\x0b\x21\xf9\x85\x78\xa8\xa3\x0c\x29\xa5\x49\x29\x03\xe5\x19\xf2\x01\x40\xc7\x40\x11\xfd\x9a\x20\xf0\x4c\xd0\xf1\x4c\x27\x54\x26\x08\xc9\x04\xa1\x42\x60\x60\x02\x43\x08\x0d\xa1\x63\xac\x35\x40\x88\xae\xa1\x40\xf2\x2b\xff\x5a\x0e\xbf\x20\x06\x09\xbe\x9b\x33\xf3\x2e\xdc\xc5\xc5\x45\xfc\xf5\x5f\xff\xb5\x2e\x95\x4a\xaa\xdd\x6e\x67\xc9\x5e\x56\x1b\x66\x85\x4b\x97\x27\xbf\xc3\x5a\xc5\x0f\x62\x4d\x0f\x92\x41\x17\x6d\xc3\xd0\x3c\xa8\xcc\x61\xf2\xe1\xfe\x29\xba\x5c\x73\x1c\x59\x95\x18\xe4\x06\x75\xfc\x3c\x20\x79\x10\x4b\xe0\xff\x0b\x37\x0c\xd8\x00\xe9\x7a\xf1\xf7\xbc\xbc\x52\xef\xcf\x3d\xf7\x9c\xda\xbb\x77\x2f\xc6\xc6\xc6\x64\xde\xca\xfe\x09\x6b\x24\xd9\x74\x86\x1e\x40\xf8\xb1\x5f\x02\x18\x19\x71\x6c\x3e\x8a\xbd\x2b\x56\x16\xe2\xfc\xfb\xbf\x7f\x49\x77\xda\x64\xf3\x14\x98\x15\x10\xff\x26\x43\x09\xb6\x14\x9a\x00\x88\xf4\x63\xef\xce\xbb\x6e\x4d\xef\x5a\x4a\x0d\x00\x77\xee\xdc\xc1\xfa\xfa\x3a\xae\x5c\xb9\x82\x46\xa3\x31\xa8\x43\xb8\xfc\xb2\x3a\x20\x1c\x69\xb2\xc2\xb3\xd2\xc0\xe1\x37\x48\x73\x5b\xbf\x07\xa1\x7d\x90\xf5\x33\x4c\x5c\x17\xcd\x79\x75\xc8\xc3\x83\xd4\xce\xd1\x61\x32\x1e\xc6\xec\xe1\x79\x0d\x63\xb5\xb8\xe2\x66\xc5\xcb\x4a\xc3\xe9\x18\xa6\xbc\x61\xf2\xc9\x8a\x97\x95\xef\xb0\xe5\xea\x6a\xb5\xaa\x2a\x95\x0a\xce\x9d\x3b\x87\x5a\xad\x86\xf1\xf1\xf1\xf8\xcc\x0a\x63\xcb\x4f\x81\x09\x1f\xda\xb0\xa1\x4e\xca\x4a\xb1\x61\xfc\xd9\x11\x5f\xb1\x3c\x11\xc7\x47\x0c\x26\xb6\x7c\x4b\x3f\x88\xdd\x35\xcb\x97\x3a\x91\x9e\x6f\x08\xb8\x9f\x03\x14\xe4\x70\x23\x17\x28\x00\xe0\xf6\xed\xdb\x58\x5d\x5d\xc5\xf5\xeb\xd7\xb1\xbe\xbe\x9e\xd5\xb1\xe0\x78\x76\xb5\xc7\x20\x39\x1c\xa6\xa3\x3d\x68\xfa\xbc\x34\xb9\xb2\x21\xc2\x86\xa1\xdd\xba\x61\x94\xdb\x83\x5a\x25\xc8\x8a\x93\x37\xc7\x31\xa8\xf0\x3c\x62\x86\xb1\x38\x86\xd1\x0a\x59\x15\x73\xa5\x97\xb4\xe5\xa1\x6d\x56\xdc\x61\xe8\x02\xf2\x99\x9a\x15\x97\xc7\x4f\xd1\xb5\x77\xef\x5e\x75\xef\xde\x3d\xfd\xe9\x4f\x7f\x5a\x95\x4a\x25\x4c\x4e\x4e\x26\xf1\x25\xa0\xf0\x15\x1b\xeb\x27\xff\x18\xd0\xa4\x7e\x81\x04\x24\x92\x77\xeb\x67\x41\xc3\x4e\x3a\xf2\x67\x06\x18\x96\x76\xd7\x5f\x10\x87\x07\xb1\x05\x23\x01\x22\x05\x44\xcc\x0f\x9b\x9b\x9b\xf8\xc6\x37\xbe\x91\xf0\x41\xf0\xef\x41\x65\xc6\xe5\xb2\x64\x80\x87\xf1\xf0\xf7\xab\xf5\x91\x13\x9e\x55\x17\x17\x1d\x83\xea\xf4\xa0\xf4\x65\x19\x07\x2e\x37\x94\x21\x91\xb7\x1c\x2b\x33\xc9\xab\x04\x0f\xcf\x42\x6b\x17\x01\xc3\xa0\xb6\xcc\x4b\xd2\x32\x48\x88\x86\x05\x80\x2c\x9a\x90\xf1\x2e\xf3\xc9\xe3\x43\x5e\x63\xa4\xd2\x94\xcb\x65\xcc\xcc\xcc\x60\x64\x64\x04\x8f\x3d\xf6\x18\x88\x08\x53\x53\x53\xfc\x73\xfa\xc4\x3a\xb0\x96\x02\x90\x0c\x37\x94\xc8\xb7\x2f\x5c\xc4\xeb\xa3\x43\x74\x70\x49\xb3\x8e\x01\x26\x79\xe7\xab\x1b\xdc\x9f\xff\xda\x3c\x8d\x31\x68\xb7\xdb\xd8\xd9\xd9\xc1\xd6\xd6\x16\xbe\xfb\xdd\xef\x6a\x00\x60\xe7\x5f\x0c\xa3\x44\x86\xd5\xe8\xc3\x58\x08\x32\x9f\xbc\x76\xcb\x2a\x7b\x18\x39\x1c\xc6\x5a\x78\x90\x3a\xe6\xd5\x77\x90\xe2\x1c\x04\x2e\x43\x01\x62\xd6\x72\x2c\x44\x22\xee\x06\x15\xca\x89\x73\xb9\xbc\xca\x0e\x13\x9e\x15\xcf\x55\xee\xb0\x65\x0c\xeb\x2f\xcb\xb7\x2e\x8f\x67\x83\x78\x32\x48\xa0\x01\x00\xc7\x8e\x1d\x53\xf6\x1b\x8b\xcf\x7e\xf6\xb3\xca\xf7\x7d\xbb\xf5\x3d\xb1\x48\xc4\x01\x42\xd2\x8a\x48\xc5\x61\xf1\x24\x08\x71\x20\x48\x39\xee\xcf\xf2\x76\x82\x4c\x18\x86\xd8\xd9\xd9\x01\x00\xb9\x19\x4b\xd6\x3d\x4f\x68\xb3\x5c\x9e\xa2\x1b\xd4\x21\xb3\x64\xf6\x41\xf2\x1e\xb6\xfc\x2c\x1a\xb2\xea\x33\xa8\x93\xe3\x01\xe2\x0c\x02\x85\xbc\xf8\x59\xf4\x25\xcf\x83\xf6\x71\xf0\x84\x60\xf1\x06\x55\x96\xc7\x7d\x10\x8d\x30\x08\xed\x78\x39\xae\x0a\xc9\xb8\x92\x0e\x19\x96\xd5\xf8\xae\x7c\xb2\x68\xcb\x2a\x53\xe6\x9f\x15\x37\x4f\xcb\xe5\xc6\x3d\x79\xf2\xa4\x7a\xf3\xcd\x37\x93\xdf\x17\x5e\x78\x21\x89\xeb\x79\x1e\x0a\x85\x82\x83\xa4\x1e\x3d\x72\x52\x54\x00\x89\xab\x1e\xa9\xb8\xed\x76\x3b\xe5\xf7\xe5\x2f\x7f\x59\x9f\x3c\x79\x52\x01\xc0\x9b\x6f\xbe\x39\x48\x6b\xe6\xc9\x59\x5e\x7b\x0d\xab\x29\xdf\x6f\xd9\xd2\xe5\x81\x7d\x5e\xdc\x5f\x34\x9d\x79\x32\xe3\xa2\x6f\x10\x5f\x07\xf9\x0f\xa4\x53\x31\x4f\xfe\x2b\xfd\xb2\xfc\xa5\x9f\x7c\x1e\x94\xe7\xb0\xe5\x0e\x2a\x33\x2f\x0f\xe9\xb2\xca\x95\x74\x49\x1a\xf3\xe8\x76\xc5\x75\xd1\x91\xc7\xb3\x61\xe8\x1a\x94\x2e\x15\x7e\xe6\xcc\x19\xf5\xff\xd6\x6e\x6d\xb7\x91\xc3\x30\xd0\x70\x39\x5b\xca\xd6\xe1\xfe\x4b\x08\xf2\xe5\x80\x3b\x99\x17\x7d\x39\x01\x81\x25\xf1\x35\x22\x29\x4a\x5e\x23\xf7\xdf\x3d\xbe\x69\xd7\x75\x9d\xd7\x75\x9d\xd8\xbf\xc7\xef\xf7\xfb\x43\xcf\xd4\xf7\x7a\xbd\x9a\xd8\xab\xb5\x37\xf1\x65\x6b\xc4\xd6\xc6\xa0\xc5\xc2\x64\x52\x0e\x2a\xde\x64\x77\x8b\x49\xf9\xe3\xaf\xf5\x6e\x70\xeb\x09\x22\xec\x8a\x48\x72\x5a\x6a\x2b\xb0\x06\xc7\x96\xaf\x4d\x60\xd6\xdc\x06\x77\xf4\xd6\xce\xbf\xe0\x70\xe3\xc4\xbb\x29\x96\x8d\x4e\x67\x07\xff\x98\xdc\x93\x42\xa2\x78\xd3\x66\x4b\xf1\x53\x76\xd1\xa6\xf3\x4d\xf2\x27\xeb\x6f\x8a\x92\xc2\xd8\xe6\x81\xc5\x7f\x7f\xa2\x4b\xaf\x25\xc7\xe0\x53\xce\x56\xef\x60\x0c\x5c\xfb\x3e\x87\x78\x1a\x1e\xe4\xbd\x6d\xa0\x8c\xe2\x41\x3a\x1b\x2b\xde\x2f\x82\x8b\xbd\x0e\xdd\xf2\xed\xe6\xde\x16\x0f\xf7\x3e\xcc\x9a\xba\x0a\xe3\x7a\xd5\xd5\x79\xda\x9f\x34\xb6\x7e\x26\xcf\xe6\x11\xbb\xbb\x3a\x27\xfd\x8a\xff\x80\xfe\x94\x55\xf9\x89\xb2\x4d\xde\x3b\x59\xb7\x87\x0e\xc3\x3b\x6d\xb5\xaf\xe2\xc9\xf7\x9b\x57\xc3\x8f\xc5\xb1\x96\x92\xb5\xe5\x6b\x37\xe5\xe6\x99\x4e\x07\x85\xa1\xad\xd4\x8a\xde\xfa\x64\xa3\xfb\x89\x8d\x16\xff\x66\x4e\x6d\x28\x67\xef\x34\x7f\x48\x4f\x7a\xf0\xa9\xe2\xbc\x89\x3f\xb3\xed\x6c\xfe\xcf\xa7\xb2\xad\xfc\xc6\x64\x9e\xd8\x6c\xe2\xc3\x70\xc9\x67\x4a\x02\x9c\x63\xca\x53\x70\x99\x7e\xa6\x23\xe9\xdd\xc8\x61\x6b\x75\xa4\xe0\x6d\xf1\x3b\x9b\x29\x60\xad\x4d\xe4\x53\xf8\x13\x4d\xd9\xc4\x79\x25\xc3\xf8\x9c\xad\x8d\xcf\xd4\x9c\xd3\xe9\xfc\x99\x74\xaa\xf5\x3b\xfb\xcd\x06\x4c\x39\x9d\xda\x13\xbf\x32\x79\xa7\xd3\xd9\x3e\x71\xd0\x24\x98\x72\xcc\xc6\xb8\x03\xd5\xcc\x39\xfa\x46\x47\xda\x00\x69\x9d\xad\x9e\x39\x9f\xf0\x6e\x74\x6d\xe7\x53\x7c\x5a\x3f\xb5\x05\x80\xe9\x74\x36\x9e\xf8\x48\xe9\x4a\xed\xaf\xd7\xb1\x29\xf8\x0c\xcb\x93\xf9\xa6\x80\xa4\xf1\xb6\x78\xfd\xac\x47\xfd\x93\xdb\x7c\x62\x53\xbf\x4f\xb0\xe6\x78\xd3\x67\xd3\x03\xf8\x95\xee\xed\xa7\xa5\x13\x74\x28\x4c\x6a\xfd\x4d\x6b\x3f\xb1\x6e\x3e\xbf\x3a\x1b\x4f\xe8\xad\x5c\xf3\xdb\xc2\x11\xc6\xac\x3f\xc7\x2a\x46\x8a\xb6\xe5\x49\xf8\x36\x78\x1b\x5d\xb3\xb9\xdf\x48\x58\x8e\x3a\xfd\x0a\x5f\x7a\x2a\x5e\x85\x13\xe7\x18\xc6\x5f\xcc\xec\x84\xc1\x0a\x8d\x74\xd6\x67\x4f\xec\x33\x7d\x4c\x3f\xb3\xcf\x6c\x38\x0c\x4a\x6f\xc2\x8b\x63\xe6\x1f\xa5\x93\xd1\x18\x9d\xad\x29\xe9\x4e\x18\x98\xdf\xd4\x9c\xb3\xe1\x70\xaa\x31\xd3\xcd\x70\x23\xaf\xc2\x95\x64\x5b\xbb\xce\xe6\xd3\x9c\x48\x31\x49\x34\xd7\x9a\x7c\x4e\x6b\x4b\xfb\x96\xe9\x70\xcf\x73\x76\x66\x65\x51\x95\x1a\x8d\x30\x1a\xd2\x13\x0d\xc7\xec\x97\x63\x85\x21\xdd\x4a\x70\x1d\xce\x91\xcd\x0d\x67\xd2\xb6\xc1\x9f\x76\xdc\xd7\x1b\xe5\x7b\xfc\xf5\xfc\x20\x3c\xd8\xbe\x0e\x7e\x62\xcc\x93\x45\xf9\xf8\x24\x32\xc8\x1b\x93\x8b\xf0\xe3\x17\x0b\xc4\xc6\xc6\x4e\x56\x8d\x9b\xbc\x64\x7c\x4c\x2e\xdd\xc0\x99\x1d\xe5\xcb\x49\x53\xf9\x88\xf3\xcd\x4d\x8f\xc5\x00\x63\x8d\x78\xa6\x3f\x9b\xaf\x33\x1f\x3a\x94\x93\xb1\x61\x61\x41\x10\x08\x94\x05\xa4\x09\x1c\xf2\xba\x82\xa6\x36\x10\xca\xb8\xe4\x50\x89\x3c\xf5\xb3\x8d\x3f\xfb\x6e\x73\x23\x2f\x4b\x6c\x0c\x94\xf2\xe1\xe4\x4d\x8d\xf9\x0a\xaf\xac\xaa\xb0\xa8\xb5\x4c\x3e\xe6\x7b\xbc\x1a\xa3\x0c\xf2\x3b\xbb\x4a\xce\xd9\xc2\x22\x97\x6c\xa6\xe6\x0a\x45\x1b\x87\x69\x37\x15\xa9\x99\x1b\x28\xe3\x72\x66\xb3\xf1\x55\xb1\x6c\x0f\xfb\x1f\x3b\x4a\x20\x25\x0e\xf2\xe1\xfc\x0c\x9c\x3b\x61\xd2\xe9\xd3\x16\x0a\x87\xd3\x55\xce\xa9\x87\xf5\xdd\xa6\xc1\x93\x01\x8b\xe8\xec\xe3\x09\xc2\x30\x31\x19\xb4\xa9\x6e\x51\xd8\x58\x31\x72\xa7\x35\x62\x67\x63\xb6\x01\x58\x71\x52\x27\x2e\x26\x75\x5a\x4b\xb3\x39\xdd\xda\x1d\x0f\xe6\x0c\xcb\x69\x87\x55\x15\xe6\x26\xd7\xd4\xfe\x61\xb6\x19\x7e\x16\x0b\xb7\xbf\x14\x6f\x8a\x05\x62\xfe\xf0\xd7\x37\x4f\x7a\x32\x08\xc2\x5c\x11\x79\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xcf\x33\xaa\x99\x86\xfc\x00\x00") +var _web_uiV1StaticMstile150x150Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x2b\x40\xd4\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x01\x0e\x00\x00\x01\x0e\x08\x06\x00\x00\x00\x78\xb1\xf9\xa5\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xd4\xbd\x69\x90\x24\xc7\x75\x26\xf8\xb9\x67\x64\x64\x56\x56\x56\x76\x76\xdd\x7d\x1f\xec\x1b\x40\xa3\x01\x36\x71\x11\x60\x13\x4d\x11\xa4\x00\x88\x12\x48\xd1\x48\x89\x43\xea\x22\x60\xab\x5d\x1b\x1b\x1b\xb3\x5d\x93\xc9\xd6\xc6\xf4\x63\x77\x6c\x6d\x7f\xec\xef\xb5\x05\x45\xdd\xd4\x90\x5a\x91\x14\x25\x82\x04\x41\x02\x24\x0e\x02\x20\xae\x06\x40\xa0\x81\xbe\x0b\x8d\x3e\xaa\xeb\x3e\xb2\xb2\xb2\x32\x23\xdc\xf7\x47\x84\x47\x7a\xbc\x74\xf7\x88\x6a\x60\x66\x77\xdd\xac\x2a\x23\xdc\x9f\x3f\x7f\xfe\xc2\xfd\x5d\xee\xe1\x01\x00\x3c\xfe\xd3\x93\x9e\xc7\x49\x3e\x85\x31\xd5\xa7\xc9\x56\x6e\x6a\xc7\xd4\xae\x0b\x5f\x56\xfb\x26\xbc\x94\x6e\x5b\x1f\x5d\xf4\xe6\xa1\x8b\xd6\x33\xfd\xe5\xc5\x9d\x45\x9f\xeb\x39\xae\xe7\x59\xe5\x69\xdf\x46\xff\x07\xf9\xa5\xf8\xf3\xb4\x49\x61\xb2\xf0\xe7\x19\x5b\xb6\x36\x5d\xf8\x5d\x30\x36\xba\xf3\xe2\xcb\x83\xe3\x7a\xe9\x36\xb5\x6b\x2a\x33\xa6\xeb\x1d\x5c\x79\x1e\x38\xc5\x9f\x37\xb9\x26\x60\x1e\x5a\xfe\x6b\x25\x13\x93\x5d\x70\xa6\xeb\xf5\x0a\xac\xac\x01\x90\x55\xdf\x05\x93\x97\x9f\x79\xda\xcc\x3b\xa1\xaf\xa7\x9d\xac\x3a\x59\x7d\xcf\x3b\xe9\x6c\x6d\xad\x77\xe2\xe6\x4d\xd7\xc3\x4f\x13\x7c\x16\xdf\x6c\x63\xee\x7a\xf1\xf6\xe0\x58\x8f\xc4\xf9\x30\x06\xae\xad\x6c\xbd\x82\x66\xbd\xed\xba\x04\xdc\xf5\xe0\x33\x95\xad\x97\x1f\x79\x06\xbf\x0d\xf6\xc3\xa2\xdd\x06\x9b\x45\xa7\xa9\xdc\x25\x14\xae\x47\xc8\xb8\xda\xb4\x95\xe7\x6d\xd3\xa5\xf4\x5c\x6d\xaf\xe7\x39\x5c\xcf\x7c\x59\x2f\x8e\xeb\x15\xaa\xb6\x7c\x6b\x3f\x3d\x02\x28\x2c\xc0\xea\x5a\x60\xfd\x0c\x16\x96\x3c\xbd\x8e\xb0\x94\x9b\xf0\x9a\xea\xda\xda\x57\x65\xfa\x2f\x6d\x2f\x6f\x9b\x80\x99\x27\xae\x94\x87\x7e\x13\x6f\x29\xdd\x59\xb0\xfa\xaf\xa9\x5d\x1b\x1e\xbd\xde\xf5\x3c\x63\xfa\x7c\x6d\x03\x59\x10\x38\x53\xff\x28\x1d\x9c\xe4\xb9\x78\x92\x05\xa7\x3f\x5b\x3a\x16\x40\x60\x6d\xf4\x50\x38\xda\x47\x57\x3b\xae\x71\x60\x2a\xa7\x34\xaa\xeb\x0f\xc2\x03\xda\xb7\xac\x3a\xa6\xf9\x90\xa2\x93\x93\x3f\x53\x5a\x8f\x86\x75\x49\xf9\xf5\x68\x89\x3c\xf9\x59\x34\xe5\x69\x33\x0f\x0e\x13\x2d\xb6\x36\xb2\x26\xdd\xf5\xf0\x38\x4f\x5a\x8f\x66\x31\x5d\x67\xe5\xb9\xda\x70\xf1\x24\x8f\x10\xba\x1e\xad\xe8\x1a\x67\x79\x68\xb0\xc1\xe4\x79\xae\xeb\xe9\x5b\x5e\x5c\x59\xf4\x5d\x0f\x6c\xde\x31\xb5\x5e\xfe\x71\xa6\x15\x98\xa4\x0f\x60\x97\x98\xae\x32\x57\x3e\x25\xc4\x94\x97\x27\x5f\x4f\x79\x24\xbc\x29\xad\x47\x4b\xbb\xca\x6c\x6d\xdb\xfa\x60\xab\x93\xa5\x85\x5c\x74\x9a\x2c\x07\x7a\x9f\xa5\x3d\x6d\x70\x7a\xca\x83\xcf\xf5\x9c\x4d\x78\x4c\xf9\x79\xeb\xb8\xc6\x87\xab\xbf\x36\xbe\x51\x5c\xb6\xe7\x6a\xe2\x43\x16\x2e\x64\xc0\x9a\xac\xa1\xf5\xf0\xc3\x35\x0e\x68\x3d\x17\xad\x2e\xfa\x8c\x84\xe5\x91\xbe\x59\xbf\xea\x3a\x8f\x56\xe3\x86\x32\x9a\x77\xbd\x52\x33\x8f\x96\xc9\x5b\x96\xb7\xcf\xf4\xd7\xa5\x65\x4c\x5a\xda\xd5\xa6\x0d\x26\x4f\x3b\x59\x34\xdb\xda\xb4\xe1\xb7\x3d\x2b\x13\x6d\x36\x7c\xae\xe7\xe5\xea\x53\x9e\x76\x5d\xed\xbb\xf0\xe4\xa5\xd9\x35\x46\x5d\xcf\x24\xcf\x33\x30\xd1\x66\x82\x75\xf1\xcb\x86\xcb\x35\xaf\xd6\xd5\x37\x0f\x66\x69\xe5\xf2\xf9\x60\xb8\xd7\x61\x75\x5f\x8c\x4a\xb6\xbc\xfe\xb4\xcd\xff\xcc\xab\xc9\x04\x7a\xdb\xb5\xf5\x8f\x5e\xbb\x7c\x4e\xda\x0f\x4a\x8b\x0e\x6b\xab\x63\x6a\xd7\xd6\x1f\x8a\x47\x2f\xa7\xfd\xb2\xf1\xd4\xe6\x97\xbb\x9e\xbb\x89\x4f\x34\x51\x3e\xd8\x68\x31\xf5\xc5\xa6\xed\x4c\xcf\xd9\xf6\x7c\xf3\x26\x13\xfd\xb6\xf1\xe4\x6a\x57\x95\xbb\x9e\xa5\x80\xb9\xcf\xb4\x6d\x93\x65\x41\xcb\xb3\x78\x60\xba\xa6\x34\x51\xba\xe9\xbd\x69\x5c\x65\x59\x22\x00\x20\x6c\x12\x90\x4e\x24\x1b\x41\xb6\x4e\x51\x01\x42\xcb\xf5\x32\x4a\xb0\x0e\x67\x6b\xc3\x04\x6f\xa2\xc1\x44\xa7\x4b\x3a\xbb\xfa\xee\x62\x6c\xd6\x64\xb7\xb5\xb5\xde\x32\xd3\x03\xd7\xdb\xb4\x09\x41\x93\xd0\xcf\x9a\x94\x2e\x61\x45\xfb\xeb\x9a\x40\x26\x21\x45\x71\x0b\xf4\xe2\xa5\x89\xb6\x91\xa5\x65\x75\xba\x4d\xf7\x79\x04\x1c\xa5\xd1\x25\xf4\x4c\xb4\xd2\x76\x6d\xfd\xb3\x09\x7a\x97\x90\xd4\x71\x52\xfa\x6c\x34\xd2\xfe\xeb\xf5\x75\x5a\xb2\x04\xab\xb1\x03\x26\x69\x96\x67\x12\x64\x31\xd2\x36\xe0\x4d\x38\xb2\xda\xb3\xb5\x49\xeb\xdb\xb4\x8d\x4d\x60\x5e\x4f\x9b\xb4\x3d\x5b\x9f\x4c\xed\x98\xca\x6c\x7d\xa0\x65\xae\x36\x5d\xf5\xb2\x68\xc9\xe2\xa9\x09\xc6\xd6\x9e\xa9\x9e\x8d\x47\xb4\x2c\x2f\xcd\x36\x9c\x26\x5a\x5c\xf4\xb9\xc6\x68\x9e\xbe\x99\x52\x9e\xf1\x92\x05\xef\x7a\xee\x59\xf4\xd9\x68\xa2\xb8\x6d\x75\x5c\xbc\x37\x16\x64\x0d\x28\x17\x33\x74\x82\x6c\x65\x59\x75\x4d\x38\xb2\xe8\xb4\xa5\xeb\x81\xf9\xb0\xf0\xfe\xb7\x86\xcb\x33\xf1\x68\x5e\xd6\x24\x5b\x4f\xbb\xae\xb6\xd7\xc3\xd3\xac\xdf\xf5\xe2\xb3\xe1\x77\xc1\x66\xd5\xcb\x23\x74\xaf\x17\xdf\x7a\xd3\x7a\x84\x53\x9e\xb6\x32\xfb\xc6\xe2\x0c\x97\xaf\xe5\xca\xd3\xef\x75\xc4\xa6\x18\x40\x96\xa9\xe7\x8a\x3b\x98\xe0\x5d\x65\x59\xbe\xaa\x0d\x9e\xd2\xfb\x41\xda\xb5\xd1\x92\x67\x80\xe4\x31\x35\xf3\xb4\x6d\x2b\x33\xc5\x23\x4c\x75\x6c\x63\xc0\x54\xce\x73\xd4\x31\xd1\x63\xaa\x93\x67\x1c\xd0\x3e\x98\x7e\x4d\xed\xaf\xc7\x85\x32\xb5\x6d\xa3\xdd\x34\xb6\xb3\xfa\x96\xa7\x6d\x13\x1e\x53\xdb\x26\x9a\x4d\xd7\x79\xca\x6c\x7d\x48\xf2\x5c\x12\xd9\x36\x10\x75\xed\xe2\xf2\x05\x75\x3c\xa6\x01\x4a\x7d\x2c\xca\x60\x93\x80\xb2\xf9\xc1\x7a\xbe\xee\x03\x53\x5a\x4c\x0c\xca\x33\xd9\x29\x3d\x94\x26\xbd\x5d\x4a\x0f\x1d\x28\xb6\xf6\xe9\x35\xad\x47\xfb\x62\x82\xbf\x1e\x7a\x4d\xbe\xae\xa9\x2e\xc5\x9f\x57\x6b\xda\x14\x84\x6d\xac\x65\x69\x7e\x3a\x5e\x5c\x02\x8b\xb6\x4f\xc7\x46\x9e\xe4\xc2\x99\x25\xa0\x4c\xbc\xa1\x63\xc3\x36\x71\x5d\x4a\xc2\x95\xe7\x52\x20\xa6\xba\x74\x0c\xd8\x9e\x41\xcf\x5c\x36\x01\xd2\x07\x6b\xfa\x35\x5d\xbb\x1a\xa5\xd7\xb6\x8e\xd9\x60\x6d\x34\x65\xd1\x70\x3d\xfd\xb0\xe1\x73\xd1\xe0\x82\x35\xc1\xe5\xc5\x4f\xeb\xd3\x3c\x13\x9e\x24\x6d\xdb\xb6\x8d\xeb\xd7\xea\xef\x63\x1f\xfb\x58\x0a\xf6\x0b\x5f\xf8\x02\xff\xc2\x17\xbe\xc0\xe9\xb5\xaa\xaf\xea\x51\xfc\x19\x34\x53\x98\x3c\x7d\xb0\xd5\xa7\x78\x68\x7b\x59\xcf\xdd\x06\xe7\xa2\xfb\x83\xc2\xb8\xfa\xe6\xa2\xdd\x56\x3f\x8b\xbf\x36\x1a\xf2\xf0\xde\x45\x67\x4f\xbe\x69\x03\x18\x0c\x79\x26\xc9\x08\xf4\x4a\x7c\xa0\x57\xe2\x65\x69\x07\x57\x99\x2d\x51\x98\x2c\x5a\xf3\x9a\x9d\x79\xdb\x70\xc1\x7d\x58\xc9\x89\xd7\xf7\x7d\xde\x6e\xb7\x93\xf2\xdb\x6e\xbb\x8d\xbf\xf4\xd2\x4b\xe2\xb7\x7e\xeb\xb7\x92\x7e\x0f\x0f\x0f\xa3\x58\x2c\xae\xab\x51\x29\x25\x18\x63\xc6\x3c\x29\x25\x00\x24\xe5\x4b\x4b\x4b\x58\x59\x59\x01\x00\xfc\xdb\xbf\xfd\x5b\x8a\xd6\xb1\xb1\x31\x7e\xed\xda\x35\x17\xbf\x6c\xe3\xc6\x05\x6b\xab\x6f\x73\x09\x6c\x16\x9c\x69\x6c\xd8\xda\xc9\xa2\x9b\x26\x17\x6d\x79\xf0\x9b\xee\x6d\xf4\x9a\xd2\x7a\x60\xf5\x76\x4c\xcf\xc1\x4a\x13\x15\x1c\x59\x1d\x05\xcc\x1d\xcf\x73\x6d\x23\x26\xab\x6c\xbd\x0c\x76\x3d\xec\xf5\xd0\x60\x12\x92\x80\xf9\xc1\xd8\xae\xb3\x04\xab\xcd\x4c\xed\xa1\x7b\x70\x70\x90\xcf\xcd\xcd\x89\xe3\xc7\x8f\x73\xdf\xf7\x51\x2a\x95\x30\x3a\x3a\x0a\x00\xa9\x89\x2e\xa5\xe4\xfa\x24\x07\xc0\x0d\x82\x20\x81\xd1\x7f\x09\x8c\x9e\x27\x68\xbe\x94\x52\x90\x76\x05\x15\x2e\x33\x33\x33\x68\x36\x9b\x00\x80\xc7\x1f\x7f\x5c\xa8\x3e\x70\xce\xb9\x10\xc2\x35\x91\x5c\x7c\x34\xa5\x3c\x42\x04\x86\xbc\xbc\xca\xcc\x56\xc7\x46\x83\x4a\x59\x02\x32\x8f\xd2\x74\xcd\x4d\x8a\x6f\x3d\x78\x5d\x74\xeb\x78\x8d\xcf\x82\x19\x0a\x68\x25\x97\xa4\x07\xa9\xeb\x9a\x3c\xb4\x0d\xbd\x1d\x58\xf2\x4d\x52\xdd\xd6\x49\xd7\x04\x34\x5d\xbb\xe0\x6c\xc9\xf5\x00\x6d\xe5\x14\xa7\x53\x6b\x15\x0a\x05\xf4\xf5\xf5\xa1\xaf\xaf\x0f\x37\xdd\x74\x13\x00\x60\x68\x68\x08\x1b\x37\x6e\xa4\x13\x3d\xa9\xab\x04\x81\xc2\x47\xef\x69\xbe\xa9\x3e\x90\x12\x40\x82\xb4\x25\x68\xbe\xea\x5b\x2c\x30\x52\xf9\xb1\xf0\x10\x86\xfa\x90\x52\xe2\xe2\xc5\x8b\xe8\x74\x3a\x78\xea\xa9\xa7\x44\xb5\x5a\xe5\x52\x4a\xac\xac\xac\x5c\xcf\xb3\xb1\xf1\x9f\x26\xd7\x98\xc9\xaa\x93\x25\x40\x5c\xf0\x59\x4a\x66\x3d\xf3\x89\xe6\x03\xf9\xf9\x71\xbd\x7d\xb1\xde\xd3\x55\x15\x97\x74\xcb\x92\xca\x1f\x44\x7a\xc2\x01\x4f\x09\xb7\x49\x58\x90\xf2\xbc\x0c\xb2\x95\xe7\x65\x76\x96\x96\x72\xc1\x27\x34\x6c\xd9\xb2\x85\xef\xda\xb5\x0b\xd5\x6a\x15\xdb\xb7\x6f\xb7\xf5\x4f\xff\xa5\xd7\xd1\x9f\x04\x67\x00\xe7\x12\x1e\x97\xcc\x8b\xef\x3d\x3f\xe0\x5e\x39\xe0\x7e\x39\xe0\x7e\x5f\x87\x57\x0a\x82\x79\x5c\x30\xaf\x10\xc3\x31\x09\x8f\x01\x5c\x00\x81\x64\x32\x10\x0c\x81\x60\x10\x9d\x82\x68\xad\x16\x45\xab\xed\x89\x76\xbb\x20\xdb\x6b\x9e\x08\x42\x2e\x03\xc9\x10\x08\x48\x21\x23\xb8\x00\x00\x24\xa4\x40\x24\x30\x44\xdc\x2f\xf5\x07\x74\x85\x4e\x72\xaf\x3a\xd7\xe9\x74\x70\xe6\xcc\x19\x5c\xba\x74\x09\x13\x13\x13\xc2\xf3\x3c\x1e\x04\x41\xde\x67\x41\x79\x99\xf7\x39\xe6\x79\x5e\x26\xb8\x3c\xca\xf4\x7a\xe0\xfe\x5b\xd4\x75\xf5\xc7\xa5\xe8\x7a\xf2\x5c\xae\x8a\x9e\xf2\x4a\x65\x1b\xbc\x0d\x27\x25\xc8\x85\xd3\x96\xb2\x34\x95\x69\x60\x50\x78\x97\x80\xca\x4b\x37\x85\xb1\x95\x0b\x00\x28\x16\x8b\xfc\xd6\x5b\x6f\x05\x00\xdc\x74\xd3\x4d\xe0\x3c\x01\xe7\x40\x8f\xd5\x90\x12\x0c\x00\x3c\xc4\xc2\xc1\x13\xcc\xab\xb4\x0b\xe5\x81\xb5\x42\xad\xba\x56\x18\xec\xeb\x14\x86\x6b\xad\xc2\x78\xad\xe5\x6d\x19\x58\x2b\x8c\x17\x43\x56\xf7\x04\xab\x16\x04\xaf\x72\x89\x2a\x97\xac\xca\x24\x7c\xd6\xa5\xcf\x63\x11\xde\x24\x49\x96\x9a\xf0\x81\x64\x68\x0b\xc8\x96\xe0\x68\x0a\x26\x9b\x01\x97\x0b\x6b\x9e\x98\x6b\xfa\x62\x66\xc5\x0f\xaf\x2d\x97\x82\xa9\x46\x29\x9c\x6a\x94\xc2\xc9\xa5\x52\xb8\xb4\xe2\x87\xcd\xb0\x20\x83\x80\xcb\x40\x02\x01\x00\x21\x21\x03\x25\x50\x94\x95\x42\xf8\x29\xe2\x7e\x63\x76\x76\x16\x97\x2f\x5f\xc6\xaf\x7e\xf5\x2b\xc1\x18\xe3\x9a\xdb\x95\xc5\x57\xd7\xa4\xb0\xd5\xcf\x7a\x9e\x59\xd6\x41\x1e\x5c\x2e\x1a\xf2\xe2\xcd\xb2\x24\x68\xbb\x79\x85\x8d\xab\x2d\x2b\xdd\xba\xe0\x50\x85\x7a\x72\x21\x70\x11\x6b\xeb\x9c\x6d\x12\x23\x03\xd6\xa6\xf1\x4d\xf5\x5c\xf4\x67\x09\x19\x13\x7e\x17\x8d\xb4\x1d\x3d\xf5\xb4\x59\xad\x56\xd1\x68\x34\x04\x00\x3c\xf2\xc8\x23\x3d\x02\x42\x73\x21\x12\xe1\x80\x68\x52\x7b\xc5\x90\xf9\x95\x4e\xa1\xb2\xb1\xe9\xd5\xeb\xab\xde\xe6\xfa\xaa\xb7\x7d\xb0\x59\xdc\xbb\xa1\xe5\xed\x29\x75\xf8\x56\x4f\xb0\x51\x0e\x54\x98\x44\x19\x60\x91\xe5\xa1\x87\x2d\xa4\x04\x1c\x71\x0c\x29\xe3\xc1\xc0\xf4\x32\x40\x82\x21\x5d\x2b\x9d\xe2\x29\x2d\x24\x64\x5b\x32\x34\x43\x2e\xe7\x3a\x05\x39\xd9\x2c\x86\x17\xe7\x2a\xc1\xd9\xd9\xfe\xce\x99\xf9\xbe\xce\xc5\xf9\x4a\x30\xb5\x52\x0a\x9b\x2d\x4f\xb4\x05\x64\x80\xc8\x32\x09\x90\xb6\x4c\x4c\x16\x0a\x1e\x7d\xf4\xd1\xac\x31\xb3\xde\x7c\x97\xa2\x30\xe1\x70\x09\x8e\xeb\x19\x87\xa6\xf6\x5c\x6d\xeb\x6d\xb9\x2c\x24\x97\xc0\x34\xd1\x91\x27\xdf\xd8\xa6\x49\x70\xe4\xd5\xd0\xeb\x9d\x74\xb6\xf2\x3c\x42\x81\x76\x02\x70\x3f\x1c\x17\x1d\x59\xc2\x4b\x25\x1b\x53\x69\x72\xf1\x2a\x81\xf9\xf2\x97\xbf\xcc\x2b\x95\x0a\x3c\xcf\xd3\xcb\x39\xf9\xf3\x00\x78\x90\xf0\xfa\xdb\x85\x72\xad\x55\xa8\x0f\xaf\xf8\x9b\x47\x1b\xc5\x7d\xc3\x8d\xe2\x4d\x03\x6b\x85\x43\xa5\x80\x6f\xe7\x92\xd5\xb9\x84\x1f\xc3\x03\x3d\x93\x5b\x02\x60\xc9\x4f\x66\x4a\xe0\xd4\x45\xb7\xbe\x24\xa2\x43\xc6\x65\x2c\x46\x0f\xd9\x2d\x57\x65\x60\x5d\x0b\x41\x02\x81\x60\x68\x74\x0a\x62\x72\xd5\x17\x67\xe7\xfa\x3a\x6f\x4d\x0f\x74\xde\x9e\xaa\xb6\x27\x16\xfa\x82\x99\xa5\x52\xd8\x08\x0b\x32\x90\x52\x06\x8c\xb1\x20\xb6\x46\x02\xdd\x2a\x91\x52\x0a\x00\x68\xb5\x5a\xf8\xfb\xbf\xff\x7b\x31\x32\x32\xc2\xa7\xa7\xa7\x5d\x3d\xca\xd2\xac\x79\xac\xc6\x2c\xdc\xeb\x29\xcb\x52\xb2\x14\xc6\x45\x5f\x96\x05\x61\xb3\x4e\xb2\x92\x4b\xd0\xf4\xe4\x99\x86\x55\x96\x75\xb0\x5e\xcd\x6e\xd2\xcc\x59\x82\xc1\x24\x48\xb2\x98\x0c\xf4\x32\xc8\x56\x66\x62\x66\x16\x1e\x97\xd6\xa1\x30\xd8\xb7\x6f\x1f\xdf\xb4\x69\x13\xb6\x6d\xdb\x86\x72\xb9\x0c\xce\x39\xb5\x28\xba\x82\x02\xf0\xfc\x80\x95\x37\x36\x8b\x83\x63\x0d\x7f\xfb\xe6\x45\xff\xc6\xa1\x95\xe2\x47\xfb\xdb\x85\x7d\x7e\xc8\x37\x73\x81\x2a\x03\xfc\x5e\x01\x61\x48\x06\xcb\x22\x12\x00\xe9\xec\x68\x8a\xf7\x4a\x96\x54\x4e\x8f\x40\xd1\xf2\x13\x21\x81\xc4\xec\x30\xc2\xea\x34\x44\x02\x25\x10\x0c\xad\x80\xcb\xb9\x56\x51\x9c\x5f\xe8\x0b\xde\xbc\x56\x6d\x9f\xb8\xb2\x61\xed\xec\x7c\x25\x98\x5a\x2c\x07\x4b\xb1\x5b\x13\x20\x76\x73\xe2\x5f\x20\xb2\x42\x44\x10\x04\xe8\x74\x3a\xf8\x87\x7f\xf8\x87\x3c\xda\x1e\x06\x18\x95\xd6\x6b\xc9\xb8\xe0\xf2\xce\x17\x93\xe2\xcb\x43\xff\x7a\x60\x3f\x2c\x3c\x56\x58\xe6\x28\xb4\x4d\x34\xd7\xa4\xb7\x5d\xbb\x24\xb4\xde\x3e\xcd\xcf\x32\xad\x4c\xf4\x51\xf8\x2c\x29\x9f\xf7\xde\xd5\xa7\xa4\xbd\x7d\xfb\xf6\xf1\x5b\x6e\xb9\x05\xb5\x5a\x0d\x00\xa8\xa0\xe0\x52\x4a\x8f\x31\xe6\x41\xc2\xef\x6f\xf3\xca\xf0\x8a\xbf\x75\xe7\x5c\xf9\xc6\x91\x46\xf1\x96\x0d\x2d\xef\xc6\x72\x87\xef\x2e\x08\x56\x67\x80\xef\x12\x13\xca\xed\x67\x29\xd7\xa2\x2b\x0a\x94\xfc\xd0\xe5\x08\x95\x29\x46\x19\x63\x58\x9a\xbd\xfe\x44\x2c\x18\x43\x29\x20\x85\xb2\x48\x56\x7c\x71\x7a\xa6\xbf\xf3\xda\xc5\x8d\xad\x57\xaf\x0d\xb4\x27\xe6\xfb\x3a\x73\x61\x01\x6d\x29\x65\x5b\x73\x6b\x94\x35\x02\x00\x62\x69\x69\x09\xdf\xfe\xf6\xb7\xc5\xa6\x4d\x9b\xf8\xd5\xab\x57\x6d\x13\xd4\xa6\xa1\x6d\x65\x7a\x72\x29\xb7\xac\x36\x6c\x38\xd6\x43\x4b\x96\x70\xca\xc2\x97\x35\x37\xb2\x94\xb5\xf1\xd7\xf4\xae\x8a\xcb\x34\xcf\x63\x1a\x51\x78\x8a\x53\xbf\xa7\x79\x59\x78\xb3\xac\x17\x57\xdb\x2e\x9c\x59\xe6\x21\x4d\x29\x3e\x8c\x8c\x8c\xe0\xa6\x9b\x6e\xc2\xb6\x6d\xdb\xe0\xfb\x7e\x22\x2c\xe2\xf8\x05\x07\xe0\x49\x29\x3d\x06\xe6\xf7\xb7\x0b\xd5\xe1\x95\xe2\xd6\x5d\x73\xe5\x23\xe3\x4b\xfe\x9d\xf5\xd5\xe2\x91\x62\xc8\x36\x73\x89\x0a\x03\xd3\xda\x96\x80\x64\xdd\xf9\xd6\x33\x07\x35\x35\x2f\x35\xed\xaf\xf2\x65\x5c\xb1\xeb\x36\x24\xb0\x91\xf5\xa1\x21\x4e\xcc\x11\x7d\x82\xa7\xdb\x4f\x5c\x16\xa9\xc1\xb0\x58\xd0\x28\x57\x85\xe9\x6e\x8d\x8c\xe3\x26\x2c\xaa\x9b\x48\xaf\x2e\x29\x9a\xe3\x13\xd1\xc5\x18\x24\x64\x3b\xe4\x72\x6e\xc5\x0f\xdf\x9d\xe9\xef\xbc\x72\xa9\xbe\xf6\xf2\xa5\xfa\xda\xe9\xf9\xbe\x60\x26\xe0\xa2\x85\xc8\xfa\x48\xac\x11\x15\x70\xed\x74\x3a\x58\x58\x58\xc0\xb9\x73\xe7\x70\xee\xdc\x39\xb5\x31\xcd\x36\xf1\xb2\x7e\xa1\xc1\xeb\x78\xa0\xdd\x53\x7c\xb6\xfc\x2c\x81\xe4\x82\xcd\xa3\x4c\x69\x3f\x3f\xec\x36\x8d\x42\xc7\x75\x74\xa0\xa9\x31\x53\x07\x60\x80\x37\xe5\xbb\x08\x37\xc1\x98\xe0\x69\xca\x92\xc6\xa6\xe4\x1a\x00\x36\xfc\x56\x3a\x1e\x78\xe0\x01\x3e\x32\x32\x02\xdf\xf7\x15\xbc\xfa\x53\x6e\x88\x5f\xea\xb0\xca\x50\xb3\xb8\xf9\x23\x33\x95\xa3\x5b\x16\xfd\x8f\xd7\x57\x8b\x47\xfc\x90\x6d\x65\x92\x55\xd4\x44\x64\x44\x40\xf4\x06\x2b\x01\xd3\x5c\xa7\x96\x47\x02\x9b\xaa\x9b\x0e\x82\x52\xf8\x04\x06\x2c\xd5\x9e\x76\xdb\x4b\x83\x2d\xe5\x88\xab\x58\xbc\xa9\x9e\x6a\x12\x32\x08\xb9\x5c\x58\x29\x8a\x77\x27\x6b\x6b\xcf\x4f\x0c\xb6\x7e\x79\x79\xc3\xda\xd9\xe5\x72\xb8\x20\x20\x5b\xba\x3b\x13\xc7\x48\x00\x40\x2c\x2c\x2c\xe0\x9f\xfe\xe9\x9f\x5c\x1a\xdf\x35\x4e\xf2\xc0\xda\x2c\x88\x2c\x1c\x79\xc7\xa8\xa9\x3d\xbd\x8d\xbc\xf3\x26\x4f\xfb\x79\x68\xea\x69\xdf\x26\x38\x28\x91\x7a\x72\x49\x3a\x0a\x67\xc3\x4d\x61\x74\x38\x9b\x44\xa5\x1d\xb1\x49\xca\xeb\x31\x2b\x4d\x7d\xb1\x4a\xdb\x43\x87\x0e\xf1\x83\x07\x0f\x62\x68\x68\x48\xa7\xa7\x2b\x2c\x24\xbc\x82\x44\xb9\x7f\xad\x30\xb8\x73\xbe\xef\xd0\xae\xd9\xf2\xbd\x63\xcb\xfe\xdd\xe5\x80\xef\x66\x92\x55\x58\xac\x8d\xa3\x89\x69\x9a\x65\xe9\x69\x94\xed\x62\x74\xe1\x69\x30\xb3\x47\xe2\x50\x8b\xc0\x52\x96\x04\x47\x55\xac\xb3\xb7\x08\x4c\x12\xc3\xa6\x67\xe6\x47\x6d\x93\xde\x74\xef\xd2\x4b\xc0\x3d\x86\x94\x5e\x03\x90\x41\xc0\xe5\xcc\x72\x29\x7c\xf3\xe2\xc6\xd6\x93\x67\x46\x56\x9f\x9b\xae\xb6\xaf\xb4\x0b\xb2\x09\x86\x36\x34\x2b\x04\x91\x20\x11\x8b\x8b\x8b\x38\x75\xea\x14\xde\x7b\xef\x3d\x2c\x2d\x2d\x21\xda\xac\x9a\x6b\x5c\xe9\xd7\x79\xcc\x78\x13\x5e\x9b\x40\xc9\x03\x9b\x75\x6f\xc3\xe7\xea\x9b\xa9\x9e\x89\x3e\x57\x1b\x49\x32\xb9\x2a\x3a\x82\x3c\xda\xd9\x39\xc9\x0c\x30\xeb\xb1\x34\x4c\xf8\x5d\x02\x23\x8f\xc9\xe9\xca\xb3\xd2\xa2\xde\x0d\xf9\xdd\xdf\xfd\x5d\x3e\x38\x38\xa8\xb6\x56\x73\xc6\x98\x17\xbb\x24\x3e\x24\x3c\x3f\x64\xd5\xb1\x65\x7f\xf3\xde\xe9\xca\xdd\x3b\xe6\xcb\xbf\x59\x5d\x2b\x1c\xe6\x12\x75\x48\xc6\x7b\x83\x93\xda\xbc\xd6\x3d\x0f\x10\x4d\x0f\xbb\x12\xa7\x93\x52\x4d\xe8\xb4\x64\x31\x4d\x5d\xf5\x5f\x76\xdd\x09\xad\x71\x6a\x81\xf4\x34\xaa\x92\xab\xdc\x52\x96\xa2\xc6\x66\xf9\xe8\x89\xf0\x4d\x42\xb6\xdb\x9e\x3c\x3f\x59\x5b\x7b\xea\xec\xd0\xea\x4f\x2f\x6e\x6c\x9d\x6e\x94\xc2\x05\xc1\xd0\x92\x88\xe2\x21\xda\xaa\x8c\x00\x80\x89\x89\x09\x3c\xf1\xc4\x13\x79\xc6\xf0\xf5\x98\xf7\x26\x58\x95\x6c\x13\x38\xef\xf8\x33\xe5\xe5\x11\x66\x79\xac\x8f\x2c\xfa\xac\xb0\xba\xe0\x70\x49\x1b\x18\x60\xf2\x08\x97\xf5\x6a\x7b\x13\x1e\x53\xfb\x59\x16\x4f\x1e\x6b\xc9\x04\xd7\x63\x39\x15\x0a\x05\xec\xdf\xbf\x1f\x37\xde\x78\x23\xea\xf5\xba\x0e\x9b\xac\x88\x40\xc2\xef\xeb\xf0\xda\xf6\xf9\xf2\xee\x7d\xd3\x7d\x9f\xd9\xb2\x58\xbe\xbf\x14\xb0\x3d\x90\xcc\xd3\x03\x94\x34\x80\xa9\x54\x7a\x2a\x94\x61\x70\x11\xa0\x60\xc1\x8c\xc1\xce\x1e\x57\x44\xb3\x12\x4c\x0b\x23\xdd\xed\xe4\xd1\x7d\x37\xbc\x21\x21\x15\x31\x0a\x77\xdc\xba\xd1\x62\xe8\xb9\xcb\x4e\x66\x97\xa4\x37\x94\x93\x17\x57\xc8\xe4\xdc\x52\x39\x78\xe9\xdc\xf0\xea\xf7\x4f\x8f\x34\x5f\x9a\xed\xef\xcc\x08\x86\x16\x58\x12\x54\x55\xc2\x43\x34\x1a\x0d\xbc\xfd\xf6\xdb\x78\xe3\x8d\x37\x4c\x0a\x84\xa6\x3c\x0a\xc8\xa5\xc0\x6c\x70\x26\x58\x9b\xd6\xcf\x12\x04\x34\xd9\xac\xfb\x3c\x8a\x9c\xc2\xd9\x3c\x09\x00\xdd\x18\x87\xa9\x61\x17\x51\x7a\x9e\xad\xc1\xf5\xd4\xa1\x65\x80\x9d\x0e\x13\x5d\x7a\x1d\xdb\x43\xcb\x23\x20\x53\x8c\xda\xb0\x61\x03\x1e\x78\xe0\x01\xf4\xf7\xf7\xab\xf7\x36\x94\x85\xe1\x31\xc6\x7c\x00\x7e\xb5\x55\xa8\xed\x9b\xae\x1c\xde\x37\xdd\xf7\xd0\xd0\x4a\xf1\xb8\x27\xf8\xb8\xcb\x5a\x48\x62\x8b\x64\x82\xf7\x24\xf3\x92\x47\x3a\x88\x29\xb5\xd9\x9d\xf2\x4e\xf4\x60\xa4\x2d\xa8\x91\xfa\xe9\x01\xe9\x5a\x22\x71\x99\xde\x99\x2c\x93\x48\xa2\x1b\x10\xb5\xc1\x52\x09\xa7\xf5\x51\xc6\x92\x93\xa5\x84\x9d\x06\x9e\x48\xb5\xae\x94\x15\x90\xad\xa6\x2f\xde\x9c\x18\x5c\xfd\xee\x3b\x63\xcd\xa7\xae\xd6\xd6\x26\x05\x47\x4b\x4a\xd9\x06\x90\x12\x20\xad\x56\x0b\x7f\xf7\x77\x7f\x97\xd7\x2d\xc8\x3b\xa9\xf2\xb8\x27\x7a\x9e\x6b\xce\xd0\xf6\x40\xea\x52\x7c\xb4\x3c\x4b\x60\x01\xf9\xfb\x67\xec\x8b\x69\xc8\xae\x57\xba\x5d\x8f\xc4\xd4\x93\x0b\x96\xe6\xc3\x50\x66\xc3\xa5\xee\xaf\xc7\x8c\xc3\xbd\xf7\xde\xcb\xf7\xec\xd9\xa3\x26\x20\x87\x16\xec\x44\x24\x30\xea\x07\xaf\x55\x8e\x1e\xbc\xd6\xff\x7b\x1b\x5a\xde\x27\xb8\x44\x95\xe9\xa6\x03\x4d\x44\x10\xb8\x17\x2a\x53\x15\x7b\x20\x52\x39\x4e\x75\xed\xf2\x19\x7a\x83\xa8\xeb\xa1\x4b\x17\x2c\x2e\xf8\x5e\xfb\xc4\x4e\x8f\xbd\xad\xfc\x34\x01\x10\x6b\x9e\x3c\x7d\x79\xc3\xda\xf7\x4e\x6c\x59\xfe\xb7\xcb\xf5\xb5\x2b\x92\xa1\x09\xa4\x2d\x10\x29\xa5\x10\x42\xe0\x95\x57\x5e\xd1\x2d\x10\xa3\x76\x45\xfe\x31\x64\xbb\x37\xe1\x02\x81\x59\xaf\x3b\x91\xc7\xd2\x37\xb5\x71\x3d\xee\x4a\x8f\x62\xb5\x3d\x87\xeb\xe9\x5c\x0a\x31\xb2\x19\x9d\x65\x19\xd0\x8e\xe5\xc1\x4b\x53\x5e\xab\x26\x81\xb9\xf7\xde\x7b\xf9\xae\x5d\xbb\xe0\x79\x5e\xb2\x61\x2b\xb1\x30\x24\xca\xfd\xed\x42\xfd\xe0\xb5\xca\x6d\x07\xaf\xf5\x7f\xa9\xbe\xea\xdd\xc5\x25\xea\x0c\xac\x37\x26\x20\xbb\x61\xca\x64\x05\x04\xd6\x10\xa6\xd9\x34\x49\x09\x9a\x64\xe1\x32\xe5\x6a\x24\x36\x41\xdc\x40\x0f\x66\xa6\x63\x60\xe8\x15\x5d\x26\x21\x20\xc1\xa4\x43\x58\x01\xda\x4c\x8e\xdc\x1b\x96\xca\x23\x95\xa8\x65\x24\xd3\xf5\xd3\xc1\x52\x03\x6f\x74\x58\x15\xad\xd5\x7e\xa9\xbc\x8e\x05\x48\xd0\xf2\xc4\xe9\x8b\x1b\xd7\xbe\xf7\xeb\xcd\x8d\x1f\x5f\xa9\xad\x5d\x14\x1c\x2d\x68\x02\x44\xc5\x41\xde\x7b\xef\x3d\xbc\xf1\xc6\x1b\x98\x9c\x9c\x04\xdc\x26\xbc\x9e\xf2\x98\xfa\xff\x5f\xc0\x67\x2a\xbf\xde\x79\x6a\xb5\x38\x5c\x44\xba\x92\xcb\x4a\xc8\x92\xc6\x79\x05\x54\x9e\x94\x25\x41\x6d\x70\x1c\x80\xf8\xfd\xdf\xff\x7d\x1e\xbb\x25\x1c\x5d\x2b\xc3\x07\xe0\x97\x3b\xbc\xb6\x7f\xaa\x72\xf4\xc6\xab\xfd\xbf\xb7\xb1\x59\xbc\xbb\x20\x31\x98\x63\x1f\x67\x9c\x72\xd8\x15\xeb\xda\x78\x95\x2f\x2a\x90\x6b\xf9\xd4\x05\x98\x9a\xac\xe9\x29\x9d\xcc\x79\x57\x22\x82\xc4\x20\x12\xd2\x3d\xd0\x05\x4a\x52\x9f\xd0\x46\x81\x55\xb0\x95\xc6\x73\xe2\x1f\xc9\x64\x7b\xd5\x17\xef\x4e\x6c\x5c\xfd\xee\x1b\x5b\x1a\x8f\x4f\x57\x3b\x97\x24\x8b\x5c\x18\x6d\x39\x17\x9d\x4e\x47\xfc\xf5\x5f\xff\xb5\xcb\x5d\x71\x8d\x53\x53\xde\x7a\xc6\xae\xcb\x4a\xcf\xb2\x3a\xd6\xeb\xb2\xe4\xed\x0b\x2d\x57\x49\x00\xdd\xe0\xa8\xca\x70\x11\xed\x62\xa6\x0b\x4e\x87\xcd\x92\x80\x79\xad\x08\x8a\x77\xbd\x34\xa4\xda\x39\x76\xec\x18\xdf\xb1\x63\x07\xca\xe5\xb2\x12\x18\x1c\x91\xc0\x28\x17\x03\x56\xd9\x3e\x5f\x3e\x74\xf3\x95\xea\x17\xc7\x97\xfc\xcf\x16\x05\x1b\x45\xbc\x51\x4b\x8f\x00\x18\x0d\x06\x18\x7c\x81\x54\xca\xb3\x5e\x62\x0f\x27\x9a\x6d\x88\x1c\xee\x40\xa6\x44\x59\x47\xb8\xb2\x07\x57\x8f\x78\x21\xb4\x51\x9b\xcb\x21\xf8\x52\x98\x7a\x85\x0e\xc5\x6e\xaa\x9d\x5c\x33\x34\x97\x4a\xc1\xeb\xa7\x47\x9b\xff\xe5\xed\xf1\x95\x67\x16\xcb\xe1\x14\x58\x62\x81\x24\xcb\xb8\x4b\x4b\x4b\xf8\xce\x77\xbe\x63\x1b\x8f\x30\xe4\x9b\xc6\xa8\x9e\xb2\xb4\x7b\x5e\x3c\x36\xdc\x2e\xba\xf2\xe2\x77\xcd\x55\x63\x52\x9c\x35\x99\xef\x14\x11\x4d\x79\xac\x07\x53\x1d\xbd\x8d\xf5\x48\xbf\x3c\xb0\xb9\xa5\xbc\x5a\x5e\xfd\xda\xd7\xbe\xc6\xcb\xe5\xb2\xaa\x9b\xc4\x31\xb8\x40\x65\x7c\xc9\xdf\x7e\xd3\xd5\xea\x6f\xed\x9c\x2b\x7f\xbe\x1c\xf0\xdd\x0c\xcc\x03\xf2\x45\xfe\x9d\x30\xeb\x5d\x8a\x40\x3e\xeb\x41\x6a\xbb\x3a\x7b\x60\xb3\x08\x32\xed\x52\x35\xdd\x1a\xf0\xa4\x02\xac\x6e\x12\x4d\x2d\x1b\x63\xa7\xd7\x03\x67\x30\x46\x7a\x5c\x98\x90\x61\x61\xae\xbf\xf3\xdc\xdb\xe3\x2b\xdf\x3a\x3d\xd2\x7c\xa5\x59\x0c\x97\x00\xa4\x36\x93\xb5\xdb\x6d\x71\xe9\xd2\x25\xfc\xec\x67\x3f\x5b\xcf\xd8\xb2\x2a\x26\xad\x1c\x16\x18\x97\x45\x70\x3d\x56\x7b\x1e\x7a\x5d\x29\xb3\x4d\x2a\x38\x5c\x9a\x5e\x4f\x79\xac\x13\x9b\xb4\x33\xb5\x91\xe5\xa3\x65\xb5\x6d\xa2\xd9\xfa\x10\xeb\xf5\x3a\x3f\x7a\xf4\x28\x76\xef\xde\xad\xea\x71\x29\xa5\x87\xe8\xfd\x90\x72\xad\x55\x18\xbe\x61\xb2\xff\x13\x07\xaf\xf5\x7f\xb5\xba\x56\x38\xc2\x24\x2b\xa7\x96\x55\x55\x4c\x80\xdc\x03\xe8\x31\x14\x68\xfc\x20\x05\x44\xcc\x78\x48\xa4\x57\x43\x18\x5d\x7e\xd5\x62\x1b\x29\x7a\x7a\xad\x7a\xa9\x84\x01\x08\x6c\xec\x63\xa4\xe8\xb7\xe1\x8b\x75\x36\xd9\x48\x0e\xd6\x43\x7b\xf4\x2f\xb2\xb0\x14\x5e\x19\x97\xe9\x75\x2d\x82\x25\x8e\xcd\x80\xb1\xa4\x5d\xe8\x71\x13\x0a\x4c\xe3\x31\xd4\x12\xa1\xcf\x89\xd8\x40\x80\x44\xa7\x20\xaf\x5c\xda\xb0\xf6\x2f\x27\xb6\x2e\x7f\xe7\xca\x86\xb5\x89\x80\xc9\x26\x80\x16\x00\xf5\x82\x9d\x98\x9d\x9d\xc5\x77\xbf\xfb\xdd\x3c\xda\xdb\x35\xd6\xf3\xc4\x19\x6c\x78\xf2\x08\x22\x57\xb2\xc1\xdb\xe2\x18\x2e\xba\x52\x78\x94\xab\xb2\x5e\x3f\x89\x96\xbb\x98\x63\x23\x90\x12\xe6\x72\x5d\xf2\xc2\xe8\x6d\x02\x16\x06\xfc\xe1\x1f\xfe\x21\xf7\x7d\x3f\xbd\xbc\x0a\x56\xf6\x04\xab\xee\x9c\x2b\x1f\xb8\xe5\xd2\xc0\x57\xc7\x96\xfd\xfb\x0b\x92\xd5\x4d\xc1\x44\x3d\x07\x88\x9d\x06\xc9\x7a\xe2\x7f\xba\xa7\x62\x84\x8d\x27\x98\x04\x03\xd3\x66\xad\xed\x15\x15\x75\x47\xe3\x89\xc9\x9e\x8d\x94\x55\x42\x26\x58\x4c\x40\x32\xa1\x24\x11\x66\x44\x00\x29\xd8\x6e\x67\x75\x7c\x29\x09\x15\xfd\x30\x2d\xe6\xa1\x6f\x29\xa5\xdc\xa3\x31\x0c\xc8\x6e\x7b\x20\x1d\x87\x0e\x17\x67\x6a\xfb\x4c\x12\x9a\xb5\x98\x46\xba\xff\xe8\xd2\x41\xf0\xca\x88\xce\x60\xc5\x17\x6f\xbd\x33\xb6\xf2\xcd\xb7\x36\x35\x52\xee\x0b\x62\xeb\x23\x0c\x43\x71\xe1\xc2\x05\x3c\xf5\xd4\x53\x79\x2c\x04\x97\x95\xa1\x97\xbb\xf0\xb8\xdc\x6c\x13\x8e\x3c\x78\x69\x72\x85\x1b\x5c\xe5\x09\x7d\x8c\x66\x90\xca\x2e\xc4\x79\x4c\x31\xbd\xcc\xc6\x14\x18\xe0\x68\x1e\xc5\xeb\x62\x90\xf5\xc1\x7e\xfc\xe3\x1f\xe7\xfb\xf6\xed\x43\xb1\x58\xe4\x71\xbe\x27\xa5\xf4\x19\x58\xa5\xbe\xea\x0d\xdf\x7a\x69\xe0\xfe\x7d\xd3\x7d\x7f\x52\x8a\xb6\x86\x73\x63\x70\x4e\x4b\x34\x9a\x90\xac\x46\xf4\xd8\xf5\xf1\x74\xd3\x51\x19\x62\x03\xfa\xec\x77\xb9\x07\xa9\x17\xce\x52\x6f\xc4\xa6\x2d\x12\x53\xbc\xa1\x6b\xce\x93\xba\xaa\x2f\x24\xbc\x61\x5a\x61\x96\xf1\x3a\x2e\x8d\x64\xd8\xdc\x07\xf4\xd0\x45\x2c\x97\x34\x13\x7b\x85\x18\x23\x56\x85\xc5\x95\x52\x6d\x81\x31\x6d\x03\x9c\xc6\x81\xd4\xfe\x16\x24\x2f\xe5\x85\x4c\x36\xa6\xab\xed\x1f\xbd\xbc\x7d\xf9\xaf\x27\x36\xae\xbe\x1b\x16\xd0\x00\xd0\x8a\x63\x1f\x89\xf5\xf1\xf8\xe3\x8f\xa3\xd9\x6c\xe6\x19\xd7\x59\x8a\x54\x4f\x2e\x6b\xdf\x25\x54\x6c\x02\x26\x4f\x1e\xa5\xdf\x74\x6d\xa3\x01\x80\xf9\x5d\x15\x4a\xa8\xcb\x5c\x72\xc1\xda\x08\xfb\x20\x3e\x9c\x4b\xb0\xd0\x8e\x26\x69\xc7\x8e\x1d\xfc\xf0\xe1\xc3\xd8\xb4\x69\x93\x82\x57\x3b\x3e\xcb\x05\x89\xea\x47\x66\x2a\x87\x6e\x7f\xaf\xf6\xa7\x1b\x9b\xde\x7d\x0c\xcc\xa7\x56\x46\x62\x3d\xa4\xb4\x96\x5b\xa0\xa4\xa6\xbe\x69\xa3\x96\x3e\x29\x53\xf9\xf1\x8d\xc5\x82\xb0\x5d\xa5\x69\xd2\x66\x1f\xd0\x33\x9b\x7b\xdc\xa6\x64\xd5\x44\x17\x56\x64\x76\x1a\xfc\x8d\x64\x89\x58\xb7\x0e\x14\x2c\x95\x22\xa4\xef\x29\x38\xf4\x0a\xa8\x1e\xf7\x0f\x66\x1e\x26\xc2\x21\x65\x89\x18\x38\x64\x90\x6e\x29\x6b\x85\x01\x2d\x2f\x7c\xf7\x9d\xf1\xe6\xff\xf5\xda\xd6\xe5\x27\x1a\x7e\x38\x27\xa3\x17\xe9\xf4\xf7\x60\xf0\xf4\xd3\x4f\xe3\xd4\xa9\x53\x79\x27\xf1\xf5\x58\x29\xb6\x94\xc7\xd2\x30\xc1\x67\xb5\x91\xd7\x70\x48\xe1\x29\x58\x90\x4a\xcb\x2f\x43\x5a\x41\xb9\x60\x6d\xd7\x74\x98\xd9\xee\x39\xba\x8f\x59\xfd\x09\x2d\x5f\x87\x57\x65\x14\x17\x07\x20\xbf\xf4\xa5\x2f\xb1\x81\x81\x01\x75\xef\x03\x28\x01\xa8\xf4\xb7\xf9\xf0\x5d\x13\xf5\x87\x6e\xbb\x58\xfb\x8b\xea\x9a\x77\x1b\x07\x2b\x28\x33\x9b\x69\x0e\xb6\x6a\x5c\x9f\x30\xe9\x4f\x03\x44\xbf\x2a\x8b\x69\xff\x69\x81\x3e\xae\x75\x37\x21\x05\x1b\x73\x58\xc9\x00\xa9\x69\xf7\x08\x5c\x65\xea\x33\x40\x6b\x07\x29\x42\x7a\x04\x47\x6a\xde\x69\x33\x36\x65\x6d\xc4\x74\xe8\xcd\x50\x61\xc9\x62\xaa\x12\x18\x86\x74\x9b\x16\x53\x44\x32\xc2\x3f\x86\x9e\x0d\xa4\x29\x6b\x86\x69\x3c\x20\xb2\xb8\x4b\xb7\xde\x67\x9d\x46\x72\x91\xf0\x54\x8b\x7f\xc4\xb1\x95\x62\xc8\x87\x47\x1b\xfe\x27\xb6\x2e\x96\x37\x37\x4a\xe1\xa5\xa5\xbe\xb0\x21\x91\x3e\xc5\x7d\xc7\x8e\x1d\xf2\xb5\xd7\x5e\xd3\xc7\x1c\xc8\xb5\x1a\x9f\x12\xe9\xb9\xa5\xee\xa9\xf8\xa4\x63\x56\x25\x7d\x9c\x9b\xf0\xe8\xdc\xd5\xf3\x68\xfb\x12\xf6\x36\x28\x1d\x7a\xbf\xa8\xe0\x49\xe1\x2c\x10\xa4\xb4\x71\xdb\x24\xa5\x65\xf4\x5a\x1f\x46\x26\x3c\xb4\xbd\xbc\x1d\x72\x31\x89\xb6\x2d\x01\xc8\xaf\x7f\xfd\xeb\xea\x4c\x8c\x02\x22\x81\x51\x62\x12\x03\x3b\xe6\xcb\x07\x8f\x9f\xd9\xf8\x3f\xee\x9a\xeb\x7b\xd8\x13\x6c\x84\xc5\x13\x85\xc5\xc3\x49\x0d\xc4\xee\xb2\x6a\xd7\x04\x20\xdf\x13\x89\x06\x9e\x39\xd0\xd0\xd5\x8a\xb2\x2b\x13\xec\xfb\xcc\xa3\x06\x25\xb4\x78\x49\x8f\x99\xae\x21\x4a\xae\x55\xdc\xc4\x80\x57\x69\x64\x7d\xc6\x29\xb2\x12\x82\xba\xc4\xaa\xb6\xb5\xea\x5a\x69\x3a\x78\xa9\xe6\x71\x3a\xe6\x12\x2f\x82\x2a\x2b\x26\xde\x18\xd7\x95\x4f\x24\xb8\x4a\x85\x86\xc5\xd0\x49\x2d\xcb\xca\x34\x8d\xc9\xb3\x8a\xcb\xd2\xde\xa2\x2e\xa5\x15\xdd\x5d\x57\x8f\x91\xce\x32\xc9\x8a\xd5\x36\x3f\xb8\x63\xbe\xfc\xb1\xa2\x60\xf3\x33\x03\x9d\xab\x21\x47\xc8\x22\xe6\x0a\x00\x62\xd7\xae\x5d\xec\x9d\x77\xde\x51\x93\x4b\x9f\x68\x54\x80\xe8\x8a\x4e\xb7\x4a\x74\x21\x42\xc7\x33\x15\xb9\x8a\x0d\x3a\xac\x6e\x21\x98\x14\x37\x15\x2c\x34\x99\xe6\x2e\x15\x6a\x7a\x5e\x4f\x9f\x0a\x04\x19\x95\x6a\xb4\xe3\xfa\x24\x35\x75\x4c\x35\xa2\x08\x70\x99\x51\x8c\xd4\xb5\x09\x18\x0a\xab\x77\x0a\x48\x33\x00\x00\x44\xb9\x5c\x66\xf7\xdf\x7f\x3f\x3b\x76\xec\x18\xd3\x0e\xd2\x29\x31\xc6\xfa\x4a\x1d\x3e\xf8\xd1\xf7\x07\xee\xbb\x73\x62\xc3\x7f\x1a\x5c\xf5\x3e\xc1\x24\xf3\x55\x34\x3f\x49\xba\x56\xd5\x35\x39\x79\x3f\x22\xca\x22\x2a\x35\x19\xc4\x48\x60\x19\xd5\xda\x06\xa1\x91\xf8\xdf\xac\x3b\x29\x98\xf6\x5f\x27\x48\x87\x55\x90\xba\x85\xd4\x45\xda\x6b\x1d\x45\x71\x8d\x34\xad\xdd\x32\x92\x17\x75\x22\xd1\xf4\x4c\x99\x4b\xc4\x2d\xd0\xd7\x4d\x22\xb1\x9b\x32\x05\x22\x18\xa9\xf3\x30\xd2\xf8\xfa\x0c\x4f\xd8\x18\xf3\x27\xb1\x34\x64\x72\x97\xb4\xad\x89\xed\x6e\x9f\x99\x12\x2e\xda\x0e\x5e\xdd\x12\x89\x61\x22\xb9\xa1\x0f\x27\x45\x0b\x12\x3e\x31\x30\xe6\x09\x36\x32\xbe\xec\xdf\x31\xd2\xf0\xab\xb3\xfd\x9d\x73\xcd\xa2\x68\x82\x21\x64\x8c\xa1\xaf\xaf\x4f\x68\x56\x07\x21\xa4\x67\x22\x93\x01\x92\x1a\xc3\x74\xfe\x08\x52\xae\x3f\x19\xe1\x80\x05\xd2\xf3\x54\x87\x35\x95\xdb\xe8\x04\xa9\x67\x13\x84\x09\x70\x96\x8f\xa4\xee\x55\x72\xad\x5c\xa8\x72\x57\x50\x33\x0b\x9f\xc9\xe7\xa2\xb8\x8d\xbf\x07\x0f\x1e\xc4\xad\xb7\xde\x8a\xfe\xfe\x7e\x00\xe0\x52\x4a\x3f\x7e\x21\xad\xb2\x61\xd5\x1b\xbd\x73\xa2\xf6\x95\xdd\x33\x7d\x5f\x2b\x0a\x36\x6a\x0a\x9a\x25\xd7\x5d\xe5\xa4\x69\xd3\x1e\x05\x6d\x9a\xab\x44\x4b\xdb\x36\x2e\x75\x21\xf3\xed\xd1\xd0\x27\x57\x8c\xc5\x12\x37\x91\x90\x90\x0c\x42\x30\x29\x02\x2e\x83\x76\x41\xb6\x3a\x05\xd1\xee\x78\xb2\xbd\x56\x10\xed\x35\x2f\xba\x0f\xb9\x0c\xc2\x18\x2e\xe4\x91\x0f\xcf\x25\x78\x41\x82\x73\xc1\x3c\x4f\x30\xaf\x18\x72\xdf\x0f\x99\x5f\x0c\x99\x5f\x0a\xb8\xef\x87\xbc\x5c\x0c\x99\xef\x85\xcc\x2b\x44\xdf\x63\xe1\xc9\x74\xeb\x99\x3f\xcc\xc8\xa3\xde\xbe\x39\x5e\xe1\x27\xfd\xef\x79\x81\x8f\xba\x6b\x52\x26\x6e\x4d\xaa\x69\xa2\x8e\x92\x67\x40\xac\x15\x03\x2f\x5b\x0b\x95\xe0\x67\x4f\xec\x9f\xfb\x9f\xaf\x0e\xac\x5d\x64\x8c\xb5\x00\x04\xb3\xb3\xb3\xe2\xb1\xc7\x1e\x43\xab\xd5\xca\x5a\x1d\x01\x7a\xc7\x2a\xcd\x83\x21\xdf\x54\xcf\x86\xd7\xd6\x86\x0d\xc6\x46\x97\x2d\x76\xd2\xf3\xeb\x69\x08\x4c\xc9\x46\x80\x4e\x88\x2b\xf2\x0b\x72\xed\x62\xae\xca\xa3\xb0\x7a\x99\x0d\x9f\x00\x80\x83\x07\x0f\xe2\xce\x3b\xef\x84\xe7\x79\x3c\xae\xe3\x31\xc6\xca\x4c\xa2\xba\x6d\xbe\xbc\xe7\x8e\xf7\x6a\x7f\x3a\xb6\xec\xdf\xcf\x25\xab\xa4\x2d\x0c\xed\x52\x53\xf7\x54\x89\x27\x63\x4a\x8d\x37\xc3\x40\xa7\x59\xcc\x10\x78\xa4\x96\x44\xcf\x84\x48\x52\xb7\x56\xd7\x75\x89\x5d\x85\x58\x29\x84\x1c\x22\xe0\xb2\xbd\x56\x14\xad\x15\x3f\x6c\x2c\x97\x82\x85\xc5\xbe\x70\x69\xc5\x0f\x97\x1a\xf1\x37\x4e\x5a\x9e\x68\x06\x05\xd1\x16\x0c\x41\x2c\x2c\xda\x92\xc9\x50\xc6\x7c\x93\x80\x48\xf5\x53\x26\x5a\x85\x33\xc9\x0a\xea\xe3\x4e\x9e\x80\xef\x85\xdc\x2f\x85\xac\x5c\xee\x14\x2a\x03\xad\x42\x6d\x60\xad\x50\x1b\x58\xf3\x6a\xb5\x56\xa1\xd6\xdf\x2e\xd4\xfa\x3a\xbc\xe2\x85\xdc\xe3\x12\x1e\x93\x89\x68\x44\xfa\x9d\x92\xd8\xa1\x49\xdc\x3c\xd2\x6b\x89\xc4\xed\xa2\x82\xb7\xc7\x7a\x52\x56\x5d\xe2\x66\x69\xcb\xd5\xb1\x10\x81\x44\x0a\x47\xd7\x4a\x62\xda\x5b\xb7\xba\x95\xa2\xf2\x00\x30\xf8\x82\xc9\x4a\xcb\x13\xea\xf5\x83\x36\x00\x0c\x0e\x0e\x2a\xa1\xa1\x92\x2d\x00\x49\xe7\x8d\x6d\xae\xb9\xe6\x86\x0d\xa7\x4b\xb9\xc2\x50\xee\x9a\x9b\x14\xc6\x29\xf8\x3c\x0d\xc8\xd6\x98\x89\x60\x9b\xc5\xe1\xaa\x4b\xdb\x71\x95\xbb\x24\xb8\x51\x4a\x1e\x3c\x78\x90\x2b\xa1\xa1\x0e\xd6\x91\x52\x96\x8b\x82\xd7\x0e\x5c\xab\xdc\xf6\xb1\x8b\xb5\xff\x58\x5b\x2b\x1c\x65\x00\xa7\xaf\xa7\xd3\x0d\x4d\x49\xa2\xaf\xb1\xc7\x79\x89\x36\xa3\x3b\xa7\x22\x80\x08\x96\xc4\x22\x98\xae\xd9\x7a\xac\x57\xd3\x2b\xe8\xbd\x04\x49\x48\x74\xb8\x6c\xb7\x8a\xa2\xb5\x5c\x0a\x17\xe6\x2b\x9d\x99\xd9\xfe\xce\xcc\x5c\x25\x98\x59\x2e\x05\x4b\x2d\x4f\x34\xda\x9e\x6c\x06\x5c\xae\x21\x7d\x2a\x56\xea\xc4\x70\xfd\x90\x1b\xf5\x75\x35\x5d\x70\x09\xe8\xdf\x7a\x11\x71\x8c\x48\x72\x00\x1e\x20\xd4\xc1\x45\xd1\x44\x8a\x4e\x3b\xeb\x2b\x06\xbc\x5c\x0e\x78\x75\x60\xad\x50\xdb\xd8\x2c\x0e\x0e\x35\xbd\xd1\xc1\x66\x71\x78\xa0\xe5\xd5\x2a\x1d\x5e\xf5\x42\xf8\x89\xc0\x54\x31\x8a\xa4\x7b\x31\x3f\x54\xdc\x44\x49\x6c\x35\xe1\x59\x2f\x7b\xbb\x35\x23\x91\x61\x0c\xcc\x28\xcb\x23\x76\x45\xa2\xfc\x34\x02\x43\x56\xe2\x82\x49\x06\x2c\x95\xc2\x8b\xcf\xec\x5e\xf8\x2f\xf3\x7d\x9d\x20\xee\xb3\x69\x32\xea\x13\x99\x4e\xca\xbc\x73\x4b\x2f\xb7\xcd\x13\x17\x7e\x93\x12\xa6\x29\x4b\x20\xb9\x70\xa6\xee\x4d\x16\x87\xcd\x44\xa1\x16\x81\x09\x1e\x04\x36\xcb\x3c\x33\x49\x3e\x9b\xe5\xe2\x94\xb2\x77\xdd\x75\x17\x0a\x85\x82\xb2\x32\x7c\x48\x94\x2b\x9d\xc2\xf0\x2d\x97\x06\xee\x3b\x7c\xb5\xfa\x1f\x4a\x01\xdb\x99\x4c\xf8\xee\x4e\xa5\xe8\xc7\x14\x3e\x02\x52\xae\x40\x32\xb6\x98\xae\x05\x53\x66\x40\xd7\x44\xd1\xdd\xf7\xc4\x74\x56\x2d\xc6\xb0\x29\xd3\x3c\x7d\xa0\x6f\x37\xa0\x28\x11\x32\x04\x6b\x9e\x68\x2d\xf6\x05\x73\xd3\xd5\xf6\xe4\xe4\x40\x7b\x72\xb6\xbf\x33\xd5\xf0\xc3\x85\x56\x51\x2c\xc7\x67\x4e\xa8\x4d\x4b\xed\x78\xf9\xb0\x8d\x48\x40\xb4\x63\xbe\x25\xbb\x21\xe3\x6b\xa1\xbe\x55\xa2\x7f\xd7\xb5\xdb\x6d\xa6\x9e\x03\xe8\xe7\x1c\xe2\x37\x85\xd5\x4e\x5b\x8f\x31\xe6\x87\x0c\x7e\xe8\x0b\x6f\xb5\x18\xfa\xf3\x7d\x9d\xf2\xc5\x7a\xcb\xe7\x60\xe5\x52\xc0\x07\xfa\xdb\x85\xda\xd0\x4a\x71\x74\x7c\xc9\xdf\x3c\xda\xf0\xc7\x37\xac\x16\x06\xcb\x41\xa1\xe2\x09\x78\xa9\xf9\x2e\x59\xea\xb0\xe3\x6e\x8c\xa3\x6b\x5d\xe9\xae\x84\x3a\x12\x40\xaa\x7f\x3d\xee\x9e\xf6\x50\x35\x9f\x53\xea\x81\xd5\x38\xd6\x42\xad\x91\xe8\x79\x30\xb4\xbc\x70\xe9\x95\xed\x4b\x3f\xbc\xb8\x71\xed\x8a\xfe\xbd\x5c\x4b\xa2\xe3\x37\x8f\x82\xb4\xe1\x30\xe1\xb1\x4d\x7a\x57\x1c\x31\x8f\xa0\xd0\xdb\xb1\xb5\xd9\x23\x1f\x3c\xf4\x4e\x7a\x97\x10\xa1\x44\xd8\x7c\x24\x13\xe1\x36\x57\xc7\xd6\x41\xda\x66\x8f\x00\x29\x95\x4a\x78\xf0\xc1\x07\x79\x7c\xf6\xa7\x1a\xd8\x3e\x03\xab\xf4\xb7\x0b\xa3\x77\x4e\xd4\xbe\xb8\x7f\xaa\xf2\xdf\x15\x05\x1f\x4e\x19\xf8\xdd\xb1\xd8\xe3\x8e\x00\x24\x2e\xc1\xd2\xca\x4a\x4d\xf0\xee\xae\xcf\xae\x56\x8c\x2b\xa7\x4d\x5f\x7d\x33\x52\x12\xd4\x54\x83\x58\xe1\xea\xfa\xf8\x32\x72\x3f\x82\x15\x3f\x68\xcc\x54\xdb\x93\x57\x36\xb4\x2f\x5d\x1d\x58\xbb\xb4\xd0\x17\xcc\xac\xfa\x62\x51\x32\x34\xa5\x94\x2d\xc6\x58\x4b\x4a\xd9\x62\x60\x2d\x4d\x58\xb4\x11\xbf\xb4\xc5\x18\x4b\x7d\x9b\x84\x1c\xa5\x27\x00\x08\xd7\x64\x50\x1f\xa2\x06\xc0\xb5\xcf\x30\xea\x2e\xa0\x27\xa5\x54\x31\x24\x2f\xd9\xb2\xcf\x58\x19\x80\x2f\x01\x7f\xd5\x0b\xcb\xab\x5e\x58\x9e\xed\xef\x94\x4f\x8f\x34\x2b\x7d\x1d\xbe\xa1\xd6\xf2\x06\xc7\x97\xfd\xad\x5b\x16\x4a\xdb\x47\x1b\xc5\xf1\xfe\x76\xa1\xe6\x09\xe6\x31\x20\xb5\x22\xc2\x68\x60\x57\x05\x34\xb5\x80\x6d\x3a\x24\xa1\x59\x72\x92\x41\xaa\x80\x77\x22\x50\x4c\xfc\x56\xab\x30\xda\x86\xba\xf8\x39\x84\x5c\xb4\xdf\x1e\x5f\x79\xe6\x9d\xb1\xe6\x09\x74\x77\x93\x2a\x3e\x22\x0c\x43\x7d\x9c\xaa\x44\x2d\x06\xdb\xdc\xd0\x61\xf5\x6b\x6a\x99\x98\xe6\x84\xad\x9c\x5a\x07\xa6\xe4\x0a\x0d\xb8\xe6\x66\x4f\xb9\x67\x69\x84\x4a\x1f\x13\x51\x26\x7f\x89\x96\xdb\xac\x87\x2c\x53\xca\x24\x6c\x7a\x60\x1f\x78\xe0\x01\x25\x34\x94\x00\x2c\xc7\xbb\x40\xb7\xde\x73\xbe\xfe\x47\x3b\xe7\xca\xff\x8e\x0b\x56\x05\xd0\x15\x05\x64\xb0\x41\xdf\xd1\x18\x2b\xa9\xd4\xfb\x0d\xfa\x7a\xbf\x72\x6b\xd0\x8d\x53\x30\x29\xb5\x81\xd7\x1d\xdf\xe9\xe5\x42\x24\xee\x4a\xea\xdd\x15\x2d\x9e\x22\x98\x14\xcd\x62\xd8\xb8\x36\xd0\xbe\x72\x71\xe3\xda\xf9\xcb\x1b\xd6\x2e\x2e\xf6\x05\x33\x9d\x82\x5c\x96\x52\x36\x19\x63\x4d\x29\x65\x13\x12\x2d\x44\xbb\x1a\x53\x02\x23\xb6\x2e\x12\xb7\x84\xb8\x23\x6a\x2f\x42\xf2\x05\x79\xc5\x7f\xd7\xeb\xfc\x5a\x3e\xb5\x3e\xf4\xed\xfa\x89\x20\x01\x39\xec\x28\x0e\x4a\x97\x01\x94\xc1\x50\x59\xf5\x45\x79\xd5\x6f\x12\xa5\xc8\x58\x00\x00\x20\x00\x49\x44\x41\x54\x57\xae\xd5\xda\xa7\xde\x1e\x5f\x19\xa8\xb5\x0a\x83\xe3\x4b\xfe\xf6\x1d\xf3\xe5\xdd\x9b\x96\x4a\x5b\xfb\xdb\x85\x1a\x97\xe0\x6a\x49\x98\xa9\xb5\x85\x94\x5b\x83\xae\x4b\xa3\xc7\x23\xd2\xfe\x49\xda\x0b\x22\xfd\xe9\x2e\x4d\xb3\xde\xba\x00\x04\xa4\x98\xd8\xd8\x7a\xeb\xb5\x6d\xcb\x4f\x07\x05\x39\x07\x60\x29\x7e\x06\xc9\x56\xf4\xab\x57\xaf\x2a\xbe\xd8\xac\x66\xc0\x3e\x37\xf4\x7b\x9b\xc2\x5d\x0f\x1e\x13\x2d\xb4\x0d\x53\x9b\x2e\xe5\xee\xa2\x37\x15\xe3\x30\x75\xc4\x66\x76\x99\xa4\x53\x56\x07\x6c\x0c\x32\x59\x22\x14\x67\xaa\x5e\xa9\x54\xc2\x03\x0f\x3c\xc0\x87\x87\x87\x55\x1f\x94\xbf\x5d\x1d\x5f\xf6\x77\x1f\x3b\x5b\xff\x0f\x63\xcb\xfe\x83\x5c\x32\x5f\x1a\xf7\x36\xa4\x67\x37\x0d\x63\x40\xea\x93\x26\x3d\x20\x55\x39\xf5\xb3\xd3\x20\xda\x8a\x09\x12\x43\x1b\x2c\x65\x4e\x47\xd6\x4a\xc0\x65\x30\xd3\xdf\x99\x3c\x3b\xbc\xfa\xee\x7b\x43\xad\xb3\x0b\xe5\x60\x2a\x28\xc8\x65\x00\x0d\x00\x4d\x00\x4d\xc6\x58\x33\xbe\x56\xc2\x42\x7f\x9f\xa2\x8d\xc8\x7a\x48\x3e\x9f\x88\xae\x50\x10\x51\xf0\xb1\x2b\x34\xba\x2c\x50\x7d\xef\x75\x55\xb4\x03\x8c\x74\xb8\x24\x5f\x3d\x07\x44\xd6\x88\xb2\x4e\xf4\x83\x9b\x93\x67\x22\xa5\xf4\x11\x1f\x51\xa0\xfe\x18\x63\x95\xa0\x20\x2b\xb3\x95\x4e\x65\xae\x3f\xb8\x70\x6a\xac\xf9\x7a\xad\xe5\x0d\x6f\x9f\x2f\xef\xdc\x33\xdd\x77\x60\xac\xe1\x6f\x2d\x86\xcc\x4f\x09\x80\x38\xee\x40\xb7\x98\xea\xa7\x98\xa5\xc3\x18\xe4\x21\xe9\xab\x64\xd0\x5d\xc9\xf8\x59\xb0\x6e\xe1\x4c\x7f\xe7\xd2\x8b\x3b\x97\x1e\x5f\x29\x86\x57\x20\x31\xc7\x18\x5b\x8a\x05\xb7\x3a\x41\x0c\xef\xbf\xff\xbe\xce\x32\x3a\x6e\x4d\x0a\x8f\x93\x72\x5a\x66\xb3\xc8\x6d\x38\x4c\x6d\xda\x68\xa2\xc9\x14\x2a\x30\xe1\xb7\xcd\x41\x98\x82\x3d\x79\xfc\xa2\x3c\xd2\xca\x46\xa0\xcb\x5c\xa2\xc9\x48\xbc\xe6\x9e\xa8\x01\x5a\x96\x52\x56\xb7\x2f\x94\xf7\xdd\x7b\x76\xe3\x9f\x6f\x6c\x7a\x9f\x54\xef\x9a\x74\x03\x91\x40\x6f\xfc\x01\x89\xcb\xd2\x0d\x77\xd0\xf7\x19\x7a\xc4\x8e\x29\xbc\x46\x52\x6f\xa9\xee\xcb\x0b\x26\xd1\xf4\xc5\xd2\x85\xc1\xd5\xb3\xa7\x47\x9b\x6f\x4d\x0e\xb4\x2f\x75\x0a\x72\x1e\x91\x1b\xb2\xc4\xc0\x9a\x52\xca\x46\x2c\x30\xa8\x85\x11\x20\xb2\x30\xe8\x37\x56\x95\x35\x91\xda\xe9\xa8\xf8\x46\x85\x46\xca\x6c\x37\x6c\x68\xa3\x82\x86\xd4\xe3\x24\x3f\xe5\xd6\x00\xd1\xc7\xa8\xd0\x1d\x5f\x5e\x1c\xac\x4e\x5c\x19\x00\x15\xc6\x58\x05\x40\x25\xe4\xa8\xcc\x57\x82\xab\xf3\x95\xc6\x85\xb7\xc7\x57\x5e\x1b\x6d\x14\x37\xef\x9f\xaa\xdc\xb8\x6b\xae\x6f\x5f\xb5\x55\xa8\x73\x25\x41\xe8\xc3\xd0\x04\x41\xef\x93\x60\xe9\xe7\xaa\xc3\x6a\xcf\x5f\xed\xeb\x50\xc2\x7d\xc5\x0f\x16\x5e\xdc\xb9\xf8\xa3\x99\xfe\xce\x19\xc6\xd8\x14\x80\xb9\xf8\x59\x24\x5f\x93\x9b\x9f\x9f\xc7\x5b\x6f\xbd\x65\xb3\x9e\x6d\x31\x3c\x97\x5b\x61\x53\xc0\x14\xa7\x0d\xd6\x44\x87\x8e\xdb\x25\x20\x60\xb8\x36\xa5\x54\x1d\x46\x0a\x28\x33\x5c\xf1\x0f\x17\x21\x59\xb0\xae\x76\x5c\x84\x8b\xcf\x7f\xfe\xf3\xd4\xd2\x28\x43\xa2\xba\x6b\xae\x7c\xe3\x27\xce\xd5\xff\xbc\xbe\xea\xdd\xc5\xc0\xa8\x00\x33\x0a\x89\x54\xbe\x2d\xf5\x2a\xae\x5e\xf0\x5c\x7b\x15\x00\xc1\xa5\x58\xe8\x0b\x66\x4e\x8f\x34\x4f\x9e\x1e\x69\xbe\xb5\xd8\x17\x5c\x13\x0c\x4b\x00\x96\xc0\xd0\x00\x92\xbf\x44\x60\xa0\x1b\xbb\x48\x7d\x37\x84\xfc\xa9\xd4\xc3\xc3\xf3\xe7\xcf\xa3\xd9\x6c\x02\x00\x9e\x7f\xfe\x79\x27\x8f\x3d\xcf\xe3\x41\x10\xa4\x60\x36\x6f\xde\xcc\xaf\x5c\xb9\x22\x00\xe0\xae\xbb\xee\xe2\x00\xe0\xfb\x3e\xf6\xee\xdd\xdb\xe3\xe2\xc4\xd6\x86\xba\xd5\x5d\xce\x44\x80\x40\x73\x65\xe2\xbf\x8a\xf6\x57\x05\x50\x85\x44\x8d\x4b\xd4\xaa\x6b\x85\xb1\x3d\x33\x95\x7d\xfb\xa7\x2a\x87\x87\x56\x8a\xa3\x05\x19\x9d\x87\xc2\x54\x50\xb3\x47\xaa\xab\xd5\x93\xac\x07\x46\x52\x0c\xd3\xe6\xa2\xfd\xab\x9d\x4b\x3f\x7c\x7d\xcb\xf2\x4f\x43\x8e\x8b\x00\x26\x01\xcc\x00\x58\x42\xfc\xca\x3d\x00\xf1\xe8\xa3\x8f\xe6\x1a\xab\xeb\x80\x59\x2f\xfc\x7f\x6d\x18\x17\x1c\x07\xd2\x47\x07\xda\x24\x67\x5e\x89\x65\x13\x36\x80\x99\x41\xeb\x11\x4a\xa2\x52\xa9\xf0\xcf\x7c\xe6\x33\x18\x19\x19\x01\xd2\x42\xa3\xb6\x77\xba\xef\xc8\xc7\x2f\xd4\xff\x7c\x43\xab\x70\xd4\x28\x34\x3e\xe4\xb4\xde\x63\xfe\x3a\x91\x3b\x72\xe5\x9d\xb1\xe6\x5b\x17\x86\x56\xdf\x6d\xf8\xe1\xb4\xe4\x58\x00\x62\xa1\x01\x34\x54\x1c\x03\x91\xd0\xd0\x83\x9d\x3d\xc2\x42\x2d\xa1\xaa\x16\x82\x20\xc0\xb9\x73\xe7\x00\x00\x4f\x3f\xfd\x74\x92\xdf\xd7\xd7\xc7\x57\x57\x57\xaf\x47\x48\xe7\x4a\x04\xbf\x7e\x92\x9a\xce\xa3\xd4\xc7\xb6\x75\xb7\x06\x91\xe0\xf0\xa4\x94\x89\x0b\x03\x25\x3c\x80\x2a\xa4\xac\x31\xb0\x5a\xa5\xcd\xc7\x76\xce\xf5\xed\x3b\x70\xad\x72\xe3\xf8\xb2\xbf\xb5\x28\xb8\xaf\xf3\x57\x33\x17\x93\x00\xb3\xed\x7c\x14\x5b\x12\x90\xe2\xe4\xf8\xca\xf3\xcf\xee\x5e\xf8\xfe\x5a\x51\x9e\x97\x52\x4e\xc6\x16\xc7\x02\xba\x02\x5c\xbc\xf0\xc2\x0b\xf8\xf5\xaf\x7f\xfd\x41\xf8\xb7\xde\x39\x60\x9b\x7f\xeb\x99\x53\x59\x38\xb2\x68\xed\x81\xa5\x82\x03\x04\xd0\x65\x52\xd9\x04\x84\xcd\xa2\xd0\xf1\xd0\x3a\xb6\x0e\x71\x00\xe8\xef\xef\xc7\xa7\x3f\xfd\x69\x8c\x8e\x8e\x02\x44\x68\xec\x9f\xaa\xdc\xfa\xf1\x0b\x1b\xfe\xd3\xc0\x5a\xe1\x30\x03\xeb\xee\xd1\x20\x31\x0b\xc3\x7a\x5d\x92\xd2\x82\x80\xec\xc3\x80\x96\xad\x82\xa9\x40\x77\x0f\x87\x2d\x49\x89\xa0\x80\x60\xba\xbf\x7d\xe5\x9d\xb1\xe6\x9b\xe7\x87\x56\xdf\x5d\x29\x85\xd7\x24\x4b\x0b\x0c\x68\x16\x46\xbc\xac\x1a\xc4\x2e\x49\x8f\x65\xa1\xe8\xbc\x74\xe9\x12\x3a\x9d\x0e\x4e\x9d\x3a\x85\x8b\x17\x2f\xe6\x15\xde\x30\xe4\x65\xf9\xc5\x36\x57\xd4\xaa\x50\xaa\xd5\x2a\x0a\x85\x02\x16\x17\x17\xc5\xa7\x3f\xfd\x69\xce\x39\xc7\xf6\xed\xdb\xa9\x9b\x93\x7c\x57\x57\x0b\xb2\x26\xb1\x10\x25\x40\xa4\x94\x55\xc6\x58\x4d\x4a\x59\x67\x60\xb5\x4a\x87\x8f\xec\x9c\xeb\x3b\x70\x68\xb2\xff\xf0\xd8\x72\x71\xab\x27\x98\x9f\xec\xe3\x48\xce\x38\xd1\x96\x74\xb5\xa0\x74\xfc\x48\x62\xf7\x46\x05\xc5\xbb\x51\xf1\x2b\x1b\xda\xa7\x9f\xd8\x3f\xfb\xad\xc5\x72\x78\x1a\x0c\x57\x00\x4c\x4a\x29\x17\x10\xc5\x98\xda\x00\x82\x53\xa7\x4e\xe1\x99\x67\x9e\x41\xbc\x94\x6d\x1a\xdb\x94\x4f\x94\x57\x79\xe6\x93\x8b\xdf\x26\xfc\xa6\xfa\x26\x97\x27\x0f\x5d\xae\xb1\x94\x82\x65\x19\x95\xf5\xe4\xb2\x48\x6c\x1d\xb2\x11\x68\x2a\x37\x5e\x57\x2a\x15\xdc\x77\xdf\x7d\x18\x19\x19\x81\x0a\xba\x49\x29\xcb\x0c\xac\xf6\x91\xd9\xbe\xc3\xf7\x9e\xa9\xff\x2f\xfd\xed\xc2\x61\xb5\xc2\x91\xde\x90\x95\xde\xaf\x91\xde\x5f\xd5\x9d\xf8\xc9\xbe\x09\xa8\xac\xee\x61\x3b\x29\xf3\x57\x8f\xc4\xf5\x48\x26\xd5\x86\x84\x60\x10\xb3\xfd\x9d\xc9\x93\x63\x2b\xaf\x9f\x1f\x5e\x3d\xb9\x5c\x0a\xaf\x0a\xc8\x05\xc6\xd8\x52\x3c\x18\x1b\x8c\xb1\x06\x90\x2c\xad\xea\x7b\x2f\x04\xa2\x98\x44\x12\xd0\x5c\x5c\x5c\xc4\xf2\xf2\x32\xa6\xa6\xa6\xf0\xca\x2b\xaf\x88\x42\xa1\xc0\xc3\x30\x34\x3d\xb3\xac\x41\xec\xca\xcf\xab\x18\xa0\xe5\x59\x07\x96\xba\x56\xf1\x12\x00\xf8\xec\x67\x3f\xcb\x07\x06\x06\xb0\x71\xe3\xc6\x04\x87\xec\x7e\x98\x9b\xba\x32\x15\x29\x65\x85\x31\x56\x91\x52\xd6\x74\x01\xd2\xdf\xe6\x9b\x76\xcf\xf6\x1d\x38\x34\xd9\x7f\x64\x64\xc5\xdf\x5c\x88\x97\x73\x7b\x52\x8f\x0e\x30\x07\x4c\x97\x4b\xc1\xcc\x4f\x0e\xcc\xfd\xc3\xe5\x0d\x6b\x27\xc0\x70\x09\x91\x8b\xb2\x80\x48\xa8\xb7\x00\x04\x4b\x4b\x4b\xf8\xf6\xb7\xbf\x9d\x65\x49\xdb\x7e\x29\xcf\x5c\xd7\x59\xf8\x01\xf3\x1c\xcd\xf2\x0c\xb2\x04\x13\xc5\xe3\xa4\x89\xc1\x3e\xb0\xf2\x10\x95\xa5\xc1\x6c\xb0\x79\x5c\x14\x00\xe0\xbf\xfd\xdb\xbf\x8d\xb1\xb1\x31\x80\x58\x1a\x3b\xe6\xcb\x87\xee\x3d\x53\xff\x8b\x0d\xad\xe2\x6d\x5a\x68\x0f\x76\x7b\x34\x8f\xb3\x9b\x2f\xd9\x8c\x0d\x01\x89\xe5\x72\x38\x77\x7a\xa4\xf9\xd6\xc9\xf1\x95\xd7\x17\xfa\x82\xf7\x25\xc3\x1c\xd0\x63\x65\xa8\x18\x86\xc9\x1d\x01\x00\xb1\xb8\xb8\xa8\x0e\xcd\x45\xb5\x5a\xe5\x8d\x46\x03\xc8\xe7\x0a\xc2\x90\x67\xb5\x10\x2c\xb0\x36\x98\xf5\x98\xb7\x26\x7c\x1c\x80\xd8\xbc\x79\x33\xbf\xe1\x86\x1b\x50\xaf\xd7\x51\xaf\xd7\x95\x35\x92\xb2\x40\xa0\xf6\xe4\x30\x56\x8e\x05\x48\x55\x13\x20\x83\x0c\xac\xbe\xa1\xe5\x6d\xd9\x3f\x55\x39\xbc\x7f\xaa\x72\xb8\xbe\xea\x0d\x17\x64\xd7\x4d\x35\xbd\xff\xd2\xd5\x27\xca\x72\x94\xe8\x14\x64\xeb\xe9\x8f\x2c\xfc\xf3\xc9\xf1\x95\xa7\x65\x57\x68\xcc\xc4\x01\xd1\x96\x94\x32\x10\x42\x88\x6f\x7e\xf3\x9b\x2e\x2d\xee\x12\x16\x2e\xbe\x66\xf1\x74\xbd\x38\x29\x6d\x36\xd8\x3c\xcf\xd1\xd4\x7e\xf2\xab\x0b\x8e\x2c\xc2\xb2\x24\x11\xb4\x72\x1b\xe1\x79\x3a\x90\xe4\xed\xdf\xbf\x9f\xdf\x7d\xf7\xdd\x28\x14\x0a\xdd\x97\xd5\x24\x6a\x5b\x16\x4b\x87\x8e\x9f\xd9\xf8\x67\x83\x4d\xef\x13\x49\x4c\x23\xbd\x70\xa2\x2e\xbb\x45\x9a\x07\x93\x94\xe9\xbb\x42\xe9\x0e\x51\xcd\xea\x30\xae\xee\xa5\xcd\x17\xb4\x3c\xd1\xbc\x30\xd4\x7a\xf7\xd7\x9b\x1a\xaf\x5c\x1b\x68\x5f\x10\x1c\x73\x40\x5a\x68\xc4\x71\x0c\x75\x34\x7f\x8f\x3b\xd2\x6e\xb7\x71\xf5\xea\x55\x9c\x3a\x75\x0a\x13\x13\x13\x59\xe6\xa6\x6d\xb0\xba\x06\x72\xd6\x80\x47\x4e\x3c\x59\x29\x8b\x86\x24\x6f\xe7\xce\x9d\x7c\xf7\xee\xdd\xd8\xb6\x6d\x1b\x4a\xa5\x12\x74\x0b\x44\xbd\x3a\x80\xee\x72\xae\x8a\x81\xd4\x00\xd4\xa5\x94\x83\x05\xc9\x06\x87\x57\x8a\x3b\x6e\xbc\x5a\x3d\xba\x67\xa6\xef\x50\x5f\x87\x57\xe9\x4b\x85\x34\xa9\x18\x48\xc8\xa4\xf8\xf5\xa6\xc6\x2f\x9e\xdd\xbd\xf0\xfd\xb0\x80\x8b\x5a\x5c\x43\x3d\xab\x40\x08\x21\xfe\xf2\x2f\xff\x72\x3d\x1a\x3e\xf7\xf8\x76\xe4\x67\xcd\xbd\xf5\x28\x5f\x53\x1b\x1f\xf8\x99\xea\xae\x8a\x09\x71\x1e\x44\xeb\xa9\x97\x5b\x1a\xef\xdd\xbb\x17\x9f\xfc\xe4\x27\x95\x4f\x9c\x58\x1a\xe3\xcb\xfe\x9e\xe3\x67\x36\xfe\xd9\x48\xa3\xf8\x1b\xeb\x0e\x84\x9a\x8c\x0e\xb3\xc7\xe1\x46\xa3\x09\x21\xc1\xa4\x98\xae\x76\xae\x9c\xd8\xb2\xfc\xfc\xf9\xa1\xd5\xb7\x3b\x05\x39\x03\x96\x08\x8d\x25\x29\xe5\x92\x0a\x7a\x6a\x02\x23\xd9\x6b\x01\x40\xac\xac\xac\xe0\xc4\x89\x13\x38\x79\xf2\x64\x96\xb9\xaa\xee\xf3\x08\xef\x3c\x66\xb0\xab\x0d\x9a\xd6\x63\x61\xba\xea\xd2\x7c\x00\x10\x23\x23\x23\xbc\x5e\xaf\xe3\xb6\xdb\x6e\x43\xa5\x52\x49\xac\x10\x00\xfa\xbe\x90\x32\xe2\xa5\xf7\xd8\x02\xa9\x03\xa8\x03\x18\x2c\x0a\x3e\xbc\x7d\xbe\x7c\xf0\xd6\x4b\xd5\x3b\xc6\x97\x4a\xdb\x0b\x32\x76\x5f\x68\x70\x54\x0b\xa0\x5e\xac\xaf\x9d\x7c\xe2\xc0\xec\xdf\xaf\xf8\xe2\x6c\x1c\xd7\x50\xc1\xd0\xa6\x94\x32\x90\x52\x06\xb1\xd0\xf8\x30\xb4\xf8\xf5\x0a\xe8\x3c\x0a\x3c\x8f\xd0\xc9\x43\x57\xee\xfe\xd1\x0d\x60\x2e\xa4\x2a\xb9\xcc\x2a\xd3\xb5\x4d\xeb\x99\x70\x71\x00\x62\xcf\x9e\x3d\xb8\xf7\xde\x7b\xd5\xbd\xda\x46\x5e\x1d\x6c\x7a\x5b\x3f\x71\xae\xfe\xef\x47\x1a\xc5\xdf\x80\x04\x4f\xbf\x67\xa0\xb6\x71\x9b\xdd\x88\x64\x7f\x42\x12\xb3\x80\xb6\xd1\xab\xbb\xd5\x58\xea\xe7\x69\x5a\x90\xa9\x37\x54\x57\x8b\xa2\xf1\xee\x58\xf3\xf5\xd7\xb7\x2c\xbf\xb8\x54\x0a\xdf\x57\x02\x23\x8e\x63\xe8\x6e\x89\x7a\x8f\x24\x11\x18\x61\x18\x8a\x89\x89\x09\x4c\x4e\x4e\xe2\xed\xb7\xdf\x56\x3c\xb2\x59\x01\xa6\x44\xcb\x74\x1c\x7a\xb9\xcd\xaa\xb0\x3d\x2f\xd3\xbd\xa9\x8e\x8b\x4e\x1b\x2c\xad\x97\xdc\x4f\x4f\x4f\x8b\xe9\xe9\x69\x9c\x39\x73\x06\x07\x0e\x1c\xe0\xa3\xa3\xa3\xd8\xb3\x67\x8f\x28\x14\x0a\xea\xbd\x1a\xb5\x85\xbe\x8d\x28\x90\xdc\x64\x8c\x35\xa4\x94\x4b\x00\x1a\x41\x41\x2e\x9d\x1f\x5a\x5d\x9a\xac\xad\x5d\xbc\xe9\x4a\xf5\xe8\xe1\xab\xd5\x3b\x2a\x6d\x5e\x85\xda\x7a\x9e\x6c\xa8\x89\x9e\xdd\x42\x5f\x30\xf9\xfc\xae\x85\x1f\x35\xfc\xf0\x12\x63\x6c\x06\xc0\x82\x72\x4f\x10\x2f\x7d\x2f\x2e\x2e\xea\xf4\x03\xf6\xc9\x44\x79\xe9\xb2\xe4\x4c\xf8\x28\xac\x89\xff\xb6\x3c\x65\xb1\x52\xfa\x5c\x56\x2a\xa5\xc3\x86\xd7\x86\xc7\xba\x8f\xc3\x54\x79\xbd\xe6\x9a\x4d\xb2\x3a\x61\xcb\xe5\x32\xff\xea\x57\xbf\xaa\x6f\x6f\x2e\x03\xa8\xf6\xaf\xf1\xf1\xe3\x67\x06\xff\x74\xd7\x6c\xf9\x0f\x79\xfc\x7d\x93\x75\xef\xc9\xc8\x01\x97\xb8\x25\xea\x3a\x96\x2b\xfa\xb5\x60\x12\x53\x03\xed\x8b\xcf\xef\x5c\x7a\xea\xfd\x8d\xad\x53\x92\x61\x06\x91\xc0\x98\x63\x8c\x2d\x40\x73\x4b\xd0\x7d\x77\x24\x79\xc0\x8f\x3e\xfa\xa8\x18\x1a\x1a\xe2\xb3\xb3\xb3\x7a\xd3\x79\x2c\x3c\x0a\x67\x9b\xe0\xd7\x93\x6c\x83\x4b\xc7\x79\xbd\xda\x31\xeb\xde\x69\xb1\x3e\xf2\xc8\x23\xfa\x84\x52\x16\x28\x75\x5f\xea\x52\xca\x3a\x63\x6c\x90\x49\x0c\x6f\x5a\xf2\xf7\x7f\xfc\x42\xfd\xf8\xa6\x25\x7f\x27\x97\x8c\xeb\xcf\x7c\xd5\x0b\x1b\x4f\xef\x59\xf8\xe7\x77\x47\x9b\xcf\x6a\xc1\xd0\xb9\xd8\x3a\x6c\x03\x08\x56\x56\x56\xc4\xb7\xbe\xf5\x2d\x97\x05\x08\x43\x99\x89\x57\x14\x6e\x3d\xcf\x79\x3d\x38\xae\xc7\xda\xd7\xf3\xd7\xe3\x6d\x40\x3f\x01\x4c\xc6\x95\x58\xfc\x27\xb4\x7b\xca\x40\x05\xeb\xea\x94\x09\x87\x5e\x57\xd3\x01\x80\xaa\xf7\xe0\x83\x0f\xb2\x6a\xb5\xaa\x68\xf3\xa5\x94\xfd\xe5\xb0\x30\x74\xf7\x85\xfa\xbf\xdb\x33\xd3\xf7\xc7\x1c\xac\xd4\x8d\x6f\xe9\xab\x1f\x71\x17\x92\x99\xce\x12\xed\x82\x14\x8c\xea\x2a\xdd\x3c\xa4\x11\x13\xdb\xb8\x4c\xad\xa4\x80\x25\x56\x46\xc7\x93\xad\xb7\x36\xaf\xbc\xf8\xd4\xde\xf9\xc7\x66\xfa\x3b\xa7\x24\xe4\x15\xc6\xd8\x24\x80\xc9\x58\x73\xcd\x23\xb2\x34\x56\xe3\x41\xd8\x01\xa2\xa3\xe7\xce\x9c\x39\x83\x27\x9f\x7c\x12\xad\x56\x8b\xad\xae\xae\xd2\xa6\x15\x5f\x74\xfe\xe8\x79\x94\x9f\xea\x5e\xfd\x4a\x74\x43\x38\x3a\x8c\xfe\xa7\x97\x9b\x9e\xb7\x6d\xc7\x83\xc1\xd8\x4f\x87\x90\x08\x1c\x27\xf0\xa6\x7b\xfa\xfc\x75\x7c\x0a\x1e\x00\xf0\xea\xab\xaf\xca\x4a\xa5\xc2\x86\x87\x87\x65\x4c\xa7\xda\x5a\x1f\xc6\xfc\x6d\x23\xda\x8e\xbf\x26\xa5\xec\x48\xa0\xdd\x28\x89\xa5\x73\xc3\xcd\x09\xc9\xd0\x19\x6c\x16\x47\xd5\xd2\x6d\x87\x8b\xf6\xeb\x5b\x1a\x4f\xbe\xb9\xb9\xf1\x73\xc9\x71\x15\xc0\xb5\x58\xe0\x2f\x33\xc6\xd6\x10\xbb\x91\x4f\x3e\xf9\x24\x96\x96\x96\x74\xde\xe9\x7d\xa4\x7f\x2a\x09\x02\xa7\xf3\x46\x09\x04\xca\x77\x1b\x2e\xd3\x9c\xd1\x9f\xb1\x8e\x57\xc2\x8e\x4f\xd5\x85\x21\x4f\x7f\x26\x0a\xaf\x69\x1c\xd2\xe7\x96\x6b\x17\x53\x5e\x49\x75\xbd\x29\xa9\xff\xb9\xcf\x7d\x8e\x8f\x8f\x8f\xab\xbc\x32\x80\x0a\x17\xa8\xdf\xfe\xde\x86\xdf\xb9\xe5\x72\xf5\x7f\x2a\x86\x7c\x58\x97\x11\x1f\xca\x22\x49\x9e\xe3\xb7\x10\x09\x8d\xb9\x4a\x30\xf9\xd2\xf6\xa5\x67\xce\x8e\x34\x4f\x84\x0c\x53\x88\x2d\x0d\x74\x03\xa0\xfa\xe6\x2d\x81\xf8\x64\xec\x33\x67\xce\xe0\xe7\x3f\xff\xf9\x7a\x78\xb4\x5e\x9e\x5e\xcf\x33\xf8\x30\xb4\xd9\x07\x7d\xf6\xeb\x4e\xf7\xdc\x73\x0f\x3f\x78\xf0\xa0\x7a\x51\xcf\x8b\x2d\x53\x7d\x17\x6a\x15\x71\xdc\x03\xc0\x30\x17\x18\xde\x35\xd7\x77\xf0\xb6\xf7\x6a\xc7\x87\x57\x8a\x5b\xcf\x0f\xad\xbe\xf4\xd4\xde\xf9\xff\x7b\xd5\x17\x13\x88\xf6\x6a\xcc\xc4\x56\x62\xf2\x2e\xca\x9b\x6f\xbe\x89\x17\x5f\x7c\xf1\xc3\xe0\xe7\x7f\x0b\xb8\x3c\xb0\x1f\x56\x9b\x89\x35\xe4\x91\x4c\x93\x5f\x63\x33\xbd\x5c\xbe\x9d\x5e\x9e\x3b\x30\x13\x2f\xbb\xaa\x81\x50\x06\x50\xbd\x61\xb2\xff\xee\xc3\x57\xfa\xff\x87\x62\xc8\x86\xa3\x37\x51\xb5\x13\x1b\xf4\x8f\xfe\xb8\x5c\x16\x2a\xa3\x53\x72\x5d\x8b\x65\x10\x97\x44\xc9\xd9\x80\xcb\xe0\xe2\xc6\xd6\xe9\x17\x76\x2e\x3e\x35\x53\xed\x9c\x89\x5d\x13\x5d\x68\xa8\xef\x70\xe8\x71\x0c\x31\x3f\x3f\x8f\x93\x27\x4f\xe2\xe4\xc9\x93\xaa\x5f\x7a\xca\x32\xff\x4d\xcf\x83\xd6\xa7\xf9\x59\x71\x05\xda\xb6\x09\xb7\xcb\x45\xcd\x72\x51\x4c\x75\x6d\x7e\xbc\xcd\xff\x77\xc2\x3f\xfb\xec\xb3\x62\x6a\x6a\x8a\xdf\x70\xc3\x0d\x18\x1a\x1a\x0a\x00\x70\xed\xe5\x3e\x75\x06\x49\x2b\x76\x13\x9b\x21\x93\x8d\x73\x43\xab\x0b\x8b\xe5\xe0\xc2\xbe\xe9\xca\xfe\xd3\x23\xcd\x37\x56\x8b\x62\x42\x4a\x39\xc5\x18\x9b\x83\xb6\x9d\x9c\x31\x26\xde\x78\xe3\x0d\xbc\xfc\xf2\xcb\x36\xde\xe8\x74\xe7\xe9\x9b\x89\xef\x59\xbc\xd0\xf9\x61\x7a\x9e\x26\xfe\x9a\xee\x5d\xf4\xd8\x70\xe5\xa1\x49\x00\xdd\xe5\xd8\x3c\x7e\x67\x96\x85\x91\x67\xf0\xc0\x76\xfd\x47\x7f\xf4\x47\x3c\xfe\x50\x92\x8a\x9e\xd7\xb7\xce\x97\x0e\x7d\xfa\xd4\xe0\x7f\xae\xad\x15\x8e\xa4\xb7\x10\x53\xab\xd9\x9e\x92\x5d\xa1\xda\xe9\xe1\x56\x58\xf4\xca\x9b\x35\x2f\x6c\xbe\x3d\xde\x7c\xe5\xc4\x96\xe5\xe7\x1a\xa5\xf0\x3d\xa4\x85\x86\xda\xf9\x99\x04\xd4\x00\x08\x21\x04\x5e\x78\xe1\x05\x3d\xe8\x09\x03\x1f\x6c\xbc\xc8\xf3\x6b\xc3\x47\xf1\xe6\x19\xc8\x26\x81\xe6\x6a\x13\x8e\x7b\x64\xe4\x9b\xda\x74\xc1\xda\xda\xe4\xa5\x52\x09\x6b\x6b\x6b\x22\x1e\x37\xfa\x3e\x10\xf5\x22\x9d\xda\x7d\x5a\x63\x8c\x55\x21\x51\x29\x48\xf0\x90\xa1\x89\xe8\xfd\xa0\x05\x29\xe5\x42\xbc\x11\xaf\x0d\x40\xac\xac\xac\x88\x1f\xfc\xe0\x07\x68\x34\x1a\xb6\xb1\x6a\xe3\x8f\xab\xaf\xd0\xca\x5d\x02\x81\xe2\x36\xe1\x74\x4d\x6c\xda\xa6\x6b\x5e\xdb\x70\x66\xdd\x27\xd7\x2e\xc1\x41\x09\x37\x69\x29\x97\xe6\x72\x11\x9d\xea\x5c\xfc\x49\x46\x8e\xee\x0a\x4a\xad\xba\x56\xd8\xfc\xc0\xc9\xa1\xbf\x18\x5f\xf6\x3f\x0b\xc9\xb8\xf6\xc2\x2a\x14\xe1\xa6\x83\x80\xf5\xe5\xb6\xd4\x69\x52\x70\x27\xba\xbb\x50\x42\x62\xa9\x1c\xce\xbd\xba\x6d\xf9\x99\x77\x47\x57\x5e\x6e\x7b\x52\x2d\xd7\xa9\x20\xa8\x7a\xbf\x24\xd9\xf1\x19\x86\xa1\xb8\x7c\xf9\x32\x7e\xf2\x93\x9f\xd8\x1e\xaa\x89\x2f\xb4\x2c\x6b\xb0\x02\xf6\x41\x40\x61\xb3\x06\x64\x9e\x81\xa4\xd3\xec\xd2\x80\x34\xe5\x15\x3e\x34\x2f\x8f\x55\xa2\xc3\xe2\xf8\xf1\xe3\x7c\xdb\xb6\x6d\xf0\x7d\x5f\xed\x01\x49\x05\x4f\xa5\x94\xe5\x78\x3f\x08\x47\x24\x24\x9a\xda\xbb\x41\x49\x30\xf4\x89\x27\x9e\xc0\xf4\xf4\x74\x16\x0f\x74\xda\xf3\x5a\x5f\xb4\x1e\xad\x9b\x57\x29\x64\x59\x13\x36\x1a\x5c\x0a\x24\x8f\x11\xd0\x33\x76\x4c\x07\xf9\xac\xa7\xd3\xae\x0e\xe9\x04\x50\x62\x38\x00\x51\x2a\x95\x70\xfc\xf8\x71\xee\xfb\xbe\x2a\xf7\x00\x54\x8a\x21\xab\xdf\x35\xb1\xe1\xf7\xc6\x96\xfd\x64\xaf\x86\xfa\x5e\x47\xf2\x6e\x02\x98\x76\xe4\x7e\xf4\x93\x9c\xce\x05\xb5\x9c\xaa\x7b\x1c\xfa\x41\x3a\x48\xc1\x80\x75\xc3\x1c\xea\x93\x83\x33\xfd\x9d\x2b\x2f\xec\x5c\xfc\xd9\xc4\x60\xeb\x8d\x90\xc9\x49\x86\xe8\x15\x6b\xa4\xb7\x22\x27\x42\x63\x69\x69\x09\x6f\xbe\xf9\x26\xde\x79\xe7\x1d\x17\x3f\x28\x1f\xf5\xa4\xc3\xba\xea\xd8\x60\x74\xde\xda\xda\xb1\xe1\xb5\x69\x99\xac\x49\x6e\xc3\xa5\xe7\xe9\xf7\xb6\x76\x6c\x63\xc9\x55\x2f\x81\x7d\xea\xa9\xa7\x00\x40\x7c\xf1\x8b\x5f\x44\xbd\x5e\x17\x71\x79\x10\x1f\x3b\xd0\x46\x24\x44\xd4\x0b\x76\x41\x5c\x96\xfa\xc4\x63\xbc\x82\xa2\xf3\x2e\xeb\xd9\xb9\x14\xa3\xa9\x3e\xed\x0f\x4a\xa5\x12\xaa\xd5\x2a\x9f\x9d\x9d\x15\x00\x70\xe7\x9d\x77\xe2\x85\x17\x5e\x10\x43\x43\x43\x1c\x00\xe2\x55\xb7\xbc\xd6\x00\x85\x75\x29\x97\xac\xe7\x0e\xc7\xaf\x00\xba\xfb\x38\x68\x12\xda\x6f\x96\xe6\x30\xd5\xc9\xca\xe3\x00\xb0\xb6\xb6\x26\xb6\x6d\xdb\xa6\x6f\x33\xae\x14\x24\xab\xdd\x7c\xa5\xfa\xc9\xbd\xd3\x7d\x5f\x63\x60\x7e\x77\x01\xa4\x6b\x33\xa4\x5e\xa7\xd6\x62\xd7\xea\x65\xa6\x04\x32\x05\xc6\xb4\x7d\x1b\x36\x0b\x24\xfa\xac\xc0\xd5\x0d\x6b\x13\xcf\xed\x5a\x7c\x7c\xb2\xd6\x7e\x47\x32\x4c\x32\x30\xe5\x9e\xa8\xbd\x19\x6a\x5f\x86\xe8\x74\x3a\x62\x72\x72\x12\xbf\xf8\xc5\x2f\x10\xbf\x29\x6a\x1b\x34\x2e\xed\x8c\x1c\xe5\x2e\x5c\x79\x26\xbd\x49\x80\xdb\xb4\xbb\x69\xc2\x9b\xe8\xc8\x73\xaf\x70\x99\xc6\x82\x0d\xb7\xad\xdc\x49\xd3\x0f\x7e\xf0\x03\x1c\x3b\x76\x0c\x5b\xb6\x6c\x11\xb1\x32\xd2\xcf\x2f\x49\xfa\x19\x2f\x8d\x27\x67\xaf\x9e\x3e\x7d\x5a\xc7\x99\xd7\x8a\x03\x7a\x79\x6b\xd3\xd2\x29\x9a\x07\x06\x06\xf8\xf2\xf2\xb2\xb8\xff\xfe\xfb\xd5\xdb\xde\x91\x72\x94\x12\x37\xdd\x74\x53\x72\xcd\x18\xe3\xe7\xcf\x9f\x87\x94\x12\x4f\x3e\xf9\x24\xe5\x9f\x6b\xbe\xf5\xb4\xf9\x01\xee\x8d\x49\xb9\x2a\xaa\x82\x4d\x4a\xd9\x06\x98\x29\xb9\x84\x4d\x92\xb6\x6f\xdf\x8e\x4f\x7d\xea\x53\xd0\xe2\x1a\x15\x44\xef\xa0\x1c\xb9\xef\xdd\xc1\xff\xad\xbf\x5d\x38\x20\x01\x80\x75\x23\x96\x9a\x27\x91\x6c\xe4\x4a\x9f\xf7\x99\x48\x10\xed\x0b\x6c\x00\xe2\x2f\xb3\x77\x7b\xdd\x7d\xa9\x2d\xf9\x17\xc9\x15\x31\x31\xd4\x3a\xf9\xcc\xee\x85\xc7\x17\xfa\x82\x73\x12\x52\x2d\xb1\x2a\xa1\xd1\x44\x7c\x4c\x1f\x63\x4c\x04\x41\x80\xa7\x9f\x7e\x5a\xbd\xd2\xee\xd2\x30\x30\x94\xad\xe7\x1e\x1f\x42\x59\x16\x6c\x9e\xba\x79\xeb\xd8\x2c\x15\xdb\x58\x73\x8d\x2f\x93\xb2\x72\x4e\xee\x2d\x5b\xb6\xf0\xe3\xc7\x8f\xa3\x5c\x2e\x03\x40\x72\x62\x3b\x80\xd4\xb1\x89\x41\x10\x88\x89\x89\x09\x7d\xc5\xcb\xe6\x0a\xd0\x32\x68\x79\x2e\x81\x9c\x94\xa9\x97\xfd\x8e\x1d\x3b\xc6\xf7\xed\xdb\x97\x3a\x72\x40\x2b\x37\xf5\x29\xf9\x9d\x98\x98\xc0\x4f\x7f\xfa\x53\xc1\x39\xe7\x42\x88\xf5\xcc\xc9\x14\x7f\x1c\xf5\x9c\x96\x9d\x5e\xce\xb4\x02\x17\x43\x40\xca\x69\xb2\xc1\x98\xa4\x2e\x07\xba\x71\x0d\x19\x9d\x9a\xed\x43\xa2\x56\x6b\x15\xb6\x7e\xf6\xdd\xa1\x3f\xdf\xb4\x54\xfa\x9c\x2b\x26\x61\x3a\x0f\xa3\x27\x8e\x91\xf8\x28\xd9\xcb\xad\xea\x03\x46\x67\x87\x57\x5f\x7f\xfa\x23\xf3\x3f\x5a\xf1\xc5\x7b\x60\xc9\x21\x2e\x2a\xf2\x9e\xf8\xc3\x52\x4a\x71\xf5\xea\x55\xbc\xfe\xfa\xeb\xb8\x74\xe9\x92\xea\x77\x5e\xa1\x41\x93\xcd\x72\xb0\xc1\x1a\x07\xa6\x05\x06\x06\x78\xd7\x04\x30\xd5\xfb\xff\x7d\xfa\xfa\xd7\xbf\xce\x39\xef\xb2\x48\x08\x01\xcb\xfb\x27\xb6\xf4\x81\x79\x71\xec\xd8\x31\xbe\x7f\xff\x7e\xfd\x58\x46\x8e\xee\x72\xb2\x12\x6a\xfa\x41\x48\x02\xda\xcb\x8f\xda\x89\x6c\xe2\x9d\x77\xde\xc1\xb3\xcf\x3e\xfb\xff\xea\xb3\xb1\x7d\x90\xc9\x64\xfe\xb8\x98\xe7\x12\x18\x46\xb3\x97\xc6\x35\x3c\xc1\xea\xb7\x5e\x1a\xf8\xad\xf1\x25\xff\x3e\x65\x59\x24\x4b\xa3\x34\xb1\xde\xad\xe5\xa9\x85\x16\x20\xe5\xaf\x44\x59\xb2\x27\x26\x82\x38\x5f\x30\x88\xd3\x23\xcd\x57\x9e\xfe\xc8\xc2\x63\xad\x62\x78\x11\xd1\x86\x2e\x7d\xe5\x44\x09\x0d\x01\x40\x7c\xe3\x1b\xdf\xc8\x32\x09\x5d\x13\xd7\xc5\x9f\x3c\x82\x57\xe5\x9b\xda\x77\x69\x4c\x5b\x1b\x26\xdc\xb6\x36\x6d\xcf\xd4\x35\x36\x6c\x6e\x95\xc9\x9c\xcf\x6a\x7b\xbd\xe5\x1c\x80\xf8\xfe\xf7\xbf\x0f\x15\x47\xf8\xe8\x47\x3f\xca\x5f\x7d\xf5\xd5\xf5\xf2\xc0\xf6\x5c\xb2\xe8\xc2\xc0\xc0\x00\x7f\xe0\x81\x07\x50\xab\xd5\xf4\x95\x1f\x75\x94\xa2\xc7\x05\xfc\xa1\x95\x62\x6d\xb0\x59\x1c\x2d\x08\x94\x19\x18\x6f\x7b\x62\x69\xae\x2f\x98\x9a\xab\x74\x9a\x92\x47\xca\x4a\x7b\x29\x32\x38\x78\xf0\xa0\x78\xf6\xd9\x67\x5d\xf4\x66\xf5\x27\xab\x8e\x8b\x9f\x00\x3e\xd8\x4b\x6e\xb4\x71\xd7\x04\x49\xe1\x7b\xf8\xe1\x87\xf5\xa5\xb3\x0a\x24\xea\x07\xa6\x2a\x77\x7d\xf2\x6c\xfd\x3f\x97\x82\xc2\xd6\x3c\x0b\xad\xa9\xcf\x13\x98\x3e\x77\x8e\x5e\x24\xe4\xb3\xaf\x00\xa2\x3d\x1a\x27\xc7\x56\x5e\xfa\xe5\xae\xc5\xc7\xd6\x3c\x71\x09\x2c\xd9\x14\xa4\x84\x46\x72\xfa\x53\x18\x86\xe2\x9b\xdf\xfc\xa6\x88\x69\x77\x32\xd6\x50\x66\xe2\x87\xcd\x2c\xcc\x63\xd6\xdb\x2c\x42\x97\xeb\x99\xc7\x45\xc8\x63\xa6\xe7\x99\x38\x59\x34\xbb\x06\xad\x9e\x4c\x56\x95\xa9\xdc\xd6\x66\x1e\x98\x2c\xa1\xaf\xb7\xbf\x1e\xfe\xe3\xcb\x5f\xfe\x32\xaf\xd5\x6a\x40\xf7\x9b\x34\x3e\x24\xfc\xc1\xa6\x37\xb8\x6f\xba\x72\xc7\xde\xe9\xca\x6f\xf6\xb7\xf9\x8d\x5e\xc8\x47\x59\x7c\xc4\xa2\x04\x5a\x01\x97\x33\xcb\xe5\xe0\x95\x77\xc6\x9a\x3f\x3e\x37\xbc\xfa\xda\x62\x39\x58\x00\x4b\x1f\xc3\xd0\xe9\x74\xc4\x0f\x7f\xf8\x43\x4c\x4f\x4f\xe7\x11\x00\x94\x5f\xb6\x67\x66\xed\x8b\x7e\xaf\xbe\x56\xcf\xd1\xdd\xe2\x0a\xf4\x6e\x5d\xee\x71\xbe\x34\x38\x8e\xee\x96\x55\xae\xe5\x43\xab\x1b\x6d\xf3\xf3\x3c\x2e\x84\x90\x47\x8f\x1e\x2d\x20\x32\xd3\x4a\x00\xaa\xc3\x2b\xc5\x5d\xf7\x9c\xaf\xff\xc7\xda\x9a\x77\x93\xbe\x5f\xc3\x68\x6d\xa4\x56\x41\x98\x0a\x61\xf4\x2e\xcb\xaa\xd6\xf5\x5b\x2a\x34\x98\x0c\x4e\x8e\xaf\xbc\xf4\xcb\x5d\x0b\x8f\xad\x15\xe5\x45\x30\x5c\x05\x30\xcd\x18\x9b\x05\xb0\x0c\x60\x15\xd1\x96\xe6\xa0\xd3\xe9\xc8\xbf\xfa\xab\xbf\x12\x1a\x66\xbd\xcf\xd4\xce\xa1\xf6\x0f\x27\x65\x92\x5c\x33\x92\xa7\x97\xe9\x0f\x98\xde\xab\x6b\x49\xee\x4d\xdb\x88\xc9\xb6\xb6\x14\xcd\xf4\xb9\xd3\xed\xeb\x7a\x1b\x26\x3a\x74\x58\xba\x75\x99\xf2\x4c\x87\xa7\x75\xf4\xb6\xe9\xf6\x6a\x9d\x57\x02\x69\xfe\xb8\xda\x54\x13\x87\x3e\x33\x13\x5d\x74\x32\xd1\xf6\x29\xef\x60\xb8\x4f\xf8\xf9\xa5\x2f\x7d\x89\x6f\xd8\xb0\x01\x88\x97\x87\x19\x63\x7d\xc5\x80\xd5\x6e\xb9\x32\xf0\xf1\x4f\x9e\xdd\xf8\xbf\xee\x9c\xeb\xfb\xe3\x4a\x87\xdf\xe2\x09\x3e\xc2\xc1\x2a\x1c\xac\x1c\xbd\x52\xc1\xfa\x3d\x89\x91\x4a\xa7\x70\xd3\xb6\x85\xf2\x67\x76\xce\x95\x0f\x09\x2e\x67\x17\xcb\xc1\x7c\x58\x48\xda\x13\x9c\x73\xec\xd9\xb3\x47\xbe\xfe\xfa\xeb\x36\x7e\x52\x1d\x6c\xeb\x9b\x3e\x87\x73\xf5\x8d\xae\xaa\xd8\x4c\xb4\xbc\xe6\x2b\x2d\x4b\xc1\x7d\xe2\x13\x9f\xc0\x9e\x3d\x7b\x94\x4f\xe7\x01\x28\x17\x03\x56\xbf\xe5\xd2\xc0\x43\x43\xcd\xe2\x1d\xe9\x6f\x84\x46\x74\x27\xcb\xa6\x3a\xe9\xd0\x43\x17\x5a\xa9\xce\x22\x69\x82\xed\xa6\x80\xc9\xe0\xd4\xe8\xca\x2b\x2f\xee\x58\xfc\x71\xcb\x13\x17\x19\xd8\x24\xba\xaf\x55\xeb\x3b\x41\xc5\xe4\xe4\x24\xfe\xf5\x5f\xff\x55\xd7\x34\xf4\xda\xd4\xff\xac\xe4\xd2\xe2\x20\x65\x7a\x39\xbd\x36\xdd\xdb\xf0\x99\xca\x29\xec\x7a\xb4\xb0\xad\x7d\x13\x6f\x6c\xf5\xf3\x98\xd8\x7a\x1d\x0a\x4f\xf1\x9a\xf0\x99\xf8\x6a\xe3\xbf\xad\xed\x2c\x9e\xa7\xda\xff\xd2\x97\xbe\xa4\x5b\x1a\x3e\x63\xac\xd2\xbf\x56\x18\xbc\xfb\xfc\x86\xdf\xfb\xc8\x4c\xdf\x23\x45\xc1\xc6\x53\x9f\x1e\xd5\xc6\x2b\x4b\x7c\x74\xc9\x0b\x92\xd5\x36\xae\x7a\xf7\xdf\x7d\xbe\x7e\xe3\x48\xc3\xff\x3f\x7f\xb5\x63\xf1\x5f\x1a\x7e\x38\xc7\xa2\xcf\x5e\xb4\x3d\xcf\xa3\x3c\xa1\xd7\x79\x9e\xb3\x8b\x07\x14\x27\x47\x6c\x71\x00\x5d\x49\x62\xb3\x2e\xa8\x64\xd7\xf3\x55\xd2\x35\x81\x2a\x4b\x24\xdf\xa6\x4d\x9b\xd8\x9d\x77\xde\xa9\x1a\x2e\x02\xe8\x03\x50\xdb\x3b\x53\xb9\xfd\x96\x4b\xd5\xff\xbe\x28\xf8\xc6\xee\x96\x72\xc5\x45\x06\xfd\x5b\x06\x4c\xbf\x06\xb4\x2f\xfb\xa9\x55\x94\xb8\x8a\x7e\xfa\x53\xea\x3a\x2a\x0f\x99\x14\x67\x47\x9a\x27\x9e\xdf\xb5\xf4\xd8\x4a\x29\xbc\x10\xbf\xa4\xa6\xf6\x69\xac\x20\x76\x4f\x18\x63\xe2\xfc\xf9\xf3\xf8\xd9\xcf\x7e\x06\x21\x84\x46\x54\xea\x71\x73\xa4\x45\x16\xb4\x6b\xa6\x5d\x0b\x52\x9f\x5a\x69\x54\x4b\xea\xed\xe8\xf8\x14\x2c\x15\x0c\x54\x23\x32\xa4\x9f\x89\x8e\x87\xde\x9b\xea\xeb\xf9\xb4\x9f\x94\x17\xd4\xda\xa4\x16\x08\xb5\x36\x38\xa9\xcf\xd1\xcb\x4f\xa0\x97\x1e\x5a\x4f\xcf\x83\x56\x46\x9f\x11\xc8\x35\xe5\x81\xc9\x42\xb4\xf1\x56\xaf\xaf\xa7\x04\xd7\x5d\x77\xdd\xc5\xb7\x6f\xdf\x0e\xc4\x9f\x85\x60\x8c\x55\x2a\x6d\x3e\x7c\xf7\x85\xfa\xd7\xf6\x4f\x57\xfe\x7d\x51\xf2\xa1\xd4\x71\x10\xea\x9b\x2e\x3d\xdb\x0c\xa2\x1b\xc6\x18\x0a\x82\x6d\x18\x6a\x7a\x47\xfa\x3a\x85\xf6\xd5\x0d\xed\xb3\x41\x41\x26\x81\xd3\xa3\x47\x8f\xca\xbe\xbe\x3e\x76\xf9\xf2\x65\x26\xd3\x4b\x33\x7a\x3f\xa8\x05\xca\xb5\x96\x4c\x63\x9a\xce\x67\x68\x79\x5a\xa8\xd9\x9c\x6c\x52\x5a\x2f\xa7\xbe\x9f\x09\xa7\x38\x72\xe4\x88\x82\x4f\x0e\x65\xa9\xad\x16\xc6\x8f\x5c\xaa\x7e\xa5\x1c\xf0\xcd\xd1\xa4\x8f\x5d\x0f\xed\x1d\x14\xe5\x5e\xa4\x26\x7f\x92\x93\x76\x6b\xba\x5f\x51\x63\xdd\xd7\x58\x58\xfa\x61\x08\x48\x4c\x0c\xb6\xde\x7a\x61\xe7\xe2\xe3\x8d\x52\x38\x01\xc6\x26\xa5\x94\x29\x4b\x03\x71\x4c\x23\x16\x1a\xa2\xd3\xe9\xe8\x3c\x70\x69\x3e\x5a\x66\xd2\x80\x3a\x1f\xb3\xb4\x24\xbd\x76\x69\x13\x53\x7d\xaa\x59\x6d\xda\xda\xe6\xeb\xba\x60\x5d\xf8\xb2\xf0\xd3\xfa\x36\xbe\x9a\x2c\x05\x5b\xbb\x79\x70\xe9\x89\xf2\xde\xc5\x47\x9b\x26\x36\xd2\x70\xe8\xd0\x21\x00\xc9\x01\x44\xe5\x82\x40\xed\xe6\xcb\xd5\xcf\xee\x9b\xae\x3c\x52\x90\xac\xa6\xa6\xa2\x94\x88\x3e\x04\x95\x8c\x69\x00\x12\xda\xd8\xed\x66\x33\x00\x45\xc1\x87\xf7\x4d\x57\xbe\x7e\xe3\xd5\xfe\xe3\x4c\xa2\x8a\xe8\x60\x67\x0f\x00\x3f\x74\xe8\x10\xe2\x73\x68\x75\xfa\x6c\x5e\x82\x4e\x6f\xde\x71\x9b\x2a\xcf\x1b\x88\x52\x02\xc1\xc6\x5c\x93\xc0\x48\x26\xc7\xc7\x3e\xf6\x31\xbe\x6d\xdb\x36\x00\x80\x8c\xbe\x31\x5a\xe6\x02\xb5\x9b\xaf\x54\x7f\x73\xa4\xe1\xdf\x81\x64\x77\x68\xe4\x9c\xa4\x0e\x1c\x87\x72\x58\xe2\x0c\x8d\xa9\xc9\x57\xca\x35\xe6\x26\x5b\x39\xf4\xfa\x1a\x9e\xab\xb5\xf6\xd9\x17\x76\x2e\x3e\xbe\x58\x0e\xcf\x49\xc8\x49\x00\x33\x8c\xb1\x85\xf8\x40\x18\x75\x7e\x46\x22\x34\x0c\x7d\xa4\x2e\x98\x2b\xb9\x60\x69\x99\x49\x00\x53\xcd\x67\xc3\x67\xa2\x13\x19\xbf\x2e\x17\xc1\x54\xc7\x96\xef\xe2\x81\x8d\x6e\xaa\x64\xb8\xe3\xcf\x36\x61\x69\xb9\x8d\x9f\x26\x9e\xd9\xdc\x2d\x95\x4c\xe6\x3c\xad\x6b\x1d\x0f\xf1\xb2\xa9\x3a\xb9\xbd\xb2\x69\xb1\xb4\xef\xe0\xb5\xfe\x3f\x28\x08\x36\x08\x20\x51\x80\xda\xc7\xe3\x90\x98\xcc\x71\x46\xca\x6e\x48\xcc\x69\x89\x62\xc8\xc6\x6f\xba\x5a\xfd\x93\xb1\x65\x7f\xb7\x94\xb2\x1c\xb7\xc1\xa5\x94\xfc\xbe\xfb\xee\xe3\xf1\xba\xb3\x4d\x89\xdb\x78\x6f\x4a\xae\xe7\xce\x4d\x83\xd3\x84\xc0\xf4\xf0\x4c\xcc\xa7\x5a\x8e\x03\x10\x7b\xf7\xee\x55\xd7\x5e\xfc\xce\x40\x75\xcb\x62\xe9\xc0\xfe\xa9\xfe\xdf\x2d\x48\x56\x8d\x26\xbc\x8c\x3e\x91\x18\x73\x35\x11\xc2\x29\x06\xa6\x25\x4a\xfa\xf4\x2f\x24\x0f\x43\x37\xd6\x23\xb7\x25\xc2\x38\x57\x09\xae\xfc\x72\xd7\xc2\x8f\x66\xfa\x3b\xa7\xc0\xa0\xce\x97\x9c\x43\x74\xea\x78\x12\xad\x7e\xef\xbd\xf7\x74\xa1\x91\x87\xb1\x59\x0f\xc1\xe6\x1b\x53\xbe\xdb\x2c\x36\x57\xdb\x7a\x3d\x97\x0f\xee\xc2\xe1\x6a\xd7\x36\x31\x6d\xd6\x85\x6d\x02\xda\xf0\x9a\xf2\x4c\x56\x80\x4d\xc9\xe9\xf4\x50\xbf\xdd\x34\xb6\x6d\x42\xc3\xa6\xad\xe9\xb3\xa2\x56\x4c\xea\x3e\x3e\x74\x28\x39\x2f\xd5\x0b\x59\xed\xd0\xb5\xfe\xdf\xac\xae\x15\x0e\x45\x73\x5f\xd7\x6c\xfa\x6f\xd7\xf2\x60\x40\x5a\x79\xaa\xb2\x78\x7e\x0c\xac\x15\x6e\x3c\x34\xd9\xff\x19\x06\x56\x8d\xe7\x93\x07\x00\x3b\x76\xec\x40\x1c\x57\xd1\xe9\xb6\x8d\x37\xda\x3f\x2a\xc4\x5d\x63\xd6\xf8\x90\x4d\x9a\xcc\x26\x7d\x29\x9c\x8e\x53\x00\x10\xb7\xdf\x7e\x3b\x8f\x0f\xe6\xe1\x88\x5f\x3c\x2a\x86\xac\xfe\xd1\xf7\x07\xbe\xd8\xdf\xe6\x7b\xba\xfc\xd3\x5c\x8a\x9e\x60\xa8\x6e\x52\x68\xf7\x89\x58\x8e\xdf\x5f\xa1\x0f\x23\xc6\x2b\x19\xd0\x2c\x8a\x85\x5f\xee\x5a\xfc\xd1\xd5\x0d\xed\xb7\x11\x6d\xee\x4a\xdc\x93\xf8\x7b\x26\x6d\xc4\x42\xe3\x89\x27\x9e\x58\x8f\xf9\x6f\xfa\xa5\x49\x1f\xcc\x26\xed\x45\xeb\xba\x5c\x00\x6a\x4e\xe6\xb1\x6a\xf2\x4c\x72\x9a\x4c\x13\x89\x4e\x4a\x0a\xe7\x1a\x70\x36\x5a\x68\x9e\xcd\x7a\xd2\xdb\xb5\xf1\xdf\x85\x97\xd2\x4a\xf1\xdb\xea\xd8\xea\xf7\x58\x1d\xb7\xdd\x76\x5b\xf2\xf1\xa9\x78\x42\x97\xeb\xab\xde\xe6\xcd\x8b\xa5\xbb\x93\x53\xeb\x34\x97\x04\x40\xf7\xd0\x6b\xa5\xe8\x52\x85\xe9\xb2\xe4\x5b\xc7\x12\xfe\xd6\x85\xd2\x27\x37\xb4\x0a\xa3\xb1\xd5\xe1\xc5\x6d\x62\xe7\xce\x9d\x7a\xff\x4c\x3c\x53\xc9\x26\x4c\x6d\x0a\x20\x55\x4f\x3f\x73\xd4\x26\xa5\x6d\x12\xdb\xa5\xa1\x38\x00\x6c\xd9\xb2\x85\xdf\x7c\xf3\xcd\xc9\x97\xcd\x11\x7d\x18\xba\xb2\x67\xba\x72\x78\xf3\x52\xe9\x3e\x48\xf0\xee\x64\x4f\x9f\xe6\xa5\xdc\x0e\xe5\x89\x28\xcb\x41\x7d\x48\x87\x31\x06\x7d\xa9\x84\x81\xa5\x82\xa2\x2a\xce\x24\x99\x44\xc8\x11\xbc\xb4\x63\xe9\x89\x0b\x43\xab\x27\x24\x4b\x1d\xde\x92\x08\x0d\x29\xa5\xf8\xc6\x37\xbe\x21\xf4\x9d\x7c\xe8\x9d\x24\x40\x36\x5f\x28\x0c\xad\x07\x03\x9c\xa9\xbe\xe9\xda\x94\x6c\xcf\xc2\x25\x1c\x6c\x93\xc5\xd4\x37\xd3\x64\x31\xe5\x9b\xf0\xdb\xea\xaa\x32\xaa\xc5\xa9\x82\xa2\xb4\xba\x84\x8f\xcb\x92\xa0\x82\xc9\x66\x69\xdb\x04\x9f\x89\x2e\x1d\x17\x00\x60\xd3\xa6\x4d\xfa\xe1\xda\x9e\x94\xb2\xb2\x69\xc9\xdf\xd7\xdf\xe6\xbb\x4d\xa1\xd8\xd4\x22\x60\xfc\x49\x4b\xb5\x52\x98\x5a\x09\x24\x21\x6c\xc6\x18\xaa\xed\xc2\xce\xe1\x15\x7f\xf7\x62\x5f\x38\x19\xb7\xc5\x01\xf0\xd1\xd1\x51\xbd\xbf\x26\xc3\x00\xe8\xe5\xb7\xad\x8f\xa6\x6b\x01\x80\xd3\x8a\x26\xc6\xd0\x5f\x53\x23\x54\x02\x0b\x00\xb8\x7c\xf9\xb2\x00\x90\x3a\xa9\xbc\xaf\xc3\x07\x6f\xb9\x54\xfd\x6a\x31\x64\x83\xea\x4d\x56\xc5\x1d\xfd\x1b\x4a\x91\x70\xe8\x12\xa2\x04\x45\xea\xa3\xd0\x09\x2f\x65\xd7\xa4\x83\xe6\x12\x02\x90\x0c\xe2\x9d\xb1\x95\xe7\x7f\xbd\xa9\xf1\xcb\x58\x68\xe8\x07\xb8\x34\x59\xf4\x31\x61\x11\x6f\x1d\xd7\xdf\x17\xb0\xf1\x44\x2f\x03\xcc\x03\xcd\x05\x93\xc5\x6b\x4e\x7e\xf5\x6b\xd3\x40\xb7\x69\x06\x1b\x2e\xfa\x2c\x69\xb2\xe1\xb3\x4d\xe8\x2c\x8b\x89\xf2\xc4\x26\xd0\x6c\xf4\x98\xda\xca\x2b\x4c\xa8\x35\x64\x6b\x2b\x8f\x20\x32\x59\x89\xc9\xfc\xf1\x7d\x9f\xc7\x07\x51\xa9\xe4\x31\xb0\x72\x7d\xd5\xdb\x55\x10\xac\x12\xb9\xcd\x71\x09\xd3\x7f\x34\xb7\x3b\x19\xb4\xe9\xb1\x9f\x4a\xb1\xfb\xed\x09\x56\x1b\x5f\xf2\x0f\x22\x3a\x3a\xc0\x07\xa0\x5b\x1c\x3a\xbd\x74\xce\xba\xf8\x9f\xa5\xa4\x92\x71\x6b\xb3\x1a\x6c\xd2\x58\x2f\x33\x35\x96\x6a\xf4\xe1\x87\x1f\x56\x0d\x79\x00\xca\x4c\x46\x27\x7a\x0d\x35\x8b\x77\x81\xb8\x7a\x49\x52\x92\xd8\xc0\x39\x99\xc4\x40\x68\x95\x48\xe2\x28\xaf\xa6\x7b\x76\x87\xc4\xe5\x0d\x6b\xa7\x5f\xd8\xb9\xf8\x13\x11\xbb\x27\xf4\xd4\x27\x20\x72\x4f\x7e\xfc\xe3\x1f\xdb\x4c\x35\x53\x5f\x6d\x13\xd9\x06\xeb\xb2\x08\x54\x72\x4d\x00\x5b\xd2\x07\x82\x4b\x5b\xe4\xa1\xcb\x25\x08\x28\x9d\xb6\x32\x57\x1d\x2a\xc4\x28\x4d\xb4\x5c\x17\xae\x74\x92\xbb\xea\xd8\x04\x88\x4d\x88\xd8\xe8\xa7\x02\xde\x24\xd8\x92\xfb\xb1\xb1\x31\x48\x29\xd5\x27\x1d\x3c\x00\xbe\x27\x58\xb9\xbf\xed\x8d\x33\x65\xd9\xab\x88\x7d\x6a\x81\x53\x0b\x66\xd0\xf8\x87\x96\xa4\x5e\x2f\x8a\x79\x78\xb5\x56\x61\x33\x22\xc1\xa1\x3e\xea\x6d\xb3\x6a\x4d\xcf\x9c\xf6\xc7\xa6\x90\x28\xbc\xa0\xc0\x36\xc6\xb8\x84\x8b\xa9\x21\x00\xc0\x43\x0f\x3d\x94\x3e\x54\x45\x46\xfe\xde\x0d\x93\xfd\xbf\xc7\x25\xca\x3d\x56\x83\xe6\xf3\x31\x92\xa7\x5d\xf4\xe4\x25\xb7\x9a\xb0\x50\xbf\x0b\x7d\xc1\xd4\x73\xbb\x16\x7f\xd8\x2c\x8a\x8b\x60\xa9\x17\xd6\x5a\xf1\x39\x0d\xa2\xdd\x6e\xe3\xcd\x37\xdf\xb4\xf5\x4b\x67\x76\x96\x30\xb5\xf2\x42\xc3\x45\x93\xad\x2d\x7d\x72\x98\xe0\x29\x5d\x26\x5a\x6c\x16\x42\x9e\xc4\x0d\x7f\x94\x4e\x4a\x83\x89\x16\x05\xaf\xe3\xb5\x0d\x56\x97\x15\x47\x69\xca\xc2\x4d\x69\xb1\xf5\x01\x86\x3a\x2e\x58\x3a\x06\x12\xd8\x1d\x3b\x76\x20\xde\x94\x95\x7c\x0f\x06\x80\x07\x48\x3f\x36\x13\xe2\x71\xad\x7d\xa2\x43\xff\x8b\xfd\x18\x99\xc0\x44\x49\xca\xee\x9a\xa2\x1e\xec\x67\x00\x8a\x21\xaf\xa1\xbb\xbd\x81\x2b\x78\x4b\x72\x8d\x1d\x1b\x1c\xcd\x4b\x7e\x6d\x03\x53\x4f\x94\x51\x7a\x3e\xbd\x4e\x1e\xde\xe0\xe0\xa0\xba\xf7\x00\xf8\x5c\xa2\x76\xe0\x5a\xff\xdd\x1b\x56\xbd\x23\x4c\xdb\xa7\x11\x75\xb4\x6b\x9a\xa5\xdd\x93\xf4\x05\x63\x9a\xbd\x41\xce\xd5\xe8\x6e\x1b\x8b\x7e\xd7\x0a\xb2\xf9\xda\xd6\xe5\x9f\x4d\x0d\xb4\x4f\xa1\x7b\xdc\x9f\xb2\x34\x5a\x8c\x31\xb1\xb6\xb6\x26\xfe\xe6\x6f\xfe\x46\x5c\xbd\x7a\x95\xf6\x97\xf6\xcf\x96\x9f\x65\xf6\xd3\x64\xd5\x58\x70\x0b\x1b\x93\x76\x30\x59\x13\xfa\x9f\x4d\x90\x50\xfc\x26\x13\xd5\xd4\x1f\xdb\xe4\xa1\xc9\x34\xa6\xa8\x75\x41\xf1\x99\xe8\xb4\x29\x32\xd7\xf3\xc9\x1a\xcf\xeb\x11\xf4\x59\x74\xf6\xf0\x35\xb6\x38\x10\x5f\x73\xc9\xa4\x17\x70\x19\xc4\x9b\x0c\x62\x01\xa1\xac\x0a\xb5\x72\x28\x93\x8f\x63\x4b\xc4\xfb\xc0\x12\xeb\x42\xc6\x31\x3e\x19\xaf\xd2\xaa\x79\x12\xb7\xc1\x24\xa4\x94\x49\x7c\x43\xb5\x3d\x32\x32\x62\xb3\x2c\x6c\xee\x48\x1e\x0b\x2c\xf5\xdc\x6d\x8c\x34\x99\x39\xa6\xc1\x6b\x1a\x88\xfc\xa1\x87\x1e\xe2\xf1\x67\x1b\x23\xc1\x21\x51\xa9\xaf\x7a\x9b\xf7\x4f\xf5\x3d\xc4\xc1\xbc\xb4\x29\xa6\x47\x8c\x4c\xa9\x9b\x2f\x35\x73\x44\xea\xf0\xa4\xaa\x88\x76\x86\xbe\x76\x6a\xb4\xf9\xb2\x64\x98\x42\xfa\x3c\x8d\x16\x00\xb1\xb6\xb6\x26\x9e\x7e\xfa\x69\xbd\x9a\x8b\x17\x36\xad\x6d\x1b\x80\x36\xeb\xc2\x24\xf5\xa1\xe5\xe9\xbf\x79\x27\xa0\xad\x1d\x13\x3e\x1b\x5d\x36\x4b\x4a\xd5\xcf\x23\xb8\x28\xbc\x7e\x4f\x85\x0e\x0c\xbf\xb4\x6d\x17\x2f\x4d\x89\xf6\x23\x8f\x80\xa7\xb0\x74\x92\x99\x70\x64\x95\x25\x96\x47\xc8\x20\x96\xca\xe1\x9c\x60\x68\xc7\x7b\x0d\xb4\x55\x14\xa6\xa4\x84\xbe\xc5\x3c\xaa\x9f\x38\xe4\x5d\xb5\x28\x93\xd5\xc5\xc4\x32\x11\x8b\x7d\xc1\x8c\xde\x9e\xba\x26\x34\xd9\xc6\x83\xed\x3a\xd7\x73\x76\x69\x39\x53\xe3\xae\x01\x00\x00\x7c\xe7\xce\x9d\x89\xb5\xc1\x18\xf3\xa4\x94\x65\x2e\x51\xdd\x3f\x55\xb9\xa7\xd6\xf2\x0e\x01\x48\xcc\x33\x00\x48\x40\xb7\xbf\xdd\x2d\x51\xf9\x91\x60\xd5\x36\x7c\xc9\x9f\x8b\x46\xf4\x00\x00\x20\x00\x49\x44\x41\x54\xee\xc6\x0c\xa6\x7d\xfc\x95\x75\x7d\x93\x98\xa9\x12\x4c\x4a\x48\x48\x4c\x55\xdb\x13\xaf\x6d\x5d\x7e\xaa\xed\xc9\x2b\x52\x4a\xf5\x65\x35\xb5\x82\x12\x48\x29\xc5\xc5\x8b\x17\x31\x31\x31\x41\xfb\x42\xfb\x6c\x9a\xe0\x26\x49\x4e\xf9\xa0\xc3\x66\x0d\x7c\x9b\xc0\xa2\x79\x59\xf5\x4d\xd7\x36\x81\xb0\x1e\xfc\xb4\xae\x89\x3f\xd0\xca\x5c\xda\xdc\x04\x4f\xaf\x5d\xca\xc9\x66\x1d\xe8\xe5\xd4\x8a\x32\xd1\xe4\x12\xd2\x36\x58\x5b\x1f\x38\x00\x3c\xf7\xdc\x73\x42\x77\xbf\xa5\x94\x42\x42\x06\xb3\x95\xce\xd5\x4e\x41\x36\x21\x59\xb2\x22\xc2\xba\x4b\x7e\x51\xc0\x9f\xd1\x00\xa9\x4c\x1d\xe0\xaf\xf6\x6f\x24\x5e\x8d\x8c\x3e\x96\x7d\xb9\xb6\x76\x01\x80\xfa\xd2\x9d\x8d\x17\xb4\x9f\xae\xe7\x68\xb3\x80\xf5\x79\x20\x28\x22\x53\x03\xb6\x87\x6c\x4b\xe2\xc8\x91\x23\x28\x14\x0a\xaa\xae\xc7\x18\x2b\xd7\x57\xbd\xad\xfb\xa6\x2a\x0f\x32\x30\x1f\x40\x22\x38\x99\x12\xa0\x2a\x53\x99\x61\xac\xeb\xeb\x21\x25\x69\x91\x92\x34\x32\x25\x79\x22\x84\xab\x45\xb1\x74\x62\x6b\xe3\xa9\xb9\x4a\x70\x01\xd1\xae\xd0\xb9\xf8\x24\xeb\x96\xfa\x74\xc1\xfb\xef\xbf\x8f\xe7\x9f\x7f\x5e\xf5\xc9\x36\x88\x6c\x12\xda\x65\x81\x98\xe0\x4d\x65\x26\x8d\x6e\x83\x37\x3d\x4c\x9b\xf0\xb2\xd1\x41\x07\x91\xcd\x0d\xd0\x93\x4d\x58\x66\x4d\x2c\x3d\x3f\xcb\xea\xb1\xe1\xa5\x34\x65\x4d\x76\x3d\x9f\xd2\x91\x27\xe5\x19\xdb\x4e\x25\x30\x36\x36\xc6\x35\x37\x45\x20\x3e\xdb\x74\x7a\xa0\x7d\x69\xbe\xaf\x73\x31\xb2\x38\xba\x6e\x4a\x6a\xb3\x62\x9c\x64\xb2\x8d\x54\x2f\xe8\xae\xbd\x28\x77\x45\x32\x60\xb1\x2f\xb8\x74\xad\xd6\xb9\x14\xb7\x93\x08\x0f\xc3\xaa\x60\xcf\xa4\x27\x7d\xb2\xdd\xbb\xc6\xb8\xd3\x14\x77\x99\x7a\x56\xa2\x86\x87\x87\x55\x1d\x4f\x4a\x59\x66\x12\xd5\xfd\x53\xfd\xf7\xd4\xd6\xbc\x43\xa9\x08\xa8\x4a\x92\xfe\x76\x8d\x34\x7b\x9c\x07\xdd\x0d\x31\xb2\xcb\x66\x01\x29\xce\x0d\xad\xbe\x76\x61\x70\xf5\x0d\xb0\xe4\xa5\xb5\xd4\x0a\x4a\x10\x04\x78\xe1\x85\x17\xb0\xb6\xb6\x96\xd7\x12\xc8\x53\xae\xf3\xc0\xe6\x8e\xd8\xcc\x68\x9b\xcb\x67\x6b\xcb\xa6\x15\x5c\x1a\xc2\xd6\x9e\x4b\xc3\xd0\x64\x72\x31\x6c\x74\xd2\xb1\x93\x35\x68\x6d\xc2\xda\x24\x80\x6c\xfc\xd2\x85\xaa\xc9\xda\xc8\x12\x4e\xa6\x72\xda\x57\xab\xfb\x74\xed\xda\xb5\xe4\x84\x2e\xed\x4c\xd3\xf6\x72\x29\x9c\x3b\x37\xbc\xfa\x5a\xc8\xd0\x46\x62\x35\xb0\xee\x66\x2f\x65\x79\x40\x59\x15\x74\x57\x34\x10\x1d\x75\x89\x58\x8f\x32\x84\x1c\xed\x73\x43\xab\xaf\x34\xfc\x60\x8e\x31\xd6\x52\x87\xfc\xc4\xed\x9a\xe8\x37\xf5\x33\x8f\x35\xa5\x52\x4f\xbf\x6d\x26\xab\xe9\xc1\x67\x99\x9d\x1c\x48\x7c\x2c\x0f\xb1\xb5\x51\x6b\x15\xc6\xf7\x4e\xf7\xdd\x57\x90\xcc\x67\x7a\x04\x54\x6a\x8c\x53\xbf\xb1\x14\xd6\x57\xa5\x7a\x16\x56\xd0\xcd\x60\xe9\x0d\xfd\x98\xab\x04\x57\x5e\xdf\xd2\x78\xa6\x5d\x10\x93\x52\xca\xd4\x91\x7f\x52\xca\x40\x08\x21\x7e\xf1\x8b\x5f\x20\xfe\x98\x30\x75\xbd\x6c\x83\xc2\x24\x95\x4d\xfc\x32\x0d\x5e\xbd\x3c\xcb\x3d\xc8\x03\xe3\x6a\x53\xe5\xd1\xfa\xa6\x72\xdb\x04\x34\x25\x7d\x80\x51\x01\x69\x1a\x80\x14\xb7\x6b\xcc\xc0\x50\x66\x9b\xf8\x79\x71\xb9\xcc\x72\x9a\x5c\x16\x1c\x1d\xf3\xb4\xdf\x3d\x29\x0c\x43\xb5\xaa\xa2\x4e\x4f\x6f\x09\xc8\xc6\x99\x91\xd5\x13\x53\x03\xed\xb3\xdd\x93\xfa\x35\x37\x5d\xed\xd9\x48\xc6\x3c\x5d\x38\x20\x9e\x3b\x24\xa6\xfb\xdb\xe7\x4f\x8e\xaf\xfc\x4a\x46\x9f\x79\x68\xc5\xdf\x26\x0e\xa4\x94\x98\x9b\x9b\x43\xa3\xd1\xa0\x7d\xb3\x59\x9f\xa6\xbe\x41\xbb\xb6\x0a\x4e\x13\x63\xf4\x64\x32\xd3\x6d\x29\xd9\xa7\x1f\xff\xf9\x00\x2a\x7b\x66\x2a\x47\x93\xd8\x46\x2a\xc9\x48\xbe\xa6\xc2\x19\x89\x83\x12\x25\x96\x78\x75\x3d\x66\x1d\xd4\xce\xd1\x38\x3f\xe0\xb2\xfd\xc6\x96\xe5\x5f\xcc\xf5\x77\x2e\x00\x50\x1f\x7f\x4e\x9d\x48\xfe\xee\xbb\xef\xe2\xfc\xf9\xf3\xb4\x2f\x2e\xab\x0b\xb0\x0f\x44\x97\x8b\xe0\xd2\x54\xa6\x7b\x9d\x0e\x3a\x69\xb2\x84\x35\x15\x06\xae\x67\x48\x07\x88\x09\x0f\x90\xa6\x4f\xdd\x9b\x04\x84\xe9\xd7\x64\x25\x98\xb4\xb5\xc9\x92\x30\xd1\x6c\xd2\x90\x26\xe1\xee\xb2\x0a\x6c\xcf\xcd\x26\xac\x6d\x7d\xa2\x29\xf5\xfc\x7e\xfd\xeb\x5f\x27\x79\xf1\x44\x6e\x01\x68\x2c\x96\x83\x4b\x2f\xee\x58\xfa\xd1\x8a\x1f\xce\x01\xe8\x5d\x07\x48\x6d\x21\x45\x37\xfe\xc7\x34\x4b\x24\x8e\xe5\x35\x7c\x31\xf3\xab\x1d\x4b\x8f\x2f\x97\xc3\x49\xc6\xd8\x52\x6c\x71\x04\xf1\x99\xa4\xe2\xbb\xdf\xfd\xae\x88\xbf\x4b\x6c\x52\x12\x26\x01\x41\xc7\xbd\x6b\x3c\x25\xb8\x4c\xa6\xac\x42\x62\xd3\x28\x26\xe6\xe1\xf6\xdb\x6f\x4f\xf6\xe9\x23\x16\x1a\xd5\xb5\xc2\xf0\x9e\xe9\xbe\x4f\x17\x24\x2a\x5d\x26\x29\xd1\xda\xbb\xad\x96\xa9\x40\xa8\x1e\xb7\x48\x09\x0b\xc3\xda\x4b\xcc\xd0\x8b\x1b\xd7\xde\x3a\x3d\xb2\xfa\xb2\x64\xa9\xb3\x42\xd5\x76\x72\x4c\x4d\x4d\xe1\xb9\xe7\x9e\xb3\x4d\x48\xa0\x97\x99\xb6\x89\x0b\x4b\x9e\x8e\xc7\x66\x91\xa8\x72\x13\x7e\xd3\x40\x37\xe1\x77\x69\x0b\xd7\x64\xce\x52\x10\xb6\x72\xdb\x64\xd5\x93\xab\x1f\x74\x0c\xb9\xc6\x93\x69\x20\x9b\x04\x91\x6d\x90\xeb\x79\x2e\x2b\x42\xa7\xcf\x35\xc1\x74\xba\x4c\xd7\x3a\x1e\x5c\xbd\x7a\x55\x3f\x45\xbd\xcd\x18\x6b\x32\xc6\x96\xc0\xb0\xf0\x7e\xbd\xf5\xeb\xe7\x76\x2f\x7e\xaf\xe1\x87\x0b\x49\x2d\xb5\x9a\x12\xef\xcf\xd0\x07\x77\x4a\x51\xc6\x66\xca\x8a\x1f\x2e\x3c\xbf\x6b\xe1\x5f\xdf\x1b\x6c\xbd\x81\xd8\x0d\x97\x52\x36\xd5\x9e\x24\x00\xa8\xd7\xeb\x36\x25\x60\xea\x47\x1e\x65\x68\xb4\xb0\x5c\x03\x94\x22\x33\x49\x66\x00\xd1\xc1\xc3\x37\xdc\x70\x03\xdd\xa7\x5f\xde\x31\x57\x3e\x3c\xd4\x2c\xa6\xf7\x6d\xe8\xef\x97\x98\x4f\x22\xb6\xec\xac\x8b\x6f\x69\x7c\x84\x01\x2d\x2f\x5c\x7a\x7d\xcb\xf2\x2f\xd6\x3c\x31\x85\xc8\xda\x50\x27\x78\x05\x88\xa4\xbf\x78\xfd\xf5\xd7\x15\xed\xa6\x49\x6d\x32\x43\x5d\x70\x59\x93\x83\x6a\x3f\x9b\xb9\x6b\x13\x52\x26\x0d\x6c\xd2\xbc\x3a\x0d\xae\xc9\x61\xc2\xa3\xe7\xd1\x7e\xba\x70\xdb\x84\x8a\x0d\xb7\x4b\x48\x99\x92\x49\x28\xe4\x49\xae\xc9\x6d\x9a\x1c\xa6\x3e\x09\xf4\xd2\xec\x52\x20\xa9\xfb\xf7\xdf\x7f\x1f\xf1\xfb\x4e\x02\xb1\xab\x22\xa5\x6c\x00\x98\x93\x1c\x53\xa7\x47\x9a\xbf\x7a\x6a\xef\xdc\x3f\x4d\x57\xdb\x97\x24\x4b\x2f\x29\xb2\xee\xc1\x33\x69\xf7\x1d\x80\x80\xc4\x74\xb5\x7d\xf1\xe7\x7b\xe6\xff\xe9\xd4\x68\xf3\x57\x92\x61\x2a\x5e\x2d\x4c\x82\xfe\x8c\x31\x71\xee\xdc\x39\x2c\x2c\x2c\xd0\xb1\x69\xeb\x93\xe9\x97\x26\x9b\x30\x11\xf4\xe8\x40\xbd\x31\x75\x6d\x6a\x2c\x35\xc0\x8f\x1c\x39\x02\xcf\xf3\xf4\x97\xd9\xca\xe5\x80\xd7\xf7\xcc\xf4\xdd\x5b\x0c\x59\x5d\x37\xc3\xba\x3b\x6c\x15\xe3\x34\xcb\x83\xf5\x00\x75\x7d\xbe\x58\x48\xc8\xc4\x7c\x8b\xef\x21\x71\x76\x64\xf5\x95\xab\xb5\xf6\x29\xb0\x24\x18\x9a\x5a\x45\x79\xe3\x8d\x37\x30\x31\x31\x91\x35\x60\xf5\x3e\x66\x09\x54\x13\x8c\x4d\x9b\xd9\x5c\x0d\xd3\x03\xce\x12\x6a\x54\x78\x98\xb4\x8b\x29\xdf\x65\x51\x98\xda\xb7\xe1\x31\x95\xb9\xb4\xb3\xcb\xc4\x77\xc1\x98\xc6\x20\x15\xdc\x54\x88\x53\x7a\x6c\xda\xd3\x84\x37\xab\x4d\xda\xbe\x09\x6f\x82\x4b\x08\x01\xce\xb9\x40\x14\x20\x6d\x4a\x29\x97\x18\x63\x9e\xe0\xf0\x2e\x0c\xb5\x5e\x9e\xab\x04\x73\x87\xaf\x54\xef\xd8\x3d\xdb\x77\xe3\xc0\x5a\x61\x90\x4b\xc6\x99\x7e\x92\x76\x6c\x45\x0b\x26\xc5\x52\x39\x98\x39\x37\xb4\xfa\xd6\xc9\xf1\x95\x97\xe6\x2b\xc1\x39\xd9\x7d\x75\x62\x09\x51\x8c\xa3\x0d\x40\x48\x29\xf1\xda\x6b\xaf\x51\xba\x5c\x34\x5f\x2f\x8c\x00\xc0\x3d\xf4\x0e\x1a\xdb\xe4\xb1\x0d\x46\x31\x34\x34\xa4\xce\x1f\x50\x47\xbf\x57\xc6\x96\xfd\xdd\x63\xcb\xfe\x51\x06\xc6\x53\xc7\xfa\x25\xc2\x40\xdb\xf0\x92\xec\x9c\x63\xd0\x5f\xf6\xd1\x3e\x22\x0f\x16\x9f\x62\xae\x7f\x06\x41\x32\x89\xe5\x52\x38\xf3\xc6\xe6\xc6\x73\x01\x97\x33\x6a\xbf\x06\x8b\xbe\x54\x1e\x00\x10\x33\x33\x33\x78\xe3\x8d\x37\x5c\x0c\xd1\x93\x6d\x10\x53\x58\x9b\x65\x40\xf3\x4c\x96\x4c\x16\x6e\x3d\xdf\x96\x5c\x34\x9a\xac\x0d\x8a\xcf\xd5\xa7\xbc\x34\x28\x18\x3a\x36\x4c\x79\xae\x49\x4c\x15\x92\x8d\xa7\x36\x3c\x3a\x8c\x4b\x50\xd9\x9e\x53\x96\x70\xb3\x59\x5b\xd6\xbc\xbf\xfc\xcb\xbf\x14\x8f\x3c\xf2\x08\xe2\xa0\x65\x0b\x91\x4b\xc1\x19\x63\x10\x90\xc1\x42\x25\x68\x3d\xbf\x6b\x71\xfa\xe4\xf8\xca\xeb\x5b\x17\x4a\xbb\x47\x1b\xfe\xd6\x0d\x2d\x6f\xd0\x0f\x58\x59\x02\xa2\x53\x90\xed\x85\xbe\x60\x6e\xba\xda\xbe\xf4\xfe\xc6\xd6\xd9\x85\x72\x70\x39\xe4\x98\x91\x90\x53\xf1\x57\x05\x17\x62\x61\xd4\x8a\xdb\x17\xaf\xbe\xfa\x2a\xe6\xe7\xe7\x6d\x63\xd4\x94\x4c\xbc\xce\x52\x48\x49\xa2\xaf\xd5\xbb\x18\x62\x14\x1a\x9b\x36\x6d\x4a\x9d\xee\xc5\x18\x2b\x33\x89\xca\x47\x66\x2b\xb7\x97\x03\x3e\xde\xf3\xfd\x13\x68\xaf\xc5\xab\x35\x6a\xb5\x31\x06\xe9\x38\x11\xd3\xad\x0b\xba\x8f\x23\x16\x28\xa7\x46\x9b\x2f\xce\x55\x3a\x17\xc0\xb0\xc0\xc0\x52\x1f\x4e\x0a\xc3\x50\x7c\xef\x7b\xdf\xb3\x3d\x78\x97\x60\x34\x4d\x02\x13\x0f\x68\x32\x4d\x02\x5b\x1b\xa6\x76\xd6\xf3\xe0\x4d\xed\xae\xb7\x4d\xda\x8e\x4b\x79\xd0\xfa\xeb\xe1\x8b\x4e\x5b\x96\x40\xb2\x59\xbc\x26\x3a\xf2\xf0\xc8\x65\x81\xe4\xed\x83\x6d\x7e\x58\x85\xd5\xf4\xf4\x34\x46\x46\x46\x02\x00\x60\xd1\x77\x6a\x17\x10\xef\xed\x00\xd0\xea\x70\xd1\x98\xee\x6f\xcf\xcd\xf6\x77\xce\x15\x04\xab\xfa\x21\xeb\xf7\x04\xf3\x25\x80\x90\xcb\x76\xbb\x20\x57\x42\x2e\x1b\x12\x68\x48\xc8\x05\xc6\xd8\x02\x24\x16\x10\x59\xd4\x4b\x9a\x72\x0c\x1a\x8d\x06\x5e\x7b\xed\x35\x9b\x25\x65\xeb\x83\xab\xbf\xb6\xfb\x04\x87\xfa\xe8\xb4\xed\x01\x65\x4d\x1c\x7e\xf0\xe0\x41\x25\x08\x3c\xe5\xa6\xd4\x5a\xde\xe8\xe6\x45\xff\x0e\x26\x99\x9f\x3e\xc9\x48\x59\x0f\xfa\x2e\xae\xae\x60\xa1\xc1\x65\x53\x04\xa4\x5b\x4d\x62\xa5\x14\xce\x9c\x1c\x5b\x79\x41\x44\x2e\xca\x82\x94\x32\x65\x6d\xcc\xcd\xcd\xe9\xfd\xb0\xf5\xcb\xa5\xbd\x4d\x83\xc5\xe5\xca\xd9\x84\x91\xcb\xbc\xa5\xb0\x36\x7a\x5d\x78\xe9\x40\x06\xb2\xdb\xd4\xeb\x99\xca\x4c\x30\xd4\x2a\x70\x09\x1b\x13\x2c\x08\x2c\x2c\x30\xa6\xfe\x98\x60\xa9\x75\x67\xa2\xdb\xc6\x5b\x1b\x7d\x79\x60\x4d\x29\x05\xfb\xfd\xef\x7f\x5f\xfc\xce\xef\xfc\x0e\x1f\x1d\x1d\x0d\xb4\x80\xa9\x40\x2c\x38\x10\x59\xc6\x0b\x12\xa8\x76\xb8\x28\x07\x05\xe6\x2b\x1c\xf1\x66\xae\x36\x63\xac\x09\xa0\xc9\xc0\x1a\x31\x7c\x43\x4a\xd9\x64\xda\x07\xb3\x9b\xcd\x26\xfe\xf1\x1f\xff\xd1\x35\xf1\x5d\xd6\x60\x1e\x8b\xd1\xf8\x9b\xbc\x55\x67\x60\x00\x25\xc4\xf8\x60\xc6\xc6\xc6\xd4\x5b\xb0\x1c\x80\x2f\xa5\x2c\x6f\x5b\x28\x1d\xd8\xb0\xea\x1d\x48\x9b\x0f\x32\x3e\x84\x58\xc6\x71\x8a\xe8\xe0\x92\x64\x47\x1c\x93\xa9\x3d\xfb\x6a\x5b\xae\xfa\xf0\x92\xda\x3c\xa3\x2a\x48\x40\x9c\x1e\x59\x7d\x71\xa1\x12\x5c\x92\x90\x0b\x90\x91\x8b\x12\x9b\x87\x62\x65\x65\x05\x3f\xfd\xe9\x4f\x4d\xfd\xc9\x62\x96\x2d\x99\x06\xb1\x2b\xb9\xf8\x4a\xdb\x33\x4d\xc2\x3c\xb4\x64\x69\xd1\x3c\x38\xf2\x08\x0c\x3d\xcf\x56\x66\x6a\xdf\x04\x9b\xd7\xea\x33\xe1\x73\x59\x64\x36\x8d\x4b\xfb\x67\xeb\x93\x0d\xd6\x54\x9e\xc7\x52\xe1\x4f\x3c\xf1\x04\xee\xbb\xef\x3e\x8c\x8c\x8c\x04\xb1\xb2\x54\x71\xb7\x36\xa2\xf8\xc4\x12\xba\xe7\x69\xe8\xaf\xc6\x0b\xc6\x58\x3b\x8e\x5f\xb4\x62\x65\xd8\x92\x52\x26\x9b\xbd\x00\x04\x2b\x2b\x2b\x4a\x68\x64\x29\xc0\x2c\x4b\xd4\xa5\x08\x60\x82\xcd\xfa\xae\x8a\x9e\x7a\x1a\xbb\xf5\xd6\x5b\xf9\xc0\xc0\x80\xaa\xe7\x01\xf0\x8b\x82\x57\x77\xcd\xf6\x7d\xbc\x28\x58\x95\xe9\xb1\x0a\x68\xa7\x1b\xa1\x7b\x52\x57\xf7\x03\x6c\xdd\x65\x29\xc6\xc8\xb5\x16\xf4\x50\x87\xff\x34\x22\x6b\xe3\x57\xb2\xeb\xa2\x34\x10\x49\xe9\x00\x80\xf8\xd6\xb7\xbe\x65\x1b\xa0\xa6\x7e\x52\x06\xda\xea\x50\x18\xd7\xe4\x33\x69\x30\x5a\x66\x83\x73\x4d\x78\xd7\xc4\xc8\x6b\x6d\xb8\x06\x91\x0b\x87\x89\x5e\xd3\x00\x73\x69\x71\x0a\xeb\xaa\x67\xa2\xd7\x96\x97\x35\x76\x5d\xb0\xb6\x6b\x75\x6f\x52\x2c\x59\x5a\x1d\xcd\x66\x93\xff\xcb\xbf\xfc\x8b\x78\xe8\xa1\x87\xf8\xc8\xc8\x88\xda\x6b\x91\xb8\x2b\xe8\x7e\xa8\xc9\x53\x31\x42\x00\x88\x57\x65\x04\xba\x9f\x7e\x0c\xe2\xeb\x00\x80\x10\x42\x88\xe5\xe5\x65\x7c\xe7\x3b\xdf\xc9\x52\x80\x26\xa1\x6a\x1b\x1b\x36\x58\xa3\x22\xf0\x48\x86\x0d\x99\xb1\xc1\xd1\xd1\x51\x1d\xd6\x03\x50\x1e\x6c\x7a\xe3\x63\xcb\xc5\xdb\x10\x9f\x5c\x1e\x31\x22\xfa\x95\x7a\x94\x34\xca\xd0\x0b\x53\x1b\xba\xa2\x57\x4f\xf4\x78\x48\xca\xa5\x11\x17\x86\x56\x5f\x9b\xab\x74\x2e\xa2\xfb\x59\x83\xe4\xb0\xe1\x78\xe7\x9c\x89\x6e\x9d\xb1\x2e\x09\x6b\xd3\x6c\xae\x7a\xa6\xc9\x6e\xd2\xa8\x94\x2e\xd7\x80\x37\xd1\x6f\x4a\x74\x70\xbb\x34\xb7\xfe\xeb\xb2\x0e\x5c\xbc\xb3\x4d\x72\xca\x8b\x3c\xb0\x59\x7d\x73\xc1\xb8\x9e\x5d\x9e\xb6\x5d\xfd\x33\x69\x64\x18\xca\x4c\x6d\xea\xf9\xfc\xf1\xc7\x1f\xc7\xea\xea\xaa\x78\xf8\xe1\x87\xa1\x36\x6a\x21\x12\x04\x1c\x91\x25\x91\x58\xed\xf1\x78\x57\x74\xf7\xfc\x69\x1f\xcc\x76\x3d\x37\x4a\xa7\x4d\x19\xb8\x14\x86\x4b\x18\x71\x3d\xc6\xe1\x1a\xa0\x46\x64\xf1\x47\x67\xd4\x40\xf5\x01\x94\xb7\xcd\x97\x0f\xf7\x75\x0a\x9b\x63\xa7\x04\xc9\xd7\xaa\x80\xe4\x3a\x79\xb1\xd5\x78\xbe\x46\x77\x55\x25\xca\xd6\x23\x1d\xd1\x75\xd3\x0f\x17\x4e\x8d\x36\x5f\x91\x3c\x0a\x16\x49\x29\x9b\xd0\xac\x8d\x33\x67\xce\xe8\x7d\xb0\x69\x09\xca\x94\x3c\x03\x37\x8f\xe6\x32\xb5\x97\x67\xd0\x51\x38\xda\xae\x69\x40\xeb\xb0\x26\xe1\x41\xf1\xba\x12\xe5\x97\xcd\xb2\xb0\x59\x05\x26\x7a\x69\x9e\x8e\x2f\xaf\x55\x95\x25\xd8\xb3\xac\x1b\x9b\x40\x77\xf5\xc3\x25\xa0\xf5\x5f\xdb\x64\x4b\xb5\x13\xef\xe4\xe4\x3f\xfd\xe9\x4f\x31\x31\x31\x21\x1e\x79\xe4\x11\x30\xc6\x44\x7c\xec\x44\x72\xf8\x8f\x76\x10\x10\x18\x63\x42\xbf\x06\x80\x77\xde\x79\x07\x27\x4e\x9c\x70\xd1\xe9\x1a\x37\xb6\x44\x79\xe7\x52\x2e\x49\x3f\x4d\x16\x87\x4d\x13\xa4\x1e\xf6\xcd\x37\xdf\xac\x0f\xb4\xe8\xa8\xb4\x90\x55\x77\xcc\x97\xef\xe4\x12\x3e\xd0\xdd\x2a\x4b\xf7\x79\xc5\x6b\x29\xa9\x3b\x3d\xa5\x96\x61\x13\xd8\xee\x57\xe7\xaf\x6c\x68\x9f\x9c\xaa\xb6\x2f\x40\x3b\x37\x14\xf1\xeb\xf2\x2b\x2b\x2b\x78\xf9\xe5\x97\x5d\x56\x80\x9e\x6c\x8c\xd6\xfb\x9e\x35\xc8\x4d\x75\x8d\xcc\x26\x65\xfa\x64\xb4\x69\x3b\xd3\xaf\x9e\x6c\x13\x26\x8b\x16\x1d\xde\xd5\x8e\x4b\xc3\xdb\x26\xa8\x4b\x38\xdb\x60\x8d\x63\xcc\xd0\xbe\x49\x30\x67\x69\x55\x9a\x47\xad\x21\x9b\xe6\x76\xd1\xa9\xf2\xf2\xc2\x02\x80\x88\x8f\x71\xc0\xa3\x8f\x3e\x2a\xee\xb8\xe3\x0e\x3e\x34\x34\x24\xb6\x6c\xd9\x92\x94\xab\x77\x53\x94\xc0\x00\x80\xd9\xd9\x59\x5c\xb9\x72\x05\x2f\xbe\xf8\xa2\x6b\x72\x53\x45\x61\xa2\xc1\xd4\x5f\xd3\x78\x00\xc9\x33\xc2\xd2\x7d\x1c\xae\x01\x97\x42\xbc\x7d\xfb\x76\x45\x6c\x24\x38\x24\xfc\xfa\xaa\x37\x3a\xbc\x52\x3c\xac\x26\x39\x43\x5a\x68\xa4\x56\x4a\xe2\x13\x9d\xd3\x79\x88\x5d\x14\xcd\x8b\x51\x01\xd3\xf8\xbe\xe5\xc9\xc6\xe9\x91\xe6\x6b\x41\x01\x73\xf1\x2a\x4a\xb2\xfc\xca\x18\x13\x67\xcf\x9e\x75\x31\x42\xcf\xe7\x04\xc6\x65\xa2\xd9\x18\x6e\x62\xbc\x6d\x60\xc3\x92\x6f\x1a\xc8\x36\xed\x4e\x07\x49\xa6\x66\x20\xf5\xb3\x04\x01\xa5\x8f\xf6\x91\xe2\x31\xd1\x9c\xa5\xe1\x69\x1b\x26\x61\x07\x03\x1c\x6d\xd7\x54\xae\x97\xb9\x04\xae\x89\x2e\x13\x6f\x4d\xf8\x6d\xcf\xcc\x84\xd7\x7a\xff\xe2\x8b\x2f\x8a\x42\xa1\xc0\x8b\xc5\x22\x00\x60\x60\x60\x00\x07\x0f\x1e\xc4\x33\xcf\x3c\x23\xca\xe5\x32\x6f\xb5\x5a\xa2\x5c\x2e\xf3\x20\x08\x10\x04\x81\xa9\x5f\x59\xfd\x35\x8d\x39\x13\x1c\xa5\xdb\x95\x92\xb1\xa6\x5c\x15\xda\x80\x6d\x92\x24\x04\x8d\x8c\x8c\xe8\xc8\x7c\x00\x95\xad\x0b\xa5\x43\xa5\x80\x8f\xda\x96\x51\x99\xe1\x26\xb5\x77\x23\xe5\xa2\x90\x4a\xf1\xe6\xb1\x99\xfe\xf6\xc4\xe5\x0d\x6b\xa7\x10\x2f\x4f\x41\x7b\x65\x7e\x65\x65\x05\x2f\xbd\xf4\x52\x5e\x0b\x41\xef\x9b\xde\x17\x97\x85\x60\x9b\x28\xc2\x52\xcf\x84\xd7\xd6\x4e\xd6\xe0\x33\xd1\x9e\x57\x28\x01\xf9\xfa\x60\x82\xcd\xcb\xcb\x3c\x1a\x4f\xa7\x8f\x4e\x3e\xbd\xcc\x84\xd7\x35\xf9\x5d\xf9\x2e\x21\xa3\xb7\x9f\xb7\xdd\xbc\x42\xcc\x26\x24\x93\xf2\x30\x0c\x11\x86\x21\x00\xa0\xd5\x6a\x61\x7a\x7a\x5a\x00\xe0\xad\x56\x4b\xa8\x3c\x47\xbf\x00\x00\x1b\x37\x6e\x44\xbd\x5e\xb7\xd2\x75\xe1\xc2\x05\xdb\x7c\xc8\x12\xaa\x4e\x78\xdd\x55\xa1\xda\x0b\xe8\x1d\x4c\x00\x80\x6d\xdb\xb6\xf1\xf8\x2b\xd9\x3c\xc6\xe1\x17\x24\x2a\xbb\xe6\x62\x37\x25\xd9\xdd\x29\x53\x2f\xb3\xa5\xf7\x66\x74\xef\x6c\x82\x26\xed\xe6\x48\x84\x0c\xed\x8b\x1b\xd7\xde\x5a\x2d\x8a\xe4\xfc\xd0\xf8\x8b\xf2\x7a\x6c\x43\xef\xcf\x7a\x92\xcd\x54\xcb\xd2\xa4\xa6\x7b\x9b\x25\xb0\x1e\xe1\x90\xa5\xf1\x28\xce\x3c\x1a\xdf\x94\xef\x6a\x9b\x5e\x9b\x84\x0f\xad\x47\x85\x8d\x4d\x43\x52\xdc\x2e\x3a\x29\x8c\x09\xb7\xed\xda\x45\x17\xb4\x7c\x97\xa0\x4f\xa5\xbe\xbe\x3e\xbe\xba\xba\x2a\x0e\x1c\x38\xc0\xe3\xef\xc4\x9a\x68\xc3\x9b\x6f\xbe\x89\x85\x85\x05\xcc\xcc\xcc\xd8\xf0\x99\x68\xb6\xc1\xf5\xa4\xcf\x7f\xfe\xf3\xa8\x54\x2a\xe8\xeb\xeb\x33\xb5\x2f\x18\x63\x58\x5e\x5e\xe6\xcd\x66\x13\xaf\xbe\xfa\x2a\x96\x97\x97\xd5\x91\x12\x14\x9e\x8e\x9d\x2c\x85\xca\xe9\xce\xd1\x2c\x4d\x04\x00\x38\x70\xe0\x80\x2a\x4b\x04\x47\xa5\x5d\xa8\x0f\x37\xfc\xc3\x80\x16\x14\x4d\x56\x43\xba\x1b\xcd\x55\x92\x60\xd1\x0b\x6b\xe9\xe3\xd6\x92\xc3\x4c\xa2\x25\x59\x99\xb8\x2a\x12\xc0\x8a\x1f\xce\x4d\x0c\xae\xbe\x0d\xd6\x3d\x3f\x54\x09\x0d\x00\x38\x75\xea\x94\x4e\x73\xd6\x20\x37\xf5\x1b\x70\x0f\x4c\x10\x38\x97\x50\xa0\x93\x2f\x4b\x33\xb9\xb4\xae\xcb\x8c\x57\x38\xf2\x68\x52\x97\xa0\xc8\xa3\x99\x4d\xf7\x79\x84\x8f\xad\xcc\x66\xfd\x50\x3a\x6c\xb8\xf2\x6a\xcb\x3c\x34\x65\xf2\x6b\x74\x74\x14\xb7\xde\x7a\x2b\x06\x06\x06\xd4\x5b\xa8\x00\x80\xf8\x55\x0b\x75\x0d\x20\x8a\x57\xdc\x7b\xef\xbd\x68\xb7\xdb\x98\x9d\x9d\xc5\x99\x33\x67\xf8\xa9\x53\xa7\xb2\x84\x47\x4f\x9b\x34\x1d\x3b\x76\x8c\xef\xd8\xb1\x03\xe5\x72\x39\x09\xa8\xd2\x5f\x85\x57\x4a\x89\x6a\xb5\x2a\xaa\xd5\x2a\xee\xbf\xff\x7e\xd1\x68\x34\x70\xf6\xec\x59\xbc\xfb\xee\xbb\x58\x5a\x5a\x72\x59\xa4\x2e\xeb\x51\x00\x69\x8b\xc3\x26\xad\x53\x48\x8a\xc5\x22\xdf\xb8\x71\xa3\x5e\xe6\x41\xa2\x3c\xb6\xec\xef\x2c\x07\x7c\x3c\xf9\x92\x1a\x74\x37\x44\x7d\x85\x5e\x2d\xad\x46\x4b\x2b\xc9\x46\xb0\x18\x52\x3f\x7f\x40\x9d\xcf\xa8\xbf\x2c\x3b\x59\x6b\x9f\x9d\xaf\x04\x17\x11\x2d\xbf\xaa\xd8\x86\x00\x80\xcb\x97\x2f\x63\x65\x65\x45\xef\xa8\xce\x0c\x9a\x4f\xfb\x69\x13\x32\x2e\xe1\x60\xc2\x47\x61\x4c\x83\xde\xa4\xcd\xa9\xd6\xcb\x12\x14\xa6\x64\x12\x72\xb4\x9e\xcb\x34\xcd\xab\x11\x29\x4f\x6c\x82\x0e\xc8\xee\x93\xd1\xa2\x25\x79\x2e\x0d\x6c\x52\x72\x26\x1a\x4d\xe3\xd9\xa5\x14\x7a\xf8\x77\xe3\x8d\x37\xf2\x3b\xef\xbc\x33\xc1\x41\x3e\x83\xc0\x81\xd4\x0a\xa0\x5a\x11\x11\xa5\x52\x49\x6c\xde\xbc\x59\x6c\xda\xb4\x09\x37\xdc\x70\x03\x7f\xfb\xed\xb7\x95\x82\xcb\x12\x9e\x09\x0d\xbe\xef\xf3\x76\xbb\x2d\xfe\xe0\x0f\xfe\x80\x97\x4a\xa5\x54\xbb\xea\xf3\x8f\x3a\x1d\xf1\x92\xaf\x5a\xb9\x09\xd4\xf2\x6e\x7f\x7f\xbf\x38\x72\xe4\x88\xd8\xbb\x77\x2f\xbe\xf5\xad\x6f\x99\xfa\x9d\x47\x90\x03\xe8\xee\x56\x33\x69\x9c\x84\x49\x5a\x39\xdf\xbe\x7d\xbb\xee\x53\x71\x00\x3e\x93\x28\x6f\x59\x2c\xdd\xcc\x25\x2b\xcb\x78\x7b\x27\x15\x06\x89\x20\x00\x5d\x35\xa1\xc1\x8c\x04\x58\x3b\x46\x0d\xe8\x70\xd9\x9a\x18\x5c\x7d\xb3\x53\x90\xc9\x5b\x81\xda\x2e\x3a\xf1\xe6\x9b\x6f\xaa\x20\x92\xde\x07\xdb\x24\x36\x69\x79\x5a\xc7\xc9\x38\x52\xe6\xd2\x56\xa6\x89\x67\xa2\xc9\x64\x25\xd1\xf6\x69\x1d\x1b\x8e\x2c\x01\x08\x02\x4f\x69\xb6\x59\x9c\xa6\xc1\x6e\xc2\x43\x61\x6c\x7c\x35\x59\x65\x79\x27\x94\x0d\x6f\x1e\xeb\xc9\xd4\x27\x0a\x9b\xb4\xf5\xc5\x2f\x7e\x91\xd7\xeb\x75\x90\x09\x1a\xbd\x62\x21\xe1\x79\x21\xf3\x0a\x82\x7b\xd1\xae\x68\x88\x80\xcb\x40\x30\xa8\x53\xb9\x82\x78\x69\x55\x0c\x0d\x0d\x05\xf7\xdc\x73\x0f\x36\x6f\xde\x8c\x9f\xff\xfc\xe7\xb4\x3f\xd6\x7e\xff\xc6\x6f\xfc\x06\xb6\x6e\xdd\x9a\x6a\x5b\x4a\xe9\x31\x30\xdf\x0f\x59\xb9\x7f\xad\x50\xdf\xb6\x58\xda\xda\xd7\x2e\x0c\x72\x09\xaf\x53\x90\x8d\xa5\x72\x38\x73\x6d\xa0\x3d\xb5\xe2\x87\x4b\x01\x97\x2d\x30\x24\x2b\x8f\xfd\xfd\xfd\xe2\x2b\x5f\xf9\x0a\x4e\x9d\x3a\x85\x13\x27\x4e\x20\x0c\x43\x9b\x65\x67\x7a\x06\x00\x7a\xdf\x55\x31\x31\x3d\xf5\xf0\xcf\x9d\x3b\x27\x3e\xf5\xa9\x4f\x71\xad\xbe\xef\x09\x56\xdd\xb2\x58\x3a\x9c\x04\x38\x93\x53\x9c\x23\x20\x1a\xab\xd0\x63\x1b\x89\x10\x49\xc1\xb0\xee\x2e\xd1\xee\x5b\xb0\x53\x57\x6b\xed\x73\x88\x4e\x2b\x57\xfb\xf5\x05\x63\x4c\x84\x61\x88\xf7\xdf\x7f\x9f\x4e\x4c\x4a\xbb\xce\x0c\x13\x63\xe0\x80\x33\xc1\xd2\x64\x13\xc0\x2e\x81\xac\xd7\x33\xe5\x53\x1c\x36\x81\x62\xa3\xdf\xa9\x75\x8b\xc5\x22\x07\x80\x4e\xa7\x83\xf8\x1e\x9d\x4e\xc7\x65\x21\x28\x9c\x59\xda\xdc\x25\x10\x5d\xfd\xd5\x61\x4d\xfd\xb6\x3d\x2b\x3a\xe9\x4c\x16\x97\x4d\x60\xd3\x3e\x00\x88\x94\xdc\xe1\xc3\x87\xf9\xed\xb7\xdf\x0e\x20\x7a\x81\x13\x91\x86\xf7\x19\x98\xef\x09\x56\x19\x5b\xf6\x47\xb7\x2d\x94\x6e\x1c\x5d\xf6\x0f\x0e\xac\x15\xc6\x25\x80\xb6\x27\x96\xe6\xfb\x82\xf7\xa7\x06\xda\x6f\x5d\xaa\xaf\x9d\x5f\x2c\x07\x0b\x02\x68\x4b\xc8\x76\x2c\x78\x82\xbd\x7b\xf7\x8a\x8d\x1b\x37\xf2\xc7\x1e\x7b\x0c\x6b\x6b\x6b\xb4\xe9\x84\x2e\xce\x39\xbf\xff\xfe\xfb\xb1\x69\xd3\x26\xc4\x6d\x47\x3b\x4d\xc1\xfc\x72\x87\xd7\xf6\x4d\x57\x0e\xef\x9f\xaa\xfc\xe6\x60\xd3\x3b\xea\x87\x7c\x3b\x8b\x0e\xcc\xe2\x60\x68\x0b\x86\x46\xcb\x13\xe7\xaf\xd6\xd6\x9e\x79\x77\xac\xf9\x93\x89\xc1\xd5\xf3\x21\x63\xcd\x58\x80\xb4\x2b\x95\x0a\x6e\xbd\xf5\x56\x51\xa9\x54\xf0\xdc\x73\xcf\x71\x21\x44\x96\x1c\x48\xf1\x97\x06\x47\xf5\x4a\x46\x73\xf3\xcb\x5f\xfe\x72\x4a\xf2\x01\xf0\x37\xae\x7a\xa3\xb5\x96\xb7\xa7\xcb\x75\x10\xb3\x22\xf5\xd2\x0a\x7a\x85\x47\xd7\x32\x51\xd1\x90\xe4\xe5\xfb\x18\xc5\xe4\x40\xfb\xfc\x72\x29\x9c\x84\xf6\xda\xbc\x8a\x6f\x9c\x3c\x79\x52\xd1\xa9\xd3\x6f\x1a\x6c\x20\x30\x26\xc6\xd0\x3c\x53\xbe\x49\x9b\x52\xcd\x01\x52\x6e\x1a\xf0\x26\x5a\x68\x1b\x34\x9f\xe2\xa5\x65\x36\x2d\xcf\x3d\xcf\x43\x10\x04\xe2\xb6\xdb\x6e\xe3\x00\x70\xc3\x0d\x37\xa0\x58\x2c\x52\xdf\x98\x87\x61\x88\xf8\x18\x3c\x00\xe0\xf1\x4a\x95\x9e\x5c\x83\xca\x24\xf8\x4c\x7d\xc8\xea\x57\x8f\xd2\x42\xef\xf3\xcc\x12\x06\x79\xac\x1b\xa3\x15\x73\xf3\xcd\x37\xe3\xb6\xdb\x6e\x03\xa2\x09\x1b\x7d\x7d\x5e\xc2\xf7\x24\xab\xec\x9d\xae\x1c\xb8\xf9\x4a\xf5\x4b\x43\x2b\xc5\x4f\x7a\x21\xdb\x1e\xbd\xcc\xd9\x8d\xe3\x6d\x59\x84\x90\xd7\x64\x63\xd5\x13\x27\xcf\x0d\xaf\x7e\xe7\xcd\xcd\x8d\x9f\xcd\xf4\x77\x66\x10\x9f\x48\x07\x20\x18\x1a\x1a\x0a\x1e\x78\xe0\x01\x7c\xef\x7b\xdf\x33\xf1\x8a\x03\x10\x0f\x3c\xf0\x00\x1f\x1f\x1f\x57\x31\x14\x9f\x31\x56\xe6\x02\x95\xdd\xb3\x7d\xfb\x3e\x76\xb1\xf6\x27\xc3\x2b\xc5\xfb\xb9\x64\x75\x62\xab\x83\x09\x94\x39\x43\xad\xba\x56\xd8\xbc\x67\xa6\xef\xae\x1d\xf3\xe5\xdf\xbf\x30\xd8\xfa\xeb\x17\x76\x2e\xfe\xf3\x42\x5f\x30\x23\x21\x79\xfc\x2e\x4c\x70\xe0\xc0\x01\xf1\xcc\x33\xcf\x98\x84\x86\x73\x5c\xaa\x36\x6d\x13\x46\x7f\x08\x18\x1a\x1a\xc2\x83\x0f\x3e\x88\x52\xa9\xc4\x11\xbd\x9c\x53\x85\xc4\xe8\xe1\xab\xfd\x0f\x1e\x3b\xbb\xf1\x2f\x0a\x92\xf9\x89\xab\xa2\x99\x11\x89\x98\xd0\x0f\xef\x81\xd4\x45\x47\xda\x4a\x21\xcb\x2c\x01\x17\xed\x27\xf7\xce\x3f\xfa\xce\x78\xf3\x27\x52\xca\x4b\x8c\xb1\x49\xf5\x26\xac\x8c\xbf\x32\x6f\xe8\x38\x7d\x10\xb4\x6f\x36\x78\x9b\x59\xeb\xc2\x6f\x2b\xa7\xf5\x5d\x66\xb6\x71\xf0\x10\xdc\x34\x65\x4d\x68\xbe\x77\xef\x5e\x9c\x39\x73\x46\x9d\x07\x9b\x24\xb2\x6b\x31\xc9\x27\xa7\xb2\x09\x0d\x1e\x31\x9f\x69\x5b\x36\x1a\x4c\x93\xd2\x94\xef\xc2\x05\x0b\xac\xed\x19\x98\x60\x5c\x8a\xd0\x2a\x6c\x1e\x7e\xf8\x61\xfd\x7c\x19\x1f\x40\x79\xc3\xaa\x37\x7a\xcf\xb9\x0d\x5f\xd9\x31\x5f\xfe\x9a\x27\xf8\xe6\xe4\xad\x4b\xfd\xc5\x4c\xa8\x3c\xa8\x61\x1d\x2c\x97\xc2\x17\x5f\xde\xbe\xf4\x7f\x9c\x1c\x5f\x79\x2d\x60\xa9\x37\xb8\x83\xd9\xd9\x59\x3c\xf6\xd8\x63\x50\x4b\xb0\x2a\x7d\xee\x73\x9f\xe3\xe3\xe3\xe3\x8a\x26\x5f\x4a\x59\xf1\x43\x5e\xbb\xf5\xd2\xc0\x27\x6f\xb9\x3c\xf0\x67\xa5\x80\xef\x63\x71\x53\xa9\x57\xca\x55\x22\x73\x49\x42\x8a\xd9\xfe\xce\xbf\x3e\xb9\x6f\xfe\x7f\xbf\x3a\xd0\xbe\x28\x21\x1b\x4a\x78\xb4\xdb\x6d\xf1\xb7\x7f\xfb\xb7\x36\x6b\xda\xf8\xbc\x0a\x5a\x33\x82\x34\xad\x88\x56\x65\x6c\x75\x75\x55\xdc\x7e\xfb\xed\x0c\x40\x01\x40\x51\x4a\xd9\xef\x49\x36\x78\xe3\xd5\xea\x7d\x63\x0d\xff\xa3\x6a\x53\x57\x32\xf8\xb4\x8d\x5b\xdd\x7b\xfd\x8b\xf3\xc9\xde\xf3\xb4\x41\x42\xd2\x52\x29\xb8\xfa\xea\xf6\xe5\x1f\xaf\x7a\xe1\xfb\x8c\xb1\x59\x00\x2b\xea\x10\x93\x6f\x7c\xe3\x1b\x21\xa9\x69\xea\x8b\xca\xeb\xe9\x93\xc6\x5e\x61\xa8\xaf\xca\x75\x86\x4a\x43\x99\xe9\x44\x00\x1d\xbf\xc2\xcb\x60\x6e\x4b\xc7\xaf\xd3\x44\xdb\xd6\x93\xaa\x67\x82\x13\xf7\xdc\x73\x0f\x3f\x7e\xfc\x38\x76\xef\xde\x8d\xa3\x47\x8f\x32\x0d\xb6\x80\xc8\x3f\x4f\xbe\xed\xcb\x18\x2b\xa8\xbf\xb8\xbc\xa0\x60\xa5\x94\x4c\xbd\x7c\x75\xf4\xe8\x51\xfe\xd1\x8f\x7e\x14\x37\xdf\x7c\x33\x3b\x71\xe2\x84\x38\x78\xf0\x20\x9b\x99\x99\x61\x84\x06\x41\xae\xa1\x5d\xeb\xfd\xe7\x04\x4e\xe7\x15\x48\x3d\x0a\x4b\x79\xc7\x60\xe7\x2f\x7d\xf6\x3a\x3e\xfa\x0c\x65\xb5\x5a\xe5\x9f\xff\xfc\xe7\x59\xb9\x5c\x56\xbc\xf1\x21\x51\x19\x5e\x29\x6e\xfb\xcc\xa9\xc1\x3f\xdb\xba\x50\xfe\xe3\x82\x64\x75\x26\xd5\x71\x54\x5a\x2c\x2f\x19\xd2\x5d\x52\x18\x18\xf7\x43\xb6\x7d\xcb\x62\xf9\x8e\x62\xc8\x67\xae\xd4\xd7\x2e\x0a\xc8\x50\xd1\xd4\xd7\xd7\x27\x6a\xb5\x1a\xce\x9f\x3f\xaf\xd3\x2f\x8f\x1d\x3b\xf6\xff\x70\xf6\xae\x41\x76\x1c\xd7\x99\xe0\x77\xb2\xea\xd6\xbd\x7d\xfb\xf6\xed\x46\x77\xe3\xd5\x00\x1a\x0d\x12\x00\x1f\x06\x41\x12\xa0\x1e\xa6\x48\x91\xb2\x48\x8b\x92\x28\x5b\x23\x2b\x64\xf9\x21\xd1\x94\x25\x44\xcc\xce\x4c\x6c\x4c\x6c\x4c\xcc\x6e\x38\x66\x62\x37\xf6\xd7\xc4\xc6\xc6\xc4\xc4\xc6\xfe\x18\x8a\x72\x58\xa4\x45\x69\x2c\xcb\x61\x3b\x68\xeb\xcd\x87\x4d\x51\x12\x09\x80\x00\x08\x3e\xf0\x20\x1e\x0d\xa0\xd1\x68\x34\xfa\x71\xfb\xf6\x7d\xd4\xad\xca\xb3\x3f\x2a\x33\x2b\x2b\x6f\xd5\x05\xbc\x19\xd1\x7d\xab\x32\xb3\xf2\x71\xf2\xe4\xc9\x73\x4e\x9e\x3c\x49\x9a\xd3\x61\xe6\x8a\xcf\x34\x7a\xf0\x52\xfd\xb7\x0f\x5e\x1e\xf9\xdf\x83\x98\x66\xdc\xcb\xd7\xcd\xc1\x72\x27\xb0\x69\x16\xd1\x50\x4f\xec\xdd\xda\x28\xef\x9c\xaf\x77\x8f\xb7\xca\xb2\xc5\xcc\x31\x11\xc5\xbe\xef\xe3\xce\x3b\xef\xb4\xb9\x4c\xe4\x8c\x63\x66\x0c\x6c\xc2\xa1\x23\xed\x01\x64\x64\x11\x9f\x0f\x1e\x3c\x48\x48\x44\x94\x12\x11\x0d\x07\x11\x6d\x3e\x78\x79\xe4\x0b\x23\xa1\x3f\x4d\xd0\x37\x50\xd9\x67\x50\x90\x55\x60\x18\x9a\x92\x3d\x25\x0b\x27\x9b\x16\x5a\x00\xe0\xca\x58\xf7\xe4\xfb\x9b\x5b\xaf\xc6\x82\xaf\x11\xd1\x2a\x92\x5d\x95\x1e\x80\x98\x88\x68\x6e\x6e\xce\x9e\xa8\x79\xfd\xb1\x47\x53\x03\xc5\x8e\x73\x57\x45\x7b\xf2\xba\x84\xc4\x2e\xc7\x25\x56\x45\x69\xee\x90\xba\xe5\xbb\xc1\x26\x42\x2e\x0f\x66\x0f\xa8\x7e\x17\x00\xe4\xc4\xc4\x04\xb5\xdb\x6d\xf9\xd4\x53\x4f\x89\x2d\x5b\xb6\xe8\x8b\xb1\x3c\xe5\x27\xc5\x67\xe6\x12\x11\x95\x00\x94\x01\x94\x99\xb9\x42\xa0\x0a\x31\x97\x49\x62\x88\x80\x00\xa0\x32\x08\x25\x00\x25\x68\x05\x20\xa0\x89\x07\x01\x20\x21\x04\x0e\x1e\x3c\x88\xe9\xe9\x69\xdc\x75\xd7\x5d\xe8\x76\xbb\xb8\x71\xe3\x46\x11\x7c\xf2\xfa\x59\x34\xb9\x6d\x22\xe0\xc2\x5f\xc3\x43\xe4\x7c\x6f\x8f\x8f\xbd\x32\x16\x8d\xad\x5b\xb7\x79\x7e\xe2\x89\x27\x30\x31\x31\x01\x24\xc4\xb3\x0c\xa0\x3a\xd2\xf5\xb6\x7c\xea\xfd\xf1\xff\xb0\x65\x2d\xf8\x22\x31\x95\xa0\x70\x36\xc5\x71\x0b\xdf\xd9\x1a\x30\x55\x3a\x81\xe0\x31\xc6\x26\x5a\xc1\x3d\x52\x60\x76\xbe\x1e\xce\x81\x28\xd6\x4a\xd3\x91\x91\x11\x6e\xb7\xdb\x58\x5c\x5c\x04\x00\xf9\xf4\xd3\x4f\x0b\x35\x76\x3e\x11\x95\x01\x8c\xdc\xb9\x30\xfc\xd1\x0f\xcf\xd6\xff\xac\x1c\x89\x9d\xc6\xe5\x04\x00\x73\x63\xb2\x05\x31\x06\x4c\xfb\x92\x76\xb0\xb2\xd4\x26\xaa\xf4\xc4\xce\x7a\xa7\x54\xba\x3c\xda\x3d\xd9\x2b\x71\x17\x40\x0c\x40\x96\x4a\x25\xa9\x9c\x01\xd9\x04\xd5\x1d\x1f\x33\x06\xae\x3f\x8e\x9b\xc9\xe3\x00\xcc\x09\x3e\x1f\x40\x30\x1c\x7a\x63\xb5\x8e\xbf\x9d\x15\x00\x33\x1c\x86\x05\xd8\xa4\x46\xdb\xa6\xdc\x21\x1e\x56\x30\xbb\x2d\x89\x62\x54\xce\x8f\x84\x67\x7b\x5e\xe2\x2a\x4d\xed\xa6\x48\x20\x39\x29\x78\xf8\xf0\xe1\x22\xf9\x38\x4f\x47\xf0\x2f\x11\x43\x8a\xfa\x6f\xa7\xdd\x8a\xf8\x31\xa8\x2d\x45\x6d\xb7\xdb\x54\x14\x97\xa9\xe3\xe3\x1f\xff\xb8\x98\x99\x99\x81\x5a\x29\xf5\x9f\xde\xaa\xf3\xc1\x1c\xf8\x3d\x54\x82\x76\x3c\x5e\x5e\x97\x9b\x86\x1a\xf1\xf6\x52\x87\x37\x79\x11\x4f\x08\x89\x2a\x49\xae\x30\x51\xc4\x02\x2d\xe9\x51\x23\x2a\xd3\xb5\x4e\x4d\xcc\xb5\xeb\xde\x5c\x58\xa1\xc5\x5e\x85\x5a\xb0\x8e\x78\x03\xc9\x15\x00\xc3\xc3\xc3\xf2\xd1\x47\x1f\xc5\xb6\x6d\xdb\xc4\xdb\x6f\xbf\x8d\xc5\xc5\x45\x17\x86\x83\x60\x84\x9b\xa4\x01\xfd\x30\x2d\x82\xa1\x1b\x77\xb3\xf1\xe8\x2b\x7b\x7a\x7a\x5a\x28\x8b\xe8\x04\x66\x40\xa5\x14\xd1\xd8\x47\x2e\xd6\x7f\x6f\xf3\x5a\xf0\x79\x80\x7c\x42\xff\x22\x08\xe6\xf4\xc0\x26\xf5\xcf\x3a\x8d\xeb\xe5\x08\xd3\xf7\x5f\xae\xfd\xfb\xab\x23\xe1\x85\xb9\xd1\xee\x69\x50\x02\x47\xdf\xf7\xc3\x7b\xee\xb9\x07\xef\xbf\xff\xbe\x7c\xfc\xf1\xc7\x8d\x71\xa5\x9a\x63\xd5\x91\xae\xbf\xe5\xbe\x2b\x23\x4f\x0d\xf5\xc4\x6d\xfd\x7e\xf2\xd0\xcf\xa3\xea\x36\x18\xe2\x46\x36\xe7\xe1\x6f\x5f\x2d\x7f\xfe\xae\x85\xe1\xb7\x0e\xef\x68\xfc\x23\x93\x39\xae\x21\xbe\xfe\xf5\xaf\xe3\xaf\xff\xfa\xaf\x5d\x87\xc7\x36\x5c\x4d\x28\xf2\xc7\x91\x87\xc8\xf2\xab\x5f\xfd\xaa\x96\x8b\x35\x60\x83\x8d\xcd\x60\x7b\x39\xa6\xc9\x0c\x87\x01\x97\x7b\xd0\x49\x4e\x67\x9d\x38\x7b\x3c\xf4\xf7\xa1\xc7\xad\xf9\x91\xf0\x03\x4e\x0d\xbe\x8c\xed\x86\x3a\x5e\x6c\x77\x6a\xd0\x44\x85\x13\x97\xd7\xd7\x41\xf2\xb4\xcc\x29\xc3\x7d\x76\x11\xdc\xfd\x2d\x82\x6f\x5e\xd9\x45\x75\xf4\xc5\x7d\xe1\x0b\x5f\x10\xea\x06\x3d\x43\x30\xa0\x2d\x7a\x7b\x5c\xad\xac\xc9\xa9\xfa\x42\x74\xdf\xf0\x4a\xfc\x91\xa0\x25\xef\xf4\x7b\x3c\x4d\x8c\x1a\x18\x01\xc0\x3e\x40\x76\xdf\x93\x3f\x42\xc8\x84\x8e\xf4\x68\xbe\x57\xa1\xd3\xad\xba\x38\xd2\xd8\xe8\x1f\x6e\x8d\x79\x17\x7a\x15\x5a\x41\x7a\xb0\x30\x22\xa2\x68\xcf\x9e\x3d\x72\xc7\x8e\x1d\x78\xee\xb9\xe7\x06\xf5\xb7\x88\x10\x0f\x82\x6f\xde\x58\xca\x9c\xf4\x41\x22\x5d\x5e\x1d\x7d\xc4\xc8\xba\xbe\xd4\x07\x10\x80\x51\xdd\xb6\x5a\xbe\x73\xf7\x62\xf5\xab\x02\x54\x01\x90\x2f\x0f\x90\xbb\xf4\x39\x6c\xa4\x85\xeb\xc3\xa1\x77\xf7\x03\x97\x47\xfe\xe0\x1f\x46\xc2\xff\x16\x7b\xac\x09\xb1\xd8\xb0\x61\x83\x04\x80\x5d\xbb\x76\xe9\xb6\xfa\x48\xf4\x88\xd5\xbb\xaf\x55\x1f\x9a\x68\x95\x1e\x24\xed\xaa\x42\xdb\x3b\xd9\xf2\x89\xc5\x37\xb9\x2c\xaf\x79\x56\x9b\x10\x9e\xa4\xb1\x3d\xd7\x87\x7e\xf7\xcc\x64\xeb\xe8\x4a\x35\x32\xce\xaf\x84\x10\xb2\xc0\x4b\x7a\x1f\xc1\xcd\xdb\x8e\xcd\x00\x53\x87\x5d\xbb\x76\xe9\x03\x39\x5a\xcb\xec\x13\x23\x18\x6f\xf9\xbb\x3c\x99\xd8\x6f\x64\x1d\xf7\x58\xc1\x56\xd2\x98\x6d\x56\x47\x81\x6a\xde\x91\x32\x25\x0c\x34\x2a\xd1\xfc\xca\x50\x34\xcf\xe0\x0e\x21\x83\xac\xf2\xde\x7b\xef\x15\xca\x11\xf1\x20\xce\x21\x0f\xf9\xf2\x08\x8d\x5b\x4e\x1e\xa2\xdf\x94\x12\xe7\xc4\xbb\x6d\xb3\xe3\xf2\xda\x74\x4b\x2b\xb6\xde\x3a\xfd\xca\x57\xbe\x22\x86\x86\x86\xfa\x09\x46\x28\xeb\x23\x37\xe2\x3b\x37\x5c\xe9\x7d\x6a\x78\x55\x3e\xea\xf5\x78\x06\x09\xb1\x10\xa9\x69\x4d\x9f\x3d\xaf\x00\x48\x70\xa2\xe8\x0b\x88\x51\xa3\x98\x27\xfd\x9e\xdc\x57\x59\x93\x9f\x19\x9b\x8f\xe6\xbb\xc3\xe2\xf0\xca\x66\xff\x1f\x56\xb6\x96\x0e\x87\x55\xca\xec\x14\x94\xcb\x65\x79\xe8\xd0\x21\x9c\x3b\x77\x0e\x87\x0f\x1f\xc6\xca\xca\x4a\x51\xfb\x6f\x05\xae\x36\x4c\x5c\x18\xdf\x0c\x96\x79\x61\x10\x71\x11\x00\xa4\x7b\x7d\x69\x39\x16\xf5\xbb\xae\x0d\x7f\xba\x1c\xd1\x74\x06\x5f\x6d\xb6\x82\x90\xb5\x80\xce\x51\x56\x26\x3a\x3d\xe8\x04\xb1\x7d\xb9\xfc\x3b\x5b\xd7\x82\xbf\xbb\x3c\xda\x6d\xaa\x6d\x5a\xc9\xcc\xa1\x56\x60\x5b\x8e\xbf\x83\x92\x14\xf5\x99\xa5\xa1\x4f\x7a\x12\x75\xa3\x8c\xb5\xe4\x10\x6d\x6d\x0d\x5d\xbc\xae\x93\x52\x5b\xaa\x8c\xfc\xc2\x00\x11\x63\x43\xcb\xbf\x6f\xfb\x4a\x79\xdf\x4a\x35\x5a\x40\x3a\x86\x83\xb8\xe0\xcc\x02\xab\x39\x8e\x22\x04\x36\x05\x8c\x8c\x8c\xc0\xf3\xb4\x4a\x24\x41\xd0\x52\x4c\xd5\x89\x56\x69\x9a\x00\xdf\x86\x9b\x0b\x38\x58\x5b\x55\xda\x72\x54\xb3\x70\x29\xc5\x74\x28\xa7\x7a\xbc\x5e\xeb\x5d\xe8\x94\xe4\x8a\xd5\x39\x49\x44\x90\x52\xba\x7b\xe0\x79\x93\xcd\x16\xbb\x8a\xb8\x10\x37\xe4\x89\x03\x6e\x99\xc8\x79\x76\xdb\xe0\x96\x99\x47\x10\xec\x6f\xed\xe0\x72\x40\x99\xef\x7c\xdf\xc7\x43\x0f\x3d\x84\x3d\x7b\xf6\x08\xc0\xda\x2e\x04\x02\x8a\xb9\x36\x72\x23\xde\x3d\x79\x31\xfc\xfd\xe1\xe5\xf8\x09\x11\x63\x2a\xe1\x2a\x60\x2c\xf8\xd3\x3b\xb1\xc8\x50\xf9\x74\xc3\x2b\x49\x64\x75\x35\xa1\xe5\x91\xbe\xe2\xc5\x34\x33\xd4\x88\x67\x2a\x6b\xf2\xb1\xf1\xb9\xe8\x57\x37\xb6\x97\xbe\xb3\xbc\xcd\x7f\x23\x0a\xb0\x82\xf4\x0e\xd3\x68\xd7\xae\x5d\x72\xfb\xf6\xed\xf8\x8b\xbf\xf8\x0b\xbb\xed\x79\x93\xff\x66\xab\x5b\xde\x82\x70\xb3\xfc\x45\xa2\x49\x1e\xe7\x96\x29\x57\x89\x08\x9a\xf8\x56\x46\x3a\xfe\xd4\xb6\xd5\xf2\xc7\xf5\x4d\xf1\x36\xbe\xda\x26\x04\xfd\x4b\xbb\xab\xd6\xb3\x4e\x8b\x83\x50\x92\x98\xdc\x75\xa3\xf2\xb1\x2b\xa3\xdd\x0b\x48\xae\x4f\xd0\x36\x1e\xf6\xb8\xfb\x00\x2a\x1b\x9b\xa5\xe9\xb1\xb6\xbf\xcf\x10\x01\x87\xe3\x21\x7b\xb5\xb6\xb9\x77\xd3\x90\xec\x84\xd2\xe3\xec\x4b\x1a\xdb\xb2\x16\xdc\xfb\x9e\x5c\xff\x55\x2c\xa8\x89\x84\x58\x46\x87\x0e\x1d\x12\xdf\xf9\xce\x77\xb0\xbe\xbe\x3e\x90\xb8\xdb\x13\x4b\xbf\xe7\xae\x0e\xfa\xf8\x2f\x12\xd9\x4b\x00\xf0\xfd\x98\xaa\x23\x1d\x6f\x4b\xb6\xc1\xf6\x5b\xba\xfd\xaa\x59\x25\x9d\x4b\x5f\xbc\x0b\x3b\xaf\xfd\x9b\xe8\x37\x70\x63\xb8\x37\x1b\x0b\x36\x3e\x37\xa0\xac\xdf\x7a\xbd\x1e\xde\x7f\xff\x7d\x97\xcd\x2f\x12\x11\x8a\x10\x70\x10\x82\xe6\x95\x9d\x27\x7f\xe7\x95\x7b\xb3\xf6\xe4\x7d\x3f\x88\xa8\x99\xef\x3d\xcf\xc3\xc7\x3f\xfe\x71\xec\xd9\xb3\x47\x7f\xe7\x13\x51\x05\xcc\xd5\x52\x5b\x6e\xd9\xf6\x5e\xf7\xcb\xd3\x27\xda\xff\xef\xc8\x62\xfc\x75\x2f\xc6\x34\x25\x47\x02\xa0\xcf\x0e\x25\x2e\x1c\x35\x5a\xa5\xac\x21\x65\xf1\x2b\x5d\x21\x75\xba\x26\x36\x20\x08\xc6\x58\x79\x3d\x7e\x62\xeb\x99\xee\x7f\xdb\x79\xac\xf3\x1f\x6b\x4b\xf1\x5e\x48\xae\xc3\xf2\x9f\x59\x2a\x95\xc4\xd3\x4f\x3f\x2d\x94\xb3\x27\xbb\x1f\xae\x48\xe8\x12\xc8\x22\x91\xa5\x88\xab\x74\xc7\x25\x6f\xac\xf2\x70\xc4\x8e\x17\x4f\x3d\xf5\x94\xd0\x5b\xd4\x00\x7c\x02\x55\x36\xae\x97\x66\x2a\x3d\xb1\xdd\x2c\xda\x96\x4e\xc3\x18\x18\x19\x88\x59\xe8\x0d\x05\x3f\xe6\x74\xed\x04\xcc\xb6\x37\x31\x89\xe9\xe5\xca\x83\xbe\xa4\x1a\x2c\xd7\x81\x56\xfd\xc6\x6e\xa3\x16\x7a\x53\xa5\x98\xc6\x00\x80\x49\x13\x30\xa5\x33\xb7\xa6\x0c\x2b\x63\x49\xfb\xda\xd4\x3e\x75\xbe\xa5\xb5\x25\x90\x18\x6f\x95\xee\xac\xf4\x44\x1d\xc9\x98\x19\xd7\x85\x0e\xd1\xc8\x23\xd6\x03\xe5\xfb\xcc\x8a\x7d\xff\xfd\xf7\xeb\xfc\xba\x63\x7e\x25\x12\xf5\x6a\xcf\xdb\xa4\x1b\xca\x86\x2c\x6b\x02\x48\xb0\x60\x69\x29\x49\x75\x07\xec\x54\x47\x32\x23\x20\x12\xdc\x59\x1c\xee\x5d\xe4\x94\xdb\xc8\x70\x1c\xc8\x12\x3e\x97\x08\xba\xfd\x70\x91\x2f\x8f\x78\xb8\xc8\x6c\xff\xc1\xca\x93\x57\x4e\x5e\xfd\x2e\x51\x76\x91\xf9\x66\xe2\x49\x86\x98\x10\x91\xf8\xc4\x27\x3e\x81\xdd\xbb\x77\x6b\x3b\x8c\x00\x40\x05\xcc\xf5\xe1\x65\xb9\x7b\xe6\x58\xfb\x7f\x9b\xb8\xd4\xfb\x3f\xbc\x90\xef\x44\x8a\x84\x29\x7d\x66\x06\xbb\x30\xd7\x38\xc6\x4a\x3e\x54\x58\xd6\x77\xc9\x37\xd9\x93\x23\xd1\xd2\x0b\x89\xf1\xda\x52\xfc\xb5\xe9\xe3\x9d\xff\x3a\x39\xdb\x7b\x48\x44\x3c\x8e\xc4\x7a\x31\x20\x22\x51\x2a\x95\xc4\x63\x8f\x3d\x56\x04\x0f\x3b\xe4\x11\xf0\x3c\x4e\x65\x10\x2b\x9d\x57\xc7\xa0\xb1\x31\x65\x98\x33\x52\xc9\xaf\xb2\xce\x44\x65\xbc\x55\xba\xdd\xbe\xbe\x94\x2c\x42\x61\x6e\x14\xd4\x2c\x9c\x25\x9e\x73\xca\xd2\xa5\xf3\x58\x13\x6f\x95\x56\x0d\xbd\xed\x95\x9e\x18\x03\x50\xd1\xe7\x4d\x2c\x11\x28\xe9\x9c\xd5\x00\x00\x20\x00\x49\x44\x41\x54\xde\x88\x2a\xb5\xae\x37\x29\x98\x2a\xba\x7c\xad\xec\xcc\xc8\x25\xaa\x21\xc9\x94\xca\x2e\xdd\xb0\xea\x4f\xc4\xaa\xb4\x7d\xe5\x48\x8c\xfb\x92\x6a\xca\x22\xd5\xd7\xf1\xbf\xf9\x9b\xbf\x99\xc7\x19\x67\xe0\xec\x4e\x0a\x38\xcf\x7d\xc8\xab\x10\xd6\x27\xa2\x60\xac\x5d\x9a\x0c\x22\x31\x66\x58\xb1\x54\x8e\xcb\x4a\x1e\x0e\x12\x92\x01\xb6\x8b\x8c\xf6\x2f\xd0\x29\xc9\xa5\xd5\x4a\xb4\x08\x4a\xc5\x14\xfd\xf7\xfc\xf3\xcf\x0f\x62\xf1\xdd\x4e\xbb\x7d\x1d\xf4\x2e\xd1\x4f\x20\x5c\x96\xdb\x25\xb4\x79\xdf\xfc\x4b\x58\xed\x22\xa4\xce\x3c\x3f\xfe\xf8\xe3\xb8\xed\xb6\xdb\x60\x89\x26\x15\x30\xd7\x47\xe7\xa3\xfd\x3b\x8f\xb7\xff\xef\xe1\x15\xf9\xc7\x60\xae\xd8\x85\x30\x52\x51\x24\x73\x12\x59\xc9\xc7\x6a\x0d\x54\x39\xd9\xfc\x92\x89\x4b\x4a\x81\xf9\x55\x5f\x58\xe3\x1b\x74\xe5\x03\x5b\x4f\x77\xff\xeb\x96\x33\xdd\xcf\x8b\x88\xc7\x89\xa8\xca\xcc\x01\x12\xb1\x4a\x7c\xe3\x1b\xdf\x10\x53\x53\x53\xba\xea\x3c\x18\xe5\x71\x5c\x79\x1c\x9e\x0d\x97\x41\x62\x90\x9d\x5e\x34\x09\x4c\xdd\xfb\xf7\xef\x87\x7b\x78\x0c\x89\x47\xbb\x3a\x40\x22\xd5\x63\xc0\x5a\xc5\xc9\x9e\xc9\x29\x30\x60\x89\x09\x3a\xce\xca\xc7\xea\x3b\x4f\x52\xad\x14\x53\xd5\x32\x65\x77\xdb\xe8\x13\x91\x1f\x44\x62\x84\x18\xc2\x16\xff\x53\xfa\x65\x71\xfa\xe9\xb6\x09\xd8\x6e\xa7\xd5\x0e\xed\xf3\x57\xb7\x4f\x30\x02\xc1\x14\x20\x21\x1a\x9a\x58\xd9\x30\x2c\xe2\x00\x33\x13\x25\x6f\xe5\xee\xfb\xb5\x76\x54\xfc\x7a\xc7\xdb\xec\x49\xaa\x82\x35\xb5\x33\xcb\x97\x22\xc4\x9a\xf2\xea\x77\x0b\x98\xd6\x6f\xaa\xef\x50\x6f\xaa\xe3\xab\x95\x68\xbe\x95\x5c\xd2\xdb\x61\xeb\x62\xdd\x9c\x50\xb4\xd2\xe7\xb1\xac\xb9\xab\xb9\x03\x87\xbc\xfe\x0f\x42\xec\x9b\x11\x24\x9d\x3f\xaf\xad\x79\x04\x2a\x8f\xc0\xc8\x9d\x3b\x77\x02\xc9\x18\x24\x44\x43\x72\x7d\xfc\x72\xef\xa3\xdb\xdf\xed\xfe\x5f\xa5\x0e\x7f\x54\xcb\xdd\xb6\x11\x1e\x29\xf6\x2e\xe1\xac\x2d\xc5\xb4\x82\xb3\xad\x62\x32\xc3\x62\x2b\xe1\xd4\xf7\xac\xcb\x81\xe2\x4e\x32\x08\x46\x10\x31\xb6\x4c\xce\xf6\xfe\xd3\xb6\xf7\x3b\x7f\xe4\x85\x72\xd2\x26\x1e\x00\xc4\xdc\xdc\x9c\xb4\x74\x64\x79\x30\x70\x17\xb1\x42\x38\xe4\x7c\xeb\x7e\x73\xab\x9c\x4d\x6e\x60\x66\x9f\x18\xbe\x27\x29\x25\xc2\x46\x34\xe1\x94\x7e\xda\xa2\x8a\x12\x4d\x5c\x89\xdb\xfd\xd5\x1c\x08\x0b\x8e\x62\x91\x6c\xb9\x52\xea\xa8\xd8\x3e\x75\x0b\x00\xa2\x15\xc4\x1d\x26\x48\x7b\xf1\x35\x7c\xbc\xcb\xb0\x6b\xce\xc6\x26\x1a\x16\xc1\x31\xfe\x7f\x55\xde\x56\x49\xae\x74\x7d\xa9\x4f\xd2\xaa\x6e\x66\xf4\x07\x79\x38\x2e\xec\x17\x37\xf4\x0d\x98\x46\x38\x4d\x95\x49\x22\xa8\x77\xfc\x2d\x1e\x23\x48\x1b\x99\x62\x21\x59\xaf\x86\xc6\xd9\x84\xd8\x11\xaa\x9d\x06\x03\x04\xac\x0c\x45\x73\x91\xe0\x16\xac\x73\x29\x40\xe2\xc5\x5c\x08\xe1\x22\xd2\xcd\x10\x26\x8f\x9d\x75\x11\x68\xd0\xa4\x1e\xc4\x99\xe9\x74\x97\x63\xc9\x23\x1a\x45\xed\x2d\x7c\x3f\x70\xe0\x80\x38\x74\xe8\x90\x26\xda\x9a\xd3\xa8\x8d\x5d\x8b\x0e\x6c\x39\x13\xfe\x99\x1f\xf2\xdd\x09\xbc\x6d\x6c\x31\xfc\xb1\x79\x4e\x87\x49\x33\xbc\xae\xf0\xab\x75\x4f\x64\x0f\x9e\xfa\x26\xf9\x65\x45\x84\xfa\xd2\x01\x90\xe4\xb1\x0d\x73\xd1\xbf\xdd\x72\x36\xfc\x82\xe8\x25\x9c\x87\x6a\xaf\x38\x74\xe8\x90\x78\xec\xb1\xc7\xf4\x76\xa7\x1d\x5c\xee\x4d\xc7\xe5\xfd\xba\x71\xb7\xf2\x4d\xde\x18\x66\xda\x70\xfc\xf8\x71\x57\x24\x04\x13\x44\xd7\x97\x9d\x0c\xa1\xc8\xf4\xdb\x92\x4d\xc8\xca\xe0\x70\x18\x99\x5f\x0b\x64\x1d\x5f\x36\x3a\x7e\x6c\x8e\x73\xe7\x4d\x5e\x66\xc6\xca\x50\x74\xa3\xe7\x71\xcb\x19\xa6\x24\x3d\x55\x3c\x59\x69\x9a\x72\xa4\x74\xce\xe4\xcd\x7c\x0b\xac\x55\xa2\xc5\x9e\xc7\x11\xf7\xc9\xa5\x7d\xa1\x8f\xf3\x70\x07\xc1\x1d\x0c\x09\x40\x1e\x3c\x78\xd0\x78\x60\xd6\x1c\x47\x49\x52\xa5\x16\x7a\x9b\x00\x12\x06\x25\x6d\xbd\x0c\x5b\xa4\x4d\x07\x97\x0a\x43\x11\xe9\x9c\x76\x33\x12\xc2\xc1\x4a\x4c\xe1\xe4\x76\x2b\xa9\xcb\x76\x4e\xf3\x01\x83\x27\xa1\x9b\x3e\x28\xae\x48\x2e\x76\x75\x41\x45\x22\x4b\x11\xfb\x9c\xc7\xd1\x0d\xaa\x47\x3f\xcb\xfd\xfb\xf7\xeb\x7c\x89\x7d\x01\x50\x1b\x5e\x8e\xef\xdc\x72\xa6\xfb\xbf\x94\xba\xbc\xcf\x08\x1a\x16\x20\xb9\x0f\x7b\x13\xa2\x90\xcd\x93\x59\x36\xd3\xf8\xcc\xd9\x15\x1d\x97\x7d\xcf\x0d\x0c\x90\xc4\xf8\xf8\x95\xde\xbf\x9e\xbc\x18\x3e\xa6\x15\xa6\xca\x90\x49\xec\xdc\xb9\x53\x1f\xe1\xb6\x43\x91\xc8\x99\xf7\xdb\x97\x5f\xf9\xbe\x95\x00\xe4\xed\xb7\xdf\xae\xd3\x25\x00\x39\x3e\x3e\xae\xb3\x15\x89\x95\x19\x7c\xb7\x27\x2c\x03\x72\xa5\x1a\x2d\xc8\xc4\x40\xca\xa2\xc5\x16\x20\x0c\xf8\x94\x7c\x60\x60\xe3\xe0\xbc\xe6\x44\x2c\x4e\x60\xb5\x12\x2d\x44\xd6\xa4\x75\x26\xaf\x44\xb2\x58\x47\x4b\xd5\xde\x42\xb3\x1c\x2d\x18\xdd\x94\xae\x0f\x16\x07\x61\xb7\x0f\x94\x70\x84\x3a\x57\x9e\xf8\x04\x40\x12\x47\x37\x86\x7b\x97\x7b\xc2\x18\x54\x16\x85\x5c\x2e\xcf\xb6\x1c\x2d\x62\x0d\x71\xe4\xc8\x11\x79\xf0\xe0\x41\x7b\xa2\xf8\x9e\xa4\xca\x50\x28\xc6\x32\x62\x86\xc3\x51\x64\xb6\xac\xd8\x42\xba\x4c\x3e\x64\x81\xaa\x00\x21\x05\x47\xcb\xd5\x68\x9e\x13\xa2\xa1\x7d\x1b\x48\x00\xda\x3e\xc0\xed\x5c\x91\x78\x02\xe4\x4f\xe6\x41\x72\x71\xde\xb7\x83\xc2\xcd\x58\xe4\x22\x02\x34\x28\xaf\x00\x20\x9f\x78\xe2\x09\x11\x04\x81\xd1\x6b\x30\x73\xb5\xdc\xe1\x2d\x5b\xce\x86\x7f\x5a\x5e\xe7\x0f\x93\xca\x9f\xbd\x56\x42\xe9\x8f\x88\xad\x6d\xc1\x7e\x0b\xdd\x14\xd9\xd3\x01\x20\xd8\xbc\x49\x72\xfb\x5e\xba\xc8\x2a\xdb\x5f\x33\xb6\x80\xbe\xf7\x57\x07\x62\x86\x88\x30\x35\x39\xdb\xfb\xd7\x9d\xba\x77\xb9\xb1\xc9\x3f\x66\x39\x93\x89\x9e\x7a\xea\x29\xfc\xe0\x07\x3f\x40\xb3\xd9\x2c\xc4\xb7\x9c\x38\x77\xdc\x24\x00\xf9\x7b\xbf\xf7\x7b\x62\x6c\x6c\x2c\xc3\xc5\x58\x2e\x1f\xd0\x6e\xb7\xd1\x6a\xb5\xc4\xe2\xe2\x22\x5e\x7d\xf5\xd5\xc2\x32\x2d\x8f\xfd\x49\x1f\x88\x24\x98\xe5\xb5\x91\xee\x95\xf5\x20\x5e\xac\x77\xfd\xa9\xd4\xfd\x43\x4a\x49\x6d\x42\x93\xb1\x82\x66\xb2\x69\x84\x43\x53\x92\x63\x19\x8b\xb5\xde\xac\xa4\xf4\x4a\x0f\x4a\xef\x52\xd1\x8e\x78\x24\x80\x68\x3d\x90\x8d\xab\xf5\xf0\xdd\xf1\xf5\xd2\x6e\x10\x84\x61\x2e\x14\x2d\x32\xa6\x25\xfa\x19\x59\xe2\x9e\x31\xc4\xb4\xa4\xcf\x76\x49\x2e\xcd\xd5\xc3\x0f\x40\xfd\xf3\x2b\x67\x0c\x74\x30\xc4\x36\xef\x58\xbd\x0d\x5c\xf3\x6c\x1d\xbd\x16\x00\x84\x2f\xa9\x52\x89\xc4\x78\xd2\x9e\x14\x29\x6d\x62\xe1\x8a\x23\x09\x22\x5a\xc4\xc2\x32\xf8\xb2\x55\x1c\x00\xa3\xe7\xc9\xe6\x5a\x39\xba\x01\x42\x48\x48\xc5\x14\x22\x92\xa7\x4f\x9f\xb6\x3b\x54\x84\x80\x79\xf2\xf2\xad\x70\x1d\xee\x4a\x54\xc4\x41\xe4\xe5\xcd\x13\x37\xdc\xba\xf2\xca\x2e\xa4\xf8\xd6\xdd\x35\x3e\x33\x57\x04\xa3\x3e\x79\x31\x7c\x62\x78\x39\x7e\x02\xcc\xbe\x3d\x91\x13\x25\x9e\x86\xa5\x56\x62\x2a\x7e\x84\x09\x44\xa9\xb2\x33\xa3\xfc\x54\x93\xdf\x56\x6d\xe8\xf1\xc9\x9a\xd9\x58\x6e\x97\x4c\x82\x35\xa6\x56\x9e\x52\x97\xef\xdc\xfc\x41\xf7\x4f\xdb\x23\xe2\xff\x0c\x2b\x14\xea\xc9\x50\x2e\x97\xe5\x03\x0f\x3c\x80\x57\x5e\x79\x25\x4f\x7c\xcb\x83\x9d\x00\x20\x3d\xcf\x13\x1f\xfe\xf0\x87\xc5\xc6\x8d\x1b\xa1\xae\x1d\x05\x94\x5e\x40\xad\xd6\x66\x57\x02\x4a\xb4\x1e\x1a\x1a\x42\xa5\x52\x91\x13\x13\x13\x72\xe7\xce\x9d\xe2\xe2\xc5\x8b\x78\xf5\xd5\x57\xfb\x60\x7d\xf6\xec\x59\x1c\x38\x70\x40\x9b\x1c\x48\x00\x11\x03\x61\xa3\x1c\x2f\xce\x8d\x76\xdf\x1d\x59\xf0\xa6\x52\x9c\xce\xae\x92\xae\x57\x3b\x77\x01\x35\xba\x05\xa4\x5c\x78\x2c\x64\xe7\xf2\x68\xf7\x94\xb5\x28\x4a\xc7\x30\x52\x7b\xee\x0a\x41\xe8\xbc\xb7\x79\xfd\xcd\x99\xa5\xca\x83\xb5\xae\xbf\x09\x29\x98\x91\x39\xa7\xa2\xc7\xc5\xaa\x57\x4b\x9d\xc9\xf8\x64\x29\xc8\x95\xd1\xee\xc9\xc5\xe1\x70\x0e\x96\xb3\x6f\x5d\xff\x2f\x7f\xf9\xcb\x3c\x31\xdb\x1e\x2b\xe1\x4e\xba\xdc\x41\x53\x47\x8c\xf5\xbb\x60\x66\xbf\x1c\x89\x6a\x39\x12\xf5\xbe\x15\x47\xb7\xd4\x88\x25\x59\x0d\x4e\x6a\x7c\x47\xa6\x7f\x99\x0e\x23\x41\xeb\xd0\xe3\x66\xbb\x24\x9b\xc8\x9e\x8d\x00\x00\x7c\xf0\xc1\x07\x36\xbb\x59\xc4\xd6\x16\xb1\xb7\xee\x37\x45\xfa\x0f\xf7\xdb\x42\x16\xd7\xfa\x6e\x10\xd1\xb8\x59\x7c\x46\x3c\xa9\xd5\x6a\xf8\xa3\x3f\xfa\x23\xc3\xe1\x11\x51\x40\x44\xd5\xe1\xa5\x78\xef\xd8\xd5\xe8\xf7\x49\xa2\x4e\x4a\xa3\x69\x94\xa2\x0a\x53\xa8\x4f\x47\x91\x5e\xbf\x49\x16\xf2\xe8\x6f\x8c\xe2\x14\x48\x95\xa4\x86\x51\x64\x6b\x08\xd3\x67\xb3\x23\xa3\x38\x1b\x5d\x4f\x92\x0b\x20\x66\x31\xd4\x90\x8f\x4e\x5c\xea\x3d\x46\x40\x5d\x29\x74\x7d\x66\x16\x7b\xf6\xec\xb1\xaf\xd7\xc8\x83\x4d\x06\x71\xb7\x6c\xd9\x22\x3e\xfd\xe9\x4f\x63\xdf\xbe\x7d\xd8\xb2\x65\x8b\xfe\x2e\x50\xb6\x0e\x89\xce\xc7\xfa\x53\x8a\x59\xfb\x4e\x56\xbf\x52\xa9\x88\xbd\x7b\xf7\xe2\xa9\xa7\x9e\x12\x8f\x3e\xfa\x68\x86\x58\xad\xaf\xaf\x2b\xc9\x17\x52\xad\xba\xc9\x8d\xf2\x1e\x37\x4f\x6f\x6c\x1f\xee\x7a\xdc\x4c\x45\x05\x4b\x2c\x07\xcc\xe2\x67\x16\x3e\xbd\xfa\xb3\x22\xcb\x6a\x7c\x34\x71\x06\x31\x16\x87\x7b\x67\xe7\x46\xbb\x17\x40\x66\xd2\x46\xaa\x6e\x4d\x3c\xa4\xe2\x00\x3a\x00\x5a\xf3\x23\xe1\x85\x0f\x26\xda\x87\x25\x71\x64\xea\x66\x9b\x33\x54\xef\x7a\xbb\x5d\xd7\xad\x56\x02\x82\xe2\x94\xd4\x77\xcd\x40\x2e\xbe\xb3\xa5\xf9\xab\xae\xcf\x2b\xaa\x8e\x50\xf7\x9d\x88\x6c\x0e\xce\x15\xc9\xa1\x7f\x3d\x2b\xc2\x15\x76\x93\x0c\x9e\x47\x87\x0f\x1f\xd6\xa2\x8a\xa7\x06\xa6\xb6\xb1\x19\xec\xbe\x63\xa1\xfa\x84\xcf\xa2\x6a\xb3\x6d\x0a\x6c\x6a\xd5\x4a\xa8\x5c\x46\x64\xc9\x20\xaf\x25\x43\xc3\x46\x3b\xa0\x31\x14\xcf\xbe\x3d\xd5\xfc\x59\x2c\x70\x1d\xc9\x6d\x6d\x1d\x22\x8a\xe3\x38\x96\x4b\x4b\x4b\xb4\xba\xba\xca\xaa\x8d\xf6\xaf\x25\xec\x98\x3e\xd8\xe9\x59\x2a\x96\x4d\xb3\xcb\x70\xd3\xdd\xf7\xbc\xd5\xd2\xfd\xd6\x6d\x0b\x0a\xde\xed\x35\xca\x10\x95\xfd\xfb\xf7\x93\xda\x45\xf1\x90\x9c\x54\xad\x8a\x88\xc7\xb7\x9e\x0e\x9f\xaa\xae\xca\xdf\x22\x40\xd8\x5c\x9a\xb1\x11\x20\xeb\xd7\xd4\xe0\x5c\xa5\x69\x20\x9d\x3a\x8c\x4e\xe7\xbe\x5e\x1d\x93\x55\x2a\x21\x2c\x9a\x87\xd1\xcf\x69\xc5\x44\x69\x79\x69\xe7\x59\xf5\x9e\x82\x72\x5b\x6e\x6c\x8e\xfb\xbf\x8a\x2a\xa2\x01\x75\xf7\x0d\x11\xc5\xb5\x5a\x0d\x67\xcf\x9e\x85\x9a\xa8\xc2\x81\x03\x01\x90\xbe\xef\x0b\x29\x25\x7f\xfe\xf3\x9f\xa7\xf1\xf1\x71\x01\x80\xd4\x2e\x44\x00\x20\xf0\xa5\x18\xae\x85\xde\xf8\xf4\x4a\x65\xe7\xce\xe5\xca\xde\xed\x2b\xe5\x3d\x5b\x9a\xc1\xb6\x89\xf5\xd2\x78\x49\xd2\x50\xe8\x31\xa4\x48\xba\xa0\xdc\x03\xc0\xf7\x7d\x4c\x4c\x4c\xf0\xe6\xcd\x9b\xe9\xea\xd5\xab\x08\xc3\x50\x02\xc0\xf1\xe3\xc7\x59\xe9\xf2\x88\x99\x3d\x22\x0a\x18\x1c\xac\x57\xe2\xb8\xde\xf5\x26\x36\x35\x83\xdb\xcc\xc2\x87\x7e\x11\xdc\xf8\xe2\x30\x3d\xb0\x4d\xc1\x35\x35\x66\xf4\x3c\x6e\xfd\x72\xa6\xf1\x83\x6b\x23\xbd\xf7\x41\xb8\x41\x44\x0d\x24\x67\xb0\x7a\x48\x16\x47\xd6\x8b\xb4\xd2\x27\x96\x24\x38\x58\xae\x46\x6b\x1b\xd7\x83\x6d\x23\x1d\x6f\x73\x52\xa4\x36\xaa\x4c\x21\x97\x2e\x1e\x50\x0b\x48\xd6\xeb\x0d\x08\xe8\x79\xb2\xf3\xd6\xf6\xe6\x8f\x4e\x6d\x6e\xfd\x82\x05\xae\x01\x58\xa6\xe4\x9a\x91\x2e\x11\xc9\x67\x9e\x79\x26\xd6\xf0\x47\xff\x42\xa8\xe3\xc9\x35\x39\xef\x53\x92\xc6\x71\x8c\x43\x87\x0e\xe9\x13\xb1\x66\x05\x1c\xea\x89\xba\x27\x29\xc8\x4c\x17\xd3\x89\x54\x16\xce\xe8\x36\xb4\x58\x62\xef\x27\x6b\xc4\xcd\x14\xc0\x68\x97\xe2\x95\x9e\xc7\x19\xdb\x0d\x00\x72\x75\x75\x15\x17\x2f\x5e\xd4\x6d\x75\xdb\x9c\xd7\x87\x22\xd1\x25\xb7\xbf\xb7\x18\x8a\x88\x47\x9e\x98\x93\xc7\x86\xbb\x21\x93\x9f\x88\xcc\x29\x4d\x7d\x2e\x88\x99\xab\xc3\xcb\xf1\xee\xda\x52\xf4\xdb\x04\xf8\xf6\x0a\xa7\xb9\x3c\xed\xfc\x59\x07\xed\x31\x5e\x8f\x41\xb2\x00\x71\x66\x5c\xf4\xa9\x4e\x4e\xff\x59\x5c\x04\x65\x44\xca\xe4\x47\xed\xc5\x30\x43\x1f\xd7\xee\x1b\x7f\x2b\xae\xd4\xe5\x3b\xc7\xaf\xf4\x3e\x79\xa5\x2e\xe6\x90\x9c\x6e\x8e\x88\x28\xda\xbc\x79\xb3\xdc\xbc\x79\x33\xe6\xe6\xe6\x72\x61\x00\x00\x0f\x3d\xf4\x10\xf6\xee\xdd\xab\x2d\x2a\x93\xd3\xa2\x8c\x8a\x48\x7c\xdc\x6e\xbf\x63\xa1\xfa\xd0\xd4\x6a\xf9\xe1\x5a\xe8\xed\xf3\x24\x8d\x11\x10\x30\x10\x31\x71\xa7\x27\x78\x7e\x65\x28\x3a\x7c\x7e\xa2\xf3\xf2\x7b\x9b\xd7\x8f\xae\x95\xe3\x15\xb5\xf8\x44\xcc\x1c\x6e\xdf\xbe\x5d\x7e\xf9\xcb\x5f\xc6\xb3\xcf\x3e\x0b\x00\xe2\xae\xbb\xee\x32\xba\x05\x4a\x1c\xdc\xb4\x88\xa8\xd9\x13\xbc\x74\x78\xc7\xda\x4f\x37\xae\x07\x33\x9b\xd6\x4a\xbb\x6d\x78\xf7\x6b\x8a\x15\x81\x75\xce\x61\x91\x1a\x1b\x49\x88\x4e\x6d\x6c\xbd\x7e\x76\xb2\xfd\x16\x83\x1b\x84\xc4\xdc\x1c\x0e\xee\xa9\xef\x23\x65\x8a\xde\x24\xa2\x95\x46\x25\xbe\xfc\xfa\xcc\xea\x8b\x8f\x7c\x30\x56\xdd\xbc\x16\xec\xce\x6c\xb9\x66\x60\x9f\xfc\xea\x03\x70\x66\x18\x19\x88\x85\x0c\xdf\xdd\xb2\xfe\xda\xf1\xa9\xb5\x7f\x8e\x05\x16\x99\xb9\x41\x89\xc9\xbb\x16\x97\x8c\x8e\x05\xfd\xf3\x25\x43\x44\xf2\x94\x4e\xb9\xc1\x96\x29\x01\xf8\x41\x44\xc3\x42\x9d\x51\x21\xa4\xc4\x40\xe5\x86\x4d\x0a\x4c\x82\xa1\xc6\x2a\x3d\x23\xb2\x58\x88\x0a\x60\x3d\x90\x4b\x8c\xd4\xc1\x6a\x8e\xe6\xd7\x15\x31\xf2\xde\xff\x25\xf9\xdd\x50\x44\x50\xf2\x08\x81\x0b\xd8\x22\x45\x6d\x9e\x68\x64\x7f\x23\x91\xc0\x58\xee\xd8\xb1\x43\x23\x90\x0f\xa0\x42\x8c\xda\xf8\x95\xde\xa7\xbc\x1e\xa6\x00\x8b\x2d\xb6\x44\xbe\x64\xe1\xa1\x14\x69\xa1\x56\x21\x35\x99\x09\x29\x31\xcf\x70\x24\x8a\x58\xa4\xdc\x83\xad\x03\xc9\x32\x49\x36\x67\xc2\x7d\x98\xcb\x99\x23\x13\x6a\x97\x32\x18\xbd\x16\x7d\x26\x68\xf1\x26\x30\x2a\x50\x0e\xb2\x89\x08\x3b\x76\xec\x70\xe1\xa8\x61\x04\x00\x19\xb3\x7a\x66\xae\x80\x51\xab\x75\xbd\xc9\x4f\x9c\xdd\xf0\xe5\xcf\xbc\x3b\xf1\xcd\xdf\x98\x1f\xfe\x2f\xe3\xad\xd2\xe7\x83\x58\xec\xf6\x98\x26\x89\xa9\x2e\x18\xe3\x5e\x2c\xa6\x86\x22\xef\xc0\xd6\x46\xf9\xd0\x47\x2e\xd6\xff\xfb\xbf\x7a\x7b\xe3\x7f\xf9\x8d\xf9\xe1\x8f\xfa\x32\xb1\xd4\x54\x4a\x66\x9f\x88\xa0\x0e\x96\xc9\xf7\xde\x7b\x4f\x86\x61\xa8\xeb\xd7\xb7\xc9\x37\x41\x58\x59\x19\x8a\x66\x5f\xda\xbd\xfc\x57\x4b\xd5\xe8\xb2\xe1\xf8\x35\x31\xb5\x7a\x6f\x13\x58\x9b\xe0\x32\x01\x92\x58\x7e\x30\xd1\x3e\xfa\xab\x99\xd5\x1f\x46\x1e\x2f\x29\x4e\xc3\xdc\x79\x4c\x44\xf2\x9b\xdf\xfc\xa6\x7c\xe6\x99\x67\x6c\x45\x69\xa8\xf2\xac\x80\xb0\x38\x5f\x0f\xdf\xfb\xf9\xde\xe5\xbf\x9e\xdd\xd0\x39\x19\x0b\x8e\xb4\x28\xe4\x12\x0d\x7b\x2a\xb1\xe2\x90\xba\x25\xd9\x3a\xb2\x7d\xed\x67\xbf\xd8\xb5\xfa\x0f\x1d\x5f\xce\x01\x58\xa1\xf4\x42\xb3\x10\x80\x54\x97\x43\xdd\x4c\x0f\x27\x80\xc4\x03\x98\xd1\x46\x38\x58\x60\x82\x72\xde\xa3\x3d\x47\x0d\x01\xa8\x6f\x5f\xa9\xdc\x3b\xbd\x52\xf9\x4d\xc1\xe4\x69\xcd\x58\x66\xc1\x23\x38\x22\x8a\x2d\x8b\xa7\x79\x52\x8e\x23\x4b\x5c\x2e\x8e\x77\x7e\x7d\x69\x43\xf7\x38\x08\xcb\x44\xb4\xae\x29\xf3\x5f\xfe\xe5\x5f\xc6\x56\x2d\xb6\x98\xa5\xd9\xdd\x41\x4a\x5e\x76\xf2\xdb\xc2\xb9\x6e\x3d\x5b\xe9\x36\xf1\xb0\xf3\xe8\x7a\xec\x67\x72\x9e\xed\xb2\xd9\xf9\xde\x1e\x0c\x77\xc8\xf9\xc9\x27\x9f\x14\x23\x23\x23\xa0\xc4\xe9\x4e\x00\x46\xad\xdc\xe6\x1d\x9b\x3f\x08\xff\x8d\xd7\xc3\xa4\x51\xd0\x59\x30\xa6\x0c\x50\xd5\x93\xd6\xf4\x1b\x71\x25\xe9\x7a\xca\x66\x5b\x86\x60\xa6\xa5\xe4\xac\xa8\x9a\x3d\x47\x56\xc1\xa6\x44\x19\x6b\x79\x33\xec\xb1\xbd\x50\x10\x00\x11\x63\x43\xb7\x26\x8e\xb5\x47\xc5\x15\x22\xea\x42\xc9\xf4\xb5\x5a\x8d\xdf\x7e\xfb\x6d\x17\xb6\x98\x9c\x9c\x14\x5f\xfa\xd2\x97\xc8\xf7\xfd\x54\xbf\x03\xaa\x6d\x6a\x96\xa6\x7f\xfb\xd4\xf8\x7f\xd8\x75\x63\xe8\x7f\x0e\xa4\x98\x22\xa6\x94\xe8\x68\x0e\x5d\xb5\x47\x8b\x0e\x82\x51\x1e\x8a\xbc\x3b\x77\xac\x94\x1f\xae\xf6\x44\xf3\x6a\xbd\x7b\x29\x12\x1c\x01\x60\x4a\x1a\x2b\x0f\x1e\x3c\x48\x47\x8e\x1c\x61\x25\xae\x18\x20\x5a\xca\x4a\x5a\x2f\xc7\xbd\x2b\xa3\xdd\x2b\xf5\xae\x3f\x5a\xef\xf8\x13\x82\x13\x8b\x52\x50\x2a\xba\xa4\xa2\x63\xca\x71\x31\x01\x5d\x5f\xb6\x4e\x6e\x5d\xff\xa7\x5f\xdc\xb6\xfa\x62\xab\x2c\x2f\x00\xb8\xc6\xcc\x4b\x8a\x9b\xe8\x02\x88\xd6\xd6\xd6\x78\x76\x76\x96\x98\x99\xb6\x6f\xdf\x8e\x6a\xb5\x6a\xc6\x50\xe3\x05\x83\xb9\x1d\xc8\xf6\xc5\xf1\xce\xa5\x56\x10\xaf\x8f\x76\xfc\xb1\x72\x24\xaa\x94\xca\xa0\x0e\x0a\x30\x7a\x1e\x77\xae\x8c\x85\xa7\xff\xf9\xf6\x95\x17\xdf\xd9\xba\xfe\x8b\xd8\xc3\x1c\x11\x5d\x03\xa0\x2f\x35\x6b\x21\x71\x8a\x25\xbf\xf5\xad\x6f\xd9\x38\xad\x4b\x71\x71\x34\x23\xaa\xe4\x6e\xb9\x00\xc0\x47\x3e\xf2\x11\x93\x66\xc4\x15\x86\x28\xc7\xa2\x4a\x0c\x5f\x2f\x7d\x19\x02\xa1\x07\xd1\x5d\x0d\xad\x5d\x14\x13\xdf\xc7\xee\x01\x0c\xc8\x76\x49\x36\x60\x71\x1b\x4e\x3e\x57\x3c\xb0\xdb\x7d\x33\xf1\x23\x8f\x82\x62\x40\xde\x41\xca\xe3\xbc\x7c\xee\x2e\x4c\xd1\xf7\x6e\x5b\x01\x40\xd4\x6a\x35\x0c\x0f\x0f\x03\x29\x77\x17\x10\x50\x1d\x59\x8c\xf6\xfb\x5d\x9e\xd6\x4a\x4e\x13\xcc\x24\xcf\x72\xcf\xb6\x3e\x83\xd5\xd2\x4f\x8a\x10\xa4\x96\xa3\xd9\x31\x53\x1f\xa4\xc8\xef\x88\x3d\x36\xfe\x68\xe9\x39\x6f\x47\xcd\x48\xd6\xa9\x1f\xd9\x60\xf4\x5a\xf4\xc8\xd2\xb6\xd2\x1b\x52\x70\x43\x71\x51\x51\xad\x56\xd3\xbb\x1d\x19\x18\x7c\xe6\x33\x9f\x41\x10\x04\x56\xff\xa9\xb6\xa9\x59\x9a\xf9\xed\x53\xe3\x7f\x36\xb1\x5e\x7a\x02\x20\x91\x48\x60\xf6\x96\x28\x0c\x0d\xd3\x4a\x63\x7b\xf9\x2b\xc5\xb4\x7d\xdf\xd5\xda\x9f\x95\xa4\x18\x79\xf5\xf6\xe5\xef\x84\x3e\x2f\x29\xd8\x4b\x66\x96\x4f\x3e\xf9\xa4\x38\x72\xe4\x08\x3a\x9d\x0e\x2a\x95\x8a\xe1\x3a\x14\x67\xe0\x33\xb3\x7f\x63\xb8\x27\x7f\x7c\xc7\xd2\xfa\x1d\xd7\xab\x07\xef\x9e\x1f\x7e\x60\x62\xbd\x34\xe5\x31\xf9\x19\xfd\x86\x66\xf6\x88\xd1\xf1\x65\xeb\xca\x68\xf7\xec\xc9\xad\xeb\x6f\x5c\x1a\xeb\xbe\x13\x0b\x9e\x63\xe6\x05\x22\x5a\x22\xe7\xfa\xd2\xb3\x67\xcf\x9a\x4b\x92\x4e\x9e\x3c\x89\x47\x1e\x79\x44\x52\xb2\x55\xdb\xd1\xe6\xe0\xaa\xaf\xb2\x5d\x92\xe1\xb1\x6d\xcd\xc6\x07\x93\xed\x77\xa7\x56\xcb\xb7\xed\x5c\xaa\xec\x1d\x6b\xfb\x93\x95\x9e\xa8\x7a\x4c\xa2\xe7\x71\xb4\x56\x8e\x56\x16\x46\x7a\x97\x2f\x8d\x75\xce\x5d\x1b\x09\xcf\x87\x1e\x2f\x00\xbc\x08\xd0\x02\x80\x25\xa8\x9b\x10\x91\xe8\x9d\xec\xeb\x26\x8b\xe6\x87\x8e\x13\x40\xea\xc8\xa7\x88\x1d\xc7\xaf\x7f\xfd\x6b\xa9\xf7\xb9\xb5\x8e\x43\x30\xfc\x20\xa2\x1a\x99\x42\x2d\xb9\x8e\x12\xb4\x4a\xe2\x32\xb8\x99\x06\x05\xd8\xcc\x04\x30\x6b\x2e\x03\x02\x68\x97\xe2\x26\x1c\x8b\xd1\x9c\x76\xea\x8e\xb9\x22\xc1\x20\xe2\x51\xa4\xe3\x18\x54\x66\xde\x7b\x5e\x3b\x06\xd5\xe1\xc6\xe7\xbd\x63\x6c\x6c\x0c\xa3\xa3\xa3\x40\xaa\x1c\x0b\x20\xb9\x5a\xbb\x11\x1f\x24\x46\x45\xdb\x4f\xa4\x93\xd7\x5e\x66\xf4\x4e\x47\x2a\xa6\xc0\xa4\xba\x94\xc5\x7e\xa5\x54\xf7\xa1\x42\x76\xb7\x8c\x53\x1a\xe0\xfa\x95\xcd\x84\x94\x58\xa5\xe5\x24\x44\xad\xb2\x26\xf7\x07\x6d\x39\xde\xad\x79\x8b\x48\x75\x37\xe2\xe2\xc5\x8b\x11\x9c\xf1\x52\xce\xb0\x8d\xdd\xca\x70\xe8\x6d\x7a\xf0\xfc\xe8\x37\x26\xd6\x4b\xbf\x4d\x4c\x42\xb3\xe0\x76\x3d\x7d\x0c\x97\xad\xa2\x51\x09\x1e\x63\x6c\xcf\xf5\xa1\x43\x6b\xe5\xe8\xc6\x1b\xd3\x8d\x17\x63\x62\xbd\x20\x85\x53\x53\x53\xf2\xc5\x17\x5f\x94\x17\x2f\x5e\x14\x77\xdc\x71\x87\xde\xd5\x08\x01\xb4\xd4\x38\x00\x84\xa8\x13\xc8\xe8\xc4\x54\xb3\xf1\xc1\x44\xfb\xfd\xad\x8d\x60\x66\x6b\xa3\x3c\x33\xb9\x5e\xda\x54\x89\x44\xc5\x93\xe4\x47\x82\xa3\xd5\x4a\xb4\x72\xad\x1e\x5e\xbe\x52\xef\x9e\x5b\x1a\xee\x5d\x09\x3d\x5e\x00\x61\x09\xc0\x02\x18\x4b\x5a\xb7\x00\xb5\x30\xae\xaf\xaf\xdb\xb7\x10\xe2\xf4\xe9\xd3\xd8\xb4\x69\x13\xee\xba\xeb\x2e\x8d\xf3\x66\x56\x2b\xfd\x43\x08\xa2\x56\xa3\x1c\xaf\x34\x36\xb5\xae\x9c\x99\x6c\xbf\x55\x8a\x69\xc4\x97\x14\x10\x20\x24\x21\xea\x79\x72\x3d\x12\xdc\x92\x94\x88\x5b\x00\x56\x00\xd2\x75\x9b\x9b\x10\x39\x39\x69\x2e\x9f\x7b\xee\xb9\x3c\x7d\x60\xe1\xbb\x7b\x93\x5b\xdf\x4a\xaa\x6f\xaf\xb2\x95\xa3\x82\xc9\x2f\x47\xa2\xe6\xb2\xc5\x7d\x08\x44\xf6\x9b\x96\x03\x91\x9e\x9f\xb0\x06\x38\xc5\x7f\x82\x04\x47\xa1\xcf\xeb\x28\x26\x16\xae\xae\xa2\x48\x09\x79\x33\xce\xc3\xe5\x5a\xf2\x42\x1e\x51\x71\xdb\x91\xc7\x5d\xb8\x75\xe7\xb5\xa5\xaf\xac\x0d\x1b\x36\xd8\x71\x89\x53\x9e\x08\xb5\xa1\xb5\x78\x1f\x90\x9d\xcc\x19\xad\xbd\x9d\x96\xcb\x2d\x58\xf1\x94\x1d\x9f\x6c\xb9\x76\x91\x96\x03\x1a\x23\x8d\xa4\x53\x91\x9d\x05\x20\x95\x80\xd2\x2b\x3c\xf5\x5a\xe0\xf7\x78\x7b\xa5\xc9\xdb\xbb\xc3\x3c\xcb\xc9\x36\x69\x08\x24\x97\x1d\x7d\xff\xfb\xdf\x07\x00\xb1\x61\xc3\x06\x7c\xf1\x8b\x5f\xd4\x9c\x98\x60\xe6\x8a\x00\xd5\xee\x9e\xaf\x3e\xba\x7d\xa5\xf2\x79\x52\x1c\xb2\x45\x96\x4c\xdb\x32\xcb\x50\x66\xc5\xa2\x54\x17\x41\x40\x29\xa6\x2d\x77\xcf\x0f\x3f\x3d\xbb\xa1\xf3\xee\x95\x7a\xf7\x34\xac\xed\xd0\xcf\x7d\xee\x73\xe2\xe7\x3f\xff\x39\x88\x08\x7b\xf6\xec\x91\x94\xb8\x72\x30\xb6\x15\x6a\x8c\x42\x26\x34\x9b\xe5\x68\xe9\xcc\xc6\xf8\xd2\x07\x93\xed\xb7\x82\x58\x54\x05\xa3\x4c\x0c\x9f\x09\x51\x4f\xf0\x7a\xe4\x71\x8b\x81\x26\x83\x1b\x44\xa4\x26\x2e\x1a\x44\xd4\x60\xe6\x26\x5b\x77\x1e\xbf\xf0\xc2\x0b\x7d\x8a\xe1\xd7\x5e\x7b\x0d\x5b\xb7\x6e\x15\x1b\x36\x6c\x88\xd4\x51\x8f\x8e\xe2\xbc\x35\x17\xd2\x54\xe5\xd5\x22\x21\x2b\xb1\x47\x15\xa8\x13\xae\x4a\xd1\xa9\x39\xa6\x26\x27\x37\x02\xe8\xdf\x16\xd4\x85\x66\x00\xa4\xe5\xe1\x3c\x2f\xe4\xe1\x6a\x86\xe3\xc8\xcb\x94\x29\xcc\x46\x2c\xc1\x89\xc9\x79\x86\x69\xb0\xa5\x74\x00\x19\xd3\xb6\x74\x08\xb3\x83\x6a\x3d\xdb\xd1\x52\x70\x18\x7a\xb2\xc3\x60\x7d\xb8\x47\xba\x6d\xc8\x09\x83\x76\x2d\xdc\x7c\xff\x7f\x39\x14\xa0\x9f\x58\x0c\xe2\x46\xf2\x76\x57\x06\xb5\x55\xec\xd9\xb3\x47\x5b\x89\x0a\x28\x5f\xa1\x41\x5b\x4e\xfa\x5d\x9e\xb6\x44\x57\x0b\xae\xb6\x3a\xca\x81\x8f\x65\x6d\x97\x92\x19\x77\x07\x2b\xcd\x97\xe5\x01\xad\xf1\xcb\xec\x12\xa4\xf9\xfb\xbe\x60\xcb\xd0\xdd\x6c\x0d\xab\x26\x48\xae\x0e\xad\xc5\xb7\xaf\x6e\xf2\x8e\x92\x20\x6d\xb1\x2c\x46\x46\x46\xe4\x8e\x1d\x3b\x70\xe9\xd2\x25\xec\xde\xbd\xdb\x28\xe1\x91\x1c\xcd\xaf\x8c\xb5\xfc\xa9\x3b\x16\xaa\xbf\xe7\x31\xc6\x32\x5d\xb4\xf4\x36\x96\x4a\xa1\x2f\xd8\x92\x1d\xab\xde\xd7\xba\xde\xdd\xfb\xae\xd6\x3e\x37\x3f\x12\xfe\x77\x99\xda\x52\xc8\xad\x5b\xb7\xca\x56\xab\x25\x5f\x79\xe5\x15\x00\x10\x7b\xf7\xee\x95\x48\x94\x97\x40\xba\x88\x29\xa5\x29\xd5\x98\xb9\x26\x05\x55\xdb\x14\x07\x4a\xfc\xd2\xf9\x22\x35\xd1\x5b\x04\x6a\x22\xb9\x44\x4c\x4f\xda\x8e\x2a\x33\x02\x20\xdf\x79\xe7\x1d\xb7\xc9\x06\x9f\xbe\xff\xfd\xef\xcb\x2f\x7e\xf1\x8b\x62\x7c\x7c\x5c\xdb\x79\x68\xc5\x69\x48\xc9\x0e\x55\x13\x89\xb2\x57\x13\x0d\x5f\xb7\x55\x95\xaf\x89\x47\x4b\xb5\xc7\x78\x6b\x43\x3e\xd1\x18\x24\x82\x67\x38\x12\xf7\xd2\x69\xfd\xdb\xc7\x5a\xbb\x96\xa3\xc4\xe4\xdb\xac\x60\x06\x85\xf4\x68\x51\x56\x41\x6a\xd8\x5f\xbd\x50\x58\x8a\x52\xb2\x0a\x91\x84\x28\x12\x09\x85\x75\x3b\x33\x3d\x3d\x2d\x66\x67\x67\x07\x4d\xee\x9b\x51\xcf\xa2\xf4\x5b\x15\x6b\x6e\xe5\xdb\x5b\x25\x3e\xf6\xf7\x66\x0c\x2c\x38\xfb\x00\x82\xa0\x25\x37\x09\x89\x5a\x92\x95\x33\xb3\x41\x8b\x0e\x89\x55\xa2\xe3\x96\x31\x33\x61\xd4\x33\x3b\x8a\x3c\x40\x4d\xc0\xfe\x4b\xb1\x6c\xc5\x9f\xce\x97\x1d\x70\x57\x1c\xd5\x63\x9e\x72\x2c\xa0\x54\xa4\x0a\x5a\x72\x9a\x18\x15\xa9\x8e\x92\x13\x11\x3c\xcf\x43\xa5\x52\x01\x00\xb9\x7b\xf7\x6e\x61\x11\xcd\x80\x99\xab\x33\x4b\x95\x03\x63\x1d\x7f\xbf\x4d\xa6\x4c\x9b\xb8\x80\x60\xd8\xc8\x64\xa9\xa8\x8d\x09\x0a\x51\xb0\x6d\xb5\xfc\x5b\x1b\xda\xa5\xbf\xbb\x31\xdc\x33\xba\x06\x66\x96\x9f\xfa\xd4\xa7\xc4\x8f\x7f\xfc\x63\xf9\xda\x6b\xaf\x01\x80\xcd\x79\x68\x82\x10\xaa\x89\xd8\x44\xea\xb8\x28\x00\x8c\x13\x6f\xa8\xd5\x3e\xd4\x93\xd5\x9a\xb4\xfa\x7b\xc9\xcc\xf2\xdd\x77\xdf\xc5\xeb\xaf\xbf\x3e\x90\x33\xfd\xe1\x0f\x7f\x88\xf5\xf5\x75\xf9\xb5\xaf\x7d\x0d\x9e\xe7\x69\x02\x12\xa9\x36\xb5\x14\xb1\x08\xac\x6d\x7b\xcd\x71\x68\x3d\x4d\x44\x44\x21\xa5\xd7\x51\x46\xcc\x2c\xc3\x30\xcc\x33\xc3\x47\x4e\x1b\x72\x7f\x5d\x67\xc5\x76\xc8\xac\x8a\x59\xa2\x91\xe8\x39\xc0\x59\x5c\xea\x0f\x59\x44\xd6\xe3\xc9\x9a\x0d\xb6\xd6\x3e\xc3\x0a\x03\x60\xb0\x64\x82\x4d\x65\x93\x7c\xd9\x83\x40\x79\x4a\xc8\x3c\x85\x63\x1e\x60\x06\x7d\x5b\x14\x6e\xa6\x4c\x2d\xd2\x7b\xe4\xe9\x50\x0a\xbf\x19\x19\x19\x01\x2c\x1d\x00\x00\x3f\xe8\xf0\x56\x30\x84\xad\x77\xd0\x2a\x4a\xc3\x45\x50\x02\x51\x76\x46\x43\xaf\xb2\x86\x4b\xb0\x95\x97\xd0\xf3\x2a\xab\xdf\x20\xab\x7c\x3b\x24\x12\xa6\xfa\xd6\x10\x93\x74\x3a\xa7\x04\x26\x5b\x92\xce\x52\xea\xf0\x16\x92\xa8\x90\x97\x78\xbc\xd2\xb9\xce\x9c\x39\x23\xef\xbe\xfb\x6e\x31\x32\x32\xa2\xc7\xd8\x07\x10\x94\x24\xd5\xa6\x56\xcb\x1f\xf2\x12\x4f\x59\x7d\x38\xa6\xcd\x4d\xfa\x44\x26\x28\x82\x6a\x7f\x64\x11\x3c\x02\x50\x0d\xbd\x99\xad\xab\xc1\x9d\x37\x86\x7b\x73\x48\xe4\xfd\x88\x88\x64\xa9\x54\x92\x9e\xe7\x89\x28\x8a\xf0\xca\x2b\xaf\x48\x22\x12\x7b\xf6\xec\x31\x97\x37\xab\x95\xdc\x47\xb2\x92\xeb\x55\x3e\x73\x5b\x80\xb5\xda\xbb\x7f\x92\x88\xa2\x76\xbb\x0d\xcb\x9f\x4c\xde\x82\x62\xd2\xd4\x45\xea\x78\xe3\x8d\x37\x70\xcf\x3d\xf7\xc8\x91\x91\x11\xbd\x98\x46\x94\xf8\xcf\x30\xa2\x9d\x5b\x96\xb5\xf0\x46\x76\xd9\xe7\xcf\x9f\xc7\x89\x13\x27\xb0\xb0\xb0\x50\x44\x18\xe0\x3c\xf7\xcd\x1f\xdf\x89\x74\x59\x6b\xcd\x6d\x20\x3b\x79\x05\x32\xce\x45\x00\x4b\x47\x91\x55\x48\x29\x40\xaa\x6f\x6d\xb6\x32\x2d\xcf\x5e\x1d\xb5\x68\x22\x29\x39\x0d\x6b\xb1\x89\x20\x22\x58\xdc\x46\x91\x18\x00\x2b\xfd\x5f\x92\x96\x07\x3c\x0c\x78\x1f\x24\xbe\xe4\xd5\xe7\xa6\xe7\x12\x20\xe5\x50\x46\xa7\x27\x77\xf3\x86\x3c\x0e\xa4\x4e\x86\x53\xa2\x4b\x16\xbc\x2d\xfb\x4d\x9b\x05\x4c\xb7\xb4\x4c\x1d\xc4\x94\x7b\xac\x22\x29\x99\xad\xb2\xac\x22\xf4\xa1\x36\x43\xec\x55\xbe\xcc\x1d\x1f\xba\x10\x5b\xf4\xd1\x63\xcb\xf0\x7b\x3c\x26\x62\xae\xc8\x52\xea\x83\x42\xfd\xca\x7d\xfb\xf6\x25\xf5\xa5\xfe\x5e\x2a\xc3\xa1\x37\xbe\xa1\xe5\xef\x25\xb5\x8b\x62\xda\x6f\xf0\x4a\x8b\x4c\x40\xa6\x27\xae\x52\xde\x2c\x56\x69\xbc\x27\x51\xdd\xdc\x0c\x7e\xe3\x24\xaf\xbf\x8e\xf4\xf2\x75\x4c\x4d\x4d\x61\x72\x72\x12\xd7\xae\x5d\x93\x00\xf0\xf2\xcb\x2f\xcb\x2b\x57\xae\x88\x07\x1f\x7c\x50\x06\x41\x60\x70\x44\x11\x07\xdd\xfe\x22\x45\xb8\x9e\xb4\x00\x20\xa5\x94\xf2\xd9\x67\x9f\x95\x8e\x1e\x2b\x4f\x45\xe0\x72\xfe\x38\x79\xf2\xa4\x3c\x77\xee\x9c\x68\xb5\x5a\xf2\x8f\xff\xf8\x8f\x51\xad\x56\x33\xdc\xa9\xd9\x45\xcb\xfe\x4a\x6b\xee\xca\x56\xab\x85\xef\x7c\xe7\x3b\x45\x2a\x89\x9b\xcd\xab\x0c\xbe\xfa\x83\x12\x75\xc8\xac\x46\xc9\x40\x09\xc1\x64\x58\x33\x17\xf9\xc8\xc1\x5a\x83\x64\x9a\xa5\x26\x18\x84\xcb\xae\xa0\x50\x22\x0c\x24\xab\x36\x58\x1c\x87\xb4\x38\x8e\x41\x0a\xd0\xa2\x49\x3a\x48\xcc\xd0\xdf\xdd\x4c\x9c\x41\x4e\xfa\xad\x22\x41\x51\x39\x7d\xf9\x2c\x78\x0b\x00\xbe\x88\xb9\x6a\xa6\xab\xb6\xb3\x30\xcf\xc8\x1a\x79\x9a\x49\x6b\x89\x1b\x7a\xd2\xeb\x93\xae\x19\xc2\xe2\xe4\x57\xf5\x68\xb2\xa2\x4d\xcf\x93\x54\x36\xac\xbf\x19\x35\x7b\xdb\x17\xe9\x18\xa6\x9c\x86\xc5\xed\x48\xae\x10\x1b\xb6\xde\x1c\x4a\xb3\xae\xa7\x34\x96\xb2\x00\x7c\x3f\x16\xf5\x20\x16\x75\xd8\x75\x69\xee\xc2\x3a\x33\x62\x38\xa1\xcc\x69\x5f\xca\xfe\x30\x92\x6d\x69\x26\xe5\x01\x1c\xa2\xd6\xf5\xb6\x0b\x46\x45\x0a\xb2\xdb\xd4\x37\x86\xa7\x4f\x9f\xc6\xf2\xf2\x32\xee\xb9\xe7\x1e\x4c\x4f\x4f\xcb\x52\xa9\x64\x4f\x5a\x23\xc6\x3b\x3a\x38\x69\x89\x0d\x58\x5b\x5b\xc3\xd1\xa3\x47\x01\x00\xcb\xcb\xcb\xb7\xba\x38\x65\x42\xab\xd5\x02\x12\xdd\x07\xba\xdd\xae\x04\x20\xff\xe4\x4f\xfe\x44\x78\x9e\x67\x9c\x24\x59\xe2\x12\xe2\x38\x86\x94\x12\x17\x2f\x5e\xc4\xcb\x2f\xbf\x5c\xb4\xe0\x15\x71\xc5\x83\xda\xd4\xa7\xe3\xb8\xd9\x2a\x9e\xa4\x31\x04\x25\x0e\x5d\x93\xc6\xa6\x6b\x8b\x0a\xe9\xa0\x26\xb8\x4b\x36\x2e\x9a\xf4\x8c\x81\x98\xd9\x88\x4f\xb2\x32\xa5\x62\x8a\x6b\x48\xd6\xd7\x9e\xfe\xdf\x3e\x1d\x8d\x13\x7f\x33\x0e\x02\xe8\x87\xc5\xcd\x58\xba\x3c\xe0\xe7\xd5\x69\xc3\x3a\x03\xe7\x5d\xbb\x76\xb9\xc4\x2e\x81\xb5\xe4\x4a\xba\x73\xa0\xfe\xb3\x45\xa0\x35\x71\x80\x7d\x59\xb7\x9a\xd0\x66\xf2\xaa\xfc\xfa\xc8\x37\xd9\xf0\x67\x67\xac\x32\xd4\x01\x5a\x14\xb2\x79\xfd\x54\xb7\x62\xad\xee\x46\x21\x6a\xb3\x33\x96\x87\x7b\x89\x80\xd8\xac\xee\x06\xe6\xcf\x3c\xf3\x8c\x7b\xb7\xad\x00\xe0\xfb\x12\x55\x4f\x92\xb6\x84\xca\x96\x6f\x35\xd0\xd0\x0a\x13\x28\x7d\xb7\xf4\x20\xb6\x7a\x98\xc1\xf0\x63\xaa\x0a\x46\x10\xa7\x62\x21\x00\x68\x6e\x23\x83\x47\xd7\xaf\x5f\x17\x2f\xbd\xf4\x92\xce\x22\x1f\x79\xe4\x11\xdc\x71\xc7\x1d\xaa\x69\x59\xab\x66\x0d\xd7\x9c\xbb\x76\x8b\x74\x5d\x79\xab\xbb\x8b\x63\x26\x4d\x11\x0d\x00\x10\xca\x93\x3c\xee\xbb\xef\x3e\x71\xec\xd8\x31\x93\xef\xbe\xfb\xee\x13\xe7\xcf\x9f\xc7\xea\xea\xea\xad\xe8\xdb\x6e\x36\x37\xfa\xde\x8b\xec\x38\xdc\xc6\xe7\xb3\xe0\x9a\xfd\xb3\x29\xbd\xf6\x23\x4a\xe9\x2a\x94\x19\x3c\xeb\x1c\x43\x86\x57\x31\x04\xc4\x24\xbb\x4e\x64\x41\x44\x5a\x39\xea\x76\xea\x66\x3a\x0d\x37\xb8\xfa\x10\xa0\x38\xbf\x4b\x7c\xdc\x50\x44\x70\x06\xe5\x71\xf3\x16\x8a\x86\x20\x80\x05\x45\x66\x52\xab\x60\x6f\xcb\x26\x13\x3b\x99\xd4\xda\x54\x3c\x9d\xe4\x69\x39\x3a\x2e\x65\xf5\x53\xa2\x61\x9e\x13\x36\x50\x15\xed\x28\xb1\x8c\x0d\x89\xce\xa2\x97\x74\x4e\xb9\x47\x9b\x18\x29\xf6\xd1\x14\x27\x10\x69\x83\x4e\x7b\x4c\x73\x88\x06\x00\xf8\x92\x20\x94\xc8\x6a\x57\x0a\x8b\x16\x5a\x7a\xd0\x2c\xc7\x53\x68\x43\x64\xc5\x45\x1e\x47\x92\x12\x22\x65\x29\xff\xf1\xe4\x93\x4f\x8a\x17\x5f\x7c\xd1\x6e\x0b\xe0\xe0\xd8\xab\xaf\xbe\x2a\xb5\x72\xf1\xb6\xdb\x6e\x13\xe7\xce\x9d\x93\x1f\xfa\xd0\x87\xc4\x9b\x6f\xbe\x29\x85\x10\x42\x1f\xb7\x2d\x08\x83\x26\x73\x51\x9a\x1b\x9f\x89\xb3\x89\x06\x00\x4d\x44\x8a\x16\xab\xbc\x72\x8a\x74\x1b\x76\x9b\x4c\x5e\x97\x28\xb8\x93\xc9\x20\xb2\xfe\x03\x00\x58\xa2\x44\xf2\x6e\xab\xae\xd3\x1f\x15\x63\xad\x3e\xf6\xc2\x90\x55\x89\x93\xf3\x40\x9c\xb6\xcb\xae\xbf\x60\x47\x45\xff\xba\x5c\x93\x9b\xc7\x8e\x97\x28\x26\x16\x45\x80\x73\x83\x5b\x86\x5d\x77\x5e\xfd\x79\x83\x9f\x41\x80\x7e\x7d\x12\x84\xf4\xa0\xec\x09\x34\x33\x90\xfa\x70\xd5\x8e\x65\x98\x93\x95\xdd\x8e\x4b\x05\x8a\xe4\x43\x56\xac\x5c\x92\x87\xad\xf2\x9c\x05\x5b\xa7\x69\x31\x34\x33\x76\xe9\x60\x1a\xae\xc3\xce\x64\x4d\x6e\xd8\xdf\x32\x83\x05\x85\x2c\xfa\x61\xf9\xcc\x33\xcf\x98\x38\x9b\xb3\xec\x79\x1c\x86\x3e\xb7\x9c\xa6\x65\x69\xa1\x79\xc8\x9e\x9c\xd1\x84\xc5\x7c\xe7\x56\x0a\xc8\xb5\x72\xbc\x22\x15\xc1\xb3\xeb\x7d\xf1\xc5\x17\x5d\xb1\x35\xef\xd9\x8c\xef\xb9\x73\xe7\x00\x00\x6f\xbe\xf9\xa6\x04\x80\xc1\x34\x23\x5f\x0c\xc9\xa9\xa7\x88\x73\x2e\xc2\x21\xb7\x2c\x37\xb8\x78\x7f\x2b\x62\x79\x11\x7e\x17\xb2\x28\x7d\x19\x6d\xc0\x32\x00\x49\x1c\xf5\x61\x87\x4e\xd4\x8f\x96\x7c\x99\x96\x63\x3d\xb8\xa3\xa9\xe9\x12\x27\x3a\x14\xbb\x6e\x67\x70\x8b\x00\x63\x03\x71\x10\x40\xdc\xbc\x6e\x3c\x9c\xdf\x3c\x56\x32\x2f\x7f\x1e\xe1\xcd\x2b\x33\xf7\xf9\xfc\xf9\xf3\x19\xd3\x7a\xad\xdb\x89\x02\xd1\xd4\xab\xab\x3d\x69\x88\x6c\x0e\x40\x09\x2a\x56\x9c\xb1\x20\x55\x94\x9c\x48\x73\x06\xfa\xcf\x3e\x6a\x6f\xa9\x37\x75\x9a\x33\x3e\x94\x52\x01\x55\xa7\x15\x6f\x44\x03\xce\xcf\x0b\x42\x54\xa2\x16\x0b\x32\x7e\x36\x75\xb0\x6e\x30\x33\x71\xcc\x2c\xd7\x83\xb8\xb5\x3c\xd4\x9b\xb3\x0f\xda\xe5\x31\x11\x7d\x29\xae\xa4\x95\xf3\x5d\x2c\x38\x5c\x18\x09\x2f\x80\xfa\x26\x92\x7b\x3d\x00\x90\x3f\x8e\x79\x5c\xae\x9d\xe6\xc6\xdb\xe5\xd8\x1c\x6f\x5e\x5d\x79\xef\xb7\x22\xca\x0c\x5a\xf0\x06\xb5\xd7\xce\xe3\xe6\xcd\x95\x38\x5c\x03\x30\xe1\xfc\x02\xc8\x8a\x0a\x49\x60\x48\x82\x84\x8d\xa0\x7d\xcb\x40\x3f\x17\x91\x09\x9c\x13\x9f\x16\x21\x08\xa9\xcb\xf8\x01\xfa\x0d\xbb\xad\xb9\x6c\x3f\xfa\x29\xeb\xad\xb2\x85\x79\x44\x75\x90\x48\x87\x01\x79\xf3\xca\x2c\x62\x41\x6d\xae\x43\x02\x90\x61\x85\xae\x83\x20\xc1\x2c\xd2\x15\xdf\xf6\xa6\xa6\x1f\x6c\xb1\x02\x19\xf6\x3d\xf1\xbd\x91\x4d\x83\xf9\xd4\x7e\x06\xec\x81\xc8\x04\x9b\xe8\x67\xda\x69\x69\xb9\xcc\x37\x8e\xd8\x43\x8c\xde\x10\x2d\x4a\x81\xbe\x23\x04\x5a\xc7\x61\xf7\x99\x88\xa2\x9e\xc7\xad\x2b\x63\xdd\xf7\x67\x96\x87\x1e\xf2\x24\x02\xbb\x69\x59\x80\x39\xf1\x85\x79\xd2\x8c\xeb\x81\x5c\x9c\xab\x77\x2f\xc2\xda\x2a\xd5\x59\x95\x07\x2c\xa0\x1f\x77\x50\x10\x2f\x77\xee\xdc\x29\x00\xe8\x73\x37\x6e\xde\xbc\x71\xbe\xd9\x64\xcf\xc3\x13\xb7\x1c\xf9\xd0\x43\x0f\x89\xad\x5b\xb7\xe6\x12\x84\xef\x7f\xff\xfb\x12\x48\xbc\xc8\x29\xf1\x7e\x50\x1f\xdc\x36\xb8\xf5\x67\xd2\xf2\xb6\x63\x07\x72\x1e\x00\xa4\x3e\x26\x0c\x68\x1c\x4c\x09\x4a\x1f\xe5\x77\x07\x31\xa3\x24\xcd\x4f\x23\x26\xe1\x49\x73\xd3\x7a\x91\x7e\xc0\x6d\x9b\x2b\xc7\x15\xc9\x84\x79\xab\x85\x1b\x06\x51\x74\xf7\x5b\x37\xcd\x2e\xc3\xce\x93\x37\xb8\xb9\x44\xcc\x9e\x40\x00\x45\x61\x55\x2c\x49\x81\x8e\x17\xab\xcb\x81\x8c\x4d\x46\x86\x06\xa8\x8f\xad\x5f\xeb\x5c\x4b\x66\xd2\xb9\x66\xe2\x56\x79\x99\x41\xb3\x74\x1c\xa9\xd1\x95\x5e\xce\xb5\x6b\x04\xeb\x5b\xb6\xeb\x26\xeb\x7c\x4b\x92\x27\x1c\x12\xf3\xfa\x76\x74\xc0\xd1\xe5\x24\xef\x9a\xe3\xd2\x86\x52\xe1\xc5\x0d\x9d\x53\xfb\xae\x46\x73\xe3\xad\xd2\x8c\x69\x92\xd9\x61\x51\xb7\xc4\xab\x3e\xd8\x06\x85\x69\x50\xca\x64\x4a\xb9\x20\x09\x96\x57\x46\xbb\x27\x57\x2b\xb1\xbe\xfb\xd6\x1c\xa6\x74\x76\xee\xfa\xf0\x65\xf3\xe6\xcd\xb8\x76\xed\x9a\xfc\xdd\xdf\xfd\x5d\xb1\x61\xc3\x06\x94\x4a\x25\xb3\x8b\xa1\x7e\x05\x11\xa1\xdd\x6e\xa3\xd1\x68\xa0\xd1\x68\xe8\x1d\x0d\xbb\x4c\xfd\x0c\xdc\x1c\x37\xfa\x44\x85\x47\x1e\x79\x04\xd3\xd3\xd3\x62\x68\x68\xc8\xce\xaf\xdb\x20\x34\x1c\x95\xe7\x3e\xc9\xcc\x58\x58\x58\x10\x6f\xbe\xf9\x26\xae\x5e\xbd\x2a\x38\xf5\xb7\x51\xb4\xf0\x16\xf5\xdf\xb4\xc5\x47\xfe\xc4\x73\x3b\x61\x37\x0c\x0c\x48\x49\x88\x5c\xdd\x99\xbd\xe2\xe5\x5a\x96\xdb\x84\x24\xef\x99\x4c\xa5\xbe\x2f\x45\xe0\x10\x1e\x01\x40\x16\x58\x8e\xe6\x01\xa1\x08\x30\x79\x5c\xc3\xcd\xb8\x95\x3c\xd8\x14\x11\x2c\x20\x87\x18\xe4\xb4\x35\xf7\xd9\xe5\x36\x00\x8e\xc2\x21\xb1\x12\x05\xb4\x20\xda\x3c\xe3\x82\xd1\x3e\x32\x9f\x8c\x45\xd6\xb0\x4e\xef\x20\xa4\xa2\x03\x1c\x4e\xc4\xe5\xe8\x9c\xe3\xe1\x49\x54\x76\x42\x6a\x8e\x43\x4d\xc6\x2c\xc3\x93\xd6\x9e\x2a\x61\x01\x29\x10\xb6\x47\xbc\x4b\x70\x0c\xfb\x14\x12\xe3\xc2\x85\x0b\x98\x99\x99\xd1\xc4\xc3\x38\xd3\x59\x19\x8a\xe6\x4e\x6d\x5a\x7f\xfd\xc3\x17\x47\xa7\x7c\xa6\x20\xcb\x11\xa5\x5e\x43\x88\x28\xbd\x34\xc9\xea\xb3\x6d\x3b\xa4\x4d\x01\xd6\xca\xf1\xc2\xc9\xad\xeb\xbf\x88\x84\x6c\x12\x8c\x73\x21\x09\x00\xca\x27\x87\x3d\x56\x3a\xc8\x27\x9e\x78\x42\x6c\xdb\xb6\x0d\x9e\xe7\x99\xed\x64\x20\x63\x31\x6a\x7e\x87\x86\x86\x64\xa5\x52\xc1\xe6\xcd\x9b\xe5\xee\xdd\xbb\xc5\xd2\xd2\x12\x7e\xf0\x83\x1f\xc8\x4a\xa5\x22\xd4\x49\xd4\x22\xce\xc4\x7e\xce\x4c\xd8\x47\x1e\x79\x44\xcc\xcc\xcc\x20\x08\x02\x50\xce\x5d\x2c\x8a\x68\xe8\x36\x18\x03\x30\x22\x92\x9b\x37\x6f\xc6\x67\x3f\xfb\x59\x79\xf5\xea\x55\xbc\xf5\xd6\x5b\x62\x7e\x7e\x1e\xca\xff\x86\xdd\xd7\xa2\x85\xb7\xef\xdd\x47\xfe\xa4\xe8\x0b\x19\xa5\x1d\x41\x46\x1e\x77\x32\x6c\xa9\x31\x04\xca\xda\x6c\x68\x3b\x0f\x57\xcb\xcd\xea\xbf\x61\x6f\xd9\x22\x3f\x92\x82\x20\xa6\x8a\x06\xa4\x3d\x20\x8a\x68\x0c\x12\x27\xdc\x67\xb7\xf3\x83\xd2\xec\x6f\x6f\x55\xf6\xcc\x4b\x73\xd9\xbb\xbc\xb4\xdc\xb2\xd6\xd6\xd6\x50\xaf\xd7\x13\x6e\x4e\x99\x0d\xc7\x3e\x5a\xed\xba\x77\x2e\x68\xf3\x0c\xc0\x16\x6c\xe1\x88\x0f\x7a\x1c\x52\x1d\x44\x0a\x55\xbd\xf2\xea\x23\xef\xd6\x37\x49\x6e\x18\xbf\xa3\x56\xc3\x52\x0e\x5f\x4d\x51\x6b\x12\x92\x26\x40\x96\x32\x84\xb4\x52\xd5\x2c\x1e\x49\xa9\x51\x89\x96\x3a\x35\x31\xcf\x40\x48\xca\x4a\x53\xc1\x02\x7b\xf6\xec\x11\xc7\x8e\x1d\xc3\xcc\xcc\x8c\x86\x4f\x84\xe4\x3c\x46\x4b\x12\x1a\xef\x6d\x6e\xfd\x7a\xdb\x6a\xe5\xee\xe9\xe5\xf2\x7d\x5a\x9f\x92\xf1\x1c\x6e\x11\x12\x43\x28\x1c\x3b\x21\x0d\x88\x9e\xe0\xce\xbb\x5b\xd6\xff\x69\x7e\xa4\x7b\x0e\xe9\xd1\x72\xe3\x73\x73\x7e\x7e\x3e\x33\x1e\x00\xe4\xe3\x8f\x3f\x2e\x66\x66\xec\xb8\x5a\x31\x00\x00\x20\x00\x49\x44\x41\x54\x66\x0c\x47\x61\x8d\x6d\x6a\x31\xca\x10\xd6\x6e\x95\x11\xb7\x54\x7f\xe4\xc4\xc4\x84\x3c\x74\xe8\x90\x58\x00\x31\x40\xce\xbf\x58\x58\xc0\x4b\x2f\xbd\x84\x46\xa3\x31\x88\x23\xed\x0b\x4f\x3f\xfd\xb4\xf0\x7d\x5f\x73\x14\xba\x6e\x9f\x40\xbe\x1f\x93\xef\x4b\x11\x04\x11\xf9\x82\x49\x44\x1e\x47\xa1\x27\xc3\x9e\xc7\x91\x84\xb9\xfe\x20\x22\xa2\x68\x6a\x6a\x0a\x5b\xb7\x6e\x95\xef\xbc\xf3\x0e\x5e\x7f\xfd\x75\x5d\x7c\xde\x82\x97\xd7\x3e\xf3\x7b\xb3\xd3\xb1\x12\x30\x7e\x21\x34\x22\xcb\x98\x10\x75\x7c\xd9\xd2\x23\x98\x9a\x31\x27\x68\x97\x21\x18\xb0\x28\x3e\x58\x59\x2d\xea\xd5\x20\xbb\x94\xe9\x95\x43\x00\x7e\xa5\x27\x86\x75\xdd\x36\x25\xcd\x6b\x1f\xb2\x93\x3e\x6f\x45\x2f\x1a\xa4\x3c\x56\x70\x90\x18\x52\x94\x56\x54\x6e\x1e\x07\x53\x44\xc0\x24\x00\xa1\x57\x3c\x4e\x1d\xd6\x86\x20\x74\x9a\x13\xde\xfb\xf5\x85\xe8\xe3\x90\xe4\xc3\x12\x1b\xd8\xa2\x0e\x86\xcb\x66\xb2\x56\x61\x45\x1a\x8c\xe8\xe2\xdc\x0b\x6b\x3f\x9b\x34\xc5\xab\xe8\xe1\xb1\x76\xcd\xec\x15\x3e\xbb\xaa\x6b\xf2\xe4\x9a\xc1\x27\xa1\x33\x22\xce\x85\x43\xb4\x82\xf4\x90\x95\x11\x57\xe2\x38\xc6\xc2\xc2\x82\xbc\x78\xf1\xa2\x50\x7e\x56\x25\x2c\xef\x57\x6b\xe5\xf8\xf2\x2f\x76\xad\xbc\x38\x14\x8e\x8f\x6d\x5c\x2f\xcd\x64\x8d\x0e\x1d\xc3\xb5\x2c\xb5\x4c\x73\x11\x10\x13\xa2\x53\x9b\x5a\xbf\x3a\xb6\xad\xf9\xcf\x52\x60\x89\x40\x4d\x4e\x5c\x04\x1a\x67\xd8\xe7\xcf\x9f\xd7\xf5\x03\x00\xbe\xf4\xa5\x2f\x89\xb1\xb1\x31\x3d\xa6\x9a\x50\xf8\x82\x29\x28\x47\xa2\x52\xef\x78\xf5\x91\x8e\x5f\x2f\xc7\x54\x11\x92\x44\x2b\x90\xad\xf5\x20\x6e\x34\x2a\x51\xb3\xe3\xcb\x16\x13\xf4\xb9\x92\x08\x80\xdc\xb4\x69\x93\xfc\xf2\x97\xbf\x8c\x57\x5e\x79\x05\xa7\x4f\x9f\xbe\x19\x97\x21\x00\xc8\xaf\x7d\xed\x6b\x42\x39\x35\x12\x50\x57\x43\x12\xa3\x32\xd2\xf1\xea\xdb\x56\xcb\xd3\xd3\x2b\x95\x07\xea\x6d\x7f\x4f\xb5\x27\x36\x09\x49\x41\xcf\x97\xcd\xd5\x4a\x74\xf6\x6a\x3d\x7c\xf3\xf2\x58\xf7\xec\xe2\x70\x6f\x31\xf2\x8c\x53\xe2\x88\x88\xa2\x7d\xfb\xf6\xc9\x7a\xbd\x2e\xde\x7a\xeb\x2d\x63\x25\x5b\x10\x5c\x35\x86\x04\x52\x51\x65\xa0\x3c\xa3\x80\x9a\x5a\xc2\x01\x32\xf4\x65\x8b\x01\x99\xcc\xf3\x14\x71\x12\x7c\xb6\x58\x5c\x4b\x3e\xce\x2a\xcf\xac\x31\x56\xd4\x45\xaf\x84\x04\x60\xa8\xe7\xd5\x34\x50\x6d\x8e\xc3\xe9\x8c\x1d\xf2\x06\xc0\xed\xd3\xcd\xa8\x7c\x11\x95\x45\x4e\x7c\x9e\x38\x93\xd7\x36\x97\x33\x19\xc8\xf5\xfc\xcd\xdf\xfc\x0d\xbe\xf1\x8d\x6f\xe8\x72\x12\xa4\x63\xee\xac\x4d\x78\xef\x45\x65\x5a\x2a\x75\x78\x93\x3d\x59\x13\x75\x82\xc5\xb9\x21\x6b\x5d\xaa\xf7\x4b\xb3\xe7\x4e\x2c\xdd\x87\x3d\x1e\xda\x8a\x54\x5d\xa5\x00\x20\xdd\x72\x85\x4d\xfc\xe1\x8c\x2d\x52\x5d\x47\x52\x3c\xcc\xb5\x09\x20\xb0\x80\x6c\x6c\xf2\x8f\xb1\x40\x93\xd2\x13\x9a\x92\x99\xe5\xea\xea\x2a\xce\x9d\x3b\x27\x01\xe0\xd8\xb1\x63\x98\x9e\x9e\xb6\x4f\x76\xb6\x00\x34\x40\x58\x5a\xa8\xf5\x4e\xbd\xb4\x77\xf9\xaf\x1e\xf9\x60\xec\x0b\x9b\x1b\xc1\x6e\x32\xed\xc9\xda\xbb\xda\xc1\x6e\x73\xcf\xe3\xce\x7b\x9b\x5b\xbf\xfa\xf5\xce\xd5\x7f\xe8\x96\x12\xd7\x79\x9c\x9c\x58\x35\xee\x29\x17\x17\x17\x8d\x3f\xdb\x5a\xad\x86\xcf\x7e\xf6\xb3\xda\x37\x8a\x39\x93\x42\xa0\xca\x86\x75\x7f\x7c\xef\xf5\xea\xfe\x99\xa5\xca\xe3\xa3\x1d\x7f\x7f\x10\xd3\x14\x71\x72\x42\x55\x12\x37\x23\xc1\x0b\xab\x95\xe8\xd8\xc5\xf1\xce\xcf\xcf\x6c\x6c\x9f\xb8\x31\xdc\x5b\x94\xe0\x8e\x4d\x40\x1e\x7d\xf4\x51\x09\x40\x58\x57\x7d\xb8\xe2\x2e\x00\xc8\xaf\x7f\xfd\xeb\x42\xdd\x5a\xe8\x03\xf0\xc1\xa8\x54\x22\x51\xbf\xeb\x5a\x75\xff\x3d\x57\x6b\x4f\xd5\xdb\xfe\x83\x1e\xd3\x24\x01\x42\x2f\xe4\x4c\xc0\xc4\x7a\x80\x5d\x37\x86\x9a\xed\x92\x7c\xf7\xc2\x44\xfb\x7f\x1c\x9b\x6a\xfe\xec\x7a\xad\xb7\x80\xe4\x34\x70\x07\x40\x34\x3d\x3d\x2d\x37\x6e\xdc\x88\xe7\x9f\x7f\x3e\x0f\x37\xf3\xf0\xda\xa4\xeb\xcb\x3c\xd9\xfa\x15\x76\xdc\x8e\x1d\x3b\x68\xf3\xe6\xcd\x00\x8c\x63\x95\x21\x22\x1a\xd9\xb8\x16\xec\x9e\x5e\xa9\x1c\x10\x20\x73\x21\xa8\x51\x55\x18\x1b\x68\xc5\x2e\x42\x8b\x31\x36\x91\x48\x57\x35\xcd\x9a\x98\x0b\xd3\x01\x5a\xaa\xf6\xde\xbd\x30\xde\x39\x4e\x44\x6b\x44\xd4\x65\xe6\x1e\x00\x79\xf4\xe8\x51\xdd\x46\xbb\xcd\xfa\x57\xa7\xd9\x93\xd7\x4d\x37\xcc\xbd\xd3\x6c\x76\xfe\xe0\xc4\xe7\x01\x96\x9c\x34\xb7\x6d\xf6\xba\x27\x9d\xbc\x64\xb5\xd3\xae\x13\x0f\x3c\xf0\x40\x02\x46\xe5\xe5\x1a\x44\x65\xe9\x53\xb9\xda\x90\x3b\x2a\x4d\xb9\x0b\xc6\x4a\x34\xf9\x34\xcb\x8e\x5b\x06\x57\xa6\x44\xb2\xf2\xa7\xcf\xc9\xb8\x64\x39\x10\xb2\xfe\x1b\xae\x41\x73\x14\x9a\x80\x6b\x02\x41\x9a\x40\x69\x91\x25\xfd\x35\x9c\x28\x31\x7a\x15\x71\xed\xea\x9e\xf2\xdf\xc4\x81\xb8\x82\xc4\x2f\x85\xf6\x47\x21\x9f\x7f\xfe\xf9\x58\xc3\x6c\x7d\x7d\x9d\x8e\x1e\x3d\xaa\x3d\xea\xdb\xb0\x21\x10\xb8\x19\xc4\x9d\x8b\x1b\x3a\xb3\xe5\x58\x94\x47\x3b\xa5\x09\x4f\x52\xc9\x35\x28\xcc\xa8\x40\xc0\x90\x00\x56\x86\xa2\xf9\x37\xa6\xd7\x7e\x72\x64\xc7\xda\xcf\xba\x25\xbe\xcc\xcc\xf3\x44\xb4\x48\xca\xa1\x0d\x33\xc7\x00\xe2\xef\x7c\xe7\x3b\x32\x8e\x63\xd2\x44\xa3\x5e\xaf\x03\xe9\xd5\x14\x65\x3f\xa6\xfa\xfd\x57\x46\x1e\x7c\xe4\xec\x86\xff\x74\xdb\xd2\xd0\xbf\xa9\x77\xbc\x8f\x96\xa4\xd8\x26\x18\x75\x01\xaa\x12\xa3\xe2\x41\xd4\x4b\x92\xb6\xd6\x42\xff\xfe\xa9\xd5\xf2\x67\x6f\x5b\x1a\xba\xaf\x1c\x79\x8d\xa5\xe1\xde\x8d\x9e\xc7\x31\x33\xb3\xd6\xa7\xec\xdc\xb9\x93\x8f\x1e\x3d\xaa\xf1\x02\x16\x6e\x61\xc7\x8e\x1d\xf4\xe5\x2f\x7f\x59\xe3\x80\x8f\xe4\xb4\xf0\xf0\x44\xab\x34\xf5\xc9\xd3\x1b\x0e\xed\xbb\x5a\xfb\xcf\xc3\x3d\xef\x7e\x01\x1a\x26\x5b\x70\x23\x6d\x3f\x0c\x10\x28\x08\xa4\xd8\xb6\xb1\x59\xfa\xe4\xae\xa5\xa1\x7b\x42\x9f\xcf\x2d\xd6\x7a\xcb\xe6\x62\x0b\x22\x94\x4a\x25\xb9\x67\xcf\x1e\x3a\x79\xf2\x64\x16\xde\xfd\x73\x42\xb7\x4f\x02\xd6\xa4\x57\x91\x1a\x99\x8d\xf0\x6b\x13\x0e\x05\xc4\x0a\x80\x91\x89\x56\x69\x66\xe7\x72\xe5\x43\x1e\x53\x29\x83\x74\x9a\x2f\xb6\xa6\xa7\x7b\xa0\x2a\x59\xc1\x5c\x4d\xbf\x55\x29\x80\x66\x39\xbe\x74\x76\x63\xfb\x0d\x10\x9a\x48\xbc\x30\xc5\x44\xc4\xd7\xaf\x5f\xc7\xea\xea\xaa\xfe\xd2\x9e\xb8\x46\x32\x72\xe2\xdc\x7c\x40\x76\xe2\xda\x84\x52\x38\x79\x75\x7a\x1e\x71\xc9\xe3\xd2\xec\x7c\xb0\xea\xe0\x9c\x74\x3b\x9f\x21\x36\xa3\xa3\xa3\x62\x66\x66\x46\x1f\x76\x23\x4a\xce\x6d\x94\x00\xaa\x48\x9f\x44\xfd\x7a\x74\xaf\x27\xa9\x0c\xd2\x27\x8e\x1d\x16\x0e\xf6\xab\xb6\x7f\x81\x91\xf7\xcd\xc1\x30\x4a\xc7\x28\x63\x27\xa3\xf2\x6b\xbb\x90\x94\x38\xa4\x4a\xaa\x8c\x6a\xd5\x10\x2b\x23\xdf\x3b\x96\xaf\x24\x97\xb7\x95\x5e\x5e\x99\xf2\x7f\xc5\xc0\x75\x24\x4e\x72\x5b\x94\x5c\x07\x10\x1f\x39\x72\x24\x03\x93\xa9\xa9\x29\xba\xfd\xf6\xdb\x39\x59\x64\x1d\x62\x4e\x88\x43\x8f\xbb\xe7\xc7\x3b\x17\xaf\x8e\x86\x57\x98\x48\xfa\x92\x4a\x1e\x93\x47\xe9\xd8\x41\x12\xa2\xae\x2f\x3b\xd7\x87\x7b\x57\xde\x9e\x6a\xbe\xfe\xda\xed\xab\x3f\xbc\xb4\xa1\x7b\x5c\x0a\xcc\x01\x98\x27\xa2\x45\x00\xab\x00\xda\x50\xbe\x31\x96\x96\x96\xf0\xde\x7b\xef\xf1\xc8\xc8\x08\x3d\xf9\xe4\x93\x18\x1d\x1d\x05\xa5\x57\x31\x54\x87\x42\x31\xfe\xf8\xe9\xf1\xa7\xf7\x5d\x1d\xfe\xcf\x43\x91\xb8\x47\x80\x02\x7b\xb2\xea\xbe\x27\x98\x64\x16\x4c\x3f\x88\x69\xe7\xd6\x46\xf9\x93\x9b\xd7\x82\x91\x6b\x23\xe1\x99\x4e\xc0\x21\x00\x66\xe6\x98\x88\x70\xe0\xc0\x01\x9c\x3f\x7f\x9e\x3a\x9d\x8e\xbd\xa8\xc9\xdf\xff\xfd\xdf\x37\x44\x83\x93\xfb\x63\x6a\x5b\xd7\xca\x3b\x3f\x79\x66\xc3\x7f\x9c\x5a\x2d\xff\xb1\x07\xaa\xd9\xdb\xe7\xb6\xb8\x68\x56\x60\xcd\x19\x82\x44\x10\xd3\xce\x1d\x2b\x95\x87\x05\xd3\xdc\xd5\xd1\xf0\x2a\x13\x24\x11\xc5\x00\x64\x10\x04\x5c\xaf\xd7\xe9\xc2\x85\x0b\x7a\xae\xb8\xc4\xcc\xc5\x59\xce\x73\xe4\xd3\xa7\x1c\x74\xac\x19\x25\x80\x28\xf4\x64\x5b\x1d\x7d\x57\x99\xac\x6e\x5b\x21\xa1\x6d\x29\xd2\x19\xce\x83\xb2\x79\x2c\xff\xbb\x60\x00\xb5\xd0\x9b\x14\x0c\x3f\xa6\xec\x81\xa8\x03\x07\x0e\x20\xc7\xe4\x5c\x87\x22\xdd\x05\x9c\xbc\x45\x0a\xd0\xa2\xf4\x9b\x29\x4c\x07\x95\x37\xa8\xde\xbe\xb4\xd5\xd5\x55\x34\x1a\x0d\xed\x77\x54\xcb\xfa\x1d\x10\x9a\xeb\x1b\xbc\x33\xcd\x71\xff\xe4\xe8\xb5\xe8\xc1\xbc\x8d\xc7\x41\x41\x2b\x2a\x6f\x92\xcb\x7a\xb6\x88\x7f\x1e\xff\x64\xe2\x53\x6e\xc7\x28\x5e\xd5\x7f\x06\xd0\x2b\xd3\xe2\xd2\xb6\xd2\xaf\x41\xd4\x20\xe5\xd5\x1b\x8a\x5d\x6f\xb7\xdb\x98\x98\x98\x10\x37\x6e\xdc\x30\x45\xce\xcd\xcd\xe1\xcd\x37\xdf\xc4\x47\x3f\xfa\x51\xdb\xef\x44\x53\x25\x4b\x10\x22\x26\x74\xae\x8c\x76\x9b\x57\xeb\xdd\x0f\x86\x43\x6f\xe3\x86\x56\x69\x72\x38\x14\x63\x43\x91\x57\x89\x89\x65\xbb\x14\x37\xd7\xca\xf1\xca\x52\xb5\x77\x35\xf4\x79\x85\x81\x25\x10\x56\x98\x79\x91\x12\x6f\x5c\xc6\xc3\x38\x14\x9e\xbc\xfd\xf6\xdb\x00\x20\xd6\xd6\xd6\x64\xbd\x5e\x37\xab\x3c\x80\x6a\xb9\x27\xc6\x1e\x3d\xbb\xe1\xe9\xdb\x6e\x0c\xfd\x5b\xc1\xa8\x91\x75\xde\x47\xf7\xb3\x6f\x34\x12\xc4\x4f\x74\x76\x8c\xfa\xf6\x95\xf2\x9f\x3c\x7e\x6a\x7c\xfc\xa7\x77\x2c\xfd\x97\xa5\xe1\x68\x4e\xcd\xa7\x0e\x11\xc9\x8f\x7f\xfc\xe3\xf8\xc9\x4f\x7e\x22\xda\xed\x36\x00\xc8\x4f\x7f\xfa\xd3\x19\x9f\x2c\x44\x54\xad\x75\xbd\x4d\x1f\x3b\x3f\xfa\xef\x36\xad\x05\xbf\x23\x40\x81\x5b\xa7\xa3\xe7\xd6\xa7\x00\xac\xf6\x11\x4a\x31\x4d\xdf\x7f\x65\xe4\xcf\xba\xbe\x8c\x4e\x4c\x35\x5f\x91\x89\xf1\x1b\x88\x28\xdc\xb5\x6b\x97\x3c\x71\xe2\x04\x96\x96\x96\x0a\xf5\x6f\xd6\xbb\x28\xf2\xc7\x61\x26\xdd\xf1\xe3\xc7\xc5\x3d\xf7\xdc\x93\x34\x80\xcd\x51\x77\xd9\x0e\x64\x23\x12\x1c\x06\x31\x0c\x61\x60\xbd\x42\x59\xd0\xcb\x20\xb8\x45\x1c\x52\xd9\xc4\x46\xb3\x34\x6f\xa5\x27\xc6\xcb\x91\xa8\xac\x97\xe2\x8c\x6e\xe2\x6f\xff\xf6\x6f\xf3\x08\x5c\xd1\x0e\x4b\x91\xce\x66\x90\xf2\xb2\x28\xdd\x4d\xbb\xd5\xba\x6f\x96\xaf\xaf\xdc\xe3\xc7\x8f\x8b\xad\x5b\xb7\x6a\x99\x52\x7b\x93\x6a\xc6\x1e\x56\x16\xa7\x4b\xaf\x55\x57\xe3\xbd\x41\x9b\x27\x33\x04\x98\xb5\xe0\xa2\x44\x10\x68\x7d\x45\x0a\xd7\x84\x40\x67\x09\x42\x72\x95\x4a\xaa\x34\xd5\x3a\x2a\xcd\x6d\x64\x1c\xf9\xa4\x9f\x19\x51\x45\xbf\xb1\xad\x40\xd5\x17\x38\x09\x44\xcb\x53\xfe\xeb\xed\xba\x98\x45\x32\xf9\x5b\x6c\x39\xb2\x59\x5b\x5b\x83\x22\x1a\x19\x58\x9f\x38\x71\x42\x6e\xdb\xb6\x4d\x6c\xdf\xbe\x5d\x22\x71\x88\x93\x94\x9c\x7c\x97\x38\xd2\x01\x37\x62\x42\x7d\xad\x12\x2f\xac\x55\xe2\x0a\x18\x01\x21\xb9\xa4\x0a\x40\xc4\xe0\x0e\x52\xd7\x79\x0d\x02\x19\xb7\x7d\x94\x78\xe2\x32\xd7\x2f\xbe\xf6\xda\x6b\x38\x7d\xfa\xb4\xdc\xb9\x73\xa7\x78\xec\xb1\xc7\x04\x90\xdc\x56\x48\x44\x81\x90\xa8\x1f\xb8\x5c\x7b\xe2\xf6\xc5\xa1\xff\x29\x21\x1a\x50\x38\x6b\xe3\xab\xea\xaf\x5e\x60\x0d\xb8\x52\x32\x4a\xa0\xca\xe6\xb5\xe0\x77\x1e\x3a\x37\xb6\xf4\x93\x3b\x97\xfe\x9f\x8e\x2f\x13\x22\xc8\x8c\xcd\x9b\x37\x47\x33\x33\x33\x78\xef\xbd\xf7\x00\x00\xdb\xb7\x6f\xd7\xf8\xa0\xae\xfd\xa4\xfa\x87\x66\x47\xfe\xd5\xd6\xd5\xf2\xef\x08\x50\x00\xbb\x1e\xdb\xd6\x21\x45\x06\x25\x2e\xa6\xad\xd0\x4a\xeb\x72\x44\x33\x07\x2e\x8f\xfc\xbb\xc5\x5a\x6f\xfe\xd2\x68\xe7\xa4\x82\x69\xe4\xfb\xbe\x54\x44\xc3\x0e\x45\xfa\x3d\xa9\x6f\x72\xb3\xe9\x95\xcd\x56\x8b\x5e\xaf\x27\xd5\xf5\x08\x9a\xfa\x05\x00\x6a\x5e\x4c\x1b\xf6\x2c\x0e\x3d\x58\x8e\xbc\x51\xcd\x2e\x01\xa9\x75\xa2\x91\x79\x6d\x16\x2a\x83\x7f\x04\xdb\x10\xc9\x56\xc1\x27\xb2\x31\xc2\xd3\x1b\x5b\x2f\x75\x02\xbe\xa1\x06\xba\x47\x44\xf1\xae\x5d\xbb\xf0\xee\xbb\xef\xba\xfa\x0a\x57\x2e\xb3\xc5\x0a\x57\x94\xd0\x13\x56\xb3\x64\x40\xb6\xff\x76\xba\xfd\xeb\x96\x65\xa7\xbb\x71\x76\x7b\xf2\xca\x19\x94\x87\x84\x10\xb8\xfd\xf6\xdb\xf5\x5d\xa6\x44\x09\x00\x3d\x22\x2a\xf5\xca\x14\x95\xba\x5c\x1f\x5a\x93\xb7\x09\x7b\x15\x30\x62\x86\x42\x28\x05\x4f\x2d\xaa\x90\x71\xc0\x63\x35\x85\xac\xca\x2d\x7d\x05\x99\xef\x33\x64\x28\xcd\xc7\x48\xf5\x1c\x8a\xeb\x48\x3b\xa0\x74\x29\x44\x68\x8f\x8a\xb3\x57\xf7\x56\xfe\x36\x2a\xd1\x2c\x11\x5d\x87\x5a\xe9\x29\xeb\x6b\xd3\x2e\xde\x14\x33\x3b\x3b\x8b\x89\x89\x09\x8c\x8e\x8e\x32\x92\xc5\x2a\x56\x13\xbd\xa7\x88\x47\x47\xe1\xc5\x1a\x80\x35\x06\x37\x40\xb4\x02\xc2\x0d\x06\x2f\x01\xb8\x41\x44\x8b\x8a\xcb\x58\x42\xea\xf3\xb3\x8d\xe4\x3a\x80\x88\x99\xe5\x37\xbf\xf9\x4d\x79\xfd\xfa\x75\x02\xc0\x9f\xf8\xc4\x27\x48\x39\x52\xf2\x88\xa8\x02\xc6\xf0\x96\xb5\x60\xf7\x83\xe7\x47\xff\xd7\x4a\xe4\x4d\xf7\xe9\x86\x74\xa3\x6d\x71\x8d\x2d\x04\xb4\x69\x48\x92\xc7\xaf\x77\xbd\xdd\x6d\x5f\x9e\x9e\xaf\x87\x97\x41\xc6\x19\x37\x4f\x4d\x4d\xf1\xb1\x63\xc7\xe4\xe7\x3e\xf7\x39\xed\xd0\xc8\x43\xe2\x3e\x71\x64\x6b\x23\xd8\xfb\xe1\xd9\xfa\xbf\xaf\x44\x62\x5b\xb2\x2b\x49\xe6\x92\xa7\x74\x3c\x52\xd8\x93\x5b\xb1\xa5\x73\x22\x26\x94\x62\xda\x58\x89\xbc\x68\x76\xbc\x7b\x52\xed\xb6\xc4\x44\xc4\x07\x0e\x1c\xe0\x4e\xa7\x43\xd7\xaf\x5f\xd7\xe3\xa2\xc7\xa6\x6f\x4e\xd8\xda\x5c\x3b\x98\x2d\x18\x65\xec\xa2\xe3\x24\x33\x4b\x66\x8e\x7a\x3e\x77\xba\xbe\x5c\xd1\x44\x2f\x51\xd8\x59\x6d\x85\x8a\xcb\x9b\x2e\x26\x5f\x3f\x37\xa2\x0b\x29\xc5\x54\x1f\x0e\xbd\x31\xa8\x63\xd8\x7a\x4b\xd8\xf7\x0d\x93\x74\x33\x2e\xc0\xee\x8b\x1d\x37\xa8\xbf\x79\xcf\x79\xe5\xe6\x95\x95\xb7\x6d\xe5\xfe\xe5\x05\xb7\x0c\xb9\xb2\xb2\x82\x0f\x3e\xf8\x00\x48\xe0\x1d\x21\xdd\x9a\x6c\xb0\x47\x4b\x8b\x3b\x83\x7f\x5e\xdf\xe0\xbd\xaf\xc0\x0e\xfb\x00\xa2\x1e\x8b\x24\xa4\x71\xe6\xf0\x1b\x93\x39\xe0\x66\xf2\x53\xf6\xe0\x9b\x1d\xaf\xc5\x1b\x43\x4c\xe0\xf0\x86\x8a\x2b\xd1\x0b\x85\x1e\xc3\x5e\x99\x96\x16\x6e\x0b\x7e\x16\x0e\x89\xcb\x4a\x09\xd9\x44\xc2\x01\x44\x00\xe4\xe2\xe2\xa2\x0b\xef\x0c\xdc\xc3\x30\x94\x3f\xfa\xd1\x8f\xe4\xec\xec\x2c\x28\xb5\x43\xe8\x00\x68\x2a\x71\x63\x11\xc0\x02\x80\x39\x00\x97\x89\x68\x16\xc0\x05\x00\xb3\x44\x34\x4b\x44\x97\x01\xcc\x11\xf5\x5d\x07\x10\x02\x88\xe2\x38\x96\xcf\x3e\xfb\x6c\xa6\xee\x89\x89\x09\xa8\xb1\x4b\x9c\x44\x4b\xaa\xdf\x75\x6d\xf8\x53\xb5\xd0\xdb\x97\x9e\xf3\x49\x27\xa5\x21\x9c\x19\x3d\x13\x60\xf2\x3a\x03\x4d\x00\x3c\x49\x63\xf7\x5c\xad\x7d\xa5\xda\x13\x93\x48\x5d\x0f\x8a\x52\xa9\x84\x43\x87\x0e\x89\xad\x5b\xb7\x02\xc9\x46\x84\xd6\x27\xd6\xee\xbe\x36\xfc\xf8\x70\xd7\xdb\xad\x69\xbe\x21\xe0\x80\x31\x7a\x33\x36\x24\xa6\x36\x4e\x17\x10\x33\x21\x93\x0c\x02\xe4\x4f\xad\x06\x8f\x6d\x5b\x2d\xdf\x09\xa0\xaa\x98\x01\x41\x44\x78\xf7\xdd\x77\x8b\xe6\x4e\x06\x47\xf3\x64\x76\xe1\x3e\x6b\xfd\x02\x94\x98\x42\x44\x32\x12\xdc\x69\x97\x64\x23\xb5\x1a\xb4\xa0\x69\xd6\x10\x32\x7d\x30\xdd\xb1\xa1\x59\xf4\x9c\x00\xb8\x3a\xd6\xf6\x37\xc1\x72\xc2\xca\xcc\xa2\x5e\xaf\xe3\xf6\xdb\x6f\x77\x59\xff\xbc\x67\x3b\xf4\xc9\x68\x28\x0e\xb6\x08\x21\x0a\xde\x8b\xf4\x16\x79\xe2\x4f\xd1\x37\xee\x7b\x86\x40\x9d\x3c\x79\x12\xdd\x6e\xd7\x4c\x1a\x4e\x2e\x07\x6e\x30\xf3\x52\x38\x24\x66\xaf\xdd\x16\xfc\xa4\x5b\x15\xf3\x1a\x99\xb5\x02\xd3\xec\x52\x01\x8a\xf3\xd3\x07\xdf\x48\x2f\x3c\x86\x03\x01\xac\x61\xa3\xf4\x2f\x79\x4f\x18\x36\x6d\x6b\xa3\x4f\xde\x1a\xb1\x54\xc9\xf0\x29\x57\xa3\xc7\x9a\x21\x3d\xea\xdc\x98\x2e\xfd\x53\x63\xa3\xff\x16\x92\x6b\x01\x56\x90\xd5\x29\x48\xa5\x53\xc8\x83\x7b\x26\xee\x47\x3f\xfa\x91\x3c\x77\xee\x9c\x71\x5c\x83\x94\x88\x36\x55\xb9\x4b\x48\x89\x88\xfe\x5b\x54\x7f\xb6\x3e\xc3\x10\x8d\xb5\xb5\x35\xf9\xe6\x9b\x6f\xf6\xd5\xab\x9c\xe1\x18\x11\xa1\x16\x7a\x5b\x76\xac\x94\x1f\x25\x90\x60\x76\x10\x54\x13\xe5\x4c\x14\x67\xf4\x3e\x0a\x82\x99\xaf\x88\x09\xa3\x1d\xff\xc0\xf4\x72\xe5\x6e\x30\xaa\x40\xc6\x3f\x89\xdd\x26\x1f\x40\x65\x28\x14\x63\x5b\x1b\xc1\x83\x04\x04\x9a\x95\x67\xcd\x4b\x03\x29\xa7\x6e\xea\x86\x12\x1b\xb3\x93\x8b\x9c\xef\xca\x91\x98\xda\x75\xa3\xf2\x31\x3f\xa6\x1a\x14\xf1\x02\x20\x0e\x1d\x3a\x24\x46\x46\x46\xf2\x70\x18\x56\x5c\xdf\xb1\xfa\xdc\x55\x5b\x1f\x7b\x56\x93\x57\x32\x73\x14\x09\xee\xb4\x02\xb9\x62\x78\x32\x17\xa4\xc4\x59\xa8\x3a\x9c\x87\xbd\x05\xc8\x7d\x0f\x80\x60\x12\xe3\xad\xd2\x0e\xc1\x08\xc8\x39\xb3\xa2\x6e\xab\xcf\xd3\x4f\xb8\x7a\x03\xb7\xd3\x76\x70\x09\x03\x72\xf2\xb9\x9c\x82\xcb\x41\x14\xe9\x50\xec\x72\x5c\x8e\xa3\x88\xcb\xcb\xb4\xb3\xd1\x68\xe0\xcc\x99\x33\x46\x19\x8d\x04\xf1\xcd\x75\x80\xcd\x71\xef\x9d\xf9\x3d\xc1\x3f\xf6\xca\xb4\x64\x6b\x37\x52\x9f\xa3\x36\xf2\x10\xb2\x5c\x48\x2a\x16\xa6\x88\xad\xe5\x74\xa4\xdf\x68\xb1\x45\x97\xa4\x88\x92\x3e\x85\x6b\xd4\x27\xd6\x60\x4a\x8f\xc2\xa5\xed\xa5\xd7\x17\x77\x06\xaf\xb2\x48\x56\x7b\x66\x36\x97\xff\x00\x90\x0b\x0b\x0b\x38\x7b\xf6\xac\x8b\x98\x45\x1c\x19\x7e\xf6\xb3\x9f\xc9\x6f\x7f\xfb\xdb\xf2\xfc\xf9\xf3\x36\x2c\x43\x0d\x13\x4e\x1c\x07\x67\xfe\x98\xb9\x85\x94\x58\x85\x00\xa2\xf5\xf5\x75\xf9\xcc\x33\xcf\xc8\xef\x7e\xf7\xbb\xf2\xc4\x89\x13\x99\x3a\x9e\x7a\xea\x29\x9b\xc0\x07\x04\xaa\x6c\x6c\x96\x66\x46\xba\xde\x5e\xc0\x66\x2a\x52\x5d\x4e\x12\xcf\x69\x74\x46\xbf\xa1\xe0\x94\x61\x4f\x92\x5f\xc1\x54\x9d\x5e\xae\xfc\xa6\x60\xe8\x49\xab\xb9\x6a\x0d\x0b\x43\x38\x26\xd7\x4b\xd3\xb5\xae\x3f\x63\x97\x93\x59\x1c\x74\xe5\x44\x30\x16\xc3\x6e\x53\x73\xbe\x13\x20\x7f\xb2\x19\xec\xaf\xf4\xc4\x98\x6e\x83\xe6\xea\x95\x1b\xc7\x41\x74\x41\xba\x1e\xc0\xfa\x42\x1c\xc7\x50\xb7\x78\xeb\x02\x24\x11\x45\xb1\xe0\x70\xad\x1c\x2d\x31\x58\x12\x51\x7a\x73\x3a\x6b\x63\xa4\x2c\xfb\x66\xe4\xe5\xd4\xd5\x74\xa2\x4c\xd2\xc8\x69\x56\x30\xcd\x5a\x11\xc6\xda\xfe\x76\xc1\x54\x89\x59\x66\x0e\xbc\xdd\x71\xc7\x1d\xe2\xd4\xa9\x53\x79\x14\xd1\x7e\xce\xe3\x32\xf2\x90\x35\x8f\xab\x28\xca\x8f\x5b\xc8\x37\x28\x6f\xde\xbb\x1d\x32\xf1\xc7\x8e\x1d\xc3\x5d\x77\xdd\x05\xcf\xf3\x34\xf1\x68\x41\x6f\xcf\x09\xaa\xac\x6c\xf1\xdf\x14\x31\x57\xb6\x9e\x0e\x9f\xf4\x43\xd4\x13\xf8\x27\x08\xc4\xea\xd7\xdd\x7d\xc9\x68\x2c\x2c\x51\xd2\x3e\x6f\xa2\x39\x8d\x84\x58\xa4\x04\xc8\xfe\x9f\x5a\x0a\xb3\x91\xf7\x95\x32\xf4\x8d\x6b\xb7\x07\x3f\x8e\x4b\x74\x19\x6a\xd5\x77\x95\x91\x96\x82\xdb\x86\x9f\x0b\x9f\x3e\x7c\x7c\xe9\xa5\x97\x10\xc7\xb1\x04\x20\xbf\xfa\xd5\xaf\x8a\x72\xb9\xac\x17\xb4\x3e\x78\x6a\x7c\x8d\xa2\x08\x51\x14\xe1\xb9\xe7\x9e\x93\x95\x4a\x25\x8f\x50\xb9\xf5\x28\x53\x6e\x54\xc6\x5b\xfe\x4e\x21\xa9\x9a\x3d\x40\xe7\xa8\x45\x6d\x77\x8c\x56\x48\xb5\x43\x36\xac\x52\x72\xbe\xb1\x59\xba\x5b\x30\xd5\x24\x58\x7b\x28\xb7\xfb\xa1\xb9\x9e\x60\xb4\xe3\x6f\xf7\x63\x1a\x73\xfb\x97\x3d\x02\xe2\x08\x2a\xda\x3a\x9b\xac\xb8\x9c\x50\x0b\xbd\xe9\x91\xae\xb7\xa9\x59\x89\xe7\x80\xcc\xa1\x52\x17\x36\xee\x62\x27\x6c\xcb\x51\x3b\x43\x06\xd1\x8f\x1c\x39\x82\x03\x07\x0e\x68\x96\x34\x71\xbd\x4e\x14\x35\x2a\xf1\x42\x2c\x38\x24\x89\x4a\x4a\x11\x13\x84\x4c\x4d\x94\xf4\xea\x96\x52\x44\x1d\x97\xd5\xd6\xab\x73\x10\xd6\xd6\xed\x68\xdb\x9f\xae\x44\xa2\x1a\x95\xd9\xe7\xc4\xa5\x3e\x98\x59\x9c\x3a\x75\x4a\xdf\xfe\x65\xda\x88\xfc\xc9\x9f\xc7\x85\x14\x4d\xdc\x3c\x2e\xc6\x8d\x47\x4e\x5a\x1e\xdc\x06\xe9\x50\xf2\xea\xca\x9b\x2c\xa2\xd5\x6a\xc9\x9f\xfe\xf4\xa7\xe2\x89\x27\x9e\x30\xe6\xe7\x94\x5c\x1d\xe8\x03\xf0\x99\xe0\x2f\x6d\x2b\xfd\x42\x7a\x14\x4d\x9d\xea\x3e\x59\xea\xf0\xb8\x41\x4d\x82\xb1\xec\x4c\x50\x98\xcc\x21\x2f\x32\xc4\x05\x66\xb1\xb2\x68\x80\x2a\xc2\x1a\x3b\x43\x5c\x52\x6d\x7d\x3a\x59\x94\x8e\x43\x50\x74\x63\x47\xe9\xb5\xf9\xdd\xe5\x1f\xc7\x01\xcd\x32\xb3\x26\x1a\x4d\xb5\x2b\x14\x11\x91\x5c\x58\x58\x30\xfd\x2b\x80\x61\x11\xdc\x84\x22\x1a\x00\x20\x9e\x7b\xee\x39\x93\xfe\x87\x7f\xf8\x87\x78\xe1\x85\x17\xe4\xd7\xbf\xfe\x75\xf1\xec\xb3\xcf\x9a\x5f\xfb\x5b\x00\xe8\x74\x3a\x85\x44\xc9\xf7\x7d\x73\x0e\x85\x94\x49\x77\x35\xf4\xa6\x08\x64\xae\x39\x4d\x01\x91\x3e\x66\x39\x91\x14\x9f\x53\xc2\x92\x75\x8f\xa9\x9f\x83\x58\x8c\x7b\x92\xaa\x3d\x21\x0d\xc7\x01\x98\x43\x8e\x42\xe1\x7b\x30\xdc\xf5\x26\x04\xc3\xef\x2b\xdf\xde\x41\xd1\x1c\x25\xd9\xf5\xe7\x11\xad\xec\x42\xe2\xc7\x54\xab\x44\x62\x4c\xd9\x89\xe8\xab\x15\xb0\x65\xcb\x16\xf8\xbe\x8f\x28\x8a\x0c\xec\x5c\x58\xe6\xb1\xea\x6e\x30\x7a\x0e\xa4\x54\x27\x02\x10\x36\x2a\xd1\xf5\x48\x70\xcb\x20\x65\x5f\xb3\x35\x45\x64\x83\x64\x29\xc4\xd9\x6c\x7b\xe8\xee\x27\xdc\x86\x26\x34\x8c\x6a\xe8\x6d\x19\xe9\x78\xe3\x40\x56\x5c\xf9\x83\x3f\xf8\x83\x81\xac\xad\xdd\xee\x01\xf1\x79\x48\x94\xc7\x39\xe4\xc9\x79\x76\xde\xa2\xf4\x3c\x80\xdb\x7f\x83\xb8\x1f\xf3\x7e\xe5\xca\x15\xcc\xcf\xcf\xeb\xb3\x2b\x21\x92\x95\xbb\x09\x60\x89\x88\xe6\x21\x68\x6e\x65\xab\xff\xcb\x8b\xf7\x56\xbe\xd7\x1e\x15\x17\xcc\x6e\x0a\x34\xf7\xec\x18\x80\x19\x71\x46\xeb\x34\x28\x55\x6c\x1b\x76\x9a\x60\xaf\x90\x59\xa1\x1a\x29\xc1\x50\x4a\xd9\x28\x10\x8d\xab\x7b\xcb\x2f\x5e\xdd\x5b\xfe\x87\x38\xa0\x0b\x48\x8c\xac\x16\x94\x12\xb3\xa5\xda\x2d\x17\x16\x16\x60\xb9\xe4\xcb\x1b\xbf\x3c\xae\xad\x88\xc8\x1b\x78\xbd\xf0\xc2\x0b\x00\x60\x88\xc5\xb3\xcf\x3e\x9b\xf3\x49\xae\xae\x0a\x00\x70\xef\xbd\xf7\x0a\xed\xec\x57\xe1\xb9\x0f\xc0\xf7\x12\x33\x72\xd5\x65\x7b\xd2\x66\x54\x0a\x1a\x9a\xfd\x35\xea\xc5\x51\xeb\x17\xac\x89\x2d\x24\x2a\xbe\x44\xa0\x94\xa0\xa6\x2d\x8a\x68\x18\xef\xe9\x91\xc7\x42\x3b\xc4\xca\xd6\xa7\x9e\x5d\xf7\xed\x4e\x53\x6c\x83\x7c\x67\x99\x06\x01\x82\x12\x55\x80\xbe\xe7\x46\x00\xc0\xc6\x8d\x1b\x11\x45\x51\x9e\x62\xd4\xc0\x30\x6f\xe2\xe8\xdf\xdc\xc1\xd5\x87\xaf\x00\x44\xab\x95\x78\xa9\xe3\xcb\x86\xea\x70\xda\x21\x8b\xc9\xb0\x1b\xcf\xe6\x9f\x5e\x03\xad\x3e\x2a\xe9\x26\xfd\x8e\x10\x48\x1a\xdb\xd8\x2c\x6d\x57\x9e\xb1\x7d\x52\x17\xef\x06\x41\x60\xb7\xb7\x88\x80\xdc\x2c\x3e\xaf\x7f\x79\xc4\xc1\xae\xc7\x46\xe6\xa2\xbc\x79\x04\xc4\x8e\x73\xf5\x23\x76\xdd\x7d\xec\x73\x1c\xc7\xf2\xc5\x17\x5f\xc4\xb5\x6b\xd7\x80\x64\x45\x0a\x15\xeb\xdf\x00\xb0\xc8\xcc\xf3\x20\x9a\x5b\xdf\xe0\xbd\x75\xfe\xfe\xa1\x17\x96\x76\x94\x5e\x8f\x4b\xe8\x64\xd7\xa7\x6c\xb0\xb7\xcf\xa1\x1f\x73\x73\xb3\xc9\xa6\xb7\xd5\xd9\x26\x22\x82\xe4\xfa\xb8\x7f\xee\xe2\x7d\x95\x17\xae\xef\x2c\xbd\x2c\x3d\x9a\x05\x30\x8f\x54\x31\xd9\x84\xa5\x10\x3d\x71\xe2\x84\x46\x48\x37\x14\x89\x79\x79\x21\x8f\xe3\xb3\xd3\x8a\x44\x4b\x37\xbd\xef\x5d\x1b\x5d\x31\x33\x98\x20\x7a\x1e\x47\x46\x0b\xa4\xba\xcd\x86\x62\xa4\x13\x31\x65\x3a\xac\xa9\xcd\x16\xbe\xe7\x18\xde\x45\x1e\x77\x7a\x1e\x6b\x2e\x27\xd3\x37\x8b\x13\x17\x8d\x4a\xb4\x2a\x89\x43\x62\xb5\x05\xcb\x6e\x7d\x7a\x4f\xcb\x52\xd6\x32\xb2\x94\x46\xb5\x92\xed\x79\x08\x42\xa3\x12\xcd\x2d\x55\xa3\x95\xbe\xc6\x01\x18\x1a\x1a\x1a\x24\xaa\x0b\x17\xd0\x79\xab\xa4\xf4\x7d\x5f\x48\x29\x35\xd1\x30\x5b\x84\xa1\x27\x5b\xeb\xe5\x78\x11\x39\xa1\x50\xb2\x2a\x48\xa0\x9c\x74\x62\xf2\x27\xd7\x83\x3d\x82\x51\x81\xa5\x7d\x2e\x97\xcb\x76\xfb\x74\xb0\x89\x48\x1e\x31\x44\x41\x5e\x3b\x4f\x5e\x19\x83\xf2\xb9\x04\x20\x8f\x90\xc9\x01\xf1\xb7\xd4\x76\x29\xa5\xfc\xfb\xbf\xff\x7b\x29\xa5\xd4\xbb\x2c\xfa\x16\xaf\x06\x25\xe6\xd3\xf3\x20\x9a\xeb\x55\xc4\xa9\xcb\x77\x95\xff\xee\xe2\xfe\xca\x5f\x35\xc7\xbd\xb3\xb1\x4f\x61\x3f\xca\x02\x16\x23\xed\xbc\xa3\x0f\xd9\xb4\x7a\x4a\x23\x73\x62\x63\x43\xb2\x33\x4c\x0b\x57\xf7\x04\x3f\xb9\x70\x5f\xe5\x85\xe6\xb8\xf7\x16\x04\x5d\x06\x61\x0e\xc9\xae\xc6\x12\x2c\x2b\x51\x66\x96\xcf\x3c\xf3\x8c\xd4\x87\xd9\x54\x28\x82\x5b\x1e\xac\x8a\xe4\x6e\xe4\xc4\xbb\x63\x63\x87\x3c\x98\xcb\xe3\xc7\x8f\xdb\x0e\x7c\xcc\x22\xd8\x2a\xc5\x0d\x06\xa4\xd1\xf5\xe8\xc5\x8d\xb2\x0b\xbc\xf5\xa1\xf5\x0c\xb3\x2d\x6b\x27\xe9\x6a\x5a\x25\xb9\x22\xc9\x5c\x9a\xe4\xb6\x4f\xb7\x47\x36\x83\x78\xa5\xe7\x71\x2b\x21\xe0\x9a\x8f\x4c\xeb\x23\x8b\x3b\x54\xd5\xa6\xc4\xde\x21\x58\xe9\x69\xa5\x84\xaa\x5c\x1b\x09\xcf\x35\xcb\x71\x03\xf9\x30\xb7\xdb\xd4\x37\x56\x79\x8e\x7c\xfa\xe4\x7b\x25\xeb\x98\x38\x4d\x3c\x22\x8f\x5b\xab\x95\x78\x61\xdb\x2a\x90\xca\x5a\xc8\xe0\xa5\xed\x00\xdd\x51\x69\xa4\x97\xe4\xa4\x51\x26\xaf\x3e\xf1\x39\xb9\x5e\xda\x1d\x44\xa2\xd6\x2a\x99\xfb\x39\x6f\x49\xb1\x98\xd3\xe1\xa2\xfe\x15\xa5\xb9\x61\x50\x7a\x51\xdd\xb7\x12\x8a\x74\x2b\x7d\xe5\xbc\xfa\xea\xab\x78\xf8\xe1\x87\xa5\x92\xc7\x43\x67\x9b\x3c\x02\x21\x64\x8f\x3a\x8d\x4d\x7e\xb3\x35\xe6\xcd\x8e\x2c\xc6\x7b\x37\xcc\xf5\xf6\x57\x1b\xf1\xb4\xd7\x43\x05\xd2\xbe\xd4\xc9\x16\x8b\x53\x02\x92\xda\x0e\xa9\x15\x4c\x9d\x94\x65\x00\xd2\x43\xd8\x1d\x16\x8b\xab\x9b\xfd\x77\x57\xb7\xf8\x27\x3b\x55\x71\x09\x82\xf4\xd6\xe7\x92\xfa\xd3\x3b\x1b\x21\x33\x47\x52\x4a\xf9\xad\x6f\x7d\x2b\x4f\xff\x33\xa8\xdf\x45\x22\x9c\x0d\x17\x3b\x1d\x4e\xfa\xbf\xa8\xbc\x7b\xef\xbd\xd7\x70\x53\xd6\x44\x96\x0b\xb5\xf0\x52\xe4\x71\x2b\x88\xa8\x66\xc9\x7e\x0a\x47\x2d\xe4\xb5\xf4\x0b\xac\xd2\x92\x09\x6c\xe9\x44\x54\x5e\x22\x40\x82\xe5\xe9\x4d\xad\xc3\x91\x60\xc3\x8d\x39\xc7\x3a\x8c\x2e\xf1\xc6\x70\x6f\x71\x65\x28\x9a\x1d\x4a\xec\x3e\x8c\xe8\xd3\xbf\x00\x3b\x11\x79\x6e\x28\x2c\xb1\x26\x12\xb2\x75\xb5\x1e\x9e\x8d\x04\xdb\x8e\x8c\x24\x00\x9c\x3a\x75\x0a\xca\xd9\x50\x21\x7c\x6d\xcb\x51\x5d\xbb\x44\xff\x5c\x96\x47\x8f\x1e\xe5\x07\x1e\x78\x40\xe7\xf5\x01\x0c\x31\x61\x68\xac\xe3\x6f\xdf\xb1\x52\xbe\x57\x30\x89\xac\x25\x68\x3a\xf9\x75\x31\xa9\xf2\x33\x1d\x00\xb2\x6a\x21\xcd\x67\x51\x0a\x7c\x8f\x49\x9c\x9f\x68\xbf\xde\x0a\xe2\xeb\xac\xae\xea\x03\x20\xef\xb9\xe7\x1e\x1c\x3f\x7e\xdc\x1e\x16\x76\xfe\x74\x7f\x6c\x89\x28\xaf\x7f\x3a\xde\x1e\x0e\x69\xe5\x65\x2b\x7d\x90\x04\xe0\xe6\xa5\x82\x34\xe9\xa4\xeb\x38\xb7\x0f\xe4\x96\xb1\xb4\xb4\x44\xeb\xeb\xeb\xd8\xb6\x6d\x9b\x3e\x04\x26\x91\xbd\x62\xb0\x0b\xb5\xfd\x28\x3d\x5a\xef\x8c\x88\x85\xc6\xc6\xd2\x85\xf5\x71\x6f\x36\x2a\x53\x53\x6d\x69\x09\x92\xfa\x54\x74\x82\x85\xe6\x3c\x65\x86\x0f\x26\xb0\xa0\x48\x96\xd0\xe9\x0e\x7b\xd7\x1b\x1b\xbd\x33\xd7\x67\x82\xd7\x17\x76\x05\xaf\x35\x36\xfa\x6f\x45\x65\x31\x0b\xa2\x79\x24\xa2\xc9\x75\xa4\x46\x56\x86\xd3\x88\xe3\x58\xbe\xfe\xfa\xeb\x58\x5c\x5c\xb4\xfb\x6e\xc3\x3b\x6f\xec\x74\x3a\x90\x0f\x17\xf7\x1b\x1b\x86\x36\xec\xf3\xde\x19\xe9\x64\x30\x79\x86\x87\x87\x31\x33\x33\x03\xeb\xf8\x7a\x09\x84\xe1\x98\x30\xbc\x73\xb9\xb2\x7f\xb8\xe7\x4d\x26\x08\x6a\x8d\x46\x06\xab\xb2\x1c\x9b\x99\xdb\x36\x51\x31\x34\x84\xb1\x5e\x8e\xaf\xbd\x76\xdb\xea\x5f\x85\x3e\x5f\x03\x41\xeb\x81\xb4\xd3\x1f\x56\xba\x06\x9f\x88\x2a\xb1\xc0\xd0\x70\xe8\x4d\x4e\x35\xca\x77\x7b\xac\x0e\xa5\x16\xb2\xf3\x76\xfb\xb2\x99\xd2\xa3\x03\x49\x7b\x6e\x0c\xf7\xce\xbf\xb5\x7d\xed\x87\x9d\x40\x5e\x51\xba\x28\x63\x51\x7b\xf5\xea\x55\x5c\xba\x74\x49\xc3\xcb\x85\x3f\x80\xe4\x90\x5b\x91\x3e\xa3\x50\xcf\x81\x64\x85\x0b\x01\x84\x4b\xd5\xde\x95\x48\x70\x27\xb9\xdf\x93\x32\x28\xa1\x59\x3e\x5b\x55\x6a\xbf\xa7\x9d\x44\x3a\xbc\x8a\x6b\xd1\xfd\x2e\x47\x62\xd3\x96\x46\x30\xb3\x50\xeb\xbd\x4b\x84\x00\x40\x47\x53\xe7\x6a\xb5\xaa\x6f\xb7\x02\xf2\x57\x6b\x97\x35\xce\xcb\x97\xd7\xe7\x9b\xad\x84\x45\xdf\x15\xb1\x7b\x37\x2b\xc7\x55\xdc\xe5\x95\x2b\x00\xc8\xd3\xa7\x4f\x0b\x00\xf8\xd8\xc7\x3e\xa6\x6f\x14\xb3\x57\x70\x6d\xb3\xa0\x75\x20\x2b\x71\x80\x95\xb5\x71\xef\x6a\x73\x83\x77\xca\xef\xf1\x86\x52\x87\xc7\x87\x1a\xf1\xa6\xa0\xcd\x63\x41\x47\x8e\x79\x21\x57\x85\x84\x4f\x92\x7d\x26\x92\x2c\x10\xc6\x3e\x85\xbd\x0a\x35\xc2\x21\xb1\xd2\x19\x11\x0b\xdd\x21\xb1\x14\x95\xe9\x06\x0b\x6a\x20\x39\xad\xdc\xd0\x7f\x4a\x5c\x6a\xc2\xb2\x99\x60\x66\x19\xc7\xb1\xfc\xe5\x2f\x7f\x89\xf7\xdf\x7f\xff\x66\xfd\xee\xeb\xe3\x2d\xe4\xb1\x43\x91\x58\x92\x2b\x9b\xe7\xb5\xe3\xdc\xb9\x73\xf2\xe1\x87\x1f\xd6\xdb\xbb\x9a\x18\x77\x5a\x41\xbc\x74\x66\xb2\xf5\xab\xc9\x66\x69\xaf\x40\xff\x96\xaf\x4d\xff\x0d\x7d\x70\x15\x1f\x36\xd7\xa1\x1e\x67\x37\x74\x8e\x35\xcb\xf1\x12\x28\x35\x8a\x63\xeb\x8e\x64\xf5\x6e\x2e\x96\x7e\x7f\xd3\xfa\x91\xdb\x6e\x0c\x3d\xb8\x79\xad\xb4\xd7\xdd\xd6\xcd\x0b\xce\x06\x4b\x76\xce\x11\x21\x12\x1c\x9e\xda\xd8\xfa\xd5\x6a\x25\x9a\x87\x65\x18\xa7\xfa\x8e\x66\x53\x9f\x29\x2c\x1c\x1f\xe1\xb2\xfe\x83\xb4\xdd\xd2\xd1\x71\x44\x44\x14\x2e\x55\x7b\x0b\x9d\x92\x5c\x2a\xc7\xa2\xc6\xaa\xd5\x8a\x61\x48\x88\xb2\xc5\xd2\xa5\x8a\x65\xd5\x6d\xb3\xc2\x59\xd4\x3c\x23\xea\x30\x04\x10\x6c\x59\x2b\xff\xc6\xbb\xb2\xf5\x4a\x4f\x48\xa3\xfd\x0d\x82\x40\xb6\x5a\xad\x3c\x64\xcb\x93\xa3\x5d\x36\x19\x28\x26\x02\x76\xb0\xbf\xcd\x13\x7b\xf4\xf3\x20\x31\x28\xaf\x2d\x45\x72\x7a\x51\x5a\x46\xc6\x3c\x7d\xfa\x34\x4e\x9f\x3e\x8d\xcf\x7c\xe6\x33\x62\xdb\xb6\x6d\x99\xdb\xd4\x91\x4c\xdc\x16\x12\xd3\xec\x06\x12\x25\x65\x8d\x09\xd5\xa8\x2c\x6a\xbd\x80\x2b\xad\xba\xa8\x10\x10\x10\xa3\x42\x31\x4a\xc4\xec\xeb\x7b\x6c\x58\x50\x24\x05\xba\x2c\x10\x22\xf1\xfb\xa9\x6f\x5c\x6f\x11\x25\xc6\x56\x16\xa1\x68\x52\x72\x73\x7b\xe6\x36\xf4\x38\x8e\xf1\xe7\x7f\xfe\xe7\x45\xfd\xc8\xeb\x53\x1e\xbc\x6f\x26\x73\x0f\x82\xdb\xad\x3c\x67\xc2\xb7\xbf\xfd\x6d\x79\xe8\xd0\x21\xa1\xfb\x00\x20\x94\x84\xe6\x99\x8d\xed\xb7\xf6\x5e\xaf\x3e\x34\xb9\x5e\xda\x4d\x70\x89\x40\x2a\x36\x90\x83\xbf\x94\x61\x86\x00\xbd\x8b\xb8\x56\x8e\x17\x8e\x4f\x35\x5f\x65\x65\x82\x6f\xd5\x67\x16\x01\x4e\xbd\xbf\x75\x88\xa8\xd5\xa8\x44\x73\x27\xa6\xd6\x5e\x7a\xe8\xdc\xd8\x96\xa1\x9e\xa8\x67\xb5\x1a\xd6\x84\xd1\xce\x94\x48\x71\x18\xd6\x82\x9d\xe6\x66\x5c\x1e\xed\x9e\x3c\xbd\xa9\x75\x44\x0a\x68\x7f\x24\x7a\xfc\xa4\x32\x3b\x77\xe1\x65\xbf\x27\x7a\x4f\x67\x00\x8a\x82\xbc\xeb\xae\xbb\x84\xea\x14\x2c\xe2\x11\x76\x4a\x72\x65\xa5\x12\xcd\x8f\x76\xfc\x69\x23\xd7\xb1\x25\xa2\x58\xad\xb6\xaf\x23\xd4\xe2\x8a\xad\xd7\xe8\xeb\x25\x25\x94\x72\xf3\x5a\x70\xf7\x50\x4f\x8c\x45\x15\x5e\x50\xfb\xdb\xf6\x64\x1d\x44\x18\xf2\x56\xaa\x3c\x82\x51\xa4\xeb\x28\x92\xab\xf3\xd2\x6e\xa5\x1e\x38\x79\xdc\xf7\x5b\xe1\x72\x4c\xde\x9f\xff\xfc\xe7\xe8\x76\xbb\xf2\xe9\xa7\x9f\x46\xa9\x54\x32\xc8\xa7\x11\x1f\x8a\xf3\x50\x67\x1e\xaa\x00\x2a\xea\xb9\x02\x20\x60\x82\xcf\x02\x3e\x33\xec\x2b\x10\x6d\xf1\x47\x5b\x67\xea\x9d\x9c\x0e\x25\xe7\x45\x6c\x8b\xcc\x90\x52\xd7\x7b\xda\x19\xae\xdb\x5f\xb7\x1f\xb7\xc2\xd1\xdd\x8c\x53\x28\x22\x44\xb7\x52\x6e\x5f\x9e\x87\x1f\x7e\x58\xe8\x3e\x40\x5b\xea\x12\x9a\xab\x43\xd1\xdc\x1b\xd3\x8d\x1f\x7d\xf2\xcc\xf8\x9f\x94\x23\xd4\x8c\xfe\xe2\xa6\x21\xf5\xe1\x0a\x24\xe8\xdd\xf3\xb8\x73\x62\xaa\xf9\xd2\xf5\x5a\x6f\x96\xc1\x0d\x02\x69\x53\xf8\xcc\x7d\x3a\xb0\xb8\x1e\x00\x4d\x10\x35\x4e\x6f\x6c\x1d\xa9\x77\xfc\x2d\xf7\x5f\x1e\x79\x22\x88\xa9\x42\x2e\x5b\xa1\xeb\x34\x92\x91\x4d\x5a\xd8\xcc\xb9\x1b\xd5\x68\xf6\x57\x33\xab\xff\xb8\x56\x8e\x2f\x23\x3d\x74\x18\xea\x36\x5c\xb8\x70\x41\x1b\xd9\xd9\x73\x4c\xb7\xc9\xc0\xce\x43\x56\x8f\x6e\xcb\x9e\x19\x0a\xbd\xb8\xb8\x28\xf7\xed\xdb\x47\xea\xc4\xa6\x00\x50\x22\xa2\x0a\x03\xc3\x13\xad\xd2\xf4\xd6\x46\xf0\x1b\xa9\x72\x54\x53\x40\xad\xd7\x40\x2a\x13\x1a\x85\x69\xca\x75\x24\x9a\xfa\x94\x88\xa7\x44\x24\x29\xcf\x67\xaa\xcc\x8d\x76\x0f\x2f\x0f\xf5\xe6\x88\xa8\xcd\xcc\x3d\x22\x8a\xef\xbf\xff\x7e\x28\x8f\x60\x76\x9b\x6d\xb9\xcc\xee\x83\xab\xa7\x90\x56\x7e\xe1\xc4\xd9\xbf\x4e\xeb\x73\xf5\x14\x76\xfd\xc8\xc9\x67\xcb\x87\x28\xf8\x36\xaf\x7d\x6e\xd9\x19\xd9\x3d\x8e\x63\x06\x80\x63\xc7\x8e\xf1\xfe\xfd\xfb\xb5\x85\xa9\x54\x4e\x62\x7a\x0a\x4e\x3d\x24\x2b\x5b\x5b\x71\x07\xeb\x48\xb9\x11\xfd\xb7\xac\xe4\xdc\x65\x24\xba\x8a\x65\x66\x5e\x22\xa2\x65\x22\x5a\x56\xf1\xab\x48\x44\x93\x35\x4a\x4e\x98\x76\x00\x74\xd5\x02\x12\x4b\x29\xf9\xc8\x91\x23\x78\xf5\xd5\x57\x65\xa3\xd1\xb0\xe1\xe5\xb6\xdb\xd6\x3d\xb8\xba\x1e\x38\xf9\x8a\x74\x45\xae\x6e\x43\x3f\xdb\x63\xa0\xcb\xc9\xd3\x6f\x08\xe7\x7b\x31\x3b\x3b\x2b\xf7\xed\xdb\x47\x9e\xe7\x69\xa5\x22\x01\xf0\x19\x5c\x5a\xa9\x46\x6d\x00\xb4\x79\xad\x7c\x9b\xc7\xf0\xed\x49\x6e\x5c\x27\x1a\x0e\x3a\xe5\x4a\x12\x51\x3d\x69\x6a\x24\x38\x3c\x39\xb5\xfe\xf2\xe1\x1d\x6b\x3f\x8e\x04\x5f\x05\x70\x9d\x88\x56\x91\x1e\xfc\x8b\x9f\x79\xe6\x19\x79\xff\xfd\xf7\x93\x10\x89\x77\x00\x45\xcc\x09\x00\xc5\xc4\xde\xf5\x91\xde\x12\x01\x62\x72\xbd\x94\x78\x7c\x57\xdd\x4b\xdd\x39\xa6\xee\x10\xfa\x02\x01\x8b\xc3\xbd\xd9\x57\xf6\xac\xfc\xf5\xd5\x7a\x78\x92\xc1\xd7\x90\x9c\x20\x6e\x28\xdc\xe8\x49\x29\xe5\x2b\xaf\xbc\x82\x56\xab\xe5\xce\x29\x97\x43\x64\xed\x01\x4c\x4f\x20\x7b\xda\xb2\x13\x4f\xc7\x8f\x1f\x97\x07\x0e\x1c\x10\x94\x04\x1f\x40\x99\x09\xc3\x43\x91\x37\xb9\xeb\xc6\xd0\x03\x02\xf0\x32\x3c\x9b\xd6\x40\xf7\x71\x11\x1a\xd0\x48\xb7\xf9\x54\xad\x66\xab\xcb\x9a\xa6\xc4\x08\xba\xbe\xbc\x32\x3b\xde\x7d\x1b\x84\xb6\x9a\x0c\x31\x00\x79\xed\xda\x35\x5a\x5b\x5b\x23\xab\x16\x97\x10\xda\x13\xde\x46\xb8\x3c\x65\x9c\x4b\x3c\x74\xc8\x23\x0c\x79\x5c\x8e\x5b\xa6\x5d\xa7\xb0\xde\x75\xf9\x76\x1e\x3b\x5f\xde\xf7\x2e\x71\xb1\x89\x1e\x1f\x3b\x76\x8c\xe3\x38\xa6\xa9\xa9\x29\xed\x9a\x8e\x91\x72\x1f\x3d\x24\x6e\x09\x3a\xea\x6f\x1d\x4a\xd4\x50\x84\xc0\xd6\x5b\xac\x21\xe1\x52\x56\xd5\xf3\x3a\x80\xf5\x44\x54\xa1\xb6\x5a\x9d\x7a\x48\x56\xc4\x98\x88\x78\x7e\x7e\x1e\xdf\xfb\xde\xf7\xe4\xfc\xfc\x7c\x1e\x3c\x6d\x18\xd9\x70\x73\x27\x75\x11\x11\x70\x89\x85\x0d\x47\x3b\xce\xe5\x22\x5c\x82\x5c\x54\x67\x06\xbf\x1f\x78\xe0\x01\xbb\x0e\x22\x22\x62\x82\x98\xaf\x87\xcb\x3d\x8f\xbb\x9b\x9a\xc1\x8e\x92\xa4\xb2\x11\x03\x6c\x7b\x73\x6d\xec\x45\xf6\x8e\x06\xa1\xe3\xcb\xe6\xb1\x6d\xcd\x97\xdf\x9c\x6e\xfc\xa4\xe7\xf3\x65\x65\x1c\xb7\x8c\x84\x80\x87\x00\xe2\xb5\xb5\x35\x3e\x79\xf2\x24\x1f\x3d\x7a\x94\x0f\x1c\x38\x40\x0e\x07\x42\x44\xc4\x11\x31\xe6\x47\xc3\x85\xd5\xa1\x78\x65\xbc\x5d\x9a\xac\xf4\x44\x4d\x6f\xc8\x9a\x79\xd7\xa7\x14\x4d\x88\xd6\xf9\xf1\xce\xdb\x2f\xed\x59\xfe\xc1\xc2\x48\xef\x3d\x50\xa2\xd0\x26\xa2\x55\x66\x5e\xd7\x1c\xe3\x37\xbf\xf9\xcd\xb8\xd5\x6a\xb9\x38\xeb\x8e\x1d\x01\x89\xeb\xc0\xbc\x55\x59\x23\x65\x1f\x65\x57\x3b\x2b\x00\xe0\x31\x73\x00\xa0\x1a\x0b\x54\xee\x58\xa8\x7e\x24\x90\x62\xd8\xea\x6b\x5a\x5d\x1e\x15\xd4\x27\xa4\x6c\x14\xb3\x5e\x33\x81\x40\xbe\x24\x9c\x9f\xe8\xfc\x32\xf4\x79\x15\xa9\x32\x27\x7e\xe5\x95\x57\xf4\x04\xb4\x61\x65\x77\xba\x08\xc9\xb2\x35\xf4\xaf\x4a\x3a\xaf\xcb\x29\xb8\x44\xc3\xcd\x93\x97\xd7\x5d\x69\x5d\xee\x25\xef\x3b\x97\x2b\x82\x53\x1e\xdc\xef\xe7\xe7\xe7\xf9\xe8\xd1\xa3\xc4\xcc\x98\x9c\x9c\x64\xdf\xf7\x25\x33\x33\x25\x6e\x17\xb5\x0f\x8a\x9e\xe2\x46\x42\x24\xab\x5d\x97\x99\xdb\x48\xb4\xea\x6d\xc5\xd1\x69\xbd\x86\x76\xb0\x1b\x22\x21\x3c\x5a\x0e\x8e\x99\x99\xe7\xe6\xe6\xf0\xbd\xef\x7d\x4f\x9e\x3e\x7d\x5a\xcf\x1e\x9b\x80\xdb\xe3\xe2\x12\x45\x9b\xab\xd0\xf1\x76\x5f\xf3\x88\x7d\x1e\x5c\xf3\xb8\x4a\x7b\x1c\x5d\x18\x16\x2d\x8e\x12\x00\xed\xde\xbd\x9b\x66\x66\x66\x00\x24\xfe\x38\xed\xfa\x98\x20\xe7\x47\xc2\x1b\x57\xc6\xba\x97\x86\x22\x51\x19\xee\x7a\x75\x8f\x51\xea\x57\xf4\xb3\xa9\xa5\xe7\x71\x38\x37\xda\x3d\xf3\xcf\xb7\xaf\xbe\xf8\xce\xd6\xf5\x5f\xc4\x82\x2f\x83\xe8\x1a\x92\x83\x7f\x6b\x0a\xde\x3d\x66\x96\xef\xbc\xf3\x0e\xe6\xe6\xe6\x18\x80\x18\x1e\x1e\xc6\xe4\xe4\x24\xab\x2d\x62\x56\xaa\x01\x06\x20\x59\x50\x7c\xa3\xda\x5b\x3e\xbb\xb1\xf5\x41\xb3\x1c\xaf\x94\x63\x51\x29\xc5\xa2\x42\x0c\xa1\xa7\x4f\xb2\x62\x20\x6a\x07\xb2\x79\x69\xac\x7b\xe6\x97\xbb\x1a\x3f\x3d\x3c\xdd\xf8\x59\x2b\x90\x17\x18\x3c\x0f\x60\x81\x88\x96\x15\xd1\xe8\x30\x73\x14\xc7\xb1\xbc\x7a\xf5\x2a\x29\xc5\xa8\x4b\xe0\xfb\x38\x39\xdb\x8e\x43\x47\xe6\x29\x03\xed\x20\x95\xb5\x9b\x5e\xcd\x3a\xcd\x72\xbc\x78\x63\xb8\x37\x3b\xbc\xe2\x6d\xea\xcb\x4d\x48\x0f\x4c\x59\x23\x97\x9a\x89\xe6\x07\xc5\x79\x25\x34\x07\x84\x7a\xc7\xbf\x6d\xd3\x5a\x70\xdb\x5a\xa5\x7d\x59\x1d\xb3\x17\x44\x24\xfe\xf4\x4f\xff\x14\xdf\xfe\xf6\xb7\xf3\x2c\x12\xa5\xf3\xaa\xc4\x76\xe9\x00\x00\x20\x00\x49\x44\x41\x54\x5b\xa4\xec\x41\x4e\x9c\x2b\x2f\xdf\x8a\x52\xb5\xa8\xbc\x41\x6d\xba\x99\x22\xd4\x8d\xcb\xfb\xed\x53\x00\x1e\x3d\x7a\x54\x1c\x3d\x7a\x54\x6e\xdc\xb8\x51\xdc\x77\xdf\x7d\x72\xd7\xae\x5d\xa6\x2c\xad\xcb\xb0\x26\x86\xfb\x6e\x6c\x19\x72\x6c\x1b\x30\x3b\x3b\x8b\x1f\xff\xf8\xc7\xb2\x54\x2a\x09\xe7\x42\x9f\xa2\x76\xb9\x6d\x84\x93\x06\xf4\xe3\x9d\x1b\x8a\xe0\x93\xc7\x46\x0f\x1a\xaf\xbc\x7a\x4d\x38\x77\xee\x1c\xb6\x6d\xdb\x86\x3b\xee\xb8\xc3\xe8\x18\x38\x7b\x8f\x8a\xbc\x36\x12\x86\x3f\xbe\x63\xe9\xda\xc6\x66\x69\xe7\xcc\xf2\xd0\x9d\x53\xab\xc1\xf4\x70\xe8\xd5\xcb\x91\xa8\x30\x80\x58\x70\xd4\x2c\xc7\x2b\x0b\xb5\x70\xee\xc2\x78\xe7\xf4\xdc\x68\xf7\x4c\xe8\xf1\x02\x08\x8b\x00\x2d\x28\x11\x30\xe3\xd0\xe8\xf2\xe5\xcb\x38\x7c\xf8\xb0\xe9\xc7\x1b\x6f\xbc\x21\x36\x6d\xda\x84\x89\x89\x09\x3d\xc7\x5a\x96\x0e\x2a\x62\x70\xa7\x55\x92\xad\x63\xdb\x9a\xd7\xdf\xd9\xb2\xfe\xd6\x58\xdb\xdf\xb8\xa9\x19\x4c\xd5\x42\xaf\x2e\x24\xfc\x4e\x49\xb6\x9a\x41\xdc\xb8\x31\xdc\x9b\x5f\xad\x44\xd7\x62\x81\x25\x10\x96\x54\xdd\xb6\xbd\x8d\x39\xb1\xac\x94\xd9\x45\xb8\xd7\x37\x96\xee\xe9\xd8\x3c\x80\x66\x06\xb2\xd9\x6c\xa2\x56\xab\x69\xc0\x86\xcc\x1c\xc6\x02\xad\x2b\xa3\xdd\xf7\x77\xac\x94\x1f\x70\x29\xb0\x4d\x00\x0a\x39\x0a\x9d\xd1\xca\xef\x2a\x7f\x4a\x31\xd5\x67\x96\x2b\x07\xcf\x4f\xb4\x0f\x4b\x41\xfa\x60\x50\xe4\x79\x9e\xbc\xef\xbe\xfb\x70\xf8\xf0\x61\xb7\x1f\x79\x84\xc4\x45\xce\x41\x93\x7d\x10\x02\xdb\xe5\x0d\xfa\x05\x8a\x91\xfc\x66\x44\x20\x8f\x68\x17\xb5\xc5\x9d\x38\x00\x20\xae\x5f\xbf\x2e\x7f\xfa\xd3\x9f\x62\x78\x78\x58\xac\xaf\xaf\xcb\x4f\x7c\xe2\x13\x02\x80\x1c\x1f\x1f\xd7\x4e\x6b\x00\xf4\x29\xe6\x32\xe1\xdc\xb9\x73\x90\x52\xe2\xe5\x97\x5f\x96\xba\x1c\x20\xf1\x0c\x87\x7e\x18\xe5\xb5\x7d\xd0\x38\x14\x4d\x76\x37\xaf\x5b\x57\x11\x21\xc9\xab\x77\x10\xbc\x33\xed\x91\x52\xe2\xd5\x57\x5f\x95\xea\x7a\x45\x89\x44\xf1\x6b\xb7\x27\x02\xd0\xe9\xf9\xdc\x98\x1b\x0d\x17\xe7\xeb\xe1\x19\x5f\x52\xad\x14\x8b\xe1\x72\x44\x15\xa6\x44\x2c\x08\x7d\xd9\xea\x09\x5e\x93\x84\x06\x08\x0d\xc0\xf8\x24\x59\xd2\x3b\x52\x8a\x20\x44\x6b\x6b\x6b\xf8\xe1\x0f\x7f\x68\xb7\x5f\x74\xbb\x5d\x1c\x3f\x7e\x1c\xbf\xf5\x5b\xbf\xa5\xe7\x19\x90\x4c\x74\x09\x98\x7b\x5a\x5a\x00\x56\x7a\x3e\x2f\x5e\x1f\xe9\xcd\x5d\xaf\xf5\xde\xa3\xe4\x78\x3c\x38\xc9\x17\x82\x8c\x2b\x86\x06\x92\x03\x87\xfa\x18\x80\x56\x74\x87\x00\x64\xce\xbd\xb2\x45\xb0\x32\x70\x75\x77\x55\x8a\x90\xc1\x20\xa3\x94\x49\x56\xeb\xcc\x4a\x87\x81\xd6\xdc\x68\xf7\x4c\x2c\xb8\xe3\xcb\xe4\x60\x90\x56\xd8\x18\xc0\x5b\x2c\x47\xe6\x1e\x90\x3c\xf5\x18\x60\xc9\x6c\xfa\x87\xfc\xa9\x95\xf2\x03\xa3\x1d\xff\xef\x96\x86\x7a\x4b\x4a\xc7\x22\x98\x59\x4c\x4c\x4c\x48\xcf\xf3\xec\xd3\x93\x45\x93\xae\x88\xa8\x64\x80\x52\x10\x8a\x88\xd1\xa0\xf2\x07\x71\x2f\x83\x90\xbe\xa8\x5d\x79\x79\x07\x11\x4b\x01\x40\xaa\xc9\xae\xef\x30\x2d\xec\xff\x86\x0d\x1b\xc4\xf2\xf2\x72\x21\xd7\xb4\xbe\xbe\xee\xb6\xc7\x4e\xbf\x15\x62\x70\x33\xb8\xe7\x72\x02\x4e\x5d\x79\x69\x45\x75\x0f\x82\x4d\x61\xfd\xcf\x3f\xff\xbc\xfc\xca\x57\xbe\x82\xa1\xa1\x21\xdb\x42\xd7\x5c\x4b\x49\x44\x4d\x06\xaf\x48\x41\xd5\x50\x70\xb5\xeb\x45\xc1\x7a\x99\xf4\xe9\x6d\x7d\x0b\x9d\x9e\xb4\x4d\xc7\xd6\x45\x1b\x31\x46\x00\xf0\xdd\xef\x7e\x37\x97\x0b\x3e\x7b\xf6\xac\x38\x7b\xf6\xac\x54\x77\xec\x44\x6a\x1e\xb5\x90\xde\xab\xdb\x44\xa2\xac\xae\x26\x9b\x14\x1c\x20\xb5\xac\x4e\xce\x34\xc1\x10\x98\x96\xf6\x4f\xa2\xda\x15\x2a\x51\x55\x5e\xbc\x78\x11\x3f\xf9\xc9\x4f\xf2\xe6\xbd\x0d\x97\xbe\x36\xba\xca\x51\x20\x2b\x3f\xc2\x8a\x03\x00\x3e\x79\xf2\x24\x1f\x3c\x78\x30\xd1\xd6\x30\x7b\x44\x14\x30\x78\xa8\xe7\x71\xe9\x8e\xeb\xc3\x1f\x29\x47\xa4\xf6\x99\x9d\xbb\x36\x74\x49\x94\x88\x1e\xa6\x54\x8b\x68\xd8\x66\x1d\x89\x0f\x04\x58\x76\x20\x8c\x92\xa4\xea\xea\x50\x7c\x7a\x7e\x24\x3c\x4f\x44\xda\x4a\x32\x1e\x1b\x1b\xe3\x77\xde\x79\x07\x51\x14\xd9\x72\xb6\x2d\xe7\xf6\x29\x7a\xad\x78\xdc\xe4\x1b\x5b\xa1\x26\x72\xe2\xed\x34\x47\x63\x93\x79\xcf\xab\xbb\xa8\xbd\xee\xdf\xa0\x34\x20\xbf\x5e\x2e\xf8\x1e\x45\xe5\x29\x33\xe3\xbc\x7e\xe7\xe9\x58\xec\x34\x5b\x87\x63\xa7\xa1\xa0\xdd\x45\x69\x76\x5d\x6e\x7b\x07\x29\x48\x6d\xdd\x85\xb0\xbe\x21\xf4\xf7\x59\xd7\x9d\x07\x63\x83\x27\x8b\x8b\x8b\xb4\x63\xc7\x0e\x56\xd7\x2e\xea\xab\x04\x22\xa4\x4a\x66\x7b\x87\x6a\x15\xc0\x2a\x33\xeb\x5d\xa8\x1b\x96\x48\xb0\xa2\xd2\x35\xd1\x30\x8a\xfd\x13\x27\x4e\x60\x6e\x6e\x8e\x98\xd9\xee\x7f\x06\x4f\x8f\x1e\x3d\x2a\xef\xbf\xff\x7e\x08\x21\xf4\x9d\x2c\xda\x86\xaa\x87\x84\x6b\x68\x29\x5d\x45\xe2\x7b\x95\x79\x45\xed\x86\xad\x22\xdd\x0d\x5b\x53\x0a\xf1\xb6\x22\x1c\x11\x11\xc9\x0b\x17\x2e\xfc\x7f\xc4\xbd\x6b\x90\x1c\xc7\x75\x2e\xf8\x9d\xac\xea\xc7\xf4\xf4\xf4\xbc\x30\x83\xc1\x00\x83\x37\x41\x90\x00\x41\x10\x00\x45\x52\x12\xaf\x64\x4a\x21\xdb\x94\x64\xf9\x86\x63\xef\x2a\xa4\x30\x69\xaf\x6d\xde\xdd\x88\xfd\xe1\xdd\x1b\x7b\x7f\x6c\xc4\xc6\x8d\x8d\x7b\xf7\xc7\xc6\xc6\xee\xbf\x8d\x8d\x90\x65\x87\xf5\x0a\xcb\xf2\xda\x6b\xaf\xbc\x96\xac\x2b\x5f\x5b\xb6\x44\xbd\x0c\x80\x0f\x50\x20\x41\x12\xc4\x73\x66\x30\x33\x98\x47\x4f\x4f\x4f\x3f\xaa\x32\xf7\x47\x55\x56\x9f\x3a\x9d\x55\xdd\xa0\xb4\xb1\x19\x18\x74\x55\x3e\x4f\x9e\x3c\xf9\x9d\x93\x8f\xca\xc4\xf7\xbe\xf7\x3d\x84\x61\xc8\xe7\xa5\x5c\xed\x2c\x27\xe8\x49\x5e\xc8\x64\x1b\x45\x23\x43\x50\x8f\x1d\x3b\x46\xf1\x98\x59\x11\x91\x87\x64\x6b\xac\x19\xd9\xbb\x5d\x3c\xbc\x67\xa7\x70\xd4\x2e\xcb\x5a\xab\x82\xe4\x44\x28\x77\x49\xb3\x1a\x3b\x46\x81\x5d\x66\x4a\x7f\xbc\x43\x50\x40\x81\x0c\xda\x37\xa6\x5b\x3f\x0d\x3d\xec\xc4\xa8\x19\x12\x91\x6e\xb7\xdb\x88\xef\xfd\xb4\x0c\xb0\xf5\x90\x8d\xa2\xd9\xbb\x75\x5c\x68\x64\x1a\x29\xbc\x36\x8e\x71\x84\xc9\x1a\xf2\xb2\xfa\xcc\x3d\x16\x9f\xd3\x26\xf3\x71\xd1\x6d\x1c\xcf\xbc\x3c\x08\x7f\x99\x9f\x0c\xe7\x8e\xd7\x9b\xcb\x81\xab\xee\xdc\x4f\x86\xb9\x3a\xb6\x75\x52\x10\x79\xd9\xae\x30\x17\xd0\xf3\x7c\x38\x20\x70\xda\x5c\x3c\x90\xed\x2c\xcb\x26\x00\x66\x7b\x7b\x9b\xd6\xd6\xd6\x70\xe8\xd0\x21\xe3\xfb\xbe\xb5\x18\xf9\x1e\x99\x4e\xbc\xca\x64\x57\x9d\xb6\xe3\xb9\x0b\xdb\x51\xb7\xd0\xfb\x6e\xa7\x65\x8c\x69\xc7\x93\xca\x41\xb3\xd9\x34\x7f\xfc\xc7\x7f\xac\xef\xde\xbd\x4b\xe9\xe3\x28\x52\x72\x99\xd0\x7d\xf9\xf2\x65\x7d\xf0\xe0\x41\x1a\x1d\x1d\xd5\x88\x26\x6e\x43\xc4\x2b\x65\x31\x2d\xbb\x94\x6c\xd2\xa3\x1d\x56\x6e\xd3\xae\x86\x81\xed\xb7\x69\xb7\xdb\xfa\xc6\x8d\x1b\xf8\xa7\x7f\xfa\x27\x74\x3a\x1d\x57\x7b\x4a\xf9\xe2\x86\x04\x01\xbd\x53\xce\x9d\xd6\x85\x23\x03\xea\x74\x3a\x38\x72\xe4\x88\xfd\xb4\x9d\x62\xf0\x28\x01\xa8\x78\x9a\x46\x8f\xdc\x1f\x39\xaf\x40\x5e\x0a\xeb\x39\x68\x18\x20\x75\x89\x4a\xe2\xd7\x83\x8b\xe4\x83\x1f\xb2\xc1\xc9\x15\x92\x54\x08\x55\x79\x69\xbc\x73\x79\xab\x1c\xdc\x8b\x99\xd1\x35\xc6\x98\xf1\xf1\x71\x73\xfd\xfa\x75\xc4\x63\x6f\x2e\x08\xbc\xc3\xa7\x1a\x04\x69\x61\xe4\x7e\x40\x7f\x67\x37\xe2\x57\x86\x49\x60\x90\x80\xc5\xc3\x78\x79\x3c\xdc\x95\x8f\xcb\xec\x96\xda\x49\xd6\xd1\xe6\xe5\x02\x14\xa9\x99\x65\xb8\xa4\xc7\xc5\x3f\x09\xa2\x3c\x3e\x4f\x67\x1d\x1f\x4a\xc8\x29\x71\x2e\x5f\x5c\x48\x95\xf0\xe7\x61\xd2\x5a\x93\xd6\xa0\x4b\x29\x70\x9a\xa4\x85\xc3\xc3\x92\xba\x6e\x6f\x6f\xeb\xbb\x77\xef\x92\xe7\x79\x98\x9e\x9e\x36\x88\x2c\x05\x6b\x79\x58\x00\x69\x23\xd6\xfc\x88\x2c\x8a\xdd\xf8\xb9\x15\x87\x75\x11\x69\xf8\x50\x6b\x1d\x7e\xf1\x8b\x5f\xd4\xaf\xbf\xfe\xba\xe4\x93\x54\x42\x32\x0c\x6f\xbe\xf9\xa6\x09\xc3\x90\xc6\xc7\xc7\x4d\xb1\x58\xb4\x74\x5b\xeb\xc3\x5a\x42\xed\x18\xa0\x2c\x5d\x76\x1f\x8f\xdd\x1c\x18\xd6\xeb\x75\xf3\xb5\xaf\x7d\x4d\xbf\xf7\xde\x7b\xc4\x86\xf6\x92\x27\xf6\x5d\xb6\x71\x02\x30\x1e\xd2\x9d\x87\x33\xdf\xd5\x51\x74\xb7\xdb\xa5\x2b\x57\xae\xe8\x0b\x17\x2e\xd8\x0d\x2a\x9e\x31\xa6\x40\xa0\x91\x8e\xaf\xfd\x13\xab\x95\x0f\x14\x43\xaa\xf2\x53\x89\x62\x5c\xe8\x91\x63\xc3\x2c\x78\x50\x1a\xf2\x52\x13\xac\x84\x04\x54\x60\x00\x5f\xd3\xa8\x21\xac\xdd\x98\x6a\x5d\x31\xf1\x9e\x0e\x22\xd2\xc5\x62\x51\xff\xf8\xc7\x3f\x96\x9d\xc9\xd2\x2d\xb5\x28\xff\x95\xc0\x01\xc6\x3c\x29\xa4\x12\x60\xa5\x36\xe3\x79\x66\x59\x28\x2e\xa0\x72\xa5\x73\x69\x73\x5e\xae\xb4\x9a\x20\xd2\x72\xba\xa4\x75\xe2\x12\x56\x59\x26\xef\x98\x59\x1a\x48\x02\x2d\x90\x6d\xe2\x9a\x8c\x30\xa9\xe9\x5c\xc2\xca\xeb\xc7\x87\x30\x9c\x1e\x5e\x4f\x9e\xce\x25\xd3\x59\xf1\xfa\xda\xa3\xd9\x6c\x9a\x9b\x37\x6f\x52\xa3\xd1\xc0\xcc\xcc\x0c\x0a\x85\x82\x5d\x1e\xb5\xdb\xc2\x93\xcd\x76\x88\x3b\x6a\xbc\x8d\xdc\x5e\xe7\x10\x68\xad\xf5\xe6\xe6\xa6\xf9\xea\x57\xbf\x9a\x47\x1b\xaf\xa3\x8b\x8f\x6a\x79\x79\x19\xaf\xbf\xfe\xba\x0e\xc3\x90\xa6\xa6\xa6\x0c\x11\x19\xa5\x94\x06\x60\x62\x3a\x42\x44\x16\x78\x08\x24\x9f\x88\x84\xdd\x6e\xd7\xfc\xe1\x1f\xfe\x61\x78\xf1\xe2\x45\x73\xe5\xca\x15\x09\x9e\x52\x1e\xb2\xe4\x8e\xcb\x01\x79\x70\x37\x1a\x84\x7f\x4a\x03\x2d\x2c\x2c\xa8\xe3\xc7\x8f\xdb\x79\x0e\x45\x44\x05\x10\x4a\x81\x32\xe5\xb9\xed\xd2\xe1\xe9\x66\xe1\x70\xf2\xed\x2b\xf5\x40\x83\x4b\x2a\xf8\x6e\x51\x08\x23\xc4\x82\x09\x21\x9e\x60\xed\x91\x4e\x20\x55\x0a\x54\xe5\xf6\x64\xfb\xc7\xbb\x25\xbd\x81\x1e\xa2\x9b\xe9\xe9\x69\x7e\x90\xb1\x14\x78\xd7\xf8\x96\x0b\xbb\x0b\x24\xa4\x90\x4a\xb3\x1d\x2c\x2c\x65\xea\xb2\x7c\x25\xaa\xbb\xf2\x05\xb2\x05\x98\xd3\x2b\x81\xc8\xd5\x11\x79\x7d\x78\x67\xb7\xfe\x10\xf9\x48\x9a\x78\x99\x1c\x40\x64\x3a\xfb\x2e\xf9\x28\x87\x2b\x12\x24\x24\xf8\xb8\x64\x8e\xc7\xe5\xf5\x91\x65\x4a\x8b\x4b\xd2\x27\x2d\x27\x69\xad\xb9\x78\xe1\xd4\xb8\xf7\xef\xdf\xa7\xd7\x5f\x7f\x5d\xef\xee\xee\xd2\xdf\xfe\xed\xdf\xea\xb3\x67\xcf\xc2\x18\x63\x3b\x6e\x72\xfa\x7f\x9c\x5e\xc7\xce\x5c\xb9\x72\x05\x6f\xbc\xf1\x06\xbe\xff\xfd\xef\xbb\xda\x32\xab\x6c\x97\x5f\x22\x5b\xcb\xcb\xcb\xe6\xb5\xd7\x5e\xa3\xcb\x97\x2f\xeb\x4e\xa7\x43\xdf\xfa\xd6\xb7\xc2\xb3\x67\xcf\x42\x6b\x6d\x8c\x31\xe6\x8b\x5f\xfc\x62\xf8\xf8\xe3\x8f\xc3\x82\xc5\xed\xdb\xb7\x69\x77\x77\x57\xca\x17\x72\xda\x42\xce\x75\xc8\x76\xd2\x4c\xb5\xa7\x08\x76\x31\x3f\x55\xa9\xf8\x83\x20\x45\xf1\xdd\x0f\xc6\x98\x3d\x44\x74\xf8\xd1\xa5\xca\x2f\x3f\xf7\xce\xe4\x4b\xbe\x56\xc5\x1e\x52\x30\xc8\x48\xae\x0b\x43\xca\xd2\xe8\x1d\x99\xcd\xaa\x25\x92\xda\xe7\x90\x4c\xeb\xe2\xc2\xf6\xff\xf6\xf2\x91\xad\x3f\x31\xd1\xd9\x96\xf6\xce\x0e\x1d\x9f\xc8\x3e\x88\x7e\xfe\x2e\xeb\x9e\xc7\x0f\x17\x7f\x86\xcd\x83\xbf\x73\x27\x85\xc5\x45\x5f\x56\xbe\x32\x8f\x3c\x7a\x5c\x74\x64\xd5\xc1\x45\x5f\x1e\x8d\x79\xfc\x1e\x54\xd6\xa0\xfc\xf3\xe2\x0c\x6a\xaf\xac\x30\x17\xed\x59\xb2\x9f\xd7\xde\x38\x77\xee\x9c\x8a\x2f\x8e\x4e\xde\x81\xe8\x4a\xc9\x6e\xb7\x0b\x64\xb7\xbd\x2c\x53\xc6\xcd\x72\x79\xfc\xcd\x6b\xe3\x07\x09\x73\x95\x93\x6a\x13\x79\xe9\x34\x90\x46\x17\x89\xe4\x09\xea\xed\xdf\xbf\x9f\xc6\xc6\xc6\x6c\x97\xb6\x37\xbc\x8d\x74\x7d\xe3\x1f\x5d\x1b\x39\x5b\x0a\xbc\x5a\x6f\xf7\x39\x03\x04\xbe\xcc\xca\xad\x09\x01\x1a\xfc\x60\x13\x4b\x54\xef\xab\x3f\xf8\x23\x5d\x6f\xe4\xbd\xe9\xdd\x1f\x76\x0a\x66\x1b\xd1\x5c\x87\x06\x10\xce\xce\xce\x12\x3b\x7a\x5f\x0e\x27\xa4\x16\x95\x96\x81\xcb\xa2\x90\xa8\x9f\x65\x91\x71\x78\x73\xf1\xd4\x65\x05\xc8\xb4\x72\xd8\x22\xd1\x5e\xd2\x26\x87\x5b\xdc\x02\x71\x69\x30\x9e\x87\x34\xdf\xad\xe3\x34\x64\xa5\xb1\x65\xf3\x34\xae\x61\x0b\x2f\x9b\xbf\xf3\xfc\xb8\x93\xf9\xf3\x36\xe8\xb3\x7c\x45\x7d\xb9\x95\x93\x65\xa9\x64\xd1\xce\x69\x71\x95\xe5\xb2\x9e\x14\x00\x5a\x5a\x5a\xe2\x79\x9b\xa5\xa5\x25\x5a\x5a\x5a\x42\xbc\x6d\x41\x0e\xdf\xac\x9f\x2c\x8b\x00\xe8\xc7\x1e\x7b\x4c\xad\xac\xac\xb8\xea\x25\x79\xe6\xb2\xe4\x5c\x72\xd2\xd7\x6f\x59\xbd\x5d\x56\xa8\x8b\x56\x17\x0e\x80\x03\x87\x6c\x48\x9e\x11\x2f\x98\x00\x98\xb7\xde\x7a\xcb\xc4\x27\x9f\xdb\x4a\xf8\xc6\x98\x72\xd7\x33\x85\xe9\x66\xe1\xc0\x4c\xa3\x70\x84\x4c\x32\xe3\xd9\x67\x35\x08\xc3\xa3\x57\x7d\x00\xbd\x2b\x16\x7a\x7e\xbd\x33\x48\x22\xcf\x62\xa0\x26\x5a\x05\xfd\xee\x62\xad\x73\x3d\x9e\x00\xea\x00\xd0\xd5\x6a\xd5\x5c\xbe\x7c\x59\x0a\x02\xef\xa8\xbc\x24\x39\xbc\x70\x75\x60\x1e\x2f\x4b\xa8\x5d\x71\x39\x4f\x65\x5c\x0e\x38\x3c\x6d\x96\x75\x23\xc3\x91\x91\x9f\xab\xd3\x73\x41\xb3\x8e\x97\xcd\x69\xe1\xbc\xc8\x1a\xce\xc8\xa1\x0f\xe7\x5b\x56\x98\x04\x41\xd9\x11\x5d\x1d\x43\xe6\x0b\x11\xc6\xdf\x39\xbf\x5c\x1d\x4a\xf2\xcb\x3a\xa9\x75\x5d\x72\x23\xcb\x91\x79\x49\xe0\xc9\x8b\x2b\x79\x63\x5e\x78\xe1\x05\xf5\xf8\xe3\x8f\xe3\xec\xd9\xb3\x74\xf8\xf0\x61\x3c\xf1\xc4\x13\x74\xfa\xf4\x69\x3c\xfe\xf8\xe3\x78\xf5\xd5\x57\xf5\x27\x3e\xf1\x09\x15\x0f\xbf\x65\x3d\x78\xfd\xa4\x02\x94\xef\x2e\x5e\x48\x40\xe0\xf1\x5d\xca\x92\xcb\x31\x5c\xab\x2a\x36\x03\x89\xde\xa9\xc6\xd8\xbb\x77\xaf\x3a\x79\xf2\xa4\xb5\x0c\x08\xb1\xd5\xa1\x61\x4a\x0a\x54\x39\xbc\x3e\xf2\xb8\xaf\xa9\x98\x1e\x8e\xd8\x1c\xc4\x31\xfb\x40\xfa\x9e\x4d\xbb\xa2\xe2\xd2\x85\x3d\xc2\x0a\xd5\xb6\x5f\xbb\x3e\xb3\xfb\x83\x8e\x67\x76\x0c\x4c\x17\x80\x56\x4a\x99\xd9\xd9\x59\xbc\xf3\xce\x3b\x2e\x0d\x92\xd5\xb8\x52\x68\xb9\x3f\xc4\xbb\x14\x52\xd7\xbb\xe5\xa1\xec\x6c\xb2\xc3\xba\x68\xe1\x71\x80\x34\x5d\xae\x4e\xea\x12\x0e\x97\x16\x95\xf4\x65\x69\x69\x09\x12\x40\x9a\x6f\xbc\x6e\xbc\x1c\x97\xf5\xc0\x7f\x5d\x80\xea\xea\xa4\x32\x6d\x56\x99\x59\xe5\x0c\xa3\x65\xe1\x88\x9b\x45\xbf\x2d\x9b\x83\xac\xab\xdc\x61\xe2\x02\x00\x3e\xfb\xd9\xcf\xd2\x33\xcf\x3c\x43\x17\x2e\x5c\x20\xdf\xf7\x95\xef\xfb\xe4\xfb\xbe\x07\x44\xc7\x1b\xc4\x7e\x38\x7f\xfe\xbc\x9a\x98\x98\xa0\xf3\xe7\xcf\xe3\xe1\x87\x1f\xa6\x8c\xd5\x18\xee\xf2\xea\x9b\x55\xbf\xbc\x3a\x65\x81\xa9\x91\x93\xa3\xbc\xe2\x1c\xd5\xfa\xcc\xb7\x76\xbb\x4d\x73\x73\x73\x18\x1b\x1b\xa3\x68\x5f\x4a\x74\xdc\x19\x80\x91\x8e\xaf\xbd\x85\xad\xf2\xc9\x6a\xc7\x9b\x01\xd8\x1a\x49\xa2\xf7\x18\x02\xb0\x20\x18\xf4\x76\x95\x4a\xbd\xc4\xac\x94\x28\x3e\xa1\x14\xaa\x99\xdd\xa2\x7e\x7b\xb9\xd6\x79\x0f\x44\xed\x78\x46\x3b\xac\x54\x2a\x66\x65\x65\x85\xb6\xb7\xb7\x65\xa5\xa5\x50\xc9\x8e\x06\x47\x1c\x17\x43\x79\x67\x73\x75\x30\x5e\x9e\xe4\x9f\x04\x21\x17\x8f\xa5\xe0\x49\x90\x81\x23\xae\xb0\xe9\x52\x9a\xdc\x35\x76\x97\xf9\xb9\xc0\x46\xf2\x2c\xcb\x2a\xc9\xb2\x1e\xb8\xcb\x8b\x23\x05\x55\x0e\xb9\x24\x70\x4a\x9a\x86\x89\x2b\x9f\x1f\x24\x3f\x97\x0c\xf1\x70\x4e\xbb\x33\xdf\x87\x1e\x7a\x48\x7d\xea\x53\x9f\xa2\xa7\x9e\x7a\x8a\x4a\xa5\x92\x22\x22\x2f\xfe\xe6\x2a\x3a\xaa\x30\x52\xe2\x05\xa4\xaf\x84\xf4\xe2\x4d\x5f\xaa\x58\x2c\xe2\xfc\xf9\xf3\x38\x7e\xfc\x38\xbd\xf1\xc6\x1b\x2e\x7e\x49\x59\xe3\x4e\xd6\x9f\xd7\x01\x19\xfe\x8e\x1e\xd8\x8b\x6b\x2d\x0e\x9e\x98\x0b\x99\x14\xd4\x84\x21\x5a\x6b\xba\x76\xed\x9a\xb6\xbb\x48\x01\x28\x63\x4c\x81\x88\x4a\x5d\xcf\x14\xc6\xda\xde\xcc\x7c\xbd\xf4\x70\xfa\xc8\x35\x9e\x9d\xf5\x4a\xa1\x41\x1a\x34\x78\x1a\x76\x19\x50\x2f\x2e\xbc\x6a\xdb\x1b\xbf\x3e\xdd\xfa\x61\xc7\x33\x3b\x20\x74\x89\x48\x2b\xa5\xcc\xd8\xd8\x98\xb9\x75\xeb\x16\x05\x41\x20\x1b\xdd\xa5\xe5\x5c\x0c\xcb\x42\x75\xce\x9b\xac\x4e\x9e\x57\x0e\x98\x7f\x5e\x9c\xbc\x70\x09\x42\xa9\xb6\x61\xe9\x5c\x9d\x5c\xd6\xcb\xc6\x71\x69\x49\x29\x30\x59\x40\x2b\xcb\x71\x75\x58\x29\x47\x2e\x61\x95\x43\x03\x20\xdf\x9a\x92\x96\x5e\x4a\xb9\x65\xf0\x8f\x5b\x5f\xbc\xde\x92\x17\x52\x69\x70\x1a\x24\xcf\x38\xf8\xf6\x59\xb1\x1f\xff\xf8\xc7\xd5\xb9\x73\xe7\xe0\x79\x9e\x05\x0c\x8f\x88\x0a\x44\x54\xf4\x43\x1a\x19\xe9\xaa\xb1\xf1\x96\x3f\x3d\xd5\x2c\xcc\x54\x5b\xde\x78\xb9\xab\x46\x09\x28\x18\x82\x32\x04\x05\x82\xdd\x28\x46\xe5\x72\x19\x67\xce\x9c\xc1\xde\xbd\x7b\x29\xe7\x2a\x54\xeb\x5c\x0a\x90\xd7\xdb\x49\xaf\xe0\x35\xe7\x85\x8d\x07\x0f\xfd\x8d\xc1\x33\x91\x9d\x24\xa5\xbd\xc6\xc7\xc7\xd5\x43\x0f\x3d\x64\x6f\xc1\x22\x8a\x2e\x93\x29\x12\x51\x39\x50\xc6\x3f\xbc\x5e\x3e\x53\x0a\xd5\x68\xea\x7e\x41\xb6\xaf\xbc\x77\x80\x6a\x5c\xab\x98\x92\xf4\x17\xcd\xd1\x8b\xb1\xa0\x42\x60\x87\x20\x13\x4a\x81\x9a\xe9\x78\xe6\xd6\xd2\x78\xfb\x5d\x43\xc9\xe7\xf6\x41\xad\x56\x33\xad\x56\x0b\xf7\xee\xdd\x1b\x88\x9e\x2e\xc6\x38\xe2\x93\x23\xcc\x3e\xbb\x04\xc8\x15\x9f\xf3\x95\xf3\x59\x86\x65\x95\xe3\xd2\x82\x79\x1a\x42\xfa\xf1\x32\x79\x5a\xd9\x79\xc0\xde\xc1\xfc\xb9\xd0\x65\x95\x2d\x01\x47\x0a\xb5\x6b\x18\xec\xaa\xa3\x86\x9b\x76\x5e\x07\xc9\x4b\x59\xa6\x04\x07\x59\x57\xa0\xbf\xb3\xf0\x3c\xe5\xe4\xb0\x4b\x7e\xb8\xec\xa4\xca\x29\x14\x0a\xea\xb9\xe7\x9e\xa3\xa3\x47\x8f\x02\xd1\x30\xc4\x8f\x95\x6b\x79\xa4\xa3\x26\x0f\xaf\x97\x4f\x9c\xbd\x5b\xfd\xc4\x13\x77\xc7\x3e\x77\x7a\xa9\xfa\x9b\x27\x57\x2a\xff\xf9\x89\xd5\xca\x67\x4e\xac\x55\x7e\xf9\xf0\xfa\xc8\xd9\xb9\xed\xd2\x9c\x21\xd3\x6e\x15\x74\x37\x54\x51\xbb\x10\x11\x94\x52\x66\x62\x62\xc2\x1c\x3c\x78\x90\x6e\xdc\xb8\x61\x3f\xb5\xb0\xe5\xf3\x76\x71\xcd\x89\xf1\x7a\x67\xc9\xa9\xb4\x84\x6d\xde\x49\x7a\x97\xc5\xe1\x42\x21\x5e\x50\x52\x60\xbb\xdd\xd6\xd3\xd3\xd3\x76\x33\x8a\x8a\xc1\xc3\x07\x50\x6a\x7b\x5a\xcd\x34\x0a\x07\xa7\x9b\x85\x43\xc9\xc9\x44\x09\x08\x50\xef\x03\x38\xc3\x32\x27\x7b\xd4\x1a\xf5\x3c\x01\x98\x04\x4d\xe2\xbb\x66\xe3\x38\x04\x40\x19\xf2\xc6\x5b\xfe\xcc\xad\xc9\xf6\x4f\x9b\x05\xbd\x01\x8a\xce\xe9\x00\x60\xa6\xa6\xa6\xcc\x6b\xaf\xbd\xe6\xd2\x34\x52\xe3\x70\x2d\xc8\x19\x25\xfd\x25\xfa\xda\x78\x72\x78\x27\xad\x35\x39\xf4\xe3\xe1\x2e\xd0\xe2\x79\xcb\xb2\xa5\x30\x4b\xed\x2b\xb5\xa1\xac\x33\x44\x5a\xde\xa6\x70\xbc\xcb\x09\xc0\x2c\xcb\x85\xcb\x4d\x9e\x85\x21\xe7\x7b\x24\x3f\x64\x79\xae\x76\xe3\xd6\x91\x2b\x0e\x84\x7f\x16\x7d\x12\x50\x80\x7e\xcd\x3d\x88\xbf\x60\xfe\xc9\xbb\xef\xfb\xea\x97\x7e\xe9\x97\x60\x41\x23\x56\xa8\x25\xcf\x50\x75\xff\x66\xe9\xe8\x47\xae\x4f\xfc\xce\xe3\x8b\x63\xff\x66\xdf\x76\xf1\x3f\x1b\xeb\xf8\xe7\x4a\xa1\x3a\x54\xd0\x6a\xae\xa0\xd5\xbe\x52\xa8\x0e\x55\x3b\xfe\xd9\x99\x9d\xc2\xc7\x0e\x6f\x94\x3f\x34\xdb\x28\x4e\x35\x8b\xe1\x5a\xa3\x14\xee\xea\xf8\x66\x16\x8a\x0e\xeb\xd6\x07\x0e\x1c\xc0\xbb\xef\xbe\x0b\x7e\x3d\xa6\x83\x7e\x97\x9c\xcb\xb6\xe0\x71\xac\x93\x7e\x09\x9f\xa5\xc5\x21\x1b\xc5\xa5\x05\x53\x85\xbf\xf7\xde\x7b\x3a\x3e\xb1\xc8\x1e\xeb\xee\x19\x63\x4a\xda\x43\x11\x40\xf9\xd0\x46\xf9\xd1\x82\x56\xa5\x1e\x68\x44\xe5\xc7\x47\x93\x8a\x83\x8b\xd2\x4a\x2b\x59\x94\xa1\x34\x58\xc8\xab\x94\x0b\x21\xed\x51\x86\x36\x6f\x4f\xb6\xaf\x6a\x95\x6c\xf3\xd5\xc5\x62\x51\x07\x41\x40\xf7\xee\xdd\x93\x75\x94\x82\xcd\x4d\x66\x08\x7f\xa9\xe1\x65\xe7\x76\x69\x4e\x57\x5e\xbc\x11\x64\xc7\x93\x9d\x87\xa7\xe3\xf9\xb9\xb4\xb7\x8c\x23\xb5\xa1\x8b\x3e\x97\x85\xc4\x9d\xcb\xbc\xe5\x74\xcb\x77\xa9\x7c\xa4\x80\x4a\x2d\x2d\x01\xc3\x35\x3f\x90\xa7\xfd\x24\x0d\xb2\xbe\x79\x16\x82\x9c\x0f\xb0\x4e\x82\x15\xcf\x07\x70\xe7\x6b\x79\x09\x46\x07\x94\x52\xf4\xb1\x8f\x7d\x0c\x87\x0f\x1f\xb6\xbb\xab\x8b\x44\x54\xf6\x43\x1a\x3f\xbb\x38\xf6\xec\x47\xde\x9d\xf8\x0f\x7b\x76\x0a\x9f\xf1\xb5\xda\x03\x90\x97\x3e\x91\x9c\x1f\x32\x4c\xca\xd7\x6a\x66\x62\xd7\x7f\xfa\xc0\x66\xf9\xd1\xae\x67\xee\xde\xaf\x76\xd7\xec\x45\x4e\x1c\x3c\xae\x5e\xbd\x2a\xc1\x60\x18\x4b\xd4\xc5\x8f\xbc\x76\x4e\xd2\x72\x8b\x43\xa2\xa8\x8b\x41\x96\x89\x29\x73\x6c\x7e\x7e\x1e\xd5\x6a\x95\xc0\x26\x75\x00\x94\x5b\x05\x8d\xf9\x7a\xe9\x58\xad\xe5\xcd\x25\xcc\xb0\xb7\xa8\x9b\x18\x06\xe2\x12\xec\xbe\x8d\xe4\xd6\xb0\xb8\x24\x8a\x11\xc6\x5a\x29\x96\xf4\xe4\xce\x0a\x44\xdf\xb0\xd4\xda\xde\xdc\xca\x58\xf7\x95\xad\x72\xb0\x4a\xd1\x05\xc7\x5d\x00\x66\xdf\xbe\x7d\x26\x3e\x5e\xd0\xd6\x89\x77\x34\xfe\xcc\xfd\xf2\x1a\xc1\x85\xe0\x10\xe9\xa5\x76\x72\xc5\x4b\xf1\xd1\x91\x07\x6f\x30\xdb\x3e\x2e\x8d\x9c\x45\x9b\x4d\x03\x47\x78\x96\x96\x87\x23\x6d\x16\xe8\x66\x81\xb0\xab\x6e\xc6\x11\xdf\xa5\xa0\xf2\xe4\x4d\x5a\x2a\x2e\x8b\xc0\xa6\x93\xf9\x70\x3e\x64\xcd\xa3\x48\xb0\x92\x34\x66\x69\xea\x3e\xab\xe9\xd4\xa9\x53\x78\xec\xb1\xc7\x12\xd0\x00\x50\xf6\x42\x4c\x5c\xb8\x5d\xfb\xd8\x93\xb7\x6b\xff\xa1\x1c\x78\x0f\xdb\x6b\xae\x7a\x32\x9f\xc8\x72\x8f\xf9\x31\x85\x64\x40\xa5\xd0\x5b\x98\xaf\x97\xce\x05\x9e\xb9\x75\xaf\xd6\x5d\x06\x45\x5f\xd8\x02\xc0\xc8\xc8\x88\xde\xdc\xdc\xa4\x8d\x8d\x0d\x08\x1a\x49\xd0\x2e\x79\x25\xfb\xc0\x30\xed\x9c\x00\x87\xab\xe1\xb3\x84\xbf\xcf\x44\xd5\x5a\xf3\x3d\x1d\x76\xae\xc3\x27\xa2\x62\xe0\x19\xcf\xd7\x34\xba\xb0\x59\x3e\xed\xe9\xde\x87\x6f\xc9\x19\x89\x3d\x7c\x48\x40\xa4\xb7\xbd\x9c\x5d\x20\x83\xde\xc5\xc9\xc9\xbc\x88\x01\xf8\xa4\xaa\xaf\x69\xbc\xda\xf6\x8a\x37\xa7\x5b\xaf\x74\x3d\xb3\x83\xde\x99\x98\x18\x1d\x1d\x35\x6f\xbf\xfd\xb6\x6d\x0f\x17\xfa\x2a\x87\x3f\x8f\xaf\x45\x5c\x39\x01\xc5\x35\x93\x6b\xcc\xed\x2a\xc3\xa5\xdd\x5c\x5a\x8e\x3f\xdb\x5f\xd9\xe9\x64\x79\xb2\x43\x4b\x93\x9c\xd7\x05\x0e\x7f\x5e\x5e\x16\xc0\xf2\x7a\xf1\x32\x5c\xf4\x72\xbe\xb9\x14\x93\x1c\x8b\x73\xfe\xf2\xf2\xf8\x3b\xe7\x67\x5e\xc7\xe6\x65\x01\x69\x3e\xf3\xb2\x24\xa0\xf1\x5f\xee\xa4\xdc\x48\xbe\x99\x4f\x7f\xfa\xd3\xa4\x94\x52\xf1\xaa\xc9\x08\x0c\x6a\x27\x57\x2a\x4f\x3d\x73\x63\xfc\xdf\x97\x02\xb5\x60\x51\x81\xf8\x91\x13\xf2\xf8\x09\x83\x64\x8b\x82\x3d\x5e\xc2\x33\x98\x9a\x6d\x14\x4f\x6d\x97\xc3\x9f\xdd\x1f\xed\xae\x01\xbd\x61\xf9\xb1\x63\xc7\xcc\xc5\x8b\x17\x79\x5d\x24\xdf\xa4\xe5\x67\xeb\x22\xfb\x35\xd0\x2f\x4b\xfc\x37\x01\x0e\x39\x79\x22\x1b\xd9\xc5\xcc\x54\x81\x23\x23\x23\xea\xf1\xc7\x1f\x4f\xf2\x88\xe7\x3b\x7c\x00\xe5\xdd\xa2\xc6\xc2\x66\xf9\xe1\x6a\xd7\x9b\x4a\xb1\xdf\xde\x01\x91\x30\x0e\xe9\xe6\x35\xb1\x27\x03\x18\x39\x2f\xd2\xab\x92\x01\x19\xc2\x68\xd7\xdb\x1f\x2a\x73\x67\xb1\xd6\x7e\x4f\xc3\x74\x62\x73\x2e\xa8\xd5\x6a\x86\x88\xb0\xb8\xb8\x08\x87\x93\xda\x57\x3a\x2e\xd4\x2e\x20\x80\xf0\x93\x69\x65\x63\xb9\x26\xfd\xb8\x3f\xd0\xdf\x70\x2e\xcd\xc8\x69\x97\x74\xbb\x26\xc5\xe4\x38\x5c\xa6\xe1\xda\x38\x6b\xc8\xc6\x3b\x08\x0f\x97\x40\x22\x35\x1c\xc4\x2f\x6f\x41\x17\x68\xf4\xc9\x98\x83\x06\x17\xd8\xc9\x49\x67\x08\x7f\xc9\x2b\xa9\x00\x24\x58\xb8\x68\x90\xf3\x63\x3c\x9d\x01\x80\x27\x9f\x7c\xd2\x9e\x55\x53\x32\xc6\x54\x66\x1b\xc5\x23\x1f\x79\x77\xf2\xdf\x56\x3b\xde\x19\xae\x0c\xa3\x02\x4c\x32\xf1\x9f\x12\x26\xe2\x8d\x1c\xa5\x21\x22\xf8\x9a\xa6\x27\x77\xa3\x39\xbd\x96\x1f\x36\xd9\x87\x6d\x7a\x74\x74\x94\x6e\xde\xbc\xc9\x79\xc5\x79\xc0\x65\x40\x02\xa9\x0b\x1c\x5d\xbc\x4a\xda\xcd\x5a\x1c\x12\x6d\x65\x62\x97\xa0\x26\x05\x06\x41\x60\xca\xe5\x32\xcd\xce\xce\xda\x43\x5e\x15\x11\x79\x44\x54\xe8\x7a\xc6\x2f\x06\xaa\x7a\x60\xab\xf4\x48\x7a\x69\x96\x52\x3f\x7d\x64\x8b\xe3\xec\x48\x3e\x10\x20\x97\x61\x08\x28\xd6\x5a\xfe\xde\x95\xb1\xee\x2b\xdb\x23\xe1\x3a\x18\x22\xef\xd9\xb3\xc7\xbc\xf2\xca\x2b\xae\x89\x42\xce\xb4\x41\x1d\x70\x90\x9f\x64\x76\x96\x39\xec\xea\xec\x32\x9e\x7c\x96\xf4\x71\x20\x18\x14\x4f\x76\x38\x57\xde\x1c\x34\x5c\x13\x8d\x2e\xcb\x33\xcb\xda\x92\x71\x78\xb8\x04\x5d\x2e\x7b\xd2\x62\x90\xd6\x89\x34\xbf\x6d\x5d\x5d\x7c\xe5\x65\xba\xf2\xe6\xe9\xa4\x39\xee\x2a\x43\xc6\x71\x5a\x26\x2f\xbd\xf4\x92\x42\x24\xff\x05\x00\x15\xcf\xd0\xc4\xf9\xbb\x63\xbf\x76\x68\x63\xe4\x5f\x11\xc8\xb7\xb7\xad\x44\x19\xd9\xc9\x7e\x82\x38\x29\xd3\x1a\x25\xec\xda\x10\x2b\xe3\x84\x72\xa0\x66\x0c\xe1\xde\xad\xa9\xf6\x35\x44\x9f\x5b\x84\x00\xf4\xc4\xc4\x84\xdd\x35\xcd\xe9\x73\x59\xc9\x40\x9a\xe7\xdc\x49\xe0\x94\x16\x2a\x01\xbd\xf3\x38\x24\x30\x70\x06\x4a\xe7\x2c\x70\x64\x64\x84\x0e\x1f\x3e\x6c\xe7\x2a\xec\x5c\x47\x11\x84\x42\xb3\xa8\xf5\xc2\x66\xe9\x64\xa5\xeb\x4d\xf4\x65\x98\x21\xee\xa9\x6b\x12\x08\xe8\x7d\x3e\x6b\x92\x49\x53\xcb\x4c\xbb\x3c\x4b\x44\x28\x86\x34\x35\x12\x78\xe6\xce\x44\xeb\xf5\xae\x67\xda\x88\x8e\x5a\x0b\x3d\xcf\xc3\xec\xec\x2c\xde\x7b\xef\x3d\xc4\x27\x46\x73\xd3\x96\x0b\x8a\x4b\x30\x5c\x80\xe9\x02\x08\xc9\x3f\x39\x1c\x01\xcb\x57\x3a\x57\xfe\xb2\xc3\xc8\x8e\x21\x05\x77\x10\xb0\xb8\x34\x4d\x56\x7e\xdc\x8f\x44\x3c\x69\x5d\x65\x75\x28\x9e\x87\xe4\x91\x54\x54\x12\x28\x6c\xbe\xb2\x4c\xd9\x21\xb8\x93\xfc\x96\x20\xc2\x3b\x80\x9c\xa7\xe0\xe5\x71\x10\xcd\x02\x89\xbe\xb9\xc1\x0f\x7c\xe0\x03\x34\x37\x37\x07\x44\x73\x7c\x45\x00\xd5\x89\x5d\x7f\xe1\xc9\x5b\xb5\xdf\x1b\xed\xfa\x47\xa2\xc8\x71\x11\xc9\xbe\xa4\x18\x31\x92\x39\x8e\x1e\xa0\xc4\xff\x7a\xdf\x7f\xda\xa8\x40\xb1\x1c\xa8\xd1\x1b\x53\xad\x1f\xb6\xfc\x70\x3b\x9e\xcf\x4b\xac\x8e\x5b\xb7\x6e\x65\x0d\xb7\xa4\xac\xbb\x14\x80\xe4\x91\x93\x37\xdc\x84\xe3\x8e\xfb\x6b\x16\x6e\x9f\x15\x8b\xa3\x00\xa8\x6b\xd7\xae\xe9\x7a\xbd\x6e\xf7\x65\x04\xf1\xe9\x5c\x0d\x63\x4c\x7d\xbb\x14\x2c\xbe\x35\xdb\xfc\x91\x26\x93\x94\x63\xa2\xd9\x51\xfb\x96\x2e\x3d\x9e\x3c\x85\x3d\x1d\xc9\x80\x43\xaf\x43\x1a\x28\xc9\x4b\x01\xfe\xc2\x46\xe9\xf9\xd3\x4b\xd5\xe7\x94\x46\x15\xd1\xed\x65\x45\x00\x58\x58\x58\xc0\xb3\xcf\x3e\x0b\xdf\xf7\xa5\x69\x2c\x4d\xf4\xac\xf1\xad\x8b\x17\x60\x71\xb5\x88\x9b\xc5\xdf\x2c\x9e\xca\x67\x25\xe2\x49\x9a\x64\x18\xf7\xe3\x75\x94\x42\xa0\xc5\xbb\xa4\x39\xab\x0c\x57\x7d\x5d\x75\xe6\xf1\x64\x5d\x78\xb9\xc3\xf2\x4d\xbe\xcb\xfc\x64\xbe\x79\xfe\x92\x3e\x99\x2f\x06\x84\x65\xb5\xab\x3e\x71\xe2\x44\x52\xe7\xf8\xea\x90\xf2\x5c\xbd\x78\xa2\xd6\xf6\x4f\x24\xba\x0f\xd6\xa0\x8e\x05\x36\x06\x0f\x3e\x54\x49\xce\xb2\x41\x2f\x0a\xc5\xbf\x30\x51\x78\xb5\xe5\x9d\x98\xab\x17\x4f\x12\x51\x25\x2e\x4b\x11\x91\x9a\x9c\x9c\x84\x70\xb2\xcd\x64\x58\x5e\x7b\x67\xf1\x26\xd5\x80\x32\x92\xab\x81\x65\x87\x4b\x11\xf6\xf5\xaf\x7f\x5d\x1b\x63\x34\x90\x5c\x4a\xdd\x04\xd0\xd0\x84\xcd\xb7\x67\x76\x2f\x6f\x8e\x04\x77\x12\x66\x18\x4a\x70\x2f\xb9\x28\x2f\xe1\x55\x0f\x24\xc0\x7e\xa4\x23\x8e\x37\xc6\xfe\x47\x28\x68\x9a\x3a\xbd\x34\xfa\xe2\x81\xcd\xf2\x49\x18\x54\x11\xa1\xbf\x0f\x40\x9d\x38\x71\x02\xb1\x56\xc8\xd2\xfa\xb2\xbe\x29\x80\x64\x71\x5d\xe3\x72\xf9\xe7\xca\xdb\xe5\xa4\x30\x4b\xde\xcb\x38\x3c\x5d\x1e\x38\x49\xfa\xb2\x3a\x86\x4b\xb8\x5c\xc2\x24\xf3\x73\x75\x70\x99\x2e\xaf\xc3\x0d\xea\xc0\x59\x75\x76\xd1\x24\x5d\x56\xfb\x64\xa5\x1b\xa6\xde\xb9\xfe\x95\x4a\x25\x29\x9b\x88\x7c\x18\x94\x27\x9b\x85\x63\x9e\xa6\x1a\x80\xb4\x45\xcd\x8f\x0c\x8c\xaf\xa1\x48\xb9\xac\x93\xe7\x29\x4a\xeb\x6b\xaa\xee\xdf\x2a\x9d\x42\xa4\x18\xfd\xf8\x1a\x07\x2b\xdb\x09\x1d\x0e\x9a\xf3\xc0\x23\x4f\xbe\x53\x6e\x90\x06\xca\x73\x2e\x81\x56\x8d\x46\x03\x31\x78\xf4\x4e\x63\x26\xd4\xb7\x4b\xc1\x9d\xab\x7b\x77\x5e\xd6\xb0\x56\x87\x49\x8c\xc9\x14\x8b\xe4\xc8\x57\x8e\xc0\x20\xfc\x52\x71\xe2\x71\xa0\x21\x8c\xb5\xbd\x93\x1f\xb8\x35\xf6\xdb\xd5\x8e\x37\x0b\xa0\x62\x8c\x29\xda\x7b\x67\x3f\xfa\xd1\x8f\xda\x3a\x67\x31\xca\xba\x41\x16\xc6\xa0\xb8\x79\xe0\xeb\xb2\x2a\xe0\x78\xce\x13\x68\x97\xb6\x76\xc5\x75\x99\xd9\x2e\xcb\x24\xcb\x0d\x02\x4c\xeb\x9f\x05\x78\x92\xbe\xbc\x67\x9e\xc6\xc5\x1f\x19\x2f\x8b\x7e\x97\x3c\xe7\x81\xab\xcb\x42\x73\x95\xe1\x2c\xaf\x56\xab\x29\x00\x60\xf7\xb0\xf8\x9e\x41\xb9\xda\xf1\xe6\x94\x89\xae\x2d\x00\x33\xa0\xed\x32\x6c\x9c\x86\xad\x20\xb2\x88\x89\x33\xf1\xff\xd1\x6f\x6c\x81\xa8\xb1\xb6\x77\x00\x06\x65\xfb\xcd\x8b\x31\x46\x19\x63\x30\x33\x33\x23\x2d\xb9\x3c\xfa\xb3\x14\x8a\xac\x7b\x2a\x9d\xcb\x84\x95\x9a\xc4\xa5\x85\xb2\xb4\x23\x2e\x5d\xba\x64\xc3\x35\xe2\x4b\x8b\x8d\x31\x75\x4d\xd8\xbc\x36\xd3\xbc\xb8\x5e\xe9\xde\x32\x31\x68\x24\x46\x82\xfc\x65\x23\x71\x63\xad\x36\xe2\xec\x34\xc9\xe8\x05\x88\xc3\x48\xb0\xdb\x40\xed\xab\x97\x3e\x7e\xfe\xd6\xd8\x67\x94\xc6\x04\x80\x8a\x65\x6e\xa5\x52\xc1\x67\x3e\xf3\x19\x69\x55\x48\x26\x4b\xcb\x41\x89\xb8\x2e\xa6\x66\x35\x8a\x0b\x64\xa5\xbf\xcb\x5a\x71\xf9\xe7\x95\x9b\x95\x7e\x50\x87\xce\xcb\x43\xba\xa1\x4c\x59\x96\x97\xe4\x95\x2b\x4e\x56\x19\xfc\xd9\x65\x69\x70\x70\x76\x69\xcd\xbc\x7c\x86\x2d\xd3\xa5\x30\xfa\xfa\xc4\x99\x33\x67\x00\x24\x43\x10\x05\xc0\x27\x43\x45\xa5\x51\x96\x96\x73\x32\x99\x10\xcf\x80\xf6\x40\xc4\x0a\x31\x21\x6d\x80\xf4\x26\x46\xd9\xbb\xf2\x35\x55\x11\x6d\x2e\xf3\x11\x59\x39\x20\x22\xac\xae\xae\xe6\x59\x88\x59\x7c\xe0\x75\x95\x06\x85\x7c\xce\x6c\xd0\x2c\x21\x70\xc5\x4f\x31\xf1\xad\xb7\xde\x82\xb5\x3a\xe2\x33\x19\xe3\x1b\xb7\xb1\x59\x2f\x87\x8b\xaf\xed\xdf\xf9\x07\x4d\x08\xe4\xf8\xc3\xce\x79\xf0\xb9\x8f\x04\x61\xe3\x67\xb2\x43\x1b\x4a\x8c\x95\x5e\x1c\x63\x22\x84\x31\x48\x26\x9a\x94\xa1\xca\xa9\x7b\xa3\xff\xc5\xa3\xcb\xa3\x1f\x20\x50\x15\xd1\x2d\xed\xbe\x31\xc6\xdf\xbb\x77\x2f\x3e\xfc\xe1\x0f\xab\xb8\xa1\x25\x63\x5d\xcc\x92\x56\x84\xd4\xf6\x9c\x6f\xb2\x91\x78\xfa\x3c\x7e\xeb\x9c\x3f\xe9\xb2\xac\x08\x49\x23\x90\x4d\x0b\x90\x5d\x07\x97\xb0\xd9\xbc\x24\x1d\x79\x75\x92\x4a\x08\xe2\x37\x4f\xdb\xb9\xca\xcb\xa2\x43\xa6\x19\x64\x25\x0c\x02\xd0\x41\xef\xa9\x5f\x7b\x34\x60\x3c\xe4\x50\x00\x94\x01\x7c\x13\x83\x43\xda\x86\x30\x4c\xfa\xed\x37\x5b\xc6\x62\x46\x14\x4e\xd2\xea\x88\xf2\xb6\xb6\x07\x00\x74\x95\x09\x0c\x12\x0b\xa7\x7f\xb8\xd3\xcf\x67\x09\x0a\xae\x3a\xca\x70\x17\x2f\x95\x6c\x38\x57\xa1\xd6\x49\x21\x96\x02\x96\x10\x15\x5f\x32\xa3\x81\x68\xae\x83\xa2\xbb\x1c\x1a\x20\xac\xbf\x35\xd3\xbc\xb8\x52\xed\xbc\x63\x2c\xf3\xc8\x1a\x18\x0c\x55\x8d\x9d\x59\x66\x8b\x29\xe8\xa1\x45\x72\xd7\x0a\x4b\x87\x18\x6d\xa3\xe4\x94\xdc\x06\x57\x08\x69\xf6\x99\x1b\xe3\xff\xdd\xde\xed\xe2\x51\x18\x54\x89\xa8\x1c\xef\x33\x51\x8f\x3c\xf2\x88\x1d\x56\x49\xc6\x66\x69\xca\x3c\x61\xcc\x02\xd5\x2c\xed\xef\xea\xd8\x83\x2c\x97\xbc\xb6\xca\xd2\xec\x79\xda\x87\x97\xe5\x1a\x2e\x48\x61\xcb\x02\x88\x3c\x8d\xe6\x02\x4c\x29\xb4\x2e\x70\x71\x81\xac\x8b\x8e\x2c\xfa\x25\x8d\xfc\xd9\x65\x9d\x00\x69\xfa\x5d\x74\xba\x80\x5c\x03\xc0\x87\x3f\xfc\xe1\x24\x2f\xdb\x81\x43\x65\x74\xbd\x1c\x6c\x1a\x42\x90\x1e\x75\xa7\x95\x66\xef\x7c\x7f\xf4\x2c\x0f\x31\x41\x0a\xa0\xf7\xe9\x45\xa4\x3c\x83\xb5\x6a\xf7\x0e\xff\x48\x34\xde\x80\x89\x4f\x7e\xf2\x93\x52\x0e\xf2\xea\x64\xfd\x5c\x3c\x92\xef\x89\x5f\x56\x03\x48\x53\x4c\x89\x3f\x20\x9b\xf9\x00\x80\xad\xad\x2d\x9b\x36\x88\x6f\x91\x6a\x00\xd8\x6c\xfb\x7a\xe5\xe2\xc2\xf6\x77\x3b\x9e\x69\xa6\x60\x58\xcc\x5b\xf0\xc3\x8e\x93\xf0\xac\x45\x3a\xf1\x4c\xd6\xf2\x88\xe7\xaa\x2b\x5d\x75\xf2\x63\x6f\x4f\xfe\x37\xb5\x96\x37\x8f\x68\xbe\xa3\x8c\x78\xb2\xf4\x85\x17\x5e\xc8\x13\x16\xa9\xc1\x91\x13\x4f\xc6\xcf\xf2\xcf\x02\xe4\x2c\xf0\x70\x81\xbb\xab\x0c\x57\x3d\x24\x58\xb9\x34\x4e\x1e\xe0\x0c\xa3\xed\xf3\x34\x74\x16\x60\x48\xeb\x2e\x0b\xb0\xb3\xac\x96\x2c\x10\xcd\x12\x7e\x29\xbf\xae\xb6\xcb\x02\xa5\x41\x6d\xd2\xc7\xbb\xc4\x8a\x25\xe8\x8d\x4a\xb0\x12\x28\xd3\x4a\x0d\xcb\x93\xc9\x0e\x2e\xc0\x88\x97\x68\x79\x46\x48\x85\x25\x49\x89\xd0\xf6\x74\xe3\xf6\x44\xeb\x5d\x08\x5e\x10\x11\x7e\xfa\xd3\x9f\x42\x38\x97\xa2\x70\x29\xcb\x2c\x59\xe9\x93\x41\x17\xe2\xb8\x98\x2d\x3b\x00\x77\x2e\xc1\x55\xdf\xf8\xc6\x37\x34\x00\xbb\xca\x12\x20\x5e\x61\x01\x61\xf3\xe6\x54\xeb\x8d\xdb\x13\xed\x2b\x26\x36\xcf\x52\xab\xb2\x82\x97\x89\x4b\x2d\xdf\x5a\x3f\x96\xd8\x82\x34\x00\x43\x1c\x70\xa2\xa5\xae\x3d\x8d\xc2\xc7\xff\xc5\xf5\x89\xdf\xae\xb4\xd5\x1c\x11\x55\x10\x8d\x0d\x55\xb9\x5c\x56\xbf\xf9\x9b\xbf\xe9\xea\x20\x2e\x4b\xc1\xe5\x9f\xe5\xc7\x79\x22\x41\x17\x0e\xff\x3c\xad\xec\xca\x3b\xab\xbc\xbc\x67\x97\x36\x97\x42\xe1\x52\x1a\x59\xfe\x79\x61\xdc\x3f\x0b\x10\x24\x9d\xd6\x65\x59\x29\x2e\x10\x95\x65\x02\xfd\xb4\x64\x01\xaa\xcb\xb9\xda\xd9\x05\xfc\x29\x00\x5e\x59\x59\x01\x90\x68\x7d\x2b\xfb\xc1\xf2\x58\xe7\x66\xbd\x1c\x2c\xda\xe5\x54\x3b\xf8\x8e\xf4\x1a\xa5\x15\x9f\x58\x49\x31\xd6\xb2\xe6\xe7\x6c\x22\xb2\xc6\x37\x47\x82\x3b\x6b\xa3\xdd\x45\x44\xd7\x39\xda\x7e\x86\x98\x16\x57\x5b\xe4\x29\xa7\xbc\x7a\xcb\x7c\x00\x40\xe7\x35\x1a\x7f\xce\xb5\x2e\xd0\xdf\x98\x1a\x00\xee\xdf\xbf\x6f\xaf\xcf\x4b\xe6\x3a\x8c\x31\x9b\x1d\xa5\xd7\x5e\x39\xb0\xfd\x0f\x8d\x52\xb8\xd6\x4b\x92\x98\x0b\xbd\xd7\x14\x90\xb0\x25\xab\xc4\xa2\x60\x23\xbe\x38\x5e\x32\xbc\xe1\x13\xac\x06\x20\x03\xff\xf0\xfd\x91\xcf\x3e\x75\x73\xfc\x37\x4a\x5d\xb5\xc7\xae\x7f\x1b\x63\xf2\xc0\xc3\x55\x37\x57\x58\x9e\x06\x74\x69\x78\x97\x93\x9a\x34\xab\x6d\x06\x85\xb9\x2c\xc6\xac\x32\xb3\xac\xa6\x3c\xc1\xca\x7a\x1f\x46\xe0\x5c\x7e\x92\x5e\x09\xa6\x59\x16\x41\x56\xbe\x12\x18\x64\x79\x59\xe0\x2d\xdf\x5d\xe0\x96\x95\x56\xdf\xb8\x71\x03\x00\xec\xdc\x9e\x8e\xef\x54\x69\x6d\x97\x83\xf5\x5b\x13\xed\xd7\x34\x8c\xe6\x0b\x85\xc9\xd0\x25\xfe\x46\xa5\xe7\x8c\xcd\x27\x99\x3c\xed\x1d\xce\x1b\x09\x78\x48\xe8\xbc\x37\xdd\xba\xb4\x5b\xd0\xf5\x78\xbf\x94\x3d\xac\x5b\x03\xb0\xab\x2a\x96\xde\x41\x80\x20\xeb\x98\x09\x16\x3c\xae\x3c\xe5\x5c\xee\x1a\xe3\x05\xf1\x5f\x6e\x17\xd8\x77\xae\xff\x0d\x00\xd5\xed\x76\x71\xe4\xc8\x11\x63\xec\xf1\x45\x91\x53\x44\xe4\x6f\x17\xc3\x70\xa4\xeb\x8d\xed\xdd\x2e\x1e\x55\x20\x95\xec\x72\x61\x73\x19\x46\x64\xd8\xdb\x57\x67\xe7\x3c\xa8\xc7\x57\xea\x01\x76\x54\x58\x64\x69\xf0\x0b\x25\x15\xa8\x38\xb5\xeb\x9f\x04\x61\xf9\xde\x58\xe7\x56\x48\xc6\xde\x70\xa5\x7d\xdf\xc7\xa9\x53\xa7\x70\xe7\xce\x1d\xda\xdd\xdd\xd5\xac\x3e\x94\xc1\xc4\xbe\xfa\xb2\x70\x23\xd2\x4a\xdb\xc8\x95\x9f\xcd\xc3\x95\x46\xf2\x37\xab\x51\xb3\xca\x49\x19\x76\x22\x8e\xa4\xdf\x45\x7b\x56\xbb\xf3\x70\x23\xe2\x6a\x11\xc7\x20\x2d\x5b\x52\xd6\x5c\xf9\xf1\x32\xf3\xf2\x87\x78\x36\x8e\xfc\x79\x7a\x99\x8f\x7c\x97\x74\x0e\x8a\x8b\x30\x0c\xcd\xf1\xe3\xc7\xa9\x5c\x2e\xdb\xbb\x86\x7c\x44\xa7\x78\x95\x9a\x85\xd0\xec\xaf\x97\x4f\x54\xba\xde\x04\xac\x44\xb2\x25\xd8\x48\x96\x39\xdb\xf9\x01\x57\xac\x23\x18\x82\x21\x83\xfb\xa3\xdd\xf7\x7e\x7c\xa8\xfe\x7f\xb7\x8a\xfa\x36\x80\x0d\x22\x6a\x18\x63\x5a\x44\xa4\xef\xde\xbd\x2b\x3f\xad\x70\xd5\x5f\xf6\x65\xc9\x73\x57\xdb\xf1\x7c\x0c\x07\x0e\x99\xa9\x6d\x0c\xdb\x10\x7c\x86\x41\x36\x2a\x47\xab\x44\xe8\xd6\xd7\xd7\xcd\xe4\xe4\x24\x4d\x4e\x4e\x26\xa0\x1a\x1f\x33\x58\x00\xc1\xdb\x2a\x07\xad\x7d\xdb\xa5\xc3\xd5\xb6\x37\x0d\x43\x3d\x4b\xcd\x4e\x88\xb2\x6e\x90\x3a\xd4\x98\x5f\xb1\x10\xff\xa6\x3e\xb9\x4f\xfc\xd8\x57\xb5\xf1\x64\xa9\xd2\xaa\x32\xdd\x2c\x9c\xe8\xf8\xe6\xf6\x5a\xb5\xbb\xac\x09\xdd\xb8\x44\x5d\x28\x14\x70\xe8\xd0\x21\xb3\xb8\xb8\xc8\xc1\x83\xf3\x46\x76\x7a\xd9\xc1\x39\xa3\x65\xa7\x07\x8b\xe3\x12\x42\x72\xa4\xcf\x7a\xe7\xcf\xc8\x88\xc3\xe9\x74\x85\xb9\x80\x44\xd2\xeb\xca\x47\x09\xff\x2c\x59\xc9\xeb\xdc\x36\xae\x2b\x7f\x57\x19\xbc\xce\x9c\x0e\xc9\x3b\xae\xfc\xf2\xe2\xe4\xd1\x20\x95\xc5\xa0\xdf\x84\xde\xd1\xd1\x51\xcc\xcd\xcd\x25\xdf\x6b\x21\x9a\x47\x2b\xee\x16\x34\x19\x32\x6a\xbe\x5e\x7a\xa8\x90\xdc\x37\x64\x01\x41\x60\x78\x2a\x0c\xa9\x61\x8a\x21\x60\xb7\xa0\xeb\x3f\x3e\x54\xff\xab\xdb\x93\xed\x57\x41\x58\xa5\xf8\x8e\x5a\xbb\xed\xfc\xeb\x5f\xff\x7a\x56\xdd\xf2\xda\xa5\x87\x58\xfd\x71\x64\xbb\x18\xa0\x77\xe6\xa8\x71\x24\x94\x08\x25\x2d\x11\x1b\x9f\xd5\xba\x6f\x96\x42\x5d\xbf\x7e\x5d\x3f\xf6\xd8\x63\xe4\x79\x9e\xbd\xf9\x8d\xe2\x71\x60\xa1\xe3\x1b\x13\x28\xa3\x0e\x6c\x96\x8e\xfb\x46\x95\xc8\x66\x91\x8c\xe7\x4c\x8f\xb1\xb1\x99\x66\xad\x8e\xd4\xf8\x90\x53\x10\xb3\x80\xaf\xbc\x20\x06\x8d\x68\xe5\xc5\xc0\xd7\x34\x31\xd3\x28\x3c\xd4\x2a\x98\x1b\xf7\x47\xbb\xab\x86\x92\x4f\xf0\x4d\xa1\x50\xc0\xc1\x83\x07\xcd\xd2\xd2\x12\x35\x9b\x4d\x17\x78\xb8\x9e\xe1\x68\x04\x89\xe0\xca\xf6\xcf\x8e\x00\x00\x20\x00\x49\x44\x41\x54\x52\x93\x73\x1e\xca\x06\x93\xf9\x48\x6d\x3a\x6c\xbe\xb2\x5d\xa4\x20\x48\x6d\x8e\x01\xef\xb2\x5e\x36\x5c\xf2\x44\xd6\x0d\xe8\x17\x58\x57\x3d\x6c\x3c\x9e\x87\xac\x23\xa1\x9f\x1e\x09\x9c\xd2\x3a\x92\x8a\x4f\x00\xe2\x3b\x1d\xc4\xe6\x9b\xc5\x07\xc2\x60\x1e\x26\xf4\x37\x1a\x0d\x3a\x75\xea\x14\xdf\xcb\x11\x81\x07\xc1\xdf\x18\x09\x76\x94\x41\x61\xb6\x51\x3c\xa4\x0c\xf9\x29\x59\xb7\x2e\x01\x09\xeb\xdf\xfb\x72\xd6\x10\xd0\xf2\x75\xe3\xd5\xfd\x8d\xff\x78\x65\xdf\xce\x3f\x6a\x85\x65\x63\xcc\x7d\x8a\x6e\xa9\xdf\x45\xb4\x08\x61\xae\x5f\xbf\x4e\xad\x56\x4b\xf2\xd7\xd5\x1e\xbc\xff\x4a\x0b\x4d\xf2\xde\x02\x6f\x12\xd7\x13\x19\xba\xac\x08\x17\x22\xcb\x86\xe4\x8d\x07\x99\xcf\xf8\xf8\x38\x66\x66\x66\x0c\x80\xe4\x1e\x16\x22\x52\x20\xf8\xf5\x72\xd0\x1e\x6f\x15\xf6\xec\xd9\x29\x2c\x90\xb1\x9f\x00\x72\x53\xc2\xe6\x4c\x09\x33\x53\x0a\x92\x35\x2d\x3f\x3d\xa9\x77\x2e\xa9\x0d\xef\x01\x0e\x81\x50\x08\x69\xcf\x6c\xa3\xf8\xd0\x4e\x51\xbf\xbb\x3e\x1a\xac\x21\xbe\xd0\x89\x88\x4c\xb1\x58\xc4\xc2\xc2\x82\x89\x8f\xa3\x97\xf5\x93\x9a\x09\x48\x0b\xab\xd4\x7e\xae\xb8\x9c\x7a\xa9\x61\x2d\xff\x78\xdc\x14\xda\x8b\x32\x64\xc7\x96\x82\x2f\xcb\x83\xc8\xc7\x05\x32\x72\xd8\x25\x4d\x78\x57\x9b\xf3\xbc\xf2\x2c\x14\x20\x2d\x27\xf2\xdd\x65\x0d\x65\x59\x60\xbc\x9e\x2e\xb9\x95\x34\xf1\x3c\xa4\x1c\xbb\x94\x20\xef\x3c\x9c\x5e\xc9\x27\x03\x00\xed\x76\x9b\x4e\x9f\x3e\x0d\xdf\xf7\x89\x5d\x28\xa6\x8c\x31\xa4\x3d\xd0\xca\x58\x67\xc3\x00\x34\xd5\x2c\xcc\x15\x34\x95\x00\x4a\xe3\x86\x55\x8c\x76\x43\x18\x11\x28\x1e\x9e\xec\x14\xc3\xcd\x8b\x0b\xdb\xdf\x7d\x75\x7f\xe3\xef\x03\xdf\xdc\x01\xb0\x42\x44\x9b\x00\x76\xe2\x8b\xa6\xc3\xe5\xe5\x65\x5c\xbd\x7a\x15\x5a\x6b\x57\x7d\xa4\x45\x96\xd5\x5e\x2e\x19\xe6\x6d\xd2\x07\x1c\xb2\xb1\xb9\x59\xcb\x33\x95\x1a\x26\x0b\xc1\x12\x7e\x6c\x6c\x6c\xd0\xc9\x93\x27\xa1\x94\x4a\x0a\x8e\x19\xeb\x6b\x32\x54\x1f\x09\x5b\xf3\xf5\xd2\xd1\x4a\x57\x8d\xa7\x86\x21\x1c\x7c\xc9\xd6\x48\x80\x46\xca\x89\x0f\x85\x88\x01\x48\x04\x57\x09\x79\x04\x42\x31\xa4\xd9\xbd\xdb\xc5\xe3\xdb\xe5\xf0\xda\x46\x25\xd8\x00\x21\x88\x27\xb7\x4c\xa1\x50\xc0\xc9\x93\x27\xf1\xfa\xeb\xaf\xf3\xfa\x4b\x3e\xb8\x84\xd6\xa5\x55\xa5\x55\xc1\xf3\x92\x9d\x52\xe6\xcb\x6b\xeb\x2a\x13\x2c\x2f\x09\x22\x3c\x9d\x7d\xce\xd3\xfa\x2e\xed\x2b\xcb\x21\x47\x5e\x52\xd8\x20\xca\xc9\x02\x27\x57\x27\xe6\xf1\xe4\xd0\x2c\x8b\x0f\xae\x8e\xc2\xd3\x4b\xfe\x73\xfa\xf8\xb3\xd4\xb2\x1c\x74\x9d\xc3\x71\x16\x97\x00\xe8\x57\x5f\x7d\xd5\x1e\x6a\x65\x62\x19\x37\x40\xb4\xab\x33\x54\xd0\x4b\xb5\xf6\xca\x7a\xa5\x7b\x7f\xbc\xe5\x4f\x94\x42\x35\xaa\x4c\x74\x29\x9a\xfd\xbc\x3e\xe2\x8e\x49\x6a\xd1\xf5\x4d\xeb\xce\x44\xfb\xda\xf7\x8f\x6e\xfd\x3f\x6f\xcf\x36\x7f\x14\x78\xb8\x6b\x8c\x59\x21\xa2\x0d\x63\xcc\x76\xbc\x47\x2a\x20\x22\xf3\xf2\xcb\x2f\x63\x7d\x7d\x9d\xd7\x47\x2a\x8f\xac\x36\xb2\xce\x25\xc3\xb2\xae\x00\xd2\x97\x4e\x4b\x10\x90\x82\xc1\x05\xde\xc6\xe1\xfe\x12\xc1\x92\xb8\xed\x76\x9b\xb6\xb6\xb6\x70\xf4\xe8\x51\x13\xdf\x13\x61\xac\xe5\x61\x00\x6f\xb7\xa8\x75\xe0\x19\x7d\x60\xab\xfc\xb0\x17\x52\x21\x31\x10\x90\x36\x32\x12\xa9\x33\x40\xb4\xdf\x0e\xc9\x04\x53\xea\x8c\x83\xe4\xe8\xa4\x1e\x94\xa4\x2c\x10\xf6\x5b\x0a\x69\x6e\x5f\xbd\xf4\x70\xa3\x1c\xbe\xb9\x5e\x09\x36\x28\xba\x65\x5c\x03\x30\xa5\x52\xc9\x82\x87\xd4\xf8\x5c\x58\x38\xbf\x78\xe6\x2e\xad\xee\x1a\x1b\xcb\x06\x03\xf3\x77\x59\x11\xce\xf1\xb5\x78\xe6\x66\xb8\x4d\xe7\xa2\xd3\x65\xa1\x64\x95\xe9\xea\x98\x2e\x90\xca\xea\xec\xae\x30\x39\x2c\x71\xe5\x81\x0c\xbe\xb8\xc0\x5a\x6a\x47\x09\x9e\x12\xa4\x81\xfe\x4e\x92\x67\x31\x49\x6b\x8c\x03\x57\xd2\x26\x93\x93\x93\x34\x35\x35\x45\x31\x68\x18\x00\x26\x91\x2b\x45\xe1\xe6\x48\x77\xe3\xdd\x99\xd6\x3b\xf7\x47\x83\x55\x65\x60\x14\xc8\x23\x00\x9a\x10\x86\xca\xe8\xb6\x67\xda\x8d\x52\xb8\x71\x6b\xaa\xf5\xd6\x8f\x0f\x6d\xff\xfd\xa5\x85\xed\xbf\x5f\xaf\x04\xef\x68\x32\x4b\x00\xee\x11\xd1\x3a\x80\x2d\x44\x43\x94\x2e\x11\x85\x8b\x8b\x8b\xb8\x7c\xf9\xb2\xbd\x7a\x52\x2a\x08\xce\x3b\x97\x72\x91\x6d\x20\xc3\x79\x1e\x31\xa9\xf9\x08\xcc\x13\xd9\x84\xae\xb0\x2c\x74\x4e\xe2\x14\x0a\x05\xf5\xc9\x4f\x7e\x12\x33\x33\x33\x88\x67\x9c\xcb\x00\x6a\x00\xf6\x18\x63\xe6\x8b\xa1\x3a\xfc\xe1\xf7\xc6\x7f\xe3\xb1\xc5\xea\x73\x8a\xd7\x27\x39\x6f\xd4\x9a\x1e\x91\x5f\x82\x24\xbc\x7b\xd8\x3a\xf3\xbb\x6a\x5d\x4e\x9c\x9a\x62\x60\xb0\x5b\xd0\x6f\xfe\xd3\xd1\xcd\xff\xe1\xea\xde\xe6\x25\x10\xea\x00\x9a\xf1\x92\x9a\xde\xdd\xdd\xd5\x5f\xf9\xca\x57\x5c\x7c\xc8\x7a\xce\x0a\x77\xc5\xe7\x2e\x2b\x9e\x74\xae\xb0\x61\xe3\x67\xb5\x61\x96\x73\x75\xb0\x61\xca\x94\x71\xb2\x68\xe6\x34\xe4\xc5\x75\xe5\x07\x0c\x90\xbb\x21\x68\x95\x69\x86\x69\xbb\xbc\x36\x57\x00\xf4\x6f\xfd\xd6\x6f\xa9\x62\xb1\xa8\xe2\xf7\xa2\x31\xa6\x0a\xa0\x4a\x44\x53\xc6\x98\x29\x22\x9a\x02\x50\x83\x41\xad\x1c\xa8\xf1\x5a\xcb\xab\xf9\xa1\x2a\x13\x0c\xda\xbe\x69\x6d\x97\x82\xcd\xb6\x6f\xb6\x0c\x4c\x9d\x88\xea\xc6\x98\xf5\x18\x30\x36\x11\x6d\xa6\x6c\xc4\x1f\x91\xea\x2f\x7c\xe1\x0b\x41\xa1\x50\x50\xdd\x6e\x37\x8f\x26\x17\x4f\xf2\xea\x04\xe4\xf0\x81\x9f\x00\x06\xa4\x51\x5c\x16\xc4\x13\x4b\xb3\xdb\xa5\xa9\x52\x08\xae\xb5\xd6\x6f\xbe\xf9\xa6\xb9\x70\xe1\x82\x1d\xa6\x24\xdd\x9e\x88\x94\x26\x78\x1b\x95\x6e\x63\xbe\x5e\x3a\x58\xed\xf8\x53\x3d\x33\x23\xb6\x24\x88\x0f\x52\x18\x30\xf6\x7d\x7e\x4c\x69\x1d\xcf\xa3\xf7\x0a\x4c\xa7\x30\x04\x5f\xd3\x9e\xfd\x5b\xa5\x0b\x6d\x5f\xbf\xbd\x36\xda\xbd\x6f\x28\x9a\xef\x00\xa2\xd5\x96\x27\x9e\x78\x02\xb5\x5a\x8d\x6e\xdc\xb8\x91\xa7\xfd\xa5\xa6\xb5\xf1\x04\x81\x7d\x3c\x76\x59\x01\x3c\x5f\xeb\xf8\x50\x86\xfb\x65\x59\x39\x1c\x5a\x49\xa4\x95\x74\xe6\x59\x54\x52\x08\x79\x1e\x59\x96\x95\x1c\x46\xb8\xac\x36\x4e\x0f\xb7\x26\x00\x77\xbd\x65\x47\x90\x34\x70\x4b\x4b\x5a\x4a\x2e\xeb\x8c\x6b\x5f\x17\x4f\x24\xcd\x3c\x0e\x4f\x2f\xe9\x32\x8b\x8b\x8b\x74\xf8\xf0\x61\xe3\xfb\x3e\x00\x68\x22\x0a\x89\x28\x40\x64\x21\xb4\x10\x59\x0b\xbb\x20\x6c\x07\x9e\xd9\xda\x29\xe9\xd5\xed\x72\xb8\xbc\x5d\x0e\x17\x9b\x45\xbd\x18\x7a\x58\x31\x30\x2b\x44\xb4\x02\x60\x95\x88\xd6\x8c\x31\x9b\x44\x54\x47\xb4\x99\xb2\x13\xef\x17\xd1\x6b\x6b\x6b\xae\x83\x8a\x39\x6f\x5c\xd6\xa3\x94\xa5\xac\x76\x71\xa5\x4b\x9d\x00\x26\x81\x80\xa3\x8d\xcc\xc8\xfa\x73\x20\xe1\xe6\x9c\x14\xac\x24\xed\xc5\x8b\x17\xcd\x85\x0b\x17\x78\x3e\xc6\x5e\xe6\xd4\xf1\x8d\x6e\x16\x75\x67\x61\xb3\xf4\x70\x74\xa5\x02\x93\x7a\x2e\x0e\x49\xb7\xc8\x32\x29\x58\xe9\xc2\xb0\xe6\x7b\x3d\xc8\x3e\x00\xf6\x3c\xc7\xc9\xf9\x7a\xe9\x09\x22\x2c\xaf\x56\xbb\xcb\x5a\x45\x27\x49\x1b\x63\xa0\x94\x32\x53\x53\x53\xe6\xd2\xa5\x4b\x83\xc6\xdd\x92\x4f\xd2\xb9\x86\x86\x3c\x6d\x96\x99\xe9\x02\x13\x6e\x62\x67\xb5\x85\x2c\x8b\xb7\xb1\x14\x0e\xf9\x2b\x05\x8b\xff\x4a\xd3\x37\x4f\x01\x65\xe5\xc1\x9d\xac\xbf\x0c\xcb\xa2\xcd\x95\x67\x56\x39\x83\x3a\x4a\x16\x5d\x9c\x87\x59\xe5\xf1\xb6\xa0\x9d\x9d\x1d\xfd\xea\xab\xaf\x9a\x47\x1f\x7d\x14\x85\x42\x01\x71\x58\x18\xff\xb5\xe3\xbf\x5d\x00\x3b\x88\x2c\x88\xad\xf8\xef\x3e\x80\x75\x00\x6b\x44\xb4\x16\x3f\x6f\x02\xd8\x22\xa2\x06\x80\x16\xe2\xeb\x3f\xc2\x30\xd4\x7f\xf7\x77\x7f\x87\x9b\x37\x6f\x4a\x59\x92\x7c\x90\xf2\x91\x65\x7d\xb9\xc0\x5a\x86\x19\x20\x3a\xe2\x2c\x2b\x53\x97\x35\xe1\xd2\x0e\x7d\xdd\x19\xe9\x2e\x9b\xd2\x44\xa5\x52\x89\x16\x16\x16\x30\x32\x32\xa2\xe3\xe5\x59\x13\xff\x2a\x10\xa9\x7a\x29\xe8\x28\x90\xb7\x6f\xab\x74\x3c\x3a\xa3\xd4\xf4\x96\x56\x09\xfd\x77\xcb\x26\x64\x47\x7e\xbd\x23\xe7\xe5\xaa\x4a\x3a\x6d\xb4\xea\x15\xc7\x65\xf3\x1f\xbe\x56\x93\x7b\xb7\x8b\xe7\x4a\x81\xda\x5d\xa9\x76\x6e\x07\x5e\x34\x5c\xb1\xc7\x0d\x9e\x3f\x7f\x1e\x97\x2e\x5d\xd2\xd3\xd3\xd3\xb4\xbb\xbb\x9b\x57\x77\x97\x06\x96\xd6\x44\x1e\xcf\x78\x7b\x88\x8a\x3a\xe3\x66\x59\x2b\x59\xd6\x07\xcf\x3f\xab\x8d\xa5\xd6\x06\xd2\x20\x26\xb5\x38\xc4\x3b\x2f\xcf\xa5\xed\x64\xde\x70\x84\x4b\xba\x80\x7e\xf0\x74\x75\xf8\x14\x5d\xe7\xcf\x9f\x57\x4b\x4b\x4b\x49\xbc\x6a\xb5\xaa\x3a\x9d\x8e\xcb\xe2\x72\xb9\xac\x7a\xf2\xf8\xce\x3a\xbf\xf6\xda\x6b\xe6\x91\x47\x1e\x41\xa1\x50\xd0\xe8\x81\x47\x00\xa0\x6b\x8c\xd9\x25\xa2\x5d\x44\x16\xc4\x36\x80\x7a\xfc\x67\x41\x64\x3b\xfe\xb3\x80\xd1\x41\x04\x1a\x61\x10\x04\xe6\x7b\xdf\xfb\x1e\xae\x5f\xbf\xce\xcb\xce\xe2\xaf\x6c\x1b\xa9\x90\xb2\xda\x4e\x86\x27\xce\x02\x07\x0f\x74\x99\x98\x52\x43\x49\xad\x66\xd3\x59\xa7\x33\xd2\x9a\x30\x0c\x4d\xbb\xdd\xa6\x23\x47\x8e\xc0\x4e\x92\xda\x09\x53\x00\xca\x10\x68\x6d\xb4\xb3\x3d\xb5\x5b\x98\x99\x6c\xfa\xf3\xc9\x26\x2e\xc4\x13\xa0\x76\x9d\x1b\x71\x87\xe7\x5b\x46\xa3\x63\xd0\x41\x60\x3b\xef\xac\xa9\x62\x90\xf8\x45\x73\xa7\x26\x26\x9a\x04\xd0\x18\x78\x86\xc6\x66\x76\x8a\x67\xc7\xda\x9e\xb7\x56\xed\xde\x6c\xfb\xba\x1d\xd3\x0a\x22\xd2\xe7\xcf\x9f\xc7\x91\x23\x47\x70\xef\xde\x3d\xec\xec\xec\x58\x3e\xf0\x5f\xce\x07\x39\x24\x91\xa6\x36\xf7\xe7\x7c\xe5\x1d\x9c\x0f\xfb\x24\xef\x65\x9c\x94\xc9\x2c\xe8\xc9\xca\x1f\x22\x8e\xcb\xdc\x05\xf3\xe7\x42\xa5\x45\x1c\x29\x98\xd2\xf2\xe1\x79\x4a\x81\x74\x99\xff\x52\xf6\xb2\xac\x18\x69\x39\x6b\x00\xe6\x73\x9f\xfb\x9c\x7a\xe6\x99\x67\x68\x7e\x7e\x1e\xe7\xce\x9d\xf3\x2e\x5c\xb8\x80\x73\xe7\xce\xd1\x91\x23\x47\x50\x2a\x95\x88\x81\x49\x16\x2d\xd2\x0a\x97\x16\x9b\xcb\x1a\x4c\xd1\xbc\xba\xba\x4a\xb5\x5a\x0d\x63\x63\x63\x36\x4c\x23\x5a\x09\xe9\x22\x02\x82\x56\xfc\xd7\x8c\xff\x76\xe3\xbf\x26\x90\x5c\x30\x66\x0f\xde\xd6\xb7\x6f\xdf\xc6\x9f\xfd\xd9\x9f\xe9\x8d\x8d\x8d\xbe\xfe\x95\xc1\x67\x09\xf6\xd6\x49\xde\xe6\xb5\x5d\x0a\x30\xe5\x4d\x6e\x40\xba\x70\xd7\xf8\x8e\xbf\xbb\x04\xc8\xc6\x73\x81\x91\x02\x40\x1b\x1b\x1b\xe8\x76\xbb\x98\x9f\x9f\x4f\x3a\xa3\x4d\x6b\x60\xbc\x50\x01\xf7\x47\xbb\xf5\xfd\x5b\xa5\xc3\x95\xae\x1a\xb7\xe0\xd0\xdb\xde\xd1\x2b\x86\xc0\x4a\x4d\xec\x06\x6e\x69\xa4\xad\x0e\x18\x4e\x24\x45\x98\x62\x7a\xcf\x14\xef\xf3\xf0\x0c\x8d\x4c\x35\x0b\x67\xf6\xec\x14\x26\xb7\xca\xc1\xed\x46\x29\xdc\x01\xf5\x18\x6f\x37\x8a\x8d\x8d\x8d\x61\x69\x69\x89\x74\x34\x9d\xcd\x01\x21\x45\x59\x9a\x82\x3e\x7f\x6e\x81\x70\xbf\x2c\x0b\x81\x3f\x4b\x10\xc8\x02\x06\x2e\x4c\x2e\xb0\x91\xf4\x49\x61\x94\xd6\x8b\xab\x5c\xd9\xa1\xb2\x3a\x1a\x44\xbe\x32\x7f\xa9\x25\x65\xfe\x52\x36\x13\x7a\x94\x52\xb4\x6f\xdf\x3e\x7c\xf4\xa3\x1f\xa5\x8f\x7e\xf4\xa3\x14\x4f\x50\xda\xeb\x0a\x3c\x20\x9a\x53\x2b\x16\x8b\x98\x9f\x9f\x37\x0f\x3d\xf4\x10\x5d\xb9\x72\x25\xcf\x2a\xcc\xfb\xb5\x74\xc1\x41\x57\x52\xdf\x46\xa3\x81\x6b\xd7\xae\xe9\xd5\xd5\x55\x1a\x1b\x1b\x33\xd5\x6a\xd5\xb6\xad\x1d\xba\x58\x60\xe8\x22\xb2\x44\xba\x14\x1d\xbd\x69\xad\x13\x0d\x20\xbc\x7f\xff\xbe\xf9\xc9\x4f\x7e\x82\x1f\xff\xf8\xc7\xae\x09\xe1\x2c\x9e\x4b\x70\x77\xf1\x5c\xf6\x71\x97\x4c\xa6\x40\xc9\x63\x91\x5d\x99\x49\x2d\x07\xf6\x2e\x51\x4a\x6a\x51\xa9\xa5\x38\x93\xf5\xca\xca\x8a\x39\x7c\xf8\x30\x55\x2a\x15\x9d\x68\xfc\x64\xff\x17\xa9\xdd\xa2\x0e\x9b\x45\xdd\x3e\xb0\x59\x3e\x56\xd0\x54\x4e\xed\xdf\x88\xa9\x91\xbb\x75\x79\x58\xea\x5d\xc6\x21\x20\xfa\xb8\x28\x2a\xb3\xb7\xb5\x3d\x9d\x58\x19\x2a\xd4\xda\xde\x23\xf3\xf5\xd2\xb1\xae\x6f\x96\xd6\x47\x82\x75\x4d\xd1\x3e\x0f\xc4\x93\xa6\x33\x33\x33\x66\xdf\xbe\x7d\xb8\x76\xed\x9a\xd4\xfe\x52\xbb\xf3\xc6\xcb\xb3\x4a\xb2\x3a\xa8\xab\x16\xae\x1a\xdb\x30\x49\x03\x80\x3e\x60\x73\xb5\xb1\x8b\x7b\x5c\xb0\xa4\x05\x21\x35\x99\xec\xf8\x2e\x2d\x28\x41\x4c\x8b\xfc\x24\x68\xc8\x32\xe5\x6f\x92\xcf\x53\x4f\x3d\x45\xcf\x3e\xfb\x2c\xaa\xd5\x2a\xe2\x73\x57\x7c\x22\x2a\x2a\x50\x61\xbe\x5e\x9c\xac\xb6\xbd\x91\xed\x52\x10\xc4\xb2\x46\xa5\x52\x49\x1f\x3f\x7e\x9c\xde\x78\xe3\x0d\x59\x97\x41\xa0\x21\xad\x8b\xbc\xb8\x06\x80\xda\xda\xda\xd2\xd7\xae\x5d\xa3\x8b\x17\x2f\xea\xf8\x46\x00\x53\x28\x14\x74\xac\x38\xad\x25\xa2\x11\x4f\xa6\x1a\x63\xf4\xe6\xe6\xa6\xd9\xdd\xdd\x35\x5f\xf9\xca\x57\xf4\xd5\xab\x57\xcd\xfd\xfb\xf7\x5d\x4a\x59\x4e\x35\xd8\xe7\x3c\x6b\xc4\x15\xd7\x38\xe2\x4a\x00\x4a\x0a\x95\x13\x25\xbc\xb1\xa4\xa0\xb9\x00\x42\xbe\x67\xe5\x23\x27\x63\x14\x00\xfd\xb9\xcf\x7d\x4e\x55\xab\xd5\xe4\x02\x27\x22\xaa\x22\x5e\xa2\x55\xa0\x83\x17\x6e\x8d\xfd\xf2\x93\xb7\x6b\xbf\x52\x08\x55\xd9\xd5\xeb\xb8\x4b\xc2\x24\x58\x48\xd8\x4b\xbc\x0c\x5c\x13\xac\xbd\xd5\x5a\x1b\xcb\xa0\xe5\xeb\x77\xae\xec\xdb\xf9\xdf\x2f\x1d\xd8\xfe\xce\x6e\x41\xaf\x1b\x98\x26\x22\x73\xb3\x63\x8c\xd1\xed\x76\x1b\x5f\xfe\xf2\x97\x5d\x13\x4e\xd2\xe5\x09\xa2\xe5\x57\x56\x5c\xee\x0f\xb8\xf3\x71\xa5\x95\x71\x5d\xf4\x64\xd1\xca\x69\xca\xa3\xd9\x45\x47\x56\xd9\x83\xf2\x01\x7b\x77\xd5\xc7\x59\x87\x5f\xf9\x95\x5f\x51\x07\x0f\x1e\xb4\xef\x7e\xfc\x57\xf4\x42\x94\x1f\x5e\x1d\x3d\xfe\x81\x9b\x63\xbf\xb3\x5b\xd0\xcb\xdf\x7e\xe4\xfe\xff\xb1\x59\x0e\x36\x63\xad\x1e\x18\x63\x82\x7a\xbd\x8e\x6f\x7d\xeb\x5b\xa8\xd7\xeb\x3c\x5f\x17\xe0\x66\x81\xf0\xa0\xfa\x38\x79\x74\xfc\xf8\x71\xf5\xce\x3b\xef\x68\x00\x78\xfe\xf9\xe7\xd5\xdf\xfc\xcd\xdf\x68\xee\x17\x83\x5f\x9e\x0c\x0c\x55\xce\x03\xd2\x26\xc3\xfb\xea\x2d\x77\x8e\x4a\xcd\x28\xad\x0d\xa9\xc9\xa4\x56\xe5\x7f\xbc\x30\x59\x46\xd2\x8d\x8b\xc5\x22\xcd\xcd\xcd\x19\xa5\x94\x89\x2d\x0f\x13\x7f\x45\x0b\x10\x68\xb5\xda\xdd\xaa\x74\xbc\xea\x9e\x9d\xc2\x01\x05\x52\x64\x04\x0a\xf0\x13\x90\xc0\x28\x62\x73\x1b\x36\xba\x01\x12\xeb\x22\x56\x38\xfd\x36\x00\xcf\x32\xde\x48\x46\x20\xf8\x5a\x4d\xed\x6d\x14\x9f\x9e\xdd\x29\x8c\xae\x57\xba\x37\x9b\x45\xdd\x06\x60\x69\x35\x9e\xe7\xe1\xc2\x85\x0b\x98\x9b\x9b\xa3\xb7\xdf\x7e\x9b\xd7\x55\x9a\x87\x96\x14\x97\x56\x23\x91\x46\xc6\xe5\x5a\x9c\x53\x2e\x4d\x4b\xa9\xd5\x21\xe2\x72\xfa\x80\xfe\xb6\x91\x56\x88\xcb\x6a\x90\xd6\x8c\xd4\x6c\x2e\x4d\x8c\x21\xf3\xd1\x70\xd7\xd9\x35\xcc\xc1\xb9\x73\xe7\xe8\xb9\xe7\x9e\xa3\xf8\x73\x72\xb2\x56\x06\x80\x91\x62\x97\x26\x9e\xbc\x3d\xfe\xb1\x0f\xdc\x1a\xfb\x1f\xab\x1d\xef\xe3\x95\xae\xf7\xa8\xaf\xd5\xca\xed\xa9\xd6\x0d\x13\x4d\x74\x85\x44\x84\x72\xb9\xac\x2b\x95\x0a\xae\x5f\xbf\xae\x05\x3d\x5c\xf3\xf2\x72\x39\xdd\xae\xb6\x94\x5a\x1b\x8e\x78\x66\x7d\x7d\x3d\xc9\x33\x96\x1b\x70\x3f\x57\x1a\x91\xaf\xab\xad\x5c\x6d\x21\xad\xc4\xbc\xf6\x93\xe1\x7d\x6d\xca\x27\x47\x81\x7e\xe4\xc9\x02\x07\x17\x91\xbc\x10\x29\xa4\x94\x11\x6e\x96\x96\x96\xcc\xa5\x4b\x97\x92\xbb\x67\xa9\x77\xae\x00\x19\x63\x28\x54\x06\x2b\x63\x9d\xf5\xc9\xdd\xc2\xec\xc4\xae\x3f\xd7\xff\x65\x2c\xb3\x18\xd8\xc6\xb0\xe8\x29\x0d\x0c\x3d\x6b\x24\x46\x87\x04\x50\xd8\xb6\xf4\x38\x8c\x5f\x04\x6c\x0f\x03\x52\xa0\xf2\xf8\xae\x7f\xee\xf0\xfa\xc8\xa9\xae\x6f\xee\xdc\x1f\xed\x6e\x18\xc0\x1e\x20\x69\x00\x98\x5a\xad\x46\x67\xcf\x9e\x45\xa1\x50\xc0\xdd\xbb\x77\x65\xa7\xe1\xfc\x92\x8d\xe5\x12\x38\x1e\x57\x02\x10\xcf\x53\xa6\xb7\x69\x5c\x82\x2b\xdb\xc2\xd5\x36\x52\x91\xc8\xf2\x65\xdb\x03\xe9\xf6\x76\x75\x24\xa0\xbf\x03\x48\x3e\x48\xd9\xe3\x71\x25\xff\x08\x80\x79\xf1\xc5\x17\xd5\xc1\x83\x07\x51\x28\x14\x14\x45\x17\x81\x15\x00\x8c\x10\xa8\x32\xd5\xf4\x0f\x7c\xfc\xda\xd4\xbf\x3e\xb9\x32\xfa\x6f\x8a\x21\x1d\x8e\x3f\x90\x1a\x19\x6f\xf9\x27\x1a\xa5\xf0\x67\x6b\xa3\xdd\x35\x03\x13\x5a\x99\x9b\x9c\x9c\x34\xdd\x6e\x97\xee\xdd\xbb\x97\x45\xaf\x8b\xfe\xbc\xba\xf0\x77\x99\x9f\x2b\x1f\x97\x6c\xb8\x86\x17\x59\x3c\x92\xed\x92\x55\x4e\x96\x65\x68\xc4\xaf\x4b\xfe\x34\x90\xde\x00\xe6\xd2\x54\x5a\x64\x94\x55\xb8\x0b\x6c\x24\x33\x79\xe1\x52\xb8\xcd\x89\x13\x27\xa8\x54\x2a\xa5\xca\x8e\x81\x04\x1d\x4f\xeb\xb5\xb1\xee\xc6\x6c\xa3\x38\x3f\xd6\xf6\xa6\x7a\xe0\x61\x7b\xac\x89\x3f\x06\xa2\x1e\xe7\x92\xb0\xb8\x70\x6e\x33\xc5\x87\xa7\xf0\xf3\x4c\x93\x65\xdc\x38\x72\xf4\xf1\x2d\xbb\x31\x2e\xce\x98\x40\x54\x0a\xd5\xc2\xc2\x46\xe9\xa3\x93\xbb\x05\x75\x7f\xb4\x7b\xa7\x55\xd0\x41\x14\x8d\x08\x80\x56\x4a\x61\x6e\x6e\xce\x9c\x3b\x77\x8e\xe2\x7d\x1f\xb6\x9e\xd2\x32\x70\x69\x61\x2e\x70\x2e\x2b\x42\x6a\x5d\x0e\xfc\x52\x00\xa5\x05\xe1\x02\x24\x49\x87\x4b\x1b\x81\xc5\x75\xc9\x0a\x67\xb5\x14\x3a\x29\x7c\x80\x9b\x26\x19\xae\x1d\x71\x01\x80\xe6\xe6\xe6\xa8\xd1\x68\xe8\x97\x5e\x7a\x49\xc5\x97\x6b\xd9\x89\xcf\x92\x31\xa6\xe2\x1b\x9a\x78\x6c\x79\xf4\x99\x8f\x5f\x9b\xfe\x9f\x66\x76\x0a\xbf\xa6\x40\x15\xbe\xe9\xcf\xd3\x98\x9c\xde\x29\x1c\x5c\x1a\x6f\x5f\xdc\x29\x86\x3b\xf1\xc6\x2c\x6d\x8c\x31\x0b\x0b\x0b\xe6\xe2\xc5\x8b\x92\x2e\xce\xe3\xbc\x76\xe3\x72\x2d\xfb\x80\xab\x9e\xb2\x3f\x64\x01\x36\x77\x52\x49\x70\x3f\x5e\x6e\x96\xc5\x9a\x05\xf4\x3c\x0e\x58\x1c\x4e\x7f\x52\x7f\xf9\x59\xbd\x24\x8c\x3b\x89\xfc\x32\xae\x4b\x28\x25\x53\x24\x23\x92\x72\xae\x5c\xb9\x62\x0f\x42\xb1\x71\x12\xcb\x83\x88\xd0\xf2\x75\xb8\x59\xe9\xd6\xf7\xd5\x4b\x07\x47\xba\xde\x18\xb3\x33\x92\x6f\x53\x12\x20\x60\x35\xa1\x78\x89\x56\xd6\x90\x84\x28\x24\x13\xb3\x20\x7e\xdb\xa4\xbb\x0b\x02\x50\x86\x46\xa7\x77\x0a\x1f\x38\xbc\x51\x3e\x0d\x60\x6d\x73\x24\x58\x0f\x94\xd1\x94\x8c\x81\x22\x77\xfe\xfc\x79\x1c\x38\x70\x80\x76\x77\x77\xb1\xb5\xb5\xe5\xb2\x12\x78\xee\xbc\xc3\x66\xbd\xbb\x00\x99\x5b\x83\x32\x2e\x07\x1c\x97\xb6\x93\x1d\xdb\xa5\xa9\x12\x56\xa3\x5f\x56\x80\x7e\xa1\xe4\x71\x65\x7b\x4b\x50\x72\x85\x4b\xde\x24\xb2\xf8\xab\xbf\xfa\xab\x74\xfe\xfc\x79\x3c\xf9\xe4\x93\xd6\x5a\xf6\x11\x59\x19\x65\x32\xa8\xee\x6d\x14\x0f\x7d\xe4\xdd\xc9\xdf\x3e\xb3\x58\xfd\xb7\xe5\x40\x3d\x44\x7d\xfb\x84\xa3\x36\x2e\x07\x6a\x6e\xa2\x55\x28\xdf\x98\x6a\x5d\x0e\x3c\xd3\x31\xc6\x84\xf1\xce\x80\xf0\xd8\xb1\x63\x74\xeb\xd6\x2d\x74\x3a\x1d\x17\x08\xc8\x3a\xba\xea\xc9\xeb\xe2\x8a\xcb\xe3\xb8\xac\x2a\x57\x27\x76\x59\x3d\x12\x7c\x79\x7c\x97\xe5\xc1\xf3\x91\x6d\xef\xa2\xd1\x95\xbf\x01\xb3\x38\x14\x4b\xec\xca\x30\xcb\xec\xe2\x42\x0f\xa4\x05\xca\xc5\x94\x2c\x66\x12\x00\xf3\xc6\x1b\x6f\x98\xf3\xe7\xcf\xdb\xf4\xe9\x3f\x82\x6a\x94\xc2\x56\xbd\x1c\xec\xec\xab\x97\x0e\x95\xba\xaa\xd2\xb7\xaa\x22\x25\x04\xe8\xa1\x08\xb1\xca\xb9\xe2\xa5\xd2\xe4\xe4\x9b\x58\x29\x00\x81\xbc\x72\xa0\x0e\xed\xdf\x2c\x7d\x68\xb6\x51\x9c\x6a\x16\xf5\x72\xa3\x14\xb6\xe2\xfd\x6a\x14\xef\xfd\x30\xd5\x6a\x95\x0e\x1f\x3e\x6c\x16\x16\x16\xe8\xad\xb7\xde\x92\x9d\x22\xaf\x73\xdb\x12\xfb\x78\xc5\xe2\xb8\xb4\x86\xcb\x04\x95\x16\x80\xcb\x52\x71\x29\x02\xee\xcf\xf3\xc2\x80\x3c\x6c\x38\xd7\xa2\x92\xab\xb2\x3e\xdc\x3f\x65\x5d\x3d\xf6\xd8\x63\xea\x93\x9f\xfc\x24\x4d\x4e\x4e\x42\x29\xa5\xe2\x53\xb6\x4a\x00\x8a\x30\xa8\x54\xdb\xde\xcc\x13\x77\xc7\x3e\xf6\xc1\x1b\x13\xff\xfd\x5c\xbd\xf8\x69\x4f\xab\x1a\xa5\x0e\xc4\x61\x6d\x1f\x3d\xa8\x6a\xdb\x3b\xa2\x0c\x56\xef\x4c\xb4\xdf\x85\xa2\xae\x31\x26\x04\x60\xca\xe5\xb2\xfe\xd1\x8f\x7e\xe4\x02\x4e\x5e\x3f\xc9\x87\x2c\x1e\xba\xda\xd8\x65\xc1\x70\x7f\x0e\x44\x9c\x77\x06\xfd\xed\xed\xe2\xa5\x4d\x07\xa4\xe5\x42\x96\x05\xa4\xe9\x76\xa8\x48\x67\x7b\x25\x16\x87\x86\x9b\x38\xb0\x44\xae\x49\x12\xa9\x11\x73\x27\x82\x1c\xf9\xf6\x69\x14\x00\xb4\x6f\xdf\x3e\xbb\x21\x0c\x88\x4d\x48\x22\x32\x20\xa0\x5e\x0e\x9a\x3b\xa5\xb0\x39\x5f\x2f\x1d\x2e\x86\xaa\x2c\x33\x4a\xa9\x62\x59\x23\xfb\x63\xd0\xbb\x8a\x16\x40\xdf\x55\xe1\x82\x40\x6b\xa1\x70\x49\x41\xf2\x4e\x50\x06\xd5\x89\x5d\xff\xcc\xc1\xcd\xf2\xb9\xb1\x96\x6f\x76\x4a\xe1\x7a\xb3\xa0\x3b\xa0\x5e\x03\x28\xa5\x4c\xb5\x5a\xa5\xb3\x67\xcf\x62\x61\x61\x01\x31\x80\xb8\x78\xc5\xdf\x65\xa3\xf2\x86\xcd\x8a\x2b\xf9\x0d\x96\x16\xe2\xd7\x05\xfc\x12\x34\x38\x27\xf9\x33\x9f\x23\x91\x69\x6d\x38\x89\xb4\xdc\xb9\x64\x8e\x3b\x02\xa0\x9f\x7f\xfe\x79\xba\x70\xe1\x02\x1d\x3b\x76\x0c\x4a\x29\x15\x0f\x49\x0a\x88\x3e\x92\x2c\x97\x03\x35\xf9\xd0\x5a\xe5\xec\x07\x6f\x8c\xff\x57\x27\x56\x2b\xff\xe5\x48\x57\x1d\xa7\x68\xe8\x92\x9c\xdb\x69\xac\x45\x4a\x40\xef\xca\x01\x82\x02\x8a\xd3\x3b\xc5\x93\x5b\x23\xc1\x6b\xf7\x2b\xc1\x7d\xb0\xb3\x3b\xcf\x9e\x3d\x8b\x20\x08\xb0\xb2\xb2\xe2\x02\x36\x4e\xb3\xce\x08\x77\xa8\x9b\x54\x3d\xb5\x23\xae\x9c\x47\xe4\x0a\x5d\x96\x0d\xa4\x01\x80\xc7\xe1\x7d\x92\x77\x09\xde\x3e\x9c\x36\x09\xee\x92\x3e\xfb\x9e\xc8\x8b\xeb\xb3\xfa\x2c\xb3\x46\x76\x7e\x97\x16\x92\xc8\xe7\x8a\x2b\xe3\x81\x85\xd3\xf2\xf2\x32\x88\x28\x39\x82\xcd\x9e\x8f\x81\x18\x40\xa0\xc8\x6c\x8c\x04\x8d\x76\x41\x77\xf7\x6d\x15\x0f\x17\xb4\x2a\xa6\xf6\x80\xc0\x9e\x35\xea\x68\x39\x46\x55\xaa\x15\xf9\x97\xb2\x0c\x43\x92\x4a\x71\xd0\x60\x99\xf6\x36\xa7\x12\x88\xc8\x2b\x86\xb4\x6f\xb6\x51\xfc\xe0\xc2\x66\xf9\x91\x52\x48\xcd\x7a\x39\xdc\xe8\x78\x46\x47\x32\x1a\x9d\x41\x62\x01\xe4\xdc\xb9\x73\x38\x79\xf2\x24\x95\xcb\x65\x6a\x34\x1a\xd4\x6e\xb7\x5d\xda\xdd\x85\xf6\xb6\x11\x5d\x9a\xcb\xf5\x2b\xe7\x2f\x5c\xfc\x77\x75\x62\x97\x42\x90\xca\xa1\xcf\x84\x45\x7f\x47\xca\xca\x83\x2b\xac\xbe\xf0\xe7\x9f\x7f\x9e\x9e\x7d\xf6\x59\x9a\x98\x98\x40\xa9\x54\x52\xf1\x06\xae\x02\xa2\x7b\x80\xcb\xbe\xa6\xda\x81\xad\xf2\x43\xcf\xdc\x18\xff\xfc\x99\xc5\xea\xef\x4f\xed\x16\x3e\xec\x19\x55\xe1\xe7\x5a\x50\x32\xc9\x6d\x1b\xd0\xce\x63\x51\x32\x6d\xe5\x19\x35\xb6\xa7\x59\x98\xbf\x3b\xde\xbe\xb4\x5b\xd4\x0d\x10\x02\x22\xd2\x4a\x29\x33\x3f\x3f\x6f\x2e\x5f\xbe\x2c\x69\xe5\x3c\xe5\x1d\x33\x4b\x89\xca\x3e\x25\xc1\x9c\xa7\x71\x29\x5f\x19\x4f\x5a\x0f\xb2\x2c\x17\x90\x4b\x9e\x4b\x85\xcd\xc1\x84\x97\x2f\xbb\x50\x92\xaf\x27\x3c\xed\xb3\xcb\x94\xc9\x1a\x1f\xbb\x50\xcc\x35\x6b\xeb\x42\x30\xc9\x44\x03\x80\x16\x17\x17\x75\xbc\xd2\x92\x2c\xd1\xc6\x61\x9a\x88\x48\xc3\x60\x7d\xb4\x5b\x0f\x15\xc2\xb9\x7a\xf1\x88\x67\xc8\x27\x8b\x0c\x26\xaa\x5b\xba\x93\xf3\xb3\x38\x80\x68\x22\x14\x3d\xbf\x84\xdd\x26\x2d\x64\x86\xe2\xd8\x5c\xf8\x10\x7f\xdb\x62\xcb\xb3\x48\x13\xc5\x57\x86\x8a\x23\x81\x3a\x3a\x5f\x2f\x7f\x78\x7e\xab\x74\x40\x19\xb4\x76\x8a\x61\xa3\xeb\x19\xde\x88\x00\x7a\x4b\xd1\x47\x8e\x1c\xc1\xc2\xc2\x02\xbd\xfd\xf6\xdb\xdc\x8a\xe0\x82\xe1\xe2\x97\xd4\x34\x3a\x23\x8d\xb4\x3e\xac\x3f\x17\x34\x69\x9d\x48\x41\x03\xfa\x81\x9f\x5b\x31\x59\x66\x30\x84\xbf\xec\x48\x89\x20\x57\xab\x55\x75\xea\xd4\x29\x3a\x77\xee\x1c\x3e\xf2\x91\x8f\x50\xad\x56\x83\xe7\x79\x0a\xd1\x96\x81\x02\xa2\xeb\x2c\xca\x9e\xc6\xd8\xde\x7a\xf1\xc8\x53\xb7\x6a\xff\xf2\xc2\xed\xb1\xdf\xdf\xbb\x5d\xfc\x64\x51\xd3\x1e\xca\x30\x19\x6d\xbb\xf5\xe6\xb7\x7b\x97\x1a\xd9\x76\x1b\xe9\xaa\x7d\x63\x6d\x9f\x6e\x4f\xb6\x7e\xd6\x51\xba\x45\x44\x21\x10\x9d\xa1\x71\xe8\xd0\x21\xba\x79\xf3\x26\x82\x20\x90\x7c\x91\x9a\x5a\x02\xae\xb4\x02\x81\x7e\xb0\x94\x9d\x9c\x44\x9e\x2e\x25\x9c\x35\xad\xe0\x02\x13\x9b\xb7\x6c\x07\xd7\x33\x4f\x03\x91\x56\xb6\x2b\xf1\xc9\x51\xee\xa4\x50\x65\x99\xd4\x52\xe8\xa4\x79\xca\x51\x4a\x36\xac\x14\xd6\xbe\xe1\xcc\xa3\x8f\x3e\x4a\xf1\xce\x3a\x43\xd1\x35\x0b\x88\x27\xb1\xb4\x86\xc1\x5a\xb5\xb3\xa9\x15\xf4\x6c\xa3\xb8\xe0\x1b\x2a\x24\xc7\xae\x01\x29\x9b\xc3\xae\x97\x5a\xbf\x48\x98\xa8\x9f\xfa\x24\x7e\xac\x99\x80\x64\x0b\x7a\x0f\x63\xac\x75\x13\x7d\x2b\x13\xe5\x07\x80\x9d\x71\x1a\x0d\x5f\xa8\x52\xed\x78\x8f\x2d\x6c\x96\x9f\x9d\xdf\x2a\x1d\x54\xa0\xd6\x4e\x29\x6c\x04\x1e\x34\x45\x27\xbd\x53\xbc\x6a\x44\xc5\x62\x11\xb5\x5a\xcd\x9c\x3f\x7f\x9e\xe6\xe6\xe6\x68\xcf\x9e\x3d\xb4\xbd\xbd\x8d\x76\xbb\xcd\x01\xd5\x25\x30\x5c\x7b\xc8\x61\x47\x5e\x1b\x01\xee\xb1\x33\x7f\x96\x6d\x63\xd3\xca\x8e\x01\x47\x5a\x1b\x57\xe6\x95\xca\x77\x74\x74\x94\xa6\xa7\xa7\xe9\x99\x67\x9e\xa1\xb3\x67\xcf\xe2\xe8\xd1\xa3\xa8\xd5\x6a\x96\x37\x05\xc4\x1b\xb8\x8c\x31\x65\x5f\xd3\xd8\xcc\x4e\xe1\xd0\x85\xdb\xb5\x4f\x3f\x7d\xb3\xf6\xdf\xce\x6f\x95\x7e\xa3\x18\x7a\x07\x14\xc8\x33\xf1\xf7\x4c\xc6\x02\x3e\x28\x3d\xfa\x14\xed\x6b\x95\x4a\xef\xf8\x27\x52\xb5\x96\x7f\xd4\x10\x96\x97\x6b\x9d\x1b\x5a\xa1\x83\xf8\x18\xc9\xd1\xd1\x51\x1d\x6f\xf1\x96\xc3\xb7\x3c\x0b\x8b\xd7\x35\x6b\xbe\x49\xf2\x48\xb6\xb3\xcb\x62\x71\x0d\x03\xa5\xbf\xa4\xcf\x15\x3f\x65\x3d\x08\x7a\x5d\x20\xd4\xd7\xc7\xf9\x50\x85\x6b\x0f\x39\x0c\xe1\x8e\x90\x2e\x58\x0a\xa4\x0b\x10\xa4\x79\x24\x89\x71\x09\xad\x79\xed\xb5\xd7\xcc\xc9\x93\x27\xa9\x58\x2c\x26\xf3\x1c\x76\x7b\x2e\x11\x69\x4d\x46\xdf\xab\x75\xd6\xbb\x9e\xe9\xee\x6d\x14\xf7\xfb\x9a\x4a\xc9\x69\xe9\x56\xc5\x10\x12\x61\xea\xdb\xbb\xc1\xde\x23\xcf\x48\xda\x7a\xdf\xad\x20\xb5\x15\x3e\xf2\xeb\x09\x65\x62\x14\x13\x53\x60\xec\x2f\xfe\xe6\xa5\x3a\xd6\xf6\x1e\x3b\xb8\x51\x7e\xf6\xc0\x56\xf9\x70\x21\xa4\xb0\x51\x0c\x77\xba\xca\x68\x50\xb4\x01\xcf\x1e\xe0\x0c\x00\xb5\x5a\x8d\xf6\xee\xdd\x6b\x4e\x9d\x3a\x85\xfd\xfb\xf7\xd3\xb5\x6b\xd7\xcc\xc8\xc8\x88\x22\x22\x7b\xba\x93\x9c\x7b\x90\x9d\x93\xb7\x13\xe7\x6b\x8a\xb7\x8e\x76\x92\x1a\xd3\x25\x94\xb2\x4d\xb3\x2c\x4f\xd9\x59\x52\xed\xbf\x7f\xff\x7e\x3a\x77\xee\x1c\x3d\xf5\xd4\x53\x38\x7d\xfa\x34\x26\x27\x27\x51\x2a\x95\xac\x75\xe1\x21\xba\xdf\xb7\x44\xa0\x11\x5f\x53\x6d\xbe\x5e\x3a\xfa\xe4\xed\xda\xbf\x7c\xea\xe6\xf8\xef\x1f\xd8\x2c\xfd\xab\x52\xe8\x1d\x24\xd8\x03\x7f\xe3\xca\xda\xe6\xb6\x16\x06\xd2\xba\xc1\x5e\x47\x90\x4a\xc3\x00\x46\x81\x4a\x53\x3b\xfe\xb1\x7a\x39\x7c\xf3\xfe\x68\x77\x15\xd1\x31\x92\x21\x11\xe9\x27\x9e\x78\x02\xf5\x7a\xdd\x6e\xcc\xe2\x8a\x94\xf7\x05\x69\x81\x64\xf1\x01\x2c\x9c\xb7\x9f\x0b\x7c\x78\x07\x86\xe3\x99\xfb\xc9\x76\x75\x59\x8e\xd2\x9a\x91\x96\x84\x2c\x47\x02\x56\x52\x4f\x9b\xc0\x35\x14\xc9\xfb\xe5\xce\x15\x96\x97\x4e\x8e\xa7\xf2\xd2\x03\x00\x3e\xff\xf9\xcf\xab\x4a\xa5\xa2\x00\xd8\x1d\x81\x15\x00\x13\xc6\x98\x3d\x00\xe6\x3c\x43\xf3\x8f\xdc\x1b\xfd\xd0\x33\x37\xc6\x7f\x65\xb4\xa3\x6a\xbd\xa3\x03\xed\xe9\x61\x71\x7d\xc5\x2c\x7b\xcf\x2f\x2f\x8c\xf3\x8b\x01\x0d\x87\xd3\x14\xf8\x20\x2d\x4e\xec\xd9\x10\xa0\xc9\x6c\xd6\x4b\xc1\x3f\xbf\x33\xb3\xfb\x57\x6f\xcd\x36\x5f\x5e\xaf\x74\xd7\x34\xa1\x09\x20\x30\x30\x01\xa2\x6d\xec\xda\xd6\xdf\xde\xd0\xb5\xb6\xb6\x86\x7b\xf7\xee\xe1\xe5\x97\x5f\xd6\xbe\xef\xab\x20\x08\xb2\xda\x81\xbf\x03\xfd\xed\x95\x15\xd7\xc5\xfb\x41\xed\x98\x97\x47\x52\x76\xa1\x50\x50\x4f\x3e\xf9\x24\x00\xe0\xe1\x87\x1f\xb6\xe7\x53\x00\x80\x5d\x1d\x51\x71\x1a\x1f\x26\xb2\x32\x46\xba\xaa\x76\x60\xb3\x74\xf4\xe1\x95\xca\x2f\x1f\xd8\x2a\x3f\x5f\x0a\xe8\x28\x81\xfc\x88\x91\xdc\x9c\x00\x2c\xd3\x5d\xe3\x37\xb7\xeb\x8f\x69\x9b\x6b\xbd\xd2\xf9\xc7\xef\x3c\xbc\xfe\xef\xef\x8d\x75\xaf\x81\x50\x8f\xef\x2b\x09\x8c\x31\xfa\x0f\xfe\xe0\x0f\x64\x27\x72\xf1\xd6\xc5\x0f\xee\x27\x5d\x16\xe0\x66\xf1\x36\x2b\xbf\x41\xed\xe4\xfa\xcd\xab\x43\x9e\x4c\x40\xce\x71\x48\x24\xca\x32\xbb\x6c\x06\xd2\x94\xb2\xce\x64\xfc\x4a\x0d\x94\x37\x77\x92\xa0\xf0\xce\xce\x0e\x8e\x1e\x3d\x6a\x57\x5a\x4c\x1c\x37\x8c\x87\x2f\xda\x10\xcc\x5a\xb5\xbb\xd9\x28\x85\x8d\xb9\xed\xe2\x81\x62\xa8\x46\x92\x61\x89\x05\x00\xdb\xe9\x53\x46\x73\xda\xf0\x89\xee\x5e\xe1\x61\x22\xee\x20\x9d\x2e\xf2\x4f\x59\x21\xf1\xb3\x32\x54\x2e\x07\xde\xd1\x7d\xf5\xe2\xc7\x4f\xac\x56\xfe\xc5\xdc\x76\x71\x5a\x81\x76\x77\x0b\x61\xbb\xeb\x01\x14\x1d\xab\x48\x88\xdb\xc6\x0e\x69\x46\x47\x47\x69\x66\x66\xc6\x5c\xb8\x70\x81\x9e\x78\xe2\x09\x7b\x20\x92\x9a\x9a\x9a\xa2\x95\x95\x15\xa9\xed\x5c\x1a\x8f\xfa\x29\x74\xb6\xab\xf4\x77\xb5\x91\xcc\xc3\xc8\x74\x17\x2e\x5c\xa0\xc5\xc5\x45\xf3\xd2\x4b\x2f\xa9\x27\x9e\x78\x02\xb3\xb3\xb3\x98\x9d\x9d\x8d\x17\x46\xc8\x43\xfc\x2d\x49\x5c\xdf\x22\x80\x11\xa5\x51\xd9\xd3\x2c\xec\x3d\xb3\x54\x7d\xf6\xc3\xef\x8d\xff\xd7\xa7\x97\x47\x7f\x7f\xba\x59\x78\xae\xa0\xd5\x34\x81\xd2\x9d\x2e\x05\x1c\x94\xd6\x01\xa9\x78\x06\x76\x28\x93\x3a\xf9\x3a\xa3\x29\xcb\x5d\xb5\xbf\xda\xf5\xd5\xed\xc9\xd6\x1b\x5d\xcf\xd8\xf9\x8e\x90\x88\x70\xe0\xc0\x01\xbc\xfb\xee\xbb\xd2\xf2\xe3\x2a\x44\x0e\xdf\x52\x72\x8c\xf4\xf0\x83\x5b\x2e\xfc\x59\xf6\x05\xb0\x3c\xa4\xe3\x56\x85\x7d\x77\xb5\x93\x6b\x38\xcb\xfb\xa0\x94\x9d\x1c\xf5\x17\xa5\x25\x0c\x46\x24\xeb\xb2\xfc\xac\xcb\x42\x45\x1e\xce\xd3\x0c\x42\xbc\x54\x9e\x1f\xfc\xe0\x07\xd5\xe9\xd3\xa7\xc1\x6e\xc9\x2a\x22\xba\x40\x7a\x82\xa2\x73\x1c\xe7\x08\x34\x77\x70\xa3\xf4\xf8\xb3\xd7\x27\x3e\xb5\x67\xa7\x30\xcf\x27\x3f\xfb\x74\x8c\x64\x05\xd8\x7b\x9e\x75\x91\xa4\x65\x71\x5c\xd6\x87\xe9\xfd\x24\xf8\x84\x74\x1a\x13\xaf\x38\x6b\xc2\xe6\x76\x29\xfc\xc9\xad\xc9\xd6\xb7\xae\x4f\xef\xfe\xf3\x6a\xb5\xb3\xbc\x13\xcf\xf0\xc7\x57\xfc\xf1\x6b\x05\x39\xcf\xb4\x31\x26\xb9\x1a\xf3\x8b\x5f\xfc\xa2\x06\x80\xc7\x1f\x7f\x5c\xbd\xfa\xea\xab\xba\x5c\x2e\xab\x56\xab\xc5\x29\x77\xb5\x57\x9e\x76\x02\xfa\xdb\x35\xb7\x9d\x7f\xf7\x77\x7f\x57\xd9\x1d\xbf\x71\x5c\x3b\xdc\xb3\x56\x85\xe2\x6d\xa8\x34\x8a\x13\xbb\x7e\x6d\x61\xb3\x7c\xe2\xe8\xfd\xf2\x2f\xcd\x6e\x17\x3f\x5e\x0a\xd4\x71\x8a\xda\x17\xc9\x61\xd3\xd2\xc8\x18\xca\xb9\x2d\x8b\xbc\x6c\x0c\x80\x50\x99\xc6\x2b\xf3\xdb\xff\xcb\x0f\x0f\x6f\x7d\x23\x50\x66\x9d\x88\x9a\x88\xce\xcb\xd0\xf7\xee\xdd\xc3\x5f\xfd\xd5\x5f\x3d\xa8\x15\x37\x6c\x9c\xac\x3e\x02\x0c\xd9\x4f\x7e\xce\x72\xf2\xe4\x20\x95\x4f\x16\x0f\x5d\x9d\x7a\x90\xa0\x41\xa4\xc9\x32\x5d\xb3\x4c\xa5\xac\x32\x01\x44\x63\xd7\xa7\x9f\x7e\x1a\x8f\x3d\xf6\x98\xf5\x4f\xc0\x03\x40\xcd\x18\xb3\x87\x88\x66\x61\x30\x37\xdb\x28\x3c\xfc\xe1\xeb\x13\xcf\x1f\xd8\xb4\xa7\x88\xd9\x7e\x9c\x5e\x5d\x49\x5c\x2c\x4d\x26\x2b\x7c\x18\x37\xbc\x9d\x9c\x91\xdc\xc0\x00\x9d\xae\x67\x16\xb7\xcb\xe1\x2b\x4b\x63\xed\x1f\xdc\x9c\x6a\x5d\x5a\xa9\x76\xee\xd4\xcb\x61\x03\x14\x5d\x2e\x6c\xcd\x66\xbb\x4d\x1a\x80\x5d\xb2\xb6\x59\x59\x3f\x74\xbb\xdd\xde\x7d\xbb\x00\xbe\xf4\xa5\x2f\x69\x00\x78\xe4\x91\x47\x12\xbe\x5e\xbd\x7a\x35\xe5\xc7\xdf\xaf\x5e\xbd\xaa\xed\x2f\x00\xbc\xf8\xe2\x8b\xea\x4b\x5f\xfa\x92\x7e\xf1\xc5\x17\x15\x00\xf8\xbe\x0f\xcf\x4b\x2e\x03\x94\x20\x61\xfd\xf8\x9f\x0f\xc0\xf7\x43\x2a\x4f\x35\xfd\xa9\xf9\xad\xd2\xf1\x83\x1b\xe5\xa7\xf6\xec\x14\x3e\x58\xe9\x7a\x8f\x7a\x1a\x35\x00\x6a\x50\x1b\x0c\xc3\xea\xe1\x80\xc6\x9d\x93\x81\x41\xab\xa0\x6f\xfc\xe3\xd1\xcd\x7f\x77\x75\x6f\xf3\x65\x10\x36\x8d\x31\x4d\x8a\xbe\xa6\xd5\x5f\xf8\xc2\x17\xf2\x86\x0d\xc3\x76\xf0\xbc\xe1\xc7\x83\x00\x53\x1e\x90\x0f\x52\xe6\xef\x27\x8e\x82\xb0\x38\x78\x24\xeb\xb2\x50\x27\x2b\x7c\x10\x72\xe5\xe5\x95\x57\x5e\xe2\xff\xf4\xd3\x4f\xab\x33\x67\xce\x00\x91\xe6\xf2\x11\x2f\xd3\x01\x98\x00\x30\x05\x60\x0f\x0c\xe6\xc6\x5b\xfe\xb1\xa7\x6f\xd4\x3e\xf1\xd0\x6a\xe5\x8c\xaf\xe1\xdb\xf9\x0a\x7b\x15\x64\x7a\x73\x46\x82\x1c\x88\xde\xec\xb2\xac\x9c\x03\x91\x96\x48\x7f\x78\x72\xa8\x72\x6a\xea\x51\xc4\xe3\xe1\x8e\x78\x31\x88\xb4\xba\x9e\x59\x6e\x94\xc2\x9f\xad\x57\xba\xaf\x2d\x8e\xb7\x2f\x2f\x8f\x75\x6e\x6c\x8e\x04\x6b\xbb\x05\xdd\xe2\x40\x12\xf3\x27\x99\x17\xe1\xfc\xb3\xa0\x92\x1c\x93\xd8\x9b\xec\x4d\x09\x8b\x23\x9c\xbb\xbe\xb1\x79\x0c\x48\x8a\xc5\x95\x20\x91\x80\x05\x19\x14\x6b\x2d\xbf\x32\xb1\xeb\xcf\x2f\x6c\x94\x4e\xcc\x36\x8a\x4f\x4c\xee\xfa\x67\x47\xba\xde\x89\x08\x2c\xc8\x87\xbb\xdc\x5c\x97\xa2\xf5\xfd\x99\x24\x99\xf9\x19\x18\xac\x57\x82\x97\xbf\xf3\xf0\xfa\xbf\xbb\x57\xeb\x5c\x43\x74\xa4\x5f\x0b\x40\x70\xef\xde\x3d\x3d\xa4\xd5\xf1\x20\x6e\x90\xe5\x37\x28\xcd\xcf\x43\x43\x9e\x45\xe2\xcc\x6f\x18\x4e\x0f\x6b\xbe\xf2\x82\xc0\xde\x65\xfc\xac\x70\x49\xa8\x13\x84\x3c\xcf\x53\x61\x18\xea\x97\x5e\x7a\x89\x0b\x67\x62\x79\x20\x02\x90\x59\x18\xcc\x55\xba\xea\xc0\xf9\xdb\x63\x1f\x39\xbd\x54\xfd\x60\x31\xa4\x32\x39\xaa\x9c\x1c\x19\xd8\xd7\xdb\x6d\x84\xf8\x57\x76\x72\xe9\x86\x52\x83\xec\xd9\x95\x9f\x14\xfe\x78\x38\x63\x80\x8e\x26\x34\xda\xbe\xbe\x55\x2f\x07\x6f\x6e\x8e\x04\x57\x57\xab\xdd\x77\xee\x8d\x75\x6e\xed\x14\xc3\xb5\x46\x29\x6c\x04\x5e\x34\xb1\x8a\x34\x88\x48\x20\x91\x02\x30\x8c\x80\x49\xd0\x90\xd6\x04\x7f\xf6\x61\xa0\x4a\x01\x95\xab\x1d\xbf\x56\x6d\x7b\x7b\xe6\xb7\x4a\x47\xa7\x77\xfc\x47\x26\x77\x0b\x8f\x8e\x76\xbc\xe3\x85\x90\xe6\x94\x41\x05\xcc\xb2\x70\xce\x4d\xdb\x67\x3b\x67\x91\x6a\x1f\x7e\x8f\x0e\x8b\x97\x66\x5d\x2a\xa6\x41\x4f\x61\xf4\xe9\x8d\xbe\x34\x76\x12\xc0\x04\xb7\x26\x5b\x5f\xff\xf6\xc9\xf5\xff\xb5\x55\xd4\xcb\x88\xce\xfe\xec\x00\x08\x62\xab\xc3\x25\xab\x83\x64\x39\x6f\x6a\x60\x98\xce\x3b\xec\xd0\x72\x50\xd9\x59\xf4\x72\x97\x0b\x1c\x59\x1d\x95\x57\x60\xa0\x25\xe0\x48\x3f\x08\x68\xf2\x90\x72\x28\xd4\xfc\xdc\xe7\x3e\xa7\x46\x47\x47\xc1\xe6\x3c\xec\x5d\x2d\x13\x88\x2c\x8f\xd9\x42\x48\xf3\x27\x57\x2a\x4f\x3d\x79\xab\xf6\xd1\xb1\xb6\x37\xd5\x67\x06\x5b\x2b\x24\x7e\x4e\x1e\xd2\x7b\xd2\xd1\x9b\xed\xcc\x20\x26\xc7\x82\x48\x85\xa7\xd2\xc4\x5d\x24\x23\x4e\x24\xec\x3c\xbf\x34\x90\x04\x9e\x5e\x69\x16\xf4\xad\xad\x72\x70\x63\xa7\x14\xde\xdc\x1a\x09\x6e\xad\x54\xbb\x8b\x3b\xc5\x70\xb3\xeb\xe9\x66\xc7\x33\xad\x8e\xaf\x3b\x21\x41\x1b\x18\x7b\xd2\x14\xe0\x1e\xe2\x64\x59\x1d\xaa\xef\xd7\x40\xf9\x1a\x7e\x21\x54\xc5\x72\xa0\xca\x7e\x48\xd5\x5a\xdb\x9f\x98\x69\x14\x0e\x8c\xb7\xfc\x23\x63\x2d\xff\xf0\x58\xdb\x3b\x5c\xee\xaa\x79\x5f\xd3\x9e\x08\x28\xd2\xcb\xa7\xbc\x3c\x37\x23\xff\xff\x70\xe9\xb2\xe3\xf9\x8e\xfa\x6b\xfb\x1a\xff\xf3\xf7\x8f\x6e\x7e\x5d\x2b\xac\x23\xb6\x3a\x56\x56\x56\xf4\x5f\xfe\xe5\x5f\xfe\x3c\x43\x85\xbc\x3e\x30\xac\xb2\xce\x2a\xff\x41\xad\x8e\x41\x7d\xbc\x2f\x4f\x72\x79\x0e\x41\x78\x1e\x6a\x5a\x37\xc8\x22\x19\x76\x18\x94\xf9\x3c\x31\x31\x81\x4f\x7d\xea\x53\xa8\x54\x2a\x40\xb4\xf6\xef\x03\xa8\x10\x51\xc5\x18\x33\x85\x68\xe8\x32\xab\x0c\xcd\x2d\x6c\x96\x4e\x3d\x73\x63\xfc\xe3\x7b\x1b\xc5\x83\xca\xd8\x31\xb8\xe8\x95\xa0\xa4\x73\x92\x61\xcb\x7b\x76\x66\x1e\xbd\x61\x8c\xd5\x84\x7c\xf2\x33\x59\x95\x89\x53\xda\xb0\x5e\x5c\x66\xdd\xf4\x0d\x8b\x7a\x54\x00\xe8\x8d\x88\x2c\x3d\x89\xd6\x04\x9b\x5c\xb5\x45\x19\x6d\x80\xc0\x10\x5a\xa1\x32\x9b\x5d\x65\xd6\x3b\xbe\x5e\x6b\x16\xf4\x5a\xb3\x18\x2e\xef\x16\xf4\x6a\xdb\xd7\xeb\x6d\x5f\xd7\x77\x0b\xba\xd1\xf6\x75\xab\xe5\xeb\x56\xd7\x33\x1d\x43\x46\xeb\xe8\x2c\x55\xcd\x34\xbd\x52\x06\x8a\x0c\xa9\x72\x40\xc5\x62\xa0\xca\xc5\x50\x95\xcb\x5d\x55\xad\x74\xd5\x54\x31\x50\x53\x23\x5d\x35\x53\xe9\x78\xb3\xa3\x1d\x6f\xae\x18\xd2\x1e\x5f\xd3\x84\x32\x54\x53\x06\x65\x00\xbe\x6b\x9e\xe2\x81\x20\x21\x07\xab\xe5\x5c\xd4\xfb\x8d\xd3\x0b\xcc\x1e\xe6\xc4\x97\x75\xfd\xec\xaf\x4f\xad\xfd\xeb\xc5\xf1\xce\x35\xf4\xac\x0e\xfd\xcd\x6f\x7e\x13\x4b\x4b\x4b\xc0\xf0\x7d\xc4\x15\x37\x4f\xe1\xc2\xe1\x37\x48\xc1\x66\x4d\x1d\x0c\x63\x59\x0c\x43\x1f\x00\x28\x7f\x08\x42\x38\x01\xb2\xa0\x61\x4d\x2f\xd7\x30\x85\xe7\xed\x02\x9d\x41\x95\x53\x9b\x9b\x9b\xf8\xea\x57\xbf\xaa\xe3\x7d\x1e\xf6\x4c\x8c\x66\xac\x49\xb5\x31\x91\xf9\xae\xc9\x74\x6e\x4d\xb6\x3a\xdb\xa5\x70\xf3\xe9\x5b\xb5\xe7\x8e\xac\x8d\x9c\x2e\x68\x2a\x12\xb7\x2a\xe2\xe7\x48\xc0\xa2\x67\x4a\x0c\x0f\xbe\x33\x31\x1e\xf0\xd8\xb8\x46\x68\x4e\xea\xe5\x45\x06\x02\x3c\xa8\x67\x3a\x13\xd2\xd6\x44\x8c\x12\xd1\xb9\x22\xd2\x20\x67\xe0\xc6\xc6\xe0\x49\x3e\x20\x05\x63\x8a\x04\x2a\xaa\x80\x6a\x45\xc2\xc1\xd1\xae\xc2\xc4\xae\x9d\xcb\x88\x80\x05\x04\x6d\x80\x8e\x21\xb4\x34\x99\x16\xf3\x0b\x0c\x8c\x1d\xda\xa8\x78\xe9\x53\x91\x89\xe6\x27\x94\xa1\x32\x01\x45\x8a\xbe\x44\xf5\x09\xf0\x63\x9a\x94\x6b\xf7\x44\xef\x90\xb6\x74\x18\xc9\x48\x44\xfd\x43\x0c\x3b\x8c\x88\x79\x90\xda\x83\x23\x9c\x6b\x8a\xaa\x67\xf4\xa5\x5f\x00\x4c\xe3\x00\x00\x1b\xf9\x49\x44\x41\x54\x15\x42\x2e\x60\xc9\xbc\xd9\x64\xf9\x6e\x41\xaf\x5c\xdd\xbb\xf3\xed\x8d\x91\xa0\x15\x9f\x2c\xa6\x84\xa5\x34\x6c\x27\x46\x4e\xb8\x4b\xf6\x07\x29\xd6\x41\x56\x7c\x16\x88\x65\xd1\x92\x57\x8f\xbe\x7c\xfd\x8c\xc8\x83\x88\xcf\x22\x48\x82\x45\x1e\xc1\x59\x04\xe6\x8d\x07\x39\x0d\x89\xfb\xda\xd7\xbe\xa6\x3f\xff\xf9\xcf\xab\xd1\xd1\x51\xbb\xe2\xa0\x01\x70\xf0\xe8\x80\x28\xd8\x18\x0d\x5a\xff\xe9\xf8\xc6\xf6\xe3\x95\xee\xca\x99\xc5\xea\xd3\xa3\x1d\x6f\x02\x86\xed\xf5\xb0\xf3\x1d\xc6\x24\xe2\xd6\x9b\x48\xed\x85\xd9\x2e\x60\xef\xaf\x05\x10\xc9\x36\xec\xe4\x66\x3c\x9e\x46\x6f\xf3\x19\x3f\x2c\xc8\xe6\x95\x00\x83\xb1\x4f\xd6\x94\x88\x72\xe7\x13\x7f\x5c\xfc\x93\x67\x66\xdd\x58\xab\xc5\xb0\xf4\xf1\xf7\x36\x0a\xd1\xfd\x34\x7e\xfc\xed\x4d\x25\xb1\x86\x2c\x3c\xb1\x4d\x72\xbc\x76\xf6\x27\x7d\x1a\x1a\x7a\xbd\x35\x3e\x7d\x3e\xb1\xa8\xc8\xd6\x82\xcf\x52\x24\x55\x60\x7c\xee\x91\x4e\x6c\x9f\x05\xb3\xd3\x52\x98\x93\xc2\x8e\xa4\x2c\x01\xbc\x60\x60\xcb\xef\xe1\x31\x96\x0f\x88\x69\x4d\xcf\x69\x25\x7b\x3c\x12\x22\xc9\x6e\xd4\xd3\xab\xd5\xce\x3b\x3f\x39\x58\xff\x3f\x6f\x4c\xb5\x7e\xa0\x15\x3a\xd1\x4e\xd3\xbe\xe1\x55\x96\x56\x77\x29\x3f\xa7\xf6\xce\x88\xeb\x0a\xb7\xbf\x72\xf8\x08\x0c\xee\x27\xc3\x5a\xf3\x79\x4a\x3c\xe9\xbb\xf6\x30\x14\xc0\xce\x07\xa5\x0b\xb1\x4d\xc3\xff\xb4\x88\x6f\x89\xe5\x10\xcf\x2b\xcc\xe3\x32\x23\x3d\x95\xa7\xc9\xf0\x07\xdc\xf4\xd9\xf8\x36\xad\xba\x73\xe7\x0e\x7c\xdf\xc7\xf4\xf4\xb4\xa1\xe8\x40\x16\x7b\xed\x5e\x17\xbd\x23\xe8\xbb\xa1\x87\xce\xe2\x78\xe7\xde\x6a\xb5\x7b\x7f\x7c\xb7\x30\x3e\xda\xf5\xc6\x23\xf1\x8f\x8b\x24\x80\x6f\x3b\x37\xb1\x94\xda\xed\xe9\x91\xfc\x51\x42\x61\xb2\x67\xa1\x77\x9c\x18\xfb\x46\x22\x9d\xa6\xf7\xa1\x1c\x25\x69\x6d\x3c\x12\xf1\xf8\x96\xf8\xe4\x37\xc9\xdf\xa4\xf2\x48\x86\x56\x09\xd7\xec\xd7\x9f\x69\x3a\x23\x5a\x7a\x5f\x86\x46\x9d\x24\x7d\x6a\x1a\xa7\xc9\x06\x50\x9c\x67\x6f\xe8\x86\x1e\xaf\xe2\xa8\x09\x7d\xb0\x65\x24\x88\xc3\xe2\xf4\x00\x81\x88\x92\x7c\x53\x51\xb9\x45\x67\xab\x49\x22\x0e\x28\x29\x33\xc9\x9b\x49\x03\x09\xda\x93\xcf\x0d\x78\xdb\x25\x4d\x94\x7a\x81\x81\x41\xd7\x33\xad\x6b\xb3\xcd\x9f\xfe\xc3\xf1\xcd\xff\x6b\xb9\xd6\x7d\xcb\x28\xd8\xeb\x17\x9b\x44\xd4\x8e\xe5\xc9\x7c\xef\x7b\xdf\xd3\x48\xf7\x11\xfb\x6e\x9d\xec\x0b\xae\xb8\x9c\x7a\x30\x7f\xd9\x59\x79\x3f\x31\x2c\x0f\xde\xef\x6c\x3a\x99\x3f\x90\xee\x7f\x1c\x18\x8c\xc8\x83\xe7\x25\x69\xb7\x74\x68\x7e\x93\x9b\xcd\xd0\x88\x84\x3c\x5c\x12\x06\xe6\xc7\x33\xe7\xe8\xc8\x01\xc6\xc5\x00\x9e\xa7\x64\x8a\x64\x10\xcf\x9f\xa7\xd5\xad\x56\x8b\x6e\xde\xbc\xa9\x7d\xdf\xa7\xf8\x93\x7c\x13\x1f\xcc\x62\x97\x2c\x3b\xf1\x6f\xd7\xc0\x74\xeb\xe5\x60\xf3\xe6\x54\xeb\x36\x01\x98\x6a\x16\x67\x7c\x4d\x05\x4e\x9d\x89\xc7\x29\x76\x98\x92\x38\xbb\xdc\x6a\x23\xf3\xdd\x88\x29\x45\x24\x80\x26\x59\xca\xb5\x9a\x9a\x45\x4d\xbe\x91\xe1\x1d\x8d\x78\x50\x4f\x8b\xc6\x34\xa4\x4a\x32\xbd\x76\xef\x75\xc8\xf4\x90\x21\x6d\xf1\x44\xf4\x45\xa0\xc8\xad\x04\x0b\x96\xc4\x86\x59\xc2\x06\x91\x62\x2e\x9c\x73\x3e\x98\x7a\xa0\x63\xa4\xf6\x4f\x80\xb9\x97\xd8\x58\x6b\x4d\x94\xd5\x03\xe4\xec\x42\x7b\x40\x60\x2f\xf0\x4a\xe7\x9b\xb6\x16\x6c\xfb\x45\x1c\x02\x0c\xd6\x2b\xc1\xf2\x0f\x8e\x6e\x7d\xe7\xd2\x81\xed\xbf\x6f\x16\xf4\x2d\x22\xba\x07\x60\x83\x88\xb6\x8c\x31\xf6\x98\xc1\x60\x6b\x6b\x0b\x37\x6f\xde\xa4\x4e\xa7\xe3\x02\x0c\x2b\xcf\x1c\x24\x64\x87\xb6\xef\xbc\x46\x5a\xf8\x5b\x36\xf2\xdf\x3e\xd9\x47\xaf\x55\x6c\x5e\x9a\xc5\xcb\xeb\xab\xb2\x2f\x2a\xa4\x69\x93\x00\x92\xbc\xf3\x53\xce\x6d\xa1\x24\x32\x91\x1d\x56\x23\xcd\x14\x12\x69\x25\x50\xc8\x67\x4e\x18\x8f\xcf\xcb\x71\xa1\x36\xa7\xcd\x55\x36\x00\x98\xbb\x77\xef\x1a\x22\xb2\x87\x01\xd9\xf2\x92\x6b\xf7\x10\x5d\xfa\xdb\x01\x51\xd0\xf5\x4c\xeb\xee\x44\x7b\x71\x7d\x34\x58\x9b\x68\xf9\x93\x95\x8e\x1a\xb7\x82\x9e\x00\x06\x81\x15\xe9\xe8\x2f\x19\xe3\xe3\x44\xd8\x79\x3c\xd6\x09\xed\xae\x51\xae\x0d\x5d\xeb\x89\x24\x6b\x0c\xdb\x09\xfa\x3b\x92\x5c\xa1\x88\x94\x2b\x9b\x24\x4c\xf2\x61\xb4\x58\xa0\x91\x16\x46\x42\x16\xa5\x84\xa0\x77\x7e\xb3\x7b\xdf\x07\xef\xa8\x49\xdd\x18\xad\x94\x44\xb2\xf4\xb2\x00\x3b\x8c\x63\xe0\xd7\x27\x9d\xe8\x95\x9d\xaa\x0f\x3b\xde\x20\x46\xbf\xb4\xe5\x67\xb9\x2d\x1b\x90\xa2\xb8\x5d\x5f\x77\xde\x9a\x6d\x5e\xfe\xde\xf1\xcd\xbf\xbe\x3d\xd1\x7e\x5d\x2b\x2c\x02\x58\xa1\xf8\xb2\x67\xc4\x93\xa2\xb1\x05\x6b\x5e\x7f\xfd\x75\xdc\xba\x75\x0b\xe8\x1f\x1a\xb8\x60\x55\xca\x38\xef\x0f\x12\x78\x78\x5a\x3e\x02\xe0\xe9\x38\x00\x0c\x52\xd2\x3c\x0f\xfe\x6e\xf3\xe1\xb4\x5b\x3f\xde\xe4\x32\xdf\x14\x70\x70\xf1\x94\x63\x25\x57\x27\x96\x26\x93\x74\xb2\x70\xd9\xd9\xa5\x35\xc1\x99\x21\x09\x96\x48\x2a\xf3\x07\x04\x98\x2d\x2d\x2d\xe1\xe2\xc5\x8b\x3a\x3e\xc3\x54\xdb\x6f\x5a\x10\x0f\x59\xc8\x5e\xbd\x47\xe8\x6a\x98\xee\x46\x25\xd8\xbc\x35\xd5\xba\xad\x09\xe1\xc4\x6e\x61\xda\xd7\x54\x94\x73\x08\x89\xe3\x7d\xdb\x24\x30\xd0\x0b\xb0\xaa\x3a\x26\x3d\xf5\x91\x1d\xeb\x24\xd1\xfc\x49\x2f\x53\x63\xff\x67\x1a\x33\x0a\x62\x4d\x13\x77\x92\xde\xea\x4c\x6c\xbd\xf0\xf0\x24\x29\x67\xb9\xd5\xe0\xf1\x80\xcc\x5a\x52\xd6\x12\xb1\x49\x79\x55\xc5\xac\x65\xd2\xc5\x13\x70\x61\x9d\x9f\xc5\xed\x1d\x3b\x10\xf3\x22\xa9\x43\x42\x05\xe4\x8a\x47\x4a\x82\xb8\xb9\x94\x42\x9b\x18\x30\x93\x28\x8c\xe8\xe4\x1a\x50\x0b\x1a\x22\xcf\x38\x0e\xb1\x4a\xda\x79\x1b\x0d\x60\xad\xda\x5d\xfc\xd1\xe1\xad\xef\x5e\x3e\xd0\xf8\x5e\xa3\xa4\x6f\x18\x98\x25\x22\x5a\xa6\xe8\xd2\xe7\x4d\x00\xdb\x44\xd4\x8a\xad\x8d\xb0\x5e\xaf\xe3\x87\x3f\xfc\x21\xba\xdd\x2e\xe3\x48\x5f\x9f\xe1\x60\xc1\x6b\xe9\xea\x67\x49\x87\x14\xe9\xc8\x11\x97\xf7\x55\xa1\xa6\x52\xf9\x73\xee\xf2\x7e\x22\x95\xb6\xec\x93\x40\x3f\x28\xf1\x3c\x0c\xd8\x1c\x07\x47\x29\x89\x36\xd2\x54\x71\x75\x68\xe9\x38\x3a\x4a\xc2\x5c\x66\x9a\x04\x18\x17\xea\x01\xfd\x74\x71\x30\x91\x20\x62\xde\x78\xe3\x0d\x33\x35\x35\x45\x93\x93\x93\x06\x80\xfd\x2c\x3f\xb9\x76\x2f\xb9\x6a\x8f\xd0\x69\x7b\x66\xf7\xee\x78\xfb\xee\xea\x58\x77\xb5\xd2\xf5\x2a\xd5\x8e\x1a\x27\x90\xe2\xf3\x19\xb2\xa6\x89\xc2\xe4\x71\xac\x96\x4d\x34\xa1\x8d\x47\xfd\x79\x50\x2f\x2e\x1f\xdf\xa7\xc2\xc0\xd2\x26\x15\x25\x56\x16\x4b\x97\xe2\x28\xa7\x9b\x58\x8b\xf5\xfb\x13\x58\xba\xa4\x55\xd3\xa0\xd1\xb7\xfc\xc1\xfb\xa7\x18\x1b\xf5\xfa\x70\xba\xc2\xbd\x43\xa0\xa3\x42\x9d\xfb\x38\xec\x44\xb1\xf4\x4f\x59\x2e\xbd\x30\xd3\x57\x1e\x1c\x40\x28\x2b\x19\x11\xb3\x5b\xd0\x8d\x37\xe6\x76\xfe\xf9\xfb\xc7\xb6\xbe\x7d\x67\xa2\x7d\x25\xf4\x70\x07\x84\x7b\x44\xb4\x82\xe8\xd6\xf8\x2d\x00\x8d\x78\x5e\x23\x00\x10\xd4\xeb\x75\x7c\xfb\xdb\xdf\xc6\xf6\xf6\x36\xb7\x16\x5c\x13\xfd\xbc\x63\x73\xd9\x97\x61\xdc\x1f\xc2\x8f\x87\xc9\x5f\x57\x3c\x59\xa6\x04\xaf\x41\x61\xca\x11\xd7\x49\x0b\xc1\x6d\xf2\x0c\x5a\xba\x01\xfa\x99\x35\xcc\xea\x4b\x5e\xfa\x07\xcd\x27\x2f\xcf\xbe\xb0\xdf\xfb\xbd\xdf\x53\xf1\x52\x9a\x42\xfc\x79\xbe\x31\xa6\x42\xd1\xcd\x71\x35\xfb\xb1\x1c\x0c\xf6\x8c\x76\xd4\xfe\x93\xf7\x46\xcf\x9d\x5a\x1e\x3d\x37\xb1\xeb\xef\x51\x20\xc5\xd9\x98\x9a\xd1\x4f\x69\xe9\xf8\x97\x90\x74\x22\xbb\xd2\x90\x09\xb3\xb1\xbf\x9c\xf6\x48\xc2\x1c\xfa\xa5\xb7\x1a\xc3\xcb\xcb\xa0\x03\x39\x61\x96\x46\x6e\x25\xa4\xea\xc9\x57\x7f\x1c\x19\x26\x9d\xdc\xf1\x95\x8f\xb5\x7a\x52\xd6\x06\x2b\x2f\xd5\xf9\x59\x39\x86\x1d\x90\x24\xaa\x8e\xfe\x52\x52\xf9\xf2\x2d\xfb\x36\x1f\x69\xe1\x18\x18\x04\xca\x04\x8b\xb5\xce\x8d\x57\xf6\x6f\xbf\x7c\x7b\xb2\x7d\x35\x50\x66\xcd\xc0\xac\x01\x58\x27\xa2\x4d\x00\x75\x63\x4c\x13\x40\x8b\x7a\xb7\xbd\xe9\x46\xa3\x81\x3f\xf9\x93\x3f\xc9\xea\x2b\x2e\x59\xb4\x6e\x90\xfc\xca\x3e\x97\xd7\xaf\xf2\xca\x18\xd4\x3f\xf2\xd2\xe4\xf5\x77\xe7\xaa\x0a\xd7\xe8\x12\xe1\xf8\xbb\xb4\x34\xa4\xbf\x34\x83\x90\x11\x97\x8b\xae\xfd\xe3\xe1\x32\xbe\x7d\x97\x8c\x90\x16\x91\xcd\x53\x22\xb8\x02\x60\x96\x96\x96\x68\x76\x76\xd6\x8c\x8c\x8c\xd8\x65\x5a\x1d\x5b\x1f\x1d\xf4\xc6\xae\x6d\x03\xd3\xe9\xfa\x68\xde\x1b\xeb\x2c\x2f\x8e\xb7\x17\x0d\x91\xa9\xb6\xbd\x5a\x41\x53\xc9\x0a\x5f\x3c\x2c\x76\xce\x73\xa6\x34\x1b\x45\xe2\x9f\xda\x36\xdd\x67\x46\xa7\x94\x65\xda\x51\x2f\x8c\xc7\xe1\x7b\x3d\x52\x71\x4c\xbf\x5f\x8a\x26\x6e\xd5\xa3\xa7\xad\xed\x86\x36\x50\x3a\x4d\xef\xda\x09\xee\x89\x5e\xa5\x93\xb9\x08\xd6\x9d\x99\xf1\x9c\x58\x03\x09\xd0\xf5\x78\x92\xaa\x26\x2f\x27\x0e\xe7\xa4\x1b\x44\xbc\xee\xfb\x2e\x25\x99\xeb\xe8\xd1\x63\x58\xbc\xe4\x37\x86\x16\x4d\x46\xdf\x1f\xed\x2e\x5d\x5a\xd8\xfe\xc1\x4f\x0e\x6d\xff\xfd\xca\x58\xf7\x4d\xad\xb0\x68\x60\x96\x89\x68\x95\x0d\x4d\x76\xe2\x15\x94\x0e\x80\xd0\x18\xa3\x2f\x5f\xbe\x8c\xef\x7c\xe7\x3b\xb2\x73\x72\x79\xcb\x1a\x5a\xf3\xb0\xac\xf9\x05\x69\x29\xb8\xe6\x34\x80\xb4\xbc\xcb\xe5\x5b\x97\x35\x9f\xd5\xef\xe4\x9c\x8a\xcb\x2a\xe2\xe9\xfa\xd4\x0e\xb1\x08\x2e\x94\x93\xc4\x01\x6e\x64\xcc\xb3\x5a\xf2\x10\x39\x2b\xcc\x86\xcb\x32\x87\xb5\x70\x78\xfa\x24\x6d\xb5\x5a\x55\x8d\x46\x43\xff\xce\xef\xfc\x8e\x8a\xcf\xb3\x54\x88\x76\x9c\xda\x0f\xe5\xaa\xe8\x6d\x59\x9f\x02\x30\xe5\x87\xb4\x67\x7e\xab\xf4\xd0\x99\xc5\xd1\x0f\x1c\xd8\x2c\x1f\x2d\x85\x54\x8e\xc6\xcb\xd2\x0c\x88\xb5\x9d\x9c\xb8\x03\x8b\x92\x68\xbe\x58\x4f\x5a\x85\x6c\xf7\x69\x64\x8c\xd3\xa3\x8e\x63\x3b\x0b\x7a\xe6\x4e\x02\x5c\x19\xa6\x09\x73\x3d\xba\xac\x56\x76\x18\x24\x59\x61\xfd\x24\x01\x30\xac\x93\xca\xf2\xd2\x3c\x49\x57\xc6\xc0\x8d\x92\x80\x93\xee\x84\x36\x5b\x35\x9e\xde\xc4\x3c\x70\xd8\x43\xec\x83\x44\x0d\xa3\xb7\x4b\xe1\xe6\xdb\x33\xcd\x2b\x3f\x9b\xdb\xb9\xb4\x51\x09\x6e\x1b\xc2\xba\x31\x66\x9d\x88\xd6\x01\x6c\x1a\x63\x1a\xf1\xe6\x41\x6b\x65\x68\x63\x4c\xd0\x6c\x36\xf1\xb5\xaf\x7d\x6d\x90\x55\x91\x67\xb1\x67\xf5\xab\x3c\x6b\x3b\xaf\xff\x64\xf5\xcd\x5c\xd9\xcf\xa0\x2b\x2b\xdf\x81\x61\x9e\x23\x02\x47\x2e\x4e\x14\x89\xc4\xdc\x5a\xe0\x56\x86\x94\x47\x23\xe2\x4a\x0b\x45\xce\xfa\xba\x24\x51\x2a\x20\x69\x89\xf0\x70\x72\xa4\xd5\x00\x54\xa7\xd3\x01\x00\x0a\xc3\x10\xd3\xd3\xd3\xa6\x50\x28\x68\x00\x76\xe2\x34\x40\x64\x92\xb6\x89\xa8\x6d\x05\x28\x24\xb3\x5b\x1f\x09\x36\x6e\x4e\xb5\x6e\x6d\x8d\x04\x1b\x23\x81\x57\xae\x74\xd5\xa8\x32\xe4\x59\x71\xe5\xa6\x7e\x6f\xe2\x8e\x19\xd1\x76\x05\x25\xd9\xc6\x4e\x09\x65\xbd\x65\xcf\xf4\xa6\xac\x5e\x07\xe6\x1b\x96\xa2\x04\xc9\xc0\x21\xe9\x51\x40\x5a\x4f\xc7\x3a\xde\xf0\x86\xb0\x69\x39\x83\xa2\xb2\x6c\xe7\x37\x89\x16\x07\xb3\x0e\x00\xc8\x25\x59\x5b\x9e\x5c\xda\x64\xa5\x59\x93\xa7\xb7\xfa\x82\x64\x1e\xc7\x05\x73\xe0\x16\x05\xfa\x85\xca\xe2\x10\x88\x43\x2f\x25\x93\xcf\x3d\x4c\xec\x99\x81\x86\x80\x9d\xa2\xae\xbf\xb3\xa7\x79\xe5\xe5\x23\x5b\x7f\xf7\xe6\xde\xe6\x4f\x77\x8a\xe1\x4d\x10\x2d\x01\xa9\xb9\x8c\x3a\x11\x6d\x03\xd8\xb5\x56\x46\x18\x86\xe1\xc6\xc6\x06\xfe\xf4\x4f\xff\x34\x6b\x12\xd3\x35\x59\x29\xe5\x9a\x5b\xc5\xc3\xcc\x21\x66\x75\x5c\x69\xc9\x70\xeb\xc4\x95\x1f\x6f\x0c\x59\x36\x8f\x2f\xd3\x48\xfa\x39\x1e\xa4\xca\xa6\x0c\x42\x5d\x96\x86\x75\x83\xc6\x65\x2e\x24\xcc\x1a\x47\x0d\x83\x7e\xc3\x86\x43\xc4\x01\xf3\xeb\xa3\xbd\x52\xa9\xe0\x13\x9f\xf8\x04\xa6\xa7\xa7\xa1\x94\x52\x00\xec\xe1\x32\xbe\x31\xa6\x1c\x7f\xef\x52\x43\xcf\x02\x99\x20\xd0\x54\x39\x50\x7b\x8f\xad\x8d\x3c\x7a\x6a\x79\xf4\xec\x4c\xa3\x70\xc0\xd7\xe4\xcb\xa3\x0a\x01\x03\x12\x63\x18\x2b\xd4\xa9\x5d\x92\xc6\xc4\x43\x1e\x8b\x20\xfd\xf9\x24\xd6\x0d\x1b\xb3\x47\x19\x22\xe9\x9f\x76\x8c\x92\xde\x42\x1f\xff\x32\x23\xc5\x24\x65\xf4\xe6\x48\xd2\xe7\x72\xa2\x07\x66\x49\x56\xa9\x97\x54\xd9\xfc\xc5\xbd\x75\x5c\xe0\xbf\xb4\x68\x64\x39\xe0\xd6\x4e\x86\xe5\xe5\x8a\xcb\x0c\x1c\x8b\x96\x2d\x5f\x37\x6f\x4e\xb6\xae\xbd\x3e\xbf\x73\x69\xb9\xd6\x7e\x37\x8c\x3e\x50\xb3\xd6\xc5\x26\x11\xd5\x01\x34\x01\x58\x2b\x23\x39\xe7\xa4\xdb\xed\xe2\x95\x57\x5e\x81\xb8\x1a\x21\x6f\x2e\x20\x4f\xbe\xb3\x64\x73\x58\x6b\x22\xaf\x6f\xe6\x59\x08\x59\xf4\xe5\x59\x26\x32\x5f\x57\x19\x00\xa2\xf3\x38\x86\xad\x94\xcb\x65\x75\xec\x61\xf2\x19\x86\x49\x59\x65\x3c\x48\xe3\x0d\xca\x43\xff\xfa\xaf\xff\xba\x9a\x99\x99\x81\x9d\x3c\x8d\x27\x4e\x7d\x44\x9f\xea\x57\x10\x0f\x61\x88\xc8\x0e\x61\x26\xca\x1d\x35\x73\xec\xfe\xc8\xa3\xa7\x96\x47\xcf\xcd\x6e\x17\xe7\x3d\x03\x3f\xb2\x28\xd8\x99\x0e\x62\xd5\x80\x0f\x63\xec\x2a\x6a\xf4\xea\x9e\xc4\x23\xd6\x71\x7a\x5d\x05\xc8\x36\xe7\x7b\xe6\xb9\xec\xa4\xf6\x43\x5c\xa0\x67\x01\x65\x4c\x79\xf6\x0f\x07\x44\x79\xfd\x4e\xda\x10\xae\x28\x79\x43\x94\x61\x4b\x72\xd9\x2a\x96\x2b\x3d\xc0\xb8\x3d\xd9\x7e\xe7\xf5\x7d\x8d\x4b\x77\xc7\xdb\xef\xc6\x5f\xb4\x5a\xb0\xd8\x44\x74\xae\x46\x03\x0c\x30\x10\x1f\x47\x60\xcf\x15\xad\x54\x2a\xaa\xd9\x6c\x0e\xea\xa8\x80\x43\x96\x90\xdf\x67\x86\x01\x12\x99\xef\x20\xa5\x38\x68\x58\x91\xe5\xe7\x2a\x37\x8f\xde\x94\x1f\x07\x0e\xe9\xf2\x18\xe7\x7a\x1f\xa6\xa2\x79\xc4\xb8\xca\xcf\x6a\x18\x57\x3c\x4e\x33\x1c\x7e\x99\xe8\x6a\x0f\xff\x8d\xcf\xf8\xb0\x71\xad\xf5\x91\xcc\x7f\x18\x63\xaa\x44\x94\x58\x20\x00\x26\xca\x5d\x35\x73\x70\xa3\x74\xfc\xe4\xbd\xd1\x33\xfb\xb7\xec\xed\x72\x0e\x8b\x23\xfe\x8d\x3a\x71\xfa\x8b\xd8\x3c\x6d\x6e\x58\x07\x49\xa5\x85\x23\xcd\x10\x7d\xdc\x35\x55\xd2\x57\xac\x2b\x9d\x88\xdf\xbf\xe1\xca\x91\x81\x30\x9a\x53\x87\x28\x21\x0b\x4b\x2c\xaa\xc6\xcf\x22\x02\x07\x42\x1b\xa4\x61\xb0\x53\x0a\x37\xdf\x9d\xde\x7d\xf3\xea\xde\xe6\x6b\xab\xd5\xce\xed\x0c\xc0\xe0\x16\x46\x07\xec\xfc\x92\xb5\xb5\x35\xfc\xc5\x5f\xfc\xc5\xb0\xca\x33\x4f\x71\x65\x3d\x0f\xdb\x79\xdf\x4f\x3c\xc0\x5d\xc6\x20\x9a\xb2\xea\xc4\x9d\x13\x54\x5c\x16\xc7\x30\xc3\x04\x38\xe2\x0f\x72\x0f\x02\x24\xc3\xe6\xfb\x7e\x69\xc9\x74\xbf\xf6\x6b\xbf\xa6\xe6\xe6\xe6\x00\xc0\x7e\x05\x69\xcf\xfa\x28\xda\x21\x0c\x62\x0b\x24\x5e\xc2\xad\xc1\x60\xa2\x18\xd2\xf4\xec\x76\xf1\xe0\xc3\x2b\x95\xd3\x87\xd7\xcb\x27\x46\x3b\x5e\x2d\x3d\xeb\x10\xbb\xa1\x7a\xe8\xcf\x53\x83\x9f\xc3\xe5\x95\xed\xea\xb1\x36\x48\x4c\xbc\xf6\xa7\x4d\x4d\x42\xfc\xc2\x48\x0d\xc9\xe8\x8d\x4a\x77\xe5\x9d\x3d\xbb\x3f\x7b\x67\x4f\xf3\x67\x1b\x95\x60\x49\x13\x36\x41\xd8\x44\xb4\x3a\x52\x47\xbc\xb4\x1a\x4f\x7c\x36\x99\x85\x91\x1c\xbd\xf8\xc6\x1b\x6f\xe0\x07\x3f\xf8\x41\x96\x02\x42\x86\xff\x30\x9a\x7d\x98\x61\x8e\x2c\x83\x87\x0d\x33\x2c\xc9\xa2\x67\x98\x7e\x3c\x08\x78\x32\xf3\xcd\x1a\xaa\xb8\xdc\xb0\xc3\x0d\x20\xbf\x50\x38\x9e\x01\x37\x93\xf2\xdc\x83\xc4\x19\x3a\xae\xef\xfb\xd8\xbf\x7f\x3f\xce\x9c\x39\x83\x7d\xfb\xf6\x59\xba\x12\x0b\x04\xf1\x81\x41\x76\x0f\x88\x31\xa6\x16\x5b\x21\x35\x18\x4c\xf8\x1a\x13\x13\xbb\x85\x7d\xc7\xd6\x46\x4e\x1e\xbd\x3f\x72\x62\xb2\xe9\xcf\x16\x52\x3b\x51\xad\x42\x1d\xf2\x7c\xd3\x94\x55\xe0\x18\xca\x0c\xe3\x1c\x73\x12\xd9\x71\xd9\x70\xe7\xc1\x88\xeb\xcd\x9a\xc9\x62\x86\x05\x0c\x39\x05\x67\x9f\x59\xb0\x81\x41\xdb\xd7\xcd\xa5\xf1\xce\xad\xb7\x67\x9a\x3f\xbb\x3d\xde\xbe\xde\x2c\x86\xab\x31\x60\xd4\x11\x01\x46\x03\xcc\xc2\x40\x74\xf8\x4e\xca\xc2\x00\xa0\x97\x96\x96\xf0\xcd\x6f\x7e\xf3\x41\x86\xcb\x3c\x0e\xd0\xdf\xc1\x78\x7a\xd7\x33\x77\x79\xf1\xb3\x00\xea\xe7\x29\x7b\x18\x9a\x86\xcd\x17\xe4\x08\xcc\xcb\x6c\x18\xb3\x28\xab\xa2\x59\x84\x0d\x62\x5c\x56\x5a\x59\x31\x99\xdf\xb0\xc8\xec\xca\x07\x85\x42\x41\x75\xbb\x5d\xfd\xc2\x0b\x2f\xa8\x52\xa9\x04\x00\x76\x03\x99\x4f\x44\xbe\x31\xc6\x9e\x38\x66\x01\xc4\x2e\xe5\x56\x09\x54\x23\x60\xa2\xd2\x51\xd3\xfb\xea\xa5\xc3\x47\xef\x8f\x9c\xd8\xbf\x55\x3a\x38\xda\xf6\x6a\x9e\x89\x0f\xb9\xe1\x5a\x18\xe8\x8d\x1f\x6c\x8f\x21\xf4\x4c\xf6\x64\x92\x22\x35\x31\x92\x8e\x0b\x96\x97\xcd\x2f\x76\x7d\x4b\xc4\x7c\x26\x34\x49\x1f\xf7\x7c\xde\x6b\xdf\x87\x75\x90\x06\xb4\x07\x30\x9f\x06\x1c\xa6\xd3\xf5\x4c\x67\x73\x24\x58\xbb\x3d\xd1\xba\x71\x7d\xba\x75\x6d\xb5\xda\xb9\xd5\xf1\xcc\x06\x60\xea\x26\x5a\x15\xb1\x73\x17\x0d\x64\x00\x86\x3d\x72\x61\x65\x65\x05\xf1\xe9\x5d\x79\x6e\xd0\x50\x61\x18\xff\xac\x38\x3f\x4f\x3e\xc3\xba\x07\x19\x3a\xe1\x41\xcb\xcd\x6a\x55\x17\xc2\x66\x21\x21\x8f\xff\x7e\x4c\x1f\x57\x7e\x92\x86\x2c\xc4\xb4\xef\x2e\x1a\x06\x31\x4a\xa6\x75\xe6\x33\x31\x31\x81\x53\xa7\x4e\xe1\xc8\x91\x23\xf6\xa4\x31\xa7\x05\x12\xff\x55\xe2\x79\x10\x0b\x22\x35\x00\x55\x3f\xa4\x89\x89\x5d\x7f\xdf\xc1\x8d\xf2\xe1\x03\x9b\xa5\xc3\x7b\x76\x0a\xf3\x95\x8e\x57\x49\x40\x64\xd0\x04\x41\x86\xd5\xd1\xb7\xac\xd0\x9f\xb2\xdf\xc3\x08\x3c\x92\x96\x4b\xdf\x64\x46\xbf\xcb\x9e\x52\xc9\x98\xef\x18\x30\x84\x71\xe5\x17\xef\xf0\xec\x6c\x97\xc2\xfa\x52\xad\x73\xe7\xe6\xd4\xee\x3b\x4b\xb5\xce\xad\x9d\x62\xb8\xaa\x55\x34\x04\x41\xcf\xb2\xe0\x60\xd1\x44\xbc\xa9\x0f\xf1\x8e\xcf\x78\xb9\x5d\xaf\xae\xae\xe2\xb5\xd7\x5e\xc3\xbb\xef\xbe\x9b\xd5\x69\xb9\x7b\x10\xe5\xc8\xd3\xb8\xf2\xcd\xb3\x18\x5c\x96\xf0\xb0\x65\x0f\xab\x30\xdf\x6f\x78\xe6\xaf\xcb\xe2\x70\x55\x0e\x48\x57\x70\x58\x0b\x63\x98\x4a\xcb\x72\x5c\xe5\x0e\x62\xfc\x20\xda\xf3\xf2\x1c\x06\xf9\x15\x00\xfd\xa1\x0f\x7d\x48\x71\x00\x61\xdb\xd7\xf9\x32\xae\x05\x91\xaa\xfd\x4b\xc0\xc4\xa0\x5a\x0a\x68\x72\x62\xb7\x30\xb7\x7f\xab\x74\xf0\xc0\x66\xe9\xe0\x9e\x9d\xc2\x5c\xa5\xeb\x55\x3d\x1d\x9d\xaa\x95\x28\x7f\x7e\x07\x2a\xc0\x57\x6a\x7b\x9b\xc6\x28\xbd\x73\x03\xfc\xf4\x30\xd7\x04\xac\x61\x9d\x9e\x1c\x9d\x55\x18\x33\x79\xd3\x15\xcc\x07\x29\x54\x02\xff\x62\x96\x15\x38\x60\xb5\x25\x3e\xd9\x1d\x81\x67\x3a\xdb\xa5\x60\xf3\xde\x58\x77\xf1\xee\x78\xfb\xc6\x52\xad\x7d\xa7\x5e\x0e\x57\x03\x2f\xfa\x42\xd5\x18\xd3\x40\xf4\xfd\x88\xd3\xba\x88\xef\x9e\x49\x86\x24\xc6\x18\xbd\xbe\xbe\x8e\x3f\xff\xf3\x3f\x1f\x46\x2e\x7e\x11\xef\xd2\xfd\x22\xf3\x1f\xc6\x0a\x7a\x10\xfa\xde\x77\x7e\x94\x11\x00\x0c\x3f\x34\xc9\x4b\x23\x0b\xcf\x02\x1f\x57\x9c\xbc\x21\xcc\x30\x34\x3c\x88\x69\x36\x28\x9f\x14\x8f\x3e\xf8\xc1\x0f\xaa\x63\xc7\x8e\x61\x64\x64\xc4\xc6\xcf\xb5\x42\x10\x01\x48\x05\x3d\x10\xa9\xc0\xa0\x5a\x0c\x68\x7c\xb2\xe5\xcf\xce\x6d\x95\x0e\xec\xdb\x2e\x1e\x98\xde\x29\xcc\x8e\xb5\xfd\x89\x42\x48\x45\x65\xd8\xfd\x22\xa9\x21\x86\x5d\x9d\x40\xff\x6a\x0c\xdc\x7e\x03\xbf\x83\x01\xd2\x28\xc2\xfc\xe4\x30\x47\x16\xd3\xfb\x42\x38\xca\x34\x39\x1d\xd5\x6e\x2a\xe3\xf6\x8c\x05\xc4\xe4\x98\x46\x83\x90\xa0\xdb\xbe\x6e\xd5\xcb\xc1\xfa\x6a\xb5\xbb\x78\x77\xbc\x7d\xe7\xde\x58\xe7\x4e\xa3\x14\xde\x0f\x94\xae\x23\xba\x0c\xa9\x11\xef\xec\x6c\xc4\xcf\x4d\x22\x6a\xc5\xab\x23\xc9\x70\x84\x5b\x17\xc6\x18\xbd\xb5\xb5\x85\x6f\x7c\xe3\x1b\xc9\xc9\xf8\x8e\xb6\xe5\x6e\x90\xbc\xb9\xe2\x66\x29\xac\xac\x3c\xe1\x88\xf3\x20\xf9\xe5\xd1\x99\x55\xee\x20\x37\x4c\xbd\xfb\xca\x21\x64\x74\x8e\x9c\x0a\x0c\xd3\x21\xf3\x34\x79\x5e\x9c\x61\xfd\xb2\xc2\x1f\x04\x5d\x87\xa1\xd1\xe5\x97\x4a\xf7\xe2\x8b\x2f\xaa\x52\xa9\x04\x7e\x07\xaa\xbd\xa9\x2c\x5e\xca\x2d\x3a\x2c\x91\x64\x7f\x88\x31\xa6\x02\xa0\xe2\x6b\xaa\x56\xba\xde\xe4\x74\xb3\xb0\x67\xae\x5e\x3c\xb0\x77\xbb\x38\x3f\xb1\x5b\xd8\x53\xe9\xa8\xaa\xaf\xc9\x57\xc6\x36\x98\x05\x13\xbe\xae\x1a\x13\x93\x35\x86\x90\x73\x1b\x72\xbe\x23\xef\x97\x67\x62\x67\x3f\x1f\x70\xea\x82\x7f\x11\xa8\x09\xba\xe3\xe9\xce\x4e\x29\xac\xaf\x8f\x04\x2b\xcb\xb5\xf6\x9d\xe5\x5a\x67\x71\xb3\x1c\xac\xed\x16\xf5\x96\xa1\xbe\x61\x87\x7c\xb7\x96\x85\xfd\xc6\x48\x83\x4d\x7a\x6a\xad\xd1\x68\x34\xf0\xf5\xaf\x7f\xfd\x41\xac\x02\xee\x86\x89\x9b\xa7\x84\x7e\xde\xbc\x65\xfe\xef\xc7\x62\xcf\x2b\xf3\xfd\xf0\xa2\xaf\x5c\xd7\xaa\xca\xb0\x44\xe7\xa1\xb7\xf5\xe7\x04\xf0\xb8\x0f\x82\xac\x2e\x50\x18\xc6\x52\x19\x04\x70\xae\xb2\xf3\x90\x3a\xd3\x1a\x3a\x7d\xfa\xb4\x7a\xf8\xe1\x87\x31\x39\x39\x09\x22\xb2\x97\x14\x71\x00\xb1\x17\x47\xd9\x15\x99\x32\x11\xd9\xdf\x4a\xbc\x42\x53\x41\x34\x47\x52\x26\x50\xc5\xd7\x34\x3a\xd2\x55\xb5\xc9\x5d\x7f\xcf\x74\xa3\x30\xbb\xb7\x51\x9c\x9b\xde\x29\xcc\x56\x3b\x5e\xcd\x0f\x55\x31\xda\x70\xd6\x4f\x64\xe6\x46\xb2\xf8\x39\xc2\x0d\x3e\xaf\xd0\xbf\xe7\x44\x5a\x06\x72\x3c\xd3\xfb\x78\xad\x17\xbf\x67\x8d\xf4\x88\x32\x04\x84\x64\x82\xb6\xaf\x5b\x8d\x52\xb8\xb9\x36\xda\x5d\xb9\x37\xd6\x59\xbe\x3f\xda\x5d\xde\x2a\x07\xeb\xad\x82\xde\x0e\xc9\x34\x4d\x0c\x08\x14\x59\x17\xa9\x3f\x6e\x55\x18\x63\x3a\xf6\x3b\x12\x88\x15\x92\x20\x08\xf0\x47\x7f\xf4\x47\xfa\xc4\x89\x13\xea\xda\xb5\x6b\xef\xd7\x1a\x1d\x26\x6e\xd6\xf3\x2f\x2a\xdd\xb0\x79\x3c\x68\xfd\xf0\x0b\xc8\x23\xf1\xcb\x5a\x55\x19\x06\x1c\xf2\xb4\xfc\x83\x10\xea\xca\x7f\xd8\x8e\xce\xfd\x5c\xe5\x66\x95\x93\x65\x69\x0c\x62\x72\x16\xad\x00\x80\x23\x47\x8e\xa8\xf7\xde\x7b\x4f\x6e\x24\x83\x3d\x1d\x3b\x7e\xe7\xfb\x42\x8a\xcc\x12\x29\xa3\x07\x2a\x15\xee\x07\x83\xb2\x02\xca\x7e\x48\xa3\xa3\x1d\xaf\x56\x6b\xf9\x13\x13\xbb\xfe\xd4\x54\xd3\xdf\x33\xd5\x2c\x4c\x8d\xb5\xbd\x5a\x39\x9e\x27\xf1\x0c\x29\x32\x50\x00\xf5\x19\x0c\xdc\x58\x01\x1b\xee\x24\x46\x01\x90\x35\xeb\xe9\x9c\xf7\xb4\xcb\xa3\x20\xe8\x90\x8c\xee\x7a\xa6\xb3\x5b\xd0\x8d\x9d\x62\xd8\xd8\xa8\x04\xeb\xf7\x2b\xdd\xb5\x8d\x4a\x77\x6d\x6b\x24\x58\x6f\x16\x74\x23\x54\x66\xc7\xc0\xb4\x10\x75\x7e\x6b\x3d\xb4\xd8\x33\x5f\x09\x69\x31\xa0\xe0\xfb\x2e\xec\x90\x04\xf6\x97\xed\xc3\x18\xd4\xa6\xdc\x65\x59\xd2\x2e\xbf\x41\xb2\x9f\xd5\x01\x5d\x74\x0c\xea\xdc\x79\xe5\x70\x97\xd5\x97\xf2\xe8\xcb\xeb\x0b\x79\xfd\xad\xaf\x4c\x6e\x71\xc8\x88\x83\x50\xc7\x55\xa1\xf7\x63\xba\x0d\x8a\x3f\x0c\xd3\xb3\xe8\x71\xe5\x33\xac\x1b\x26\xaf\xcc\x38\x4f\x3d\xf5\x94\x3a\x73\xe6\x0c\xdf\xe5\xa9\xd0\xb3\x42\xf8\xc5\xcb\x29\x20\x41\x6c\x99\xf0\xe1\x4d\xfc\x1c\xcd\x9b\x98\x64\xfe\xa4\x48\x40\x91\x0c\x4a\x85\x90\xca\xa5\x40\x95\x47\x3b\x5e\x6d\xb4\xe3\x55\xab\x6d\xaf\x56\x6d\x7b\xb5\xb1\xb6\x57\x2d\x45\x77\xa2\x14\x8b\x21\x15\xfd\x50\x15\xd9\xfc\x89\x8a\xc1\x42\x11\x00\x8a\x87\x42\x06\xd0\x16\x20\x0c\xa0\xed\xbd\x2b\x81\xa7\x3b\x5d\x65\x82\xc0\x33\x9d\x96\xaf\x5b\xcd\xa2\x6e\xee\x14\xc3\xc6\x4e\x31\x6c\xec\x94\xc2\x7a\xa3\x18\xd6\x1b\xa5\xb0\xd1\xf2\x75\x33\x54\xa6\x63\x08\x6d\xc3\x41\x00\x09\x08\xf0\xb9\x89\x24\x1c\xbd\x95\x10\x6b\x59\x70\x90\x48\x36\x6b\xd9\xdf\xd5\xd5\x55\xbc\xfa\xea\xab\xb8\x7e\xfd\x7a\x1e\x60\xd8\x67\xeb\x86\x95\x8d\x41\xd6\x76\x9e\x7b\x3f\x69\x78\x5a\xee\x06\x29\x3a\x1e\xef\x41\xca\xce\x2a\x47\xe6\xe5\xa2\x43\x01\xfd\x43\x95\x61\x4d\xa9\xcc\x0c\x87\x20\xfc\x81\x4c\x22\x47\xb9\x83\x00\x6c\x50\x43\x0d\x02\xa0\x41\x42\x33\xec\x2f\x4a\xa5\x92\x9a\x9d\x9d\xc5\xa1\x43\x87\x70\xf4\xe8\x51\x94\xcb\x65\x4e\x83\x05\x0f\xa0\x37\xa9\xca\x2d\x92\x64\x8e\x24\x7e\xef\xfb\x13\xe1\x51\x3a\x13\xe5\x45\xd1\x9d\xad\x3e\x19\x94\x08\xa4\x3c\x03\x5f\x69\xf2\x0b\x21\xf9\x85\x78\xa8\xa3\x0c\x29\xa5\x49\x29\x03\xe5\x19\xf2\x01\x40\xc7\x40\x11\xfd\x9a\x20\xf0\x4c\xd0\xf1\x4c\x27\x54\x26\x08\xc9\x04\xa1\x42\x60\x60\x02\x43\x08\x0d\xa1\x63\xac\x35\x40\x88\xae\xa1\x40\xf2\x2b\xff\x5a\x0e\xbf\x20\x06\x09\xbe\x9b\x33\xf3\x2e\xdc\xc5\xc5\x45\xfc\xf5\x5f\xff\xb5\x2e\x95\x4a\xaa\xdd\x6e\x67\xc9\x5e\x56\x1b\x66\x85\x4b\x97\x27\xbf\xc3\x5a\xc5\x0f\x62\x4d\x0f\x92\x41\x17\x6d\xc3\xd0\x3c\xa8\xcc\x61\xf2\xe1\xfe\x29\xba\x5c\x73\x1c\x59\x95\x18\xe4\x06\x75\xfc\x3c\x20\x79\x10\x4b\xe0\xff\x0b\x37\x0c\xd8\x00\xe9\x7a\xf1\xf7\xbc\xbc\x52\xef\xcf\x3d\xf7\x9c\xda\xbb\x77\x2f\xc6\xc6\xc6\x64\xde\xca\xfe\x09\x6b\x24\xd9\x74\x86\x1e\x40\xf8\xb1\x5f\x02\x18\x19\x71\x6c\x3e\x8a\xbd\x2b\x56\x16\xe2\xfc\xfb\xbf\x7f\x49\x77\xda\x64\xf3\x14\x98\x15\x10\xff\x26\x43\x09\xb6\x14\x9a\x00\x88\xf4\x63\xef\xce\xbb\x6e\x4d\xef\x5a\x4a\x0d\x00\x77\xee\xdc\xc1\xfa\xfa\x3a\xae\x5c\xb9\x82\x46\xa3\x31\xa8\x43\xb8\xfc\xb2\x3a\x20\x1c\x69\xb2\xc2\xb3\xd2\xc0\xe1\x37\x48\x73\x5b\xbf\x07\xa1\x7d\x90\xf5\x33\x4c\x5c\x17\xcd\x79\x75\xc8\xc3\x83\xd4\xce\xd1\x61\x32\x1e\xc6\xec\xe1\x79\x0d\x63\xb5\xb8\xe2\x66\xc5\xcb\x4a\xc3\xe9\x18\xa6\xbc\x61\xf2\xc9\x8a\x97\x95\xef\xb0\xe5\xea\x6a\xb5\xaa\x2a\x95\x0a\xce\x9d\x3b\x87\x5a\xad\x86\xf1\xf1\xf1\xf8\xcc\x0a\x63\xcb\x4f\x81\x09\x1f\xda\xb0\xa1\x4e\xca\x4a\xb1\x61\xfc\xd9\x11\x5f\xb1\x3c\x11\xc7\x47\x0c\x26\xb6\x7c\x4b\x3f\x88\xdd\x35\xcb\x97\x3a\x91\x9e\x6f\x08\xb8\x9f\x03\x14\xe4\x70\x23\x17\x28\x00\xe0\xf6\xed\xdb\x58\x5d\x5d\xc5\xf5\xeb\xd7\xb1\xbe\xbe\x9e\xd5\xb1\xe0\x78\x76\xb5\xc7\x20\x39\x1c\xa6\xa3\x3d\x68\xfa\xbc\x34\xb9\xb2\x21\xc2\x86\xa1\xdd\xba\x61\x94\xdb\x83\x5a\x25\xc8\x8a\x93\x37\xc7\x31\xa8\xf0\x3c\x62\x86\xb1\x38\x86\xd1\x0a\x59\x15\x73\xa5\x97\xb4\xe5\xa1\x6d\x56\xdc\x61\xe8\x02\xf2\x99\x9a\x15\x97\xc7\x4f\xd1\xb5\x77\xef\x5e\x75\xef\xde\x3d\xfd\xe9\x4f\x7f\x5a\x95\x4a\x25\x4c\x4e\x4e\x26\xf1\x25\xa0\xf0\x15\x1b\xeb\x27\xff\x18\xd0\xa4\x7e\x81\x04\x24\x92\x77\xeb\x67\x41\xc3\x4e\x3a\xf2\x67\x06\x18\x96\x76\xd7\x5f\x10\x87\x07\xb1\x05\x23\x01\x22\x05\x44\xcc\x0f\x9b\x9b\x9b\xf8\xc6\x37\xbe\x91\xf0\x41\xf0\xef\x41\x65\xc6\xe5\xb2\x64\x80\x87\xf1\xf0\xf7\xab\xf5\x91\x13\x9e\x55\x17\x17\x1d\x83\xea\xf4\xa0\xf4\x65\x19\x07\x2e\x37\x94\x21\x91\xb7\x1c\x2b\x33\xc9\xab\x04\x0f\xcf\x42\x6b\x17\x01\xc3\xa0\xb6\xcc\x4b\xd2\x32\x48\x88\x86\x05\x80\x2c\x9a\x90\xf1\x2e\xf3\xc9\xe3\x43\x5e\x63\xa4\xd2\x94\xcb\x65\xcc\xcc\xcc\x60\x64\x64\x04\x8f\x3d\xf6\x18\x88\x08\x53\x53\x53\xfc\x73\xfa\xc4\x3a\xb0\x96\x02\x90\x0c\x37\x94\xc8\xb7\x2f\x5c\xc4\xeb\xa3\x43\x74\x70\x49\xb3\x8e\x01\x26\x79\xe7\xab\x1b\xdc\x9f\xff\xda\x3c\x8d\x31\x68\xb7\xdb\xd8\xd9\xd9\xc1\xd6\xd6\x16\xbe\xfb\xdd\xef\x6a\x00\x60\xe7\x5f\x0c\xa3\x44\x86\xd5\xe8\xc3\x58\x08\x32\x9f\xbc\x76\xcb\x2a\x7b\x18\x39\x1c\xc6\x5a\x78\x90\x3a\xe6\xd5\x77\x90\xe2\x1c\x04\x2e\x43\x01\x62\xd6\x72\x2c\x44\x22\xee\x06\x15\xca\x89\x73\xb9\xbc\xca\x0e\x13\x9e\x15\xcf\x55\xee\xb0\x65\x0c\xeb\x2f\xcb\xb7\x2e\x8f\x67\x83\x78\x32\x48\xa0\x01\x00\xc7\x8e\x1d\x53\xf6\x1b\x8b\xcf\x7e\xf6\xb3\xca\xf7\x7d\xbb\xf5\x3d\xb1\x48\xc4\x01\x42\xd2\x8a\x48\xc5\x61\xf1\x24\x08\x71\x20\x48\x39\xee\xcf\xf2\x76\x82\x4c\x18\x86\xd8\xd9\xd9\x01\x00\xb9\x19\x4b\xd6\x3d\x4f\x68\xb3\x5c\x9e\xa2\x1b\xd4\x21\xb3\x64\xf6\x41\xf2\x1e\xb6\xfc\x2c\x1a\xb2\xea\x33\xa8\x93\xe3\x01\xe2\x0c\x02\x85\xbc\xf8\x59\xf4\x25\xcf\x83\xf6\x71\xf0\x84\x60\xf1\x06\x55\x96\xc7\x7d\x10\x8d\x30\x08\xed\x78\x39\xae\x0a\xc9\xb8\x92\x0e\x19\x96\xd5\xf8\xae\x7c\xb2\x68\xcb\x2a\x53\xe6\x9f\x15\x37\x4f\xcb\xe5\xc6\x3d\x79\xf2\xa4\x7a\xf3\xcd\x37\x93\xdf\x17\x5e\x78\x21\x89\xeb\x79\x1e\x0a\x85\x82\x83\xa4\x1e\x3d\x72\x52\x54\x00\x89\xab\x1e\xa9\xb8\xed\x76\x3b\xe5\xf7\xe5\x2f\x7f\x59\x9f\x3c\x79\x52\x01\xc0\x9b\x6f\xbe\x39\x48\x6b\xe6\xc9\x59\x5e\x7b\x0d\xab\x29\xdf\x6f\xd9\xd2\xe5\x81\x7d\x5e\xdc\x5f\x34\x9d\x79\x32\xe3\xa2\x6f\x10\x5f\x07\xf9\x0f\xa4\x53\x31\x4f\xfe\x2b\xfd\xb2\xfc\xa5\x9f\x7c\x1e\x94\xe7\xb0\xe5\x0e\x2a\x33\x2f\x0f\xe9\xb2\xca\x95\x74\x49\x1a\xf3\xe8\x76\xc5\x75\xd1\x91\xc7\xb3\x61\xe8\x1a\x94\x2e\x15\x7e\xe6\xcc\x19\xf5\xff\xd6\x6e\x6d\xb7\x91\xc3\x30\xd0\x70\x39\x5b\xca\xd6\xe1\xfe\x4b\x08\xf2\xe5\x80\x3b\x99\x17\x7d\x39\x01\x81\x25\xf1\x35\x22\x29\x4a\x5e\x23\xf7\xdf\x3d\xbe\x69\xd7\x75\x9d\xd7\x75\x9d\xd8\xbf\xc7\xef\xf7\xfb\x43\xcf\xd4\xf7\x7a\xbd\x9a\xd8\xab\xb5\x37\xf1\x65\x6b\xc4\xd6\xc6\xa0\xc5\xc2\x64\x52\x0e\x2a\xde\x64\x77\x8b\x49\xf9\xe3\xaf\xf5\x6e\x70\xeb\x09\x22\xec\x8a\x48\x72\x5a\x6a\x2b\xb0\x06\xc7\x96\xaf\x4d\x60\xd6\xdc\x06\x77\xf4\xd6\xce\xbf\xe0\x70\xe3\xc4\xbb\x29\x96\x8d\x4e\x67\x07\xff\x98\xdc\x93\x42\xa2\x78\xd3\x66\x4b\xf1\x53\x76\xd1\xa6\xf3\x4d\xf2\x27\xeb\x6f\x8a\x92\xc2\xd8\xe6\x81\xc5\x7f\x7f\xa2\x4b\xaf\x25\xc7\xe0\x53\xce\x56\xef\x60\x0c\x5c\xfb\x3e\x87\x78\x1a\x1e\xe4\xbd\x6d\xa0\x8c\xe2\x41\x3a\x1b\x2b\xde\x2f\x82\x8b\xbd\x0e\xdd\xf2\xed\xe6\xde\x16\x0f\xf7\x3e\xcc\x9a\xba\x0a\xe3\x7a\xd5\xd5\x79\xda\x9f\x34\xb6\x7e\x26\xcf\xe6\x11\xbb\xbb\x3a\x27\xfd\x8a\xff\x80\xfe\x94\x55\xf9\x89\xb2\x4d\xde\x3b\x59\xb7\x87\x0e\xc3\x3b\x6d\xb5\xaf\xe2\xc9\xf7\x9b\x57\xc3\x8f\xc5\xb1\x96\x92\xb5\xe5\x6b\x37\xe5\xe6\x99\x4e\x07\x85\xa1\xad\xd4\x8a\xde\xfa\x64\xa3\xfb\x89\x8d\x16\xff\x66\x4e\x6d\x28\x67\xef\x34\x7f\x48\x4f\x7a\xf0\xa9\xe2\xbc\x89\x3f\xb3\xed\x6c\xfe\xcf\xa7\xb2\xad\xfc\xc6\x64\x9e\xd8\x6c\xe2\xc3\x70\xc9\x67\x4a\x02\x9c\x63\xca\x53\x70\x99\x7e\xa6\x23\xe9\xdd\xc8\x61\x6b\x75\xa4\xe0\x6d\xf1\x3b\x9b\x29\x60\xad\x4d\xe4\x53\xf8\x13\x4d\xd9\xc4\x79\x25\xc3\xf8\x9c\xad\x8d\xcf\xd4\x9c\xd3\xe9\xfc\x99\x74\xaa\xf5\x3b\xfb\xcd\x06\x4c\x39\x9d\xda\x13\xbf\x32\x79\xa7\xd3\xd9\x3e\x71\xd0\x24\x98\x72\xcc\xc6\xb8\x03\xd5\xcc\x39\xfa\x46\x47\xda\x00\x69\x9d\xad\x9e\x39\x9f\xf0\x6e\x74\x6d\xe7\x53\x7c\x5a\x3f\xb5\x05\x80\xe9\x74\x36\x9e\xf8\x48\xe9\x4a\xed\xaf\xd7\xb1\x29\xf8\x0c\xcb\x93\xf9\xa6\x80\xa4\xf1\xb6\x78\xfd\xac\x47\xfd\x93\xdb\x7c\x62\x53\xbf\x4f\xb0\xe6\x78\xd3\x67\xd3\x03\xf8\x95\xee\xed\xa7\xa5\x13\x74\x28\x4c\x6a\xfd\x4d\x6b\x3f\xb1\x6e\x3e\xbf\x3a\x1b\x4f\xe8\xad\x5c\xf3\xdb\xc2\x11\xc6\xac\x3f\xc7\x2a\x46\x8a\xb6\xe5\x49\xf8\x36\x78\x1b\x5d\xb3\xb9\xdf\x48\x58\x8e\x3a\xfd\x0a\x5f\x7a\x2a\x5e\x85\x13\xe7\x18\xc6\x5f\xcc\xec\x84\xc1\x0a\x8d\x74\xd6\x67\x4f\xec\x33\x7d\x4c\x3f\xb3\xcf\x6c\x38\x0c\x4a\x6f\xc2\x8b\x63\xe6\x1f\xa5\x93\xd1\x18\x9d\xad\x29\xe9\x4e\x18\x98\xdf\xd4\x9c\xb3\xe1\x70\xaa\x31\xd3\xcd\x70\x23\xaf\xc2\x95\x64\x5b\xbb\xce\xe6\xd3\x9c\x48\x31\x49\x34\xd7\x9a\x7c\x4e\x6b\x4b\xfb\x96\xe9\x70\xcf\x73\x76\x66\x65\x51\x95\x1a\x8d\x30\x1a\xd2\x13\x0d\xc7\xec\x97\x63\x85\x21\xdd\x4a\x70\x1d\xce\x91\xcd\x0d\x67\xd2\xb6\xc1\x9f\x76\xdc\xd7\x1b\xe5\x7b\xfc\xf5\xfc\x20\x3c\xd8\xbe\x0e\x7e\x62\xcc\x93\x45\xf9\xf8\x24\x32\xc8\x1b\x93\x8b\xf0\xe3\x17\x0b\xc4\xc6\xc6\x4e\x56\x8d\x9b\xbc\x64\x7c\x4c\x2e\xdd\xc0\x99\x1d\xe5\xcb\x49\x53\xf9\x88\xf3\xcd\x4d\x8f\xc5\x00\x63\x8d\x78\xa6\x3f\x9b\xaf\x33\x1f\x3a\x94\x93\xb1\x61\x61\x41\x10\x08\x94\x05\xa4\x09\x1c\xf2\xba\x82\xa6\x36\x10\xca\xb8\xe4\x50\x89\x3c\xf5\xb3\x8d\x3f\xfb\x6e\x73\x23\x2f\x4b\x6c\x0c\x94\xf2\xe1\xe4\x4d\x8d\xf9\x0a\xaf\xac\xaa\xb0\xa8\xb5\x4c\x3e\xe6\x7b\xbc\x1a\xa3\x0c\xf2\x3b\xbb\x4a\xce\xd9\xc2\x22\x97\x6c\xa6\xe6\x0a\x45\x1b\x87\x69\x37\x15\xa9\x99\x1b\x28\xe3\x72\x66\xb3\xf1\x55\xb1\x6c\x0f\xfb\x1f\x3b\x4a\x20\x25\x0e\xf2\xe1\xfc\x0c\x9c\x3b\x61\xd2\xe9\xd3\x16\x0a\x87\xd3\x55\xce\xa9\x87\xf5\xdd\xa6\xc1\x93\x01\x8b\xe8\xec\xe3\x09\xc2\x30\x31\x19\xb4\xa9\x6e\x51\xd8\x58\x31\x72\xa7\x35\x62\x67\x63\xb6\x01\x58\x71\x52\x27\x2e\x26\x75\x5a\x4b\xb3\x39\xdd\xda\x1d\x0f\xe6\x0c\xcb\x69\x87\x55\x15\xe6\x26\xd7\xd4\xfe\x61\xb6\x19\x7e\x16\x0b\xb7\xbf\x14\x6f\x8a\x05\x62\xfe\xf0\xd7\x37\x4f\x7a\x32\x08\xc2\x5c\x11\x79\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xcf\x33\xaa\x99\x86\xfc\x00\x00") -func web_uiStaticMstile150x150PngBytes() ([]byte, error) { +func web_uiV1StaticMstile150x150PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticMstile150x150Png, - "web_ui/static/mstile-150x150.png", + _web_uiV1StaticMstile150x150Png, + "web_ui/v1/static/mstile-150x150.png", ) } -func web_uiStaticMstile150x150Png() (*asset, error) { - bytes, err := web_uiStaticMstile150x150PngBytes() +func web_uiV1StaticMstile150x150Png() (*asset, error) { + bytes, err := web_uiV1StaticMstile150x150PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/mstile-150x150.png", size: 64646, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/mstile-150x150.png", size: 64646, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticMstile310x150Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x2a\x40\xd5\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x02\x2e\x00\x00\x01\x0e\x08\x06\x00\x00\x00\xae\x0e\x9c\x74\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xc4\xbd\xe9\x93\x25\x47\x75\x37\xfc\xcb\xba\x75\x97\xde\x7b\x7a\x7a\x7a\x46\xb3\x6b\x24\x84\x18\x09\x10\x20\x84\x8c\x81\x87\xc5\x38\xfc\x86\x03\xfc\x12\xc6\x38\xde\xf0\x27\xff\x61\xf6\x27\x47\xd8\x01\x26\xde\xb0\x43\xc6\x5b\x18\xb0\x10\x18\xa4\x07\x61\xd0\xc2\x68\xa6\x35\x9a\x7d\xed\xe9\xe9\xe9\xf5\xae\x99\xef\x87\x5b\x59\x75\xea\xdc\x73\x32\xf3\x8e\xf0\xf3\xe6\x44\xcf\xad\xca\x3a\x79\xf2\x64\xe6\xc9\x73\x7e\xb9\x54\x96\xc1\xff\xd9\x90\x01\xb0\xff\x3f\xa4\xcf\x00\xd8\x66\xb3\x99\xfd\xe5\x5f\xfe\xa5\xbf\xcf\x00\xe4\x00\x5a\xc5\x6f\x07\xc0\x6c\x7b\x90\xcd\x9f\xd9\xec\x3c\xfb\xd2\xf5\x85\xff\x67\x65\xaf\xf9\x87\x19\x4c\xcb\x39\x00\x66\xcc\xc8\x00\x80\x03\x9c\x71\x80\x33\x80\x29\x1f\xc1\x39\x07\x03\x03\x67\xc6\x34\x3e\x81\xbf\x35\x05\x1f\x07\x96\xb6\xba\xad\x78\x17\xa9\x4c\xc1\xdd\x39\x07\x63\x8a\x9c\x5c\xc1\x9e\xe4\x0d\xce\x1b\x80\x29\x1f\x8e\xe3\x4d\x45\x2d\xde\xf7\x72\xb7\x7f\x6b\xa9\x77\xf1\x17\x67\xb6\x5f\xbd\x37\xdf\xbf\xe9\x0c\x76\x81\xda\xdf\x3e\xf9\xeb\x03\xe8\x16\xbf\x7d\x8c\xdb\x65\x58\xfc\x5a\x00\x78\xe3\x8d\x37\xec\xaf\x7e\xf5\x2b\x14\xf7\xa1\xb6\xcb\x08\x0d\x18\x1d\x7d\xc6\x7f\x25\xde\x3c\x9f\x0c\x72\x90\x64\xd2\xe4\x48\x91\x01\xc2\xbd\x16\xb8\xbc\x21\x99\x78\x39\xb4\x7a\x92\xca\x20\xd5\x13\xcd\x2b\xc6\x3b\x54\x6e\xce\x8f\x87\xd4\x36\x08\xc9\x1d\xab\x0f\xa9\x4c\x9a\x0e\xf1\x38\xca\x83\xd3\xa4\xe6\x19\xaa\x53\x9e\x8e\xf3\x4e\xd1\x3d\x5e\x6f\xd3\xe8\x35\xa5\x97\xfa\x47\xa8\x1f\x69\x7d\x68\x5a\xdd\xd3\xe2\x78\x9a\xff\xa3\xbc\x9f\x78\xe2\x89\xec\x1b\xdf\xf8\x46\xf9\xdc\x39\x97\x19\x63\x72\xe7\x5c\x0e\x20\x37\xc6\xe4\x00\x5a\x9d\x41\x36\x7b\xfa\x61\xfb\xf8\xf9\x3b\x73\x9f\x3f\xba\xdb\xfa\x46\x7b\xd0\xf8\x44\x06\xcc\x7a\xe6\xc4\x2d\x54\x11\x20\xb6\x9c\x05\x4a\xef\xdc\xd8\x3e\xbb\xe2\xc2\xc1\x75\x07\x0d\x77\x6d\xa7\x3d\xfc\xe1\xfa\xda\xc1\x3f\xfc\x76\x6d\xef\xda\x76\x7b\xb4\xeb\x32\xf4\x9d\x73\x43\x63\x4c\xdf\x39\x67\x8d\x31\xd4\xc6\xda\xe1\x70\x88\xbf\xfe\xeb\xbf\x8e\xf5\x83\x69\xf4\x19\x0a\x7d\xac\x5f\x4d\x63\xc7\x52\xfa\x79\xd0\x66\x34\x94\x87\xff\x53\xc1\xc5\x49\xc4\x90\x15\x69\xa5\xf4\x99\x10\xcf\xe3\xcc\xc2\xc2\x82\xf9\xf6\xb7\xbf\x8d\x66\xb3\xe9\x41\x4b\x06\xa0\x89\x71\x1d\xb4\x01\xb4\x33\x8b\xce\xda\x6e\xf3\xc4\xf3\x77\xe7\xfe\xd7\xda\x6e\xeb\xeb\x0d\x67\x96\x00\x03\x53\x2a\xa2\x83\x29\x01\x87\x47\x32\x63\xa0\x60\x0c\x00\x33\x8e\x35\x06\x65\x1a\x53\xa0\x96\xf1\xf3\xb1\xc2\xc2\x98\x0a\x54\xb8\x82\xb7\xa1\x80\xc3\x54\x69\xca\x7c\x4c\xa9\xf9\x06\x55\x9a\x4a\x8e\x3a\x6f\x63\x48\xe7\x00\xc6\x32\xc2\xc1\x71\xde\x05\x50\xea\xe5\x76\xff\xd6\x62\xff\xe2\x7f\x9f\xd8\x7d\xfd\xee\x42\xef\xba\x35\xd8\x81\xd1\x41\x8b\x73\xae\x0b\xa0\x5f\x74\xa4\x11\x18\x68\xf9\xf9\xcf\x7f\x6e\xdf\x79\xe7\x1d\x58\x6b\x49\x21\x4a\xd1\xe9\x9f\x6f\x57\xde\x09\x4a\xbc\x57\xfc\x59\xc6\x83\xd2\xf2\x78\xc3\xd2\x39\x72\x4d\x79\x79\x1d\xc9\x58\x5a\x2e\x07\xcf\x87\x76\x34\xc7\xd2\xf3\xce\x27\x95\x99\xd2\x18\xe1\x9a\xd6\x0d\xe7\x2d\xd5\x13\xaf\x4b\x40\xae\x53\x28\x69\x6d\x80\x9e\xb6\x0f\xad\x37\x4a\x4b\xeb\x96\x96\x85\xb7\x95\x83\x5c\x4f\x9e\x9e\xeb\x02\xe9\x25\xb5\x3e\x4d\x65\x93\xe4\xa7\xfc\x80\x7a\x9b\x49\xed\xc0\xdb\x92\xc6\x6b\x79\xf2\xfc\x79\x9b\x69\x6d\xc7\xeb\x90\xca\x4d\x79\xd3\x74\xbc\x1e\x52\xf4\x9a\xca\xc2\xc1\x19\xd7\x69\x9a\x86\xeb\x27\x95\xc5\x61\x92\x37\x2d\x37\x6f\x43\x5e\x4f\xd4\x26\xd3\x72\xd0\xf4\xbc\x9d\xa4\xfa\xe1\xf9\x69\x75\xef\xeb\xaf\x2c\xc3\x99\x33\x67\xcc\x57\xbf\xfa\x55\x34\x1a\x8d\xcc\x18\x53\x82\x16\x8c\x01\x4b\xcb\x18\xd3\x04\xd0\x5e\xd9\xcb\x0f\x9d\xbf\x33\xf7\xfc\xf9\x3b\xf3\xff\xf7\xea\x5e\xeb\x5b\xed\x61\xf6\x8c\x81\x99\xe1\x19\x4e\xd4\x92\xa9\xdf\x7a\xa1\xe9\x20\x14\xa8\x06\x95\xa6\x30\xd4\xc6\x20\x6f\x38\xb3\xd4\x19\x36\x9e\x5e\xea\x36\x4e\xcd\xf6\xf3\xcd\xbd\xf6\x68\xb7\x9b\xdb\x91\x35\x70\xc6\x98\x6a\xe0\x0a\x38\xe7\xc6\x5c\xb3\x2c\x73\xe7\xcf\x9f\x37\xbf\xfd\xed\x6f\x61\xc7\xc6\x96\xea\xbc\xff\xf5\x75\x4a\xdb\x85\xd7\x1f\x20\xb7\x1f\xef\xc3\x3e\x78\xbd\xa2\x3a\x23\xd9\x69\xde\x2e\x5c\xc7\x1c\xfb\xe5\xbc\xc1\xae\x0d\x00\x93\x23\x1c\xb4\x51\xc1\xff\x74\xe0\xf9\x84\x46\x4a\x92\x3c\xb5\xb8\xc3\x87\x0f\xe3\xab\x5f\xfd\x2a\x66\x66\x66\x28\x68\xc9\xc9\x6f\x0e\xa0\xb5\xd0\xcd\x97\x4f\x6f\xcd\x9c\x3f\xb2\xd3\xfa\x7c\x3e\x32\xab\x25\x20\x81\x07\x01\xa6\x04\x08\xa6\x98\x15\xa9\x66\x44\x0a\x65\x34\xd5\x5c\x46\xa9\x11\x35\x0d\x2f\x66\x65\x5c\x71\xed\x15\x18\x06\x05\xee\x00\xef\x1a\x15\x00\xf1\x53\x33\x0e\xce\x15\x79\x94\x20\xa4\xe2\x5d\x02\x9c\x42\x08\x53\xb2\x32\x44\x9e\x82\xb7\x71\xe8\x36\xed\xee\xed\x85\xfe\xe5\xb7\x9f\xd8\x7d\xf3\xce\x62\xef\xfa\x28\x0b\xce\xb4\x74\x9d\x73\xdd\x02\xb0\xd0\xbf\x12\xb4\xfc\xec\x67\x3f\xb3\x97\x2e\x5d\xc2\x70\x38\x8c\x8d\xa2\xd4\x36\x43\x78\x04\x96\xaa\x1b\x5a\x1a\x8e\xf2\xb5\x91\x06\xbf\x96\x46\xd7\xa1\x91\x73\x68\x04\x23\xc9\x96\xd2\xdf\x24\x99\x34\xde\x5a\xda\x94\x3a\x8a\x8d\xa2\xa4\x7a\xd2\x46\x4e\xa1\xf6\xd2\xf2\x4e\x7d\x2e\xb5\x23\xcf\x3b\x64\x2b\x34\xf9\x52\x74\x41\xa3\xd1\xf2\xe3\xbc\x43\x75\x99\xd2\x46\x3c\x2f\xa9\x7d\x42\xf5\xca\xdb\x98\xe7\xef\xef\x53\xfb\x5f\x4a\x7f\xf1\xbc\xa5\xfe\xcd\xcb\x12\xcb\x23\xf4\x7c\x82\xc7\x53\x4f\x3d\x95\xbd\xf4\xd2\x4b\x68\xb7\xdb\x59\x01\x02\x4a\xd0\x02\x32\xf3\xbe\xb2\xd7\x5c\xfe\xe8\xbd\xd9\x4f\x3f\xf5\xa0\xf3\xc7\x4b\x07\xf9\xcb\xb9\x35\x6b\x80\xc9\xfd\x44\x78\x69\xa2\x01\x11\x9a\x99\x9a\xbd\xf7\x24\x46\x86\x0a\x40\x39\x50\x75\x06\x79\xe6\xdc\xf2\x7c\x2f\xff\xfc\x99\x87\x26\x37\xc0\xff\xfb\xee\xd1\xbd\x37\xef\xcf\x0f\x36\x86\x0d\x97\x61\x3c\xc3\xed\xd3\x0c\xfd\xf5\xec\xec\xac\xa4\x33\x92\x3e\xc4\xf4\x15\xc2\x33\x1f\x34\x3d\xd1\xec\xb4\xa4\x47\x5a\x5e\x92\xec\x1a\x3f\x00\xd5\x8c\x0b\x45\x61\x34\xc4\xee\x35\x01\x1e\x77\x66\x85\xe6\xa3\xcd\xa4\xf0\x11\x41\x34\xbf\xa5\xa5\x25\xf3\xc2\x0b\x2f\x64\x05\x4a\x35\xc6\x98\x86\x73\xae\x89\x31\xca\x6e\x03\x68\x37\x47\x66\xfe\xe4\xa3\xf6\x47\x9e\xb9\x3f\xfb\xb5\xe5\x83\xfc\xc5\x86\xcb\x66\x6b\x0a\x68\x4a\x57\x5f\x20\x5f\x02\x6a\xca\xb8\xfa\x02\x0c\x57\xe0\x22\xf3\xea\x99\x31\x05\x60\xa9\x66\x6a\x8a\x1c\xca\xfc\x4a\x5d\xf7\x60\xc3\x03\x10\x72\x6f\x2a\xe6\xa4\x1f\xb9\x12\x68\x69\xc1\xc1\xa1\x9b\xdb\xdd\xdb\x8b\xfd\xcb\x17\x8e\xee\xfd\xf7\x8d\xe5\xde\xfb\xbd\xdc\x6d\x39\xb8\x6d\x63\x8c\x08\x5a\x00\x44\x41\xcb\xfa\xfa\x3a\x7a\xbd\x1e\x45\xde\xd3\x82\x5d\x8a\xc2\xb9\x2e\xc4\x74\x8b\x8e\x90\x25\x5a\x6d\xa4\xc6\x79\xf3\xd1\xb6\x43\x5c\x1e\x3e\xa2\xa6\x71\x12\x3f\x30\x19\xa6\x2d\x2b\x1d\x41\xa7\xd6\x8b\xbf\xd6\xea\x87\x8e\xcc\x2c\x8b\x0b\xe5\x41\x69\x42\x3c\x62\xd7\x26\x91\x8e\x8f\xe2\x24\xd9\x38\x2f\x69\x04\xa8\xf1\x8c\xd5\x91\x25\x34\xd2\xa8\x56\xd3\x25\xb0\x74\x92\x8d\xe3\xf9\x4b\xba\xaa\xc9\xc4\xcb\xaa\xa5\x91\x78\x83\x5c\x5b\x4c\x96\xc1\xb0\x3f\x4f\x1f\xaa\x43\x69\x26\x44\x02\xf6\x5c\x5e\xce\x5f\xaa\x5b\xe9\x19\xe7\xe1\x00\xe0\x99\x67\x9e\xc9\x3e\xf5\xa9\x4f\x61\x69\x69\xc9\x83\x96\x1c\x63\xff\x57\x03\x2d\xcb\xfb\xf9\xf2\x33\xf7\x67\x3f\x7d\x6e\x73\xe6\x8f\x97\x0f\xf2\xcf\xe7\xd6\x1c\x35\x30\x8d\xc9\x01\x28\xbb\x37\x93\x71\xa5\x90\xae\xf8\xaf\x1a\xa5\x4e\x06\x62\xc4\x0d\x4c\xbb\x39\x32\xab\x33\x83\xc6\x4a\x6b\x98\x1d\x74\x9b\xa3\x47\x07\x4d\xdb\xb5\xe3\xde\x4e\x6d\x69\xd9\x3e\x6b\x6b\x6b\xee\xe6\xcd\x9b\x18\x0c\x06\xb4\x4e\x28\x0d\xad\xf7\x14\x7b\x21\xcd\xb8\x68\xb6\x95\xeb\x85\x64\x53\xa5\x19\x1f\x9a\x4f\xc8\x4e\x4c\xf4\x5d\x0f\x5c\xa4\x0e\x3c\x4d\xa0\xc2\x84\x3a\xec\x34\x41\xe2\x23\x19\xcf\x60\x23\x1c\x39\x72\x24\xfb\xcc\x67\x3e\x83\xa5\xa5\x25\x63\x8c\xf1\xa3\xa4\xa6\x31\xa6\x61\x8c\x69\x3b\xe7\xda\xc6\x98\x99\xb5\xdd\xd6\x13\x1f\xb9\x3f\xfb\x7b\xc7\xb7\xdb\x5f\x6a\x8f\xb2\x27\x4c\x0d\x76\xb8\x6a\x46\x64\x02\x62\x8f\x55\xad\x7c\x26\x20\x6e\x4c\xa4\x40\xb1\xb6\xa9\xa5\x21\x73\x36\xae\x50\xe5\xa2\xa4\x06\x63\x68\xee\x61\x3f\x9d\xf1\xa9\xc0\x8e\x2b\x2b\x86\x0b\xe3\xc8\x55\x37\xb7\xbb\x77\x16\xfa\x57\x2e\xad\xed\xbf\x75\xfd\x50\xef\xd2\x41\xd3\x3d\xc4\x78\x79\x68\xa7\x00\x2e\xfb\x00\xf6\x9d\x73\xfb\x18\x03\x96\x2e\xea\x80\x65\x58\xac\xbb\x5a\x60\xbc\x3c\x74\xe9\xd2\x25\x74\xbb\x5d\x6a\xc4\x63\x8a\xab\x85\x10\x38\x08\x19\x2b\x4f\x23\x8d\x18\x78\x87\x0e\xe9\x3d\x77\x8c\x94\xbf\x94\x9f\xc6\x8b\x3a\x02\xca\x9b\x5e\x73\xf0\x22\xc9\x43\xcb\x41\x69\xb9\xc3\x49\xed\x7f\x5a\x3c\x37\xfa\x12\xf0\xe2\xf2\x68\xf4\x5a\x99\x35\xb0\xc6\xfb\x77\xec\x9a\xfe\x4a\xfa\xc5\x65\xa2\xfc\x79\x5d\xf1\xf6\xe2\x6d\x26\x39\x4c\x9f\x8e\xe6\xc1\x65\xa5\xf7\x9c\x87\x04\xe8\xb5\x32\xc7\x06\x00\x5c\x26\x09\x7c\x48\xf4\x5e\x6e\xaf\x47\x14\x90\x49\xf9\xd3\x76\xd2\xf4\x3a\xd6\x56\x92\xbc\xbc\xfd\xa9\x3c\x94\x9e\xeb\x0b\x7f\x46\xdb\xbd\xcc\xe3\xdc\xb9\x73\xe6\xc9\x27\x9f\xcc\x00\xf8\xe5\xa1\x86\x73\xce\xef\x67\x69\x02\xe8\x2c\x74\x1b\x8b\x1f\xb9\x3f\xfb\xc9\x73\x0f\x66\xfe\xaf\x95\x83\xe6\xcb\x4d\x6b\x8e\x19\x18\x3e\xd3\x50\x97\x8e\x05\xa9\x43\x92\xff\x22\x61\x6c\xcf\x0d\x80\x6c\x0c\x5e\x56\x66\x86\x8d\x45\x03\xb3\xb3\xdb\x1e\x6d\xee\xb7\x6c\xb7\x78\xec\x07\x8a\x65\xf9\x16\x17\x17\xb1\xb0\xb0\xe0\x1e\x3c\x78\x80\x5e\xaf\x27\xd9\x36\x2f\x44\x48\x27\x78\x09\x2d\xe4\x34\xdc\xee\x72\x3a\x89\x3f\x6f\x6b\x2a\x57\xc8\x4e\x48\xed\xea\xa4\x46\x89\x4d\x11\x49\x71\xd2\x74\xa2\xc4\x2b\xc6\x47\x7b\xc6\xa7\x9d\x92\x78\xae\xad\xad\x65\x9f\xfa\xd4\xa7\x70\xea\xd4\xa9\xcc\x39\x07\xe7\x5c\x86\xf1\x2c\x4b\xe6\x9c\xf3\x9b\xb1\x5a\xf3\xbd\xc6\xe2\x89\xad\xf6\xb3\x4f\x6c\xb7\x5f\x6c\x0f\xb3\x93\xc6\x19\x3f\x3b\x03\x00\x70\x7e\xef\x49\xad\x39\x08\x60\x70\x44\x59\xa9\x7e\xba\xf1\x7f\xfe\x9f\x21\xf1\xc6\x98\xf1\x7e\x99\x22\x8d\x73\xb4\x75\x2a\xde\x06\x75\x86\x74\x69\xa8\xb6\x71\xb7\x90\xcf\x2f\x69\x19\xbf\xd1\xa5\x9e\xba\xe4\xd6\x6f\xb8\xee\xbd\xf9\xc1\x8d\xf7\x57\x0f\xde\xbe\xbe\xdc\xbb\xbc\xdf\x1c\x6d\xc2\x60\xd7\x39\xb7\x4b\x41\x0b\x80\x7d\x63\x8c\x07\x2d\x7e\x23\x2e\x9f\x69\xb1\x6f\xbc\xf1\x86\xbd\x70\xe1\x82\x07\x2d\x40\x78\x5a\x5a\x9a\xa2\x06\x26\xdb\x3c\xa4\x9f\xd2\x12\x41\x86\x49\x87\xa9\xe9\x6a\x16\x48\x13\x93\x59\xd3\x77\x1e\xa4\x8e\xa9\xd1\x48\x79\x6b\x41\x5a\xaa\x08\xc9\x94\xb1\xdf\x90\x2c\x12\xe8\xa0\xf2\xa4\xf4\x41\x4a\xaf\xe5\xc1\xcb\x90\x62\x67\x32\x85\xce\xe7\xc7\x79\xc7\xf4\x40\xe2\x6d\x21\xd7\xa5\x66\x17\x43\xfa\xc3\x69\x63\xed\x23\x5d\x87\xd2\xa6\x3c\x8f\xdd\x6b\xfa\xa3\xb5\x37\x2d\x77\x48\x27\x62\x6d\x17\x93\x37\x56\xff\xfc\x99\x64\x3b\x2c\x00\x3c\xf9\xe4\x93\xd9\xf1\xe3\xc7\xcb\x3c\xfc\x00\x96\x2c\x13\x75\x32\x8b\xce\xe9\x87\x9d\xa7\x9f\xdc\xec\x7c\x65\x65\xbf\xf9\x52\x73\x64\x8e\x01\xc8\x6a\x5e\xd8\xb9\x9a\xd7\xe5\x9e\x3c\x86\x06\x34\x04\xe7\x79\xfb\xc1\xb1\xff\x6b\x38\xb3\x38\xd7\x6b\xbc\x70\x72\xab\xfd\x95\x53\x5b\x9d\xf3\x0b\xbd\xc6\x32\xc6\xb3\x43\x2d\xe7\x5c\x0b\xac\x4e\x9f\x7c\xf2\xc9\x6c\x66\x66\x86\x72\xe5\x75\x32\x4d\x3f\x4b\x09\x7c\x89\x2a\xd4\x3f\x91\xf8\x5c\x8b\xab\xfd\xc6\xf6\xb8\x50\xe1\x62\x71\x9a\x20\xbc\x70\x8f\xc3\x47\x4a\x1f\x72\x36\x00\x80\xd5\xd5\x55\x9c\x3d\x7b\x36\x2b\xde\xc8\xc9\x00\x64\x04\xbc\xe4\xce\xb9\x56\xee\x4c\xe7\xd8\x76\xeb\xe4\xc9\xad\xf6\x67\xe6\x7b\x8d\x67\x32\x67\x66\xc7\x08\xa0\x62\x68\x28\x84\xf6\xbb\xc0\x0b\x00\x51\x9b\x97\x29\x22\xab\x59\xbf\xf2\x3f\x3f\x41\x42\xf8\x94\x8f\xc6\x97\xd5\x54\x4c\x79\x63\xea\xcc\xcb\xfb\x12\x7a\x16\x17\x94\xae\x12\x91\x62\xff\x02\xb4\x14\x33\x35\xc3\xcc\xf6\x37\xe6\x06\x37\x3e\x38\x7c\xf0\xee\xf5\x43\xdd\xcb\x7b\xed\xd1\x7d\x54\x4b\x43\xe2\xf2\x10\x08\x60\x21\xb3\x2c\xd6\x5a\x6b\xdf\x79\xe7\x1d\xfc\xfa\xd7\xbf\xf6\x1b\x71\x7d\xdb\xf8\xb6\xd0\x9c\x61\x08\x20\x73\x40\x22\x85\x18\x3f\x1e\x3f\x8d\x13\xe3\xcf\x62\xce\x41\x03\x69\x31\xe7\x9d\x92\x3f\x4f\xa3\x01\x43\x29\x70\xda\x14\xc7\x19\xca\x5b\xe2\x91\x3a\x38\xe1\xe9\x63\xce\x5e\xe3\x1d\x6b\x2b\x7a\xad\xc9\xad\x81\x25\xee\x88\x25\x9d\x91\x1c\x80\xa6\xe7\x92\x1e\x4b\x71\x21\xdd\x8d\x01\x6b\xce\x37\x24\xbf\x54\x3f\x50\x68\x24\x10\x28\x81\x16\x49\x7e\xcd\xee\x6b\x6d\x2f\x95\x4f\x93\x4d\xe2\x1d\x04\xda\xa7\x4e\x9d\xc2\xd1\xa3\x47\xa9\xec\x39\x99\x6d\x69\x01\x68\x1d\xd9\x6d\xad\x9d\xdd\xec\x7c\x6e\x65\xbf\xf9\x72\x73\x64\x8e\x1b\x98\x1c\x0e\xe5\xe4\x76\xb5\x1d\x80\x99\xef\x82\xc6\x87\xc9\xf9\x6d\x03\xc7\xe2\x4d\xf5\xa8\x7a\xa6\xf0\x6e\xc0\x2c\x2f\x76\xf3\x4f\x9f\x7e\xd8\xbe\xb7\xd3\x1e\x6d\x76\xf3\x83\x7e\xbf\x61\x4b\xfb\x8b\x7a\xbb\xd8\x73\xe7\xce\x61\x7f\x7f\x3f\xdb\xde\xde\x86\x10\x34\x1d\xd1\xf4\x5c\x0b\x5a\x7b\xa5\x0c\x56\x78\x88\xa5\x91\x06\x8e\x13\xa3\x06\x8d\x41\x28\x68\xa3\xb9\x94\x8e\x12\xe2\x23\xa1\x79\xde\x71\xa4\x86\xc8\x00\x64\x2b\x2b\x2b\xd9\x91\x23\x47\x50\xcc\x9c\x78\xc0\xe2\xff\xf2\x02\xb1\xb6\x96\x0e\xf2\x95\x93\x5b\xed\x4f\xae\xee\x37\x3f\xd1\x1c\x99\x35\x00\x85\x26\x1a\x06\xa9\x8b\x9b\x62\x59\x68\xac\xb1\x04\x69\x17\xc0\xa2\x36\x2b\xe3\x0a\x30\xe3\xca\xdb\x52\xc9\x6b\xca\xee\x9f\x3b\xd0\x79\x19\xc2\x1b\x70\xe3\x1d\xf0\x63\xa0\xe2\x45\x81\xef\x16\x44\x1e\xc2\x6b\xfc\xeb\x0a\xda\x02\xb4\x18\x37\x7c\x38\x3b\xbc\x73\x65\xe5\xe0\xdd\x6b\x87\xba\x17\xb7\xdb\xa3\xfb\x6e\x3c\xd3\xe2\x97\x84\x82\xa0\x05\x64\x44\x3a\x18\x0c\xec\xfa\xfa\x3a\x7e\xfe\xf3\x9f\x5b\x4b\x50\x8b\x10\x24\x44\xae\xb5\xb7\x94\x36\xa4\x9b\x9c\xa7\xc6\x9f\x3f\x8f\x01\x1a\x6d\x64\x99\xaa\xc3\x9c\xaf\xe4\xe8\xb4\xf4\x52\xe0\x8e\x23\x75\x74\x22\x95\x49\x92\x35\xe4\x38\x62\x20\x33\x24\x27\x35\xae\x5a\x9d\xf2\x3c\x42\xed\x19\xa3\x49\x69\x83\x10\x18\xe5\x32\xf3\xb2\x71\xde\xf4\x57\x02\x44\xb1\xfa\xe1\x3a\x6c\x59\x9c\x24\x8b\x94\x8e\x07\x89\x0f\xe7\xa1\x01\x30\x5a\x2e\x4e\xaf\xd5\xa9\xa6\x8f\x9a\xb3\x4a\xd1\xcd\x54\xa0\xad\xf5\x8d\xec\xd8\xb1\x63\x58\x5c\x5c\x04\x99\x71\xcf\xe8\x9b\x44\xce\xb9\x4e\x7b\x90\xcd\x3f\xb5\x31\x73\x7e\x75\xaf\xf9\x72\x7b\x98\x9d\xcc\x60\x5a\x0e\x28\x97\xde\xc7\x97\x93\x00\x04\x84\xc6\x48\xcf\x5c\x05\x46\xe8\xaf\x63\xe9\x2a\x7a\x3f\xcb\xee\x69\xc6\xde\xa0\x39\x32\xc7\x8e\xec\xb6\x5e\x3a\xfd\xb0\xfd\x99\x95\xfd\xe6\xaa\x31\xc6\xcf\xba\xe4\xc5\x9f\xf7\x6f\x78\xfe\xf9\xe7\xb3\xe7\x9e\x7b\x0e\x8b\x8b\x8b\x52\x9d\x69\xa0\x94\xd6\x9b\xe6\x77\xb5\xfe\xc7\xf5\x5f\xd2\x87\x14\xdb\xc5\xe9\x78\x7f\xaa\xc9\x4c\x89\x24\x81\x11\x88\xe7\x99\x49\x9d\x80\xa6\x93\x0c\x09\x84\x67\x1a\x72\xb6\x02\x8d\x84\xfa\x2d\x00\xfb\xe4\x93\x4f\xe2\xa3\x1f\xfd\x68\x06\x94\x4b\x27\x19\x80\xda\xab\x6f\xed\x51\x36\x7b\xfa\x61\xe7\xe9\x27\xb6\xdb\x2f\xce\x0c\xb2\xd3\x19\x4c\x6e\x50\xa1\x6c\x3a\x23\xe2\x5f\x23\xf6\xd1\x7e\xe3\x6b\xa9\x8c\xd2\xc6\x2b\xe3\xf3\xc6\xc4\x33\x43\x51\x91\x4f\x4a\x66\x70\x7c\x27\xf1\x72\x94\x79\x16\xf7\x1e\x04\x79\xa0\xe3\x30\x3e\x3f\x66\xcc\xc3\x71\xd6\x70\x70\xb0\xc6\xd9\x9d\xce\x70\xe3\xea\xa1\xee\x85\x2b\x2b\xdd\x8b\x5b\x33\xc3\xbb\x2e\xc3\x36\x80\x5d\x63\x8c\xff\xe3\xa0\x65\xe8\x9c\xab\x81\x16\x63\x8c\xed\xf7\xfb\xf6\xca\x95\x2b\xf8\xcf\xff\xfc\x4f\xae\x58\x92\xe2\xf1\x36\xd2\x74\x82\xd2\xc5\x0c\x37\x50\xd7\x09\x08\xb4\x9a\x61\xd4\x9c\xa4\x86\xf0\xb9\x2c\x3c\x2e\x66\xc0\x43\xe9\x78\x08\xf1\xa1\x72\xf2\x7b\xde\x87\x24\x47\xc8\x65\x0a\x39\x7c\x69\x60\xc0\x8d\x55\xc8\x98\x49\x46\x30\x04\x06\xb4\x20\xf5\x7f\x89\x46\xd2\x25\xae\x27\x52\x7a\xcd\x21\xd3\xbc\x63\xed\xc4\x8d\xbe\x36\x60\x93\x8c\x3d\x97\x2d\x0b\xc4\xd1\x10\xba\x97\xea\x4c\xeb\x8b\xb4\x3c\xb1\xf6\xa6\x65\xa0\x7c\x34\xde\xa9\x6d\x1b\xba\xf6\x79\xc6\xf8\x8b\x79\x7e\xf2\x93\x9f\xc4\xf1\xe3\xc7\xbd\xed\xaf\xf9\x00\x00\x2d\x63\x4c\xeb\x89\xed\xd6\xda\x89\x47\xed\xdf\x9b\xeb\x37\x9e\xcd\xdc\xf8\x9c\x16\xba\xb9\xc2\x87\xda\xa4\x38\x89\x77\xa8\x06\x8a\xe3\xe7\xae\x8a\x67\x0b\x48\x8e\x31\xf5\xcf\x9d\x03\x9c\x71\xf5\x19\x7c\x0f\x96\x1c\xf2\xce\x30\x3b\x7b\x7c\xa7\xfd\xd2\x89\x47\xed\x67\x9a\x43\x33\x4b\xcf\x9c\x29\xfe\x3c\x28\xc3\xc7\x3f\xfe\xf1\xec\xe4\xc9\x93\x34\x5b\xa9\x1f\xd2\x7b\xad\xcf\x03\x75\x1d\x92\x02\xb7\x3f\xa1\x3e\x0a\xe8\xed\x1c\x03\xcc\x35\x9a\x90\x71\xe4\xbf\x9a\xa1\x05\x7b\xc6\x8d\xa4\x06\x6c\x42\x82\x85\x64\x0a\x5d\x03\x00\x66\x66\x66\xb2\x4e\xa7\x03\x00\x25\x60\x29\xfe\xca\xa9\x41\x38\x74\x8e\xed\xb4\x8e\x9d\xda\xea\x7c\x76\xa9\x9b\x3f\xdb\xb0\xd9\x62\x35\x3b\x31\x39\xfd\x47\xe3\x24\x85\x1e\xaf\x2e\x09\xab\x9c\x64\xd5\xa9\x86\xb0\x9d\x29\x67\x53\x18\x39\xe8\xfe\x9a\x09\x12\x36\x0b\x44\x31\x91\x29\xd3\x92\x77\xfe\x49\x4f\xd8\x6b\xda\xad\x6b\xcb\xdd\x0b\xef\xaf\x1e\xbc\xbb\x39\x3b\xbc\x6b\xb3\x72\x59\x88\x2e\x11\x75\x31\x3e\xa7\xa5\x9c\x65\x61\xd3\x92\xb6\xdf\xef\xdb\xab\x57\xaf\xe2\x47\x3f\xfa\x91\x06\x2a\x35\xc7\xaa\x01\x8e\x14\xb4\x2f\x19\x76\x0d\xbd\x6b\xb2\xc4\x9c\x97\x14\xa4\x0e\xc7\x3b\x69\x0c\x3c\x69\x4e\x20\xc5\x21\x48\xb2\x70\x63\xa1\x0d\x0a\x24\x07\x29\xe5\x27\x39\x50\x2e\x83\x64\xec\xa4\xf2\xc4\x80\x99\xd4\xee\xfc\x5a\xe2\xc7\xd3\x68\x76\x45\x03\x4d\x52\x1e\xbc\xad\xb8\x8c\x21\xbd\xe4\x81\xca\xca\xd3\x01\xb2\xac\x41\x3b\x16\x90\x9f\x3b\x8a\x50\x3d\x6a\xba\xa1\xb5\x8d\x06\x56\x62\xf6\x3b\x55\x86\x50\xbe\xb1\xbe\xa9\x01\x2b\x7e\x6d\x01\x60\x61\x61\x01\xcd\x66\x13\xc0\x78\xd0\x47\x67\x5c\x00\xe4\x70\x68\x35\x46\xe8\x3c\xbd\x31\xf3\x89\xe5\x83\xfc\xc5\x7c\x64\x96\xe9\x66\xdc\xf1\x72\x0d\x99\x2e\xf7\xf1\x74\xea\xc4\xa1\xf6\xc2\x90\xcf\xcb\xa7\x2f\x37\x0e\x38\xbf\xdc\x24\xed\x83\x2c\x06\x9c\xc4\xe9\x18\x57\xf9\x15\x03\x83\x6c\xbc\xdf\xe5\x99\xa3\x3b\xad\x8f\x1f\xde\x6b\xae\x18\x63\x3a\x28\x96\xbc\x48\xf9\x3d\x38\x93\xea\x10\x90\xed\x30\xfd\x95\xda\x20\x66\x7f\x35\xdd\xe2\xfd\x81\xf3\xe2\xf1\x3c\x3f\x1f\x44\x9d\x08\x81\x0d\xb0\xfb\x94\x0e\xcc\x8d\x5f\xac\x82\x62\x06\x23\xd4\x51\xa4\x78\xe4\x79\x9e\xbd\xf4\xd2\x4b\x38\x7f\xfe\x3c\x55\xd2\xcc\x23\xd4\xe2\xb7\xd3\x1a\x99\xd9\x33\x9b\x9d\xe7\x57\xf7\x9a\x9f\x6e\x8e\xcc\x9a\x19\x37\x7a\xa5\x8c\xc5\x86\x5a\xba\xcc\x53\x81\x84\xfa\x46\x5b\x94\xf1\xd5\xa6\x5a\x9a\xc8\xc0\x11\x30\x52\x4d\xdb\x18\x92\xbc\x5c\x89\x2a\x14\xb5\x02\x21\xe3\x34\x3c\x3d\x9d\x81\xa9\x01\x1d\x43\xb8\xba\x6a\x63\x70\xaf\x61\x77\x6f\x2d\x75\x2f\x5e\x5c\xdb\x7f\x7b\x63\x6e\x70\x7b\xd4\x70\xdb\xc5\xd2\xd0\xae\x7f\x6b\x08\xe3\x33\x5a\xfc\x1b\x44\x74\x79\x68\xe8\x9c\xb3\x00\xec\x68\x34\xb2\x57\xae\x5c\xa1\xa0\xa5\xac\x7b\x76\xcd\x9d\xbb\x0f\x9a\x71\xe4\x41\xd2\x19\x8d\x4e\x02\x0a\x29\xf2\xf1\x4e\x48\xe5\x9b\x30\x84\x2c\x4d\xa8\xe3\xd1\x6b\xa9\x8c\xdc\xc1\xd3\x78\x89\x0f\xe7\x17\x72\x44\x52\x3f\xd5\xfa\x93\xe4\xb8\xb5\x7c\x43\x69\xa5\x72\x84\xfa\xf6\xb4\xf9\xd3\x67\x52\x7b\x73\xfe\x21\xc7\x1e\xe2\xad\xd9\x25\xad\x9d\xa4\xf6\x90\xec\x9f\x8f\x0f\xe9\x21\xe7\x4d\x69\x62\x3a\xa2\x39\x15\xc9\x91\xd0\xc0\xeb\x2a\xd4\x8f\x69\x08\xf5\x5b\xff\x5c\xd3\x0d\x1e\xb4\x3e\xa5\xf1\xa5\x32\x69\x7c\x33\x00\xf8\xda\xd7\xbe\x56\xce\xb6\x90\xbf\x72\x6f\x8b\x71\x68\xad\xed\xb6\x56\x56\xf7\x9a\x9f\x6a\x8f\xb2\x93\x66\x3c\xa8\xad\x05\xba\x1f\x05\xe5\x4c\x4a\xf1\xcf\xa0\xfa\x03\xf9\x73\xae\x5c\xd6\x2f\x07\xb9\xc5\xd4\xf9\xc4\xc6\x5c\x43\xe2\x0c\xf1\x1d\xa6\xe6\x58\x60\x00\xe4\x23\xb3\x7a\x68\x3f\x7f\xe6\xd8\x4e\xeb\x2c\xdc\x78\x00\x4e\x4e\xfc\xad\xd5\x5d\x9e\xe7\x68\x34\x6a\xe7\xcb\xc6\xda\x7f\x9a\xfe\xc1\xd3\x72\x3a\xfa\x5c\x6b\x27\x6d\x60\xa1\xd9\xb7\x1a\x0f\x1a\xc9\x1d\x45\xea\xf5\xb4\x71\x34\x3e\x56\x28\xc9\x18\x6a\x9d\xc8\x02\xc0\x57\xbf\xfa\x55\x3c\xf3\xcc\x33\x00\x4a\x87\x4e\x41\x4b\xb9\x36\xf8\xd4\xc6\xcc\xe9\xe3\x8f\xda\xbf\x37\xdb\xcf\xce\x35\xac\x19\x4f\xcf\x78\x7f\x6f\xea\xfb\x42\x50\x4e\x0d\x7a\xc5\x25\x77\x13\x0b\x9b\xa8\x2d\x0d\x15\x47\xc7\x94\xaf\x4c\xbb\x2a\xb2\xb6\x29\xd7\x78\x90\x44\xa6\x65\xe8\x6b\xd6\xfe\x5a\x7a\xbd\xd9\x63\x95\x0a\x5c\x55\xcb\x47\x00\x30\xca\xd0\xbf\xbd\xd8\x5f\x7f\xe7\x89\xfd\x37\xef\x2d\x0c\x6e\x0e\x1b\x6e\x1b\x64\x96\xa5\x58\x1e\x2a\x01\x0c\x9d\x6d\x29\xfe\xca\xcd\x60\xef\xbd\xf7\x1e\x7e\xfc\xe3\x1f\x6b\xc0\x94\xb6\x8f\xd4\x4e\xda\x33\x1e\x47\xe9\xa4\xce\x12\x4a\xc3\xe5\x91\x78\x52\x79\x42\x20\x4a\x73\x4a\x21\x87\xa5\x95\x23\x54\x1f\x52\xfe\x92\x53\xd7\x68\x52\xfa\x51\x28\x3f\xad\x1e\x24\xe3\x13\x2a\x07\x6f\x7f\x0d\x60\x48\x79\x70\x39\x35\x7a\x9e\xb7\x26\xbf\x54\x77\x21\x3b\x97\xda\xfe\xa1\x34\xb1\xfa\xe5\xf9\xc7\xfa\x84\x0f\xa1\x7e\x16\x92\x55\x8b\xa3\xd7\x1a\xe8\x8c\xe9\x8c\xc6\x4f\x7b\xae\xf5\xb3\x14\x1e\x34\xfd\xe3\xf0\x00\x50\x2d\x15\xa1\x38\x74\x34\x73\xa6\x73\x62\xbb\x73\x72\xbe\xd7\x38\x9f\x59\xcc\xaa\xc6\xdc\x54\xd7\xa5\x3d\x2e\x06\x97\xb5\x9d\x01\x7e\x96\x84\x9c\x72\x5b\xce\x84\x13\x5a\x36\xae\xad\xcf\x9a\x97\x3b\x12\xea\x5b\x0f\x1c\x80\x86\xc3\xec\x5c\xbf\x71\xf6\xf0\x7e\xf3\xa3\xf3\xbd\xc6\x2c\xc6\x40\x8b\x96\xab\xac\xa7\x97\x5f\x7e\x19\x2f\xbc\xf0\x82\x54\x5f\xd3\xea\xba\xa4\x07\x9a\x9d\xd7\x74\x59\xea\xcb\x9a\x6d\x91\xfa\x2c\xe5\x91\x01\xfa\x52\xd1\x34\x21\x75\xb4\x34\x6d\x08\x75\xe4\x58\xa8\xa1\x6c\x63\x4c\x46\xd6\x02\x5b\x4b\xbd\x7c\xf9\xec\xc3\xce\xe7\x96\xba\xf9\xf3\xb9\x35\xf3\x00\x45\xc0\xe5\x71\x70\xd5\xda\x65\xa9\x9d\x86\x80\x98\x22\x38\x1d\xc0\x00\x64\x02\xc4\x55\x8a\x5d\x75\x80\x1a\x65\x6d\x0a\x46\x58\x74\xaa\xcd\xd0\xa0\x90\xcd\x14\x9b\x5d\xca\xdd\xef\xb5\x35\x2c\x07\x6b\xdc\xf0\xee\x7c\xff\xf2\x6f\x4e\xec\xbd\x7e\x7b\xb1\x77\x7d\x90\xb9\x2d\x00\xdb\xe4\xb5\x67\xbf\x44\xd4\x47\x60\xa6\x05\x00\xde\x7c\xf3\x4d\xfc\xf4\xa7\x3f\xa5\x22\x79\x45\x0b\x39\x7f\x1f\xb8\x9e\x84\x46\x74\x94\x5e\x32\x48\x29\xa3\x03\x9e\x56\xd3\x53\xb1\x63\x08\x69\x38\xdf\x94\xd1\x61\x6c\xf6\x40\x7a\x1e\x32\xf4\xa1\xbe\xc6\x47\x44\x5a\x5d\xc5\xee\x25\x59\x34\x3a\xa9\x0c\x12\x50\xf1\xbf\x92\xfc\xd4\x51\x6a\xb2\x70\x5a\x9e\x4e\x93\x55\x72\xcc\x29\x36\x4a\x32\xa0\x21\xb9\xa6\xa9\x53\xfe\x3c\xa4\xff\x52\x5b\xc6\xe4\xd2\xea\x58\x93\x43\x02\x43\x5a\x5b\x70\x7a\x29\xcf\x94\x7c\xa6\xa5\x07\xe2\x6d\x50\xbb\xfe\xf3\x3f\xff\xf3\xec\xc8\x91\x23\x34\xbe\x04\x2c\x28\x66\x5b\x66\x86\xd9\xfc\xd1\xed\xe6\x73\xed\x61\x76\xd2\x00\x39\xb7\xaf\x40\x1d\x64\x00\x3a\xf8\xf0\x0f\xcb\x19\x16\x7a\x9c\x06\xea\xe0\x84\x07\xc7\xfe\x24\x39\x7c\x39\x5a\xc5\xac\xcb\xf1\x9d\xf6\x71\x63\x8c\x7f\x2d\x9a\xcf\xb8\xa4\xd4\x31\x10\xb6\x71\xfc\x9a\xd2\x87\xec\xb0\x06\x86\x35\x7a\x1e\x1f\xea\x0b\x96\x46\x4c\x13\x42\x86\x56\xca\xf4\xc3\x00\x99\x50\xa5\x88\xe1\xeb\x5f\xff\x7a\xb9\x29\xc9\x1f\xe9\x5c\xfc\xf9\xdd\xd7\x2d\xe7\x5c\xe7\xe9\xfb\xb3\xe7\x56\x77\x9b\x2f\xb6\x86\xd9\x1a\x8a\x57\xc2\xfd\x26\x58\xbe\x67\x96\x6e\x96\x1d\x47\x32\x95\x32\x75\x65\xac\x29\x6d\xa1\x89\xfe\x25\x25\xca\x7f\x22\x4d\xc1\xd7\x2f\x73\x56\x4b\x51\xae\x06\x46\xa8\x88\x86\xf0\x2d\xdf\x34\x22\xb3\x2f\xd6\xc0\x6e\xcd\x8c\xee\xfc\xf6\xe8\xde\x9b\x37\x96\xba\xd7\x07\x99\xdb\x86\xa9\x66\x59\xd8\x12\x51\x09\x5a\x8c\x31\x43\xe7\x5c\xed\x70\xb9\xd7\x5f\x7f\xdd\xfe\xfa\xd7\xbf\xa6\xcb\x52\xb1\x11\xb1\xa6\xf4\x5a\x9a\x90\x51\xce\xd8\xf3\x98\x9e\x69\x23\x0a\x7e\x2d\xe5\x17\x1b\x61\xfa\x74\x7c\xa4\xa0\x05\xcd\xb9\xf1\x74\x8f\x5b\x06\x7a\x4f\xeb\x58\x1a\xa5\x53\x80\xa0\x01\x9d\x90\x3c\x5a\x7d\x48\x32\xf0\xf6\xe6\x7c\xa9\x1c\xa1\x7a\xd4\x0c\x29\x2f\x8b\x24\x73\xa8\xbc\x12\x4f\x49\xbe\x90\x3c\xdc\xd1\xf3\x3a\xd6\x74\x4e\x2a\x3b\x0f\x12\x68\xe1\x23\xd4\x98\x8d\x8c\x81\x67\xa9\x8d\x42\x40\x21\x54\x86\x10\x80\x95\xf2\x09\xb5\x83\x04\xa6\x78\x90\xe4\x2e\x65\x6a\x34\x1a\x7c\x7f\x63\x0d\xbc\x34\xac\xe9\xac\xee\x36\x57\x97\xba\xf9\x33\xb9\x35\xcb\x80\x0c\x1a\x38\xd0\xe0\x00\xc6\x30\x7b\x5e\xed\x87\xf4\x8e\xc3\x89\x69\xf9\x4c\x4b\x19\xef\xea\x40\x87\xae\x1c\x15\x7b\x5d\x3a\x33\x83\xc6\xb1\xa5\x83\xc6\x71\x54\xcb\x5e\xe2\x72\xd1\xc7\x3f\xfe\x71\x7c\xf6\xb3\x9f\x95\x40\x4c\x8a\xad\xe1\xf4\x21\x7d\x95\x00\xb0\x06\xa2\xb4\x76\x0b\x0d\x2e\x79\x5c\x26\x3d\xfc\x5d\x86\x58\x85\x4c\x9b\x36\xa4\xc8\x98\x9d\x9d\x45\x9e\xe7\x92\xa2\xb6\x8c\x31\xad\x0c\xa6\xb3\xba\xd7\x5a\x3e\xb9\xd5\xfe\xdc\x5c\x2f\x7f\xa6\xe1\x30\x4b\x37\x44\x8d\x77\x76\xb3\xa5\x18\xa6\x98\x25\xa2\x86\x57\x72\xa2\x98\x7e\xb3\x6c\x71\xa2\x9c\x07\x2c\x35\x8e\xd2\x6c\xe4\x44\x0e\x55\xde\xe5\x5b\x49\x8e\xc4\x11\x49\x1c\x61\xe2\xd7\x57\x61\x00\x6b\x9c\xdd\x6d\x8f\x36\x3f\x38\x7c\xf0\x9b\xf7\x57\x0f\xd6\x07\x0d\xb7\x05\x53\x3f\xa7\xc5\xbf\x41\xe4\x41\x4b\x31\xbb\x52\x6e\xc8\xf5\xa0\xe5\x17\xbf\xf8\x85\xbd\x70\xe1\x02\x06\x83\x01\x90\x06\x52\x34\xba\x18\x7d\xc8\x88\x87\x66\x1e\x24\x07\xc6\x9d\x59\xcc\xc8\xa7\xf6\x05\x8d\xaf\xc6\x47\x72\x62\xc0\x64\x79\xb4\xce\x2e\x19\x1d\x0e\xe4\x24\x50\x27\xf1\xb7\xec\x3a\xd5\x60\x49\x72\x70\x3a\x9e\x97\x56\x66\xc9\x41\xc6\x9c\xab\x15\xae\xb5\xe7\xd2\x2f\xa5\x93\xca\xc3\x9d\x66\x0c\x70\xd1\x7b\x9e\x36\xe6\x98\x63\x00\x5a\x93\x2d\x06\x64\x3d\xad\xe6\x94\x52\xda\x4f\x03\x21\x5a\x08\x95\x97\xf3\x89\x39\xa6\x69\x7c\x45\xa8\xbe\x34\xbd\xae\xf9\x84\x86\x43\x6b\xb1\x9b\xaf\x74\x06\xd9\xc9\x71\x1c\xd9\x18\x0b\x36\xb3\x0d\x79\xc6\xa4\x98\xec\x16\x43\x69\xcd\xa5\x23\x32\x50\xf7\x23\xb5\xa1\x70\xf1\x0a\x34\xcf\xdf\xdb\x77\xe3\xd0\x6a\x0f\xcd\xea\x42\x37\x3f\xd5\x1a\x64\x7e\xb9\xc8\xbf\x55\x54\x03\x2f\xad\x56\x0b\xed\x76\xdb\xd7\x89\xd4\x2f\x63\x76\x29\x66\x2f\x24\xfd\xe3\x60\x9e\xa7\xe3\x03\x29\x2d\x48\x69\xfc\xb5\x8d\x25\xd6\x84\xd2\x9e\xd3\xdf\x0f\x1b\x24\xe5\x54\xf3\xff\xe2\x17\xbf\x98\x2d\x2f\x2f\x03\x28\xd7\xfc\xca\x57\xc5\xe0\x77\x90\x5b\xd3\x39\xbb\xd9\x79\xfa\xf0\x5e\xf3\xc5\xa6\x35\x2b\x80\xc9\xea\x7b\x4a\x88\xc2\x09\x6f\xf6\xf8\xf5\x4d\x7f\x8f\xe2\xde\x2f\x29\xd1\x83\xe0\x9c\xa9\x6f\xb0\xad\x26\x61\x5c\x2d\x3d\x5f\x1a\x1a\x7f\x80\xd1\x95\x7b\x57\xe8\xc6\x2d\x2f\xe3\x98\xbe\xfa\xc6\x51\x6d\x84\x60\x0c\x2c\x9c\x3d\x68\x8e\xb6\x6f\x2e\xf5\x2e\xbc\x77\x64\xff\xdd\x83\xe6\xe8\x01\xaa\xe3\xfb\xbb\x20\xc7\xf8\xa3\x7e\x1a\x6e\xbf\xa8\x63\x5b\x80\x18\xfc\xe2\x17\xbf\xb0\x17\x2f\x5e\x44\xb7\xdb\x25\xb9\x4c\x28\x3f\x8d\x0f\x21\x7c\xcd\x98\xc7\xf4\x90\xa2\x7d\x2d\x6f\xc9\x69\x49\x80\x80\xa7\xd3\xe4\x09\xc9\x18\x73\x5e\xa1\xd1\x82\xc4\x37\xc5\x78\xd0\xbc\x53\x46\xad\x54\xe6\x90\xb3\x94\xda\x2c\x54\x4e\x89\x3e\xe6\x80\x25\xa0\xc5\x81\x14\x4f\xc7\xcb\x1d\x92\x55\xd3\x39\xae\x37\x21\x1b\x22\xb5\x47\x88\xb7\xa6\x6f\xc0\x64\x59\x25\xb9\x52\x46\x98\x9c\xaf\x44\x1b\x6a\x0b\x5e\x07\x34\xad\xd6\xe7\xa4\xf2\x6b\x79\x4b\xfc\xa4\x7e\xc2\xf9\xfa\x67\x5a\xbf\xd4\xd2\x53\x3e\x12\x28\xd5\xe4\xa3\x69\xc7\xaf\x11\x5b\xd3\x9a\xeb\x37\x56\xf2\x91\x59\x01\xc8\x6c\x07\x45\x14\x45\xa8\x66\xbf\x89\x3d\xa6\x4b\xff\x34\x08\x4b\x44\xe3\x4d\xb7\x6e\xcc\xdf\x90\xd9\x16\xf2\x16\x2b\x85\x4d\x35\xa0\xe4\xc8\x1e\x99\xf1\x75\xde\x1c\x65\x8b\xb3\xfd\xec\xd8\x52\xb7\xb1\x08\x61\xb6\xc5\xef\xed\x14\xea\xc2\xd7\x95\xa4\x13\x31\x7b\xa0\xdd\x87\x6c\x2c\xe7\x2f\x01\x26\xcd\x8f\x48\x71\x25\x6d\x8e\x70\x47\x0e\x21\x33\x1e\x24\x87\xf1\xbb\x0c\x1a\x8a\x06\x00\x7b\xe2\xc4\x09\xb4\x5a\xad\x5a\xc3\xf9\x1d\xd7\xc6\x98\x56\xc3\xa1\xb3\xba\xd7\x5c\x3d\xb5\xd5\xfe\xec\xec\x20\x7b\x3a\x73\x68\x55\x20\x85\xec\x45\x19\x6b\x54\x09\x48\x3c\x78\xa8\x6d\xc2\x22\xd7\xc5\xa9\xbc\x63\x60\x51\xff\x54\xf3\x98\xd6\x8c\xdf\x4f\xaa\x36\x6b\xd5\xe7\x57\x6a\x7b\xb0\xca\x8c\x0a\x94\x6e\x0a\x35\x76\x86\xc9\x17\x90\x07\x0e\xbd\xdc\xee\xdf\x9f\x1f\x5c\xbb\x74\x64\xff\xed\xcd\xb9\xc1\x6d\x14\x9b\x6f\x31\x9e\x65\xf1\xbf\xe2\x11\xfe\xce\x39\x3f\xdb\x82\x37\xde\x78\xc3\x5e\xbc\x78\x11\x07\x07\x07\xbc\xde\x79\x1b\x6b\xe8\x98\xc7\x71\x83\xa4\xe9\x17\x37\xc4\x9a\xe3\xe5\x1d\x46\x93\x2b\xc5\x80\x6a\xce\x2d\x34\xa2\xd4\x42\x28\xff\x18\x5f\x4d\x46\xfe\x2c\x65\xe4\x2e\xd5\x3b\x4f\xaf\xc9\x16\x73\xf4\x92\x6c\xb4\x3d\x42\xa3\x2c\xad\xfe\x39\x7d\x4a\x9d\x4b\xe9\x25\x19\x34\x99\x52\xda\x31\x25\x68\xc6\x58\x03\x38\x92\xbe\x82\xd1\xf8\xeb\x58\x3d\xa4\xe8\x9b\x97\x47\xe2\xa1\xc5\x87\xf4\xd6\xa7\x0b\x81\x68\x8d\x97\x26\x6f\x6a\xfd\xf1\x50\xab\xab\xdf\xff\xfd\xdf\xcf\x8a\x99\x06\x19\xe0\x3a\xe4\xb9\x33\x9d\xd9\x41\x76\x28\xb7\xa6\x3a\xa9\x8d\x6f\x0b\x08\x84\xfa\x79\x2b\xd4\x9e\x9b\x89\xf4\x7e\xe9\x88\x2e\x45\x19\x57\xf9\x86\xca\x2b\x4c\x06\x0a\x74\xc6\xd7\x06\x99\x73\x9d\xce\xb0\xb1\xb2\xd0\xcb\x17\xef\x2f\x0c\xee\xf1\x25\xb1\xe2\x3e\x45\xf7\xa7\x7d\xc6\xe3\x24\xa0\x19\xea\xff\x3c\x8d\x64\x8f\x34\xfa\x9a\x4e\x68\x88\x3b\x94\xb1\x44\xeb\xaf\x43\xfc\xb4\x11\x88\x16\x97\x62\x34\x2c\x00\xfb\xa9\x4f\x7d\x8a\x2a\xaa\xdf\x88\xeb\x4f\x48\x1c\x6f\xc4\x1a\x64\xf3\x67\x36\x3b\x4f\x1f\xde\x6b\xbd\x38\x56\x56\xaf\x34\x64\x66\xa3\xdc\x48\x6b\x6a\x4b\x3c\x9a\x52\x8d\xd3\x12\x85\x24\x4a\x5b\x07\x16\x3a\x87\xda\x94\x21\x9d\x55\x21\xc8\xc6\x23\x76\x27\x74\x2c\xde\x49\x06\x0d\xd7\xdd\x9c\x1d\xde\xba\x7c\xf8\xe0\xed\x5b\x8b\xfd\xeb\xa3\x6c\xe2\x18\x7f\x3f\xe3\x52\x03\x2e\x04\xb0\x58\x00\x78\xf3\xcd\x37\xed\xbb\xef\xbe\x8b\x83\x83\x83\x98\x31\x0c\x39\x28\x7e\xcd\x15\x34\x34\x32\xd3\x0c\xab\x96\xbf\x86\xe0\x43\x7a\x27\xf1\x08\x19\xc6\x90\x3c\xa1\x91\x9e\x76\xcf\xe3\xb5\x32\x70\x59\xa5\x51\x11\x7d\xc6\xd3\x5a\xd4\x8d\x84\x96\x3f\xbd\x97\xea\x22\x54\x87\x34\x2f\x4e\xaf\xf1\xe4\x0e\x5c\x93\x87\xe7\xcd\xf5\x8b\xd3\x6a\xce\x5e\xb3\x51\x5a\xd0\x64\x91\xe8\xa4\x32\x48\xed\x28\x0d\x08\xa5\xf2\x48\xf5\x94\x2a\xab\x76\xcd\xf9\xf2\x38\x4d\x7f\xa4\x7b\x4e\x9f\xf2\x2c\x45\x3e\x2d\x3f\x2d\xad\xcf\xab\xac\xd3\x67\x9f\x7d\x16\xcd\x66\x93\xcf\x3c\xf8\xbf\x3c\x73\xc8\x5b\x43\xd3\xe9\x0c\xb2\xe5\x86\x33\xb3\x3e\x83\xf2\x9b\x6f\x70\x13\x16\xdb\xf9\xb7\x32\xe8\x2b\xd1\x64\xc6\x84\x5a\x72\x61\x4b\xe3\xf8\x8a\xee\x7d\x2c\x07\xc4\x64\x29\x89\x4c\xe7\x94\x9b\x00\xc8\x0c\x4e\x05\x7a\x4c\xde\x1a\x99\xc5\xd9\x41\xb6\x48\x4e\xcf\x9d\xd8\xe3\xc2\x57\x0d\x94\xfa\x4b\xb1\x8f\x9a\x2d\xb5\xec\x4f\xcb\x87\xf3\x0f\xd9\x16\xc9\xa6\x4d\xf4\x97\x69\x3b\x31\x0f\xdc\x69\x49\x4e\x8e\x1b\x4c\xcd\x70\xc5\xf2\x9e\x28\x98\x31\x26\x3b\x7f\xfe\x7c\xf6\xe9\x4f\x7f\x1a\xed\x76\xdb\x7f\xae\xbc\x54\x50\xbf\xeb\x3a\xb7\xa6\x73\x78\xaf\x79\xec\xc4\xa3\xf6\x67\x66\x07\xd9\xd3\x00\xb2\x72\x86\x03\xf5\xe9\xc1\xf2\x92\xb7\x79\x00\x2d\xf0\x8d\x59\xc1\xe0\xea\x97\xb5\x4d\x5a\xca\xc2\xa7\x01\xaa\x2f\x44\x83\x83\xa2\x8a\x7c\x64\xdc\xf0\x51\x67\x78\xef\xda\xa1\xee\x85\xab\x87\xba\xeb\xdd\x7c\xb4\x85\x62\x59\xc8\x39\x57\x7b\x83\xa8\xd8\x88\x5b\x6e\xc6\x35\xc6\x58\xe7\x9c\xb5\xd6\xe2\x9d\x77\xde\xb1\xbf\xfa\xd5\xaf\xd0\xeb\xf5\xb4\xd1\x22\x8d\x0b\x39\x8e\x8c\x5d\x43\xf8\xe5\x71\x92\x51\x97\xf2\xd2\xf2\xd7\x40\x80\xa6\x7f\xb1\x5f\x49\x3f\x35\xe3\xaf\x81\x05\x7a\x2f\xa5\xd3\x9c\x6a\xc8\xf1\x85\x80\xa4\xe4\x10\x69\x7a\xca\x5b\x93\x33\xd5\x51\xc5\x0c\x94\x96\x96\xeb\x46\x0c\x3c\x86\x6c\x8d\xa4\x9f\x52\x88\x81\xb1\x58\x3d\x87\xf4\x51\x92\x31\x74\x1d\x2a\x83\x44\x1b\x92\x51\xaa\x4b\x09\x04\x87\x00\x71\x28\x4f\xe9\x9e\xc6\xc7\x9c\x8e\xa6\x73\xfc\xda\x07\xad\xee\x39\x4f\x09\x84\x97\x71\xc6\x7f\x26\xa5\xd0\x51\xef\xdc\x0d\x90\xb7\x46\x59\xa7\x39\xca\x16\x33\x98\xbc\xb6\x57\x60\x7c\x01\xa0\xee\xf8\xfd\x12\x7e\xf9\x4d\x21\x67\x8a\xb8\x0a\xae\xb8\xe2\x40\x17\xc7\x9c\x45\x09\x50\xcc\xa4\x77\xa8\x0d\x98\xcb\x37\x37\x0c\xb9\x34\x14\xcf\x78\x7f\x91\x35\xac\x99\x6d\x0f\xb3\x79\x14\xfb\x5b\xe8\xc1\x73\x64\xc5\x01\x2b\x2b\x2b\x38\x75\xea\x94\x06\x1a\x42\x75\x49\xaf\x43\x7e\x20\x44\xab\xe9\x8c\x64\x23\x24\x39\xd4\x7e\x16\x03\x23\xa1\x0c\x53\x02\x2d\x8c\x96\x97\xf6\x2c\x54\xd9\x00\xc6\x3b\xc7\xbf\xf0\x85\x2f\xa0\xd1\x68\x64\xe4\x7b\x0d\x19\xaa\xd7\xde\xf2\x0c\xa6\x35\xd7\x6f\x2c\x9f\xdc\xea\x3c\xbd\xb2\xdf\x7c\xb1\xe1\xc6\xaf\x3f\x57\x1a\x83\xfa\x69\x86\xfe\x7a\x62\xf3\x08\xbf\x9e\x44\xb3\x13\x08\xd7\xd1\x38\xaf\x89\x95\x62\xd7\x97\x9c\xea\xcf\xca\x3c\x9c\x94\x13\xa1\x2b\xf2\x70\x70\x76\xaf\x35\xda\xba\xb9\xd4\x5b\xff\xe0\xf0\xc1\xc5\xed\xce\xf0\x3e\x0a\xd0\x62\x8c\xf1\x1b\x71\xe9\xb7\x87\xc4\xef\x0f\x59\x6b\xed\x4f\x7f\xfa\x53\x8c\x46\x23\x6e\x90\x62\x8a\xca\xaf\x25\x3a\xcd\x41\x85\x8c\x6c\x88\x3f\x07\x15\x29\x1d\x45\x4a\x2b\x19\x69\x09\x74\x49\xbc\x24\xa3\xa9\xc9\x47\xe9\x69\x59\x53\xc0\x08\xe5\x17\xeb\x57\x52\x5a\xce\x27\x26\xa7\xe6\x2c\x39\x0f\x0b\x5d\x3e\x9a\x26\x24\xbb\xe6\xfc\x52\xae\xe9\x7d\xaa\x73\xd6\x78\x4a\xfa\xe7\xef\x25\x80\x9c\xe2\xcc\xb9\x7c\x52\xde\x3c\x8f\x50\xbf\x0b\xd5\x2f\x2f\x43\x2a\x88\x94\x64\x0b\x3d\x97\x68\x34\x20\x21\xe5\xa7\x81\x5d\x5a\x06\x49\x06\x9e\x97\x66\x5b\xca\x40\xc0\x42\x35\xb0\x75\x26\x33\x0e\xb9\x21\x07\xce\xd5\xf6\x1e\x3a\xb2\x05\x00\x7e\x30\xeb\x6a\x83\x47\x00\xe5\x27\x56\xaa\xbc\xaa\xe5\x9c\x32\xce\xcf\xa8\xb8\xc9\x73\xd5\xfd\xcc\x8e\xa3\x0c\xe0\x77\x0b\xd4\xf7\x52\x12\x77\x05\x00\x59\xc3\xa2\xd3\x1c\x99\x59\xba\x29\xd7\xfb\xbf\x62\xb5\x01\x00\xb2\x63\xc7\x8e\x65\x1f\xfb\xd8\xc7\x7c\x9d\x69\xf5\x39\xad\x4d\xe1\x41\xd3\x57\x7a\x3f\x8d\xad\x92\xfa\x62\xad\x7d\xa7\x11\x90\x1b\xa8\xd4\x34\xd2\x75\x88\x2e\x14\x57\xe6\xdb\x68\x34\x70\xf4\xe8\x51\x00\x35\x84\xe9\x2b\x6a\xdc\x98\x0e\xad\xd6\x30\x9b\x3d\xbc\x3b\x9e\x6d\x99\x19\x64\x67\x81\x42\xb1\xe8\x54\x05\xc8\x75\x01\xa1\xe9\xf7\x26\x38\xcd\x58\x91\xbd\x62\xd1\xa9\x11\xbf\x96\x53\x81\x8f\xea\x74\x5b\x42\x06\x7f\xdc\xbf\x9b\x48\x4a\x46\x09\xf0\xeb\x55\xe5\x0a\x16\x99\x91\x29\x3b\x47\x01\xb2\x7a\xb9\xdd\xbf\xbb\xd8\xbf\xf2\xc1\xe1\x83\x0b\x1b\x73\x83\x9b\xae\x3a\xca\x9f\xbf\xf6\xdc\xc7\xf8\x48\x7f\xff\x0d\x22\xbf\x11\xd7\x8e\x46\x23\x7b\xf7\xee\x5d\x5e\xd7\x29\xc6\x96\xff\x49\x81\x2b\xf7\xb4\x4a\x1e\xe3\xcd\xd3\x72\xa3\x2d\x19\x47\x2e\x4f\x68\xd4\xa1\x19\x5b\xcd\xc1\xc5\x9c\x38\x07\x2c\xbc\x4e\xa4\x6b\x29\x2f\xcd\x51\x69\xe5\xd1\x80\x14\xe7\x1b\xaa\x3f\xca\x47\xaa\x3f\x08\xf4\x3c\x8e\xd3\x4b\xe0\x95\xe6\x1d\x33\xae\x31\xe7\x17\x73\xc4\x9a\xdc\x92\x11\x0d\xf1\x89\x39\x08\x89\x0f\xaf\xd3\x10\x00\x96\xda\x45\xca\x4f\x1c\xec\x09\xf4\x5a\x5a\xfa\x4c\xea\xa7\xbc\xed\x42\xba\x16\x6a\x03\xc9\x31\x49\x3a\x26\xc5\x6b\xf2\xf3\x3c\x00\xa0\x3c\xf2\x1f\xc6\x65\xce\x20\x73\x70\x84\x4f\x05\x37\xc6\x6f\x83\xd2\x8f\xe9\x3a\xf0\x97\x32\xca\xef\xd9\x91\x99\xfa\x72\x35\x09\xa8\xd1\xc2\xa0\x7c\x59\x63\xfc\x31\x5e\xcf\xb9\xd8\xff\x58\xf0\xa3\xe0\x49\x1b\x37\x17\x71\x99\x81\xc9\x33\x67\xda\xec\xe3\xc1\xe5\xc7\x16\x95\x20\xd9\x41\xcd\x06\x87\xfa\x33\xef\x5f\xda\xe0\x28\x34\x18\x4b\x91\x53\xeb\x83\xd1\x46\x9f\x26\x48\xbc\x42\xfc\x93\x15\x8e\x84\xb2\x12\x66\x67\x67\xf1\xc7\x7f\xfc\xc7\x19\x50\x1e\x30\xe7\xd3\x94\xef\xb5\x1b\xa0\x35\xdf\x6f\x2c\x9e\x78\xd4\xfe\xe8\xf2\x41\xfe\x42\xb5\x9e\xe9\xca\x7d\xb4\x1c\xd1\xfa\x8f\x27\xc2\xdf\x17\xbf\x3e\x4d\xa5\xb0\xae\x50\x3a\xba\x4b\x8b\x4c\xf5\x95\xb3\x25\x7e\x1f\x4d\x7d\x0b\x2d\x45\xd5\x3c\x98\x42\xa1\x1d\x5b\xdf\xac\x64\x29\x4b\x31\x5e\x22\xca\xdc\x70\x73\x76\x78\xeb\xca\x4a\xf7\xc2\x9d\x85\xc1\xf5\x91\x71\xe5\xab\xce\xc5\x6c\x4b\xd7\xef\x69\xe1\x4b\x44\xfe\xac\x96\xe1\x70\x68\x14\x24\xab\x2f\x00\x00\x20\x00\x49\x44\x41\x54\xef\xdd\xbb\x87\x7f\xfa\xa7\x7f\x2a\x67\x5f\x84\x3f\xde\x16\xda\x9f\x64\xbc\xb8\x21\xe5\x9d\x42\x9b\xf5\xe0\x7c\x40\xe2\x43\x06\x2f\x04\xb2\x53\x66\x0d\x38\x3d\xaf\x07\xde\xb9\xb8\x93\x08\x75\x58\x49\x3e\x5e\x27\xa1\x4e\xcf\xeb\x5a\x93\x99\xf2\x0f\xf5\x4f\xad\xae\x43\xe5\xe3\xf4\x5a\x7d\xf0\x7c\x78\xfd\x49\x32\x49\xe5\xd1\x02\xaf\x4f\xad\x0e\x79\x99\x62\x03\x29\x2e\xa7\xd6\x1e\xb1\x76\xe3\xa0\x4b\xcb\x6f\xda\x67\x9c\x9f\x04\x6a\xa5\xfb\x98\x7e\x7a\x7a\xad\x4e\xfd\x7d\x08\x4c\x71\x07\x29\xd9\x90\x10\x6f\xce\x43\xd2\x19\x49\x46\x0a\x52\xa8\x5c\x7e\xbf\x63\xe5\xe0\x8d\x83\x25\xf6\xdf\x94\xf6\x1c\xe4\x6d\x21\x37\x5e\x12\x32\x7e\x09\x48\x08\x86\xda\xe6\x72\xd1\x08\xd2\xf6\x92\xf1\x3e\xc5\x6a\x73\xc0\xf8\x4a\x5a\xf8\xaf\x64\xa2\x93\xff\x74\x4b\x81\x71\xc8\x32\x5b\xbe\x06\x8d\xa2\x7c\xf4\xfc\x32\xbe\x02\xc0\xdb\x4c\xb3\xe9\x9c\x5e\xea\xcf\x12\x9d\x64\xfb\xbd\x2c\x92\x7e\x70\xfe\x3c\x0d\x97\xb3\x46\x9b\x3a\xea\xe0\xd7\x5a\x07\x4e\x09\x52\x45\x48\x41\xed\xb0\xc6\x98\x2c\xcf\xf3\x5a\xc3\xb0\x0f\x68\xb5\x0c\x4c\xab\x39\x32\x9d\x43\xfb\xf9\xf1\x27\xb6\x5b\x9f\xe8\x0c\xb2\xd3\x63\x3a\x00\x30\x13\x98\x81\xe0\xeb\xf1\x3d\x9b\xaa\x1b\xa7\x21\x1f\x35\x24\x53\x82\x72\x1a\xc3\x90\x06\x85\xe6\x1c\x31\x95\xa5\x80\xdf\x04\x46\xd7\x44\xe9\xf2\x51\x1d\x85\x8f\x01\xce\x4e\x6b\xb4\x71\x75\xa5\x7b\xe1\xe6\x62\xef\x72\x2f\xb7\x5b\x28\x8e\xef\x27\xe7\xb4\xec\x53\xc0\x02\x06\x5a\xac\xb5\xf6\xde\xbd\x7b\x78\xe5\x95\x57\x52\x8c\x64\x48\xe1\x38\xcd\xb4\x7a\xa2\x81\x99\xd0\xc8\x4c\x33\x80\x1a\xb8\xe1\x69\x63\x46\x59\x32\xce\x21\xb0\x21\xd1\x48\xf2\x48\x69\xb4\x72\x68\x4e\x53\x73\x30\xdc\xe8\x4b\x8e\x80\x1b\x1b\x0d\x78\x85\xea\x95\x07\xad\xce\xa4\x7a\xd2\x1c\xba\x06\x1a\xb8\x0c\x5a\x59\x35\x87\x4a\xd3\x49\x60\x44\xab\x5f\x9e\x07\x97\x91\x8f\x44\x29\x0d\x97\x89\x83\xa6\x94\x7e\xa4\xc5\x87\xca\xc0\xe5\xe3\xc0\x41\xab\x4f\x09\xd4\xc5\x80\xb9\x54\xc7\xfe\x79\xa8\x2d\xb8\x1c\x21\xba\x69\xf8\x66\x00\x1f\x28\xd2\x99\xef\xb1\x35\xb5\x06\xb0\xc6\x59\x57\x2d\x04\xa1\xfc\xf0\x6d\x81\x14\x4c\xf1\x62\x04\x80\xfa\x6b\xcc\x15\x49\x19\xe8\xe2\xbf\x2b\xfc\x0b\xdd\xba\x22\xed\x4f\x04\x7b\x3e\x41\x53\x9c\x07\x06\xe1\x99\x83\x83\x35\x0e\x64\x79\xa8\xfa\x46\x92\x50\x7e\xa4\xb7\x85\xa4\x5b\x92\xfd\x07\xe4\xb6\x08\xf5\xdd\x50\x3f\xe2\x72\x4a\x69\x4b\x1a\x4d\x49\x24\x05\x4f\x05\x26\x12\x9f\x58\x9c\x14\x54\x24\xb6\xb6\xb6\x86\x6f\x7f\xfb\xdb\x00\xe0\x1b\xcb\x83\x96\xbc\x7c\x05\x1a\xe8\x2c\x76\xf3\x95\x93\x5b\xed\x8f\x2d\x1f\xe4\x2f\x64\xce\xb4\xe8\xdb\xca\x64\x31\xa6\x06\x26\xaa\xaf\x3c\x3b\xf6\xbc\x0a\x15\xae\xe6\x3c\xc8\x7d\x9d\xb8\xa4\xaf\x5e\x9b\x66\xeb\x96\xc5\x74\x0e\x7f\x03\x69\x8c\xb4\x0d\xb9\xae\x87\x5e\x6e\x77\xaf\x1f\xea\x5d\xb8\x7a\xa8\x7b\x71\xa7\x33\xbc\x0f\x53\xfb\xf6\x50\xb7\x00\x2d\x5d\xe7\x1c\xfd\xe2\x73\xcd\x90\x5d\xbb\x76\x0d\xaf\xbc\xf2\x8a\xaf\x5f\x1a\x42\xce\x5f\x72\x3a\x31\x70\xcb\x43\x0a\x88\xd1\x3a\x86\x94\x5e\xea\x54\x29\xfc\xa5\x10\x1a\xd1\xc6\x68\x43\xf9\xd1\xeb\x90\xb3\x4c\x09\xd3\xa6\xd7\xea\x2e\x56\x57\x94\x77\x08\x68\x69\xed\x23\x39\x68\x0d\x10\xf1\x7b\xcd\x86\xf0\x91\x77\x88\x3e\x36\x6a\xa4\x74\x12\x2f\x0d\x84\x53\x1a\xcd\x08\x53\x79\x25\x00\xa7\x81\x33\x9f\x5e\xaa\xb7\x69\x75\x24\x46\x1f\x73\x2e\x5c\x26\x9e\x36\xa4\x57\xd3\xca\x34\x4d\x9d\x4b\xd7\x41\xbb\xe3\x8f\xae\x18\x34\xac\xed\xe7\xb6\x0b\x83\xe1\xf8\x01\xaa\xb1\xa6\xbf\x87\x04\x18\x08\x2f\x1e\xe7\xea\xf1\xe5\x75\x61\xeb\xeb\x7b\x66\x88\x3d\x67\x46\xbd\xe6\x6e\xc8\x60\x98\x2c\x53\xd9\x61\x03\xdd\x6e\xd3\xed\x51\x80\x42\xbf\x91\xe4\xef\x49\x08\xe9\xf5\x87\x01\x95\x1a\xaf\xd8\xc0\x35\xe4\x3b\x78\xfe\xfc\xf9\x87\xfa\x56\x51\xaa\xc1\xff\x5d\xf0\x54\x69\xf9\x87\xb3\x30\xde\x70\xd5\xca\x47\xa6\x73\x78\xaf\x79\xfa\x89\xed\xd6\x0b\xed\x61\x76\x7c\xbc\x0c\x04\xb2\xfb\x8a\x6c\x31\xa9\x4d\x80\x8c\xa7\x07\xf9\x17\x9e\x4b\x42\x54\xf1\xb5\x03\x8b\x6a\x2b\x41\xd5\xce\x17\x7a\xea\x2d\x80\xf2\x48\xe7\x92\x37\x25\xac\xb3\x2f\x0f\x39\xa2\x2b\xa2\x34\x0c\x33\xd7\xbf\xb3\xd8\xbf\x78\xf9\xf0\xc1\xbb\x9b\xb3\x83\xdb\xd6\x54\x7b\x5a\x8c\x31\xdd\x62\x99\xa8\x3c\x5c\xce\x18\x43\x37\xe3\xc2\x18\x83\xf7\xde\x7b\xcf\xfe\xc7\x7f\xfc\x87\x67\x49\x47\x5d\x1a\x5a\x96\x1c\x86\xe4\x18\x42\x6d\x99\xb1\xdf\x14\xa3\xcd\x47\x91\x1a\x5f\x69\xe4\x28\x75\x02\xa9\x13\x53\x1e\x9a\xac\x52\x67\x0f\x8d\x50\x35\x1e\x52\x39\xb8\xfc\x21\xe3\x1d\xe3\xa5\x75\xfc\xd8\x28\x5f\xe3\x11\xca\x4f\x02\x8b\xda\x48\x5d\xca\x43\xaa\xf3\x18\x60\x09\x01\xa8\x18\xef\x69\x1c\xb9\xc6\x3b\x25\x7c\xd8\x81\x9f\x4f\x97\xe2\xc0\x7d\x88\x39\x21\x4e\x9b\x0a\xa8\x25\xfa\x69\x82\x56\xa7\x92\x1e\x85\xe8\x3f\x74\x70\x00\x7a\x0d\xd7\xdf\x69\xdb\xad\x7e\xe6\x76\x81\xfa\x8c\x47\x28\x1d\xbf\xae\x83\x0c\x3d\xed\xc4\x72\x0f\x23\x17\xf9\x81\x01\x9c\xe2\xda\x1a\x37\xec\xe5\x76\x77\xaf\x35\xdc\x8f\x88\xcc\x83\x56\xa7\x1a\x78\x51\x27\x0f\xa6\xcc\x2b\x75\x02\x43\xb3\x65\x94\xde\x4a\x04\xd3\x80\x91\x69\x3a\x53\x4a\x90\x2a\x64\xc2\x18\x9f\x38\x71\x22\xfb\xda\xd7\xbe\xe6\xd1\x65\x06\x4c\x6e\xca\xcd\x60\x5a\xcb\x07\xf9\xca\xf1\xed\xd6\x47\x17\x7b\xf9\x33\x06\x68\xd5\x15\x82\x7d\xd9\x93\xee\x85\x2d\x16\x39\x4b\xb4\xca\xb5\xcb\x11\x94\x4c\xe8\xeb\xe8\xc4\x6f\xc4\x82\x38\x4d\x62\x0a\x34\x63\x98\xf6\x96\xaf\xf9\x93\xa9\x45\x67\x3c\x60\x29\xa6\x32\xc9\xa6\xe1\x87\x33\x83\x1b\xef\x1f\x3e\xb8\x70\x7f\xbe\x7f\x73\xd0\x70\xdb\x30\xf5\xa3\xfc\x51\x6c\xc6\x75\xce\x79\xd0\x52\x6e\xc4\x05\x60\xdf\x79\xe7\x1d\xfb\x8b\x5f\xfc\xc2\xbf\x41\xc4\x03\x57\x66\x3e\x62\x0c\x8d\x34\x63\x41\x1b\x65\x4a\x40\x45\x32\x70\x29\xa3\x5f\x29\x50\xa7\x17\xea\xc4\x12\x0f\xe9\xf9\xe3\x00\x80\xd4\x3c\x62\x23\x13\x4d\x5e\xcd\x20\x68\xed\x15\x03\x9d\x52\x9d\xa5\xce\x40\xf0\x38\x89\xbf\x94\x77\xaa\x43\xf6\x69\x43\x60\x24\xd5\x01\x6a\x80\x55\x0b\x8f\x33\x40\x8b\x81\xcc\x18\xf8\x8c\xc5\x4f\x2b\xd3\xe3\xf4\xdb\x69\xc3\xb4\xb3\x3d\x29\x69\x3e\x5c\x30\xb0\xa3\xcc\x0d\x77\xdb\xc3\xad\x5e\x6e\xb7\xc7\x91\xf5\xad\x02\x13\x40\x42\x98\x4d\x99\xb8\x97\x90\x8d\x7c\x5b\x2e\x50\x01\xe5\x42\x55\xc9\x8f\x82\x14\xbe\x84\x64\x00\x58\x83\xe1\x41\x73\xb4\xf5\x68\x66\xb8\x2d\x17\xf0\xb1\x42\x0a\xb8\x90\xec\xe6\x34\x33\x25\x3c\x48\x03\x48\xc9\x3e\x4d\xd8\xa8\x0f\xdb\x51\x3e\x4c\x48\xc9\x7b\xa2\x12\x9a\xcd\x26\xe6\xe7\xe7\x33\xb2\x9e\x37\x39\xdb\x62\x4d\x67\x75\xaf\x79\x7a\x6d\xa7\xf5\x7c\x6b\x98\x1d\xab\x6d\x81\x52\x50\x71\x6d\xc9\x08\xe4\xcd\x1e\x47\x17\x8e\x50\xec\xfe\xae\x07\x07\x86\x40\x28\x53\x53\xc3\x45\xf5\xd9\x1b\xce\x88\x9d\x44\x54\x1d\xea\xef\xcf\x10\x40\x39\x75\xb8\xd7\x1a\x6d\x5e\x59\xe9\x5e\xb8\xb5\xd4\xbf\x72\xd0\xb4\x5b\x1e\xb4\xa0\x3a\x64\x6e\xe2\x80\x39\x14\xdf\x20\x42\x51\xaf\xbd\x5e\x8f\x1e\xe5\x4f\xc1\x84\xe6\x7c\xb8\x83\x08\x8d\xc2\xa9\x11\xd2\x66\x2d\x78\xd0\x46\x61\xd2\x2c\x07\x04\x1a\x3e\x53\x21\xe9\x18\x97\x27\x36\x13\x21\x75\xa2\xd0\x6c\x88\x54\x6e\x7f\x1f\xeb\x47\x5c\x9e\x10\xc0\xd2\x64\xd2\x66\x71\xe8\x3d\x4d\x37\xcd\x68\x48\x93\x89\xd3\x51\x7a\x1a\x27\xf1\x0f\xc9\x4e\x69\xa6\x69\x07\x49\x7f\x34\xdd\xe0\x46\x31\xa6\x13\x12\xd0\xd3\x68\x79\xe0\xa0\x37\xc5\x06\xc6\xf4\x53\x03\xf4\x21\x7d\x08\xf1\x4f\xe9\x63\x29\xf4\x9e\x86\xd7\xab\xa6\x13\x34\x4e\x6a\x9f\x90\x4c\x9a\x3c\xdc\x19\x96\x7f\xd6\xc0\xee\xb4\x47\x3b\xbd\x7c\xb4\x09\x4c\xce\x67\x7b\x7f\xa0\xf9\x0d\x3e\xe8\x35\x18\x0f\x32\xcb\x68\x53\x6d\xd0\xad\x01\x10\x42\x5f\x9d\xa2\x6e\x6a\x3e\xa6\xcc\x83\x6e\x8b\x2c\x0b\xe2\x6c\xbf\x61\x77\xb7\x3b\xa3\x7b\x5b\x33\xc3\x5d\xd4\x07\xa3\x29\x21\xd6\xdf\xa4\xfe\x12\xb3\x2d\xf4\x57\x6b\x03\x40\x6f\xcb\x90\x1e\x49\x83\xb8\xff\xf1\x8f\x2c\x86\xc2\xd4\x60\xe8\xc4\x89\x13\xf8\xe4\x27\x3f\x09\xa0\xb6\x44\xe4\x37\xe4\x96\xe0\x65\x79\x3f\x5f\x79\x62\xbb\xf5\xb1\xc5\x6e\xfe\x74\xe6\xd0\x99\x54\x09\x16\xcc\x24\x58\xae\x5e\x37\x26\x27\x1b\x1a\xae\xbf\xfe\x70\x21\x49\xed\xaa\xe5\x9e\xc9\x14\x8c\x08\x7e\x96\xc5\x7f\x66\xc0\x10\xe8\x52\x66\x5d\x26\x18\x64\xb6\x7b\x7b\xb1\xb7\x7e\xf5\x50\x77\x7d\xa7\x3d\xbc\xef\x97\x88\x50\x01\x96\x12\xb4\x18\x63\xfa\xfe\x80\x39\x10\x25\xb8\x70\xe1\x82\x7d\xff\xfd\xf7\xa9\x24\xdc\xc8\xf0\x5f\xee\xb4\x34\x03\xc1\x83\x34\x4a\x8f\x39\x3e\x0e\x98\xb4\x74\x9a\x13\x99\x26\x9f\xd0\x2c\x87\xe4\x58\x2c\xa3\x95\xf8\x4a\x21\x34\xa3\xc1\xeb\x57\x32\xf8\x12\x6f\xde\x06\x29\x40\x27\x16\x2f\xe5\x43\xf9\xd3\xe7\x92\xd3\x97\xea\x53\x02\x91\x19\xa3\x8b\xb5\x19\x07\x29\xda\x2f\xcf\x4f\x6a\x63\xce\x27\xe6\xec\x42\x4e\x56\xca\x27\x46\x2b\x39\x68\x2d\xc4\xea\x85\xeb\x55\x4c\x7e\xde\x86\xd3\xea\x8b\xc4\x3f\x16\x24\x70\xa9\xd9\x8a\x69\x7c\x12\x6f\xcf\x98\xfe\x13\xe0\xe2\x86\xdb\x9d\xe1\xee\x4e\x67\x74\x67\x64\xd0\xa7\xf6\xbb\xdc\x83\x62\xd8\x6a\x3e\x79\x5e\xd2\x92\x3d\x93\xf4\x40\x3a\x03\xff\x99\x16\x7f\x56\x8b\xab\xd1\x73\x3e\x7c\x9f\x64\x6d\xff\x23\x79\x66\x0d\x86\xdd\x96\xdd\x7a\x34\x33\xbc\xd7\xcb\x5d\x17\x10\x37\xe2\x5a\x00\xda\xc9\xb9\xb5\x7a\x60\xf1\xdc\x26\xd6\xf8\x45\xe2\x63\xed\x26\xe9\x00\xe7\x91\xea\x17\x3e\xd4\x1e\x97\x94\xf0\x3b\xe5\xbf\xb8\xb8\x88\xa3\x47\x8f\x96\xb3\x2d\xf4\x63\x8a\x28\x40\x4b\xc3\xa2\x73\x64\xb7\x75\xfa\xc8\x6e\xeb\xd9\xf6\xd0\x1c\x83\x33\x59\xfd\x84\x43\x12\x3c\x0c\xa6\x4b\x33\xc5\xbe\x92\xc9\x1d\x56\xc5\x73\xd0\xe3\xa0\x4b\xa8\x81\x3a\xfa\x71\xd5\xf1\xd1\x7e\x33\x6e\xb1\xaf\xc6\x50\xf5\x27\x13\x35\x13\x6f\x39\x95\xc8\xbc\xea\x36\xfe\x6a\x6b\x66\x78\xe7\x83\xc3\xdd\x77\x1f\xcc\x0d\x6e\x0e\x1a\x6e\xd7\xa1\x3c\xa7\x85\x7f\x38\x51\x3a\x64\x0e\x17\x2e\x5c\xb0\x6f\xbf\xfd\x36\x1e\x3e\x7c\x48\xb3\x0c\x29\x95\x0f\xa1\x11\x62\x4a\x5b\xa7\x8e\xfe\x52\xee\x39\xca\xe7\x32\xf1\x78\x49\x76\xcd\x21\xf1\x8e\x1a\x1b\x79\x84\x78\xf0\x78\xce\x37\x66\xf8\x35\x03\x23\x19\xeb\x14\xb9\x38\x6f\x2d\xcf\xd0\xe8\x88\x1b\x2c\x0e\x2a\x34\x9e\xd2\x7d\x4a\x7d\x4a\x86\x36\xd5\xe1\x4b\xb2\x49\xb2\x84\x46\xf8\x52\xfd\x4a\x75\x10\x93\x8b\x83\x26\x49\x16\x29\xc4\xfa\x81\x24\x27\x95\x49\xd3\x8f\x14\x7d\x48\xed\xd7\xa1\x7a\x8b\xd9\x11\x1a\x17\x02\xb9\x52\x1c\x1f\x5c\x69\xc1\x3b\xf3\x02\xb8\x60\xb8\xd7\x1a\xed\xde\x9b\xef\x5f\xeb\xe5\x76\xcb\x15\xcf\x6b\x66\xbf\x66\xa2\xab\x99\x77\x69\x29\xa7\x5c\xce\x31\xd5\x7e\x16\x0a\x7e\x4a\x4f\xc1\x66\x61\x68\xe0\x2f\x8e\xd0\x6b\x67\xc6\xf9\x0f\x1b\xae\xbb\xdd\x1e\xde\xdb\x98\x1b\xdc\x75\x06\x16\xc2\x21\xa2\x15\x3f\xc3\xfb\x0c\x84\x7b\xed\x59\xea\x80\x42\xa3\x97\x9e\x4b\x6d\x14\xb2\xd1\x6a\xfa\x0f\x0b\x2c\x92\x94\xe5\x77\x11\x8e\x1d\x3b\x96\x9d\x3a\x75\x8a\x02\x96\x8c\xbe\x4d\x84\x72\xb6\xa5\xb9\x7c\x6c\xa7\xf5\xdc\x62\x37\x7f\x9a\x7e\x87\xa2\x54\x28\x47\x94\x4a\x9e\x28\xa9\x34\xaf\x08\xe3\xd9\x10\x19\xbd\xba\x1a\xa3\xea\x4c\xdc\x1a\x0a\x66\x9b\x59\x3c\x0d\x5f\x57\x05\xa5\x2a\x0f\x13\xa0\x7b\x6d\x1c\xba\xb9\xdd\xbd\xb1\xdc\xbb\x70\x73\xa9\x77\xad\x9b\xdb\x6d\x18\xec\x16\x1f\x4c\x9c\x98\x71\x29\x0e\x99\xab\x29\xd4\xc5\x8b\x17\xed\x5b\x6f\xbd\x85\xcd\xcd\x4d\xcd\xe9\xa5\xea\x84\x36\x92\xe3\x41\x1b\xd9\xd1\x38\x69\xd4\x1a\x1a\xa5\x85\x46\xde\x94\x56\x72\x10\x52\x67\xa4\x65\x0f\x39\x29\x89\x2f\x0d\xda\xac\x89\xc4\x47\x92\x29\x54\x57\x3c\x0f\x7f\x1d\x1a\x4d\x6b\xce\x24\xe4\x08\x62\x74\x52\xbb\xa7\x38\x26\xfe\x9c\xf3\x08\x01\x1f\x0e\x0c\x62\x46\x92\xca\x10\x92\x2f\x05\x34\xd1\x10\x02\x89\x21\x27\xcd\xeb\x4c\xd3\xb3\x98\x61\x97\x80\x5b\x6c\x14\x2b\xc5\xf3\x91\xb5\x24\xa3\x94\x67\xc8\x29\xc5\x6c\xbd\x26\x6f\x0c\xb0\xf0\xbe\x21\xc9\x1b\x73\xae\x16\x18\x2f\xa9\xf8\x4f\x9b\xc0\x60\x38\x68\xb8\xee\xed\xc5\xfe\xf5\xed\xce\xf0\x86\x35\x6e\xc8\x77\xb6\xd0\x6d\x01\x7e\xb8\x4a\x5d\x03\x07\x1e\x74\x36\xbd\x02\x34\xa6\xb6\x31\x57\x02\x2c\x8e\x8c\xaa\xeb\xc0\xc8\xd5\xf8\x38\xe3\x6c\xb7\x39\xda\x7a\x30\x37\xb8\xb1\x39\x3b\xd8\x84\x0c\x5a\xca\xb2\x02\xc0\xc6\xc6\x06\x2e\x5f\xbe\xec\xeb\x2c\x14\xa4\x3e\x91\x02\x18\xa5\xe7\xd3\x00\x60\x6e\x8f\x25\xfe\x13\x83\x8f\x69\x9c\x95\xa6\xd4\xb1\x91\x93\x16\x27\x29\xa9\x3a\x4a\x38\x7e\xfc\x38\xce\x9e\x3d\xeb\x0f\x9a\x03\xf9\x3e\x83\xff\xa8\x62\xab\xe1\x4c\xeb\xd8\x4e\xeb\xec\x91\xdd\xe6\xb3\xed\xa1\x59\x83\x43\x36\x31\x93\x61\xaa\xad\x22\xa6\xd2\x8a\xe2\x21\xaa\x89\x13\xa2\xa1\x86\x00\x88\xf2\xd4\xdb\x92\x5f\xc1\xa8\x38\xff\xb9\xb6\xf6\xc9\x37\x74\xb1\xfd\xbe\xb4\x33\x94\xc9\xfc\xe6\xdb\x62\x4e\xb1\x9a\xac\x71\x18\x66\xae\xff\x60\x6e\x78\xed\x83\x95\x83\x0b\x3b\xed\xe1\x03\x6b\x9c\xdf\x80\x4b\x4f\xc6\xf5\x33\x2e\xe5\x9e\x16\xba\x06\x7a\xe1\xc2\x05\x3c\x7c\xf8\x30\x36\x82\xd4\x40\x00\x37\x9c\xb1\xd1\x91\x34\xba\x94\x46\x4a\x12\x9f\xd4\x91\x01\x8f\x0f\xe9\xb2\xe6\xb0\x24\xc3\x17\xe3\x45\x79\x4a\x46\x59\x1b\x61\x70\x39\xe8\x6f\x0a\xd0\x9f\x66\x30\x30\xed\x68\x4b\x1a\xfd\xa4\xb4\x0d\x6d\xc3\x94\x3a\x93\xc0\xa3\x06\x08\x38\xbd\x46\x23\xa5\xe1\x32\xd2\x67\xdc\x79\x4b\x71\x29\xfc\x63\x80\x2b\x05\x50\x73\x90\xc5\x75\x2a\xc6\x83\xe7\x89\xc0\x73\xe9\x59\x0c\x38\xc6\xc2\xe3\xb6\xb9\x24\x8b\x44\x2f\xa5\xd1\xda\x0f\xef\xbd\xf7\x1e\x06\x83\x01\xb7\x67\xfe\x03\xb2\xd6\xbf\x5d\x69\x0d\x86\x1b\xf3\x83\xcd\xfb\xf3\x83\xcb\xbd\xdc\xed\x3a\xc0\x96\xcb\x3c\xa0\x13\xf2\x64\x3d\x7f\x7c\x51\x1b\xa6\xfa\xe0\xcf\xd5\xaa\x68\x08\xec\xf1\x4b\x48\x35\x1f\x50\x0c\x61\xc9\x06\x98\xca\x15\xd5\x0f\x37\x2d\xec\x7f\xf7\x51\x67\x78\xe7\xde\xfc\xe0\xda\x7e\xd3\xee\xa3\x0e\x5c\xca\xb7\x45\xfd\xe7\x0a\x00\xe0\xde\xbd\x7b\x58\x5f\x5f\x97\xc0\x1f\x0d\x7c\x20\x18\xd2\x87\x14\x90\x48\xf9\xd2\x78\x09\x2c\x87\xd2\xf3\xb4\xe5\x73\x49\xc9\x43\xc8\x28\x14\xb4\xce\xa4\x39\xc9\x98\x73\x14\x3b\xa0\xff\x26\x11\xf9\x36\x91\x3f\x29\xb7\x35\xdf\x6b\xf8\xd9\x96\x73\x99\x33\xf3\x86\x2c\xdf\x90\x55\x9c\xb1\x4a\x4d\x4c\xa0\x54\x53\x31\xa5\xb2\x4a\xeb\x91\x8e\x2c\x15\x91\x2f\x85\xfa\xe5\xa1\x32\x50\x10\xe4\xe8\x7a\x23\x49\x23\xac\x41\xfa\x83\x84\xc6\x67\x0f\xf9\xe3\xa0\x1d\xac\x81\xdd\x6b\xd9\xcd\xeb\x87\xba\xef\xde\x5d\x18\xdc\xb4\xe3\x99\x16\xff\x16\x11\x3d\x19\x77\x48\x8f\xf3\x47\xb5\x21\x17\xb7\x6e\xdd\xb2\xbd\x5e\xcf\x67\xa5\x8d\x04\x25\xc4\x1d\x42\xbf\x9a\xc3\xe1\x8a\x29\x8d\x8e\x32\x4c\x76\x92\x69\xc1\x74\x8a\x53\xd5\x9e\x71\x1a\x09\x48\x48\x0e\x24\xc4\x53\xd2\xf3\xd8\xe8\x9c\x3a\xab\x58\xfd\x6b\x3c\x68\xfe\x21\x99\x42\x81\x1b\x95\x50\xdb\x68\x20\x45\x03\x19\xd2\xaf\x74\x2d\x81\x5b\x29\x8f\x14\x3d\xe1\xe0\x98\xf3\xe0\xb4\x21\x3b\xa8\x0d\xb4\x1e\x07\x60\xc7\xe8\x42\xf5\x27\xc9\x24\x81\xb2\x10\x88\x4c\xe9\xab\xb1\xb4\x52\x1f\xd0\xea\x4c\x92\x67\x5a\x9d\xd6\x06\x1b\x13\xe9\x5f\x7b\xed\x35\x6f\xe7\xb8\xef\xf0\x8e\x7e\x08\x60\xe8\xe0\xfa\x07\x4d\xbb\x7b\x6b\xa9\x77\x79\xa7\x3d\xba\x35\xca\x5c\xb5\xd7\x85\x7d\x60\x71\x3c\xd8\xa5\x9b\x04\x00\xe3\x28\xb0\xa8\x76\x3c\xd6\x52\x15\xa3\x60\xff\x76\x68\x7d\x27\x0d\x85\x29\x14\xb6\x8c\xaf\xd9\x5e\x1a\xbb\xdf\xb4\x9b\xf7\xe6\x07\x57\xee\xcd\xf7\x6f\x3b\x38\xfa\xd9\x96\xda\xac\x8b\xb7\xf7\x42\xfd\x69\x7a\xa5\xd9\xa8\x50\x7b\x6a\x21\xd4\xe7\xc0\x9e\x49\x7e\x85\xf3\x17\xed\x47\x48\x79\x24\x61\xb4\x7b\x2d\x2e\xc6\x37\x94\xae\xa4\x9f\x9f\x9f\xcf\xe6\xe6\xe6\xca\x07\x7e\xb6\xc5\xef\x6d\x71\xce\xb5\x0c\x4c\xeb\xc4\xa3\xf6\xc9\xd5\xdd\xe6\xb3\xed\x91\x59\xcb\x50\x7c\x2d\xd3\xef\x7a\xaa\xcd\x80\xf8\x93\x73\x29\xaa\x99\x9c\xfd\x28\xd3\x51\x95\x32\x95\xfa\x39\x63\xca\x4d\xb5\x60\x87\xff\xd0\xe9\xc4\xf1\x64\xcc\xe4\x84\x61\x6d\xf6\xa6\x14\xa5\x42\xda\xfe\xb0\x24\x00\xe8\x37\xec\xfe\xdd\x85\xfe\xe5\xcb\x2b\x07\x17\x7b\x4d\xeb\x5f\x7d\x2e\x97\x86\xfc\x21\x73\xa8\x8e\xf3\xa7\x40\xd0\x6e\x6c\x6c\xd8\x1f\xff\xf8\xc7\x7e\xb6\x85\x03\x06\xee\x9c\x25\xc7\x40\x95\x3f\x15\x90\x80\xc4\x49\xce\x4f\x52\xde\x18\xa2\xa7\x41\x03\x13\x9c\x46\x4b\xa7\x39\x9f\x94\x11\x21\xcd\x33\x46\x1f\x32\xec\x52\xfd\x71\x1a\xed\x59\xa8\x4e\x35\xc7\x92\x02\x6c\x78\x79\x24\x19\xf9\x28\x28\x96\x37\x6f\x6b\x9e\x3e\xa5\xce\x25\xa0\x9b\x12\x42\x40\x47\x6a\x43\x4d\x27\x78\x3d\xa7\xb4\x2b\x4d\x4f\x69\x53\xc0\x19\x97\x2b\x95\x86\xb7\x0f\x95\xcb\x3f\x0f\x81\x00\x29\xad\x94\x77\x48\x6f\x28\x0d\x97\x33\xe4\x44\x35\x79\xb5\x41\x40\x30\xd0\xa5\x72\x62\x13\xfd\xb9\x56\x7d\x00\xfd\x5b\x4b\xbd\x9b\x77\x17\xfb\xeb\xdd\xa6\xdd\x72\x66\x3c\xeb\x52\x1e\xfc\xc6\x3e\x8e\xe8\x2d\x37\x80\x9a\xb3\xa0\xcb\x42\xe3\x74\x28\x3f\x11\x03\x9a\xa6\x96\xa2\xee\x27\x0c\xc9\x8f\x2e\x04\x38\x38\x0c\x32\xb7\xbf\x39\x37\xb8\x76\x6b\xa9\x77\x79\xbb\x33\xda\x2a\x5e\xba\xe0\x67\x73\x85\xda\x4d\x6a\xf3\x98\xbd\x95\x74\x5e\xa3\x8d\xe9\x42\x4c\x26\xcd\x1e\x48\xfe\x2a\x59\x09\x78\xa7\x8b\x39\x8b\xd4\x10\x1b\xe5\x00\x40\xf6\xc9\x4f\x7e\x12\xcf\x3e\xfb\x6c\x89\xba\xd9\x57\xa0\x5b\xc6\x98\x56\xd3\xa2\x73\x6c\xa7\xf5\xd1\x85\x5e\x7e\x36\xb3\x66\x96\x6f\xc6\xf5\xdf\x25\xaa\x66\x40\xc6\xcb\x31\xe5\x57\x99\xfd\xaf\xa7\xf7\xaa\x63\x38\x12\xae\x94\x90\x6e\x41\xf1\xcf\xca\x2b\xb2\x99\xa6\xc2\x48\xd5\xee\x2b\x9f\x96\x2f\x23\xd5\x22\x0b\x61\x87\x99\xeb\x3f\x9a\x19\xde\xba\xba\xd2\xbd\x70\x6f\xbe\x7f\x17\xd5\x92\xd0\x3e\xb9\xf6\x1d\x71\xe8\x95\x99\x22\xef\x57\x5e\x79\x05\xbb\xbb\xbb\x9a\xd1\xd7\xda\x33\xe4\x5c\x78\x88\x8d\xc0\x42\x00\x47\x72\x6e\x31\x70\xcc\x9d\x7e\xc8\x19\xa7\x8c\xf6\x68\xfe\xd3\x3a\x95\xe8\x08\x41\xc9\x9b\x3b\x3f\xcd\xb9\x6b\xb2\xc7\x9c\x2e\x97\x21\x95\x9f\x94\x8e\xd3\x72\xba\x10\xd8\xd0\x64\xe5\x74\x12\x88\x0d\x81\x3b\x2d\xdf\x10\x70\x88\x39\x6d\x1e\x27\x19\xfb\x58\x7c\xc8\xb0\xf3\x32\x48\x60\x8f\xa7\x93\xda\x85\xff\x69\xf9\xd1\x10\x03\xac\xa9\xf1\xa1\xb6\x94\xea\x9d\xcb\x1d\x73\xa2\x60\x74\x92\x0e\xc4\x64\x05\x50\xcd\x92\x10\x00\x33\x64\x7f\xfd\xed\xce\x68\xeb\xf2\xe1\x83\xb7\xef\xcf\x0f\xae\xf4\x1a\x6e\xbf\xe6\x39\xf8\x87\x73\x31\x79\x4b\xed\x7e\xe9\x3f\x2a\xf7\x41\x9e\x54\xfb\x5d\x78\xfa\xf2\x96\x9d\x94\xeb\x00\x8c\x0c\x86\xdb\x9d\xe1\x9d\xeb\xcb\xdd\x8b\x77\x17\xfa\x37\x61\x82\x2f\x5f\x94\x7a\xd5\xef\xf7\x6d\xbf\xdf\x07\xa6\xd3\x7d\x1a\x38\x58\x91\xf4\x8f\xf3\x0a\x81\x4b\xa9\xfd\x63\xfa\x4f\xd3\x96\xbf\x21\x63\x1e\x33\x90\xf4\x3e\x64\xb8\x42\x41\xe3\x57\xe6\x29\x1c\x63\xec\xf7\xb6\xe4\x7e\x53\xae\x73\x2e\x3f\xb1\xd5\x39\x76\x78\xaf\x79\xbe\x3d\x34\xab\xc6\x99\x9c\x6e\xc6\xad\xbd\x83\x06\xd4\xb7\x82\x7b\x44\x4c\x7f\xd9\xb2\x4e\xf9\x19\x00\x0a\x42\xc8\x37\x24\xca\x6f\x2b\x96\xc9\xa8\xcc\x94\x57\xb5\x69\xc6\x95\x8f\xf8\x3a\x69\xb1\xac\x54\x7c\xf4\xcb\x01\xf6\xa0\x69\xb7\x6e\x2d\xf5\xd6\xaf\x1e\x3a\x78\x1f\xa8\x0e\x99\x2b\x8e\xf4\xef\x16\x9b\x73\xe9\x79\x2d\x16\x18\x6f\xd0\x72\xce\xd9\xd1\x68\x24\xd5\x71\xa8\x7d\xb9\xf3\xd3\x0c\xf9\x04\x12\x86\xac\x84\xb1\xe7\x5c\x06\xc9\xb8\x69\x32\x69\x46\xdd\xb2\x6b\x2d\x0f\x0d\x94\x73\xb9\xb8\x03\x91\x1c\x15\xaf\x8f\x54\x87\xce\xe9\x35\x07\x19\xaa\x0f\x29\xad\x54\x87\x5c\x26\xe9\x5a\x6b\xd3\x54\x60\x29\xc9\x20\x95\x8b\x1b\x3e\x4d\x76\x09\x50\x4a\xc0\x06\xa8\xe7\x25\xc9\x26\xe9\x83\x24\x4f\xcc\xe6\xc5\xc0\x4d\xc8\x09\xf3\x34\x3c\x48\xf5\x22\x0d\x22\x34\x59\x34\xbd\x93\x40\x05\x4f\x47\xcb\x20\xd5\x37\x4f\xc7\x83\x26\x0b\x97\x99\xcb\x13\x8a\x97\xfa\xa9\x94\xae\x8a\xb4\xb6\x04\x2b\xec\x05\x05\xba\xbc\xd2\x47\x31\x63\x7d\xed\x50\xf7\xfa\xe5\x95\xee\x7f\x6f\xcd\x0c\x6e\x0c\x33\xd7\xaf\x5e\xb3\xc0\x78\x1c\xea\xf7\x56\x16\xfc\xe9\x07\x7a\xab\x59\x96\xda\x3b\xa3\xec\xba\xbe\xcc\x54\x9b\xb4\x29\x5d\x04\xdd\x8c\x5b\xcd\xf6\x1f\xb4\xec\xe6\xb5\x43\xbd\x77\xaf\x2d\xf7\x2e\xed\xb7\xec\x36\x8a\x83\x45\x49\x19\x86\x45\xb9\xec\x98\xcd\xf8\xf7\xad\xb7\xde\xc2\xeb\xaf\xbf\x1e\xf2\xd9\x20\xd7\x9a\xee\x4b\xfd\xc6\x3f\x8b\xd9\x17\x4d\x7f\xa4\x6b\x4d\x17\xf9\x73\x2b\x09\xcc\x83\xd6\xd1\x32\xf6\x37\x4d\xd0\x3a\xae\xc8\xe7\x6b\x5f\xfb\x1a\xce\x9f\x3f\x5f\x7e\xf5\x92\x1e\x3a\xe7\x97\x8a\x8c\x31\xad\x33\x0f\x3b\xe7\x97\xba\xf9\x33\x0d\x6b\xe6\x4b\xcc\x40\x37\xe0\x82\x6c\xc8\x45\x7d\x2a\x8e\x06\x3a\x4d\x48\xb5\xab\xb6\xac\x63\x2a\x45\x96\xc8\x6b\xbf\x5e\xc3\xd9\x9b\x45\xa6\xfe\x5f\x2d\x94\x1b\x7e\x8d\x41\x3f\x77\xfb\xf7\x16\xfa\x57\xde\x3f\xdc\x7d\x77\xaf\x6d\xb7\xc0\x0e\x99\xa3\xa0\x05\x6c\x89\xa8\xf8\x80\x22\xfe\xea\xaf\xfe\xca\xf6\xfb\xfd\x10\x48\xe4\x41\x72\xc4\xa1\x74\x9a\x23\xd4\xf8\x49\x06\x50\x73\xa0\x34\x2e\x04\x3c\xa4\xfc\xac\x40\x1b\x03\x33\xa1\xf4\x60\xf1\x5c\x46\x2e\x6b\xa8\xce\xa5\xb2\x49\x32\x48\xf2\xd0\x38\xa9\x1e\x52\xdb\x5a\x73\xce\x52\xfe\x3c\xdf\x94\xb2\xf0\x38\xe9\x7a\x9a\x7c\xa5\x76\xd7\x74\x40\xe3\x1b\xca\x5f\x32\xac\x34\x68\xb6\x2e\x56\xff\x52\xbc\x56\xce\x94\xbc\xa5\xfe\xc8\xcb\x14\x02\xbc\x92\x8c\xd2\xbd\x26\x6f\x08\xb4\x6a\x3c\x53\x64\xe0\xe9\xb4\x32\x48\xa1\xf6\xfc\xef\xfe\xee\xef\xec\xfd\xfb\xf7\x4b\x7e\xcc\x2e\x0e\x51\x7f\x03\xb3\xeb\x0c\xba\xeb\x47\xf6\x2f\x7d\xb0\xd2\xfd\xcd\x76\x67\x78\xc7\x1a\x0c\xc9\x38\xb3\x16\x6a\xdb\x00\x48\x7c\xed\x45\x52\x3a\x65\x22\x04\x72\x56\x5d\xe5\x8b\x6a\x19\x8d\xaf\x0f\x9a\x76\xeb\xfa\x72\xf7\xed\x4b\x47\xf6\xdf\xdd\x9c\x1b\xdc\x43\x61\xfb\x0b\xbb\x4f\x6d\x3f\x2d\x23\x0f\x5a\xdb\x4c\xd3\x0f\x52\xfb\x98\x66\x0b\xb4\xfe\x9a\xe2\x2f\xf8\x35\xf2\x00\x83\x90\xf2\x84\x0a\x11\x72\x76\xbc\x22\x34\xf0\x62\xd9\x73\x0a\x92\xfc\xab\xcf\xe3\xbd\x2d\xc6\xb4\x8e\x3d\x6a\xad\xae\xee\x36\x3f\xde\x1e\x66\x6b\x06\x28\x3f\xa6\xe8\xb7\xc1\xd6\xbf\xe2\x5c\xdf\xad\xed\x81\x6d\xa5\x33\x14\x2b\xd7\x43\x4d\x31\xd5\xe2\x0b\x6c\x24\x18\x1e\x48\xe2\x7f\x47\xc6\x0d\x1f\x75\x86\xf7\xae\x1d\xea\x5d\xb8\xb3\xd8\xbf\x89\x62\x23\x2e\xd8\x99\x2d\xce\xb9\x72\x79\xa8\xb8\xb6\x00\xb0\xbb\xbb\x8b\xef\x7f\xff\xfb\x3c\x1b\xda\x3e\x9a\x13\x04\x89\xd7\x0c\x29\x84\xf8\x50\xfa\x10\x1f\x9f\x36\xc4\x93\xff\x6a\x3a\x16\x72\xd2\xb1\xf2\x6a\x69\xb8\xce\x6a\xce\x42\x4a\xc3\x43\x4a\x5d\x6b\x75\x16\x6a\x3b\x49\x6e\x69\x74\x1a\x03\xa1\xb1\x3e\x2e\xf1\x4e\x19\x05\xa7\xd6\x39\xa7\x91\xea\xe9\x71\xd2\x49\x34\x92\x7c\x5a\x1e\x29\x72\xa7\x84\xc7\xe5\x9d\x62\xec\x35\xdd\x93\x6c\x6e\x0c\x58\x53\x9a\x10\x6f\x29\xad\xa4\x9f\x92\xae\x87\x42\x4c\x36\x2d\x9f\x89\x50\x0c\x7a\x2d\xc6\x0e\x3e\x43\x35\xeb\x52\xee\x73\x01\xb0\xdf\xcd\xed\xf6\xfa\x91\x83\x77\x72\x6b\x5a\x4f\x3d\x30\x58\xea\x36\x8e\x37\x46\x26\xaf\x1d\xb0\x42\x97\x7f\x1c\xf1\x28\xd4\xa5\x14\xa7\x9c\xd7\xde\x0a\x62\x69\xfd\xb6\x04\xea\x76\xc6\x83\x66\x57\x0e\x92\xbb\xcd\xd1\xf6\xf5\xe5\xde\xdb\xbf\x3d\xba\xf7\xdf\x1b\x73\x83\x9b\x8e\x6c\x0d\x20\x72\xfb\x36\x29\x67\xda\x85\xcd\xb9\xa9\xf6\x3b\xf5\xb9\x64\x87\x1f\xd7\x47\x48\x21\x36\x23\x83\x06\xea\x98\x30\x23\xf7\xfe\x5a\xfa\x0b\xd1\x9b\x00\xbd\x44\xeb\x0b\x47\xe9\x33\x00\xee\x2b\x5f\xf9\x8a\x39\x7d\xfa\x34\x1a\x8d\x86\x07\xa5\xb9\x31\xa6\x81\x31\x68\x69\x1b\x63\xda\x00\xe6\x9e\xbf\x3d\xf7\xc2\xc9\xed\xce\x57\x3a\xc3\xec\x09\x83\xf1\x32\x51\xf5\x01\x45\x53\x3f\x50\xce\xd5\x95\x8c\x2e\x11\x8d\x01\x0f\xdb\xb4\x12\x45\x28\x9e\xd6\xc5\x91\x4d\x84\x17\xc5\x39\x0e\xc0\x41\xcb\x6e\x5d\x5f\xee\x5e\x58\x5f\xdd\xff\xcd\x5e\xcb\x6e\xc2\x60\xc7\x39\xb7\x6b\x8c\xd9\x03\x70\x80\x0a\x79\x0f\x8c\x31\x03\x00\x23\x63\xcc\x08\x80\xdd\xdc\xdc\xb4\xff\xfc\xcf\xff\x8c\xfd\xfd\x7d\xaf\x58\xf5\xf5\x2f\x79\x2c\x40\x07\x11\xbc\x3d\x69\xf0\xcf\x32\x90\x7d\x65\xe4\x9a\xe6\xc9\x07\x28\x19\xbb\xe6\x6b\x69\x34\x8e\xa6\xf3\xcf\x2c\x7b\x66\x05\x19\x33\x16\xa7\xc9\x01\xd4\x65\xb2\x2c\x3d\xaf\x3b\x9e\xde\x0a\xcf\xb8\x01\x97\x64\xe3\xe5\xe1\x75\x6d\x14\x5e\x12\x70\xa2\xed\x25\xd5\x15\xaf\x6b\x4d\x1e\xb0\x34\x5c\x17\x24\xd9\x78\xfd\xd2\x74\xbc\xde\x40\x68\x79\xbe\x21\x1a\xc9\xf0\xc5\xd2\xf1\x6b\x8d\xb7\xa4\xdb\x5a\x48\xe1\xed\x03\x97\x31\x54\x1f\x21\xde\xa1\x34\x52\xd0\xca\xc3\x75\x43\xa2\x95\xf2\x92\xf4\x5e\x0a\x52\x79\x43\xcf\x39\x0d\xb5\x27\xa1\x3c\x78\x9f\xe0\x69\x6a\xe9\x6f\xde\xbc\x69\x0e\x1f\x3e\xec\x16\x16\x16\x68\x19\x32\x00\xa6\xd8\x72\x60\x48\x5c\x03\x06\x59\x2f\xb7\xc3\xbd\x96\xed\x3a\x83\x51\x67\xd8\xe8\xb4\x47\xd9\x5c\xc3\x9a\x86\x9f\xbd\x2f\x3b\x50\xe1\x2b\xc6\x7f\xe3\x5c\x9d\x19\xcf\xa4\x18\xe3\x5f\xbc\x20\x83\x64\xf2\xe3\x5d\x85\xbf\x06\xc8\xb7\xf1\x0a\x74\xb3\xdf\x1c\x6d\x5d\x3b\xd4\x7b\xeb\xdd\x63\x7b\x6f\xde\x5b\xe8\x5f\x2d\xbe\x45\xb7\x83\xf1\xe0\x75\x0f\xe3\x41\xeb\x01\x80\x1e\x80\x01\xc6\xc0\x65\x54\x94\xdf\xbd\xf9\xe6\x9b\xf6\x9d\x77\xde\xc1\x70\x38\x7c\x1c\xfd\x8e\x05\xde\x2f\x43\x69\x63\xba\x11\x93\x45\xd4\xa5\x9c\xdc\x48\x08\x27\x34\x3a\xcb\xd8\x2f\xa5\x0b\x8d\x7c\x52\x50\xb2\x05\x80\x85\x85\x05\xb4\x5a\x2d\x3a\xdb\x02\xe7\x5c\xf9\x36\x11\x1c\x5a\x4b\xdd\x7c\xfe\xe8\x4e\xeb\xe3\x9d\x41\x76\x3c\x73\x68\x95\xcd\x4f\x40\x72\x4d\x69\xa4\x69\x3f\x3e\x33\x02\x76\xef\x00\x7e\x9c\x6e\xf9\x21\xc4\x32\x9f\xc9\x7d\xe3\x25\x9d\xc1\x04\xae\xa9\x09\x20\xc4\x0f\x33\xdb\x7f\x38\x3b\xb8\x75\x7b\xa9\xbf\xbe\x35\x33\x7c\x00\x33\xf9\x0d\x22\xb6\x19\xd7\x92\x3f\x0c\x87\x43\x6c\x6f\x6f\x6b\x33\x05\x3c\x48\xa3\x6c\x69\x54\x14\x1a\xa5\xc5\x66\x6b\xb4\x91\x17\x4f\x1b\x1a\x2d\x48\xcf\x52\x46\x8e\x3e\x4c\x33\xeb\xa2\x8d\x0a\xb5\x3a\x8d\x8e\x12\x02\x79\xa4\xca\xcf\x9f\xa5\x8c\x62\x69\x1e\x5a\x5e\xb1\xd1\x93\x94\x4f\x0a\x9d\x0f\x5c\xbf\xb8\xed\xd0\xec\x03\xbf\xd7\x80\x8c\x06\xf0\x24\x59\x68\x1c\x9f\x35\x9a\x36\x5f\xce\x27\x04\x34\x79\xd9\x43\x6d\x2c\xe9\x4f\x4c\x86\x50\xd0\xea\x6c\x9a\x59\xa4\x90\x2c\xda\x6c\x88\x7f\xc6\xeb\x31\x66\x8b\x24\x7a\x40\xae\x43\x55\x8e\x9d\x9d\x1d\x3b\x18\x0c\x32\x72\xae\x89\x45\x35\xeb\xd2\x27\xbe\xa4\xeb\x9c\xcb\x8d\x31\xb9\xcd\x90\x6d\xcd\x0e\xee\xae\x1f\x71\xd9\x30\x73\xf6\xa9\x07\x33\xc3\xc3\x7b\xcd\xd3\xad\x61\xd6\x29\x67\x4c\x24\x5b\x5e\x80\x16\x67\xa8\x3b\x31\xfe\x51\x9d\x94\x0c\x01\xe8\x19\x61\x28\x4e\xc7\xdd\xe9\x8c\xee\x5d\x5b\xee\xbe\xfd\xde\xda\xfe\xdb\xf7\xe7\xfb\x57\x7b\xb9\xdb\x76\x70\xbb\x06\xe5\x41\xa3\xfd\x42\xe6\x72\xa6\x1d\xa8\x1d\xb0\x87\xfd\xfd\x7d\xff\x1d\xba\x98\x8d\xd2\xea\x7d\xa2\x3e\x1f\x33\xa4\xe4\x07\x16\x4f\xd3\x8a\x74\x39\x21\x80\x40\x10\x32\x3e\x21\x05\x0c\x19\xb0\x14\xe1\xf1\xf2\xcb\x2f\x67\x4b\x4b\x4b\x60\xb4\x74\x5f\x4b\x9e\x59\xb4\x4e\x6d\xb5\x4f\x2f\x77\xf3\x67\x73\x6b\x16\x51\xbc\x02\x5d\x03\x09\xb5\xd9\x96\xea\x7a\x12\xe9\xd6\x87\x94\x35\x72\xaa\x5c\x9e\x96\xde\x2a\xa0\xc4\x95\x74\x45\x3e\x34\xff\x09\x8e\x55\xb0\x70\xd8\x6f\xd9\xcd\x3b\x0b\xfd\x2b\x77\x16\xfa\xd7\x47\x0d\xec\x16\xd3\x83\x74\xa9\xa8\xeb\xbf\xfa\x4c\x14\xd8\x3a\xe7\xf0\xe0\xc1\x03\xfb\xbf\xff\xf7\xff\x9e\x64\x5b\x0f\x29\xc6\x47\xd3\x87\x10\x08\x89\x85\x90\x83\xd7\x8c\x16\x37\x5e\xd3\x3c\xe3\xf9\x4e\xa3\xc7\xbc\x5c\x5a\x9d\x85\x3a\xe1\x34\xfc\xa5\x7c\x52\xea\x28\x55\x9e\x10\xff\x54\x67\xe2\xf3\x91\x40\x52\xaa\x23\xd4\xf2\xd3\x9c\x3d\x4d\x17\xcb\x2f\x06\x24\xb4\xfb\x54\x10\xf6\x38\x69\xa7\x01\x08\x9a\x9c\x9a\xee\x4a\x69\x62\x21\xc9\x06\x47\x64\x89\xd1\x6a\xbe\x23\x34\x48\x0e\xc5\xc7\x80\xa8\x18\x7e\xf3\x9b\xdf\xa0\xd9\x6c\xda\xe3\xc7\x8f\xfb\x83\xd9\x4a\xf0\x52\x0c\xfc\x72\x8c\x67\xae\xf3\x22\x8f\x6c\x94\x21\xdb\x9a\x19\xe2\xf2\xea\x01\xfa\xb9\xed\x9e\x79\xd8\xd9\x3e\xb2\xd3\x3a\x3b\xdf\x6f\x2c\x67\x0e\xb9\xf1\x47\x62\x90\x51\x30\xf5\x37\x8e\xfa\x95\xe2\xbe\x76\x38\x29\x50\x5b\x2a\xf2\x47\xd5\xf5\x73\xb7\xff\x68\x66\x70\xef\xea\xa1\xee\xbb\x97\x0f\x77\x2f\x3c\x98\x1d\xdc\x2e\x66\x5a\x76\x0d\x0c\xff\x80\xee\xd0\x0f\x5c\x7d\x5d\xf9\x3c\xdf\x7e\xfb\x6d\x7b\xf3\xe6\x4d\xa9\x9e\x42\xf5\x16\xea\x77\xd3\x86\x14\x3f\xaf\x3d\xd7\x6c\x78\xcd\xde\xe4\x3c\x42\x08\x92\x63\x78\x1c\x41\x25\x61\x54\x60\x74\xe6\xcc\x19\xcc\xcc\xcc\xf8\x91\x1d\xfd\x2b\xcf\x6d\xe9\x0c\xb2\xf9\x13\x5b\xed\x8f\xcd\x0c\xb2\xb3\xa1\xd9\x16\x7a\x92\x60\x9d\x66\x12\x3a\x18\x76\xad\xce\x94\x50\xe8\x41\xc0\x50\x89\x4f\x6a\xe9\xea\x74\xb5\x4b\x61\x06\x68\xd8\x70\xdd\x07\xb3\x83\x1b\xb7\x16\x7b\x57\x76\x3a\xc3\x4d\x14\x6f\x11\x61\x3c\x4a\xf0\xcb\x43\xfc\xb5\xe7\x52\x79\xf7\xf6\xf6\x70\xe3\xc6\x0d\xcf\x52\xeb\xf8\xd3\x18\x66\x69\xc4\x13\x53\x6e\xcd\x21\xc6\x40\x6d\x0c\x58\x68\xe5\xe1\x7a\xa9\xe9\x5a\x8a\x33\x0b\x01\x1f\xed\x5a\x1a\x05\xf2\x32\x68\xd7\x92\x6c\xa1\x72\xc4\x46\x44\x29\x46\x82\x1b\xa9\x69\xea\x27\x94\x37\x0d\x21\x3b\xa0\xc9\x32\x8d\x13\x0e\xd9\x26\xc9\x00\xa6\xea\xad\xc4\x9b\x3f\xa3\xf4\xa1\x36\x8d\x39\x74\xa9\x9f\x69\xf5\xec\x79\x6b\xf5\xa6\x95\x85\x97\x81\xd7\x89\x26\x6f\x4a\x39\x25\xde\x3c\x48\x65\x08\x5d\x4b\x69\x43\x3a\x0c\xe1\x19\x00\x64\xb7\x6f\xdf\xc6\xf6\xf6\x36\x8e\x1f\x3f\xee\x79\xf8\xbf\x72\xe6\x05\x93\x3e\x06\xa3\x0c\x78\xd4\x19\x62\x70\xd8\xf5\x76\xda\xa3\xdd\xe3\x33\xc3\xcd\x13\x8f\xda\xe7\x56\xf6\xf3\x63\xed\x51\x36\x6b\xfc\xa9\xec\x7c\x30\x5a\xf8\x95\xf1\xe1\xa1\xe3\x69\x18\x69\x2e\xde\x15\xce\xc2\xc2\xd9\x41\xc3\xf5\x77\xdb\xa3\xad\x8d\xb9\xc1\x8d\x1b\xcb\xdd\xcb\x37\x97\x7a\x97\x1f\xcd\x0c\xef\x8e\x0c\x76\x51\x7d\x40\x97\x03\x97\x2e\xea\xaf\x75\xfb\x19\x17\xdc\xb9\x73\x07\x8f\x1e\x3d\xe2\xf5\x24\xd5\x37\xaf\x2f\xcd\xb6\xc4\x80\xba\xa7\xa1\x75\x2c\xd9\x43\x2d\x84\xfa\xaa\x04\xa6\xb2\x5c\x10\x30\xc4\x88\x3f\x93\x42\xa8\x13\x84\x0c\x89\xc8\x8f\x7e\x9b\x08\xc5\xa6\x5c\x63\x4c\xde\x18\x99\xce\xda\x6e\x6b\xf5\xf0\x5e\xf3\x13\xcd\x51\xb6\x4c\xe4\x1b\xa7\x03\x05\x07\x0c\x60\x94\xff\x55\xc1\x30\xf0\x31\x11\x8f\x3a\xc6\x70\x30\x93\x53\x83\xa6\x3e\x4b\x33\xbe\xae\x52\xf2\x4d\x0c\x54\x56\x94\xcf\x9c\xdd\x6d\x8d\x36\x6e\x2d\xf5\xae\x6c\xcc\x0f\x6e\x8e\x32\xf9\xab\xcf\xa8\x36\xe5\x96\x53\x84\x00\xf0\xe0\xc1\x03\xfb\xc1\x07\x1f\xf8\xfa\x8c\x22\x57\xe1\xd9\x84\x92\x20\xae\x78\x1a\xe8\x48\x01\x1c\xf4\x3a\xd6\x69\x42\xba\x28\xe9\x59\x48\x0e\xad\x0c\x5c\x1e\xa9\x53\x6b\xf4\x12\x4f\xff\x4c\x72\x12\x31\x5a\x7a\x4f\xf3\x94\x8c\xbc\xd6\xc6\xa1\xfa\x88\xd5\x45\xac\x1d\x34\xb9\x43\x7d\x3b\x14\xc7\xaf\xa5\xbc\x79\x48\x01\x05\x21\x10\x10\xd2\x7d\x5a\xcf\x31\xa7\xac\xf1\x0e\xf5\x9d\x50\xde\xb1\x34\xda\x75\x0a\x10\x7e\x1c\x79\xff\xa7\xda\x2d\xa4\x53\x31\x5e\x5a\x1b\xd6\xca\x72\xfd\xfa\xf5\xec\xd0\xa1\x43\xf6\xe8\xd1\xa3\x3e\x7e\x48\xe8\x39\x70\x29\xc3\xc8\x38\xec\xb6\x46\xb6\xb7\x6c\xbb\xdb\x9d\xe1\xf6\xd6\xcc\x70\xf3\xf8\x76\xfb\xec\xea\x5e\x7e\x7c\xae\xd7\x58\x6c\x0f\xb3\xd9\xdc\x9a\xdc\x14\x33\xfd\xf4\x15\x69\xbf\x3f\xc0\x15\x7b\x2a\x5d\x69\xf4\xc7\x17\xa3\x0c\xc3\x7e\x3e\xea\xee\xb5\x46\x5b\x0f\x67\x87\x1b\xf7\xe7\x06\xb7\xee\x2e\xf4\xae\x6d\xcc\x0f\x6e\x1f\x34\xed\x96\x43\x0d\xb4\xec\x3a\xe7\xca\xd9\x76\x3f\xd3\x8e\xc9\x13\x73\xb1\xbe\xbe\x6e\x0b\xd0\xa2\xd9\x53\xa9\x0e\x43\xf7\x3c\x4e\xb3\xdf\xb1\x7c\x78\xd0\xec\xa7\xf4\x3b\x41\x9b\x0b\x91\x31\xe1\x34\x40\x23\x05\x8d\x2e\xa4\xb4\x78\xea\xa9\xa7\xb2\x66\xb3\x09\x00\xe5\xf7\x88\x8a\x35\xc8\x31\x78\x71\xc8\x5b\x23\x33\x7b\xf2\x51\xfb\xdc\x7c\xbf\xf1\x74\xe6\xd0\x31\x30\x75\x44\xa0\x4f\x95\x00\x64\x06\x86\x92\xd1\x99\x99\x3a\xfd\x24\x2b\x0f\x4e\xb4\x6d\x31\xd5\xb5\x99\x78\x16\xda\x4a\x33\x68\xb8\xee\xfd\x85\xc1\xb5\x3b\x8b\xfd\x2b\x7b\xad\xd1\x16\xea\xcb\x42\xe2\xab\xcf\x1e\xb4\x6c\x6e\x6e\xda\xb7\xdf\x7e\x1b\x17\x2f\x5e\x8c\x19\x6c\xb0\xfb\x90\xa3\x8f\x29\x32\xe5\xc1\xf3\x0c\xb5\xb9\x14\x24\xe7\x9e\xe2\x6c\xe8\x75\x8a\xe3\x94\x00\x80\x56\xf6\x10\xdf\x94\xf2\x48\xe5\xf3\x41\x03\x46\x5a\x9f\x14\xfb\x4b\xe0\x99\x64\xb8\xe8\xbd\x44\x97\x52\xce\x14\x43\x98\xe2\x84\xb5\x20\xe9\x52\xe8\x79\x0a\x30\x45\xe4\xf9\x34\xe9\x25\xfa\x98\x5e\xf2\xb4\xa9\x6d\x18\x92\x3b\x54\x0f\x29\x69\x69\x1f\x48\xc9\x2f\xc4\x37\x06\x86\x53\xe4\x08\xf1\x7c\xdc\x90\x7d\xf0\xc1\x07\x76\x75\x75\x35\x3b\x7a\xf4\x28\x08\x6f\x0a\x60\x7c\x5e\xb5\x7c\xfc\xbe\x98\x41\xc3\x0d\x1f\xce\x0e\xfb\x7b\x2d\xfb\xe8\xc1\xdc\xe0\xde\x91\xbd\xe6\xb1\x95\xbd\xe6\xb1\x43\xfb\xf9\xda\x62\x2f\x5f\x6e\x0f\xb3\x4e\x6e\x4d\xab\x61\x91\x67\xce\xe4\x1e\x9f\x38\x03\xc0\x38\x58\x00\xce\x38\x3b\xca\x30\x1c\x66\xae\xdf\xcf\x5d\x7f\xbf\x39\xda\xdd\x9a\x19\xdc\xdb\x98\x1b\xdc\xd9\x98\x1f\xdc\xd9\x9a\x19\x6e\xec\xb5\x46\x8f\x6c\x36\x01\x56\xca\x73\xbb\x50\x0c\x5c\xe9\x12\x11\x1d\xb4\x7e\xf0\xc1\x07\xf6\x97\xbf\xfc\x25\x1e\x3d\x7a\x14\xd2\xaf\x94\x76\xad\xd5\x1f\xc2\xba\xec\x43\xaa\xde\x4d\x93\x9f\xc4\x3b\x43\x01\x5c\x62\x8e\x8b\x26\x8e\x8d\x62\xb4\x7b\x4d\x01\x45\x45\xfe\xe2\x17\xbf\xe8\x37\xe5\x7a\x9a\xf2\xd0\x39\x00\x79\xe6\xd0\x99\xef\x37\x96\x8f\xec\x36\x3f\xd6\x1e\x66\xc7\x7c\x42\x8a\x5b\x24\x00\xe2\x67\x5a\xc8\x69\x8a\xf0\xeb\x95\xe3\xcf\x00\xc8\x9b\x6f\x9d\x00\x50\x26\x36\xc3\x00\x13\x1b\x78\x2b\x46\xa1\xdd\xb9\x15\x9d\x33\xc0\x76\x67\x78\xef\xc6\x52\x77\x7d\x73\x76\x70\x7b\x64\xdc\x7e\xb1\xb6\x59\x9e\xd7\xe2\x95\x96\x28\xac\xf5\xe5\xb8\x7a\xf5\x2a\xde\x7b\xef\x3d\x89\x7b\xcc\x31\x69\x06\x34\xf5\x9e\xf3\x00\x8b\xe3\xf9\xf3\xe7\x52\x3a\x0d\x30\x48\x60\x83\xf3\xe6\xfa\x16\xea\x54\x5c\xe7\xa5\xb2\x49\xb2\xc7\x46\x88\x5a\x19\x28\x7d\xaa\xb1\xe6\x0e\x46\x6a\x3f\xa9\x8d\x53\x9d\x92\x56\x57\x12\x9f\x10\xdd\xe3\x38\x5f\x4d\x1e\x2d\xc4\x6c\x93\x26\x87\xd4\xbe\x29\x32\x4b\x7d\x24\x54\xae\x94\x6b\x04\xe2\xb5\x10\xea\x5f\x31\xb9\x24\x3d\x88\x01\x82\x69\x1d\x91\xa6\x8b\x1a\x8d\xc6\x4f\x6a\xab\x98\x2f\x92\xda\xb6\x46\xfb\xe8\xd1\x23\x6c\x6d\x6d\xd9\xe5\xe5\xe5\x8c\xd8\x4e\x3a\xf3\xd2\x55\xd2\x8e\x8f\x99\x30\xe8\xf7\x72\xdb\xbf\xbb\xd0\xdf\x7f\x38\x3b\x78\x30\xbb\xd4\xb8\xb6\x7c\x90\xaf\x1c\x3a\x68\xae\x2d\x74\x1b\xcb\xb3\x83\x6c\xb6\x33\x68\xcc\xb7\x87\xa6\x93\x5b\xd3\x1a\x7f\xc7\x68\x6c\xd3\xad\xc1\x70\x90\xd9\xfe\x41\xcb\xee\xee\xb5\xec\xee\x5e\x6b\xb4\xbd\xdd\x19\x6e\x6e\xcd\x0c\x37\xb7\x3b\xc3\xad\x5e\x6e\xf7\x6c\x35\xb3\x5e\x2e\x0b\x79\xd0\x02\x36\xe3\x4e\x37\xe5\xd2\x57\x9f\x5f\x7f\xfd\x75\xbf\x44\x24\xd5\xb1\x56\x97\x60\x74\x31\xfd\x8d\xf5\xb3\x10\x3f\x5e\xb7\x9a\x0c\x52\xbc\x4f\x63\x81\xfa\x1e\x17\xc9\x48\xc7\x1c\x5c\x48\x08\x2e\x4c\xc8\x01\x96\xca\xbe\xb2\xb2\x52\x03\x16\x60\xa0\x05\x40\xde\x1a\x65\x9d\x63\x8f\xda\xc7\x17\xbb\xf9\xd3\x0d\x67\x66\xcb\x77\x31\xfd\x7e\x16\x71\x33\x09\x7b\x0b\x88\x00\x98\x92\xbe\xc0\x1d\x7e\xfd\xd1\x83\x97\xda\xb2\x0e\xdd\xc7\xe2\xe3\xca\xcd\x58\x74\x49\xc8\x95\x5f\x78\xae\x9f\xb2\x5b\x80\x25\x86\x63\x9c\x31\x18\x14\xdf\x23\xba\xbb\xd0\xbf\x71\x90\xdb\x5d\x8a\xb2\xc1\x8e\x78\x26\x9b\x71\xad\x31\xc6\xee\xed\xed\xd9\xfd\xfd\x7d\xad\xee\x69\x1d\x6b\xc6\x2d\xe4\xc8\x35\x1d\x88\x05\x0d\x6c\xc4\x8c\xf5\xe3\x82\x1b\x0e\x24\xa4\xb2\x72\xbe\x31\x00\x02\x81\x4e\x92\x45\x4a\xcf\xeb\x2c\x04\x30\x68\x9c\x06\xf4\x52\xe4\x90\xc0\x55\x0a\x90\xe3\x69\x43\x7d\x5d\x02\x60\x29\xf5\x18\xb3\x03\x9c\xa7\xf4\x9c\x07\x8d\x3e\x66\x54\x39\x8f\x94\xfc\x34\xba\x18\xa8\x91\xe2\x25\xbe\x29\x80\x36\x44\xcf\x83\x06\x54\x62\xb6\x40\x92\x4b\xea\xc7\xa9\x7a\x98\x52\x16\x4a\xa7\xc9\xa3\xe5\x15\xcb\xdf\x5e\xbc\x78\x31\xb3\xd6\xe2\xb3\x9f\xfd\xac\x9d\x9f\x9f\xcf\x50\xed\x71\x01\x50\x9b\x6d\xb7\x40\x75\xda\x00\x47\x40\xb8\xbf\xae\x07\x38\x05\x58\xe8\x03\x98\xed\xe7\xae\x91\xd5\x20\x1a\x00\x00\x20\x00\x49\x44\x41\x54\xdf\xcf\x87\xbb\xdb\x9d\xe1\xc3\xdb\x8b\xfd\x5b\x4d\x6b\x3a\xad\xa1\x69\x75\x86\xd9\xec\x4c\xbf\xd1\x69\x8f\xb2\x8e\x71\xc8\x1c\x1c\xac\xc1\xd0\x66\x6e\xd8\xcf\x5d\x7f\xaf\x39\xda\xef\x36\x6d\x77\xd0\x70\xdd\x61\xe6\x0e\x46\x99\xeb\x3a\x53\x9d\xde\x4b\xfe\x4a\x10\x53\xcc\xb4\xfb\xfd\x8d\xfc\xec\x96\xf2\x6f\x73\x73\x13\xe4\x84\x74\xde\x46\xa1\xba\xe7\x74\x3c\x5e\xaa\x53\xcd\x86\xa5\xf8\x89\x90\x8e\xa7\xd8\x07\x00\x63\x20\x10\x53\xa6\x10\xd8\xe0\x02\x85\x90\x15\x7f\x36\x51\x79\x8d\x46\x23\xfb\xf6\xb7\xbf\x0d\xa0\x3a\x21\x97\x2c\x15\x8d\x5f\x5d\x73\x68\xb5\x87\xd9\xfc\xda\x6e\xf3\xc9\x99\x41\xe3\x2c\xc0\x57\x87\xf8\x4e\x59\x79\xa6\x43\x9c\xfc\x20\x9b\x55\x94\xbd\xbb\xf5\x73\x5f\xe0\x81\x0d\x7b\xe3\x08\x28\xa7\x69\xc6\x4b\x58\x95\x0c\x7c\x03\xb1\x0f\x0e\x0e\xbb\xed\xd1\xbd\x1b\xcb\xbd\xcb\xdb\xed\xd1\x03\x67\xb0\x4f\x0e\x1a\x2a\x37\x63\x91\x37\x89\xac\x31\xc6\x1a\x63\xd0\xef\xf7\xf1\xcb\x5f\xfe\x12\x17\x2e\x5c\x88\x19\xb0\x90\xa2\x69\x69\x62\x86\x9c\xd3\xf2\xfc\x34\xde\x29\x0e\x86\xc6\x49\x4e\x31\x55\x37\x63\xbc\xb5\xce\x1c\xe2\x91\xe2\x2c\xa4\x7c\x28\x4d\xac\x4c\xfc\x5e\x73\x56\xbc\x6c\x1a\x60\x8a\xd5\xb3\x26\x3f\x97\x55\x73\xd8\x31\x1e\xa1\x11\x55\xcc\x4e\xc4\xee\x43\xba\x17\x35\x84\x0a\x3f\x7e\xad\xf5\x9f\x69\x6d\xa7\x94\x9f\x74\xcf\xf3\x93\xe2\x35\x59\xa5\x3c\x35\x1e\x52\x1e\x94\x5e\xe3\x11\x0a\xb1\x76\x9b\x26\x2e\x85\x7f\x34\xff\xf5\xf5\x75\x0c\x06\x83\xec\xcb\x5f\xfe\xb2\x6d\xb7\xdb\xfe\x35\x69\x8b\xf1\x40\xb0\xa4\x23\xf1\x16\xd5\xd1\x13\x43\x00\x2d\x8c\x01\x44\x07\x40\xcb\x66\xa6\xd5\x35\xa3\x56\xcf\x98\x1c\x6d\xe4\x70\x2e\xcf\x9c\xc9\x0c\xd0\xf4\xcc\x8a\x17\x44\x46\x0e\xb0\x6e\xfc\x45\x6a\x3f\xe8\xec\xb3\x3f\x0e\x5e\xfc\x0c\x3b\x3f\xfe\xc2\x82\x6d\xc8\x3d\x38\x38\xc0\x3f\xfc\xc3\x3f\x60\x30\x18\xf8\x72\x3f\x8e\x6e\x68\x75\x1a\xa3\x8b\xf5\xfb\x69\xfa\xb3\x34\xe0\x11\xfd\x94\xb6\xc7\x85\x0a\x23\x65\x12\x7a\x16\x0b\x5a\x67\xa9\xf1\xe4\x80\xc5\xbf\x06\xdd\x1c\x99\xce\xf2\x7e\x63\x75\x65\xbf\xf9\x74\x6b\x98\xad\xd5\xd3\x08\x37\xa1\xe5\x19\xc8\x1b\x65\xb5\x14\xb5\xfd\x30\x94\x4e\x01\x41\x93\xbb\x5b\x74\x79\x46\x19\xfa\x77\x16\xfa\xeb\x1b\x73\x83\x5b\xfd\xdc\x6e\xc3\xa0\x6b\x50\x82\x96\x89\xef\x52\xd0\x4d\xb9\x3f\xf9\xc9\x4f\xec\xfb\xef\xbf\x2f\xb1\x4d\x35\x0c\x31\x87\x92\x02\x70\xe8\xb5\x94\x4e\xba\xd7\xd2\x6b\xfc\x43\x0e\x22\x13\xe2\xb5\x74\x3e\x4d\x8a\x43\xe7\xe5\x49\x0d\x5a\x59\xb5\x91\xa8\x56\xd7\x21\xe7\x13\x7a\x1e\x1b\x2d\x6b\x32\x4a\x61\x1a\x10\xa0\xe9\x4b\xa8\x0d\xa6\x09\x31\x00\x90\x62\x9c\x53\xe4\x4b\xad\x53\x28\xb4\xa9\xbc\x63\xb2\xa5\x02\x92\x94\x76\xd6\xc0\x5d\xaa\xfe\xfb\x6b\x08\x74\xd3\xda\x90\x18\x80\x8c\xf5\x93\x90\x8c\x9c\x47\x29\xfb\xd5\xab\x57\xed\xbf\xfd\xdb\xbf\x65\xdf\xf8\xc6\x37\x28\x38\xc9\x51\x2d\x1b\xf9\x38\x3f\xcb\xd2\xf1\xf7\x18\x03\x97\x6e\x11\xd7\x42\xf1\x81\x5f\xf8\xd5\x00\x63\x32\x6b\xc6\x47\x8c\xb0\xfd\x92\x65\x3d\x1b\x94\x27\x9c\x97\xa7\xf6\x92\x6b\x7e\x2a\xae\xb7\xff\xb5\x23\x2f\x40\x36\xe5\x8e\x46\x23\xfc\xcd\xdf\xfc\x8d\x06\x06\x42\xc0\x34\xc5\xf6\x3d\x8e\x2e\xf2\x10\x7b\x2e\xc9\xed\xd3\xf9\xb8\x89\x76\xa7\x33\x2e\x21\xf0\x12\xaa\x18\x4a\x9b\xa2\xcc\xdc\x48\xd7\x84\x23\x0d\xee\x41\x4b\x56\xd0\xe5\x00\x5a\x9d\x61\x36\x7f\x6c\xb7\x7d\x72\xa1\xdb\x78\xda\x90\x4f\x16\x54\xfb\x57\xea\xd7\xe5\x43\xba\x2c\x53\xfc\xf2\x65\x20\x1f\xa7\xa1\x97\x09\xd0\xa2\xbd\x26\xc4\xc2\x04\x3d\x7b\x06\x00\xdb\x9d\xe1\xad\x2b\x2b\xdd\x8b\x3b\xed\xe1\x03\x3b\x3e\x6c\x6e\xdf\x39\x57\xdb\xdf\x82\x4a\x61\x01\x59\x11\x79\x08\x8d\x08\xa7\x31\xde\x31\xc5\x4b\x9d\x51\xd0\xf4\x46\xca\x23\xe4\x64\x39\xbd\x66\x14\x43\x23\x81\x54\xe3\xce\xe5\x94\xe8\x24\x10\x1e\x03\x0a\xa1\x72\x04\x3b\xad\x22\x63\xaa\x43\xcf\x50\x97\x37\xc5\xb1\xc4\xec\x00\x0d\x1a\xbf\x90\xae\x86\x8c\x5b\x0c\xb8\x69\xb4\xa9\x60\x9b\xc7\xa5\xa4\xd3\xda\x2c\x25\xbf\x69\xcb\xee\xd3\xa4\xd4\x81\xe4\xa0\x28\x7d\xac\x1f\x3f\x8e\xfc\x34\x5f\x2d\xa4\x02\xc1\x10\xa0\x8d\x95\x41\x6b\xd3\x8c\xd3\xdc\xbe\x7d\x1b\xdf\xfb\xde\xf7\xec\x9f\xfd\xd9\x9f\xf9\x67\xb5\x65\xa3\x72\x0b\x01\x99\x75\xf1\x9f\x97\x01\xd0\xc1\xd8\x16\xe7\x18\x83\x97\x9c\xfc\x65\xec\xaf\xcc\xb7\x18\x64\x96\xaf\x2f\x93\xeb\x3e\x99\x81\xf1\xa0\x85\xce\xc8\xd4\x5e\x79\xa6\x75\xb3\xb3\xb3\x83\xbf\xfd\xdb\xbf\x55\xaa\x43\xac\x93\xd4\x3e\x19\x6b\xcf\xd4\xfe\x48\x9f\xa7\xf4\x13\x2d\x0f\x1a\x32\xa0\x7a\xab\xc8\x13\x72\x94\xcb\x13\x50\x3a\xc9\x50\x43\xb9\x97\x84\xaa\xd1\xcc\xcd\xcd\x65\xdf\xfa\xd6\xb7\x4a\xd0\xc2\xfe\xc6\xaf\x41\x5b\xb4\x66\xfb\x8d\xe5\xc3\x7b\xcd\xa7\x3a\xa3\xec\x38\x7f\x83\xc7\x15\xe8\xc0\x90\xe9\x8e\xea\xdd\x7a\xba\xb4\x43\x82\x04\x3a\xc8\xeb\x6b\xa1\x15\x25\xb6\x0a\x34\x81\x63\xca\xfc\x82\x7b\x73\x1d\x86\x19\xfa\xb7\x96\x7a\x17\x1f\xcc\xf5\xef\x0e\x1a\x6e\x17\xd5\x07\x14\x27\x94\x97\x74\x26\x18\x63\xf0\xef\xff\xfe\xef\xf6\xda\xb5\x6b\xbe\xce\x78\xbd\x4a\x00\x82\xc6\xa5\x8c\x1c\xa5\x76\x97\xd2\x69\x74\x34\x2e\x06\x16\xa0\xc4\x67\xca\xb3\x50\x59\x34\xe7\x2e\xc5\x51\x27\xae\x85\x90\x7e\x4b\x79\x68\xf1\xd3\x00\x46\xce\x4f\x2b\x73\x08\x10\x69\x6d\xac\x81\x4c\x29\xa4\xca\xcb\xeb\x24\x54\xd6\x50\x3d\xc5\x40\x44\x08\x48\x85\x40\x59\x2a\x40\xd2\x64\x0c\xf5\xb1\x10\x0f\xa9\x3c\x5a\x5f\x98\x46\x97\x35\x79\x25\x9b\x2e\xb5\x03\x2f\x97\x16\xaf\xd9\x77\x8d\xb7\x96\x07\xa5\x8d\x01\xdc\x90\x7c\x5a\xb9\x43\xb4\x34\xd8\xad\xad\xad\xec\xbb\xdf\xfd\xae\xfd\xce\x77\xbe\x43\xd3\xf2\x37\x75\x6c\x71\x9f\xb3\xe5\x9d\x12\xb4\xf8\x13\x77\x81\xda\x9b\xaf\x19\x7b\x39\xa4\xc6\x0f\xf5\x19\x14\xba\xd9\xb6\x36\xb3\xce\x66\x59\xe8\x1f\x36\x36\x36\xec\x0f\x7e\xf0\x03\xa9\xcc\x52\xd0\xfc\x40\xac\x2f\x86\x9e\xf9\x90\xd2\xc6\x5c\x86\x98\xbd\xd3\x74\xaf\x8c\xe3\x27\xe7\x6a\xc2\xc5\x68\xb4\xfb\x50\xa5\xd6\xe2\x8c\x31\x98\x9d\x9d\xcd\x58\x5c\x09\x5a\x00\xe4\x9d\x61\x36\xbb\xba\x97\xaf\x2d\xef\xe7\xe7\x9a\x23\xb3\xec\xe9\xca\x73\x59\x8a\x8d\x29\xf4\x84\xfe\x1a\x80\x20\xbc\x4b\x20\x31\xb1\xd1\xb6\x02\x1b\x5a\xa8\xbf\xbd\x24\xc4\x15\x11\x13\xe7\xc1\x28\x33\x33\x3b\x9d\xe1\xad\xeb\xcb\xbd\xf5\xdd\xf6\x68\xd3\x1a\x74\x1d\x5c\xd7\xc0\xf8\xc3\xe6\xfa\xe4\x83\x60\xf4\x58\x67\x6b\x8c\x41\xb7\xdb\xc5\x68\x34\x4a\x69\x3f\xff\x2c\xa8\x10\x42\xfa\x14\x67\x44\x9f\x49\xca\x9a\xe2\x68\x42\xe0\x37\x54\x26\xc9\xe0\x6b\x69\x52\x9d\xad\x24\x83\x14\x27\x75\x6a\x5e\x06\x1f\x17\xe2\xc3\xe3\x42\xf2\x21\x40\x13\x6a\xc7\x98\x41\xd7\x40\xa9\x44\x9f\xc2\x87\xcb\xce\xd3\x4a\xcf\x63\x4e\x29\xa5\x1c\x9a\xbe\x86\x40\x10\x2f\x6f\xa8\x2f\xc4\xec\x59\x08\x10\x6a\xd7\x1c\xd4\x6a\x65\x4a\xa9\xdb\x14\xc7\x9d\x2a\x57\xc8\x8e\xc7\x9c\xa5\xc4\x83\xa6\xd3\xe2\x79\x3a\x2d\x5e\x93\x4b\xd2\x99\x89\xe0\x9c\xb3\x8f\x1e\x3d\xca\xbe\xff\xfd\xef\xdb\x6f\x7d\xeb\x5b\xc8\xb2\xac\xe4\x53\x80\x05\x9f\x7e\xe8\xb7\x29\xa0\x5a\x52\xca\x51\x9d\xff\x52\xce\xb6\x90\xd5\x81\xcc\x4d\x1e\xad\x61\xc9\x5f\x6d\xd9\x87\xce\xbe\xf8\x38\x54\x83\x54\xff\xe5\xe7\xb2\x3c\xb7\x6f\xdf\xb6\xaf\xbe\xfa\x2a\xba\xdd\x6e\x48\x1f\x7d\x90\xfa\x11\xaf\xfb\xd4\xbe\xce\x9f\xa7\xb4\x59\xac\x1f\xc5\xec\xb6\xa8\x27\x29\x85\xa6\xbf\xd2\x73\xfe\x8c\xdf\x6b\xc6\xa2\xfc\x5d\x5a\x5a\xca\xbe\xfc\xe5\x2f\x97\x5f\xdb\x44\xa5\x10\x19\xb9\x6e\xcd\x0c\xb2\xf9\xc3\x7b\xad\x33\x73\xfd\xc6\x59\x14\x87\xfe\x00\x1e\xaf\xb8\x1a\x70\x70\x70\xe5\x87\x16\xab\xcd\xbb\xd5\xa9\x73\xf4\x43\x8c\x7c\x06\x86\x9d\x4d\x57\xc6\xd7\xf2\x63\x61\x22\x2e\x81\xc8\xc1\x61\x94\x61\x78\x7b\xb1\xbf\x7e\x7f\xbe\x7f\x7b\x98\xb9\x7d\x07\xc7\x3f\x57\x4e\x37\x65\x95\xc8\xdd\x18\x83\x57\x5f\x7d\xd5\x6e\x6e\x6e\x02\x93\xce\x96\x5f\x6b\xed\xf7\x38\x81\x02\x14\x60\x52\x07\x42\x8a\x1e\xa2\xa7\x69\x68\xe7\xe2\xf9\x70\x70\xa1\x75\x16\x20\x5e\xee\x58\x19\x2c\x74\x5e\x9a\x83\x8f\xe5\xa7\x19\x55\xa9\x9e\x38\x4f\x2e\xa7\x06\xb2\x24\x00\x16\x93\x2b\xd4\x4f\xa5\x36\x8f\xf1\x09\xd1\x00\x7a\xbb\x83\x5d\xc7\x8c\x6a\xac\x9c\xa1\x72\x71\x1e\x21\x3d\x0e\xf1\x4b\xcd\x53\xab\x3f\xea\xd4\xa6\xe5\xcb\xe3\x63\xc0\x50\x0b\x29\x36\x22\x0a\x08\x58\x88\x01\xd7\xc7\xe5\xe1\x65\xd1\xfa\x8c\x54\x97\x13\x75\xef\x9c\xb3\x0f\x1e\x3c\xb0\xff\xf2\x2f\xff\xe2\x41\x00\x4d\x4b\x97\x68\xf8\x06\x5a\xfe\xca\xf2\x2e\xfb\xdb\x36\xc6\x6c\x03\xa0\x7f\x9c\x66\x9f\xfc\x96\x6f\x8f\x92\x37\x87\xc4\xe5\xa1\xeb\xd7\xaf\xdb\xff\xfa\xaf\xff\xf2\x67\xb5\x48\xe5\xe3\x81\x97\x8b\x87\x8c\xfd\xc5\x74\x2c\xa4\x5f\xb1\x3c\x35\xbb\x2f\xf5\xc1\xa0\x9e\xd0\x8f\x2c\x72\xe6\x14\x0d\xf1\xf8\x14\xc3\xa5\xc5\x4d\x8c\x80\x5a\xad\x16\x8e\x1f\x3f\x9e\x01\x80\xb0\xaf\x25\x07\x90\xe7\x23\xd3\x5a\xea\xe6\xab\x2b\xfb\xf9\xd9\xf6\xd0\xac\x55\x18\x60\x3c\x8d\x31\xf1\x66\x8f\x31\x04\x6b\x94\x27\xb5\xd4\x53\x99\xc9\x49\x10\xfa\x52\x12\xbd\x4f\xda\xb1\xeb\xf3\xa2\x6f\x37\x11\x32\xba\xf4\x54\xbc\xc2\x6d\x77\x5b\xc3\x7b\xd7\x97\xbb\xeb\xbb\xad\xd1\x96\x35\xb5\xfd\x2c\xe5\x7a\x67\x31\xe3\x52\x3b\x6c\x08\x00\xee\xdc\xb9\x83\x5e\xaf\xa7\x39\x72\x1f\x42\x23\x96\xd4\x34\x3c\x3e\x36\xaa\x09\xc9\x13\x52\x48\x8e\xbe\x25\x24\x3e\xcd\xf3\x50\x3e\x5a\x5c\x68\x34\x11\x03\x4c\x34\x68\x20\x8b\x1b\x08\x4e\x17\x72\xfe\xa1\x76\x8c\xc9\xc0\x47\x39\x52\xda\x94\xbc\x35\x40\xaa\xf1\xe1\x21\x45\xd7\x78\x9d\x70\x40\xa6\x95\x25\x04\x72\xb8\x0c\x1a\x78\xe1\x3a\x18\x72\x9c\x52\x7e\x52\xfd\x85\x40\x49\x48\xce\x98\x2e\xc7\xea\x2e\xa4\x23\x52\x1d\x6b\x7d\x8b\xa7\x8d\x85\x94\x3e\xa8\xb5\x63\x4a\x99\xb9\x3c\x9a\x5e\xd3\xa0\xb6\xe7\x8d\x1b\x37\xec\x6b\xaf\xbd\x96\x7d\xee\x73\x9f\xb3\x0b\x0b\x0b\xf4\x9c\x97\xd2\xa1\x17\x71\x19\xaa\xfd\x30\x19\xc6\x4b\x45\x19\x50\xce\xb6\x50\xf9\xc4\x81\x90\x7f\xcd\x1a\x00\x5f\x8e\xaa\x7d\xba\xa5\x88\xf3\xfb\x6c\x70\xe9\xd2\x25\x7b\xf3\xe6\x4d\x3c\x7a\xf4\x08\x1b\x1b\x1b\xa1\xba\x0a\xb5\x21\x0f\xbc\x2e\xb5\x81\x50\x2c\x5d\x6a\x88\xf9\x14\xce\x9f\xa7\x2b\x65\x92\x96\x8a\xa4\xcc\x34\x43\x12\x53\x6e\xad\x73\x73\xbe\xf4\xcc\x16\x4f\x57\x03\x2f\x9d\x41\x36\x7b\x68\xbf\x79\x6c\xb1\x9b\x9f\x1d\x9f\xdd\xe2\xcf\x6b\x29\xce\x4e\xd1\x4e\xb7\x2d\xae\x4c\xb1\x76\x43\x97\x8d\x26\xde\x28\x22\x3c\xd4\xa5\x22\xbe\xd1\xd7\xbf\x3a\x4d\x96\xaa\x26\xd2\x8a\xfb\x5b\x1c\x86\x99\xeb\xdf\x9f\x1f\x5c\xbe\x3b\xdf\xbf\x39\x6c\xb8\x7d\x98\xf2\x84\xdc\xda\x5a\x27\x53\x70\x6b\x8c\xb1\xbf\xfc\xe5\x2f\x71\x70\x70\xe0\x99\xc5\x9c\x44\x8a\x21\xa1\xf4\x92\x83\xa0\x41\x72\x70\x56\xa0\xd7\x14\x5c\x73\xa8\x52\x90\x40\xb2\x64\x6c\x39\xa8\xe2\xd7\x9a\x53\xe6\x8e\x38\x05\xa0\x6b\x32\x84\xd2\x6b\xba\xcf\x41\x0b\xe7\xcd\xf3\x8c\x39\x79\x1f\xa8\xe1\x95\xd2\x86\xc0\xa5\x14\x62\x06\x86\xeb\x5a\xc8\xc1\x70\x7e\x9a\x1d\x91\xda\x4b\xe2\x23\x95\x41\xba\xd7\x00\x49\xac\xcd\x52\xf4\x55\xe3\x2f\xd5\xbf\xd4\x2f\x53\x78\x72\xb9\xa4\xb4\x5c\xc7\x68\x5c\x88\x37\x97\x73\x1a\xe7\x17\xeb\xc3\x94\xbf\x0a\x20\x12\x78\xf8\x74\x5a\x3f\x89\xe9\x9c\x2a\xd7\xe5\xcb\x97\x6d\x9e\xe7\xd9\xcc\xcc\x8c\x3d\x77\xee\x1c\x8e\x1c\x39\x42\x7d\x93\x25\x83\x69\x9f\x26\xc3\xd8\x36\x97\xf1\xc5\xa0\x1b\xe4\x9e\x9e\x0d\x03\xa0\xb6\xe4\x63\x59\x3c\x05\x33\x94\x16\xeb\xeb\xeb\xf6\xad\xb7\xde\xf2\x80\x85\xca\xa1\xb5\xbf\x06\xe4\x34\xb0\x58\xca\x1c\x79\xe6\x43\xcc\x36\xd2\x34\x9c\x56\xea\xff\x9c\xb7\xc4\xab\xa6\x93\xa9\x1f\x59\x8c\x09\xac\x29\x47\x4c\x81\xec\xc2\xc2\x42\xf6\xd4\x53\x4f\x01\x28\x67\x29\x26\xde\x26\x32\x0e\xad\xb9\x7e\xb6\x7c\x68\x3f\x3f\x33\x33\xc8\x8e\xfb\x6f\x43\x4c\x6c\x2c\x91\x36\xab\x40\x3f\xca\xbf\x8c\x29\x36\xc5\x18\x69\x0a\x86\x84\xda\x57\x3f\x39\x8f\xd0\x5b\xd7\x64\x16\xa7\x9c\xd1\x31\xb0\x07\x2d\xbb\x79\x7b\xa9\x77\x79\xa7\x33\xda\x74\xd5\x86\x5c\x0e\x5e\xfc\xeb\x73\xb5\xd9\x96\xb7\xdf\x7e\x1b\xbd\x5e\x2f\x90\x69\xd0\x50\x4a\xc6\x34\xe6\x3c\xf8\xb5\x94\x1e\xc2\xb5\x94\x56\x32\xf2\x9a\x22\x4b\xf4\xda\x33\x89\x47\x6a\x1e\x92\xac\xb1\xce\xab\xc9\x97\x5a\x56\x40\x2e\x97\xe6\x28\x35\xb9\x35\x7e\xdc\x79\x69\x32\x4a\x65\x8a\x95\x23\x04\xf0\x62\x6d\xc5\xe9\xa4\xf6\xa5\xfc\x43\x4e\x58\xaa\x3b\x49\x5e\x4e\xab\xf1\xa7\x74\x52\x3d\x6a\xbc\x25\xfe\x35\xe7\x04\xbd\x9d\x42\x36\x38\x55\x37\xb4\xe7\x3c\x84\xfa\x9d\x06\x82\xa5\x3a\x0d\xe5\x2d\xa5\xd3\xda\x3e\x24\x9f\x04\x82\x43\x6d\x2a\xd1\x84\xca\x45\x9f\xfb\x4f\xa5\x64\xbb\xbb\xbb\x58\x5b\x5b\xb3\xab\xab\xab\x38\x76\xec\x18\x05\x1f\x14\xa4\xd8\xf1\x41\xa2\x63\xb0\x42\x40\x4b\x59\x6e\x7a\x90\x6a\xb1\x2f\xb1\x9c\x41\x61\x67\xc5\x50\x59\xca\xe7\x97\x2e\x5d\xb2\xbd\x5e\x0f\x17\x2f\x5e\xc4\x83\x07\x0f\x52\xfb\xad\x54\x67\x20\xf7\x92\x7e\x68\xc0\x42\x8a\x4b\xb1\x5f\x80\x2c\x03\x94\x38\xce\x27\x64\x6b\x01\x54\x47\xfe\xf3\x20\x29\x87\x96\xa1\x16\xc7\xf9\x89\xfc\x57\x56\x56\xf0\x89\x4f\x7c\x22\x73\xce\x95\x1f\x54\xe4\x4b\x45\x0d\x6b\x5a\x8b\xdd\x7c\x75\xf9\x20\x3f\xdd\x1a\x65\x2b\xd5\xe9\xb5\xd5\x29\xb9\xa6\xfc\x6f\x1c\xb4\xe3\xff\x2b\x5c\xe3\xaa\xe3\xff\xfd\x2b\x49\xd2\xfb\xd1\x84\x61\xa5\x88\x7e\xb3\xad\x76\xb0\x8b\xff\x50\x45\x9d\x5f\x45\x3a\x9e\x6d\x79\x38\x33\xb8\x75\x67\xa1\x7f\x6d\xd8\x70\xe3\xc3\xe6\xc6\xe7\xb6\x94\xef\xf7\xa3\xda\xe5\x4e\x95\xdc\xae\xaf\xaf\xfb\x53\x12\x43\xf5\x1e\x6a\x27\x4d\x91\x42\x86\x47\x33\x98\x21\x84\x1e\xd3\x0b\x4e\x1f\x32\x4a\xd3\xe4\x1d\xa2\x4d\x95\x87\xeb\x7c\x0c\x34\x68\x0e\x34\xe4\xe0\x34\xd9\x34\x87\x19\x73\x14\x9a\x6c\xa5\xc1\x85\xde\x36\x21\x63\xc4\x9d\x15\x0f\x21\x47\x22\xf1\xa0\x72\xa4\x02\x92\x90\x6c\x9c\x26\xc5\xa9\x72\xd9\x38\x4d\x8a\x83\xd4\xc2\xb4\xc6\x9c\xc6\x6b\x0e\x87\xf7\x5d\xad\x2f\xc7\xfa\xb8\xe6\x1c\xb8\x9c\x34\x68\x7c\x63\xd7\xa9\x7a\xaf\x81\xc2\x90\xb3\x0e\xf1\x7f\x1c\xba\xb2\x8c\xef\xbf\xff\xbe\x7d\xff\xfd\xf7\xb3\x53\xa7\x4e\xe1\x23\x1f\xf9\x88\x9d\x9d\x9d\xf5\x5b\x19\xca\x3e\xe0\x07\xd9\x1e\x88\x90\xa5\xa2\x89\x40\x5e\xaf\x2e\xf3\xf6\x40\xc6\xcb\x43\x40\x4e\x79\x26\xd7\xeb\xaf\xbf\x0e\x76\x1a\x7a\x8a\x4e\x87\xea\x3e\xd4\x07\xa8\x9d\x08\xd9\x33\x8d\x57\x08\xf8\x4b\xf2\x69\xf9\xa7\xd0\x22\xf4\x3a\xb4\x64\x54\xa7\x62\xae\xd0\x88\xc6\x9a\xed\xc8\xce\x8c\x31\xfe\xf5\xb2\xbc\x33\xcc\x66\x97\xba\xf9\xb1\xf9\x7e\xe3\x78\xe6\x4c\xa7\x5a\xce\x29\x1a\x1b\xc2\x1b\xcd\xda\x0c\x4c\xb9\xd7\x84\x6d\x38\x29\x7e\xf9\x77\x89\x6a\xdf\x2c\x2a\x66\x6e\xaa\x59\x93\xea\xbd\xe9\xda\xf1\xfd\x13\xf7\x13\x98\xc6\x76\x73\xbb\x7d\x6f\xbe\x7f\x65\x73\x66\xf8\x00\x93\xdf\xa2\xf0\xa7\xe3\x0e\x8d\x31\xb5\x57\xa0\x9d\x73\xf8\xe1\x0f\x7f\xa8\x19\x16\x0d\x6d\xf3\x10\x73\x98\xf4\x5e\x6b\xef\x50\x47\x88\x39\x66\x89\x3e\x34\x02\xf3\x34\x92\x3e\x52\x3a\xad\x2c\xda\x28\x2e\xa5\x63\xc5\xc0\x4f\xc8\x71\x48\xa3\x08\xc9\x61\x85\xda\x2e\x56\xa6\x98\x31\x92\xca\x44\x81\x4c\xc8\xc8\x68\x86\x52\xca\x33\x34\x1a\x8b\xd5\x9b\x44\x1b\x2b\x5f\x08\x30\x73\xfe\x9a\x2d\xd3\xe4\xd1\xf2\x9e\x46\xa6\x94\xf6\x4c\xd1\xc1\x50\x3d\x85\x68\x24\x9e\x9a\xae\xc5\xf4\x94\x07\xad\x6c\x31\x70\x28\xf5\x8d\xd4\x76\xd7\x1c\xaa\x26\xbf\x24\x4f\xcc\xbe\xd4\xf2\xbe\x7e\xfd\x7a\x76\xfd\xfa\x75\xbb\xba\xba\x9a\xbd\xfc\xf2\xcb\x65\xda\x27\x9e\x78\xc2\x2f\x1d\x79\x9b\x9c\xd1\xd9\x70\xf5\x63\xbd\x44\x86\xea\xd3\x2f\x0e\xbd\x5e\xcf\xbf\x64\x01\x6b\x2d\x7e\xf8\xc3\x1f\x6a\xb2\xd2\x32\x85\x40\xb6\x46\xab\xd1\xa7\xd4\x51\x48\xe7\x42\xf6\x40\x93\x25\xb5\x9f\x4b\x21\xa3\x1f\x59\xd4\x84\xe6\xca\xa6\xd1\x69\x05\x90\xf8\x65\x00\xd0\x6a\xb5\xb2\xb9\xb9\x39\x00\x65\x43\x66\x40\xf5\x6d\x22\x53\x1c\xf1\x3f\xdb\xcf\xe6\x97\xba\xf9\x89\xce\x20\x3b\x66\x80\x6c\x62\x43\x6d\xf1\x3b\x81\x53\x38\x91\x70\x10\x1d\x9f\xa9\xe1\x9b\x65\x6a\x13\x2a\x6c\x76\xc5\x50\x02\x9e\x15\x51\x5e\xe3\xdf\xcf\x76\x06\xce\x00\xa3\xcc\xf5\xb7\x3b\xc3\x3b\x77\x17\xfb\x57\x0e\x9a\xa3\x5d\x3f\xd3\x82\xfa\x77\x89\x6a\x87\xcd\x39\xe7\xac\x73\xce\x6e\x6d\x6d\xf9\x6c\x24\x65\xa2\xf1\xfc\x5a\x4a\x97\x62\x70\x34\x47\x0c\xc4\x15\x33\x94\xaf\x64\x28\x35\xe7\x2e\xf1\xd0\xd2\x68\x46\x58\xba\x4e\xe9\x70\x34\x4d\xc8\x31\x87\xca\x40\xe9\x42\x69\x42\x69\xf9\xf3\x98\x23\x9c\xd6\xb9\x48\x74\x3c\xf0\x76\xe5\x86\x4c\x6b\xe3\x14\x27\x18\xd2\xbf\x14\xe0\x11\xca\x27\xa4\xef\x92\xa3\xd3\xf2\x88\x95\x27\x54\x76\x29\x7f\xae\xe7\x29\x7d\x32\xe4\x64\x62\xe5\xd4\xca\xa3\xdd\xc7\xd2\x85\xf2\x51\x01\xc1\xef\x40\x86\x0f\x0b\x54\x42\x4e\x7b\x42\xc6\x8d\x8d\x0d\xfb\xca\x2b\xaf\x94\xf1\xc5\xc1\x75\x25\xcd\xdc\xdc\x9c\x6d\xb5\x5a\xe5\x72\x91\x07\x24\xd2\x2f\x00\xbb\xb7\xb7\x87\x7e\xbf\x5f\xf2\xbf\x73\xe7\x0e\x7e\xf2\x93\x9f\xc4\xfa\xa4\x26\x77\xcc\x76\xa7\xd4\x39\xd5\x47\x4d\x4f\x53\xf4\x51\x8b\x8f\xf5\x5b\x1a\x1f\xc3\x10\x19\x50\x3f\x80\x4e\x25\x62\xd7\x19\x12\x99\x0b\xe9\x6a\x4e\xf0\xdc\xb9\x73\xf8\xc2\x17\xbe\xc0\xdf\x79\xcf\x80\xf2\x30\x9f\xbc\x61\xd1\x5a\x3a\xc8\x57\x97\x0e\xf2\x93\xcd\x51\xb6\x5c\x9e\x8e\x5b\x00\x0c\x8a\x47\x54\x00\x23\x08\xe8\xd8\x32\x4f\xb5\x52\x64\xaa\x7b\x32\x4b\x33\x01\x82\x40\x97\x8c\x26\x33\xa9\x21\x6e\x43\xf1\x90\x43\x3f\x77\xfb\x0f\xe6\x06\xd7\xee\xcf\x0f\xee\x16\x6f\x11\x95\xdf\x22\x02\x01\x2d\x74\x79\xc8\x18\x83\xfd\xfd\x7d\xfc\xfd\xdf\xff\xbd\x66\xc0\xa5\xf6\xe1\xca\x03\x96\x8e\x2b\x26\x84\x6b\x1e\x34\x47\x18\x92\x8b\xe7\x4b\xc3\x34\x86\x46\xe2\xa1\xe9\x61\x68\x94\xa0\x75\xaa\x14\xde\x9a\x11\xd1\x40\x57\x2a\xff\xd4\x8e\x1e\xea\x77\x92\x41\xe2\x72\xc4\x8c\x93\x26\x37\x97\x8b\xd3\xa5\x0c\x5a\x52\xf2\x95\xca\x92\xe2\x28\x43\x79\xa5\xf0\xe6\xd7\x5a\x88\xd5\x4b\x8a\x21\x0f\xb5\x41\x8a\x2c\x21\xfb\xaa\xd5\x8b\xe4\xe8\x53\xf8\x6b\xfc\x42\xfd\x52\x03\xcd\xa1\xf6\x93\xf4\x3c\x06\x6a\x43\x6d\xac\xc9\x1b\xa2\xe1\x3c\xc4\xf8\xef\x7d\xef\x7b\xb5\xf6\xfb\xc2\x17\xbe\xe0\xf7\x69\xa6\xe8\x0f\x7e\xf6\xb3\x9f\xe1\x83\x0f\x3e\x88\xe9\x6c\x0a\x08\xe3\xf1\x29\x7d\x30\xc6\x23\xd5\x3e\x69\x32\xa5\xb4\xad\x94\x36\x34\xc0\x9a\xd0\x35\x6d\x8f\x4b\x48\xf0\x14\x25\x4a\x49\x67\x81\xf2\xa0\x1e\xba\x21\x17\x00\x32\x7f\xe8\x4f\x6b\x94\x75\x96\xbb\xf9\xf1\x85\x5e\xe3\x64\xc3\x99\x8e\x07\x08\xf4\x75\x67\xc3\x90\x43\x09\x5a\x1c\x8b\x20\x81\x2e\x33\x79\x12\x3a\x4b\x53\x9b\x89\x51\xf7\xce\xe8\xfc\x27\x5f\xb3\x1e\xdf\x8d\x32\xd7\xdf\x69\x0f\x37\xee\x2e\xf4\xaf\x6c\x77\x46\x5b\xa8\x3e\xa6\x35\x71\x4a\x2e\x3f\xc1\xd1\xd7\x0d\xc2\x8a\x20\x29\x72\x0c\x48\x82\xc4\x69\x3c\x38\x4d\x88\x97\x24\x97\x06\x24\x62\xce\x52\x92\x43\x53\xf2\xd8\xc8\x4e\x33\x66\xa9\xa3\x43\x49\x6e\x1a\x27\xf1\x8c\x95\xe5\x71\x68\x24\x30\x16\x33\x74\x31\x83\xc0\xdb\x35\x24\x4f\xa8\xbe\x53\xdb\xe0\xc3\x18\xc8\x54\x83\xfe\xb8\x86\x9c\x87\x54\xbd\x9c\x26\xc4\xfa\xb3\x7f\x06\xe1\xb9\x54\x8f\x29\xfa\xce\xe9\x3e\x4c\xfd\xa4\xfa\x8d\xd8\xf3\x50\x9f\x9b\x86\xcf\xb4\x32\x84\xc2\x54\x80\xe9\xb5\xd7\x5e\xb3\xaf\xbd\xf6\x5a\x90\x86\xc5\x6b\x21\x05\xac\x85\xc2\x34\x36\xf4\xc3\x86\x14\x20\x15\x2a\x3f\xd7\xdb\x14\x7b\x35\xc1\x84\xfe\x4a\xd7\x50\xae\x33\xf2\x97\x5a\x21\xb5\x3c\xc9\xc6\xa5\x0c\x63\x20\x93\xa1\x3a\xbf\xa5\x35\xd7\x6f\xcc\x2f\x1f\xe4\x67\x66\x06\xd9\x1a\x93\xa1\x06\x55\xe8\xa1\x71\x25\x18\x31\xf2\x4c\x49\x8d\x06\x75\xb0\xe2\xd8\x73\x1e\x38\x28\x8a\xd2\xb1\xf8\x7e\xc3\xed\x6f\xcc\x0d\xae\xdc\x5d\x18\xdc\xc6\xe4\x17\x42\x6b\xc7\xfa\xd3\xbd\x2d\x1b\x1b\x1b\xfe\xbb\x14\xdc\xd1\xf0\x76\x82\x70\x2f\x81\x12\xcd\x41\x68\xed\x4c\x79\x69\xc6\x46\x73\xd8\x9c\x26\xc5\x69\x4b\xf9\x52\x39\x63\xe0\x4d\xd2\x5f\x1a\x9f\xb1\x78\xa9\x2c\x5c\x1e\x9e\x97\x56\x5f\xf4\x79\x48\x4e\x2e\x17\x4f\x1b\x0a\x21\xe7\x2f\xc9\x23\xf5\x53\x7e\xad\xb5\x91\x96\x57\x08\x64\xa4\x18\xb6\x58\x98\xd6\x80\x4b\xed\x1a\xa3\x97\xae\x25\x39\x68\xfd\x49\xc0\x71\x5a\xde\xda\x20\x21\x45\x0f\x62\x65\x93\x80\xbd\x24\x47\x0c\xf4\x69\x00\x39\x35\x70\xfe\x92\xdf\xa0\x74\x1a\x7d\x8c\xaf\x16\xa4\x3c\xe8\xb3\x69\x75\x34\x55\x5f\x24\x3d\xd1\x6c\x17\x6f\x9b\x58\xbb\x6a\x6d\xe9\x83\x66\x5b\x52\x75\x26\xc4\x9b\xe6\x11\xf2\x3f\xb1\xb4\xd3\xda\x80\x89\x20\x29\x0e\x57\x22\x49\xb0\x69\x50\xb1\x24\x48\xf6\xdc\x73\xcf\xe1\xa5\x97\x5e\x02\x30\x5e\xb6\x21\xe7\xb8\xe4\xce\xb9\xdc\x39\x97\x65\x16\xf9\xa1\x83\x7c\x75\xf1\x20\x3f\x9d\x8f\xcc\xa2\xdf\x3b\x32\x3e\x15\xd7\xd5\xc0\x43\x6d\xd2\xc3\xd1\x4b\x27\xfe\x52\x60\x51\x82\x15\x37\x7e\xd3\xc8\x29\x68\x84\x46\xd7\xc0\x8e\x86\x5e\x98\x5c\x23\xe3\x86\xbb\xed\xd1\xc6\xfd\xf9\xc1\x8d\x87\x9d\xc1\x26\xc8\x86\x5c\xf2\x57\x3b\x70\x0e\xa4\x7e\xad\xb5\x31\x00\x02\xc8\xce\x97\x8f\x88\xe9\xaf\x46\xe7\xe3\x43\xce\x97\x77\x50\x09\x40\x49\xc6\x2a\x64\xf8\x39\x20\x0a\x22\x6f\x21\x2f\xda\x49\x35\x67\xcb\xff\x38\x7f\x0d\xa8\xa4\x00\x81\x50\x7d\xc4\x40\x0c\xe7\x4d\xef\x79\x19\x38\x7f\xa9\xee\x39\x6f\xad\x0c\x52\x48\xa1\x0b\x01\xe6\x98\x81\x8d\x3d\x9b\x86\x36\x05\x48\xc4\x68\x63\xba\x25\xd9\xc6\x90\x5c\x12\xef\x18\x10\xd0\x9c\x5a\x88\xb7\x44\x2b\xb5\xbb\x96\xa7\x96\x4f\x0a\xe8\x4e\x09\x92\x5c\x9a\x5d\x49\x05\x56\x12\xfd\x34\x65\x48\xe1\x2d\xe5\xc3\xe5\xd7\xfa\x84\xa4\x27\x29\x03\x91\x69\xca\x93\x22\x7f\xac\xdd\x69\xdc\xe3\xf8\x71\xe9\x5a\xe2\x1d\x8b\x4b\x0d\xa5\x1d\x4a\x41\x56\x92\x92\xa5\x8e\xae\xd4\xd0\x6a\xb5\xd0\xe9\x74\x32\xa0\xfa\xc6\x03\x05\x2f\xc6\x98\xbc\x69\x4d\xe7\xd0\x7e\xf3\xe4\x7c\xbf\x71\x2c\x73\xa6\x03\x8c\x67\x68\x0c\x4c\xed\xed\x1e\x53\x1e\xd3\x4f\xcf\xca\x2d\x9e\x95\xaf\x4b\x93\x5f\x0e\x34\xca\xfb\xf1\x46\x17\xff\x86\x34\xa7\x33\x13\xf4\x45\xbc\xc0\x52\x0a\x83\x86\xdb\xdf\x9a\x19\xde\xd9\x98\x1b\xdc\xb2\x59\x1d\xb0\x14\x60\x45\x3c\xe6\xf9\xee\xdd\xbb\xf6\x47\x3f\xfa\x91\x67\x93\xd2\x01\x7c\x88\x8d\x22\x53\xe8\x42\x60\x24\x04\x68\xfc\x75\x4c\xc1\x35\xa0\x22\xd1\x84\xe4\x7d\x1c\x83\x2a\x01\x29\x89\x46\xd3\xf3\x90\x03\xe1\xa3\x9d\x18\xa8\x0b\x05\xcd\xc0\x6b\xc6\x2e\x06\xc2\x78\x1b\x86\x40\x52\x4c\x87\x42\x6d\x13\x03\xb6\x29\x79\x70\xda\xd0\xb3\x14\x60\x4b\xef\x53\xaf\x53\xf2\xa6\xf4\xa9\xe5\xd5\xc0\x78\x4a\xbe\xd3\x02\xce\x14\x60\x93\xc2\x97\xeb\x73\x0c\xd4\x6a\x0e\x9e\xf3\xa4\x72\xc4\xfa\xa3\x0f\xdc\xb6\xa4\xf4\xa9\x14\xd0\xc6\x03\xd7\xe1\x14\xfb\xa7\xf5\x79\x89\x9e\x5f\xc7\x00\xcc\xe3\x0c\x2a\xf8\x20\x4d\xca\x5f\x2b\x57\x8a\x0d\xd0\x9e\x85\x78\xa7\x82\x98\x09\x7b\x25\x29\xa0\xf6\xc7\x33\x93\x94\x24\xa4\x34\x13\x9d\x95\x7e\x9b\x88\x9c\xdf\x52\x2d\x13\xf5\xc6\xcb\x44\xed\x41\xb6\x62\x60\xf2\x92\x13\x5f\xa6\x29\x5f\x61\xf6\xcb\x4e\x3a\xc8\xf0\x64\xe2\x52\x91\x02\x58\xc4\xf4\x6c\x9a\x85\xbf\x98\xc4\x83\x85\xb3\xdd\x7c\xb4\xbd\x39\x3b\xb8\xb5\x35\x33\x78\x50\x9c\x92\x5b\x82\x17\xf2\xa1\xad\xda\x29\x8a\xc5\xeb\x72\x78\xf8\xf0\x21\x20\x2b\xac\xe4\x38\x34\x60\xc9\x9d\xa9\x14\x24\x85\x97\xf2\x4a\x35\x84\xfe\x9e\x83\x93\x69\x41\xaf\x06\x08\xa4\x7c\x24\x83\xc6\xf9\x00\x93\x72\x84\x0c\x92\x64\x64\x25\x23\xce\xdb\x42\x02\xfd\x52\xfb\x48\x75\x16\x92\x5b\x32\xe2\x9a\xa1\xa0\x72\x4d\x53\xf7\xbc\xbd\x24\x43\xcc\xeb\x5a\xe3\xad\xe9\x8e\xe6\xbc\x39\x9d\x74\xcf\xe3\x35\xa7\x12\xca\x83\x87\x69\xf5\x31\x74\x2d\x81\x36\x49\x96\x98\xc3\x95\x9e\x87\xfa\xb1\xd6\x4e\x92\x4d\x4f\x01\x09\xd3\x3a\x5c\x9a\x9f\xc4\x2f\x46\x93\x0a\x14\xb9\xbc\xa1\x6b\x5e\x6f\x1a\x8f\x90\x2f\x4b\xd1\x47\x9a\x4f\x4c\x07\x43\x79\xa5\x0c\x06\x42\x3c\xb5\x10\x6a\x13\x4d\xae\x10\x8f\x0f\x13\x42\xa0\x9f\x5e\x4f\x80\x2e\xba\x39\x77\x1a\x23\x26\xc5\x73\xe3\x08\x21\x2e\x03\x60\x9f\x7a\xea\xa9\xec\xcc\x99\x33\xfc\x5d\xf7\xf2\x4d\x22\x00\xe3\x65\xa2\xfd\xe6\xea\x62\xb7\x71\xb2\x69\xcd\xe2\xf8\xbc\x38\x57\x1d\x18\x07\xb6\x8f\x84\xbe\x24\x44\xbe\x33\x34\x71\x2e\x0b\x2a\x70\x42\xf7\xc2\xf0\x8f\x2b\xf2\xd7\xa4\xf9\x59\x2c\xf4\x30\xba\x92\x07\x26\xaf\x7d\x18\x65\xae\xbf\xdb\x1e\x6d\x3c\x9c\x19\xde\x39\x68\xda\x6d\xf2\x31\x2d\xfe\x09\xf3\xda\x29\xb9\xf7\xee\xdd\xb3\xef\xbc\xf3\x0e\xad\x53\x1f\x1e\xa7\x73\x6b\x23\x64\xcd\x08\x49\xed\x29\x39\xa0\x90\x31\xa0\xf9\x48\xf9\xc5\xd2\x84\x80\xc8\x34\xce\x48\x02\x0b\x9c\xbf\x54\x3f\x29\x65\x0b\x81\x1f\x9a\x87\xe6\x54\x43\x79\x73\x39\x42\xb2\x4a\xe9\x42\xf9\xf1\xe7\xd3\x00\x30\xe9\x59\x4c\x7e\x7a\x9d\xca\x53\x2b\x07\xa7\x8d\x3d\x4f\x95\x4d\xcb\x8f\xf3\x89\xd5\xbb\xa4\x5b\x12\x7d\xa8\x3d\x62\xb2\x4a\xba\x19\x2b\x97\xc6\x3b\xa5\x1d\x53\x64\xa5\x72\xc5\xfa\x95\x94\xbf\x14\x52\x74\x25\x24\x8b\x96\x4f\xcc\xf6\x85\x74\x46\xcb\xcf\xc7\x6b\x76\x64\x9a\x3e\xad\xd5\xb7\x64\xcb\xf0\xe2\x8b\x2f\x66\x33\x33\x33\x34\x5d\xc8\x6e\x65\x6f\xbc\xf1\x06\xfd\xb8\xe4\x04\x3f\xe1\x97\xd3\xc5\xf2\x98\xc8\x53\xe0\xa5\xe5\x4d\xaf\x27\xda\x58\x7b\x1d\x9a\x33\x97\x1a\x3b\xd4\xa8\x92\xa2\x95\xe9\x8e\x1e\x3d\x8a\xb5\xb5\xb5\xb2\x72\xfd\x1b\x45\xf4\xc4\xdc\xcc\x99\xd6\xca\x7e\xf3\xf8\x5c\xbf\x71\xac\x61\xcd\xac\x99\x38\x70\xa5\x0a\xfc\x11\x7b\x13\x59\x4d\xe3\x4c\x3d\xa2\x9c\x6d\xa9\x1f\xd7\x32\xc9\x87\x6d\xa8\x09\x1c\x36\x04\x7f\xbe\x6f\xbf\xe1\xf6\x1f\xce\x0e\xef\x3d\x9c\x1d\xde\xb5\x19\xba\x06\x86\x7e\x09\xd4\xcf\xb8\x58\xa0\xf6\xbd\x0a\x6c\x6d\x6d\xe1\xfa\xf5\xeb\xb1\x0e\x4d\x43\xcc\x10\x70\x63\x17\x32\x9e\xd2\x08\x20\xd6\xe9\x43\xb2\xa5\xd2\x85\x46\x12\x31\x87\x16\xe2\x97\x32\x12\x8b\x95\x6f\x1a\xc7\x30\x4d\x1f\x99\xc6\x70\x4b\x23\x30\x29\x0d\xcd\x33\x64\xfc\x25\xf9\xe8\x7d\xcc\xe8\xa7\x3a\x16\xce\x5b\x1b\x61\x4a\x86\x31\xd5\xc9\x6b\x61\x1a\xd9\xe8\xb3\x90\x43\x0f\xd5\x87\xc6\x2f\xe6\xfc\x34\x7d\x08\xd9\x5d\xed\x59\x2c\x6f\x29\x1f\x49\xa6\x58\xbc\xf4\x7c\x9a\x3e\xfa\x38\x7a\x05\x00\x38\x74\xe8\x10\xce\x9d\x3b\xa7\x3a\xea\xf5\xf5\x75\x3c\x7a\xf4\x88\xe6\x1f\x73\x8c\x31\x5a\x1e\x42\x69\x53\x6d\x8b\x28\x7b\x20\x4f\x3b\x3b\x3b\x9b\x7d\xec\x63\x1f\xab\xa5\x39\x7f\xfe\x3c\x3a\x9d\x4e\x8d\x17\x3f\x0c\x8f\x9c\x2b\x63\x47\xa3\x11\x7a\xbd\x5e\x49\x7b\xeb\xd6\x2d\xdc\xbe\x7d\x3b\x25\x7f\x49\xde\x98\xcd\xf6\xbf\x9a\xae\x72\x1b\x1d\xd4\x35\x7a\x00\x5d\x8a\x41\x0b\x29\x5c\x8c\xbe\x26\x3c\x79\x0d\x9a\x1e\x97\xec\x81\x54\xde\x1a\x9a\xce\x52\xb7\x71\xaa\x3d\xcc\x56\x0c\x90\x4f\x7c\x10\xb1\xf8\xcf\x90\x69\x10\xe7\x0c\xca\xc3\x6c\x01\xb2\x84\x44\x3e\x0e\x50\x7b\x45\x7a\x1c\x5b\x1e\xd7\xe2\x02\xa0\x47\x38\xab\xa5\x76\x28\x9d\x1a\x0c\x9c\x71\xf6\xa0\x65\xb7\x1e\xcc\x0e\x6e\x6d\x77\x86\x5b\xc5\xc9\xb8\x5d\x7a\x3a\x2e\xfd\x3a\xa8\x3f\xe2\x7f\x63\x63\xc3\xde\xba\x75\x2b\xc4\x3c\xd6\x66\xa9\x23\xe7\x69\x0d\x9a\xa4\x7c\x21\x43\x1f\x43\xda\xb1\xb4\x60\xd7\x9a\x0c\x52\x59\x62\xb2\x6a\x41\x92\x87\xf3\xe7\xbc\xb5\x8e\x1a\x92\x2d\x16\x24\x59\x43\x0e\x92\xc6\x6b\x74\xa1\xb2\x84\x82\x54\xc6\x90\x01\x4b\x05\x55\xb1\x3c\xa5\xfc\x43\x41\xb2\x3b\x29\xa0\x87\xa7\xd3\x74\x8b\xf7\x23\x4f\x1b\xd3\xa7\x90\x9c\x1a\x7d\xc8\xf8\x4f\x9b\x47\xc8\x7e\x6b\xfd\x38\xa6\x17\x21\xba\x14\x39\x53\x06\x0b\x19\x00\x7b\xf6\xec\xd9\x6c\x76\x76\xb6\xc6\x68\x75\x75\x15\xcf\x3e\xfb\xac\x0a\x1a\x3b\x9d\x8e\xe5\xcb\xec\x7b\x7b\x7b\xb8\x7a\xf5\xea\xb4\xc0\x42\x2b\x53\x88\x8e\x3f\x97\xec\xaf\x04\x92\xc4\xfc\x57\x57\x57\xb3\xb5\xb5\x35\x00\xc0\xfc\xfc\x3c\x5e\x78\xe1\x85\x90\xbe\x65\xc0\xa4\x7f\xa2\x9f\x28\x78\xfe\xf9\xe7\xe9\x23\xbb\xba\xba\x8a\x43\x87\x0e\x61\x7b\x7b\x1b\x37\x6e\xdc\xa0\x72\x68\xbe\x20\x15\x37\xd0\x6b\xad\x0f\x4b\xf5\xa0\xa6\xcd\x19\x81\x64\x94\x34\x63\x1f\x32\x08\x92\xe0\x00\x80\x23\x47\x8e\x64\x8b\x8b\x8b\xfc\xc0\x39\xff\x9b\x15\x32\xe5\x8b\xdd\x7c\x71\xbe\xd7\x38\x99\x5b\x33\x2f\xcd\x9b\x94\xb3\x2c\xe5\x67\x81\x3c\x68\xf1\x08\xb3\x3e\x5f\x32\x71\xf6\x4a\x11\xeb\xd4\x69\x15\x0f\x64\xfc\xb6\x5f\x53\x07\x4e\xc2\x17\x9f\x1d\x1c\x4c\xb1\x36\xe5\x08\x28\x1a\x1a\xd7\xdf\x6e\x0f\xef\x3d\x9c\x1d\xde\xe9\x36\x2d\x3d\x29\xb7\x76\x6e\x8b\xaf\x2f\xaf\x5c\x37\x6e\xdc\xc0\xa5\x4b\x97\xb8\x42\xd3\x90\xe2\x68\xa4\xfb\x18\x00\xcd\x94\x78\x1a\xa7\xc9\x92\x02\x36\x38\x3f\xe9\x57\x53\x74\xc9\x69\x84\xf8\xa7\x74\x2c\x0d\x10\x49\xf2\xa4\x8e\x14\x42\x0e\x3e\xe6\xd0\xa5\x7b\x0d\xe0\x69\x3c\x24\xe0\xa5\xdd\xc7\x0c\x35\xd8\xf3\x54\xbd\xd2\xca\xc1\x79\x84\xea\x54\xfb\x95\xe4\xd0\xf4\x4e\x8b\x9b\x06\x64\x85\xf2\xa3\xfc\x43\xe0\x2a\x05\x30\x6b\x6d\x12\xd3\x4b\x2d\x8e\x86\x98\x9e\x4a\xfd\x3e\xe4\x0b\x24\xde\x92\xde\xc5\xea\x8d\x87\xd2\xe9\x9e\x39\x73\xa6\x8c\x7b\xe9\xa5\x97\xb0\xbc\xbc\x5c\xa6\x15\x0e\x2e\x05\x7f\xf6\xdc\x73\xcf\xf9\x97\x3e\x4a\xda\xcd\xcd\x4d\x4b\x06\xcb\xb8\x72\xe5\x8a\xd6\x2e\x29\x00\x5b\xea\x6f\x31\xb0\x88\xc0\xf3\x09\xba\x23\x47\x8e\x64\x73\x73\x73\x78\xf2\xc9\x27\xf1\x91\x8f\x7c\x84\x97\x33\xab\xb6\x2d\xd4\x26\x03\x26\x18\xb2\x49\x02\x4b\xe8\xac\x73\x2e\x3b\x73\xe6\x0c\x4e\x9f\x3e\x8d\x7b\xf7\xee\xd9\x3c\x1f\x43\x03\x6b\x6d\x76\xed\xda\x35\x2e\x93\x0f\xbc\xce\xb4\x72\x4a\xf5\xab\xe9\x62\x48\xe7\xcb\x74\x39\x4b\x18\x33\xba\x29\x8e\x21\xd4\x78\xd9\x27\x3e\xf1\x09\x9c\x3e\x7d\xba\xf6\x41\x45\x7f\x76\x0b\xd9\x9c\xdb\x5a\xdd\x6f\xae\x15\xcb\x44\x9d\x49\xd8\x40\x94\xd6\x54\xe7\xaf\xf8\x19\x90\x6a\x3a\x6c\x4c\x4b\x01\x4d\xf9\x81\xc6\xda\x33\x54\x20\x08\xf5\xcd\xba\xe5\xf1\x76\x6c\xf9\x48\x9a\x68\x31\x64\x43\x4d\xf9\xf6\x92\x71\xe8\xe5\x76\x7b\x73\x76\x70\x6b\xbb\x3d\xbc\x8f\xfa\x5b\x44\xb5\x4d\xb9\x7e\x6f\x8b\xd0\x21\x53\x3b\x05\x0f\x5a\xda\x90\x93\x0a\x3d\x87\x22\x03\x7f\x2e\x39\x39\x6e\x70\x29\xad\x56\x36\x89\x86\x3f\x83\xf2\x8c\xcb\x84\xc8\xf3\x10\x7f\x1e\xa7\xe5\xaf\x81\x03\x9e\x0e\x42\x3a\x29\xbf\x98\x03\xd2\x1c\x34\xbf\x96\x74\x26\xe6\x90\xb8\xf3\x12\xfb\xb3\x20\x5b\x0c\xa4\x50\xba\xd0\xf3\x94\x74\x34\x3f\x4d\xef\x38\xbf\xd4\x3e\x11\x72\xb8\xbc\x5e\x38\xbd\xc6\x2b\x56\x5e\x8d\xf7\xb4\xe5\x92\xfa\x0e\xbd\xd7\xf2\xa4\xd7\xbc\xfc\xa9\x7a\x95\x2a\x2f\x0f\x65\xfa\x66\xb3\x89\x95\x95\x15\xe4\x79\x8e\x3f\xfc\xc3\x3f\xf4\xcf\xca\x40\x8f\xd6\x67\xe9\xc5\x7c\x18\x9d\x5d\x59\x59\xc9\x0a\xbe\x00\x80\x7f\xfc\xc7\x7f\xb4\x85\x0f\xc2\xc3\x87\x0f\xe9\x71\xfc\x31\xc0\xc1\xef\x43\xe5\x0f\xd9\x4b\x51\xee\xc3\x87\x0f\x67\x79\x9e\x67\x2f\xbe\xf8\x22\x4e\x9c\x38\x41\xd3\x95\xd7\x1e\x88\x10\x00\x93\x49\xa0\xa5\xa0\x2d\xaf\xfd\xd7\xad\x8b\xbc\xe8\xc7\x22\xed\xda\xda\x5a\x59\x3f\x83\xc1\xc0\xfe\xe0\x07\x3f\xc0\xdd\xbb\x77\x63\x6d\x9d\x05\xe2\x43\xe5\xd5\x74\x25\x04\x6e\x6d\xe8\x23\x8b\xdc\x58\x49\x0d\xa6\x19\x01\xcd\x28\xd0\x8e\x55\x6b\x08\xf2\x51\xc5\x96\x71\xc8\x0f\xed\xe7\xa7\x3a\x83\x6c\xc5\x38\xe4\xe2\x4e\x15\x3e\x05\x56\xfc\x96\x00\x05\xf5\xd7\x94\xcb\x46\x23\xa0\x64\x62\xb9\x89\x6f\xe4\x75\xf5\x37\x94\x26\xd7\x0b\xfd\x8c\x8c\x99\x78\xe6\xf9\x59\x83\xe1\x5e\xcb\x6e\x6e\xcc\x0f\xee\xec\x74\x46\xdb\xa8\xf6\xb4\x94\xe0\x05\x98\x38\xde\xdf\x76\xbb\x5d\xdb\xeb\xf5\x78\x3d\x03\xb2\xf2\x80\xc5\x69\x86\x32\x66\x94\x34\x83\x2a\x19\x6c\x4d\x06\x1e\x9f\x02\x86\xb8\x1c\x3c\x0f\x7f\xaf\x39\xdd\x98\x83\x0c\xc9\xce\x81\x06\xd8\x75\x8a\x6c\x12\x8d\x36\x7a\x90\xe8\x35\x99\xa4\xb2\x73\x5e\xa1\x36\x0b\xb5\x57\x0c\xc0\xf1\x3e\x1b\x73\x40\x21\x7d\x9c\x36\x4e\xe2\x1b\x02\xb5\x1a\x9f\x10\x88\x95\xec\x14\xe7\x1d\x02\x37\xa1\xfa\xd5\xda\x2d\x24\x53\x0c\x34\x4a\xd7\x94\x56\xd3\x07\x4d\x0f\x63\xf1\xa9\xfd\x9a\xf7\x1f\xad\x2c\x51\x80\xdc\x6c\x36\xb3\x4e\xa7\x83\xd5\xd5\x55\x7c\xfd\xeb\x5f\x2f\x67\x4a\xc0\xea\x8c\x9e\xb0\x0e\x4c\xcc\x24\xd0\x60\xc9\x73\xa9\x7d\x01\xc0\x7e\xf3\x9b\xdf\x2c\xd3\xfe\xf8\xc7\x3f\xb6\x1f\x7c\xf0\x01\x06\x83\x81\x56\x1f\x5a\xfd\x84\xfa\x98\x66\x67\xd4\xfe\x38\x3f\x3f\x8f\x3f\xf8\x83\x3f\xc0\xd2\xd2\x92\x04\x58\x32\x00\x74\x9b\x45\x56\x0c\xd8\x33\x56\x0f\xb5\xd9\x17\x02\x56\x60\x26\x4f\x64\x2f\x65\xf3\x75\xe5\x9c\xb3\xcd\x66\x33\xfb\x93\x3f\xf9\x13\xfb\xdd\xef\x7e\x17\xa3\xd1\x28\xdb\xdb\xdb\xc3\xf8\x38\xb1\x5a\xd0\xfa\xb4\x54\x2f\x9a\xfe\x71\x3e\x41\x3f\x17\xfb\xc8\x62\xa8\xf3\x4a\x99\x48\x9d\x6d\x42\x28\xf6\xe1\xa9\x12\xc8\xf8\xc3\xe7\x66\x06\x8d\xce\x52\x37\x3f\xdd\x1c\x65\xf3\x06\xc8\x0d\xea\xa0\x41\xdd\x70\x54\xdb\x28\x5b\xcc\x8d\x14\xe8\xa3\xda\xe5\xc2\xbe\x64\x44\x66\x68\xc6\x4f\xc9\xec\x0e\xc7\x4b\x22\x92\xf5\xb3\x38\xd2\x06\x18\x60\x98\xb9\xee\xd6\xcc\xf0\xd6\xa3\xce\xf0\xee\xb0\xe1\xf6\x01\x74\x8b\x3d\x2e\x74\xb6\x85\x9e\xdd\x02\xe7\x1c\x7e\xf5\xab\x5f\xe1\xad\xb7\xde\x0a\x19\x0f\xcd\x88\xc7\x1c\xa6\xd6\x59\x42\x69\x25\xc3\x9b\x22\x1b\xe5\xcb\xd3\x70\x23\x2f\xc9\xa6\x39\x4f\xcd\x38\x48\x41\xeb\x00\x9a\x6e\x67\x98\x94\x8d\xcb\x29\x75\x2e\x5e\x06\xc9\xd0\xc5\x1c\x90\x26\x3b\x97\x37\xd4\xf1\x79\x3a\x29\x3e\x64\x34\xa6\x75\x38\x5a\xf9\xb8\xcc\x52\x99\xb4\xf2\xa4\x1a\x37\x1e\xa4\xf8\x69\xf8\xa4\xca\xa0\xe5\xc9\xf5\x42\x92\x49\xe3\xa9\xc9\x9e\xc2\x4f\x0a\x21\x9b\x2e\x05\x29\x2f\xcf\x67\x5a\xd9\x52\xe3\x32\x00\x36\x1b\x07\x7c\xf4\xa3\x1f\xc5\xe7\x3f\xff\x79\xcd\x51\xf3\x5f\xed\x19\x80\xd2\x1e\xdb\x02\xfc\x4c\xf8\x27\xe2\x43\x6a\x76\xe6\xcb\x5f\xfe\x72\x96\x65\x99\x5d\x5f\x5f\x87\xb5\x36\xb3\x93\x5e\x3a\xe4\x2f\x27\xca\x26\xc4\x87\xd2\x65\x7e\x89\xe6\x4f\xff\xf4\x4f\xd1\x6a\xb5\xb4\x72\x7b\x7f\x59\xbf\x87\xc9\x32\xeb\xaf\x7d\x1a\x32\x7a\x1f\xfb\xaa\x21\x00\x38\x03\xeb\x8a\xbe\xe7\x50\xce\xf4\xdb\xc2\x27\x65\x7c\x46\xe6\x3b\xdf\xf9\x0e\x9c\x73\x78\xe5\x95\x57\xec\x9d\x3b\x77\xf8\x71\x20\xd3\xd6\x43\x32\x98\x15\x78\x67\xc0\x78\xc6\x45\xcb\x98\x0b\x10\xeb\x00\xa1\x86\xaa\xdd\x53\xd0\x52\xa0\xc4\xdc\xbf\x0a\x6d\x8c\xc9\x56\xf7\x9a\x2b\xf3\xbd\xc6\xc9\x86\x35\xb3\x1e\x18\x50\x14\x41\xbf\x33\x44\x97\x6d\xe8\x72\x92\x61\xe9\xfc\xd2\x0d\x05\x18\x7e\x0f\x4a\xb5\x85\x97\xf3\xa8\x87\x89\x9d\x33\xa6\xfe\x4b\x83\x5f\x35\xea\xe5\x76\xfb\xfe\x42\xff\xd6\xce\xf8\xbb\x44\xe5\x9e\x16\xf2\xfa\xb3\x25\x7f\xbc\xde\x34\x74\x4f\x43\xa8\x5d\x1e\xd7\x01\x50\x5e\x29\x74\x29\xc6\x5d\x34\x30\x91\x34\xa9\x79\xf2\x11\x8c\xd4\x09\x62\x65\x09\x01\x25\x49\x26\x0e\x18\x25\x7e\x52\x90\x78\x4f\xdb\x3e\xbc\xbc\x12\x7d\x0c\x2c\x48\x69\x24\x30\xa9\x81\x2c\xc9\x00\xf1\x76\x96\xea\x46\x33\x4a\x29\xe0\x86\x3f\x4b\x0d\x21\xc3\x4a\xaf\xb5\x38\x4d\x9f\x80\x70\x3b\xa5\xc8\x13\xd2\xb3\x94\x41\x42\x28\x8f\x50\x5f\x0b\xf5\x07\xa9\x8d\x1e\xa7\x9c\x49\xa0\xef\xf3\x9f\xff\x3c\xce\x9f\x3f\xef\xe9\xcb\x5f\x36\xb3\xa2\xfd\x71\xba\x5a\x7e\x64\xa6\x85\xda\x59\xfe\x0d\xb8\xda\xb1\x20\x5f\xfa\xd2\x97\xf0\xa5\x2f\x7d\x29\xfb\xcd\x6f\x7e\x63\x7f\xfe\xf3\x9f\x07\x65\x7f\x8c\xa0\xda\x8d\xb9\xb9\x39\xfc\xc5\x5f\xfc\x05\xa7\x93\xca\x9c\x7b\xbf\x49\xe3\x8f\xed\x34\xe7\x4f\x6d\x75\x56\x0f\xed\x37\x57\x66\x06\xd9\x72\x6e\xcd\x6c\x66\xd1\x32\x30\x18\x66\xae\xdb\xcb\xed\xf6\x41\x73\xb4\xb5\x3d\x63\xb7\xee\x2c\xf4\xb6\xee\xcf\xf7\xf7\x7b\x8d\xf2\xa5\x10\xff\x9b\x93\x6b\x8b\xb1\xbf\x02\x30\xae\xcb\x6f\x7c\xe3\x1b\xf8\xd7\x7f\xfd\x57\x5c\xbd\x7a\x35\xb5\xbc\x92\x1e\xf1\x67\xa1\x6b\xd1\xae\xe5\xc2\x83\x94\x91\x86\x64\xc8\xf8\xf3\x09\x9e\x7f\xf4\x47\x7f\x94\x9d\x3c\x79\x12\x40\x09\x20\x4a\xd4\x48\x0f\x9f\x3b\xba\xd3\x3a\x3e\x33\x68\xac\x35\x1c\xc6\xa7\xe5\x16\x4c\xf8\x4c\x4b\xfd\x6a\xf2\xb5\x9f\x09\x40\x21\xee\x4b\xa9\xe2\xab\xaf\x41\x07\x3e\xfb\xec\x0f\xbf\x33\xfc\xc9\xe4\x87\x1e\x47\xc6\x0d\xf7\x5a\xa3\x8d\x07\xb3\x83\x7b\xfb\xcd\xd1\x36\x8a\xaf\x89\x53\xe6\x2c\x00\x00\x20\x00\x49\x44\x41\x54\x3f\x9b\xf1\x07\x15\xe9\x9b\x44\xb5\xe9\xcc\x57\x5f\x7d\xd5\x5e\xba\x74\x09\x88\x1b\xdc\x58\xd0\x0c\x72\x6c\x14\xc5\xe3\xb4\xce\xc6\xf9\x7f\x58\x00\x1c\x92\x29\x05\x14\x4f\xe3\x10\x63\xf4\x21\x39\xe9\xbd\xe4\xbc\x25\xfa\xc7\xe1\xed\xc3\x34\xbc\x63\x21\xa5\x6e\x52\xe5\x4b\xad\xbf\x98\x23\xd4\x6c\x4e\xcc\xa9\xa6\x3a\x6f\x89\x77\xea\x8c\x0b\x97\x63\x5a\x5b\x19\x0b\xd3\x80\x8f\x0f\x33\x88\x88\xa5\x0d\x8d\x72\xa5\xb8\xd4\x81\x0f\xa7\xad\x5d\x7f\xe5\x2b\x5f\xc1\xb9\x73\xe7\x7c\xbc\xff\xf5\x03\x5a\xa0\xf2\x51\x19\xbd\x36\x0e\xf9\x5c\xaf\x91\xaf\xee\x35\x67\x0f\xed\x37\x17\xe7\xfb\x8d\xf9\xf6\xc8\x74\x1c\x80\x7e\xe6\xba\xfd\xdc\xf6\x7b\x4d\xdb\xdd\x69\x8d\xf6\x1f\xcc\x0d\xf6\x77\x3a\xc3\xfe\x28\x03\x9d\x55\xf0\x4e\xd9\xf7\x2b\x3f\xcb\x50\x02\x9a\xe7\x9e\x7b\x0e\xad\x56\x2b\x7b\xf5\xd5\x57\x3f\x6c\x1b\xc7\xf4\x24\x3b\x7c\xf8\x30\xbe\xf9\xcd\x6f\x6a\xf5\x50\x2b\xbb\x73\x2e\xcf\x60\xf2\x99\x7e\xd6\x3a\xf5\xb0\xb3\x72\xea\xff\x63\xed\x5d\x9f\xe4\x38\xae\x3b\xd1\xdf\xc9\xaa\xae\xae\xee\xe9\x79\x62\x30\x18\x0c\xf1\x18\x42\x20\x08\x42\x34\x04\x90\x26\xf8\x16\x4d\x8a\x21\xca\x96\xd6\x8f\x6b\xdd\xd0\xd2\xe1\xeb\x1b\xe1\x7b\x1d\xf7\xaf\xda\x2f\x1b\xb1\x5f\x1c\xe1\x0f\x1b\x61\x47\x78\xd7\xda\xf0\x5d\x5f\x59\x72\x48\xa6\x4c\x51\x12\x41\x52\x14\x4d\x42\x20\x08\x0c\x06\x83\x41\x4f\x4f\x4f\x77\x75\x55\xe6\xfd\x50\x95\x59\x27\xb3\xb3\x1e\x43\x6d\x22\x06\x5d\x95\x95\xaf\xca\x3a\x79\xce\xef\x9c\x3c\x99\xb9\x1f\x6f\x2f\x4f\x82\x4b\xfd\x24\xf8\x4a\x37\x15\xe7\x42\x49\x6b\x42\x61\x40\x0a\x11\xca\x05\x38\x89\x24\x4c\x24\xa9\xb1\x14\x18\x26\xc1\xc2\xdd\x71\x27\xbb\xf9\x60\x61\xf6\xc1\xad\xd5\xc9\xa7\x77\x97\x92\xfd\xc3\x28\x9b\x28\x42\x8a\x1c\x18\xe9\x73\xf3\x04\xeb\x27\x01\x00\xdf\xf8\xc6\x37\xa4\x94\x52\xfc\xf4\xa7\x3f\xc5\x7b\xef\xbd\xd7\xf8\x8d\xe1\x1f\x3f\x6d\xc6\x3f\x3c\xf7\xc6\xe2\xd2\x86\x99\xbb\xa1\x89\xb0\xbd\x65\x86\x61\x68\x1d\xa6\xe8\x5c\x6b\x14\x19\xad\x8d\x3b\xe7\xa3\x8c\x56\x08\x10\x66\x63\x38\xb2\xad\x21\x76\xb0\x41\x83\x6f\xc5\xcf\x5c\x0e\xe7\x54\xc6\xd2\xe7\x25\xbf\xd1\x76\x1a\x37\x38\xae\x32\xfc\xc9\x5c\x4c\x26\x54\xb2\xdf\x4b\xef\x1e\x46\xd9\x03\x49\xe5\xb9\x44\xc5\x54\x91\x77\x7b\x7f\x00\xc8\xb2\x8c\x9f\x4b\xe4\x32\x2f\xa0\x9a\x28\xdc\xb8\x36\xe8\xb6\x2a\x5d\x1d\xc3\xf7\x85\x36\x0c\x55\xa7\xf3\xb5\xd1\x57\x2f\x9c\x3c\xbe\xeb\xba\x7a\x78\x79\xbe\x34\x55\xf5\xb6\x79\x5f\x9d\xb7\xad\x50\xac\x6a\x5b\x55\xb9\x6e\x3f\x34\x29\x18\x4d\x75\xc2\xf3\xbc\x6d\x3f\xd6\x5d\xfb\xbe\xa7\x1b\xe7\xeb\xcf\xa6\xef\xc8\xcb\xe2\xa1\xa9\xef\xdc\xbc\x6d\xc1\x62\x9b\xb2\xdc\xd0\x86\x57\xd6\xd1\x7a\x53\xf9\x3c\x6d\x15\x0f\x70\xcb\x68\x12\x18\x6d\xca\x68\x13\xda\xa4\x73\xdb\x64\xe2\xff\xe0\x0f\xfe\x00\x8b\x8b\x8b\xe8\xf7\xfb\x08\x82\x60\xce\xaa\xc0\xf7\xf4\xd2\x7f\x61\x46\xe1\xc6\x28\x1a\x6c\x3d\x8a\x36\xd7\x0f\x3b\x17\x16\x92\xe0\x2b\xf1\x4c\x6c\x45\x99\x58\x0b\x24\xfa\x54\x1c\x0b\xa3\x08\x89\x24\x95\x28\x42\x92\x0a\x39\x9c\x84\xf2\xce\x61\x24\xff\x7d\x18\xa7\xb7\x76\x07\xb3\xbb\xf7\x16\x93\xbd\x87\xfd\x74\x82\x12\xbc\x68\x21\x6d\x35\x32\x08\x02\x5c\xb8\x70\x01\xa7\x4f\x9f\xc6\xfe\xfe\x3e\xfe\xdb\x7f\xfb\x6f\xc7\x79\xf7\x36\xfd\x0d\x00\xe2\xf4\xe9\xd3\x78\xfd\xf5\xd7\xd1\xe9\x74\x2c\xd0\x82\x72\xc1\x8a\xe9\x07\x21\x11\x2d\x4d\x3a\xfd\xed\xbd\xf8\xcc\xd9\xfd\xf8\xda\xca\x51\xf0\x6c\x3c\x0b\x2e\x74\x32\x5a\x17\x8a\x96\x84\x42\x9f\x6c\xb0\xe7\xd4\x4d\x52\x01\x32\x26\x4c\x16\x12\xf1\xd2\xca\x51\x70\x77\xeb\x51\xf4\xc9\xa3\x5e\xf6\xb3\xcf\x57\x26\xef\x7e\xb6\x3a\xb9\xb5\xd7\x4b\xc7\x8a\x90\x14\x32\x39\x61\x53\x46\x46\x8e\x03\xc0\xb5\x6b\xd7\x64\x18\x86\xe2\xa7\x3f\xfd\xa9\xef\x1b\x57\xbd\x73\x1b\x5a\xf7\x05\x8b\x96\xdc\xe5\xd0\x4d\xc1\x65\xa6\x6d\x06\x6e\x65\x59\x7c\x65\x11\x80\x90\x40\xe1\x60\x1a\xf4\x97\x26\xc1\xb9\x30\xa3\x3e\x00\xa1\x01\x85\xe5\x34\x0b\xd7\xc6\x32\x6f\x69\xe1\xcb\x91\xc9\xcd\x58\x64\xd1\xc6\x15\xab\x64\xaa\x86\x47\x4e\xca\x5a\x18\x05\x00\xd3\x40\x0d\x77\x07\xb3\xbb\x47\x91\x1c\x2a\xa8\x84\x60\xf9\xb4\xb8\xa0\xc5\xf7\xf1\x79\xff\xb6\x65\x2a\x4d\xcc\xaa\x29\x4f\xd3\xb3\x2f\xcb\xec\x1a\x81\xad\x73\xdd\x04\x5e\x9a\xea\xf1\xa5\xf5\x31\x77\x1e\xdf\xd4\x36\x37\x6d\x55\x9a\x2a\x41\x5d\x07\x42\x7d\xed\xa8\x7b\x5f\x5f\x9d\x6d\xda\xe6\xab\xc7\x17\xda\xf4\x77\x1d\x5d\x36\x09\x56\x5f\xba\x3a\xc0\xd3\x54\x7e\xdb\xfa\xdb\xe6\xf1\x5d\xb7\xb5\x66\x54\xbd\xc3\x97\x61\xd8\x6d\xd3\xb4\x05\x66\x5f\x56\x70\xd4\x85\xb6\x34\x00\x00\xf2\xf7\x7f\xff\xf7\xc5\xe6\xe6\x26\xc2\x30\x74\x05\x35\xb7\x2c\x84\x50\x08\x03\x85\x70\x65\xdc\xe9\x9f\x79\xd4\xdd\x3a\x71\xd8\xb9\xb4\x72\x14\x3e\xb5\x38\x0d\x2e\xc4\x33\x71\x26\x90\x62\x3d\x50\xe8\x33\xcb\xc2\x9c\x5c\x52\x14\x24\x92\xd4\x28\x13\x18\x26\x81\xdc\x3d\xbb\x9f\xdd\x1e\xc6\xd9\x2f\x77\x16\x93\xf7\x6e\xad\x4e\x3e\xbd\xbf\x30\x1b\x49\x42\xaa\x50\xee\x5c\x8e\x12\xd0\x88\x28\x8a\x64\xa7\xd3\x41\xbf\xdf\x97\xdf\xfc\xe6\x37\xc5\x7f\xff\xef\xff\xfd\xcb\xf4\x51\x65\x9e\xb3\x67\xcf\xe2\xf9\xe7\x9f\xc7\x60\x30\xe0\x7d\x11\xb2\xdf\x10\x40\x18\x48\x44\xcb\x47\xe1\xe0\xb1\x47\xdd\x33\x8f\x3d\x8a\xaf\xad\x8f\x3a\xcf\x0d\x12\x71\x25\xcc\xc4\x26\x03\x2b\xa1\x56\xef\xed\x85\x23\x79\xb9\x7a\x05\x2d\x11\x40\x0a\xb1\xc8\x30\x08\xb3\x60\xb3\x9b\x06\x17\x07\x49\x78\x6d\x79\x12\x3c\x77\x72\x14\xfd\xe8\xd6\xca\xe4\xa7\xbf\x59\x99\xde\x1e\x47\xd9\x44\x0a\x63\xf5\xd2\x6e\x0e\x26\xc4\x71\x8c\xa7\x9e\x7a\x4a\x12\x91\x78\xe7\x9d\x77\xda\xca\x9d\xe3\x8c\x0b\x5f\x3e\xe8\x06\xf1\xd0\xc6\xdc\x53\xa7\xc1\xba\x8c\xa7\x72\x90\xb8\x8e\x45\x4a\x29\x21\x40\xe1\xc6\x41\x67\xbd\x9f\x04\x67\xf2\x43\x15\xc9\xac\xfc\xe1\x4b\x92\x35\x6a\xe0\x53\x48\x06\xc2\x38\x69\xc0\xd2\x98\xd5\x46\x45\xa1\x6a\x0e\xf0\xb4\x81\x2c\x70\x36\xbe\xb3\xa2\x73\x9f\x1b\x00\x19\x94\x1c\x47\xd9\xde\x83\xfe\x6c\x67\x12\xca\x51\x31\x28\xf4\x8a\x22\x09\x7b\x1e\xd1\xf4\xd1\x3b\xef\xbc\x23\xef\xde\xbd\xdb\xae\x1d\xcd\x08\xb5\x29\x8d\x2f\x8f\x4b\x58\x6d\xb5\xea\xba\x3a\xeb\x84\x75\x1b\x06\xeb\x13\x7a\x4d\xda\x6b\x9d\xe0\x6a\x0b\xb6\xda\xd0\x7d\x5d\xfb\x75\xfb\x04\xda\xbf\x4f\x5d\xb9\x4d\xd6\x20\x1f\xd8\xa8\xca\x53\xf7\x0d\x9b\xbe\xb7\x5b\x6f\x95\x55\xa7\x0e\x84\x34\x59\x4c\x9a\xc2\x71\xac\x03\xba\xfe\x3a\x80\x51\x07\x74\xe1\x3c\x73\xfb\xc3\xf7\x5d\xdb\x7c\xc3\xe3\xf0\xd8\xe3\x84\x2f\x53\x56\x5d\x3f\xf8\xca\x39\xf6\xf7\x13\x42\x88\x37\xde\x78\x03\x8f\x3d\xf6\x18\x84\x30\xe7\xe4\xe9\x72\x42\x94\xbe\x1b\x11\x29\x84\xbd\x24\x88\xcf\x3f\x8c\x37\xcf\xee\x77\x6f\x9c\x1c\x75\x9e\xed\x27\xc1\xc5\x4e\x46\x1b\x81\xa2\x15\xa1\xd0\x07\x28\x04\x94\xd0\x0e\xa8\x73\xdb\x5c\x14\xfb\x6a\x09\x45\x2b\xa1\x54\x69\x94\x06\x17\xfa\xb3\xe0\xca\xf2\x44\x5d\x3b\x71\xd8\x79\x7e\x63\x14\xfd\xdb\xdd\x41\xf2\xee\xad\xd5\xc9\xc7\x0f\xfb\xe9\x28\x15\x2a\x01\x41\xa0\x00\x2d\xc8\xa7\xf3\x41\x44\xe8\x74\x3a\x38\x7b\xf6\xac\x7c\xf3\xcd\x37\xc5\xf7\xbf\xff\x7d\x5f\xff\xd4\xf5\x95\x37\x9c\x3f\x7f\x5e\x5c\xbf\x7e\x1d\x6b\x6b\x6b\x2e\x68\xd1\xc0\x25\x02\x10\x76\x53\x8a\x4f\x3f\xea\x6e\x6c\xef\xc5\xd7\x36\x0f\xa2\x97\x97\x26\xe1\xd3\x51\x2a\xce\x04\x0a\x2b\x00\x85\x50\x85\x12\x4e\xf6\x21\x79\x06\xa4\x14\x7d\xa1\x50\x6e\xd0\x9a\xff\x52\x28\x08\x21\x29\xc4\x41\x8a\x95\x50\x76\x36\x7a\xb3\x60\x7b\xe9\x28\x7c\x6a\x6d\xdc\xf9\xe7\x5b\xab\x93\xf7\xee\x2c\x25\x7b\x59\xa0\x12\xd6\x3e\xa3\x70\x2b\xa5\xb0\xb0\xb0\x80\x27\x9f\x7c\x52\x02\x10\xef\xbc\xf3\x8e\xae\xfa\xcb\xf4\xcd\x71\x68\x5e\xb8\xc0\xa5\x49\xa0\xb4\x41\xea\xde\xeb\xeb\xd7\xaf\x8b\xe5\xe5\x65\xdd\x40\x7e\x12\x74\x79\x46\x91\x44\xb4\x31\x8a\xb6\xba\xa9\x58\x27\x55\xae\x26\xe2\x56\x10\x3d\x6d\x94\xc7\xe7\xf8\x92\xef\xd9\xa2\xd3\x98\x65\x5f\x45\x8c\x05\x4a\xd8\xb4\x93\x3b\xad\x54\x39\xcd\xc4\x8f\x02\xd0\xa0\x49\x2f\x5c\x42\x0e\x86\xa8\xac\x10\x52\xa8\xf4\x51\x2f\xbd\x3b\xea\x66\x0f\x53\x61\x0e\x53\x74\xad\x2d\x73\xdb\xfc\xdf\xbd\x7b\x17\xa3\xd1\xa8\xf5\x07\x44\x3d\x88\x6c\x1b\xaa\x04\x29\x8f\xf3\x09\x2c\x37\x34\x31\x76\xde\xbe\x2a\x41\xe1\x96\xe3\xa6\xe1\xe5\xbb\xc1\x27\xfc\xeb\x84\x83\xaf\xac\x2f\x2b\x6c\x5d\xe1\xed\xf6\x97\xaf\x2d\xf0\xa4\xe3\xf5\xba\xf5\xfb\xee\xab\xde\xf9\x38\x56\x00\x01\x40\x5e\xbc\x78\x51\xef\xcc\xe9\x7e\x23\x5f\x5c\x55\x5f\xcc\x81\x9a\x77\xdf\x7d\x17\xe3\xf1\xd8\xf7\x0d\xea\xe2\xdc\xf2\xea\x00\x85\x1b\x7f\x1c\x90\xed\x96\xe7\xb6\xc5\x97\xbf\x09\x2c\xd7\x31\xe1\x46\x5e\xe9\x69\x5f\x1b\xc0\xee\xab\xc3\xd7\x0e\x1f\x5d\x56\xb5\x8f\x97\xd1\x56\x1e\xb8\xe0\x56\x02\x40\xb7\xdb\x15\xcf\x3d\xf7\x1c\xf7\x67\xe1\x7f\x21\x60\x7c\x37\xa2\xee\x4c\xc4\xeb\xa3\xce\xda\x99\x47\xdd\x4b\x67\x1f\xc6\x2f\xaf\x1d\x75\x6e\x44\x29\x6d\x93\xc2\x12\xe5\x82\x5a\x50\x21\xad\xad\xf3\xe6\x50\x82\x17\xb3\xd0\x22\xbf\x16\x44\x14\x41\x21\x0a\x24\xfa\x81\xc4\x5a\x27\x0b\xcf\x2c\x24\xc1\xa5\x13\xa3\xce\xd7\x56\x8f\xc2\xff\xf9\xe9\xda\xe4\xa7\x9f\x2f\x4f\xef\x1e\x75\xe4\x04\x54\x5a\x17\x0a\x85\x13\x40\x39\x75\xf4\xd2\x4b\x2f\xc9\x9f\xfc\xe4\x27\x62\x36\x9b\x55\x7d\x97\xa6\x3e\xc6\xf6\xf6\xb6\xb8\x7a\xf5\xaa\x75\xf4\x0d\x98\x85\x05\x40\xa4\x94\x0a\x17\x93\x70\x70\x66\xbf\x7b\xee\xf1\x07\xbd\x17\x36\x87\xd1\x6b\x0b\xb3\xe0\x8a\x90\x58\x23\x50\xc4\x57\xdb\xe6\x32\x88\x4a\x79\x54\x08\x23\xed\xfe\x60\x2d\x68\x21\xfb\xb7\xd8\x27\x2d\x0c\x24\xd6\x7b\x89\x18\x44\x69\x67\x73\x61\x26\xce\x2c\x24\xc1\x46\x98\x89\x1f\xdc\x5a\x9b\xdc\xcd\x72\x01\xa7\xdb\xaa\xfb\x06\x40\xbe\x74\xfb\xf4\xe9\xd3\x3e\x1a\xa9\x53\xd6\xaa\x94\x02\x5f\x98\x93\x27\xa1\xe7\x61\x55\xe2\xaa\x81\x5f\xd5\x58\xab\xd1\x4f\x3c\xf1\x04\x16\x16\x16\xf8\x47\xb2\x1d\x73\x15\x42\x01\x84\xab\x47\xe1\xd9\x50\xd2\xa0\x5c\xb9\xc3\x7c\x57\xc0\x01\x83\xbd\xeb\xad\xf1\xa5\x2d\xa3\x58\x60\x4e\xb3\xc6\xe4\x62\x5b\x68\x6c\xa4\x6e\xe7\x32\x08\xb5\xa8\xdb\x94\x66\xe6\xab\x4a\x34\xab\x9b\x37\x0b\xd4\x68\x77\x21\xb9\x7d\xd4\xb1\xa7\x89\x98\xd3\xd3\xdc\x12\xe8\x0f\x3e\xf8\x40\x1e\x1c\x1c\xcc\xb5\xbe\x08\x6d\x85\x77\x15\xc0\xa8\xd3\xc2\x9a\x98\x52\x9d\xd0\xab\x6b\x6b\x1b\xe6\x5a\x15\x77\xdc\xbc\x55\xf9\x7d\xc0\xab\x89\xb1\xb7\xad\xb3\xaa\xbd\x3e\xd0\x57\x97\xbe\xa9\xee\xba\x50\xf7\xce\xbe\x74\x32\x08\x02\x71\xf5\xea\x55\xf7\xb9\xd8\xde\xde\xc6\xc9\x93\x27\xf9\xfe\x19\xd6\x86\x8e\xc0\xfc\xb6\x04\x55\xe9\xdc\x7a\x8f\x8e\x8e\x0c\x4d\xde\xbb\x77\x4f\x14\x47\x59\xd4\x09\xe1\xe3\x0a\xcc\xaa\xf8\xa6\xb4\x3e\xd0\xe8\x13\x42\x4d\x20\xab\x0e\xd8\xb8\xcf\x9b\xae\xab\xda\xe6\xb6\xbb\xe9\xba\xaa\xfe\xe3\xd0\x59\x53\x59\x75\x75\x4a\x00\xe8\xf7\xfb\xe2\x77\x7e\xe7\x77\x70\xe5\xca\x15\x8b\xff\x83\x09\x6b\x0d\x5a\x16\x92\x60\x70\xf6\x61\xf7\xdc\xf6\x5e\xfc\xbb\x9b\x07\xdd\x97\xfb\x89\xb8\x16\x4a\x5a\x07\x28\x32\x96\x6e\x8b\xd7\x13\x94\x53\xa9\x45\x82\xcc\x32\x5f\xca\x08\x0a\x05\xb0\x12\x65\x58\x0a\x27\xe1\x99\x6e\x2a\xce\x2c\x24\xc1\xe9\x78\x26\x7e\xf4\xf9\xca\xf4\x93\x61\x9c\x0e\x33\x81\x84\xef\x2c\x8b\x72\x9a\x44\x3e\xfd\xf4\xd3\x22\x4d\x53\xf9\xf3\x9f\xff\x5c\x1c\x1d\x1d\xe9\xe7\x3e\xbe\xeb\xed\xe7\xf3\xe7\xcf\x8b\xab\x57\xaf\x62\x73\x73\xb3\x12\xb4\x90\x42\xb4\x3c\xe9\x2c\x6d\xef\xc5\x97\x1e\x7f\xd0\x7b\xed\xe4\xa8\xf3\x4a\x9c\x8a\x4b\x42\xd1\x80\x5b\x97\x2c\x05\x9d\x29\xd1\xb6\x72\x3d\xaf\xa4\x53\x09\xed\x00\xfe\xbf\xa2\x38\x94\xd8\x5a\x9c\x84\x83\x73\x19\xad\x74\x32\x5a\x20\xc2\x3f\xde\x5a\x99\xdc\x4e\x85\x9a\x30\x51\x6a\x4d\x1b\x0d\x06\x03\x3c\xf5\xd4\x53\xb8\x79\xf3\xa6\xcb\x8f\xea\xc6\x71\x1d\x3f\xae\xa5\x31\x0e\x5c\x7c\x03\x16\xce\x6f\x1b\xe2\xf7\xa5\x9f\xfb\xa8\x6c\x0d\xbd\xf9\x60\xdd\x54\xf4\x07\xd3\x70\x2b\xc8\x9d\xac\x04\xc0\xcd\x5a\x8c\x61\x52\xf9\xa1\xac\x50\x31\xd3\x63\xcd\x1a\x69\x73\x22\xd9\x8b\x9f\x75\x1d\x5e\x17\x60\xee\x90\xcb\x80\x0d\x8f\xe4\xbe\x38\x0a\x0a\xe3\x4e\xb6\x77\x7f\x61\xb6\x93\x04\x72\x8c\x1c\xb0\xb8\x7b\xb7\x48\xe7\x0f\xbf\xf8\xc5\x2f\x30\x1c\x0e\x75\xbf\xf8\x04\x2d\x7f\x56\x05\x2a\xdb\x68\x9b\x55\xdf\xce\xc7\x80\xaa\x34\xd0\xa6\x7c\x75\xe5\x57\x0d\xf0\x3a\x2b\x04\x4f\xe7\x2b\x97\xa7\xa9\xaa\xc7\x97\xbe\xaa\xde\xa6\x01\x54\xd5\xb7\x6e\x3b\xeb\xd2\x57\x69\x21\x55\xdf\xbd\xea\xfd\x9a\x98\xa6\x58\x5c\x5c\xc4\xd6\xd6\x16\x80\xdc\xb9\xee\xb9\xe7\x9e\x2b\xc6\x97\x17\x88\xe8\x0d\xad\xac\x3d\x97\xaa\x02\xdb\xd4\xca\xc4\xb1\x55\x72\xe6\x4c\x14\x5d\xd6\x6f\x7e\xf3\x1b\xb9\xb8\xb8\x68\xd2\xa6\x69\x2a\x7e\xfd\xeb\x5f\xf3\x36\xfb\xbe\x4f\x9d\x60\x6e\x0b\x80\xea\xbe\x95\x8f\xb7\x35\x59\x37\xdc\xb2\xab\xbe\x31\x9c\xf8\x36\xe0\x83\xe7\xf1\x85\xaa\xf1\x5c\x27\x38\xda\x8c\xd3\xe3\x82\xfb\x26\x1e\x23\x06\x83\x01\xbe\xf6\xb5\xaf\x55\x82\x16\x00\x51\xa0\x28\x1a\x4c\x83\xa5\x73\xfb\xf1\xc5\x4b\x3b\xfd\xd7\x36\x46\x9d\x37\xa2\x4c\x5c\x14\x8a\xfa\x86\x7f\x93\x62\x0a\x66\x01\x94\x5d\xde\x6b\xd1\x33\x98\x14\xcf\x7f\xcd\x74\x52\x2e\xf4\x85\x90\x6a\xa9\x37\x0b\xae\x6d\x3d\xea\xae\xc4\x33\xb1\xbe\x90\x04\xff\xf3\xdf\x4f\x1c\x7d\xb0\xd7\x4f\xf7\xd2\x00\x02\xc5\x2e\xe7\x45\x99\x06\xbc\x5c\xbb\x76\x4d\x64\x59\x26\x6f\xde\xbc\x89\xf1\x78\xcc\xfb\xcd\xd7\x47\xa6\xaf\xce\x9e\x3d\x8b\xeb\xd7\xaf\x63\x63\x63\x83\xcf\x3a\x58\xa0\x05\x40\xb4\x30\x0d\x06\x17\x77\x7b\x57\xbe\xb2\xdb\xfb\xfd\xb5\x71\xe7\x95\x28\xa5\x73\x85\x2f\x0f\x5b\xf0\xaa\x7d\x58\x0a\xb9\x45\xda\xaf\xb3\x8c\x2f\xc7\x2e\xeb\x13\xe6\xcb\xc9\x8f\xb5\x61\x10\x4f\x08\xa5\x56\xfa\xb3\xe0\xea\x99\xfd\x6e\x3f\x94\x14\x4a\xa8\x7f\xb8\xbd\x32\xbd\x93\x0a\xae\xb9\x97\xfd\xb1\xb4\xb4\x84\x67\x9f\x7d\x16\x69\x9a\x0a\xe7\x98\x9a\x26\x9c\x60\xfa\xa6\x26\xad\x9b\xde\x4c\x15\xd5\xa1\x22\x5f\xe6\x63\x21\x6e\x1e\xf8\x14\x11\x18\x01\x0b\x85\x70\xe5\x28\x1c\xf4\x12\xb1\x21\x14\x22\x63\xe6\x32\x16\x15\x87\xb9\xf2\xe9\x23\x8f\xa6\xe7\xf8\xe1\xea\x84\x79\x3e\x56\x16\xb7\x94\x90\xcf\x13\xd8\xbd\x35\xf3\x89\xd5\xb8\x49\x11\xd2\x47\xbd\xec\xce\xb0\x97\x3e\x48\x85\x9a\xe8\x5d\x72\xd9\x81\x8a\x66\xc3\x1f\x00\x92\x58\x9b\x6a\xfa\xcf\xf7\x8d\x9a\xfa\xbc\x0e\x64\xd6\x09\xd0\xaa\xf2\xf8\x7d\x95\x40\xae\x03\x36\x75\x20\xab\xaa\x9d\x6d\x41\x40\x53\xbb\xea\xca\xad\x13\x32\x55\xc1\x97\xa6\xaa\x4f\xdb\x00\xa9\xa6\xf6\x54\x01\x9a\xaa\xf6\x88\xb5\xb5\x35\x0c\x06\x03\x00\xc0\xe6\xe6\x26\xae\x5d\xbb\xe6\x3b\xc7\xc4\xb4\x89\xd8\x39\x27\xce\x06\x5d\xfa\xb9\x19\x7f\x15\x80\x47\xea\x74\xbe\xf7\xd2\xda\xeb\x99\x33\x67\xc4\xd9\xb3\x67\x4d\x19\x93\xc9\x44\xce\x66\x33\x53\xd7\x17\x5f\x7c\x01\x66\x86\xaf\xa3\x91\x26\x50\x5d\x07\xe2\xdd\xdf\x2a\x90\xe8\x86\xaa\xef\xd4\xd4\xde\xa6\xf1\x56\x07\x0e\x9a\xda\x54\x45\xab\xbe\xb6\xb4\xed\x87\x26\xd0\xe6\x2b\x73\x2e\xf4\x7a\x3d\x9c\x3a\x75\x0a\x00\xf8\xce\xae\x02\xb9\x95\x25\x22\xa2\x50\x48\xc4\x4b\x93\x70\x65\x7b\x2f\xbe\xf4\xc4\xfd\xfe\xeb\xeb\x87\x9d\x37\xa3\x4c\x5c\x80\x82\x50\xa4\x1c\x1f\xc7\xc2\xc6\xc2\xe9\xd4\x52\x40\x39\x6d\x73\xb0\x52\x4e\x95\xa0\xc0\x31\x3a\x3d\x01\x51\x94\xd1\xa5\x93\x87\x9d\xa5\x28\x15\x2b\xa1\xa4\xf8\x57\x27\xc7\xef\x3d\x58\x98\xed\x66\xc2\x2d\xb3\x14\xd6\xcf\x3e\xfb\xac\xb8\x7b\xf7\xae\x1c\x8f\xc7\xad\x15\x25\x77\x7a\x88\xef\x61\x06\x20\x82\x42\x14\x65\xd4\x3f\xff\x30\xbe\x78\x71\xb7\xf7\xfb\x27\x0e\x3b\x6f\x76\x32\xda\x82\x22\x33\x3d\x06\xfd\x0e\x85\x16\x5e\x8e\xc3\x1c\xd1\xb8\x60\xc5\x80\xb5\x02\xa9\x58\x72\xce\x4c\x29\x69\x8f\x4f\xb6\x01\xab\x44\xbf\xab\xc4\x95\xd3\xc3\x28\x92\xb4\x30\x9d\x86\xf2\xff\xdd\x19\xcc\xee\x66\x81\xc5\x03\xf4\x86\x75\xe8\xf5\x7a\x78\xe5\x95\x57\xe4\x74\x3a\xd5\xe7\x1b\x55\xd1\xa4\xfb\xac\x2d\x9e\x30\x79\xab\x36\xa0\xab\xd3\x0e\x01\xfb\x23\xd5\x31\x06\x00\x90\x27\x4e\x9c\x10\x41\x10\x98\xb2\x8b\x8e\xb5\x96\x43\x07\x52\x44\x27\x0e\x3b\xeb\x51\x26\xd6\x48\x41\xf0\x69\x1a\xf0\x7e\x26\x9f\x69\xb0\x64\xa8\xda\xdf\x85\x5b\x69\x72\x70\xaa\xcc\xf4\x92\x05\x54\x60\x9b\xd0\xf8\x41\x89\x26\x78\x51\x50\x75\x48\x85\x9a\xec\xf5\x67\xb7\x27\xa1\x1a\xa9\x62\xbe\x94\x5b\x5a\xf4\x34\x11\x1b\x10\xf2\xc1\x83\x07\xc8\xb2\xcc\xed\xdb\x3a\xc1\xcc\xaf\xdb\x32\x6b\xf7\x79\x5d\x68\x03\x44\x9a\xda\xa9\xef\x5d\xc6\xe8\xd3\x28\xab\x04\x7e\x15\xdd\xd5\xbd\x47\x15\x23\xa9\x6a\x83\xdb\xde\xe3\x68\xa6\x6e\xde\xba\xb6\x55\x95\xd9\x16\x58\xf2\x6b\xef\x37\x58\x5b\x5b\x2b\xfc\x1e\x81\xeb\xd7\xaf\xe3\xf1\xc7\x1f\xb7\xfa\x80\x9c\x2d\xc1\x3d\xe0\x44\x14\xbf\x56\x3c\x7b\xce\xf3\x19\xa0\xc2\x01\x4f\x01\xc8\xad\x77\xd3\x71\x45\xf9\x56\xbe\x38\x8e\xf1\xad\x6f\x7d\xcb\x94\xf1\xfd\xef\x7f\x5f\x0e\x87\x43\x71\x70\x70\x80\xe9\x74\x5a\x47\xcb\x3e\xba\x70\xe3\xdd\xfe\xab\x2a\x83\x87\x3a\x21\xe4\x0b\x75\xc0\x4a\xc7\xd5\x81\x94\x36\x65\x1f\x27\x8f\xae\xbb\x69\x7c\xfc\x36\xf7\x55\x6d\x33\xd7\x71\x1c\x8b\x8b\x17\x2f\xe2\xc5\x17\x5f\x14\x80\xf1\x67\xb4\x2d\x0c\x0a\xf1\x60\x1a\x2c\x5d\x78\x10\x5f\xbe\x74\xbf\xff\xd6\xda\x61\xe7\x8d\x8e\x14\x67\x48\x29\x91\x33\xf1\x92\x17\x97\x8a\x6c\xb9\xc8\x42\x0b\x61\xc5\x2c\x2a\x50\xca\xb0\x6c\x23\x2b\xa8\xb4\xc8\x80\x08\xf6\x81\xb8\x39\x08\x08\x24\x6d\xae\x4c\xe8\x8d\x0b\x0f\x7a\x61\x26\x14\x52\xa1\xde\x7d\xd8\x4b\x77\x95\x30\x3b\xed\x4a\xc0\xda\x46\x5f\x2e\x2f\x2f\x63\x77\x77\x17\xc5\xf1\x2c\x55\x7d\x2c\x01\x88\xd5\xd5\x55\x74\x3a\x9d\xfc\x5d\x98\xfc\x33\xfd\xa1\x10\x05\x0a\xf1\x99\xfd\xee\x99\xa7\xee\x2d\xe4\x7d\x91\xd1\x26\x40\xc2\x18\x59\xe0\xf8\x61\x3a\xbe\x9b\xe5\x0b\x71\xd9\x56\x00\x18\x05\x28\xee\xeb\xa2\xf3\x71\x83\x8b\x91\xaf\x66\xfa\x28\xec\xa6\xc1\xa5\xcd\x61\xf7\xdb\x4f\xdd\x93\xfb\x49\x38\xfa\xf1\xc3\xde\x4c\x4a\x61\x7f\x7f\x5d\x47\xa7\xd3\xc1\x5b\x6f\xbd\x25\xff\xd3\x7f\xfa\x4f\xfa\x68\x00\x1f\x30\xae\xe2\xeb\x75\xe3\x96\xc7\x7b\x97\x43\xb7\xd5\x48\xaa\x90\xf9\x1c\x31\x7f\xe7\x3b\xdf\x41\xb7\xdb\x35\xc4\xcb\x1a\x6e\xe2\x84\x42\xb4\x7a\x14\x9e\x0e\x33\x5a\x62\x65\x7a\xf1\x82\x6b\x12\x2c\xcc\x7e\x28\x2c\x80\x9e\x8f\xea\xa2\x4f\x6d\x5a\x73\x34\x47\xcc\xa1\x6b\x53\xa1\x75\x14\x80\xd3\x1e\x1d\xf4\xf7\x9f\x06\x72\xb8\xbb\x30\xbb\x3b\x13\x72\x8c\xf2\x14\xe8\xa4\xe8\x13\x73\x98\x22\x58\xbf\xfe\xdd\xdf\xfd\x1d\x26\x93\x49\x65\x1f\xb2\xd0\xc4\x00\xab\x34\xac\x2f\x5b\xce\x71\x9f\xd5\x95\xe9\xb6\xcb\x97\xae\x8a\xe6\xea\xca\xad\x7a\x17\x5f\xd9\xbe\xeb\x3a\xad\xbe\x4e\x58\xb6\xa9\xa7\x4e\x80\x54\xe5\xab\xd3\x94\x7d\xcf\xc5\xc2\xc2\x02\x00\x88\x6f\x7d\xeb\x5b\x7c\x69\x25\x00\xc3\x24\x01\x58\xe7\x9b\xe8\x72\xbc\x67\x9c\x58\xbf\x0a\x42\x6b\x77\xfe\x50\x5a\x0c\xc9\xde\xa9\x54\xff\xca\x02\xa4\x58\x71\x45\xfa\xb2\x94\x42\x18\xbc\xf9\xe6\x9b\x02\x00\x7e\xf0\x83\x1f\xc8\xcf\x3e\xfb\x4c\x24\x49\xc2\x2d\x30\x55\x34\xdd\x06\xc4\xb6\xfd\x2e\x55\x69\xdb\x02\x54\x5f\x9b\x9a\xd2\xba\xc0\xab\x4e\x71\xa8\x6b\x63\x55\xdd\x3a\x6e\x0e\xec\xb6\x6c\x77\x13\xd8\xb3\xd2\x77\x3a\x1d\xf1\xe4\x93\x4f\xe2\xc6\x8d\x1b\xe6\xbd\xe6\x40\x0b\x4a\xeb\xc2\x13\xf7\xfb\x6f\x9d\x38\xec\x7c\x33\x94\xb4\x95\x1b\x59\x88\xc9\x61\xdb\xaa\x52\x44\xcf\x59\x1f\x4a\xb8\xc2\x14\x4f\xc5\x21\x0c\xb3\xb6\xbb\xf2\xbe\xf8\x0d\x14\xad\x2d\x4f\x82\x57\x2e\xec\xf6\x92\x54\xa8\xc9\x87\x1b\xe3\x5f\x1c\x74\xb3\x7d\x22\x9a\x98\xf4\xcc\x61\xf7\x95\x57\x5e\x81\x10\x42\x7e\xf8\xe1\x87\xa2\xb0\x1a\x56\x05\xf9\x8d\x6f\x7c\x43\xac\xad\xad\xf1\x31\x68\xac\x2d\x4a\xa9\x48\x28\x8a\x97\x8f\xc2\xb5\xab\x77\x06\xaf\xad\x8f\x3a\x7f\x10\x65\xb4\x45\xa0\x10\x28\xfa\x80\x4a\x19\xe6\x0b\x94\x27\x2c\x65\x55\x31\x5c\x8d\x23\xae\x2a\x65\x18\x71\x99\x46\xc8\x41\x1c\x78\xb7\xd9\x07\xfd\xf6\x66\xe2\xea\xb9\x87\xdd\xbd\x83\x6e\x36\xfc\x70\x43\xfe\x62\x18\x67\x7b\x54\x1e\x08\x2c\x51\xba\x3f\x80\x88\xb0\xb0\xb0\x80\xd1\x68\x24\x9c\x31\xef\x53\x1c\xe1\x79\x0e\x34\xd0\xbd\xcf\x39\xb7\x0d\x33\x6d\x33\x40\xbc\xc1\x9c\x0b\xc4\x37\xd6\x51\x08\x85\xa2\x68\x71\x12\x6e\x04\x8a\x06\x26\x6d\xf1\xeb\xfb\x4e\xee\x2a\xa1\xda\x4d\xe7\x14\x15\x84\xea\x10\xaf\x2e\x87\x3b\x33\x79\xf3\xc3\xce\x63\x3d\xe2\x80\x46\x41\x11\xe4\xb8\x9b\xed\x3c\xec\xcf\x1e\xa4\x81\x9a\x28\xa8\xb4\x70\xcc\xd5\x1f\x37\xa5\xf2\x5c\x08\xc9\x88\xb8\x0d\x73\x6a\x13\x9a\x84\x5e\x23\xd3\x69\x88\x6b\xd2\xfe\x7d\x80\xb6\x4a\x63\x73\xd3\x35\xd5\x57\xd7\x06\xb7\xdc\x46\x61\xcf\xd2\x55\xa5\x3d\xce\xbb\xb6\x01\x1d\x75\xef\x5a\xd5\x1e\x5f\x3f\x9a\x78\x22\x42\x14\x45\xf8\xb3\x3f\xfb\x33\xeb\x54\x58\x55\x9c\x76\xeb\x80\x14\x9f\xb5\x33\x4f\x93\xa7\xb7\xd2\x9a\x7b\x05\x21\x14\x40\x52\x09\x92\x10\x1a\x9a\x28\x01\xa8\x80\xa4\x14\x0a\xca\xe6\x1d\x2e\x40\x91\x28\x81\xba\x66\x74\x7c\x0c\x08\x16\x6f\xfa\xed\xe5\x97\x5f\x16\xaf\xbc\xf2\x0a\xde\x7d\xf7\x5d\xf9\x93\x9f\xfc\x44\x83\x2c\x1f\x8f\x6a\x03\x0e\xdb\x80\x0d\xb7\x7f\xeb\xc0\x6a\x55\x99\xc7\x01\x03\xee\x73\x97\x7e\x7d\x75\xfa\x42\x53\x9a\xe3\x96\x7d\x5c\xb0\x32\x17\x9e\x7e\xfa\x69\xfc\xee\xef\xfe\xae\xa1\x27\xbe\x03\x6c\x21\xac\x63\x02\xf5\xcf\x3e\xec\x6e\x5d\x78\xd0\x7b\x75\x75\xdc\x79\x25\x94\xb4\x69\x04\x29\xf8\x6c\x06\xb7\xe8\xc1\x7a\x6e\x1c\x55\x31\xcf\xa3\xed\xa3\x62\x0a\x6b\x3b\xca\xb4\x73\xd3\xa6\x85\x1c\x08\xa5\x58\x5f\x3d\x0a\xbf\xfe\x95\xdd\xde\x24\x09\xe4\xf8\x83\x53\xe3\x0f\x92\x40\x01\xf9\x26\xa2\xba\x1f\xf4\x94\x3f\x5e\x7a\xe9\x25\x21\x84\x90\x6c\x17\xd9\xb9\xc0\x15\x03\x9a\xdf\x78\x35\x24\x50\xdc\x91\xd4\xbf\x72\x6f\xe1\xf2\xa9\x83\xee\x1f\x77\x33\x3a\x03\x55\x80\x16\xb2\x67\x12\x58\x73\xd9\x94\x59\xd9\x19\x66\xc5\x2c\xd8\x4c\x02\x53\xee\x19\x8c\x2b\x9e\x95\x05\x97\xfd\xc6\x2a\x21\x40\x80\xe2\xc1\x34\x7c\xe1\x2b\xbb\xbd\x9d\x61\x2f\x1d\x4e\xc3\xc9\x64\xda\x91\xe5\xf8\x76\x78\xd6\xdb\x6f\xbf\x8d\xff\xf2\x5f\xfe\x8b\x3c\x3c\x3c\xe4\xdd\x50\x85\x1b\x7c\xa1\x56\x1e\xba\xce\xb9\x75\x19\x9b\x2a\xaa\x15\xb2\x0c\xb0\x00\xce\x47\x0b\x14\x45\xfd\x24\x18\x2c\x4c\x83\xad\x40\x51\xa4\xf3\x10\xca\xe9\x1d\x60\x1e\x98\x30\x97\x23\xbf\xa5\x44\xd9\x1f\xcf\x45\x27\xdc\x94\xc8\x07\xca\x5c\xa8\x99\x1e\xf2\xb8\xf2\xca\xfd\x5e\x76\x67\x1c\x65\xc3\x62\x9a\x28\x81\xbd\x5b\xae\x3e\xf8\xab\x78\x27\xaa\xfd\x40\xc7\x7c\x06\x34\x33\xc8\x26\x4d\xae\x4d\x68\x93\xb7\x49\x78\x1f\xb7\xdc\x2a\x40\xe3\x63\xb0\x75\xc2\xde\x97\xce\x05\x52\x4d\x65\xfa\xda\xe0\x6b\xaf\x0e\x55\x7d\xd1\x04\xaa\xdc\xbc\xd6\xf3\x53\xa7\x4e\xe1\x8f\xfe\xe8\x8f\xdc\x72\x01\xc0\x02\x26\xb0\x05\x87\xd6\x7a\x75\x39\x02\xf9\x8e\x9c\x61\xf7\x50\xc6\xf1\x41\xd6\x8f\x8e\xd4\x52\x67\xa2\x06\xc1\x4c\x2d\x05\xa9\x5a\x12\x99\xea\x93\x42\x08\x45\x3d\x52\x2a\x22\xa5\xa2\x62\x50\xa4\x4a\xd0\x44\x91\x9a\x2a\xa2\x44\x05\x98\x64\x01\x0d\xb3\x0e\x0d\x67\x5d\x1a\x4d\xfb\x62\x38\x59\x14\xc3\xc9\x40\x4c\x54\x30\x77\x3e\x8c\xd9\xc7\x88\xc5\xf3\xbe\xd0\xa7\xd4\xca\x6b\xd7\xae\xe1\xda\xb5\x6b\xe2\xd6\xad\x5b\xf2\xef\xff\xfe\xef\x3d\xdd\x71\xac\xb1\xd2\x76\xec\x54\x8d\xa3\xe3\x58\x3a\xda\xd4\x53\x07\x0e\x1a\x15\xc1\x86\xd0\x04\x3c\x7e\x5b\x5e\x52\x9b\x87\x4d\x37\x72\x4b\x4b\xbe\x34\x19\x88\x37\x0f\xa2\xf5\x8b\xbb\xfd\x57\x37\x0e\x3a\x6f\x74\x33\xda\x86\x82\xb0\x0e\xca\xb5\x04\x2a\x31\xcb\x01\x0c\x4f\xd6\xf7\x16\xfb\xe7\xcf\x00\xc3\xe4\x8d\x8b\x00\x4a\x41\x6e\x55\xc3\xa6\x93\x42\x29\x36\xd7\xc6\x9d\xdf\xdb\x7e\xd8\x1b\x3d\x8a\xb3\xfd\xdf\xac\x4e\xee\x48\xb2\x85\x34\x03\x23\x8d\xfd\xf2\xe7\x7f\xfe\xe7\xe8\xf5\x7a\xbe\x71\x18\x12\x51\x14\x66\x14\x9f\x3a\x88\x36\xb7\x1f\xf4\x7e\xbf\x9b\x89\x8b\x79\x3c\x9b\xea\x62\xef\x65\xb7\x99\x5b\x61\x74\x67\x94\x89\x15\xbb\xcf\xa7\xc7\xca\x8e\xd1\xe2\x90\x03\x1a\x5d\x8f\xef\xa0\xe1\x50\xd1\xca\xca\x51\xf8\xd2\x85\xdd\xde\xed\xfd\x38\xdd\xbf\xd7\x49\x12\x67\x4c\xb7\x91\x2b\x75\x7d\xd6\x44\xa3\xe6\x79\x9b\x9d\x73\xdb\x68\x13\xad\x42\xa1\x59\x59\xd3\x45\x44\x24\xc2\x8c\xa2\xb5\xa3\x70\x2d\x4e\xc5\x86\xf6\x9c\xce\xd3\x93\x4d\x90\xcc\xdf\x05\x98\x07\x1e\xfa\x6b\x98\x38\x17\x9d\xd2\x7c\x1e\x6e\x72\xb4\xd0\x66\x85\x05\x86\x2a\xd0\x8d\x1e\x4c\x33\xa1\x26\xbb\x0b\xc9\xed\x59\x80\x89\xb2\x97\x3d\x5b\xab\x89\x98\xd6\x89\xff\xfc\x9f\xff\xb3\x3b\x47\xea\xd3\x12\xf5\x7d\x5b\x60\x02\xcf\x33\x5f\x1d\x4d\x65\xb7\xd1\x1e\xab\xea\xaf\xd2\x5a\x7d\x96\x11\x37\xd4\x01\x85\xaa\xd0\x34\x60\xdc\x76\xb9\x6d\xf2\x01\x86\x2a\xe0\xe3\xa6\xe1\x71\x4d\xe0\xd0\x05\x42\x3e\xe1\xca\x41\x95\xd5\xce\x4b\x97\x2e\xe1\x85\x17\x5e\xb0\xfc\x50\x9c\x7d\x91\xe6\xc6\x18\xca\xbd\x32\x04\x01\x42\x64\x88\x16\x1e\x66\x83\xfe\xa3\x6c\xa3\x3b\x56\x9b\xe1\x54\x6e\x85\x33\x75\x5a\xa4\x6a\x9d\x32\xac\x09\x89\x25\x52\x18\x90\x52\xe5\x99\x27\x2a\x37\xf1\x93\x42\x98\xdb\x1a\x21\x91\x9f\x6d\x92\x28\xf3\x4b\x63\x25\x30\x52\x02\x43\x25\xb0\x97\x85\xb4\x9b\x46\xf4\x45\x1a\x89\x3b\xd3\x3e\xdd\x1d\x2f\x07\x3b\xe3\xe5\x60\x94\x75\x49\x4f\x9d\xfa\xce\x8d\xf1\xd2\xe2\x63\x8f\x3d\x86\xbf\xf8\x8b\xbf\x10\x87\x87\x87\xf8\x9b\xbf\xf9\x9b\xdf\x4a\x91\x3a\x46\x1a\xdd\xef\xee\x75\xdd\xf8\x38\x4e\x68\x3b\x46\xdb\x00\x30\x77\xcc\x34\xb5\xad\xea\x79\x5b\xa1\xe2\x0d\x37\x6e\xdc\x10\x5f\xfd\xea\x57\xdd\x76\xe9\xbf\x08\x40\xd4\x4f\x44\xff\xc2\x6e\xef\xe9\xcd\x83\xe8\xf7\xe2\x34\xb8\x80\x5c\x80\x5b\xda\x3e\x57\x0a\x0d\x00\x31\x4c\xbb\xbc\x27\x66\x4d\xd7\x6e\x00\x46\x28\x73\x6b\x7a\xe1\x0b\xc3\x27\x45\xd4\x1c\xea\x29\x05\x79\x27\xa3\xcd\xf5\x51\xe7\xc6\xf9\x87\xdd\x5f\xdf\x1f\xcc\xf6\xc7\xdd\xcc\xa5\x51\x6d\xb1\x94\xcf\x3e\xfb\x2c\x3a\x9d\x0e\xdf\x41\xd6\x7c\xbb\xbf\xf8\x8b\xbf\x40\xb7\xdb\xd5\x65\xeb\xb1\xc8\x57\x11\xc5\xbd\x99\x58\x79\xea\xde\xc2\x33\x8b\x89\xb8\x41\x4a\xc5\x5a\x52\xb9\xee\x09\xf3\xfb\x8e\x95\xbe\x9d\x80\x7e\x57\x62\x0a\xbb\x96\x8c\x6c\xc5\x91\x63\xbd\x9a\xf3\xf7\xd1\xf1\x6c\x9a\x4d\x97\x1f\x49\x3a\x73\xe2\xb0\x73\xed\xd4\x41\xf4\xeb\x83\x38\xdd\x1f\x47\xd2\x37\x76\x01\x40\x7e\xf7\xbb\xdf\xc5\xdf\xfe\xed\xdf\x8a\x07\x0f\x1e\xf0\xfe\x38\xee\x78\xf1\xca\x37\xdf\x21\x8b\x4d\x19\xdd\x42\xdc\x74\xa6\x3c\x22\x12\x7f\xfa\xa7\x7f\x8a\x4e\xa7\xc3\xd0\xad\xd2\x69\x8c\xb6\x17\x4a\x8a\x57\xc7\xe1\x5a\x71\x3e\x51\x91\x8e\x21\x64\xf3\xa1\x98\xaf\x0a\x8b\xca\xcb\x2e\x6d\x88\x1c\x5c\x70\x5a\xe7\x48\xdd\x35\xaf\x94\x16\xa1\x12\xd8\xb8\x8e\xba\xc6\xf2\xc8\xec\x6d\x65\xfa\x9c\x91\x4f\x3b\x72\x7f\x77\x61\xb6\x93\x91\xd4\x9b\x18\xf1\xdd\x72\x7d\x1a\x26\x77\x40\xac\x0a\x55\xc2\xbd\x8e\xc1\x54\x01\x18\x57\xa0\xfa\x40\x48\x15\x43\x6e\xd2\x2e\x9b\xee\xab\xd0\x76\x15\x51\x57\xd5\x75\x9c\x7a\xab\xfa\x40\xb7\xa7\x49\x4b\xa8\xcb\xd7\x54\x7f\x5d\x5f\xb7\x15\x2a\x56\xba\x2b\x57\xae\xe0\xfa\xf5\xeb\x88\xe3\xd8\xb2\x12\x39\xbe\x63\xe5\x61\x74\xfa\x0c\x30\x50\x18\x24\x2a\x1a\x3c\xcc\xd6\x16\xf6\xb3\x33\xd1\x58\x5e\xec\x4c\xd5\xe3\x41\xa2\xb6\x82\x54\x6d\x08\xa9\xd6\x49\x62\x40\x0a\x7d\xe4\x20\x85\x95\xa7\x8a\xba\x08\x28\x76\x2a\x65\xe3\x4f\xea\x27\x79\x5b\x8b\xa9\x9c\x42\x3b\x55\xa4\x26\x4a\x60\x5f\x0a\xb9\xb7\x10\x62\x67\xe9\x7e\x7a\x7b\xd6\x15\xbf\x49\x7a\xf4\xc9\xd1\x52\x70\xeb\x70\x2d\xd8\x4d\xfa\x62\xee\xdc\x18\x30\x46\xa8\x4d\xf2\x41\x10\x88\x20\x08\x64\x14\x45\xf2\xbb\xdf\xfd\xae\x00\x80\xff\xfa\x5f\xff\x2b\x9c\x8d\xc0\xda\xf6\xaf\x2f\xcd\x71\x14\x33\x1f\x00\xaf\x0b\xc7\x55\xfa\xea\xc6\x68\x1b\x5a\x3d\xae\xb5\xe6\xb7\x52\x4a\x79\x08\xc3\x50\x9f\xbb\xe3\xd2\xa4\x11\xd4\x1b\x07\xd1\xc6\xa9\x83\xe8\xf9\x85\x24\xb8\x24\x14\x06\xdc\xf7\xc2\x04\xce\xc3\x69\x2e\xda\x51\x4c\xc9\x08\x64\x80\xf1\x7a\xae\x80\x6a\x4b\x82\x25\x5b\xfc\xe6\xf4\x22\x36\xea\xcd\xc4\xf6\xe6\x41\xf7\xe5\xf3\x0f\x67\x9f\x7c\x70\x6a\xfc\xb1\x22\x1b\x64\x6b\x87\xdd\x4e\xa7\x83\x30\x0c\xbd\xfd\x17\xc7\x31\xe0\x58\x3d\x79\x9f\x74\x67\xd4\x7f\xec\x51\xf7\xdc\xa9\x83\xe8\xd5\x4e\x26\x36\xcd\xe8\xf2\xf8\x2f\x94\x56\x23\xdb\xed\xa1\x6c\xf7\xfc\x94\x92\x79\x4f\x65\xbf\x6f\x59\x56\x59\x0f\x59\xb2\xcd\xf4\x74\x99\x47\x51\xbc\x90\x04\x97\x4f\x0f\xa3\xaf\xde\x1f\x24\xb7\xc7\x51\x32\x2e\xde\x43\xef\x36\xac\x8f\x07\x40\xb7\xdb\x15\xae\xac\xfb\x5f\x15\x7c\x87\x2c\xba\xa1\x4e\xab\xaf\x15\x9c\x44\x84\xd5\xd5\x55\xc0\xf3\xd1\xb8\x16\x18\x48\x8a\x96\x26\xe1\xc9\x50\x96\xfe\x2d\xdc\x04\x58\x7e\x88\x12\xb4\x18\xba\x64\x54\xa9\x18\x90\xe0\x69\xf2\xc0\x9c\x9b\x8a\xff\xf8\x14\x94\x99\x43\x64\xcf\x5d\xb3\x0b\x39\x17\xb6\xe5\x87\xa0\x48\xc9\x51\x94\xed\x3c\x8a\xd3\x87\x19\x99\x29\x22\xcb\xa7\x05\x8c\x11\x1f\x33\xb4\x01\x12\x3a\x8e\xa7\xaf\xd2\xd6\x9a\x2c\x23\x55\x53\x26\x75\xa1\xc9\xf2\x50\x05\xc0\x7c\x6d\x77\xf3\xbb\xe5\xba\xed\xf1\xb5\xb7\xaa\x2f\x7c\x16\x97\xaa\x76\xf8\xda\xe0\xd6\xe9\x5e\xf3\x50\xd5\x16\xb7\x3d\x3c\xfd\x5c\x59\xcf\x3e\xfb\xac\xd8\xdc\xdc\xc4\xe2\xe2\x22\x16\x16\x16\x84\xe3\xc3\x32\x07\x58\xb4\xd3\x5f\x90\xc8\xb8\x3f\x94\x2b\xfd\xfd\xec\x4c\x77\xac\x2e\x44\xe3\xec\x89\x68\xa2\x2e\x88\x54\x9d\x11\x19\xd6\xe0\x9c\xf5\x42\xee\x7b\xba\x52\xc3\x42\xfb\x00\x11\x04\x1b\x67\x82\x3f\x53\x79\x43\x06\x4a\xd2\x8a\x80\x3a\x83\x19\x92\xce\x44\x8d\xbb\x87\x72\x5f\x86\x74\x67\x61\x3f\xfb\x74\x69\x57\xfc\x6a\xba\x20\x3e\x39\x5a\x14\x9f\x1e\x9c\x08\x77\x65\x88\x04\xce\x5e\x47\x54\x6c\x21\xa0\xfb\x44\xf3\x15\x22\x92\x6f\xbd\xf5\x16\xfe\xf1\x1f\xff\x51\x1c\x1e\x1e\xb6\xa5\xcd\xe3\x28\x69\x75\xb4\xd4\x26\x7d\x55\xda\x36\x74\x5d\x05\xa8\xdd\x74\x55\xe0\xbb\x89\x2e\xab\xfa\xe3\xb7\x01\x58\x78\xe6\x99\x67\xc4\xf6\xf6\xb6\xfb\xdc\xb2\xb6\xc4\x33\xd1\x7f\xec\x51\xf7\xf2\xca\x24\xbc\x1a\x4a\x5a\x29\xad\x1f\xf3\x02\x17\xb0\x79\xf8\x9c\x05\xc1\x44\xd9\xcb\x7c\xb5\x2e\xab\x9d\x70\x2d\x7d\x95\x29\xa7\xae\x05\xdd\xb2\xe0\x2b\x42\x20\xb1\xb2\x3c\x09\x9f\x3e\xbb\x1f\x3f\x77\x7b\x65\xba\x73\x10\x67\x1c\x5c\x73\xf9\x29\x2f\x5c\xb8\x80\xc9\x64\x22\x7e\xf6\xb3\x9f\x79\xbf\x9d\xe3\x5f\x66\x80\x5c\x6f\x16\x2c\x6d\x3d\x8a\x2e\xf6\x13\x71\x91\x14\x62\xd3\x6e\xa6\x84\xdb\x8b\x48\x14\x93\x57\xb6\x85\xc9\x72\xc8\x75\x7b\x8d\x47\x40\x97\x5b\xf6\x79\x39\x2b\xe1\x71\xa6\x61\x9a\x4a\x94\xd1\xe6\x89\x71\xe7\xca\xc9\x51\x74\x73\xbf\x97\xee\x1d\x45\x5e\x5f\x17\x00\x90\xaf\xbc\xf2\x0a\x7e\xf8\xc3\x1f\x8a\x9d\x9d\x1d\xa0\x1d\x4d\x56\xf1\x62\x9d\x5f\x02\xf3\x5b\xfe\xfb\x42\x93\xf6\x5a\x97\x4f\x33\x57\x6b\x73\x2b\x00\xe5\x07\x54\x08\x3b\x19\xf5\x07\x49\xb0\x11\x4a\x1a\xd8\x60\x82\xf1\x4d\xfd\x31\x8b\x3e\xe5\xf4\xcd\xfc\x92\x4c\x5e\x63\xe6\x72\xd0\x86\x05\x6e\x8a\x0f\xa7\x1d\x9b\xac\xb9\x3e\xb3\x6c\x6e\x0e\xf4\x9a\x60\x81\x2a\x52\xc8\x84\x4a\xf7\x7b\xe9\x9d\x49\x47\x8e\x15\x21\x01\x41\x3b\xe6\x5a\x3b\xe5\x56\xf8\xb5\xb8\xc1\x27\x74\xf9\x7d\x55\xa8\xd2\xfe\x79\xb9\xc7\xd1\x46\x9b\xf2\xd7\x99\xb1\xeb\x88\xd0\x8d\xab\x02\x36\x3e\xe1\x51\xd5\xde\x36\x40\xa2\xaa\xdc\x36\xef\x50\xd5\x8e\xaa\x36\xd7\x59\x74\xea\xb4\x75\xab\x5d\xcf\x3c\xf3\x8c\x78\xf2\xc9\x27\xbd\x3b\x4f\xeb\x71\x54\x00\x99\x90\x88\x42\x22\x0a\x3b\x47\xb2\xdf\x1f\x66\x1b\xfd\x47\xd9\xc5\x78\x98\x7d\xb5\x3b\x96\x97\xc2\x44\x9d\x11\x19\x36\x49\x61\x09\x0a\x31\xa0\x42\xcd\xf1\xe6\x2c\x9d\x5e\xb3\xbc\xed\x8a\xce\x7d\x06\x4c\x70\xf6\x8f\xc8\xb9\x23\x42\x40\x85\x04\xc4\xa4\x68\x89\x24\xd6\x83\x4c\x9d\x09\x13\x75\xa5\x3b\x96\xbb\xfd\x47\x74\x7b\x21\x16\x1f\xf7\xf7\xe5\xbf\x1d\x2d\x89\x8f\x0f\xd7\x82\xbb\xb3\x88\x26\x10\x06\xc0\x68\xcd\x6d\xce\x24\xbd\xb5\xb5\x85\x57\x5e\x79\x45\x26\x49\x22\x7e\xf9\xcb\x5f\x62\x67\x67\xa7\x8d\x35\xc2\x17\x9a\x00\xbf\x4b\x9b\xbe\xef\x77\x1c\xe0\xe0\xa6\xaf\xab\xbf\x0a\x70\x03\xf3\x74\xe6\x2b\xc3\x57\x56\x15\x5f\x39\x8e\x40\x71\xdb\xa2\xf7\x0e\x72\x15\x55\x3e\x35\x12\x9e\x38\xec\xac\x6d\x8c\xa2\x67\x7b\x33\x71\x86\x14\x62\x00\x6c\x8e\xc2\xf6\x3f\xe1\xc1\xb2\xc2\xf3\x79\x0d\xbd\x47\x0b\xa3\x57\x23\xa8\x0b\x65\x54\xe9\x0d\x47\x99\x58\x50\x50\x50\x44\xbc\x08\xc3\xfb\x15\x19\x37\x85\xb0\x9b\x8a\xcd\x13\x87\x9d\x67\x36\x87\xd1\x3b\xa3\xee\xd1\x48\x01\x09\xc8\x80\x16\xd3\xc7\x8b\x8b\x8b\x58\x5d\x5d\x35\xfd\x18\x45\x91\x78\xf9\xe5\x97\x79\x7f\x69\x07\x7a\xd3\x17\xa4\x10\xf5\x66\x62\x65\x6d\xdc\x79\xa2\x23\x69\x83\x83\xad\xb2\x41\xa5\x0c\x25\xed\x7c\xab\x57\x08\x39\x8a\x7a\x9e\xb6\xec\xb0\x12\xb4\x30\xf8\xc7\xc6\xbb\x33\x59\x61\x6e\xf4\x2c\x02\x71\x50\x04\xe4\x67\x3f\x01\xfd\x7e\x22\xce\xad\x8d\xc3\xc7\x17\x92\xe0\x93\xa3\x48\x8e\x95\x52\xda\x7f\x49\x7f\x73\x09\x00\x1b\x1b\x1b\xa2\xdb\xed\xfa\x68\x96\x87\x26\x43\xc8\xdc\x58\x3c\xce\xe9\xd0\xbf\x2d\x42\xe7\x96\x16\xf3\x1b\x4a\x84\x0b\x49\xd0\x8f\x13\xb1\x2e\x24\x45\x3e\x26\xaa\x7f\x8b\xbd\x88\x0c\x88\xb1\xcd\x5a\xee\x07\x9c\xb7\xb9\x98\x68\x56\x86\x89\xe6\xd6\x18\x96\xdd\x94\x5b\x31\xcd\xa4\x9f\x2b\x40\xce\x02\x35\xda\xeb\xcf\xee\xcc\x82\xf2\x6c\x22\xbe\xd9\x1c\xf7\x6b\x21\x22\x99\x24\x89\x64\x07\x53\x35\xf5\xa9\x8f\xa1\xb5\x15\xcc\xbe\x72\xbe\x0c\xfa\xd5\xf9\xea\xac\x10\x6d\x89\xcf\xcb\xf8\x30\x4f\xe0\x55\x02\xbe\xa9\xfd\x4d\xa0\xa9\x4a\x10\xb8\x6d\x69\x2b\x78\x78\x1d\xbc\x8f\xab\xc0\x56\xdd\x38\x32\xed\xba\x76\xed\x9a\x78\xea\xa9\xa7\x8c\x95\x45\xfb\xb5\x14\x60\x65\xee\x14\xd9\x68\x2c\x07\xbd\x61\xb6\xd9\x1f\xca\x4b\xfd\xfd\xec\xab\xd1\x58\x5e\x09\x13\xb5\x4d\x12\xeb\xa4\xd0\x27\x18\xc7\x5a\x98\x43\xd7\xac\x66\xd8\x80\xdf\xd6\xd6\xc8\x6c\xdc\xe5\x9e\xd7\x65\x02\xb9\xe3\x4e\x6b\x87\x5a\x54\x00\x04\x84\x50\x6a\x00\x45\x83\x40\x62\x3d\x48\xd5\xb9\xce\x24\x7b\xba\x7b\x28\xaf\xf6\x1f\x89\x5f\xf4\x0e\xe4\xcf\x8f\x16\xc5\x47\xe3\x65\x71\x77\x16\x8b\x91\x0a\x4a\x00\x83\x52\xdb\x35\x7d\x74\xfe\xfc\x79\x00\x40\x14\x45\xf2\xdd\x77\xdf\x15\xf7\xee\xdd\xf3\x09\xe5\x3a\xe1\xcb\xd3\x34\x31\x51\xdf\x75\x5d\xf0\x32\xde\x9a\x74\x6e\x9a\xa6\xf1\x5e\x95\xc7\x2d\xbb\x2a\x4d\x1b\xda\x6f\xdb\x16\xf3\x0e\xdc\x31\x17\x9a\x46\x55\xee\x16\xb0\xf5\x28\xba\xb0\x7c\x14\x3e\x1d\x4a\x5a\x32\x53\xf1\x9a\xde\xf8\xd4\xbc\xde\x30\x14\x5a\xd1\x2c\x89\x52\x2b\x9e\xc4\x19\x31\x0f\x66\xb3\xd1\xe2\xb1\x63\xa9\x01\x60\xf9\x75\x70\xc5\x57\xb1\xb2\x08\x04\x21\x55\x7f\x21\x11\xdb\xa7\x87\xdd\x8b\x9f\xac\x1f\xdd\xce\xf2\xd5\x45\x11\x4a\x3a\x34\xfd\x72\xf2\xe4\x49\x5c\xbe\x7c\x59\xdc\xba\x75\x0b\xcf\x3c\xf3\x0c\x9e\x78\xe2\x09\x17\xec\x72\x30\x17\x75\x53\xd1\x5f\x1b\x77\x36\x17\x92\x60\x5b\x48\xea\x7b\x16\x7b\xf8\xa6\x17\xd8\x75\xb9\x03\xae\xb1\x34\x99\x3c\x25\x14\x41\x51\x84\xbb\xc7\x99\x7e\x60\x8d\x58\x93\xc6\x06\x2d\x1c\x38\x46\x99\x58\x5f\x9c\x06\x67\x16\x12\xb1\x72\x5f\xa9\x3d\x22\x4a\x60\x4f\x19\xf9\xe8\xab\x4a\x59\x6c\x3b\x96\x4c\x68\x02\x2e\x55\xcc\xbb\xae\xd2\x5a\x20\xe3\xae\x61\x0f\xb3\x20\x5e\x9c\x04\x2b\xdd\x4c\xac\x90\x5e\xfe\x05\x6e\xbe\x62\x96\x0f\x2a\x3b\xdf\xa0\x62\x38\x96\x0f\x68\x84\x9d\xff\xc7\x37\xa1\xe3\x5f\xd0\xfe\x78\xdc\x04\x69\xf4\x45\x58\xfb\x07\x70\x2e\xed\xd2\x96\x02\x94\x80\x9c\x84\x72\xf8\xb0\x9f\xee\x64\x42\x71\xc7\x43\xdf\x16\xff\x00\x80\x34\x4d\xf1\xf3\x9f\xff\xbc\x2d\xf8\x68\x62\xbc\x55\x79\x74\x68\xab\xbd\xf9\xd2\xfb\xee\x79\x39\xbc\x2c\x1f\xad\xb8\x65\xfb\x80\x8f\x2f\x7f\x55\x59\x55\xc1\xd5\x3a\xab\x98\xb3\x0f\xbc\xf1\x3c\x55\x83\xcb\x7d\xcf\x36\xed\xae\x03\x2f\xde\x78\x21\x04\x9e\x7e\xfa\x69\x01\xb0\xf2\xa2\x00\x00\x00\x20\x00\x49\x44\x41\x54\x00\x57\xaf\x5e\x15\x7a\x8e\x1c\xb0\x97\x95\x02\xfa\xf0\x38\x15\x86\x33\xc4\xbd\x61\xb6\x31\xd8\x00\x21\x40\xde\xbf\xcb\x2e\x2f\x3c\xcc\xae\x77\xc7\xf2\x6a\x30\x53\xdb\x42\xe6\xd3\x41\xc8\xfd\x5c\x6c\x40\xa2\xc9\x79\x4e\xe3\x2c\x81\x89\x31\x45\x17\xf1\xe4\x30\x39\xae\xf8\xf2\x48\xcb\xe4\x0e\xcb\xfa\xc2\x07\x28\x8a\x43\xf3\x96\x40\x58\xea\x24\x6a\x3d\x98\x65\x17\xe3\x43\x79\x75\xda\x17\xbf\x38\x5c\x0d\xfe\xed\x70\x35\xf8\xe0\x68\x51\xec\xcc\xba\x34\x86\xa0\x84\xf5\x43\xea\x68\xe5\xf2\xfc\xf9\xf3\x42\x29\x25\xdf\x7b\xef\x3d\x51\x9c\xb0\xde\x04\x74\xeb\xc6\x49\x9b\xd0\x06\xdc\xfa\xca\x6c\x0b\xb6\xdb\xd4\xd5\xb6\x9c\x36\xbc\x44\xe7\xad\xe2\xed\xb5\xef\xf1\x95\xaf\x7c\x45\x1f\xa4\xab\x9f\xb9\x16\x97\xa8\x9b\x52\x7f\x63\x14\x3d\x59\x58\x5b\x22\x4e\x27\xc6\xa9\x14\xf3\x40\x85\x0b\x64\xcb\xf5\xc3\x9d\xea\xb1\xa4\xb4\xce\x5c\x02\x17\x5e\x47\x61\xb8\x28\x2d\x30\xd6\xfe\x5e\x30\x9a\x32\x11\xc2\x28\x13\xeb\x27\xc6\x9d\xa7\x16\x92\xe0\x5f\x87\xdd\x6c\x0c\x7b\xaa\xc8\x8c\xf1\xd5\xd5\x55\x5c\xbd\x7a\x55\xae\xae\xae\xe2\xca\x95\x2b\x6e\x5f\x99\x71\xab\xfb\xa4\x9f\x04\x4b\x27\x47\x9d\xb3\xf1\x4c\x6c\x09\x50\xa8\xdb\x64\xb5\x8f\xbf\x2b\xca\xf7\x57\x2c\xde\x74\x95\x2a\x24\xd7\xbc\x26\xcf\xde\xb3\xec\x5b\xf3\xfe\x45\x5f\x69\x58\xc7\x67\x26\x38\x28\xd2\xdd\x12\x48\x5a\x5a\x48\x82\xad\xc1\x34\xdc\xe8\x48\x71\x3b\x0d\x14\xb7\xaa\x71\xc5\x02\x8f\x3f\xfe\x38\x46\xa3\x91\x78\xf8\xf0\x21\x6a\x42\x93\x82\x68\x3d\xaf\x72\xce\x75\x85\xda\x9c\x26\xd8\x54\x79\x18\x86\xe2\xc2\x85\x0b\x60\x1a\xa2\xfe\x35\x04\x4d\x44\xa2\x23\x29\x5a\x9c\x86\xab\x61\x46\x4b\xdc\xc4\xa5\x09\xa8\x04\x14\x65\xa7\x96\xf1\xdc\x2c\xcd\xcd\x30\x40\xc9\xa4\x35\xc1\x9a\x4b\x13\xca\xa9\x21\x87\xf2\xb5\xf5\x85\x4f\xfe\xcd\x15\x60\x9b\xc4\x15\x41\x1e\x75\xb2\xbd\x83\x6e\xfa\x48\x01\x29\xa8\xdc\xb3\x05\xb0\x1d\x72\x5b\x4c\x15\xf9\x18\x47\xd5\xb7\x68\x93\xb7\xe9\xf9\x71\xac\x0a\x6d\xef\x7d\x42\xfe\xcb\xb6\xc1\x57\x57\x15\x2d\xd6\x31\xf5\xaa\xbe\x6b\x3b\x60\xda\x94\xdd\xf4\xac\x36\x3e\x0c\x43\xf1\x95\xaf\x7c\x05\x2f\xbc\xf0\x82\x6e\x27\x07\x8a\xd6\x06\x5e\x04\x84\x22\x55\x71\x74\x24\x97\xfa\xfb\x72\x7b\xe5\xde\xec\xb9\xf8\x40\xbe\x14\x26\xea\x12\x29\xac\x41\x21\x2e\xb1\x44\xa9\xa1\x71\x33\xb3\xd1\x4c\x8d\x59\xb3\xdc\x46\x1d\x40\x39\xe6\x8a\xac\xee\xf4\x37\x80\x32\x2f\xe3\x90\x25\xce\xb7\x13\x1b\x60\xc4\xe6\xe9\xf3\x8a\x14\x08\x14\x07\x0a\x5b\x62\x9a\x03\x98\x68\x2c\x2f\xf7\x86\xd9\xbf\x1e\xac\x87\xef\x1c\xae\x06\x9f\x4c\xfb\x62\x2f\xeb\xd0\x04\x84\xa4\xe0\x23\x5a\x29\x28\x8a\x50\x72\x7b\x7b\x5b\x00\x90\x8b\x8b\x8b\x18\x8d\x46\xe2\x8b\x2f\xbe\x68\xe2\x5d\xae\x40\x6f\x43\x87\x4d\x20\xc0\x97\x8e\x87\x36\x74\xdf\x44\xdf\x4d\xf9\xdc\xeb\x26\x10\xe7\xa6\x69\x2a\x6f\xee\xfa\xca\x95\x2b\x38\x71\xe2\x84\x65\x19\x44\x09\xb6\x43\x00\x51\x3f\x09\x96\x96\x26\xe1\x85\x40\xd2\x00\x0a\xa2\x04\x09\x30\x3e\x16\xfa\xc7\x65\xbb\xca\x15\xd0\x04\xc6\x92\xed\xe3\x5b\xac\x03\xed\x1c\x70\xc3\x29\xd2\x36\x62\xd8\xc2\x9c\x2b\xa9\x81\x44\x7f\x71\x1a\x5c\xda\x1c\x46\x1b\xc3\x93\x47\xfb\xc8\xfd\x17\xc3\xc2\x05\xc0\xa2\x9b\x95\x95\x15\xb1\xb2\xb2\xe2\xe9\x4a\xd3\x57\x7a\x2f\x9b\xa8\x9b\xd2\xd2\xf2\x24\xdc\xca\x7d\x7d\xec\x36\xf9\x96\x79\x5b\x16\x23\xc0\x7e\x37\x93\x9e\xac\x7e\xd3\xf9\x74\xff\xb0\xe4\xb0\xfb\xbf\xe4\x03\x65\xb5\x7c\xab\x91\x92\x6f\x08\x45\x51\x6f\x16\x6c\x2c\x4d\xc2\x8d\xde\x4c\xf4\x87\x22\x1d\x3b\xfe\x76\xfa\x5d\xe5\xe5\xcb\x97\xc5\xbd\x7b\xf7\x64\x03\x70\xf1\x29\x7f\x55\xf1\xb2\xca\x39\xb7\x8d\x86\x50\x65\x85\x11\x00\x64\xb7\xdb\xc5\xef\xfd\xde\xef\x09\xe6\x88\x6a\x84\x17\x9f\x97\x0f\x24\x45\xbd\x99\x58\x0a\x25\xf5\x8b\xbe\xb1\xbe\x96\x72\x3e\x86\xed\x94\xc5\xcf\x2b\x2a\xcf\xa4\xe0\xd6\x94\x39\x07\x5f\xfd\x91\xcc\x3d\xb3\xe8\x00\xe6\x7f\x57\xab\x04\x8b\x35\x60\xa7\xb0\xfa\x00\x0a\x19\xa9\xf4\x30\x92\x7b\x47\x1d\x6b\xb7\x5c\xd7\xda\xf2\xbf\x32\xb4\xd1\xf4\xda\x30\x61\x5d\x96\x9b\xfe\xcb\x5a\x78\xea\xb4\xc2\xba\xf2\x5d\x0b\xc5\x71\x2c\x19\xc7\x79\x47\xf7\xba\xa9\x0c\x17\x78\x55\xe5\xad\x13\x24\x3c\x9f\xdb\x47\x26\x5f\x14\x45\xe2\xfc\xf9\xf3\x78\xed\xb5\xd7\xcc\xc0\xf7\xec\xfb\x20\x94\x52\x11\x29\x44\x9d\x44\x0d\xe2\xa1\xdc\x58\xba\x9f\x5e\x59\x7c\x90\xbd\xd6\x99\xc8\x1b\x42\x62\x0b\x0a\x11\x57\x38\x6d\x5c\xce\x1d\xfb\xc0\xd4\x28\xa6\xdd\x32\xb1\x51\x35\x45\x6a\x5d\xb3\x32\xca\xe5\x99\xe5\x68\x29\xb7\x35\xb0\xc1\x3e\x98\x66\x69\x1c\xd8\xf2\x3a\x23\x92\x6a\xb3\x33\xc5\x4a\x90\x66\xdb\xd1\x58\x5e\xec\x0d\x83\x1f\x0d\x4f\x86\xef\x8d\x57\x82\xdb\x49\x4c\xc3\xc2\xff\x25\x61\x7d\x2b\x51\x80\x98\xed\xed\x6d\x6c\x6f\x6f\xe3\xde\xbd\x7b\xf2\x87\x3f\xfc\xa1\xb8\x7f\xff\xbe\xe7\xb3\x7c\x29\xab\x47\x55\xfe\xe3\x82\x9d\x36\xf7\x75\xed\xaa\xb3\x6a\xb6\x01\x22\x55\xcf\x7d\xe3\xd7\x2d\xcf\x67\x25\xb4\xe2\x9d\x65\xfa\xf9\x39\x3c\x0a\xa1\x50\x88\x56\xc7\x9d\xb5\x78\x26\xce\x09\x85\x88\x2f\xc9\x35\xc1\xdc\xdb\x4b\x81\xf3\x82\x61\xe8\xcb\x67\xfa\xe3\xae\x03\x96\x90\x37\xa4\xed\xec\x92\xee\xd0\x73\x4e\xc2\xae\xe0\xce\x69\x98\x14\xe2\x78\x26\xce\x6c\x0d\xbb\xdb\x1f\x9d\x3c\xfa\x04\x85\x3f\x19\x30\xb7\xf0\xa4\xaa\xcf\x2d\x8b\xa9\xf6\xef\x0c\x25\x0d\xa2\x54\xac\x09\x50\x3c\x07\xb0\x8a\x77\x28\xde\x6e\xbe\x54\xb7\xef\xe6\xf4\xef\x62\x04\x2a\xe7\xbd\xad\x22\xd8\x98\x54\xba\xb6\x7c\x35\xad\xd2\x8d\x80\xe6\x25\xf9\x41\x8e\xc5\x17\x10\x51\x46\x2b\x0b\x89\x38\xdd\x9b\x89\xc1\x41\x4c\xfb\x60\x8b\x03\x58\x5f\xf0\xdd\x73\xc1\xe2\xeb\xc6\x5e\x1d\xa0\x96\x40\x39\x55\xd4\x76\xd0\xd4\x0d\xd4\x2a\xe6\x2d\x9c\xeb\x92\x11\x83\xc2\x50\x52\xdc\x9b\x89\xa5\x40\xe5\xc0\x85\x9b\xa4\x01\x58\x44\xac\xca\x88\xd2\xb1\xd6\x68\x81\xca\x32\x81\x95\xbf\xfc\x79\x09\x4d\x34\x51\xcc\xfb\xb6\xb8\x9f\x56\x37\x0a\xa6\x51\x25\xa8\x2f\x59\x7c\x2a\xd4\x64\xd4\x4d\x77\x67\x81\xe4\x80\x45\xfb\xb8\xcc\xed\x51\x91\xa6\xa9\x8b\x40\x7f\x1b\x2d\xee\xb7\xd5\x12\x7d\x40\xa1\x0d\x61\xb5\x01\x2d\x2e\x53\xad\xcb\x53\x05\x58\x7c\xf5\x57\xb5\x87\xc7\xfb\xde\xb5\xea\x9d\xaa\xee\x75\x5c\xd5\xfb\xf1\xf6\xb8\xf5\xb9\xed\xaa\x64\x6c\x9d\x4e\x07\xe7\xce\x9d\xc3\xeb\xaf\xbf\xce\xb7\x04\xd7\x7f\x9a\x41\x86\x04\x8a\x84\x44\x14\x1d\xa9\x95\xc5\x07\xe9\xf6\xf2\xdd\xf4\xe5\xde\x41\xf6\x46\x30\xc3\x15\x80\x59\x58\x34\xb3\x22\x9b\x49\xcf\x0b\x0b\x47\xad\x33\x4c\xbe\x74\x5a\x24\x26\x08\xc0\xc6\x98\x2f\x98\x95\x1d\xba\x2c\xcb\x19\x8d\x4a\xc1\xe2\xa8\xd6\xa5\x32\x50\x66\x21\x42\x1c\x64\xd8\x16\x47\x6a\x23\x9c\xa5\x97\xba\x87\xf2\x07\x07\x27\xc3\xff\xb9\x7f\x3a\xfc\x60\xda\x13\xfb\x2a\x30\x4c\x99\x9f\xfd\x65\x78\xd5\xa9\x53\xa7\xc4\xd7\xbf\xfe\x75\xf9\xfd\xef\x7f\x1f\x8f\x1e\x3d\x72\x9b\x5a\x67\x89\x70\x43\x93\x65\xe2\x38\xf4\xd6\xa6\x8c\xba\xb6\xf0\x67\xbe\xb1\x5a\x37\x36\x81\x79\x5a\x06\xe6\xfb\xe2\x38\xe3\x05\x00\xb0\xbc\xbc\x8c\x30\x34\x9e\x07\xb6\x80\x2e\x68\x38\x94\x14\xad\x8f\xc3\xcd\x6e\x46\x9b\x54\xd4\xad\xf9\x33\x5f\x78\x61\x8b\x53\x94\x56\x41\xc0\x58\x0d\x94\xb6\xda\xc1\x5e\x4d\x9a\x97\x69\x50\x08\xca\x22\xe6\x85\xb7\x49\xaf\x69\x8e\x3d\x2b\x72\x41\x3b\x0b\x10\x94\x08\x25\x0d\x96\x8f\xc2\xc7\x8b\x29\xae\x48\x41\x4d\x0a\x67\xf8\x94\xd7\xc1\xcf\x35\x62\x7f\x00\x93\x7d\xc5\xc6\xab\x61\x94\x51\xbf\x23\x69\x09\xf9\x1e\x49\xd6\xd4\x15\x00\xa6\xa4\xb3\x31\x52\x76\x89\xf3\x3e\xe5\x5e\x2d\xda\xaf\xcc\x9d\xb5\x00\xf7\x5b\xd1\x63\xd9\x28\xf2\xa5\x7c\xe3\xd6\x18\x6e\xbc\x2a\x5b\x05\x08\x49\xfd\x6e\x2a\x56\xa2\x54\xe4\x5b\x28\xe4\x96\x24\xfe\xcd\x8b\xef\x61\x32\xb6\x91\x15\x4d\x4a\xae\x00\x20\x7d\x02\x80\x33\x59\xfe\xcb\x83\x74\xd2\xd6\xc5\x5b\xd7\xaa\xdc\x5a\x5c\x10\x20\x42\x49\x71\x3c\x0b\x56\x84\xa4\x38\x67\xb6\xf3\x7c\x54\xa9\xd2\x22\x62\x9c\x03\x75\x5a\xa0\xfc\x38\x96\xb9\xba\xbc\x54\xc8\x09\x3e\x37\x7b\xd9\x0d\xce\xfd\x65\xca\xc4\x96\x19\x8e\x17\x53\xcd\xab\xa1\x00\x39\x0b\xd4\xf8\x51\x9c\xee\x14\x8e\xb9\xa9\x52\x4a\x7a\x40\x8b\xd1\x18\x1e\x3d\x7a\x84\xbf\xfb\xbb\xbf\x6b\xd2\x66\xaa\xfa\xde\x97\xc7\x97\x96\x97\x53\x97\xaf\x8d\x96\x56\xd7\x96\x3a\x61\x5e\x07\x70\xab\x9e\x35\x85\x2a\x60\x55\x57\x46\x55\xdf\xba\xcc\xa5\x2e\x8f\xfb\x8c\x83\xd1\xa6\xfa\xab\x82\x0c\x82\x00\xdb\xdb\xdb\x78\xfd\xf5\xd7\x0b\x66\x5e\xae\x12\x62\x7f\x11\x01\x31\x49\xd5\xef\x1d\xc8\x8d\x13\xb7\x93\x67\xd6\x3f\x9b\x7d\x6f\x61\x3f\xfb\xf3\x70\x86\x67\xa8\x00\x2d\x5a\x63\xe2\x84\xae\x99\x1a\x7f\xe4\x3e\x75\x43\x3e\xa4\x54\x69\x0c\xc9\xdb\xc5\x7c\xc2\x7c\x19\xd4\x1c\x26\xc9\x7f\xed\x3c\xca\x2d\x82\xd8\xb8\xa4\xf9\xa1\x46\x0a\xfd\x60\x86\xcb\xbd\x03\xf9\xbf\xad\x7e\x3e\xfb\x3f\x4e\xfe\x3a\x79\x69\x61\x3f\xdb\xa0\x4c\xf5\x09\x88\xa1\x94\x5e\xce\x6d\x76\x67\x45\xce\x6b\x70\xe2\xc4\x09\xf1\xed\x6f\x7f\x5b\xef\xa5\x71\x9c\xd0\xe6\x1b\xb6\x19\x9f\xbe\xeb\x3a\xab\x87\x9b\x66\x4e\xf1\x63\x7f\x2e\x90\xe7\xe5\x55\x01\xf9\xaa\xf6\xfa\xda\x57\xcb\xcb\xf9\xf5\x5b\x6f\xbd\x85\x93\x27\x4f\xfa\xac\x2e\x86\x8e\x49\x21\x5a\x19\x77\xce\x06\xb9\x75\x5d\x28\x43\x92\xe5\xc9\xc4\xf9\xff\x05\x54\xe0\xd6\x15\xc0\x43\x5b\x64\xe8\x59\xd9\x04\xc5\x80\x0e\xe6\xca\xa0\x82\xe7\x5b\xca\xb1\x91\x03\x85\xb4\x2e\x1e\xf0\x32\x84\x42\x14\xcf\x82\x8d\x38\x15\x31\x98\xc5\x45\xff\x31\xcb\x68\x9e\x5c\xcd\x8d\x13\x23\xff\x88\x28\x0c\x25\x45\x51\x2a\xfa\xa1\xa4\xbe\x50\x14\x2a\x4b\xf6\x99\x06\x59\xc6\x25\x47\x87\x36\xf7\xaa\xb0\x94\x9a\xf7\x63\x69\x4a\xdf\x14\x67\x43\x57\xd6\x67\x34\x37\x66\x4b\x8b\xa9\x4e\xaa\x4c\xff\x98\x34\x61\x28\x29\x0e\x25\x45\x98\x07\x2d\x16\xed\x14\xfb\xdc\x54\xd1\x63\x15\x80\x46\xc5\xbd\x17\x78\xf8\x08\xbf\x2a\x3d\x8f\x73\x35\x6b\x00\xe0\xfe\x1c\x86\x29\x17\xd7\x22\x90\x14\xc5\x33\xd1\x8f\x33\x5a\x09\x14\x45\x16\x42\x66\x15\x14\xba\x5a\xc9\x94\x1d\xad\x4f\x7f\x62\x8d\xc8\x2d\x8d\x0f\x60\x00\xc7\x66\x89\xce\xa9\x0e\x73\xe5\x95\xef\x60\xbf\xb0\x4b\x8e\x92\x90\x4e\x3a\x72\xff\xa0\x2b\x87\x99\x40\x02\xca\xf7\x9e\x60\x7e\x2d\x52\xef\x43\xd1\xe0\xdf\xe2\xd3\x7c\x9a\x18\xa8\x4f\x78\x56\x95\xd7\xf6\x59\x55\x1d\x6e\x5e\xdf\x7d\x1b\x4d\xf6\x38\xf9\x8f\xa3\xbd\xd6\xd5\x5d\x55\x67\x9b\xfe\x6b\xd3\xae\x36\x69\xbd\x7d\x72\xe9\xd2\x25\xbc\xfe\xfa\xeb\xfa\xd6\x30\x36\x94\x4c\x3f\x02\x10\x8b\x14\xfd\xa5\xfb\xe9\xb9\x8d\x4f\x92\x37\x56\xbe\x48\xff\xcf\xee\x38\xfb\x8e\x90\xd8\x9c\x6f\x76\xa9\x95\x99\x18\x66\x69\xb1\xf9\xa9\x63\x2f\xf7\x94\xe3\x39\x8f\xbd\x1c\x8b\x56\x51\x1e\x83\xb6\x11\x0a\xce\x48\x23\x8b\x6d\x7a\x5e\xc1\x1d\xab\x10\x42\x62\x3d\x3a\x52\xbf\xb7\x7c\x3f\xfb\x7f\x36\x7f\x95\xfc\xd1\xea\xdd\x74\x4b\x64\xe8\x03\x14\xa3\xd8\x23\x04\xcc\x42\x55\xf0\x1a\x0c\x06\x03\xf1\x67\x7f\xf6\x67\xf3\x75\xd4\x87\x36\x96\x18\x5f\x68\x0b\xbc\x9b\xd2\x57\xd1\x4c\x15\xe0\x6f\x2a\xaf\x0a\xdc\x34\xd5\xdd\x94\xc6\x8d\x73\x05\x97\x01\x2e\x42\x51\xd4\x95\x62\x85\x14\x45\x00\x5b\xf1\xe3\x5a\xc9\x75\x69\x8e\x74\x26\xf7\x86\xca\xc4\x04\x72\x00\xb9\x1d\x8c\x40\x66\xc6\x3f\x28\x16\x5f\xc4\x11\xaf\xd7\xca\x4b\x20\x45\x61\x37\xc3\x5a\x3c\x0b\xfa\xe4\x80\x64\x5f\x5f\x38\xf2\x46\xcb\x3f\x7d\x2d\x3a\x19\x45\x71\x2a\xfa\x81\xa4\x3e\x29\x08\x63\x05\xd1\xb5\xb2\x65\xaf\xe4\xfc\x1a\x99\xa7\xb8\xf2\x5e\xb6\xdf\x3b\x92\xbd\x0a\x45\x45\x60\x7d\x61\xd9\x05\x50\x02\x21\xa1\x10\x85\x19\xf5\x03\x49\x1a\xc8\x55\xf5\x05\x5e\x7a\xe9\x25\xf1\xf4\xd3\x4f\xbb\xd1\x6d\xe4\x93\x37\xde\x07\x4c\xea\xb4\x81\xba\x41\xe4\xad\x48\x23\x4c\x7e\x66\x0a\x0a\xe7\xa4\x28\xa3\x68\x69\x1a\xac\x74\x52\x61\x9d\x08\xed\x4e\xd6\x28\xe7\xa3\xb8\xe6\x10\x46\xbf\x25\x53\xe4\xd6\x16\xf7\x2b\xaa\xf2\x57\x51\x09\xbd\xf5\x9e\x2e\xbc\x3c\x5f\x70\x89\x48\x0a\x95\x8c\xa3\x6c\x6f\x14\xa7\x0f\x91\x83\x14\x77\x35\x11\xef\x0f\x7e\xdb\xc4\x64\x7c\x5a\x55\x95\xd6\xd3\x54\xce\x71\x9e\x35\x95\xed\xd3\x02\xdb\x94\x51\x65\xdd\x68\xa3\xd5\x35\xb5\xc9\xd7\x9e\x26\x8d\xb1\x4d\x5f\xfa\xda\xec\xc6\xd5\xd5\x09\xf8\xfb\x5a\x00\x10\xd7\xaf\x5f\x17\xaf\xbc\xf2\x0a\xb8\x25\x52\x29\x15\x16\xf7\x11\x80\x58\x29\x15\x87\x13\x39\x58\xfb\x7c\x76\xe5\xe4\xa7\xb3\xff\x7d\xf1\x41\xfa\x57\x9d\x89\x7a\x05\x8a\x06\x85\xcd\x1c\xdc\xae\x68\x02\xd9\xd0\xc2\x62\xd2\x73\xb1\x0c\xb0\x2b\x38\x8c\x8f\xe9\x7a\x16\xaa\x77\x46\x09\x01\x76\x7b\x58\x7c\x15\x36\x71\x40\x94\xb9\x55\x1c\x1a\x59\x89\xe2\x60\xa6\xae\xf4\x1f\x65\xff\xf7\xc9\x4f\x92\xff\xeb\xe4\x67\xc9\x95\x30\x51\xc5\xbe\x34\x06\xbc\xcc\x59\x5e\x82\x20\xc0\x5f\xfd\xd5\x5f\x09\x67\x47\xd7\xb6\xa1\x09\x5c\xfc\x36\xe5\xb4\x01\x1d\xc7\xa9\xbb\xca\xd2\x72\x5c\xf0\xe5\xeb\xa3\xa6\x32\x2a\xc7\x3b\x15\xce\xe4\x24\xd1\xe7\x46\x05\x4e\x4e\xee\x35\xf8\x35\xe3\xcd\x73\xcf\x95\x82\xf2\x51\x8a\x2a\x49\xd2\xd0\x34\x39\xc6\x15\xb7\x1c\x4d\xe6\xaa\xa4\xbd\x92\x26\x21\x48\x51\x3f\x94\x14\x43\x55\xf2\x00\x51\x94\x25\xf2\xf2\xe6\xf8\x7d\xa9\xb8\x2b\x0a\xc3\x4c\x74\x49\x21\x54\xe4\xb4\x4f\x79\xfa\xc0\x7a\xbf\xb2\x43\xb8\x8c\x53\x45\xe3\xc9\xc9\xc3\xfb\xc7\xfa\xe3\xb2\xd0\xca\x53\xbe\xfd\x9c\xf8\x54\x05\x60\x52\x24\x84\xa2\x28\x50\x88\xc8\xee\x0f\xaf\xd5\xc5\xe9\x87\xa6\x50\x9b\xa6\xce\xe2\xa2\x9f\x1f\x7b\x70\xae\xad\xad\x89\x3f\xf9\x93\x3f\xf1\xd6\xa5\xb5\x20\x00\xa2\x93\x89\xb8\x9f\x04\x8b\x1d\x49\x03\x4e\x90\x36\x71\x16\x1f\x41\x33\x32\x46\x58\x00\x2c\xe2\x73\x2d\x25\x3a\x92\x9b\x12\x35\x71\x94\x75\x31\x8e\xca\x4c\xd6\x73\xe5\x54\x04\x05\x20\x25\x95\x8e\x3b\xd9\xde\x34\x94\x13\x94\x9b\xcd\x99\xe9\x22\x30\x90\xa7\xf7\x74\xf1\x14\xd5\xa4\x11\x1d\x07\x95\xb6\x09\x3e\xab\x4e\x1d\x68\x6d\x53\xaf\xcf\xfa\xc6\x09\xd8\xa5\x2d\x77\xe0\x37\x95\x59\x65\x62\xac\x2a\xa3\xca\x52\xd4\x16\x38\xf1\x3c\xfc\xb9\x4f\xd8\x54\xd5\x53\x29\xf4\x9e\x7b\xee\x39\x7c\xed\x6b\x5f\x9b\xf3\x67\x29\xee\xb5\x10\x8e\xbb\x47\x6a\xe9\xc4\xed\xd9\xb5\xb5\x3b\xb3\x3f\xed\x0d\xb3\x3f\x10\x29\xb6\x09\x4a\x94\x5a\x14\x37\x31\xda\x76\x0c\xcb\xf2\xec\x4a\x0c\x7d\x67\x94\xd8\xc2\xd8\x4c\x4e\x3e\x37\x90\x0b\x7e\xc0\x54\x40\x96\xc5\x33\x18\x8d\x20\xe1\x9a\x33\x03\x42\xa5\xb6\xed\xa9\xd7\x44\x2b\x41\x12\x6b\xdd\xb1\xfc\x83\x95\x3b\xe9\xdb\xeb\x9f\x25\xd7\xa2\x71\xb6\x06\xa9\xe6\xc0\x0b\xf7\xb5\x20\x22\x7c\xef\x7b\xdf\xc3\xe2\xe2\x22\xd0\xce\x9a\xa9\xc3\x97\x1d\x67\xc7\x15\xfc\x55\xf4\xdd\x54\x6e\x53\x39\xbe\x7c\x6d\xca\x68\xfb\xde\x75\xfc\xac\x04\x2f\x0a\x61\xa0\x28\x36\xcf\xc8\x21\x5f\x55\xde\x73\xeb\x0a\x15\xc6\x07\xcb\x8f\x45\xf1\xe7\xf3\xc8\x58\x29\x65\x6f\xe4\xc6\x52\x58\x96\x1b\xfe\x9c\xca\x7d\x8d\xc8\xd4\x61\x5b\x4d\x48\x51\x24\x54\x0e\xc2\x30\xcf\xc3\xac\xb2\xf8\xaf\xaf\x3f\x24\x20\x24\x79\x21\x97\x71\x99\xe0\x23\xdb\xfc\xaa\x62\xa4\x90\x9d\x1e\x45\x9b\x95\x76\xbe\x37\x43\xcc\x35\x05\x94\x56\x1a\x23\xef\x78\x7e\x9e\x5a\x59\x3f\xf9\xb3\xa2\xbb\x15\x41\x4a\xa1\xa4\xd4\x65\xd8\x27\xcc\xd7\x85\xb6\x33\x09\x95\xe1\xb7\xca\xec\x94\x61\xca\x12\x42\xa0\xdf\xef\x9b\x7b\xae\x4d\xf2\xbf\x30\xa3\xa8\x97\x04\x4b\x81\xa4\x7e\x8e\xfe\x1c\x62\x52\xa5\x0e\x49\x96\x2d\xac\xfa\xa3\x6a\xc6\xc8\xcd\x5a\xf9\x33\x8f\xf9\x8c\x59\x66\x74\x9a\xe3\x04\xcd\x80\x67\xa1\x1a\x1f\x74\xb3\xdd\x69\xe9\xdf\x52\x77\x60\x1c\x76\x76\x76\xf0\x3f\xfe\xc7\xff\x70\x8b\x3b\xae\x36\xd3\x26\x5d\x13\x40\xaa\x6b\x43\x15\x18\x68\xca\xef\x0a\xf6\x36\x53\x34\xfa\xaf\x0d\x68\xd0\xbf\x4d\xa0\xba\x0e\xed\x37\x31\x65\x97\xc1\xd7\xb5\xcf\xf7\x7e\x4d\xdf\x4a\x3c\xff\xfc\xf3\xe2\xf2\xe5\xcb\x88\xa2\x28\x67\xea\x6c\x6f\x16\x00\x11\x15\x27\xe8\xc6\x87\x72\x69\xed\xf6\xec\x77\x97\xef\xa5\x7f\xd2\x1d\xc9\x37\x44\x86\xad\x3c\x0d\xa3\xfa\x82\xb3\x2b\x7d\x0f\xbf\xb6\x56\xde\x50\x61\x95\x2c\x05\x43\xf9\x98\x59\x60\x14\x00\x2a\xb4\x46\x45\xde\x32\xad\x5f\x42\xe9\x10\xe8\xec\x41\xce\xdb\xa6\x7d\xd2\x8c\x7f\x99\x76\x3a\x80\xd6\x34\x4b\xd6\xa9\xff\xe7\x1a\x28\xe5\x5c\x56\x90\xc4\x5a\x34\x96\x6f\x2c\xdf\x4b\xff\xf4\xc4\xed\xf4\x99\x78\x24\xd7\x49\xaa\x3e\x18\x78\xa1\xe2\xac\x26\xcd\x83\xfa\xfd\xbe\xf8\xd6\xb7\xbe\x85\x13\x27\x4e\xd4\x01\xe1\xba\x70\x5c\xab\xc8\x97\xd5\x38\x75\xfe\xb6\xf1\x75\xf5\xf0\xf1\xe2\x2a\x15\xfc\x79\x53\xbd\x4d\xf5\x99\xb2\xf8\x99\x74\xba\xef\xc3\x4c\x44\x42\x22\x9e\xcb\x6b\x48\xb9\xf4\x91\xca\x59\x2b\xcd\x27\x41\xe1\xfb\x42\xec\x1a\x8c\xef\xeb\x74\xe4\x80\x60\x82\x05\x98\x7d\xbe\x8c\xb6\x3d\xa3\xb4\x66\xb0\x20\x01\xc8\x4c\x28\xa8\x7a\xcb\x82\xab\xa4\x9b\x78\x36\xf3\x80\x4c\x28\x39\x0b\x54\x2a\x49\xa5\x5c\xfa\x58\xa0\xcd\x29\xc0\x2c\x48\xb1\xfa\xc4\x1d\xe3\xca\x80\x0b\x23\x43\x8b\x71\x55\x46\x73\x43\x80\x32\x43\xd5\x1a\x79\x8a\xf5\xa3\x6b\x8a\x52\x40\x46\x2a\x99\x06\x72\x3c\x0d\x65\xa2\x60\x7c\x7b\xaa\x42\x95\xd2\x08\x16\x5f\x37\x2e\xac\x67\xbe\x7d\x5c\x8e\x63\x65\xf1\xa5\xb5\x06\xab\x3b\xcf\xc7\x35\xa0\x8e\xa4\x38\x4e\xc5\x52\x31\x47\x56\xa6\xd5\x1d\x68\x65\x55\xa6\x23\x4d\xd9\xd6\x63\x63\x5a\x61\x1f\x9e\xac\xb2\x7c\xdd\xea\x8b\x73\x3d\xb6\x75\x24\xf3\x18\x37\x99\x25\x21\x4d\x02\x39\x1e\x75\xd3\x7d\xbd\xa2\x88\xad\x72\x30\x53\x45\xc4\x76\xcd\x9d\xcd\x66\xd8\xdf\xdf\xaf\x62\x3e\x55\xcc\xb4\x6a\x4a\xae\x09\x28\xf0\x38\xce\xbc\xdc\x3c\x6d\xe2\x7c\xe5\x37\xdd\xfb\xea\x3f\x8e\x35\xa7\xad\xf5\xa9\x2e\xbe\x2a\xcd\x71\x80\x56\xdb\x6b\x7e\xef\x8d\x7f\xfe\xf9\xe7\xf1\xc4\x13\x4f\xa0\xd7\xeb\x19\xa6\xa7\x97\x8d\x16\xbb\xe1\x46\x00\xe2\x68\xa2\x96\xd6\x3e\x9f\xfd\xee\xd2\xfd\xec\x3f\x44\x63\x79\x43\x64\x58\x27\xb6\x69\xa4\xa1\x45\xbd\xef\x11\xab\xa8\x64\x66\x7c\xcf\x16\x18\x30\xc1\x4f\x5e\xe7\x1a\x16\x19\x20\xa1\xb5\x4f\x67\x3d\x9f\x8f\x69\x2a\xbd\xba\x83\x9d\x17\x03\x3d\x8e\x34\x03\x84\x5d\x19\xab\x07\x26\xaf\x1e\x5b\xd6\x08\xce\xeb\xe1\xed\x2f\xae\x89\x94\x10\x92\xd6\xba\x63\xf9\xca\xf2\xce\x2c\x04\x54\xb4\x7f\xba\xf3\xd3\xa3\x81\xd8\x2d\x3c\x06\x8a\xbc\x04\x94\xfb\xbd\xc8\xd5\xd5\x55\xc1\x0e\xc4\xe3\xdf\xff\xcb\xf0\xc1\xa6\x74\xbe\x7a\xda\x04\xdf\x58\xad\x2a\xa3\x2a\xbe\x6a\xec\xb8\xe3\xf0\xd8\x56\x75\xcc\xf7\x95\x15\xe6\x78\x25\x20\x40\x1c\x70\x97\x7c\x96\x83\x12\xbb\x0c\x7f\xe5\xb6\x4c\x61\xb4\x52\x95\x9e\x95\x37\xb7\x37\x8a\x27\x65\x8e\xbb\x6d\x60\xa3\x81\x4c\x1a\xa8\x24\x15\x4a\x16\x0f\xac\xf7\x76\xde\x57\xdf\x5b\x69\x98\x25\x46\xa4\x42\x61\x1a\x66\xb3\x4c\xa8\x44\x01\x92\xac\xf2\x6a\x5e\xc6\x80\x17\x17\xec\xc0\x00\x3a\xbb\x18\x7b\x5c\xf1\x9c\x7c\xd5\xd1\xdc\xd4\xad\x55\x8c\x69\xb7\x89\xcb\x84\x9a\x1c\x75\xe4\x68\x12\xca\xc4\xe9\x8f\xe3\x2a\x8c\x3e\xab\x75\x15\x5f\x16\x40\xbe\xaa\xa8\xad\xe6\xd9\x14\xbc\x0d\x62\x3e\x2e\x16\x22\xa5\xfc\x8c\xa2\x1c\xb8\xe4\x27\xd2\xe6\xf3\x69\xca\x36\x0b\x96\x7f\x79\x64\x39\xe3\xc6\xae\x0a\xaa\xb5\x9f\x94\xce\x88\xdc\x3a\x63\x01\x47\x86\x5e\x4d\x1c\x6c\xc2\x2e\xd6\xf0\xdb\xa6\x3f\x6d\x82\x53\x80\x24\x95\x4e\x43\x39\x3c\xea\xc8\x03\x49\xfe\x93\x6d\x79\xdf\xd4\xa0\xd2\x2a\xd0\xc2\xf3\xfb\xac\x1f\xbe\x3c\x55\x56\x12\xce\xa8\xda\x98\xb1\xab\x88\x6c\xce\xec\x59\x91\xae\xea\xbe\xea\xda\x6d\x57\x95\x46\xe8\xc6\xb9\xfd\xe3\xfb\x6d\xaa\xd3\x37\xe8\x7c\xf9\x9a\x2c\x51\x75\xe9\xc5\x73\xcf\x3d\x27\x5c\xd0\x02\x7e\x76\x09\x51\x44\x40\x14\xce\xd4\x60\xed\xf3\xd9\xd5\xc5\x12\xb4\x6c\x40\x21\xe4\x26\x42\xb3\xc2\xa7\xa0\x7d\x9f\x45\x84\x34\x81\xcf\x99\x1b\xcd\x7f\x16\x8b\x54\x4e\x5a\x9d\xcc\xcd\x3e\x67\xa9\xa4\x52\x58\x99\xf4\x16\x57\x65\x83\x06\x80\x22\xb6\x4f\x87\x11\x26\xdc\xaa\xe3\xbb\xd2\x77\xa5\xad\x95\x50\x38\xed\x8e\xd5\x0b\x4b\xf7\xb3\xb7\x96\x76\xd2\xab\xf1\xa1\x5c\x83\x42\xac\xf2\xd5\x46\x96\xc3\x2e\x0a\x6d\xf7\xfa\xf5\xeb\x58\x5f\x5f\xaf\xfb\xd6\xbe\x31\xe2\xa3\x73\xd7\x72\x71\x1c\x60\x51\x45\x93\x6e\xf9\xbe\xeb\x2a\x0b\x49\x13\xfd\xba\xe9\xdd\x74\x75\x9a\x2f\xb7\xdc\xf0\xb8\xb9\x77\x63\x42\xdc\xac\x34\x49\x85\x92\xa9\x90\x89\x49\x4f\x25\x1f\x2e\x33\xce\x5f\xba\xb4\x6d\x3d\x27\x1b\xe0\x96\xfc\x9d\x5b\xfa\xca\x0b\xbe\xe9\xa1\x91\x01\x9c\xd6\x94\x53\x2f\xbf\x27\x95\x26\x81\x1c\x4d\x43\x99\xaa\x1a\xb0\xc6\xef\xab\x82\x52\x0a\x69\xa0\xd2\xa3\x8e\x1c\x4f\x3b\x6a\x24\x49\xa5\x95\xed\xf2\x8c\x47\x02\xcc\xb4\x8e\xed\xdf\x32\x2f\xeb\x8c\x2c\xc4\x7c\x7f\x2b\x96\xd9\xc8\x5a\x55\x96\x05\xe5\xf4\x01\xab\x2b\x15\x2a\x99\x74\xe4\x28\x09\x55\x8a\xe3\x07\x97\xae\x5d\x3e\x5c\xa7\x9c\x7a\x0f\x59\x6c\xa3\xd9\xba\xcf\x2b\x89\xd7\x09\x86\x51\x07\x92\xc2\x6e\x2a\xfa\x51\x4a\x4b\x42\x51\xa4\xe7\xe6\x8c\x16\xc8\x3f\x96\x07\xf9\x19\xaa\xd7\xf3\x92\xda\xe0\x52\x20\x4e\x77\x30\xe8\x7d\x5c\xb8\xe6\x46\xb0\xc1\x8a\x9f\xce\xfc\xa6\x1a\x9d\x47\x12\xd2\x69\x28\x47\x93\x8e\x1c\x2b\x28\x7d\xa8\xe2\xdc\x34\x88\x6a\x3e\x11\xba\x0d\x70\x70\x35\xb0\xb6\x5a\x63\xdb\xb8\x36\x5a\x61\x13\x7d\x70\xc2\xe3\xe5\xfa\xe2\x24\xaa\xeb\xfd\x32\xef\xe9\xb6\xab\xc9\x6a\xe4\x2b\xaf\xea\xfd\xeb\xde\xa5\xaa\x4e\x37\x3d\x1e\x7f\xfc\x71\xd1\xef\xf7\x85\x9e\xbe\xd0\x4b\x9f\x8b\x55\x44\x11\x94\x8a\x44\x86\xc1\xca\xdd\xf4\xd2\xf2\xbd\xf4\xdb\xdd\x02\xb4\x50\xae\xb1\x82\xef\x45\xc4\xd5\xc7\x72\xdc\xe8\x83\xd8\x18\x63\x37\x42\xa4\x24\x76\x43\x89\x96\xe5\x43\x6b\xa5\xc4\x7c\x08\xc8\x8c\x31\xa3\xea\x39\x43\xa2\x34\x5d\xb3\x7d\x91\x1c\x52\x57\xc5\xe6\x55\x3a\x31\xb7\x14\xc1\xec\xc1\x54\x8e\x49\xfd\x3c\xdf\xb7\xc3\xb6\x10\x69\x6b\x90\xf5\x71\xa4\x5a\x8b\xc6\xf2\xc6\xd2\x4e\x9a\x28\x41\xa9\x14\xf4\x5e\xd2\x17\x7b\xc5\xb8\x8b\x90\x6f\x56\x17\x22\xb7\x88\xe2\xdc\xb9\x73\xc8\xb2\x4c\xfe\xec\x67\x3f\x83\x73\x72\x2d\x3c\xdf\xaf\x8a\x0e\xab\x2c\x17\x3e\xa5\xa0\x8e\x0e\xab\xea\xf7\x05\x1f\x58\x6f\xb2\x04\xd6\x69\xbb\xbc\x7d\x6e\x1e\x37\x8d\x0f\xa4\x79\xcb\x74\x79\x9d\x02\x20\x49\xc9\x24\x94\x23\x05\x48\x80\x01\x57\x06\x3e\x1c\xa3\x9a\x15\x0f\x3d\xd9\x61\xa1\xeb\x82\x7e\x0a\x79\x30\xe7\x5b\x52\x14\x60\x1d\xd0\x3b\x67\x79\xb1\x8f\xb4\x60\xd9\x9c\xf6\x43\xfb\x32\xb6\x7e\x6f\x27\x70\x05\x56\x2a\x00\xd3\x50\x4d\x0e\xa3\x6c\x2f\x13\x6a\x12\x2a\x8a\xe0\xb4\xab\xfc\x61\x3b\xc7\xeb\x36\xe9\x71\xe8\xe9\x3f\xab\x4d\x60\x63\x94\xcb\x57\x2d\x2b\xf5\x1b\x2a\xb3\x0b\x4c\x69\xc7\x62\xbc\xc2\xee\x33\x85\x34\x50\xe3\x49\x47\x8e\x66\x81\x34\xd6\x4c\xf7\x3d\x4d\xea\x79\x27\x65\xdf\x98\xf0\x29\xae\x5e\xb9\xd8\x06\x9d\xd7\x05\x97\x89\x5b\x81\x2d\xfd\x32\x0e\x88\x7a\x99\x67\x27\xcb\x97\x42\x77\xa4\xe8\x93\xca\xcd\x69\x2e\x90\xe0\xc1\x78\x86\x73\x74\xc9\x56\x03\x99\x3a\x4d\xdd\x26\x95\xf9\xba\x7a\x93\x3a\x03\x5a\x9c\x7a\xaa\x90\x7d\x59\x92\xd6\x16\x4b\x25\x52\x92\x4a\xa6\xa1\x1c\x4e\x43\x35\x46\xe9\x90\x3b\x77\x12\xb4\xde\x1c\xeb\xe1\xc3\x87\xf2\xd3\x4f\x3f\xf5\x55\x71\xdc\xbe\xf7\xa5\xf3\x69\x8d\x6e\xa8\x62\x4c\xc7\xa9\xbb\xce\x2a\xe2\x63\xe4\xbe\xb6\x54\x31\xd8\xaa\x38\xe1\xc4\x55\x59\x3e\xdc\x76\xf9\xca\x6e\xd3\x4f\xbe\xb2\x7c\xcc\xdc\x4d\xe7\xb6\xd3\xfc\x3e\xf5\xd4\x53\xa2\xdb\xed\x02\xb0\x8e\xbe\xb0\xa6\x88\x48\x62\x30\x78\x90\x9e\x5b\xfd\x7c\xf6\x56\xf7\x50\xbe\x52\x4c\x0f\x99\x7a\x3d\x56\x72\x4b\xbb\xe4\x0c\xbb\x1c\x0b\x0c\xec\x1b\xe4\x5e\x8e\x0d\x67\x2d\x52\x39\x3f\x5e\x20\x09\xa6\x43\x42\xaf\x7e\xe0\xe3\x84\x0f\x35\x53\xb9\xfe\x55\x7c\x0c\xda\x19\x14\x43\x40\x7c\x7f\x18\x62\x71\x64\xc6\xae\x79\x43\xd6\x00\xab\x15\x42\x64\x6a\x23\x1e\xc9\x17\x96\x76\xd2\xd7\x97\x76\xd3\x4b\xe1\x54\x0e\x0a\xd0\xc2\x2d\x2f\x66\x7f\x8d\xc7\x1f\x7f\x5c\x5c\xbd\x7a\x15\x1b\x1b\x1b\x55\xd6\x32\xa0\x9e\x36\xab\x82\xab\xb8\xf8\x9e\x57\x85\x26\xe5\xc1\x07\x88\x9b\xc6\x82\xab\xcd\x56\xa5\xf1\xd5\xe3\x3e\xab\x53\x56\xea\x82\x94\x42\xc9\xc3\x48\xee\x4b\xc1\x34\x74\x0d\xac\x61\x0b\x46\xbe\xba\x53\x31\x0a\x35\x16\x07\x2a\xf6\x14\x2a\x84\x6f\x4e\xae\x25\x91\x99\xd5\x30\x4c\xf6\x5b\x0a\x30\x95\xb4\x63\xea\xa2\x32\x6f\xde\x1e\xc5\xe9\x5f\x66\xa4\x92\x51\x37\xdb\x97\x04\xe9\x0c\x99\xda\xf7\xf6\xc5\x15\x34\x28\xa7\xa1\x1c\x3f\x8a\xd3\xdd\x59\x20\x47\xe5\x0b\x16\xed\x67\x16\x15\xcf\x3e\xc2\x96\x75\xa5\xb4\x28\x31\x0b\x09\x71\x8b\x0a\x97\x60\x4c\x49\x30\x80\x2e\x07\x80\xa5\x92\xa2\x3b\x84\xf3\x16\xf0\x99\x8a\x74\x1a\xca\xd1\xb8\x93\x8d\x66\x81\x4a\xf4\x82\x13\x8f\xb1\xa2\x28\x8a\x7c\x34\x54\x35\x36\x7c\x63\xcf\xa2\xb1\x3a\x13\xa7\x8f\x29\xbb\xd7\x3e\xd4\x2f\x00\xeb\x05\x24\x60\x39\x6b\x01\x80\x08\x25\x85\x71\x2a\x16\xc2\x7c\x0d\x7b\x41\x20\xe5\xa6\x72\x00\x43\xc7\x28\x99\x29\x73\x2f\x31\xc1\xb2\x96\x70\x53\x18\x91\xc3\xdf\x6c\x4d\xcd\x06\x39\x7a\xa0\x70\x6a\x28\x33\x93\xfe\x9f\x09\x04\x45\xda\x5c\xa6\x86\xb3\x40\x26\xce\xde\x2d\x7c\x29\xb4\x59\x49\x74\xff\xfe\x7d\xbc\xff\xfe\xfb\x6d\x18\x09\x1a\x9e\xb7\xfd\x66\x6d\xea\xf1\x95\xe1\x03\x45\x75\xf5\xd4\xd1\x8b\x0f\x55\x57\x01\xb5\x3a\x60\xd5\x64\x46\xd4\x69\x38\xa2\xf7\x31\x78\xd7\x3a\x02\xf8\xfb\x89\xa7\xab\x7a\x3f\xb7\xed\xbc\x5e\x0d\x5e\x71\xe1\xc2\x05\xf1\xe2\x8b\x2f\x22\x8e\x63\x3d\x3e\x0c\x70\xd1\x53\x1a\x94\xa9\x7e\x6f\x28\x37\x4f\xdc\x9e\xbd\xd6\x1b\xc9\x37\x45\x86\x4d\x02\x42\xc7\x78\xc8\xac\x25\xa5\x76\xa9\x8c\x0d\x38\x67\xd8\xe5\x14\x68\xa9\xab\x5a\x85\x30\x00\xe0\x24\x85\x3d\x00\xec\x55\x7d\xf9\x32\x48\x47\x31\x40\x11\xa9\xad\xa0\xd0\x26\x73\x06\x4c\xf4\xff\x6c\xf0\x18\xa3\x8b\x2d\x96\xca\x32\xe7\x18\x33\x39\x11\x25\x63\x2d\x58\xbb\x10\x19\x36\xe3\x83\xec\xa5\xa5\x9d\xf4\xb5\xc1\xc3\x6c\x9b\x32\xe3\xac\x6b\x96\x48\xf3\xfd\x26\x2e\x5c\xb8\x20\xce\x9e\x3d\x0b\x54\x5b\xf3\x50\x13\xe7\x0b\x6d\x14\x90\x26\x00\xe1\x03\xe6\x4d\xa0\x99\xe7\x75\xeb\x71\x15\x8a\xba\xb1\xe5\x2b\xb3\x2a\x54\xbe\x07\x17\x60\xfa\x3a\x23\xc8\x87\xfd\xd9\x5e\x2a\xd4\x18\x80\x34\x98\xd6\xb5\xd2\x29\xfb\x97\x54\x4e\x28\xcc\xc6\x52\x3e\x66\x72\xd9\x02\xf0\x1c\xf8\x78\x65\xa9\x2d\x08\x6c\x20\x6e\xd3\xa3\xa6\xb2\x2c\x50\xc9\x30\xce\xf6\xc0\xfa\xb2\x5c\xed\x6a\x57\xa2\x97\x42\x3b\x72\x10\xce\x7e\x5e\x72\xd2\x91\x93\xbd\xfe\x6c\x77\x1a\xaa\x7d\x3e\x46\xb9\xf3\xf0\x9c\xef\x89\x7e\x47\x0b\x88\xe9\x3a\xf3\x4c\x7c\x7f\x17\x3e\xc6\x5c\xf0\x63\xd2\x20\xef\x67\x77\xf5\xae\x9b\x4f\xd7\x99\x0a\x95\x8c\x3b\xd9\xfe\x61\x94\x3d\x4a\x85\x32\xef\xc3\x00\x4a\x9d\x85\xcf\x17\x5c\x3e\xea\xe3\xab\x26\x84\xec\x01\xdc\x87\x15\x85\xfb\x1a\x64\xee\xbb\xdd\x2e\xd6\xd7\xd7\xe7\x4c\x76\xee\x8e\x7a\xa1\xa4\x28\xca\x44\x3f\x90\x88\xcb\x93\x68\x39\x62\x9e\x67\x67\x16\xd3\xe6\xd7\x4a\x83\x1e\xb2\x3f\xa8\x76\xa8\x25\xe5\x29\x9b\x69\x6f\x1a\x34\x81\x60\x0e\xea\x72\xc1\x0f\x38\xfa\xa7\xa2\x1c\x85\x34\x50\x93\xa3\x4e\x36\x9c\x06\xd6\x89\xd0\x73\x7d\xe4\xce\x7f\x7a\xfa\xd0\xf7\xac\x8e\x81\x1e\xc7\x54\x0c\x4f\x5a\x5f\xfe\x26\x0b\x49\x13\x58\x6a\xd2\xcc\x7c\xcf\xdc\xfa\xab\xac\x36\x55\xf5\xfa\x40\x51\x53\x1e\x5f\xfe\xaa\xbe\xaa\xab\xb7\x15\xb8\x12\x42\xe0\xcd\x37\xdf\xb4\xb6\xf2\x67\xab\x88\x72\xbf\x16\xa9\xfa\xdd\xb1\x5c\x5b\xbd\x33\xbb\xd6\xdf\x97\xdf\x0c\x52\x9c\xcb\xcb\xb2\xb7\x35\x27\x77\x60\x14\x5a\xa1\x1e\x67\x9a\x69\x97\xe4\xce\xcf\x25\xd2\x51\x25\xfd\xda\xa6\x6d\x4e\xdd\x6c\x4c\x70\xa7\x5b\xed\xa3\x62\xf4\xdc\xb2\x1e\xf3\x6b\x39\x29\x96\x6d\x37\xed\x2b\xca\xb6\x06\x2b\xc3\x3d\xc6\xdf\xc5\xc6\x39\x66\xd4\x81\xd8\x3b\xcd\x0b\x99\x30\x48\xd5\x99\xde\x30\x7b\x69\x69\x87\xf6\x93\x9e\x18\x8e\x57\x82\xbb\x60\x16\x10\x76\x4c\x00\x94\x52\x72\x30\x18\x60\x69\x69\x09\xc3\xe1\x50\x7f\xbf\x3a\xa6\xdb\x04\x70\xda\x04\x4e\xa7\xee\x98\xaa\x52\x02\xac\xb8\xf5\xf5\x75\xd1\xe9\x74\xdc\x34\x73\xd7\x5f\x7c\xf1\x85\x5b\x9f\xaf\xdd\x2e\xc0\x71\x15\xd1\x36\xbc\xc2\x0b\x62\xf8\x76\x10\x19\x29\xf9\xa0\x3f\xbb\x7f\xd4\x91\x7b\xdd\x54\xac\x09\x95\xd3\x77\xfe\xe9\xed\x53\x9b\x0d\xaf\xad\x38\x2c\xd1\x75\xb2\x25\x46\xe0\xae\x88\xd6\xec\x5c\x03\x70\x77\x1a\x89\x4b\x06\xeb\xa8\x0b\x96\x4c\x11\x64\x22\xd4\xe8\x51\x2f\xdf\xab\x8b\xbd\xb7\x51\x4e\x78\x7f\x14\xfc\x5e\x7a\x9c\x73\xad\xcd\x48\xa7\x81\x9c\xec\xf7\xd2\x87\xa3\x6e\xb6\xb3\x3c\x09\x2e\x86\x19\x45\x06\xec\x3b\x28\xc3\xc0\x32\x36\x6d\x6a\x2b\xf0\x34\x37\xfe\xcd\xd9\x7d\xac\x8c\x52\x6e\xba\x9d\xc8\x00\x13\xa1\xba\xbf\x09\x48\x02\x39\x7c\xd4\xcb\x76\x0f\xbb\x72\x24\x73\x17\x09\xd3\x17\xac\x7f\x74\x1f\x60\x7f\x7f\x1f\xa3\xd1\x08\x35\xe1\x38\x8a\x81\xf4\xf9\xb8\x98\x87\xf0\x0b\xc5\x2a\x6b\x8b\x00\x20\x37\x36\x36\xf0\xea\xab\xaf\xf2\x72\x38\xc3\x86\x9e\xd7\x0f\x24\x45\x51\x4a\x7d\x91\x6f\x17\x3c\x17\x0c\x4f\xd6\x9d\xce\x15\x2c\xf6\x21\xc8\xfe\xcf\x06\x39\x1a\x34\xb9\x38\xb3\x40\xa0\xdc\x09\x98\xec\x9c\x36\x20\x67\x1f\x90\x0f\x30\x45\x48\x67\x81\x1a\x8f\x3b\x72\x38\x0b\xe4\x04\x25\x11\xbb\x7e\x2e\x79\xde\xe3\xfb\xb8\x00\xd5\xdf\xa2\x2a\x5f\x15\xa3\x71\xd3\xfa\x18\x74\x13\x13\xad\x63\x6a\x4d\x75\x57\x85\x3a\x70\x51\x17\xea\x68\xb4\x2e\xbd\xbe\xe6\xe9\x7d\xcf\xda\xbc\x47\xa3\xc0\x21\x22\x2c\x2f\x2f\x03\xc8\xc1\x3b\xdf\x16\xbb\x58\x49\x14\x41\xa9\x28\x9c\xaa\xa5\xc5\xdd\xec\xd2\xd2\x6e\xf6\x8d\x70\xa6\x2e\x97\xed\x70\xb4\x51\x00\x9a\x79\x95\xea\x58\x19\xcc\x50\xb0\x68\xb6\xfc\xdf\xce\xea\x32\x3a\xa6\xe7\x29\x43\xe3\x25\x28\x62\x8c\xcd\x9e\x73\x2d\xfc\x57\xcc\xb8\x71\xe9\x9c\x69\x92\xda\x47\x86\xac\xe8\x22\x8b\x39\x98\x23\x57\x21\xcc\x01\x32\x6c\x65\x94\x6e\x33\x57\x23\x38\x37\xce\xdb\x1d\x05\x33\x5c\x58\x78\x98\x7d\x3d\x8d\xd2\x7b\xd3\x05\xf1\x4f\x59\xa7\x64\xac\x54\x9e\x23\x03\x22\x92\x97\x2e\x5d\x12\x41\x10\xc8\x7f\xf9\x97\x7f\x11\xe3\xf1\xf8\xcb\x80\x91\x36\xe0\xbf\x89\x56\x7c\xe9\x00\x40\x0a\x21\xc4\xe2\xe2\xa2\x25\x00\x5f\x7f\xfd\x75\xac\xae\xae\x56\xb6\x47\x4f\x45\xfc\xf5\x5f\xff\xf5\x1c\xa0\x39\x3a\x3a\x42\x92\x24\xae\x92\x50\xa5\x40\x54\xd6\x51\xf1\x9c\x0b\x72\xa3\x89\x03\x90\x0a\x48\x1f\xf6\xd3\xe1\x7e\x2f\xbd\xb5\x38\x09\xce\x08\xc2\xc0\x4c\x53\x40\x93\x40\x71\x70\xad\x06\x18\x05\x5d\x28\x66\xa1\x23\x4e\x3f\x0e\xdb\x76\x2e\xf3\x7b\x03\x84\x34\xcd\x17\x14\x66\x14\x5a\x9d\xa3\xa4\x25\x2e\x7f\x00\x05\x09\xa4\xd3\x50\x0e\x1f\xc5\xe9\x10\x30\x3e\x8b\x1c\xb0\xcc\xf5\x85\xe7\x19\xa7\xbf\x7c\xaf\x2f\x81\x74\x1c\x65\xc3\xbd\xfe\xec\xce\xc6\x41\x67\x14\x48\xac\x95\xaf\xc4\xda\x47\x6c\x6c\x9a\x21\x58\x4c\xa1\x11\x57\x6c\xe6\xc1\x08\x8c\x1c\x75\x14\x78\xde\xef\x45\xc7\x71\x25\x9f\x2b\x0e\xb6\x4b\x85\xc2\x38\x92\xbb\x0f\x7b\xb3\xbb\x87\x51\x36\xf2\xc8\x3b\x23\x57\x74\x1f\xfc\xec\x67\x3f\xc3\xc7\x1f\x7f\xec\x76\x91\x0e\x3e\x5e\x5e\xa7\xdc\x36\x1e\xb2\x58\x87\xb4\xab\x88\x5e\x33\x68\x7d\x0d\x86\x3a\x8d\xc5\x25\x90\x14\x75\x32\xd1\x0f\x14\xe6\x4e\xc5\x2c\xcb\x29\x7e\x51\x76\xa8\xfe\xe5\x7c\xcf\x3a\xd3\x82\xe7\xd1\x16\x17\xe7\x83\xb9\xf8\xc1\x42\xad\xde\x86\xd8\xd7\xfa\x56\x12\xd2\x69\x20\xc7\x93\x50\x1e\x4a\x01\xdf\x6e\xb9\x86\xc0\xe7\x0b\x9d\x0b\xad\x34\xad\x8a\xb8\xe3\x94\x5d\x57\x66\x5b\xe6\xaa\x83\x0b\x64\xab\x80\x8d\x6f\xba\xc6\x2d\xc3\x97\xae\xee\x99\xaf\x7c\x37\xaf\xfb\x1e\x75\xe6\xf0\x26\xf3\x79\x53\x7b\xbc\x8c\x6b\x65\x65\x05\xdf\xfd\xee\x77\x05\x8f\xd3\x80\x45\xfb\x5f\x88\x0c\xfd\xfe\x50\x9e\x59\xb9\x97\xbe\xda\x99\xc8\x1b\x90\x2a\x9e\x33\x51\x14\xd7\xca\x05\x0a\x16\xf2\x28\x18\xbc\x99\xff\xe1\x4c\xb9\xe4\xc8\xa4\xcb\x02\x4a\x7f\x16\x0e\x22\x0c\x28\xb1\x8f\xc4\xb0\x00\x3c\x53\xe3\xdc\xf1\x65\x69\x17\xe4\x9c\xd2\x6e\xc6\x8f\xad\x1c\xe8\xc6\x28\x52\xd6\x73\x03\x52\xac\x57\x60\x82\x46\xbf\xa6\xd3\x6e\xa1\xd0\xef\x4c\xd5\xe5\xc5\x07\xe9\x37\x66\x31\xdd\xbd\x7f\xbe\xf3\x8b\xe2\x44\x69\x43\xe7\x4a\xa9\x94\xf2\xad\x19\xe4\xc5\x8b\x17\x45\x10\x04\xf2\x1f\xfe\xe1\x1f\xdc\xcf\x08\xf8\xe9\x8c\xc7\xbb\xd7\x4d\xa1\x09\xd0\x08\x21\x84\x39\xb4\x70\x65\x65\x05\x7f\xfc\xc7\x7f\x5c\x3b\x2d\xe3\x59\x7e\x0c\x22\x12\xdf\xfb\xde\xf7\xe6\x9e\xff\xf8\xc7\x3f\x96\xef\xbf\xff\xbe\x00\x00\x29\xa5\x48\xd3\xb4\x8e\xf7\xb7\x05\x62\x73\xf9\x8b\xfa\x2c\x61\x76\xd4\xc9\xc6\xf7\x07\xc9\xa7\xa7\x46\xd1\xb5\x70\x4a\x7d\x22\x14\x0a\x6d\x49\x8b\xa5\x30\xd6\x96\x3e\xee\x77\xc1\x86\x84\x19\x22\xe5\xb6\x00\xfa\x80\x4e\x73\x00\x2e\x53\x7e\x59\xcf\xe8\x8c\xf9\xce\xe9\x6c\xb8\x58\xb4\xcc\xe8\x33\x0b\xe4\xe4\x20\xce\xee\x0e\xe3\x74\x54\xbc\x8b\xa1\x25\x6d\x55\x68\xe0\xf5\x3c\x2d\xef\x93\x74\x12\xca\xd1\x9d\xa5\xe9\xad\x33\xfb\xdd\xbb\xdd\x4c\xac\x40\x41\x18\x68\xce\x9d\xed\xf5\xbb\xb0\x38\x50\xb9\xd2\x56\x71\xa0\x4f\x96\x82\x6d\x46\x0b\xdf\x03\xc7\x1a\xdb\x26\x9d\x7d\x2e\xa0\x2a\x98\x45\x7e\x5a\x74\x5e\x6e\x1a\xa8\xd1\xa3\x38\xbd\xfb\xb0\x9f\xde\x9b\x86\x72\xec\xf6\x07\xfb\xf6\x45\xbb\xac\x99\x86\x3a\x65\xb7\xb5\xfc\x71\xa7\x8a\xd0\xf2\xde\x8d\xb3\x98\xb7\xf6\x67\xe1\x83\x45\x39\xa7\x85\x76\x24\x45\xdd\x8c\xfa\x42\x95\xa6\xb1\xf9\x50\x4c\xea\x14\x16\x12\xdd\xe1\x6e\xe0\x66\x42\xe7\x49\xb9\x42\xa1\x2c\x8e\x3d\x2d\xad\x39\xf3\xc4\x5d\xd7\xa2\xe2\xa5\x49\x25\xd3\x8e\x1c\x4e\x3b\xe6\xe3\x71\xe1\x6f\xf5\x59\x0b\x00\xd3\xf4\xd1\xbe\x0c\x53\x6c\x1b\xda\x00\x54\x1e\xaa\x84\xf8\x71\x4d\xc9\x55\x40\xc6\xcd\xef\x3e\xf3\xdd\x57\xd5\xe1\x3e\xf7\x31\xdc\x3a\xc0\xd4\xd4\x86\xaa\x76\x89\xf5\xf5\x75\x38\x3b\x48\x9b\xfd\x5a\x50\x1c\x7b\x41\x44\x51\x3c\x92\x1b\x2b\x5f\xcc\x9e\xeb\x8e\xb2\xaf\x8b\x0c\x6b\x2e\x50\x06\x98\xa6\x09\x4d\xb3\x86\x1b\x95\x89\x40\x9e\xb1\x40\x76\x1a\x56\x10\xf3\x4f\xcc\x19\xb8\x51\x08\x18\xc0\x99\xab\x4b\xc7\xd9\x96\x1b\x1d\xc7\xdb\xcc\xa4\x81\xc5\x24\x79\x19\x06\x45\x99\x32\xca\x8a\x4b\x4b\x6b\xb9\xba\x48\x37\xa4\x2c\x49\x6b\xe3\x8e\xa6\x09\x80\x24\x96\xa2\xb1\xbc\xb6\xb4\x33\xbb\x3b\x5e\x0e\xee\x1e\xae\x05\x7a\x3a\x57\x6b\xbe\x5a\x91\x02\xda\x8d\x9b\x26\x90\xfc\x65\x82\x6f\xcc\xc8\xaf\x7e\xf5\xab\xe2\xc5\x17\x5f\x14\x0d\xab\x11\xb5\xd5\x08\xc8\xf9\xad\x64\x71\xa6\x2c\x67\xba\x5e\xde\xb8\x71\x03\x37\x6e\xdc\x10\x00\xe4\xad\x5b\xb7\xf0\xf7\x7f\xff\xf7\xbc\x6e\xb7\x4d\x75\x71\x3a\x78\xc7\x9e\x0b\x5a\x00\xa4\x99\x40\xf2\xc5\xd2\xf4\xb3\xed\xbd\x78\x27\x4e\xa2\x15\x92\x88\x80\x12\x58\xe5\xf9\xdc\x82\x60\xd1\x9b\xc6\xa7\x25\xf9\x18\x42\xb4\x04\x35\xcf\x6b\xae\x51\x96\xc1\xa7\x57\x39\x20\x57\x7a\xb5\x6a\x59\x8f\x9c\x06\x72\x74\x7f\x21\xf9\x74\x26\xd4\xa4\xe8\x53\x4e\x47\x56\x3f\x57\xf4\xc9\x5c\x5f\xe8\xbf\x69\x47\x8d\xbf\x58\x4e\x3e\xff\x62\x29\xf9\x60\x69\x12\x9e\xeb\x66\x62\xa0\xb4\x56\xe1\x01\x6a\xa5\x22\xa0\x21\x3e\x7b\x61\x57\xd1\x29\x06\x9f\x2a\x10\x9d\xce\xc1\x57\x15\xb9\xd9\x78\xbf\x13\xbb\xd0\xdc\x61\x1c\x65\xbb\xf7\x06\xc9\xad\x61\x37\xdd\x57\xf9\x16\x20\x09\x1c\x17\x09\xd6\x3f\xae\xe5\x49\x8f\xb9\x3a\x3e\xcf\xe3\xbd\x74\x57\xc7\xe8\x5d\x2b\x49\x5d\x3a\x57\x00\x54\xfa\xb6\x00\xf9\x1e\x2e\x61\x46\x71\x27\x13\x7d\xa1\x28\xaa\x06\x0b\xba\x8c\x12\x58\xb8\x4f\xb9\xe3\x91\x7b\xaa\x82\xc9\xe7\xac\x6c\x30\x00\x50\x19\x7a\xb7\xbf\x77\x85\x67\xb4\xce\x63\x9c\xcd\x84\x4a\x26\xa1\x1c\xe9\xad\xfe\x51\x20\x4d\x3e\xaf\xcb\x9c\x96\xdc\x92\xe6\xfa\x8c\x05\xfe\x51\x7d\x5a\xbf\x2f\xd4\x69\x83\x3e\x4d\xa9\x2d\x63\xe2\xc4\xa6\xef\x5d\x86\xdd\x44\x84\x6e\x1a\x17\xe0\xb5\x01\x2b\xee\x3b\xd4\xbd\x53\x1b\x2d\xd1\xd7\xa6\xaa\x32\xaa\xee\x1b\xdb\xab\xf7\x2f\x72\x9c\x71\xb5\x6f\x4b\x1c\x8d\xe5\xca\xe2\x6e\x7a\xb9\xff\x48\xbe\x10\xcc\x70\x4e\x1f\x3d\x0f\xc0\x22\xf8\xf9\xf9\x7c\x94\x2b\xed\x3c\x8d\xb7\x0d\xb9\x24\x00\x00\x20\x00\x49\x44\x41\x54\x98\x0b\x3a\x1d\x67\xd6\x39\x31\x17\xfe\x22\x65\x05\xcc\x70\x59\x44\xcc\x97\x55\x5a\x3e\x4c\x49\x73\x40\x4a\xf1\xfc\x45\x3c\x97\x23\xe5\x3e\x15\xbc\xee\xf2\x6d\xf4\xd8\xb4\x90\xd0\xdc\xfb\xda\xcf\x78\x13\x01\x08\x91\x61\x3d\x3e\x54\x2f\x9d\xb8\x9d\xdc\x50\x4a\xc5\xc0\xdc\x99\x46\x66\xdc\x9c\x3f\x7f\x1e\xdf\xf9\xce\x77\xea\xc6\x25\x50\x01\x52\x2b\xd2\x56\x85\xca\xf4\xaf\xbe\xfa\xaa\xf8\xcb\xbf\xfc\x4b\xf1\xfc\xf3\xcf\x03\x28\xf9\xa7\xb2\x77\x1f\x0f\x3d\x7f\x3a\x5e\x2f\xb5\xd7\xd7\x3c\x0d\xe0\xf0\xeb\xb3\x67\xcf\xe2\x2f\xff\xf2\x2f\xc5\x7f\xfc\x8f\xff\xd1\x15\xb2\x6e\x38\xce\x7b\xba\x42\xba\x10\xd4\x2a\x55\x40\xfa\x60\x21\xdd\xdb\xed\xcf\x3e\x4e\x42\x39\x06\x91\xb1\xde\x91\x99\x03\x82\x7e\x77\x18\x12\x63\x40\xdb\xf5\xef\x30\x59\x8a\xb4\x9c\xc6\x74\xc2\x39\x2b\x3b\xcb\x53\xca\x08\x36\x4b\x50\xe4\x53\x50\xc8\x84\x4a\x0e\xe2\xec\xee\xe7\xcb\xd3\xcf\x14\x29\x0e\x3a\x5c\x5e\x36\x17\x9c\xd5\x36\xd6\x34\x11\x4a\x81\x9f\x4e\x42\x39\xfa\xf5\xfa\xd1\x07\xfb\xbd\xf4\x53\x0e\xa4\x9c\x4b\xab\xcd\xcc\xe4\xe9\xbc\x18\x93\x9b\xfa\x9f\x06\x1e\xae\xc3\x8b\x2e\xcf\xee\x2e\xcd\x1a\xe6\xca\x9f\x06\x6a\x74\x6f\x90\x7c\xfc\xf9\xca\xf4\xdf\x0f\xe2\x6c\x9f\xbf\x03\x8a\x55\xb5\x4e\x6b\xab\xf8\xa6\x2b\xd7\xdc\x50\x65\x61\xaf\xcc\xe0\x56\xe8\xab\xa8\x2e\x5d\x6d\x50\x4a\x09\xa1\x48\x74\x32\x8a\x3a\x19\xf5\x85\x44\xc8\xfb\xdf\xb2\x58\x83\x75\x1e\x72\xc2\xb5\x41\x85\xb2\x09\xd2\x39\x9c\xc2\x00\x6d\xc3\xac\x95\x31\x8f\x9b\x25\x63\x9a\x58\x59\x5d\x75\xbe\x28\x9a\x00\x14\x80\x8c\x54\x3a\x0b\xd4\x78\x26\x4a\xc7\xdc\x62\xde\xd3\x10\x34\xf7\x3a\xbf\x79\xf3\x26\xfe\xe5\x5f\xfe\x45\x17\xe5\x0a\xc8\x36\x1f\xb2\xea\x83\x57\x59\x68\x7c\x4c\xb8\xae\x6c\x37\x8e\x97\xc5\xdb\xe9\x9a\xc8\xeb\x08\xcf\x05\xc0\xc2\xc9\xd3\x06\x3c\xf3\xfb\xa6\xba\x9a\x80\x76\x55\x39\x55\xed\x69\x8a\xf7\x95\x2b\xb6\xb6\xb6\xc4\x37\xbf\xf9\x4d\xae\x0d\x8b\xe2\x57\x2f\x7f\x8e\x28\x53\x71\x6f\x98\x9d\x59\xd8\xcb\x9e\x0d\xa7\xf2\x32\x72\x30\xe3\x58\x2c\x1c\x26\xcc\xb4\x47\x32\xbf\x7e\xe8\x62\x01\x79\x6b\x9c\x14\xff\x15\x82\xc2\x9a\x92\x75\x8b\x72\x2b\xd7\x5a\xa8\xe2\x1b\x88\x7b\x98\xeb\x7c\x66\xcc\x8f\x6e\x30\x8b\x0a\x93\x50\xba\xf5\x1c\xa4\x38\xef\xcd\x19\x37\x15\x47\x06\xf0\x95\x54\xec\x71\x14\x24\xea\x4c\xef\x91\x7c\x75\xf5\x8b\x74\x1b\x52\xb9\x07\x31\x9a\x8d\xe9\x8a\xe0\x7b\x91\x26\x65\xe1\xb8\x16\x97\x39\x30\xfd\xd6\x5b\x6f\x89\xb7\xdf\x7e\x5b\x5c\xbc\x78\x11\x61\x18\xea\x86\x70\x90\xa2\xaf\x23\x94\x2b\xd1\xf4\xbd\xf5\xc7\xa7\x21\x8b\x5f\x1f\xd0\x31\x2b\xac\xc2\x30\x14\x83\xc1\x00\x6f\xbf\xfd\xb6\x78\xfb\xed\xb7\x45\x71\x0c\x45\xd3\x7b\x5a\x63\xf8\x6f\xff\xf6\x6f\xb1\xb3\xb3\xe3\x93\x01\x12\xfa\x18\x14\xa2\x04\x84\xf4\xa8\x23\xc7\xb7\x57\xa6\x1f\x3f\x8a\xb3\x3b\x59\xce\x3b\xcd\xb2\xdc\x52\x98\x16\x92\xb3\x24\x31\x0b\x91\x14\x5f\xbc\xac\xa5\xf4\xd6\x2e\x13\xc0\xa6\x69\xdf\x81\x81\x26\x50\xbe\x30\xc3\x06\xbf\x0a\x0a\x90\x93\x50\xee\xef\x0c\x92\x8f\xf7\x16\x66\xfb\xfa\x1d\xf4\x7b\xc1\x0f\xd2\x58\xb1\x96\x35\x86\xf3\x7c\x0e\x5e\x92\x54\xa8\xc9\xce\x20\xf9\xe2\xf6\xca\xf4\xfd\x69\x28\x87\x3e\x14\x9e\xbf\xa6\x2a\xc7\x9f\xbb\x7b\x2a\x4f\xa3\xb3\x91\x67\x4c\xc3\x01\x3e\x8c\xcf\x28\x16\xe7\x8a\x41\x09\x60\x18\xa7\x77\x3e\x5f\x99\x7e\x32\x8c\xd3\x5d\x55\xb4\x1d\x0c\xbc\x78\xac\x6c\x55\xa1\x4e\xa1\xe4\x71\x5e\x05\xbc\xca\x39\xb7\xa9\x22\x57\xd0\xb9\x1a\xb8\x1b\x2c\x81\x15\x4a\x0a\xbb\x99\xe8\x87\x19\xf5\xa9\x58\xee\xc9\xe9\x13\x28\x79\x2b\x50\x7e\x20\x83\x1a\x81\xb9\xf9\x5c\xfd\x3c\x7f\x86\x92\x62\x39\x82\x87\x2f\x7d\x35\x48\xa9\x0f\x0a\x99\xc0\x64\x1a\xca\x71\x5a\xae\x28\xd2\x83\xd4\x5d\x16\x06\x00\x48\x92\x04\x93\xc9\x84\xf7\x55\x1b\x33\x73\x1d\x82\x6d\xb2\x9a\xd4\x59\x20\x9a\xea\xae\x4a\x57\xd5\x1e\x17\xcc\xd4\x95\xc9\xd3\x34\xd1\x55\x53\x7a\x1e\x57\xd5\x1f\xee\x6f\x5b\xcb\x4e\x53\xbc\xaf\x5c\x01\x40\x86\x61\x28\xf4\x79\x5d\xda\x39\x5d\x6b\xc1\x5a\xa8\xc4\x87\x72\x6d\x61\x2f\xbb\x12\x1f\xca\x6b\x22\xc3\xfa\xbc\xbd\x36\x8f\x70\xad\x1f\x26\x99\xa1\x77\xbe\xcc\x9f\x15\xc2\xa7\x5d\x94\x9d\x87\xef\x5a\xab\xc1\x3c\x50\x82\x7a\xee\x53\xc0\x2b\x2f\xf1\x43\xd9\x90\x02\x7b\x58\x0c\x90\xe6\x5b\x0e\xc3\x45\xa9\x7c\xaa\x7d\x0a\xe6\x47\xa1\x76\xc6\xcc\xd3\xcf\xab\x24\xe4\x74\x46\x1e\x9f\xf7\x85\xbd\x92\x09\x0a\xfd\x68\x22\xaf\x2e\xdf\x4b\x5f\x1c\xaf\x04\xbb\x49\x8c\x94\xf9\xbb\xa4\x28\x36\xa6\x03\x80\xb5\xb5\x35\xf9\xe6\x9b\x6f\x8a\xef\x7f\xff\xfb\x75\x63\xc3\xa5\xa3\x36\xe3\xd8\x1d\x1f\x12\x00\xfe\xf0\x0f\xff\x50\x10\x11\xd6\xd6\xd6\x50\x9c\x5c\xad\x9f\x5b\xd7\xae\xe5\x5a\x03\x62\x54\x8f\x35\xc0\xa6\x5d\x9f\x40\x31\xf7\x42\x08\x73\xf8\xe4\xb7\xbf\xfd\x6d\x48\x29\xc5\x3f\xff\xf3\x3f\x63\x77\x77\xb7\xea\x3d\xad\x71\x3a\x1e\x8f\x91\x65\x99\x65\x95\x65\x7c\x30\x25\xa2\xb4\xf0\x29\x4a\x32\x52\x93\x3b\xcb\xc9\xe7\x1b\xa3\xe9\x07\x0b\x89\x58\x1b\x4c\x83\x0d\x01\x12\x06\xbc\x00\x85\x83\x2e\x03\x1e\x05\x29\xf3\x73\x7a\xf4\xc4\x87\x56\x3d\xcd\xf3\x39\x5f\x1f\x18\x8b\x8e\xd9\x55\x1d\xac\x3c\x1f\xbd\x17\xe9\x67\x42\x4e\x1e\xf6\xd3\xdb\xbf\x59\x99\x7e\xac\xcf\xa2\x73\xfe\x5a\x29\xec\x28\x79\x43\x8a\x1c\x78\xea\x45\x1c\xb9\xe0\x27\x4c\xa6\xa1\x1c\x7d\x78\xf2\xf0\x97\x27\xc6\xe1\xb9\xad\x47\xdd\x6b\x9d\x0c\x31\xc0\x56\xd7\x99\x81\x5a\xfa\x8d\x01\x30\xbe\x29\xa5\x69\xca\x79\x27\x94\xc3\xae\x94\x8d\x30\xd6\x97\xb2\x7c\x35\xc7\x47\x34\xf8\x21\x00\xe3\x28\xdb\xbd\xbd\x32\xfd\xe0\xce\x52\xf2\xd9\x51\x47\x8e\x40\x36\x68\x41\x85\x15\xea\x47\x3f\xfa\x91\xfc\xec\xb3\xcf\xf4\x6d\x9b\xb1\xc2\xd3\x79\xd3\x1e\x07\xb8\xf0\x50\xc5\xf8\xe7\x90\x7a\xe1\xdb\xc2\x1b\x23\x3a\x19\x45\xdd\x99\x58\x08\xf5\x19\x45\x28\x19\x98\x0e\xbc\x6f\x81\x79\xd4\x68\x39\xfc\x29\xf3\x0d\x8a\x3d\x26\xf4\x07\xe4\x69\xe6\x97\x7e\x02\xda\x07\x07\xa5\x53\x23\xc8\xe6\x85\x6e\x60\x5a\x60\x26\x54\x92\x04\x72\x5c\x9c\x51\x64\x3e\x58\x4b\x67\x5c\xa0\x19\x75\xfa\x00\x8e\xef\x9a\x33\x13\xdf\xf3\x2f\x0b\x52\xaa\xda\x55\xd5\x3e\x9f\x79\xcf\xd7\x26\xb7\xdc\x2a\x22\x3d\x4e\xbb\xab\x9e\x57\xf5\xa1\x9b\xc6\x6d\x53\x53\xa8\xfc\x36\x8f\x3d\xf6\x98\xb8\x7e\xfd\xba\xe5\xdb\x85\x52\xcb\x8d\x00\x84\x41\x8a\x7e\xef\x51\x76\xae\xff\x28\xfb\x5a\x98\xa8\x6d\x02\x42\x2d\xfd\x4b\xfa\x2b\x19\xb3\x07\xcf\x94\x97\x9c\x41\xe9\x51\xe4\x30\xae\xd2\x0d\xa5\x48\xc1\x7d\x5d\x8a\xf4\x39\x03\x63\x4e\x75\xe6\x3f\x07\xd8\x70\x06\x39\xd7\x36\xbe\xdc\xb4\xb4\x82\x90\xf6\x9a\xe4\x6d\x75\x19\xae\xf5\x7a\x05\x68\xf3\x8c\x59\x7d\xe0\x63\x69\xf5\xd6\xab\x90\xca\x62\x1c\x06\x2c\x44\x8a\x8d\xde\x30\xbb\xb1\x78\x3f\xfd\xe5\xc3\xad\xce\x84\x39\xd3\x87\x60\x34\x10\x45\x91\x58\x5f\x5f\xf7\x8d\x99\x2a\xa1\xed\xbb\xaf\x0a\x86\xce\xc2\x30\x14\x6f\xbc\xf1\x06\x4e\x9d\x3a\xa5\xa7\x83\xf4\x73\x7d\x6d\xa6\x7d\x1c\xd0\x12\x2e\x4c\x83\x68\xf5\x28\x8c\xfb\x89\x88\xa3\x4c\xc4\x61\x46\x91\x9e\x72\x97\xa4\xd2\x54\xa8\x24\x15\xf9\xef\x51\x47\x4e\xf6\x7b\xe9\xe4\x30\xca\x12\x25\x4a\xe5\x0a\x0e\x90\xe1\xca\xd6\xc9\x93\x27\x01\x00\x2f\xbd\xf4\x92\xfc\xf1\x8f\x7f\x2c\xee\xde\xbd\x5b\xf5\xde\xb5\xc1\x75\x42\x85\xb6\x30\x10\x26\xa3\x6e\xba\x7f\x6b\x75\xf2\xd1\xca\x24\xdc\xea\xa6\x62\xd0\xcd\x68\xc0\x81\x09\xa7\x5f\x0d\x3c\xec\x6f\xce\xea\x29\xfe\x2b\x65\xb2\x47\x62\x3b\xb4\x4a\x4e\x5e\x4d\xff\x65\x9c\x82\x04\xe4\x61\x57\xee\x7e\xb1\x94\x7c\xbc\xb3\x98\x7c\xa1\x08\x13\xd8\x16\x06\x5f\x5f\x62\x77\x77\x57\xbe\xf3\xce\x3b\xe8\x76\xbb\xf2\xb5\xd7\x5e\xe3\xbe\x47\xba\x9f\xf5\x79\x76\x29\x2b\x6f\x22\x09\x93\xbd\x85\x74\xe7\xfd\x53\xe3\x9f\x76\x53\xb1\xb2\x3e\xea\x6c\x87\xb2\x00\x2f\xe6\xdd\x39\x91\xb3\x1f\xd6\x3f\xc4\xc1\x8e\xf5\x8e\x0c\xe2\xe9\x21\xca\xd3\xb1\xb1\x66\x8d\x41\x00\xd3\x40\x8e\xbf\x58\x9a\x7e\xf0\xc9\x89\xa3\x0f\x1e\xc5\xe9\xae\x14\x98\x00\x76\x7f\x14\xc0\xd4\x5a\x9c\x02\x00\xfb\xfb\xfb\x5a\x61\x07\x1c\x5e\x89\xea\x50\x4b\x6b\x2e\x70\xf9\x32\x42\x8f\xa7\x95\x80\xf7\x94\x48\x33\x20\x89\x08\x61\x46\x61\x37\xa3\x7e\x28\x29\x36\x8b\xbc\x5c\xed\xd0\x14\xc1\xb4\x27\x55\x30\x5e\xb2\x3d\xe8\x2d\x2d\x51\xa3\xca\x22\x9d\x85\xb6\x19\xc0\x29\x41\x8d\x13\xef\x78\x64\xbb\x41\x23\x74\x49\x48\x53\xa1\x92\x69\x58\x4e\x15\xe9\xc1\xef\x78\xd3\x43\xbf\x37\x0b\x4d\x1f\xef\xcb\x32\x46\x37\x6d\x1d\xc3\x69\x02\x0e\x55\x6d\xf3\x31\x70\x17\x38\x55\xb5\xc3\xd7\x96\x2a\x01\xe1\x82\x91\xaa\x7c\x55\xbf\x55\xef\xe0\x03\x39\x4d\x69\x7c\xef\x55\x35\x10\xc5\x60\x30\xc0\xa9\x53\xa7\xac\x13\x72\x01\x6b\xef\x96\xa8\x7b\x24\x57\xfa\x43\xf9\x54\x74\xa4\x2e\x93\x54\x4b\x79\x11\x7a\x7f\x12\x8e\xc4\xfd\xc0\xde\xc6\x0e\xf3\x80\xdb\xd0\x32\x63\x52\x79\x0d\x25\x3b\xb3\x68\xdc\x24\x2b\x11\x51\xe9\xf0\xea\x8c\x06\x0d\x42\x58\x7a\xe5\xe6\x37\xb5\xf1\x1d\x72\x9d\x14\x6c\x3c\x6b\xad\x43\xb1\xc2\xca\x5a\x55\x31\x5e\x8b\xf1\x6c\x96\x3b\x68\x6b\x8c\x0d\xa4\x4c\xf1\xc5\xf8\x2e\x52\x46\x9d\x44\x5d\x1e\xec\x65\xbf\x33\x3a\x11\xdc\x99\x06\x62\x52\x58\x5d\x5c\xc1\x23\xe2\x38\xc6\x8b\x2f\xbe\x28\x7f\xf4\xa3\x1f\xf1\xe2\xaa\x68\xb4\x89\x47\xba\x74\x23\x7a\xbd\x9e\xb8\x71\xe3\x06\xb6\xb7\xb7\x9b\x00\x4b\x48\x44\x82\x24\xc2\x85\x59\x10\xad\x1d\x86\x4b\x8b\xd3\x70\x6d\xf9\x28\xdc\x5c\x99\x84\x5b\xbd\x99\x38\xd1\xc9\x68\x25\xdf\xc4\x93\x22\x00\x42\x91\x4a\x32\x52\x93\x4c\x60\x9c\x0a\x35\x9e\x84\xf2\xc1\xb0\x97\xde\x1d\xc6\xd9\xce\x41\x37\xdd\xdb\xef\xa5\xc3\x83\x6e\x36\x49\x03\x55\xa5\x25\x9b\xbf\xcd\xcd\x4d\xf1\xcc\x33\xcf\xc8\x77\xdf\x7d\x57\xdc\xb9\x73\xe7\x38\x4a\x85\x5b\x96\x9e\x46\x30\x53\x0b\x52\x60\x72\x7f\x90\x7c\x71\x7b\x79\xfa\xd1\xc2\x34\x58\x3b\x31\xee\x6c\x87\x59\xe1\xef\xa8\x57\xa2\xc1\xde\xc3\x48\x07\x2e\x90\x8d\x20\xd7\xd6\x79\x7b\x94\x58\x40\xbe\x5c\xb1\x56\x44\x80\x8c\xac\xd0\x15\x68\x7a\x53\x00\x26\x1d\xb9\x7f\x6f\x71\xfa\xc9\x6f\x56\x27\x1f\x8d\x73\x0b\x83\x16\xd4\xb5\x16\x86\xa3\xa3\x23\x7c\xf6\xd9\x67\x08\xc3\x10\x41\x10\xc8\x62\x7b\x10\x2d\x1b\x4d\x9f\x28\xa5\x92\xc2\x51\x7f\x02\x20\x02\x61\x9c\x0a\x15\xfd\x66\x65\xf2\xeb\xc5\x49\xb0\x12\x66\x14\xaf\x1c\x75\xb6\x42\x89\x48\x8f\x42\x4e\xe4\x66\xac\x6b\xe5\xc2\x55\x74\x98\x61\x32\x4f\x40\x65\x7a\xa3\x50\x80\x39\xe6\x97\x7b\xea\x70\x4e\x32\x13\x2a\xb9\x3f\x48\x3e\xfe\xd5\xc9\xf1\x7b\xf7\x07\xb3\xcf\x67\x81\x1a\x01\x73\x20\xce\x47\x47\x40\x35\x8d\xf8\x42\x1b\x05\x32\xb7\x68\x3b\x91\x3e\x86\xdf\x24\xcc\xcc\xe0\x3d\x71\xe2\x04\x9e\x78\xe2\x09\xeb\x21\x73\xd2\xd5\x69\x45\xa0\x10\x86\x99\x88\x84\xa2\x88\x13\x8d\xb5\xcc\xcb\x45\xdc\xba\x53\xed\xf2\x58\x3d\xf3\x75\x96\x41\x33\xb6\xe2\xb3\x58\x3c\xb7\x34\x8f\x71\x26\x6f\x36\x21\x82\xfd\xa1\xcb\x01\x02\x99\x06\x72\x32\x0b\xe4\x44\x92\x6d\x69\xe1\x16\x97\x3a\x7f\x19\x34\x7f\xd4\x3a\x81\xc9\x9f\x1f\x4b\x13\x6a\xd9\x0e\xf7\xbb\xeb\xb8\xe3\x82\xae\xe3\xd4\x7d\x1c\xb0\xec\xe6\xaf\xea\x9f\xaa\x74\x75\x75\x7d\x99\xf7\x92\x00\xb0\xb9\xb9\x89\xed\xed\x6d\x00\xe0\x9a\xb4\x5e\x45\x14\x01\x08\x85\x44\x1c\x0f\xe5\x56\x7c\x20\x2f\x07\x33\xb5\x45\x80\xb0\x84\xba\xab\x16\x2a\x87\x8e\x2c\xfc\x52\xb2\x6a\xc6\xea\xcb\x69\x50\x0d\x0e\x50\x30\x71\x66\x77\xe7\x00\xc2\x52\x1a\xf8\x98\x44\xb9\x9f\x4a\x8e\x2d\xca\x93\x66\xf3\xf1\xaa\xe6\x14\x03\xbb\x9d\xde\x0d\x06\xca\x24\xa5\x66\x51\xa6\x65\xf9\x8c\xe3\x70\x29\x7d\x50\xfa\xe5\x68\x5e\x31\x0f\x5a\xf2\xb2\xcb\x2c\x80\x82\x48\x69\x3d\x1e\x65\x57\xfb\xfb\xd9\x2f\xd3\x48\x0c\xb3\xc8\x9c\x5f\x24\xf5\xd2\x68\x00\x88\xa2\x48\x5e\xbe\x7c\x19\x0e\x70\xe1\xe1\x38\x8a\x85\xf5\x6c\x30\x18\xe0\x6b\x5f\xfb\x1a\x9e\x7c\xf2\x49\x17\xb4\x68\x50\xab\x57\x9e\x89\x20\xa3\x68\x69\x1a\xf4\xd7\x47\x9d\x8d\xb5\x71\xe7\xcc\xfa\x61\xe7\xdc\xd2\x24\xfc\x4a\x6f\x26\xce\x45\x99\xd8\x14\x12\x03\x01\xea\x93\x2a\x8f\x33\x00\x90\x2a\x42\xaa\xa0\x12\x00\x69\x46\x18\xce\x0e\xe4\xce\x24\x94\xb7\x0f\xba\xd9\x67\x0f\xfb\xb3\x5b\x0f\x16\x66\xb7\xee\x2f\xcc\x76\xf6\x7b\xe9\x70\x16\x2a\x73\xa2\x3d\x9f\xda\xd1\x6d\x3f\x73\xe6\x8c\x28\x1c\x2e\xc5\x9d\x3b\x77\xf8\xfb\xcc\xbd\xf3\x87\x1f\x7e\x88\x6e\xb7\x2b\xd7\xd6\xd6\xb8\x22\x94\x9a\x76\xe5\x82\xda\x58\x18\xc6\x1d\x39\xbc\xbd\x32\xf9\x75\x7f\x26\x56\x3a\x92\xfa\xcb\x47\xe1\x66\xa0\x28\x2c\x89\xb1\xa0\x53\xc3\x9f\x8b\x68\x94\x34\x67\x2d\x5d\xf6\xd0\x41\x39\x05\xe4\x6e\x42\x5a\x88\x67\x6b\xc0\x95\x40\x28\x09\xe4\xf8\xfe\x60\xf6\xe9\xa7\xab\x93\xf7\x77\x17\x66\x5f\x28\x81\x31\x3c\x3e\x1d\x98\xe7\x31\xa6\x7f\xd2\x34\x15\x37\x6f\xde\xe4\xfb\x9a\xf1\xbe\xd3\xd6\x89\x04\x40\xa2\x94\x9a\x14\x20\x66\x7c\xd4\x91\xc3\x4f\x4e\x1c\x7d\xd8\x4d\xc5\xe0\xf1\x3d\x60\x79\x12\x6e\x76\xb2\x52\xc9\xe7\x61\xde\xe2\xaa\x01\x9d\x3f\xde\xb5\xc4\x5a\x7b\x33\x39\x3d\xa4\x00\xcc\x02\x35\x79\xd0\x9f\xdd\xfa\xe8\xe4\xf8\xdd\xcf\x97\xa7\x9f\x4d\x43\x39\x04\x61\x0c\x60\x0c\x07\xbc\x38\x16\x36\x00\xc0\xcd\x9b\x37\xf1\xe8\xd1\x23\xb7\xd9\x55\xbc\xb7\x8d\xe2\x2c\x01\xff\x54\xd1\xdc\x74\x0f\x6a\x88\x95\x3f\x5b\x5f\x5f\x17\x17\x2f\x5e\x14\xdc\x1a\xe2\x9a\x3a\x95\x52\x42\x48\x0a\x43\x89\x58\x28\x84\x5a\xf3\x03\x4a\x26\xa6\x77\xaf\xb5\x1c\x73\x0d\xb3\x9a\x0f\x9c\x90\x8d\xe6\x66\xe6\xfd\x95\x59\xd3\xcf\x37\xf3\x29\x7d\xb9\x6c\x9c\x69\x04\x81\x05\x84\x58\x65\x05\xa1\x4b\x92\xe9\x4c\xa8\xc9\x4c\xa8\x29\xc8\x26\x58\xcf\xd2\x67\xe3\xa4\x5b\xd1\xaf\x6e\x9c\xdb\xe7\xa2\xe2\x19\xe0\xff\x26\x75\xe5\xe9\x78\x9e\xb7\x49\x63\xf4\x11\x94\xab\x71\xba\x6d\xa9\xb3\x7c\xb4\x05\x3d\x55\xd3\x4d\x6e\x5c\x5b\x0d\xd8\x67\xcd\xe1\x6d\xf4\x95\xdb\x54\x97\xf5\x3e\xa7\x4f\x9f\xc6\xb9\x73\xe7\x2c\xa1\xc4\xa7\x8b\x88\x28\x8a\x26\x72\xa9\x3f\xcc\x9e\x8c\x8e\xe4\x45\x21\x31\xb0\x19\xa7\xd6\x7d\xf2\xa0\xf9\xf1\x9c\x51\xc1\xf8\x7e\x90\x95\xcf\xd2\x24\x89\xd1\x78\x39\xc8\x78\xf6\xc2\xfa\x08\xc6\xd0\xca\x07\xca\x8c\x27\xc6\x10\x89\x8d\x13\x9d\x4e\xb7\xc9\x61\x94\x2e\x93\x84\x2a\x9d\xe3\xb5\x22\x91\x4f\xd1\x96\x79\x4d\x33\x15\x3f\x6b\x46\xcf\xb5\xb3\x8e\xe0\xc5\x52\x31\x8a\x99\xaf\x4f\xc1\x06\xdc\x3e\x08\x3b\x53\x75\x79\xb0\x27\x9f\x1c\x2f\xcb\x3b\x59\x28\xc6\xda\xea\x52\x08\x0d\x43\xd7\x42\x08\xf9\xd4\x53\x4f\x89\x0f\x3e\xf8\xc0\xac\x0c\x61\xc1\x37\x06\x7c\xcf\xcd\xb3\xd5\xd5\x55\xb1\xb9\xb9\x89\xe5\xe5\x65\x7c\xf5\xab\x5f\x35\x9b\x72\xaa\xf2\x80\x4d\x33\x9d\x18\x28\x8a\x16\xa6\x41\x7f\xfd\xb0\xb3\x7e\x7a\xd8\xbd\xf8\xd8\x7e\xf7\x77\x16\xa7\xc1\x95\x28\x13\x67\xc2\x8c\x36\x85\xc2\x12\x01\xb1\x26\x0c\x62\x08\xcd\xe6\x5f\x84\x50\x01\x51\x46\x49\x2f\x11\xc3\xa5\x49\xb8\xbb\x31\xea\xdc\x19\x75\xb3\x0f\xee\x2e\x26\x3f\xfb\x7c\x79\xfa\xf1\xee\xc2\xec\xee\x7e\x2f\x1d\x2a\x01\x3e\x7d\x01\xf6\x7e\xe9\x99\x33\x67\xf4\x34\x87\xde\x89\xd7\x3b\xbe\x3e\xfa\xe8\x23\x79\xee\xdc\x39\xb1\xb6\xb6\x06\xc7\xea\x2c\x01\x68\xeb\x82\x01\x2e\x4a\x60\xbc\xd7\x4f\x77\x3e\x5d\x9b\x7c\xd0\xc9\x44\x3f\x90\x14\x2e\x4e\x83\x0d\xa1\x20\x8c\x0c\x30\x04\xe6\x80\x6d\x4d\x13\xec\x43\x1b\xa0\xcb\xe9\x15\xe5\xf7\xd7\x84\xc1\xed\x93\x86\x1e\xb5\xb3\x79\xe1\xd7\xb2\xd7\x9f\xdd\xfe\x74\x6d\xf2\xfe\x9d\x95\xe9\xbf\x4f\x42\x39\x02\x30\x29\xc0\x45\xc2\xa7\x44\x9c\x7d\x59\xb0\xbf\xbf\x8f\x5b\xb7\x6e\xe9\x46\x4a\x00\xe2\xfd\xf7\xdf\xc7\xa5\x4b\x97\x64\xb1\x2f\x8f\x06\x71\x82\x4f\x17\x11\xd1\x04\x40\x08\x42\x04\x60\xbc\xdf\x4b\x77\x3e\x3e\x39\xfe\x85\x24\x85\xf3\x0f\xe3\x74\x6d\xdc\xd9\x8a\x32\xf4\x8d\x05\x4a\x8f\x78\x23\x27\xb9\xe5\x32\xbf\xe7\xdb\xeb\x71\x06\x62\xcf\x30\xf0\xee\x2d\x55\x1c\x05\x20\x09\xd5\x78\xaf\x3f\xbb\xfd\xd1\xc9\xf1\xbf\x7e\x72\x62\x72\x73\x1c\xc9\x3d\x09\x35\x26\x10\x07\x2c\xb5\x16\xa8\x9b\x37\x6f\x62\x38\x1c\x56\xc9\xb4\xaa\x71\xe3\x86\x39\x5e\xdb\x74\x3a\x74\x9d\x60\x6a\xaa\x50\x9b\xc7\xf9\xbe\x2e\x85\xc5\x85\xc2\x40\x52\x44\x2a\x07\x4e\x65\xe7\xf2\xbb\x82\xdc\x1c\xb0\xc2\x19\xa2\x65\x12\x63\xdc\x55\xf1\x69\x27\xa7\x3c\x4e\xc6\xa5\x70\xe0\xc3\x81\x5d\xab\x12\xf4\x98\xca\x75\xb9\x02\x69\x12\xa8\xf1\x2c\x77\xd8\x92\x80\x7f\x37\x45\xbd\x0f\xc3\xc3\x87\x0f\xe5\xc3\x87\x0f\x79\x5f\xb5\x41\x9c\x70\xd2\xfa\xa6\x39\xdc\xd0\xc6\x5a\x51\xa5\x31\x36\x4d\xb3\xf8\xea\x11\x15\x71\xad\x08\xb0\x22\xae\x8d\xd5\xa5\x6a\x4a\xa9\xae\x3e\x1e\xaa\xe2\xab\x40\xa3\xfb\x6c\x2e\xef\xda\xda\x9a\x58\x59\x59\x31\xd6\x45\x87\xee\xf3\xfd\x5b\xa4\x8a\x7b\x07\xd9\x46\x3c\x92\x57\x82\x99\xda\x24\xe8\x55\x75\xcc\xa2\xa8\x18\x7d\x12\xcc\x6e\x98\x7c\x53\x47\xd7\xb9\xcb\xa2\x6e\xa3\xa5\x6a\xe3\xb2\x0d\x8c\x0c\xe1\x6b\x60\x61\xb8\x7c\xb9\x91\x17\x28\xb7\x4c\xea\xc3\xde\xb4\x30\x24\x07\x30\x95\x16\x4b\x0b\xa1\x14\x1b\x56\x15\x77\x7c\x5a\x57\x33\x5e\xb2\x05\xac\x0e\x54\xa4\x87\xd6\x04\x0b\xc1\x64\x7c\x64\xe6\xb4\x6a\x06\xd4\x58\x14\x91\x1e\xbb\x76\x9e\x20\xc5\x66\xef\x20\xbb\x12\x8f\xc2\x9b\x69\x8c\xfd\x4c\x94\x56\x17\x94\xd6\x01\x19\x04\x81\x78\xf5\xd5\x57\xf1\xab\x5f\xfd\x4a\xa6\x69\x5a\x45\x47\x6d\x2d\x83\x62\x6b\x6b\x0b\x2f\xbf\xfc\x32\xa7\x23\x20\xa7\x09\x03\x58\x00\x84\xdd\x94\xe2\x95\x71\x67\xfd\xcc\xa3\xee\x85\xb3\x0f\xbb\x5f\x5b\x1b\x77\x9e\xe9\xcd\xc4\xe5\x40\x8a\x2d\x81\x7c\xcf\x13\x0d\x2a\xf5\xa7\xb3\x36\xda\xb4\xc0\xa3\x2a\x2a\xa3\x88\x24\xd6\x43\x45\xeb\x51\x46\x17\xba\xa9\xb8\x3c\x98\x86\x57\x36\x46\xd1\x7b\x77\x96\xa6\xff\xf6\xc9\x89\xa3\x8f\xf6\x16\xd2\xbb\x93\x8e\x9c\x80\x5b\x6e\x72\x01\x1d\x12\x91\x3c\x7b\xf6\x2c\x84\x10\xf2\x27\x3f\xf9\x89\x28\x56\x0f\x79\x95\x91\x9d\x9d\x1d\xac\xaf\xaf\xcb\xc2\xd1\xd7\xb5\xbc\x68\x0b\xc3\xa4\x78\xdf\x28\xcd\x97\xd7\xfe\x46\x48\x8a\x42\x49\xd1\xd9\x87\xdd\x70\x21\x09\xd6\x02\x05\x61\xa6\xf2\x8b\x0a\x4a\x70\xca\x6d\x8b\x9a\x4e\x94\x19\x13\xee\x2e\xbb\x25\x28\x61\x20\xcf\xd0\x4c\x51\x7a\x11\x3f\x13\x2a\xd9\xeb\xcf\x6e\xff\xfb\x89\xa3\xf7\x6e\xad\x4c\x7e\x75\xd0\xcd\xf6\x50\x4c\x11\x69\x6b\x11\x73\x34\x36\xa0\x45\x8f\xcd\x9d\x9d\x1d\xfc\xf2\x97\xbf\xb4\xf8\xd9\x0f\x7e\xf0\x03\x3c\xfe\xf8\xe3\xa2\x00\x2e\x32\xaf\x8e\x52\xe4\x3c\x22\x01\xe0\xfa\xc1\x85\x4a\x40\xdc\x5f\x98\x7d\x9e\x0a\xc8\x59\xa0\xd2\xed\x3d\x95\x9e\x18\x77\xb6\xba\xa9\x18\x08\xa5\x2d\xb9\x25\x3c\x23\x36\x7e\x95\x2a\x41\x4d\x3e\x5d\x0c\x43\xff\x46\x21\xd0\xa0\x46\x8f\xc3\x52\x63\x40\x46\x48\x27\x1d\x39\x7a\xb0\x90\xdc\xfe\xf5\x89\xc9\x7b\x1f\xaf\x8f\x7f\x39\x8e\xe4\x9e\x82\x1a\x11\x91\xb6\xb4\xe8\xbf\xd4\x07\xe4\x94\x52\xb8\x7d\xfb\xb6\x4c\x92\xc4\x1a\x07\xc5\xaf\x65\x95\x61\xa1\x4a\x31\x9d\x4b\xc3\x81\x4b\x9d\xc9\xbc\x4e\x13\x9e\x7b\xce\x7d\x50\x7c\xbb\x39\x0a\x49\x61\xa0\x28\x12\xa0\x90\xaf\x1a\x30\x7e\x54\xcc\x77\x05\x80\xcd\xb0\x2d\xe7\x3f\x14\x4c\x9a\xcc\xd2\x49\x82\xe6\xe5\x5c\x77\x75\xd0\x0f\x00\xd7\x74\xe8\x06\x3e\x3f\x5e\xe6\x61\x1d\x43\x2a\x49\x03\x35\x49\xf3\x93\x31\xe7\x96\x41\xf3\x76\x03\xc0\x47\x1f\x7d\x84\x8f\x3e\xfa\xc8\x27\xa0\x7d\xc1\xc7\x24\xdb\x30\xc8\xaa\xd0\x64\x8d\xa8\x63\xc0\x95\x4c\xaa\x22\xbe\x0a\xec\xd6\x01\x95\x2a\xc0\x54\x45\xe8\xae\x00\xe0\x6d\x75\x7f\x5d\x30\x54\x15\xcf\xeb\xac\x7b\x07\xb7\x2e\x93\xe7\xf2\xe5\xcb\xb8\x78\xf1\xa2\x25\xd8\x0a\x2d\x33\x04\x10\x29\xa5\xa2\x70\xa6\xfa\xf1\x50\x6e\x47\x47\xea\x82\xc8\xb0\x64\x03\x16\xcd\x44\xad\x9f\x1c\xb4\xe8\x7b\x3e\xa6\x38\xea\x20\xcc\x8d\x35\xed\x6d\xa8\x1d\xd0\xa1\x88\x6d\x09\xce\x26\x99\x4c\x31\x64\x7e\xad\x5d\x4b\x2d\x64\xa4\xcb\x2c\xb4\x3e\x5d\x56\x01\x16\xf2\x86\x68\xed\x58\x95\xf2\x04\xe5\x38\x2d\x38\xa6\xf3\x92\x30\xe5\xce\x8f\x57\xe6\x6c\xc8\xbb\x89\xb4\x62\x52\x02\x3e\x53\x26\x03\x3a\xc6\x2f\x98\x14\x20\x29\xea\x4c\xd4\xa5\x85\xfd\xec\xdc\x64\x49\xdc\xce\x42\x8c\x51\x6a\xbe\x7a\x75\x91\xa1\x8d\x8d\x8d\x0d\xdc\xbb\x77\x0f\x59\x96\xf1\x06\x55\xf1\x45\xf7\x39\x00\x60\x61\x61\x41\xaf\xd8\x81\xde\x8f\x85\x59\xa1\x73\x87\x6d\x85\xa8\x9b\x52\xbc\x35\xec\x6e\x3d\x71\xbf\xff\xcc\xe9\x61\xf4\xea\x42\x12\x5c\x0b\x33\xda\x12\xc8\x17\x31\x98\x97\x63\x7d\x61\x59\xdc\xc8\xb2\x23\xd8\xdd\x6c\x9e\x51\xd4\x91\xb4\x15\x24\x6a\xbd\x9b\x76\x2e\x2d\x4e\x83\x2b\x27\xc6\x9d\x1f\x7e\xb0\x31\xfe\xff\x6e\xad\x4e\x6e\x1f\x45\x72\x54\xb4\x4b\xd3\x92\x39\xc9\x79\x6b\x6b\x0b\x2f\xbc\xf0\x82\xfc\xc1\x0f\x7e\x20\xf6\xf6\xf6\xf8\x2b\x9a\xf1\xf3\xde\x7b\xef\x61\x30\x18\xe0\xe9\xa7\x9f\x06\xdb\x3c\x4f\xf7\x69\x82\x7c\xca\x74\xc2\xc6\x45\x38\x0b\x95\xb8\xbb\x34\xfd\x4c\x00\x21\xa0\xf0\xd8\x7e\x7c\x79\x71\x1a\xac\x09\x50\x58\xbe\x32\xb7\xc4\x73\x7b\x8a\xfe\xd6\x0c\x70\x83\x83\x39\xab\xdb\x4a\xa9\xa0\xc1\xad\xe9\x3f\xa5\xa7\x45\x6e\x7f\x72\xe2\xe8\xdd\x4f\xd6\x8f\xde\x7f\xd8\x4b\xef\x2a\xc2\x58\x29\x35\x66\x02\xdb\x80\x17\x30\x0b\x03\x11\xc9\xc3\xc3\x43\x59\x9c\x77\x35\x47\x07\xf7\xef\xdf\xc7\xd6\xd6\x16\xb7\xba\x48\xe4\x96\x3e\xd3\x2f\x28\x01\x5d\x6e\xa9\x15\x10\x0f\xfb\xb3\x7b\xa9\x90\x72\xda\x91\x93\xf3\x7b\xf1\xe8\xe4\xa8\x73\x6e\x21\x09\x56\x42\x49\x51\x39\x4d\xc6\xc7\x92\xb3\xe2\x08\x36\x88\xd3\xdb\xfc\x1b\x59\x59\x28\x06\x2a\xef\x2b\x99\x06\x2a\x39\xe8\x66\xfb\xf7\x16\x93\x4f\x3e\x5d\x3b\xfa\xe0\xd6\xca\xf4\xd7\x93\x48\xee\x01\x18\x11\x48\x4f\x11\x99\xbe\x28\xa6\xff\xcc\x34\x23\x73\x97\xc0\x3f\xfd\xd3\x3f\xe1\xf0\xf0\xd0\x37\x56\xea\xf8\x7d\x93\xe2\x9c\x2b\x16\x2c\x82\x51\x82\x37\xb1\x62\xbf\xe4\x69\x88\x5a\x5f\x5f\xa7\xf3\xe7\xcf\x13\xe5\x3b\xe4\x52\x11\x1f\x12\x51\x07\x40\x57\xff\xad\x1c\x85\x27\x4f\x0f\xbb\x4f\xad\x1c\x85\xdb\xa1\x12\x31\xe7\x9b\x26\x68\x1e\x58\x74\x82\x19\x78\xae\xa9\x5b\xf3\x4e\x62\xf9\x55\x99\xce\x07\x5a\x7c\x4b\xa9\xdd\x60\xf1\x7f\x3e\x08\x8a\xeb\x24\x54\xc3\xdd\x41\xf2\xeb\xbb\x4b\xc9\xc7\x47\x5d\xb9\x8f\xc2\x94\x88\x02\x85\x12\xd1\x8c\xca\xcd\xe7\xd4\xed\xdb\xb7\xd5\xbd\x7b\xf7\x38\x6b\xad\xeb\x6f\xde\x0b\x40\xde\x8f\xbe\xf4\xbe\xf8\xa6\x6b\x5f\x9d\xbe\x67\xfc\x7b\xf3\x78\xfe\xed\xdd\xb2\x78\x5a\x7d\xad\x09\xb0\xae\x0e\x5e\x1e\x93\xc6\x00\xfc\xc4\xab\xd8\x9f\x6e\x8f\x6e\x6b\xd5\xbb\xb5\x7d\x3f\xb7\x0d\x2e\x68\xa9\xaa\x43\x9d\x3d\x7b\x96\x4e\x9d\x3a\x45\x4c\x38\x05\x28\x57\x12\x75\x09\xd4\x8b\x0f\xe5\xda\xca\xbd\xf4\xeb\xf1\x28\xbb\x1e\x48\xb5\x5c\x0a\x5e\x5d\x94\x06\x0a\x34\x07\xd8\xcd\xb5\xd1\xb2\x08\x3c\xbf\x8f\xa6\xb5\x16\xae\x81\x38\x07\x25\x25\xb0\x20\x33\xdd\x02\x18\x29\x5f\x08\xc7\xf9\xb1\xc2\x81\x93\x06\x45\x66\x73\x2b\x03\x66\x8a\x77\xd1\x16\x21\x9d\x16\x04\xeb\x5c\xa3\x82\x71\x82\xf7\x43\x61\x61\xe1\x60\xa5\xb4\x06\xe9\x77\x2d\x44\x10\xd3\xaa\x4b\xc0\x02\xd3\x3f\x45\x33\x8c\x55\xa8\xa8\x29\xca\x42\xdc\x3b\x5a\x0e\x6e\xcf\xba\x34\x44\xce\x78\x33\x22\xca\x8a\x16\x19\x94\x72\xe9\xd2\x25\xfa\xf0\xc3\x0f\x55\x92\x24\x9c\x26\x34\xed\xf0\xb1\xe7\xf2\x48\x00\x50\x71\x1c\x8b\x67\x9e\x79\x06\x4f\x3f\xfd\xb4\xb5\x73\x78\x21\xb8\x73\xbe\xa8\xd0\x8d\x53\xb1\xb0\xbd\xd7\x3b\x77\xe5\xde\xc2\x1b\x8f\xed\x77\xff\x70\x30\x0d\x9e\x0f\x95\xd8\x84\xa2\x50\x0b\x58\x07\x6e\x9a\xfe\xd4\xef\x58\x92\xa2\x67\xda\xc4\xea\x67\x05\x01\x0a\x84\xc4\x62\x27\x13\x5b\xfd\x59\xf0\xd8\xea\x51\x27\x16\x0a\x7b\x7b\xfd\xd9\x28\x13\x90\xc5\x54\xa0\x2a\xbe\x35\x29\xa5\x14\x11\x61\x61\x61\x01\x9b\x9b\x9b\xea\xd6\xad\x5b\x98\xcd\x66\xde\x31\xbd\xb1\xb1\x41\x27\x4e\x9c\x50\x5a\x48\xb3\x69\x31\x50\x1e\x04\x6b\xb1\x00\x40\x29\x29\x8c\x23\x39\x39\x8c\xb2\x11\x88\x64\x37\x13\xbd\x6e\x26\x62\x52\x08\x0a\x4a\x62\xe0\x45\x83\x52\x4d\x1f\xe5\x76\xf4\x25\xbe\x2e\x69\x96\x38\x2d\x9a\xfb\x92\x4e\x15\x94\x9c\x86\xf2\x70\x67\x71\xf6\xe9\xaf\x4e\x1e\xfd\xdb\x27\xeb\x93\x0f\x1e\xf5\xd2\x7b\x52\x60\x04\x40\x5b\x19\x8e\x8a\x3f\xcd\xe3\x33\xe4\xc0\x25\x2b\xfa\x46\xdd\xbc\x79\x53\xfd\xeb\xbf\xfe\xab\xe6\x45\x9c\x4e\xd4\xc7\x1f\x7f\xac\x36\x37\x37\x69\x61\x61\x81\xf4\x5e\x41\x79\xb6\x62\x94\x95\xd7\x86\x96\x0a\xa5\xfe\xff\xa7\xed\x4d\x7f\xec\x38\xce\xf3\xd1\xe7\xad\xee\xd3\xe7\xcc\x99\xc3\xd9\x38\xa4\x28\x89\xa2\x28\x92\xa2\x64\x45\x92\x25\x2b\x92\x62\xd9\x96\xbc\xc4\xbe\xf6\x55\x1c\x03\x71\x2e\x82\x7c\x08\x60\xe4\xff\x0a\x90\x7c\x48\x02\x03\x06\x02\x18\x71\xbc\xc4\xca\x35\xe4\xab\x9f\x15\x7a\x91\x45\x49\x14\xa3\x85\x5a\x48\x4a\x43\x0e\x39\x1c\xce\x9c\xb5\x4f\x77\xd5\xfd\xd0\x5d\x55\x6f\x55\x57\x77\x9f\xa1\x9d\x02\x66\x4e\x2f\xb5\x77\xd5\xfb\x3e\xef\x53\x9b\x9a\xc5\x72\xbe\xd7\xcb\xf6\x47\xdd\x7c\x7f\x2e\x30\x8d\x80\x28\x96\x22\x11\x8a\x62\x03\x63\xf9\xdc\x33\xc6\x22\x99\x36\x53\xf6\x4d\xcd\x95\x9a\x86\x5b\xb6\x8f\x5c\x20\x9d\x76\xf2\xe1\xf6\x60\x7e\xe5\x83\xc3\xd3\xf3\xff\x73\x74\xfc\xe6\xd5\xd5\xd9\xa5\x34\x96\xb7\x89\x68\x08\x60\x04\x60\xa4\x94\x1a\x11\xd1\x04\xc0\x44\x29\x35\x03\x30\x2b\x99\x28\xbe\xa2\x48\xee\xef\xef\xab\x8b\x17\x2f\xea\x36\xe2\xf7\x0d\xde\x7f\xb8\x7c\xf7\xf5\x8c\x0a\x5c\x2b\xc0\x65\x5c\x9a\xe8\xf9\x26\x4b\x96\x3f\xaf\xb0\x2d\xe5\x07\xd2\x8d\x46\xa0\xd8\x80\xce\x0c\x15\x99\x9c\x31\x55\xc5\x57\x11\x71\x99\xc9\x25\x47\x2d\x2e\x51\x6e\xe7\x36\x45\x25\x1e\x36\x30\x91\x90\xab\x4a\xcf\x79\x8c\x11\x94\x02\x64\xb1\xf9\x5c\x9a\x09\xe5\xa0\xee\x70\x0c\x41\xd7\xc4\x34\xf0\x7b\xdf\xfa\x0f\x0d\x2f\xb5\x21\xd5\x45\x59\x8e\xb6\x67\x3c\xbd\xba\xeb\x10\x5b\x12\xba\xd6\xf7\x8b\x94\xd9\x8f\xcf\x7f\xc6\x9f\x1f\x34\x3f\x7e\xda\x75\x69\x34\xe5\x47\x08\x21\x7c\x86\x51\xb0\xbf\x62\xa7\x5c\xa5\x92\xde\x50\x1e\x4d\x26\xf2\x8c\xc8\xb1\x62\x57\xc9\x30\x4b\xd9\x68\x6a\xfd\xcb\x84\x90\xb2\x7d\xd7\x61\x1f\x19\x60\xd7\x4a\x5b\xcb\x33\x2a\xa5\x13\xdf\xa4\xce\x32\x96\xae\x75\x0a\x55\xea\xfd\x92\x65\x51\x44\x76\x88\x46\xe7\xc5\x18\x05\xca\x60\x05\xc0\x03\x3e\x15\x67\xcb\x63\x7c\x94\xf9\x34\xfb\x75\xf0\x1d\x73\x2b\x73\x35\x5c\x10\x62\xad\x9c\xaa\xa0\xb0\xd9\xb5\x7d\x9c\x97\x91\x08\xa0\x5c\xad\x24\x13\x75\xaa\xb7\x9f\x1f\x9b\xf5\x69\x2b\xeb\x92\x6b\xe9\x16\xf3\x0f\x42\xec\xb3\xdf\x46\x42\xed\xcf\x84\x13\x42\x88\x67\x9f\x7d\x16\x67\xcf\x9e\x15\xb0\x79\x10\x54\x6c\x40\x58\x1e\xb0\x89\xa4\x9b\x53\xff\xa1\x6b\xfd\x53\x67\xb7\xfb\x2f\x1e\x1e\xc5\x5f\x4d\x72\x71\x4a\x80\x12\x6b\xcc\x71\xe6\x58\x83\x16\x57\x8e\xf9\x6a\x1a\x26\x2c\xcc\x90\xb7\xae\x3c\x33\x99\xbb\x50\x6c\xbd\x6e\x86\xb3\x87\x47\xf1\xda\x63\xd9\xe0\x68\x2f\x8b\xfe\xf5\x37\xf7\xed\x5d\x4c\x23\x0c\x4b\x3f\x82\xad\x7e\xc9\x88\x48\x1e\x3e\x7c\x58\x7c\xe7\x3b\xdf\x91\xdf\xff\xfe\xf7\x45\x9e\xe7\x95\x3e\xf4\xdb\xdf\xfe\x56\x4a\x29\xc5\xd3\x4f\x3f\xed\xb0\x2e\x8c\x5d\xf0\xfb\x86\x00\x20\xe6\xb1\xc2\xd6\x4a\x2a\x47\x89\x9c\x0e\xbb\xf9\xee\x99\xed\xa5\x27\x8e\x0c\x3b\x27\x3a\x92\x7a\x76\x80\x03\x4e\x19\xec\xe2\x32\xae\x1d\x60\xea\xc8\x28\x0b\x66\xe6\x28\xd6\x4f\x24\x80\x71\x92\xef\x5c\x59\x9f\xbd\xf3\xee\xe6\xf8\xc2\xa7\x2b\xe9\x07\xd3\x8e\xdc\x95\x50\x43\x02\x0d\x19\xdb\x32\x66\x93\x8b\x2b\x6c\x4b\x9e\xe7\x52\x4a\x53\x15\xbe\xbc\x04\x00\xfc\xf8\xc7\x3f\x96\x2f\xbe\xf8\x22\xee\xbd\xf7\x5e\xad\x1b\x33\xd6\x26\x74\xbd\x80\xb5\x15\x00\x10\x0a\xc0\x24\x96\xf2\xf2\xda\x2c\xdd\xe9\x67\xbb\xd7\x0e\x25\x5b\xf7\xdf\xea\x9d\x3c\xb6\x9f\x9c\x3a\x34\x8d\x36\x92\x4c\x0c\x04\xc1\x02\x16\xe7\xe3\x17\xff\xec\x1b\xd7\xee\xca\x49\xc9\x49\x47\xee\xdd\xea\x67\x5b\x5b\x87\xd2\x0f\x3f\x59\x9d\x7d\x7c\x7d\x90\x6e\x8d\x13\x79\x1b\x64\x58\x96\xa1\x52\xc5\x30\x11\x15\x73\x71\x2a\xcb\xc2\x75\x7f\x51\x4a\xc9\x3c\xcf\xf1\xfd\xef\x7f\x1f\xac\x42\xea\x18\xca\x26\x7d\x19\x62\xb9\x8d\xab\x5b\x55\xb4\x88\x0b\x29\x47\xe3\x3c\x94\x6d\xf6\x73\x21\x10\x62\x89\x38\x96\x94\x50\x81\x18\x0d\xf2\xd3\xce\x82\x92\x52\x9c\x5b\xd9\xed\x88\x45\xdb\x4c\x5d\xcb\x83\x58\xe7\xe6\xf1\x85\xf6\x79\x50\xe5\x3f\x63\x99\x34\x14\x98\xcb\xcc\x72\x39\xf4\x34\x67\xc0\xc5\xfb\x0b\xd5\x11\xbc\xe7\xc1\x06\x8e\x30\x68\x58\x04\x50\xd6\xc5\xd3\xe6\x9a\xe2\xf6\x5d\x08\x18\x84\x1a\x57\x1d\xd8\x69\x8a\xcf\x0f\x5b\x57\x07\x6d\xc3\x50\x4d\x43\x42\x75\xe1\x10\x78\xb6\x68\x5d\xca\xaf\x7c\xe5\x2b\xe2\xf4\xe9\xd3\x42\x29\xa5\x27\xa4\xeb\x5f\x43\x89\x47\x73\xf4\xfb\xb7\xf3\x07\x3b\x33\x79\x9c\x14\x7a\x44\x16\x64\x6b\xcb\x91\x33\x10\x5a\x69\x01\x60\xca\xba\x7c\xe6\xdc\xdb\xc7\xde\x05\x6b\xfc\xbe\x55\x60\xbd\x9a\x85\x90\xc6\x42\x83\xb9\x76\x59\x0c\x0e\x92\xdc\xce\x48\xfa\x19\xe0\x76\x34\xed\x4a\x70\xa2\x98\xf2\x35\x87\xe7\xb1\x72\x5a\x45\x4c\x81\xbe\x69\x01\x99\x61\x90\xc0\xce\x2a\x02\xf1\xa8\x6c\xc2\xcc\xda\xd6\x75\xd1\x49\xe5\x89\xa5\x7d\x79\xdf\x68\x5d\xbd\x97\x75\x31\x2c\x15\x87\x56\xce\x66\xb8\xd0\x9b\x54\x5f\x07\x5e\x82\xed\xe2\xeb\x5f\xff\x3a\xee\xbf\xff\x7e\x6e\x70\x98\x49\xb8\x54\x6e\x42\xd8\x91\xe8\x3f\xf6\xe9\xe0\xec\x43\xd7\xfa\x7f\xbb\x36\xe9\x3c\x1f\x4b\x3a\x46\xba\x3d\xb2\x0a\xd0\x20\x97\x5c\xbd\x53\xf9\xac\x1e\x81\x65\x3c\x59\xb5\x6e\x01\xaa\x06\xbe\x04\x12\xb1\xa4\x63\x2b\x53\xfa\xbf\x3f\x73\x6d\x79\x10\x29\xfc\xd3\x6f\x8e\xef\x5f\x98\x24\x72\x0f\xc5\xb0\x08\x60\x01\x47\x0c\x20\x1b\x0c\x06\xf8\xde\xf7\xbe\x87\x7f\xf8\x87\x7f\xf0\xeb\xc7\xcb\x9f\xb3\x11\xa7\x1e\x76\xf2\xc1\x8b\xf9\x3e\x52\x00\xb7\x97\x32\x79\xe1\xd8\x70\x72\xa3\x9f\xee\x3c\x78\xb3\x7f\xf6\xde\xdd\xe4\xe1\x95\x59\xbc\x19\xe7\x94\x14\x65\x2d\x87\x3f\x34\x28\xb5\xa9\x99\x6a\xe3\x78\x85\xdb\xed\xba\x39\x4b\x00\xd3\x8e\xdc\xbb\x39\x98\x5f\xb9\xb4\x31\xb9\xf0\xd1\xfa\xf4\xd2\xed\xa5\x6c\xdb\xb0\x2c\x20\xcd\xb6\x0c\x51\x0c\x8d\xe8\x09\xb4\xc1\x25\xd0\xbf\xfe\xf5\xaf\x71\xfe\xfc\xf9\x85\x65\xaf\x57\x2f\x69\xe0\x3d\xbf\x2e\xb6\xd3\x07\xb2\x61\x37\x9f\x8e\x0f\x4f\xf6\xaf\xad\xa4\x5b\x1b\xa3\xf8\xbd\x23\xa3\xe4\xe8\xd1\xbd\xe4\x9e\xc3\xe3\xf8\x9e\xe5\x34\x5a\x89\x25\xf5\x84\x22\x41\x0a\x42\xcf\x51\xd3\x85\x56\x04\x28\x52\x32\x8f\x90\x4e\x62\x39\x1e\x76\xf3\xdd\xdd\x5e\x76\xfd\xda\xa1\xf4\x93\xeb\x87\xd2\xad\xdd\xa5\xf9\xce\x2c\x56\xb7\xcb\xfd\x6a\xf4\x70\x10\x67\x9d\xf8\xfc\x16\x3d\x5c\xe6\xe8\xbd\x34\x4d\xf1\x4f\xff\xf4\x4f\x4d\x3a\x27\x24\xef\xdb\x5c\xc5\x6f\xdb\x06\x74\x6d\x8a\x8f\x67\xc2\x51\x00\x1e\xed\x65\xaf\x15\x84\x90\x22\x8e\x24\x25\x02\x10\xce\x86\x3a\x3e\x62\xae\x81\x11\x9c\x3f\x32\xfe\x98\xb1\x6a\x56\x54\x70\x70\xc2\xad\x36\x68\x85\x01\x66\xd5\x55\x73\x11\x02\x32\xfa\x79\x1e\x60\x5c\x9c\x3c\xb6\x1f\x8e\xd6\x24\xf4\x16\xfd\xa8\x6d\xf1\x84\xe2\xab\x63\x15\x9a\x58\x9a\xa6\xbc\x2d\x02\x2c\xea\xd2\xe5\xef\x9a\xd8\x16\x3f\xee\x26\x40\xd8\xf6\x7e\x91\xfc\x85\x98\x1a\x3f\x6d\x9e\xc7\x10\x13\x53\xd9\x78\xae\x33\x95\x83\xde\x48\x9e\x15\x19\xd6\xb4\x3f\x97\x19\xd4\xa0\xc2\x36\x5c\x73\x1a\x7a\x08\xbf\xd8\x80\x4e\x18\xdb\x90\xb5\xd2\xe3\x98\x87\x69\x37\x87\x4e\x27\x2f\x38\x47\xf9\xa1\xe4\xd8\xa4\xbe\x0a\x8e\xf2\x7a\x52\xa9\x24\xdd\x3c\x72\x76\x89\x0b\x69\x3b\xb9\xd2\xae\x72\x80\x61\x51\x2c\x10\x61\x39\x37\xd7\x76\xe8\xcb\x65\x6b\x6d\x8f\xd6\x20\x47\x64\xb4\x99\x8c\xe4\xc9\xce\x44\x6d\xce\xfa\x6a\x47\x45\x06\x60\x1a\x65\x5a\xe4\x87\xf0\xdd\xef\x7e\x17\x3f\xfa\xd1\x8f\xc4\xf6\xf6\x76\xa5\x9f\xa3\xa6\xcd\xbd\xf8\xe2\x8b\xe2\xee\xbb\xef\xd6\xb7\x46\x49\x2b\xa5\x12\xcd\xb4\x08\x85\xde\x99\xed\xfe\xf1\x33\xd7\x97\xfe\x9f\xb5\x49\xfc\xe5\x58\xe2\xa8\x4e\x5b\x17\x57\xcb\x36\x53\x0e\xce\xce\xf9\x5f\x4a\x33\x57\x14\x02\x7d\x2e\xae\xb5\xa0\xd4\xbe\x10\x0a\xfd\x7e\x2a\x9e\x7f\xe0\xc6\xd2\x74\x14\xcb\x7f\xbd\x78\xd7\xe8\xe2\x28\xc9\xf7\x4a\x39\xa6\xcb\xa7\x27\x95\x42\x08\x21\xbf\xf7\xbd\xef\x89\x7f\xf9\x97\x7f\x41\x9a\xa6\x4e\xff\x7c\xfd\xf5\xd7\x31\x9f\xcf\xe5\x73\xcf\x3d\xc7\xfb\x5a\xc6\xfc\x38\x0c\x03\xf3\x23\x01\x64\xb3\x48\x65\x57\xd7\x66\xe9\xad\xe5\xf9\xee\x91\xf5\xe4\xe3\x13\xbb\xbd\x93\x77\xdf\x4e\x4e\xae\x4e\xe3\xcd\x24\x17\x3d\xa1\x8a\xf9\x2f\x76\x18\xa4\x41\x5e\x97\x0f\x73\x52\x32\x13\x2a\x1d\x25\xf9\xde\xcd\xfe\xfc\x93\xab\x6b\xb3\x4b\x57\x57\x67\x57\x6e\x2f\x65\x37\xe7\x91\xda\x53\x76\xfe\x86\x06\x2b\xfe\x44\xd4\xca\xb9\x3c\x0d\x2c\x7b\xf0\xf9\x4f\x7f\xfa\x53\x7c\xf9\xcb\x5f\x96\x0f\x3c\xf0\x80\x66\xf5\xb2\x92\x7d\xcb\x9c\xa1\x61\x37\x1e\xbe\x6a\x27\x95\x84\x74\x98\xe4\xd3\x71\x27\xbf\xbd\xb5\x92\x6e\x2d\x6d\x8a\xf7\x56\x27\xf1\xda\xea\x34\x5e\x5b\x9e\x45\x83\xa5\x2c\xea\xf7\xe6\xd4\x4f\x32\xd1\x8b\x15\xc5\x0a\x40\x2e\x54\x96\x46\x6a\x3a\xe9\xe4\xe3\xfd\x5e\xb6\xb7\xbb\x94\xef\x0c\x93\x7c\x38\xee\xe4\xe3\x69\x47\x0e\x33\xa1\x46\x25\x60\xe1\xa0\x85\xff\xea\xbf\xa6\xd5\x44\x8b\xb8\x83\x00\x16\xdf\xbf\x69\x4b\x75\xcb\xa1\xdb\x14\x89\x2f\xbc\x9d\x06\xc8\xa8\x72\x73\x5d\x0a\x71\x44\x8a\xe2\x58\x52\x12\x29\xc4\x50\x88\xc3\x43\x3a\xaa\xa4\xab\x61\x7b\x1c\xa3\xfa\x42\x8d\x53\xfb\xe1\x02\x94\x4f\xfc\x85\x97\x0e\xf1\x1e\x0d\x87\x9a\x43\xb8\x0b\xb8\x4e\x11\xb2\xdc\x32\x2e\xba\x2e\x4c\xbd\xd4\x80\x16\x5f\x61\xb6\x7d\xc4\x10\xb8\x58\x44\xd9\x86\xc2\x87\xf2\xe2\xe7\x63\x51\xa0\xd1\x16\xff\x9d\xa0\xe9\xa6\xbc\xb4\xc5\x7d\x50\xc6\xa9\xcd\x4f\x5d\x7c\x75\xf1\xf8\xa0\x9d\x03\x16\x01\x05\x01\x20\xe9\x8e\xe4\x46\x3c\x55\x27\x49\xa2\xef\x61\x0b\x58\xcb\xba\x54\x4a\x65\xa3\x36\x16\x32\x60\x58\x05\x55\x06\x74\x86\x6c\xa8\xda\x39\xf8\xe4\x5b\x3b\x1c\xc4\x17\xff\x97\xe9\x72\xe0\xc0\x4d\x76\xa5\x15\x83\x79\xcb\xbc\x73\x50\xc3\xf6\x7a\x31\x7d\xce\x07\x2a\x1c\x8c\x15\xe9\x3b\x80\x4a\x83\x2c\x0f\x94\x98\x5f\xe2\x2c\x8b\xdf\x5f\x61\xea\xc5\x35\x56\xac\x42\x37\xf5\xa9\x7f\x25\xfa\x9d\x99\xba\x27\x99\xca\xcd\x28\x13\x1f\xcf\x05\xc6\xe4\x6d\xdb\x50\xde\xcb\x24\x49\x42\x43\x47\x8d\xae\xd3\xe9\x80\x9d\x37\x64\x87\x0b\xcb\x73\xaa\x84\xa2\xde\x5d\xfb\xc9\xe6\x67\xae\x2d\x7f\x7b\x7d\x12\x3f\x1f\x4b\xda\x04\x48\xb0\x12\x17\xbf\xce\xe7\xe1\xb5\xca\x06\x8f\x1c\x39\x06\x0b\xfa\x4c\x1b\xaa\x71\xce\xd9\x6e\x45\x8d\x09\x45\xfd\x43\xb3\xe8\xb9\x07\x6f\x2c\xed\x4e\x3b\x32\xfd\xe0\xf0\xe4\xbd\x72\xc2\xae\x53\xfe\xd2\xda\x46\x92\x24\xc1\xbe\x23\xa5\xd4\xab\xb1\x80\x6a\x7f\xd2\x93\x75\xa7\xc1\x7c\x95\xdb\x4b\x48\x20\x1b\x25\x32\x9d\xad\xcd\x46\x3b\xcb\xf3\x1b\x1f\xad\x77\x3e\x3c\x32\x4a\x8e\x6e\x8c\xe3\xa3\xab\x93\x78\x63\x39\x15\x6b\xdd\x4c\xf4\x22\x49\x31\x29\x12\x04\x08\x2a\xfa\x1a\x24\x41\x2a\x82\x2c\x0d\xcc\xe9\x38\xc9\x87\xb7\x7b\xd9\x8d\x9b\xcb\xf3\xeb\x37\xfb\xf3\x1b\xb7\x97\xb2\x9d\xfd\x6e\xbe\x3b\x8b\xe5\xbe\xd4\xfb\x92\x90\xa3\xa0\xf5\xf0\x90\x1e\x1e\x71\x96\x41\x03\x76\x78\xe4\xd5\x57\x5f\x95\x17\x2f\x5e\x04\xea\x0d\x1e\x53\x07\x59\x96\xe1\x95\x57\x5e\xc1\x7c\x3e\x97\x7a\x2f\x1f\x0d\x60\x02\x3a\x43\xc7\xe7\x00\x17\x14\x5b\xed\x67\x12\x98\xa6\x91\x1a\xcf\x45\x9e\x8c\x12\x79\xeb\xfa\xa1\x79\x37\x92\xe8\xc5\xb2\x98\x8a\x11\x49\x12\xa2\x1c\x6a\x52\x80\xcc\x05\xb2\x5c\xa8\x6c\x1e\xc9\xe9\x5c\xa8\x54\x0a\x35\x93\x84\x54\x01\x29\xa0\xa6\x28\x58\x47\x0e\x58\xa6\xac\xfc\x6d\x4b\xa0\xb1\xb7\xb7\x27\xff\xe3\x3f\xfe\xc3\xaf\x87\x26\xb7\xa8\xe1\x5d\x89\xb3\x69\x39\x74\x9d\x02\x69\xba\xaf\x0c\x07\x78\xab\x8b\x84\x50\x10\xb1\xc4\x52\xb1\xf9\x9c\xf6\x54\xf6\x21\xd2\x13\x87\x4a\xe1\xc4\x2c\x02\xff\x9b\x2a\x26\xa7\x9d\x09\xba\xca\x32\x2c\x75\x8e\x53\x8c\xd6\x10\xb5\x82\xbc\xd2\xd5\x3d\x1c\xa3\xa0\x64\x5e\x6c\xad\x9d\x49\x32\x8c\x8b\x66\x59\xa4\x27\x54\x17\x55\x82\xdc\x2d\xfa\x84\xd4\xfe\x08\x00\x00\x20\x00\x49\x44\x41\x54\x41\xdb\x86\x92\x42\xfe\xfc\xe7\x6d\x79\x0b\x0d\x99\x68\xff\x6d\xf9\xac\x03\xbd\xa1\x0e\xbe\x28\xe3\x13\x0a\xd3\x04\xae\xeb\x5c\x88\x00\x2d\x40\xd2\xbf\x25\x59\x24\x1f\x95\xb2\x7c\xfe\xf3\x9f\xc7\x3d\xf7\xdc\x63\x1e\x2a\x7b\xcc\x45\xa9\xb0\x54\x4c\x39\x92\xde\x48\x1e\x8b\xe6\x6a\x53\x6f\x03\x60\xf0\x09\x6c\xab\x73\x86\x87\x5c\xbd\x0d\xdd\x33\x0a\x05\x6d\x69\x8e\x66\x88\xed\x29\x3a\xed\xdf\x90\x10\xe4\x8e\xfa\x94\xe9\xf3\x79\x66\x4e\xe3\x2f\x01\x04\x4c\x5e\x79\x47\xe4\xfd\x48\xe7\x4f\x79\x9b\x5c\xd9\x30\x4e\x3e\x2a\x42\xdb\xdb\x8b\xc9\x39\xb0\xa5\x62\x95\x02\x2e\x54\x81\xa9\x51\x5e\x38\x46\x4d\x90\x82\x88\xe6\x6a\xb3\x33\x55\x47\x44\x86\x1e\x75\xcd\xbc\x13\x7f\xb8\x08\x38\x98\x81\x81\xaf\x7d\xed\x6b\x62\x6d\x6d\x4d\xdf\x72\x20\x14\x03\x48\x04\x28\x59\x9e\x47\x2b\x8f\x6e\x2d\x7f\xf1\xc8\xb0\xf3\x8d\x4e\x2e\x8e\xa1\x5c\x51\xc3\x01\x89\x99\x6f\xcc\x4a\x05\x26\xdf\xec\xbc\x1f\x56\x3f\x15\x6a\xce\x3d\xeb\x8d\x2f\x23\xe6\x71\xd8\xff\x0a\xb1\xa4\xcd\xf5\x71\xe7\xf9\x33\x37\x96\x76\x46\x49\x3e\xbd\xba\x36\xfb\x30\x8b\xec\x89\xf7\xac\x4c\x92\x88\xc4\x37\xbf\xf9\x4d\xf9\xd2\x4b\x2f\x09\xb6\x82\x04\x00\xf0\xd1\x47\x1f\xe1\xdc\xb9\x73\xf2\x99\x67\x9e\xe1\x7d\x28\x83\xeb\x38\x78\x31\x8c\x0b\x80\x4c\xa1\x38\x98\x71\x1e\xa9\x74\x4f\xe4\xe3\x49\x47\xde\xbe\xb9\x3c\xbf\xde\xcd\x44\xbf\x9f\x8a\xc1\x60\x16\xad\x1c\x9a\xc5\x2b\x4b\x73\xd1\xef\xe4\x22\x89\x14\x84\xde\x7d\x37\x13\xc8\xd2\x48\xa6\xa3\x44\x0e\x47\xdd\x6c\x38\xea\xe6\xc3\x61\x92\xef\x4d\x3a\x72\x98\x46\x72\x9c\x45\x6a\x92\x13\xc6\x70\x59\x86\x31\xac\xb2\x1e\x03\x98\x6a\xd0\x02\x38\xfb\xdc\x98\x72\xfe\xea\x57\xbf\x92\xef\xbd\xf7\x1e\xca\x65\xbf\xbe\xac\xf7\xe5\x9c\x04\x20\x27\x93\x09\x66\xb3\x59\xa8\x6d\x39\x75\xa3\xec\x79\x46\x92\x81\x26\xbd\x92\x27\x45\xb1\xe7\x4b\x4f\x11\xe2\x0c\x2a\xc9\x84\x8a\x09\x9a\x10\x28\xbe\x11\x6f\xfa\x00\x64\xb1\x39\xa1\xa9\x63\x03\x82\x60\xf7\x66\x71\x18\x26\x56\x7e\x1f\xbc\x39\x75\x71\xe3\xc6\x0d\xf9\xf2\xcb\x2f\xeb\x3d\x5b\x7c\xd7\x66\x40\x2e\xa2\x17\x9d\x7a\x0c\x6d\xf9\xef\x7b\xd2\xf7\xfe\x07\xa8\xcd\x54\x60\xd5\x8e\x11\x02\x91\xa4\x38\xce\x29\x11\xc5\x72\x2e\x61\x56\x1a\x14\x21\xe1\x08\x6d\x2d\x8b\x7c\xe0\x50\xf2\xa0\x76\x5e\x0b\x3b\x29\x53\xf7\xf8\x32\x02\x47\x5c\x1a\x6b\xc4\x0a\x5f\x7f\xc8\x9f\x6f\x62\x65\x95\x04\x1c\xa7\x08\x52\x96\xe7\x81\x94\xbb\xe6\x02\x96\x65\x09\xb1\x2d\x75\xca\x30\xd4\xb0\x17\x09\x57\xf7\xfe\xa0\xee\x4e\xc3\x07\x99\x06\xe6\x9a\x86\x62\xea\xe2\x6a\x53\x12\x75\x20\x2d\x04\x8a\x42\x69\x36\xd5\xf5\x22\xe0\x29\x94\x8e\x00\x20\x0f\x1f\x3e\x2c\x96\x96\x96\xb8\x75\xad\xfd\x17\xbb\xa0\x02\x89\x90\x48\x92\xb1\xbc\x5f\xe4\x6a\x05\xda\x60\x70\xf1\x00\x00\x06\xba\xcd\x92\x62\x3e\xd0\xe1\x59\xe0\x9c\x5d\xe0\xcc\x8d\xc3\x31\x5a\x60\x61\x77\xca\xf7\xb6\x28\x60\x05\xb3\x2b\x8e\xdc\xb7\x0e\x58\xe1\x40\x27\x50\x08\x17\xd8\x04\xb6\x14\xb0\xeb\x93\x99\x92\x56\x4e\xdf\x24\xd2\x8a\xb6\xd4\xc7\xa6\x28\xa1\x41\x12\x0b\x5a\xb4\xea\x27\xf2\x18\x18\xc7\x80\x2a\x24\x43\x94\xab\x8d\xce\x54\x1d\x8d\xe7\x6a\x25\x55\xd8\x21\xbb\x11\x5c\x85\x45\x7e\xfa\xe9\xa7\x71\xee\xdc\x39\x3d\x5c\x04\x34\x00\xeb\xa3\x47\x8f\xa2\x3c\x61\x59\xc7\xa1\x01\x51\x31\xaf\x25\xa7\xfe\x03\x37\x7b\xa7\xee\xbd\xdd\xfd\x7a\x37\x13\x27\xa9\x58\x0e\x0d\x3d\x6c\x5d\xc2\x0d\x3b\xe4\xc5\xab\xcf\xd4\x09\x95\xec\x99\xb7\xca\x86\x01\x47\x03\x76\xf9\x5c\x41\x8d\x46\x2b\x87\x51\xea\xeb\x02\x70\x27\x39\x8e\x6f\x8e\x3a\xcf\xdd\xb7\xdb\xbd\xba\xdf\xcb\xf6\x76\x96\xb3\xca\xd1\x08\x9a\x91\x3a\x76\xec\x98\x88\xe3\xb8\xd2\xd7\x26\x93\x09\xde\x79\xe7\x1d\x10\x91\x7c\xfa\xe9\xa7\x35\xd0\x01\xea\xc1\x8b\x89\x5f\xf1\x43\x08\x09\xa9\x22\xf4\x52\x52\xd3\x79\x94\x0f\x47\x49\x9e\xec\x2e\x51\xd2\xc9\x69\x29\xc9\x29\x89\xa5\xe8\x09\x59\xb0\xf7\x42\x21\x2e\x56\xbd\x43\x72\x76\x21\x8b\xd4\x24\x13\x2a\x95\xfa\x60\x40\xaa\x28\x69\xf3\xc7\x18\x86\x29\x9f\x90\xab\xb7\xbd\xd0\x79\x7c\xf5\xd5\x57\xe5\x7b\xef\xbd\x87\xc9\x64\xb2\x08\x3b\xec\xf8\x79\xf7\xdd\x77\xd1\xef\xf7\x65\xb9\x7d\x02\x37\x76\x4d\xdd\xf0\xb4\xc8\xdd\xac\x4e\xe7\xbd\x07\x7d\x5c\x00\x20\x40\x48\x54\xb1\x89\x9d\x50\xd5\x36\xec\x03\x47\x7e\x4e\x52\xca\xee\x39\xb3\xe2\x4f\xc2\x4d\x35\x3b\x04\x06\x5a\xae\x5d\xbb\x26\xcf\x9d\x3b\xa7\x0f\xe4\xe4\x2e\x34\x4a\xe0\xbb\x26\xe3\xd7\x37\x48\x4d\x5c\x6d\x93\x73\x9b\x50\x52\x30\x53\x7c\x32\x9b\x5e\x16\xca\x33\x12\x29\x12\xb1\xa4\x38\x32\x9b\xcf\x31\xf4\xaf\x3b\x17\xac\xe0\xb2\x71\x95\x9d\xd6\xc8\x61\xfe\xd2\xae\xef\xb7\xcb\x32\x0b\x10\xe2\xb2\x2a\xd6\x8a\xd1\xf7\x55\xc7\xd6\x24\x31\x50\xc3\xe3\x51\x80\xcc\x09\x69\x4e\x6a\xa6\xb7\xfb\x2f\x1b\x1e\x67\x5e\x78\xa4\x75\x80\xe3\x40\xf4\x58\xc0\x7f\xd3\xc7\x6e\x7b\x1f\x52\xea\x6d\x61\x11\xf0\xc7\x1b\x16\x8f\x5b\xa0\x39\xbe\x45\xd2\xf2\x1b\xec\xa2\xe0\xc6\x67\x53\xda\xda\x75\xa8\x0c\xa1\x78\x79\x9e\x9c\x70\x76\xd5\x4a\x31\x11\x1d\x25\x68\x29\xdf\xc7\x71\x2a\xfb\xc9\x44\x9e\x10\x12\x3d\x34\x38\xbe\x25\xbf\x79\x06\x80\x99\xda\x0e\x2c\x01\x60\x87\x89\xbc\xe7\x96\xf4\xb0\x0d\xb9\xd0\x51\xc4\xfa\x8a\x0f\x7c\xdc\xbd\x97\x4c\x9f\x21\xdd\xb7\x3d\x23\xc3\x60\x2c\x6f\x10\xc3\xb2\xac\x16\x56\x98\xbe\x6d\x65\x84\x8d\xab\x70\x9c\x59\xb1\x04\x09\xb7\x36\xdc\xa5\xbe\x85\xcf\x42\x8a\x78\x36\x8b\x8d\x9b\xb4\x92\xb6\x9d\x9f\x08\x20\x89\x41\x67\x2a\x8f\xc6\x33\xb5\x42\x4a\x25\xaa\x3c\xc1\xbb\x1c\xce\xd1\xac\x8b\x04\x80\x7b\xef\xbd\x57\xf4\xfb\xfd\x56\xd0\xf2\x67\x7f\xf6\x67\xa2\xdb\xed\x6a\x3f\x7a\x88\xc8\x0c\x15\x09\x89\xde\xa1\x69\xbc\xf1\xc0\xce\xd2\xd3\xcb\xb3\xe8\x71\x42\x71\x88\x9e\x0f\xb0\xf4\x77\x00\xec\x07\xe0\xe0\x55\xb1\x65\xea\xba\x56\xf4\x77\x74\x56\x55\x2a\xd8\xe1\x37\xb2\xc0\x57\xe3\x17\xdb\x76\xec\x9c\xa5\x02\x07\x51\xb2\x34\x17\x67\xee\xde\x4f\x9e\xdc\x1e\xcc\xaf\x0c\xbb\xf9\x30\x8d\x95\x56\x5a\x1a\x58\x98\xfe\xf8\xe4\x93\x4f\xe2\x77\xbf\xfb\x9d\x28\xf7\x31\x31\xb2\x61\x3c\x1e\xe3\xe2\xc5\x8b\x42\x08\x21\x9f\x7a\xea\xa9\x3a\xe6\x85\xcb\x12\xce\xba\x70\xc5\x3a\x05\xa1\xa7\x80\x44\x11\xe2\x5c\xc9\x24\x13\x14\x4f\x3b\x88\x81\x5c\xd7\xaf\xae\x77\x13\x97\x65\x17\x0a\xf6\x06\xfa\xe8\x01\x10\x57\xce\x66\x57\x5c\xb8\x60\xc5\x59\x45\x44\xde\x3e\x5d\x57\xae\x5c\xc1\x64\x32\xf1\x9b\xc0\x42\xc3\x24\x37\x6f\xde\x94\xe7\xcf\x9f\x17\x4a\x29\xf9\xe0\x83\x0f\xfa\x43\x91\x7c\xfa\x01\xe0\x32\x2e\xba\x5e\x92\x32\xaf\x09\x03\xc5\xbc\xad\x19\xb9\x04\x18\x40\xea\xd7\x2f\x8f\xcf\xaf\xef\xd4\x7b\xc7\xc1\x8a\x01\x2d\x9f\x7e\xfa\xa9\xfc\xfd\xef\x7f\x8f\x4f\x3f\xfd\xf4\x8f\x65\x9c\xfb\xef\x82\x32\xdf\xdf\x80\x8e\x7b\x68\x1b\x06\x08\x26\xe8\xcd\x86\x76\x80\x0c\x50\x8c\x41\x46\x8a\xf4\x1a\x74\x2b\xa3\x15\x99\xce\x68\xd8\x10\x58\x4b\x8b\x98\xc0\xd1\xce\x08\x44\xf3\x8e\x75\x76\xd8\xfd\x2b\x0a\x2b\xcd\x4e\x72\x34\x1d\x5c\xb9\xe1\x35\x95\x6e\x0b\x50\xbd\x54\x45\x56\x65\x2e\x54\x96\x0b\x64\x0a\x4a\x12\xa8\x32\x49\xcb\x9b\xb8\xd5\xa4\x68\xf5\xfb\x3b\x01\x36\x21\xb6\x22\xf4\xcd\x16\x65\x69\x16\x01\x49\x3e\xc3\xd2\xd6\x4e\xfc\xb8\x0e\x02\x60\x16\x01\xce\x75\xf1\x87\x1a\xfc\x22\x79\xe4\x65\xe1\xd7\x8b\x00\x2d\x9e\x4e\x49\xd5\x52\x0c\xa5\xe2\x64\xa2\x56\xe2\x54\x1d\x23\x55\x1c\x98\xc6\x9d\x03\x2e\xc2\x68\xba\x50\xcb\xba\x33\xb0\xd3\x91\xc3\x94\x20\xac\x82\x36\xda\x0a\x6e\x7b\xf6\x19\x17\xa7\x7f\x59\x0b\xc1\x05\xfe\x8e\xed\x5f\xfe\x58\xd8\xc0\x81\x82\xf5\x6f\xa6\xd7\x82\xcf\x9d\xf1\x69\x18\xcd\x16\x71\xe3\xc4\x32\x0a\x5c\xdb\x6a\x7f\x5c\x69\x5b\x90\x63\xf2\x6f\x14\xb2\x41\x6f\xce\x70\x30\x00\x90\x54\xbd\x38\x55\x1b\x9d\x99\x5c\x13\x79\x94\xe4\xc2\xec\x64\x0b\x3e\xdf\x05\xed\xc2\xd6\xb4\xb5\x47\x1e\x79\x04\x71\x1c\x3b\xac\x1b\xd8\x04\xed\x6e\x26\x06\xf7\xde\xee\x9e\x3a\x3c\xea\xfc\x59\x24\x69\xc3\xc4\xa0\x01\x20\xa3\x99\x48\xcb\x2d\xe5\x6e\xb0\x59\x14\x8f\x01\x4b\xf3\x7d\xf4\x27\x61\x4c\x56\xd9\x46\x14\x63\xf1\xf8\x62\x06\xbb\xfd\x8d\x69\x30\x26\xae\x58\xd2\xc6\xea\x24\x7e\xfc\xee\xbd\xe4\xdd\x9d\xfe\xfc\xfa\xf6\xa1\xb9\xbf\xfc\xd5\xf4\x99\xb3\x67\xcf\x8a\x8b\x17\x2f\xca\xd0\x50\xc1\x64\x32\x91\x6f\xbc\xf1\x86\x88\xe3\x58\x7e\xf6\xb3\x9f\xb5\x45\x2e\x94\x31\xaf\x4f\x9f\x61\x48\x60\x95\x68\x02\xcb\x2e\x68\x65\x1d\xab\xea\x84\x6a\x5f\x16\x96\x7f\xe6\x5c\xa0\x8c\x81\x11\xbe\xa1\x9c\x61\x18\xc8\x9e\x21\xa4\x27\xe1\x56\x40\xcb\x1b\x6f\xbc\x21\x4b\xd0\xb2\xa8\x7c\xa9\xb8\x1b\x37\x6e\xe0\x8d\x37\xde\x80\x10\x42\x9e\x3e\x7d\xda\x67\x5e\xf4\x2a\x37\x94\x79\x4e\x60\x01\x8c\x3e\x3a\xc1\xd4\x03\xe0\x9c\x57\x65\x80\x0b\xe0\xf4\x5b\xaf\x4e\x82\xe0\x45\x9f\x29\x95\xa1\x1e\xb0\x48\x00\xf8\xe4\x93\x4f\xe4\xf9\xf3\xe7\x71\xf9\xf2\xe5\x26\x39\xed\xcb\x53\xee\xea\x64\x38\x7f\x17\x7c\xee\xef\xe3\xc2\x5f\x2e\xfa\x5c\x00\x90\x1b\x1b\x1b\xe2\xd8\xb1\x63\x00\x7c\x5a\x96\x00\x4b\x2b\x82\x14\x84\x50\x14\xeb\x49\x54\x4e\x67\xf4\x6c\x49\x53\xdd\xe4\xf8\x04\xfc\xf7\xde\x43\x72\x25\x77\x65\xe8\xca\x17\xb0\xf6\xb9\xa6\x54\x03\x1b\xd4\x69\x61\x52\xa0\x9e\x2c\x17\x2a\x95\x64\x3a\x1e\x0f\x23\x01\xdb\x58\x88\x08\x9f\x7e\xfa\x29\xd8\x4e\x93\x4d\x1f\x8b\x3b\x5f\x61\xd6\x09\x4b\xed\xda\x00\x4b\x53\x1a\x6d\xc0\xca\x77\x6d\xe0\xa1\xce\x4f\x9d\xbf\x45\x3b\xbc\x1f\xcf\x22\x00\xed\x20\x74\x65\x53\x3c\xc1\x72\x9e\x3c\x79\x12\xfd\x7e\x1f\x00\xf4\xdc\x16\x23\x40\x89\x48\x40\x29\x41\x0a\x71\x32\x91\x6b\x51\x86\x4d\xa8\xea\xbc\x32\xce\x88\x14\x11\xc1\xb0\x06\x86\x31\x60\xcf\x2c\x29\xa1\xa9\x10\xb8\xc8\xda\x69\xba\xac\x4d\xdb\x16\x0e\xce\x88\xf0\x78\x34\x0e\x32\x53\x26\x74\x14\x21\xe7\x33\x39\x7a\xdf\x26\xe2\x59\x20\xc7\x2f\xb3\xed\x6d\xee\x98\x10\xb0\x73\x6b\x98\x91\x61\xb9\x06\xb8\x09\x68\xf6\xa5\x04\x3e\xee\xf2\xa9\x4a\xdc\x36\x41\x9d\x67\x12\x51\xa6\xd6\xe2\x54\x1d\x16\x99\x4a\xb2\xd8\x0c\xe9\x08\x4f\x06\x34\x31\x82\x12\x80\x14\x42\x88\x07\x1f\x7c\xb0\x9c\x8f\x6b\x81\x2b\x9b\x37\x93\x08\x89\xde\xa1\x59\xb4\x71\x72\xa7\xf7\xe4\x52\x2a\xce\x9a\x9d\x61\xcb\xec\x71\xac\x65\x8f\x1b\x21\x73\x48\xa4\x33\xe5\x99\x7f\x76\xc5\xbe\x67\x19\x91\x01\x36\xa6\xfa\xd8\x47\xe1\x8c\x1a\x5c\x90\xe3\x49\x44\xd1\xcb\xa2\x13\x47\x87\xc9\x63\xd7\x46\xe9\xa5\xdd\xa5\x6c\x37\x8d\xa4\xd9\xd3\xa5\x2c\x5b\xaa\xf7\xbd\x39\x71\xe2\x04\x46\xa3\x91\xd8\xdf\xdf\xaf\x28\xf3\x34\x4d\xe5\xaf\x7f\xfd\x6b\xd1\xed\x76\x71\xf6\xec\x59\xa9\xf7\x3d\x82\x3d\xb7\x07\xb0\xfd\xd4\x99\xd3\x01\xbb\xab\x71\xc2\x7f\xcb\xf4\x39\xc0\xac\xc8\x44\x3e\x4f\x04\x55\x76\xa1\x8e\x65\xe0\x60\xa5\x02\x5a\x2e\x5e\xbc\x28\x7f\xf3\x9b\xdf\x60\x3e\x9f\x07\x9a\xc4\x81\x9c\xbc\x71\xe3\x06\x5e\x7b\xed\x35\x31\x9f\xcf\x65\xa7\xd3\xc1\xe9\xd3\xa7\x75\x3d\x08\x58\xa0\xa0\x0f\x02\x35\xed\xb3\x2c\x7f\xca\x80\x8b\x3f\xcc\xd9\x24\xbb\x39\x70\xf1\xd9\x1c\x7e\xe0\x66\xed\xa9\xcf\x5b\x5b\x5b\xf2\xfc\xf9\xf3\xf8\xf8\xe3\x8f\x7d\xe3\x4e\xa7\xe1\xa7\x19\x32\xfc\x9a\x80\x4c\xc8\x99\x32\xd5\x2d\x87\xae\xb5\x28\xea\xfc\x9e\x38\x71\x02\x67\xcf\x9e\xd5\xe7\xb3\x70\xf0\x22\x18\x88\xe1\x33\xbf\x0b\x20\x53\x78\x76\x04\xb7\xb6\x0e\x1c\xec\xa0\x1c\x99\x13\x74\xfc\x24\x5b\x1d\x6d\x68\xe7\x4f\xc0\x46\xe4\x0a\x28\x6e\x29\xb2\x78\xb9\x7e\xa0\x92\x71\x21\x95\xc9\xea\xe6\x73\xd2\x0f\xaf\x94\xc2\xc5\x8b\x17\x71\xe5\xca\x95\xba\x6c\xfb\x00\xc5\xaf\xeb\xba\x06\xd1\xa4\xf0\xeb\x40\x03\x8f\xa7\x8e\x41\xa8\x63\x50\x42\x08\x3a\x94\x46\x28\xad\xd0\xbd\xef\x8f\xc7\x5d\x97\xdf\xd0\x75\x5d\xfe\xfd\x34\x9a\x00\xb8\x9f\xc7\xba\xb8\x2b\x69\x3d\xfd\xf4\xd3\x58\x5d\x5d\xd5\x82\xd7\xb4\x73\x68\xa5\x05\x8a\x49\xa9\x24\x99\xa8\x0d\x21\xd1\xb7\xd1\xd8\xa5\xbe\x80\xd7\x0f\x78\xf3\x73\x98\x05\x13\x14\x66\x39\xb3\xab\x9d\x1d\xa0\x6e\x86\x10\x94\x85\x0a\x7c\xb8\xd4\xb4\x53\x3d\x9c\xc3\x40\xbf\x0e\x07\xb8\xfd\xd0\x60\x98\xaa\x71\x62\xe2\xf1\x7a\x4f\x19\xb1\xd5\xb4\xba\xac\x06\x94\x18\x80\xa2\x15\xb0\x35\x2e\x88\xb1\x04\x8e\x21\xa3\x87\x4b\x42\x8c\x0c\x7b\xe7\x3b\x7f\x3f\x3d\x91\x63\x10\xcd\xd5\x40\xe4\xe8\xb1\xef\x26\xa8\x99\x71\xa9\x28\x85\x28\x8a\xf0\xc2\x0b\x2f\xe8\xe1\x71\x78\xf1\xc4\x00\x92\x24\x17\xfd\x23\xc3\xce\xf1\x8d\x71\xfc\x78\xcc\xd9\x16\x56\x4d\x76\xa8\x47\xd7\x51\x09\xf5\xf8\xd0\x9b\xb2\x01\x14\x0f\x5f\xd6\x4d\xf5\xac\x1e\xfd\x9c\xb7\x21\x8b\x46\xcd\xdc\x9a\x8a\x3f\x85\x48\x62\xed\xd0\x2c\x3e\xbb\x39\x4a\x4e\x5d\x3b\x94\x7e\x7c\xb3\x2f\xf5\x70\x4b\x5c\xca\x3c\x03\x3a\x9e\x78\xe2\x09\xb1\xbd\xbd\x2d\xf7\xf7\xf7\x75\x1d\x39\xca\x49\x4a\x29\x5f\x7e\xf9\x65\x91\x24\x09\xee\xbb\xef\x3e\x19\xc7\xb1\x1e\x5e\x05\xd8\xf0\x48\xa9\x34\xf5\x70\x9d\x3e\x86\xc1\x67\x16\xf4\x90\x5e\xac\x8d\x63\xfe\x5d\x54\x79\x30\x26\x93\xcb\x99\xaf\xa0\x11\x1e\x0a\x31\xa0\xc5\x63\x84\x64\x9e\xe7\xf2\xea\xd5\xab\x78\xf9\xe5\x97\xf5\x33\xce\xf2\x48\x54\xe5\x57\x9b\x5c\x01\x00\xb9\xb3\xb3\x23\x5f\x7e\xf9\x65\x74\xbb\x5d\xd1\xe9\x74\xe4\x89\x13\x27\x74\x19\x50\x96\x21\xd3\x65\xd1\x75\xc2\x7e\x79\x1b\xd3\xed\xd7\xc8\x20\x4f\x17\x49\x5e\x1e\xb8\xec\x99\x59\xe2\xad\x9f\x79\xa0\xcf\x7c\xc7\xed\xed\x6d\xf9\xbb\xdf\xfd\x2e\xa4\xd3\x9a\x64\xb0\x5f\xee\x26\x20\xe3\xeb\x80\x8a\x2e\xac\x43\x65\x75\x19\x6a\x74\xc4\x0e\x18\x0c\x0c\x13\x15\xcf\x15\x40\xaa\x98\xed\xcc\x87\x84\x74\xc7\x33\x13\xc4\x48\x41\x59\x71\x56\x58\x6b\x04\xf3\x8c\x3b\x55\xf2\xa8\x7c\x4f\x16\x87\x4a\x77\xfc\xc2\x52\xa7\x45\x8e\x8a\xe1\x1f\x55\x2c\x2b\xd5\xef\xdd\x72\x69\x9f\x26\x6e\xa9\x08\x99\x64\x63\x7d\x45\x78\x0b\xda\x58\x9d\xf8\xd9\x0d\x35\xf8\x26\x3f\xfa\x7e\xa1\x4e\xc0\xde\xb5\x51\xdc\x21\x10\xd4\x46\xdd\x85\xe2\xe5\x79\xf0\x91\x7e\x5b\xfe\x42\xfe\x7c\x24\xbe\x28\xa3\x12\x6a\xcb\x75\x1d\xe2\x20\xc0\x3c\xe4\xaf\x92\x1f\x36\x9f\x4b\xff\x95\x82\xa4\x98\xe7\x12\xcf\xe4\x61\x48\xd5\x03\x8a\xe5\x89\xba\x8d\x19\x00\x61\xac\x66\xef\x25\x6b\x8b\xba\x1f\x98\x97\xce\x78\x80\x0d\x47\x5c\x81\xa3\x04\x2f\xac\x3f\x99\x79\x27\xca\x06\xd3\xec\x8a\x3f\x69\xdd\x6f\xbd\x64\xfc\x72\xee\x44\x39\x59\x76\xf2\xcb\x95\x2b\xeb\x9b\x45\x57\x2d\x41\x87\xb2\xdb\xd2\xe9\x3f\x3d\xe1\x5e\x91\xe5\x5c\xb8\x96\xe6\xa4\x94\x32\x6a\x56\x17\xd8\x32\x0e\x3c\x4d\x1f\xe3\x29\x02\x48\xa2\x1f\x65\x58\x11\xb9\x4a\x4a\x36\x4c\x78\xf3\x94\x4c\x79\x56\x56\x56\xd0\xeb\xf5\x78\x9b\x92\x00\x10\x45\x91\xd8\xdc\xdc\x04\xac\xa2\x10\x65\x3d\x1b\x00\x0b\x20\xe9\xa7\x62\xe5\xd8\x7e\xf7\x81\x5e\x26\x4e\x16\xe7\xb4\x95\xb9\x2e\xb3\xad\x94\x2d\x99\x82\xfe\x8e\x16\xde\x9a\x79\x2c\x64\xbf\x31\xf1\xb2\x18\xd6\x05\xe6\x9d\x9d\x26\xe3\x0a\x35\xdd\x96\x4c\x13\x50\x45\xfb\xb0\x46\x5a\xd9\x72\x14\x90\x64\x74\x74\x75\x1a\x3f\x30\x98\xc5\x1b\x54\xb0\x44\x09\xb9\x4b\xc7\x4d\x99\x59\x1d\x85\x9c\x00\x20\x7f\xfe\xf3\x9f\xcb\xab\x57\xaf\x22\xcb\x32\xdf\x92\x37\x93\x4f\xcb\x39\x27\x53\xa5\xd4\x54\x29\x65\xf6\x56\x51\x4a\x0d\xcb\xeb\xbd\xf2\x6f\xd7\xbb\xde\x05\xb0\x4b\x44\x7b\x44\xb4\xcb\x9e\xed\x11\xd1\x9e\x0e\xcf\xe2\xf1\x27\xe7\xfa\x3b\xe3\x66\x69\x9a\xca\xed\xed\x6d\xf9\xe9\xa7\x9f\xe2\x27\x3f\xf9\x09\x97\x27\x8b\x32\x09\x0b\xc9\xef\xd9\x6c\x26\x7f\xfa\xd3\x9f\x62\x7b\x7b\x5b\xef\x3a\xeb\xb0\x1e\x25\x58\x31\x75\x03\x77\x22\x71\x68\x0f\x9a\x21\xab\xbb\x21\x11\xe9\xfa\x1b\x97\xcf\xcd\x92\x67\xd8\x61\x32\x33\x4c\xc4\x41\x8b\x52\x0a\x3b\x3b\x3b\x72\x7b\x7b\x5b\xfe\xea\x57\xbf\xc2\x95\x2b\x57\x42\xfa\xc3\x2f\x57\xc8\x35\xc9\xe3\x3a\x03\x1d\xec\xbd\x04\x9a\x37\xa0\x0b\x29\xa8\x36\x2a\x07\x1e\xda\x33\x1d\xdf\x52\xe8\x05\xeb\x02\x05\xa1\x81\x05\xa7\x2b\xc9\x48\x28\x3b\x66\xee\xbc\xe7\xa2\x51\xd3\xcf\x9e\x55\xea\x4f\x2e\xd4\xef\xf8\xbd\x5d\x91\x64\xd3\x00\x50\x0a\x4a\x6d\x3d\x5b\x43\xd1\x78\xd5\x95\x51\xee\x13\xc0\xea\xc6\x41\xb3\x7c\xb8\xcc\x73\x8b\x80\xc5\x45\x50\xa9\xff\x9e\x87\x0b\x75\x1e\x3f\xed\x10\xc3\x53\x87\x74\xf9\x7b\xfe\x5b\x77\xdd\x66\x89\xe8\xf8\x7c\x17\x6a\x63\x75\xe0\x23\x14\x77\x88\xad\x09\xdd\x2f\x0a\x54\x42\xe1\x2b\xf5\xcd\xbf\x33\x67\x19\xcb\xf7\x82\x94\x8a\xe3\x54\x6d\x98\x65\xd0\x46\x29\x28\xd6\x20\x75\x7b\xb5\xed\x85\x5b\xcc\x64\x96\x04\x31\xec\xe2\x50\x18\x7e\x4f\xe1\xfe\x5c\x50\x0f\x68\xbc\xe3\x32\x94\x3c\x4c\xd1\x2d\x0c\x3d\x62\xe2\x34\x68\x81\x9f\xd4\xac\xe7\x54\x78\xc8\x40\x07\xe5\x9b\xca\xb9\xec\x25\x8b\x83\x97\x88\xca\x1c\x1b\x3c\xa6\x51\x11\x59\x0f\x1c\xd0\xb0\x32\x19\x20\xc7\xd3\x72\x58\x21\x58\x56\x83\x08\xa4\x54\x4f\x64\x6a\x10\x65\xaa\x07\x28\x01\xb8\x96\x2a\x67\x3a\x3e\xff\xf9\xcf\x23\xcb\x32\xbc\xfd\xf6\xdb\x3a\x49\x01\x40\x0e\x06\x03\x7c\xfb\xdb\xdf\x06\x8a\xb6\xc1\x27\x89\x0a\xe8\x79\x08\x0a\x71\x2f\x13\x6b\xab\x93\xf8\x44\x2c\xc5\x9a\xad\x6b\x97\xed\xe0\x79\xe7\x85\x32\xc5\x2e\x6b\xc9\x82\x35\xe6\x4d\xe7\x97\x7f\x1e\x56\x65\x9c\x9d\x71\x18\x1c\x78\x72\x15\xba\xfe\x0b\x20\x13\x4b\x5a\x1b\xcc\xa2\xe3\x2b\xb3\x68\xb3\x23\xe9\x93\x79\xa4\xcc\x2e\xc3\x65\x5d\x99\x3e\xfb\xec\xb3\xcf\x22\xcb\x32\xbc\xf5\xd6\x5b\x4e\x1d\xf9\xbf\x3f\xfb\xd9\xcf\xe4\x37\xbe\xf1\x0d\x71\xe4\xc8\x11\x99\x24\x09\x3a\x9d\x0e\x37\x9e\xf8\xc4\x68\xce\x2c\xe8\xe7\xba\x8e\x63\x62\x43\xb3\x08\x2b\x4f\x07\x1c\xf1\xe1\x1f\x3e\x1c\x04\x57\xc6\x18\xbf\x59\x96\xc9\xcb\x97\x2f\xe3\xa5\x97\x5e\xaa\x93\xb3\x21\xd7\x24\xc3\x42\xf2\x9f\x1b\x40\xf8\xb7\x7f\xfb\x37\xf9\xd7\x7f\xfd\xd7\xa2\xdb\xed\xca\x5e\xaf\x87\x28\x8a\x50\xe6\x87\xb7\x4d\x5f\x26\x9a\xf2\x7b\x75\x62\xd2\xe0\xd3\x19\xa8\x3a\xff\xd2\xa9\x27\xbd\xd8\x44\x29\x85\xf1\x78\x2c\x01\xe0\xc7\x3f\xfe\x31\x46\xa3\x51\x53\xb9\x43\xe5\xaf\xbb\x5e\xc4\x80\x0f\xc5\x29\x00\x77\x8e\x4b\x48\x29\x85\x12\xab\xf3\xcf\x05\xb6\x71\xdc\x02\x01\x50\x0e\x15\x95\xe0\x05\x70\x0c\xc7\x22\x0e\x40\x8f\x85\x33\x29\x56\xd9\xc6\x9a\x0b\x23\x4b\x7d\x97\x69\x3a\x1e\x89\xcb\x76\x4b\x83\x1a\xbf\xae\xf0\x2f\x44\xbf\x47\x41\x7b\xe9\xeb\xad\x93\x0b\x0b\xc5\xac\x26\x31\x54\x1c\xaf\x03\x76\xed\xd7\x61\x1d\x80\xa9\xfb\x80\x6d\x28\xb6\xcd\x8f\xff\x3e\x14\xa6\xee\xfa\xa0\x61\x9a\xc2\x2e\xea\x9a\x40\x4c\x53\xdc\x21\x20\x56\x07\xc2\xfc\xf0\x4d\x2c\x55\x13\xd0\xe2\x8a\xc0\x80\x16\x2a\xe6\xb8\xc4\x22\x43\x12\xcf\xd5\x06\x14\x84\x85\x17\xa1\xfd\x82\x8c\xa6\xb5\xd4\x83\xa7\xd0\xcc\xa4\xd9\xc0\x3c\x2c\x7b\x46\x8f\x1d\x52\xb0\xc0\x5d\xaf\xda\xe3\xef\xc8\x79\xa7\x13\x73\xcf\x09\x02\x78\xc7\xd3\x0a\x9f\x6f\x14\x67\x97\xee\xea\xbc\xb1\x62\x68\x10\x02\x38\xec\x91\x39\x44\x91\x97\xd1\x17\x06\x2c\x6d\xf7\x74\xe8\x9a\xe1\x5f\xd3\x89\xd9\x1e\x30\xbe\x9c\x28\xeb\xd5\x6c\x80\x27\x91\xc4\x73\x35\x10\x19\xfa\x50\xc5\x52\x52\x54\xcf\x2d\x32\x7b\x96\xa0\x59\x59\x99\x6b\x6f\x3e\x42\xd2\xc9\xa9\x37\x98\x45\x9b\xcb\xb3\x28\xbc\xb2\x8c\xdc\x5f\x73\xeb\xc9\x2f\xfd\x96\xbc\x30\xa6\xda\x74\xdd\x33\x30\x44\x3c\x0c\x8f\x85\x0f\xed\x99\x39\x35\xfa\x1d\x4c\x1d\x0a\x85\x5e\x3f\x15\xc7\xd6\xc6\xf1\x7d\x4b\xa9\x78\x6f\xbe\x94\x8f\xfd\xf9\x25\x7a\x9e\x4b\xc9\x54\x35\xb1\x12\xba\xae\xe4\xcf\x7e\xf6\x33\x00\x90\x5f\xf8\xc2\x17\xf0\xc8\x23\x8f\x80\x29\x64\x13\x6f\xd9\xaf\x32\xb2\x2b\xbe\xfc\xef\xe2\x4c\x45\xd0\x69\x7a\x6d\x44\x86\xfe\xd8\x30\x12\x5f\x15\x6a\xf6\xe2\x52\x4a\xc9\x4b\x97\x2e\xe1\x17\xbf\xf8\xc5\x41\xe5\xd9\x22\x06\x58\x53\x58\xfc\xe0\x07\x3f\x90\x00\xc4\x8b\x2f\xbe\x88\xbb\xef\xbe\x9b\xeb\x15\x59\x96\x9f\x97\x57\xc7\x2f\x00\xf8\x75\x01\xf6\x2c\xb8\xc7\x98\x07\x62\xf4\x31\x17\x52\x4a\x89\xf9\x7c\x8e\x7f\xfe\xe7\x7f\x0e\xc9\x57\x13\xfe\x0f\x70\x21\x20\xb7\x88\x81\x5e\x39\x64\x31\x94\x99\x36\x45\x6a\xde\x97\x15\xc0\x59\x96\xd0\x44\x5d\x90\xa9\x60\xd7\x2a\x2c\xc2\xf0\x1b\x2b\x08\xcb\x70\xcc\x1f\x67\x69\x3c\x69\xa7\x05\xaa\x1f\x2e\x90\x9e\x99\x61\xcf\x3a\x3f\x79\x52\x84\x0b\x89\x32\xca\x62\x99\x1d\x55\x3a\x02\x7c\x17\x1a\x2e\x2b\x5d\x53\x3d\x57\x40\x61\xe0\x5d\x28\x0e\xdf\x85\xe2\x59\x34\xee\xba\x67\x3e\x30\x08\xfd\xb6\xe5\x45\xbb\xb6\x3c\xd5\xc5\xed\x5b\x3c\x75\xf9\xa8\x2b\x7b\x28\xee\xa6\xf4\xfc\xb0\x3c\x0f\xe6\x9e\x31\x8c\x56\xa8\x2a\x88\x28\x53\x3d\x91\x63\x0d\x40\x6c\xad\x67\x1f\x34\xc0\x6d\x84\xa8\xb6\x3b\x2a\xfd\x28\x15\x52\x43\x2c\x9c\xc7\x36\x6a\x45\xcd\xbc\x38\x80\x41\x03\x29\x0b\x30\xbc\x4d\xe9\x9c\x3c\x59\x20\x6f\xf7\x3c\x73\x35\xa8\x39\x37\x88\x58\x78\x1d\x88\x15\xce\x4e\x46\xad\xa0\x15\x1b\x8c\xc5\x67\x98\x2a\x07\x94\xb9\x67\x15\x99\x5c\x52\x55\xbe\x54\x64\x4d\x91\x4a\x2c\x72\x35\x88\x32\x39\x10\x32\x8a\xa5\x70\x26\x39\x6a\x83\x4c\x2b\x82\x50\x9f\xad\x33\x40\x74\x1c\x31\x80\x78\x90\x46\x83\x23\xc3\xe4\xde\x5e\x4e\xc7\x04\x28\xb1\x6c\x9a\x0b\xc2\x2c\xb8\x62\xbb\x28\x33\x30\xa8\xeb\x92\xd9\x74\xe0\xc8\x85\x6d\x91\x53\xa9\x52\x2e\xdf\x14\xbc\xb4\xbd\xb6\xe7\x90\x81\x00\x92\x4c\x6c\x1e\x9a\x45\xc7\x97\xd3\x68\xb0\xb7\x94\xef\x52\xb1\xca\x45\x0f\xab\x18\x03\x95\xdc\xd5\x95\x21\x25\x54\xb9\x7e\xe5\x95\x57\x30\x9d\x4e\xf1\xd4\x53\x4f\xf1\xe7\xdc\x28\xd0\x20\x46\xef\xb8\xcb\x4f\xd9\x06\xf3\x03\x16\xc6\xef\xff\xd2\x8b\x9b\xff\x71\x50\x00\x00\xf2\xdc\xb9\x73\x78\xfd\xf5\xd7\x17\x51\xcc\x6d\xc6\x9e\xff\xfc\x20\x6c\x8d\xfc\xd1\x8f\x7e\x04\x00\x78\xee\xb9\xe7\xc4\xa3\x8f\x3e\xaa\xfd\x64\x08\xcb\x2e\x00\xee\x70\x25\x58\xf9\x98\x2e\xf2\xe5\x9b\x53\x06\x22\x12\x5b\x5b\x5b\xf8\xe1\x0f\x7f\xd8\x64\xac\x35\xe9\xaf\xa6\x6b\x3f\xbf\x6d\xf5\x17\xd2\x09\xad\x67\x15\xb5\x45\xe2\xdc\x73\xf6\xa1\x2d\x1e\x82\x45\x84\xac\x3f\x5a\x66\x04\xd6\x2a\x02\xaa\x42\x07\xe0\xf2\x8e\x2a\x42\x4a\x31\x8a\xda\x3c\x03\xef\xcb\x8c\xbe\x66\xef\x3c\xb6\xbb\x9a\x26\x8c\x7f\x59\x07\x49\x6a\x2c\xc2\x3a\x05\x1a\x7a\xbf\xa8\x6b\x02\x26\x7f\x2c\x57\xd7\x40\x9b\x80\x08\x10\xee\xa0\x75\x54\xae\xef\x42\x71\xfb\x79\xf0\xe9\xd0\x10\x3d\xea\xe7\xd7\x4f\xa3\xc9\xd5\x81\x97\x8a\x1f\x0f\x9c\x73\x6b\x51\x90\x52\x82\x72\x24\x50\xca\x2c\x83\x76\xf4\xb9\xbf\x94\xc3\xa0\x15\x77\x18\xa5\xd2\x9c\x18\xf0\x70\xa8\x0c\xd4\xb4\x77\xab\xb5\x42\x5e\xad\x32\x33\xec\x89\xe7\xd7\xd1\x6a\x60\x96\x7c\x28\x3e\x96\x39\xe5\x7a\xb6\x6f\x98\xb5\x60\xc2\xba\x89\x72\xe0\x66\x60\x97\x8e\x4e\xfb\x37\xcc\x0a\x8f\x5c\x2f\xa3\xe6\x99\xe2\x1e\x00\x3b\x2f\x88\x40\x0a\xb1\x90\x48\xc0\x16\x0d\x94\xae\xc2\x20\x07\x9c\xdf\x16\xb9\x62\x35\x2b\x3e\x92\x8c\x06\xcb\x69\xb4\x11\xe5\x62\xa0\xeb\xd8\xb0\x5e\x8a\x9f\x92\xed\x12\x50\x1a\xba\xb8\xec\x8a\x65\xcf\x34\x94\x24\xf6\x9c\x7f\x18\x6e\xbc\xb9\x40\xb6\x30\xda\x94\x47\x8f\x99\xb9\x4d\x3c\x0e\x00\x91\x42\xbf\x97\x45\x9b\xbd\xb9\x58\x81\x5d\x9a\x2c\xbc\xbf\x3a\x60\xd7\x66\xdc\xc8\xd7\x5f\x7f\x5d\xbc\xf5\xd6\x5b\xf2\xc4\x89\x13\x78\xe1\x85\x17\xf8\x70\x48\x13\x5b\xea\xfc\xd6\xc8\x5d\x5f\xce\x38\x7b\x6e\x05\xfc\xe1\x95\x57\x5e\x41\xb9\x85\x3f\x4f\x83\xfb\x6b\x92\xdd\x21\xb9\x52\x07\x12\xda\xe4\x9c\x71\xe7\xce\x9d\xc3\xef\x7e\xf7\x3b\x79\xe6\xcc\x19\x3c\xf7\xdc\x73\x21\x26\x3f\x08\x08\x6a\xd8\xff\xba\x72\xe0\x7f\xfe\xe7\x7f\xf0\xdf\xff\xfd\xdf\xfc\xa4\xeb\x50\x39\x42\xe5\xd7\x71\xb6\x01\xb3\x50\x79\xdb\x74\x56\x05\xa4\x85\x76\xce\x6d\xb2\x32\x17\x56\x88\x75\x74\x6e\x71\x72\xa5\x16\x58\x8c\x51\x61\x32\x11\x60\x7d\x8f\x47\xa1\x3c\x4b\xa3\x46\x08\xc3\xf8\xe1\x96\x0c\x1f\xcf\xb5\x7e\x2a\xac\x8f\x9f\x99\xb0\xdc\x32\x6c\x8b\x6b\x2d\x55\x69\xb8\x1a\x77\xa7\x00\x65\x91\xf8\xea\x50\x72\xdd\x7b\xde\xd0\x16\x41\xbc\x07\x01\x49\x07\x6d\x3b\x3e\x1b\x52\xf7\xcc\x7f\xbe\x48\x7e\xff\xd0\xef\x51\x0b\x64\x6a\x98\x45\xab\xc4\xa4\x8a\x49\x52\x02\x33\x33\xc1\x3a\x9f\x2d\xb4\x77\xa1\x15\x3a\x7e\xe0\x32\x00\x53\x56\x21\x16\x53\xfb\xd5\x40\xa9\xfa\xde\x2a\x40\xb3\xeb\x4a\x25\x3e\x07\xe5\x58\x5c\xc2\x6f\x15\xd8\x6a\x1e\x8b\xb8\x94\x13\x3f\x03\x21\x4e\x84\xf0\xfa\x5b\xa9\x86\xcb\x0e\xcf\x87\x79\x4c\xbe\x58\xb9\x42\x6c\x8a\x06\x48\x4a\x11\x53\xe8\x16\x09\x95\xac\x83\x80\x44\x0c\x19\x5c\x52\x5a\xa6\x55\x37\x34\x05\xb1\xb9\xb9\x89\xaf\x7e\xf5\xab\xfa\x5e\x7a\x61\x4d\x5c\x91\xa2\x5e\x27\xa7\x01\x01\x89\x2e\x97\xa9\xe3\x72\x88\x86\x1f\xae\xcd\x87\xdf\xf8\x46\x81\x64\x6a\x52\xb7\xbb\xb2\x2c\x6c\xf2\x90\x1d\x55\xb4\x32\x8f\xc1\x45\x47\xfe\x55\x90\xb1\xff\xdd\xcb\x00\x42\x51\x92\x64\xb4\xd6\xcb\xc4\x40\x48\xc4\x39\x99\x23\x0c\x7c\xb0\x87\x27\x9e\x78\x02\x00\x44\x39\xcf\xa5\x0e\xac\x38\xf5\x98\x65\x99\xcc\xb2\x0c\x1f\x7c\xf0\x81\xd8\xde\xde\x96\x83\xc1\x00\xdf\xfa\xd6\xb7\x42\x0a\xbf\x16\x24\x70\xa6\x41\x85\x0f\xb9\xf5\x95\xb9\x93\xa7\x9f\xff\xfc\xe7\xf2\xd6\xad\x5b\x18\x8d\x46\xc8\xf3\xfc\x20\xb2\xab\x0e\xb0\xf9\xae\xae\x1e\x9a\x8c\x23\x00\x40\x59\x3f\xe2\x9d\x77\xde\xc1\xd5\xab\x57\x4d\x98\x28\x8a\xf0\x57\x7f\xf5\x57\x2d\xd9\x6b\x76\xff\xe7\xff\xfc\x1f\x59\xc6\x89\xd9\x6c\x86\xe9\x74\x5a\x27\xdf\xeb\x64\x6d\x13\xb0\x3c\x08\x6b\x13\x72\xc1\xb8\x43\x3b\xe7\xb6\x59\xf1\xb5\x09\x6a\xba\xce\x9d\x1c\xeb\x6c\xe8\x54\x58\x15\x28\x56\x15\xf1\x25\x9a\xae\xb3\xa7\xbc\x3a\xaf\xb4\xec\x09\x48\x74\xdf\xae\xb2\x79\x32\x79\x33\x16\x4d\xe1\x91\x98\xe5\xc6\x84\x02\xb3\x02\xfd\x33\x8d\xac\x5d\xab\x8a\x55\x1a\x64\x96\xee\xe9\x34\xda\x50\x6e\xa8\x1e\x9b\x3e\x7e\x9b\x52\x6e\xb5\x64\x50\xef\x16\xed\x98\x8d\x88\x7e\xc1\xf8\xb9\xbb\x93\x06\xdb\x16\x67\x93\x9f\x26\xe4\xdf\xf6\xbc\x2e\x2e\x01\x40\x7e\xfd\xeb\x5f\xc7\x60\x30\x00\x00\xde\xde\x01\xd8\x95\x16\xe5\xf1\xf2\x31\xa9\x62\x5b\x77\xee\xaa\x0a\x1c\x56\x63\x54\x00\x35\xf3\x4a\xcc\x9f\xd7\xf0\x9d\xa1\x11\xbf\x64\xcc\x58\x70\xe3\x24\x37\x0c\x9b\xef\x50\x1d\x9e\x08\xb0\x22\x3a\x4b\xe5\x64\x5f\x67\xc9\x31\xc0\x26\x00\xfb\x65\x85\x3b\x44\x05\xf2\x62\xb6\x95\x50\x07\xb6\x78\xac\x16\xc0\xf0\xe7\xc1\x45\xd1\xe6\x79\x09\xb8\x12\xa1\xd0\x25\x8f\x6d\xd1\x7f\x0d\x73\x5b\x64\x1c\xc7\x95\x73\x89\x02\x7f\xb1\x50\x94\xc4\x92\x7a\xa2\x38\x5c\xd6\x99\xf7\xcc\x59\x16\x5d\x06\xbb\x58\x80\xcf\xf7\xab\x66\xa0\x32\xdc\x44\x55\x6f\x4e\x2d\x31\xc0\xa9\xbf\xeb\x42\xc3\x6a\x0a\x71\x2c\xa9\xd7\xc9\x45\x5f\x28\xf2\x87\xd4\x78\xd9\xe5\xf2\xf2\xb2\x58\x5a\x5a\xe2\x32\xad\x4e\xce\x81\xbd\x07\x00\xcc\xe7\x73\x79\xeb\xd6\x2d\xec\xed\xed\x89\x1f\xfd\xe8\x47\x12\x00\xbe\xf9\xcd\x6f\xea\x09\xaa\x4d\xec\x0b\x38\x93\x12\x60\x17\x1c\xa7\x94\xc2\x7c\x3e\x97\xff\xf9\x9f\xff\x69\x9e\x5d\xbf\x7e\x1d\xf3\xf9\xbc\xb1\xcf\x07\xf2\xce\x5d\x1d\xb3\x12\xaa\x87\xba\xb8\x1b\x89\x83\x34\x4d\xf5\xb9\x48\xc6\x4f\x39\x9c\x74\x50\x63\xd8\xb8\x9b\x37\x6f\x72\xb0\xc2\xd3\x6d\xca\x8b\xef\x16\x65\xd3\x7d\x3f\x07\x31\x84\x4d\xb8\x26\xc6\x25\x84\x6a\xeb\x94\xad\x51\x6a\x6c\x1f\x03\xc7\x99\x89\x8b\x70\xf7\x71\x01\x18\x20\x30\x1d\xc9\xf6\x3e\x8f\x69\xe6\x11\x72\x14\x02\xd3\x3d\x9d\x8e\xe9\x59\x4a\xbc\x83\x12\xa3\x51\x3d\x41\x6b\x05\xae\x2a\xd3\x76\x2d\x15\x3e\x54\x14\x60\x5c\x9c\x8a\xf7\xc6\x15\xb9\x6b\x43\x9d\x6d\x9d\xdd\x8f\xb7\x89\x49\x69\x72\x75\xe0\xa8\x0e\x6d\x2f\x0a\x3c\x0e\x62\x5d\xd4\x75\x90\xb6\x32\xf8\xef\x9b\xee\x9b\x3a\x48\x53\x99\x6a\xf3\x73\xf7\xdd\x77\xa3\xd3\xe9\x54\x56\x11\xe9\xb6\xee\x82\x17\xb3\xfd\xbf\xe3\x0a\xc5\x69\x1b\xb9\xd3\x9e\xc0\xda\xbd\x06\x2b\x60\x43\x20\x9c\xde\x0f\xc5\x0b\x07\x07\x31\xa5\xee\x0e\x93\x52\x25\xa0\x85\xeb\xfc\x96\x83\x82\xe0\x8a\x24\x1f\x48\x70\x56\xc1\xc6\x66\xe9\x19\xd3\xcf\xfc\xc2\xf2\x42\xbb\x25\xb2\x13\xe7\xfd\x7a\x22\x37\x4d\x9d\x06\x34\x90\xd2\xc3\xc6\x7a\x67\x14\xb6\x39\xa6\x52\x82\xa4\x8a\xa1\xec\xaa\xa2\x32\xea\x56\x0a\xbf\xc1\x9f\x0b\x5c\x8a\x53\x7b\xfb\x00\x62\x3d\xcc\xc5\x27\x38\x73\x03\x89\xbd\xf5\xbe\x3f\x2a\x23\x8b\x3e\xf3\xe5\xd4\x13\x55\xdb\x81\x3b\x14\x55\xfa\xf5\xbe\x93\x03\xec\x88\xe5\x4d\x21\x89\x24\x0a\xf0\x85\xca\x7e\x37\xbc\xdc\x8b\xf4\xfb\x3a\x03\x0e\x00\x84\xde\x33\x05\x00\x7e\xf1\x8b\x5f\xf0\xa1\x23\x3c\xfc\xf0\xc3\xfa\x50\x53\x27\xad\xb6\x61\xbd\xcb\x97\x2f\xcb\x77\xdf\x7d\xd7\x66\x48\x4a\x5c\xbd\x7a\xf5\x0f\x35\xb0\xb8\x3b\x88\x61\xe5\xeb\xda\x83\x1a\x9e\xc6\x35\x94\xc1\x4f\xa7\xc9\x1d\x04\x50\xf1\xfc\x35\xe9\xa8\x45\xe4\xea\x1d\xe9\x92\xb6\xb3\x8a\xea\x84\x7d\x48\xf9\x38\x74\xb9\xf7\xcc\xa5\xf4\x0a\xc6\x45\x68\x8a\x93\x4f\xb6\x53\x8a\x09\xdb\x00\x45\x6b\xdf\xf9\xd6\x19\x9c\x38\xc8\x98\x8b\x6e\xde\xfc\x78\xbc\x28\xec\x7b\xb8\x1d\xc1\x79\x5d\x2e\x85\x56\xa4\x78\x7d\x18\xe6\xe5\x8f\x30\xc7\xa5\xee\xa3\xd6\x29\xe0\xba\xb0\x75\x02\x15\x58\xbc\xa1\x35\xb1\x3c\xa1\x7c\x23\xf0\xae\x0e\x40\xd4\xf9\x0b\xb9\x50\x1c\xfa\x7a\x11\x61\x59\x97\xd7\x50\x3a\x75\xa0\xbd\x36\x5f\x7c\x75\x03\xf3\x5b\xb0\x8d\x25\xeb\x62\xfd\xc2\x51\x58\xa8\x28\x61\x38\x0d\x4e\x05\xfc\x39\x9e\x1c\xbf\x56\xe1\x39\xe9\xf8\x28\xa8\x1a\xd4\x49\xcb\xf4\x2e\x03\x32\xfc\x0e\xe2\x69\x50\x1b\xd0\x8b\xb8\x08\xcb\x57\xb8\xd8\xa1\x0c\x6f\x75\x0c\xb8\x22\xd5\xf3\x38\x8a\x6b\x3e\x00\xe5\x4c\xcc\x65\xca\xdd\x96\xd1\xa9\x85\xf2\x65\x25\x63\x3c\xcb\xc5\xf6\x0c\xea\xc0\x80\x85\xbb\x10\x5b\x53\x5c\x97\xbb\x85\x0b\x49\x09\x29\x8a\x35\x70\x84\x53\x17\x0c\x3c\x94\x6c\xb3\xc3\xc2\xe8\x22\x94\xe0\x45\x97\x84\x9f\xbc\xad\x27\x6d\x3b\xb2\x4b\x83\x1d\x26\x4f\x89\xa5\xc1\x9d\x66\x61\xec\xc4\x71\xf0\x1a\x14\xa4\x48\x08\x90\x3d\x79\xd8\x93\xeb\x07\x70\x75\x6c\x44\xe8\x3d\xde\x7f\xff\x7d\xe7\x7e\x32\x99\x88\x8f\x3f\xfe\xb8\xe2\xaf\xcd\xdd\xb8\x71\x03\x9f\x7c\xf2\xc9\xa2\x61\xee\x08\x44\x78\xae\xcd\x30\x6d\xba\x5f\x84\xe1\xf0\xc9\x83\x26\x83\xb3\x2d\x6f\x07\x95\x9f\x6d\xf1\xdf\xc9\xbb\x45\xeb\xaa\x91\x71\xa9\x63\x57\x7c\xbf\x46\xe1\xf0\x86\xdc\x30\x2e\x6c\xa9\x67\xd6\x41\xc3\x34\xa8\x67\x45\xc1\xb7\x1e\x3d\xff\x36\xea\x60\x5c\xca\xb9\xb7\x79\x00\xf4\x58\x30\xdb\x61\xb4\x26\x1e\xaf\x08\x07\x71\x07\xf9\x50\x21\xd7\xd4\x68\x16\xfe\xe0\xec\x79\x88\x75\x58\x24\xee\x36\xe5\xef\x03\x15\xff\xd9\x9d\xe4\xd3\x4f\xbf\x2d\xbd\x36\x17\x02\x53\x8b\xa4\x1f\xf4\xeb\x83\x75\x2f\x9f\x8e\x7f\x6d\xd1\xba\x0b\x90\x59\x5c\xc5\xf8\x89\xd7\xc0\x3d\x5f\x8a\x31\x06\x81\xc9\xaf\xbe\x73\x15\x60\x95\xda\xf0\x9f\x38\xe4\xa3\x97\xc9\x9a\x11\x0b\x57\xc3\xd6\x7a\x72\xf3\x68\x26\xe8\xd6\xa4\xad\x82\xf1\x54\x99\x22\x4f\xc1\x96\x8c\x8c\x7e\x19\x9a\xd3\x63\xc1\x82\x32\xf2\x47\x6f\xad\x5f\xf9\x6e\x07\x55\xce\x21\x00\xc3\xff\xbc\x5c\x37\x38\xc3\x1a\xc1\x4a\x26\x62\x61\x6d\x81\x4d\x00\x3d\xc9\xb7\x1a\x8f\x0b\x48\x78\x1b\x6c\x21\x2a\x6c\xdd\x92\x82\x84\x82\x6a\x2c\xd7\xc2\xee\x4e\x18\x0d\x00\x10\x57\xaf\x5e\x35\x6c\xcc\x1d\xc6\x53\x27\x2f\xee\x34\x4f\x75\xee\x4e\x98\x90\x36\x96\xa2\x2d\xee\x45\xd3\x6c\x4b\xe3\xa0\xfa\xaa\x4d\x06\x1f\x54\x46\x37\xba\x3a\x65\xc5\xaf\x9b\x94\x5b\xc5\x69\xcb\xd3\x1b\xf3\xaf\x0c\xd9\x14\xcf\x5c\x43\xcd\xca\x7e\xa5\x87\x63\x1c\xff\xe5\xab\x92\x08\x75\x7b\xa7\x06\x3f\x7e\x47\xd4\xbb\xea\xfa\x74\xba\x2a\x13\x20\xdd\xa1\x15\xac\x29\x63\x90\x95\xbd\xf6\x65\x01\x05\x1e\xfa\x4c\x53\x83\x0b\x29\xfe\x36\xf6\xa1\xad\xc1\xf9\xfe\x0e\xf2\x3e\x04\x4e\xeb\xd8\x86\x36\x45\xaf\x7f\x17\x05\x59\x7e\xdc\x4d\x1d\x52\x06\xfc\x34\x01\x30\x2e\x54\xfd\x70\x75\x8c\xd1\x81\x41\xa0\x37\xa7\xab\xe2\x41\x09\x40\x11\x52\x00\x92\x4a\x3f\xa4\x54\x55\x75\x99\x46\x4c\x65\x3b\x47\xf9\xeb\xb2\x04\xfc\x30\x3e\xa5\x87\x55\x8d\x31\xc0\xac\xe5\x12\xd7\x38\xab\x89\x51\x3e\x34\x4d\x3c\x30\x61\xb8\x88\xc8\x46\xca\x94\xa4\x03\x68\x00\x96\x2e\xeb\x60\x3a\xad\x32\xbd\x3a\x00\xe2\x33\xa2\xba\xa4\xaa\xd4\xd0\x64\x82\x55\x6a\xc0\x3e\x57\x0a\xc4\x32\x47\x3c\xdb\xa5\xe2\x57\xba\x2c\x65\x7f\xb6\xdb\x35\x94\xf7\x44\xe5\x66\x92\x6d\xe6\x4a\xc5\xb5\xc9\xc3\xa2\xfd\x51\xf1\xe1\xa5\x50\x59\xb1\xff\x13\x99\xe1\x70\xd2\xb2\xc9\x41\xaf\x3c\x7f\x25\x73\xa4\xec\x67\x23\x55\x2e\x60\x27\xc5\x18\x35\x65\x82\xda\xb8\x94\x6d\x4e\xec\x3b\x99\x36\x08\x2d\x69\xcb\x38\xf4\x3f\x1d\x97\x89\x46\x01\x80\xcc\x8b\xc3\x65\xa5\x2c\x01\x9e\x27\xe3\x16\x01\x2f\x21\x39\xd2\xc4\x0a\x87\x5c\x1d\xbb\x7b\x90\x3c\xd4\x31\xd2\x4d\xb2\xe9\xa0\xe5\xf3\xcb\xb6\x08\x9b\x1c\xca\x03\xf7\xd3\x26\x1f\xdb\xc0\xf6\x22\xf2\xbd\x2e\x0f\x8b\xc4\xdd\x14\xce\x67\x87\x42\x6e\x91\xe7\xa2\xce\x63\x53\xe5\xfb\x19\x41\xe0\xba\xd1\x29\xf6\x07\xf8\x2c\x89\x62\x40\x42\x39\x72\xd0\x38\xd6\x99\x75\xc7\x31\x27\x7a\x28\x55\x01\x0f\x44\xc4\xa8\x52\x6d\x41\x96\xc2\x8e\x98\x84\x23\x80\x98\x75\xc3\xd3\xd2\x9d\x5d\xe7\xdb\x1e\x5b\xe0\x5a\xda\xa1\x49\xb9\x2d\xe3\xae\x4d\xa8\xf6\x8f\x89\xfc\x81\xc5\x40\xea\xa2\xef\xff\x90\x3c\x2e\xd2\x49\x9a\xde\xb7\x85\xf7\xf3\xdd\x46\x57\x1e\x94\x2e\xad\xf8\x09\xad\x2c\x33\x60\x86\x00\x29\x20\xa5\x30\xdb\x67\xeb\x40\x2e\x58\xe7\xe0\x82\x2b\x84\xf2\x99\xc6\xd0\x5c\x27\x19\xa0\xee\xe4\x85\x05\x53\x4c\x19\xb1\x77\x8e\x3f\xc5\xda\xb0\xa3\xf4\x8c\x39\x61\xcb\xe6\x17\x9c\xbd\x70\xa0\x85\xc6\x11\x7e\xba\x1a\x54\x79\xa0\xde\x0c\x5b\x30\x03\xc3\x01\x3b\x1c\x1c\x81\x31\xa7\x1a\x9d\x95\xa6\x4c\x01\xe4\x50\x62\x33\x65\xb2\x6f\x00\x00\x31\x36\x46\xe9\x7c\x92\x54\x84\x4c\x09\x64\x26\x9c\x93\xb7\x76\x03\x84\xcb\x9d\x1a\xff\x42\x0a\x95\x65\xf6\x6c\xb3\xa2\x5e\xca\x7f\xc6\x6e\xd2\xc0\x44\x83\x3d\xd8\xba\xd4\x9f\x83\x78\x40\x87\x06\xb3\x4c\x14\xab\x32\x38\x9f\xd3\x31\xc8\x74\x5d\xbb\xdf\xb8\x88\x9a\xdc\x78\x0a\x19\x2a\x73\xa1\xd2\x34\x56\xa9\x39\x86\x81\xc2\xdf\x33\x54\xfe\xf2\x37\xa4\x38\x0f\xca\x3a\x37\x3d\xab\x53\x8c\x8b\xf8\xe1\xcf\xea\x98\xe4\x45\xfd\x6a\xff\x75\x86\x52\x5b\xdc\xfa\xd9\x41\xcb\xd6\x14\x5f\x9d\x9f\xa6\x21\xa3\x50\xfa\x6d\xe0\xc7\x7f\x16\x02\x54\x4d\x69\x70\xbf\xa1\xb2\x4a\x3f\x50\x28\xa1\x50\xe5\xd7\x56\x8a\xbb\x9b\xad\x0a\xfe\xf2\x78\x94\x27\x14\x5d\x96\xd3\x55\xf8\xc1\xbe\xa1\xc1\x81\x23\x99\x99\xc5\x09\x36\x4e\xac\xec\x64\x35\x33\x4b\x0d\x5a\x58\xe8\x30\xee\x59\x1f\xc6\x90\x63\x16\x70\xf9\x4e\x94\xe7\x2d\x89\x86\x32\xd6\x3e\x63\x6e\x11\x44\xde\xd4\x41\x0e\x12\xc6\xef\x08\x07\x49\xbb\x2e\xce\x83\x52\xab\x3e\xbb\xa1\x7f\xeb\xca\x76\xa7\x14\x74\x28\x8e\x45\xeb\x6f\x51\xcb\xc8\x71\x41\xc0\xac\xdb\x85\x80\x34\x8a\xd1\x51\xff\xd6\x62\x36\x20\xba\x30\x87\x39\xc9\xe1\x29\x2c\xf7\xda\xa2\x69\x1e\x6b\xe9\x8f\xca\x78\x59\x92\xca\x28\x7b\x18\x94\xc0\x47\x9c\x8c\xe3\x60\x83\x2b\x4d\xde\x67\xcb\x30\x1a\x2c\x68\x74\xc5\xba\x61\x55\x01\xc3\xf6\x27\x3f\x29\x13\x56\x39\xf0\xa4\x12\x4e\xf7\x67\xae\xa6\x49\x69\x60\x52\x24\xe6\x0e\x8b\x70\xca\xc1\x96\xc9\xd4\x4f\xf1\x7d\xa4\x61\xb2\xfc\x34\xeb\x9d\xf0\xfd\xd5\xf9\xcf\x84\xca\x66\xb1\x1c\x4b\x81\xcc\x93\x6c\x45\x38\x5d\x77\x26\x42\x9d\x73\x97\x99\x53\xca\x65\x9b\x95\x53\x3c\x3d\x2c\xa6\x0d\x39\xeb\x87\xcc\x7b\x32\xfe\xf5\xbc\x17\x5f\xd6\xb2\x6c\x19\xbc\xa3\x48\x65\x69\xac\xc6\xb3\x58\xa6\xd2\xf3\xee\xb4\xf5\xb0\xbc\xe3\x7d\xbe\x4e\xb7\x84\xfc\xeb\x30\xa1\xe7\xbe\x22\xf5\xe3\xae\x8b\x8f\x3f\x0b\x85\x0d\xc5\xed\xbb\x3a\xb9\x17\xca\xb7\x2f\x83\x16\x05\x00\xa1\x34\x75\xb8\x45\x98\xe3\x83\xc4\x57\xe7\x0e\xc2\x66\xf1\x72\xf9\x71\x37\x95\xd9\x07\x2b\x4d\xdf\xd8\xf8\xad\xb3\x5e\x9b\x3e\x58\xed\x7d\xc3\x32\x60\x7b\x4f\x4a\x16\x74\xa9\x05\x1c\x56\xbe\xba\x4b\xff\x0a\x4b\x46\x87\xaf\x66\x86\x3f\xd2\xac\x0b\xf1\x77\xc4\xee\x89\xdc\x30\xca\xce\xea\xd7\x32\x97\xfc\x7c\x07\x05\x39\xca\x9c\xeb\xbd\x18\xc2\xc3\x62\x7c\xf7\xe0\xd2\x85\x1a\x53\x87\x32\xe3\x5b\x00\x00\x20\x00\x49\x44\x41\x54\x9b\xb5\x1f\x6a\xe8\x8b\x28\xdb\x3a\xeb\x20\x44\x8f\xb6\xc5\xd3\xd4\xc0\x43\x20\x84\xc7\x55\x87\xbe\x9b\x3a\xb0\x9f\x5e\x08\xad\x87\xe2\xf6\xd3\x08\xe5\xb9\x09\xb8\xb5\x75\x4c\x3f\xff\xc6\xbf\x3f\x54\xe4\xb4\x03\x00\x4a\x90\x2c\x87\x8a\xe0\xa9\x69\x17\x9d\x38\x4e\x59\x42\xb0\xb8\xad\x3a\xd3\x68\xb5\x12\x37\x6a\xba\xcc\x57\x79\xc7\x9b\x34\x8f\xd4\xa2\x26\x0b\xea\xfd\x74\x18\x20\xb1\xe9\xea\xb6\x1d\xca\xb9\xd3\x51\x0c\x00\xe1\x30\xc2\x49\xc2\x6a\x55\xab\x80\x79\x47\xd6\xef\x5d\x9a\xc5\x28\x60\x18\xc3\xa3\xca\x26\x14\x79\xf4\x32\xa9\x57\x33\x99\xea\x22\xa9\x88\x52\x29\x68\x56\x6e\x6f\x80\x90\x6b\x98\xc3\x54\x9d\xe4\x1a\x88\x23\x8d\x64\x3a\xea\xc8\x61\x46\x6a\xaa\xab\x53\x7f\x1f\x8b\x1d\xac\x31\x65\x97\x43\xf3\x52\xeb\xb4\x2c\x10\x33\x46\x19\x18\x28\x36\x67\x5a\xb1\x15\x67\x2e\x56\x64\x73\x05\xed\x81\x9b\xaa\x4c\x1b\xca\x02\x6a\xa5\x14\x14\x01\x99\x50\xd3\x69\x27\x1f\x4e\x3a\x72\xaa\xc8\x2d\xa3\xdf\xfe\xd9\xbb\x45\xe5\x92\xef\x16\xe9\x8b\xbe\xbb\x93\xb8\x7d\x30\xd0\xa4\xc4\xdb\x00\xd4\x22\xf9\xba\x13\xf9\xbb\xa8\x6b\x2b\x7f\x1d\x38\x6b\xcb\x43\x93\xff\x3a\xe0\xd7\xe4\x16\xd1\x27\x7e\xdc\xb5\x91\x34\x25\x72\x27\x4c\x80\x71\x7e\xa7\x96\x04\x48\x82\x84\x5d\x91\x63\xac\x06\x6b\x6d\xd8\xb0\xe4\xcb\x24\x36\x3e\xef\x84\xe7\x1d\xbd\x95\xb9\x04\x34\x55\xaf\x7b\xab\x0b\x82\x1a\xa2\x28\xf2\xa9\xf7\xe7\xa8\x2d\x7b\xdd\xe6\x47\x81\xeb\x26\x17\x6a\xe8\x4d\x88\xb4\x2e\xcd\xb6\x30\x4d\xf1\x2c\x6a\xbd\x84\xe2\xac\x4b\xa3\x2e\xce\x26\x86\x6f\xd1\xb8\x43\x7e\x17\x89\xfb\x20\x75\xe9\x58\x6b\xfe\x50\x91\xe3\x08\x52\x46\x94\xa9\x08\x63\x05\x48\xde\xb2\x98\xae\x0a\x38\x72\x95\x0d\xf3\x67\x87\x0f\x14\x7b\x59\xfc\x35\x35\x7d\x47\x51\xda\xa7\x2c\x45\x15\xce\x8f\xbf\x57\x00\xe9\x38\x9a\x52\x33\x9d\xd8\xa1\x80\xb8\x8e\xf6\x15\xb6\x65\x0c\x78\x78\x9d\xa6\x8d\xc3\x49\x43\xbf\xe2\x00\xc5\x61\x5b\x7c\x38\x57\x0a\x08\xad\xff\x01\xc8\x08\x99\x8c\x90\x01\xe4\x6f\x5a\x66\xda\x42\x4b\x7f\x36\xae\x6e\xf7\xd6\x69\x47\x4e\x6f\xf7\xe7\x3b\x69\x2c\xf7\xcc\x30\x9f\xce\x0a\xff\xf5\x8a\x48\xca\xd9\xce\xcf\x96\x84\x88\x55\x09\x99\xd5\x45\x9a\x50\xd2\x05\xf7\xc8\x35\xc7\x85\x8c\x3c\x3d\xac\x66\xfd\x14\xe9\x64\x42\x8d\x87\x49\x7e\x63\xdc\xc9\xc7\x80\x7b\xa0\x2c\x5f\xaa\xac\xf3\xe3\xd5\x51\x13\xf3\xdb\xe4\x7c\x0b\x3c\xa4\xf4\x16\x51\xb4\x8b\x80\x8e\x83\xb8\x3a\x03\x68\x11\x06\x69\x51\xf9\xd9\x14\x47\x5d\x5e\x9a\xe2\x6c\x03\x66\x6d\xe9\xb4\x85\x59\xb4\x5e\x17\xd1\x31\x4d\xef\x24\xb0\x18\x45\xdf\xf4\x31\x9c\x0c\xd7\x8d\xef\x56\xe6\x9e\xa0\x38\xeb\x87\x8b\x5d\xee\x2a\xe4\xa5\x23\xc3\xa8\x1a\x00\xd5\x4e\xe8\x3b\x7f\x32\xaf\x79\xc6\x04\x9d\x7e\x4a\xae\x27\xf7\xd2\x18\x87\x56\x9c\xe8\xf2\xb5\x8c\x8f\x2f\x32\xec\xe2\xd3\x8b\x8b\x0c\xc5\xd4\xb1\x0f\xa1\x74\x16\x19\x9e\x69\x8b\x3b\x74\xbf\x48\x3b\x6a\xa2\x2f\xeb\x68\xd5\xa6\x70\x75\x65\x09\xc5\xd1\x14\x77\xa8\x0c\x07\x89\xbb\xd5\x4a\xcf\x3b\x48\xf3\x0e\x0d\xe1\x4f\x00\x2d\x1b\x94\x33\xea\xa1\x4d\xdf\xd2\x55\xda\xa2\xe2\xac\x89\x47\x93\xf0\x89\xaa\xa5\x3f\x6d\x41\x2b\xf6\x8e\x42\x9d\x4b\x5b\x0f\x3c\x3f\xe5\x1f\x3f\x36\xc3\x84\xe2\xe7\x88\x29\x65\x34\x23\x67\x49\x6d\xb4\xf6\x1d\xb1\x88\x89\xe5\xdb\xb1\x16\x14\xef\xaf\x9a\x9a\x50\xf6\x9a\x23\x12\xa5\x82\x7e\x88\x4a\xc6\x4a\x1b\x25\x95\xfa\x35\x1d\x39\xcd\x63\x1a\xe7\x1d\x31\x56\xc2\xf9\x8e\x77\xa2\x4c\x9c\xb3\x7a\x94\x52\x46\x46\x8e\x3b\x72\x7a\xa3\x3f\xdf\xde\xef\xe6\x5b\xb9\x50\x53\x5b\x91\xf6\x97\xa7\x6e\xb2\x18\x02\xac\xf0\xaa\x00\x70\x48\x37\x5d\x5e\x9f\x61\xd1\x01\x2a\xc3\x77\xca\x8d\xdb\x47\x49\x92\x94\x1c\x25\xf9\xce\xad\xa5\xec\xfa\xb4\x23\xa7\xac\x5c\x75\xf5\xe0\xbb\x26\x43\xe5\x4e\xc2\x01\xed\xec\x46\x9d\x0e\x5b\x44\x26\xd5\x19\xe5\x75\x6c\x4d\x9d\x5b\x44\xc6\xea\x67\x8b\x82\xb9\x26\xff\x6d\xc0\xae\x49\x06\x87\xe2\x6e\xf3\xdf\xa6\x4f\xfe\x10\xff\x8d\x69\x2f\x82\xd6\xda\x40\x4c\x85\x11\xf0\xe7\xb3\x70\xfa\x9c\x5b\x04\x75\xc6\x66\x41\x7f\x6a\xdf\xd6\xd5\x29\x88\x5a\xa3\xd5\xf1\xc3\xad\xe2\xfa\x67\x3a\x36\x93\x07\x62\xc2\x01\x28\x37\xde\x32\x73\x5c\x0a\xbf\x35\x54\xb1\x47\x9b\x72\xeb\xa3\x8d\x45\x58\x84\xba\x0c\x85\x0b\xc5\x59\xf7\x7b\xa7\x71\xf3\x36\xd1\xc6\xd4\x2c\x62\x81\x34\xe5\xcb\x07\x6e\x6d\x4c\x4a\x53\xbe\x42\xac\x4a\x13\xa3\x13\xca\x4f\xc8\xbf\xf0\xad\x4f\xae\xb0\x00\x48\x05\x92\xf3\x84\x76\x8a\x95\x2b\xcc\x15\x0d\xca\x99\x13\xc2\xd9\x85\x4a\x73\x37\xfe\x18\xb3\xe2\x6c\x51\xcb\x68\x84\xd2\x9f\x9d\x98\x5a\x9a\xf8\x7c\xe2\x83\x1f\x37\x58\x18\xf6\x17\x9c\xb6\x61\x86\x23\xca\x7f\x7c\xa8\xcc\xf8\xd1\x50\xc8\xbe\xb3\xcc\x90\xce\x0f\x6c\x02\x7a\x72\xbc\x63\x9b\x68\x7f\x36\x33\x4e\xd9\x89\x0a\x60\x65\xca\xce\xae\x75\x06\xb5\x66\x57\x2c\xbe\xb2\x0e\x65\x44\x69\xde\xa1\x61\x1e\x23\x05\x48\x7a\x4a\xf9\x20\xca\xa4\xd2\x4e\x88\x9d\x3e\x8c\x82\x75\x19\xde\x5a\x9a\x7f\x92\x45\x72\xca\x03\xfa\x06\x9c\x95\x35\xf6\x9e\x57\x93\xf6\xeb\x84\x63\x55\xa9\x65\xac\xff\xdd\x2a\xcf\xc9\xad\x12\x8e\xed\x78\xbe\x32\xa1\xc6\x7b\xbd\xfc\xfa\xee\x52\xb6\x9d\x46\x2a\xf5\xca\xd5\x54\x0f\x77\xea\x0e\x12\xc7\xa2\x32\x26\xf4\x7c\x51\xb9\xa9\xaf\x0f\x22\x3f\xdb\xea\xc7\xd7\xab\x6d\x60\x6e\x11\xff\x07\x01\x82\x8b\x00\xf2\x90\xff\x3a\xc0\x78\xd0\x6f\xb6\x08\x96\x08\x39\x01\xb4\x1f\xb2\xa8\x15\x87\xaf\x10\xea\x98\x00\x89\x00\x75\xee\xed\x26\x2b\x15\x94\xe4\x42\x5c\x5b\x57\x05\x58\x60\x82\xb3\x42\xbd\xb8\x4e\x19\xeb\x93\xa5\xe7\x05\xe1\xf7\xb5\xf3\x65\x54\x8d\x70\x0e\x44\x44\xe5\x58\x94\x28\xb6\x71\x37\x08\x92\xef\x61\xd3\x34\xd7\x07\xed\x08\xbd\x62\xc5\xb5\x84\x39\x88\xe3\xdf\xf3\x0f\x11\x3a\x07\xe9\x2c\xdc\xdf\x41\xca\x72\x27\x65\x3e\x48\x98\x3a\x00\x79\x60\x57\x1e\xfb\xe0\x7f\xff\x42\x71\xa9\x62\xa3\xc2\x79\x97\xf6\x94\xa0\x14\xb9\xea\x3b\x8d\x92\x37\x4e\x7f\x5e\x98\x93\x88\x7d\xa0\x1c\xff\xf5\xf4\x23\xc3\x2f\xb0\x73\xba\x3c\xab\x41\xd9\xed\xfd\xbd\x42\xd9\xc8\x34\xbb\x02\x94\xbb\x49\x53\x35\x59\xd6\xb9\xfc\x1d\xfe\x0d\xe3\xc1\xe3\x09\xe6\x95\xd8\x23\xcf\x18\x60\x71\x99\xf3\x87\xbc\x49\xbe\x36\x62\xdd\x59\x81\x60\x5d\xeb\xec\x12\xa0\x04\xa6\x79\x07\x63\x19\x53\x0a\x82\xa4\x02\xbc\x18\x7f\xfe\x30\x48\x8d\x33\x3b\x86\x73\x10\x5b\xfe\x65\x00\x32\x10\xb2\x49\x47\x0e\x6f\x0c\xe6\x5b\xf7\xef\xaa\x9d\x6e\x86\x35\x5b\x9e\x70\x36\xb5\xf1\xe4\x17\x13\x08\x36\x17\x83\x4b\x2d\xbb\xc2\xbe\x6d\xc8\x3f\xaa\xf7\x0e\x8e\x2c\x9f\xcf\x62\xb9\x77\x7b\x29\xbb\x3e\xea\xe6\x7b\x05\x6b\x58\x94\x49\x83\xbc\x16\x20\x03\xb4\xcb\x9d\x3a\xff\x4d\xae\x49\x4e\xde\x49\x3a\x7f\x2c\xd9\xbb\x68\x98\x90\x81\xd6\xa4\x67\x5b\xe3\xfc\xfa\xd7\xbf\x2e\xf4\x11\x24\x81\x3c\x39\xee\x87\x3f\xfc\xa1\x7f\x1e\x53\x28\x5f\x6d\xee\xa0\x75\xdc\x64\x94\xfa\xef\x1b\xaf\x43\xc0\xa5\xae\xd2\xea\x98\x17\xfe\xce\xf8\xf1\x4f\x8a\xd6\xf7\x52\x9f\xf1\xc3\x22\x70\xc4\x26\xef\x34\xe4\x8e\xd9\x57\x40\x80\x6f\x7d\xa2\x5e\x08\x18\xca\xba\x7c\xe2\x5b\x2b\x26\xdf\x28\xa7\x08\xf3\x09\x67\xdc\x4f\xf1\x2b\x48\x41\x88\x16\x2a\xf0\x80\xcb\x04\xfd\x4e\x84\xc0\xbb\x83\x76\xa4\x10\x63\x11\xea\x24\x15\xd6\xac\x26\x0f\xfa\x9a\xc7\xed\xa7\x11\x12\x06\xfa\xb7\xce\x7f\x28\x6f\x75\x88\xbc\x2e\xef\xa1\x76\x1b\xaa\xd3\xb6\xfa\x6b\x8b\xdb\xdc\xbf\xf4\xd2\x4b\x78\xe1\x85\x17\xe4\x60\x30\x70\xea\xca\x59\x12\x0d\x92\x20\xc8\xf9\x92\xd8\xd5\x7b\xb9\x80\x94\x30\x00\xdd\x03\x20\xe6\xb6\x32\x6e\xa0\x7f\xab\xfb\xae\x98\x77\x95\xee\xc1\x28\x43\xb7\x91\x33\x05\x65\xd7\xde\x69\x43\xc0\x01\x05\xcc\x9c\x37\x7d\x92\x29\x41\x7b\x6d\xc1\x0c\xf1\x34\x6c\x40\xe8\x21\x20\xab\x58\xf5\xd6\xf4\xe4\x19\x20\xaa\x52\x1e\x17\x5a\x79\x77\x9c\x4d\x81\xf2\xca\xc1\x6a\x43\x83\x00\x36\xf9\x54\x0a\x9a\xe6\x1d\x1a\x16\x73\x5c\x82\x4c\xc9\x42\x2e\x00\x70\xb4\x82\x37\x00\x66\x16\xcb\xe9\xf6\x60\x7e\x6d\x77\x29\xbb\xb2\x3c\x8b\xee\xe9\xe4\xd4\xe3\x75\xe6\x7c\x7b\xa7\x2e\x1b\x36\xf3\xd4\xe1\x8a\x2b\xeb\x4f\xa1\x00\x2d\x75\x74\x0e\x5c\x43\x4e\x3f\x2e\x0e\xca\xb4\xdf\x30\x17\x2a\xdb\xeb\xe6\x5b\x37\xfb\xf3\x4f\xca\xf9\x2d\x99\xfe\xd3\xf5\xe4\xaf\x26\x7d\xfb\xed\xb7\x9d\xad\xf5\x59\xbd\x84\xe4\xdc\x22\xfd\x31\xd8\x9f\x4f\x9c\x38\x81\x47\x1e\x79\xc4\xf7\xeb\x5c\xff\xf6\xb7\xbf\xc5\xf6\xf6\x36\xcf\xc3\x22\xae\x2d\x5f\x4d\x65\x58\x44\x0e\xf9\xf5\xb0\x08\x38\x71\xe2\x58\x5d\x5d\xc5\xe7\x3f\xff\x79\xc7\x83\x7f\x04\x49\xdd\x7c\x2b\x00\xe2\x1b\xdf\xf8\x86\x73\x3c\xcf\x5b\x6f\xbd\x85\xcb\x97\x2f\x87\x64\xeb\xa2\xdf\x6a\x11\xbf\x07\x01\x31\x8d\xf5\xd7\xc4\xb8\x84\xd0\x50\x9d\xb2\x93\x80\x19\xdf\xe5\x96\x87\x71\xbc\x63\x97\x6c\x8b\xe4\x72\xd5\xc1\x05\xba\xf3\x04\x3a\xb2\x13\xa7\xf7\x0b\xb8\x2c\x0c\xef\xb3\xdc\x8a\x0b\x59\x2b\xd6\x90\xd4\x12\x83\x59\x86\x9a\x3a\xd5\x79\x02\x8a\x53\xae\xa5\x7b\x4e\x87\x3e\xbb\x83\x83\x36\x6f\x86\xfd\x22\x08\xb3\x0e\xb4\xf8\xfe\xfd\x0e\xd0\x04\x20\xfc\x34\x9b\x86\x60\x9a\xd2\x0e\x81\xd7\x45\xca\xd4\x94\x56\x9b\xff\xb6\x0e\x7e\x27\xa8\x5d\xdf\xb7\x95\xa7\x29\x6e\x5c\xbd\x7a\x55\xce\xe7\x73\xc1\x87\x06\x99\xbf\x92\x71\x51\x12\x84\x2c\x5d\x12\xb7\xf3\x98\xf6\xe2\xb9\xda\x80\x22\x61\xe9\xfa\x00\x18\xf7\xcd\x6c\xf2\x3d\xa0\x61\xa8\x07\xf6\x3d\x9f\xd8\x50\xf6\xa3\x6a\x3b\xb7\x81\x0b\xa5\xee\x9d\x8f\xc3\xae\x8d\x72\xf3\xa2\x75\xfc\x1a\x4f\xb6\xcf\x99\xe1\x08\x38\x07\x1b\x42\x69\xc0\x61\x3d\x94\xf9\xa3\x6a\x79\x78\xc1\xbc\x31\x13\x13\xa6\x7c\x60\x98\x07\x9e\x1f\x9d\x6f\x06\xb4\x14\x80\x3c\xa6\x61\xd6\xa1\xa1\x14\x54\x80\xca\xf2\x8f\x31\xc5\x8d\x0a\xef\xf6\xed\xdb\x38\x77\xee\x1c\x9e\x79\xe6\x19\xa0\x2a\x23\x0d\x68\x01\x90\x49\x42\xba\xdf\xcd\x76\xaf\xac\x4e\xdf\xd9\x18\xc5\xa7\x62\x19\x1f\xe7\x55\xc7\x87\x70\xdc\xb2\xd6\x6c\xff\x0f\xdb\x0c\xcc\xc1\x96\xac\x5e\x1c\x83\x8b\x7d\x17\xe3\x85\x5f\x57\xbe\x5b\x11\xe7\xa4\x23\x77\xb6\x07\xe9\xc7\x37\x97\xe7\xd7\xd2\x58\x4d\xe1\x82\x31\x1f\xe8\x81\x88\x70\xeb\xd6\x2d\xdc\xbe\x7d\x5b\x47\x5d\xa7\x08\x81\xf6\x7e\x6e\xae\x9f\x79\xe6\x19\xd1\xeb\xf5\x78\x7c\x58\x5f\x5f\xc7\x5d\x77\xdd\x15\x4a\xc3\x5c\x0b\x21\xe4\x70\x38\x74\xc2\xed\xee\xee\xe2\xfc\xf9\xf3\x07\x01\x32\x4d\xae\xce\x08\xd3\xf7\x7e\x1b\x3a\x48\xba\x8e\xdf\x13\x27\x4e\x88\x93\x27\x4f\x02\x00\x96\x96\x96\x70\xe2\xc4\x89\xa0\xe1\xec\xaf\xf0\xf2\x74\xb1\x00\x20\x8f\x1f\x3f\xee\x8c\x8c\x24\x49\x22\x1f\x78\xe0\x01\x01\x14\x47\x23\x5c\xb8\x70\xc1\x4f\x7f\x11\xc0\xd1\x56\xde\x45\xbe\x77\xc8\x55\xe2\x68\x1b\x2a\xe2\x09\x34\x21\x4b\x00\x46\x71\x3b\x81\xd9\xe9\xc9\x85\x7f\xb2\x43\x45\xfa\xf0\x33\x3e\xff\x85\x60\x11\x3f\xa7\x9c\xfd\x8e\xab\xca\x10\x66\xd9\x20\x78\x87\x0e\x6d\x6c\x6e\x9d\x63\x4c\xb2\x67\x4e\xbe\xf5\x7b\xcf\xfa\x29\x05\x44\x1c\x29\x4a\xa2\xe2\xfc\x19\x78\x40\xc5\xd4\x8b\x72\x8f\x56\xaf\xfb\x68\x07\x61\x51\x7c\xa1\x58\x87\x54\xfd\xf4\x78\x3a\x6d\x8c\x04\x02\xfe\x42\xf1\x34\xe5\xb1\x29\x4f\x8b\x30\x2e\xfe\xbb\x50\xdc\x75\xec\xcb\x41\xeb\xd9\x07\x30\x6d\xf9\xae\xc4\x13\x58\x89\xe2\xfc\xa9\x02\xb8\x0c\xb3\x84\x76\x92\x29\x8e\xa3\x18\x66\x2c\x03\xbb\x40\xba\x68\xbe\xac\x4d\x7b\x0d\xd1\xec\x33\xc4\x84\x92\x7b\xde\x57\xe9\x8f\xeb\x7e\x8f\x39\x54\xe5\xe4\x55\x3d\xe9\x56\x2b\x74\x55\x9e\x0f\x64\xfd\xb8\x56\x83\x65\x70\xbc\xe1\x22\x07\x60\x79\x26\xbb\x82\xe1\x74\xcc\x96\x05\xe5\x3f\x1b\xdc\xee\xdf\x62\x11\x96\xed\xdd\x9a\x95\x71\x00\x4a\xc9\x3e\x69\x40\xe4\x0b\x68\xcb\x08\x95\x79\x20\x13\x93\x99\xee\xa2\x04\xd2\x2c\xa1\xdd\xac\x2b\x6e\xab\xc8\x55\xc8\xde\xf0\xb6\xfe\xae\x15\x37\x99\x4c\xf0\xc1\x07\x1f\x68\xe0\x02\x0f\xf0\x18\xd0\x02\x20\x05\x21\x9d\xc6\x72\x78\x79\x6d\xfa\xc1\xdd\x7b\xc9\xa5\xa5\xb9\xd8\x8c\x25\xf5\x8c\x41\xc5\xbe\xb7\x59\x12\xcd\x65\x4f\x80\xe9\x32\xe0\x44\xe9\x36\x51\x95\x99\x95\xb8\xd9\x35\x42\xef\xcb\xb8\x73\x52\xe9\xad\xa5\xf9\x95\x4f\x57\xd2\x0f\x6f\xf7\xf2\x9d\x92\x31\x2c\xca\x62\xcb\x25\x3d\x39\xe7\xd7\x57\xa8\xbf\xb6\xf5\x49\xd1\xed\x76\xf1\xf8\xe3\x8f\x9b\x07\x9f\xf9\xcc\x67\x90\x24\x49\x48\xbf\x00\x56\x59\xfb\x8c\x8b\x3c\x7e\xfc\x78\xa5\x6f\xef\xef\xef\xcb\x6e\xb7\xab\x9f\x8b\x5f\xff\xfa\xd7\x75\x79\xaf\x73\x8b\x2a\xe0\x3b\x91\xf1\xdc\x09\x00\xf2\xf4\xe9\xd3\x62\x63\x63\x03\x77\xdd\x75\x17\xee\xb9\xe7\x9e\x90\x4c\x04\x60\x0e\x77\xe5\xcf\xea\x9c\xbf\x12\x4c\x1e\x3b\x76\x4c\x1c\x3b\x76\x0c\x00\xb0\xbb\xbb\x2b\x97\x97\x97\xc5\x74\x3a\xc5\x1b\x6f\xbc\xa1\xfd\x35\x31\x45\xf0\xee\x0f\xc2\x36\xd5\x3d\x6f\xac\xaf\x45\xce\x2a\x6a\x53\x08\x46\xf0\x6b\xc6\xa5\x69\x0b\x74\x05\x40\x16\x43\x45\x12\x5e\xe7\xf1\x0d\x0e\x67\xde\x21\x8c\xd8\x31\xef\xf4\xba\x04\xe2\xd6\x06\xb9\x71\x38\x09\x33\x61\xc6\x85\x42\xc5\x83\x47\x05\xf9\x8a\x85\x40\x22\x92\x14\x0b\x45\x71\x29\x14\x0d\xf3\x42\xf6\x54\x60\x9f\x71\x09\xd5\x1d\x10\xfe\x40\x75\x1f\x7a\x91\x86\x52\xf7\xc1\xeb\x04\x49\x5d\x3e\xda\xe2\xa9\x73\x4d\xe5\x69\x4b\xa7\x2d\x0f\x6d\x16\xc0\x41\xe2\xd6\xcf\x9a\x84\x4a\x5b\x7a\x41\xff\x2e\x50\x2f\x58\x97\x3c\xa1\xf1\x7c\x89\xb6\xd4\x10\x0f\x93\x44\xcf\x80\x04\x68\x20\xcd\x8f\x0b\x2c\x1d\xb7\xbc\x61\xfb\x93\x3f\x71\xdd\xf6\x35\x1b\xc8\x2a\x3a\x1b\x56\x95\x60\x42\x0f\x03\x15\xde\xcb\xf7\x1a\x00\x50\x01\x50\x38\x83\x61\x73\xa1\xcf\xcb\x71\x20\x07\xcc\x99\x43\x3e\x95\xc9\xd1\x93\x06\x0f\x8a\x0d\xe1\xe8\x8d\xe0\x2a\xe5\x75\x81\x56\xb0\x9e\x98\x81\x62\xea\x45\x87\x51\x70\x9e\x73\x5a\x82\xd7\x91\x8a\x30\x9d\xf7\xc4\xce\x3c\xa1\xa1\x24\xaa\x30\x09\x58\xac\x4f\x38\xc0\xd7\x9f\x90\x0b\x36\xb4\x02\x20\xcd\x05\xc6\xbb\x4b\xd9\xce\x87\x1b\xd3\x0b\x87\x47\x9d\x53\x2b\xd3\xf8\x1e\x40\x09\x73\x12\xb4\x96\x33\x16\xbf\x59\x79\xc8\x65\xa5\x0f\x3a\xc8\x7d\xce\xdb\x93\x36\xf2\x38\x80\xf5\xcf\xc8\xf4\xd3\x56\x50\x18\x27\xf9\x8d\xad\x95\xf4\xd2\xf6\x60\x7e\x75\x16\xcb\x31\x0a\xc0\xa2\x41\x8b\x0f\xf2\x42\xf5\xa5\xdd\xc2\xf2\x69\x65\x65\x45\xdc\x77\xdf\x7d\xe8\xf5\x7a\x78\xe2\x89\x27\x42\x5b\x0d\x38\x4a\x99\xcb\xdb\x96\x74\x8d\x3b\x74\xe8\x10\x9e\x7c\xf2\x49\x03\x76\x27\x93\x89\x54\x4a\xe1\xfd\xf7\xdf\x17\xd3\xe9\xb4\x4e\x66\xd4\x29\xe3\x36\x23\xae\xce\x4f\x6b\xdc\x67\xce\x9c\x41\xb7\xdb\x15\x0f\x3d\xf4\x10\x36\x37\x37\x2b\xc3\x60\x80\x65\xf9\xbd\xe7\xbc\x3d\x6a\x7f\xfc\xde\xd7\xeb\x4e\x3d\xad\xad\xad\xe1\xc9\x27\x9f\xc4\x64\x32\x91\x52\x4a\x00\x10\x17\x2e\x5c\x68\x9a\xfa\xe0\x03\xa5\x45\x74\x50\x5b\x1d\x36\x1a\xe0\xa1\xd3\xa1\x9b\x86\x34\x9a\x2c\x60\x00\xa8\x58\x81\xfe\x73\x59\x6e\x1d\x2d\x49\x95\x5b\x6c\x57\x0f\x4d\x0b\x0d\x21\x69\xc1\x57\x01\x1d\xca\x1f\xcb\x46\x65\x12\xae\xa5\x8d\x2d\xf5\xea\xf4\x5a\xd6\xf3\xb5\x55\xe7\x58\x2d\x2c\x2f\xa5\x65\x22\x22\x89\x24\x92\xc5\x49\xa9\xfe\xe7\x6c\x98\x9c\xdb\x36\x9c\x13\x02\x13\x6d\xcc\xc7\x41\x86\x8a\x6a\x59\x83\x05\xdc\x41\x99\xa1\x3b\xb1\x30\x0e\xea\xee\x84\xfd\xf1\xdd\x22\xf9\x6c\xab\x6b\xb0\xe7\x3c\x4e\x2d\xe0\x33\x29\x90\xce\x96\xc5\x96\xdc\xa1\xa9\xc8\xd4\x80\xe0\x9f\x98\xee\x36\x60\xbd\x39\xa2\xf2\xdf\x81\x01\x14\xad\xa5\xc1\xe6\x6f\xc0\x85\x1a\xfc\x8e\x4c\x3b\x57\x00\xef\x4b\x4e\x3e\xe0\x84\x29\x94\x27\xcb\x85\xb7\xa7\x8b\x06\x32\x7c\x68\xc6\x82\x06\x1b\x07\xe7\x40\x39\x26\x32\x7e\x1d\xbb\x41\xd9\xce\xc6\xca\x66\x64\x80\x66\x72\xc8\xcd\x3d\xab\x0e\x3b\x89\xb8\x24\x80\xc0\xeb\xa7\x2c\x77\x1e\xd1\x70\xde\xa3\xdd\x3c\xa1\x31\x84\x65\x10\xe0\x0a\x54\x73\xbf\xb5\xb5\x85\xbd\xbd\x3d\x5e\x5d\x02\x80\x9c\xcf\xe7\xf8\xe0\x83\x0f\x0c\xd5\x1e\x08\xaf\x59\x8a\x14\x84\x34\x8d\xd4\xf0\xf2\xda\xec\x83\x63\x7b\xc9\x85\x5e\x26\x56\x92\x4c\x0c\x80\x62\x95\x22\x83\x99\x00\x51\x85\x19\xe1\x8e\x9f\x81\xed\x3e\x37\xb5\x61\xae\x6a\x66\x46\x85\xcc\x35\x28\x00\x69\xa4\x86\xd7\x07\xe9\xa5\xab\xab\xb3\x4b\xc3\x6e\xb6\x0b\xc2\x14\x2e\x70\xe1\x43\x6b\xc6\x5d\xbb\x76\x4d\x96\xc3\x44\x8b\xc8\x1a\xa3\x57\xd6\xd7\xd7\xb1\xbe\xbe\x8e\x23\x47\x8e\xe0\xb3\x9f\xfd\x6c\x45\x49\x97\xfa\x43\x1b\xc5\x8e\x82\x2e\xf5\x42\x85\x8d\x81\xfb\x1d\xcc\xaf\x37\xff\x52\x3e\xf7\xdc\x73\x02\x00\xe2\x38\x96\xfb\xfb\xfb\xe2\xfa\xf5\xeb\x28\x87\x97\x5a\xf3\xed\xf9\x39\xc8\xf0\x87\x1f\xc6\x89\xeb\xfe\xfb\xef\x17\xcf\x3e\xfb\x2c\x96\x97\x97\x39\x30\x13\xb0\xc4\x80\x00\xcc\xa2\x10\xc7\x68\x26\x90\x28\x95\x92\x30\x7d\xb2\x38\x8f\x4b\xf7\x07\xa7\x8d\x97\x8c\x19\xbf\x07\x00\xf4\x7a\x3d\x7c\xe1\x0b\x5f\x00\x00\xcc\x66\x33\x29\xa5\x14\x57\xaf\x5e\xc5\x6c\x36\xab\xab\x8f\x90\x3b\x88\x01\xdc\x66\x68\x9a\xe7\x4d\x93\x73\xeb\x04\x75\x1d\xea\xe4\x28\x10\xfc\x9a\x0f\x97\x48\xa1\x64\x26\x54\x26\x0b\x41\x61\x24\x96\xdf\x79\xf8\x9d\x66\x90\x8d\x90\x2c\xdf\xf2\xd3\x65\xab\x02\xd0\x1e\x1f\x67\xa9\x70\xf7\xbe\x00\x4e\x96\x6e\x2e\x23\x75\xf2\x4d\x2c\x6e\xfd\x9a\x00\x11\x29\x4a\x62\x49\x5d\xa1\x20\x32\x66\xa1\xb2\xa1\x22\xdf\xf9\x68\x98\xa3\x5e\xdf\x9f\xff\x3c\xa4\x38\x43\x71\x87\xae\x5b\xbf\x57\x4d\xdc\x6d\xe9\x34\x09\xa5\x90\x12\x6f\x2b\x8b\x9f\xcf\x45\x41\xc9\x22\x6c\x60\x28\xee\x50\x39\xea\xe2\xaa\x13\x46\x4e\x9b\x0f\xac\x28\x91\x4a\xa9\x8c\x40\x52\x0a\x64\xd3\x81\xb8\x9e\x77\x68\x2f\x4e\xd5\x06\xa4\x12\xc1\x31\x4b\x00\x7a\x18\xc5\x02\x0b\x06\x64\xcc\xc4\x52\x77\xe8\x84\x33\x82\x26\x2f\x9c\x6d\xe0\x5a\xbd\x44\x0c\x64\x14\x7b\xc9\x9b\x38\x71\xdb\xb3\x96\xc8\x1b\xfa\x71\x01\x06\x59\xf6\x46\x77\x52\x06\x34\xec\x29\xd6\x3c\x7e\xe6\xca\x67\x7a\xf5\x0b\x39\x28\xc5\x78\x32\xf5\x62\xf2\xed\x4c\xe8\x80\x93\x5f\x7f\xa5\x94\x61\x13\x8c\xdd\x52\xce\x6f\x49\x68\x77\xde\xa3\xdd\x3c\x86\x99\xbb\x51\x19\xda\x66\x71\xbf\xfe\xfa\xeb\x60\xa7\x12\x1b\x37\x1e\x8f\xe5\x2f\x7e\xf1\x0b\xf1\xc0\x03\x0f\xa0\x8c\x43\xcf\xf7\xb3\xc3\x44\x40\xa2\x94\x4a\x89\x28\x55\x84\xe9\x5e\x2f\xdb\x7d\xe7\xe8\xf8\xf7\x2b\xb3\xf8\xe8\xd1\xfd\xe4\x6c\x92\xa3\xcf\x61\xa4\x99\x6b\xe4\xa2\x19\x0f\xa0\x5a\xd9\xe7\xb3\xd3\xb6\x62\xec\x27\xe7\xce\x8b\xb6\xfc\xce\xc5\x65\x26\x54\x76\x73\x79\xfe\xf1\x07\x87\xa7\x17\xae\x1f\x4a\xaf\xa6\xb1\x1a\xc2\x82\x16\xc3\xb8\x28\xa5\xcc\x04\x5d\x1d\xcd\xf9\xf3\xe7\x71\xe5\xca\x95\x45\x14\x90\xe9\x6b\x2b\x2b\x2b\x78\xfc\xf1\xc7\xf1\xd0\x43\x0f\x85\xe4\x18\xff\xe5\x43\x42\xce\xd0\x08\x81\x04\x13\xd4\x92\x55\x44\x08\xbc\x84\xfa\xb3\x7c\xf6\xd9\x67\x05\x00\xbc\xf6\xda\x6b\xf2\xf2\xe5\xcb\x18\x8d\x46\x62\x7f\x7f\xbf\x09\x88\xb4\x19\x8a\xc1\xf2\x06\xe2\x10\x00\xa4\x10\x42\x1c\x3d\x7a\x14\x00\xc4\x57\xbe\xf2\x15\x24\x49\xe2\x94\x5d\x5f\x13\x91\x9e\xa2\x10\x13\x48\x10\x20\x62\x59\x8c\x02\x44\x12\x71\x2c\x29\xee\xe4\x22\x8e\x25\xc5\x42\x42\x10\x48\x66\x42\xc9\x2c\x52\x59\x4e\x2a\x9b\xc5\x32\x9d\x47\x4a\x4a\x52\x99\x24\xcb\x98\x69\x00\x43\x44\xfe\xf0\x9f\xfc\xea\x57\xbf\x2a\x00\xe0\x97\xbf\xfc\xa5\xbc\x74\xe9\x92\x98\xcd\x66\x8b\x1a\xc0\x75\xf2\xb7\x56\x96\x06\xfc\x54\xae\xe3\xba\x17\x2c\x02\xee\x9a\x14\x0d\x00\x83\x7e\x8d\x10\xf7\x84\x39\x72\x52\x59\x26\x54\x9a\x93\xca\x14\x94\x14\xa5\xe5\x59\xb0\xdf\xf6\x50\xc4\xca\xaa\x1e\xe3\x89\xcb\x63\xd7\xaa\xd0\x17\xbe\xd5\xa8\x10\x88\x4b\x77\x72\x06\x7c\x28\xe0\xdf\x8d\xc9\x78\x10\x42\x52\x5c\x0e\x17\x09\x12\xa6\x61\x39\x08\xd8\x73\x6d\x8a\x3e\xe4\x9a\xac\xfb\xba\xb0\x75\xd6\xc0\xa2\x08\x77\x11\xa1\xb3\xc8\xfb\x36\xa4\x5d\x07\x84\x17\xb5\x58\x16\xa9\x1b\xdf\x5f\x53\xbb\x6e\x7a\x1e\x4a\x1b\x00\xe4\xfe\xfe\xbe\x38\x74\xe8\x90\x8c\xe3\x38\x54\xdf\xd2\x28\x30\x42\x36\xeb\x8b\x9b\xf3\x2e\xdd\xe8\x4c\x70\x8f\x50\x88\x8d\x62\x62\x4e\x69\x76\xc2\x80\x69\x36\x0c\xc3\x58\x47\xb8\x60\x99\x8d\xd4\xb0\x25\xcf\x1c\xd8\x33\x76\xc5\x31\x26\xf4\x84\x0f\xd2\x71\x17\x41\x1c\xeb\xd5\x1f\x87\x35\xca\x30\x94\x8e\xbe\x2c\x19\x03\x58\x66\xc7\xe4\x9d\xbc\x62\x73\xc6\x94\xd1\x31\x3c\x2f\x96\x2c\xd5\x16\x07\x19\xc3\x83\x88\xcc\x61\x91\xa4\x19\x55\x27\x7e\xc6\x9c\x5a\x19\x93\xcd\xbb\xb4\x33\xef\x89\x9b\x32\x26\xbd\xa9\x5a\xa6\x85\xb6\xfe\x76\x35\xf3\x37\xea\x9c\x04\xcc\x22\x05\xfd\x97\x95\x0a\x3e\x05\x30\x55\x4a\x25\x44\x94\x48\x60\x78\x65\x6d\x76\x79\x39\x1d\x9f\xeb\xe4\xd4\xdf\x18\x75\x4e\x74\x24\x7a\x7a\xf3\x7e\xc3\x2c\x95\x88\x82\x1b\x56\x5a\x56\x1a\xb4\x61\x66\xe6\x96\xab\xb4\x7c\x66\xcd\xd4\x08\x67\xe7\x8a\x70\xbc\x5e\xca\xb8\xe5\xed\xa5\xf9\x95\xf7\x37\x27\xbf\xff\x68\x63\xfa\xfe\xb8\x23\xf7\xca\x7c\x4f\x01\x4c\xcb\x72\xa4\x1c\xb4\xe8\x3a\xaa\xd9\x70\xb3\xce\x70\xc1\xf2\xf2\xb2\x88\xe3\x18\x4f\x3d\xf5\x14\xce\x9c\x39\xa3\x99\x05\x07\x9c\x54\xfe\xca\xfd\xb3\x84\x82\x10\x4a\xc4\xa4\x20\x84\x22\x41\x0a\x22\x52\x06\xbc\xc8\xac\x50\xcc\xb2\x5c\xc1\x2a\x25\x29\x59\xec\xd8\xee\x1a\x16\xec\xcf\xc8\x88\x27\x9f\x7c\x52\x3c\xf1\xc4\x13\x78\xe7\x9d\x77\xe4\xb9\x73\xe7\xc4\x64\x32\xa9\x2d\x03\x5c\xd9\xd2\xa8\x6c\x03\x75\x62\xc2\x46\x51\x24\x8e\x1c\x39\x82\xbf\xfc\xcb\xbf\x34\x0c\x13\x0a\x70\x66\x00\x8b\x52\x2a\x26\x22\x5d\x07\x71\x24\x29\x8e\x14\xc5\xcb\x69\xd4\x5b\x99\xc6\x83\x43\xb3\x68\x65\x79\x16\x0d\x7a\x99\xe8\xf7\xe6\x62\xd0\xcb\xc4\x20\xce\x29\x51\x04\xe4\x42\x4d\x67\xb1\x1a\x8f\x92\x6c\x77\xaf\x9b\xef\xde\xea\xcf\xf7\x46\xdd\x7c\x38\xee\xc8\xe9\x3c\x52\x69\x2e\x54\x86\x62\x2b\x80\x0c\xac\xed\xc3\xea\x70\x28\xa5\xe4\x97\xbe\xf4\x25\x01\x40\xbe\xff\xfe\xfb\x22\x4d\xd3\xd0\xb7\x6e\xfa\xee\x68\x78\x17\x32\x94\xfd\x70\xa6\x4e\x35\x70\x59\x54\x41\x85\x2c\x52\xe3\x18\x5d\xa7\x1b\x34\x00\x77\x03\xba\x5c\x28\x39\x8f\xd4\xac\xa8\x28\x97\xd9\x00\x18\x5d\xc9\xc6\x79\xb4\xf5\x64\x26\xe9\x69\x9f\x6c\xa0\xd6\x9d\x23\xc0\x87\x8f\x6c\x87\x36\xec\x0d\x9b\x78\x68\x42\x39\x16\x0b\x13\xc2\x80\x23\x07\x35\x4d\x17\x29\xc4\x1d\x49\x49\x9c\x93\x98\x47\x55\xeb\x4f\xbb\xc0\xc4\xcd\x26\x66\xe3\x0f\x41\xb1\xfc\xba\xae\xa3\xf8\xe1\x43\xe9\x36\x81\xae\xa6\xb8\xf8\x7d\xc8\x5f\xa8\x0c\x7e\xdc\x8b\x3a\x1f\x88\x84\xde\xf9\xcc\x56\x9d\x3f\xff\x7a\x91\x7b\xf3\xfc\x27\x3f\xf9\x89\xfc\x8b\xbf\xf8\x0b\x71\xcf\x3d\xf7\xf8\x00\xc9\x28\xae\xf2\x37\x9d\xf7\xc4\x70\xb6\x2c\xae\xf4\xf6\xe5\x59\x91\xa3\x0f\x70\x45\x5f\xb8\xa2\xbd\x71\xd3\x59\x03\x6e\xdb\xd6\x7d\x45\xaa\x59\x12\x2a\x01\xbf\x46\x06\xc6\x0a\x67\xcc\x4c\x81\x89\x88\xf9\x2b\x97\x22\xdb\x5b\xd7\x39\x33\x42\x6d\x7c\xee\xc4\x2f\xab\x1c\x39\x80\x32\x69\xc0\x05\x19\x9c\xed\x34\xf3\x6a\x4c\xdc\xd6\x3a\xa1\xb2\x8f\x5b\x46\xa8\x9a\x15\xde\xe7\xad\xd1\x04\x33\x07\x8e\xd8\x3b\xcd\xee\x00\x0a\x32\xa6\xbd\xd9\xb2\xd8\x4a\x97\x68\x37\x17\x48\xa9\x9c\xe3\xe2\xb3\x08\xfe\x1c\x01\x84\x81\xb0\x00\x80\x34\x4d\xd1\xe9\x74\x8c\xb1\xc6\x28\xf8\x0c\x40\x4a\x44\x71\x09\x00\x12\x10\x92\x9c\x30\x7c\x6f\x73\xfc\x6e\x6f\x4e\x83\xcf\xc8\xe5\x64\x6d\xd2\xb9\x27\x96\x2a\x31\xdf\xdc\x80\x33\x6f\x2e\x9f\xc5\x76\x8c\x89\x2b\x19\xab\x92\x75\xd2\x86\x9d\x86\x71\xf6\x9b\x84\x0c\x3b\x7b\x3b\xec\xe6\x3b\x1f\x1c\x9e\xfe\xfe\x9d\x23\xe3\xb7\x47\x49\xbe\xa3\xa0\xc6\x04\x9a\x12\xd1\x54\x29\xc5\x27\xe5\xf2\xa1\x35\x00\x90\x59\x96\xe9\x39\x11\x80\x57\x37\xdc\x1f\x00\xc4\x71\x8c\x3f\xff\xf3\x3f\xc7\xd1\xa3\x47\xf9\x2a\x18\xad\xa8\xfd\xbf\x98\x40\x42\x48\xc4\x91\x24\xd1\xcb\x44\xb2\x3c\x8b\x7a\x87\x66\x51\x6f\x90\x46\xfd\xde\x5c\xf4\x62\x49\x89\x50\x14\x47\xc5\x4a\x4f\x4c\x63\x39\x1e\x75\xf3\xe1\xa4\x93\xa7\xd3\x58\x4e\x47\xdd\x3c\x1d\x26\xf9\x74\x1e\xa9\x4c\x11\x65\x4a\x39\x20\x46\x7f\x7b\x67\x74\xe0\xa1\x87\x1e\x12\x71\x1c\xcb\x97\x5f\x7e\x59\x28\xa5\x90\x65\x19\x2f\x43\x08\xb0\xb4\x19\x53\x5c\x2e\x19\x39\x45\x44\x38\x72\xe4\x08\xbe\xfd\xed\x6f\x73\x56\x45\xfb\xd1\xc6\x70\x0c\x20\x86\x42\x2c\x14\xe2\x5e\x26\x92\xf5\x71\x3c\x38\x32\x4c\xd6\x8e\xed\x27\xc7\x37\xc6\x9d\xc7\x96\xe6\xe2\x6c\x9c\xd3\xd1\x48\xd1\x86\x50\x34\x20\x85\x3e\x14\x44\xd9\x1e\x32\x45\x2a\x55\xc0\x4e\x1a\xa9\x2b\x93\x6e\x7e\x61\xb7\x97\xbd\x7d\x73\x79\x7e\xe5\xfa\x20\xbd\x71\x73\x79\xbe\x37\x4a\xe4\x34\x2b\x0e\x83\x75\x96\xbb\xeb\x3f\xdd\xae\xbf\xf8\xc5\x2f\x0a\x21\x84\x7c\xfb\xed\xb7\x21\xa5\x6c\xd3\x35\x6d\xba\xa5\x8e\x28\xa9\x0b\xe7\x30\x2e\xa1\x4a\xd6\x9e\x42\x99\xe1\xef\x8c\x2b\x0b\xea\x2c\xc7\xf2\xe3\x96\x28\xe6\xb8\xe4\xa4\x52\x45\xc8\x04\x28\x31\x7d\x91\x01\x18\x16\x29\x5b\xaa\x57\x0a\x1f\x2d\x61\x99\x10\x73\x6c\x0a\x6f\xff\x06\xbf\xa3\x72\xab\xce\x9c\xca\xca\x18\x19\xe5\x7b\x73\xcb\x08\x05\x40\x28\x4a\x3a\x39\x25\xb1\xa4\x4a\x1d\xb6\x58\x68\x75\x1f\xa9\xe9\xfd\x9d\x86\x6d\x65\x0c\x16\x4c\xf7\x20\xcf\xdb\x00\x4b\xc8\xdf\xa2\x61\x16\xf1\xdf\x56\x8e\x45\xd2\x5f\xb4\x4c\x95\xe7\x4c\x59\x49\x58\x6b\x3b\x03\x90\xe5\x1d\x4c\xc7\xab\xe2\xc3\xe5\x5b\x74\x23\x9e\xab\x15\x28\xc4\x95\xa6\x52\x25\x0b\x02\xe0\x99\xb1\x1a\xde\x38\x00\x1f\x22\xb1\x93\x69\xdd\x70\xce\xea\x1c\x83\x58\x9c\xd4\x58\x7e\xc8\xf3\x03\xa3\x4c\x9d\x79\x2b\x3c\x2a\xe2\x61\x61\xb6\xa3\x37\x13\x68\x59\xdf\x34\xd1\x7a\x61\x9c\xf0\xdc\x9f\xfe\xcf\xf2\xe2\xf8\x65\x0c\xaa\x95\x0f\xd5\x49\xc5\x59\x57\xdc\x98\x0e\xc4\x56\xd6\xa1\xa1\xfe\x3e\xb0\xc2\xda\x9f\xeb\x12\x32\x40\x00\xa6\xb0\xe6\xf3\x39\xfe\xf1\x1f\xff\x11\x7f\xff\xf7\x7f\x2f\xe2\x38\x06\x60\xd9\xb6\x52\xf1\xe8\xf8\x53\x00\x53\x94\x8a\x68\x16\xc9\xdd\xb7\xef\x1a\xbf\x41\x8a\xe2\xb3\x37\xfa\x9f\x5b\x1f\xc7\xc7\x3b\x39\xf5\x4c\xd9\x3c\x60\x5b\x29\xaf\xf7\xdc\xe1\xc6\x02\x9f\x33\x24\x06\x15\x00\x49\xc8\x46\x49\xbe\xf3\xde\x91\xc9\xab\x6f\xdc\x3d\x7c\x6d\xd8\xcd\x6f\x28\xc2\x98\x40\xe3\x32\xbf\x86\x6d\x81\xa7\xd4\x74\xdd\xfc\xf8\xc7\x3f\xc6\xd6\xd6\x96\x97\x60\x50\x61\x89\xef\x7e\xf7\xbb\x58\x5d\x5d\x35\xf7\x70\x95\xb4\x00\x10\xb3\x89\xa7\xf1\xa1\x59\xd4\xbb\x7b\xaf\xbb\x76\x64\xd8\xd9\x5c\x9b\xc4\xc7\x06\xb3\xe8\xc4\xd2\x5c\x9c\xee\xe4\xe2\x9e\x48\xd1\x0a\x29\xf4\x08\x94\x10\x10\x2b\x00\x12\x6a\x2f\x17\xea\x46\x16\xa9\x1b\xf3\x48\x6e\x8d\x92\xfc\xa3\x9d\x7e\xf6\xe1\xb5\x43\xe9\xd6\xf5\x41\xba\x7b\x7b\x29\x9b\xe6\x64\xc0\x97\x28\xcb\xc1\xf7\xf2\x01\x50\xac\xe8\x39\x7d\xfa\xb4\xdc\xd9\xd9\xc1\x0f\x7e\xf0\x03\x9e\xdf\x3a\xa3\x67\x51\xb9\x63\x7e\x8f\x1f\x3f\x2e\xbe\xf5\xad\x6f\x69\xa6\x85\x83\x96\x98\x83\x16\x22\x8a\x93\x8c\x92\xbb\xf6\xbb\x6b\x67\x6e\xf4\x4e\x1d\xdb\xef\x3e\x35\x98\x46\x9f\xeb\xe6\xe2\x61\xa1\x70\x8c\x14\x25\x54\xd6\xb5\xf3\xe9\x75\xa3\x28\x66\xe7\x1f\x4f\x24\x1e\x5d\x9e\x47\x7f\xbe\x3e\xea\xec\x1c\xbf\xdd\xbd\x34\xea\xe4\xbf\xbb\x7e\x68\xfe\xeb\x8f\xd7\xa7\xef\x5c\x59\x9d\xdd\x18\xf6\x72\x3d\x74\xca\xff\x8c\x23\x22\xf9\x85\x2f\x7c\x41\x24\x49\x22\x5f\x7b\xed\xb5\x45\xe4\xed\x22\x3a\x6d\xa1\xba\xd2\x2f\x9a\x96\x43\x2f\x3a\x44\x21\x00\xe0\xf5\xd7\x5f\xc7\x6c\x36\xc3\x97\xbe\xf4\x25\x67\x82\x2e\x60\x00\x8d\x04\x8a\xba\xcb\x85\x92\xb9\x28\x86\x8a\xb8\xcd\xe4\x3a\xc6\xa8\x38\x32\x36\xec\xbb\x11\x2a\xb4\x39\x2d\x50\x2b\x43\x51\xc1\x5c\x81\x00\x08\x85\x38\x96\xd4\x8b\x0a\xe0\xc2\xad\x03\xd7\xbf\x52\x78\xfe\xf9\xe7\xd1\xed\x76\xc5\x9b\x6f\xbe\x59\xd7\xd8\x9b\xdc\x41\x94\xfa\x41\xe2\x3d\x48\xb8\x83\x32\x42\x7f\x2c\xb7\x28\x7b\xc3\xfd\xff\x6f\xe6\xad\x2d\x7e\xde\xc1\xb4\x00\x34\x56\xbc\x22\x4c\xc7\x87\xa2\x4f\x67\xfd\xec\x93\x64\x82\x63\x51\x86\x15\x00\x61\x05\x53\xba\xd0\x63\xb7\x0b\xb0\xc0\x8c\x49\xac\xf4\x2b\xf6\x2e\x30\xa5\xb5\x21\x35\xfb\xdc\x31\xf6\x35\xda\xf0\x18\x80\x0a\x85\xe4\x44\xeb\x0e\xc8\x56\x01\xbe\xcb\xa2\x36\xb9\xd0\x70\x87\xcb\x9a\x7a\xc9\xb3\x7c\x29\xa2\x6c\xd6\xa7\xad\xd9\xb2\xd8\xce\x3b\xa4\x57\xcb\xf8\x2c\xc2\x22\xca\xa8\xad\x2d\x70\x8b\x3e\x05\x63\x10\x60\x15\x53\x3c\xe9\xc8\x9d\x37\xef\x1e\xbd\x36\xea\xe6\xc3\xb3\xd7\xfb\x4f\x1c\xdb\x4f\xce\xf4\xe6\x62\x20\xbc\x09\xdc\x65\xc9\x11\xaa\x20\x1f\xc7\xf1\x9b\x06\xb1\x09\x05\x85\xb9\x50\xd3\x5b\xcb\xd9\x27\xef\x1c\x19\xff\xe6\xc2\x5d\xa3\x37\xa6\x1d\xb9\xa3\x80\x21\x8a\xbf\x71\xf9\xe7\x4f\xce\x75\xd8\x16\xaf\xdc\xa1\xba\x30\xee\xef\xfe\xee\xef\xc0\xf6\x64\x11\xb0\x43\x22\xae\xa2\x06\x25\x87\x47\x71\xef\xc4\xce\xd2\xd1\x7b\xf6\x92\x87\x37\xc6\x9d\xa7\x97\xe6\xe2\xd1\x4e\x4e\xc7\x85\xa4\x35\x02\xfa\x64\x65\x84\x57\x57\x04\xe4\x24\x31\x87\x54\x14\x65\x6b\x93\xce\xde\xd1\x7d\x79\xe5\xfe\x9d\xde\x9b\xfb\xbd\xfc\xf5\xed\x41\xfa\xce\xe5\xb5\xd9\xc7\x1f\x6d\x4c\x77\x61\x27\x1a\x6b\x80\xe9\xb3\xa6\x58\x5f\x5f\x97\x7f\xfb\xb7\x7f\x2b\xfe\xf5\x5f\xff\xf5\x8e\x8d\x9a\x90\x7b\xf0\xc1\x07\xc5\xf3\xcf\x3f\xaf\x6f\x39\x70\xd3\xf5\x90\x00\x88\xe3\x9c\x92\xa3\xfb\x9d\xb5\x53\x3b\x4b\xa7\xee\xdd\xed\x7e\x7e\x6d\xd2\x79\x3e\xc9\xe9\x61\xa1\x30\xa8\x96\xbd\xda\x42\xbc\x56\x23\x00\x24\x91\xc2\xb1\x68\x2e\x8e\x26\x99\x78\x62\x90\xc6\x5f\x3d\xba\xdf\x39\x77\x72\xd0\xfb\xd5\x47\xeb\xb3\x0b\x1f\x6f\x4c\xb6\x46\x89\xd4\xdf\x9c\xd7\x8b\x06\x31\xf2\xa9\xa7\x9e\x12\xdd\x6e\x17\xaf\xbe\xfa\xea\xff\x86\xcc\x6d\x94\xb5\x51\x43\x40\x5f\x77\x0b\xb8\x84\x84\xef\x4f\x1d\x3e\x7c\x98\xee\xbf\xff\x7e\x0d\x35\x04\x11\x45\x65\x1a\x1d\x22\x4a\x00\x24\x80\xea\xae\xcc\x3a\x1b\x47\x87\xc9\xa9\x95\x69\x7c\x5c\x28\xea\x70\x4a\xdb\x62\x95\xaa\x00\xf3\x3b\x9f\x6f\x6f\xda\x61\x26\x8f\x39\xd1\xef\x95\x1e\x77\x77\x2d\x59\xc7\xaa\x0d\x08\x3e\x27\x0f\xe5\x6f\x16\xa9\xe1\xee\x52\xf6\xd1\x8d\xc1\xfc\xe3\x51\x27\xdf\xd3\x54\x2a\x11\x69\x2b\x5b\x01\x50\x44\x24\x85\x10\xea\xea\xd5\xab\xb8\x76\xed\x1a\xcf\x92\xbe\x0e\xd5\xab\xf0\xde\x2b\xe6\x8f\x1a\xc2\x2b\xef\x5e\xd4\xf8\xf7\xc3\x4a\x34\xc7\x2f\xbd\xea\xe4\xf1\xfb\xbf\xa1\x36\xd2\x96\xa7\x3a\x7f\x3c\xdd\x50\x9d\xf8\xf5\x55\xf7\xde\x8f\xdb\x77\xa1\xfc\x85\xc2\x03\xd5\xb2\xe3\xec\xd9\xb3\x34\x18\x0c\x88\xec\x04\x8b\xa8\x14\x40\x11\x4a\xe5\x84\xc2\x12\x4c\x88\xd0\x49\x26\x6a\xbd\x3b\x96\xf7\x46\x19\x0e\xc1\x63\xfc\x5c\xe5\xed\x2a\x7a\x87\x46\xf0\x1b\x6c\xf9\xb0\x50\x52\xfe\x3c\x86\x12\xc8\xe8\x30\x21\x73\x5c\x47\x1f\x04\x14\x65\xec\xca\xbf\x29\xe2\x72\xb0\x0a\xf1\xb9\x26\x36\x8d\xea\xf0\x29\xd7\xaa\x30\xb5\x5d\x0c\x7d\x28\x1b\xa7\xbf\x24\x48\x97\x86\x0d\x39\x19\x59\x41\x60\xc6\x52\x59\x56\x55\x84\xe0\xf9\xc9\x12\xda\xd9\xdf\x8c\x5f\x1f\x6e\xc4\xef\xe5\x09\xdd\x02\xd1\x18\xc0\x04\xc0\x4c\x29\x35\x23\xa2\x39\x80\x1c\x56\x58\xab\x9f\xfd\xec\x67\xf2\xea\xd5\xab\x90\x52\xfa\xed\x02\x60\x6d\xe6\xdd\x77\xdf\xa5\x53\xa7\x4e\xa9\x24\x49\xa8\xac\x07\x02\x40\xde\x30\x04\x0f\x03\x10\x44\x2e\x94\xdc\xef\x66\xe3\x71\x22\x47\x04\xa8\x6e\x26\xba\x91\xa4\x9e\x28\x26\x5f\x9a\xef\x63\x87\xae\x2c\x58\xe3\xc0\x24\x38\x9c\xa6\x9b\x94\x32\x55\x02\xa8\xc2\x80\x1c\x27\xf9\xad\x6b\x2b\xe9\xfb\x6f\xdd\x3d\xfa\xf5\x3b\x47\xc6\x6f\x4f\x3b\x6a\x17\xc0\x3e\x08\xfb\x00\x46\xe5\xdf\x04\xc5\x3c\x97\x49\x59\x37\x73\xa5\x54\x5e\xca\xb8\x1c\x00\xfe\xfd\xdf\xff\x5d\x5e\xbf\x7e\x1d\x4a\xe9\x0f\x56\xed\x83\x51\x14\x89\xbf\xf9\x9b\xbf\xa1\xe5\xe5\x65\x70\x66\x05\x45\x7f\x89\xca\x7e\xd2\x25\x85\x64\x39\x8d\x06\x9f\xb9\xb6\x7c\xfc\xd1\x4f\x97\xbf\x78\xf2\x56\xef\xaf\x36\xc7\x9d\xbf\x5c\x4e\xa3\x67\x93\x9c\x4e\x0a\x45\x6b\x04\xf4\x48\x91\x20\x22\x22\x55\x4e\x36\xa0\x62\x4e\x55\x31\x14\x4a\x28\x3a\x24\x09\x80\x62\xa1\xb0\x14\x4b\xda\xec\xe6\xe2\xcc\x72\x1a\x3d\xbe\x3a\x89\xcf\x6e\x8e\x3a\xeb\xab\x93\x78\x3e\xed\xc8\xe9\x34\x96\x52\x11\x34\xeb\xa1\xbf\x9b\xe2\x2b\x90\x3a\x9d\x8e\x3a\x7b\xf6\x2c\xbd\xf9\xe6\x9b\xf0\xcb\xc6\xbe\x69\x9b\xbc\x32\xb2\xf2\x33\x9f\xf9\x0c\x3d\xf3\xcc\x33\x7a\x12\xae\x01\x70\x65\x3d\x74\x94\x52\x5d\x22\xea\x2c\xcf\xc4\xf2\x83\xdb\xfd\x07\xfe\xe4\xda\xe0\xcb\xc7\x77\x7b\xdf\x5d\x9d\xc6\x5f\x4b\x72\x3a\x45\xa0\x3e\x95\x13\x2d\x88\xed\xc9\x54\x69\x03\xca\x76\x31\x2e\x66\xca\x79\x67\x44\xa0\x4e\x2c\xb1\xde\xcd\xc4\xc9\x41\x1a\x9f\x59\x9b\xc4\x87\xfb\x69\x34\x9b\xc6\x72\x7f\xdc\x95\x5a\xae\xfa\xb6\x80\x22\x22\xb5\xbe\xbe\x4e\xfd\x7e\x1f\x97\x2f\x5f\x6e\xd2\x31\x07\xb9\x76\xd2\x08\xd4\x31\x80\x3b\x63\x5c\x84\xf7\xcb\xfd\x07\x85\x1e\xf1\xcd\x9c\x88\xa4\x9e\xa0\xab\x0a\xaa\x0e\x7c\x6f\x86\x26\x63\x2b\x38\x1f\x00\xd5\x7b\xfe\xeb\xc8\x5a\x16\xb8\xf2\x15\x9c\x67\xd5\x3b\x3f\x9c\x50\x88\x3b\xb9\xe8\xc5\x92\x0c\xb5\x57\x76\x46\xdd\x29\xcb\x3c\x2b\xa0\x5a\x67\x8b\x58\x28\x4d\x74\xa4\xef\x57\xfb\xe1\x61\x17\x89\xfb\x20\x56\xa5\x3f\x8e\x1b\xf2\xb3\x88\xf5\xb1\x08\x63\xe1\xe7\xb3\x2d\x8e\x45\xac\xa0\x83\xa4\x7b\x60\x7f\xba\x8d\x97\xdf\x9e\x5b\xda\x66\xc3\x2e\x22\xca\xf2\x0e\xc6\x93\x15\x71\x65\xf9\x16\x6d\xc5\x33\xb5\x11\xe5\xe8\xf1\x46\xcd\xd9\x03\xad\xc4\x0b\x40\x52\xed\x1f\x66\x17\x15\xc5\x9e\x97\x5a\xce\x80\x03\xad\xd8\x75\x9b\x36\x3f\x8c\x77\x51\xba\x0c\x28\xd3\xf2\x36\x76\xf4\x2d\x00\x73\xa3\xa0\x27\xd6\xf2\x1e\xa3\x41\x85\x99\x9b\xa6\xdc\xbe\xc7\xe7\x8e\x59\xdc\x62\xe7\xbf\x38\xdb\x1b\xe8\x3c\x99\x30\x85\x64\x36\x00\x0d\x70\xea\x85\x7c\xad\x6d\x0b\x06\xbd\xca\x70\xbe\x24\xb6\x26\x87\xc4\x27\xc5\x89\xdd\xe4\xb0\x2d\x54\xb3\x27\xc9\x78\x3c\xe6\x73\x1c\x7c\x67\xfa\xc4\x70\x38\x84\x94\x52\x2b\x3f\x63\xa1\x32\xfa\x3f\x45\x21\x77\xa7\xe0\x4c\x2d\x01\xb3\x58\xe1\x93\xd5\x19\x26\x1d\x39\xdd\x5d\xca\x76\x8e\xef\x76\x4f\x6d\x8c\x3b\xf7\xf4\xd3\x68\x25\x02\xc5\x8e\xcc\x62\xf5\x13\x7c\x6e\xea\x15\x76\x54\xbd\x7c\x27\x49\xc9\x69\x92\x0f\x77\x7b\xf9\xf5\xad\x95\xd9\x87\x1f\xaf\xcf\xde\xdb\x3a\x34\xbb\x3c\x8b\xe5\x2e\x88\x42\x4c\x8b\xfe\x33\x4c\x0b\x79\xab\x89\x46\xa3\x91\x7f\xf6\x8d\x53\x57\xfd\x7e\x5f\x7c\xe3\x1b\xdf\xc0\xca\xca\x8a\xae\x07\x87\x79\x2a\xff\x92\x38\xa7\xe4\xc8\xa8\xb3\x71\x66\x7b\xe9\xe1\xe3\xbb\xbd\xaf\xac\x4c\xa3\xe7\x92\x5c\xdc\x23\x14\xfa\x00\x12\xce\x16\x2a\x56\x07\xba\x9d\x3a\x3b\xae\xb3\x7a\x40\xc1\x5e\x25\x42\xa9\x44\xe4\xd4\x8f\x65\xb4\xd9\xcb\xc4\x99\xe5\x59\xf4\xe8\xda\xa4\xf3\xff\x5e\x5e\x9b\xfe\xfe\x83\x8d\xe9\x27\xe3\x6e\x3e\x66\x6d\x02\xe5\xf0\x11\xf4\x37\x5c\x59\x59\xc1\x77\xbe\xf3\x1d\xf9\x93\x9f\xfc\x44\xaf\xac\xe1\x6e\x11\xe6\x41\x02\xc0\xa3\x8f\x3e\x8a\xc7\x1e\x7b\x0c\x4b\x4b\x4b\x9c\x61\xd1\xa0\x25\x41\x61\xf0\x24\xab\x93\x78\x70\x66\x7b\xe9\xe1\x07\x76\x7a\x5f\x3b\x3c\xee\x3c\x9f\x64\xe2\x64\x51\x17\x0c\xd0\x92\xfd\xc6\x0e\x38\x81\xfb\xdd\xad\x71\x52\x05\xb7\x00\xc5\x91\xc2\x46\x6f\x4e\xfd\x58\x76\x36\xbb\x99\x38\xde\x9f\x47\x3f\x7d\xef\xf0\xf8\x37\x1f\x6c\x4e\xb7\x50\xb4\x5b\xbf\x9c\x32\x49\x12\x79\xe6\xcc\x19\x10\x91\x7c\xe5\x95\x57\x6a\xcb\xdb\x72\xad\xdd\x22\x8c\xb9\x00\x20\x0f\xc2\xb8\x68\x33\x49\x7a\xef\x35\x5a\xa2\xcd\xcd\x4d\x9c\x3c\x79\x52\xfb\x13\x00\xa8\x14\xe4\x9d\xf2\x2f\x01\xd0\x1b\xa4\xd1\xea\x91\x61\x72\x72\x7d\x12\xdf\xd7\x91\x62\xc9\x08\x20\x68\xb9\xeb\xb5\x3c\xfd\x2e\x80\x6a\x7c\xaf\x55\xb4\x59\x77\x88\x1c\x80\x4a\xe3\xd6\xaf\xd8\x72\x54\x66\xca\xd8\xe1\x2f\x42\x2e\x90\x0e\xbb\xf9\xd5\xed\xc1\xfc\xd2\xed\x5e\x76\xab\x1c\xff\xd5\xd6\x48\x46\x44\x39\x60\x26\x26\xab\x2b\x57\xae\xa8\x6b\xd7\xae\x85\xea\x95\x3b\x8e\x3c\xf9\x6f\x1b\xba\xf7\xfd\x35\xa5\x51\xf7\x3e\x84\x7a\xfd\x30\x3e\xb3\xd1\x96\xce\x41\xd3\x08\x95\xe9\x7f\xd3\xb5\xe5\x87\x3b\xee\xcf\x09\xb7\xb7\xb7\x47\xab\xab\xab\x18\x0c\x06\xdc\xca\xe6\x16\x54\x84\x42\x30\x77\x00\xea\x80\x20\x92\xa9\x3a\x9c\x4c\xd5\x11\x91\x63\x59\x0b\xa0\xd2\x8e\x01\x27\x24\x0c\xa0\x0f\x59\xd2\x5a\xe4\x90\x79\x60\x4c\x78\x00\xea\x6a\xf7\x0f\x00\x00\x20\x00\x49\x44\x41\x54\x96\x75\x81\x13\xa1\x69\xcb\x3a\x26\xe7\xc4\x60\x06\x32\x94\x06\x26\x25\xe3\xe1\x9b\x5d\x8e\xd6\xf4\xbb\xac\x03\x26\xdc\x4a\x74\xca\x67\x7e\x6d\x59\xf4\xfc\x1d\xb3\x9d\x81\xb2\x61\x2c\xdb\x62\x27\xf5\x07\xc4\x82\x2d\x00\x32\x40\xcd\xbf\x2b\xcb\x1c\x01\x90\x31\x86\xc3\xc3\xf1\xef\xf7\xee\x8a\x2f\xcc\x7b\x74\xa3\x64\x5b\x46\xb0\x2b\x67\xe6\x25\xab\x90\xa1\x60\x13\x24\x00\x5c\xbc\x78\x51\x8d\x46\xa3\xb6\xfe\x01\x00\xb4\xbb\xbb\x8b\xbb\xee\xba\x4b\xf5\x7a\x3d\x6e\x13\x71\x28\xc6\xfb\x10\x99\x6b\x02\x72\x42\x36\xeb\xc8\xe9\x5e\x2f\x1b\xee\x2e\xe5\xb7\x67\x1d\x39\x04\x21\x17\xc5\x81\xae\x24\xca\xdd\xba\x2b\x12\x4d\xb1\x98\xc8\xb2\x2a\xba\x7e\x25\x14\x32\xa1\xd2\x49\x27\xdf\xdf\x59\xce\x3e\xbd\xbc\x36\x7b\xe7\xbd\x23\xe3\xb7\x3e\x3c\x3c\x7d\xef\x66\x7f\x7e\x75\x16\xcb\x5d\x00\x23\xb2\xc0\x45\x83\x97\x29\x0a\xc6\x65\xee\xd5\x8d\x01\x78\xff\xf5\x5f\xff\xa5\xb6\xb7\xb7\x7d\x36\xca\xf4\x91\xd5\xd5\x55\xf1\xa5\x2f\x7d\x49\xef\xfa\xaa\xfb\x86\x06\x2d\x09\x0a\xdd\xd0\xed\xcf\xc4\xf2\xfd\xb7\x7a\xf7\x3f\x7c\x6d\xf9\x8b\xf7\xdd\xea\xbd\xb8\x3a\xed\x3c\x9f\xe4\x74\x82\x80\x3e\x40\x51\x68\xcf\x21\xdb\x26\xcb\x2a\x24\x0a\x36\x08\xa5\xff\x17\x4c\x8c\x00\x28\x89\x14\x56\x92\x5c\x1c\x5b\x4e\xa3\x93\x87\x66\xf1\x4a\x92\x8b\xd9\x24\xc9\x47\xb3\x82\x7d\xe1\xdf\x4d\x9a\xb8\x01\x35\x18\x0c\x68\x63\x63\x43\x6d\x6d\x6d\x51\x9a\xa6\xf6\xfb\xb9\x8e\x3f\x77\xde\x3f\xf6\xd8\x63\xe2\x4f\xfe\xe4\x4f\xb0\xb2\xb2\xe2\x80\x16\xa5\x54\x0c\x20\x21\xa2\x84\x24\xba\x9b\xa3\xce\xfa\x43\xdb\xfd\x27\x4f\xdf\x5c\x7a\xf1\xf0\x28\x79\x21\xc9\xc4\x29\x01\x5a\xa2\xf2\x10\x2a\x3d\x79\xdb\xeb\x76\xd5\x82\xb3\xbe\xe6\xf4\x17\xdd\x3e\x4a\xd4\x57\xb2\x55\xb1\x50\x38\x94\x48\x71\x64\x39\x15\x77\x2f\xa7\x71\x07\x50\xb7\x76\xfa\xd9\xa8\xda\xe8\xa0\x00\xc8\x38\x8e\xd5\xca\xca\x8a\x5a\x5e\x5e\xa6\x92\x79\xa9\x03\x1f\x21\xb6\x3f\xdc\x17\xea\xe5\xb2\x02\x5c\xc6\x25\xc4\xa0\x1c\xc4\x22\x77\x2c\x71\x9f\x1a\xe6\x4b\xa4\x73\x52\x59\xb1\x09\x1d\x9b\xfc\xc6\x63\x64\x13\xec\xdc\xc6\xc9\xac\x4c\xd7\xab\x1f\xb4\xb8\x2e\xa5\xa4\x1f\x87\x4e\xd0\x7f\xe6\x6c\xb4\x05\x26\x4c\x59\xc4\xfa\x59\xc1\xb8\x50\xbf\x93\x53\x8f\xec\x6c\x78\xf0\x3a\x08\xd5\x05\x9a\xeb\xb9\x89\x61\x69\x62\x6d\xb8\x1f\xa0\xf9\x3b\xfa\xcf\xea\x50\x6e\x1b\xe3\x16\x4a\xaf\x89\xe9\xa9\x2b\x77\x5b\x98\x50\xba\xa1\x38\xda\xe2\x0a\xb9\x50\x1d\xd4\x31\x57\x21\xa6\x51\x00\x90\x5b\x5b\x5b\x18\x8d\x46\x7e\xbc\x7c\x55\x89\x99\xe7\xa0\xa0\xd2\xb4\x27\xf6\xc6\xab\xd1\x87\x4b\x7b\xf2\x64\x9c\xe6\x6b\x24\x91\xe8\x65\xc9\x66\x88\x03\x30\x43\x3d\x80\xa7\x88\x7c\x25\xe5\x80\x06\xbf\x55\x07\xa4\xb8\x41\x40\x3c\x9d\xd2\x2f\x1b\x4f\xb0\x4a\x80\xdc\x98\x14\x63\x48\x4c\x94\x9c\xd1\x61\x79\x70\x37\x1e\x61\x86\x09\xcb\x9f\x29\x8f\x8b\xce\x0a\x7c\xa2\xd8\x6b\xbd\x82\xc6\x82\x17\xcb\xc8\xe8\x25\xe1\x16\x68\xe9\xf8\xb8\xbc\x48\x7b\x62\x6b\xb4\x2e\x3e\x9c\x77\xc5\x2e\x84\x1d\xde\x45\x75\x62\x6e\x9d\xab\x63\x9c\xb5\x93\x57\xae\x5c\xc1\x7f\xff\xf7\x7f\x8b\xa7\x9e\x7a\x4a\x1e\x3e\x7c\x58\xc0\xb6\x85\xcc\x8b\x47\xc0\xef\xff\x84\x2c\x8b\x54\xb6\xd7\xcb\xd3\x49\x47\x8e\xf6\x96\xb2\x9d\xeb\x83\xf9\xd6\xd1\x51\xe7\xd8\xfa\xb8\x73\x74\x65\x1a\x6d\x2c\xcd\xa3\x7e\x92\x51\x2f\x96\x94\x90\x22\x21\x14\x04\x11\x84\xa6\x1b\x54\xf1\x69\xa5\x14\x4a\xe6\x02\x69\x1a\xc9\xe9\xa4\x23\x87\xc3\x6e\xbe\x7b\x6b\x69\xbe\x73\x63\x79\xbe\x75\x73\x79\x7e\x7d\xaf\x97\x6f\xcf\xe2\x7c\x08\xa2\x31\x14\xc6\x25\x68\x19\x83\x81\x16\xa5\x94\x99\x94\x5b\x0e\x83\x9b\x89\xab\x52\x4a\xf9\xca\x2b\xaf\xe0\xd2\xa5\x4b\xe0\xcb\x89\xb8\xdb\xd8\xd8\x10\x4f\x3d\xf5\x14\xee\xbb\xef\x3e\x3d\x0c\xa3\x59\x05\x51\x2e\x0d\x8f\x01\x24\x83\x59\xb4\x72\xff\x4e\xef\xd4\x99\x1b\x4b\x5f\x3a\x32\x4c\xbe\xbc\x34\x17\x67\x85\xa2\x35\xde\xe6\x39\x9b\x50\x6d\xe5\x2e\x88\x76\xfc\xb2\x05\x1d\x8e\x86\x54\x24\x22\x60\x6d\x69\x2e\x1e\x89\x65\x67\xad\x93\xd3\x46\x47\xd2\x4b\xef\x6f\x4e\xce\xdf\x58\x9e\xdf\xc8\x22\x35\x65\x49\x18\xc6\x41\x29\x25\x4f\x9c\x38\x21\x9e\x7d\xf6\x59\xf9\xdb\xdf\xfe\x16\xbb\xbb\xbb\xa1\xa2\xd7\xc9\x60\x71\xe4\xc8\x11\xac\xae\xae\x56\x86\x87\xca\xe9\x14\x31\x80\x64\x6d\x12\xaf\x3c\x74\xbd\xff\xa7\xf7\xef\xf4\xbe\xb5\x36\x8d\xff\xb4\x93\xd3\x3d\x84\x72\xff\x16\xf2\xca\x6b\x32\xe6\xd5\x0d\xc1\x99\x32\xe6\xc8\x09\x05\x47\x8c\xc0\xed\x5b\x22\x92\x6a\xa3\x9f\x46\x8f\xdf\xbd\x47\x83\x48\x22\x4e\x23\xf5\xe3\xcb\x6b\xd3\xad\xdc\xa5\x3a\x8c\x8c\xec\x76\xbb\x78\xf0\xc1\x07\xa5\x94\x12\xaf\xbe\xfa\xea\x22\xfa\xa5\x4d\x47\x35\x3a\x0e\x5c\x16\x51\x76\x0b\x25\xc8\x68\x52\xe3\x38\xb5\x28\x09\xce\x50\x51\xd0\x59\x99\x54\x69\xa0\x55\xcb\xcf\x09\x56\x0a\x47\xd7\x13\xf9\x9e\x10\xf8\x88\xfe\xf8\xb1\x29\x8f\xcd\x87\x7e\x27\x14\xc5\x89\x14\xfd\x24\x17\x3d\x28\x33\x4c\x56\x01\x2f\xfe\x12\xbb\x40\x96\x17\xfd\xa8\x75\xc3\x31\x75\xc3\x29\x4d\xf1\x87\xde\x2f\x4a\x7b\x1e\x64\xc8\x46\xbb\x3a\x10\xc4\x7f\xef\x04\x38\xfb\xa0\xf9\x40\x8d\xbf\x26\xee\xb6\xeb\xba\x67\xba\x0d\x98\xbc\x30\x45\x98\xa1\x5c\x61\x04\x20\x55\x11\x8d\x27\x87\xc4\xa7\x93\x43\xe2\xe3\x64\x2c\x8f\x75\x66\xea\xa8\xb3\x97\x09\x97\x3c\xcc\x5a\xd2\x2f\xca\xd1\x77\x03\xb3\xab\xa0\xc5\xfa\xe3\xed\xaf\x02\xd4\x0d\x90\xb0\xe9\xb8\x2b\x91\x94\x05\x09\x5e\xb6\x2c\xa0\xd2\x21\x74\x46\xdd\xf8\x2a\x4c\x8d\x0a\x3c\xd3\xb1\x38\x56\x87\x2d\x38\x79\x8f\x2a\x7e\x0c\x90\xf1\xfc\x78\x63\x58\x32\xc2\x74\x72\x48\x5c\x1a\xaf\x46\x9f\xca\x18\x63\xd8\x55\x3e\xfc\x1b\x55\xb6\xb0\x7f\xe3\x8d\x37\x24\x03\xa6\x4d\x7d\xcd\xb8\x0f\x3f\xfc\x50\x3e\xf4\xd0\x43\xe2\xf0\xe1\xc3\x65\x56\x28\x43\x21\x6f\x0d\x88\x45\x55\xa6\xda\x74\x09\x59\x1a\xc9\xec\xd6\x92\x1a\x0f\x93\xfc\xf6\xcd\xe5\xf9\xd6\x72\x1a\xad\xad\x4c\xe3\x8d\xd5\x49\xb4\x76\x68\x16\xaf\x2d\x65\xa2\x1f\xe7\x94\x74\x72\x8a\x23\x45\x89\x90\x24\x14\x15\x0b\x1f\x32\xa1\xd2\x4c\xa8\x6c\xd2\x91\xe3\x61\x37\xdf\xdb\x5d\xca\x76\xf6\xbb\xd9\xee\x28\x91\xbb\xc3\x6e\x7e\x3b\x8d\xe5\x50\x11\xa6\x28\x57\x0d\x51\xc1\x3c\xf1\x3f\xbd\x92\xc8\x59\x61\xc2\xe5\xb8\x52\xc5\x49\xd0\x75\x75\xb0\xb9\xb9\x29\x1e\x7f\xfc\x71\x3c\x60\x77\x14\xe6\x93\x4f\x0d\x68\xe9\xa7\x62\x70\xdf\xad\xee\xa9\x33\x37\x96\xbe\x76\x6c\x3f\xf9\x6a\x77\x2e\xce\x0a\xb0\x95\x55\xec\x73\x9a\x6b\xd4\x9b\xe4\x15\x9d\x11\x00\xc3\xee\xb4\x01\x4a\x3a\x39\x9d\x58\x9b\xc4\xbd\xd3\x37\x97\xfa\x91\xa4\x7e\xb4\x39\xfe\xcd\xf5\xc1\xfc\xfa\x3c\x56\xdc\x7f\xca\xe2\x93\xa7\x4f\x9f\x16\x17\x2f\x5e\x94\x0c\xb8\xd4\x29\x6c\x53\x47\x0f\x3e\xf8\x20\xd6\xd7\xd7\x75\x1d\xe8\x3a\xd1\x43\x65\x31\x14\x7a\x49\x4e\xfd\xd3\x37\x97\x1e\x3d\xb9\xd3\xfb\xd6\xda\x24\x7e\x2e\x96\xb4\x09\x14\xc7\xcb\x70\x25\xe4\xee\xd9\x83\x8a\xdd\xe0\x1b\xfe\x8e\xd1\xe3\x76\xd1\x4a\x1d\x13\x08\x42\x61\xd0\x9b\x8b\x87\xef\xda\x4f\xf0\xc8\xb5\xe5\x51\x2e\xd4\xff\xf7\xe9\x4a\xfa\x49\x66\xb7\xff\xd0\xe5\xca\x88\x08\xdd\x6e\x17\x8f\x3c\xf2\x88\x4c\xd3\x14\xaf\xbd\xf6\x9a\xd0\xfb\xc0\xb0\x4f\xb1\x08\xf9\xe1\xd7\x65\xd0\x78\xad\x63\x5c\xee\x44\xc1\x56\x1c\x5f\x55\xc4\xc0\x8c\xd4\xab\x8a\x24\xa9\x2c\x04\x34\xf4\xb7\x50\x4a\x95\xe3\x96\x45\x8d\x73\xcb\xa9\xce\x39\x86\x1c\xa3\xc0\xf8\x0e\xb9\xce\xa9\xb4\xe5\x17\xe5\x42\xd4\x87\x45\xe4\xe5\x0b\x0a\x20\x85\xa4\x93\x53\xaf\x93\x53\x4f\x28\x88\x9c\xdc\x33\x9a\x80\xca\x3d\x10\x60\x63\x50\x6d\xe8\x21\x3f\x75\xcc\x03\x07\x4a\x4d\xac\x80\x9f\x4e\x28\x4e\x3f\x4f\x22\x70\x5f\xc7\x6a\xb4\xb1\x3a\x41\xa6\x22\xe0\x37\x94\xd7\x45\xc1\x50\xad\x85\xb3\x60\xdc\x6d\x96\x74\x13\xbb\x23\xae\x5e\xbd\x8a\xf5\xf5\x75\xb9\xb1\xb1\x61\x80\x66\x39\x64\x18\xb3\x0d\xc8\xec\xb6\xef\x4b\x62\x67\xb2\x1a\x7d\xbc\xb4\x2f\x4f\xc6\xf3\x7c\x4d\x48\x24\x76\xdf\x13\x58\x8a\xc5\xd2\x14\xec\x5d\xd9\xaf\x4a\xe9\x64\x01\x85\x7e\x6f\x51\xb6\x99\x37\x52\xd1\xea\x6e\x5f\x31\x97\x6c\x1f\x95\x02\xfc\x58\x33\xce\x55\x1c\x06\x36\x39\xcc\x87\x89\xcf\xb0\x41\x7a\x47\x5b\x65\xb6\x68\x31\x40\x83\x95\x8f\x74\xb9\x8c\xf1\x60\x64\x47\x85\xa1\xa1\x92\x55\x30\x42\xdb\x48\xe0\x22\x72\xa5\xcb\xc1\x00\x17\x00\xa4\x5d\xba\x3e\xda\x88\x2e\xa5\x3d\xb1\xa3\x04\xe9\x79\x1b\xce\x4a\x99\xd0\x1c\x97\x37\xdf\x7c\x13\xa3\xd1\x68\x91\x36\xe9\xbc\xbf\x7c\xf9\x32\x56\x56\x56\xe4\xfa\xfa\x3a\x7f\xee\x1b\x6b\x7e\x1b\xd6\x00\x4a\x33\x41\xd3\x79\xac\xa6\xbb\x71\x36\xbc\xb5\x34\xbf\x99\x0c\xc4\x56\x7f\x2e\xfa\x4b\xf3\x68\xd0\xcd\x44\x2f\xce\x29\xe9\x48\x03\x5e\x62\x09\xc8\x79\xa4\xd2\x79\x24\xb3\x5c\xa8\x74\x16\xcb\xf1\xb8\x23\xc7\x93\x4e\x3e\x4c\x23\x35\x51\x84\x14\xe4\xcc\x5b\xd1\x7f\x63\xf6\x9b\x96\xc3\x66\x86\x8d\x62\x75\x22\x01\xc8\xf9\x7c\x2e\xdf\x79\xe7\x9d\x4a\x99\x79\x59\x36\x37\x37\xc5\x99\x33\x67\xb8\xbc\xd1\x9b\xa8\x25\xfa\xb7\x3b\x17\x83\x7b\x77\xbb\xa7\x4e\xdf\x58\x7a\xe1\xae\x02\xb4\x3c\x4c\x8a\x12\xce\x9e\xe8\x1f\x07\x74\x33\x52\xcd\xb0\x28\x15\x43\x14\x6e\x60\x83\x85\x03\x66\xaf\x82\xe8\x48\x71\x6c\x65\x42\x5f\x7c\x40\x16\x4b\x9e\x72\x31\x3e\x77\x7d\x90\x5e\x97\xc2\xf1\xef\xcc\xf5\x38\x71\xe2\x04\x86\xc3\xa1\xb8\x7d\xfb\x76\x93\x92\x16\x00\xe4\xa9\x53\xa7\xc4\x93\x4f\x3e\xc9\x97\x81\xf3\x39\x3e\x09\x14\x12\x02\x7a\xf7\xdf\xea\x9d\x3c\x7d\x63\xe9\xff\x5a\x9d\xc4\x7f\x16\x4b\x3a\x0a\x55\xce\x67\xa9\x74\x58\xd7\x00\xd0\xdd\x84\x2f\xc6\xad\x68\x33\xae\xcb\x54\xe0\x39\xeb\xe7\xe5\x4f\xd2\xcd\xc4\xc3\xf7\xde\xee\x7e\x3b\x8d\x54\x3a\x17\xea\xd5\x1b\x83\xf9\x56\x16\x29\xd7\x28\x2a\x64\x1c\xf4\x86\x82\xbf\xff\xfd\xef\xf5\x3e\x6e\x75\xb2\xb8\x4d\xf6\xd6\x19\x8a\x02\x70\xf7\x71\x09\x09\x65\x3f\x60\xc8\x55\x1a\xad\x1d\xaf\x76\x36\x72\x32\x19\xc9\x85\xca\xd2\x48\x4d\x73\x52\x69\x50\x78\xfa\xf1\x78\xff\x5d\xf9\xce\xa6\x19\x06\x59\x16\x93\x17\xfb\xdc\x5f\x76\xa4\xb8\x91\x68\x27\x1b\x3a\x7a\x83\x47\x4d\x0a\x42\x41\xc4\x92\xfa\xdd\x5c\x2c\xc5\x92\xe2\x3c\x52\xfe\x52\x36\xcd\xc0\x2c\x82\x38\xf5\xbb\x45\x87\x4d\xea\xe2\x6b\x63\x31\xea\xe2\x3e\x08\xbb\xd2\x04\x50\x9a\xe2\x6c\xcb\x77\xc8\xfa\x6c\x72\x6d\x40\xc9\xf7\xd7\x56\x0f\x8b\x96\x2f\x98\xc6\xc5\x8b\x17\xb1\xb1\xb1\x21\x36\x36\x36\x38\xe3\x28\x51\x4e\xca\x05\x3f\xaf\x06\x48\xf3\x18\xe3\xc9\x8a\xb8\x3a\x59\x11\x1f\x26\x13\x79\xb4\x33\x55\x47\x01\x18\xa0\x8d\x12\xb0\x73\xbb\x10\xe0\xb4\xb7\xaf\xdc\x59\x6e\x4c\xdb\xb6\x12\xa8\xd8\x59\xd6\x3e\xb2\x42\xce\xa6\xa7\x1b\xbc\x2b\x0c\xc9\xe9\x03\x8e\xf9\x66\xd2\x74\x15\x81\x89\x9b\x31\x21\x8a\xf4\x46\x77\x3c\x32\x3b\x67\x0c\xc4\x36\x85\x2c\xe6\x21\xb0\xee\x49\xde\x04\x61\x72\x46\xa3\xb8\x72\x73\x8d\x10\xeb\x47\x46\x18\x4f\x56\xa2\xf7\x46\xeb\xd1\x47\x32\x02\x3f\x30\x30\x85\xdd\x6f\xc7\x61\x13\x88\x08\x1f\x7d\xf4\x91\xcc\x32\x07\x6b\xb4\x01\x18\x23\x47\x2f\x5c\xb8\x20\x01\x88\x47\x1f\x7d\x54\xae\xad\xad\x71\x3f\x59\xc0\xa8\x31\xed\x05\x96\x09\x4a\x01\xf4\xca\xdf\x29\x11\x25\xf3\x58\x4d\x6f\xc7\xf9\xad\xdb\x4b\x79\xb1\x64\x58\x21\x16\x8a\x84\x90\xe8\x08\xa5\x19\x17\x48\x49\x6a\x5e\x9e\x49\xe3\x4c\x10\x67\x65\x0e\x81\x17\xfd\x3c\x2d\x99\x16\x5d\x37\x66\x8f\x13\xa5\x94\x4c\xd3\x54\x5e\xba\x74\x09\xaf\xbc\xf2\x4a\xad\xa5\xbc\xba\xba\x6a\xd8\x26\xb0\x61\x31\xcd\x2e\x10\x51\x12\xe5\xe8\x1f\xdb\x4f\xee\x39\x73\xa3\xff\x85\xbb\xf7\xba\x5f\xed\xcd\xc5\x59\x02\x25\xfc\x60\x50\xef\x07\x00\x9c\x61\xca\x10\x06\xf1\x19\x17\xaf\x79\x1a\x9d\xc1\x99\x4a\xdd\xde\x62\x45\x1b\x87\x66\xf1\x9f\x9e\xb8\xd5\x9d\xce\x62\x39\x9e\xc6\xf2\x77\xb7\x97\xb2\x5d\x65\xe3\xd0\x75\x2a\x81\x62\xbe\x0a\x00\xf9\xd6\x5b\x6f\x89\xf2\x1c\xab\x50\xfb\x90\x00\xf0\xb9\xcf\x7d\x0e\x6b\x6b\x6b\x7c\xc8\x4c\x83\x96\x18\x40\x2c\x14\x7a\xeb\x93\xce\xe6\x9f\x7c\xba\xfc\xc2\xc6\xb8\xf3\x7c\x47\xd2\x51\x02\x09\x5f\x57\x15\x5d\xca\xca\x81\xf2\xb1\x61\x62\xed\xc4\x7a\x77\x53\x56\xa7\x22\x0c\x6b\xe3\x02\x1c\x72\x2b\x5a\xd7\x53\xb2\x34\x17\x8f\xdf\xb7\xdb\x1d\x4f\x3a\xf9\x70\x56\x4c\x1e\x97\x70\xf7\xf2\x31\xf2\x9b\x88\xe4\xfd\xf7\xdf\x8f\x8f\x3f\xfe\x58\xd4\x4c\xd8\xae\xc3\x18\x8b\x18\x92\x12\x08\xaf\x2a\xaa\x1d\xcb\x47\x55\xb9\x08\x2f\x5c\x9d\xd3\xc2\x40\x02\xc5\x59\x18\x69\x24\xc7\x99\x50\xd3\x10\xb5\xe5\x3a\x8f\x54\x56\xac\xa2\x19\xed\x0c\x47\x58\x32\xe4\xe8\x0b\xb8\x10\x14\x2d\x03\x9a\x5d\x28\xf5\x2b\x23\xe4\x99\xb2\xb0\xe9\x8a\x48\x52\xd2\xcd\x68\x90\xe4\x22\x49\x63\x83\x2e\x9d\x7a\x08\x08\x28\xdf\xb5\x31\x5d\xa8\x79\xb7\xb0\xe5\x17\x78\xb6\xc8\xb0\x4a\x1b\x4a\xae\xcb\xd7\x22\xf9\x08\xbd\x6b\x8b\xa7\xcd\x2d\x5a\x17\x07\x61\x71\x78\xbc\xad\xf9\xdb\xdf\xdf\xc7\x70\x38\x94\x83\xc1\x80\x6f\x24\xa5\x99\x17\xbd\x7b\x6a\x5a\xee\x40\x3a\x9d\x2d\x89\x9d\xe1\x7a\x74\xa9\x3b\x92\xf7\xc4\xf3\x7c\x45\x94\x1b\x8f\xe9\x69\xa9\xfc\x8c\x20\x33\x20\x63\x07\xee\x19\x6b\x51\xf8\x31\xc3\x37\x54\x6d\x73\xce\x9c\x14\x6f\x4f\x17\x7f\xab\x7c\x2a\xfd\x68\x36\x43\x8b\x41\x47\x23\x54\x4c\x60\x7b\x6f\x04\xa8\x61\x3c\xf4\x44\xc2\x8a\x06\x29\xfd\x7b\x66\x33\x57\x56\x7e\x7f\xd6\x41\xd9\xe4\x44\xe3\x91\xd5\x99\x3e\x36\x04\x44\x50\x02\x59\xba\x44\xd7\xf7\x8e\xc4\x17\xa6\xcb\x62\x07\x05\xdb\x92\x7a\xf3\x5b\x1c\x66\x41\x83\x98\x97\x5e\x7a\xa9\x6e\x35\x51\x93\xa1\x61\xda\xda\x85\x0b\x17\xa4\x52\x4a\x3c\xf1\xc4\x13\xf2\xd0\xa1\x43\xc6\x83\x9e\xef\xc2\x41\x2e\x03\x08\x86\x75\x41\x09\x22\x94\x52\x09\x80\x5e\x09\x28\x04\x8a\x0d\xda\x62\x10\x89\x9c\x94\xc8\x05\x44\x01\xfa\x1c\xd0\x0c\xb0\x61\x1e\xb8\x60\x4d\x1f\x41\xa0\xe3\xd7\x60\x85\xfb\xab\xb0\x50\x69\x9a\xca\x0f\x3f\xfc\x10\xbf\xfc\xe5\x2f\x9b\x8c\x1d\x71\xea\xd4\x29\x3c\xf2\xc8\x23\xbe\x7e\x88\x4b\xa6\x25\x06\xd0\x5b\x9d\xc6\x6b\x0f\xdc\xec\x7d\xee\xee\xfd\xe4\xcb\x4b\x99\x78\x98\x80\x9e\x6e\x81\xbe\x42\xf5\xc5\x35\xc0\x7b\x85\xaf\x94\x5d\xc6\xc5\x32\x70\x70\xfd\xd9\xaf\x61\xfe\x2b\x28\x44\x8a\x36\x56\xa7\xf1\x33\xf7\xdf\xea\x0d\xa7\x1d\x39\x7c\x27\x1e\xbf\x39\xe9\x48\xff\xb8\x00\x0d\x40\xe4\x63\x8f\x3d\x26\x46\xa3\x91\x3c\x7f\xfe\x7c\x9d\x8c\x11\x9b\x9b\x9b\x88\xe3\x58\x7f\x1f\x7f\xa3\xbd\x98\x40\xbd\xff\x9f\xbd\x77\xed\xb1\xe3\xb8\xce\x46\x9f\x55\x7d\xd9\x7b\xf6\xec\x19\x0e\x87\xe4\x90\xa2\x48\x89\x96\x2d\xc7\x91\x1d\x45\x4e\x1c\xdb\x70\x12\xbf\x3e\x81\x91\x1c\x07\x48\xe0\x2f\x71\x00\xe7\x53\x92\xff\x15\x24\x41\x10\xc0\x41\x10\xdb\xc8\xdd\x3e\xb1\x1d\xc3\x71\x6c\xcb\xb1\x6e\x14\x25\x51\x12\x45\x8e\x78\x19\xce\x8d\x33\x7b\xf6\xb5\x77\x77\xd5\xf9\xd0\x5d\xd5\xab\xaa\xab\x2f\x43\x39\xef\x7b\x0e\x90\x02\x66\x76\x5f\xea\xde\xab\x56\x3d\xf5\xd4\xaa\xaa\x5e\x2a\x86\xcf\xed\xac\x3e\xb7\x75\x12\xff\xdf\x51\x46\x57\x80\x72\x73\x53\xeb\x64\x77\xb0\xc1\x86\x7b\xd6\x5f\xd1\x58\x2a\x7d\x8e\x6e\x17\xd0\x00\xa5\xbe\x4f\xe2\x76\xa4\xda\x9b\x50\xe8\xaf\x26\xc1\x0b\x4f\x3d\xea\xdf\x3f\x58\x5d\xee\xcf\x22\x39\x9f\x47\xd2\xb7\xe7\x8d\x50\x4a\xe1\x8b\x5f\xfc\x22\xfe\xfa\xaf\xff\x5a\x3a\xb6\x7f\xae\xeb\xa2\x93\xbd\xcf\xeb\x4e\x87\xf6\x45\x5a\x37\xb5\x50\x41\x51\x7c\x03\x3a\xcd\xb4\x70\xa3\xae\x54\xa8\x74\x11\xca\x79\x6e\xfc\x64\x0d\xa5\xca\x4a\x53\x25\x0a\x26\xf6\xbc\x44\xe3\x8c\x2e\x07\x90\x1b\xa5\x11\x53\x76\x7c\xc9\x64\x35\x8c\x46\xd0\x46\x29\x13\x15\x34\x79\x75\xda\xc8\x9e\x0f\x2d\x47\xc2\x81\xa4\x38\x4e\xc5\x20\x4a\x29\x56\xb1\xe2\x2c\x8b\x36\xb8\x32\x61\x7b\xbd\x1e\x7a\xbd\x9e\x7b\x38\x55\xd3\x94\x0e\x77\xbe\x6f\xd0\x04\x64\xea\xa6\x9d\xdc\xb4\xe1\x09\xe3\xc6\xc7\xfd\xd6\x4d\x13\xb9\xf1\xbb\x69\xf9\xf2\xe7\xf3\xd3\x94\x8f\xa6\xfa\xe1\xce\x17\xb7\x8b\xd8\xdb\xa6\xb6\x4e\xfb\x5c\x00\x90\xaf\xbd\xf6\x9a\x0c\xc3\x50\x7c\xea\x53\x9f\xd2\xd3\xa3\xfa\xd0\x32\x0d\x5a\x62\x14\x23\x67\xa5\x54\x2c\x23\x1a\xcf\xd6\x83\x7b\x93\xb3\xf2\x9d\xde\x54\x6e\xc5\x53\x75\x25\xef\x87\x4b\xc0\xa2\x7b\x66\x8b\x07\xb1\x78\x70\xc6\x6c\x14\x2f\xad\x25\xd2\x54\xca\xb0\xe9\xfc\x5d\x24\xe0\x03\x20\x5c\x41\x22\xbf\xb7\x40\xb8\x95\x3f\x4b\x87\xc2\x42\x1b\xba\xfd\x70\xca\x9f\x2d\x67\xce\x3b\x99\x22\x2d\x33\x62\xd4\xc0\x03\xa5\x2e\x00\x5b\xa6\x6d\xa6\x9f\x4c\xe1\x4d\x1d\x18\x3d\x51\x62\x21\x99\x45\x18\x4d\x36\x82\x37\x4f\x2e\x84\xef\xa1\x98\x26\x61\x46\xa7\x2e\xdb\xc2\xcf\x27\xea\x02\xf4\x5b\x41\xfd\x1b\x6f\xbc\x21\xb3\x2c\x13\x9f\xf9\xcc\x67\x64\xbf\xdf\x37\x36\x12\x80\xb5\xac\xd8\x80\x16\x06\x74\xe3\x02\xe8\xc6\x85\xec\x4c\x51\x2c\x95\x45\xb1\x3f\x10\x1b\xb9\x17\x9f\x89\x78\xda\x9c\x1d\xc8\xed\xab\xd8\xb4\x65\x01\x56\x34\x38\xe2\x40\x2e\xe1\x61\xb5\x1c\x2f\x97\x4b\xf9\xde\x7b\xef\xe1\xfb\xdf\xff\x7e\x53\x99\x45\xa1\xeb\xcc\x3d\xfb\x33\xa0\x45\x48\xf4\xaf\x1c\xf5\xae\x3d\x71\x12\xff\xfa\x20\x11\x1f\x13\x8a\x06\x9a\x7c\x73\xfa\x0f\x23\x4e\xd0\x9f\xdb\x00\x0d\xb2\x46\xbd\xf6\xd1\x11\x60\xc0\x18\x46\x1e\x73\x3f\x45\x27\xae\x98\xe8\x13\x98\x0c\x01\xa1\x14\x5b\xe7\xa6\xd1\xe7\xae\x1d\xf6\x8f\xc6\xbd\xec\xf0\xf6\xd9\xf9\x76\x16\x18\x9b\x0d\x03\x0a\xf5\xb7\xec\xf5\x7a\x88\xe3\x58\x24\x49\xe2\xd3\xcd\xf2\x4b\x5f\xfa\x92\xe8\xf7\xfb\x82\x8a\x85\x1c\xc5\x6f\x48\x85\x51\x6e\x90\x51\x7f\x73\x1a\x5d\x7a\xea\x51\xef\xff\xea\xa7\xe2\x23\xa4\xfb\x66\x36\x5e\x50\xa6\x9c\xc4\x9a\x18\xb3\x49\x33\xe5\xd5\x95\xc5\x06\x1a\x0c\xb4\xf0\xee\xd0\x9a\x4e\x43\x39\xc0\xb1\xfa\xdf\xa2\x8d\x86\x12\x1b\x67\xe6\xc1\xa7\x9f\xd9\x5f\xb9\x7b\xd2\xcb\x8e\x1e\xac\x2f\x12\x29\x2a\xc0\xc5\xc8\xf7\xea\xea\x2a\x66\xb3\x99\x60\x86\xdb\x6d\x83\xdf\x2e\x03\x6a\x01\x40\xba\x1d\x12\x8f\x84\x47\xe4\x76\x00\x15\xe4\xe9\x8b\x83\x37\x22\xde\x58\x0b\xe0\x32\x5b\x06\x6a\x2e\x09\xa9\xae\x3d\x62\x42\xa9\x9d\x25\xa4\xc8\x3f\x94\xb9\x2f\x84\x4d\x69\x5a\xdc\xa5\x93\x99\xd2\xd3\x68\xb5\x8c\x8f\xeb\x6b\x5b\x91\x97\xab\x80\xdc\xfb\x22\x89\xe2\x3e\x90\x88\xe3\x54\x0c\xe2\x8c\x62\xe4\x34\x28\x5f\x5d\x64\xb9\x17\x5e\x78\x01\x2f\xbc\xf0\x82\x55\x3f\x8e\xf3\x75\xa4\xfa\xb7\xae\x13\x86\xc7\x8f\x1b\x97\xdb\xd8\x7c\x9d\xb8\xcf\x35\x31\x0f\xee\xb7\xf6\x81\x03\x5f\x5a\x6e\x18\x37\xbe\x36\xc6\xa3\x4d\xa8\xeb\xfc\xf9\x00\x9c\x2f\x5c\x5d\x7c\x75\xcf\xbd\x75\xc7\xa7\x4a\x35\xcb\xa8\x94\xd2\x23\x68\x6d\xbf\x90\x28\xa5\xe6\xc9\x0a\x1d\x8e\x37\x83\x5b\xd3\xf5\xe0\x96\x0c\x31\x55\xa8\xca\x9f\x75\x5d\x91\x45\x47\xf9\xb0\x8d\xa8\x74\x3b\x50\x9c\x95\xd1\x57\x06\x58\x94\x61\xb8\x33\x53\x38\x2c\xcd\x72\x3e\xbb\x78\xaf\xf8\x3b\x14\xe9\x30\x30\x43\x85\x3d\x19\xcb\x3e\xe9\xb6\x49\x65\xdb\xb4\x46\x80\x44\xc5\x20\x82\x4c\x1b\xd7\x8a\x99\x54\xd9\x4e\x4d\xd6\x59\xdb\xd6\x79\x34\x59\xcf\xd9\x96\x64\x31\x08\xee\x8f\x2e\x46\xd7\x97\x31\x46\x28\xa6\x40\xf4\x54\x08\xeb\xbc\x2d\xb6\x45\x29\x25\x3d\x67\xd3\xb8\xce\x27\xe7\xdc\x99\x30\x37\x6f\xde\xc4\x0f\x7e\xf0\x03\x48\x29\xb9\x4c\x68\x70\x60\x58\x8e\x02\x50\x4d\x81\x7c\x95\x8f\x52\x6a\x4c\xf9\x6a\x9f\x11\x80\x91\x52\xea\x08\x80\xf9\x23\xa2\x23\xfe\x4c\x5f\x3b\xbf\x87\xc5\xfb\x11\x11\x1d\xe9\xb8\x50\x2c\x7b\x56\x4a\x69\x03\xdd\xb9\x52\x6a\x5e\x18\x91\x5b\xf5\x21\xa5\x94\x6f\xbf\xfd\xb6\x06\x2d\x6e\x99\xad\xba\xf9\xd5\x5f\xfd\x55\x3c\xff\xfc\xf3\xee\x61\x89\xa1\x5e\xee\x0b\x85\xf0\xfc\x24\xde\xbc\x72\xd4\xff\xb5\x33\xb3\xe8\x85\x40\x8a\x8d\xfc\xdb\x39\x0c\x8b\x3b\x05\xaa\x4a\xb9\x56\x05\xc5\xae\x0c\xcb\xc8\x5b\x8b\x2a\x15\x3c\x13\x73\x9d\x80\xb2\x64\x31\xbf\xcf\x65\x31\x97\xdf\x22\x98\x88\x52\xba\x7c\x7e\x12\x7d\xee\xea\xa3\xde\x0b\xfd\x94\x86\x50\x88\x0b\xe6\x2b\x2c\xf4\xbc\x3e\x18\x12\x9f\xfc\xe4\x27\xc5\x27\x3f\xf9\x49\xaf\x0c\x04\x41\xa0\x07\xb5\x86\x71\x41\xd9\x5f\x84\x50\x88\x57\x52\xb1\xfe\xec\xde\xca\x73\x6b\x8b\xf0\x53\x42\xd1\x40\xf7\x78\xa6\x69\xaa\x12\x94\x99\x71\x85\x06\xfb\xda\xe9\x32\xf3\x36\xc9\x07\x0c\x28\xab\x53\x59\xa8\xcd\xd6\x17\xfa\x01\xf7\xa2\xd3\x89\xd3\xe0\xa9\x8b\xe3\xf8\xb3\x57\x1f\xf5\x3f\xb6\x3e\x0f\x37\x90\x03\x69\x03\xa6\x75\x99\x01\x88\x2f\x7f\xf9\xcb\x62\x73\x73\xd3\x57\x27\x95\x3a\x2a\x7e\x3b\x33\x30\x75\xa3\xd8\xd3\xd8\x1b\xb8\x7e\x8c\x5f\xab\xc3\x2f\x2c\x8c\x95\x52\x52\x0a\xc8\x65\xa0\xe6\x4b\x21\xa7\x92\xf2\xc3\x16\x75\xcd\x1a\xd5\x47\x96\x18\x96\xce\x92\x65\xbd\xe7\x45\xa1\x9a\xa9\xf4\x5f\xca\x2a\x83\x9c\xec\xb9\xfb\xab\xd1\xa5\x9b\x76\xe5\x1d\x7b\x2f\x14\xc5\x71\x46\xc3\x28\x13\x31\x43\xd2\x12\x0c\xc4\x68\x20\xe3\xa1\xe6\x38\xd8\x70\x59\x02\x17\xac\xb8\x4a\xb3\x6e\x8a\xae\x09\x04\xd4\x75\xde\xbe\x74\x9a\xc0\x8c\x8f\x39\xa9\x4b\xa3\x69\xfa\xd0\xe7\xa7\x4b\x1e\xf4\xbb\xba\x3a\xe0\xce\x2d\xa3\x1b\xc6\x97\x56\x53\xdc\xa7\x01\x79\xfc\xcf\x4c\x45\xe8\x69\xa2\xa2\x83\x9a\x43\xd0\x74\x3e\x0c\x1e\x8c\xb6\xc2\x1b\xf3\xd5\xe0\x36\x48\x49\xcf\xae\x43\xb9\x02\xd2\x42\xae\x97\x4e\x03\xb0\x34\x57\xd1\x16\x2c\xff\x0a\xc6\xbe\xa5\x02\x83\x4c\x67\x6f\xd1\x21\xce\x40\xc0\x19\xee\x2a\xa5\xb1\x85\x01\x19\xda\x9f\xdb\xd1\x38\x7a\x14\x26\x91\xe2\xf0\x22\xd3\x09\x95\xa3\x0f\x13\x97\x32\x05\x2c\x61\x57\xb9\xa1\x4b\xa9\xb0\x35\x10\x82\x52\xac\x8e\x94\xee\xa0\xd2\xc5\x40\xec\x8e\xb6\x82\x97\x47\x17\xc2\x3b\x54\xae\x9c\x71\x8d\x72\x65\xf1\x6d\x0c\xe8\x4d\xd3\x14\x7f\xf6\x67\x7f\xa6\xc1\x4b\x13\xeb\xc6\x7f\xdd\x6b\x2b\xcc\x7b\xef\xbd\x27\xff\xe9\x9f\xfe\xc9\x8c\x48\xc9\x5e\x2a\x6f\xa6\x12\x91\x03\x18\x03\x5e\x50\x82\x8c\x11\x11\x8d\x60\x03\x92\x43\x22\x3a\x2c\xae\x8f\xf4\x35\xfb\xe5\x40\xc5\xc4\x53\xc4\x6d\x00\x0b\x4a\xdb\x16\xbe\x2c\xdc\xd8\x72\xbc\xf2\xca\x2b\xf8\xc1\x0f\x7e\xe0\xa9\x82\x4a\x39\x35\x28\xe3\x75\x61\xec\x5a\x00\x84\x71\x46\x83\x8f\xec\xf5\x3f\x76\x71\x1c\x7d\x3e\x4e\xe9\x12\x15\xab\x32\xb9\x4c\x5b\x36\x4d\x45\x8f\x6b\xe3\x6b\xaa\xfc\x94\x58\xbb\x64\xde\x5d\xe0\x63\x80\x30\x8b\xc6\xe8\xf4\x42\x20\x4d\xd2\x8a\xe2\x95\x44\x5c\xbb\x38\x8a\x7f\xfd\xea\xa3\xfe\x15\xca\xa7\xea\xf4\x5e\x2b\x21\x60\xad\x92\xaa\x75\x7f\xfa\xa7\x7f\x2a\xf4\x46\x73\x8c\x91\x37\x7b\xb6\x84\x92\xfa\x9b\x93\xf0\xd2\x93\xc7\xbd\x5f\x8f\x53\xba\x62\xf2\xc8\xda\x2c\xef\xdf\x78\xe6\xdd\x7e\xaf\x68\x1d\xe6\x01\x39\xf5\x63\xc0\x8f\xc3\xd8\x56\x63\x66\xaa\x85\x01\x20\x91\xaf\x02\x7b\xee\xf2\x28\xfe\xe4\xc6\x2c\xbc\x84\xdc\x06\xcb\x07\x5e\x4e\xe3\xdc\xfe\xa4\x09\x6f\x08\xee\xb1\x2e\x22\xcb\x73\x5b\x64\xda\x39\x0d\x53\x5f\x5b\xef\x52\xa1\x92\x24\x54\x53\x29\xf2\xb5\xf2\x7c\xea\x86\x23\x43\xfd\x8c\x5f\xbb\xdf\xcf\x8c\xda\xcc\x6a\x0b\xdb\x4f\xb9\x95\x55\x09\x5f\xec\x7b\x18\xc5\x4e\x15\x49\x67\x1e\xdc\x42\x2b\xea\xf7\x53\xb1\xb1\xb2\x14\x43\x94\x16\xe2\x16\x6d\xeb\x8c\x3a\x7c\xce\xc7\x56\xb8\x60\xc2\xe7\xa7\x6e\xda\xa8\x0e\x6c\x3e\x16\xf8\x74\xee\xeb\xa6\x7e\xdc\xbc\x77\x49\xb3\x2d\x4c\x5b\x7e\xdb\xd2\xf1\x01\xb5\x26\xd6\xa7\x4b\xdc\xad\x75\xfa\xca\x2b\xaf\x80\xef\x20\x49\xb6\x81\x7a\xc2\xfe\xcc\x4a\x8e\x2c\xc2\x68\xbc\x19\xdc\x39\xbe\x14\xbe\xbc\x58\x11\x3b\x0e\x54\x2f\xe2\x01\x1b\x41\x32\xed\xeb\x78\x55\x9c\x71\x01\xa0\xf7\xfb\x26\x4b\x13\xf9\xc2\x98\x5e\x83\x01\x13\xc0\x6a\x49\xe6\x85\xfb\x9c\xdd\x93\xb3\xf2\x8f\xed\xac\x9b\x67\x97\x15\xc4\xb0\x9f\x0c\x00\xb1\x3c\x68\x06\xa9\x3a\xf8\x60\x9a\x9a\xe5\x4d\xe7\x99\x72\xa6\x45\xa6\x3d\x3a\x1c\x9f\x0b\xae\x1f\x3d\x11\xbd\x01\xdb\xf8\x94\x77\xd4\x06\xbc\x90\x6d\x1b\xc2\x5d\x17\x39\x6e\x73\x12\x00\x76\x76\x76\xf0\xf5\xaf\x7f\xdd\x27\x6f\x16\xf3\x52\xe4\x4b\x6f\x8a\xc7\xf7\x56\x19\xa3\x04\x34\xfa\xcf\x07\x4c\xcc\x7b\xa5\x14\x7f\xc6\x57\x0f\x99\x7a\x28\x18\x41\x3d\xb8\xb4\xf6\xb2\xf9\xf1\x8f\x7f\x2c\x7f\xf6\xb3\x9f\xb9\xe5\xf1\xea\xb3\xff\xf5\xbf\xfe\x97\xf8\xc5\x5f\xfc\x45\x57\xef\x09\x94\x9d\x5a\xff\xcc\x3c\xdc\xb8\x38\xee\x7d\x66\x25\x09\xae\x11\xd0\xb7\x95\x71\xc9\xd0\x29\x76\xeb\x02\x8e\xb2\x43\xe6\xc3\x58\xa7\x31\x18\x79\x60\xf7\x3e\xf5\xee\x09\xa6\xd3\x08\x14\x0d\xcf\x2c\xc2\xe7\x9e\x3a\xea\xff\xda\x4a\x22\x06\xc8\x3b\x6a\xce\x20\x99\x7a\xf8\xc4\x27\x3e\x81\xdf\xf8\x8d\xdf\xe8\x32\x8b\xc1\x97\x40\xf7\x87\x8b\x60\xf3\xc3\x07\x2b\xcf\x0d\x17\xc1\x27\x28\x8f\xdf\xca\x88\x52\x36\xb3\xa2\xac\x32\x97\x45\xe0\xf9\xb6\x5e\xf2\x5b\x7f\xd3\x61\x4e\x79\x2f\xb9\x9f\x50\xd2\xe6\xfa\x3c\xfc\xd8\xa5\x93\xf8\x99\x33\xb3\x60\x1d\xf6\xea\x28\xd3\xd7\x29\xa5\xf0\x7b\xbf\xf7\x7b\xb8\x72\xe5\x4a\x1b\x20\x39\x15\xbe\x00\x9a\x8d\x73\xf9\xb5\xaf\x23\xad\x84\x7b\xef\xbd\xf7\x40\x44\xf8\xcd\xdf\xfc\x4d\x77\xae\x55\xdb\xb8\x98\xf9\xd2\x34\xc8\xed\x5c\x8a\x13\x3a\x3d\x60\x84\xb9\x8a\x65\x1e\xca\xd5\x10\xfc\x21\x9c\x79\x78\xf3\xca\x03\xb3\x35\x84\xaf\x7c\xe4\xca\x99\xb7\xb5\x06\xb6\x42\x21\xec\x65\x62\xd8\x5f\x8a\xa1\x90\x08\xa5\x30\x1b\x2b\x99\x79\x67\x4f\xd8\xa6\x29\x1f\xee\xdc\x4e\xd5\xad\xf7\x0f\xa2\x4c\xbb\xcc\xdd\xd7\x85\xf9\x79\xa4\x7f\x9a\x74\x1e\xd7\xfd\x77\xe5\xaf\x39\x51\x29\x65\x9a\xa6\x7a\x29\x3c\xff\x86\xfa\x14\xda\x04\xb9\xd2\x9b\x17\xca\x6b\x0a\xa2\x30\xed\xe1\x70\x74\x21\xbc\x15\xcd\xe4\xf9\x60\xb9\x1c\x44\x4b\xe4\xcb\x50\x0a\x16\x84\x0b\xb0\x4b\x0f\xfb\x6c\x01\x50\x06\x76\x72\xa8\x57\xed\x94\xef\xab\xa2\x5d\x8e\xdd\xdc\x56\x56\x1f\x2f\x7f\xca\xde\x3b\x9a\x95\x7c\x41\x9d\x36\x68\x6c\x76\xbc\x38\x4b\x99\x73\x59\xf4\x48\x90\x97\x45\x8f\xba\xb3\x88\xc6\x93\xb3\xc1\x3b\x47\x97\xc2\x1b\x49\x8f\x8e\x40\x66\x7f\x12\x6e\x94\x5a\x39\x58\x51\x29\x85\xc9\x64\x22\xff\xe1\x1f\xfe\xc1\x97\x78\x9d\xeb\x2c\x6b\x4a\x29\x79\x70\x70\x20\xbe\xf6\xb5\xaf\x49\x00\xf8\x83\x3f\xf8\x03\x08\x61\xe9\x65\xae\x6f\x05\x4a\xb9\x71\x0f\x73\xe5\x7f\xda\xf9\x98\x72\x3d\x68\x4c\x99\x4c\x5a\xb6\x2b\xca\xde\xbb\xc6\xc8\xed\x77\xbf\xfb\x5d\xb9\xbb\xbb\x8b\xd9\x6c\xa6\xb7\xf3\xe7\x6c\xb0\xdb\x19\x4b\x00\x88\xa2\x08\xc5\xd4\x88\x61\x16\x4c\x27\xad\x10\x12\xd0\xbf\x38\x8a\x2f\xaf\xcd\x83\x8f\x05\x8a\xd6\xbd\xc2\xc0\x99\x11\x06\x7a\x7d\x9d\x74\x75\x58\xdb\xec\x0c\x79\xc8\xae\x5d\xc6\x42\xbb\x42\x96\xc2\x38\x15\x5b\xe7\x27\xd1\xa7\xae\x1c\xf7\xff\xeb\xe6\xd6\xf4\x1d\xe4\xec\x82\xb6\x49\x32\xdf\x20\x08\x02\x84\x61\x68\xea\xbe\xdf\xef\x8b\xdf\xff\xfd\xdf\xe7\xc9\xf3\xb3\x88\xcc\x5f\x9c\xd1\xc6\xe6\x24\x7a\xb6\x58\x45\x54\xa6\x0f\xcd\x7c\x38\xad\xca\x1d\xb8\x38\x4d\xa5\xb6\xbe\x9c\xb1\x86\xdb\xba\x2b\xb3\x0d\x64\x85\x66\x8e\xc4\xca\x52\x5c\x39\x37\x89\x9e\x5d\x9f\x87\x37\x8f\x57\xb2\x11\xca\xd5\x67\x7a\xaf\x22\x41\x44\x32\x8a\x22\xc1\xf4\x20\xd0\x61\x1a\xc8\xe3\xaf\xe2\xbf\x6e\xde\xd6\x87\x90\x9a\x46\xc2\x12\x00\x92\x24\xc1\x64\x32\x31\x73\x79\x80\xa1\x0c\xb5\x1f\xb3\x29\x57\x46\x2a\xc9\x6d\x5c\x54\x52\xa1\xf4\x0a\x57\xb2\xe3\x76\xe5\xe6\xae\x98\xbb\x57\x0c\x38\x93\x53\xf1\xd6\xfc\xbb\x9b\x04\x55\x3e\xa4\x8e\xdf\x3c\xe6\x46\x84\x1e\x47\x0a\x61\x94\x8a\xe1\xca\x32\x58\x8b\x32\x61\xe6\x3d\x4b\x5b\x00\xb3\xb2\x84\x3b\x5e\xbf\x80\x5f\x01\xf1\x77\xee\xaf\x3b\xc5\x51\x37\x3d\xd3\xa4\xdc\xea\x18\xb5\xa6\x78\xeb\xa6\x5b\xea\xc2\x35\x4d\xb1\xd4\x95\xa1\x69\xaa\xe9\x34\xd7\x4d\x75\x59\xe7\xb7\x0e\xf5\x37\x4d\x2f\x79\xf3\xb1\xbd\xbd\x8d\x17\x5f\x7c\xd1\xd4\x31\x9b\x82\x30\x9b\xd0\x11\x5b\x5d\xa4\x94\x9a\x2b\xa2\x69\xb2\x42\x7b\x47\x97\xc2\x1b\xd3\x8d\xe0\x66\x16\x20\x31\xf2\xaa\x19\x11\x23\xe8\xa5\x24\x1b\x1b\x2e\x2e\xb8\xca\xfa\x31\xfe\x6c\xa0\x52\x04\x50\x9e\x6b\x76\x08\x0c\xe9\x60\x2a\x4f\x57\x29\x4f\x7e\x4c\x3e\x50\x12\x37\x6c\xb8\x9c\x83\x0b\x65\xda\x93\x95\x41\x36\xbd\xa3\xa7\x8c\x88\xe5\xd7\xd8\xd3\xa0\xcc\xbf\x3d\x12\xe5\x85\xcd\xef\x65\x88\xe9\x74\x4d\x6c\x1f\x6f\x85\x37\x66\xeb\xc1\x3d\x08\xaa\x30\x0d\x54\x2e\x37\xb6\x56\x46\x10\x11\xa4\x94\x18\x8d\x46\xae\x12\xf5\x5d\xfb\xda\x44\xdb\xa8\x52\x48\x29\x71\x7c\x7c\x8c\xe3\xe3\x63\xf9\x0f\xff\xf0\x0f\x98\xcd\x66\x52\x29\xc5\xe5\xc4\x30\x30\x54\x1c\xda\x8a\xfa\x25\xcc\x53\xe7\xda\x3d\x5f\x88\xb3\x4b\xda\x30\xd9\x9c\x9d\xc5\x7e\x79\xda\xf8\xee\x77\xbf\x2b\xef\xdc\xb9\x83\xe3\xe3\x63\x24\x09\xdf\xba\xc4\x3b\x4d\x2c\x01\xe0\x73\x9f\xfb\x9c\x78\xe2\x89\x27\x00\x94\x7a\x9f\xec\xc3\x14\xe3\x5e\x2a\xfa\x97\x4e\xe2\x5f\x58\x59\x8a\x2b\x22\xdf\xb7\x24\x17\x25\x87\x62\xd7\x9f\x5c\x4f\x6f\x90\x2a\x9f\x11\xf3\x6f\xc2\xd9\xe2\xf8\x58\xce\x6a\x3e\x5a\x9e\x40\x10\x0a\x83\x41\x12\x5c\x7b\x62\x14\x7f\x84\x14\xfa\x50\xd6\xb4\x88\xf5\xfd\xaf\x5c\xb9\x82\xcf\x7c\xe6\x33\xa6\x1f\x28\x96\x3f\xbb\x7f\xc6\xde\x27\x4e\xa9\xbf\x31\x0b\xcf\xaf\x2e\x83\xa7\x72\xdb\x96\x32\x13\xc4\xcb\xa6\xca\xfc\x19\x36\x12\x8c\x7d\x61\x1d\x1c\xc1\x0e\x9b\xb7\x27\x58\x15\x54\x68\x02\xeb\x81\x3b\xe6\x31\x53\xc6\xfc\x71\xd1\x3e\x43\x49\xe7\xcf\xcc\xc2\x8f\x6c\x4e\xa3\x2b\xfd\xa5\x18\xa0\x3c\xd9\xbb\xa2\xcf\x3f\xf3\x99\xcf\xe8\x9d\x93\x1b\xc1\x48\x83\xab\x65\x5c\x7c\x2c\x8b\xfb\x0c\xce\xf3\xda\xf7\x9c\x65\x60\xd3\x46\xfa\xbd\x84\x9e\x2a\x0a\xe4\x34\x13\x48\x5c\xbd\x6b\x46\x85\xb0\x1e\xb2\x55\x11\x25\x23\xc2\xd9\x11\xfd\x3d\xcd\x2f\x33\x26\x74\xf1\x8c\x41\xf3\xc5\x3b\x3d\x52\xb3\x89\x19\x2a\x3f\x3a\x31\xa6\xd1\xdc\x93\x08\x25\x0d\x06\x4b\xb1\xd1\x4f\x45\xbc\x88\x64\x05\x2c\x30\xbb\x17\xee\x5c\x70\x58\x87\x42\xeb\x18\x8e\x26\xea\xad\x4d\x30\x78\x7a\xae\xdf\xb6\xf4\xea\xfc\xb4\x85\x6f\x9a\x62\xf9\xa0\xfe\x4e\x05\xae\x1b\xfc\x76\x19\x05\x74\xca\xeb\x6c\x36\x93\x87\x87\x87\xe6\x1b\x71\xd9\xd7\xc0\x5d\x83\x16\xb0\xd3\xa3\x65\x80\x70\xbe\x16\xdc\x7b\x74\x39\x7a\x39\x5c\xaa\xf5\x95\x91\x7c\x06\xb2\x50\xee\x46\x38\x6d\x61\xae\x6c\xfd\xcd\xc9\x0e\x2a\x57\x05\x18\xfb\x13\xc6\x2c\x96\x3f\x8c\xc1\x40\x95\xd1\xe1\x37\xd6\xd8\x8f\x03\x7f\x72\xe2\x63\xf1\xf2\xfc\x5b\xed\x96\x34\xf8\x20\x58\x3b\x07\xb3\x94\xf2\x68\xca\x72\x98\x87\x04\x1b\xb0\x15\x81\x65\x80\xf9\x7c\x28\xb6\x47\x5b\xe1\xab\x93\xb3\xc1\xbb\x32\xa0\x11\xaa\x9d\x39\xdf\x2d\x57\x33\x2d\x92\x88\x70\x74\x74\x24\xff\xf3\x3f\xff\x13\xa8\x57\xb2\x6d\xa3\x47\x9f\x2e\x85\xe7\x17\x00\xb0\xb3\xb3\x23\xff\xfd\xdf\xff\x5d\x84\x61\x28\x5f\x78\xe1\x05\x9c\x3f\x7f\xde\x8a\xb3\xc8\x97\x05\x96\x99\x81\xa7\x7e\x56\x71\x4c\x07\x5b\x9b\x7f\x02\x25\xa3\xe2\xe6\x49\x4a\x29\xbf\xf3\x9d\xef\x00\xc8\x37\xcf\x5b\x2e\x97\x4d\x9d\x4b\xa5\x2f\x38\x77\xee\x5c\xe5\xd0\x40\xd8\xac\x4b\xbc\xb6\x08\xd6\x37\xa7\xd1\x73\x91\xa4\x0d\x93\xf7\x0a\x7b\x5e\x0e\x36\xeb\x44\xb1\xd4\xf1\xe5\xaf\xb5\xa1\x9a\xae\x07\xee\x37\xaf\x18\x4b\xaf\xfb\xc6\xa4\x46\x84\xcd\x42\x90\x9c\x15\x39\x3b\x0b\x7f\x61\x65\x29\x7e\x34\x8d\xa4\x96\x23\x0d\xc8\xa4\x1e\xa4\x0e\x06\x03\x3c\xfb\xec\xb3\x72\x38\x1c\x22\x08\xac\xfd\xf1\x35\x98\xd1\xbf\x21\x80\x70\x65\x19\x0c\xcf\x4d\xa2\xcb\x71\x2a\x2e\x91\x82\xd9\x1d\xd7\xd9\xee\xa8\x3a\x48\xb0\xfb\x57\x7f\x05\xb1\x1a\x20\x27\x8e\x4a\xb1\x2b\xa4\x8a\xbf\x3e\x4b\xfb\x4e\xf4\x57\x96\xe2\xf2\x99\x59\x78\x75\x90\x88\x9b\xf3\x48\x6a\x36\x33\x44\xc9\x12\x4a\x20\x3f\xf6\x61\x30\x18\xb8\x2c\x1d\x77\x4d\xfa\xda\x37\x80\x36\xc0\xa5\x4d\xf9\xd7\x35\x44\xb7\x03\x14\xbc\x70\xce\x3b\x4b\x41\x64\x42\xa5\x8b\x50\xcd\xf5\x5e\x2e\xb9\x33\x5a\x28\xbf\x75\x21\x60\xad\x94\x35\x3f\x76\x83\xf1\x0d\x8e\x6c\x23\x3f\x14\xa3\x42\x7b\x3f\x17\x4e\x2f\x72\xc1\x87\x02\x42\x89\x78\x25\x15\x1b\xbd\x94\xf4\xdc\xa4\x41\xe1\x4c\xb9\xf8\x5c\x53\x27\xd8\xe4\xd7\xbd\x6f\x02\x31\x5d\xe2\xf3\x29\xdf\xb6\xf4\x4e\x93\xd6\x07\x0d\xf7\x7f\x3a\xfe\xc7\x8a\xf7\xd1\xa3\x47\x78\xf5\xd5\x57\xe5\xf3\xcf\x3f\x6f\xda\x48\xb1\x14\x55\xcb\x06\x3f\x25\x38\x04\x10\x2a\x20\xcc\x22\x1c\x8d\xcf\x05\xef\x05\xcb\x68\x78\x4e\x2e\xe3\xde\x58\x5e\x11\x06\xbc\x80\x11\x22\xca\x74\xea\x96\x86\x77\xdb\x83\xd1\xce\x65\xfb\xa9\x9b\x00\xca\x83\xfb\x9e\x7b\xba\x10\x8d\xe0\x6b\x06\x07\x4e\xa4\x25\xeb\x62\x0d\x36\x1c\xc5\xeb\x4b\x8d\x65\xbd\x32\xe3\x0b\x58\x0f\xa4\x40\x32\x1f\x8a\xfb\xc7\x5b\xe1\x8d\x93\xf3\xe1\x3b\xcb\xbe\x38\x02\x55\x98\x89\x0a\x68\x41\x09\x2e\x31\x9f\xcf\xf1\xfe\xfb\xef\xbb\xac\x68\x9d\x6b\x02\x28\xae\xab\x95\xa3\xed\xed\x6d\x09\x00\x59\x96\x89\xb5\xb5\x35\xf9\xd4\x53\x4f\x69\xbb\x00\x9f\xae\xf5\x82\x16\x77\x09\x31\xd7\xc1\xee\xb4\x3d\xbf\xd6\x53\x63\xaf\xbe\xfa\x2a\x94\x52\xb8\x75\xeb\xd6\x69\xf2\x5f\x5b\x66\x66\x84\x9a\x77\xee\x0a\xa1\x50\x88\xcf\x4e\xc3\xcd\xd5\x45\xf0\x11\x21\x89\x9d\x40\x69\xc1\xe1\x5c\x07\x93\xcf\x10\x80\x3f\xf0\x08\x5c\x4b\xf7\xc0\x07\xb3\x6d\xce\x05\xf0\x81\xa4\xe1\xea\x22\x78\xe6\xfc\x38\x3a\xbf\x7d\x76\x31\x46\x3e\x5d\xa4\xe5\x48\xeb\x7a\xa9\x94\xc2\x60\x30\xc0\x87\x3f\xfc\x61\x5f\xb4\x15\xe6\xa5\xbf\xa4\xf5\xb3\xd3\xe8\xc9\x28\xa3\x4d\xcf\xbe\x7b\x65\x39\xea\x10\x9c\xd3\x65\x56\x9c\xb1\x39\xb3\x4d\x16\x9a\x74\x80\xc9\x06\x53\x2d\x6e\x75\x13\x08\x51\x26\x36\x56\x13\x71\xa9\xbf\x0c\x86\x40\x7a\x08\xff\x74\x26\xf0\xc1\xf4\x32\x6f\x8b\x26\xbe\x3a\x0b\xe0\x2e\x0c\x00\x8f\xd4\x6d\x60\xd6\x8a\x22\x36\x8f\x0a\x14\xe0\xa5\xb0\x71\x99\xa6\x85\x71\x6e\x2e\xc4\xd5\x73\x49\xca\xf5\xe4\x25\xa3\x62\xaa\x93\x21\x4f\xfe\xfd\x5c\xa0\x58\x55\xd7\x65\x98\xf2\xae\x4c\x8b\xf7\x01\x95\x3e\xa1\xe8\x28\xf4\x7e\x5a\x42\x51\xdc\x5b\x8a\x8d\x5e\x2a\xfa\xc5\xc8\xc2\x5d\x49\x64\x28\xb2\xad\xad\x2d\x3c\xf5\xd4\x53\x42\x2b\x2a\xc7\xd5\x8d\xd4\xda\x3e\x7e\x1b\x33\xe2\x0b\x5f\xc7\x9a\x55\x46\x51\x35\x69\xb6\xb1\x71\x4d\xf9\x6e\x2b\x4f\x5d\x3e\xea\xea\xc7\x0d\xa3\x5d\x5b\x7e\x7c\xf7\xbe\x77\x5d\xfd\x5b\xd7\x27\x27\x27\xf2\xb5\xd7\x5e\x13\x41\x10\xc8\xe7\x9e\x7b\x8e\xb3\x6e\x29\x4a\x85\x9e\x14\x23\x2f\x8b\x79\x49\x63\x1c\x8d\x2e\x86\x6f\x84\x4b\x0c\xce\xa8\x65\xd8\x9f\xc8\x4b\x86\x79\x31\xa0\x99\xf5\xe2\xc5\x8e\xb4\x16\x2c\xd0\xe0\x86\xb4\xdd\x47\xb1\x17\x8c\xb1\x0f\x71\xae\x5d\x25\xc6\x35\x15\xb7\x9c\xb7\x1a\x5a\x19\xc6\xc2\x4f\x86\xa2\x2c\x57\x28\xd9\x7a\x57\x55\x7a\x86\x7c\x7f\x0d\x3e\x28\xb0\xf7\x61\xd2\x06\xf8\x39\x5b\xca\xc6\xd1\x9a\x69\x11\x48\x17\xab\x62\xe7\xf8\x42\x78\x7d\xb4\x15\xbe\xb9\x18\xd0\x1e\xa8\x72\xca\x31\x5f\x4d\x54\x99\x26\x3a\x3a\x3a\x92\x6f\xbf\xfd\xb6\xce\x52\xdd\xe0\xa0\x0d\xe8\x3f\x36\x80\xbe\x73\xe7\x0e\x8a\x7c\x88\xbd\xbd\x3d\x79\xf6\xec\x59\x3c\xfd\xf4\xd3\xae\xbd\x54\x25\x5d\x3e\x25\xcd\xa6\xa9\xdd\x30\x95\x3c\x1f\x1c\x1c\x60\x7b\x7b\x1b\xd3\xe9\x14\xaf\xbf\xfe\xfa\x69\x07\x33\x96\xfb\xd8\xc7\x3e\x26\x56\x57\x57\xdd\xc7\xe6\x40\xc5\x1c\xb8\x50\x7c\x76\x1a\x6e\xc5\x19\x9d\x27\x20\x34\x3b\x22\x93\x2b\x6e\x6c\x43\x35\x65\x0f\x1e\xf3\x87\x4e\x5f\x01\x3d\xad\x61\x0f\x40\x7d\xa0\x9a\x5f\x97\x7e\x6d\x71\x54\x95\x38\x09\xa4\x54\xdc\x4f\xc5\xe5\x8b\x27\xf1\xe5\xed\xb3\x8b\xbb\xd0\x83\x8d\xfa\x7d\x74\x00\xbb\xc3\xd5\xfd\xa2\x69\xe7\xa4\x10\xf7\x52\xb1\xbe\x9a\x88\xad\x40\xd2\xb0\x02\xc4\x58\xbe\xf8\x2c\x81\xd9\x4c\x8e\x4d\x0d\x59\xc1\x2a\x20\x23\xff\x6f\xdb\x5b\x96\xfb\x3a\x55\xea\x87\x45\xca\x07\x10\x56\x7a\x04\x04\x0a\xc3\x95\x65\x70\x7e\xb0\x14\xeb\xa4\x10\x2b\xf2\x4f\x9f\x01\xc0\xd5\xab\x57\xf1\xe8\xd1\x23\xb1\xbb\xbb\xdb\xd4\xf7\x35\xe9\x78\x30\x3f\xad\xc6\xb9\xee\xbd\xef\x9d\xd7\xb9\x28\xdf\x59\x69\x24\x53\xa1\x92\x79\x28\x67\x49\x90\x2f\x89\x0e\x14\x85\xf6\xa1\xb2\xf6\xc8\xc1\x06\x11\x85\x40\x52\x59\xf9\x1c\x4b\xfa\xb1\x7a\x15\x5f\x5a\xbe\x0c\x40\xaa\x8c\x2d\x0d\xd3\x62\xde\x53\xa9\xf7\x85\xa2\x38\x4e\xc5\xfa\xca\x32\x18\x12\xc8\x65\x5b\x04\x1f\x09\x3d\xf1\xc4\x13\x38\x39\x39\xfd\xcb\x2c\x69\x00\x00\x20\x00\x49\x44\x41\x54\xc1\xf6\xf6\xb6\xaf\xca\xea\x94\x4c\x9b\x12\x6c\x1b\xed\xf9\xbe\xa5\x4f\x01\xb7\x81\xd2\xa6\xf8\x7c\xef\x3a\x8f\xce\x5a\xfc\x35\x31\x80\x6d\x71\x77\x09\xd3\xc5\xef\x69\xfc\x9b\x7a\x9b\x4c\x26\xf2\x95\x57\x5e\x11\x1f\xff\xf8\xc7\xdd\x3c\x6a\xe6\x45\x1f\xb4\xc7\x0d\xba\x43\x10\x85\x49\x0f\x87\x47\x97\xc2\xeb\x24\x55\x4c\xbb\x29\xe2\xa9\xbc\x24\x32\xc4\x2e\x30\xb1\xe8\x5f\x2a\xa5\x5f\xdb\xbe\xe4\x1b\x4a\x01\x06\x6d\x10\xe0\xee\x8a\xc9\xa0\x3b\xaa\x1a\x4b\x6b\x37\xc7\xab\x73\x6d\xd8\xc8\x32\x23\x86\xb9\xe4\x01\xcc\x08\xdb\x69\xa2\x54\xf4\x4e\xe5\x68\x8f\x0f\x62\xc8\xf6\x67\xf5\x74\x0a\x52\x50\x9a\x0c\x68\x67\x74\x21\xbc\x31\xda\x0a\x6f\x2e\x56\xc5\x43\x08\x1a\xb1\x25\xc5\x2e\x70\xa9\xec\xf8\x79\x74\x74\x24\x5f\x7f\xfd\x75\xbc\xf1\xc6\x1b\xc0\xe9\xe4\xba\xc9\x75\x09\x57\x69\xbf\x77\xef\xde\x95\x77\xef\xde\xc5\xd6\xd6\x96\xde\xb0\xd2\xb8\x8f\x7e\xf4\xa3\x1a\x90\xf0\xce\xd2\xc7\x78\x54\xf2\xf2\xfe\xfb\xef\x63\x3a\x9d\x9a\x07\x3b\x3b\x3b\x78\xeb\xad\xb7\x74\xba\x1f\x88\x35\x7a\xfe\xf9\xe7\xb1\xbe\xbe\xee\x76\xd4\x96\x31\x6a\x20\x11\x0f\x17\xe1\xc5\x40\xd2\x20\x7f\x5f\x32\x2b\x36\x30\x51\xe5\x68\xbf\x86\x65\xaf\x68\x78\xd2\x83\x65\x1b\xd0\xc2\x89\xdb\x4b\xb8\x90\x5f\xac\xf9\xf4\x0a\x01\x22\xca\xc4\xfa\x99\x79\xf8\x24\xfc\xf6\x2d\x1c\x9c\xf0\x6f\xc2\xfb\x48\x6b\xc7\xdc\x40\x52\xd8\x4b\xc5\x7a\x9c\x89\x4d\x91\xdb\xcd\x38\x85\x72\xf2\x52\xbc\xb0\xa7\x51\x3d\xc5\xa9\x3c\x2b\x0f\x64\xb5\xca\xe8\x02\x38\xe7\x5a\xd7\xa7\x99\x86\x73\xe2\x0d\xf2\x55\xb5\xe7\x07\x49\xb0\x19\x4a\x8a\x97\x81\xe2\x40\xce\x0c\xd8\x01\xe0\x99\x67\x9e\xc1\xfe\xfe\x3e\x76\x77\x77\xab\x19\x6e\xd7\xb7\x95\x6b\xdf\x21\x8b\x6d\xa3\x5d\x37\xf2\x3a\xf0\xc2\xdf\xe9\x4d\x97\x0c\xeb\x92\x11\xe4\x22\x94\xd3\x45\x28\xc7\x92\x54\x12\x28\x0a\x95\x35\x85\x53\x80\x13\x68\x75\xe7\x83\x1e\x25\x98\x40\x19\xd2\x02\x1f\x86\xd1\x2e\xc6\x6d\x5a\x18\x38\xff\x92\x0f\x0a\xcb\x10\xfa\x23\x5b\x9f\x9b\x01\x28\x7d\x41\x00\x48\x21\xee\x65\x62\x7d\x90\x88\x61\xa0\x10\xa6\x50\x96\x30\xb3\x86\xe7\x8e\xda\xea\xae\x9b\x40\xa3\x1b\xc6\xf5\xd7\x25\x0d\x1e\x57\x5d\xbc\xbe\x6f\xda\xc6\x66\xf8\xd2\xa9\x73\x5d\xd8\x25\x1f\x7b\xd4\x25\x7c\x13\x72\x6f\x92\xe7\x2e\x61\x80\xfa\xbc\x7a\xcb\x9c\xa6\x29\xde\x7f\xff\x7d\x79\xf5\xea\x55\x03\xde\x8b\xbf\x54\xef\x75\xe1\x18\x30\x1a\x23\xef\xc5\xaa\x78\x78\x74\x29\xbc\x0e\x00\xeb\x7b\xa9\xec\x4d\xe4\x25\x91\x51\xdf\x52\x3f\x5c\xd0\xad\xd1\x64\x21\xaf\x9a\x15\x61\x53\x3b\x7c\xe4\x55\xda\x98\xd4\x0c\x4b\x7d\x8e\x0d\xcb\x4a\x96\x92\x69\xda\xca\x48\x50\xb1\x68\xf9\x10\xc4\xd1\xce\x28\xda\xa9\x2a\xef\x0c\x66\x62\xf9\xe4\xed\x38\x07\x2d\x62\xe7\x78\x2b\xb8\x7e\x7c\x31\xbc\x3e\x1f\x8a\x7b\x4a\x90\xb5\x4f\x09\xfb\xe3\x4b\x8e\x25\x50\x4e\x5d\xdf\xbf\x7f\xbf\x8d\x75\xa8\x93\x2d\x38\xfe\xba\x0c\xfa\xea\x40\x82\xe5\x67\x77\x77\x57\x3a\x8a\x5e\xac\xac\xac\xf8\xd2\xe9\xe4\x5e\x7c\xf1\x45\x1c\x1c\x1c\x74\xd1\xeb\x6d\x79\xad\x95\x77\xde\x71\xa9\x72\x87\x58\x41\x20\x11\x28\x8a\x07\x4b\x71\x5e\x28\xbd\xe4\xb7\x6e\x3a\xc8\x33\x58\xe5\xac\x88\x2a\xe5\xb8\xd4\xcf\x1c\xe4\x90\xcd\x1c\xf0\x0e\xc2\x1a\x1c\xfb\xc5\x9c\xcf\xae\xb2\x0c\x0a\xa1\x10\xf7\x53\xb1\x89\x62\xcf\x12\xa7\x93\xf6\x4d\xd3\x71\xc7\xfd\x84\x4a\x29\x11\x4a\x11\xf7\x53\x31\x88\x24\x0d\x09\x14\x5a\xc9\x91\x9d\x7c\xd9\x66\x39\xb8\xaf\x96\xc1\x18\xeb\xa3\xe8\xe3\xf4\x1c\x2b\x60\xb5\x33\xbb\xb9\x57\x67\x2e\x72\xff\x64\xe5\xc7\x0d\x47\x8a\xc2\x7c\xd0\x2e\x36\xa2\x8c\xe2\x65\x60\x9d\xbf\x94\xb0\xfa\x91\x85\x4e\xab\x6b\x37\x1c\x7b\xc0\x79\xe6\x5e\x03\xb0\x81\xcb\xe3\x8c\xbe\x5d\xbf\x96\x32\xe7\x86\x65\x15\xbb\x17\x42\xba\x0c\x54\x32\x8b\xe4\x28\x13\x48\x22\x89\x72\xb7\xc0\x4a\x12\x8e\x20\x18\x7d\x47\x95\xb7\xbe\xb9\x38\x0d\x88\xec\x58\x6c\xf4\xa9\x9c\x38\xcb\xd0\x65\x9c\x25\x85\x58\x52\xf0\x02\x10\x71\x46\xc3\xd5\x24\x38\x17\x65\x22\xcc\x6c\x03\x5d\x43\xe3\x3a\xc2\xdc\x85\x31\x78\x9c\x51\xdf\x69\xd8\x8f\x26\x60\xc3\xf3\xe0\xcb\x8b\x2f\xfe\x3a\x36\xae\x0b\x9a\xf6\x29\xc7\x53\x2b\xe6\x9a\xb0\xbe\xeb\x53\x23\x7c\x4f\x98\x4e\xa3\xf0\xf9\x7c\x2e\xff\xf5\x5f\xff\x55\x7c\xf9\xcb\x5f\xc6\xe6\xe6\x26\x84\x10\x12\xc5\x09\xc1\x85\x4c\x24\x40\xb9\x61\x61\x21\x2b\x46\x86\x66\x6b\xe2\x1e\x28\x92\x4a\x20\x5d\xdf\xcd\x64\x7f\x92\x5d\x16\x29\xfa\xf6\x29\xce\x00\x47\x2d\x7a\x3a\xc5\x66\x3c\x4a\xb0\x60\x8f\xb0\x08\x0c\x29\x30\x9f\x6c\x4e\xa8\x00\x3d\x46\x25\x72\x80\x63\x02\xe4\xc3\x32\x4b\xe9\xb3\x9e\xc2\xcf\xf0\x54\xcf\xa4\x01\x6c\x96\x46\x41\x8f\xf6\xca\x6d\xfd\x8b\x52\x40\x52\x31\x3d\x74\x31\x7c\xf9\xe8\x52\x78\x63\x31\x10\x0f\x54\x69\x8c\xcb\xff\xdc\x29\x22\xfd\x0d\x24\x11\xc9\xe9\x74\x2a\xc7\xe3\xb1\xff\x03\xe6\xae\x4d\xf7\xb5\x51\xdc\xbe\x70\x5d\xda\x54\x25\x0f\xff\xf2\x2f\xff\xd2\x12\xf5\xa9\x5c\x5d\x3b\xac\xcb\x7f\x1d\x63\x6b\x75\xdc\xac\x03\x37\xec\x73\x71\x18\x64\xd8\x4b\x83\xcd\x9c\x99\xae\x58\xb6\x94\x03\x4a\xcd\xbc\x71\xbd\xcb\x30\x71\xc9\x7c\x73\x50\xee\x38\x2a\x17\x78\xe8\x93\xd1\x5d\x0c\xe3\x4e\x3f\xb9\x0c\x44\x39\x1b\x6b\x12\x08\xa3\x4c\x0c\x09\x08\x95\x62\xd3\x60\xb0\x58\x76\xe9\xd6\x03\x98\x1e\xe5\xc6\xb9\xa1\x44\x1c\x65\xa2\x4f\x92\x62\x9e\x15\x53\x04\x96\x2d\x3e\x1b\x40\x8e\x1f\x5e\x06\x62\xfa\xa0\x64\x5c\xcb\x7a\x28\xfb\x4c\x1f\x49\xe0\x80\x9e\x1a\xa2\x80\xd5\x88\x10\x0a\x71\x94\xd1\x6a\x20\x89\x4f\x9d\xe9\xb2\xe6\x7e\xab\x0b\x54\x9a\xe4\xbe\xe9\x19\x50\xc8\x5d\x97\x91\xb5\xef\xba\x42\x8f\x69\x3f\x59\x96\x61\x36\x9b\x01\x30\x15\x22\x9d\x3f\x63\x18\x97\x0a\x35\x9f\x47\x72\x9c\x0a\x39\x05\x98\x3a\x53\x79\x23\x70\xd9\x29\x63\x37\x43\xec\x1a\xf6\xb5\x57\x8a\x55\xf5\xd6\x80\x95\x26\xc7\x99\x6f\x85\xca\x67\x2c\x14\xb4\x08\x33\x1a\xac\x26\xc1\xf9\xc2\x40\xd7\x27\xcc\xa6\x61\x7b\x5c\x17\x10\xe2\x73\x75\x4c\x57\x57\x3f\x6d\x1d\x6f\x1b\x3b\xe1\x5e\xfb\xd8\x9c\xae\xe0\xa3\x91\xb5\xa8\xf1\xcf\xf3\xe8\x73\x6d\xb2\xdd\xe6\xea\xfc\x76\x89\xc3\xaa\x0b\x29\xa5\xfc\xbb\xbf\xfb\x3b\xbd\x0b\xab\x54\x4a\x69\x06\xd2\xdd\x74\x4c\x33\x03\x66\xb3\x31\x22\x1a\xcf\x87\xe2\xc1\xa3\xcb\xd1\xf5\xa3\xcb\xc1\xcb\xb3\xb5\x60\x5b\x86\x98\x2b\x22\x8e\x10\x4a\xd0\x02\xa0\x3c\xa7\x2b\x7f\xa5\xf4\x08\xb5\x02\x1c\xf2\x10\x65\x5c\x7c\x54\x9b\x03\x05\xb3\x83\x2d\x1f\x7d\x15\x72\x5c\x9d\xf6\x61\x0c\x09\x1b\xfd\x02\xb0\x56\x28\x28\xf6\xdf\xf6\xc5\xda\x88\x66\x90\x1c\x4f\x4a\xbf\x22\xa4\xf3\xa1\xb8\xff\xe8\x72\xf4\xd3\xc3\x27\xa3\x57\xe7\xab\x06\xb4\xe8\x0d\xd7\xa6\xc5\x54\x51\x65\x35\x91\x62\xbb\x78\x2f\x16\x0b\xf9\xea\xab\xaf\xe2\xe5\x97\x5f\xe6\x00\xbe\x2b\x10\x69\x02\xe7\x6d\x72\xe2\xd3\xa7\xbe\x38\xea\x58\xc8\xba\xeb\xae\x69\x37\xb5\xe1\xb6\x3c\xb9\x71\x48\xa0\xec\x00\x75\xc7\xa5\x99\x43\x14\xc6\xb9\x51\x46\xfd\x38\x43\xb9\x9a\x48\xe5\xdd\x6b\x7e\xc9\x20\x85\xd2\xe7\x55\x95\x32\xa2\xc0\xaf\x51\xea\xf4\x1a\x1d\x4e\xce\xc6\x87\x46\x84\x48\x59\xf1\xe9\x28\x7c\x3d\x48\x29\xb3\x46\x86\xc3\x28\xa3\xf5\x5e\x2a\xf4\x72\x68\xa3\xe7\x1d\x9b\x4e\x00\x16\xdb\xae\x9d\xde\x4d\x3d\x7f\xaf\x28\x0e\x24\x7a\x54\x10\x08\x0a\xd5\x3e\x89\xb7\xb9\x32\x36\xc6\x4a\x3a\x28\x46\x39\x25\xb6\xe1\x21\xdb\xa2\x8f\xcd\x54\x94\xc1\x09\xc6\xb6\x0c\xd5\xf7\xc5\xd9\x08\x16\x0b\x46\x8a\x84\xcf\x44\x02\x0e\x98\xf5\x38\xe1\xfc\x01\xdd\x64\x5a\xfa\x5e\xea\x17\x2e\x30\x71\x23\xae\xed\xf4\xee\xdf\xbf\x2f\xff\xf9\x9f\xff\xd9\x28\x20\xa7\xb3\x96\x5c\x69\xa4\x42\x25\xb3\x28\x1b\xa7\x02\x73\x5d\x21\x00\x60\x68\x3f\xfd\xac\xf8\x57\x45\x86\xca\x8c\xc2\xcc\xe7\x22\xfe\x79\xd9\x33\x2e\x58\xb0\x81\x88\x56\xd6\xae\x30\x73\xc1\x37\x5f\xca\x49\x83\x40\x08\x24\xf5\x57\x93\x60\x6b\x90\x04\x7d\xb0\x1d\x15\x59\xd9\x05\x1b\x85\xf0\x7a\xd4\xd7\x6e\xfd\xb6\x75\xba\xbe\x8f\xea\x7b\x26\x9d\xf7\x4d\x71\xb8\xe9\xbb\xca\x8d\x3b\x57\xa9\xfb\xf2\x5d\xa7\x04\xeb\xf2\xe1\x03\x3e\x4d\xf7\x3e\xea\xb1\x89\x21\x6a\xf3\xef\x5e\x77\xa1\xd0\x9b\xf2\x59\x71\x7a\xaf\x0e\x2a\x0f\x5e\xb4\xc0\x8b\xca\xcf\x89\x99\x22\xdf\x6b\xc3\xec\x7a\xaa\xa0\xc6\xc9\x8a\x78\xf8\xe8\x62\x74\xe3\xe0\x4a\xf4\xd3\xc9\xd9\xe0\x66\x16\x61\xec\x2a\x5c\x80\xc9\xb6\x67\x8e\x9f\xd8\x7f\x93\x27\x70\x05\xad\xac\x25\xc7\xf9\x28\xd7\xa1\x3f\x58\x84\xa4\x87\xc1\x9a\xc7\xd7\x69\x7b\xce\x3e\x62\x1a\x98\x37\x25\x9b\xb5\x01\xac\x36\x5e\x19\x29\x14\x4e\x06\x48\x66\xeb\xc1\xf6\xc1\x53\xf1\x0f\x0f\x9f\x0c\x5f\x4d\x56\x68\x8f\xed\xd5\x32\x2e\xa6\x88\xf4\xaf\x6f\x7b\x7f\xd3\xd1\xbe\xf8\xe2\x8b\x60\xa7\xfa\xfa\x00\xf4\x69\x99\x36\x1e\x97\x8f\xd1\xf0\x16\xa9\xe1\xf9\x69\x99\xd6\x26\xd9\x6d\xf3\x53\xf7\x9e\xb7\xd1\x3a\x96\x89\xfb\x15\x00\xb8\xae\x13\x04\x08\x52\x08\x81\xd2\x90\x95\x0f\x4c\x39\x7b\xae\x0f\x13\xb4\x6d\x32\xca\xf3\xa9\x0c\x5b\xe2\x50\x10\x56\x5b\xe0\x32\x6f\xb1\x04\x76\x87\x5e\xfa\x61\x61\x6d\x91\xe4\x79\x10\x42\xa1\x1f\x65\x14\x93\x03\x5a\x3c\x1d\xb6\x0b\x68\x4c\x9d\x58\x83\x59\x0d\xc6\x35\x50\x77\xf2\x51\xe2\x33\x56\x48\xaa\x2e\x6f\x06\xca\xb6\xe7\x03\x76\x06\x68\xb0\xc7\x7c\xf0\xce\x7b\x47\xd6\x54\xed\x2a\x21\xcd\xe3\x94\x79\xa5\xc2\xc8\x58\x28\x6b\x6b\x15\xb8\xd7\x9e\x41\xbb\xaf\x9d\x74\x6d\x07\x9d\x1b\x52\x53\x43\xf0\x76\xb6\x0c\x7d\x6b\x01\x97\x40\x69\x9c\x4b\x44\x72\x19\xca\x64\xdc\x93\xa3\x24\x94\x63\x6b\x44\x07\xfd\x7d\x6c\xf1\xca\x3f\x88\x2a\x8f\xb3\x87\x8d\xaa\x75\x38\xeb\x63\x95\x19\x42\xe5\xb6\xf8\xf8\xe5\x51\x01\x16\x0d\x66\xc5\xc1\x95\xbe\x25\x13\x04\x04\xf9\x99\x16\x5b\x6b\xf9\xa1\x53\xba\xcc\xda\x7a\xdc\xaa\x97\x67\x9f\x7d\x56\xfc\xee\xef\xfe\x2e\x7f\xe4\xfb\x70\x6d\x53\x2e\x3e\x85\xd6\xa6\x60\xbb\x28\x41\x5f\x3e\x9a\x14\x5c\x57\xff\x6d\x79\xaf\xf3\xdb\x74\xef\x8b\xa3\xa9\x01\xb4\xf9\xef\x52\xe6\x0f\x44\x77\xfe\xc5\x5f\xfc\x85\x3c\x3e\x3e\xe6\x69\x48\xd8\x7b\xba\xe8\x73\x63\xac\x2d\xdd\x89\x68\x04\xc2\x28\x5d\x11\x0f\x8f\x2f\x85\xaf\x3f\x7c\x26\xfe\xc1\xe1\x93\xd1\x4f\x16\x03\xda\xf1\x02\x11\x36\x65\x94\x3b\xfb\x9e\xeb\x90\x8a\xd2\xae\x3c\xd0\xb1\xda\x8f\x95\xa5\x1d\xa9\x6c\x4b\x06\xcc\x38\xc1\x8d\x82\xd4\x3d\x4a\xb9\xda\xc9\x8d\x1b\xac\x0c\xf6\x43\xc8\x65\x8f\x0e\x8f\x2f\x86\x2f\xef\x3c\x1b\xff\x3f\x8f\xae\x44\xaf\xa5\xb1\x38\x40\x7e\x7e\x8f\x75\x70\x20\x1a\xf6\x6d\xa1\x72\x4f\x93\xd6\x6f\xd6\xe2\x4e\xcb\xea\x3d\x0e\x33\xf3\x41\xdc\xe3\xea\xf7\xba\xf6\xfa\x38\x6c\x2a\x00\x40\x01\x22\x23\x05\x59\xec\x94\x0e\x54\x54\x32\xac\xe7\x5c\xaf\x73\xe6\x9b\x0f\x2e\x5d\x99\xf1\xa7\x6b\xeb\x70\x1f\xb5\xe2\x84\x2d\xed\xc4\x2a\xb1\x49\x45\x48\x53\xa1\xa0\x18\x70\x21\xcf\xb6\x17\x4e\xff\xa7\x9d\x35\x68\x4b\x02\x29\x67\x91\x5c\x64\x42\x25\x26\xbd\x1a\xc6\xc5\x21\x30\x35\xeb\x68\x97\xa1\xa8\x37\x02\xf8\x1e\x92\xde\x42\x72\xf0\x61\xbd\xe2\x7e\x5c\xff\xec\x99\xaa\xc6\xeb\x25\x39\x3c\xa6\x22\xdc\x75\xe9\x5b\xbc\xae\x8d\x0e\x74\x23\x68\x53\xfe\x16\xc2\x62\xbb\x41\xea\x5f\xe3\x57\x29\x25\x97\x42\x25\x93\x38\x9b\x2c\x42\x39\x96\x50\xb2\x04\x04\x9a\xce\x2b\x9c\x8b\x9e\x1d\x84\xcd\x30\x88\x57\xef\x36\xb1\x8a\xca\xc0\xf7\xd2\x31\x10\xef\x75\x5c\x26\x8a\x11\x6b\xd8\x4f\xc5\xe6\x99\x45\xb0\x19\x66\x88\xa1\x6c\x1a\x8c\x51\xa6\xc2\x41\x9e\x5d\x18\x90\x26\x9a\xba\x2e\x4c\x13\xbb\xd2\x55\xd9\xfa\xa8\x3c\xd7\x7f\x13\xc5\xd7\xc4\x2a\xf9\xee\x7d\xf9\xa8\x2b\x63\x9d\x9f\xae\x71\x37\x31\x2e\xbe\xf8\x9b\x7e\x5d\x7f\x4d\xef\xc4\x37\xbf\xf9\x4d\x3c\x7c\xf8\x10\x80\xd5\x26\xf8\x0e\xa6\x09\xec\x5d\x5e\xf9\x19\x35\x63\x19\xe0\x68\x7a\x26\x78\xff\xe0\x6a\xf4\xf2\xc1\xd3\xf1\x0f\x27\x67\x83\x9b\x59\x80\x79\x1e\xbd\x2a\x77\xba\x05\x60\xed\x2a\xab\x0c\xf4\x77\xc4\x9d\x50\x02\x8b\x42\xa2\x55\x39\x02\x34\xc6\x5f\x3a\x9e\x32\x94\xd1\x5e\x4a\xb1\x11\x55\x1d\xdf\x5d\x0c\xef\x0c\x37\xaa\x98\xad\x8d\x62\x43\x4b\x9d\x19\xc5\xb5\x81\x42\x16\x60\x3e\x5b\x13\x77\x0f\xaf\x46\x3f\xd9\xfb\x50\xfc\xa3\xf1\x66\x70\x47\x52\xe5\x8c\x1e\x3d\x45\xa4\xeb\x4e\xef\x4e\x6c\x8c\x71\xd9\x1f\xbe\xf7\xbd\xef\xe9\x55\x35\xda\x75\x69\x33\x3e\xdd\x78\x5a\xf0\xd1\xc5\xff\x69\x40\xd1\x69\x01\xc5\x69\xd2\xef\xe2\xb7\x92\xa6\xde\x12\x02\xba\x6d\x11\x84\x0c\x94\xcc\xa8\xec\x07\x14\x93\x55\x6b\x74\xef\xe2\x64\x46\x13\x10\x93\x39\x3f\x63\x60\x3b\xee\xc7\xf5\x57\x7b\xed\x01\xf8\xc8\x33\x2d\x13\xa1\x92\x65\xe0\x4f\xcd\x31\x5f\xa8\x63\x9c\x81\xa2\x4f\x48\x05\xe4\x3c\x94\xc9\x32\x50\x53\x55\x1c\x36\xcc\x9b\x01\x1f\x1b\x94\xed\xd1\x26\x9a\xbc\xf9\x46\x09\x4c\xba\x98\x43\xf8\xe2\xb0\xf2\x82\x32\x2f\xfc\xdb\xa4\xa4\xe6\x27\xbd\x74\xf7\x70\x65\xf9\x70\x16\xc9\x94\x79\x3f\xad\x7c\x37\xe9\x68\xef\x75\xd3\x72\x68\xf7\xd7\xe7\xdc\xf7\x06\xbc\x38\xc6\xb8\x6e\x18\x09\x20\x95\x84\x34\x09\xe5\x74\x1e\xca\x51\x26\xd4\x3c\xca\x97\xc9\x59\xb4\xa1\xcf\xf1\xfd\x56\x2a\x88\xda\x78\x82\x25\xf0\x1a\x89\xe6\xe1\x3d\x48\x93\xeb\x67\xc6\xa3\x51\x41\xe9\xf0\xb3\x91\xca\xd7\x66\xfa\x2a\x8c\x32\x31\x5c\x9f\x85\x4f\xc4\xa9\xe8\xa7\xb1\x31\xd0\xad\xcc\xf1\x35\x18\xe9\xba\x14\x6c\x53\xbd\xbb\x61\xb5\xab\x0b\xe3\xa3\xac\xbb\xb2\x2f\x3a\x5e\xdf\x3b\xf7\xbb\xd7\xd1\x7e\x1c\xd4\xb6\x8d\xee\xea\xde\xd5\xb9\xae\xe1\x4f\xcb\xd0\xb4\xf9\x7d\x9c\x72\xc8\xc5\x62\x81\xef\x7c\xe7\x3b\xe2\x37\x7f\xf3\x37\xe5\x93\x4f\x3e\x09\x00\xda\x90\x2f\xf5\x8d\xdc\x9c\x38\x24\x88\xa4\x12\x4a\x26\x03\x91\x1e\x5d\xa4\x64\xb1\x22\x46\x67\xf6\x96\xbb\xc3\xfd\xec\xa3\xd1\x1c\xe7\x09\x10\xc6\xf0\x4e\x33\x93\x6e\x0f\x50\xbb\x9c\x02\x66\x60\x40\xdc\x9f\xb1\x69\x21\xfb\xb9\x8e\x95\x3c\x8d\x8d\xf9\x29\x07\x14\xac\xd3\x71\xd2\x2f\x63\xb0\x1b\xa6\x14\x94\x2e\xfb\x74\x34\x3d\x13\xdc\x1e\x5d\x08\xdf\x99\x6c\x04\xdb\xcb\x15\x3a\x90\x84\x31\xd9\xfb\xb4\x18\x43\xdc\x62\x8a\x48\xb3\x58\x7c\x4a\xce\xac\x22\xfa\xee\x77\xbf\x2b\x6f\xdf\xbe\xad\xcf\xe0\xe1\x75\xec\xbb\x46\xcb\x73\x9f\xfc\x7f\x50\xd7\x95\x35\x74\xaf\x5d\x7d\xdc\x25\xee\x3a\x56\xb7\x29\x9d\x46\xe7\x4e\x89\x2b\x00\x19\x01\x99\x50\x7e\xc6\xa5\xa2\xbc\x2b\x0f\xbd\x1b\x10\x6a\x96\xa2\xce\xd0\xd6\x4d\x87\xdb\xf3\xfa\x18\x05\xee\xa7\xd2\x44\x08\x72\x19\xca\x69\x26\x0c\x28\xf1\xce\x32\x14\xd7\x8d\x60\x92\x88\x90\x09\x85\x24\x94\xc9\x32\x90\x73\x45\x90\x56\x39\x9c\xce\xad\x2d\xaf\x56\xbe\x99\xc7\xa6\x01\xb8\x1e\xb3\xf0\xa4\xac\xf8\x14\xab\x73\xa7\x0f\x05\x80\x65\x20\xc7\x47\x2b\xe9\xfd\x83\xd5\xe5\x7e\x12\x58\x40\xad\xc9\xb6\xc5\xe7\xda\x64\xad\x72\xed\x03\x2e\xbe\x8e\x4d\x78\xde\x35\xd1\x90\x15\xff\x9a\x9e\x65\x73\xfc\x12\x40\x61\xe7\x22\x47\x99\x50\x49\x98\xa9\x41\x69\xec\xa7\x15\x20\x98\xbe\xcd\x47\x69\x96\xc5\x76\x41\x79\x68\x49\x2c\x97\x83\x31\x55\x58\x11\x6a\xa6\x5c\x75\x7a\x96\x34\x68\x8b\xec\x52\x12\xfc\x9f\xa0\x94\xb2\x40\xaa\xc1\x30\x09\x2e\xf5\x32\x11\x4f\xf3\x8d\xfd\xf4\x51\xee\x95\x2d\x90\x5b\x5c\x17\xd0\xd2\xc5\xb5\x01\xce\xd3\x84\x6b\x02\x49\x5d\x15\xf6\x69\xcb\xf3\xf3\xa8\x83\xff\x4f\xba\x93\x93\x13\x99\x24\x89\x69\x23\xcc\x1e\x2c\x75\x1a\xbb\x36\xf0\x33\x4c\x41\xd1\x7e\x52\x05\xc8\x65\x1f\xa9\x0c\x83\x59\xb2\x42\xa3\xd9\x30\xdb\x5f\xdf\x4b\x3f\xba\x32\x92\x57\x82\x25\x86\xa4\x20\x34\xb5\x6e\x56\x17\x30\x79\xd6\x2b\x8f\x38\x83\x99\x67\x02\xe5\x30\x95\x88\xe1\x0f\x06\xdb\x9d\x06\xc5\xd7\x1f\xf0\x95\x47\xe5\x0a\x23\x07\xe8\xb8\x15\xe2\xcc\xf7\x16\x34\xb8\xcc\x62\x8c\x67\x6b\xc1\xfd\xf1\x66\x78\x6b\x72\x36\xd8\x5e\xac\xd2\x6e\x1a\xd1\x31\x04\x4d\xa9\x3c\xf9\x58\x2f\x7b\x76\xf7\x6a\x99\x17\xf5\x59\xd9\x21\xf7\x7b\xdf\xfb\x9e\xbc\x73\xe7\x4e\xdb\x96\xf6\x5d\x5c\xd7\x41\x86\xeb\x4e\xe3\xf7\x34\x71\xfb\xf4\xb6\xaf\x53\xe8\x32\x70\xf9\xb9\x3b\x45\x4a\x26\x81\x1c\x2b\xe8\x4e\x8e\x01\x5b\xc5\xc0\x04\x99\xcd\x2b\x58\x60\x67\xc9\xae\x83\x93\x2d\xe7\xde\x73\x0a\x82\xb7\x05\x5f\xd8\xa6\xfc\x03\x32\x09\x8a\x9d\xde\xf3\x70\x6d\x03\x9e\xd6\x81\x48\x2a\x54\x92\x84\x72\x5a\x6c\x09\x62\xed\xe5\xe2\xf6\xfb\x65\x31\x8a\xb6\x59\x5c\x93\x53\x19\x6e\xb1\x9a\x77\xca\xb6\x7f\xed\xf4\x4a\xb3\x0c\xe2\x7d\x72\x71\x95\x84\x6a\x3c\xea\x67\xfb\x93\x38\x9b\x82\x2c\x39\xd3\xfd\xbb\xbe\xff\xa0\x8e\xcb\xab\x00\xec\x9d\x73\xeb\x84\xbc\x76\xf4\x58\x13\xd6\x72\x6c\x69\x98\x35\xb7\xac\x57\x55\xa4\x42\x25\xd3\x28\x1b\xa7\x42\xcd\xfb\x66\x44\xc6\x84\x94\x18\x25\xc6\x8d\x73\xa9\x5c\xea\xc5\x91\x05\x07\x35\xca\x8c\x18\x01\x6d\x75\x98\x33\x35\x25\x8c\xf5\x7d\x54\x2d\xd4\xee\x53\xeb\xca\x44\x9d\x87\x0f\x14\x85\x83\x44\x6c\x0d\x17\xc1\xf0\xd1\x4a\x6a\xd6\xf8\xab\xf2\xe0\x45\x3d\x55\x24\xcf\x9e\x3d\x8b\x4f\x7d\xea\x53\xe2\xa7\x3f\xfd\x29\xaf\xc7\xc7\xe9\xa8\x5d\x54\xef\x2a\xd1\xb6\xa9\xa6\x26\x7f\x75\x0c\x49\xdd\x73\xf7\x5d\x1d\x4b\xe3\x63\xf4\x80\x6a\xde\xdb\x18\x25\xdf\xb5\x9b\xb7\x3a\x45\xde\xe6\xaf\x2e\xcd\xba\x7b\xed\x9a\xca\x63\x85\xbf\x7e\xfd\x3a\xe2\x38\x96\x7a\x6b\xf7\x42\xde\x53\x54\x9d\x7b\x7a\x6f\xc1\xbc\x40\x2a\x85\x34\x0b\x91\x66\x43\x31\x4f\x63\x9a\x2e\x56\xc5\xd1\xf0\x20\xdd\x59\x3d\x92\x4f\xc5\x53\xb9\x15\x2e\xd5\x80\xf2\x65\x8a\xb6\x8c\xeb\x73\x81\x94\x06\x17\xa5\x91\x7b\xa9\xc9\x8a\x36\xc0\x86\x5d\x39\xd8\x61\x03\x0b\x7d\x96\x8b\x79\x57\x8e\x80\x8d\xb2\x73\xa7\x84\x88\x6c\xf5\x57\xf4\x42\xba\x2d\x29\x22\x29\x23\x9a\x2e\x06\xb4\x3b\xd9\x08\xee\x4e\xce\x06\xdb\xb3\xf5\x60\x67\xd9\xa3\x03\x25\x68\x0a\x32\xf6\x2b\x53\xa5\x14\x37\xc0\xe5\x2c\x0b\x3f\x44\xd0\xb0\x2d\x00\xe4\xf7\xbf\xff\x7d\xbc\xf7\xde\x7b\x1c\xb4\x74\x6d\x2f\xae\xeb\xc2\x6c\x74\x89\xfb\x34\x61\xbb\xb4\xd3\x2e\x60\xc5\x6d\x9f\x4d\x72\xdb\xd4\xde\xdd\x3c\x34\xba\x8c\x20\x8f\xfb\xe9\x7e\x26\x90\x04\x19\xfa\x5a\x3d\x3b\xe4\x02\x00\x06\x93\x35\xe6\x75\x80\xaf\xbb\xca\x93\x8f\x41\xad\x70\x28\xc4\x57\xa3\x0d\x2a\xf5\xbb\xd5\x24\xb8\x7f\x8e\xb3\xcb\xf1\xb3\x5c\x06\x6a\x3a\xea\xa5\xfb\xbc\x2e\x6a\x98\x05\xab\xae\xd9\x12\x61\x7e\x6e\x14\x40\x90\x49\x28\xe7\x27\xbd\xec\x70\x19\xa8\x69\x24\x31\xb4\x62\x71\x88\x27\x17\xab\xe5\x4d\xb8\x04\x12\x50\x6c\x00\xc1\x9b\xb2\xa2\x0a\x5b\xc5\xba\x44\x56\x3f\x2e\x13\x55\x06\x72\x59\x52\x49\x2a\x9d\x46\xd9\xd1\xa8\x9f\x1e\xce\xf3\xb3\x9b\x78\xdf\x0e\x36\xe0\xea\xe2\x6a\xf5\xa4\xe7\x19\x80\xfa\x7d\x5c\x4e\x9b\x98\x15\x76\x32\x99\xe0\x67\x3f\xfb\x99\xfc\x95\x5f\xf9\x95\xca\x56\xd4\xdc\x38\x17\x80\xcc\x84\x4a\xa6\xb1\x1c\xa5\x02\x66\x4b\x47\x72\x84\x94\xff\xe6\xd7\x64\x7e\x2b\xe8\x52\x95\x82\x69\x21\x74\x68\x20\x83\x92\x95\xa1\x32\xae\x0a\x7b\x6e\x6d\xe3\x5b\xa5\x16\x4b\x61\xd2\x79\x41\xd8\x4f\xc5\xd6\xfa\x3c\xdc\x20\xb5\x08\x51\xae\xd7\x07\x60\xaf\x2a\x5a\x5d\x5d\xc5\xd3\x4f\x3f\x8d\x9f\xfe\xf4\xa7\x3e\x80\x78\x1a\x45\xea\x2a\x17\xfe\xac\x4d\x21\xd6\xb1\x25\x3e\xe5\xd6\xa4\xa4\xeb\x40\xae\x0f\x9c\xf8\xc2\x9d\x66\xe4\xd7\x94\x56\x5b\xde\x9a\x9e\x77\xa9\xe3\xc7\xb9\xaf\x6d\x8c\x3b\x3b\x3b\xf2\x95\x57\x5e\x11\x4a\x29\x59\x9c\x9c\xaa\x1b\x7c\x3e\xd7\x5d\x1e\x91\xe1\xc6\xad\xff\xcc\xe9\xbe\x00\x92\x65\x0f\x49\x16\x05\x93\xa4\x4f\x47\xb3\x33\x72\x77\x70\x94\x5d\x5e\x39\x91\x97\x7b\x13\xb9\x19\x2c\xd5\x50\x48\x15\x53\x41\x65\x80\xca\x3d\x5e\xf2\xad\x07\xec\xc5\x8f\x7c\xa4\x55\x5a\x00\x3a\x9a\xcf\x03\xeb\x15\xb1\xf3\x93\x74\x28\x0e\x54\x8c\x0e\x28\x43\x99\xfd\xf1\x04\xd2\x2c\x12\xd3\xc5\x40\xec\xcf\xce\x88\xfb\xd3\xf5\xe0\xfe\x6c\x4d\xec\x24\x2b\xe2\x40\x86\x18\xc3\x06\x28\x7a\x4a\x68\x0c\x1b\xb4\x24\xc8\xed\x5a\x78\xdd\x48\x00\x52\x4a\x29\x7f\xf2\x93\x9f\xe0\xe6\xcd\x9b\x90\xd2\x7c\x96\xae\xcc\x43\x1d\xe0\x78\x9c\xe9\x5c\x5f\xba\x6d\x61\x9b\x80\x48\x27\x79\xab\x09\x7b\xda\xc1\x6a\x53\xdc\x75\x6d\xdc\xf8\xc9\x48\xc9\xc3\xd5\x74\x3f\x09\xd4\x28\xca\x68\x48\x2c\x4c\x65\x8a\xa2\x78\x56\x3f\xa3\x59\xc8\xb0\x52\xc6\xc8\xbb\xec\xd8\xcb\xa9\x4d\x13\x1f\x1f\x00\x03\x36\xc8\x29\x7c\xaa\x02\xd0\xbb\x7a\x5e\x41\x21\x13\x6a\x7e\xdc\x4f\xef\xde\xdd\x58\xdc\xe3\x65\x62\x7b\x95\x58\xfd\x96\x06\x2b\x6e\x27\xae\x41\x8b\x1e\x8c\xcc\x42\x39\x3d\x18\x2c\x77\x9f\x0a\xe5\xd1\xca\x32\xd8\x62\x9c\x25\xef\x7e\x9c\xb1\x02\x55\x9a\xa4\x0b\x58\x14\x0b\x67\xda\x18\xeb\xe3\x4c\x34\xaa\x88\x58\xb7\x4d\x5e\x74\x4f\xdd\x6b\x97\x09\x35\x9f\xf4\xb2\xc3\x93\x5e\xfa\x68\x19\x28\xde\xd6\xc0\x06\x59\x4d\xee\x71\xf4\xbe\xf1\xd7\xb6\xe5\x7f\x5d\x03\xab\x43\xd8\x02\xc8\x4f\xc7\x7d\xe3\x8d\x37\xc4\xaf\xfc\xca\xaf\xe8\xc4\x78\xc2\x46\xf1\x22\x67\x5c\xe6\x93\x5e\x36\x4a\x42\x39\xe6\x23\x31\x65\x46\x85\xa8\x7e\x40\x76\xed\xd6\xad\x8f\x5e\x33\xd0\xc5\x01\x51\x76\x40\x16\x46\xaf\x99\x27\xcd\xf4\xf0\x77\x0c\x99\xb3\x57\xa4\x20\xe2\x54\x6c\x6c\xcc\xc2\x8b\x91\xa4\x38\x09\x14\xdf\x16\x5a\xcf\x79\x6a\xd6\x45\xd7\x05\xaf\xb7\xd3\x28\xc7\x2e\xcc\x41\x57\x14\xeb\x73\x3f\xaf\x69\x1a\x57\xe0\xda\xd8\x8b\xff\x6e\xf7\x38\x69\x7d\x90\x3c\x36\x76\x8c\xf7\xee\xdd\x93\xc8\xc1\xad\xbc\x72\xe5\x8a\xa0\xfc\x4c\x2f\x20\x07\x25\x21\x8a\xdd\x75\x39\xdb\xc2\x94\x60\x5a\xbc\x4f\x89\x28\x21\x50\x2a\x85\x4a\x17\xc3\x60\xbe\x5c\x11\x8f\x66\x43\xb1\xdb\x1f\xcb\xfb\x83\x91\xbc\xb4\x32\xca\x2e\xc5\x33\xb9\x19\x26\x6a\x28\x32\xc4\x24\x29\xac\x0e\xaa\xf8\x60\x81\x8d\xb4\xc8\x3c\xa9\xb4\xb5\xd2\xee\xab\x68\x5f\x7c\xe8\x86\xb2\x2d\xbb\x03\x0c\xed\x43\x09\xa4\x32\x40\x92\x85\x34\x4f\x56\xc4\xe1\x74\x5d\xec\xcc\xce\x04\x77\xe7\x6b\x62\x37\xe9\x8b\x23\x19\x60\xa2\x08\x53\xbd\xd2\x0a\xf6\x74\x50\xed\x89\xcf\x1c\xb4\x28\xa5\xe4\x72\xb9\x94\x37\x6e\xdc\xe0\xcb\x9e\xf9\xf7\xf8\x20\xdf\xb7\x4d\xae\x7d\x6c\x45\x27\x76\xc2\x93\x46\xd3\xf3\x9f\xd7\x54\x95\x4f\x7f\xb8\x83\xa3\xae\x75\xe6\xca\xbd\x94\x04\xf9\x68\x90\x1e\xcc\xa3\xec\x70\xb0\x14\x97\xa8\xae\x2e\x5c\x8c\x5c\x7d\x0d\x6b\xc8\xa8\x01\xb3\xe9\xcc\x9d\x08\x58\x67\xee\x8b\xb7\x1c\xc4\xb2\xce\x1e\x30\x67\x67\x29\x40\x2e\x42\x39\x7e\xb8\x96\xdc\xdc\x5b\x4b\x0e\x51\xb6\x3f\x5f\xbb\xe4\xf7\x75\xb6\x2e\xc6\xdf\x22\x92\xf3\xc3\xd5\x74\x6f\xdc\xcb\x76\xd7\x16\xe1\xb5\x20\xa3\xb8\x64\x39\x94\x01\x64\x9c\x9d\xf2\x57\x4e\xe9\xd7\xaa\x27\xd3\x5f\xb9\x23\xf3\xc2\x4f\x11\x61\xed\xac\x19\x67\x4f\xd9\x7d\x12\xa8\xf1\xa8\x97\xed\x4f\x7a\x72\xa4\xa8\xdc\x1b\x89\x1a\xce\xd4\xea\xe0\x7c\x40\xda\xdb\xb6\xea\x6c\x5c\xf8\xb5\xaf\xf1\xb9\x91\x36\x4d\x11\xf0\xb9\x7c\xcb\xd6\x05\x80\x4c\x05\xd2\x71\x9c\x9e\xcc\x43\x39\xd2\x67\x16\xf1\x1d\x3f\x15\x95\x8a\x2f\x47\x9c\xaa\x50\xa2\x0c\xdd\x32\x94\x5a\xce\x0e\x95\x07\xb3\xc1\x41\xc5\xb6\x12\xad\xce\x77\x72\xc1\x77\x05\xde\x07\x5a\x8a\x1b\x11\x4a\x1a\x6c\x4e\xc3\xa7\xe2\x54\xf4\x97\x41\x16\xaa\xbc\xec\x66\x4f\x97\x06\x4a\xf1\xb4\x20\xc4\xa7\x3c\x7c\xa3\xa8\xba\x67\xbe\x3c\xf8\xf2\xc3\xf3\xd5\x16\x57\x9b\x42\x6b\x4a\x07\x9e\x77\x4d\xe1\x7c\xfe\x7c\x79\xec\xca\x5e\xf9\xe4\xd7\xd7\xd9\xd4\x3d\x3b\x4d\x3a\x56\x1c\xf7\xee\xdd\x93\x4a\x29\x11\x04\x81\x7c\xe2\x89\x27\x0c\x78\xd1\xf6\x2e\xee\x14\x91\xb6\x71\x41\xb9\x71\x9d\xde\x03\x26\xa5\xfc\xc4\xe9\xbe\x0c\x29\x59\x0c\x83\x69\x32\x10\x07\xb3\x75\x75\xbf\x3f\x0e\xb6\xfa\xe3\x6c\xab\x3f\x91\xe7\xe3\xa9\xdc\x8c\xe6\x6a\x3d\x58\xaa\x81\x90\x08\x49\x41\x40\x15\xe0\x9a\xe7\x54\x39\x8a\x90\xd3\xd6\xbc\x83\x30\x43\x63\xed\x8f\x4d\xbf\x12\xef\x06\x00\x45\x24\x15\x41\x2a\x81\x34\x0b\x69\xbe\xec\x89\x51\x32\xa0\xa3\xc5\xaa\xd8\x9f\x0d\xc5\xce\x6c\x3d\xd8\x5d\xae\xd0\x23\x45\x34\x55\x50\x09\x11\xcd\xa9\x9c\x16\x9a\x33\x00\x63\xd9\xb2\xa0\x58\x52\xae\xa7\x86\x8a\xba\xc8\x3b\x86\xc5\x42\xbe\xfd\xf6\xdb\xf8\xc9\x4f\x7e\xd2\xa5\xa3\xef\x22\x6b\xa7\x95\x41\xd7\x35\x0d\x26\x7c\x32\xd5\x25\xaf\xa7\x7d\xde\x36\xa8\x69\x6b\xab\xbe\xb8\xeb\x9c\xd1\xfb\x0a\x48\xc7\xbd\x74\x7a\xd2\xcb\x76\xce\xcc\xc2\x8f\xe4\x7b\x7f\x68\x78\xeb\x0c\x4a\x3d\xa3\x54\xdf\xb4\xbe\x66\xd3\x01\x7b\x7a\x24\x67\x0d\xa1\x81\x87\x01\xde\x75\x53\x42\x96\x1f\xf3\x9b\xbf\x94\x84\x74\x12\xcb\xfd\xfb\xeb\x8b\xdb\x8b\x40\x25\x80\x92\x80\x65\xb3\xe9\x63\x48\x9b\xfa\x4e\xf3\x97\x92\x4a\xc6\x71\x36\x3a\x1c\x2c\xef\x9f\x9f\x44\xe3\x50\x06\x9b\xa5\x57\xbf\x65\x8a\x05\xaa\x74\x7f\x57\x30\xa3\x64\xd9\xa5\xf1\x7a\xd5\x47\x24\xa0\xf4\x83\xa2\x5e\x5d\xfb\x21\x9d\x8e\xa7\xcf\xca\xd7\xf8\x41\x4e\xe2\x6c\xff\x68\xb0\xdc\x9d\x46\xd9\x14\xe5\x80\xa1\x02\xe8\xc0\xe2\x72\x9c\x4f\x06\x7d\x6d\xd4\xeb\xa7\xcb\xaa\x22\x37\x42\x9f\x7f\xed\xc7\x37\x35\x20\x75\xc6\xb5\x52\xe6\xc6\xb9\x12\x48\x67\x91\x9c\x4e\xe2\x6c\x3f\x13\x6a\x1e\xa4\x34\xe4\x86\x40\xd6\x0a\x23\x06\x37\xed\xed\x8b\xa9\x54\xb4\x1c\x7c\x38\xae\x34\xe6\x65\xcf\x38\x42\x29\x1f\x3a\x40\xa6\x70\x8c\x72\x2c\x51\xb9\x56\xcb\x04\x21\x11\xaf\xcf\xc3\x6b\xab\xcb\x60\x30\x8d\xb3\x50\x01\x21\x08\x7a\xca\xc8\x30\x2e\x00\x64\x14\x45\xb8\x74\xe9\x12\x76\x76\x76\x1a\x3f\x90\xe7\x9a\x3f\xe3\x75\x5f\xf7\xcd\x9a\x14\xa0\xab\x70\x7c\x69\x36\x29\xfc\xae\x48\xba\x2e\x6e\x5f\x1c\x5d\xd3\x6b\xea\x14\x7c\x79\x6f\x52\xda\x4d\xfe\xea\xea\xac\x4b\xdc\x4d\xe9\xe8\x7b\x71\xff\xfe\x7d\x99\x65\x99\xf8\xdc\xe7\x3e\x27\x2f\x5c\xb8\x50\x39\x49\x9a\xf9\x95\x4c\x39\xa4\x00\xfa\xfa\x9e\x2d\xa5\xce\xa7\x4b\xa0\xfa\x08\x28\x49\x56\x69\x9a\x0c\xc4\xa3\xf1\x66\x70\x37\x9e\xc9\xf5\xfe\x58\x9e\xef\x8f\xb3\xf3\xbd\x89\xda\x8a\xe6\x72\x3d\x5c\xa2\x1f\xa4\xaa\x2f\x32\x15\x93\x44\x08\x05\x51\xb4\x2a\x01\x33\x65\x64\x80\x07\x8c\x41\x6f\xfe\x04\xc6\x20\xbe\xb0\x17\x2b\x0c\x12\xa0\x08\xb2\x38\x53\x48\x2a\x22\x29\x03\x24\x59\x44\xf3\x2c\x12\xd3\x65\x8f\x46\xc9\x80\x8e\xe6\xab\x62\x77\xbe\x16\xec\x2e\x06\xe2\x28\x8b\x68\x02\x2a\xc1\x08\x81\x38\x9b\xa2\x41\x8b\x0b\x58\x0c\x70\x23\xa2\xd4\x35\xfc\x9f\xcd\x66\xf2\xd6\xad\x5b\xf8\xcf\xff\xfc\x4f\x5f\xdb\xa8\x63\x14\x7c\xee\x34\x32\xe8\x7b\x27\x9c\xdf\xa6\xb0\x5d\x74\x6e\x53\x5a\x6d\xf1\xba\xd7\x6d\xed\xc1\xf7\xbc\x11\x98\xb1\x4e\x5c\x02\xe0\xe0\x3b\x9d\x85\x72\xba\x3f\x5c\x6e\x5f\x98\x44\xa3\x70\x11\xf4\x73\xd6\x85\x6d\x28\x0a\xc0\x35\xc8\x28\x75\x6e\x95\x37\xe1\xba\xb9\xec\x1e\x8a\x4e\x92\x34\xfc\xe0\xc7\x10\xd4\x94\xcc\xa3\xef\xf5\x00\x38\x0d\xd4\xfc\x78\x25\xdd\xd9\x5b\x5b\x3e\x04\x21\x55\x0a\x29\xd9\xed\xd1\x2a\x6f\x43\xdd\x69\xb0\x63\x58\x41\x22\x4a\xe7\x91\x1c\xef\xac\x25\x77\x9f\x3c\xee\xef\xf6\x96\x62\x43\x40\xef\x7d\xc2\x06\xe0\x06\x60\xe8\x81\xb5\x7d\x1a\xbc\xb6\x59\x33\xc5\x2e\x6a\x93\x98\x3f\xd3\x46\x2d\x3f\xf0\x9a\x66\xb8\xcf\xcb\x7c\x10\x16\x61\x36\x3e\x5c\x5d\xde\x3d\x18\x2c\x1f\x2c\x42\xa9\xa7\x69\xf9\x74\x91\x99\x36\xd2\xbf\x47\x47\x47\xf2\xe4\xe4\x04\x38\x3d\x3b\x78\x6a\xc6\xa5\x49\x48\xdb\x3a\x5b\x09\x87\x65\xe0\xa0\x85\x85\x4d\x41\x48\x33\x81\x64\xdc\xcb\x0e\x53\xa1\xe6\x31\x69\x03\x25\x9f\xfd\x8a\x62\xc2\xc5\xde\x57\x8c\xfe\x18\x6a\x66\x4a\xd5\xa2\x04\x9d\xe7\x1c\xa9\x1b\xe3\x45\xc7\x59\x73\xff\x28\x1b\x8a\x8e\x4f\x10\xc2\xc1\x32\xb8\x7c\x76\x1a\x6e\x3e\x5a\x59\xee\x26\x81\xd9\x3d\x31\x2c\x0c\x75\x4d\x7d\xac\xaf\xaf\x8b\x2f\x7e\xf1\x8b\xf2\xaf\xfe\xea\xaf\x78\x7d\x76\x61\x46\xdc\x8e\xd3\xf5\x7f\x9a\x11\x21\x60\xa7\xdb\x94\x8f\xba\x78\x5c\x57\x97\xcf\x36\xa5\x5d\x07\xb0\x9a\x9e\xbb\xf1\x35\xb1\x4d\x75\x1d\x55\x9d\x12\xf6\x01\xf0\xb6\x32\x77\x01\x8b\xbe\xbc\x8b\x87\x0f\x1f\xca\x7f\xff\xf7\x7f\x17\xbf\xf5\x5b\xbf\x25\x89\x08\x1b\x1b\x1b\x40\xae\x10\xcd\x77\x75\xe6\xcb\x2d\xf6\x45\xef\x57\x42\x44\x49\xc1\x4e\xf4\x01\xf4\x95\x52\x31\x80\xbe\x8c\x68\x3a\x8f\x82\xe3\xf9\x9a\x78\x28\xd2\x70\xa5\x37\x95\x1b\xbd\xa9\xdc\x88\x67\x6a\x23\x9a\xc9\x8d\x78\x2e\xd7\xc3\x44\x0d\x45\x8a\x58\x48\x15\xe7\x53\x4a\x08\x49\x42\x90\xe2\xbb\x9d\x12\xcb\xbf\x06\x58\x79\xdb\x53\x44\x12\x04\x29\x05\x52\x19\x50\xaa\x02\x9a\x67\x21\x25\x69\x4c\x39\x58\xe9\xd3\x51\x32\x10\x47\x8b\x81\x38\x4a\x56\x68\x94\x45\x62\xaa\x48\x2d\x0a\xa6\xc8\x05\x24\x06\xa8\x14\xe5\xe1\xef\x38\xc3\x64\x6d\x2c\xa7\x99\xdc\x24\x49\xe4\xbb\xef\xbe\x8b\x1f\xfe\xf0\x87\x9e\xea\x37\xf5\xee\x7e\xbb\x3a\x19\x6d\x92\x2b\xd7\x2f\x77\x6d\xe0\xd7\x97\x8f\x3a\x79\x75\xf3\x71\x9a\xfc\xd5\xc5\xcf\xe3\x69\xeb\x4c\x9a\x64\xda\xaa\x3b\xbe\x18\x83\xb1\xec\x29\x00\xb9\x0c\x54\x72\xf7\xcc\xe2\xbd\x27\x8f\xe3\xfb\xfd\xa5\xd8\x20\x49\xfd\x52\xfb\x92\x99\xd1\xa8\xd8\x63\x58\x73\x38\x9c\x59\x67\x9c\x9e\x51\xcd\x8c\x3d\xe0\x46\x2d\x2c\x1e\xd7\x04\x80\xeb\x7b\xb3\x47\x0c\x00\x45\x90\xf3\x30\x1b\x1d\x0c\x96\xdb\x93\x38\x1d\xa3\x04\xc9\x29\xef\xcb\x18\xf3\xa2\xdb\xa8\xa5\x5f\x58\xdf\xc7\xc3\xa5\x00\xd2\x45\x28\xa7\x3b\x6b\xc9\xbd\xdd\x61\xf2\xce\x70\x11\x5c\xee\xa5\xb4\x5e\xe6\xba\xcc\x37\x31\xb4\xa1\x89\x4e\xdb\x38\xc8\xae\x27\x3b\x3f\xec\x64\x76\x38\x41\x14\xca\x01\x89\x63\x3b\xe3\xe6\x43\x42\xc9\x93\x5e\xb6\xf3\x60\x2d\xb9\x7d\xb4\x92\xee\x67\xa4\x12\x02\x55\x6c\xca\x5c\x06\xea\xd5\x57\x5f\xc5\xbb\xef\xbe\xeb\xb6\x31\xed\x7c\xed\xa1\x0e\x7f\x48\xc0\xcf\xb8\xf8\x5c\x1d\x40\x69\x54\xcc\x6c\xe4\xe8\x66\xcc\x08\xb2\x52\x4a\x16\x86\x4f\x47\x49\x20\xc7\x2b\xcb\xe0\x3c\xe0\x56\x9c\x36\x26\xac\x56\xba\xfe\x82\x15\x22\xca\xbc\x2a\x0f\x67\xb3\xc2\x9a\x8f\xe4\xf2\x86\x64\x0b\x40\x25\x2e\xff\x7e\x2e\xc5\x23\x11\xa7\xe2\xfc\x85\x93\xe8\xc9\xed\x8d\xf9\x6d\x6d\xe7\xa2\x05\xd9\x65\x5d\x58\x7d\xa0\xe6\xda\xe7\xcf\xe7\xbf\x0b\xb0\xec\x12\x4f\x53\x67\xeb\xa6\xe7\x3a\x1f\xdb\xd0\x65\x84\x59\x97\x87\xba\x3c\xba\xf1\x37\xd5\x9f\xef\xb7\xc9\x6f\x5d\x9e\x9a\xd2\xf4\x3d\xef\x52\x8f\x95\x8e\xe0\xf0\xf0\x50\xfe\xed\xdf\xfe\xad\x08\xc3\x10\x5f\xfd\xea\x57\x65\xaf\xd7\xd3\xfe\x53\xbe\x32\x41\xff\x31\x05\x9a\x10\x51\x5f\xef\xc0\x5b\x80\x16\x0e\x60\xe6\xc8\x4f\xb4\xed\x83\x28\x94\x11\xa6\xb3\x33\xc1\xc9\xec\x4c\xf0\x00\x4a\x45\xc1\x12\x83\x68\x2e\x07\xf1\x4c\x0d\xa3\x85\x1c\x06\x09\x06\xe1\x52\x0e\xc2\xa5\x1a\x04\x4b\xc4\x94\x1b\xf6\x16\x20\x46\x69\x56\x46\x2a\x40\x2a\x41\x52\x11\x52\x45\x90\x2a\x40\x9a\x85\x94\x64\x21\x4d\xb3\x1e\x4d\x97\x31\x4d\xd3\x58\x8c\x93\x01\x8d\x93\x3e\x8d\xb3\x88\xe6\x0a\x58\xf0\xa9\x2e\x02\xf1\xc3\x0f\x0d\x48\x29\xa6\x7e\xe6\xce\x6f\xc2\xca\xcb\x6d\x7c\xc0\xea\x44\xa6\x69\x2a\x6f\xde\xbc\xa9\x99\x96\x36\x57\x07\x12\x7c\xae\x0d\x14\x00\xcd\x71\x74\x01\xfb\x4d\xe1\xbd\x72\x53\x13\xb6\x6b\xd9\xeb\xf2\x56\xcb\xa8\xf8\xf2\xb2\x58\x2c\x20\xa5\x94\x42\x08\xa3\xfb\xcd\xd2\x7d\xb3\x84\x3f\xff\x76\x7b\xc3\x64\x7f\x77\xb8\x7c\xe7\xcc\x2c\xba\x12\x26\xaa\x6f\xf8\x16\x0e\x56\x2a\xba\x97\xe9\x60\xce\x24\x18\x26\xc2\x66\xd3\x4d\x70\x77\x04\xca\x28\x1a\xcb\xdc\x80\xf7\xdb\x05\x30\x02\xe5\x46\xb9\xa3\x7e\xb6\xf3\x70\x2d\xd9\xce\x44\xc9\x68\xba\x1d\xb5\xae\x17\xd7\x30\xb5\x68\xb7\xae\xed\x87\x01\x2d\x00\x12\x09\x95\x8c\x7b\xd9\xd1\xbb\xe7\x66\x37\x2e\x4c\xa2\x8f\xc4\x93\x28\xdf\xce\x40\xaf\xe6\xe3\xe5\x47\x15\x74\xb9\x65\xd0\xe5\x2c\x4f\x87\xf6\xa0\x41\xe6\xdf\xd8\xb9\x58\xd3\x68\xf6\xb4\x93\x5e\xb5\x95\x04\x6a\xbc\x37\x5c\xde\x7e\xb8\x96\xdc\x9b\xc6\x72\xec\x0c\x1e\x0c\xa0\x63\x26\x21\x4d\x26\x12\xbc\x3e\xea\xfc\x78\x7f\xdb\x80\x8b\x6f\xd4\xec\x76\x5e\x4d\x0d\x89\x2b\x04\xbe\xa4\x33\x65\xcf\xd2\x54\xa8\xf4\xd1\x20\x3d\x58\x84\xea\xc8\x01\xd6\xb9\x63\x07\x66\x91\xbb\xee\x4d\xa3\x67\x1e\xce\xfe\x3e\xf5\xf4\x20\x69\x44\x5e\x06\x60\x48\xbb\x32\x7b\x94\xc7\xe5\x31\x64\xa2\xd2\x47\xa0\xd0\x3f\x3f\x8d\x9f\x89\x25\xfd\xd7\x0c\x30\x76\x2e\xaa\x3c\xe2\xdb\x6f\x1c\xec\x77\x5d\x94\x19\x3c\xef\xbb\x28\xad\x0f\x12\xd7\x07\x79\xf6\x38\x79\xf8\xa0\xfe\x7e\x9e\xee\x34\x20\xa7\x4b\x3c\x95\x70\x69\x9a\xe2\x2f\xff\xf2\x2f\xf1\xc7\x7f\xfc\xc7\x22\x0c\x43\x59\xd8\xba\x00\xf6\x7e\x40\xbc\x4d\x85\xc8\x47\x72\x31\x80\x98\x75\xee\x31\x38\x68\xc9\xed\x43\xe2\xe2\x2f\x04\x10\x83\x28\xcc\x62\x9c\x64\x71\x10\xce\xd7\x11\x02\x88\xa0\x54\x7e\x9a\x6f\xa6\xc2\x60\xa9\xe2\x20\x45\x0c\x09\x21\x24\x42\x92\x4a\x90\x2c\xda\x36\x41\xca\x80\x4a\xd0\x12\x50\x9a\x45\x94\x64\x21\x12\x08\x4a\x8a\xf2\x2c\xc1\x14\x1b\xd9\x07\x4b\xf2\xe9\xad\x39\x0a\xc6\xa8\xe1\x97\x8f\xec\xf4\x09\xdb\x56\xc7\x01\x40\xbe\xfa\xea\xab\xee\x8a\xbd\xb6\xef\x71\xda\x6f\xe5\xea\xc3\xae\x20\xc6\xf7\xbc\xcb\x20\xa6\x4b\x5e\x9b\x94\x7f\x5b\x1e\x9a\xee\x3b\x81\xa3\x6f\x7e\xf3\x9b\xf2\xf7\x7e\xef\xf7\xc4\x13\x4f\x3c\xa1\xeb\xc3\x00\x6d\x6d\x7b\xa4\xbf\xdd\x3c\x92\xd3\xbb\x1b\x8b\x77\x2e\x9e\xc4\x1f\xeb\xa7\xf1\x7a\x28\xd1\x07\xaa\x7a\xda\xd8\x9d\x30\x95\xef\xdd\xbe\xc2\xa2\x66\x6a\xe2\x70\x1e\x54\xec\x1a\x9d\x28\x88\x00\x09\xc8\x49\x9c\x1d\xee\xac\x2f\x6e\x3e\x5c\x4f\x1e\x28\xaa\x9e\x2e\xae\xeb\xa0\x66\xaa\x88\x1f\xb4\xc8\xe5\x94\xcb\x70\x4a\x44\xc9\x32\x50\xd3\xbb\x1b\xf3\xf7\xdf\x3f\xee\xbd\xba\x3e\x0f\x2f\xc7\x16\xeb\x52\xcd\x9b\x42\xd9\xd7\xb9\x65\x28\x8b\x69\xbf\xf0\x0e\xfc\xf9\xbd\xd5\x67\x92\xf5\xac\xa8\x0f\x1c\xaf\xa4\xf7\xef\x9e\x99\xbf\x33\xea\xa7\xfb\xaa\x9c\xda\x35\xe7\x80\x39\xc0\xcd\x67\xac\x7b\x5a\xdd\xee\xfd\xad\x03\x2e\x6d\x53\x41\xbe\x0c\x58\x82\x3d\x99\x4c\xf0\x67\x7f\xf6\x67\xf2\x4f\xfe\xe4\x4f\x04\x50\xda\xb8\xe8\x78\x39\xcd\x9d\x09\x95\x9c\xf4\xd2\xd1\x34\xce\x0e\x15\xa9\x94\x14\x42\x6b\x2a\x88\x0b\x15\x03\x0e\xae\x41\x15\x1c\xff\xdc\x29\xf3\xdf\x15\xfa\x6a\x80\x36\x58\xe1\x02\x2b\xeb\x8c\x23\x85\x70\x6d\x11\x3c\x33\x9c\x87\xeb\xe3\x58\xee\xa7\x81\x0a\x15\xdb\xf2\x1f\x36\xa0\x03\xfc\xc0\xaf\x49\xf9\xb9\x54\x2f\x1c\x7f\x4d\xd3\x43\x75\xcf\x9a\xf2\xd0\x04\x9c\x7c\x53\x29\x5d\xf2\xe2\xe6\xb9\x2e\x4f\x5d\xfc\xf9\xf2\x5a\x57\x8e\xa6\xbc\xd5\xd5\x7f\x5d\xbe\x9b\xfc\xfb\xbe\x91\x9b\x07\x5f\x59\xad\x38\xfe\xfc\xcf\xff\x1c\x7f\xf8\x87\x7f\x88\xb5\xb5\x35\xce\x5e\xf2\xb0\x5a\x09\xea\x15\x6c\xda\xde\x23\x01\x03\x27\x4a\xa9\xb8\x00\x31\x21\x4a\xe0\x12\x17\xd3\x48\x82\x88\xc2\x62\x3a\xb3\x88\x87\x84\x22\x25\xb2\x90\xc2\x2c\x2c\x0f\x84\x73\xca\xc3\x9d\x03\x1e\x6c\x2a\xdc\xf9\x93\xb0\xa7\x7a\xb8\xe2\x4b\x9c\x3f\x6e\x78\xac\x47\x74\x5a\x6f\x54\xd2\xfd\xb7\x7f\xfb\x37\x79\xeb\xd6\x2d\x9f\x21\x60\x93\x3b\x2d\x0b\xd2\xb5\x7d\xb9\xcf\xdb\x18\x0c\xed\x47\x3f\xeb\xaa\x17\x7c\xb2\xe3\x8b\xbb\x29\x8d\xa6\xbc\x3e\xee\xc0\xc9\xed\xa8\xcd\x37\x55\xc0\xfc\xc1\xda\xe2\xde\xfb\x1b\xf1\x8d\x41\x12\x6c\xae\xcf\x83\xcb\x42\x91\x30\xb3\x22\x9a\x09\x80\x4d\x12\x98\xce\x98\x4f\x95\x30\xe7\x33\x15\xb0\x00\x4b\x8d\x1f\x37\x12\x0d\x8e\x92\x48\x8e\x77\xd6\x93\x77\xde\x3b\x37\x7f\x63\x16\x4a\xbd\xf4\x9e\x1b\x82\x7b\x0d\x51\xef\xde\xbd\x8b\x7f\xfe\xe7\x7f\xc6\x60\x30\x90\x7f\xf4\x47\x7f\x54\x37\xdb\xe0\xca\xfa\x7c\x19\xa8\xf1\x8d\x4b\x93\xd7\xce\x4d\xa2\x6b\x97\x4f\xe2\xe7\xc3\x0c\x7d\x5f\x79\xeb\x56\xb6\x96\x33\x00\xbe\x81\xb5\x27\x1c\xbf\x56\xd5\xe7\x6e\x05\x9d\xf4\xd3\xfb\xef\x9d\x9b\xbd\x7c\x77\x63\xf1\xde\x2c\x92\x23\xd8\x07\x98\xf2\x36\x5b\x56\xa7\x52\xf8\xd6\xb7\xbe\x25\xef\xdc\xb9\x03\x9c\xae\xad\x35\xfa\xed\x6a\x9c\xdb\xe6\xbc\x53\x13\x52\x4a\x51\x28\x1a\x41\x55\xaa\xcc\x28\x36\x05\xa4\x49\x98\x9f\x7b\x90\x0a\x35\x8f\x33\x1a\x02\xb0\xe7\x36\x99\x73\x11\x28\x50\x22\x4f\x7e\x72\x34\xf7\x41\x95\x10\xb6\x17\x6e\x65\xed\xdb\x12\xbd\x3c\xec\x9b\x3f\x2c\xfd\x31\x22\x48\xac\x2c\xc5\xe5\xad\x49\x74\xe9\x60\x75\x79\x3f\x15\xbc\x43\x80\xde\xa3\x03\x44\x84\x7e\xbf\x8f\xaf\x1c\x54\x60\xd3\x00\x00\x20\x00\x49\x44\x41\x54\x7e\xf5\xab\xf8\xeb\xbf\xfe\x6b\x5d\x27\xbc\x7e\xb4\xab\x1b\xe5\xd4\x7d\x9b\x2e\x0a\xac\x4b\x9c\x6d\xe9\xf8\xe2\xee\x82\xae\x9b\xe2\x6b\x8a\xab\x29\x8e\x3a\x74\x5e\xf7\xcc\xbd\xef\x4a\xb3\xd7\xf9\x69\xcb\xcf\x69\xc3\x03\x39\xb8\xc7\x37\xbf\xf9\x4d\x21\x84\x90\x9f\xff\xfc\xe7\x71\xf5\xea\x55\xf3\x92\xed\xf9\x62\xda\x5e\x00\x38\x40\xc7\xbf\xd1\xc1\x6b\x39\x4b\x01\x88\x02\x9c\xc4\x0c\x98\x68\xe0\x22\x18\x98\xe1\x32\x5a\x18\x94\xe7\x9b\x27\x16\xcf\xb5\xb3\x80\x0b\x5f\xa5\xa0\xf3\xe0\xfc\xb9\x27\x60\xfb\xfe\x5c\x9b\x95\xc4\x0d\x53\xd3\x49\x58\x75\xfc\xed\x6f\x7f\x5b\x6e\x6f\x6f\x43\xd9\x67\xc4\x74\x71\x6d\xdf\xfa\xe7\xdd\x16\xbb\xe6\xa7\x49\x96\x4f\x9b\x46\xdd\x20\xa0\x4b\xd8\xd3\xfa\x77\xc3\xf2\xbf\x9c\x59\x23\xf4\x67\xb1\x1c\xdf\xd9\x9c\xdd\x5c\x9b\x07\x5b\x51\xd6\x1f\x0c\x96\xc1\x66\xae\x7a\x73\x45\x6a\x80\x07\x67\x01\xd8\x85\x6f\x70\xe9\x63\xc8\xb9\x6d\x63\xc5\x4f\x4d\x24\x04\x42\x4a\x2a\x3d\x1c\xa4\x77\xdf\xdf\x58\xbc\x79\xb0\xb2\xdc\x07\x54\x02\xd8\x2c\x20\x6c\x39\xd6\xe5\x45\xb1\x2a\x50\x4a\x29\x7d\x83\x4b\xde\x66\xb5\xfc\xcf\x41\xe8\x4b\x60\x7e\x38\x58\xee\x5f\x7f\x62\xfc\xa3\x48\xae\x0d\x2e\x8c\xe3\x8f\x86\x12\x31\xd5\x94\xd7\x2d\x03\x79\x9e\xd9\xae\xec\xf0\x2a\x75\xe5\xd4\x8f\x3b\x3d\x35\x8d\xb2\xa3\x3b\x67\xe7\xaf\xbe\x73\x7e\x76\x73\xdc\xcb\x8e\xe0\x37\x92\xf7\x4d\x9d\xe9\x7d\x93\xba\xe8\x73\x8e\x3b\xea\xda\x9d\x04\x6c\xc6\xc5\x0d\x50\x37\x12\x68\x4a\xb8\x02\x7a\x1c\x7a\xca\xb5\x38\x37\x3b\xe8\x4a\x52\xc9\xa8\x9f\xed\x73\xe0\x02\x00\x0e\xa3\xc7\x98\x13\xfd\xda\xae\xf1\x92\xa9\xe1\xc6\xbb\xfe\x78\xdc\xe9\xa4\x92\xe1\x29\x5f\x94\xc8\xdd\x23\x0d\x2e\xf5\x56\x78\x8e\x32\xda\x38\x3f\x8e\xae\x46\xe7\xe8\xcd\x59\x04\xce\xb8\x80\xdb\xb9\x08\x21\xb0\xba\xba\xda\x04\x12\x7d\x4c\x82\xeb\xea\x90\x6a\x1d\x23\xe3\x0b\xe3\x4b\xd7\x17\x8e\xc7\xcf\xe3\xe1\xfe\xba\xb0\x36\x75\x6c\x43\x1b\x0b\xe1\xcb\x87\x97\xad\xf0\xbc\x6b\x03\xe2\x75\x61\xf4\x75\xd3\xbb\xba\x6b\x5f\x1a\xbe\xfc\xd4\x32\x33\xb3\xd9\x4c\x02\x10\xff\xf1\x1f\xff\x81\x4f\x7f\xfa\xd3\xf2\x43\x1f\xfa\x90\x9e\x33\xe7\x7e\xcd\x00\x01\x76\xa7\xaf\xa7\x90\x92\xe2\x3a\x54\xca\xd8\x5d\x59\x2c\x0b\xbb\xd6\xf1\x85\x4c\x56\xf5\x5c\xbd\x70\xc0\x0a\xcf\xb3\xb5\x3b\x36\x63\x46\x4c\x7e\xdc\xd5\x14\x70\xc0\x49\x0d\xb3\x62\x96\x37\xb3\xf8\x0d\x40\x21\x22\x7c\xfb\xdb\xdf\x96\x77\xef\xde\x75\xcf\x1d\xe2\x75\xde\xe5\xbb\x37\xf9\xe5\xba\xf1\x71\x06\x74\x68\x08\xd3\x85\xad\x69\x0b\xd7\x55\x3f\xb7\xa5\xf1\xb8\xe5\xf4\xa5\xe7\x02\x58\xcd\x9e\xe5\xb6\x4a\x84\xf9\xfe\xea\xf2\xe1\xed\x73\xf3\x1b\x83\xa5\xd8\x78\x62\xd4\xeb\xc7\xa9\x18\x54\xa6\xe2\xf9\xe0\x92\x3d\x77\x77\xb7\x75\xf5\x79\xc9\xda\xd8\x8a\xdf\x5a\x06\x8c\xb2\x7f\xe0\x71\x4b\x52\xf2\xa4\x9f\xee\xbc\xbf\xb1\x78\xf3\xfe\xfa\xe2\x4e\x12\xaa\x31\xf2\x55\x6d\x2e\xb3\x50\x01\xd2\xdb\xdb\xdb\x52\x1b\x84\x2f\x16\x0b\x7c\xfd\xeb\x5f\x97\x5f\xfe\xf2\x97\xf9\xc0\x5d\xb7\x0f\xde\x2e\x35\x78\x09\x25\x10\x6f\x9f\x9d\xdf\xe9\xa7\xe2\x27\x42\x51\x7c\x6e\x12\x5d\x0b\x25\xc5\xc6\x9a\xc1\x19\x53\xfb\xea\x44\x31\xbf\x66\x26\xc2\x41\x81\x56\xd9\x89\xc7\xc1\xce\x01\x2c\xa8\x98\x24\x50\xf3\x7b\x67\x16\x37\xde\xda\x9a\xbe\x7a\xbc\x92\x3e\x94\x84\x31\xc8\x5a\xe1\x67\x80\x8b\xb3\x9f\x4b\x9b\xfc\xf8\x64\xac\xad\x1f\xab\x65\x5c\x7c\x91\xb6\x81\x98\xce\x1d\x04\x95\xcb\xc7\xf8\x9c\x58\x2a\x09\xe9\xe1\x20\xdd\x4b\x02\x39\x1a\x2c\xc5\x79\x13\xc0\xb5\x57\x71\xae\x6c\xa6\x04\x16\x1a\x2f\x11\xba\xc3\x96\xb0\x0f\xab\x6f\x6c\x23\x22\x17\x99\x7a\xf9\x16\x70\x7e\x87\xd3\x78\x42\x51\x7f\x63\x16\x5d\x5b\x59\x8a\xe1\xb8\x97\xc5\x52\xb0\xd1\x6c\xae\xa4\xeb\xe8\xec\x2e\x23\x7f\x5f\xe7\xd8\x04\x14\x9a\xa8\xed\xa6\x6f\x55\x17\xa6\x4d\xd0\x9a\xf2\xdc\x86\xac\xdb\xca\xee\x4b\xb7\x2e\xbd\xba\xf8\x9a\x1a\x4b\x5b\x1e\xba\xf8\x6b\xca\xf7\xe3\xa4\x03\x00\x72\x34\x1a\xe1\xbf\xfe\xeb\xbf\xc4\xcd\x9b\x37\xe5\xd5\xab\x57\xf1\xf1\x8f\x7f\xdc\x7a\xcf\x40\x86\xae\xdb\x14\x39\x40\xd1\x20\x44\xdb\x59\x59\xe0\xa5\xf0\xeb\xfe\xea\x6b\xe8\x7b\x62\x1b\x69\x39\xd7\xf6\x36\xe6\xc5\x37\x25\xb6\x92\x44\xff\x7a\x40\x89\x05\x6c\x78\x18\xcf\xb5\xb5\xe4\x54\x29\x25\xbf\xf5\xad\x6f\x01\x00\xee\xdf\xbf\x8f\x34\x4d\xeb\x80\x71\xd3\x33\x5f\x5d\x6b\xbf\x75\xef\xba\xca\x65\x53\xdc\x5d\xda\x5c\x1d\xb8\xad\x93\xfb\xc7\x01\x3f\x6d\xe9\xd7\xc5\xe1\x8d\xf7\xc7\x3f\xfe\x31\x3e\xfb\xd9\xcf\xca\x4b\x97\x2e\xb9\x2c\xa0\x40\xde\xb9\x85\x54\xae\x0e\x8b\x93\x40\x8d\x1e\xac\x2f\xee\xac\x2e\xc4\x46\x2f\x15\xc3\xf3\x93\xe8\x5a\x24\x85\x39\xaf\xc7\x1d\xf5\x93\x8f\x09\x2f\x18\x1a\x72\xe8\x79\xab\x73\xa7\x72\x50\xd9\xc6\xe0\x48\x52\xf2\xa4\x97\xed\xde\x39\x3b\xbf\x7e\xe7\xec\xec\xcd\x93\x7e\xba\xcf\x3a\x69\xce\x2e\x70\xf9\x36\x6e\x3e\x9f\x63\x34\x1a\x49\x00\x42\x4a\x29\xf7\xf6\xf6\x34\x68\xe1\xdf\x2f\x2d\xda\x25\x67\x19\xa7\xc8\xdb\xdc\x74\x11\xaa\xa3\xdb\x9b\xf3\x77\xa3\x4c\x0c\x9e\xc5\x8a\x38\x37\x8d\xae\x44\x99\xe8\x9b\x4c\x73\xbb\x16\x5f\x99\xd9\x2f\xaf\x33\x5e\x45\x75\xec\x15\xdf\x0f\x0d\xa4\xb0\x08\xd5\x78\x67\x7d\x71\xf3\x8d\x8b\xd3\x97\xf7\x86\xc9\x83\xa5\x50\x63\x90\xd9\x4b\xa9\x02\x5a\x5c\xc0\xf2\xc3\x1f\xfe\x50\xee\xed\xed\xa1\xc6\xb5\x0d\x18\xe0\x79\x2e\x01\x20\x60\x0f\xdc\x9e\xd4\xbd\x17\x28\xab\x4c\xb2\x7b\xed\xd7\xb5\x91\x05\x11\xd1\x27\x3f\xf9\x49\x10\xe9\xe5\x3a\xd0\x69\x8a\xe2\x37\x00\x10\x15\x7f\x31\x40\xbd\xa7\x1f\xf5\x9f\x1d\x2c\x83\x2d\x02\x84\xb5\x03\xa2\x05\xc3\x19\x7c\xe1\x31\x3b\x68\xd3\xf5\x5f\x2e\x81\x66\xe1\x08\xc8\x8d\x7f\x35\x44\xc9\xfd\x6b\xc4\x69\x6c\x60\x9c\x25\xd2\x7a\x73\x23\x17\xed\x16\xfe\x85\x02\x16\x07\xab\xcb\xb7\x4e\xfa\xd9\x7e\x1a\xa8\x05\x4a\x23\xc5\x0c\xb9\x12\x56\xc5\x47\x56\xc3\xe1\x10\xf7\xef\xdf\x27\xc9\xf6\x22\x77\xea\x5d\x3f\x77\xeb\x9b\x7f\x03\xf7\xbd\xfb\xcc\xfd\x5e\xae\x3f\xee\x7c\xcf\xf9\x33\x37\xdd\x2e\x61\xdc\x7c\xd4\xa5\xcd\x9d\x2f\x9d\xb6\x77\x6d\x61\xba\x28\xf2\xa6\x38\x3e\x88\xf3\xc5\xdb\x39\xad\xf9\x7c\xae\x8e\x8f\x8f\xd5\xc9\xc9\x09\x01\x50\x5b\x5b\x5b\x5a\xd2\x75\x78\xc9\xee\x15\x4a\x10\xa1\x65\x2e\x2b\x94\x65\x06\x60\x59\x5c\x2f\x51\xae\x92\xe0\xab\x26\x16\x6c\x25\x4f\x42\xc5\x88\x93\x88\x16\xb0\xf7\x57\x59\x00\x98\x11\xd1\x82\x88\x66\x00\x66\x00\xb4\x9f\x59\xf1\xbb\x60\xcf\xf9\x2a\xa1\x45\x91\xde\x92\xfd\x72\x26\x26\x53\x4a\x65\x00\x4c\x5b\x39\x39\x39\x91\x3f\xfa\xd1\x8f\xd4\x9d\x3b\x77\x70\xeb\xd6\x2d\x79\x7c\x7c\xac\xa4\x94\x6e\x5b\x20\xcf\x75\x93\xfc\xba\x32\xe9\xfa\xff\x79\xc8\x42\x9d\xdc\x37\xc5\xed\xe6\xa1\x4b\x7b\xf5\x95\x9d\xa7\xcf\xf3\x83\x0e\x7e\xeb\xea\xa9\x22\xb7\x93\xc9\x44\x5d\xbd\x7a\x95\xce\x9e\x3d\x5b\xe0\x0c\xd3\x0d\x08\xa5\x14\x11\x91\xd6\xfd\xb9\xfe\x27\x04\x69\x7e\x42\xf2\x12\x00\x7a\xa9\x58\xe9\xa7\x62\x90\x6f\x42\x9a\x27\xcd\xb7\xaa\xe0\xbd\xac\xd5\x49\x6b\x66\x05\x54\x65\x1d\xc0\x19\x16\x7b\x3b\x0b\x00\xe5\x14\xbf\x02\x14\x29\x8c\x7b\xd9\xc1\x9d\xcd\xf9\xf5\x77\x2e\xcc\x5e\xdb\x5b\x5b\xbe\xbf\x0c\x30\x02\xe1\x04\xf9\x26\x88\xb3\x42\xc6\xb5\xdc\x6a\x7d\x9e\x29\xa5\xe4\xdd\xbb\x77\xe5\xeb\xaf\xbf\x8e\xf1\x78\x6c\xf5\x87\xe3\xf1\x18\x97\x2f\x5f\x56\x41\x10\x98\x7a\x2f\x58\x78\x62\x83\x00\xd2\x75\x02\x02\x2d\x03\xa5\x66\x91\x9c\x65\x42\x2d\xc3\x4c\x84\x71\x46\xfd\x40\x52\x2f\x9f\x49\xc8\x0b\x67\x36\xd8\xab\x19\xdc\x17\xb5\x5f\x02\x16\x5d\x0f\x55\xfc\xc7\x66\x1b\x0a\xc5\x41\x4a\xce\x22\x79\x7c\x6f\x63\xf1\xe6\x8d\x8b\xd3\x9f\xde\xdf\x58\xdc\x5a\x84\xea\x08\xf9\x59\x61\x13\x54\x77\xb2\x5e\x16\x3a\x24\x2b\xfe\x24\x00\xbc\xf8\xe2\x8b\xaa\x00\x72\xba\xec\xae\x8c\xb9\xe0\xbc\xad\x6f\x02\x60\x03\x97\x36\x57\xd7\xe9\xd5\x75\x9e\x00\x40\x52\x4a\x5c\xbc\x78\x51\x15\xc0\xc0\x7c\x2c\xa5\x54\x80\x72\xd4\x17\x29\xa0\x27\x09\xe1\xd5\xe3\xde\xb5\xf5\x45\x78\x25\x50\x14\xf9\x0c\x74\xb9\x40\x5b\x3b\xe6\xea\xe7\x1c\x98\x14\xa1\x0b\xf0\x58\xb1\x94\x36\x31\xb1\x8f\x69\xe1\x20\x2e\x0c\x36\xe3\x68\xc3\x54\xd7\x6f\xf1\x6f\x16\xc9\xf7\xf7\x87\xc9\xfd\x45\xa4\x26\xc8\x11\xe9\x52\x77\x22\x2a\x6f\xd5\x8a\x88\xe4\xf9\xf3\xe7\xf1\xda\x6b\xaf\x21\x4d\xd3\x26\x65\x5a\x57\xd7\xc2\xf3\x4b\x9e\x67\xae\x70\xf8\xfc\xf9\xd2\x68\x53\x78\x6e\x9c\xbe\x5f\xee\xc7\xc0\xc5\x9a\xfc\xf0\x3f\x59\x13\x17\x50\x2d\x03\xcf\x1b\x79\xde\xd7\x8d\x1c\x2d\x08\xeb\x94\xcd\x8d\xbf\x4b\xd8\x26\xd7\xf4\x7d\xdd\xba\xf2\x95\x01\x00\xc4\x7c\x3e\x97\xa3\xd1\x88\x66\xb3\x99\x3a\x38\x38\x50\x17\x2f\x5e\x24\x95\xf7\x0c\x0a\x80\x9e\x46\x51\x44\xa4\x94\x52\x59\xd1\xe9\x67\x00\x32\x06\x5e\xb4\x92\xd1\xd7\x4b\xfe\x57\xc8\xaa\x56\xd0\x09\xf2\x65\xcc\x09\x80\x85\x52\x6a\x51\x00\x95\x45\xf1\x7c\xae\x94\xd2\xa0\x64\x81\x72\x59\xf3\x02\xb9\x92\xe7\xf1\x24\x45\xf8\xa4\x48\x43\xa7\xc9\x19\x18\xad\xfc\x54\x31\x2d\xa6\xf6\xf6\xf6\xe4\x8d\x1b\x37\xd4\xf6\xf6\x36\xde\x7a\xeb\x2d\x79\x70\x70\xd0\x04\x56\xea\x3a\xf2\xba\xef\xe0\x53\x9c\x70\xfc\xf8\xda\x0a\x7f\x5f\xd7\x7e\x7c\x69\x76\x0d\xdb\x76\xef\xe6\xcd\x4d\xa7\x09\xc4\x48\xc7\x6f\x5d\x38\x5f\x67\xe2\x9b\x62\x52\x00\x20\xa5\xa4\xe1\x70\xa8\x86\xc3\x61\x3e\xe5\x50\x28\x5d\x36\x78\xd5\xf9\x0d\x00\x90\x22\x50\x12\xca\x6c\x16\xa9\x44\x12\xd2\x5e\x26\xfa\xbd\x54\xac\x06\x8a\xf2\x05\x1a\x8a\x75\xc4\x45\xae\xcc\xb8\xd4\x1d\x74\xf2\x0e\x59\xe3\x13\xad\x71\xb4\xfe\x67\x7a\x9c\xeb\xfc\x4c\x28\x39\xee\x65\x7b\xdb\x67\xe7\xaf\xbf\x7d\x61\xfa\xda\xee\x5a\x72\x27\x71\x3a\x6a\x2a\xcf\xcb\x9a\x23\x97\x59\x23\xa7\x00\xd4\xed\xdb\xb7\xd5\x9b\x6f\xbe\xc9\x65\x89\x00\xc8\x83\x83\x03\xfa\xa5\x5f\xfa\x25\x44\x51\x54\x76\x1f\xac\x6e\x74\xbd\x14\x8c\x68\x5e\x4f\x04\x4a\x02\x99\x4d\x62\x39\x4d\x42\xb9\x10\x8a\x10\x67\xa2\x17\x4a\x8a\x85\x22\x61\x95\x53\xf7\x8d\x1a\xb4\x81\x29\x26\xeb\x46\xa7\x0d\xcb\xd9\x46\xbb\x0a\xa9\x50\xc9\xb8\x27\x0f\xef\x9e\x5d\xbc\xf5\xd6\xc5\xe9\xcb\x77\x37\x16\xef\x16\xa0\xe5\x44\x29\x35\x21\xff\x69\xec\x4b\x14\x03\x8d\xa2\x8f\xc3\x2b\xaf\xbc\x22\xef\xde\xbd\xcb\xfb\x35\xde\x7e\xf8\x80\xc2\x7d\x66\xc9\x94\xcf\xb5\x9d\x55\x54\xe7\x9a\xfc\x98\x77\x4a\x29\xf9\xd2\x4b\x2f\xe1\xf9\xe7\x9f\x17\x41\x10\x58\xf3\xe2\xe4\x59\x61\xb4\x0c\x64\x32\xea\x67\xbb\xa9\x50\x49\x94\xd1\xc0\x8e\x36\x2f\x57\x01\x3d\xac\x3b\xa0\x64\x40\x72\x01\x55\x4c\xb2\xb5\x07\x07\x78\x94\x8f\x8b\xfc\xf0\xa4\xf2\x2f\x59\xd6\x64\x79\xcc\x00\x3f\x94\xca\x6c\x6e\x54\x54\x37\x3f\xe0\x2a\xcc\x68\xfd\xfc\x34\xba\x36\x48\x82\xf5\x51\x2f\xdb\x97\x64\xdb\x10\xb0\xba\x38\x2d\x9d\xeb\x3a\xdf\xf4\x8b\xef\x1d\x3a\xf8\xe3\xd7\xee\x54\x4e\xdd\x54\x90\x3b\x05\xd4\x94\xae\xfb\xac\xe9\xb9\xeb\xba\xd2\xeb\x5d\xdf\xf1\x67\xa7\x99\x46\xe8\xf2\xae\x8b\x7b\x9c\x29\x25\x73\x7f\x7c\x7c\x8c\x97\x5e\x7a\x49\xf6\xfb\x7d\x21\x84\x90\x00\xf0\xdc\x73\xcf\xa1\xd8\x46\x43\xb7\x2f\x73\xc8\x27\x4a\x50\x67\xf6\x13\xa2\xd2\xb8\xd7\xbc\x83\x2d\x9f\xa2\x88\xcb\xbc\x77\xf7\x65\xd0\xd3\x44\xec\x19\x9f\x2a\xe2\xf9\x97\xfc\x9d\x8f\x56\xe6\x7e\x74\x3a\x0f\x1e\x3c\x90\x07\x07\x07\xd8\xdd\xdd\xc5\x3b\xef\xbc\xd3\x65\x7a\x44\xe7\xdb\x4d\xdf\x05\x28\x6d\xdf\xdb\x17\x47\x9d\xab\xfb\x5e\x75\x69\xf2\x69\x83\xb6\x6f\x2d\x9c\x5f\x5f\xda\x82\xdd\xd7\xe5\xdb\x4d\xbb\xc9\xb5\x95\xa7\xf6\x3b\xdc\xbe\x7d\x5b\x5e\xbe\x7c\x59\x5c\xbc\x78\x11\x00\xe0\x7c\x67\xcd\xea\x85\xc8\x3b\xbc\x10\x40\x98\x09\x84\x8f\x06\xcb\x07\x52\x28\x64\x42\xc9\x54\xac\xa4\x17\xc6\xd1\x53\xbd\x54\x0c\x84\x75\xd6\x0f\x1b\x98\xfa\x55\x7c\xf5\xba\x18\x94\x82\x14\xeb\x3d\x00\x1d\x89\x02\x21\x15\x32\x39\xee\x67\x3b\x77\x37\xe6\x37\x6f\x9d\x9f\xdd\x78\x38\x4c\xee\x14\x1d\xf5\x54\x29\xa5\xcf\xca\x72\xa7\x89\xac\xbf\x87\x0f\x1f\xca\x9d\x9d\x9d\xda\x3a\x7c\xf3\xcd\x37\xc5\x2f\xfe\xe2\x2f\xca\x5e\xaf\xa7\xdb\x93\xae\x0f\xa1\xeb\x85\x88\xa6\x6c\xdb\x0c\x91\x91\xc2\xa8\x9f\x62\x19\xc8\x74\x1e\xc9\xf9\x34\xce\xa6\x97\x8f\x7b\xd7\xd6\xe7\xc1\x56\x9c\x89\xbe\x80\xd9\xe5\x1a\xac\xfb\xab\x76\x74\x8a\x81\x3e\x1f\xd3\xc2\x58\x96\x79\x28\xc7\x47\x2b\xe9\xee\x83\x33\xc9\xed\xdb\x67\x67\x6f\xee\xac\x27\x77\xd2\x40\x8d\x00\x8c\x51\x82\x37\x0e\x5a\xac\x15\x83\xac\xdd\xe3\xfa\xf5\xeb\x28\x6c\xf4\xb4\x6b\x93\xcd\x3a\x57\x91\xfd\xb6\xb3\x8a\xdc\xc0\xdc\x8f\x70\xae\x9b\x1a\x57\x65\xe5\x01\x37\xe2\xd1\xf3\xd9\x8a\x90\x1e\x0e\x96\xbb\xcb\x40\x8d\xfb\x4b\xac\x93\xf9\x30\x80\x0b\x39\x5c\x00\x52\x32\x32\xfc\x9c\x14\xe8\x87\x0c\xa6\xa3\xfa\x1c\xb0\x61\xa7\x01\x40\x3a\xea\xf2\xac\x24\x0d\xf9\x39\xa0\xd1\x52\xa1\x69\x48\x52\x80\x00\xe2\xb5\x79\xf0\xd4\xc6\x2c\xdc\x3a\x1c\xa4\xf7\x17\x91\x1c\x17\xf5\x13\xb2\x79\x5f\x53\x5f\x4f\x3f\xfd\x34\x6e\xdd\xba\x25\x96\xcb\x25\xaf\x27\xb7\x5e\x1f\xb7\x73\x07\xaa\xdf\x4f\x3f\x6b\x13\x2c\x9e\xb6\xef\xfb\xba\xe1\xeb\xf2\xf1\xb8\x80\xb8\x4d\x1e\xbb\x74\x48\x75\xfe\xba\x80\xb1\xa6\x67\x6d\xe9\x9c\xc6\x6f\xdb\xb7\xf3\xd6\xcb\x7c\x3e\x37\xc6\x80\xbd\x5e\x4f\x04\x41\x20\x01\xe0\xe2\xc5\x8b\x58\x5d\x5d\xad\xf8\xe7\x8a\x91\x81\x10\x73\x0f\xd8\xf6\x2c\x70\x3a\x45\x72\x35\x5f\x35\x7e\x17\xc4\xe8\x5f\x73\xed\xfa\x71\x0c\xf6\x01\x00\x0f\x1e\x3c\x90\xf3\xf9\x1c\x6f\xbd\xf5\x16\xde\x7f\xff\xfd\x2e\xf5\xd9\x05\x3c\xd4\xf9\xe5\xf2\xe0\xfa\x69\x02\xf9\x8f\x9b\xa7\xba\x78\x9a\x64\xe7\x71\x40\x74\x53\xd9\xdb\xe4\xd4\xd7\x5e\x3a\xb5\xad\x83\x83\x03\x1c\x1e\x1e\xca\xcd\xcd\x4d\xae\xf7\xf5\x26\x8a\x1a\xbc\xf0\x4e\x3a\x94\x02\xe2\xa8\x9f\x3e\x48\xcf\xcd\x96\x8b\x50\xcd\xa7\x51\x6f\x7c\xf1\x24\xbe\x36\x4c\xc2\x8d\x50\x22\x06\xec\x81\x6a\xc9\xa8\xa8\x62\xc0\x48\x9e\x4e\xa1\x50\xd9\x54\xea\x70\x33\xa4\x27\x05\x49\x90\xcb\x40\x4e\xf7\x57\x93\xbb\x77\x36\xe7\x6f\xde\x39\x3b\x7f\xe7\x70\x90\x3e\x48\x85\x3c\x42\xd1\x41\x6b\x96\x45\x95\xbb\x37\x5b\x1b\xad\x69\xd9\xbd\x7d\xfb\x36\xee\xdc\xb9\x53\x5b\x9f\x2f\xbe\xf8\xa2\x7c\xfa\xe9\xa7\x45\xbf\xdf\x87\x23\xef\x7a\x79\x35\x90\xb7\xaf\x29\xca\xc1\x83\x00\x20\x66\xb1\x94\x77\xcf\x2c\xd2\x49\x2c\xc7\x47\x2b\xe9\xfe\x13\xa3\xf8\xda\xf9\x71\x74\x79\x98\x84\x1b\x51\x46\x7d\x91\x4f\x3b\x95\xf3\x0f\x7c\x20\x6d\xfa\x30\x5d\x1b\x6c\xd0\x81\xbc\x0f\xcb\xeb\x41\xcd\x4f\x7a\xe9\xd1\xde\x70\x79\xf7\xde\x99\xc5\xad\x07\xeb\x8b\xed\xe3\x7e\xf6\x30\x0b\xd4\x18\x39\x68\xd1\x7f\x2e\xd3\x92\xa0\x6a\xdf\x22\x6f\xdd\xba\x85\x34\xb5\x56\x46\xeb\xf2\x6a\x77\x1a\x5d\x5f\x09\xe7\x4e\x15\xf9\xa8\x49\x4e\xe9\x70\x6a\xdb\x85\x03\xca\x09\x6b\xdc\x0b\x2f\xbc\x40\x61\x18\xe6\xcc\x55\x49\x87\x09\xe4\x53\x45\x01\x80\x48\x29\x15\x01\x14\x91\x42\x74\xf5\xa8\xff\xd1\x95\x7c\x79\x5c\xa0\xc5\xd5\xe5\x91\xac\x67\x4a\x19\xe1\xe4\xec\x9b\xbb\x14\x4e\x07\xe4\x54\xa3\xf9\x94\x44\x76\xdc\x0c\xa1\x6b\x10\x93\xff\x51\xd9\x08\xcc\x43\x94\xbf\x26\x8d\x9c\xc8\x9c\xc5\xf2\xee\xe1\xea\xf2\xfe\x3c\x07\x2e\xa9\x52\xca\xb2\x73\x29\xa6\x8c\xe4\xb5\x6b\xd7\xf0\xce\x3b\xef\x60\x3e\x9f\xf3\x8f\xe4\xa3\x68\x95\xe7\x97\x3b\x3e\x85\xe1\xd2\xbf\x92\x3d\xaf\x03\x2d\x6e\x78\x97\x4e\xae\xa3\xaf\x85\xe3\x0f\x8e\x5f\x9e\x6e\x1d\xfd\xed\x52\x85\x6e\x19\x78\x5a\x12\xf5\x62\x51\x17\x37\x17\x1b\xaa\x09\xe3\xcb\x87\xf2\xdc\xbb\xf9\x69\x2a\x43\x1d\x05\xea\xab\x13\xb7\xdc\xba\x5e\x9b\xd2\x07\x00\xdc\xbe\x7d\x9b\x6e\xdd\xba\x25\x6f\xdd\xba\xa5\xfa\xfd\x7e\x2e\xc6\x44\x2a\x8e\x63\xe8\xa9\xa4\x42\xd9\x2a\x22\xca\x8a\xa9\x25\x09\x40\x4f\x29\xe9\x69\x25\x3e\x65\xa3\x95\x52\x56\xc8\x6e\x65\x55\x90\x9e\x76\x2a\xe2\xe0\xf3\xdc\x29\xfb\x35\xab\x83\x8a\x74\xf5\x3c\x78\xa6\xa7\xb4\x76\x76\x76\xd4\x78\x3c\x56\xe3\xf1\x58\xfd\xe8\x47\x3f\xc2\xf5\xeb\xd7\xe5\x68\x34\xaa\x93\x73\xb7\xfe\xdb\xea\xd8\xf7\x9d\xb5\x5f\xdd\x0e\xb8\x8e\xf3\xd1\xd7\x95\x3a\x6f\xc8\x93\xef\xba\x2d\x2f\x4d\x72\xc7\x9f\x35\xb5\x21\xb7\xbd\xd6\xe5\xb1\x0d\x80\xd5\xe9\x89\x26\xbf\x00\xa0\x0e\x0e\x0e\x54\xaf\xd7\xa3\x27\x9f\x7c\xd2\x6a\x67\x0c\xac\x52\x71\x5f\x19\x8d\x26\xa1\x4a\x47\x2b\xe9\xc9\x71\x3f\x3b\xce\x02\x35\x0f\x25\x85\xa1\xa4\x50\x80\x82\x22\x05\xd2\xf4\x39\x11\x8a\xf3\xb3\x6a\xc1\x74\x99\xb8\xa6\x69\x00\x48\xca\xb7\xdf\x18\xf7\xb2\xc3\x07\xeb\xc9\xad\x37\x2f\x4e\x7f\xf6\xce\x85\xd9\xcd\xe3\x95\x6c\x47\x0a\x8c\x40\xc4\x3b\xe9\x29\x72\x1b\x2e\x6d\xab\x95\x20\xb7\xe7\x30\x3a\xfc\xe8\xe8\x48\xde\xb9\x73\x07\x8f\x1e\x3d\x6a\xd2\x57\x6a\x6b\x6b\x8b\x86\xc3\xa1\x0a\x43\xc3\x17\x28\x56\x31\x56\xd8\xc2\x26\x48\xb7\x4f\x64\xa4\xb2\x59\x2c\x67\x8f\x56\x96\xc7\x47\x2b\xd9\xa3\x79\xa4\x4e\x14\xa9\x0c\xf9\xa1\xec\x92\x14\x99\x9e\xa8\x2c\xb8\x33\x4a\x2f\xbb\x33\x48\x82\x4c\x03\xb5\x9c\x47\x6a\x32\xea\xa7\x87\xbb\x6b\xc9\xf6\x7b\xe7\xe6\x6f\xbc\x7d\x61\x76\xfd\xde\xc6\xe2\xf6\xa4\x27\xf7\xa5\xc0\x18\xc0\x09\xf2\xa9\xb2\x13\x5d\x1f\x4a\xa9\x39\xf2\x29\x62\x3d\xcd\xab\xa7\x87\xa4\x94\x32\xdb\xd9\xd9\xc1\xbf\xfe\xeb\xbf\xba\x06\xf3\xbc\x3e\x80\xfa\x7a\x6a\x6b\x23\x0a\xa8\x9f\x2a\x02\xaa\x9d\x1a\x7f\x56\xe7\xc7\x1b\x66\x34\x1a\x61\x73\x73\x53\x16\xc6\x49\x86\x69\x81\xbb\x57\x83\x42\xfa\x68\x90\x8e\x4e\x7a\xe9\xee\xc6\x2c\x78\x26\xc8\x4a\x0b\x73\xcb\x7a\xba\x80\x93\x25\x41\x62\x4f\xe1\xe8\xd2\x59\xd4\x20\xa7\x50\x00\x6b\x37\xc6\x32\x0d\x7e\x5d\x02\x1f\xc5\xb7\x27\xd4\xcb\xc5\xac\x47\x7a\x7b\x64\x7b\x65\x52\x28\xc5\xc6\xb9\x49\xf4\xd4\x6a\x12\x6c\x3c\x5a\x49\x77\x41\xa8\xec\xe9\xc2\x29\x79\xf8\x15\x44\x17\x96\xe3\xb4\xac\x4c\x53\x9c\xa7\x41\xc5\x6d\x8c\x81\x6f\xc4\xe9\x8b\xaf\x6b\xde\x9b\xe2\xad\xf3\xe7\x8b\xfb\x34\xcc\x55\x17\xe6\xa9\x6e\x04\xff\x41\xea\x84\xa7\xd9\x25\x9f\xd6\xfd\x8b\x2f\xbe\x28\x01\xe0\x13\x9f\xf8\x84\xf8\xf8\xc7\x3f\x2e\x01\x20\x08\x02\x68\xdb\x03\x4f\x3a\xf0\x5c\x6b\x86\x06\x80\x91\x55\x6b\x45\x9c\x33\xfd\x0b\xc0\xde\xe6\xdb\x61\x57\xac\xf7\xcb\xe5\x52\x4e\xa7\x53\x13\xe7\xdf\xff\xfd\xdf\x77\x61\xc4\x7c\x32\xd7\xa5\x8e\x4e\xc3\x94\xb8\xe1\x4f\xc3\x4e\x9c\x46\x16\xdc\xb0\x5d\xe3\xee\xda\x26\xdb\xd2\xa9\x63\x2b\xdd\xfa\xaf\x8b\xa3\x36\xce\xc5\x62\x81\xd9\x6c\x26\x57\x56\x56\x78\x1e\x53\xe6\x87\xff\x96\x8e\x20\x93\x40\xc9\x87\x6b\x49\x72\x34\x48\x8f\xf6\x57\x97\x3b\x1f\x3a\x5c\xf9\xd8\xe6\x24\xbc\xb4\x9a\x04\x1b\xbd\x54\x0c\x42\x89\x90\x58\xdf\x95\xab\x7e\x2d\xa3\xbc\xb7\x53\xe6\xbf\x12\x90\x19\x29\xb9\x14\x2a\x99\xc6\xd9\xe8\xd1\x20\xdd\x79\xb0\x9e\xdc\x7e\xff\xec\xfc\xd6\xc1\x60\xb9\x57\x2c\xf1\x9d\x02\x18\x2b\xa5\xc6\x44\x34\x56\xe5\x89\xe4\xda\x98\x9c\xaf\x9e\x31\xa9\xbc\xf4\xd2\x4b\xfa\x1c\x1e\xd7\x59\xdf\xeb\x7b\xdf\xfb\x9e\xfc\xc2\x17\xbe\x20\xae\x5d\xbb\x26\xe3\xd8\x74\x6d\x1a\xd0\x5b\x75\xc8\xda\x92\xee\x2f\x53\x05\xa4\xf3\x50\x26\x0f\xd7\x92\xe9\xe1\x60\xb9\x77\x77\x23\xdc\xbe\x74\xd2\xbb\x7c\x6e\x12\x5e\xda\x98\x85\xe7\x57\x93\x60\xbd\x97\x8a\x41\x24\x29\x16\x92\x04\x01\x82\x8a\x93\xdf\x15\x29\x29\x49\xa5\x92\x20\x33\x42\x9a\x84\xd9\x7c\xdc\xcb\x8e\x0e\x57\xd2\xdd\xbd\xe1\x72\x67\x6f\x98\xec\x8c\x56\xd2\x83\x24\x90\x63\x95\xdb\xac\x4d\x09\xa4\xa7\xca\x34\x80\x33\x6c\x0b\x95\xc7\x6f\xe8\x41\x89\x24\x22\xb9\x5c\x2e\x79\x3b\x36\xf2\xe0\xd4\x87\xcb\x70\xfa\xde\x5b\xf5\xe1\x86\x75\x81\x4b\x9b\x52\xae\x53\x24\xae\x3f\xeb\xfe\xeb\x5f\xff\x3a\xbe\xf2\x95\xaf\xe8\x83\xe3\xcc\x7b\x46\x2f\xe5\x00\x86\x90\x2e\x02\x39\x3d\x1a\xa4\xf7\x2f\x9d\xf4\xa6\x51\x86\x81\x28\xe2\x37\xcb\x8e\xf5\x35\xfb\xce\x9a\x3d\xb1\x58\x16\xee\x4a\x0f\xe5\x23\x46\xa1\x71\x02\xcd\x80\x15\xe4\x53\x3f\x86\x86\x34\xe1\x74\x40\x06\xa4\x2a\xeb\xd0\xf2\x6b\x21\x55\xbc\xb6\x08\x9e\x5a\x9f\x85\x5b\xbd\xd5\x64\x7b\x11\xa9\x29\xeb\x08\xb4\x31\x96\xa9\xef\x28\x8a\x40\xb9\xe1\xb2\xef\xa3\xba\xca\x84\xbf\x6f\x52\x4a\x6e\x87\x8b\x0e\x7e\xdd\x67\x6e\x3a\x75\x9d\xb8\x7b\x0d\x27\x8e\xa6\xf2\xb8\x4e\xbf\x6b\x53\xa2\x5d\x46\x84\x6e\xde\xba\xc6\xd1\x2a\xdb\x2d\xf1\xb4\x0d\x02\xdc\x3a\x76\x9f\x37\xe5\xa1\x4b\x9a\xe2\xfa\xf5\xeb\xf2\xfa\xf5\xeb\x02\x80\xbc\x78\xf1\xa2\xf8\xd2\x97\xbe\x64\xc5\x15\x45\x91\x13\x6d\x09\x2c\x0a\xf9\xb4\xd2\x75\x40\x49\x05\xb0\xbb\x4a\x9d\xbf\xcf\xb2\xcc\x5a\x38\x77\xef\xde\x3d\x7c\xfb\xdb\xdf\x6e\x93\x81\x2e\xae\x49\x46\xdd\xf7\x70\xde\xd5\xd5\x5d\x13\x30\xf5\xa5\xcd\xef\xdb\x80\x67\x5b\xdc\x6d\x03\x02\xd7\x75\xf1\xdf\x54\x06\xdf\xfb\x3a\xd9\xac\x4b\xd3\xea\x1b\x6e\xdc\xb8\x21\xd3\x34\x15\xbf\xf1\x1b\xbf\x81\x30\x0c\xb9\x5c\xe8\xa9\x22\x67\xa0\x57\xa6\xa1\xa0\x24\x04\xa5\x73\x92\xc9\x3b\xe7\x67\xb3\xfb\x67\x16\xbb\x17\x4e\xa2\xad\x4b\x27\xbd\xcb\x17\xc6\xf1\xe5\x33\xf3\xe0\x7c\x3f\x15\xc3\x30\xa3\x50\x28\x0a\x85\x44\x28\x90\x9b\x15\x18\x8a\x8a\x00\x05\x25\x33\x81\x34\x0d\xd4\x3c\x09\xe4\x7c\x1a\xc9\xf1\xd1\x60\xb9\x7b\x7f\x3d\xd9\xbe\x7f\x66\x71\xf7\xb8\x9f\x3e\x92\xc2\xb0\x08\x53\x82\x99\x1e\xd2\xbb\xe4\xea\xce\x9a\xaf\xba\xd3\x9d\x35\x00\xc8\x34\x4d\xb9\x4c\x37\x0d\x40\x01\xe4\xe0\xe5\xf3\x9f\xff\xbc\x78\xf6\xd9\x67\xa1\x07\xf2\x2c\x3e\xab\x1e\x8a\x77\xd2\x61\x3a\x13\x00\xe9\x32\x54\xc9\xde\x70\x39\xdf\x5f\x5d\xee\x85\x8a\x6e\xae\x2d\x82\xe1\xb9\x49\x74\x7e\x73\x12\x6d\xae\x2d\x82\xf5\xfe\x32\x18\xc6\x92\x62\x21\x11\x2a\x00\x69\xa0\x92\x24\x90\xf3\x79\x24\xa7\xb3\x50\x4e\x8f\x57\xd2\xa3\xfd\xe1\x72\xf7\xb8\x9f\x8e\x93\x40\xe9\x93\xd9\xe7\x4a\x61\x4e\x79\x1d\xe8\xf2\x9b\x7a\x28\x98\x16\x33\x65\x56\xfc\xea\xfe\x5b\x2a\xa5\x64\x61\xea\xd0\xe6\xea\xfa\xa2\x26\x90\xc3\xc3\x36\x70\x6c\x65\xa0\xba\x48\x9a\x94\x6d\xc5\x7d\xe5\x2b\x5f\x11\x1b\x1b\x1b\xba\x23\xe2\x3b\x78\x0e\x00\x0c\x95\x52\x43\x22\xda\x00\xb0\xf1\x0b\x0f\x07\xbf\xfc\x6b\xdb\x6b\x5f\x39\x3b\x8b\x9e\x0a\x14\x85\x1a\x59\xe4\x6c\x5f\x95\x2a\xa9\x70\xc2\x1c\x89\xb4\x39\x87\xa9\x71\xe3\xab\x0b\x62\xf3\x59\x9c\xdf\xb1\xfd\xcd\xc3\xec\xee\x9b\x5b\xd3\xbf\xbd\x7e\x79\xf2\xdd\x83\xd5\xe5\x5d\xd8\xf3\x84\x95\x6d\x92\xff\xf1\x1f\xff\x51\xde\xbb\x77\xaf\xcb\x08\xea\x7f\xdc\xff\xb8\x0f\xec\xbe\xfa\xd5\xaf\x8a\xe1\x70\x68\xc9\x98\x03\x5c\x00\x7f\x9b\xaf\x74\x5c\xba\x73\x62\x80\xc7\x8a\xf7\x3b\xdf\xf9\x8e\xcf\xc0\xf6\xff\xcf\xae\x8d\xc5\x78\xdc\x38\x3e\x48\xb8\x36\x16\xe5\x83\xb8\xd3\xa6\x89\xa7\x9f\x7e\x5a\xfc\xce\xef\xfc\x8e\xd6\xfb\xf9\x20\x34\x3f\x82\x22\x44\x7e\x7e\x96\x3e\x47\xab\x8f\xbc\x2f\xd0\xbf\x03\xa5\xd4\x80\xf2\xdd\x9d\x07\x00\xfa\xa4\xb0\x32\x48\xc4\xe0\xfc\x24\x3e\x7f\x6e\x12\x6d\x0e\x17\xc1\xfa\x60\x29\x86\xfd\xa5\x18\xf6\xd2\xa0\x2f\x14\xf2\xf3\xb3\xa0\x20\x09\xe9\x32\x90\xc9\x24\xce\x46\xc7\x2b\xe9\xd1\xa3\x95\xf4\xf0\xd1\x20\x3d\x1c\xf5\xd3\x51\x12\xaa\x09\xca\x5d\x5f\xad\xce\x19\xd5\x65\xbe\x7c\x9b\x7f\xdd\x51\x9b\xbf\x7f\xfc\xc7\x7f\x84\xa3\xaf\xdb\xea\x0a\x00\xf0\xd9\xcf\x7e\x56\x3c\xff\xfc\xf3\xbc\x5e\x04\xec\x8d\x20\xfb\xec\x4f\xd7\xd1\xc0\x7d\xa6\x94\xea\x53\xb9\x23\x76\x08\xa0\x17\x64\x08\x43\x29\xc2\x40\x51\x28\x8a\xce\x2c\x23\x25\xd3\x40\xa5\xa9\x50\xa9\x22\x2c\x8b\xbc\x55\x8e\x1d\xf0\xfc\xf1\xbe\xaa\xb2\x77\x0b\xaf\x8b\xa3\xa3\x23\xfc\xcd\xdf\xfc\xcd\xff\x96\xf6\xdd\xe5\x74\xe8\xa6\xd1\x81\x0f\x95\x6b\xe7\xfd\x70\x0c\x65\xeb\x02\x9b\xcd\xa7\x0a\x64\x29\xf7\x86\xc9\xc3\x49\x2c\xf7\xd7\x17\xea\x92\xc8\x28\x24\xcb\x8a\x81\x4f\x05\x15\x8f\x4c\xdc\xce\x03\xaf\x2b\x38\x15\xcb\xd2\xc1\x99\x0b\x54\x2e\xa3\xe3\x61\x71\x74\x28\x05\xdf\xa8\xc1\xe4\x25\x92\x62\xe3\xfc\x34\xba\x36\x5c\x04\xe7\x0f\x56\x97\xbb\x28\x37\xa2\xb3\x8c\x74\xf5\xea\x0c\x4f\x86\xff\xbb\x05\xa1\xa9\x81\xfd\x0f\x68\xfa\x3f\xe3\xfe\xb7\xd5\xfb\xd7\xbe\xf6\x35\xaf\xdc\x3d\xf3\xcc\x33\xf8\xc2\x17\xbe\xa0\x01\x89\xcf\x28\x57\x02\x95\x51\xb3\x38\x3c\x3c\x94\xdf\xf8\xc6\x37\xbc\xa3\xff\x2c\xcb\x7e\x1e\x59\x3e\xcd\x54\xc8\x69\xe3\x3b\x6d\x47\xff\xf3\xf8\x46\x8f\x1b\xc7\x69\x99\x95\xff\x4e\x79\xea\x92\x8e\xa9\x57\xc6\x30\xcc\xe1\x00\x01\xd8\xe6\x03\x09\xf2\x4e\x3a\x01\x10\x2b\xa0\x3f\x89\xe5\xc9\x34\x9e\x3f\x7a\x7f\x63\xde\x23\x20\x0c\x24\x85\x51\x26\xe2\x38\xcd\x6d\x61\x32\xa1\x64\x26\x94\x94\x02\x69\x46\x2a\x5d\x06\x2a\xcd\x48\x25\x8a\xb0\x54\x65\x87\xcb\x3b\xe2\xb9\xb3\x72\xc8\xed\xa8\xf5\x8a\x9f\xca\x76\xf6\xdf\xf8\xc6\x37\xd0\x61\x73\xb5\xd3\xd4\x1d\x9f\x32\xd2\x75\x93\x16\x40\x4f\xd7\xcb\x1c\x25\x78\x99\x17\xc0\x8e\x1f\x9c\x1a\x66\x02\x61\x26\xcc\x71\x03\x2e\xc1\xc0\xeb\xd8\x77\x46\x98\x0b\x5c\xf4\x16\x06\x96\x71\x32\x6c\xd0\x82\x07\x0f\x1e\xe0\x9f\xfe\xe9\x9f\x7c\xe5\xfb\x6f\xd1\x65\x6d\xc0\xa5\x6d\x34\xd1\x44\x4f\x36\x09\xb0\xbb\x1c\x32\x65\x74\x58\x32\xee\x65\xe3\x51\x3f\xdd\x39\x3f\x89\x3e\x12\x65\x6a\xa0\x19\x96\x72\x3a\xa7\x02\x35\x8c\x7d\xac\xeb\xaa\xe4\x4b\x69\x79\xed\xe2\x1c\x0d\x50\xec\x79\xd2\x2a\x97\x42\x75\x37\x8c\x8a\xd1\x79\x11\x12\xfd\xe1\x3c\x78\x6a\x73\x1a\x5e\xde\x1d\x8a\xdb\xb3\x58\xce\x91\x0b\x82\x6f\x75\x87\x76\xbe\x69\xa1\x3a\xda\xb6\x89\x15\xf3\xbd\x77\x5d\x13\x00\xed\x32\xba\xf2\xe5\xa7\x49\xf9\xfb\xf2\xeb\xe6\xc3\xe7\x7c\x53\x4f\x4d\x65\x76\xdf\x9d\x66\xea\xca\x97\x9f\xb6\x7c\xf3\x77\xbe\x7c\xf8\xc2\x9c\xe6\x9b\x9c\xb6\x7e\x9a\x64\xc0\xc4\x5d\x80\x89\x4a\xbe\x6f\xdd\xba\x85\x07\x0f\x1e\xf8\xde\xd5\x39\x09\x00\x52\x4a\x6d\x94\xd7\xa6\xb0\x4e\xa3\xd0\x4e\x3b\x15\xf2\xb8\x4c\x48\x97\xfc\xb4\xc5\xdd\x65\x10\x70\x1a\xe6\xa2\x4b\xbe\x7d\xb2\xd2\xc5\x7f\x17\x77\x9a\x7c\x68\xff\x26\x0f\xf7\xee\xdd\xc3\xb7\xbe\xf5\x2d\xf9\xdb\xbf\xfd\xdb\x02\xb0\xec\x9f\x2a\x87\xf1\xe9\xfe\x40\xdb\x4e\x28\xa5\xf4\x66\x88\x73\x00\x7d\x05\x35\x27\xa2\x58\x01\xb1\x22\x84\x50\x08\xb3\x40\x89\x65\x90\x89\x69\x04\x41\x9a\xd1\x21\x93\xbe\x54\x40\x0a\xa8\x14\x79\xdc\xbc\xa3\x36\x2b\x85\x0a\x1b\x0e\x0e\x64\x74\x9a\x6e\x27\x6d\xca\xf5\xf5\xaf\x7f\x5d\x1e\x1c\x1c\x34\x1d\xe8\xd9\xf8\x8d\x5f\x7a\xe9\x25\x28\xa5\xe4\x2f\xff\xf2\x2f\xbb\xfe\xdc\x69\x23\x77\x39\x79\xcc\xf2\xaa\x99\x17\x03\x5a\x60\xce\x1a\xb3\xfe\xdc\x3e\xdb\x3a\x2b\xac\xa8\x6f\xf7\x48\x03\xeb\x9e\x9c\x23\x3a\x74\xfd\x02\xf9\x31\x07\xdf\xff\xfe\xf7\xeb\x8e\xdc\xf8\x79\x0c\x8a\x2b\x7e\xbb\x6c\x40\x27\x60\x5b\x02\x0b\xf6\x5b\x67\xf9\x5b\x89\x63\x67\x67\x07\x5b\x5b\x5b\x6a\x75\x75\x95\x8a\xb0\x7a\x75\x91\xd9\x88\x8e\x88\x02\x22\xea\x49\x42\x7c\x76\x1a\x6d\x9e\x9b\x44\xd7\x7a\xa9\x18\x72\xfe\x83\xef\x74\xa8\x41\x83\x8d\x1d\xec\x43\x16\x7d\xe4\x8b\x01\x3a\xf6\x0c\x51\x1e\x4a\x95\x20\xc9\xd8\xd4\xb0\xd9\x29\x77\xb3\x1e\x9d\x86\xbb\xf9\x51\x99\x0e\x09\x80\x54\x12\xa8\xbd\xd1\x4a\x7a\x7f\xdc\xcf\x46\xcc\xd0\x4b\x5b\xa6\xcb\xc2\xbb\xba\x70\xe1\x82\x1a\x8d\x46\x28\x56\x53\xb8\x16\xd8\x7c\xd5\x03\x9c\x67\xc2\x73\x0d\x8f\x7f\x9f\xe3\xab\x07\x7c\x69\xb8\xf1\xb9\x69\xd7\xad\x64\xa8\xb3\x0a\xf7\xc5\xc1\xf3\xd1\x16\xae\x29\xcd\xba\x3c\xf8\xc2\x77\xf1\xe7\x4b\x9f\xd7\x95\x2f\x3f\x4d\xf9\xf2\xc5\xed\x73\x6d\xf9\xf1\xf9\xaf\xf3\xd7\xa5\xac\x96\x7f\x29\xa5\x4a\x92\xe4\xd4\x7f\xcb\xe5\xd2\xcd\x83\xa8\xb9\xe6\xcf\x74\x83\x6d\xfa\xf6\x3e\xd7\x16\x77\x97\x38\xba\xc8\x79\x9b\xff\x2e\x7a\xd0\x1e\x0b\xb5\xe7\xd1\x97\x8f\xb6\xfa\x69\x6a\xb7\x3e\xff\x75\xef\xeb\xe2\xee\xea\xdf\xc4\x2f\xa5\x94\x93\xc9\x84\xf6\xf7\xf7\xd5\x87\x3f\xfc\x61\xbd\x52\xc6\x8d\x5b\xaf\x70\x53\x28\xf5\x61\x46\x44\x7a\x67\xe7\x0c\xf9\x4a\x1e\xbd\x8a\x25\xdf\x89\x9c\x30\x57\x50\x09\x88\x16\x20\x2c\x54\xfe\x37\x07\x61\x8a\xfc\x77\x96\x5f\xd3\x14\xc5\x26\x72\x05\xbb\xa2\x37\x94\xe3\x3b\xc0\x9a\x5d\x9e\x29\xdf\x38\x51\x4f\x0f\xe9\xd5\x6f\xfa\x4f\x7d\xf3\x9b\xdf\x94\xfb\xfb\xfb\x28\x8c\x5b\xf8\xb7\xac\x93\x9f\xca\xf3\x2c\xcb\xe8\xd1\xa3\x47\xc8\xb2\x4c\x3d\xf1\xc4\x13\x26\x8e\x02\xc0\x29\xd8\xba\x58\xa2\x5c\x85\xe7\xae\xda\xe3\x3b\x4f\x73\xc0\xa1\x37\x7e\xd4\xe5\xd2\x3b\xff\xea\xb2\xea\x72\x9b\x0d\xe5\x0a\x20\xa7\x77\xbf\x9e\x17\xc0\x91\xaf\x1e\x5a\xb2\x7c\x48\x00\xb8\x75\xeb\x96\xfc\xf1\x8f\x7f\x8c\xf1\x78\xec\x0e\x1c\xda\x64\xec\x71\xdb\xbf\x00\xa0\xba\x00\x17\x37\x03\x4d\x4a\xaf\x36\xe1\xd9\x6c\xa6\x3e\xfc\xe1\x0f\xd3\x70\x38\xcc\x09\x8f\x12\xb4\x68\xd6\xc1\xec\xa2\x0b\x42\xdc\x5f\x8a\xd5\xad\x71\x7c\x6d\xb0\x0c\xce\xe6\x4b\xe1\x14\xf4\x92\xe3\x92\x31\xa9\x4e\xe1\x94\x3b\xe9\xba\xcb\xa8\xb5\xd1\x2d\xb3\x4f\xa1\xf2\xbd\x0e\x6d\x31\x3b\xaa\x64\x72\x0c\x26\xb1\x41\x89\x7d\x06\x86\x1d\x59\x09\x7e\x14\x48\x0a\x35\x3e\x1a\xa4\xf7\x0e\x56\x97\xbb\xca\xde\xb0\x47\xef\xa4\x2b\x89\x48\xf5\xfb\x7d\xba\x7b\xf7\xae\x3a\x3c\x3c\xe4\x1f\xd2\x27\x08\xee\xb3\x3a\xc6\xa3\xae\x61\xb9\x00\x54\x7a\x9e\x2b\x27\x3e\x37\xce\xb6\xf8\x7d\x0a\xba\x49\xf9\xe9\xd1\x9a\xaf\xd1\xd7\xa5\xdb\x35\x0f\x4d\x61\xdc\x3c\xf8\x1a\x12\x7f\x5e\x57\x87\x5d\xbf\x55\x5d\x7e\xda\xd2\x6d\x2b\x83\x2f\xbd\xae\x71\xf8\xca\x50\x97\xff\xba\xfa\xf6\x39\xee\xd7\xe7\x8f\xcb\x5e\x9b\xac\x36\xc5\xed\x0b\x7b\x1a\x19\x3c\x0d\xa3\xe0\x96\xa7\xeb\x77\xd0\xae\xae\x53\x6b\xcb\x77\x97\x7a\xef\x02\xbe\x7c\xf1\xd5\xc5\x51\x07\x36\xbb\x94\x41\xb3\x70\x6a\x3c\x1e\xd3\xe1\xe1\xa1\xfa\xd0\x87\x3e\x54\x01\x2f\x7a\xa9\x7e\xe1\x5f\x2f\xcd\x37\x07\xf0\x16\x40\x66\x59\x00\x09\xdd\x49\xeb\x9d\x9a\xf5\xb5\xee\xa0\x67\x70\x3a\x69\x77\x65\x4c\x01\x58\x66\xec\x6f\x8a\xf2\x98\x0a\x0d\x04\x96\x7a\xe1\x88\xb2\x8f\x9d\x90\xdf\xff\xfe\xf7\xf9\x29\xe4\x6d\xf2\xed\xfa\x31\x60\x77\xb9\x5c\xca\xd1\x68\x44\xcb\xe5\x52\x5d\xba\x74\x89\x88\x48\xef\x30\xaf\xeb\x41\x6f\x1d\xa0\x60\xef\xd2\xab\x41\xcb\xb2\xa8\x2b\xbd\xdb\xb5\x06\x19\x1c\xb4\x98\xe3\x37\x0a\x56\x85\x97\x59\xd7\xcf\x8c\x88\xf4\x0a\xaa\x59\x11\x4f\x52\xfc\xf9\x00\x8b\x04\x80\x77\xde\x79\x47\xbe\xf4\xd2\x4b\x38\x3a\x3a\xd2\x8c\x9c\xdd\xe5\xd6\x97\x9d\x3b\xee\xbf\x4e\xa6\x2a\x75\xd9\xc5\xc6\x45\x47\xd2\x85\xc2\xac\xf3\x63\xf9\x65\xd3\x22\xbc\x22\xac\x03\xd7\x8e\x06\xe9\xde\xa4\x97\xed\x67\x53\xf5\x54\x90\x51\xac\xc3\x70\x98\x62\x41\x13\x0f\x68\xb0\xfd\xf3\x33\x1d\x9c\x5d\x14\x61\x87\xd3\x51\x95\x5b\x29\xb3\xfd\x60\x54\x09\x7a\x00\x58\x3b\x12\xe6\x64\x8d\x9d\x11\x05\x40\x28\x0c\x56\x93\xe0\xca\xb9\x49\xf4\xf4\xda\x3c\xbc\x39\x5a\x49\xf5\x81\x5a\x2e\xa5\xc7\xed\x0d\x78\x9d\xb5\x51\x70\x5d\xae\x85\x73\xed\x9b\x0a\x91\xa8\xa6\x59\xf7\x8d\xbb\xbe\xab\x03\x55\x3e\xd7\xf5\x5d\x53\x7c\xa7\xad\x97\xd3\xa6\xe3\xfb\x2e\x75\x34\xbd\xaf\x0e\x9b\x9e\xb5\xe5\xb5\xad\x0c\x6e\xdc\x6e\x5e\xf9\x77\xef\x12\xf7\x69\xf3\xea\x73\x75\x74\xb9\xfb\xae\x49\x36\xba\x3c\x6f\x6b\x23\x75\xed\xc9\x95\x7b\x9f\xf3\xe5\xad\x8b\x1e\xac\x7b\x7f\x9a\xb6\x5d\xe7\xf7\x34\x65\x73\xd3\xd6\xfe\xea\xf2\xd5\x54\x56\xa0\x5a\xae\x36\x19\x10\x69\x9a\xca\x5b\xb7\x6e\x89\x5e\xaf\x27\x3f\xfb\xd9\xcf\x82\xed\x65\xe2\x4e\x1d\xc9\x62\x00\xab\xed\x5c\xf4\xe9\xc9\xda\xa0\xd7\x18\xb0\xaa\x7c\xe3\xb5\xd0\x31\x24\xe7\x71\xca\x22\x3e\xab\x6f\x41\xc1\xa6\xa0\x5c\x21\xe4\xda\x6e\x58\x1b\xaa\x11\x91\x9c\x4c\x26\x78\xe9\xa5\x97\xda\xbe\x95\x5b\x5f\x3e\x3f\x56\x9d\x8d\xc7\x63\xbc\xf9\xe6\x9b\x98\x4e\xa7\x32\x8e\x63\x7c\xfa\xd3\x9f\xf6\xd5\x0b\xaf\x6f\x59\x94\x55\x1f\x94\x9a\x14\xef\xf8\x69\xee\xee\x9f\x04\x60\x4d\xc7\xb1\x78\xf9\xe1\xa6\x96\xbd\x69\x31\x5d\xc7\xeb\xcf\xe4\xfb\xed\xb7\xdf\x96\xaf\xbd\xf6\x1a\x0e\x0f\x0f\xbb\x96\xd7\xbd\x3e\x8d\xfc\x54\x9c\x8f\x71\xa9\x43\x45\x3c\xb1\xb6\x0e\xc8\x45\x5b\x04\x40\x7d\xf4\xa3\x1f\xa5\xf5\xf5\x75\x05\x40\x6f\xb0\x43\x00\xdc\x73\x8b\x7a\x00\x62\x49\x2a\xb8\x30\x89\x9e\xd8\x98\x87\x97\xe3\x8c\x86\xa4\xc8\x02\x0c\x65\x42\x6c\xb7\x40\xa0\x02\x60\xac\x33\x88\xc8\x09\xc3\xfc\x2a\x7e\xca\xa8\x52\x66\x79\xb5\x29\x46\x89\x5b\xf2\x18\x88\x2c\x46\xc6\x80\x17\x3e\x4f\x54\x04\x15\x45\x6c\xa9\x50\x87\x27\xfd\xf4\xde\xd1\x20\x3d\x52\xe5\xb9\x45\x9a\x79\xe1\x23\x0e\x35\x1e\x8f\x31\x99\x4c\x7c\x08\xb4\x89\xad\x68\x1a\x61\xf1\xb0\xbe\x11\x42\xdb\xc8\xeb\x34\xae\x6e\xd4\xf7\x38\x71\xb5\x95\xa9\x29\xed\xa6\x67\x8f\x9b\x87\xba\x78\x9a\x46\xd8\xff\xdd\xae\x6d\x64\xdf\xf4\xdd\x1f\x37\xee\xae\x7e\xeb\xf4\x49\x5b\x9e\xba\x8c\xbe\xea\x9c\x6f\x94\xd7\xf4\xdd\x7c\xe9\xb4\xc9\xb0\xc5\x2a\x34\xb8\x36\xa6\x88\xa7\xcd\xfd\x9b\x91\x79\x4d\x1c\x75\xf1\x71\xc6\x83\xe7\x93\x8f\x6a\xbb\x4c\x55\xe9\xb8\x24\xec\x32\xfb\x46\xc7\xbe\x38\xf8\x7b\x13\x66\x6f\x6f\x4f\x29\xa5\xe8\xdc\xb9\x73\x7c\x23\x36\xbd\x29\xa2\xee\x54\x15\xca\xe9\x23\xbe\x89\xa1\xde\xb1\x56\x6f\x02\x67\x1d\x06\x8a\x92\x69\xd0\x7f\xdc\xd8\x56\xb3\x0e\x0b\x14\x87\x83\x52\x79\x96\x56\xca\x7e\xf5\xf4\x7d\x5a\xe4\x43\x8e\x46\x23\xf9\xca\x2b\xaf\xa8\x1b\x37\x6e\x60\x6f\x6f\x8f\xd7\x07\xaf\x27\x57\x46\xda\x64\xd6\xc8\x65\x92\x24\xb4\xb7\xb7\x27\x0f\x0e\x0e\x48\x29\x65\x4d\x1d\xb1\xfa\xd0\xfd\x83\xd9\xec\x0d\x36\x18\x5b\xd6\xfc\x2d\x50\x18\xd7\xa2\x38\x57\x0c\x1e\x3b\x16\xc6\xd6\x68\xf0\xa2\xd9\x1c\x9e\x96\x02\x72\xa6\xe5\xb5\xd7\x5e\xc3\xfe\xfe\x3e\xcf\x5f\x5d\x5d\x34\xb5\xa9\xa6\x3a\x6a\x64\xaf\x7c\xc0\xa5\xa9\xb2\xdb\x84\xd6\xf7\x01\xcd\x6f\xbf\xdf\xa7\xf5\xf5\x75\xf4\x7a\xbd\x02\xb3\xe4\x07\x6d\x15\xb6\x2d\x02\xe5\x32\xe9\x50\x02\xf1\x5a\x12\xae\x9d\x9b\x46\x4f\xad\x2c\x83\x33\x02\x24\x48\xa3\x03\x30\x56\x84\x5d\xe7\xdb\x3f\x97\x4c\x4a\x0e\x74\x94\xb1\x5b\xd1\x3e\xf3\x93\x40\x35\xd0\x50\xc5\x86\x8a\x25\x38\x21\xb2\xcf\x42\x22\x82\x39\x3d\xd4\x30\x3f\x54\x18\xf1\x12\x63\x63\x4c\x9e\x98\xb1\x2d\x99\x13\x4e\x85\x22\x35\x9b\xf4\xe4\x83\x83\xd5\xe5\x03\x19\x98\xd3\x79\xf5\xe9\xa2\x59\x31\x72\x90\x67\xcf\x9e\xa5\xa3\xa3\x23\xb5\xbb\xbb\x6b\x66\x9b\x58\x3d\xfa\xe8\x64\x57\x49\xb9\x42\x51\x17\x86\x3f\xf3\x3d\x97\x2d\xfe\xa8\xe6\x8f\x7f\x02\xed\x7c\x69\xc3\x73\xed\xf3\xe3\xbe\x83\xf3\xbc\x4e\x69\xe8\x30\x12\xd5\xb8\x79\x59\xdc\x3a\x72\xf3\xd3\x36\x0d\xc1\x3b\x99\xb6\x72\xd7\xd5\x81\xaf\x6e\xbb\x86\xa9\x2b\x5f\xd3\x77\x6b\x2b\x23\x8f\xbb\xad\xdc\x3e\x70\xd0\xf4\xcc\x75\x4d\x32\x0b\xf8\xbf\xbb\x2f\x3e\x9d\x37\xb0\xe7\x75\x65\xee\x0a\x50\x9a\x5c\x9b\x3c\xd6\xb5\x41\x77\xe4\xa9\x65\x87\x3f\xf7\xe5\xa9\x4e\x16\xc8\xe3\x5f\xd5\x5c\xbb\x71\xfa\x1c\xff\x76\x6e\x9a\xae\x3c\xb8\xd7\x3e\x67\xc9\xd5\xce\xce\x8e\x8c\xa2\x88\x8e\x8e\x8e\x54\xaf\xd7\x43\xaf\xd7\xcb\x35\xb0\xbd\xf4\x5e\xa1\xd4\x8b\xba\x83\x36\xd3\x22\x28\x3b\x6b\x7d\xf8\x67\x1d\x70\x31\xf7\xcc\xd8\x77\x01\xdb\x2e\x84\x1f\x98\xa8\xff\x00\x40\x1e\x1f\x1f\xcb\xd7\x5f\x7f\x1d\xaf\xbf\xfe\xba\x0f\xb0\xf8\xca\xe7\xfb\x26\xbe\xfa\xa9\xd4\xa9\x94\x52\x3d\x78\xf0\x80\x06\x83\x81\xda\xdc\xdc\x54\xc5\xb9\x63\x0a\x80\x75\x70\x2a\x18\x88\x61\xe0\x42\xff\xf1\x03\x4b\xb9\x71\xed\x92\x95\x5b\xff\x9a\x3f\x6e\x7c\xab\xfb\x25\x36\x98\x96\x40\x0e\x58\x1e\x3e\x7c\xa8\x5e\x7b\xed\x35\x1c\x1c\x1c\xf0\xfa\x68\x02\x24\x4d\xba\xd9\xa7\x5b\x3a\xb5\xd1\x2e\x8c\x8b\x2f\x53\xbe\x8e\xce\xcd\x64\x25\xce\x87\x0f\x1f\xd2\xc5\x8b\x17\xb1\xb9\xb9\x49\x9a\x71\x51\xe5\x71\xe7\xfa\x2f\x06\x10\x01\x88\x42\x29\xe2\x73\x93\xe8\xea\xda\x22\x38\x27\x14\xc5\xa0\xd2\xa2\x85\xcc\xb1\xa1\xb6\x95\x0b\x71\x3f\xfc\x7f\x09\x20\x72\x80\x52\xa8\x0a\xb3\xad\x1d\xd9\x1a\xcf\x3d\x75\x1a\xd6\x56\xff\x79\x24\x39\x9b\x53\xf8\x53\x36\xa3\x83\x02\xbc\x94\x53\x52\x14\x12\x20\x17\xa1\x3c\x38\x5e\x49\xdf\x9f\xf4\xe4\x98\x1b\xe8\x22\x6f\x94\x32\x07\x44\xa4\x26\xcb\x3b\xa4\xb4\x00\x00\x20\x00\x49\x44\x41\x54\x93\x89\x3a\x3e\x3e\xd6\x47\x00\xb8\x4a\x08\x9e\x67\xbe\xf7\xa8\x09\xc3\x85\x46\xa1\x39\xbc\x1b\xd6\x77\x5f\xf7\xc7\x9d\x1b\xd6\xd7\xb1\xf9\xf2\xc1\xdf\xf9\x3a\x0a\x9f\x62\x77\xcb\x56\x77\x5d\x57\x47\x6e\x7e\x7c\x8d\xcf\x1d\x89\xba\x69\xa0\xc6\x5f\x97\x74\xda\xbe\xed\x69\xc3\xb4\x75\x62\x5d\x9f\xd5\xe5\xc7\xd7\xee\x4f\xa3\xcc\x79\x9d\xfa\x98\x86\x26\x7d\xe4\xa6\xe9\x93\x93\xba\xb2\x34\xc5\xdd\xa5\x63\xae\x2b\x8b\x2f\x6e\x77\xd0\xe7\x96\xd3\x8d\xdf\xa7\xcc\xeb\x64\xa1\x2b\xb0\x6b\x8a\x9b\x3b\xb7\xee\x7d\xdf\xaf\x4b\x1d\xba\xce\xc4\x75\xff\xfe\x7d\xb5\xbd\xbd\xad\x82\x20\xc0\x99\x33\x67\x54\x1c\xc7\x7c\x9a\x3c\xd3\x7b\x02\xb1\xce\xd3\x3d\x39\x9c\xaf\x88\xe1\xd7\x86\x65\x40\xd9\x41\xeb\xce\x5b\x33\x33\x1c\xfc\xf0\x81\xa3\xb1\x23\x79\xf4\xe8\x91\x7a\xf8\xf0\xa1\x7c\xef\xbd\xf7\x70\xfd\xfa\xf5\xae\x53\x19\xa7\xa9\x9f\xba\xef\x4e\xdb\xdb\xdb\x72\x63\x63\x83\x4e\x4e\x4e\x54\xbf\xdf\x57\x61\x18\xc2\xb5\x7f\x29\xfe\x34\xa8\xab\x4c\xff\xa0\x04\x63\x1c\x90\x68\xe0\x97\x39\x8c\xbf\x7b\x50\xa2\xb1\xa5\x91\x52\xaa\x3b\x77\xee\xc8\xa3\xa3\x23\xf5\x83\x1f\xfc\x00\xb7\x6e\xdd\x92\xb3\xd9\xcc\x95\x61\x9f\xce\x73\xcb\xeb\xd6\x85\x0f\x0c\xd7\xc9\x74\xa5\xfe\xba\x30\x2e\x75\x8d\xc7\x27\xcc\xdc\xf1\xc6\x61\xc2\x3d\xf3\xcc\x33\x74\xf6\xec\xd9\x82\xd8\xc8\x11\x40\x01\x60\xf4\x72\xae\x00\xf9\x7c\x66\x2c\x09\xc1\xe6\x2c\xba\x70\x66\x1e\x5e\x8a\x33\x1a\xf2\x6d\xf8\xf3\xb3\x85\xf4\x8a\x1e\x55\x9e\x1b\x84\x52\x2a\xf2\x6b\xcd\x7e\x70\x78\x03\x7b\xe7\x5c\xd2\x85\x60\xe0\xa6\x88\x24\x0f\x59\x05\x43\x0a\x25\x50\x81\x7b\xad\x4a\x40\xc3\x1d\x01\x24\x05\xc6\xe3\x5e\xf6\xfe\xfe\xea\x72\x5f\x41\x19\xe1\xca\xab\x40\xe9\x9d\x12\xd5\x85\x0b\x17\x68\xb9\x5c\xaa\x7b\xf7\xee\xb5\x29\xcf\x26\x96\xc2\xf5\xe7\x0a\xc2\x69\x46\x4d\xbe\x78\xba\xf8\xab\x1b\xed\xf2\xfb\x2e\x4c\x0a\x3c\xf7\xdc\xaf\xae\x70\xe9\x3c\xeb\x52\x1f\x5d\xea\xb6\x29\x1f\x2e\xfb\xc4\xdb\xc6\x69\x98\x9d\x2e\xdf\xa5\xae\x5e\x4f\x13\x77\x97\x8e\xae\x2d\x0f\x75\x2c\x9d\x0f\x34\xb8\xca\xda\x55\x6e\x60\x61\x9a\x64\x14\xa8\xff\x9e\xdc\x75\x91\xa7\x3a\x60\xe0\x4b\xa7\xed\x3b\x75\xe9\xb8\xdd\x70\x3e\x65\xed\xf3\xdf\x54\x5e\x5e\xaf\xbe\x32\xd7\x7d\xf7\xb6\xb8\xeb\x64\xc0\x65\x60\x7d\xfe\xda\xf4\x90\xe5\x1e\x3e\x7c\xa8\x82\x20\xa0\x38\x8e\x95\x94\x52\xf5\x7a\x3d\x00\xd0\x9d\xb4\x06\x30\xba\xb3\xe6\x1d\xb4\xd6\x9b\x19\xbb\xe6\x80\x44\x1b\xaf\xf2\xe7\xe6\xbc\xad\x22\x4e\xc3\x54\xb0\xce\x1a\xa3\xd1\x48\xbe\xf4\xd2\x4b\xea\xc5\x17\x5f\xc4\xee\xee\x2e\x2f\xb3\x76\xbe\xf2\xf9\x64\xda\xe7\xda\xfa\x4d\x05\x00\xb7\x6f\xdf\x56\xef\xbe\xfb\xae\x5a\x5b\x5b\x23\x6d\xbc\x5c\xec\x72\xad\xc3\x58\xd3\x6a\xc8\xa7\xdb\x32\x56\x2e\x05\x06\xc8\xd8\xaf\x66\x53\xac\x73\xc4\x58\xfd\xea\xb0\x2a\x4d\x53\xb9\xb3\xb3\xa3\xfe\xe5\x5f\xfe\x45\xbe\xfb\xee\xbb\xe4\x39\x7b\xa8\xad\x2d\xe8\xfc\xfa\xf4\x43\x2d\x28\x41\x89\x19\x7c\xfa\x45\x02\xdd\x97\x43\xbb\x54\xb4\x9b\x31\xb0\xf7\xbe\x8c\x99\x0c\x5c\xbe\x7c\x19\x1b\x1b\x1b\x7a\x7e\x53\x50\xbe\xc5\x3d\x15\x53\x45\x01\xe5\xcb\xa2\x63\x00\xa1\x22\x84\xc3\x45\x78\x66\x73\x1a\x5d\x1e\x2c\x83\xcd\x1c\x83\x94\x5b\x88\x1b\x30\x61\xed\x7a\xab\xd8\x91\xe7\x04\xd4\x82\x88\x62\x95\x91\xca\x41\x07\xdb\x2d\x34\xff\x65\xc0\x06\x60\xe0\xc8\x89\x43\xff\xd7\xc5\xa4\xf2\x25\x74\xe4\xc6\xce\x46\x21\x50\xc0\x72\x16\xcb\x9d\xdd\xe1\x72\x3b\x0b\xb1\x28\x84\x88\x53\xa2\xaa\xc8\x87\x7a\xf8\xf0\x21\x07\x2e\x75\x8a\xd8\x65\x18\x5c\x57\x27\x50\x26\x97\x1d\xc2\x72\xd7\x49\x21\xc1\xff\xfd\xf9\x73\x9e\xaf\xda\x06\x5c\x93\x07\x9f\x5f\x37\x9e\x36\xa5\xcf\x1b\x44\x93\x02\xef\x52\x5e\x85\x6a\x1e\x38\xdb\xe2\xeb\x04\x9b\xf2\xda\x56\x5f\x75\x79\xf3\x85\x71\x29\x6e\x77\x4a\xc2\x17\xde\x17\x87\xeb\xcf\x27\x77\x6d\xdf\xb2\x0d\x94\xc0\xf3\xbc\x4b\xfd\x77\x01\x37\x6d\x75\xd5\x25\xee\xba\x6f\xd9\x94\x8e\x8e\xc3\x37\x0d\xd4\xe4\x4e\xe3\xc7\x57\xef\xbe\x34\xbb\xb6\xf5\x3a\x36\xd4\xf7\xeb\x5e\xff\xbf\xed\xbd\x69\xaf\x26\xc9\x51\x30\x1a\x91\x55\xcf\x7a\xd6\x5e\x4e\x4f\xf7\xe9\x6d\x3c\xd3\x77\xd6\x9e\x19\x7b\x3c\x30\xf6\xd8\xf2\x80\x2d\x19\x18\xe0\x7d\xaf\x10\x12\xdf\x90\x10\x88\x3f\x05\x1f\xfc\xf5\x5a\x7c\x43\x08\x09\x24\x90\x41\x66\xd3\x35\x18\xdb\xaf\x19\x8f\xa6\xc7\x3d\xed\xde\xb7\xb3\x9f\xf3\xac\x15\xef\x87\xaa\xac\x8a\x8a\x27\x22\x2b\xeb\xe9\x86\xf7\x0a\xdd\x6c\x9d\x7e\xaa\xb2\x22\x23\x23\x33\x23\x23\x23\x22\x37\x8d\x5f\x82\xc6\xc9\x83\x07\x0f\xe8\xe3\x8f\x3f\xa6\xd1\x68\x84\x67\xcf\x9e\xa5\xf9\x7c\x4e\x9d\x4e\xc7\x5f\x0c\x5a\xf3\x30\x40\x35\xb8\x96\xbf\xcc\xeb\x52\x9b\xee\x80\x4a\x29\xa9\x2d\x32\xe5\x6b\x0b\x0b\x18\x22\x22\x38\x39\x39\xc9\x46\xa3\x11\xfd\xf3\x3f\xff\xb3\xbf\x7b\xc8\xaa\x2f\x2e\x3b\x64\x1d\xc4\x2a\x6d\x51\x72\xf4\xd6\xad\x5b\xf4\xf1\xc7\x1f\x53\xa7\xd3\xc1\xb5\xb5\x35\x9a\x4c\x26\x94\x65\x59\xc6\x94\x18\xbe\xc0\xb5\x5c\x2b\x49\xd5\xa5\xa9\x35\xe5\x8c\x4d\xbb\xd5\x14\x1f\xbf\x83\x69\x32\x99\x64\xc7\xc7\xc7\x34\x99\x4c\x68\x67\x67\x07\xfe\xe2\x2f\xfe\xc2\x1a\x5b\x78\x3b\x4b\xa5\xd6\x2a\xab\xe4\xa9\x90\x37\xc6\xf2\x68\x03\x40\xf8\x00\x3a\x4f\x0c\xaf\x18\x67\xc0\x80\x02\xa3\x31\x70\xf6\xfd\xef\x7f\x1f\x88\xc8\x5d\xbf\x7e\xdd\xc3\xd7\x56\x6f\x03\x3b\xd1\x6f\xee\x68\xb2\x33\x98\x3e\x38\xe8\xcd\x1f\x9f\x3a\x4e\xaf\xa4\xe8\x86\x5e\x21\x29\x15\x8c\x42\x01\xe1\xc3\x23\xe5\x9a\x48\xa9\x4a\x2c\x28\x1d\x39\x92\x45\xa5\x05\xbc\xb2\x53\x7e\x28\x5d\x29\xc8\xbd\x39\x54\x79\x71\x2a\x85\x07\xaa\x35\x33\x9e\x2e\xac\x3c\x33\x39\xa7\x63\xda\x9f\xb9\x73\x67\x0f\xbb\xaf\x5c\x38\xe8\xfe\xfb\xcf\x4f\x8f\x0e\x01\x61\x02\x8b\x2b\xc2\xbd\x9b\x94\xdf\x5d\x14\x6a\x97\xa6\x36\xb4\x42\xd3\x8a\xf8\x98\x85\xd8\x31\x79\x69\xf1\xb1\xb8\x65\xe7\x88\x0d\x16\x3c\xef\x64\x9a\x80\x6d\xaa\x93\x98\x78\x08\xc4\xb7\x29\x73\x0c\xbe\x36\x78\xda\xd6\x61\x28\xdf\x58\x3c\x9a\x80\xb3\x9e\x25\x6f\x6b\x38\xb4\x78\x0b\x4f\x13\x4d\x21\xbc\xc0\x70\x73\x78\x80\x70\x7e\x12\xa7\x95\x97\x8c\x8f\xf9\xf5\xa1\x89\x76\xad\x0e\xe5\x77\x8d\xd6\x36\xf0\xb2\x2e\xc0\x78\xe7\xf1\xb2\x0c\xb5\x3c\x3e\xfd\xf4\x53\xf8\xf4\xd3\x4f\xb3\x73\xe7\xce\xb9\xdf\xfe\xed\xdf\xce\x00\x00\x5c\xbe\xd0\xc3\x7b\xa2\xbd\x3c\xf4\xf2\xd8\x01\x2c\x1a\xa6\x52\xde\xb3\xdd\x34\xb5\xbc\xfd\x74\x94\x3f\xd1\xf9\x2f\xff\xf2\x2f\xfd\xda\x0d\x4e\xa7\x55\x47\x56\x1d\x6a\xbc\x21\xeb\xa0\xcd\x2f\x00\x00\xfc\xe0\x07\x3f\x80\x1f\xfc\xe0\x07\x19\x00\xb8\xcb\x97\x2f\xc3\xb7\xbf\xfd\xed\xf2\x5b\x92\x24\x7e\xa7\x51\x99\x7f\xb5\x84\x81\xfc\x38\x62\xdd\x33\x96\x11\x51\x79\x90\xde\x27\x9f\x7c\x02\xff\xf0\x0f\xff\xc0\x69\xb5\x82\xc6\x83\x4d\x7c\x15\x53\x57\xb2\xcf\xc9\x74\x39\x3f\x18\x44\x2d\x23\xe0\x9a\xd2\x97\x71\x1f\x7c\xf0\x81\x7b\xf3\xcd\x37\x1d\x1b\xac\xbb\x94\x1f\x6b\xdc\x87\xea\xde\xa2\x75\x22\xda\x5c\x1f\xa7\xdb\xef\xdc\x5d\xfd\xf0\xb5\x07\xc3\x6f\xac\x4e\xd2\x73\x5c\x25\xf3\x81\x4a\xad\x65\xd1\x4f\x5f\xc1\x2c\xfa\x49\xf9\x2f\x18\xe9\xa0\xe9\x1b\x43\x40\xda\x77\x11\xe6\x48\x93\xfd\xde\xfc\xe3\x4f\xce\x1d\xfd\x3f\xff\x72\x75\xff\xef\xe6\x0e\x76\x21\xbf\xbf\xc8\x9f\xda\xc8\x2d\x07\xf8\xe4\x93\x4f\xb2\xef\x7d\xef\x7b\x3e\x79\x8c\x00\x69\x12\x94\x5a\x08\x76\x1a\x25\xbf\x90\x90\xb6\xe8\xb4\x42\x2c\xfd\x31\x69\xda\xe6\xe3\xdf\x63\xea\x53\xcb\x67\x19\xa5\xce\x1a\xec\x42\x79\x72\x3a\x35\x9a\x43\x79\x6a\x83\x45\xcc\x60\xca\xd3\xc4\x2a\x1c\xf2\xbb\xf6\x1e\xa2\xd5\x8a\x7b\x1e\x4a\x6b\x8c\x30\x5d\x56\x71\x6d\x8b\xe3\x59\x60\xb4\xb0\x6c\xfd\x3c\x8f\x7a\x8d\x81\x5d\xaa\x5e\x3b\x9d\x8e\xfb\x83\x3f\xf8\x03\x4d\x69\xd4\x4e\x1b\xb7\x68\xf0\x69\x80\x3d\xd7\xf2\xfd\x93\x3f\xf9\x13\x30\x8c\xc3\xff\x2f\xd5\x8f\x0a\x93\x24\x89\xfb\xc3\x3f\xfc\xc3\x12\xbe\x50\x40\x32\xa6\xd8\xd5\xca\xa5\x28\x71\xee\xaf\xfe\xea\xaf\xb2\x9b\x37\x6f\x2e\xd3\x56\xcf\x52\x3f\xcb\xe2\x73\x00\x8b\xb7\x43\xfb\xf0\x2c\x4a\x8b\x95\xde\x8a\xf3\x1e\x05\xff\x57\xba\xfd\x10\x71\x36\x4a\xb3\xc3\xdd\xfe\xec\xfe\x71\x37\x7b\x3a\x9c\xd0\x59\x47\xe8\xb8\xa2\x00\x50\x9b\xa0\xa9\x9f\x60\xcb\x02\x8a\xdf\x3c\x7d\x7e\x03\x34\x77\xd8\x54\xdf\xd8\x7b\x91\x11\xbf\x0a\xa0\x54\x7a\x58\xda\x72\xb7\x92\xcc\xbc\x88\x07\x02\x70\x00\xdd\xe1\xd4\x6d\x6f\x1d\x76\x5f\x3f\xbf\xdf\xfd\xe9\x9d\xcd\xc9\x31\xb0\xb3\x09\xb0\xba\x9c\x8e\x7b\x5a\x64\xdd\x69\x5a\xab\x7c\x0f\xa5\xb1\x34\xdf\xa6\xb4\x56\xba\xd8\x77\x2d\xc4\xd2\xff\x9f\x95\x4f\xe8\xb9\xcd\xb7\xd8\xbc\xb5\xf2\x2d\x43\x5b\x53\xde\xa1\x7a\x6c\x6a\xe7\xb6\xf4\x3c\x6b\x1d\x3d\xab\xbc\x09\xe1\x6b\xf2\x40\xc4\xd0\x61\xf5\x9d\x58\x39\x27\xe3\x63\x60\xb4\xfc\xac\xb0\x6c\xfd\xb5\x4d\x17\x03\xaf\xd5\x77\x9b\xf2\x96\xf1\xd3\xe9\x14\xbe\xf3\x9d\xef\x94\x75\xfd\x9b\xbf\xf9\x9b\xb0\xb5\xb5\x05\x00\xfa\xf4\x7f\x0c\xfe\x9f\xff\xfc\xe7\xf0\xbd\xef\x7d\xaf\x16\xef\xbd\x0d\x4a\x3a\x8b\xbe\x26\x2f\x4c\x28\x2c\x5b\x3f\x2a\x6f\xcc\xe7\x73\xf8\xce\x77\xbe\x63\xc1\xc4\xf4\xc5\x6c\x36\xd3\x2e\xa7\x8e\x0a\xcf\xc2\x3f\x51\x0a\x8a\xf2\x9c\x01\xe8\x53\x45\x6d\xac\x2b\x9e\x26\x44\x8c\x96\xb6\x7c\xc7\xfa\xa1\x38\xb5\x7b\x14\x66\x09\x4d\x76\x07\xb3\x47\x7b\xfd\xd9\xc3\x53\xc7\xe9\x8b\x2e\xc3\x3e\x47\x1c\xbe\x09\xda\xfe\x58\xfa\x67\x6a\x6b\x59\xaa\xb3\x78\xd9\xc4\x50\xfe\x9d\xb9\x65\x16\xfa\x0c\x3f\xd5\xd7\x2b\x29\x2c\xe7\xfa\x3b\x42\x9a\xc1\xea\xc6\x49\xfa\xca\xf9\xfd\xde\x95\x3b\x9b\x93\xfb\x90\x2f\x46\x9e\x41\xa5\xb0\x00\x22\x3a\x44\xcc\x5e\x7c\xf1\x45\xc8\xb2\xcc\xfd\xfd\xdf\xff\x7d\x9b\x4e\xd1\x14\x62\xb5\xde\x65\x2d\x8f\xff\xee\xe1\xff\xaf\x8f\xff\x9c\x60\x29\x05\x6d\x07\x10\x0d\x4f\x50\x10\xb6\xc0\xad\x85\x90\x51\xd0\x06\xb7\x46\xd7\xb3\xe0\x7e\x1e\x7c\xda\x16\xc7\xb2\xf4\x69\xcf\xd9\x64\x32\x29\xe3\xff\xfa\xaf\xff\xda\x15\x6b\x23\x17\xf2\x58\x5b\x5b\x83\xdf\xf8\x8d\xdf\x00\x00\x80\x3f\xfb\xb3\x3f\x83\xfc\x34\xfe\xc5\x30\x99\x4c\x60\x32\x99\x2c\xab\x20\xb6\x29\x8f\x05\xd3\x54\xf6\x18\x9a\xb8\xf2\xe3\x8c\xf2\x34\x85\x67\x51\xbe\x9a\x70\x2c\xeb\x89\x89\x36\xd2\x34\xc5\x85\x0f\x54\x4d\xd6\x95\x89\xd8\xf8\x9e\x01\x80\xfb\xc9\x4f\x7e\x02\x69\x9a\xc2\x6b\xaf\xbd\x06\x00\xe5\x5c\x63\xc6\x7e\xfd\x21\x43\x33\xca\x2f\x5d\xdc\xdd\x1b\xcc\x1e\x8e\x53\xda\xef\x4c\xa0\x54\x5c\xb0\xfc\x8f\x79\x42\x6a\x4a\x85\xe9\x43\x51\x63\xa8\xf2\xa3\x54\xee\x14\x8f\xa6\x88\x5e\xb8\xdb\x08\xb8\xf6\x9f\x2b\x30\xd6\x14\x95\xff\xe0\x08\xba\xc3\x69\x72\xe5\x85\x83\xce\xeb\xa7\x8e\xd3\x4f\x76\x86\x33\x7f\xb1\x97\x3f\x31\xb2\x54\x18\x7a\xbd\x1e\xac\xac\xac\xf0\x36\x09\x29\x16\xda\x77\x2d\x34\x09\x6d\x99\x36\x24\x3c\xad\x69\x0e\x4b\x99\xd5\xe0\xfd\xbb\x45\xbb\xc4\xa7\x3d\x6b\xdf\x24\x3d\x31\x74\x5b\xcf\x4d\xf9\x48\xbc\xda\xb7\xa6\x7c\x9a\xe8\xd1\xf2\x54\x5d\xe9\x0d\x74\xc6\x94\x2f\x04\x67\xb5\x91\x05\xd7\x14\x62\x15\xe8\x58\x1c\x5a\x59\x63\x14\x94\xe7\x21\x88\x9f\x97\x12\xb3\x4c\x68\xf2\x88\x86\xe2\xdb\xd6\x43\x13\xdd\x6d\xdb\xaf\x91\x6e\xe5\x3e\x9c\xf2\xfd\xe0\xe0\xc0\xfd\xf9\x9f\xff\x39\x00\x80\x3f\xcd\xb5\x6d\x3b\xf0\x20\x79\xf8\x59\xea\xd5\xc2\x6d\xe1\x7b\x16\x1e\x0c\x8d\x11\xb1\xb4\x36\xa5\xe5\xf2\xe4\x59\xf8\x76\x19\xbe\x2f\xf3\xb6\xce\x71\xf1\x85\xe7\xdb\x91\xe4\xb3\xb5\x05\xaf\x91\xd8\xf1\x78\x4c\xa7\x4f\x9f\xc6\xed\xed\x6d\xf4\x01\x00\xfc\xce\x22\x87\xf9\xb9\x2e\xf9\x61\x74\x08\x29\x00\xa5\xc3\x49\xb2\x71\xfa\xa4\x73\x7e\x38\x71\x67\x6b\x53\x43\x82\x18\x60\x5f\xf8\x85\x89\x40\xb8\x30\x8d\x23\x1d\x27\x39\x8e\x7c\x61\xad\x5f\x9c\xeb\x17\xde\x02\x54\x4a\x0b\x15\x73\x3f\x95\x5e\x53\x51\x51\x2a\x2a\x62\xe7\x53\x99\x5f\x71\xf8\x0b\x12\x38\x40\x98\x1e\x75\xb3\xcf\x1e\xad\x4d\x1f\x41\xb5\xb5\x2f\x03\x80\xda\x29\x92\x69\x9a\x52\xbf\xdf\x87\xbb\x77\xef\xfa\xd5\xd6\x0e\x16\x77\x09\xc8\x38\x60\xef\x9e\xac\x0c\x16\xdb\xcb\x29\x69\x9c\x80\xe5\xb8\xb5\x15\xf6\xd6\xee\x03\x6d\x05\xb9\x45\xa3\xd6\x61\x64\x19\x43\xcf\x56\xbe\xa1\x9d\x01\xbc\x7c\x99\xf8\x66\x95\xc7\xca\x47\xe2\xb5\xfa\x85\x86\xdb\x3f\xf3\x3e\xa6\xd1\x63\xd5\xbf\xfc\xd6\x44\x67\x4c\xf9\x42\x34\x80\x91\xc6\x82\x6b\x0a\x5a\x1a\xb9\xb3\x4a\xf2\xa9\x46\x8b\x0f\x1c\x56\xf2\x70\x28\x9d\x5c\x22\x67\xc1\x3b\xb0\x69\xb2\xe8\x8b\xa1\x5b\x83\xb7\xe8\xe6\xf1\xb2\xef\x73\x19\xad\x95\x7f\x59\x9a\xac\xfa\x91\xf4\xf2\x1d\x67\x31\x7d\x2b\x14\x2c\x18\xde\x57\xfc\x69\xe3\x74\x78\x78\x18\xe2\x77\xad\xce\x42\x74\x49\xfe\xab\xe5\xa9\xa4\xb3\xf0\xb7\x29\x73\x13\x0f\x3a\xf1\xde\xd4\xf7\x42\xed\x64\xc9\x2f\x2d\xad\x26\x4f\x62\x70\x58\x79\x5a\xfd\x2b\x94\xae\xcc\x5b\xb3\xc8\xb9\xd5\x62\x59\xf3\x99\x88\xb3\x32\x93\xbf\x35\x78\xbf\x0a\xba\x58\xd9\x2c\xf1\x96\x27\xff\x4d\x13\x1a\xed\x0f\x66\x8f\xf7\xfa\xb3\x87\x33\x47\x23\x5e\x52\xb9\xb0\xb6\x0c\x04\x90\x9f\x5a\xcb\x01\x03\xf5\x53\xec\x42\xca\x47\x8f\xfa\x8a\x18\x76\x44\x4c\x11\x8b\x35\x67\xcc\xe2\xc4\x92\xf0\xc2\x40\x31\xa5\x55\x20\x43\x00\x70\x04\xfd\xd5\x49\xf2\xd2\x85\xfd\xee\xab\xc3\x89\x5b\x45\xc0\x2e\x11\x75\xa1\xd8\x61\x54\xdc\xc3\xe1\x00\xc0\x0d\x87\x43\x77\xf9\xf2\x65\x9f\x7d\x8c\xa5\x13\x6a\x57\x0e\xa7\xc5\xfb\x38\xcb\x9a\x96\xb8\xb5\xbc\x9c\x02\x2b\x71\x3a\x01\xab\x59\x20\x4e\x81\x0b\xe5\x2b\xe3\xad\xba\x90\xbc\xa9\x79\x62\x42\xf0\xa1\x60\xe5\x69\xd1\xc7\xd3\x58\x1e\x83\xa6\xe7\xd8\xef\x5a\xbc\x55\xbf\x19\xe8\xe5\x0e\xf1\x40\x13\x7f\x34\xd5\x5f\xe8\xbb\xe6\xe5\xb1\x9e\x63\xdb\x93\xbf\x87\xac\x6a\x99\x4f\xc8\xf3\x64\x85\x58\x7e\x95\xcf\x16\x1d\x21\x0f\x40\xac\x35\xdc\xd4\x3f\xe4\xb3\xcc\xc3\x82\x91\xb4\xb5\xe1\xe1\x10\x4c\xa8\x6f\x85\xe0\xb4\xba\x6c\x92\xa1\x5a\xb0\x3c\x21\xda\xf7\x98\x3e\xec\xdf\x2d\x1c\x5a\x3e\x4d\xde\x43\x2d\x8f\x36\xa1\xa9\x1f\x3d\x0b\xaf\x37\xc1\x47\xf7\xe7\xb6\xb7\x43\x6b\x15\x26\xb5\x01\xa9\x71\x6b\x1a\x1b\x38\xe7\xb0\xdf\xef\xd3\xc6\xc6\x86\xb7\x0c\x1c\xe4\xbe\x08\x7f\x63\x74\x07\x72\xaf\x4b\x87\x00\x3a\x8e\xb0\xbb\x36\x4e\x4f\x9d\x3a\xe9\x5c\xe8\xce\xdd\x4a\xee\xd5\x80\xd2\xa3\xb2\xb8\x92\x05\xeb\x5b\x9b\xa1\xbe\x88\x77\x11\xdc\xaf\x6d\xa9\x54\x17\x7e\x13\x34\x00\x94\xe7\xc3\x14\xe0\xb5\x6d\xd4\x8b\xb9\x2f\x3e\x81\x4f\x93\xcf\x39\x21\x12\x76\x11\xf0\xe4\xe9\xca\xec\x67\x07\xfd\xd9\x11\xb8\xf2\x0a\xf7\x8c\x1f\x48\x57\x3c\xd3\x7c\x3e\xf7\x77\x65\x70\xed\xdf\x07\x5e\xbf\x9a\x96\x2d\xad\x01\xcd\xab\x66\xb5\xb5\xff\x26\x3d\x3e\x3c\x5f\x1e\x34\x4b\x5c\xc2\x86\xe8\x5d\xd0\xb0\x15\x7c\x56\xf9\x24\x8c\x86\x5b\xf2\xa6\x46\xa3\x56\xc6\x58\x0b\x31\x64\x8d\xf3\x6f\x08\xf5\x72\x6a\x69\xda\x58\xe7\x96\x67\xc0\x82\xe1\xef\xa1\xf6\x92\x78\x2d\xab\x33\xb6\xcd\x7d\xf0\x38\xac\xb6\xd3\xe0\x42\xd6\xbb\x55\x5e\x99\x4e\xeb\x3b\xa1\xfe\xa2\x59\xc1\xd2\x02\x6e\xf2\x3e\x5b\xdf\xad\x3e\xa7\xd1\xa3\xf5\x49\xfe\x2c\xcb\xcf\xfb\xb6\x86\x53\x2b\xb7\x84\x6b\xe2\x39\x9e\x8f\x05\x13\x83\x2f\xb6\x8d\x65\x3e\xb2\x3d\x24\x9c\x35\x6e\xf1\x3c\x2d\x7a\x39\x4d\x3c\xbe\x49\x4e\x5a\xf8\xfc\xb3\xec\x3b\x96\x67\xcc\x6a\x4b\xad\xde\x3c\x0c\x1f\x7b\x79\x9c\x35\x5e\x48\x7c\x4d\x6d\xac\x95\xbd\x2d\x0e\x09\xd3\x54\xaf\x3e\xae\x2c\x9b\x35\x55\x64\x15\x34\x54\x69\x1c\xb1\x35\x8d\x54\x0e\x94\x07\x07\x07\x98\xa6\x29\x5c\xb9\x72\x85\xcd\x16\x81\x7f\x70\x7e\x97\x0d\x00\x74\xf2\xe9\x22\xe8\xf4\x67\x6e\xed\xf4\x49\xba\x35\x9c\x24\x67\xb1\x98\x6f\xc9\x6b\x83\x4d\x1d\x51\xa1\x70\x14\x9a\x0d\xa1\xa1\xae\x50\xbd\xa6\xaa\x7b\x90\xf4\x75\x30\x39\x75\x55\x8c\x3f\xf6\xbf\xba\x94\xb1\xba\x24\xc0\x5f\x08\xe9\x51\xd5\x76\x1b\x15\x77\x1c\x15\x38\x5d\x92\x61\xe7\xa4\x9b\xdd\x78\xbc\x3a\x7d\x38\x75\x34\x01\xac\x0e\x46\x2a\xd6\xfb\x10\x22\x42\xb7\xdb\x85\x33\x67\xce\xd0\x8f\x7f\xfc\x63\x62\x64\xc9\xb6\x40\xa8\x93\x2c\x19\x1f\x45\x5a\xee\x16\x0a\x31\xde\x32\x03\x78\x53\x08\x29\x3f\xcb\xe0\x8f\xed\x88\x16\xff\x5a\xf8\x96\x0d\xa1\xf4\xcf\x52\xee\x10\xcd\x21\xe5\x73\x59\x9c\x56\x78\x1e\x3c\xa0\xd5\x43\x48\xd9\x6a\xca\x33\xd4\x96\x4d\xca\xb6\x0c\x52\x59\xd1\x06\x48\x60\x71\x1a\x4e\x99\x67\x48\xd9\x88\x2d\x9b\x06\x1f\xa2\x0d\x8c\x6f\x21\x5a\xdb\x86\x26\xa5\x2d\x26\xcf\x65\x65\xcb\xb2\x3c\x01\xa0\x2b\x0c\xb1\x0a\xb9\x86\xbb\xc9\x60\xb4\xd2\x35\x0d\xfa\x21\x63\xcb\x52\xd8\x78\x1c\x9f\x42\x08\xf1\x51\x28\x58\x8a\x8f\x46\x13\x0f\x4d\xfd\x2e\xa6\x7e\x7c\x5c\x19\xdf\xb4\x38\x97\x23\x6f\x5a\xe0\x63\xb9\xfa\x43\x30\xd2\x85\xc7\xa7\x8a\x26\xfc\x6f\x92\x64\xc7\x7b\x83\xd9\x83\x9d\xc1\xec\xfe\xe9\xa3\xce\x4b\xdd\x0c\x87\xd5\x2d\xcf\xb9\xd2\x41\x20\xbc\x24\xa8\xad\x86\x29\xde\xb0\x4c\xad\x4f\xf7\x10\x00\x30\x18\x1f\xaa\x83\xe8\xea\x17\x2e\xfa\xc4\xe8\x77\x17\xb1\x5c\xbd\x12\xa5\xec\xd3\x76\xdd\x99\xdb\xde\xde\xeb\x7e\xe9\xd6\xa9\xce\x67\x93\xb5\xc9\xf1\xac\x50\x5e\x8a\x2b\x10\xf8\xa2\x65\x48\x92\x04\x2e\x5d\xba\xe4\x6e\xdf\xbe\x2d\xdd\x85\xdc\x83\xc2\x9f\x65\x08\xa5\xd1\xe0\x64\xfb\xf0\x34\x9a\x46\x1c\x5a\xd0\x26\xe1\x2c\x5a\x2c\xbc\x16\x9e\x10\x8f\x49\x38\x10\x69\x42\x96\x98\x95\xc6\x0a\xa1\x34\x4d\x65\x68\x0a\xa1\x36\xe5\x21\xc6\x95\x1d\xaa\x87\x26\x7a\x39\x3e\xab\x8f\x87\x42\x4c\x3d\x34\x7d\x8f\xc1\xa1\x3d\x37\xb5\xb5\x0c\xda\xf4\x4b\x08\xbe\x09\x9f\xc5\xa7\xcb\xd2\x15\xd3\x2f\x2c\x78\xad\x9d\x2d\x7e\x8d\x79\x6e\x9a\xce\x8a\xad\x63\x2b\xb4\xc1\x09\xca\xf7\x18\xba\x9b\xea\xc1\xc2\xef\x4e\x9f\x3e\x0d\xc3\xe1\x50\xa3\x55\x8d\x7b\xfa\xf4\x29\x1c\x1f\x1f\xcb\xfc\x43\x79\xc4\xb6\x89\x15\xa4\x3c\x8f\xc9\x33\x84\x63\x59\x3a\x34\x98\x18\x3d\x63\x21\x3e\x15\x1f\x39\xb2\x58\x61\x22\x3b\x48\x88\x80\x5a\x18\x8d\x46\x70\x70\x70\x90\xad\xaf\xaf\x3b\x00\xf0\x07\xe3\x64\x00\xb5\x53\x74\x67\x00\x30\xcb\x1c\x8c\x0e\x7a\xf3\xdd\x27\x2b\xd3\xbb\xdb\x7b\xbd\xdd\xce\x08\x87\xa5\xc2\x80\x6c\x51\x2c\x40\xe9\x01\xa9\xd4\xbc\xc2\x0b\x82\xdc\xfb\x51\x3f\x39\xb7\x9c\x2a\xaa\xe9\x37\x8b\xbe\x1a\x8e\xbf\x8c\x60\xd3\x46\x25\x5c\x81\xbb\x52\x82\x16\x4f\xf0\x45\x40\x70\x40\xdd\x53\xc7\x9d\x77\x2f\xee\xf6\x7e\xb0\x3b\x98\x3d\x3e\xea\xce\x8f\x29\x5f\xe7\x92\x16\x87\xd1\xf9\x6b\x11\xb2\x7e\xbf\xef\x7e\xfd\xd7\x7f\x3d\xfb\xd3\x3f\xfd\x53\x59\xcf\xa1\x8e\x68\x85\x26\xc1\xe9\xbf\x35\x29\x40\x16\x3e\x8b\x1f\x42\x02\x44\x4b\x63\xd1\x17\xc2\x27\xe1\x9a\x94\x9b\x26\xdc\x16\x9e\x98\x34\xa1\xfc\x62\x3b\x7d\x53\x9d\x36\xa5\xd1\x06\x28\x8d\xae\x98\x3a\x8d\x55\x68\x42\x34\xc9\x74\xcb\x28\x33\x21\xdc\xda\xb3\x65\x8c\x59\xed\x6a\x0d\xea\x1a\x4c\x08\xb7\x16\x9a\x04\xfe\xb3\x0c\x46\x56\x9d\x71\x3a\x63\xea\x5b\x83\x8d\xed\x43\x6d\x06\x33\x0e\x17\x33\x68\x4a\xbc\x6d\xea\x4a\x3e\x6b\x34\x58\xf9\x96\xdf\xce\x9c\x39\xc3\xe9\x80\xf7\xde\x7b\x0f\xae\x5e\xbd\x1a\x7b\x28\x5e\xf6\x2f\xff\xf2\x2f\xf0\x8b\x5f\xfc\xa2\x4c\x3f\x99\x4c\xe0\xe0\xe0\x20\x56\xb1\x92\x74\x69\x65\x68\x52\x52\x83\xf4\x19\xf1\x16\x3f\x34\xf1\xba\x85\xdb\xaa\xef\x28\x99\x93\x06\x3e\x36\x75\xd2\xd8\x81\x4f\x86\x52\xc0\xdd\xbc\x79\x33\x23\x22\xf7\x6b\xbf\xf6\x6b\x32\xcd\x0c\xa0\xbc\x83\x62\x52\x6c\x15\x9e\x8d\xd3\xec\xf8\xe9\x70\xfa\xf0\xa0\x3f\xbb\xbf\x36\x4e\xb6\xa5\x37\x85\xfc\x8d\xd1\x5e\x69\x29\x15\x92\x4a\x83\x28\xa7\x8e\xb8\x07\xa4\x88\xab\xcd\xa1\x60\x0d\x75\x5d\x11\x11\xeb\x56\x72\x14\xd2\x33\x53\x4b\x5e\x28\x44\xc8\xfc\x3e\xa5\x06\x05\x83\xa9\x7b\xf1\xd2\x6e\xff\x4b\x77\x36\xc6\xb7\x46\x69\x76\x58\x78\x5d\x4a\xe5\xa5\x38\xd3\xa5\x3c\x90\x6e\x30\x18\xb8\x93\x93\x13\x5f\x57\x21\xaf\x00\xff\x16\x1a\xb0\xda\x5a\x58\x6d\x3d\x09\x21\xe5\x21\x56\x08\xc5\x7e\x8b\xb5\xb6\x9f\xc5\x8a\x6f\x03\x17\x53\x6f\x96\xb0\x69\xca\x77\x99\xef\x6d\xdb\xba\x29\xaf\x18\x65\x27\x26\xbd\xe4\xcd\x26\x21\x17\xa2\x39\x46\xf8\x3d\x6b\xb9\x3d\x8e\x90\x52\x1c\x33\x08\x69\xf9\x34\x29\x4a\x92\x06\x2b\xb4\xe9\x17\xcf\xab\xbe\x35\xbe\x6e\xc2\x11\xe2\xa1\x10\xff\x2e\x43\xb7\x15\x6f\xca\x26\xe7\x1c\xf4\x7a\xbd\xb2\x1c\xbf\xf3\x3b\xbf\x03\xc5\x0e\xd8\x5a\xe0\xd7\x10\x18\x4a\x4c\x06\x00\xee\x97\x7e\xe9\x97\xe0\x97\x7f\xf9\x97\xcb\xc8\x3b\x77\xee\x64\x7f\xf3\x37\x7f\x53\xe2\x2b\x64\x7b\x28\x58\x72\x2d\x24\x93\x63\xe5\x75\x93\xf2\x18\x93\xae\x6d\x7d\xcb\x71\x2a\x94\x0e\x00\xc2\x6b\x5c\xe4\xbc\x73\x26\x7e\x43\xf3\x55\xa1\x39\xf8\x1a\xd1\x9b\x9b\x9b\x78\xed\xda\x35\xbe\x80\xc8\xc3\xf9\x2b\x01\x52\x44\xec\x00\x40\x3a\x47\x48\x10\xb0\xb3\x3e\x4a\x36\x4f\x9f\x74\x2e\x26\x19\x76\xcb\xb5\x26\xe5\xda\x93\xfc\x19\xfd\xe2\x5c\x80\x9a\x02\x93\xcf\xda\x88\x4b\x1a\xa1\x3a\x78\x4e\x4e\xf3\xf0\xfb\x87\x00\x74\x86\x24\x89\x03\x84\x67\xa6\x28\x59\x7d\x1a\x0a\xca\x35\x35\x0e\x30\x49\xf3\xb5\x2e\x37\x77\x87\xb3\x47\x93\x94\xc6\x80\xb5\xdb\x4f\x09\x20\xdf\x22\x8d\x88\xf8\xce\x3b\xef\xe0\x4f\x7e\xf2\x13\x9a\xcf\xe7\x72\x7e\x5d\x9b\x73\xe5\x0d\x5e\x73\x4c\x89\xf8\x65\x9e\x43\x6b\x0a\x64\xd0\x78\x4a\xf2\x0a\x9f\x7f\xcd\x14\x38\x8b\xef\xac\xb5\x02\xa1\xb9\xd7\x50\x5e\x5a\x7a\x8d\xf6\x26\x38\xeb\x5b\x53\xfd\xc8\x45\x6c\x5a\xb9\x63\xd7\x04\x68\xe9\x62\xeb\x3e\x34\xaf\x1d\x6a\x0b\x2b\xf0\xb5\x22\x52\xce\x48\xde\xe4\xf8\x25\x1c\x18\xf1\x5a\xb9\x62\x64\x95\x7f\xd6\xd6\xb2\x84\x84\xb3\x25\xeb\xe4\x37\x8b\x06\x59\x06\xab\x9c\x1e\x87\x8f\xd7\x64\xb4\xcc\x5b\xe2\xd0\xea\xc7\x19\xcf\xb1\xed\x10\xaa\x6f\xfe\xcd\xaa\x63\xc9\x0f\xfe\x17\x8c\xe7\x4c\xa1\x4b\x2b\xaf\x1c\xe8\x62\xca\xa3\xd5\x05\x02\x00\x6e\x6f\x6f\xc3\xef\xfe\xee\xef\xba\x77\xde\x79\x07\xdf\x79\xe7\x9d\x72\x41\x26\x54\xed\x80\x90\x8f\xa5\xe5\x3b\xe6\x3b\x2a\xca\xa3\x3e\xd8\x45\xc2\xe0\xbf\xfb\xfc\xd7\xd6\xd6\xd0\xe3\x7e\xeb\xad\xb7\xe8\x5f\xff\xf5\x5f\xf9\x78\x18\x92\x99\x21\xb9\xa0\xf1\xb7\xc5\x03\x00\xf5\x3a\xb6\x70\xcb\xf8\x98\xfa\xb6\xfa\xab\x6c\x07\xa9\xc8\x70\xbe\x90\x78\xcc\x35\x2e\x1c\x81\x8c\xf3\xef\x4e\x79\x0f\x69\xff\x1a\xfe\x32\x4e\x28\x04\x19\x88\x13\x74\x01\x60\x02\x08\x93\x93\xce\x7c\xff\xe1\xda\xf4\xf6\xa5\xbd\xd9\xfd\x33\xf3\xee\x35\x00\x5f\x22\xac\x8e\xdf\x5f\x38\xb0\x45\x5f\xa7\x02\x55\x62\x50\xa2\x98\x62\xc3\xa6\x77\xc4\xb4\x14\x5b\xf1\x52\xcf\x12\x20\xbf\xec\x11\x44\x8d\x17\x89\xaa\x8d\xda\x79\xc4\x60\xea\x5e\xba\xba\xd3\xff\xa5\x7b\xeb\xe3\x5b\x27\x9d\xec\x70\x96\xd0\x04\xf2\xf6\xf1\x6d\xc4\xeb\x38\xa6\x9e\x7d\x9a\x98\xb8\xff\x8a\xd0\xc6\x52\xb4\x2c\xaa\xd8\x34\x6d\x42\x2c\xfe\xe7\x91\xd7\xb2\x74\x3c\xef\xfc\x96\xa9\xfb\x36\x38\x96\xc5\xdd\xb6\xdd\x63\xea\x29\x26\xad\x66\x05\xc6\xd0\xf4\x3c\xbc\x22\xb1\x70\x4d\x9e\x0c\x2d\xb4\xf1\x42\x3d\x4b\x9f\x6b\xc2\x2d\x2d\x6d\x39\x76\xc8\x5f\xeb\xbb\x65\xb1\xcb\x7c\x9e\x55\xb6\x64\x00\x00\x6f\xbd\xf5\x16\x7c\xf5\xab\x5f\x75\xb0\x38\x3e\xb9\xc0\xaf\xa7\x53\x5e\x7a\x58\xd6\x15\x7b\xce\xc4\x3b\x20\x22\xfc\xf1\x1f\xff\xb1\x03\x80\xec\xbb\xdf\xfd\x2e\xec\xee\xee\x5a\xb4\x97\xe9\x95\xf8\x90\x57\x6a\x19\x1e\x08\xd1\xd0\x84\x73\x99\xbc\x1a\xe9\xb0\xb6\x43\x4b\x6d\xd9\xc7\x69\xd6\x7b\xc6\xde\x43\x41\x73\xf9\xd1\xc1\xc1\x01\x3e\x78\xf0\x00\xae\x5d\xbb\xc6\xb5\x50\x2c\xbe\x27\x44\x94\x94\xbb\x8b\x00\x52\x42\x4a\x11\xb0\x7f\xfa\xb8\x73\x66\x63\x94\x5e\x74\x50\xb9\xec\x4a\x97\x0d\xf3\x6e\x54\xca\x45\x45\x72\xed\x5b\xe9\xf9\xa8\x9b\x00\xfa\x4c\x65\x0e\x21\xa7\x95\x16\x26\x90\x8a\x8f\x95\xe2\x53\xa7\xad\x1e\x57\xa6\x4a\xd2\x0c\xbb\xa3\x0e\xfd\x62\xaf\x3f\x7b\x3c\x4a\xb3\x13\x02\xf2\xd7\x94\x97\x07\xd3\x41\xde\x89\xe8\xd5\x57\x5f\x85\xcf\x3f\xff\x1c\xc7\xe3\xb1\xb4\x3a\x42\xd6\x18\x0f\x21\x2b\x70\x19\x38\x99\xb7\x45\x87\xc4\x17\x4b\xbb\xfc\x26\x2d\xae\xa6\xfc\x62\xeb\x45\xcb\xd7\x4a\xa3\x59\x7d\x31\xe9\x42\x30\xff\x19\xed\x12\x13\x64\xdb\x59\x6d\x62\x59\xe9\x31\x74\xb6\xe5\xa5\x65\xd2\xc5\xa4\xb5\xbe\xb7\x7d\xd6\xf8\x38\xc6\x13\x62\x59\xfd\x6d\x82\xd5\x87\xa4\x97\xc5\x87\x98\xbe\xb8\x2c\xad\x9a\xd7\x28\x94\x4e\xa3\x15\x22\xbe\x6b\x7c\x68\x79\xac\x9a\xd2\xc9\x50\xc6\x7f\xf0\xc1\x07\xee\xc3\x0f\x3f\xc4\x4b\x97\x2e\x41\x92\x24\xdc\x5b\xe2\x3d\x2b\xde\xbb\xe2\x0f\x4a\x75\x90\xdf\x37\xe7\x10\xb1\x53\x8c\x59\xae\x78\x97\xf0\x12\x87\xf7\xc8\x38\x44\xe4\xca\x11\xbe\xfc\xf2\xcb\xf4\xd6\x5b\x6f\xe1\xde\xde\x1e\xee\xed\xed\x59\x65\x6b\xe2\xc1\x98\x36\xb6\xbe\x69\x7c\x10\xea\x5b\x6d\xfa\x5a\x13\x0d\x41\x5a\xe5\xe2\x5c\x39\x1d\xd4\x64\xe5\x87\x3c\x2d\x21\xad\xaf\x7c\xcf\xb2\x2c\x1b\x8d\x46\x5c\x3b\xe5\x5e\x9e\xac\xb8\xc3\xa7\xdc\x5d\x34\x47\x18\x1d\x76\xe7\x3b\x4f\x56\xa6\xb7\xb7\xf7\x7b\xfb\x83\x49\x72\xba\x54\x12\xa8\x52\x46\x74\xc5\xc3\x2b\x18\x5e\x01\x29\xdd\x1f\xd5\x76\x65\x2a\xfc\x27\x35\x2f\x8d\x3f\x85\x17\xfd\xab\x3f\x58\xb7\x76\x9e\x0b\x00\xd4\xce\x96\x29\x53\xd3\x82\xd3\xa7\xf4\xd1\x50\x91\x00\x11\xa1\x37\xc3\xed\xed\xbd\xee\x97\xee\xad\x8f\x6f\x1e\xf6\xe6\xbb\x53\x57\x79\x5d\xfc\x99\x2e\x50\x68\xf2\x83\xc1\x00\x84\xe6\x6e\xd5\xb3\x15\x42\xd6\x12\x88\x6f\xcb\x78\xd3\x62\x78\x22\x26\x8d\xf5\x4d\xb3\xd4\x42\xe9\x9e\x87\x47\xa6\x0d\xee\xd8\xfa\x6a\xea\x27\xcb\xd0\xb5\x4c\x78\x6e\xd6\x10\xd8\x96\xb1\xc5\x73\x1a\x9f\xb5\xcd\xc7\xa2\x31\x04\x17\x4b\x9f\xf5\x1c\xf2\x00\xc4\xb6\x6b\x53\x3b\x36\x79\x4d\x62\xd3\x3e\x0b\x8f\x7a\x5c\x31\xb8\x9b\xfa\x5b\x4c\x79\x38\x3f\x58\x38\x65\x5c\xdb\x36\x5e\x80\xf9\xd6\xb7\xbe\xe5\x36\x37\x37\x61\x75\x75\xd5\xaf\x69\x71\x00\x00\x85\x12\xe2\xd7\xb5\x98\x7f\x09\xa1\xeb\xce\x9c\x4b\x33\x74\x5e\x32\x67\x0e\xb2\xb9\x23\xc8\x80\xb2\x69\x4a\x19\x61\x39\x96\xf2\x31\xb5\xbc\xaf\x8f\xc9\xf9\xac\xdf\xef\x3b\x00\x80\x0f\x3e\xf8\x20\x4b\xd3\x14\x6e\xdc\xb8\xa1\xd1\xad\xb5\x43\xdb\x3a\xb1\xf0\x35\xc1\x5b\x7d\x21\xb6\x1f\xcb\x36\x8e\xce\x9b\x7b\x5c\xa4\x96\xcb\xe7\x7a\x43\x56\xab\x36\x47\x69\x59\x1e\xaa\x46\xb6\xb2\xb2\x02\xaf\xbf\xfe\x3a\x77\x8e\x2c\x78\x5e\x8a\xbf\xe2\x0a\x00\x48\x3b\x73\x37\x38\x7b\xd4\x3d\xbf\x32\x71\x5b\xd5\xee\xa2\x45\x05\x01\x01\xaa\xdb\x3f\xb1\x52\x5d\xca\x88\x92\xd2\x6a\x3d\x0a\x0a\x0f\x0c\x01\x2e\x2a\x43\x0c\x05\xd6\x76\x0c\xe5\x5a\x0a\x9f\x08\xaa\x34\x9d\x22\x09\x16\x9e\x96\x5a\x2d\x22\x00\x40\x92\x10\xba\x49\x4a\x0f\xf7\xfb\xb3\x07\xa3\x0e\x9d\x00\x96\x07\xd2\xd5\xbc\x2e\x00\x00\x67\xce\x9c\xa1\x47\x8f\x1e\xe1\xc9\xc9\xc9\xb2\x96\x77\x93\x20\x94\x3c\xf1\xac\x56\xfe\xf3\xf4\x10\xfc\x77\x09\xff\x1d\xeb\xa4\xa9\x4c\x92\x9f\x9a\x2c\x70\x8b\xef\x62\xea\xce\x77\x63\x6b\xde\x5d\xc3\x1d\xdb\x26\x21\x9a\x42\xd6\x69\x9b\x36\xb7\xe8\xb6\x60\x96\xcd\xa7\xc9\xb3\x42\x22\x4e\xe6\x19\xf2\x1c\x59\x5e\xa0\xa6\xf2\xc8\x3c\x43\x21\xd6\x9b\xa4\xc2\x7c\xf3\x9b\xdf\x74\x57\xae\x5c\x81\xb5\xb5\x35\x97\xa6\xa9\x1f\x77\x7c\xb9\x9c\x5f\x67\xc9\xfe\xba\xfd\xa9\xeb\x6d\x9e\xa4\xab\x5b\x87\x9d\x8d\xf3\xfb\xbd\xd3\x97\xf7\x7a\x17\xae\xec\xf6\xaf\x5c\xde\xe9\xbf\x7c\x69\xaf\x77\x75\xfb\xa0\x7b\xe5\xc2\x7e\xef\xe2\xf6\x7e\xef\xc2\xb9\xc3\xee\xe6\xe6\x28\x1d\x0c\x27\x49\xaf\x37\x73\x1d\x47\x90\x66\x08\x2e\x73\xb9\xb7\x05\x00\x80\x1d\x68\xc6\x9d\xfe\xd4\xeb\xf5\xf0\xd4\xa9\x53\x74\xf5\xea\x55\x1c\x0c\x06\xf8\xf0\xe1\xc3\x18\x9e\xf0\xdf\xda\x7a\x2e\x43\x6d\x1c\xf2\x28\x5a\xed\xda\x94\x27\x6f\xe3\x68\xef\xa3\xf7\xb8\xc4\x5a\xc2\x6d\xe6\xb7\x2c\x6b\x52\x6a\xd3\x70\x70\x70\x00\xff\xf8\x8f\xff\x08\x5f\xf9\xca\x57\x6a\x5b\xa2\x01\x60\x56\x68\xa0\xb5\xb5\x2e\x33\x47\xc7\x4f\x56\xa6\x0f\x76\x86\xd3\xdb\x67\x8e\xd3\x6b\x49\x06\x5d\xa9\x92\xd4\xb4\x20\xaf\x58\x88\x49\x23\x9e\x80\xaf\x5d\x91\x01\xe5\x33\x2e\x7e\x40\xf4\xdb\xab\xeb\x18\x72\x78\x5c\x80\xe7\xe9\xd8\x9b\xeb\xcf\xdc\xf6\x85\xbd\xde\xdb\x8f\x56\xa6\x9f\x1f\xf6\xe6\xfb\xe3\x24\x9b\x15\xe5\x2f\x2f\x60\x2c\xdc\x8a\xd9\xf9\xf3\xe7\x5d\xaf\xd7\xd3\x2c\x3d\x1f\x34\x0d\x58\x6a\xc3\xd2\x92\xe2\xf1\x9a\x15\xac\x59\xcb\x5a\x1a\x0d\x17\x4f\x23\x2d\x39\x49\x5f\x1b\x6f\x4f\x28\x8d\x85\xa7\xe9\x3d\x94\x8f\x46\x77\x6c\x78\xde\xf4\x78\x1a\x62\xac\x57\xad\x6e\x00\xc2\x75\xa5\xb5\xa5\x96\x46\xd2\x14\xa2\xcb\xb2\xde\xdb\x7a\xff\x62\x9e\x39\x2d\x12\x97\x8c\x7f\x1e\xf9\x3c\x8b\xd7\x48\x7b\x8e\xb1\x6a\x79\x88\x81\x6f\xe3\xb9\x69\x6b\x49\x37\xb5\xe5\xb2\xf1\xcb\xc8\x05\x0d\x97\xa4\x17\x3e\xfc\xf0\x43\xf7\xe2\x8b\x2f\x42\x9a\xa6\xdc\x83\xe2\xe1\xcb\xa9\x20\x20\x70\x8e\xa0\xbb\x3e\x4a\xfb\xa7\x4e\xd2\xf5\xd3\x47\x9d\x73\x9b\x27\xe9\x95\x95\x49\x72\xbe\x3f\xc3\x17\xba\x73\x77\xba\x33\x77\xa7\x93\x0c\x87\x6c\x04\xce\x08\x69\x36\x73\x74\x38\x4e\xb3\x87\xa3\x94\x1e\x9e\x74\xe6\x0f\x0e\x7b\xf3\xbb\x3b\xc3\xe9\xfd\x47\x2b\xd3\xc7\xbb\x83\xd9\xe1\x34\x25\xbe\xa6\x53\x7a\x5f\x66\xa7\x4e\x9d\x72\xa7\x4e\x9d\x82\xf5\xf5\xf5\x0c\x00\xe0\xc7\x3f\xfe\xb1\x56\x6f\x96\xcc\xb6\xea\x22\x66\x7c\x68\xaa\xcf\x65\xdb\xd8\x92\x5d\x72\x0c\x51\x69\xf0\x1e\x97\x90\x96\xa3\x7a\x49\x60\xd1\x8a\xb1\xb4\x74\x8e\x43\x56\x2c\x01\x00\xcd\x66\x33\x3c\x3e\x3e\x86\xb7\xdf\x7e\x5b\xea\x08\xc8\xdc\x73\x69\x41\x6f\x4a\x00\x1d\x42\x48\x56\x26\x6e\xe5\xec\x51\xf7\x72\x77\xee\x56\xe5\x8e\x21\xef\xe4\xf0\x44\x58\x67\xac\x94\x85\xe0\xf0\xfe\xbb\x3f\xd8\x8e\x9d\xf3\xb2\x70\x5e\x4b\x91\x20\x9f\x9f\xcc\xe7\x9c\xc8\x3b\x5e\x7c\x29\x44\xbe\x3c\xad\x77\xd2\x78\x6f\x10\x12\x74\xd2\x0c\xd3\x59\x42\xbb\xfb\xfd\xd9\xfd\xe3\x5e\x76\x04\x39\x13\x7b\x8f\x0b\x9f\x22\xa2\x24\x49\x68\x6f\x6f\x0f\x4f\x4e\x4e\xb8\x95\x82\x50\x6f\xf0\x90\x95\x43\xca\x9f\x8f\xd7\x18\x30\x64\x89\x91\x88\x93\x5e\x3b\x14\xf0\x32\x3d\x28\x30\xb1\x56\xb5\x25\xd0\x2c\xaf\xd1\x32\x56\x36\xc7\x91\x41\x73\x9a\x90\x35\x2f\x3d\x95\xcb\xd2\xd3\x54\x4f\x5a\xdb\xf0\x3c\x35\xde\xd0\xda\x47\xb6\xad\x45\xa7\x06\xef\x83\xcc\x37\xb6\xad\x2d\xab\x4c\xf2\x8d\xc6\x5f\x1e\x2e\xe4\x89\xd0\xbe\x69\x65\xe4\x3c\x26\xf3\x09\xc5\x69\x41\x83\x0f\xc9\x53\x8b\xaf\xe5\x33\xcf\xd3\xaa\x2b\x59\x1f\x4d\xb0\x1a\x8c\xcc\x4b\xc2\xc7\x58\xe6\x1c\x87\x96\x3f\x2f\x73\xa8\x7d\xb8\x6c\xb1\xf2\xf1\x34\x95\x75\x98\xa6\x29\xbe\xf7\xde\x7b\xf8\xe6\x9b\x6f\x42\x92\x24\xa5\xd2\xc2\xd6\xa6\x74\x00\xa0\x43\x44\x69\x42\xd8\x3b\x75\x92\xae\x5d\xde\xeb\x5f\x7c\xe9\x49\xff\xed\x17\x9f\x0e\xbe\x76\x71\xaf\xff\xcd\x73\x87\xdd\x0f\x4f\x8d\xd2\xaf\xac\x4e\x92\xb7\x07\xd3\xe4\xf5\xde\xcc\xbd\xdc\x9d\xbb\x2b\x9d\xb9\xbb\xd4\x9d\xbb\x4b\xdd\x39\x5e\xec\xce\xdd\x95\xde\xcc\x5d\x19\x4e\x93\x97\x56\xc7\xc9\x2b\x1b\xa3\xce\x6b\x9b\x27\xe9\xff\xb5\x39\xea\x5c\x58\x1b\x27\xab\x83\x69\xe2\x92\x0c\xb3\x69\x9a\x65\x73\x57\x79\x5b\x10\xf9\xe8\x00\x40\x44\xd8\xef\xf7\x61\x7d\x7d\x9d\x00\x00\x1f\x3d\x7a\xd4\xd4\x7f\x65\xfb\xb4\x6d\x6f\x59\x77\x5c\x96\x7b\xba\x96\xe5\xd3\xd0\xb8\xc1\x9f\x65\x19\x1c\x00\x50\x22\x23\x94\x67\x39\xe8\xf8\x42\x00\x34\x77\x62\x59\x10\x4d\x78\x02\x00\x10\x22\x62\x9a\xa6\x74\xee\xdc\x39\x82\x9c\x79\x80\xb9\xcd\x52\xb6\xe0\xc9\x5f\x03\x90\x10\x42\xe7\xdc\x61\xf7\x85\xd5\x49\x7a\x0e\x01\x9c\xdf\x02\x5d\xdb\xbe\xcc\x88\xf5\x21\xff\x94\x7f\xe1\xb5\xef\x4f\x9f\x2b\xbf\xb3\x93\x71\xb9\xf7\x86\xe3\xad\xc7\x63\xa5\x80\x20\xe4\x0a\x4c\x0d\xa6\x4e\x10\xcf\xa7\xc4\x47\x88\x8e\xb0\x9f\x10\x4e\x8f\x3b\xf3\x07\xbb\x83\xd9\xa3\x79\x02\x13\x44\x9c\x17\xdb\xa1\xcb\x93\x74\x89\x28\x3b\x7d\xfa\x34\x76\x3a\x1d\x3a\x38\x38\x80\x42\x79\xe1\xfe\x20\x8d\xa9\x64\xbc\xd6\xe9\x7d\xe0\xed\xc4\xe1\x2c\x5e\xb1\xda\xbd\xcd\x40\xcf\xf3\xe5\xb4\x4a\xdc\xb2\x0c\x99\x48\xcf\x71\xca\xc1\x5a\xc6\x49\x1a\x2c\xd7\xbb\xe4\x75\x0b\x8f\xa5\x8c\x48\xe5\xcd\xb2\xd8\x9b\x06\x07\xd9\x16\x5a\xfb\xf1\xfa\x93\xdf\x43\xf0\x6d\xea\x5e\xa3\x35\x34\xb8\xc9\x78\x2d\xce\x12\xba\x3e\x84\x70\x87\xd2\x5a\x6d\x2a\x71\x86\x82\x56\x0e\xf9\x4d\x93\x9d\x5a\x5d\x59\xf0\x1a\xbd\x12\x57\x28\x34\x19\x93\x3e\x4f\xdf\x5f\xb8\x54\x6a\xea\xd3\xd6\x00\x15\xea\x23\x32\xdf\xd8\x7e\xeb\xdf\xad\x32\x6b\x6d\xdf\xc4\x3f\xe5\x7b\xaf\xd7\x73\xd7\xaf\x5f\x87\x2f\x7f\xf9\xcb\xb5\xb5\x2b\x85\xd2\x92\xdf\x91\x47\xd4\x71\x80\x9d\xc1\x34\x59\xbd\xb0\xdf\x3b\xff\xf2\x93\xc1\x9b\xd7\x1e\x0f\xbf\xb9\xbd\xdf\xfb\xf6\xa9\x93\xce\x07\xc3\x69\xf2\x4e\x77\x8e\x5f\x48\x33\xb7\xe5\x00\xd7\x90\xb0\x8f\x80\x29\x62\x8e\x0b\x01\x1c\x12\x26\x00\x98\x38\xc4\xae\x23\x5c\x71\x84\xa7\x52\xc2\x0b\xdd\x39\x5e\x1c\x4e\xdd\x95\xf5\x71\xe7\xea\xa9\x93\xf4\xfc\xda\x38\x59\x49\x33\x07\x73\xa4\xe9\xa8\x93\xcd\x01\x80\x0f\x5c\xde\x88\xcf\x00\x00\xfb\xfd\x3e\x9c\x3e\x7d\x9a\x26\x93\x09\x3e\x79\xf2\x64\x59\xbe\x8e\xe5\x79\x4b\xb1\xb4\x64\x7a\x4c\x3b\xc8\x78\xad\x8f\x48\x79\x5d\xe3\x53\x6d\x8d\x8b\x56\x28\x4e\xb8\x13\xf1\x4d\x9d\x58\xba\x11\x55\xe5\x65\x3e\x9f\xd3\xdd\xbb\x77\xf1\xdd\x77\xdf\x05\x00\xe0\xcc\x84\x00\xc0\x57\x67\x27\x88\x98\x10\x40\x3a\x4d\x32\x3c\x75\xd2\xd9\x3c\x75\x92\x5e\xea\x64\xd8\xf7\xae\x8e\xea\xc0\xb9\x7a\x69\xeb\x45\xc1\xea\x3b\x5b\x20\x9b\x2f\x87\xa1\x72\x7a\xa9\x7e\x6d\x00\x54\x5e\x13\x0f\xc7\x71\x21\x00\x15\xf8\x91\x2a\xaf\x4e\x29\x45\xb4\x95\xbb\x50\x3f\x01\xa6\x48\x9d\xa4\x19\xa6\x19\xd2\xd1\x41\x3f\xbb\x77\xd0\x9b\xef\x17\x3b\x8c\xe6\x00\x40\x6c\xa7\x11\x20\x22\x9d\x39\x73\x06\x77\x77\x77\xe9\xe1\xc3\x87\xa5\x17\xcb\x68\x1b\x19\xcf\x99\xcf\x62\x1e\xdf\x7e\xdc\x5a\xb1\x78\xc5\x52\x10\x9a\x98\x58\xd2\xa2\xd1\xaa\xd1\x2c\x69\xb0\xca\xec\xe9\x97\xb8\x34\xc1\x2e\x71\x58\x96\x89\x7f\xd7\x94\x0f\x4b\xe0\x6a\xf5\xd2\x24\x6c\xac\xfe\x15\x2a\x33\xaf\x23\xdf\x6e\x21\x8f\x83\x85\x53\x83\xb7\xe2\x2d\x5a\x24\x6f\x71\xc5\x4d\xf2\x85\xe5\x35\xb1\x94\x25\x4b\x01\xe3\xb4\x69\x03\xa9\xc4\x1d\xcb\x9f\x4d\x8a\xbb\xc4\xcd\xdf\x35\x05\x52\x96\x41\x2b\x9b\x55\x5e\x4b\xf0\x73\x5e\xb4\xe8\x95\x7d\xda\x09\xf8\x58\xf9\x2d\xcb\x18\xca\xd3\xe7\xa5\x29\x56\x72\x7c\xd1\x60\x64\xfd\x4b\xa5\x49\x33\x94\x78\x28\xe9\x19\x0c\x06\xee\x95\x57\x5e\x81\xf7\xdf\x7f\xbf\x1c\x5f\x00\xca\xfb\xf1\xbc\x97\xa5\xd3\xcd\x5c\x6f\xf3\x24\x3d\x7d\x65\xb7\xff\xf2\xab\x0f\x87\x5f\xb9\xb2\xd3\xff\x8d\xcd\x93\xf4\x5b\xfd\x99\xbb\x9e\x10\x6e\x39\xc0\x3e\x02\x3a\xbf\xb1\x03\xd1\x8f\x01\x50\x9d\xc0\x8e\x50\x79\xd9\xb1\x1a\x13\x80\xa0\x93\x80\xdb\xe8\xcc\x71\xbb\x3f\x73\x2f\xae\x8d\xd3\xcb\x9b\x27\x9d\xcd\xee\xdc\xcd\xc6\x29\x1d\x8f\x3b\xd9\x2c\x2b\xa6\x11\x0a\x23\x9e\x88\x08\x01\x20\x43\x44\xec\x76\xbb\xf0\xc2\x0b\x2f\xd0\xe1\xe1\x21\xec\xec\xec\xf0\xf2\x5b\x7c\xa1\x19\xac\x31\xcf\x52\xe6\xf3\xb6\xb4\xd2\x49\x5d\xa1\xa9\xfd\x3c\x8c\xc6\x53\x72\x8c\x02\x80\xba\xe2\x62\x05\xd9\xf1\xa5\xd0\xd1\x60\x7d\x08\x59\x0d\xb2\xb3\x80\x73\xce\x2b\x2e\xd2\x6b\xe0\xb7\xa4\xd5\x2e\x5e\xcc\x1c\xb8\x4e\x86\xdd\xad\xc3\xee\x95\xc1\x2c\x59\x47\x28\xf6\xce\x23\x80\x3f\x44\x97\x2b\x09\x08\x22\xa2\x60\xae\xf2\x90\xb8\x72\x81\xae\xbf\x1d\xba\x9a\x1e\xf2\xc8\x10\x20\xd7\x8f\x7c\xba\x02\x65\x95\x17\x2e\xe4\x5b\x7d\x12\xf7\x29\x51\x15\x5f\x16\x18\x0b\xd4\x04\xbd\x24\xc3\x6c\x92\xd2\xa3\x27\x2b\xd3\x87\xf3\x04\x26\x50\xcd\x79\x97\x4a\x8b\x2f\xc9\xfe\xfe\x3e\xed\xee\xee\xe2\x64\x32\xb1\x04\xaf\x16\xac\xc1\x9f\x93\x1d\x1a\xec\x42\x1a\x72\xd3\x20\x16\xa2\x25\x86\xe6\xd8\x8e\x17\x1a\xe4\xb4\x41\x2f\x46\x71\xb0\xbe\x87\xac\x53\x4b\xd0\xc7\x96\x3b\x34\x58\x86\xac\x79\x2e\x78\x9a\x2c\xf6\x36\xd6\x51\x13\x4d\x3c\xad\x9c\x1e\x96\xe9\x3c\x7d\x96\x5c\x91\xf2\x07\x94\x67\x09\x6b\x29\xcd\x31\x75\xa5\x95\x8d\x0f\xba\x12\x7f\xaa\xb0\xb1\x98\x00\x00\x20\x00\x49\x44\x41\x54\x4c\x3d\x68\xb4\x84\xca\xa3\x0d\x02\x4d\x2e\x78\x8b\x77\xb9\xe7\x8d\xe3\x94\x4a\xa4\x25\xaf\x2d\x65\x32\xd4\xcf\x24\x1e\xab\x0c\x72\x20\xd4\x8c\x12\xcf\x23\x72\x8d\x8b\xe4\x8b\x50\x9b\x64\x00\xe0\x06\x83\x01\x5e\xbb\x76\xcd\x9f\xcf\xe2\xbf\xa5\x90\x1b\xc4\xe5\xc2\xdb\xee\xdc\x0d\xb6\x8e\x3a\xe7\x5e\x7d\x38\xfc\xe2\xab\x0f\x87\xdf\x3e\x77\xd8\xfd\xf5\xc1\xd4\xbd\x97\x66\xee\x34\x22\xba\x85\x3b\xec\xca\xea\x5b\x1c\x77\x3c\x71\x3c\xca\x8f\x1d\x08\x00\xc1\x35\x3e\xca\xe8\x1c\xe1\x30\xcd\xf0\x42\x7f\x96\x5c\xdd\x18\xa5\x67\x56\x27\xc9\xf4\xb8\x9b\x1d\x8c\x3a\xd9\x64\x8e\xb9\xa2\xe2\xcb\x55\x3c\x67\x00\x80\x9d\x4e\x07\xae\x5e\xbd\x4a\x0f\x1e\x3c\xc0\xc3\xc3\x43\x9f\xab\x56\xbf\xdc\x88\xd1\xe4\xa1\x25\xb3\xe5\x78\xcd\x79\x25\x96\x1f\xad\x67\x50\xe2\x2d\x65\x97\xc3\x2e\x78\x5c\xb4\x84\x4d\x1d\xbf\xad\xb5\xa8\x09\xa9\x12\x06\x11\xf1\x0b\x5f\xf8\x02\xf4\xfb\x7d\x2a\x1a\x96\xef\xa1\xcf\x3d\x2d\x95\x2b\x2f\x05\x80\xce\x38\xa5\xec\xdc\x51\xf7\xfc\xfa\x38\xd9\x4a\x33\xec\x79\xc5\x21\x9f\xaa\x29\x4e\xd0\xf5\x59\x12\x56\x4a\x03\xf8\xfb\x8c\x3c\x4c\x75\xbf\x11\x32\x22\xbd\x02\xc3\x15\x12\x2e\x01\xfc\xbb\xc7\x97\x6b\xd3\x54\x2a\x29\x20\xf1\x21\xc7\x0b\x50\x5e\xe4\x28\x38\x1b\x01\xd3\x84\xb0\x8b\x00\xa3\xe3\x6e\x76\x67\x67\x30\xdb\x85\xea\xe6\x68\xff\x47\xc5\xb4\x11\x9d\x3b\x77\x0e\x67\xb3\x19\xdd\xbd\x7b\x37\x46\xab\xd6\xde\xb5\x38\xc9\x44\x12\x5e\x76\x04\x4d\x68\x49\xfc\x9a\x25\x64\xd1\x1c\x2a\x83\x36\xe0\x48\x6b\xdb\xea\x84\x16\xde\x98\xc1\x59\xab\x07\x9e\x87\x2c\x9b\x85\x37\x14\x42\xb4\xc9\xb2\x58\xd6\xa7\x26\xc0\x35\xab\xcb\x12\x66\xa1\xc1\x55\x2b\x97\x36\x6d\xc0\xd3\x5a\x38\xb8\x70\x8a\x55\x84\x62\xda\x49\xe2\xb4\x78\x33\xa4\x64\xfb\xd0\xa4\xb0\xc4\xf4\x99\x26\x25\x9a\xc3\x68\xca\x42\x93\xec\x0d\xf5\x67\x5e\xcf\xd6\x00\x22\x69\x97\xe2\x4b\x96\x45\x1b\x20\x79\x3d\x6b\xb4\x4a\xfe\xf3\x69\xb5\x81\x90\x97\x01\x60\x71\xfd\x9a\xcc\xa7\x91\xa6\x5e\xaf\x87\xaf\xbc\xf2\x4a\xa9\xb4\xb0\xb1\xc4\x2b\x2f\x5d\x00\xe8\xa4\x73\x1c\x9e\x3f\xe8\xbe\xf0\xda\x83\x95\x5f\x7e\xe9\xe9\xe0\x7f\xae\x8f\xd2\x6f\x75\xe6\xee\xaa\x43\x4c\x4b\xa3\x98\xcb\x71\x82\xfc\x2a\x19\x21\xc3\x6b\xb7\xca\x88\x81\x85\x9f\x91\xea\x97\x45\x38\xc2\x95\xee\x1c\x2f\xaf\x4c\x92\x0b\xeb\xa3\x74\x74\xd8\xcb\xf6\x46\x9d\xf9\x78\xee\x20\x2b\x0c\x65\xd9\x86\xe8\x9c\x83\x57\x5e\x79\x85\x7e\xf4\xa3\x1f\x41\x96\x65\x5a\x3f\x0a\x29\x2b\x3c\x34\x8d\xe9\xb2\xbe\x63\xe4\xa9\x7f\x0e\xf1\x04\x7f\x8e\x91\x0b\x04\x50\x2d\xce\xb5\x12\xf2\x4e\xd4\x34\x4d\x60\x59\x34\x12\xbf\xd9\xd9\x88\x88\x7e\xfa\xd3\x9f\xd2\xdb\x6f\xbf\x8d\xce\x39\x2c\x0e\xe4\x41\x00\x70\x7e\xbd\x0b\xe6\xf7\xf7\xe4\xda\x31\x42\x67\x9a\x92\x5b\x1d\x27\x83\xd3\x27\x9d\xed\xde\xcc\xad\x22\xa0\xab\x7a\x5a\xc5\x45\xf9\xfa\x17\x4f\x34\xbf\x19\x9a\xf7\xcb\x82\xc1\x00\xaa\x05\xb6\x05\x83\x02\xc9\xb3\x5d\x7c\xf1\xb1\xb6\x20\x98\x3c\x4e\x04\x40\xaa\x2b\x43\x85\x53\xa7\x72\x1d\x12\xe4\x0a\x8e\xcf\x87\xe5\x81\x00\xe0\x08\x3a\x09\x21\x4e\x1d\x3d\x7d\xb8\x3e\xb9\x5d\x9c\xa6\x4b\x00\x30\xa7\x5c\xa3\xf3\x07\xd4\x01\x00\xd0\xa3\x47\x8f\xe8\xfe\xfd\xfb\x90\x65\x59\x1b\x46\x95\xed\xa3\x05\xa9\xf9\x5a\x02\xbb\x69\xa0\xd1\xbe\x6b\x78\x42\xc2\x48\x4b\xcf\x79\xd4\x2a\x83\x4c\xaf\x0d\x4c\x1a\x0d\x31\x65\x8c\xc9\x4f\xe2\xf5\x41\xeb\x2f\xa1\xfa\x90\x03\x19\x44\xc6\x69\xf5\x23\xcb\x63\x59\xf7\x32\x68\x03\x92\xc6\x73\x20\xe0\xb4\x34\xd6\x60\xc8\xbd\x04\xa1\xf6\xe0\xcf\x9a\x95\x86\x4a\x5c\x88\x27\xb5\xf6\x91\x16\x7e\x93\xa2\xeb\x7b\x78\xec\x02\x79\x9e\x8f\xff\xae\xf1\x8a\x55\x0f\x12\x27\xa7\x81\xb7\x4b\x48\xe9\xb6\xea\x84\xf3\x4d\x93\x02\xc2\x69\xd4\xea\x4c\xf2\x9f\xec\xe7\x16\x9f\x4b\x9e\xe4\xf0\xda\xb8\xe4\x61\x7c\x3c\x26\x49\x82\x6f\xbe\xf9\xa6\x9f\x1e\x02\x80\xf2\x4a\x19\x7f\x88\x5c\x0a\x00\x3d\x97\xc1\x60\x7b\xbf\x77\xee\xcd\xfb\x2b\x5f\xbf\xba\xd3\xff\x9f\x2b\x93\xe4\x7d\x47\xb0\xc1\x65\xbf\x5f\x12\x50\x9e\xd0\x8e\x55\x65\xf0\x21\xa2\xbe\x61\x94\x31\x7d\xb1\x89\xa3\x54\x6a\x98\xcc\x47\xc0\xb4\x93\xb9\xed\xe1\x34\xb9\xb0\x31\x4a\xa7\xc7\xbd\x6c\xe7\xa8\x3b\x1f\xcd\xf3\x7b\x6c\x32\xc8\x8d\x79\xbf\x5c\xc0\xa3\x84\xff\xf8\x8f\xff\xa0\xe9\x74\x1a\xea\x53\xb2\x8e\xad\x60\xc9\xa6\x18\xd9\xa2\xe1\x90\xed\x17\x03\xef\xab\x43\x6b\x77\x02\xd0\x77\x15\x49\xe0\x58\x61\x2d\x0b\x63\x75\x38\x2d\x4d\x2d\x7c\xf1\x8b\x5f\xc4\x34\x4d\xa9\xd0\x88\xcb\x4e\x58\xcc\x41\x22\x54\x6e\xbd\x04\xf2\xb5\x2e\x70\xee\xb0\x73\x61\x75\x9c\x9e\x49\x08\xbb\x1e\x0f\xe7\x1b\x2e\x29\xd9\xd1\x73\x55\xcb\x7b\x62\x10\xaa\x1d\x47\xc8\xf0\x30\xe6\xaa\x42\xce\x8d\xe5\x82\x5d\xf4\x5e\x14\xff\x79\x31\x8d\x64\xe6\x3c\x3d\xd4\xf0\x54\x9f\x31\x71\x04\xbd\x84\x70\x3e\x4f\xe8\xf6\xc3\xb5\xe9\x0e\xe4\xdb\xe5\xe6\x7e\x9d\x0b\xe5\x0b\x74\xbc\xd7\x85\x86\xc3\x21\x7c\xfe\xf9\xe7\xda\xe0\x13\x62\x58\xcd\x7a\xb1\x06\xf6\x90\x75\xad\x59\x99\x31\x5b\xea\xb4\x34\xa1\xb4\x9a\xa7\x60\x99\x7c\x38\x0b\xc8\xf8\x18\x2f\x40\x93\x10\xd0\xe0\x2c\xcb\xc5\xb2\xce\x6b\x02\x58\xa4\xb7\x16\xc7\xc9\xb6\xe4\xdf\x00\x9a\xdb\xd9\x52\x1a\xac\xb2\x84\x14\x17\x4b\xf9\x0c\xc1\x78\x3c\x7c\xc0\x6c\x6a\x5f\x8f\x33\x34\xf0\x59\x79\x87\xf8\x55\xcb\x5f\xd6\x85\xc6\x8b\x21\x85\xc8\x92\x85\x4d\xb4\x48\xda\x35\xdc\x1e\x46\xca\x6d\x39\xa0\x85\xea\xc4\xca\x8f\x0f\x8c\x4d\x83\x9f\x36\x68\xca\x20\x07\x5a\x8b\x87\x38\x4e\x4d\x91\xb1\x68\x28\xf1\xbd\xf7\xde\x7b\xf0\xde\x7b\xef\x95\x4a\x4b\xf1\xe7\xbd\x2d\x1d\x00\xe8\x03\x40\xff\xca\x4e\xef\xdc\xf5\xfb\xab\xdf\xbc\xbc\xd7\xff\xbf\x87\xd3\xe4\x5d\x97\xe1\x50\xca\x65\x3f\x86\x94\xca\x08\x1b\x44\xea\x46\x69\x3d\x51\xae\xb4\x54\xc6\xf2\xe2\x92\x81\x0a\x3c\xcd\x70\x6b\x30\x75\x17\x57\xc7\xc9\x78\x7f\x30\x7f\x7c\xd8\x9b\x1d\x51\x6e\xdc\xd6\xa6\x8e\xfc\xdf\x5b\x6f\xbd\x85\x9f\x7e\xfa\x29\x89\x93\xd4\x43\xe3\x3a\x0f\x16\x6f\x6a\x7d\xb4\x29\xce\x0a\x52\x66\x85\x1c\x1c\xa0\xfc\x72\x1c\xe6\x1a\x17\xad\x63\xb7\x11\xda\x5a\xbc\x45\xec\x02\xbe\x7f\xff\xf7\x7f\xc7\x6b\xd7\xae\x41\xbf\xdf\x07\x60\x42\xd4\x2f\xd8\x2d\x7e\xcb\xe9\xa2\x93\x4e\x96\xad\x8f\xd3\xd5\xcd\x93\xf4\x42\x77\xee\x86\x0e\xd0\xd5\x5d\x73\x75\x4f\x46\xf5\x5b\x9f\xa6\xe1\x92\x1a\x05\x47\x72\x7d\xa4\x56\xa8\xc2\xb3\x92\xc3\x60\x0d\x48\xf2\x6e\x19\x47\xc5\x13\x5f\xf3\x52\x78\x5c\x00\xea\x0a\x8c\x23\xe8\xa6\x19\xf6\x13\xc2\xf1\x6e\x7f\x7e\xeb\xa8\x37\x1f\x41\x75\x05\x40\xc6\xbd\x2e\x88\x08\x67\xce\x9c\xa1\xb3\x67\xcf\xe2\x8d\x1b\x37\x34\x01\x6c\x85\x10\xb3\xc8\x77\xeb\xd9\xbf\x87\xbe\x5b\x79\x6b\x69\x9a\xe8\x7d\x1e\xf9\x58\x9d\x23\x54\xde\x18\x61\x2f\x83\xe6\xf9\x0a\x0d\x2a\x72\x90\x94\x83\xb0\x4c\x1f\x32\x0a\xac\x41\x4c\xe2\x08\xa5\x69\x6a\x7f\x5f\x2f\x9a\x02\x19\x63\xe5\x6b\x0a\x92\x96\x4f\x48\xc1\xd3\xca\xa1\xe5\x11\x82\xe5\x74\x34\x79\x91\x78\x7c\x0c\x2f\x5a\x30\x31\x65\x5e\xa6\xbc\xa1\xa0\x95\x2b\x26\x5d\x1b\x78\x8d\xe7\x65\xba\x67\x89\xd7\x78\xc6\xa4\xe5\xe2\xc5\x8b\x70\xe1\xc2\x05\x2c\xe0\xfd\xee\xa1\x0e\xe4\x4a\x4b\x17\x00\x06\xa7\x0f\xd3\xcd\xb7\xef\xad\x7e\xeb\xf2\x6e\xef\x77\x06\xd3\xe4\x3a\x12\xf4\x17\xbc\xec\xc4\x86\x15\x2f\xee\x99\x01\x5a\x93\xf9\xfc\x9d\x79\x66\x00\x14\xcf\x8c\x62\x65\x3b\x82\x8d\xfe\x2c\x39\xb7\x32\x4e\xc6\x87\xbd\xf9\xe3\xfd\xc1\xfc\xd0\x4f\x17\x15\x5e\x17\xf0\x9e\x77\x00\x80\x37\xde\x78\x83\xee\xdc\xb9\x83\x47\x47\x47\xbc\xae\xa4\x01\xa3\xf1\xb2\xd6\x56\x72\xdc\xd7\xda\x5d\xab\xf7\x50\x1f\x6d\xea\xd3\xd1\xb2\xc2\xba\x1d\x3a\x24\x9c\x2c\xe6\x0a\x59\x69\x3e\x84\x2c\xfb\x9a\xf0\xbb\x7e\xfd\x3a\xf6\xfb\x7d\xae\x67\xf8\x3f\x57\x4c\x15\xf9\xbb\x1e\x52\x40\xe8\x22\x41\x72\xe6\xa8\x73\x7e\x65\x92\x9c\x4e\x08\x3b\xc8\xaa\x80\xa0\xae\x0c\x54\xcc\xc5\xb9\xa7\x5e\x62\xee\x65\x91\x61\x61\x6a\x07\x8b\xfb\xa8\x05\x38\x4a\x78\xa8\x76\x3c\x79\x9a\x16\xce\x9a\x61\x0a\x56\x41\x3e\x3a\xc2\x5e\x9a\x61\x0a\x00\x8f\x6f\x9f\x1a\xdf\x81\x7c\xad\x0b\x11\xd1\xbc\x58\x6d\x0e\x5c\x79\xd9\xdb\xdb\xa3\x1b\x37\x6e\xc4\x0e\xaa\xb1\x21\xd6\xbb\xf0\xdf\x3d\xc4\x0a\x4b\x99\xe6\x59\x60\xdb\xb8\x77\xff\x4f\x85\x36\xc2\xcd\x07\xe9\xe1\xe1\x71\x96\x32\x66\x29\x14\x56\x1d\x59\x5e\xb5\x26\x45\x24\x46\xd1\xd0\x04\xed\xf3\xe6\x8d\x18\x05\xca\x82\xb7\x68\xd1\x2c\xf2\x18\xdc\x6d\xe0\x2d\x65\x33\x46\x81\x8c\x19\xcc\xa2\x79\xe0\xfd\xf7\xdf\xc7\x37\xde\x78\xa3\xbc\x77\x08\x0a\x8f\x3d\x11\x75\x10\xb1\x4b\x44\xfd\x34\xc3\xc1\x3b\xf7\x56\xdf\xbb\xba\x33\xf8\x1f\x2b\x93\xf4\xba\x23\x58\x91\x0b\x70\x7d\x6e\xb9\xac\x16\x46\x29\x56\x3f\xf5\x2b\x63\x68\xf1\xd2\x5f\xad\x24\xc2\x53\x93\x17\x02\x31\x21\x58\xeb\xce\xdd\x5a\x9a\xe1\xc1\x71\x37\x7b\x72\xd8\x9b\x9f\xf8\x32\x22\xa2\x57\x5a\x08\x20\x5f\xb8\x7b\xf5\xea\x55\xda\xd9\xd9\x81\xfd\xfd\x7d\x39\xae\xca\xf5\x4d\x92\x7a\x59\x87\x3c\x9d\xa4\x16\x04\xac\x6c\x2f\x0e\xd7\xa4\x88\xf0\x36\x8e\xe1\x27\x04\x00\x72\x0a\x40\xc8\xfd\x66\x7d\xcb\xc4\x9f\x8f\xe3\xf8\x9d\xf8\x16\x9b\x47\x89\x97\x88\x32\x22\x9a\x21\x62\x79\x77\x51\xf1\x37\x7a\xb4\x3a\x7d\xf0\x68\x75\x7a\x6b\xd4\xc9\xf6\x09\x28\xc7\xe1\xb5\x5c\x76\xf6\x8a\x8f\xae\x49\x27\xa9\x70\x08\xaf\x89\x0c\xda\xd4\x8e\x57\x64\x64\x1a\xcf\xe4\x79\x36\x8b\xda\x7b\xa9\x9d\x30\xda\xea\xcf\x08\x8e\xa0\xbf\x32\x49\x5e\xba\xb8\xdf\xfb\xda\xb5\x47\xc3\x2b\x90\xbb\x35\xd3\xa2\xd3\xa5\x50\x58\x10\x44\x04\x44\x04\xe7\xcf\x9f\x87\x5f\xf9\x95\x5f\xf1\xee\x50\x80\xca\x35\xca\xe3\x64\x70\xe2\x57\x06\x39\xed\x24\xf1\x37\xe1\xb3\xe0\x9b\xe2\x65\x5c\xe8\x59\xa3\xcb\xa2\x31\x44\x83\x45\x8f\x0f\x92\xb7\x25\x0d\x1a\x5e\x09\xab\xa5\xd7\xf2\x0e\x95\xd9\xa2\x5b\xcb\xcf\xa2\x35\x54\x3f\x31\x70\x1a\x5d\xbc\x7e\x2c\x9a\x78\x90\xb2\x03\x60\x91\xdf\xac\x74\x5a\x68\x23\xd7\x62\xe8\xb3\x82\x5c\x14\x2e\xf3\xb1\xda\x6e\x99\x3c\x96\xc1\x1d\x33\xbd\xa6\x85\x98\x3e\xd7\x94\xd6\xff\x6a\xf2\xbc\x29\xc4\x96\xd9\x1a\x5f\x6a\xb0\xbd\x5e\x0f\xba\xdd\xae\xf7\xb2\x94\x1e\xfb\xe2\xb7\x8b\x88\xfd\x57\x1f\x0d\xaf\x5d\xde\xed\xff\xea\xea\x38\x79\x23\x21\x58\xc5\xe2\x10\x2e\x7f\x5b\x0c\x31\xa1\x5e\x1b\x1f\x98\x0c\x2f\x6f\x96\x21\x36\x2e\x00\x02\x29\x4a\x0b\xc7\xb7\xa0\xd6\x01\xb3\xd4\x09\xbb\x83\xa9\x7b\x65\x7b\xaf\xf7\xe1\xa5\xdd\xde\xf5\x95\xb1\x5b\x87\xdc\x43\xc4\xaf\x1f\x70\x90\x8f\x01\x30\x18\x0c\x5c\x9a\xf2\x2b\x08\x17\xfa\xe3\x42\xfd\x04\x42\x68\xb1\x34\xff\x2e\xdb\x2b\x86\x4f\x9b\xa6\x11\x83\x3c\x1d\xda\x0e\xed\xb5\x28\xa9\xf1\xca\x78\x27\x9e\x2d\x4b\x45\xd3\xd4\x34\x8b\x0a\x00\x00\x76\x76\x76\x70\x6b\x6b\x8b\x06\x83\x41\xe5\x5d\x63\x8b\x75\xa1\xde\x70\xc9\x1c\x21\xed\xcd\x5d\xf7\xd4\x49\xfa\xc2\xca\x24\xd9\x4c\xb2\x7c\x05\x38\x00\xd4\xe6\x10\x4b\x64\xc4\x76\x01\x79\x18\xce\x60\x58\xf7\xac\xf8\xc4\x08\x50\x9e\xef\xe2\x3d\x33\xe5\xee\x25\xbe\xd0\x16\xf8\x8e\xa6\x2a\x8f\x9a\x93\x07\xb1\x5a\xa8\x05\x20\x56\x9a\xd7\x15\x9e\xe2\x44\xdd\x7e\x9a\xe1\xc1\xa3\xd5\xe9\xe7\x93\x34\x9b\x8a\xb3\x5d\xca\x29\xa3\x34\x4d\x61\x75\x75\x95\x36\x37\x37\xe1\xf3\xcf\x3f\x47\x80\x72\x2b\x67\x68\x3e\x92\xeb\x4c\x52\xfb\xd6\xda\x95\xb7\x5f\x8c\x45\xe4\xf3\x97\xf0\x12\x8f\x13\xf0\x31\xfc\xc4\xd3\x4b\x7c\x16\x8d\x52\x74\x68\x6b\xba\x42\xfc\x6b\x59\x22\x56\xd9\x24\xac\x46\x8f\x96\xb7\x55\x3f\xa1\xb2\x6a\xf9\x39\x68\xc6\x6d\xd1\x68\xb5\x1d\x28\x71\xd2\x52\x0b\x59\x5c\xe6\xae\x81\x06\xfc\x5a\x88\xe1\x93\x36\xb0\xaa\xf5\x6e\xc0\xc4\x78\x11\x62\x3c\x21\x3c\x70\x18\x0d\x5e\xc3\xed\x94\xf7\x26\xba\x9a\x68\xb5\xea\x27\x54\x66\xc7\x9e\x3d\x6c\x53\xf9\x43\x63\x87\x95\x3f\x80\xcd\x67\x04\x00\xf0\xee\xbb\xef\xba\x97\x5e\x7a\x09\xba\xdd\xae\xf7\xb4\x38\xa8\x4e\xc4\xed\x22\x62\xff\xdc\x41\xe7\xec\x9b\xf7\x57\xbf\x75\xee\xb0\xfb\xcd\xee\xdc\x5d\x70\x50\x8d\x1d\xc8\x7f\x99\xfc\xf6\x8f\x7c\x9a\x87\x9f\xd7\xe2\x01\x84\xc8\xaf\x91\x57\x9b\x05\x28\xc7\x96\xfa\x38\x54\xa0\xef\x26\x84\x3d\x47\x30\x3a\xee\x66\x0f\x76\x56\x66\x7b\x50\x2c\x13\xe0\x0b\x75\x0b\x7c\xb4\xbe\xbe\x4e\x47\x47\x47\x58\x78\x5d\xa4\x1c\xd6\xea\x92\xb7\x4b\xd3\xba\xc8\xd0\xf8\xb1\x4c\xdf\x6d\xea\xcf\x92\x06\x07\xa0\x7b\x5c\x78\x08\x69\x4f\x5c\x8b\xd3\xbc\x2c\x21\x0b\x30\x14\x1c\x00\xc0\xdd\xbb\x77\xb3\xf1\x78\x2c\xe9\xe0\x7f\x75\xaf\x0b\xc2\xe8\xc1\xda\xe4\xde\xa3\x95\xe9\xad\x93\x4e\xb6\x9f\xa1\xa8\x2f\xac\x8f\xca\x24\x17\xc2\xa2\xff\x52\xc1\x94\x73\x96\x58\xbf\x64\xb1\x54\x48\x10\xca\xdd\x47\xfc\x22\x47\x0f\x43\x24\xda\x04\x99\x26\x5d\xed\xe3\xaf\x3c\x43\x00\x95\x26\x5e\xe4\xed\xbd\x28\x08\x90\xf6\x66\xee\xfc\xb9\x83\xce\x07\x5f\x78\xd2\xbf\x96\xdf\x87\x81\x29\xe4\x16\x43\xa9\x79\xfb\x75\x40\xbd\x5e\xcf\x5d\xbc\x78\xd1\xd7\x5d\x4c\xd0\xac\x5e\xfe\xad\x8d\x05\x2d\xd3\xb6\xa5\xa3\x0d\xfc\xf3\x08\x6d\xf3\x6a\x63\x21\x3c\x8b\x45\xdf\x94\x77\x1b\xdc\x6d\xcb\x68\x79\x11\x9e\x17\xbc\xb4\xd2\x42\x65\x69\x63\xe9\x2f\x93\x76\xd9\xb0\x6c\x5b\xb4\xc5\xdd\x54\x9f\x7c\x31\xfb\xf3\xf0\x2c\x85\xf2\x6b\xe3\x41\x0b\xbd\x4b\x5c\x31\x75\x29\xe1\x1b\xe9\xdc\xda\xda\x82\xd5\xd5\x55\x07\x50\x9c\xf1\xc5\x0c\x5e\x44\xec\x02\x40\xf7\xca\x4e\xff\xc5\x33\x47\x9d\xf7\x7a\x33\xb7\x8d\x50\x6d\xee\x00\xc8\xe5\x71\x29\xc5\x85\x42\x51\xc2\x68\xb9\x7b\xaf\xbc\x84\xf3\xc3\x84\x98\x05\xf0\xcf\xfa\xea\x04\x84\xce\x1c\xcf\x9d\x39\xee\x7c\xf1\xd2\x5e\xef\xfa\xa9\xe3\x74\xd3\xd3\xce\xb6\x73\x97\x75\xb3\xb5\xb5\xe5\xd6\xd6\xd6\x24\x92\xb6\x7d\xd2\xf2\x84\x3c\xef\xd0\xd4\xd6\x52\x36\xd4\x3c\x2e\x9a\x56\x63\xad\x02\x97\x2b\xfd\x2d\x8d\x4c\x5a\x80\xdc\x53\xe3\x89\xd1\xb4\xee\x32\xdf\x2c\xcb\x70\x63\x63\xa3\xf4\xba\xf8\x33\x5d\xd8\xd9\x2e\xfe\x0a\x80\x14\x11\x93\x99\x23\xec\xcd\x5d\x7f\xe3\x24\x3d\xb3\x32\x4d\x36\x1c\x61\x9a\x13\x8d\x0b\x4c\x87\x44\xf9\xde\xfb\x1a\xe1\x58\x7e\x2f\xe1\x44\xc1\x90\x01\x30\x57\x50\xed\x4c\x18\x60\xf1\x04\x04\xf9\xd6\xb7\xfa\x37\x8e\x10\xf9\xb3\xf0\xd6\x78\x4f\x4e\xf1\xde\x49\x33\x5c\x4b\xc8\xed\xed\x0e\x67\x77\x8e\x3b\xd9\x09\x39\x98\xfa\xb3\x5c\xf2\x2a\x2a\x17\x6d\x65\x88\x48\x49\x92\xe0\xbd\x7b\xf7\xb4\xb6\xf0\x6d\x68\x59\x42\xd2\x22\xe6\x96\x8d\x65\xc9\x59\xde\xb7\x90\x85\x25\x69\x08\x05\x0d\x67\x28\x1f\xeb\xbd\xa9\xdc\xfc\x59\x96\xa7\x91\x6f\x05\x8c\xf4\x4e\xb6\xb1\x3a\x2d\x1a\x78\x9e\x56\x9d\x58\x56\x77\xe8\xdd\xf2\x7c\x84\xea\x51\x5a\xd8\xb1\xf8\x9b\xca\xc2\x83\xc5\x1b\x56\x3d\x6b\x69\x63\xbc\x1c\x3c\xc4\xf0\x07\xcf\xa3\x09\xd6\xb2\x6a\x79\x68\xa2\xb1\xa9\xfe\xfc\xb3\xa4\x09\x20\xdc\x7e\x6d\x42\x0c\x7f\x68\x41\xcb\xd3\xc2\x61\xc5\x37\xc9\x89\x1a\x8e\xd7\x5f\x7f\xdd\x5d\xbd\x7a\x15\x8a\xb5\x92\xd5\x9a\xc8\xe2\xbc\x16\x20\xe8\xaf\x4e\x92\xcd\xb7\xee\xad\xfc\xca\x99\xe3\xee\x87\x9d\x0c\x4f\x23\x55\xe7\x4b\xf8\x25\x87\x35\xa9\x4d\x6c\x1c\x60\x44\xd5\xac\x62\x36\x80\x78\x65\x05\x11\x8a\xf3\x5e\x58\x21\x88\x7b\xd5\x19\x4e\xaa\xd2\xfa\x13\xd8\x81\x30\x71\x04\x1d\x40\x1c\x1d\x75\xe7\xb7\x1f\xad\x4c\x9e\x16\xde\xf6\x59\x91\xa2\x5c\xb0\x0b\x90\x9f\xae\x7e\x7c\x7c\x8c\x07\x07\x07\x56\xbf\x68\x92\x85\x31\xf2\x8a\x87\x58\x79\x1a\xca\xc7\x6a\xeb\x05\xdc\xd6\x25\x8b\xd6\xa0\xc4\x85\x8b\x35\xe8\x58\xc2\x93\x4f\x57\xf0\x3c\x2c\x86\x85\xa7\x4f\x9f\xe2\xf6\xf6\x36\x9c\x3a\x75\xaa\x6c\x57\xb6\xb3\xc8\xbb\xfe\xca\x13\x0f\x09\x21\xcd\x90\x68\x75\x9c\x6e\x6e\x8c\xd3\xb3\x9d\x39\xae\x38\x10\x0a\x05\xf7\xa2\x08\x0e\x2c\x33\x61\x0c\x05\x00\xe5\x22\x5c\x14\xef\x8b\x6e\xbd\xea\xd0\x39\xef\x3a\xc1\x82\xf3\x17\x6e\xa6\x66\x3b\x9d\xc8\x67\x5e\xd2\xc0\x70\x0b\xfc\x8e\xa0\xdf\xc9\x5c\x6f\x8e\x70\x6f\x77\x38\x7b\x32\x49\xb2\x31\xb8\xf2\xfe\x22\xbf\x58\x2b\x43\x44\x70\xce\xc1\xf9\xf3\xe7\x69\x34\x1a\xe1\x93\x27\x4f\x90\x2a\x17\x10\xff\xb5\x84\x1b\x7f\x0e\xb9\x19\x41\xc4\xc7\x0a\x6a\xce\x17\x16\xbf\x85\xf8\x92\xe7\xc3\x79\xd2\x82\x97\x69\x62\xca\xad\x95\x27\x66\x60\x6d\xc2\x11\xc2\x23\xcb\xdd\x94\x5e\x8b\xd3\xfa\x59\x2c\xad\x5a\x08\xd5\x63\x88\x46\x4f\x8b\x26\x80\x34\xfe\xb2\x84\x64\x48\x19\xf0\xef\xbc\xcc\x3c\xb8\x86\x6f\x31\x83\xa4\x46\x6b\x8c\xc2\x17\xdb\xc6\x1a\x7c\xd3\x40\xaf\xd5\x2b\xb7\x52\x25\x5d\xfc\x9d\xd7\x77\x93\x01\x10\x1a\xb0\xac\x7e\x67\xf5\x5d\x4d\xc1\xf7\xb4\xf0\x32\x58\x75\x6f\xe5\x23\xcb\x05\x00\x00\x5f\xff\xfa\xd7\xf1\xcc\x99\x33\x8e\xe1\xf4\xbb\x88\x52\x22\xea\x27\x84\xc3\x2b\xbb\xfd\xcb\xd7\x1e\x0f\x7f\x73\x65\x92\xbc\x8a\x80\xdd\x72\x7f\x44\xa1\x68\x94\xe3\x05\x00\x94\x8b\x6e\x19\x4c\xe9\x75\x07\xa1\x98\x94\x67\x7b\xb1\x29\x21\xa6\xb4\x60\x19\x2f\x06\x21\xa8\x5e\xa5\x91\x8c\x08\x29\x12\xcc\xc7\x1d\x7a\xfc\x78\x75\xfa\x8b\x69\x42\xd3\xa2\x3e\x67\x00\x00\x5e\xf6\x13\x11\xad\xaf\xaf\xe3\xe1\xe1\x21\xdd\xbb\x77\x0f\xa0\x3e\x6e\xcb\xba\x92\x7d\xc3\xaa\x4f\x8b\x07\x40\xf9\x6e\xf1\xa9\x25\xab\x63\xfb\x5c\xf9\xec\x1b\xd5\x33\x3c\x7f\x06\xf1\xec\xdf\xb5\x29\x22\x1e\xb8\xab\xbf\xc9\xf5\xa4\xe1\xaf\x85\x87\x0f\x1f\xc2\xfe\xfe\x7e\x79\xb1\x20\x54\x57\x7f\xcf\x88\x68\x46\x44\x33\x28\xa6\x8b\x88\x68\xb4\xdf\x9b\xed\xde\x5f\x9b\xdc\xda\xeb\xcf\xee\x67\x0e\x26\xa5\x92\x81\x04\xf9\x3f\xd6\x6b\x91\x6a\xd3\x39\xe4\xeb\x86\x55\x13\x41\xe5\xd6\xf3\xa1\x9c\xe6\x59\x70\xa0\x50\xa9\xfc\x78\x2f\x8c\x47\x57\x22\x63\xdf\x4b\x7c\xec\xaf\xca\x43\xd6\x44\x15\x06\x53\x77\xed\xf2\x6e\xef\xab\xdb\x7b\xdd\x4b\xfd\x99\x5b\x05\x82\x2e\x14\x0b\xb6\xfc\x62\x5d\xff\xe7\x9c\x73\x5f\xfb\xda\xd7\xf8\x82\x2d\xa7\xfc\x6a\x6d\x2e\x7f\x41\x81\xe1\xef\x1a\x3c\xe7\x17\xed\x4f\x5b\xc0\x6d\xe5\x25\xe9\xd4\x82\x45\x43\x13\x8d\x56\x5a\x0d\xbf\x05\x17\xc2\x69\xa5\xd7\xf2\x96\x96\xb3\x45\x4f\xa8\xef\xca\x3a\xb7\xe8\x8a\xa9\x13\x2d\x1f\x8d\x16\x0b\x6f\x9b\x29\x0f\x0e\xe7\xc4\xbb\x85\xa3\x69\x6a\x24\x34\xa5\x10\x9a\xa2\x8a\x99\x9e\xb1\xf2\x6d\xe2\xa1\x26\x39\x28\xf3\xb1\xe4\xb0\xa4\xa5\x69\xfa\x44\x4e\xc3\x3a\x25\x4e\x3e\x87\x82\xc5\xab\xd6\x92\x81\x50\xdb\x85\xf2\x0f\xc9\x16\xed\xdd\x5d\xbe\x7c\xd9\xf5\x7a\x3d\x89\xc3\x11\x91\x03\x80\x2e\x02\x76\xbb\x73\x37\xbc\xb8\xdb\x7b\x69\x38\x71\xaf\x38\x82\x72\x0b\x6b\xae\x58\x40\x39\x0e\x60\x29\xb7\x0b\x2d\x86\xd8\xe0\xe0\x61\x0b\xf8\x12\xb6\x34\x6c\xeb\x06\x2b\x15\x0f\xe5\xa8\x53\x2e\x02\x66\xe3\x34\x31\x18\xff\x8c\x00\x48\xd8\xed\xcf\xdc\xf6\x99\xa3\xce\xeb\xe7\xf7\x7b\xe7\x89\x88\x2f\xd2\xf5\x65\xf3\x0b\x90\x65\x5d\x86\x7e\x2d\x99\xdd\x66\xca\x30\xb6\x1f\x2d\x33\xbd\xba\xc0\x1b\x09\xd4\x35\x6f\xef\x15\x91\xda\xb1\x7f\xe6\xf1\x5e\x8b\x05\xa8\x6b\x44\x5a\xd0\xb4\x72\x2d\x7e\xc1\x5a\x7b\xf0\xe0\x41\xb6\xb1\xb1\x81\xe7\xce\x9d\xf3\x79\x39\xcc\xf7\x00\xbb\x42\x39\xf0\x97\x2f\xa6\x88\x98\x12\x42\x4a\x48\xb4\x32\x4d\x37\x36\x4e\xd2\xad\x6e\x86\x43\xbf\xf8\x95\x7b\x4d\xbc\x67\xa3\xae\x40\x48\xcd\x97\xa0\x5c\xab\x82\x50\x3e\x2f\xec\xed\x37\xd2\x97\xbc\x4f\x50\x4d\x01\xf1\xcd\xfe\x8a\xb2\x5d\xbb\x2e\x80\xbc\x02\x53\x01\x22\x20\x38\xc0\xb4\x33\xc7\x75\x24\xdc\x3b\xe8\xcf\x1f\x1d\x77\xb3\x63\x72\xe0\xb5\x6f\x2a\xb6\x48\x7b\xb7\x61\x86\x88\xd9\xdd\xbb\x77\xe1\xe8\xe8\x08\x89\x48\x32\xa5\xd5\x06\x9a\x35\x2d\x61\x40\x81\xd1\xb4\x66\x32\xfe\x64\xe7\xd0\xb4\xec\x10\x1d\x12\x56\xa6\xb1\xca\xd1\x54\x5e\x07\x7a\x5e\x16\x0e\xfe\xce\xcb\xa4\x79\xaa\x42\xf4\x84\xe8\xb2\x68\xb1\xea\x47\x7e\xd7\x70\xca\x76\xb0\xac\xb1\x50\xb9\x43\x78\x43\x81\xd7\x31\x29\x71\x96\x4c\x71\x01\xf8\x90\x85\x68\xb5\xa9\xe5\x11\xb2\xd2\x69\x2e\x71\xf9\xdd\xf2\x78\x58\x74\xf9\x78\xad\x4e\xf8\x33\xcf\xcf\x2a\x8f\x85\x43\xab\x37\xeb\x7b\x88\x5e\x2d\x68\xfd\x8e\xc7\x71\x7a\xe5\xaf\x56\x3f\x8e\xa5\xb7\x06\x52\xd9\xd6\x35\x9c\xbf\xf5\x5b\xbf\x85\x6b\x6b\x6b\x7e\x00\x4f\xfc\x69\xeb\xc5\xda\x90\x8e\x23\x18\x9e\x3a\x49\xcf\xbc\xf6\x70\xe5\xc3\xcd\x93\xce\x57\x11\xa0\x53\x49\x58\xa8\x9d\x9c\x5e\xb7\x28\xa1\x3a\x0d\xbd\x72\x9f\xd4\xe5\x3a\x00\xd4\x3c\x2d\x04\xd5\xc6\x8b\x02\x27\xf7\xc2\x00\xf8\xf1\x01\xea\xa7\xf1\x52\xfd\x7b\xa1\x14\x21\x01\x8c\x8f\x3b\xd9\x2f\xee\x6d\x4e\xee\x12\xd0\x1c\x11\xfd\xa1\xa4\x19\x40\x75\x0d\xcc\xc1\xc1\x01\xed\xec\xec\x60\x71\x28\x9d\x0f\x4d\x3c\xa9\x79\xe3\xb4\x20\xdb\x92\xe3\xb1\xfa\x28\x0f\x52\xbf\x08\xf1\xe3\x02\x0e\xcd\xaa\x69\x5a\x1c\xa9\x2d\xba\xd2\x16\x5b\x59\xef\xb1\x5a\x96\x45\x83\x9f\x0a\xf1\x9e\x97\x72\x4b\x34\x11\x8d\x00\xe1\x78\xbf\x3f\x7f\x7a\x7f\x6d\x7c\x6b\x77\x30\xbd\x3f\x47\x98\x49\x77\x06\x09\x8d\x39\x7f\x14\x75\x8b\x00\x44\xde\xb3\x52\xed\x0f\xd2\xf6\xf6\xf3\x6d\xd0\xe5\x33\x11\x83\xe4\x72\x11\x4a\xf7\xa3\xd7\x6a\x88\xa8\x48\x0b\xb9\xd2\xe2\xd3\x96\x08\x10\x6a\x0a\x39\x11\x74\xe7\x6e\xfb\xc2\x41\xef\xeb\x2f\xee\xf4\x5f\x5b\x1f\x25\x9b\x48\xd0\x07\xb6\x4d\xae\x58\x0b\x04\x50\x68\xe2\x1f\x7d\xf4\x91\x3b\x7f\xfe\x3c\x24\x49\x12\x6b\xf1\xc5\xb6\x93\x84\x6b\xb3\xa0\xeb\x79\x2d\xfe\xd2\x78\xb6\xc9\xea\x8d\xc1\x17\x1b\x62\xbd\x03\x31\x79\xb7\x0d\x6d\xf1\x69\xf0\x96\x15\xf6\xbc\x17\xe7\x59\xf5\xa4\x59\xea\x31\xe9\x34\x59\x14\x4a\x1b\x8a\x0b\xd1\x64\x05\x4b\xee\x69\xf8\xac\xfc\x39\xdd\x4d\xf4\xc7\xe0\x8b\x89\xd7\x42\x5b\x4b\x38\xa6\x2d\x79\x5c\xec\xf8\xe2\xbf\x35\x79\x06\xb4\xba\xaf\xe1\x2c\x94\x03\xe9\x35\x4c\x89\x28\x4d\x32\xec\x9e\x3a\xee\x9c\x1d\x4e\x92\x17\x73\x6f\x4b\x5d\xef\x2d\xfc\x20\x35\xa2\x6a\xa3\x7b\x4d\xa4\xe3\x22\x84\xd7\x44\x8a\xcf\xc8\xa2\xab\x21\x9a\x58\x12\xac\x9d\xf7\x42\x3c\x13\x66\x6d\x23\x41\xb7\x37\x77\xe7\xd6\xc7\xc9\xd5\xde\x0c\x87\x6c\x63\x86\xf7\xb4\x97\x4a\xd1\xab\xaf\xbe\xea\xde\x7e\xfb\x6d\x10\xa1\x89\x67\xad\xa0\x79\xbd\x2c\x4f\x9f\xf5\x6c\xf5\xc5\xd0\xcc\x8d\x4a\x47\x2c\x83\x5a\x4c\x12\x1a\xb4\xb4\x74\x4d\xae\x4c\x99\xaf\x03\x00\x37\x9f\xcf\x61\x3e\x9f\x67\x85\xb7\xc0\x9f\xe7\xe2\x71\x71\xe5\x65\x02\x00\x93\x99\xa3\xd1\xe3\x95\xe9\x9d\x07\x6b\xd3\x9b\x93\x34\x3b\xf4\xaa\x70\x39\x55\xe4\x17\xcd\x22\x95\x8a\x03\xfa\xef\xa5\xe2\x51\x4d\xd7\x94\x6a\x3d\xd3\x80\x4b\x45\x83\xc4\xb4\x8f\xdf\x26\x8d\x5c\xd9\xf0\x71\x15\xbf\x56\x3a\x09\x96\x9e\x20\xbe\x8b\x49\x28\xef\x15\x2d\x54\xe5\x31\x1c\xbb\xeb\x57\x9f\xf6\x3f\xbc\xb8\xd7\x7b\x69\x30\xb1\xa7\x8c\x8a\x75\x41\xf0\xd1\x47\x1f\xb9\xad\xad\x2d\xde\x1e\xbe\x8e\xa5\x6b\x17\x94\x38\x4d\xe9\x6c\x52\x82\xac\x67\x8d\x06\x19\x1f\xeb\x4e\xb7\xf2\xd0\xdc\xd8\xb1\xee\xcd\xd8\x32\xf0\xbc\x42\x69\x9a\x04\x6e\xa8\x7e\x35\x1c\x16\x2d\x1a\x0d\x21\x63\xc1\xaa\xfb\x26\xbc\xa1\xf7\x10\x9e\x98\x10\x3b\x75\x11\xab\x98\xb6\x11\x8a\x16\x4c\x9b\x41\xda\xa2\xa3\x6d\xfe\x6d\x60\x63\x8c\xcc\xa6\xf8\x18\x05\x89\xc3\x3e\xef\x32\xc4\xf0\x4c\x2b\xe5\x8a\x4f\xbf\x14\x86\x9c\xdf\x79\x99\x3a\xc2\xee\xea\x24\xd9\xec\xce\xdc\xb9\x1c\xd6\x27\x42\x76\x36\x4b\xdd\xf4\xe4\xf2\x58\xb1\x5f\xa1\x66\xaa\xd6\x12\x08\x40\x64\xf0\xc2\x9b\x53\x37\x71\xb1\xdc\x55\x5a\x82\x10\xa6\x9d\x19\x6e\xae\x8d\x93\x4b\x67\x0f\xbb\x9b\x50\x2d\x36\x96\x0a\x5a\x1b\x03\xc0\x0a\x4d\x7d\xa7\xad\x71\xa8\xf5\xe9\xb6\x0a\x73\x16\x03\x18\x43\x98\xa6\x89\x49\x82\x42\x5a\x5e\x48\x0b\xcb\x00\x00\xfe\xe9\x9f\xfe\x09\xfe\xed\xdf\xfe\x8d\xad\x2d\xc1\xcc\x2f\x44\x02\xa6\xb0\x20\xe2\x08\x00\x46\x80\x30\xda\xef\xcf\x9f\xde\x5d\x1f\xdf\xdc\x19\x4e\x6f\x53\x81\x87\x9f\xab\x52\x69\xd8\xf5\x38\xaf\x34\x70\x86\xaa\x69\xcb\xc0\x98\xb8\x40\xc1\xd7\xce\xd4\x13\x54\xbf\x54\xba\x02\xa1\x64\xd0\xfc\xaf\x62\x4a\x8f\x63\x81\xe7\x39\x2d\x0c\x67\x02\xd8\xdd\x3c\x49\x7f\xf9\xda\xe3\xe1\xd7\xce\x1f\x74\x2f\xa5\xf9\xbd\x1a\x5d\x28\xa6\xcd\xd8\x56\x39\x59\xcf\x9a\xa6\x1c\x1a\x30\xa4\x67\x4d\x7e\xb7\xe2\x42\x83\x4f\x8c\xb6\xde\x94\x57\x53\x1e\x56\x3e\x6d\xbd\x8a\x4d\x34\x34\xa5\x89\xa9\xa7\x50\xfd\x36\x7d\x0b\xd1\xd0\x64\x0d\xc5\x94\xb5\x29\x4d\x0c\x5f\x2c\x13\x1f\x0a\xb1\x6d\xf1\x3c\xf2\x5e\x86\xbe\xd8\x74\xcf\xdb\x03\xb7\x2c\xee\x36\xb4\xc6\x1a\x15\xd6\xf7\x90\x4c\xb2\xbe\x87\xe0\xd5\x7c\xa4\xc7\x05\xab\xab\x62\xba\x8e\x60\xb8\x3a\x4e\x5e\xe8\x66\x78\x3a\x87\xf5\x89\xaa\xe9\xa1\xda\x8a\x00\xee\x4c\x61\x51\x7c\xae\x0a\x35\x39\xcd\x13\x70\x3c\x42\x67\xf1\xf1\x0b\xa7\x78\xa0\x58\xce\x80\x00\x8e\xb0\x3b\x98\x24\xe7\x36\x4f\xd2\xb3\xc5\x3a\x17\x5f\xae\x90\x91\x02\xf0\xfc\x95\xe0\xb6\x7d\xf0\xb9\xe5\xdd\xc4\x70\x31\x42\xcf\x5b\x9b\x1a\x33\x87\x94\x19\x2b\x7f\x89\x6b\x81\x06\xe1\x6d\xc9\xf8\x02\x5d\x00\x18\x01\xc0\xf1\xdc\xd1\xf1\xd3\x95\xe9\x9d\x3b\x1b\x93\x4f\x8b\xd3\x74\xa1\x5a\x9e\xcb\x14\x07\xef\xea\x28\x02\x5f\x60\x6b\x85\x45\xbd\x04\xeb\x93\xe3\x8b\x1e\xbe\x0a\x27\xca\x38\xc6\x94\xec\x97\x44\x5a\x0b\x77\x9a\xe1\xd9\xad\xc3\xce\xd7\x5f\x7a\x32\x78\x7f\xeb\xb0\x73\xb6\x98\x32\xe2\xd3\x46\x35\x0d\xfc\xa3\x8f\x3e\x82\x17\x5f\x7c\x31\xd6\x02\x6f\x0b\xc3\xbf\xc5\x58\xef\x4d\x70\x31\x02\x2f\x36\xc4\x5a\x07\x6d\xbc\x07\x31\x5e\x8f\x98\x32\xb4\xf1\x8a\xc4\x86\x58\x0f\xcd\xb3\xe0\x8e\xf1\xbe\x34\xe1\x90\xf8\x42\xdf\x43\xcf\xcb\xe2\x6e\x4a\x17\x82\xd7\xbe\x5b\x16\xa4\xf5\xdc\xc6\x5b\x13\x93\x0f\x18\x30\x4d\x8a\xc1\xb3\xd4\xb1\x95\xa7\x95\x2e\xd6\xda\xce\xa0\x7d\x99\xe1\xf7\x7f\xff\xf7\xdd\xca\xca\x8a\x84\x71\x00\xc5\x1d\x45\x04\x69\x7f\xe6\xfa\x2b\x93\xe4\x6c\x92\xc1\x26\x80\x58\x50\x24\x35\x12\x19\xf8\xf2\x94\xf2\x9e\xba\x0a\x9e\xa8\x8e\x43\x1e\xe7\x25\xf3\xf0\x67\xc5\x48\x23\xb5\x96\x8c\xd1\x83\x00\x69\x4a\xb8\x3e\x98\x39\xef\x71\x89\xf1\xb6\x40\x64\x7c\xd3\xf3\xf3\xee\x97\x16\xee\x60\x3a\x79\x72\xae\x83\x6a\x9c\x74\xb0\xd8\x6c\x56\x5c\xc6\xbe\x79\x1c\x19\x83\xe5\xdf\x84\x4e\xb9\xb0\x20\x8e\xe3\x28\x9f\x9f\x3c\x79\x02\xd3\xe9\x94\x2e\x5e\xbc\x88\x88\x5c\x3f\x06\x57\x2c\xd0\xf5\xe5\x29\xaf\x29\xcf\x1c\xa1\x23\xec\x6e\x9e\xa4\x1b\x6b\xe3\xf4\x9c\x2b\x26\x65\xfc\xc4\x11\x02\x54\xc7\x33\x97\x3f\xc8\xdc\x7c\x54\x7b\xb7\x94\x99\x72\xfa\xa7\xb6\x76\xa5\x3e\xbd\xc3\xe3\xbc\xea\x84\xe5\xff\xf5\xea\xf0\x1d\x82\x6f\xb9\x2e\x3d\x31\x28\x2b\x0d\x21\x21\x5c\xe9\xce\x5d\x32\x4b\x68\x67\xbf\x3f\x7b\x34\xee\xd0\x04\xf2\x8b\x18\x01\x98\x90\xf0\xda\xfb\xf6\xf6\x36\x9d\x9c\x9c\xe0\xd3\xa7\x4f\x65\x9b\xf0\x2e\x2b\x83\x63\xdf\x2d\x98\xa6\x2e\xaf\xc5\xc7\xe0\x92\xb0\x56\x9a\x50\x08\x95\x2b\x0b\xc0\x69\xe9\x78\x5d\x84\xf2\x89\x2d\x83\x84\x8b\x6d\x93\x50\x88\x29\xc7\xb3\xe2\x96\xe9\x35\x7c\x31\x32\x83\xe3\xd3\xea\x96\x3f\x23\xe8\x75\xa8\xd1\x27\x69\xd5\xbe\x5b\xe9\xda\xe4\x23\x65\x58\x88\x0e\xa7\x7c\xd3\x82\x26\x87\xdb\x94\x37\x14\xac\x3a\x69\xaa\xfb\x18\x78\x2b\x3f\x0d\x96\x8f\x0b\xbc\x0f\x6a\x75\xaf\x8d\x1d\x2a\xec\x7b\xef\xbd\x87\xce\x39\x7f\xde\x97\x1f\x13\x12\x28\x8e\xf7\x77\x04\x83\xd5\x71\x72\xe6\xea\x4e\xff\xcd\x53\x27\x9d\x2f\x22\x80\xab\x9f\xbf\xc5\xb0\x62\x25\xbf\xe5\xf1\x19\xa5\xb4\x16\xde\x95\x6a\x4b\x75\x01\xa1\x78\x5f\xe4\x89\xbb\x88\xb4\x38\x16\x69\x5e\x9b\xfc\x37\x9b\x3a\x3a\xdc\x1d\xcc\x6e\xfc\xe2\xf4\xf8\x73\xc8\x0d\xf6\x39\x00\x4c\x21\x37\xe6\x4b\xd9\xbf\xb1\xb1\x41\xab\xab\xab\x78\xeb\xd6\x2d\x5f\xf7\xda\x58\x1c\xdb\xde\x31\xdf\x65\x5b\xb6\xc9\xc7\xe2\x23\xde\x17\xd4\xa9\x22\xcd\xed\xcb\x35\x38\xa9\x01\x4b\x22\x2d\x1c\xfc\x1b\xcf\xd7\x29\x71\x12\x47\x06\x00\x30\x99\x4c\x60\x34\x1a\xc9\xef\xde\xeb\x22\x17\xea\x4e\x00\x61\x34\x4d\xe8\x78\x67\x38\xbd\x77\x77\x7d\xf2\xd9\x49\x27\xdb\xf5\xde\x16\x3f\x7f\x58\x2e\xf5\x46\x5a\xb8\x8b\x42\xf3\x86\x10\x80\x58\x24\x5b\x45\x96\x8b\xc4\xa9\xc2\xc1\x7b\x29\xf7\xe9\x40\x89\x3b\x57\xa3\x90\xf2\x74\x3e\xbf\x5c\x41\x29\x35\x9c\x12\x4f\xc9\xbb\x54\xc7\xe9\x08\xfa\xab\xe3\xe4\xb5\xcb\xbb\xfd\xaf\x5d\xda\xeb\x5f\x4b\xe7\x38\x24\xa2\x3e\xe4\x6b\x5d\x6a\xf3\x9f\x88\xe8\x86\xc3\xa1\xfb\xf2\x97\xbf\x0c\xaf\xbd\xf6\x9a\xd6\x7e\x00\x8b\x1a\x70\x5b\xaf\x43\xcc\xb7\x50\x58\x36\xdd\x32\xe1\x79\x4f\x53\xf0\xb0\xac\x87\xa8\x8d\xdb\xfe\x3f\xa3\xae\xda\x78\x9d\x96\x09\x96\x97\x16\x8c\xb8\xb6\xe1\x79\xd4\x4d\x1b\x3a\xda\xc2\x4a\x39\x6a\xc1\x59\x75\x14\x1b\x9a\xfa\x26\x97\xed\x6d\xf3\x6a\x82\x8f\xc1\x6d\x4d\xd9\x5a\x63\x82\xe5\x95\x51\x03\x9b\x62\xa9\x79\x23\x10\xc0\x39\x82\x14\x09\xba\xd5\x92\x81\xc5\x40\xc5\x7f\x7e\x41\xad\xbc\x73\x88\x7b\xd0\x79\x1a\xaa\x43\x70\x6c\xe2\xa9\x78\xe7\x02\x5e\xc1\xa7\xc4\xb8\x84\xa0\x9b\x66\xd8\x47\xaa\xdf\x57\x04\xa2\xde\xbb\xdd\x2e\x0c\x87\x43\x8e\xa0\x69\x9a\x1c\xe0\xbf\xa6\xdf\x34\x79\x14\x35\x9c\x25\x0f\x84\x5c\x37\xda\x1c\xb9\x64\xc0\x26\x57\xa4\xf5\x6d\x99\xf9\xb2\xec\xf6\xed\xdb\xf0\xc3\x1f\xfe\x30\x03\x00\xbf\x60\xa9\x36\x65\x04\x95\xf2\x32\x02\x80\x11\x01\x8c\x8e\xba\xf3\xdd\x7b\x1b\xe3\x5b\x4f\x56\xa6\x37\x09\x8b\x3c\xbc\x42\x50\x32\x09\xd6\x16\x81\x73\x18\x80\x4a\xf3\x15\xb3\x4a\x79\x1a\xac\x3a\x08\x79\x20\x60\xf0\x3c\xbd\xc6\xe9\x5e\x63\xe7\x79\x30\x6d\x07\xd9\x67\x62\x49\xea\x8f\x08\x9d\x0c\x37\x4f\x1f\xa7\x5f\x7c\xf1\x49\xff\xab\xdb\x7b\xbd\xed\x62\xad\x4b\xbf\x58\xe7\xc2\x2f\x63\x04\x22\x72\xeb\xeb\xeb\x6e\x75\x75\x15\x8c\xc0\x85\x84\x6f\xaf\xe7\x31\xa0\x68\x41\x0a\x38\x6e\x8d\x6b\xb0\x16\x8e\xd0\x73\x1b\x45\x4c\xc2\xc5\x2a\x6f\x5a\xbe\x9a\xa2\x1f\x23\x14\x2c\xc5\x41\x4b\xaf\xd5\x55\xac\xe0\xb1\xca\xa7\x0d\x1c\x21\xda\x9a\xe8\xd3\xd2\xc6\x4c\x29\x58\x79\xc6\x06\xc9\xc7\xcb\xe2\x6e\x03\x1f\x82\xb5\x06\x72\x8b\xc7\x62\x07\x97\x26\x81\xff\xbc\x71\x87\x94\x16\xce\xfb\x4d\x83\x64\xa8\x3f\xc7\x28\x46\x51\xc1\xef\xae\x04\x60\x67\x9d\x00\x3a\xcc\x07\xfc\x02\x86\xc3\xb3\xc4\xcc\xd3\xe1\x1f\x4d\xb7\x01\x05\x96\x19\xb0\x4b\x1b\x51\xe6\x01\x00\x04\x72\x00\xaa\x60\x17\xe0\x00\x1c\x00\xa6\x48\x51\x8b\x72\xdb\xc8\x4c\xde\x76\xfe\xfd\x79\x1a\x31\x6d\xd2\x5a\x3c\xb8\xe0\x71\xd1\x94\x10\x49\x78\x8c\xa5\xc0\x07\x9e\x90\x50\x6c\xc2\x21\xd3\xc1\xc1\xc1\x41\xf6\xf0\xe1\x43\x00\x00\x60\x8b\x73\xb9\xd7\x65\xe1\xfe\xa2\x69\x42\xc7\x4f\x86\xd3\x7b\x77\x36\xc6\x9f\x1e\x75\xe6\x8f\x01\x2a\x85\xa5\xa6\x0f\x17\x4c\x57\x6e\x4d\xc6\xfa\x7a\x18\x10\xb0\x00\x54\x31\x21\x54\xf8\x78\x5c\x75\xb3\x68\x1d\x83\xf4\xbe\x54\xbb\xb3\xa9\x74\x4b\x2e\xdc\x73\x54\xcb\x1f\x6a\xb4\x15\xca\x4b\xda\x9b\xb9\xed\x17\x0e\xbb\x5f\xb9\xf6\x78\xf0\xfe\xd6\x41\xe7\x2c\x40\xb5\xcb\x88\xdf\x69\xe1\x17\xad\x5d\xbe\x7c\xd9\xbd\xfc\xf2\xcb\x16\x73\xca\x35\x4c\x6d\x19\x36\xd6\x82\x93\x02\x6e\x41\xbb\x16\xb0\x4d\xf9\x68\xcf\xda\x6f\xa8\x3c\x16\x3d\x4d\xf0\x16\x0d\x1a\x3e\x2d\x48\xc1\xd1\x44\x4f\x13\x7c\x53\x68\x2a\x9f\xf6\x4d\x33\x42\x62\xcb\x17\x1a\x48\x63\x07\xd6\x58\x9e\x0a\xc1\xb7\x55\xc2\x9b\xf0\xf1\xfe\x11\x82\x6d\xf2\x30\x84\xbc\x9f\x6d\x69\x92\x69\xb5\xba\xb7\xda\xbf\xa9\x7e\x42\xfd\xa7\x8d\xb2\xd1\xa6\x4f\xc9\xb8\x90\x72\xcd\xf3\x2b\x77\x55\x02\x78\x4f\x76\xb9\x48\xb7\x6c\xb7\xda\xee\x65\x3f\x1d\xcf\xbc\xe6\xda\xac\xcd\xc2\x73\xed\xb8\x75\x41\x09\xc3\x09\x40\x0b\x06\xb0\xa6\xf1\x84\x0e\x21\x25\xa0\xac\xd8\xf0\xb1\xac\x72\x11\xdb\x2f\x64\x3d\x87\xfa\xb0\x16\xd7\x96\xaf\x42\xb0\x6e\xe1\xa1\x21\xb4\x51\x5e\x42\x02\xb5\xa9\x92\xa5\xb2\xb3\xc0\x9c\xbb\xbb\xbb\xf0\xb3\x9f\xfd\x4c\x1b\x18\x54\xaf\x4b\x06\x74\x7c\xdc\xcd\xf6\xef\x6c\x8e\x6f\x3e\x5a\x9d\xde\x9c\x23\xcd\x34\x07\x1c\xdb\xb1\x94\xbb\x07\xb9\xfb\x64\x41\x89\xc8\x57\xc8\xb0\x69\xd0\x12\x86\x4f\x19\x55\x6b\x5e\x98\xaa\xc2\xcf\x6c\xf1\x2a\x87\xf0\xfc\xf8\x2f\x1e\xce\x2b\x31\xa5\xf2\x8f\x00\x40\xf5\x2d\xd3\x08\x00\x8e\xa0\xbf\x32\x49\x5e\xba\xb8\xd7\xfd\xc6\xcb\x4f\x06\x5f\x5c\x1d\x27\xfe\x0a\x74\x7e\xbe\x4b\xe9\x79\xd9\xda\xda\x82\xb7\xdf\x7e\x1b\x5e\x7a\xe9\x25\x59\x1d\x9a\x60\x6d\x3b\x90\x34\x09\x78\x1e\x67\x85\xb6\x83\x54\x9b\x10\x23\xf8\x96\xc1\xa7\x85\xd8\x3c\x96\x19\x50\x9f\x17\xfd\x5a\x68\xc2\xbd\x6c\xdd\x6b\x4a\xed\xb2\x0a\x8f\x86\xbb\xc9\xf3\x13\x13\x6f\x09\x65\x0b\x77\xac\x07\xc9\xf2\xae\x48\xbc\x96\x0c\x0d\xe1\x96\xcf\x9a\xfc\x8d\x49\xc7\x83\x55\xf7\x56\x7c\xc8\xc3\xd5\xb6\x8f\xb4\xa1\xb7\xc9\xb8\xaa\xda\x0e\xc9\x11\x02\x64\x08\x99\xe6\x5c\x81\xd2\x88\xad\xe2\xf3\x3b\xe7\x02\xd8\x65\xc0\xc2\x10\x95\x13\x47\x94\x7b\x4d\xea\x5f\xd8\x4a\xc7\xc6\x3c\x08\x00\x21\x23\x07\xd9\xcc\xd1\x4c\x28\x3b\x96\xb3\x40\x0b\x4d\xce\x84\x36\x4a\x26\x87\x6f\xcb\xaf\x31\xf1\x9c\x06\xc7\x01\x43\x4c\xcb\xad\x6e\x1e\xdf\x94\x01\x1f\x18\x62\xac\x10\x99\x9f\x2a\x94\x77\x77\x77\xe1\xe3\x8f\x3f\x2e\xa7\x8a\xd8\xd9\x2e\x35\xaf\x0b\x11\x4d\x88\x68\x84\x88\x93\xb9\xa3\xc3\xa7\xc3\xe9\x83\xdb\x9b\xe3\x4f\x8e\xba\xf3\xa7\x00\x95\x26\xcd\x19\xc8\xbf\xfb\x29\x9d\x52\x31\x59\x38\xf2\x1f\x4a\xd7\x4a\xed\x46\x2e\x86\x47\x4e\xe7\x54\x60\x95\xb2\xa2\x6d\x85\x06\xf0\x8b\xc1\xaa\xb3\x5d\x8a\x4b\x13\x2b\xdc\x3e\x5e\xac\x69\x42\x40\x48\x32\x58\x5d\x1b\xa5\x6f\x5c\x7d\x3a\xf8\xd5\x17\x9f\xf4\xaf\x75\x66\x38\x2c\xd6\xb9\x94\xca\x0b\x11\x95\x07\xd4\x6d\x6d\x6d\xb9\x2f\x7d\xe9\x4b\x70\xf5\xea\x55\x4d\x28\xc7\x0c\x8a\x5a\x1a\x4b\x78\x59\x1e\x1c\x2b\xbd\xcc\x27\x94\x87\xf6\x3d\x94\x87\x0f\x96\x02\xd3\x94\xd6\x1a\xc4\x9a\x42\x93\xf0\xb5\xf2\x89\xa5\x4b\xa6\x89\x69\x1f\x59\x16\xff\x9c\x29\xdf\x63\xf2\x09\x3d\x6b\x69\x25\x2d\xa0\xc4\xfb\xe7\x26\xfe\xe1\xf2\xc3\x0a\x31\x42\x5d\x1b\xf4\x25\xde\xd0\x20\x6d\x7d\x8f\xf1\xe0\xb5\x09\x96\x7c\x8d\xe1\x4d\xcb\xc8\xb4\xda\x20\x46\xf9\xf3\x38\x2d\xf9\x1f\xa2\x45\x3e\xb7\x19\x50\x17\xda\xdc\xf2\x5a\x67\x00\x30\x71\xd9\x6c\x92\x66\x23\x02\x66\xc8\x16\x83\x02\x95\xb2\x9c\xea\xc7\xfd\xfb\xb5\x2e\xc4\xbd\xe4\xd5\xff\x45\xa6\xe5\x2e\xa1\x7c\xb1\x6d\x75\x0a\x7a\x81\xa8\xb8\x22\x00\x4b\x45\xa6\x3c\x2b\x03\x98\x82\xe4\xf3\x28\xbd\xf6\x15\x1d\x04\x90\x4d\x1d\x8d\x46\x9d\xec\xd8\x4f\x7d\x01\x80\x93\xe5\x0d\x79\xed\x65\x5d\xb5\xf8\x6e\xe9\x01\xda\x78\x6d\xc9\x0c\xad\x7f\x5a\x7d\x8e\xe7\xe3\xb4\x0f\xa1\x4e\xa8\x09\x31\xf9\xac\x65\xc8\x05\x8d\x16\x2c\x42\x43\x1d\x2e\x1b\x8f\xc7\x70\xf7\xee\xdd\x0c\xa0\x9a\x32\x2a\x7e\x6b\x0b\x75\x11\x31\x3f\x51\x17\x61\x34\x4a\xb3\xfd\xdb\x9b\xe3\x9b\x8f\x56\x27\x9f\xcd\x1d\x4c\xbc\x96\x5b\x6e\x65\x26\xb1\x20\x17\xeb\xca\x84\x0c\xf2\xc8\x66\x1f\x7c\x1a\xee\x25\xa9\xf1\x8f\x32\x81\xba\xe0\x8a\x64\x6e\xcb\x9a\xbe\xce\xa7\xa6\x6a\xda\x91\x3f\x34\x89\x00\x01\x5d\xb1\xde\xe5\xdd\x57\x1e\x0d\x7f\xf5\xc2\x41\xef\x12\x02\xf6\x81\x6a\xd3\x46\x0e\xa0\x72\xa1\x9e\x3e\x7d\xda\xbd\xff\xfe\xfb\xb0\xbd\xbd\x2d\x8b\x19\x63\xe9\x4a\x25\x95\xa7\xb3\x94\x02\xe9\xa2\xd6\x94\x57\x99\xce\x52\x9e\xa5\xa0\xe4\x38\x42\x82\xd6\x12\x80\x9a\x90\xb6\x84\xaa\xa9\x60\x0b\x5c\xb1\x41\x13\xf6\x96\x11\x20\x15\x41\x3e\xa0\x5b\xf5\xa9\x95\xc1\xfa\x0d\x19\x14\x1a\xee\xd8\x78\xed\xd7\x8a\x0b\xc1\x84\x8c\x21\x19\xa4\xcc\x6a\x52\x56\x35\xbe\x8f\x1d\x58\x65\x3a\x0f\xd7\xc6\xd8\xe3\xb8\x9b\x78\x2b\x24\xec\xb5\xba\x0c\x29\x3a\x21\xda\x24\x4c\xe8\x59\x2a\x44\x31\xfd\x20\x46\xf6\x73\x5a\x9a\xe8\x30\xaf\x66\x21\x04\x98\xa4\x34\x3b\xee\x64\x87\x73\x47\x23\x00\x28\xaf\x75\x01\xe0\x9e\xed\xfc\x8e\xbb\x3c\x11\x94\x82\x1a\xa1\x0e\x5b\xfa\x4b\xbc\xc1\x89\x00\x48\xd5\xd9\x5e\xb5\xdd\x48\x1c\x87\x47\x50\x9b\x36\xaa\x16\x35\x2e\xe6\x53\x54\x00\xd2\x6c\xd4\xc9\x76\xf7\xfa\xb3\x3d\x7f\xad\x8b\x56\x4e\xa3\xfc\xa1\xf1\x5a\xbe\x4b\xbd\x40\xf2\x8e\xd6\xee\x3c\x58\x32\x43\xcb\x53\x2b\x83\x26\x93\x33\x1e\x83\x9e\xa9\x5b\x00\x00\x16\x15\x49\x44\x41\x54\xc1\x99\x2d\x24\xd4\x6b\x89\x03\x85\x90\xe9\xac\x8e\x1e\xd2\x9e\x4d\x0d\x6c\x77\x77\x17\xfe\xee\xef\xfe\xae\x96\xae\xf0\xbc\x48\xa5\xa5\x9a\x32\x42\x18\xed\x0c\xa6\x8f\x6e\x9d\x1a\xff\xf4\xb0\x3b\x7f\x4c\x08\x99\xf7\xb6\x78\x2f\x8b\x3c\xf6\x5f\x5b\x8c\x15\x0c\x54\x67\xfa\x32\xae\xee\x72\xa9\x4d\xef\xf0\xdf\x32\x33\x8f\x87\x2d\xe4\xaa\x6d\x9f\x13\x89\xaa\xbb\x90\x0a\x6f\x0e\x61\xda\x99\xe3\xf9\xb3\x47\x9d\x6f\x5c\xbf\xb7\xf2\xb5\xb5\x71\xb2\x09\xf5\xb3\x5d\x52\x22\x2a\x4f\xd7\x45\x44\xd8\xd8\xd8\x70\xdf\xf8\xc6\x37\x64\x89\xb8\xc6\xac\xb5\xb5\x54\x5c\xe5\x20\x1b\xb2\xfa\x9a\x2c\xd3\x10\x3f\x49\x3c\x96\xe2\x1d\xca\xc7\x12\xa8\x4d\x4a\xbc\x15\x62\x04\xaf\x65\x7d\xca\xb4\x56\xbf\xb2\x06\x04\x39\xa0\x87\x04\x4c\xec\x60\x6b\x09\x38\xcd\x70\x59\xa6\xcc\x4d\xb2\xa0\x8d\xd2\x17\x93\x7f\x48\x59\xb2\xde\x7d\x5c\xdb\xc1\x54\x4b\xdb\x44\xa3\x05\xd3\xa4\xf0\xc4\x04\x8b\xef\x2d\xbe\xd0\x60\x2c\x85\x47\x06\x4b\x76\x6b\xf4\x58\xe9\x63\xe1\x82\xf9\x98\x1e\x07\xcc\xa7\x59\x8e\xbb\xf3\xc3\x89\xcb\x0e\xf3\xb8\xca\x52\xad\x4f\xef\x30\xa1\x5b\xb9\xe0\x6b\xde\x71\x36\xd3\xcf\xf2\xc0\xfa\x6e\x24\x12\x30\x52\xa9\xe0\x16\x6e\xa9\x24\xd5\xbd\xf8\x7e\xca\x6a\xee\x68\x74\xd8\x9b\x3d\xde\x19\xce\x76\x8b\x71\x0f\x00\x4a\xe3\x3d\x63\x1b\x57\xb4\x10\xd3\x17\x43\xc6\x42\x0c\xcf\xc4\x04\xa9\x94\xb4\xe2\x09\x4d\xf0\x69\x0c\xeb\x7f\x43\xdf\xda\x58\x40\x3c\x58\xf9\x68\x95\x52\xd2\x49\x44\x70\x78\x78\x58\x6a\x74\x6c\xb1\x6e\xa9\xbc\x10\x51\xa9\xb8\x00\xc2\xf1\x2c\xa1\xe3\x5f\x6c\x8e\x7e\xfe\x68\x75\xf2\xd9\xb4\xd0\xb4\x8b\xa1\xde\x7b\x2b\x54\x25\xc5\xf3\x14\xf3\xdc\x55\xa1\x74\xe5\x55\xee\x90\xda\x04\x10\x2e\xf0\xe0\x42\x5a\xee\xa9\xac\x69\xe0\xbe\xcf\xa0\x48\x53\x73\x53\xb2\x75\x35\x6c\x9f\x34\x02\xa6\xbd\xa9\xbb\xb2\xbd\xd7\xfb\xf6\x17\xef\xac\xbd\x5d\xdc\x22\xbd\x70\x9f\x11\x40\x71\x28\x13\x22\x38\xe7\xa0\x38\xb8\xc9\x07\x4d\x63\x06\x58\x64\x66\x2d\x64\xca\x5f\x88\xe9\xb5\xb8\x98\xce\xd7\xa4\x1c\x87\xac\xe3\x26\xfc\x21\x25\x43\xc2\x87\x06\xc6\x58\xda\xda\x08\x95\x90\xd0\x6e\xea\x7f\x9a\x92\x60\x59\x46\x12\xaf\x2c\xab\x55\xf6\x58\x5a\x2c\xb8\x36\x32\x24\xa4\x04\x49\x01\xd9\x36\x34\x0d\xc2\x16\x2d\xa1\xb6\x0d\x79\x28\x34\x18\x2b\x9f\x58\x45\x67\x41\x7e\x06\x60\x25\x4d\x16\xac\xa5\x50\x87\x68\x93\x34\x5a\xf2\x40\x53\xe0\x2d\x3c\xd6\x18\x54\xed\xf6\xac\x14\x98\xcc\xbf\x67\x48\xd9\x61\x6f\xbe\x37\x49\x69\x1f\x20\xf7\x90\x94\xf2\x96\xd8\x75\x2d\x7e\xea\x87\x79\x5c\xf8\x20\x50\xdb\x8d\x5a\xae\x5f\xe4\x00\x75\x8f\x0b\x95\xee\x72\x31\xad\x53\x58\xb8\x54\xd3\x84\xaa\x34\x7e\x1d\x25\x01\x64\xe3\x94\x0e\xf7\x7b\xf3\xc7\x7b\xfd\xd9\x71\x51\xa6\x8c\xe7\xc9\x97\x16\x28\xe1\x59\xfa\x01\x40\x33\x1f\xb7\xcd\xaf\x89\x17\x55\xf8\x26\xe6\xb2\x06\x0f\x4b\x70\xc5\x58\x15\xfc\xbd\x69\xf0\x32\x05\xd0\xe1\xe1\x61\xf6\xdd\xef\x7e\xd7\xa2\x77\x06\x00\x33\xe1\x75\x99\x64\x40\xc7\x4f\x86\xd3\xc7\xb7\x4e\x8d\x3e\x3e\xe8\xcd\x1f\x66\x08\x33\x7f\x52\x6e\xa5\x10\x53\x7d\x4e\xd2\x3f\x17\x0c\x58\xe3\x5b\x76\xa1\x62\x39\xed\x83\x9c\xef\xea\x1c\xe8\xa7\x73\x7c\x1a\xbf\xbb\xa9\xd4\xc8\x19\xb3\x51\xa9\x29\x51\x4d\x11\x07\xac\xa6\x44\x51\xe0\xad\x92\x53\x51\x51\xd8\x1d\x4c\xdd\xf5\x2f\x3c\xe9\xff\xf6\x2b\x0f\x87\xd7\x7a\x33\x5c\x05\x82\x3e\x11\x75\x11\xb1\xf4\xba\x14\xeb\x5d\xdc\xea\xea\xaa\xfb\xbd\xdf\xfb\x3d\x70\xce\x49\x2b\x3a\x86\xd9\x63\x60\xda\x0c\x00\xff\x19\xa1\x6d\x27\x79\x5e\x69\x9f\x77\x08\x79\x54\xb4\xd0\xa4\x14\xb4\xc1\xd5\x36\xb4\xf1\xb8\xb5\x4d\xd7\x26\x7f\x2e\x3f\xda\xd0\x14\x1a\xb0\xdb\x78\xe6\xac\xf8\x18\x25\xc2\x7a\x0f\xc9\xdd\xb6\x1e\x1e\x4d\xf1\x90\x0a\x88\x65\x1d\x73\x7e\x5c\xd6\xb3\x14\x8a\x8b\x81\xaf\xd1\x5a\x1c\xfb\x90\x01\x54\xcb\x09\x8a\xf8\x0c\x11\xb3\x0c\x69\x76\xd8\x9b\x1f\x9e\x74\xeb\x3b\x4d\xbd\xe1\x59\x1d\x71\xaa\x9c\xf4\x52\x78\x65\xa4\x13\xc5\x6f\xd8\xe0\xe7\x7f\x11\x77\xc3\x97\x8f\x15\x46\x2f\xf6\x91\x5d\xe8\xcb\xe9\xa9\xaf\x08\x40\xc8\x1c\x4c\x46\x69\xb6\xbb\xdf\x9f\x3d\x9c\xba\x6c\x22\x96\x4a\x70\x43\x5e\xa9\xb2\xb2\x9e\x64\xfd\x85\x78\x56\xeb\x3f\x21\xbc\xb1\xa1\xa9\x4d\x83\xfd\xa8\x8d\x6b\x32\x64\x01\xcb\xb4\x6d\x06\xb1\x26\xc5\xc8\xfa\x56\x06\x76\x05\x40\x4d\x71\x01\xb6\x35\xba\x58\xa8\x3b\x42\xc4\xd1\xe7\xa7\x47\x37\xee\xaf\x4f\x3e\x19\xa7\x85\x9b\x10\xa0\xbc\xa3\xc8\x33\x5f\xdd\xed\x57\xe4\x23\x97\xb5\xb0\x9d\x48\x28\x94\x09\x1e\x6a\xde\x41\x9e\x06\x40\x9f\x5e\xf2\xcf\x05\xbc\x36\xb5\x24\xd7\xc4\xf8\xcb\x1a\x3d\x84\x9f\x5b\x75\x04\xdd\x8d\x71\xfa\xc1\x9b\x0f\x56\x7e\xf3\xc5\x9d\xc1\x95\xde\x0c\x57\x11\xb1\x0f\xf9\x29\x92\xe5\x85\x8c\x7e\xbd\x4b\x9a\xa6\xf0\x47\x7f\xf4\x47\xd0\xe9\x74\x94\x92\x00\x40\xb3\xb0\x5b\x46\xe1\x89\x11\x8e\x31\x69\xda\xe6\x63\x09\x70\x0b\x77\x5b\xab\x38\x84\xa3\x4d\x9e\x9a\x37\xd2\xb2\x56\xb5\x7c\x62\xeb\x98\xe3\x0e\xd5\x4f\x08\x4f\x6c\x9d\xb4\x11\x74\x4d\x65\x8d\xc9\x87\x0b\xe0\x18\x45\xad\xc9\x80\xfa\xaf\x0a\xcb\x7a\xa2\xda\xa6\x6b\xf2\x06\xca\x6f\x96\x77\x2e\x94\x4f\x5b\xcf\x5c\x8c\xb1\xa0\xe6\xcd\xee\xf8\xa9\x7d\xf7\x03\xfc\xdc\xc1\xe4\xc9\x70\xba\xfb\x78\x65\xf6\xd9\x34\xa1\x72\x1c\xe0\xc2\x75\xe1\x60\x38\xbe\x94\x05\xaa\xcd\x1b\x0b\x6e\x78\x66\xdd\x22\x4f\x04\x4c\x21\x61\x4b\x5c\xb4\xc0\xc7\x06\x6e\x2c\xcf\x1c\x8d\xf6\x06\xb3\x87\x8f\x57\xa6\x0f\xa4\xb2\x92\xe3\x25\xe9\x6d\x69\xcb\xc7\x12\x46\xeb\x3f\x6d\xc2\xb2\x46\x51\x30\x1f\x79\xe4\xbf\x0f\x54\x64\xc2\x7f\x65\xe0\xf1\x0e\xea\xf5\xab\xc1\x87\x70\x59\x41\xa3\xa1\x7c\xce\xb2\x0c\x7f\xf2\x93\x9f\xc0\x9b\x6f\xbe\x09\x49\x92\xc8\x71\x1d\x19\xbc\x3f\xfa\x19\x01\x20\x9d\x24\x04\x69\x86\xc9\xc6\x49\x7a\x76\x30\x75\x1b\x09\x61\xc2\xf9\x93\xca\xe3\xf6\xa9\x60\x7e\xaa\xbb\x52\xca\x35\x25\xc5\x6f\x01\x87\x0c\xac\xf0\xab\x80\xbf\x32\x80\x1f\xf5\xef\xa7\xa6\x80\x2b\x3c\xb5\xc5\x2c\xb5\xc7\x6a\x0a\xaa\x38\x16\x9a\x2b\x50\xa5\xf7\xd2\x7b\x85\x20\xd7\xf2\x73\xe5\xab\x50\x92\x08\x7a\xdd\xb9\x7b\x61\x65\x92\x64\xc7\xdd\xec\xe1\x71\x67\x7e\x3c\x4f\xf2\xed\xe3\x88\x48\x45\x07\xe0\x8e\x50\x7c\xe3\x8d\x37\xe8\xb3\xcf\x3e\xc3\xc9\x64\x22\xfd\x9a\xd6\xb3\x7f\x0f\x7d\xd7\x82\x95\x26\x94\xf6\x79\xe5\xa3\xe5\xd5\xb6\xbc\x31\x81\xc3\x95\xfe\xb5\x16\x79\x92\xf1\x1c\x93\x27\x41\x7c\x1d\x6b\x69\xa4\x77\xa7\x09\xcf\x32\x75\x24\x1c\xf0\x8d\x38\xb5\xc0\x65\x84\x06\xaf\xe5\x11\x9b\x4f\x53\x5a\x4b\xf6\xb9\x96\x30\x1a\x2d\x31\xf2\x77\xd9\xfa\xb1\xca\x65\x05\x0b\x56\xa3\x31\xa6\x5e\x9f\x25\xde\xac\x93\x77\xdf\x7d\x17\x9d\x73\x5e\x9c\xfb\xb1\xc9\x1f\xfb\xdf\x81\xe2\x88\x08\x72\xd4\xe9\xce\xdc\xe0\xdc\x61\xf7\x0b\xbd\x99\xdb\xf0\x87\x51\xd4\x0d\xcd\x22\x33\x66\x95\x72\xb9\xeb\x13\x94\x32\xdc\x07\x26\xef\xfd\x8e\x24\x3e\x84\x68\xe7\xb8\x10\x40\x6d\x0c\xa9\xb4\x9a\x7c\x7c\xc9\x80\xb2\xc3\xde\xfc\xc1\xad\x53\xa3\x1f\x7d\x76\x66\xf4\xb3\xcc\xc1\x21\x00\x1c\x43\x3e\xa3\x30\x86\x7c\x6d\xe7\x94\x6d\x54\xc9\x00\x80\x76\x77\x77\xe1\xc6\x8d\x1b\x6c\xf4\x0a\xd6\xab\xc5\x13\x4d\x7d\x34\x66\x6c\x97\xed\x27\xd3\xc4\xca\xf1\xa0\xbb\xa6\x69\x6e\x53\x6a\xba\x4d\x9a\x98\x14\x80\x31\x41\xa3\xa1\xf6\x3c\x1e\x8f\x35\x3a\xb8\xd7\x85\x9f\xeb\x52\xee\x32\xba\xb3\x31\xfe\xc5\xbd\x8d\xf1\xa7\x47\xdd\xf9\xd3\x0c\x28\xab\xb7\x6a\xe5\x15\xf1\xef\xfc\x04\x5b\xe9\x5d\xf1\x77\x0a\x01\x67\x4c\xa8\xb4\xed\xda\xc9\xbb\x55\xec\x82\x27\xa5\x54\x5a\x40\x74\x82\x12\x37\x56\xb7\x14\xb0\xb4\x1e\xbe\xea\x50\x45\x2f\x29\x73\x41\xe8\xcc\xf1\xec\xd9\xa3\xce\xaf\xbc\xf6\x60\xf8\xe1\xf9\x83\xde\xa5\xce\x0c\x87\x50\x9d\xf1\xc2\x4f\xd6\x75\x00\x00\xdd\x6e\xd7\x7d\xf4\xd1\x47\x70\xe6\xcc\x99\x26\x2f\x43\xac\xeb\x5d\xc2\x87\xbe\x69\xe9\x9b\xbc\x10\x5a\xbe\x96\x77\x60\x59\x37\xa5\x45\x6b\xe8\x59\x86\x18\x57\x6d\xdb\x3a\x8d\xa5\x47\xe2\x88\xf1\x40\xc5\x4c\x47\x34\xd5\xa7\x06\xdf\x94\x47\xc8\x23\x65\xc5\xc5\x7c\xb3\x68\x0a\x05\xcd\x6a\xb4\xac\xd7\x36\x56\x25\x4f\x6b\xf1\x7e\x8c\xc5\xdc\xa6\xbc\x12\x4f\x1b\x58\xab\xbd\x9b\xea\xa7\x09\x5f\x2c\x7c\x53\xbc\xba\xf4\x40\x39\x65\x7d\x06\x08\xb3\x0c\x61\xf2\x70\x6d\x72\x6f\xb7\x3f\xbb\x35\x77\x34\x29\x0f\xf5\x2c\x86\x4f\xbe\xed\x19\x98\xdc\xd5\x4e\xb4\x2d\x8d\x47\x66\x22\xe4\x5e\x6f\xac\x7b\x57\x8a\xef\xd5\x1a\x9a\xea\xd7\x2b\x2b\x8b\x5e\x98\x1c\xc7\xcc\xd1\x68\xbf\x3f\xbf\xff\x64\x38\xbb\x3d\x4d\x68\x04\xf5\xb3\xcb\xfc\x73\x39\x45\x06\x00\x70\xe3\xc6\x0d\xf8\xfe\xf7\xbf\xcf\xcb\xef\xc3\x32\x5e\xd2\x50\xba\x18\xdc\x16\xdf\x34\x79\x6e\x17\xe8\xd3\x3c\x2e\x52\xd3\x6f\xd2\x8a\x24\x1c\xf7\xbe\xf0\xb8\x0c\xea\xb8\x24\xde\xa6\x6f\xdc\x6b\x56\xfb\x7e\xff\xfe\x7d\xbc\x74\xe9\x12\x75\xbb\x5d\x6d\x36\x05\x89\x28\xf1\x0b\x51\x8b\x32\xa7\xb3\x84\x88\x10\x60\x7d\x9c\xae\x0f\x27\xe9\x46\x9a\x61\xaf\x96\x48\xd1\xae\x81\x40\x78\x3b\xbc\x9a\x50\xfc\x62\xc5\xd4\x5c\xf9\x20\xc6\x94\xb2\x23\x50\x81\x94\x2b\x43\x8a\xce\x52\x53\x58\xf8\xa5\x5f\x3e\x9f\x72\x3b\xb7\xcf\xd3\x5f\xf0\x55\xd1\x8e\x49\x86\xab\xbd\x59\xb2\x92\x10\x8e\x46\xdd\xec\xe9\x71\x27\x3b\xc9\x5c\xde\xb1\x0b\x2d\xdd\xbb\x57\x09\x11\xa9\xdf\xef\xe3\xd6\xd6\x16\xed\xee\xee\xe2\xe1\xe1\x61\xc8\x4a\x0f\x59\x48\x1a\xff\x58\x69\x2c\xcf\x80\xf6\x2c\xbd\x03\x12\x8f\x95\x9e\xc3\x37\x59\xbb\xa1\x60\xd1\x20\x9f\x43\xe9\xad\xfc\x9a\xea\xd4\x07\x49\x7f\xd3\xb3\xc4\x11\xaa\xd3\x50\xbe\x21\x3c\xb1\xf0\x4d\x69\xa4\x15\x28\x8d\x9e\x26\x5e\x91\xf8\x63\x3c\x2e\x21\x19\x24\xe1\x35\xf9\x24\xf3\x8d\xf1\xb2\x70\xbc\x1a\xbc\x85\x5b\xa6\x6d\xe2\x59\xad\xae\x90\xfd\x69\x7d\xd5\x4a\x27\xe5\xbc\x06\x6f\x8d\x23\xa1\x36\x96\x63\x86\x84\xe7\xf4\x71\xba\x6b\xe1\xfe\xfd\xfb\x78\xe5\xca\x15\x3f\xdd\xed\x8a\x4b\x79\x4b\xd9\x0f\xf9\xf4\x78\x07\x00\xbb\x93\x84\x70\x7d\x9c\xae\x6d\x8e\x3a\xdb\xdd\xb9\x5b\x45\xa8\xae\xf0\xcd\xcf\xd0\xaa\x32\x2b\x09\x5d\xd4\x2c\xaa\x78\x4e\x15\xe6\x72\xb8\x76\x11\x63\xf1\x5d\x7a\xd3\x17\x6e\x70\xac\x50\x14\x70\x04\x27\x9d\xec\xc9\xed\xcd\xf1\x4f\x6f\x9e\x19\xfd\x64\xd4\xcd\x76\x01\xe0\x08\x72\x8f\xcb\xb8\xf8\x9b\x42\xbe\xb6\x73\xe6\xeb\xee\xfe\xfd\xfb\x74\xe3\xc6\x0d\xcd\x61\x10\xc3\xa7\x1a\xbc\xd5\x7e\x31\xb2\x74\x59\xdc\x0b\xe9\xb8\xe2\x62\x29\x28\x92\xa1\xe5\xb3\x87\xa9\x8d\xf1\x4a\x9c\xd6\x31\xa5\x62\x23\x71\x3a\x96\x2e\x63\x69\x6b\x4c\x7e\x78\x78\x88\x7b\x7b\x7b\xb0\xb5\xb5\x45\xfd\x7e\x5f\x16\xd4\x33\x2e\x14\xbb\x67\x12\x00\x70\x80\xe0\xc6\x69\x46\xdd\xb9\xeb\xad\x8d\xd3\x53\x83\x99\x5b\x75\x94\xdf\x32\x5d\x31\x66\x9e\x75\x4d\x11\x21\xc8\x77\xef\x10\x56\xeb\x54\x80\x9d\x78\x2b\x18\x93\x58\x1c\xb1\xe9\xa1\x8a\x6f\xd9\x3d\x49\x24\xd2\xf9\xca\xc4\xfa\x37\x64\xef\x9c\x56\xbf\x25\x9a\x7b\x76\xca\x06\x41\x04\x47\x98\xa4\x84\xeb\xfd\x19\xf6\x11\xf0\xe8\xa4\x9b\xed\x1e\x77\xe6\x27\xe0\xd0\x0b\x88\x05\xe1\xbf\xb2\xb2\x82\xeb\xeb\xeb\x74\x74\x74\x84\x07\x07\x07\x4d\xc2\x51\x0b\x21\xfe\x79\x1e\xe1\x59\xf0\x35\xa5\x5b\x86\xee\x65\xe8\xb1\xd2\x84\x94\x7b\x58\x22\x9f\x65\xc3\xf3\x6e\x33\x8e\x33\x24\x5b\xd4\xfe\x6e\xd0\x65\x7d\xd3\x06\x40\x2b\x70\xf9\x64\x29\x3a\x5a\x9e\x52\xb6\x69\xf8\x64\x7c\x68\xd0\x97\xb8\x9b\xea\x47\xd2\x67\x0e\xea\x4a\x7e\x1c\x7f\x48\x81\xd1\xca\x10\xf2\xa0\xcb\x7a\x6f\xa2\x9b\x2b\x67\x72\x3c\xb0\x06\x36\x95\xc6\xc3\xc3\x43\xba\x7e\xfd\x3a\x0a\x43\xd6\x2b\x2e\x0e\xf2\x1d\x95\x1d\x40\x48\xc9\x41\x67\x8e\x44\x9b\xa3\xf4\xf4\x70\x92\x9c\xc9\x0d\x58\x43\x33\x09\x04\xbf\x5b\x08\x85\xc5\xeb\xd7\x2a\x2e\xaa\x25\x2c\x14\x42\x5e\xc2\x20\x5b\x2f\x30\x73\x34\x7a\xb2\x32\xbd\xf9\xf3\xd3\xa3\x7f\xbf\xb7\x3e\xfe\x9c\x1c\x1c\x43\xae\xb4\x9c\x40\x35\x9b\xe0\x6f\x87\xf6\x63\x25\x3d\x7a\xf4\x88\x8a\x9b\xa1\x7d\x68\x52\x4e\x79\x68\xe2\x03\xad\x8f\x86\xd2\x69\xfc\x6b\x29\xc0\x16\x2c\x01\xd4\x15\x97\x10\xa3\x73\x04\x72\xbe\x5b\x12\x2e\x99\x95\xa7\x91\x15\xc8\x71\xf8\x02\x64\x81\xf4\x4e\xc0\xfb\x78\xdc\xdb\xdb\xcb\xae\x5d\xbb\x86\x2b\x2b\x2b\x88\x88\x58\x78\x11\x2a\x87\x03\x51\x02\xb9\x12\xe3\x0a\x0f\x4c\x32\x4f\x00\xe7\x8e\xb2\xe1\xc4\xad\xac\x8e\x93\xcd\xce\x1c\x57\xbc\x22\xe2\x8b\xc4\x0b\x07\xe0\xf9\x08\xcb\x9d\x40\x5c\xd1\xe0\xef\xc0\xd2\x55\xd3\x48\xf5\x2b\xce\xab\x35\x34\x75\x6f\x09\xcf\x8f\x47\x78\x5c\x75\x85\xc5\xe7\xeb\xb5\xa3\xc5\x6f\xa5\xc2\x8f\x00\x0e\xb0\x93\xce\xdd\x5a\x6f\x8e\x3d\x02\xd8\x3f\xe9\x66\xbb\x27\x69\x36\x01\x2c\xdd\x8c\xc4\xb6\xd3\x11\x22\xd2\xea\xea\x2a\xae\xac\xac\xd0\xc9\xc9\x09\xee\xef\xef\x87\x18\xd2\x12\x9a\xf2\x39\xc6\xbb\xa6\x31\x32\x17\xac\x3e\x1f\xe9\xa2\x8c\x11\xda\x32\x0f\x2d\x4f\xce\x9f\x00\x8b\xf4\x6a\x9e\x45\x60\xf9\xc7\x74\xc6\x90\x25\xcd\xbd\x94\xbc\xac\xb1\x42\x21\x34\x08\x05\x85\x82\x02\x17\xaa\xd3\x26\xc1\x63\xd1\x25\x07\x2a\x39\xf8\x73\xfa\xfd\xbb\x1c\x28\x43\x8a\x86\x36\xd8\x69\xb4\x59\xd6\xa6\x25\xec\x35\x78\x29\x17\x2d\x1c\xbc\x1d\x63\x14\x03\x8d\xb7\xb4\xfa\x91\xf1\x1a\x7e\xad\x1d\x64\xbb\x5a\x83\x90\x46\x8b\x55\x3f\x4d\x3c\x63\x0d\x70\x56\xdd\x37\xd1\xa2\xf6\x87\xb7\xde\x7a\xcb\x2b\x2e\xa5\xd2\xc2\x0c\x57\xff\x97\x02\x40\x67\x9c\x66\xd4\x99\xbb\xee\xfa\x38\x3d\xd3\x9f\x25\xeb\x8e\x30\xa9\x19\x7d\x05\x45\x04\x50\xf3\x6e\x83\x7f\x66\x86\xa8\x37\x62\x3d\x2c\x00\xd4\xd6\x2b\xfa\x71\x02\x58\x1a\x5e\x59\xfe\x8d\xbc\x4c\x27\x80\xcc\x51\x76\xd0\x9f\x3f\xf8\xfc\xf4\xf8\x47\x37\x4f\x8f\xfe\xd7\x51\x77\xfe\x14\x11\x0f\x89\xe8\x18\x11\xf3\xe3\x3e\x00\xc6\x44\x34\x43\xc4\x19\xe5\xc2\x7b\x7e\xfb\xf6\xed\xec\xe3\x8f\x3f\x06\x61\x70\x36\xf1\x9d\x25\x97\xb4\xfa\xb6\xfa\x9f\xd5\xc6\x9c\x27\x78\xbb\xc7\xf0\x7a\xad\xff\x73\xc5\xa5\x89\x48\x8e\x4c\x1b\x6c\x2c\xa1\x6a\x31\x97\x14\x54\xbc\x30\x16\x43\x5b\x42\x06\x01\x00\x93\x24\x81\xcd\xcd\x4d\xea\xf7\xfb\x5e\x21\xf0\x4c\x0b\x98\x07\x80\xea\xfc\x92\x04\x00\xdc\x24\x21\x4a\x32\x4c\xd6\xc6\xc9\xe6\x70\x9a\xac\x27\xe4\x3a\x7c\x35\x6d\xe9\xdd\x00\xa8\xa6\x89\x3c\xb3\x72\xc6\x84\x32\x49\x49\x1d\x16\x08\xf8\xfa\x13\x00\xaa\xd6\xce\x20\xe6\x27\x2c\x96\x8b\x68\x2b\x0e\xe7\x4a\x8d\xcf\x33\x5f\x74\x5b\x57\x9a\x38\x5c\xf9\xec\x61\x79\xde\x75\x25\xa9\xdf\x99\xbb\xf5\xde\xdc\xa5\x19\xc2\xfe\x71\x37\xdb\x1d\xa7\xd9\x14\x10\xfc\x42\x5d\xbf\x68\xb7\x20\x13\x69\x7d\x7d\x1d\x07\x83\x81\xa5\xbc\xc8\x36\x6c\xea\x1c\xa1\x8e\x64\xa5\x97\xcc\xce\x07\x3d\x14\x71\x31\xf9\x4b\x1a\x9a\xf8\x53\xd2\x2b\xe9\x91\xb8\x42\x69\xad\x3c\x43\xf9\x84\x06\x8c\x90\x41\xa1\xe5\xa1\xf5\x23\xab\xce\x3d\x6e\x8b\x56\x4b\xc0\x85\xea\x46\xc6\x6b\x4a\xa8\x55\xfe\x18\xd9\x20\x83\xa5\xa0\x84\xda\x20\x66\x50\xf5\x70\xa1\x1d\x1a\x5c\xf8\xc6\x28\x2c\x3c\x1f\x4b\x79\x96\x71\x21\x05\x0e\x94\xf8\xa6\xbe\x22\xeb\x55\x33\x3c\x2d\xf8\x26\x9e\x89\x6d\x33\x0b\xb7\xd6\x86\x0b\xe3\x8b\x50\x5c\x00\xa0\x3c\x29\x1c\xa1\x90\xfd\xc5\x6e\xca\x4e\xe6\x20\x9d\xa4\xd9\x7c\x75\x92\xac\xad\x8e\x93\x53\xdd\x0c\x87\x7e\x4f\x12\x31\x04\x5e\xd9\xe0\x8b\x76\xab\xa9\x79\xa8\xe4\x35\x93\xf7\xc8\x61\xa0\x4a\xc3\x0f\xe4\xe5\xcb\x04\xa8\x58\x36\xc0\xf1\x8e\x3a\xd9\xde\x9d\x8d\xf1\x4f\x6f\x9c\x3d\xf9\xe1\xe3\xd5\xe9\x1d\x72\x78\x04\x00\x47\x88\x78\x4c\x44\x27\x88\x38\x85\x7c\x61\xae\xdf\x70\x31\x47\x44\xfa\xf4\xd3\x4f\xe9\x93\x4f\x3e\x69\xbb\xae\xd4\xea\xcf\x9a\x32\x43\xca\x77\x50\x60\x9a\x70\x6b\xbc\x6b\xa5\x73\x00\x40\xd6\xae\x22\xcd\x1a\xd2\xe2\x43\xd6\x93\x86\x4f\x06\x8b\x69\xdb\xc2\x13\x40\xee\x16\xbb\x78\xf1\x22\x6e\x6e\x6e\x72\x86\xe5\xc1\xef\x2c\xf2\x8a\x4b\x92\x39\xc0\x99\xa3\xac\x3b\x77\xfd\xf5\x71\x7a\xaa\x37\x75\x6b\x0e\xf3\x21\xbb\xa6\x39\x7b\xa6\x2d\xa9\xcb\x01\x6a\x8c\xe7\x61\xc8\xa7\xa9\xee\xa9\xf0\xcc\xe8\x95\x96\xf2\x9a\x46\x84\xfc\x97\xa0\xae\xa8\x94\x19\x15\x05\xf4\x1d\x83\x77\x1e\xa8\xb4\x72\x1f\x89\xc0\xe2\x0b\x32\x81\x75\xaa\xfc\x15\xc1\x11\xf4\xbb\xb9\xf2\x92\x64\x8e\x76\x8f\x7a\xf3\xbd\x49\x42\x53\x90\x17\x20\xb1\xdf\xf5\xf5\x75\x1c\x0e\x87\x74\x78\x78\xc8\xd7\xbc\xc4\x4e\x23\x58\x5e\x8d\xd0\x7b\x0c\x7e\xab\x33\x68\xf9\x5b\xfc\x69\x7d\x8b\x1d\x64\x64\x7a\xcb\xd5\x1d\xa2\x2f\x36\x68\x03\x6a\xcc\xe0\xcb\xdf\x63\xeb\xc7\x1a\x94\x43\x75\x18\x6a\xbf\x90\x41\x24\xeb\xcb\xf2\xca\x59\xb4\xcb\x6f\x32\x4d\xa8\xcc\x5a\xbc\xb6\x29\xc1\xaa\x4b\x8b\x56\xcd\xc2\xb4\x3c\x54\x5a\x5e\x0b\x02\xdb\x80\xb7\x78\xd6\xb2\x60\xf9\xb7\x10\x5e\x69\x90\x5a\xe5\x94\xf8\xac\xf5\x8c\x5a\xbb\x6b\x74\x59\xf5\x63\x79\x3b\x17\x8c\xe6\x95\x95\x15\xdc\xd8\xd8\xa0\x34\x4d\x79\x5a\x00\xc8\xd7\x3c\x02\x40\xc2\xbc\x2f\xe9\x38\xcd\xef\x5b\x5c\x99\x26\xab\x83\x69\xb2\x9e\x66\xd8\xe5\x07\x4c\x70\x0f\x49\x5d\x9b\x01\xf0\x06\x65\x15\x9f\xbf\x23\xfb\x56\x8a\x68\x86\x8f\xb0\xee\x71\x97\xc6\x2a\x01\xc0\xd4\x65\xa3\x87\x6b\xd3\x4f\x3f\xdd\x3a\xf9\xd7\xbb\xeb\x93\x9f\x4f\xf3\x03\xf3\xca\xdd\x44\x85\xc7\x65\x02\xb9\xc7\x65\x8e\x88\xf3\x22\x29\xdd\xbb\x77\x8f\xee\xdd\xbb\xb7\x8c\xac\xd1\xe4\x98\xd5\xaf\xa5\x0e\xd0\x84\x8f\xff\x4a\x78\x8b\x0f\x16\xfa\x7f\x68\x3b\xb4\xf6\xac\x69\xed\x21\x78\x4f\x80\x15\x1f\x12\x34\x5a\x01\x38\x9c\xda\xe1\x36\x36\x36\x70\x7d\x7d\x9d\x3a\x9d\x8e\xdf\xd2\x9c\x0f\xe9\xd5\xd5\xe6\xa5\xd6\x9d\xcf\x8a\x60\x3a\x49\x29\x23\x44\x5c\x99\x24\xab\xeb\xe3\xe4\x74\x9a\x61\x0f\x10\x00\xd9\xa2\x59\x5f\xf8\xb2\x90\x58\x9d\x95\xe2\x39\xb2\xc6\x94\xfe\x91\x2b\x40\x35\x3c\xe5\x92\xde\xfc\xad\xd6\x11\xbc\x46\x5e\x21\xd5\x3a\x4d\x99\x07\x02\x77\x12\x2d\x6c\xcb\x13\xaf\x65\xaa\x84\x60\xd0\x9b\xb9\x8d\xde\xcc\x75\x66\x8e\x9e\x1e\xf6\xe7\x7b\x53\x47\x19\x57\x5e\x8a\xce\x54\x53\x5e\x36\x36\x36\xe8\xe9\xd3\xa7\x78\x7c\x7c\x2c\xad\xe4\x26\xe1\xda\x34\xb8\x73\x41\xe6\xdb\x89\x17\x55\xe6\xa3\xf1\x82\xc5\x3b\x9a\x72\xad\x79\x07\x2c\x7e\xb3\xca\xc7\xf9\x5b\x96\x8b\xe3\xd4\xbe\x69\x65\x0a\x95\x2f\x66\x40\xe5\x71\x72\xb0\x0c\x2d\x90\xd7\x06\x81\xa6\x41\xdd\xe3\xe5\xb8\xe5\x60\x24\x07\x18\x9e\x97\x36\xa8\x36\xc9\x14\xcb\x30\x92\x7c\xd8\x66\xfd\x05\x2f\x8b\x56\x6e\x6d\x70\x8c\x91\x91\x9a\x42\x66\xf1\x60\x93\x72\xd6\x24\x3f\xb5\x10\xaa\x43\x1f\x17\xe2\x73\x59\x1f\x21\x39\x1f\xd3\x7e\x4d\xed\xe6\xe3\x34\x58\x1e\xc7\xd3\xa9\xb8\x6f\xdf\xbe\x8d\x5f\xf8\xc2\x17\x60\x65\x65\x45\xca\x14\xef\x7d\x4f\x8b\x77\x07\x00\x29\x20\xb8\xe3\xce\x7c\x42\x08\xd4\x9f\xb9\x61\x7f\xea\x56\x13\x65\xbd\x4b\xed\xc6\xe8\xd2\x98\xad\x84\xb4\x7f\xa7\x82\xa2\x9a\x62\xc2\x0a\x97\x23\x13\x9b\x32\x84\xb1\x39\x73\x34\xd9\x19\xce\x7e\x71\xe3\xec\xf1\x0f\x3f\x3f\x35\xfa\xd9\x51\x6f\xfe\x84\x00\x0e\x20\xf7\xb6\x9c\x14\xde\x96\x31\x14\xeb\x5b\x0a\xa5\x65\x0e\x00\xd9\xce\xce\x4e\xf6\xf9\xe7\x9f\xc3\xd3\xa7\x4f\x9b\xfa\x8e\x16\xb4\x7e\xa9\xc9\xcc\x90\x62\xc3\xf3\x0c\xb6\x95\x41\x9f\x26\x97\xcb\x5f\x6d\x71\x6e\xa8\x70\x31\x0a\x84\x7c\x27\x91\x8e\xc7\xcb\x77\x4b\xf0\x59\x2e\xe4\x85\xce\x7f\xef\xde\xbd\x6c\x63\x63\x03\xcf\x9d\x3b\xe7\x15\x96\x72\x9d\x78\xa1\xa8\x20\xe4\x73\x9b\x5e\x99\x71\x80\xe0\x26\x09\x65\x09\x41\x67\x63\x9c\x6e\x0e\x26\x6e\xd3\x81\x73\xa5\x02\x50\xd3\x84\xcb\x53\x52\x2a\x3d\x9a\x29\x17\x25\x73\xfa\x4f\x8c\x53\xfd\xa9\xbc\xd5\x92\x5e\xa8\x16\xec\x02\x87\x03\xe0\x13\xa7\x15\xce\x1c\x96\x18\x4d\xc8\x70\x7b\x3c\xa5\x12\x53\xf4\x9e\xdc\xcb\x53\x1e\xad\x57\xe5\x01\xe8\x12\x82\xb5\xfe\x3c\x39\x3d\x9c\xba\x64\x92\xd0\xc3\xc3\xfe\xfc\x68\x96\xd0\xac\x38\x61\x12\xb9\xd2\xe2\x7f\x57\x57\x57\x71\x6b\x6b\x8b\xee\xdd\xbb\x07\xa3\xd1\x48\x13\x50\xa1\x41\x58\x6b\x3f\x8b\x59\xad\xc1\x53\x76\x2c\x8b\x5f\xb5\x0e\x56\x2b\x4b\x20\x0d\x7f\x0f\x0d\xe4\x1a\x3c\x80\x3e\x10\x85\xea\x87\xbf\x4b\xbc\xb1\x03\x9a\x86\x4b\xd6\x63\x88\x56\x4d\x60\x59\xf9\xf9\x3a\x95\x03\x9c\x55\x1f\xda\xa0\x28\x95\x9e\x90\x3c\x69\x6a\x03\xcd\xe2\xd7\x2c\x36\x8d\x16\x5f\x66\x00\x1d\xbf\x54\x7e\x65\xfb\x69\x8a\x1a\x08\x78\x59\xc6\x4c\xc0\x58\xfd\xc5\x92\xc7\x5a\x19\xb4\x77\x2d\x9e\xd7\xbf\xc6\x17\x21\x05\xce\xaa\x53\x09\x23\x0d\x10\x0d\x17\x08\x18\xcf\x0b\x92\x36\x89\xdb\x52\x92\x79\xa0\x0b\x17\x2e\xe0\xda\xda\x1a\x25\x49\xc2\x61\x73\x7b\xb3\xb8\xe6\xa4\x98\x2e\x4a\x88\x28\xc9\x12\xc0\xa3\xee\xfc\x84\x90\xb2\xc1\xcc\xf5\x07\x33\xb7\x9a\x64\xd8\xcd\x2d\x51\x36\xf5\x8e\xb0\xb0\xc6\x51\x06\x2c\xfe\xab\x8d\x05\x40\xc5\x54\x10\x41\xa5\xb4\xd4\xe5\x32\x15\xe9\xe6\x48\xb3\x9d\x95\xe9\x9d\x4f\xcf\x1e\xff\xbf\x9f\x9d\x1d\xfd\xaf\x83\xfe\xfc\x51\x86\x70\x80\x88\x27\x6c\x8a\xe8\x04\xaa\xab\x6d\x66\x88\x38\x2f\xd6\x28\xd2\x0f\x7e\xf0\x03\xfa\xd9\xcf\x7e\x56\xa2\x64\x64\x35\xf1\x86\x66\xec\x71\x3c\xb2\xdf\x6a\x38\x6a\xed\x20\xf0\x4a\xfe\x91\x7d\x10\x15\xb8\x05\x45\x35\x61\x48\x33\xa8\x77\x28\xad\x43\xf0\xce\xa7\x15\x0e\x94\x77\x50\xde\x79\xd0\xb4\xac\x26\x41\x15\xd2\xfa\xdc\x85\x0b\x17\xe0\xcc\x99\x33\xe4\x9c\x2b\xd7\xba\x14\x4a\x4b\x0e\x54\x79\x61\xbc\xd6\x9d\xcc\x5d\xe6\xe6\x0e\xb2\xee\xcc\xf5\x36\x4f\x3a\x5b\x9d\x39\x0e\x4b\x17\x1f\x53\x8b\xa9\x3c\x1f\xc5\x97\x96\xbf\xd7\x0f\x9c\xf3\x4a\x84\x67\x5a\x20\xa6\x9f\x97\x8c\xbf\xa0\xd3\x17\x59\x15\x79\xf3\x35\x2c\xde\xcb\xe3\x69\x2a\x20\xf5\x75\x2e\xbe\xa3\xd5\x3d\x3b\x40\x45\x67\x41\xf4\xde\x20\x4c\x32\x5c\xed\xcf\x92\xb3\x2b\xe3\x24\x39\xee\x64\x77\x77\x07\xb3\x23\x40\x24\x02\xca\xf2\x75\xce\x94\x15\xf5\x45\x45\x1e\xb4\xb2\xb2\x82\x97\x2f\x5f\xa6\x1b\x37\x6e\xe0\x6c\x36\x93\x0a\x2d\x17\x2c\xfe\x19\x04\x8c\x6c\x67\x80\x45\xc1\x28\x05\x93\x13\xdf\xb4\xe9\x05\xad\x73\x48\x01\x6a\xe5\x63\x09\x5c\xab\xc3\x69\xb4\xf1\x3a\xd0\x82\xaf\x0b\x8f\x93\x3f\x6b\xfc\xcf\xeb\x45\xd2\x28\xcb\x0e\x0d\xf5\xa3\xd1\xa2\xe5\x17\x53\x56\xde\xc6\x00\x8b\xf8\x9b\x04\x99\x54\x72\xb4\x01\x54\x1b\xe0\xad\xa0\xe1\xe1\xcf\x21\x79\xc6\x07\x4c\x4b\xa9\xe1\xf5\xc9\xeb\x07\x40\x57\x8a\x43\xca\x89\xc6\x9b\xb2\xee\xa5\x6c\xd3\x94\x5d\x9e\x9f\xcc\x5f\x06\xad\xef\x59\x0a\x8f\xc5\x2b\x5e\x51\x95\xfc\x2d\x79\x50\x6e\xb0\xb0\xc6\x04\x5e\x56\x59\xbf\x5a\xff\x91\x03\x98\xec\x9b\xb5\x70\xf3\xe6\x4d\x7c\xe1\x85\x17\x60\x73\x73\x93\xa7\xcf\xc5\x6f\x2e\x30\x13\xf1\xeb\x66\x09\xc1\x61\x6f\x7e\x9c\x21\xd0\x60\x9a\x0c\xfa\xb9\xf2\xd2\x91\x72\x5a\x2a\x26\xf9\x38\x51\x51\x46\xec\x9b\xa7\x8e\xc0\x1f\x99\xc1\x76\xa1\xb2\x13\x4b\xfd\x4d\xd4\x99\x83\xd9\xd3\x95\xe9\xad\xff\x38\x77\xf4\xcf\x9f\x6e\x8d\x7e\xba\xdf\x9f\x3d\xca\x1c\xec\x03\xc0\x31\x22\x1e\x16\xbf\xc7\x50\x9c\x0a\x8f\x88\x13\x3f\x45\x84\x88\x34\x1e\x8f\xe9\xd6\xad\x5b\xf4\xe4\xc9\x13\x4f\x01\x27\xdb\xe2\x6f\x8d\x9f\x35\xfe\xd0\x78\x47\xc2\x6a\xc1\xb7\x9d\x36\x66\x73\x1c\x9a\x5c\x58\xc0\x9d\xb0\x8f\x1a\x12\x2e\xb0\x64\x86\x5c\xf0\xca\x8e\x68\x05\x4d\x98\x59\x9a\xb5\xe6\x8e\x0e\xd1\x59\x7e\xbb\x73\xe7\x0e\x26\x49\x02\xdb\xdb\xdb\x65\xc3\x14\x83\xae\x03\xc8\x6f\x43\xc6\xea\x5c\x17\x07\x00\x09\x20\xba\x69\x9a\x65\x99\x03\xb7\x31\x4a\x57\xd7\x47\xe9\x96\x03\x2c\x8f\xe3\xf5\x25\x2d\xd7\xbb\x20\x94\x8a\x44\xa5\x6a\x60\x05\x03\x82\x99\x0b\x2e\xf7\x0c\x4f\x25\xce\x4a\xe3\xf6\x58\xaa\xff\xa1\x5a\xb8\x5b\x91\x20\x60\xa1\x52\x5a\xd8\x33\xef\x45\xb9\x12\x44\x65\x7c\xa5\x08\x41\x31\x1d\x86\x98\x10\xac\x0e\x66\xc9\xf9\x8d\x51\x9a\xec\x0d\xe6\x37\x0e\xfa\xb3\x31\x20\xfa\x33\x5e\xa0\x58\xb4\x5b\x90\x94\x13\xde\xeb\xf5\xe8\xf5\xd7\x5f\x87\x1f\xfe\xf0\x87\xa1\x45\x95\xf2\x19\x1a\x9e\xad\x81\xcd\xc2\xad\xc5\x5b\x7c\x12\xa2\x2d\xd4\x61\xac\x01\x36\xa6\x4c\x32\x68\xf9\x35\x09\x82\x10\x6c\xdb\xfa\x0e\xe5\xa1\xe1\x0c\xe1\xb3\x68\x0f\xe5\xd9\x26\xc4\xd6\x69\x5b\x5c\xfc\x3d\xc4\x2f\xa0\xc0\xf0\x6f\xda\x00\xab\xc9\xc1\x50\xfd\x58\xde\xc0\xa6\xe7\x18\xcf\x4a\xc8\xb3\x67\xd1\x63\x85\x90\x8c\x97\x0a\x48\x93\x8c\x97\xc6\xaf\xcc\x5f\x2a\xce\x16\x1e\x1f\x67\x29\xe8\x74\xed\xda\x35\xdc\xdc\xdc\xf4\xb8\x3c\x3c\xff\xf3\x71\xe5\xfa\xc7\x59\x42\xd9\x61\x6f\x7e\x34\xea\x64\xc7\x9d\xb9\x4b\x06\xb3\x64\x35\xcd\x5c\xaf\x94\xbf\x04\x35\x61\xcc\xd7\x40\x7a\x6c\x72\xdc\xf0\x63\x06\x10\x1f\x13\xea\x78\x00\x01\xe6\x8e\x66\x4f\x87\xb3\x9b\x3f\xda\x3e\xfc\xc7\x1b\x67\x4f\x7e\x76\xd8\x9b\x3f\x26\x07\x07\xc0\x94\x16\x60\xa7\xe5\x12\xd1\x98\x4f\x11\x01\x40\xf6\xb7\x7f\xfb\xb7\x59\x71\x76\x4b\x93\x4c\x91\xcf\xcf\xc2\x1f\x4d\xe1\x79\xf6\x65\xf8\xdf\x05\x07\x12\x44\x8e\x84\x17\x8d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x87\xf5\x52\x8c\xea\xb6\x01\x00") +var _web_uiV1StaticMstile310x150Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x2a\x40\xd5\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x02\x2e\x00\x00\x01\x0e\x08\x06\x00\x00\x00\xae\x0e\x9c\x74\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xc4\xbd\xe9\x93\x25\x47\x75\x37\xfc\xcb\xba\x75\x97\xde\x7b\x7a\x7a\x7a\x46\xb3\x6b\x24\x84\x18\x09\x10\x20\x84\x8c\x81\x87\xc5\x38\xfc\x86\x03\xfc\x12\xc6\x38\xde\xf0\x27\xff\x61\xf6\x27\x47\xd8\x01\x26\xde\xb0\x43\xc6\x5b\x18\xb0\x10\x18\xa4\x07\x61\xd0\xc2\x68\xa6\x35\x9a\x7d\xed\xe9\xe9\xe9\xf5\xae\x99\xef\x87\x5b\x59\x75\xea\xdc\x73\x32\xf3\x8e\xf0\xf3\xe6\x44\xcf\xad\xca\x3a\x79\xf2\x64\xe6\xc9\x73\x7e\xb9\x54\x96\xc1\xff\xd9\x90\x01\xb0\xff\x3f\xa4\xcf\x00\xd8\x66\xb3\x99\xfd\xe5\x5f\xfe\xa5\xbf\xcf\x00\xe4\x00\x5a\xc5\x6f\x07\xc0\x6c\x7b\x90\xcd\x9f\xd9\xec\x3c\xfb\xd2\xf5\x85\xff\x67\x65\xaf\xf9\x87\x19\x4c\xcb\x39\x00\x66\xcc\xc8\x00\x80\x03\x9c\x71\x80\x33\x80\x29\x1f\xc1\x39\x07\x03\x03\x67\xc6\x34\x3e\x81\xbf\x35\x05\x1f\x07\x96\xb6\xba\xad\x78\x17\xa9\x4c\xc1\xdd\x39\x07\x63\x8a\x9c\x5c\xc1\x9e\xe4\x0d\xce\x1b\x80\x29\x1f\x8e\xe3\x4d\x45\x2d\xde\xf7\x72\xb7\x7f\x6b\xa9\x77\xf1\x17\x67\xb6\x5f\xbd\x37\xdf\xbf\xe9\x0c\x76\x81\xda\xdf\x3e\xf9\xeb\x03\xe8\x16\xbf\x7d\x8c\xdb\x65\x58\xfc\x5a\x00\x78\xe3\x8d\x37\xec\xaf\x7e\xf5\x2b\x14\xf7\xa1\xb6\xcb\x08\x0d\x18\x1d\x7d\xc6\x7f\x25\xde\x3c\x9f\x0c\x72\x90\x64\xd2\xe4\x48\x91\x01\xc2\xbd\x16\xb8\xbc\x21\x99\x78\x39\xb4\x7a\x92\xca\x20\xd5\x13\xcd\x2b\xc6\x3b\x54\x6e\xce\x8f\x87\xd4\x36\x08\xc9\x1d\xab\x0f\xa9\x4c\x9a\x0e\xf1\x38\xca\x83\xd3\xa4\xe6\x19\xaa\x53\x9e\x8e\xf3\x4e\xd1\x3d\x5e\x6f\xd3\xe8\x35\xa5\x97\xfa\x47\xa8\x1f\x69\x7d\x68\x5a\xdd\xd3\xe2\x78\x9a\xff\xa3\xbc\x9f\x78\xe2\x89\xec\x1b\xdf\xf8\x46\xf9\xdc\x39\x97\x19\x63\x72\xe7\x5c\x0e\x20\x37\xc6\xe4\x00\x5a\x9d\x41\x36\x7b\xfa\x61\xfb\xf8\xf9\x3b\x73\x9f\x3f\xba\xdb\xfa\x46\x7b\xd0\xf8\x44\x06\xcc\x7a\xe6\xc4\x2d\x54\x11\x20\xb6\x9c\x05\x4a\xef\xdc\xd8\x3e\xbb\xe2\xc2\xc1\x75\x07\x0d\x77\x6d\xa7\x3d\xfc\xe1\xfa\xda\xc1\x3f\xfc\x76\x6d\xef\xda\x76\x7b\xb4\xeb\x32\xf4\x9d\x73\x43\x63\x4c\xdf\x39\x67\x8d\x31\xd4\xc6\xda\xe1\x70\x88\xbf\xfe\xeb\xbf\x8e\xf5\x83\x69\xf4\x19\x0a\x7d\xac\x5f\x4d\x63\xc7\x52\xfa\x79\xd0\x66\x34\x94\x87\xff\x53\xc1\xc5\x49\xc4\x90\x15\x69\xa5\xf4\x99\x10\xcf\xe3\xcc\xc2\xc2\x82\xf9\xf6\xb7\xbf\x8d\x66\xb3\xe9\x41\x4b\x06\xa0\x89\x71\x1d\xb4\x01\xb4\x33\x8b\xce\xda\x6e\xf3\xc4\xf3\x77\xe7\xfe\xd7\xda\x6e\xeb\xeb\x0d\x67\x96\x00\x03\x53\x2a\xa2\x83\x29\x01\x87\x47\x32\x63\xa0\x60\x0c\x00\x33\x8e\x35\x06\x65\x1a\x53\xa0\x96\xf1\xf3\xb1\xc2\xc2\x98\x0a\x54\xb8\x82\xb7\xa1\x80\xc3\x54\x69\xca\x7c\x4c\xa9\xf9\x06\x55\x9a\x4a\x8e\x3a\x6f\x63\x48\xe7\x00\xc6\x32\xc2\xc1\x71\xde\x05\x50\xea\xe5\x76\xff\xd6\x62\xff\xe2\x7f\x9f\xd8\x7d\xfd\xee\x42\xef\xba\x35\xd8\x81\xd1\x41\x8b\x73\xae\x0b\xa0\x5f\x74\xa4\x11\x18\x68\xf9\xf9\xcf\x7f\x6e\xdf\x79\xe7\x1d\x58\x6b\x49\x21\x4a\xd1\xe9\x9f\x6f\x57\xde\x09\x4a\xbc\x57\xfc\x59\xc6\x83\xd2\xf2\x78\xc3\xd2\x39\x72\x4d\x79\x79\x1d\xc9\x58\x5a\x2e\x07\xcf\x87\x76\x34\xc7\xd2\xf3\xce\x27\x95\x99\xd2\x18\xe1\x9a\xd6\x0d\xe7\x2d\xd5\x13\xaf\x4b\x40\xae\x53\x28\x69\x6d\x80\x9e\xb6\x0f\xad\x37\x4a\x4b\xeb\x96\x96\x85\xb7\x95\x83\x5c\x4f\x9e\x9e\xeb\x02\xe9\x25\xb5\x3e\x4d\x65\x93\xe4\xa7\xfc\x80\x7a\x9b\x49\xed\xc0\xdb\x92\xc6\x6b\x79\xf2\xfc\x79\x9b\x69\x6d\xc7\xeb\x90\xca\x4d\x79\xd3\x74\xbc\x1e\x52\xf4\x9a\xca\xc2\xc1\x19\xd7\x69\x9a\x86\xeb\x27\x95\xc5\x61\x92\x37\x2d\x37\x6f\x43\x5e\x4f\xd4\x26\xd3\x72\xd0\xf4\xbc\x9d\xa4\xfa\xe1\xf9\x69\x75\xef\xeb\xaf\x2c\xc3\x99\x33\x67\xcc\x57\xbf\xfa\x55\x34\x1a\x8d\xcc\x18\x53\x82\x16\x8c\x01\x4b\xcb\x18\xd3\x04\xd0\x5e\xd9\xcb\x0f\x9d\xbf\x33\xf7\xfc\xf9\x3b\xf3\xff\xf7\xea\x5e\xeb\x5b\xed\x61\xf6\x8c\x81\x99\xe1\x19\x4e\xd4\x92\xa9\xdf\x7a\xa1\xe9\x20\x14\xa8\x06\x95\xa6\x30\xd4\xc6\x20\x6f\x38\xb3\xd4\x19\x36\x9e\x5e\xea\x36\x4e\xcd\xf6\xf3\xcd\xbd\xf6\x68\xb7\x9b\xdb\x91\x35\x70\xc6\x98\x6a\xe0\x0a\x38\xe7\xc6\x5c\xb3\x2c\x73\xe7\xcf\x9f\x37\xbf\xfd\xed\x6f\x61\xc7\xc6\x96\xea\xbc\xff\xf5\x75\x4a\xdb\x85\xd7\x1f\x20\xb7\x1f\xef\xc3\x3e\x78\xbd\xa2\x3a\x23\xd9\x69\xde\x2e\x5c\xc7\x1c\xfb\xe5\xbc\xc1\xae\x0d\x00\x93\x23\x1c\xb4\x51\xc1\xff\x74\xe0\xf9\x84\x46\x4a\x92\x3c\xb5\xb8\xc3\x87\x0f\xe3\xab\x5f\xfd\x2a\x66\x66\x66\x28\x68\xc9\xc9\x6f\x0e\xa0\xb5\xd0\xcd\x97\x4f\x6f\xcd\x9c\x3f\xb2\xd3\xfa\x7c\x3e\x32\xab\x25\x20\x81\x07\x01\xa6\x04\x08\xa6\x98\x15\xa9\x66\x44\x0a\x65\x34\xd5\x5c\x46\xa9\x11\x35\x0d\x2f\x66\x65\x5c\x71\xed\x15\x18\x06\x05\xee\x00\xef\x1a\x15\x00\xf1\x53\x33\x0e\xce\x15\x79\x94\x20\xa4\xe2\x5d\x02\x9c\x42\x08\x53\xb2\x32\x44\x9e\x82\xb7\x71\xe8\x36\xed\xee\xed\x85\xfe\xe5\xb7\x9f\xd8\x7d\xf3\xce\x62\xef\xfa\x28\x0b\xce\xb4\x74\x9d\x73\xdd\x02\xb0\xd0\xbf\x12\xb4\xfc\xec\x67\x3f\xb3\x97\x2e\x5d\xc2\x70\x38\x8c\x8d\xa2\xd4\x36\x43\x78\x04\x96\xaa\x1b\x5a\x1a\x8e\xf2\xb5\x91\x06\xbf\x96\x46\xd7\xa1\x91\x73\x68\x04\x23\xc9\x96\xd2\xdf\x24\x99\x34\xde\x5a\xda\x94\x3a\x8a\x8d\xa2\xa4\x7a\xd2\x46\x4e\xa1\xf6\xd2\xf2\x4e\x7d\x2e\xb5\x23\xcf\x3b\x64\x2b\x34\xf9\x52\x74\x41\xa3\xd1\xf2\xe3\xbc\x43\x75\x99\xd2\x46\x3c\x2f\xa9\x7d\x42\xf5\xca\xdb\x98\xe7\xef\xef\x53\xfb\x5f\x4a\x7f\xf1\xbc\xa5\xfe\xcd\xcb\x12\xcb\x23\xf4\x7c\x82\xc7\x53\x4f\x3d\x95\xbd\xf4\xd2\x4b\x68\xb7\xdb\x59\x01\x02\x4a\xd0\x02\x32\xf3\xbe\xb2\xd7\x5c\xfe\xe8\xbd\xd9\x4f\x3f\xf5\xa0\xf3\xc7\x4b\x07\xf9\xcb\xb9\x35\x6b\x80\xc9\xfd\x44\x78\x69\xa2\x01\x11\x9a\x99\x9a\xbd\xf7\x24\x46\x86\x0a\x40\x39\x50\x75\x06\x79\xe6\xdc\xf2\x7c\x2f\xff\xfc\x99\x87\x26\x37\xc0\xff\xfb\xee\xd1\xbd\x37\xef\xcf\x0f\x36\x86\x0d\x97\x61\x3c\xc3\xed\xd3\x0c\xfd\xf5\xec\xec\xac\xa4\x33\x92\x3e\xc4\xf4\x15\xc2\x33\x1f\x34\x3d\xd1\xec\xb4\xa4\x47\x5a\x5e\x92\xec\x1a\x3f\x00\xd5\x8c\x0b\x45\x61\x34\xc4\xee\x35\x01\x1e\x77\x66\x85\xe6\xa3\xcd\xa4\xf0\x11\x41\x34\xbf\xa5\xa5\x25\xf3\xc2\x0b\x2f\x64\x05\x4a\x35\xc6\x98\x86\x73\xae\x89\x31\xca\x6e\x03\x68\x37\x47\x66\xfe\xe4\xa3\xf6\x47\x9e\xb9\x3f\xfb\xb5\xe5\x83\xfc\xc5\x86\xcb\x66\x6b\x0a\x68\x4a\x57\x5f\x20\x5f\x02\x6a\xca\xb8\xfa\x02\x0c\x57\xe0\x22\xf3\xea\x99\x31\x05\x60\xa9\x66\x6a\x8a\x1c\xca\xfc\x4a\x5d\xf7\x60\xc3\x03\x10\x72\x6f\x2a\xe6\xa4\x1f\xb9\x12\x68\x69\xc1\xc1\xa1\x9b\xdb\xdd\xdb\x8b\xfd\xcb\x17\x8e\xee\xfd\xf7\x8d\xe5\xde\xfb\xbd\xdc\x6d\x39\xb8\x6d\x63\x8c\x08\x5a\x00\x44\x41\xcb\xfa\xfa\x3a\x7a\xbd\x1e\x45\xde\xd3\x82\x5d\x8a\xc2\xb9\x2e\xc4\x74\x8b\x8e\x90\x25\x5a\x6d\xa4\xc6\x79\xf3\xd1\xb6\x43\x5c\x1e\x3e\xa2\xa6\x71\x12\x3f\x30\x19\xa6\x2d\x2b\x1d\x41\xa7\xd6\x8b\xbf\xd6\xea\x87\x8e\xcc\x2c\x8b\x0b\xe5\x41\x69\x42\x3c\x62\xd7\x26\x91\x8e\x8f\xe2\x24\xd9\x38\x2f\x69\x04\xa8\xf1\x8c\xd5\x91\x25\x34\xd2\xa8\x56\xd3\x25\xb0\x74\x92\x8d\xe3\xf9\x4b\xba\xaa\xc9\xc4\xcb\xaa\xa5\x91\x78\x83\x5c\x5b\x4c\x96\xc1\xb0\x3f\x4f\x1f\xaa\x43\x69\x26\x44\x02\xf6\x5c\x5e\xce\x5f\xaa\x5b\xe9\x19\xe7\xe1\x00\xe0\x99\x67\x9e\xc9\x3e\xf5\xa9\x4f\x61\x69\x69\xc9\x83\x96\x1c\x63\xff\x57\x03\x2d\xcb\xfb\xf9\xf2\x33\xf7\x67\x3f\x7d\x6e\x73\xe6\x8f\x97\x0f\xf2\xcf\xe7\xd6\x1c\x35\x30\x8d\xc9\x01\x28\xbb\x37\x93\x71\xa5\x90\xae\xf8\xaf\x1a\xa5\x4e\x06\x62\xc4\x0d\x4c\xbb\x39\x32\xab\x33\x83\xc6\x4a\x6b\x98\x1d\x74\x9b\xa3\x47\x07\x4d\xdb\xb5\xe3\xde\x4e\x6d\x69\xd9\x3e\x6b\x6b\x6b\xee\xe6\xcd\x9b\x18\x0c\x06\xb4\x4e\x28\x0d\xad\xf7\x14\x7b\x21\xcd\xb8\x68\xb6\x95\xeb\x85\x64\x53\xa5\x19\x1f\x9a\x4f\xc8\x4e\x4c\xf4\x5d\x0f\x5c\xa4\x0e\x3c\x4d\xa0\xc2\x84\x3a\xec\x34\x41\xe2\x23\x19\xcf\x60\x23\x1c\x39\x72\x24\xfb\xcc\x67\x3e\x83\xa5\xa5\x25\x63\x8c\xf1\xa3\xa4\xa6\x31\xa6\x61\x8c\x69\x3b\xe7\xda\xc6\x98\x99\xb5\xdd\xd6\x13\x1f\xb9\x3f\xfb\x7b\xc7\xb7\xdb\x5f\x6a\x8f\xb2\x27\x4c\x0d\x76\xb8\x6a\x46\x64\x02\x62\x8f\x55\xad\x7c\x26\x20\x6e\x4c\xa4\x40\xb1\xb6\xa9\xa5\x21\x73\x36\xae\x50\xe5\xa2\xa4\x06\x63\x68\xee\x61\x3f\x9d\xf1\xa9\xc0\x8e\x2b\x2b\x86\x0b\xe3\xc8\x55\x37\xb7\xbb\x77\x16\xfa\x57\x2e\xad\xed\xbf\x75\xfd\x50\xef\xd2\x41\xd3\x3d\xc4\x78\x79\x68\xa7\x00\x2e\xfb\x00\xf6\x9d\x73\xfb\x18\x03\x96\x2e\xea\x80\x65\x58\xac\xbb\x5a\x60\xbc\x3c\x74\xe9\xd2\x25\x74\xbb\x5d\x6a\xc4\x63\x8a\xab\x85\x10\x38\x08\x19\x2b\x4f\x23\x8d\x18\x78\x87\x0e\xe9\x3d\x77\x8c\x94\xbf\x94\x9f\xc6\x8b\x3a\x02\xca\x9b\x5e\x73\xf0\x22\xc9\x43\xcb\x41\x69\xb9\xc3\x49\xed\x7f\x5a\x3c\x37\xfa\x12\xf0\xe2\xf2\x68\xf4\x5a\x99\x35\xb0\xc6\xfb\x77\xec\x9a\xfe\x4a\xfa\xc5\x65\xa2\xfc\x79\x5d\xf1\xf6\xe2\x6d\x26\x39\x4c\x9f\x8e\xe6\xc1\x65\xa5\xf7\x9c\x87\x04\xe8\xb5\x32\xc7\x06\x00\x5c\x26\x09\x7c\x48\xf4\x5e\x6e\xaf\x47\x14\x90\x49\xf9\xd3\x76\xd2\xf4\x3a\xd6\x56\x92\xbc\xbc\xfd\xa9\x3c\x94\x9e\xeb\x0b\x7f\x46\xdb\xbd\xcc\xe3\xdc\xb9\x73\xe6\xc9\x27\x9f\xcc\x00\xf8\xe5\xa1\x86\x73\xce\xef\x67\x69\x02\xe8\x2c\x74\x1b\x8b\x1f\xb9\x3f\xfb\xc9\x73\x0f\x66\xfe\xaf\x95\x83\xe6\xcb\x4d\x6b\x8e\x19\x18\x3e\xd3\x50\x97\x8e\x05\xa9\x43\x92\xff\x22\x61\x6c\xcf\x0d\x80\x6c\x0c\x5e\x56\x66\x86\x8d\x45\x03\xb3\xb3\xdb\x1e\x6d\xee\xb7\x6c\xb7\x78\xec\x07\x8a\x65\xf9\x16\x17\x17\xb1\xb0\xb0\xe0\x1e\x3c\x78\x80\x5e\xaf\x27\xd9\x36\x2f\x44\x48\x27\x78\x09\x2d\xe4\x34\xdc\xee\x72\x3a\x89\x3f\x6f\x6b\x2a\x57\xc8\x4e\x48\xed\xea\xa4\x46\x89\x4d\x11\x49\x71\xd2\x74\xa2\xc4\x2b\xc6\x47\x7b\xc6\xa7\x9d\x92\x78\xae\xad\xad\x65\x9f\xfa\xd4\xa7\x70\xea\xd4\xa9\xcc\x39\x07\xe7\x5c\x86\xf1\x2c\x4b\xe6\x9c\xf3\x9b\xb1\x5a\xf3\xbd\xc6\xe2\x89\xad\xf6\xb3\x4f\x6c\xb7\x5f\x6c\x0f\xb3\x93\xc6\x19\x3f\x3b\x03\x00\x70\x7e\xef\x49\xad\x39\x08\x60\x70\x44\x59\xa9\x7e\xba\xf1\x7f\xfe\x9f\x21\xf1\xc6\x98\xf1\x7e\x99\x22\x8d\x73\xb4\x75\x2a\xde\x06\x75\x86\x74\x69\xa8\xb6\x71\xb7\x90\xcf\x2f\x69\x19\xbf\xd1\xa5\x9e\xba\xe4\xd6\x6f\xb8\xee\xbd\xf9\xc1\x8d\xf7\x57\x0f\xde\xbe\xbe\xdc\xbb\xbc\xdf\x1c\x6d\xc2\x60\xd7\x39\xb7\x4b\x41\x0b\x80\x7d\x63\x8c\x07\x2d\x7e\x23\x2e\x9f\x69\xb1\x6f\xbc\xf1\x86\xbd\x70\xe1\x82\x07\x2d\x40\x78\x5a\x5a\x9a\xa2\x06\x26\xdb\x3c\xa4\x9f\xd2\x12\x41\x86\x49\x87\xa9\xe9\x6a\x16\x48\x13\x93\x59\xd3\x77\x1e\xa4\x8e\xa9\xd1\x48\x79\x6b\x41\x5a\xaa\x08\xc9\x94\xb1\xdf\x90\x2c\x12\xe8\xa0\xf2\xa4\xf4\x41\x4a\xaf\xe5\xc1\xcb\x90\x62\x67\x32\x85\xce\xe7\xc7\x79\xc7\xf4\x40\xe2\x6d\x21\xd7\xa5\x66\x17\x43\xfa\xc3\x69\x63\xed\x23\x5d\x87\xd2\xa6\x3c\x8f\xdd\x6b\xfa\xa3\xb5\x37\x2d\x77\x48\x27\x62\x6d\x17\x93\x37\x56\xff\xfc\x99\x64\x3b\x2c\x00\x3c\xf9\xe4\x93\xd9\xf1\xe3\xc7\xcb\x3c\xfc\x00\x96\x2c\x13\x75\x32\x8b\xce\xe9\x87\x9d\xa7\x9f\xdc\xec\x7c\x65\x65\xbf\xf9\x52\x73\x64\x8e\x01\xc8\x6a\x5e\xd8\xb9\x9a\xd7\xe5\x9e\x3c\x86\x06\x34\x04\xe7\x79\xfb\xc1\xb1\xff\x6b\x38\xb3\x38\xd7\x6b\xbc\x70\x72\xab\xfd\x95\x53\x5b\x9d\xf3\x0b\xbd\xc6\x32\xc6\xb3\x43\x2d\xe7\x5c\x0b\xac\x4e\x9f\x7c\xf2\xc9\x6c\x66\x66\x86\x72\xe5\x75\x32\x4d\x3f\x4b\x09\x7c\x89\x2a\xd4\x3f\x91\xf8\x5c\x8b\xab\xfd\xc6\xf6\xb8\x50\xe1\x62\x71\x9a\x20\xbc\x70\x8f\xc3\x47\x4a\x1f\x72\x36\x00\x80\xd5\xd5\x55\x9c\x3d\x7b\x36\x2b\xde\xc8\xc9\x00\x64\x04\xbc\xe4\xce\xb9\x56\xee\x4c\xe7\xd8\x76\xeb\xe4\xc9\xad\xf6\x67\xe6\x7b\x8d\x67\x32\x67\x66\xc7\x08\xa0\x62\x68\x28\x84\xf6\xbb\xc0\x0b\x00\x51\x9b\x97\x29\x22\xab\x59\xbf\xf2\x3f\x3f\x41\x42\xf8\x94\x8f\xc6\x97\xd5\x54\x4c\x79\x63\xea\xcc\xcb\xfb\x12\x7a\x16\x17\x94\xae\x12\x91\x62\xff\x02\xb4\x14\x33\x35\xc3\xcc\xf6\x37\xe6\x06\x37\x3e\x38\x7c\xf0\xee\xf5\x43\xdd\xcb\x7b\xed\xd1\x7d\x54\x4b\x43\xe2\xf2\x10\x08\x60\x21\xb3\x2c\xd6\x5a\x6b\xdf\x79\xe7\x1d\xfc\xfa\xd7\xbf\xf6\x1b\x71\x7d\xdb\xf8\xb6\xd0\x9c\x61\x08\x20\x73\x40\x22\x85\x18\x3f\x1e\x3f\x8d\x13\xe3\xcf\x62\xce\x41\x03\x69\x31\xe7\x9d\x92\x3f\x4f\xa3\x01\x43\x29\x70\xda\x14\xc7\x19\xca\x5b\xe2\x91\x3a\x38\xe1\xe9\x63\xce\x5e\xe3\x1d\x6b\x2b\x7a\xad\xc9\xad\x81\x25\xee\x88\x25\x9d\x91\x1c\x80\xa6\xe7\x92\x1e\x4b\x71\x21\xdd\x8d\x01\x6b\xce\x37\x24\xbf\x54\x3f\x50\x68\x24\x10\x28\x81\x16\x49\x7e\xcd\xee\x6b\x6d\x2f\x95\x4f\x93\x4d\xe2\x1d\x04\xda\xa7\x4e\x9d\xc2\xd1\xa3\x47\xa9\xec\x39\x99\x6d\x69\x01\x68\x1d\xd9\x6d\xad\x9d\xdd\xec\x7c\x6e\x65\xbf\xf9\x72\x73\x64\x8e\x1b\x98\x1c\x0e\xe5\xe4\x76\xb5\x1d\x80\x99\xef\x82\xc6\x87\xc9\xf9\x6d\x03\xc7\xe2\x4d\xf5\xa8\x7a\xa6\xf0\x6e\xc0\x2c\x2f\x76\xf3\x4f\x9f\x7e\xd8\xbe\xb7\xd3\x1e\x6d\x76\xf3\x83\x7e\xbf\x61\x4b\xfb\x8b\x7a\xbb\xd8\x73\xe7\xce\x61\x7f\x7f\x3f\xdb\xde\xde\x86\x10\x34\x1d\xd1\xf4\x5c\x0b\x5a\x7b\xa5\x0c\x56\x78\x88\xa5\x91\x06\x8e\x13\xa3\x06\x8d\x41\x28\x68\xa3\xb9\x94\x8e\x12\xe2\x23\xa1\x79\xde\x71\xa4\x86\xc8\x00\x64\x2b\x2b\x2b\xd9\x91\x23\x47\x50\xcc\x9c\x78\xc0\xe2\xff\xf2\x02\xb1\xb6\x96\x0e\xf2\x95\x93\x5b\xed\x4f\xae\xee\x37\x3f\xd1\x1c\x99\x35\x00\x85\x26\x1a\x06\xa9\x8b\x9b\x62\x59\x68\xac\xb1\x04\x69\x17\xc0\xa2\x36\x2b\xe3\x0a\x30\xe3\xca\xdb\x52\xc9\x6b\xca\xee\x9f\x3b\xd0\x79\x19\xc2\x1b\x70\xe3\x1d\xf0\x63\xa0\xe2\x45\x81\xef\x16\x44\x1e\xc2\x6b\xfc\xeb\x0a\xda\x02\xb4\x18\x37\x7c\x38\x3b\xbc\x73\x65\xe5\xe0\xdd\x6b\x87\xba\x17\xb7\xdb\xa3\xfb\x6e\x3c\xd3\xe2\x97\x84\x82\xa0\x05\x64\x44\x3a\x18\x0c\xec\xfa\xfa\x3a\x7e\xfe\xf3\x9f\x5b\x4b\x50\x8b\x10\x24\x44\xae\xb5\xb7\x94\x36\xa4\x9b\x9c\xa7\xc6\x9f\x3f\x8f\x01\x1a\x6d\x64\x99\xaa\xc3\x9c\xaf\xe4\xe8\xb4\xf4\x52\xe0\x8e\x23\x75\x74\x22\x95\x49\x92\x35\xe4\x38\x62\x20\x33\x24\x27\x35\xae\x5a\x9d\xf2\x3c\x42\xed\x19\xa3\x49\x69\x83\x10\x18\xe5\x32\xf3\xb2\x71\xde\xf4\x57\x02\x44\xb1\xfa\xe1\x3a\x6c\x59\x9c\x24\x8b\x94\x8e\x07\x89\x0f\xe7\xa1\x01\x30\x5a\x2e\x4e\xaf\xd5\xa9\xa6\x8f\x9a\xb3\x4a\xd1\xcd\x54\xa0\xad\xf5\x8d\xec\xd8\xb1\x63\x58\x5c\x5c\x04\x99\x71\xcf\xe8\x9b\x44\xce\xb9\x4e\x7b\x90\xcd\x3f\xb5\x31\x73\x7e\x75\xaf\xf9\x72\x7b\x98\x9d\xcc\x60\x5a\x0e\x28\x97\xde\xc7\x97\x93\x00\x04\x84\xc6\x48\xcf\x5c\x05\x46\xe8\xaf\x63\xe9\x2a\x7a\x3f\xcb\xee\x69\xc6\xde\xa0\x39\x32\xc7\x8e\xec\xb6\x5e\x3a\xfd\xb0\xfd\x99\x95\xfd\xe6\xaa\x31\xc6\xcf\xba\xe4\xc5\x9f\xf7\x6f\x78\xfe\xf9\xe7\xb3\xe7\x9e\x7b\x0e\x8b\x8b\x8b\x52\x9d\x69\xa0\x94\xd6\x9b\xe6\x77\xb5\xfe\xc7\xf5\x5f\xd2\x87\x14\xdb\xc5\xe9\x78\x7f\xaa\xc9\x4c\x89\x24\x81\x11\x88\xe7\x99\x49\x9d\x80\xa6\x93\x0c\x09\x84\x67\x1a\x72\xb6\x02\x8d\x84\xfa\x2d\x00\xfb\xe4\x93\x4f\xe2\xa3\x1f\xfd\x68\x06\x94\x4b\x27\x19\x80\xda\xab\x6f\xed\x51\x36\x7b\xfa\x61\xe7\xe9\x27\xb6\xdb\x2f\xce\x0c\xb2\xd3\x19\x4c\x6e\x50\xa1\x6c\x3a\x23\xe2\x5f\x23\xf6\xd1\x7e\xe3\x6b\xa9\x8c\xd2\xc6\x2b\xe3\xf3\xc6\xc4\x33\x43\x51\x91\x4f\x4a\x66\x70\x7c\x27\xf1\x72\x94\x79\x16\xf7\x1e\x04\x79\xa0\xe3\x30\x3e\x3f\x66\xcc\xc3\x71\xd6\x70\x70\xb0\xc6\xd9\x9d\xce\x70\xe3\xea\xa1\xee\x85\x2b\x2b\xdd\x8b\x5b\x33\xc3\xbb\x2e\xc3\x36\x80\x5d\x63\x8c\xff\xe3\xa0\x65\xe8\x9c\xab\x81\x16\x63\x8c\xed\xf7\xfb\xf6\xca\x95\x2b\xf8\xcf\xff\xfc\x4f\xae\x58\x92\xe2\xf1\x36\xd2\x74\x82\xd2\xc5\x0c\x37\x50\xd7\x09\x08\xb4\x9a\x61\xd4\x9c\xa4\x86\xf0\xb9\x2c\x3c\x2e\x66\xc0\x43\xe9\x78\x08\xf1\xa1\x72\xf2\x7b\xde\x87\x24\x47\xc8\x65\x0a\x39\x7c\x69\x60\xc0\x8d\x55\xc8\x98\x49\x46\x30\x04\x06\xb4\x20\xf5\x7f\x89\x46\xd2\x25\xae\x27\x52\x7a\xcd\x21\xd3\xbc\x63\xed\xc4\x8d\xbe\x36\x60\x93\x8c\x3d\x97\x2d\x0b\xc4\xd1\x10\xba\x97\xea\x4c\xeb\x8b\xb4\x3c\xb1\xf6\xa6\x65\xa0\x7c\x34\xde\xa9\x6d\x1b\xba\xf6\x79\xc6\xf8\x8b\x79\x7e\xf2\x93\x9f\xc4\xf1\xe3\xc7\xbd\xed\xaf\xf9\x00\x00\x2d\x63\x4c\xeb\x89\xed\xd6\xda\x89\x47\xed\xdf\x9b\xeb\x37\x9e\xcd\xdc\xf8\x9c\x16\xba\xb9\xc2\x87\xda\xa4\x38\x89\x77\xa8\x06\x8a\xe3\xe7\xae\x8a\x67\x0b\x48\x8e\x31\xf5\xcf\x9d\x03\x9c\x71\xf5\x19\x7c\x0f\x96\x1c\xf2\xce\x30\x3b\x7b\x7c\xa7\xfd\xd2\x89\x47\xed\x67\x9a\x43\x33\x4b\xcf\x9c\x29\xfe\x3c\x28\xc3\xc7\x3f\xfe\xf1\xec\xe4\xc9\x93\x34\x5b\xa9\x1f\xd2\x7b\xad\xcf\x03\x75\x1d\x92\x02\xb7\x3f\xa1\x3e\x0a\xe8\xed\x1c\x03\xcc\x35\x9a\x90\x71\xe4\xbf\x9a\xa1\x05\x7b\xc6\x8d\xa4\x06\x6c\x42\x82\x85\x64\x0a\x5d\x03\x00\x66\x66\x66\xb2\x4e\xa7\x03\x00\x25\x60\x29\xfe\xca\xa9\x41\x38\x74\x8e\xed\xb4\x8e\x9d\xda\xea\x7c\x76\xa9\x9b\x3f\xdb\xb0\xd9\x62\x35\x3b\x31\x39\xfd\x47\xe3\x24\x85\x1e\xaf\x2e\x09\xab\x9c\x64\xd5\xa9\x86\xb0\x9d\x29\x67\x53\x18\x39\xe8\xfe\x9a\x09\x12\x36\x0b\x44\x31\x91\x29\xd3\x92\x77\xfe\x49\x4f\xd8\x6b\xda\xad\x6b\xcb\xdd\x0b\xef\xaf\x1e\xbc\xbb\x39\x3b\xbc\x6b\xb3\x72\x59\x88\x2e\x11\x75\x31\x3e\xa7\xa5\x9c\x65\x61\xd3\x92\xb6\xdf\xef\xdb\xab\x57\xaf\xe2\x47\x3f\xfa\x91\x06\x2a\x35\xc7\xaa\x01\x8e\x14\xb4\x2f\x19\x76\x0d\xbd\x6b\xb2\xc4\x9c\x97\x14\xa4\x0e\xc7\x3b\x69\x0c\x3c\x69\x4e\x20\xc5\x21\x48\xb2\x70\x63\xa1\x0d\x0a\x24\x07\x29\xe5\x27\x39\x50\x2e\x83\x64\xec\xa4\xf2\xc4\x80\x99\xd4\xee\xfc\x5a\xe2\xc7\xd3\x68\x76\x45\x03\x4d\x52\x1e\xbc\xad\xb8\x8c\x21\xbd\xe4\x81\xca\xca\xd3\x01\xb2\xac\x41\x3b\x16\x90\x9f\x3b\x8a\x50\x3d\x6a\xba\xa1\xb5\x8d\x06\x56\x62\xf6\x3b\x55\x86\x50\xbe\xb1\xbe\xa9\x01\x2b\x7e\x6d\x01\x60\x61\x61\x01\xcd\x66\x13\xc0\x78\xd0\x47\x67\x5c\x00\xe4\x70\x68\x35\x46\xe8\x3c\xbd\x31\xf3\x89\xe5\x83\xfc\xc5\x7c\x64\x96\xe9\x66\xdc\xf1\x72\x0d\x99\x2e\xf7\xf1\x74\xea\xc4\xa1\xf6\xc2\x90\xcf\xcb\xa7\x2f\x37\x0e\x38\xbf\xdc\x24\xed\x83\x2c\x06\x9c\xc4\xe9\x18\x57\xf9\x15\x03\x83\x6c\xbc\xdf\xe5\x99\xa3\x3b\xad\x8f\x1f\xde\x6b\xae\x18\x63\x3a\x28\x96\xbc\x48\xf9\x3d\x38\x93\xea\x10\x90\xed\x30\xfd\x95\xda\x20\x66\x7f\x35\xdd\xe2\xfd\x81\xf3\xe2\xf1\x3c\x3f\x1f\x44\x9d\x08\x81\x0d\xb0\xfb\x94\x0e\xcc\x8d\x5f\xac\x82\x62\x06\x23\xd4\x51\xa4\x78\xe4\x79\x9e\xbd\xf4\xd2\x4b\x38\x7f\xfe\x3c\x55\xd2\xcc\x23\xd4\xe2\xb7\xd3\x1a\x99\xd9\x33\x9b\x9d\xe7\x57\xf7\x9a\x9f\x6e\x8e\xcc\x9a\x19\x37\x7a\xa5\x8c\xc5\x86\x5a\xba\xcc\x53\x81\x84\xfa\x46\x5b\x94\xf1\xd5\xa6\x5a\x9a\xc8\xc0\x11\x30\x52\x4d\xdb\x18\x92\xbc\x5c\x89\x2a\x14\xb5\x02\x21\xe3\x34\x3c\x3d\x9d\x81\xa9\x01\x1d\x43\xb8\xba\x6a\x63\x70\xaf\x61\x77\x6f\x2d\x75\x2f\x5e\x5c\xdb\x7f\x7b\x63\x6e\x70\x7b\xd4\x70\xdb\xc5\xd2\xd0\xae\x7f\x6b\x08\xe3\x33\x5a\xfc\x1b\x44\x74\x79\x68\xe8\x9c\xb3\x00\xec\x68\x34\xb2\x57\xae\x5c\xa1\xa0\xa5\xac\x7b\x76\xcd\x9d\xbb\x0f\x9a\x71\xe4\x41\xd2\x19\x8d\x4e\x02\x0a\x29\xf2\xf1\x4e\x48\xe5\x9b\x30\x84\x2c\x4d\xa8\xe3\xd1\x6b\xa9\x8c\xdc\xc1\xd3\x78\x89\x0f\xe7\x17\x72\x44\x52\x3f\xd5\xfa\x93\xe4\xb8\xb5\x7c\x43\x69\xa5\x72\x84\xfa\xf6\xb4\xf9\xd3\x67\x52\x7b\x73\xfe\x21\xc7\x1e\xe2\xad\xd9\x25\xad\x9d\xa4\xf6\x90\xec\x9f\x8f\x0f\xe9\x21\xe7\x4d\x69\x62\x3a\xa2\x39\x15\xc9\x91\xd0\xc0\xeb\x2a\xd4\x8f\x69\x08\xf5\x5b\xff\x5c\xd3\x0d\x1e\xb4\x3e\xa5\xf1\xa5\x32\x69\x7c\x33\x00\xf8\xda\xd7\xbe\x56\xce\xb6\x90\xbf\x72\x6f\x8b\x71\x68\xad\xed\xb6\x56\x56\xf7\x9a\x9f\x6a\x8f\xb2\x93\x66\x3c\xa8\xad\x05\xba\x1f\x05\xe5\x4c\x4a\xf1\xcf\xa0\xfa\x03\xf9\x73\xae\x5c\xd6\x2f\x07\xb9\xc5\xd4\xf9\xc4\xc6\x5c\x43\xe2\x0c\xf1\x1d\xa6\xe6\x58\x60\x00\xe4\x23\xb3\x7a\x68\x3f\x7f\xe6\xd8\x4e\xeb\x2c\xdc\x78\x00\x4e\x4e\xfc\xad\xd5\x5d\x9e\xe7\x68\x34\x6a\xe7\xcb\xc6\xda\x7f\x9a\xfe\xc1\xd3\x72\x3a\xfa\x5c\x6b\x27\x6d\x60\xa1\xd9\xb7\x1a\x0f\x1a\xc9\x1d\x45\xea\xf5\xb4\x71\x34\x3e\x56\x28\xc9\x18\x6a\x9d\xc8\x02\xc0\x57\xbf\xfa\x55\x3c\xf3\xcc\x33\x00\x4a\x87\x4e\x41\x4b\xb9\x36\xf8\xd4\xc6\xcc\xe9\xe3\x8f\xda\xbf\x37\xdb\xcf\xce\x35\xac\x19\x4f\xcf\x78\x7f\x6f\xea\xfb\x42\x50\x4e\x0d\x7a\xc5\x25\x77\x13\x0b\x9b\xa8\x2d\x0d\x15\x47\xc7\x94\xaf\x4c\xbb\x2a\xb2\xb6\x29\xd7\x78\x90\x44\xa6\x65\xe8\x6b\xd6\xfe\x5a\x7a\xbd\xd9\x63\x95\x0a\x5c\x55\xcb\x47\x00\x30\xca\xd0\xbf\xbd\xd8\x5f\x7f\xe7\x89\xfd\x37\xef\x2d\x0c\x6e\x0e\x1b\x6e\x1b\x64\x96\xa5\x58\x1e\x2a\x01\x0c\x9d\x6d\x29\xfe\xca\xcd\x60\xef\xbd\xf7\x1e\x7e\xfc\xe3\x1f\x6b\xc0\x94\xb6\x8f\xd4\x4e\xda\x33\x1e\x47\xe9\xa4\xce\x12\x4a\xc3\xe5\x91\x78\x52\x79\x42\x20\x4a\x73\x4a\x21\x87\xa5\x95\x23\x54\x1f\x52\xfe\x92\x53\xd7\x68\x52\xfa\x51\x28\x3f\xad\x1e\x24\xe3\x13\x2a\x07\x6f\x7f\x0d\x60\x48\x79\x70\x39\x35\x7a\x9e\xb7\x26\xbf\x54\x77\x21\x3b\x97\xda\xfe\xa1\x34\xb1\xfa\xe5\xf9\xc7\xfa\x84\x0f\xa1\x7e\x16\x92\x55\x8b\xa3\xd7\x1a\xe8\x8c\xe9\x8c\xc6\x4f\x7b\xae\xf5\xb3\x14\x1e\x34\xfd\xe3\xf0\x00\x50\x2d\x15\xa1\x38\x74\x34\x73\xa6\x73\x62\xbb\x73\x72\xbe\xd7\x38\x9f\x59\xcc\xaa\xc6\xdc\x54\xd7\xa5\x3d\x2e\x06\x97\xb5\x9d\x01\x7e\x96\x84\x9c\x72\x5b\xce\x84\x13\x5a\x36\xae\xad\xcf\x9a\x97\x3b\x12\xea\x5b\x0f\x1c\x80\x86\xc3\xec\x5c\xbf\x71\xf6\xf0\x7e\xf3\xa3\xf3\xbd\xc6\x2c\xc6\x40\x8b\x96\xab\xac\xa7\x97\x5f\x7e\x19\x2f\xbc\xf0\x82\x54\x5f\xd3\xea\xba\xa4\x07\x9a\x9d\xd7\x74\x59\xea\xcb\x9a\x6d\x91\xfa\x2c\xe5\x91\x01\xfa\x52\xd1\x34\x21\x75\xb4\x34\x6d\x08\x75\xe4\x58\xa8\xa1\x6c\x63\x4c\x46\xd6\x02\x5b\x4b\xbd\x7c\xf9\xec\xc3\xce\xe7\x96\xba\xf9\xf3\xb9\x35\xf3\x00\x45\xc0\xe5\x71\x70\xd5\xda\x65\xa9\x9d\x86\x80\x98\x22\x38\x1d\xc0\x00\x64\x02\xc4\x55\x8a\x5d\x75\x80\x1a\x65\x6d\x0a\x46\x58\x74\xaa\xcd\xd0\xa0\x90\xcd\x14\x9b\x5d\xca\xdd\xef\xb5\x35\x2c\x07\x6b\xdc\xf0\xee\x7c\xff\xf2\x6f\x4e\xec\xbd\x7e\x7b\xb1\x77\x7d\x90\xb9\x2d\x00\xdb\xe4\xb5\x67\xbf\x44\xd4\x47\x60\xa6\x05\x00\xde\x7c\xf3\x4d\xfc\xf4\xa7\x3f\xa5\x22\x79\x45\x0b\x39\x7f\x1f\xb8\x9e\x84\x46\x74\x94\x5e\x32\x48\x29\xa3\x03\x9e\x56\xd3\x53\xb1\x63\x08\x69\x38\xdf\x94\xd1\x61\x6c\xf6\x40\x7a\x1e\x32\xf4\xa1\xbe\xc6\x47\x44\x5a\x5d\xc5\xee\x25\x59\x34\x3a\xa9\x0c\x12\x50\xf1\xbf\x92\xfc\xd4\x51\x6a\xb2\x70\x5a\x9e\x4e\x93\x55\x72\xcc\x29\x36\x4a\x32\xa0\x21\xb9\xa6\xa9\x53\xfe\x3c\xa4\xff\x52\x5b\xc6\xe4\xd2\xea\x58\x93\x43\x02\x43\x5a\x5b\x70\x7a\x29\xcf\x94\x7c\xa6\xa5\x07\xe2\x6d\x50\xbb\xfe\xf3\x3f\xff\xf3\xec\xc8\x91\x23\x34\xbe\x04\x2c\x28\x66\x5b\x66\x86\xd9\xfc\xd1\xed\xe6\x73\xed\x61\x76\xd2\x00\x39\xb7\xaf\x40\x1d\x64\x00\x3a\xf8\xf0\x0f\xcb\x19\x16\x7a\x9c\x06\xea\xe0\x84\x07\xc7\xfe\x24\x39\x7c\x39\x5a\xc5\xac\xcb\xf1\x9d\xf6\x71\x63\x8c\x7f\x2d\x9a\xcf\xb8\xa4\xd4\x31\x10\xb6\x71\xfc\x9a\xd2\x87\xec\xb0\x06\x86\x35\x7a\x1e\x1f\xea\x0b\x96\x46\x4c\x13\x42\x86\x56\xca\xf4\xc3\x00\x99\x50\xa5\x88\xe1\xeb\x5f\xff\x7a\xb9\x29\xc9\x1f\xe9\x5c\xfc\xf9\xdd\xd7\x2d\xe7\x5c\xe7\xe9\xfb\xb3\xe7\x56\x77\x9b\x2f\xb6\x86\xd9\x1a\x8a\x57\xc2\xfd\x26\x58\xbe\x67\x96\x6e\x96\x1d\x47\x32\x95\x32\x75\x65\xac\x29\x6d\xa1\x89\xfe\x25\x25\xca\x7f\x22\x4d\xc1\xd7\x2f\x73\x56\x4b\x51\xae\x06\x46\xa8\x88\x86\xf0\x2d\xdf\x34\x22\xb3\x2f\xd6\xc0\x6e\xcd\x8c\xee\xfc\xf6\xe8\xde\x9b\x37\x96\xba\xd7\x07\x99\xdb\x86\xa9\x66\x59\xd8\x12\x51\x09\x5a\x8c\x31\x43\xe7\x5c\xed\x70\xb9\xd7\x5f\x7f\xdd\xfe\xfa\xd7\xbf\xa6\xcb\x52\xb1\x11\xb1\xa6\xf4\x5a\x9a\x90\x51\xce\xd8\xf3\x98\x9e\x69\x23\x0a\x7e\x2d\xe5\x17\x1b\x61\xfa\x74\x7c\xa4\xa0\x05\xcd\xb9\xf1\x74\x8f\x5b\x06\x7a\x4f\xeb\x58\x1a\xa5\x53\x80\xa0\x01\x9d\x90\x3c\x5a\x7d\x48\x32\xf0\xf6\xe6\x7c\xa9\x1c\xa1\x7a\xd4\x0c\x29\x2f\x8b\x24\x73\xa8\xbc\x12\x4f\x49\xbe\x90\x3c\xdc\xd1\xf3\x3a\xd6\x74\x4e\x2a\x3b\x0f\x12\x68\xe1\x23\xd4\x98\x8d\x8c\x81\x67\xa9\x8d\x42\x40\x21\x54\x86\x10\x80\x95\xf2\x09\xb5\x83\x04\xa6\x78\x90\xe4\x2e\x65\x6a\x34\x1a\x7c\x7f\x63\x0d\xbc\x34\xac\xe9\xac\xee\x36\x57\x97\xba\xf9\x33\xb9\x35\xcb\x80\x0c\x1a\x38\xd0\xe0\x00\xc6\x30\x7b\x5e\xed\x87\xf4\x8e\xc3\x89\x69\xf9\x4c\x4b\x19\xef\xea\x40\x87\xae\x1c\x15\x7b\x5d\x3a\x33\x83\xc6\xb1\xa5\x83\xc6\x71\x54\xcb\x5e\xe2\x72\xd1\xc7\x3f\xfe\x71\x7c\xf6\xb3\x9f\x95\x40\x4c\x8a\xad\xe1\xf4\x21\x7d\x95\x00\xb0\x06\xa2\xb4\x76\x0b\x0d\x2e\x79\x5c\x26\x3d\xfc\x5d\x86\x58\x85\x4c\x9b\x36\xa4\xc8\x98\x9d\x9d\x45\x9e\xe7\x92\xa2\xb6\x8c\x31\xad\x0c\xa6\xb3\xba\xd7\x5a\x3e\xb9\xd5\xfe\xdc\x5c\x2f\x7f\xa6\xe1\x30\x4b\x37\x44\x8d\x77\x76\xb3\xa5\x18\xa6\x98\x25\xa2\x86\x57\x72\xa2\x98\x7e\xb3\x6c\x71\xa2\x9c\x07\x2c\x35\x8e\xd2\x6c\xe4\x44\x0e\x55\xde\xe5\x5b\x49\x8e\xc4\x11\x49\x1c\x61\xe2\xd7\x57\x61\x00\x6b\x9c\xdd\x6d\x8f\x36\x3f\x38\x7c\xf0\x9b\xf7\x57\x0f\xd6\x07\x0d\xb7\x05\x53\x3f\xa7\xc5\xbf\x41\xe4\x41\x4b\x31\xbb\x52\x6e\xc8\xf5\xa0\xe5\x17\xbf\xf8\x85\xbd\x70\xe1\x02\x06\x83\x01\x90\x06\x52\x34\xba\x18\x7d\xc8\x88\x87\x66\x1e\x24\x07\xc6\x9d\x59\xcc\xc8\xa7\xf6\x05\x8d\xaf\xc6\x47\x72\x62\xc0\x64\x79\xb4\xce\x2e\x19\x1d\x0e\xe4\x24\x50\x27\xf1\xb7\xec\x3a\xd5\x60\x49\x72\x70\x3a\x9e\x97\x56\x66\xc9\x41\xc6\x9c\xab\x15\xae\xb5\xe7\xd2\x2f\xa5\x93\xca\xc3\x9d\x66\x0c\x70\xd1\x7b\x9e\x36\xe6\x98\x63\x00\x5a\x93\x2d\x06\x64\x3d\xad\xe6\x94\x52\xda\x4f\x03\x21\x5a\x08\x95\x97\xf3\x89\x39\xa6\x69\x7c\x45\xa8\xbe\x34\xbd\xae\xf9\x84\x86\x43\x6b\xb1\x9b\xaf\x74\x06\xd9\xc9\x71\x1c\xd9\x18\x0b\x36\xb3\x0d\x79\xc6\xa4\x98\xec\x16\x43\x69\xcd\xa5\x23\x32\x50\xf7\x23\xb5\xa1\x70\xf1\x0a\x34\xcf\xdf\xdb\x77\xe3\xd0\x6a\x0f\xcd\xea\x42\x37\x3f\xd5\x1a\x64\x7e\xb9\xc8\xbf\x55\x54\x03\x2f\xad\x56\x0b\xed\x76\xdb\xd7\x89\xd4\x2f\x63\x76\x29\x66\x2f\x24\xfd\xe3\x60\x9e\xa7\xe3\x03\x29\x2d\x48\x69\xfc\xb5\x8d\x25\xd6\x84\xd2\x9e\xd3\xdf\x0f\x1b\x24\xe5\x54\xf3\xff\xe2\x17\xbf\x98\x2d\x2f\x2f\x03\x28\xd7\xfc\xca\x57\xc5\xe0\x77\x90\x5b\xd3\x39\xbb\xd9\x79\xfa\xf0\x5e\xf3\xc5\xa6\x35\x2b\x80\xc9\xea\x7b\x4a\x88\xc2\x09\x6f\xf6\xf8\xf5\x4d\x7f\x8f\xe2\xde\x2f\x29\xd1\x83\xe0\x9c\xa9\x6f\xb0\xad\x26\x61\x5c\x2d\x3d\x5f\x1a\x1a\x7f\x80\xd1\x95\x7b\x57\xe8\xc6\x2d\x2f\xe3\x98\xbe\xfa\xc6\x51\x6d\x84\x60\x0c\x2c\x9c\x3d\x68\x8e\xb6\x6f\x2e\xf5\x2e\xbc\x77\x64\xff\xdd\x83\xe6\xe8\x01\xaa\xe3\xfb\xbb\x20\xc7\xf8\xa3\x7e\x1a\x6e\xbf\xa8\x63\x5b\x80\x18\xfc\xe2\x17\xbf\xb0\x17\x2f\x5e\x44\xb7\xdb\x25\xb9\x4c\x28\x3f\x8d\x0f\x21\x7c\xcd\x98\xc7\xf4\x90\xa2\x7d\x2d\x6f\xc9\x69\x49\x80\x80\xa7\xd3\xe4\x09\xc9\x18\x73\x5e\xa1\xd1\x82\xc4\x37\xc5\x78\xd0\xbc\x53\x46\xad\x54\xe6\x90\xb3\x94\xda\x2c\x54\x4e\x89\x3e\xe6\x80\x25\xa0\xc5\x81\x14\x4f\xc7\xcb\x1d\x92\x55\xd3\x39\xae\x37\x21\x1b\x22\xb5\x47\x88\xb7\xa6\x6f\xc0\x64\x59\x25\xb9\x52\x46\x98\x9c\xaf\x44\x1b\x6a\x0b\x5e\x07\x34\xad\xd6\xe7\xa4\xf2\x6b\x79\x4b\xfc\xa4\x7e\xc2\xf9\xfa\x67\x5a\xbf\xd4\xd2\x53\x3e\x12\x28\xd5\xe4\xa3\x69\xc7\xaf\x11\x5b\xd3\x9a\xeb\x37\x56\xf2\x91\x59\x01\xc8\x6c\x07\x45\x14\x45\xa8\x66\xbf\x89\x3d\xa6\x4b\xff\x34\x08\x4b\x44\xe3\x4d\xb7\x6e\xcc\xdf\x90\xd9\x16\xf2\x16\x2b\x85\x4d\x35\xa0\xe4\xc8\x1e\x99\xf1\x75\xde\x1c\x65\x8b\xb3\xfd\xec\xd8\x52\xb7\xb1\x08\x61\xb6\xc5\xef\xed\x14\xea\xc2\xd7\x95\xa4\x13\x31\x7b\xa0\xdd\x87\x6c\x2c\xe7\x2f\x01\x26\xcd\x8f\x48\x71\x25\x6d\x8e\x70\x47\x0e\x21\x33\x1e\x24\x87\xf1\xbb\x0c\x1a\x8a\x06\x00\x7b\xe2\xc4\x09\xb4\x5a\xad\x5a\xc3\xf9\x1d\xd7\xc6\x98\x56\xc3\xa1\xb3\xba\xd7\x5c\x3d\xb5\xd5\xfe\xec\xec\x20\x7b\x3a\x73\x68\x55\x20\x85\xec\x45\x19\x6b\x54\x09\x48\x3c\x78\xa8\x6d\xc2\x22\xd7\xc5\xa9\xbc\x63\x60\x51\xff\x54\xf3\x98\xd6\x8c\xdf\x4f\xaa\x36\x6b\xd5\xe7\x57\x6a\x7b\xb0\xca\x8c\x0a\x94\x6e\x0a\x35\x76\x86\xc9\x17\x90\x07\x0e\xbd\xdc\xee\xdf\x9f\x1f\x5c\xbb\x74\x64\xff\xed\xcd\xb9\xc1\x6d\x14\x9b\x6f\x31\x9e\x65\xf1\xbf\xe2\x11\xfe\xce\x39\x3f\xdb\x82\x37\xde\x78\xc3\x5e\xbc\x78\x11\x07\x07\x07\xbc\xde\x79\x1b\x6b\xe8\x98\xc7\x71\x83\xa4\xe9\x17\x37\xc4\x9a\xe3\xe5\x1d\x46\x93\x2b\xc5\x80\x6a\xce\x2d\x34\xa2\xd4\x42\x28\xff\x18\x5f\x4d\x46\xfe\x2c\x65\xe4\x2e\xd5\x3b\x4f\xaf\xc9\x16\x73\xf4\x92\x6c\xb4\x3d\x42\xa3\x2c\xad\xfe\x39\x7d\x4a\x9d\x4b\xe9\x25\x19\x34\x99\x52\xda\x31\x25\x68\xc6\x58\x03\x38\x92\xbe\x82\xd1\xf8\xeb\x58\x3d\xa4\xe8\x9b\x97\x47\xe2\xa1\xc5\x87\xf4\xd6\xa7\x0b\x81\x68\x8d\x97\x26\x6f\x6a\xfd\xf1\x50\xab\xab\xdf\xff\xfd\xdf\xcf\x8a\x99\x06\x19\xe0\x3a\xe4\xb9\x33\x9d\xd9\x41\x76\x28\xb7\xa6\x3a\xa9\x8d\x6f\x0b\x08\x84\xfa\x79\x2b\xd4\x9e\x9b\x89\xf4\x7e\xe9\x88\x2e\x45\x19\x57\xf9\x86\xca\x2b\x4c\x06\x0a\x74\xc6\xd7\x06\x99\x73\x9d\xce\xb0\xb1\xb2\xd0\xcb\x17\xef\x2f\x0c\xee\xf1\x25\xb1\xe2\x3e\x45\xf7\xa7\x7d\xc6\xe3\x24\xa0\x19\xea\xff\x3c\x8d\x64\x8f\x34\xfa\x9a\x4e\x68\x88\x3b\x94\xb1\x44\xeb\xaf\x43\xfc\xb4\x11\x88\x16\x97\x62\x34\x2c\x00\xfb\xa9\x4f\x7d\x8a\x2a\xaa\xdf\x88\xeb\x4f\x48\x1c\x6f\xc4\x1a\x64\xf3\x67\x36\x3b\x4f\x1f\xde\x6b\xbd\x38\x56\x56\xaf\x34\x64\x66\xa3\xdc\x48\x6b\x6a\x4b\x3c\x9a\x52\x8d\xd3\x12\x85\x24\x4a\x5b\x07\x16\x3a\x87\xda\x94\x21\x9d\x55\x21\xc8\xc6\x23\x76\x27\x74\x2c\xde\x49\x06\x0d\xd7\xdd\x9c\x1d\xde\xba\x7c\xf8\xe0\xed\x5b\x8b\xfd\xeb\xa3\x6c\xe2\x18\x7f\x3f\xe3\x52\x03\x2e\x04\xb0\x58\x00\x78\xf3\xcd\x37\xed\xbb\xef\xbe\x8b\x83\x83\x83\x98\x31\x0c\x39\x28\x7e\xcd\x15\x34\x34\x32\xd3\x0c\xab\x96\xbf\x86\xe0\x43\x7a\x27\xf1\x08\x19\xc6\x90\x3c\xa1\x91\x9e\x76\xcf\xe3\xb5\x32\x70\x59\xa5\x51\x11\x7d\xc6\xd3\x5a\xd4\x8d\x84\x96\x3f\xbd\x97\xea\x22\x54\x87\x34\x2f\x4e\xaf\xf1\xe4\x0e\x5c\x93\x87\xe7\xcd\xf5\x8b\xd3\x6a\xce\x5e\xb3\x51\x5a\xd0\x64\x91\xe8\xa4\x32\x48\xed\x28\x0d\x08\xa5\xf2\x48\xf5\x94\x2a\xab\x76\xcd\xf9\xf2\x38\x4d\x7f\xa4\x7b\x4e\x9f\xf2\x2c\x45\x3e\x2d\x3f\x2d\xad\xcf\xab\xac\xd3\x67\x9f\x7d\x16\xcd\x66\x93\xcf\x3c\xf8\xbf\x3c\x73\xc8\x5b\x43\xd3\xe9\x0c\xb2\xe5\x86\x33\xb3\x3e\x83\xf2\x9b\x6f\x70\x13\x16\xdb\xf9\xb7\x32\xe8\x2b\xd1\x64\xc6\x84\x5a\x72\x61\x4b\xe3\xf8\x8a\xee\x7d\x2c\x07\xc4\x64\x29\x89\x4c\xe7\x94\x9b\x00\xc8\x0c\x4e\x05\x7a\x4c\xde\x1a\x99\xc5\xd9\x41\xb6\x48\x4e\xcf\x9d\xd8\xe3\xc2\x57\x0d\x94\xfa\x4b\xb1\x8f\x9a\x2d\xb5\xec\x4f\xcb\x87\xf3\x0f\xd9\x16\xc9\xa6\x4d\xf4\x97\x69\x3b\x31\x0f\xdc\x69\x49\x4e\x8e\x1b\x4c\xcd\x70\xc5\xf2\x9e\x28\x98\x31\x26\x3b\x7f\xfe\x7c\xf6\xe9\x4f\x7f\x1a\xed\x76\xdb\x7f\xae\xbc\x54\x50\xbf\xeb\x3a\xb7\xa6\x73\x78\xaf\x79\xec\xc4\xa3\xf6\x67\x66\x07\xd9\xd3\x00\xb2\x72\x86\x03\xf5\xe9\xc1\xf2\x92\xb7\x79\x00\x2d\xf0\x8d\x59\xc1\xe0\xea\x97\xb5\x4d\x5a\xca\xc2\xa7\x01\xaa\x2f\x44\x83\x83\xa2\x8a\x7c\x64\xdc\xf0\x51\x67\x78\xef\xda\xa1\xee\x85\xab\x87\xba\xeb\xdd\x7c\xb4\x85\x62\x59\xc8\x39\x57\x7b\x83\xa8\xd8\x88\x5b\x6e\xc6\x35\xc6\x58\xe7\x9c\xb5\xd6\xe2\x9d\x77\xde\xb1\xbf\xfa\xd5\xaf\xd0\xeb\xf5\xb4\xd1\x22\x8d\x0b\x39\x8e\x8c\x5d\x43\xf8\xe5\x71\x92\x51\x97\xf2\xd2\xf2\xd7\x40\x80\xa6\x7f\xb1\x5f\x49\x3f\x35\xe3\xaf\x81\x05\x7a\x2f\xa5\xd3\x9c\x6a\xc8\xf1\x85\x80\xa4\xe4\x10\x69\x7a\xca\x5b\x93\x33\xd5\x51\xc5\x0c\x94\x96\x96\xeb\x46\x0c\x3c\x86\x6c\x8d\xa4\x9f\x52\x88\x81\xb1\x58\x3d\x87\xf4\x51\x92\x31\x74\x1d\x2a\x83\x44\x1b\x92\x51\xaa\x4b\x09\x04\x87\x00\x71\x28\x4f\xe9\x9e\xc6\xc7\x9c\x8e\xa6\x73\xfc\xda\x07\xad\xee\x39\x4f\x09\x84\x97\x71\xc6\x7f\x26\xa5\xd0\x51\xef\xdc\x0d\x90\xb7\x46\x59\xa7\x39\xca\x16\x33\x98\xbc\xb6\x57\x60\x7c\x01\xa0\xee\xf8\xfd\x12\x7e\xf9\x4d\x21\x67\x8a\xb8\x0a\xae\xb8\xe2\x40\x17\xc7\x9c\x45\x09\x50\xcc\xa4\x77\xa8\x0d\x98\xcb\x37\x37\x0c\xb9\x34\x14\xcf\x78\x7f\x91\x35\xac\x99\x6d\x0f\xb3\x79\x14\xfb\x5b\xe8\xc1\x73\x64\xc5\x01\x2b\x2b\x2b\x38\x75\xea\x94\x06\x1a\x42\x75\x49\xaf\x43\x7e\x20\x44\xab\xe9\x8c\x64\x23\x24\x39\xd4\x7e\x16\x03\x23\xa1\x0c\x53\x02\x2d\x8c\x96\x97\xf6\x2c\x54\xd9\x00\xc6\x3b\xc7\xbf\xf0\x85\x2f\xa0\xd1\x68\x64\xe4\x7b\x0d\x19\xaa\xd7\xde\xf2\x0c\xa6\x35\xd7\x6f\x2c\x9f\xdc\xea\x3c\xbd\xb2\xdf\x7c\xb1\xe1\xc6\xaf\x3f\x57\x1a\x83\xfa\x69\x86\xfe\x7a\x62\xf3\x08\xbf\x9e\x44\xb3\x13\x08\xd7\xd1\x38\xaf\x89\x95\x62\xd7\x97\x9c\xea\xcf\xca\x3c\x9c\x94\x13\xa1\x2b\xf2\x70\x70\x76\xaf\x35\xda\xba\xb9\xd4\x5b\xff\xe0\xf0\xc1\xc5\xed\xce\xf0\x3e\x0a\xd0\x62\x8c\xf1\x1b\x71\xe9\xb7\x87\xc4\xef\x0f\x59\x6b\xed\x4f\x7f\xfa\x53\x8c\x46\x23\x6e\x90\x62\x8a\xca\xaf\x25\x3a\xcd\x41\x85\x8c\x6c\x88\x3f\x07\x15\x29\x1d\x45\x4a\x2b\x19\x69\x09\x74\x49\xbc\x24\xa3\xa9\xc9\x47\xe9\x69\x59\x53\xc0\x08\xe5\x17\xeb\x57\x52\x5a\xce\x27\x26\xa7\xe6\x2c\x39\x0f\x0b\x5d\x3e\x9a\x26\x24\xbb\xe6\xfc\x52\xae\xe9\x7d\xaa\x73\xd6\x78\x4a\xfa\xe7\xef\x25\x80\x9c\xe2\xcc\xb9\x7c\x52\xde\x3c\x8f\x50\xbf\x0b\xd5\x2f\x2f\x43\x2a\x88\x94\x64\x0b\x3d\x97\x68\x34\x20\x21\xe5\xa7\x81\x5d\x5a\x06\x49\x06\x9e\x97\x66\x5b\xca\x40\xc0\x42\x35\xb0\x75\x26\x33\x0e\xb9\x21\x07\xce\xd5\xf6\x1e\x3a\xb2\x05\x00\x7e\x30\xeb\x6a\x83\x47\x00\xe5\x27\x56\xaa\xbc\xaa\xe5\x9c\x32\xce\xcf\xa8\xb8\xc9\x73\xd5\xfd\xcc\x8e\xa3\x0c\xe0\x77\x0b\xd4\xf7\x52\x12\x77\x05\x00\x59\xc3\xa2\xd3\x1c\x99\x59\xba\x29\xd7\xfb\xbf\x62\xb5\x01\x00\xb2\x63\xc7\x8e\x65\x1f\xfb\xd8\xc7\x7c\x9d\x69\xf5\x39\xad\x4d\xe1\x41\xd3\x57\x7a\x3f\x8d\xad\x92\xfa\x62\xad\x7d\xa7\x11\x90\x1b\xa8\xd4\x34\xd2\x75\x88\x2e\x14\x57\xe6\xdb\x68\x34\x70\xf4\xe8\x51\x00\x35\x84\xe9\x2b\x6a\xdc\x98\x0e\xad\xd6\x30\x9b\x3d\xbc\x3b\x9e\x6d\x99\x19\x64\x67\x81\x42\xb1\xe8\x54\x05\xc8\x75\x01\xa1\xe9\xf7\x26\x38\xcd\x58\x91\xbd\x62\xd1\xa9\x11\xbf\x96\x53\x81\x8f\xea\x74\x5b\x42\x06\x7f\xdc\xbf\x9b\x48\x4a\x46\x09\xf0\xeb\x55\xe5\x0a\x16\x99\x91\x29\x3b\x47\x01\xb2\x7a\xb9\xdd\xbf\xbb\xd8\xbf\xf2\xc1\xe1\x83\x0b\x1b\x73\x83\x9b\xae\x3a\xca\x9f\xbf\xf6\xdc\xc7\xf8\x48\x7f\xff\x0d\x22\xbf\x11\xd7\x8e\x46\x23\x7b\xf7\xee\x5d\x5e\xd7\x29\xc6\x96\xff\x49\x81\x2b\xf7\xb4\x4a\x1e\xe3\xcd\xd3\x72\xa3\x2d\x19\x47\x2e\x4f\x68\xd4\xa1\x19\x5b\xcd\xc1\xc5\x9c\x38\x07\x2c\xbc\x4e\xa4\x6b\x29\x2f\xcd\x51\x69\xe5\xd1\x80\x14\xe7\x1b\xaa\x3f\xca\x47\xaa\x3f\x08\xf4\x3c\x8e\xd3\x4b\xe0\x95\xe6\x1d\x33\xae\x31\xe7\x17\x73\xc4\x9a\xdc\x92\x11\x0d\xf1\x89\x39\x08\x89\x0f\xaf\xd3\x10\x00\x96\xda\x45\xca\x4f\x1c\xec\x09\xf4\x5a\x5a\xfa\x4c\xea\xa7\xbc\xed\x42\xba\x16\x6a\x03\xc9\x31\x49\x3a\x26\xc5\x6b\xf2\xf3\x3c\x00\xa0\x3c\xf2\x1f\xc6\x65\xce\x20\x73\x70\x84\x4f\x05\x37\xc6\x6f\x83\xd2\x8f\xe9\x3a\xf0\x97\x32\xca\xef\xd9\x91\x99\xfa\x72\x35\x09\xa8\xd1\xc2\xa0\x7c\x59\x63\xfc\x31\x5e\xcf\xb9\xd8\xff\x58\xf0\xa3\xe0\x49\x1b\x37\x17\x71\x99\x81\xc9\x33\x67\xda\xec\xe3\xc1\xe5\xc7\x16\x95\x20\xd9\x41\xcd\x06\x87\xfa\x33\xef\x5f\xda\xe0\x28\x34\x18\x4b\x91\x53\xeb\x83\xd1\x46\x9f\x26\x48\xbc\x42\xfc\x93\x15\x8e\x84\xb2\x12\x66\x67\x67\xf1\xc7\x7f\xfc\xc7\x19\x50\x1e\x30\xe7\xd3\x94\xef\xb5\x1b\xa0\x35\xdf\x6f\x2c\x9e\x78\xd4\xfe\xe8\xf2\x41\xfe\x42\xb5\x9e\xe9\xca\x7d\xb4\x1c\xd1\xfa\x8f\x27\xc2\xdf\x17\xbf\x3e\x4d\xa5\xb0\xae\x50\x3a\xba\x4b\x8b\x4c\xf5\x95\xb3\x25\x7e\x1f\x4d\x7d\x0b\x2d\x45\xd5\x3c\x98\x42\xa1\x1d\x5b\xdf\xac\x64\x29\x4b\x31\x5e\x22\xca\xdc\x70\x73\x76\x78\xeb\xca\x4a\xf7\xc2\x9d\x85\xc1\xf5\x91\x71\xe5\xab\xce\xc5\x6c\x4b\xd7\xef\x69\xe1\x4b\x44\xfe\xac\x96\xe1\x70\x68\x14\x24\xab\x2f\x00\x00\x20\x00\x49\x44\x41\x54\xef\xdd\xbb\x87\x7f\xfa\xa7\x7f\x2a\x67\x5f\x84\x3f\xde\x16\xda\x9f\x64\xbc\xb8\x21\xe5\x9d\x42\x9b\xf5\xe0\x7c\x40\xe2\x43\x06\x2f\x04\xb2\x53\x66\x0d\x38\x3d\xaf\x07\xde\xb9\xb8\x93\x08\x75\x58\x49\x3e\x5e\x27\xa1\x4e\xcf\xeb\x5a\x93\x99\xf2\x0f\xf5\x4f\xad\xae\x43\xe5\xe3\xf4\x5a\x7d\xf0\x7c\x78\xfd\x49\x32\x49\xe5\xd1\x02\xaf\x4f\xad\x0e\x79\x99\x62\x03\x29\x2e\xa7\xd6\x1e\xb1\x76\xe3\xa0\x4b\xcb\x6f\xda\x67\x9c\x9f\x04\x6a\xa5\xfb\x98\x7e\x7a\x7a\xad\x4e\xfd\x7d\x08\x4c\x71\x07\x29\xd9\x90\x10\x6f\xce\x43\xd2\x19\x49\x46\x0a\x52\xa8\x5c\x7e\xbf\x63\xe5\xe0\x8d\x83\x25\xf6\xdf\x94\xf6\x1c\xe4\x6d\x21\x37\x5e\x12\x32\x7e\x09\x48\x08\x86\xda\xe6\x72\xd1\x08\xd2\xf6\x92\xf1\x3e\xc5\x6a\x73\xc0\xf8\x4a\x5a\xf8\xaf\x64\xa2\x93\xff\x74\x4b\x81\x71\xc8\x32\x5b\xbe\x06\x8d\xa2\x7c\xf4\xfc\x32\xbe\x02\xc0\xdb\x4c\xb3\xe9\x9c\x5e\xea\xcf\x12\x9d\x64\xfb\xbd\x2c\x92\x7e\x70\xfe\x3c\x0d\x97\xb3\x46\x9b\x3a\xea\xe0\xd7\x5a\x07\x4e\x09\x52\x45\x48\x41\xed\xb0\xc6\x98\x2c\xcf\xf3\x5a\xc3\xb0\x0f\x68\xb5\x0c\x4c\xab\x39\x32\x9d\x43\xfb\xf9\xf1\x27\xb6\x5b\x9f\xe8\x0c\xb2\xd3\x63\x3a\x00\x30\x13\x98\x81\xe0\xeb\xf1\x3d\x9b\xaa\x1b\xa7\x21\x1f\x35\x24\x53\x82\x72\x1a\xc3\x90\x06\x85\xe6\x1c\x31\x95\xa5\x80\xdf\x04\x46\xd7\x44\xe9\xf2\x51\x1d\x85\x8f\x01\xce\x4e\x6b\xb4\x71\x75\xa5\x7b\xe1\xe6\x62\xef\x72\x2f\xb7\x5b\x28\x8e\xef\x27\xe7\xb4\xec\x53\xc0\x02\x06\x5a\xac\xb5\xf6\xde\xbd\x7b\x78\xe5\x95\x57\x52\x8c\x64\x48\xe1\x38\xcd\xb4\x7a\xa2\x81\x99\xd0\xc8\x4c\x33\x80\x1a\xb8\xe1\x69\x63\x46\x59\x32\xce\x21\xb0\x21\xd1\x48\xf2\x48\x69\xb4\x72\x68\x4e\x53\x73\x30\xdc\xe8\x4b\x8e\x80\x1b\x1b\x0d\x78\x85\xea\x95\x07\xad\xce\xa4\x7a\xd2\x1c\xba\x06\x1a\xb8\x0c\x5a\x59\x35\x87\x4a\xd3\x49\x60\x44\xab\x5f\x9e\x07\x97\x91\x8f\x44\x29\x0d\x97\x89\x83\xa6\x94\x7e\xa4\xc5\x87\xca\xc0\xe5\xe3\xc0\x41\xab\x4f\x09\xd4\xc5\x80\xb9\x54\xc7\xfe\x79\xa8\x2d\xb8\x1c\x21\xba\x69\xf8\x66\x00\x1f\x28\xd2\x99\xef\xb1\x35\xb5\x06\xb0\xc6\x59\x57\x2d\x04\xa1\xfc\xf0\x6d\x81\x14\x4c\xf1\x62\x04\x80\xfa\x6b\xcc\x15\x49\x19\xe8\xe2\xbf\x2b\xfc\x0b\xdd\xba\x22\xed\x4f\x04\x7b\x3e\x41\x53\x9c\x07\x06\xe1\x99\x83\x83\x35\x0e\x64\x79\xa8\xfa\x46\x92\x50\x7e\xa4\xb7\x85\xa4\x5b\x92\xfd\x07\xe4\xb6\x08\xf5\xdd\x50\x3f\xe2\x72\x4a\x69\x4b\x1a\x4d\x49\x24\x05\x4f\x05\x26\x12\x9f\x58\x9c\x14\x54\x24\xb6\xb6\xb6\x86\x6f\x7f\xfb\xdb\x00\xe0\x1b\xcb\x83\x96\xbc\x7c\x05\x1a\xe8\x2c\x76\xf3\x95\x93\x5b\xed\x8f\x2d\x1f\xe4\x2f\x64\xce\xb4\xe8\xdb\xca\x64\x31\xa6\x06\x26\xaa\xaf\x3c\x3b\xf6\xbc\x0a\x15\xae\xe6\x3c\xc8\x7d\x9d\xb8\xa4\xaf\x5e\x9b\x66\xeb\x96\xc5\x74\x0e\x7f\x03\x69\x8c\xb4\x0d\xb9\xae\x87\x5e\x6e\x77\xaf\x1f\xea\x5d\xb8\x7a\xa8\x7b\x71\xa7\x33\xbc\x0f\x53\xfb\xf6\x50\xb7\x00\x2d\x5d\xe7\x1c\xfd\xe2\x73\xcd\x90\x5d\xbb\x76\x0d\xaf\xbc\xf2\x8a\xaf\x5f\x1a\x42\xce\x5f\x72\x3a\x31\x70\xcb\x43\x0a\x88\xd1\x3a\x86\x94\x5e\xea\x54\x29\xfc\xa5\x10\x1a\xd1\xc6\x68\x43\xf9\xd1\xeb\x90\xb3\x4c\x09\xd3\xa6\xd7\xea\x2e\x56\x57\x94\x77\x08\x68\x69\xed\x23\x39\x68\x0d\x10\xf1\x7b\xcd\x86\xf0\x91\x77\x88\x3e\x36\x6a\xa4\x74\x12\x2f\x0d\x84\x53\x1a\xcd\x08\x53\x79\x25\x00\xa7\x81\x33\x9f\x5e\xaa\xb7\x69\x75\x24\x46\x1f\x73\x2e\x5c\x26\x9e\x36\xa4\x57\xd3\xca\x34\x4d\x9d\x4b\xd7\x41\xbb\xe3\x8f\xae\x18\x34\xac\xed\xe7\xb6\x0b\x83\xe1\xf8\x01\xaa\xb1\xa6\xbf\x87\x04\x18\x08\x2f\x1e\xe7\xea\xf1\xe5\x75\x61\xeb\xeb\x7b\x66\x88\x3d\x67\x46\xbd\xe6\x6e\xc8\x60\x98\x2c\x53\xd9\x61\x03\xdd\x6e\xd3\xed\x51\x80\x42\xbf\x91\xe4\xef\x49\x08\xe9\xf5\x87\x01\x95\x1a\xaf\xd8\xc0\x35\xe4\x3b\x78\xfe\xfc\xf9\x87\xfa\x56\x51\xaa\xc1\xff\x5d\xf0\x54\x69\xf9\x87\xb3\x30\xde\x70\xd5\xca\x47\xa6\x73\x78\xaf\x79\xfa\x89\xed\xd6\x0b\xed\x61\x76\x7c\xbc\x0c\x04\xb2\xfb\x8a\x6c\x31\xa9\x4d\x80\x8c\xa7\x07\xf9\x17\x9e\x4b\x42\x54\xf1\xb5\x03\x8b\x6a\x2b\x41\xd5\xce\x17\x7a\xea\x2d\x80\xf2\x48\xe7\x92\x37\x25\xac\xb3\x2f\x0f\x39\xa2\x2b\xa2\x34\x0c\x33\xd7\xbf\xb3\xd8\xbf\x78\xf9\xf0\xc1\xbb\x9b\xb3\x83\xdb\xd6\x54\x7b\x5a\x8c\x31\xdd\x62\x99\xa8\x3c\x5c\xce\x18\x43\x37\xe3\xc2\x18\x83\xf7\xde\x7b\xcf\xfe\xc7\x7f\xfc\x87\x67\x49\x47\x5d\x1a\x5a\x96\x1c\x86\xe4\x18\x42\x6d\x99\xb1\xdf\x14\xa3\xcd\x47\x91\x1a\x5f\x69\xe4\x28\x75\x02\xa9\x13\x53\x1e\x9a\xac\x52\x67\x0f\x8d\x50\x35\x1e\x52\x39\xb8\xfc\x21\xe3\x1d\xe3\xa5\x75\xfc\xd8\x28\x5f\xe3\x11\xca\x4f\x02\x8b\xda\x48\x5d\xca\x43\xaa\xf3\x18\x60\x09\x01\xa8\x18\xef\x69\x1c\xb9\xc6\x3b\x25\x7c\xd8\x81\x9f\x4f\x97\xe2\xc0\x7d\x88\x39\x21\x4e\x9b\x0a\xa8\x25\xfa\x69\x82\x56\xa7\x92\x1e\x85\xe8\x3f\x74\x70\x00\x7a\x0d\xd7\xdf\x69\xdb\xad\x7e\xe6\x76\x81\xfa\x8c\x47\x28\x1d\xbf\xae\x83\x0c\x3d\xed\xc4\x72\x0f\x23\x17\xf9\x81\x01\x9c\xe2\xda\x1a\x37\xec\xe5\x76\x77\xaf\x35\xdc\x8f\x88\xcc\x83\x56\xa7\x1a\x78\x51\x27\x0f\xa6\xcc\x2b\x75\x02\x43\xb3\x65\x94\xde\x4a\x04\xd3\x80\x91\x69\x3a\x53\x4a\x90\x2a\x64\xc2\x18\x9f\x38\x71\x22\xfb\xda\xd7\xbe\xe6\xd1\x65\x06\x4c\x6e\xca\xcd\x60\x5a\xcb\x07\xf9\xca\xf1\xed\xd6\x47\x17\x7b\xf9\x33\x06\x68\xd5\x15\x82\x7d\xd9\x93\xee\x85\x2d\x16\x39\x4b\xb4\xca\xb5\xcb\x11\x94\x4c\xe8\xeb\xe8\xc4\x6f\xc4\x82\x38\x4d\x62\x0a\x34\x63\x98\xf6\x96\xaf\xf9\x93\xa9\x45\x67\x3c\x60\x29\xa6\x32\xc9\xa6\xe1\x87\x33\x83\x1b\xef\x1f\x3e\xb8\x70\x7f\xbe\x7f\x73\xd0\x70\xdb\x30\xf5\xa3\xfc\x51\x6c\xc6\x75\xce\x79\xd0\x52\x6e\xc4\x05\x60\xdf\x79\xe7\x1d\xfb\x8b\x5f\xfc\xc2\xbf\x41\xc4\x03\x57\x66\x3e\x62\x0c\x8d\x34\x63\x41\x1b\x65\x4a\x40\x45\x32\x70\x29\xa3\x5f\x29\x50\xa7\x17\xea\xc4\x12\x0f\xe9\xf9\xe3\x00\x80\xd4\x3c\x62\x23\x13\x4d\x5e\xcd\x20\x68\xed\x15\x03\x9d\x52\x9d\xa5\xce\x40\xf0\x38\x89\xbf\x94\x77\xaa\x43\xf6\x69\x43\x60\x24\xd5\x01\x6a\x80\x55\x0b\x8f\x33\x40\x8b\x81\xcc\x18\xf8\x8c\xc5\x4f\x2b\xd3\xe3\xf4\xdb\x69\xc3\xb4\xb3\x3d\x29\x69\x3e\x5c\x30\xb0\xa3\xcc\x0d\x77\xdb\xc3\xad\x5e\x6e\xb7\xc7\x91\xf5\xad\x02\x13\x40\x42\x98\x4d\x99\xb8\x97\x90\x8d\x7c\x5b\x2e\x50\x01\xe5\x42\x55\xc9\x8f\x82\x14\xbe\x84\x64\x00\x58\x83\xe1\x41\x73\xb4\xf5\x68\x66\xb8\x2d\x17\xf0\xb1\x42\x0a\xb8\x90\xec\xe6\x34\x33\x25\x3c\x48\x03\x48\xc9\x3e\x4d\xd8\xa8\x0f\xdb\x51\x3e\x4c\x48\xc9\x7b\xa2\x12\x9a\xcd\x26\xe6\xe7\xe7\x33\xb2\x9e\x37\x39\xdb\x62\x4d\x67\x75\xaf\x79\x7a\x6d\xa7\xf5\x7c\x6b\x98\x1d\xab\x6d\x81\x52\x50\x71\x6d\xc9\x08\xe4\xcd\x1e\x47\x17\x8e\x50\xec\xfe\xae\x07\x07\x86\x40\x28\x53\x53\xc3\x45\xf5\xd9\x1b\xce\x88\x9d\x44\x54\x1d\xea\xef\xcf\x10\x40\x39\x75\xb8\xd7\x1a\x6d\x5e\x59\xe9\x5e\xb8\xb5\xd4\xbf\x72\xd0\xb4\x5b\x1e\xb4\xa0\x3a\x64\x6e\xe2\x80\x39\x14\xdf\x20\x42\x51\xaf\xbd\x5e\x8f\x1e\xe5\x4f\xc1\x84\xe6\x7c\xb8\x83\x08\x8d\xc2\xa9\x11\xd2\x66\x2d\x78\xd0\x46\x61\xd2\x2c\x07\x04\x1a\x3e\x53\x21\xe9\x18\x97\x27\x36\x13\x21\x75\xa2\xd0\x6c\x88\x54\x6e\x7f\x1f\xeb\x47\x5c\x9e\x10\xc0\xd2\x64\xd2\x66\x71\xe8\x3d\x4d\x37\xcd\x68\x48\x93\x89\xd3\x51\x7a\x1a\x27\xf1\x0f\xc9\x4e\x69\xa6\x69\x07\x49\x7f\x34\xdd\xe0\x46\x31\xa6\x13\x12\xd0\xd3\x68\x79\xe0\xa0\x37\xc5\x06\xc6\xf4\x53\x03\xf4\x21\x7d\x08\xf1\x4f\xe9\x63\x29\xf4\x9e\x86\xd7\xab\xa6\x13\x34\x4e\x6a\x9f\x90\x4c\x9a\x3c\xdc\x19\x96\x7f\xd6\xc0\xee\xb4\x47\x3b\xbd\x7c\xb4\x09\x4c\xce\x67\x7b\x7f\xa0\xf9\x0d\x3e\xe8\x35\x18\x0f\x32\xcb\x68\x53\x6d\xd0\xad\x01\x10\x42\x5f\x9d\xa2\x6e\x6a\x3e\xa6\xcc\x83\x6e\x8b\x2c\x0b\xe2\x6c\xbf\x61\x77\xb7\x3b\xa3\x7b\x5b\x33\xc3\x5d\xd4\x07\xa3\x29\x21\xd6\xdf\xa4\xfe\x12\xb3\x2d\xf4\x57\x6b\x03\x40\x6f\xcb\x90\x1e\x49\x83\xb8\xff\xf1\x8f\x2c\x86\xc2\xd4\x60\xe8\xc4\x89\x13\xf8\xe4\x27\x3f\x09\xa0\xb6\x44\xe4\x37\xe4\x96\xe0\x65\x79\x3f\x5f\x79\x62\xbb\xf5\xb1\xc5\x6e\xfe\x74\xe6\xd0\x99\x54\x09\x16\xcc\x24\x58\xae\x5e\x37\x26\x27\x1b\x1a\xae\xbf\xfe\x70\x21\x49\xed\xaa\xe5\x9e\xc9\x14\x8c\x08\x7e\x96\xc5\x7f\x66\xc0\x10\xe8\x52\x66\x5d\x26\x18\x64\xb6\x7b\x7b\xb1\xb7\x7e\xf5\x50\x77\x7d\xa7\x3d\xbc\xef\x97\x88\x50\x01\x96\x12\xb4\x18\x63\xfa\xfe\x80\x39\x10\x25\xb8\x70\xe1\x82\x7d\xff\xfd\xf7\xa9\x24\xdc\xc8\xf0\x5f\xee\xb4\x34\x03\xc1\x83\x34\x4a\x8f\x39\x3e\x0e\x98\xb4\x74\x9a\x13\x99\x26\x9f\xd0\x2c\x87\xe4\x58\x2c\xa3\x95\xf8\x4a\x21\x34\xa3\xc1\xeb\x57\x32\xf8\x12\x6f\xde\x06\x29\x40\x27\x16\x2f\xe5\x43\xf9\xd3\xe7\x92\xd3\x97\xea\x53\x02\x91\x19\xa3\x8b\xb5\x19\x07\x29\xda\x2f\xcf\x4f\x6a\x63\xce\x27\xe6\xec\x42\x4e\x56\xca\x27\x46\x2b\x39\x68\x2d\xc4\xea\x85\xeb\x55\x4c\x7e\xde\x86\xd3\xea\x8b\xc4\x3f\x16\x24\x70\xa9\xd9\x8a\x69\x7c\x12\x6f\xcf\x98\xfe\x13\xe0\xe2\x86\xdb\x9d\xe1\xee\x4e\x67\x74\x67\x64\xd0\xa7\xf6\xbb\xdc\x83\x62\xd8\x6a\x3e\x79\x5e\xd2\x92\x3d\x93\xf4\x40\x3a\x03\xff\x99\x16\x7f\x56\x8b\xab\xd1\x73\x3e\x7c\x9f\x64\x6d\xff\x23\x79\x66\x0d\x86\xdd\x96\xdd\x7a\x34\x33\xbc\xd7\xcb\x5d\x17\x10\x37\xe2\x5a\x00\xda\xc9\xb9\xb5\x7a\x60\xf1\xdc\x26\xd6\xf8\x45\xe2\x63\xed\x26\xe9\x00\xe7\x91\xea\x17\x3e\xd4\x1e\x97\x94\xf0\x3b\xe5\xbf\xb8\xb8\x88\xa3\x47\x8f\x96\xb3\x2d\xf4\x63\x8a\x28\x40\x4b\xc3\xa2\x73\x64\xb7\x75\xfa\xc8\x6e\xeb\xd9\xf6\xd0\x1c\x83\x33\x59\xfd\x84\x43\x12\x3c\x0c\xa6\x4b\x33\xc5\xbe\x92\xc9\x1d\x56\xc5\x73\xd0\xe3\xa0\x4b\xa8\x81\x3a\xfa\x71\xd5\xf1\xd1\x7e\x33\x6e\xb1\xaf\xc6\x50\xf5\x27\x13\x35\x13\x6f\x39\x95\xc8\xbc\xea\x36\xfe\x6a\x6b\x66\x78\xe7\x83\xc3\xdd\x77\x1f\xcc\x0d\x6e\x0e\x1a\x6e\xd7\xa1\x3c\xa7\x85\x7f\x38\x51\x3a\x64\x0e\x17\x2e\x5c\xb0\x6f\xbf\xfd\x36\x1e\x3e\x7c\x48\xb3\x0c\x29\x95\x0f\xa1\x11\x62\x4a\x5b\xa7\x8e\xfe\x52\xee\x39\xca\xe7\x32\xf1\x78\x49\x76\xcd\x21\xf1\x8e\x1a\x1b\x79\x84\x78\xf0\x78\xce\x37\x66\xf8\x35\x03\x23\x19\xeb\x14\xb9\x38\x6f\x2d\xcf\xd0\xe8\x88\x1b\x2c\x0e\x2a\x34\x9e\xd2\x7d\x4a\x7d\x4a\x86\x36\xd5\xe1\x4b\xb2\x49\xb2\x84\x46\xf8\x52\xfd\x4a\x75\x10\x93\x8b\x83\x26\x49\x16\x29\xc4\xfa\x81\x24\x27\x95\x49\xd3\x8f\x14\x7d\x48\xed\xd7\xa1\x7a\x8b\xd9\x11\x1a\x17\x02\xb9\x52\x1c\x1f\x5c\x69\xc1\x3b\xf3\x02\xb8\x60\xb8\xd7\x1a\xed\xde\x9b\xef\x5f\xeb\xe5\x76\xcb\x15\xcf\x6b\x66\xbf\x66\xa2\xab\x99\x77\x69\x29\xa7\x5c\xce\x31\xd5\x7e\x16\x0a\x7e\x4a\x4f\xc1\x66\x61\x68\xe0\x2f\x8e\xd0\x6b\x67\xc6\xf9\x0f\x1b\xae\xbb\xdd\x1e\xde\xdb\x98\x1b\xdc\x75\x06\x16\xc2\x21\xa2\x15\x3f\xc3\xfb\x0c\x84\x7b\xed\x59\xea\x80\x42\xa3\x97\x9e\x4b\x6d\x14\xb2\xd1\x6a\xfa\x0f\x0b\x2c\x92\x94\xe5\x77\x11\x8e\x1d\x3b\x96\x9d\x3a\x75\x8a\x02\x96\x8c\xbe\x4d\x84\x72\xb6\xa5\xb9\x7c\x6c\xa7\xf5\xdc\x62\x37\x7f\x9a\x7e\x87\xa2\x54\x28\x47\x94\x4a\x9e\x28\xa9\x34\xaf\x08\xe3\xd9\x10\x19\xbd\xba\x1a\xa3\xea\x4c\xdc\x1a\x0a\x66\x9b\x59\x3c\x0d\x5f\x57\x05\xa5\x2a\x0f\x13\xa0\x7b\x6d\x1c\xba\xb9\xdd\xbd\xb1\xdc\xbb\x70\x73\xa9\x77\xad\x9b\xdb\x6d\x18\xec\x16\x1f\x4c\x9c\x98\x71\x29\x0e\x99\xab\x29\xd4\xc5\x8b\x17\xed\x5b\x6f\xbd\x85\xcd\xcd\x4d\xcd\xe9\xa5\xea\x84\x36\x92\xe3\x41\x1b\xd9\xd1\x38\x69\xd4\x1a\x1a\xa5\x85\x46\xde\x94\x56\x72\x10\x52\x67\xa4\x65\x0f\x39\x29\x89\x2f\x0d\xda\xac\x89\xc4\x47\x92\x29\x54\x57\x3c\x0f\x7f\x1d\x1a\x4d\x6b\xce\x24\xe4\x08\x62\x74\x52\xbb\xa7\x38\x26\xfe\x9c\xf3\x08\x01\x1f\x0e\x0c\x62\x46\x92\xca\x10\x92\x2f\x05\x34\xd1\x10\x02\x89\x21\x27\xcd\xeb\x4c\xd3\xb3\x98\x61\x97\x80\x5b\x6c\x14\x2b\xc5\xf3\x91\xb5\x24\xa3\x94\x67\xc8\x29\xc5\x6c\xbd\x26\x6f\x0c\xb0\xf0\xbe\x21\xc9\x1b\x73\xae\x16\x18\x2f\xa9\xf8\x4f\x9b\xc0\x60\x38\x68\xb8\xee\xed\xc5\xfe\xf5\xed\xce\xf0\x86\x35\x6e\xc8\x77\xb6\xd0\x6d\x01\x7e\xb8\x4a\x5d\x03\x07\x1e\x74\x36\xbd\x02\x34\xa6\xb6\x31\x57\x02\x2c\x8e\x8c\xaa\xeb\xc0\xc8\xd5\xf8\x38\xe3\x6c\xb7\x39\xda\x7a\x30\x37\xb8\xb1\x39\x3b\xd8\x84\x0c\x5a\xca\xb2\x02\xc0\xc6\xc6\x06\x2e\x5f\xbe\xec\xeb\x2c\x14\xa4\x3e\x91\x02\x18\xa5\xe7\xd3\x00\x60\x6e\x8f\x25\xfe\x13\x83\x8f\x69\x9c\x95\xa6\xd4\xb1\x91\x93\x16\x27\x29\xa9\x3a\x4a\x38\x7e\xfc\x38\xce\x9e\x3d\xeb\x0f\x9a\x03\xf9\x3e\x83\xff\xa8\x62\xab\xe1\x4c\xeb\xd8\x4e\xeb\xec\x91\xdd\xe6\xb3\xed\xa1\x59\x83\x43\x36\x31\x93\x61\xaa\xad\x22\xa6\xd2\x8a\xe2\x21\xaa\x89\x13\xa2\xa1\x86\x00\x88\xf2\xd4\xdb\x92\x5f\xc1\xa8\x38\xff\xb9\xb6\xf6\xc9\x37\x74\xb1\xfd\xbe\xb4\x33\x94\xc9\xfc\xe6\xdb\x62\x4e\xb1\x9a\xac\x71\x18\x66\xae\xff\x60\x6e\x78\xed\x83\x95\x83\x0b\x3b\xed\xe1\x03\x6b\x9c\xdf\x80\x4b\x4f\xc6\xf5\x33\x2e\xe5\x9e\x16\xba\x06\x7a\xe1\xc2\x05\x3c\x7c\xf8\x30\x36\x82\xd4\x40\x00\x37\x9c\xb1\xd1\x91\x34\xba\x94\x46\x4a\x12\x9f\xd4\x91\x01\x8f\x0f\xe9\xb2\xe6\xb0\x24\xc3\x17\xe3\x45\x79\x4a\x46\x59\x1b\x61\x70\x39\xe8\x6f\x0a\xd0\x9f\x66\x30\x30\xed\x68\x4b\x1a\xfd\xa4\xb4\x0d\x6d\xc3\x94\x3a\x93\xc0\xa3\x06\x08\x38\xbd\x46\x23\xa5\xe1\x32\xd2\x67\xdc\x79\x4b\x71\x29\xfc\x63\x80\x2b\x05\x50\x73\x90\xc5\x75\x2a\xc6\x83\xe7\x89\xc0\x73\xe9\x59\x0c\x38\xc6\xc2\xe3\xb6\xb9\x24\x8b\x44\x2f\xa5\xd1\xda\x0f\xef\xbd\xf7\x1e\x06\x83\x01\xb7\x67\xfe\x03\xb2\xd6\xbf\x5d\x69\x0d\x86\x1b\xf3\x83\xcd\xfb\xf3\x83\xcb\xbd\xdc\xed\x3a\xc0\x96\xcb\x3c\xa0\x13\xf2\x64\x3d\x7f\x7c\x51\x1b\xa6\xfa\xe0\xcf\xd5\xaa\x68\x08\xec\xf1\x4b\x48\x35\x1f\x50\x0c\x61\xc9\x06\x98\xca\x15\xd5\x0f\x37\x2d\xec\x7f\xf7\x51\x67\x78\xe7\xde\xfc\xe0\xda\x7e\xd3\xee\xa3\x0e\x5c\xca\xb7\x45\xfd\xe7\x0a\x00\xe0\xde\xbd\x7b\x58\x5f\x5f\x97\xc0\x1f\x0d\x7c\x20\x18\xd2\x87\x14\x90\x48\xf9\xd2\x78\x09\x2c\x87\xd2\xf3\xb4\xe5\x73\x49\xc9\x43\xc8\x28\x14\xb4\xce\xa4\x39\xc9\x98\x73\x14\x3b\xa0\xff\x26\x11\xf9\x36\x91\x3f\x29\xb7\x35\xdf\x6b\xf8\xd9\x96\x73\x99\x33\xf3\x86\x2c\xdf\x90\x55\x9c\xb1\x4a\x4d\x4c\xa0\x54\x53\x31\xa5\xb2\x4a\xeb\x91\x8e\x2c\x15\x91\x2f\x85\xfa\xe5\xa1\x32\x50\x10\xe4\xe8\x7a\x23\x49\x23\xac\x41\xfa\x83\x84\xc6\x67\x0f\xf9\xe3\xa0\x1d\xac\x81\xdd\x6b\xd9\xcd\xeb\x87\xba\xef\xde\x5d\x18\xdc\xb4\xe3\x99\x16\xff\x16\x11\x3d\x19\x77\x48\x8f\xf3\x47\xb5\x21\x17\xb7\x6e\xdd\xb2\xbd\x5e\xcf\x67\xa5\x8d\x04\x25\xc4\x1d\x42\xbf\x9a\xc3\xe1\x8a\x29\x8d\x8e\x32\x4c\x76\x92\x69\xc1\x74\x8a\x53\xd5\x9e\x71\x1a\x09\x48\x48\x0e\x24\xc4\x53\xd2\xf3\xd8\xe8\x9c\x3a\xab\x58\xfd\x6b\x3c\x68\xfe\x21\x99\x42\x81\x1b\x95\x50\xdb\x68\x20\x45\x03\x19\xd2\xaf\x74\x2d\x81\x5b\x29\x8f\x14\x3d\xe1\xe0\x98\xf3\xe0\xb4\x21\x3b\xa8\x0d\xb4\x1e\x07\x60\xc7\xe8\x42\xf5\x27\xc9\x24\x81\xb2\x10\x88\x4c\xe9\xab\xb1\xb4\x52\x1f\xd0\xea\x4c\x92\x67\x5a\x9d\xd6\x06\x1b\x13\xe9\x5f\x7b\xed\x35\x6f\xe7\xb8\xef\xf0\x8e\x7e\x08\x60\xe8\xe0\xfa\x07\x4d\xbb\x7b\x6b\xa9\x77\x79\xa7\x3d\xba\x35\xca\x5c\xb5\xd7\x85\x7d\x60\x71\x3c\xd8\xa5\x9b\x04\x00\xe3\x28\xb0\xa8\x76\x3c\xd6\x52\x15\xa3\x60\xff\x76\x68\x7d\x27\x0d\x85\x29\x14\xb6\x8c\xaf\xd9\x5e\x1a\xbb\xdf\xb4\x9b\xf7\xe6\x07\x57\xee\xcd\xf7\x6f\x3b\x38\xfa\xd9\x96\xda\xac\x8b\xb7\xf7\x42\xfd\x69\x7a\xa5\xd9\xa8\x50\x7b\x6a\x21\xd4\xe7\xc0\x9e\x49\x7e\x85\xf3\x17\xed\x47\x48\x79\x24\x61\xb4\x7b\x2d\x2e\xc6\x37\x94\xae\xa4\x9f\x9f\x9f\xcf\xe6\xe6\xe6\xca\x07\x7e\xb6\xc5\xef\x6d\x71\xce\xb5\x0c\x4c\xeb\xc4\xa3\xf6\xc9\xd5\xdd\xe6\xb3\xed\x91\x59\xcb\x50\x7c\x2d\xd3\xef\x7a\xaa\xcd\x80\xf8\x93\x73\x29\xaa\x99\x9c\xfd\x28\xd3\x51\x95\x32\x95\xfa\x39\x63\xca\x4d\xb5\x60\x87\xff\xd0\xe9\xc4\xf1\x64\xcc\xe4\x84\x61\x6d\xf6\xa6\x14\xa5\x42\xda\xfe\xb0\x24\x00\xe8\x37\xec\xfe\xdd\x85\xfe\xe5\xcb\x2b\x07\x17\x7b\x4d\xeb\x5f\x7d\x2e\x97\x86\xfc\x21\x73\xa8\x8e\xf3\xa7\x40\xd0\x6e\x6c\x6c\xd8\x1f\xff\xf8\xc7\x7e\xb6\x85\x03\x06\xee\x9c\x25\xc7\x40\x95\x3f\x15\x90\x80\xc4\x49\xce\x4f\x52\xde\x18\xa2\xa7\x41\x03\x13\x9c\x46\x4b\xa7\x39\x9f\x94\x11\x21\xcd\x33\x46\x1f\x32\xec\x52\xfd\x71\x1a\xed\x59\xa8\x4e\x35\xc7\x92\x02\x6c\x78\x79\x24\x19\xf9\x28\x28\x96\x37\x6f\x6b\x9e\x3e\xa5\xce\x25\xa0\x9b\x12\x42\x40\x47\x6a\x43\x4d\x27\x78\x3d\xa7\xb4\x2b\x4d\x4f\x69\x53\xc0\x19\x97\x2b\x95\x86\xb7\x0f\x95\xcb\x3f\x0f\x81\x00\x29\xad\x94\x77\x48\x6f\x28\x0d\x97\x33\xe4\x44\x35\x79\xb5\x41\x40\x30\xd0\xa5\x72\x62\x13\xfd\xb9\x56\x7d\x00\xfd\x5b\x4b\xbd\x9b\x77\x17\xfb\xeb\xdd\xa6\xdd\x72\x66\x3c\xeb\x52\x1e\xfc\xc6\x3e\x8e\xe8\x2d\x37\x80\x9a\xb3\xa0\xcb\x42\xe3\x74\x28\x3f\x11\x03\x9a\xa6\x96\xa2\xee\x27\x0c\xc9\x8f\x2e\x04\x38\x38\x0c\x32\xb7\xbf\x39\x37\xb8\x76\x6b\xa9\x77\x79\xbb\x33\xda\x2a\x5e\xba\xe0\x67\x73\x85\xda\x4d\x6a\xf3\x98\xbd\x95\x74\x5e\xa3\x8d\xe9\x42\x4c\x26\xcd\x1e\x48\xfe\x2a\x59\x09\x78\xa7\x8b\x39\x8b\xd4\x10\x1b\xe5\x00\x40\xf6\xc9\x4f\x7e\x12\xcf\x3e\xfb\x6c\x89\xba\xd9\x57\xa0\x5b\xc6\x98\x56\xd3\xa2\x73\x6c\xa7\xf5\xd1\x85\x5e\x7e\x36\xb3\x66\x96\x6f\xc6\xf5\xdf\x25\xaa\x66\x40\xc6\xcb\x31\xe5\x57\x99\xfd\xaf\xa7\xf7\xaa\x63\x38\x12\xae\x94\x90\x6e\x41\xf1\xcf\xca\x2b\xb2\x99\xa6\xc2\x48\xd5\xee\x2b\x9f\x96\x2f\x23\xd5\x22\x0b\x61\x87\x99\xeb\x3f\x9a\x19\xde\xba\xba\xd2\xbd\x70\x6f\xbe\x7f\x17\xd5\x92\xd0\x3e\xb9\xf6\x1d\x71\xe8\x95\x99\x22\xef\x57\x5e\x79\x05\xbb\xbb\xbb\x9a\xd1\xd7\xda\x33\xe4\x5c\x78\x88\x8d\xc0\x42\x00\x47\x72\x6e\x31\x70\xcc\x9d\x7e\xc8\x19\xa7\x8c\xf6\x68\xfe\xd3\x3a\x95\xe8\x08\x41\xc9\x9b\x3b\x3f\xcd\xb9\x6b\xb2\xc7\x9c\x2e\x97\x21\x95\x9f\x94\x8e\xd3\x72\xba\x10\xd8\xd0\x64\xe5\x74\x12\x88\x0d\x81\x3b\x2d\xdf\x10\x70\x88\x39\x6d\x1e\x27\x19\xfb\x58\x7c\xc8\xb0\xf3\x32\x48\x60\x8f\xa7\x93\xda\x85\xff\x69\xf9\xd1\x10\x03\xac\xa9\xf1\xa1\xb6\x94\xea\x9d\xcb\x1d\x73\xa2\x60\x74\x92\x0e\xc4\x64\x05\x50\xcd\x92\x10\x00\x33\x64\x7f\xfd\xed\xce\x68\xeb\xf2\xe1\x83\xb7\xef\xcf\x0f\xae\xf4\x1a\x6e\xbf\xe6\x39\xf8\x87\x73\x31\x79\x4b\xed\x7e\xe9\x3f\x2a\xf7\x41\x9e\x54\xfb\x5d\x78\xfa\xf2\x96\x9d\x94\xeb\x00\x8c\x0c\x86\xdb\x9d\xe1\x9d\xeb\xcb\xdd\x8b\x77\x17\xfa\x37\x61\x82\x2f\x5f\x94\x7a\xd5\xef\xf7\x6d\xbf\xdf\x07\xa6\xd3\x7d\x1a\x38\x58\x91\xf4\x8f\xf3\x0a\x81\x4b\xa9\xfd\x63\xfa\x4f\xd3\x96\xbf\x21\x63\x1e\x33\x90\xf4\x3e\x64\xb8\x42\x41\xe3\x57\xe6\x29\x1c\x63\xec\xf7\xb6\xe4\x7e\x53\xae\x73\x2e\x3f\xb1\xd5\x39\x76\x78\xaf\x79\xbe\x3d\x34\xab\xc6\x99\x9c\x6e\xc6\xad\xbd\x83\x06\xd4\xb7\x82\x7b\x44\x4c\x7f\xd9\xb2\x4e\xf9\x19\x00\x0a\x42\xc8\x37\x24\xca\x6f\x2b\x96\xc9\xa8\xcc\x94\x57\xb5\x69\xc6\x95\x8f\xf8\x3a\x69\xb1\xac\x54\x7c\xf4\xcb\x01\xf6\xa0\x69\xb7\x6e\x2d\xf5\xd6\xaf\x1e\x3a\x78\x1f\xa8\x0e\x99\x2b\x8e\xf4\xef\x16\x9b\x73\xe9\x79\x2d\x16\x18\x6f\xd0\x72\xce\xd9\xd1\x68\x24\xd5\x71\xa8\x7d\xb9\xf3\xd3\x0c\xf9\x04\x12\x86\xac\x84\xb1\xe7\x5c\x06\xc9\xb8\x69\x32\x69\x46\xdd\xb2\x6b\x2d\x0f\x0d\x94\x73\xb9\xb8\x03\x91\x1c\x15\xaf\x8f\x54\x87\xce\xe9\x35\x07\x19\xaa\x0f\x29\xad\x54\x87\x5c\x26\xe9\x5a\x6b\xd3\x54\x60\x29\xc9\x20\x95\x8b\x1b\x3e\x4d\x76\x09\x50\x4a\xc0\x06\xa8\xe7\x25\xc9\x26\xe9\x83\x24\x4f\xcc\xe6\xc5\xc0\x4d\xc8\x09\xf3\x34\x3c\x48\xf5\x22\x0d\x22\x34\x59\x34\xbd\x93\x40\x05\x4f\x47\xcb\x20\xd5\x37\x4f\xc7\x83\x26\x0b\x97\x99\xcb\x13\x8a\x97\xfa\xa9\x94\xae\x8a\xb4\xb6\x04\x2b\xec\x05\x05\xba\xbc\xd2\x47\x31\x63\x7d\xed\x50\xf7\xfa\xe5\x95\xee\x7f\x6f\xcd\x0c\x6e\x0c\x33\xd7\xaf\x5e\xb3\xc0\x78\x1c\xea\xf7\x56\x16\xfc\xe9\x07\x7a\xab\x59\x96\xda\x3b\xa3\xec\xba\xbe\xcc\x54\x9b\xb4\x29\x5d\x04\xdd\x8c\x5b\xcd\xf6\x1f\xb4\xec\xe6\xb5\x43\xbd\x77\xaf\x2d\xf7\x2e\xed\xb7\xec\x36\x8a\x83\x45\x49\x19\x86\x45\xb9\xec\x98\xcd\xf8\xf7\xad\xb7\xde\xc2\xeb\xaf\xbf\x1e\xf2\xd9\x20\xd7\x9a\xee\x4b\xfd\xc6\x3f\x8b\xd9\x17\x4d\x7f\xa4\x6b\x4d\x17\xf9\x73\x2b\x09\xcc\x83\xd6\xd1\x32\xf6\x37\x4d\xd0\x3a\xae\xc8\xe7\x6b\x5f\xfb\x1a\xce\x9f\x3f\x5f\x7e\xf5\x92\x1e\x3a\xe7\x97\x8a\x8c\x31\xad\x33\x0f\x3b\xe7\x97\xba\xf9\x33\x0d\x6b\xe6\x4b\xcc\x40\x37\xe0\x82\x6c\xc8\x45\x7d\x2a\x8e\x06\x3a\x4d\x48\xb5\xab\xb6\xac\x63\x2a\x45\x96\xc8\x6b\xbf\x5e\xc3\xd9\x9b\x45\xa6\xfe\x5f\x2d\x94\x1b\x7e\x8d\x41\x3f\x77\xfb\xf7\x16\xfa\x57\xde\x3f\xdc\x7d\x77\xaf\x6d\xb7\xc0\x0e\x99\xa3\xa0\x05\x6c\x89\xa8\xf8\x80\x22\xfe\xea\xaf\xfe\xca\xf6\xfb\xfd\x10\x48\xe4\x41\x72\xc4\xa1\x74\x9a\x23\xd4\xf8\x49\x06\x50\x73\xa0\x34\x2e\x04\x3c\xa4\xfc\xac\x40\x1b\x03\x33\xa1\xf4\x60\xf1\x5c\x46\x2e\x6b\xa8\xce\xa5\xb2\x49\x32\x48\xf2\xd0\x38\xa9\x1e\x52\xdb\x5a\x73\xce\x52\xfe\x3c\xdf\x94\xb2\xf0\x38\xe9\x7a\x9a\x7c\xa5\x76\xd7\x74\x40\xe3\x1b\xca\x5f\x32\xac\x34\x68\xb6\x2e\x56\xff\x52\xbc\x56\xce\x94\xbc\xa5\xfe\xc8\xcb\x14\x02\xbc\x92\x8c\xd2\xbd\x26\x6f\x08\xb4\x6a\x3c\x53\x64\xe0\xe9\xb4\x32\x48\xa1\xf6\xfc\xef\xfe\xee\xef\xec\xfd\xfb\xf7\x4b\x7e\xcc\x2e\x0e\x51\x7f\x03\xb3\xeb\x0c\xba\xeb\x47\xf6\x2f\x7d\xb0\xd2\xfd\xcd\x76\x67\x78\xc7\x1a\x0c\xc9\x38\xb3\x16\x6a\xdb\x00\x48\x7c\xed\x45\x52\x3a\x65\x22\x04\x72\x56\x5d\xe5\x8b\x6a\x19\x8d\xaf\x0f\x9a\x76\xeb\xfa\x72\xf7\xed\x4b\x47\xf6\xdf\xdd\x9c\x1b\xdc\x43\x61\xfb\x0b\xbb\x4f\x6d\x3f\x2d\x23\x0f\x5a\xdb\x4c\xd3\x0f\x52\xfb\x98\x66\x0b\xb4\xfe\x9a\xe2\x2f\xf8\x35\xf2\x00\x83\x90\xf2\x84\x0a\x11\x72\x76\xbc\x22\x34\xf0\x62\xd9\x73\x0a\x92\xfc\xab\xcf\xe3\xbd\x2d\xc6\xb4\x8e\x3d\x6a\xad\xae\xee\x36\x3f\xde\x1e\x66\x6b\x06\x28\x3f\xa6\xe8\xb7\xc1\xd6\xbf\xe2\x5c\xdf\xad\xed\x81\x6d\xa5\x33\x14\x2b\xd7\x43\x4d\x31\xd5\xe2\x0b\x6c\x24\x18\x1e\x48\xe2\x7f\x47\xc6\x0d\x1f\x75\x86\xf7\xae\x1d\xea\x5d\xb8\xb3\xd8\xbf\x89\x62\x23\x2e\xd8\x99\x2d\xce\xb9\x72\x79\xa8\xb8\xb6\x00\xb0\xbb\xbb\x8b\xef\x7f\xff\xfb\x3c\x1b\xda\x3e\x9a\x13\x04\x89\xd7\x0c\x29\x84\xf8\x50\xfa\x10\x1f\x9f\x36\xc4\x93\xff\x6a\x3a\x16\x72\xd2\xb1\xf2\x6a\x69\xb8\xce\x6a\xce\x42\x4a\xc3\x43\x4a\x5d\x6b\x75\x16\x6a\x3b\x49\x6e\x69\x74\x1a\x03\xa1\xb1\x3e\x2e\xf1\x4e\x19\x05\xa7\xd6\x39\xa7\x91\xea\xe9\x71\xd2\x49\x34\x92\x7c\x5a\x1e\x29\x72\xa7\x84\xc7\xe5\x9d\x62\xec\x35\xdd\x93\x6c\x6e\x0c\x58\x53\x9a\x10\x6f\x29\xad\xa4\x9f\x92\xae\x87\x42\x4c\x36\x2d\x9f\x89\x50\x0c\x7a\x2d\xc6\x0e\x3e\x43\x35\xeb\x52\xee\x73\x01\xb0\xdf\xcd\xed\xf6\xfa\x91\x83\x77\x72\x6b\x5a\x4f\x3d\x30\x58\xea\x36\x8e\x37\x46\x26\xaf\x1d\xb0\x42\x97\x7f\x1c\xf1\x28\xd4\xa5\x14\xa7\x9c\xd7\xde\x0a\x62\x69\xfd\xb6\x04\xea\x76\xc6\x83\x66\x57\x0e\x92\xbb\xcd\xd1\xf6\xf5\xe5\xde\xdb\xbf\x3d\xba\xf7\xdf\x1b\x73\x83\x9b\x8e\x6c\x0d\x20\x72\xfb\x36\x29\x67\xda\x85\xcd\xb9\xa9\xf6\x3b\xf5\xb9\x64\x87\x1f\xd7\x47\x48\x21\x36\x23\x83\x06\xea\x98\x30\x23\xf7\xfe\x5a\xfa\x0b\xd1\x9b\x00\xbd\x44\xeb\x0b\x47\xe9\x33\x00\xee\x2b\x5f\xf9\x8a\x39\x7d\xfa\x34\x1a\x8d\x86\x07\xa5\xb9\x31\xa6\x81\x31\x68\x69\x1b\x63\xda\x00\xe6\x9e\xbf\x3d\xf7\xc2\xc9\xed\xce\x57\x3a\xc3\xec\x09\x83\xf1\x32\x51\xf5\x01\x45\x53\x3f\x50\xce\xd5\x95\x8c\x2e\x11\x8d\x01\x0f\xdb\xb4\x12\x45\x28\x9e\xd6\xc5\x91\x4d\x84\x17\xc5\x39\x0e\xc0\x41\xcb\x6e\x5d\x5f\xee\x5e\x58\x5f\xdd\xff\xcd\x5e\xcb\x6e\xc2\x60\xc7\x39\xb7\x6b\x8c\xd9\x03\x70\x80\x0a\x79\x0f\x8c\x31\x03\x00\x23\x63\xcc\x08\x80\xdd\xdc\xdc\xb4\xff\xfc\xcf\xff\x8c\xfd\xfd\x7d\xaf\x58\xf5\xf5\x2f\x79\x2c\x40\x07\x11\xbc\x3d\x69\xf0\xcf\x32\x90\x7d\x65\xe4\x9a\xe6\xc9\x07\x28\x19\xbb\xe6\x6b\x69\x34\x8e\xa6\xf3\xcf\x2c\x7b\x66\x05\x19\x33\x16\xa7\xc9\x01\xd4\x65\xb2\x2c\x3d\xaf\x3b\x9e\xde\x0a\xcf\xb8\x01\x97\x64\xe3\xe5\xe1\x75\x6d\x14\x5e\x12\x70\xa2\xed\x25\xd5\x15\xaf\x6b\x4d\x1e\xb0\x34\x5c\x17\x24\xd9\x78\xfd\xd2\x74\xbc\xde\x40\x68\x79\xbe\x21\x1a\xc9\xf0\xc5\xd2\xf1\x6b\x8d\xb7\xa4\xdb\x5a\x48\xe1\xed\x03\x97\x31\x54\x1f\x21\xde\xa1\x34\x52\xd0\xca\xc3\x75\x43\xa2\x95\xf2\x92\xf4\x5e\x0a\x52\x79\x43\xcf\x39\x0d\xb5\x27\xa1\x3c\x78\x9f\xe0\x69\x6a\xe9\x6f\xde\xbc\x69\x0e\x1f\x3e\xec\x16\x16\x16\x68\x19\x32\x00\xa6\xd8\x72\x60\x48\x5c\x03\x06\x59\x2f\xb7\xc3\xbd\x96\xed\x3a\x83\x51\x67\xd8\xe8\xb4\x47\xd9\x5c\xc3\x9a\x86\x9f\xbd\x2f\x3b\x50\xe1\x2b\xc6\x7f\xe3\x5c\x9d\x19\xcf\xa4\x18\xe3\x5f\xbc\x20\x83\x64\xf2\xe3\x5d\x85\xbf\x06\xc8\xb7\xf1\x0a\x74\xb3\xdf\x1c\x6d\x5d\x3b\xd4\x7b\xeb\xdd\x63\x7b\x6f\xde\x5b\xe8\x5f\x2d\xbe\x45\xb7\x83\xf1\xe0\x75\x0f\xe3\x41\xeb\x01\x80\x1e\x80\x01\xc6\xc0\x65\x54\x94\xdf\xbd\xf9\xe6\x9b\xf6\x9d\x77\xde\xc1\x70\x38\x7c\x1c\xfd\x8e\x05\xde\x2f\x43\x69\x63\xba\x11\x93\x45\xd4\xa5\x9c\xdc\x48\x08\x27\x34\x3a\xcb\xd8\x2f\xa5\x0b\x8d\x7c\x52\x50\xb2\x05\x80\x85\x85\x05\xb4\x5a\x2d\x3a\xdb\x02\xe7\x5c\xf9\x36\x11\x1c\x5a\x4b\xdd\x7c\xfe\xe8\x4e\xeb\xe3\x9d\x41\x76\x3c\x73\x68\x95\xcd\x4f\x40\x72\x4d\x69\xa4\x69\x3f\x3e\x33\x02\x76\xef\x00\x7e\x9c\x6e\xf9\x21\xc4\x32\x9f\xc9\x7d\xe3\x25\x9d\xc1\x04\xae\xa9\x09\x20\xc4\x0f\x33\xdb\x7f\x38\x3b\xb8\x75\x7b\xa9\xbf\xbe\x35\x33\x7c\x00\x33\xf9\x0d\x22\xb6\x19\xd7\x92\x3f\x0c\x87\x43\x6c\x6f\x6f\x6b\x33\x05\x3c\x48\xa3\x6c\x69\x54\x14\x1a\xa5\xc5\x66\x6b\xb4\x91\x17\x4f\x1b\x1a\x2d\x48\xcf\x52\x46\x8e\x3e\x4c\x33\xeb\xa2\x8d\x0a\xb5\x3a\x8d\x8e\x12\x02\x79\xa4\xca\xcf\x9f\xa5\x8c\x62\x69\x1e\x5a\x5e\xb1\xd1\x93\x94\x4f\x0a\x9d\x0f\x5c\xbf\xb8\xed\xd0\xec\x03\xbf\xd7\x80\x8c\x06\xf0\x24\x59\x68\x1c\x9f\x35\x9a\x36\x5f\xce\x27\x04\x34\x79\xd9\x43\x6d\x2c\xe9\x4f\x4c\x86\x50\xd0\xea\x6c\x9a\x59\xa4\x90\x2c\xda\x6c\x88\x7f\xc6\xeb\x31\x66\x8b\x24\x7a\x40\xae\x43\x55\x8e\x9d\x9d\x1d\x3b\x18\x0c\x32\x72\xae\x89\x45\x35\xeb\xd2\x27\xbe\xa4\xeb\x9c\xcb\x8d\x31\xb9\xcd\x90\x6d\xcd\x0e\xee\xae\x1f\x71\xd9\x30\x73\xf6\xa9\x07\x33\xc3\xc3\x7b\xcd\xd3\xad\x61\xd6\x29\x67\x4c\x24\x5b\x5e\x80\x16\x67\xa8\x3b\x31\xfe\x51\x9d\x94\x0c\x01\xe8\x19\x61\x28\x4e\xc7\xdd\xe9\x8c\xee\x5d\x5b\xee\xbe\xfd\xde\xda\xfe\xdb\xf7\xe7\xfb\x57\x7b\xb9\xdb\x76\x70\xbb\x06\xe5\x41\xa3\xfd\x42\xe6\x72\xa6\x1d\xa8\x1d\xb0\x87\xfd\xfd\x7d\xff\x1d\xba\x98\x8d\xd2\xea\x7d\xa2\x3e\x1f\x33\xa4\xe4\x07\x16\x4f\xd3\x8a\x74\x39\x21\x80\x40\x10\x32\x3e\x21\x05\x0c\x19\xb0\x14\xe1\xf1\xf2\xcb\x2f\x67\x4b\x4b\x4b\x60\xb4\x74\x5f\x4b\x9e\x59\xb4\x4e\x6d\xb5\x4f\x2f\x77\xf3\x67\x73\x6b\x16\x51\xbc\x02\x5d\x03\x09\xb5\xd9\x96\xea\x7a\x12\xe9\xd6\x87\x94\x35\x72\xaa\x5c\x9e\x96\xde\x2a\xa0\xc4\x95\x74\x45\x3e\x34\xff\x09\x8e\x55\xb0\x70\xd8\x6f\xd9\xcd\x3b\x0b\xfd\x2b\x77\x16\xfa\xd7\x47\x0d\xec\x16\xd3\x83\x74\xa9\xa8\xeb\xbf\xfa\x4c\x14\xd8\x3a\xe7\xf0\xe0\xc1\x03\xfb\xbf\xff\xf7\xff\x9e\x64\x5b\x0f\x29\xc6\x47\xd3\x87\x10\x08\x89\x85\x90\x83\xd7\x8c\x16\x37\x5e\xd3\x3c\xe3\xf9\x4e\xa3\xc7\xbc\x5c\x5a\x9d\x85\x3a\xe1\x34\xfc\xa5\x7c\x52\xea\x28\x55\x9e\x10\xff\x54\x67\xe2\xf3\x91\x40\x52\xaa\x23\xd4\xf2\xd3\x9c\x3d\x4d\x17\xcb\x2f\x06\x24\xb4\xfb\x54\x10\xf6\x38\x69\xa7\x01\x08\x9a\x9c\x9a\xee\x4a\x69\x62\x21\xc9\x06\x47\x64\x89\xd1\x6a\xbe\x23\x34\x48\x0e\xc5\xc7\x80\xa8\x18\x7e\xf3\x9b\xdf\xa0\xd9\x6c\xda\xe3\xc7\x8f\xfb\x83\xd9\x4a\xf0\x52\x0c\xfc\x72\x8c\x67\xae\xf3\x22\x8f\x6c\x94\x21\xdb\x9a\x19\xe2\xf2\xea\x01\xfa\xb9\xed\x9e\x79\xd8\xd9\x3e\xb2\xd3\x3a\x3b\xdf\x6f\x2c\x67\x0e\xb9\xf1\x47\x62\x90\x51\x30\xf5\x37\x8e\xfa\x95\xe2\xbe\x76\x38\x29\x50\x5b\x2a\xf2\x47\xd5\xf5\x73\xb7\xff\x68\x66\x70\xef\xea\xa1\xee\xbb\x97\x0f\x77\x2f\x3c\x98\x1d\xdc\x2e\x66\x5a\x76\x0d\x0c\xff\x80\xee\xd0\x0f\x5c\x7d\x5d\xf9\x3c\xdf\x7e\xfb\x6d\x7b\xf3\xe6\x4d\xa9\x9e\x42\xf5\x16\xea\x77\xd3\x86\x14\x3f\xaf\x3d\xd7\x6c\x78\xcd\xde\xe4\x3c\x42\x08\x92\x63\x78\x1c\x41\x25\x61\x54\x60\x74\xe6\xcc\x19\xcc\xcc\xcc\xf8\x91\x1d\xfd\x2b\xcf\x6d\xe9\x0c\xb2\xf9\x13\x5b\xed\x8f\xcd\x0c\xb2\xb3\xa1\xd9\x16\x7a\x92\x60\x9d\x66\x12\x3a\x18\x76\xad\xce\x94\x50\xe8\x41\xc0\x50\x89\x4f\x6a\xe9\xea\x74\xb5\x4b\x61\x06\x68\xd8\x70\xdd\x07\xb3\x83\x1b\xb7\x16\x7b\x57\x76\x3a\xc3\x4d\x14\x6f\x11\x61\x3c\x4a\xf0\xcb\x43\xfc\xb5\xe7\x52\x79\xf7\xf6\xf6\x70\xe3\xc6\x0d\xcf\x52\xeb\xf8\xd3\x18\x66\x69\xc4\x13\x53\x6e\xcd\x21\xc6\x40\x6d\x0c\x58\x68\xe5\xe1\x7a\xa9\xe9\x5a\x8a\x33\x0b\x01\x1f\xed\x5a\x1a\x05\xf2\x32\x68\xd7\x92\x6c\xa1\x72\xc4\x46\x44\x29\x46\x82\x1b\xa9\x69\xea\x27\x94\x37\x0d\x21\x3b\xa0\xc9\x32\x8d\x13\x0e\xd9\x26\xc9\x00\xa6\xea\xad\xc4\x9b\x3f\xa3\xf4\xa1\x36\x8d\x39\x74\xa9\x9f\x69\xf5\xec\x79\x6b\xf5\xa6\x95\x85\x97\x81\xd7\x89\x26\x6f\x4a\x39\x25\xde\x3c\x48\x65\x08\x5d\x4b\x69\x43\x3a\x0c\xe1\x19\x00\x64\xb7\x6f\xdf\xc6\xf6\xf6\x36\x8e\x1f\x3f\xee\x79\xf8\xbf\x72\xe6\x05\x93\x3e\x06\xa3\x0c\x78\xd4\x19\x62\x70\xd8\xf5\x76\xda\xa3\xdd\xe3\x33\xc3\xcd\x13\x8f\xda\xe7\x56\xf6\xf3\x63\xed\x51\x36\x6b\xfc\xa9\xec\x7c\x30\x5a\xf8\x95\xf1\xe1\xa1\xe3\x69\x18\x69\x2e\xde\x15\xce\xc2\xc2\xd9\x41\xc3\xf5\x77\xdb\xa3\xad\x8d\xb9\xc1\x8d\x1b\xcb\xdd\xcb\x37\x97\x7a\x97\x1f\xcd\x0c\xef\x8e\x0c\x76\x51\x7d\x40\x97\x03\x97\x2e\xea\xaf\x75\xfb\x19\x17\xdc\xb9\x73\x07\x8f\x1e\x3d\xe2\xf5\x24\xd5\x37\xaf\x2f\xcd\xb6\xc4\x80\xba\xa7\xa1\x75\x2c\xd9\x43\x2d\x84\xfa\xaa\x04\xa6\xb2\x5c\x10\x30\xc4\x88\x3f\x93\x42\xa8\x13\x84\x0c\x89\xc8\x8f\x7e\x9b\x08\xc5\xa6\x5c\x63\x4c\xde\x18\x99\xce\xda\x6e\x6b\xf5\xf0\x5e\xf3\x13\xcd\x51\xb6\x4c\xe4\x1b\xa7\x03\x05\x07\x0c\x60\x94\xff\x55\xc1\x30\xf0\x31\x11\x8f\x3a\xc6\x70\x30\x93\x53\x83\xa6\x3e\x4b\x33\xbe\xae\x52\xf2\x4d\x0c\x54\x56\x94\xcf\x9c\xdd\x6d\x8d\x36\x6e\x2d\xf5\xae\x6c\xcc\x0f\x6e\x8e\x32\xf9\xab\xcf\xa8\x36\xe5\x96\x53\x84\x00\xf0\xe0\xc1\x03\xfb\xc1\x07\x1f\xf8\xfa\x8c\x22\x57\xe1\xd9\x84\x92\x20\xae\x78\x1a\xe8\x48\x01\x1c\xf4\x3a\xd6\x69\x42\xba\x28\xe9\x59\x48\x0e\xad\x0c\x5c\x1e\xa9\x53\x6b\xf4\x12\x4f\xff\x4c\x72\x12\x31\x5a\x7a\x4f\xf3\x94\x8c\xbc\xd6\xc6\xa1\xfa\x88\xd5\x45\xac\x1d\x34\xb9\x43\x7d\x3b\x14\xc7\xaf\xa5\xbc\x79\x48\x01\x05\x21\x10\x10\xd2\x7d\x5a\xcf\x31\xa7\xac\xf1\x0e\xf5\x9d\x50\xde\xb1\x34\xda\x75\x0a\x10\x7e\x1c\x79\xff\xa7\xda\x2d\xa4\x53\x31\x5e\x5a\x1b\xd6\xca\x72\xfd\xfa\xf5\xec\xd0\xa1\x43\xf6\xe8\xd1\xa3\x3e\x7e\x48\xe8\x39\x70\x29\xc3\xc8\x38\xec\xb6\x46\xb6\xb7\x6c\xbb\xdb\x9d\xe1\xf6\xd6\xcc\x70\xf3\xf8\x76\xfb\xec\xea\x5e\x7e\x7c\xae\xd7\x58\x6c\x0f\xb3\xd9\xdc\x9a\xdc\x14\x33\xfd\xf4\x15\x69\xbf\x3f\xc0\x15\x7b\x2a\x5d\x69\xf4\xc7\x17\xa3\x0c\xc3\x7e\x3e\xea\xee\xb5\x46\x5b\x0f\x67\x87\x1b\xf7\xe7\x06\xb7\xee\x2e\xf4\xae\x6d\xcc\x0f\x6e\x1f\x34\xed\x96\x43\x0d\xb4\xec\x3a\xe7\xca\xd9\x76\x3f\xd3\x8e\xc9\x13\x73\xb1\xbe\xbe\x6e\x0b\xd0\xa2\xd9\x53\xa9\x0e\x43\xf7\x3c\x4e\xb3\xdf\xb1\x7c\x78\xd0\xec\xa7\xf4\x3b\x41\x9b\x0b\x91\x31\xe1\x34\x40\x23\x05\x8d\x2e\xa4\xb4\x78\xea\xa9\xa7\xb2\x66\xb3\x09\x00\xe5\xf7\x88\x8a\x35\xc8\x31\x78\x71\xc8\x5b\x23\x33\x7b\xf2\x51\xfb\xdc\x7c\xbf\xf1\x74\xe6\xd0\x31\x30\x75\x44\xa0\x4f\x95\x00\x64\x06\x86\x92\xd1\x99\x99\x3a\xfd\x24\x2b\x0f\x4e\xb4\x6d\x31\xd5\xb5\x99\x78\x16\xda\x4a\x33\x68\xb8\xee\xfd\x85\xc1\xb5\x3b\x8b\xfd\x2b\x7b\xad\xd1\x16\xea\xcb\x42\xe2\xab\xcf\x1e\xb4\x6c\x6e\x6e\xda\xb7\xdf\x7e\x1b\x17\x2f\x5e\x8c\x19\x6c\xb0\xfb\x90\xa3\x8f\x29\x32\xe5\xc1\xf3\x0c\xb5\xb9\x14\x24\xe7\x9e\xe2\x6c\xe8\x75\x8a\xe3\x94\x00\x80\x56\xf6\x10\xdf\x94\xf2\x48\xe5\xf3\x41\x03\x46\x5a\x9f\x14\xfb\x4b\xe0\x99\x64\xb8\xe8\xbd\x44\x97\x52\xce\x14\x43\x98\xe2\x84\xb5\x20\xe9\x52\xe8\x79\x0a\x30\x45\xe4\xf9\x34\xe9\x25\xfa\x98\x5e\xf2\xb4\xa9\x6d\x18\x92\x3b\x54\x0f\x29\x69\x69\x1f\x48\xc9\x2f\xc4\x37\x06\x86\x53\xe4\x08\xf1\x7c\xdc\x90\x7d\xf0\xc1\x07\x76\x75\x75\x35\x3b\x7a\xf4\x28\x08\x6f\x0a\x60\x7c\x5e\xb5\x7c\xfc\xbe\x98\x41\xc3\x0d\x1f\xce\x0e\xfb\x7b\x2d\xfb\xe8\xc1\xdc\xe0\xde\x91\xbd\xe6\xb1\x95\xbd\xe6\xb1\x43\xfb\xf9\xda\x62\x2f\x5f\x6e\x0f\xb3\x4e\x6e\x4d\xab\x61\x91\x67\xce\xe4\x1e\x9f\x38\x03\xc0\x38\x58\x00\xce\x38\x3b\xca\x30\x1c\x66\xae\xdf\xcf\x5d\x7f\xbf\x39\xda\xdd\x9a\x19\xdc\xdb\x98\x1b\xdc\xd9\x98\x1f\xdc\xd9\x9a\x19\x6e\xec\xb5\x46\x8f\x6c\x36\x01\x56\xca\x73\xbb\x50\x0c\x5c\xe9\x12\x11\x1d\xb4\x7e\xf0\xc1\x07\xf6\x97\xbf\xfc\x25\x1e\x3d\x7a\x14\xd2\xaf\x94\x76\xad\xd5\x1f\xc2\xba\xec\x43\xaa\xde\x4d\x93\x9f\xc4\x3b\x43\x01\x5c\x62\x8e\x8b\x26\x8e\x8d\x62\xb4\x7b\x4d\x01\x45\x45\xfe\xe2\x17\xbf\xe8\x37\xe5\x7a\x9a\xf2\xd0\x39\x00\x79\xe6\xd0\x99\xef\x37\x96\x8f\xec\x36\x3f\xd6\x1e\x66\xc7\x7c\x42\x8a\x5b\x24\x00\xe2\x67\x5a\xc8\x69\x8a\xf0\xeb\x95\xe3\xcf\x00\xc8\x9b\x6f\x9d\x00\x50\x26\x36\xc3\x00\x13\x1b\x78\x2b\x46\xa1\xdd\xb9\x15\x9d\x33\xc0\x76\x67\x78\xef\xc6\x52\x77\x7d\x73\x76\x70\x7b\x64\xdc\x7e\xb1\xb6\x59\x9e\xd7\xe2\x95\x96\x28\xac\xf5\xe5\xb8\x7a\xf5\x2a\xde\x7b\xef\x3d\x89\x7b\xcc\x31\x69\x06\x34\xf5\x9e\xf3\x00\x8b\xe3\xf9\xf3\xe7\x52\x3a\x0d\x30\x48\x60\x83\xf3\xe6\xfa\x16\xea\x54\x5c\xe7\xa5\xb2\x49\xb2\xc7\x46\x88\x5a\x19\x28\x7d\xaa\xb1\xe6\x0e\x46\x6a\x3f\xa9\x8d\x53\x9d\x92\x56\x57\x12\x9f\x10\xdd\xe3\x38\x5f\x4d\x1e\x2d\xc4\x6c\x93\x26\x87\xd4\xbe\x29\x32\x4b\x7d\x24\x54\xae\x94\x6b\x04\xe2\xb5\x10\xea\x5f\x31\xb9\x24\x3d\x88\x01\x82\x69\x1d\x91\xa6\x8b\x1a\x8d\xc6\x4f\x6a\xab\x98\x2f\x92\xda\xb6\x46\xfb\xe8\xd1\x23\x6c\x6d\x6d\xd9\xe5\xe5\xe5\x8c\xd8\x4e\x3a\xf3\xd2\x55\xd2\x8e\x8f\x99\x30\xe8\xf7\x72\xdb\xbf\xbb\xd0\xdf\x7f\x38\x3b\x78\x30\xbb\xd4\xb8\xb6\x7c\x90\xaf\x1c\x3a\x68\xae\x2d\x74\x1b\xcb\xb3\x83\x6c\xb6\x33\x68\xcc\xb7\x87\xa6\x93\x5b\xd3\x1a\x7f\xc7\x68\x6c\xd3\xad\xc1\x70\x90\xd9\xfe\x41\xcb\xee\xee\xb5\xec\xee\x5e\x6b\xb4\xbd\xdd\x19\x6e\x6e\xcd\x0c\x37\xb7\x3b\xc3\xad\x5e\x6e\xf7\x6c\x35\xb3\x5e\x2e\x0b\x79\xd0\x02\x36\xe3\x4e\x37\xe5\xd2\x57\x9f\x5f\x7f\xfd\x75\xbf\x44\x24\xd5\xb1\x56\x97\x60\x74\x31\xfd\x8d\xf5\xb3\x10\x3f\x5e\xb7\x9a\x0c\x52\xbc\x4f\x63\x81\xfa\x1e\x17\xc9\x48\xc7\x1c\x5c\x48\x08\x2e\x4c\xc8\x01\x96\xca\xbe\xb2\xb2\x52\x03\x16\x60\xa0\x05\x40\xde\x1a\x65\x9d\x63\x8f\xda\xc7\x17\xbb\xf9\xd3\x0d\x67\x66\xcb\x77\x31\xfd\x7e\x16\x71\x33\x09\x7b\x0b\x88\x00\x98\x92\xbe\xc0\x1d\x7e\xfd\xd1\x83\x97\xda\xb2\x0e\xdd\xc7\xe2\xe3\xca\xcd\x58\x74\x49\xc8\x95\x5f\x78\xae\x9f\xb2\x5b\x80\x25\x86\x63\x9c\x31\x18\x14\xdf\x23\xba\xbb\xd0\xbf\x71\x90\xdb\x5d\x8a\xb2\xc1\x8e\x78\x26\x9b\x71\xad\x31\xc6\xee\xed\xed\xd9\xfd\xfd\x7d\xad\xee\x69\x1d\x6b\xc6\x2d\xe4\xc8\x35\x1d\x88\x05\x0d\x6c\xc4\x8c\xf5\xe3\x82\x1b\x0e\x24\xa4\xb2\x72\xbe\x31\x00\x02\x81\x4e\x92\x45\x4a\xcf\xeb\x2c\x04\x30\x68\x9c\x06\xf4\x52\xe4\x90\xc0\x55\x0a\x90\xe3\x69\x43\x7d\x5d\x02\x60\x29\xf5\x18\xb3\x03\x9c\xa7\xf4\x9c\x07\x8d\x3e\x66\x54\x39\x8f\x94\xfc\x34\xba\x18\xa8\x91\xe2\x25\xbe\x29\x80\x36\x44\xcf\x83\x06\x54\x62\xb6\x40\x92\x4b\xea\xc7\xa9\x7a\x98\x52\x16\x4a\xa7\xc9\xa3\xe5\x15\xcb\xdf\x5e\xbc\x78\x31\xb3\xd6\xe2\xb3\x9f\xfd\xac\x9d\x9f\x9f\xcf\x50\xed\x71\x01\x50\x9b\x6d\xb7\x40\x75\xda\x00\x47\x40\xb8\xbf\xae\x07\x38\x05\x58\xe8\x03\x98\xed\xe7\xae\x91\xd5\x20\x1a\x00\x00\x20\x00\x49\x44\x41\x54\xdf\xcf\x87\xbb\xdb\x9d\xe1\xc3\xdb\x8b\xfd\x5b\x4d\x6b\x3a\xad\xa1\x69\x75\x86\xd9\xec\x4c\xbf\xd1\x69\x8f\xb2\x8e\x71\xc8\x1c\x1c\xac\xc1\xd0\x66\x6e\xd8\xcf\x5d\x7f\xaf\x39\xda\xef\x36\x6d\x77\xd0\x70\xdd\x61\xe6\x0e\x46\x99\xeb\x3a\x53\x9d\xde\x4b\xfe\x4a\x10\x53\xcc\xb4\xfb\xfd\x8d\xfc\xec\x96\xf2\x6f\x73\x73\x13\xe4\x84\x74\xde\x46\xa1\xba\xe7\x74\x3c\x5e\xaa\x53\xcd\x86\xa5\xf8\x89\x90\x8e\xa7\xd8\x07\x00\x63\x20\x10\x53\xa6\x10\xd8\xe0\x02\x85\x90\x15\x7f\x36\x51\x79\x8d\x46\x23\xfb\xf6\xb7\xbf\x0d\xa0\x3a\x21\x97\x2c\x15\x8d\x5f\x5d\x73\x68\xb5\x87\xd9\xfc\xda\x6e\xf3\xc9\x99\x41\xe3\x2c\xc0\x57\x87\xf8\x4e\x59\x79\xa6\x43\x9c\xfc\x20\x9b\x55\x94\xbd\xbb\xf5\x73\x5f\xe0\x81\x0d\x7b\xe3\x08\x28\xa7\x69\xc6\x4b\x58\x95\x0c\x7c\x03\xb1\x0f\x0e\x0e\xbb\xed\xd1\xbd\x1b\xcb\xbd\xcb\xdb\xed\xd1\x03\x67\xb0\x4f\x0e\x1a\x2a\x37\x63\x91\x37\x89\xac\x31\xc6\x1a\x63\xd0\xef\xf7\xf1\xcb\x5f\xfe\x12\x17\x2e\x5c\x88\x19\xb0\x90\xa2\x69\x69\x62\x86\x9c\xd3\xf2\xfc\x34\xde\x29\x0e\x86\xc6\x49\x4e\x31\x55\x37\x63\xbc\xb5\xce\x1c\xe2\x91\xe2\x2c\xa4\x7c\x28\x4d\xac\x4c\xfc\x5e\x73\x56\xbc\x6c\x1a\x60\x8a\xd5\xb3\x26\x3f\x97\x55\x73\xd8\x31\x1e\xa1\x11\x55\xcc\x4e\xc4\xee\x43\xba\x17\x35\x84\x0a\x3f\x7e\xad\xf5\x9f\x69\x6d\xa7\x94\x9f\x74\xcf\xf3\x93\xe2\x35\x59\xa5\x3c\x35\x1e\x52\x1e\x94\x5e\xe3\x11\x0a\xb1\x76\x9b\x26\x2e\x85\x7f\x34\xff\xf5\xf5\x75\x0c\x06\x83\xec\xcb\x5f\xfe\xb2\x6d\xb7\xdb\xfe\x35\x69\x8b\xf1\x40\xb0\xa4\x23\xf1\x16\xd5\xd1\x13\x43\x00\x2d\x8c\x01\x44\x07\x40\xcb\x66\xa6\xd5\x35\xa3\x56\xcf\x98\x1c\x6d\xe4\x70\x2e\xcf\x9c\xc9\x0c\xd0\xf4\xcc\x8a\x17\x44\x46\x0e\xb0\x6e\xfc\x45\x6a\x3f\xe8\xec\xb3\x3f\x0e\x5e\xfc\x0c\x3b\x3f\xfe\xc2\x82\x6d\xc8\x3d\x38\x38\xc0\x3f\xfc\xc3\x3f\x60\x30\x18\xf8\x72\x3f\x8e\x6e\x68\x75\x1a\xa3\x8b\xf5\xfb\x69\xfa\xb3\x34\xe0\x11\xfd\x94\xb6\xc7\x85\x0a\x23\x65\x12\x7a\x16\x0b\x5a\x67\xa9\xf1\xe4\x80\xc5\xbf\x06\xdd\x1c\x99\xce\xf2\x7e\x63\x75\x65\xbf\xf9\x74\x6b\x98\xad\xd5\xd3\x08\x37\xa1\xe5\x19\xc8\x1b\x65\xb5\x14\xb5\xfd\x30\x94\x4e\x01\x41\x93\xbb\x5b\x74\x79\x46\x19\xfa\x77\x16\xfa\xeb\x1b\x73\x83\x5b\xfd\xdc\x6e\xc3\xa0\x6b\x50\x82\x96\x89\xef\x52\xd0\x4d\xb9\x3f\xf9\xc9\x4f\xec\xfb\xef\xbf\x2f\xb1\x4d\x35\x0c\x31\x87\x92\x02\x70\xe8\xb5\x94\x4e\xba\xd7\xd2\x6b\xfc\x43\x0e\x22\x13\xe2\xb5\x74\x3e\x4d\x8a\x43\xe7\xe5\x49\x0d\x5a\x59\xb5\x91\xa8\x56\xd7\x21\xe7\x13\x7a\x1e\x1b\x2d\x6b\x32\x4a\x61\x1a\x10\xa0\xe9\x4b\xa8\x0d\xa6\x09\x31\x00\x90\x62\x9c\x53\xe4\x4b\xad\x53\x28\xb4\xa9\xbc\x63\xb2\xa5\x02\x92\x94\x76\xd6\xc0\x5d\xaa\xfe\xfb\x6b\x08\x74\xd3\xda\x90\x18\x80\x8c\xf5\x93\x90\x8c\x9c\x47\x29\xfb\xd5\xab\x57\xed\xbf\xfd\xdb\xbf\x65\xdf\xf8\xc6\x37\x28\x38\xc9\x51\x2d\x1b\xf9\x38\x3f\xcb\xd2\xf1\xf7\x18\x03\x97\x6e\x11\xd7\x42\xf1\x81\x5f\xf8\xd5\x00\x63\x32\x6b\xc6\x47\x8c\xb0\xfd\x92\x65\x3d\x1b\x94\x27\x9c\x97\xa7\xf6\x92\x6b\x7e\x2a\xae\xb7\xff\xb5\x23\x2f\x40\x36\xe5\x8e\x46\x23\xfc\xcd\xdf\xfc\x8d\x06\x06\x42\xc0\x34\xc5\xf6\x3d\x8e\x2e\xf2\x10\x7b\x2e\xc9\xed\xd3\xf9\xb8\x89\x76\xa7\x33\x2e\x21\xf0\x12\xaa\x18\x4a\x9b\xa2\xcc\xdc\x48\xd7\x84\x23\x0d\xee\x41\x4b\x56\xd0\xe5\x00\x5a\x9d\x61\x36\x7f\x6c\xb7\x7d\x72\xa1\xdb\x78\xda\x90\x4f\x16\x54\xfb\x57\xea\xd7\xe5\x43\xba\x2c\x53\xfc\xf2\x65\x20\x1f\xa7\xa1\x97\x09\xd0\xa2\xbd\x26\xc4\xc2\x04\x3d\x7b\x06\x00\xdb\x9d\xe1\xad\x2b\x2b\xdd\x8b\x3b\xed\xe1\x03\x3b\x3e\x6c\x6e\xdf\x39\x57\xdb\xdf\x82\x4a\x61\x01\x59\x11\x79\x08\x8d\x08\xa7\x31\xde\x31\xc5\x4b\x9d\x51\xd0\xf4\x46\xca\x23\xe4\x64\x39\xbd\x66\x14\x43\x23\x81\x54\xe3\xce\xe5\x94\xe8\x24\x10\x1e\x03\x0a\xa1\x72\x04\x3b\xad\x22\x63\xaa\x43\xcf\x50\x97\x37\xc5\xb1\xc4\xec\x00\x0d\x1a\xbf\x90\xae\x86\x8c\x5b\x0c\xb8\x69\xb4\xa9\x60\x9b\xc7\xa5\xa4\xd3\xda\x2c\x25\xbf\x69\xcb\xee\xd3\xa4\xd4\x81\xe4\xa0\x28\x7d\xac\x1f\x3f\x8e\xfc\x34\x5f\x2d\xa4\x02\xc1\x10\xa0\x8d\x95\x41\x6b\xd3\x8c\xd3\xdc\xbe\x7d\x1b\xdf\xfb\xde\xf7\xec\x9f\xfd\xd9\x9f\xf9\x67\xb5\x65\xa3\x72\x0b\x01\x99\x75\xf1\x9f\x97\x01\xd0\xc1\xd8\x16\xe7\x18\x83\x97\x9c\xfc\x65\xec\xaf\xcc\xb7\x18\x64\x96\xaf\x2f\x93\xeb\x3e\x99\x81\xf1\xa0\x85\xce\xc8\xd4\x5e\x79\xa6\x75\xb3\xb3\xb3\x83\xbf\xfd\xdb\xbf\x55\xaa\x43\xac\x93\xd4\x3e\x19\x6b\xcf\xd4\xfe\x48\x9f\xa7\xf4\x13\x2d\x0f\x1a\x32\xa0\x7a\xab\xc8\x13\x72\x94\xcb\x13\x50\x3a\xc9\x50\x43\xb9\x97\x84\xaa\xd1\xcc\xcd\xcd\x65\xdf\xfa\xd6\xb7\x4a\xd0\xc2\xfe\xc6\xaf\x41\x5b\xb4\x66\xfb\x8d\xe5\xc3\x7b\xcd\xa7\x3a\xa3\xec\x38\x7f\x83\xc7\x15\xe8\xc0\x90\xe9\x8e\xea\xdd\x7a\xba\xb4\x43\x82\x04\x3a\xc8\xeb\x6b\xa1\x15\x25\xb6\x0a\x34\x81\x63\xca\xfc\x82\x7b\x73\x1d\x86\x19\xfa\xb7\x96\x7a\x17\x1f\xcc\xf5\xef\x0e\x1a\x6e\x17\xd5\x07\x14\x27\x94\x97\x74\x26\x18\x63\xf0\xef\xff\xfe\xef\xf6\xda\xb5\x6b\xbe\xce\x78\xbd\x4a\x00\x82\xc6\xa5\x8c\x1c\xa5\x76\x97\xd2\x69\x74\x34\x2e\x06\x16\xa0\xc4\x67\xca\xb3\x50\x59\x34\xe7\x2e\xc5\x51\x27\xae\x85\x90\x7e\x4b\x79\x68\xf1\xd3\x00\x46\xce\x4f\x2b\x73\x08\x10\x69\x6d\xac\x81\x4c\x29\xa4\xca\xcb\xeb\x24\x54\xd6\x50\x3d\xc5\x40\x44\x08\x48\x85\x40\x59\x2a\x40\xd2\x64\x0c\xf5\xb1\x10\x0f\xa9\x3c\x5a\x5f\x98\x46\x97\x35\x79\x25\x9b\x2e\xb5\x03\x2f\x97\x16\xaf\xd9\x77\x8d\xb7\x96\x07\xa5\x8d\x01\xdc\x90\x7c\x5a\xb9\x43\xb4\x34\xd8\xad\xad\xad\xec\xbb\xdf\xfd\xae\xfd\xce\x77\xbe\x43\xd3\xf2\x37\x75\x6c\x71\x9f\xb3\xe5\x9d\x12\xb4\xf8\x13\x77\x81\xda\x9b\xaf\x19\x7b\x39\xa4\xc6\x0f\xf5\x19\x14\xba\xd9\xb6\x36\xb3\xce\x66\x59\xe8\x1f\x36\x36\x36\xec\x0f\x7e\xf0\x03\xa9\xcc\x52\xd0\xfc\x40\xac\x2f\x86\x9e\xf9\x90\xd2\xc6\x5c\x86\x98\xbd\xd3\x74\xaf\x8c\xe3\x27\xe7\x6a\xc2\xc5\x68\xb4\xfb\x50\xa5\xd6\xe2\x8c\x31\x98\x9d\x9d\xcd\x58\x5c\x09\x5a\x00\xe4\x9d\x61\x36\xbb\xba\x97\xaf\x2d\xef\xe7\xe7\x9a\x23\xb3\xec\xe9\xca\x73\x59\x8a\x8d\x29\xf4\x84\xfe\x1a\x80\x20\xbc\x4b\x20\x31\xb1\xd1\xb6\x02\x1b\x5a\xa8\xbf\xbd\x24\xc4\x15\x11\x13\xe7\xc1\x28\x33\x33\x3b\x9d\xe1\xad\xeb\xcb\xbd\xf5\xdd\xf6\x68\xd3\x1a\x74\x1d\x5c\xd7\xc0\xf8\xc3\xe6\xfa\xe4\x83\x60\xf4\x58\x67\x6b\x8c\x41\xb7\xdb\xc5\x68\x34\x4a\x69\x3f\xff\x2c\xa8\x10\x42\xfa\x14\x67\x44\x9f\x49\xca\x9a\xe2\x68\x42\xe0\x37\x54\x26\xc9\xe0\x6b\x69\x52\x9d\xad\x24\x83\x14\x27\x75\x6a\x5e\x06\x1f\x17\xe2\xc3\xe3\x42\xf2\x21\x40\x13\x6a\xc7\x98\x41\xd7\x40\xa9\x44\x9f\xc2\x87\xcb\xce\xd3\x4a\xcf\x63\x4e\x29\xa5\x1c\x9a\xbe\x86\x40\x10\x2f\x6f\xa8\x2f\xc4\xec\x59\x08\x10\x6a\xd7\x1c\xd4\x6a\x65\x4a\xa9\xdb\x14\xc7\x9d\x2a\x57\xc8\x8e\xc7\x9c\xa5\xc4\x83\xa6\xd3\xe2\x79\x3a\x2d\x5e\x93\x4b\xd2\x99\x89\xe0\x9c\xb3\x8f\x1e\x3d\xca\xbe\xff\xfd\xef\xdb\x6f\x7d\xeb\x5b\xc8\xb2\xac\xe4\x53\x80\x05\x9f\x7e\xe8\xb7\x29\xa0\x5a\x52\xca\x51\x9d\xff\x52\xce\xb6\x90\xd5\x81\xcc\x4d\x1e\xad\x61\xc9\x5f\x6d\xd9\x87\xce\xbe\xf8\x38\x54\x83\x54\xff\xe5\xe7\xb2\x3c\xb7\x6f\xdf\xb6\xaf\xbe\xfa\x2a\xba\xdd\x6e\x48\x1f\x7d\x90\xfa\x11\xaf\xfb\xd4\xbe\xce\x9f\xa7\xb4\x59\xac\x1f\xc5\xec\xb6\xa8\x27\x29\x85\xa6\xbf\xd2\x73\xfe\x8c\xdf\x6b\xc6\xa2\xfc\x5d\x5a\x5a\xca\xbe\xfc\xe5\x2f\x97\x5f\xdb\x44\xa5\x10\x19\xb9\x6e\xcd\x0c\xb2\xf9\xc3\x7b\xad\x33\x73\xfd\xc6\x59\x14\x87\xfe\x00\x1e\xaf\xb8\x1a\x70\x70\x70\xe5\x87\x16\xab\xcd\xbb\xd5\xa9\x73\xf4\x43\x8c\x7c\x06\x86\x9d\x4d\x57\xc6\xd7\xf2\x63\x61\x22\x2e\x81\xc8\xc1\x61\x94\x61\x78\x7b\xb1\xbf\x7e\x7f\xbe\x7f\x7b\x98\xb9\x7d\x07\xc7\x3f\x57\x4e\x37\x65\x95\xc8\xdd\x18\x83\x57\x5f\x7d\xd5\x6e\x6e\x6e\x02\x93\xce\x96\x5f\x6b\xed\xf7\x38\x81\x02\x14\x60\x52\x07\x42\x8a\x1e\xa2\xa7\x69\x68\xe7\xe2\xf9\x70\x70\xa1\x75\x16\x20\x5e\xee\x58\x19\x2c\x74\x5e\x9a\x83\x8f\xe5\xa7\x19\x55\xa9\x9e\x38\x4f\x2e\xa7\x06\xb2\x24\x00\x16\x93\x2b\xd4\x4f\xa5\x36\x8f\xf1\x09\xd1\x00\x7a\xbb\x83\x5d\xc7\x8c\x6a\xac\x9c\xa1\x72\x71\x1e\x21\x3d\x0e\xf1\x4b\xcd\x53\xab\x3f\xea\xd4\xa6\xe5\xcb\xe3\x63\xc0\x50\x0b\x29\x36\x22\x0a\x08\x58\x88\x01\xd7\xc7\xe5\xe1\x65\xd1\xfa\x8c\x54\x97\x13\x75\xef\x9c\xb3\x0f\x1e\x3c\xb0\xff\xf2\x2f\xff\xe2\x41\x00\x4d\x4b\x97\x68\xf8\x06\x5a\xfe\xca\xf2\x2e\xfb\xdb\x36\xc6\x6c\x03\xa0\x7f\x9c\x66\x9f\xfc\x96\x6f\x8f\x92\x37\x87\xc4\xe5\xa1\xeb\xd7\xaf\xdb\xff\xfa\xaf\xff\xf2\x67\xb5\x48\xe5\xe3\x81\x97\x8b\x87\x8c\xfd\xc5\x74\x2c\xa4\x5f\xb1\x3c\x35\xbb\x2f\xf5\xc1\xa0\x9e\xd0\x8f\x2c\x72\xe6\x14\x0d\xf1\xf8\x14\xc3\xa5\xc5\x4d\x8c\x80\x5a\xad\x16\x8e\x1f\x3f\x9e\x01\x80\xb0\xaf\x25\x07\x90\xe7\x23\xd3\x5a\xea\xe6\xab\x2b\xfb\xf9\xd9\xf6\xd0\xac\x55\x18\x60\x3c\x8d\x31\xf1\x66\x8f\x31\x04\x6b\x94\x27\xb5\xd4\x53\x99\xc9\x49\x10\xfa\x52\x12\xbd\x4f\xda\xb1\xeb\xf3\xa2\x6f\x37\x11\x32\xba\xf4\x54\xbc\xc2\x6d\x77\x5b\xc3\x7b\xd7\x97\xbb\xeb\xbb\xad\xd1\x96\x35\xb5\xfd\x2c\xe5\x7a\x67\x31\xe3\x52\x3b\x6c\x08\x00\xee\xdc\xb9\x83\x5e\xaf\xa7\x39\x72\x1f\x42\x23\x96\xd4\x34\x3c\x3e\x36\xaa\x09\xc9\x13\x52\x48\x8e\xbe\x25\x24\x3e\xcd\xf3\x50\x3e\x5a\x5c\x68\x34\x11\x03\x4c\x34\x68\x20\x8b\x1b\x08\x4e\x17\x72\xfe\xa1\x76\x8c\xc9\xc0\x47\x39\x52\xda\x94\xbc\x35\x40\xaa\xf1\xe1\x21\x45\xd7\x78\x9d\x70\x40\xa6\x95\x25\x04\x72\xb8\x0c\x1a\x78\xe1\x3a\x18\x72\x9c\x52\x7e\x52\xfd\x85\x40\x49\x48\xce\x98\x2e\xc7\xea\x2e\xa4\x23\x52\x1d\x6b\x7d\x8b\xa7\x8d\x85\x94\x3e\xa8\xb5\x63\x4a\x99\xb9\x3c\x9a\x5e\xd3\xa0\xb6\xe7\x8d\x1b\x37\xec\x6b\xaf\xbd\x96\x7d\xee\x73\x9f\xb3\x0b\x0b\x0b\xf4\x9c\x97\xd2\xa1\x17\x71\x19\xaa\xfd\x30\x19\xc6\x4b\x45\x19\x50\xce\xb6\x50\xf9\xc4\x81\x90\x7f\xcd\x1a\x00\x5f\x8e\xaa\x7d\xba\xa5\x88\xf3\xfb\x6c\x70\xe9\xd2\x25\x7b\xf3\xe6\x4d\x3c\x7a\xf4\x08\x1b\x1b\x1b\xa1\xba\x0a\xb5\x21\x0f\xbc\x2e\xb5\x81\x50\x2c\x5d\x6a\x88\xf9\x14\xce\x9f\xa7\x2b\x65\x92\x96\x8a\xa4\xcc\x34\x43\x12\x53\x6e\xad\x73\x73\xbe\xf4\xcc\x16\x4f\x57\x03\x2f\x9d\x41\x36\x7b\x68\xbf\x79\x6c\xb1\x9b\x9f\x1d\x9f\xdd\xe2\xcf\x6b\x29\xce\x4e\xd1\x4e\xb7\x2d\xae\x4c\xb1\x76\x43\x97\x8d\x26\xde\x28\x22\x3c\xd4\xa5\x22\xbe\xd1\xd7\xbf\x3a\x4d\x96\xaa\x26\xd2\x8a\xfb\x5b\x1c\x86\x99\xeb\xdf\x9f\x1f\x5c\xbe\x3b\xdf\xbf\x39\x6c\xb8\x7d\x98\xf2\x84\xdc\xda\x5a\x27\x53\x70\x6b\x8c\xb1\xbf\xfc\xe5\x2f\x71\x70\x70\xe0\x99\xc5\x9c\x44\x8a\x21\xa1\xf4\x92\x83\xa0\x41\x72\x70\x56\xa0\xd7\x14\x5c\x73\xa8\x52\x90\x40\xb2\x64\x6c\x39\xa8\xe2\xd7\x9a\x53\xe6\x8e\x38\x05\xa0\x6b\x32\x84\xd2\x6b\xba\xcf\x41\x0b\xe7\xcd\xf3\x8c\x39\x79\x1f\xa8\xe1\x95\xd2\x86\xc0\xa5\x14\x62\x06\x86\xeb\x5a\xc8\xc1\x70\x7e\x9a\x1d\x91\xda\x4b\xe2\x23\x95\x41\xba\xd7\x00\x49\xac\xcd\x52\xf4\x55\xe3\x2f\xd5\xbf\xd4\x2f\x53\x78\x72\xb9\xa4\xb4\x5c\xc7\x68\x5c\x88\x37\x97\x73\x1a\xe7\x17\xeb\xc3\x94\xbf\x0a\x20\x12\x78\xf8\x74\x5a\x3f\x89\xe9\x9c\x2a\xd7\xe5\xcb\x97\x6d\x9e\xe7\xd9\xcc\xcc\x8c\x3d\x77\xee\x1c\x8e\x1c\x39\x42\x7d\x93\x25\x83\x69\x9f\x26\xc3\xd8\x36\x97\xf1\xc5\xa0\x1b\xe4\x9e\x9e\x0d\x03\xa0\xb6\xe4\x63\x59\x3c\x05\x33\x94\x16\xeb\xeb\xeb\xf6\xad\xb7\xde\xf2\x80\x85\xca\xa1\xb5\xbf\x06\xe4\x34\xb0\x58\xca\x1c\x79\xe6\x43\xcc\x36\xd2\x34\x9c\x56\xea\xff\x9c\xb7\xc4\xab\xa6\x93\xa9\x1f\x59\x8c\x09\xac\x29\x47\x4c\x81\xec\xc2\xc2\x42\xf6\xd4\x53\x4f\x01\x28\x67\x29\x26\xde\x26\x32\x0e\xad\xb9\x7e\xb6\x7c\x68\x3f\x3f\x33\x33\xc8\x8e\xfb\x6f\x43\x4c\x6c\x2c\x91\x36\xab\x40\x3f\xca\xbf\x8c\x29\x36\xc5\x18\x69\x0a\x86\x84\xda\x57\x3f\x39\x8f\xd0\x5b\xd7\x64\x16\xa7\x9c\xd1\x31\xb0\x07\x2d\xbb\x79\x7b\xa9\x77\x79\xa7\x33\xda\x74\xd5\x86\x5c\x0e\x5e\xfc\xeb\x73\xb5\xd9\x96\xb7\xdf\x7e\x1b\xbd\x5e\x2f\x90\x69\xd0\x50\x4a\xc6\x34\xe6\x3c\xf8\xb5\x94\x1e\xc2\xb5\x94\x56\x32\xf2\x9a\x22\x4b\xf4\xda\x33\x89\x47\x6a\x1e\x92\xac\xb1\xce\xab\xc9\x97\x5a\x56\x40\x2e\x97\xe6\x28\x35\xb9\x35\x7e\xdc\x79\x69\x32\x4a\x65\x8a\x95\x23\x04\xf0\x62\x6d\xc5\xe9\xa4\xf6\xa5\xfc\x43\x4e\x58\xaa\x3b\x49\x5e\x4e\xab\xf1\xa7\x74\x52\x3d\x6a\xbc\x25\xfe\x35\xe7\x04\xbd\x9d\x42\x36\x38\x55\x37\xb4\xe7\x3c\x84\xfa\x9d\x06\x82\xa5\x3a\x0d\xe5\x2d\xa5\xd3\xda\x3e\x24\x9f\x04\x82\x43\x6d\x2a\xd1\x84\xca\x45\x9f\xfb\x4f\xa5\x64\xbb\xbb\xbb\x58\x5b\x5b\xb3\xab\xab\xab\x38\x76\xec\x18\x05\x1f\x14\xa4\xd8\xf1\x41\xa2\x63\xb0\x42\x40\x4b\x59\x6e\x7a\x90\x6a\xb1\x2f\xb1\x9c\x41\x61\x67\xc5\x50\x59\xca\xe7\x97\x2e\x5d\xb2\xbd\x5e\x0f\x17\x2f\x5e\xc4\x83\x07\x0f\x52\xfb\xad\x54\x67\x20\xf7\x92\x7e\x68\xc0\x42\x8a\x4b\xb1\x5f\x80\x2c\x03\x94\x38\xce\x27\x64\x6b\x01\x54\x47\xfe\xf3\x20\x29\x87\x96\xa1\x16\xc7\xf9\x89\xfc\x57\x56\x56\xf0\x89\x4f\x7c\x22\x73\xce\x95\x1f\x54\xe4\x4b\x45\x0d\x6b\x5a\x8b\xdd\x7c\x75\xf9\x20\x3f\xdd\x1a\x65\x2b\xd5\xe9\xb5\xd5\x29\xb9\xa6\xfc\x6f\x1c\xb4\xe3\xff\x2b\x5c\xe3\xaa\xe3\xff\xfd\x2b\x49\xd2\xfb\xd1\x84\x61\xa5\x88\x7e\xb3\xad\x76\xb0\x8b\xff\x50\x45\x9d\x5f\x45\x3a\x9e\x6d\x79\x38\x33\xb8\x75\x67\xa1\x7f\x6d\xd8\x70\xe3\xc3\xe6\xc6\xe7\xb6\x94\xef\xf7\xa3\xda\xe5\x4e\x95\xdc\xae\xaf\xaf\xfb\x53\x12\x43\xf5\x1e\x6a\x27\x4d\x91\x42\x86\x47\x33\x98\x21\x84\x1e\xd3\x0b\x4e\x1f\x32\x4a\xd3\xe4\x1d\xa2\x4d\x95\x87\xeb\x7c\x0c\x34\x68\x0e\x34\xe4\xe0\x34\xd9\x34\x87\x19\x73\x14\x9a\x6c\xa5\xc1\x85\xde\x36\x21\x63\xc4\x9d\x15\x0f\x21\x47\x22\xf1\xa0\x72\xa4\x02\x92\x90\x6c\x9c\x26\xc5\xa9\x72\xd9\x38\x4d\x8a\x83\xd4\xc2\xb4\xc6\x9c\xc6\x6b\x0e\x87\xf7\x5d\xad\x2f\xc7\xfa\xb8\xe6\x1c\xb8\x9c\x34\x68\x7c\x63\xd7\xa9\x7a\xaf\x81\xc2\x90\xb3\x0e\xf1\x7f\x1c\xba\xb2\x8c\xef\xbf\xff\xbe\x7d\xff\xfd\xf7\xb3\x53\xa7\x4e\xe1\x23\x1f\xf9\x88\x9d\x9d\x9d\xf5\x5b\x19\xca\x3e\xe0\x07\xd9\x1e\x88\x90\xa5\xa2\x89\x40\x5e\xaf\x2e\xf3\xf6\x40\xc6\xcb\x43\x40\x4e\x79\x26\xd7\xeb\xaf\xbf\x0e\x76\x1a\x7a\x8a\x4e\x87\xea\x3e\xd4\x07\xa8\x9d\x08\xd9\x33\x8d\x57\x08\xf8\x4b\xf2\x69\xf9\xa7\xd0\x22\xf4\x3a\xb4\x64\x54\xa7\x62\xae\xd0\x88\xc6\x9a\xed\xc8\xce\x8c\x31\xfe\xf5\xb2\xbc\x33\xcc\x66\x97\xba\xf9\xb1\xf9\x7e\xe3\x78\xe6\x4c\xa7\x5a\xce\x29\x1a\x1b\xc2\x1b\xcd\xda\x0c\x4c\xb9\xd7\x84\x6d\x38\x29\x7e\xf9\x77\x89\x6a\xdf\x2c\x2a\x66\x6e\xaa\x59\x93\xea\xbd\xe9\xda\xf1\xfd\x13\xf7\x13\x98\xc6\x76\x73\xbb\x7d\x6f\xbe\x7f\x65\x73\x66\xf8\x00\x93\xdf\xa2\xf0\xa7\xe3\x0e\x8d\x31\xb5\x57\xa0\x9d\x73\xf8\xe1\x0f\x7f\xa8\x19\x16\x0d\x6d\xf3\x10\x73\x98\xf4\x5e\x6b\xef\x50\x47\x88\x39\x66\x89\x3e\x34\x02\xf3\x34\x92\x3e\x52\x3a\xad\x2c\xda\x28\x2e\xa5\x63\xc5\xc0\x4f\xc8\x71\x48\xa3\x08\xc9\x61\x85\xda\x2e\x56\xa6\x98\x31\x92\xca\x44\x81\x4c\xc8\xc8\x68\x86\x52\xca\x33\x34\x1a\x8b\xd5\x9b\x44\x1b\x2b\x5f\x08\x30\x73\xfe\x9a\x2d\xd3\xe4\xd1\xf2\x9e\x46\xa6\x94\xf6\x4c\xd1\xc1\x50\x3d\x85\x68\x24\x9e\x9a\xae\xc5\xf4\x94\x07\xad\x6c\x31\x70\x28\xf5\x8d\xd4\x76\xd7\x1c\xaa\x26\xbf\x24\x4f\xcc\xbe\xd4\xf2\xbe\x7e\xfd\x7a\x76\xfd\xfa\x75\xbb\xba\xba\x9a\xbd\xfc\xf2\xcb\x65\xda\x27\x9e\x78\xc2\x2f\x1d\x79\x9b\x9c\xd1\xd9\x70\xf5\x63\xbd\x44\x86\xea\xd3\x2f\x0e\xbd\x5e\xcf\xbf\x64\x01\x6b\x2d\x7e\xf8\xc3\x1f\x6a\xb2\xd2\x32\x85\x40\xb6\x46\xab\xd1\xa7\xd4\x51\x48\xe7\x42\xf6\x40\x93\x25\xb5\x9f\x4b\x21\xa3\x1f\x59\xd4\x84\xe6\xca\xa6\xd1\x69\x05\x90\xf8\x65\x00\xd0\x6a\xb5\xb2\xb9\xb9\x39\x00\x65\x43\x66\x40\xf5\x6d\x22\x53\x1c\xf1\x3f\xdb\xcf\xe6\x97\xba\xf9\x89\xce\x20\x3b\x66\x80\x6c\x62\x43\x6d\xf1\x3b\x81\x53\x38\x91\x70\x10\x1d\x9f\xa9\xe1\x9b\x65\x6a\x13\x2a\x6c\x76\xc5\x50\x02\x9e\x15\x51\x5e\xe3\xdf\xcf\x76\x06\xce\x00\xa3\xcc\xf5\xb7\x3b\xc3\x3b\x77\x17\xfb\x57\x0e\x9a\xa3\x5d\x3f\xd3\x82\xfa\x77\x89\x6a\x87\xcd\x39\xe7\xac\x73\xce\x6e\x6d\x6d\xf9\x6c\x24\x65\xa2\xf1\xfc\x5a\x4a\x97\x62\x70\x34\x47\x0c\xc4\x15\x33\x94\xaf\x64\x28\x35\xe7\x2e\xf1\xd0\xd2\x68\x46\x58\xba\x4e\xe9\x70\x34\x4d\xc8\x31\x87\xca\x40\xe9\x42\x69\x42\x69\xf9\xf3\x98\x23\x9c\xd6\xb9\x48\x74\x3c\xf0\x76\xe5\x86\x4c\x6b\xe3\x14\x27\x18\xd2\xbf\x14\xe0\x11\xca\x27\xa4\xef\x92\xa3\xd3\xf2\x88\x95\x27\x54\x76\x29\x7f\xae\xe7\x29\x7d\x32\xe4\x64\x62\xe5\xd4\xca\xa3\xdd\xc7\xd2\x85\xf2\x51\x01\xc1\xef\x40\x86\x0f\x0b\x54\x42\x4e\x7b\x42\xc6\x8d\x8d\x0d\xfb\xca\x2b\xaf\x94\xf1\xc5\xc1\x75\x25\xcd\xdc\xdc\x9c\x6d\xb5\x5a\xe5\x72\x91\x07\x24\xd2\x2f\x00\xbb\xb7\xb7\x87\x7e\xbf\x5f\xf2\xbf\x73\xe7\x0e\x7e\xf2\x93\x9f\xc4\xfa\xa4\x26\x77\xcc\x76\xa7\xd4\x39\xd5\x47\x4d\x4f\x53\xf4\x51\x8b\x8f\xf5\x5b\x1a\x1f\xc3\x10\x19\x50\x3f\x80\x4e\x25\x62\xd7\x19\x12\x99\x0b\xe9\x6a\x4e\xf0\xdc\xb9\x73\xf8\xc2\x17\xbe\xc0\xdf\x79\xcf\x80\xf2\x30\x9f\xbc\x61\xd1\x5a\x3a\xc8\x57\x97\x0e\xf2\x93\xcd\x51\xb6\x5c\x9e\x8e\x5b\x00\x0c\x8a\x47\x54\x00\x23\x08\xe8\xd8\x32\x4f\xb5\x52\x64\xaa\x7b\x32\x4b\x33\x01\x82\x40\x97\x8c\x26\x33\xa9\x21\x6e\x43\xf1\x90\x43\x3f\x77\xfb\x0f\xe6\x06\xd7\xee\xcf\x0f\xee\x16\x6f\x11\x95\xdf\x22\x02\x01\x2d\x74\x79\xc8\x18\x83\xfd\xfd\x7d\xfc\xfd\xdf\xff\xbd\x66\xc0\xa5\xf6\xe1\xca\x03\x96\x8e\x2b\x26\x84\x6b\x1e\x34\x47\x18\x92\x8b\xe7\x4b\xc3\x34\x86\x46\xe2\xa1\xe9\x61\x68\x94\xa0\x75\xaa\x14\xde\x9a\x11\xd1\x40\x57\x2a\xff\xd4\x8e\x1e\xea\x77\x92\x41\xe2\x72\xc4\x8c\x93\x26\x37\x97\x8b\xd3\xa5\x0c\x5a\x52\xf2\x95\xca\x92\xe2\x28\x43\x79\xa5\xf0\xe6\xd7\x5a\x88\xd5\x4b\x8a\x21\x0f\xb5\x41\x8a\x2c\x21\xfb\xaa\xd5\x8b\xe4\xe8\x53\xf8\x6b\xfc\x42\xfd\x52\x03\xcd\xa1\xf6\x93\xf4\x3c\x06\x6a\x43\x6d\xac\xc9\x1b\xa2\xe1\x3c\xc4\xf8\xef\x7d\xef\x7b\xb5\xf6\xfb\xc2\x17\xbe\xe0\xf7\x69\xa6\xe8\x0f\x7e\xf6\xb3\x9f\xe1\x83\x0f\x3e\x88\xe9\x6c\x0a\x08\xe3\xf1\x29\x7d\x30\xc6\x23\xd5\x3e\x69\x32\xa5\xb4\xad\x94\x36\x34\xc0\x9a\xd0\x35\x6d\x8f\x4b\x48\xf0\x14\x25\x4a\x49\x67\x81\xf2\xa0\x1e\xba\x21\x17\x00\x32\x7f\xe8\x4f\x6b\x94\x75\x96\xbb\xf9\xf1\x85\x5e\xe3\x64\xc3\x99\x8e\x07\x08\xf4\x75\x67\xc3\x90\x43\x09\x5a\x1c\x8b\x20\x81\x2e\x33\x79\x12\x3a\x4b\x53\x9b\x89\x51\xf7\xce\xe8\xfc\x27\x5f\xb3\x1e\xdf\x8d\x32\xd7\xdf\x69\x0f\x37\xee\x2e\xf4\xaf\x6c\x77\x46\x5b\xa8\x3e\xa6\x35\x71\x4a\x2e\x3f\xc1\xd1\xd7\x0d\xc2\x8a\x20\x29\x72\x0c\x48\x82\xc4\x69\x3c\x38\x4d\x88\x97\x24\x97\x06\x24\x62\xce\x52\x92\x43\x53\xf2\xd8\xc8\x4e\x33\x66\xa9\xa3\x43\x49\x6e\x1a\x27\xf1\x8c\x95\xe5\x71\x68\x24\x30\x16\x33\x74\x31\x83\xc0\xdb\x35\x24\x4f\xa8\xbe\x53\xdb\xe0\xc3\x18\xc8\x54\x83\xfe\xb8\x86\x9c\x87\x54\xbd\x9c\x26\xc4\xfa\xb3\x7f\x06\xe1\xb9\x54\x8f\x29\xfa\xce\xe9\x3e\x4c\xfd\xa4\xfa\x8d\xd8\xf3\x50\x9f\x9b\x86\xcf\xb4\x32\x84\xc2\x54\x80\xe9\xb5\xd7\x5e\xb3\xaf\xbd\xf6\x5a\x90\x86\xc5\x6b\x21\x05\xac\x85\xc2\x34\x36\xf4\xc3\x86\x14\x20\x15\x2a\x3f\xd7\xdb\x14\x7b\x35\xc1\x84\xfe\x4a\xd7\x50\xae\x33\xf2\x97\x5a\x21\xb5\x3c\xc9\xc6\xa5\x0c\x63\x20\x93\xa1\x3a\xbf\xa5\x35\xd7\x6f\xcc\x2f\x1f\xe4\x67\x66\x06\xd9\x1a\x93\xa1\x06\x55\xe8\xa1\x71\x25\x18\x31\xf2\x4c\x49\x8d\x06\x75\xb0\xe2\xd8\x73\x1e\x38\x28\x8a\xd2\xb1\xf8\x7e\xc3\xed\x6f\xcc\x0d\xae\xdc\x5d\x18\xdc\xc6\xe4\x17\x42\x6b\xc7\xfa\xd3\xbd\x2d\x1b\x1b\x1b\xfe\xbb\x14\xdc\xd1\xf0\x76\x82\x70\x2f\x81\x12\xcd\x41\x68\xed\x4c\x79\x69\xc6\x46\x73\xd8\x9c\x26\xc5\x69\x4b\xf9\x52\x39\x63\xe0\x4d\xd2\x5f\x1a\x9f\xb1\x78\xa9\x2c\x5c\x1e\x9e\x97\x56\x5f\xf4\x79\x48\x4e\x2e\x17\x4f\x1b\x0a\x21\xe7\x2f\xc9\x23\xf5\x53\x7e\xad\xb5\x91\x96\x57\x08\x64\xa4\x18\xb6\x58\x98\xd6\x80\x4b\xed\x1a\xa3\x97\xae\x25\x39\x68\xfd\x49\xc0\x71\x5a\xde\xda\x20\x21\x45\x0f\x62\x65\x93\x80\xbd\x24\x47\x0c\xf4\x69\x00\x39\x35\x70\xfe\x92\xdf\xa0\x74\x1a\x7d\x8c\xaf\x16\xa4\x3c\xe8\xb3\x69\x75\x34\x55\x5f\x24\x3d\xd1\x6c\x17\x6f\x9b\x58\xbb\x6a\x6d\xe9\x83\x66\x5b\x52\x75\x26\xc4\x9b\xe6\x11\xf2\x3f\xb1\xb4\xd3\xda\x80\x89\x20\x29\x0e\x57\x22\x49\xb0\x69\x50\xb1\x24\x48\xf6\xdc\x73\xcf\xe1\xa5\x97\x5e\x02\x30\x5e\xb6\x21\xe7\xb8\xe4\xce\xb9\xdc\x39\x97\x65\x16\xf9\xa1\x83\x7c\x75\xf1\x20\x3f\x9d\x8f\xcc\xa2\xdf\x3b\x32\x3e\x15\xd7\xd5\xc0\x43\x6d\xd2\xc3\xd1\x4b\x27\xfe\x52\x60\x51\x82\x15\x37\x7e\xd3\xc8\x29\x68\x84\x46\xd7\xc0\x8e\x86\x5e\x98\x5c\x23\xe3\x86\xbb\xed\xd1\xc6\xfd\xf9\xc1\x8d\x87\x9d\xc1\x26\xc8\x86\x5c\xf2\x57\x3b\x70\x0e\xa4\x7e\xad\xb5\x31\x00\x02\xc8\xce\x97\x8f\x88\xe9\xaf\x46\xe7\xe3\x43\xce\x97\x77\x50\x09\x40\x49\xc6\x2a\x64\xf8\x39\x20\x0a\x22\x6f\x21\x2f\xda\x49\x35\x67\xcb\xff\x38\x7f\x0d\xa8\xa4\x00\x81\x50\x7d\xc4\x40\x0c\xe7\x4d\xef\x79\x19\x38\x7f\xa9\xee\x39\x6f\xad\x0c\x52\x48\xa1\x0b\x01\xe6\x98\x81\x8d\x3d\x9b\x86\x36\x05\x48\xc4\x68\x63\xba\x25\xd9\xc6\x90\x5c\x12\xef\x18\x10\xd0\x9c\x5a\x88\xb7\x44\x2b\xb5\xbb\x96\xa7\x96\x4f\x0a\xe8\x4e\x09\x92\x5c\x9a\x5d\x49\x05\x56\x12\xfd\x34\x65\x48\xe1\x2d\xe5\xc3\xe5\xd7\xfa\x84\xa4\x27\x29\x03\x91\x69\xca\x93\x22\x7f\xac\xdd\x69\xdc\xe3\xf8\x71\xe9\x5a\xe2\x1d\x8b\x4b\x0d\xa5\x1d\x4a\x41\x56\x92\x92\xa5\x8e\xae\xd4\xd0\x6a\xb5\xd0\xe9\x74\x32\xa0\xfa\xc6\x03\x05\x2f\xc6\x98\xbc\x69\x4d\xe7\xd0\x7e\xf3\xe4\x7c\xbf\x71\x2c\x73\xa6\x03\x8c\x67\x68\x0c\x4c\xed\xed\x1e\x53\x1e\xd3\x4f\xcf\xca\x2d\x9e\x95\xaf\x4b\x93\x5f\x0e\x34\xca\xfb\xf1\x46\x17\xff\x86\x34\xa7\x33\x13\xf4\x45\xbc\xc0\x52\x0a\x83\x86\xdb\xdf\x9a\x19\xde\xd9\x98\x1b\xdc\xb2\x59\x1d\xb0\x14\x60\x45\x3c\xe6\xf9\xee\xdd\xbb\xf6\x47\x3f\xfa\x91\x67\x93\xd2\x01\x7c\x88\x8d\x22\x53\xe8\x42\x60\x24\x04\x68\xfc\x75\x4c\xc1\x35\xa0\x22\xd1\x84\xe4\x7d\x1c\x83\x2a\x01\x29\x89\x46\xd3\xf3\x90\x03\xe1\xa3\x9d\x18\xa8\x0b\x05\xcd\xc0\x6b\xc6\x2e\x06\xc2\x78\x1b\x86\x40\x52\x4c\x87\x42\x6d\x13\x03\xb6\x29\x79\x70\xda\xd0\xb3\x14\x60\x4b\xef\x53\xaf\x53\xf2\xa6\xf4\xa9\xe5\xd5\xc0\x78\x4a\xbe\xd3\x02\xce\x14\x60\x93\xc2\x97\xeb\x73\x0c\xd4\x6a\x0e\x9e\xf3\xa4\x72\xc4\xfa\xa3\x0f\xdc\xb6\xa4\xf4\xa9\x14\xd0\xc6\x03\xd7\xe1\x14\xfb\xa7\xf5\x79\x89\x9e\x5f\xc7\x00\xcc\xe3\x0c\x2a\xf8\x20\x4d\xca\x5f\x2b\x57\x8a\x0d\xd0\x9e\x85\x78\xa7\x82\x98\x09\x7b\x25\x29\xa0\xf6\xc7\x33\x93\x94\x24\xa4\x34\x13\x9d\x95\x7e\x9b\x88\x9c\xdf\x52\x2d\x13\xf5\xc6\xcb\x44\xed\x41\xb6\x62\x60\xf2\x92\x13\x5f\xa6\x29\x5f\x61\xf6\xcb\x4e\x3a\xc8\xf0\x64\xe2\x52\x91\x02\x58\xc4\xf4\x6c\x9a\x85\xbf\x98\xc4\x83\x85\xb3\xdd\x7c\xb4\xbd\x39\x3b\xb8\xb5\x35\x33\x78\x50\x9c\x92\x5b\x82\x17\xf2\xa1\xad\xda\x29\x8a\xc5\xeb\x72\x78\xf8\xf0\x21\x20\x2b\xac\xe4\x38\x34\x60\xc9\x9d\xa9\x14\x24\x85\x97\xf2\x4a\x35\x84\xfe\x9e\x83\x93\x69\x41\xaf\x06\x08\xa4\x7c\x24\x83\xc6\xf9\x00\x93\x72\x84\x0c\x92\x64\x64\x25\x23\xce\xdb\x42\x02\xfd\x52\xfb\x48\x75\x16\x92\x5b\x32\xe2\x9a\xa1\xa0\x72\x4d\x53\xf7\xbc\xbd\x24\x43\xcc\xeb\x5a\xe3\xad\xe9\x8e\xe6\xbc\x39\x9d\x74\xcf\xe3\x35\xa7\x12\xca\x83\x87\x69\xf5\x31\x74\x2d\x81\x36\x49\x96\x98\xc3\x95\x9e\x87\xfa\xb1\xd6\x4e\x92\x4d\x4f\x01\x09\xd3\x3a\x5c\x9a\x9f\xc4\x2f\x46\x93\x0a\x14\xb9\xbc\xa1\x6b\x5e\x6f\x1a\x8f\x90\x2f\x4b\xd1\x47\x9a\x4f\x4c\x07\x43\x79\xa5\x0c\x06\x42\x3c\xb5\x10\x6a\x13\x4d\xae\x10\x8f\x0f\x13\x42\xa0\x9f\x5e\x4f\x80\x2e\xba\x39\x77\x1a\x23\x26\xc5\x73\xe3\x08\x21\x2e\x03\x60\x9f\x7a\xea\xa9\xec\xcc\x99\x33\xfc\x5d\xf7\xf2\x4d\x22\x00\xe3\x65\xa2\xfd\xe6\xea\x62\xb7\x71\xb2\x69\xcd\xe2\xf8\xbc\x38\x57\x1d\x18\x07\xb6\x8f\x84\xbe\x24\x44\xbe\x33\x34\x71\x2e\x0b\x2a\x70\x42\xf7\xc2\xf0\x8f\x2b\xf2\xd7\xa4\xf9\x59\x2c\xf4\x30\xba\x92\x07\x26\xaf\x7d\x18\x65\xae\xbf\xdb\x1e\x6d\x3c\x9c\x19\xde\x39\x68\xda\x6d\xf2\x31\x2d\xfe\x09\xf3\xda\x29\xb9\xf7\xee\xdd\xb3\xef\xbc\xf3\x0e\xad\x53\x1f\x1e\xa7\x73\x6b\x23\x64\xcd\x08\x49\xed\x29\x39\xa0\x90\x31\xa0\xf9\x48\xf9\xc5\xd2\x84\x80\xc8\x34\xce\x48\x02\x0b\x9c\xbf\x54\x3f\x29\x65\x0b\x81\x1f\x9a\x87\xe6\x54\x43\x79\x73\x39\x42\xb2\x4a\xe9\x42\xf9\xf1\xe7\xd3\x00\x30\xe9\x59\x4c\x7e\x7a\x9d\xca\x53\x2b\x07\xa7\x8d\x3d\x4f\x95\x4d\xcb\x8f\xf3\x89\xd5\xbb\xa4\x5b\x12\x7d\xa8\x3d\x62\xb2\x4a\xba\x19\x2b\x97\xc6\x3b\xa5\x1d\x53\x64\xa5\x72\xc5\xfa\x95\x94\xbf\x14\x52\x74\x25\x24\x8b\x96\x4f\xcc\xf6\x85\x74\x46\xcb\xcf\xc7\x6b\x76\x64\x9a\x3e\xad\xd5\xb7\x64\xcb\xf0\xe2\x8b\x2f\x66\x33\x33\x33\x34\x5d\xc8\x6e\x65\x6f\xbc\xf1\x06\xfd\xb8\xe4\x04\x3f\xe1\x97\xd3\xc5\xf2\x98\xc8\x53\xe0\xa5\xe5\x4d\xaf\x27\xda\x58\x7b\x1d\x9a\x33\x97\x1a\x3b\xd4\xa8\x92\xa2\x95\xe9\x8e\x1e\x3d\x8a\xb5\xb5\xb5\xb2\x72\xfd\x1b\x45\xf4\xc4\xdc\xcc\x99\xd6\xca\x7e\xf3\xf8\x5c\xbf\x71\xac\x61\xcd\xac\x99\x38\x70\xa5\x0a\xfc\x11\x7b\x13\x59\x4d\xe3\x4c\x3d\xa2\x9c\x6d\xa9\x1f\xd7\x32\xc9\x87\x6d\xa8\x09\x1c\x36\x04\x7f\xbe\x6f\xbf\xe1\xf6\x1f\xce\x0e\xef\x3d\x9c\x1d\xde\xb5\x19\xba\x06\x86\x7e\x09\xd4\xcf\xb8\x58\xa0\xf6\xbd\x0a\x6c\x6d\x6d\xe1\xfa\xf5\xeb\xb1\x0e\x4d\x43\xcc\x10\x70\x63\x17\x32\x9e\xd2\x08\x20\xd6\xe9\x43\xb2\xa5\xd2\x85\x46\x12\x31\x87\x16\xe2\x97\x32\x12\x8b\x95\x6f\x1a\xc7\x30\x4d\x1f\x99\xc6\x70\x4b\x23\x30\x29\x0d\xcd\x33\x64\xfc\x25\xf9\xe8\x7d\xcc\xe8\xa7\x3a\x16\xce\x5b\x1b\x61\x4a\x86\x31\xd5\xc9\x6b\x61\x1a\xd9\xe8\xb3\x90\x43\x0f\xd5\x87\xc6\x2f\xe6\xfc\x34\x7d\x08\xd9\x5d\xed\x59\x2c\x6f\x29\x1f\x49\xa6\x58\xbc\xf4\x7c\x9a\x3e\xfa\x38\x7a\x05\x00\x38\x74\xe8\x10\xce\x9d\x3b\xa7\x3a\xea\xf5\xf5\x75\x3c\x7a\xf4\x88\xe6\x1f\x73\x8c\x31\x5a\x1e\x42\x69\x53\x6d\x8b\x28\x7b\x20\x4f\x3b\x3b\x3b\x9b\x7d\xec\x63\x1f\xab\xa5\x39\x7f\xfe\x3c\x3a\x9d\x4e\x8d\x17\x3f\x0c\x8f\x9c\x2b\x63\x47\xa3\x11\x7a\xbd\x5e\x49\x7b\xeb\xd6\x2d\xdc\xbe\x7d\x3b\x25\x7f\x49\xde\x98\xcd\xf6\xbf\x9a\xae\x72\x1b\x1d\xd4\x35\x7a\x00\x5d\x8a\x41\x0b\x29\x5c\x8c\xbe\x26\x3c\x79\x0d\x9a\x1e\x97\xec\x81\x54\xde\x1a\x9a\xce\x52\xb7\x71\xaa\x3d\xcc\x56\x0c\x90\x4f\x7c\x10\xb1\xf8\xcf\x90\x69\x10\xe7\x0c\xca\xc3\x6c\x01\xb2\x84\x44\x3e\x0e\x50\x7b\x45\x7a\x1c\x5b\x1e\xd7\xe2\x02\xa0\x47\x38\xab\xa5\x76\x28\x9d\x1a\x0c\x9c\x71\xf6\xa0\x65\xb7\x1e\xcc\x0e\x6e\x6d\x77\x86\x5b\xc5\xc9\xb8\x5d\x7a\x3a\x2e\xfd\x3a\xa8\x3f\xe2\x7f\x63\x63\xc3\xde\xba\x75\x2b\xc4\x3c\xd6\x66\xa9\x23\xe7\x69\x0d\x9a\xa4\x7c\x21\x43\x1f\x43\xda\xb1\xb4\x60\xd7\x9a\x0c\x52\x59\x62\xb2\x6a\x41\x92\x87\xf3\xe7\xbc\xb5\x8e\x1a\x92\x2d\x16\x24\x59\x43\x0e\x92\xc6\x6b\x74\xa1\xb2\x84\x82\x54\xc6\x90\x01\x4b\x05\x55\xb1\x3c\xa5\xfc\x43\x41\xb2\x3b\x29\xa0\x87\xa7\xd3\x74\x8b\xf7\x23\x4f\x1b\xd3\xa7\x90\x9c\x1a\x7d\xc8\xf8\x4f\x9b\x47\xc8\x7e\x6b\xfd\x38\xa6\x17\x21\xba\x14\x39\x53\x06\x0b\x19\x00\x7b\xf6\xec\xd9\x6c\x76\x76\xb6\xc6\x68\x75\x75\x15\xcf\x3e\xfb\xac\x0a\x1a\x3b\x9d\x8e\xe5\xcb\xec\x7b\x7b\x7b\xb8\x7a\xf5\xea\xb4\xc0\x42\x2b\x53\x88\x8e\x3f\x97\xec\xaf\x04\x92\xc4\xfc\x57\x57\x57\xb3\xb5\xb5\x35\x00\xc0\xfc\xfc\x3c\x5e\x78\xe1\x85\x90\xbe\x65\xc0\xa4\x7f\xa2\x9f\x28\x78\xfe\xf9\xe7\xe9\x23\xbb\xba\xba\x8a\x43\x87\x0e\x61\x7b\x7b\x1b\x37\x6e\xdc\xa0\x72\x68\xbe\x20\x15\x37\xd0\x6b\xad\x0f\x4b\xf5\xa0\xa6\xcd\x19\x81\x64\x94\x34\x63\x1f\x32\x08\x92\xe0\x00\x80\x23\x47\x8e\x64\x8b\x8b\x8b\xfc\xc0\x39\xff\x9b\x15\x32\xe5\x8b\xdd\x7c\x71\xbe\xd7\x38\x99\x5b\x33\x2f\xcd\x9b\x94\xb3\x2c\xe5\x67\x81\x3c\x68\xf1\x08\xb3\x3e\x5f\x32\x71\xf6\x4a\x11\xeb\xd4\x69\x15\x0f\x64\xfc\xb6\x5f\x53\x07\x4e\xc2\x17\x9f\x1d\x1c\x4c\xb1\x36\xe5\x08\x28\x1a\x1a\xd7\xdf\x6e\x0f\xef\x3d\x9c\x1d\xde\xe9\x36\x2d\x3d\x29\xb7\x76\x6e\x8b\xaf\x2f\xaf\x5c\x37\x6e\xdc\xc0\xa5\x4b\x97\xb8\x42\xd3\x90\xe2\x68\xa4\xfb\x18\x00\xcd\x94\x78\x1a\xa7\xc9\x92\x02\x36\x38\x3f\xe9\x57\x53\x74\xc9\x69\x84\xf8\xa7\x74\x2c\x0d\x10\x49\xf2\xa4\x8e\x14\x42\x0e\x3e\xe6\xd0\xa5\x7b\x0d\xe0\x69\x3c\x24\xe0\xa5\xdd\xc7\x0c\x35\xd8\xf3\x54\xbd\xd2\xca\xc1\x79\x84\xea\x54\xfb\x95\xe4\xd0\xf4\x4e\x8b\x9b\x06\x64\x85\xf2\xa3\xfc\x43\xe0\x2a\x05\x30\x6b\x6d\x12\xd3\x4b\x2d\x8e\x86\x98\x9e\x4a\xfd\x3e\xe4\x0b\x24\xde\x92\xde\xc5\xea\x8d\x87\xd2\xe9\x9e\x39\x73\xa6\x8c\x7b\xe9\xa5\x97\xb0\xbc\xbc\x5c\xa6\x15\x0e\x2e\x05\x7f\xf6\xdc\x73\xcf\xf9\x97\x3e\x4a\xda\xcd\xcd\x4d\x4b\x06\xcb\xb8\x72\xe5\x8a\xd6\x2e\x29\x00\x5b\xea\x6f\x31\xb0\x88\xc0\xf3\x09\xba\x23\x47\x8e\x64\x73\x73\x73\x78\xf2\xc9\x27\xf1\x91\x8f\x7c\x84\x97\x33\xab\xb6\x2d\xd4\x26\x03\x26\x18\xb2\x49\x02\x4b\xe8\xac\x73\x2e\x3b\x73\xe6\x0c\x4e\x9f\x3e\x8d\x7b\xf7\xee\xd9\x3c\x1f\x43\x03\x6b\x6d\x76\xed\xda\x35\x2e\x93\x0f\xbc\xce\xb4\x72\x4a\xf5\xab\xe9\x62\x48\xe7\xcb\x74\x39\x4b\x18\x33\xba\x29\x8e\x21\xd4\x78\xd9\x27\x3e\xf1\x09\x9c\x3e\x7d\xba\xf6\x41\x45\x7f\x76\x0b\xd9\x9c\xdb\x5a\xdd\x6f\xae\x15\xcb\x44\x9d\x49\xd8\x40\x94\xd6\x54\xe7\xaf\xf8\x19\x90\x6a\x3a\x6c\x4c\x4b\x01\x4d\xf9\x81\xc6\xda\x33\x54\x20\x08\xf5\xcd\xba\xe5\xf1\x76\x6c\xf9\x48\x9a\x68\x31\x64\x43\x4d\xf9\xf6\x92\x71\xe8\xe5\x76\x7b\x73\x76\x70\x6b\xbb\x3d\xbc\x8f\xfa\x5b\x44\xb5\x4d\xb9\x7e\x6f\x8b\xd0\x21\x53\x3b\x05\x0f\x5a\xda\x90\x93\x0a\x3d\x87\x22\x03\x7f\x2e\x39\x39\x6e\x70\x29\xad\x56\x36\x89\x86\x3f\x83\xf2\x8c\xcb\x84\xc8\xf3\x10\x7f\x1e\xa7\xe5\xaf\x81\x03\x9e\x0e\x42\x3a\x29\xbf\x98\x03\xd2\x1c\x34\xbf\x96\x74\x26\xe6\x90\xb8\xf3\x12\xfb\xb3\x20\x5b\x0c\xa4\x50\xba\xd0\xf3\x94\x74\x34\x3f\x4d\xef\x38\xbf\xd4\x3e\x11\x72\xb8\xbc\x5e\x38\xbd\xc6\x2b\x56\x5e\x8d\xf7\xb4\xe5\x92\xfa\x0e\xbd\xd7\xf2\xa4\xd7\xbc\xfc\xa9\x7a\x95\x2a\x2f\x0f\x65\xfa\x66\xb3\x89\x95\x95\x15\xe4\x79\x8e\x3f\xfc\xc3\x3f\xf4\xcf\xca\x40\x8f\xd6\x67\xe9\xc5\x7c\x18\x9d\x5d\x59\x59\xc9\x0a\xbe\x00\x80\x7f\xfc\xc7\x7f\xb4\x85\x0f\xc2\xc3\x87\x0f\xe9\x71\xfc\x31\xc0\xc1\xef\x43\xe5\x0f\xd9\x4b\x51\xee\xc3\x87\x0f\x67\x79\x9e\x67\x2f\xbe\xf8\x22\x4e\x9c\x38\x41\xd3\x95\xd7\x1e\x88\x10\x00\x93\x49\xa0\xa5\xa0\x2d\xaf\xfd\xd7\xad\x8b\xbc\xe8\xc7\x22\xed\xda\xda\x5a\x59\x3f\x83\xc1\xc0\xfe\xe0\x07\x3f\xc0\xdd\xbb\x77\x63\x6d\x9d\x05\xe2\x43\xe5\xd5\x74\x25\x04\x6e\x6d\xe8\x23\x8b\xdc\x58\x49\x0d\xa6\x19\x01\xcd\x28\xd0\x8e\x55\x6b\x08\xf2\x51\xc5\x96\x71\xc8\x0f\xed\xe7\xa7\x3a\x83\x6c\xc5\x38\xe4\xe2\x4e\x15\x3e\x05\x56\xfc\x96\x00\x05\xf5\xd7\x94\xcb\x46\x23\xa0\x64\x62\xb9\x89\x6f\xe4\x75\xf5\x37\x94\x26\xd7\x0b\xfd\x8c\x8c\x99\x78\xe6\xf9\x59\x83\xe1\x5e\xcb\x6e\x6e\xcc\x0f\xee\xec\x74\x46\xdb\xa8\xf6\xb4\x94\xe0\x05\x98\x38\xde\xdf\x76\xbb\x5d\xdb\xeb\xf5\x78\x3d\x03\xb2\xf2\x80\xc5\x69\x86\x32\x66\x94\x34\x83\x2a\x19\x6c\x4d\x06\x1e\x9f\x02\x86\xb8\x1c\x3c\x0f\x7f\xaf\x39\xdd\x98\x83\x0c\xc9\xce\x81\x06\xd8\x75\x8a\x6c\x12\x8d\x36\x7a\x90\xe8\x35\x99\xa4\xb2\x73\x5e\xa1\x36\x0b\xb5\x57\x0c\xc0\xf1\x3e\x1b\x73\x40\x21\x7d\x9c\x36\x4e\xe2\x1b\x02\xb5\x1a\x9f\x10\x88\x95\xec\x14\xe7\x1d\x02\x37\xa1\xfa\xd5\xda\x2d\x24\x53\x0c\x34\x4a\xd7\x94\x56\xd3\x07\x4d\x0f\x63\xf1\xa9\xfd\x9a\xf7\x1f\xad\x2c\x51\x80\xdc\x6c\x36\xb3\x4e\xa7\x83\xd5\xd5\x55\x7c\xfd\xeb\x5f\x2f\x67\x4a\xc0\xea\x8c\x9e\xb0\x0e\x4c\xcc\x24\xd0\x60\xc9\x73\xa9\x7d\x01\xc0\x7e\xf3\x9b\xdf\x2c\xd3\xfe\xf8\xc7\x3f\xb6\x1f\x7c\xf0\x01\x06\x83\x81\x56\x1f\x5a\xfd\x84\xfa\x98\x66\x67\xd4\xfe\x38\x3f\x3f\x8f\x3f\xf8\x83\x3f\xc0\xd2\xd2\x92\x04\x58\x32\x00\x74\x9b\x45\x56\x0c\xd8\x33\x56\x0f\xb5\xd9\x17\x02\x56\x60\x26\x4f\x64\x2f\x65\xf3\x75\xe5\x9c\xb3\xcd\x66\x33\xfb\x93\x3f\xf9\x13\xfb\xdd\xef\x7e\x17\xa3\xd1\x28\xdb\xdb\xdb\xc3\xf8\x38\xb1\x5a\xd0\xfa\xb4\x54\x2f\x9a\xfe\x71\x3e\x41\x3f\x17\xfb\xc8\x62\xa8\xf3\x4a\x99\x48\x9d\x6d\x42\x28\xf6\xe1\xa9\x12\xc8\xf8\xc3\xe7\x66\x06\x8d\xce\x52\x37\x3f\xdd\x1c\x65\xf3\x06\xc8\x0d\xea\xa0\x41\xdd\x70\x54\xdb\x28\x5b\xcc\x8d\x14\xe8\xa3\xda\xe5\xc2\xbe\x64\x44\x66\x68\xc6\x4f\xc9\xec\x0e\xc7\x4b\x22\x92\xf5\xb3\x38\xd2\x06\x18\x60\x98\xb9\xee\xd6\xcc\xf0\xd6\xa3\xce\xf0\xee\xb0\xe1\xf6\x01\x74\x8b\x3d\x2e\x74\xb6\x85\x9e\xdd\x02\xe7\x1c\x7e\xf5\xab\x5f\xe1\xad\xb7\xde\x0a\x19\x0f\xcd\x88\xc7\x1c\xa6\xd6\x59\x42\x69\x25\xc3\x9b\x22\x1b\xe5\xcb\xd3\x70\x23\x2f\xc9\xa6\x39\x4f\xcd\x38\x48\x41\xeb\x00\x9a\x6e\x67\x98\x94\x8d\xcb\x29\x75\x2e\x5e\x06\xc9\xd0\xc5\x1c\x90\x26\x3b\x97\x37\xd4\xf1\x79\x3a\x29\x3e\x64\x34\xa6\x75\x38\x5a\xf9\xb8\xcc\x52\x99\xb4\xf2\xa4\x1a\x37\x1e\xa4\xf8\x69\xf8\xa4\xca\xa0\xe5\xc9\xf5\x42\x92\x49\xe3\xa9\xc9\x9e\xc2\x4f\x0a\x21\x9b\x2e\x05\x29\x2f\xcf\x67\x5a\xd9\x52\xe3\x32\x00\x36\x1b\x07\x7c\xf4\xa3\x1f\xc5\xe7\x3f\xff\x79\xcd\x51\xf3\x5f\xed\x19\x80\xd2\x1e\xdb\x02\xfc\x4c\xf8\x27\xe2\x43\x6a\x76\xe6\xcb\x5f\xfe\x72\x96\x65\x99\x5d\x5f\x5f\x87\xb5\x36\xb3\x93\x5e\x3a\xe4\x2f\x27\xca\x26\xc4\x87\xd2\x65\x7e\x89\xe6\x4f\xff\xf4\x4f\xd1\x6a\xb5\xb4\x72\x7b\x7f\x59\xbf\x87\xc9\x32\xeb\xaf\x7d\x1a\x32\x7a\x1f\xfb\xaa\x21\x00\x38\x03\xeb\x8a\xbe\xe7\x50\xce\xf4\xdb\xc2\x27\x65\x7c\x46\xe6\x3b\xdf\xf9\x0e\x9c\x73\x78\xe5\x95\x57\xec\x9d\x3b\x77\xf8\x71\x20\xd3\xd6\x43\x32\x98\x15\x78\x67\xc0\x78\xc6\x45\xcb\x98\x0b\x10\xeb\x00\xa1\x86\xaa\xdd\x53\xd0\x52\xa0\xc4\xdc\xbf\x0a\x6d\x8c\xc9\x56\xf7\x9a\x2b\xf3\xbd\xc6\xc9\x86\x35\xb3\x1e\x18\x50\x14\x41\xbf\x33\x44\x97\x6d\xe8\x72\x92\x61\xe9\xfc\xd2\x0d\x05\x18\x7e\x0f\x4a\xb5\x85\x97\xf3\xa8\x87\x89\x9d\x33\xa6\xfe\x4b\x83\x5f\x35\xea\xe5\x76\xfb\xfe\x42\xff\xd6\xce\xf8\xbb\x44\xe5\x9e\x16\xf2\xfa\xb3\x25\x7f\xbc\xde\x34\x74\x4f\x43\xa8\x5d\x1e\xd7\x01\x50\x5e\x29\x74\x29\xc6\x5d\x34\x30\x91\x34\xa9\x79\xf2\x11\x8c\xd4\x09\x62\x65\x09\x01\x25\x49\x26\x0e\x18\x25\x7e\x52\x90\x78\x4f\xdb\x3e\xbc\xbc\x12\x7d\x0c\x2c\x48\x69\x24\x30\xa9\x81\x2c\xc9\x00\xf1\x76\x96\xea\x46\x33\x4a\x29\xe0\x86\x3f\x4b\x0d\x21\xc3\x4a\xaf\xb5\x38\x4d\x9f\x80\x70\x3b\xa5\xc8\x13\xd2\xb3\x94\x41\x42\x28\x8f\x50\x5f\x0b\xf5\x07\xa9\x8d\x1e\xa7\x9c\x49\xa0\xef\xf3\x9f\xff\x3c\xce\x9f\x3f\xef\xe9\xcb\x5f\x36\xb3\xa2\xfd\x71\xba\x5a\x7e\x64\xa6\x85\xda\x59\xfe\x0d\xb8\xda\xb1\x20\x5f\xfa\xd2\x97\xf0\xa5\x2f\x7d\x29\xfb\xcd\x6f\x7e\x63\x7f\xfe\xf3\x9f\x07\x65\x7f\x8c\xa0\xda\x8d\xb9\xb9\x39\xfc\xc5\x5f\xfc\x05\xa7\x93\xca\x9c\x7b\xbf\x49\xe3\x8f\xed\x34\xe7\x4f\x6d\x75\x56\x0f\xed\x37\x57\x66\x06\xd9\x72\x6e\xcd\x6c\x66\xd1\x32\x30\x18\x66\xae\xdb\xcb\xed\xf6\x41\x73\xb4\xb5\x3d\x63\xb7\xee\x2c\xf4\xb6\xee\xcf\xf7\xf7\x7b\x8d\xf2\xa5\x10\xff\x9b\x93\x6b\x8b\xb1\xbf\x02\x30\xae\xcb\x6f\x7c\xe3\x1b\xf8\xd7\x7f\xfd\x57\x5c\xbd\x7a\x35\xb5\xbc\x92\x1e\xf1\x67\xa1\x6b\xd1\xae\xe5\xc2\x83\x94\x91\x86\x64\xc8\xf8\xf3\x09\x9e\x7f\xf4\x47\x7f\x94\x9d\x3c\x79\x12\x40\x09\x20\x4a\xd4\x48\x0f\x9f\x3b\xba\xd3\x3a\x3e\x33\x68\xac\x35\x1c\xc6\xa7\xe5\x16\x4c\xf8\x4c\x4b\xfd\x6a\xf2\xb5\x9f\x09\x40\x21\xee\x4b\xa9\xe2\xab\xaf\x41\x07\x3e\xfb\xec\x0f\xbf\x33\xfc\xc9\xe4\x87\x1e\x47\xc6\x0d\xf7\x5a\xa3\x8d\x07\xb3\x83\x7b\xfb\xcd\xd1\x36\x8a\xaf\x89\x53\xe6\x2c\x00\x00\x20\x00\x49\x44\x41\x54\x3f\x9b\xf1\x07\x15\xe9\x9b\x44\xb5\xe9\xcc\x57\x5f\x7d\xd5\x5e\xba\x74\x09\x88\x1b\xdc\x58\xd0\x0c\x72\x6c\x14\xc5\xe3\xb4\xce\xc6\xf9\x7f\x58\x00\x1c\x92\x29\x05\x14\x4f\xe3\x10\x63\xf4\x21\x39\xe9\xbd\xe4\xbc\x25\xfa\xc7\xe1\xed\xc3\x34\xbc\x63\x21\xa5\x6e\x52\xe5\x4b\xad\xbf\x98\x23\xd4\x6c\x4e\xcc\xa9\xa6\x3a\x6f\x89\x77\xea\x8c\x0b\x97\x63\x5a\x5b\x19\x0b\xd3\x80\x8f\x0f\x33\x88\x88\xa5\x0d\x8d\x72\xa5\xb8\xd4\x81\x0f\xa7\xad\x5d\x7f\xe5\x2b\x5f\xc1\xb9\x73\xe7\x7c\xbc\xff\xf5\x03\x5a\xa0\xf2\x51\x19\xbd\x36\x0e\xf9\x5c\xaf\x91\xaf\xee\x35\x67\x0f\xed\x37\x17\xe7\xfb\x8d\xf9\xf6\xc8\x74\x1c\x80\x7e\xe6\xba\xfd\xdc\xf6\x7b\x4d\xdb\xdd\x69\x8d\xf6\x1f\xcc\x0d\xf6\x77\x3a\xc3\xfe\x28\x03\x9d\x55\xf0\x4e\xd9\xf7\x2b\x3f\xcb\x50\x02\x9a\xe7\x9e\x7b\x0e\xad\x56\x2b\x7b\xf5\xd5\x57\x3f\x6c\x1b\xc7\xf4\x24\x3b\x7c\xf8\x30\xbe\xf9\xcd\x6f\x6a\xf5\x50\x2b\xbb\x73\x2e\xcf\x60\xf2\x99\x7e\xd6\x3a\xf5\xb0\xb3\x72\xea\xff\x63\xed\x5d\x9f\xe4\x38\xae\x3b\xd1\xdf\xc9\xaa\xae\xae\xee\xe9\x79\x62\x30\x18\x0c\xf1\x18\x42\x20\x08\x42\x34\x04\x90\x26\xf8\x16\x4d\x8a\x21\xca\x96\xd6\x8f\x6b\xdd\xd0\xd2\xe1\xeb\x1b\xe1\x7b\x1d\xf7\xaf\xda\x2f\x1b\xb1\x5f\x1c\xe1\x0f\x1b\x61\x47\x78\xd7\xda\xf0\x5d\x5f\x59\x72\x48\xa6\x4c\x51\x12\x41\x52\x14\x4d\x42\x20\x08\x0c\x06\x83\x41\x4f\x4f\x4f\x77\x75\x55\xe6\xfd\x50\x95\x59\x27\xb3\xb3\x1e\x43\x6d\x22\x06\x5d\x95\x95\xaf\xca\x3a\x79\xce\xef\x9c\x3c\x99\xb9\x1f\x6f\x2f\x4f\x82\x4b\xfd\x24\xf8\x4a\x37\x15\xe7\x42\x49\x6b\x42\x61\x40\x0a\x11\xca\x05\x38\x89\x24\x4c\x24\xa9\xb1\x14\x18\x26\xc1\xc2\xdd\x71\x27\xbb\xf9\x60\x61\xf6\xc1\xad\xd5\xc9\xa7\x77\x97\x92\xfd\xc3\x28\x9b\x28\x42\x8a\x1c\x18\xe9\x73\xf3\x04\xeb\x27\x01\x00\xdf\xf8\xc6\x37\xa4\x94\x52\xfc\xf4\xa7\x3f\xc5\x7b\xef\xbd\xd7\xf8\x8d\xe1\x1f\x3f\x6d\xc6\x3f\x3c\xf7\xc6\xe2\xd2\x86\x99\xbb\xa1\x89\xb0\xbd\x65\x86\x61\x68\x1d\xa6\xe8\x5c\x6b\x14\x19\xad\x8d\x3b\xe7\xa3\x8c\x56\x08\x10\x66\x63\x38\xb2\xad\x21\x76\xb0\x41\x83\x6f\xc5\xcf\x5c\x0e\xe7\x54\xc6\xd2\xe7\x25\xbf\xd1\x76\x1a\x37\x38\xae\x32\xfc\xc9\x5c\x4c\x26\x54\xb2\xdf\x4b\xef\x1e\x46\xd9\x03\x49\xe5\xb9\x44\xc5\x54\x91\x77\x7b\x7f\x00\xc8\xb2\x8c\x9f\x4b\xe4\x32\x2f\xa0\x9a\x28\xdc\xb8\x36\xe8\xb6\x2a\x5d\x1d\xc3\xf7\x85\x36\x0c\x55\xa7\xf3\xb5\xd1\x57\x2f\x9c\x3c\xbe\xeb\xba\x7a\x78\x79\xbe\x34\x55\xf5\xb6\x79\x5f\x9d\xb7\xad\x50\xac\x6a\x5b\x55\xb9\x6e\x3f\x34\x29\x18\x4d\x75\xc2\xf3\xbc\x6d\x3f\xd6\x5d\xfb\xbe\xa7\x1b\xe7\xeb\xcf\xa6\xef\xc8\xcb\xe2\xa1\xa9\xef\xdc\xbc\x6d\xc1\x62\x9b\xb2\xdc\xd0\x86\x57\xd6\xd1\x7a\x53\xf9\x3c\x6d\x15\x0f\x70\xcb\x68\x12\x18\x6d\xca\x68\x13\xda\xa4\x73\xdb\x64\xe2\xff\xe0\x0f\xfe\x00\x8b\x8b\x8b\xe8\xf7\xfb\x08\x82\x60\xce\xaa\xc0\xf7\xf4\xd2\x7f\x61\x46\xe1\xc6\x28\x1a\x6c\x3d\x8a\x36\xd7\x0f\x3b\x17\x16\x92\xe0\x2b\xf1\x4c\x6c\x45\x99\x58\x0b\x24\xfa\x54\x1c\x0b\xa3\x08\x89\x24\x95\x28\x42\x92\x0a\x39\x9c\x84\xf2\xce\x61\x24\xff\x7d\x18\xa7\xb7\x76\x07\xb3\xbb\xf7\x16\x93\xbd\x87\xfd\x74\x82\x12\xbc\x68\x21\x6d\x35\x32\x08\x02\x5c\xb8\x70\x01\xa7\x4f\x9f\xc6\xfe\xfe\x3e\xfe\xdb\x7f\xfb\x6f\xc7\x79\xf7\x36\xfd\x0d\x00\xe2\xf4\xe9\xd3\x78\xfd\xf5\xd7\xd1\xe9\x74\x2c\xd0\x82\x72\xc1\x8a\xe9\x07\x21\x11\x2d\x4d\x3a\xfd\xed\xbd\xf8\xcc\xd9\xfd\xf8\xda\xca\x51\xf0\x6c\x3c\x0b\x2e\x74\x32\x5a\x17\x8a\x96\x84\x42\x9f\x6c\xb0\xe7\xd4\x4d\x52\x01\x32\x26\x4c\x16\x12\xf1\xd2\xca\x51\x70\x77\xeb\x51\xf4\xc9\xa3\x5e\xf6\xb3\xcf\x57\x26\xef\x7e\xb6\x3a\xb9\xb5\xd7\x4b\xc7\x8a\x90\x14\x32\x39\x61\x53\x46\x46\x8e\x03\xc0\xb5\x6b\xd7\x64\x18\x86\xe2\xa7\x3f\xfd\xa9\xef\x1b\x57\xbd\x73\x1b\x5a\xf7\x05\x8b\x96\xdc\xe5\xd0\x4d\xc1\x65\xa6\x6d\x06\x6e\x65\x59\x7c\x65\x11\x80\x90\x40\xe1\x60\x1a\xf4\x97\x26\xc1\xb9\x30\xa3\x3e\x00\xa1\x01\x85\xe5\x34\x0b\xd7\xc6\x32\x6f\x69\xe1\xcb\x91\xc9\xcd\x58\x64\xd1\xc6\x15\xab\x64\xaa\x86\x47\x4e\xca\x5a\x18\x05\x00\xd3\x40\x0d\x77\x07\xb3\xbb\x47\x91\x1c\x2a\xa8\x84\x60\xf9\xb4\xb8\xa0\xc5\xf7\xf1\x79\xff\xb6\x65\x2a\x4d\xcc\xaa\x29\x4f\xd3\xb3\x2f\xcb\xec\x1a\x81\xad\x73\xdd\x04\x5e\x9a\xea\xf1\xa5\xf5\x31\x77\x1e\xdf\xd4\x36\x37\x6d\x55\x9a\x2a\x41\x5d\x07\x42\x7d\xed\xa8\x7b\x5f\x5f\x9d\x6d\xda\xe6\xab\xc7\x17\xda\xf4\x77\x1d\x5d\x36\x09\x56\x5f\xba\x3a\xc0\xd3\x54\x7e\xdb\xfa\xdb\xe6\xf1\x5d\xb7\xb5\x66\x54\xbd\xc3\x97\x61\xd8\x6d\xd3\xb4\x05\x66\x5f\x56\x70\xd4\x85\xb6\x34\x00\x00\xf2\xf7\x7f\xff\xf7\xc5\xe6\xe6\x26\xc2\x30\x74\x05\x35\xb7\x2c\x84\x50\x08\x03\x85\x70\x65\xdc\xe9\x9f\x79\xd4\xdd\x3a\x71\xd8\xb9\xb4\x72\x14\x3e\xb5\x38\x0d\x2e\xc4\x33\x71\x26\x90\x62\x3d\x50\xe8\x33\xcb\xc2\x9c\x5c\x52\x14\x24\x92\xd4\x28\x13\x18\x26\x81\xdc\x3d\xbb\x9f\xdd\x1e\xc6\xd9\x2f\x77\x16\x93\xf7\x6e\xad\x4e\x3e\xbd\xbf\x30\x1b\x49\x42\xaa\x50\xee\x5c\x8e\x12\xd0\x88\x28\x8a\x64\xa7\xd3\x41\xbf\xdf\x97\xdf\xfc\xe6\x37\xc5\x7f\xff\xef\xff\xfd\xcb\xf4\x51\x65\x9e\xb3\x67\xcf\xe2\xf9\xe7\x9f\xc7\x60\x30\xe0\x7d\x11\xb2\xdf\x10\x40\x18\x48\x44\xcb\x47\xe1\xe0\xb1\x47\xdd\x33\x8f\x3d\x8a\xaf\xad\x8f\x3a\xcf\x0d\x12\x71\x25\xcc\xc4\x26\x03\x2b\xa1\x56\xef\xed\x85\x23\x79\xb9\x7a\x05\x2d\x11\x40\x0a\xb1\xc8\x30\x08\xb3\x60\xb3\x9b\x06\x17\x07\x49\x78\x6d\x79\x12\x3c\x77\x72\x14\xfd\xe8\xd6\xca\xe4\xa7\xbf\x59\x99\xde\x1e\x47\xd9\x44\x0a\x63\xf5\xd2\x6e\x0e\x26\xc4\x71\x8c\xa7\x9e\x7a\x4a\x12\x91\x78\xe7\x9d\x77\xda\xca\x9d\xe3\x8c\x0b\x5f\x3e\xe8\x06\xf1\xd0\xc6\xdc\x53\xa7\xc1\xba\x8c\xa7\x72\x90\xb8\x8e\x45\x4a\x29\x21\x40\xe1\xc6\x41\x67\xbd\x9f\x04\x67\xf2\x43\x15\xc9\xac\xfc\xe1\x4b\x92\x35\x6a\xe0\x53\x48\x06\xc2\x38\x69\xc0\xd2\x98\xd5\x46\x45\xa1\x6a\x0e\xf0\xb4\x81\x2c\x70\x36\xbe\xb3\xa2\x73\x9f\x1b\x00\x19\x94\x1c\x47\xd9\xde\x83\xfe\x6c\x67\x12\xca\x51\x31\x28\xf4\x8a\x22\x09\x7b\x1e\xd1\xf4\xd1\x3b\xef\xbc\x23\xef\xde\xbd\xdb\xae\x1d\xcd\x08\xb5\x29\x8d\x2f\x8f\x4b\x58\x6d\xb5\xea\xba\x3a\xeb\x84\x75\x1b\x06\xeb\x13\x7a\x4d\xda\x6b\x9d\xe0\x6a\x0b\xb6\xda\xd0\x7d\x5d\xfb\x75\xfb\x04\xda\xbf\x4f\x5d\xb9\x4d\xd6\x20\x1f\xd8\xa8\xca\x53\xf7\x0d\x9b\xbe\xb7\x5b\x6f\x95\x55\xa7\x0e\x84\x34\x59\x4c\x9a\xc2\x71\xac\x03\xba\xfe\x3a\x80\x51\x07\x74\xe1\x3c\x73\xfb\xc3\xf7\x5d\xdb\x7c\xc3\xe3\xf0\xd8\xe3\x84\x2f\x53\x56\x5d\x3f\xf8\xca\x39\xf6\xf7\x13\x42\x88\x37\xde\x78\x03\x8f\x3d\xf6\x18\x84\x30\xe7\xe4\xe9\x72\x42\x94\xbe\x1b\x11\x29\x84\xbd\x24\x88\xcf\x3f\x8c\x37\xcf\xee\x77\x6f\x9c\x1c\x75\x9e\xed\x27\xc1\xc5\x4e\x46\x1b\x81\xa2\x15\xa1\xd0\x07\x28\x04\x94\xd0\x0e\xa8\x73\xdb\x5c\x14\xfb\x6a\x09\x45\x2b\xa1\x54\x69\x94\x06\x17\xfa\xb3\xe0\xca\xf2\x44\x5d\x3b\x71\xd8\x79\x7e\x63\x14\xfd\xdb\xdd\x41\xf2\xee\xad\xd5\xc9\xc7\x0f\xfb\xe9\x28\x15\x2a\x01\x41\xa0\x00\x2d\xc8\xa7\xf3\x41\x44\xe8\x74\x3a\x38\x7b\xf6\xac\x7c\xf3\xcd\x37\xc5\xf7\xbf\xff\x7d\x5f\xff\xd4\xf5\x95\x37\x9c\x3f\x7f\x5e\x5c\xbf\x7e\x1d\x6b\x6b\x6b\x2e\x68\xd1\xc0\x25\x02\x10\x76\x53\x8a\x4f\x3f\xea\x6e\x6c\xef\xc5\xd7\x36\x0f\xa2\x97\x97\x26\xe1\xd3\x51\x2a\xce\x04\x0a\x2b\x00\x85\x50\x85\x12\x4e\xf6\x21\x79\x06\xa4\x14\x7d\xa1\x50\x6e\xd0\x9a\xff\x52\x28\x08\x21\x29\xc4\x41\x8a\x95\x50\x76\x36\x7a\xb3\x60\x7b\xe9\x28\x7c\x6a\x6d\xdc\xf9\xe7\x5b\xab\x93\xf7\xee\x2c\x25\x7b\x59\xa0\x12\xd6\x3e\xa3\x70\x2b\xa5\xb0\xb0\xb0\x80\x27\x9f\x7c\x52\x02\x10\xef\xbc\xf3\x8e\xae\xfa\xcb\xf4\xcd\x71\x68\x5e\xb8\xc0\xa5\x49\xa0\xb4\x41\xea\xde\xeb\xeb\xd7\xaf\x8b\xe5\xe5\x65\xdd\x40\x7e\x12\x74\x79\x46\x91\x44\xb4\x31\x8a\xb6\xba\xa9\x58\x27\x55\xae\x26\xe2\x56\x10\x3d\x6d\x94\xc7\xe7\xf8\x92\xef\xd9\xa2\xd3\x98\x65\x5f\x45\x8c\x05\x4a\xd8\xb4\x93\x3b\xad\x54\x39\xcd\xc4\x8f\x02\xd0\xa0\x49\x2f\x5c\x42\x0e\x86\xa8\xac\x10\x52\xa8\xf4\x51\x2f\xbd\x3b\xea\x66\x0f\x53\x61\x0e\x53\x74\xad\x2d\x73\xdb\xfc\xdf\xbd\x7b\x17\xa3\xd1\xa8\xf5\x07\x44\x3d\x88\x6c\x1b\xaa\x04\x29\x8f\xf3\x09\x2c\x37\x34\x31\x76\xde\xbe\x2a\x41\xe1\x96\xe3\xa6\xe1\xe5\xbb\xc1\x27\xfc\xeb\x84\x83\xaf\xac\x2f\x2b\x6c\x5d\xe1\xed\xf6\x97\xaf\x2d\xf0\xa4\xe3\xf5\xba\xf5\xfb\xee\xab\xde\xf9\x38\x56\x00\x01\x40\x5e\xbc\x78\x51\xef\xcc\xe9\x7e\x23\x5f\x5c\x55\x5f\xcc\x81\x9a\x77\xdf\x7d\x17\xe3\xf1\xd8\xf7\x0d\xea\xe2\xdc\xf2\xea\x00\x85\x1b\x7f\x1c\x90\xed\x96\xe7\xb6\xc5\x97\xbf\x09\x2c\xd7\x31\xe1\x46\x5e\xe9\x69\x5f\x1b\xc0\xee\xab\xc3\xd7\x0e\x1f\x5d\x56\xb5\x8f\x97\xd1\x56\x1e\xb8\xe0\x56\x02\x40\xb7\xdb\x15\xcf\x3d\xf7\x1c\xf7\x67\xe1\x7f\x21\x60\x7c\x37\xa2\xee\x4c\xc4\xeb\xa3\xce\xda\x99\x47\xdd\x4b\x67\x1f\xc6\x2f\xaf\x1d\x75\x6e\x44\x29\x6d\x93\xc2\x12\xe5\x82\x5a\x50\x21\xad\xad\xf3\xe6\x50\x82\x17\xb3\xd0\x22\xbf\x16\x44\x14\x41\x21\x0a\x24\xfa\x81\xc4\x5a\x27\x0b\xcf\x2c\x24\xc1\xa5\x13\xa3\xce\xd7\x56\x8f\xc2\xff\xf9\xe9\xda\xe4\xa7\x9f\x2f\x4f\xef\x1e\x75\xe4\x04\x54\x5a\x17\x0a\x85\x13\x40\x39\x75\xf4\xd2\x4b\x2f\xc9\x9f\xfc\xe4\x27\x62\x36\x9b\x55\x7d\x97\xa6\x3e\xc6\xf6\xf6\xb6\xb8\x7a\xf5\xaa\x75\xf4\x0d\x98\x85\x05\x40\xa4\x94\x0a\x17\x93\x70\x70\x66\xbf\x7b\xee\xf1\x07\xbd\x17\x36\x87\xd1\x6b\x0b\xb3\xe0\x8a\x90\x58\x23\x50\xc4\x57\xdb\xe6\x32\x88\x4a\x79\x54\x08\x23\xed\xfe\x60\x2d\x68\x21\xfb\xb7\xd8\x27\x2d\x0c\x24\xd6\x7b\x89\x18\x44\x69\x67\x73\x61\x26\xce\x2c\x24\xc1\x46\x98\x89\x1f\xdc\x5a\x9b\xdc\xcd\x72\x01\xa7\xdb\xaa\xfb\x06\x40\xbe\x74\xfb\xf4\xe9\xd3\x3e\x1a\xa9\x53\xd6\xaa\x94\x02\x5f\x98\x93\x27\xa1\xe7\x61\x55\xe2\xaa\x81\x5f\xd5\x58\xab\xd1\x4f\x3c\xf1\x04\x16\x16\x16\xf8\x47\xb2\x1d\x73\x15\x42\x01\x84\xab\x47\xe1\xd9\x50\xd2\xa0\x5c\xb9\xc3\x7c\x57\xc0\x01\x83\xbd\xeb\xad\xf1\xa5\x2d\xa3\x58\x60\x4e\xb3\xc6\xe4\x62\x5b\x68\x6c\xa4\x6e\xe7\x32\x08\xb5\xa8\xdb\x94\x66\xe6\xab\x4a\x34\xab\x9b\x37\x0b\xd4\x68\x77\x21\xb9\x7d\xd4\xb1\xa7\x89\x98\xd3\xd3\xdc\x12\xe8\x0f\x3e\xf8\x40\x1e\x1c\x1c\xcc\xb5\xbe\x08\x6d\x85\x77\x15\xc0\xa8\xd3\xc2\x9a\x98\x52\x9d\xd0\xab\x6b\x6b\x1b\xe6\x5a\x15\x77\xdc\xbc\x55\xf9\x7d\xc0\xab\x89\xb1\xb7\xad\xb3\xaa\xbd\x3e\xd0\x57\x97\xbe\xa9\xee\xba\x50\xf7\xce\xbe\x74\x32\x08\x02\x71\xf5\xea\x55\xf7\xb9\xd8\xde\xde\xc6\xc9\x93\x27\xf9\xfe\x19\xd6\x86\x8e\xc0\xfc\xb6\x04\x55\xe9\xdc\x7a\x8f\x8e\x8e\x0c\x4d\xde\xbb\x77\x4f\x14\x47\x59\xd4\x09\xe1\xe3\x0a\xcc\xaa\xf8\xa6\xb4\x3e\xd0\xe8\x13\x42\x4d\x20\xab\x0e\xd8\xb8\xcf\x9b\xae\xab\xda\xe6\xb6\xbb\xe9\xba\xaa\xfe\xe3\xd0\x59\x53\x59\x75\x75\x4a\x00\xe8\xf7\xfb\xe2\x77\x7e\xe7\x77\x70\xe5\xca\x15\x8b\xff\x83\x09\x6b\x0d\x5a\x16\x92\x60\x70\xf6\x61\xf7\xdc\xf6\x5e\xfc\xbb\x9b\x07\xdd\x97\xfb\x89\xb8\x16\x4a\x5a\x07\x28\x32\x96\x6e\x8b\xd7\x13\x94\x53\xa9\x45\x82\xcc\x32\x5f\xca\x08\x0a\x05\xb0\x12\x65\x58\x0a\x27\xe1\x99\x6e\x2a\xce\x2c\x24\xc1\xe9\x78\x26\x7e\xf4\xf9\xca\xf4\x93\x61\x9c\x0e\x33\x81\x84\xef\x2c\x8b\x72\x9a\x44\x3e\xfd\xf4\xd3\x22\x4d\x53\xf9\xf3\x9f\xff\x5c\x1c\x1d\x1d\xe9\xe7\x3e\xbe\xeb\xed\xe7\xf3\xe7\xcf\x8b\xab\x57\xaf\x62\x73\x73\xb3\x12\xb4\x90\x42\xb4\x3c\xe9\x2c\x6d\xef\xc5\x97\x1e\x7f\xd0\x7b\xed\xe4\xa8\xf3\x4a\x9c\x8a\x4b\x42\xd1\x80\x5b\x97\x2c\x05\x9d\x29\xd1\xb6\x72\x3d\xaf\xa4\x53\x09\xed\x00\xfe\xbf\xa2\x38\x94\xd8\x5a\x9c\x84\x83\x73\x19\xad\x74\x32\x5a\x20\xc2\x3f\xde\x5a\x99\xdc\x4e\x85\x9a\x30\x51\x6a\x4d\x1b\x0d\x06\x03\x3c\xf5\xd4\x53\xb8\x79\xf3\xa6\xcb\x8f\xea\xc6\x71\x1d\x3f\xae\xa5\x31\x0e\x5c\x7c\x03\x16\xce\x6f\x1b\xe2\xf7\xa5\x9f\xfb\xa8\x6c\x0d\xbd\xf9\x60\xdd\x54\xf4\x07\xd3\x70\x2b\xc8\x9d\xac\x04\xc0\xcd\x5a\x8c\x61\x52\xf9\xa1\xac\x50\x31\xd3\x63\xcd\x1a\x69\x73\x22\xd9\x8b\x9f\x75\x1d\x5e\x17\x60\xee\x90\xcb\x80\x0d\x8f\xe4\xbe\x38\x0a\x0a\xe3\x4e\xb6\x77\x7f\x61\xb6\x93\x04\x72\x8c\x1c\xb0\xb8\x7b\xb7\x48\xe7\x0f\xbf\xf8\xc5\x2f\x30\x1c\x0e\x75\xbf\xf8\x04\x2d\x7f\x56\x05\x2a\xdb\x68\x9b\x55\xdf\xce\xc7\x80\xaa\x34\xd0\xa6\x7c\x75\xe5\x57\x0d\xf0\x3a\x2b\x04\x4f\xe7\x2b\x97\xa7\xa9\xaa\xc7\x97\xbe\xaa\xde\xa6\x01\x54\xd5\xb7\x6e\x3b\xeb\xd2\x57\x69\x21\x55\xdf\xbd\xea\xfd\x9a\x98\xa6\x58\x5c\x5c\xc4\xd6\xd6\x16\x80\xdc\xb9\xee\xb9\xe7\x9e\x2b\xc6\x97\x17\x88\xe8\x0d\xad\xac\x3d\x97\xaa\x02\xdb\xd4\xca\xc4\xb1\x55\x72\xe6\x4c\x14\x5d\xd6\x6f\x7e\xf3\x1b\xb9\xb8\xb8\x68\xd2\xa6\x69\x2a\x7e\xfd\xeb\x5f\xf3\x36\xfb\xbe\x4f\x9d\x60\x6e\x0b\x80\xea\xbe\x95\x8f\xb7\x35\x59\x37\xdc\xb2\xab\xbe\x31\x9c\xf8\x36\xe0\x83\xe7\xf1\x85\xaa\xf1\x5c\x27\x38\xda\x8c\xd3\xe3\x82\xfb\x26\x1e\x23\x06\x83\x01\xbe\xf6\xb5\xaf\x55\x82\x16\x00\x51\xa0\x28\x1a\x4c\x83\xa5\x73\xfb\xf1\xc5\x4b\x3b\xfd\xd7\x36\x46\x9d\x37\xa2\x4c\x5c\x14\x8a\xfa\x86\x7f\x93\x62\x0a\x66\x01\x94\x5d\xde\x6b\xd1\x33\x98\x14\xcf\x7f\xcd\x74\x52\x2e\xf4\x85\x90\x6a\xa9\x37\x0b\xae\x6d\x3d\xea\xae\xc4\x33\xb1\xbe\x90\x04\xff\xf3\xdf\x4f\x1c\x7d\xb0\xd7\x4f\xf7\xd2\x00\x02\xc5\x2e\xe7\x45\x99\x06\xbc\x5c\xbb\x76\x4d\x64\x59\x26\x6f\xde\xbc\x89\xf1\x78\xcc\xfb\xcd\xd7\x47\xa6\xaf\xce\x9e\x3d\x8b\xeb\xd7\xaf\x63\x63\x63\x83\xcf\x3a\x58\xa0\x05\x40\xb4\x30\x0d\x06\x17\x77\x7b\x57\xbe\xb2\xdb\xfb\xfd\xb5\x71\xe7\x95\x28\xa5\x73\x85\x2f\x0f\x5b\xf0\xaa\x7d\x58\x0a\xb9\x45\xda\xaf\xb3\x8c\x2f\xc7\x2e\xeb\x13\xe6\xcb\xc9\x8f\xb5\x61\x10\x4f\x08\xa5\x56\xfa\xb3\xe0\xea\x99\xfd\x6e\x3f\x94\x14\x4a\xa8\x7f\xb8\xbd\x32\xbd\x93\x0a\xae\xb9\x97\xfd\xb1\xb4\xb4\x84\x67\x9f\x7d\x16\x69\x9a\x0a\xe7\x98\x9a\x26\x9c\x60\xfa\xa6\x26\xad\x9b\xde\x4c\x15\xd5\xa1\x22\x5f\xe6\x63\x21\x6e\x1e\xf8\x14\x11\x18\x01\x0b\x85\x70\xe5\x28\x1c\xf4\x12\xb1\x21\x14\x22\x63\xe6\x32\x16\x15\x87\xb9\xf2\xe9\x23\x8f\xa6\xe7\xf8\xe1\xea\x84\x79\x3e\x56\x16\xb7\x94\x90\xcf\x13\xd8\xbd\x35\xf3\x89\xd5\xb8\x49\x11\xd2\x47\xbd\xec\xce\xb0\x97\x3e\x48\x85\x9a\xe8\x5d\x72\xd9\x81\x8a\x66\xc3\x1f\x00\x92\x58\x9b\x6a\xfa\xcf\xf7\x8d\x9a\xfa\xbc\x0e\x64\xd6\x09\xd0\xaa\xf2\xf8\x7d\x95\x40\xae\x03\x36\x75\x20\xab\xaa\x9d\x6d\x41\x40\x53\xbb\xea\xca\xad\x13\x32\x55\xc1\x97\xa6\xaa\x4f\xdb\x00\xa9\xa6\xf6\x54\x01\x9a\xaa\xf6\x88\xb5\xb5\x35\x0c\x06\x03\x00\xc0\xe6\xe6\x26\xae\x5d\xbb\xe6\x3b\xc7\xc4\xb4\x89\xd8\x39\x27\xce\x06\x5d\xfa\xb9\x19\x7f\x15\x80\x47\xea\x74\xbe\xf7\xd2\xda\xeb\x99\x33\x67\xc4\xd9\xb3\x67\x4d\x19\x93\xc9\x44\xce\x66\x33\x53\xd7\x17\x5f\x7c\x01\x66\x86\xaf\xa3\x91\x26\x50\x5d\x07\xe2\xdd\xdf\x2a\x90\xe8\x86\xaa\xef\xd4\xd4\xde\xa6\xf1\x56\x07\x0e\x9a\xda\x54\x45\xab\xbe\xb6\xb4\xed\x87\x26\xd0\xe6\x2b\x73\x2e\xf4\x7a\x3d\x9c\x3a\x75\x0a\x00\xf8\xce\xae\x02\xb9\x95\x25\x22\xa2\x50\x48\xc4\x4b\x93\x70\x65\x7b\x2f\xbe\xf4\xc4\xfd\xfe\xeb\xeb\x87\x9d\x37\xa3\x4c\x5c\x80\x82\x50\xa4\x1c\x1f\xc7\xc2\xc6\xc2\xe9\xd4\x52\x40\x39\x6d\x73\xb0\x52\x4e\x95\xa0\xc0\x31\x3a\x3d\x01\x51\x94\xd1\xa5\x93\x87\x9d\xa5\x28\x15\x2b\xa1\xa4\xf8\x57\x27\xc7\xef\x3d\x58\x98\xed\x66\xc2\x2d\xb3\x14\xd6\xcf\x3e\xfb\xac\xb8\x7b\xf7\xae\x1c\x8f\xc7\xad\x15\x25\x77\x7a\x88\xef\x61\x06\x20\x82\x42\x14\x65\xd4\x3f\xff\x30\xbe\x78\x71\xb7\xf7\xfb\x27\x0e\x3b\x6f\x76\x32\xda\x82\x22\x33\x3d\x06\xfd\x0e\x85\x16\x5e\x8e\xc3\x1c\xd1\xb8\x60\xc5\x80\xb5\x02\xa9\x58\x72\xce\x4c\x29\x69\x8f\x4f\xb6\x01\xab\x44\xbf\xab\xc4\x95\xd3\xc3\x28\x92\xb4\x30\x9d\x86\xf2\xff\xdd\x19\xcc\xee\x66\x81\xc5\x03\xf4\x86\x75\xe8\xf5\x7a\x78\xe5\x95\x57\xe4\x74\x3a\xd5\xe7\x1b\x55\xd1\xa4\xfb\xac\x2d\x9e\x30\x79\xab\x36\xa0\xab\xd3\x0e\x01\xfb\x23\xd5\x31\x06\x00\x90\x27\x4e\x9c\x10\x41\x10\x98\xb2\x8b\x8e\xb5\x96\x43\x07\x52\x44\x27\x0e\x3b\xeb\x51\x26\xd6\x48\x41\xf0\x69\x1a\xf0\x7e\x26\x9f\x69\xb0\x64\xa8\xda\xdf\x85\x5b\x69\x72\x70\xaa\xcc\xf4\x92\x05\x54\x60\x9b\xd0\xf8\x41\x89\x26\x78\x51\x50\x75\x48\x85\x9a\xec\xf5\x67\xb7\x27\xa1\x1a\xa9\x62\xbe\x94\x5b\x5a\xf4\x34\x11\x1b\x10\xf2\xc1\x83\x07\xc8\xb2\xcc\xed\xdb\x3a\xc1\xcc\xaf\xdb\x32\x6b\xf7\x79\x5d\x68\x03\x44\x9a\xda\xa9\xef\x5d\xc6\xe8\xd3\x28\xab\x04\x7e\x15\xdd\xd5\xbd\x47\x15\x23\xa9\x6a\x83\xdb\xde\xe3\x68\xa6\x6e\xde\xba\xb6\x55\x95\xd9\x16\x58\xf2\x6b\xef\x37\x58\x5b\x5b\x2b\xfc\x1e\x81\xeb\xd7\xaf\xe3\xf1\xc7\x1f\xb7\xfa\x80\x9c\x2d\xc1\x3d\xe0\x44\x14\xbf\x56\x3c\x7b\xce\xf3\x19\xa0\xc2\x01\x4f\x01\xc8\xad\x77\xd3\x71\x45\xf9\x56\xbe\x38\x8e\xf1\xad\x6f\x7d\xcb\x94\xf1\xfd\xef\x7f\x5f\x0e\x87\x43\x71\x70\x70\x80\xe9\x74\x5a\x47\xcb\x3e\xba\x70\xe3\xdd\xfe\xab\x2a\x83\x87\x3a\x21\xe4\x0b\x75\xc0\x4a\xc7\xd5\x81\x94\x36\x65\x1f\x27\x8f\xae\xbb\x69\x7c\xfc\x36\xf7\x55\x6d\x33\xd7\x71\x1c\x8b\x8b\x17\x2f\xe2\xc5\x17\x5f\x14\x80\xf1\x67\xb4\x2d\x0c\x0a\xf1\x60\x1a\x2c\x5d\x78\x10\x5f\xbe\x74\xbf\xff\xd6\xda\x61\xe7\x8d\x8e\x14\x67\x48\x29\x91\x33\xf1\x92\x17\x97\x8a\x6c\xb9\xc8\x42\x0b\x61\xc5\x2c\x2a\x50\xca\xb0\x6c\x23\x2b\xa8\xb4\xc8\x80\x08\xf6\x81\xb8\x39\x08\x08\x24\x6d\xae\x4c\xe8\x8d\x0b\x0f\x7a\x61\x26\x14\x52\xa1\xde\x7d\xd8\x4b\x77\x95\x30\x3b\xed\x4a\xc0\xda\x46\x5f\x2e\x2f\x2f\x63\x77\x77\x17\xc5\xf1\x2c\x55\x7d\x2c\x01\x88\xd5\xd5\x55\x74\x3a\x9d\xfc\x5d\x98\xfc\x33\xfd\xa1\x10\x05\x0a\xf1\x99\xfd\xee\x99\xa7\xee\x2d\xe4\x7d\x91\xd1\x26\x40\xc2\x18\x59\xe0\xf8\x61\x3a\xbe\x9b\xe5\x0b\x71\xd9\x56\x00\x18\x05\x28\xee\xeb\xa2\xf3\x71\x83\x8b\x91\xaf\x66\xfa\x28\xec\xa6\xc1\xa5\xcd\x61\xf7\xdb\x4f\xdd\x93\xfb\x49\x38\xfa\xf1\xc3\xde\x4c\x4a\x61\x7f\x7f\x5d\x47\xa7\xd3\xc1\x5b\x6f\xbd\x25\xff\xd3\x7f\xfa\x4f\xfa\x68\x00\x1f\x30\xae\xe2\xeb\x75\xe3\x96\xc7\x7b\x97\x43\xb7\xd5\x48\xaa\x90\xf9\x1c\x31\x7f\xe7\x3b\xdf\x41\xb7\xdb\x35\xc4\xcb\x1a\x6e\xe2\x84\x42\xb4\x7a\x14\x9e\x0e\x33\x5a\x62\x65\x7a\xf1\x82\x6b\x12\x2c\xcc\x7e\x28\x2c\x80\x9e\x8f\xea\xa2\x4f\x6d\x5a\x73\x34\x47\xcc\xa1\x6b\x53\xa1\x75\x14\x80\xd3\x1e\x1d\xf4\xf7\x9f\x06\x72\xb8\xbb\x30\xbb\x3b\x13\x72\x8c\xf2\x14\xe8\xa4\xe8\x13\x73\x98\x22\x58\xbf\xfe\xdd\xdf\xfd\x1d\x26\x93\x49\x65\x1f\xb2\xd0\xc4\x00\xab\x34\xac\x2f\x5b\xce\x71\x9f\xd5\x95\xe9\xb6\xcb\x97\xae\x8a\xe6\xea\xca\xad\x7a\x17\x5f\xd9\xbe\xeb\x3a\xad\xbe\x4e\x58\xb6\xa9\xa7\x4e\x80\x54\xe5\xab\xd3\x94\x7d\xcf\xc5\xc2\xc2\x02\x00\x88\x6f\x7d\xeb\x5b\x7c\x69\x25\x00\xc3\x24\x01\x58\xe7\x9b\xe8\x72\xbc\x67\x9c\x58\xbf\x0a\x42\x6b\x77\xfe\x50\x5a\x0c\xc9\xde\xa9\x54\xff\xca\x02\xa4\x58\x71\x45\xfa\xb2\x94\x42\x18\xbc\xf9\xe6\x9b\x02\x00\x7e\xf0\x83\x1f\xc8\xcf\x3e\xfb\x4c\x24\x49\xc2\x2d\x30\x55\x34\xdd\x06\xc4\xb6\xfd\x2e\x55\x69\xdb\x02\x54\x5f\x9b\x9a\xd2\xba\xc0\xab\x4e\x71\xa8\x6b\x63\x55\xdd\x3a\x6e\x0e\xec\xb6\x6c\x77\x13\xd8\xb3\xd2\x77\x3a\x1d\xf1\xe4\x93\x4f\xe2\xc6\x8d\x1b\xe6\xbd\xe6\x40\x0b\x4a\xeb\xc2\x13\xf7\xfb\x6f\x9d\x38\xec\x7c\x33\x94\xb4\x95\x1b\x59\x88\xc9\x61\xdb\xaa\x52\x44\xcf\x59\x1f\x4a\xb8\xc2\x14\x4f\xc5\x21\x0c\xb3\xb6\xbb\xf2\xbe\xf8\x0d\x14\xad\x2d\x4f\x82\x57\x2e\xec\xf6\x92\x54\xa8\xc9\x87\x1b\xe3\x5f\x1c\x74\xb3\x7d\x22\x9a\x98\xf4\xcc\x61\xf7\x95\x57\x5e\x81\x10\x42\x7e\xf8\xe1\x87\xa2\xb0\x1a\x56\x05\xf9\x8d\x6f\x7c\x43\xac\xad\xad\xf1\x31\x68\xac\x2d\x4a\xa9\x48\x28\x8a\x97\x8f\xc2\xb5\xab\x77\x06\xaf\xad\x8f\x3a\x7f\x10\x65\xb4\x45\xa0\x10\x28\xfa\x80\x4a\x19\xe6\x0b\x94\x27\x2c\x65\x55\x31\x5c\x8d\x23\xae\x2a\x65\x18\x71\x99\x46\xc8\x41\x1c\x78\xb7\xd9\x07\xfd\xf6\x66\xe2\xea\xb9\x87\xdd\xbd\x83\x6e\x36\xfc\x70\x43\xfe\x62\x18\x67\x7b\x54\x1e\x08\x2c\x51\xba\x3f\x80\x88\xb0\xb0\xb0\x80\xd1\x68\x24\x9c\x31\xef\x53\x1c\xe1\x79\x0e\x34\xd0\xbd\xcf\x39\xb7\x0d\x33\x6d\x33\x40\xbc\xc1\x9c\x0b\xc4\x37\xd6\x51\x08\x85\xa2\x68\x71\x12\x6e\x04\x8a\x06\x26\x6d\xf1\xeb\xfb\x4e\xee\x2a\xa1\xda\x4d\xe7\x14\x15\x84\xea\x10\xaf\x2e\x87\x3b\x33\x79\xf3\xc3\xce\x63\x3d\xe2\x80\x46\x41\x11\xe4\xb8\x9b\xed\x3c\xec\xcf\x1e\xa4\x81\x9a\x28\xa8\xb4\x70\xcc\xd5\x1f\x37\xa5\xf2\x5c\x08\xc9\x88\xb8\x0d\x73\x6a\x13\x9a\x84\x5e\x23\xd3\x69\x88\x6b\xd2\xfe\x7d\x80\xb6\x4a\x63\x73\xd3\x35\xd5\x57\xd7\x06\xb7\xdc\x46\x61\xcf\xd2\x55\xa5\x3d\xce\xbb\xb6\x01\x1d\x75\xef\x5a\xd5\x1e\x5f\x3f\x9a\x78\x22\x42\x14\x45\xf8\xb3\x3f\xfb\x33\xeb\x54\x58\x55\x9c\x76\xeb\x80\x14\x9f\xb5\x33\x4f\x93\xa7\xb7\xd2\x9a\x7b\x05\x21\x14\x40\x52\x09\x92\x10\x1a\x9a\x28\x01\xa8\x80\xa4\x14\x0a\xca\xe6\x1d\x2e\x40\x91\x28\x81\xba\x66\x74\x7c\x0c\x08\x16\x6f\xfa\xed\xe5\x97\x5f\x16\xaf\xbc\xf2\x0a\xde\x7d\xf7\x5d\xf9\x93\x9f\xfc\x44\x83\x2c\x1f\x8f\x6a\x03\x0e\xdb\x80\x0d\xb7\x7f\xeb\xc0\x6a\x55\x99\xc7\x01\x03\xee\x73\x97\x7e\x7d\x75\xfa\x42\x53\x9a\xe3\x96\x7d\x5c\xb0\x32\x17\x9e\x7e\xfa\x69\xfc\xee\xef\xfe\xae\xa1\x27\xbe\x03\x6c\x21\xac\x63\x02\xf5\xcf\x3e\xec\x6e\x5d\x78\xd0\x7b\x75\x75\xdc\x79\x25\x94\xb4\x69\x04\x29\xf8\x6c\x06\xb7\xe8\xc1\x7a\x6e\x1c\x55\x31\xcf\xa3\xed\xa3\x62\x0a\x6b\x3b\xca\xb4\x73\xd3\xa6\x85\x1c\x08\xa5\x58\x5f\x3d\x0a\xbf\xfe\x95\xdd\xde\x24\x09\xe4\xf8\x83\x53\xe3\x0f\x92\x40\x01\xf9\x26\xa2\xba\x1f\xf4\x94\x3f\x5e\x7a\xe9\x25\x21\x84\x90\x6c\x17\xd9\xb9\xc0\x15\x03\x9a\xdf\x78\x35\x24\x50\xdc\x91\xd4\xbf\x72\x6f\xe1\xf2\xa9\x83\xee\x1f\x77\x33\x3a\x03\x55\x80\x16\xb2\x67\x12\x58\x73\xd9\x94\x59\xd9\x19\x66\xc5\x2c\xd8\x4c\x02\x53\xee\x19\x8c\x2b\x9e\x95\x05\x97\xfd\xc6\x2a\x21\x40\x80\xe2\xc1\x34\x7c\xe1\x2b\xbb\xbd\x9d\x61\x2f\x1d\x4e\xc3\xc9\x64\xda\x91\xe5\xf8\x76\x78\xd6\xdb\x6f\xbf\x8d\xff\xf2\x5f\xfe\x8b\x3c\x3c\x3c\xe4\xdd\x50\x85\x1b\x7c\xa1\x56\x1e\xba\xce\xb9\x75\x19\x9b\x2a\xaa\x15\xb2\x0c\xb0\x00\xce\x47\x0b\x14\x45\xfd\x24\x18\x2c\x4c\x83\xad\x40\x51\xa4\xf3\x10\xca\xe9\x1d\x60\x1e\x98\x30\x97\x23\xbf\xa5\x44\xd9\x1f\xcf\x45\x27\xdc\x94\xc8\x07\xca\x5c\xa8\x99\x1e\xf2\xb8\xf2\xca\xfd\x5e\x76\x67\x1c\x65\xc3\x62\x9a\x28\x81\xbd\x5b\xae\x3e\xf8\xab\x78\x27\xaa\xfd\x40\xc7\x7c\x06\x34\x33\xc8\x26\x4d\xae\x4d\x68\x93\xb7\x49\x78\x1f\xb7\xdc\x2a\x40\xe3\x63\xb0\x75\xc2\xde\x97\xce\x05\x52\x4d\x65\xfa\xda\xe0\x6b\xaf\x0e\x55\x7d\xd1\x04\xaa\xdc\xbc\xd6\xf3\x53\xa7\x4e\xe1\x8f\xfe\xe8\x8f\xdc\x72\x01\xc0\x02\x26\xb0\x05\x87\xd6\x7a\x75\x39\x02\xf9\x8e\x9c\x61\xf7\x50\xc6\xf1\x41\xd6\x8f\x8e\xd4\x52\x67\xa2\x06\xc1\x4c\x2d\x05\xa9\x5a\x12\x99\xea\x93\x42\x08\x45\x3d\x52\x2a\x22\xa5\xa2\x62\x50\xa4\x4a\xd0\x44\x91\x9a\x2a\xa2\x44\x05\x98\x64\x01\x0d\xb3\x0e\x0d\x67\x5d\x1a\x4d\xfb\x62\x38\x59\x14\xc3\xc9\x40\x4c\x54\x30\x77\x3e\x8c\xd9\xc7\x88\xc5\xf3\xbe\xd0\xa7\xd4\xca\x6b\xd7\xae\xe1\xda\xb5\x6b\xe2\xd6\xad\x5b\xf2\xef\xff\xfe\xef\x3d\xdd\x71\xac\xb1\xd2\x76\xec\x54\x8d\xa3\xe3\x58\x3a\xda\xd4\x53\x07\x0e\x1a\x15\xc1\x86\xd0\x04\x3c\x7e\x5b\x5e\x52\x9b\x87\x4d\x37\x72\x4b\x4b\xbe\x34\x19\x88\x37\x0f\xa2\xf5\x8b\xbb\xfd\x57\x37\x0e\x3a\x6f\x74\x33\xda\x86\x82\xb0\x0e\xca\xb5\x04\x2a\x31\xcb\x01\x0c\x4f\xd6\xf7\x16\xfb\xe7\xcf\x00\xc3\xe4\x8d\x8b\x00\x4a\x41\x6e\x55\xc3\xa6\x93\x42\x29\x36\xd7\xc6\x9d\xdf\xdb\x7e\xd8\x1b\x3d\x8a\xb3\xfd\xdf\xac\x4e\xee\x48\xb2\x85\x34\x03\x23\x8d\xfd\xf2\xe7\x7f\xfe\xe7\xe8\xf5\x7a\xbe\x71\x18\x12\x51\x14\x66\x14\x9f\x3a\x88\x36\xb7\x1f\xf4\x7e\xbf\x9b\x89\x8b\x79\x3c\x9b\xea\x62\xef\x65\xb7\x99\x5b\x61\x74\x67\x94\x89\x15\xbb\xcf\xa7\xc7\xca\x8e\xd1\xe2\x90\x03\x1a\x5d\x8f\xef\xa0\xe1\x50\xd1\xca\xca\x51\xf8\xd2\x85\xdd\xde\xed\xfd\x38\xdd\xbf\xd7\x49\x12\x67\x4c\xb7\x91\x2b\x75\x7d\xd6\x44\xa3\xe6\x79\x9b\x9d\x73\xdb\x68\x13\xad\x42\xa1\x59\x59\xd3\x45\x44\x24\xc2\x8c\xa2\xb5\xa3\x70\x2d\x4e\xc5\x86\xf6\x9c\xce\xd3\x93\x4d\x90\xcc\xdf\x05\x98\x07\x1e\xfa\x6b\x98\x38\x17\x9d\xd2\x7c\x1e\x6e\x72\xb4\xd0\x66\x85\x05\x86\x2a\xd0\x8d\x1e\x4c\x33\xa1\x26\xbb\x0b\xc9\xed\x59\x80\x89\xb2\x97\x3d\x5b\xab\x89\x98\xd6\x89\xff\xfc\x9f\xff\xb3\x3b\x47\xea\xd3\x12\xf5\x7d\x5b\x60\x02\xcf\x33\x5f\x1d\x4d\x65\xb7\xd1\x1e\xab\xea\xaf\xd2\x5a\x7d\x96\x11\x37\xd4\x01\x85\xaa\xd0\x34\x60\xdc\x76\xb9\x6d\xf2\x01\x86\x2a\xe0\xe3\xa6\xe1\x71\x4d\xe0\xd0\x05\x42\x3e\xe1\xca\x41\x95\xd5\xce\x4b\x97\x2e\xe1\x85\x17\x5e\xb0\xfc\x50\x9c\x7d\x91\xe6\xc6\x18\xca\xbd\x32\x04\x01\x42\x64\x88\x16\x1e\x66\x83\xfe\xa3\x6c\xa3\x3b\x56\x9b\xe1\x54\x6e\x85\x33\x75\x5a\xa4\x6a\x9d\x32\xac\x09\x89\x25\x52\x18\x90\x52\xe5\x99\x27\x2a\x37\xf1\x93\x42\x98\xdb\x1a\x21\x91\x9f\x6d\x92\x28\xf3\x4b\x63\x25\x30\x52\x02\x43\x25\xb0\x97\x85\xb4\x9b\x46\xf4\x45\x1a\x89\x3b\xd3\x3e\xdd\x1d\x2f\x07\x3b\xe3\xe5\x60\x94\x75\x49\x4f\x9d\xfa\xce\x8d\xf1\xd2\xe2\x63\x8f\x3d\x86\xbf\xf8\x8b\xbf\x10\x87\x87\x87\xf8\x9b\xbf\xf9\x9b\xdf\x4a\x91\x3a\x46\x1a\xdd\xef\xee\x75\xdd\xf8\x38\x4e\x68\x3b\x46\xdb\x00\x30\x77\xcc\x34\xb5\xad\xea\x79\x5b\xa1\xe2\x0d\x37\x6e\xdc\x10\x5f\xfd\xea\x57\xdd\x76\xe9\xbf\x08\x40\xd4\x4f\x44\xff\xc2\x6e\xef\xe9\xcd\x83\xe8\xf7\xe2\x34\xb8\x80\x5c\x80\x5b\xda\x3e\x57\x0a\x0d\x00\x31\x4c\xbb\xbc\x27\x66\x4d\xd7\x6e\x00\x46\x28\x73\x6b\x7a\xe1\x0b\xc3\x27\x45\xd4\x1c\xea\x29\x05\x79\x27\xa3\xcd\xf5\x51\xe7\xc6\xf9\x87\xdd\x5f\xdf\x1f\xcc\xf6\xc7\xdd\xcc\xa5\x51\x6d\xb1\x94\xcf\x3e\xfb\x2c\x3a\x9d\x0e\xdf\x41\xd6\x7c\xbb\xbf\xf8\x8b\xbf\x40\xb7\xdb\xd5\x65\xeb\xb1\xc8\x57\x11\xc5\xbd\x99\x58\x79\xea\xde\xc2\x33\x8b\x89\xb8\x41\x4a\xc5\x5a\x52\xb9\xee\x09\xf3\xfb\x8e\x95\xbe\x9d\x80\x7e\x57\x62\x0a\xbb\x96\x8c\x6c\xc5\x91\x63\xbd\x9a\xf3\xf7\xd1\xf1\x6c\x9a\x4d\x97\x1f\x49\x3a\x73\xe2\xb0\x73\xed\xd4\x41\xf4\xeb\x83\x38\xdd\x1f\x47\xd2\x37\x76\x01\x40\x7e\xf7\xbb\xdf\xc5\xdf\xfe\xed\xdf\x8a\x07\x0f\x1e\xf0\xfe\x38\xee\x78\xf1\xca\x37\xdf\x21\x8b\x4d\x19\xdd\x42\xdc\x74\xa6\x3c\x22\x12\x7f\xfa\xa7\x7f\x8a\x4e\xa7\xc3\xd0\xad\xd2\x69\x8c\xb6\x17\x4a\x8a\x57\xc7\xe1\x5a\x71\x3e\x51\x91\x8e\x21\x64\xf3\xa1\x98\xaf\x0a\x8b\xca\xcb\x2e\x6d\x88\x1c\x5c\x70\x5a\xe7\x48\xdd\x35\xaf\x94\x16\xa1\x12\xd8\xb8\x8e\xba\xc6\xf2\xc8\xec\x6d\x65\xfa\x9c\x91\x4f\x3b\x72\x7f\x77\x61\xb6\x93\x91\xd4\x9b\x18\xf1\xdd\x72\x7d\x1a\x26\x77\x40\xac\x0a\x55\xc2\xbd\x8e\xc1\x54\x01\x18\x57\xa0\xfa\x40\x48\x15\x43\x6e\xd2\x2e\x9b\xee\xab\xd0\x76\x15\x51\x57\xd5\x75\x9c\x7a\xab\xfa\x40\xb7\xa7\x49\x4b\xa8\xcb\xd7\x54\x7f\x5d\x5f\xb7\x15\x2a\x56\xba\x2b\x57\xae\xe0\xfa\xf5\xeb\x88\xe3\xd8\xb2\x12\x39\xbe\x63\xe5\x61\x74\xfa\x0c\x30\x50\x18\x24\x2a\x1a\x3c\xcc\xd6\x16\xf6\xb3\x33\xd1\x58\x5e\xec\x4c\xd5\xe3\x41\xa2\xb6\x82\x54\x6d\x08\xa9\xd6\x49\x62\x40\x0a\x7d\xe4\x20\x85\x95\xa7\x8a\xba\x08\x28\x76\x2a\x65\xe3\x4f\xea\x27\x79\x5b\x8b\xa9\x9c\x42\x3b\x55\xa4\x26\x4a\x60\x5f\x0a\xb9\xb7\x10\x62\x67\xe9\x7e\x7a\x7b\xd6\x15\xbf\x49\x7a\xf4\xc9\xd1\x52\x70\xeb\x70\x2d\xd8\x4d\xfa\x62\xee\xdc\x18\x30\x46\xa8\x4d\xf2\x41\x10\x88\x20\x08\x64\x14\x45\xf2\xbb\xdf\xfd\xae\x00\x80\xff\xfa\x5f\xff\x2b\x9c\x8d\xc0\xda\xf6\xaf\x2f\xcd\x71\x14\x33\x1f\x00\xaf\x0b\xc7\x55\xfa\xea\xc6\x68\x1b\x5a\x3d\xae\xb5\xe6\xb7\x52\x4a\x79\x08\xc3\x50\x9f\xbb\xe3\xd2\xa4\x11\xd4\x1b\x07\xd1\xc6\xa9\x83\xe8\xf9\x85\x24\xb8\x24\x14\x06\xdc\xf7\xc2\x04\xce\xc3\x69\x2e\xda\x51\x4c\xc9\x08\x64\x80\xf1\x7a\xae\x80\x6a\x4b\x82\x25\x5b\xfc\xe6\xf4\x22\x36\xea\xcd\xc4\xf6\xe6\x41\xf7\xe5\xf3\x0f\x67\x9f\x7c\x70\x6a\xfc\xb1\x22\x1b\x64\x6b\x87\xdd\x4e\xa7\x83\x30\x0c\xbd\xfd\x17\xc7\x31\xe0\x58\x3d\x79\x9f\x74\x67\xd4\x7f\xec\x51\xf7\xdc\xa9\x83\xe8\xd5\x4e\x26\x36\xcd\xe8\xf2\xf8\x2f\x94\x56\x23\xdb\xed\xa1\x6c\xf7\xfc\x94\x92\x79\x4f\x65\xbf\x6f\x59\x56\x59\x0f\x59\xb2\xcd\xf4\x74\x99\x47\x51\xbc\x90\x04\x97\x4f\x0f\xa3\xaf\xde\x1f\x24\xb7\xc7\x51\x32\x2e\xde\x43\xef\x36\xac\x8f\x07\x40\xb7\xdb\x15\xae\xac\xfb\x5f\x15\x7c\x87\x2c\xba\xa1\x4e\xab\xaf\x15\x9c\x44\x84\xd5\xd5\x55\xc0\xf3\xd1\xb8\x16\x18\x48\x8a\x96\x26\xe1\xc9\x50\x96\xfe\x2d\xdc\x04\x58\x7e\x88\x12\xb4\x18\xba\x64\x54\xa9\x18\x90\xe0\x69\xf2\xc0\x9c\x9b\x8a\xff\xf8\x14\x94\x99\x43\x64\xcf\x5d\xb3\x0b\x39\x17\xb6\xe5\x87\xa0\x48\xc9\x51\x94\xed\x3c\x8a\xd3\x87\x19\x99\x29\x22\xcb\xa7\x05\x8c\x11\x1f\x33\xb4\x01\x12\x3a\x8e\xa7\xaf\xd2\xd6\x9a\x2c\x23\x55\x53\x26\x75\xa1\xc9\xf2\x50\x05\xc0\x7c\x6d\x77\xf3\xbb\xe5\xba\xed\xf1\xb5\xb7\xaa\x2f\x7c\x16\x97\xaa\x76\xf8\xda\xe0\xd6\xe9\x5e\xf3\x50\xd5\x16\xb7\x3d\x3c\xfd\x5c\x59\xcf\x3e\xfb\xac\xd8\xdc\xdc\xc4\xe2\xe2\x22\x16\x16\x16\x84\xe3\xc3\x32\x07\x58\xb4\xd3\x5f\x90\xc8\xb8\x3f\x94\x2b\xfd\xfd\xec\x4c\x77\xac\x2e\x44\xe3\xec\x89\x68\xa2\x2e\x88\x54\x9d\x11\x19\xd6\xe0\x9c\xf5\x42\xee\x7b\xba\x52\xc3\x42\xfb\x00\x11\x04\x1b\x67\x82\x3f\x53\x79\x43\x06\x4a\xd2\x8a\x80\x3a\x83\x19\x92\xce\x44\x8d\xbb\x87\x72\x5f\x86\x74\x67\x61\x3f\xfb\x74\x69\x57\xfc\x6a\xba\x20\x3e\x39\x5a\x14\x9f\x1e\x9c\x08\x77\x65\x88\x04\xce\x5e\x47\x54\x6c\x21\xa0\xfb\x44\xf3\x15\x22\x92\x6f\xbd\xf5\x16\xfe\xf1\x1f\xff\x51\x1c\x1e\x1e\xb6\xa5\xcd\xe3\x28\x69\x75\xb4\xd4\x26\x7d\x55\xda\x36\x74\x5d\x05\xa8\xdd\x74\x55\xe0\xbb\x89\x2e\xab\xfa\xe3\xb7\x01\x58\x78\xe6\x99\x67\xc4\xf6\xf6\xb6\xfb\xdc\xb2\xb6\xc4\x33\xd1\x7f\xec\x51\xf7\xf2\xca\x24\xbc\x1a\x4a\x5a\x29\xad\x1f\xf3\x02\x17\xb0\x79\xf8\x9c\x05\xc1\x44\xd9\xcb\x7c\xb5\x2e\xab\x9d\x70\x2d\x7d\x95\x29\xa7\xae\x05\xdd\xb2\xe0\x2b\x42\x20\xb1\xb2\x3c\x09\x9f\x3e\xbb\x1f\x3f\x77\x7b\x65\xba\x73\x10\x67\x1c\x5c\x73\xf9\x29\x2f\x5c\xb8\x80\xc9\x64\x22\x7e\xf6\xb3\x9f\x79\xbf\x9d\xe3\x5f\x66\x80\x5c\x6f\x16\x2c\x6d\x3d\x8a\x2e\xf6\x13\x71\x91\x14\x62\xd3\x6e\xa6\x84\xdb\x8b\x48\x14\x93\x57\xb6\x85\xc9\x72\xc8\x75\x7b\x8d\x47\x40\x97\x5b\xf6\x79\x39\x2b\xe1\x71\xa6\x61\x9a\x4a\x94\xd1\xe6\x89\x71\xe7\xca\xc9\x51\x74\x73\xbf\x97\xee\x1d\x45\x5e\x5f\x17\x00\x90\xaf\xbc\xf2\x0a\x7e\xf8\xc3\x1f\x8a\x9d\x9d\x1d\xa0\x1d\x4d\x56\xf1\x62\x9d\x5f\x02\xf3\x5b\xfe\xfb\x42\x93\xf6\x5a\x97\x4f\x33\x57\x6b\x73\x2b\x00\xe5\x07\x54\x08\x3b\x19\xf5\x07\x49\xb0\x11\x4a\x1a\xd8\x60\x82\xf1\x4d\xfd\x31\x8b\x3e\xe5\xf4\xcd\xfc\x92\x4c\x5e\x63\xe6\x72\xd0\x86\x05\x6e\x8a\x0f\xa7\x1d\x9b\xac\xb9\x3e\xb3\x6c\x6e\x0e\xf4\x9a\x60\x81\x2a\x52\xc8\x84\x4a\xf7\x7b\xe9\x9d\x49\x47\x8e\x15\x21\x01\x41\x3b\xe6\x5a\x3b\xe5\x56\xf8\xb5\xb8\xc1\x27\x74\xf9\x7d\x55\xa8\xd2\xfe\x79\xb9\xc7\xd1\x46\x9b\xf2\xd7\x99\xb1\xeb\x88\xd0\x8d\xab\x02\x36\x3e\xe1\x51\xd5\xde\x36\x40\xa2\xaa\xdc\x36\xef\x50\xd5\x8e\xaa\x36\xd7\x59\x74\xea\xb4\x75\xab\x5d\xcf\x3c\xf3\x8c\x78\xf2\xc9\x27\xbd\x3b\x4f\xeb\x71\x54\x00\x99\x90\x88\x42\x22\x0a\x3b\x47\xb2\xdf\x1f\x66\x1b\xfd\x47\xd9\xc5\x78\x98\x7d\xb5\x3b\x96\x97\xc2\x44\x9d\x11\x19\x36\x49\x61\x09\x0a\x31\xa0\x42\xcd\xf1\xe6\x2c\x9d\x5e\xb3\xbc\xed\x8a\xce\x7d\x06\x4c\x70\xf6\x8f\xc8\xb9\x23\x42\x40\x85\x04\xc4\xa4\x68\x89\x24\xd6\x83\x4c\x9d\x09\x13\x75\xa5\x3b\x96\xbb\xfd\x47\x74\x7b\x21\x16\x1f\xf7\xf7\xe5\xbf\x1d\x2d\x89\x8f\x0f\xd7\x82\xbb\xb3\x88\x26\x10\x06\xc0\x68\xcd\x6d\xce\x24\xbd\xb5\xb5\x85\x57\x5e\x79\x45\x26\x49\x22\x7e\xf9\xcb\x5f\x62\x67\x67\xa7\x8d\x35\xc2\x17\x9a\x00\xbf\x4b\x9b\xbe\xef\x77\x1c\xe0\xe0\xa6\xaf\xab\xbf\x0a\x70\x03\xf3\x74\xe6\x2b\xc3\x57\x56\x15\x5f\x39\x8e\x40\x71\xdb\xa2\xf7\x0e\x72\x15\x55\x3e\x35\x12\x9e\x38\xec\xac\x6d\x8c\xa2\x67\x7b\x33\x71\x86\x14\x62\x00\x6c\x8e\xc2\xf6\x3f\xe1\xc1\xb2\xc2\xf3\x79\x0d\xbd\x47\x0b\xa3\x57\x23\xa8\x0b\x65\x54\xe9\x0d\x47\x99\x58\x50\x50\x50\x44\xbc\x08\xc3\xfb\x15\x19\x37\x85\xb0\x9b\x8a\xcd\x13\x87\x9d\x67\x36\x87\xd1\x3b\xa3\xee\xd1\x48\x01\x09\xc8\x80\x16\xd3\xc7\x8b\x8b\x8b\x58\x5d\x5d\x35\xfd\x18\x45\x91\x78\xf9\xe5\x97\x79\x7f\x69\x07\x7a\xd3\x17\xa4\x10\xf5\x66\x62\x65\x6d\xdc\x79\xa2\x23\x69\x83\x83\xad\xb2\x41\xa5\x0c\x25\xed\x7c\xab\x57\x08\x39\x8a\x7a\x9e\xb6\xec\xb0\x12\xb4\x30\xf8\xc7\xc6\xbb\x33\x59\x61\x6e\xf4\x2c\x02\x71\x50\x04\xe4\x67\x3f\x01\xfd\x7e\x22\xce\xad\x8d\xc3\xc7\x17\x92\xe0\x93\xa3\x48\x8e\x95\x52\xda\x7f\x49\x7f\x73\x09\x00\x1b\x1b\x1b\xa2\xdb\xed\xfa\x68\x96\x87\x26\x43\xc8\xdc\x58\x3c\xce\xe9\xd0\xbf\x2d\x42\xe7\x96\x16\xf3\x1b\x4a\x84\x0b\x49\xd0\x8f\x13\xb1\x2e\x24\x45\x3e\x26\xaa\x7f\x8b\xbd\x88\x0c\x88\xb1\xcd\x5a\xee\x07\x9c\xb7\xb9\x98\x68\x56\x86\x89\xe6\xd6\x18\x96\xdd\x94\x5b\x31\xcd\xa4\x9f\x2b\x40\xce\x02\x35\xda\xeb\xcf\xee\xcc\x82\xf2\x6c\x22\xbe\xd9\x1c\xf7\x6b\x21\x22\x99\x24\x89\x64\x07\x53\x35\xf5\xa9\x8f\xa1\xb5\x15\xcc\xbe\x72\xbe\x0c\xfa\xd5\xf9\xea\xac\x10\x6d\x89\xcf\xcb\xf8\x30\x4f\xe0\x55\x02\xbe\xa9\xfd\x4d\xa0\xa9\x4a\x10\xb8\x6d\x69\x2b\x78\x78\x1d\xbc\x8f\xab\xc0\x56\xdd\x38\x32\xed\xba\x76\xed\x9a\x78\xea\xa9\xa7\x8c\x95\x45\xfb\xb5\x14\x60\x65\xee\x14\xd9\x68\x2c\x07\xbd\x61\xb6\xd9\x1f\xca\x4b\xfd\xfd\xec\xab\xd1\x58\x5e\x09\x13\xb5\x4d\x12\xeb\xa4\xd0\x27\x18\xc7\x5a\x98\x43\xd7\xac\x66\xd8\x80\xdf\xd6\xd6\xc8\x6c\xdc\xe5\x9e\xd7\x65\x02\xb9\xe3\x4e\x6b\x87\x5a\x54\x00\x04\x84\x50\x6a\x00\x45\x83\x40\x62\x3d\x48\xd5\xb9\xce\x24\x7b\xba\x7b\x28\xaf\xf6\x1f\x89\x5f\xf4\x0e\xe4\xcf\x8f\x16\xc5\x47\xe3\x65\x71\x77\x16\x8b\x91\x0a\x4a\x00\x83\x52\xdb\x35\x7d\x74\xfe\xfc\x79\x00\x40\x14\x45\xf2\xdd\x77\xdf\x15\xf7\xee\xdd\xf3\x09\xe5\x3a\xe1\xcb\xd3\x34\x31\x51\xdf\x75\x5d\xf0\x32\xde\x9a\x74\x6e\x9a\xa6\xf1\x5e\x95\xc7\x2d\xbb\x2a\x4d\x1b\xda\x6f\xdb\x16\xf3\x0e\xdc\x31\x17\x9a\x46\x55\xee\x16\xb0\xf5\x28\xba\xb0\x7c\x14\x3e\x1d\x4a\x5a\x32\x53\xf1\x9a\xde\xf8\xd4\xbc\xde\x30\x14\x5a\xd1\x2c\x89\x52\x2b\x9e\xc4\x19\x31\x0f\x66\xb3\xd1\xe2\xb1\x63\xa9\x01\x60\xf9\x75\x70\xc5\x57\xb1\xb2\x08\x04\x21\x55\x7f\x21\x11\xdb\xa7\x87\xdd\x8b\x9f\xac\x1f\xdd\xce\xf2\xd5\x45\x11\x4a\x3a\x34\xfd\x72\xf2\xe4\x49\x5c\xbe\x7c\x59\xdc\xba\x75\x0b\xcf\x3c\xf3\x0c\x9e\x78\xe2\x09\x17\xec\x72\x30\x17\x75\x53\xd1\x5f\x1b\x77\x36\x17\x92\x60\x5b\x48\xea\x7b\x16\x7b\xf8\xa6\x17\xd8\x75\xb9\x03\xae\xb1\x34\x99\x3c\x25\x14\x41\x51\x84\xbb\xc7\x99\x7e\x60\x8d\x58\x93\xc6\x06\x2d\x1c\x38\x46\x99\x58\x5f\x9c\x06\x67\x16\x12\xb1\x72\x5f\xa9\x3d\x22\x4a\x60\x4f\x19\xf9\xe8\xab\x4a\x59\x6c\x3b\x96\x4c\x68\x02\x2e\x55\xcc\xbb\xae\xd2\x5a\x20\xe3\xae\x61\x0f\xb3\x20\x5e\x9c\x04\x2b\xdd\x4c\xac\x90\x5e\xfe\x05\x6e\xbe\x62\x96\x0f\x2a\x3b\xdf\xa0\x62\x38\x96\x0f\x68\x84\x9d\xff\xc7\x37\xa1\xe3\x5f\xd0\xfe\x78\xdc\x04\x69\xf4\x45\x58\xfb\x07\x70\x2e\xed\xd2\x96\x02\x94\x80\x9c\x84\x72\xf8\xb0\x9f\xee\x64\x42\x71\xc7\x43\xdf\x16\xff\x00\x80\x34\x4d\xf1\xf3\x9f\xff\xbc\x2d\xf8\x68\x62\xbc\x55\x79\x74\x68\xab\xbd\xf9\xd2\xfb\xee\x79\x39\xbc\x2c\x1f\xad\xb8\x65\xfb\x80\x8f\x2f\x7f\x55\x59\x55\xc1\xd5\x3a\xab\x98\xb3\x0f\xbc\xf1\x3c\x55\x83\xcb\x7d\xcf\x36\xed\xae\x03\x2f\xde\x78\x21\x04\x9e\x7e\xfa\x69\x01\xb0\xf2\xa2\x00\x00\x00\x20\x00\x49\x44\x41\x54\x00\x57\xaf\x5e\x15\x7a\x8e\x1c\xb0\x97\x95\x02\xfa\xf0\x38\x15\x86\x33\xc4\xbd\x61\xb6\x31\xd8\x00\x21\x40\xde\xbf\xcb\x2e\x2f\x3c\xcc\xae\x77\xc7\xf2\x6a\x30\x53\xdb\x42\xe6\xd3\x41\xc8\xfd\x5c\x6c\x40\xa2\xc9\x79\x4e\xe3\x2c\x81\x89\x31\x45\x17\xf1\xe4\x30\x39\xae\xf8\xf2\x48\xcb\xe4\x0e\xcb\xfa\xc2\x07\x28\x8a\x43\xf3\x96\x40\x58\xea\x24\x6a\x3d\x98\x65\x17\xe3\x43\x79\x75\xda\x17\xbf\x38\x5c\x0d\xfe\xed\x70\x35\xf8\xe0\x68\x51\xec\xcc\xba\x34\x86\xa0\x84\xf5\x43\xea\x68\xe5\xf2\xfc\xf9\xf3\x42\x29\x25\xdf\x7b\xef\x3d\x51\x9c\xb0\xde\x04\x74\xeb\xc6\x49\x9b\xd0\x06\xdc\xfa\xca\x6c\x0b\xb6\xdb\xd4\xd5\xb6\x9c\x36\xbc\x44\xe7\xad\xe2\xed\xb5\xef\xf1\x95\xaf\x7c\x45\x1f\xa4\xab\x9f\xb9\x16\x97\xa8\x9b\x52\x7f\x63\x14\x3d\x59\x58\x5b\x22\x4e\x27\xc6\xa9\x14\xf3\x40\x85\x0b\x64\xcb\xf5\xc3\x9d\xea\xb1\xa4\xb4\xce\x5c\x02\x17\x5e\x47\x61\xb8\x28\x2d\x30\xd6\xfe\x5e\x30\x9a\x32\x11\xc2\x28\x13\xeb\x27\xc6\x9d\xa7\x16\x92\xe0\x5f\x87\xdd\x6c\x0c\x7b\xaa\xc8\x8c\xf1\xd5\xd5\x55\x5c\xbd\x7a\x55\xae\xae\xae\xe2\xca\x95\x2b\x6e\x5f\x99\x71\xab\xfb\xa4\x9f\x04\x4b\x27\x47\x9d\xb3\xf1\x4c\x6c\x09\x50\xa8\xdb\x64\xb5\x8f\xbf\x2b\xca\xf7\x57\x2c\xde\x74\x95\x2a\x24\xd7\xbc\x26\xcf\xde\xb3\xec\x5b\xf3\xfe\x45\x5f\x69\x58\xc7\x67\x26\x38\x28\xd2\xdd\x12\x48\x5a\x5a\x48\x82\xad\xc1\x34\xdc\xe8\x48\x71\x3b\x0d\x14\xb7\xaa\x71\xc5\x02\x8f\x3f\xfe\x38\x46\xa3\x91\x78\xf8\xf0\x21\x6a\x42\x93\x82\x68\x3d\xaf\x72\xce\x75\x85\xda\x9c\x26\xd8\x54\x79\x18\x86\xe2\xc2\x85\x0b\x60\x1a\xa2\xfe\x35\x04\x4d\x44\xa2\x23\x29\x5a\x9c\x86\xab\x61\x46\x4b\xdc\xc4\xa5\x09\xa8\x04\x14\x65\xa7\x96\xf1\xdc\x2c\xcd\xcd\x30\x40\xc9\xa4\x35\xc1\x9a\x4b\x13\xca\xa9\x21\x87\xf2\xb5\xf5\x85\x4f\xfe\xcd\x15\x60\x9b\xc4\x15\x41\x1e\x75\xb2\xbd\x83\x6e\xfa\x48\x01\x29\xa8\xdc\xb3\x05\xb0\x1d\x72\x5b\x4c\x15\xf9\x18\x47\xd5\xb7\x68\x93\xb7\xe9\xf9\x71\xac\x0a\x6d\xef\x7d\x42\xfe\xcb\xb6\xc1\x57\x57\x15\x2d\xd6\x31\xf5\xaa\xbe\x6b\x3b\x60\xda\x94\xdd\xf4\xac\x36\x3e\x0c\x43\xf1\x95\xaf\x7c\x05\x2f\xbc\xf0\x82\x6e\x27\x07\x8a\xd6\x06\x5e\x04\x84\x22\x55\x71\x74\x24\x97\xfa\xfb\x72\x7b\xe5\xde\xec\xb9\xf8\x40\xbe\x14\x26\xea\x12\x29\xac\x41\x21\x2e\xb1\x44\xa9\xa1\x71\x33\xb3\xd1\x4c\x8d\x59\xb3\xdc\x46\x1d\x40\x39\xe6\x8a\xac\xee\xf4\x37\x80\x32\x2f\xe3\x90\x25\xce\xb7\x13\x1b\x60\xc4\xe6\xe9\xf3\x8a\x14\x08\x14\x07\x0a\x5b\x62\x9a\x03\x98\x68\x2c\x2f\xf7\x86\xd9\xbf\x1e\xac\x87\xef\x1c\xae\x06\x9f\x4c\xfb\x62\x2f\xeb\xd0\x04\x84\xa4\xe0\x23\x5a\x29\x28\x8a\x50\x72\x7b\x7b\x5b\x00\x90\x8b\x8b\x8b\x18\x8d\x46\xe2\x8b\x2f\xbe\x68\xe2\x5d\xae\x40\x6f\x43\x87\x4d\x20\xc0\x97\x8e\x87\x36\x74\xdf\x44\xdf\x4d\xf9\xdc\xeb\x26\x10\xe7\xa6\x69\x2a\x6f\xee\xfa\xca\x95\x2b\x38\x71\xe2\x84\x65\x19\x44\x09\xb6\x43\x00\x51\x3f\x09\x96\x96\x26\xe1\x85\x40\xd2\x00\x0a\xa2\x04\x09\x30\x3e\x16\xfa\xc7\x65\xbb\xca\x15\xd0\x04\xc6\x92\xed\xe3\x5b\xac\x03\xed\x1c\x70\xc3\x29\xd2\x36\x62\xd8\xc2\x9c\x2b\xa9\x81\x44\x7f\x71\x1a\x5c\xda\x1c\x46\x1b\xc3\x93\x47\xfb\xc8\xfd\x17\xc3\xc2\x05\xc0\xa2\x9b\x95\x95\x15\xb1\xb2\xb2\xe2\xe9\x4a\xd3\x57\x7a\x2f\x9b\xa8\x9b\xd2\xd2\xf2\x24\xdc\xca\x7d\x7d\xec\x36\xf9\x96\x79\x5b\x16\x23\xc0\x7e\x37\x93\x9e\xac\x7e\xd3\xf9\x74\xff\xb0\xe4\xb0\xfb\xbf\xe4\x03\x65\xb5\x7c\xab\x91\x92\x6f\x08\x45\x51\x6f\x16\x6c\x2c\x4d\xc2\x8d\xde\x4c\xf4\x87\x22\x1d\x3b\xfe\x76\xfa\x5d\xe5\xe5\xcb\x97\xc5\xbd\x7b\xf7\x64\x03\x70\xf1\x29\x7f\x55\xf1\xb2\xca\x39\xb7\x8d\x86\x50\x65\x85\x11\x00\x64\xb7\xdb\xc5\xef\xfd\xde\xef\x09\xe6\x88\x6a\x84\x17\x9f\x97\x0f\x24\x45\xbd\x99\x58\x0a\x25\xf5\x8b\xbe\xb1\xbe\x96\x72\x3e\x86\xed\x94\xc5\xcf\x2b\x2a\xcf\xa4\xe0\xd6\x94\x39\x07\x5f\xfd\x91\xcc\x3d\xb3\xe8\x00\xe6\x7f\x57\xab\x04\x8b\x35\x60\xa7\xb0\xfa\x00\x0a\x19\xa9\xf4\x30\x92\x7b\x47\x1d\x6b\xb7\x5c\xd7\xda\xf2\xbf\x32\xb4\xd1\xf4\xda\x30\x61\x5d\x96\x9b\xfe\xcb\x5a\x78\xea\xb4\xc2\xba\xf2\x5d\x0b\xc5\x71\x2c\x19\xc7\x79\x47\xf7\xba\xa9\x0c\x17\x78\x55\xe5\xad\x13\x24\x3c\x9f\xdb\x47\x26\x5f\x14\x45\xe2\xfc\xf9\xf3\x78\xed\xb5\xd7\xcc\xc0\xf7\xec\xfb\x20\x94\x52\x11\x29\x44\x9d\x44\x0d\xe2\xa1\xdc\x58\xba\x9f\x5e\x59\x7c\x90\xbd\xd6\x99\xc8\x1b\x42\x62\x0b\x0a\x11\x57\x38\x6d\x5c\xce\x1d\xfb\xc0\xd4\x28\xa6\xdd\x32\xb1\x51\x35\x45\x6a\x5d\xb3\x32\xca\xe5\x99\xe5\x68\x29\xb7\x35\xb0\xc1\x3e\x98\x66\x69\x1c\xd8\xf2\x3a\x23\x92\x6a\xb3\x33\xc5\x4a\x90\x66\xdb\xd1\x58\x5e\xec\x0d\x83\x1f\x0d\x4f\x86\xef\x8d\x57\x82\xdb\x49\x4c\xc3\xc2\xff\x25\x61\x7d\x2b\x51\x80\x98\xed\xed\x6d\x6c\x6f\x6f\xe3\xde\xbd\x7b\xf2\x87\x3f\xfc\xa1\xb8\x7f\xff\xbe\xe7\xb3\x7c\x29\xab\x47\x55\xfe\xe3\x82\x9d\x36\xf7\x75\xed\xaa\xb3\x6a\xb6\x01\x22\x55\xcf\x7d\xe3\xd7\x2d\xcf\x67\x25\xb4\xe2\x9d\x65\xfa\xf9\x39\x3c\x0a\xa1\x50\x88\x56\xc7\x9d\xb5\x78\x26\xce\x09\x85\x88\x2f\xc9\x35\xc1\xdc\xdb\x4b\x81\xf3\x82\x61\xe8\xcb\x67\xfa\xe3\xae\x03\x96\x90\x37\xa4\xed\xec\x92\xee\xd0\x73\x4e\xc2\xae\xe0\xce\x69\x98\x14\xe2\x78\x26\xce\x6c\x0d\xbb\xdb\x1f\x9d\x3c\xfa\x04\x85\x3f\x19\x30\xb7\xf0\xa4\xaa\xcf\x2d\x8b\xa9\xf6\xef\x0c\x25\x0d\xa2\x54\xac\x09\x50\x3c\x07\xb0\x8a\x77\x28\xde\x6e\xbe\x54\xb7\xef\xe6\xf4\xef\x62\x04\x2a\xe7\xbd\xad\x22\xd8\x98\x54\xba\xb6\x7c\x35\xad\xd2\x8d\x80\xe6\x25\xf9\x41\x8e\xc5\x17\x10\x51\x46\x2b\x0b\x89\x38\xdd\x9b\x89\xc1\x41\x4c\xfb\x60\x8b\x03\x58\x5f\xf0\xdd\x73\xc1\xe2\xeb\xc6\x5e\x1d\xa0\x96\x40\x39\x55\xd4\x76\xd0\xd4\x0d\xd4\x2a\xe6\x2d\x9c\xeb\x92\x11\x83\xc2\x50\x52\xdc\x9b\x89\xa5\x40\xe5\xc0\x85\x9b\xa4\x01\x58\x44\xac\xca\x88\xd2\xb1\xd6\x68\x81\xca\x32\x81\x95\xbf\xfc\x79\x09\x4d\x34\x51\xcc\xfb\xb6\xb8\x9f\x56\x37\x0a\xa6\x51\x25\xa8\x2f\x59\x7c\x2a\xd4\x64\xd4\x4d\x77\x67\x81\xe4\x80\x45\xfb\xb8\xcc\xed\x51\x91\xa6\xa9\x8b\x40\x7f\x1b\x2d\xee\xb7\xd5\x12\x7d\x40\xa1\x0d\x61\xb5\x01\x2d\x2e\x53\xad\xcb\x53\x05\x58\x7c\xf5\x57\xb5\x87\xc7\xfb\xde\xb5\xea\x9d\xaa\xee\x75\x5c\xd5\xfb\xf1\xf6\xb8\xf5\xb9\xed\xaa\x64\x6c\x9d\x4e\x07\xe7\xce\x9d\xc3\xeb\xaf\xbf\xce\xb7\x04\xd7\x7f\x9a\x41\x86\x04\x8a\x84\x44\x14\x1d\xa9\x95\xc5\x07\xe9\xf6\xf2\xdd\xf4\xe5\xde\x41\xf6\x46\x30\xc3\x15\x80\x59\x58\x34\xb3\x22\x9b\x49\xcf\x0b\x0b\x47\xad\x33\x4c\xbe\x74\x5a\x24\x26\x08\xc0\xc6\x98\x2f\x98\x95\x1d\xba\x2c\xcb\x19\x8d\x4a\xc1\xe2\xa8\xd6\xa5\x32\x50\x66\x21\x42\x1c\x64\xd8\x16\x47\x6a\x23\x9c\xa5\x97\xba\x87\xf2\x07\x07\x27\xc3\xff\xb9\x7f\x3a\xfc\x60\xda\x13\xfb\x2a\x30\x4c\x99\x9f\xfd\x65\x78\xd5\xa9\x53\xa7\xc4\xd7\xbf\xfe\x75\xf9\xfd\xef\x7f\x1f\x8f\x1e\x3d\x72\x9b\x5a\x67\x89\x70\x43\x93\x65\xe2\x38\xf4\xd6\xa6\x8c\xba\xb6\xf0\x67\xbe\xb1\x5a\x37\x36\x81\x79\x5a\x06\xe6\xfb\xe2\x38\xe3\x05\x00\xb0\xbc\xbc\x8c\x30\x34\x9e\x07\xb6\x80\x2e\x68\x38\x94\x14\xad\x8f\xc3\xcd\x6e\x46\x9b\x54\xd4\xad\xf9\x33\x5f\x78\x61\x8b\x53\x94\x56\x41\xc0\x58\x0d\x94\xb6\xda\xc1\x5e\x4d\x9a\x97\x69\x50\x08\xca\x22\xe6\x85\xb7\x49\xaf\x69\x8e\x3d\x2b\x72\x41\x3b\x0b\x10\x94\x08\x25\x0d\x96\x8f\xc2\xc7\x8b\x29\xae\x48\x41\x4d\x0a\x67\xf8\x94\xd7\xc1\xcf\x35\x62\x7f\x00\x93\x7d\xc5\xc6\xab\x61\x94\x51\xbf\x23\x69\x09\xf9\x1e\x49\xd6\xd4\x15\x00\xa6\xa4\xb3\x31\x52\x76\x89\xf3\x3e\xe5\x5e\x2d\xda\xaf\xcc\x9d\xb5\x00\xf7\x5b\xd1\x63\xd9\x28\xf2\xa5\x7c\xe3\xd6\x18\x6e\xbc\x2a\x5b\x05\x08\x49\xfd\x6e\x2a\x56\xa2\x54\xe4\x5b\x28\xe4\x96\x24\xfe\xcd\x8b\xef\x61\x32\xb6\x91\x15\x4d\x4a\xae\x00\x20\x7d\x02\x80\x33\x59\xfe\xcb\x83\x74\xd2\xd6\xc5\x5b\xd7\xaa\xdc\x5a\x5c\x10\x20\x42\x49\x71\x3c\x0b\x56\x84\xa4\x38\x67\xb6\xf3\x7c\x54\xa9\xd2\x22\x62\x9c\x03\x75\x5a\xa0\xfc\x38\x96\xb9\xba\xbc\x54\xc8\x09\x3e\x37\x7b\xd9\x0d\xce\xfd\x65\xca\xc4\x96\x19\x8e\x17\x53\xcd\xab\xa1\x00\x39\x0b\xd4\xf8\x51\x9c\xee\x14\x8e\xb9\xa9\x52\x4a\x7a\x40\x8b\xd1\x18\x1e\x3d\x7a\x84\xbf\xfb\xbb\xbf\x6b\xd2\x66\xaa\xfa\xde\x97\xc7\x97\x96\x97\x53\x97\xaf\x8d\x96\x56\xd7\x96\x3a\x61\x5e\x07\x70\xab\x9e\x35\x85\x2a\x60\x55\x57\x46\x55\xdf\xba\xcc\xa5\x2e\x8f\xfb\x8c\x83\xd1\xa6\xfa\xab\x82\x0c\x82\x00\xdb\xdb\xdb\x78\xfd\xf5\xd7\x0b\x66\x5e\xae\x12\x62\x7f\x11\x01\x31\x49\xd5\xef\x1d\xc8\x8d\x13\xb7\x93\x67\xd6\x3f\x9b\x7d\x6f\x61\x3f\xfb\xf3\x70\x86\x67\xa8\x00\x2d\x5a\x63\xe2\x84\xae\x99\x1a\x7f\xe4\x3e\x75\x43\x3e\xa4\x54\x69\x0c\xc9\xdb\xc5\x7c\xc2\x7c\x19\xd4\x1c\x26\xc9\x7f\xed\x3c\xca\x2d\x82\xd8\xb8\xa4\xf9\xa1\x46\x0a\xfd\x60\x86\xcb\xbd\x03\xf9\xbf\xad\x7e\x3e\xfb\x3f\x4e\xfe\x3a\x79\x69\x61\x3f\xdb\xa0\x4c\xf5\x09\x88\xa1\x94\x5e\xce\x6d\x76\x67\x45\xce\x6b\x70\xe2\xc4\x09\xf1\xed\x6f\x7f\x5b\xef\xa5\x71\x9c\xd0\xe6\x1b\xb6\x19\x9f\xbe\xeb\x3a\xab\x87\x9b\x66\x4e\xf1\x63\x7f\x2e\x90\xe7\xe5\x55\x01\xf9\xaa\xf6\xfa\xda\x57\xcb\xcb\xf9\xf5\x5b\x6f\xbd\x85\x93\x27\x4f\xfa\xac\x2e\x86\x8e\x49\x21\x5a\x19\x77\xce\x06\xb9\x75\x5d\x28\x43\x92\xe5\xc9\xc4\xf9\xff\x05\x54\xe0\xd6\x15\xc0\x43\x5b\x64\xe8\x59\xd9\x04\xc5\x80\x0e\xe6\xca\xa0\x82\xe7\x5b\xca\xb1\x91\x03\x85\xb4\x2e\x1e\xf0\x32\x84\x42\x14\xcf\x82\x8d\x38\x15\x31\x98\xc5\x45\xff\x31\xcb\x68\x9e\x5c\xcd\x8d\x13\x23\xff\x88\x28\x0c\x25\x45\x51\x2a\xfa\xa1\xa4\xbe\x50\x14\x2a\x4b\xf6\x99\x06\x59\xc6\x25\x47\x87\x36\xf7\xaa\xb0\x94\x9a\xf7\x63\x69\x4a\xdf\x14\x67\x43\x57\xd6\x67\x34\x37\x66\x4b\x8b\xa9\x4e\xaa\x4c\xff\x98\x34\x61\x28\x29\x0e\x25\x45\x98\x07\x2d\x16\xed\x14\xfb\xdc\x54\xd1\x63\x15\x80\x46\xc5\xbd\x17\x78\xf8\x08\xbf\x2a\x3d\x8f\x73\x35\x6b\x00\xe0\xfe\x1c\x86\x29\x17\xd7\x22\x90\x14\xc5\x33\xd1\x8f\x33\x5a\x09\x14\x45\x16\x42\x66\x15\x14\xba\x5a\xc9\x94\x1d\xad\x4f\x7f\x62\x8d\xc8\x2d\x8d\x0f\x60\x00\xc7\x66\x89\xce\xa9\x0e\x73\xe5\x95\xef\x60\xbf\xb0\x4b\x8e\x92\x90\x4e\x3a\x72\xff\xa0\x2b\x87\x99\x40\x02\xca\xf7\x9e\x60\x7e\x2d\x52\xef\x43\xd1\xe0\xdf\xe2\xd3\x7c\x9a\x18\xa8\x4f\x78\x56\x95\xd7\xf6\x59\x55\x1d\x6e\x5e\xdf\x7d\x1b\x4d\xf6\x38\xf9\x8f\xa3\xbd\xd6\xd5\x5d\x55\x67\x9b\xfe\x6b\xd3\xae\x36\x69\xbd\x7d\x72\xe9\xd2\x25\xbc\xfe\xfa\xeb\xfa\xd6\x30\x36\x94\x4c\x3f\x02\x10\x8b\x14\xfd\xa5\xfb\xe9\xb9\x8d\x4f\x92\x37\x56\xbe\x48\xff\xcf\xee\x38\xfb\x8e\x90\xd8\x9c\x6f\x76\xa9\x95\x99\x18\x66\x69\xb1\xf9\xa9\x63\x2f\xf7\x94\xe3\x39\x8f\xbd\x1c\x8b\x56\x51\x1e\x83\xb6\x11\x0a\xce\x48\x23\x8b\x6d\x7a\x5e\xc1\x1d\xab\x10\x42\x62\x3d\x3a\x52\xbf\xb7\x7c\x3f\xfb\x7f\x36\x7f\x95\xfc\xd1\xea\xdd\x74\x4b\x64\xe8\x03\x14\xa3\xd8\x23\x04\xcc\x42\x55\xf0\x1a\x0c\x06\x03\xf1\x67\x7f\xf6\x67\xf3\x75\xd4\x87\x36\x96\x18\x5f\x68\x0b\xbc\x9b\xd2\x57\xd1\x4c\x15\xe0\x6f\x2a\xaf\x0a\xdc\x34\xd5\xdd\x94\xc6\x8d\x73\x05\x97\x01\x2e\x42\x51\xd4\x95\x62\x85\x14\x45\x00\x5b\xf1\xe3\x5a\xc9\x75\x69\x8e\x74\x26\xf7\x86\xca\xc4\x04\x72\x00\xb9\x1d\x8c\x40\x66\xc6\x3f\x28\x16\x5f\xc4\x11\xaf\xd7\xca\x4b\x20\x45\x61\x37\xc3\x5a\x3c\x0b\xfa\xe4\x80\x64\x5f\x5f\x38\xf2\x46\xcb\x3f\x7d\x2d\x3a\x19\x45\x71\x2a\xfa\x81\xa4\x3e\x29\x08\x63\x05\xd1\xb5\xb2\x65\xaf\xe4\xfc\x1a\x99\xa7\xb8\xf2\x5e\xb6\xdf\x3b\x92\xbd\x0a\x45\x45\x60\x7d\x61\xd9\x05\x50\x02\x21\xa1\x10\x85\x19\xf5\x03\x49\x1a\xc8\x55\xf5\x05\x5e\x7a\xe9\x25\xf1\xf4\xd3\x4f\xbb\xd1\x6d\xe4\x93\x37\xde\x07\x4c\xea\xb4\x81\xba\x41\xe4\xad\x48\x23\x4c\x7e\x66\x0a\x0a\xe7\xa4\x28\xa3\x68\x69\x1a\xac\x74\x52\x61\x9d\x08\xed\x4e\xd6\x28\xe7\xa3\xb8\xe6\x10\x46\xbf\x25\x53\xe4\xd6\x16\xf7\x2b\xaa\xf2\x57\x51\x09\xbd\xf5\x9e\x2e\xbc\x3c\x5f\x70\x89\x48\x0a\x95\x8c\xa3\x6c\x6f\x14\xa7\x0f\x91\x83\x14\x77\x35\x11\xef\x0f\x7e\xdb\xc4\x64\x7c\x5a\x55\x95\xd6\xd3\x54\xce\x71\x9e\x35\x95\xed\xd3\x02\xdb\x94\x51\x65\xdd\x68\xa3\xd5\x35\xb5\xc9\xd7\x9e\x26\x8d\xb1\x4d\x5f\xfa\xda\xec\xc6\xd5\xd5\x09\xf8\xfb\x5a\x00\x10\xd7\xaf\x5f\x17\xaf\xbc\xf2\x0a\xb8\x25\x52\x29\x15\x16\xf7\x11\x80\x58\x29\x15\x87\x13\x39\x58\xfb\x7c\x76\xe5\xe4\xa7\xb3\xff\x7d\xf1\x41\xfa\x57\x9d\x89\x7a\x05\x8a\x06\x85\xcd\x1c\xdc\xae\x68\x02\xd9\xd0\xc2\x62\xd2\x73\xb1\x0c\xb0\x2b\x38\x8c\x8f\xe9\x7a\x16\xaa\x77\x46\x09\x01\x76\x7b\x58\x7c\x15\x36\x71\x40\x94\xb9\x55\x1c\x1a\x59\x89\xe2\x60\xa6\xae\xf4\x1f\x65\xff\xf7\xc9\x4f\x92\xff\xeb\xe4\x67\xc9\x95\x30\x51\xc5\xbe\x34\x06\xbc\xcc\x59\x5e\x82\x20\xc0\x5f\xfd\xd5\x5f\x09\x67\x47\xd7\xb6\xa1\x09\x5c\xfc\x36\xe5\xb4\x01\x1d\xc7\xa9\xbb\xca\xd2\x72\x5c\xf0\xe5\xeb\xa3\xa6\x32\x2a\xc7\x3b\x15\xce\xe4\x24\xd1\xe7\x46\x05\x4e\x4e\xee\x35\xf8\x35\xe3\xcd\x73\xcf\x95\x82\xf2\x51\x8a\x2a\x49\xd2\xd0\x34\x39\xc6\x15\xb7\x1c\x4d\xe6\xaa\xa4\xbd\x92\x26\x21\x48\x51\x3f\x94\x14\x43\x55\xf2\x00\x51\x94\x25\xf2\xf2\xe6\xf8\x7d\xa9\xb8\x2b\x0a\xc3\x4c\x74\x49\x21\x54\xe4\xb4\x4f\x79\xfa\xc0\x7a\xbf\xb2\x43\xb8\x8c\x53\x45\xe3\xc9\xc9\xc3\xfb\xc7\xfa\xe3\xb2\xd0\xca\x53\xbe\xfd\x9c\xf8\x54\x05\x60\x52\x24\x84\xa2\x28\x50\x88\xc8\xee\x0f\xaf\xd5\xc5\xe9\x87\xa6\x50\x9b\xa6\xce\xe2\xa2\x9f\x1f\x7b\x70\xae\xad\xad\x89\x3f\xf9\x93\x3f\xf1\xd6\xa5\xb5\x20\x00\xa2\x93\x89\xb8\x9f\x04\x8b\x1d\x49\x03\x4e\x90\x36\x71\x16\x1f\x41\x33\x32\x46\x58\x00\x2c\xe2\x73\x2d\x25\x3a\x92\x9b\x12\x35\x71\x94\x75\x31\x8e\xca\x4c\xd6\x73\xe5\x54\x04\x05\x20\x25\x95\x8e\x3b\xd9\xde\x34\x94\x13\x94\x9b\xcd\x99\xe9\x22\x30\x90\xa7\xf7\x74\xf1\x14\xd5\xa4\x11\x1d\x07\x95\xb6\x09\x3e\xab\x4e\x1d\x68\x6d\x53\xaf\xcf\xfa\xc6\x09\xd8\xa5\x2d\x77\xe0\x37\x95\x59\x65\x62\xac\x2a\xa3\xca\x52\xd4\x16\x38\xf1\x3c\xfc\xb9\x4f\xd8\x54\xd5\x53\x29\xf4\x9e\x7b\xee\x39\x7c\xed\x6b\x5f\x9b\xf3\x67\x29\xee\xb5\x10\x8e\xbb\x47\x6a\xe9\xc4\xed\xd9\xb5\xb5\x3b\xb3\x3f\xed\x0d\xb3\x3f\x10\x29\xb6\x09\x4a\x94\x5a\x14\x37\x31\xda\x76\x0c\xcb\xf2\xec\x4a\x0c\x7d\x67\x94\xd8\xc2\xd8\x4c\x4e\x3e\x37\x90\x0b\x7e\xc0\x54\x40\x96\xc5\x33\x18\x8d\x20\xe1\x9a\x33\x03\x42\xa5\xb6\xed\xa9\xd7\x44\x2b\x41\x12\x6b\xdd\xb1\xfc\x83\x95\x3b\xe9\xdb\xeb\x9f\x25\xd7\xa2\x71\xb6\x06\xa9\xe6\xc0\x0b\xf7\xb5\x20\x22\x7c\xef\x7b\xdf\xc3\xe2\xe2\x22\xd0\xce\x9a\xa9\xc3\x97\x1d\x67\xc7\x15\xfc\x55\xf4\xdd\x54\x6e\x53\x39\xbe\x7c\x6d\xca\x68\xfb\xde\x75\xfc\xac\x04\x2f\x0a\x61\xa0\x28\x36\xcf\xc8\x21\x5f\x55\xde\x73\xeb\x0a\x15\xc6\x07\xcb\x8f\x45\xf1\xe7\xf3\xc8\x58\x29\x65\x6f\xe4\xc6\x52\x58\x96\x1b\xfe\x9c\xca\x7d\x8d\xc8\xd4\x61\x5b\x4d\x48\x51\x24\x54\x0e\xc2\x30\xcf\xc3\xac\xb2\xf8\xaf\xaf\x3f\x24\x20\x24\x79\x21\x97\x71\x99\xe0\x23\xdb\xfc\xaa\x62\xa4\x90\x9d\x1e\x45\x9b\x95\x76\xbe\x37\x43\xcc\x35\x05\x94\x56\x1a\x23\xef\x78\x7e\x9e\x5a\x59\x3f\xf9\xb3\xa2\xbb\x15\x41\x4a\xa1\xa4\xd4\x65\xd8\x27\xcc\xd7\x85\xb6\x33\x09\x95\xe1\xb7\xca\xec\x94\x61\xca\x12\x42\xa0\xdf\xef\x9b\x7b\xae\x4d\xf2\xbf\x30\xa3\xa8\x97\x04\x4b\x81\xa4\x7e\x8e\xfe\x1c\x62\x52\xa5\x0e\x49\x96\x2d\xac\xfa\xa3\x6a\xc6\xc8\xcd\x5a\xf9\x33\x8f\xf9\x8c\x59\x66\x74\x9a\xe3\x04\xcd\x80\x67\xa1\x1a\x1f\x74\xb3\xdd\x69\xe9\xdf\x52\x77\x60\x1c\x76\x76\x76\xf0\x3f\xfe\xc7\xff\x70\x8b\x3b\xae\x36\xd3\x26\x5d\x13\x40\xaa\x6b\x43\x15\x18\x68\xca\xef\x0a\xf6\x36\x53\x34\xfa\xaf\x0d\x68\xd0\xbf\x4d\xa0\xba\x0e\xed\x37\x31\x65\x97\xc1\xd7\xb5\xcf\xf7\x7e\x4d\xdf\x4a\x3c\xff\xfc\xf3\xe2\xf2\xe5\xcb\x88\xa2\x28\x67\xea\x6c\x6f\x16\x00\x11\x15\x27\xe8\xc6\x87\x72\x69\xed\xf6\xec\x77\x97\xef\xa5\x7f\xd2\x1d\xc9\x37\x44\x86\xad\x3c\x0d\xa3\xfa\x82\xb3\x2b\x7d\x0f\xbf\xb6\x56\xde\x50\x61\x95\x2c\x05\x43\xf9\x98\x59\x60\x14\x00\x2a\xb4\x46\x45\xde\x32\xad\x5f\x42\xe9\x10\xe8\xec\x41\xce\xdb\xa6\x7d\xd2\x8c\x7f\x99\x76\x3a\x80\xd6\x34\x4b\xd6\xa9\xff\xe7\x1a\x28\xe5\x5c\x56\x90\xc4\x5a\x34\x96\x6f\x2c\xdf\x4b\xff\xf4\xc4\xed\xf4\x99\x78\x24\xd7\x49\xaa\x3e\x18\x78\xa1\xe2\xac\x26\xcd\x83\xfa\xfd\xbe\xf8\xd6\xb7\xbe\x85\x13\x27\x4e\xd4\x01\xe1\xba\x70\x5c\xab\xc8\x97\xd5\x38\x75\xfe\xb6\xf1\x75\xf5\xf0\xf1\xe2\x2a\x15\xfc\x79\x53\xbd\x4d\xf5\x99\xb2\xf8\x99\x74\xba\xef\xc3\x4c\x44\x42\x22\x9e\xcb\x6b\x48\xb9\xf4\x91\xca\x59\x2b\xcd\x27\x41\xe1\xfb\x42\xec\x1a\x8c\xef\xeb\x74\xe4\x80\x60\x82\x05\x98\x7d\xbe\x8c\xb6\x3d\xa3\xb4\x66\xb0\x20\x01\xc8\x4c\x28\xa8\x7a\xcb\x82\xab\xa4\x9b\x78\x36\xf3\x80\x4c\x28\x39\x0b\x54\x2a\x49\xa5\x5c\xfa\x58\xa0\xcd\x29\xc0\x2c\x48\xb1\xfa\xc4\x1d\xe3\xca\x80\x0b\x23\x43\x8b\x71\x55\x46\x73\x43\x80\x32\x43\xd5\x1a\x79\x8a\xf5\xa3\x6b\x8a\x52\x40\x46\x2a\x99\x06\x72\x3c\x0d\x65\xa2\x60\x7c\x7b\xaa\x42\x95\xd2\x08\x16\x5f\x37\x2e\xac\x67\xbe\x7d\x5c\x8e\x63\x65\xf1\xa5\xb5\x06\xab\x3b\xcf\xc7\x35\xa0\x8e\xa4\x38\x4e\xc5\x52\x31\x47\x56\xa6\xd5\x1d\x68\x65\x55\xa6\x23\x4d\xd9\xd6\x63\x63\x5a\x61\x1f\x9e\xac\xb2\x7c\xdd\xea\x8b\x73\x3d\xb6\x75\x24\xf3\x18\x37\x99\x25\x21\x4d\x02\x39\x1e\x75\xd3\x7d\xbd\xa2\x88\xad\x72\x30\x53\x45\xc4\x76\xcd\x9d\xcd\x66\xd8\xdf\xdf\xaf\x62\x3e\x55\xcc\xb4\x6a\x4a\xae\x09\x28\xf0\x38\xce\xbc\xdc\x3c\x6d\xe2\x7c\xe5\x37\xdd\xfb\xea\x3f\x8e\x35\xa7\xad\xf5\xa9\x2e\xbe\x2a\xcd\x71\x80\x56\xdb\x6b\x7e\xef\x8d\x7f\xfe\xf9\xe7\xf1\xc4\x13\x4f\xa0\xd7\xeb\x19\xa6\xa7\x97\x8d\x16\xbb\xe1\x46\x00\xe2\x68\xa2\x96\xd6\x3e\x9f\xfd\xee\xd2\xfd\xec\x3f\x44\x63\x79\x43\x64\x58\x27\xb6\x69\xa4\xa1\x45\xbd\xef\x11\xab\xa8\x64\x66\x7c\xcf\x16\x18\x30\xc1\x4f\x5e\xe7\x1a\x16\x19\x20\xa1\xb5\x4f\x67\x3d\x9f\x8f\x69\x2a\xbd\xba\x83\x9d\x17\x03\x3d\x8e\x34\x03\x84\x5d\x19\xab\x07\x26\xaf\x1e\x5b\xd6\x08\xce\xeb\xe1\xed\x2f\xae\x89\x94\x10\x92\xd6\xba\x63\xf9\xca\xf2\xce\x2c\x04\x54\xb4\x7f\xba\xf3\xd3\xa3\x81\xd8\x2d\x3c\x06\x8a\xbc\x04\x94\xfb\xbd\xc8\xd5\xd5\x55\xc1\x0e\xc4\xe3\xdf\xff\xcb\xf0\xc1\xa6\x74\xbe\x7a\xda\x04\xdf\x58\xad\x2a\xa3\x2a\xbe\x6a\xec\xb8\xe3\xf0\xd8\x56\x75\xcc\xf7\x95\x15\xe6\x78\x25\x20\x40\x1c\x70\x97\x7c\x96\x83\x12\xbb\x0c\x7f\xe5\xb6\x4c\x61\xb4\x52\x95\x9e\x95\x37\xb7\x37\x8a\x27\x65\x8e\xbb\x6d\x60\xa3\x81\x4c\x1a\xa8\x24\x15\x4a\x16\x0f\xac\xf7\x76\xde\x57\xdf\x5b\x69\x98\x25\x46\xa4\x42\x61\x1a\x66\xb3\x4c\xa8\x44\x01\x92\xac\xf2\x6a\x5e\xc6\x80\x17\x17\xec\xc0\x00\x3a\xbb\x18\x7b\x5c\xf1\x9c\x7c\xd5\xd1\xdc\xd4\xad\x55\x8c\x69\xb7\x89\xcb\x84\x9a\x1c\x75\xe4\x68\x12\xca\xc4\xe9\x8f\xe3\x2a\x8c\x3e\xab\x75\x15\x5f\x16\x40\xbe\xaa\xa8\xad\xe6\xd9\x14\xbc\x0d\x62\x3e\x2e\x16\x22\xa5\xfc\x8c\xa2\x1c\xb8\xe4\x27\xd2\xe6\xf3\x69\xca\x36\x0b\x96\x7f\x79\x64\x39\xe3\xc6\xae\x0a\xaa\xb5\x9f\x94\xce\x88\xdc\x3a\x63\x01\x47\x86\x5e\x4d\x1c\x6c\xc2\x2e\xd6\xf0\xdb\xa6\x3f\x6d\x82\x53\x80\x24\x95\x4e\x43\x39\x3c\xea\xc8\x03\x49\xfe\x93\x6d\x79\xdf\xd4\xa0\xd2\x2a\xd0\xc2\xf3\xfb\xac\x1f\xbe\x3c\x55\x56\x12\xce\xa8\xda\x98\xb1\xab\x88\x6c\xce\xec\x59\x91\xae\xea\xbe\xea\xda\x6d\x57\x95\x46\xe8\xc6\xb9\xfd\xe3\xfb\x6d\xaa\xd3\x37\xe8\x7c\xf9\x9a\x2c\x51\x75\xe9\xc5\x73\xcf\x3d\x27\x5c\xd0\x02\x7e\x76\x09\x51\x44\x40\x14\xce\xd4\x60\xed\xf3\xd9\xd5\xc5\x12\xb4\x6c\x40\x21\xe4\x26\x42\xb3\xc2\xa7\xa0\x7d\x9f\x45\x84\x34\x81\xcf\x99\x1b\xcd\x7f\x16\x8b\x54\x4e\x5a\x9d\xcc\xcd\x3e\x67\xa9\xa4\x52\x58\x99\xf4\x16\x57\x65\x83\x06\x80\x22\xb6\x4f\x87\x11\x26\xdc\xaa\xe3\xbb\xd2\x77\xa5\xad\x95\x50\x38\xed\x8e\xd5\x0b\x4b\xf7\xb3\xb7\x96\x76\xd2\xab\xf1\xa1\x5c\x83\x42\xac\xf2\xd5\x46\x96\xc3\x2e\x0a\x6d\xf7\xfa\xf5\xeb\x58\x5f\x5f\xaf\xfb\xd6\xbe\x31\xe2\xa3\x73\xd7\x72\x71\x1c\x60\x51\x45\x93\x6e\xf9\xbe\xeb\x2a\x0b\x49\x13\xfd\xba\xe9\xdd\x74\x75\x9a\x2f\xb7\xdc\xf0\xb8\xb9\x77\x63\x42\xdc\xac\x34\x49\x85\x92\xa9\x90\x89\x49\x4f\x25\x1f\x2e\x33\xce\x5f\xba\xb4\x6d\x3d\x27\x1b\xe0\x96\xfc\x9d\x5b\xfa\xca\x0b\xbe\xe9\xa1\x91\x01\x9c\xd6\x94\x53\x2f\xbf\x27\x95\x26\x81\x1c\x4d\x43\x99\xaa\x1a\xb0\xc6\xef\xab\x82\x52\x0a\x69\xa0\xd2\xa3\x8e\x1c\x4f\x3b\x6a\x24\x49\xa5\x95\xed\xf2\x8c\x47\x02\xcc\xb4\x8e\xed\xdf\x32\x2f\xeb\x8c\x2c\xc4\x7c\x7f\x2b\x96\xd9\xc8\x5a\x55\x96\x05\xe5\xf4\x01\xab\x2b\x15\x2a\x99\x74\xe4\x28\x09\x55\x8a\xe3\x07\x97\xae\x5d\x3e\x5c\xa7\x9c\x7a\x0f\x59\x6c\xa3\xd9\xba\xcf\x2b\x89\xd7\x09\x86\x51\x07\x92\xc2\x6e\x2a\xfa\x51\x4a\x4b\x42\x51\xa4\xe7\xe6\x8c\x16\xc8\x3f\x96\x07\xf9\x19\xaa\xd7\xf3\x92\xda\xe0\x52\x20\x4e\x77\x30\xe8\x7d\x5c\xb8\xe6\x46\xb0\xc1\x8a\x9f\xce\xfc\xa6\x1a\x9d\x47\x12\xd2\x69\x28\x47\x93\x8e\x1c\x2b\x28\x7d\xa8\xe2\xdc\x34\x88\x6a\x3e\x11\xba\x0d\x70\x70\x35\xb0\xb6\x5a\x63\xdb\xb8\x36\x5a\x61\x13\x7d\x70\xc2\xe3\xe5\xfa\xe2\x24\xaa\xeb\xfd\x32\xef\xe9\xb6\xab\xc9\x6a\xe4\x2b\xaf\xea\xfd\xeb\xde\xa5\xaa\x4e\x37\x3d\x1e\x7f\xfc\x71\xd1\xef\xf7\x85\x9e\xbe\xd0\x4b\x9f\x8b\x55\x44\x11\x94\x8a\x44\x86\xc1\xca\xdd\xf4\xd2\xf2\xbd\xf4\xdb\xdd\x02\xb4\x50\xae\xb1\x82\xef\x45\xc4\xd5\xc7\x72\xdc\xe8\x83\xd8\x18\x63\x37\x42\xa4\x24\x76\x43\x89\x96\xe5\x43\x6b\xa5\xc4\x7c\x08\xc8\x8c\x31\xa3\xea\x39\x43\xa2\x34\x5d\xb3\x7d\x91\x1c\x52\x57\xc5\xe6\x55\x3a\x31\xb7\x14\xc1\xec\xc1\x54\x8e\x49\xfd\x3c\xdf\xb7\xc3\xb6\x10\x69\x6b\x90\xf5\x71\xa4\x5a\x8b\xc6\xf2\xc6\xd2\x4e\x9a\x28\x41\xa9\x14\xf4\x5e\xd2\x17\x7b\xc5\xb8\x8b\x90\x6f\x56\x17\x22\xb7\x88\xe2\xdc\xb9\x73\xc8\xb2\x4c\xfe\xec\x67\x3f\x83\x73\x72\x2d\x3c\xdf\xaf\x8a\x0e\xab\x2c\x17\x3e\xa5\xa0\x8e\x0e\xab\xea\xf7\x05\x1f\x58\x6f\xb2\x04\xd6\x69\xbb\xbc\x7d\x6e\x1e\x37\x8d\x0f\xa4\x79\xcb\x74\x79\x9d\x02\x20\x49\xc9\x24\x94\x23\x05\x48\x80\x01\x57\x06\x3e\x1c\xa3\x9a\x15\x0f\x3d\xd9\x61\xa1\xeb\x82\x7e\x0a\x79\x30\xe7\x5b\x52\x14\x60\x1d\xd0\x3b\x67\x79\xb1\x8f\xb4\x60\xd9\x9c\xf6\x43\xfb\x32\xb6\x7e\x6f\x27\x70\x05\x56\x2a\x00\xd3\x50\x4d\x0e\xa3\x6c\x2f\x13\x6a\x12\x2a\x8a\xe0\xb4\xab\xfc\x61\x3b\xc7\xeb\x36\xe9\x71\xe8\xe9\x3f\xab\x4d\x60\x63\x94\xcb\x57\x2d\x2b\xf5\x1b\x2a\xb3\x0b\x4c\x69\xc7\x62\xbc\xc2\xee\x33\x85\x34\x50\xe3\x49\x47\x8e\x66\x81\x34\xd6\x4c\xf7\x3d\x4d\xea\x79\x27\x65\xdf\x98\xf0\x29\xae\x5e\xb9\xd8\x06\x9d\xd7\x05\x97\x89\x5b\x81\x2d\xfd\x32\x0e\x88\x7a\x99\x67\x27\xcb\x97\x42\x77\xa4\xe8\x93\xca\xcd\x69\x2e\x90\xe0\xc1\x78\x86\x73\x74\xc9\x56\x03\x99\x3a\x4d\xdd\x26\x95\xf9\xba\x7a\x93\x3a\x03\x5a\x9c\x7a\xaa\x90\x7d\x59\x92\xd6\x16\x4b\x25\x52\x92\x4a\xa6\xa1\x1c\x4e\x43\x35\x46\xe9\x90\x3b\x77\x12\xb4\xde\x1c\xeb\xe1\xc3\x87\xf2\xd3\x4f\x3f\xf5\x55\x71\xdc\xbe\xf7\xa5\xf3\x69\x8d\x6e\xa8\x62\x4c\xc7\xa9\xbb\xce\x2a\xe2\x63\xe4\xbe\xb6\x54\x31\xd8\xaa\x38\xe1\xc4\x55\x59\x3e\xdc\x76\xf9\xca\x6e\xd3\x4f\xbe\xb2\x7c\xcc\xdc\x4d\xe7\xb6\xd3\xfc\x3e\xf5\xd4\x53\xa2\xdb\xed\x02\xb0\x8e\xbe\xb0\xa6\x88\x48\x62\x30\x78\x90\x9e\x5b\xfd\x7c\xf6\x56\xf7\x50\xbe\x52\x4c\x0f\x99\x7a\x3d\x56\x72\x4b\xbb\xe4\x0c\xbb\x1c\x0b\x0c\xec\x1b\xe4\x5e\x8e\x0d\x67\x2d\x52\x39\x3f\x5e\x20\x09\xa6\x43\x42\xaf\x7e\xe0\xe3\x84\x0f\x35\x53\xb9\xfe\x55\x7c\x0c\xda\x19\x14\x43\x40\x7c\x7f\x18\x62\x71\x64\xc6\xae\x79\x43\xd6\x00\xab\x15\x42\x64\x6a\x23\x1e\xc9\x17\x96\x76\xd2\xd7\x97\x76\xd3\x4b\xe1\x54\x0e\x0a\xd0\xc2\x2d\x2f\x66\x7f\x8d\xc7\x1f\x7f\x5c\x5c\xbd\x7a\x15\x1b\x1b\x1b\x55\xd6\x32\xa0\x9e\x36\xab\x82\xab\xb8\xf8\x9e\x57\x85\x26\xe5\xc1\x07\x88\x9b\xc6\x82\xab\xcd\x56\xa5\xf1\xd5\xe3\x3e\xab\x53\x56\xea\x82\x94\x42\xc9\xc3\x48\xee\x4b\xc1\x34\x74\x0d\xac\x61\x0b\x46\xbe\xba\x53\x31\x0a\x35\x16\x07\x2a\xf6\x14\x2a\x84\x6f\x4e\xae\x25\x91\x99\xd5\x30\x4c\xf6\x5b\x0a\x30\x95\xb4\x63\xea\xa2\x32\x6f\xde\x1e\xc5\xe9\x5f\x66\xa4\x92\x51\x37\xdb\x97\x04\xe9\x0c\x99\xda\xf7\xf6\xc5\x15\x34\x28\xa7\xa1\x1c\x3f\x8a\xd3\xdd\x59\x20\x47\xe5\x0b\x16\xed\x67\x16\x15\xcf\x3e\xc2\x96\x75\xa5\xb4\x28\x31\x0b\x09\x71\x8b\x0a\x97\x60\x4c\x49\x30\x80\x2e\x07\x80\xa5\x92\xa2\x3b\x84\xf3\x16\xf0\x99\x8a\x74\x1a\xca\xd1\xb8\x93\x8d\x66\x81\x4a\xf4\x82\x13\x8f\xb1\xa2\x28\x8a\x7c\x34\x54\x35\x36\x7c\x63\xcf\xa2\xb1\x3a\x13\xa7\x8f\x29\xbb\xd7\x3e\xd4\x2f\x00\xeb\x05\x24\x60\x39\x6b\x01\x80\x08\x25\x85\x71\x2a\x16\xc2\x7c\x0d\x7b\x41\x20\xe5\xa6\x72\x00\x43\xc7\x28\x99\x29\x73\x2f\x31\xc1\xb2\x96\x70\x53\x18\x91\xc3\xdf\x6c\x4d\xcd\x06\x39\x7a\xa0\x70\x6a\x28\x33\x93\xfe\x9f\x09\x04\x45\xda\x5c\xa6\x86\xb3\x40\x26\xce\xde\x2d\x7c\x29\xb4\x59\x49\x74\xff\xfe\x7d\xbc\xff\xfe\xfb\x6d\x18\x09\x1a\x9e\xb7\xfd\x66\x6d\xea\xf1\x95\xe1\x03\x45\x75\xf5\xd4\xd1\x8b\x0f\x55\x57\x01\xb5\x3a\x60\xd5\x64\x46\xd4\x69\x38\xa2\xf7\x31\x78\xd7\x3a\x02\xf8\xfb\x89\xa7\xab\x7a\x3f\xb7\xed\xbc\x5e\x0d\x5e\x71\xe1\xc2\x05\xf1\xe2\x8b\x2f\x22\x8e\x63\x3d\x3e\x0c\x70\xd1\x53\x1a\x94\xa9\x7e\x6f\x28\x37\x4f\xdc\x9e\xbd\xd6\x1b\xc9\x37\x45\x86\x4d\x02\x42\xc7\x78\xc8\xac\x25\xa5\x76\xa9\x8c\x0d\x38\x67\xd8\xe5\x14\x68\xa9\xab\x5a\x85\x30\x00\xe0\x24\x85\x3d\x00\xec\x55\x7d\xf9\x32\x48\x47\x31\x40\x11\xa9\xad\xa0\xd0\x26\x73\x06\x4c\xf4\xff\x6c\xf0\x18\xa3\x8b\x2d\x96\xca\x32\xe7\x18\x33\x39\x11\x25\x63\x2d\x58\xbb\x10\x19\x36\xe3\x83\xec\xa5\xa5\x9d\xf4\xb5\xc1\xc3\x6c\x9b\x32\xe3\xac\x6b\x96\x48\xf3\xfd\x26\x2e\x5c\xb8\x20\xce\x9e\x3d\x0b\x54\x5b\xf3\x50\x13\xe7\x0b\x6d\x14\x90\x26\x00\xe1\x03\xe6\x4d\xa0\x99\xe7\x75\xeb\x71\x15\x8a\xba\xb1\xe5\x2b\xb3\x2a\x54\xbe\x07\x17\x60\xfa\x3a\x23\xc8\x87\xfd\xd9\x5e\x2a\xd4\x18\x80\x34\x98\xd6\xb5\xd2\x29\xfb\x97\x54\x4e\x28\xcc\xc6\x52\x3e\x66\x72\xd9\x02\xf0\x1c\xf8\x78\x65\xa9\x2d\x08\x6c\x20\x6e\xd3\xa3\xa6\xb2\x2c\x50\xc9\x30\xce\xf6\xc0\xfa\xb2\x5c\xed\x6a\x57\xa2\x97\x42\x3b\x72\x10\xce\x7e\x5e\x72\xd2\x91\x93\xbd\xfe\x6c\x77\x1a\xaa\x7d\x3e\x46\xb9\xf3\xf0\x9c\xef\x89\x7e\x47\x0b\x88\xe9\x3a\xf3\x4c\x7c\x7f\x17\x3e\xc6\x5c\xf0\x63\xd2\x20\xef\x67\x77\xf5\xae\x9b\x4f\xd7\x99\x0a\x95\x8c\x3b\xd9\xfe\x61\x94\x3d\x4a\x85\x32\xef\xc3\x00\x4a\x9d\x85\xcf\x17\x5c\x3e\xea\xe3\xab\x26\x84\xec\x01\xdc\x87\x15\x85\xfb\x1a\x64\xee\xbb\xdd\x2e\xd6\xd7\xd7\xe7\x4c\x76\xee\x8e\x7a\xa1\xa4\x28\xca\x44\x3f\x90\x88\xcb\x93\x68\x39\x62\x9e\x67\x67\x16\xd3\xe6\xd7\x4a\x83\x1e\xb2\x3f\xa8\x76\xa8\x25\xe5\x29\x9b\x69\x6f\x1a\x34\x81\x60\x0e\xea\x72\xc1\x0f\x38\xfa\xa7\xa2\x1c\x85\x34\x50\x93\xa3\x4e\x36\x9c\x06\xd6\x89\xd0\x73\x7d\xe4\xce\x7f\x7a\xfa\xd0\xf7\xac\x8e\x81\x1e\xc7\x54\x0c\x4f\x5a\x5f\xfe\x26\x0b\x49\x13\x58\x6a\xd2\xcc\x7c\xcf\xdc\xfa\xab\xac\x36\x55\xf5\xfa\x40\x51\x53\x1e\x5f\xfe\xaa\xbe\xaa\xab\xb7\x15\xb8\x12\x42\xe0\xcd\x37\xdf\xb4\xb6\xf2\x67\xab\x88\x72\xbf\x16\xa9\xfa\xdd\xb1\x5c\x5b\xbd\x33\xbb\xd6\xdf\x97\xdf\x0c\x52\x9c\xcb\xcb\xb2\xb7\x35\x27\x77\x60\x14\x5a\xa1\x1e\x67\x9a\x69\x97\xe4\xce\xcf\x25\xd2\x51\x25\xfd\xda\xa6\x6d\x4e\xdd\x6c\x4c\x70\xa7\x5b\xed\xa3\x62\xf4\xdc\xb2\x1e\xf3\x6b\x39\x29\x96\x6d\x37\xed\x2b\xca\xb6\x06\x2b\xc3\x3d\xc6\xdf\xc5\xc6\x39\x66\xd4\x81\xd8\x3b\xcd\x0b\x99\x30\x48\xd5\x99\xde\x30\x7b\x69\x69\x87\xf6\x93\x9e\x18\x8e\x57\x82\xbb\x60\x16\x10\x76\x4c\x00\x94\x52\x72\x30\x18\x60\x69\x69\x09\xc3\xe1\x50\x7f\xbf\x3a\xa6\xdb\x04\x70\xda\x04\x4e\xa7\xee\x98\xaa\x52\x02\xac\xb8\xf5\xf5\x75\xd1\xe9\x74\xdc\x34\x73\xd7\x5f\x7c\xf1\x85\x5b\x9f\xaf\xdd\x2e\xc0\x71\x15\xd1\x36\xbc\xc2\x0b\x62\xf8\x76\x10\x19\x29\xf9\xa0\x3f\xbb\x7f\xd4\x91\x7b\xdd\x54\xac\x09\x95\xd3\x77\xfe\xe9\xed\x53\x9b\x0d\xaf\xad\x38\x2c\xd1\x75\xb2\x25\x46\xe0\xae\x88\xd6\xec\x5c\x03\x70\x77\x1a\x89\x4b\x06\xeb\xa8\x0b\x96\x4c\x11\x64\x22\xd4\xe8\x51\x2f\xdf\xab\x8b\xbd\xb7\x51\x4e\x78\x7f\x14\xfc\x5e\x7a\x9c\x73\xad\xcd\x48\xa7\x81\x9c\xec\xf7\xd2\x87\xa3\x6e\xb6\xb3\x3c\x09\x2e\x86\x19\x45\x06\xec\x3b\x28\xc3\xc0\x32\x36\x6d\x6a\x2b\xf0\x34\x37\xfe\xcd\xd9\x7d\xac\x8c\x52\x6e\xba\x9d\xc8\x00\x13\xa1\xba\xbf\x09\x48\x02\x39\x7c\xd4\xcb\x76\x0f\xbb\x72\x24\x73\x17\x09\xd3\x17\xac\x7f\x74\x1f\x60\x7f\x7f\x1f\xa3\xd1\x08\x35\xe1\x38\x8a\x81\xf4\xf9\xb8\x98\x87\xf0\x0b\xc5\x2a\x6b\x8b\x00\x20\x37\x36\x36\xf0\xea\xab\xaf\xf2\x72\x38\xc3\x86\x9e\xd7\x0f\x24\x45\x51\x4a\x7d\x91\x6f\x17\x3c\x17\x0c\x4f\xd6\x9d\xce\x15\x2c\xf6\x21\xc8\xfe\xcf\x06\x39\x1a\x34\xb9\x38\xb3\x40\xa0\xdc\x09\x98\xec\x9c\x36\x20\x67\x1f\x90\x0f\x30\x45\x48\x67\x81\x1a\x8f\x3b\x72\x38\x0b\xe4\x04\x25\x11\xbb\x7e\x2e\x79\xde\xe3\xfb\xb8\x00\xd5\xdf\xa2\x2a\x5f\x15\xa3\x71\xd3\xfa\x18\x74\x13\x13\xad\x63\x6a\x4d\x75\x57\x85\x3a\x70\x51\x17\xea\x68\xb4\x2e\xbd\xbe\xe6\xe9\x7d\xcf\xda\xbc\x47\xa3\xc0\x21\x22\x2c\x2f\x2f\x03\xc8\xc1\x3b\xdf\x16\xbb\x58\x49\x14\x41\xa9\x28\x9c\xaa\xa5\xc5\xdd\xec\xd2\xd2\x6e\xf6\x8d\x70\xa6\x2e\x97\xed\x70\xb4\x51\x00\x9a\x79\x95\xea\x58\x19\xcc\x50\xb0\x68\xb6\xfc\xdf\xce\xea\x32\x3a\xa6\xe7\x29\x43\xe3\x25\x28\x62\x8c\xcd\x9e\x73\x2d\xfc\x57\xcc\xb8\x71\xe9\x9c\x69\x92\xda\x47\x86\xac\xe8\x22\x8b\x39\x98\x23\x57\x21\xcc\x01\x32\x6c\x65\x94\x6e\x33\x57\x23\x38\x37\xce\xdb\x1d\x05\x33\x5c\x58\x78\x98\x7d\x3d\x8d\xd2\x7b\xd3\x05\xf1\x4f\x59\xa7\x64\xac\x54\x9e\x23\x03\x22\x92\x97\x2e\x5d\x12\x41\x10\xc8\x7f\xf9\x97\x7f\x11\xe3\xf1\xf8\xcb\x80\x91\x36\xe0\xbf\x89\x56\x7c\xe9\x00\x40\x0a\x21\xc4\xe2\xe2\xa2\x25\x00\x5f\x7f\xfd\x75\xac\xae\xae\x56\xb6\x47\x4f\x45\xfc\xf5\x5f\xff\xf5\x1c\xa0\x39\x3a\x3a\x42\x92\x24\xae\x92\x50\xa5\x40\x54\xd6\x51\xf1\x9c\x0b\x72\xa3\x89\x03\x90\x0a\x48\x1f\xf6\xd3\xe1\x7e\x2f\xbd\xb5\x38\x09\xce\x08\xc2\xc0\x4c\x53\x40\x93\x40\x71\x70\xad\x06\x18\x05\x5d\x28\x66\xa1\x23\x4e\x3f\x0e\xdb\x76\x2e\xf3\x7b\x03\x84\x34\xcd\x17\x14\x66\x14\x5a\x9d\xa3\xa4\x25\x2e\x7f\x00\x05\x09\xa4\xd3\x50\x0e\x1f\xc5\xe9\x10\x30\x3e\x8b\x1c\xb0\xcc\xf5\x85\xe7\x19\xa7\xbf\x7c\xaf\x2f\x81\x74\x1c\x65\xc3\xbd\xfe\xec\xce\xc6\x41\x67\x14\x48\xac\x95\xaf\xc4\xda\x47\x6c\x6c\x9a\x21\x58\x4c\xa1\x11\x57\x6c\xe6\xc1\x08\x8c\x1c\x75\x14\x78\xde\xef\x45\xc7\x71\x25\x9f\x2b\x0e\xb6\x4b\x85\xc2\x38\x92\xbb\x0f\x7b\xb3\xbb\x87\x51\x36\xf2\xc8\x3b\x23\x57\x74\x1f\xfc\xec\x67\x3f\xc3\xc7\x1f\x7f\xec\x76\x91\x0e\x3e\x5e\x5e\xa7\xdc\x36\x1e\xb2\x58\x87\xb4\xab\x88\x5e\x33\x68\x7d\x0d\x86\x3a\x8d\xc5\x25\x90\x14\x75\x32\xd1\x0f\x14\xe6\x4e\xc5\x2c\xcb\x29\x7e\x51\x76\xa8\xfe\xe5\x7c\xcf\x3a\xd3\x82\xe7\xd1\x16\x17\xe7\x83\xb9\xf8\xc1\x42\xad\xde\x86\xd8\xd7\xfa\x56\x12\xd2\x69\x20\xc7\x93\x50\x1e\x4a\x01\xdf\x6e\xb9\x86\xc0\xe7\x0b\x9d\x0b\xad\x34\xad\x8a\xb8\xe3\x94\x5d\x57\x66\x5b\xe6\xaa\x83\x0b\x64\xab\x80\x8d\x6f\xba\xc6\x2d\xc3\x97\xae\xee\x99\xaf\x7c\x37\xaf\xfb\x1e\x75\xe6\xf0\x26\xf3\x79\x53\x7b\xbc\x8c\x6b\x65\x65\x05\xdf\xfd\xee\x77\x05\x8f\xd3\x80\x45\xfb\x5f\x88\x0c\xfd\xfe\x50\x9e\x59\xb9\x97\xbe\xda\x99\xc8\x1b\x90\x2a\x9e\x33\x51\x14\xd7\xca\x05\x0a\x16\xf2\x28\x18\xbc\x99\xff\xe1\x4c\xb9\xe4\xc8\xa4\xcb\x02\x4a\x7f\x16\x0e\x22\x0c\x28\xb1\x8f\xc4\xb0\x00\x3c\x53\xe3\xdc\xf1\x65\x69\x17\xe4\x9c\xd2\x6e\xc6\x8f\xad\x1c\xe8\xc6\x28\x52\xd6\x73\x03\x52\xac\x57\x60\x82\x46\xbf\xa6\xd3\x6e\xa1\xd0\xef\x4c\xd5\xe5\xc5\x07\xe9\x37\x66\x31\xdd\xbd\x7f\xbe\xf3\x8b\xe2\x44\x69\x43\xe7\x4a\xa9\x94\xf2\xad\x19\xe4\xc5\x8b\x17\x45\x10\x04\xf2\x1f\xfe\xe1\x1f\xdc\xcf\x08\xf8\xe9\x8c\xc7\xbb\xd7\x4d\xa1\x09\xd0\x08\x21\x84\x39\xb4\x70\x65\x65\x05\x7f\xfc\xc7\x7f\x5c\x3b\x2d\xe3\x59\x7e\x0c\x22\x12\xdf\xfb\xde\xf7\xe6\x9e\xff\xf8\xc7\x3f\x96\xef\xbf\xff\xbe\x00\x00\x29\xa5\x48\xd3\xb4\x8e\xf7\xb7\x05\x62\x73\xf9\x8b\xfa\x2c\x61\x76\xd4\xc9\xc6\xf7\x07\xc9\xa7\xa7\x46\xd1\xb5\x70\x4a\x7d\x22\x14\x0a\x6d\x49\x8b\xa5\x30\xd6\x96\x3e\xee\x77\xc1\x86\x84\x19\x22\xe5\xb6\x00\xfa\x80\x4e\x73\x00\x2e\x53\x7e\x59\xcf\xe8\x8c\xf9\xce\xe9\x6c\xb8\x58\xb4\xcc\xe8\x33\x0b\xe4\xe4\x20\xce\xee\x0e\xe3\x74\x54\xbc\x8b\xa1\x25\x6d\x55\x68\xe0\xf5\x3c\x2d\xef\x93\x74\x12\xca\xd1\x9d\xa5\xe9\xad\x33\xfb\xdd\xbb\xdd\x4c\xac\x40\x41\x18\x68\xce\x9d\xed\xf5\xbb\xb0\x38\x50\xb9\xd2\x56\x71\xa0\x4f\x96\x82\x6d\x46\x0b\xdf\x03\xc7\x1a\xdb\x26\x9d\x7d\x2e\xa0\x2a\x98\x45\x7e\x5a\x74\x5e\x6e\x1a\xa8\xd1\xa3\x38\xbd\xfb\xb0\x9f\xde\x9b\x86\x72\xec\xf6\x07\xfb\xf6\x45\xbb\xac\x99\x86\x3a\x65\xb7\xb5\xfc\x71\xa7\x8a\xd0\xf2\xde\x8d\xb3\x98\xb7\xf6\x67\xe1\x83\x45\x39\xa7\x85\x76\x24\x45\xdd\x8c\xfa\x42\x95\xa6\xb1\xf9\x50\x4c\xea\x14\x16\x12\xdd\xe1\x6e\xe0\x66\x42\xe7\x49\xb9\x42\xa1\x2c\x8e\x3d\x2d\xad\x39\xf3\xc4\x5d\xd7\xa2\xe2\xa5\x49\x25\xd3\x8e\x1c\x4e\x3b\xe6\xe3\x71\xe1\x6f\xf5\x59\x0b\x00\xd3\xf4\xd1\xbe\x0c\x53\x6c\x1b\xda\x00\x54\x1e\xaa\x84\xf8\x71\x4d\xc9\x55\x40\xc6\xcd\xef\x3e\xf3\xdd\x57\xd5\xe1\x3e\xf7\x31\xdc\x3a\xc0\xd4\xd4\x86\xaa\x76\x89\xf5\xf5\x75\x38\x3b\x48\x9b\xfd\x5a\x50\x1c\x7b\x41\x44\x51\x3c\x92\x1b\x2b\x5f\xcc\x9e\xeb\x8e\xb2\xaf\x8b\x0c\x6b\x2e\x50\x06\x98\xa6\x09\x4d\xb3\x86\x1b\x95\x89\x40\x9e\xb1\x40\x76\x1a\x56\x10\xf3\x4f\xcc\x19\xb8\x51\x08\x18\xc0\x99\xab\x4b\xc7\xd9\x96\x1b\x1d\xc7\xdb\xcc\xa4\x81\xc5\x24\x79\x19\x06\x45\x99\x32\xca\x8a\x4b\x4b\x6b\xb9\xba\x48\x37\xa4\x2c\x49\x6b\xe3\x8e\xa6\x09\x80\x24\x96\xa2\xb1\xbc\xb6\xb4\x33\xbb\x3b\x5e\x0e\xee\x1e\xae\x05\x7a\x3a\x57\x6b\xbe\x5a\x91\x02\xda\x8d\x9b\x26\x90\xfc\x65\x82\x6f\xcc\xc8\xaf\x7e\xf5\xab\xe2\xc5\x17\x5f\x14\x0d\xab\x11\xb5\xd5\x08\xc8\xf9\xad\x64\x71\xa6\x2c\x67\xba\x5e\xde\xb8\x71\x03\x37\x6e\xdc\x10\x00\xe4\xad\x5b\xb7\xf0\xf7\x7f\xff\xf7\xbc\x6e\xb7\x4d\x75\x71\x3a\x78\xc7\x9e\x0b\x5a\x00\xa4\x99\x40\xf2\xc5\xd2\xf4\xb3\xed\xbd\x78\x27\x4e\xa2\x15\x92\x88\x80\x12\x58\xe5\xf9\xdc\x82\x60\xd1\x9b\xc6\xa7\x25\xf9\x18\x42\xb4\x04\x35\xcf\x6b\xae\x51\x96\xc1\xa7\x57\x39\x20\x57\x7a\xb5\x6a\x59\x8f\x9c\x06\x72\x74\x7f\x21\xf9\x74\x26\xd4\xa4\xe8\x53\x4e\x47\x56\x3f\x57\xf4\xc9\x5c\x5f\xe8\xbf\x69\x47\x8d\xbf\x58\x4e\x3e\xff\x62\x29\xf9\x60\x69\x12\x9e\xeb\x66\x62\xa0\xb4\x56\xe1\x01\x6a\xa5\x22\xa0\x21\x3e\x7b\x61\x57\xd1\x29\x06\x9f\x2a\x10\x9d\xce\xc1\x57\x15\xb9\xd9\x78\xbf\x13\xbb\xd0\xdc\x61\x1c\x65\xbb\xf7\x06\xc9\xad\x61\x37\xdd\x57\xf9\x16\x20\x09\x1c\x17\x09\xd6\x3f\xae\xe5\x49\x8f\xb9\x3a\x3e\xcf\xe3\xbd\x74\x57\xc7\xe8\x5d\x2b\x49\x5d\x3a\x57\x00\x54\xfa\xb6\x00\xf9\x1e\x2e\x61\x46\x71\x27\x13\x7d\xa1\x28\xaa\x06\x0b\xba\x8c\x12\x58\xb8\x4f\xb9\xe3\x91\x7b\xaa\x82\xc9\xe7\xac\x6c\x30\x00\x50\x19\x7a\xb7\xbf\x77\x85\x67\xb4\xce\x63\x9c\xcd\x84\x4a\x26\xa1\x1c\xe9\xad\xfe\x51\x20\x4d\x3e\xaf\xcb\x9c\x96\xdc\x92\xe6\xfa\x8c\x05\xfe\x51\x7d\x5a\xbf\x2f\xd4\x69\x83\x3e\x4d\xa9\x2d\x63\xe2\xc4\xa6\xef\x5d\x86\xdd\x44\x84\x6e\x1a\x17\xe0\xb5\x01\x2b\xee\x3b\xd4\xbd\x53\x1b\x2d\xd1\xd7\xa6\xaa\x32\xaa\xee\x1b\xdb\xab\xf7\x2f\x72\x9c\x71\xb5\x6f\x4b\x1c\x8d\xe5\xca\xe2\x6e\x7a\xb9\xff\x48\xbe\x10\xcc\x70\x4e\x1f\x3d\x0f\xc0\x22\xf8\xf9\xf9\x7c\x94\x2b\xed\x3c\x8d\xb7\x0d\xb9\x24\x00\x00\x20\x00\x49\x44\x41\x54\x98\x0b\x3a\x1d\x67\xd6\x39\x31\x17\xfe\x22\x65\x05\xcc\x70\x59\x44\xcc\x97\x55\x5a\x3e\x4c\x49\x73\x40\x4a\xf1\xfc\x45\x3c\x97\x23\xe5\x3e\x15\xbc\xee\xf2\x6d\xf4\xd8\xb4\x90\xd0\xdc\xfb\xda\xcf\x78\x13\x01\x08\x91\x61\x3d\x3e\x54\x2f\x9d\xb8\x9d\xdc\x50\x4a\xc5\xc0\xdc\x99\x46\x66\xdc\x9c\x3f\x7f\x1e\xdf\xf9\xce\x77\xea\xc6\x25\x50\x01\x52\x2b\xd2\x56\x85\xca\xf4\xaf\xbe\xfa\xaa\xf8\xcb\xbf\xfc\x4b\xf1\xfc\xf3\xcf\x03\x28\xf9\xa7\xb2\x77\x1f\x0f\x3d\x7f\x3a\x5e\x2f\xb5\xd7\xd7\x3c\x0d\xe0\xf0\xeb\xb3\x67\xcf\xe2\x2f\xff\xf2\x2f\xc5\x7f\xfc\x8f\xff\xd1\x15\xb2\x6e\x38\xce\x7b\xba\x42\xba\x10\xd4\x2a\x55\x40\xfa\x60\x21\xdd\xdb\xed\xcf\x3e\x4e\x42\x39\x06\x91\xb1\xde\x91\x99\x03\x82\x7e\x77\x18\x12\x63\x40\xdb\xf5\xef\x30\x59\x8a\xb4\x9c\xc6\x74\xc2\x39\x2b\x3b\xcb\x53\xca\x08\x36\x4b\x50\xe4\x53\x50\xc8\x84\x4a\x0e\xe2\xec\xee\xe7\xcb\xd3\xcf\x14\x29\x0e\x3a\x5c\x5e\x36\x17\x9c\xd5\x36\xd6\x34\x11\x4a\x81\x9f\x4e\x42\x39\xfa\xf5\xfa\xd1\x07\xfb\xbd\xf4\x53\x0e\xa4\x9c\x4b\xab\xcd\xcc\xe4\xe9\xbc\x18\x93\x9b\xfa\x9f\x06\x1e\xae\xc3\x8b\x2e\xcf\xee\x2e\xcd\x1a\xe6\xca\x9f\x06\x6a\x74\x6f\x90\x7c\xfc\xf9\xca\xf4\xdf\x0f\xe2\x6c\x9f\xbf\x03\x8a\x55\xb5\x4e\x6b\xab\xf8\xa6\x2b\xd7\xdc\x50\x65\x61\xaf\xcc\xe0\x56\xe8\xab\xa8\x2e\x5d\x6d\x50\x4a\x09\xa1\x48\x74\x32\x8a\x3a\x19\xf5\x85\x44\xc8\xfb\xdf\xb2\x58\x83\x75\x1e\x72\xc2\xb5\x41\x85\xb2\x09\xd2\x39\x9c\xc2\x00\x6d\xc3\xac\x95\x31\x8f\x9b\x25\x63\x9a\x58\x59\x5d\x75\xbe\x28\x9a\x00\x14\x80\x8c\x54\x3a\x0b\xd4\x78\x26\x4a\xc7\xdc\x62\xde\xd3\x10\x34\xf7\x3a\xbf\x79\xf3\x26\xfe\xe5\x5f\xfe\x45\x17\xe5\x0a\xc8\x36\x1f\xb2\xea\x83\x57\x59\x68\x7c\x4c\xb8\xae\x6c\x37\x8e\x97\xc5\xdb\xe9\x9a\xc8\xeb\x08\xcf\x05\xc0\xc2\xc9\xd3\x06\x3c\xf3\xfb\xa6\xba\x9a\x80\x76\x55\x39\x55\xed\x69\x8a\xf7\x95\x2b\xb6\xb6\xb6\xc4\x37\xbf\xf9\x4d\xae\x0d\x8b\xe2\x57\x2f\x7f\x8e\x28\x53\x71\x6f\x98\x9d\x59\xd8\xcb\x9e\x0d\xa7\xf2\x32\x72\x30\xe3\x58\x2c\x1c\x26\xcc\xb4\x47\x32\xbf\x7e\xe8\x62\x01\x79\x6b\x9c\x14\xff\x15\x82\xc2\x9a\x92\x75\x8b\x72\x2b\xd7\x5a\xa8\xe2\x1b\x88\x7b\x98\xeb\x7c\x66\xcc\x8f\x6e\x30\x8b\x0a\x93\x50\xba\xf5\x1c\xa4\x38\xef\xcd\x19\x37\x15\x47\x06\xf0\x95\x54\xec\x71\x14\x24\xea\x4c\xef\x91\x7c\x75\xf5\x8b\x74\x1b\x52\xb9\x07\x31\x9a\x8d\xe9\x8a\xe0\x7b\x91\x26\x65\xe1\xb8\x16\x97\x39\x30\xfd\xd6\x5b\x6f\x89\xb7\xdf\x7e\x5b\x5c\xbc\x78\x11\x61\x18\xea\x86\x70\x90\xa2\xaf\x23\x94\x2b\xd1\xf4\xbd\xf5\xc7\xa7\x21\x8b\x5f\x1f\xd0\x31\x2b\xac\xc2\x30\x14\x83\xc1\x00\x6f\xbf\xfd\xb6\x78\xfb\xed\xb7\x45\x71\x0c\x45\xd3\x7b\x5a\x63\xf8\x6f\xff\xf6\x6f\xb1\xb3\xb3\xe3\x93\x01\x12\xfa\x18\x14\xa2\x04\x84\xf4\xa8\x23\xc7\xb7\x57\xa6\x1f\x3f\x8a\xb3\x3b\x59\xce\x3b\xcd\xb2\xdc\x52\x98\x16\x92\xb3\x24\x31\x0b\x91\x14\x5f\xbc\xac\xa5\xf4\xd6\x2e\x13\xc0\xa6\x69\xdf\x81\x81\x26\x50\xbe\x30\xc3\x06\xbf\x0a\x0a\x90\x93\x50\xee\xef\x0c\x92\x8f\xf7\x16\x66\xfb\xfa\x1d\xf4\x7b\xc1\x0f\xd2\x58\xb1\x96\x35\x86\xf3\x7c\x0e\x5e\x92\x54\xa8\xc9\xce\x20\xf9\xe2\xf6\xca\xf4\xfd\x69\x28\x87\x3e\x14\x9e\xbf\xa6\x2a\xc7\x9f\xbb\x7b\x2a\x4f\xa3\xb3\x91\x67\x4c\xc3\x01\x3e\x8c\xcf\x28\x16\xe7\x8a\x41\x09\x60\x18\xa7\x77\x3e\x5f\x99\x7e\x32\x8c\xd3\x5d\x55\xb4\x1d\x0c\xbc\x78\xac\x6c\x55\xa1\x4e\xa1\xe4\x71\x5e\x05\xbc\xca\x39\xb7\xa9\x22\x57\xd0\xb9\x1a\xb8\x1b\x2c\x81\x15\x4a\x0a\xbb\x99\xe8\x87\x19\xf5\xa9\x58\xee\xc9\xe9\x13\x28\x79\x2b\x50\x7e\x20\x83\x1a\x81\xb9\xf9\x5c\xfd\x3c\x7f\x86\x92\x62\x39\x82\x87\x2f\x7d\x35\x48\xa9\x0f\x0a\x99\xc0\x64\x1a\xca\x71\x5a\xae\x28\xd2\x83\xd4\x5d\x16\x06\x00\x48\x92\x04\x93\xc9\x84\xf7\x55\x1b\x33\x73\x1d\x82\x6d\xb2\x9a\xd4\x59\x20\x9a\xea\xae\x4a\x57\xd5\x1e\x17\xcc\xd4\x95\xc9\xd3\x34\xd1\x55\x53\x7a\x1e\x57\xd5\x1f\xee\x6f\x5b\xcb\x4e\x53\xbc\xaf\x5c\x01\x40\x86\x61\x28\xf4\x79\x5d\xda\x39\x5d\x6b\xc1\x5a\xa8\xc4\x87\x72\x6d\x61\x2f\xbb\x12\x1f\xca\x6b\x22\xc3\xfa\xbc\xbd\x36\x8f\x70\xad\x1f\x26\x99\xa1\x77\xbe\xcc\x9f\x15\xc2\xa7\x5d\x94\x9d\x87\xef\x5a\xab\xc1\x3c\x50\x82\x7a\xee\x53\xc0\x2b\x2f\xf1\x43\xd9\x90\x02\x7b\x58\x0c\x90\xe6\x5b\x0e\xc3\x45\xa9\x7c\xaa\x7d\x0a\xe6\x47\xa1\x76\xc6\xcc\xd3\xcf\xab\x24\xe4\x74\x46\x1e\x9f\xf7\x85\xbd\x92\x09\x0a\xfd\x68\x22\xaf\x2e\xdf\x4b\x5f\x1c\xaf\x04\xbb\x49\x8c\x94\xf9\xbb\xa4\x28\x36\xa6\x03\x80\xb5\xb5\x35\xf9\xe6\x9b\x6f\x8a\xef\x7f\xff\xfb\x75\x63\xc3\xa5\xa3\x36\xe3\xd8\x1d\x1f\x12\x00\xfe\xf0\x0f\xff\x50\x10\x11\xd6\xd6\xd6\x50\x9c\x5c\xad\x9f\x5b\xd7\xae\xe5\x5a\x03\x62\x54\x8f\x35\xc0\xa6\x5d\x9f\x40\x31\xf7\x42\x08\x73\xf8\xe4\xb7\xbf\xfd\x6d\x48\x29\xc5\x3f\xff\xf3\x3f\x63\x77\x77\xb7\xea\x3d\xad\x71\x3a\x1e\x8f\x91\x65\x99\x65\x95\x65\x7c\x30\x25\xa2\xb4\xf0\x29\x4a\x32\x52\x93\x3b\xcb\xc9\xe7\x1b\xa3\xe9\x07\x0b\x89\x58\x1b\x4c\x83\x0d\x01\x12\x06\xbc\x00\x85\x83\x2e\x03\x1e\x05\x29\xf3\x73\x7a\xf4\xc4\x87\x56\x3d\xcd\xf3\x39\x5f\x1f\x18\x8b\x8e\xd9\x55\x1d\xac\x3c\x1f\xbd\x17\xe9\x67\x42\x4e\x1e\xf6\xd3\xdb\xbf\x59\x99\x7e\xac\xcf\xa2\x73\xfe\x5a\x29\xec\x28\x79\x43\x8a\x1c\x78\xea\x45\x1c\xb9\xe0\x27\x4c\xa6\xa1\x1c\x7d\x78\xf2\xf0\x97\x27\xc6\xe1\xb9\xad\x47\xdd\x6b\x9d\x0c\x31\xc0\x56\xd7\x99\x81\x5a\xfa\x8d\x01\x30\xbe\x29\xa5\x69\xca\x79\x27\x94\xc3\xae\x94\x8d\x30\xd6\x97\xb2\x7c\x35\xc7\x47\x34\xf8\x21\x00\xe3\x28\xdb\xbd\xbd\x32\xfd\xe0\xce\x52\xf2\xd9\x51\x47\x8e\x40\x36\x68\x41\x85\x15\xea\x47\x3f\xfa\x91\xfc\xec\xb3\xcf\xf4\x6d\x9b\xb1\xc2\xd3\x79\xd3\x1e\x07\xb8\xf0\x50\xc5\xf8\xe7\x90\x7a\xe1\xdb\xc2\x1b\x23\x3a\x19\x45\xdd\x99\x58\x08\xf5\x19\x45\x28\x19\x98\x0e\xbc\x6f\x81\x79\xd4\x68\x39\xfc\x29\xf3\x0d\x8a\x3d\x26\xf4\x07\xe4\x69\xe6\x97\x7e\x02\xda\x07\x07\xa5\x53\x23\xc8\xe6\x85\x6e\x60\x5a\x60\x26\x54\x92\x04\x72\x5c\x9c\x51\x64\x3e\x58\x4b\x67\x5c\xa0\x19\x75\xfa\x00\x8e\xef\x9a\x33\x13\xdf\xf3\x2f\x0b\x52\xaa\xda\x55\xd5\x3e\x9f\x79\xcf\xd7\x26\xb7\xdc\x2a\x22\x3d\x4e\xbb\xab\x9e\x57\xf5\xa1\x9b\xc6\x6d\x53\x53\xa8\xfc\x36\x8f\x3d\xf6\x98\xb8\x7e\xfd\xba\xe5\xdb\x85\x52\xcb\x8d\x00\x84\x41\x8a\x7e\xef\x51\x76\xae\xff\x28\xfb\x5a\x98\xa8\x6d\x02\x42\x2d\xfd\x4b\xfa\x2b\x19\xb3\x07\xcf\x94\x97\x9c\x41\xe9\x51\xe4\x30\xae\xd2\x0d\xa5\x48\xc1\x7d\x5d\x8a\xf4\x39\x03\x63\x4e\x75\xe6\x3f\x07\xd8\x70\x06\x39\xd7\x36\xbe\xdc\xb4\xb4\x82\x90\xf6\x9a\xe4\x6d\x75\x19\xae\xf5\x7a\x05\x68\xf3\x8c\x59\x7d\xe0\x63\x69\xf5\xd6\xab\x90\xca\x62\x1c\x06\x2c\x44\x8a\x8d\xde\x30\xbb\xb1\x78\x3f\xfd\xe5\xc3\xad\xce\x84\x39\xd3\x87\x60\x34\x10\x45\x91\x58\x5f\x5f\xf7\x8d\x99\x2a\xa1\xed\xbb\xaf\x0a\x86\xce\xc2\x30\x14\x6f\xbc\xf1\x06\x4e\x9d\x3a\xa5\xa7\x83\xf4\x73\x7d\x6d\xa6\x7d\x1c\xd0\x12\x2e\x4c\x83\x68\xf5\x28\x8c\xfb\x89\x88\xa3\x4c\xc4\x61\x46\x91\x9e\x72\x97\xa4\xd2\x54\xa8\x24\x15\xf9\xef\x51\x47\x4e\xf6\x7b\xe9\xe4\x30\xca\x12\x25\x4a\xe5\x0a\x0e\x90\xe1\xca\xd6\xc9\x93\x27\x01\x00\x2f\xbd\xf4\x92\xfc\xf1\x8f\x7f\x2c\xee\xde\xbd\x5b\xf5\xde\xb5\xc1\x75\x42\x85\xb6\x30\x10\x26\xa3\x6e\xba\x7f\x6b\x75\xf2\xd1\xca\x24\xdc\xea\xa6\x62\xd0\xcd\x68\xc0\x81\x09\xa7\x5f\x0d\x3c\xec\x6f\xce\xea\x29\xfe\x2b\x65\xb2\x47\x62\x3b\xb4\x4a\x4e\x5e\x4d\xff\x65\x9c\x82\x04\xe4\x61\x57\xee\x7e\xb1\x94\x7c\xbc\xb3\x98\x7c\xa1\x08\x13\xd8\x16\x06\x5f\x5f\x62\x77\x77\x57\xbe\xf3\xce\x3b\xe8\x76\xbb\xf2\xb5\xd7\x5e\xe3\xbe\x47\xba\x9f\xf5\x79\x76\x29\x2b\x6f\x22\x09\x93\xbd\x85\x74\xe7\xfd\x53\xe3\x9f\x76\x53\xb1\xb2\x3e\xea\x6c\x87\xb2\x00\x2f\xe6\xdd\x39\x91\xb3\x1f\xd6\x3f\xc4\xc1\x8e\xf5\x8e\x0c\xe2\xe9\x21\xca\xd3\xb1\xb1\x66\x8d\x41\x00\xd3\x40\x8e\xbf\x58\x9a\x7e\xf0\xc9\x89\xa3\x0f\x1e\xc5\xe9\xae\x14\x98\x00\x76\x7f\x14\xc0\xd4\x5a\x9c\x02\x00\xfb\xfb\xfb\x5a\x61\x07\x1c\x5e\x89\xea\x50\x4b\x6b\x2e\x70\xf9\x32\x42\x8f\xa7\x95\x80\xf7\x94\x48\x33\x20\x89\x08\x61\x46\x61\x37\xa3\x7e\x28\x29\x36\x8b\xbc\x5c\xed\xd0\x14\xc1\xb4\x27\x55\x30\x5e\xb2\x3d\xe8\x2d\x2d\x51\xa3\xca\x22\x9d\x85\xb6\x19\xc0\x29\x41\x8d\x13\xef\x78\x64\xbb\x41\x23\x74\x49\x48\x53\xa1\x92\x69\x58\x4e\x15\xe9\xc1\xef\x78\xd3\x43\xbf\x37\x0b\x4d\x1f\xef\xcb\x32\x46\x37\x6d\x1d\xc3\x69\x02\x0e\x55\x6d\xf3\x31\x70\x17\x38\x55\xb5\xc3\xd7\x96\x2a\x01\xe1\x82\x91\xaa\x7c\x55\xbf\x55\xef\xe0\x03\x39\x4d\x69\x7c\xef\x55\x35\x10\xc5\x60\x30\xc0\xa9\x53\xa7\xac\x13\x72\x01\x6b\xef\x96\xa8\x7b\x24\x57\xfa\x43\xf9\x54\x74\xa4\x2e\x93\x54\x4b\x79\x11\x7a\x7f\x12\x8e\xc4\xfd\xc0\xde\xc6\x0e\xf3\x80\xdb\xd0\x32\x63\x52\x79\x0d\x25\x3b\xb3\x68\xdc\x24\x2b\x11\x51\xe9\xf0\xea\x8c\x06\x0d\x42\x58\x7a\xe5\xe6\x37\xb5\xf1\x1d\x72\x9d\x14\x6c\x3c\x6b\xad\x43\xb1\xc2\xca\x5a\x55\x31\x5e\x8b\xf1\x6c\x96\x3b\x68\x6b\x8c\x0d\xa4\x4c\xf1\xc5\xf8\x2e\x52\x46\x9d\x44\x5d\x1e\xec\x65\xbf\x33\x3a\x11\xdc\x99\x06\x62\x52\x58\x5d\x5c\xc1\x23\xe2\x38\xc6\x8b\x2f\xbe\x28\x7f\xf4\xa3\x1f\xf1\xe2\xaa\x68\xb4\x89\x47\xba\x74\x23\x7a\xbd\x9e\xb8\x71\xe3\x06\xb6\xb7\xb7\x9b\x00\x4b\x48\x44\x82\x24\xc2\x85\x59\x10\xad\x1d\x86\x4b\x8b\xd3\x70\x6d\xf9\x28\xdc\x5c\x99\x84\x5b\xbd\x99\x38\xd1\xc9\x68\x25\xdf\xc4\x93\x22\x00\x42\x91\x4a\x32\x52\x93\x4c\x60\x9c\x0a\x35\x9e\x84\xf2\xc1\xb0\x97\xde\x1d\xc6\xd9\xce\x41\x37\xdd\xdb\xef\xa5\xc3\x83\x6e\x36\x49\x03\x55\xa5\x25\x9b\xbf\xcd\xcd\x4d\xf1\xcc\x33\xcf\xc8\x77\xdf\x7d\x57\xdc\xb9\x73\xe7\x38\x4a\x85\x5b\x96\x9e\x46\x30\x53\x0b\x52\x60\x72\x7f\x90\x7c\x71\x7b\x79\xfa\xd1\xc2\x34\x58\x3b\x31\xee\x6c\x87\x59\xe1\xef\xa8\x57\xa2\xc1\xde\xc3\x48\x07\x2e\x90\x8d\x20\xd7\xd6\x79\x7b\x94\x58\x40\xbe\x5c\xb1\x56\x44\x80\x8c\xac\xd0\x15\x68\x7a\x53\x00\x26\x1d\xb9\x7f\x6f\x71\xfa\xc9\x6f\x56\x27\x1f\x8d\x73\x0b\x83\x16\xd4\xb5\x16\x86\xa3\xa3\x23\x7c\xf6\xd9\x67\x08\xc3\x10\x41\x10\xc8\x62\x7b\x10\x2d\x1b\x4d\x9f\x28\xa5\x92\xc2\x51\x7f\x02\x20\x02\x61\x9c\x0a\x15\xfd\x66\x65\xf2\xeb\xc5\x49\xb0\x12\x66\x14\xaf\x1c\x75\xb6\x42\x89\x48\x8f\x42\x4e\xe4\x66\xac\x6b\xe5\xc2\x55\x74\x98\x61\x32\x4f\x40\x65\x7a\xa3\x50\x80\x39\xe6\x97\x7b\xea\x70\x4e\x32\x13\x2a\xb9\x3f\x48\x3e\xfe\xd5\xc9\xf1\x7b\xf7\x07\xb3\xcf\x67\x81\x1a\x01\x73\x20\xce\x47\x47\x40\x35\x8d\xf8\x42\x1b\x05\x32\xb7\x68\x3b\x91\x3e\x86\xdf\x24\xcc\xcc\xe0\x3d\x71\xe2\x04\x9e\x78\xe2\x09\xeb\x21\x73\xd2\xd5\x69\x45\xa0\x10\x86\x99\x88\x84\xa2\x88\x13\x8d\xb5\xcc\xcb\x45\xdc\xba\x53\xed\xf2\x58\x3d\xf3\x75\x96\x41\x33\xb6\xe2\xb3\x58\x3c\xb7\x34\x8f\x71\x26\x6f\x36\x21\x82\xfd\xa1\xcb\x01\x02\x99\x06\x72\x32\x0b\xe4\x44\x92\x6d\x69\xe1\x16\x97\x3a\x7f\x19\x34\x7f\xd4\x3a\x81\xc9\x9f\x1f\x4b\x13\x6a\xd9\x0e\xf7\xbb\xeb\xb8\xe3\x82\xae\xe3\xd4\x7d\x1c\xb0\xec\xe6\xaf\xea\x9f\xaa\x74\x75\x75\x7d\x99\xf7\x92\x00\xb0\xb9\xb9\x89\xed\xed\x6d\x00\xe0\x9a\xb4\x5e\x45\x14\x01\x08\x85\x44\x1c\x0f\xe5\x56\x7c\x20\x2f\x07\x33\xb5\x45\x80\xb0\x84\xba\xab\x16\x2a\x87\x8e\x2c\xfc\x52\xb2\x6a\xc6\xea\xcb\x69\x50\x0d\x0e\x50\x30\x71\x66\x77\xe7\x00\xc2\x52\x1a\xf8\x98\x44\xb9\x9f\x4a\x8e\x2d\xca\x93\x66\xf3\xf1\xaa\xe6\x14\x03\xbb\x9d\xde\x0d\x06\xca\x24\xa5\x66\x51\xa6\x65\xf9\x8c\xe3\x70\x29\x7d\x50\xfa\xe5\x68\x5e\x31\x0f\x5a\xf2\xb2\xcb\x2c\x80\x82\x48\x69\x3d\x1e\x65\x57\xfb\xfb\xd9\x2f\xd3\x48\x0c\xb3\xc8\x9c\x5f\x24\xf5\xd2\x68\x00\x88\xa2\x48\x5e\xbe\x7c\x19\x0e\x70\xe1\xe1\x38\x8a\x85\xf5\x6c\x30\x18\xe0\x6b\x5f\xfb\x1a\x9e\x7c\xf2\x49\x17\xb4\x68\x50\xab\x57\x9e\x89\x20\xa3\x68\x69\x1a\xf4\xd7\x47\x9d\x8d\xb5\x71\xe7\xcc\xfa\x61\xe7\xdc\xd2\x24\xfc\x4a\x6f\x26\xce\x45\x99\xd8\x14\x12\x03\x01\xea\x93\x2a\x8f\x33\x00\x90\x2a\x42\xaa\xa0\x12\x00\x69\x46\x18\xce\x0e\xe4\xce\x24\x94\xb7\x0f\xba\xd9\x67\x0f\xfb\xb3\x5b\x0f\x16\x66\xb7\xee\x2f\xcc\x76\xf6\x7b\xe9\x70\x16\x2a\x73\xa2\x3d\x9f\xda\xd1\x6d\x3f\x73\xe6\x8c\x28\x1c\x2e\xc5\x9d\x3b\x77\xf8\xfb\xcc\xbd\xf3\x87\x1f\x7e\x88\x6e\xb7\x2b\xd7\xd6\xd6\xb8\x22\x94\x9a\x76\xe5\x82\xda\x58\x18\xc6\x1d\x39\xbc\xbd\x32\xf9\x75\x7f\x26\x56\x3a\x92\xfa\xcb\x47\xe1\x66\xa0\x28\x2c\x89\xb1\xa0\x53\xc3\x9f\x8b\x68\x94\x34\x67\x2d\x5d\xf6\xd0\x41\x39\x05\xe4\x6e\x42\x5a\x88\x67\x6b\xc0\x95\x40\x28\x09\xe4\xf8\xfe\x60\xf6\xe9\xa7\xab\x93\xf7\x77\x17\x66\x5f\x28\x81\x31\x3c\x3e\x1d\x98\xe7\x31\xa6\x7f\xd2\x34\x15\x37\x6f\xde\xe4\xfb\x9a\xf1\xbe\xd3\xd6\x89\x04\x40\xa2\x94\x9a\x14\x20\x66\x7c\xd4\x91\xc3\x4f\x4e\x1c\x7d\xd8\x4d\xc5\xe0\xf1\x3d\x60\x79\x12\x6e\x76\xb2\x52\xc9\xe7\x61\xde\xe2\xaa\x01\x9d\x3f\xde\xb5\xc4\x5a\x7b\x33\x39\x3d\xa4\x00\xcc\x02\x35\x79\xd0\x9f\xdd\xfa\xe8\xe4\xf8\xdd\xcf\x97\xa7\x9f\x4d\x43\x39\x04\x61\x0c\x60\x0c\x07\xbc\x38\x16\x36\x00\xc0\xcd\x9b\x37\xf1\xe8\xd1\x23\xb7\xd9\x55\xbc\xb7\x8d\xe2\x2c\x01\xff\x54\xd1\xdc\x74\x0f\x6a\x88\x95\x3f\x5b\x5f\x5f\x17\x17\x2f\x5e\x14\xdc\x1a\xe2\x9a\x3a\x95\x52\x42\x48\x0a\x43\x89\x58\x28\x84\x5a\xf3\x03\x4a\x26\xa6\x77\xaf\xb5\x1c\x73\x0d\xb3\x9a\x0f\x9c\x90\x8d\xe6\x66\xe6\xfd\x95\x59\xd3\xcf\x37\xf3\x29\x7d\xb9\x6c\x9c\x69\x04\x81\x05\x84\x58\x65\x05\xa1\x4b\x92\xe9\x4c\xa8\xc9\x4c\xa8\x29\xc8\x26\x58\xcf\xd2\x67\xe3\xa4\x5b\xd1\xaf\x6e\x9c\xdb\xe7\xa2\xe2\x19\xe0\xff\x26\x75\xe5\xe9\x78\x9e\xb7\x49\x63\xf4\x11\x94\xab\x71\xba\x6d\xa9\xb3\x7c\xb4\x05\x3d\x55\xd3\x4d\x6e\x5c\x5b\x0d\xd8\x67\xcd\xe1\x6d\xf4\x95\xdb\x54\x97\xf5\x3e\xa7\x4f\x9f\xc6\xb9\x73\xe7\x2c\xa1\xc4\xa7\x8b\x88\x28\x8a\x26\x72\xa9\x3f\xcc\x9e\x8c\x8e\xe4\x45\x21\x31\xb0\x19\xa7\xd6\x7d\xf2\xa0\xf9\xf1\x9c\x51\xc1\xf8\x7e\x90\x95\xcf\xd2\x24\x89\xd1\x78\x39\xc8\x78\xf6\xc2\xfa\x08\xc6\xd0\xca\x07\xca\x8c\x27\xc6\x10\x89\x8d\x13\x9d\x4e\xb7\xc9\x61\x94\x2e\x93\x84\x2a\x9d\xe3\xb5\x22\x91\x4f\xd1\x96\x79\x4d\x33\x15\x3f\x6b\x46\xcf\xb5\xb3\x8e\xe0\xc5\x52\x31\x8a\x99\xaf\x4f\xc1\x06\xdc\x3e\x08\x3b\x53\x75\x79\xb0\x27\x9f\x1c\x2f\xcb\x3b\x59\x28\xc6\xda\xea\x52\x08\x0d\x43\xd7\x42\x08\xf9\xd4\x53\x4f\x89\x0f\x3e\xf8\xc0\xac\x0c\x61\xc1\x37\x06\x7c\xcf\xcd\xb3\xd5\xd5\x55\xb1\xb9\xb9\x89\xe5\xe5\x65\x7c\xf5\xab\x5f\x35\x9b\x72\xaa\xf2\x80\x4d\x33\x9d\x18\x28\x8a\x16\xa6\x41\x7f\xfd\xb0\xb3\x7e\x7a\xd8\xbd\xf8\xd8\x7e\xf7\x77\x16\xa7\xc1\x95\x28\x13\x67\xc2\x8c\x36\x85\xc2\x12\x01\xb1\x26\x0c\x62\x08\xcd\xe6\x5f\x84\x50\x01\x51\x46\x49\x2f\x11\xc3\xa5\x49\xb8\xbb\x31\xea\xdc\x19\x75\xb3\x0f\xee\x2e\x26\x3f\xfb\x7c\x79\xfa\xf1\xee\xc2\xec\xee\x7e\x2f\x1d\x2a\x01\x3e\x7d\x01\xf6\x7e\xe9\x99\x33\x67\xf4\x34\x87\xde\x89\xd7\x3b\xbe\x3e\xfa\xe8\x23\x79\xee\xdc\x39\xb1\xb6\xb6\x06\xc7\xea\x2c\x01\x68\xeb\x82\x01\x2e\x4a\x60\xbc\xd7\x4f\x77\x3e\x5d\x9b\x7c\xd0\xc9\x44\x3f\x90\x14\x2e\x4e\x83\x0d\xa1\x20\x8c\x0c\x30\x04\xe6\x80\x6d\x4d\x13\xec\x43\x1b\xa0\xcb\xe9\x15\xe5\xf7\xd7\x84\xc1\xed\x93\x86\x1e\xb5\xb3\x79\xe1\xd7\xb2\xd7\x9f\xdd\xfe\x74\x6d\xf2\xfe\x9d\x95\xe9\xbf\x4f\x42\x39\x02\x30\x29\xc0\x45\xc2\xa7\x44\x9c\x7d\x59\xb0\xbf\xbf\x8f\x5b\xb7\x6e\xe9\x46\x4a\x00\xe2\xfd\xf7\xdf\xc7\xa5\x4b\x97\x64\xb1\x2f\x8f\x06\x71\x82\x4f\x17\x11\xd1\x04\x40\x08\x42\x04\x60\xbc\xdf\x4b\x77\x3e\x3e\x39\xfe\x85\x24\x85\xf3\x0f\xe3\x74\x6d\xdc\xd9\x8a\x32\xf4\x8d\x05\x4a\x8f\x78\x23\x27\xb9\xe5\x32\xbf\xe7\xdb\xeb\x71\x06\x62\xcf\x30\xf0\xee\x2d\x55\x1c\x05\x20\x09\xd5\x78\xaf\x3f\xbb\xfd\xd1\xc9\xf1\xbf\x7e\x72\x62\x72\x73\x1c\xc9\x3d\x09\x35\x26\x10\x07\x2c\xb5\x16\xa8\x9b\x37\x6f\x62\x38\x1c\x56\xc9\xb4\xaa\x71\xe3\x86\x39\x5e\xdb\x74\x3a\x74\x9d\x60\x6a\xaa\x50\x9b\xc7\xf9\xbe\x2e\x85\xc5\x85\xc2\x40\x52\x44\x2a\x07\x4e\x65\xe7\xf2\xbb\x82\xdc\x1c\xb0\xc2\x19\xa2\x65\x12\x63\xdc\x55\xf1\x69\x27\xa7\x3c\x4e\xc6\xa5\x70\xe0\xc3\x81\x5d\xab\x12\xf4\x98\xca\x75\xb9\x02\x69\x12\xa8\xf1\x2c\x77\xd8\x92\x80\x7f\x37\x45\xbd\x0f\xc3\xc3\x87\x0f\xe5\xc3\x87\x0f\x79\x5f\xb5\x41\x9c\x70\xd2\xfa\xa6\x39\xdc\xd0\xc6\x5a\x51\xa5\x31\x36\x4d\xb3\xf8\xea\x11\x15\x71\xad\x08\xb0\x22\xae\x8d\xd5\xa5\x6a\x4a\xa9\xae\x3e\x1e\xaa\xe2\xab\x40\xa3\xfb\x6c\x2e\xef\xda\xda\x9a\x58\x59\x59\x31\xd6\x45\x87\xee\xf3\xfd\x5b\xa4\x8a\x7b\x07\xd9\x46\x3c\x92\x57\x82\x99\xda\x24\xe8\x55\x75\xcc\xa2\xa8\x18\x7d\x12\xcc\x6e\x98\x7c\x53\x47\xd7\xb9\xcb\xa2\x6e\xa3\xa5\x6a\xe3\xb2\x0d\x8c\x0c\xe1\x6b\x60\x61\xb8\x7c\xb9\x91\x17\x28\xb7\x4c\xea\xc3\xde\xb4\x30\x24\x07\x30\x95\x16\x4b\x0b\xa1\x14\x1b\x56\x15\x77\x7c\x5a\x57\x33\x5e\xb2\x05\xac\x0e\x54\xa4\x87\xd6\x04\x0b\xc1\x64\x7c\x64\xe6\xb4\x6a\x06\xd4\x58\x14\x91\x1e\xbb\x76\x9e\x20\xc5\x66\xef\x20\xbb\x12\x8f\xc2\x9b\x69\x8c\xfd\x4c\x94\x56\x17\x94\xd6\x01\x19\x04\x81\x78\xf5\xd5\x57\xf1\xab\x5f\xfd\x4a\xa6\x69\x5a\x45\x47\x6d\x2d\x83\x62\x6b\x6b\x0b\x2f\xbf\xfc\x32\xa7\x23\x20\xa7\x09\x03\x58\x00\x84\xdd\x94\xe2\x95\x71\x67\xfd\xcc\xa3\xee\x85\xb3\x0f\xbb\x5f\x5b\x1b\x77\x9e\xe9\xcd\xc4\xe5\x40\x8a\x2d\x81\x7c\xcf\x13\x0d\x2a\xf5\xa7\xb3\x36\xda\xb4\xc0\xa3\x2a\x2a\xa3\x88\x24\xd6\x43\x45\xeb\x51\x46\x17\xba\xa9\xb8\x3c\x98\x86\x57\x36\x46\xd1\x7b\x77\x96\xa6\xff\xf6\xc9\x89\xa3\x8f\xf6\x16\xd2\xbb\x93\x8e\x9c\x80\x5b\x6e\x72\x01\x1d\x12\x91\x3c\x7b\xf6\x2c\x84\x10\xf2\x27\x3f\xf9\x89\x28\x56\x0f\x79\x95\x91\x9d\x9d\x1d\xac\xaf\xaf\xcb\xc2\xd1\xd7\xb5\xbc\x68\x0b\xc3\xa4\x78\xdf\x28\xcd\x97\xd7\xfe\x46\x48\x8a\x42\x49\xd1\xd9\x87\xdd\x70\x21\x09\xd6\x02\x05\x61\xa6\xf2\x8b\x0a\x4a\x70\xca\x6d\x8b\x9a\x4e\x94\x19\x13\xee\x2e\xbb\x25\x28\x61\x20\xcf\xd0\x4c\x51\x7a\x11\x3f\x13\x2a\xd9\xeb\xcf\x6e\xff\xfb\x89\xa3\xf7\x6e\xad\x4c\x7e\x75\xd0\xcd\xf6\x50\x4c\x11\x69\x6b\x11\x73\x34\x36\xa0\x45\x8f\xcd\x9d\x9d\x1d\xfc\xf2\x97\xbf\xb4\xf8\xd9\x0f\x7e\xf0\x03\x3c\xfe\xf8\xe3\xa2\x00\x2e\x32\xaf\x8e\x52\xe4\x3c\x22\x01\xe0\xfa\xc1\x85\x4a\x40\xdc\x5f\x98\x7d\x9e\x0a\xc8\x59\xa0\xd2\xed\x3d\x95\x9e\x18\x77\xb6\xba\xa9\x18\x08\xa5\x2d\xb9\x25\x3c\x23\x36\x7e\x95\x2a\x41\x4d\x3e\x5d\x0c\x43\xff\x46\x21\xd0\xa0\x46\x8f\xc3\x52\x63\x40\x46\x48\x27\x1d\x39\x7a\xb0\x90\xdc\xfe\xf5\x89\xc9\x7b\x1f\xaf\x8f\x7f\x39\x8e\xe4\x9e\x82\x1a\x11\x91\xb6\xb4\xe8\xbf\xd4\x07\xe4\x94\x52\xb8\x7d\xfb\xb6\x4c\x92\xc4\x1a\x07\xc5\xaf\x65\x95\x61\xa1\x4a\x31\x9d\x4b\xc3\x81\x4b\x9d\xc9\xbc\x4e\x13\x9e\x7b\xce\x7d\x50\x7c\xbb\x39\x0a\x49\x61\xa0\x28\x12\xa0\x90\xaf\x1a\x30\x7e\x54\xcc\x77\x05\x80\xcd\xb0\x2d\xe7\x3f\x14\x4c\x9a\xcc\xd2\x49\x82\xe6\xe5\x5c\x77\x75\xd0\x0f\x00\xd7\x74\xe8\x06\x3e\x3f\x5e\xe6\x61\x1d\x43\x2a\x49\x03\x35\x49\xf3\x93\x31\xe7\x96\x41\xf3\x76\x03\xc0\x47\x1f\x7d\x84\x8f\x3e\xfa\xc8\x27\xa0\x7d\xc1\xc7\x24\xdb\x30\xc8\xaa\xd0\x64\x8d\xa8\x63\xc0\x95\x4c\xaa\x22\xbe\x0a\xec\xd6\x01\x95\x2a\xc0\x54\x45\xe8\xae\x00\xe0\x6d\x75\x7f\x5d\x30\x54\x15\xcf\xeb\xac\x7b\x07\xb7\x2e\x93\xe7\xf2\xe5\xcb\xb8\x78\xf1\xa2\x25\xd8\x0a\x2d\x33\x04\x10\x29\xa5\xa2\x70\xa6\xfa\xf1\x50\x6e\x47\x47\xea\x82\xc8\xb0\x64\x03\x16\xcd\x44\xad\x9f\x1c\xb4\xe8\x7b\x3e\xa6\x38\xea\x20\xcc\x8d\x35\xed\x6d\xa8\x1d\xd0\xa1\x88\x6d\x09\xce\x26\x99\x4c\x31\x64\x7e\xad\x5d\x4b\x2d\x64\xa4\xcb\x2c\xb4\x3e\x5d\x56\x01\x16\xf2\x86\x68\xed\x58\x95\xf2\x04\xe5\x38\x2d\x38\xa6\xf3\x92\x30\xe5\xce\x8f\x57\xe6\x6c\xc8\xbb\x89\xb4\x62\x52\x02\x3e\x53\x26\x03\x3a\xc6\x2f\x98\x14\x20\x29\xea\x4c\xd4\xa5\x85\xfd\xec\xdc\x64\x49\xdc\xce\x42\x8c\x51\x6a\xbe\x7a\x75\x91\xa1\x8d\x8d\x8d\x0d\xdc\xbb\x77\x0f\x59\x96\xf1\x06\x55\xf1\x45\xf7\x39\x00\x60\x61\x61\x41\xaf\xd8\x81\xde\x8f\x85\x59\xa1\x73\x87\x6d\x85\xa8\x9b\x52\xbc\x35\xec\x6e\x3d\x71\xbf\xff\xcc\xe9\x61\xf4\xea\x42\x12\x5c\x0b\x33\xda\x12\xc8\x17\x31\x98\x97\x63\x7d\x61\x59\xdc\xc8\xb2\x23\xd8\xdd\x6c\x9e\x51\xd4\x91\xb4\x15\x24\x6a\xbd\x9b\x76\x2e\x2d\x4e\x83\x2b\x27\xc6\x9d\x1f\x7e\xb0\x31\xfe\xff\x6e\xad\x4e\x6e\x1f\x45\x72\x54\xb4\x4b\xd3\x92\x39\xc9\x79\x6b\x6b\x0b\x2f\xbc\xf0\x82\xfc\xc1\x0f\x7e\x20\xf6\xf6\xf6\xf8\x2b\x9a\xf1\xf3\xde\x7b\xef\x61\x30\x18\xe0\xe9\xa7\x9f\x06\xdb\x3c\x4f\xf7\x69\x82\x7c\xca\x74\xc2\xc6\x45\x38\x0b\x95\xb8\xbb\x34\xfd\x4c\x00\x21\xa0\xf0\xd8\x7e\x7c\x79\x71\x1a\xac\x09\x50\x58\xbe\x32\xb7\xc4\x73\x7b\x8a\xfe\xd6\x0c\x70\x83\x83\x39\xab\xdb\x4a\xa9\xa0\xc1\xad\xe9\x3f\xa5\xa7\x45\x6e\x7f\x72\xe2\xe8\xdd\x4f\xd6\x8f\xde\x7f\xd8\x4b\xef\x2a\xc2\x58\x29\x35\x66\x02\xdb\x80\x17\x30\x0b\x03\x11\xc9\xc3\xc3\x43\x59\x9c\x77\x35\x47\x07\xf7\xef\xdf\xc7\xd6\xd6\x16\xb7\xba\x48\xe4\x96\x3e\xd3\x2f\x28\x01\x5d\x6e\xa9\x15\x10\x0f\xfb\xb3\x7b\xa9\x90\x72\xda\x91\x93\xf3\x7b\xf1\xe8\xe4\xa8\x73\x6e\x21\x09\x56\x42\x49\x51\x39\x4d\xc6\xc7\x92\xb3\xe2\x08\x36\x88\xd3\xdb\xfc\x1b\x59\x59\x28\x06\x2a\xef\x2b\x99\x06\x2a\x39\xe8\x66\xfb\xf7\x16\x93\x4f\x3e\x5d\x3b\xfa\xe0\xd6\xca\xf4\xd7\x93\x48\xee\x01\x18\x11\x48\x4f\x11\x99\xbe\x28\xa6\xff\xcc\x34\x23\x73\x97\xc0\x3f\xfd\xd3\x3f\xe1\xf0\xf0\xd0\x37\x56\xea\xf8\x7d\x93\xe2\x9c\x2b\x16\x2c\x82\x51\x82\x37\xb1\x62\xbf\xe4\x69\x88\x5a\x5f\x5f\xa7\xf3\xe7\xcf\x13\xe5\x3b\xe4\x52\x11\x1f\x12\x51\x07\x40\x57\xff\xad\x1c\x85\x27\x4f\x0f\xbb\x4f\xad\x1c\x85\xdb\xa1\x12\x31\xe7\x9b\x26\x68\x1e\x58\x74\x82\x19\x78\xae\xa9\x5b\xf3\x4e\x62\xf9\x55\x99\xce\x07\x5a\x7c\x4b\xa9\xdd\x60\xf1\x7f\x3e\x08\x8a\xeb\x24\x54\xc3\xdd\x41\xf2\xeb\xbb\x4b\xc9\xc7\x47\x5d\xb9\x8f\xc2\x94\x88\x02\x85\x12\xd1\x8c\xca\xcd\xe7\xd4\xed\xdb\xb7\xd5\xbd\x7b\xf7\x38\x6b\xad\xeb\x6f\xde\x0b\x40\xde\x8f\xbe\xf4\xbe\xf8\xa6\x6b\x5f\x9d\xbe\x67\xfc\x7b\xf3\x78\xfe\xed\xdd\xb2\x78\x5a\x7d\xad\x09\xb0\xae\x0e\x5e\x1e\x93\xc6\x00\xfc\xc4\xab\xd8\x9f\x6e\x8f\x6e\x6b\xd5\xbb\xb5\x7d\x3f\xb7\x0d\x2e\x68\xa9\xaa\x43\x9d\x3d\x7b\x96\x4e\x9d\x3a\x45\x4c\x38\x05\x28\x57\x12\x75\x09\xd4\x8b\x0f\xe5\xda\xca\xbd\xf4\xeb\xf1\x28\xbb\x1e\x48\xb5\x5c\x0a\x5e\x5d\x94\x06\x0a\x34\x07\xd8\xcd\xb5\xd1\xb2\x08\x3c\xbf\x8f\xa6\xb5\x16\xae\x81\x38\x07\x25\x25\xb0\x20\x33\xdd\x02\x18\x29\x5f\x08\xc7\xf9\xb1\xc2\x81\x93\x06\x45\x66\x73\x2b\x03\x66\x8a\x77\xd1\x16\x21\x9d\x16\x04\xeb\x5c\xa3\x82\x71\x82\xf7\x43\x61\x61\xe1\x60\xa5\xb4\x06\xe9\x77\x2d\x44\x10\xd3\xaa\x4b\xc0\x02\xd3\x3f\x45\x33\x8c\x55\xa8\xa8\x29\xca\x42\xdc\x3b\x5a\x0e\x6e\xcf\xba\x34\x44\xce\x78\x33\x22\xca\x8a\x16\x19\x94\x72\xe9\xd2\x25\xfa\xf0\xc3\x0f\x55\x92\x24\x9c\x26\x34\xed\xf0\xb1\xe7\xf2\x48\x00\x50\x71\x1c\x8b\x67\x9e\x79\x06\x4f\x3f\xfd\xb4\xb5\x73\x78\x21\xb8\x73\xbe\xa8\xd0\x8d\x53\xb1\xb0\xbd\xd7\x3b\x77\xe5\xde\xc2\x1b\x8f\xed\x77\xff\x70\x30\x0d\x9e\x0f\x95\xd8\x84\xa2\x50\x0b\x58\x07\x6e\x9a\xfe\xd4\xef\x58\x92\xa2\x67\xda\xc4\xea\x67\x05\x01\x0a\x84\xc4\x62\x27\x13\x5b\xfd\x59\xf0\xd8\xea\x51\x27\x16\x0a\x7b\x7b\xfd\xd9\x28\x13\x90\xc5\x54\xa0\x2a\xbe\x35\x29\xa5\x14\x11\x61\x61\x61\x01\x9b\x9b\x9b\xea\xd6\xad\x5b\x98\xcd\x66\xde\x31\xbd\xb1\xb1\x41\x27\x4e\x9c\x50\x5a\x48\xb3\x69\x31\x50\x1e\x04\x6b\xb1\x00\x40\x29\x29\x8c\x23\x39\x39\x8c\xb2\x11\x88\x64\x37\x13\xbd\x6e\x26\x62\x52\x08\x0a\x4a\x62\xe0\x45\x83\x52\x4d\x1f\xe5\x76\xf4\x25\xbe\x2e\x69\x96\x38\x2d\x9a\xfb\x92\x4e\x15\x94\x9c\x86\xf2\x70\x67\x71\xf6\xe9\xaf\x4e\x1e\xfd\xdb\x27\xeb\x93\x0f\x1e\xf5\xd2\x7b\x52\x60\x04\x40\x5b\x19\x8e\x8a\x3f\xcd\xe3\x33\xe4\xc0\x25\x2b\xfa\x46\xdd\xbc\x79\x53\xfd\xeb\xbf\xfe\xab\xe6\x45\x9c\x4e\xd4\xc7\x1f\x7f\xac\x36\x37\x37\x69\x61\x61\x81\xf4\x5e\x41\x79\xb6\x62\x94\x95\xd7\x86\x96\x0a\xa5\xfe\xff\xa7\xed\x4d\x7f\xec\x38\xce\xf3\xd1\xe7\xad\xee\xd3\xe7\xcc\x99\xc3\xd9\x38\xa4\x28\x89\xa2\x28\x92\xa2\x64\x45\x92\x25\x2b\x92\x62\xd9\x96\xbc\xc4\xbe\xf6\x55\x1c\x03\x71\x2e\x82\x7c\x08\x60\xe4\xff\x0a\x90\x7c\x48\x02\x03\x06\x02\x18\x71\xbc\xc4\xca\x35\xe4\xab\x9f\x15\x7a\x91\x45\x49\x14\xa3\x85\x5a\x48\x4a\x43\x0e\x39\x1c\xce\x9c\xb5\x4f\x77\xd5\xfd\xd0\x5d\x55\x6f\x55\x57\x77\x9f\xa1\x9d\x02\x66\x4e\x2f\xb5\x77\xd5\xfb\x3e\xef\x53\x9b\x9a\xc5\x72\xbe\xd7\xcb\xf6\x47\xdd\x7c\x7f\x2e\x30\x8d\x80\x28\x96\x22\x11\x8a\x62\x03\x63\xf9\xdc\x33\xc6\x22\x99\x36\x53\xf6\x4d\xcd\x95\x9a\x86\x5b\xb6\x8f\x5c\x20\x9d\x76\xf2\xe1\xf6\x60\x7e\xe5\x83\xc3\xd3\xf3\xff\x73\x74\xfc\xe6\xd5\xd5\xd9\xa5\x34\x96\xb7\x89\x68\x08\x60\x04\x60\xa4\x94\x1a\x11\xd1\x04\xc0\x44\x29\x35\x03\x30\x2b\x99\x28\xbe\xa2\x48\xee\xef\xef\xab\x8b\x17\x2f\xea\x36\xe2\xf7\x0d\xde\x7f\xb8\x7c\xf7\xf5\x8c\x0a\x5c\x2b\xc0\x65\x5c\x9a\xe8\xf9\x26\x4b\x96\x3f\xaf\xb0\x2d\xe5\x07\xd2\x8d\x46\xa0\xd8\x80\xce\x0c\x15\x99\x9c\x31\x55\xc5\x57\x11\x71\x99\xc9\x25\x47\x2d\x2e\x51\x6e\xe7\x36\x45\x25\x1e\x36\x30\x91\x90\xab\x4a\xcf\x79\x8c\x11\x94\x02\x64\xb1\xf9\x5c\x9a\x09\xe5\xa0\xee\x70\x0c\x41\xd7\xc4\x34\xf0\x7b\xdf\xfa\x0f\x0d\x2f\xb5\x21\xd5\x45\x59\x8e\xb6\x67\x3c\xbd\xba\xeb\x10\x5b\x12\xba\xd6\xf7\x8b\x94\xd9\x8f\xcf\x7f\xc6\x9f\x1f\x34\x3f\x7e\xda\x75\x69\x34\xe5\x47\x08\x21\x7c\x86\x51\xb0\xbf\x62\xa7\x5c\xa5\x92\xde\x50\x1e\x4d\x26\xf2\x8c\xc8\xb1\x62\x57\xc9\x30\x4b\xd9\x68\x6a\xfd\xcb\x84\x90\xb2\x7d\xd7\x61\x1f\x19\x60\xd7\x4a\x5b\xcb\x33\x2a\xa5\x13\xdf\xa4\xce\x32\x96\xae\x75\x0a\x55\xea\xfd\x92\x65\x51\x44\x76\x88\x46\xe7\xc5\x18\x05\xca\x60\x05\xc0\x03\x3e\x15\x67\xcb\x63\x7c\x94\xf9\x34\xfb\x75\xf0\x1d\x73\x2b\x73\x35\x5c\x10\x62\xad\x9c\xaa\xa0\xb0\xd9\xb5\x7d\x9c\x97\x91\x08\xa0\x5c\xad\x24\x13\x75\xaa\xb7\x9f\x1f\x9b\xf5\x69\x2b\xeb\x92\x6b\xe9\x16\xf3\x0f\x42\xec\xb3\xdf\x46\x42\xed\xcf\x84\x13\x42\x88\x67\x9f\x7d\x16\x67\xcf\x9e\x15\xb0\x79\x10\x54\x6c\x40\x58\x1e\xb0\x89\xa4\x9b\x53\xff\xa1\x6b\xfd\x53\x67\xb7\xfb\x2f\x1e\x1e\xc5\x5f\x4d\x72\x71\x4a\x80\x12\x6b\xcc\x71\xe6\x58\x83\x16\x57\x8e\xf9\x6a\x1a\x26\x2c\xcc\x90\xb7\xae\x3c\x33\x99\xbb\x50\x6c\xbd\x6e\x86\xb3\x87\x47\xf1\xda\x63\xd9\xe0\x68\x2f\x8b\xfe\xf5\x37\xf7\xed\x5d\x4c\x23\x0c\x4b\x3f\x82\xad\x7e\xc9\x88\x48\x1e\x3e\x7c\x58\x7c\xe7\x3b\xdf\x91\xdf\xff\xfe\xf7\x45\x9e\xe7\x95\x3e\xf4\xdb\xdf\xfe\x56\x4a\x29\xc5\xd3\x4f\x3f\xed\xb0\x2e\x8c\x5d\xf0\xfb\x86\x00\x20\xe6\xb1\xc2\xd6\x4a\x2a\x47\x89\x9c\x0e\xbb\xf9\xee\x99\xed\xa5\x27\x8e\x0c\x3b\x27\x3a\x92\x7a\x76\x80\x03\x4e\x19\xec\xe2\x32\xae\x1d\x60\xea\xc8\x28\x0b\x66\xe6\x28\xd6\x4f\x24\x80\x71\x92\xef\x5c\x59\x9f\xbd\xf3\xee\xe6\xf8\xc2\xa7\x2b\xe9\x07\xd3\x8e\xdc\x95\x50\x43\x02\x0d\x19\xdb\x32\x66\x93\x8b\x2b\x6c\x4b\x9e\xe7\x52\x4a\x53\x15\xbe\xbc\x04\x00\xfc\xf8\xc7\x3f\x96\x2f\xbe\xf8\x22\xee\xbd\xf7\x5e\xad\x1b\x33\xd6\x26\x74\xbd\x80\xb5\x15\x00\x10\x0a\xc0\x24\x96\xf2\xf2\xda\x2c\xdd\xe9\x67\xbb\xd7\x0e\x25\x5b\xf7\xdf\xea\x9d\x3c\xb6\x9f\x9c\x3a\x34\x8d\x36\x92\x4c\x0c\x04\xc1\x02\x16\xe7\xe3\x17\xff\xec\x1b\xd7\xee\xca\x49\xc9\x49\x47\xee\xdd\xea\x67\x5b\x5b\x87\xd2\x0f\x3f\x59\x9d\x7d\x7c\x7d\x90\x6e\x8d\x13\x79\x1b\x64\x58\x96\xa1\x52\xc5\x30\x11\x15\x73\x71\x2a\xcb\xc2\x75\x7f\x51\x4a\xc9\x3c\xcf\xf1\xfd\xef\x7f\x1f\xac\x42\xea\x18\xca\x26\x7d\x19\x62\xb9\x8d\xab\x5b\x55\xb4\x88\x0b\x29\x47\xe3\x3c\x94\x6d\xf6\x73\x21\x10\x62\x89\x38\x96\x94\x50\x81\x18\x0d\xf2\xd3\xce\x82\x92\x52\x9c\x5b\xd9\xed\x88\x45\xdb\x4c\x5d\xcb\x83\x58\xe7\xe6\xf1\x85\xf6\x79\x50\xe5\x3f\x63\x99\x34\x14\x98\xcb\xcc\x72\x39\xf4\x34\x67\xc0\xc5\xfb\x0b\xd5\x11\xbc\xe7\xc1\x06\x8e\x30\x68\x58\x04\x50\xd6\xc5\xd3\xe6\x9a\xe2\xf6\x5d\x08\x18\x84\x1a\x57\x1d\xd8\x69\x8a\xcf\x0f\x5b\x57\x07\x6d\xc3\x50\x4d\x43\x42\x75\xe1\x10\x78\xb6\x68\x5d\xca\xaf\x7c\xe5\x2b\xe2\xf4\xe9\xd3\x42\x29\xa5\x27\xa4\xeb\x5f\x43\x89\x47\x73\xf4\xfb\xb7\xf3\x07\x3b\x33\x79\x9c\x14\x7a\x44\x16\x64\x6b\xcb\x91\x33\x10\x5a\x69\x01\x60\xca\xba\x7c\xe6\xdc\xdb\xc7\xde\x05\x6b\xfc\xbe\x55\x60\xbd\x9a\x85\x90\xc6\x42\x83\xb9\x76\x59\x0c\x0e\x92\xdc\xce\x48\xfa\x19\xe0\x76\x34\xed\x4a\x70\xa2\x98\xf2\x35\x87\xe7\xb1\x72\x5a\x45\x4c\x81\xbe\x69\x01\x99\x61\x90\xc0\xce\x2a\x02\xf1\xa8\x6c\xc2\xcc\xda\xd6\x75\xd1\x49\xe5\x89\xa5\x7d\x79\xdf\x68\x5d\xbd\x97\x75\x31\x2c\x15\x87\x56\xce\x66\xb8\xd0\x9b\x54\x5f\x07\x5e\x82\xed\xe2\xeb\x5f\xff\x3a\xee\xbf\xff\x7e\x6e\x70\x98\x49\xb8\x54\x6e\x42\xd8\x91\xe8\x3f\xf6\xe9\xe0\xec\x43\xd7\xfa\x7f\xbb\x36\xe9\x3c\x1f\x4b\x3a\x46\xba\x3d\xb2\x0a\xd0\x20\x97\x5c\xbd\x53\xf9\xac\x1e\x81\x65\x3c\x59\xb5\x6e\x01\xaa\x06\xbe\x04\x12\xb1\xa4\x63\x2b\x53\xfa\xbf\x3f\x73\x6d\x79\x10\x29\xfc\xd3\x6f\x8e\xef\x5f\x98\x24\x72\x0f\xc5\xb0\x08\x60\x01\x47\x0c\x20\x1b\x0c\x06\xf8\xde\xf7\xbe\x87\x7f\xf8\x87\x7f\xf0\xeb\xc7\xcb\x9f\xb3\x11\xa7\x1e\x76\xf2\xc1\x8b\xf9\x3e\x52\x00\xb7\x97\x32\x79\xe1\xd8\x70\x72\xa3\x9f\xee\x3c\x78\xb3\x7f\xf6\xde\xdd\xe4\xe1\x95\x59\xbc\x19\xe7\x94\x14\x65\x2d\x87\x3f\x34\x28\xb5\xa9\x99\x6a\xe3\x78\x85\xdb\xed\xba\x39\x4b\x00\xd3\x8e\xdc\xbb\x39\x98\x5f\xb9\xb4\x31\xb9\xf0\xd1\xfa\xf4\xd2\xed\xa5\x6c\xdb\xb0\x2c\x20\xcd\xb6\x0c\x51\x0c\x8d\xe8\x09\xb4\xc1\x25\xd0\xbf\xfe\xf5\xaf\x71\xfe\xfc\xf9\x85\x65\xaf\x57\x2f\x69\xe0\x3d\xbf\x2e\xb6\xd3\x07\xb2\x61\x37\x9f\x8e\x0f\x4f\xf6\xaf\xad\xa4\x5b\x1b\xa3\xf8\xbd\x23\xa3\xe4\xe8\xd1\xbd\xe4\x9e\xc3\xe3\xf8\x9e\xe5\x34\x5a\x89\x25\xf5\x84\x22\x41\x0a\x42\xcf\x51\xd3\x85\x56\x04\x28\x52\x32\x8f\x90\x4e\x62\x39\x1e\x76\xf3\xdd\xdd\x5e\x76\xfd\xda\xa1\xf4\x93\xeb\x87\xd2\xad\xdd\xa5\xf9\xce\x2c\x56\xb7\xcb\xfd\x6a\xf4\x70\x10\x67\x9d\xf8\xfc\x16\x3d\x5c\xe6\xe8\xbd\x34\x4d\xf1\x4f\xff\xf4\x4f\x4d\x3a\x27\x24\xef\xdb\x5c\xc5\x6f\xdb\x06\x74\x6d\x8a\x8f\x67\xc2\x51\x00\x1e\xed\x65\xaf\x15\x84\x90\x22\x8e\x24\x25\x02\x10\xce\x86\x3a\x3e\x62\xae\x81\x11\x9c\x3f\x32\xfe\x98\xb1\x6a\x56\x54\x70\x70\xc2\xad\x36\x68\x85\x01\x66\xd5\x55\x73\x11\x02\x32\xfa\x79\x1e\x60\x5c\x9c\x3c\xb6\x1f\x8e\xd6\x24\xf4\x16\xfd\xa8\x6d\xf1\x84\xe2\xab\x63\x15\x9a\x58\x9a\xa6\xbc\x2d\x02\x2c\xea\xd2\xe5\xef\x9a\xd8\x16\x3f\xee\x26\x40\xd8\xf6\x7e\x91\xfc\x85\x98\x1a\x3f\x6d\x9e\xc7\x10\x13\x53\xd9\x78\xae\x33\x95\x83\xde\x48\x9e\x15\x19\xd6\xb4\x3f\x97\x19\xd4\xa0\xc2\x36\x5c\x73\x1a\x7a\x08\xbf\xd8\x80\x4e\x18\xdb\x90\xb5\xd2\xe3\x98\x87\x69\x37\x87\x4e\x27\x2f\x38\x47\xf9\xa1\xe4\xd8\xa4\xbe\x0a\x8e\xf2\x7a\x52\xa9\x24\xdd\x3c\x72\x76\x89\x0b\x69\x3b\xb9\xd2\xae\x72\x80\x61\x51\x2c\x10\x61\x39\x37\xd7\x76\xe8\xcb\x65\x6b\x6d\x8f\xd6\x20\x47\x64\xb4\x99\x8c\xe4\xc9\xce\x44\x6d\xce\xfa\x6a\x47\x45\x06\x60\x1a\x65\x5a\xe4\x87\xf0\xdd\xef\x7e\x17\x3f\xfa\xd1\x8f\xc4\xf6\xf6\x76\xa5\x9f\xa3\xa6\xcd\xbd\xf8\xe2\x8b\xe2\xee\xbb\xef\xd6\xb7\x46\x49\x2b\xa5\x12\xcd\xb4\x08\x85\xde\x99\xed\xfe\xf1\x33\xd7\x97\xfe\x9f\xb5\x49\xfc\xe5\x58\xe2\xa8\x4e\x5b\x17\x57\xcb\x36\x53\x0e\xce\xce\xf9\x5f\x4a\x33\x57\x14\x02\x7d\x2e\xae\xb5\xa0\xd4\xbe\x10\x0a\xfd\x7e\x2a\x9e\x7f\xe0\xc6\xd2\x74\x14\xcb\x7f\xbd\x78\xd7\xe8\xe2\x28\xc9\xf7\x4a\x39\xa6\xcb\xa7\x27\x95\x42\x08\x21\xbf\xf7\xbd\xef\x89\x7f\xf9\x97\x7f\x41\x9a\xa6\x4e\xff\x7c\xfd\xf5\xd7\x31\x9f\xcf\xe5\x73\xcf\x3d\xc7\xfb\x5a\xc6\xfc\x38\x0c\x03\xf3\x23\x01\x64\xb3\x48\x65\x57\xd7\x66\xe9\xad\xe5\xf9\xee\x91\xf5\xe4\xe3\x13\xbb\xbd\x93\x77\xdf\x4e\x4e\xae\x4e\xe3\xcd\x24\x17\x3d\xa1\x8a\xf9\x2f\x76\x18\xa4\x41\x5e\x97\x0f\x73\x52\x32\x13\x2a\x1d\x25\xf9\xde\xcd\xfe\xfc\x93\xab\x6b\xb3\x4b\x57\x57\x67\x57\x6e\x2f\x65\x37\xe7\x91\xda\x53\x76\xfe\x86\x06\x2b\xfe\x44\xd4\xca\xb9\x3c\x0d\x2c\x7b\xf0\xf9\x4f\x7f\xfa\x53\x7c\xf9\xcb\x5f\x96\x0f\x3c\xf0\x80\x66\xf5\xb2\x92\x7d\xcb\x9c\xa1\x61\x37\x1e\xbe\x6a\x27\x95\x84\x74\x98\xe4\xd3\x71\x27\xbf\xbd\xb5\x92\x6e\x2d\x6d\x8a\xf7\x56\x27\xf1\xda\xea\x34\x5e\x5b\x9e\x45\x83\xa5\x2c\xea\xf7\xe6\xd4\x4f\x32\xd1\x8b\x15\xc5\x0a\x40\x2e\x54\x96\x46\x6a\x3a\xe9\xe4\xe3\xfd\x5e\xb6\xb7\xbb\x94\xef\x0c\x93\x7c\x38\xee\xe4\xe3\x69\x47\x0e\x33\xa1\x46\x25\x60\xe1\xa0\x85\xff\xea\xbf\xa6\xd5\x44\x8b\xb8\x83\x00\x16\xdf\xbf\x69\x4b\x75\xcb\xa1\xdb\x14\x89\x2f\xbc\x9d\x06\xc8\xa8\x72\x73\x5d\x0a\x71\x44\x8a\xe2\x58\x52\x12\x29\xc4\x50\x88\xc3\x43\x3a\xaa\xa4\xab\x61\x7b\x1c\xa3\xfa\x42\x8d\x53\xfb\xe1\x02\x94\x4f\xfc\x85\x97\x0e\xf1\x1e\x0d\x87\x9a\x43\xb8\x0b\xb8\x4e\x11\xb2\xdc\x32\x2e\xba\x2e\x4c\xbd\xd4\x80\x16\x5f\x61\xb6\x7d\xc4\x10\xb8\x58\x44\xd9\x86\xc2\x87\xf2\xe2\xe7\x63\x51\xa0\xd1\x16\xff\x9d\xa0\xe9\xa6\xbc\xb4\xc5\x7d\x50\xc6\xa9\xcd\x4f\x5d\x7c\x75\xf1\xf8\xa0\x9d\x03\x16\x01\x05\x01\x20\xe9\x8e\xe4\x46\x3c\x55\x27\x49\xa2\xef\x61\x0b\x58\xcb\xba\x54\x4a\x65\xa3\x36\x16\x32\x60\x58\x05\x55\x06\x74\x86\x6c\xa8\xda\x39\xf8\xe4\x5b\x3b\x1c\xc4\x17\xff\x97\xe9\x72\xe0\xc0\x4d\x76\xa5\x15\x83\x79\xcb\xbc\x73\x50\xc3\xf6\x7a\x31\x7d\xce\x07\x2a\x1c\x8c\x15\xe9\x3b\x80\x4a\x83\x2c\x0f\x94\x98\x5f\xe2\x2c\x8b\xdf\x5f\x61\xea\xc5\x35\x56\xac\x42\x37\xf5\xa9\x7f\x25\xfa\x9d\x99\xba\x27\x99\xca\xcd\x28\x13\x1f\xcf\x05\xc6\xe4\x6d\xdb\x50\xde\xcb\x24\x49\x42\x43\x47\x8d\xae\xd3\xe9\x80\x9d\x37\x64\x87\x0b\xcb\x73\xaa\x84\xa2\xde\x5d\xfb\xc9\xe6\x67\xae\x2d\x7f\x7b\x7d\x12\x3f\x1f\x4b\xda\x04\x48\xb0\x12\x17\xbf\xce\xe7\xe1\xb5\xca\x06\x8f\x1c\x39\x06\x0b\xfa\x4c\x1b\xaa\x71\xce\xd9\x6e\x45\x8d\x09\x45\xfd\x43\xb3\xe8\xb9\x07\x6f\x2c\xed\x4e\x3b\x32\xfd\xe0\xf0\xe4\xbd\x72\xc2\xae\x53\xfe\xd2\xda\x46\x92\x24\xc1\xbe\x23\xa5\xd4\xab\xb1\x80\x6a\x7f\xd2\x93\x75\xa7\xc1\x7c\x95\xdb\x4b\x48\x20\x1b\x25\x32\x9d\xad\xcd\x46\x3b\xcb\xf3\x1b\x1f\xad\x77\x3e\x3c\x32\x4a\x8e\x6e\x8c\xe3\xa3\xab\x93\x78\x63\x39\x15\x6b\xdd\x4c\xf4\x22\x49\x31\x29\x12\x04\x08\x2a\xfa\x1a\x24\x41\x2a\x82\x2c\x0d\xcc\xe9\x38\xc9\x87\xb7\x7b\xd9\x8d\x9b\xcb\xf3\xeb\x37\xfb\xf3\x1b\xb7\x97\xb2\x9d\xfd\x6e\xbe\x3b\x8b\xe5\xbe\xd4\xfb\x92\x90\xa3\xa0\xf5\xf0\x90\x1e\x1e\x71\x96\x41\x03\x76\x78\xe4\xd5\x57\x5f\x95\x17\x2f\x5e\x04\xea\x0d\x1e\x53\x07\x59\x96\xe1\x95\x57\x5e\xc1\x7c\x3e\x97\x7a\x2f\x1f\x0d\x60\x02\x3a\x43\xc7\xe7\x00\x17\x14\x5b\xed\x67\x12\x98\xa6\x91\x1a\xcf\x45\x9e\x8c\x12\x79\xeb\xfa\xa1\x79\x37\x92\xe8\xc5\xb2\x98\x8a\x11\x49\x12\xa2\x1c\x6a\x52\x80\xcc\x05\xb2\x5c\xa8\x6c\x1e\xc9\xe9\x5c\xa8\x54\x0a\x35\x93\x84\x54\x01\x29\xa0\xa6\x28\x58\x47\x0e\x58\xa6\xac\xfc\x6d\x4b\xa0\xb1\xb7\xb7\x27\xff\xe3\x3f\xfe\xc3\xaf\x87\x26\xb7\xa8\xe1\x5d\x89\xb3\x69\x39\x74\x9d\x02\x69\xba\xaf\x0c\x07\x78\xab\x8b\x84\x50\x10\xb1\xc4\x52\xb1\xf9\x9c\xf6\x54\xf6\x21\xd2\x13\x87\x4a\xe1\xc4\x2c\x02\xff\x9b\x2a\x26\xa7\x9d\x09\xba\xca\x32\x2c\x75\x8e\x53\x8c\xd6\x10\xb5\x82\xbc\xd2\xd5\x3d\x1c\xa3\xa0\x64\x5e\x6c\xad\x9d\x49\x32\x8c\x8b\x66\x59\xa4\x27\x54\x17\x55\x82\xdc\x2d\xfa\x84\xd4\xfe\x08\x00\x00\x20\x00\x49\x44\x41\x54\x41\xdb\x86\x92\x42\xfe\xfc\xe7\x6d\x79\x0b\x0d\x99\x68\xff\x6d\xf9\xac\x03\xbd\xa1\x0e\xbe\x28\xe3\x13\x0a\xd3\x04\xae\xeb\x5c\x88\x00\x2d\x40\xd2\xbf\x25\x59\x24\x1f\x95\xb2\x7c\xfe\xf3\x9f\xc7\x3d\xf7\xdc\x63\x1e\x2a\x7b\xcc\x45\xa9\xb0\x54\x4c\x39\x92\xde\x48\x1e\x8b\xe6\x6a\x53\x6f\x03\x60\xf0\x09\x6c\xab\x73\x86\x87\x5c\xbd\x0d\xdd\x33\x0a\x05\x6d\x69\x8e\x66\x88\xed\x29\x3a\xed\xdf\x90\x10\xe4\x8e\xfa\x94\xe9\xf3\x79\x66\x4e\xe3\x2f\x01\x04\x4c\x5e\x79\x47\xe4\xfd\x48\xe7\x4f\x79\x9b\x5c\xd9\x30\x4e\x3e\x2a\x42\xdb\xdb\x8b\xc9\x39\xb0\xa5\x62\x95\x02\x2e\x54\x81\xa9\x51\x5e\x38\x46\x4d\x90\x82\x88\xe6\x6a\xb3\x33\x55\x47\x44\x86\x1e\x75\xcd\xbc\x13\x7f\xb8\x08\x38\x98\x81\x81\xaf\x7d\xed\x6b\x62\x6d\x6d\x4d\xdf\x72\x20\x14\x03\x48\x04\x28\x59\x9e\x47\x2b\x8f\x6e\x2d\x7f\xf1\xc8\xb0\xf3\x8d\x4e\x2e\x8e\xa1\x5c\x51\xc3\x01\x89\x99\x6f\xcc\x4a\x05\x26\xdf\xec\xbc\x1f\x56\x3f\x15\x6a\xce\x3d\xeb\x8d\x2f\x23\xe6\x71\xd8\xff\x0a\xb1\xa4\xcd\xf5\x71\xe7\xf9\x33\x37\x96\x76\x46\x49\x3e\xbd\xba\x36\xfb\x30\x8b\xec\x89\xf7\xac\x4c\x92\x88\xc4\x37\xbf\xf9\x4d\xf9\xd2\x4b\x2f\x09\xb6\x82\x04\x00\xf0\xd1\x47\x1f\xe1\xdc\xb9\x73\xf2\x99\x67\x9e\xe1\x7d\x28\x83\xeb\x38\x78\x31\x8c\x0b\x80\x4c\xa1\x38\x98\x71\x1e\xa9\x74\x4f\xe4\xe3\x49\x47\xde\xbe\xb9\x3c\xbf\xde\xcd\x44\xbf\x9f\x8a\xc1\x60\x16\xad\x1c\x9a\xc5\x2b\x4b\x73\xd1\xef\xe4\x22\x89\x14\x84\xde\x7d\x37\x13\xc8\xd2\x48\xa6\xa3\x44\x0e\x47\xdd\x6c\x38\xea\xe6\xc3\x61\x92\xef\x4d\x3a\x72\x98\x46\x72\x9c\x45\x6a\x92\x13\xc6\x70\x59\x86\x31\xac\xb2\x1e\x03\x98\x6a\xd0\x02\x38\xfb\xdc\x98\x72\xfe\xea\x57\xbf\x92\xef\xbd\xf7\x1e\xca\x65\xbf\xbe\xac\xf7\xe5\x9c\x04\x20\x27\x93\x09\x66\xb3\x59\xa8\x6d\x39\x75\xa3\xec\x79\x46\x92\x81\x26\xbd\x92\x27\x45\xb1\xe7\x4b\x4f\x11\xe2\x0c\x2a\xc9\x84\x8a\x09\x9a\x10\x28\xbe\x11\x6f\xfa\x00\x64\xb1\x39\xa1\xa9\x63\x03\x82\x60\xf7\x66\x71\x18\x26\x56\x7e\x1f\xbc\x39\x75\x71\xe3\xc6\x0d\xf9\xf2\xcb\x2f\xeb\x3d\x5b\x7c\xd7\x66\x40\x2e\xa2\x17\x9d\x7a\x0c\x6d\xf9\xef\x7b\xd2\xf7\xfe\x07\xa8\xcd\x54\x60\xd5\x8e\x11\x02\x91\xa4\x38\xce\x29\x11\xc5\x72\x2e\x61\x56\x1a\x14\x21\xe1\x08\x6d\x2d\x8b\x7c\xe0\x50\xf2\xa0\x76\x5e\x0b\x3b\x29\x53\xf7\xf8\x32\x02\x47\x5c\x1a\x6b\xc4\x0a\x5f\x7f\xc8\x9f\x6f\x62\x65\x95\x04\x1c\xa7\x08\x52\x96\xe7\x81\x94\xbb\xe6\x02\x96\x65\x09\xb1\x2d\x75\xca\x30\xd4\xb0\x17\x09\x57\xf7\xfe\xa0\xee\x4e\xc3\x07\x99\x06\xe6\x9a\x86\x62\xea\xe2\x6a\x53\x12\x75\x20\x2d\x04\x8a\x42\x69\x36\xd5\xf5\x22\xe0\x29\x94\x8e\x00\x20\x0f\x1f\x3e\x2c\x96\x96\x96\xb8\x75\xad\xfd\x17\xbb\xa0\x02\x89\x90\x48\x92\xb1\xbc\x5f\xe4\x6a\x05\xda\x60\x70\xf1\x00\x00\x06\xba\xcd\x92\x62\x3e\xd0\xe1\x59\xe0\x9c\x5d\xe0\xcc\x8d\xc3\x31\x5a\x60\x61\x77\xca\xf7\xb6\x28\x60\x05\xb3\x2b\x8e\xdc\xb7\x0e\x58\xe1\x40\x27\x50\x08\x17\xd8\x04\xb6\x14\xb0\xeb\x93\x99\x92\x56\x4e\xdf\x24\xd2\x8a\xb6\xd4\xc7\xa6\x28\xa1\x41\x12\x0b\x5a\xb4\xea\x27\xf2\x18\x18\xc7\x80\x2a\x24\x43\x94\xab\x8d\xce\x54\x1d\x8d\xe7\x6a\x25\x55\xd8\x21\xbb\x11\x5c\x85\x45\x7e\xfa\xe9\xa7\x71\xee\xdc\x39\x3d\x5c\x04\x34\x00\xeb\xa3\x47\x8f\xa2\x3c\x61\x59\xc7\xa1\x01\x51\x31\xaf\x25\xa7\xfe\x03\x37\x7b\xa7\xee\xbd\xdd\xfd\x7a\x37\x13\x27\xa9\x58\x0e\x0d\x3d\x6c\x5d\xc2\x0d\x3b\xe4\xc5\xab\xcf\xd4\x09\x95\xec\x99\xb7\xca\x86\x01\x47\x03\x76\xf9\x5c\x41\x8d\x46\x2b\x87\x51\xea\xeb\x02\x70\x27\x39\x8e\x6f\x8e\x3a\xcf\xdd\xb7\xdb\xbd\xba\xdf\xcb\xf6\x76\x96\xb3\xca\xd1\x08\x9a\x91\x3a\x76\xec\x98\x88\xe3\xb8\xd2\xd7\x26\x93\x09\xde\x79\xe7\x1d\x10\x91\x7c\xfa\xe9\xa7\x35\xd0\x01\xea\xc1\x8b\x89\x5f\xf1\x43\x08\x09\xa9\x22\xf4\x52\x52\xd3\x79\x94\x0f\x47\x49\x9e\xec\x2e\x51\xd2\xc9\x69\x29\xc9\x29\x89\xa5\xe8\x09\x59\xb0\xf7\x42\x21\x2e\x56\xbd\x43\x72\x76\x21\x8b\xd4\x24\x13\x2a\x95\xfa\x60\x40\xaa\x28\x69\xf3\xc7\x18\x86\x29\x9f\x90\xab\xb7\xbd\xd0\x79\x7c\xf5\xd5\x57\xe5\x7b\xef\xbd\x87\xc9\x64\xb2\x08\x3b\xec\xf8\x79\xf7\xdd\x77\xd1\xef\xf7\x65\xb9\x7d\x02\x37\x76\x4d\xdd\xf0\xb4\xc8\xdd\xac\x4e\xe7\xbd\x07\x7d\x5c\x00\x20\x40\x48\x54\xb1\x89\x9d\x50\xd5\x36\xec\x03\x47\x7e\x4e\x52\xca\xee\x39\xb3\xe2\x4f\xc2\x4d\x35\x3b\x04\x06\x5a\xae\x5d\xbb\x26\xcf\x9d\x3b\xa7\x0f\xe4\xe4\x2e\x34\x4a\xe0\xbb\x26\xe3\xd7\x37\x48\x4d\x5c\x6d\x93\x73\x9b\x50\x52\x30\x53\x7c\x32\x9b\x5e\x16\xca\x33\x12\x29\x12\xb1\xa4\x38\x32\x9b\xcf\x31\xf4\xaf\x3b\x17\xac\xe0\xb2\x71\x95\x9d\xd6\xc8\x61\xfe\xd2\xae\xef\xb7\xcb\x32\x0b\x10\xe2\xb2\x2a\xd6\x8a\xd1\xf7\x55\xc7\xd6\x24\x31\x50\xc3\xe3\x51\x80\xcc\x09\x69\x4e\x6a\xa6\xb7\xfb\x2f\x1b\x1e\x67\x5e\x78\xa4\x75\x80\xe3\x40\xf4\x58\xc0\x7f\xd3\xc7\x6e\x7b\x1f\x52\xea\x6d\x61\x11\xf0\xc7\x1b\x16\x8f\x5b\xa0\x39\xbe\x45\xd2\xf2\x1b\xec\xa2\xe0\xc6\x67\x53\xda\xda\x75\xa8\x0c\xa1\x78\x79\x9e\x9c\x70\x76\xd5\x4a\x31\x11\x1d\x25\x68\x29\xdf\xc7\x71\x2a\xfb\xc9\x44\x9e\x10\x12\x3d\x34\x38\xbe\x25\xbf\x79\x06\x80\x99\xda\x0e\x2c\x01\x60\x87\x89\xbc\xe7\x96\xf4\xb0\x0d\xb9\xd0\x51\xc4\xfa\x8a\x0f\x7c\xdc\xbd\x97\x4c\x9f\x21\xdd\xb7\x3d\x23\xc3\x60\x2c\x6f\x10\xc3\xb2\xac\x16\x56\x98\xbe\x6d\x65\x84\x8d\xab\x70\x9c\x59\xb1\x04\x09\xb7\x36\xdc\xa5\xbe\x85\xcf\x42\x8a\x78\x36\x8b\x8d\x9b\xb4\x92\xb6\x9d\x9f\x08\x20\x89\x41\x67\x2a\x8f\xc6\x33\xb5\x42\x4a\x25\xaa\x3c\xc1\xbb\x1c\xce\xd1\xac\x8b\x04\x80\x7b\xef\xbd\x57\xf4\xfb\xfd\x56\xd0\xf2\x67\x7f\xf6\x67\xa2\xdb\xed\x6a\x3f\x7a\x88\xc8\x0c\x15\x09\x89\xde\xa1\x69\xbc\xf1\xc0\xce\xd2\xd3\xcb\xb3\xe8\x71\x42\x71\x88\x9e\x0f\xb0\xf4\x77\x00\xec\x07\xe0\xe0\x55\xb1\x65\xea\xba\x56\xf4\x77\x74\x56\x55\x2a\xd8\xe1\x37\xb2\xc0\x57\xe3\x17\xdb\x76\xec\x9c\xa5\x02\x07\x51\xb2\x34\x17\x67\xee\xde\x4f\x9e\xdc\x1e\xcc\xaf\x0c\xbb\xf9\x30\x8d\x95\x56\x5a\x1a\x58\x98\xfe\xf8\xe4\x93\x4f\xe2\x77\xbf\xfb\x9d\x28\xf7\x31\x31\xb2\x61\x3c\x1e\xe3\xe2\xc5\x8b\x42\x08\x21\x9f\x7a\xea\xa9\x3a\xe6\x85\xcb\x12\xce\xba\x70\xc5\x3a\x05\xa1\xa7\x80\x44\x11\xe2\x5c\xc9\x24\x13\x14\x4f\x3b\x88\x81\x5c\xd7\xaf\xae\x77\x13\x97\x65\x17\x0a\xf6\x06\xfa\xe8\x01\x10\x57\xce\x66\x57\x5c\xb8\x60\xc5\x59\x45\x44\xde\x3e\x5d\x57\xae\x5c\xc1\x64\x32\xf1\x9b\xc0\x42\xc3\x24\x37\x6f\xde\x94\xe7\xcf\x9f\x17\x4a\x29\xf9\xe0\x83\x0f\xfa\x43\x91\x7c\xfa\x01\xe0\x32\x2e\xba\x5e\x92\x32\xaf\x09\x03\xc5\xbc\xad\x19\xb9\x04\x18\x40\xea\xd7\x2f\x8f\xcf\xaf\xef\xd4\x7b\xc7\xc1\x8a\x01\x2d\x9f\x7e\xfa\xa9\xfc\xfd\xef\x7f\x8f\x4f\x3f\xfd\xf4\x8f\x65\x9c\xfb\xef\x82\x32\xdf\xdf\x80\x8e\x7b\x68\x1b\x06\x08\x26\xe8\xcd\x86\x76\x80\x0c\x50\x8c\x41\x46\x8a\xf4\x1a\x74\x2b\xa3\x15\x99\xce\x68\xd8\x10\x58\x4b\x8b\x98\xc0\xd1\xce\x08\x44\xf3\x8e\x75\x76\xd8\xfd\x2b\x0a\x2b\xcd\x4e\x72\x34\x1d\x5c\xb9\xe1\x35\x95\x6e\x0b\x50\xbd\x54\x45\x56\x65\x2e\x54\x96\x0b\x64\x0a\x4a\x12\xa8\x32\x49\xcb\x9b\xb8\xd5\xa4\x68\xf5\xfb\x3b\x01\x36\x21\xb6\x22\xf4\xcd\x16\x65\x69\x16\x01\x49\x3e\xc3\xd2\xd6\x4e\xfc\xb8\x0e\x02\x60\x16\x01\xce\x75\xf1\x87\x1a\xfc\x22\x79\xe4\x65\xe1\xd7\x8b\x00\x2d\x9e\x4e\x49\xd5\x52\x0c\xa5\xe2\x64\xa2\x56\xe2\x54\x1d\x23\x55\x1c\x98\xc6\x9d\x03\x2e\xc2\x68\xba\x50\xcb\xba\x33\xb0\xd3\x91\xc3\x94\x20\xac\x82\x36\xda\x0a\x6e\x7b\xf6\x19\x17\xa7\x7f\x59\x0b\xc1\x05\xfe\x8e\xed\x5f\xfe\x58\xd8\xc0\x81\x82\xf5\x6f\xa6\xd7\x82\xcf\x9d\xf1\x69\x18\xcd\x16\x71\xe3\xc4\x32\x0a\x5c\xdb\x6a\x7f\x5c\x69\x5b\x90\x63\xf2\x6f\x14\xb2\x41\x6f\xce\x70\x30\x00\x90\x54\xbd\x38\x55\x1b\x9d\x99\x5c\x13\x79\x94\xe4\xc2\xec\x64\x0b\x3e\xdf\x05\xed\xc2\xd6\xb4\xb5\x47\x1e\x79\x04\x71\x1c\x3b\xac\x1b\xd8\x04\xed\x6e\x26\x06\xf7\xde\xee\x9e\x3a\x3c\xea\xfc\x59\x24\x69\xc3\xc4\xa0\x01\x20\xa3\x99\x48\xcb\x2d\xe5\x6e\xb0\x59\x14\x8f\x01\x4b\xf3\x7d\xf4\x27\x61\x4c\x56\xd9\x46\x14\x63\xf1\xf8\x62\x06\xbb\xfd\x8d\x69\x30\x26\xae\x58\xd2\xc6\xea\x24\x7e\xfc\xee\xbd\xe4\xdd\x9d\xfe\xfc\xfa\xf6\xa1\xb9\xbf\xfc\xd5\xf4\x99\xb3\x67\xcf\x8a\x8b\x17\x2f\xca\xd0\x50\xc1\x64\x32\x91\x6f\xbc\xf1\x86\x88\xe3\x58\x7e\xf6\xb3\x9f\xb5\x45\x2e\x94\x31\xaf\x4f\x9f\x61\x48\x60\x95\x68\x02\xcb\x2e\x68\x65\x1d\xab\xea\x84\x6a\x5f\x16\x96\x7f\xe6\x5c\xa0\x8c\x81\x11\xbe\xa1\x9c\x61\x18\xc8\x9e\x21\xa4\x27\xe1\x56\x40\xcb\x1b\x6f\xbc\x21\x4b\xd0\xb2\xa8\x7c\xa9\xb8\x1b\x37\x6e\xe0\x8d\x37\xde\x80\x10\x42\x9e\x3e\x7d\xda\x67\x5e\xf4\x2a\x37\x94\x79\x4e\x60\x01\x8c\x3e\x3a\xc1\xd4\x03\xe0\x9c\x57\x65\x80\x0b\xe0\xf4\x5b\xaf\x4e\x82\xe0\x45\x9f\x29\x95\xa1\x1e\xb0\x48\x00\xf8\xe4\x93\x4f\xe4\xf9\xf3\xe7\x71\xf9\xf2\xe5\x26\x39\xed\xcb\x53\xee\xea\x64\x38\x7f\x17\x7c\xee\xef\xe3\xc2\x5f\x2e\xfa\x5c\x00\x90\x1b\x1b\x1b\xe2\xd8\xb1\x63\x00\x7c\x5a\x96\x00\x4b\x2b\x82\x14\x84\x50\x14\xeb\x49\x54\x4e\x67\xf4\x6c\x49\x53\xdd\xe4\xf8\x04\xfc\xf7\xde\x43\x72\x25\x77\x65\xe8\xca\x17\xb0\xf6\xb9\xa6\x54\x03\x1b\xd4\x69\x61\x52\xa0\x9e\x2c\x17\x2a\x95\x64\x3a\x1e\x0f\x23\x01\xdb\x58\x88\x08\x9f\x7e\xfa\x29\xd8\x4e\x93\x4d\x1f\x8b\x3b\x5f\x61\xd6\x09\x4b\xed\xda\x00\x4b\x53\x1a\x6d\xc0\xca\x77\x6d\xe0\xa1\xce\x4f\x9d\xbf\x45\x3b\xbc\x1f\xcf\x22\x00\xed\x20\x74\x65\x53\x3c\xc1\x72\x9e\x3c\x79\x12\xfd\x7e\x1f\x00\xf4\xdc\x16\x23\x40\x89\x48\x40\x29\x41\x0a\x71\x32\x91\x6b\x51\x86\x4d\xa8\xea\xbc\x32\xce\x88\x14\x11\xc1\xb0\x06\x86\x31\x60\xcf\x2c\x29\xa1\xa9\x10\xb8\xc8\xda\x69\xba\xac\x4d\xdb\x16\x0e\xce\x88\xf0\x78\x34\x0e\x32\x53\x26\x74\x14\x21\xe7\x33\x39\x7a\xdf\x26\xe2\x59\x20\xc7\x2f\xb3\xed\x6d\xee\x98\x10\xb0\x73\x6b\x98\x91\x61\xb9\x06\xb8\x09\x68\xf6\xa5\x04\x3e\xee\xf2\xa9\x4a\xdc\x36\x41\x9d\x67\x12\x51\xa6\xd6\xe2\x54\x1d\x16\x99\x4a\xb2\xd8\x0c\xe9\x08\x4f\x06\x34\x31\x82\x12\x80\x14\x42\x88\x07\x1f\x7c\xb0\x9c\x8f\x6b\x81\x2b\x9b\x37\x93\x08\x89\xde\xa1\x59\xb4\x71\x72\xa7\xf7\xe4\x52\x2a\xce\x9a\x9d\x61\xcb\xec\x71\xac\x65\x8f\x1b\x21\x73\x48\xa4\x33\xe5\x99\x7f\x76\xc5\xbe\x67\x19\x91\x01\x36\xa6\xfa\xd8\x47\xe1\x8c\x1a\x5c\x90\xe3\x49\x44\xd1\xcb\xa2\x13\x47\x87\xc9\x63\xd7\x46\xe9\xa5\xdd\xa5\x6c\x37\x8d\xa4\xd9\xd3\xa5\x2c\x5b\xaa\xf7\xbd\x39\x71\xe2\x04\x46\xa3\x91\xd8\xdf\xdf\xaf\x28\xf3\x34\x4d\xe5\xaf\x7f\xfd\x6b\xd1\xed\x76\x71\xf6\xec\x59\xa9\xf7\x3d\x82\x3d\xb7\x07\xb0\xfd\xd4\x99\xd3\x01\xbb\xab\x71\xc2\x7f\xcb\xf4\x39\xc0\xac\xc8\x44\x3e\x4f\x04\x55\x76\xa1\x8e\x65\xe0\x60\xa5\x02\x5a\x2e\x5e\xbc\x28\x7f\xf3\x9b\xdf\x60\x3e\x9f\x07\x9a\xc4\x81\x9c\xbc\x71\xe3\x06\x5e\x7b\xed\x35\x31\x9f\xcf\x65\xa7\xd3\xc1\xe9\xd3\xa7\x75\x3d\x08\x58\xa0\xa0\x0f\x02\x35\xed\xb3\x2c\x7f\xca\x80\x8b\x3f\xcc\xd9\x24\xbb\x39\x70\xf1\xd9\x1c\x7e\xe0\x66\xed\xa9\xcf\x5b\x5b\x5b\xf2\xfc\xf9\xf3\xf8\xf8\xe3\x8f\x7d\xe3\x4e\xa7\xe1\xa7\x19\x32\xfc\x9a\x80\x4c\xc8\x99\x32\xd5\x2d\x87\xae\xb5\x28\xea\xfc\x9e\x38\x71\x02\x67\xcf\x9e\xd5\xe7\xb3\x70\xf0\x22\x18\x88\xe1\x33\xbf\x0b\x20\x53\x78\x76\x04\xb7\xb6\x0e\x1c\xec\xa0\x1c\x99\x13\x74\xfc\x24\x5b\x1d\x6d\x68\xe7\x4f\xc0\x46\xe4\x0a\x28\x6e\x29\xb2\x78\xb9\x7e\xa0\x92\x71\x21\x95\xc9\xea\xe6\x73\xd2\x0f\xaf\x94\xc2\xc5\x8b\x17\x71\xe5\xca\x95\xba\x6c\xfb\x00\xc5\xaf\xeb\xba\x06\xd1\xa4\xf0\xeb\x40\x03\x8f\xa7\x8e\x41\xa8\x63\x50\x42\x08\x3a\x94\x46\x28\xad\xd0\xbd\xef\x8f\xc7\x5d\x97\xdf\xd0\x75\x5d\xfe\xfd\x34\x9a\x00\xb8\x9f\xc7\xba\xb8\x2b\x69\x3d\xfd\xf4\xd3\x58\x5d\x5d\xd5\x82\xd7\xb4\x73\x68\xa5\x05\x8a\x49\xa9\x24\x99\xa8\x0d\x21\xd1\xb7\xd1\xd8\xa5\xbe\x80\xd7\x0f\x78\xf3\x73\x98\x05\x13\x14\x66\x39\xb3\xab\x9d\x1d\xa0\x6e\x86\x10\x94\x85\x0a\x7c\xb8\xd4\xb4\x53\x3d\x9c\xc3\x40\xbf\x0e\x07\xb8\xfd\xd0\x60\x98\xaa\x71\x62\xe2\xf1\x7a\x4f\x19\xb1\xd5\xb4\xba\xac\x06\x94\x18\x80\xa2\x15\xb0\x35\x2e\x88\xb1\x04\x8e\x21\xa3\x87\x4b\x42\x8c\x0c\x7b\xe7\x3b\x7f\x3f\x3d\x91\x63\x10\xcd\xd5\x40\xe4\xe8\xb1\xef\x26\xa8\x99\x71\xa9\x28\x85\x28\x8a\xf0\xc2\x0b\x2f\xe8\xe1\x71\x78\xf1\xc4\x00\x92\x24\x17\xfd\x23\xc3\xce\xf1\x8d\x71\xfc\x78\xcc\xd9\x16\x56\x4d\x76\xa8\x47\xd7\x51\x09\xf5\xf8\xd0\x9b\xb2\x01\x14\x0f\x5f\xd6\x4d\xf5\xac\x1e\xfd\x9c\xb7\x21\x8b\x46\xcd\xdc\x9a\x8a\x3f\x85\x48\x62\xed\xd0\x2c\x3e\xbb\x39\x4a\x4e\x5d\x3b\x94\x7e\x7c\xb3\x2f\xf5\x70\x4b\x5c\xca\x3c\x03\x3a\x9e\x78\xe2\x09\xb1\xbd\xbd\x2d\xf7\xf7\xf7\x75\x1d\x39\xca\x49\x4a\x29\x5f\x7e\xf9\x65\x91\x24\x09\xee\xbb\xef\x3e\x19\xc7\xb1\x1e\x5e\x05\xd8\xf0\x48\xa9\x34\xf5\x70\x9d\x3e\x86\xc1\x67\x16\xf4\x90\x5e\xac\x8d\x63\xfe\x5d\x54\x79\x30\x26\x93\xcb\x99\xaf\xa0\x11\x1e\x0a\x31\xa0\xc5\x63\x84\x64\x9e\xe7\xf2\xea\xd5\xab\x78\xf9\xe5\x97\xf5\x33\xce\xf2\x48\x54\xe5\x57\x9b\x5c\x01\x00\xb9\xb3\xb3\x23\x5f\x7e\xf9\x65\x74\xbb\x5d\xd1\xe9\x74\xe4\x89\x13\x27\x74\x19\x50\x96\x21\xd3\x65\xd1\x75\xc2\x7e\x79\x1b\xd3\xed\xd7\xc8\x20\x4f\x17\x49\x5e\x1e\xb8\xec\x99\x59\xe2\xad\x9f\x79\xa0\xcf\x7c\xc7\xed\xed\x6d\xf9\xbb\xdf\xfd\x2e\xa4\xd3\x9a\x64\xb0\x5f\xee\x26\x20\xe3\xeb\x80\x8a\x2e\xac\x43\x65\x75\x19\x6a\x74\xc4\x0e\x18\x0c\x0c\x13\x15\xcf\x15\x40\xaa\x98\xed\xcc\x87\x84\x74\xc7\x33\x13\xc4\x48\x41\x59\x71\x56\x58\x6b\x04\xf3\x8c\x3b\x55\xf2\xa8\x7c\x4f\x16\x87\x4a\x77\xfc\xc2\x52\xa7\x45\x8e\x8a\xe1\x1f\x55\x2c\x2b\xd5\xef\xdd\x72\x69\x9f\x26\x6e\xa9\x08\x99\x64\x63\x7d\x45\x78\x0b\xda\x58\x9d\xf8\xd9\x0d\x35\xf8\x26\x3f\xfa\x7e\xa1\x4e\xc0\xde\xb5\x51\xdc\x21\x10\xd4\x46\xdd\x85\xe2\xe5\x79\xf0\x91\x7e\x5b\xfe\x42\xfe\x7c\x24\xbe\x28\xa3\x12\x6a\xcb\x75\x1d\xe2\x20\xc0\x3c\xe4\xaf\x92\x1f\x36\x9f\x4b\xff\x95\x82\xa4\x98\xe7\x12\xcf\xe4\x61\x48\xd5\x03\x8a\xe5\x89\xba\x8d\x19\x00\x61\xac\x66\xef\x25\x6b\x8b\xba\x1f\x98\x97\xce\x78\x80\x0d\x47\x5c\x81\xa3\x04\x2f\xac\x3f\x99\x79\x27\xca\x06\xd3\xec\x8a\x3f\x69\xdd\x6f\xbd\x64\xfc\x72\xee\x44\x39\x59\x76\xf2\xcb\x95\x2b\xeb\x9b\x45\x57\x2d\x41\x87\xb2\xdb\xd2\xe9\x3f\x3d\xe1\x5e\x91\xe5\x5c\xb8\x96\xe6\xa4\x94\x32\x6a\x56\x17\xd8\x32\x0e\x3c\x4d\x1f\xe3\x29\x02\x48\xa2\x1f\x65\x58\x11\xb9\x4a\x4a\x36\x4c\x78\xf3\x94\x4c\x79\x56\x56\x56\xd0\xeb\xf5\x78\x9b\x92\x00\x10\x45\x91\xd8\xdc\xdc\x04\xac\xa2\x10\x65\x3d\x1b\x00\x0b\x20\xe9\xa7\x62\xe5\xd8\x7e\xf7\x81\x5e\x26\x4e\x16\xe7\xb4\x95\xb9\x2e\xb3\xad\x94\x2d\x99\x82\xfe\x8e\x16\xde\x9a\x79\x2c\x64\xbf\x31\xf1\xb2\x18\xd6\x05\xe6\x9d\x9d\x26\xe3\x0a\x35\xdd\x96\x4c\x13\x50\x45\xfb\xb0\x46\x5a\xd9\x72\x14\x90\x64\x74\x74\x75\x1a\x3f\x30\x98\xc5\x1b\x54\xb0\x44\x09\xb9\x4b\xc7\x4d\x99\x59\x1d\x85\x9c\x00\x20\x7f\xfe\xf3\x9f\xcb\xab\x57\xaf\x22\xcb\x32\xdf\x92\x37\x93\x4f\xcb\x39\x27\x53\xa5\xd4\x54\x29\x65\xf6\x56\x51\x4a\x0d\xcb\xeb\xbd\xf2\x6f\xd7\xbb\xde\x05\xb0\x4b\x44\x7b\x44\xb4\xcb\x9e\xed\x11\xd1\x9e\x0e\xcf\xe2\xf1\x27\xe7\xfa\x3b\xe3\x66\x69\x9a\xca\xed\xed\x6d\xf9\xe9\xa7\x9f\xe2\x27\x3f\xf9\x09\x97\x27\x8b\x32\x09\x0b\xc9\xef\xd9\x6c\x26\x7f\xfa\xd3\x9f\x62\x7b\x7b\x5b\xef\x3a\xeb\xb0\x1e\x25\x58\x31\x75\x03\x77\x22\x71\x68\x0f\x9a\x21\xab\xbb\x21\x11\xe9\xfa\x1b\x97\xcf\xcd\x92\x67\xd8\x61\x32\x33\x4c\xc4\x41\x8b\x52\x0a\x3b\x3b\x3b\x72\x7b\x7b\x5b\xfe\xea\x57\xbf\xc2\x95\x2b\x57\x42\xfa\xc3\x2f\x57\xc8\x35\xc9\xe3\x3a\x03\x1d\xec\xbd\x04\x9a\x37\xa0\x0b\x29\xa8\x36\x2a\x07\x1e\xda\x33\x1d\xdf\x52\xe8\x05\xeb\x02\x05\xa1\x81\x05\xa7\x2b\xc9\x48\x28\x3b\x66\xee\xbc\xe7\xa2\x51\xd3\xcf\x9e\x55\xea\x4f\x2e\xd4\xef\xf8\xbd\x5d\x91\x64\xd3\x00\x50\x0a\x4a\x6d\x3d\x5b\x43\xd1\x78\xd5\x95\x51\xee\x13\xc0\xea\xc6\x41\xb3\x7c\xb8\xcc\x73\x8b\x80\xc5\x45\x50\xa9\xff\x9e\x87\x0b\x75\x1e\x3f\xed\x10\xc3\x53\x87\x74\xf9\x7b\xfe\x5b\x77\xdd\x66\x89\xe8\xf8\x7c\x17\x6a\x63\x75\xe0\x23\x14\x77\x88\xad\x09\xdd\x2f\x0a\x54\x42\xe1\x2b\xf5\xcd\xbf\x33\x67\x19\xcb\xf7\x82\x94\x8a\xe3\x54\x6d\x98\x65\xd0\x46\x29\x28\xd6\x20\x75\x7b\xb5\xed\x85\x5b\xcc\x64\x96\x04\x31\xec\xe2\x50\x18\x7e\x4f\xe1\xfe\x5c\x50\x0f\x68\xbc\xe3\x32\x94\x3c\x4c\xd1\x2d\x0c\x3d\x62\xe2\x34\x68\x81\x9f\xd4\xac\xe7\x54\x78\xc8\x40\x07\xe5\x9b\xca\xb9\xec\x25\x8b\x83\x97\x88\xca\x1c\x1b\x3c\xa6\x51\x11\x59\x0f\x1c\xd0\xb0\x32\x19\x20\xc7\xd3\x72\x58\x21\x58\x56\x83\x08\xa4\x54\x4f\x64\x6a\x10\x65\xaa\x07\x28\x01\xb8\x96\x2a\x67\x3a\x3e\xff\xf9\xcf\x23\xcb\x32\xbc\xfd\xf6\xdb\x3a\x49\x01\x40\x0e\x06\x03\x7c\xfb\xdb\xdf\x06\x8a\xb6\xc1\x27\x89\x0a\xe8\x79\x08\x0a\x71\x2f\x13\x6b\xab\x93\xf8\x44\x2c\xc5\x9a\xad\x6b\x97\xed\xe0\x79\xe7\x85\x32\xc5\x2e\x6b\xc9\x82\x35\xe6\x4d\xe7\x97\x7f\x1e\x56\x65\x9c\x9d\x71\x18\x1c\x78\x72\x15\xba\xfe\x0b\x20\x13\x4b\x5a\x1b\xcc\xa2\xe3\x2b\xb3\x68\xb3\x23\xe9\x93\x79\xa4\xcc\x2e\xc3\x65\x5d\x99\x3e\xfb\xec\xb3\xcf\x22\xcb\x32\xbc\xf5\xd6\x5b\x4e\x1d\xf9\xbf\x3f\xfb\xd9\xcf\xe4\x37\xbe\xf1\x0d\x71\xe4\xc8\x11\x99\x24\x09\x3a\x9d\x0e\x37\x9e\xf8\xc4\x68\xce\x2c\xe8\xe7\xba\x8e\x63\x62\x43\xb3\x08\x2b\x4f\x07\x1c\xf1\xe1\x1f\x3e\x1c\x04\x57\xc6\x18\xbf\x59\x96\xc9\xcb\x97\x2f\xe3\xa5\x97\x5e\xaa\x93\xb3\x21\xd7\x24\xc3\x42\xf2\x9f\x1b\x40\xf8\xb7\x7f\xfb\x37\xf9\xd7\x7f\xfd\xd7\xa2\xdb\xed\xca\x5e\xaf\x87\x28\x8a\x50\xe6\x87\xb7\x4d\x5f\x26\x9a\xf2\x7b\x75\x62\xd2\xe0\xd3\x19\xa8\x3a\xff\xd2\xa9\x27\xbd\xd8\x44\x29\x85\xf1\x78\x2c\x01\xe0\xc7\x3f\xfe\x31\x46\xa3\x51\x53\xb9\x43\xe5\xaf\xbb\x5e\xc4\x80\x0f\xc5\x29\x00\x77\x8e\x4b\x48\x29\x85\x12\xab\xf3\xcf\x05\xb6\x71\xdc\x02\x01\x50\x0e\x15\x95\xe0\x05\x70\x0c\xc7\x22\x0e\x40\x8f\x85\x33\x29\x56\xd9\xc6\x9a\x0b\x23\x4b\x7d\x97\x69\x3a\x1e\x89\xcb\x76\x4b\x83\x1a\xbf\xae\xf0\x2f\x44\xbf\x47\x41\x7b\xe9\xeb\xad\x93\x0b\x0b\xc5\xac\x26\x31\x54\x1c\xaf\x03\x76\xed\xd7\x61\x1d\x80\xa9\xfb\x80\x6d\x28\xb6\xcd\x8f\xff\x3e\x14\xa6\xee\xfa\xa0\x61\x9a\xc2\x2e\xea\x9a\x40\x4c\x53\xdc\x21\x20\x56\x07\xc2\xfc\xf0\x4d\x2c\x55\x13\xd0\xe2\x8a\xc0\x80\x16\x2a\xe6\xb8\xc4\x22\x43\x12\xcf\xd5\x06\x14\x84\x85\x17\xa1\xfd\x82\x8c\xa6\xb5\xd4\x83\xa7\xd0\xcc\xa4\xd9\xc0\x3c\x2c\x7b\x46\x8f\x1d\x52\xb0\xc0\x5d\xaf\xda\xe3\xef\xc8\x79\xa7\x13\x73\xcf\x09\x02\x78\xc7\xd3\x0a\x9f\x6f\x14\x67\x97\xee\xea\xbc\xb1\x62\x68\x10\x02\x38\xec\x91\x39\x44\x91\x97\xd1\x17\x06\x2c\x6d\xf7\x74\xe8\x9a\xe1\x5f\xd3\x89\xd9\x1e\x30\xbe\x9c\x28\xeb\xd5\x6c\x80\x27\x91\xc4\x73\x35\x10\x19\xfa\x50\xc5\x52\x52\x54\xcf\x2d\x32\x7b\x96\xa0\x59\x59\x99\x6b\x6f\x3e\x42\xd2\xc9\xa9\x37\x98\x45\x9b\xcb\xb3\x28\xbc\xb2\x8c\xdc\x5f\x73\xeb\xc9\x2f\xfd\x96\xbc\x30\xa6\xda\x74\xdd\x33\x30\x44\x3c\x0c\x8f\x85\x0f\xed\x99\x39\x35\xfa\x1d\x4c\x1d\x0a\x85\x5e\x3f\x15\xc7\xd6\xc6\xf1\x7d\x4b\xa9\x78\x6f\xbe\x94\x8f\xfd\xf9\x25\x7a\x9e\x4b\xc9\x54\x35\xb1\x12\xba\xae\xe4\xcf\x7e\xf6\x33\x00\x90\x5f\xf8\xc2\x17\xf0\xc8\x23\x8f\x80\x29\x64\x13\x6f\xd9\xaf\x32\xb2\x2b\xbe\xfc\xef\xe2\x4c\x45\xd0\x69\x7a\x6d\x44\x86\xfe\xd8\x30\x12\x5f\x15\x6a\xf6\xe2\x52\x4a\xc9\x4b\x97\x2e\xe1\x17\xbf\xf8\xc5\x41\xe5\xd9\x22\x06\x58\x53\x58\xfc\xe0\x07\x3f\x90\x00\xc4\x8b\x2f\xbe\x88\xbb\xef\xbe\x9b\xeb\x15\x59\x96\x9f\x97\x57\xc7\x2f\x00\xf8\x75\x01\xf6\x2c\xb8\xc7\x98\x07\x62\xf4\x31\x17\x52\x4a\x89\xf9\x7c\x8e\x7f\xfe\xe7\x7f\x0e\xc9\x57\x13\xfe\x0f\x70\x21\x20\xb7\x88\x81\x5e\x39\x64\x31\x94\x99\x36\x45\x6a\xde\x97\x15\xc0\x59\x96\xd0\x44\x5d\x90\xa9\x60\xd7\x2a\x2c\xc2\xf0\x1b\x2b\x08\xcb\x70\xcc\x1f\x67\x69\x3c\x69\xa7\x05\xaa\x1f\x2e\x90\x9e\x99\x61\xcf\x3a\x3f\x79\x52\x84\x0b\x89\x32\xca\x62\x99\x1d\x55\x3a\x02\x7c\x17\x1a\x2e\x2b\x5d\x53\x3d\x57\x40\x61\xe0\x5d\x28\x0e\xdf\x85\xe2\x59\x34\xee\xba\x67\x3e\x30\x08\xfd\xb6\xe5\x45\xbb\xb6\x3c\xd5\xc5\xed\x5b\x3c\x75\xf9\xa8\x2b\x7b\x28\xee\xa6\xf4\xfc\xb0\x3c\x0f\xe6\x9e\x31\x8c\x56\xa8\x2a\x88\x28\x53\x3d\x91\x63\x0d\x40\x6c\xad\x67\x1f\x34\xc0\x6d\x84\xa8\xb6\x3b\x2a\xfd\x28\x15\x52\x43\x2c\x9c\xc7\x36\x6a\x45\xcd\xbc\x38\x80\x41\x03\x29\x0b\x30\xbc\x4d\xe9\x9c\x3c\x59\x20\x6f\xf7\x3c\x73\x35\xa8\x39\x37\x88\x58\x78\x1d\x88\x15\xce\x4e\x46\xad\xa0\x15\x1b\x8c\xc5\x67\x98\x2a\x07\x94\xb9\x67\x15\x99\x5c\x52\x55\xbe\x54\x64\x4d\x91\x4a\x2c\x72\x35\x88\x32\x39\x10\x32\x8a\xa5\x70\x26\x39\x6a\x83\x4c\x2b\x82\x50\x9f\xad\x33\x40\x74\x1c\x31\x80\x78\x90\x46\x83\x23\xc3\xe4\xde\x5e\x4e\xc7\x04\x28\xb1\x6c\x9a\x0b\xc2\x2c\xb8\x62\xbb\x28\x33\x30\xa8\xeb\x92\xd9\x74\xe0\xc8\x85\x6d\x91\x53\xa9\x52\x2e\xdf\x14\xbc\xb4\xbd\xb6\xe7\x90\x81\x00\x92\x4c\x6c\x1e\x9a\x45\xc7\x97\xd3\x68\xb0\xb7\x94\xef\x52\xb1\xca\x45\x0f\xab\x18\x03\x95\xdc\xd5\x95\x21\x25\x54\xb9\x7e\xe5\x95\x57\x30\x9d\x4e\xf1\xd4\x53\x4f\xf1\xe7\xdc\x28\xd0\x20\x46\xef\xb8\xcb\x4f\xd9\x06\xf3\x03\x16\xc6\xef\xff\xd2\x8b\x9b\xff\x71\x50\x00\x00\xf2\xdc\xb9\x73\x78\xfd\xf5\xd7\x17\x51\xcc\x6d\xc6\x9e\xff\xfc\x20\x6c\x8d\xfc\xd1\x8f\x7e\x04\x00\x78\xee\xb9\xe7\xc4\xa3\x8f\x3e\xaa\xfd\x64\x08\xcb\x2e\x00\xee\x70\x25\x58\xf9\x98\x2e\xf2\xe5\x9b\x53\x06\x22\x12\x5b\x5b\x5b\xf8\xe1\x0f\x7f\xd8\x64\xac\x35\xe9\xaf\xa6\x6b\x3f\xbf\x6d\xf5\x17\xd2\x09\xad\x67\x15\xb5\x45\xe2\xdc\x73\xf6\xa1\x2d\x1e\x82\x45\x84\xac\x3f\x5a\x66\x04\xd6\x2a\x02\xaa\x42\x07\xe0\xf2\x8e\x2a\x42\x4a\x31\x8a\xda\x3c\x03\xef\xcb\x8c\xbe\x66\xef\x3c\xb6\xbb\x9a\x26\x8c\x7f\x59\x07\x49\x6a\x2c\xc2\x3a\x05\x1a\x7a\xbf\xa8\x6b\x02\x26\x7f\x2c\x57\xd7\x40\x9b\x80\x08\x10\xee\xa0\x75\x54\xae\xef\x42\x71\xfb\x79\xf0\xe9\xd0\x10\x3d\xea\xe7\xd7\x4f\xa3\xc9\xd5\x81\x97\x8a\x1f\x0f\x9c\x73\x6b\x51\x90\x52\x82\x72\x24\x50\xca\x2c\x83\x76\xf4\xb9\xbf\x94\xc3\xa0\x15\x77\x18\xa5\xd2\x9c\x18\xf0\x70\xa8\x0c\xd4\xb4\x77\xab\xb5\x42\x5e\xad\x32\x33\xec\x89\xe7\xd7\xd1\x6a\x60\x96\x7c\x28\x3e\x96\x39\xe5\x7a\xb6\x6f\x98\xb5\x60\xc2\xba\x89\x72\xe0\x66\x60\x97\x8e\x4e\xfb\x37\xcc\x0a\x8f\x5c\x2f\xa3\xe6\x99\xe2\x1e\x00\x3b\x2f\x88\x40\x0a\xb1\x90\x48\xc0\x16\x0d\x94\xae\xc2\x20\x07\x9c\xdf\x16\xb9\x62\x35\x2b\x3e\x92\x8c\x06\xcb\x69\xb4\x11\xe5\x62\xa0\xeb\xd8\xb0\x5e\x8a\x9f\x92\xed\x12\x50\x1a\xba\xb8\xec\x8a\x65\xcf\x34\x94\x24\xf6\x9c\x7f\x18\x6e\xbc\xb9\x40\xb6\x30\xda\x94\x47\x8f\x99\xb9\x4d\x3c\x0e\x00\x91\x42\xbf\x97\x45\x9b\xbd\xb9\x58\x81\x5d\x9a\x2c\xbc\xbf\x3a\x60\xd7\x66\xdc\xc8\xd7\x5f\x7f\x5d\xbc\xf5\xd6\x5b\xf2\xc4\x89\x13\x78\xe1\x85\x17\xf8\x70\x48\x13\x5b\xea\xfc\xd6\xc8\x5d\x5f\xce\x38\x7b\x6e\x05\xfc\xe1\x95\x57\x5e\x41\xb9\x85\x3f\x4f\x83\xfb\x6b\x92\xdd\x21\xb9\x52\x07\x12\xda\xe4\x9c\x71\xe7\xce\x9d\xc3\xef\x7e\xf7\x3b\x79\xe6\xcc\x19\x3c\xf7\xdc\x73\x21\x26\x3f\x08\x08\x6a\xd8\xff\xba\x72\xe0\x7f\xfe\xe7\x7f\xf0\xdf\xff\xfd\xdf\xfc\xa4\xeb\x50\x39\x42\xe5\xd7\x71\xb6\x01\xb3\x50\x79\xdb\x74\x56\x05\xa4\x85\x76\xce\x6d\xb2\x32\x17\x56\x88\x75\x74\x6e\x71\x72\xa5\x16\x58\x8c\x51\x61\x32\x11\x60\x7d\x8f\x47\xa1\x3c\x4b\xa3\x46\x08\xc3\xf8\xe1\x96\x0c\x1f\xcf\xb5\x7e\x2a\xac\x8f\x9f\x99\xb0\xdc\x32\x6c\x8b\x6b\x2d\x55\x69\xb8\x1a\x77\xa7\x00\x65\x91\xf8\xea\x50\x72\xdd\x7b\xde\xd0\x16\x41\xbc\x07\x01\x49\x07\x6d\x3b\x3e\x1b\x52\xf7\xcc\x7f\xbe\x48\x7e\xff\xd0\xef\x51\x0b\x64\x6a\x98\x45\xab\xc4\xa4\x8a\x49\x52\x02\x33\x33\xc1\x3a\x9f\x2d\xb4\x77\xa1\x15\x3a\x7e\xe0\x32\x00\x53\x56\x21\x16\x53\xfb\xd5\x40\xa9\xfa\xde\x2a\x40\xb3\xeb\x4a\x25\x3e\x07\xe5\x58\x5c\xc2\x6f\x15\xd8\x6a\x1e\x8b\xb8\x94\x13\x3f\x03\x21\x4e\x84\xf0\xfa\x5b\xa9\x86\xcb\x0e\xcf\x87\x79\x4c\xbe\x58\xb9\x42\x6c\x8a\x06\x48\x4a\x11\x53\xe8\x16\x09\x95\xac\x83\x80\x44\x0c\x19\x5c\x52\x5a\xa6\x55\x37\x34\x05\xb1\xb9\xb9\x89\xaf\x7e\xf5\xab\xfa\x5e\x7a\x61\x4d\x5c\x91\xa2\x5e\x27\xa7\x01\x01\x89\x2e\x97\xa9\xe3\x72\x88\x86\x1f\xae\xcd\x87\xdf\xf8\x46\x81\x64\x6a\x52\xb7\xbb\xb2\x2c\x6c\xf2\x90\x1d\x55\xb4\x32\x8f\xc1\x45\x47\xfe\x55\x90\xb1\xff\xdd\xcb\x00\x42\x51\x92\x64\xb4\xd6\xcb\xc4\x40\x48\xc4\x39\x99\x23\x0c\x7c\xb0\x87\x27\x9e\x78\x02\x00\x44\x39\xcf\xa5\x0e\xac\x38\xf5\x98\x65\x99\xcc\xb2\x0c\x1f\x7c\xf0\x81\xd8\xde\xde\x96\x83\xc1\x00\xdf\xfa\xd6\xb7\x42\x0a\xbf\x16\x24\x70\xa6\x41\x85\x0f\xb9\xf5\x95\xb9\x93\xa7\x9f\xff\xfc\xe7\xf2\xd6\xad\x5b\x18\x8d\x46\xc8\xf3\xfc\x20\xb2\xab\x0e\xb0\xf9\xae\xae\x1e\x9a\x8c\x23\x00\x40\x59\x3f\xe2\x9d\x77\xde\xc1\xd5\xab\x57\x4d\x98\x28\x8a\xf0\x57\x7f\xf5\x57\x2d\xd9\x6b\x76\xff\xe7\xff\xfc\x1f\x59\xc6\x89\xd9\x6c\x86\xe9\x74\x5a\x27\xdf\xeb\x64\x6d\x13\xb0\x3c\x08\x6b\x13\x72\xc1\xb8\x43\x3b\xe7\xb6\x59\xf1\xb5\x09\x6a\xba\xce\x9d\x1c\xeb\x6c\xe8\x54\x58\x15\x28\x56\x15\xf1\x25\x9a\xae\xb3\xa7\xbc\x3a\xaf\xb4\xec\x09\x48\x74\xdf\xae\xb2\x79\x32\x79\x33\x16\x4d\xe1\x91\x98\xe5\xc6\x84\x02\xb3\x02\xfd\x33\x8d\xac\x5d\xab\x8a\x55\x1a\x64\x96\xee\xe9\x34\xda\x50\x6e\xa8\x1e\x9b\x3e\x7e\x9b\x52\x6e\xb5\x64\x50\xef\x16\xed\x98\x8d\x88\x7e\xc1\xf8\xb9\xbb\x93\x06\xdb\x16\x67\x93\x9f\x26\xe4\xdf\xf6\xbc\x2e\x2e\x01\x40\x7e\xfd\xeb\x5f\xc7\x60\x30\x00\x00\xde\xde\x01\xd8\x95\x16\xe5\xf1\xf2\x31\xa9\x62\x5b\x77\xee\xaa\x0a\x1c\x56\x63\x54\x00\x35\xf3\x4a\xcc\x9f\xd7\xf0\x9d\xa1\x11\xbf\x64\xcc\x58\x70\xe3\x24\x37\x0c\x9b\xef\x50\x1d\x9e\x08\xb0\x22\x3a\x4b\xe5\x64\x5f\x67\xc9\x31\xc0\x26\x00\xfb\x65\x85\x3b\x44\x05\xf2\x62\xb6\x95\x50\x07\xb6\x78\xac\x16\xc0\xf0\xe7\xc1\x45\xd1\xe6\x79\x09\xb8\x12\xa1\xd0\x25\x8f\x6d\xd1\x7f\x0d\x73\x5b\x64\x1c\xc7\x95\x73\x89\x02\x7f\xb1\x50\x94\xc4\x92\x7a\xa2\x38\x5c\xd6\x99\xf7\xcc\x59\x16\x5d\x06\xbb\x58\x80\xcf\xf7\xab\x66\xa0\x32\xdc\x44\x55\x6f\x4e\x2d\x31\xc0\xa9\xbf\xeb\x42\xc3\x6a\x0a\x71\x2c\xa9\xd7\xc9\x45\x5f\x28\xf2\x87\xd4\x78\xd9\xe5\xf2\xf2\xb2\x58\x5a\x5a\xe2\x32\xad\x4e\xce\x81\xbd\x07\x00\xcc\xe7\x73\x79\xeb\xd6\x2d\xec\xed\xed\x89\x1f\xfd\xe8\x47\x12\x00\xbe\xf9\xcd\x6f\xea\x09\xaa\x4d\xec\x0b\x38\x93\x12\x60\x17\x1c\xa7\x94\xc2\x7c\x3e\x97\xff\xf9\x9f\xff\x69\x9e\x5d\xbf\x7e\x1d\xf3\xf9\xbc\xb1\xcf\x07\xf2\xce\x5d\x1d\xb3\x12\xaa\x87\xba\xb8\x1b\x89\x83\x34\x4d\xf5\xb9\x48\xc6\x4f\x39\x9c\x74\x50\x63\xd8\xb8\x9b\x37\x6f\x72\xb0\xc2\xd3\x6d\xca\x8b\xef\x16\x65\xd3\x7d\x3f\x07\x31\x84\x4d\xb8\x26\xc6\x25\x84\x6a\xeb\x94\xad\x51\x6a\x6c\x1f\x03\xc7\x99\x89\x8b\x70\xf7\x71\x01\x18\x20\x30\x1d\xc9\xf6\x3e\x8f\x69\xe6\x11\x72\x14\x02\xd3\x3d\x9d\x8e\xe9\x59\x4a\xbc\x83\x12\xa3\x51\x3d\x41\x6b\x05\xae\x2a\xd3\x76\x2d\x15\x3e\x54\x14\x60\x5c\x9c\x8a\xf7\xc6\x15\xb9\x6b\x43\x9d\x6d\x9d\xdd\x8f\xb7\x89\x49\x69\x72\x75\xe0\xa8\x0e\x6d\x2f\x0a\x3c\x0e\x62\x5d\xd4\x75\x90\xb6\x32\xf8\xef\x9b\xee\x9b\x3a\x48\x53\x99\x6a\xf3\x73\xf7\xdd\x77\xa3\xd3\xe9\x54\x56\x11\xe9\xb6\xee\x82\x17\xb3\xfd\xbf\xe3\x0a\xc5\x69\x1b\xb9\xd3\x9e\xc0\xda\xbd\x06\x2b\x60\x43\x20\x9c\xde\x0f\xc5\x0b\x07\x07\x31\xa5\xee\x0e\x93\x52\x25\xa0\x85\xeb\xfc\x96\x83\x82\xe0\x8a\x24\x1f\x48\x70\x56\xc1\xc6\x66\xe9\x19\xd3\xcf\xfc\xc2\xf2\x42\xbb\x25\xb2\x13\xe7\xfd\x7a\x22\x37\x4d\x9d\x06\x34\x90\xd2\xc3\xc6\x7a\x67\x14\xb6\x39\xa6\x52\x82\xa4\x8a\xa1\xec\xaa\xa2\x32\xea\x56\x0a\xbf\xc1\x9f\x0b\x5c\x8a\x53\x7b\xfb\x00\x62\x3d\xcc\xc5\x27\x38\x73\x03\x89\xbd\xf5\xbe\x3f\x2a\x23\x8b\x3e\xf3\xe5\xd4\x13\x55\xdb\x81\x3b\x14\x55\xfa\xf5\xbe\x93\x03\xec\x88\xe5\x4d\x21\x89\x24\x0a\xf0\x85\xca\x7e\x37\xbc\xdc\x8b\xf4\xfb\x3a\x03\x0e\x00\x84\xde\x33\x05\x00\x7e\xf1\x8b\x5f\xf0\xa1\x23\x3c\xfc\xf0\xc3\xfa\x50\x53\x27\xad\xb6\x61\xbd\xcb\x97\x2f\xcb\x77\xdf\x7d\xd7\x66\x48\x4a\x5c\xbd\x7a\xf5\x0f\x35\xb0\xb8\x3b\x88\x61\xe5\xeb\xda\x83\x1a\x9e\xc6\x35\x94\xc1\x4f\xa7\xc9\x1d\x04\x50\xf1\xfc\x35\xe9\xa8\x45\xe4\xea\x1d\xe9\x92\xb6\xb3\x8a\xea\x84\x7d\x48\xf9\x38\x74\xb9\xf7\xcc\xa5\xf4\x0a\xc6\x45\x68\x8a\x93\x4f\xb6\x53\x8a\x09\xdb\x00\x45\x6b\xdf\xf9\xd6\x19\x9c\x38\xc8\x98\x8b\x6e\xde\xfc\x78\xbc\x28\xec\x7b\xb8\x1d\xc1\x79\x5d\x2e\x85\x56\xa4\x78\x7d\x18\xe6\xe5\x8f\x30\xc7\xa5\xee\xa3\xd6\x29\xe0\xba\xb0\x75\x02\x15\x58\xbc\xa1\x35\xb1\x3c\xa1\x7c\x23\xf0\xae\x0e\x40\xd4\xf9\x0b\xb9\x50\x1c\xfa\x7a\x11\x61\x59\x97\xd7\x50\x3a\x75\xa0\xbd\x36\x5f\x7c\x75\x03\xf3\x5b\xb0\x8d\x25\xeb\x62\xfd\xc2\x51\x58\xa8\x28\x61\x38\x0d\x4e\x05\xfc\x39\x9e\x1c\xbf\x56\xe1\x39\xe9\xf8\x28\xa8\x1a\xd4\x49\xcb\xf4\x2e\x03\x32\xfc\x0e\xe2\x69\x50\x1b\xd0\x8b\xb8\x08\xcb\x57\xb8\xd8\xa1\x0c\x6f\x75\x0c\xb8\x22\xd5\xf3\x38\x8a\x6b\x3e\x00\xe5\x4c\xcc\x65\xca\xdd\x96\xd1\xa9\x85\xf2\x65\x25\x63\x3c\xcb\xc5\xf6\x0c\xea\xc0\x80\x85\xbb\x10\x5b\x53\x5c\x97\xbb\x85\x0b\x49\x09\x29\x8a\x35\x70\x84\x53\x17\x0c\x3c\x94\x6c\xb3\xc3\xc2\xe8\x22\x94\xe0\x45\x97\x84\x9f\xbc\xad\x27\x6d\x3b\xb2\x4b\x83\x1d\x26\x4f\x89\xa5\xc1\x9d\x66\x61\xec\xc4\x71\xf0\x1a\x14\xa4\x48\x08\x90\x3d\x79\xd8\x93\xeb\x07\x70\x75\x6c\x44\xe8\x3d\xde\x7f\xff\x7d\xe7\x7e\x32\x99\x88\x8f\x3f\xfe\xb8\xe2\xaf\xcd\xdd\xb8\x71\x03\x9f\x7c\xf2\xc9\xa2\x61\xee\x08\x44\x78\xae\xcd\x30\x6d\xba\x5f\x84\xe1\xf0\xc9\x83\x26\x83\xb3\x2d\x6f\x07\x95\x9f\x6d\xf1\xdf\xc9\xbb\x45\xeb\xaa\x91\x71\xa9\x63\x57\x7c\xbf\x46\xe1\xf0\x86\xdc\x30\x2e\x6c\xa9\x67\xd6\x41\xc3\x34\xa8\x67\x45\xc1\xb7\x1e\x3d\xff\x36\xea\x60\x5c\xca\xb9\xb7\x79\x00\xf4\x58\x30\xdb\x61\xb4\x26\x1e\xaf\x08\x07\x71\x07\xf9\x50\x21\xd7\xd4\x68\x16\xfe\xe0\xec\x79\x88\x75\x58\x24\xee\x36\xe5\xef\x03\x15\xff\xd9\x9d\xe4\xd3\x4f\xbf\x2d\xbd\x36\x17\x02\x53\x8b\xa4\x1f\xf4\xeb\x83\x75\x2f\x9f\x8e\x7f\x6d\xd1\xba\x0b\x90\x59\x5c\xc5\xf8\x89\xd7\xc0\x3d\x5f\x8a\x31\x06\x81\xc9\xaf\xbe\x73\x15\x60\x95\xda\xf0\x9f\x38\xe4\xa3\x97\xc9\x9a\x11\x0b\x57\xc3\xd6\x7a\x72\xf3\x68\x26\xe8\xd6\xa4\xad\x82\xf1\x54\x99\x22\x4f\xc1\x96\x8c\x8c\x7e\x19\x9a\xd3\x63\xc1\x82\x32\xf2\x47\x6f\xad\x5f\xf9\x6e\x07\x55\xce\x21\x00\xc3\xff\xbc\x5c\x37\x38\xc3\x1a\xc1\x4a\x26\x62\x61\x6d\x81\x4d\x00\x3d\xc9\xb7\x1a\x8f\x0b\x48\x78\x1b\x6c\x21\x2a\x6c\xdd\x92\x82\x84\x82\x6a\x2c\xd7\xc2\xee\x4e\x18\x0d\x00\x10\x57\xaf\x5e\x35\x6c\xcc\x1d\xc6\x53\x27\x2f\xee\x34\x4f\x75\xee\x4e\x98\x90\x36\x96\xa2\x2d\xee\x45\xd3\x6c\x4b\xe3\xa0\xfa\xaa\x4d\x06\x1f\x54\x46\x37\xba\x3a\x65\xc5\xaf\x9b\x94\x5b\xc5\x69\xcb\xd3\x1b\xf3\xaf\x0c\xd9\x14\xcf\x5c\x43\xcd\xca\x7e\xa5\x87\x63\x1c\xff\xe5\xab\x92\x08\x75\x7b\xa7\x06\x3f\x7e\x47\xd4\xbb\xea\xfa\x74\xba\x2a\x13\x20\xdd\xa1\x15\xac\x29\x63\x90\x95\xbd\xf6\x65\x01\x05\x1e\xfa\x4c\x53\x83\x0b\x29\xfe\x36\xf6\xa1\xad\xc1\xf9\xfe\x0e\xf2\x3e\x04\x4e\xeb\xd8\x86\x36\x45\xaf\x7f\x17\x05\x59\x7e\xdc\x4d\x1d\x52\x06\xfc\x34\x01\x30\x2e\x54\xfd\x70\x75\x8c\xd1\x81\x41\xa0\x37\xa7\xab\xe2\x41\x09\x40\x11\x52\x00\x92\x4a\x3f\xa4\x54\x55\x75\x99\x46\x4c\x65\x3b\x47\xf9\xeb\xb2\x04\xfc\x30\x3e\xa5\x87\x55\x8d\x31\xc0\xac\xe5\x12\xd7\x38\xab\x89\x51\x3e\x34\x4d\x3c\x30\x61\xb8\x88\xc8\x46\xca\x94\xa4\x03\x68\x00\x96\x2e\xeb\x60\x3a\xad\x32\xbd\x3a\x00\xe2\x33\xa2\xba\xa4\xaa\xd4\xd0\x64\x82\x55\x6a\xc0\x3e\x57\x0a\xc4\x32\x47\x3c\xdb\xa5\xe2\x57\xba\x2c\x65\x7f\xb6\xdb\x35\x94\xf7\x44\xe5\x66\x92\x6d\xe6\x4a\xc5\xb5\xc9\xc3\xa2\xfd\x51\xf1\xe1\xa5\x50\x59\xb1\xff\x13\x99\xe1\x70\xd2\xb2\xc9\x41\xaf\x3c\x7f\x25\x73\xa4\xec\x67\x23\x55\x2e\x60\x27\xc5\x18\x35\x65\x82\xda\xb8\x94\x6d\x4e\xec\x3b\x99\x36\x08\x2d\x69\xcb\x38\xf4\x3f\x1d\x97\x89\x46\x01\x80\xcc\x8b\xc3\x65\xa5\x2c\x01\x9e\x27\xe3\x16\x01\x2f\x21\x39\xd2\xc4\x0a\x87\x5c\x1d\xbb\x7b\x90\x3c\xd4\x31\xd2\x4d\xb2\xe9\xa0\xe5\xf3\xcb\xb6\x08\x9b\x1c\xca\x03\xf7\xd3\x26\x1f\xdb\xc0\xf6\x22\xf2\xbd\x2e\x0f\x8b\xc4\xdd\x14\xce\x67\x87\x42\x6e\x91\xe7\xa2\xce\x63\x53\xe5\xfb\x19\x41\xe0\xba\xd1\x29\xf6\x07\xf8\x2c\x89\x62\x40\x42\x39\x72\xd0\x38\xd6\x99\x75\xc7\x31\x27\x7a\x28\x55\x01\x0f\x44\xc4\xa8\x52\x6d\x41\x96\xc2\x8e\x98\x84\x23\x80\x98\x75\xc3\xd3\xd2\x9d\x5d\xe7\xdb\x1e\x5b\xe0\x5a\xda\xa1\x49\xb9\x2d\xe3\xae\x4d\xa8\xf6\x8f\x89\xfc\x81\xc5\x40\xea\xa2\xef\xff\x90\x3c\x2e\xd2\x49\x9a\xde\xb7\x85\xf7\xf3\xdd\x46\x57\x1e\x94\x2e\xad\xf8\x09\xad\x2c\x33\x60\x86\x00\x29\x20\xa5\x30\xdb\x67\xeb\x40\x2e\x58\xe7\xe0\x82\x2b\x84\xf2\x99\xc6\xd0\x5c\x27\x19\xa0\xee\xe4\x85\x05\x53\x4c\x19\xb1\x77\x8e\x3f\xc5\xda\xb0\xa3\xf4\x8c\x39\x61\xcb\xe6\x17\x9c\xbd\x70\xa0\x85\xc6\x11\x7e\xba\x1a\x54\x79\xa0\xde\x0c\x5b\x30\x03\xc3\x01\x3b\x1c\x1c\x81\x31\xa7\x1a\x9d\x95\xa6\x4c\x01\xe4\x50\x62\x33\x65\xb2\x6f\x00\x00\x31\x36\x46\xe9\x7c\x92\x54\x84\x4c\x09\x64\x26\x9c\x93\xb7\x76\x03\x84\xcb\x9d\x1a\xff\x42\x0a\x95\x65\xf6\x6c\xb3\xa2\x5e\xca\x7f\xc6\x6e\xd2\xc0\x44\x83\x3d\xd8\xba\xd4\x9f\x83\x78\x40\x87\x06\xb3\x4c\x14\xab\x32\x38\x9f\xd3\x31\xc8\x74\x5d\xbb\xdf\xb8\x88\x9a\xdc\x78\x0a\x19\x2a\x73\xa1\xd2\x34\x56\xa9\x39\x86\x81\xc2\xdf\x33\x54\xfe\xf2\x37\xa4\x38\x0f\xca\x3a\x37\x3d\xab\x53\x8c\x8b\xf8\xe1\xcf\xea\x98\xe4\x45\xfd\x6a\xff\x75\x86\x52\x5b\xdc\xfa\xd9\x41\xcb\xd6\x14\x5f\x9d\x9f\xa6\x21\xa3\x50\xfa\x6d\xe0\xc7\x7f\x16\x02\x54\x4d\x69\x70\xbf\xa1\xb2\x4a\x3f\x50\x28\xa1\x50\xe5\xd7\x56\x8a\xbb\x9b\xad\x0a\xfe\xf2\x78\x94\x27\x14\x5d\x96\xd3\x55\xf8\xc1\xbe\xa1\xc1\x81\x23\x99\x99\xc5\x09\x36\x4e\xac\xec\x64\x35\x33\x4b\x0d\x5a\x58\xe8\x30\xee\x59\x1f\xc6\x90\x63\x16\x70\xf9\x4e\x94\xe7\x2d\x89\x86\x32\xd6\x3e\x63\x6e\x11\x44\xde\xd4\x41\x0e\x12\xc6\xef\x08\x07\x49\xbb\x2e\xce\x83\x52\xab\x3e\xbb\xa1\x7f\xeb\xca\x76\xa7\x14\x74\x28\x8e\x45\xeb\x6f\x51\xcb\xc8\x71\x41\xc0\xac\xdb\x85\x80\x34\x8a\xd1\x51\xff\xd6\x62\x36\x20\xba\x30\x87\x39\xc9\xe1\x29\x2c\xf7\xda\xa2\x69\x1e\x6b\xe9\x8f\xca\x78\x59\x92\xca\x28\x7b\x18\x94\xc0\x47\x9c\x8c\xe3\x60\x83\x2b\x4d\xde\x67\xcb\x30\x1a\x2c\x68\x74\xc5\xba\x61\x55\x01\xc3\xf6\x27\x3f\x29\x13\x56\x39\xf0\xa4\x12\x4e\xf7\x67\xae\xa6\x49\x69\x60\x52\x24\xe6\x0e\x8b\x70\xca\xc1\x96\xc9\xd4\x4f\xf1\x7d\xa4\x61\xb2\xfc\x34\xeb\x9d\xf0\xfd\xd5\xf9\xcf\x84\xca\x66\xb1\x1c\x4b\x81\xcc\x93\x6c\x45\x38\x5d\x77\x26\x42\x9d\x73\x97\x99\x53\xca\x65\x9b\x95\x53\x3c\x3d\x2c\xa6\x0d\x39\xeb\x87\xcc\x7b\x32\xfe\xf5\xbc\x17\x5f\xd6\xb2\x6c\x19\xbc\xa3\x48\x65\x69\xac\xc6\xb3\x58\xa6\xd2\xf3\xee\xb4\xf5\xb0\xbc\xe3\x7d\xbe\x4e\xb7\x84\xfc\xeb\x30\xa1\xe7\xbe\x22\xf5\xe3\xae\x8b\x8f\x3f\x0b\x85\x0d\xc5\xed\xbb\x3a\xb9\x17\xca\xb7\x2f\x83\x16\x05\x00\xa1\x34\x75\xb8\x45\x98\xe3\x83\xc4\x57\xe7\x0e\xc2\x66\xf1\x72\xf9\x71\x37\x95\xd9\x07\x2b\x4d\xdf\xd8\xf8\xad\xb3\x5e\x9b\x3e\x58\xed\x7d\xc3\x32\x60\x7b\x4f\x4a\x16\x74\xa9\x05\x1c\x56\xbe\xba\x4b\xff\x0a\x4b\x46\x87\xaf\x66\x86\x3f\xd2\xac\x0b\xf1\x77\xc4\xee\x89\xdc\x30\xca\xce\xea\xd7\x32\x97\xfc\x7c\x07\x05\x39\xca\x9c\xeb\xbd\x18\xc2\xc3\x62\x7c\xf7\xe0\xd2\x85\x1a\x53\x87\x32\xe3\x5b\x00\x00\x20\x00\x49\x44\x41\x54\x9b\xb5\x1f\x6a\xe8\x8b\x28\xdb\x3a\xeb\x20\x44\x8f\xb6\xc5\xd3\xd4\xc0\x43\x20\x84\xc7\x55\x87\xbe\x9b\x3a\xb0\x9f\x5e\x08\xad\x87\xe2\xf6\xd3\x08\xe5\xb9\x09\xb8\xb5\x75\x4c\x3f\xff\xc6\xbf\x3f\x54\xe4\xb4\x03\x00\x4a\x90\x2c\x87\x8a\xe0\xa9\x69\x17\x9d\x38\x4e\x59\x42\xb0\xb8\xad\x3a\xd3\x68\xb5\x12\x37\x6a\xba\xcc\x57\x79\xc7\x9b\x34\x8f\xd4\xa2\x26\x0b\xea\xfd\x74\x18\x20\xb1\xe9\xea\xb6\x1d\xca\xb9\xd3\x51\x0c\x00\xe1\x30\xc2\x49\xc2\x6a\x55\xab\x80\x79\x47\xd6\xef\x5d\x9a\xc5\x28\x60\x18\xc3\xa3\xca\x26\x14\x79\xf4\x32\xa9\x57\x33\x99\xea\x22\xa9\x88\x52\x29\x68\x56\x6e\x6f\x80\x90\x6b\x98\xc3\x54\x9d\xe4\x1a\x88\x23\x8d\x64\x3a\xea\xc8\x61\x46\x6a\xaa\xab\x53\x7f\x1f\x8b\x1d\xac\x31\x65\x97\x43\xf3\x52\xeb\xb4\x2c\x10\x33\x46\x19\x18\x28\x36\x67\x5a\xb1\x15\x67\x2e\x56\x64\x73\x05\xed\x81\x9b\xaa\x4c\x1b\xca\x02\x6a\xa5\x14\x14\x01\x99\x50\xd3\x69\x27\x1f\x4e\x3a\x72\xaa\xc8\x2d\xa3\xdf\xfe\xd9\xbb\x45\xe5\x92\xef\x16\xe9\x8b\xbe\xbb\x93\xb8\x7d\x30\xd0\xa4\xc4\xdb\x00\xd4\x22\xf9\xba\x13\xf9\xbb\xa8\x6b\x2b\x7f\x1d\x38\x6b\xcb\x43\x93\xff\x3a\xe0\xd7\xe4\x16\xd1\x27\x7e\xdc\xb5\x91\x34\x25\x72\x27\x4c\x80\x71\x7e\xa7\x96\x04\x48\x82\x84\x5d\x91\x63\xac\x06\x6b\x6d\xd8\xb0\xe4\xcb\x24\x36\x3e\xef\x84\xe7\x1d\xbd\x95\xb9\x04\x34\x55\xaf\x7b\xab\x0b\x82\x1a\xa2\x28\xf2\xa9\xf7\xe7\xa8\x2d\x7b\xdd\xe6\x47\x81\xeb\x26\x17\x6a\xe8\x4d\x88\xb4\x2e\xcd\xb6\x30\x4d\xf1\x2c\x6a\xbd\x84\xe2\xac\x4b\xa3\x2e\xce\x26\x86\x6f\xd1\xb8\x43\x7e\x17\x89\xfb\x20\x75\xe9\x58\x6b\xfe\x50\x91\xe3\x08\x52\x46\x94\xa9\x08\x63\x05\x48\xde\xb2\x98\xae\x0a\x38\x72\x95\x0d\xf3\x67\x87\x0f\x14\x7b\x59\xfc\x35\x35\x7d\x47\x51\xda\xa7\x2c\x45\x15\xce\x8f\xbf\x57\x00\xe9\x38\x9a\x52\x33\x9d\xd8\xa1\x80\xb8\x8e\xf6\x15\xb6\x65\x0c\x78\x78\x9d\xa6\x8d\xc3\x49\x43\xbf\xe2\x00\xc5\x61\x5b\x7c\x38\x57\x0a\x08\xad\xff\x01\xc8\x08\x99\x8c\x90\x01\xe4\x6f\x5a\x66\xda\x42\x4b\x7f\x36\xae\x6e\xf7\xd6\x69\x47\x4e\x6f\xf7\xe7\x3b\x69\x2c\xf7\xcc\x30\x9f\xce\x0a\xff\xf5\x8a\x48\xca\xd9\xce\xcf\x96\x84\x88\x55\x09\x99\xd5\x45\x9a\x50\xd2\x05\xf7\xc8\x35\xc7\x85\x8c\x3c\x3d\xac\x66\xfd\x14\xe9\x64\x42\x8d\x87\x49\x7e\x63\xdc\xc9\xc7\x80\x7b\xa0\x2c\x5f\xaa\xac\xf3\xe3\xd5\x51\x13\xf3\xdb\xe4\x7c\x0b\x3c\xa4\xf4\x16\x51\xb4\x8b\x80\x8e\x83\xb8\x3a\x03\x68\x11\x06\x69\x51\xf9\xd9\x14\x47\x5d\x5e\x9a\xe2\x6c\x03\x66\x6d\xe9\xb4\x85\x59\xb4\x5e\x17\xd1\x31\x4d\xef\x24\xb0\x18\x45\xdf\xf4\x31\x9c\x0c\xd7\x8d\xef\x56\xe6\x9e\xa0\x38\xeb\x87\x8b\x5d\xee\x2a\xe4\xa5\x23\xc3\xa8\x1a\x00\xd5\x4e\xe8\x3b\x7f\x32\xaf\x79\xc6\x04\x9d\x7e\x4a\xae\x27\xf7\xd2\x18\x87\x56\x9c\xe8\xf2\xb5\x8c\x8f\x2f\x32\xec\xe2\xd3\x8b\x8b\x0c\xc5\xd4\xb1\x0f\xa1\x74\x16\x19\x9e\x69\x8b\x3b\x74\xbf\x48\x3b\x6a\xa2\x2f\xeb\x68\xd5\xa6\x70\x75\x65\x09\xc5\xd1\x14\x77\xa8\x0c\x07\x89\xbb\xd5\x4a\xcf\x3b\x48\xf3\x0e\x0d\xe1\x4f\x00\x2d\x1b\x94\x33\xea\xa1\x4d\xdf\xd2\x55\xda\xa2\xe2\xac\x89\x47\x93\xf0\x89\xaa\xa5\x3f\x6d\x41\x2b\xf6\x8e\x42\x9d\x4b\x5b\x0f\x3c\x3f\xe5\x1f\x3f\x36\xc3\x84\xe2\xe7\x88\x29\x65\x34\x23\x67\x49\x6d\xb4\xf6\x1d\xb1\x88\x89\xe5\xdb\xb1\x16\x14\xef\xaf\x9a\x9a\x50\xf6\x9a\x23\x12\xa5\x82\x7e\x88\x4a\xc6\x4a\x1b\x25\x95\xfa\x35\x1d\x39\xcd\x63\x1a\xe7\x1d\x31\x56\xc2\xf9\x8e\x77\xa2\x4c\x9c\xb3\x7a\x94\x52\x46\x46\x8e\x3b\x72\x7a\xa3\x3f\xdf\xde\xef\xe6\x5b\xb9\x50\x53\x5b\x91\xf6\x97\xa7\x6e\xb2\x18\x02\xac\xf0\xaa\x00\x70\x48\x37\x5d\x5e\x9f\x61\xd1\x01\x2a\xc3\x77\xca\x8d\xdb\x47\x49\x92\x94\x1c\x25\xf9\xce\xad\xa5\xec\xfa\xb4\x23\xa7\xac\x5c\x75\xf5\xe0\xbb\x26\x43\xe5\x4e\xc2\x01\xed\xec\x46\x9d\x0e\x5b\x44\x26\xd5\x19\xe5\x75\x6c\x4d\x9d\x5b\x44\xc6\xea\x67\x8b\x82\xb9\x26\xff\x6d\xc0\xae\x49\x06\x87\xe2\x6e\xf3\xdf\xa6\x4f\xfe\x10\xff\x8d\x69\x2f\x82\xd6\xda\x40\x4c\x85\x11\xf0\xe7\xb3\x70\xfa\x9c\x5b\x04\x75\xc6\x66\x41\x7f\x6a\xdf\xd6\xd5\x29\x88\x5a\xa3\xd5\xf1\xc3\xad\xe2\xfa\x67\x3a\x36\x93\x07\x62\xc2\x01\x28\x37\xde\x32\x73\x5c\x0a\xbf\x35\x54\xb1\x47\x9b\x72\xeb\xa3\x8d\x45\x58\x84\xba\x0c\x85\x0b\xc5\x59\xf7\x7b\xa7\x71\xf3\x36\xd1\xc6\xd4\x2c\x62\x81\x34\xe5\xcb\x07\x6e\x6d\x4c\x4a\x53\xbe\x42\xac\x4a\x13\xa3\x13\xca\x4f\xc8\xbf\xf0\xad\x4f\xae\xb0\x00\x48\x05\x92\xf3\x84\x76\x8a\x95\x2b\xcc\x15\x0d\xca\x99\x13\xc2\xd9\x85\x4a\x73\x37\xfe\x18\xb3\xe2\x6c\x51\xcb\x68\x84\xd2\x9f\x9d\x98\x5a\x9a\xf8\x7c\xe2\x83\x1f\x37\x58\x18\xf6\x17\x9c\xb6\x61\x86\x23\xca\x7f\x7c\xa8\xcc\xf8\xd1\x50\xc8\xbe\xb3\xcc\x90\xce\x0f\x6c\x02\x7a\x72\xbc\x63\x9b\x68\x7f\x36\x33\x4e\xd9\x89\x0a\x60\x65\xca\xce\xae\x75\x06\xb5\x66\x57\x2c\xbe\xb2\x0e\x65\x44\x69\xde\xa1\x61\x1e\x23\x05\x48\x7a\x4a\xf9\x20\xca\xa4\xd2\x4e\x88\x9d\x3e\x8c\x82\x75\x19\xde\x5a\x9a\x7f\x92\x45\x72\xca\x03\xfa\x06\x9c\x95\x35\xf6\x9e\x57\x93\xf6\xeb\x84\x63\x55\xa9\x65\xac\xff\xdd\x2a\xcf\xc9\xad\x12\x8e\xed\x78\xbe\x32\xa1\xc6\x7b\xbd\xfc\xfa\xee\x52\xb6\x9d\x46\x2a\xf5\xca\xd5\x54\x0f\x77\xea\x0e\x12\xc7\xa2\x32\x26\xf4\x7c\x51\xb9\xa9\xaf\x0f\x22\x3f\xdb\xea\xc7\xd7\xab\x6d\x60\x6e\x11\xff\x07\x01\x82\x8b\x00\xf2\x90\xff\x3a\xc0\x78\xd0\x6f\xb6\x08\x96\x08\x39\x01\xb4\x1f\xb2\xa8\x15\x87\xaf\x10\xea\x98\x00\x89\x00\x75\xee\xed\x26\x2b\x15\x94\xe4\x42\x5c\x5b\x57\x05\x58\x60\x82\xb3\x42\xbd\xb8\x4e\x19\xeb\x93\xa5\xe7\x05\xe1\xf7\xb5\xf3\x65\x54\x8d\x70\x0e\x44\x44\xe5\x58\x94\x28\xb6\x71\x37\x08\x92\xef\x61\xd3\x34\xd7\x07\xed\x08\xbd\x62\xc5\xb5\x84\x39\x88\xe3\xdf\xf3\x0f\x11\x3a\x07\xe9\x2c\xdc\xdf\x41\xca\x72\x27\x65\x3e\x48\x98\x3a\x00\x79\x60\x57\x1e\xfb\xe0\x7f\xff\x42\x71\xa9\x62\xa3\xc2\x79\x97\xf6\x94\xa0\x14\xb9\xea\x3b\x8d\x92\x37\x4e\x7f\x5e\x98\x93\x88\x7d\xa0\x1c\xff\xf5\xf4\x23\xc3\x2f\xb0\x73\xba\x3c\xab\x41\xd9\xed\xfd\xbd\x42\xd9\xc8\x34\xbb\x02\x94\xbb\x49\x53\x35\x59\xd6\xb9\xfc\x1d\xfe\x0d\xe3\xc1\xe3\x09\xe6\x95\xd8\x23\xcf\x18\x60\x71\x99\xf3\x87\xbc\x49\xbe\x36\x62\xdd\x59\x81\x60\x5d\xeb\xec\x12\xa0\x04\xa6\x79\x07\x63\x19\x53\x0a\x82\xa4\x02\xbc\x18\x7f\xfe\x30\x48\x8d\x33\x3b\x86\x73\x10\x5b\xfe\x65\x00\x32\x10\xb2\x49\x47\x0e\x6f\x0c\xe6\x5b\xf7\xef\xaa\x9d\x6e\x86\x35\x5b\x9e\x70\x36\xb5\xf1\xe4\x17\x13\x08\x36\x17\x83\x4b\x2d\xbb\xc2\xbe\x6d\xc8\x3f\xaa\xf7\x0e\x8e\x2c\x9f\xcf\x62\xb9\x77\x7b\x29\xbb\x3e\xea\xe6\x7b\x05\x6b\x58\x94\x49\x83\xbc\x16\x20\x03\xb4\xcb\x9d\x3a\xff\x4d\xae\x49\x4e\xde\x49\x3a\x7f\x2c\xd9\xbb\x68\x98\x90\x81\xd6\xa4\x67\x5b\xe3\xfc\xfa\xd7\xbf\x2e\xf4\x11\x24\x81\x3c\x39\xee\x87\x3f\xfc\xa1\x7f\x1e\x53\x28\x5f\x6d\xee\xa0\x75\xdc\x64\x94\xfa\xef\x1b\xaf\x43\xc0\xa5\xae\xd2\xea\x98\x17\xfe\xce\xf8\xf1\x4f\x8a\xd6\xf7\x52\x9f\xf1\xc3\x22\x70\xc4\x26\xef\x34\xe4\x8e\xd9\x57\x40\x80\x6f\x7d\xa2\x5e\x08\x18\xca\xba\x7c\xe2\x5b\x2b\x26\xdf\x28\xa7\x08\xf3\x09\x67\xdc\x4f\xf1\x2b\x48\x41\x88\x16\x2a\xf0\x80\xcb\x04\xfd\x4e\x84\xc0\xbb\x83\x76\xa4\x10\x63\x11\xea\x24\x15\xd6\xac\x26\x0f\xfa\x9a\xc7\xed\xa7\x11\x12\x06\xfa\xb7\xce\x7f\x28\x6f\x75\x88\xbc\x2e\xef\xa1\x76\x1b\xaa\xd3\xb6\xfa\x6b\x8b\xdb\xdc\xbf\xf4\xd2\x4b\x78\xe1\x85\x17\xe4\x60\x30\x70\xea\xca\x59\x12\x0d\x92\x20\xc8\xf9\x92\xd8\xd5\x7b\xb9\x80\x94\x30\x00\xdd\x03\x20\xe6\xb6\x32\x6e\xa0\x7f\xab\xfb\xae\x98\x77\x95\xee\xc1\x28\x43\xb7\x91\x33\x05\x65\xd7\xde\x69\x43\xc0\x01\x05\xcc\x9c\x37\x7d\x92\x29\x41\x7b\x6d\xc1\x0c\xf1\x34\x6c\x40\xe8\x21\x20\xab\x58\xf5\xd6\xf4\xe4\x19\x20\xaa\x52\x1e\x17\x5a\x79\x77\x9c\x4d\x81\xf2\xca\xc1\x6a\x43\x83\x00\x36\xf9\x54\x0a\x9a\xe6\x1d\x1a\x16\x73\x5c\x82\x4c\xc9\x42\x2e\x00\x70\xb4\x82\x37\x00\x66\x16\xcb\xe9\xf6\x60\x7e\x6d\x77\x29\xbb\xb2\x3c\x8b\xee\xe9\xe4\xd4\xe3\x75\xe6\x7c\x7b\xa7\x2e\x1b\x36\xf3\xd4\xe1\x8a\x2b\xeb\x4f\xa1\x00\x2d\x75\x74\x0e\x5c\x43\x4e\x3f\x2e\x0e\xca\xb4\xdf\x30\x17\x2a\xdb\xeb\xe6\x5b\x37\xfb\xf3\x4f\xca\xf9\x2d\x99\xfe\xd3\xf5\xe4\xaf\x26\x7d\xfb\xed\xb7\x9d\xad\xf5\x59\xbd\x84\xe4\xdc\x22\xfd\x31\xd8\x9f\x4f\x9c\x38\x81\x47\x1e\x79\xc4\xf7\xeb\x5c\xff\xf6\xb7\xbf\xc5\xf6\xf6\x36\xcf\xc3\x22\xae\x2d\x5f\x4d\x65\x58\x44\x0e\xf9\xf5\xb0\x08\x38\x71\xe2\x58\x5d\x5d\xc5\xe7\x3f\xff\x79\xc7\x83\x7f\x04\x49\xdd\x7c\x2b\x00\xe2\x1b\xdf\xf8\x86\x73\x3c\xcf\x5b\x6f\xbd\x85\xcb\x97\x2f\x87\x64\xeb\xa2\xdf\x6a\x11\xbf\x07\x01\x31\x8d\xf5\xd7\xc4\xb8\x84\xd0\x50\x9d\xb2\x93\x80\x19\xdf\xe5\x96\x87\x71\xbc\x63\x97\x6c\x8b\xe4\x72\xd5\xc1\x05\xba\xf3\x04\x3a\xb2\x13\xa7\xf7\x0b\xb8\x2c\x0c\xef\xb3\xdc\x8a\x0b\x59\x2b\xd6\x90\xd4\x12\x83\x59\x86\x9a\x3a\xd5\x79\x02\x8a\x53\xae\xa5\x7b\x4e\x87\x3e\xbb\x83\x83\x36\x6f\x86\xfd\x22\x08\xb3\x0e\xb4\xf8\xfe\xfd\x0e\xd0\x04\x20\xfc\x34\x9b\x86\x60\x9a\xd2\x0e\x81\xd7\x45\xca\xd4\x94\x56\x9b\xff\xb6\x0e\x7e\x27\xa8\x5d\xdf\xb7\x95\xa7\x29\x6e\x5c\xbd\x7a\x55\xce\xe7\x73\xc1\x87\x06\x99\xbf\x92\x71\x51\x12\x84\x2c\x5d\x12\xb7\xf3\x98\xf6\xe2\xb9\xda\x80\x22\x61\xe9\xfa\x00\x18\xf7\xcd\x6c\xf2\x3d\xa0\x61\xa8\x07\xf6\x3d\x9f\xd8\x50\xf6\xa3\x6a\x3b\xb7\x81\x0b\xa5\xee\x9d\x8f\xc3\xae\x8d\x72\xf3\xa2\x75\xfc\x1a\x4f\xb6\xcf\x99\xe1\x08\x38\x07\x1b\x42\x69\xc0\x61\x3d\x94\xf9\xa3\x6a\x79\x78\xc1\xbc\x31\x13\x13\xa6\x7c\x60\x98\x07\x9e\x1f\x9d\x6f\x06\xb4\x14\x80\x3c\xa6\x61\xd6\xa1\xa1\x14\x54\x80\xca\xf2\x8f\x31\xc5\x8d\x0a\xef\xf6\xed\xdb\x38\x77\xee\x1c\x9e\x79\xe6\x19\xa0\x2a\x23\x0d\x68\x01\x90\x49\x42\xba\xdf\xcd\x76\xaf\xac\x4e\xdf\xd9\x18\xc5\xa7\x62\x19\x1f\xe7\x55\xc7\x87\x70\xdc\xb2\xd6\x6c\xff\x0f\xdb\x0c\xcc\xc1\x96\xac\x5e\x1c\x83\x8b\x7d\x17\xe3\x85\x5f\x57\xbe\x5b\x11\xe7\xa4\x23\x77\xb6\x07\xe9\xc7\x37\x97\xe7\xd7\xd2\x58\x4d\xe1\x82\x31\x1f\xe8\x81\x88\x70\xeb\xd6\x2d\xdc\xbe\x7d\x5b\x47\x5d\xa7\x08\x81\xf6\x7e\x6e\xae\x9f\x79\xe6\x19\xd1\xeb\xf5\x78\x7c\x58\x5f\x5f\xc7\x5d\x77\xdd\x15\x4a\xc3\x5c\x0b\x21\xe4\x70\x38\x74\xc2\xed\xee\xee\xe2\xfc\xf9\xf3\x07\x01\x32\x4d\xae\xce\x08\xd3\xf7\x7e\x1b\x3a\x48\xba\x8e\xdf\x13\x27\x4e\x88\x93\x27\x4f\x02\x00\x96\x96\x96\x70\xe2\xc4\x89\xa0\xe1\xec\xaf\xf0\xf2\x74\xb1\x00\x20\x8f\x1f\x3f\xee\x8c\x8c\x24\x49\x22\x1f\x78\xe0\x01\x01\x14\x47\x23\x5c\xb8\x70\xc1\x4f\x7f\x11\xc0\xd1\x56\xde\x45\xbe\x77\xc8\x55\xe2\x68\x1b\x2a\xe2\x09\x34\x21\x4b\x00\x46\x71\x3b\x81\xd9\xe9\xc9\x85\x7f\xb2\x43\x45\xfa\xf0\x33\x3e\xff\x85\x60\x11\x3f\xa7\x9c\xfd\x8e\xab\xca\x10\x66\xd9\x20\x78\x87\x0e\x6d\x6c\x6e\x9d\x63\x4c\xb2\x67\x4e\xbe\xf5\x7b\xcf\xfa\x29\x05\x44\x1c\x29\x4a\xa2\xe2\xfc\x19\x78\x40\xc5\xd4\x8b\x72\x8f\x56\xaf\xfb\x68\x07\x61\x51\x7c\xa1\x58\x87\x54\xfd\xf4\x78\x3a\x6d\x8c\x04\x02\xfe\x42\xf1\x34\xe5\xb1\x29\x4f\x8b\x30\x2e\xfe\xbb\x50\xdc\x75\xec\xcb\x41\xeb\xd9\x07\x30\x6d\xf9\xae\xc4\x13\x58\x89\xe2\xfc\xa9\x02\xb8\x0c\xb3\x84\x76\x92\x29\x8e\xa3\x18\x66\x2c\x03\xbb\x40\xba\x68\xbe\xac\x4d\x7b\x0d\xd1\xec\x33\xc4\x84\x92\x7b\xde\x57\xe9\x8f\xeb\x7e\x8f\x39\x54\xe5\xe4\x55\x3d\xe9\x56\x2b\x74\x55\x9e\x0f\x64\xfd\xb8\x56\x83\x65\x70\xbc\xe1\x22\x07\x60\x79\x26\xbb\x82\xe1\x74\xcc\x96\x05\xe5\x3f\x1b\xdc\xee\xdf\x62\x11\x96\xed\xdd\x9a\x95\x71\x00\x4a\xc9\x3e\x69\x40\xe4\x0b\x68\xcb\x08\x95\x79\x20\x13\x93\x99\xee\xa2\x04\xd2\x2c\xa1\xdd\xac\x2b\x6e\xab\xc8\x55\xc8\xde\xf0\xb6\xfe\xae\x15\x37\x99\x4c\xf0\xc1\x07\x1f\x68\xe0\x02\x0f\xf0\x18\xd0\x02\x20\x05\x21\x9d\xc6\x72\x78\x79\x6d\xfa\xc1\xdd\x7b\xc9\xa5\xa5\xb9\xd8\x8c\x25\xf5\x8c\x41\xc5\xbe\xb7\x59\x12\xcd\x65\x4f\x80\xe9\x32\xe0\x44\xe9\x36\x51\x95\x99\x95\xb8\xd9\x35\x42\xef\xcb\xb8\x73\x52\xe9\xad\xa5\xf9\x95\x4f\x57\xd2\x0f\x6f\xf7\xf2\x9d\x92\x31\x2c\xca\x62\xcb\x25\x3d\x39\xe7\xd7\x57\xa8\xbf\xb6\xf5\x49\xd1\xed\x76\xf1\xf8\xe3\x8f\x9b\x07\x9f\xf9\xcc\x67\x90\x24\x49\x48\xbf\x00\x56\x59\xfb\x8c\x8b\x3c\x7e\xfc\x78\xa5\x6f\xef\xef\xef\xcb\x6e\xb7\xab\x9f\x8b\x5f\xff\xfa\xd7\x75\x79\xaf\x73\x8b\x2a\xe0\x3b\x91\xf1\xdc\x09\x00\xf2\xf4\xe9\xd3\x62\x63\x63\x03\x77\xdd\x75\x17\xee\xb9\xe7\x9e\x90\x4c\x04\x60\x0e\x77\xe5\xcf\xea\x9c\xbf\x12\x4c\x1e\x3b\x76\x4c\x1c\x3b\x76\x0c\x00\xb0\xbb\xbb\x2b\x97\x97\x97\xc5\x74\x3a\xc5\x1b\x6f\xbc\xa1\xfd\x35\x31\x45\xf0\xee\x0f\xc2\x36\xd5\x3d\x6f\xac\xaf\x45\xce\x2a\x6a\x53\x08\x46\xf0\x6b\xc6\xa5\x69\x0b\x74\x05\x40\x16\x43\x45\x12\x5e\xe7\xf1\x0d\x0e\x67\xde\x21\x8c\xd8\x31\xef\xf4\xba\x04\xe2\xd6\x06\xb9\x71\x38\x09\x33\x61\xc6\x85\x42\xc5\x83\x47\x05\xf9\x8a\x85\x40\x22\x92\x14\x0b\x45\x71\x29\x14\x0d\xf3\x42\xf6\x54\x60\x9f\x71\x09\xd5\x1d\x10\xfe\x40\x75\x1f\x7a\x91\x86\x52\xf7\xc1\xeb\x04\x49\x5d\x3e\xda\xe2\xa9\x73\x4d\xe5\x69\x4b\xa7\x2d\x0f\x6d\x16\xc0\x41\xe2\xd6\xcf\x9a\x84\x4a\x5b\x7a\x41\xff\x2e\x50\x2f\x58\x97\x3c\xa1\xf1\x7c\x89\xb6\xd4\x10\x0f\x93\x44\xcf\x80\x04\x68\x20\xcd\x8f\x0b\x2c\x1d\xb7\xbc\x61\xfb\x93\x3f\x71\xdd\xf6\x35\x1b\xc8\x2a\x3a\x1b\x56\x95\x60\x42\x0f\x03\x15\xde\xcb\xf7\x1a\x00\x50\x01\x50\x38\x83\x61\x73\xa1\xcf\xcb\x71\x20\x07\xcc\x99\x43\x3e\x95\xc9\xd1\x93\x06\x0f\x8a\x0d\xe1\xe8\x8d\xe0\x2a\xe5\x75\x81\x56\xb0\x9e\x98\x81\x62\xea\x45\x87\x51\x70\x9e\x73\x5a\x82\xd7\x91\x8a\x30\x9d\xf7\xc4\xce\x3c\xa1\xa1\x24\xaa\x30\x09\x58\xac\x4f\x38\xc0\xd7\x9f\x90\x0b\x36\xb4\x02\x20\xcd\x05\xc6\xbb\x4b\xd9\xce\x87\x1b\xd3\x0b\x87\x47\x9d\x53\x2b\xd3\xf8\x1e\x40\x09\x73\x12\xb4\x96\x33\x16\xbf\x59\x79\xc8\x65\xa5\x0f\x3a\xc8\x7d\xce\xdb\x93\x36\xf2\x38\x80\xf5\xcf\xc8\xf4\xd3\x56\x50\x18\x27\xf9\x8d\xad\x95\xf4\xd2\xf6\x60\x7e\x75\x16\xcb\x31\x0a\xc0\xa2\x41\x8b\x0f\xf2\x42\xf5\xa5\xdd\xc2\xf2\x69\x65\x65\x45\xdc\x77\xdf\x7d\xe8\xf5\x7a\x78\xe2\x89\x27\x42\x5b\x0d\x38\x4a\x99\xcb\xdb\x96\x74\x8d\x3b\x74\xe8\x10\x9e\x7c\xf2\x49\x03\x76\x27\x93\x89\x54\x4a\xe1\xfd\xf7\xdf\x17\xd3\xe9\xb4\x4e\x66\xd4\x29\xe3\x36\x23\xae\xce\x4f\x6b\xdc\x67\xce\x9c\x41\xb7\xdb\x15\x0f\x3d\xf4\x10\x36\x37\x37\x2b\xc3\x60\x80\x65\xf9\xbd\xe7\xbc\x3d\x6a\x7f\xfc\xde\xd7\xeb\x4e\x3d\xad\xad\xad\xe1\xc9\x27\x9f\xc4\x64\x32\x91\x52\x4a\x00\x10\x17\x2e\x5c\x68\x9a\xfa\xe0\x03\xa5\x45\x74\x50\x5b\x1d\x36\x1a\xe0\xa1\xd3\xa1\x9b\x86\x34\x9a\x2c\x60\x00\xa8\x58\x81\xfe\x73\x59\x6e\x1d\x2d\x49\x95\x5b\x6c\x57\x0f\x4d\x0b\x0d\x21\x69\xc1\x57\x01\x1d\xca\x1f\xcb\x46\x65\x12\xae\xa5\x8d\x2d\xf5\xea\xf4\x5a\xd6\xf3\xb5\x55\xe7\x58\x2d\x2c\x2f\xa5\x65\x22\x22\x89\x24\x92\xc5\x49\xa9\xfe\xe7\x6c\x98\x9c\xdb\x36\x9c\x13\x02\x13\x6d\xcc\xc7\x41\x86\x8a\x6a\x59\x83\x05\xdc\x41\x99\xa1\x3b\xb1\x30\x0e\xea\xee\x84\xfd\xf1\xdd\x22\xf9\x6c\xab\x6b\xb0\xe7\x3c\x4e\x2d\xe0\x33\x29\x90\xce\x96\xc5\x96\xdc\xa1\xa9\xc8\xd4\x80\xe0\x9f\x98\xee\x36\x60\xbd\x39\xa2\xf2\xdf\x81\x01\x14\xad\xa5\xc1\xe6\x6f\xc0\x85\x1a\xfc\x8e\x4c\x3b\x57\x00\xef\x4b\x4e\x3e\xe0\x84\x29\x94\x27\xcb\x85\xb7\xa7\x8b\x06\x32\x7c\x68\xc6\x82\x06\x1b\x07\xe7\x40\x39\x26\x32\x7e\x1d\xbb\x41\xd9\xce\xc6\xca\x66\x64\x80\x66\x72\xc8\xcd\x3d\xab\x0e\x3b\x89\xb8\x24\x80\xc0\xeb\xa7\x2c\x77\x1e\xd1\x70\xde\xa3\xdd\x3c\xa1\x31\x84\x65\x10\xe0\x0a\x54\x73\xbf\xb5\xb5\x85\xbd\xbd\x3d\x5e\x5d\x02\x80\x9c\xcf\xe7\xf8\xe0\x83\x0f\x0c\xd5\x1e\x08\xaf\x59\x8a\x14\x84\x34\x8d\xd4\xf0\xf2\xda\xec\x83\x63\x7b\xc9\x85\x5e\x26\x56\x92\x4c\x0c\x80\x62\x95\x22\x83\x99\x00\x51\x85\x19\xe1\x8e\x9f\x81\xed\x3e\x37\xb5\x61\xae\x6a\x66\x46\x85\xcc\x35\x28\x00\x69\xa4\x86\xd7\x07\xe9\xa5\xab\xab\xb3\x4b\xc3\x6e\xb6\x0b\xc2\x14\x2e\x70\xe1\x43\x6b\xc6\x5d\xbb\x76\x4d\x96\xc3\x44\x8b\xc8\x1a\xa3\x57\xd6\xd7\xd7\xb1\xbe\xbe\x8e\x23\x47\x8e\xe0\xb3\x9f\xfd\x6c\x45\x49\x97\xfa\x43\x1b\xc5\x8e\x82\x2e\xf5\x42\x85\x8d\x81\xfb\x1d\xcc\xaf\x37\xff\x52\x3e\xf7\xdc\x73\x02\x00\xe2\x38\x96\xfb\xfb\xfb\xe2\xfa\xf5\xeb\x28\x87\x97\x5a\xf3\xed\xf9\x39\xc8\xf0\x87\x1f\xc6\x89\xeb\xfe\xfb\xef\x17\xcf\x3e\xfb\x2c\x96\x97\x97\x39\x30\x13\xb0\xc4\x80\x00\xcc\xa2\x10\xc7\x68\x26\x90\x28\x95\x92\x30\x7d\xb2\x38\x8f\x4b\xf7\x07\xa7\x8d\x97\x8c\x19\xbf\x07\x00\xf4\x7a\x3d\x7c\xe1\x0b\x5f\x00\x00\xcc\x66\x33\x29\xa5\x14\x57\xaf\x5e\xc5\x6c\x36\xab\xab\x8f\x90\x3b\x88\x01\xdc\x66\x68\x9a\xe7\x4d\x93\x73\xeb\x04\x75\x1d\xea\xe4\x28\x10\xfc\x9a\x0f\x97\x48\xa1\x64\x26\x54\x26\x0b\x41\x61\x24\x96\xdf\x79\xf8\x9d\x66\x90\x8d\x90\x2c\xdf\xf2\xd3\x65\xab\x02\xd0\x1e\x1f\x67\xa9\x70\xf7\xbe\x00\x4e\x96\x6e\x2e\x23\x75\xf2\x4d\x2c\x6e\xfd\x9a\x00\x11\x29\x4a\x62\x49\x5d\xa1\x20\x32\x66\xa1\xb2\xa1\x22\xdf\xf9\x68\x98\xa3\x5e\xdf\x9f\xff\x3c\xa4\x38\x43\x71\x87\xae\x5b\xbf\x57\x4d\xdc\x6d\xe9\x34\x09\xa5\x90\x12\x6f\x2b\x8b\x9f\xcf\x45\x41\xc9\x22\x6c\x60\x28\xee\x50\x39\xea\xe2\xaa\x13\x46\x4e\x9b\x0f\xac\x28\x91\x4a\xa9\x8c\x40\x52\x0a\x64\xd3\x81\xb8\x9e\x77\x68\x2f\x4e\xd5\x06\xa4\x12\xc1\x31\x4b\x00\x7a\x18\xc5\x02\x0b\x06\x64\xcc\xc4\x52\x77\xe8\x84\x33\x82\x26\x2f\x9c\x6d\xe0\x5a\xbd\x44\x0c\x64\x14\x7b\xc9\x9b\x38\x71\xdb\xb3\x96\xc8\x1b\xfa\x71\x01\x06\x59\xf6\x46\x77\x52\x06\x34\xec\x29\xd6\x3c\x7e\xe6\xca\x67\x7a\xf5\x0b\x39\x28\xc5\x78\x32\xf5\x62\xf2\xed\x4c\xe8\x80\x93\x5f\x7f\xa5\x94\x61\x13\x8c\xdd\x52\xce\x6f\x49\x68\x77\xde\xa3\xdd\x3c\x86\x99\xbb\x51\x19\xda\x66\x71\xbf\xfe\xfa\xeb\x60\xa7\x12\x1b\x37\x1e\x8f\xe5\x2f\x7e\xf1\x0b\xf1\xc0\x03\x0f\xa0\x8c\x43\xcf\xf7\xb3\xc3\x44\x40\xa2\x94\x4a\x89\x28\x55\x84\xe9\x5e\x2f\xdb\x7d\xe7\xe8\xf8\xf7\x2b\xb3\xf8\xe8\xd1\xfd\xe4\x6c\x92\xa3\xcf\x61\xa4\x99\x6b\xe4\xa2\x19\x0f\xa0\x5a\xd9\xe7\xb3\xd3\xb6\x62\xec\x27\xe7\xce\x8b\xb6\xfc\xce\xc5\x65\x26\x54\x76\x73\x79\xfe\xf1\x07\x87\xa7\x17\xae\x1f\x4a\xaf\xa6\xb1\x1a\xc2\x82\x16\xc3\xb8\x28\xa5\xcc\x04\x5d\x1d\xcd\xf9\xf3\xe7\x71\xe5\xca\x95\x45\x14\x90\xe9\x6b\x2b\x2b\x2b\x78\xfc\xf1\xc7\xf1\xd0\x43\x0f\x85\xe4\x18\xff\xe5\x43\x42\xce\xd0\x08\x81\x04\x13\xd4\x92\x55\x44\x08\xbc\x84\xfa\xb3\x7c\xf6\xd9\x67\x05\x00\xbc\xf6\xda\x6b\xf2\xf2\xe5\xcb\x18\x8d\x46\x62\x7f\x7f\xbf\x09\x88\xb4\x19\x8a\xc1\xf2\x06\xe2\x10\x00\xa4\x10\x42\x1c\x3d\x7a\x14\x00\xc4\x57\xbe\xf2\x15\x24\x49\xe2\x94\x5d\x5f\x13\x91\x9e\xa2\x10\x13\x48\x10\x20\x62\x59\x8c\x02\x44\x12\x71\x2c\x29\xee\xe4\x22\x8e\x25\xc5\x42\x42\x10\x48\x66\x42\xc9\x2c\x52\x59\x4e\x2a\x9b\xc5\x32\x9d\x47\x4a\x4a\x52\x99\x24\xcb\x98\x69\x00\x43\x44\xfe\xf0\x9f\xfc\xea\x57\xbf\x2a\x00\xe0\x97\xbf\xfc\xa5\xbc\x74\xe9\x92\x98\xcd\x66\x8b\x1a\xc0\x75\xf2\xb7\x56\x96\x06\xfc\x54\xae\xe3\xba\x17\x2c\x02\xee\x9a\x14\x0d\x00\x83\x7e\x8d\x10\xf7\x84\x39\x72\x52\x59\x26\x54\x9a\x93\xca\x14\x94\x14\xa5\xe5\x59\xb0\xdf\xf6\x50\xc4\xca\xaa\x1e\xe3\x89\xcb\x63\xd7\xaa\xd0\x17\xbe\xd5\xa8\x10\x88\x4b\x77\x72\x06\x7c\x28\xe0\xdf\x8d\xc9\x78\x10\x42\x52\x5c\x0e\x17\x09\x12\xa6\x61\x39\x08\xd8\x73\x6d\x8a\x3e\xe4\x9a\xac\xfb\xba\xb0\x75\xd6\xc0\xa2\x08\x77\x11\xa1\xb3\xc8\xfb\x36\xa4\x5d\x07\x84\x17\xb5\x58\x16\xa9\x1b\xdf\x5f\x53\xbb\x6e\x7a\x1e\x4a\x1b\x00\xe4\xfe\xfe\xbe\x38\x74\xe8\x90\x8c\xe3\x38\x54\xdf\xd2\x28\x30\x42\x36\xeb\x8b\x9b\xf3\x2e\xdd\xe8\x4c\x70\x8f\x50\x88\x8d\x62\x62\x4e\x69\x76\xc2\x80\x69\x36\x0c\xc3\x58\x47\xb8\x60\x99\x8d\xd4\xb0\x25\xcf\x1c\xd8\x33\x76\xc5\x31\x26\xf4\x84\x0f\xd2\x71\x17\x41\x1c\xeb\xd5\x1f\x87\x35\xca\x30\x94\x8e\xbe\x2c\x19\x03\x58\x66\xc7\xe4\x9d\xbc\x62\x73\xc6\x94\xd1\x31\x3c\x2f\x96\x2c\xd5\x16\x07\x19\xc3\x83\x88\xcc\x61\x91\xa4\x19\x55\x27\x7e\xc6\x9c\x5a\x19\x93\xcd\xbb\xb4\x33\xef\x89\x9b\x32\x26\xbd\xa9\x5a\xa6\x85\xb6\xfe\x76\x35\xf3\x37\xea\x9c\x04\xcc\x22\x05\xfd\x97\x95\x0a\x3e\x05\x30\x55\x4a\x25\x44\x94\x48\x60\x78\x65\x6d\x76\x79\x39\x1d\x9f\xeb\xe4\xd4\xdf\x18\x75\x4e\x74\x24\x7a\x7a\xf3\x7e\xc3\x2c\x95\x88\x82\x1b\x56\x5a\x56\x1a\xb4\x61\x66\xe6\x96\xab\xb4\x7c\x66\xcd\xd4\x08\x67\xe7\x8a\x70\xbc\x5e\xca\xb8\xe5\xed\xa5\xf9\x95\xf7\x37\x27\xbf\xff\x68\x63\xfa\xfe\xb8\x23\xf7\xca\x7c\x4f\x01\x4c\xcb\x72\xa4\x1c\xb4\xe8\x3a\xaa\xd9\x70\xb3\xce\x70\xc1\xf2\xf2\xb2\x88\xe3\x18\x4f\x3d\xf5\x14\xce\x9c\x39\xa3\x99\x05\x07\x9c\x54\xfe\xca\xfd\xb3\x84\x82\x10\x4a\xc4\xa4\x20\x84\x22\x41\x0a\x22\x52\x06\xbc\xc8\xac\x50\xcc\xb2\x5c\xc1\x2a\x25\x29\x59\xec\xd8\xee\x1a\x16\xec\xcf\xc8\x88\x27\x9f\x7c\x52\x3c\xf1\xc4\x13\x78\xe7\x9d\x77\xe4\xb9\x73\xe7\xc4\x64\x32\xa9\x2d\x03\x5c\xd9\xd2\xa8\x6c\x03\x75\x62\xc2\x46\x51\x24\x8e\x1c\x39\x82\xbf\xfc\xcb\xbf\x34\x0c\x13\x0a\x70\x66\x00\x8b\x52\x2a\x26\x22\x5d\x07\x71\x24\x29\x8e\x14\xc5\xcb\x69\xd4\x5b\x99\xc6\x83\x43\xb3\x68\x65\x79\x16\x0d\x7a\x99\xe8\xf7\xe6\x62\xd0\xcb\xc4\x20\xce\x29\x51\x04\xe4\x42\x4d\x67\xb1\x1a\x8f\x92\x6c\x77\xaf\x9b\xef\xde\xea\xcf\xf7\x46\xdd\x7c\x38\xee\xc8\xe9\x3c\x52\x69\x2e\x54\x86\x62\x2b\x80\x0c\xac\xed\xc3\xea\x70\x28\xa5\xe4\x97\xbe\xf4\x25\x01\x40\xbe\xff\xfe\xfb\x22\x4d\xd3\xd0\xb7\x6e\xfa\xee\x68\x78\x17\x32\x94\xfd\x70\xa6\x4e\x35\x70\x59\x54\x41\x85\x2c\x52\xe3\x18\x5d\xa7\x1b\x34\x00\x77\x03\xba\x5c\x28\x39\x8f\xd4\xac\xa8\x28\x97\xd9\x00\x18\x5d\xc9\xc6\x79\xb4\xf5\x64\x26\xe9\x69\x9f\x6c\xa0\xd6\x9d\x23\xc0\x87\x8f\x6c\x87\x36\xec\x0d\x9b\x78\x68\x42\x39\x16\x0b\x13\xc2\x80\x23\x07\x35\x4d\x17\x29\xc4\x1d\x49\x49\x9c\x93\x98\x47\x55\xeb\x4f\xbb\xc0\xc4\xcd\x26\x66\xe3\x0f\x41\xb1\xfc\xba\xae\xa3\xf8\xe1\x43\xe9\x36\x81\xae\xa6\xb8\xf8\x7d\xc8\x5f\xa8\x0c\x7e\xdc\x8b\x3a\x1f\x88\x84\xde\xf9\xcc\x56\x9d\x3f\xff\x7a\x91\x7b\xf3\xfc\x27\x3f\xf9\x89\xfc\x8b\xbf\xf8\x0b\x71\xcf\x3d\xf7\xf8\x00\xc9\x28\xae\xf2\x37\x9d\xf7\xc4\x70\xb6\x2c\xae\xf4\xf6\xe5\x59\x91\xa3\x0f\x70\x45\x5f\xb8\xa2\xbd\x71\xd3\x59\x03\x6e\xdb\xd6\x7d\x45\xaa\x59\x12\x2a\x01\xbf\x46\x06\xc6\x0a\x67\xcc\x4c\x81\x89\x88\xf9\x2b\x97\x22\xdb\x5b\xd7\x39\x33\x42\x6d\x7c\xee\xc4\x2f\xab\x1c\x39\x80\x32\x69\xc0\x05\x19\x9c\xed\x34\xf3\x6a\x4c\xdc\xd6\x3a\xa1\xb2\x8f\x5b\x46\xa8\x9a\x15\xde\xe7\xad\xd1\x04\x33\x07\x8e\xd8\x3b\xcd\xee\x00\x0a\x32\xa6\xbd\xd9\xb2\xd8\x4a\x97\x68\x37\x17\x48\xa9\x9c\xe3\xe2\xb3\x08\xfe\x1c\x01\x84\x81\xb0\x00\x80\x34\x4d\xd1\xe9\x74\x8c\xb1\xc6\x28\xf8\x0c\x40\x4a\x44\x71\x09\x00\x12\x10\x92\x9c\x30\x7c\x6f\x73\xfc\x6e\x6f\x4e\x83\xcf\xc8\xe5\x64\x6d\xd2\xb9\x27\x96\x2a\x31\xdf\xdc\x80\x33\x6f\x2e\x9f\xc5\x76\x8c\x89\x2b\x19\xab\x92\x75\xd2\x86\x9d\x86\x71\xf6\x9b\x84\x0c\x3b\x7b\x3b\xec\xe6\x3b\x1f\x1c\x9e\xfe\xfe\x9d\x23\xe3\xb7\x47\x49\xbe\xa3\xa0\xc6\x04\x9a\x12\xd1\x54\x29\xc5\x27\xe5\xf2\xa1\x35\x00\x90\x59\x96\xe9\x39\x11\x80\x57\x37\xdc\x1f\x00\xc4\x71\x8c\x3f\xff\xf3\x3f\xc7\xd1\xa3\x47\xf9\x2a\x18\xad\xa8\xfd\xbf\x98\x40\x42\x48\xc4\x91\x24\xd1\xcb\x44\xb2\x3c\x8b\x7a\x87\x66\x51\x6f\x90\x46\xfd\xde\x5c\xf4\x62\x49\x89\x50\x14\x47\xc5\x4a\x4f\x4c\x63\x39\x1e\x75\xf3\xe1\xa4\x93\xa7\xd3\x58\x4e\x47\xdd\x3c\x1d\x26\xf9\x74\x1e\xa9\x4c\x11\x65\x4a\x39\x20\x46\x7f\x7b\x67\x74\xe0\xa1\x87\x1e\x12\x71\x1c\xcb\x97\x5f\x7e\x59\x28\xa5\x90\x65\x19\x2f\x43\x08\xb0\xb4\x19\x53\x5c\x2e\x19\x39\x45\x44\x38\x72\xe4\x08\xbe\xfd\xed\x6f\x73\x56\x45\xfb\xd1\xc6\x70\x0c\x20\x86\x42\x2c\x14\xe2\x5e\x26\x92\xf5\x71\x3c\x38\x32\x4c\xd6\x8e\xed\x27\xc7\x37\xc6\x9d\xc7\x96\xe6\xe2\x6c\x9c\xd3\xd1\x48\xd1\x86\x50\x34\x20\x85\x3e\x14\x44\xd9\x1e\x32\x45\x2a\x55\xc0\x4e\x1a\xa9\x2b\x93\x6e\x7e\x61\xb7\x97\xbd\x7d\x73\x79\x7e\xe5\xfa\x20\xbd\x71\x73\x79\xbe\x37\x4a\xe4\x34\x2b\x0e\x83\x75\x96\xbb\xeb\x3f\xdd\xae\xbf\xf8\xc5\x2f\x0a\x21\x84\x7c\xfb\xed\xb7\x21\xa5\x6c\xd3\x35\x6d\xba\xa5\x8e\x28\xa9\x0b\xe7\x30\x2e\xa1\x4a\xd6\x9e\x42\x99\xe1\xef\x8c\x2b\x0b\xea\x2c\xc7\xf2\xe3\x96\x28\xe6\xb8\xe4\xa4\x52\x45\xc8\x04\x28\x31\x7d\x91\x01\x18\x16\x29\x5b\xaa\x57\x0a\x1f\x2d\x61\x99\x10\x73\x6c\x0a\x6f\xff\x06\xbf\xa3\x72\xab\xce\x9c\xca\xca\x18\x19\xe5\x7b\x73\xcb\x08\x05\x40\x28\x4a\x3a\x39\x25\xb1\xa4\x4a\x1d\xb6\x58\x68\x75\x1f\xa9\xe9\xfd\x9d\x86\x6d\x65\x0c\x16\x4c\xf7\x20\xcf\xdb\x00\x4b\xc8\xdf\xa2\x61\x16\xf1\xdf\x56\x8e\x45\xd2\x5f\xb4\x4c\x95\xe7\x4c\x59\x49\x58\x6b\x3b\x03\x90\xe5\x1d\x4c\xc7\xab\xe2\xc3\xe5\x5b\x74\x23\x9e\xab\x15\x28\xc4\x95\xa6\x52\x25\x0b\x02\xe0\x99\xb1\x1a\xde\x38\x00\x1f\x22\xb1\x93\x69\xdd\x70\xce\xea\x1c\x83\x58\x9c\xd4\x58\x7e\xc8\xf3\x03\xa3\x4c\x9d\x79\x2b\x3c\x2a\xe2\x61\x61\xb6\xa3\x37\x13\x68\x59\xdf\x34\xd1\x7a\x61\x9c\xf0\xdc\x9f\xfe\xcf\xf2\xe2\xf8\x65\x0c\xaa\x95\x0f\xd5\x49\xc5\x59\x57\xdc\x98\x0e\xc4\x56\xd6\xa1\xa1\xfe\x3e\xb0\xc2\xda\x9f\xeb\x12\x32\x40\x00\xa6\xb0\xe6\xf3\x39\xfe\xf1\x1f\xff\x11\x7f\xff\xf7\x7f\x2f\xe2\x38\x06\x60\xd9\xb6\x52\xf1\xe8\xf8\x53\x00\x53\x94\x8a\x68\x16\xc9\xdd\xb7\xef\x1a\xbf\x41\x8a\xe2\xb3\x37\xfa\x9f\x5b\x1f\xc7\xc7\x3b\x39\xf5\x4c\xd9\x3c\x60\x5b\x29\xaf\xf7\xdc\xe1\xc6\x02\x9f\x33\x24\x06\x15\x00\x49\xc8\x46\x49\xbe\xf3\xde\x91\xc9\xab\x6f\xdc\x3d\x7c\x6d\xd8\xcd\x6f\x28\xc2\x98\x40\xe3\x32\xbf\x86\x6d\x81\xa7\xd4\x74\xdd\xfc\xf8\xc7\x3f\xc6\xd6\xd6\x96\x97\x60\x50\x61\x89\xef\x7e\xf7\xbb\x58\x5d\x5d\x35\xf7\x70\x95\xb4\x00\x10\xb3\x89\xa7\xf1\xa1\x59\xd4\xbb\x7b\xaf\xbb\x76\x64\xd8\xd9\x5c\x9b\xc4\xc7\x06\xb3\xe8\xc4\xd2\x5c\x9c\xee\xe4\xe2\x9e\x48\xd1\x0a\x29\xf4\x08\x94\x10\x10\x2b\x00\x12\x6a\x2f\x17\xea\x46\x16\xa9\x1b\xf3\x48\x6e\x8d\x92\xfc\xa3\x9d\x7e\xf6\xe1\xb5\x43\xe9\xd6\xf5\x41\xba\x7b\x7b\x29\x9b\xe6\x64\xc0\x97\x28\xcb\xc1\xf7\xf2\x01\x50\xac\xe8\x39\x7d\xfa\xb4\xdc\xd9\xd9\xc1\x0f\x7e\xf0\x03\x9e\xdf\x3a\xa3\x67\x51\xb9\x63\x7e\x8f\x1f\x3f\x2e\xbe\xf5\xad\x6f\x69\xa6\x85\x83\x96\x98\x83\x16\x22\x8a\x93\x8c\x92\xbb\xf6\xbb\x6b\x67\x6e\xf4\x4e\x1d\xdb\xef\x3e\x35\x98\x46\x9f\xeb\xe6\xe2\x61\xa1\x70\x8c\x14\x25\x54\xd6\xb5\xf3\xe9\x75\xa3\x28\x66\xe7\x1f\x4f\x24\x1e\x5d\x9e\x47\x7f\xbe\x3e\xea\xec\x1c\xbf\xdd\xbd\x34\xea\xe4\xbf\xbb\x7e\x68\xfe\xeb\x8f\xd7\xa7\xef\x5c\x59\x9d\xdd\x18\xf6\x72\x3d\x74\xca\xff\x8c\x23\x22\xf9\x85\x2f\x7c\x41\x24\x49\x22\x5f\x7b\xed\xb5\x45\xe4\xed\x22\x3a\x6d\xa1\xba\xd2\x2f\x9a\x96\x43\x2f\x3a\x44\x21\x00\xe0\xf5\xd7\x5f\xc7\x6c\x36\xc3\x97\xbe\xf4\x25\x67\x82\x2e\x60\x00\x8d\x04\x8a\xba\xcb\x85\x92\xb9\x28\x86\x8a\xb8\xcd\xe4\x3a\xc6\xa8\x38\x32\x36\xec\xbb\x11\x2a\xb4\x39\x2d\x50\x2b\x43\x51\xc1\x5c\x81\x00\x08\x85\x38\x96\xd4\x8b\x0a\xe0\xc2\xad\x03\xd7\xbf\x52\x78\xfe\xf9\xe7\xd1\xed\x76\xc5\x9b\x6f\xbe\x59\xd7\xd8\x9b\xdc\x41\x94\xfa\x41\xe2\x3d\x48\xb8\x83\x32\x42\x7f\x2c\xb7\x28\x7b\xc3\xfd\xff\x6f\xe6\xad\x2d\x7e\xde\xc1\xb4\x00\x34\x56\xbc\x22\x4c\xc7\x87\xa2\x4f\x67\xfd\xec\x93\x64\x82\x63\x51\x86\x15\x00\x61\x05\x53\xba\xd0\x63\xb7\x0b\xb0\xc0\x8c\x49\xac\xf4\x2b\xf6\x2e\x30\xa5\xb5\x21\x35\xfb\xdc\x31\xf6\x35\xda\xf0\x18\x80\x0a\x85\xe4\x44\xeb\x0e\xc8\x56\x01\xbe\xcb\xa2\x36\xb9\xd0\x70\x87\xcb\x9a\x7a\xc9\xb3\x7c\x29\xa2\x6c\xd6\xa7\xad\xd9\xb2\xd8\xce\x3b\xa4\x57\xcb\xf8\x2c\xc2\x22\xca\xa8\xad\x2d\x70\x8b\x3e\x05\x63\x10\x60\x15\x53\x3c\xe9\xc8\x9d\x37\xef\x1e\xbd\x36\xea\xe6\xc3\xb3\xd7\xfb\x4f\x1c\xdb\x4f\xce\xf4\xe6\x62\x20\xbc\x09\xdc\x65\xc9\x11\xaa\x20\x1f\xc7\xf1\x9b\x06\xb1\x09\x05\x85\xb9\x50\xd3\x5b\xcb\xd9\x27\xef\x1c\x19\xff\xe6\xc2\x5d\xa3\x37\xa6\x1d\xb9\xa3\x80\x21\x8a\xbf\x71\xf9\xe7\x4f\xce\x75\xd8\x16\xaf\xdc\xa1\xba\x30\xee\xef\xfe\xee\xef\xc0\xf6\x64\x11\xb0\x43\x22\xae\xa2\x06\x25\x87\x47\x71\xef\xc4\xce\xd2\xd1\x7b\xf6\x92\x87\x37\xc6\x9d\xa7\x97\xe6\xe2\xd1\x4e\x4e\xc7\x85\xa4\x35\x02\xfa\x64\x65\x84\x57\x57\x04\xe4\x24\x31\x87\x54\x14\x65\x6b\x93\xce\xde\xd1\x7d\x79\xe5\xfe\x9d\xde\x9b\xfb\xbd\xfc\xf5\xed\x41\xfa\xce\xe5\xb5\xd9\xc7\x1f\x6d\x4c\x77\x61\x27\x1a\x6b\x80\xe9\xb3\xa6\x58\x5f\x5f\x97\x7f\xfb\xb7\x7f\x2b\xfe\xf5\x5f\xff\xf5\x8e\x8d\x9a\x90\x7b\xf0\xc1\x07\xc5\xf3\xcf\x3f\xaf\x6f\x39\x70\xd3\xf5\x90\x00\x88\xe3\x9c\x92\xa3\xfb\x9d\xb5\x53\x3b\x4b\xa7\xee\xdd\xed\x7e\x7e\x6d\xd2\x79\x3e\xc9\xe9\x61\xa1\x30\xa8\x96\xbd\xda\x42\xbc\x56\x23\x00\x24\x91\xc2\xb1\x68\x2e\x8e\x26\x99\x78\x62\x90\xc6\x5f\x3d\xba\xdf\x39\x77\x72\xd0\xfb\xd5\x47\xeb\xb3\x0b\x1f\x6f\x4c\xb6\x46\x89\xd4\xdf\x9c\xd7\x8b\x06\x31\xf2\xa9\xa7\x9e\x12\xdd\x6e\x17\xaf\xbe\xfa\xea\xff\x86\xcc\x6d\x94\xb5\x51\x43\x40\x5f\x77\x0b\xb8\x84\x84\xef\x4f\x1d\x3e\x7c\x98\xee\xbf\xff\x7e\x0d\x35\x04\x11\x45\x65\x1a\x1d\x22\x4a\x00\x24\x80\xea\xae\xcc\x3a\x1b\x47\x87\xc9\xa9\x95\x69\x7c\x5c\x28\xea\x70\x4a\xdb\x62\x95\xaa\x00\xf3\x3b\x9f\x6f\x6f\xda\x61\x26\x8f\x39\xd1\xef\x95\x1e\x77\x77\x2d\x59\xc7\xaa\x0d\x08\x3e\x27\x0f\xe5\x6f\x16\xa9\xe1\xee\x52\xf6\xd1\x8d\xc1\xfc\xe3\x51\x27\xdf\xd3\x54\x2a\x11\x69\x2b\x5b\x01\x50\x44\x24\x85\x10\xea\xea\xd5\xab\xb8\x76\xed\x1a\xcf\x92\xbe\x0e\xd5\xab\xf0\xde\x2b\xe6\x8f\x1a\xc2\x2b\xef\x5e\xd4\xf8\xf7\xc3\x4a\x34\xc7\x2f\xbd\xea\xe4\xf1\xfb\xbf\xa1\x36\xd2\x96\xa7\x3a\x7f\x3c\xdd\x50\x9d\xf8\xf5\x55\xf7\xde\x8f\xdb\x77\xa1\xfc\x85\xc2\x03\xd5\xb2\xe3\xec\xd9\xb3\x34\x18\x0c\x88\xec\x04\x8b\xa8\x14\x40\x11\x4a\xe5\x84\xc2\x12\x4c\x88\xd0\x49\x26\x6a\xbd\x3b\x96\xf7\x46\x19\x0e\xc1\x63\xfc\x5c\xe5\xed\x2a\x7a\x87\x46\xf0\x1b\x6c\xf9\xb0\x50\x52\xfe\x3c\x86\x12\xc8\xe8\x30\x21\x73\x5c\x47\x1f\x04\x14\x65\xec\xca\xbf\x29\xe2\x72\xb0\x0a\xf1\xb9\x26\x36\x8d\xea\xf0\x29\xd7\xaa\x30\xb5\x5d\x0c\x7d\x28\x1b\xa7\xbf\x24\x48\x97\x86\x0d\x39\x19\x59\x41\x60\xc6\x52\x59\x56\x55\x84\xe0\xf9\xc9\x12\xda\xd9\xdf\x8c\x5f\x1f\x6e\xc4\xef\xe5\x09\xdd\x02\xd1\x18\xc0\x04\xc0\x4c\x29\x35\x23\xa2\x39\x80\x1c\x56\x58\xab\x9f\xfd\xec\x67\xf2\xea\xd5\xab\x90\x52\xfa\xed\x02\x60\x6d\xe6\xdd\x77\xdf\xa5\x53\xa7\x4e\xa9\x24\x49\xa8\xac\x07\x02\x40\xde\x30\x04\x0f\x03\x10\x44\x2e\x94\xdc\xef\x66\xe3\x71\x22\x47\x04\xa8\x6e\x26\xba\x91\xa4\x9e\x28\x26\x5f\x9a\xef\x63\x87\xae\x2c\x58\xe3\xc0\x24\x38\x9c\xa6\x9b\x94\x32\x55\x02\xa8\xc2\x80\x1c\x27\xf9\xad\x6b\x2b\xe9\xfb\x6f\xdd\x3d\xfa\xf5\x3b\x47\xc6\x6f\x4f\x3b\x6a\x17\xc0\x3e\x08\xfb\x00\x46\xe5\xdf\x04\xc5\x3c\x97\x49\x59\x37\x73\xa5\x54\x5e\xca\xb8\x1c\x00\xfe\xfd\xdf\xff\x5d\x5e\xbf\x7e\x1d\x4a\xe9\x0f\x56\xed\x83\x51\x14\x89\xbf\xf9\x9b\xbf\xa1\xe5\xe5\x65\x70\x66\x05\x45\x7f\x89\xca\x7e\xd2\x25\x85\x64\x39\x8d\x06\x9f\xb9\xb6\x7c\xfc\xd1\x4f\x97\xbf\x78\xf2\x56\xef\xaf\x36\xc7\x9d\xbf\x5c\x4e\xa3\x67\x93\x9c\x4e\x0a\x45\x6b\x04\xf4\x48\x91\x20\x22\x22\x55\x4e\x36\xa0\x62\x4e\x55\x31\x14\x4a\x28\x3a\x24\x09\x80\x62\xa1\xb0\x14\x4b\xda\xec\xe6\xe2\xcc\x72\x1a\x3d\xbe\x3a\x89\xcf\x6e\x8e\x3a\xeb\xab\x93\x78\x3e\xed\xc8\xe9\x34\x96\x52\x11\x34\xeb\xa1\xbf\x9b\xe2\x2b\x90\x3a\x9d\x8e\x3a\x7b\xf6\x2c\xbd\xf9\xe6\x9b\xf0\xcb\xc6\xbe\x69\x9b\xbc\x32\xb2\xf2\x33\x9f\xf9\x0c\x3d\xf3\xcc\x33\x7a\x12\xae\x01\x70\x65\x3d\x74\x94\x52\x5d\x22\xea\x2c\xcf\xc4\xf2\x83\xdb\xfd\x07\xfe\xe4\xda\xe0\xcb\xc7\x77\x7b\xdf\x5d\x9d\xc6\x5f\x4b\x72\x3a\x45\xa0\x3e\x95\x13\x2d\x88\xed\xc9\x54\x69\x03\xca\x76\x31\x2e\x66\xca\x79\x67\x44\xa0\x4e\x2c\xb1\xde\xcd\xc4\xc9\x41\x1a\x9f\x59\x9b\xc4\x87\xfb\x69\x34\x9b\xc6\x72\x7f\xdc\x95\x5a\xae\xfa\xb6\x80\x22\x22\xb5\xbe\xbe\x4e\xfd\x7e\x1f\x97\x2f\x5f\x6e\xd2\x31\x07\xb9\x76\xd2\x08\xd4\x31\x80\x3b\x63\x5c\x84\xf7\xcb\xfd\x07\x85\x1e\xf1\xcd\x9c\x88\xa4\x9e\xa0\xab\x0a\xaa\x0e\x7c\x6f\x86\x26\x63\x2b\x38\x1f\x00\xd5\x7b\xfe\xeb\xc8\x5a\x16\xb8\xf2\x15\x9c\x67\xd5\x3b\x3f\x9c\x50\x88\x3b\xb9\xe8\xc5\x92\x0c\xb5\x57\x76\x46\xdd\x29\xcb\x3c\x2b\xa0\x5a\x67\x8b\x58\x28\x4d\x74\xa4\xef\x57\xfb\xe1\x61\x17\x89\xfb\x20\x56\xa5\x3f\x8e\x1b\xf2\xb3\x88\xf5\xb1\x08\x63\xe1\xe7\xb3\x2d\x8e\x45\xac\xa0\x83\xa4\x7b\x60\x7f\xba\x8d\x97\xdf\x9e\x5b\xda\x66\xc3\x2e\x22\xca\xf2\x0e\xc6\x93\x15\x71\x65\xf9\x16\x6d\xc5\x33\xb5\x11\xe5\xe8\xf1\x46\xcd\xd9\x03\xad\xc4\x0b\x40\x52\xed\x1f\x66\x17\x15\xc5\x9e\x97\x5a\xce\x80\x03\xad\xd8\x75\x9b\x36\x3f\x8c\x77\x51\xba\x0c\x28\xd3\xf2\x36\x76\xf4\x2d\x00\x73\xa3\xa0\x27\xd6\xf2\x1e\xa3\x41\x85\x99\x9b\xa6\xdc\xbe\xc7\xe7\x8e\x59\xdc\x62\xe7\xbf\x38\xdb\x1b\xe8\x3c\x99\x30\x85\x64\x36\x00\x0d\x70\xea\x85\x7c\xad\x6d\x0b\x06\xbd\xca\x70\xbe\x24\xb6\x26\x87\xc4\x27\xc5\x89\xdd\xe4\xb0\x2d\x54\xb3\x27\xc9\x78\x3c\xe6\x73\x1c\x7c\x67\xfa\xc4\x70\x38\x84\x94\x52\x2b\x3f\x63\xa1\x32\xfa\x3f\x45\x21\x77\xa7\xe0\x4c\x2d\x01\xb3\x58\xe1\x93\xd5\x19\x26\x1d\x39\xdd\x5d\xca\x76\x8e\xef\x76\x4f\x6d\x8c\x3b\xf7\xf4\xd3\x68\x25\x02\xc5\x8e\xcc\x62\xf5\x13\x7c\x6e\xea\x15\x76\x54\xbd\x7c\x27\x49\xc9\x69\x92\x0f\x77\x7b\xf9\xf5\xad\x95\xd9\x87\x1f\xaf\xcf\xde\xdb\x3a\x34\xbb\x3c\x8b\xe5\x2e\x88\x42\x4c\x8b\xfe\x33\x4c\x0b\x79\xab\x89\x46\xa3\x91\x7f\xf6\x8d\x53\x57\xfd\x7e\x5f\x7c\xe3\x1b\xdf\xc0\xca\xca\x8a\xae\x07\x87\x79\x2a\xff\x92\x38\xa7\xe4\xc8\xa8\xb3\x71\x66\x7b\xe9\xe1\xe3\xbb\xbd\xaf\xac\x4c\xa3\xe7\x92\x5c\xdc\x23\x14\xfa\x00\x12\xce\x16\x2a\x56\x07\xba\x9d\x3a\x3b\xae\xb3\x7a\x40\xc1\x5e\x25\x42\xa9\x44\xe4\xd4\x8f\x65\xb4\xd9\xcb\xc4\x99\xe5\x59\xf4\xe8\xda\xa4\xf3\xff\x5e\x5e\x9b\xfe\xfe\x83\x8d\xe9\x27\xe3\x6e\x3e\x66\x6d\x02\xe5\xf0\x11\xf4\x37\x5c\x59\x59\xc1\x77\xbe\xf3\x1d\xf9\x93\x9f\xfc\x44\xaf\xac\xe1\x6e\x11\xe6\x41\x02\xc0\xa3\x8f\x3e\x8a\xc7\x1e\x7b\x0c\x4b\x4b\x4b\x9c\x61\xd1\xa0\x25\x41\x61\xf0\x24\xab\x93\x78\x70\x66\x7b\xe9\xe1\x07\x76\x7a\x5f\x3b\x3c\xee\x3c\x9f\x64\xe2\x64\x51\x17\x0c\xd0\x92\xfd\xc6\x0e\x38\x81\xfb\xdd\xad\x71\x52\x05\xb7\x00\xc5\x91\xc2\x46\x6f\x4e\xfd\x58\x76\x36\xbb\x99\x38\xde\x9f\x47\x3f\x7d\xef\xf0\xf8\x37\x1f\x6c\x4e\xb7\x50\xb4\x5b\xbf\x9c\x32\x49\x12\x79\xe6\xcc\x19\x10\x91\x7c\xe5\x95\x57\x6a\xcb\xdb\x72\xad\xdd\x22\x8c\xb9\x00\x20\x0f\xc2\xb8\x68\x33\x49\x7a\xef\x35\x5a\xa2\xcd\xcd\x4d\x9c\x3c\x79\x52\xfb\x13\x00\xa8\x14\xe4\x9d\xf2\x2f\x01\xd0\x1b\xa4\xd1\xea\x91\x61\x72\x72\x7d\x12\xdf\xd7\x91\x62\xc9\x08\x20\x68\xb9\xeb\xb5\x3c\xfd\x2e\x80\x6a\x7c\xaf\x55\xb4\x59\x77\x88\x1c\x80\x4a\xe3\xd6\xaf\xd8\x72\x54\x66\xca\xd8\xe1\x2f\x42\x2e\x90\x0e\xbb\xf9\xd5\xed\xc1\xfc\xd2\xed\x5e\x76\xab\x1c\xff\xd5\xd6\x48\x46\x44\x39\x60\x26\x26\xab\x2b\x57\xae\xa8\x6b\xd7\xae\x85\xea\x95\x3b\x8e\x3c\xf9\x6f\x1b\xba\xf7\xfd\x35\xa5\x51\xf7\x3e\x84\x7a\xfd\x30\x3e\xb3\xd1\x96\xce\x41\xd3\x08\x95\xe9\x7f\xd3\xb5\xe5\x87\x3b\xee\xcf\x09\xb7\xb7\xb7\x47\xab\xab\xab\x18\x0c\x06\xdc\xca\xe6\x16\x54\x84\x42\x30\x77\x00\xea\x80\x20\x92\xa9\x3a\x9c\x4c\xd5\x11\x91\x63\x59\x0b\xa0\xd2\x8e\x01\x27\x24\x0c\xa0\x0f\x59\xd2\x5a\xe4\x90\x79\x60\x4c\x78\x00\xea\x6a\xf7\x0f\x00\x00\x20\x00\x49\x44\x41\x54\x96\x75\x81\x13\xa1\x69\xcb\x3a\x26\xe7\xc4\x60\x06\x32\x94\x06\x26\x25\xe3\xe1\x9b\x5d\x8e\xd6\xf4\xbb\xac\x03\x26\xdc\x4a\x74\xca\x67\x7e\x6d\x59\xf4\xfc\x1d\xb3\x9d\x81\xb2\x61\x2c\xdb\x62\x27\xf5\x07\xc4\x82\x2d\x00\x32\x40\xcd\xbf\x2b\xcb\x1c\x01\x90\x31\x86\xc3\xc3\xf1\xef\xf7\xee\x8a\x2f\xcc\x7b\x74\xa3\x64\x5b\x46\xb0\x2b\x67\xe6\x25\xab\x90\xa1\x60\x13\x24\x00\x5c\xbc\x78\x51\x8d\x46\xa3\xb6\xfe\x01\x00\xb4\xbb\xbb\x8b\xbb\xee\xba\x4b\xf5\x7a\x3d\x6e\x13\x71\x28\xc6\xfb\x10\x99\x6b\x02\x72\x42\x36\xeb\xc8\xe9\x5e\x2f\x1b\xee\x2e\xe5\xb7\x67\x1d\x39\x04\x21\x17\xc5\x81\xae\x24\xca\xdd\xba\x2b\x12\x4d\xb1\x98\xc8\xb2\x2a\xba\x7e\x25\x14\x32\xa1\xd2\x49\x27\xdf\xdf\x59\xce\x3e\xbd\xbc\x36\x7b\xe7\xbd\x23\xe3\xb7\x3e\x3c\x3c\x7d\xef\x66\x7f\x7e\x75\x16\xcb\x5d\x00\x23\xb2\xc0\x45\x83\x97\x29\x0a\xc6\x65\xee\xd5\x8d\x01\x78\xff\xf5\x5f\xff\xa5\xb6\xb7\xb7\x7d\x36\xca\xf4\x91\xd5\xd5\x55\xf1\xa5\x2f\x7d\x49\xef\xfa\xaa\xfb\x86\x06\x2d\x09\x0a\xdd\xd0\xed\xcf\xc4\xf2\xfd\xb7\x7a\xf7\x3f\x7c\x6d\xf9\x8b\xf7\xdd\xea\xbd\xb8\x3a\xed\x3c\x9f\xe4\x74\x82\x80\x3e\x40\x51\x68\xcf\x21\xdb\x26\xcb\x2a\x24\x0a\x36\x08\xa5\xff\x17\x4c\x8c\x00\x28\x89\x14\x56\x92\x5c\x1c\x5b\x4e\xa3\x93\x87\x66\xf1\x4a\x92\x8b\xd9\x24\xc9\x47\xb3\x82\x7d\xe1\xdf\x4d\x9a\xb8\x01\x35\x18\x0c\x68\x63\x63\x43\x6d\x6d\x6d\x51\x9a\xa6\xf6\xfb\xb9\x8e\x3f\x77\xde\x3f\xf6\xd8\x63\xe2\x4f\xfe\xe4\x4f\xb0\xb2\xb2\xe2\x80\x16\xa5\x54\x0c\x20\x21\xa2\x84\x24\xba\x9b\xa3\xce\xfa\x43\xdb\xfd\x27\x4f\xdf\x5c\x7a\xf1\xf0\x28\x79\x21\xc9\xc4\x29\x01\x5a\xa2\xf2\x10\x2a\x3d\x79\xdb\xeb\x76\xd5\x82\xb3\xbe\xe6\xf4\x17\xdd\x3e\x4a\xd4\x57\xb2\x55\xb1\x50\x38\x94\x48\x71\x64\x39\x15\x77\x2f\xa7\x71\x07\x50\xb7\x76\xfa\xd9\xa8\xda\xe8\xa0\x00\xc8\x38\x8e\xd5\xca\xca\x8a\x5a\x5e\x5e\xa6\x92\x79\xa9\x03\x1f\x21\xb6\x3f\xdc\x17\xea\xe5\xb2\x02\x5c\xc6\x25\xc4\xa0\x1c\xc4\x22\x77\x2c\x71\x9f\x1a\xe6\x4b\xa4\x73\x52\x59\xb1\x09\x1d\x9b\xfc\xc6\x63\x64\x13\xec\xdc\xc6\xc9\xac\x4c\xd7\xab\x1f\xb4\xb8\x2e\xa5\xa4\x1f\x87\x4e\xd0\x7f\xe6\x6c\xb4\x05\x26\x4c\x59\xc4\xfa\x59\xc1\xb8\x50\xbf\x93\x53\x8f\xec\x6c\x78\xf0\x3a\x08\xd5\x05\x9a\xeb\xb9\x89\x61\x69\x62\x6d\xb8\x1f\xa0\xf9\x3b\xfa\xcf\xea\x50\x6e\x1b\xe3\x16\x4a\xaf\x89\xe9\xa9\x2b\x77\x5b\x98\x50\xba\xa1\x38\xda\xe2\x0a\xb9\x50\x1d\xd4\x31\x57\x21\xa6\x51\x00\x90\x5b\x5b\x5b\x18\x8d\x46\x7e\xbc\x7c\x55\x89\x99\xe7\xa0\xa0\xd2\xb4\x27\xf6\xc6\xab\xd1\x87\x4b\x7b\xf2\x64\x9c\xe6\x6b\x24\x91\xe8\x65\xc9\x66\x88\x03\x30\x43\x3d\x80\xa7\x88\x7c\x25\xe5\x80\x06\xbf\x55\x07\xa4\xb8\x41\x40\x3c\x9d\xd2\x2f\x1b\x4f\xb0\x4a\x80\xdc\x98\x14\x63\x48\x4c\x94\x9c\xd1\x61\x79\x70\x37\x1e\x61\x86\x09\xcb\x9f\x29\x8f\x8b\xce\x0a\x7c\xa2\xd8\x6b\xbd\x82\xc6\x82\x17\xcb\xc8\xe8\x25\xe1\x16\x68\xe9\xf8\xb8\xbc\x48\x7b\x62\x6b\xb4\x2e\x3e\x9c\x77\xc5\x2e\x84\x1d\xde\x45\x75\x62\x6e\x9d\xab\x63\x9c\xb5\x93\x57\xae\x5c\xc1\x7f\xff\xf7\x7f\x8b\xa7\x9e\x7a\x4a\x1e\x3e\x7c\x58\xc0\xb6\x85\xcc\x8b\x47\xc0\xef\xff\x84\x2c\x8b\x54\xb6\xd7\xcb\xd3\x49\x47\x8e\xf6\x96\xb2\x9d\xeb\x83\xf9\xd6\xd1\x51\xe7\xd8\xfa\xb8\x73\x74\x65\x1a\x6d\x2c\xcd\xa3\x7e\x92\x51\x2f\x96\x94\x90\x22\x21\x14\x04\x11\x84\xa6\x1b\x54\xf1\x69\xa5\x14\x4a\xe6\x02\x69\x1a\xc9\xe9\xa4\x23\x87\xc3\x6e\xbe\x7b\x6b\x69\xbe\x73\x63\x79\xbe\x75\x73\x79\x7e\x7d\xaf\x97\x6f\xcf\xe2\x7c\x08\xa2\x31\x14\xc6\x25\x68\x19\x83\x81\x16\xa5\x94\x99\x94\x5b\x0e\x83\x9b\x89\xab\x52\x4a\xf9\xca\x2b\xaf\xe0\xd2\xa5\x4b\xe0\xcb\x89\xb8\xdb\xd8\xd8\x10\x4f\x3d\xf5\x14\xee\xbb\xef\x3e\x3d\x0c\xa3\x59\x05\x51\x2e\x0d\x8f\x01\x24\x83\x59\xb4\x72\xff\x4e\xef\xd4\x99\x1b\x4b\x5f\x3a\x32\x4c\xbe\xbc\x34\x17\x67\x85\xa2\x35\xde\xe6\x39\x9b\x50\x6d\xe5\x2e\x88\x76\xfc\xb2\x05\x1d\x8e\x86\x54\x24\x22\x60\x6d\x69\x2e\x1e\x89\x65\x67\xad\x93\xd3\x46\x47\xd2\x4b\xef\x6f\x4e\xce\xdf\x58\x9e\xdf\xc8\x22\x35\x65\x49\x18\xc6\x41\x29\x25\x4f\x9c\x38\x21\x9e\x7d\xf6\x59\xf9\xdb\xdf\xfe\x16\xbb\xbb\xbb\xa1\xa2\xd7\xc9\x60\x71\xe4\xc8\x11\xac\xae\xae\x56\x86\x87\xca\xe9\x14\x31\x80\x64\x6d\x12\xaf\x3c\x74\xbd\xff\xa7\xf7\xef\xf4\xbe\xb5\x36\x8d\xff\xb4\x93\xd3\x3d\x84\x72\xff\x16\xf2\xca\x6b\x32\xe6\xd5\x0d\xc1\x99\x32\xe6\xc8\x09\x05\x47\x8c\xc0\xed\x5b\x22\x92\x6a\xa3\x9f\x46\x8f\xdf\xbd\x47\x83\x48\x22\x4e\x23\xf5\xe3\xcb\x6b\xd3\xad\xdc\xa5\x3a\x8c\x8c\xec\x76\xbb\x78\xf0\xc1\x07\xa5\x94\x12\xaf\xbe\xfa\xea\x22\xfa\xa5\x4d\x47\x35\x3a\x0e\x5c\x16\x51\x76\x0b\x25\xc8\x68\x52\xe3\x38\xb5\x28\x09\xce\x50\x51\xd0\x59\x99\x54\x69\xa0\x55\xcb\xcf\x09\x56\x0a\x47\xd7\x13\xf9\x9e\x10\xf8\x88\xfe\xf8\xb1\x29\x8f\xcd\x87\x7e\x27\x14\xc5\x89\x14\xfd\x24\x17\x3d\x28\x33\x4c\x56\x01\x2f\xfe\x12\xbb\x40\x96\x17\xfd\xa8\x75\xc3\x31\x75\xc3\x29\x4d\xf1\x87\xde\x2f\x4a\x7b\x1e\x64\xc8\x46\xbb\x3a\x10\xc4\x7f\xef\x04\x38\xfb\xa0\xf9\x40\x8d\xbf\x26\xee\xb6\xeb\xba\x67\xba\x0d\x98\xbc\x30\x45\x98\xa1\x5c\x61\x04\x20\x55\x11\x8d\x27\x87\xc4\xa7\x93\x43\xe2\xe3\x64\x2c\x8f\x75\x66\xea\xa8\xb3\x97\x09\x97\x3c\xcc\x5a\xd2\x2f\xca\xd1\x77\x03\xb3\xab\xa0\xc5\xfa\xe3\xed\xaf\x02\xd4\x0d\x90\xb0\xe9\xb8\x2b\x91\x94\x05\x09\x5e\xb6\x2c\xa0\xd2\x21\x74\x46\xdd\xf8\x2a\x4c\x8d\x0a\x3c\xd3\xb1\x38\x56\x87\x2d\x38\x79\x8f\x2a\x7e\x0c\x90\xf1\xfc\x78\x63\x58\x32\xc2\x74\x72\x48\x5c\x1a\xaf\x46\x9f\xca\x18\x63\xd8\x55\x3e\xfc\x1b\x55\xb6\xb0\x7f\xe3\x8d\x37\x24\x03\xa6\x4d\x7d\xcd\xb8\x0f\x3f\xfc\x50\x3e\xf4\xd0\x43\xe2\xf0\xe1\xc3\x65\x56\x28\x43\x21\x6f\x0d\x88\x45\x55\xa6\xda\x74\x09\x59\x1a\xc9\xec\xd6\x92\x1a\x0f\x93\xfc\xf6\xcd\xe5\xf9\xd6\x72\x1a\xad\xad\x4c\xe3\x8d\xd5\x49\xb4\x76\x68\x16\xaf\x2d\x65\xa2\x1f\xe7\x94\x74\x72\x8a\x23\x45\x89\x90\x24\x14\x15\x0b\x1f\x32\xa1\xd2\x4c\xa8\x6c\xd2\x91\xe3\x61\x37\xdf\xdb\x5d\xca\x76\xf6\xbb\xd9\xee\x28\x91\xbb\xc3\x6e\x7e\x3b\x8d\xe5\x50\x11\xa6\x28\x57\x0d\x51\xc1\x3c\xf1\x3f\xbd\x92\xc8\x59\x61\xc2\xe5\xb8\x52\xc5\x49\xd0\x75\x75\xb0\xb9\xb9\x29\x1e\x7f\xfc\x71\x3c\x60\x77\x14\xe6\x93\x4f\x0d\x68\xe9\xa7\x62\x70\xdf\xad\xee\xa9\x33\x37\x96\xbe\x76\x6c\x3f\xf9\x6a\x77\x2e\xce\x0a\xb0\x95\x55\xec\x73\x9a\x6b\xd4\x9b\xe4\x15\x9d\x11\x00\xc3\xee\xb4\x01\x4a\x3a\x39\x9d\x58\x9b\xc4\xbd\xd3\x37\x97\xfa\x91\xa4\x7e\xb4\x39\xfe\xcd\xf5\xc1\xfc\xfa\x3c\x56\xdc\x7f\xca\xe2\x93\xa7\x4f\x9f\x16\x17\x2f\x5e\x94\x0c\xb8\xd4\x29\x6c\x53\x47\x0f\x3e\xf8\x20\xd6\xd7\xd7\x75\x1d\xe8\x3a\xd1\x43\x65\x31\x14\x7a\x49\x4e\xfd\xd3\x37\x97\x1e\x3d\xb9\xd3\xfb\xd6\xda\x24\x7e\x2e\x96\xb4\x09\x14\xc7\xcb\x70\x25\xe4\xee\xd9\x83\x8a\xdd\xe0\x1b\xfe\x8e\xd1\xe3\x76\xd1\x4a\x1d\x13\x08\x42\x61\xd0\x9b\x8b\x87\xef\xda\x4f\xf0\xc8\xb5\xe5\x51\x2e\xd4\xff\xf7\xe9\x4a\xfa\x49\x66\xb7\xff\xd0\xe5\xca\x88\x08\xdd\x6e\x17\x8f\x3c\xf2\x88\x4c\xd3\x14\xaf\xbd\xf6\x9a\xd0\xfb\xc0\xb0\x4f\xb1\x08\xf9\xe1\xd7\x65\xd0\x78\xad\x63\x5c\xee\x44\xc1\x56\x1c\x5f\x55\xc4\xc0\x8c\xd4\xab\x8a\x24\xa9\x2c\x04\x34\xf4\xb7\x50\x4a\x95\xe3\x96\x45\x8d\x73\xcb\xa9\xce\x39\x86\x1c\xa3\xc0\xf8\x0e\xb9\xce\xa9\xb4\xe5\x17\xe5\x42\xd4\x87\x45\xe4\xe5\x0b\x0a\x20\x85\xa4\x93\x53\xaf\x93\x53\x4f\x28\x88\x9c\xdc\x33\x9a\x80\xca\x3d\x10\x60\x63\x50\x6d\xe8\x21\x3f\x75\xcc\x03\x07\x4a\x4d\xac\x80\x9f\x4e\x28\x4e\x3f\x4f\x22\x70\x5f\xc7\x6a\xb4\xb1\x3a\x41\xa6\x22\xe0\x37\x94\xd7\x45\xc1\x50\xad\x85\xb3\x60\xdc\x6d\x96\x74\x13\xbb\x23\xae\x5e\xbd\x8a\xf5\xf5\x75\xb9\xb1\xb1\x61\x80\x66\x39\x64\x18\xb3\x0d\xc8\xec\xb6\xef\x4b\x62\x67\xb2\x1a\x7d\xbc\xb4\x2f\x4f\xc6\xf3\x7c\x4d\x48\x24\x76\xdf\x13\x58\x8a\xc5\xd2\x14\xec\x5d\xd9\xaf\x4a\xe9\x64\x01\x85\x7e\x6f\x51\xb6\x99\x37\x52\xd1\xea\x6e\x5f\x31\x97\x6c\x1f\x95\x02\xfc\x58\x33\xce\x55\x1c\x06\x36\x39\xcc\x87\x89\xcf\xb0\x41\x7a\x47\x5b\x65\xb6\x68\x31\x40\x83\x95\x8f\x74\xb9\x8c\xf1\x60\x64\x47\x85\xa1\xa1\x92\x55\x30\x42\xdb\x48\xe0\x22\x72\xa5\xcb\xc1\x00\x17\x00\xa4\x5d\xba\x3e\xda\x88\x2e\xa5\x3d\xb1\xa3\x04\xe9\x79\x1b\xce\x4a\x99\xd0\x1c\x97\x37\xdf\x7c\x13\xa3\xd1\x68\x91\x36\xe9\xbc\xbf\x7c\xf9\x32\x56\x56\x56\xe4\xfa\xfa\x3a\x7f\xee\x1b\x6b\x7e\x1b\xd6\x00\x4a\x33\x41\xd3\x79\xac\xa6\xbb\x71\x36\xbc\xb5\x34\xbf\x99\x0c\xc4\x56\x7f\x2e\xfa\x4b\xf3\x68\xd0\xcd\x44\x2f\xce\x29\xe9\x48\x03\x5e\x62\x09\xc8\x79\xa4\xd2\x79\x24\xb3\x5c\xa8\x74\x16\xcb\xf1\xb8\x23\xc7\x93\x4e\x3e\x4c\x23\x35\x51\x84\x14\xe4\xcc\x5b\xd1\x7f\x63\xf6\x9b\x96\xc3\x66\x86\x8d\x62\x75\x22\x01\xc8\xf9\x7c\x2e\xdf\x79\xe7\x9d\x4a\x99\x79\x59\x36\x37\x37\xc5\x99\x33\x67\xb8\xbc\xd1\x9b\xa8\x25\xfa\xb7\x3b\x17\x83\x7b\x77\xbb\xa7\x4e\xdf\x58\x7a\xe1\xae\x02\xb4\x3c\x4c\x8a\x12\xce\x9e\xe8\x1f\x07\x74\x33\x52\xcd\xb0\x28\x15\x43\x14\x6e\x60\x83\x85\x03\x66\xaf\x82\xe8\x48\x71\x6c\x65\x42\x5f\x7c\x40\x16\x4b\x9e\x72\x31\x3e\x77\x7d\x90\x5e\x97\xc2\xf1\xef\xcc\xf5\x38\x71\xe2\x04\x86\xc3\xa1\xb8\x7d\xfb\x76\x93\x92\x16\x00\xe4\xa9\x53\xa7\xc4\x93\x4f\x3e\xc9\x97\x81\xf3\x39\x3e\x09\x14\x12\x02\x7a\xf7\xdf\xea\x9d\x3c\x7d\x63\xe9\xff\x5a\x9d\xc4\x7f\x16\x4b\x3a\x0a\x55\xce\x67\xa9\x74\x58\xd7\x00\xd0\xdd\x84\x2f\xc6\xad\x68\x33\xae\xcb\x54\xe0\x39\xeb\xe7\xe5\x4f\xd2\xcd\xc4\xc3\xf7\xde\xee\x7e\x3b\x8d\x54\x3a\x17\xea\xd5\x1b\x83\xf9\x56\x16\x29\xd7\x28\x2a\x64\x1c\xf4\x86\x82\xbf\xff\xfd\xef\xf5\x3e\x6e\x75\xb2\xb8\x4d\xf6\xd6\x19\x8a\x02\x70\xf7\x71\x09\x09\x65\x3f\x60\xc8\x55\x1a\xad\x1d\xaf\x76\x36\x72\x32\x19\xc9\x85\xca\xd2\x48\x4d\x73\x52\x69\x50\x78\xfa\xf1\x78\xff\x5d\xf9\xce\xa6\x19\x06\x59\x16\x93\x17\xfb\xdc\x5f\x76\xa4\xb8\x91\x68\x27\x1b\x3a\x7a\x83\x47\x4d\x0a\x42\x41\xc4\x92\xfa\xdd\x5c\x2c\xc5\x92\xe2\x3c\x52\xfe\x52\x36\xcd\xc0\x2c\x82\x38\xf5\xbb\x45\x87\x4d\xea\xe2\x6b\x63\x31\xea\xe2\x3e\x08\xbb\xd2\x04\x50\x9a\xe2\x6c\xcb\x77\xc8\xfa\x6c\x72\x6d\x40\xc9\xf7\xd7\x56\x0f\x8b\x96\x2f\x98\xc6\xc5\x8b\x17\xb1\xb1\xb1\x21\x36\x36\x36\x38\xe3\x28\x51\x4e\xca\x05\x3f\xaf\x06\x48\xf3\x18\xe3\xc9\x8a\xb8\x3a\x59\x11\x1f\x26\x13\x79\xb4\x33\x55\x47\x01\x18\xa0\x8d\x12\xb0\x73\xbb\x10\xe0\xb4\xb7\xaf\xdc\x59\x6e\x4c\xdb\xb6\x12\xa8\xd8\x59\xd6\x3e\xb2\x42\xce\xa6\xa7\x1b\xbc\x2b\x0c\xc9\xe9\x03\x8e\xf9\x66\xd2\x74\x15\x81\x89\x9b\x31\x21\x8a\xf4\x46\x77\x3c\x32\x3b\x67\x0c\xc4\x36\x85\x2c\xe6\x21\xb0\xee\x49\xde\x04\x61\x72\x46\xa3\xb8\x72\x73\x8d\x10\xeb\x47\x46\x18\x4f\x56\xa2\xf7\x46\xeb\xd1\x47\x32\x02\x3f\x30\x30\x85\xdd\x6f\xc7\x61\x13\x88\x08\x1f\x7d\xf4\x91\xcc\x32\x07\x6b\xb4\x01\x18\x23\x47\x2f\x5c\xb8\x20\x01\x88\x47\x1f\x7d\x54\xae\xad\xad\x71\x3f\x59\xc0\xa8\x31\xed\x05\x96\x09\x4a\x01\xf4\xca\xdf\x29\x11\x25\xf3\x58\x4d\x6f\xc7\xf9\xad\xdb\x4b\x79\xb1\x64\x58\x21\x16\x8a\x84\x90\xe8\x08\xa5\x19\x17\x48\x49\x6a\x5e\x9e\x49\xe3\x4c\x10\x67\x65\x0e\x81\x17\xfd\x3c\x2d\x99\x16\x5d\x37\x66\x8f\x13\xa5\x94\x4c\xd3\x54\x5e\xba\x74\x09\xaf\xbc\xf2\x4a\xad\xa5\xbc\xba\xba\x6a\xd8\x26\xb0\x61\x31\xcd\x2e\x10\x51\x12\xe5\xe8\x1f\xdb\x4f\xee\x39\x73\xa3\xff\x85\xbb\xf7\xba\x5f\xed\xcd\xc5\x59\x02\x25\xfc\x60\x50\xef\x07\x00\x9c\x61\xca\x10\x06\xf1\x19\x17\xaf\x79\x1a\x9d\xc1\x99\x4a\xdd\xde\x62\x45\x1b\x87\x66\xf1\x9f\x9e\xb8\xd5\x9d\xce\x62\x39\x9e\xc6\xf2\x77\xb7\x97\xb2\x5d\x65\xe3\xd0\x75\x2a\x81\x62\xbe\x0a\x00\xf9\xd6\x5b\x6f\x89\xf2\x1c\xab\x50\xfb\x90\x00\xf0\xb9\xcf\x7d\x0e\x6b\x6b\x6b\x7c\xc8\x4c\x83\x96\x18\x40\x2c\x14\x7a\xeb\x93\xce\xe6\x9f\x7c\xba\xfc\xc2\xc6\xb8\xf3\x7c\x47\xd2\x51\x02\x09\x5f\x57\x15\x5d\xca\xca\x81\xf2\xb1\x61\x62\xed\xc4\x7a\x77\x53\x56\xa7\x22\x0c\x6b\xe3\x02\x1c\x72\x2b\x5a\xd7\x53\xb2\x34\x17\x8f\xdf\xb7\xdb\x1d\x4f\x3a\xf9\x70\x56\x4c\x1e\x97\x70\xf7\xf2\x31\xf2\x9b\x88\xe4\xfd\xf7\xdf\x8f\x8f\x3f\xfe\x58\xd4\x4c\xd8\xae\xc3\x18\x8b\x18\x92\x12\x08\xaf\x2a\xaa\x1d\xcb\x47\x55\xb9\x08\x2f\x5c\x9d\xd3\xc2\x40\x02\xc5\x59\x18\x69\x24\xc7\x99\x50\xd3\x10\xb5\xe5\x3a\x8f\x54\x56\xac\xa2\x19\xed\x0c\x47\x58\x32\xe4\xe8\x0b\xb8\x10\x14\x2d\x03\x9a\x5d\x28\xf5\x2b\x23\xe4\x99\xb2\xb0\xe9\x8a\x48\x52\xd2\xcd\x68\x90\xe4\x22\x49\x63\x83\x2e\x9d\x7a\x08\x08\x28\xdf\xb5\x31\x5d\xa8\x79\xb7\xb0\xe5\x17\x78\xb6\xc8\xb0\x4a\x1b\x4a\xae\xcb\xd7\x22\xf9\x08\xbd\x6b\x8b\xa7\xcd\x2d\x5a\x17\x07\x61\x71\x78\xbc\xad\xf9\xdb\xdf\xdf\xc7\x70\x38\x94\x83\xc1\x80\x6f\x24\xa5\x99\x17\xbd\x7b\x6a\x5a\xee\x40\x3a\x9d\x2d\x89\x9d\xe1\x7a\x74\xa9\x3b\x92\xf7\xc4\xf3\x7c\x45\x94\x1b\x8f\xe9\x69\xa9\xfc\x8c\x20\x33\x20\x63\x07\xee\x19\x6b\x51\xf8\x31\xc3\x37\x54\x6d\x73\xce\x9c\x14\x6f\x4f\x17\x7f\xab\x7c\x2a\xfd\x68\x36\x43\x8b\x41\x47\x23\x54\x4c\x60\x7b\x6f\x04\xa8\x61\x3c\xf4\x44\xc2\x8a\x06\x29\xfd\x7b\x66\x33\x57\x56\x7e\x7f\xd6\x41\xd9\xe4\x44\xe3\x91\xd5\x99\x3e\x36\x04\x44\x50\x02\x59\xba\x44\xd7\xf7\x8e\xc4\x17\xa6\xcb\x62\x07\x05\xdb\x92\x7a\xf3\x5b\x1c\x66\x41\x83\x98\x97\x5e\x7a\xa9\x6e\x35\x51\x93\xa1\x61\xda\xda\x85\x0b\x17\xa4\x52\x4a\x3c\xf1\xc4\x13\xf2\xd0\xa1\x43\xc6\x83\x9e\xef\xc2\x41\x2e\x03\x08\x86\x75\x41\x09\x22\x94\x52\x09\x80\x5e\x09\x28\x04\x8a\x0d\xda\x62\x10\x89\x9c\x94\xc8\x05\x44\x01\xfa\x1c\xd0\x0c\xb0\x61\x1e\xb8\x60\x4d\x1f\x41\xa0\xe3\xd7\x60\x85\xfb\xab\xb0\x50\x69\x9a\xca\x0f\x3f\xfc\x10\xbf\xfc\xe5\x2f\x9b\x8c\x1d\x71\xea\xd4\x29\x3c\xf2\xc8\x23\xbe\x7e\x88\x4b\xa6\x25\x06\xd0\x5b\x9d\xc6\x6b\x0f\xdc\xec\x7d\xee\xee\xfd\xe4\xcb\x4b\x99\x78\x98\x80\x9e\x6e\x81\xbe\x42\xf5\xc5\x35\xc0\x7b\x85\xaf\x94\x5d\xc6\xc5\x32\x70\x70\xfd\xd9\xaf\x61\xfe\x2b\x28\x44\x8a\x36\x56\xa7\xf1\x33\xf7\xdf\xea\x0d\xa7\x1d\x39\x7c\x27\x1e\xbf\x39\xe9\x48\xff\xb8\x00\x0d\x40\xe4\x63\x8f\x3d\x26\x46\xa3\x91\x3c\x7f\xfe\x7c\x9d\x8c\x11\x9b\x9b\x9b\x88\xe3\x58\x7f\x1f\x7f\xa3\xbd\x98\x40\xbd\xff\x9f\xbd\x77\xed\xb1\xe3\xb8\xce\x46\x9f\x55\x7d\xd9\x7b\xf6\xec\x19\x0e\x87\xe4\x90\xa2\x48\x89\x96\x2d\xc7\x91\x1d\x45\x4e\x1c\xdb\x70\x12\xbf\x3e\x81\x91\x1c\x07\x48\xe0\x2f\x71\x00\xe7\x53\x92\xff\x15\x24\x41\x10\xc0\x41\x10\xdb\xc8\xdd\x3e\xb1\x1d\xc3\x71\x6c\xcb\xb1\x6e\x14\x25\x51\x12\x45\x8e\x78\x19\xce\x8d\x33\x7b\xf6\xb5\x77\x77\xd5\xf9\xd0\x5d\xd5\xab\xaa\xab\x2f\x43\x39\xef\x7b\x0e\x90\x02\x66\x76\x5f\xea\xde\xab\x56\x3d\xf5\xd4\xaa\xaa\x5e\x2a\x86\xcf\xed\xac\x3e\xb7\x75\x12\xff\xdf\x51\x46\x57\x80\x72\x73\x53\xeb\x64\x77\xb0\xc1\x86\x7b\xd6\x5f\xd1\x58\x2a\x7d\x8e\x6e\x17\xd0\x00\xa5\xbe\x4f\xe2\x76\xa4\xda\x9b\x50\xe8\xaf\x26\xc1\x0b\x4f\x3d\xea\xdf\x3f\x58\x5d\xee\xcf\x22\x39\x9f\x47\xd2\xb7\xe7\x8d\x50\x4a\xe1\x8b\x5f\xfc\x22\xfe\xfa\xaf\xff\x5a\x3a\xb6\x7f\xae\xeb\xa2\x93\xbd\xcf\xeb\x4e\x87\xf6\x45\x5a\x37\xb5\x50\x41\x51\x7c\x03\x3a\xcd\xb4\x70\xa3\xae\x54\xa8\x74\x11\xca\x79\x6e\xfc\x64\x0d\xa5\xca\x4a\x53\x25\x0a\x26\xf6\xbc\x44\xe3\x8c\x2e\x07\x90\x1b\xa5\x11\x53\x76\x7c\xc9\x64\x35\x8c\x46\xd0\x46\x29\x13\x15\x34\x79\x75\xda\xc8\x9e\x0f\x2d\x47\xc2\x81\xa4\x38\x4e\xc5\x20\x4a\x29\x56\xb1\xe2\x2c\x8b\x36\xb8\x32\x61\x7b\xbd\x1e\x7a\xbd\x9e\x7b\x38\x55\xd3\x94\x0e\x77\xbe\x6f\xd0\x04\x64\xea\xa6\x9d\xdc\xb4\xe1\x09\xe3\xc6\xc7\xfd\xd6\x4d\x13\xb9\xf1\xbb\x69\xf9\xf2\xe7\xf3\xd3\x94\x8f\xa6\xfa\xe1\xce\x17\xb7\x8b\xd8\xdb\xa6\xb6\x4e\xfb\x5c\x00\x90\xaf\xbd\xf6\x9a\x0c\xc3\x50\x7c\xea\x53\x9f\xd2\xd3\xa3\xfa\xd0\x32\x0d\x5a\x62\x14\x23\x67\xa5\x54\x2c\x23\x1a\xcf\xd6\x83\x7b\x93\xb3\xf2\x9d\xde\x54\x6e\xc5\x53\x75\x25\xef\x87\x4b\xc0\xa2\x7b\x66\x8b\x07\xb1\x78\x70\xc6\x6c\x14\x2f\xad\x25\xd2\x54\xca\xb0\xe9\xfc\x5d\x24\xe0\x03\x20\x5c\x41\x22\xbf\xb7\x40\xb8\x95\x3f\x4b\x87\xc2\x42\x1b\xba\xfd\x70\xca\x9f\x2d\x67\xce\x3b\x99\x22\x2d\x33\x62\xd4\xc0\x03\xa5\x2e\x00\x5b\xa6\x6d\xa6\x9f\x4c\xe1\x4d\x1d\x18\x3d\x51\x62\x21\x99\x45\x18\x4d\x36\x82\x37\x4f\x2e\x84\xef\xa1\x98\x26\x61\x46\xa7\x2e\xdb\xc2\xcf\x27\xea\x02\xf4\x5b\x41\xfd\x1b\x6f\xbc\x21\xb3\x2c\x13\x9f\xf9\xcc\x67\x64\xbf\xdf\x37\x36\x12\x80\xb5\xac\xd8\x80\x16\x06\x74\xe3\x02\xe8\xc6\x85\xec\x4c\x51\x2c\x95\x45\xb1\x3f\x10\x1b\xb9\x17\x9f\x89\x78\xda\x9c\x1d\xc8\xed\xab\xd8\xb4\x65\x01\x56\x34\x38\xe2\x40\x2e\xe1\x61\xb5\x1c\x2f\x97\x4b\xf9\xde\x7b\xef\xe1\xfb\xdf\xff\x7e\x53\x99\x45\xa1\xeb\xcc\x3d\xfb\x33\xa0\x45\x48\xf4\xaf\x1c\xf5\xae\x3d\x71\x12\xff\xfa\x20\x11\x1f\x13\x8a\x06\x9a\x7c\x73\xfa\x0f\x23\x4e\xd0\x9f\xdb\x00\x0d\xb2\x46\xbd\xf6\xd1\x11\x60\xc0\x18\x46\x1e\x73\x3f\x45\x27\xae\x98\xe8\x13\x98\x0c\x01\xa1\x14\x5b\xe7\xa6\xd1\xe7\xae\x1d\xf6\x8f\xc6\xbd\xec\xf0\xf6\xd9\xf9\x76\x16\x18\x9b\x0d\x03\x0a\xf5\xb7\xec\xf5\x7a\x88\xe3\x58\x24\x49\xe2\xd3\xcd\xf2\x4b\x5f\xfa\x92\xe8\xf7\xfb\x82\x8a\x85\x1c\xc5\x6f\x48\x85\x51\x6e\x90\x51\x7f\x73\x1a\x5d\x7a\xea\x51\xef\xff\xea\xa7\xe2\x23\xa4\xfb\x66\x36\x5e\x50\xa6\x9c\xc4\x9a\x18\xb3\x49\x33\xe5\xd5\x95\xc5\x06\x1a\x0c\xb4\xf0\xee\xd0\x9a\x4e\x43\x39\xc0\xb1\xfa\xdf\xa2\x8d\x86\x12\x1b\x67\xe6\xc1\xa7\x9f\xd9\x5f\xb9\x7b\xd2\xcb\x8e\x1e\xac\x2f\x12\x29\x2a\xc0\xc5\xc8\xf7\xea\xea\x2a\x66\xb3\x99\x60\x86\xdb\x6d\x83\xdf\x2e\x03\x6a\x01\x40\xba\x1d\x12\x8f\x84\x47\xe4\x76\x00\x15\xe4\xe9\x8b\x83\x37\x22\xde\x58\x0b\xe0\x32\x5b\x06\x6a\x2e\x09\xa9\xae\x3d\x62\x42\xa9\x9d\x25\xa4\xc8\x3f\x94\xb9\x2f\x84\x4d\x69\x5a\xdc\xa5\x93\x99\xd2\xd3\x68\xb5\x8c\x8f\xeb\x6b\x5b\x91\x97\xab\x80\xdc\xfb\x22\x89\xe2\x3e\x90\x88\xe3\x54\x0c\xe2\x8c\x62\xe4\x34\x28\x5f\x5d\x64\xb9\x17\x5e\x78\x01\x2f\xbc\xf0\x82\x55\x3f\x8e\xf3\x75\xa4\xfa\xb7\xae\x13\x86\xc7\x8f\x1b\x97\xdb\xd8\x7c\x9d\xb8\xcf\x35\x31\x0f\xee\xb7\xf6\x81\x03\x5f\x5a\x6e\x18\x37\xbe\x36\xc6\xa3\x4d\xa8\xeb\xfc\xf9\x00\x9c\x2f\x5c\x5d\x7c\x75\xcf\xbd\x75\xc7\xa7\x4a\x35\xcb\xa8\x94\xd2\x23\x68\x6d\xbf\x90\x28\xa5\xe6\xc9\x0a\x1d\x8e\x37\x83\x5b\xd3\xf5\xe0\x96\x0c\x31\x55\xa8\xca\x9f\x75\x5d\x91\x45\x47\xf9\xb0\x8d\xa8\x74\x3b\x50\x9c\x95\xd1\x57\x06\x58\x94\x61\xb8\x33\x53\x38\x2c\xcd\x72\x3e\xbb\x78\xaf\xf8\x3b\x14\xe9\x30\x30\x43\x85\x3d\x19\xcb\x3e\xe9\xb6\x49\x65\xdb\xb4\x46\x80\x44\xc5\x20\x82\x4c\x1b\xd7\x8a\x99\x54\xd9\x4e\x4d\xd6\x59\xdb\xd6\x79\x34\x59\xcf\xd9\x96\x64\x31\x08\xee\x8f\x2e\x46\xd7\x97\x31\x46\x28\xa6\x40\xf4\x54\x08\xeb\xbc\x2d\xb6\x45\x29\x25\x3d\x67\xd3\xb8\xce\x27\xe7\xdc\x99\x30\x37\x6f\xde\xc4\x0f\x7e\xf0\x03\x48\x29\xb9\x4c\x68\x70\x60\x58\x8e\x02\x50\x4d\x81\x7c\x95\x8f\x52\x6a\x4c\xf9\x6a\x9f\x11\x80\x91\x52\xea\x08\x80\xf9\x23\xa2\x23\xfe\x4c\x5f\x3b\xbf\x87\xc5\xfb\x11\x11\x1d\xe9\xb8\x50\x2c\x7b\x56\x4a\x69\x03\xdd\xb9\x52\x6a\x5e\x18\x91\x5b\xf5\x21\xa5\x94\x6f\xbf\xfd\xb6\x06\x2d\x6e\x99\xad\xba\xf9\xd5\x5f\xfd\x55\x3c\xff\xfc\xf3\xee\x61\x89\xa1\x5e\xee\x0b\x85\xf0\xfc\x24\xde\xbc\x72\xd4\xff\xb5\x33\xb3\xe8\x85\x40\x8a\x8d\xfc\xdb\x39\x0c\x8b\x3b\x05\xaa\x4a\xb9\x56\x05\xc5\xae\x0c\xcb\xc8\x5b\x8b\x2a\x15\x3c\x13\x73\x9d\x80\xb2\x64\x31\xbf\xcf\x65\x31\x97\xdf\x22\x98\x88\x52\xba\x7c\x7e\x12\x7d\xee\xea\xa3\xde\x0b\xfd\x94\x86\x50\x88\x0b\xe6\x2b\x2c\xf4\xbc\x3e\x18\x12\x9f\xfc\xe4\x27\xc5\x27\x3f\xf9\x49\xaf\x0c\x04\x41\xa0\x07\xb5\x86\x71\x41\xd9\x5f\x84\x50\x88\x57\x52\xb1\xfe\xec\xde\xca\x73\x6b\x8b\xf0\x53\x42\xd1\x40\xf7\x78\xa6\x69\xaa\x12\x94\x99\x71\x85\x06\xfb\xda\xe9\x32\xf3\x36\xc9\x07\x0c\x28\xab\x53\x59\xa8\xcd\xd6\x17\xfa\x01\xf7\xa2\xd3\x89\xd3\xe0\xa9\x8b\xe3\xf8\xb3\x57\x1f\xf5\x3f\xb6\x3e\x0f\x37\x90\x03\x69\x03\xa6\x75\x99\x01\x88\x2f\x7f\xf9\xcb\x62\x73\x73\xd3\x57\x27\x95\x3a\x2a\x7e\x3b\x33\x30\x75\xa3\xd8\xd3\xd8\x1b\xb8\x7e\x8c\x5f\xab\xc3\x2f\x2c\x8c\x95\x52\x52\x0a\xc8\x65\xa0\xe6\x4b\x21\xa7\x92\xf2\xc3\x16\x75\xcd\x1a\xd5\x47\x96\x18\x96\xce\x92\x65\xbd\xe7\x45\xa1\x9a\xa9\xf4\x5f\xca\x2a\x83\x9c\xec\xb9\xfb\xab\xd1\xa5\x9b\x76\xe5\x1d\x7b\x2f\x14\xc5\x71\x46\xc3\x28\x13\x31\x43\xd2\x12\x0c\xc4\x68\x20\xe3\xa1\xe6\x38\xd8\x70\x59\x02\x17\xac\xb8\x4a\xb3\x6e\x8a\xae\x09\x04\xd4\x75\xde\xbe\x74\x9a\xc0\x8c\x8f\x39\xa9\x4b\xa3\x69\xfa\xd0\xe7\xa7\x4b\x1e\xf4\xbb\xba\x3a\xe0\xce\x2d\xa3\x1b\xc6\x97\x56\x53\xdc\xa7\x01\x79\xfc\xcf\x4c\x45\xe8\x69\xa2\xa2\x83\x9a\x43\xd0\x74\x3e\x0c\x1e\x8c\xb6\xc2\x1b\xf3\xd5\xe0\x36\x48\x49\xcf\xae\x43\xb9\x02\xd2\x42\xae\x97\x4e\x03\xb0\x34\x57\xd1\x16\x2c\xff\x0a\xc6\xbe\xa5\x02\x83\x4c\x67\x6f\xd1\x21\xce\x40\xc0\x19\xee\x2a\xa5\xb1\x85\x01\x19\xda\x9f\xdb\xd1\x38\x7a\x14\x26\x91\xe2\xf0\x22\xd3\x09\x95\xa3\x0f\x13\x97\x32\x05\x2c\x61\x57\xb9\xa1\x4b\xa9\xb0\x35\x10\x82\x52\xac\x8e\x94\xee\xa0\xd2\xc5\x40\xec\x8e\xb6\x82\x97\x47\x17\xc2\x3b\x54\xae\x9c\x71\x8d\x72\x65\xf1\x6d\x0c\xe8\x4d\xd3\x14\x7f\xf6\x67\x7f\xa6\xc1\x4b\x13\xeb\xc6\x7f\xdd\x6b\x2b\xcc\x7b\xef\xbd\x27\xff\xe9\x9f\xfe\xc9\x8c\x48\xc9\x5e\x2a\x6f\xa6\x12\x91\x03\x18\x03\x5e\x50\x82\x8c\x11\x11\x8d\x60\x03\x92\x43\x22\x3a\x2c\xae\x8f\xf4\x35\xfb\xe5\x40\xc5\xc4\x53\xc4\x6d\x00\x0b\x4a\xdb\x16\xbe\x2c\xdc\xd8\x72\xbc\xf2\xca\x2b\xf8\xc1\x0f\x7e\xe0\xa9\x82\x4a\x39\x35\x28\xe3\x75\x61\xec\x5a\x00\x84\x71\x46\x83\x8f\xec\xf5\x3f\x76\x71\x1c\x7d\x3e\x4e\xe9\x12\x15\xab\x32\xb9\x4c\x5b\x36\x4d\x45\x8f\x6b\xe3\x6b\xaa\xfc\x94\x58\xbb\x64\xde\x5d\xe0\x63\x80\x30\x8b\xc6\xe8\xf4\x42\x20\x4d\xd2\x8a\xe2\x95\x44\x5c\xbb\x38\x8a\x7f\xfd\xea\xa3\xfe\x15\xca\xa7\xea\xf4\x5e\x2b\x21\x60\xad\x92\xaa\x75\x7f\xfa\xa7\x7f\x2a\xf4\x46\x73\x8c\x91\x37\x7b\xb6\x84\x92\xfa\x9b\x93\xf0\xd2\x93\xc7\xbd\x5f\x8f\x53\xba\x62\xf2\xc8\xda\x2c\xef\xdf\x78\xe6\xdd\x7e\xaf\x68\x1d\xe6\x01\x39\xf5\x63\xc0\x8f\xc3\xd8\x56\x63\x66\xaa\x85\x01\x20\x91\xaf\x02\x7b\xee\xf2\x28\xfe\xe4\xc6\x2c\xbc\x84\xdc\x06\xcb\x07\x5e\x4e\xe3\xdc\xfe\xa4\x09\x6f\x08\xee\xb1\x2e\x22\xcb\x73\x5b\x64\xda\x39\x0d\x53\x5f\x5b\xef\x52\xa1\x92\x24\x54\x53\x29\xf2\xb5\xf2\x7c\xea\x86\x23\x43\xfd\x8c\x5f\xbb\xdf\xcf\x8c\xda\xcc\x6a\x0b\xdb\x4f\xb9\x95\x55\x09\x5f\xec\x7b\x18\xc5\x4e\x15\x49\x67\x1e\xdc\x42\x2b\xea\xf7\x53\xb1\xb1\xb2\x14\x43\x94\x16\xe2\x16\x6d\xeb\x8c\x3a\x7c\xce\xc7\x56\xb8\x60\xc2\xe7\xa7\x6e\xda\xa8\x0e\x6c\x3e\x16\xf8\x74\xee\xeb\xa6\x7e\xdc\xbc\x77\x49\xb3\x2d\x4c\x5b\x7e\xdb\xd2\xf1\x01\xb5\x26\xd6\xa7\x4b\xdc\xad\x75\xfa\xca\x2b\xaf\x80\xef\x20\x49\xb6\x81\x7a\xc2\xfe\xcc\x4a\x8e\x2c\xc2\x68\xbc\x19\xdc\x39\xbe\x14\xbe\xbc\x58\x11\x3b\x0e\x54\x2f\xe2\x01\x1b\x41\x32\xed\xeb\x78\x55\x9c\x71\x01\xa0\xf7\xfb\x26\x4b\x13\xf9\xc2\x98\x5e\x83\x01\x13\xc0\x6a\x49\xe6\x85\xfb\x9c\xdd\x93\xb3\xf2\x8f\xed\xac\x9b\x67\x97\x15\xc4\xb0\x9f\x0c\x00\xb1\x3c\x68\x06\xa9\x3a\xf8\x60\x9a\x9a\xe5\x4d\xe7\x99\x72\xa6\x45\xa6\x3d\x3a\x1c\x9f\x0b\xae\x1f\x3d\x11\xbd\x01\xdb\xf8\x94\x77\xd4\x06\xbc\x90\x6d\x1b\xc2\x5d\x17\x39\x6e\x73\x12\x00\x76\x76\x76\xf0\xf5\xaf\x7f\xdd\x27\x6f\x16\xf3\x52\xe4\x4b\x6f\x8a\xc7\xf7\x56\x19\xa3\x04\x34\xfa\xcf\x07\x4c\xcc\x7b\xa5\x14\x7f\xc6\x57\x0f\x99\x7a\x28\x18\x41\x3d\xb8\xb4\xf6\xb2\xf9\xf1\x8f\x7f\x2c\x7f\xf6\xb3\x9f\xb9\xe5\xf1\xea\xb3\xff\xf5\xbf\xfe\x97\xf8\xc5\x5f\xfc\x45\x57\xef\x09\x94\x9d\x5a\xff\xcc\x3c\xdc\xb8\x38\xee\x7d\x66\x25\x09\xae\x11\xd0\xb7\x95\x71\xc9\xd0\x29\x76\xeb\x02\x8e\xb2\x43\xe6\xc3\x58\xa7\x31\x18\x79\x60\xf7\x3e\xf5\xee\x09\xa6\xd3\x08\x14\x0d\xcf\x2c\xc2\xe7\x9e\x3a\xea\xff\xda\x4a\x22\x06\xc8\x3b\x6a\xce\x20\x99\x7a\xf8\xc4\x27\x3e\x81\xdf\xf8\x8d\xdf\xe8\x32\x8b\xc1\x97\x40\xf7\x87\x8b\x60\xf3\xc3\x07\x2b\xcf\x0d\x17\xc1\x27\x28\x8f\xdf\xca\x88\x52\x36\xb3\xa2\xac\x32\x97\x45\xe0\xf9\xb6\x5e\xf2\x5b\x7f\xd3\x61\x4e\x79\x2f\xb9\x9f\x50\xd2\xe6\xfa\x3c\xfc\xd8\xa5\x93\xf8\x99\x33\xb3\x60\x1d\xf6\xea\x28\xd3\xd7\x29\xa5\xf0\x7b\xbf\xf7\x7b\xb8\x72\xe5\x4a\x1b\x20\x39\x15\xbe\x00\x9a\x8d\x73\xf9\xb5\xaf\x23\xad\x84\x7b\xef\xbd\xf7\x40\x44\xf8\xcd\xdf\xfc\x4d\x77\xae\x55\xdb\xb8\x98\xf9\xd2\x34\xc8\xed\x5c\x8a\x13\x3a\x3d\x60\x84\xb9\x8a\x65\x1e\xca\xd5\x10\xfc\x21\x9c\x79\x78\xf3\xca\x03\xb3\x35\x84\xaf\x7c\xe4\xca\x99\xb7\xb5\x06\xb6\x42\x21\xec\x65\x62\xd8\x5f\x8a\xa1\x90\x08\xa5\x30\x1b\x2b\x99\x79\x67\x4f\xd8\xa6\x29\x1f\xee\xdc\x4e\xd5\xad\xf7\x0f\xa2\x4c\xbb\xcc\xdd\xd7\x85\xf9\x79\xa4\x7f\x9a\x74\x1e\xd7\xfd\x77\xe5\xaf\x39\x51\x29\x65\x9a\xa6\x7a\x29\x3c\xff\x86\xfa\x14\xda\x04\xb9\xd2\x9b\x17\xca\x6b\x0a\xa2\x30\xed\xe1\x70\x74\x21\xbc\x15\xcd\xe4\xf9\x60\xb9\x1c\x44\x4b\xe4\xcb\x50\x0a\x16\x84\x0b\xb0\x4b\x0f\xfb\x6c\x01\x50\x06\x76\x72\xa8\x57\xed\x94\xef\xab\xa2\x5d\x8e\xdd\xdc\x56\x56\x1f\x2f\x7f\xca\xde\x3b\x9a\x95\x7c\x41\x9d\x36\x68\x6c\x76\xbc\x38\x4b\x99\x73\x59\xf4\x48\x90\x97\x45\x8f\xba\xb3\x88\xc6\x93\xb3\xc1\x3b\x47\x97\xc2\x1b\x49\x8f\x8e\x40\x66\x7f\x12\x6e\x94\x5a\x39\x58\x51\x29\x85\xc9\x64\x22\xff\xe1\x1f\xfe\xc1\x97\x78\x9d\xeb\x2c\x6b\x4a\x29\x79\x70\x70\x20\xbe\xf6\xb5\xaf\x49\x00\xf8\x83\x3f\xf8\x03\x08\x61\xe9\x65\xae\x6f\x05\x4a\xb9\x71\x0f\x73\xe5\x7f\xda\xf9\x98\x72\x3d\x68\x4c\x99\x4c\x5a\xb6\x2b\xca\xde\xbb\xc6\xc8\xed\x77\xbf\xfb\x5d\xb9\xbb\xbb\x8b\xd9\x6c\xa6\xb7\xf3\xe7\x6c\xb0\xdb\x19\x4b\x00\x88\xa2\x08\xc5\xd4\x88\x61\x16\x4c\x27\xad\x10\x12\xd0\xbf\x38\x8a\x2f\xaf\xcd\x83\x8f\x05\x8a\xd6\xbd\xc2\xc0\x99\x11\x06\x7a\x7d\x9d\x74\x75\x58\xdb\xec\x0c\x79\xc8\xae\x5d\xc6\x42\xbb\x42\x96\xc2\x38\x15\x5b\xe7\x27\xd1\xa7\xae\x1c\xf7\xff\xeb\xe6\xd6\xf4\x1d\xe4\xec\x82\xb6\x49\x32\xdf\x20\x08\x02\x84\x61\x68\xea\xbe\xdf\xef\x8b\xdf\xff\xfd\xdf\xe7\xc9\xf3\xb3\x88\xcc\x5f\x9c\xd1\xc6\xe6\x24\x7a\xb6\x58\x45\x54\xa6\x0f\xcd\x7c\x38\xad\xca\x1d\xb8\x38\x4d\xa5\xb6\xbe\x9c\xb1\x86\xdb\xba\x2b\xb3\x0d\x64\x85\x66\x8e\xc4\xca\x52\x5c\x39\x37\x89\x9e\x5d\x9f\x87\x37\x8f\x57\xb2\x11\xca\xd5\x67\x7a\xaf\x22\x41\x44\x32\x8a\x22\xc1\xf4\x20\xd0\x61\x1a\xc8\xe3\xaf\xe2\xbf\x6e\xde\xd6\x87\x90\x9a\x46\xc2\x12\x00\x92\x24\xc1\x64\x32\x31\x73\x79\x80\xa1\x0c\xb5\x1f\xb3\x29\x57\x46\x2a\xc9\x6d\x5c\x54\x52\xa1\xf4\x0a\x57\xb2\xe3\x76\xe5\xe6\xae\x98\xbb\x57\x0c\x38\x93\x53\xf1\xd6\xfc\xbb\x9b\x04\x55\x3e\xa4\x8e\xdf\x3c\xe6\x46\x84\x1e\x47\x0a\x61\x94\x8a\xe1\xca\x32\x58\x8b\x32\x61\xe6\x3d\x4b\x5b\x00\xb3\xb2\x84\x3b\x5e\xbf\x80\x5f\x01\xf1\x77\xee\xaf\x3b\xc5\x51\x37\x3d\xd3\xa4\xdc\xea\x18\xb5\xa6\x78\xeb\xa6\x5b\xea\xc2\x35\x4d\xb1\xd4\x95\xa1\x69\xaa\xe9\x34\xd7\x4d\x75\x59\xe7\xb7\x0e\xf5\x37\x4d\x2f\x79\xf3\xb1\xbd\xbd\x8d\x17\x5f\x7c\xd1\xd4\x31\x9b\x82\x30\x9b\xd0\x11\x5b\x5d\xa4\x94\x9a\x2b\xa2\x69\xb2\x42\x7b\x47\x97\xc2\x1b\xd3\x8d\xe0\x66\x16\x20\x31\xf2\xaa\x19\x11\x23\xe8\xa5\x24\x1b\x1b\x2e\x2e\xb8\xca\xfa\x31\xfe\x6c\xa0\x52\x04\x50\x9e\x6b\x76\x08\x0c\xe9\x60\x2a\x4f\x57\x29\x4f\x7e\x4c\x3e\x50\x12\x37\x6c\xb8\x9c\x83\x0b\x65\xda\x93\x95\x41\x36\xbd\xa3\xa7\x8c\x88\xe5\xd7\xd8\xd3\xa0\xcc\xbf\x3d\x12\xe5\x85\xcd\xef\x65\x88\xe9\x74\x4d\x6c\x1f\x6f\x85\x37\x66\xeb\xc1\x3d\x08\xaa\x30\x0d\x54\x2e\x37\xb6\x56\x46\x10\x11\xa4\x94\x18\x8d\x46\xae\x12\xf5\x5d\xfb\xda\x44\xdb\xa8\x52\x48\x29\x71\x7c\x7c\x8c\xe3\xe3\x63\xf9\x0f\xff\xf0\x0f\x98\xcd\x66\x52\x29\xc5\xe5\xc4\x30\x30\x54\x1c\xda\x8a\xfa\x25\xcc\x53\xe7\xda\x3d\x5f\x88\xb3\x4b\xda\x30\xd9\x9c\x9d\xc5\x7e\x79\xda\xf8\xee\x77\xbf\x2b\xef\xdc\xb9\x83\xe3\xe3\x63\x24\x09\xdf\xba\xc4\x3b\x4d\x2c\x01\xe0\x73\x9f\xfb\x9c\x78\xe2\x89\x27\x00\x94\x7a\x9f\xec\xc3\x14\xe3\x5e\x2a\xfa\x97\x4e\xe2\x5f\x58\x59\x8a\x2b\x22\xdf\xb7\x24\x17\x25\x87\x62\xd7\x9f\x5c\x4f\x6f\x90\x2a\x9f\x11\xf3\x6f\xc2\xd9\xe2\xf8\x58\xce\x6a\x3e\x5a\x9e\x40\x10\x0a\x83\x41\x12\x5c\x7b\x62\x14\x7f\x84\x14\xfa\x50\xd6\xb4\x88\xf5\xfd\xaf\x5c\xb9\x82\xcf\x7c\xe6\x33\xa6\x1f\x28\x96\x3f\xbb\x7f\xc6\xde\x27\x4e\xa9\xbf\x31\x0b\xcf\xaf\x2e\x83\xa7\x72\xdb\x96\x32\x13\xc4\xcb\xa6\xca\xfc\x19\x36\x12\x8c\x7d\x61\x1d\x1c\xc1\x0e\x9b\xb7\x27\x58\x15\x54\x68\x02\xeb\x81\x3b\xe6\x31\x53\xc6\xfc\x71\xd1\x3e\x43\x49\xe7\xcf\xcc\xc2\x8f\x6c\x4e\xa3\x2b\xfd\xa5\x18\xa0\x3c\xd9\xbb\xa2\xcf\x3f\xf3\x99\xcf\xe8\x9d\x93\x1b\xc1\x48\x83\xab\x65\x5c\x7c\x2c\x8b\xfb\x0c\xce\xf3\xda\xf7\x9c\x65\x60\xd3\x46\xfa\xbd\x84\x9e\x2a\x0a\xe4\x34\x13\x48\x5c\xbd\x6b\x46\x85\xb0\x1e\xb2\x55\x11\x25\x23\xc2\xd9\x11\xfd\x3d\xcd\x2f\x33\x26\x74\xf1\x8c\x41\xf3\xc5\x3b\x3d\x52\xb3\x89\x19\x2a\x3f\x3a\x31\xa6\xd1\xdc\x93\x08\x25\x0d\x06\x4b\xb1\xd1\x4f\x45\xbc\x88\x64\x05\x2c\x30\xbb\x17\xee\x5c\x70\x58\x87\x42\xeb\x18\x8e\x26\xea\xad\x4d\x30\x78\x7a\xae\xdf\xb6\xf4\xea\xfc\xb4\x85\x6f\x9a\x62\xf9\xa0\xfe\x4e\x05\xae\x1b\xfc\x76\x19\x05\x74\xca\xeb\x6c\x36\x93\x87\x87\x87\xe6\x1b\x71\xd9\xd7\xc0\x5d\x83\x16\xb0\xd3\xa3\x65\x80\x70\xbe\x16\xdc\x7b\x74\x39\x7a\x39\x5c\xaa\xf5\x95\x91\x7c\x06\xb2\x50\xee\x46\x38\x6d\x61\xae\x6c\xfd\xcd\xc9\x0e\x2a\x57\x05\x18\xfb\x13\xc6\x2c\x96\x3f\x8c\xc1\x40\x95\xd1\xe1\x37\xd6\xd8\x8f\x03\x7f\x72\xe2\x63\xf1\xf2\xfc\x5b\xed\x96\x34\xf8\x20\x58\x3b\x07\xb3\x94\xf2\x68\xca\x72\x98\x87\x04\x1b\xb0\x15\x81\x65\x80\xf9\x7c\x28\xb6\x47\x5b\xe1\xab\x93\xb3\xc1\xbb\x32\xa0\x11\xaa\x9d\x39\xdf\x2d\x57\x33\x2d\x92\x88\x70\x74\x74\x24\xff\xf3\x3f\xff\x13\xa8\x57\xb2\x6d\xa3\x47\x9f\x2e\x85\xe7\x17\x00\xb0\xb3\xb3\x23\xff\xfd\xdf\xff\x5d\x84\x61\x28\x5f\x78\xe1\x05\x9c\x3f\x7f\xde\x8a\xb3\xc8\x97\x05\x96\x99\x81\xa7\x7e\x56\x71\x4c\x07\x5b\x9b\x7f\x02\x25\xa3\xe2\xe6\x49\x4a\x29\xbf\xf3\x9d\xef\x00\xc8\x37\xcf\x5b\x2e\x97\x4d\x9d\x4b\xa5\x2f\x38\x77\xee\x5c\xe5\xd0\x40\xd8\xac\x4b\xbc\xb6\x08\xd6\x37\xa7\xd1\x73\x91\xa4\x0d\x93\xf7\x0a\x7b\x5e\x0e\x36\xeb\x44\xb1\xd4\xf1\xe5\xaf\xb5\xa1\x9a\xae\x07\xee\x37\xaf\x18\x4b\xaf\xfb\xc6\xa4\x46\x84\xcd\x42\x90\x9c\x15\x39\x3b\x0b\x7f\x61\x65\x29\x7e\x34\x8d\xa4\x96\x23\x0d\xc8\xa4\x1e\xa4\x0e\x06\x03\x3c\xfb\xec\xb3\x72\x38\x1c\x22\x08\xac\xfd\xf1\x35\x98\xd1\xbf\x21\x80\x70\x65\x19\x0c\xcf\x4d\xa2\xcb\x71\x2a\x2e\x91\x82\xd9\x1d\xd7\xd9\xee\xa8\x3a\x48\xb0\xfb\x57\x7f\x05\xb1\x1a\x20\x27\x8e\x4a\xb1\x2b\xa4\x8a\xbf\x3e\x4b\xfb\x4e\xf4\x57\x96\xe2\xf2\x99\x59\x78\x75\x90\x88\x9b\xf3\x48\x6a\x36\x33\x44\xc9\x12\x4a\x20\x3f\xf6\x61\x30\x18\xb8\x2c\x1d\x77\x4d\xfa\xda\x37\x80\x36\xc0\xa5\x4d\xf9\xd7\x35\x44\xb7\x03\x14\xbc\x70\xce\x3b\x4b\x41\x64\x42\xa5\x8b\x50\xcd\xf5\x5e\x2e\xb9\x33\x5a\x28\xbf\x75\x21\x60\xad\x94\x35\x3f\x76\x83\xf1\x0d\x8e\x6c\x23\x3f\x14\xa3\x42\x7b\x3f\x17\x4e\x2f\x72\xc1\x87\x02\x42\x89\x78\x25\x15\x1b\xbd\x94\xf4\xdc\xa4\x41\xe1\x4c\xb9\xf8\x5c\x53\x27\xd8\xe4\xd7\xbd\x6f\x02\x31\x5d\xe2\xf3\x29\xdf\xb6\xf4\x4e\x93\xd6\x07\x0d\xf7\x7f\x3a\xfe\xc7\x8a\xf7\xd1\xa3\x47\x78\xf5\xd5\x57\xe5\xf3\xcf\x3f\x6f\xda\x48\xb1\x14\x55\xcb\x06\x3f\x25\x38\x04\x10\x2a\x20\xcc\x22\x1c\x8d\xcf\x05\xef\x05\xcb\x68\x78\x4e\x2e\xe3\xde\x58\x5e\x11\x06\xbc\x80\x11\x22\xca\x74\xea\x96\x86\x77\xdb\x83\xd1\xce\x65\xfb\xa9\x9b\x00\xca\x83\xfb\x9e\x7b\xba\x10\x8d\xe0\x6b\x06\x07\x4e\xa4\x25\xeb\x62\x0d\x36\x1c\xc5\xeb\x4b\x8d\x65\xbd\x32\xe3\x0b\x58\x0f\xa4\x40\x32\x1f\x8a\xfb\xc7\x5b\xe1\x8d\x93\xf3\xe1\x3b\xcb\xbe\x38\x02\x55\x98\x89\x0a\x68\x41\x09\x2e\x31\x9f\xcf\xf1\xfe\xfb\xef\xbb\xac\x68\x9d\x6b\x02\x28\xae\xab\x95\xa3\xed\xed\x6d\x09\x00\x59\x96\x89\xb5\xb5\x35\xf9\xd4\x53\x4f\x69\xbb\x00\x9f\xae\xf5\x82\x16\x77\x09\x31\xd7\xc1\xee\xb4\x3d\xbf\xd6\x53\x63\xaf\xbe\xfa\x2a\x94\x52\xb8\x75\xeb\xd6\x69\xf2\x5f\x5b\x66\x66\x84\x9a\x77\xee\x0a\xa1\x50\x88\xcf\x4e\xc3\xcd\xd5\x45\xf0\x11\x21\x89\x9d\x40\x69\xc1\xe1\x5c\x07\x93\xcf\x10\x80\x3f\xf0\x08\x5c\x4b\xf7\xc0\x07\xb3\x6d\xce\x05\xf0\x81\xa4\xe1\xea\x22\x78\xe6\xfc\x38\x3a\xbf\x7d\x76\x31\x46\x3e\x5d\xa4\xe5\x48\xeb\x7a\xa9\x94\xc2\x60\x30\xc0\x87\x3f\xfc\x61\x5f\xb4\x15\xe6\xa5\xbf\xa4\xf5\xb3\xd3\xe8\xc9\x28\xa3\x4d\xcf\xbe\x7b\x65\x39\xea\x10\x9c\xd3\x65\x56\x9c\xb1\x39\xb3\x4d\x16\x9a\x74\x80\xc9\x06\x53\x2d\x6e\x75\x13\x08\x51\x26\x36\x56\x13\x71\xa9\xbf\x0c\x86\x40\x7a\x08\xff\x74\x26\xf0\xc1\xf4\x32\x6f\x8b\x26\xbe\x3a\x0b\xe0\x2e\x0c\x00\x8f\xd4\x6d\x60\xd6\x8a\x22\x36\x8f\x0a\x14\xe0\xa5\xb0\x71\x99\xa6\x85\x71\x6e\x2e\xc4\xd5\x73\x49\xca\xf5\xe4\x25\xa3\x62\xaa\x93\x21\x4f\xfe\xfd\x5c\xa0\x58\x55\xd7\x65\x98\xf2\xae\x4c\x8b\xf7\x01\x95\x3e\xa1\xe8\x28\xf4\x7e\x5a\x42\x51\xdc\x5b\x8a\x8d\x5e\x2a\xfa\xc5\xc8\xc2\x5d\x49\x64\x28\xb2\xad\xad\x2d\x3c\xf5\xd4\x53\x42\x2b\x2a\xc7\xd5\x8d\xd4\xda\x3e\x7e\x1b\x33\xe2\x0b\x5f\xc7\x9a\x55\x46\x51\x35\x69\xb6\xb1\x71\x4d\xf9\x6e\x2b\x4f\x5d\x3e\xea\xea\xc7\x0d\xa3\x5d\x5b\x7e\x7c\xf7\xbe\x77\x5d\xfd\x5b\xd7\x27\x27\x27\xf2\xb5\xd7\x5e\x13\x41\x10\xc8\xe7\x9e\x7b\x8e\xb3\x6e\x29\x4a\x85\x9e\x14\x23\x2f\x8b\x79\x49\x63\x1c\x8d\x2e\x86\x6f\x84\x4b\x0c\xce\xa8\x65\xd8\x9f\xc8\x4b\x86\x79\x31\xa0\x99\xf5\xe2\xc5\x8e\xb4\x16\x2c\xd0\xe0\x86\xb4\xdd\x47\xb1\x17\x8c\xb1\x0f\x71\xae\x5d\x25\xc6\x35\x15\xb7\x9c\xb7\x1a\x5a\x19\xc6\xc2\x4f\x86\xa2\x2c\x57\x28\xd9\x7a\x57\x55\x7a\x86\x7c\x7f\x0d\x3e\x28\xb0\xf7\x61\xd2\x06\xf8\x39\x5b\xca\xc6\xd1\x9a\x69\x11\x48\x17\xab\x62\xe7\xf8\x42\x78\x7d\xb4\x15\xbe\xb9\x18\xd0\x1e\xa8\x72\xca\x31\x5f\x4d\x54\x99\x26\x3a\x3a\x3a\x92\x6f\xbf\xfd\xb6\xce\x52\xdd\xe0\xa0\x0d\xe8\x3f\x36\x80\xbe\x73\xe7\x0e\x8a\x7c\x88\xbd\xbd\x3d\x79\xf6\xec\x59\x3c\xfd\xf4\xd3\xae\xbd\x54\x25\x5d\x3e\x25\xcd\xa6\xa9\xdd\x30\x95\x3c\x1f\x1c\x1c\x60\x7b\x7b\x1b\xd3\xe9\x14\xaf\xbf\xfe\xfa\x69\x07\x33\x96\xfb\xd8\xc7\x3e\x26\x56\x57\x57\xdd\xc7\xe6\x40\xc5\x1c\xb8\x50\x7c\x76\x1a\x6e\xc5\x19\x9d\x27\x20\x34\x3b\x22\x93\x2b\x6e\x6c\x43\x35\x65\x0f\x1e\xf3\x87\x4e\x5f\x01\x3d\xad\x61\x0f\x40\x7d\xa0\x9a\x5f\x97\x7e\x6d\x71\x54\x95\x38\x09\xa4\x54\xdc\x4f\xc5\xe5\x8b\x27\xf1\xe5\xed\xb3\x8b\xbb\xd0\x83\x8d\xfa\x7d\x74\x00\xbb\xc3\xd5\xfd\xa2\x69\xe7\xa4\x10\xf7\x52\xb1\xbe\x9a\x88\xad\x40\xd2\xb0\x02\xc4\x58\xbe\xf8\x2c\x81\xd9\x4c\x8e\x4d\x0d\x59\xc1\x2a\x20\x23\xff\x6f\xdb\x5b\x96\xfb\x3a\x55\xea\x87\x45\xca\x07\x10\x56\x7a\x04\x04\x0a\xc3\x95\x65\x70\x7e\xb0\x14\xeb\xa4\x10\x2b\xf2\x4f\x9f\x01\xc0\xd5\xab\x57\xf1\xe8\xd1\x23\xb1\xbb\xbb\xdb\xd4\xf7\x35\xe9\x78\x30\x3f\xad\xc6\xb9\xee\xbd\xef\x9d\xd7\xb9\x28\xdf\x59\x69\x24\x53\xa1\x92\x79\x28\x67\x49\x90\x2f\x89\x0e\x14\x85\xf6\xa1\xb2\xf6\xc8\xc1\x06\x11\x85\x40\x52\x59\xf9\x1c\x4b\xfa\xb1\x7a\x15\x5f\x5a\xbe\x0c\x40\xaa\x8c\x2d\x0d\xd3\x62\xde\x53\xa9\xf7\x85\xa2\x38\x4e\xc5\xfa\xca\x32\x18\x12\xc8\x65\x5b\x04\x1f\x09\x3d\xf1\xc4\x13\x38\x39\x39\xfd\xcb\x2c\x69\x00\x00\x20\x00\x49\x44\x41\x54\xc1\xf6\xf6\xb6\xaf\xca\xea\x94\x4c\x9b\x12\x6c\x1b\xed\xf9\xbe\xa5\x4f\x01\xb7\x81\xd2\xa6\xf8\x7c\xef\x3a\x8f\xce\x5a\xfc\x35\x31\x80\x6d\x71\x77\x09\xd3\xc5\xef\x69\xfc\x9b\x7a\x9b\x4c\x26\xf2\x95\x57\x5e\x11\x1f\xff\xf8\xc7\xdd\x3c\x6a\xe6\x45\x1f\xb4\xc7\x0d\xba\x43\x10\x85\x49\x0f\x87\x47\x97\xc2\xeb\x24\x55\x4c\xbb\x29\xe2\xa9\xbc\x24\x32\xc4\x2e\x30\xb1\xe8\x5f\x2a\xa5\x5f\xdb\xbe\xe4\x1b\x4a\x01\x06\x6d\x10\xe0\xee\x8a\xc9\xa0\x3b\xaa\x1a\x4b\x6b\x37\xc7\xab\x73\x6d\xd8\xc8\x32\x23\x86\xb9\xe4\x01\xcc\x08\xdb\x69\xa2\x54\xf4\x4e\xe5\x68\x8f\x0f\x62\xc8\xf6\x67\xf5\x74\x0a\x52\x50\x9a\x0c\x68\x67\x74\x21\xbc\x31\xda\x0a\x6f\x2e\x56\xc5\x43\x08\x1a\xb1\x25\xc5\x2e\x70\xa9\xec\xf8\x79\x74\x74\x24\x5f\x7f\xfd\x75\xbc\xf1\xc6\x1b\xc0\xe9\xe4\xba\xc9\x75\x09\x57\x69\xbf\x77\xef\xde\x95\x77\xef\xde\xc5\xd6\xd6\x96\xde\xb0\xd2\xb8\x8f\x7e\xf4\xa3\x1a\x90\xf0\xce\xd2\xc7\x78\x54\xf2\xf2\xfe\xfb\xef\x63\x3a\x9d\x9a\x07\x3b\x3b\x3b\x78\xeb\xad\xb7\x74\xba\x1f\x88\x35\x7a\xfe\xf9\xe7\xb1\xbe\xbe\xee\x76\xd4\x96\x31\x6a\x20\x11\x0f\x17\xe1\xc5\x40\xd2\x20\x7f\x5f\x32\x2b\x36\x30\x51\xe5\x68\xbf\x86\x65\xaf\x68\x78\xd2\x83\x65\x1b\xd0\xc2\x89\xdb\x4b\xb8\x90\x5f\xac\xf9\xf4\x0a\x01\x22\xca\xc4\xfa\x99\x79\xf8\x24\xfc\xf6\x2d\x1c\x9c\xf0\x6f\xc2\xfb\x48\x6b\xc7\xdc\x40\x52\xd8\x4b\xc5\x7a\x9c\x89\x4d\x91\xdb\xcd\x38\x85\x72\xf2\x52\xbc\xb0\xa7\x51\x3d\xc5\xa9\x3c\x2b\x0f\x64\xb5\xca\xe8\x02\x38\xe7\x5a\xd7\xa7\x99\x86\x73\xe2\x0d\xf2\x55\xb5\xe7\x07\x49\xb0\x19\x4a\x8a\x97\x81\xe2\x40\xce\x0c\xd8\x01\xe0\x99\x67\x9e\xc1\xfe\xfe\x3e\x76\x77\x77\xab\x19\x6e\xd7\xb7\x95\x6b\xdf\x21\x8b\x6d\xa3\x5d\x37\xf2\x3a\xf0\xc2\xdf\xe9\x4d\x97\x0c\xeb\x92\x11\xe4\x22\x94\xd3\x45\x28\xc7\x92\x54\x12\x28\x0a\x95\x35\x85\x53\x80\x13\x68\x75\xe7\x83\x1e\x25\x98\x40\x19\xd2\x02\x1f\x86\xd1\x2e\xc6\x6d\x5a\x18\x38\xff\x92\x0f\x0a\xcb\x10\xfa\x23\x5b\x9f\x9b\x01\x28\x7d\x41\x00\x48\x21\xee\x65\x62\x7d\x90\x88\x61\xa0\x10\xa6\x50\x96\x30\xb3\x86\xe7\x8e\xda\xea\xae\x9b\x40\xa3\x1b\xc6\xf5\xd7\x25\x0d\x1e\x57\x5d\xbc\xbe\x6f\xda\xc6\x66\xf8\xd2\xa9\x73\x5d\xd8\x25\x1f\x7b\xd4\x25\x7c\x13\x72\x6f\x92\xe7\x2e\x61\x80\xfa\xbc\x7a\xcb\x9c\xa6\x29\xde\x7f\xff\x7d\x79\xf5\xea\x55\x03\xde\x8b\xbf\x54\xef\x75\xe1\x18\x30\x1a\x23\xef\xc5\xaa\x78\x78\x74\x29\xbc\x0e\x00\xeb\x7b\xa9\xec\x4d\xe4\x25\x91\x51\xdf\x52\x3f\x5c\xd0\xad\xd1\x64\x21\xaf\x9a\x15\x61\x53\x3b\x7c\xe4\x55\xda\x98\xd4\x0c\x4b\x7d\x8e\x0d\xcb\x4a\x96\x92\x69\xda\xca\x48\x50\xb1\x68\xf9\x10\xc4\xd1\xce\x28\xda\xa9\x2a\xef\x0c\x66\x62\xf9\xe4\xed\x38\x07\x2d\x62\xe7\x78\x2b\xb8\x7e\x7c\x31\xbc\x3e\x1f\x8a\x7b\x4a\x90\xb5\x4f\x09\xfb\xe3\x4b\x8e\x25\x50\x4e\x5d\xdf\xbf\x7f\xbf\x8d\x75\xa8\x93\x2d\x38\xfe\xba\x0c\xfa\xea\x40\x82\xe5\x67\x77\x77\x57\x3a\x8a\x5e\xac\xac\xac\xf8\xd2\xe9\xe4\x5e\x7c\xf1\x45\x1c\x1c\x1c\x74\xd1\xeb\x6d\x79\xad\x95\x77\xde\x71\xa9\x72\x87\x58\x41\x20\x11\x28\x8a\x07\x4b\x71\x5e\x28\xbd\xe4\xb7\x6e\x3a\xc8\x33\x58\xe5\xac\x88\x2a\xe5\xb8\xd4\xcf\x1c\xe4\x90\xcd\x1c\xf0\x0e\xc2\x1a\x1c\xfb\xc5\x9c\xcf\xae\xb2\x0c\x0a\xa1\x10\xf7\x53\xb1\x89\x62\xcf\x12\xa7\x93\xf6\x4d\xd3\x71\xc7\xfd\x84\x4a\x29\x11\x4a\x11\xf7\x53\x31\x88\x24\x0d\x09\x14\x5a\xc9\x91\x9d\x7c\xd9\x66\x39\xb8\xaf\x96\xc1\x18\xeb\xa3\xe8\xe3\xf4\x1c\x2b\x60\xb5\x33\xbb\xb9\x57\x67\x2e\x72\xff\x64\xe5\xc7\x0d\x47\x8a\xc2\x7c\xd0\x2e\x36\xa2\x8c\xe2\x65\x60\x9d\xbf\x94\xb0\xfa\x91\x85\x4e\xab\x6b\x37\x1c\x7b\xc0\x79\xe6\x5e\x03\xb0\x81\xcb\xe3\x8c\xbe\x5d\xbf\x96\x32\xe7\x86\x65\x15\xbb\x17\x42\xba\x0c\x54\x32\x8b\xe4\x28\x13\x48\x22\x89\x72\xb7\xc0\x4a\x12\x8e\x20\x18\x7d\x47\x95\xb7\xbe\xb9\x38\x0d\x88\xec\x58\x6c\xf4\xa9\x9c\x38\xcb\xd0\x65\x9c\x25\x85\x58\x52\xf0\x02\x10\x71\x46\xc3\xd5\x24\x38\x17\x65\x22\xcc\x6c\x03\x5d\x43\xe3\x3a\xc2\xdc\x85\x31\x78\x9c\x51\xdf\x69\xd8\x8f\x26\x60\xc3\xf3\xe0\xcb\x8b\x2f\xfe\x3a\x36\xae\x0b\x9a\xf6\x29\xc7\x53\x2b\xe6\x9a\xb0\xbe\xeb\x53\x23\x7c\x4f\x98\x4e\xa3\xf0\xf9\x7c\x2e\xff\xf5\x5f\xff\x55\x7c\xf9\xcb\x5f\xc6\xe6\xe6\x26\x84\x10\x12\xc5\x09\xc1\x85\x4c\x24\x40\xb9\x61\x61\x21\x2b\x46\x86\x66\x6b\xe2\x1e\x28\x92\x4a\x20\x5d\xdf\xcd\x64\x7f\x92\x5d\x16\x29\xfa\xf6\x29\xce\x00\x47\x2d\x7a\x3a\xc5\x66\x3c\x4a\xb0\x60\x8f\xb0\x08\x0c\x29\x30\x9f\x6c\x4e\xa8\x00\x3d\x46\x25\x72\x80\x63\x02\xe4\xc3\x32\x4b\xe9\xb3\x9e\xc2\xcf\xf0\x54\xcf\xa4\x01\x6c\x96\x46\x41\x8f\xf6\xca\x6d\xfd\x8b\x52\x40\x52\x31\x3d\x74\x31\x7c\xf9\xe8\x52\x78\x63\x31\x10\x0f\x54\x69\x8c\xcb\xff\xdc\x29\x22\xfd\x0d\x24\x11\xc9\xe9\x74\x2a\xc7\xe3\xb1\xff\x03\xe6\xae\x4d\xf7\xb5\x51\xdc\xbe\x70\x5d\xda\x54\x25\x0f\xff\xf2\x2f\xff\xd2\x12\xf5\xa9\x5c\x5d\x3b\xac\xcb\x7f\x1d\x63\x6b\x75\xdc\xac\x03\x37\xec\x73\x71\x18\x64\xd8\x4b\x83\xcd\x9c\x99\xae\x58\xb6\x94\x03\x4a\xcd\xbc\x71\xbd\xcb\x30\x71\xc9\x7c\x73\x50\xee\x38\x2a\x17\x78\xe8\x93\xd1\x5d\x0c\xe3\x4e\x3f\xb9\x0c\x44\x39\x1b\x6b\x12\x08\xa3\x4c\x0c\x09\x08\x95\x62\xd3\x60\xb0\x58\x76\xe9\xd6\x03\x98\x1e\xe5\xc6\xb9\xa1\x44\x1c\x65\xa2\x4f\x92\x62\x9e\x15\x53\x04\x96\x2d\x3e\x1b\x40\x8e\x1f\x5e\x06\x62\xfa\xa0\x64\x5c\xcb\x7a\x28\xfb\x4c\x1f\x49\xe0\x80\x9e\x1a\xa2\x80\xd5\x88\x10\x0a\x71\x94\xd1\x6a\x20\x89\x4f\x9d\xe9\xb2\xe6\x7e\xab\x0b\x54\x9a\xe4\xbe\xe9\x19\x50\xc8\x5d\x97\x91\xb5\xef\xba\x42\x8f\x69\x3f\x59\x96\x61\x36\x9b\x01\x30\x15\x22\x9d\x3f\x63\x18\x97\x0a\x35\x9f\x47\x72\x9c\x0a\x39\x05\x98\x3a\x53\x79\x23\x70\xd9\x29\x63\x37\x43\xec\x1a\xf6\xb5\x57\x8a\x55\xf5\xd6\x80\x95\x26\xc7\x99\x6f\x85\xca\x67\x2c\x14\xb4\x08\x33\x1a\xac\x26\xc1\xf9\xc2\x40\xd7\x27\xcc\xa6\x61\x7b\x5c\x17\x10\xe2\x73\x75\x4c\x57\x57\x3f\x6d\x1d\x6f\x1b\x3b\xe1\x5e\xfb\xd8\x9c\xae\xe0\xa3\x91\xb5\xa8\xf1\xcf\xf3\xe8\x73\x6d\xb2\xdd\xe6\xea\xfc\x76\x89\xc3\xaa\x0b\x29\xa5\xfc\xbb\xbf\xfb\x3b\xbd\x0b\xab\x54\x4a\x69\x06\xd2\xdd\x74\x4c\x33\x03\x66\xb3\x31\x22\x1a\xcf\x87\xe2\xc1\xa3\xcb\xd1\xf5\xa3\xcb\xc1\xcb\xb3\xb5\x60\x5b\x86\x98\x2b\x22\x8e\x10\x4a\xd0\x02\xa0\x3c\xa7\x2b\x7f\xa5\xf4\x08\xb5\x02\x1c\xf2\x10\x65\x5c\x7c\x54\x9b\x03\x05\xb3\x83\x2d\x1f\x7d\x15\x72\x5c\x9d\xf6\x61\x0c\x09\x1b\xfd\x02\xb0\x56\x28\x28\xf6\xdf\xf6\xc5\xda\x88\x66\x90\x1c\x4f\x4a\xbf\x22\xa4\xf3\xa1\xb8\xff\xe8\x72\xf4\xd3\xc3\x27\xa3\x57\xe7\xab\x06\xb4\xe8\x0d\xd7\xa6\xc5\x54\x51\x65\x35\x91\x62\xbb\x78\x2f\x16\x0b\xf9\xea\xab\xaf\xe2\xe5\x97\x5f\xe6\x00\xbe\x2b\x10\x69\x02\xe7\x6d\x72\xe2\xd3\xa7\xbe\x38\xea\x58\xc8\xba\xeb\xae\x69\x37\xb5\xe1\xb6\x3c\xb9\x71\x48\xa0\xec\x00\x75\xc7\xa5\x99\x43\x14\xc6\xb9\x51\x46\xfd\x38\x43\xb9\x9a\x48\xe5\xdd\x6b\x7e\xc9\x20\x85\xd2\xe7\x55\x95\x32\xa2\xc0\xaf\x51\xea\xf4\x1a\x1d\x4e\xce\xc6\x87\x46\x84\x48\x59\xf1\xe9\x28\x7c\x3d\x48\x29\xb3\x46\x86\xc3\x28\xa3\xf5\x5e\x2a\xf4\x72\x68\xa3\xe7\x1d\x9b\x4e\x00\x16\xdb\xae\x9d\xde\x4d\x3d\x7f\xaf\x28\x0e\x24\x7a\x54\x10\x08\x0a\xd5\x3e\x89\xb7\xb9\x32\x36\xc6\x4a\x3a\x28\x46\x39\x25\xb6\xe1\x21\xdb\xa2\x8f\xcd\x54\x94\xc1\x09\xc6\xb6\x0c\xd5\xf7\xc5\xd9\x08\x16\x0b\x46\x8a\x84\xcf\x44\x02\x0e\x98\xf5\x38\xe1\xfc\x01\xdd\x64\x5a\xfa\x5e\xea\x17\x2e\x30\x71\x23\xae\xed\xf4\xee\xdf\xbf\x2f\xff\xf9\x9f\xff\xd9\x28\x20\xa7\xb3\x96\x5c\x69\xa4\x42\x25\xb3\x28\x1b\xa7\x02\x73\x5d\x21\x00\x60\x68\x3f\xfd\xac\xf8\x57\x45\x86\xca\x8c\xc2\xcc\xe7\x22\xfe\x79\xd9\x33\x2e\x58\xb0\x81\x88\x56\xd6\xae\x30\x73\xc1\x37\x5f\xca\x49\x83\x40\x08\x24\xf5\x57\x93\x60\x6b\x90\x04\x7d\xb0\x1d\x15\x59\xd9\x05\x1b\x85\xf0\x7a\xd4\xd7\x6e\xfd\xb6\x75\xba\xbe\x8f\xea\x7b\x26\x9d\xf7\x4d\x71\xb8\xe9\xbb\xca\x8d\x3b\x57\xa9\xfb\xf2\x5d\xa7\x04\xeb\xf2\xe1\x03\x3e\x4d\xf7\x3e\xea\xb1\x89\x21\x6a\xf3\xef\x5e\x77\xa1\xd0\x9b\xf2\x59\x71\x7a\xaf\x0e\x2a\x0f\x5e\xb4\xc0\x8b\xca\xcf\x89\x99\x22\xdf\x6b\xc3\xec\x7a\xaa\xa0\xc6\xc9\x8a\x78\xf8\xe8\x62\x74\xe3\xe0\x4a\xf4\xd3\xc9\xd9\xe0\x66\x16\x61\xec\x2a\x5c\x80\xc9\xb6\x67\x8e\x9f\xd8\x7f\x93\x27\x70\x05\xad\xac\x25\xc7\xf9\x28\xd7\xa1\x3f\x58\x84\xa4\x87\xc1\x9a\xc7\xd7\x69\x7b\xce\x3e\x62\x1a\x98\x37\x25\x9b\xb5\x01\xac\x36\x5e\x19\x29\x14\x4e\x06\x48\x66\xeb\xc1\xf6\xc1\x53\xf1\x0f\x0f\x9f\x0c\x5f\x4d\x56\x68\x8f\xed\xd5\x32\x2e\xa6\x88\xf4\xaf\x6f\x7b\x7f\xd3\xd1\xbe\xf8\xe2\x8b\x60\xa7\xfa\xfa\x00\xf4\x69\x99\x36\x1e\x97\x8f\xd1\xf0\x16\xa9\xe1\xf9\x69\x99\xd6\x26\xd9\x6d\xf3\x53\xf7\x9e\xb7\xd1\x3a\x96\x89\xfb\x15\x00\xb8\xae\x13\x04\x08\x52\x08\x81\xd2\x90\x95\x0f\x4c\x39\x7b\xae\x0f\x13\xb4\x6d\x32\xca\xf3\xa9\x0c\x5b\xe2\x50\x10\x56\x5b\xe0\x32\x6f\xb1\x04\x76\x87\x5e\xfa\x61\x61\x6d\x91\xe4\x79\x10\x42\xa1\x1f\x65\x14\x93\x03\x5a\x3c\x1d\xb6\x0b\x68\x4c\x9d\x58\x83\x59\x0d\xc6\x35\x50\x77\xf2\x51\xe2\x33\x56\x48\xaa\x2e\x6f\x06\xca\xb6\xe7\x03\x76\x06\x68\xb0\xc7\x7c\xf0\xce\x7b\x47\xd6\x54\xed\x2a\x21\xcd\xe3\x94\x79\xa5\xc2\xc8\x58\x28\x6b\x6b\x15\xb8\xd7\x9e\x41\xbb\xaf\x9d\x74\x6d\x07\x9d\x1b\x52\x53\x43\xf0\x76\xb6\x0c\x7d\x6b\x01\x97\x40\x69\x9c\x4b\x44\x72\x19\xca\x64\xdc\x93\xa3\x24\x94\x63\x6b\x44\x07\xfd\x7d\x6c\xf1\xca\x3f\x88\x2a\x8f\xb3\x87\x8d\xaa\x75\x38\xeb\x63\x95\x19\x42\xe5\xb6\xf8\xf8\xe5\x51\x01\x16\x0d\x66\xc5\xc1\x95\xbe\x25\x13\x04\x04\xf9\x99\x16\x5b\x6b\xf9\xa1\x53\xba\xcc\xda\x7a\xdc\xaa\x97\x67\x9f\x7d\x56\xfc\xee\xef\xfe\x2e\x7f\xe4\xfb\x70\x6d\x53\x2e\x3e\x85\xd6\xa6\x60\xbb\x28\x41\x5f\x3e\x9a\x14\x5c\x57\xff\x6d\x79\xaf\xf3\xdb\x74\xef\x8b\xa3\xa9\x01\xb4\xf9\xef\x52\xe6\x0f\x44\x77\xfe\xc5\x5f\xfc\x85\x3c\x3e\x3e\xe6\x69\x48\xd8\x7b\xba\xe8\x73\x63\xac\x2d\xdd\x89\x68\x04\xc2\x28\x5d\x11\x0f\x8f\x2f\x85\xaf\x3f\x7c\x26\xfe\xc1\xe1\x93\xd1\x4f\x16\x03\xda\xf1\x02\x11\x36\x65\x94\x3b\xfb\x9e\xeb\x90\x8a\xd2\xae\x3c\xd0\xb1\xda\x8f\x95\xa5\x1d\xa9\x6c\x4b\x06\xcc\x38\xc1\x8d\x82\xd4\x3d\x4a\xb9\xda\xc9\x8d\x1b\xac\x0c\xf6\x43\xc8\x65\x8f\x0e\x8f\x2f\x86\x2f\xef\x3c\x1b\xff\x3f\x8f\xae\x44\xaf\xa5\xb1\x38\x40\x7e\x7e\x8f\x75\x70\x20\x1a\xf6\x6d\xa1\x72\x4f\x93\xd6\x6f\xd6\xe2\x4e\xcb\xea\x3d\x0e\x33\xf3\x41\xdc\xe3\xea\xf7\xba\xf6\xfa\x38\x6c\x2a\x00\x40\x01\x22\x23\x05\x59\xec\x94\x0e\x54\x54\x32\xac\xe7\x5c\xaf\x73\xe6\x9b\x0f\x2e\x5d\x99\xf1\xa7\x6b\xeb\x70\x1f\xb5\xe2\x84\x2d\xed\xc4\x2a\xb1\x49\x45\x48\x53\xa1\xa0\x18\x70\x21\xcf\xb6\x17\x4e\xff\xa7\x9d\x35\x68\x4b\x02\x29\x67\x91\x5c\x64\x42\x25\x26\xbd\x1a\xc6\xc5\x21\x30\x35\xeb\x68\x97\xa1\xa8\x37\x02\xf8\x1e\x92\xde\x42\x72\xf0\x61\xbd\xe2\x7e\x5c\xff\xec\x99\xaa\xc6\xeb\x25\x39\x3c\xa6\x22\xdc\x75\xe9\x5b\xbc\xae\x8d\x0e\x74\x23\x68\x53\xfe\x16\xc2\x62\xbb\x41\xea\x5f\xe3\x57\x29\x25\x97\x42\x25\x93\x38\x9b\x2c\x42\x39\x96\x50\xb2\x04\x04\x9a\xce\x2b\x9c\x8b\x9e\x1d\x84\xcd\x30\x88\x57\xef\x36\xb1\x8a\xca\xc0\xf7\xd2\x31\x10\xef\x75\x5c\x26\x8a\x11\x6b\xd8\x4f\xc5\xe6\x99\x45\xb0\x19\x66\x88\xa1\x6c\x1a\x8c\x51\xa6\xc2\x41\x9e\x5d\x18\x90\x26\x9a\xba\x2e\x4c\x13\xbb\xd2\x55\xd9\xfa\xa8\x3c\xd7\x7f\x13\xc5\xd7\xc4\x2a\xf9\xee\x7d\xf9\xa8\x2b\x63\x9d\x9f\xae\x71\x37\x31\x2e\xbe\xf8\x9b\x7e\x5d\x7f\x4d\xef\xc4\x37\xbf\xf9\x4d\x3c\x7c\xf8\x10\x80\xd5\x26\xf8\x0e\xa6\x09\xec\x5d\x5e\xf9\x19\x35\x63\x19\xe0\x68\x7a\x26\x78\xff\xe0\x6a\xf4\xf2\xc1\xd3\xf1\x0f\x27\x67\x83\x9b\x59\x80\x79\x1e\xbd\x2a\x77\xba\x05\x60\xed\x2a\xab\x0c\xf4\x77\xc4\x9d\x50\x02\x8b\x42\xa2\x55\x39\x02\x34\xc6\x5f\x3a\x9e\x32\x94\xd1\x5e\x4a\xb1\x11\x55\x1d\xdf\x5d\x0c\xef\x0c\x37\xaa\x98\xad\x8d\x62\x43\x4b\x9d\x19\xc5\xb5\x81\x42\x16\x60\x3e\x5b\x13\x77\x0f\xaf\x46\x3f\xd9\xfb\x50\xfc\xa3\xf1\x66\x70\x47\x52\xe5\x8c\x1e\x3d\x45\xa4\xeb\x4e\xef\x4e\x6c\x8c\x71\xd9\x1f\xbe\xf7\xbd\xef\xe9\x55\x35\xda\x75\x69\x33\x3e\xdd\x78\x5a\xf0\xd1\xc5\xff\x69\x40\xd1\x69\x01\xc5\x69\xd2\xef\xe2\xb7\x92\xa6\xde\x12\x02\xba\x6d\x11\x84\x0c\x94\xcc\xa8\xec\x07\x14\x93\x55\x6b\x74\xef\xe2\x64\x46\x13\x10\x93\x39\x3f\x63\x60\x3b\xee\xc7\xf5\x57\x7b\xed\x01\xf8\xc8\x33\x2d\x13\xa1\x92\x65\xe0\x4f\xcd\x31\x5f\xa8\x63\x9c\x81\xa2\x4f\x48\x05\xe4\x3c\x94\xc9\x32\x50\x53\x55\x1c\x36\xcc\x9b\x01\x1f\x1b\x94\xed\xd1\x26\x9a\xbc\xf9\x46\x09\x4c\xba\x98\x43\xf8\xe2\xb0\xf2\x82\x32\x2f\xfc\xdb\xa4\xa4\xe6\x27\xbd\x74\xf7\x70\x65\xf9\x70\x16\xc9\x94\x79\x3f\xad\x7c\x37\xe9\x68\xef\x75\xd3\x72\x68\xf7\xd7\xe7\xdc\xf7\x06\xbc\x38\xc6\xb8\x6e\x18\x09\x20\x95\x84\x34\x09\xe5\x74\x1e\xca\x51\x26\xd4\x3c\xca\x97\xc9\x59\xb4\xa1\xcf\xf1\xfd\x56\x2a\x88\xda\x78\x82\x25\xf0\x1a\x89\xe6\xe1\x3d\x48\x93\xeb\x67\xc6\xa3\x51\x41\xe9\xf0\xb3\x91\xca\xd7\x66\xfa\x2a\x8c\x32\x31\x5c\x9f\x85\x4f\xc4\xa9\xe8\xa7\xb1\x31\xd0\xad\xcc\xf1\x35\x18\xe9\xba\x14\x6c\x53\xbd\xbb\x61\xb5\xab\x0b\xe3\xa3\xac\xbb\xb2\x2f\x3a\x5e\xdf\x3b\xf7\xbb\xd7\xd1\x7e\x1c\xd4\xb6\x8d\xee\xea\xde\xd5\xb9\xae\xe1\x4f\xcb\xd0\xb4\xf9\x7d\x9c\x72\xc8\xc5\x62\x81\xef\x7c\xe7\x3b\xe2\x37\x7f\xf3\x37\xe5\x93\x4f\x3e\x09\x00\xda\x90\x2f\xf5\x8d\xdc\x9c\x38\x24\x88\xa4\x12\x4a\x26\x03\x91\x1e\x5d\xa4\x64\xb1\x22\x46\x67\xf6\x96\xbb\xc3\xfd\xec\xa3\xd1\x1c\xe7\x09\x10\xc6\xf0\x4e\x33\x93\x6e\x0f\x50\xbb\x9c\x02\x66\x60\x40\xdc\x9f\xb1\x69\x21\xfb\xb9\x8e\x95\x3c\x8d\x8d\xf9\x29\x07\x14\xac\xd3\x71\xd2\x2f\x63\xb0\x1b\xa6\x14\x94\x2e\xfb\x74\x34\x3d\x13\xdc\x1e\x5d\x08\xdf\x99\x6c\x04\xdb\xcb\x15\x3a\x90\x84\x31\xd9\xfb\xb4\x18\x43\xdc\x62\x8a\x48\xb3\x58\x7c\x4a\xce\xac\x22\xfa\xee\x77\xbf\x2b\x6f\xdf\xbe\xad\xcf\xe0\xe1\x75\xec\xbb\x46\xcb\x73\x9f\xfc\x7f\x50\xd7\x95\x35\x74\xaf\x5d\x7d\xdc\x25\xee\x3a\x56\xb7\x29\x9d\x46\xe7\x4e\x89\x2b\x00\x19\x01\x99\x50\x7e\xc6\xa5\xa2\xbc\x2b\x0f\xbd\x1b\x10\x6a\x96\xa2\xce\xd0\xd6\x4d\x87\xdb\xf3\xfa\x18\x05\xee\xa7\xd2\x44\x08\x72\x19\xca\x69\x26\x0c\x28\xf1\xce\x32\x14\xd7\x8d\x60\x92\x88\x90\x09\x85\x24\x94\xc9\x32\x90\x73\x45\x90\x56\x39\x9c\xce\xad\x2d\xaf\x56\xbe\x99\xc7\xa6\x01\xb8\x1e\xb3\xf0\xa4\xac\xf8\x14\xab\x73\xa7\x0f\x05\x80\x65\x20\xc7\x47\x2b\xe9\xfd\x83\xd5\xe5\x7e\x12\x58\x40\xad\xc9\xb6\xc5\xe7\xda\x64\xad\x72\xed\x03\x2e\xbe\x8e\x4d\x78\xde\x35\xd1\x90\x15\xff\x9a\x9e\x65\x73\xfc\x12\x40\x61\xe7\x22\x47\x99\x50\x49\x98\xa9\x41\x69\xec\xa7\x15\x20\x98\xbe\xcd\x47\x69\x96\xc5\x76\x41\x79\x68\x49\x2c\x97\x83\x31\x55\x58\x11\x6a\xa6\x5c\x75\x7a\x96\x34\x68\x8b\xec\x52\x12\xfc\x9f\xa0\x94\xb2\x40\xaa\xc1\x30\x09\x2e\xf5\x32\x11\x4f\xf3\x8d\xfd\xf4\x51\xee\x95\x2d\x90\x5b\x5c\x17\xd0\xd2\xc5\xb5\x01\xce\xd3\x84\x6b\x02\x49\x5d\x15\xf6\x69\xcb\xf3\xf3\xa8\x83\xff\x4f\xba\x93\x93\x13\x99\x24\x89\x69\x23\xcc\x1e\x2c\x75\x1a\xbb\x36\xf0\x33\x4c\x41\xd1\x7e\x52\x05\xc8\x65\x1f\xa9\x0c\x83\x59\xb2\x42\xa3\xd9\x30\xdb\x5f\xdf\x4b\x3f\xba\x32\x92\x57\x82\x25\x86\xa4\x20\x34\xb5\x6e\x56\x17\x30\x79\xd6\x2b\x8f\x38\x83\x99\x67\x02\xe5\x30\x95\x88\xe1\x0f\x06\xdb\x9d\x06\xc5\xd7\x1f\xf0\x95\x47\xe5\x0a\x23\x07\xe8\xb8\x15\xe2\xcc\xf7\x16\x34\xb8\xcc\x62\x8c\x67\x6b\xc1\xfd\xf1\x66\x78\x6b\x72\x36\xd8\x5e\xac\xd2\x6e\x1a\xd1\x31\x04\x4d\xa9\x3c\xf9\x58\x2f\x7b\x76\xf7\x6a\x99\x17\xf5\x59\xd9\x21\xf7\x7b\xdf\xfb\x9e\xbc\x73\xe7\x4e\xdb\x96\xf6\x5d\x5c\xd7\x41\x86\xeb\x4e\xe3\xf7\x34\x71\xfb\xf4\xb6\xaf\x53\xe8\x32\x70\xf9\xb9\x3b\x45\x4a\x26\x81\x1c\x2b\xe8\x4e\x8e\x01\x5b\xc5\xc0\x04\x99\xcd\x2b\x58\x60\x67\xc9\xae\x83\x93\x2d\xe7\xde\x73\x0a\x82\xb7\x05\x5f\xd8\xa6\xfc\x03\x32\x09\x8a\x9d\xde\xf3\x70\x6d\x03\x9e\xd6\x81\x48\x2a\x54\x92\x84\x72\x5a\x6c\x09\x62\xed\xe5\xe2\xf6\xfb\x65\x31\x8a\xb6\x59\x5c\x93\x53\x19\x6e\xb1\x9a\x77\xca\xb6\x7f\xed\xf4\x4a\xb3\x0c\xe2\x7d\x72\x71\x95\x84\x6a\x3c\xea\x67\xfb\x93\x38\x9b\x82\x2c\x39\xd3\xfd\xbb\xbe\xff\xa0\x8e\xcb\xab\x00\xec\x9d\x73\xeb\x84\xbc\x76\xf4\x58\x13\xd6\x72\x6c\x69\x98\x35\xb7\xac\x57\x55\xa4\x42\x25\xd3\x28\x1b\xa7\x42\xcd\xfb\x66\x44\xc6\x84\x94\x18\x25\xc6\x8d\x73\xa9\x5c\xea\xc5\x91\x05\x07\x35\xca\x8c\x18\x01\x6d\x75\x98\x33\x35\x25\x8c\xf5\x7d\x54\x2d\xd4\xee\x53\xeb\xca\x44\x9d\x87\x0f\x14\x85\x83\x44\x6c\x0d\x17\xc1\xf0\xd1\x4a\x6a\xd6\xf8\xab\xf2\xe0\x45\x3d\x55\x24\xcf\x9e\x3d\x8b\x4f\x7d\xea\x53\xe2\xa7\x3f\xfd\x29\xaf\xc7\xc7\xe9\xa8\x5d\x54\xef\x2a\xd1\xb6\xa9\xa6\x26\x7f\x75\x0c\x49\xdd\x73\xf7\x5d\x1d\x4b\xe3\x63\xf4\x80\x6a\xde\xdb\x18\x25\xdf\xb5\x9b\xb7\x3a\x45\xde\xe6\xaf\x2e\xcd\xba\x7b\xed\x9a\xca\x63\x85\xbf\x7e\xfd\x3a\xe2\x38\x96\x7a\x6b\xf7\x42\xde\x53\x54\x9d\x7b\x7a\x6f\xc1\xbc\x40\x2a\x85\x34\x0b\x91\x66\x43\x31\x4f\x63\x9a\x2e\x56\xc5\xd1\xf0\x20\xdd\x59\x3d\x92\x4f\xc5\x53\xb9\x15\x2e\xd5\x80\xf2\x65\x8a\xb6\x8c\xeb\x73\x81\x94\x06\x17\xa5\x91\x7b\xa9\xc9\x8a\x36\xc0\x86\x5d\x39\xd8\x61\x03\x0b\x7d\x96\x8b\x79\x57\x8e\x80\x8d\xb2\x73\xa7\x84\x88\x6c\xf5\x57\xf4\x42\xba\x2d\x29\x22\x29\x23\x9a\x2e\x06\xb4\x3b\xd9\x08\xee\x4e\xce\x06\xdb\xb3\xf5\x60\x67\xd9\xa3\x03\x25\x68\x0a\x32\xf6\x2b\x53\xa5\x14\x37\xc0\xe5\x2c\x0b\x3f\x44\xd0\xb0\x2d\x00\xe4\xf7\xbf\xff\x7d\xbc\xf7\xde\x7b\x1c\xb4\x74\x6d\x2f\xae\xeb\xc2\x6c\x74\x89\xfb\x34\x61\xbb\xb4\xd3\x2e\x60\xc5\x6d\x9f\x4d\x72\xdb\xd4\xde\xdd\x3c\x34\xba\x8c\x20\x8f\xfb\xe9\x7e\x26\x90\x04\x19\xfa\x5a\x3d\x3b\xe4\x02\x00\x06\x93\x35\xe6\x75\x80\xaf\xbb\xca\x93\x8f\x41\xad\x70\x28\xc4\x57\xa3\x0d\x2a\xf5\xbb\xd5\x24\xb8\x7f\x8e\xb3\xcb\xf1\xb3\x5c\x06\x6a\x3a\xea\xa5\xfb\xbc\x2e\x6a\x98\x05\xab\xae\xd9\x12\x61\x7e\x6e\x14\x40\x90\x49\x28\xe7\x27\xbd\xec\x70\x19\xa8\x69\x24\x31\xb4\x62\x71\x88\x27\x17\xab\xe5\x4d\xb8\x04\x12\x50\x6c\x00\xc1\x9b\xb2\xa2\x0a\x5b\xc5\xba\x44\x56\x3f\x2e\x13\x55\x06\x72\x59\x52\x49\x2a\x9d\x46\xd9\xd1\xa8\x9f\x1e\xce\xf3\xb3\x9b\x78\xdf\x0e\x36\xe0\xea\xe2\x6a\xf5\xa4\xe7\x19\x80\xfa\x7d\x5c\x4e\x9b\x98\x15\x76\x32\x99\xe0\x67\x3f\xfb\x99\xfc\x95\x5f\xf9\x95\xca\x56\xd4\xdc\x38\x17\x80\xcc\x84\x4a\xa6\xb1\x1c\xa5\x02\x66\x4b\x47\x72\x84\x94\xff\xe6\xd7\x64\x7e\x2b\xe8\x52\x95\x82\x69\x21\x74\x68\x20\x83\x92\x95\xa1\x32\xae\x0a\x7b\x6e\x6d\xe3\x5b\xa5\x16\x4b\x61\xd2\x79\x41\xd8\x4f\xc5\xd6\xfa\x3c\xdc\x20\xb5\x08\x51\xae\xd7\x07\x60\xaf\x2a\x5a\x5d\x5d\xc5\xd3\x4f\x3f\x8d\x9f\xfe\xf4\xa7\x3e\x80\x78\x1a\x45\xea\x2a\x17\xfe\xac\x4d\x21\xd6\xb1\x25\x3e\xe5\xd6\xa4\xa4\xeb\x40\xae\x0f\x9c\xf8\xc2\x9d\x66\xe4\xd7\x94\x56\x5b\xde\x9a\x9e\x77\xa9\xe3\xc7\xb9\xaf\x6d\x8c\x3b\x3b\x3b\xf2\x95\x57\x5e\x11\x4a\x29\x59\x9c\x9c\xaa\x1b\x7c\x3e\xd7\x5d\x1e\x91\xe1\xc6\xad\xff\xcc\xe9\xbe\x00\x92\x65\x0f\x49\x16\x05\x93\xa4\x4f\x47\xb3\x33\x72\x77\x70\x94\x5d\x5e\x39\x91\x97\x7b\x13\xb9\x19\x2c\xd5\x50\x48\x15\x53\x41\x65\x80\xca\x3d\x5e\xf2\xad\x07\xec\xc5\x8f\x7c\xa4\x55\x5a\x00\x3a\x9a\xcf\x03\xeb\x15\xb1\xf3\x93\x74\x28\x0e\x54\x8c\x0e\x28\x43\x99\xfd\xf1\x04\xd2\x2c\x12\xd3\xc5\x40\xec\xcf\xce\x88\xfb\xd3\xf5\xe0\xfe\x6c\x4d\xec\x24\x2b\xe2\x40\x86\x18\xc3\x06\x28\x7a\x4a\x68\x0c\x1b\xb4\x24\xc8\xed\x5a\x78\xdd\x48\x00\x52\x4a\x29\x7f\xf2\x93\x9f\xe0\xe6\xcd\x9b\x90\xd2\x7c\x96\xae\xcc\x43\x1d\xe0\x78\x9c\xe9\x5c\x5f\xba\x6d\x61\x9b\x80\x48\x27\x79\xab\x09\x7b\xda\xc1\x6a\x53\xdc\x75\x6d\xdc\xf8\xc9\x48\xc9\xc3\xd5\x74\x3f\x09\xd4\x28\xca\x68\x48\x2c\x4c\x65\x8a\xa2\x78\x56\x3f\xa3\x59\xc8\xb0\x52\xc6\xc8\xbb\xec\xd8\xcb\xa9\x4d\x13\x1f\x1f\x00\x03\x36\xc8\x29\x7c\xaa\x02\xd0\xbb\x7a\x5e\x41\x21\x13\x6a\x7e\xdc\x4f\xef\xde\xdd\x58\xdc\xe3\x65\x62\x7b\x95\x58\xfd\x96\x06\x2b\x6e\x27\xae\x41\x8b\x1e\x8c\xcc\x42\x39\x3d\x18\x2c\x77\x9f\x0a\xe5\xd1\xca\x32\xd8\x62\x9c\x25\xef\x7e\x9c\xb1\x02\x55\x9a\xa4\x0b\x58\x14\x0b\x67\xda\x18\xeb\xe3\x4c\x34\xaa\x88\x58\xb7\x4d\x5e\x74\x4f\xdd\x6b\x97\x09\x35\x9f\xf4\xb2\xc3\x93\x5e\xfa\x68\x19\x28\xde\xd6\xc0\x06\x59\x4d\xee\x71\xf4\xbe\xf1\xd7\xb6\xe5\x7f\x5d\x03\xab\x43\xd8\x02\xc8\x4f\xc7\x7d\xe3\x8d\x37\xc4\xaf\xfc\xca\xaf\xe8\xc4\x78\xc2\x46\xf1\x22\x67\x5c\xe6\x93\x5e\x36\x4a\x42\x39\xe6\x23\x31\x65\x46\x85\xa8\x7e\x40\x76\xed\xd6\xad\x8f\x5e\x33\xd0\xc5\x01\x51\x76\x40\x16\x46\xaf\x99\x27\xcd\xf4\xf0\x77\x0c\x99\xb3\x57\xa4\x20\xe2\x54\x6c\x6c\xcc\xc2\x8b\x91\xa4\x38\x09\x14\xdf\x16\x5a\xcf\x79\x6a\xd6\x45\xd7\x05\xaf\xb7\xd3\x28\xc7\x2e\xcc\x41\x57\x14\xeb\x73\x3f\xaf\x69\x1a\x57\xe0\xda\xd8\x8b\xff\x6e\xf7\x38\x69\x7d\x90\x3c\x36\x76\x8c\xf7\xee\xdd\x93\xc8\xc1\xad\xbc\x72\xe5\x8a\xa0\xfc\x4c\x2f\x20\x07\x25\x21\x8a\xdd\x75\x39\xdb\xc2\x94\x60\x5a\xbc\x4f\x89\x28\x21\x50\x2a\x85\x4a\x17\xc3\x60\xbe\x5c\x11\x8f\x66\x43\xb1\xdb\x1f\xcb\xfb\x83\x91\xbc\xb4\x32\xca\x2e\xc5\x33\xb9\x19\x26\x6a\x28\x32\xc4\x24\x29\xac\x0e\xaa\xf8\x60\x81\x8d\xb4\xc8\x3c\xa9\xb4\xb5\xd2\xee\xab\x68\x5f\x7c\xe8\x86\xb2\x2d\xbb\x03\x0c\xed\x43\x09\xa4\x32\x40\x92\x85\x34\x4f\x56\xc4\xe1\x74\x5d\xec\xcc\xce\x04\x77\xe7\x6b\x62\x37\xe9\x8b\x23\x19\x60\xa2\x08\x53\xbd\xd2\x0a\xf6\x74\x50\xed\x89\xcf\x1c\xb4\x28\xa5\xe4\x72\xb9\x94\x37\x6e\xdc\xe0\xcb\x9e\xf9\xf7\xf8\x20\xdf\xb7\x4d\xae\x7d\x6c\x45\x27\x76\xc2\x93\x46\xd3\xf3\x9f\xd7\x54\x95\x4f\x7f\xb8\x83\xa3\xae\x75\xe6\xca\xbd\x94\x04\xf9\x68\x90\x1e\xcc\xa3\xec\x70\xb0\x14\x97\xa8\xae\x2e\x5c\x8c\x5c\x7d\x0d\x6b\xc8\xa8\x01\xb3\xe9\xcc\x9d\x08\x58\x67\xee\x8b\xb7\x1c\xc4\xb2\xce\x1e\x30\x67\x67\x29\x40\x2e\x42\x39\x7e\xb8\x96\xdc\xdc\x5b\x4b\x0e\x51\xb6\x3f\x5f\xbb\xe4\xf7\x75\xb6\x2e\xc6\xdf\x22\x92\xf3\xc3\xd5\x74\x6f\xdc\xcb\x76\xd7\x16\xe1\xb5\x20\xa3\xb8\x64\x39\x94\x01\x64\x9c\x9d\xf2\x57\x4e\xe9\xd7\xaa\x27\xd3\x5f\xb9\x23\xf3\xc2\x4f\x11\x61\xed\xac\x19\x67\x4f\xd9\x7d\x12\xa8\xf1\xa8\x97\xed\x4f\x7a\x72\xa4\xa8\xdc\x1b\x89\x1a\xce\xd4\xea\xe0\x7c\x40\xda\xdb\xb6\xea\x6c\x5c\xf8\xb5\xaf\xf1\xb9\x91\x36\x4d\x11\xf0\xb9\x7c\xcb\xd6\x05\x80\x4c\x05\xd2\x71\x9c\x9e\xcc\x43\x39\xd2\x67\x16\xf1\x1d\x3f\x15\x95\x8a\x2f\x47\x9c\xaa\x50\xa2\x0c\xdd\x32\x94\x5a\xce\x0e\x95\x07\xb3\xc1\x41\xc5\xb6\x12\xad\xce\x77\x72\xc1\x77\x05\xde\x07\x5a\x8a\x1b\x11\x4a\x1a\x6c\x4e\xc3\xa7\xe2\x54\xf4\x97\x41\x16\xaa\xbc\xec\x66\x4f\x97\x06\x4a\xf1\xb4\x20\xc4\xa7\x3c\x7c\xa3\xa8\xba\x67\xbe\x3c\xf8\xf2\xc3\xf3\xd5\x16\x57\x9b\x42\x6b\x4a\x07\x9e\x77\x4d\xe1\x7c\xfe\x7c\x79\xec\xca\x5e\xf9\xe4\xd7\xd7\xd9\xd4\x3d\x3b\x4d\x3a\x56\x1c\xf7\xee\xdd\x93\x4a\x29\x11\x04\x81\x7c\xe2\x89\x27\x0c\x78\xd1\xf6\x2e\xee\x14\x91\xb6\x71\x41\xb9\x71\x9d\xde\x03\x26\xa5\xfc\xc4\xe9\xbe\x0c\x29\x59\x0c\x83\x69\x32\x10\x07\xb3\x75\x75\xbf\x3f\x0e\xb6\xfa\xe3\x6c\xab\x3f\x91\xe7\xe3\xa9\xdc\x8c\xe6\x6a\x3d\x58\xaa\x81\x90\x08\x49\x41\x40\x15\xe0\x9a\xe7\x54\x39\x8a\x90\xd3\xd6\xbc\x83\x30\x43\x63\xed\x8f\x4d\xbf\x12\xef\x06\x00\x45\x24\x15\x41\x2a\x81\x34\x0b\x69\xbe\xec\x89\x51\x32\xa0\xa3\xc5\xaa\xd8\x9f\x0d\xc5\xce\x6c\x3d\xd8\x5d\xae\xd0\x23\x45\x34\x55\x50\x09\x11\xcd\xa9\x9c\x16\x9a\x33\x00\x63\xd9\xb2\xa0\x58\x52\xae\xa7\x86\x8a\xba\xc8\x3b\x86\xc5\x42\xbe\xfd\xf6\xdb\xf8\xc9\x4f\x7e\xd2\xa5\xa3\xef\x22\x6b\xa7\x95\x41\xd7\x35\x0d\x26\x7c\x32\xd5\x25\xaf\xa7\x7d\xde\x36\xa8\x69\x6b\xab\xbe\xb8\xeb\x9c\xd1\xfb\x0a\x48\xc7\xbd\x74\x7a\xd2\xcb\x76\xce\xcc\xc2\x8f\xe4\x7b\x7f\x68\x78\xeb\x0c\x4a\x3d\xa3\x54\xdf\xb4\xbe\x66\xd3\x01\x7b\x7a\x24\x67\x0d\xa1\x81\x87\x01\xde\x75\x53\x42\x96\x1f\xf3\x9b\xbf\x94\x84\x74\x12\xcb\xfd\xfb\xeb\x8b\xdb\x8b\x40\x25\x80\x92\x80\x65\xb3\xe9\x63\x48\x9b\xfa\x4e\xf3\x97\x92\x4a\xc6\x71\x36\x3a\x1c\x2c\xef\x9f\x9f\x44\xe3\x50\x06\x9b\xa5\x57\xbf\x65\x8a\x05\xaa\x74\x7f\x57\x30\xa3\x64\xd9\xa5\xf1\x7a\xd5\x47\x24\xa0\xf4\x83\xa2\x5e\x5d\xfb\x21\x9d\x8e\xa7\xcf\xca\xd7\xf8\x41\x4e\xe2\x6c\xff\x68\xb0\xdc\x9d\x46\xd9\x14\xe5\x80\xa1\x02\xe8\xc0\xe2\x72\x9c\x4f\x06\x7d\x6d\xd4\xeb\xa7\xcb\xaa\x22\x37\x42\x9f\x7f\xed\xc7\x37\x35\x20\x75\xc6\xb5\x52\xe6\xc6\xb9\x12\x48\x67\x91\x9c\x4e\xe2\x6c\x3f\x13\x6a\x1e\xa4\x34\xe4\x86\x40\xd6\x0a\x23\x06\x37\xed\xed\x8b\xa9\x54\xb4\x1c\x7c\x38\xae\x34\xe6\x65\xcf\x38\x42\x29\x1f\x3a\x40\xa6\x70\x8c\x72\x2c\x51\xb9\x56\xcb\x04\x21\x11\xaf\xcf\xc3\x6b\xab\xcb\x60\x30\x8d\xb3\x50\x01\x21\x08\x7a\xca\xc8\x30\x2e\x00\x64\x14\x45\xb8\x74\xe9\x12\x76\x76\x76\x1a\x3f\x90\xe7\x9a\x3f\xe3\x75\x5f\xf7\xcd\x9a\x14\xa0\xab\x70\x7c\x69\x36\x29\xfc\xae\x48\xba\x2e\x6e\x5f\x1c\x5d\xd3\x6b\xea\x14\x7c\x79\x6f\x52\xda\x4d\xfe\xea\xea\xac\x4b\xdc\x4d\xe9\xe8\x7b\x71\xff\xfe\x7d\x99\x65\x99\xf8\xdc\xe7\x3e\x27\x2f\x5c\xb8\x50\x39\x49\x9a\xf9\x95\x4c\x39\xa4\x00\xfa\xfa\x9e\x2d\xa5\xce\xa7\x4b\xa0\xfa\x08\x28\x49\x56\x69\x9a\x0c\xc4\xa3\xf1\x66\x70\x37\x9e\xc9\xf5\xfe\x58\x9e\xef\x8f\xb3\xf3\xbd\x89\xda\x8a\xe6\x72\x3d\x5c\xa2\x1f\xa4\xaa\x2f\x32\x15\x93\x44\x08\x05\x51\xb4\x2a\x01\x33\x65\x64\x80\x07\x8c\x41\x6f\xfe\x04\xc6\x20\xbe\xb0\x17\x2b\x0c\x12\xa0\x08\xb2\x38\x53\x48\x2a\x22\x29\x03\x24\x59\x44\xf3\x2c\x12\xd3\x65\x8f\x46\xc9\x80\x8e\xe6\xab\x62\x77\xbe\x16\xec\x2e\x06\xe2\x28\x8b\x68\x02\x2a\xc1\x08\x81\x38\x9b\xa2\x41\x8b\x0b\x58\x0c\x70\x23\xa2\xd4\x35\xfc\x9f\xcd\x66\xf2\xd6\xad\x5b\xf8\xcf\xff\xfc\x4f\x5f\xdb\xa8\x63\x14\x7c\xee\x34\x32\xe8\x7b\x27\x9c\xdf\xa6\xb0\x5d\x74\x6e\x53\x5a\x6d\xf1\xba\xd7\x6d\xed\xc1\xf7\xbc\x11\x98\xb1\x4e\x5c\x02\xe0\xe0\x3b\x9d\x85\x72\xba\x3f\x5c\x6e\x5f\x98\x44\xa3\x70\x11\xf4\x73\xd6\x85\x6d\x28\x0a\xc0\x35\xc8\x28\x75\x6e\x95\x37\xe1\xba\xb9\xec\x1e\x8a\x4e\x92\x34\xfc\xe0\xc7\x10\xd4\x94\xcc\xa3\xef\xf5\x00\x38\x0d\xd4\xfc\x78\x25\xdd\xd9\x5b\x5b\x3e\x04\x21\x55\x0a\x29\xd9\xed\xd1\x2a\x6f\x43\xdd\x69\xb0\x63\x58\x41\x22\x4a\xe7\x91\x1c\xef\xac\x25\x77\x9f\x3c\xee\xef\xf6\x96\x62\x43\x40\xef\x7d\xc2\x06\xe0\x06\x60\xe8\x81\xb5\x7d\x1a\xbc\xb6\x59\x33\xc5\x2e\x6a\x93\x98\x3f\xd3\x46\x2d\x3f\xf0\x9a\x66\xb8\xcf\xcb\x7c\x10\x16\x61\x36\x3e\x5c\x5d\xde\x3d\x18\x2c\x1f\x2c\x42\xa9\xa7\x69\xf9\x74\x91\x99\x36\xd2\xbf\x47\x47\x47\xf2\xe4\xe4\x04\x38\x3d\x3b\x78\x6a\xc6\xa5\x49\x48\xdb\x3a\x5b\x09\x87\x65\xe0\xa0\x85\x85\x4d\x41\x48\x33\x81\x64\xdc\xcb\x0e\x53\xa1\xe6\x31\x69\x03\x25\x9f\xfd\x8a\x62\xc2\xc5\xde\x57\x8c\xfe\x18\x6a\x66\x4a\xd5\xa2\x04\x9d\xe7\x1c\xa9\x1b\xe3\x45\xc7\x59\x73\xff\x28\x1b\x8a\x8e\x4f\x10\xc2\xc1\x32\xb8\x7c\x76\x1a\x6e\x3e\x5a\x59\xee\x26\x81\xd9\x3d\x31\x2c\x0c\x75\x4d\x7d\xac\xaf\xaf\x8b\x2f\x7e\xf1\x8b\xf2\xaf\xfe\xea\xaf\x78\x7d\x76\x61\x46\xdc\x8e\xd3\xf5\x7f\x9a\x11\x21\x60\xa7\xdb\x94\x8f\xba\x78\x5c\x57\x97\xcf\x36\xa5\x5d\x07\xb0\x9a\x9e\xbb\xf1\x35\xb1\x4d\x75\x1d\x55\x9d\x12\xf6\x01\xf0\xb6\x32\x77\x01\x8b\xbe\xbc\x8b\x87\x0f\x1f\xca\x7f\xff\xf7\x7f\x17\xbf\xf5\x5b\xbf\x25\x89\x08\x1b\x1b\x1b\x40\xae\x10\xcd\x77\x75\xe6\xcb\x2d\xf6\x45\xef\x57\x42\x44\x49\xc1\x4e\xf4\x01\xf4\x95\x52\x31\x80\xbe\x8c\x68\x3a\x8f\x82\xe3\xf9\x9a\x78\x28\xd2\x70\xa5\x37\x95\x1b\xbd\xa9\xdc\x88\x67\x6a\x23\x9a\xc9\x8d\x78\x2e\xd7\xc3\x44\x0d\x45\x8a\x58\x48\x15\xe7\x53\x4a\x08\x49\x42\x90\xe2\xbb\x9d\x12\xcb\xbf\x06\x58\x79\xdb\x53\x44\x12\x04\x29\x05\x52\x19\x50\xaa\x02\x9a\x67\x21\x25\x69\x4c\x39\x58\xe9\xd3\x51\x32\x10\x47\x8b\x81\x38\x4a\x56\x68\x94\x45\x62\xaa\x48\x2d\x0a\xa6\xc8\x05\x24\x06\xa8\x14\xe5\xe1\xef\x38\xc3\x64\x6d\x2c\xa7\x99\xdc\x24\x49\xe4\xbb\xef\xbe\x8b\x1f\xfe\xf0\x87\x9e\xea\x37\xf5\xee\x7e\xbb\x3a\x19\x6d\x92\x2b\xd7\x2f\x77\x6d\xe0\xd7\x97\x8f\x3a\x79\x75\xf3\x71\x9a\xfc\xd5\xc5\xcf\xe3\x69\xeb\x4c\x9a\x64\xda\xaa\x3b\xbe\x18\x83\xb1\xec\x29\x00\xb9\x0c\x54\x72\xf7\xcc\xe2\xbd\x27\x8f\xe3\xfb\xfd\xa5\xd8\x20\x49\xfd\x52\xfb\x92\x99\xd1\xa8\xd8\x63\x58\x73\x38\x9c\x59\x67\x9c\x9e\x51\xcd\x8c\x3d\xe0\x46\x2d\x2c\x1e\xd7\x04\x80\xeb\x7b\xb3\x47\x0c\x00\x45\x90\xf3\x30\x1b\x1d\x0c\x96\xdb\x93\x38\x1d\xa3\x04\xc9\x29\xef\xcb\x18\xf3\xa2\xdb\xa8\xa5\x5f\x58\xdf\xc7\xc3\xa5\x00\xd2\x45\x28\xa7\x3b\x6b\xc9\xbd\xdd\x61\xf2\xce\x70\x11\x5c\xee\xa5\xb4\x5e\xe6\xba\xcc\x37\x31\xb4\xa1\x89\x4e\xdb\x38\xc8\xae\x27\x3b\x3f\xec\x64\x76\x38\x41\x14\xca\x01\x89\x63\x3b\xe3\xe6\x43\x42\xc9\x93\x5e\xb6\xf3\x60\x2d\xb9\x7d\xb4\x92\xee\x67\xa4\x12\x02\x55\x6c\xca\x5c\x06\xea\xd5\x57\x5f\xc5\xbb\xef\xbe\xeb\xb6\x31\xed\x7c\xed\xa1\x0e\x7f\x48\xc0\xcf\xb8\xf8\x5c\x1d\x40\x69\x54\xcc\x6c\xe4\xe8\x66\xcc\x08\xb2\x52\x4a\x16\x86\x4f\x47\x49\x20\xc7\x2b\xcb\xe0\x3c\xe0\x56\x9c\x36\x26\xac\x56\xba\xfe\x82\x15\x22\xca\xbc\x2a\x0f\x67\xb3\xc2\x9a\x8f\xe4\xf2\x86\x64\x0b\x40\x25\x2e\xff\x7e\x2e\xc5\x23\x11\xa7\xe2\xfc\x85\x93\xe8\xc9\xed\x8d\xf9\x6d\x6d\xe7\xa2\x05\xd9\x65\x5d\x58\x7d\xa0\xe6\xda\xe7\xcf\xe7\xbf\x0b\xb0\xec\x12\x4f\x53\x67\xeb\xa6\xe7\x3a\x1f\xdb\xd0\x65\x84\x59\x97\x87\xba\x3c\xba\xf1\x37\xd5\x9f\xef\xb7\xc9\x6f\x5d\x9e\x9a\xd2\xf4\x3d\xef\x52\x8f\x95\x8e\xe0\xf0\xf0\x50\xfe\xed\xdf\xfe\xad\x08\xc3\x10\x5f\xfd\xea\x57\x65\xaf\xd7\xd3\xfe\x53\xbe\x32\x41\xff\x31\x05\x9a\x10\x51\x5f\xef\xc0\x5b\x80\x16\x0e\x60\xe6\xc8\x4f\xb4\xed\x83\x28\x94\x11\xa6\xb3\x33\xc1\xc9\xec\x4c\xf0\x00\x4a\x45\xc1\x12\x83\x68\x2e\x07\xf1\x4c\x0d\xa3\x85\x1c\x06\x09\x06\xe1\x52\x0e\xc2\xa5\x1a\x04\x4b\xc4\x94\x1b\xf6\x16\x20\x46\x69\x56\x46\x2a\x40\x2a\x41\x52\x11\x52\x45\x90\x2a\x40\x9a\x85\x94\x64\x21\x4d\xb3\x1e\x4d\x97\x31\x4d\xd3\x58\x8c\x93\x01\x8d\x93\x3e\x8d\xb3\x88\xe6\x0a\x58\xf0\xa9\x2e\x02\xf1\xc3\x0f\x0d\x48\x29\xa6\x7e\xe6\xce\x6f\xc2\xca\xcb\x6d\x7c\xc0\xea\x44\xa6\x69\x2a\x6f\xde\xbc\xa9\x99\x96\x36\x57\x07\x12\x7c\xae\x0d\x14\x00\xcd\x71\x74\x01\xfb\x4d\xe1\xbd\x72\x53\x13\xb6\x6b\xd9\xeb\xf2\x56\xcb\xa8\xf8\xf2\xb2\x58\x2c\x20\xa5\x94\x42\x08\xa3\xfb\xcd\xd2\x7d\xb3\x84\x3f\xff\x76\x7b\xc3\x64\x7f\x77\xb8\x7c\xe7\xcc\x2c\xba\x12\x26\xaa\x6f\xf8\x16\x0e\x56\x2a\xba\x97\xe9\x60\xce\x24\x18\x26\xc2\x66\xd3\x4d\x70\x77\x04\xca\x28\x1a\xcb\xdc\x80\xf7\xdb\x05\x30\x02\xe5\x46\xb9\xa3\x7e\xb6\xf3\x70\x2d\xd9\xce\x44\xc9\x68\xba\x1d\xb5\xae\x17\xd7\x30\xb5\x68\xb7\xae\xed\x87\x01\x2d\x00\x12\x09\x95\x8c\x7b\xd9\xd1\xbb\xe7\x66\x37\x2e\x4c\xa2\x8f\xc4\x93\x28\xdf\xce\x40\xaf\xe6\xe3\xe5\x47\x15\x74\xb9\x65\xd0\xe5\x2c\x4f\x87\xf6\xa0\x41\xe6\xdf\xd8\xb9\x58\xd3\x68\xf6\xb4\x93\x5e\xb5\x95\x04\x6a\xbc\x37\x5c\xde\x7e\xb8\x96\xdc\x9b\xc6\x72\xec\x0c\x1e\x0c\xa0\x63\x26\x21\x4d\x26\x12\xbc\x3e\xea\xfc\x78\x7f\xdb\x80\x8b\x6f\xd4\xec\x76\x5e\x4d\x0d\x89\x2b\x04\xbe\xa4\x33\x65\xcf\xd2\x54\xa8\xf4\xd1\x20\x3d\x58\x84\xea\xc8\x01\xd6\xb9\x63\x07\x66\x91\xbb\xee\x4d\xa3\x67\x1e\xce\xfe\x3e\xf5\xf4\x20\x69\x44\x5e\x06\x60\x48\xbb\x32\x7b\x94\xc7\xe5\x31\x64\xa2\xd2\x47\xa0\xd0\x3f\x3f\x8d\x9f\x89\x25\xfd\xd7\x0c\x30\x76\x2e\xaa\x3c\xe2\xdb\x6f\x1c\xec\x77\x5d\x94\x19\x3c\xef\xbb\x28\xad\x0f\x12\xd7\x07\x79\xf6\x38\x79\xf8\xa0\xfe\x7e\x9e\xee\x34\x20\xa7\x4b\x3c\x95\x70\x69\x9a\xe2\x2f\xff\xf2\x2f\xf1\xc7\x7f\xfc\xc7\x22\x0c\x43\x59\xd8\xba\x00\xf6\x7e\x40\xbc\x4d\x85\xc8\x47\x72\x31\x80\x98\x75\xee\x31\x38\x68\xc9\xed\x43\xe2\xe2\x2f\x04\x10\x83\x28\xcc\x62\x9c\x64\x71\x10\xce\xd7\x11\x02\x88\xa0\x54\x7e\x9a\x6f\xa6\xc2\x60\xa9\xe2\x20\x45\x0c\x09\x21\x24\x42\x92\x4a\x90\x2c\xda\x36\x41\xca\x80\x4a\xd0\x12\x50\x9a\x45\x94\x64\x21\x12\x08\x4a\x8a\xf2\x2c\xc1\x14\x1b\xd9\x07\x4b\xf2\xe9\xad\x39\x0a\xc6\xa8\xe1\x97\x8f\xec\xf4\x09\xdb\x56\xc7\x01\x40\xbe\xfa\xea\xab\xee\x8a\xbd\xb6\xef\x71\xda\x6f\xe5\xea\xc3\xae\x20\xc6\xf7\xbc\xcb\x20\xa6\x4b\x5e\x9b\x94\x7f\x5b\x1e\x9a\xee\x3b\x81\xa3\x6f\x7e\xf3\x9b\xf2\xf7\x7e\xef\xf7\xc4\x13\x4f\x3c\xa1\xeb\xc3\x00\x6d\x6d\x7b\xa4\xbf\xdd\x3c\x92\xd3\xbb\x1b\x8b\x77\x2e\x9e\xc4\x1f\xeb\xa7\xf1\x7a\x28\xd1\x07\xaa\x7a\xda\xd8\x9d\x30\x95\xef\xdd\xbe\xc2\xa2\x66\x6a\xe2\x70\x1e\x54\xec\x1a\x9d\x28\x88\x00\x09\xc8\x49\x9c\x1d\xee\xac\x2f\x6e\x3e\x5c\x4f\x1e\x28\xaa\x9e\x2e\xae\xeb\xa0\x66\xaa\x88\x1f\xb4\xc8\xe5\x94\xcb\x70\x4a\x44\xc9\x32\x50\xd3\xbb\x1b\xf3\xf7\xdf\x3f\xee\xbd\xba\x3e\x0f\x2f\xc7\x16\xeb\x52\xcd\x9b\x42\xd9\xd7\xb9\x65\x28\x8b\x69\xbf\xf0\x0e\xfc\xf9\xbd\xd5\x67\x92\xf5\xac\xa8\x0f\x1c\xaf\xa4\xf7\xef\x9e\x99\xbf\x33\xea\xa7\xfb\xaa\x9c\xda\x35\xe7\x80\x39\xc0\xcd\x67\xac\x7b\x5a\xdd\xee\xfd\xad\x03\x2e\x6d\x53\x41\xbe\x0c\x58\x82\x3d\x99\x4c\xf0\x67\x7f\xf6\x67\xf2\x4f\xfe\xe4\x4f\x04\x50\xda\xb8\xe8\x78\x39\xcd\x9d\x09\x95\x9c\xf4\xd2\xd1\x34\xce\x0e\x15\xa9\x94\x14\x42\x6b\x2a\x88\x0b\x15\x03\x0e\xae\x41\x15\x1c\xff\xdc\x29\xf3\xdf\x15\xfa\x6a\x80\x36\x58\xe1\x02\x2b\xeb\x8c\x23\x85\x70\x6d\x11\x3c\x33\x9c\x87\xeb\xe3\x58\xee\xa7\x81\x0a\x15\xdb\xf2\x1f\x36\xa0\x03\xfc\xc0\xaf\x49\xf9\xb9\x54\x2f\x1c\x7f\x4d\xd3\x43\x75\xcf\x9a\xf2\xd0\x04\x9c\x7c\x53\x29\x5d\xf2\xe2\xe6\xb9\x2e\x4f\x5d\xfc\xf9\xf2\x5a\x57\x8e\xa6\xbc\xd5\xd5\x7f\x5d\xbe\x9b\xfc\xfb\xbe\x91\x9b\x07\x5f\x59\xad\x38\xfe\xfc\xcf\xff\x1c\x7f\xf8\x87\x7f\x88\xb5\xb5\x35\xce\x5e\xf2\xb0\x5a\x09\xea\x15\x6c\xda\xde\x23\x01\x03\x27\x4a\xa9\xb8\x00\x31\x21\x4a\xe0\x12\x17\xd3\x48\x82\x88\xc2\x62\x3a\xb3\x88\x87\x84\x22\x25\xb2\x90\xc2\x2c\x2c\x0f\x84\x73\xca\xc3\x9d\x03\x1e\x6c\x2a\xdc\xf9\x93\xb0\xa7\x7a\xb8\xe2\x4b\x9c\x3f\x6e\x78\xac\x47\x74\x5a\x6f\x54\xd2\xfd\xb7\x7f\xfb\x37\x79\xeb\xd6\x2d\x9f\x21\x60\x93\x3b\x2d\x0b\xd2\xb5\x7d\xb9\xcf\xdb\x18\x0c\xed\x47\x3f\xeb\xaa\x17\x7c\xb2\xe3\x8b\xbb\x29\x8d\xa6\xbc\x3e\xee\xc0\xc9\xed\xa8\xcd\x37\x55\xc0\xfc\xc1\xda\xe2\xde\xfb\x1b\xf1\x8d\x41\x12\x6c\xae\xcf\x83\xcb\x42\x91\x30\xb3\x22\x9a\x09\x80\x4d\x12\x98\xce\x98\x4f\x95\x30\xe7\x33\x15\xb0\x00\x4b\x8d\x1f\x37\x12\x0d\x8e\x92\x48\x8e\x77\xd6\x93\x77\xde\x3b\x37\x7f\x63\x16\x4a\xbd\xf4\x9e\x1b\x82\x7b\x0d\x51\xef\xde\xbd\x8b\x7f\xfe\xe7\x7f\xc6\x60\x30\x90\x7f\xf4\x47\x7f\x54\x37\xdb\xe0\xca\xfa\x7c\x19\xa8\xf1\x8d\x4b\x93\xd7\xce\x4d\xa2\x6b\x97\x4f\xe2\xe7\xc3\x0c\x7d\x5f\x79\xeb\x56\xb6\x96\x33\x00\xbe\x81\xb5\x27\x1c\xbf\x56\xd5\xe7\x6e\x05\x9d\xf4\xd3\xfb\xef\x9d\x9b\xbd\x7c\x77\x63\xf1\xde\x2c\x92\x23\xd8\x07\x98\xf2\x36\x5b\x56\xa7\x52\xf8\xd6\xb7\xbe\x25\xef\xdc\xb9\x03\x9c\xae\xad\x35\xfa\xed\x6a\x9c\xdb\xe6\xbc\x53\x13\x52\x4a\x51\x28\x1a\x41\x55\xaa\xcc\x28\x36\x05\xa4\x49\x98\x9f\x7b\x90\x0a\x35\x8f\x33\x1a\x02\xb0\xe7\x36\x99\x73\x11\x28\x50\x22\x4f\x7e\x72\x34\xf7\x41\x95\x10\xb6\x17\x6e\x65\xed\xdb\x12\xbd\x3c\xec\x9b\x3f\x2c\xfd\x31\x22\x48\xac\x2c\xc5\xe5\xad\x49\x74\xe9\x60\x75\x79\x3f\x15\xbc\x43\x80\xde\xa3\x03\x44\x84\x7e\xbf\x8f\xaf\x1c\x54\x60\xd3\x00\x00\x20\x00\x49\x44\x41\x54\x7e\xf5\xab\xf8\xeb\xbf\xfe\x6b\x5d\x27\xbc\x7e\xb4\xab\x1b\xe5\xd4\x7d\x9b\x2e\x0a\xac\x4b\x9c\x6d\xe9\xf8\xe2\xee\x82\xae\x9b\xe2\x6b\x8a\xab\x29\x8e\x3a\x74\x5e\xf7\xcc\xbd\xef\x4a\xb3\xd7\xf9\x69\xcb\xcf\x69\xc3\x03\x39\xb8\xc7\x37\xbf\xf9\x4d\x21\x84\x90\x9f\xff\xfc\xe7\x71\xf5\xea\x55\xf3\x92\xed\xf9\x62\xda\x5e\x00\x38\x40\xc7\xbf\xd1\xc1\x6b\x39\x4b\x01\x88\x02\x9c\xc4\x0c\x98\x68\xe0\x22\x18\x98\xe1\x32\x5a\x18\x94\xe7\x9b\x27\x16\xcf\xb5\xb3\x80\x0b\x5f\xa5\xa0\xf3\xe0\xfc\xb9\x27\x60\xfb\xfe\x5c\x9b\x95\xc4\x0d\x53\xd3\x49\x58\x75\xfc\xed\x6f\x7f\x5b\x6e\x6f\x6f\x43\xd9\x67\xc4\x74\x71\x6d\xdf\xfa\xe7\xdd\x16\xbb\xe6\xa7\x49\x96\x4f\x9b\x46\xdd\x20\xa0\x4b\xd8\xd3\xfa\x77\xc3\xf2\xbf\x9c\x59\x23\xf4\x67\xb1\x1c\xdf\xd9\x9c\xdd\x5c\x9b\x07\x5b\x51\xd6\x1f\x0c\x96\xc1\x66\xae\x7a\x73\x45\x6a\x80\x07\x67\x01\xd8\x85\x6f\x70\xe9\x63\xc8\xb9\x6d\x63\xc5\x4f\x4d\x24\x04\x42\x4a\x2a\x3d\x1c\xa4\x77\xdf\xdf\x58\xbc\x79\xb0\xb2\xdc\x07\x54\x02\xd8\x2c\x20\x6c\x39\xd6\xe5\x45\xb1\x2a\x50\x4a\x29\x7d\x83\x4b\xde\x66\xb5\xfc\xcf\x41\xe8\x4b\x60\x7e\x38\x58\xee\x5f\x7f\x62\xfc\xa3\x48\xae\x0d\x2e\x8c\xe3\x8f\x86\x12\x31\xd5\x94\xd7\x2d\x03\x79\x9e\xd9\xae\xec\xf0\x2a\x75\xe5\xd4\x8f\x3b\x3d\x35\x8d\xb2\xa3\x3b\x67\xe7\xaf\xbe\x73\x7e\x76\x73\xdc\xcb\x8e\xe0\x37\x92\xf7\x4d\x9d\xe9\x7d\x93\xba\xe8\x73\x8e\x3b\xea\xda\x9d\x04\x6c\xc6\xc5\x0d\x50\x37\x12\x68\x4a\xb8\x02\x7a\x1c\x7a\xca\xb5\x38\x37\x3b\xe8\x4a\x52\xc9\xa8\x9f\xed\x73\xe0\x02\x00\x0e\xa3\xc7\x98\x13\xfd\xda\xae\xf1\x92\xa9\xe1\xc6\xbb\xfe\x78\xdc\xe9\xa4\x92\xe1\x29\x5f\x94\xc8\xdd\x23\x0d\x2e\xf5\x56\x78\x8e\x32\xda\x38\x3f\x8e\xae\x46\xe7\xe8\xcd\x59\x04\xce\xb8\x80\xdb\xb9\x08\x21\xb0\xba\xba\xda\x04\x12\x7d\x4c\x82\xeb\xea\x90\x6a\x1d\x23\xe3\x0b\xe3\x4b\xd7\x17\x8e\xc7\xcf\xe3\xe1\xfe\xba\xb0\x36\x75\x6c\x43\x1b\x0b\xe1\xcb\x87\x97\xad\xf0\xbc\x6b\x03\xe2\x75\x61\xf4\x75\xd3\xbb\xba\x6b\x5f\x1a\xbe\xfc\xd4\x32\x33\xb3\xd9\x4c\x02\x10\xff\xf1\x1f\xff\x81\x4f\x7f\xfa\xd3\xf2\x43\x1f\xfa\x90\x9e\x33\xe7\x7e\xcd\x00\x01\x76\xa7\xaf\xa7\x90\x92\xe2\x3a\x54\xca\xd8\x5d\x59\x2c\x0b\xbb\xd6\xf1\x85\x4c\x56\xf5\x5c\xbd\x70\xc0\x0a\xcf\xb3\xb5\x3b\x36\x63\x46\x4c\x7e\xdc\xd5\x14\x70\xc0\x49\x0d\xb3\x62\x96\x37\xb3\xf8\x0d\x40\x21\x22\x7c\xfb\xdb\xdf\x96\x77\xef\xde\x75\xcf\x1d\xe2\x75\xde\xe5\xbb\x37\xf9\xe5\xba\xf1\x71\x06\x74\x68\x08\xd3\x85\xad\x69\x0b\xd7\x55\x3f\xb7\xa5\xf1\xb8\xe5\xf4\xa5\xe7\x02\x58\xcd\x9e\xe5\xb6\x4a\x84\xf9\xfe\xea\xf2\xe1\xed\x73\xf3\x1b\x83\xa5\xd8\x78\x62\xd4\xeb\xc7\xa9\x18\x54\xa6\xe2\xf9\xe0\x92\x3d\x77\x77\xb7\x75\xf5\x79\xc9\xda\xd8\x8a\xdf\x5a\x06\x8c\xb2\x7f\xe0\x71\x4b\x52\xf2\xa4\x9f\xee\xbc\xbf\xb1\x78\xf3\xfe\xfa\xe2\x4e\x12\xaa\x31\xf2\x55\x6d\x2e\xb3\x50\x01\xd2\xdb\xdb\xdb\x52\x1b\x84\x2f\x16\x0b\x7c\xfd\xeb\x5f\x97\x5f\xfe\xf2\x97\xf9\xc0\x5d\xb7\x0f\xde\x2e\x35\x78\x09\x25\x10\x6f\x9f\x9d\xdf\xe9\xa7\xe2\x27\x42\x51\x7c\x6e\x12\x5d\x0b\x25\xc5\xc6\x9a\xc1\x19\x53\xfb\xea\x44\x31\xbf\x66\x26\xc2\x41\x81\x56\xd9\x89\xc7\xc1\xce\x01\x2c\xa8\x98\x24\x50\xf3\x7b\x67\x16\x37\xde\xda\x9a\xbe\x7a\xbc\x92\x3e\x94\x84\x31\xc8\x5a\xe1\x67\x80\x8b\xb3\x9f\x4b\x9b\xfc\xf8\x64\xac\xad\x1f\xab\x65\x5c\x7c\x91\xb6\x81\x98\xce\x1d\x04\x95\xcb\xc7\xf8\x9c\x58\x2a\x09\xe9\xe1\x20\xdd\x4b\x02\x39\x1a\x2c\xc5\x79\x13\xc0\xb5\x57\x71\xae\x6c\xa6\x04\x16\x1a\x2f\x11\xba\xc3\x96\xb0\x0f\xab\x6f\x6c\x23\x22\x17\x99\x7a\xf9\x16\x70\x7e\x87\xd3\x78\x42\x51\x7f\x63\x16\x5d\x5b\x59\x8a\xe1\xb8\x97\xc5\x52\xb0\xd1\x6c\xae\xa4\xeb\xe8\xec\x2e\x23\x7f\x5f\xe7\xd8\x04\x14\x9a\xa8\xed\xa6\x6f\x55\x17\xa6\x4d\xd0\x9a\xf2\xdc\x86\xac\xdb\xca\xee\x4b\xb7\x2e\xbd\xba\xf8\x9a\x1a\x4b\x5b\x1e\xba\xf8\x6b\xca\xf7\xe3\xa4\x03\x00\x72\x34\x1a\xe1\xbf\xfe\xeb\xbf\xc4\xcd\x9b\x37\xe5\xd5\xab\x57\xf1\xf1\x8f\x7f\xdc\x7a\xcf\x40\x86\xae\xdb\x14\x39\x40\xd1\x20\x44\xdb\x59\x59\xe0\xa5\xf0\xeb\xfe\xea\x6b\xe8\x7b\x62\x1b\x69\x39\xd7\xf6\x36\xe6\xc5\x37\x25\xb6\x92\x44\xff\x7a\x40\x89\x05\x6c\x78\x18\xcf\xb5\xb5\xe4\x54\x29\x25\xbf\xf5\xad\x6f\x01\x00\xee\xdf\xbf\x8f\x34\x4d\xeb\x80\x71\xd3\x33\x5f\x5d\x6b\xbf\x75\xef\xba\xca\x65\x53\xdc\x5d\xda\x5c\x1d\xb8\xad\x93\xfb\xc7\x01\x3f\x6d\xe9\xd7\xc5\xe1\x8d\xf7\xc7\x3f\xfe\x31\x3e\xfb\xd9\xcf\xca\x4b\x97\x2e\xb9\x2c\xa0\x40\xde\xb9\x85\x54\xae\x0e\x8b\x93\x40\x8d\x1e\xac\x2f\xee\xac\x2e\xc4\x46\x2f\x15\xc3\xf3\x93\xe8\x5a\x24\x85\x39\xaf\xc7\x1d\xf5\x93\x8f\x09\x2f\x18\x1a\x72\xe8\x79\xab\x73\xa7\x72\x50\xd9\xc6\xe0\x48\x52\xf2\xa4\x97\xed\xde\x39\x3b\xbf\x7e\xe7\xec\xec\xcd\x93\x7e\xba\xcf\x3a\x69\xce\x2e\x70\xf9\x36\x6e\x3e\x9f\x63\x34\x1a\x49\x00\x42\x4a\x29\xf7\xf6\xf6\x34\x68\xe1\xdf\x2f\x2d\xda\x25\x67\x19\xa7\xc8\xdb\xdc\x74\x11\xaa\xa3\xdb\x9b\xf3\x77\xa3\x4c\x0c\x9e\xc5\x8a\x38\x37\x8d\xae\x44\x99\xe8\x9b\x4c\x73\xbb\x16\x5f\x99\xd9\x2f\xaf\x33\x5e\x45\x75\xec\x15\xdf\x0f\x0d\xa4\xb0\x08\xd5\x78\x67\x7d\x71\xf3\x8d\x8b\xd3\x97\xf7\x86\xc9\x83\xa5\x50\x63\x90\xd9\x4b\xa9\x02\x5a\x5c\xc0\xf2\xc3\x1f\xfe\x50\xee\xed\xed\xa1\xc6\xb5\x0d\x18\xe0\x79\x2e\x01\x20\x60\x0f\xdc\x9e\xd4\xbd\x17\x28\xab\x4c\xb2\x7b\xed\xd7\xb5\x91\x05\x11\xd1\x27\x3f\xf9\x49\x10\xe9\xe5\x3a\xd0\x69\x8a\xe2\x37\x00\x10\x15\x7f\x31\x40\xbd\xa7\x1f\xf5\x9f\x1d\x2c\x83\x2d\x02\x84\xb5\x03\xa2\x05\xc3\x19\x7c\xe1\x31\x3b\x68\xd3\xf5\x5f\x2e\x81\x66\xe1\x08\xc8\x8d\x7f\x35\x44\xc9\xfd\x6b\xc4\x69\x6c\x60\x9c\x25\xd2\x7a\x73\x23\x17\xed\x16\xfe\x85\x02\x16\x07\xab\xcb\xb7\x4e\xfa\xd9\x7e\x1a\xa8\x05\x4a\x23\xc5\x0c\xb9\x12\x56\xc5\x47\x56\xc3\xe1\x10\xf7\xef\xdf\x27\xc9\xf6\x22\x77\xea\x5d\x3f\x77\xeb\x9b\x7f\x03\xf7\xbd\xfb\xcc\xfd\x5e\xae\x3f\xee\x7c\xcf\xf9\x33\x37\xdd\x2e\x61\xdc\x7c\xd4\xa5\xcd\x9d\x2f\x9d\xb6\x77\x6d\x61\xba\x28\xf2\xa6\x38\x3e\x88\xf3\xc5\xdb\x39\xad\xf9\x7c\xae\x8e\x8f\x8f\xd5\xc9\xc9\x09\x01\x50\x5b\x5b\x5b\x5a\xd2\x75\x78\xc9\xee\x15\x4a\x10\xa1\x65\x2e\x2b\x94\x65\x06\x60\x59\x5c\x2f\x51\xae\x92\xe0\xab\x26\x16\x6c\x25\x4f\x42\xc5\x88\x93\x88\x16\xb0\xf7\x57\x59\x00\x98\x11\xd1\x82\x88\x66\x00\x66\x00\xb4\x9f\x59\xf1\xbb\x60\xcf\xf9\x2a\xa1\x45\x91\xde\x92\xfd\x72\x26\x26\x53\x4a\x65\x00\x4c\x5b\x39\x39\x39\x91\x3f\xfa\xd1\x8f\xd4\x9d\x3b\x77\x70\xeb\xd6\x2d\x79\x7c\x7c\xac\xa4\x94\x6e\x5b\x20\xcf\x75\x93\xfc\xba\x32\xe9\xfa\xff\x79\xc8\x42\x9d\xdc\x37\xc5\xed\xe6\xa1\x4b\x7b\xf5\x95\x9d\xa7\xcf\xf3\x83\x0e\x7e\xeb\xea\xa9\x22\xb7\x93\xc9\x44\x5d\xbd\x7a\x95\xce\x9e\x3d\x5b\xe0\x0c\xd3\x0d\x08\xa5\x14\x11\x91\xd6\xfd\xb9\xfe\x27\x04\x69\x7e\x42\xf2\x12\x00\x7a\xa9\x58\xe9\xa7\x62\x90\x6f\x42\x9a\x27\xcd\xb7\xaa\xe0\xbd\xac\xd5\x49\x6b\x66\x05\x54\x65\x1d\xc0\x19\x16\x7b\x3b\x0b\x00\xe5\x14\xbf\x02\x14\x29\x8c\x7b\xd9\xc1\x9d\xcd\xf9\xf5\x77\x2e\xcc\x5e\xdb\x5b\x5b\xbe\xbf\x0c\x30\x02\xe1\x04\xf9\x26\x88\xb3\x42\xc6\xb5\xdc\x6a\x7d\x9e\x29\xa5\xe4\xdd\xbb\x77\xe5\xeb\xaf\xbf\x8e\xf1\x78\x6c\xf5\x87\xe3\xf1\x18\x97\x2f\x5f\x56\x41\x10\x98\x7a\x2f\x58\x78\x62\x83\x00\xd2\x75\x02\x02\x2d\x03\xa5\x66\x91\x9c\x65\x42\x2d\xc3\x4c\x84\x71\x46\xfd\x40\x52\x2f\x9f\x49\xc8\x0b\x67\x36\xd8\xab\x19\xdc\x17\xb5\x5f\x02\x16\x5d\x0f\x55\xfc\xc7\x66\x1b\x0a\xc5\x41\x4a\xce\x22\x79\x7c\x6f\x63\xf1\xe6\x8d\x8b\xd3\x9f\xde\xdf\x58\xdc\x5a\x84\xea\x08\xf9\x59\x61\x13\x54\x77\xb2\x5e\x16\x3a\x24\x2b\xfe\x24\x00\xbc\xf8\xe2\x8b\xaa\x00\x72\xba\xec\xae\x8c\xb9\xe0\xbc\xad\x6f\x02\x60\x03\x97\x36\x57\xd7\xe9\xd5\x75\x9e\x00\x40\x52\x4a\x5c\xbc\x78\x51\x15\xc0\xc0\x7c\x2c\xa5\x54\x80\x72\xd4\x17\x29\xa0\x27\x09\xe1\xd5\xe3\xde\xb5\xf5\x45\x78\x25\x50\x14\xf9\x0c\x74\xb9\x40\x5b\x3b\xe6\xea\xe7\x1c\x98\x14\xa1\x0b\xf0\x58\xb1\x94\x36\x31\xb1\x8f\x69\xe1\x20\x2e\x0c\x36\xe3\x68\xc3\x54\xd7\x6f\xf1\x6f\x16\xc9\xf7\xf7\x87\xc9\xfd\x45\xa4\x26\xc8\x11\xe9\x52\x77\x22\x2a\x6f\xd5\x8a\x88\xe4\xf9\xf3\xe7\xf1\xda\x6b\xaf\x21\x4d\xd3\x26\x65\x5a\x57\xd7\xc2\xf3\x4b\x9e\x67\xae\x70\xf8\xfc\xf9\xd2\x68\x53\x78\x6e\x9c\xbe\x5f\xee\xc7\xc0\xc5\x9a\xfc\xf0\x3f\x59\x13\x17\x50\x2d\x03\xcf\x1b\x79\xde\xd7\x8d\x1c\x2d\x08\xeb\x94\xcd\x8d\xbf\x4b\xd8\x26\xd7\xf4\x7d\xdd\xba\xf2\x95\x01\x00\xc4\x7c\x3e\x97\xa3\xd1\x88\x66\xb3\x99\x3a\x38\x38\x50\x17\x2f\x5e\x24\x95\xf7\x0c\x0a\x80\x9e\x46\x51\x44\xa4\x94\x52\x59\xd1\xe9\x67\x00\x32\x06\x5e\xb4\x92\xd1\xd7\x4b\xfe\x57\xc8\xaa\x56\xd0\x09\xf2\x65\xcc\x09\x80\x85\x52\x6a\x51\x00\x95\x45\xf1\x7c\xae\x94\xd2\xa0\x64\x81\x72\x59\xf3\x02\xb9\x92\xe7\xf1\x24\x45\xf8\xa4\x48\x43\xa7\xc9\x19\x18\xad\xfc\x54\x31\x2d\xa6\xf6\xf6\xf6\xe4\x8d\x1b\x37\xd4\xf6\xf6\x36\xde\x7a\xeb\x2d\x79\x70\x70\xd0\x04\x56\xea\x3a\xf2\xba\xef\xe0\x53\x9c\x70\xfc\xf8\xda\x0a\x7f\x5f\xd7\x7e\x7c\x69\x76\x0d\xdb\x76\xef\xe6\xcd\x4d\xa7\x09\xc4\x48\xc7\x6f\x5d\x38\x5f\x67\xe2\x9b\x62\x52\x00\x20\xa5\xa4\xe1\x70\xa8\x86\xc3\x61\x3e\xe5\x50\x28\x5d\x36\x78\xd5\xf9\x0d\x00\x90\x22\x50\x12\xca\x6c\x16\xa9\x44\x12\xd2\x5e\x26\xfa\xbd\x54\xac\x06\x8a\xf2\x05\x1a\x8a\x75\xc4\x45\xae\xcc\xb8\xd4\x1d\x74\xf2\x0e\x59\xe3\x13\xad\x71\xb4\xfe\x67\x7a\x9c\xeb\xfc\x4c\x28\x39\xee\x65\x7b\xdb\x67\xe7\xaf\xbf\x7d\x61\xfa\xda\xee\x5a\x72\x27\x71\x3a\x6a\x2a\xcf\xcb\x9a\x23\x97\x59\x23\xa7\x00\xd4\xed\xdb\xb7\xd5\x9b\x6f\xbe\xc9\x65\x89\x00\xc8\x83\x83\x03\xfa\xa5\x5f\xfa\x25\x44\x51\x54\x76\x1f\xac\x6e\x74\xbd\x14\x8c\x68\x5e\x4f\x04\x4a\x02\x99\x4d\x62\x39\x4d\x42\xb9\x10\x8a\x10\x67\xa2\x17\x4a\x8a\x85\x22\x61\x95\x53\xf7\x8d\x1a\xb4\x81\x29\x26\xeb\x46\xa7\x0d\xcb\xd9\x46\xbb\x0a\xa9\x50\xc9\xb8\x27\x0f\xef\x9e\x5d\xbc\xf5\xd6\xc5\xe9\xcb\x77\x37\x16\xef\x16\xa0\xe5\x44\x29\x35\x21\xff\x69\xec\x4b\x14\x03\x8d\xa2\x8f\xc3\x2b\xaf\xbc\x22\xef\xde\xbd\xcb\xfb\x35\xde\x7e\xf8\x80\xc2\x7d\x66\xc9\x94\xcf\xb5\x9d\x55\x54\xe7\x9a\xfc\x98\x77\x4a\x29\xf9\xd2\x4b\x2f\xe1\xf9\xe7\x9f\x17\x41\x10\x58\xf3\xe2\xe4\x59\x61\xb4\x0c\x64\x32\xea\x67\xbb\xa9\x50\x49\x94\xd1\xc0\x8e\x36\x2f\x57\x01\x3d\xac\x3b\xa0\x64\x40\x72\x01\x55\x4c\xb2\xb5\x07\x07\x78\x94\x8f\x8b\xfc\xf0\xa4\xf2\x2f\x59\xd6\x64\x79\xcc\x00\x3f\x94\xca\x6c\x6e\x54\x54\x37\x3f\xe0\x2a\xcc\x68\xfd\xfc\x34\xba\x36\x48\x82\xf5\x51\x2f\xdb\x97\x64\xdb\x10\xb0\xba\x38\x2d\x9d\xeb\x3a\xdf\xf4\x8b\xef\x1d\x3a\xf8\xe3\xd7\xee\x54\x4e\xdd\x54\x90\x3b\x05\xd4\x94\xae\xfb\xac\xe9\xb9\xeb\xba\xd2\xeb\x5d\xdf\xf1\x67\xa7\x99\x46\xe8\xf2\xae\x8b\x7b\x9c\x29\x25\x73\x7f\x7c\x7c\x8c\x97\x5e\x7a\x49\xf6\xfb\x7d\x21\x84\x90\x00\xf0\xdc\x73\xcf\xa1\xd8\x46\x43\xb7\x2f\x73\xc8\x27\x4a\x50\x67\xf6\x13\xa2\xd2\xb8\xd7\xbc\x83\x2d\x9f\xa2\x88\xcb\xbc\x77\xf7\x65\xd0\xd3\x44\xec\x19\x9f\x2a\xe2\xf9\x97\xfc\x9d\x8f\x56\xe6\x7e\x74\x3a\x0f\x1e\x3c\x90\x07\x07\x07\xd8\xdd\xdd\xc5\x3b\xef\xbc\xd3\x65\x7a\x44\xe7\xdb\x4d\xdf\x05\x28\x6d\xdf\xdb\x17\x47\x9d\xab\xfb\x5e\x75\x69\xf2\x69\x83\xb6\x6f\x2d\x9c\x5f\x5f\xda\x82\xdd\xd7\xe5\xdb\x4d\xbb\xc9\xb5\x95\xa7\xf6\x3b\xdc\xbe\x7d\x5b\x5e\xbe\x7c\x59\x5c\xbc\x78\x11\x00\xe0\x7c\x67\xcd\xea\x85\xc8\x3b\xbc\x10\x40\x98\x09\x84\x8f\x06\xcb\x07\x52\x28\x64\x42\xc9\x54\xac\xa4\x17\xc6\xd1\x53\xbd\x54\x0c\x84\x75\xd6\x0f\x1b\x98\xfa\x55\x7c\xf5\xba\x18\x94\x82\x14\xeb\x3d\x00\x1d\x89\x02\x21\x15\x32\x39\xee\x67\x3b\x77\x37\xe6\x37\x6f\x9d\x9f\xdd\x78\x38\x4c\xee\x14\x1d\xf5\x54\x29\xa5\xcf\xca\x72\xa7\x89\xac\xbf\x87\x0f\x1f\xca\x9d\x9d\x9d\xda\x3a\x7c\xf3\xcd\x37\xc5\x2f\xfe\xe2\x2f\xca\x5e\xaf\xa7\xdb\x93\xae\x0f\xa1\xeb\x85\x88\xa6\x6c\xdb\x0c\x91\x91\xc2\xa8\x9f\x62\x19\xc8\x74\x1e\xc9\xf9\x34\xce\xa6\x97\x8f\x7b\xd7\xd6\xe7\xc1\x56\x9c\x89\xbe\x80\xd9\xe5\x1a\xac\xfb\xab\x76\x74\x8a\x81\x3e\x1f\xd3\xc2\x58\x96\x79\x28\xc7\x47\x2b\xe9\xee\x83\x33\xc9\xed\xdb\x67\x67\x6f\xee\xac\x27\x77\xd2\x40\x8d\x00\x8c\x51\x82\x37\x0e\x5a\xac\x15\x83\xac\xdd\xe3\xfa\xf5\xeb\x28\x6c\xf4\xb4\x6b\x93\xcd\x3a\x57\x91\xfd\xb6\xb3\x8a\xdc\xc0\xdc\x8f\x70\xae\x9b\x1a\x57\x65\xe5\x01\x37\xe2\xd1\xf3\xd9\x8a\x90\x1e\x0e\x96\xbb\xcb\x40\x8d\xfb\x4b\xac\x93\xf9\x30\x80\x0b\x39\x5c\x00\x52\x32\x32\xfc\x9c\x14\xe8\x87\x0c\xa6\xa3\xfa\x1c\xb0\x61\xa7\x01\x40\x3a\xea\xf2\xac\x24\x0d\xf9\x39\xa0\xd1\x52\xa1\x69\x48\x52\x80\x00\xe2\xb5\x79\xf0\xd4\xc6\x2c\xdc\x3a\x1c\xa4\xf7\x17\x91\x1c\x17\xf5\x13\xb2\x79\x5f\x53\x5f\x4f\x3f\xfd\x34\x6e\xdd\xba\x25\x96\xcb\x25\xaf\x27\xb7\x5e\x1f\xb7\x73\x07\xaa\xdf\x4f\x3f\x6b\x13\x2c\x9e\xb6\xef\xfb\xba\xe1\xeb\xf2\xf1\xb8\x80\xb8\x4d\x1e\xbb\x74\x48\x75\xfe\xba\x80\xb1\xa6\x67\x6d\xe9\x9c\xc6\x6f\xdb\xb7\xf3\xd6\xcb\x7c\x3e\x37\xc6\x80\xbd\x5e\x4f\x04\x41\x20\x01\xe0\xe2\xc5\x8b\x58\x5d\x5d\xad\xf8\xe7\x8a\x91\x81\x10\x73\x0f\xd8\xf6\x2c\x70\x3a\x45\x72\x35\x5f\x35\x7e\x17\xc4\xe8\x5f\x73\xed\xfa\x71\x0c\xf6\x01\x00\x0f\x1e\x3c\x90\xf3\xf9\x1c\x6f\xbd\xf5\x16\xde\x7f\xff\xfd\x2e\xf5\xd9\x05\x3c\xd4\xf9\xe5\xf2\xe0\xfa\x69\x02\xf9\x8f\x9b\xa7\xba\x78\x9a\x64\xe7\x71\x40\x74\x53\xd9\xdb\xe4\xd4\xd7\x5e\x3a\xb5\xad\x83\x83\x03\x1c\x1e\x1e\xca\xcd\xcd\x4d\xae\xf7\xf5\x26\x8a\x1a\xbc\xf0\x4e\x3a\x94\x02\xe2\xa8\x9f\x3e\x48\xcf\xcd\x96\x8b\x50\xcd\xa7\x51\x6f\x7c\xf1\x24\xbe\x36\x4c\xc2\x8d\x50\x22\x06\xec\x81\x6a\xc9\xa8\xa8\x62\xc0\x48\x9e\x4e\xa1\x50\xd9\x54\xea\x70\x33\xa4\x27\x05\x49\x90\xcb\x40\x4e\xf7\x57\x93\xbb\x77\x36\xe7\x6f\xde\x39\x3b\x7f\xe7\x70\x90\x3e\x48\x85\x3c\x42\xd1\x41\x6b\x96\x45\x95\xbb\x37\x5b\x1b\xad\x69\xd9\xbd\x7d\xfb\x36\xee\xdc\xb9\x53\x5b\x9f\x2f\xbe\xf8\xa2\x7c\xfa\xe9\xa7\x45\xbf\xdf\x87\x23\xef\x7a\x79\x35\x90\xb7\xaf\x29\xca\xc1\x83\x00\x20\x66\xb1\x94\x77\xcf\x2c\xd2\x49\x2c\xc7\x47\x2b\xe9\xfe\x13\xa3\xf8\xda\xf9\x71\x74\x79\x98\x84\x1b\x51\x46\x7d\x91\x4f\x3b\x95\xf3\x0f\x7c\x20\x6d\xfa\x30\x5d\x1b\x6c\xd0\x81\xbc\x0f\xcb\xeb\x41\xcd\x4f\x7a\xe9\xd1\xde\x70\x79\xf7\xde\x99\xc5\xad\x07\xeb\x8b\xed\xe3\x7e\xf6\x30\x0b\xd4\x18\x39\x68\xd1\x7f\x2e\xd3\x92\xa0\x6a\xdf\x22\x6f\xdd\xba\x85\x34\xb5\x56\x46\xeb\xf2\x6a\x77\x1a\x5d\x5f\x09\xe7\x4e\x15\xf9\xa8\x49\x4e\xe9\x70\x6a\xdb\x85\x03\xca\x09\x6b\xdc\x0b\x2f\xbc\x40\x61\x18\xe6\xcc\x55\x49\x87\x09\xe4\x53\x45\x01\x80\x48\x29\x15\x01\x14\x91\x42\x74\xf5\xa8\xff\xd1\x95\x7c\x79\x5c\xa0\xc5\xd5\xe5\x91\xac\x67\x4a\x19\xe1\xe4\xec\x9b\xbb\x14\x4e\x07\xe4\x54\xa3\xf9\x94\x44\x76\xdc\x0c\xa1\x6b\x10\x93\xff\x51\xd9\x08\xcc\x43\x94\xbf\x26\x8d\x9c\xc8\x9c\xc5\xf2\xee\xe1\xea\xf2\xfe\x3c\x07\x2e\xa9\x52\xca\xb2\x73\x29\xa6\x8c\xe4\xb5\x6b\xd7\xf0\xce\x3b\xef\x60\x3e\x9f\xf3\x8f\xe4\xa3\x68\x95\xe7\x97\x3b\x3e\x85\xe1\xd2\xbf\x92\x3d\xaf\x03\x2d\x6e\x78\x97\x4e\xae\xa3\xaf\x85\xe3\x0f\x8e\x5f\x9e\x6e\x1d\xfd\xed\x52\x85\x6e\x19\x78\x5a\x12\xf5\x62\x51\x17\x37\x17\x1b\xaa\x09\xe3\xcb\x87\xf2\xdc\xbb\xf9\x69\x2a\x43\x1d\x05\xea\xab\x13\xb7\xdc\xba\x5e\x9b\xd2\x07\x00\xdc\xbe\x7d\x9b\x6e\xdd\xba\x25\x6f\xdd\xba\xa5\xfa\xfd\x7e\x2e\xc6\x44\x2a\x8e\x63\xe8\xa9\xa4\x42\xd9\x2a\x22\xca\x8a\xa9\x25\x09\x40\x4f\x29\xe9\x69\x25\x3e\x65\xa3\x95\x52\x56\xc8\x6e\x65\x55\x90\x9e\x76\x2a\xe2\xe0\xf3\xdc\x29\xfb\x35\xab\x83\x8a\x74\xf5\x3c\x78\xa6\xa7\xb4\x76\x76\x76\xd4\x78\x3c\x56\xe3\xf1\x58\xfd\xe8\x47\x3f\xc2\xf5\xeb\xd7\xe5\x68\x34\xaa\x93\x73\xb7\xfe\xdb\xea\xd8\xf7\x9d\xb5\x5f\xdd\x0e\xb8\x8e\xf3\xd1\xd7\x95\x3a\x6f\xc8\x93\xef\xba\x2d\x2f\x4d\x72\xc7\x9f\x35\xb5\x21\xb7\xbd\xd6\xe5\xb1\x0d\x80\xd5\xe9\x89\x26\xbf\x00\xa0\x0e\x0e\x0e\x54\xaf\xd7\xa3\x27\x9f\x7c\xd2\x6a\x67\x0c\xac\x52\x71\x5f\x19\x8d\x26\xa1\x4a\x47\x2b\xe9\xc9\x71\x3f\x3b\xce\x02\x35\x0f\x25\x85\xa1\xa4\x50\x80\x82\x22\x05\xd2\xf4\x39\x11\x8a\xf3\xb3\x6a\xc1\x74\x99\xb8\xa6\x69\x00\x48\xca\xb7\xdf\x18\xf7\xb2\xc3\x07\xeb\xc9\xad\x37\x2f\x4e\x7f\xf6\xce\x85\xd9\xcd\xe3\x95\x6c\x47\x0a\x8c\x40\xc4\x3b\xe9\x29\x72\x1b\x2e\x6d\xab\x95\x20\xb7\xe7\x30\x3a\xfc\xe8\xe8\x48\xde\xb9\x73\x07\x8f\x1e\x3d\x6a\xd2\x57\x6a\x6b\x6b\x8b\x86\xc3\xa1\x0a\x43\xc3\x17\x28\x56\x31\x56\xd8\xc2\x26\x48\xb7\x4f\x64\xa4\xb2\x59\x2c\x67\x8f\x56\x96\xc7\x47\x2b\xd9\xa3\x79\xa4\x4e\x14\xa9\x0c\xf9\xa1\xec\x92\x14\x99\x9e\xa8\x2c\xb8\x33\x4a\x2f\xbb\x33\x48\x82\x4c\x03\xb5\x9c\x47\x6a\x32\xea\xa7\x87\xbb\x6b\xc9\xf6\x7b\xe7\xe6\x6f\xbc\x7d\x61\x76\xfd\xde\xc6\xe2\xf6\xa4\x27\xf7\xa5\xc0\x18\xc0\x09\xf2\xa9\xb2\x13\x5d\x1f\x4a\xa9\x39\xf2\x29\x62\x3d\xcd\xab\xa7\x87\xa4\x94\x32\xdb\xd9\xd9\xc1\xbf\xfe\xeb\xbf\xba\x06\xf3\xbc\x3e\x80\xfa\x7a\x6a\x6b\x23\x0a\xa8\x9f\x2a\x02\xaa\x9d\x1a\x7f\x56\xe7\xc7\x1b\x66\x34\x1a\x61\x73\x73\x53\x16\xc6\x49\x86\x69\x81\xbb\x57\x83\x42\xfa\x68\x90\x8e\x4e\x7a\xe9\xee\xc6\x2c\x78\x26\xc8\x4a\x0b\x73\xcb\x7a\xba\x80\x93\x25\x41\x62\x4f\xe1\xe8\xd2\x59\xd4\x20\xa7\x50\x00\x6b\x37\xc6\x32\x0d\x7e\x5d\x02\x1f\xc5\xb7\x27\xd4\xcb\xc5\xac\x47\x7a\x7b\x64\x7b\x65\x52\x28\xc5\xc6\xb9\x49\xf4\xd4\x6a\x12\x6c\x3c\x5a\x49\x77\x41\xa8\xec\xe9\xc2\x29\x79\xf8\x15\x44\x17\x96\xe3\xb4\xac\x4c\x53\x9c\xa7\x41\xc5\x6d\x8c\x81\x6f\xc4\xe9\x8b\xaf\x6b\xde\x9b\xe2\xad\xf3\xe7\x8b\xfb\x34\xcc\x55\x17\xe6\xa9\x6e\x04\xff\x41\xea\x84\xa7\xd9\x25\x9f\xd6\xfd\x8b\x2f\xbe\x28\x01\xe0\x13\x9f\xf8\x84\xf8\xf8\xc7\x3f\x2e\x01\x20\x08\x02\x68\xdb\x03\x4f\x3a\xf0\x5c\x6b\x86\x06\x80\x91\x55\x6b\x45\x9c\x33\xfd\x0b\xc0\xde\xe6\xdb\x61\x57\xac\xf7\xcb\xe5\x52\x4e\xa7\x53\x13\xe7\xdf\xff\xfd\xdf\x77\x61\xc4\x7c\x32\xd7\xa5\x8e\x4e\xc3\x94\xb8\xe1\x4f\xc3\x4e\x9c\x46\x16\xdc\xb0\x5d\xe3\xee\xda\x26\xdb\xd2\xa9\x63\x2b\xdd\xfa\xaf\x8b\xa3\x36\xce\xc5\x62\x81\xd9\x6c\x26\x57\x56\x56\x78\x1e\x53\xe6\x87\xff\x96\x8e\x20\x93\x40\xc9\x87\x6b\x49\x72\x34\x48\x8f\xf6\x57\x97\x3b\x1f\x3a\x5c\xf9\xd8\xe6\x24\xbc\xb4\x9a\x04\x1b\xbd\x54\x0c\x42\x89\x90\x58\xdf\x95\xab\x7e\x2d\xa3\xbc\xb7\x53\xe6\xbf\x12\x90\x19\x29\xb9\x14\x2a\x99\xc6\xd9\xe8\xd1\x20\xdd\x79\xb0\x9e\xdc\x7e\xff\xec\xfc\xd6\xc1\x60\xb9\x57\x2c\xf1\x9d\x02\x18\x2b\xa5\xc6\x44\x34\x56\xe5\x89\xe4\xda\x98\x9c\xaf\x9e\x31\xa9\xbc\xf4\xd2\x4b\xfa\x1c\x1e\xd7\x59\xdf\xeb\x7b\xdf\xfb\x9e\xfc\xc2\x17\xbe\x20\xae\x5d\xbb\x26\xe3\xd8\x74\x6d\x1a\xd0\x5b\x75\xc8\xda\x92\xee\x2f\x53\x05\xa4\xf3\x50\x26\x0f\xd7\x92\xe9\xe1\x60\xb9\x77\x77\x23\xdc\xbe\x74\xd2\xbb\x7c\x6e\x12\x5e\xda\x98\x85\xe7\x57\x93\x60\xbd\x97\x8a\x41\x24\x29\x16\x92\x04\x01\x82\x8a\x93\xdf\x15\x29\x29\x49\xa5\x92\x20\x33\x42\x9a\x84\xd9\x7c\xdc\xcb\x8e\x0e\x57\xd2\xdd\xbd\xe1\x72\x67\x6f\x98\xec\x8c\x56\xd2\x83\x24\x90\x63\x95\xdb\xac\x4d\x09\xa4\xa7\xca\x34\x80\x33\x6c\x0b\x95\xc7\x6f\xe8\x41\x89\x24\x22\xb9\x5c\x2e\x79\x3b\x36\xf2\xe0\xd4\x87\xcb\x70\xfa\xde\x5b\xf5\xe1\x86\x75\x81\x4b\x9b\x52\xae\x53\x24\xae\x3f\xeb\xfe\xeb\x5f\xff\x3a\xbe\xf2\x95\xaf\xe8\x83\xe3\xcc\x7b\x46\x2f\xe5\x00\x86\x90\x2e\x02\x39\x3d\x1a\xa4\xf7\x2f\x9d\xf4\xa6\x51\x86\x81\x28\xe2\x37\xcb\x8e\xf5\x35\xfb\xce\x9a\x3d\xb1\x58\x16\xee\x4a\x0f\xe5\x23\x46\xa1\x71\x02\xcd\x80\x15\xe4\x53\x3f\x86\x86\x34\xe1\x74\x40\x06\xa4\x2a\xeb\xd0\xf2\x6b\x21\x55\xbc\xb6\x08\x9e\x5a\x9f\x85\x5b\xbd\xd5\x64\x7b\x11\xa9\x29\xeb\x08\xb4\x31\x96\xa9\xef\x28\x8a\x40\xb9\xe1\xb2\xef\xa3\xba\xca\x84\xbf\x6f\x52\x4a\x6e\x87\x8b\x0e\x7e\xdd\x67\x6e\x3a\x75\x9d\xb8\x7b\x0d\x27\x8e\xa6\xf2\xb8\x4e\xbf\x6b\x53\xa2\x5d\x46\x84\x6e\xde\xba\xc6\xd1\x2a\xdb\x2d\xf1\xb4\x0d\x02\xdc\x3a\x76\x9f\x37\xe5\xa1\x4b\x9a\xe2\xfa\xf5\xeb\xf2\xfa\xf5\xeb\x02\x80\xbc\x78\xf1\xa2\xf8\xd2\x97\xbe\x64\xc5\x15\x45\x91\x13\x6d\x09\x2c\x0a\xf9\xb4\xd2\x75\x40\x49\x05\xb0\xbb\x4a\x9d\xbf\xcf\xb2\xcc\x5a\x38\x77\xef\xde\x3d\x7c\xfb\xdb\xdf\x6e\x93\x81\x2e\xae\x49\x46\xdd\xf7\x70\xde\xd5\xd5\x5d\x13\x30\xf5\xa5\xcd\xef\xdb\x80\x67\x5b\xdc\x6d\x03\x02\xd7\x75\xf1\xdf\x54\x06\xdf\xfb\x3a\xd9\xac\x4b\xd3\xea\x1b\x6e\xdc\xb8\x21\xd3\x34\x15\xbf\xf1\x1b\xbf\x81\x30\x0c\xb9\x5c\xe8\xa9\x22\x67\xa0\x57\xa6\xa1\xa0\x24\x04\xa5\x73\x92\xc9\x3b\xe7\x67\xb3\xfb\x67\x16\xbb\x17\x4e\xa2\xad\x4b\x27\xbd\xcb\x17\xc6\xf1\xe5\x33\xf3\xe0\x7c\x3f\x15\xc3\x30\xa3\x50\x28\x0a\x85\x44\x28\x90\x9b\x15\x18\x8a\x8a\x00\x05\x25\x33\x81\x34\x0d\xd4\x3c\x09\xe4\x7c\x1a\xc9\xf1\xd1\x60\xb9\x7b\x7f\x3d\xd9\xbe\x7f\x66\x71\xf7\xb8\x9f\x3e\x92\xc2\xb0\x08\x53\x82\x99\x1e\xd2\xbb\xe4\xea\xce\x9a\xaf\xba\xd3\x9d\x35\x00\xc8\x34\x4d\xb9\x4c\x37\x0d\x40\x01\xe4\xe0\xe5\xf3\x9f\xff\xbc\x78\xf6\xd9\x67\xa1\x07\xf2\x2c\x3e\xab\x1e\x8a\x77\xd2\x61\x3a\x13\x00\xe9\x32\x54\xc9\xde\x70\x39\xdf\x5f\x5d\xee\x85\x8a\x6e\xae\x2d\x82\xe1\xb9\x49\x74\x7e\x73\x12\x6d\xae\x2d\x82\xf5\xfe\x32\x18\xc6\x92\x62\x21\x11\x2a\x00\x69\xa0\x92\x24\x90\xf3\x79\x24\xa7\xb3\x50\x4e\x8f\x57\xd2\xa3\xfd\xe1\x72\xf7\xb8\x9f\x8e\x93\x40\xe9\x93\xd9\xe7\x4a\x61\x4e\x79\x1d\xe8\xf2\x9b\x7a\x28\x98\x16\x33\x65\x56\xfc\xea\xfe\x5b\x2a\xa5\x64\x61\xea\xd0\xe6\xea\xfa\xa2\x26\x90\xc3\xc3\x36\x70\x6c\x65\xa0\xba\x48\x9a\x94\x6d\xc5\x7d\xe5\x2b\x5f\x11\x1b\x1b\x1b\xba\x23\xe2\x3b\x78\x0e\x00\x0c\x95\x52\x43\x22\xda\x00\xb0\xf1\x0b\x0f\x07\xbf\xfc\x6b\xdb\x6b\x5f\x39\x3b\x8b\x9e\x0a\x14\x85\x1a\x59\xe4\x6c\x5f\x95\x2a\xa9\x70\xc2\x1c\x89\xb4\x39\x87\xa9\x71\xe3\xab\x0b\x62\xf3\x59\x9c\xdf\xb1\xfd\xcd\xc3\xec\xee\x9b\x5b\xd3\xbf\xbd\x7e\x79\xf2\xdd\x83\xd5\xe5\x5d\xd8\xf3\x84\x95\x6d\x92\xff\xf1\x1f\xff\x51\xde\xbb\x77\xaf\xcb\x08\xea\x7f\xdc\xff\xb8\x0f\xec\xbe\xfa\xd5\xaf\x8a\xe1\x70\x68\xc9\x98\x03\x5c\x00\x7f\x9b\xaf\x74\x5c\xba\x73\x62\x80\xc7\x8a\xf7\x3b\xdf\xf9\x8e\xcf\xc0\xf6\xff\xcf\xae\x8d\xc5\x78\xdc\x38\x3e\x48\xb8\x36\x16\xe5\x83\xb8\xd3\xa6\x89\xa7\x9f\x7e\x5a\xfc\xce\xef\xfc\x8e\xd6\xfb\xf9\x20\x34\x3f\x82\x22\x44\x7e\x7e\x96\x3e\x47\xab\x8f\xbc\x2f\xd0\xbf\x03\xa5\xd4\x80\xf2\xdd\x9d\x07\x00\xfa\xa4\xb0\x32\x48\xc4\xe0\xfc\x24\x3e\x7f\x6e\x12\x6d\x0e\x17\xc1\xfa\x60\x29\x86\xfd\xa5\x18\xf6\xd2\xa0\x2f\x14\xf2\xf3\xb3\xa0\x20\x09\xe9\x32\x90\xc9\x24\xce\x46\xc7\x2b\xe9\xd1\xa3\x95\xf4\xf0\xd1\x20\x3d\x1c\xf5\xd3\x51\x12\xaa\x09\xca\x5d\x5f\xad\xce\x19\xd5\x65\xbe\x7c\x9b\x7f\xdd\x51\x9b\xbf\x7f\xfc\xc7\x7f\x84\xa3\xaf\xdb\xea\x0a\x00\xf0\xd9\xcf\x7e\x56\x3c\xff\xfc\xf3\xbc\x5e\x04\xec\x8d\x20\xfb\xec\x4f\xd7\xd1\xc0\x7d\xa6\x94\xea\x53\xb9\x23\x76\x08\xa0\x17\x64\x08\x43\x29\xc2\x40\x51\x28\x8a\xce\x2c\x23\x25\xd3\x40\xa5\xa9\x50\xa9\x22\x2c\x8b\xbc\x55\x8e\x1d\xf0\xfc\xf1\xbe\xaa\xb2\x77\x0b\xaf\x8b\xa3\xa3\x23\xfc\xcd\xdf\xfc\xcd\xff\x96\xf6\xdd\xe5\x74\xe8\xa6\xd1\x81\x0f\x95\x6b\xe7\xfd\x70\x0c\x65\xeb\x02\x9b\xcd\xa7\x0a\x64\x29\xf7\x86\xc9\xc3\x49\x2c\xf7\xd7\x17\xea\x92\xc8\x28\x24\xcb\x8a\x81\x4f\x05\x15\x8f\x4c\xdc\xce\x03\xaf\x2b\x38\x15\xcb\xd2\xc1\x99\x0b\x54\x2e\xa3\xe3\x61\x71\x74\x28\x05\xdf\xa8\xc1\xe4\x25\x92\x62\xe3\xfc\x34\xba\x36\x5c\x04\xe7\x0f\x56\x97\xbb\x28\x37\xa2\xb3\x8c\x74\xf5\xea\x0c\x4f\x86\xff\xbb\x05\xa1\xa9\x81\xfd\x0f\x68\xfa\x3f\xe3\xfe\xb7\xd5\xfb\xd7\xbe\xf6\x35\xaf\xdc\x3d\xf3\xcc\x33\xf8\xc2\x17\xbe\xa0\x01\x89\xcf\x28\x57\x02\x95\x51\xb3\x38\x3c\x3c\x94\xdf\xf8\xc6\x37\xbc\xa3\xff\x2c\xcb\x7e\x1e\x59\x3e\xcd\x54\xc8\x69\xe3\x3b\x6d\x47\xff\xf3\xf8\x46\x8f\x1b\xc7\x69\x99\x95\xff\x4e\x79\xea\x92\x8e\xa9\x57\xc6\x30\xcc\xe1\x00\x01\xd8\xe6\x03\x09\xf2\x4e\x3a\x01\x10\x2b\xa0\x3f\x89\xe5\xc9\x34\x9e\x3f\x7a\x7f\x63\xde\x23\x20\x0c\x24\x85\x51\x26\xe2\x38\xcd\x6d\x61\x32\xa1\x64\x26\x94\x94\x02\x69\x46\x2a\x5d\x06\x2a\xcd\x48\x25\x8a\xb0\x54\x65\x87\xcb\x3b\xe2\xb9\xb3\x72\xc8\xed\xa8\xf5\x8a\x9f\xca\x76\xf6\xdf\xf8\xc6\x37\xd0\x61\x73\xb5\xd3\xd4\x1d\x9f\x32\xd2\x75\x93\x16\x40\x4f\xd7\xcb\x1c\x25\x78\x99\x17\xc0\x8e\x1f\x9c\x1a\x66\x02\x61\x26\xcc\x71\x03\x2e\xc1\xc0\xeb\xd8\x77\x46\x98\x0b\x5c\xf4\x16\x06\x96\x71\x32\x6c\xd0\x82\x07\x0f\x1e\xe0\x9f\xfe\xe9\x9f\x7c\xe5\xfb\x6f\xd1\x65\x6d\xc0\xa5\x6d\x34\xd1\x44\x4f\x36\x09\xb0\xbb\x1c\x32\x65\x74\x58\x32\xee\x65\xe3\x51\x3f\xdd\x39\x3f\x89\x3e\x12\x65\x6a\xa0\x19\x96\x72\x3a\xa7\x02\x35\x8c\x7d\xac\xeb\xaa\xe4\x4b\x69\x79\xed\xe2\x1c\x0d\x50\xec\x79\xd2\x2a\x97\x42\x75\x37\x8c\x8a\xd1\x79\x11\x12\xfd\xe1\x3c\x78\x6a\x73\x1a\x5e\xde\x1d\x8a\xdb\xb3\x58\xce\x91\x0b\x82\x6f\x75\x87\x76\xbe\x69\xa1\x3a\xda\xb6\x89\x15\xf3\xbd\x77\x5d\x13\x00\xed\x32\xba\xf2\xe5\xa7\x49\xf9\xfb\xf2\xeb\xe6\xc3\xe7\x7c\x53\x4f\x4d\x65\x76\xdf\x9d\x66\xea\xca\x97\x9f\xb6\x7c\xf3\x77\xbe\x7c\xf8\xc2\x9c\xe6\x9b\x9c\xb6\x7e\x9a\x64\xc0\xc4\x5d\x80\x89\x4a\xbe\x6f\xdd\xba\x85\x07\x0f\x1e\xf8\xde\xd5\x39\x09\x00\x52\x4a\x6d\x94\xd7\xa6\xb0\x4e\xa3\xd0\x4e\x3b\x15\xf2\xb8\x4c\x48\x97\xfc\xb4\xc5\xdd\x65\x10\x70\x1a\xe6\xa2\x4b\xbe\x7d\xb2\xd2\xc5\x7f\x17\x77\x9a\x7c\x68\xff\x26\x0f\xf7\xee\xdd\xc3\xb7\xbe\xf5\x2d\xf9\xdb\xbf\xfd\xdb\x02\xb0\xec\x9f\x2a\x87\xf1\xe9\xfe\x40\xdb\x4e\x28\xa5\xf4\x66\x88\x73\x00\x7d\x05\x35\x27\xa2\x58\x01\xb1\x22\x84\x50\x08\xb3\x40\x89\x65\x90\x89\x69\x04\x41\x9a\xd1\x21\x93\xbe\x54\x40\x0a\xa8\x14\x79\xdc\xbc\xa3\x36\x2b\x85\x0a\x1b\x0e\x0e\x64\x74\x9a\x6e\x27\x6d\xca\xf5\xf5\xaf\x7f\x5d\x1e\x1c\x1c\x34\x1d\xe8\xd9\xf8\x8d\x5f\x7a\xe9\x25\x28\xa5\xe4\x2f\xff\xf2\x2f\xbb\xfe\xdc\x69\x23\x77\x39\x79\xcc\xf2\xaa\x99\x17\x03\x5a\x60\xce\x1a\xb3\xfe\xdc\x3e\xdb\x3a\x2b\xac\xa8\x6f\xf7\x48\x03\xeb\x9e\x9c\x23\x3a\x74\xfd\x02\xf9\x31\x07\xdf\xff\xfe\xf7\xeb\x8e\xdc\xf8\x79\x0c\x8a\x2b\x7e\xbb\x6c\x40\x27\x60\x5b\x02\x0b\xf6\x5b\x67\xf9\x5b\x89\x63\x67\x67\x07\x5b\x5b\x5b\x6a\x75\x75\x95\x8a\xb0\x7a\x75\x91\xd9\x88\x8e\x88\x02\x22\xea\x49\x42\x7c\x76\x1a\x6d\x9e\x9b\x44\xd7\x7a\xa9\x18\x72\xfe\x83\xef\x74\xa8\x41\x83\x8d\x1d\xec\x43\x16\x7d\xe4\x8b\x01\x3a\xf6\x0c\x51\x1e\x4a\x95\x20\xc9\xd8\xd4\xb0\xd9\x29\x77\xb3\x1e\x9d\x86\xbb\xf9\x51\x99\x0e\x09\x80\x54\x12\xa8\xbd\xd1\x4a\x7a\x7f\xdc\xcf\x46\xcc\xd0\x4b\x5b\xa6\xcb\xc2\xbb\xba\x70\xe1\x82\x1a\x8d\x46\x28\x56\x53\xb8\x16\xd8\x7c\xd5\x03\x9c\x67\xc2\x73\x0d\x8f\x7f\x9f\xe3\xab\x07\x7c\x69\xb8\xf1\xb9\x69\xd7\xad\x64\xa8\xb3\x0a\xf7\xc5\xc1\xf3\xd1\x16\xae\x29\xcd\xba\x3c\xf8\xc2\x77\xf1\xe7\x4b\x9f\xd7\x95\x2f\x3f\x4d\xf9\xf2\xc5\xed\x73\x6d\xf9\xf1\xf9\xaf\xf3\xd7\xa5\xac\x96\x7f\x29\xa5\x4a\x92\xe4\xd4\x7f\xcb\xe5\xd2\xcd\x83\xa8\xb9\xe6\xcf\x74\x83\x6d\xfa\xf6\x3e\xd7\x16\x77\x97\x38\xba\xc8\x79\x9b\xff\x2e\x7a\xd0\x1e\x0b\xb5\xe7\xd1\x97\x8f\xb6\xfa\x69\x6a\xb7\x3e\xff\x75\xef\xeb\xe2\xee\xea\xdf\xc4\x2f\xa5\x94\x93\xc9\x84\xf6\xf7\xf7\xd5\x87\x3f\xfc\x61\xbd\x52\xc6\x8d\x5b\xaf\x70\x53\x28\xf5\x61\x46\x44\x7a\x67\xe7\x0c\xf9\x4a\x1e\xbd\x8a\x25\xdf\x89\x9c\x30\x57\x50\x09\x88\x16\x20\x2c\x54\xfe\x37\x07\x61\x8a\xfc\x77\x96\x5f\xd3\x14\xc5\x26\x72\x05\xbb\xa2\x37\x94\xe3\x3b\xc0\x9a\x5d\x9e\x29\xdf\x38\x51\x4f\x0f\xe9\xd5\x6f\xfa\x4f\x7d\xf3\x9b\xdf\x94\xfb\xfb\xfb\x28\x8c\x5b\xf8\xb7\xac\x93\x9f\xca\xf3\x2c\xcb\xe8\xd1\xa3\x47\xc8\xb2\x4c\x3d\xf1\xc4\x13\x26\x8e\x02\xc0\x29\xd8\xba\x58\xa2\x5c\x85\xe7\xae\xda\xe3\x3b\x4f\x73\xc0\xa1\x37\x7e\xd4\xe5\xd2\x3b\xff\xea\xb2\xea\x72\x9b\x0d\xe5\x0a\x20\xa7\x77\xbf\x9e\x17\xc0\x91\xaf\x1e\x5a\xb2\x7c\x48\x00\xb8\x75\xeb\x96\xfc\xf1\x8f\x7f\x8c\xf1\x78\xec\x0e\x1c\xda\x64\xec\x71\xdb\xbf\x00\xa0\xba\x00\x17\x37\x03\x4d\x4a\xaf\x36\xe1\xd9\x6c\xa6\x3e\xfc\xe1\x0f\xd3\x70\x38\xcc\x09\x8f\x12\xb4\x68\xd6\xc1\xec\xa2\x0b\x42\xdc\x5f\x8a\xd5\xad\x71\x7c\x6d\xb0\x0c\xce\xe6\x4b\xe1\x14\xf4\x92\xe3\x92\x31\xa9\x4e\xe1\x94\x3b\xe9\xba\xcb\xa8\xb5\xd1\x2d\xb3\x4f\xa1\xf2\xbd\x0e\x6d\x31\x3b\xaa\x64\x72\x0c\x26\xb1\x41\x89\x7d\x06\x86\x1d\x59\x09\x7e\x14\x48\x0a\x35\x3e\x1a\xa4\xf7\x0e\x56\x97\xbb\xca\xde\xb0\x47\xef\xa4\x2b\x89\x48\xf5\xfb\x7d\xba\x7b\xf7\xae\x3a\x3c\x3c\xe4\x1f\xd2\x27\x08\xee\xb3\x3a\xc6\xa3\xae\x61\xb9\x00\x54\x7a\x9e\x2b\x27\x3e\x37\xce\xb6\xf8\x7d\x0a\xba\x49\xf9\xe9\xd1\x9a\xaf\xd1\xd7\xa5\xdb\x35\x0f\x4d\x61\xdc\x3c\xf8\x1a\x12\x7f\x5e\x57\x87\x5d\xbf\x55\x5d\x7e\xda\xd2\x6d\x2b\x83\x2f\xbd\xae\x71\xf8\xca\x50\x97\xff\xba\xfa\xf6\x39\xee\xd7\xe7\x8f\xcb\x5e\x9b\xac\x36\xc5\xed\x0b\x7b\x1a\x19\x3c\x0d\xa3\xe0\x96\xa7\xeb\x77\xd0\xae\xae\x53\x6b\xcb\x77\x97\x7a\xef\x02\xbe\x7c\xf1\xd5\xc5\x51\x07\x36\xbb\x94\x41\xb3\x70\x6a\x3c\x1e\xd3\xe1\xe1\xa1\xfa\xd0\x87\x3e\x54\x01\x2f\x7a\xa9\x7e\xe1\x5f\x2f\xcd\x37\x07\xf0\x16\x40\x66\x59\x00\x09\xdd\x49\xeb\x9d\x9a\xf5\xb5\xee\xa0\x67\x70\x3a\x69\x77\x65\x4c\x01\x58\x66\xec\x6f\x8a\xf2\x98\x0a\x0d\x04\x96\x7a\xe1\x88\xb2\x8f\x9d\x90\xdf\xff\xfe\xf7\xf9\x29\xe4\x6d\xf2\xed\xfa\x31\x60\x77\xb9\x5c\xca\xd1\x68\x44\xcb\xe5\x52\x5d\xba\x74\x89\x88\x48\xef\x30\xaf\xeb\x41\x6f\x1d\xa0\x60\xef\xd2\xab\x41\xcb\xb2\xa8\x2b\xbd\xdb\xb5\x06\x19\x1c\xb4\x98\xe3\x37\x0a\x56\x85\x97\x59\xd7\xcf\x8c\x88\xf4\x0a\xaa\x59\x11\x4f\x52\xfc\xf9\x00\x8b\x04\x80\x77\xde\x79\x47\xbe\xf4\xd2\x4b\x38\x3a\x3a\xd2\x8c\x9c\xdd\xe5\xd6\x97\x9d\x3b\xee\xbf\x4e\xa6\x2a\x75\xd9\xc5\xc6\x45\x47\xd2\x85\xc2\xac\xf3\x63\xf9\x65\xd3\x22\xbc\x22\xac\x03\xd7\x8e\x06\xe9\xde\xa4\x97\xed\x67\x53\xf5\x54\x90\x51\xac\xc3\x70\x98\x62\x41\x13\x0f\x68\xb0\xfd\xf3\x33\x1d\x9c\x5d\x14\x61\x87\xd3\x51\x95\x5b\x29\xb3\xfd\x60\x54\x09\x7a\x00\x58\x3b\x12\xe6\x64\x8d\x9d\x11\x05\x40\x28\x0c\x56\x93\xe0\xca\xb9\x49\xf4\xf4\xda\x3c\xbc\x39\x5a\x49\xf5\x81\x5a\x2e\xa5\xc7\xed\x0d\x78\x9d\xb5\x51\x70\x5d\xae\x85\x73\xed\x9b\x0a\x91\xa8\xa6\x59\xf7\x8d\xbb\xbe\xab\x03\x55\x3e\xd7\xf5\x5d\x53\x7c\xa7\xad\x97\xd3\xa6\xe3\xfb\x2e\x75\x34\xbd\xaf\x0e\x9b\x9e\xb5\xe5\xb5\xad\x0c\x6e\xdc\x6e\x5e\xf9\x77\xef\x12\xf7\x69\xf3\xea\x73\x75\x74\xb9\xfb\xae\x49\x36\xba\x3c\x6f\x6b\x23\x75\xed\xc9\x95\x7b\x9f\xf3\xe5\xad\x8b\x1e\xac\x7b\x7f\x9a\xb6\x5d\xe7\xf7\x34\x65\x73\xd3\xd6\xfe\xea\xf2\xd5\x54\x56\xa0\x5a\xae\x36\x19\x10\x69\x9a\xca\x5b\xb7\x6e\x89\x5e\xaf\x27\x3f\xfb\xd9\xcf\x82\xed\x65\xe2\x4e\x1d\xc9\x62\x00\xab\xed\x5c\xf4\xe9\xc9\xda\xa0\xd7\x18\xb0\xaa\x7c\xe3\xb5\xd0\x31\x24\xe7\x71\xca\x22\x3e\xab\x6f\x41\xc1\xa6\xa0\x5c\x21\xe4\xda\x6e\x58\x1b\xaa\x11\x91\x9c\x4c\x26\x78\xe9\xa5\x97\xda\xbe\x95\x5b\x5f\x3e\x3f\x56\x9d\x8d\xc7\x63\xbc\xf9\xe6\x9b\x98\x4e\xa7\x32\x8e\x63\x7c\xfa\xd3\x9f\xf6\xd5\x0b\xaf\x6f\x59\x94\x55\x1f\x94\x9a\x14\xef\xf8\x69\xee\xee\x9f\x04\x60\x4d\xc7\xb1\x78\xf9\xe1\xa6\x96\xbd\x69\x31\x5d\xc7\xeb\xcf\xe4\xfb\xed\xb7\xdf\x96\xaf\xbd\xf6\x1a\x0e\x0f\x0f\xbb\x96\xd7\xbd\x3e\x8d\xfc\x54\x9c\x8f\x71\xa9\x43\x45\x3c\xb1\xb6\x0e\xc8\x45\x5b\x04\x40\x7d\xf4\xa3\x1f\xa5\xf5\xf5\x75\x05\x40\x6f\xb0\x43\x00\xdc\x73\x8b\x7a\x00\x62\x49\x2a\xb8\x30\x89\x9e\xd8\x98\x87\x97\xe3\x8c\x86\xa4\xc8\x02\x0c\x65\x42\x6c\xb7\x40\xa0\x02\x60\xac\x33\x88\xc8\x09\xc3\xfc\x2a\x7e\xca\xa8\x52\x66\x79\xb5\x29\x46\x89\x5b\xf2\x18\x88\x2c\x46\xc6\x80\x17\x3e\x4f\x54\x04\x15\x45\x6c\xa9\x50\x87\x27\xfd\xf4\xde\xd1\x20\x3d\x52\xe5\xb9\x45\x9a\x79\xe1\x23\x0e\x35\x1e\x8f\x31\x99\x4c\x7c\x08\xb4\x89\xad\x68\x1a\x61\xf1\xb0\xbe\x11\x42\xdb\xc8\xeb\x34\xae\x6e\xd4\xf7\x38\x71\xb5\x95\xa9\x29\xed\xa6\x67\x8f\x9b\x87\xba\x78\x9a\x46\xd8\xff\xdd\xae\x6d\x64\xdf\xf4\xdd\x1f\x37\xee\xae\x7e\xeb\xf4\x49\x5b\x9e\xba\x8c\xbe\xea\x9c\x6f\x94\xd7\xf4\xdd\x7c\xe9\xb4\xc9\xb0\xc5\x2a\x34\xb8\x36\xa6\x88\xa7\xcd\xfd\x9b\x91\x79\x4d\x1c\x75\xf1\x71\xc6\x83\xe7\x93\x8f\x6a\xbb\x4c\x55\xe9\xb8\x24\xec\x32\xfb\x46\xc7\xbe\x38\xf8\x7b\x13\x66\x6f\x6f\x4f\x29\xa5\xe8\xdc\xb9\x73\x7c\x23\x36\xbd\x29\xa2\xee\x54\x15\xca\xe9\x23\xbe\x89\xa1\xde\xb1\x56\x6f\x02\x67\x1d\x06\x8a\x92\x69\xd0\x7f\xdc\xd8\x56\xb3\x0e\x0b\x14\x87\x83\x52\x79\x96\x56\xca\x7e\xf5\xf4\x7d\x5a\xe4\x43\x8e\x46\x23\xf9\xca\x2b\xaf\xa8\x1b\x37\x6e\x60\x6f\x6f\x8f\xd7\x07\xaf\x27\x57\x46\xda\x64\xd6\xc8\x65\x92\x24\xb4\xb7\xb7\x27\x0f\x0e\x0e\x48\x29\x65\x4d\x1d\xb1\xfa\xd0\xfd\x83\xd9\xec\x0d\x36\x18\x5b\xd6\xfc\x2d\x50\x18\xd7\xa2\x38\x57\x0c\x1e\x3b\x16\xc6\xd6\x68\xf0\xa2\xd9\x1c\x9e\x96\x02\x72\xa6\xe5\xb5\xd7\x5e\xc3\xfe\xfe\x3e\xcf\x5f\x5d\x5d\x34\xb5\xa9\xa6\x3a\x6a\x64\xaf\x7c\xc0\xa5\xa9\xb2\xdb\x84\xd6\xf7\x01\xcd\x6f\xbf\xdf\xa7\xf5\xf5\x75\xf4\x7a\xbd\x02\xb3\xe4\x07\x6d\x15\xb6\x2d\x02\xe5\x32\xe9\x50\x02\xf1\x5a\x12\xae\x9d\x9b\x46\x4f\xad\x2c\x83\x33\x02\x24\x48\xa3\x03\x30\x56\x84\x5d\xe7\xdb\x3f\x97\x4c\x4a\x0e\x74\x94\xb1\x5b\xd1\x3e\xf3\x93\x40\x35\xd0\x50\xc5\x86\x8a\x25\x38\x21\xb2\xcf\x42\x22\x82\x39\x3d\xd4\x30\x3f\x54\x18\xf1\x12\x63\x63\x4c\x9e\x98\xb1\x2d\x99\x13\x4e\x85\x22\x35\x9b\xf4\xe4\x83\x83\xd5\xe5\x03\x19\x98\xd3\x79\xf5\xe9\xa2\x59\x31\x72\x90\x67\xcf\x9e\xa5\xa3\xa3\x23\xb5\xbb\xbb\x6b\x66\x9b\x58\x3d\xfa\xe8\x64\x57\x49\xb9\x42\x51\x17\x86\x3f\xf3\x3d\x97\x2d\xfe\xa8\xe6\x8f\x7f\x02\xed\x7c\x69\xc3\x73\xed\xf3\xe3\xbe\x83\xf3\xbc\x4e\x69\xe8\x30\x12\xd5\xb8\x79\x59\xdc\x3a\x72\xf3\xd3\x36\x0d\xc1\x3b\x99\xb6\x72\xd7\xd5\x81\xaf\x6e\xbb\x86\xa9\x2b\x5f\xd3\x77\x6b\x2b\x23\x8f\xbb\xad\xdc\x3e\x70\xd0\xf4\xcc\x75\x4d\x32\x0b\xf8\xbf\xbb\x2f\x3e\x9d\x37\xb0\xe7\x75\x65\xee\x0a\x50\x9a\x5c\x9b\x3c\xd6\xb5\x41\x77\xe4\xa9\x65\x87\x3f\xf7\xe5\xa9\x4e\x16\xc8\xe3\x5f\xd5\x5c\xbb\x71\xfa\x1c\xff\x76\x6e\x9a\xae\x3c\xb8\xd7\x3e\x67\xc9\xd5\xce\xce\x8e\x8c\xa2\x88\x8e\x8e\x8e\x54\xaf\xd7\x43\xaf\xd7\xcb\x35\xb0\xbd\xf4\x5e\xa1\xd4\x8b\xba\x83\x36\xd3\x22\x28\x3b\x6b\x7d\xf8\x67\x1d\x70\x31\xf7\xcc\xd8\x77\x01\xdb\x2e\x84\x1f\x98\xa8\xff\x00\x40\x1e\x1f\x1f\xcb\xd7\x5f\x7f\x1d\xaf\xbf\xfe\xba\x0f\xb0\xf8\xca\xe7\xfb\x26\xbe\xfa\xa9\xd4\xa9\x94\x52\x3d\x78\xf0\x80\x06\x83\x81\xda\xdc\xdc\x54\xc5\xb9\x63\x0a\x80\x75\x70\x2a\x18\x88\x61\xe0\x42\xff\xf1\x03\x4b\xb9\x71\xed\x92\x95\x5b\xff\x9a\x3f\x6e\x7c\xab\xfb\x25\x36\x98\x96\x40\x0e\x58\x1e\x3e\x7c\xa8\x5e\x7b\xed\x35\x1c\x1c\x1c\xf0\xfa\x68\x02\x24\x4d\xba\xd9\xa7\x5b\x3a\xb5\xd1\x2e\x8c\x8b\x2f\x53\xbe\x8e\xce\xcd\x64\x25\xce\x87\x0f\x1f\xd2\xc5\x8b\x17\xb1\xb9\xb9\x49\x9a\x71\x51\xe5\x71\xe7\xfa\x2f\x06\x10\x01\x88\x42\x29\xe2\x73\x93\xe8\xea\xda\x22\x38\x27\x14\xc5\xa0\xd2\xa2\x85\xcc\xb1\xa1\xb6\x95\x0b\x71\x3f\xfc\x7f\x09\x20\x72\x80\x52\xa8\x0a\xb3\xad\x1d\xd9\x1a\xcf\x3d\x75\x1a\xd6\x56\xff\x79\x24\x39\x9b\x53\xf8\x53\x36\xa3\x83\x02\xbc\x94\x53\x52\x14\x12\x20\x17\xa1\x3c\x38\x5e\x49\xdf\x9f\xf4\xe4\x98\x1b\xe8\x22\x6f\x94\x32\x07\x44\xa4\x26\xcb\x3b\xa4\xb4\x00\x00\x20\x00\x49\x44\x41\x54\x93\x89\x3a\x3e\x3e\xd6\x47\x00\xb8\x4a\x08\x9e\x67\xbe\xf7\xa8\x09\xc3\x85\x46\xa1\x39\xbc\x1b\xd6\x77\x5f\xf7\xc7\x9d\x1b\xd6\xd7\xb1\xf9\xf2\xc1\xdf\xf9\x3a\x0a\x9f\x62\x77\xcb\x56\x77\x5d\x57\x47\x6e\x7e\x7c\x8d\xcf\x1d\x89\xba\x69\xa0\xc6\x5f\x97\x74\xda\xbe\xed\x69\xc3\xb4\x75\x62\x5d\x9f\xd5\xe5\xc7\xd7\xee\x4f\xa3\xcc\x79\x9d\xfa\x98\x86\x26\x7d\xe4\xa6\xe9\x93\x93\xba\xb2\x34\xc5\xdd\xa5\x63\xae\x2b\x8b\x2f\x6e\x77\xd0\xe7\x96\xd3\x8d\xdf\xa7\xcc\xeb\x64\xa1\x2b\xb0\x6b\x8a\x9b\x3b\xb7\xee\x7d\xdf\xaf\x4b\x1d\xba\xce\xc4\x75\xff\xfe\x7d\xb5\xbd\xbd\xad\x82\x20\xc0\x99\x33\x67\x54\x1c\xc7\x7c\x9a\x3c\xd3\x7b\x02\xb1\xce\xd3\x3d\x39\x9c\xaf\x88\xe1\xd7\x86\x65\x40\xd9\x41\xeb\xce\x5b\x33\x33\x1c\xfc\xf0\x81\xa3\xb1\x23\x79\xf4\xe8\x91\x7a\xf8\xf0\xa1\x7c\xef\xbd\xf7\x70\xfd\xfa\xf5\xae\x53\x19\xa7\xa9\x9f\xba\xef\x4e\xdb\xdb\xdb\x72\x63\x63\x83\x4e\x4e\x4e\x54\xbf\xdf\x57\x61\x18\xc2\xb5\x7f\x29\xfe\x34\xa8\xab\x4c\xff\xa0\x04\x63\x1c\x90\x68\xe0\x97\x39\x8c\xbf\x7b\x50\xa2\xb1\xa5\x91\x52\xaa\x3b\x77\xee\xc8\xa3\xa3\x23\xf5\x83\x1f\xfc\x00\xb7\x6e\xdd\x92\xb3\xd9\xcc\x95\x61\x9f\xce\x73\xcb\xeb\xd6\x85\x0f\x0c\xd7\xc9\x74\xa5\xfe\xba\x30\x2e\x75\x8d\xc7\x27\xcc\xdc\xf1\xc6\x61\xc2\x3d\xf3\xcc\x33\x74\xf6\xec\xd9\x82\xd8\xc8\x11\x40\x01\x60\xf4\x72\xae\x00\xf9\x7c\x66\x2c\x09\xc1\xe6\x2c\xba\x70\x66\x1e\x5e\x8a\x33\x1a\xf2\x6d\xf8\xf3\xb3\x85\xf4\x8a\x1e\x55\x9e\x1b\x84\x52\x2a\xf2\x6b\xcd\x7e\x70\x78\x03\x7b\xe7\x5c\xd2\x85\x60\xe0\xa6\x88\x24\x0f\x59\x05\x43\x0a\x25\x50\x81\x7b\xad\x4a\x40\xc3\x1d\x01\x24\x05\xc6\xe3\x5e\xf6\xfe\xfe\xea\x72\x5f\x41\x19\xe1\xca\xab\x40\xe9\x9d\x12\xd5\x85\x0b\x17\x68\xb9\x5c\xaa\x7b\xf7\xee\xb5\x29\xcf\x26\x96\xc2\xf5\xe7\x0a\xc2\x69\x46\x4d\xbe\x78\xba\xf8\xab\x1b\xed\xf2\xfb\x2e\x4c\x0a\x3c\xf7\xdc\xaf\xae\x70\xe9\x3c\xeb\x52\x1f\x5d\xea\xb6\x29\x1f\x2e\xfb\xc4\xdb\xc6\x69\x98\x9d\x2e\xdf\xa5\xae\x5e\x4f\x13\x77\x97\x8e\xae\x2d\x0f\x75\x2c\x9d\x0f\x34\xb8\xca\xda\x55\x6e\x60\x61\x9a\x64\x14\xa8\xff\x9e\xdc\x75\x91\xa7\x3a\x60\xe0\x4b\xa7\xed\x3b\x75\xe9\xb8\xdd\x70\x3e\x65\xed\xf3\xdf\x54\x5e\x5e\xaf\xbe\x32\xd7\x7d\xf7\xb6\xb8\xeb\x64\xc0\x65\x60\x7d\xfe\xda\xf4\x90\xe5\x1e\x3e\x7c\xa8\x82\x20\xa0\x38\x8e\x95\x94\x52\xf5\x7a\x3d\x00\xd0\x9d\xb4\x06\x30\xba\xb3\xe6\x1d\xb4\xd6\x9b\x19\xbb\xe6\x80\x44\x1b\xaf\xf2\xe7\xe6\xbc\xad\x22\x4e\xc3\x54\xb0\xce\x1a\xa3\xd1\x48\xbe\xf4\xd2\x4b\xea\xc5\x17\x5f\xc4\xee\xee\x2e\x2f\xb3\x76\xbe\xf2\xf9\x64\xda\xe7\xda\xfa\x4d\x05\x00\xb7\x6f\xdf\x56\xef\xbe\xfb\xae\x5a\x5b\x5b\x23\x6d\xbc\x5c\xec\x72\xad\xc3\x58\xd3\x6a\xc8\xa7\xdb\x32\x56\x2e\x05\x06\xc8\xd8\xaf\x66\x53\xac\x73\xc4\x58\xfd\xea\xb0\x2a\x4d\x53\xb9\xb3\xb3\xa3\xfe\xe5\x5f\xfe\x45\xbe\xfb\xee\xbb\xe4\x39\x7b\xa8\xad\x2d\xe8\xfc\xfa\xf4\x43\x2d\x28\x41\x89\x19\x7c\xfa\x45\x02\xdd\x97\x43\xbb\x54\xb4\x9b\x31\xb0\xf7\xbe\x8c\x99\x0c\x5c\xbe\x7c\x19\x1b\x1b\x1b\x7a\x7e\x53\x50\xbe\xc5\x3d\x15\x53\x45\x01\xe5\xcb\xa2\x63\x00\xa1\x22\x84\xc3\x45\x78\x66\x73\x1a\x5d\x1e\x2c\x83\xcd\x1c\x83\x94\x5b\x88\x1b\x30\x61\xed\x7a\xab\xd8\x91\xe7\x04\xd4\x82\x88\x62\x95\x91\xca\x41\x07\xdb\x2d\x34\xff\x65\xc0\x06\x60\xe0\xc8\x89\x43\xff\xd7\xc5\xa4\xf2\x25\x74\xe4\xc6\xce\x46\x21\x50\xc0\x72\x16\xcb\x9d\xdd\xe1\x72\x3b\x0b\xb1\x28\x84\x88\x53\xa2\xaa\xc8\x87\x7a\xf8\xf0\x21\x07\x2e\x75\x8a\xd8\x65\x18\x5c\x57\x27\x50\x26\x97\x1d\xc2\x72\xd7\x49\x21\xc1\xff\xfd\xf9\x73\x9e\xaf\xda\x06\x5c\x93\x07\x9f\x5f\x37\x9e\x36\xa5\xcf\x1b\x44\x93\x02\xef\x52\x5e\x85\x6a\x1e\x38\xdb\xe2\xeb\x04\x9b\xf2\xda\x56\x5f\x75\x79\xf3\x85\x71\x29\x6e\x77\x4a\xc2\x17\xde\x17\x87\xeb\xcf\x27\x77\x6d\xdf\xb2\x0d\x94\xc0\xf3\xbc\x4b\xfd\x77\x01\x37\x6d\x75\xd5\x25\xee\xba\x6f\xd9\x94\x8e\x8e\xc3\x37\x0d\xd4\xe4\x4e\xe3\xc7\x57\xef\xbe\x34\xbb\xb6\xf5\x3a\x36\xd4\xf7\xeb\x5e\xff\xbf\xed\xbd\x69\xaf\x26\xc9\x51\x30\x1a\x91\x55\xcf\x7a\xd6\x5e\x4e\x4f\xf7\xe9\x6d\x3c\xd3\x77\xd6\x9e\x19\x7b\x3c\x30\xf6\xd8\xf2\x80\x2d\x19\x18\xe0\x7d\xaf\x10\x12\xdf\x90\x10\x88\x3f\x05\x1f\xfc\xf5\x5a\x7c\x43\x08\x09\x24\x90\x41\x66\xd3\x35\x18\xdb\xaf\x19\x8f\xa6\xc7\x3d\xed\xde\xb7\xb3\x9f\xf3\xac\x15\xef\x87\xaa\xac\x8a\x8a\x27\x22\x2b\xeb\xe9\x86\xf7\x0a\xdd\x6c\x9d\x7e\xaa\xb2\x22\x23\x23\x33\x23\x23\x23\x22\x37\x8d\x5f\x82\xc6\xc9\x83\x07\x0f\xe8\xe3\x8f\x3f\xa6\xd1\x68\x84\x67\xcf\x9e\xa5\xf9\x7c\x4e\x9d\x4e\xc7\x5f\x0c\x5a\xf3\x30\x40\x35\xb8\x96\xbf\xcc\xeb\x52\x9b\xee\x80\x4a\x29\xa9\x2d\x32\xe5\x6b\x0b\x0b\x18\x22\x22\x38\x39\x39\xc9\x46\xa3\x11\xfd\xf3\x3f\xff\xb3\xbf\x7b\xc8\xaa\x2f\x2e\x3b\x64\x1d\xc4\x2a\x6d\x51\x72\xf4\xd6\xad\x5b\xf4\xf1\xc7\x1f\x53\xa7\xd3\xc1\xb5\xb5\x35\x9a\x4c\x26\x94\x65\x59\xc6\x94\x18\xbe\xc0\xb5\x5c\x2b\x49\xd5\xa5\xa9\x35\xe5\x8c\x4d\xbb\xd5\x14\x1f\xbf\x83\x69\x32\x99\x64\xc7\xc7\xc7\x34\x99\x4c\x68\x67\x67\x07\xfe\xe2\x2f\xfe\xc2\x1a\x5b\x78\x3b\x4b\xa5\xd6\x2a\xab\xe4\xa9\x90\x37\xc6\xf2\x68\x03\x40\xf8\x00\x3a\x4f\x0c\xaf\x18\x67\xc0\x80\x02\xa3\x31\x70\xf6\xfd\xef\x7f\x1f\x88\xc8\x5d\xbf\x7e\xdd\xc3\xd7\x56\x6f\x03\x3b\xd1\x6f\xee\x68\xb2\x33\x98\x3e\x38\xe8\xcd\x1f\x9f\x3a\x4e\xaf\xa4\xe8\x86\x5e\x21\x29\x15\x8c\x42\x01\xe1\xc3\x23\xe5\x9a\x48\xa9\x4a\x2c\x28\x1d\x39\x92\x45\xa5\x05\xbc\xb2\x53\x7e\x28\x5d\x29\xc8\xbd\x39\x54\x79\x71\x2a\x85\x07\xaa\x35\x33\x9e\x2e\xac\x3c\x33\x39\xa7\x63\xda\x9f\xb9\x73\x67\x0f\xbb\xaf\x5c\x38\xe8\xfe\xfb\xcf\x4f\x8f\x0e\x01\x61\x02\x8b\x2b\xc2\xbd\x9b\x94\xdf\x5d\x14\x6a\x97\xa6\x36\xb4\x42\xd3\x8a\xf8\x98\x85\xd8\x31\x79\x69\xf1\xb1\xb8\x65\xe7\x88\x0d\x16\x3c\xef\x64\x9a\x80\x6d\xaa\x93\x98\x78\x08\xc4\xb7\x29\x73\x0c\xbe\x36\x78\xda\xd6\x61\x28\xdf\x58\x3c\x9a\x80\xb3\x9e\x25\x6f\x6b\x38\xb4\x78\x0b\x4f\x13\x4d\x21\xbc\xc0\x70\x73\x78\x80\x70\x7e\x12\xa7\x95\x97\x8c\x8f\xf9\xf5\xa1\x89\x76\xad\x0e\xe5\x77\x8d\xd6\x36\xf0\xb2\x2e\xc0\x78\xe7\xf1\xb2\x0c\xb5\x3c\x3e\xfd\xf4\x53\xf8\xf4\xd3\x4f\xb3\x73\xe7\xce\xb9\xdf\xfe\xed\xdf\xce\x00\x00\x5c\xbe\xd0\xc3\x7b\xa2\xbd\x3c\xf4\xf2\xd8\x01\x2c\x1a\xa6\x52\xde\xb3\xdd\x34\xb5\xbc\xfd\x74\x94\x3f\xd1\xf9\x2f\xff\xf2\x2f\xfd\xda\x0d\x4e\xa7\x55\x47\x56\x1d\x6a\xbc\x21\xeb\xa0\xcd\x2f\x00\x00\xfc\xe0\x07\x3f\x80\x1f\xfc\xe0\x07\x19\x00\xb8\xcb\x97\x2f\xc3\xb7\xbf\xfd\xed\xf2\x5b\x92\x24\x7e\xa7\x51\x99\x7f\xb5\x84\x81\xfc\x38\x62\xdd\x33\x96\x11\x51\x79\x90\xde\x27\x9f\x7c\x02\xff\xf0\x0f\xff\xc0\x69\xb5\x82\xc6\x83\x4d\x7c\x15\x53\x57\xb2\xcf\xc9\x74\x39\x3f\x18\x44\x2d\x23\xe0\x9a\xd2\x97\x71\x1f\x7c\xf0\x81\x7b\xf3\xcd\x37\x1d\x1b\xac\xbb\x94\x1f\x6b\xdc\x87\xea\xde\xa2\x75\x22\xda\x5c\x1f\xa7\xdb\xef\xdc\x5d\xfd\xf0\xb5\x07\xc3\x6f\xac\x4e\xd2\x73\x5c\x25\xf3\x81\x4a\xad\x65\xd1\x4f\x5f\xc1\x2c\xfa\x49\xf9\x2f\x18\xe9\xa0\xe9\x1b\x43\x40\xda\x77\x11\xe6\x48\x93\xfd\xde\xfc\xe3\x4f\xce\x1d\xfd\x3f\xff\x72\x75\xff\xef\xe6\x0e\x76\x21\xbf\xbf\xc8\x9f\xda\xc8\x2d\x07\xf8\xe4\x93\x4f\xb2\xef\x7d\xef\x7b\x3e\x79\x8c\x00\x69\x12\x94\x5a\x08\x76\x1a\x25\xbf\x90\x90\xb6\xe8\xb4\x42\x2c\xfd\x31\x69\xda\xe6\xe3\xdf\x63\xea\x53\xcb\x67\x19\xa5\xce\x1a\xec\x42\x79\x72\x3a\x35\x9a\x43\x79\x6a\x83\x45\xcc\x60\xca\xd3\xc4\x2a\x1c\xf2\xbb\xf6\x1e\xa2\xd5\x8a\x7b\x1e\x4a\x6b\x8c\x30\x5d\x56\x71\x6d\x8b\xe3\x59\x60\xb4\xb0\x6c\xfd\x3c\x8f\x7a\x8d\x81\x5d\xaa\x5e\x3b\x9d\x8e\xfb\x83\x3f\xf8\x03\x4d\x69\xd4\x4e\x1b\xb7\x68\xf0\x69\x80\x3d\xd7\xf2\xfd\x93\x3f\xf9\x13\x30\x8c\xc3\xff\x2f\xd5\x8f\x0a\x93\x24\x89\xfb\xc3\x3f\xfc\xc3\x12\xbe\x50\x40\x32\xa6\xd8\xd5\xca\xa5\x28\x71\xee\xaf\xfe\xea\xaf\xb2\x9b\x37\x6f\x2e\xd3\x56\xcf\x52\x3f\xcb\xe2\x73\x00\x8b\xb7\x43\xfb\xf0\x2c\x4a\x8b\x95\xde\x8a\xf3\x1e\x05\xff\x57\xba\xfd\x10\x71\x36\x4a\xb3\xc3\xdd\xfe\xec\xfe\x71\x37\x7b\x3a\x9c\xd0\x59\x47\xe8\xb8\xa2\x00\x50\x9b\xa0\xa9\x9f\x60\xcb\x02\x8a\xdf\x3c\x7d\x7e\x03\x34\x77\xd8\x54\xdf\xd8\x7b\x91\x11\xbf\x0a\xa0\x54\x7a\x58\xda\x72\xb7\x92\xcc\xbc\x88\x07\x02\x70\x00\xdd\xe1\xd4\x6d\x6f\x1d\x76\x5f\x3f\xbf\xdf\xfd\xe9\x9d\xcd\xc9\x31\xb0\xb3\x09\xb0\xba\x9c\x8e\x7b\x5a\x64\xdd\x69\x5a\xab\x7c\x0f\xa5\xb1\x34\xdf\xa6\xb4\x56\xba\xd8\x77\x2d\xc4\xd2\xff\x9f\x95\x4f\xe8\xb9\xcd\xb7\xd8\xbc\xb5\xf2\x2d\x43\x5b\x53\xde\xa1\x7a\x6c\x6a\xe7\xb6\xf4\x3c\x6b\x1d\x3d\xab\xbc\x09\xe1\x6b\xf2\x40\xc4\xd0\x61\xf5\x9d\x58\x39\x27\xe3\x63\x60\xb4\xfc\xac\xb0\x6c\xfd\xb5\x4d\x17\x03\xaf\xd5\x77\x9b\xf2\x96\xf1\xd3\xe9\x14\xbe\xf3\x9d\xef\x94\x75\xfd\x9b\xbf\xf9\x9b\xb0\xb5\xb5\x05\x00\xfa\xf4\x7f\x0c\xfe\x9f\xff\xfc\xe7\xf0\xbd\xef\x7d\xaf\x16\xef\xbd\x0d\x4a\x3a\x8b\xbe\x26\x2f\x4c\x28\x2c\x5b\x3f\x2a\x6f\xcc\xe7\x73\xf8\xce\x77\xbe\x63\xc1\xc4\xf4\xc5\x6c\x36\xd3\x2e\xa7\x8e\x0a\xcf\xc2\x3f\x51\x0a\x8a\xf2\x9c\x01\xe8\x53\x45\x6d\xac\x2b\x9e\x26\x44\x8c\x96\xb6\x7c\xc7\xfa\xa1\x38\xb5\x7b\x14\x66\x09\x4d\x76\x07\xb3\x47\x7b\xfd\xd9\xc3\x53\xc7\xe9\x8b\x2e\xc3\x3e\x47\x1c\xbe\x09\xda\xfe\x58\xfa\x67\x6a\x6b\x59\xaa\xb3\x78\xd9\xc4\x50\xfe\x9d\xb9\x65\x16\xfa\x0c\x3f\xd5\xd7\x2b\x29\x2c\xe7\xfa\x3b\x42\x9a\xc1\xea\xc6\x49\xfa\xca\xf9\xfd\xde\x95\x3b\x9b\x93\xfb\x90\x2f\x46\x9e\x41\xa5\xb0\x00\x22\x3a\x44\xcc\x5e\x7c\xf1\x45\xc8\xb2\xcc\xfd\xfd\xdf\xff\x7d\x9b\x4e\xd1\x14\x62\xb5\xde\x65\x2d\x8f\xff\xee\xe1\xff\xaf\x8f\xff\x9c\x60\x29\x05\x6d\x07\x10\x0d\x4f\x50\x10\xb6\xc0\xad\x85\x90\x51\xd0\x06\xb7\x46\xd7\xb3\xe0\x7e\x1e\x7c\xda\x16\xc7\xb2\xf4\x69\xcf\xd9\x64\x32\x29\xe3\xff\xfa\xaf\xff\xda\x15\x6b\x23\x17\xf2\x58\x5b\x5b\x83\xdf\xf8\x8d\xdf\x00\x00\x80\x3f\xfb\xb3\x3f\x83\xfc\x34\xfe\xc5\x30\x99\x4c\x60\x32\x99\x2c\xab\x20\xb6\x29\x8f\x05\xd3\x54\xf6\x18\x9a\xb8\xf2\xe3\x8c\xf2\x34\x85\x67\x51\xbe\x9a\x70\x2c\xeb\x89\x89\x36\xd2\x34\xc5\x85\x0f\x54\x4d\xd6\x95\x89\xd8\xf8\x9e\x01\x80\xfb\xc9\x4f\x7e\x02\x69\x9a\xc2\x6b\xaf\xbd\x06\x00\xe5\x5c\x63\xc6\x7e\xfd\x21\x43\x33\xca\x2f\x5d\xdc\xdd\x1b\xcc\x1e\x8e\x53\xda\xef\x4c\xa0\x54\x5c\xb0\xfc\x8f\x79\x42\x6a\x4a\x85\xe9\x43\x51\x63\xa8\xf2\xa3\x54\xee\x14\x8f\xa6\x88\x5e\xb8\xdb\x08\xb8\xf6\x9f\x2b\x30\xd6\x14\x95\xff\xe0\x08\xba\xc3\x69\x72\xe5\x85\x83\xce\xeb\xa7\x8e\xd3\x4f\x76\x86\x33\x7f\xb1\x97\x3f\x31\xb2\x54\x18\x7a\xbd\x1e\xac\xac\xac\xf0\x36\x09\x29\x16\xda\x77\x2d\x34\x09\x6d\x99\x36\x24\x3c\xad\x69\x0e\x4b\x99\xd5\xe0\xfd\xbb\x45\xbb\xc4\xa7\x3d\x6b\xdf\x24\x3d\x31\x74\x5b\xcf\x4d\xf9\x48\xbc\xda\xb7\xa6\x7c\x9a\xe8\xd1\xf2\x54\x5d\xe9\x0d\x74\xc6\x94\x2f\x04\x67\xb5\x91\x05\xd7\x14\x62\x15\xe8\x58\x1c\x5a\x59\x63\x14\x94\xe7\x21\x88\x9f\x97\x12\xb3\x4c\x68\xf2\x88\x86\xe2\xdb\xd6\x43\x13\xdd\x6d\xdb\xaf\x91\x6e\xe5\x3e\x9c\xf2\xfd\xe0\xe0\xc0\xfd\xf9\x9f\xff\x39\x00\x80\x3f\xcd\xb5\x6d\x3b\xf0\x20\x79\xf8\x59\xea\xd5\xc2\x6d\xe1\x7b\x16\x1e\x0c\x8d\x11\xb1\xb4\x36\xa5\xe5\xf2\xe4\x59\xf8\x76\x19\xbe\x2f\xf3\xb6\xce\x71\xf1\x85\xe7\xdb\x91\xe4\xb3\xb5\x05\xaf\x91\xd8\xf1\x78\x4c\xa7\x4f\x9f\xc6\xed\xed\x6d\xf4\x01\x00\xfc\xce\x22\x87\xf9\xb9\x2e\xf9\x61\x74\x08\x29\x00\xa5\xc3\x49\xb2\x71\xfa\xa4\x73\x7e\x38\x71\x67\x6b\x53\x43\x82\x18\x60\x5f\xf8\x85\x89\x40\xb8\x30\x8d\x23\x1d\x27\x39\x8e\x7c\x61\xad\x5f\x9c\xeb\x17\xde\x02\x54\x4a\x0b\x15\x73\x3f\x95\x5e\x53\x51\x51\x2a\x2a\x62\xe7\x53\x99\x5f\x71\xf8\x0b\x12\x38\x40\x98\x1e\x75\xb3\xcf\x1e\xad\x4d\x1f\x41\xb5\xb5\x2f\x03\x80\xda\x29\x92\x69\x9a\x52\xbf\xdf\x87\xbb\x77\xef\xfa\xd5\xd6\x0e\x16\x77\x09\xc8\x38\x60\xef\x9e\xac\x0c\x16\xdb\xcb\x29\x69\x9c\x80\xe5\xb8\xb5\x15\xf6\xd6\xee\x03\x6d\x05\xb9\x45\xa3\xd6\x61\x64\x19\x43\xcf\x56\xbe\xa1\x9d\x01\xbc\x7c\x99\xf8\x66\x95\xc7\xca\x47\xe2\xb5\xfa\x85\x86\xdb\x3f\xf3\x3e\xa6\xd1\x63\xd5\xbf\xfc\xd6\x44\x67\x4c\xf9\x42\x34\x80\x91\xc6\x82\x6b\x0a\x5a\x1a\xb9\xb3\x4a\xf2\xa9\x46\x8b\x0f\x1c\x56\xf2\x70\x28\x9d\x5c\x22\x67\xc1\x3b\xb0\x69\xb2\xe8\x8b\xa1\x5b\x83\xb7\xe8\xe6\xf1\xb2\xef\x73\x19\xad\x95\x7f\x59\x9a\xac\xfa\x91\xf4\xf2\x1d\x67\x31\x7d\x2b\x14\x2c\x18\xde\x57\xfc\x69\xe3\x74\x78\x78\x18\xe2\x77\xad\xce\x42\x74\x49\xfe\xab\xe5\xa9\xa4\xb3\xf0\xb7\x29\x73\x13\x0f\x3a\xf1\xde\xd4\xf7\x42\xed\x64\xc9\x2f\x2d\xad\x26\x4f\x62\x70\x58\x79\x5a\xfd\x2b\x94\xae\xcc\x5b\xb3\xc8\xb9\xd5\x62\x59\xf3\x99\x88\xb3\x32\x93\xbf\x35\x78\xbf\x0a\xba\x58\xd9\x2c\xf1\x96\x27\xff\x4d\x13\x1a\xed\x0f\x66\x8f\xf7\xfa\xb3\x87\x33\x47\x23\x5e\x52\xb9\xb0\xb6\x0c\x04\x90\x9f\x5a\xcb\x01\x03\xf5\x53\xec\x42\xca\x47\x8f\xfa\x8a\x18\x76\x44\x4c\x11\x8b\x35\x67\xcc\xe2\xc4\x92\xf0\xc2\x40\x31\xa5\x55\x20\x43\x00\x70\x04\xfd\xd5\x49\xf2\xd2\x85\xfd\xee\xab\xc3\x89\x5b\x45\xc0\x2e\x11\x75\xa1\xd8\x61\x54\xdc\xc3\xe1\x00\xc0\x0d\x87\x43\x77\xf9\xf2\x65\x9f\x7d\x8c\xa5\x13\x6a\x57\x0e\xa7\xc5\xfb\x38\xcb\x9a\x96\xb8\xb5\xbc\x9c\x02\x2b\x71\x3a\x01\xab\x59\x20\x4e\x81\x0b\xe5\x2b\xe3\xad\xba\x90\xbc\xa9\x79\x62\x42\xf0\xa1\x60\xe5\x69\xd1\xc7\xd3\x58\x1e\x83\xa6\xe7\xd8\xef\x5a\xbc\x55\xbf\x19\xe8\xe5\x0e\xf1\x40\x13\x7f\x34\xd5\x5f\xe8\xbb\xe6\xe5\xb1\x9e\x63\xdb\x93\xbf\x87\xac\x6a\x99\x4f\xc8\xf3\x64\x85\x58\x7e\x95\xcf\x16\x1d\x21\x0f\x40\xac\x35\xdc\xd4\x3f\xe4\xb3\xcc\xc3\x82\x91\xb4\xb5\xe1\xe1\x10\x4c\xa8\x6f\x85\xe0\xb4\xba\x6c\x92\xa1\x5a\xb0\x3c\x21\xda\xf7\x98\x3e\xec\xdf\x2d\x1c\x5a\x3e\x4d\xde\x43\x2d\x8f\x36\xa1\xa9\x1f\x3d\x0b\xaf\x37\xc1\x47\xf7\xe7\xb6\xb7\x43\x6b\x15\x26\xb5\x01\xa9\x71\x6b\x1a\x1b\x38\xe7\xb0\xdf\xef\xd3\xc6\xc6\x86\xb7\x0c\x1c\xe4\xbe\x08\x7f\x63\x74\x07\x72\xaf\x4b\x87\x00\x3a\x8e\xb0\xbb\x36\x4e\x4f\x9d\x3a\xe9\x5c\xe8\xce\xdd\x4a\xee\xd5\x80\xd2\xa3\xb2\xb8\x92\x05\xeb\x5b\x9b\xa1\xbe\x88\x77\x11\xdc\xaf\x6d\xa9\x54\x17\x7e\x13\x34\x00\x94\xe7\xc3\x14\xe0\xb5\x6d\xd4\x8b\xb9\x2f\x3e\x81\x4f\x93\xcf\x39\x21\x12\x76\x11\xf0\xe4\xe9\xca\xec\x67\x07\xfd\xd9\x11\xb8\xf2\x0a\xf7\x8c\x1f\x48\x57\x3c\xd3\x7c\x3e\xf7\x77\x65\x70\xed\xdf\x07\x5e\xbf\x9a\x96\x2d\xad\x01\xcd\xab\x66\xb5\xb5\xff\x26\x3d\x3e\x3c\x5f\x1e\x34\x4b\x5c\xc2\x86\xe8\x5d\xd0\xb0\x15\x7c\x56\xf9\x24\x8c\x86\x5b\xf2\xa6\x46\xa3\x56\xc6\x58\x0b\x31\x64\x8d\xf3\x6f\x08\xf5\x72\x6a\x69\xda\x58\xe7\x96\x67\xc0\x82\xe1\xef\xa1\xf6\x92\x78\x2d\xab\x33\xb6\xcd\x7d\xf0\x38\xac\xb6\xd3\xe0\x42\xd6\xbb\x55\x5e\x99\x4e\xeb\x3b\xa1\xfe\xa2\x59\xc1\xd2\x02\x6e\xf2\x3e\x5b\xdf\xad\x3e\xa7\xd1\xa3\xf5\x49\xfe\x2c\xcb\xcf\xfb\xb6\x86\x53\x2b\xb7\x84\x6b\xe2\x39\x9e\x8f\x05\x13\x83\x2f\xb6\x8d\x65\x3e\xb2\x3d\x24\x9c\x35\x6e\xf1\x3c\x2d\x7a\x39\x4d\x3c\xbe\x49\x4e\x5a\xf8\xfc\xb3\xec\x3b\x96\x67\xcc\x6a\x4b\xad\xde\x3c\x0c\x1f\x7b\x79\x9c\x35\x5e\x48\x7c\x4d\x6d\xac\x95\xbd\x2d\x0e\x09\xd3\x54\xaf\x3e\xae\x2c\x9b\x35\x55\x64\x15\x34\x54\x69\x1c\xb1\x35\x8d\x54\x0e\x94\x07\x07\x07\x98\xa6\x29\x5c\xb9\x72\x85\xcd\x16\x81\x7f\x70\x7e\x97\x0d\x00\x74\xf2\xe9\x22\xe8\xf4\x67\x6e\xed\xf4\x49\xba\x35\x9c\x24\x67\xb1\x98\x6f\xc9\x6b\x83\x4d\x1d\x51\xa1\x70\x14\x9a\x0d\xa1\xa1\xae\x50\xbd\xa6\xaa\x7b\x90\xf4\x75\x30\x39\x75\x55\x8c\x3f\xf6\xbf\xba\x94\xb1\xba\x24\xc0\x5f\x08\xe9\x51\xd5\x76\x1b\x15\x77\x1c\x15\x38\x5d\x92\x61\xe7\xa4\x9b\xdd\x78\xbc\x3a\x7d\x38\x75\x34\x01\xac\x0e\x46\x2a\xd6\xfb\x10\x22\x42\xb7\xdb\x85\x33\x67\xce\xd0\x8f\x7f\xfc\x63\x62\x64\xc9\xb6\x40\xa8\x93\x2c\x19\x1f\x45\x5a\xee\x16\x0a\x31\xde\x32\x03\x78\x53\x08\x29\x3f\xcb\xe0\x8f\xed\x88\x16\xff\x5a\xf8\x96\x0d\xa1\xf4\xcf\x52\xee\x10\xcd\x21\xe5\x73\x59\x9c\x56\x78\x1e\x3c\xa0\xd5\x43\x48\xd9\x6a\xca\x33\xd4\x96\x4d\xca\xb6\x0c\x52\x59\xd1\x06\x48\x60\x71\x1a\x4e\x99\x67\x48\xd9\x88\x2d\x9b\x06\x1f\xa2\x0d\x8c\x6f\x21\x5a\xdb\x86\x26\xa5\x2d\x26\xcf\x65\x65\xcb\xb2\x3c\x01\xa0\x2b\x0c\xb1\x0a\xb9\x86\xbb\xc9\x60\xb4\xd2\x35\x0d\xfa\x21\x63\xcb\x52\xd8\x78\x1c\x9f\x42\x08\xf1\x51\x28\x58\x8a\x8f\x46\x13\x0f\x4d\xfd\x2e\xa6\x7e\x7c\x5c\x19\xdf\xb4\x38\x97\x23\x6f\x5a\xe0\x63\xb9\xfa\x43\x30\xd2\x85\xc7\xa7\x8a\x26\xfc\x6f\x92\x64\xc7\x7b\x83\xd9\x83\x9d\xc1\xec\xfe\xe9\xa3\xce\x4b\xdd\x0c\x87\xd5\x2d\xcf\xb9\xd2\x41\x20\xbc\x24\xa8\xad\x86\x29\xde\xb0\x4c\xad\x4f\xf7\x10\x00\x30\x18\x1f\xaa\x83\xe8\xea\x17\x2e\xfa\xc4\xe8\x77\x17\xb1\x5c\xbd\x12\xa5\xec\xd3\x76\xdd\x99\xdb\xde\xde\xeb\x7e\xe9\xd6\xa9\xce\x67\x93\xb5\xc9\xf1\xac\x50\x5e\x8a\x2b\x10\xf8\xa2\x65\x48\x92\x04\x2e\x5d\xba\xe4\x6e\xdf\xbe\x2d\xdd\x85\xdc\x83\xc2\x9f\x65\x08\xa5\xd1\xe0\x64\xfb\xf0\x34\x9a\x46\x1c\x5a\xd0\x26\xe1\x2c\x5a\x2c\xbc\x16\x9e\x10\x8f\x49\x38\x10\x69\x42\x96\x98\x95\xc6\x0a\xa1\x34\x4d\x65\x68\x0a\xa1\x36\xe5\x21\xc6\x95\x1d\xaa\x87\x26\x7a\x39\x3e\xab\x8f\x87\x42\x4c\x3d\x34\x7d\x8f\xc1\xa1\x3d\x37\xb5\xb5\x0c\xda\xf4\x4b\x08\xbe\x09\x9f\xc5\xa7\xcb\xd2\x15\xd3\x2f\x2c\x78\xad\x9d\x2d\x7e\x8d\x79\x6e\x9a\xce\x8a\xad\x63\x2b\xb4\xc1\x09\xca\xf7\x18\xba\x9b\xea\xc1\xc2\xef\x4e\x9f\x3e\x0d\xc3\xe1\x50\xa3\x55\x8d\x7b\xfa\xf4\x29\x1c\x1f\x1f\xcb\xfc\x43\x79\xc4\xb6\x89\x15\xa4\x3c\x8f\xc9\x33\x84\x63\x59\x3a\x34\x98\x18\x3d\x63\x21\x3e\x15\x1f\x39\xb2\x58\x61\x22\x3b\x48\x88\x80\x5a\x18\x8d\x46\x70\x70\x70\x90\xad\xaf\xaf\x3b\x00\xf0\x07\xe3\x64\x00\xb5\x53\x74\x67\x00\x30\xcb\x1c\x8c\x0e\x7a\xf3\xdd\x27\x2b\xd3\xbb\xdb\x7b\xbd\xdd\xce\x08\x87\xa5\xc2\x80\x6c\x51\x2c\x40\xe9\x01\xa9\xd4\xbc\xc2\x0b\x82\xdc\xfb\x51\x3f\x39\xb7\x9c\x2a\xaa\xe9\x37\x8b\xbe\x1a\x8e\xbf\x8c\x60\xd3\x46\x25\x5c\x81\xbb\x52\x82\x16\x4f\xf0\x45\x40\x70\x40\xdd\x53\xc7\x9d\x77\x2f\xee\xf6\x7e\xb0\x3b\x98\x3d\x3e\xea\xce\x8f\x29\x5f\xe7\x92\x16\x87\xd1\xf9\x6b\x11\xb2\x7e\xbf\xef\x7e\xfd\xd7\x7f\x3d\xfb\xd3\x3f\xfd\x53\x59\xcf\xa1\x8e\x68\x85\x26\xc1\xe9\xbf\x35\x29\x40\x16\x3e\x8b\x1f\x42\x02\x44\x4b\x63\xd1\x17\xc2\x27\xe1\x9a\x94\x9b\x26\xdc\x16\x9e\x98\x34\xa1\xfc\x62\x3b\x7d\x53\x9d\x36\xa5\xd1\x06\x28\x8d\xae\x98\x3a\x8d\x55\x68\x42\x34\xc9\x74\xcb\x28\x33\x21\xdc\xda\xb3\x65\x8c\x59\xed\x6a\x0d\xea\x1a\x4c\x08\xb7\x16\x9a\x04\xfe\xb3\x0c\x46\x56\x9d\x71\x3a\x63\xea\x5b\x83\x8d\xed\x43\x6d\x06\x33\x0e\x17\x33\x68\x4a\xbc\x6d\xea\x4a\x3e\x6b\x34\x58\xf9\x96\xdf\xce\x9c\x39\xc3\xe9\x80\xf7\xde\x7b\x0f\xae\x5e\xbd\x1a\x7b\x28\x5e\xf6\x2f\xff\xf2\x2f\xf0\x8b\x5f\xfc\xa2\x4c\x3f\x99\x4c\xe0\xe0\xe0\x20\x56\xb1\x92\x74\x69\x65\x68\x52\x52\x83\xf4\x19\xf1\x16\x3f\x34\xf1\xba\x85\xdb\xaa\xef\x28\x99\x93\x06\x3e\x36\x75\xd2\xd8\x81\x4f\x86\x52\xc0\xdd\xbc\x79\x33\x23\x22\xf7\x6b\xbf\xf6\x6b\x32\xcd\x0c\xa0\xbc\x83\x62\x52\x6c\x15\x9e\x8d\xd3\xec\xf8\xe9\x70\xfa\xf0\xa0\x3f\xbb\xbf\x36\x4e\xb6\xa5\x37\x85\xfc\x8d\xd1\x5e\x69\x29\x15\x92\x4a\x83\x28\xa7\x8e\xb8\x07\xa4\x88\xab\xcd\xa1\x60\x0d\x75\x5d\x11\x11\xeb\x56\x72\x14\xd2\x33\x53\x4b\x5e\x28\x44\xc8\xfc\x3e\xa5\x06\x05\x83\xa9\x7b\xf1\xd2\x6e\xff\x4b\x77\x36\xc6\xb7\x46\x69\x76\x58\x78\x5d\x4a\xe5\xa5\x38\xd3\xa5\x3c\x90\x6e\x30\x18\xb8\x93\x93\x13\x5f\x57\x21\xaf\x00\xff\x16\x1a\xb0\xda\x5a\x58\x6d\x3d\x09\x21\xe5\x21\x56\x08\xc5\x7e\x8b\xb5\xb6\x9f\xc5\x8a\x6f\x03\x17\x53\x6f\x96\xb0\x69\xca\x77\x99\xef\x6d\xdb\xba\x29\xaf\x18\x65\x27\x26\xbd\xe4\xcd\x26\x21\x17\xa2\x39\x46\xf8\x3d\x6b\xb9\x3d\x8e\x90\x52\x1c\x33\x08\x69\xf9\x34\x29\x4a\x92\x06\x2b\xb4\xe9\x17\xcf\xab\xbe\x35\xbe\x6e\xc2\x11\xe2\xa1\x10\xff\x2e\x43\xb7\x15\x6f\xca\x26\xe7\x1c\xf4\x7a\xbd\xb2\x1c\xbf\xf3\x3b\xbf\x03\xc5\x0e\xd8\x5a\xe0\xd7\x10\x18\x4a\x4c\x06\x00\xee\x97\x7e\xe9\x97\xe0\x97\x7f\xf9\x97\xcb\xc8\x3b\x77\xee\x64\x7f\xf3\x37\x7f\x53\xe2\x2b\x64\x7b\x28\x58\x72\x2d\x24\x93\x63\xe5\x75\x93\xf2\x18\x93\xae\x6d\x7d\xcb\x71\x2a\x94\x0e\x00\xc2\x6b\x5c\xe4\xbc\x73\x26\x7e\x43\xf3\x55\xa1\x39\xf8\x1a\xd1\x9b\x9b\x9b\x78\xed\xda\x35\xbe\x80\xc8\xc3\xf9\x2b\x01\x52\x44\xec\x00\x40\x3a\x47\x48\x10\xb0\xb3\x3e\x4a\x36\x4f\x9f\x74\x2e\x26\x19\x76\xcb\xb5\x26\xe5\xda\x93\xfc\x19\xfd\xe2\x5c\x80\x9a\x02\x93\xcf\xda\x88\x4b\x1a\xa1\x3a\x78\x4e\x4e\xf3\xf0\xfb\x87\x00\x74\x86\x24\x89\x03\x84\x67\xa6\x28\x59\x7d\x1a\x0a\xca\x35\x35\x0e\x30\x49\xf3\xb5\x2e\x37\x77\x87\xb3\x47\x93\x94\xc6\x80\xb5\xdb\x4f\x09\x20\xdf\x22\x8d\x88\xf8\xce\x3b\xef\xe0\x4f\x7e\xf2\x13\x9a\xcf\xe7\x72\x7e\x5d\x9b\x73\xe5\x0d\x5e\x73\x4c\x89\xf8\x65\x9e\x43\x6b\x0a\x64\xd0\x78\x4a\xf2\x0a\x9f\x7f\xcd\x14\x38\x8b\xef\xac\xb5\x02\xa1\xb9\xd7\x50\x5e\x5a\x7a\x8d\xf6\x26\x38\xeb\x5b\x53\xfd\xc8\x45\x6c\x5a\xb9\x63\xd7\x04\x68\xe9\x62\xeb\x3e\x34\xaf\x1d\x6a\x0b\x2b\xf0\xb5\x22\x52\xce\x48\xde\xe4\xf8\x25\x1c\x18\xf1\x5a\xb9\x62\x64\x95\x7f\xd6\xd6\xb2\x84\x84\xb3\x25\xeb\xe4\x37\x8b\x06\x59\x06\xab\x9c\x1e\x87\x8f\xd7\x64\xb4\xcc\x5b\xe2\xd0\xea\xc7\x19\xcf\xb1\xed\x10\xaa\x6f\xfe\xcd\xaa\x63\xc9\x0f\xfe\x17\x8c\xe7\x4c\xa1\x4b\x2b\xaf\x1c\xe8\x62\xca\xa3\xd5\x05\x02\x00\x6e\x6f\x6f\xc3\xef\xfe\xee\xef\xba\x77\xde\x79\x07\xdf\x79\xe7\x9d\x72\x41\x26\x54\xed\x80\x90\x8f\xa5\xe5\x3b\xe6\x3b\x2a\xca\xa3\x3e\xd8\x45\xc2\xe0\xbf\xfb\xfc\xd7\xd6\xd6\xd0\xe3\x7e\xeb\xad\xb7\xe8\x5f\xff\xf5\x5f\xf9\x78\x18\x92\x99\x21\xb9\xa0\xf1\xb7\xc5\x03\x00\xf5\x3a\xb6\x70\xcb\xf8\x98\xfa\xb6\xfa\xab\x6c\x07\xa9\xc8\x70\xbe\x90\x78\xcc\x35\x2e\x1c\x81\x8c\xf3\xef\x4e\x79\x0f\x69\xff\x1a\xfe\x32\x4e\x28\x04\x19\x88\x13\x74\x01\x60\x02\x08\x93\x93\xce\x7c\xff\xe1\xda\xf4\xf6\xa5\xbd\xd9\xfd\x33\xf3\xee\x35\x00\x5f\x22\xac\x8e\xdf\x5f\x38\xb0\x45\x5f\xa7\x02\x55\x62\x50\xa2\x98\x62\xc3\xa6\x77\xc4\xb4\x14\x5b\xf1\x52\xcf\x12\x20\xbf\xec\x11\x44\x8d\x17\x89\xaa\x8d\xda\x79\xc4\x60\xea\x5e\xba\xba\xd3\xff\xa5\x7b\xeb\xe3\x5b\x27\x9d\xec\x70\x96\xd0\x04\xf2\xf6\xf1\x6d\xc4\xeb\x38\xa6\x9e\x7d\x9a\x98\xb8\xff\x8a\xd0\xc6\x52\xb4\x2c\xaa\xd8\x34\x6d\x42\x2c\xfe\xe7\x91\xd7\xb2\x74\x3c\xef\xfc\x96\xa9\xfb\x36\x38\x96\xc5\xdd\xb6\xdd\x63\xea\x29\x26\xad\x66\x05\xc6\xd0\xf4\x3c\xbc\x22\xb1\x70\x4d\x9e\x0c\x2d\xb4\xf1\x42\x3d\x4b\x9f\x6b\xc2\x2d\x2d\x6d\x39\x76\xc8\x5f\xeb\xbb\x65\xb1\xcb\x7c\x9e\x55\xb6\x64\x00\x00\x6f\xbd\xf5\x16\x7c\xf5\xab\x5f\x75\xb0\x38\x3e\xb9\xc0\xaf\xa7\x53\x5e\x7a\x58\xd6\x15\x7b\xce\xc4\x3b\x20\x22\xfc\xf1\x1f\xff\xb1\x03\x80\xec\xbb\xdf\xfd\x2e\xec\xee\xee\x5a\xb4\x97\xe9\x95\xf8\x90\x57\x6a\x19\x1e\x08\xd1\xd0\x84\x73\x99\xbc\x1a\xe9\xb0\xb6\x43\x4b\x6d\xd9\xc7\x69\xd6\x7b\xc6\xde\x43\x41\x73\xf9\xd1\xc1\xc1\x01\x3e\x78\xf0\x00\xae\x5d\xbb\xc6\xb5\x50\x2c\xbe\x27\x44\x94\x94\xbb\x8b\x00\x52\x42\x4a\x11\xb0\x7f\xfa\xb8\x73\x66\x63\x94\x5e\x74\x50\xb9\xec\x4a\x97\x0d\xf3\x6e\x54\xca\x45\x45\x72\xed\x5b\xe9\xf9\xa8\x9b\x00\xfa\x4c\x65\x0e\x21\xa7\x95\x16\x26\x90\x8a\x8f\x95\xe2\x53\xa7\xad\x1e\x57\xa6\x4a\xd2\x0c\xbb\xa3\x0e\xfd\x62\xaf\x3f\x7b\x3c\x4a\xb3\x13\x02\xf2\xd7\x94\x97\x07\xd3\x41\xde\x89\xe8\xd5\x57\x5f\x85\xcf\x3f\xff\x1c\xc7\xe3\xb1\xb4\x3a\x42\xd6\x18\x0f\x21\x2b\x70\x19\x38\x99\xb7\x45\x87\xc4\x17\x4b\xbb\xfc\x26\x2d\xae\xa6\xfc\x62\xeb\x45\xcb\xd7\x4a\xa3\x59\x7d\x31\xe9\x42\x30\xff\x19\xed\x12\x13\x64\xdb\x59\x6d\x62\x59\xe9\x31\x74\xb6\xe5\xa5\x65\xd2\xc5\xa4\xb5\xbe\xb7\x7d\xd6\xf8\x38\xc6\x13\x62\x59\xfd\x6d\x82\xd5\x87\xa4\x97\xc5\x87\x98\xbe\xb8\x2c\xad\x9a\xd7\x28\x94\x4e\xa3\x15\x22\xbe\x6b\x7c\x68\x79\xac\x9a\xd2\xc9\x50\xc6\x7f\xf0\xc1\x07\xee\xc3\x0f\x3f\xc4\x4b\x97\x2e\x41\x92\x24\xdc\x5b\xe2\x3d\x2b\xde\xbb\xe2\x0f\x4a\x75\x90\xdf\x37\xe7\x10\xb1\x53\x8c\x59\xae\x78\x97\xf0\x12\x87\xf7\xc8\x38\x44\xe4\xca\x11\xbe\xfc\xf2\xcb\xf4\xd6\x5b\x6f\xe1\xde\xde\x1e\xee\xed\xed\x59\x65\x6b\xe2\xc1\x98\x36\xb6\xbe\x69\x7c\x10\xea\x5b\x6d\xfa\x5a\x13\x0d\x41\x5a\xe5\xe2\x5c\x39\x1d\xd4\x64\xe5\x87\x3c\x2d\x21\xad\xaf\x7c\xcf\xb2\x2c\x1b\x8d\x46\x5c\x3b\xe5\x5e\x9e\xac\xb8\xc3\xa7\xdc\x5d\x34\x47\x18\x1d\x76\xe7\x3b\x4f\x56\xa6\xb7\xb7\xf7\x7b\xfb\x83\x49\x72\xba\x54\x12\xa8\x52\x46\x74\xc5\xc3\x2b\x18\x5e\x01\x29\xdd\x1f\xd5\x76\x65\x2a\xfc\x27\x35\x2f\x8d\x3f\x85\x17\xfd\xab\x3f\x58\xb7\x76\x9e\x0b\x00\xd4\xce\x96\x29\x53\xd3\x82\xd3\xa7\xf4\xd1\x50\x91\x00\x11\xa1\x37\xc3\xed\xed\xbd\xee\x97\xee\xad\x8f\x6f\x1e\xf6\xe6\xbb\x53\x57\x79\x5d\xfc\x99\x2e\x50\x68\xf2\x83\xc1\x00\x84\xe6\x6e\xd5\xb3\x15\x42\xd6\x12\x88\x6f\xcb\x78\xd3\x62\x78\x22\x26\x8d\xf5\x4d\xb3\xd4\x42\xe9\x9e\x87\x47\xa6\x0d\xee\xd8\xfa\x6a\xea\x27\xcb\xd0\xb5\x4c\x78\x6e\xd6\x10\xd8\x96\xb1\xc5\x73\x1a\x9f\xb5\xcd\xc7\xa2\x31\x04\x17\x4b\x9f\xf5\x1c\xf2\x00\xc4\xb6\x6b\x53\x3b\x36\x79\x4d\x62\xd3\x3e\x0b\x8f\x7a\x5c\x31\xb8\x9b\xfa\x5b\x4c\x79\x38\x3f\x58\x38\x65\x5c\xdb\x36\x5e\x80\xf9\xd6\xb7\xbe\xe5\x36\x37\x37\x61\x75\x75\xd5\xaf\x69\x71\x00\x00\x85\x12\xe2\xd7\xb5\x98\x7f\x09\xa1\xeb\xce\x9c\x4b\x33\x74\x5e\x32\x67\x0e\xb2\xb9\x23\xc8\x80\xb2\x69\x4a\x19\x61\x39\x96\xf2\x31\xb5\xbc\xaf\x8f\xc9\xf9\xac\xdf\xef\x3b\x00\x80\x0f\x3e\xf8\x20\x4b\xd3\x14\x6e\xdc\xb8\xa1\xd1\xad\xb5\x43\xdb\x3a\xb1\xf0\x35\xc1\x5b\x7d\x21\xb6\x1f\xcb\x36\x8e\xce\x9b\x7b\x5c\xa4\x96\xcb\xe7\x7a\x43\x56\xab\x36\x47\x69\x59\x1e\xaa\x46\xb6\xb2\xb2\x02\xaf\xbf\xfe\x3a\x77\x8e\x2c\x78\x5e\x8a\xbf\xe2\x0a\x00\x48\x3b\x73\x37\x38\x7b\xd4\x3d\xbf\x32\x71\x5b\xd5\xee\xa2\x45\x05\x01\x01\xaa\xdb\x3f\xb1\x52\x5d\xca\x88\x92\xd2\x6a\x3d\x0a\x0a\x0f\x0c\x01\x2e\x2a\x43\x0c\x05\xd6\x76\x0c\xe5\x5a\x0a\x9f\x08\xaa\x34\x9d\x22\x09\x16\x9e\x96\x5a\x2d\x22\x00\x40\x92\x10\xba\x49\x4a\x0f\xf7\xfb\xb3\x07\xa3\x0e\x9d\x00\x96\x07\xd2\xd5\xbc\x2e\x00\x00\x67\xce\x9c\xa1\x47\x8f\x1e\xe1\xc9\xc9\xc9\xb2\x96\x77\x93\x20\x94\x3c\xf1\xac\x56\xfe\xf3\xf4\x10\xfc\x77\x09\xff\x1d\xeb\xa4\xa9\x4c\x92\x9f\x9a\x2c\x70\x8b\xef\x62\xea\xce\x77\x63\x6b\xde\x5d\xc3\x1d\xdb\x26\x21\x9a\x42\xd6\x69\x9b\x36\xb7\xe8\xb6\x60\x96\xcd\xa7\xc9\xb3\x42\x22\x4e\xe6\x19\xf2\x1c\x59\x5e\xa0\xa6\xf2\xc8\x3c\x43\x21\xd6\x9b\xa4\xc2\x7c\xf3\x9b\xdf\x74\x57\xae\x5c\x81\xb5\xb5\x35\x97\xa6\xa9\x1f\x77\x7c\xb9\x9c\x5f\x67\xc9\xfe\xba\xfd\xa9\xeb\x6d\x9e\xa4\xab\x5b\x87\x9d\x8d\xf3\xfb\xbd\xd3\x97\xf7\x7a\x17\xae\xec\xf6\xaf\x5c\xde\xe9\xbf\x7c\x69\xaf\x77\x75\xfb\xa0\x7b\xe5\xc2\x7e\xef\xe2\xf6\x7e\xef\xc2\xb9\xc3\xee\xe6\xe6\x28\x1d\x0c\x27\x49\xaf\x37\x73\x1d\x47\x90\x66\x08\x2e\x73\xb9\xb7\x05\x00\x80\x1d\x68\xc6\x9d\xfe\xd4\xeb\xf5\xf0\xd4\xa9\x53\x74\xf5\xea\x55\x1c\x0c\x06\xf8\xf0\xe1\xc3\x18\x9e\xf0\xdf\xda\x7a\x2e\x43\x6d\x1c\xf2\x28\x5a\xed\xda\x94\x27\x6f\xe3\x68\xef\xa3\xf7\xb8\xc4\x5a\xc2\x6d\xe6\xb7\x2c\x6b\x52\x6a\xd3\x70\x70\x70\x00\xff\xf8\x8f\xff\x08\x5f\xf9\xca\x57\x6a\x5b\xa2\x01\x60\x56\x68\xa0\xb5\xb5\x2e\x33\x47\xc7\x4f\x56\xa6\x0f\x76\x86\xd3\xdb\x67\x8e\xd3\x6b\x49\x06\x5d\xa9\x92\xd4\xb4\x20\xaf\x58\x88\x49\x23\x9e\x80\xaf\x5d\x91\x01\xe5\x33\x2e\x7e\x40\xf4\xdb\xab\xeb\x18\x72\x78\x5c\x80\xe7\xe9\xd8\x9b\xeb\xcf\xdc\xf6\x85\xbd\xde\xdb\x8f\x56\xa6\x9f\x1f\xf6\xe6\xfb\xe3\x24\x9b\x15\xe5\x2f\x2f\x60\x2c\xdc\x8a\xd9\xf9\xf3\xe7\x5d\xaf\xd7\xd3\x2c\x3d\x1f\x34\x0d\x58\x6a\xc3\xd2\x92\xe2\xf1\x9a\x15\xac\x59\xcb\x5a\x1a\x0d\x17\x4f\x23\x2d\x39\x49\x5f\x1b\x6f\x4f\x28\x8d\x85\xa7\xe9\x3d\x94\x8f\x46\x77\x6c\x78\xde\xf4\x78\x1a\x62\xac\x57\xad\x6e\x00\xc2\x75\xa5\xb5\xa5\x96\x46\xd2\x14\xa2\xcb\xb2\xde\xdb\x7a\xff\x62\x9e\x39\x2d\x12\x97\x8c\x7f\x1e\xf9\x3c\x8b\xd7\x48\x7b\x8e\xb1\x6a\x79\x88\x81\x6f\xe3\xb9\x69\x6b\x49\x37\xb5\xe5\xb2\xf1\xcb\xc8\x05\x0d\x97\xa4\x17\x3e\xfc\xf0\x43\xf7\xe2\x8b\x2f\x42\x9a\xa6\xdc\x83\xe2\xe1\xcb\xa9\x20\x20\x70\x8e\xa0\xbb\x3e\x4a\xfb\xa7\x4e\xd2\xf5\xd3\x47\x9d\x73\x9b\x27\xe9\x95\x95\x49\x72\xbe\x3f\xc3\x17\xba\x73\x77\xba\x33\x77\xa7\x93\x0c\x87\x6c\x04\xce\x08\x69\x36\x73\x74\x38\x4e\xb3\x87\xa3\x94\x1e\x9e\x74\xe6\x0f\x0e\x7b\xf3\xbb\x3b\xc3\xe9\xfd\x47\x2b\xd3\xc7\xbb\x83\xd9\xe1\x34\x25\xbe\xa6\x53\x7a\x5f\x66\xa7\x4e\x9d\x72\xa7\x4e\x9d\x82\xf5\xf5\xf5\x0c\x00\xe0\xc7\x3f\xfe\xb1\x56\x6f\x96\xcc\xb6\xea\x22\x66\x7c\x68\xaa\xcf\x65\xdb\xd8\x92\x5d\x72\x0c\x51\x69\xf0\x1e\x97\x90\x96\xa3\x7a\x49\x60\xd1\x8a\xb1\xb4\x74\x8e\x43\x56\x2c\x01\x00\xcd\x66\x33\x3c\x3e\x3e\x86\xb7\xdf\x7e\x5b\xea\x08\xc8\xdc\x73\x69\x41\x6f\x4a\x00\x1d\x42\x48\x56\x26\x6e\xe5\xec\x51\xf7\x72\x77\xee\x56\xe5\x8e\x21\xef\xe4\xf0\x44\x58\x67\xac\x94\x85\xe0\xf0\xfe\xbb\x3f\xd8\x8e\x9d\xf3\xb2\x70\x5e\x4b\x91\x20\x9f\x9f\xcc\xe7\x9c\xc8\x3b\x5e\x7c\x29\x44\xbe\x3c\xad\x77\xd2\x78\x6f\x10\x12\x74\xd2\x0c\xd3\x59\x42\xbb\xfb\xfd\xd9\xfd\xe3\x5e\x76\x04\x39\x13\x7b\x8f\x0b\x9f\x22\xa2\x24\x49\x68\x6f\x6f\x0f\x4f\x4e\x4e\xb8\x95\x82\x50\x6f\xf0\x90\x95\x43\xca\x9f\x8f\xd7\x18\x30\x64\x89\x91\x88\x93\x5e\x3b\x14\xf0\x32\x3d\x28\x30\xb1\x56\xb5\x25\xd0\x2c\xaf\xd1\x32\x56\x36\xc7\x91\x41\x73\x9a\x90\x35\x2f\x3d\x95\xcb\xd2\xd3\x54\x4f\x5a\xdb\xf0\x3c\x35\xde\xd0\xda\x47\xb6\xad\x45\xa7\x06\xef\x83\xcc\x37\xb6\xad\x2d\xab\x4c\xf2\x8d\xc6\x5f\x1e\x2e\xe4\x89\xd0\xbe\x69\x65\xe4\x3c\x26\xf3\x09\xc5\x69\x41\x83\x0f\xc9\x53\x8b\xaf\xe5\x33\xcf\xd3\xaa\x2b\x59\x1f\x4d\xb0\x1a\x8c\xcc\x4b\xc2\xc7\x58\xe6\x1c\x87\x96\x3f\x2f\x73\xa8\x7d\xb8\x6c\xb1\xf2\xf1\x34\x95\x75\x98\xa6\x29\xbe\xf7\xde\x7b\xf8\xe6\x9b\x6f\x42\x92\x24\xa5\xd2\xc2\xd6\xa6\x74\x00\xa0\x43\x44\x69\x42\xd8\x3b\x75\x92\xae\x5d\xde\xeb\x5f\x7c\xe9\x49\xff\xed\x17\x9f\x0e\xbe\x76\x71\xaf\xff\xcd\x73\x87\xdd\x0f\x4f\x8d\xd2\xaf\xac\x4e\x92\xb7\x07\xd3\xe4\xf5\xde\xcc\xbd\xdc\x9d\xbb\x2b\x9d\xb9\xbb\xd4\x9d\xbb\x4b\xdd\x39\x5e\xec\xce\xdd\x95\xde\xcc\x5d\x19\x4e\x93\x97\x56\xc7\xc9\x2b\x1b\xa3\xce\x6b\x9b\x27\xe9\xff\xb5\x39\xea\x5c\x58\x1b\x27\xab\x83\x69\xe2\x92\x0c\xb3\x69\x9a\x65\x73\x57\x79\x5b\x10\xf9\xe8\x00\x40\x44\xd8\xef\xf7\x61\x7d\x7d\x9d\x00\x00\x1f\x3d\x7a\xd4\xd4\x7f\x65\xfb\xb4\x6d\x6f\x59\x77\x5c\x96\x7b\xba\x96\xe5\xd3\xd0\xb8\xc1\x9f\x65\x19\x1c\x00\x50\x22\x23\x94\x67\x39\xe8\xf8\x42\x00\x34\x77\x62\x59\x10\x4d\x78\x02\x00\x10\x22\x62\x9a\xa6\x74\xee\xdc\x39\x82\x9c\x79\x80\xb9\xcd\x52\xb6\xe0\xc9\x5f\x03\x90\x10\x42\xe7\xdc\x61\xf7\x85\xd5\x49\x7a\x0e\x01\x9c\xdf\x02\x5d\xdb\xbe\xcc\x88\xf5\x21\xff\x94\x7f\xe1\xb5\xef\x4f\x9f\x2b\xbf\xb3\x93\x71\xb9\xf7\x86\xe3\xad\xc7\x63\xa5\x80\x20\xe4\x0a\x4c\x0d\xa6\x4e\x10\xcf\xa7\xc4\x47\x88\x8e\xb0\x9f\x10\x4e\x8f\x3b\xf3\x07\xbb\x83\xd9\xa3\x79\x02\x13\x44\x9c\x17\xdb\xa1\xcb\x93\x74\x89\x28\x3b\x7d\xfa\x34\x76\x3a\x1d\x3a\x38\x38\x80\x42\x79\xe1\xfe\x20\x8d\xa9\x64\xbc\xd6\xe9\x7d\xe0\xed\xc4\xe1\x2c\x5e\xb1\xda\xbd\xcd\x40\xcf\xf3\xe5\xb4\x4a\xdc\xb2\x0c\x99\x48\xcf\x71\xca\xc1\x5a\xc6\x49\x1a\x2c\xd7\xbb\xe4\x75\x0b\x8f\xa5\x8c\x48\xe5\xcd\xb2\xd8\x9b\x06\x07\xd9\x16\x5a\xfb\xf1\xfa\x93\xdf\x43\xf0\x6d\xea\x5e\xa3\x35\x34\xb8\xc9\x78\x2d\xce\x12\xba\x3e\x84\x70\x87\xd2\x5a\x6d\x2a\x71\x86\x82\x56\x0e\xf9\x4d\x93\x9d\x5a\x5d\x59\xf0\x1a\xbd\x12\x57\x28\x34\x19\x93\x3e\x4f\xdf\x5f\xb8\x54\x6a\xea\xd3\xd6\x00\x15\xea\x23\x32\xdf\xd8\x7e\xeb\xdf\xad\x32\x6b\x6d\xdf\xc4\x3f\xe5\x7b\xaf\xd7\x73\xd7\xaf\x5f\x87\x2f\x7f\xf9\xcb\xb5\xb5\x2b\x85\xd2\x92\xdf\x91\x47\xd4\x71\x80\x9d\xc1\x34\x59\xbd\xb0\xdf\x3b\xff\xf2\x93\xc1\x9b\xd7\x1e\x0f\xbf\xb9\xbd\xdf\xfb\xf6\xa9\x93\xce\x07\xc3\x69\xf2\x4e\x77\x8e\x5f\x48\x33\xb7\xe5\x00\xd7\x90\xb0\x8f\x80\x29\x62\x8e\x0b\x01\x1c\x12\x26\x00\x98\x38\xc4\xae\x23\x5c\x71\x84\xa7\x52\xc2\x0b\xdd\x39\x5e\x1c\x4e\xdd\x95\xf5\x71\xe7\xea\xa9\x93\xf4\xfc\xda\x38\x59\x49\x33\x07\x73\xa4\xe9\xa8\x93\xcd\x01\x80\x0f\x5c\xde\x88\xcf\x00\x00\xfb\xfd\x3e\x9c\x3e\x7d\x9a\x26\x93\x09\x3e\x79\xf2\x64\x59\xbe\x8e\xe5\x79\x4b\xb1\xb4\x64\x7a\x4c\x3b\xc8\x78\xad\x8f\x48\x79\x5d\xe3\x53\x6d\x8d\x8b\x56\x28\x4e\xb8\x13\xf1\x4d\x9d\x58\xba\x11\x55\xe5\x65\x3e\x9f\xd3\xdd\xbb\x77\xf1\xdd\x77\xdf\x05\x00\xe0\xcc\x84\x00\xc0\x57\x67\x27\x88\x98\x10\x40\x3a\x4d\x32\x3c\x75\xd2\xd9\x3c\x75\x92\x5e\xea\x64\xd8\xf7\xae\x8e\xea\xc0\xb9\x7a\x69\xeb\x45\xc1\xea\x3b\x5b\x20\x9b\x2f\x87\xa1\x72\x7a\xa9\x7e\x6d\x00\x54\x5e\x13\x0f\xc7\x71\x21\x00\x15\xf8\x91\x2a\xaf\x4e\x29\x45\xb4\x95\xbb\x50\x3f\x01\xa6\x48\x9d\xa4\x19\xa6\x19\xd2\xd1\x41\x3f\xbb\x77\xd0\x9b\xef\x17\x3b\x8c\xe6\x00\x40\x6c\xa7\x11\x20\x22\x9d\x39\x73\x06\x77\x77\x77\xe9\xe1\xc3\x87\xa5\x17\xcb\x68\x1b\x19\xcf\x99\xcf\x62\x1e\xdf\x7e\xdc\x5a\xb1\x78\xc5\x52\x10\x9a\x98\x58\xd2\xa2\xd1\xaa\xd1\x2c\x69\xb0\xca\xec\xe9\x97\xb8\x34\xc1\x2e\x71\x58\x96\x89\x7f\xd7\x94\x0f\x4b\xe0\x6a\xf5\xd2\x24\x6c\xac\xfe\x15\x2a\x33\xaf\x23\xdf\x6e\x21\x8f\x83\x85\x53\x83\xb7\xe2\x2d\x5a\x24\x6f\x71\xc5\x4d\xf2\x85\xe5\x35\xb1\x94\x25\x4b\x01\xe3\xb4\x69\x03\xa9\xc4\x1d\xcb\x9f\x4d\x8a\xbb\xc4\xcd\xdf\x35\x05\x52\x96\x41\x2b\x9b\x55\x5e\x4b\xf0\x73\x5e\xb4\xe8\x95\x7d\xda\x09\xf8\x58\xf9\x2d\xcb\x18\xca\xd3\xe7\xa5\x29\x56\x72\x7c\xd1\x60\x64\xfd\x4b\xa5\x49\x33\x94\x78\x28\xe9\x19\x0c\x06\xee\x95\x57\x5e\x81\xf7\xdf\x7f\xbf\x1c\x5f\x00\xca\xfb\xf1\xbc\x97\xa5\xd3\xcd\x5c\x6f\xf3\x24\x3d\x7d\x65\xb7\xff\xf2\xab\x0f\x87\x5f\xb9\xb2\xd3\xff\x8d\xcd\x93\xf4\x5b\xfd\x99\xbb\x9e\x10\x6e\x39\xc0\x3e\x02\x3a\xbf\xb1\x03\xd1\x8f\x01\x50\x9d\xc0\x8e\x50\x79\xd9\xb1\x1a\x13\x80\xa0\x93\x80\xdb\xe8\xcc\x71\xbb\x3f\x73\x2f\xae\x8d\xd3\xcb\x9b\x27\x9d\xcd\xee\xdc\xcd\xc6\x29\x1d\x8f\x3b\xd9\x2c\x2b\xa6\x11\x0a\x23\x9e\x88\x08\x01\x20\x43\x44\xec\x76\xbb\xf0\xc2\x0b\x2f\xd0\xe1\xe1\x21\xec\xec\xec\xf0\xf2\x5b\x7c\xa1\x19\xac\x31\xcf\x52\xe6\xf3\xb6\xb4\xd2\x49\x5d\xa1\xa9\xfd\x3c\x8c\xc6\x53\x72\x8c\x02\x80\xba\xe2\x62\x05\xd9\xf1\xa5\xd0\xd1\x60\x7d\x08\x59\x0d\xb2\xb3\x80\x73\xce\x2b\x2e\xd2\x6b\xe0\xb7\xa4\xd5\x2e\x5e\xcc\x1c\xb8\x4e\x86\xdd\xad\xc3\xee\x95\xc1\x2c\x59\x47\x28\xf6\xce\x23\x80\x3f\x44\x97\x2b\x09\x08\x22\xa2\x60\xae\xf2\x90\xb8\x72\x81\xae\xbf\x1d\xba\x9a\x1e\xf2\xc8\x10\x20\xd7\x8f\x7c\xba\x02\x65\x95\x17\x2e\xe4\x5b\x7d\x12\xf7\x29\x51\x15\x5f\x16\x18\x0b\xd4\x04\xbd\x24\xc3\x6c\x92\xd2\xa3\x27\x2b\xd3\x87\xf3\x04\x26\x50\xcd\x79\x97\x4a\x8b\x2f\xc9\xfe\xfe\x3e\xed\xee\xee\xe2\x64\x32\xb1\x04\xaf\x16\xac\xc1\x9f\x93\x1d\x1a\xec\x42\x1a\x72\xd3\x20\x16\xa2\x25\x86\xe6\xd8\x8e\x17\x1a\xe4\xb4\x41\x2f\x46\x71\xb0\xbe\x87\xac\x53\x4b\xd0\xc7\x96\x3b\x34\x58\x86\xac\x79\x2e\x78\x9a\x2c\xf6\x36\xd6\x51\x13\x4d\x3c\xad\x9c\x1e\x96\xe9\x3c\x7d\x96\x5c\x91\xf2\x07\x94\x67\x09\x6b\x29\xcd\x31\x75\xa5\x95\x8d\x0f\xba\x12\x7f\xaa\xb0\xb1\x98\x00\x00\x20\x00\x49\x44\x41\x54\x4c\x3d\x68\xb4\x84\xca\xa3\x0d\x02\x4d\x2e\x78\x8b\x77\xb9\xe7\x8d\xe3\x94\x4a\xa4\x25\xaf\x2d\x65\x32\xd4\xcf\x24\x1e\xab\x0c\x72\x20\xd4\x8c\x12\xcf\x23\x72\x8d\x8b\xe4\x8b\x50\x9b\x64\x00\xe0\x06\x83\x01\x5e\xbb\x76\xcd\x9f\xcf\xe2\xbf\xa5\x90\x1b\xc4\xe5\xc2\xdb\xee\xdc\x0d\xb6\x8e\x3a\xe7\x5e\x7d\x38\xfc\xe2\xab\x0f\x87\xdf\x3e\x77\xd8\xfd\xf5\xc1\xd4\xbd\x97\x66\xee\x34\x22\xba\x85\x3b\xec\xca\xea\x5b\x1c\x77\x3c\x71\x3c\xca\x8f\x1d\x08\x00\xc1\x35\x3e\xca\xe8\x1c\xe1\x30\xcd\xf0\x42\x7f\x96\x5c\xdd\x18\xa5\x67\x56\x27\xc9\xf4\xb8\x9b\x1d\x8c\x3a\xd9\x64\x8e\xb9\xa2\xe2\xcb\x55\x3c\x67\x00\x80\x9d\x4e\x07\xae\x5e\xbd\x4a\x0f\x1e\x3c\xc0\xc3\xc3\x43\x9f\xab\x56\xbf\xdc\x88\xd1\xe4\xa1\x25\xb3\xe5\x78\xcd\x79\x25\x96\x1f\xad\x67\x50\xe2\x2d\x65\x97\xc3\x2e\x78\x5c\xb4\x84\x4d\x1d\xbf\xad\xb5\xa8\x09\xa9\x12\x06\x11\xf1\x0b\x5f\xf8\x02\xf4\xfb\x7d\x2a\x1a\x96\xef\xa1\xcf\x3d\x2d\x95\x2b\x2f\x05\x80\xce\x38\xa5\xec\xdc\x51\xf7\xfc\xfa\x38\xd9\x4a\x33\xec\x79\xc5\x21\x9f\xaa\x29\x4e\xd0\xf5\x59\x12\x56\x4a\x03\xf8\xfb\x8c\x3c\x4c\x75\xbf\x11\x32\x22\xbd\x02\xc3\x15\x12\x2e\x01\xfc\xbb\xc7\x97\x6b\xd3\x54\x2a\x29\x20\xf1\x21\xc7\x0b\x50\x5e\xe4\x28\x38\x1b\x01\xd3\x84\xb0\x8b\x00\xa3\xe3\x6e\x76\x67\x67\x30\xdb\x85\xea\xe6\x68\xff\x47\xc5\xb4\x11\x9d\x3b\x77\x0e\x67\xb3\x19\xdd\xbd\x7b\x37\x46\xab\xd6\xde\xb5\x38\xc9\x44\x12\x5e\x76\x04\x4d\x68\x49\xfc\x9a\x25\x64\xd1\x1c\x2a\x83\x36\xe0\x48\x6b\xdb\xea\x84\x16\xde\x98\xc1\x59\xab\x07\x9e\x87\x2c\x9b\x85\x37\x14\x42\xb4\xc9\xb2\x58\xd6\xa7\x26\xc0\x35\xab\xcb\x12\x66\xa1\xc1\x55\x2b\x97\x36\x6d\xc0\xd3\x5a\x38\xb8\x70\x8a\x55\x84\x62\xda\x49\xe2\xb4\x78\x33\xa4\x64\xfb\xd0\xa4\xb0\xc4\xf4\x99\x26\x25\x9a\xc3\x68\xca\x42\x93\xec\x0d\xf5\x67\x5e\xcf\xd6\x00\x22\x69\x97\xe2\x4b\x96\x45\x1b\x20\x79\x3d\x6b\xb4\x4a\xfe\xf3\x69\xb5\x81\x90\x97\x01\x60\x71\xfd\x9a\xcc\xa7\x91\xa6\x5e\xaf\x87\xaf\xbc\xf2\x4a\xa9\xb4\xb0\xb1\xc4\x2b\x2f\x5d\x00\xe8\xa4\x73\x1c\x9e\x3f\xe8\xbe\xf0\xda\x83\x95\x5f\x7e\xe9\xe9\xe0\x7f\xae\x8f\xd2\x6f\x75\xe6\xee\xaa\x43\x4c\x4b\xa3\x98\xcb\x71\x82\xfc\x2a\x19\x21\xc3\x6b\xb7\xca\x88\x81\x85\x9f\x91\xea\x97\x45\x38\xc2\x95\xee\x1c\x2f\xaf\x4c\x92\x0b\xeb\xa3\x74\x74\xd8\xcb\xf6\x46\x9d\xf9\x78\xee\x20\x2b\x0c\x65\xd9\x86\xe8\x9c\x83\x57\x5e\x79\x85\x7e\xf4\xa3\x1f\x41\x96\x65\x5a\x3f\x0a\x29\x2b\x3c\x34\x8d\xe9\xb2\xbe\x63\xe4\xa9\x7f\x0e\xf1\x04\x7f\x8e\x91\x0b\x04\x50\x2d\xce\xb5\x12\xf2\x4e\xd4\x34\x4d\x60\x59\x34\x12\xbf\xd9\xd9\x88\x88\x7e\xfa\xd3\x9f\xd2\xdb\x6f\xbf\x8d\xce\x39\x2c\x0e\xe4\x41\x00\x70\x7e\xbd\x0b\xe6\xf7\xf7\xe4\xda\x31\x42\x67\x9a\x92\x5b\x1d\x27\x83\xd3\x27\x9d\xed\xde\xcc\xad\x22\xa0\xab\x7a\x5a\xc5\x45\xf9\xfa\x17\x4f\x34\xbf\x19\x9a\xf7\xcb\x82\xc1\x00\xaa\x05\xb6\x05\x83\x02\xc9\xb3\x5d\x7c\xf1\xb1\xb6\x20\x98\x3c\x4e\x04\x40\xaa\x2b\x43\x85\x53\xa7\x72\x1d\x12\xe4\x0a\x8e\xcf\x87\xe5\x81\x00\xe0\x08\x3a\x09\x21\x4e\x1d\x3d\x7d\xb8\x3e\xb9\x5d\x9c\xa6\x4b\x00\x30\xa7\x5c\xa3\xf3\x07\xd4\x01\x00\xd0\xa3\x47\x8f\xe8\xfe\xfd\xfb\x90\x65\x59\x1b\x46\x95\xed\xa3\x05\xa9\xf9\x5a\x02\xbb\x69\xa0\xd1\xbe\x6b\x78\x42\xc2\x48\x4b\xcf\x79\xd4\x2a\x83\x4c\xaf\x0d\x4c\x1a\x0d\x31\x65\x8c\xc9\x4f\xe2\xf5\x41\xeb\x2f\xa1\xfa\x90\x03\x19\x44\xc6\x69\xf5\x23\xcb\x63\x59\xf7\x32\x68\x03\x92\xc6\x73\x20\xe0\xb4\x34\xd6\x60\xc8\xbd\x04\xa1\xf6\xe0\xcf\x9a\x95\x86\x4a\x5c\x88\x27\xb5\xf6\x91\x16\x7e\x93\xa2\xeb\x7b\x78\xec\x02\x79\x9e\x8f\xff\xae\xf1\x8a\x55\x0f\x12\x27\xa7\x81\xb7\x4b\x48\xe9\xb6\xea\x84\xf3\x4d\x93\x02\xc2\x69\xd4\xea\x4c\xf2\x9f\xec\xe7\x16\x9f\x4b\x9e\xe4\xf0\xda\xb8\xe4\x61\x7c\x3c\x26\x49\x82\x6f\xbe\xf9\xa6\x9f\x1e\x02\x80\xf2\x4a\x19\x7f\x88\x5c\x0a\x00\x3d\x97\xc1\x60\x7b\xbf\x77\xee\xcd\xfb\x2b\x5f\xbf\xba\xd3\xff\x9f\x2b\x93\xe4\x7d\x47\xb0\xc1\x65\xbf\x5f\x12\x50\x9e\xd0\x8e\x55\x65\xf0\x21\xa2\xbe\x61\x94\x31\x7d\xb1\x89\xa3\x54\x6a\x98\xcc\x47\xc0\xb4\x93\xb9\xed\xe1\x34\xb9\xb0\x31\x4a\xa7\xc7\xbd\x6c\xe7\xa8\x3b\x1f\xcd\xf3\x7b\x6c\x32\xc8\x8d\x79\xbf\x5c\xc0\xa3\x84\xff\xf8\x8f\xff\xa0\xe9\x74\x1a\xea\x53\xb2\x8e\xad\x60\xc9\xa6\x18\xd9\xa2\xe1\x90\xed\x17\x03\xef\xab\x43\x6b\x77\x02\xd0\x77\x15\x49\xe0\x58\x61\x2d\x0b\x63\x75\x38\x2d\x4d\x2d\x7c\xf1\x8b\x5f\xc4\x34\x4d\xa9\xd0\x88\xcb\x4e\x58\xcc\x41\x22\x54\x6e\xbd\x04\xf2\xb5\x2e\x70\xee\xb0\x73\x61\x75\x9c\x9e\x49\x08\xbb\x1e\x0f\xe7\x1b\x2e\x29\xd9\xd1\x73\x55\xcb\x7b\x62\x10\xaa\x1d\x47\xc8\xf0\x30\xe6\xaa\x42\xce\x8d\xe5\x82\x5d\xf4\x5e\x14\xff\x79\x31\x8d\x64\xe6\x3c\x3d\xd4\xf0\x54\x9f\x31\x71\x04\xbd\x84\x70\x3e\x4f\xe8\xf6\xc3\xb5\xe9\x0e\xe4\xdb\xe5\xe6\x7e\x9d\x0b\xe5\x0b\x74\xbc\xd7\x85\x86\xc3\x21\x7c\xfe\xf9\xe7\xda\xe0\x13\x62\x58\xcd\x7a\xb1\x06\xf6\x90\x75\xad\x59\x99\x31\x5b\xea\xb4\x34\xa1\xb4\x9a\xa7\x60\x99\x7c\x38\x0b\xc8\xf8\x18\x2f\x40\x93\x10\xd0\xe0\x2c\xcb\xc5\xb2\xce\x6b\x02\x58\xa4\xb7\x16\xc7\xc9\xb6\xe4\xdf\x00\x9a\xdb\xd9\x52\x1a\xac\xb2\x84\x14\x17\x4b\xf9\x0c\xc1\x78\x3c\x7c\xc0\x6c\x6a\x5f\x8f\x33\x34\xf0\x59\x79\x87\xf8\x55\xcb\x5f\xd6\x85\xc6\x8b\x21\x85\xc8\x92\x85\x4d\xb4\x48\xda\x35\xdc\x1e\x46\xca\x6d\x39\xa0\x85\xea\xc4\xca\x8f\x0f\x8c\x4d\x83\x9f\x36\x68\xca\x20\x07\x5a\x8b\x87\x38\x4e\x4d\x91\xb1\x68\x28\xf1\xbd\xf7\xde\x7b\xf0\xde\x7b\xef\x95\x4a\x4b\xf1\xe7\xbd\x2d\x1d\x00\xe8\x03\x40\xff\xca\x4e\xef\xdc\xf5\xfb\xab\xdf\xbc\xbc\xd7\xff\xbf\x87\xd3\xe4\x5d\x97\xe1\x50\xca\x65\x3f\x86\x94\xca\x08\x1b\x44\xea\x46\x69\x3d\x51\xae\xb4\x54\xc6\xf2\xe2\x92\x81\x0a\x3c\xcd\x70\x6b\x30\x75\x17\x57\xc7\xc9\x78\x7f\x30\x7f\x7c\xd8\x9b\x1d\x51\x6e\xdc\xd6\xa6\x8e\xfc\xdf\x5b\x6f\xbd\x85\x9f\x7e\xfa\x29\x89\x93\xd4\x43\xe3\x3a\x0f\x16\x6f\x6a\x7d\xb4\x29\xce\x0a\x52\x66\x85\x1c\x1c\xa0\xfc\x72\x1c\xe6\x1a\x17\xad\x63\xb7\x11\xda\x5a\xbc\x45\xec\x02\xbe\x7f\xff\xf7\x7f\xc7\x6b\xd7\xae\x41\xbf\xdf\x07\x60\x42\xd4\x2f\xd8\x2d\x7e\xcb\xe9\xa2\x93\x4e\x96\xad\x8f\xd3\xd5\xcd\x93\xf4\x42\x77\xee\x86\x0e\xd0\xd5\x5d\x73\x75\x4f\x46\xf5\x5b\x9f\xa6\xe1\x92\x1a\x05\x47\x72\x7d\xa4\x56\xa8\xc2\xb3\x92\xc3\x60\x0d\x48\xf2\x6e\x19\x47\xc5\x13\x5f\xf3\x52\x78\x5c\x00\xea\x0a\x8c\x23\xe8\xa6\x19\xf6\x13\xc2\xf1\x6e\x7f\x7e\xeb\xa8\x37\x1f\x41\x75\x05\x40\xc6\xbd\x2e\x88\x08\x67\xce\x9c\xa1\xb3\x67\xcf\xe2\x8d\x1b\x37\x34\x01\x6c\x85\x10\xb3\xc8\x77\xeb\xd9\xbf\x87\xbe\x5b\x79\x6b\x69\x9a\xe8\x7d\x1e\xf9\x58\x9d\x23\x54\xde\x18\x61\x2f\x83\xe6\xf9\x0a\x0d\x2a\x72\x90\x94\x83\xb0\x4c\x1f\x32\x0a\xac\x41\x4c\xe2\x08\xa5\x69\x6a\x7f\x5f\x2f\x9a\x02\x19\x63\xe5\x6b\x0a\x92\x96\x4f\x48\xc1\xd3\xca\xa1\xe5\x11\x82\xe5\x74\x34\x79\x91\x78\x7c\x0c\x2f\x5a\x30\x31\x65\x5e\xa6\xbc\xa1\xa0\x95\x2b\x26\x5d\x1b\x78\x8d\xe7\x65\xba\x67\x89\xd7\x78\xc6\xa4\xe5\xe2\xc5\x8b\x70\xe1\xc2\x05\x2c\xe0\xfd\xee\xa1\x0e\xe4\x4a\x4b\x17\x00\x06\xa7\x0f\xd3\xcd\xb7\xef\xad\x7e\xeb\xf2\x6e\xef\x77\x06\xd3\xe4\x3a\x12\xf4\x17\xbc\xec\xc4\x86\x15\x2f\xee\x99\x01\x5a\x93\xf9\xfc\x9d\x79\x66\x00\x14\xcf\x8c\x62\x65\x3b\x82\x8d\xfe\x2c\x39\xb7\x32\x4e\xc6\x87\xbd\xf9\xe3\xfd\xc1\xfc\xd0\x4f\x17\x15\x5e\x17\xf0\x9e\x77\x00\x80\x37\xde\x78\x83\xee\xdc\xb9\x83\x47\x47\x47\xbc\xae\xa4\x01\xa3\xf1\xb2\xd6\x56\x72\xdc\xd7\xda\x5d\xab\xf7\x50\x1f\x6d\xea\xd3\xd1\xb2\xc2\xba\x1d\x3a\x24\x9c\x2c\xe6\x0a\x59\x69\x3e\x84\x2c\xfb\x9a\xf0\xbb\x7e\xfd\x3a\xf6\xfb\x7d\xae\x67\xf8\x3f\x57\x4c\x15\xf9\xbb\x1e\x52\x40\xe8\x22\x41\x72\xe6\xa8\x73\x7e\x65\x92\x9c\x4e\x08\x3b\xc8\xaa\x80\xa0\xae\x0c\x54\xcc\xc5\xb9\xa7\x5e\x62\xee\x65\x91\x61\x61\x6a\x07\x8b\xfb\xa8\x05\x38\x4a\x78\xa8\x76\x3c\x79\x9a\x16\xce\x9a\x61\x0a\x56\x41\x3e\x3a\xc2\x5e\x9a\x61\x0a\x00\x8f\x6f\x9f\x1a\xdf\x81\x7c\xad\x0b\x11\xd1\xbc\x58\x6d\x0e\x5c\x79\xd9\xdb\xdb\xa3\x1b\x37\x6e\xc4\x0e\xaa\xb1\x21\xd6\xbb\xf0\xdf\x3d\xc4\x0a\x4b\x99\xe6\x59\x60\xdb\xb8\x77\xff\x4f\x85\x36\xc2\xcd\x07\xe9\xe1\xe1\x71\x96\x32\x66\x29\x14\x56\x1d\x59\x5e\xb5\x26\x45\x24\x46\xd1\xd0\x04\xed\xf3\xe6\x8d\x18\x05\xca\x82\xb7\x68\xd1\x2c\xf2\x18\xdc\x6d\xe0\x2d\x65\x33\x46\x81\x8c\x19\xcc\xa2\x79\xe0\xfd\xf7\xdf\xc7\x37\xde\x78\xa3\xbc\x77\x08\x0a\x8f\x3d\x11\x75\x10\xb1\x4b\x44\xfd\x34\xc3\xc1\x3b\xf7\x56\xdf\xbb\xba\x33\xf8\x1f\x2b\x93\xf4\xba\x23\x58\x91\x0b\x70\x7d\x6e\xb9\xac\x16\x46\x29\x56\x3f\xf5\x2b\x63\x68\xf1\xd2\x5f\xad\x24\xc2\x53\x93\x17\x02\x31\x21\x58\xeb\xce\xdd\x5a\x9a\xe1\xc1\x71\x37\x7b\x72\xd8\x9b\x9f\xf8\x32\x22\xa2\x57\x5a\x08\x20\x5f\xb8\x7b\xf5\xea\x55\xda\xd9\xd9\x81\xfd\xfd\x7d\x39\xae\xca\xf5\x4d\x92\x7a\x59\x87\x3c\x9d\xa4\x16\x04\xac\x6c\x2f\x0e\xd7\xa4\x88\xf0\x36\x8e\xe1\x27\x04\x00\x72\x0a\x40\xc8\xfd\x66\x7d\xcb\xc4\x9f\x8f\xe3\xf8\x9d\xf8\x16\x9b\x47\x89\x97\x88\x32\x22\x9a\x21\x62\x79\x77\x51\xf1\x37\x7a\xb4\x3a\x7d\xf0\x68\x75\x7a\x6b\xd4\xc9\xf6\x09\x28\xc7\xe1\xb5\x5c\x76\xf6\x8a\x8f\xae\x49\x27\xa9\x70\x08\xaf\x89\x0c\xda\xd4\x8e\x57\x64\x64\x1a\xcf\xe4\x79\x36\x8b\xda\x7b\xa9\x9d\x30\xda\xea\xcf\x08\x8e\xa0\xbf\x32\x49\x5e\xba\xb8\xdf\xfb\xda\xb5\x47\xc3\x2b\x90\xbb\x35\xd3\xa2\xd3\xa5\x50\x58\x10\x44\x04\x44\x04\xe7\xcf\x9f\x87\x5f\xf9\x95\x5f\xf1\xee\x50\x80\xca\x35\xca\xe3\x64\x70\xe2\x57\x06\x39\xed\x24\xf1\x37\xe1\xb3\xe0\x9b\xe2\x65\x5c\xe8\x59\xa3\xcb\xa2\x31\x44\x83\x45\x8f\x0f\x92\xb7\x25\x0d\x1a\x5e\x09\xab\xa5\xd7\xf2\x0e\x95\xd9\xa2\x5b\xcb\xcf\xa2\x35\x54\x3f\x31\x70\x1a\x5d\xbc\x7e\x2c\x9a\x78\x90\xb2\x03\x60\x91\xdf\xac\x74\x5a\x68\x23\xd7\x62\xe8\xb3\x82\x5c\x14\x2e\xf3\xb1\xda\x6e\x99\x3c\x96\xc1\x1d\x33\xbd\xa6\x85\x98\x3e\xd7\x94\xd6\xff\x6a\xf2\xbc\x29\xc4\x96\xd9\x1a\x5f\x6a\xb0\xbd\x5e\x0f\xba\xdd\xae\xf7\xb2\x94\x1e\xfb\xe2\xb7\x8b\x88\xfd\x57\x1f\x0d\xaf\x5d\xde\xed\xff\xea\xea\x38\x79\x23\x21\x58\xc5\xe2\x10\x2e\x7f\x5b\x0c\x31\xa1\x5e\x1b\x1f\x98\x0c\x2f\x6f\x96\x21\x36\x2e\x00\x02\x29\x4a\x0b\xc7\xb7\xa0\xd6\x01\xb3\xd4\x09\xbb\x83\xa9\x7b\x65\x7b\xaf\xf7\xe1\xa5\xdd\xde\xf5\x95\xb1\x5b\x87\xdc\x43\xc4\xaf\x1f\x70\x90\x8f\x01\x30\x18\x0c\x5c\x9a\xf2\x2b\x08\x17\xfa\xe3\x42\xfd\x04\x42\x68\xb1\x34\xff\x2e\xdb\x2b\x86\x4f\x9b\xa6\x11\x83\x3c\x1d\xda\x0e\xed\xb5\x28\xa9\xf1\xca\x78\x27\x9e\x2d\x4b\x45\xd3\xd4\x34\x8b\x0a\x00\x00\x76\x76\x76\x70\x6b\x6b\x8b\x06\x83\x41\xe5\x5d\x63\x8b\x75\xa1\xde\x70\xc9\x1c\x21\xed\xcd\x5d\xf7\xd4\x49\xfa\xc2\xca\x24\xd9\x4c\xb2\x7c\x05\x38\x00\xd4\xe6\x10\x4b\x64\xc4\x76\x01\x79\x18\xce\x60\x58\xf7\xac\xf8\xc4\x08\x50\x9e\xef\xe2\x3d\x33\xe5\xee\x25\xbe\xd0\x16\xf8\x8e\xa6\x2a\x8f\x9a\x93\x07\xb1\x5a\xa8\x05\x20\x56\x9a\xd7\x15\x9e\xe2\x44\xdd\x7e\x9a\xe1\xc1\xa3\xd5\xe9\xe7\x93\x34\x9b\x8a\xb3\x5d\xca\x29\xa3\x34\x4d\x61\x75\x75\x95\x36\x37\x37\xe1\xf3\xcf\x3f\x47\x80\x72\x2b\x67\x68\x3e\x92\xeb\x4c\x52\xfb\xd6\xda\x95\xb7\x5f\x8c\x45\xe4\xf3\x97\xf0\x12\x8f\x13\xf0\x31\xfc\xc4\xd3\x4b\x7c\x16\x8d\x52\x74\x68\x6b\xba\x42\xfc\x6b\x59\x22\x56\xd9\x24\xac\x46\x8f\x96\xb7\x55\x3f\xa1\xb2\x6a\xf9\x39\x68\xc6\x6d\xd1\x68\xb5\x1d\x28\x71\xd2\x52\x0b\x59\x5c\xe6\xae\x81\x06\xfc\x5a\x88\xe1\x93\x36\xb0\xaa\xf5\x6e\xc0\xc4\x78\x11\x62\x3c\x21\x3c\x70\x18\x0d\x5e\xc3\xed\x94\xf7\x26\xba\x9a\x68\xb5\xea\x27\x54\x66\xc7\x9e\x3d\x6c\x53\xf9\x43\x63\x87\x95\x3f\x80\xcd\x67\x04\x00\xf0\xee\xbb\xef\xba\x97\x5e\x7a\x09\xba\xdd\xae\xf7\xb4\x38\xa8\x4e\xc4\xed\x22\x62\xff\xdc\x41\xe7\xec\x9b\xf7\x57\xbf\x75\xee\xb0\xfb\xcd\xee\xdc\x5d\x70\x50\x8d\x1d\xc8\x7f\x99\xfc\xf6\x8f\x7c\x9a\x87\x9f\xd7\xe2\x01\x84\xc8\xaf\x91\x57\x9b\x05\x28\xc7\x96\xfa\x38\x54\xa0\xef\x26\x84\x3d\x47\x30\x3a\xee\x66\x0f\x76\x56\x66\x7b\x50\x2c\x13\xe0\x0b\x75\x0b\x7c\xb4\xbe\xbe\x4e\x47\x47\x47\x58\x78\x5d\xa4\x1c\xd6\xea\x92\xb7\x4b\xd3\xba\xc8\xd0\xf8\xb1\x4c\xdf\x6d\xea\xcf\x92\x06\x07\xa0\x7b\x5c\x78\x08\x69\x4f\x5c\x8b\xd3\xbc\x2c\x21\x0b\x30\x14\x1c\x00\xc0\xdd\xbb\x77\xb3\xf1\x78\x2c\xe9\xe0\x7f\x75\xaf\x0b\xc2\xe8\xc1\xda\xe4\xde\xa3\x95\xe9\xad\x93\x4e\xb6\x9f\xa1\xa8\x2f\xac\x8f\xca\x24\x17\xc2\xa2\xff\x52\xc1\x94\x73\x96\x58\xbf\x64\xb1\x54\x48\x10\xca\xdd\x47\xfc\x22\x47\x0f\x43\x24\xda\x04\x99\x26\x5d\xed\xe3\xaf\x3c\x43\x00\x95\x26\x5e\xe4\xed\xbd\x28\x08\x90\xf6\x66\xee\xfc\xb9\x83\xce\x07\x5f\x78\xd2\xbf\x96\xdf\x87\x81\x29\xe4\x16\x43\xa9\x79\xfb\x75\x40\xbd\x5e\xcf\x5d\xbc\x78\xd1\xd7\x5d\x4c\xd0\xac\x5e\xfe\xad\x8d\x05\x2d\xd3\xb6\xa5\xa3\x0d\xfc\xf3\x08\x6d\xf3\x6a\x63\x21\x3c\x8b\x45\xdf\x94\x77\x1b\xdc\x6d\xcb\x68\x79\x11\x9e\x17\xbc\xb4\xd2\x42\x65\x69\x63\xe9\x2f\x93\x76\xd9\xb0\x6c\x5b\xb4\xc5\xdd\x54\x9f\x7c\x31\xfb\xf3\xf0\x2c\x85\xf2\x6b\xe3\x41\x0b\xbd\x4b\x5c\x31\x75\x29\xe1\x1b\xe9\xdc\xda\xda\x82\xd5\xd5\x55\x07\x50\x9c\xf1\xc5\x0c\x5e\x44\xec\x02\x40\xf7\xca\x4e\xff\xc5\x33\x47\x9d\xf7\x7a\x33\xb7\x8d\x50\x6d\xee\x00\xc8\xe5\x71\x29\xc5\x85\x42\x51\xc2\x68\xb9\x7b\xaf\xbc\x84\xf3\xc3\x84\x98\x05\xf0\xcf\xfa\xea\x04\x84\xce\x1c\xcf\x9d\x39\xee\x7c\xf1\xd2\x5e\xef\xfa\xa9\xe3\x74\xd3\xd3\xce\xb6\x73\x97\x75\xb3\xb5\xb5\xe5\xd6\xd6\xd6\x24\x92\xb6\x7d\xd2\xf2\x84\x3c\xef\xd0\xd4\xd6\x52\x36\xd4\x3c\x2e\x9a\x56\x63\xad\x02\x97\x2b\xfd\x2d\x8d\x4c\x5a\x80\xdc\x53\xe3\x89\xd1\xb4\xee\x32\xdf\x2c\xcb\x70\x63\x63\xa3\xf4\xba\xf8\x33\x5d\xd8\xd9\x2e\xfe\x0a\x80\x14\x11\x93\x99\x23\xec\xcd\x5d\x7f\xe3\x24\x3d\xb3\x32\x4d\x36\x1c\x61\x9a\x13\x8d\x0b\x4c\x87\x44\xf9\xde\xfb\x1a\xe1\x58\x7e\x2f\xe1\x44\xc1\x90\x01\x30\x57\x50\xed\x4c\x18\x60\xf1\x04\x04\xf9\xd6\xb7\xfa\x37\x8e\x10\xf9\xb3\xf0\xd6\x78\x4f\x4e\xf1\xde\x49\x33\x5c\x4b\xc8\xed\xed\x0e\x67\x77\x8e\x3b\xd9\x09\x39\x98\xfa\xb3\x5c\xf2\x2a\x2a\x17\x6d\x65\x88\x48\x49\x92\xe0\xbd\x7b\xf7\xb4\xb6\xf0\x6d\x68\x59\x42\xd2\x22\xe6\x96\x8d\x65\xc9\x59\xde\xb7\x90\x85\x25\x69\x08\x05\x0d\x67\x28\x1f\xeb\xbd\xa9\xdc\xfc\x59\x96\xa7\x91\x6f\x05\x8c\xf4\x4e\xb6\xb1\x3a\x2d\x1a\x78\x9e\x56\x9d\x58\x56\x77\xe8\xdd\xf2\x7c\x84\xea\x51\x5a\xd8\xb1\xf8\x9b\xca\xc2\x83\xc5\x1b\x56\x3d\x6b\x69\x63\xbc\x1c\x3c\xc4\xf0\x07\xcf\xa3\x09\xd6\xb2\x6a\x79\x68\xa2\xb1\xa9\xfe\xfc\xb3\xa4\x09\x20\xdc\x7e\x6d\x42\x0c\x7f\x68\x41\xcb\xd3\xc2\x61\xc5\x37\xc9\x89\x1a\x8e\xd7\x5f\x7f\xdd\x5d\xbd\x7a\x15\x8a\xb5\x92\xd5\x9a\xc8\xe2\xbc\x16\x20\xe8\xaf\x4e\x92\xcd\xb7\xee\xad\xfc\xca\x99\xe3\xee\x87\x9d\x0c\x4f\x23\x55\xe7\x4b\xf8\x25\x87\x35\xa9\x4d\x6c\x1c\x60\x44\xd5\xac\x62\x36\x80\x78\x65\x05\x11\x8a\xf3\x5e\x58\x21\x88\x7b\xd5\x19\x4e\xaa\xd2\xfa\x13\xd8\x81\x30\x71\x04\x1d\x40\x1c\x1d\x75\xe7\xb7\x1f\xad\x4c\x9e\x16\xde\xf6\x59\x91\xa2\x5c\xb0\x0b\x90\x9f\xae\x7e\x7c\x7c\x8c\x07\x07\x07\x56\xbf\x68\x92\x85\x31\xf2\x8a\x87\x58\x79\x1a\xca\xc7\x6a\xeb\x05\xdc\xd6\x25\x8b\xd6\xa0\xc4\x85\x8b\x35\xe8\x58\xc2\x93\x4f\x57\xf0\x3c\x2c\x86\x85\xa7\x4f\x9f\xe2\xf6\xf6\x36\x9c\x3a\x75\xaa\x6c\x57\xb6\xb3\xc8\xbb\xfe\xca\x13\x0f\x09\x21\xcd\x90\x68\x75\x9c\x6e\x6e\x8c\xd3\xb3\x9d\x39\xae\x38\x10\x0a\x05\xf7\xa2\x08\x0e\x2c\x33\x61\x0c\x05\x00\xe5\x22\x5c\x14\xef\x8b\x6e\xbd\xea\xd0\x39\xef\x3a\xc1\x82\xf3\x17\x6e\xa6\x66\x3b\x9d\xc8\x67\x5e\xd2\xc0\x70\x0b\xfc\x8e\xa0\xdf\xc9\x5c\x6f\x8e\x70\x6f\x77\x38\x7b\x32\x49\xb2\x31\xb8\xf2\xfe\x22\xbf\x58\x2b\x43\x44\x70\xce\xc1\xf9\xf3\xe7\x69\x34\x1a\xe1\x93\x27\x4f\x90\x2a\x17\x10\xff\xb5\x84\x1b\x7f\x0e\xb9\x19\x41\xc4\xc7\x0a\x6a\xce\x17\x16\xbf\x85\xf8\x92\xe7\xc3\x79\xd2\x82\x97\x69\x62\xca\xad\x95\x27\x66\x60\x6d\xc2\x11\xc2\x23\xcb\xdd\x94\x5e\x8b\xd3\xfa\x59\x2c\xad\x5a\x08\xd5\x63\x88\x46\x4f\x8b\x26\x80\x34\xfe\xb2\x84\x64\x48\x19\xf0\xef\xbc\xcc\x3c\xb8\x86\x6f\x31\x83\xa4\x46\x6b\x8c\xc2\x17\xdb\xc6\x1a\x7c\xd3\x40\xaf\xd5\x2b\xb7\x52\x25\x5d\xfc\x9d\xd7\x77\x93\x01\x10\x1a\xb0\xac\x7e\x67\xf5\x5d\x4d\xc1\xf7\xb4\xf0\x32\x58\x75\x6f\xe5\x23\xcb\x05\x00\x00\x5f\xff\xfa\xd7\xf1\xcc\x99\x33\x8e\xe1\xf4\xbb\x88\x52\x22\xea\x27\x84\xc3\x2b\xbb\xfd\xcb\xd7\x1e\x0f\x7f\x73\x65\x92\xbc\x8a\x80\xdd\x72\x7f\x44\xa1\x68\x94\xe3\x05\x00\x94\x8b\x6e\x19\x4c\xe9\x75\x07\xa1\x98\x94\x67\x7b\xb1\x29\x21\xa6\xb4\x60\x19\x2f\x06\x21\xa8\x5e\xa5\x91\x8c\x08\x29\x12\xcc\xc7\x1d\x7a\xfc\x78\x75\xfa\x8b\x69\x42\xd3\xa2\x3e\x67\x00\x00\x5e\xf6\x13\x11\xad\xaf\xaf\xe3\xe1\xe1\x21\xdd\xbb\x77\x0f\xa0\x3e\x6e\xcb\xba\x92\x7d\xc3\xaa\x4f\x8b\x07\x40\xf9\x6e\xf1\xa9\x25\xab\x63\xfb\x5c\xf9\xec\x1b\xd5\x33\x3c\x7f\x06\xf1\xec\xdf\xb5\x29\x22\x1e\xb8\xab\xbf\xc9\xf5\xa4\xe1\xaf\x85\x87\x0f\x1f\xc2\xfe\xfe\x7e\x79\xb1\x20\x54\x57\x7f\xcf\x88\x68\x46\x44\x33\x28\xa6\x8b\x88\x68\xb4\xdf\x9b\xed\xde\x5f\x9b\xdc\xda\xeb\xcf\xee\x67\x0e\x26\xa5\x92\x81\x04\xf9\x3f\xd6\x6b\x91\x6a\xd3\x39\xe4\xeb\x86\x55\x13\x41\xe5\xd6\xf3\xa1\x9c\xe6\x59\x70\xa0\x50\xa9\xfc\x78\x2f\x8c\x47\x57\x22\x63\xdf\x4b\x7c\xec\xaf\xca\x43\xd6\x44\x15\x06\x53\x77\xed\xf2\x6e\xef\xab\xdb\x7b\xdd\x4b\xfd\x99\x5b\x05\x82\x2e\x14\x0b\xb6\xfc\x62\x5d\xff\xe7\x9c\x73\x5f\xfb\xda\xd7\xf8\x82\x2d\xa7\xfc\x6a\x6d\x2e\x7f\x41\x81\xe1\xef\x1a\x3c\xe7\x17\xed\x4f\x5b\xc0\x6d\xe5\x25\xe9\xd4\x82\x45\x43\x13\x8d\x56\x5a\x0d\xbf\x05\x17\xc2\x69\xa5\xd7\xf2\x96\x96\xb3\x45\x4f\xa8\xef\xca\x3a\xb7\xe8\x8a\xa9\x13\x2d\x1f\x8d\x16\x0b\x6f\x9b\x29\x0f\x0e\xe7\xc4\xbb\x85\xa3\x69\x6a\x24\x34\xa5\x10\x9a\xa2\x8a\x99\x9e\xb1\xf2\x6d\xe2\xa1\x26\x39\x28\xf3\xb1\xe4\xb0\xa4\xa5\x69\xfa\x44\x4e\xc3\x3a\x25\x4e\x3e\x87\x82\xc5\xab\xd6\x92\x81\x50\xdb\x85\xf2\x0f\xc9\x16\xed\xdd\x5d\xbe\x7c\xd9\xf5\x7a\x3d\x89\xc3\x11\x91\x03\x80\x2e\x02\x76\xbb\x73\x37\xbc\xb8\xdb\x7b\x69\x38\x71\xaf\x38\x82\x72\x0b\x6b\xae\x58\x40\x39\x0e\x60\x29\xb7\x0b\x2d\x86\xd8\xe0\xe0\x61\x0b\xf8\x12\xb6\x34\x6c\xeb\x06\x2b\x15\x0f\xe5\xa8\x53\x2e\x02\x66\xe3\x34\x31\x18\xff\x8c\x00\x48\xd8\xed\xcf\xdc\xf6\x99\xa3\xce\xeb\xe7\xf7\x7b\xe7\x89\x88\x2f\xd2\xf5\x65\xf3\x0b\x90\x65\x5d\x86\x7e\x2d\x99\xdd\x66\xca\x30\xb6\x1f\x2d\x33\xbd\xba\xc0\x1b\x09\xd4\x35\x6f\xef\x15\x91\xda\xb1\x7f\xe6\xf1\x5e\x8b\x05\xa8\x6b\x44\x5a\xd0\xb4\x72\x2d\x7e\xc1\x5a\x7b\xf0\xe0\x41\xb6\xb1\xb1\x81\xe7\xce\x9d\xf3\x79\x39\xcc\xf7\x00\xbb\x42\x39\xf0\x97\x2f\xa6\x88\x98\x12\x42\x4a\x48\xb4\x32\x4d\x37\x36\x4e\xd2\xad\x6e\x86\x43\xbf\xf8\x95\x7b\x4d\xbc\x67\xa3\xae\x40\x48\xcd\x97\xa0\x5c\xab\x82\x50\x3e\x2f\xec\xed\x37\xd2\x97\xbc\x4f\x50\x4d\x01\xf1\xcd\xfe\x8a\xb2\x5d\xbb\x2e\x80\xbc\x02\x53\x01\x22\x20\x38\xc0\xb4\x33\xc7\x75\x24\xdc\x3b\xe8\xcf\x1f\x1d\x77\xb3\x63\x72\xe0\xb5\x6f\x2a\xb6\x48\x7b\xb7\x61\x86\x88\xd9\xdd\xbb\x77\xe1\xe8\xe8\x08\x89\x48\x32\xa5\xd5\x06\x9a\x35\x2d\x61\x40\x81\xd1\xb4\x66\x32\xfe\x64\xe7\xd0\xb4\xec\x10\x1d\x12\x56\xa6\xb1\xca\xd1\x54\x5e\x07\x7a\x5e\x16\x0e\xfe\xce\xcb\xa4\x79\xaa\x42\xf4\x84\xe8\xb2\x68\xb1\xea\x47\x7e\xd7\x70\xca\x76\xb0\xac\xb1\x50\xb9\x43\x78\x43\x81\xd7\x31\x29\x71\x96\x4c\x71\x01\xf8\x90\x85\x68\xb5\xa9\xe5\x11\xb2\xd2\x69\x2e\x71\xf9\xdd\xf2\x78\x58\x74\xf9\x78\xad\x4e\xf8\x33\xcf\xcf\x2a\x8f\x85\x43\xab\x37\xeb\x7b\x88\x5e\x2d\x68\xfd\x8e\xc7\x71\x7a\xe5\xaf\x56\x3f\x8e\xa5\xb7\x06\x52\xd9\xd6\x35\x9c\xbf\xf5\x5b\xbf\x85\x6b\x6b\x6b\x7e\x00\x4f\xfc\x69\xeb\xc5\xda\x90\x8e\x23\x18\x9e\x3a\x49\xcf\xbc\xf6\x70\xe5\xc3\xcd\x93\xce\x57\x11\xa0\x53\x49\x58\xa8\x9d\x9c\x5e\xb7\x28\xa1\x3a\x0d\xbd\x72\x9f\xd4\xe5\x3a\x00\xd4\x3c\x2d\x04\xd5\xc6\x8b\x02\x27\xf7\xc2\x00\xf8\xf1\x01\xea\xa7\xf1\x52\xfd\x7b\xa1\x14\x21\x01\x8c\x8f\x3b\xd9\x2f\xee\x6d\x4e\xee\x12\xd0\x1c\x11\xfd\xa1\xa4\x19\x40\x75\x0d\xcc\xc1\xc1\x01\xed\xec\xec\x60\x71\x28\x9d\x0f\x4d\x3c\xa9\x79\xe3\xb4\x20\xdb\x92\xe3\xb1\xfa\x28\x0f\x52\xbf\x08\xf1\xe3\x02\x0e\xcd\xaa\x69\x5a\x1c\xa9\x2d\xba\xd2\x16\x5b\x59\xef\xb1\x5a\x96\x45\x83\x9f\x0a\xf1\x9e\x97\x72\x4b\x34\x11\x8d\x00\xe1\x78\xbf\x3f\x7f\x7a\x7f\x6d\x7c\x6b\x77\x30\xbd\x3f\x47\x98\x49\x77\x06\x09\x8d\x39\x7f\x14\x75\x8b\x00\x44\xde\xb3\x52\xed\x0f\xd2\xf6\xf6\xf3\x6d\xd0\xe5\x33\x11\x83\xe4\x72\x11\x4a\xf7\xa3\xd7\x6a\x88\xa8\x48\x0b\xb9\xd2\xe2\xd3\x96\x08\x10\x6a\x0a\x39\x11\x74\xe7\x6e\xfb\xc2\x41\xef\xeb\x2f\xee\xf4\x5f\x5b\x1f\x25\x9b\x48\xd0\x07\xb6\x4d\xae\x58\x0b\x04\x50\x68\xe2\x1f\x7d\xf4\x91\x3b\x7f\xfe\x3c\x24\x49\x12\x6b\xf1\xc5\xb6\x93\x84\x6b\xb3\xa0\xeb\x79\x2d\xfe\xd2\x78\xb6\xc9\xea\x8d\xc1\x17\x1b\x62\xbd\x03\x31\x79\xb7\x0d\x6d\xf1\x69\xf0\x96\x15\xf6\xbc\x17\xe7\x59\xf5\xa4\x59\xea\x31\xe9\x34\x59\x14\x4a\x1b\x8a\x0b\xd1\x64\x05\x4b\xee\x69\xf8\xac\xfc\x39\xdd\x4d\xf4\xc7\xe0\x8b\x89\xd7\x42\x5b\x4b\x38\xa6\x2d\x79\x5c\xec\xf8\xe2\xbf\x35\x79\x06\xb4\xba\xaf\xe1\x2c\x94\x03\xe9\x35\x4c\x89\x28\x4d\x32\xec\x9e\x3a\xee\x9c\x1d\x4e\x92\x17\x73\x6f\x4b\x5d\xef\x2d\xfc\x20\x35\xa2\x6a\xa3\x7b\x4d\xa4\xe3\x22\x84\xd7\x44\x8a\xcf\xc8\xa2\xab\x21\x9a\x58\x12\xac\x9d\xf7\x42\x3c\x13\x66\x6d\x23\x41\xb7\x37\x77\xe7\xd6\xc7\xc9\xd5\xde\x0c\x87\x6c\x63\x86\xf7\xb4\x97\x4a\xd1\xab\xaf\xbe\xea\xde\x7e\xfb\x6d\x10\xa1\x89\x67\xad\xa0\x79\xbd\x2c\x4f\x9f\xf5\x6c\xf5\xc5\xd0\xcc\x8d\x4a\x47\x2c\x83\x5a\x4c\x12\x1a\xb4\xb4\x74\x4d\xae\x4c\x99\xaf\x03\x00\x37\x9f\xcf\x61\x3e\x9f\x67\x85\xb7\xc0\x9f\xe7\xe2\x71\x71\xe5\x65\x02\x00\x93\x99\xa3\xd1\xe3\x95\xe9\x9d\x07\x6b\xd3\x9b\x93\x34\x3b\xf4\xaa\x70\x39\x55\xe4\x17\xcd\x22\x95\x8a\x03\xfa\xef\xa5\xe2\x51\x4d\xd7\x94\x6a\x3d\xd3\x80\x4b\x45\x83\xc4\xb4\x8f\xdf\x26\x8d\x5c\xd9\xf0\x71\x15\xbf\x56\x3a\x09\x96\x9e\x20\xbe\x8b\x49\x28\xef\x15\x2d\x54\xe5\x31\x1c\xbb\xeb\x57\x9f\xf6\x3f\xbc\xb8\xd7\x7b\x69\x30\xb1\xa7\x8c\x8a\x75\x41\xf0\xd1\x47\x1f\xb9\xad\xad\x2d\xde\x1e\xbe\x8e\xa5\x6b\x17\x94\x38\x4d\xe9\x6c\x52\x82\xac\x67\x8d\x06\x19\x1f\xeb\x4e\xb7\xf2\xd0\xdc\xd8\xb1\xee\xcd\xd8\x32\xf0\xbc\x42\x69\x9a\x04\x6e\xa8\x7e\x35\x1c\x16\x2d\x1a\x0d\x21\x63\xc1\xaa\xfb\x26\xbc\xa1\xf7\x10\x9e\x98\x10\x3b\x75\x11\xab\x98\xb6\x11\x8a\x16\x4c\x9b\x41\xda\xa2\xa3\x6d\xfe\x6d\x60\x63\x8c\xcc\xa6\xf8\x18\x05\x89\xc3\x3e\xef\x32\xc4\xf0\x4c\x2b\xe5\x8a\x4f\xbf\x14\x86\x9c\xdf\x79\x99\x3a\xc2\xee\xea\x24\xd9\xec\xce\xdc\xb9\x1c\xd6\x27\x42\x76\x36\x4b\xdd\xf4\xe4\xf2\x58\xb1\x5f\xa1\x66\xaa\xd6\x12\x08\x40\x64\xf0\xc2\x9b\x53\x37\x71\xb1\xdc\x55\x5a\x82\x10\xa6\x9d\x19\x6e\xae\x8d\x93\x4b\x67\x0f\xbb\x9b\x50\x2d\x36\x96\x0a\x5a\x1b\x03\xc0\x0a\x4d\x7d\xa7\xad\x71\xa8\xf5\xe9\xb6\x0a\x73\x16\x03\x18\x43\x98\xa6\x89\x49\x82\x42\x5a\x5e\x48\x0b\xcb\x00\x00\xfe\xe9\x9f\xfe\x09\xfe\xed\xdf\xfe\x8d\xad\x2d\xc1\xcc\x2f\x44\x02\xa6\xb0\x20\xe2\x08\x00\x46\x80\x30\xda\xef\xcf\x9f\xde\x5d\x1f\xdf\xdc\x19\x4e\x6f\x53\x81\x87\x9f\xab\x52\x69\xd8\xf5\x38\xaf\x34\x70\x86\xaa\x69\xcb\xc0\x98\xb8\x40\xc1\xd7\xce\xd4\x13\x54\xbf\x54\xba\x02\xa1\x64\xd0\xfc\xaf\x62\x4a\x8f\x63\x81\xe7\x39\x2d\x0c\x67\x02\xd8\xdd\x3c\x49\x7f\xf9\xda\xe3\xe1\xd7\xce\x1f\x74\x2f\xa5\xf9\xbd\x1a\x5d\x28\xa6\xcd\xd8\x56\x39\x59\xcf\x9a\xa6\x1c\x1a\x30\xa4\x67\x4d\x7e\xb7\xe2\x42\x83\x4f\x8c\xb6\xde\x94\x57\x53\x1e\x56\x3e\x6d\xbd\x8a\x4d\x34\x34\xa5\x89\xa9\xa7\x50\xfd\x36\x7d\x0b\xd1\xd0\x64\x0d\xc5\x94\xb5\x29\x4d\x0c\x5f\x2c\x13\x1f\x0a\xb1\x6d\xf1\x3c\xf2\x5e\x86\xbe\xd8\x74\xcf\xdb\x03\xb7\x2c\xee\x36\xb4\xc6\x1a\x15\xd6\xf7\x90\x4c\xb2\xbe\x87\xe0\xd5\x7c\xa4\xc7\x05\xab\xab\x62\xba\x8e\x60\xb8\x3a\x4e\x5e\xe8\x66\x78\x3a\x87\xf5\x89\xaa\xe9\xa1\xda\x8a\x00\xee\x4c\x61\x51\x7c\xae\x0a\x35\x39\xcd\x13\x70\x3c\x42\x67\xf1\xf1\x0b\xa7\x78\xa0\x58\xce\x80\x00\x8e\xb0\x3b\x98\x24\xe7\x36\x4f\xd2\xb3\xc5\x3a\x17\x5f\xae\x90\x91\x02\xf0\xfc\x95\xe0\xb6\x7d\xf0\xb9\xe5\xdd\xc4\x70\x31\x42\xcf\x5b\x9b\x1a\x33\x87\x94\x19\x2b\x7f\x89\x6b\x81\x06\xe1\x6d\xc9\xf8\x02\x5d\x00\x18\x01\xc0\xf1\xdc\xd1\xf1\xd3\x95\xe9\x9d\x3b\x1b\x93\x4f\x8b\xd3\x74\xa1\x5a\x9e\xcb\x14\x07\xef\xea\x28\x02\x5f\x60\x6b\x85\x45\xbd\x04\xeb\x93\xe3\x8b\x1e\xbe\x0a\x27\xca\x38\xc6\x94\xec\x97\x44\x5a\x0b\x77\x9a\xe1\xd9\xad\xc3\xce\xd7\x5f\x7a\x32\x78\x7f\xeb\xb0\x73\xb6\x98\x32\xe2\xd3\x46\x35\x0d\xfc\xa3\x8f\x3e\x82\x17\x5f\x7c\x31\xd6\x02\x6f\x0b\xc3\xbf\xc5\x58\xef\x4d\x70\x31\x02\x2f\x36\xc4\x5a\x07\x6d\xbc\x07\x31\x5e\x8f\x98\x32\xb4\xf1\x8a\xc4\x86\x58\x0f\xcd\xb3\xe0\x8e\xf1\xbe\x34\xe1\x90\xf8\x42\xdf\x43\xcf\xcb\xe2\x6e\x4a\x17\x82\xd7\xbe\x5b\x16\xa4\xf5\xdc\xc6\x5b\x13\x93\x0f\x18\x30\x4d\x8a\xc1\xb3\xd4\xb1\x95\xa7\x95\x2e\xd6\xda\xce\xa0\x7d\x99\xe1\xf7\x7f\xff\xf7\xdd\xca\xca\x8a\x84\x71\x00\xc5\x1d\x45\x04\x69\x7f\xe6\xfa\x2b\x93\xe4\x6c\x92\xc1\x26\x80\x58\x50\x24\x35\x12\x19\xf8\xf2\x94\xf2\x9e\xba\x0a\x9e\xa8\x8e\x43\x1e\xe7\x25\xf3\xf0\x67\xc5\x48\x23\xb5\x96\x8c\xd1\x83\x00\x69\x4a\xb8\x3e\x98\x39\xef\x71\x89\xf1\xb6\x40\x64\x7c\xd3\xf3\xf3\xee\x97\x16\xee\x60\x3a\x79\x72\xae\x83\x6a\x9c\x74\xb0\xd8\x6c\x56\x5c\xc6\xbe\x79\x1c\x19\x83\xe5\xdf\x84\x4e\xb9\xb0\x20\x8e\xe3\x28\x9f\x9f\x3c\x79\x02\xd3\xe9\x94\x2e\x5e\xbc\x88\x88\x5c\x3f\x06\x57\x2c\xd0\xf5\xe5\x29\xaf\x29\xcf\x1c\xa1\x23\xec\x6e\x9e\xa4\x1b\x6b\xe3\xf4\x9c\x2b\x26\x65\xfc\xc4\x11\x02\x54\xc7\x33\x97\x3f\xc8\xdc\x7c\x54\x7b\xb7\x94\x99\x72\xfa\xa7\xb6\x76\xa5\x3e\xbd\xc3\xe3\xbc\xea\x84\xe5\xff\xf5\xea\xf0\x1d\x82\x6f\xb9\x2e\x3d\x31\x28\x2b\x0d\x21\x21\x5c\xe9\xce\x5d\x32\x4b\x68\x67\xbf\x3f\x7b\x34\xee\xd0\x04\xf2\x8b\x18\x01\x98\x90\xf0\xda\xfb\xf6\xf6\x36\x9d\x9c\x9c\xe0\xd3\xa7\x4f\x65\x9b\xf0\x2e\x2b\x83\x63\xdf\x2d\x98\xa6\x2e\xaf\xc5\xc7\xe0\x92\xb0\x56\x9a\x50\x08\x95\x2b\x0b\xc0\x69\xe9\x78\x5d\x84\xf2\x89\x2d\x83\x84\x8b\x6d\x93\x50\x88\x29\xc7\xb3\xe2\x96\xe9\x35\x7c\x31\x32\x83\xe3\xd3\xea\x96\x3f\x23\xe8\x75\xa8\xd1\x27\x69\xd5\xbe\x5b\xe9\xda\xe4\x23\x65\x58\x88\x0e\xa7\x7c\xd3\x82\x26\x87\xdb\x94\x37\x14\xac\x3a\x69\xaa\xfb\x18\x78\x2b\x3f\x0d\x96\x8f\x0b\xbc\x0f\x6a\x75\xaf\x8d\x1d\x2a\xec\x7b\xef\xbd\x87\xce\x39\x7f\xde\x97\x1f\x13\x12\x28\x8e\xf7\x77\x04\x83\xd5\x71\x72\xe6\xea\x4e\xff\xcd\x53\x27\x9d\x2f\x22\x80\xab\x9f\xbf\xc5\xb0\x62\x25\xbf\xe5\xf1\x19\xa5\xb4\x16\xde\x95\x6a\x4b\x75\x01\xa1\x78\x5f\xe4\x89\xbb\x88\xb4\x38\x16\x69\x5e\x9b\xfc\x37\x9b\x3a\x3a\xdc\x1d\xcc\x6e\xfc\xe2\xf4\xf8\x73\xc8\x0d\xf6\x39\x00\x4c\x21\x37\xe6\x4b\xd9\xbf\xb1\xb1\x41\xab\xab\xab\x78\xeb\xd6\x2d\x5f\xf7\xda\x58\x1c\xdb\xde\x31\xdf\x65\x5b\xb6\xc9\xc7\xe2\x23\xde\x17\xd4\xa9\x22\xcd\xed\xcb\x35\x38\xa9\x01\x4b\x22\x2d\x1c\xfc\x1b\xcf\xd7\x29\x71\x12\x47\x06\x00\x30\x99\x4c\x60\x34\x1a\xc9\xef\xde\xeb\x22\x17\xea\x4e\x00\x61\x34\x4d\xe8\x78\x67\x38\xbd\x77\x77\x7d\xf2\xd9\x49\x27\xdb\xf5\xde\x16\x3f\x7f\x58\x2e\xf5\x46\x5a\xb8\x8b\x42\xf3\x86\x10\x80\x58\x24\x5b\x45\x96\x8b\xc4\xa9\xc2\xc1\x7b\x29\xf7\xe9\x40\x89\x3b\x57\xa3\x90\xf2\x74\x3e\xbf\x5c\x41\x29\x35\x9c\x12\x4f\xc9\xbb\x54\xc7\xe9\x08\xfa\xab\xe3\xe4\xb5\xcb\xbb\xfd\xaf\x5d\xda\xeb\x5f\x4b\xe7\x38\x24\xa2\x3e\xe4\x6b\x5d\x6a\xf3\x9f\x88\xe8\x86\xc3\xa1\xfb\xf2\x97\xbf\x0c\xaf\xbd\xf6\x9a\xd6\x7e\x00\x8b\x1a\x70\x5b\xaf\x43\xcc\xb7\x50\x58\x36\xdd\x32\xe1\x79\x4f\x53\xf0\xb0\xac\x87\xa8\x8d\xdb\xfe\x3f\xa3\xae\xda\x78\x9d\x96\x09\x96\x97\x16\x8c\xb8\xb6\xe1\x79\xd4\x4d\x1b\x3a\xda\xc2\x4a\x39\x6a\xc1\x59\x75\x14\x1b\x9a\xfa\x26\x97\xed\x6d\xf3\x6a\x82\x8f\xc1\x6d\x4d\xd9\x5a\x63\x82\xe5\x95\x51\x03\x9b\x62\xa9\x79\x23\x10\xc0\x39\x82\x14\x09\xba\xd5\x92\x81\xc5\x40\xc5\x7f\x7e\x41\xad\xbc\x73\x88\x7b\xd0\x79\x1a\xaa\x43\x70\x6c\xe2\xa9\x78\xe7\x02\x5e\xc1\xa7\xc4\xb8\x84\xa0\x9b\x66\xd8\x47\xaa\xdf\x57\x04\xa2\xde\xbb\xdd\x2e\x0c\x87\x43\x8e\xa0\x69\x9a\x1c\xe0\xbf\xa6\xdf\x34\x79\x14\x35\x9c\x25\x0f\x84\x5c\x37\xda\x1c\xb9\x64\xc0\x26\x57\xa4\xf5\x6d\x99\xf9\xb2\xec\xf6\xed\xdb\xf0\xc3\x1f\xfe\x30\x03\x00\xbf\x60\xa9\x36\x65\x04\x95\xf2\x32\x02\x80\x11\x01\x8c\x8e\xba\xf3\xdd\x7b\x1b\xe3\x5b\x4f\x56\xa6\x37\x09\x8b\x3c\xbc\x42\x50\x32\x09\xd6\x16\x81\x73\x18\x80\x4a\xf3\x15\xb3\x4a\x79\x1a\xac\x3a\x08\x79\x20\x60\xf0\x3c\xbd\xc6\xe9\x5e\x63\xe7\x79\x30\x6d\x07\xd9\x67\x62\x49\xea\x8f\x08\x9d\x0c\x37\x4f\x1f\xa7\x5f\x7c\xf1\x49\xff\xab\xdb\x7b\xbd\xed\x62\xad\x4b\xbf\x58\xe7\xc2\x2f\x63\x04\x22\x72\xeb\xeb\xeb\x6e\x75\x75\x15\x8c\xc0\x85\x84\x6f\xaf\xe7\x31\xa0\x68\x41\x0a\x38\x6e\x8d\x6b\xb0\x16\x8e\xd0\x73\x1b\x45\x4c\xc2\xc5\x2a\x6f\x5a\xbe\x9a\xa2\x1f\x23\x14\x2c\xc5\x41\x4b\xaf\xd5\x55\xac\xe0\xb1\xca\xa7\x0d\x1c\x21\xda\x9a\xe8\xd3\xd2\xc6\x4c\x29\x58\x79\xc6\x06\xc9\xc7\xcb\xe2\x6e\x03\x1f\x82\xb5\x06\x72\x8b\xc7\x62\x07\x97\x26\x81\xff\xbc\x71\x87\x94\x16\xce\xfb\x4d\x83\x64\xa8\x3f\xc7\x28\x46\x51\xc1\xef\xae\x04\x60\x67\x9d\x00\x3a\xcc\x07\xfc\x02\x86\xc3\xb3\xc4\xcc\xd3\xe1\x1f\x4d\xb7\x01\x05\x96\x19\xb0\x4b\x1b\x51\xe6\x01\x00\x04\x72\x00\xaa\x60\x17\xe0\x00\x1c\x00\xa6\x48\x51\x8b\x72\xdb\xc8\x4c\xde\x76\xfe\xfd\x79\x1a\x31\x6d\xd2\x5a\x3c\xb8\xe0\x71\xd1\x94\x10\x49\x78\x8c\xa5\xc0\x07\x9e\x90\x50\x6c\xc2\x21\xd3\xc1\xc1\xc1\x41\xf6\xf0\xe1\x43\x00\x00\x60\x8b\x73\xb9\xd7\x65\xe1\xfe\xa2\x69\x42\xc7\x4f\x86\xd3\x7b\x77\x36\xc6\x9f\x1e\x75\xe6\x8f\x01\x2a\x85\xa5\xa6\x0f\x17\x4c\x57\x6e\x4d\xc6\xfa\x7a\x18\x10\xb0\x00\x54\x31\x21\x54\xf8\x78\x5c\x75\xb3\x68\x1d\x83\xf4\xbe\x54\xbb\xb3\xa9\x74\x4b\x2e\xdc\x73\x54\xcb\x1f\x6a\xb4\x15\xca\x4b\xda\x9b\xb9\xed\x17\x0e\xbb\x5f\xb9\xf6\x78\xf0\xfe\xd6\x41\xe7\x2c\x40\xb5\xcb\x88\xdf\x69\xe1\x17\xad\x5d\xbe\x7c\xd9\xbd\xfc\xf2\xcb\x16\x73\xca\x35\x4c\x6d\x19\x36\xd6\x82\x93\x02\x6e\x41\xbb\x16\xb0\x4d\xf9\x68\xcf\xda\x6f\xa8\x3c\x16\x3d\x4d\xf0\x16\x0d\x1a\x3e\x2d\x48\xc1\xd1\x44\x4f\x13\x7c\x53\x68\x2a\x9f\xf6\x4d\x33\x42\x62\xcb\x17\x1a\x48\x63\x07\xd6\x58\x9e\x0a\xc1\xb7\x55\xc2\x9b\xf0\xf1\xfe\x11\x82\x6d\xf2\x30\x84\xbc\x9f\x6d\x69\x92\x69\xb5\xba\xb7\xda\xbf\xa9\x7e\x42\xfd\xa7\x8d\xb2\xd1\xa6\x4f\xc9\xb8\x90\x72\xcd\xf3\x2b\x77\x55\x02\x78\x4f\x76\xb9\x48\xb7\x6c\xb7\xda\xee\x65\x3f\x1d\xcf\xbc\xe6\xda\xac\xcd\xc2\x73\xed\xb8\x75\x41\x09\xc3\x09\x40\x0b\x06\xb0\xa6\xf1\x84\x0e\x21\x25\xa0\xac\xd8\xf0\xb1\xac\x72\x11\xdb\x2f\x64\x3d\x87\xfa\xb0\x16\xd7\x96\xaf\x42\xb0\x6e\xe1\xa1\x21\xb4\x51\x5e\x42\x02\xb5\xa9\x92\xa5\xb2\xb3\xc0\x9c\xbb\xbb\xbb\xf0\xb3\x9f\xfd\x4c\x1b\x18\x54\xaf\x4b\x06\x74\x7c\xdc\xcd\xf6\xef\x6c\x8e\x6f\x3e\x5a\x9d\xde\x9c\x23\xcd\x34\x07\x1c\xdb\xb1\x94\xbb\x07\xb9\xfb\x64\x41\x89\xc8\x57\xc8\xb0\x69\xd0\x12\x86\x4f\x19\x55\x6b\x5e\x98\xaa\xc2\xcf\x6c\xf1\x2a\x87\xf0\xfc\xf8\x2f\x1e\xce\x2b\x31\xa5\xf2\x8f\x00\x40\xf5\x2d\xd3\x08\x00\x8e\xa0\xbf\x32\x49\x5e\xba\xb8\xd7\xfd\xc6\xcb\x4f\x06\x5f\x5c\x1d\x27\xfe\x0a\x74\x7e\xbe\x4b\xe9\x79\xd9\xda\xda\x82\xb7\xdf\x7e\x1b\x5e\x7a\xe9\x25\x59\x1d\x9a\x60\x6d\x3b\x90\x34\x09\x78\x1e\x67\x85\xb6\x83\x54\x9b\x10\x23\xf8\x96\xc1\xa7\x85\xd8\x3c\x96\x19\x50\x9f\x17\xfd\x5a\x68\xc2\xbd\x6c\xdd\x6b\x4a\xed\xb2\x0a\x8f\x86\xbb\xc9\xf3\x13\x13\x6f\x09\x65\x0b\x77\xac\x07\xc9\xf2\xae\x48\xbc\x96\x0c\x0d\xe1\x96\xcf\x9a\xfc\x8d\x49\xc7\x83\x55\xf7\x56\x7c\xc8\xc3\xd5\xb6\x8f\xb4\xa1\xb7\xc9\xb8\xaa\xda\x0e\xc9\x11\x02\x64\x08\x99\xe6\x5c\x81\xd2\x88\xad\xe2\xf3\x3b\xe7\x02\xd8\x65\xc0\xc2\x10\x95\x13\x47\x94\x7b\x4d\xea\x5f\xd8\x4a\xc7\xc6\x3c\x08\x00\x21\x23\x07\xd9\xcc\xd1\x4c\x28\x3b\x96\xb3\x40\x0b\x4d\xce\x84\x36\x4a\x26\x87\x6f\xcb\xaf\x31\xf1\x9c\x06\xc7\x01\x43\x4c\xcb\xad\x6e\x1e\xdf\x94\x01\x1f\x18\x62\xac\x10\x99\x9f\x2a\x94\x77\x77\x77\xe1\xe3\x8f\x3f\x2e\xa7\x8a\xd8\xd9\x2e\x35\xaf\x0b\x11\x4d\x88\x68\x84\x88\x93\xb9\xa3\xc3\xa7\xc3\xe9\x83\xdb\x9b\xe3\x4f\x8e\xba\xf3\xa7\x00\x95\x26\xcd\x19\xc8\xbf\xfb\x29\x9d\x52\x31\x59\x38\xf2\x1f\x4a\xd7\x4a\xed\x46\x2e\x86\x47\x4e\xe7\x54\x60\x95\xb2\xa2\x6d\x85\x06\xf0\x8b\xc1\xaa\xb3\x5d\x8a\x4b\x13\x2b\xdc\x3e\x5e\xac\x69\x42\x40\x48\x32\x58\x5d\x1b\xa5\x6f\x5c\x7d\x3a\xf8\xd5\x17\x9f\xf4\xaf\x75\x66\x38\x2c\xd6\xb9\x94\xca\x0b\x11\x95\x07\xd4\x6d\x6d\x6d\xb9\x2f\x7d\xe9\x4b\x70\xf5\xea\x55\x4d\x28\xc7\x0c\x8a\x5a\x1a\x4b\x78\x59\x1e\x1c\x2b\xbd\xcc\x27\x94\x87\xf6\x3d\x94\x87\x0f\x96\x02\xd3\x94\xd6\x1a\xc4\x9a\x42\x93\xf0\xb5\xf2\x89\xa5\x4b\xa6\x89\x69\x1f\x59\x16\xff\x9c\x29\xdf\x63\xf2\x09\x3d\x6b\x69\x25\x2d\xa0\xc4\xfb\xe7\x26\xfe\xe1\xf2\xc3\x0a\x31\x42\x5d\x1b\xf4\x25\xde\xd0\x20\x6d\x7d\x8f\xf1\xe0\xb5\x09\x96\x7c\x8d\xe1\x4d\xcb\xc8\xb4\xda\x20\x46\xf9\xf3\x38\x2d\xf9\x1f\xa2\x45\x3e\xb7\x19\x50\x17\xda\xdc\xf2\x5a\x67\x00\x30\x71\xd9\x6c\x92\x66\x23\x02\x66\xc8\x16\x83\x02\x95\xb2\x9c\xea\xc7\xfd\xfb\xb5\x2e\xc4\xbd\xe4\xd5\xff\x45\xa6\xe5\x2e\xa1\x7c\xb1\x6d\x75\x0a\x7a\x81\xa8\xb8\x22\x00\x4b\x45\xa6\x3c\x2b\x03\x98\x82\xe4\xf3\x28\xbd\xf6\x15\x1d\x04\x90\x4d\x1d\x8d\x46\x9d\xec\xd8\x4f\x7d\x01\x80\x93\xe5\x0d\x79\xed\x65\x5d\xb5\xf8\x6e\xe9\x01\xda\x78\x6d\xc9\x0c\xad\x7f\x5a\x7d\x8e\xe7\xe3\xb4\x0f\xa1\x4e\xa8\x09\x31\xf9\xac\x65\xc8\x05\x8d\x16\x2c\x42\x43\x1d\x2e\x1b\x8f\xc7\x70\xf7\xee\xdd\x0c\xa0\x9a\x32\x2a\x7e\x6b\x0b\x75\x11\x31\x3f\x51\x17\x61\x34\x4a\xb3\xfd\xdb\x9b\xe3\x9b\x8f\x56\x27\x9f\xcd\x1d\x4c\xbc\x96\x5b\x6e\x65\x26\xb1\x20\x17\xeb\xca\x84\x0c\xf2\xc8\x66\x1f\x7c\x1a\xee\x25\xa9\xf1\x8f\x32\x81\xba\xe0\x8a\x64\x6e\xcb\x9a\xbe\xce\xa7\xa6\x6a\xda\x91\x3f\x34\x89\x00\x01\x5d\xb1\xde\xe5\xdd\x57\x1e\x0d\x7f\xf5\xc2\x41\xef\x12\x02\xf6\x81\x6a\xd3\x46\x0e\xa0\x72\xa1\x9e\x3e\x7d\xda\xbd\xff\xfe\xfb\xb0\xbd\xbd\x2d\x8b\x19\x63\xe9\x4a\x25\x95\xa7\xb3\x94\x02\xe9\xa2\xd6\x94\x57\x99\xce\x52\x9e\xa5\xa0\xe4\x38\x42\x82\xd6\x12\x80\x9a\x90\xb6\x84\xaa\xa9\x60\x0b\x5c\xb1\x41\x13\xf6\x96\x11\x20\x15\x41\x3e\xa0\x5b\xf5\xa9\x95\xc1\xfa\x0d\x19\x14\x1a\xee\xd8\x78\xed\xd7\x8a\x0b\xc1\x84\x8c\x21\x19\xa4\xcc\x6a\x52\x56\x35\xbe\x8f\x1d\x58\x65\x3a\x0f\xd7\xc6\xd8\xe3\xb8\x9b\x78\x2b\x24\xec\xb5\xba\x0c\x29\x3a\x21\xda\x24\x4c\xe8\x59\x2a\x44\x31\xfd\x20\x46\xf6\x73\x5a\x9a\xe8\x30\xaf\x66\x21\x04\x98\xa4\x34\x3b\xee\x64\x87\x73\x47\x23\x00\x28\xaf\x75\x01\xe0\x9e\xed\xfc\x8e\xbb\x3c\x11\x94\x82\x1a\xa1\x0e\x5b\xfa\x4b\xbc\xc1\x89\x00\x48\xd5\xd9\x5e\xb5\xdd\x48\x1c\x87\x47\x50\x9b\x36\xaa\x16\x35\x2e\xe6\x53\x54\x00\xd2\x6c\xd4\xc9\x76\xf7\xfa\xb3\x3d\x7f\xad\x8b\x56\x4e\xa3\xfc\xa1\xf1\x5a\xbe\x4b\xbd\x40\xf2\x8e\xd6\xee\x3c\x58\x32\x43\xcb\x53\x2b\x83\x26\x93\x33\x1e\x83\x9e\xa9\x5b\x00\x00\x16\x15\x49\x44\x41\x54\xc1\x99\x2d\x24\xd4\x6b\x89\x03\x85\x90\xe9\xac\x8e\x1e\xd2\x9e\x4d\x0d\x6c\x77\x77\x17\xfe\xee\xef\xfe\xae\x96\xae\xf0\xbc\x48\xa5\xa5\x9a\x32\x42\x18\xed\x0c\xa6\x8f\x6e\x9d\x1a\xff\xf4\xb0\x3b\x7f\x4c\x08\x99\xf7\xb6\x78\x2f\x8b\x3c\xf6\x5f\x5b\x8c\x15\x0c\x54\x67\xfa\x32\xae\xee\x72\xa9\x4d\xef\xf0\xdf\x32\x33\x8f\x87\x2d\xe4\xaa\x6d\x9f\x13\x89\xaa\xbb\x90\x0a\x6f\x0e\x61\xda\x99\xe3\xf9\xb3\x47\x9d\x6f\x5c\xbf\xb7\xf2\xb5\xb5\x71\xb2\x09\xf5\xb3\x5d\x52\x22\x2a\x4f\xd7\x45\x44\xd8\xd8\xd8\x70\xdf\xf8\xc6\x37\x64\x89\xb8\xc6\xac\xb5\xb5\x54\x5c\xe5\x20\x1b\xb2\xfa\x9a\x2c\xd3\x10\x3f\x49\x3c\x96\xe2\x1d\xca\xc7\x12\xa8\x4d\x4a\xbc\x15\x62\x04\xaf\x65\x7d\xca\xb4\x56\xbf\xb2\x06\x04\x39\xa0\x87\x04\x4c\xec\x60\x6b\x09\x38\xcd\x70\x59\xa6\xcc\x4d\xb2\xa0\x8d\xd2\x17\x93\x7f\x48\x59\xb2\xde\x7d\x5c\xdb\xc1\x54\x4b\xdb\x44\xa3\x05\xd3\xa4\xf0\xc4\x04\x8b\xef\x2d\xbe\xd0\x60\x2c\x85\x47\x06\x4b\x76\x6b\xf4\x58\xe9\x63\xe1\x82\xf9\x98\x1e\x07\xcc\xa7\x59\x8e\xbb\xf3\xc3\x89\xcb\x0e\xf3\xb8\xca\x52\xad\x4f\xef\x30\xa1\x5b\xb9\xe0\x6b\xde\x71\x36\xd3\xcf\xf2\xc0\xfa\x6e\x24\x12\x30\x52\xa9\xe0\x16\x6e\xa9\x24\xd5\xbd\xf8\x7e\xca\x6a\xee\x68\x74\xd8\x9b\x3d\xde\x19\xce\x76\x8b\x71\x0f\x00\x4a\xe3\x3d\x63\x1b\x57\xb4\x10\xd3\x17\x43\xc6\x42\x0c\xcf\xc4\x04\xa9\x94\xb4\xe2\x09\x4d\xf0\x69\x0c\xeb\x7f\x43\xdf\xda\x58\x40\x3c\x58\xf9\x68\x95\x52\xd2\x49\x44\x70\x78\x78\x58\x6a\x74\x6c\xb1\x6e\xa9\xbc\x10\x51\xa9\xb8\x00\xc2\xf1\x2c\xa1\xe3\x5f\x6c\x8e\x7e\xfe\x68\x75\xf2\xd9\xb4\xd0\xb4\x8b\xa1\xde\x7b\x2b\x54\x25\xc5\xf3\x14\xf3\xdc\x55\xa1\x74\xe5\x55\xee\x90\xda\x04\x10\x2e\xf0\xe0\x42\x5a\xee\xa9\xac\x69\xe0\xbe\xcf\xa0\x48\x53\x73\x53\xb2\x75\x35\x6c\x9f\x34\x02\xa6\xbd\xa9\xbb\xb2\xbd\xd7\xfb\xf6\x17\xef\xac\xbd\x5d\xdc\x22\xbd\x70\x9f\x11\x40\x71\x28\x13\x22\x38\xe7\xa0\x38\xb8\xc9\x07\x4d\x63\x06\x58\x64\x66\x2d\x64\xca\x5f\x88\xe9\xb5\xb8\x98\xce\xd7\xa4\x1c\x87\xac\xe3\x26\xfc\x21\x25\x43\xc2\x87\x06\xc6\x58\xda\xda\x08\x95\x90\xd0\x6e\xea\x7f\x9a\x92\x60\x59\x46\x12\xaf\x2c\xab\x55\xf6\x58\x5a\x2c\xb8\x36\x32\x24\xa4\x04\x49\x01\xd9\x36\x34\x0d\xc2\x16\x2d\xa1\xb6\x0d\x79\x28\x34\x18\x2b\x9f\x58\x45\x67\x41\x7e\x06\x60\x25\x4d\x16\xac\xa5\x50\x87\x68\x93\x34\x5a\xf2\x40\x53\xe0\x2d\x3c\xd6\x18\x54\xed\xf6\xac\x14\x98\xcc\xbf\x67\x48\xd9\x61\x6f\xbe\x37\x49\x69\x1f\x20\xf7\x90\x94\xf2\x96\xd8\x75\x2d\x7e\xea\x87\x79\x5c\xf8\x20\x50\xdb\x8d\x5a\xae\x5f\xe4\x00\x75\x8f\x0b\x95\xee\x72\x31\xad\x53\x58\xb8\x54\xd3\x84\xaa\x34\x7e\x1d\x25\x01\x64\xe3\x94\x0e\xf7\x7b\xf3\xc7\x7b\xfd\xd9\x71\x51\xa6\x8c\xe7\xc9\x97\x16\x28\xe1\x59\xfa\x01\x40\x33\x1f\xb7\xcd\xaf\x89\x17\x55\xf8\x26\xe6\xb2\x06\x0f\x4b\x70\xc5\x58\x15\xfc\xbd\x69\xf0\x32\x05\xd0\xe1\xe1\x61\xf6\xdd\xef\x7e\xd7\xa2\x77\x06\x00\x33\xe1\x75\x99\x64\x40\xc7\x4f\x86\xd3\xc7\xb7\x4e\x8d\x3e\x3e\xe8\xcd\x1f\x66\x08\x33\x7f\x52\x6e\xa5\x10\x53\x7d\x4e\xd2\x3f\x17\x0c\x58\xe3\x5b\x76\xa1\x62\x39\xed\x83\x9c\xef\xea\x1c\xe8\xa7\x73\x7c\x1a\xbf\xbb\xa9\xd4\xc8\x19\xb3\x51\xa9\x29\x51\x4d\x11\x07\xac\xa6\x44\x51\xe0\xad\x92\x53\x51\x51\xd8\x1d\x4c\xdd\xf5\x2f\x3c\xe9\xff\xf6\x2b\x0f\x87\xd7\x7a\x33\x5c\x05\x82\x3e\x11\x75\x11\xb1\xf4\xba\x14\xeb\x5d\xdc\xea\xea\xaa\xfb\xbd\xdf\xfb\x3d\x70\xce\x49\x2b\x3a\x86\xd9\x63\x60\xda\x0c\x00\xff\x19\xa1\x6d\x27\x79\x5e\x69\x9f\x77\x08\x79\x54\xb4\xd0\xa4\x14\xb4\xc1\xd5\x36\xb4\xf1\xb8\xb5\x4d\xd7\x26\x7f\x2e\x3f\xda\xd0\x14\x1a\xb0\xdb\x78\xe6\xac\xf8\x18\x25\xc2\x7a\x0f\xc9\xdd\xb6\x1e\x1e\x4d\xf1\x90\x0a\x88\x65\x1d\x73\x7e\x5c\xd6\xb3\x14\x8a\x8b\x81\xaf\xd1\x5a\x1c\xfb\x90\x01\x54\xcb\x09\x8a\xf8\x0c\x11\xb3\x0c\x69\x76\xd8\x9b\x1f\x9e\x74\xeb\x3b\x4d\xbd\xe1\x59\x1d\x71\xaa\x9c\xf4\x52\x78\x65\xa4\x13\xc5\x6f\xd8\xe0\xe7\x7f\x11\x77\xc3\x97\x8f\x15\x46\x2f\xf6\x91\x5d\xe8\xcb\xe9\xa9\xaf\x08\x40\xc8\x1c\x4c\x46\x69\xb6\xbb\xdf\x9f\x3d\x9c\xba\x6c\x22\x96\x4a\x70\x43\x5e\xa9\xb2\xb2\x9e\x64\xfd\x85\x78\x56\xeb\x3f\x21\xbc\xb1\xa1\xa9\x4d\x83\xfd\xa8\x8d\x6b\x32\x64\x01\xcb\xb4\x6d\x06\xb1\x26\xc5\xc8\xfa\x56\x06\x76\x05\x40\x4d\x71\x01\xb6\x35\xba\x58\xa8\x3b\x42\xc4\xd1\xe7\xa7\x47\x37\xee\xaf\x4f\x3e\x19\xa7\x85\x9b\x10\xa0\xbc\xa3\xc8\x33\x5f\xdd\xed\x57\xe4\x23\x97\xb5\xb0\x9d\x48\x28\x94\x09\x1e\x6a\xde\x41\x9e\x06\x40\x9f\x5e\xf2\xcf\x05\xbc\x36\xb5\x24\xd7\xc4\xf8\xcb\x1a\x3d\x84\x9f\x5b\x75\x04\xdd\x8d\x71\xfa\xc1\x9b\x0f\x56\x7e\xf3\xc5\x9d\xc1\x95\xde\x0c\x57\x11\xb1\x0f\xf9\x29\x92\xe5\x85\x8c\x7e\xbd\x4b\x9a\xa6\xf0\x47\x7f\xf4\x47\xd0\xe9\x74\x94\x92\x00\x40\xb3\xb0\x5b\x46\xe1\x89\x11\x8e\x31\x69\xda\xe6\x63\x09\x70\x0b\x77\x5b\xab\x38\x84\xa3\x4d\x9e\x9a\x37\xd2\xb2\x56\xb5\x7c\x62\xeb\x98\xe3\x0e\xd5\x4f\x08\x4f\x6c\x9d\xb4\x11\x74\x4d\x65\x8d\xc9\x87\x0b\xe0\x18\x45\xad\xc9\x80\xfa\xaf\x0a\xcb\x7a\xa2\xda\xa6\x6b\xf2\x06\xca\x6f\x96\x77\x2e\x94\x4f\x5b\xcf\x5c\x8c\xb1\xa0\xe6\xcd\xee\xf8\xa9\x7d\xf7\x03\xfc\xdc\xc1\xe4\xc9\x70\xba\xfb\x78\x65\xf6\xd9\x34\xa1\x72\x1c\xe0\xc2\x75\xe1\x60\x38\xbe\x94\x05\xaa\xcd\x1b\x0b\x6e\x78\x66\xdd\x22\x4f\x04\x4c\x21\x61\x4b\x5c\xb4\xc0\xc7\x06\x6e\x2c\xcf\x1c\x8d\xf6\x06\xb3\x87\x8f\x57\xa6\x0f\xa4\xb2\x92\xe3\x25\xe9\x6d\x69\xcb\xc7\x12\x46\xeb\x3f\x6d\xc2\xb2\x46\x51\x30\x1f\x79\xe4\xbf\x0f\x54\x64\xc2\x7f\x65\xe0\xf1\x0e\xea\xf5\xab\xc1\x87\x70\x59\x41\xa3\xa1\x7c\xce\xb2\x0c\x7f\xf2\x93\x9f\xc0\x9b\x6f\xbe\x09\x49\x92\xc8\x71\x1d\x19\xbc\x3f\xfa\x19\x01\x20\x9d\x24\x04\x69\x86\xc9\xc6\x49\x7a\x76\x30\x75\x1b\x09\x61\xc2\xf9\x93\xca\xe3\xf6\xa9\x60\x7e\xaa\xbb\x52\xca\x35\x25\xc5\x6f\x01\x87\x0c\xac\xf0\xab\x80\xbf\x32\x80\x1f\xf5\xef\xa7\xa6\x80\x2b\x3c\xb5\xc5\x2c\xb5\xc7\x6a\x0a\xaa\x38\x16\x9a\x2b\x50\xa5\xf7\xd2\x7b\x85\x20\xd7\xf2\x73\xe5\xab\x50\x92\x08\x7a\xdd\xb9\x7b\x61\x65\x92\x64\xc7\xdd\xec\xe1\x71\x67\x7e\x3c\x4f\xf2\xed\xe3\x88\x48\x45\x07\xe0\x8e\x50\x7c\xe3\x8d\x37\xe8\xb3\xcf\x3e\xc3\xc9\x64\x22\xfd\x9a\xd6\xb3\x7f\x0f\x7d\xd7\x82\x95\x26\x94\xf6\x79\xe5\xa3\xe5\xd5\xb6\xbc\x31\x81\xc3\x95\xfe\xb5\x16\x79\x92\xf1\x1c\x93\x27\x41\x7c\x1d\x6b\x69\xa4\x77\xa7\x09\xcf\x32\x75\x24\x1c\xf0\x8d\x38\xb5\xc0\x65\x84\x06\xaf\xe5\x11\x9b\x4f\x53\x5a\x4b\xf6\xb9\x96\x30\x1a\x2d\x31\xf2\x77\xd9\xfa\xb1\xca\x65\x05\x0b\x56\xa3\x31\xa6\x5e\x9f\x25\xde\xac\x93\x77\xdf\x7d\x17\x9d\x73\x5e\x9c\xfb\xb1\xc9\x1f\xfb\xdf\x81\xe2\x88\x08\x72\xd4\xe9\xce\xdc\xe0\xdc\x61\xf7\x0b\xbd\x99\xdb\xf0\x87\x51\xd4\x0d\xcd\x22\x33\x66\x95\x72\xb9\xeb\x13\x94\x32\xdc\x07\x26\xef\xfd\x8e\x24\x3e\x84\x68\xe7\xb8\x10\x40\x6d\x0c\xa9\xb4\x9a\x7c\x7c\xc9\x80\xb2\xc3\xde\xfc\xc1\xad\x53\xa3\x1f\x7d\x76\x66\xf4\xb3\xcc\xc1\x21\x00\x1c\x43\x3e\xa3\x30\x86\x7c\x6d\xe7\x94\x6d\x54\xc9\x00\x80\x76\x77\x77\xe1\xc6\x8d\x1b\x6c\xf4\x0a\xd6\xab\xc5\x13\x4d\x7d\x34\x66\x6c\x97\xed\x27\xd3\xc4\xca\xf1\xa0\xbb\xa6\x69\x6e\x53\x6a\xba\x4d\x9a\x98\x14\x80\x31\x41\xa3\xa1\xf6\x3c\x1e\x8f\x35\x3a\xb8\xd7\x85\x9f\xeb\x52\xee\x32\xba\xb3\x31\xfe\xc5\xbd\x8d\xf1\xa7\x47\xdd\xf9\xd3\x0c\x28\xab\xb7\x6a\xe5\x15\xf1\xef\xfc\x04\x5b\xe9\x5d\xf1\x77\x0a\x01\x67\x4c\xa8\xb4\xed\xda\xc9\xbb\x55\xec\x82\x27\xa5\x54\x5a\x40\x74\x82\x12\x37\x56\xb7\x14\xb0\xb4\x1e\xbe\xea\x50\x45\x2f\x29\x73\x41\xe8\xcc\xf1\xec\xd9\xa3\xce\xaf\xbc\xf6\x60\xf8\xe1\xf9\x83\xde\xa5\xce\x0c\x87\x50\x9d\xf1\xc2\x4f\xd6\x75\x00\x00\xdd\x6e\xd7\x7d\xf4\xd1\x47\x70\xe6\xcc\x99\x26\x2f\x43\xac\xeb\x5d\xc2\x87\xbe\x69\xe9\x9b\xbc\x10\x5a\xbe\x96\x77\x60\x59\x37\xa5\x45\x6b\xe8\x59\x86\x18\x57\x6d\xdb\x3a\x8d\xa5\x47\xe2\x88\xf1\x40\xc5\x4c\x47\x34\xd5\xa7\x06\xdf\x94\x47\xc8\x23\x65\xc5\xc5\x7c\xb3\x68\x0a\x05\xcd\x6a\xb4\xac\xd7\x36\x56\x25\x4f\x6b\xf1\x7e\x8c\xc5\xdc\xa6\xbc\x12\x4f\x1b\x58\xab\xbd\x9b\xea\xa7\x09\x5f\x2c\x7c\x53\xbc\xba\xf4\x40\x39\x65\x7d\x06\x08\xb3\x0c\x61\xf2\x70\x6d\x72\x6f\xb7\x3f\xbb\x35\x77\x34\x29\x0f\xf5\x2c\x86\x4f\xbe\xed\x19\x98\xdc\xd5\x4e\xb4\x2d\x8d\x47\x66\x22\xe4\x5e\x6f\xac\x7b\x57\x8a\xef\xd5\x1a\x9a\xea\xd7\x2b\x2b\x8b\x5e\x98\x1c\xc7\xcc\xd1\x68\xbf\x3f\xbf\xff\x64\x38\xbb\x3d\x4d\x68\x04\xf5\xb3\xcb\xfc\x73\x39\x45\x06\x00\x70\xe3\xc6\x0d\xf8\xfe\xf7\xbf\xcf\xcb\xef\xc3\x32\x5e\xd2\x50\xba\x18\xdc\x16\xdf\x34\x79\x6e\x17\xe8\xd3\x3c\x2e\x52\xd3\x6f\xd2\x8a\x24\x1c\xf7\xbe\xf0\xb8\x0c\xea\xb8\x24\xde\xa6\x6f\xdc\x6b\x56\xfb\x7e\xff\xfe\x7d\xbc\x74\xe9\x12\x75\xbb\x5d\x6d\x36\x05\x89\x28\xf1\x0b\x51\x8b\x32\xa7\xb3\x84\x88\x10\x60\x7d\x9c\xae\x0f\x27\xe9\x46\x9a\x61\xaf\x96\x48\xd1\xae\x81\x40\x78\x3b\xbc\x9a\x50\xfc\x62\xc5\xd4\x5c\xf9\x20\xc6\x94\xb2\x23\x50\x81\x94\x2b\x43\x8a\xce\x52\x53\x58\xf8\xa5\x5f\x3e\x9f\x72\x3b\xb7\xcf\xd3\x5f\xf0\x55\xd1\x8e\x49\x86\xab\xbd\x59\xb2\x92\x10\x8e\x46\xdd\xec\xe9\x71\x27\x3b\xc9\x5c\xde\xb1\x0b\x2d\xdd\xbb\x57\x09\x11\xa9\xdf\xef\xe3\xd6\xd6\x16\xed\xee\xee\xe2\xe1\xe1\x61\xc8\x4a\x0f\x59\x48\x1a\xff\x58\x69\x2c\xcf\x80\xf6\x2c\xbd\x03\x12\x8f\x95\x9e\xc3\x37\x59\xbb\xa1\x60\xd1\x20\x9f\x43\xe9\xad\xfc\x9a\xea\xd4\x07\x49\x7f\xd3\xb3\xc4\x11\xaa\xd3\x50\xbe\x21\x3c\xb1\xf0\x4d\x69\xa4\x15\x28\x8d\x9e\x26\x5e\x91\xf8\x63\x3c\x2e\x21\x19\x24\xe1\x35\xf9\x24\xf3\x8d\xf1\xb2\x70\xbc\x1a\xbc\x85\x5b\xa6\x6d\xe2\x59\xad\xae\x90\xfd\x69\x7d\xd5\x4a\x27\xe5\xbc\x06\x6f\x8d\x23\xa1\x36\x96\x63\x86\x84\xe7\xf4\x71\xba\x6b\xe1\xfe\xfd\xfb\x78\xe5\xca\x15\x3f\xdd\xed\x8a\x4b\x79\x4b\xd9\x0f\xf9\xf4\x78\x07\x00\xbb\x93\x84\x70\x7d\x9c\xae\x6d\x8e\x3a\xdb\xdd\xb9\x5b\x45\xa8\xae\xf0\xcd\xcf\xd0\xaa\x32\x2b\x09\x5d\xd4\x2c\xaa\x78\x4e\x15\xe6\x72\xb8\x76\x11\x63\xf1\x5d\x7a\xd3\x17\x6e\x70\xac\x50\x14\x70\x04\x27\x9d\xec\xc9\xed\xcd\xf1\x4f\x6f\x9e\x19\xfd\x64\xd4\xcd\x76\x01\xe0\x08\x72\x8f\xcb\xb8\xf8\x9b\x42\xbe\xb6\x73\xe6\xeb\xee\xfe\xfd\xfb\x74\xe3\xc6\x0d\xcd\x61\x10\xc3\xa7\x1a\xbc\xd5\x7e\x31\xb2\x74\x59\xdc\x0b\xe9\xb8\xe2\x62\x29\x28\x92\xa1\xe5\xb3\x87\xa9\x8d\xf1\x4a\x9c\xd6\x31\xa5\x62\x23\x71\x3a\x96\x2e\x63\x69\x6b\x4c\x7e\x78\x78\x88\x7b\x7b\x7b\xb0\xb5\xb5\x45\xfd\x7e\x5f\x16\xd4\x33\x2e\x14\xbb\x67\x12\x00\x70\x80\xe0\xc6\x69\x46\xdd\xb9\xeb\xad\x8d\xd3\x53\x83\x99\x5b\x75\x94\xdf\x32\x5d\x31\x66\x9e\x75\x4d\x11\x21\xc8\x77\xef\x10\x56\xeb\x54\x80\x9d\x78\x2b\x18\x93\x58\x1c\xb1\xe9\xa1\x8a\x6f\xd9\x3d\x49\x24\xd2\xf9\xca\xc4\xfa\x37\x64\xef\x9c\x56\xbf\x25\x9a\x7b\x76\xca\x06\x41\x04\x47\x98\xa4\x84\xeb\xfd\x19\xf6\x11\xf0\xe8\xa4\x9b\xed\x1e\x77\xe6\x27\xe0\xd0\x0b\x88\x05\xe1\xbf\xb2\xb2\x82\xeb\xeb\xeb\x74\x74\x74\x84\x07\x07\x07\x4d\xc2\x51\x0b\x21\xfe\x79\x1e\xe1\x59\xf0\x35\xa5\x5b\x86\xee\x65\xe8\xb1\xd2\x84\x94\x7b\x58\x22\x9f\x65\xc3\xf3\x6e\x33\x8e\x33\x24\x5b\xd4\xfe\x6e\xd0\x65\x7d\xd3\x06\x40\x2b\x70\xf9\x64\x29\x3a\x5a\x9e\x52\xb6\x69\xf8\x64\x7c\x68\xd0\x97\xb8\x9b\xea\x47\xd2\x67\x0e\xea\x4a\x7e\x1c\x7f\x48\x81\xd1\xca\x10\xf2\xa0\xcb\x7a\x6f\xa2\x9b\x2b\x67\x72\x3c\xb0\x06\x36\x95\xc6\xc3\xc3\x43\xba\x7e\xfd\x3a\x0a\x43\xd6\x2b\x2e\x0e\xf2\x1d\x95\x1d\x40\x48\xc9\x41\x67\x8e\x44\x9b\xa3\xf4\xf4\x70\x92\x9c\xc9\x0d\x58\x43\x33\x09\x04\xbf\x5b\x08\x85\xc5\xeb\xd7\x2a\x2e\xaa\x25\x2c\x14\x42\x5e\xc2\x20\x5b\x2f\x30\x73\x34\x7a\xb2\x32\xbd\xf9\xf3\xd3\xa3\x7f\xbf\xb7\x3e\xfe\x9c\x1c\x1c\x43\xae\xb4\x9c\x40\x35\x9b\xe0\x6f\x87\xf6\x63\x25\x3d\x7a\xf4\x88\x8a\x9b\xa1\x7d\x68\x52\x4e\x79\x68\xe2\x03\xad\x8f\x86\xd2\x69\xfc\x6b\x29\xc0\x16\x2c\x01\xd4\x15\x97\x10\xa3\x73\x04\x72\xbe\x5b\x12\x2e\x99\x95\xa7\x91\x15\xc8\x71\xf8\x02\x64\x81\xf4\x4e\xc0\xfb\x78\xdc\xdb\xdb\xcb\xae\x5d\xbb\x86\x2b\x2b\x2b\x88\x88\x58\x78\x11\x2a\x87\x03\x51\x02\xb9\x12\xe3\x0a\x0f\x4c\x32\x4f\x00\xe7\x8e\xb2\xe1\xc4\xad\xac\x8e\x93\xcd\xce\x1c\x57\xbc\x22\xe2\x8b\xc4\x0b\x07\xe0\xf9\x08\xcb\x9d\x40\x5c\xd1\xe0\xef\xc0\xd2\x55\xd3\x48\xf5\x2b\xce\xab\x35\x34\x75\x6f\x09\xcf\x8f\x47\x78\x5c\x75\x85\xc5\xe7\xeb\xb5\xa3\xc5\x6f\xa5\xc2\x8f\x00\x0e\xb0\x93\xce\xdd\x5a\x6f\x8e\x3d\x02\xd8\x3f\xe9\x66\xbb\x27\x69\x36\x01\x2c\xdd\x8c\xc4\xb6\xd3\x11\x22\xd2\xea\xea\x2a\xae\xac\xac\xd0\xc9\xc9\x09\xee\xef\xef\x87\x18\xd2\x12\x9a\xf2\x39\xc6\xbb\xa6\x31\x32\x17\xac\x3e\x1f\xe9\xa2\x8c\x11\xda\x32\x0f\x2d\x4f\xce\x9f\x00\x8b\xf4\x6a\x9e\x45\x60\xf9\xc7\x74\xc6\x90\x25\xcd\xbd\x94\xbc\xac\xb1\x42\x21\x34\x08\x05\x85\x82\x02\x17\xaa\xd3\x26\xc1\x63\xd1\x25\x07\x2a\x39\xf8\x73\xfa\xfd\xbb\x1c\x28\x43\x8a\x86\x36\xd8\x69\xb4\x59\xd6\xa6\x25\xec\x35\x78\x29\x17\x2d\x1c\xbc\x1d\x63\x14\x03\x8d\xb7\xb4\xfa\x91\xf1\x1a\x7e\xad\x1d\x64\xbb\x5a\x83\x90\x46\x8b\x55\x3f\x4d\x3c\x63\x0d\x70\x56\xdd\x37\xd1\xa2\xf6\x87\xb7\xde\x7a\xcb\x2b\x2e\xa5\xd2\xc2\x0c\x57\xff\x97\x02\x40\x67\x9c\x66\xd4\x99\xbb\xee\xfa\x38\x3d\xd3\x9f\x25\xeb\x8e\x30\xa9\x19\x7d\x05\x45\x04\x50\xf3\x6e\x83\x7f\x66\x86\xa8\x37\x62\x3d\x2c\x00\xd4\xd6\x2b\xfa\x71\x02\x58\x1a\x5e\x59\xfe\x8d\xbc\x4c\x27\x80\xcc\x51\x76\xd0\x9f\x3f\xf8\xfc\xf4\xf8\x47\x37\x4f\x8f\xfe\xd7\x51\x77\xfe\x14\x11\x0f\x89\xe8\x18\x11\xf3\xe3\x3e\x00\xc6\x44\x34\x43\xc4\x19\xe5\xc2\x7b\x7e\xfb\xf6\xed\xec\xe3\x8f\x3f\x06\x61\x70\x36\xf1\x9d\x25\x97\xb4\xfa\xb6\xfa\x9f\xd5\xc6\x9c\x27\x78\xbb\xc7\xf0\x7a\xad\xff\x73\xc5\xa5\x89\x48\x8e\x4c\x1b\x6c\x2c\xa1\x6a\x31\x97\x14\x54\xbc\x30\x16\x43\x5b\x42\x06\x01\x00\x93\x24\x81\xcd\xcd\x4d\xea\xf7\xfb\x5e\x21\xf0\x4c\x0b\x98\x07\x80\xea\xfc\x92\x04\x00\xdc\x24\x21\x4a\x32\x4c\xd6\xc6\xc9\xe6\x70\x9a\xac\x27\xe4\x3a\x7c\x35\x6d\xe9\xdd\x00\xa8\xa6\x89\x3c\xb3\x72\xc6\x84\x32\x49\x49\x1d\x16\x08\xf8\xfa\x13\x00\xaa\xd6\xce\x20\xe6\x27\x2c\x96\x8b\x68\x2b\x0e\xe7\x4a\x8d\xcf\x33\x5f\x74\x5b\x57\x9a\x38\x5c\xf9\xec\x61\x79\xde\x75\x25\xa9\xdf\x99\xbb\xf5\xde\xdc\xa5\x19\xc2\xfe\x71\x37\xdb\x1d\xa7\xd9\x14\x10\xfc\x42\x5d\xbf\x68\xb7\x20\x13\x69\x7d\x7d\x1d\x07\x83\x81\xa5\xbc\xc8\x36\x6c\xea\x1c\xa1\x8e\x64\xa5\x97\xcc\xce\x07\x3d\x14\x71\x31\xf9\x4b\x1a\x9a\xf8\x53\xd2\x2b\xe9\x91\xb8\x42\x69\xad\x3c\x43\xf9\x84\x06\x8c\x90\x41\xa1\xe5\xa1\xf5\x23\xab\xce\x3d\x6e\x8b\x56\x4b\xc0\x85\xea\x46\xc6\x6b\x4a\xa8\x55\xfe\x18\xd9\x20\x83\xa5\xa0\x84\xda\x20\x66\x50\xf5\x70\xa1\x1d\x1a\x5c\xf8\xc6\x28\x2c\x3c\x1f\x4b\x79\x96\x71\x21\x05\x0e\x94\xf8\xa6\xbe\x22\xeb\x55\x33\x3c\x2d\xf8\x26\x9e\x89\x6d\x33\x0b\xb7\xd6\x86\x0b\xe3\x8b\x50\x5c\x00\xa0\x3c\x29\x1c\xa1\x90\xfd\xc5\x6e\xca\x4e\xe6\x20\x9d\xa4\xd9\x7c\x75\x92\xac\xad\x8e\x93\x53\xdd\x0c\x87\x7e\x4f\x12\x31\x04\x5e\xd9\xe0\x8b\x76\xab\xa9\x79\xa8\xe4\x35\x93\xf7\xc8\x61\xa0\x4a\xc3\x0f\xe4\xe5\xcb\x04\xa8\x58\x36\xc0\xf1\x8e\x3a\xd9\xde\x9d\x8d\xf1\x4f\x6f\x9c\x3d\xf9\xe1\xe3\xd5\xe9\x1d\x72\x78\x04\x00\x47\x88\x78\x4c\x44\x27\x88\x38\x85\x7c\x61\xae\xdf\x70\x31\x47\x44\xfa\xf4\xd3\x4f\xe9\x93\x4f\x3e\x69\xbb\xae\xd4\xea\xcf\x9a\x32\x43\xca\x77\x50\x60\x9a\x70\x6b\xbc\x6b\xa5\x73\x00\x40\xd6\xae\x22\xcd\x1a\xd2\xe2\x43\xd6\x93\x86\x4f\x06\x8b\x69\xdb\xc2\x13\x40\xee\x16\xbb\x78\xf1\x22\x6e\x6e\x6e\x72\x86\xe5\xc1\xef\x2c\xf2\x8a\x4b\x92\x39\xc0\x99\xa3\xac\x3b\x77\xfd\xf5\x71\x7a\xaa\x37\x75\x6b\x0e\xf3\x21\xbb\xa6\x39\x7b\xa6\x2d\xa9\xcb\x01\x6a\x8c\xe7\x61\xc8\xa7\xa9\xee\xa9\xf0\xcc\xe8\x95\x96\xf2\x9a\x46\x84\xfc\x97\xa0\xae\xa8\x94\x19\x15\x05\xf4\x1d\x83\x77\x1e\xa8\xb4\x72\x1f\x89\xc0\xe2\x0b\x32\x81\x75\xaa\xfc\x15\xc1\x11\xf4\xbb\xb9\xf2\x92\x64\x8e\x76\x8f\x7a\xf3\xbd\x49\x42\x53\x90\x17\x20\xb1\xdf\xf5\xf5\x75\x1c\x0e\x87\x74\x78\x78\xc8\xd7\xbc\xc4\x4e\x23\x58\x5e\x8d\xd0\x7b\x0c\x7e\xab\x33\x68\xf9\x5b\xfc\x69\x7d\x8b\x1d\x64\x64\x7a\xcb\xd5\x1d\xa2\x2f\x36\x68\x03\x6a\xcc\xe0\xcb\xdf\x63\xeb\xc7\x1a\x94\x43\x75\x18\x6a\xbf\x90\x41\x24\xeb\xcb\xf2\xca\x59\xb4\xcb\x6f\x32\x4d\xa8\xcc\x5a\xbc\xb6\x29\xc1\xaa\x4b\x8b\x56\xcd\xc2\xb4\x3c\x54\x5a\x5e\x0b\x02\xdb\x80\xb7\x78\xd6\xb2\x60\xf9\xb7\x10\x5e\x69\x90\x5a\xe5\x94\xf8\xac\xf5\x8c\x5a\xbb\x6b\x74\x59\xf5\x63\x79\x3b\x17\x8c\xe6\x95\x95\x15\xdc\xd8\xd8\xa0\x34\x4d\x79\x5a\x00\xc8\xd7\x3c\x02\x40\xc2\xbc\x2f\xe9\x38\xcd\xef\x5b\x5c\x99\x26\xab\x83\x69\xb2\x9e\x66\xd8\xe5\x07\x4c\x70\x0f\x49\x5d\x9b\x01\xf0\x06\x65\x15\x9f\xbf\x23\xfb\x56\x8a\x68\x86\x8f\xb0\xee\x71\x97\xc6\x2a\x01\xc0\xd4\x65\xa3\x87\x6b\xd3\x4f\x3f\xdd\x3a\xf9\xd7\xbb\xeb\x93\x9f\x4f\xf3\x03\xf3\xca\xdd\x44\x85\xc7\x65\x02\xb9\xc7\x65\x8e\x88\xf3\x22\x29\xdd\xbb\x77\x8f\xee\xdd\xbb\xb7\x8c\xac\xd1\xe4\x98\xd5\xaf\xa5\x0e\xd0\x84\x8f\xff\x4a\x78\x8b\x0f\x16\xfa\x7f\x68\x3b\xb4\xf6\xac\x69\xed\x21\x78\x4f\x80\x15\x1f\x12\x34\x5a\x01\x38\x9c\xda\xe1\x36\x36\x36\x70\x7d\x7d\x9d\x3a\x9d\x8e\xdf\xd2\x9c\x0f\xe9\xd5\xd5\xe6\xa5\xd6\x9d\xcf\x8a\x60\x3a\x49\x29\x23\x44\x5c\x99\x24\xab\xeb\xe3\xe4\x74\x9a\x61\x0f\x10\x00\xd9\xa2\x59\x5f\xf8\xb2\x90\x58\x9d\x95\xe2\x39\xb2\xc6\x94\xfe\x91\x2b\x40\x35\x3c\xe5\x92\xde\xfc\xad\xd6\x11\xbc\x46\x5e\x21\xd5\x3a\x4d\x99\x07\x02\x77\x12\x2d\x6c\xcb\x13\xaf\x65\xaa\x84\x60\xd0\x9b\xb9\x8d\xde\xcc\x75\x66\x8e\x9e\x1e\xf6\xe7\x7b\x53\x47\x19\x57\x5e\x8a\xce\x54\x53\x5e\x36\x36\x36\xe8\xe9\xd3\xa7\x78\x7c\x7c\x2c\xad\xe4\x26\xe1\xda\x34\xb8\x73\x41\xe6\xdb\x89\x17\x55\xe6\xa3\xf1\x82\xc5\x3b\x9a\x72\xad\x79\x07\x2c\x7e\xb3\xca\xc7\xf9\x5b\x96\x8b\xe3\xd4\xbe\x69\x65\x0a\x95\x2f\x66\x40\xe5\x71\x72\xb0\x0c\x2d\x90\xd7\x06\x81\xa6\x41\xdd\xe3\xe5\xb8\xe5\x60\x24\x07\x18\x9e\x97\x36\xa8\x36\xc9\x14\xcb\x30\x92\x7c\xd8\x66\xfd\x05\x2f\x8b\x56\x6e\x6d\x70\x8c\x91\x91\x9a\x42\x66\xf1\x60\x93\x72\xd6\x24\x3f\xb5\x10\xaa\x43\x1f\x17\xe2\x73\x59\x1f\x21\x39\x1f\xd3\x7e\x4d\xed\xe6\xe3\x34\x58\x1e\xc7\xd3\xa9\xb8\x6f\xdf\xbe\x8d\x5f\xf8\xc2\x17\x60\x65\x65\x45\xca\x14\xef\x7d\x4f\x8b\x77\x07\x00\x29\x20\xb8\xe3\xce\x7c\x42\x08\xd4\x9f\xb9\x61\x7f\xea\x56\x13\x65\xbd\x4b\xed\xc6\xe8\xd2\x98\xad\x84\xb4\x7f\xa7\x82\xa2\x9a\x62\xc2\x0a\x97\x23\x13\x9b\x32\x84\xb1\x39\x73\x34\xd9\x19\xce\x7e\x71\xe3\xec\xf1\x0f\x3f\x3f\x35\xfa\xd9\x51\x6f\xfe\x84\x00\x0e\x20\xf7\xb6\x9c\x14\xde\x96\x31\x14\xeb\x5b\x0a\xa5\x65\x0e\x00\xd9\xce\xce\x4e\xf6\xf9\xe7\x9f\xc3\xd3\xa7\x4f\x9b\xfa\x8e\x16\xb4\x7e\xa9\xc9\xcc\x90\x62\xc3\xf3\x0c\xb6\x95\x41\x9f\x26\x97\xcb\x5f\x6d\x71\x6e\xa8\x70\x31\x0a\x84\x7c\x27\x91\x8e\xc7\xcb\x77\x4b\xf0\x59\x2e\xe4\x85\xce\x7f\xef\xde\xbd\x6c\x63\x63\x03\xcf\x9d\x3b\xe7\x15\x96\x72\x9d\x78\xa1\xa8\x20\xe4\x73\x9b\x5e\x99\x71\x80\xe0\x26\x09\x65\x09\x41\x67\x63\x9c\x6e\x0e\x26\x6e\xd3\x81\x73\xa5\x02\x50\xd3\x84\xcb\x53\x52\x2a\x3d\x9a\x29\x17\x25\x73\xfa\x4f\x8c\x53\xfd\xa9\xbc\xd5\x92\x5e\xa8\x16\xec\x02\x87\x03\xe0\x13\xa7\x15\xce\x1c\x96\x18\x4d\xc8\x70\x7b\x3c\xa5\x12\x53\xf4\x9e\xdc\xcb\x53\x1e\xad\x57\xe5\x01\xe8\x12\x82\xb5\xfe\x3c\x39\x3d\x9c\xba\x64\x92\xd0\xc3\xc3\xfe\xfc\x68\x96\xd0\xac\x38\x61\x12\xb9\xd2\xe2\x7f\x57\x57\x57\x71\x6b\x6b\x8b\xee\xdd\xbb\x07\xa3\xd1\x48\x13\x50\xa1\x41\x58\x6b\x3f\x8b\x59\xad\xc1\x53\x76\x2c\x8b\x5f\xb5\x0e\x56\x2b\x4b\x20\x0d\x7f\x0f\x0d\xe4\x1a\x3c\x80\x3e\x10\x85\xea\x87\xbf\x4b\xbc\xb1\x03\x9a\x86\x4b\xd6\x63\x88\x56\x4d\x60\x59\xf9\xf9\x3a\x95\x03\x9c\x55\x1f\xda\xa0\x28\x95\x9e\x90\x3c\x69\x6a\x03\xcd\xe2\xd7\x2c\x36\x8d\x16\x5f\x66\x00\x1d\xbf\x54\x7e\x65\xfb\x69\x8a\x1a\x08\x78\x59\xc6\x4c\xc0\x58\xfd\xc5\x92\xc7\x5a\x19\xb4\x77\x2d\x9e\xd7\xbf\xc6\x17\x21\x05\xce\xaa\x53\x09\x23\x0d\x10\x0d\x17\x08\x18\xcf\x0b\x92\x36\x89\xdb\x52\x92\x79\xa0\x0b\x17\x2e\xe0\xda\xda\x1a\x25\x49\xc2\x61\x73\x7b\xb3\xb8\xe6\xa4\x98\x2e\x4a\x88\x28\xc9\x12\xc0\xa3\xee\xfc\x84\x90\xb2\xc1\xcc\xf5\x07\x33\xb7\x9a\x64\xd8\xcd\x2d\x51\x36\xf5\x8e\xb0\xb0\xc6\x51\x06\x2c\xfe\xab\x8d\x05\x40\xc5\x54\x10\x41\xa5\xb4\xd4\xe5\x32\x15\xe9\xe6\x48\xb3\x9d\x95\xe9\x9d\x4f\xcf\x1e\xff\xbf\x9f\x9d\x1d\xfd\xaf\x83\xfe\xfc\x51\x86\x70\x80\x88\x27\x6c\x8a\xe8\x04\xaa\xab\x6d\x66\x88\x38\x2f\xd6\x28\xd2\x0f\x7e\xf0\x03\xfa\xd9\xcf\x7e\x56\xa2\x64\x64\x35\xf1\x86\x66\xec\x71\x3c\xb2\xdf\x6a\x38\x6a\xed\x20\xf0\x4a\xfe\x91\x7d\x10\x15\xb8\x05\x45\x35\x61\x48\x33\xa8\x77\x28\xad\x43\xf0\xce\xa7\x15\x0e\x94\x77\x50\xde\x79\xd0\xb4\xac\x26\x41\x15\xd2\xfa\xdc\x85\x0b\x17\xe0\xcc\x99\x33\xe4\x9c\x2b\xd7\xba\x14\x4a\x4b\x0e\x54\x79\x61\xbc\xd6\x9d\xcc\x5d\xe6\xe6\x0e\xb2\xee\xcc\xf5\x36\x4f\x3a\x5b\x9d\x39\x0e\x4b\x17\x1f\x53\x8b\xa9\x3c\x1f\xc5\x97\x96\xbf\xd7\x0f\x9c\xf3\x4a\x84\x67\x5a\x20\xa6\x9f\x97\x8c\xbf\xa0\xd3\x17\x59\x15\x79\xf3\x35\x2c\xde\xcb\xe3\x69\x2a\x20\xf5\x75\x2e\xbe\xa3\xd5\x3d\x3b\x40\x45\x67\x41\xf4\xde\x20\x4c\x32\x5c\xed\xcf\x92\xb3\x2b\xe3\x24\x39\xee\x64\x77\x77\x07\xb3\x23\x40\x24\x02\xca\xf2\x75\xce\x94\x15\xf5\x45\x45\x1e\xb4\xb2\xb2\x82\x97\x2f\x5f\xa6\x1b\x37\x6e\xe0\x6c\x36\x93\x0a\x2d\x17\x2c\xfe\x19\x04\x8c\x6c\x67\x80\x45\xc1\x28\x05\x93\x13\xdf\xb4\xe9\x05\xad\x73\x48\x01\x6a\xe5\x63\x09\x5c\xab\xc3\x69\xb4\xf1\x3a\xd0\x82\xaf\x0b\x8f\x93\x3f\x6b\xfc\xcf\xeb\x45\xd2\x28\xcb\x0e\x0d\xf5\xa3\xd1\xa2\xe5\x17\x53\x56\xde\xc6\x00\x8b\xf8\x9b\x04\x99\x54\x72\xb4\x01\x54\x1b\xe0\xad\xa0\xe1\xe1\xcf\x21\x79\xc6\x07\x4c\x4b\xa9\xe1\xf5\xc9\xeb\x07\x40\x57\x8a\x43\xca\x89\xc6\x9b\xb2\xee\xa5\x6c\xd3\x94\x5d\x9e\x9f\xcc\x5f\x06\xad\xef\x59\x0a\x8f\xc5\x2b\x5e\x51\x95\xfc\x2d\x79\x50\x6e\xb0\xb0\xc6\x04\x5e\x56\x59\xbf\x5a\xff\x91\x03\x98\xec\x9b\xb5\x70\xf3\xe6\x4d\x7c\xe1\x85\x17\x60\x73\x73\x93\xa7\xcf\xc5\x6f\x2e\x30\x13\xf1\xeb\x66\x09\xc1\x61\x6f\x7e\x9c\x21\xd0\x60\x9a\x0c\xfa\xb9\xf2\xd2\x91\x72\x5a\x2a\x26\xf9\x38\x51\x51\x46\xec\x9b\xa7\x8e\xc0\x1f\x99\xc1\x76\xa1\xb2\x13\x4b\xfd\x4d\xd4\x99\x83\xd9\xd3\x95\xe9\xad\xff\x38\x77\xf4\xcf\x9f\x6e\x8d\x7e\xba\xdf\x9f\x3d\xca\x1c\xec\x03\xc0\x31\x22\x1e\x16\xbf\xc7\x50\x9c\x0a\x8f\x88\x13\x3f\x45\x84\x88\x34\x1e\x8f\xe9\xd6\xad\x5b\xf4\xe4\xc9\x13\x4f\x01\x27\xdb\xe2\x6f\x8d\x9f\x35\xfe\xd0\x78\x47\xc2\x6a\xc1\xb7\x9d\x36\x66\x73\x1c\x9a\x5c\x58\xc0\x9d\xb0\x8f\x1a\x12\x2e\xb0\x64\x86\x5c\xf0\xca\x8e\x68\x05\x4d\x98\x59\x9a\xb5\xe6\x8e\x0e\xd1\x59\x7e\xbb\x73\xe7\x0e\x26\x49\x02\xdb\xdb\xdb\x65\xc3\x14\x83\xae\x03\xc8\x6f\x43\xc6\xea\x5c\x17\x07\x00\x09\x20\xba\x69\x9a\x65\x99\x03\xb7\x31\x4a\x57\xd7\x47\xe9\x96\x03\x2c\x8f\xe3\xf5\x25\x2d\xd7\xbb\x20\x94\x8a\x44\xa5\x6a\x60\x05\x03\x82\x99\x0b\x2e\xf7\x0c\x4f\x25\xce\x4a\xe3\xf6\x58\xaa\xff\xa1\x5a\xb8\x5b\x91\x20\x60\xa1\x52\x5a\xd8\x33\xef\x45\xb9\x12\x44\x65\x7c\xa5\x08\x41\x31\x1d\x86\x98\x10\xac\x0e\x66\xc9\xf9\x8d\x51\x9a\xec\x0d\xe6\x37\x0e\xfa\xb3\x31\x20\xfa\x33\x5e\xa0\x58\xb4\x5b\x90\x94\x13\xde\xeb\xf5\xe8\xf5\xd7\x5f\x87\x1f\xfe\xf0\x87\xa1\x45\x95\xf2\x19\x1a\x9e\xad\x81\xcd\xc2\xad\xc5\x5b\x7c\x12\xa2\x2d\xd4\x61\xac\x01\x36\xa6\x4c\x32\x68\xf9\x35\x09\x82\x10\x6c\xdb\xfa\x0e\xe5\xa1\xe1\x0c\xe1\xb3\x68\x0f\xe5\xd9\x26\xc4\xd6\x69\x5b\x5c\xfc\x3d\xc4\x2f\xa0\xc0\xf0\x6f\xda\x00\xab\xc9\xc1\x50\xfd\x58\xde\xc0\xa6\xe7\x18\xcf\x4a\xc8\xb3\x67\xd1\x63\x85\x90\x8c\x97\x0a\x48\x93\x8c\x97\xc6\xaf\xcc\x5f\x2a\xce\x16\x1e\x1f\x67\x29\xe8\x74\xed\xda\x35\xdc\xdc\xdc\xf4\xb8\x3c\x3c\xff\xf3\x71\xe5\xfa\xc7\x59\x42\xd9\x61\x6f\x7e\x34\xea\x64\xc7\x9d\xb9\x4b\x06\xb3\x64\x35\xcd\x5c\xaf\x94\xbf\x04\x35\x61\xcc\xd7\x40\x7a\x6c\x72\xdc\xf0\x63\x06\x10\x1f\x13\xea\x78\x00\x01\xe6\x8e\x66\x4f\x87\xb3\x9b\x3f\xda\x3e\xfc\xc7\x1b\x67\x4f\x7e\x76\xd8\x9b\x3f\x26\x07\x07\xc0\x94\x16\x60\xa7\xe5\x12\xd1\x98\x4f\x11\x01\x40\xf6\xb7\x7f\xfb\xb7\x59\x71\x76\x4b\x93\x4c\x91\xcf\xcf\xc2\x1f\x4d\xe1\x79\xf6\x65\xf8\xdf\x05\x07\x12\x44\x8e\x84\x17\x8d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x87\xf5\x52\x8c\xea\xb6\x01\x00") -func web_uiStaticMstile310x150PngBytes() ([]byte, error) { +func web_uiV1StaticMstile310x150PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticMstile310x150Png, - "web_ui/static/mstile-310x150.png", + _web_uiV1StaticMstile310x150Png, + "web_ui/v1/static/mstile-310x150.png", ) } -func web_uiStaticMstile310x150Png() (*asset, error) { - bytes, err := web_uiStaticMstile310x150PngBytes() +func web_uiV1StaticMstile310x150Png() (*asset, error) { + bytes, err := web_uiV1StaticMstile310x150PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/mstile-310x150.png", size: 112362, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/mstile-310x150.png", size: 112362, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticMstile310x310Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x23\x40\xdc\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x02\x2e\x00\x00\x02\x2e\x08\x06\x00\x00\x00\x98\x4a\x83\xdf\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xdc\xbd\xfb\x93\x25\xc7\x55\x3f\x78\x32\xab\x6e\xdd\xdb\xb7\x7b\x7a\x7a\x5a\x33\xa3\xb1\xa4\x19\x8d\x85\x2c\xc9\x46\x18\x61\x19\x6c\x8c\xbe\x0b\x18\xaf\xe1\xbb\x66\x59\x08\x82\x30\x8f\x20\x02\x47\x20\xfd\x51\xb2\x03\xfc\x03\x01\xf8\x07\xf8\x81\x0d\xff\xc0\x06\x0f\x47\x7c\xc1\xf1\x35\xeb\xd7\x1a\xfc\xc0\x36\xb2\x24\x8f\x47\xd2\xa8\xd5\xd3\xd3\xd3\x7d\xfb\x3e\xaa\x32\xf7\x87\xaa\xac\x3a\x79\xea\xe4\xab\xee\xed\xb1\x77\x53\x31\xea\xaa\xac\x93\xe7\x9c\x7c\x9d\xf3\xa9\x93\x59\x79\x01\xea\x24\x81\x4f\x32\xf2\xaf\x8f\x07\xe5\x67\xfe\x71\x79\x1c\x5f\x70\x94\xe1\xf4\x74\xf1\xf4\xd5\xcf\xf7\x7c\x9d\xe4\xaa\x4b\xec\xb3\x14\x19\x9b\x48\xa9\xbc\x5c\x7d\x30\xb4\x4e\x5c\x3f\xa4\xc8\x70\xf1\x0c\x3d\x0b\x8d\xfd\x18\x5e\x29\x72\x31\x8d\x6b\x5c\xfb\xe6\xd9\xba\xf2\x53\xdb\x6e\x9d\x76\x18\x9a\x5c\x63\x68\xd3\xb2\x63\xc6\xea\xba\x73\x74\xa8\x1e\x43\xf2\xcf\x2b\x6d\x4a\xde\x50\x3e\x3f\x6e\xf9\x9b\x96\xf7\xa0\xfa\xf5\x27\x69\x7c\x6f\x5c\x4e\x08\x7c\x84\x1c\x92\xcf\xd8\x86\x14\x0b\x19\x6e\x4c\x13\x03\x9a\x86\x00\xad\x14\xc3\x1c\xdb\x06\xbe\xb4\x69\x47\x70\x5e\x93\x71\x28\xd8\x48\xe1\x31\xd4\x31\xbb\xf4\xd8\x44\x5b\x84\xea\x73\x5e\x40\xd7\x27\xd3\xa7\xcb\x3a\x3c\xe8\xb3\x75\x78\x0e\x01\x57\xeb\x38\xb2\x07\x05\x1e\x62\x9f\xc7\x94\xdd\x04\x8f\xd8\xfc\xf3\xd0\x23\x75\xfc\xbb\x7c\xcb\xba\xe5\x63\x93\xcb\xbf\xa4\x94\x4f\x2d\x77\x9e\x7d\x7c\x1e\xbc\x63\x9f\x0f\x91\xf7\xc0\x80\x6a\x08\x15\xc5\x18\xf5\x18\x19\x2e\x70\x93\x0a\x00\x7c\x13\x23\x64\x58\xb9\x49\xb8\xae\x23\xde\x44\x99\x07\x8d\xc6\x1f\xd8\xe0\x5a\x93\xb7\xab\x3f\x87\x3a\xe5\xd8\x76\x1e\x02\xc0\x5d\xfc\x87\xf4\xed\x10\x30\x3c\x84\x87\x8b\xee\x3c\x0c\x5e\xe8\x45\xe2\x41\xcd\x81\x75\xd2\x4f\x92\x2e\x00\xeb\x83\xb9\x4d\xbd\x3c\x3c\x28\x79\x43\xe5\xae\x2b\x2b\xe6\x39\xf5\x71\xeb\xf0\x1c\x4a\xbb\x09\x19\xae\xb6\x4d\x7d\x69\x49\xf1\xd3\x49\xc9\xd5\xc8\xa9\x08\x9b\xe3\x1b\x02\x26\x21\xe7\x32\x04\x10\xb9\x64\xd1\x7c\x1f\xff\xd8\x4e\x7b\x50\x29\x76\x00\x6d\xda\x01\xa4\x38\xf8\x21\xfc\x63\xe5\xad\x4b\x9b\x5a\x6e\x13\x20\x75\xc8\xb8\x4a\xd5\x2d\x16\x58\xf9\x78\x0f\x9d\x63\xb1\x69\x88\x31\xa4\xf9\x31\xe3\x39\x96\x6f\x2c\x88\x8d\x95\xef\x93\xb9\xae\xfd\x5c\xe7\xf9\xba\xb2\x52\xe7\x74\x2c\x8f\x21\x7e\x61\xa8\x1e\xb1\x73\x70\x9d\x31\x4a\xcb\x85\xc6\x93\xcf\x6e\xaf\x9b\xd6\x99\x9f\xa9\x75\x4e\xf5\xcf\x3e\x7e\x6b\xd9\x64\xca\x9c\x2a\xe6\xba\xf7\x31\xa7\xf4\xa1\x67\xa1\x81\x96\xe2\x0c\x42\x7c\x62\x0c\xd6\x10\x39\x9b\x4e\xa9\x7a\x9e\x87\xcc\xa1\xc6\xc5\x65\x10\x36\x6d\xcc\x7d\xe3\x28\xd5\x90\x70\x65\x36\x09\x76\x42\x6d\x95\x0a\x62\xce\x73\x4c\xa6\xf2\x8e\x31\x4c\x31\x36\x81\x33\x8a\x43\xfa\x60\x48\xdf\x73\xe5\x5d\x3a\xfb\xe6\x49\x2c\x7d\xea\x1c\x49\x6d\x9f\x18\x9d\x62\xed\x76\xac\x4e\x9b\x6c\x57\xd7\x1c\x71\xf9\x25\xaa\x93\x4f\x8e\x8b\x96\xd3\x35\x96\x9e\xa3\x49\x29\x07\x01\x9a\x98\xf1\x14\xab\x5f\x48\xf6\x3a\xfa\xbb\xf8\xc4\xd4\x6d\x23\x76\x2d\x85\x81\x6b\x30\xb9\x1a\x34\x34\x71\x5d\xc6\xdc\x37\x69\x7d\x93\x3a\xc4\xdb\x25\x8f\x5e\x73\x3a\x70\x29\x66\x70\xa6\x94\x09\xd1\xc5\x18\xc6\x75\x53\x2a\xcf\x50\xdf\x70\xbc\x63\x8c\x07\xce\xf7\x19\xb7\xd8\x76\x0a\xd1\xc4\xea\xe3\xe2\xed\x1b\xe7\x3e\x1e\xdc\xdc\x19\x22\xd3\x77\xef\x9b\x33\x1c\x5d\x28\xf9\xf4\x8c\x31\x7c\x31\xfc\x52\xe8\x63\xfb\x72\x68\xdd\x7e\x5c\x69\x93\xba\xa4\xf6\x47\x4a\x1b\xa7\xf0\x4f\x75\x5a\x43\xda\x20\xa5\x9f\xd7\xb1\xc7\x9b\xa0\x5d\x27\x85\xec\xad\xab\x0c\x2e\x7b\x9e\xe9\x81\xb6\x59\xc8\xc1\x87\x04\xc7\x38\x2e\xae\x9c\xaf\x6c\x08\xc4\xb8\x74\x48\x35\xce\x31\x80\xc6\x55\x6e\x68\xd9\x94\xb4\x29\xe3\x10\xd3\xaf\x31\xed\xba\xe9\xc1\x7f\x1e\x20\xcc\x97\x9f\x32\xf1\x43\xbc\x62\xef\x5d\x3c\x42\x00\x28\xf4\x2c\x26\x85\x40\x94\x8f\x76\x28\x0d\xa6\xdb\xd4\x78\x89\x19\x27\x43\xe5\x6c\x9a\xb7\xab\xcf\x62\x41\x6a\x0a\x7f\x97\xcc\x75\xd3\x50\x3b\x9a\xc2\xcf\x77\x3d\x94\x37\xbe\x3f\xcf\x31\xe8\xca\xdf\xc4\x18\x34\xf7\x29\x7e\x2b\xd5\xae\xfb\xae\x87\xa6\xd0\xb8\x4c\x2e\xec\xa3\x0d\x01\x0e\x9f\x73\x8e\x31\x8a\xd2\xf3\x2f\xa4\x47\xc8\x79\xfa\x74\xf4\xf1\xe5\x68\x43\xf9\xbe\x14\xd2\x7f\x13\x29\xd6\x59\x6e\x6a\xe2\x84\x9e\xf9\xf4\x09\x4d\xaa\x94\x09\x13\xf3\xdc\x65\xa0\x42\x63\x7b\x1d\xdd\xd6\xed\xdb\x54\x90\x10\xea\xdf\x90\x83\x74\xf1\x4c\x29\xc3\xb5\x73\x8a\x51\x8c\x99\x27\x29\x3a\x85\xe6\x44\x48\x4e\x2c\x4d\xaa\x53\x88\xd1\x6b\xd3\xbc\x5d\x32\x62\x1c\x5f\xac\x9d\xf7\xb5\xdf\xd0\x76\x0b\xf5\xa3\x6b\x7e\x0f\x9d\x07\xbe\xf6\x8b\xe1\xed\xe2\x43\x79\x50\xde\x21\xf9\xa1\xbc\x54\x5d\x5c\xf2\xcd\xfd\x10\xdb\x96\x52\xb7\xa1\xf3\xdf\x22\xf4\x0d\x52\x6e\x90\x0c\x99\x0c\x31\x95\xe5\x78\xc4\xca\x88\xe1\x93\x32\x60\x63\x52\xea\x00\x8a\x79\x36\x44\x8f\x21\xb2\x87\xd0\xc6\x38\xa4\x4d\xc8\xdb\x04\xef\x18\xe3\x18\xab\x4f\x4c\x19\x97\x11\x8f\x31\xbc\xdc\xb3\xd8\x36\x58\xb7\x1d\x63\x9c\x4f\xc8\x90\xf9\x64\xf8\x6c\x09\xcd\x8f\x71\x36\x2e\xde\x5c\xf9\xd8\xba\xc4\xb6\x79\x6c\x5b\xc5\xe8\x80\xf3\x7c\x6d\x10\x7a\x36\x84\xb7\x2b\x8f\x93\xe9\x92\xc3\xc9\xf5\xf5\x71\x6c\x79\x17\x7d\x4a\x1b\x84\xe4\xb8\xe4\x85\xc6\x46\xaa\x0e\x38\x6f\x1d\xde\x9b\xd2\x29\x76\xdc\x85\x6c\x99\x6f\x6e\xf8\x74\xf1\xc9\x0b\x8e\x1f\xdf\x00\xf5\x29\xcb\x3d\x4b\x51\xc0\x55\xf9\x94\x81\xeb\x6b\x50\x2e\xc5\x4e\x26\x9f\xac\x54\x79\xbe\xfb\xd8\xb2\x2e\x9a\x90\x0e\xa9\x03\xea\x3c\x53\x4a\xbb\xaf\x2b\x67\x28\xdf\x98\x32\xa9\x86\x98\xcb\x8b\xe9\xcf\x58\x7d\x86\x96\xf1\xd1\xae\xdb\x27\x31\xc6\x76\x1d\x59\x29\xf3\x68\x88\x0c\x9f\x03\x88\x29\xcb\x95\x0b\xd9\x55\x9f\xac\x18\xe7\x10\x23\x6b\x48\xf9\x4d\xb5\xeb\xa6\xc7\x94\xef\xf9\xba\xf3\x6b\xc8\xbc\x0b\xe5\xc7\xce\x81\xd4\xf1\x13\xab\x53\x8a\x3e\x2e\x7e\x9b\x9c\x63\xa9\x7c\x9c\xfa\xae\x3b\x08\x5d\xc0\x23\x04\x86\x42\x46\x2e\x16\x24\x71\x3c\x62\xc0\x8d\x0b\x40\x71\xfa\xba\xe4\x84\x52\xec\x60\x8c\xe5\xe3\x2a\xbb\x09\x30\xb0\x69\x70\x11\xd3\x46\x43\xda\x25\x46\xb7\xf3\x06\x47\xeb\xf2\xd8\x74\x7f\xa5\x3c\x73\xd1\x6d\xd2\x98\x51\x9a\x98\x3a\x6f\xca\x69\xc4\x38\x0a\xdf\x9c\xf7\x95\x19\xa2\x5b\x4a\xbd\x69\x3b\xb9\xda\x3b\x56\xf7\x90\x4e\x31\x34\x43\x64\xad\x33\x36\x37\x31\xaf\x63\xc7\x5d\x4a\x3b\x84\x52\xa8\xbf\x62\xe8\x38\xb9\x43\x75\x4a\x69\x67\x97\xcf\xe4\xca\xac\xd3\x7f\x3e\x3a\x97\x5f\x76\x16\xe4\x94\xf6\x81\x0e\x60\xe8\xb8\xb2\x2e\xf0\x10\xd3\xa1\xb1\x13\xc9\xc5\xcf\xa5\xbf\x8b\x6f\xe8\x19\xa7\xaf\x4f\x6f\xd7\x5f\x57\x9e\x8b\x77\x0c\x5d\x68\xb2\xf8\xea\x16\xba\x8e\xd5\x6b\xd3\x0e\xc0\xd0\xc5\xea\x38\x44\x4e\xac\x01\x09\xc9\x89\xa1\x4b\xd5\xe5\x3c\xd3\x26\xda\x3f\xc4\x37\xb5\xaf\x39\x79\x9b\xa4\x8f\x1d\x9f\xa9\x8e\x97\xb3\x1d\x29\xc6\x3f\xb5\x0e\x9b\xe8\x83\x18\x7b\x91\xaa\x4b\xac\xa3\xf3\xd9\x43\xdf\xf3\x58\x1b\x34\xd4\x0e\xc5\xd8\xbf\xd4\xb9\x30\xa4\x5f\x63\xea\x1a\x3b\xfe\x42\x3c\x52\xda\x2a\x86\xee\xbc\xe7\xba\x53\x1f\x5f\x83\xb8\x2a\x1c\x52\xc0\x37\x08\x62\x27\x59\xec\xc4\xc3\xf4\x21\x23\xc4\x75\xf8\xa6\xd2\x83\x72\x40\x3f\x29\x29\xc6\x00\xa4\x8c\x91\x54\x99\x43\xe9\xd6\xed\xa7\x18\x63\x3a\xa4\xfc\x26\xd2\x83\x1c\x83\xa1\x7e\x8e\x71\xa0\x3e\xbe\xb1\x86\x18\xe7\x0d\x31\x8a\x31\xf9\x29\x4e\xfd\x3c\xec\xcb\xd0\xb6\xf4\x95\x8d\x2d\x17\xc3\x77\xc8\xfc\x8f\x95\xed\xea\xe3\x14\x30\x97\x22\x73\x88\x63\x1f\xda\xc6\x31\x72\x52\xc6\x54\xca\xd8\x5d\x07\x70\x0c\x9d\xa3\x31\x7a\x38\xcb\x85\x08\x39\x00\xe0\x43\x78\xdc\x00\xf6\x35\x56\x8c\xb1\xf1\x81\x29\x8e\xc6\xa7\x8f\x0f\x14\x6d\xa2\x53\x37\x9d\xce\x13\x54\x0d\x1d\x44\xae\xb2\xff\x5f\x68\xa7\x9f\x34\xa0\xf0\x20\xf5\x89\xe9\xef\x14\x47\x3b\x94\x2e\x05\xd8\x84\xf8\xf9\x1c\x59\xc8\x90\xfa\x00\x40\xc8\x4e\x0c\x05\x6a\xa9\xf4\xa9\xfd\x91\x32\xa7\x37\x01\xec\x62\x69\x62\x6c\x49\x6c\xf9\x21\x20\xc5\xe7\x67\x62\xc7\x49\x8c\xbc\xf3\x98\x13\xf8\x7a\xc8\x3c\x49\x1d\x3f\xa9\xbc\xd7\xe1\x9f\xe2\x63\xa2\xe4\xc4\x1a\x84\x68\x84\xc4\x3c\x0b\x19\x88\x90\x2e\x34\xcf\x07\x70\x62\x01\x8f\x2f\x0d\x1d\xfc\x3e\x3e\x43\xe4\xc6\xf0\x1c\x0a\x4e\x42\xf9\xf8\xf9\xba\x93\x27\x56\xb7\x18\x1d\x63\xfb\x35\xd5\xb0\xac\x3b\x66\xb8\x32\x29\x06\x3e\x95\x26\xd6\x10\x84\xda\x87\x6b\xfb\xd8\x31\xe6\x2b\x3b\xa4\x5f\x42\x36\x22\x24\x2f\xd5\x26\xe1\x72\xb1\xb6\xc8\x37\x1f\x62\xfb\x60\x1d\x07\xb8\x8e\xbd\x4e\xad\xb3\xeb\xd9\x90\xe4\x6b\x9b\xd8\x31\x1a\xa3\xcf\x3a\x76\x33\x76\x1c\x0f\xb1\xb9\xb1\xf2\x52\xcb\xc6\xb4\x6b\xaa\xcd\x8c\xad\x5f\x0c\x0f\xdf\x35\x57\xa6\x47\x9b\xda\x30\xb1\x42\x7c\x13\x20\xd4\xf9\xae\x89\x14\xfa\x1b\xd2\x8f\x6b\x80\x4d\x4c\xbc\x4d\x74\xe8\xd0\x72\xeb\xea\x9f\x2a\x2f\x55\x66\x6c\x1b\xfb\x26\xcd\x10\x67\x17\x4b\xb7\x29\x43\xec\x73\x10\xae\xf9\x90\x22\x77\x48\xfb\xc4\xf2\x1b\xd2\x3e\x29\x7d\x3a\xd4\x0e\xf8\xee\x71\x7e\x48\xa7\x50\xfb\xfb\xf4\x1b\x52\xdf\xd8\xb4\xee\xdc\xf7\xf1\x08\x39\x0a\x4a\x3b\xb4\x5f\x5d\xed\x9a\x62\xa3\x53\x74\x0d\xc9\x48\x1d\xaf\xa9\x63\xd4\xa7\x63\x8a\x9f\x0c\xe9\x34\xb4\x8f\x63\xf8\xc6\x8c\x6f\x5f\x9b\xba\x92\x4b\xef\xd8\x3e\xf1\xb5\x31\xab\x6b\x88\xd0\x59\x90\x49\x9b\x00\x02\xf4\xde\xf7\xcf\xc7\xc7\xc5\x8b\x93\x97\x32\x71\x63\xd2\x26\x9c\xea\x26\x74\x38\x2f\xfe\x31\x93\x76\x13\x86\x39\xe6\x3e\x95\xdf\x79\x26\xd7\xd8\x74\x19\x22\x6e\x8e\xc5\x1a\xf0\x58\xa3\xec\x7a\x96\xe2\x54\x62\x78\xc7\x1a\xbf\x50\x7f\x84\x9c\xa1\xef\x9a\xca\x8d\x29\xef\xd3\x63\x48\xbe\xcb\x46\x0d\x6d\x9f\x21\xe5\x42\xba\xb8\x52\xaa\x1d\x4c\xe5\x3f\x24\xa5\x3a\xcf\x98\x3c\xca\x3b\xb6\x5c\xc8\xb9\x86\x64\x86\xfa\xce\xe7\xb7\x62\xfb\x9d\xa3\xa7\xcf\x39\xbd\x62\xf3\x5d\xfc\xd7\xa5\x8d\xcd\xf7\x8e\x85\x98\x09\x31\xa4\x3c\xe5\xe1\xaa\xa8\x8b\x97\x4b\x56\xa8\xf3\x5c\xbc\x63\xf9\x87\xae\x87\xa6\x75\xf9\xf9\x26\xc8\x26\xf9\x6d\x22\xa5\xf2\x8e\x19\x1b\x43\x79\x0f\x2d\x33\x84\x5f\xc8\x70\x72\x7f\x87\xc8\xdc\x84\x03\x19\x5a\x76\xdd\x7e\x89\x75\x08\x29\xfc\x37\xd5\xa6\xf8\x7a\x28\xcf\x18\x59\x43\xf4\xf1\xd1\x87\xec\x68\x8a\xdd\x0b\xd1\xc7\x8c\xbb\x18\xdb\x3b\x74\x1e\xc7\x82\x0c\x4e\x8e\x6b\x0e\x86\xfa\x7a\x53\xf9\xae\x94\x3a\x9f\x53\x6d\xc1\xd0\x79\x11\x3b\x66\x37\xd9\x0e\xbd\x72\xd4\xc9\x87\x3a\x9b\xd2\x84\x0c\xce\x10\x00\x13\xa2\x8b\x75\xf6\x21\xfd\x42\x29\x05\xf4\xc4\xb6\x1f\xf7\x2c\x34\x89\xb8\x3a\xa7\x18\x30\x2e\x3f\xa6\x4d\x5d\xfd\xe3\x4b\x29\xba\xc4\x4e\xcc\x94\xf6\x8a\xd5\x27\x94\xd6\x71\x76\xf4\x3e\xd4\xbe\x2e\x5e\xeb\x8c\xd9\x14\xa3\x15\x63\xc4\xb9\xf2\xeb\x3a\xbe\xd8\xfb\x98\xbe\x0d\xcd\x3d\x8e\x5f\x4c\x1b\xa5\xf6\x5b\xac\x3d\x0c\xd9\xdc\x14\xfb\x11\xa3\xb3\xeb\xb9\x4f\x46\x6c\x1f\xc7\xd0\xfa\xec\xa4\xcf\x2e\x0e\x99\x87\x3e\x7b\x19\x23\x23\x46\x57\x4a\x1b\xd2\xc9\xc5\xdf\xf7\x9c\xca\x0c\xd9\x50\x57\x3f\xc4\xd6\x2f\xa4\x9f\xcf\xa6\xb9\x74\x8a\xd5\x23\x96\x2f\xc7\x67\x23\x29\x34\x20\x63\x26\x71\x4c\x43\xfa\x26\x36\x47\x93\x6a\xb4\xce\x2b\xa5\x1a\xfb\xd0\xb3\x21\x13\x7b\x08\x8f\xa1\x46\x64\xc8\xb3\x90\xfc\xd0\x64\xe6\xe4\xac\x53\xef\x4d\xa6\x75\xfa\x70\x48\x5d\x37\xd9\x67\x3e\x59\xb1\x8e\xcb\x55\x96\xa3\xdf\x44\x7d\x42\xe9\x3c\x8d\x61\xc8\x06\x6d\x92\x37\xe5\x9b\x3a\xa7\x53\xe6\x54\x4c\x4a\xe1\x31\x44\xee\x26\xc6\x44\x68\xdc\x0d\xd5\x25\x95\x47\xea\x58\x3f\x8f\x31\xfb\xa0\xe5\xfb\xec\x60\xb4\x2e\x2e\xe0\xe0\x02\x02\xb1\x20\xc3\x65\xd4\x7c\x13\xce\x75\x1f\x23\x9b\xd2\xc7\xd4\x85\x93\xe7\xe2\x39\x24\xc5\xe8\x38\x84\x6e\xa8\x41\x8c\x9d\x54\x9b\xe2\x35\x44\x5e\xa8\x6f\x63\x53\x2a\x68\x49\x95\x19\xeb\x98\x42\xf7\x3e\x19\xe7\x41\x93\x92\x62\xc1\x88\xb9\x1f\x5a\x37\x8e\x3e\x46\xf6\x79\xb4\xc9\xba\x63\x2f\xa6\xbf\xf1\xb3\x18\x79\xa9\x6d\x32\xa4\x0e\xb1\xfd\x99\xc2\x77\x28\x38\x48\xe9\xd7\x1f\x47\xff\xc6\xd8\x6e\x88\xa0\x89\xe9\x33\x2a\x37\x44\x13\x9b\xb7\xa9\x76\xe3\x68\x36\x35\x77\x93\xe8\x63\x3b\xd6\xd7\xe8\xa1\xc6\x0a\x81\x0f\xca\x23\x06\x68\xa4\xe8\xe7\xe3\xe3\xd2\x2f\x45\x6e\x8a\x81\xf0\xf1\x49\x49\x9b\x36\x1e\x1c\x0f\x1f\x70\x4a\xd1\xc7\x05\xc6\xd6\x31\x6a\xb1\x46\xc2\xa5\x0f\xbd\xf6\x95\x4f\xbd\x4e\xd5\x2b\x56\xd7\x21\xf4\xa1\xf2\xeb\xf0\x4f\x31\x5c\x21\xba\x50\xd9\x75\x68\x36\x59\x6e\x08\xef\xd4\x3e\x4f\xe1\x1d\x5b\x6e\xdd\x34\x14\x38\xd0\xf2\x34\x6f\x5d\x7e\xeb\x8c\xaf\x75\xd2\x26\xc0\x98\x8b\xf6\x41\x8e\xcd\x07\xc1\x3b\xd5\xc6\x7a\x89\x69\xa1\x10\x10\xf0\x39\xf7\x54\x83\x19\x6b\xf0\x63\x40\x92\xcb\x09\x85\x1c\xe4\x79\x1b\x80\x58\xa7\xe8\x2b\xbf\x09\x79\xeb\x0c\xa6\x18\xba\xf3\x72\x2e\x43\xc0\x20\x7d\xe6\x1b\x7b\xb1\xfa\xc7\xd0\xa7\xe6\xc5\xb6\xc7\x3a\x6d\xec\x2a\xbb\x09\x43\x1f\xe2\xe1\x03\x86\x43\x80\x62\xa8\x1d\x52\x78\xc6\xf4\xa3\xcf\xa6\xa4\x38\xac\xd4\x39\xe9\xd2\x83\x2b\x93\xea\x38\x63\xc7\xc1\x3a\x0e\x79\xe8\x98\x8b\x1d\xbb\x31\x65\x42\x32\x53\xfd\x4d\x8a\xdc\x54\x9b\x42\xf3\xd6\xe9\x07\x9f\x0f\x4e\xa1\x89\x91\x45\xf3\x7d\xba\xfb\xca\x26\xd9\x64\x49\xfe\xb9\x94\xe0\xee\x5d\x79\xa1\x46\xf7\x4d\x44\x9f\x71\x88\xed\xc8\x90\xae\x9c\x9c\x75\x52\xaa\xe3\x09\x3d\x4b\xe1\xe7\x6a\x9b\x75\x75\xda\xb4\x83\xf3\x4d\x9a\x21\x3c\x86\xf2\xdb\x74\x1f\xf8\xca\xa5\x18\xcf\xa1\x6d\x3a\xd4\xe1\x0c\x91\x15\xa3\x47\x8a\x43\x1d\x32\x17\x43\x72\x38\xbb\xe4\xd3\x25\x64\xb0\x53\x75\x3b\xaf\x76\x4f\x71\x16\xa9\xb4\x2e\x3b\x4c\xf3\x7c\x3a\xae\x3b\xf7\x86\xd2\xc7\xc8\x8e\xa9\xdf\x26\xda\x31\x96\x76\x13\x69\x53\xe3\xd2\xa7\xff\x90\x36\x0a\xb5\x87\x4f\xb7\x58\xdb\xcc\x32\xe0\x94\x0d\x35\xd2\xba\xcf\x62\x8d\x4b\x4a\x8a\x9d\x78\x9b\x92\xb7\xa9\x14\xdb\xf1\xa9\x03\x84\x96\x4b\x7d\xf6\xa0\x53\x8c\x03\x3c\x0f\x63\x10\x92\x97\xc2\x63\x1d\xba\x4d\x00\xbd\xa1\xb2\x7e\x1c\x29\xb5\x6d\x7f\x12\x74\x5e\x37\x0d\x01\x6c\x0f\x32\x85\x9c\x9d\x8f\xc6\x55\x2e\x76\x5e\xa5\x8e\xf7\x18\x9d\x7e\x92\xda\x90\xa3\xfb\xff\xcb\x98\xe6\xae\x63\xe8\x37\x22\xd4\xdc\xfb\xd0\x39\x30\xcf\x62\xc1\xce\x26\xca\x50\x9d\x63\x74\x73\xd5\xc3\x27\xcf\xc5\x3f\x35\x3d\x08\x07\x92\x32\x69\xcf\xcb\x11\xae\x93\x36\xa1\x67\x6c\x1b\xac\x6b\x98\xcf\x03\x3c\x9e\x67\xe2\xea\xb5\x09\xc7\xb9\xc9\xf6\x72\xbd\x40\x85\x74\x19\xe2\xe8\x52\xf9\xa6\xe8\x1f\x92\xcd\xdd\xbb\xea\xcc\xd9\x2d\xee\x6f\xcc\xdc\x19\x62\x83\x62\x6d\x72\x4a\x99\x54\x19\x2e\xba\xd8\x3e\x4c\x4d\x3e\xbe\xae\xfe\xa0\x34\x21\x5d\x86\xfa\x03\x97\x9f\x76\xd1\xc5\xce\x97\x4d\xcc\x21\x2a\x2f\x34\x97\xb9\xbc\xa1\x76\x35\x99\xc9\xd0\x0e\xf2\x19\xd2\xd0\x64\x48\xd5\x2b\xa4\x83\xcb\x60\xa6\xf2\x8f\x9d\x38\x0f\xca\x79\x9d\x17\x40\x1b\x32\xb8\x7c\xed\x39\x64\x0c\x0d\x75\xc4\xb1\x06\x86\x8e\x09\x97\x8c\x94\xf1\x1d\x93\x86\x3a\xbe\x90\x5c\x9f\x9e\xb1\x3c\x62\x52\xca\x78\x7f\x10\xf3\x60\xa8\x53\x4c\x29\x1b\x9b\x36\x2d\x23\xd5\xd9\x6c\x3a\x0d\x95\x1d\xeb\x4c\xcf\x4b\x8f\x9f\x84\x71\x97\xea\x33\x36\xad\xcb\x10\x3b\xb6\x49\x5d\x06\xdb\x18\xce\x69\xc7\x18\xe7\x75\x1c\x90\xab\x8c\x0f\x40\xb8\x74\x88\x95\x1d\x32\xcc\xb1\xfc\x43\xe5\x53\xe9\xd6\x6d\xc3\x58\x67\x7d\xde\x93\x20\x15\xa4\x0e\xe5\x1d\x5b\xe6\xc7\x41\x37\x04\x40\xfb\xe6\xdc\xba\xce\x96\x03\xe1\xa9\xbc\x93\xd3\x6f\xfe\xe6\x6f\x4a\xfc\x97\xe8\x03\x24\x8f\x26\x1f\x10\x0d\x19\x79\x97\xbc\xd0\x1c\xe1\x6c\x1f\x47\x9f\x02\x5e\x63\xec\xd9\x3a\x4e\xcb\x67\xa7\x43\x7c\x42\xe3\x25\x86\x5f\xac\xdd\x71\xc9\x8d\x6d\x43\xac\x5b\x4c\x39\x5f\xbb\xc7\xfa\x3a\xdf\xb8\x4b\x1d\xb3\x3e\x1d\x53\xe6\xa6\xaf\xbf\x5d\xf6\x24\xd6\x0e\x87\xfa\x3b\xb6\x7e\x9b\x48\x31\xe3\x55\xa6\x10\xc6\x0e\x68\x17\x4f\x8e\x3e\x65\x12\xf8\x06\xdd\x3a\x29\x85\xcf\x26\x3b\x2b\xd5\x88\x9f\x97\xdc\x21\xe5\x53\x79\x0c\x95\x19\x72\x34\x29\x3c\x42\x4e\x29\xc4\x3b\xc6\xb0\xc5\xf2\x4a\x49\x29\xf3\x8a\xd5\xe7\xd7\x7e\xed\xd7\x24\xbe\xa6\xf7\x5c\xfe\x83\x4c\xe7\x20\x77\x28\x10\xe0\xfe\xfe\xb8\x53\xcc\x18\x5a\xc7\xd1\xc5\xea\x30\x24\x0d\x05\x35\xe7\x95\xce\x5b\x46\xac\xdf\x73\xe5\x3f\xa8\x7e\x09\x95\x1d\xe2\x0f\x1f\xc4\x18\x69\x93\x60\x0a\x2a\x94\xa7\xc8\x73\x73\x4f\xf3\xcd\xb3\x94\x84\xf9\xe0\xbf\xa9\xe5\x39\x5e\x2e\x7a\xaa\x27\xe5\xe1\x7b\xee\x92\xef\xa2\xa1\x6d\x38\xa4\x7d\xb0\x3e\x43\x79\x84\xca\xac\xd3\xee\xbe\xfc\x54\xd9\xa9\xed\x9f\xa2\x1f\xa7\x1b\x96\x95\xa2\xab\xab\x9e\xdc\x9c\x09\x8d\x9d\x94\x67\x12\x00\xd4\xf5\xeb\xd7\xe5\xf5\xeb\xd7\xe1\x8b\x5f\xfc\x22\x5b\xfe\x23\x1f\xf9\x88\x34\xcf\x5e\x7a\xe9\x25\xf9\xf2\xcb\x2f\x5b\x74\x2f\xbd\xf4\x92\xd4\x5a\x83\x10\xc2\x21\x7e\xb3\x09\xcb\x72\xc9\xd5\x5a\xb7\xd7\x42\x08\x30\x3a\x63\xfd\x3f\xf2\x91\x8f\x48\x00\x80\x2f\x7e\xf1\x8b\xca\xd4\x11\xd7\x15\xfc\x6d\x1e\xd3\xff\xe6\x3e\x75\x1c\xbb\xc6\x1b\xe6\xc7\xe9\xe5\x1a\xfb\x9c\x5d\xc3\x34\x5c\x72\xd1\x87\xf4\x0a\x8d\x7f\x9f\x2e\x3e\x9b\x87\x65\x00\x84\xdb\xd3\xc7\x3b\xe4\x9f\x86\xe8\xcf\xa5\x50\x7b\x71\xf9\x58\x9f\x21\xbc\x43\x7d\xe5\xea\x27\x5f\xbb\xa6\xd8\xb6\x90\x0f\xf5\xcd\x1b\x9f\x1c\x17\x46\xf0\xd1\x87\x74\xb6\xf2\x42\xd6\x6b\x1d\x03\xef\xba\xf6\x19\xfe\x75\x27\x9a\x4b\xef\x21\xfa\x6e\xba\x8c\xab\x7c\x2c\xcf\x14\x10\x15\xdb\x4f\x10\xc1\xd3\x27\x7b\x48\xdd\x87\xc8\x59\x87\x37\x24\xf2\x4c\x31\x42\x21\xe0\x95\x5a\x3e\xa9\xee\x2f\xbe\xf8\xa2\x74\x01\x10\x1f\x48\xc0\xf9\x5a\x6b\x29\x84\x50\x00\x10\x05\x68\x28\x10\x31\x49\x08\x11\x2d\xb3\x49\xed\x38\x65\x74\xf2\xf2\xa3\x60\x8c\x4b\x3f\xf7\x73\x3f\x27\xbf\xf6\xb5\xaf\x9d\xe7\xf8\xdd\xf4\x58\xf5\xc9\x81\x0d\xcb\x4a\x71\xf4\x3e\x50\xb7\x29\xb9\xeb\xd0\xa6\xf2\x34\x69\x13\xf5\x59\x47\x97\x4d\x95\x8d\x05\x5c\x9b\xf2\x53\xeb\x94\x49\x7d\x29\x70\x26\x6c\x15\x52\x10\x20\x40\xbf\xe3\x39\x64\x4c\xcb\xc7\x26\x9f\x13\x8e\x79\x23\xa1\x68\x8f\xf2\x03\xa6\x5c\x2c\x8a\xc4\xd7\x43\x3a\xc2\x05\x32\xd6\xe1\xe9\xa2\x8d\xb9\x37\xe9\xbc\xc0\x83\x2b\x0d\x01\xc5\x94\x8e\xd3\x7f\x5d\x9d\x36\x09\x62\xd7\xd2\xcf\x44\x1c\x5e\x7a\xe9\x25\x09\xc0\x47\x2f\x18\xe7\xde\x03\x20\x06\x60\xf8\xc0\x00\x2e\x87\xe9\x7d\x89\xd3\xc1\x05\x42\x48\xea\xb5\x85\x4f\x66\xc3\x43\xc5\xd2\x03\x84\xc1\xcd\x33\xcf\x3c\x23\xbf\xf3\x9d\xef\x9c\x17\x18\xe7\x52\x8a\x41\xc7\xf9\x00\x71\x76\xc2\xc7\xcf\xf7\x36\x1d\x63\xd7\x42\xfa\xbb\x64\x02\xf8\xe7\xd3\x50\x5b\x77\x5e\x80\xc3\xe7\x0b\x28\x5d\x2a\xf0\x71\xf9\x1f\x8e\x26\x56\xde\xa6\xda\x61\xc8\x4b\x97\xeb\xde\xc7\x27\xf6\xe5\x9b\xe3\x61\x95\x15\x0c\x21\xd7\x79\xe0\xc8\x0b\x0d\x4a\x5a\x36\x26\x6d\xa2\x11\x5d\x0e\x23\xe4\x48\x52\xdf\xcc\x42\x1d\xe1\x92\x13\x5b\x7e\x5d\xb4\x7b\x5e\x03\xdd\xc7\x6f\x13\x32\x63\xdf\x8c\x1e\x14\xc8\x1a\x22\xd7\xa2\x79\xfc\xf1\xc7\x25\x00\xc0\x6b\xaf\xbd\x66\x95\xc3\xe0\x84\x73\xc6\x24\x2f\x06\xfc\xf7\x68\x1c\x20\x27\x18\x61\x71\x81\xa3\x26\x4a\x63\xd1\x98\xba\x72\x3c\x03\x72\x54\x04\x1d\x4b\xe3\x89\xf0\x28\x5f\xbd\x22\x22\x36\x21\xc7\x14\xf3\x96\x1b\xba\x77\xd1\x6c\x82\x2f\xe6\x15\x72\x7a\x43\x9c\xa5\x4f\xe7\x28\xc7\x93\xf0\xcc\x47\x13\xca\x1b\x02\x3e\x62\x7d\xc4\x26\xc0\x9d\x8b\x86\x93\xed\x03\x98\x31\x63\xcb\x55\x2e\xa6\x4f\x52\xe6\x43\xcc\x18\xe6\xe8\x52\x80\xae\x14\x01\x82\x21\x42\x63\xf8\x85\x26\x1d\x97\x38\x19\xae\xc6\xe5\x74\xf1\x36\x84\x47\xbf\x94\x8e\x0d\xd1\xc5\xf2\x48\x41\xf4\xeb\x82\xad\xa1\xb2\x52\xe8\x53\xfa\xd9\x27\x13\xe7\xa5\xf2\xdb\xa4\x71\xa4\xcf\x2c\x9a\x2b\x57\xae\x48\x00\x80\xb7\xdf\x7e\xbb\x57\x0e\x47\x4f\x00\xd8\x28\x88\x33\x62\x62\x9e\xd3\xa5\x1a\x03\x6a\x98\x88\x89\x24\x65\x2d\x39\x38\x9f\x00\x02\x49\x68\x39\x79\xbd\x72\x8e\xa4\x02\xd1\x14\xe5\x00\x47\x2e\xf0\xd1\x5b\x5a\x72\x95\x21\x6d\x6c\xc9\xa1\x7f\x0d\x98\xf9\xdd\xdf\xfd\x5d\xf9\x37\x7f\xf3\x37\x43\xe7\x5c\x28\xf9\x9c\x12\x97\x1f\x23\x33\x55\x17\x97\xfd\x4d\x9d\xdb\x43\x64\xbb\xca\xa7\x38\xd4\x4d\xa6\x18\xbb\xbf\x4e\xfb\xc6\xe4\x87\x68\x52\x7d\xa4\xcf\x4f\xc7\xca\x4c\x49\xeb\xb4\x95\x8f\x9f\x17\x27\x08\x86\x30\x84\x38\x5d\x0a\x53\xfa\x54\x20\xb1\x8e\x03\x76\xe9\x1e\xe3\xa4\x53\x69\x36\x3d\xa9\xce\x6b\x92\x0e\x79\x23\xa0\xb4\x10\x41\x9f\xca\x73\x5d\xda\xa1\x20\x31\x36\x0d\xe6\xb1\xb3\xb3\x23\x4f\x4e\x4e\xda\xb2\x66\x0f\x0a\x75\xdc\xcd\xbd\x74\x39\x59\x70\x83\x17\x49\xf8\x48\x0f\xd8\xa0\xa0\x85\x2d\x4b\x1c\xb8\x55\x06\xeb\x8e\x79\xe0\x67\xcc\x5f\xc5\xf1\x30\x51\x19\x17\x40\x41\x3c\x14\x91\x4d\x81\x8d\x32\xed\x41\x79\xe2\x25\x25\x06\xdc\x58\xb2\xb1\x3c\xd7\x72\x57\xcc\x5e\x9a\x84\x74\x1e\x63\x33\x65\x8e\x87\xe6\x0d\x24\xf0\xf2\xe9\x12\x92\x3f\xd4\xce\xa7\x3e\x4f\xb5\x13\x21\x7b\xb7\x8e\x3f\x58\xd7\x16\x0f\xa1\x8f\xe1\x07\x01\x9e\x43\xed\x75\x0a\x10\x75\xe1\x0d\x6f\x7f\xd2\xaf\x8a\x62\xd0\x2f\xad\xb0\xf5\xe6\xe6\xe1\x45\xf3\x39\x5a\x5a\x8e\xca\xf3\x81\x2a\x9f\x5e\xdc\x5b\xbf\x8b\xaf\x8b\x3f\x96\x33\x74\x32\x87\x00\x13\x30\x74\x21\xd9\x29\x60\x70\xe8\x1b\x8d\x0b\xdc\xa6\xb6\xd1\x10\xe0\x1a\xab\x9f\xd1\xc7\xc7\x37\xb6\x7d\x92\xf5\x33\x91\x14\x9a\x30\xb8\x88\x78\x26\x9b\x7c\xd7\xd2\x90\xb9\x97\x0c\x4d\x4b\x8b\x41\x88\x10\xa2\xe3\xa1\x2d\x7e\x35\x90\x31\xd7\xda\xda\xf0\xe6\x92\xcb\x3d\x33\x89\xb6\x8d\x75\xaf\x01\x14\x12\xa0\x9a\x3c\x9b\x56\x58\xe5\x70\xf9\x36\x8f\x00\x12\x27\x2d\xb7\x2f\xa6\xa7\x13\x02\x49\x28\x8f\x2b\xd7\x26\x0c\x66\xb2\x2c\x93\x55\x55\xc5\x8c\xd9\x58\x9b\x4a\x75\xf4\x39\x03\x97\x0c\x7a\x1d\x2a\x1b\x72\xc2\x9b\x9c\xf3\xae\x72\x86\xef\x3a\xce\x34\x16\x98\xad\xdb\x06\xb1\xf6\xc2\x57\x36\xb5\xff\x53\xed\xf6\x10\xa0\x34\xb4\xff\x38\x3d\x69\xb9\x98\x36\x4d\xaa\x63\x0e\x7c\x03\xba\xfe\x02\x62\xee\x02\x1f\x9c\xc1\x71\x5d\x73\x1d\xe6\x92\x49\x79\x18\x1a\xee\x19\x6d\x34\x17\x10\xe2\x74\x0b\x25\x1f\xad\xcb\x50\x72\x65\x7c\x46\xd5\x25\x23\xc4\xc7\x6b\xa8\x1d\x29\x66\xe0\xd0\x7a\xb8\xc0\x5e\x8a\xdc\x58\x43\xe5\x4b\x46\x57\x1f\x2f\xc5\xd0\xb9\xfa\x25\xb9\x2d\xb9\x4f\x8e\x4d\xf2\xec\xf7\xa8\x41\x43\x1f\x9c\x70\x63\x9f\x9b\x8b\xd2\x05\x5a\x00\xcd\x4d\x04\x5a\xda\xbf\xb9\x12\x72\xba\xcc\xf2\x71\x25\xe5\xa8\x02\x39\x2e\x65\x31\x59\xc9\x62\xba\xca\x8a\xa2\x12\x45\xa6\x44\x2e\xb5\x90\x52\x89\x5c\x6a\xc8\x33\x05\xb9\xd4\x22\x17\x20\xa4\xd4\x20\x85\xae\xef\xa5\xae\xc1\x8e\x12\xa0\xb4\x00\xa5\x85\x2e\xb5\x00\xa5\x84\x56\x4a\x40\xa9\x04\x94\x20\x40\x55\xa0\x55\x99\xe9\xe5\x22\x57\xcb\xb3\x91\x9a\x2f\xf2\x6a\xb9\xca\x74\xb9\xca\xb4\x5a\x49\x5d\x2e\x33\x55\x2e\x73\x55\x9e\x8d\x94\x52\x82\x1d\x67\x80\xae\x15\x93\x47\x9f\x63\xf0\xe1\x9b\x7f\x26\xe2\x62\x8d\x77\x0f\x68\xb1\xe8\x7c\xfd\x0e\xf6\x58\x74\x39\x25\x20\xf9\xb1\x4e\x91\xb3\xd7\x3e\xdb\xe6\x92\x8b\xe7\x04\x47\xe7\x9a\x33\x54\x1f\x57\xf2\x95\xe7\x9e\x53\x1d\x86\x00\x0c\x9f\x0e\xbe\xf2\x2e\xdf\x14\x6a\x47\xce\x0e\xd2\x3e\xa0\x36\xd3\x65\x87\x7c\xf5\x71\x81\x19\x4e\xa7\x18\x7e\x54\x5f\xda\x46\x9c\xfe\x9c\xfc\x58\xff\x16\x33\xae\x7c\x7e\xbc\x37\x3e\xb8\x88\x0b\x40\xbf\x33\xb8\xc2\x29\xf7\x94\x17\x4e\x1c\xa8\xa0\x7c\xb8\x32\x2e\x7e\x34\x85\x40\x0b\xc7\x77\x48\xc7\xc7\xe6\x0f\xe1\x85\x9f\xa5\x20\xd3\x21\x06\x27\x25\x0d\x35\x24\x29\xe5\xd7\x05\x37\x21\x3d\xa2\xfb\xef\x53\x9f\xfa\x94\xfc\xf3\x3f\xff\x73\x15\x38\x0b\xa5\x1d\x9b\xdc\xf2\x0d\xf7\x17\xd1\x71\xf7\x2d\x6d\x13\xa1\xc1\xf7\x20\x40\xc8\xa2\x94\x72\x7b\x29\x8b\x9d\x65\x36\x99\xae\xb2\xe2\xc2\x3c\xdb\xdd\x59\x66\xbb\xe3\x95\x9c\x8e\x2a\xb1\x93\x29\x31\xc9\xb4\x98\x66\x1a\xb6\x33\x25\x26\x99\x12\x3b\x52\xc3\x54\x6a\x31\xcd\x94\x98\x4a\x2d\x26\x42\x43\x21\x00\x72\x01\x20\x9b\xc8\x8c\x04\x10\x52\x00\x48\x51\xeb\x90\x0b\x93\x6f\x47\x6e\x00\xa0\x06\x2f\x00\x60\xa2\x2a\x4a\x37\xff\x00\xb4\x02\x01\xa5\x06\x58\x6a\x01\xa5\x02\x58\x6a\xa1\xe7\x4a\xe8\xb9\x12\xb0\x54\x42\xcf\x94\x80\xb9\x92\x7a\x56\xd6\xff\xee\xaf\x32\x7d\xb2\xcc\xd5\xf1\x59\xae\x4e\x66\xe3\xea\xf8\x74\xa4\xe6\x8b\x5c\x2d\xe7\x23\xb5\x3c\x1d\x55\xcb\xf9\x48\x95\xab\x5c\xab\x66\x99\xa7\xe7\x7c\x51\x3e\x80\x6d\x94\x7b\x40\x87\x89\xb0\x18\xf0\xa3\xe8\xd2\x11\xa2\x6f\xf3\x3f\xfd\xe9\x4f\xab\x17\x5f\x7c\x51\x7e\xfa\xd3\x9f\x56\x7f\xf2\x27\x7f\x22\x3f\xfb\xd9\xcf\xb6\x7f\xb9\x31\x81\x64\xb8\x6c\x58\x8c\x63\xe2\x52\xec\x38\xe6\xf8\xba\xe6\x83\x4b\x17\x5f\x7d\x38\x1b\xc5\xd9\x2c\x97\x1d\x4b\xb5\xf7\x21\x3f\xc4\xd1\xd1\xba\xc4\xf8\x03\x9f\x7e\xae\xfc\x54\x9b\x16\xe3\x8b\x5d\xe5\x7c\xed\xca\xf5\x9f\x6f\x8c\x71\x6d\xea\xa2\x8f\xed\xc7\x4d\x8e\x6b\x49\x2d\xaf\xaf\xf1\x53\x9d\x5e\x6c\xa7\xa7\x00\x0b\x4c\x63\x52\x8a\x33\xdf\xb4\x13\x5c\x17\x18\x6c\x1a\xdc\xac\x9b\xd6\xd5\xdf\xd5\xe7\xe0\xc8\x1f\x3a\x9e\x36\x61\xa4\x9d\x63\xe1\x93\x9f\xfc\xa4\x04\x00\xf8\xdc\xe7\x3e\xa7\x00\xc2\xcb\x40\xcc\x66\x58\xbc\x7f\xc4\x02\x1a\xcd\x33\x8b\xae\xd1\xa5\x03\x29\x1a\x64\xa6\x21\x97\x4a\xc8\x4c\x03\x8c\x2a\x99\x4f\x97\xb2\xd8\xae\x81\xc9\x74\x6b\x29\x77\xa6\xab\x6c\xb7\x28\xe5\x6e\x51\x89\xbd\x51\x25\x2e\x8d\x2a\xb9\x37\xaa\xc4\x5e\xae\xc4\x5e\xae\xc4\x4e\x0d\x48\x60\x22\x00\x72\xa1\x45\x21\x74\x03\x4a\x40\x14\x0d\x18\xc9\xa1\x89\xa0\x60\xd9\x9e\xe5\x22\xda\xce\x38\x85\xfa\xb1\x06\x03\xdd\x75\x69\x80\x4e\xf3\xb7\xac\x81\x8e\x2e\xb5\x80\xa5\x16\x7a\xa9\x04\xcc\x95\x80\x79\x25\xf4\x5c\x49\x3d\xab\x24\x9c\x94\x52\x9d\x94\x52\x1f\x2f\x33\x7d\x77\x95\xab\xa3\x79\xae\x0f\x66\xa3\xea\xe8\x64\x5c\x1d\x9f\x8d\xd4\xfc\x64\x5c\xce\xcf\x46\x6a\x59\x4a\x5d\x2a\x01\x4a\x49\xad\x2a\xa1\x95\x92\x2d\x78\xa1\x20\xa6\x07\x7a\xc8\x73\xae\x6e\x3d\x90\x43\xd3\xcb\x2f\xbf\xac\xfe\xf0\x0f\xff\x50\xfe\xe5\x5f\xfe\xa5\xfa\xe4\x27\x3f\x29\xcd\x38\x82\x34\x67\x6d\xf2\xa9\x9c\x10\x8f\xa1\x2f\x03\x3e\xe7\xb7\x8e\x9d\x4a\x29\xeb\xb3\xcf\xae\xb9\xed\xa2\xf7\xe9\xb4\x6e\xf2\xb5\x71\xa8\xde\x2e\x10\x31\x54\x1e\x47\x17\x02\xa2\xb1\xd7\xeb\xe8\xb2\x6e\x59\xaf\x7e\x82\x3c\xf0\x21\x33\x17\x8a\x03\x54\xc6\x67\xd0\x7c\x28\x2e\x76\x92\xac\x33\x19\x5c\x7a\x71\xbc\x5d\xba\x87\x06\x2b\xc7\xcf\x97\x97\x0a\x14\x63\x26\x8c\x8b\x2f\x97\x42\x48\x3d\x86\x3e\x45\x7e\x6c\x99\x58\x1d\x38\xbd\x53\x26\xaf\x33\x71\x60\x85\xf9\x0c\xb8\x05\x25\xf8\x2f\xda\x63\x62\x00\x8c\xa4\xd1\x13\x00\x90\x42\x83\xcc\x6a\x70\x92\xe7\x95\x90\xa3\x4a\xe6\x5b\xa5\x2c\xa6\x8b\x6c\xb2\xb3\xcc\x76\x76\x16\xd9\xe5\xad\x95\xbc\x3c\xae\xe4\xe5\xf1\x4a\x5e\x29\x2a\xb1\x9f\x57\x72\x37\x57\x62\x27\x57\x75\xc4\x44\x2a\x31\x91\x00\x93\x06\x9c\x18\x80\x92\x43\x1d\x3d\xe9\xe9\xd6\x5d\x77\x10\x85\x8b\x1b\x69\x4f\x3e\x00\x80\xd0\x00\x5a\xd4\x34\x1a\x00\x84\xd6\x00\xae\xaf\x8b\x1a\x66\x86\xa7\xee\x4b\x50\x68\xc7\x8b\x01\x39\x1d\xb0\x10\xa0\x34\x74\x51\x9b\x26\x62\xb3\xac\xc1\x8c\x3e\x59\x65\xea\xa4\x94\xfa\x68\x91\xa9\xc3\x55\xae\xdf\x59\x65\xfa\x68\x91\xa9\xa3\x59\xa1\x0e\x4f\x8a\xea\xf0\x64\x5c\xcd\x4e\xc6\xd5\x7c\x91\xab\xb2\x94\xba\x2c\x33\xa5\xaa\x66\x29\xcb\x15\x9d\xc1\xf9\xe4\x9a\x6e\x00\xb6\x80\x0c\x17\x91\x31\x0f\x7f\xeb\xb7\x7e\x4b\x02\x00\xfc\xdd\xdf\xfd\xdd\x90\xf1\x0b\xd0\x1f\xf7\x38\x0d\x75\x36\xbe\x17\x82\xd8\x79\xec\x92\x89\xf5\xa2\x72\xe8\x33\x5f\x9d\x7d\x3a\x72\xb2\xb8\xfc\x18\x50\x14\xa3\x47\x48\x9f\x54\xdb\x1b\xb2\xf7\x26\x0d\x01\x08\x43\x7c\xea\x10\xfd\x21\x70\x8d\xe9\x87\xe8\x4f\xf3\xc1\x05\x5c\x5c\xc2\x29\x73\x9c\x86\x3a\x2d\xee\x2f\xc7\x2f\xa5\x41\x5d\xfa\xfb\xea\xe3\xd2\xd3\xc7\xdf\x55\x36\x34\x50\x42\x3a\x0c\x49\x31\x86\x2e\xc5\x08\xa5\x82\x31\xd7\x64\x5e\x07\x44\x85\x74\xa4\xf2\x93\x0c\xfb\xc7\x3e\xf6\x31\x99\xe7\x39\x5c\xbf\x7e\x1d\x3e\xfd\xe9\x4f\x2b\x47\x64\x45\x32\xd7\xce\xbf\x08\xdc\xe0\xeb\x1c\x00\x64\x0d\x4e\x44\x5e\x54\xb2\xd8\x5a\x35\x11\x94\xa5\xdc\xdd\x5a\x65\x7b\x5b\x2b\xb9\x37\x2e\xe5\xe5\x49\x29\x1f\x1a\x97\xf2\xf2\xb8\x94\xfb\x45\x25\xf6\xf2\x4a\xec\x65\x5a\x4c\xa5\x82\xa9\xd0\x62\x22\xa0\x06\x27\x00\x4d\xd4\x04\x7a\xe0\xc9\x7b\x1c\xb6\x6e\x00\x46\x0b\x38\xf0\x33\x74\x1f\x73\x8d\xcb\x81\xeb\x13\x65\x43\x8f\x2f\x0c\xe2\xc1\x34\x84\x31\x95\x89\x92\x01\x39\x0a\xa0\x01\x34\xed\x52\x94\x9e\x37\x91\x9a\x59\x25\xf5\x6c\x95\xa9\xe3\x65\xa6\x0f\x17\xb9\x3a\x38\x1b\xa9\xb7\xe7\x79\x75\x30\x2f\xd4\x9d\xd3\x42\x1d\xcd\x46\xd5\xf1\xac\xa8\x66\xf3\x5c\x2d\x17\xb9\x5e\xae\x32\xa5\x56\x99\x6e\x23\x41\xe8\x1f\x04\xc0\x0d\x5e\x56\x72\x6d\x1e\xb6\xd2\x72\xb9\x84\xcf\x7e\xf6\xb3\xea\x63\x1f\xfb\x98\x04\x00\xf8\x87\x7f\xf8\x87\x10\xe0\xf6\xd9\x4e\x60\xe8\x81\xd0\x92\xf6\x0b\xd2\x86\xe6\x7d\xaa\xed\xa7\xcf\x5c\xfe\x26\x86\x8e\xa3\xf5\xd9\xbe\x98\x36\x0c\xd9\x2c\x9f\xbe\x1c\xbd\x4b\x0f\x73\x1f\xb2\x8f\xb1\x3e\xcf\xd5\x3e\x58\xc7\x50\xfd\x86\x80\x9a\x58\xfb\x1c\xe3\x87\x62\xc7\x8c\xa5\x0f\xdd\xe3\x62\x92\x6b\xb0\xf8\x1a\xa8\xc7\x9c\x3c\xf3\x4d\x0a\xcc\x3f\xc5\x41\xb9\x64\x50\xbd\x52\x1a\x3a\xe4\x64\x7d\x9d\x11\xaa\x4b\xaa\x11\xf1\xb5\x23\x95\x13\xdb\x8e\x9c\x8c\x50\x7e\x2c\xbf\x50\xf9\x10\xdf\x18\xba\x54\x5d\xda\xf4\x4b\xbf\xf4\x4b\xf2\x5f\xff\xf5\x5f\x15\x80\xfd\x9b\x3d\xf4\x0c\x13\xc7\x97\x3e\x74\x59\xa7\xbd\xc6\x7b\x4f\xcc\xb5\x50\x20\x8b\x4a\xe6\x45\x25\xf2\x71\x29\x27\xdb\xcb\x6c\xba\xbd\xcc\x76\xb6\x17\xd9\xfe\x74\x25\x2f\x4f\x57\xf2\xea\xd6\x32\x7b\x78\x5c\xca\xcb\x45\xbd\xcc\xb3\x9b\x2b\xb1\x2b\x15\xec\x48\x10\x53\xa1\xa1\xdd\x77\xd2\x80\x13\x09\xd0\x07\x1a\x26\xcf\x05\x42\x30\x4d\x9d\xaf\x41\x34\xe1\x0f\x2d\xf8\xf2\x1a\xdd\x09\x12\x2d\xc1\xc9\x00\x96\x0e\x08\xd5\x54\x5d\x14\xc6\x51\x48\xf0\x59\x3d\x6c\xe3\x90\xad\x11\xf8\x61\xc0\x4d\x03\x2c\xb4\x01\x35\x73\x25\x60\xa6\x84\x3e\xa9\xea\xe8\xcc\xd1\xa2\x06\x33\x87\xf3\x51\x0d\x68\xce\x46\xd5\xc1\xe9\xb8\x3a\x38\x2d\xaa\xe3\xd9\x48\x9d\xcc\x47\x6a\xb9\xc8\xd5\x72\x9e\xab\xa5\x12\xa0\x34\x68\x10\x42\x94\x00\xd6\x9e\x18\xc5\x01\x17\xa4\x03\xfe\x6b\x5d\xe3\xf1\xf6\xf2\xcb\x2f\xab\x5f\xf9\x95\x5f\x91\x5f\xf8\xc2\x17\x62\x9c\x4a\xc8\x81\x82\x87\x36\xc5\x01\xfa\xca\xc5\x3a\xb1\x90\x6d\x59\xd7\xd6\x86\xea\x80\xeb\xe1\x03\x84\x1c\x6d\x48\xa7\x58\xd0\x18\xd2\xd9\xc7\x3b\x66\x0c\x84\xc6\x8c\x0f\x70\xba\xfa\x38\x94\x17\xd3\x7f\x29\xfe\x35\xd4\x8e\x6c\x7d\x5d\x9f\x43\xd3\x6b\x9a\x42\xc8\xd5\x55\x66\x28\x60\x88\x01\x2d\xc0\xe4\xc7\x38\xe0\x4d\x4e\xa0\x21\x4e\x35\x76\x22\xc7\x18\x20\x1f\x6d\x2c\x28\x08\xc9\x58\x17\xc4\x70\xcf\x52\x8c\x5c\xac\x41\xb6\x78\x9a\x83\xc5\x98\xa8\x8a\xef\xde\x02\x29\x64\x09\x48\xa2\xe7\x32\x53\x90\x8f\x4b\x99\x4f\x56\xb2\x18\x97\x72\xb2\xb5\x92\x3b\xdb\xcb\x7c\x77\x7b\x29\xf7\xa7\xcb\xec\xf2\xce\x32\x7b\x78\x6b\x29\xaf\x4d\xca\xec\xf2\xa8\x14\x97\x47\x4a\xec\x67\x5a\xec\x0a\x0d\x3b\x35\x40\x11\x39\xd4\x91\x99\xbe\xaf\xaf\x37\xe1\x36\x40\xa3\xb9\x6e\x9e\xc5\x44\x4c\x5a\x1e\x66\x3f\x4e\x03\x34\x80\x94\x05\x30\x4b\x40\x1a\x31\x10\x48\x4e\x0b\x7b\xea\x6b\xf3\x09\xb5\xb0\xd1\x85\x37\x42\x63\x65\xd4\x37\x3d\xe0\x02\x1e\xe0\xe3\x62\xe5\xc9\x47\x7b\x6b\x0c\xa0\x99\x37\x1b\x82\x4f\x2a\xa1\x8f\x96\xb9\x3e\x68\xa2\x32\x6f\xce\x8a\xea\xed\x59\xa1\xee\x9c\x8e\xaa\x83\xfb\x93\xf2\xf0\x2c\x57\xb3\x79\xae\xe6\xf3\x91\x9a\xcf\xeb\xfd\x33\x0a\x04\x94\x1d\x3f\x0b\xa4\x58\xc0\x06\xe5\x73\x9b\x7d\x7b\xe3\x96\xf9\x4a\x29\xd5\xc6\xc4\xd8\xc9\x90\x63\x48\x01\x3c\xae\xf2\xa1\x72\xb1\x20\xc2\xa7\x37\x30\x34\x2e\xba\x18\xf9\x94\x5f\x0a\x40\xf2\xe9\x19\xdb\x3e\x29\xa0\x91\x96\xa1\x3a\x70\x29\xd4\xe6\x94\x47\xaa\xaf\xa5\x72\x7c\xb6\x9d\xf6\xb5\xab\xac\x2b\xf5\x36\xe7\xf6\x08\x02\x0c\xa8\x30\xaa\x48\x6c\x4a\x45\x71\xa1\x41\xbc\x8e\x73\xdd\x44\x3d\x7c\x79\xa1\x7a\xb8\x68\x7c\x13\x20\x16\x71\x0f\xd1\x7f\x1d\xda\x90\xae\x9b\x48\x16\x3f\xee\x6c\x0d\x0a\x56\x68\x54\x05\x7f\xfd\xd3\x5c\x4b\x72\x8d\xc1\x4b\x2e\x9a\xaf\x6d\xcc\xa7\xc4\xe3\x52\x4e\xb6\x57\xd9\xee\x85\x79\xb6\xbf\x3b\xcf\x2f\x6f\x2f\xe5\xe5\xe9\x32\xbb\xb2\xb5\x92\x57\xc7\xa5\xbc\x36\xaa\xc4\xe5\x5c\x89\x7d\xa9\xc5\x9e\xa8\x37\xcc\x16\xcd\x17\x3b\xde\x93\x67\x31\x4c\x70\x25\xdd\x78\x69\x81\xee\x05\x41\x0d\x2d\x30\xf0\x6c\x43\x71\xf1\xc3\x3c\xed\xc8\x54\x2d\xc0\x6a\x47\x46\x5f\x1a\x95\xa1\xb0\xa2\x03\x52\x0d\x88\xd1\x5d\xd4\xa6\x05\x42\x58\x3e\x88\x1e\xa2\x69\x41\x19\xd8\x7b\x6f\x30\x30\xc2\x80\xaf\xc5\x65\xc2\xec\xa5\xd1\xaa\x89\xcc\x1c\x57\x52\x1f\xad\xa4\x3e\x58\xe6\xea\xce\x3c\x57\x77\x4e\x8b\xea\x8d\x59\x51\x1d\xdc\x1f\x57\x77\xee\x6d\x95\x87\xa7\x45\x75\x32\xcf\xf5\x6c\x91\xd7\x5f\x3a\x95\x99\xa6\x20\xc6\x02\x34\x24\x1a\x83\xc7\x65\x7b\x4d\x81\x8c\xd6\x1a\x6e\xdf\xbe\x0d\x9f\xff\xfc\xe7\x7d\xb6\x24\xd5\x41\xfb\xf2\x63\x40\x42\x6c\xf2\xbd\x6c\xf8\xae\x43\xfc\x5c\xf4\x9b\x02\x34\x29\x20\x31\x54\xc7\x54\xde\xeb\x82\xad\xf3\xb0\xd9\x1c\x7d\xac\xac\x14\xbf\x66\xae\x69\xf2\xca\xa1\x7b\x5c\x5c\x02\x5c\x0c\x43\x0e\x16\xa0\xcf\xc7\xd7\x10\x3e\x7e\xae\x32\xe0\x79\xe6\x03\x21\x43\xf8\xa7\xa4\x21\x13\x65\x93\x29\x16\xbd\x52\x5d\x36\x3d\x11\x7c\x74\xa9\xe0\x27\x5a\xc7\x50\x64\x85\x82\x15\xf2\x29\xb2\xec\x45\x56\x34\xe4\xb9\x12\x72\x5c\xca\xc9\xb8\x14\xc5\xb8\x94\x3b\x7b\x67\xa3\xbd\x4b\x67\xf9\xe5\xdd\x79\x76\x75\x67\x91\x5d\x9f\x2e\xb3\x47\x8a\x4a\x3e\x32\xaa\xc4\xe5\x4c\xc3\xbe\xd4\x62\x57\x68\x31\x01\x00\x29\xb4\x06\x2d\xf8\xe5\x17\xbc\x87\xc3\x5a\xde\x31\xd1\x0f\x00\x10\x78\x5f\x88\xb5\x31\x16\x3b\xe4\xc6\x51\xa3\x25\x20\x9a\x3a\xde\x35\x1a\x68\x41\x01\xf0\x65\x4c\x54\xc5\x12\x8f\x81\x02\xb8\x97\x91\x04\x66\x8e\x83\x32\x8e\x82\x6d\x94\xc5\xa5\x3c\x27\x83\xcb\x27\x00\xad\xbd\xef\x3d\xe0\x19\x68\x68\xbf\x70\x9a\x55\x52\x1f\x94\x52\x1f\x2e\x33\x7d\x7b\x3e\xaa\x6e\x9f\x14\xea\x47\xc7\x93\xf2\xcd\x7b\x5b\xe5\x9d\x7b\x93\xf2\xe8\x74\x5c\x9d\x2c\x33\x3d\x5f\xe4\x6a\x3e\xcf\xd5\x12\x00\x14\x34\x5f\x4a\x41\x37\x46\x2d\x40\xe3\xf9\x04\xbb\x17\x89\xc1\x51\x98\x9b\x37\x6f\xca\x57\x5f\x7d\xd5\x65\xb3\x00\xd2\xe7\xed\xd0\x79\x19\x1b\x35\xd8\x34\x58\x49\xd1\x37\xa6\x4d\xce\xbb\x9c\xaf\x9d\xd7\x79\xc1\x74\xe9\x31\x14\xb0\xd1\x32\x2e\x1d\x01\xe2\xfa\x25\x75\x5c\xc5\xb4\xa7\x45\x23\xc0\x6e\x5c\x27\x61\xa4\xa0\x18\xfa\x41\x8e\x08\xe9\x87\x75\xa4\xfc\x5d\x72\x80\x3c\x8f\xe9\x90\xd4\x49\x38\x14\xa8\xac\x33\xb0\xb8\xf2\xa9\xfd\x46\xe5\xb8\x64\x85\xe4\xb8\xda\x2b\x24\x3f\x05\x60\x79\xe9\xb9\x5f\x51\x36\x7a\xd1\x53\x64\x39\xb0\x02\xd0\x46\x57\xa4\xd6\x3a\xcf\xb4\x90\xa3\x4a\x14\x45\x25\x8b\x51\x25\xa6\x3b\x8b\x6c\xe7\xf2\x69\xb1\x7f\xe9\x2c\xbf\x7a\xf1\x2c\xbf\x3e\x5d\x65\x8f\x8d\x57\xe2\x46\x51\xc9\x6b\x99\x86\x6b\x52\x89\x5d\x01\xa2\x00\xc0\x0b\x2a\x75\x12\x64\xed\x03\xef\x07\xc1\xb1\x0a\x13\x23\xe8\xc5\x2e\x5a\xe7\x6f\x3f\xe1\x97\x59\x78\xde\x56\x6a\x22\x26\x5c\x08\xc6\xe2\x89\x40\x07\x30\xf9\x58\x02\x17\xd9\xc0\xca\xf9\x96\x76\x00\x3f\xb3\xa2\x26\x8e\x72\x9e\x65\xa4\x1e\x40\x0a\x95\xc1\xfa\x35\xca\x98\x3d\x36\x28\x32\x53\x2a\xa1\x4f\x2a\xa1\x0f\x56\x99\x7e\x73\x99\xa9\xdb\x67\x85\xba\x75\x5a\x54\x3f\xba\x37\x29\xdf\x3c\xdc\x2e\x0f\xee\xec\x2c\x0f\x97\x99\x9a\xad\x6a\x20\xb3\x34\x87\xf0\x01\x58\x5f\x2f\xd1\x6b\x0c\x56\xac\xf1\x4c\x97\x97\xcc\x17\x4a\x0f\x3f\xfc\xb0\x7c\xeb\xad\xb7\x86\x38\x73\x57\x4a\x7d\x43\x1e\xc2\x23\xc6\x2e\xf9\x78\x40\x04\x4d\xac\x7e\xe7\xd1\x66\x43\xea\x39\xd4\x56\x87\x74\xf0\xd1\x6d\x02\x30\xc5\xf0\xf6\xe9\xc9\xe5\xc5\xea\x0e\x00\xfd\xcf\xa1\x81\x10\xe0\xa4\x48\xbe\x0b\xec\xe0\x7b\x2e\xb9\x3a\x2f\xc6\x31\xc6\xa2\xb2\x46\xa7\x60\xce\x00\x00\x20\x00\x49\x44\x41\x54\x54\x5e\xeb\x0c\x6a\xae\x4d\x42\xfa\x84\x78\x73\x20\x82\xeb\x40\xee\x79\x6a\xbb\xfa\xf4\x19\xd2\x27\x9c\xae\x43\xda\xc0\xe4\x01\x57\xfe\xc2\x85\x0b\xf2\xb9\xe7\x9e\x83\xf7\xbe\xf7\xbd\x2c\x50\xc1\xc9\xf1\xa5\x0f\xb7\x57\x25\x17\x0a\x64\xae\x44\x91\x2b\x51\x6c\x2f\xb3\xe9\x95\x93\xd1\xfe\xd5\x93\xe2\xda\xc5\x79\x7e\x6d\x7b\x91\x3d\x3e\x29\xe5\x8d\xa2\x12\x8f\xe5\x95\x7c\x2c\x53\xb0\x27\x00\x26\xc6\x3b\x0b\xb0\xf7\x90\x38\xf6\x5a\x30\x91\x0b\x8d\x1c\x2d\x8a\x64\x90\x48\x81\x59\x76\xe9\xca\xd8\x10\xa7\xdb\x73\x82\xc0\x84\x69\x1b\xc4\xc3\x06\x44\x88\xb7\xe1\xd5\xe6\xd9\xf7\xad\x8a\x08\x5e\x59\x75\xf7\x2c\x6d\xc5\x04\x3b\xec\xfa\x85\x31\x07\x6d\x27\x1a\x09\x72\x15\xee\xf3\x0e\x2f\xc9\xf5\x64\x82\x5e\x2a\xa1\x4f\x4a\x09\x07\xa5\xd4\xb7\x17\xb9\xba\x75\x36\xaa\x5e\x3f\xda\xaa\xfe\xeb\xed\x9d\xe5\xed\xdb\xbb\xcb\xc3\xd3\x71\x75\x52\x66\x6a\x5e\x4a\xbd\xac\x1c\x20\x86\xfc\x03\xe6\xaf\xf5\x1b\x50\x14\xc8\x5c\xb8\x70\x41\xde\xbf\x7f\x3f\xc5\xc1\xb9\xec\x95\xef\x45\xc4\xc5\x2f\xc6\x79\x73\x7c\x62\x81\x08\x2e\x17\xf2\x3d\x31\xfa\xb9\x78\xd3\x32\x38\x6d\xca\x76\xc6\xc8\x0f\xc9\x1b\x02\xe0\x62\x6c\x39\xe7\x4f\x7c\xbc\x42\xbc\x39\x9d\x86\xf2\x66\x13\x06\x2e\x98\x71\x68\xd0\x50\xc6\xa1\xeb\x4d\x0c\xf4\x10\x62\x73\x25\xda\xd9\xf8\x7a\x28\xd0\xe0\x64\xc4\xe8\xe7\xcb\xf3\x81\x27\xd7\x80\x8d\x1d\x94\xae\x3a\x6d\x32\x2f\x06\xfc\x85\xca\x39\x69\xf3\x3c\x97\x65\x59\xb6\x74\x78\x29\xc8\xf5\x25\x10\xb9\xee\x01\x15\xad\xb5\x6c\x36\xc5\x4a\x59\x9f\x7f\x52\x5c\x98\xe7\x93\xeb\x47\xe3\xcb\x0f\xdf\x2f\x1e\xbb\x74\x36\x7a\xcf\x74\x99\x3d\x39\x2e\xc5\xcd\xbc\x12\x8f\x64\x4a\x5c\x96\x00\x3b\x02\x03\x0c\x14\x55\x20\x5f\xf9\x22\xd0\x00\x6e\xaf\x0b\x9c\xe3\x74\x87\x13\x68\x64\x85\x73\xb8\x3d\x80\x64\x71\x6b\x36\xd5\xb6\x40\x04\x45\x48\x22\xf8\x77\xd1\x0c\x0a\x66\xf8\xe4\x05\x20\x9e\x4d\x37\x3e\x9e\x16\x1d\xb7\x2c\x04\xe1\xc2\xbe\xbd\x45\xb1\xc2\x31\x50\x6a\x96\x96\x8e\x56\x99\xbe\xb5\xcc\xd5\xab\xb3\x51\xf5\xfd\xfb\xe3\xea\x07\x6f\xef\xac\x5e\xbf\x7d\x71\xf1\xe6\xc1\xf6\xea\x78\x99\xa9\xa5\xae\xcf\xa4\x59\xba\x40\x0c\xf3\xe9\x35\xfe\x0b\xdc\x7d\xc4\x8f\x41\x0e\x9d\x9b\xb1\x3c\x36\x51\x6e\x08\x5d\x48\xff\x4d\xf3\x4c\xf5\x0b\x31\x69\xc8\x0b\x9d\xc9\x87\x35\xf5\x39\xcf\xb1\xb0\x4e\x5b\x05\xcb\xc6\xbd\x66\x6c\x48\xd8\x86\x79\x0f\x19\x50\x43\x74\x1c\x3a\xb0\xd6\xe1\x3d\x74\x40\xb9\x68\xd7\x31\x5c\x31\x60\x2b\xf6\x2d\x83\xbe\xd1\x44\xeb\xf4\xa7\x7f\xfa\xa7\xf2\x33\x9f\xf9\x0c\x05\x2e\xb2\xf9\xa1\x3c\xfa\xdb\x3d\x00\x2e\xa0\x52\xef\x5d\x31\xa7\xc5\xe6\x12\x44\x7e\x61\x9e\x4f\x9e\x7c\x67\xeb\xea\xb5\xe3\xe2\xc9\xdd\x79\xfe\xf4\x74\x29\x9f\x2a\x2a\xf9\x44\x5e\x89\x6b\x52\x8b\x3d\xd1\x1d\xe6\xd6\x4b\x3e\xf0\x10\xe5\x78\x81\x82\x1d\x97\x2f\xc7\x48\xc7\xed\xf0\x87\xf0\x8e\x5e\xc2\x19\x90\x3a\x99\x38\x56\xe3\xa0\x69\xc0\x9f\x91\xc9\xca\xc7\x34\x64\xf9\xac\xf7\x39\x36\xaa\x9c\x2f\xfa\xc5\x6d\x48\xc6\xca\x69\xa4\x8c\xf9\xba\x8b\xaf\x49\x57\x1f\x25\xf5\x71\x25\xf5\x9d\x65\xa6\x5e\x9f\xe7\xea\x95\xd3\x42\xfd\xe7\xe1\xf6\xea\x95\x1f\x5d\x5c\xdc\xfa\xe1\xde\xfc\x68\x31\xd2\x73\x68\xc0\x0a\x80\xf5\x95\x12\xbe\x06\x74\x8d\xe7\x47\x6f\xae\xbc\xfc\xf2\xcb\x8a\xf9\xfd\xa4\x98\x17\x4a\x8e\xdf\xa6\x5e\xdc\x58\x5d\x37\x90\x1e\x94\xde\xa9\xc0\x2a\x64\x67\x63\x5e\x34\x63\x74\x4d\x01\x07\x31\xb6\x3f\xd5\x4f\xac\x9b\xd6\xf6\x99\x02\xfa\x83\x80\xbb\xe7\x1c\x0e\xbe\xc7\xf4\x9c\x72\xa9\x51\x02\xee\xde\x57\x11\x4e\xbe\x4b\x97\x18\xfe\xb4\x6e\x31\xfc\x0d\x4d\x8c\x51\xe0\x92\x6b\x20\x52\xde\x54\x1f\x5f\x19\x1f\x5f\x97\x3e\x21\x20\xe2\xa3\x77\xf1\xa7\x63\x0b\x20\xa2\xbf\xf6\xf6\xf6\xe4\xef\xfc\xce\xef\x00\x00\x80\xf9\x8d\x20\x87\x2e\xd2\x6c\xb6\x35\x79\x0d\x60\xc1\xc7\xd9\xb7\x60\x25\xab\x44\x7e\xe9\x2c\xdf\xb9\x79\x38\xb9\xf6\xf0\xfd\xe2\x89\x0b\xf3\xfc\xe9\xe9\x4a\xbe\x6f\x5c\xc9\x1b\x59\x25\xae\x4a\x0d\xbb\xa2\xf9\x34\x19\x3b\x42\xe3\xe1\x04\xd9\x6b\xc2\x6d\x3a\x35\x4b\x2f\xdc\xeb\xbf\x1b\x24\xd8\x9b\x2d\xdc\x80\x48\x77\x9e\xb7\xae\x6c\xe3\xb4\x6d\xee\x02\x2f\x0f\xe9\x66\x41\x0a\x6d\x4e\x71\x39\xea\x6e\xe9\xa8\x93\x55\x3b\x6b\xdb\x5d\xb3\x4b\x32\xa0\x5b\x60\x01\xe0\x8f\x23\x69\x52\xcf\xee\xb9\x15\x8e\x62\xf7\xbb\x70\xfb\x62\x50\x11\xab\xee\x80\xca\x38\x03\x5f\xcd\xe6\x69\xc1\x68\xd1\xa7\x61\x74\x21\xe0\xa7\xeb\x0f\x28\x35\xc0\xbc\x92\xfa\x70\x95\xe9\x37\x6b\x10\x53\x7d\xf7\xee\xb4\xfc\xf6\x6b\x97\xe6\xaf\xbc\xba\x3f\x3f\xac\xa4\x2e\x41\x40\xd9\x44\x5b\x4a\x80\xf6\x9a\xdb\x1b\x63\xf8\x2a\xf2\x17\x00\xba\xe8\xcb\xef\xff\xfe\xef\xcb\xbf\xfe\xeb\xbf\x4e\x9d\xfb\x94\x77\x8c\x5d\xf3\xd9\x76\x9f\x1d\x0d\x39\x76\x60\x9e\x6f\x52\x7f\x57\x19\x97\x9c\x14\xa0\x17\x92\x1b\x02\x97\x3e\x80\xe1\x4a\x43\xfb\x8c\xea\xc1\x95\x89\x7d\x31\xf5\xe9\x42\xe9\x5c\xed\xe9\x6a\x4b\x2b\x89\x00\x81\x0b\x85\xc5\x34\x44\x28\xb9\x90\x6d\xa8\x4c\xa8\xe1\x62\x75\x8a\x71\xee\x31\x3c\xd6\xa9\x77\x0a\xbf\x75\x11\xf0\x50\x80\xb7\x09\xda\xc1\x89\xd9\x70\x6b\x01\x14\xe8\x80\x09\xbe\xb6\x80\x0a\x00\x48\xa1\xa0\x78\x68\x36\xda\xb9\x7e\x34\xb9\x76\xf5\xfe\xe8\xa9\xdd\x45\xfe\xf4\xf6\x42\x3e\x31\x2e\xb3\x1b\xb9\x12\x97\x9b\xfd\x2a\xcd\x59\x2a\xc2\xfe\xf2\x87\x2c\x07\xf5\x9c\x94\xd9\xd7\x82\x9c\x6c\xe8\x8d\x1f\xc0\x91\x87\x32\x39\x67\x4b\x1d\x37\xf6\xec\x2e\x40\x84\xf5\x14\xc8\x99\x9b\x64\x03\x81\x76\xc7\x4d\x7d\xef\x89\x82\x58\xd8\x89\x94\xc3\xbc\x59\x5d\x80\xd7\x97\x7b\x88\x63\x35\xec\x92\x16\x39\x9b\xc6\x1b\x41\xa2\x4b\x4b\x0c\xad\x5d\x2f\x1b\x08\xf9\x74\x04\x70\xc9\xd5\x00\xd0\x9e\xf2\x3b\xaf\x84\x3e\x5c\xe6\xea\xf6\x6c\xa4\xbe\x7f\xbc\x55\x7e\xf3\x9d\x69\xf9\xdd\x5b\x7b\xf3\x5b\x6f\x5d\x58\x1e\x2f\x73\xbd\x84\x1a\xb8\x94\xe6\xd0\x3b\xc7\x3f\x30\xd7\xcc\xcf\x10\x80\x52\x0a\x70\x84\x12\xa5\x58\xe7\x1b\x5b\xce\xf5\x3c\x36\x2a\x10\xe3\xbc\xb8\xbc\x10\x60\x8a\x79\xb9\x0e\xe9\xe1\xd2\x85\xca\xa4\xfc\x43\xfa\xc7\xbe\xe8\xba\xea\x15\x93\x62\xc1\x1f\x27\x2b\xb6\x9c\x0f\x84\xf8\xee\x43\x2f\xc6\x41\xd9\x66\x9e\xb9\x3a\x38\x46\x40\xec\xc0\xf3\xa5\x10\x8f\xd0\x40\x0c\x81\x90\xd0\xe0\x0b\xd1\x3d\xa8\x34\x04\x28\x0d\x05\x4f\x43\xea\x99\x62\x8c\x7c\xa8\xdb\x99\xfe\xe0\x0f\xfe\x40\xfe\xd5\x5f\xfd\x15\xf7\x0b\xcc\x2e\xc0\x42\xff\xb5\x80\x45\x6b\x9d\xef\x2e\xf2\xc9\xa3\xf7\xc6\x57\xaf\x9c\x14\x4f\xec\xcf\xf2\xf7\xee\xce\xf3\xa7\xb6\x56\xf2\xe6\xa8\x92\x75\x64\xa5\x3b\xfc\x4d\x72\x6f\xf2\xc6\x5d\xe2\xf8\x87\x75\xb2\xac\x45\xc7\x27\xd7\xbe\x90\xae\x7c\xe7\xf4\xbb\xd8\x89\xdf\x11\xdb\x6f\xfb\xd4\x71\xd3\x2f\x8f\x34\x2a\xd4\xe9\xed\xab\x6b\x47\xa3\x41\x68\xc1\xfe\x2e\x51\x48\xaf\x8e\x1e\x9c\xcb\x35\xbd\x36\x6b\x0a\xb4\x35\xc0\x08\x10\x85\x5e\x38\x00\x13\x97\xec\x12\x14\x4c\x41\x7b\x56\x4c\x93\x17\x01\x74\x82\xe2\xa0\x53\xb6\xf9\xbc\xbd\xd4\x00\xa5\x12\x70\x52\x66\xea\x60\x9e\xab\x5b\x27\xe3\xea\x95\x7b\x93\xea\xdb\x87\xdb\xab\xef\xbf\x71\x61\x71\xfb\x60\x67\xd5\x82\x98\xe6\x9f\x42\x11\x19\xe7\x5e\x18\xfa\x49\xb5\xe3\x50\x3b\x53\x26\xf6\x45\x30\x75\x3e\xa7\xbe\x94\xa6\x38\xe6\x58\x07\xeb\x8a\x70\x60\x1e\x3e\xfe\x29\xb4\xb1\x11\x09\x5f\x5f\x6c\x5a\x17\x57\xe2\xda\x2f\xe6\xa5\xdf\xa5\x8b\x6f\x6c\x84\x02\x1d\x9c\x8f\xe7\xe4\xf5\xfc\x7e\xda\x9c\x77\xa7\xa1\x91\x89\x54\x54\x38\xb4\x4c\x0c\x4f\xda\x68\x9c\x8c\xf3\x00\x0e\xb1\x83\xfd\xc7\x0d\xaa\x5c\x3a\xa4\x4c\x94\xde\xc4\xfa\xd0\x87\x3e\x24\xbf\xf4\xa5\x2f\x29\x03\x58\x5e\x7c\xf1\x45\xfc\x8b\xcb\x78\xd3\x2d\xde\xa3\x02\x82\x7c\x0d\x04\x35\x50\x91\x02\x44\x3e\x2e\x65\xf1\xf0\xfd\x62\xef\xca\xc9\xe8\xc6\xfe\xd9\xe8\x99\x4b\xb3\xfc\xe9\x9d\x45\xf6\xc4\xb8\x94\x8f\xe4\x4a\xec\x0b\x0d\x53\x03\x56\x6a\xd6\xe6\x0b\x9c\xce\x49\xb5\xfb\x1e\x8c\xbf\xb4\x96\x22\xf0\x97\x3c\xe8\x4b\x0f\x20\x60\x02\xa0\xf7\xcc\x3c\x72\xee\x0b\xb5\xf8\xc5\x7f\xed\x82\x38\x80\x89\x4c\x00\x10\xa0\xc0\xe8\x4a\xaf\x63\x5d\x73\x7f\x99\xa8\x5f\xa9\xb6\x3d\xc8\xd7\x30\x02\x9f\x1f\x43\x36\xc9\xb6\xcb\x47\x5a\x60\x9c\x05\xed\x31\xff\xa0\x9b\xe8\x12\x69\xf3\x76\xbd\x06\xc0\x3e\xd0\x0e\xda\xe5\x28\x4c\x62\x12\xdd\x3b\x8d\x37\x54\xeb\x86\x31\x77\xe2\xb0\x01\x74\x18\x9d\x75\x9f\xb4\xd3\x98\x56\xa3\xb6\x75\x48\x5e\xab\x79\x59\xff\xbe\x92\x3e\x5e\x65\xfa\xce\xd9\x48\xbd\x7e\x6f\x52\x7e\xff\xee\xb4\xfc\xcf\x83\xed\xe5\x2b\x77\x76\x56\x6f\x1e\x4d\xcb\x93\x4a\x6a\x03\x60\x68\x14\xa6\x6c\xf4\xe6\x0e\xba\xb3\xe6\x65\xc4\x26\x5e\x9c\xd6\x79\xcb\xef\xc9\xf6\xf0\x06\x72\x1d\x53\x9e\xca\x4b\x01\x0b\x31\xcf\x53\x5e\xc6\x53\xea\x8c\x93\x2f\x10\xc0\xb5\x4d\x0c\x40\x1a\x02\xc8\x42\x41\x89\x10\xd8\x70\xe9\x18\xa3\x53\x28\x71\x6d\x2b\x01\xec\x3d\x2e\x58\x81\x50\x4a\x89\xc8\xf8\x94\x0a\x21\x3f\x17\x1d\xc7\x3f\x86\x0f\xd5\xdf\xa5\x53\xaa\x6c\x5f\x59\xd7\x7d\x4c\x8a\x1d\x40\x94\x7f\xcc\x75\xea\x7d\x6c\x3f\xb9\xea\xd0\xa3\x79\xe1\x85\x17\xe4\xbf\xfc\xcb\xbf\x28\x80\xde\x81\x71\xf8\x77\x84\xe8\x61\x70\x00\x68\xef\x8a\xd0\x90\x4b\x0d\xf9\xa8\x92\xc5\xee\x3c\xdb\x79\xe8\x74\x74\xf5\xd2\x59\x7e\xf3\xca\x49\xf1\xd3\x17\xcf\xf2\x27\xb7\x4a\x79\x73\x54\x89\xab\x52\x89\x1d\x51\x7f\xba\x2c\xa9\xc3\x76\x85\xf9\x3b\x87\x66\x42\x06\xda\xda\xeb\xc1\x95\x61\x0a\x23\x67\x15\xff\xb6\xce\x2e\x89\xf4\xe4\xd1\xf3\x5f\xe2\xf8\x02\xa3\x0f\x0b\x74\xcc\xff\x1b\x04\x81\x41\x99\x15\x95\xa0\xba\x52\xb0\x17\x50\xce\x80\x92\x3e\x98\x43\x3d\xa0\x1b\x56\x5c\x1b\x7a\xf8\x5b\x8f\x98\xc8\x8f\xb7\x7d\xf1\xda\x12\x2d\xeb\x08\x37\xb9\xf4\x33\x40\x85\xf2\xc7\xd8\x07\x40\x2f\x95\xa8\xf7\xc3\x2c\x32\x7d\xeb\x64\x5c\xbe\xf2\xce\x76\xf9\xed\x77\xb6\x97\xdf\x7d\x67\x7b\x75\xeb\x60\x7b\x75\x78\x96\xab\xa5\xae\x3f\xad\x36\x00\x86\x5b\x4e\xa2\x3f\x0c\x09\x80\xe6\x9d\x01\x30\x2f\xbc\xf0\x82\xbc\x7b\xf7\x2e\x7c\xf3\x9b\xdf\x34\xcf\x43\x6f\xc6\x21\x7b\x84\x93\xcf\xf6\xa6\x3a\x5e\x97\x03\xe3\xf4\x0e\xd9\xf9\x58\x3f\x82\x53\x0c\x78\xf0\xb5\x09\xa7\x97\xcf\xb7\x50\x1a\xaa\x97\x0b\xd8\xb8\xea\xc3\xf9\x2a\x9f\x2e\xf8\x99\x4b\xa7\x14\x7b\xcf\xf1\xf5\x81\xce\x60\x1f\x08\x70\x37\xb2\x6b\x10\xc4\x0c\xde\x98\xc6\xa4\x4a\x85\x92\xcb\x89\xa6\x94\x89\x41\xc4\x31\x28\x14\xcb\x4e\x41\xae\x21\xc0\xe3\xd3\x21\x54\xe7\x50\xfb\xc4\x1a\x8b\x58\x04\x1e\xd2\x37\x2a\x51\xc0\x62\xfe\x32\x51\x15\xfc\x2f\x07\x0d\xf9\x48\x89\x7c\xba\xcc\xa6\x97\x66\xf9\xfe\xfe\x6c\xf4\xd8\x43\xb3\xd1\x93\xfb\xa7\xf9\x7b\x2e\x2c\xf2\x27\xc7\xa5\xbc\x29\x35\xec\x49\x0d\x13\x00\x91\x73\xfe\xb3\x96\x01\x40\xf7\x4e\x98\x08\x0c\x4e\xf8\x2d\x9a\xdb\xa4\x0a\xd6\xbd\xf5\x8b\x3e\xd0\x73\x58\x8e\xc4\x39\xd1\x16\x28\x30\x1b\x4d\x01\x3c\x3a\x90\xf3\x5e\xfa\x9a\x11\x39\x24\xd2\xd3\x2e\x85\x99\xc8\x03\xd8\x51\x27\xcc\x81\x8b\x0b\xc5\x2e\xe5\xc4\x80\x08\x8c\x1f\x62\xca\xf2\x72\xfa\x67\xd2\xb0\x74\xcc\x67\xd2\xd1\x40\x27\x42\x8f\x96\xc6\xbf\xdc\xa6\xea\x73\x62\xe0\x78\x95\xa9\x37\xcf\x0a\xf5\xca\xdd\xad\xf2\xbb\x6f\xef\x2c\xff\xf3\x60\x7b\xf5\xca\xdd\xad\xf2\xe0\x74\x5c\xcd\x16\x0d\x88\x69\xf6\xc3\x28\x40\x9b\x7a\xa1\x9b\x8b\x0a\xc0\xfa\xd5\x6a\x0b\xc0\x7c\xf2\x93\x9f\x94\x9f\xfb\xdc\xe7\x42\x8e\xcd\xe4\xc5\xd8\xd2\x10\xc8\x01\xc7\x73\x97\x03\xa7\x7a\xb8\xe4\x85\x9e\xc5\xbc\xa4\x51\x39\xb1\x36\x2d\x06\x0c\xa5\xfa\x38\x1f\x7f\x5f\xd9\x21\x76\x38\xd6\x9f\xfa\xe4\xfa\xf8\x85\x5e\x80\x7d\xb4\x6c\x9b\xd2\x88\x0b\x66\x98\x3a\x30\x39\x94\x44\x95\x72\xf1\x8b\xa5\x0b\x01\xa2\x90\x9e\xc0\x5c\xbb\xca\xc5\xea\x10\x5b\x76\xd3\x29\x04\x26\x20\x52\x97\x54\x9d\x63\xe8\x83\x34\x64\xd3\x6d\x0b\x58\xcc\x5f\x26\xd2\x52\x9f\xb7\xa2\xa0\x18\x55\xb2\xd8\x59\xc8\xe9\xde\xd9\xe8\xf2\x95\xd3\xd1\xcd\x2b\x27\xc5\xd3\xfb\xb3\xfc\x7d\x5b\xab\xec\xc9\x51\x25\xae\x09\x2d\x76\x05\xf9\x84\x19\xff\x26\x0e\xde\xc3\x01\xe0\x78\xd3\xe6\x7c\x5c\xf3\xda\x4f\xa3\x1c\x1d\x68\xe0\xf7\xc2\xd8\x40\xc1\xb5\xfc\xc3\xbb\x3c\xfb\x13\x5f\x7c\xdd\xa5\xa0\xa3\xb4\x80\x0f\x0f\xaa\x38\x20\x44\x23\x15\x00\xf4\x0c\x98\xae\xde\xa6\xf6\x00\x82\x2c\xab\xf1\xfa\xf5\x40\xa4\xb3\x5d\xba\xe7\x00\xb4\x35\x6d\x2d\x5c\xbc\xe9\xd7\x40\x6e\x2d\xb8\x27\x7e\x60\xe6\x66\x11\x17\x03\xf3\x69\x50\x8f\x53\x5d\x6a\x80\x79\x29\xf5\xe1\x32\xd7\xaf\xde\xdb\x2a\xff\xe3\xed\xed\xe5\x7f\x1e\x6c\xaf\x5e\x3d\xdc\x5e\xdd\xbe\x3f\xae\x8e\xcf\x46\xf5\x21\x77\x40\x7e\xfc\x11\x01\x1a\xe7\xcf\x0c\x00\xf4\x96\x90\x5c\x2f\xa4\x31\x36\x11\x18\x3a\x9f\x9d\x8a\xb1\xf7\x21\x3e\x29\x3a\xc7\x82\x25\x97\x7f\xf3\x95\xf5\xc9\xc1\xbc\x29\x7f\x57\x39\xaa\xd7\x90\x7c\xca\x9b\xa6\xa1\x7d\x15\x0b\xf2\x62\xf8\xb9\xfc\xb3\xaf\x3f\xad\x88\x8b\x8f\xa1\x0b\x98\x84\x00\x0b\xa5\x89\x71\xb0\xbe\xfc\xd4\x01\xe3\x1b\x88\x1c\xbd\x8b\xcf\x26\x53\xec\x1b\x42\x6c\x99\x75\xcb\xc6\x0c\xd2\x10\xa2\xa6\x74\xed\xf5\xbb\xdf\xfd\x6e\xf9\xf0\xc3\x0f\xc3\xff\xfc\x9f\xff\x93\x6e\xb8\x95\xa4\x2c\xbb\x77\xa5\x01\x2e\xb9\x54\x90\x4f\x4a\x39\xd9\x99\xe7\xbb\x97\xce\xf2\xab\x57\x4f\x46\x37\xae\xd6\xcb\x41\xcf\x4e\x4a\xf9\x64\x5e\x89\xab\xcd\x71\xfb\x32\xf6\x48\x7c\x68\x9f\x85\x0f\x72\x33\x91\x0f\xee\xeb\x15\xfa\x69\xb4\x55\x06\x2d\x83\x18\xf7\x6e\xfe\x6f\xd3\xd9\xf7\xd8\x29\x72\x4b\x5a\x9d\x3e\x60\xfd\x8e\x51\x1f\x10\x74\x57\x74\x89\x2b\x74\xdd\xde\x13\x00\x47\xdb\x94\x03\x70\x4e\x77\xcc\x1c\xca\x37\x6c\x2f\x4f\x42\xea\x85\x49\x5c\x20\x31\x04\x35\xc2\x9a\x06\x81\x9a\x6b\x39\x89\x53\x93\x3c\x03\x80\xb2\xf9\x11\xc8\x5b\xa7\x45\xf9\xad\x83\xed\xd5\x37\xdf\xbe\xb0\xfa\xfe\xdb\xdb\xcb\x5b\xf7\xb6\xaa\xa3\xd9\xa8\x9a\xad\xb2\x1a\xc0\xe0\x4f\xab\x01\x00\x10\x88\x01\xb0\xe7\x6d\x1b\x8d\x79\xf9\xe5\x97\xd5\xbb\xdf\xfd\x6e\xf9\x83\x1f\xfc\x20\x06\x18\xe0\x67\x94\xa7\xeb\x59\x2a\x88\xf1\x01\x80\x4d\xbc\xb4\xf9\x74\x8c\xa1\x5d\x37\xf9\xea\x6d\xe4\xac\x4b\x13\x5b\x36\xd4\xc7\x29\xed\x99\x12\x1c\x18\xe2\x6b\x5b\xe0\xc2\x09\x08\x31\x8c\x75\x70\xa9\x9d\xec\x6a\x54\x20\xd7\x80\xf2\xd6\xe1\x8f\x79\xf8\x3a\xcf\xf5\x7c\x68\x1d\x53\x79\x87\x00\x5d\xaa\xec\x50\x5d\x53\x78\xf5\xf8\x5e\xbb\x76\x4d\x3e\xf3\xcc\x33\xf0\xd4\x53\x4f\x59\x05\xcc\x29\xb7\xf8\xe8\x7d\xb0\x41\x4b\x77\xf6\x8a\x86\x3c\x53\xa2\x18\x57\xa2\xd8\x9d\x67\x7b\x57\x4e\x8a\x6b\xd7\x8e\xc7\x4f\x5c\x3e\xcd\x7f\x76\x67\x91\x3f\x3b\x2e\xe5\xcd\x4c\x8b\x7d\xd1\x9e\xb9\x82\xe4\x04\xdf\xe0\xbb\x37\x6a\xeb\x6d\xdd\xbf\x92\xc0\x94\x88\x7b\x12\xe2\xc6\x2f\x19\x38\x00\x95\x03\x48\xd0\xbb\x78\x40\xd0\x97\x1e\x5c\x7a\x21\x20\xce\x55\x0e\x1f\xee\x66\x6d\x94\x45\xeb\x3f\xf5\x6f\x02\xb9\xbe\xe6\xb1\x3d\xbd\x55\x77\x06\x04\xd0\x9f\x42\xa8\xe9\x3b\x42\xbc\x4c\x83\x15\xc6\x4b\x66\x6d\x5c\xa7\x95\xd9\xc0\x06\x61\xa2\x49\x4d\xe4\x09\x84\x55\xd6\x6e\x03\x0d\xda\x00\xd6\xae\x38\xd3\x8e\x80\x1b\xa7\xad\xb3\x46\x60\xb7\x55\xa5\xad\x86\x06\x05\x30\x5b\x65\xfa\xf6\x59\x51\x7d\xeb\xee\x56\xf9\x8d\xb7\x2e\x2c\xbf\xfd\xe6\x85\xe5\xad\xc3\x69\x79\x38\xaf\x01\xcc\x5c\x0b\xef\x17\x49\xf4\xb7\x90\xf0\x19\x31\xf0\xcf\xff\xfc\xcf\xf0\xbd\xef\x7d\x2f\xd5\x59\xc5\xe6\x73\xcf\x87\x38\xce\x98\x37\x79\x57\xf9\x21\x20\x64\x13\x2f\xb2\x21\x5d\x36\xe5\x47\x43\x72\xb9\x97\xfc\xd4\x17\xd4\x75\x74\xf4\xd5\x33\x08\x26\x05\x7a\x00\xa4\x10\x4e\x31\x51\x0c\x5f\x0a\x45\x3a\x52\x22\x1f\x31\x4e\xdf\x27\x93\x2b\x17\x42\xa0\x9c\x1c\x5f\xfe\xda\x88\x32\x81\xd6\x57\x36\x86\x4f\xec\xdb\x54\x6c\x5f\xc1\x27\x3e\xf1\x09\xf9\xf9\xcf\x7f\xde\xfa\x42\x08\xfd\xa0\x21\x00\x58\x3f\x66\x28\xf1\x3d\x34\xfb\x57\x32\x0d\xf9\xb8\x94\xd3\x8b\x67\xa3\xdd\x47\x8e\x8b\x6b\x8f\xde\x1b\xbf\xef\xd2\x2c\xff\xb9\xe9\x52\xbe\x3f\x57\xf2\x31\xa9\xc5\x0e\x5d\x3e\x01\xc7\x7d\xef\x37\x7d\x9a\xff\x8b\xc6\xeb\x68\xe3\x40\x63\xcb\x74\x61\xfc\x56\x96\x3b\xb2\x63\x2f\x6f\x70\x07\xd7\x79\x9d\x7d\x93\x47\xaf\x3b\x7e\x24\xea\x81\xc0\x01\xd6\xbb\xd5\xb3\xf7\xdc\x3e\xf2\x9f\xd3\xbb\x95\xab\x01\x34\x73\x60\x1c\x5f\x77\x5e\x4f\x67\x72\x44\x22\x58\x3e\x8d\x42\xed\x57\x3f\xc0\x14\x44\x25\x52\xe2\x39\x5c\x5f\x44\x1c\x52\xcc\xf2\x70\xb5\x87\x3d\x96\xe2\xf4\x68\xf3\xc8\x20\x50\x00\xcb\x4a\xea\x83\xf9\xa8\xfa\xce\xbd\x49\xf9\xd5\x3b\x17\x56\xff\x7e\x7b\x77\xf1\xfa\x9d\x9d\xd5\xc1\xd9\xa8\x9a\x95\x99\x9e\x6b\xb0\x36\xf3\x5a\x4b\x48\xd0\xb2\xb1\x52\x7b\x6f\x96\x91\xc6\xe3\xb1\x5c\x2c\x16\x21\xbb\x32\xd4\x8e\xa7\x3c\x07\x86\xd6\x95\x52\x64\xc4\xf0\x48\xe1\xcb\xe9\x39\xa4\xce\xb1\xd7\x3e\x7d\x43\xba\xc7\xf0\xc5\xf5\x02\x08\xd7\x35\xa4\x53\x08\x9c\x7a\x79\x89\x08\x22\xaa\x28\xa5\x0f\x01\x19\xaf\x93\x63\xca\xc4\x0c\xca\x10\x60\xe2\x74\xa3\xe5\xb9\x32\x29\x83\xda\x37\x49\x29\xbf\x94\xc1\xe4\xe2\xed\x42\xa3\x9b\x4e\xa1\xbe\xc3\x34\xbd\xe7\xbf\xfd\xdb\xbf\x2d\xaf\x5c\xb9\xe2\xfb\x75\xe6\xf6\x1f\x39\x92\x3f\x87\xfa\xf7\x82\xf2\x71\x29\x27\x0f\x9d\x8e\xf6\x1e\x3f\x9c\xdc\xb8\x76\xbf\x78\xdf\xde\x59\xfe\xa1\xe9\x32\x7b\x2e\xd3\x70\xb5\xf9\x8c\xd9\xda\xb3\x52\x5b\x74\xd1\xbd\x2d\x33\x9e\x47\x13\xd7\x81\x7f\x80\xd0\x72\x34\x3d\x07\xda\xbd\xfd\xba\x12\x5e\x7d\xb0\x37\x77\xb6\x99\xad\x7e\xdd\x1b\x2e\x80\xe5\x6f\xbd\xbf\xfd\xd3\xbe\xc3\x03\xd4\x35\x64\x37\xdf\xd2\x4f\x8d\xad\xfa\xb7\xb2\x03\xf0\xa2\x39\xb3\xc5\x24\xce\x79\xb6\xed\x47\xda\x91\xd6\xa3\xd7\x4e\xb4\xce\x29\x89\x89\x8c\x38\x7f\x6b\x88\xa3\xf7\x00\x05\x27\x48\x08\xab\xd3\xcf\xb7\xda\x02\xdc\x4d\xdd\x66\xd3\x33\x77\xf0\x98\xe8\x6e\x42\xe7\xc9\x68\x00\xa5\x84\x3e\x5e\xe4\xea\xbb\x27\xe3\xea\xab\x07\xdb\xcb\xaf\xdc\xda\x5b\x7c\xff\xf5\xbd\xc5\x9b\x67\x45\x35\xaf\x04\xd4\x67\xc2\x08\xef\xcf\x0b\x00\xbd\x36\xd1\x26\xf3\xcb\xd4\x4c\x1a\x6a\x27\x7f\x52\xf8\x50\x7b\x1a\x0b\xbe\x62\x5f\x2e\x87\xea\x63\x52\xa8\xdd\x87\xe8\xef\xe2\x1b\x0b\x6a\x4c\xf9\x90\x5f\x0f\xc9\xf1\xf9\x67\xef\x4b\x32\x9d\x4a\x2e\x20\x80\x93\x0b\x30\xa4\x22\x2e\x2c\x8f\x73\xfc\x94\x37\x97\x62\xe4\x71\x1d\xeb\xe3\x79\x9e\x29\x76\xb0\x9f\xb7\x7c\x1f\xf2\x5f\x7b\x42\x32\x5f\x0a\x49\x72\xdd\x82\x15\xad\x75\x2e\x84\xc8\x01\x20\x1f\x95\xa2\x78\xf8\xa4\xd8\x7f\xe2\x9d\xc9\xcd\x6b\xc7\xe3\x9f\xbf\x38\xcf\x3f\x3c\x59\xc9\xf7\x65\x5a\xec\x73\xd1\x06\xf3\x96\x8e\xf3\x69\x84\xc2\x84\xd8\xb9\x90\x7e\xc7\x86\x46\x69\xa8\xbf\xe9\xfe\x8f\x79\x77\x0e\x9c\xe6\xf3\x91\x14\x57\x8a\x73\x9c\x68\x53\xb1\x75\x9c\x3d\x17\x31\xe9\x74\xe0\xee\x31\x77\x0c\xda\x00\x03\x2b\x86\x47\x28\xea\xc3\xe9\x4f\x23\x24\x01\x3f\xde\x4f\x3a\xbd\x5c\x04\x5e\x70\xea\xee\xa6\xef\x00\x72\x7d\x3b\x20\x14\xc3\xc8\x71\x83\x54\xfc\xdc\x5f\x0b\x3c\xce\xb5\x00\xd0\xa0\xe7\xab\x4c\xbf\x3e\x2b\xaa\x2f\xbf\xb3\x5d\xfe\x8f\x57\xf7\xcf\xbe\xf5\xea\xfe\xfc\xce\x69\x51\x99\xe5\xa3\x25\x80\x15\x79\xe1\xbe\x46\x02\x7c\xed\xd9\xc0\xeb\xca\x4b\x89\x0c\x84\xa2\x0f\x31\x3c\x37\xa1\x53\xac\x2c\x4a\x67\xd2\x50\x60\xe0\x92\x11\x7a\x29\x76\xc9\x89\xe5\x1f\x92\xe1\xe3\x1b\xa3\x6f\x48\xaf\x21\x01\x0a\x05\x90\xfe\xf2\x13\xab\x18\x4e\x21\xc5\x28\x4d\x4c\x65\x62\x78\x73\xfc\x5c\xe8\x94\xa3\x1f\x82\xf0\x43\x03\x3c\x84\x8a\x39\x5a\x97\x5e\xa1\xbc\x98\xe7\x31\xbc\x9d\x75\xb9\x70\xe1\x82\xfc\xbd\xdf\xfb\x3d\x00\x00\xf8\xb3\x3f\xfb\x33\x6e\xf3\xad\x04\x00\xd0\xe4\xcb\xa0\xe6\x9f\x39\x34\x2e\x1f\x57\xb2\x78\xec\x68\x7c\xf9\xe6\xe1\xe4\x99\xab\x27\xc5\xf3\x17\xe6\xf9\x07\x27\xa5\x7c\x4a\x6a\xd8\x07\xa0\x4b\x2d\xf6\x92\x46\x78\x97\x85\xfd\x04\x87\xe8\x7d\xee\x20\xda\xb1\xe2\x32\x6c\x54\xc3\xbf\xfc\x40\x97\x85\x9c\x74\x10\xaa\x37\xd5\x61\x18\x70\xe2\x97\xb2\xf8\xcf\xc3\x53\xbe\xd3\xc1\x07\xce\xd1\xbd\x31\x5d\x14\xa5\xb9\x6b\xcf\x8c\xd1\xcd\x2d\xe7\xda\xa1\x3d\xdb\xc5\x84\xc9\xda\xf3\xe9\x18\x90\xea\x5c\xbe\xd1\x80\x0f\x83\x63\xeb\xde\x1d\xb6\xd2\x45\xb4\x70\xe4\xc8\xe2\x49\x0f\xd4\x43\x51\x32\xac\x0c\x62\xd9\xfc\xc0\x64\x17\x19\x03\xe8\xd7\x19\xb7\x21\xae\x53\x57\x7d\x0c\xa2\xdb\xff\x2f\xcb\x4c\xdf\x3e\x2d\xaa\x7f\x3b\x9c\x96\x5f\x7a\xfd\xd2\xfc\x3f\x5e\xdd\x9f\xdf\x3e\x9e\x94\x33\x6d\x22\x30\xf6\xa1\x76\x66\x0f\x0c\xb8\x96\x92\x3c\x87\xd8\x0d\x75\x94\x9b\xce\xe7\x9e\x0f\xe5\x9d\xea\x88\x53\x68\x86\xe8\x97\x6a\xef\x53\x80\x5b\xaa\x4f\x1a\x02\x60\x86\xf6\x65\x2f\x99\x69\xe0\x03\x1b\x31\x8d\xc0\x25\x8a\x0e\x53\x1c\xba\x8f\xa7\x4b\x37\xaa\x77\x0a\xff\x18\x3e\x3e\x3d\xd6\xa5\x0b\xd1\x6f\x62\x02\x6d\x6c\xd0\x3c\xf6\xd8\x63\xf2\xd6\xad\x5b\x0a\x00\xe0\xc5\x17\x5f\x94\x00\x96\xa1\x95\xe8\x2f\xfe\x97\x03\x80\xf9\x65\xe6\x5c\x08\x91\xe7\x95\x28\x6e\x1e\x4e\xae\x5e\x3f\x1a\x3f\x73\xe5\xa4\x78\x7e\x77\x9e\x3d\x37\x2e\xe5\x93\x99\x12\x7b\x02\xa0\xb0\x5d\x89\x9d\xe8\xef\xee\xe0\x28\x88\x71\x13\xee\x08\x0b\x9f\x58\xc7\xd6\x5c\x68\xf4\x25\x0a\x0b\x32\xa8\x2c\x14\x65\xb0\xf5\x8b\x88\xfa\x90\x28\x43\x4f\x80\x89\x34\xa1\xa5\x31\x27\x48\xf1\x9c\x68\xdb\x53\xb7\xd9\x2f\x42\x97\x8a\x7c\x7a\xd7\xc5\xf8\xbe\x70\xb6\x27\xa3\x8c\x5b\x7f\xe8\x9d\x5c\xcc\xd1\x50\x61\x6e\x30\xc1\x30\x0a\x20\xbc\x36\x6a\x24\xdc\xf5\xf1\x43\xd5\xb8\x28\x50\x4a\x10\x87\x03\x60\x36\x36\x6a\x47\xb9\x52\x02\x66\xab\x4c\xdf\x3a\x29\xaa\x6f\x1c\x4e\x57\x5f\xf9\xd1\xde\xe2\x1b\x3f\xdc\x9b\xdf\xbe\xbb\x55\x9e\x68\xd9\x03\x30\xd6\xf2\x11\x3e\xc8\x0e\x6f\xe0\x8d\x38\x85\x37\xf5\x05\x10\x22\x69\x38\xfe\x30\xa0\xdc\x26\x69\x37\xf5\xb2\x1b\xeb\x27\x63\x68\x01\xfc\xed\xe3\xcb\x1f\xd2\x07\x0f\xd2\x1f\x82\x80\xfe\x00\xf0\xa5\xd0\x1b\x7f\x08\x95\xb9\x10\x23\x40\x5a\x85\x28\x7f\x1f\x1f\x6e\x80\xbb\x80\x5a\x8c\x2e\x31\x83\x62\x68\x5a\x97\xdf\xd0\xf2\x83\x06\x9e\xd9\x7c\x6b\x9e\xd1\x7d\x2c\x24\xd2\x52\xff\x6b\x4e\xba\x7d\xf2\x60\xeb\x91\x77\x1d\xb7\x80\xe5\xfd\x93\x95\xbc\x99\x2b\xb1\x5f\x03\x16\x21\xdd\xa1\x74\x3b\xf9\xc1\x40\xf3\xcc\x38\x7a\x86\xce\x77\xd6\x4a\xeb\xcc\xd1\x1e\x99\xb0\xef\xec\x03\x27\xfc\x97\x82\x03\x2f\xf8\x61\xf8\xe1\xf2\x34\x1a\xe2\x02\x24\x3d\x1d\x3c\x74\x7c\xdd\xdc\x9f\x7b\x63\xc9\xec\xbe\x1b\xe0\x97\x3a\xb8\xe8\x12\x20\x80\xe2\x72\xcc\x3c\x00\x08\xa1\x1f\x2c\x87\xd9\x1b\xc3\x61\x19\x07\x88\x60\x01\x6a\x68\x80\x86\xc0\x88\x4b\x7d\xd2\x79\x61\xd0\x84\x4e\x52\x46\x91\xad\x66\x43\x76\x59\x09\x38\x59\x66\xea\xd6\xc9\xb8\xfa\xd6\xe1\xf6\xea\x6b\x6f\xec\x2e\xff\xe3\x87\x7b\x8b\xd7\x0f\xb7\x57\xc7\xd0\x2c\x1f\x81\x03\xc0\xa0\x6b\x36\xfa\xb2\xb3\xb3\x23\x4f\x4e\x4e\x0c\xdd\xb9\xbf\x71\x83\xff\x65\x9b\xf2\xe5\xec\xa2\xcf\x8f\xc5\xc8\xa6\xfe\x0c\x98\x6b\xae\x4c\x48\x2f\x97\x0c\x8e\x8f\x8b\xbf\xb9\x37\xc9\xe5\xdf\x5c\xfe\x33\x55\x46\x8c\xbf\xe4\x52\x4a\xc4\xc7\x4a\x06\xb8\x18\x26\xa1\xeb\x18\x05\x70\x4a\x41\x90\x38\xcf\x37\xd0\x52\xd0\xea\x26\x68\x63\xf4\x76\xd1\x01\xa3\x73\xa8\x4c\x2c\x02\x0e\xb5\x47\xaa\x9c\x60\xfa\xf5\x5f\xff\x75\xf9\xf7\x7f\xff\xf7\xca\x75\xda\x2d\xf3\x0f\xff\x42\x73\x91\x57\xa2\x78\xf4\xde\xf8\xf2\xa3\x47\xe3\xf7\x3d\x72\x5c\xfc\xfc\xee\x3c\x7f\x76\xb2\x92\x37\x73\x2d\xf6\x85\xb6\x8f\xe3\x07\xb0\x23\x1e\xae\x97\x64\xfe\xcb\x1d\xf2\x06\x4a\x22\x18\xfd\xe8\x06\x0f\x4a\xe8\xb2\x0b\x18\x99\x78\xa9\x80\xf3\xc0\x74\xa9\x06\x45\x5f\x62\x7c\x1c\x07\x7e\xdc\xb4\x71\x00\xaf\x57\x3a\xe2\xf7\x07\x38\xe7\xe8\x03\x47\x3d\x3a\x12\x2d\x71\xeb\x48\xe0\x4d\x2f\x7a\xc0\xf0\xc7\x7d\xe0\xd0\xcb\x55\x21\x17\x10\x6a\xc9\x4c\x17\x46\x36\x6a\x77\x2a\x6f\x54\xb3\x46\xd5\x93\xcb\xf3\x5d\x03\x70\xfd\x63\x2b\xa4\x6b\x5d\x97\x4a\xc2\xf1\xa2\x06\x30\xdf\x39\xd8\x5e\x7d\xed\xf6\xc5\xc5\x37\x6e\xed\xcd\x5f\xbf\xb7\x55\xcd\x00\xec\x08\x0c\xd9\xfb\x42\x41\x4c\xcd\x57\x6b\xba\x79\x37\xf4\x42\x19\x63\xcb\x69\x19\x2e\xdf\x65\x2f\x5d\xf2\xb8\x32\xbe\x97\x6b\x00\xb7\x9e\x14\x18\xc4\x00\x21\x9f\x73\x4e\x01\x11\x2e\x5d\x01\xfa\xba\xbb\xea\x0c\x90\xae\x43\x4c\xdb\xba\xf8\xfa\xf4\xc1\x34\xae\x3a\x58\xb4\x5c\xc4\xc5\xd7\xf8\x1c\x8a\xa3\xf9\xdc\xb3\x10\x40\xe1\xca\x71\x89\x03\x50\xae\x41\xe6\x1b\x88\x3e\xbd\x42\xfa\xac\x0b\x6a\x86\x94\x4f\x19\xe8\xbe\xb2\x29\x20\xa8\x97\x68\x84\x85\xfc\xc5\xfb\x57\x24\xd9\x74\x3b\x79\x68\x36\xda\x7b\xf4\xde\xf8\xc9\x47\x8f\xc6\xcf\x5f\x3e\x1d\x7d\x60\x6b\x25\x9f\xca\x1a\xc0\x22\x40\xd8\xed\x8e\x22\x24\x00\x00\xa2\x39\xf9\x14\x20\xec\xa4\x7b\x38\x82\xd2\xea\x06\x18\x20\x7e\x2e\x46\xf8\xd3\x5f\x27\x3f\x26\xa6\xc0\x82\x0a\xe7\xe9\xad\x5d\x19\x68\x23\x3d\xee\x28\x0a\x06\x37\xf4\x8b\x9e\x5e\x64\xc7\xda\x6b\x41\xda\xce\x75\xe4\x3c\xf2\x75\xbd\xe8\x04\xf7\xe6\x8f\xdf\xec\x7b\xbc\x9a\x3a\x93\x72\x6d\x19\xce\xd1\x33\x20\x8f\x75\xd8\x3d\xa7\x4f\xfa\x8a\x03\x26\xb8\xce\x4c\xc3\xf6\x64\x06\x96\xd9\xb8\xfa\x02\xd3\xe6\x4e\x80\x42\xc6\x84\x97\x37\x49\x6e\x40\x4b\xc6\x4e\xbb\x77\xa6\x53\xcd\x00\x98\x4a\xc2\xd1\x32\x57\xb7\x8e\xc7\xe5\x7f\xbc\x79\x61\xf9\x95\xdb\x17\x17\xff\xf1\xda\xfe\xfc\xd6\x32\xd3\x73\xe8\xf6\xc0\x28\xe8\xf6\xbe\x94\xe6\x67\x03\xc8\xb9\x2f\xad\xcd\x78\xf9\xe5\x97\xd5\x23\x8f\x3c\x22\x6f\xdf\xbe\x3d\xe4\xc5\xd0\x17\x5d\x70\x39\x69\x00\xde\xfe\x03\x43\xeb\x02\x25\x94\x17\xe7\x3f\x7c\x72\x7c\x75\xa0\xf9\x2e\xfd\x7d\x3e\xcb\x55\xb7\x98\x7a\x86\xea\x00\x4c\x59\xac\x1b\x27\xcb\x07\xca\xf0\xbd\x2b\xc5\x82\x48\xaa\x6f\x7b\x1f\x7a\x39\x78\x90\x8e\x78\x48\x4a\x75\xf4\x90\x90\xbf\x49\x7d\xa8\x9c\x4d\xd5\x3f\x55\x07\xdf\x73\xb6\x1d\x3e\xf8\xc1\x0f\xca\x2f\x7f\xf9\xcb\x38\xca\x62\x6d\xc0\x25\xe7\xb0\x98\x25\x21\xa9\xb5\x2e\x46\x4a\x16\x17\xcf\xb2\xbd\x6b\xf7\xc7\x37\x1e\xb9\x37\x7e\xf6\x5d\xc7\xc5\xf3\xdb\xcb\xec\xd9\x51\x25\x1e\x11\x00\x53\x1c\xe5\xb0\x6d\x3e\x0a\x7e\x13\xdf\xd1\xfb\xfc\xb7\x79\xed\x8e\x0d\xe1\x47\x45\x2a\x1a\x70\x13\xbb\x41\xd2\x06\x04\x10\x88\x2e\x40\xcf\x89\x38\x81\x16\xba\xb1\xc1\x42\xfd\x37\x6a\x29\x23\x22\x61\xdd\x7d\x11\x03\xd6\xe1\x23\x9d\xd8\xfd\x19\xa6\x3d\xcc\x29\xbf\x9c\x07\x37\x20\x11\x7f\x8a\x4d\xf6\xcd\xd4\xf7\x46\x4e\xd7\x28\xfd\x3d\x44\x26\xd3\x6c\xa4\x65\x7e\x7b\x48\x77\x4b\x81\x1d\x2b\x74\x30\x9e\xb0\x41\x0b\x3e\x24\x8e\xfb\xa5\x68\x1a\x65\xc3\x27\x2c\x5b\x87\xd7\x39\x42\x3e\x6d\xc4\x44\x98\xbe\x25\x9f\xe9\x1b\x16\x40\xea\xdb\xed\x4e\xb6\x78\xb2\xa0\x93\xe9\xa3\x0e\xc0\xe8\xc3\x79\xae\x5e\x39\xda\x2a\xbf\xfe\xea\x43\xf3\x2f\xbd\xb5\xb3\xfc\xee\xdb\x17\x96\x07\x8b\x4c\x2f\x35\xe8\x25\x00\x94\xe6\xf0\x3a\x40\x40\xa6\x61\x63\xfd\x8d\x8c\xbe\x18\x7a\x9f\x23\x8e\x01\x25\x43\x00\x84\x2b\xa5\xda\xcd\x50\x14\xc3\x07\xba\x42\x00\x8e\xca\x08\x01\x13\x5a\x06\xc0\x2d\x8f\xe3\x81\x69\x38\xf9\x21\x5d\x7d\x6d\x11\x02\x42\x2e\x39\xde\xb6\xc1\x23\x3b\x36\xb2\x12\xd3\x01\x31\xa8\x0d\x27\x57\xd4\x84\x2b\x0b\x9e\xfc\x10\xa2\x8e\xa1\xa7\xf9\x9b\x04\x18\x29\xfc\x52\xdb\x94\xcb\x0b\x0d\xbc\x5e\x3f\x34\xbf\x0f\xa4\x00\x00\xfe\xf8\x8f\xff\x58\x6e\x6d\x6d\x71\xf4\x92\xf9\xd7\xee\x63\xc9\x14\x14\x3b\x8b\x7c\xe7\xca\xc9\xe8\x91\x47\xee\x8d\xdf\xf7\xe8\xbd\xf1\xf3\xbb\xf3\xfc\xb9\xa2\x12\x37\xa4\x16\x3b\x86\x4f\x1f\x30\x60\x07\x60\x7f\xe6\x8b\xa3\x08\x76\x68\x5c\x37\xd7\xdd\xbb\xaa\x66\x8d\x77\xe3\x21\x2c\xcb\x6d\x3b\x1c\xfe\x6d\x97\x8f\xa8\xb4\xfa\xa3\xc8\x8c\xf3\x0c\x8f\x88\xe4\xe4\x8f\x28\x68\xfc\x87\x46\x30\x00\x80\x8d\x62\xb8\xda\x8b\x46\x23\x42\x11\xa1\x90\x3e\x1c\x7d\x7a\x14\xa1\xdf\xde\x7e\x7a\xca\x98\xd3\x34\xae\x2b\x86\x80\xbe\x60\x69\x26\xdb\xee\x0f\x4f\x64\xa9\xc5\x36\xfc\x27\xef\xbe\x68\x4f\x8c\x6a\xdd\x63\x0d\x1a\x60\x5e\x49\x7d\x30\x1b\xa9\x6f\xdd\xb9\xb0\xfc\xb7\xd7\xf6\xe7\xff\xcf\x9d\x9d\xe5\xab\xf7\x26\xd5\xd1\x32\x57\x73\x05\x7a\x69\x3e\x9d\x06\xe8\xfd\x26\x92\x42\x20\xd1\x05\x60\x70\x0a\xd9\x2d\x57\x5a\xc7\x4e\xfb\x6c\xa1\xcb\xdf\x85\xf4\x75\xd1\xc7\xe8\x10\x4b\x13\x0b\x18\x7c\x91\x1c\x7c\x1d\xfb\xe2\x1a\x13\xfd\x08\xa5\x50\x9b\xa7\x02\xbf\x36\x65\x8c\x92\x9a\xfc\x33\xcf\xf1\x9c\xa1\xcf\x70\x59\x20\xcf\x01\xe5\x61\xfe\x86\x9f\x62\xca\x08\x86\x1e\xeb\x21\xa0\x2f\x83\x36\xb4\x29\x8f\xe5\x63\xbe\x02\xd1\x63\x3d\x0c\x2d\xfe\x6b\xf8\x6b\x72\x2d\xa1\x5f\x4f\x8e\x9e\xf2\xc5\x34\xb4\xae\xb4\x2e\x1a\xdd\x0b\x42\x03\x24\x8f\xde\xfb\xda\xca\xd4\x9f\xf6\x67\x4b\xf7\xe1\x0f\x7f\x58\x10\x7a\xa9\xb5\x16\xcd\x12\x90\x68\x96\x83\x46\x50\x03\x96\xb1\x54\x50\x4c\x97\xd9\xce\x95\x93\xe2\x91\x9f\x7a\x67\xeb\x67\x9f\x7a\x7b\xfa\xd1\xc7\x8e\xc6\x1f\xbf\xb0\xc8\x7f\xbe\x50\xf2\x31\x09\x62\x0b\xcc\x3b\x22\xda\xa4\xd0\x76\x0c\x5e\xbe\x31\x20\x03\xdb\x63\xf3\xc6\x8e\xde\x68\xf1\xff\x01\x00\x74\xe3\xb5\x6b\x21\x1d\xbf\xee\xe5\x14\xbd\x19\x13\x47\x4d\x1b\x8e\x7b\x6b\x15\xc8\x5d\x77\x6f\xe5\xcd\x1b\x3e\xe0\x4d\xb3\x00\xe6\x00\x13\x81\xbf\x7d\x6d\x28\xad\xb7\x63\x53\x67\x22\xd3\xd2\x07\x81\xae\x7e\x87\xe3\x3a\x77\x00\xc5\x80\x29\xb3\x61\x43\xa0\xff\xda\x76\x36\x72\xdb\xb6\x68\x80\x43\xe3\x39\xe9\x39\x35\x1d\xc0\xb1\x5d\x28\x05\x7a\x86\x9e\xfa\x4b\x7a\xdf\xb5\x88\xad\x15\x6d\x0f\x0e\x08\xb5\xbc\x2c\xa6\x4d\x2d\xda\x71\xd3\x5f\x42\x62\x4f\xe8\x45\xcb\x57\x16\xb9\x63\xc9\x8d\xde\xdb\x87\x14\x22\x2a\x06\x30\x98\x76\x14\xa4\xcd\xe9\x58\x04\xa2\x7f\x3b\x8e\xbb\xe1\x83\xc4\x79\x90\x09\xd7\xe8\x76\xe7\x83\x10\x22\x97\x1a\x76\x8b\x4a\xbe\xeb\xc2\x22\x7f\xfc\xa1\x59\x7e\x79\xba\xcc\xc6\x52\x0b\xad\x84\x2e\x2b\x09\x5a\x35\x83\xbf\xb1\x01\xd0\xfc\x15\xa2\x69\x20\x21\x5a\xad\x04\x00\xe8\x0f\x7e\xf0\x83\xe2\xc6\x8d\x1b\xe2\x3b\xdf\xf9\x0e\xb5\x9b\x9c\xcd\x0c\xd9\x53\xac\x39\xf5\x13\x9c\x5d\xa5\xfc\x5c\x36\x12\xf3\x75\x39\x64\xaa\xbf\xc9\xe3\xf2\x5d\x75\xe0\xfc\x24\xa5\xe5\x40\x45\x2c\x2d\x1d\x11\x00\xfd\x3a\xd2\x3c\xcc\x13\xfb\x43\xdc\x16\x94\x07\xe7\x47\x5c\xed\x00\xe8\x39\xe7\x7b\x71\xd2\x60\xf7\x19\xe6\xdb\xd3\x99\x0e\x69\x17\x42\x03\x46\x10\x57\xc6\x97\x86\xa0\x62\x9f\x5c\x17\xcf\x14\xc4\x1a\x43\x93\x52\xff\xd8\x37\x80\x75\xda\x6c\x08\x6f\x6f\xde\x78\x3c\x96\xfb\xfb\xfb\xf0\xc6\x1b\x6f\xf4\x36\xde\xd2\x73\x59\xd0\xd2\x50\xfb\x95\x10\x00\xe4\xe3\x52\x4c\x2e\xce\xf3\xfd\x47\x8f\xc6\x37\x6e\x1c\x4d\x9e\x7f\xe8\x74\xf4\xe1\xad\x95\x7c\x26\x57\xe2\x32\x80\xc8\x2d\x00\xd2\xa4\xd0\x17\x31\x1d\x9d\xeb\x99\xfd\x84\xa3\x0b\x7d\x62\xea\xfa\xcd\x1d\x4a\xe3\x73\x5e\xbc\x66\xee\x13\x51\x63\xca\x07\x13\xc3\xa4\xb7\x14\x80\xee\x75\xf3\x3f\xeb\x3e\x5a\x8f\x61\x1a\xb7\xa5\x9a\x0b\x7c\x6f\xfb\x5a\xbe\x75\xec\x4d\xb2\x1d\xa0\xa2\x4b\x87\xf6\x8f\x58\x82\x0d\xba\x1a\x7a\xeb\xbc\x9c\x36\xcf\xbd\xd4\x68\xef\xdd\xb1\x79\x61\xad\xeb\x36\x6d\x74\x03\xcc\x5f\xdb\x20\xda\x12\xd0\xd1\x43\x0b\xa8\xbb\x9f\x91\xb0\x4f\x25\xee\xea\x82\x75\xa3\x7b\x8f\xb4\x17\x64\xe2\x7a\x35\xcf\xe9\x6f\x07\x34\x3c\xcc\xbd\x12\xfa\x64\x99\xe9\x57\x8f\x27\xe5\x97\x7f\xb4\xb7\xf8\xd2\xeb\x7b\xf3\xef\x1c\xec\xac\xee\xcc\x46\xd5\x89\x92\xb0\x6c\xf6\xbb\xe0\xbd\x2f\x78\xdf\x4b\xef\xd7\xa8\x07\x1c\x60\xe7\xca\xe3\x9e\xb9\xa2\x03\x31\xcb\x2a\x43\x96\x48\x5c\xbe\x31\x36\xc2\x4d\xf5\xa2\x79\xb1\xfa\x85\xa2\x16\x2e\x99\x21\x5d\x37\xe5\x57\x5d\x72\x62\xfc\x64\x54\xc4\xc5\x24\x0e\x11\xf9\x90\xa8\x29\xc3\x09\xc5\x08\x8b\xa2\x29\xfc\x17\xd3\x51\x45\x5d\xe8\x8e\x8b\xc4\x50\x1e\x26\x51\xa4\xc7\xe9\x4b\xf9\x62\x99\xb8\x9e\x1c\x9a\xe6\xde\x00\x5c\x28\x14\xd7\x0d\xc8\x73\x0e\x89\x53\xbd\x5c\x65\x7d\x75\xc1\xc8\x97\x45\xb1\x4f\x3f\xfd\xb4\xf8\xc1\x0f\x7e\x80\x7f\x5b\xa8\x8d\xb0\x00\x80\x10\x42\x64\xe6\xbe\x01\x2c\x23\x21\xc4\x08\x34\x8c\x32\x0d\xe3\xe9\x2a\xdb\xb9\x71\x77\x72\xfd\xd9\x37\x76\x7e\xf1\xa7\xde\x99\xfe\xd6\xe5\xd3\xd1\xc7\x27\xa5\x7c\x26\xd7\xf2\xa2\x68\xbe\x14\xa2\x7b\x09\x00\xa0\xd9\xd3\xd0\x7d\x91\x21\x00\xd8\x33\x3b\xb8\x37\xdc\xfe\x13\xde\xb5\x0a\xd7\x03\xf3\x3c\x04\x5a\x1a\x1a\x73\x4d\x65\x21\x9f\x8a\x68\x34\xf9\xc5\xe6\xfe\xa2\x8a\x7d\x47\x00\x58\x2f\xd2\x63\x7b\x7e\xdb\xe9\x77\x8f\x5b\xd7\x89\xa3\x39\x4d\xbe\x00\xdb\xb9\x9b\x7f\x6c\x7d\x7b\x6e\xdc\xa1\x2d\xae\x37\x06\x06\x84\xbf\x69\x8a\xf6\x99\xe8\x68\xfb\xfc\x11\x90\x6d\x0a\xd4\xe5\x1b\xa7\xdc\x54\xaf\xe3\x29\x6c\x5e\x6d\x24\x43\xb4\xec\xcc\xf8\x33\x34\xa6\xed\x04\xca\xa4\x93\xd8\x8c\x0b\xdd\x28\x22\x10\x2f\xa3\x53\xc7\x5f\x20\x1e\x06\xf0\x74\x11\x98\xae\x1f\xec\x3a\x1a\xbd\x4c\xfd\x04\x34\x75\x03\x61\xcb\xec\xfd\xc8\x24\xe9\x0f\xa2\x43\xbb\xa4\x6a\xed\xc3\xe9\x9a\xb9\x89\x8f\xb4\xa3\xd2\x44\x23\x4d\x9d\xeb\x89\x2f\x8a\x5c\x89\xcb\x5b\x2b\xf9\xee\xbd\xb3\xfc\xb1\xbd\x79\x3e\xc9\x95\x58\xae\x32\xbd\x5a\x65\x5a\x35\x16\xa2\x7e\xfb\x6d\x7e\x87\xcc\x44\x5e\x9a\x7d\x3d\xba\xb9\x17\x00\xa0\x9f\x7f\xfe\x79\xf1\x95\xaf\x7c\x45\xef\xed\xed\xc9\xc9\x64\x02\xcb\xe5\x52\x68\x6d\x8e\x0c\x6c\x35\x34\xc9\xd8\x1f\xda\x35\x38\x71\x65\xe9\x14\xd5\x8e\x67\x1c\x0f\x9c\xb0\x1d\xe6\x7c\x1f\xc5\xfd\x9c\x0c\x5a\x1f\x0d\x7d\x7d\x28\xd0\xa0\xba\x70\xba\x51\x79\xae\x28\x90\x49\xd8\x7f\xbb\xf4\xa3\xed\x10\xd3\x56\x2e\xdd\x80\xe8\xe4\xeb\x27\x97\x8f\x0c\xe9\xd7\xb3\x5d\xeb\x20\x32\x17\x9f\x21\xf7\xa9\x29\x84\x74\x53\xf5\xc3\x79\x43\x74\x0b\x21\xd6\x10\x6f\x1f\x92\x8e\xe1\xe3\x43\xb6\x12\x00\x54\x9e\xe7\xb2\x2c\x4b\x05\x10\xfc\x5a\x48\xa2\x7f\xf5\x11\xfd\x20\x72\x51\x7f\xde\x3c\xd9\x9f\x8d\x76\x9f\x7e\x7b\xeb\x99\xc7\x0f\xb7\x7e\xfd\xc2\x3c\x7b\x21\x57\xe2\x9a\xd0\x62\xd2\x6d\xa4\x84\xde\x9b\x7f\x37\xdb\xf9\x37\x49\x36\x4a\x62\xbf\xce\x5a\x65\x00\x1a\x63\x4e\x36\x54\x0a\x61\x9f\xbe\xd2\xb1\xb0\xe5\x50\xa4\x49\xbf\xc8\xc1\x5a\xf7\xa2\x2f\x68\xc3\x66\x7b\xaa\x2a\xb8\x37\xf6\x52\xe7\xde\xff\xfd\x22\xf7\x6f\x0f\xb1\xa7\xe2\x52\x13\xda\x03\x1d\x1c\x10\xea\xf4\xe9\x45\xc1\x7a\xb2\x7c\x75\x47\xfd\xca\xf5\x19\x95\x8f\x94\xee\x1c\x70\xb3\xeb\x46\x37\xe0\x44\x34\xc0\x49\x37\x51\x07\x32\x1e\x2c\x39\xba\x03\x38\xd6\xb8\x62\xfa\x0f\x3b\x7c\xab\xed\x11\xea\xb1\xa2\x6f\x06\x24\xd2\x7a\x69\xe8\xe9\xd5\x3b\xe1\xd7\xd0\x20\x10\xc9\x45\x4e\x1a\xcd\x7a\x73\x00\xa0\x03\x64\x86\x17\x5d\xc6\xa2\xe3\xc6\x44\x50\xec\xa8\x8d\x05\x03\x3b\x79\xe6\x97\xb2\x2d\xfd\x85\x55\x4f\xdc\x67\x5a\x80\x2a\xa5\xbe\x73\x5a\x54\x5f\x7f\xeb\xc2\xf2\x1f\x5f\x79\xe8\xec\xab\xb7\xf6\xe6\x6f\xce\x46\x6a\x46\x0f\xb0\xe3\x7e\xc0\x91\x46\x5f\x00\xea\x08\x0c\xde\x4f\x07\x71\x36\xdc\x17\x9d\x70\x95\xf3\x45\x21\x70\x7e\x28\x1a\xe2\x93\xe3\x8b\xf8\xa4\xe8\xef\x2a\x47\xf3\x5d\xf2\xa8\xae\x43\x22\x5b\x31\x75\x4b\xe1\x3f\xc4\xc7\x85\x74\x82\x9c\x30\x73\x11\x52\xc1\xa9\x8e\x9c\x56\x7c\x5d\x7e\x38\x49\x72\x3f\x84\x97\x6b\x80\x05\x01\x00\x43\xe7\xd2\x8b\xca\xa3\x00\x81\x0e\x40\xcc\x97\xe3\xcd\xe5\x53\xbd\xf0\x5f\x5c\x06\x7e\xe1\x17\x7e\x01\xbe\xf8\xc5\x2f\x5a\x05\x9b\x03\xe3\x00\xc0\x3a\x4c\x2e\x6f\x22\x30\xe6\xf3\xe6\x42\x00\x14\x17\x16\xf9\xf4\xdd\x07\x93\x1b\x4f\xbe\xb3\xf5\xa1\x2b\x27\xc5\x6f\x16\x95\x78\x56\x68\x51\x00\x20\x47\x62\xbd\xe1\x35\xd7\x80\xaf\x6d\xb3\xda\xee\xed\xc0\x06\xd4\x94\x69\x7d\x28\xf1\x8e\xe8\xad\x12\x7f\x7a\x2b\xda\x42\x7d\xd9\xed\xdb\xa9\xb0\xf3\x3b\x96\xbd\x9c\x4e\x17\x46\x3e\x06\x47\x54\x6e\xe3\xaf\x2c\xc0\x62\x57\x87\x36\x4e\x07\x16\x68\x7b\xb0\xe0\xa3\x57\x07\x22\x1b\x33\xe8\xd5\x93\xcb\xa4\xb2\x3a\x54\x80\xf7\x9a\x10\x51\x3d\xf0\x60\xcb\xa1\x4a\x76\x4e\xb2\x75\xdb\x56\x79\x01\x56\x24\x83\xc8\x69\xeb\xd7\x61\x00\x26\x40\xd9\xbf\x0e\xeb\xd5\xb7\xa7\xa7\x25\xcf\xd1\xf6\x0d\x73\x3a\xcc\x08\x76\x63\xf5\x56\x21\x1f\xb7\x00\x00\x20\x00\x49\x44\x41\x54\xb2\xc0\x4f\x93\xdf\x8d\xed\x26\x8a\x81\xc7\x05\x8e\x7e\x20\x80\xc1\xe9\x84\xa3\x4d\x56\x7d\x3b\x50\x61\xf1\xc6\xff\x47\x15\xc3\x2d\x81\xfa\x18\xe5\x11\xbd\xda\x17\x80\x9a\x5c\x8e\x94\xb8\xb6\x3b\xcf\x3e\xba\xb5\x9a\x3c\xf5\xd0\x2c\xff\x97\x47\x8e\x8b\x7f\xfc\xee\x95\xd9\xb7\x7e\xb4\xb7\x3c\x04\x68\x7f\xff\xc8\x7c\x5d\x68\x1d\x5e\xd7\x80\x96\x9e\x0d\x45\xa0\x05\xc0\xef\x6f\x42\xf9\xbe\xe7\xbe\x3c\x0e\xc0\xe0\xeb\x58\x3d\x38\x7a\x97\x5c\x17\x18\x0a\xa5\x90\x7e\x9c\x2f\x88\x01\x1a\x3e\x39\x2e\x59\x2e\x5a\x57\x5e\x4c\xf2\x61\x82\x1e\x4f\xde\xa2\xd5\x29\x25\x0a\x91\x82\x9e\x5c\x32\x62\x11\x9d\x4b\x5e\x6a\x94\x25\x94\x52\xa3\x22\x31\x65\x52\x65\x9b\x6b\x93\x5c\x3c\x43\x3a\x3a\xdb\x19\xfd\xbe\x10\xde\xbf\x62\x40\x4c\x77\xe2\x6d\x73\x88\xdc\x74\x29\xa7\x8f\x1e\x8d\xaf\xfe\xd4\xc1\xd6\x73\xd7\xee\x8f\xff\xd7\x9d\xa5\xfc\x70\xa6\xc4\x7e\xcd\x2d\x66\xc7\x0a\x4a\x4e\xb2\xc8\xf2\x89\xd4\xf6\x5b\x79\xdf\x71\x73\x7c\xd2\x34\xe1\xcb\x84\xee\x63\x84\x59\xce\xcd\x47\xcf\x54\x2c\xba\x0e\xf8\x8d\x3e\x50\xc6\xf7\x9c\xdb\xdf\x03\x00\xbd\x25\x40\xb6\x6c\x43\x4c\xf7\xb1\x70\xc0\xac\x2b\xc3\x9d\x37\x43\x42\x51\x24\x5a\xd1\x82\x99\x98\xc6\xd1\x58\x07\x61\xd1\xf7\x8a\x3b\x22\x83\x6d\x04\xc7\x45\xcf\xc8\xe4\xf2\xb5\x83\x06\x8f\x09\xd7\x0f\x8f\x9a\x3c\xeb\xc0\x3c\x60\xe6\x01\x02\xda\xb6\xb8\x9a\x93\x02\x98\x2d\x73\xfd\xca\xd1\xd6\xea\x9f\x7e\xb0\x3f\xff\xc7\xef\x5d\x99\xbd\x7a\x6f\xab\x34\x7b\x5f\x96\xcd\xde\x17\xeb\xf3\x69\xbc\xff\xc5\xf0\x53\x4a\xc1\x67\x3e\xf3\x19\x5f\xc4\xc0\x97\x52\x6c\xec\x50\xff\x90\xea\xb7\x52\xea\x90\xaa\xd3\xa6\xeb\xbb\x0e\xfd\x83\x90\xe3\xa5\xa5\x11\x17\x9c\x28\x82\x6b\x11\x34\xc3\xd0\x15\x95\x00\x07\x3d\x97\x9f\xd2\x00\x21\xfe\x29\x3a\x84\x64\x0c\x45\xff\x9b\x48\xb1\x1d\x1d\x02\x71\xbd\x76\xc6\xfb\x59\x4c\x94\xc5\xac\x55\x03\x02\x2b\xe6\x20\xb9\xbc\x12\x93\xab\xf7\x47\xfb\xef\x3e\xdc\x7a\xe6\xd1\x7b\xe3\x5f\xda\x3b\xcb\x3f\x32\x5e\xc9\x27\x64\x7b\x1e\x4b\x67\x1e\x9b\xe0\x38\xfa\x3f\xf0\x4e\xd1\xe9\x00\xb0\xd3\xa3\xa1\x74\xe8\xbd\x3d\x1b\xff\x03\xe6\xac\x8f\x26\xa7\x83\x51\xf8\xab\x15\x2a\x01\x2c\x63\x4f\xe5\xd4\x3e\x08\x7d\xd9\xd2\x3c\x70\xf9\x27\xca\x9b\xdf\xdf\xc2\x04\xf1\x89\xa3\xa2\x7e\x8b\x46\x16\x00\xa0\xfd\x51\x41\xcb\x79\x91\xfd\x38\x02\x97\xd1\xda\xda\x0f\xd1\x4b\xc2\x6e\x53\xac\x47\xdf\xe1\xda\x15\xb7\xc1\x03\x8e\x22\xa0\x78\x94\xb0\x8b\xd6\x4b\x35\x60\xf1\x31\x91\x1b\x4b\xff\x76\xd9\x88\x57\xbb\xd7\x6e\xa2\xd3\xa1\x1d\x07\xed\x98\x21\x7a\xf7\x4e\x4d\xb6\x6b\xaa\x99\xc1\x6a\xb7\xad\x59\xea\x32\x51\x9d\xe6\x5e\x40\xef\xe4\x60\xcc\x05\xb3\x65\x97\xd9\x1c\xf9\xb4\xff\x4d\x1b\xb7\x4b\x61\x18\x70\x38\x00\x48\x1b\xe5\x69\xc7\x37\xb4\x9d\x2c\x28\xbd\x46\x7f\x44\x2d\x54\x0a\x3d\x1d\x97\xe2\x99\xcb\xa7\xc5\xd5\xad\x95\x7c\xea\xf2\x6c\xf4\x8f\xff\xf5\xd0\xd9\x97\x5f\xdb\x9f\xbf\x39\x1f\x29\x73\xfa\x6e\x1b\x79\x61\x7e\xb4\x11\x00\x40\x49\xd9\xb9\x97\x9f\xf9\x99\x9f\x81\x7f\xff\xf7\x7f\x5f\xc7\x07\xd0\x94\xba\x14\x13\xa2\x71\xad\x18\xb8\x6c\x6d\xac\xed\xf6\xd1\x71\x11\x95\x75\xfd\x4e\xca\x0b\xf9\x3a\xc1\x04\x57\x7e\xec\x8b\x38\xfe\xdb\xf3\x6f\xc2\x41\x30\xa4\x73\x53\x2a\x19\xc3\x6f\x68\x0a\x2d\xe7\xa4\xf2\x02\x0f\x3f\xf3\xcc\xd7\x16\xb4\xa3\x42\xa8\x3c\xe6\x39\xd7\xce\xb4\x0c\xab\xdf\xa7\x3e\xf5\x29\x99\xe7\x2d\x5e\x95\x28\xd2\x62\xa2\x2e\xb9\x10\xa2\x05\x2c\x00\x50\xec\xcd\xf2\x9d\x1b\x77\xc7\x37\xaf\x1f\x4d\x7e\xfe\xf2\xc9\xe8\x23\x3b\xcb\xec\x7d\x99\x12\x97\x05\xd4\x4b\x43\x00\x9e\xb7\x6f\xe3\xa4\xa0\x33\xe4\x00\xfe\xb7\x6f\x1b\x9c\xd0\x93\x40\x81\x6c\x74\x24\x91\x94\x90\x3e\xd0\x77\xc4\xae\x32\x7c\x04\xa6\x3b\x28\x0d\x03\x0e\x2f\x5f\xd7\xdb\xb6\x27\xd1\xc8\x0a\xfe\xcc\xda\xf7\x37\x3d\xb9\x4b\xd2\xba\x70\x54\xa9\xf9\xae\x67\x74\xbf\x91\x8b\x76\x78\x3d\xdd\x89\xab\x67\x50\xce\x00\x45\x2c\x39\x5c\x7d\xd9\x20\x51\x00\xd1\x32\xfc\xb9\x36\xa3\x00\x37\xaa\x9d\x99\x71\x8b\x65\x00\x68\xa5\x05\xcc\xe7\x99\x7a\xe5\xee\xb4\xfc\xe2\xad\x4b\xf3\xff\xf1\xca\x43\x67\xdf\x79\x67\x5a\x1e\x95\x99\x9e\x43\xb7\x84\x84\xa3\x2e\xf8\xf0\x3a\x30\xd7\x8e\xaf\x8e\x42\x36\x3b\x35\xf2\x3e\xc4\xcf\xa5\xa4\x75\xf8\x0d\xf5\x95\x29\x6d\x34\x24\x42\x02\x09\xfc\x53\xf4\x59\x0b\x1b\x98\xaf\x8a\xcc\x4b\x8e\x84\x7a\x5c\xc6\x30\xc4\x11\x48\xc9\xe4\xe1\x7b\xc9\x3c\xe3\xf8\x71\x74\x31\x65\x5d\x7a\x99\x97\x47\x0d\x3c\x0f\x09\x78\x1e\xf2\xbc\x34\xb9\xa7\xcf\xb8\x0e\xe0\xe8\x34\x53\x8e\x93\xed\xd3\xd5\xf5\x8c\xcb\xa7\x32\xe1\xa5\x97\x5e\x92\xe8\x2d\xc7\x44\x58\xa4\x10\x42\x36\x5f\x0e\x8d\x84\x10\x23\xad\xf5\x48\x08\x31\x2e\x4a\x31\xbd\x71\x77\xf2\xe8\xd3\x6f\x4f\x7f\xfe\xdd\x87\x5b\xbf\x71\xe5\xb4\xf8\xd5\xed\x55\xf6\xbe\x4c\x8b\xfd\x66\x83\x6e\xd7\xc0\x16\xd8\x40\x46\x50\xa0\x68\x87\x40\x6f\xf3\x82\x01\x25\xa6\x08\xb2\xa0\x34\x6a\xa2\xa1\x2f\x47\x90\x6b\x9f\x3f\x11\xe4\xaf\xb9\xee\x1b\x7a\xbc\xf9\x11\x9f\xad\x22\x2c\xe0\x44\xdf\x5c\xe9\x96\x15\xfc\xb2\x4e\x9d\x16\xe5\x4d\xf5\xec\x36\x78\x02\xfb\x36\xdc\xb5\x3d\xb3\x69\x97\x4b\x8e\x57\x7b\xd7\xc6\x5a\x2a\xcb\x62\x05\x76\xbb\xd1\x7a\xf8\x80\xa5\x60\x32\xbb\xa2\x5d\x04\x44\x43\xff\x79\x08\x04\xf6\x7e\x5f\xca\x11\x75\xa0\xba\x75\xfc\xfa\xd1\x39\x4e\x98\x6e\x95\x01\x9b\x9a\x00\xeb\x4e\x07\x3b\xf2\x86\xb7\xfd\xe0\xe3\x80\x34\x7a\x2e\x5a\x0a\xaa\x4a\xf3\x7f\xca\x13\x50\x79\xab\x2d\x48\xdf\x20\xd0\x64\x98\xba\xa2\x59\xed\x18\x33\xfa\xa0\xb5\xbc\x7a\x17\x96\x18\x65\x4a\xec\x6d\x95\xf2\x91\x0b\x8b\xfc\xea\xce\x22\xcf\xa5\x16\xf3\xc5\x48\xad\x96\xb9\x56\xcd\x59\x2f\x75\x73\x59\x1b\xa7\x50\x75\xa0\xfb\xea\x08\x00\xe0\x43\x1f\xfa\x90\xf8\xd1\x8f\x7e\x84\xed\xa4\xcb\x1e\xfa\xec\x2e\x2e\x87\x6d\x27\xf5\x0f\x3e\xdf\xc2\xf1\xf0\xa5\x90\x7c\x73\x4d\xe5\x52\x70\x81\xfd\x83\x65\x66\x19\x39\x02\xec\x76\xa2\x7a\xba\xae\xa9\x1c\x4e\x3f\x0e\x0b\x50\xfe\x54\x3e\xd5\x81\xa3\xa7\x7c\xa9\xee\xb4\x7c\x8f\x96\xfb\x1c\xda\x55\x39\x9f\x42\x9c\xe3\xa4\xcf\xe9\x33\xda\x19\x2e\x3a\x60\xe8\x42\xc9\xf0\x07\xe8\x0f\x08\xca\x1b\xcb\xc5\x9d\x16\x0b\x98\x7c\x20\xc3\x95\x6f\x3a\xc3\x55\x2f\xae\x7d\xb8\xf6\x72\xf1\xee\xd1\xe0\x23\xfb\x9b\x33\xa3\x64\x43\x2b\xa1\x5e\x16\x32\x80\x65\x24\x84\x18\x5f\x3c\xcb\x2f\x3c\x79\x30\x7d\xfa\xa9\xb7\xb7\x3e\xfa\xe8\xbd\xc9\xc7\x77\xe7\xf9\x07\x8b\x4a\x5e\x97\x20\xa6\x26\x28\x6e\x39\x36\x62\xf8\xb0\x39\xed\xac\x14\x35\xb4\x82\x2f\xd3\x18\xfa\xce\x95\x74\xb4\x36\x30\x68\x0c\x78\xc4\x17\x30\xd8\xe4\x1b\x59\xf4\x0b\x1a\x0b\xfc\x58\xcb\x17\xf4\x94\x59\xe4\x78\xb0\x3e\x8c\xf1\xef\x3b\x46\xb0\x1c\x29\x07\x5a\x70\x0d\xbb\xa7\x6e\x60\x60\x3b\x6a\xcf\x57\x4a\x78\x23\xb3\x43\x1f\x2f\xf0\xe9\x69\xd7\xd7\x01\xf3\xb0\xc0\x28\x2d\x67\xfb\x7a\x10\xed\x92\x4d\xf7\x55\x8f\xd5\x34\x18\x24\x08\x52\x4f\xe8\xb7\xa7\x6e\x96\x0d\x5b\x08\xd4\x21\x45\x4b\x09\xe3\xe0\x7b\xb5\x42\x08\x89\x46\x46\x74\x0f\xa5\x77\xb5\xb5\xc6\x03\x46\x4e\x44\x42\xe3\xc9\xed\xf6\x69\x2b\x8e\x1a\x06\xec\xf1\x27\xcc\xff\x38\x1a\x0b\x60\xd7\xb5\xb3\x96\x06\xdb\x7a\x0a\xc0\xcd\x82\xa7\x8e\x99\x7a\x66\xd9\x0b\x7f\x19\xd5\x36\x23\x02\x55\xb5\xc1\x11\x99\xd4\xb0\x33\x2e\xe5\xd5\xed\x65\x76\x6d\x67\x99\x5d\x18\x97\x42\x29\x09\x67\x8b\x91\x2e\x55\x6d\x79\xb0\x5d\xa2\x4e\xd8\x02\x2f\x1f\xfd\xe8\x47\xc5\x37\xbe\xf1\x0d\x8e\x96\x6d\x46\x47\x72\x01\x14\x97\x1e\xa9\x3c\x86\x96\xe5\x7c\x25\xe7\x03\x31\x70\xe0\xca\x50\xde\x18\x10\xf8\x7c\x97\x64\xe8\x29\xf0\x70\xb5\x0f\x0e\x50\xd0\x17\x69\x0e\x9c\x60\x53\x60\xca\x2b\xe8\xeb\x46\x69\x7d\x98\x40\x9b\x02\x5c\xc5\x4c\xf2\x85\x80\x86\x86\xc5\xb8\xa5\x93\x4d\x6d\x66\x72\x95\x19\x12\x9e\xc2\x3c\xc0\xc1\xc7\xc5\x17\xd7\x11\x97\x05\xb0\x81\x14\xbd\xa7\xbc\x06\x95\xd9\xdb\xdb\x83\xe7\x9e\x7b\x0e\xbe\xf0\x85\x2f\x28\xb4\xf9\x16\x00\xea\x03\xe4\xf0\xe6\x5b\xad\x75\xbb\x9f\x45\x80\xc8\x73\x05\x93\xab\x27\xc5\xe5\x9b\x87\x5b\xcf\x5e\xbf\x3b\xfe\x6f\x17\xcf\xf2\x0f\x8e\x2b\x79\x43\x6a\xb1\x63\xc1\x80\xd6\xe9\xf7\x0d\x7b\x4b\x83\xf2\xe8\x73\x6c\xd3\xb9\x41\xc8\xcd\x7a\xaf\x43\xd5\xc0\x7c\x61\xc3\xf3\x15\xd6\x85\x7d\x9d\xe2\xb8\x5d\xb4\x94\x75\xa7\x93\x9b\xbb\x1d\xf5\xb0\x41\x9b\x49\x5c\x3b\xc4\xe8\xdb\xea\x10\x41\xdc\x5a\x0f\x0a\x1c\x28\x2f\xae\x90\xb9\x8c\x69\x98\xe6\x9e\x2e\x81\x51\x1a\x0a\x82\x42\x55\x60\x9f\x07\xfa\x97\xfb\x2c\x3e\x28\x23\x65\xcc\x20\x50\x00\x3e\x5a\x86\xa7\x57\x27\x26\x33\x34\x0f\xd9\x0c\x47\x05\x5c\xb2\x7d\x3a\x29\xd0\xf3\x55\xa6\x6f\xdf\x9f\x94\xdf\x78\xe3\xc2\xf2\x4b\xaf\x5f\x9a\x7f\xfd\x8d\xdd\xe5\xeb\x27\x93\xea\x04\xba\xa5\xa3\xde\xe6\x5d\x8b\x05\xf4\x96\x8e\x62\x93\x6f\x59\x24\xc6\xf6\xfb\xec\xba\xaf\xfc\x79\x2f\xc7\xa4\xf0\x8a\xdd\xbf\x72\x5e\x29\xa6\xdd\xd7\xd6\x03\x1f\xf9\x8f\xe7\x95\x0f\x15\x71\xf7\xb1\xd1\x09\x1c\x69\xc0\xce\xdc\x57\x16\x47\x4f\x28\xfa\x0b\xa1\x5e\x8a\xe0\x68\x79\x83\x1c\x85\xe3\x9a\x22\x50\xee\x2f\x17\xe6\xa3\xff\x38\xa4\x89\x9f\x51\x3a\xac\xbf\x22\x65\x28\x7a\xb7\xda\xf0\xd2\xa5\x4b\xe2\xe8\xe8\x48\x7d\xfc\xe3\x1f\x17\x1f\xf8\xc0\x07\x4c\x74\x56\x0a\x21\x44\x03\x56\x24\xd4\xfd\x9e\x09\x21\xf2\xe6\x5f\x21\x41\x8c\xb7\x56\x72\xe7\xfa\xbd\xf1\xe3\xef\xbd\xb3\xfd\x4b\x37\x0f\x27\xff\xdb\xde\x3c\xff\x48\x13\x65\x99\xd4\x07\x63\xd9\xce\x15\x6f\x06\x74\x39\x03\x5c\x11\x9c\x8c\x5b\x66\x3f\xf1\x05\x00\xd1\x1e\x24\x16\x07\x10\xa8\x1e\xdc\x92\x41\xbb\xa4\x63\xc9\xed\x14\xa5\x67\x84\xe0\x51\x67\xd7\x9d\xaf\x13\x56\x0c\x2f\x05\x74\x75\xf0\x2c\xcb\x60\x67\x4d\x4e\x82\xc5\xf5\xc2\xd8\x86\xfd\x21\x48\xa6\xb1\xda\xf2\x08\x19\xe0\xc9\x8e\x8b\xb4\x7f\x39\xf0\x80\xda\xb0\x5f\x01\x54\xf7\xa6\x01\x7a\x20\x46\x40\x2f\xba\xd5\x49\x80\x76\x3c\x59\x87\x14\x02\xf4\x22\x09\x66\x7c\x50\x25\xf1\x79\x27\x1a\xeb\x23\xb0\x14\x8d\x36\xfb\xe2\xb3\x62\x9a\x1e\x22\xfd\xdf\x45\xf5\x9a\x7b\xf3\xd7\x81\x2a\xf0\x52\x56\xd7\x81\x08\xa1\x35\xad\x8f\xbe\x51\xea\x74\xc3\xa7\xdf\xa2\xf1\x4f\xf9\xe2\x36\x31\x87\xc7\xb5\x27\xef\x1a\x10\x86\x3f\xcf\xd2\x64\x99\xd5\xb4\x07\x42\x8b\x26\x92\x65\xf7\x19\xb3\x6c\xd6\xca\xb7\x1b\xb7\xd3\x53\xe4\x99\x16\x17\xc7\xa5\x7c\xf8\xc2\x32\x7f\xf8\xc2\x32\xdf\xce\x95\x28\x4b\xa9\xe7\xf3\x91\x5a\x69\xbc\xaf\xbd\x5b\x46\xb2\x5a\x5d\x6b\xad\x9f\x7f\xfe\x79\xf1\xd5\xaf\x7e\x95\xda\xf6\xd0\x92\x0b\x9e\x2e\x8a\xd0\xb9\x1c\x39\xb6\xf7\x86\x86\x4e\x0f\x9c\xc7\x45\xee\xa9\x8d\xe6\x74\x76\xe9\xae\xa1\xcf\x8f\xfa\x20\x4e\x2e\x27\x83\xd3\x1b\x27\x8e\x2f\xe5\xcd\xc9\x89\xc9\xa3\x3a\x98\x3c\x6e\xc5\xc3\xa5\x83\x20\xff\x9c\x6d\x6e\x80\x0b\x26\x0a\x55\x9a\xbb\xe7\x14\xe1\x12\xe7\xf8\x63\xca\x50\x27\x6f\xe4\x87\xc2\x62\xbe\x8e\xc6\xc8\x14\xeb\x43\x4d\x12\x57\x16\x37\x2c\xd6\x0b\xe7\xe3\x01\x8b\x75\xa1\x80\x09\x08\x2f\x2c\x83\x5b\x07\xa4\x9d\xaa\x01\x40\x5c\xbe\x7c\x59\xcc\x66\x33\x3d\x9f\xcf\xb5\xf9\x62\xa8\x01\x29\x82\xfc\xcd\xa1\x06\x2d\x23\x00\x18\x81\x86\x71\xae\xc4\xd6\xde\x59\xbe\xff\xf8\xdd\xc9\xd3\xcf\xbe\xb9\xf3\xab\x8f\x1c\x4f\x3e\x31\x5d\x65\x3f\x9b\x69\xb1\x2f\xb5\x90\x6d\x78\x18\x5b\x30\x63\x10\x99\x70\x8b\xff\x6d\xbd\x3b\x00\xcb\xb5\x4c\x22\x0c\x7f\x7c\x4f\xf8\x08\x26\x1f\x13\xf4\x97\x7e\xb0\xe5\x37\x80\x08\x2d\x5d\x51\x9d\x71\x7d\x68\xdd\xb1\x12\xcc\x2d\x17\x81\xf2\x3d\xeb\xb1\x15\x8c\x3e\x8c\x6c\xe3\x78\x01\xd0\xe1\x64\xce\x46\x31\x45\x05\x21\xeb\xef\x33\xea\xe9\x6e\xfb\xc0\x7e\x1d\x10\x30\xa8\x9f\xa1\xb3\x4b\x7a\xfa\x88\x0e\x40\xb6\xed\x2a\xac\xb1\xd0\xfb\xc6\x87\x34\x04\x1d\x1f\x46\x2e\x3e\xf7\xc6\xe0\x05\xe8\xf0\x42\x0b\x15\x5a\x5a\x6d\xff\x6d\xeb\xa5\x3b\x1e\x08\x6d\x34\x72\xed\x7a\x6b\x2c\xcf\x26\x47\xe0\xb5\x91\xd9\xf6\x69\xd7\x07\xd6\x18\x35\xe0\x82\xdb\xf7\x24\xac\x3f\xed\x18\x36\x6d\xac\x9b\x31\xd0\x2d\x61\x8a\x16\xf8\xb4\x2f\x18\x94\x65\x3b\xce\x84\xcd\xbf\xed\x5f\x7b\x5c\x50\x7d\x5a\xfe\x80\x8c\x72\x2b\x4a\x6c\x8d\x2a\xf1\xd0\x74\x95\x5d\xbb\x38\xcf\xf6\xb7\x56\x12\x56\xb9\x3e\x3d\xcb\xd5\x5c\x09\xd0\x04\x74\x6b\x04\x4e\x45\xa3\xbb\x36\x7b\x5e\x50\xd2\xe4\x9a\xfa\x04\xce\x57\xf8\x7c\x0c\x7e\xc6\xd1\x84\x1c\xb3\xab\x1c\xf7\x9c\xd3\x9d\x26\xea\x8f\xa8\x9d\xa7\xba\x50\x19\xd8\x47\xf8\xea\xc3\xf9\x52\x9f\x1c\x0e\xb4\xf8\xf6\x17\x99\x44\xfd\xa4\x8f\xde\xe8\xcd\x2d\x8d\x61\xfd\x24\x00\x28\x0e\xb8\x70\x28\xc7\xa5\x28\x1d\x34\xb4\x1c\x4d\xb1\x68\x0e\x3f\xa3\x95\xa7\x9d\x13\x0b\x9a\x38\x5d\x05\xd8\xfc\x31\xc8\xc0\xe0\x82\xb6\x03\x1d\x1c\x74\xe2\x50\xf4\xce\x0d\x32\xda\x51\x40\x68\xb8\xc1\x45\xe9\x25\x00\xe8\x4b\x97\x2e\x89\xc3\xc3\x43\x05\xc0\x7f\xe6\xdc\xfc\xcb\x9a\x7f\xed\x7e\x16\x09\x62\x3c\x29\xe5\x85\xab\xf7\x8b\x77\xbd\xe7\x60\xfa\xdc\x7b\xdf\xda\xfe\xc4\x43\xa7\xa3\x8f\x17\x95\x7c\x42\x80\x98\x50\x07\x61\x6b\x88\x0c\x0f\x71\x64\xee\x6d\x1b\xfc\x9b\x9d\x36\xfc\xf0\xb3\x56\x8c\x6e\xad\xa9\xed\x80\x80\x9c\x1e\x4a\x40\x14\x3a\x05\xd5\x36\xc2\x5d\x7e\xed\x28\x90\xdc\xde\x69\xa4\xa6\xa5\xdd\x8e\x44\xe3\xc8\x10\x01\x1b\x38\xaf\xbf\xbf\xa7\x6d\x46\x3b\x22\x60\x74\x40\x7c\x7a\x8e\xc3\x92\x21\xec\xbe\x80\xfe\xdb\x3c\xe6\xd3\xea\xd5\xb6\x8a\x20\x75\x20\xa7\xe3\x9a\xf6\x6a\x9d\x1c\xab\x46\x0f\xc8\xe0\x3a\xb7\x27\xcb\x42\xc7\x44\xa0\x82\xd8\xe1\xeb\xe6\xff\x78\x5f\x46\x17\x11\x69\x78\x03\x8a\xd8\xd0\x08\x0e\xee\xc3\x76\x7f\x0f\xfa\x1d\xa0\x06\x69\xe0\xd3\x6f\x0d\x18\xb1\x37\xc9\xea\x4e\x3f\x1c\x86\xd1\x4d\xab\xd7\xcd\x0e\x00\x48\x3f\x04\x54\xa8\xee\x46\x47\x8e\xbe\xfd\x94\x5a\x77\x2d\xc0\xcd\x85\x5e\x5b\x6b\xf3\xe9\xb5\xb0\x06\x92\xe9\xc7\xee\x86\xd7\x97\x6e\xdc\x35\x7b\xa2\xa0\x69\x23\xcb\xfb\x91\x86\xea\xa2\x99\x9d\x29\xec\xa2\x45\xed\xdc\xc9\x33\x2d\x2e\x4e\x4a\xf9\xc8\x85\xc5\xe8\xda\xc5\x79\x9e\x2d\x46\xea\x78\x31\x52\xab\x4a\xd6\x36\x4e\x83\xd6\x0d\x50\x69\xd4\xd6\xba\x89\xc2\xb4\x7b\x5e\xae\x5f\xbf\x2e\x8f\x8f\x8f\x5d\x8e\x3b\x26\x1f\x3f\x8b\x8d\x2e\x70\xfe\x8f\x2b\x3b\x24\x42\xe1\x2a\xab\xc9\x33\x6e\xc3\x2e\xf5\x27\x2e\xbf\x16\xd2\x8d\xfa\x52\x5a\xc6\xb7\x9c\xe3\x92\xcf\xd1\x71\x75\xa6\x7e\xd7\x3c\xe7\x74\xa7\x2f\xfe\xda\x10\x61\x05\x42\xfb\x40\xd6\x59\xcb\xdb\x64\x72\xe9\x3a\x54\xa7\x94\x72\xbe\x76\xf2\xe5\xd1\xb6\x33\x29\xf5\x53\x36\xb6\x0f\xcc\xe6\x5b\x74\xe2\xad\x79\x6e\xfe\x75\xe7\xb2\x80\xc8\xa5\x86\xc9\x74\x95\xed\x3c\x7a\x6f\x7c\xe3\xa9\x3b\xd3\x5f\x7c\xf8\x7e\xf1\xd1\xad\x95\x7c\x5f\xa6\xc5\x2e\xab\x89\xb6\xfe\xf4\xc0\x09\x67\x60\x39\x16\x22\x90\xd3\x13\x88\xc1\x45\x02\x7f\xd7\x9e\x11\xcc\xd9\x70\x37\xcf\x38\x39\xdc\x17\x40\xd6\xd7\x50\xba\xdf\x16\xbc\x6e\xfd\x43\xd9\x04\xb9\x72\xd5\x09\x80\x38\x56\xa4\x0b\xe6\x60\x01\x9f\x44\x7d\x6c\x89\x0c\x78\x13\x44\x7e\x4f\x6b\xab\xf5\x81\xeb\x37\xab\x8c\x86\x66\x39\xa7\x43\xaf\x66\x89\xa3\x05\x22\xad\x5c\x02\xa6\x30\x98\x44\x4c\xa9\xd4\xae\x5d\x50\x0b\x35\x07\xab\x58\x80\x0a\x3b\x6e\x0b\xd0\xe8\x16\xd8\xb5\x8e\x9c\x01\xb7\x58\x4e\x7f\x39\xb0\xd1\xca\x6a\xbb\x4e\x3e\x06\x39\x1a\x3a\x00\xd3\x45\x24\x34\xfa\x90\xc7\xfe\x69\x89\xfe\x1c\xec\x9f\x5d\x84\x0f\x9b\xa3\xdd\xad\x09\x00\xc1\xbf\x1d\x66\x97\x63\x7a\x5b\x03\xe0\x9f\xd4\xc0\xe3\xb4\xaf\x0b\x80\x16\x7a\x59\x4a\x7d\xeb\xee\xa4\xfc\xa7\x6f\x5f\x3b\xfd\xfb\xd7\xf6\xe7\xaf\x1c\x8f\xab\xa3\x4a\xea\x39\x08\xeb\xe0\x3a\xf3\xa3\x8d\x00\xc8\x36\x06\xf6\xbc\x84\x6c\x71\x8c\xdf\x0a\xd9\x5a\x8e\x1e\x3c\xcf\x7d\x7a\xc6\x96\x1d\xea\x6f\x63\xea\x9e\xd2\x0e\xa9\xf2\x31\xfd\x50\x7e\x5e\xfd\x32\x86\x88\x43\x3c\x14\xc9\x99\x6b\x0e\x39\xb9\x94\x08\xd1\x18\xba\x18\x44\xeb\x42\xdb\x29\x1d\x4b\x91\x2e\xa7\x2f\x57\x3f\x6c\x13\x29\x52\xa5\xeb\xaa\x98\x8e\x76\x18\x87\x74\x39\x04\x8a\x79\x5b\x79\x45\x51\x40\x55\x55\x1a\x81\x16\x89\x3e\x39\x34\xe7\xb3\xe4\xd0\x44\x5a\x84\x10\xb9\xa8\x7f\x3c\x6d\x6b\x7f\x36\x7a\xe8\x99\x3b\xd3\xf7\xff\xf4\x1b\xdb\xff\xfb\xd5\x93\xe2\xbf\x4f\xca\xec\xbd\x19\x88\x2d\xec\x04\xf1\x4b\xa0\x79\x13\x6d\xff\x76\xfe\xa6\xd5\x48\x00\x80\x59\x6b\xe7\xa0\x80\xf1\x53\xdd\x72\xbf\xed\x8c\x84\xc0\x65\x04\x74\x54\x8c\x83\xa5\x96\xb2\xbd\xec\x1c\x40\x67\x6e\xed\x5f\xdb\x15\x86\xb8\x71\x5a\x5d\x1d\xec\xaf\x42\xe8\x1e\x92\xee\xcd\x1e\x1d\xaf\x27\x04\x72\xb0\xb4\x0e\xb8\x36\xfd\x3a\xd0\x36\xe8\x3b\x61\x68\xdb\xbe\x17\x99\x01\xd1\xbe\x00\x5b\x83\x93\x78\x33\xfc\xdb\x34\x18\x2c\x58\x75\x30\x4e\x1c\x04\x58\xdf\xf2\xf2\x6b\x2d\xb6\xa2\xa4\x36\xf6\xb5\x5d\x99\x3e\x68\xe9\xfa\xb6\x55\x5b\xd8\xe3\xa5\x5e\x4e\x12\x96\x33\xaf\xc7\x60\xd3\xbe\xe4\x00\xb9\x76\x19\xd2\xd2\xa2\x1b\x47\x75\x30\xab\x01\x4a\x40\x96\xa8\x04\xea\x63\x81\x75\x13\xed\x9e\x1a\x21\xfa\x75\xea\xe6\x8b\xfd\xb9\x7e\x57\xd7\x4e\x27\x8d\x80\x92\x0d\x7e\x85\xd5\xbf\x1d\x28\x33\x32\xd1\x12\x17\x91\xd1\x8d\x15\x3c\x7e\xbb\xa8\xa2\x69\xcc\xfe\x27\xeb\xdd\xbc\x10\xa2\xfb\x02\x49\xa3\x76\xac\x71\x9e\xb0\x36\xbe\x77\x80\xad\x1b\xd7\x56\x9f\xa1\xb6\xa8\xfb\x04\x40\xd4\x5f\x1e\x5d\xda\x2a\xb3\x9b\x0f\xcd\x46\x0f\x4d\x57\xd9\xc9\xc9\xa4\x3a\x59\xe6\x6a\x51\xef\x7b\x11\xca\x34\x87\x89\xb8\x00\x6a\x5e\x66\xd9\x08\x27\xea\x33\x8c\x2a\x46\x1d\xce\xd6\xfb\xa2\x1d\x5c\x39\x9a\xb0\x4d\x8f\x4d\xd8\x96\x73\xbe\xcd\xe7\x97\x5c\x7a\x73\x3e\xd3\x55\x8e\xee\xc5\xf1\xf9\x56\x1f\x7d\x28\x6a\x85\xf9\x60\xf3\xe4\xf3\xb9\xae\xf2\x34\x09\x00\xd0\xe6\x24\x32\xac\xa0\x72\xfc\xf5\x5d\x03\xf8\x81\x43\x6c\x07\xbb\xf4\x48\x41\xd4\xbe\x64\xe8\x42\xb4\xbe\x28\x0e\x6d\x17\x0e\x3d\xfb\xda\xc9\x75\x1f\x2b\xb3\x95\xb7\x5c\x2e\x2d\x46\x68\x89\x48\x02\xb4\xe7\xb4\xe4\x4d\x99\x02\x00\x0a\xa9\x61\xf2\xe8\xbd\xf1\xd5\x67\xde\x9a\x7e\xe4\xd1\x7b\xe3\xff\x3e\x5d\x66\xcf\x65\x5a\xec\x51\xdf\x44\x9d\x87\x25\xa7\x45\x32\xc8\x19\xb5\x46\x97\x5b\x10\xb1\x0a\xb7\xb9\x14\x24\x19\x02\xa6\x14\xcb\x87\x73\x9f\x6d\x79\xec\xe8\xb1\xb3\x40\x06\x18\xf0\x35\x90\x59\x85\xca\x60\x39\xf6\xdf\x16\xfd\x58\xbc\x63\x6a\x43\xdb\xa0\xad\x93\x36\x4e\x13\x6c\x7d\xd1\x5b\x6f\x6f\x63\x2a\x70\xed\xd0\x39\x90\x1e\x18\x22\xff\xb7\x1c\x8d\x85\x3f\x2c\xae\x68\x3c\x8a\xd6\x3a\x0a\xbb\x88\xb4\xea\xa3\x6d\x30\xd7\xca\x12\x44\x5f\x32\x10\xda\x5b\x82\x85\x0c\xe0\xb0\x37\xde\x22\xd0\x05\xba\xfd\xe4\x1b\x03\x3f\xae\x71\xa8\x23\xc6\xe3\xd2\xd6\x4d\x23\x79\x0d\xe0\x13\x75\x7f\x70\x23\x1d\x3b\xf6\x5a\xbc\x35\x52\xf8\x29\x41\x41\x08\xe9\x2f\xb3\x71\x98\xab\x8b\xf5\x82\x41\x32\x31\x79\x0b\x86\x9a\x1b\x2d\x00\xac\x23\x07\x10\x31\x3d\x28\x52\xf7\xf4\xc3\xd2\x9c\x13\xb1\x03\xdd\x60\xc6\x89\x80\x4c\xc1\xfe\xee\x3c\xff\xf8\x7b\xde\x9e\x3e\x76\x71\x96\xff\xdd\xb7\xaf\xcd\xfe\xf9\x87\x97\xe6\xb7\x4e\x8b\x0a\x34\xc0\x1c\x95\xb6\x7e\xef\x88\xa4\x98\x88\x45\x8c\x8d\xe7\xec\x2c\x8e\x86\xc7\x46\x0b\x42\xd1\x05\x17\x1d\xa5\x8d\x89\x40\xe0\xf2\x2e\x3f\x11\x2a\x47\xe9\x63\x22\x4c\x98\x3e\x24\x93\x2b\xc3\xe9\x34\x38\x45\xf9\x88\x44\x81\x9b\x5e\x42\xda\x14\xbf\xd4\xd0\x1e\x8d\x72\x98\x44\x43\x7d\xa9\xcb\x43\x2e\x80\x12\xb5\x2c\x24\xd0\x2f\xaa\xbe\xf8\xe2\x8b\xad\x6e\x06\xac\x20\xe0\x62\x1d\xd9\x0f\x00\x45\x51\x8a\xe9\x7b\xdf\xda\x7e\xe2\x3d\x6f\x6f\x7d\xe2\xf2\xe9\xe8\xa3\x45\x29\x6f\x0a\x80\x02\x3b\xfb\xe4\x11\x41\x52\xcf\x58\xd2\x6b\x22\x03\xc3\xf2\x14\xde\xdc\x03\xf6\x79\x62\x9d\x7a\xfa\x30\xfa\x86\xea\x64\xf1\xea\x63\x0c\xb7\x6a\x9e\x0a\x78\x7c\x83\x33\x1f\x5f\xd7\x7b\x55\x40\x69\x00\xd0\xa2\x1e\x53\x4a\x68\xa5\x04\x94\xcd\x5f\x55\x49\x5d\x9a\x7f\x4a\xe8\x52\x09\x50\x5a\x80\xd2\xa0\x41\xd5\xed\xab\x94\xd0\x4a\x49\x50\xba\x19\x97\x02\x00\xa4\x06\x29\xb4\x90\xf5\xdf\xe6\x1a\x40\x66\x4a\xc8\x4c\x43\x9e\x29\x91\x67\x4a\xe4\x52\x8b\xfa\x39\x80\x94\x0d\xbd\x54\xf5\x41\x86\xa0\x41\xd2\xb7\x77\x7a\xed\xaa\x77\x4a\x17\x7b\x69\x63\x18\x05\x68\xa2\xc6\x73\x6a\x67\x6e\x2a\x0d\x98\x0b\xe1\xf1\x19\xae\x33\x2d\x56\xd3\x6b\x55\x4a\x78\xf3\x64\x5c\xfd\xd3\x2b\x0f\x9d\xfd\x9f\xdf\x7e\xf8\xf4\xeb\x07\x3b\xab\x23\xe8\x7f\x32\x0d\xd0\x8c\xb5\x81\x9f\x48\xff\xb8\xd2\x26\x96\x76\xce\x33\xfd\xb8\xfd\xf4\x5a\xf2\xcd\xdb\x78\x4a\xb4\x22\xb4\x36\x96\xc2\x6b\x5d\x99\x29\xfc\x7c\x6b\x95\xa9\x65\x39\x40\x83\x79\x85\x90\xe9\x10\x64\x0b\x00\x00\x7f\xf4\x47\x7f\x04\x7f\xf1\x17\x7f\x01\x00\x28\x22\xd0\xfc\x38\x22\x40\x7b\x84\x7f\xf7\x4b\xce\xcd\xdf\xfd\xd3\xd1\xde\xfb\xde\x9c\xbe\xff\xc6\xdd\xc9\x27\x2e\xce\xf3\x0f\x8f\x2a\x71\x55\x00\x14\x56\x44\xa0\xf7\x66\x6e\x27\xec\xa8\xe9\xa9\x9d\x98\x05\xf3\x26\x6e\x45\x15\x28\x7d\x6c\xaa\x65\xd7\x48\xc0\x02\x05\x2c\x68\xe9\x5e\xa3\x5d\x27\xf4\xf6\x2b\x86\x9d\x61\xb7\x69\xd7\xa5\x6f\xaf\x4e\xe8\x55\xdb\x55\x1e\x93\xf5\xde\xce\x05\xd8\xdb\x09\xf0\xeb\x37\xa3\xae\x6e\xff\x69\xd0\x0d\x28\x51\x42\x97\x4a\x42\x59\x09\xad\x2a\xa9\xcb\x32\xd3\xe5\x32\x53\xf3\x45\xa6\xe7\x8b\x5c\xcd\x97\xb9\x5a\xae\x32\xbd\x2c\x33\x5d\x2e\x32\x35\x5f\x66\x6a\xb9\xcc\x75\xb9\xcc\xf4\x72\x95\xa9\x06\xb4\xd4\x00\x45\x77\x60\xa5\xe5\xaf\xeb\x63\xde\x15\x8e\x58\x34\x60\x05\x04\x80\x14\xba\xb9\x07\x80\x4c\x09\x29\xb5\xc8\xa5\x06\x99\x2b\x91\xe7\x4a\xe6\xa3\x4a\xe4\xa3\x4a\xe6\x45\x25\x8a\xa2\x14\xc5\xa4\x94\xc5\xa8\x92\x93\x71\x29\x26\x45\x29\x8b\xa2\x92\x93\x51\x25\xf2\x5c\x89\x22\xd3\x90\xe7\x4a\xe4\x52\x89\x5c\x68\x21\x6b\x59\xa2\x96\x21\x34\x68\xb3\x2c\xa4\x51\xfb\xa1\x36\x36\xe1\x02\xe7\x86\x62\x14\x66\x10\xa2\x1f\x85\xc1\x7b\x52\xba\x50\x11\xd9\x0b\xd2\x6c\x40\x11\x34\x02\xd9\xcc\x91\x36\xcc\x22\x6c\x59\x16\xd8\x46\x7a\xf4\x3e\xe3\x47\x7a\xf7\xbe\x00\xd7\xf6\xc0\xc5\x23\x5c\x37\x8d\x20\x48\xe5\xed\x7d\x52\x35\x7d\xff\xf3\x74\x3b\xb5\xc0\x84\xce\x33\x1a\xa5\x01\x52\xc7\xb6\x2c\x8d\xec\x68\x00\x10\x32\x57\xfa\xda\xce\x22\x7b\xe1\x5d\xc7\xc5\x9d\x37\x76\x17\x6f\x1e\xec\xac\xcc\x59\x2f\xad\x3d\x6b\x7e\x26\x20\xb4\xd7\x24\x25\x2a\x12\x93\x42\x2f\x99\xf8\x9e\x7b\xc1\xa5\xd1\x14\x80\xbe\x5e\x98\x5f\xea\xaa\x42\x6c\x3d\x7d\xcf\xd6\x91\xe9\xe2\x47\xf3\x5d\xc1\x02\xea\x3b\x5d\x6d\xe9\x2a\xa7\x72\xe6\x21\x97\x62\x14\xf4\x55\x2a\x96\x77\x68\x59\x26\x46\xa7\x54\x59\xae\xb2\xb1\x60\xc6\x17\x7a\x73\xc9\x8e\xd5\xbb\x2d\xb3\xb7\xb7\x07\x47\x47\x47\xb0\xb5\xb5\xd5\xdb\x88\x8b\xa2\x2d\xe6\x5c\x96\xfa\x50\x39\x0d\x45\xa6\x44\xbd\x34\x74\x67\xfa\x91\x77\xdd\x2b\x7e\x7d\x67\x99\xbd\x3f\x57\x62\x0f\x40\xf4\x7f\x60\x13\x6f\x10\x64\x12\x76\xd4\xfc\x2e\x96\x8e\x4f\x07\x2e\x98\x2f\x75\x0c\x19\xd8\xc6\xd2\x0a\x8d\x23\x19\xb6\x85\x44\x0e\x02\x19\x52\x0c\x6a\x88\xb6\xe0\x36\xc9\x9d\xf1\x17\xa8\x2e\xda\x2a\x63\x1b\x5d\xbc\x81\xb4\x97\x04\x23\x93\x0b\xcb\x08\x47\x11\xda\x20\xe4\x94\x33\x25\x34\x28\xd9\x45\x48\x4a\xa9\x97\xa5\x54\xcb\x45\xae\xe7\x67\xa3\x6a\x36\x1f\xe9\xf9\x22\xaf\xe6\xf3\x5c\xcd\xcf\x46\xf5\xbf\xf9\xa8\x06\x27\x06\xac\x54\x42\x97\xba\xde\x54\x59\xea\x0e\xa0\x28\x55\x03\x13\xa5\x41\xab\xa6\x5d\x7b\x60\xdd\xf8\x60\x00\xa8\xc8\xb3\xac\x0e\xe8\x00\x00\x32\x4a\xc2\x5c\x6b\x00\x09\x42\x36\xc0\xa6\x8b\xca\xd4\xd7\xb9\xd4\x42\x66\x4a\xe4\x23\x25\xf2\x1a\xb4\xc8\x62\x5c\x8a\x62\xba\xcc\xa6\xd3\x55\x36\xd9\x5a\xc9\xe9\x64\x25\x27\x93\x52\x4e\xc7\xa5\x9c\x14\xa5\x2c\x72\x05\x45\xae\x64\x51\x47\x72\xa0\xe1\xdd\x6d\x5a\x35\xfb\x82\xec\x86\x35\x4e\x9d\x71\xb0\x68\x53\x30\xbb\xdf\x0a\x3b\xe2\x66\x6c\xb6\x5b\x53\xdb\x4d\xaa\x35\x50\xea\x30\x0e\x06\xae\x5d\xc7\xe2\x8d\xb7\xf5\xd2\x93\xe8\xe6\x09\x5d\x97\x69\x8a\xe2\x1a\x00\x34\xfb\x96\x5a\x5d\x70\x32\x6d\xd0\x7d\x49\x45\xeb\xdc\x91\xa2\x76\xb0\x5b\xc5\x6a\xb6\x0e\x0c\x22\x18\x22\x0c\x78\x83\xe6\x5c\x1c\xe8\xcd\x09\x8d\xeb\x84\xf6\x22\x99\xf6\x55\x00\xe5\x32\x57\x77\x0e\xb6\x57\x3f\x3a\x9e\x94\x33\xe8\x7e\xdc\x55\x61\x79\x38\x3d\xfe\xf8\xe3\xf2\xb5\xd7\x5e\x4b\x59\xd6\x00\x08\x3b\x4a\x5f\x59\x57\x9e\xcf\x51\xfb\xf2\x5d\xbe\x2c\xf4\xdc\xf5\x12\xec\xd3\x2b\x14\xcd\xe7\xf8\x0f\xf1\xa5\xdc\xbd\xe1\x25\xa1\x2f\x33\x14\x5d\xe2\xca\x59\xbe\x3a\x67\x1e\x1a\x86\x58\x40\xc8\xb9\xc7\x76\x3e\xf7\x6c\x68\xb8\x68\x48\x64\x67\x5d\xb9\xbe\xe5\x1c\xdc\x66\x5c\x87\x72\x13\x85\x96\xe1\xfa\x00\x00\x00\x7e\xf9\x97\x7f\x19\x1e\x7e\xf8\x61\xa9\xb5\x36\x13\xda\x7c\xee\x9c\xa3\x88\x8b\x39\x09\xb7\x90\x20\x8a\xc9\x4a\xee\x3c\x7e\x77\xf2\xd8\x7b\xde\x9e\xfe\xea\xc3\xf7\x47\x1f\xdb\x5a\x65\x4f\x4a\x0d\x3b\x02\x84\xc5\xbb\x35\x58\xc2\xb5\x23\xc3\x4e\x9d\x11\xed\x36\x7e\x62\xb3\x68\xbf\x7d\xe2\xdf\x8d\xb6\xb1\x05\x95\xd5\xf2\xec\x39\x10\x87\x56\x18\xa7\x10\xbb\x6c\xe9\xd3\x93\xd1\x61\x09\xee\xfc\x10\x9b\x25\x7a\xde\x62\x27\x62\xa0\x49\x19\x4b\xa6\xe8\xf8\x60\x90\xc5\xbd\xe1\x9a\x37\x5a\x00\x0d\x26\xea\x51\x49\x55\x96\x52\x2f\x57\x99\x5e\x2e\x73\x3d\x3f\xcb\xd5\xec\x6c\x54\xcd\x66\x85\x9a\xcd\x8a\x6a\x76\x5a\x54\xb3\xb3\x91\x9a\xcf\xf3\x6a\xbe\xca\xf4\xb2\x92\xba\xac\x04\x2c\x95\xac\x41\x4a\x25\x41\x69\xa1\xcb\x3a\x72\x02\x15\x00\xa8\x46\xba\x02\xd0\xf5\xb8\x33\x5f\x70\x68\xad\x00\x7d\xb9\x02\xcc\xfc\xc6\x11\x06\xec\x58\x84\x34\x7d\x66\x7d\xd5\x06\xd0\x8c\xe3\x0a\xda\x31\x6a\x18\xe1\x7b\x03\x6a\x46\x75\xb4\x46\xc8\x4c\x41\x9e\x69\xd1\x2e\x33\xe5\x4a\x14\x75\x94\x46\x16\xe3\x52\x4e\xb6\x97\x72\xba\xb3\xc8\xa7\xdb\xcb\x6c\x77\x6b\x25\x27\x93\x95\xdc\x29\x2a\x51\x8c\x2a\x59\xe4\x4a\xe4\x59\x03\x88\x84\x06\x49\x47\x42\x0b\x28\xac\x68\x84\x0d\x88\x0d\x7d\x7f\x8c\x22\x70\x84\xf8\x9a\xcf\xac\xfb\x40\xa2\x9f\xba\xaf\x75\x44\x3b\x86\x35\xb3\xe9\xb6\x3d\xc8\x4f\x77\x7a\xb5\x5a\x0a\x4e\x3b\x5c\x4d\x34\xca\xf0\x38\xb7\xf8\xe3\xb9\x29\x28\x4e\xee\xed\xb5\xc1\x91\x20\x0b\xdc\xbb\xd4\x10\xfd\x83\xfb\x3a\xd0\x07\x6a\x91\xab\xdb\xb7\x2e\xce\xff\xed\xfb\x97\xcf\xbe\x7f\x77\x5a\x2e\xa1\xf3\x47\x38\x82\x6c\x81\x98\x06\xb4\x98\xc4\x45\xbd\xb9\xe4\x72\xee\x3e\x1f\xe0\x7a\xeb\x8f\xe5\x1d\x02\x03\x31\xbe\x28\x25\x3a\x12\xa3\x63\xaa\x2f\x0c\x01\x24\x57\x1d\x63\xdb\xdb\xf5\x22\xef\xf3\xdb\x00\x80\xd0\xad\x83\xe1\x3a\xe1\x36\x1f\x7d\x0a\xd2\x8d\x2d\x3b\x94\x6e\x68\x72\x75\xa4\x8f\x2e\x76\x50\xf7\x74\xbf\x7a\xf5\x6a\xfb\xcc\x9c\xcf\x62\xf6\xb3\xb4\x11\x96\x06\xb8\xe4\x5a\x4c\x76\xe7\xf9\xde\xbb\x0f\xb7\x9e\xba\xf9\xce\xe4\x97\xaf\x9c\x14\x1f\x1d\x97\xe2\x86\x00\x98\x58\x67\x60\x34\xc9\xb2\x3b\x38\x84\xcd\x28\x86\xe9\xf1\x9b\xa8\xeb\x08\x74\x6b\x99\xa6\x7b\x65\xf4\xa4\xce\x98\xf3\xfc\x90\x0e\x0e\xa0\x42\x93\xb3\xbe\xa2\x1f\x9a\x17\xa8\x10\x17\x1d\xea\x87\xeb\xfb\x06\x9e\xd3\x00\x7f\xa2\x6b\x74\xd0\xe8\xa9\xd9\x63\x62\x40\xca\x7c\x54\x9d\x9c\x16\x6a\x76\x5a\x94\x27\x27\xe3\xea\x64\x56\xa8\xd9\xd9\x48\xcd\xe6\x79\x1d\x41\x29\xb3\x9a\x6e\x25\xf5\xb2\x94\x7a\xa9\xa4\x2e\x35\x40\x05\xf5\xfe\x15\xf3\x49\xa9\xb9\x56\xc8\x01\x28\x00\x50\xcd\x4b\xbe\xc9\xaf\xc7\x5a\x43\xe3\x02\x2d\xe6\xbe\xf7\xa5\x55\x03\xa4\x09\x1d\x05\x2f\xd2\xca\x17\xd6\xbd\xd4\x00\x52\x81\x96\x42\x0a\x09\xa0\x65\x99\x81\x6c\x5a\xa8\x76\x66\x1a\xa4\xd4\x30\x92\x5a\xe4\x99\xaa\x97\x90\x9a\x65\xa5\x62\x5c\xca\xc9\x64\x25\xa7\xd3\x55\x36\xdd\x5e\x64\xd3\xed\xa5\xdc\x99\xae\xb2\xe9\x74\x29\xa7\x93\x52\x4e\x47\x95\x2c\x32\x25\x8a\xac\x06\x34\xd2\x00\xf4\xee\x33\xe3\x7e\xdf\x5a\x11\x8a\x36\xd2\x06\x1d\xf2\x84\xee\xde\x8c\xc5\x6e\x15\x84\x44\x48\x4c\x79\xe8\x3a\xbd\x03\xa9\x60\x8d\x35\x1b\xf8\xda\x60\xa6\x8d\xa1\xd0\x73\x59\x1a\x25\xf0\x67\xdb\x86\x8b\x05\x40\x88\x1e\x06\xbb\xb5\xd1\x26\x8c\x43\x9a\x33\x62\x7a\x9f\x9c\x53\x99\x16\x7d\x37\xaa\x7b\x5f\x3f\xb5\x20\xa6\x2e\xb1\xcc\xd4\xd1\x9b\xbb\xcb\xaf\xfe\xe7\xd5\xd9\xbf\xbf\xb5\xbb\x38\x5a\x4a\x65\x00\x56\xfb\x13\x25\xe8\x63\x03\x25\x84\x80\x97\x5e\x7a\x49\xa2\x7d\x2e\x9c\x33\xf7\x81\x9a\x14\x3f\xe6\x8a\xa0\x84\xe8\x63\xe5\xd1\x08\x8b\x4f\x1f\x6e\x65\xc0\xb5\x5a\x10\xf2\xb7\xbe\xe0\x84\x4f\xb6\xef\xda\x45\x3b\x84\x77\x2c\x58\x84\xfe\x72\x81\x9d\x7c\xa8\x2a\x26\xc5\x38\xe5\x50\x83\x84\x74\x8a\x95\x1d\x3b\x58\x63\x13\xd7\xc8\x5c\xb4\x24\x75\x70\x99\x32\x12\x00\xd4\x6f\xfc\xc6\x6f\xc8\xeb\xd7\xaf\x1b\x43\x60\x96\x88\xda\x37\x12\xf3\x5b\x43\x42\x88\x42\x6b\x9d\x17\x95\x9c\x5e\x3e\x1d\x5d\xbd\x79\xb8\xf5\xec\xcd\xc3\xc9\xaf\xee\x9d\xe5\x1f\x2e\x2a\xf9\x18\xd4\x6f\xb5\x00\xd0\x19\x1a\x76\x4d\xa8\xf7\x12\xe5\x83\x04\xe8\x31\x31\x62\xdd\x82\x38\x8a\x34\x60\xcb\x4e\xd9\x10\x27\xc0\xad\xac\xd8\x25\x75\x6b\xc0\x0d\x51\xef\xd3\x6b\x73\x8d\xbc\x08\x7d\x93\x04\xcb\xcc\x3b\xaa\x88\xce\x6f\xa1\x0b\xfd\xf5\x2d\xfe\x30\x94\x69\x31\x6d\xd3\x29\xd0\x50\x22\x90\xb2\xcc\xd4\xf2\x6c\xa4\x66\xb3\x42\x9d\x9c\x16\xd5\xc9\xfd\x71\x75\x72\x32\xae\x4e\xce\x8a\xea\x64\x9e\xab\xf9\x22\x57\xf3\x55\xa6\xe7\xa5\xac\x23\x2a\xba\x8e\x9c\x94\x0d\x20\x29\x1b\x1d\x4b\x00\x50\x02\x84\x02\xf4\x45\x06\x02\x2d\xed\x3f\x04\x4c\x54\x53\x37\x6c\x04\x71\x1e\x6d\x03\x85\xae\x7b\x51\x17\xe8\x40\xb5\x33\xf2\x82\x36\x8f\x9b\x3c\x0c\xc0\x25\x90\x31\x8e\xf6\x6c\x49\x25\x40\x2a\xd0\x79\x99\x81\x5c\x80\x96\xa7\xf5\x52\xb7\x14\x0a\x46\xb9\x16\xf9\xa8\x8e\xc8\x4c\x8a\x4a\x4c\x26\x2b\x39\x99\xae\xb2\x9d\xed\x65\x36\xdd\x59\x64\xbb\x35\xa0\xc9\x76\xb6\x56\x72\xa7\xa8\x64\x31\xaa\x44\x0d\x66\x50\x44\xa6\x73\xea\xfd\xbd\x21\xdc\xf8\xa0\xd3\x47\x50\x5a\x32\x18\x71\x9e\x46\xf7\x1a\x65\x38\xc7\x10\x40\x3b\xc2\xf0\x98\x17\x88\x21\x8d\xc0\xd0\x68\xa4\x70\xe9\xc1\xec\x71\xa1\x9f\x89\x5b\xd7\xe8\xf3\xfa\x7e\x14\xb2\x6f\x39\x34\x2e\x0b\x02\x56\x52\xcd\xdf\xd9\x5e\x7d\xe7\xbb\x57\x66\x5f\x7b\x63\x77\x79\x67\x91\x6b\xd5\xec\x17\x92\x74\xdc\x08\x21\x14\x8e\xf2\x35\x4b\x45\xe6\x31\x05\x17\xd4\x16\x0f\x7d\x41\x0e\x45\x38\x62\x7c\x85\x2f\x02\x8f\x75\x08\x05\x07\x52\x7c\x52\x4c\x04\xc9\x47\xeb\xab\x17\xa7\x53\x4c\x04\x67\x28\x3f\x6f\x1b\x63\xe0\xe2\x2a\x94\x1a\x71\x09\xd1\xa4\x94\x77\x0d\x94\x21\x11\x97\x18\x70\x14\x42\xce\xbe\x67\x34\xb9\xe4\xe1\xfa\xf8\xde\x16\x14\x00\xc0\x8d\x1b\x37\x70\x9e\x99\xd4\xed\x19\x2d\x66\xf3\x2d\x68\x28\xb6\x56\xd9\xce\xc3\x27\xc5\x23\x4f\x1c\x4c\x3e\x70\xfd\x68\xf2\xab\xbb\x8b\xfc\x03\x99\x12\x57\xad\xb7\xfb\x36\xec\x2c\x78\xeb\xd8\xcb\x13\x76\xb6\x79\xa3\x34\xc6\x1d\x19\xc7\x9e\x11\xb3\xde\xe0\x0c\x99\x23\xc0\xdd\xd9\x42\x67\x34\xa5\x7d\xde\xa0\x0f\x81\x7e\x03\xc6\xec\x2f\xc0\x6f\x86\x3d\x5b\x2a\xec\xaa\xf5\x3f\xf5\x44\xda\x59\xc6\xba\x71\x18\xcc\x33\x6e\x8f\x0f\xae\x87\x6e\x32\xca\x7a\xb3\xec\x72\x95\xa9\xe5\x22\x57\xf3\xd3\xa2\x32\x20\xe5\xf8\x74\x5c\x5f\x9f\x8d\x9a\xa8\xca\xa8\x9a\x2d\xea\x65\x9f\x25\x08\x58\x41\x3d\x16\xda\x1f\xa6\x6b\xa2\x26\x25\xca\xef\x81\x15\xe8\xc6\x57\x0f\xbc\xe0\x08\x0c\xf4\xe7\xb9\x33\xd2\x42\xee\x7b\x1b\x53\xc9\x12\xa6\x49\x56\xa4\x85\x82\x16\xf4\xcf\xca\x43\x20\xc6\xfa\xac\x1f\xfd\x38\x28\x98\x48\xa3\x96\x20\x97\x5a\xe5\xab\x4c\xc8\xd3\x51\x95\x0b\x21\xa4\xd0\x30\xca\x94\x28\x8a\x52\x4c\xb6\x56\xd9\x74\xcb\x00\x99\x45\xb6\x7b\x61\x91\xed\x5c\x58\x64\xbb\x0d\x90\x99\x16\xa5\x9c\xe4\x4a\x14\xb9\xf9\xf2\x09\x2f\x71\x98\x3e\x44\x51\x17\x6b\x73\xab\x00\x70\xec\xc1\x6d\x89\x08\x98\xeb\x1e\x19\x52\xad\x3b\xe7\x6e\xa2\x24\xac\x40\xb0\x3e\x53\xb6\xa2\x27\x2d\x89\x06\x0c\x61\xb0\x5e\x9a\x8c\x7f\x3b\x8a\xc8\x9f\xb8\x8c\x0f\xbc\x03\xe0\x0f\xdf\xb3\xa2\xa8\xd6\xbe\x19\x3b\x4b\xd7\xda\xa9\xe3\x49\xf5\xfa\xf7\x2f\xcf\xbe\xfa\xc3\xbd\xc5\xad\xf9\x48\xb5\x67\x3a\xa0\x76\xea\x45\xf5\x4c\x42\x4b\x45\x31\x8e\x78\x68\x94\x85\x8b\x66\xb8\x64\xf8\x5e\xec\x39\x1f\x40\xf3\x52\x80\x50\x2c\x8d\xcf\xf7\xf9\xf8\xad\x1b\xa8\x70\xc9\x8f\x8d\xd6\x44\xaf\xd0\x70\x11\x17\x5f\xc8\x27\xe4\xf0\x53\x97\x86\x42\xe0\x82\x22\xea\x14\xfe\x1c\xf8\x01\x86\xce\x55\x7e\x08\x12\xf6\x0d\x06\x7a\xed\xa2\x87\xf7\xbc\xe7\x3d\xf0\xbd\xef\x7d\x0f\x5e\x7c\xf1\x45\xfa\x06\x62\x8c\x79\xde\xe4\x15\x50\x6f\xc2\x9d\x6c\x2f\xe5\xce\x23\xc7\xe3\x1b\x4f\x1c\x6c\xfd\xe2\xa3\xf7\xc6\xbf\xb2\xbd\xcc\xde\x9f\x69\xb1\x6b\x87\x9e\xcd\x1b\x13\xca\x74\xae\xa3\x40\x6b\x28\xbb\xdf\x4e\xe9\x2c\x64\x6f\x73\x2a\xb9\xed\x45\x5f\x98\xb7\x56\x6c\x0c\x31\xc6\xe8\x0c\xaa\xfd\x0c\xcb\xea\x01\xa7\x1e\x2a\xa1\x85\x8c\x4c\x6d\x01\x2b\x0c\xc6\x6c\xe0\xe3\x58\x42\xea\xa9\xd2\x7f\x62\xbe\xf2\x29\x85\xf9\xaa\x47\x2f\x67\xa3\xea\xe4\x74\x5c\x1d\xdf\x2f\xaa\xe3\xfb\x93\xf2\xf8\xfe\xa4\x3a\x3e\x29\xaa\x93\x59\x0d\x58\xe6\xab\x4c\xcf\x75\x0d\x52\x4a\xb0\x7f\x3d\x17\xff\xad\xa3\x2a\xcd\x09\xa3\x80\xa2\x2e\xcd\x9b\xa9\x02\x00\x73\x0d\x0d\xad\x05\x66\x30\x60\xc1\x91\x17\x93\x47\xfe\x76\xf5\xb4\x97\x91\x70\x3e\x77\x8d\xc1\x8b\x35\xde\xcd\x78\x46\x20\xa7\x17\x81\xa1\xff\xf0\x27\xfe\x4d\xd9\x76\x1e\x40\x37\x1f\xf2\x86\x5f\x0d\x70\x04\xe4\x65\xa6\xf3\x32\xd3\xf9\x6c\xac\x24\x68\xc8\x05\xc0\x68\x5c\xca\xe9\x74\x25\x9b\x25\xa5\x6c\x77\x77\x9e\xef\x5e\x58\x64\xbb\x3b\x8b\x6c\x77\xda\x00\x99\x51\x25\x8a\x91\x12\x85\x54\xf5\x06\x76\x7b\x23\x2e\xae\x3b\x8d\x26\xd8\xcb\x30\xf5\x03\x12\xa1\x82\x6e\xcc\x61\xa0\x6f\x00\xb9\x6e\x90\x84\xf9\xdb\xce\x3b\x02\x06\xf0\x98\x6c\xf3\xda\xb5\xac\x0e\x4e\x0b\x24\xcc\x06\xfe\xd0\xcd\x6f\x82\x8f\x0c\xaf\x7a\xee\x99\xf9\x0e\xf5\x57\x5c\x8d\x40\xa1\x11\xa8\xe9\x14\x47\xc0\x0b\x47\x2a\x3b\x9d\x67\x45\x75\xf0\x83\xfd\xb3\xaf\xff\xe0\xa1\xf9\x7f\xcd\x8a\x6a\xa6\x85\x75\x5e\x0b\x3b\xc6\x4c\x42\xcb\x44\xd4\xdf\x50\x10\x43\x53\x4c\x54\x7f\x88\xc3\xa5\xe5\x52\xfd\x60\xe8\x05\x96\xca\x89\xa5\x89\x01\x09\xb1\xa0\x2e\x76\x25\x82\xab\x9b\xd1\x25\x46\x77\x8e\x17\xed\xd7\x96\x27\xfd\x1c\xda\xe5\x54\x43\x1d\x41\x3b\x2b\x36\x42\xe2\xea\xe4\xd4\x86\x72\x35\x58\x2c\x7a\x74\xe9\x1f\x13\x79\xc2\x6d\xe6\x93\xe5\x03\x30\x00\x00\x70\xf5\xea\x55\xf9\xc2\x0b\x2f\xc0\xdf\xfe\xed\xdf\x2a\xf3\x9b\x43\x80\x8c\x7d\x53\xc6\x6c\xc0\xcd\x85\x10\x05\x68\x28\xb6\x97\xd9\xee\x8d\xbb\xe3\x27\x9e\x3c\x98\xfe\xb7\x6b\xc7\xc5\xaf\x4c\x4a\xf9\x4c\xa6\xc5\x14\x1b\x37\xeb\xba\x75\xd8\xdd\x81\x5d\x3d\x22\x80\xce\xb1\xd3\xd0\x05\x2a\x67\x15\x31\x51\x15\xf4\xa9\xb4\x6f\x23\xab\x09\x1d\xd3\xd4\x1d\xd8\xca\x84\xb0\xdb\xb0\x37\x2d\x67\x7e\x1d\xd7\x06\x3b\x38\xf2\x21\x18\x7d\xf0\xdb\xa2\xed\x94\x90\x43\x6e\xc9\x88\x61\x06\xdc\xbe\xcd\x3e\x15\xa1\xcb\x7a\x8f\x8a\x9a\xcd\x8a\xea\xe4\x64\x5c\x1d\x1f\x8f\xcb\xa3\x7b\x93\xf2\xe8\xfe\xa4\x3a\x3e\xa9\xa3\x2b\x33\x0e\xa8\x34\xfb\x52\x30\x70\x71\x82\x17\xb3\x87\xa5\x01\x14\x06\xd0\x60\x07\x60\x45\x5a\x9a\x65\x1d\x0b\xa4\x90\xe5\x1f\xe3\x34\x54\xaf\xcf\xd0\x1b\x30\x8e\xb2\x30\x74\xb8\xed\xa8\x2d\x31\xcf\x5c\x91\x17\xf6\x1a\x1f\xa8\x08\x68\xf3\x26\x8e\xc2\x40\xb7\xbf\x8b\x1e\x07\xd0\x3e\xd7\xa0\x73\x10\x22\x3f\xcb\xab\xfb\xf3\x91\x2a\x0e\xa7\xe5\x48\x2a\xc8\xeb\x8d\xbe\xd9\xce\x4e\x13\x85\xd9\x9d\xe7\x7b\xbb\xf3\x7c\xef\xc2\x22\xdb\xdd\x5e\xc8\xdd\x71\x25\x27\xb9\x92\xb9\x54\x90\xe3\x78\x21\x8e\x02\xda\xd1\xb9\xb6\x35\x3a\x6a\x6b\x2c\xf5\x01\x10\x7a\x68\xd3\x63\xf4\x63\xfe\x58\xcb\x3e\xe8\x40\x3c\xc0\x63\x96\xf6\x8b\xb0\xe8\x7b\x11\x48\x66\x99\xa9\x5d\xe2\x65\xeb\xd6\x94\xd5\x06\x4c\x09\xab\x21\x5a\x35\x05\xfa\x4d\x28\xd0\xb0\xcc\xf5\xec\x47\x17\x17\xdf\xfa\xee\xd5\xb3\x6f\x1e\x8f\xcb\x63\x25\xac\xb1\x6f\xef\xb7\xaa\x53\xac\xbd\xda\x21\x2d\x00\x00\x20\x00\x49\x44\x41\x54\xdf\x08\x81\x84\x98\x17\x4e\xae\x1c\x95\xe9\x92\xe1\x03\x2b\x9c\xbe\x31\x2f\xd1\x3e\x70\x16\x0b\x32\x5c\x7e\xd1\x45\xef\xd2\x3d\x86\x36\xa6\xdf\x62\xdb\xd6\xd5\xaf\xed\x3d\x9d\x3e\xb1\x88\x71\x28\x42\x0b\x55\x3e\xa6\x6c\x6a\x54\x67\x5d\x1e\xbe\x01\xe7\x1b\x80\x29\x3c\xdb\xe7\x2f\xbd\xf4\x92\x44\x6f\xfb\xf8\x0d\xd5\x84\xc8\x8d\x41\x2e\x04\x88\xc9\x74\x29\x77\x9f\x3c\xd8\x7a\xea\x3d\x07\xd3\x5f\xbb\x7c\x32\xfa\x5f\xc6\xa5\x7c\x42\x80\x28\x3a\x67\x0b\xc4\xd4\x82\x75\xc7\xfd\xc5\xc9\x7a\x86\xc2\xc3\x7d\xc7\xcd\xe4\x91\xb7\x38\x9a\x5c\xa1\xf3\x5e\xb4\xdd\x21\xc7\x28\x2b\x7c\x85\x48\x88\xbc\xff\x49\x76\x17\x20\xb7\xf6\xd9\x20\x36\xb4\x1d\x70\x59\x0d\xa0\x2a\xa9\x55\x29\xf5\xf2\x6c\xa4\x66\x27\xe3\xea\xf8\x68\xab\x3c\x3c\xda\x5a\x1d\x1c\x6d\x95\x47\xcd\x7e\x95\xe3\xf9\x48\xcd\x35\xc0\x42\x43\x0d\x4e\x9a\x3d\x29\x14\xa8\x2c\xa1\x03\x25\x2c\x78\x31\x11\x16\x64\xe8\x7b\xfb\x59\x10\xd0\xa0\x20\x06\x03\x14\xf3\xbc\xfd\x6b\x80\x0c\xe9\x17\x6b\xec\x72\x9f\x82\x77\xcb\x09\x9a\x03\x2d\x26\x49\x44\x2b\x51\x59\x49\xca\xe0\x68\x4b\x7b\x6f\xc6\x3f\xa1\xc9\x3d\x7f\xe9\x75\x3b\x6f\xc8\x33\x73\x3f\xca\x14\x14\x93\x55\x36\xbd\xb0\xc8\x76\x76\xe7\xf9\xee\xfe\x2c\xdf\xbf\x34\xcb\x2f\xef\x2e\xf2\xbd\xed\x65\xb6\x5b\x94\x62\x92\x57\x32\x97\x75\xf4\xa6\x03\x31\x68\xa9\x85\x1d\x82\x64\x79\xc9\xf8\xf8\xde\xb8\xc6\x4b\x41\xa4\x3c\x40\x07\x56\xcc\x62\x90\x3d\xd7\x50\x1f\x20\x30\xc3\xcd\x6b\x6a\x1b\x28\x0d\x5e\xda\x01\x10\x8d\x5e\xcc\xcf\x44\x98\xf9\xd2\xd2\xf7\x2b\x68\xf6\x76\x95\x52\xcf\xef\x5c\x58\xbe\xf2\x7f\x5f\xbf\xff\x7f\xfd\xf0\xd2\xe2\x7b\x95\xd0\x47\x20\xe0\x18\x00\x8e\x01\xe0\xa4\xf9\x37\x83\xfa\xf4\x5c\x7c\x00\x5d\x3b\x46\xef\xdd\xbb\x07\x9f\xfb\xdc\xe7\x62\x5e\x6a\x87\xa4\x98\x17\xf5\x75\xf9\xc3\x06\x65\xf8\xa2\x43\xeb\xf2\xf2\xe5\x0f\x95\x13\xd2\x97\x03\x66\x4e\x59\x34\xe2\x12\xeb\x80\x37\xa1\x38\xf7\xcc\xd7\x48\x2e\xc0\xe1\x43\x92\xf4\xd9\x10\x80\x81\x13\x87\x7c\x25\x43\x87\x9f\x73\xfc\xad\x8e\xd9\xda\xda\x92\x67\x67\x67\xca\x9c\xcf\x62\x0c\x3b\x32\xea\x39\x7a\x93\x2c\xb4\xd6\x85\x04\x31\x99\xac\xe4\xce\x4f\xbf\xb9\xfd\xec\x93\x07\xd3\x4f\xec\x9d\xe5\x2f\x14\x95\x7c\x04\x80\x6c\xc2\x6d\x93\xb0\x2c\x68\x77\xd0\x7b\xdf\xa8\x01\x98\xcc\x2e\xc4\x5c\xeb\x55\xe7\xe1\xdf\x83\x69\xdf\x00\x19\x99\x3e\xd0\xd2\xd4\xb3\x8b\x64\xd0\xb7\xc2\x06\x71\xd0\x75\xf9\xda\x90\x37\x7a\xd1\x07\xe0\xb8\x47\xe0\x85\xbe\x11\x1b\x03\x2c\x04\xb0\xce\x85\xb2\x35\xbb\x11\xcc\x57\x40\x67\xa3\xea\xe4\x78\x5c\x1d\xdd\x9d\x96\x07\x87\xd3\xd5\xc1\xdd\xe9\xea\xf0\xde\x56\x75\x7c\x5a\x54\x27\xab\x4c\x2f\xb5\xd6\x0b\xa8\x23\x1e\xcb\x06\x90\x2c\xa1\x01\x2c\x5a\xeb\x65\x03\x28\xb0\xa1\x36\x4b\x3d\x06\xbc\xb4\xd7\x74\xef\x0a\xf4\xc1\x8a\x89\xae\x98\x67\xa6\x9d\xdb\xb9\x85\x96\x8a\xe8\x5e\x02\x0c\x5e\x7a\x79\xa6\xbf\x7c\x91\x17\x0c\x5e\x28\x88\x41\xf4\xec\x3d\x74\x73\x88\x03\x2d\x38\xe2\x68\xfd\x43\x80\x06\xe7\x59\xc0\xc5\x00\x7e\x13\x85\x31\xd7\x5a\x6b\x73\x40\x63\x0e\x00\x79\x25\x21\x3f\x29\xca\x7b\xa7\xe3\xaa\x78\xeb\xc2\x72\x54\x54\x62\xb2\x3b\xcf\x77\x77\xcf\xf2\xdd\xfd\xb3\xfc\xf2\xfe\x69\x7e\xf9\xe2\xd9\x68\xff\xc2\x22\xdb\x1b\x97\x72\x9a\x37\x67\xd2\xd4\xd1\x09\xd1\x8e\x4d\x0c\x1c\xea\x3a\xa2\x01\x24\xd8\x4b\x76\xbc\x75\x91\x0b\x94\x89\x18\xdb\x73\xad\x3b\x4b\xc5\xf5\x52\x82\x53\xff\xc5\x06\x81\x20\x33\x57\xda\x8b\x0e\x28\x01\xa0\xb8\xa3\x89\xba\x76\x64\xf6\x9b\x0d\xd4\xf3\xa5\x12\x50\x1e\x6d\x95\x77\xbe\x7b\xe5\xec\xab\xb7\xf6\xe6\x3f\xac\x04\xcc\x40\xc0\x1c\xa0\xfd\x67\xc6\x7f\x6f\x7c\x37\x22\x15\x00\x70\xa0\x65\x9d\x97\x64\x9a\x52\x5e\x86\x53\x78\xc7\xbc\xec\xc6\x80\x26\x1a\xad\xa7\xfe\x8d\xe3\x1f\x03\x3c\x86\x06\x13\x42\x7e\x77\x68\x7b\x4a\x47\x9e\x55\xce\xe7\x5a\xb8\x82\x2e\x94\x34\xb4\x21\x5c\x00\x63\xa8\x3e\x43\x68\x43\xf2\x5c\x0d\x18\x7a\xee\xe3\xd3\xcb\xc7\x4b\x43\x00\x2d\x68\xc1\xa1\xf2\x42\xd7\xbf\xec\x5c\x00\xd4\x7b\x5a\x3e\xf8\xc3\xdd\x5f\x78\xfc\x70\xf2\x3b\x17\x16\xd9\x07\x73\x25\xf7\x85\x1b\x40\xf5\x92\xb5\x87\x03\x3b\x2b\xc7\x86\x8e\x36\xda\xa2\x7b\xb6\xa9\x29\x86\xc2\xe8\xd6\x1b\x26\xde\x2b\xd2\x0f\xb5\xd7\x20\xa1\x2e\xd0\x8f\x86\x18\x03\xab\x1b\x0c\x65\xf6\x02\x18\x7a\x72\xca\x28\x53\x27\xf3\x36\xdc\xbd\x21\xa2\x43\xe6\xd8\xe8\x01\xa2\x6f\x33\xba\xe7\x4a\x80\x5a\xe4\x6a\x76\x77\xba\xba\xf3\xce\xb4\xbc\xf3\xf6\xce\xf2\xce\xe1\xb4\x3c\x3a\x9e\x94\xc7\x67\xa3\x6a\x56\x66\x30\xd7\x5a\xaf\x1a\xd0\xb1\x84\xce\x28\x2f\xa1\xee\xef\x16\xc0\x70\xe0\x04\xec\x65\x22\xd0\xdd\x67\xcd\x25\x07\x52\xf0\x3f\x12\x31\x31\xa0\x03\x47\x5f\x00\xd1\x01\x7e\x1e\xca\xb3\xdb\x88\x1f\x3b\xbe\x68\x0c\x90\xb1\x89\x40\x79\xfb\xcc\x15\x69\x04\x00\x20\x73\xa1\x07\x68\xf0\x3e\x18\x4d\x7e\xf6\xa2\x79\x6e\xef\x0b\x63\x7e\x12\x03\xec\x08\x4c\xd1\xc8\x29\x00\x60\x3c\x2a\xc5\x64\x7b\x99\x4d\x2f\xce\xb3\xbd\xcb\x27\xa3\xcb\x57\x4f\x8a\xab\x0f\xcd\x46\xd7\x76\x16\xf9\xde\xb8\x14\x93\x7e\x23\x01\x6a\x17\x68\xc7\x1d\x9e\x05\xbd\x39\x63\xe6\x41\x83\xb4\xcd\x7c\x33\x80\xa6\xae\x2f\x40\x4d\x89\x5e\x3c\xf0\xb8\xb6\xc6\x78\x03\x0e\x41\x74\x60\xdf\xd0\xa3\x25\x1c\x1c\x55\xe9\xe8\x1b\x9a\x26\xa4\xa2\x35\x74\x3c\x05\x7e\xe1\xe9\x64\x99\xf3\x69\xda\x4f\xc9\xeb\x83\xf9\xd4\xfd\x71\x75\xf0\xdd\xab\xb3\x7f\xfb\xfa\xa3\xf7\xbf\x74\x52\x54\x77\x84\x10\x26\xd2\x72\x0c\x00\x27\x5a\xeb\x99\x10\x62\xa6\xeb\x5f\x88\xc6\x73\xa6\x8d\x14\xbe\xfc\xf2\xcb\xea\xea\xd5\xab\xf2\xce\x9d\x3b\x2e\x5b\xbb\x29\x87\xec\xa2\x05\xf0\xfb\x01\x1f\x7d\x48\x7e\x8a\x1f\xf3\xd1\x87\xe4\x0c\xd1\xc5\x77\xef\x02\x53\x29\xf4\xa9\xfa\x4b\x80\x7a\x8f\x8b\x2b\x29\xe6\x9a\x0a\xe2\x14\x0c\x29\x13\xc3\x97\x26\xaa\x7c\x08\x30\xb8\x64\xa4\x74\x38\x47\xe7\x92\x11\x93\xd7\x6b\x3b\x13\x69\x01\x00\xcb\xe0\x6b\xfb\x87\x12\xbb\xa5\xa1\x7a\x4f\xcb\xe4\xca\xe9\x68\xef\x17\x5e\xdb\xfd\xd8\xbb\x8e\xc7\xff\xc7\xd6\x4a\x3e\x2b\xb5\x98\x06\x82\x1b\xbd\x84\xdf\xcc\x2c\x67\xc3\x81\x16\xe8\x00\x85\x1d\x15\xc1\xc5\x44\x8f\x16\x15\xb0\x68\x8c\x18\x43\xab\x1b\xc3\x49\x7d\xa4\xc0\xe5\xf0\x5b\xa6\xad\x4c\x3f\x1f\xc9\x32\x9b\x0a\xbb\x88\x8a\x60\xe9\x01\x30\xe0\xea\x40\x94\x16\x02\x94\xd0\x6a\x91\xab\xf9\xf1\xb8\x3c\x7c\x7b\x67\x75\xfb\x8d\x8b\x8b\xdb\x07\x3b\xe5\xc1\xfd\xa2\x3c\x59\x8c\xd4\xec\xff\x65\xee\x5d\x9f\xe4\x38\x8e\x7b\xd1\x5f\xf5\xf4\xf4\xcc\xce\x3e\xb0\xbb\x58\x2c\x16\x20\x00\x82\x24\x44\x91\x12\x45\x49\x04\xa4\x63\xcb\x3a\xb6\x1e\x47\xb6\xac\x7b\x64\xcb\xd2\xb5\xef\xf5\xe3\x3a\x42\x61\x51\xf7\xf3\xfd\x77\x40\x2b\xec\x70\xf8\x11\x76\x84\x3f\x39\xec\x90\xc3\xef\x63\xfb\xf8\x04\x25\x50\x12\x5f\x22\x40\x80\x78\x10\x00\x81\xc5\x62\xb1\xd8\x9d\x9d\x67\x4f\xd7\xfd\xd0\x5d\x3d\xd9\xd9\x59\xd5\xd5\xb3\x2b\x1d\x17\x62\x31\xdd\xd5\x59\x59\xd9\xd5\x55\x59\xbf\xca\xca\xaa\x4a\x14\x86\xc8\xc0\x49\x36\x05\x44\xc1\x4a\x01\xb8\x64\xca\xb9\x34\x0d\x44\xe3\x34\x59\xe6\x6c\x9e\x83\x00\x14\x3e\x0d\x84\xa9\x35\x05\xec\x79\xf6\x5e\x85\xe5\xcd\x36\x25\xc3\xa7\x88\x48\xb9\xe8\xc2\x46\x60\xdc\xea\x62\x4b\x47\x64\xa2\x21\x20\xf1\x85\x81\x0b\x05\x32\xc4\x8a\x13\xb0\xb8\x1c\xb8\x64\x32\x99\xeb\x80\x5d\x53\x2b\x8c\x01\x27\x00\x9b\x36\x22\xd6\x1a\x0a\x68\x22\x73\x9f\x59\x6f\xa2\x71\x88\x68\x27\x8c\xa3\x9d\x4e\xbc\x75\xe7\xc8\xe8\x76\x67\xd4\xef\x1c\x19\x84\xcb\xc7\xba\xcd\xb5\xe3\x7b\xd1\xc6\xd1\xfd\x68\x63\x69\xd8\x58\x0e\x27\xaa\x3d\xb5\x1e\x52\xe0\xa1\x08\x8c\x00\xbb\x22\xf5\x0e\xd3\xfa\x3e\x1d\x2c\xf0\x05\xf7\xe5\xf6\xa6\x49\x9d\x35\x96\xca\x42\x0e\xd4\x72\x8a\xb4\x5e\x17\xc0\x0f\xe5\x9a\x8f\x4a\x0c\x10\x51\xe6\x12\x45\xdb\x0b\x72\xb0\x32\xb5\xf8\xa0\xc0\xb3\x17\x4d\x76\x6e\xae\xf6\xdf\x7c\xe7\x78\xef\xf5\xfd\x56\xb2\xad\xa0\x06\x48\xa7\x84\xcc\xb4\xd0\x80\x58\x21\x4b\x96\x17\x5a\x7f\x18\x68\xe1\xa1\x54\x9f\x05\x1a\x17\xbd\x09\x52\xe7\x4a\x07\xd7\x2e\x3e\x55\xf4\x75\x07\xd1\x75\xfb\xc5\xaa\x30\x8b\x51\xc1\xd5\xe7\xd7\xc5\x08\xb3\x00\x2f\x91\xae\x6a\x1f\x97\x3a\xa1\x4e\x01\x02\xe5\x0a\xe2\xe2\x31\x0b\x88\xf0\xe5\x63\x0b\xb6\x0f\xe7\x53\xf9\x78\xa5\x15\xe9\xe9\xf4\x10\x90\x76\x10\x98\x8e\x26\x73\x9f\x16\xa5\x54\x7a\xb2\x73\x92\x9e\xec\xfc\xd2\xed\xc5\xff\xe3\xf8\x5e\xf4\x2b\xed\x71\xf0\xb4\x02\xca\xa3\x3d\x1e\x2c\x56\x14\x17\xd8\xa1\x49\xca\x74\x2c\x86\x10\x2b\xe9\xde\xc2\xbc\xc0\xdf\x03\x79\x59\x5e\xa3\x1c\x4f\xe6\xdc\x53\x60\x56\xa4\x12\xf9\x14\xcc\xdb\x40\xa2\x34\xe2\x86\x1e\x75\x5b\x93\x9d\x87\x9d\xf1\xbd\xfb\x8b\xa3\x7b\x9b\x8b\xa3\xcd\xdd\xf6\x64\xa7\x1f\x4d\x7a\x63\xa5\x07\x3a\x05\x2c\x23\xa4\x80\xc5\x00\x12\x0a\x54\xa4\x5f\xee\x68\xcb\x57\x08\x51\x6b\x4a\xbe\x42\x88\xc5\x9b\xc0\xf7\x5c\x29\xb5\x09\x63\x39\x01\xa6\x96\x14\xc1\x1a\x33\x2d\x06\x61\xaa\x88\x4e\x2f\xf1\x40\xf9\x33\x5e\x05\x2b\x0a\xe1\xeb\x1a\x54\xf0\x78\xb0\xf8\xc0\xf1\x5b\x8a\x23\x56\x96\x1c\xc0\x90\xa9\xa5\x90\x3c\x97\x7c\x60\x0a\x67\x7d\x91\xf8\x28\x0e\x74\xb4\xd7\x9e\xec\xed\xb7\x26\x3b\x0f\x16\xc6\x9b\xd7\x57\x07\x37\x96\x07\xe1\xd2\xb1\x6e\xb4\x7e\xf2\x71\x74\x66\xb5\xd7\x5c\x9f\x1b\x07\x0b\x8d\x44\x85\x8a\x03\x06\x5b\x41\xb2\x36\x51\x68\x7f\xfc\x1b\x11\x5e\xc5\x36\x3a\x65\xc2\xeb\xb7\x12\x6e\x0a\x83\x0f\x9a\xc6\x76\x4d\x88\x69\xde\xd2\xb5\x06\x30\x08\x93\xee\x07\x4b\xa3\xab\x57\xd7\xfa\x6f\x3e\x9a\x1b\x3f\x40\x0a\x54\xa8\x2f\xcb\x00\xa4\xed\x08\x3e\x5a\xb6\x60\x1b\xd1\xd7\xb1\xb8\xd8\xe8\xab\x3a\x66\x7e\x4d\xef\x7d\xf3\x73\x81\x2c\x9b\xdc\xbe\x71\xbe\x41\xca\xa7\x8e\x71\xc0\x87\x9f\x2d\x1c\x44\xee\x54\x27\x79\x66\x5e\xd7\xdc\x64\xee\x81\x7a\x42\xd6\x31\x37\x99\xc0\xe3\x6d\xf7\x52\x5e\xe6\xf9\xac\x66\x2b\x9f\x60\x4d\xc3\x41\x0b\x33\x7b\x53\xd0\xd2\x6e\xc6\xaa\x73\x7a\xa7\x75\xf2\x63\x1f\x2c\x7c\x69\x63\x37\xfa\x5a\x2b\x3b\xd9\x59\x71\x27\x90\xda\xc1\x06\x07\x2a\x52\x39\x46\xd9\x36\x45\xa6\x2c\x34\x55\x52\xf8\xf0\xd0\xd9\xd0\x56\x12\x89\xa6\x9f\x5a\x8b\xca\x39\x6a\x00\x71\x90\xc4\xfd\x66\xd2\xdd\x99\x8b\xb7\x36\x17\x47\xf7\x36\x17\xc6\x9b\x8f\xe6\xc6\xdb\xbd\x68\xb2\x3b\x0c\xf5\x60\x12\xe8\xbe\x06\x46\x1a\x7a\x84\x74\xb4\x18\x6b\xad\x47\x00\x72\x4b\x0a\x31\x79\x97\x56\x0a\x11\x7f\x95\x7c\x25\x90\x26\xfb\xb2\x90\x7b\x73\x0d\x10\x2b\x0a\x9d\x0e\xca\x42\x42\xc0\x43\x22\x01\x09\xd7\xd4\x0f\x05\x16\x2c\x8d\xb9\x37\x79\x05\xec\xda\xc8\x43\xad\x31\x41\x26\x43\xe0\xaa\x1f\xb6\x40\xa6\x7e\x7c\x9e\x15\x9c\xd8\x4d\x9c\x70\x4d\xa7\x95\xc2\x8c\x17\x07\x2c\x1c\xbc\x14\x2c\x2f\x6c\x3a\x69\x0a\x62\x34\x22\x00\xed\x40\x23\x6a\x68\xd5\x6a\xc5\xc1\xc2\xe2\xa0\xb1\x74\xb4\xd7\x5c\x3b\xb1\xdb\xda\x58\xeb\x36\x4f\x2e\x0d\x1b\xcb\x51\x1c\xb4\x83\xec\x90\xc8\xf4\x65\xb2\xba\xa8\x40\xa6\x3d\xa7\x06\xc0\x6c\xb6\x67\x3a\xfd\xc2\xb7\xe3\xcd\xd9\x90\x69\x1e\x32\x85\x93\xbe\xa3\xb1\xc4\x4c\x83\xab\xed\x18\x8b\x09\xa7\x2b\xd3\x16\x0d\x95\xc5\xb6\x3e\x9d\xae\x1a\x87\xc9\xe0\xde\xe2\xe8\xbd\xb7\x8f\xef\xbf\xfa\xde\x5a\xff\xc7\xa3\x86\xde\x86\xc2\xae\xd6\x7a\x57\x29\x45\x9d\x71\x7b\x28\x5a\x26\x0b\xa7\x42\x6b\xad\xf1\xca\x2b\xaf\x24\x8b\x8b\x8b\xc1\xde\xde\x9e\xcb\x3a\xe2\x1b\xea\x4e\xcb\xb8\xd2\xb8\xf8\xfb\x4c\x27\xb9\xe2\x5c\xd3\x53\xae\x7c\x79\x1c\x84\x78\x57\xfa\xaa\x81\xb9\x0f\x98\xb1\x95\x9f\x4d\x9e\x3a\xfd\x2f\x00\x24\xca\x43\xd0\x59\x32\x98\x35\x54\x59\x31\x66\x31\x35\xf9\xf2\xf4\x49\x3f\xab\x0c\x85\xf0\xf5\xaf\x7f\x3d\x58\x5b\x5b\x03\xed\x04\xd8\x1c\xbd\x59\xee\x1c\x02\x68\xb7\xc7\xc1\xc2\xe9\x47\xad\x33\xcf\x6f\xce\x7f\xf1\xc4\xe3\xe8\x2b\xad\x38\x38\xa7\x80\xd0\xb2\x95\x1b\x80\xa9\xf2\xf3\xc5\x24\x39\xa9\x94\x46\x88\x73\x82\x88\xc2\x33\xbb\x10\x54\x51\x56\x9d\xe0\x2c\x83\x17\x62\x45\x29\x38\x1e\x97\x15\x6c\x9e\xa2\xa4\x78\x53\xf5\x3f\x6e\xe8\x41\xb7\x35\xd9\xd9\x5c\x18\xdd\xbb\xb7\x38\xba\xf7\x70\x7e\xbc\x95\xae\x06\x9a\x74\x47\x0d\xbd\x9f\x28\x8c\x34\xf4\x00\x99\x49\x9b\xce\xc7\x53\x6b\x8b\x26\x0e\xb8\x96\xbf\xdc\x9a\x62\xf1\x59\x01\x50\xda\xa6\x9f\x5b\x3d\x0a\xf5\xce\x80\x16\xa0\x08\x3c\xd8\x75\x42\xe9\x2b\xc0\x4a\x79\xc5\x97\x90\x46\xb2\xb4\x70\x0b\x8b\xc5\x1a\xe3\x0a\x2e\xe0\x92\x3f\x67\xf2\x15\xac\x2d\xa4\x5d\x51\xeb\x4b\x61\x3a\x89\xfd\x15\x2c\x31\x98\x82\x19\x3e\x7d\xc4\x7f\xdb\xda\x38\xf8\x6a\x44\x0a\x88\x82\x44\xcd\xb7\x26\xaa\xdd\x19\x35\x96\x96\xfb\xe1\xea\x7a\x37\x5a\x5f\xdf\x6b\x6e\x2c\xf7\x9b\x6b\x9d\x71\xb0\x10\x4e\x54\x14\xd0\x1a\x9c\x35\x54\x05\xfa\xad\x80\xd4\xaa\x51\x9e\x92\x05\x48\x5b\xa0\x60\x87\x58\x6c\xf8\xf3\xe9\x14\x12\xa6\x56\xc5\x29\xf0\x15\x2c\x3a\xc5\x7c\x35\xf1\x56\xcf\xa5\xb2\x81\x28\x00\xb1\xd2\xf1\xc3\xf9\xf1\xed\x2b\xeb\xfb\xdf\xbf\x72\xac\xff\xc6\x5e\x6b\xb2\x89\xe9\x0a\x22\xb3\x8a\x88\x5a\x5d\x06\x9a\xf8\x72\x81\x58\x3e\xc8\xde\x2d\xc0\xec\x7d\x95\xaf\xde\xf6\xed\xbc\x25\x3e\x75\xfb\x06\x5b\x67\x7e\x10\xc0\x70\x10\x5a\xc9\xe2\xe9\x92\x05\xc2\xb3\x2a\x7a\x29\xcd\x4c\xc1\xa6\x4d\xaa\x10\xe7\x41\x80\x83\xab\x80\xea\x14\xb2\x0b\xc1\xf9\xc8\x50\xa7\xf2\xd2\x50\x95\xbf\xf5\x7d\x4f\x9f\x3e\x8d\x4f\x7e\xf2\x93\xd8\xd8\xd8\x28\x3c\xa3\x53\x44\x28\x2a\xc6\x68\x7e\xdc\x58\x3a\xf3\xa8\xfd\xf4\xb3\x0f\x3a\x9f\x3f\xb1\x1b\xfd\x62\x6b\x1c\x3c\x1d\xa4\x0e\xba\x95\x18\x43\x52\x7c\x32\x8c\x98\x9e\x8b\xcc\xed\x11\x32\x40\x29\x4f\xbb\x54\x61\x24\x1b\x90\x28\xcb\xc6\x73\x98\xd5\x26\x54\x95\x57\xba\xda\x61\x14\x26\x83\xbd\xd6\x64\xf7\xfe\xe2\xe8\xf6\xbd\xc5\xe1\xdd\xed\xf9\x78\x7b\xaf\x35\xd9\x19\x86\x49\xcf\x58\x57\xa0\xf2\x11\xe1\x08\x99\x92\x35\xf7\x06\xc4\xa0\xe8\xa7\x42\xe7\xea\xad\x2b\x83\xd8\x14\x0f\x5d\xb2\x0c\x4c\xad\x27\x85\x38\xc0\x0e\x2c\x08\x2f\xab\xc3\xac\x19\xc1\x02\xc0\xcb\x2f\xbf\x1c\x00\xc0\x2b\xaf\xbc\x92\xd0\x6b\x00\x38\x77\xee\x5c\x00\x00\x57\xaf\x5e\xcd\xef\xaf\x5e\xbd\x9a\x48\xf1\x36\x3a\x13\xe7\x0a\xd4\xea\xe8\x11\x4a\xb4\x82\xd5\xa5\x74\x6d\xac\x35\x04\xbc\x18\x9a\x12\x80\xa1\xbf\xba\xb8\x1f\x8c\xe4\x03\x63\xac\x31\xe6\x3a\x52\x4a\xb5\xa1\x11\x05\x1a\x51\x73\xa2\xe6\xe7\xc6\x8d\x85\xa5\x41\xb8\x7a\xb4\x17\xae\x1d\xdf\x8b\xd6\xd7\xf6\x9b\x1b\x0b\x83\x70\xa9\x99\xa8\xa2\x15\x86\xbe\x13\x58\xdd\xb7\x8c\x12\x9c\x56\x4b\x8d\xe2\xd9\x43\x15\xc1\xb7\x1d\x4b\xe9\x40\x64\x4c\xa0\x93\xc7\xed\x78\xf3\xda\x5a\xff\xf5\x2b\xeb\xbd\x1f\x6e\xcd\x8f\xdf\x4f\x82\x12\x68\xe9\x02\x85\x55\x45\x25\x4b\x0b\x80\xe4\xe2\xc5\x8b\xae\x7a\x34\xeb\xc0\xb1\xae\x95\x40\xba\x77\xf5\x3b\x3e\x96\x94\x83\xa6\x9b\x75\x30\x3d\x0b\xb8\x82\x07\x9d\x2b\x9f\x83\xc4\x5b\x83\x54\x47\x0f\x8d\xb9\x90\x56\x02\x28\xae\x0f\xe6\xfb\xac\xea\xa3\xfb\xc8\x36\x6b\x70\xc9\x51\xfa\xf0\x64\x9f\x16\x69\x55\x84\x71\x08\x8c\x14\x54\x7b\x61\xd8\x58\x3a\xbd\xd3\x3a\xf7\xa1\x07\x9d\x5f\xd8\xd8\x8b\xbe\xd0\x1e\x07\xe7\xe8\x1e\x2d\x85\x8f\xc7\x7c\x34\x44\xe5\xe3\x69\x4d\x11\x83\x64\x75\x29\x80\x91\x22\x98\x01\xe0\x04\x40\x75\xc3\x74\x14\x29\x4c\x77\x08\xbc\x4b\xa3\x46\x12\x1f\x07\x7a\x34\x6c\x26\xbd\xc7\xed\x78\xfb\xc1\xc2\x78\xf3\xfe\xc2\xe8\xde\xc3\x85\xf1\xe6\x6e\x6b\xb2\x33\x6e\x24\xfb\x89\xca\x96\x68\x2a\x48\x96\x95\xfc\x1a\xd9\xf4\x10\x05\x2e\x64\x0a\xa8\x60\x5d\x01\x4a\xbb\xd7\x52\xeb\x0a\x58\x5c\x6e\x25\x11\xac\x20\x25\x6b\x0b\xb7\x6c\x98\x51\xea\xb7\xbf\xfd\xed\xe0\xd6\xad\x5b\xf8\xee\x77\xbf\x5b\x59\xbf\x3f\xf6\xb1\x8f\x05\x00\xf0\xc6\x1b\x6f\xf8\x8e\xf6\x7c\xdb\x5c\x1e\xf7\xb1\x8f\x7d\x2c\x78\xe3\x8d\x37\x12\xfa\x6b\x88\xe8\xfd\x1b\x6f\xbc\x91\xd0\x03\xf5\xcc\x8a\x3b\xc7\xf4\x93\x04\x7e\x0a\x71\xac\xad\x89\xd7\x28\x9f\x4e\x5c\x9a\x46\x22\x40\x45\x02\x30\xed\x2c\xbe\x8d\xec\x18\x0e\x00\xed\x46\xa2\x5a\x73\x71\xb0\xb0\x34\x68\xac\x1e\xdd\x6f\xae\x1d\xdf\x6b\x6d\x1c\xeb\x36\x37\x96\x06\x8d\xe5\x68\x12\x74\x82\xec\xbc\x24\x5e\xbf\x8b\x96\x0e\x14\x1b\x16\x38\x50\x49\x37\x85\xe4\xbe\x32\x3c\x14\x2c\x3c\x0c\x21\x49\xb3\xce\xd3\xe9\x1f\x3d\x6d\xc7\x46\x3e\xa1\x8d\xf5\x9a\x93\x9d\x1b\xab\x83\x37\xdf\x39\xbe\xff\xc3\x7b\x4b\xa3\x6b\xa3\x20\xd9\xc9\xa6\x86\x0c\x70\x31\xd3\x43\x3d\x36\xc5\x9a\x03\x7a\xad\x75\x62\x00\x34\x04\x1d\x6a\x89\x73\x85\xc3\xb0\xb8\xb8\xac\x0c\x55\xf2\xf9\xb6\x1f\x97\x3c\x9c\x9f\x4b\x16\xe9\x99\x4f\x3e\x55\xf1\x34\x5f\xdb\xb5\x8d\x9f\x6f\x99\xf0\x20\xf6\xf5\xbc\x9e\x1e\xb4\x13\x97\x42\x1d\x8b\x4b\x5d\x1e\x75\xcc\x58\xbe\xc1\x56\xc0\xd2\x87\xa2\x41\xaa\xf0\x05\xb9\xcd\xa8\xd6\x32\xea\x9b\x2a\x43\x8d\xf6\xd2\xb0\xb1\x7c\xe6\x51\xfb\xdc\x33\x0f\xe6\x3e\xbf\xb1\x17\x7d\xae\x15\x4f\x2d\x2d\x75\x42\xa5\xaf\x41\x01\xf0\xb8\xa7\x6b\x78\xbc\x6d\x4e\xdc\x23\xab\x32\x2f\x32\x27\x5f\xc5\x8f\x4e\x6b\x55\x8d\x2a\x09\x60\x49\xc6\x0d\x3d\xea\x45\x93\xee\xce\x5c\xbc\xbd\x35\x3f\xde\xdc\x5c\x18\xdd\xdb\x9e\x9f\x02\x16\x4c\xad\x27\x03\x1b\x58\x21\xbe\x2b\xe6\xda\xac\x14\x4a\xf4\x74\x53\x39\x0a\x58\x8c\xd5\x84\x9e\x21\x94\x83\x12\x3a\x1d\x04\x4c\x57\x51\x48\x16\x14\xfa\x2d\x2f\x5e\xbc\x98\xbc\xfc\xf2\xcb\x81\x51\xf0\x9f\xfe\xf4\xa7\x03\x00\x78\xf5\xd5\x57\x13\x7a\x4d\x8a\xe2\x20\x23\x36\x5e\xf7\xa5\x36\x50\x05\x62\xea\xb4\x61\x6b\xf8\xdc\xe7\x3e\x17\xfc\xf3\x3f\xff\x73\xa1\x4d\x49\xf5\x5b\x17\x97\x5b\xf3\x3c\x01\x7f\x4b\xcc\x74\xf7\x5d\xe6\xd8\x8b\xac\xcd\x1a\x8b\x8b\xf4\x97\x5b\x61\x80\x48\x69\xb4\x5b\x71\x30\x7f\xa4\x1f\x2e\xaf\xed\x37\x37\x8e\xef\x45\x1b\xc7\xba\xcd\x8d\xc5\x74\x49\x75\xa7\x91\xa8\xd0\xac\x1d\xf2\x69\x7f\xb9\xe5\xc5\x36\x2d\x2a\xf0\xa8\xdd\x66\xa7\xd8\xc9\x99\x81\x06\x30\x6a\x24\x83\xbb\x47\x86\x57\xde\x3e\xde\xfb\xfe\xfb\x2b\x83\xcb\x83\x66\xb2\x9d\xf9\xb4\xf0\x4d\xe6\xe8\xd2\x67\x3e\x85\x9a\x00\xa5\x29\x22\xdf\x70\x58\x23\xfd\x2a\xe0\xe2\xc3\x6f\x96\xbe\xf4\x20\x69\x0e\xc3\x22\x73\x10\x79\x7c\x74\x87\x2f\xef\x4a\xdd\xe0\xaa\xbf\xb3\xa0\xcf\x2a\x5e\xd2\xfd\x61\x15\x4e\x9d\xf8\xba\xa1\xae\x55\xa8\x14\xc8\xa8\xb1\xb4\xac\x13\x04\xb4\x28\x8d\xf6\xe2\xa0\xb1\x7c\xf6\xd1\xdc\x73\xcf\x6c\xcd\x7d\x7e\x7d\xaf\xf9\xf3\xed\x74\x37\xdc\x7c\x05\x98\x8f\x45\xc5\xcb\xc7\x45\x93\xad\xfb\xc9\x7c\x38\x9f\x2b\x37\xfc\xc0\xe6\xd4\x95\x43\x69\xb2\x6c\x08\x6d\x79\x9a\x29\xa5\x29\xee\xc9\x62\x05\x38\xa0\xa0\x45\xf6\x01\xa0\x21\x21\x80\xe5\x51\xea\x70\x7b\x77\x73\x61\xea\xc3\x32\x09\xd0\xd7\x5a\x0f\x94\x52\x03\xa2\x4c\xcd\xa6\x58\x12\x58\xa1\xbf\x25\x47\x5b\x14\x2d\x2c\x20\xf1\x00\x51\xcc\x6c\x3a\x08\x00\x0a\x20\x86\x02\x18\x32\xfa\x04\x00\xfc\xc2\x2f\xfc\x42\xf0\x2f\xff\xf2\x2f\x39\x60\xb1\x00\x14\x9b\xa2\xf5\xb1\x98\xd8\x68\x24\xd0\xe2\x1a\x59\xb9\x00\x8f\x0b\xd4\x58\x65\x59\x58\x58\x08\xba\xdd\x6e\xa9\x3c\x4e\x9f\x3e\x8d\x3f\xfe\xe3\x3f\x4e\xb8\x75\x86\xf9\xd8\x70\xb0\x15\xb0\xeb\x1c\xbc\x10\x4b\x4c\x61\x59\xb5\xf9\x65\xd3\x48\x74\x33\xbb\x12\x68\xa1\xe0\x25\xb3\xa6\x46\x61\x82\xf9\x23\xfd\x70\xf5\x78\x37\xda\x38\xbe\x17\x9d\x5c\xeb\x36\xd7\x97\x06\xe1\x6a\x3b\x0e\x72\x00\x03\x6d\x9c\x73\x69\x1b\x4a\x2f\x4c\xfb\x04\x4c\x5b\xd5\x59\xfb\x2c\xef\x6f\xc4\xdb\x12\xbd\x2a\x9e\x2d\x84\x69\xdb\xcf\x07\x12\xba\x9c\x57\x6a\x76\x29\xe8\x88\x58\xe9\x78\x6b\x61\x74\xeb\xc7\xc7\x7b\xaf\x5e\x3b\xda\x7f\xab\xdb\x9e\x6c\x62\x3a\x35\xb4\x8b\x14\xac\x74\xd5\x74\xbf\x16\x33\x45\x94\xa0\xe8\xef\x55\xaa\xef\xa8\xa7\x7f\xab\xfa\x96\x2a\x40\x5d\xc5\xc3\xd5\xbe\xaa\x3a\x63\x5b\xff\xe9\x3b\xb8\xb7\xe5\xe7\xfb\x0e\xd2\x80\x9b\xf3\xb4\xc9\x2e\xd1\xbb\xde\x81\xcb\xcc\xe5\x72\x0d\x64\xaa\xbe\x77\x5e\xa7\xab\x94\x9c\xeb\x65\x7c\x80\x41\xdd\xca\xe2\xcb\xcf\xa7\xa2\xcc\x82\x8e\x5d\x8a\x99\x3e\x77\x16\xee\xf1\xe3\xc7\xf1\x99\xcf\x7c\x06\x6b\x6b\x6b\x00\xac\x96\x96\x5c\xd9\x19\xd0\xf2\xd4\xc3\xb9\xe7\xce\x3d\x9c\xfb\xe2\xb1\x6e\xf4\xb9\x56\x1c\x9c\x51\x9e\xcb\xd6\x9d\x73\xde\x34\x9e\x81\x0d\x9b\x3f\x89\xcb\xbf\xa5\xf4\xcc\x28\x4b\xc6\xbc\xcc\x83\x3b\x22\x4a\xa3\x65\xbb\x7c\xd2\x73\x89\x2e\x81\x4e\xe2\x86\x8e\x7b\xcd\xc9\xee\xa3\x4e\x0a\x58\x3e\x58\x1c\xdd\x7d\xb0\x30\xde\xec\x45\x93\x6e\x02\xdd\x47\x06\x50\x18\x58\xc9\x41\x0b\xfb\xa3\x9b\xc8\x89\xce\xb6\x80\xb8\xb5\x3e\x05\x2b\x26\xce\xbc\x7f\x69\xd9\xe7\xc5\x8b\x17\x93\x6f\x7d\xeb\x5b\xc1\xef\xff\xfe\xef\x27\x00\xf0\xe5\x2f\x7f\x39\x00\x80\xef\x7e\xf7\xbb\xc9\xe9\xd3\xa7\x83\xf7\xdf\x7f\xdf\xd7\x8a\x61\x53\x2c\x3e\xa3\xc8\x3a\xa3\xcb\x83\x0c\x68\x6c\xe1\xc0\x7c\xbe\xfc\xe5\x2f\x07\x66\x8a\x8c\x1d\xa3\x21\xe5\x93\x5f\x13\xc0\x62\xe2\x28\xa0\x29\x80\x18\x5d\x5e\x9d\x54\x9a\x42\x22\x7f\x39\x70\x01\xd0\x36\x40\x26\x48\x30\xb7\xdc\x0f\x57\xd7\xf7\xa2\x8d\x13\x7b\xd1\xc9\x63\xdd\x68\x63\x69\xd0\x58\x6d\xc5\x8d\x4e\x23\x41\x18\x40\xf2\x67\x42\x3e\x2a\xc9\x41\x3c\x78\x9b\xe1\x91\x16\x47\xdf\x9c\x37\x6b\xd7\xc6\x9a\x69\xb1\x84\x4e\xbd\xe2\x52\x6b\xe6\x6e\x3b\xde\xbc\xbc\xde\xfb\xfe\x3b\xc7\x7b\xaf\xef\xcc\xc5\x77\x34\xdb\xce\x5f\xa7\x9b\xcc\x75\x31\x6d\x63\x92\xa5\x25\x71\x58\x5a\xea\xea\xfa\xba\x7a\xdf\x05\xac\xeb\xc8\x72\x90\xe0\xcb\xb7\xce\xc0\xbf\x4e\x3f\x58\x95\x27\x6a\xe4\xeb\x92\xa5\x2a\xef\x4a\xde\xa6\x43\x34\x2f\x46\x1b\x2c\x8d\x97\x84\xad\x03\x3c\x7c\x14\x5f\x55\x21\xf0\xbc\x5d\xa3\xa7\x84\x5d\xd7\x41\xa8\xfc\x7d\xa5\xb4\x3c\x8f\x12\x22\x5d\x59\x59\x09\xee\xdf\xbf\x9f\x1c\x3b\x76\xcc\x76\xc2\x73\x01\xb4\x40\xa3\x3d\x3f\x0c\x96\x9e\x79\x38\xf7\xdc\x87\x1e\x74\x7e\xf9\xe8\x7e\xf3\xe7\xa3\x49\x70\x4a\x31\xde\x2e\x23\x0a\x8f\xb7\xd2\xb1\x07\x4a\xba\x16\xc0\x81\xca\xfe\x37\x7a\x33\x3d\x39\x3a\x7d\x90\x2b\x56\xa6\xe5\xca\x32\xd1\x91\xa0\x2c\x21\xdd\x77\x85\x2a\x48\x55\x78\x2e\x01\x18\x8d\x04\xc0\x24\x40\xdc\xcf\x00\xcb\xfd\xc5\xd1\xed\xbb\x4b\xc3\xdb\x9b\x8b\xa3\xad\x7e\x33\x79\xac\x33\xff\x15\x05\x35\x62\x96\x16\xc9\xca\x92\x9b\xb2\xf5\x74\xb5\x50\x01\xa8\x90\xdf\xd2\xce\xb5\xd4\xa1\x16\x40\x09\xa4\x50\x7f\x14\x20\x5d\x6d\x06\x00\x9b\x9b\x9b\x40\x56\xdf\xbe\xfb\xdd\xef\xe6\x3c\x32\xd0\x62\xab\xcb\xbc\x4e\xf3\xfa\x2d\xb5\x5b\x57\x9b\x93\xda\x9a\xd4\x5e\x6d\x8a\xdf\xb7\x8d\xf1\x20\xf1\x71\xc9\x2a\x76\x3e\x06\xb4\x7c\xfd\xeb\x5f\x0f\xa4\xce\x30\x73\x0a\xce\xe3\x99\x95\x2b\xc9\xda\xab\x59\xee\x5d\xe0\x9d\xc5\xc5\x98\xb6\x61\xf3\x3b\xca\x7e\x73\xa7\xdd\xcc\xda\x12\x21\xed\xac\x8d\xe5\x65\x80\x14\xc8\xb4\x93\x00\x83\x87\x9d\x71\xff\x51\x27\xde\xbe\xbf\x34\xba\xbb\xb1\xdb\x3a\x79\x62\x37\x3a\x35\x05\x30\x41\xbb\x01\x84\x65\x1f\x2f\x52\x97\x94\xa5\x9d\x91\x79\x58\x6d\x96\x5c\x67\x0d\x3b\x6f\x3b\x79\x63\x52\x45\x3e\xc6\xf2\x42\xda\x31\x95\x01\x6a\xba\x33\xef\xb0\x99\x74\x6f\x1f\x19\x5d\x79\x6f\xad\xff\xce\x6e\x3b\xbe\xaf\x55\x61\xd5\x50\xcf\xb4\x33\x10\xc7\x75\xb3\x8a\x48\xdb\xf7\x6e\x91\xea\xb3\x0d\x68\xd8\x00\xb4\xc4\xab\xaa\xfe\xdb\x3a\x56\xa9\xff\xa9\xea\x17\x5c\xef\x23\xb5\x01\x57\x7f\x4b\xf9\xbb\xfa\x21\x5b\xfb\x92\xe2\x5d\x03\x1f\xe9\x39\x6f\xff\x75\xcb\x40\x92\xd1\x35\xf0\xb1\x02\x52\x5b\xdf\x56\x85\xe8\x66\x45\xb3\x55\xc1\x07\x0d\xfb\x80\xa0\x59\xdf\xa1\x4e\xfe\xd2\xc7\x0a\x00\x24\x9d\x4e\x27\xf8\xc6\x37\xbe\x81\xb9\xb9\xb9\x9c\x2f\x73\x02\x0c\x90\x99\x97\x91\x29\xb3\x56\x1c\x2c\xbc\xf0\x41\xe7\x23\x1f\x7a\xd0\xf9\xd5\xd5\x5e\xf3\xe7\x9b\x93\x60\x83\x83\x96\x5a\xc1\x6b\xbe\xc5\x41\xef\x62\x2d\xcc\x7b\xdb\xa6\x7d\xaa\xc4\x12\x79\x5b\x08\xec\x96\x96\x54\x81\x4e\x14\xe2\x61\x33\x19\x3c\x9a\x8b\x37\xef\x2e\x0d\x6f\xdd\x59\x1e\xdc\xba\xbf\x30\xde\x1c\x36\x93\x3d\xad\x30\xc8\x14\x68\x6e\x55\x61\x0a\xb5\x60\x69\xd1\xc2\xb6\xfc\xd9\x1f\xdd\xd9\x96\x76\x7c\x74\xf9\x72\x69\xf7\x5a\x5a\x2e\xbc\x23\xcd\xa6\x7b\xcc\xad\x4b\xc1\xf8\x8e\xae\xea\xc4\xf3\x3c\xad\xf5\x5a\x48\x23\xf1\xb6\xb5\x2b\x13\x6c\xcf\x7c\xda\x97\x24\x7f\x2d\x1d\xf1\x1b\xbf\xf1\x1b\xc1\x5f\xfc\xc5\x5f\x24\xbf\xfd\xdb\xbf\x1d\xfc\xc9\x9f\xfc\x49\x02\x58\x57\x36\xe5\x71\x06\xbc\xe8\x6c\xf5\x1f\x9f\xea\xd5\xc5\xf3\x92\xa4\xcd\xec\x6c\x16\x18\xf3\x97\x5b\x64\x82\x04\xf3\x4b\xc3\x70\xe9\xc4\x6e\x74\xf2\xe4\xe3\xd6\x99\xf5\xbd\xe8\xe4\xd2\x20\x5c\x6b\xc5\x2a\xca\xf5\x01\x9b\x12\x2a\xfc\x02\x19\xa8\x28\x4e\x15\xeb\x6c\x1e\x48\xb1\x79\x61\x3a\x55\x5c\x9e\x26\x32\x0f\xe8\x34\xf2\xf4\xb8\x02\x00\x98\x28\x3d\xba\xbd\x3c\x7a\xe7\xb5\x53\xbb\xff\xe3\x83\xa5\xd1\xf5\x71\xa8\x77\x00\xec\x66\xd3\x42\xfc\xf0\x44\xba\x8a\xa8\xb4\x0d\x80\xc5\xda\x62\xab\x7b\x75\xda\x42\x9d\x8e\x95\xd3\xfb\xf4\x3b\x36\x1e\x36\x59\x7d\xda\x8c\x8f\x5c\x3e\xf2\xf8\xf4\x89\x3e\xfd\xe3\xac\x7d\x2f\xa7\x85\x23\x2f\xd7\x73\xd0\x67\x4a\x78\xe8\x53\x80\x2e\xe1\x7c\xd2\xf8\xa4\xad\x42\x64\x36\x65\xe8\xfa\x08\xbe\x05\x6a\x53\xde\xf4\x5a\x46\x82\x4a\x05\xdf\xfa\xd6\xb7\x00\xe4\xca\x85\xef\xd3\x62\x0e\x81\xcb\xb7\xf0\x07\xd0\xf9\xc4\xdd\x85\x73\xcf\xdf\x9b\xff\xcd\xd5\x5e\xf8\xb9\x30\x09\xd6\x14\x10\x70\x9f\x15\x80\x7e\x30\x32\xe9\xc2\x7d\x5b\xb2\x0b\xaf\xbd\xe9\xa8\xf2\x82\x03\xdb\x18\x47\xc0\xec\xda\x00\x17\x6b\x1a\xc2\x77\x3a\x54\x2b\x13\xf3\xf9\xf8\xfc\x1d\x73\xf9\x05\x9f\x18\x63\xc6\xce\xcb\x01\x18\x85\x49\xef\xd1\x5c\xbc\x75\xf7\xc8\xe8\xc6\xad\x95\xfe\x8d\x0f\x96\x46\xf7\x46\x0d\xbd\xaf\x91\x83\x93\x11\x05\x2e\xe6\x9a\xfc\xda\xf6\x62\xc9\x01\x0b\xb9\x36\x8e\xb6\x05\xcb\x8a\x01\x2b\xdc\x89\xd6\x48\x4a\xa7\x80\x58\x70\x8d\x9e\x5c\x34\x94\xce\x17\x50\xd8\xea\x74\x95\x4c\xb3\x80\xa2\xba\xfa\xc1\x96\xde\x57\x29\xd6\x1d\x28\x89\xc1\x05\x64\xa8\x05\x86\x00\x99\x80\xc4\xdb\x00\x0c\x07\x31\x66\xea\xc8\x4c\x1b\x95\x00\xcc\xc2\xb0\xb1\x7c\x72\xb7\xb5\x71\xfa\x51\xeb\xec\x89\xdd\xd6\x99\xa5\x61\x63\xb5\x91\x18\x5f\x37\x45\xfe\x37\x21\x6d\x18\xae\x76\xef\x35\x2d\xcc\x74\x87\xec\x27\xa3\xa1\x15\x92\x47\x73\xe3\xdb\xdf\x3b\xb3\xf7\xf7\xd7\x8e\xf6\x2f\x8f\x43\xbd\x9d\x01\x16\xe9\xc4\xe7\x02\x68\x41\xb1\x3d\x89\xbe\x5c\x15\xa1\x4e\x5f\x32\x6b\xa8\xd3\x4f\xb9\xae\x25\xfa\x9f\x54\xbb\x39\x2c\x1e\x75\xf3\x39\x48\x59\xd5\x0e\x9e\x63\x6c\xaf\xf0\xd3\xae\x40\xb3\x14\xc2\x41\xc0\x56\xad\xe7\x99\xf2\x93\x56\x2e\x44\x64\x45\x42\x5b\x41\x75\x3e\x71\x77\xe1\xe9\x8f\x7e\x30\xff\xff\x2c\xf7\x9b\x5f\x08\x13\xb5\x4c\x2d\x2d\x35\x0c\x21\xb5\x83\x2f\xef\x32\x9d\x3d\xa5\xaf\x9f\x0d\x7d\xc6\x47\x87\xbe\x41\x23\x5d\xc9\xb0\x33\x17\x6f\xde\x59\x1e\xde\xb8\xb9\xd2\xbf\x71\x6f\x71\xb4\x39\x6c\xea\xc7\x28\x5a\x54\x46\x98\x9a\xac\x47\x5a\xeb\xdc\xba\x42\xa6\x84\x4a\xfe\x2b\x7a\xba\x7c\x39\xe6\xa3\xc3\x2c\x24\xec\x37\x57\xc0\x74\x39\x2f\x09\x75\xea\x69\x81\xaf\x07\x9f\x3a\x75\xdb\x37\x7d\x15\x28\xf2\x19\x24\x1c\x44\x2f\xfc\xb4\x74\x4a\x00\x20\x39\x7b\xf6\x6c\x70\xe3\xc6\x8d\x52\x7e\x99\xc3\xaf\x04\xf8\xe8\x2f\xbd\x96\xc0\x4b\x00\xbb\x05\x86\x02\x97\x0e\xb9\x6e\x07\x09\xe6\x3a\xa3\xc6\xf2\x13\x8f\x5b\x1b\x4f\x3d\x9a\x7b\xfa\xe4\x4e\xf4\xf4\xfc\xa8\xb1\x6c\xf6\x80\xa1\x6d\x28\x9f\xde\x25\xc0\xde\x05\x4c\xe8\x84\x2d\xb5\xb8\x14\xd2\x17\x06\x09\x53\x06\x09\x90\xf4\xa2\xc9\xce\xeb\x4f\xec\xff\xe3\x8f\x4e\xee\x5d\x1a\x35\xf4\x0e\x54\x69\xaf\x16\x7a\x26\x11\x9d\x7a\x05\xa6\xc0\x65\x96\x15\x44\x55\x20\xbe\x0e\x1f\xdb\xe8\xde\x65\x45\x70\x0d\x0a\x7c\xac\x18\xb3\x58\x5c\x24\xde\x87\x05\x16\xea\x58\x4d\x0e\x23\x1c\x58\x27\x34\x6a\x26\xc8\xdb\x08\x8b\xd7\x24\x3e\x10\x68\x66\x11\x4e\x3b\x78\x9b\xca\xa5\xd9\xaf\x8d\x0f\x1c\x74\xfc\xbd\x7c\xd2\xc0\xf5\x9c\x2c\xd1\x54\xc0\xf4\x00\x38\x55\xdc\xff\xa1\x1d\x26\xaa\xf3\xe1\x07\x9d\x53\x2f\xde\x59\xf8\x9d\x95\x7e\xf8\x85\x30\x51\x2b\x40\x71\x53\xaa\x9f\x04\x68\x31\x4a\x8c\x5a\x43\x7c\x7c\x67\xa6\x34\x76\xa9\x94\x83\x52\xf2\x49\xc9\x97\x7f\x56\x8c\xf0\x78\x8e\xe3\x20\x89\x1f\x75\xe2\x7b\x37\x57\x07\x97\x7f\x7c\x7c\xff\x8d\xab\x6b\xfd\x77\xb7\x16\xc6\xf7\xe3\x06\x76\xa1\x72\xc5\xd9\x05\xd0\x55\x4a\xed\x21\x55\xa0\xfb\x4a\xa9\x1e\x80\xbe\x52\xaa\xaf\x94\xea\x03\x18\x12\x4b\xcc\x50\x6b\x3d\x06\xd9\xbe\x1f\xe9\xf2\xe6\x89\x52\x6a\xa2\xb5\xd6\x64\x0a\x8c\x36\x3c\x4d\xad\x2c\xe7\xcf\x9f\x57\x96\xd1\xa3\x29\x76\x9f\x3a\x25\xd5\x47\xde\x1e\x78\x1a\x5b\xe0\x75\x5c\x0b\xf1\x9a\xd1\x6b\x46\x4f\xd3\x24\x24\xde\xd6\x5e\xb4\x40\xe3\xd2\x0d\xd2\x33\x5f\x9d\xc2\xcb\xc8\xb7\x8c\x0d\x3d\x00\xe8\x9d\x9d\x1d\xdd\x6a\xb5\x82\xc9\x64\xa2\xe7\xe7\xe7\x83\xf1\x78\xac\x01\xe0\xc2\x85\x0b\xbc\x8c\x78\x55\xd5\x60\xf5\x21\xfb\x33\x75\x68\x92\x3d\x9f\x64\x7f\x31\x80\x31\x8a\xd6\x87\xb1\x79\x96\x59\xfc\x26\x00\xc6\x1a\x88\x47\xa1\x1e\xed\xcc\xc5\xdd\xad\xf9\xd1\xc3\x5e\x94\xec\x40\xe9\xb8\x99\xa8\x28\x4c\x54\xa4\x4a\xeb\x87\xa6\x8d\x2c\x07\x1d\xac\xdd\x69\xe3\xd8\x4b\x0e\x83\x4c\x2b\x66\x66\x25\xa5\xa0\xa6\x60\x29\x9d\x5a\x74\x06\xcd\x64\xef\xfa\xda\xe0\xb5\x1f\x9d\xec\x5e\x1a\x34\x93\x1d\x00\xbb\x50\xd8\x47\xda\xe6\xf6\x01\xf4\xb3\xbf\x61\xf6\x6e\x63\xad\xf5\x44\xa5\xcb\x0a\x13\x5a\x9e\xe3\xf1\x58\xdd\xbf\x7f\xdf\xd4\x0f\x57\x1b\x31\xdf\x59\xa1\xd8\xc1\xd2\xef\x22\xf5\x4f\x36\xfd\x6e\x6b\x47\x25\x4c\xc8\xe4\xe2\xf9\xd8\xe8\xa5\xfa\x4c\x41\x42\x55\xff\x45\xe5\xa7\x74\x52\x9b\xa5\xef\x66\x2b\x13\xa9\x1c\x78\x7b\x06\x8b\x93\xe4\xb1\xb5\xcb\xaa\xb6\x47\xdf\xc5\xa7\x8d\xf2\x3c\x73\xb9\x14\x13\xf2\xa0\xa3\x24\x5f\x5e\x87\xc5\x1f\x35\xf9\xd4\x31\xd3\xd9\x46\x99\x60\xcf\x01\x00\x2b\x2b\x2b\xf8\xf5\x5f\xff\xf5\x7c\x7f\x0d\x6a\x65\xc9\x4c\xca\xd3\xd5\x43\x4a\xb5\x9b\xb1\xea\x9c\xdd\x6e\x9f\xfd\xf8\xdd\x85\xaf\xae\x77\xa3\x5f\x69\x4e\xd4\x3a\x80\x80\x3b\xa2\x3a\x83\x04\x3a\x66\xb4\x5c\x1c\x1e\x40\xf2\xb3\xc6\x18\x2b\x0b\x37\x6b\x97\xb5\x46\xd1\x39\x37\x0e\x74\xbc\xd7\x9a\xec\xdc\x5b\x1c\xde\xba\xbd\x3c\xbc\x75\x7f\x71\x74\x77\xb7\x1d\xef\x8c\x1b\x7a\x2f\x73\xbc\xa5\x7f\x3d\x64\x96\x17\x64\xab\x19\x88\xdf\x0a\x77\xbc\xcd\x7d\x57\xd8\xca\x20\xd1\x5f\xc5\xdc\x9b\xe5\xb6\x40\xba\xeb\xec\xf2\xf2\x72\xb0\xb3\xb3\xe3\x63\xa1\xf3\xad\xbf\x52\x3d\x34\xf7\xbe\x23\xbf\x82\xcc\x15\xbc\x7d\xa6\x90\x7c\x78\x57\x85\x2a\xbd\x70\x58\xa3\x49\x57\x7e\x75\xe5\xe3\xd3\x48\x01\x7b\x5c\xb2\xc0\xe8\xe2\x51\x03\xd2\xe1\x8e\xc5\x4d\xeb\xca\xfe\x2f\xe9\x9f\x46\x3b\xd0\x68\x47\x13\x75\x64\xb5\xd7\x5c\x7b\x62\xa7\x75\xea\xd4\xe3\xd6\xd9\xb5\xfd\x68\x63\x6e\x1c\x2c\x04\x9a\x9c\xe3\x94\x35\x2e\x4d\x80\xc9\x61\x35\x72\x0d\x8d\x61\x98\xf4\x6e\x2f\x0f\xdf\xbe\x74\x6a\xef\x7f\xdc\x5b\x1a\xbd\xaf\x01\x63\x6d\x31\x2b\x88\xba\xd9\x00\xc1\x9c\x43\x44\xcf\xec\xa2\x56\x4b\xd7\x2a\x22\x13\xfe\x77\x8e\xfc\x0f\xa5\xce\x1c\x20\x9f\xc3\xb2\x20\xfd\x34\xa6\x73\x7e\xaa\x6d\x57\xaa\xca\x75\x80\x46\x1d\x20\xe0\xc3\x7b\x16\x40\x41\xe3\xc0\x9e\xf9\x74\x0e\x07\xa9\xbc\x39\xff\xaf\x7d\xed\x6b\xc1\xfa\xfa\x3a\x00\x51\x59\x99\xed\xc3\xdb\x00\xa2\x56\xac\x96\x4e\xed\xb4\xcf\xbc\x70\x77\xfe\x97\x4e\xec\x45\x5f\x69\xc5\xc1\x59\x64\xa0\x45\x0e\x76\xb3\xc8\xe1\x82\x0e\x8f\xc0\x32\xcc\x01\x46\x61\x55\x06\xb7\xac\x10\x7a\x61\x8f\x09\x9f\x77\x48\xa0\xd1\x8b\x92\x9d\xfb\x8b\xa3\xbb\xb7\x97\x07\x37\xee\x2d\x8e\xee\x3e\x9e\x8b\xb7\x07\x61\xf2\x38\x51\x18\x68\xe8\x5e\x06\x46\xf2\x7d\x22\xc8\x54\xd1\x40\xb3\x83\x10\xd9\x9f\xd9\x92\x3f\xc9\xae\x4b\x1b\xc4\x65\xb2\xa7\x68\x9f\xec\x0f\xe2\xb1\xe7\x04\x07\x1a\xc5\xd7\x92\xd3\x56\xd5\x5b\x5b\x1b\xa8\x32\x65\x4b\xcf\x24\xde\x36\xf0\x53\x87\x7f\x15\xc0\xa9\xfb\x0e\x2e\x59\x6d\xfc\x7c\xd2\x7a\xf1\x58\x5b\x5b\x0b\xb6\xb6\xb6\x92\x13\x27\x4e\x04\x1f\x7c\xf0\x41\x22\x2c\xb1\x36\x40\x85\xaf\x20\x34\xbf\x74\xba\xd8\x76\xa0\xa3\x04\x60\x3a\xd9\x75\x47\x6b\xdd\x56\x50\xed\x30\x51\x9d\xb9\x71\xb0\xb2\xb6\xdf\x5c\x3b\xb5\xd3\x3a\x73\xf2\x71\xeb\xec\x4a\xbf\xb9\xde\x8a\x55\x1b\x04\xac\x94\xda\x95\xf1\x3b\x23\x0f\x34\xa6\x66\x99\x82\x43\xbd\xce\xd2\xb3\xb6\x3e\x0e\x92\xc1\xe6\xe2\xe8\xc6\xeb\x27\xbb\xff\xf3\xfa\xea\xe0\xc7\xc6\x19\x17\x6c\x8a\x28\x5b\xfe\xcc\x0f\x4f\xa4\xab\x87\x12\xa0\x30\x4d\x64\xfb\xf6\x2e\xa0\x0e\x81\x5e\x8a\xaf\xdb\x01\x4b\xf9\xd9\xfa\x2e\x58\x68\xaa\xae\xeb\xf6\x99\xb3\xf6\xb1\x3e\x72\x48\xef\x60\x6b\x0b\x75\x06\x4b\xb6\x32\x9c\x05\x17\x14\x64\xf9\x49\xfa\xb8\x70\x65\x75\x18\xa8\xb2\xae\x32\x3b\x0c\x1a\xd7\x47\xc0\xf1\xe3\xc7\x71\xff\xfe\xfd\x84\xec\x8a\x6b\x56\x1f\x84\x2a\x3d\xe1\xd9\x9c\xf4\x1c\x01\x68\xb7\xe3\x60\xe1\xe4\x6e\xeb\xec\x47\xee\xcd\x7f\xf1\x89\x9d\xd6\x97\xdb\x71\x70\x2e\x80\x0a\x7d\x01\x48\x9d\x8e\xdf\x87\x27\xdf\x14\xae\x8a\x47\x7a\x9f\xfd\x5f\x95\xd6\x01\x60\xbc\xf2\xca\x46\x8e\xe3\x86\x1e\x3d\xec\x8c\xef\xbd\xbf\x32\x7c\xef\xce\x91\xe1\xed\xed\xce\x78\xb3\xdf\x9c\x3c\x8e\x03\xf4\x32\xc0\x62\xc0\xc9\x80\x02\x16\x02\x56\x06\x20\x4b\x9a\x33\x00\x92\x1f\xea\xa6\xc9\xf9\x41\x59\xd6\xe2\xc6\x70\x26\x5c\xbc\x78\x31\x79\xe6\x99\x67\x02\x00\xb8\x76\xed\x9a\x6f\xa3\x05\x79\x2e\x81\x18\x13\x5c\x0a\x44\x52\x32\xae\x67\x3c\x1f\x5f\xde\xb3\xe4\x23\xd1\xf9\x0e\x08\x66\xed\x58\x7c\x78\xd7\x09\x33\xe9\x0e\x61\xf7\xde\x40\xb8\x0e\x84\x3f\xea\x0b\x33\x3d\xee\xa3\xb8\x13\x6f\xc1\xf2\xa2\xb5\xee\x28\xa5\xda\x4a\xa3\xd3\x9c\xa8\xf9\xc5\x41\xb8\x7a\x7c\xaf\xb9\x71\xea\x71\xfb\xec\x89\xdd\xe8\xd4\xe2\x30\x5c\x4d\x37\xb0\xab\x08\x06\xaf\xc0\x5f\x77\xc4\x41\x12\x3f\xec\xc4\xb7\x2f\xaf\xf7\xbe\x7f\x79\xbd\xf7\xa3\xfd\x28\xde\x44\x71\x3b\x7f\x73\x06\x91\xe4\xd7\xc2\xdb\x98\x0d\xb4\xd4\x0d\x3f\xc9\xb4\x87\xdd\x37\x71\x7a\x40\x6e\x93\x55\xe0\xc7\x37\xbf\xba\x60\x5e\x4a\x7f\x90\x81\xc0\x41\xf8\x39\x83\xd7\xc6\x66\x9e\x19\x4a\x42\xdb\x3e\x4a\x5d\xa5\xe6\xca\x43\x4a\x57\xa5\x40\x7d\xd0\x34\x7f\x07\x31\xfe\xa5\x97\x5e\x0a\x4e\x9f\x3e\xcd\x47\x58\xc6\x14\x1c\x60\xaa\x8c\xda\x51\xac\x16\x4e\xec\xb5\xce\x3c\xbb\xd9\xf9\xaf\x27\x1f\xb7\xbe\xd0\x4e\xb7\xf1\x0f\x01\x7f\x04\x49\x15\x24\x07\x2d\x85\x6b\x03\x1a\x9c\xe8\xc5\x10\x19\x4b\x09\xdb\xe8\x4a\x48\x4a\x3d\x57\xa6\x6e\x3c\x05\x8e\x39\xdb\x3a\xa0\x05\xa0\x1b\xd3\x01\x50\x1a\x93\x06\xe2\xfd\xe6\x64\xf7\xfe\xd2\xe8\xf6\xf5\xd5\xc1\xd5\xfb\x8b\xc3\xbb\x7b\xad\xc9\x76\xdc\xd0\xfb\x1a\xe8\x41\x61\xa0\xa0\xf8\xf4\x90\xb4\x91\x9c\xf1\x55\xa1\x7e\x2b\x54\x91\x26\xe9\xfb\x14\xb7\xdf\xa7\xd2\x71\x93\x76\x06\x58\x00\xb9\xce\x73\x50\x42\x69\x12\x46\xe7\xaa\xa3\x2e\x9e\x3c\xde\x45\xc3\x65\xb1\xe5\x61\xcb\xcf\xd5\xa6\x13\x76\x2d\xa5\xa9\x7a\x3f\x4a\xe3\x33\x42\xab\x6a\xff\x75\x47\x73\x55\x03\x2b\x9a\x67\x89\xf6\x3f\xfe\xe3\x3f\xf0\xe6\x9b\x6f\x26\x80\x73\x7f\x18\x93\x2e\x80\xac\x9f\x62\xa4\x7a\xc3\xec\x75\x62\xf6\x80\xc9\x0f\xf4\xc4\xf4\x50\xcf\x36\x94\x1a\x8d\x42\x3d\x78\xd4\x19\xf7\xfb\xcd\xc9\xee\xe3\xb9\xc9\xce\xa3\xce\x78\xeb\x89\x9d\xd6\xd9\x63\xdd\x68\xa3\x1d\x07\x0b\x41\xa2\x02\xc5\x46\x1d\xc6\x29\x57\x29\x55\xd0\x1b\xb4\xfd\x71\x9f\x18\x00\x98\x28\x9d\xec\xb5\x26\x5b\xb7\x97\x07\xef\xdc\x5c\x19\x5c\xed\x45\x93\x1d\xa4\xd3\x41\x74\xe5\x90\xd4\xee\x68\xb9\x15\x40\x4b\xa7\xd3\x09\x7a\xbd\x9e\x4f\x27\x4d\xe3\xaa\xbe\xa7\x44\x6b\xfb\xb6\x12\xe0\xf6\x09\x3e\x83\x70\xdf\x3e\x53\xba\xf6\x79\x5e\x95\x3f\xa5\xa9\x5b\x76\x26\x6d\x9d\x77\x74\x7d\x2f\xd7\x73\x5b\x1a\x27\x60\xe3\xce\xb9\x01\x64\xa7\x19\x5f\x47\x1a\xee\xb0\xc4\x9d\x88\x24\x67\x24\xea\x94\x65\x7b\x4e\x9d\xb1\x5c\x00\x33\x40\xcc\xbf\xce\x5b\x34\x7d\xb0\x58\x3a\xdd\x00\x00\x20\x00\x49\x44\x41\x54\x95\xe3\x13\xcf\x83\x07\x9b\x73\x55\x21\x7c\xe1\x0b\x5f\x48\x55\x41\x6a\x65\x81\x52\x2a\x50\x4a\x35\x00\x04\x5a\xeb\xa6\x52\x2a\xf7\x69\x39\xb1\x17\x9d\xfe\xd0\x83\xce\x67\xcf\xec\xb4\xff\x5b\x67\xd4\x78\x3e\x80\x6a\x59\x64\x2b\xe4\xa8\x33\x45\x63\x03\x12\x26\xbe\x00\x60\xa8\x0b\x14\xa1\xa1\xc0\x82\x9a\x95\x33\xd9\x4b\xbc\xad\x62\x91\xed\xc8\x79\x1a\x5f\xc0\x52\x7c\x9f\xa9\x15\x29\x09\x74\x32\x68\x26\xfb\x5b\xf3\xe3\x7b\xd7\xd7\x06\x97\xdf\x3d\xd6\xfb\xf1\x9d\xe5\xe1\xf5\x6e\x6b\xb2\x35\x09\xd0\xd5\xd0\x7b\x48\x1d\x6d\xf7\x01\xec\x21\x53\x9e\xd9\x7d\x1f\xa9\xf3\x6d\xbe\xa2\x88\x99\xac\x8d\x13\xe4\x04\xc0\x44\x29\xa5\x33\xc0\xa2\x8d\x5f\x4b\xe6\x40\x08\xa5\x14\x5e\x79\xe5\x95\x24\x08\x02\x35\x3f\x3f\xaf\xb6\xb7\xb7\x5d\x75\x4e\x8a\xb3\x39\xd1\x71\x3a\x9b\x93\x1d\xa7\x91\x78\xd9\xea\x31\xaf\xbf\x86\x27\x77\xf4\xb3\x05\x9b\xa3\xa3\xe4\x60\xe8\x92\x1f\x24\x8d\xab\x1c\x24\xbe\x92\xd3\x23\xe5\x45\x7f\xa9\x8e\xe0\xbc\xb9\x4c\x92\xae\xe1\x32\xd2\x77\xe3\x65\x51\x78\x8f\xcd\xcd\xcd\xfc\xfe\xd2\xa5\x4b\xda\xfc\x9d\x3f\x7f\x5e\x65\x75\x89\xf2\x48\x58\x9e\x26\x2e\x41\x5a\x27\x35\xb9\x4e\x32\xa7\xf0\x49\x06\x60\x4c\x9d\x35\x0e\xbe\xb1\x56\x98\x64\x47\x5a\xec\xef\xb5\x27\x7b\xbd\x56\xd2\x1d\x37\xf4\x38\x4c\x54\x23\x4a\x54\x2b\xd0\xaa\x01\x20\x9b\x1e\xca\xf6\x79\xc9\xda\xbd\xce\xc4\x52\x00\x54\xe6\x6c\x56\x28\x74\x32\x9d\xd4\x8b\x26\x8f\x6e\x2f\x8f\x2e\xbf\x7b\xac\xff\xe6\xd6\xc2\xe8\x76\x76\xe2\xb3\x99\x1a\xca\xdb\x9d\xd6\x7a\xa8\x94\x32\x0e\xb9\xd4\xd2\x92\xd7\x93\x8b\x17\x2f\x26\xad\x56\x2b\x18\x0c\x06\xb4\x0c\xa4\xf2\x35\xdf\xd5\x7c\x5b\xde\xa1\x55\xb5\x09\x6d\x49\x03\x76\x6f\x6b\xa3\x92\x33\xab\x24\x9f\x54\x4f\x6c\x69\x4d\x1a\x2a\x9f\xad\xef\x73\xb5\x19\x29\xd8\xda\xac\xe1\x2b\x3d\xe3\x6d\x86\xd2\x49\xed\xc1\x26\x2b\x95\x81\xb6\x45\xca\xcf\xa4\xa5\x32\x19\xde\x3c\x0d\x84\xeb\xfc\x9e\x02\x17\xf3\x12\x52\x03\x76\x8d\x70\xaa\x94\x91\x4f\xa8\xa2\xe5\x2f\x52\xe7\x63\x9a\x30\x6b\x25\xb0\xa6\xa3\xe7\x0f\x01\xc8\x97\x3d\x03\x68\x28\xa5\x42\xa5\x54\x0b\x40\xd4\x48\x30\xb7\xde\x8d\x4e\x7c\xe8\x41\xe7\xbf\x3c\xf9\x68\xee\x4b\xf3\xa3\xc6\xc7\x1a\x50\x73\xf9\xdb\xb8\xfc\x56\xd4\x14\x50\x94\x0c\x28\xd9\x8d\x6c\x15\x91\xe3\x0a\xc0\xc2\x95\xaf\x84\x92\x28\x3f\x55\xce\x38\x4d\x22\x27\xe4\xbd\x10\x80\x7c\xae\xdd\xc4\x25\xd0\x88\x1b\x7a\xb4\xd7\x9e\x6c\xdf\x3d\x32\xbc\x7e\xf5\x58\xff\xc7\xef\x1d\xed\x5f\xde\x5a\x18\xdf\x19\x37\x74\xba\x6a\x41\x61\x2f\x03\x28\x06\xb4\x18\xa5\xb9\x8f\x6c\xb5\x10\x80\x21\x9b\x2a\x8a\xb5\xd6\x63\xa3\xfc\xcd\xca\x06\x03\x58\x90\xd5\xfb\x0c\xc4\xe0\xd6\xad\x5b\xf8\xf3\x3f\xff\xf3\x64\x7e\x7e\x5e\xdd\xbc\x79\x53\xdf\xbd\x7b\x57\x6f\x6f\x6f\xd3\xfa\xa0\xc8\x9f\x54\x47\x68\x43\xb4\x29\xcb\x40\x48\x4f\x95\x83\xf4\x8c\x2b\x43\xdb\xbd\xa4\xac\x25\x03\x1d\x7d\xce\xaf\x6d\x4a\x8e\xf2\xe6\xe9\xa8\x52\x76\x76\xf6\x02\x6f\x2a\x23\x97\xc1\xc6\x8b\xbe\x53\x95\x8e\xaa\x52\xb8\x3c\x1f\xcd\xe2\x6d\x40\xd0\x1a\xe6\xe7\xe7\x55\x18\x86\x68\xb7\xdb\x86\x5f\x0a\x1f\xd2\xd5\x69\xb4\x33\xd7\x59\x9c\xc6\x74\x05\x52\x82\xb4\xae\x9a\x15\x46\x06\xac\x18\x20\x33\xc9\x69\x15\x26\x3a\x40\x3c\x0c\xf5\xa8\xdb\x9a\xec\xef\xb6\x27\x3b\xc3\x66\xd2\x0b\xb4\x52\xd1\x24\x88\x1a\x89\x6a\xa6\x06\x50\x05\x14\x56\x12\x11\xaf\x3a\x45\x7e\x88\xb5\x54\x03\x18\x85\xba\x77\x7f\x71\xf4\xde\xd5\x63\xbd\xd7\xef\x2c\x0f\x6f\xc4\x21\x1e\xa3\xbc\xe4\xd9\x0c\x18\x46\x59\x5b\x9b\xca\xc7\x46\xef\xaf\xbf\xfe\xba\x1a\x8d\x46\x14\xc0\x49\xe5\x69\xea\x99\xad\x43\xf3\xfd\x26\x95\x9d\xa0\x23\x2d\xcd\x43\x02\x22\xbc\xde\xd1\xf6\xca\x65\xa5\xf5\x8a\xd7\x71\x57\x1f\x6a\xd3\x2d\x52\x1a\xa9\x1d\x53\x3d\x64\x6b\x47\xd2\xbb\xf3\x7e\x5f\x1a\x84\xb9\xbe\x99\x8b\x9f\x54\x3e\x92\xae\xe4\x21\x7f\x4e\x81\x8b\xed\x85\xe8\x4b\xbb\x94\x11\x57\xbe\x3c\x43\x1b\x02\xf5\x09\x92\x92\x77\xf1\x91\x3a\x17\xdf\x8f\x6f\x9e\xbb\x4c\x8c\xf8\xf6\xb7\xbf\x5d\x3a\x34\x31\xb3\xb6\x98\xc3\xd7\x22\xad\x75\x2b\xd0\xaa\xbd\xda\x6b\x1e\x3b\xb7\xd5\x39\x7f\x76\x7b\xee\x17\x97\x86\xe1\x4b\x0d\x8d\xf9\xa2\xa6\x28\x06\xd7\x9e\x26\xca\x7a\x63\x02\x43\x03\xfc\xa9\xb6\x5b\x44\xac\xbc\x2b\x40\x4c\xca\x77\xba\x15\x79\xd1\x51\xd7\x9c\x61\x94\x32\xb2\x39\xf0\x26\x4a\x27\x83\x66\xb2\xb7\xb5\x30\xbe\x7b\x63\x35\xb5\xb2\xbc\xbf\x32\xbc\xde\x6b\x25\x0f\xb5\xc2\x1e\xd2\xa5\x96\xf9\x72\xcb\x0c\xbc\xf4\xc8\xf2\xe6\x01\xb2\x55\x43\xc6\xa7\x45\x29\x35\x06\x50\x02\x2c\x28\x8e\x6c\xb5\xb1\xac\x5c\xba\x74\x49\xaf\xad\xad\xa9\xef\x7d\xef\x7b\xe8\xf7\xfb\xfa\xe6\xcd\x9b\x52\x5d\xa7\x8a\x87\xd7\x2d\x3e\x82\xe3\x16\x04\x5a\x9f\x24\x85\x2c\x29\x33\x9a\x07\x57\x8c\xfc\xde\xd4\x77\x40\xce\x8f\x2b\x4d\x0e\x70\xa8\x0c\x34\x48\x7c\x5c\xef\x64\x53\xc6\xd2\xc8\x53\x7a\x57\x1e\x6c\xba\x43\x6a\xdb\x34\x2f\xaa\x10\xe9\xbb\xd9\xf4\x89\xa4\xe3\xe8\x7b\xd1\xfc\x6d\xba\x28\xff\xbd\x79\xf3\x26\xde\x7a\xeb\xad\xe4\xd2\xa5\x4b\xfa\xa9\xa7\x9e\x52\xd9\x4e\xda\x5a\x29\x83\x5d\xa6\x4b\x83\xb3\x38\xf3\x9b\xa8\x74\x09\x3e\xb5\xc4\xc4\x19\xdf\x82\xf5\x45\x4f\xb7\xce\x9f\x28\xa5\xe2\x49\x80\x51\x3f\x4a\xfa\x3b\x9d\x78\x77\x3f\x9a\xec\x06\x1a\x68\x26\x41\x14\x26\xaa\xa1\x34\xc2\x7c\xe7\x5b\xb6\x23\xee\xd4\x6f\xae\x78\x96\xd8\xa4\x81\xd1\xc3\xf9\xf1\xed\xab\x6b\xfd\xd7\x6f\xad\x0c\xdf\xed\x35\x27\x0f\x95\x52\x7b\x5a\x6b\xb3\xb5\x40\x57\x6b\x6d\x06\x0c\xa6\xbd\xe5\xd6\x16\xba\x32\xef\xe2\xc5\x8b\xc9\xda\xda\x9a\xba\x72\xe5\x8a\xa4\x53\xab\xc0\x29\xff\x6e\x1c\x80\x4b\xb4\xb6\x6b\xdb\x37\x76\x01\x13\xa9\x2f\x71\xf1\xe1\xb2\xda\xea\x89\x4d\x56\x6e\x85\x90\xda\xb9\x0d\x44\x28\xe1\x9a\xcb\x41\xd3\xf1\xa9\x18\x29\x0f\x3e\x98\x92\x06\x0b\xb6\x6f\x26\xb5\x17\x1a\x78\x39\xd9\xf0\x42\x9e\xb6\x6a\x1f\x17\x49\x59\xf3\x17\x34\xd7\x12\x2a\x96\x4c\x71\x2e\x0b\x0e\x0f\xb6\x8e\x80\xf3\xe1\x05\xa2\x21\xcb\xcc\x9f\xdb\x02\xcf\x8b\xcb\x83\xf3\xe7\xcf\x2b\x00\x05\xd0\x02\xb6\x53\xa6\x82\x9a\x5b\x1a\x35\x96\x3f\xf4\xa0\xf3\xb1\x67\x1e\xce\xfd\xd2\xf2\xa0\xf9\xa9\x50\xab\x23\xe5\xb6\x27\x00\x0a\x1b\x70\x70\x81\x08\x0d\x90\xe1\x54\xe9\x11\x66\xd8\x8a\xbf\x20\x97\x2b\x6f\x95\x8e\xe0\x52\x11\xa6\x44\xf9\x14\x57\x3e\x0e\xcf\x4c\xd3\x06\xcb\x40\x23\x0e\x30\xda\x6b\xc7\xdb\x77\x8e\x0c\x6f\x5c\x39\xd6\x7f\xeb\xda\xb1\xfe\xe5\x87\x0b\xf1\x07\x99\x39\x7a\x1f\xd9\xc9\xb2\xc0\xd4\xda\x92\x29\xce\x3e\x52\xb0\xd2\x43\xba\x5f\x84\x99\x16\x1a\x23\x75\xba\x35\x23\x3f\x33\xc2\x15\x01\xcb\xe9\xd3\xa7\xd5\x3b\xef\xbc\xa3\x01\xe0\xda\xb5\x6b\xba\xdf\xef\xdb\x3a\xd0\x2a\xb3\xae\xad\x73\xe3\x9d\x3e\x4f\x2b\xe5\x63\xa3\x73\xdd\xf3\x3a\x2f\x75\x04\x36\x05\xe7\x6a\x13\x92\xdc\xf4\x57\x1a\x65\x9a\x20\xe5\x47\xad\xbb\xfc\x5d\x24\xc5\x6e\x7b\x0f\x6b\xfb\x44\xb9\xfc\xa5\x72\x92\xf8\x49\xe5\x24\xe5\x6f\xbb\x16\xcb\x73\x30\x18\xa8\xbf\xff\xfb\xbf\x4f\x2e\x5d\xba\xa4\x5f\x7a\xe9\xa5\x7c\x0a\x49\x67\x08\x42\x29\x65\xa6\x28\x35\xd2\xba\x69\xea\x29\xb7\x5a\xe4\x00\x06\x53\xab\x61\x6e\x81\xd1\x5a\x4f\xa0\x54\x12\x37\x74\xbc\x33\x17\xef\x3e\x6e\xc7\x8f\x93\x40\x0f\x1b\x5a\x85\xcd\x24\x08\x73\xeb\x8b\xca\xec\x2d\x6a\xba\x13\x0c\xf2\xb6\x9e\x1d\x9e\xa8\x90\x3c\x6e\xc7\x9b\xd7\x8f\x0e\xde\x78\xef\xe8\xe0\x9d\xc7\x73\xf1\xa6\x52\xaa\x9b\xb5\x45\x3a\x78\x30\x53\x44\x66\x3a\x36\x95\x23\x93\xcf\x80\x16\x20\x6d\x5f\x8e\xef\x55\x15\x4f\xcb\x54\x1a\xa5\xdb\xbe\x0d\xb7\x9c\xb8\xa6\x14\xe9\x35\xef\xb8\xab\xc0\x2b\x4d\x23\xb5\x7f\xfe\xdc\x65\x0d\xe4\xf1\x36\x59\x5c\xf2\xbb\xae\xa5\xbc\x79\xfe\xae\x36\x63\xfb\x5e\xbe\xf9\xd3\xb4\xb6\xc1\x95\x24\x63\x00\x40\xfb\xfa\xb8\x54\x99\xe0\x6c\x69\x0c\x9d\x0d\x7d\x72\xde\x5c\x69\x71\x9e\xd2\x07\xb6\x01\x21\x6e\x25\xf2\xb5\xd4\x48\x0a\xb9\x80\x30\xf9\x06\x73\x40\xbe\xfd\x77\x33\xb3\xb6\xb4\xa0\xd1\x6e\xc7\x6a\xfe\x43\x0f\x3a\xcf\x9f\x7b\x38\xf7\x95\xd5\x5e\xf3\x33\xcd\x24\x58\x43\xce\xbc\xb8\xf8\x99\x82\x83\xd2\x96\xdd\xe4\x46\xda\xce\xdb\x14\xaa\x0b\xd0\xa4\xce\xb2\x76\xb3\x49\x19\x4a\x31\xb9\xb8\x1c\xe6\x56\x1b\x3a\x76\xf8\x22\x4d\x66\x88\x33\xb4\x62\x64\xd5\xd0\x18\x85\x7a\xb0\xdd\x19\xdf\x7f\xef\x68\xff\x9d\x1f\x1f\xdf\x7f\xf3\xf6\xf2\xe8\xc6\xb0\x99\xec\x98\xbd\x20\xb2\x5f\x63\x69\xe9\x2a\xa5\xf6\xb3\x11\x5e\x0f\x64\x4e\x3d\x1b\x79\x8e\x91\x8d\xfa\x90\x29\x50\x62\x7e\x37\x1d\x81\x06\xd2\x65\xcc\x1f\xfe\xf0\x87\xd5\x1b\x6f\xbc\xa1\x0d\x68\xc9\x82\xab\x3e\x71\x33\x28\xb7\x3a\x48\xf5\x96\xd7\x67\xc9\xbc\x6a\x6b\x5b\x2e\x2b\xa6\x14\x7c\xea\x38\x57\x08\x2e\x90\x66\x68\x25\x99\x6c\xf2\x72\x7e\x1c\xac\x98\x38\xa9\x5d\x52\xf9\x00\xb7\x5c\xb6\x77\xe3\x32\xfa\xb6\x7f\xde\xde\xa5\x51\x68\xd5\xaf\x95\xfe\xd1\xa3\x47\x79\xfd\x78\xee\xb9\xe7\xd4\x1f\xfe\xe1\x1f\x26\x97\x2e\x5d\xd2\x17\x2e\x5c\xa0\x7e\x30\x40\xda\xd9\x53\xe5\x6d\x2c\x30\xa6\xfe\x52\x00\x93\x20\x05\xe8\x39\x70\xc9\x7e\x53\x1a\x05\xdd\x8f\x92\xe1\xd6\xfc\xf8\x51\xbf\x99\x74\x03\xad\xd0\x9c\xa8\x66\x33\x51\xcd\x40\xa3\x01\x14\x7d\xdc\x34\xa8\x8e\xd0\xe8\x47\xc9\xe3\x5b\x2b\x83\xb7\xae\x1e\xeb\xbd\xf9\x70\x7e\x7c\x47\x07\xd8\xcd\x06\x0c\xa6\x4d\xf6\x91\x4e\x13\x0d\x49\xdb\x8b\xcd\x3b\x98\xf7\x98\x4c\x26\xf8\xc1\x0f\x7e\x20\x95\x17\xff\x36\x55\xf1\x92\x7e\xe6\x16\x4d\x5b\xe7\x2c\x0d\xac\xab\x82\xad\x2f\x92\xfa\x1e\x5b\xbd\x74\xdd\xf3\x3a\xca\x03\x6f\x3b\xb6\xf2\x31\xa1\x4e\x3d\x95\xf8\xf2\xe0\xab\x77\xea\x94\x29\xe5\xcd\x01\x98\x24\x23\x20\x00\x38\xb3\xaa\x48\x6a\xa8\x2e\xef\x64\x1e\xa4\x91\x0f\x8d\xa7\xe6\x5a\x9e\x87\x94\x8f\xcd\x22\x43\xa7\x6f\x78\x1e\x81\x40\x63\x93\x91\xf3\xe1\x72\x4a\xf1\xf8\xfa\xd7\xbf\x1e\xac\xad\xa5\xd8\x83\xed\xd5\x62\x96\x3c\xa7\xd6\x16\x8d\x76\x43\xab\xf6\x53\x0f\x3b\x67\x9f\xd9\x9a\xfb\xd2\xea\x7e\xf3\x33\xe1\x24\x58\x87\x2a\xf6\x16\xa5\x90\x3d\x94\x3a\x7f\x13\xac\xd0\x83\xa2\x0e\x62\x26\x49\x95\x91\x2d\x51\x05\x6f\x7a\xda\x9a\x15\xd9\xb0\x4b\x87\xd0\x0a\x80\x56\x3a\xaf\x81\xfd\x66\xd2\xbd\xbf\x34\xba\x71\xe5\x58\xef\xed\x5b\xcb\x83\x5b\xfb\xd1\xe4\x11\x80\x9e\x82\x1a\x64\xa0\xc5\x2c\x75\x36\x53\x42\xf4\x80\xc4\x38\x9b\x16\xa2\x2b\x86\x12\xad\x75\xee\x10\xa8\xa6\x07\xd0\x25\xe9\xeb\x4c\xcf\x43\xf9\xa5\x5f\xfa\xa5\xe0\x4f\xff\xf4\x4f\x8d\x84\xb6\x3a\xc0\x9f\xd9\xda\x85\x94\x86\xc6\x4b\xf9\xf0\xfa\x2f\xd5\x6b\x97\x2c\x2e\x79\xea\xa4\x71\xc9\x26\xbd\x03\x97\x95\xfe\xba\x74\x03\xa7\x73\xb5\x57\x29\xcf\xaa\x50\x6a\xaf\x42\xfe\x3c\x8e\xa7\xab\x7a\xee\xa3\x5b\x24\x39\x0a\xbf\xa4\xde\x61\x32\x99\xe0\x3b\xdf\xf9\x8e\xd9\xb4\x32\xe7\xa3\xa7\x27\x54\xd3\xe3\x06\xe2\x6c\x3f\xa8\x18\xa9\x55\x37\xc1\xd4\xe9\x9c\x1e\x0e\x1a\xd3\xb8\x61\x53\x8f\xae\x1e\xeb\xef\x3f\xea\xc4\xdb\xcf\x6c\xb5\xb7\x9e\xdc\x9e\x7b\xf6\x68\xaf\x79\xb2\x15\xa3\x9d\x36\xe9\xec\x14\xf6\x6c\x19\xa2\x06\x30\x0e\xf4\xe0\xfe\xc2\xe8\xea\xb5\xb5\xfe\xdb\x0f\xe6\xc7\x77\x26\x01\xba\x5a\xeb\x7c\x15\x51\xb6\xe5\x40\x8f\xe5\xc9\x4f\x7b\x4e\x2c\x4b\x9e\xa5\xdf\x3a\xcf\x29\x3f\xdb\x77\xb7\xc5\xc3\x42\x23\x5d\x57\xb5\x15\xa9\x4e\xd7\xe5\xe1\x13\x5f\xb7\xdc\xe0\x78\x5e\x55\x2e\x3e\xe5\x26\x85\xba\xef\x29\xf1\x77\xe9\xad\x42\x1a\x63\x71\xa1\x08\x87\x76\x53\x3c\xf8\x22\x2b\xc9\x94\x45\xcd\x40\x75\x78\xd9\x64\xa0\x23\x58\x93\x9f\x2f\x6f\x5a\x28\xb6\x91\x17\xc0\x90\xed\x67\x3f\xfb\x59\x45\x9d\x71\x91\x9a\x5c\x1b\x98\x4e\x11\xb5\x94\x52\x51\x00\xb4\x9f\xda\x9e\x3b\xfd\xc2\x07\xf3\x5f\x3d\xde\x8d\x7e\x31\x9a\x04\x27\xcc\xea\x43\x2f\xe0\x61\x01\x2d\xb6\x50\x62\x5c\x32\xfd\xce\x18\xf8\xb4\x13\x07\x29\x42\x70\x61\x1c\x13\x92\x00\xf1\xf6\x5c\x7c\xef\xea\x7a\xef\x07\x3f\x3a\xb9\xff\xc3\x3b\x47\x86\x37\x87\x4d\xbd\x8d\xd4\xd9\x76\x2f\x33\x47\x9b\x69\xa1\x3d\xa4\x53\x43\x46\x51\x9a\xd5\x42\x43\x90\x95\x42\x6a\xba\xfa\x22\x37\x4f\xd3\x15\x42\x17\x2f\x5e\x4c\xce\x9f\x3f\xaf\x5e\x7b\xed\x35\x0d\x00\xd7\xae\x5d\xa3\x75\x94\x5b\x51\xcc\xab\xd0\x6b\xa9\x5d\x48\x23\x74\x73\xcd\xeb\x29\xe5\xc9\xad\x1d\xb4\xbe\x25\x2c\x1f\x57\x9a\x84\x3c\xa3\x41\x4a\x63\x33\x51\x27\x1e\x69\xb8\x3c\x74\xf4\xa3\x84\xf4\xb6\x20\x8d\x36\xf9\xb5\x09\x55\xa3\x50\x17\xef\x3a\x81\xa6\x93\x78\xdb\x46\x81\xf4\xda\xf6\xbc\x32\xcf\x1f\xfc\xe0\x07\x0a\x80\x7e\xed\xb5\xd7\xf2\x95\x48\x40\x3e\x55\x94\x12\xa7\xe0\x5b\x03\x25\x87\x72\x6a\x65\xc9\x57\x21\x61\xba\x72\x2e\x01\x39\x72\xa0\x1f\x25\xbd\xad\x85\xf1\xa3\x6e\x2b\xd9\x51\xc0\xa4\x35\x09\x5a\xcd\x49\xd0\x0e\xa0\x94\xca\x37\x75\x51\xd0\x40\xf2\x60\x61\xfc\xee\x5b\x27\xba\xdf\xbb\xb3\x3c\x7a\x6f\xd4\xd4\x3b\xc8\xa6\x69\x55\xba\x6f\xcb\xbe\xf1\x29\x43\x6a\x6d\xa1\x5b\x0e\x24\x44\x4e\x5c\xba\x74\xc9\xb7\x5c\xea\x3e\xe7\xfd\x49\x5d\x7e\x94\x07\xa7\xaf\x92\xd9\xa7\x1e\xdb\x78\xb8\x2c\x38\x2e\x99\x6c\x41\xd2\x47\x36\xde\x36\x30\x50\x37\xcf\x2a\x39\x6c\xbc\xab\xe2\xbd\xf5\x83\x6d\x1f\x97\x3a\x48\xcb\x37\xbd\x0b\x7d\x1e\x46\x5e\x3e\x68\x4d\x92\xc5\x36\x0a\xb6\x22\x66\xe3\xd7\x92\x59\x58\x02\x64\x7e\x2d\x2a\xdd\x38\xaa\xbd\xb1\x1b\xad\x7f\xf4\x83\xf9\x5f\x3a\xb6\xdf\xfc\x6f\xcd\x89\xda\x80\xcf\xe8\xf1\x20\x00\x43\x08\x92\xa5\xc5\x05\x2a\x5c\x40\x43\xce\x40\x46\x45\x1c\xe3\x18\xe7\x5c\x9d\xe5\x32\x08\x93\xde\xfd\xc5\xd1\x8d\xcb\xeb\xfd\x37\x6f\xae\xf4\x6f\x0d\x9a\xc9\xa3\x44\xa5\x2b\x13\x8c\x95\x05\xe4\x44\x59\xb3\x0b\xae\xca\x56\x09\x29\xb6\x17\x0b\xdd\xf1\x56\xb1\x8d\xe2\xf8\xd4\x58\xc5\xe9\xb3\x36\x6b\x00\x20\x7f\xbf\xaa\x11\x3e\xa5\x71\x59\x3d\x24\xde\x55\x23\x50\x9b\xfc\x36\x19\x7d\x2d\xa5\x3c\x1f\xc9\x2a\xe2\x3b\xc2\x93\x2c\x48\x75\xda\x3f\x2f\x2f\x13\x67\x1b\xa5\x49\xbc\x6d\xd6\x59\x1e\x5c\x16\x23\x5b\xe0\xbc\xab\xe8\x2a\xc3\x57\xbe\xf2\x15\xb1\x2e\x64\xf5\xda\x58\x77\x81\xe2\x19\x47\x11\xb9\x8e\x49\x5c\x9c\xb5\x97\x0e\x7d\x36\x6c\xe8\xf8\xe6\xca\xa0\xbf\xd7\x8a\x77\x76\xe6\xe2\xcd\xa7\x1e\xce\x3d\x77\xb4\x17\x9e\x8a\x26\x41\x3b\xf5\xb6\xd1\x78\x3c\x17\xdf\xbe\x7a\xac\xf7\xda\x9d\xe5\xe1\xb5\x41\x98\x6c\xa3\xb8\x1b\x2e\xdf\xaf\x25\x06\xe4\x0d\xe6\x3c\x82\x4d\x07\xe7\xef\xee\x48\x5b\x55\x9f\x5c\x16\x00\x93\xbe\x4a\xd6\x59\xac\x08\x55\x6d\x4e\xa2\x43\x05\xad\x4f\xbe\x12\x8d\x2f\x6f\x5b\x3f\xc8\xf9\x4a\xf4\x3e\x3a\x46\x7a\x57\x9f\x72\xb5\xf6\xd1\xa1\x23\x51\xdd\x50\xa5\x9c\x7d\x0b\xdc\x56\xd8\x2e\x7e\x36\xe5\x61\xa3\xa3\x05\x47\x0b\x86\x5f\xe7\x72\x90\x33\x4a\x02\xfa\x47\x77\xba\x54\x1a\xed\xa5\x41\xb8\xf4\xf1\x3b\x0b\x9f\x3f\xde\x8d\x7e\xb1\x15\x07\x27\x15\x50\xbd\x8b\xa5\x25\x48\xb3\x3f\x5e\xbb\xd1\x0a\x34\x2e\x60\x42\x79\xfa\x02\x18\x4e\x57\x94\x95\x3a\x01\xa7\xa0\x65\xa2\x74\xbc\xd7\x8e\xb7\xdf\x5f\x1e\x5e\xb9\x72\xac\x77\xe5\xc1\xc2\xe8\xde\x28\xd4\x8f\x35\xd0\xd3\xd0\x5d\x05\x35\xc8\x14\x63\x0e\x5a\x30\x3d\x5b\x68\x80\xa9\xe9\xdb\xcc\xa1\x1b\x65\xed\xec\xdc\xff\xf6\x6f\xff\x16\x37\x6f\xde\x74\x75\xda\x2e\xd3\xac\xf4\xdc\x66\x1a\x96\x82\x04\x04\x5c\x79\xf9\xc4\xd3\xe7\xbe\x4a\xde\x96\x37\x7f\x4e\xf9\x70\x7a\x17\x78\xe2\x6d\xb7\x0a\xd4\xd9\xf2\xaa\x63\x56\x76\xe5\x23\xc9\x2c\xc9\x66\xe3\xed\x52\xf8\x92\x7e\x70\x81\x17\xef\x8e\xef\x6f\xfe\xe6\x6f\xf2\x38\xb6\x91\x1d\x7f\x4f\xaa\x83\x80\x6c\xf3\x3a\x4c\x01\x4c\x1b\xe4\x84\xf3\xc2\xd4\x91\x42\x67\x12\xe8\xd1\xf6\xfc\x78\x34\x0a\x93\xee\x5e\x6b\xb2\xfd\xcc\xd6\xdc\x73\x27\x77\xa3\x73\x73\xe3\x60\xb5\xdf\x4c\xb6\x6e\xac\x0e\x5e\x7b\xef\xe8\xe0\x72\xaf\x99\x6c\x43\x15\x0e\x2b\x35\x53\x44\x39\x68\x21\x03\x87\x52\x5b\xbc\x76\xed\x9a\x54\x1e\x36\x40\x6e\x6b\x57\xae\x7e\xa5\xaa\xc3\x74\xe5\xe9\x13\x5c\x75\xd1\x35\xf0\xa5\x34\x9c\x97\x53\x5f\xc1\x2e\xb7\xab\x1c\x6c\xb2\xf1\x7a\x4f\x83\xad\x7d\xbb\x82\x4d\x1f\x54\xc9\xc6\xaf\xeb\xbe\x4b\x49\x06\x5b\x1f\xe5\x83\x7c\x7c\xd2\xcd\x4a\xe3\x13\x7c\x65\xf2\x95\xa1\xc4\xaf\xd5\x6a\x05\xc3\xe1\x30\xa1\xa0\x25\x9b\x26\x0a\x40\x56\x10\xa9\x74\x0b\xee\x76\x67\x14\x2c\xbd\x74\x7b\xf1\x67\x9e\x7d\xd0\xf9\x66\x67\xd4\xf8\x48\xa0\xd1\xce\x97\x16\x82\xbb\xe3\x16\xed\xed\x85\x8e\x5f\xa0\xf5\x09\xb9\x45\xc5\xb1\x7a\xa8\x40\xab\x61\xf5\xa5\x71\xc9\x90\xcb\xaa\x01\xad\x38\x5d\xfa\x74\x6a\xdd\xd1\x18\x35\x92\xc1\xc3\x4e\x7c\xf7\xc6\xd1\xfe\x95\xf7\x8e\x0e\xae\xee\xcc\xc5\x0f\xe2\x40\xa7\xa3\x38\x68\x6a\x6d\x19\x50\xe0\x42\xf6\x61\x19\x01\x48\xb2\x7b\xd3\x20\x0d\x78\x49\x74\x71\x77\xd2\x7c\x05\xc3\x93\x4f\x3e\x19\xdc\xb9\x73\x07\x71\x1c\x57\x75\x90\xd2\xe8\x59\x02\xd1\x2e\x50\x6d\x8b\xb7\x29\x37\x9a\xc6\x05\x1a\xaa\xe8\xa4\x74\x52\x1a\x7a\x3f\x4b\x3e\x55\x69\xa4\x7b\x4e\x0f\x8f\x78\x29\x1c\x96\xce\x38\xcc\x7c\x0e\x7b\xa4\x2c\x06\x36\x60\xa2\xfc\x68\x3c\xb5\xfc\xe6\xab\x1a\x51\x3c\xef\xa8\x5d\xb8\xd6\x88\x02\x9d\x1e\x41\x72\xac\xdb\x3c\x76\x6e\xab\x73\x6e\x63\x37\x7a\xfa\x71\x3b\xbe\x7b\xe9\xf4\xde\xbf\x3f\x58\x18\xdf\x8d\x03\xdd\xcd\x80\x8b\x59\xf6\x3c\x60\x03\x0b\x33\x98\x48\xd8\x5f\x69\xa7\x69\x8f\x32\xf8\x69\x7d\xe3\xc3\xc8\xff\xb0\xfa\x9c\xba\x69\xfe\x33\xb6\x99\x3a\xf9\xb9\xfa\xdd\x5a\xf9\x48\xab\x8a\xf8\x1c\x19\x65\x2c\xcd\xe9\xd2\x40\xe7\x83\xf9\x2f\xa5\xa9\x12\xac\xce\xfc\xa4\x34\xc7\xe7\xe2\x2d\xf9\xdf\xd0\x77\x54\x00\x74\xa7\xd3\x09\x06\x83\x41\x02\x00\x2f\xbd\xf4\x92\xca\x68\xcc\x5e\x2d\x81\x52\xaa\xa9\xa6\x9b\xcc\xb5\x5a\xb1\x3a\xf2\xdc\xe6\xfc\x47\x9e\x7d\x30\xff\x7f\x2e\x0e\xc3\x97\x02\x8d\xb9\x29\x68\x01\xe8\x76\xda\x06\x2c\x50\x07\x81\x82\x8b\x0a\x07\x0c\x82\x19\x44\xb4\x8c\xe4\x96\x93\xb2\x43\x8d\x08\x92\x94\xcb\xe7\x76\x1a\xa3\xf5\x94\x7e\x0a\x8e\x52\x78\xa2\x4a\xa6\x1a\x95\xef\xaa\x9b\x04\x3a\xe9\x45\xc9\xde\x07\x47\x46\xd7\xdf\x5d\xef\xbd\x75\xfd\xe8\xe0\xdd\x9d\xb9\xf8\xde\xa4\x81\x3d\x0d\xbd\x6b\x56\x0b\x65\xf3\xe6\xf9\x9e\x2c\xe4\x6f\x84\xd4\x7f\x65\x94\x39\xdd\xc6\x2a\xdd\xdf\x22\xdf\xf5\x96\x38\xdf\x6a\xa0\xa8\x30\xbb\xdd\xae\x9a\x4c\x26\xa6\x23\xa6\xbe\x1b\x34\xae\x54\x2c\x28\xd6\x05\xde\x61\xdb\xe6\x66\x6d\xfe\x0e\x01\xb9\x36\x3c\x79\x3e\xbc\x1e\x2b\x46\x0f\x21\x0d\xed\xc8\xf8\xfc\x34\xf7\x43\xe1\xef\xe4\xf2\x5d\xa1\xef\x69\xa3\x03\xa1\xa3\x6d\x5c\xf2\x39\xe0\xed\xb3\xaa\xdd\x4a\x7a\xc3\xa5\x4f\x38\x0f\x9a\x07\xbd\xf6\xa1\xe5\xef\x67\xbb\xa6\xbe\x48\xb4\x9c\x6c\xfc\xf9\x3b\x54\xc9\x42\x83\x3a\x79\xf2\x24\xc8\x06\x75\xe9\x84\xce\xf4\xb0\x42\xc3\x5b\x63\xfa\x3d\x12\x4c\x7d\x5c\x34\x90\x1f\x22\x6a\xe2\xc6\x50\x98\x68\x85\xf1\x38\xd0\x83\x7e\x94\xec\xed\xb5\xe2\x07\x7b\xad\xc9\xbd\xbb\x47\x46\x97\xef\x2d\x8d\xde\x8f\x1b\xba\x8b\x74\xef\x24\xe3\x90\x9b\x3b\xe3\x22\xf5\x2f\xcb\x57\xee\x81\x00\x16\x00\xfa\xe2\xc5\x8b\xc9\xca\xca\x4a\x30\x18\x0c\x5c\x7a\x9f\xbf\x2f\xf7\x33\xb3\x7d\x63\x5b\x99\x4b\xb4\xbc\xde\x70\x1f\x31\xde\xe6\x78\xbd\xe1\x7f\x92\x1f\x08\x7f\x0f\x5b\x3d\x95\xf8\x54\x7e\x7b\xc6\xcb\xb7\x6e\x4a\x7d\x1c\xa7\x75\xc9\xea\x1b\x78\x1b\x75\xd1\x48\x20\x4c\xd2\x03\x52\x19\x95\xea\x89\x62\x89\x5c\x1d\xba\x2f\x62\xf6\x4d\x73\x10\xf4\x35\xeb\xc8\xc8\xe7\x1d\xb0\xb4\xb4\x84\xdd\xdd\xdd\xfc\x04\x58\xf2\x4c\xf4\x69\x69\x8d\xd5\xd2\xe9\x47\xed\xa7\x3f\x79\x67\xe1\xd7\xd6\xbb\xad\x2f\x87\x09\xd6\x4a\xd6\x95\x1c\x54\x14\x62\xf3\xa3\xe7\x45\x20\x52\xa2\x2d\xfb\x6d\xd8\xa9\xd3\x50\x67\xda\x47\x4a\xc3\xe5\x72\xdd\xd3\xeb\x58\x25\xf1\x5e\x7b\xb2\x7d\xe7\xc8\xe8\xbd\x1b\xab\xfd\xab\xf7\x96\x86\xb7\xf7\xa3\xe4\x51\x02\x9d\xef\xb6\x49\x7c\x5a\xe8\xe1\x88\x85\xa9\x21\x35\x3d\x08\xd1\x4c\x11\xd1\x53\x9a\x13\x00\xf9\x6a\xa1\x8f\x7e\xf4\xa3\x41\x1c\xc7\xb8\x7c\xf9\x32\xe0\x67\xd5\xe0\xf7\x2e\xcb\x8c\x6b\xf4\xe3\xca\x47\x4a\xeb\x0a\x92\x85\xc4\xc5\x9b\xa7\x93\xd2\x48\xbf\x5c\x36\xdf\xf2\x71\xe5\x23\xd1\xdb\x64\xfc\xcf\x10\x0e\x32\xa2\xe5\xf4\x75\x47\x9c\x5e\xfa\x74\x7e\x7e\x3e\xd8\xdf\xdf\xcf\xe9\x88\x05\xc6\xd0\x04\x00\xf2\x55\x8e\xd9\x6f\x88\xf4\x8c\x34\x73\x22\xbd\xb1\xc2\xd0\x03\x1b\x23\xa4\x9b\x64\x86\x0a\x2a\x6c\x68\x84\xad\x38\x08\x27\x0a\xa3\x61\x98\xf4\xa0\x72\x3f\x96\x5e\xd6\x1e\xf3\x93\xd6\x21\xfb\xb6\xc0\xfc\x66\x83\x87\xba\xba\xbc\x4e\xdd\xf0\x6d\x63\x87\x6d\x75\xa8\xdb\x8e\xeb\x58\x98\xaa\xfa\x4a\x58\x9e\x1f\xa6\x4c\x9c\xae\x4e\x99\xd6\xa9\xff\x3e\xdf\xda\x25\x43\xa9\x5f\x73\x29\xb5\x9f\x04\x00\xa9\xe2\x35\x6b\x21\x1d\x54\x21\xe5\x0a\x42\x4f\x8f\xa9\x0f\x32\x45\x60\x94\x42\x5b\x29\xd5\x6e\x4e\xd4\xc2\xf1\xdd\xe8\xd4\x8b\x77\x17\xbe\x74\x66\xa7\xf5\xb5\x56\xdc\x38\x03\x20\x10\x2d\x19\x16\xcb\x09\xca\xd1\xce\xa0\x81\xf2\xee\xba\x0c\x19\x49\x40\x48\x4c\x67\xe3\x5f\x43\x1e\x9e\x76\xdc\x48\x46\x8f\xe6\xc6\xf7\x6e\xad\x0c\xdf\xbb\xb9\x3a\xb8\xfa\x60\x7e\x7c\x77\x18\x26\x8f\xa1\x72\x93\xb3\x01\x2e\xc6\xaf\x85\x82\x16\xb3\x45\x3f\x5d\xe6\x0c\xb2\x43\x28\x80\x29\x68\xf1\x34\x49\x4b\xf5\xc1\x84\x59\x94\x6c\x55\x9c\x2b\x9d\x0d\x20\x01\xf5\xf8\x54\x05\x57\xdb\xb1\xe5\x35\x4b\xc7\x6d\x78\x1d\x44\xa1\x49\xb4\xb3\x94\x2b\x0d\x55\x7c\x7e\x52\x20\xca\xf7\x9b\x56\x81\xe3\xd2\xf5\x85\x0b\x17\x82\xef\x7f\xff\xfb\x09\x50\x39\x85\x54\x3a\x75\x1a\xc5\xe9\x23\xfa\x67\x00\x8e\xe1\x43\x7d\xc9\x4a\x87\x96\x66\xed\x73\x44\x7c\x67\x24\xd0\x52\xf9\x2e\x42\x39\xf8\xdc\xd7\xd5\xeb\xbc\x9d\x57\xc9\x65\xe8\x7c\x06\x2e\x3c\x1f\xdf\x4e\x98\xe7\x21\xd1\xf8\xe8\xaf\xc3\x00\x2b\x55\x83\x99\x59\xf9\xd7\xd5\x05\xae\x41\x8e\x09\x85\xef\x50\xd5\x3f\xd5\x41\x81\xb3\xa0\xb4\x2a\x9e\x12\x0f\xdf\x4a\x55\x25\x5f\x29\xfd\xca\xca\x4a\xf0\xc2\x0b\x2f\xe0\xf9\xe7\x9f\xcf\x79\x18\xe0\x42\x1a\xb7\x19\xa9\xb4\x1b\x5a\x75\x8e\xee\x37\x37\x3e\x72\x7f\xfe\x33\x1f\x7a\xd0\xf9\xb5\xce\x28\x78\xd1\x9c\xf6\x5c\x19\x6c\xe8\xc0\x81\x1a\x0a\xd6\x0d\xd1\x82\x53\x26\x74\x5a\x4c\x7c\x11\x8a\x83\x1f\x25\xd1\xd0\x18\x86\xba\xf7\x60\x61\x74\xfb\xc6\xea\xe0\xca\xfb\x2b\x83\x1b\x8f\xe6\xe2\xfb\x71\x43\xef\x62\x7a\xa6\x09\x9f\x2b\xef\x11\x65\x58\x58\x35\x84\xe9\x68\xae\x30\xaa\x33\x3e\x2d\x02\x68\x01\xfc\x1b\xe3\x61\x29\x11\x5b\xfe\x55\xf7\x36\x00\xe3\xcb\x5b\x52\xca\x12\xed\x2c\x8a\xc5\xd5\x56\x5c\x32\xf9\xc8\x5c\x47\x71\xf9\x74\x7c\xbe\xf4\xde\x00\xc1\x91\xce\x97\xc6\xf5\x5e\x2e\x1e\x10\xe8\xad\xe5\x2b\x0c\xae\x4a\xfb\x4b\x61\xea\xf7\x92\x83\x98\x6c\xd0\x15\xd2\x81\x18\xc9\x27\xc1\xb4\xfd\x0d\xb2\x01\xc3\x00\xd3\x55\x4a\xb4\x6d\xc6\x54\xe6\x9b\x37\x6f\xe2\xd2\xa5\x4b\xd8\xda\xda\x9a\xe5\xdd\xea\xe8\x73\x1b\xe0\xb0\x85\x3a\xf5\xc7\x07\x28\xd9\xde\xeb\x20\x75\xdd\xf0\x39\x2c\x1e\x12\x3f\xe9\x1d\x5c\x72\xcf\xda\x8e\x6c\xb2\xd6\xd5\x9d\x56\x1e\xae\x4e\xd6\x47\xe1\xf9\x22\x43\x57\x45\x30\x7c\x5c\x05\x5c\x15\x66\x05\x2d\x85\x3c\x4f\x9e\x3c\x89\x7f\xfd\xd7\x7f\x4d\x9e\x7f\xfe\x79\xe3\x84\x0b\xa4\xe0\x25\x20\xe0\x25\x9d\x26\x82\x8a\x16\x46\x8d\xe5\x33\x3b\xed\x8f\x3c\xb9\xdd\xfe\x85\xb9\x71\xf0\x9c\x12\x40\x4b\xd9\xea\xa2\x53\x1f\x17\x65\xf1\x2e\x51\x29\x00\xc8\xb7\xcf\x4f\x93\xe4\xfe\x28\x39\x19\x01\x12\x00\x39\x5f\x24\x7b\x96\x02\x9b\x32\xff\xe9\xb4\x4e\x85\x03\x2f\xcd\xdc\x03\x21\x69\x68\xf4\x9b\xc9\xee\x07\x4b\xa3\x1b\xd7\xd6\x7a\xef\xdc\x59\x1e\xde\xe8\x46\x93\x87\x49\x00\xb3\xfb\x6d\x0f\xd9\x92\x4a\x4c\x37\xb0\x32\x0e\xb8\xe6\x6c\x21\xae\x14\xcd\x46\x56\x26\xc3\x04\x00\x36\x37\x37\xd1\xef\xf7\x4d\x9c\x54\x87\x7c\x1b\x57\x22\xa4\x05\xfc\xea\x68\x1d\xe5\x20\xd5\x65\x29\x5d\x55\x07\x59\x25\xa7\xd4\xe8\x5d\x8a\xcc\x95\x86\x07\x9f\xf7\xa5\x74\x86\xb6\xea\xfd\xaa\x80\x1e\xcf\xd3\xa6\xf8\x6c\xf9\x48\x65\x55\xe7\x5a\x92\x85\xca\xe9\x92\xdf\xf6\xdc\x16\xaa\xea\x44\x81\xbf\x01\xee\xd9\x94\x76\x92\xf9\xde\xd1\x7a\x42\xbf\x99\xf9\x0b\x33\x1a\xa3\xcb\x0c\xb8\x01\xa3\x1d\x21\x6d\x93\xf9\xea\x21\x14\xa7\x6c\xa9\xb5\x85\x5b\x5a\xa4\xf7\x72\x05\x1f\x80\x5c\x37\xde\xa9\xeb\x19\x8d\x8d\x8f\xad\xbd\x49\xdf\xa7\xea\xbb\xd9\xe2\xeb\xbe\x73\x55\x1f\x5b\x15\xea\xb4\x87\xba\xe9\x5c\xef\x52\x47\x47\xba\xf4\x5c\x02\x14\x91\xb6\x4d\x50\x89\x81\xad\x32\xd8\x1a\xb9\xeb\x5e\x02\x19\x92\xb0\x2e\xc5\x69\x93\x93\xe7\xeb\xac\x88\x6f\xbd\xf5\x56\xbe\x82\xc8\xec\xd5\x82\xe2\xa8\x25\x32\xcb\x9f\x5b\x71\xb0\xf0\xc4\x4e\xeb\xe9\x73\x5b\x73\xff\x75\x71\xd8\x78\xa9\xa1\x55\x27\xcf\x8d\x74\xf6\xa5\x2e\x5f\x51\xef\x97\x32\x20\x48\xa1\x40\x31\xad\x12\x4c\x26\x14\x92\x88\x1c\x33\x47\x59\x7e\x02\x33\x84\x34\xe5\xfc\xa7\xc4\x06\x12\x99\x69\xa6\x14\x14\x69\x72\xa6\x89\x86\x06\x92\x5e\x94\x74\x6f\x2f\x0f\xae\xbc\xb3\xde\x7b\xf3\xde\xd2\xf0\xf6\x20\xd4\x8f\xcc\xd4\x10\xb1\xae\x74\xb3\xd1\x5b\x61\x17\x5c\x97\x95\x85\xef\xcd\x62\xb1\xb2\x00\xf6\x7a\x0a\x12\x67\xeb\x34\x7c\x94\x41\xe0\x78\xc6\x83\xab\xfe\x51\x5e\x5c\xa6\x2a\x45\x5a\x95\x47\xd5\x88\x46\xe2\x21\x81\x2a\x57\xe7\x63\x1b\x85\xb9\x64\xa3\x7c\x5d\x72\xdb\xbe\x17\x2d\xef\xaa\x51\xa0\x0f\x4d\xdd\x72\xe2\xef\x60\x64\xa2\xbf\x55\x72\x4b\xcf\xb9\xbc\x75\xe4\xce\xaf\xf7\xf7\xf7\x31\x3f\x3f\x0f\x0b\x5d\x6c\xf2\x33\xbb\xd9\x12\xbe\x46\xff\x4b\x60\x33\x01\xd9\xff\x85\x00\x95\x04\x28\x5a\x3d\x99\xdf\x0d\x7d\x27\x29\x54\x01\x81\xaa\x0e\xce\x15\x6f\xe3\x5d\xb7\x8f\xf3\x01\xd3\x52\xdf\x97\xc7\xad\xaf\xaf\x07\x9b\x9b\x9b\xce\xef\x26\xa4\xb3\xd5\x0b\x9b\xcc\x10\x9e\xdb\x06\x11\x07\x0d\x75\xda\x91\xab\x3c\xb9\xfe\xb4\x81\x15\x1b\x3f\x00\xe9\xce\xb9\x2e\x0f\x7d\xb0\xe7\x26\x5e\xf2\xc2\xb7\x79\xd6\xbb\x78\x73\xfe\xe6\x5e\xf2\xa4\x76\x79\xa0\x73\x2f\x6a\x13\x27\x79\x9f\x73\x4f\x73\xdd\x6e\xb7\x83\x38\x8e\x35\x39\x83\xc8\x34\x66\x63\x6d\x69\x20\x3d\x87\xa8\xa9\x94\x6a\x35\x12\xcc\x9f\xde\x69\x9d\x7d\x7e\x73\xfe\xf3\xeb\xdd\xe8\xf3\xd1\x24\xd8\x28\xc0\x80\xaa\xa5\xc8\x0e\x23\x46\xd5\xcc\x0d\x5d\x91\xe4\xa2\xcf\xc1\x86\xa2\x74\xba\x08\x44\x4a\xcc\xcb\x20\xa9\x90\xde\x5c\x2b\x05\x9d\x71\xd1\x0a\x49\x2f\x9a\xec\x5e\x5f\x1d\xbc\xf5\xe6\x89\xfd\x1f\xdc\x5b\x1a\xbd\x3f\x6a\xe8\x9d\x6c\x45\xc2\x1e\x50\x38\xd5\xb9\x8f\xf4\x7c\xa1\x41\x76\x3d\xcc\x56\x3a\x8c\x30\x3d\xe9\xd6\xec\x02\x6a\x56\x47\xe0\xe2\xc5\x8b\xc9\xb3\xcf\x3e\xab\x86\xc3\x21\xde\x7c\xf3\x4d\x5b\x7d\x29\x7d\x57\x94\xeb\x85\x6d\x65\x00\xf7\xac\x97\x3c\xfc\xb9\x1f\x72\x40\xe8\xa4\xfa\x4a\xf3\xe0\x72\xd1\x34\x09\xb9\x96\x78\xf3\x46\xeb\xf2\xde\xa7\xcf\xb9\x1c\x54\x56\x1a\x68\x75\x48\x48\x5c\x82\x22\x2f\xd7\xfb\xb9\xde\x19\xc2\x33\x9a\x2f\xe7\xc3\x79\xf1\xef\x2a\xe5\xeb\xfa\x7e\x2e\x19\x7d\x03\xfd\x1e\xd2\x8a\x0d\xe9\x7b\x71\x99\x6c\x3a\x55\x3b\xe2\x5d\x72\xe7\xd7\x8d\x46\x43\xfd\xf5\x5f\xff\x35\x3f\xc0\xd1\x1c\x41\x9d\x00\xf9\x79\x47\x40\x0a\x3a\xcc\x8a\x3c\x73\x72\xba\x39\xef\x28\x06\x30\xce\xe2\xe9\xaa\x21\x71\x40\x61\x06\x11\x64\x77\x5c\x2a\x17\x2d\x27\xdb\xbb\xf3\x20\xd5\x4f\x5b\x1d\x54\xec\xd7\xc5\xdb\x56\x86\x54\x4f\xd8\xfa\x17\x5e\x07\x4d\xba\x04\x00\x16\x17\x17\x83\xd1\x68\xa4\xb3\x6b\x65\xae\xf7\xf7\xf7\x2b\xbf\x9b\xe5\x1d\xab\x64\xa5\xf9\x4b\x3a\xcf\xd6\xee\x69\x1d\xf5\x0d\x55\xf5\x91\xf7\xc3\x89\x40\xc3\xf5\x9a\x04\x4c\xaa\x78\x97\x64\xae\xb3\x73\xae\x0b\x69\xcd\x82\x0c\x6d\xc1\x36\xda\xf5\x41\xaf\xae\xfc\x25\x59\x12\x00\x18\x0c\x06\x89\xcd\xd9\x8d\xcd\x05\x47\xd0\x88\x8e\xef\x45\x6b\xcf\x6c\xcd\x7d\xea\xf8\x6e\xf4\xd9\x28\xdd\x64\x0e\x40\x19\x0c\x88\xe0\x00\x28\xae\x22\x12\x12\xf1\xbd\x55\x28\x2d\x07\x16\x1a\xfe\x20\x88\xee\xb8\x22\x3a\xee\xf2\xa9\x21\x87\x9f\x0c\xa0\x91\x28\x24\xfb\xd1\x64\xe7\xbd\xb5\xfe\xeb\x3f\x3c\xd9\x7d\x6d\xb7\x1d\x3f\x48\x94\xee\x21\x5b\xde\x4c\x9c\x70\x8d\x7f\xcb\x88\x6d\x60\x95\xa0\xb8\x89\x95\x19\xcd\xe5\xd3\x43\x46\x39\xfe\xd9\x9f\xfd\x99\x41\xe4\x52\xdd\x03\x8a\x75\xc6\xc7\x6a\x41\xd3\xd9\x46\x29\xae\x91\x80\x4f\xfd\x74\x05\xce\x9b\x8f\xd4\x5d\x69\xaa\xd2\xdb\xd2\xb8\x82\x6d\xa4\x69\x9e\xd9\xda\xb3\xaf\x95\xc0\x57\x0e\x9e\x87\x34\x8a\xe6\xb4\x5c\x5f\xd8\x78\xd6\x91\x53\x1a\x19\x73\x99\xa4\xbc\x7d\x46\xec\xae\x7b\x9f\xd1\xbd\x89\x03\x80\xe4\x87\x3f\xfc\xe1\x34\xf3\x24\x41\xa3\xd1\x00\x52\x70\x91\xa7\xcd\xae\x63\x20\x3f\xfb\x28\xc9\xa6\xbf\x91\x4d\x31\xf1\xf7\x34\xd7\x31\xb5\xd4\xd0\xb3\xbf\x4c\x88\xa2\x28\x18\x8d\x46\x3e\xdf\xb8\x6a\x44\xed\x3d\xe2\x66\x32\xd6\xb1\x06\xf0\xb4\x94\x87\xb3\x2e\x35\x1a\x8d\x20\xdb\x5e\x21\xf9\x9d\xdf\xf9\x9d\xe0\x8f\xff\xf8\x8f\x93\xdf\xfc\xcd\xdf\x34\x7e\x45\x05\x5f\xa3\xaa\x60\xf4\x1a\xe1\x59\xb8\x16\xde\xa1\xaa\x5e\x49\xf1\x52\x7a\x1b\x8d\x6f\xfb\xb0\x05\x1b\x9d\xad\x6d\xd8\x74\x9d\x57\x1d\x99\x75\xf1\x88\x14\xea\x28\xa6\xc3\xe0\x7d\x90\xce\xa2\x14\xf8\xce\xb8\x74\x59\x21\xc8\x46\x4e\x2b\xbd\x70\xf5\x63\x77\xe7\x7f\xfe\xdc\xc3\xce\xaf\x2e\x0c\x1b\x9f\x08\xb4\x6a\x4b\xfc\x6c\xa0\xc5\xf7\x79\x5d\xba\x59\xc2\xac\x32\x68\x68\x4c\x02\x8c\x76\xe6\xc6\x5b\xef\xae\xf5\x7f\xf8\xc6\xc9\xfd\xd7\x7b\xcd\xc9\x23\x9d\x2d\x75\x36\xfb\xb2\x98\x3f\xb2\x9c\x92\x6e\x15\x9e\xa0\xe8\xc7\x92\x10\x05\x99\x37\xec\xdf\xfd\xdd\xdf\x0d\xfe\xe8\x8f\xfe\xa8\x4a\x29\xda\x1a\x61\xdd\xce\x72\xd6\xce\xc6\x87\x9f\x4f\x1a\x4a\x07\x07\xed\x41\x78\xd7\x49\x6f\x53\x32\xae\xf2\x3d\xc8\x37\xf0\x91\xf3\xb0\x42\x1d\x70\x55\x57\xd7\xcc\xda\x91\xda\xea\x98\xaf\xfe\x2b\xd0\x09\x4b\xa7\x0b\xbf\xa6\xc3\x25\xd7\x12\x08\xcb\x3b\x3e\x33\xa0\xa8\xb1\x92\x0f\x42\xfc\x61\x84\xba\x9d\x9e\x8b\x8f\x4b\xee\xfc\xf9\xca\xca\x8a\x39\xe1\x1b\xdf\xfe\xf6\xb7\x03\x5a\x06\x96\xa9\x32\xa7\xcc\x3c\xbd\x63\x0a\x5c\x92\xb5\x4e\xdb\xf2\xa9\x83\xb3\xd6\xd7\x59\xc3\x81\x75\x82\x74\x3a\x74\xdd\xc6\x62\x82\x6f\xe7\x62\xbb\x77\x05\x89\xce\x86\xea\x7c\xf8\x94\xf2\x66\xcb\x9e\x03\x64\x7e\x2d\xda\x9c\xf8\x0c\xb4\xdb\x71\xa3\x73\xee\xc1\xdc\x0b\x67\x76\xda\x9f\xef\x8c\x82\x8f\x28\x8d\x02\x68\xa1\x1d\x7c\xd9\x42\xe1\x0f\x64\xb8\x1d\xd4\x46\x37\x4b\xa0\x3b\xe2\xda\x2c\x45\x3c\x70\xd0\x32\x6a\xe8\xc1\x83\x85\xd1\xad\xcb\xeb\xfd\xd7\xdf\x3d\xd6\x7b\x67\x10\x26\x8f\x31\xdd\x12\x9c\x5b\x5b\xa8\x85\xc5\xac\x4e\xc8\x1d\xfc\xa8\x09\x1b\x40\x61\xd7\xdf\x66\xb3\x49\x4f\x70\xe6\x81\x77\xaa\x3c\x1e\x28\xd6\x49\x51\x21\x09\x69\xe8\xa8\x8b\xa6\xb1\x8d\x60\xa4\x06\x0f\x54\xf3\x97\xe4\x91\x46\x50\x9c\xce\xf6\xcc\xf5\xae\x5c\x1e\x1a\xf8\xfb\x26\x2c\xce\x04\x57\x7a\xe9\x79\x15\x00\xa8\x0a\x87\xad\x38\x6d\xba\xcb\x36\x6a\xa5\xa1\xae\xae\x91\xf8\xd5\x01\xa1\x2e\x3e\x2e\x99\x24\x9d\x46\x4f\x48\x2f\x8e\x5a\xd3\xc1\x42\xa0\xb2\x43\x49\x6d\x79\x98\x36\xea\x70\xe6\x97\xea\xfa\x4f\xaa\xd3\xe3\xf9\xd9\x82\x4f\x27\xec\xdd\xaf\x18\xd0\x62\x82\xcb\xaf\xc7\x67\xe7\x72\x4f\xb0\x53\x25\x57\x9d\xba\xe8\xa2\xb7\xd5\xd7\x9f\x14\x90\x39\x08\x9f\x04\x98\xbd\x0f\x3c\xa8\x85\x63\x96\x42\xf0\x05\x54\xb5\xf2\xfa\xe6\x37\xbf\x19\x34\x9b\xcd\x02\x70\x41\x71\x09\x61\xbe\x55\xf6\xf3\xf7\x3a\xcf\x7d\xe4\xde\xfc\xaf\xad\x77\xa3\x2f\x44\x13\xb5\xa1\x3c\xba\xfe\x02\x20\xd1\x53\x5f\x91\x99\x01\x88\x25\xa1\x04\x7c\xbc\xd8\x78\x0a\x62\xa6\x87\xfa\xcd\x64\xf7\xde\xd2\xe8\xc6\xe5\x63\xbd\x37\x6f\xae\x0e\xde\x1b\x84\xc9\x23\x14\xb7\x05\xcf\x37\x96\x63\x1b\x56\xd1\xb3\x4d\xf2\x39\x73\x09\xb8\xb0\xc3\x10\x7d\x46\x73\xbe\xa0\xa4\x2a\xcc\x32\x2a\xa6\x71\x75\x41\xd2\x4f\x53\x1e\xdf\x11\x5a\x55\x5e\xa8\xc9\xcb\x05\x18\x00\x77\xbb\xa5\x79\xb9\x68\x6d\x79\x01\xee\xbc\x41\x68\x7c\xc0\x2c\xbd\xae\x2a\x0b\x9a\x87\x4b\x6e\x1f\x40\xe5\x93\xae\x94\xcf\xd2\xd2\x52\xb0\xbb\xbb\x9b\x00\x00\xf3\xdf\xb3\xc9\x49\x83\x08\x44\x2f\x5e\xbc\x98\x7c\xe3\x1b\xdf\x08\xfe\xf2\x2f\xff\xb2\xce\xb7\xaf\xf3\x2e\x07\xe1\x37\x6b\x59\x3a\xe9\x49\xd9\x71\x7a\xe9\xda\x07\xb8\x70\x80\x59\x00\x8e\x15\xdb\x3c\xb8\xc2\xa1\xd6\x9f\x0a\x7e\xbe\x7a\x4d\x6a\x2f\x55\xe9\x5d\xed\x3d\x05\xdd\xc2\x03\x57\x38\xec\x51\xd0\x61\x84\x03\x81\x23\xb2\x3b\x6e\xc0\x80\x0b\x3d\xeb\xa3\xbd\xb1\x1b\x9d\xfc\xc4\xed\x85\x5f\x3e\xbd\xd3\xfe\xef\x73\xe3\xe0\xe9\x00\x2a\x02\x50\x1b\x31\xfc\x24\xa6\x7e\x0e\xc2\xd3\x80\x29\x97\xaf\x0c\x00\x24\xd0\xe8\x45\x93\x9d\x3b\x47\x86\xef\xbd\x7b\xac\xff\xe6\x9d\x23\xc3\x5b\xfd\x66\xf2\xd0\xac\x1c\xca\xfe\x0a\xd3\x43\xc6\xd2\x92\x2d\x79\x2e\x1c\x7b\x6f\xfe\xe8\x9c\xb9\xd6\x1a\xef\xbd\xf7\x1e\xfe\xe1\x1f\xfe\xa1\x0a\x84\xda\x3a\x35\xdf\xc6\x50\x87\x8e\x5f\x03\xd5\x0d\x9c\xe7\x33\x8b\x25\x44\xe2\xef\xe2\x6d\xa3\xf3\x0d\x07\x79\x57\x57\x5e\xff\xbb\x75\x86\x4f\xe7\x79\xd0\x8e\x75\x56\x80\xe9\x9b\xb6\x4e\xb0\x76\x36\xc2\x28\xbf\x64\x21\x60\xd7\x3e\x1d\xea\x61\x85\xba\xe5\xe0\xaa\xff\x87\x92\x07\x9f\x6a\x23\x9b\x5f\x9a\x78\xfe\xcb\xf3\x02\xcd\x4f\xf0\x0f\x4a\xe8\xaf\x79\x4e\xbf\x81\x29\xf3\xa7\x9e\x7a\x2a\xb8\x7e\xfd\xfa\x7f\x86\x76\xe4\x1b\x4f\x9f\x43\xa0\x99\x75\x00\x17\x00\xee\x7d\x5c\xa4\x70\xd8\x0d\x8c\xf3\x9d\xa5\x70\x0e\x2c\x93\x6b\xc3\x26\xad\x75\xb4\x30\x6a\x2c\x3d\xb3\x35\xf7\xe2\xf1\x6e\xf4\x99\x76\x1c\x9c\x52\x06\xb4\x00\x05\xc4\x60\x0e\x50\xb0\x5a\x32\xb8\x73\xed\x34\xda\x0f\x78\x68\x96\x47\x59\x84\x4a\xe6\x7c\xda\xca\x58\x80\xa8\x5f\x2e\x97\x27\x81\xc6\x7e\x6b\xb2\x7d\x7b\x79\x78\xf5\xea\x5a\xef\xed\xbb\x4b\xa3\x5b\xfd\x66\xf2\x28\x3b\xd5\xd9\x58\x59\xcc\x14\x11\x3d\xd3\x24\xdf\x9f\x85\x38\xe0\xc6\xb4\x01\x9b\x86\xfa\xca\x2b\xaf\x24\x67\xcf\x9e\x0d\x6e\xdc\xb8\xe1\x3b\x62\xf2\x01\x04\x55\x48\x3f\xb0\xd0\xd9\x46\xa5\xf4\xd9\xac\x8a\x96\xca\x4f\x79\xd3\x78\x2e\x33\xff\xe5\xd7\x9c\x7f\xdd\x91\x50\x82\x32\x6f\x69\x44\x69\xa3\xb3\x95\xad\xaf\x2c\xd2\x73\x1f\x10\x56\x27\xef\x2a\xf0\x22\xf1\xa6\x3c\xa4\xb4\x52\xfd\xb1\xc9\x2a\xf1\xb6\xc9\x35\xab\xb2\xb7\x75\xa0\x09\x90\x76\x82\x5f\xfd\xea\x57\x83\xbf\xfa\xab\xbf\x4a\xe8\xe9\xd3\x14\x9c\x48\xd7\x17\x2f\x5e\x4c\xce\x9e\x3d\x2b\xf1\x96\x64\x95\xea\x73\x9d\x77\xb0\xca\xef\xc9\xc3\x36\x40\xf1\xee\x5b\x28\x60\x21\x7e\x40\x05\x57\x02\x66\xbd\x0a\x38\x2d\x84\x6f\x48\x2c\xcb\x79\x3b\x35\xfb\xef\x08\x74\x00\x90\x2f\x1a\x79\xf8\xf0\x21\xae\x5f\xbf\x6e\x93\xdb\x56\x57\x6d\xf5\x8a\x86\x3a\x03\x27\x5b\xbe\x2e\xfa\x83\xf0\xe7\x32\xe6\xef\xc5\x81\x4b\x1d\xf4\x2a\x65\xce\x83\x2b\xbd\xef\xa8\x4d\x2a\x7c\x9b\x8c\xae\xd1\x55\xa9\x22\x65\x95\x82\xff\x4d\x81\x8b\x46\xd4\x4c\x82\xf6\x93\xdb\xed\xb3\xa7\x77\xda\xbf\xb0\x30\x6c\x3c\x1b\x68\x90\xfd\x5a\x60\x5d\x79\x23\x4e\xe7\x94\x4e\x52\xae\x69\x2d\x51\x80\x72\x6e\x08\x27\xf0\x65\xf2\xd9\x40\x95\xb1\xb8\x70\x03\x92\x86\x4e\xba\xad\xc9\xce\xfb\xcb\x83\x2b\xd7\xd6\xfa\x6f\x7f\xb0\x34\xba\xd9\x6f\x26\x3b\x50\xe8\x2a\xe4\x3e\x2d\xc6\xda\x92\x9f\x67\xc2\x76\xc2\xa5\x1b\x56\x15\x3a\x13\xad\x35\xde\x7e\xfb\x6d\x00\x00\x01\x2d\x80\xfc\x8d\x5d\xa0\x82\xa7\xb3\xf1\x71\x75\xd6\xf4\xba\xaa\xe3\x75\x29\x89\xaa\xce\xda\x26\xb3\xab\x93\xe6\xfc\x6c\xe0\x46\x92\x49\x52\xe6\x3e\x8a\xc5\xa7\x4c\x6c\x6d\xd1\xf5\xfd\x7c\x3a\x15\x4e\x5b\xa5\x84\x5d\xdf\x52\x7a\x07\xfe\x8c\xf2\xb5\xd5\x0d\x9b\xd2\x96\xe2\x5d\xba\xc8\x96\x7f\x1d\x85\xef\x2a\x33\xfe\x0e\xf9\x77\xbb\x74\xe9\x12\x80\xb2\xf5\xc4\xe6\x20\xfa\xfc\xf3\xcf\x07\x40\xa9\x6d\x4a\x79\xf2\xb8\xaa\x50\x05\x3e\x7c\xfb\x02\x49\x1e\x4a\x5b\x05\x40\x13\x60\xea\x32\xc0\x79\x33\xe7\xe5\x00\xc8\x2d\xf3\x86\x26\x20\xb4\xf9\xb5\x43\x2e\xde\xf6\xf2\x3f\x06\x6c\x72\xff\x23\x00\x38\x7a\xf4\xa8\x8d\x1f\xbf\xb6\xe5\xcf\xe9\x28\xad\x0b\x99\xa8\x02\x6f\x00\x00\x20\x00\x49\x44\x41\x54\x98\xf0\xb6\xe0\x93\x8f\x44\xeb\xd2\x91\x94\x9f\x0b\x8c\x99\x50\x6b\xaa\xc8\xa7\x32\xb9\x40\x86\x0f\x5f\x5f\xa5\xc6\xd3\xd6\xa6\x11\x56\x11\x4d\x97\x3c\x67\xdb\x62\x07\x50\x9d\xf5\xbd\x68\xe3\xd3\xb7\x96\x7e\xed\xe4\xe3\xd6\xaf\xb4\x63\x75\x52\x41\x85\x56\x3f\x13\x3f\x4c\x91\x11\xa7\x3c\x4a\x69\x1c\x48\xc6\x3a\x2b\xf5\x13\x5a\x7a\x94\x40\x27\x7b\xad\xc9\xf6\xad\x95\x14\xb4\xdc\x5b\x1c\xbd\x3f\x68\x4e\x76\xb2\xe5\xce\x5d\xba\x23\x2e\xd8\xea\x21\x76\xd6\x90\x69\x88\xf9\xaa\x21\xcb\xb6\xfd\x55\x80\xd3\xa7\xf3\xaa\x53\x17\xaa\xea\x8f\xd4\xc9\x55\xd5\x4d\x97\x8c\x36\x5a\x1f\x79\x7c\x47\x55\x92\x1c\x55\x6d\x4c\xe2\x2f\xbd\x8b\x4b\x1e\x97\x8c\xb3\x84\xaa\xf7\xf2\x69\xfb\x55\x69\xab\xf2\xac\xea\x84\x7c\xca\xb0\x4a\x1e\x17\x3f\x57\x3a\x5f\x3a\x2f\x79\xce\x9f\x3f\x1f\x5c\xba\x74\x29\x39\x7f\xfe\x7c\x00\x00\x97\x2e\x5d\xf2\x29\x1f\x97\x2c\x36\xe0\x50\xc5\xb3\xee\xb7\xf1\x29\x7f\x91\x67\xa3\xd1\x08\x3e\xfe\xf1\x8f\xe3\xfc\xf9\xf3\xe0\x96\x12\x66\x55\x31\x7d\x04\x77\x27\x08\xc2\x89\x0a\xe7\x47\x41\xb4\x30\x6c\x74\xe6\xc6\x8d\x85\xe6\x44\x75\x14\x10\x2a\x8d\xc0\x28\xe5\x44\xe9\xd1\xb8\xa1\x7b\x83\x66\xd2\xdd\x8f\x26\x83\x5e\x33\x19\x8d\xc2\x64\xa4\x55\x49\x2f\xd2\xa5\xe7\xe6\x3d\x4a\x1d\xfd\xce\xce\x0e\xfe\xe2\x2f\xfe\x42\x2a\x33\xdf\xfa\x5d\xb7\x9f\xae\xd2\x25\xae\x30\x8b\x0e\x70\xc9\x17\x00\xf6\x7d\x5c\x6c\x68\xde\x57\x28\x1f\xa4\x66\x43\x5e\x3c\xce\x55\xc0\x2e\x1e\x52\xfa\x42\xe0\x28\x9a\x9e\x47\x14\x40\xb5\x3b\xa3\x60\xe9\x99\x87\x73\x2f\x1c\xdf\x8b\x7e\xbe\x15\xab\x93\x30\x5b\xfa\xdb\xf6\x4d\x11\xe3\x6d\xe6\x0d\x8b\x13\x97\xc5\x71\x97\xae\x06\xe2\x22\x14\x2d\x39\xd3\xd4\x2e\x3c\xc3\x77\x6e\xe2\x74\x89\xd2\xc9\x5e\x34\xd9\xbe\xb9\x3a\x78\xe7\xdd\x63\xbd\xb7\x37\x17\x46\x37\x87\x61\xb2\xab\x81\xae\x42\xbe\x23\x6e\xbe\x82\x88\x2d\x75\x36\xdb\x85\xf3\x11\x45\x7e\x48\xe2\x3b\xef\xbc\x03\xad\x35\x16\x16\x16\x82\x6e\xb7\x0b\xd8\x1b\x83\x84\xb8\x5d\x60\x86\xf3\xb0\xa1\x7d\x5b\xe3\xa0\xbc\x25\x10\x6d\xcb\x43\x4a\x53\x35\x8a\xe0\x41\x92\xcf\xd5\xb9\xd9\x64\x90\x46\x52\x52\x5e\xb6\xb6\x28\x75\xd8\xb6\x32\xe5\xef\x2e\xd1\xbb\xe2\x6c\xcf\xab\x78\xd5\x01\x20\x34\x0d\xe7\x2d\x3d\xf7\x91\x55\xe2\x53\x07\x40\xfa\xa6\xa7\xe9\xb8\x5e\xad\x92\xd1\x1b\x04\x19\xa0\x62\x01\x2c\x2e\x7e\x3e\x75\xb9\x94\x9f\x40\x67\xeb\x33\x6c\xf1\xb3\xc8\x52\x08\x93\xc9\x24\x79\xed\xb5\xd7\x70\xe1\xc2\x05\xda\x5e\x02\xa0\xe4\x3e\x10\x20\x3d\x22\x21\x00\x10\x86\x13\x84\x2b\xfd\xe6\xd2\xfc\xb0\xb1\x3a\x3f\x6a\xac\x2e\xf7\x1b\x6b\xcb\xfd\xe6\xfa\xc2\xb0\x71\x2c\x9a\x04\x4b\x81\x46\x04\x20\x50\x48\xc1\xcb\x44\xe9\xc1\x30\x4c\xb6\x7b\xd1\xe4\xe1\x6e\x6b\xb2\xfd\x78\x2e\xde\xda\x6b\xc5\x9b\x7b\xed\xc9\xf6\x6e\x6b\xd2\x1d\x84\x13\xb3\x3d\x84\xb1\xb0\x14\x8e\x53\x30\xcf\xb4\xd6\x09\x00\x2c\x2f\x2f\xdb\xde\xcf\xb7\x7e\xfb\x80\x1c\x9e\xce\x17\xd4\x9b\x67\x3e\x7d\xb3\x44\x2f\xe5\x57\xfa\xf6\xb6\x7e\xed\x20\x23\x25\x89\x87\x2f\x4a\xab\xa3\xd8\x68\x1c\x2c\xe9\x0a\x1f\xe7\xdc\xb9\x73\xc1\xd5\xab\x57\x93\xcc\x4b\xbc\x50\x31\xcd\x56\xfe\x48\x37\x99\x6b\xb7\x62\xb5\x7c\xf6\x51\xfb\xe9\xf3\xef\x2f\xfd\xe6\xd1\xfd\xe6\x97\x03\x8d\xb6\x6d\x9b\xfc\x62\x48\x21\xc1\x14\x18\x08\x7b\xd5\x96\x9c\x49\x8a\x10\x83\x83\x14\x94\xf8\xa0\xb4\x4b\x9d\x94\xc6\x2e\x9d\x1d\xd4\x64\x5b\xf8\x63\xaf\x3d\xd9\xbe\xb1\xda\x7f\xf3\xca\xb1\xfe\x9b\x9b\x0b\xa3\x3b\xe3\x50\xef\x20\x9b\x12\x62\x67\x0f\x0d\x90\x2d\x7b\x06\x39\x88\x8d\x6d\x5a\x65\x80\x0b\x2e\x5e\xbc\x98\x7c\xe9\x4b\x5f\x0a\xfe\xee\xef\xfe\xae\x6e\x27\x57\x55\x87\xea\x80\x19\x9f\x7b\x29\x4f\x54\xdc\xdb\x80\x8e\x4d\x6e\x57\xc7\x2b\xbd\x8b\x4b\x06\xdf\xd1\xa6\x8b\x1f\xa7\xe1\xe0\x09\x02\xbd\x0b\x00\xfa\x2a\xc6\xba\xed\xbe\x0a\x98\x56\xf1\xa8\x0b\x78\xaa\xc2\x61\x8d\x3c\x7d\xf5\xe4\x2c\xf9\xd4\x05\x92\xb6\xfa\x7c\x18\xef\x59\x15\xea\xe4\x33\x73\xb9\x0a\x87\x54\x96\xfe\xb4\xd6\x81\x82\x0a\x03\x8d\x28\x9a\x04\xd1\xc2\xb0\xb1\x70\x64\x10\x6e\x3c\xb5\xdd\x3e\xb7\xd6\x6d\x3e\xdf\x19\x35\xce\x34\x27\x6a\xa3\x91\xa8\xd5\x40\x63\x29\xf3\x7f\xa4\x40\x08\x00\x12\x0d\xf4\x12\xa5\x7b\x89\xc2\x6e\xdc\x48\xee\x75\x5b\xc9\xd5\x07\xf3\xa3\xcb\x1f\x2c\x8d\x6e\x3c\x9c\x1f\x6f\xee\x47\x93\x9d\xfd\x68\xd2\xd3\x01\xcc\x4e\xc6\x66\xbb\x88\x98\x59\x60\xf2\x5f\xc1\x5a\x4d\x69\x0e\x23\xcc\xd2\xa6\xea\xe8\x3f\xce\x0b\x8e\xe7\x85\x3c\x95\x25\x43\x2e\x98\x6f\x25\xae\x52\xe6\x2e\x85\x28\x29\x5f\x4e\x57\x25\x9f\x14\x0f\x00\xc9\x33\xcf\x3c\x13\x7c\xf1\x8b\x5f\x2c\xa4\xe5\x9b\xcc\x69\xad\x23\x05\xd5\x0e\x13\xb5\xb0\xbe\xd7\x3c\x79\xfe\xf6\xe2\x2f\x9f\xde\x69\xff\xdf\xcd\x89\x5a\x37\x87\x1e\x02\xf2\x5e\xd3\x25\xfc\x21\x9d\x8c\x68\x1e\x31\x32\x6e\x74\xe1\xe0\x22\xcf\x43\xf0\xa9\xa9\xb2\xaa\x4c\x1d\x82\x39\x38\x92\xad\x3a\x1a\x40\x2f\x4a\x76\xae\xad\xf5\x5f\xff\xf1\xf1\xfd\xd7\xb7\xe6\xc7\x77\xb2\xd3\x9d\xf3\x25\xcf\xe4\x9a\x1f\x7b\x6f\x3b\xd5\x59\x6a\x68\xbe\xe1\xa0\x8a\xb0\x8e\xc2\xf6\xe9\xfc\x67\x91\xe7\x30\x3a\xa4\xff\x2c\xfc\x0f\x92\xd6\x47\x7f\x54\x75\xba\x75\x01\x08\xd7\x31\x2e\x5a\x5b\xa8\x53\xbe\x36\x65\x0e\x21\xde\xc5\xcf\x07\x34\xce\x22\x1f\xe7\xed\xd2\x9f\x55\xd7\x46\x9e\x83\x96\x8f\x2f\x8d\x6f\xfd\xb1\x96\x77\xbb\xdd\x0e\xcc\x4e\xe9\xb6\x53\xb5\x4d\xbf\xa0\xb5\x0e\x15\x54\xd8\x9c\xa8\x68\x69\x18\x2e\xad\x77\x9b\x27\x9f\x7c\xd8\x7e\xf6\x78\x37\xfa\xd4\xdc\xb8\xf1\x62\x38\x51\x27\x03\x8d\x05\x05\xd5\x56\x59\x9e\x1a\x45\x3d\xcd\x17\x54\x68\x20\xd1\xd0\x23\xad\xb0\x1b\x07\xfa\xde\xa0\x99\x5c\xd9\x99\x8b\xdf\x78\x7f\x79\xf0\xfa\xcd\xd5\xc1\x8d\x9d\x76\xbc\x33\x6e\xa4\xab\x30\x35\xf2\xad\x23\x0a\x03\x41\xfa\x6e\x93\xc9\x04\xdf\xf9\xce\x77\x66\x29\x6f\xdf\x72\x9d\x05\x88\x1c\xa4\xbd\xf2\x38\x31\xff\x50\x78\x48\x83\x88\xf4\x84\x6b\x1a\x67\xd0\x6a\x55\x7a\x4a\x2f\xf1\xa4\x32\xb9\xe2\x5d\xa0\x25\x01\x80\x8d\x8d\x8d\xe0\xda\xb5\x6b\xc9\x17\xbf\xf8\xc5\xbc\x92\x12\x39\x83\x6c\x93\xb9\x40\x29\x15\x2a\x8d\x68\x61\xd8\x58\x7e\x6a\x7b\xee\x85\x8d\xdd\xd6\x17\x9a\x93\x60\x1d\x40\x69\x45\x90\x22\xb8\x44\x4b\xfb\xf4\xe7\xc7\x37\xcb\x8e\x2f\xb9\xb3\x2c\x77\x54\x31\xc6\x98\xf2\xce\xfb\x05\xfe\x74\x15\xd0\x14\xc5\x14\x23\x54\xe1\x84\x87\x22\xe2\x51\x05\x91\x75\xe6\x88\x8b\x64\x10\x26\xbd\x5b\x2b\x83\xb7\xdf\x38\xb1\xf7\xda\x76\x27\xfe\x60\xa2\x74\x17\x7a\x0a\x56\xc8\xae\xb8\xf4\xb0\xc4\x11\xd2\x65\xcf\x31\xb5\xb2\xd0\xfd\x59\xe2\x38\x2e\x95\x01\xe4\x6f\xcf\xbf\x67\x1d\xa5\x29\xd1\x49\xcf\x6c\x75\xbe\x0a\x88\xbb\x82\x4f\x87\xc5\x69\x5d\x83\x06\x5b\x1e\x9c\x9f\x6f\x79\xd9\xf8\xbb\x06\x25\xb4\xbc\x5c\x69\x5d\xf2\x55\x7d\x57\x54\xc4\xd9\xf8\xf1\x6b\x9b\xbe\x70\xf1\xf5\x0d\x55\x1d\x03\xa5\x91\xbe\xa7\x4b\xcf\x19\x1e\x3e\xef\x6e\x4b\xe3\x03\x54\x5c\x74\xae\xf2\x72\x7d\x33\xdf\x7e\xc1\x87\xf7\x41\x68\x24\x79\x38\xe0\x03\x50\x3c\xde\xc5\xe2\x64\x1b\x1a\xd0\x12\x40\x45\xad\x38\x68\x1f\xeb\x36\xd7\x3e\xf4\xa0\xf3\x91\x33\x3b\xad\x2f\x75\x46\x8d\x0b\xe1\x44\x6d\x28\xa0\xa3\xa0\x02\x3e\x00\x54\x48\xa7\xee\x81\x6c\xa8\xcb\xfa\x01\x05\x04\x0a\xaa\xad\x35\xda\xd1\x44\xad\x35\x27\xea\x5c\x67\x14\x7c\x7a\xa5\x17\xbe\x7e\x7c\x2f\xfa\x87\x1f\xaf\xf7\x5e\xbb\xb7\x34\xbc\x37\x68\x26\x83\x24\x9d\x7e\x37\xf2\x99\x41\xa1\x59\xa6\x1e\x00\x48\xb2\xe3\x1d\x52\xa2\x20\x08\x92\x24\xf1\x2d\x33\xa9\x7e\x56\xb5\xc9\x59\xfa\xeb\xc3\xf8\x96\x94\x7f\x00\xa4\x87\x2c\x02\xc5\x81\xbd\x21\xd2\x35\xae\x69\x50\x59\x06\xfc\x19\xa5\xa7\xcf\xb2\x3e\xb3\xc4\x8f\xcb\x44\xe9\x5d\xf7\x26\x5d\x1e\xdf\xed\x76\xf5\xcb\x2f\xbf\x5c\xa8\xa4\xd9\x4e\x90\xe6\xf0\xc4\x86\x52\xaa\x05\x8d\xb9\xf6\x38\x58\x3c\xb5\xd3\xfa\xd0\x0b\xf7\x16\x7e\x65\x71\xd8\xb8\x10\x40\x35\xcc\xea\x1c\x71\xe5\x90\x46\x76\xe8\x20\x64\x03\x8b\x2a\x02\x06\x9e\xbc\x74\x67\x7e\x44\x2f\xdc\xe2\x6d\x4e\x43\x91\x4d\xda\x72\x08\x11\x4b\x6b\xc4\x21\x24\xa6\xb0\x86\x61\xb2\x7f\x77\x79\x78\xe5\xfb\xa7\xf7\xfe\xd7\xc3\x85\xf8\x6e\xa2\xb4\xf1\x63\xe9\x22\xf5\x69\xd9\xc7\xd4\xa7\xa5\x8f\x29\x60\x19\x29\xa5\x0a\x3e\x2d\x99\x3f\x8b\x7e\xe5\x95\x57\x92\x4f\x7e\xf2\x93\x8a\x8c\x0a\x78\x3d\x30\xf5\x85\x8a\x09\x81\x56\xb1\x74\xf4\x3a\x20\xbf\x9c\x97\xab\xde\x05\xc2\x2f\x37\xa4\xb9\x40\x82\x8d\x37\xad\x83\x92\x7c\xe6\x1a\x02\x0d\xe7\x1b\x30\x7e\xbc\x5d\x28\x4b\x3a\x45\x9e\xb9\xda\x37\xff\xe5\x72\xf1\xc0\xe5\xa1\x81\x56\x29\x1e\xa4\x36\x2e\xc9\xe3\xca\xcf\x15\x6c\xcf\xab\x74\x97\xad\xfc\x6c\x81\xcb\x22\x95\x2f\xaf\x9b\xbc\x1e\x71\x7e\x36\xc0\x6c\xfb\x66\xfc\x19\x2a\xe2\xe9\xb7\xaa\xfa\xbe\x52\x5e\xbc\x9d\x54\xc9\xc6\xe3\xea\x7e\x77\x57\xdf\xe2\xe2\x69\x6d\x8f\x41\x10\xa8\x17\x5f\x7c\x51\xfd\xea\xaf\xfe\xaa\xa9\xa3\xd4\xe2\x62\xac\x2d\xf9\x4e\xe9\x01\x54\xab\x33\x0a\xe6\xcf\x6e\xb7\xcf\x7c\xfc\xee\xe2\xe7\x4e\xef\xb4\x7e\x7b\x7e\x14\x7e\x36\xd4\xea\x78\x3a\x1d\xa4\x4a\xea\x37\x1f\x8c\x66\x31\x74\x87\x72\x95\xe9\xe6\x29\x4d\xaa\xad\x95\x56\xcd\x00\xea\x48\x34\x51\x67\x16\x87\xe1\x73\x1b\x7b\xd1\x91\x56\xa2\x76\xf6\x5a\x93\xfd\x71\x98\x24\x1a\xd0\xd3\x3e\x21\x35\x9d\x67\xbb\x21\x6b\xa5\xd2\x93\x32\x2f\x5c\xb8\xa0\xce\x9f\x3f\xaf\xae\x5f\xbf\x8e\x7e\xbf\xcf\xeb\x92\x4f\xdb\xa1\x7a\xcd\x56\xc6\xe6\xda\x56\xfe\x55\x79\xd0\xbc\x7c\xeb\x9d\x24\x9f\x36\x11\x80\xbd\x51\xf1\x67\xbe\xe8\x49\x44\xbb\x15\x61\xd6\x51\x12\xb5\xf0\x38\xd3\xa9\xec\x30\xb1\xec\xc3\x07\x60\xfb\xb5\x04\x1a\xed\xb5\xfd\xe6\xc6\x87\x1f\x74\x7e\x76\x69\x10\x5e\x08\xc8\x7e\x2d\xa5\xd2\xe4\x20\xa4\xca\xbd\x84\x59\x4b\x4a\xe4\xb6\x4f\xe9\x04\x3b\x16\x5a\x0b\x11\x1f\x19\xd0\x30\x6c\x26\xdd\xdb\xcb\xa3\x77\x2e\x9d\xda\xfb\x9f\x5b\x0b\xe3\xf7\x35\x74\x57\x29\xb5\x0b\xc0\xfc\x99\x95\x44\xc6\xda\x32\x02\x30\xa0\x4b\x9e\xb5\xd6\xb9\x3f\x8b\x71\xc2\x05\x80\x1b\x37\x6e\xd0\xac\xa4\xef\xc3\x47\x3e\xe6\xda\x55\x97\x02\xf6\x2b\xf1\xb6\x59\x04\xa4\x67\x34\x3d\xa7\xab\x0a\xbe\x7c\x6d\xef\x23\xbd\x0b\x4f\xeb\x23\x97\xcb\xa2\xe9\xca\x97\xde\xd3\x32\xb0\x95\x31\xa7\xf1\x6a\x7f\x8e\x67\xae\x3a\xc1\x2d\x3e\xb3\xe8\x16\x9e\x47\x1d\x0b\x01\xcf\xb3\xae\xf5\xc6\x65\xb1\xf2\x49\xe3\xa3\xa3\x7f\x1a\xf2\xb8\x64\xa8\x63\x65\xf9\x49\xc4\x57\xa6\x4b\x92\x24\xf9\xd1\x8f\x7e\x54\x28\x53\x66\x71\x09\x01\x44\x4a\xa9\xb6\x52\x2a\x3a\xba\xdf\x5c\xfe\xe4\xed\xc5\x0b\x17\xde\x5f\xfa\xe6\x89\xdd\xd6\xff\xdb\x8e\x1b\x2f\x05\x48\xb7\xc2\x28\x0c\x1e\x49\x26\x79\x8f\xaf\x8b\xf1\x1a\xc8\xa7\x8b\x4a\x41\x19\x01\x54\x3b\x9a\x04\xe7\x56\x06\xe1\x6f\xbd\x70\x6f\xe1\xff\xfb\xf4\xad\xa5\x9f\x39\xd6\x8d\xd6\x1a\x09\x3a\x00\xda\x99\xff\x65\x48\x66\x07\xf8\x3b\xe0\x1b\xdf\xf8\x46\x55\x99\xf8\xb4\x9d\xba\xd6\xb6\xaa\xc0\xf3\x94\x74\x6c\x15\xcf\x52\x7c\x03\x32\xca\x91\x46\x7b\x12\xea\xb6\x85\xaa\x11\x57\x15\x8f\x2a\x3a\x8e\xac\xad\xc8\xfb\xf7\x7e\xef\xf7\x82\x4f\x7d\xea\x53\xa9\xd1\x64\x0a\x92\x1b\x99\x6f\x4b\xd3\xfc\x29\xa5\xda\x2b\xbd\xf0\xd8\xb3\x0f\xe6\x3f\xfd\xe4\x76\xfb\xbf\xb7\x26\xea\xb4\x22\xe6\x12\x83\x9a\xe9\x14\x4e\x3e\xd4\x62\xa0\x84\xbe\x30\x9d\xc1\x91\x67\x8d\x32\x2a\xc2\x73\x9a\x67\x7a\xce\x08\x30\x45\xec\x25\x0b\x8c\x39\x8f\x84\xe4\x9f\xc6\x01\x5a\x29\x26\x8f\x2e\xbc\x83\xce\xe2\xfa\xcd\x64\xf7\xfd\xe5\xe1\xe5\x1f\x3d\xb1\xf7\xea\xbd\xa5\xd1\x6d\xad\xd0\x05\xd4\x2e\x54\x6e\x69\xc9\x4f\x78\x56\x4a\xf5\x95\x52\x43\x00\x43\xb0\xdd\x70\xd5\xf4\xcc\x13\xad\x94\xca\xb7\xee\xbf\x71\xe3\x86\xd2\x14\xc9\x94\x0b\x40\xfa\x96\x7c\x54\x6f\xab\xa3\xae\x91\xa3\x2d\x8d\xe1\x2f\x59\x0e\x6c\xf2\xf0\x34\xe6\xb9\x64\xe5\x71\x05\x89\xb7\x16\xee\xab\xd2\xd8\xac\x1e\xb6\x34\x5c\x6e\x9f\x7c\x7c\xf2\x70\xc9\x6d\x82\xd4\x9e\xa5\x6b\xfa\x0b\x0b\x6d\x5d\x0b\x89\x6f\xde\x2e\xde\x55\xa3\x50\xdb\xa8\xd6\x27\xcf\x2a\xf9\xab\xf2\x76\x5d\x57\xc9\xe2\x23\x53\x1d\x7e\xf4\xda\x57\x6e\xda\xbf\xf0\xbe\xc6\x95\xd6\xbb\x1c\x3e\xfb\xd9\xcf\x06\xb7\x6e\xdd\xd2\xc4\xaf\x45\x01\xb9\x2f\x4b\x03\xc5\x9d\xd2\xa3\xf5\xbd\xe8\xe8\x47\xef\x2d\x7c\xf6\xdc\xd6\xdc\xff\xb5\x34\x0c\x3f\xdf\xd0\x58\x93\x2c\x2c\x26\x50\x95\xac\x24\x02\xb0\x7e\x80\x29\x71\x45\x98\x28\xa0\x19\x4e\xd4\x89\x85\x51\xe3\xf4\xfc\xa8\xb1\xdf\x8f\x92\xc7\xfd\x66\x32\x9a\xa8\xfc\xbc\x28\x9d\xbd\x83\xa8\xa3\x2e\x5d\xba\xe4\x2a\x3f\x5b\x3d\xad\x6a\xb7\xf4\xba\x6e\x1d\xac\xdb\xa6\x5c\x79\xe7\xd7\x8d\x0a\xa1\xe9\x94\x0f\x57\xd6\x55\x0d\xce\xc6\x8f\xf2\xb2\x05\xa9\x43\xe0\xcf\x0d\x4f\xe9\x63\xe4\xf7\x3f\xf8\xc1\x0f\xf4\xf9\xf3\xe7\x15\x43\xd7\x0d\x00\x4d\xad\x75\x53\x29\xd5\x04\x30\x17\xc5\x6a\xfe\xcc\x4e\xfb\xf9\x67\x1f\x74\x7e\x71\x71\x18\x7e\x22\x80\x8a\x8a\x55\x2b\x33\xfb\x71\x90\xa2\x88\xe9\x8f\x36\x57\x3a\x5b\xa3\x8a\xbf\xc5\x7a\x5b\xac\xe5\x53\x33\xa2\xc9\x2f\x3b\xdc\xcc\x00\x1b\xb6\x89\x5d\xbe\xab\x63\x9e\xde\x2c\xb1\x2e\xc6\xa3\xc0\xd3\x14\x90\xc6\xa0\x99\xec\xde\x5e\x1e\x5e\x79\x6b\xa3\xfb\xda\xbd\xa5\xd1\xcd\x49\x80\x5d\x0d\xbd\x4b\xa6\x88\xf2\x03\x13\x91\x59\x5a\xb2\xa5\xcf\xb9\xc7\x3b\x39\xdd\x19\x48\x01\x0c\x5e\x7d\xf5\x55\x6c\x6f\x6f\xab\xc9\x64\xa2\x33\xd0\x52\x57\x79\xd5\x4d\xc3\xff\x24\x65\xc8\xc1\x8a\x4d\x41\x07\x96\xf4\x26\xd0\x67\x7c\x0a\xac\xaa\x43\xae\x7a\x87\x2a\x25\xee\x2a\x1f\xa9\x2d\x98\x78\xc0\x5e\x96\xb6\x3c\x25\xe5\xe2\x23\xb7\x04\xf0\x60\x89\x83\x10\xc7\xbf\x0d\xbd\xb6\xf1\x90\x82\xd1\x21\x1c\x08\xd9\x78\xd7\xcd\xd3\xf6\x2d\xaa\xd2\xf9\xea\xce\x59\xe5\xf6\x95\x85\x7e\x33\x4e\x23\xa5\xa3\xa1\x4a\x16\x5f\x59\xa5\x6f\xee\x93\xd6\xbc\x63\x25\xad\x01\x2d\x40\x6e\xa1\x08\x30\xb5\x5a\x14\x8e\x77\x39\xda\x0d\x57\x9e\xdf\xec\xfc\xcc\x53\xdb\xed\xaf\x2d\x0c\xc3\x0b\x0d\x8d\x23\x4a\x2b\x71\x47\x71\x13\x0a\x71\x59\xae\xd2\x6c\x7d\xde\x0f\x64\xfc\x94\x26\x40\x27\xa7\x57\x50\x50\x8d\x30\x51\x6b\x73\xe3\xc6\x89\xce\xb8\x31\xec\x47\xc9\x76\xaf\x95\x0c\x92\x20\xd5\x35\x14\xb4\x90\x2d\x35\x34\x90\x02\x97\xd3\xa7\x4f\xab\xdd\xdd\x5d\xdb\x37\xf6\x69\x33\x55\x75\x1d\xc2\xf3\x83\xb4\x23\x57\xfd\x12\x07\x86\x36\x8b\x8b\x69\x30\xbc\xd2\x4a\x95\xc5\x16\x38\x5f\x29\x0f\x5b\x23\x93\xf2\x96\xf8\x57\xf9\xd2\xd0\xb3\x88\x0c\x78\x09\x0c\x60\xc9\x40\x4b\x0b\x40\xfb\xc4\x6e\xeb\xf4\x87\x37\xe7\x7f\xfe\x78\xb7\xf9\xd9\x66\xa2\xd6\x4c\x27\x6f\xab\xac\xc5\xd7\x32\x35\x32\xcb\x58\x95\xd3\x14\xf8\xa8\xf2\x33\xa0\x08\x48\x0a\xf4\xc4\x54\x63\x56\x37\x71\xe9\xa6\x57\x4a\x60\x00\x91\x73\xbf\x99\xec\xde\x3e\x32\xbc\x7a\xf9\xf8\xfe\x8f\xee\x1e\x19\x5d\x1f\x37\xf4\x63\x9d\x82\x95\x3d\x4c\x9d\x71\x0b\xa0\x05\xd3\x3d\x5a\xb8\x4f\x0b\xb2\x6b\xbc\xf2\xca\x2b\xc9\xce\xce\x8e\x1a\x0e\x87\x26\x6b\x5e\x67\x68\xc7\x26\xc1\x39\x6d\xa1\x73\xa5\x31\x75\x41\x5b\xe8\xcc\xbd\xcb\xd7\x80\x77\xb0\x94\x9e\x7e\x35\xfe\x2c\x60\x74\x5c\x66\x2a\x03\xcd\x4f\x7a\x07\x1a\x27\xbd\x37\x37\xb5\xda\x9e\xf1\x32\x30\x7c\xe9\x2f\x4f\x4f\xf3\x96\xbe\x85\xad\xec\xe9\xfb\xf1\x6f\x00\x46\x73\xd0\x50\xa7\xd3\xa7\x4e\x87\x3e\xfa\xc4\xf6\xdc\x27\x7e\x16\x1d\xe6\xca\xd7\xa6\xdf\xaa\xd2\x51\x59\x7c\x2c\x3b\x55\x6d\x43\xd2\xff\x3f\xe9\x50\xd5\x37\xc0\xe3\x79\x21\x9c\x3f\x7f\x5e\x65\xf4\xf4\x2f\x44\x3a\xfd\xd2\x52\x4a\x45\xcb\xbd\xf0\xc8\xf3\x9b\xf3\x9f\x7a\xea\x61\xfb\xab\x4b\xc3\xf0\x7c\xa8\xd5\xb2\x9a\x2a\x5e\xab\x4e\x2f\x34\x0a\x95\xaa\x6a\x5b\x23\x31\xbc\xe8\x35\xa5\x99\xa2\x7e\xd5\x08\x13\xb5\xdc\x8e\x1b\x2b\x61\x82\xfd\x6e\x6b\xb2\xb5\xdf\x9a\x0c\x32\xf5\x6f\x7c\x5c\x0c\x88\xc9\xeb\xf7\xf9\xf3\xe7\xd5\x3f\xfd\xd3\x3f\x49\x7e\x79\x5c\xff\xd8\x06\x3a\xb6\x3a\x2b\x0d\xa4\x68\xf0\xf9\x16\xb3\xd4\x1d\x51\x1e\x6e\x71\xa1\xa3\x48\x09\x85\xfb\x08\xee\x42\x77\xbc\x21\x71\x34\x65\x33\x05\xf2\x91\x9f\xab\x03\xd2\x40\xba\x13\xe4\x57\xbf\xfa\xd5\x14\xd0\x66\xbe\x2d\x5a\xeb\x86\x52\x2a\x24\xe6\xc1\x36\x80\xb9\x23\xfd\x70\xe5\xdc\x56\xe7\xc2\x93\x3b\xed\xcf\x77\xc6\x8d\x67\x94\x46\x98\xd2\xa3\x34\xb5\x53\xd2\xd6\x19\xb4\x2e\x54\x3c\x8d\xf2\x99\x42\xf4\xf0\x32\x94\xea\x2e\x54\xc6\x87\xf7\x1a\x39\xfd\xf4\x78\x7a\xf2\x4c\x4d\x4f\x9c\xc6\x54\x56\x03\x9e\xcc\x4d\xf1\x1d\xd2\x9a\x3f\x08\x93\xee\xdd\x23\xc3\x6b\x57\xd6\x7b\x6f\xdc\x3d\x32\xba\x36\x0c\xf5\x23\x28\xd5\x55\xe9\xdf\x1e\x9b\x1e\x1a\x28\xa5\x46\xd9\x5f\x61\x37\x5c\x64\x53\x44\x40\x71\x7a\x28\x8e\x63\xda\x89\xd1\x40\x1b\x92\x64\xd5\xe3\xf5\xad\xce\x35\x2d\x32\xe9\x99\xa4\xd0\xf9\x33\x9e\x9e\x82\x75\x9e\xaf\x2d\x2d\xcf\x5f\x6a\x2f\xb3\xbc\x83\x94\x8f\xeb\x19\x30\x6d\x2b\x55\x9d\x5c\x95\xdc\xbe\x74\x9c\x9e\x86\x2a\xd3\xb2\xed\xb9\x8d\x8f\x8b\x1f\xb7\xee\xda\x3a\xe0\x3a\x83\x31\x1f\xb9\x69\xa0\xca\x5e\xb1\x7b\xcd\x68\x38\x6f\xc5\xfe\x7c\xd3\xd1\xbc\x60\xa1\x91\xde\x89\xcb\x5b\xf5\x4d\x5d\x56\x41\x97\xde\xf7\xb9\xb6\xf5\x37\xb6\x6f\x6c\x7b\x27\x0d\x14\x76\x49\x57\x99\x4f\x6b\x03\xd3\x01\x6c\xa4\x94\x6a\x35\x12\x74\x9e\xbb\x3f\xff\xb1\x73\x5b\x73\x5f\x5d\xee\x87\x9f\x6e\x26\x6a\x0d\x50\x41\xda\x81\x64\x8c\x34\x80\x7c\xc5\x10\x2d\x95\x54\xc9\xf2\x42\x57\x26\x11\xb3\x8a\xe7\x56\x92\x62\x47\x02\xd3\xe7\x20\xb3\xaa\x2b\xa8\xb0\x91\xa8\xa5\x68\x12\x34\xe3\x86\x7e\xd4\x6d\x4d\x1e\x0e\x9a\xc9\x08\xa9\xce\xd5\x19\x2f\x73\x9d\xfb\xeb\xbe\xf4\xd2\x4b\xea\xb5\xd7\x5e\x93\xea\x7d\x41\x6a\x4b\xb9\xda\xe8\x29\x46\xb3\xd5\xd7\x3a\xdf\xd8\xb7\xfd\x8b\xf1\xd4\xfc\x6d\x2a\x02\x75\xc4\x92\x1c\xb9\xaa\x1c\x68\xea\x38\xe7\xd5\xe5\x4d\xe5\x72\x86\x4b\x97\x2e\x25\x5a\x6b\x68\xad\x5d\xa7\x3f\x87\xe1\x04\xed\x93\x8f\xa3\xa7\x9f\x78\x1c\x9d\xef\x0c\x83\x73\x4a\xa3\x9d\xdb\x2e\x14\xfd\x8a\xe9\x15\xab\x6b\xe0\xf5\xcf\x10\x95\x2a\x31\x01\x2d\x05\x8e\xf4\xb3\x5b\x82\x7d\x76\x35\x6b\x13\xaa\x08\x4e\x0a\x1a\x4f\x95\xf3\x1c\x35\x92\xc1\xfd\xc5\xe1\x8d\x6b\x6b\xfd\xb7\xef\x1e\x19\xde\x30\x67\x0f\x81\xec\xd1\xa2\xb5\x36\x7f\x83\xec\x74\xe7\x7c\xc9\x33\x71\xc0\x2d\x38\xe2\xbe\xfa\xea\xab\x68\xb7\xdb\xa6\x4e\x99\xb2\x96\x82\x79\x96\x08\x74\x36\xe7\x2d\x4a\xc7\xeb\xad\x44\x2b\xd1\xf1\x3c\x7c\x78\xbb\x9c\x63\x6d\xfc\x25\x59\x5c\xd7\x3c\xce\x26\x8f\x44\x63\xa3\xb3\xc9\x50\x25\x93\xed\xfb\xd9\x64\x73\x95\x1d\x0f\xb6\x6f\x2b\xe9\x0e\xc9\x49\xd8\x46\xcf\xbf\x93\xcb\xd9\x57\x92\xc9\x55\x57\x5d\xc1\xd7\x69\x95\xeb\x52\x97\xac\xb4\x6d\x70\x7a\x1f\xc7\xc9\x04\xe5\xfc\x5c\x32\xd2\x34\x12\xad\xab\x8e\x55\xc9\x15\x58\x9e\xf3\xf8\x80\xc5\xd3\x7c\x6d\x75\xa2\x2a\x94\xca\x95\x6d\x83\x41\x8f\x78\x69\x3f\xb1\xd3\xda\x38\xb3\xd3\xfa\xb9\x23\x83\xf0\x13\x99\xc5\x3d\x28\x0d\x2e\x15\x32\x40\xc1\xe3\x8b\xfb\x96\x9b\xf8\x54\x2f\x4f\x01\x4d\xae\x87\xe9\x08\x53\x9b\x28\xea\xa7\x38\xcd\x21\xd0\x6a\x61\x7e\xd8\x78\xf1\xf4\xa3\xf6\xcf\x9d\x7c\xdc\x3a\xd7\x1a\x07\x0b\x48\x07\xdc\xe9\xee\xbc\xe9\x3b\x04\xd9\x75\xce\xcb\x11\x5c\xed\xd2\x45\xeb\x53\x77\x4d\x1a\xdb\x37\x93\xbe\xbd\x0f\xef\xd2\xb5\xaf\xc2\xa9\x52\x8a\x9c\x8f\x04\x2e\x66\x51\x0c\x86\x57\x15\x8f\x3c\xfe\x99\x67\x9e\x09\x80\x14\x65\x1b\xff\x10\xc5\x4e\x7f\xce\x3c\xb3\x43\x00\xd1\xda\x7e\xb4\x7e\x6a\xa7\xf5\xc9\x95\x5e\xf3\x85\x30\x51\xcb\xd3\x65\x6b\x1c\xa8\x14\x2b\x43\x0a\x46\xcc\x15\x4a\xcf\x68\x48\x2b\xad\xce\x51\xb8\x42\x0a\x7a\x28\xdb\x2a\xfc\xa2\xa1\x45\xeb\x0f\xcf\xcf\x36\xec\x33\x21\x0e\x92\xd1\xd6\xc2\xf8\xd6\x7b\x47\x07\x6f\xdf\x39\x32\x7c\xaf\x17\x25\x0f\x34\x0a\x07\x25\xe6\x7f\xd4\xd2\xa2\xb5\x1e\x91\x1d\x70\xf3\x5f\x03\x5a\x2e\x5e\xbc\x98\xbc\xfd\xf6\xdb\x18\x0c\x06\x92\xf8\xbe\x1d\x83\x2f\x5d\xd5\x48\xcb\x76\x5f\x07\xc8\x48\x7c\x6d\x40\xdb\xd5\xd9\x4b\x0a\x99\x5f\x4b\x4a\x9a\xe6\xe1\x03\x4e\x6c\x72\x48\x32\x4a\x1d\x00\xed\x2c\x0f\xa3\xad\xba\xe4\xab\x1c\x78\x30\xda\x2a\xfa\xba\xba\x46\xfa\x8e\xae\xf7\x76\xd5\x15\x57\xf0\xfd\x6e\x9c\x77\x9d\x3c\x38\x7f\xdf\x76\x26\xc5\xd5\x19\x94\xfa\xd4\x93\x2a\x7e\xbc\x3e\xf0\x4e\xce\x95\xde\x0b\xc4\xd0\x93\x9e\x4d\x5f\xc0\x57\x94\xce\x0f\x1b\x0b\x4f\x3f\x9c\xfb\xc4\x6a\xaf\xf9\xe9\xe6\x44\x6d\x28\xa8\xb0\xa0\x47\x75\xb5\x5e\xcd\x01\x08\x27\xd2\xd3\x9f\xd2\xf0\x53\xa1\xb8\xda\x48\xeb\xa2\xd5\x3c\x0b\xcd\x44\xad\xad\xf4\xc2\x97\x9e\x7c\xd4\xfe\xd4\xb1\x6e\x73\x03\xd9\xa0\x3b\xfb\x0b\xc8\x2f\xcc\x2f\x7d\x6f\x12\x5c\xdf\x58\x0a\xb3\xd0\xba\xbe\x99\x4d\xf7\xd4\x0e\xe6\xac\x22\x1f\xe4\xc4\xe3\x5d\xa8\x59\x1a\x09\x49\xca\x25\x81\x3f\x3f\x89\x7f\x49\xb6\x6b\xd7\xae\xb9\x46\xc8\x21\x52\xa4\x1d\x01\x68\x77\x46\xc1\xd2\x99\x47\xed\xe7\x8e\xef\x45\x2f\xb5\xe2\xe0\x54\x90\x9d\x45\x54\x34\xec\xa1\xb4\x09\xae\x46\x19\xd0\x94\x76\xf1\x07\x31\x09\x22\x45\xd1\x9a\xb0\x35\xfb\xc4\x69\x4c\xcd\x8c\xe2\x8a\x25\x14\xa7\x92\xe8\x33\x63\xc3\xe1\x67\x18\xe9\x6c\xfe\xc8\xac\x4a\x32\xd3\x4c\x93\x00\xf1\xa3\x4e\x7c\xef\xfa\x6a\xff\x9d\xf7\x57\x06\xef\x75\x5b\x93\x07\x3a\x3d\xe5\x99\xee\x8a\x4b\x4f\x79\xce\x7d\x5a\xb2\x32\xa7\xbb\x37\x26\x00\xf2\xa9\x21\x00\x18\x8d\x46\xde\x88\xf9\x80\x74\xae\xf8\x59\xf9\xf9\xa2\x7e\xd7\x88\xc1\x26\x5b\x9d\xd1\x45\x1d\xd9\x6c\xed\x6b\x96\x32\xa9\x7a\x1f\xdf\x11\x17\x7f\xe6\x23\x63\x55\xdb\xb6\xe9\x14\xa7\x2e\x98\xe1\x99\x24\x93\x4f\xda\x2a\x99\xaa\x80\xb6\xed\xdd\x7c\x69\x7d\xbf\x89\x2b\x7f\x5f\x30\x59\x95\x57\x95\xbe\xf6\x2d\x57\x1f\x7d\x5f\xc5\x93\x3e\x0f\x80\xf2\x6e\xe9\x00\xa2\x53\x3b\xad\x53\x1b\xbb\xad\x9f\xed\x8c\x82\xb3\x81\x46\x87\xeb\x5e\x51\xf7\x6b\x2d\x5a\xd2\xa7\xba\x1f\x50\x4a\x43\x97\x56\x64\xa4\xbf\x74\x16\x69\x0a\x52\x88\x2b\x41\xa1\xcf\x51\x41\x6b\x12\x9c\x59\xef\x36\x2f\x9c\xdc\x6d\xdd\xdc\x9a\x1f\x6f\x0d\xa2\x84\xef\x52\x6e\xde\xcd\x55\x66\x75\xbf\x43\x55\xbd\xf6\xa1\xad\x23\x8b\x37\xb0\x92\x46\xb8\x2e\xf0\x41\x33\xf4\x69\x9c\xb6\x46\xc8\x1b\x9d\x2f\xda\xb7\x8d\xa6\x13\x00\x38\x79\xf2\x24\x80\x12\xda\x34\x15\x36\x47\xa7\x5a\xeb\x48\x69\x44\x27\x1f\xb7\x4e\x3d\xf1\xb8\xf5\xa9\xc5\x61\x78\xae\xa1\xd3\x35\xfa\x52\x28\x38\x5b\x69\x19\x55\x97\x76\xb9\x85\xa9\xd4\xda\x90\x90\xca\xaf\x73\x10\x43\xcd\x8c\x45\xb4\x9d\xc2\xfc\x29\x3a\x9f\x42\x77\x02\xa9\xc0\xa5\x49\x2d\x33\x99\x41\x53\x93\x86\xa5\x90\xec\xb5\xe3\xad\x1b\x2b\xfd\xb7\x6f\xac\x0e\xae\xec\xb6\xe3\xfb\x49\x30\x3d\x7b\x08\x53\x4b\xcb\x20\x3b\x7f\x28\x9f\x1a\x42\xb6\xe4\xd9\xac\x20\x32\x87\x7d\x5d\xbc\x78\x31\xf9\xdc\xe7\x3e\x67\xb3\x92\xd0\xf8\xc0\xf2\x07\x14\xd3\x4a\xf1\x92\x15\xc1\x75\xed\x4a\x23\xc9\xe7\x4a\x63\x8b\x4f\x2a\xe8\x6c\x79\x24\x28\xf3\x73\xe5\xeb\xfb\x3e\x55\x69\x7d\xf9\xfa\xf0\xb0\x95\x23\x0f\x52\x9c\xed\xb9\x2f\x68\x74\x5d\x53\xf9\xa4\x8e\xd8\xb7\x63\xae\xa2\x97\xf2\xf4\x05\xbb\xb6\xbc\xa4\xfb\xc2\x00\x01\xd5\xa0\xc6\xc6\xa7\x2a\xf8\xf0\xa4\xb4\xb6\x36\xcc\xcb\xc2\xa6\xd7\x7d\xbf\xab\xad\x9f\xb1\xe5\x57\xa8\x87\xbf\xf5\x5b\xbf\x15\x08\x56\x07\x3a\xb5\x12\x42\x23\x6a\x8d\x55\xe7\xa9\xed\xf6\x8b\x4b\x83\xc6\x27\x1a\x99\xc5\x5d\x72\xe6\x30\x61\xaa\x8f\x55\x61\x4a\x86\xbb\x0c\xa4\xe0\x86\xfa\xbd\x18\x84\x32\x1d\x16\xd3\x3e\xc3\x58\xf0\xf3\x7c\x4d\x5f\x90\x09\x10\x68\xd5\xe9\x8c\x1a\x4f\xaf\xef\x35\x3f\x7a\x6c\xbf\xb9\x8e\xe9\x4a\x28\x3a\x55\x54\x28\x03\xe9\xfd\xc9\xb5\x54\x8f\x79\x3c\x7d\x56\x07\x10\xd7\x19\x10\xd1\x78\x9b\x4c\x25\x79\xaa\xd0\x10\x45\x42\x9c\x19\x4f\x1b\x08\x71\x12\xbf\xaa\xca\x5e\x12\x12\x72\xc1\x72\xd9\x70\xf7\xee\xdd\xe4\xe5\x97\x5f\x0e\x8c\x6f\x0b\x90\xcf\x6b\xe6\x27\x7b\x66\xd7\xd1\xfc\xb0\xb1\x7c\xe6\x51\xeb\xe3\xab\xfb\xe1\x8b\xcd\x49\x3a\xa7\x09\x4c\xa7\x1d\xe9\xb6\x23\xe9\x7d\x7a\x2d\x4e\x1f\x3a\xa6\x14\x0b\x48\x3c\x9f\xdb\x99\x5a\x58\x44\x5a\x9d\xd2\x14\xf9\xaa\x52\x23\xe2\x10\x26\x8d\x29\x3a\xbb\xe8\xec\xdf\x7e\x34\xd9\xb9\xb5\x32\x78\xfb\xda\x5a\xff\xed\x9d\xb9\xf8\x83\x49\x50\x3e\x30\x11\x64\x1b\xff\x6c\x6a\x28\x3f\x27\x03\x98\xfa\xb4\x00\x29\x68\xf9\xc2\x17\xbe\x10\xfc\xf3\x3f\xff\xb3\x6b\xb4\x46\xbf\xab\xf4\x67\x82\x4f\xe3\xe0\xca\xcc\x76\xed\xaa\x83\xb6\xfa\x44\xd3\xd8\x3a\x0b\x2e\xb7\x4b\x21\xd3\xf7\x71\x8d\x72\x6c\xef\x41\xef\xb9\x0c\xb6\xe7\x75\x3a\x08\x49\xa6\xaa\xd1\x98\x0b\x24\x80\x3d\xb3\x7d\x03\xa7\x32\x72\xc4\xfb\x76\xaa\xe6\xb7\x8a\xde\x46\xe3\xab\xcc\xa5\x60\x03\x8a\x52\x7a\xe9\x9b\xd2\xef\x29\x05\xd7\x37\xa4\xf9\xdb\xde\xa1\xaa\x73\xf2\xed\x98\xa4\x36\x6c\xd3\x01\x2e\x9e\x36\xc0\x5b\xf5\x4c\xca\xaf\xa4\x53\xfe\xf4\x4f\xff\xb4\xd0\xe7\x70\xff\x16\x00\x51\xa0\xd1\x3e\xde\x8d\xd6\x56\xf7\x9b\x9f\x6c\x4d\x82\x0d\x95\x59\xdc\x01\x94\xe6\xdf\x4b\xd3\xf2\x1a\x45\x52\x46\xa3\xa9\x93\xa3\x09\xaa\x0c\x84\x0c\x7d\x6e\x71\x37\xf7\x82\xef\x40\x98\xa8\xd5\xe5\x7e\xf8\xec\xfa\x5e\x74\xb6\x91\xe4\x7e\x2e\x66\x65\x54\x5e\x66\xf6\x2d\xb3\x6a\xd5\x6f\x9b\x5e\xf1\xe1\xcd\xf9\xf0\x6b\x9f\xc1\x8e\xb3\x7e\xdb\x00\x89\x2d\x31\x45\xdc\x1c\xa9\xbb\x1a\x13\xe7\xe1\x42\x58\x92\xe2\xab\x6a\xf8\x79\x3e\x66\x1e\x93\x38\x2a\x15\x2a\x2b\x80\x76\x90\xa0\xfd\xf4\xc3\xf6\xd9\xe3\x7b\xd1\xa7\xe7\xe2\xe0\x4c\x00\x15\x69\x56\x53\x0b\x68\x1a\x45\xc0\xa2\x59\xf5\xd3\xe0\xa9\xa7\x60\x27\x9d\x22\x2a\x82\xa0\xd2\xbe\x2e\x24\x1f\x9d\x99\x54\x14\x43\xdc\xe6\x39\x78\x7c\x01\x60\xe9\x69\x94\x9e\x4a\x35\x6c\xe8\xde\x9d\xe5\xe1\x95\xcb\xeb\xfd\x37\x1f\xce\xc7\x1f\xc4\x0d\x4d\xb7\xf1\x2f\xf8\xb5\x20\xdb\xa7\x85\xae\x1e\xe2\xcb\x9e\xcd\xf4\xd0\x3f\xfe\xe3\x3f\x56\x01\x0d\x9f\x50\xa5\xf4\x7c\xf9\xd8\x46\xbf\x52\x3d\xaa\x02\x21\x9c\xde\x16\x6c\x72\x4b\x6d\x43\x92\xcd\x27\xd8\xda\xa0\xed\x9e\xa6\xa9\x02\x10\xb4\xb3\xb4\x75\xa6\x5c\x06\xa9\xdc\x78\x7e\x9c\xde\xd7\x0a\x50\xd5\xe1\x1b\x1a\x1f\xbd\xe5\xd3\xf9\xb9\x64\x70\xe9\x26\x29\x8d\x0d\xf8\x4a\xf2\x49\xf9\x71\xb9\x68\x47\x2b\xd1\xfa\x5c\xdb\xea\x1b\xe7\x2b\xc9\x5b\x25\x6b\xd5\xf5\xac\x20\xd5\x47\xa6\xca\x3a\x40\x8e\x78\x29\x9c\xfe\x9c\xfb\xb7\x68\x44\x0d\xad\xda\x27\x1e\xb7\xce\xce\x8f\x1a\xcf\xa6\x8b\x32\x50\xf2\x55\x31\x3a\xd9\x0c\x3c\x0b\xfe\x29\x4c\x39\x4f\xa7\xee\x01\xde\x4b\x50\xeb\x4d\xae\x99\x79\x5e\xd4\x6a\x9f\xf1\xa7\xe7\xcd\x05\x1a\xed\xce\xb8\x71\x6a\xb5\xd7\xfc\xf0\xe2\x20\x5c\xc0\xd4\xcf\x25\xcc\x7c\x77\x00\xe4\x4e\xba\x81\xd6\x1a\x5f\xfc\xe2\x17\x83\x4e\xa7\xe3\xaa\xbf\x52\x1d\x93\xfa\x77\x1e\xb8\x6e\xf1\xad\x03\xb6\x81\x92\x44\xc7\xd3\x04\xfc\xa1\xaf\x82\xe6\x99\x56\x35\x4c\x9f\x51\xa0\x54\x61\x25\x85\x68\x93\x27\x2f\x40\x6a\x1a\xa3\x16\x17\xad\x75\xc1\x21\xf7\xc8\x20\x5c\x3a\xbd\xd3\x3e\xbf\x34\x08\x9f\x6b\x24\x6a\x21\x4d\x40\x81\x8a\x62\x60\x44\x93\xff\xa7\x56\x8d\x14\xa0\x98\xa5\x6b\x28\x54\x44\x03\x76\x34\xa5\x57\xb2\xf9\x11\xa0\xce\xc0\x6c\x7a\x49\x4d\xe5\xa0\x0d\x45\xb1\xda\x6e\xf2\xcc\x4d\x8e\x59\xfc\x24\xd0\xa3\xcd\xc5\xd1\x7b\x6f\x6f\xf4\x7e\xb8\xb9\x30\x32\x27\x3d\xef\x6a\xad\xbb\x66\x8a\x28\x9b\x1a\x1a\x20\xb3\xb4\x20\xf3\x6b\xa1\x27\x92\x9a\x43\x13\x27\x93\x09\x17\xbd\xaa\x21\xd8\x82\xad\xa2\xfb\x56\x68\x5f\x45\x67\xa3\x77\x35\x34\x5f\xe5\x5a\x45\x2f\x75\xa0\xbe\x79\xb9\xf2\xb0\x01\x23\x4e\x6b\xb3\x86\x48\x72\xfa\x0c\x3a\x5c\xf1\x86\x8f\x4b\x0f\xd8\x3a\x52\x1b\x80\xb4\x0d\x62\xc4\x41\x0b\x93\xaf\xae\x72\x94\xe4\x92\xe4\xa3\x79\x56\x01\xab\xaa\xf7\x75\x05\x49\x7e\x1b\x20\xac\x1a\x0c\x72\xf9\xf8\x7b\x48\xe5\x6c\x93\xbb\xaa\xcc\x7c\x75\xb7\xd4\x8f\x54\x95\x9b\xa1\xb1\xbd\x6f\x7e\x6d\x3a\xef\xec\xda\xbc\x5f\xbe\x92\x48\x01\xe1\xdc\x38\x58\x38\xd6\x8d\x3e\x1c\x4d\xd4\x49\x05\x84\x66\x8a\x26\x9f\xd1\xd1\x65\xfd\x0d\x4c\xf5\x30\xdf\xfc\x13\x48\x61\x8b\x19\xb0\x16\xac\xec\x20\xfd\x82\xcb\x44\x4f\x42\x71\xa5\x11\x00\xa8\xa0\x39\x51\x6b\xcb\x83\xf0\xe9\xe3\xdd\xe8\x24\xca\x4e\xba\x85\x72\x54\x4a\xe1\x99\x67\x9e\x41\xaf\xd7\x93\xca\x5c\x8a\x03\xca\xe5\xed\xdb\x07\x83\xdc\x57\xf1\x76\xd5\x09\x49\x8e\xd2\x73\x5b\x25\x74\x29\x62\x7e\x5f\xa7\xc1\xb8\x78\xba\x1a\xb3\x8d\x26\x01\x80\x6f\x7e\xf3\x9b\x25\xde\x8a\x1c\x9e\x45\xa6\x89\xda\x00\xa2\x67\x37\x3b\xcf\xae\xed\x37\x3f\x1d\x4d\x82\x75\xc0\x9c\xf9\x00\x86\x90\xd9\x7e\x29\x82\x50\xb9\xd3\x6c\x16\xa4\xf3\x28\x4a\xf3\x9e\x2c\x2e\x7f\xa6\xcb\x94\xe6\xff\x29\x46\xa9\xaa\xf0\xc5\x26\x31\x51\x48\x1e\xcd\xc5\xf7\xde\x3a\xb1\xff\xea\xed\x23\x83\x9b\x19\x68\xe1\xfe\x2c\xb9\xa5\x25\x3b\x77\x48\x02\x2d\x00\xd2\xe9\xa1\xcb\x97\x2f\x03\xf6\x51\x1d\x55\x3c\xb6\x51\x11\x4f\xe7\x02\x03\x5c\xb9\xf2\xfc\x4c\xbc\x4b\x1e\x57\x27\x27\xc9\x24\x8d\x3e\xea\x04\x17\x10\x97\x68\x69\x59\xd9\x40\x0a\xa7\xe3\x69\x29\x2d\x50\x2e\x37\xda\x31\xb9\xda\xa9\x0d\x54\xb9\xca\x57\x92\xe9\x30\x82\x24\x2f\x97\x85\xca\x53\xa5\x47\xaa\x3a\x65\x89\x77\x55\x9e\xb6\x7c\x0e\xab\x0c\xaa\xf2\xf4\x1d\x70\xda\xe2\x6c\x1d\x4c\x15\x38\xf5\xc9\xdb\x05\xee\x24\x9e\xbe\xe5\x66\xd3\x1b\x2e\x39\xe8\x5f\x08\x20\x0c\x13\xd5\x3e\xb6\x17\xad\x2d\x0f\xc2\x67\xc3\x44\x2d\x1b\xfd\x5b\x98\xe1\x31\x56\x14\xee\xbf\x58\xa1\x87\xd9\x0c\x7f\x6e\x81\x07\x50\x04\x22\xaa\x18\x57\xea\x63\x74\x31\x2b\x05\x20\xd0\xaa\xdd\x19\x05\x1b\xcb\xfd\x90\x02\x17\x03\xca\xaa\xf4\xd5\x41\xea\xb7\xab\x5d\xd9\x70\x80\x8d\xb7\x8f\x2e\x76\x06\xd7\x48\x50\xca\xb4\x0e\xbf\x83\x06\x6f\x5e\x7f\xf0\x07\x7f\x20\x29\x53\x80\x78\x8e\x2b\xa5\x22\xa5\x11\x6d\xec\x46\x6b\xa7\x77\xda\x3f\x37\x3f\x0c\x9f\x0b\x34\xda\xdc\x02\x62\xab\x92\x29\x48\x99\xde\x6b\xf2\x40\x98\x8e\x2c\xd3\x59\x82\xc4\x47\xa2\xa0\x7e\x36\x55\xbc\xb5\x06\x12\xa5\x93\xdd\x76\xbc\x79\x79\xbd\xf7\xfd\xab\x6b\xbd\x77\x13\x35\xb5\xb2\x10\xb0\xd2\x15\x56\x0f\xe5\x9e\xea\xc6\x09\x37\x03\x30\x00\x80\x7f\xff\xf7\x7f\x77\xbd\x4e\x9d\x4e\xc3\x36\x32\x96\x68\x0c\x9d\xab\x83\xb4\x35\x5a\x1b\x78\xe2\x40\x40\x92\x57\x52\xe6\x55\xa0\x4d\xca\xcb\x27\xcc\xda\xe1\xf9\x96\xb9\xad\xc3\x72\x95\xa9\xed\xbb\xcd\xa2\x1c\x0f\x1a\x6c\xa0\xd8\x27\x5f\xdf\x67\x75\xea\x2f\x97\x69\xd6\x30\x6b\xda\x3a\x83\xc3\xba\xf4\x2e\x99\xaa\xbe\xaf\xef\x00\xe3\xa0\xa1\x04\x60\xa2\x28\x2a\xf0\x67\xbe\x1e\x05\xe0\x12\x24\x68\x2f\x0d\x1a\xab\xad\x58\x9d\x02\x50\x52\xde\x05\x5f\x16\xa6\x78\x55\x89\xa8\xd8\x07\xe4\x56\x1b\x92\x56\x72\xf8\xe5\xfd\x86\xd2\x2c\x2b\x41\xa6\x40\x23\x6a\xc5\xc1\xfa\xe2\xa0\xf1\x64\x7b\x14\x74\xc0\xc0\x0b\xdc\xe5\xec\x63\x31\x3b\xa8\x1e\x73\xf1\xa6\x7c\x5d\x7d\x42\x65\xbc\xa4\xb4\x5c\xe8\xc9\xc6\x8c\x8e\xe8\x28\xaf\x2a\x25\x6f\x6b\x4c\xd2\x68\x5b\xba\xce\xf9\x92\x69\xa2\x42\x05\xcd\xff\x34\xa2\x30\x51\x9d\xa7\xb7\xda\xcf\x2d\xf7\xc2\x0b\x61\x82\x05\x6a\xd9\xc8\xd7\xe7\xb8\x1c\xb1\x14\x9d\xd2\x29\x3b\xf0\x16\xd2\x50\x9e\x34\x2e\x5f\x1c\x34\xcd\xa8\x50\xe9\x4b\xfe\x33\x6a\x3a\xd7\x49\x10\xba\x46\x71\xfe\x53\x13\x01\x74\xa0\x93\xcc\x19\xf7\xcd\x77\xd6\x7b\x6f\x4f\x54\xbe\x7d\x7f\x37\xdb\x9b\xc5\x1c\x9c\x38\x42\xba\xf4\x99\x02\x17\x00\x85\x03\x13\x13\x00\xf8\xde\xf7\xbe\x97\xe5\xa3\xf3\x38\x4b\xa0\x75\xc0\xc7\x8a\xc6\xe3\x78\x3d\x74\x9a\x0c\x19\x5d\x95\x45\xd0\xf6\x5c\xca\x43\xca\xd3\xf6\x4e\xb6\x7c\x5c\x60\x87\xa7\xf1\x1d\xe5\x56\xb5\x4d\x9f\x11\x8e\x4d\x1e\x9e\x86\xd3\x48\x32\x54\xc9\x64\x6b\xb7\x75\x94\xa2\xa4\x53\x5c\x20\xcb\xb7\x73\xad\x93\xff\x41\xc3\xac\x3c\x7c\xc0\x14\xd5\x99\x87\x21\x8b\xeb\x3b\xf9\x5a\x3c\x78\xdd\xf7\x05\xe6\x55\xe0\xcb\xda\x77\xd0\xed\x18\xc8\x56\x14\x05\x8b\x8b\xf1\x71\x09\xb4\x8a\xe6\x47\x8d\xd5\x70\xa2\x96\x29\x8f\x5c\xff\x66\x0a\x55\x2b\x2d\x5b\x58\xc4\xe5\xa5\x64\x1a\xc9\xfc\xa7\xa6\x53\x46\x65\xc0\x23\x2c\xb7\x90\x78\x1a\xca\x94\x3c\x68\x24\x6a\xa1\x33\x6a\xac\xaf\x0c\xc2\x25\x90\x3e\x2e\x7b\x37\x23\x83\x79\x5f\xce\xae\xea\x1b\xd8\xda\x3d\x2d\x47\x1a\x57\x15\x24\xfa\x83\xd6\x03\xeb\x3e\x2e\xbc\x11\x54\x8d\xc6\xa8\x62\xf4\x35\xf7\x49\x23\x26\xae\x00\x6d\x4a\xd5\xd6\x50\xcd\xe9\x9f\xb4\x90\x43\x20\x05\x2d\x27\x1e\xb7\x36\x9e\x78\xdc\xfe\xd9\x76\x1c\x9c\x55\xd9\xbb\x97\xac\x25\x04\x1c\xf0\xb8\xf4\x72\xea\xdf\xc2\xe7\x38\xf3\xd3\x97\xc1\x4c\x8e\x84\xdf\xd4\x01\x2b\xf7\xe6\x62\xf5\x5f\xb8\xcb\x96\x55\x4f\x97\x38\x67\x4f\xa8\x5c\xd9\x75\xa2\x34\xfa\x61\xd2\xfd\x60\x69\x74\xf5\xf2\x7a\xef\xcd\xfd\x68\xf2\x10\x2a\xdf\xa3\x65\x90\xf9\xb5\x18\x9f\x96\x81\xd9\x5c\x0e\x99\xb5\x85\x1f\x98\x08\xa4\x7b\xb5\x90\x1d\x71\x69\xe0\x60\xd5\x56\x49\x79\xdd\xb0\xd5\x2f\x89\x8e\xf2\xb0\xc5\xdb\xd2\xd8\x78\x57\xe5\xc3\xf3\x94\x3a\x7a\xdf\x77\x80\x40\x23\xc9\xc9\x01\x9f\x8f\xdc\x9c\xb7\x4d\x3e\xdb\x60\x62\xd6\x32\xe5\x79\x72\xf9\x29\x6f\x1b\xa8\xa9\xd2\x39\x3e\xd7\xb6\xf4\x55\xa0\xa6\x2e\x3f\x57\x3e\xbe\x80\xc1\x17\x54\xcc\x12\x24\xd0\xe6\xca\xaf\x4a\x6e\x5e\x17\xab\xf2\x74\x3d\xaf\xfb\xde\xbe\x65\x5a\xfa\xa6\x51\x14\x05\xa3\xd1\x28\x31\x83\x58\xd3\x91\x93\xe3\x52\xd2\xe5\xd0\x3a\x9d\x2a\x6a\xc7\x8d\xa3\x61\xa2\x96\x28\x53\x7a\xb8\x2d\xbd\x07\x50\xe8\x14\x34\xd3\xfd\x66\x10\x69\x9d\xce\x17\x74\xb5\xd9\x67\x2b\x07\x37\x96\x50\xec\x87\x14\x02\xad\xa3\xf6\x24\x58\x5e\x18\x36\x96\x01\x6c\x66\xef\x1f\x50\xf7\x08\xe3\x93\xc8\xe4\xf1\x29\xd7\xaa\x7a\x61\xbb\xb7\xa5\x73\x01\xa1\xaa\x3a\x6a\x4d\x17\xd2\x1b\x81\xd0\x67\xe4\x2c\x85\x59\x46\xdc\x55\x15\x5d\x54\x4c\x2f\xbf\xfc\x72\xbe\x82\x28\xdb\x80\x87\x83\x96\x50\xe9\x74\xb3\xb9\x27\xb7\xdb\xcf\xae\xf4\xc3\x97\xd2\x3d\x5b\x8a\xeb\xf5\x69\x90\x00\x07\x0f\x72\x9c\xf2\xa2\xa7\x26\x43\x2e\x83\xbd\x02\x17\x1d\xc4\xa6\x60\xa9\x78\x3d\x6a\xe8\xde\x83\x85\xd1\x8d\xab\xc7\x7a\xaf\x3f\x58\x18\x7f\x90\x28\xdd\x85\x4e\x57\x0f\x19\xd0\x92\x5d\x1b\xd0\x92\x4f\x0f\x19\x0b\x8b\xa9\xf4\x40\xea\xd7\x02\x80\xef\x88\xeb\x53\xe9\x6c\x88\x59\x02\xac\x36\x3a\x09\x0c\xf9\x28\x34\xdb\xa8\xac\x2e\x3f\xde\x41\xd9\x82\x6d\x54\xca\x9f\xb9\xea\x76\xdd\xe0\x2b\x0f\x2d\x8b\xaa\x8e\x98\x86\x2a\x59\x7d\xd3\x48\x60\xc6\x36\x10\xaa\x63\x35\xe0\xbc\x7d\xd3\xcd\x02\x20\x5c\x40\xa7\xee\xa0\xcd\x84\xba\xef\x5a\x27\x4d\xd5\xb7\xa9\xe2\x53\xb7\x83\x93\xbe\x43\xdd\xfa\xe6\x1b\xef\x5d\x66\xd4\xe2\x42\xfc\x1c\x83\x40\x23\x6c\xc5\x41\xbb\x3d\x0e\x96\x1b\x5a\x59\xf7\xef\xa2\x0a\xda\x1c\x9e\x98\xf3\xe6\x34\xd4\x65\xc0\xd6\x09\xb0\x24\x46\x46\x63\x51\xa9\x74\x61\xcc\xf9\xab\x30\x8c\xd5\xd2\xdc\x38\xa0\x16\x97\x80\xf4\x7f\x1e\xfe\x90\xd6\x60\x03\xc1\x3e\xdf\xc6\xd5\xbe\x39\xbd\x94\xce\xfb\xdb\xda\x2c\x17\x26\x24\x84\x86\xa6\x01\x8b\x0f\x18\xad\x34\xba\xe3\xe9\x5d\xf7\x52\x1e\xa5\x02\x35\xdb\xfa\x9b\x38\xe9\x2c\x22\x00\x51\x73\xa2\x3a\xc7\xbb\xd1\xc9\x93\xbb\xd1\x7f\x69\xc7\xc1\x19\xa0\x0c\x14\xa8\x45\x8d\x2f\x41\x36\x2b\x8c\xec\x3e\x25\x64\xb5\x0f\x9d\x33\x62\x66\xba\xd2\x9c\x66\x16\xab\x2c\x8c\xa5\xe5\xf8\x4a\x67\x73\xa1\x5c\x7e\x68\xc4\x41\x32\x7a\x34\x3f\xbe\x7b\xfd\xe8\xe0\xed\xdb\x47\x86\xd7\xe3\x86\xde\x25\x87\x25\x76\xc9\x75\xbe\x8d\x7f\xb6\xec\x99\x2e\x79\x06\x07\x2d\x59\x90\x46\x61\xd2\xaf\x54\x31\x4d\xbc\x54\x41\x79\x1a\x17\xa0\xad\xba\x96\xac\x18\x36\x19\x6d\xe0\x9c\xcb\xc0\x1b\xaf\xd4\x66\xaa\xde\xdb\xd6\x91\xd8\x64\x72\xbd\x83\xeb\x7d\x5c\x69\x66\xe1\x0d\xb8\xcb\xa7\xea\xfd\x6c\xc1\x47\x41\x49\x3a\xc7\xf6\xbc\x2e\xbd\xeb\xda\xaa\x6f\x1c\xbc\x5d\x8a\x9d\x5f\xfb\x58\xcd\x24\x7a\x1f\x5a\xca\xd7\xa6\xb7\x39\x4d\x55\x70\xf1\x98\x45\xbf\xdb\x9e\xcd\x04\x4e\x0c\xfd\xdc\xdc\x5c\xc0\xa6\x8a\x02\x76\x1d\x20\xed\xdc\xf2\xd7\x76\xdc\x00\x00\x20\x00\x49\x44\x41\x54\x43\xa5\x11\x36\x27\xaa\xdd\x4c\xd4\x42\xba\x00\x2c\x40\xd3\xbf\x7f\x17\x71\x4a\xa1\xfd\x80\x65\x34\xa9\x69\x8f\xa0\xa6\x31\xb9\x2d\xbe\xd0\xa9\x14\xdd\x09\x38\xa6\xb1\xb9\x09\xe4\x2e\x05\xdc\xef\x25\xa5\x0d\xc2\x44\x75\xa2\x38\xe8\x80\x0e\xd0\xa7\x03\x78\xd0\x69\x23\xb2\x34\xbc\x4e\x9d\xe6\xed\xbe\xaa\x3e\x72\xfe\x2e\xde\x26\xde\xb7\x0d\x97\xea\x89\x4f\xc5\xa5\x0a\x9b\x0a\xe7\x52\xa2\x36\x41\x0d\x8d\x4b\x41\x48\x7c\xad\x8d\x9e\x6d\x2c\x44\xff\x42\xad\x75\x14\x24\x68\x2f\x0e\xc2\xe5\xd3\x8f\x5a\xcf\x2f\x0f\xc2\x4f\x28\xad\xda\x92\x61\xce\xac\x2a\x9a\xce\x71\x92\x67\x10\x0e\xca\xa2\x69\xa5\x1b\x3a\x2f\x04\x8b\xe5\x46\x67\x84\x36\xeb\x22\xf3\x3a\x07\x90\x6f\x6c\xc4\x93\x24\x0a\xc9\x6e\x7b\xb2\x79\x73\x65\xf0\xce\xad\x95\xc1\xd5\x7e\x73\xb2\x43\x96\x3b\xf7\xb2\xdf\xfc\xc0\x44\xad\x75\xac\x94\x8a\xe9\xa1\x89\x40\x6a\x6d\xb9\x78\xf1\x62\x42\xc0\x98\x2f\xd0\xa4\x7f\xb9\x58\x2c\x4d\x22\xd0\x49\x15\x58\xca\xcb\x96\xc6\xd5\x00\x38\x1d\x97\xd7\xd6\x30\x6d\x0a\x95\xa6\x71\xc9\x63\x0b\x2e\xb9\x7d\xde\x95\xf3\xb2\xf1\x76\xf1\xe0\xef\x63\xeb\x2c\x6d\xed\xd5\x25\xb7\x24\x9f\xad\x43\x92\x78\xb8\x3a\x2f\x9e\x8f\x0d\x8c\x49\x69\x79\xb0\x3d\xe7\xba\xae\x4e\x5a\x13\xaa\x3a\x63\x5f\x40\x67\x03\xc2\xbe\x72\xf8\xea\x62\x5f\x39\x24\x7a\xdb\x3b\xb9\x74\x46\xd5\x3b\xf0\x7a\x21\xf5\x3d\x25\x19\xfa\xfd\x7e\xc2\xcf\x25\x62\xcb\x96\x03\xc0\xec\x71\x52\x18\xe0\x66\x09\xd2\xff\xb8\x6f\xac\x04\x36\xb2\x93\x9b\x73\xa8\x32\xed\x21\x50\xa4\x34\x27\xe0\x12\x1e\xd4\x3a\xce\xa8\x73\x8b\xbd\x49\x6a\xac\x30\x42\xbf\x13\x04\xa9\xcf\x66\x1b\xac\x6d\x1a\xab\x8b\x79\x67\x87\xe5\x45\xfa\x0e\x3e\x60\xd7\x06\x7a\x7d\xea\x4c\xd5\x60\xaf\x2a\x5d\x2e\x5f\xc0\x08\x5c\xca\xb7\xaa\x41\xf3\xc0\x79\x27\x96\x78\x9e\x07\x97\xa5\xd4\x00\x8f\x1f\x3f\x1e\x7c\xfb\xdb\xdf\x36\xfe\x2c\x85\x82\x24\xfb\xb5\x84\x0a\x2a\x6c\xc5\x41\x67\xbd\x1b\x9d\xda\xd8\x6b\x5d\x68\xc5\xc1\xa9\xbc\x32\x12\x28\xcb\x7d\xc6\xd3\x7d\x50\x64\x01\x45\xf0\x91\x9f\x57\x51\x86\x35\x52\x05\xcd\x9f\xd9\x4c\x2d\x42\x9e\x1a\xba\xb4\x23\xa2\xc6\x14\x6c\xf5\x9b\x93\x9d\x3b\x47\x86\xef\xdd\x5c\x19\x5c\xd9\x69\xc7\x0f\x30\xb5\xae\xe4\xa0\x05\xa9\x03\xee\x00\xa9\xc5\xa5\xb0\xb9\x9c\xd9\xca\xdf\x54\xf4\x1f\xff\xf8\xc7\x10\xfc\x5a\xa4\x4e\xcf\x36\x4a\xb7\x75\xa4\x55\xa3\xf3\x2a\xa0\xe4\x0a\x2e\x45\x9d\xc0\x5e\xdf\x6d\xc1\x67\x04\x20\xe5\x6b\x03\x32\xae\x4e\xbc\x4a\x41\x73\x70\x28\x29\x10\x1b\x50\xb4\xc9\xc6\xd3\x70\xf9\xea\x96\x8f\x2f\xc8\xaa\xe2\x25\x05\x5b\xe7\xe8\xca\xd7\x95\x5e\x8a\xb7\x95\x7f\x1d\x0b\x80\x0b\x18\xf2\x7c\x5c\xd7\x75\x82\x8f\x7c\xd2\xb7\xf5\x01\xc7\x55\xc0\x94\xdf\x27\xe4\x0f\xec\xda\x27\x54\x81\x37\x51\x9e\x23\x47\x8e\x04\xcc\x42\x5c\xf0\x75\xcc\xac\x10\xe9\x40\x57\xe9\x20\x51\x08\x12\xa5\x4b\x72\x49\x83\x45\x9b\x76\xe7\xce\xb6\xae\x19\x22\xc9\x1d\x41\x06\x2f\xec\x3a\x3f\x77\x6e\x9a\x99\x02\x02\x05\x15\x36\x12\xd5\x22\x47\xd9\x18\x60\x56\xfa\x2e\x82\x9f\x0b\x0f\xb6\x81\x43\x15\xc8\xf6\xf9\xae\x55\x75\xcc\x37\x5d\x41\x46\x09\xdd\x02\x76\x25\x51\x95\x91\x4d\x49\x43\x88\x77\xbd\x34\x55\xe4\x25\x9e\x4f\x3c\xf1\x04\x80\x62\xc5\x44\xf1\xc3\xa5\x4b\xde\x34\xda\x4b\xc3\x70\xf5\x89\xc7\xd1\xf3\x4b\x83\xf0\x85\x40\xab\x08\x30\xc6\x90\x6c\xd2\x52\x6b\x28\xe2\x09\x5e\x70\xb6\xb2\x4c\xf5\x14\x7e\x45\x73\x8b\x2d\xa6\x68\x36\x94\x2c\x3f\xbc\x71\x4c\x2b\xb7\x2a\x1e\x9f\xae\xa7\x17\xa3\x86\x1e\x6c\x2e\x8c\x6f\xdd\x5a\x19\x5c\xd9\x9a\x1f\x7f\xa0\x83\xe9\x5e\x2d\x5a\x6b\x73\xca\xb3\xf9\x33\x3e\x2d\xd4\xb7\x25\x5f\x45\x64\x1a\xff\xbf\xfd\xdb\xbf\x25\x83\xc1\x40\xaa\x9c\x92\x42\xe2\x71\x36\xe5\x45\xc1\x83\xad\x1e\x48\x69\xaa\xf2\xf6\xe5\x31\x0b\x6f\x58\xe2\xeb\xe6\x29\x85\xaa\x11\x07\x2d\x2b\x57\xb9\xfa\xc8\x5a\xd5\x91\xb8\xe2\x5c\x79\x56\xbd\xb7\x0f\x58\xf5\x51\x92\x26\x70\x25\x2b\x7d\x4b\x1e\x7c\xc1\x70\x65\x07\x69\x89\xf7\xb1\xd0\x50\x45\x4c\x41\xa1\x0d\x2c\xce\x92\xbf\x6b\xc4\x5c\x05\xb6\xa5\xe0\x2a\x57\x5e\x56\xfc\x3d\xa5\x3c\x79\x98\x05\xb4\x89\xf2\x3c\x7e\xfc\x38\xa1\xbb\xe5\x4a\x79\x15\x80\x8c\xd2\x48\x80\x84\x6b\x78\xba\x6a\xb4\xf8\x44\x95\x2c\x1f\x9a\xa4\x2a\xa4\xe1\x6e\x07\x9a\xe9\x75\x73\x40\x23\x24\x38\x44\x56\x11\x01\x25\xab\xbd\x99\xd6\x52\x1a\x81\x9a\xee\xdd\x02\xa0\xb0\x82\x28\x2f\x07\xc7\xaa\xa2\xaa\x01\x55\x5d\xa0\x51\xca\x5b\xc8\xb7\xaa\xce\x49\x32\x71\xbd\x17\xd8\x08\x6d\x99\xd2\xdf\xba\x0d\xdf\x85\xba\x5c\x23\x53\x51\xa6\x0b\x17\x2e\xe4\x1f\x84\xec\x90\x9b\x5b\x5b\xb4\xd6\xe9\x01\x5a\x71\xd0\x39\xda\x6d\x9e\x3a\xbe\x17\xbd\x18\xc5\x6a\x83\x57\x93\x14\x78\xa8\xdc\x43\xbc\xf0\x89\xa5\xa9\x1e\x2d\x3b\xd6\xa6\xcf\xb5\x50\xd9\x49\x7e\x0c\xe5\x94\x2a\xad\xa6\xf1\x12\x4f\x66\x17\xca\x1e\x24\x01\x92\x9d\xb9\xf8\xee\xcd\x95\xc1\x95\x7b\x8b\xa3\x9b\xe3\x86\xde\x25\x53\x43\xbd\xcc\x11\xb7\x97\x9d\x3d\x44\xcf\x1f\x8a\x81\xf2\xf9\x43\xec\x15\x6c\xdf\xcb\x15\x27\x7d\x6b\x8e\x98\x6d\xcf\x6c\x7c\x78\x90\xe8\xf8\x73\x17\x9d\xa4\xe0\xab\x14\xbe\x44\x23\x35\x72\xe9\x9a\x77\x5a\x36\xde\xfc\xbe\x4e\x59\xf9\x3c\x73\x7d\x3b\x57\x19\x48\xb2\xda\xf2\xe5\xf4\x75\xc1\x80\x6f\xc7\x5b\xc5\x87\xc6\xd9\x3a\x59\x17\x5f\x9f\x0e\x5b\x8a\xab\xe2\x67\xd3\xa5\xf4\x9b\x9b\xe7\x12\xaf\x2a\x80\xe9\x13\x24\x10\x63\x4b\xeb\xf3\xcd\x6c\x20\x55\xd2\x27\xb6\x50\x07\x78\x8a\x81\x9e\x54\x4f\xfa\x07\x00\x53\xbf\x3d\xe3\x0c\x3b\x51\x40\x12\xe8\xa4\xe8\xbd\xa8\xc4\xc1\x24\x0d\x92\x75\x84\x9f\x10\xcd\x67\x8b\xca\xc7\xce\xd1\x85\x21\x8a\xe8\xfb\x69\x72\x49\x8a\x7c\xd0\xaa\x80\x44\xe9\x24\x56\xda\x4c\xe9\x07\xf9\xbb\x09\x8e\x91\x96\xb3\x8b\xaa\xea\x4a\x01\x28\x90\x50\xd5\x1f\x1c\x46\x3d\xaa\xa4\xb1\xa1\xaa\xaa\x8a\x22\xbd\x10\x6f\x88\xae\xca\xec\xdb\x20\x0b\x69\xe9\x06\x43\xcc\x24\x96\x9f\xfa\x99\x81\x97\x48\x69\x44\x4b\x83\x70\xf5\xe4\x6e\xf4\xfc\xe2\xa0\xf1\x91\x00\x2a\xd4\xc6\x01\xcb\xf0\xc0\x14\x90\x00\x80\xd2\x5a\x74\x88\xcd\x41\xca\xff\x4f\xdc\x9b\x3e\xd9\x71\x5c\xf7\x82\xe7\x64\xd5\xad\x7b\xfb\xf6\xed\x46\xa3\xd1\x6c\x81\x20\x48\x41\x14\x48\xd1\x12\x45\x69\x08\x4a\xd6\xe2\x27\x79\x91\x57\x79\x26\x34\x5e\x43\xe1\x78\xb2\x47\x11\xe2\x97\xf9\x8f\x40\xdb\x11\xf6\x17\x87\x17\xf9\x83\x17\x8d\xc7\x21\xd9\x63\xca\x4f\x4f\xb6\x45\xca\x96\x44\x59\xa2\x28\x10\xa0\x48\x10\x68\x00\xbd\xf7\x5d\xab\x32\xe7\x43\x55\x56\x9d\x3a\xf7\xe4\x52\x0d\xc8\x2f\x23\xba\x6f\x55\xe6\xc9\x93\x27\xb7\x93\xbf\x3c\xb9\x14\xb6\x41\x0b\xe5\xd1\xda\x56\x5e\x87\x35\x7e\xad\xa5\x27\x02\x52\xa8\x30\x75\xc3\xad\xc3\xa9\xdd\x52\x00\x57\x60\x60\xdc\x2b\xf6\x7f\xb4\x31\x7d\xf5\xad\x8d\xd9\xb5\x93\x7e\xb1\x0b\x08\xad\xcb\xe5\xec\xe9\x21\x7b\x23\x2e\xb4\x8f\x3c\xdb\xa5\x22\xb8\x7a\xf5\xaa\xfe\x95\x5f\xf9\x15\x69\x90\x95\x06\x67\x69\x20\xa0\x16\x02\x80\xe5\x86\x2f\xb5\x07\x1e\xc6\x67\xec\x9c\x1f\x08\xcf\x92\x93\x68\x43\xed\x93\x82\x04\x5f\x7c\x5f\x1a\x52\x9c\x98\x99\x06\xa5\xf5\xf1\x97\x2c\x1a\x52\x3a\x92\x3c\x4b\xb3\x16\x07\x6f\x97\xa2\x0a\xc9\xc3\x5d\x97\x41\x94\xd7\x85\x94\xa6\xc4\xd7\x05\x24\x25\x7a\xca\x33\xa4\xdf\x7c\x7a\x31\xa4\x80\x63\x74\x9d\xab\xfc\xb9\xe3\x79\x95\x00\xa2\x2f\x4e\xa8\xcf\xc4\x0e\x14\x52\x9b\x88\x29\x6b\xfe\xeb\x6a\x7b\x3c\x4d\x57\x5a\x2e\xbe\x4b\x8e\x02\x15\xee\x0c\x02\x2c\x12\x9d\x4f\x53\x3d\x35\x68\xe6\x52\x7c\xba\xb7\x65\x79\x92\xba\xbc\x61\xb6\xb5\x4c\xc4\x36\xd4\xf2\x7d\x2d\xd4\x7f\x79\x49\x4a\x26\x66\xe0\x46\xe7\x09\x4c\xa7\x3d\x7d\xc2\xf3\x47\x37\xe8\xda\xf7\x8e\x27\x8c\x5c\x7d\xca\xd5\x27\x25\xbd\x11\x6a\x3f\x9c\xbf\x14\xd7\xdb\x47\x5d\x0d\xd0\x47\xcf\x05\x72\x01\x18\x4e\x47\xc3\xb8\x5f\x48\x59\x2a\x80\xf2\x82\x21\x72\x46\x1f\x00\x5a\x6b\x7a\x0a\x11\x53\x44\x4c\x11\x30\xcd\x0a\x1c\x9e\x3b\xe9\x3d\xf6\x8e\xa3\xec\x99\xac\x50\xe7\x4b\xfb\x5a\x83\xa8\xdb\x0d\xd3\x22\x85\xe5\x5d\xaf\x1c\xa4\xd0\xdf\x86\xc8\xd8\xbd\x5d\x4b\xae\xf5\xe1\x2c\xc2\x53\xe2\x84\xb2\x77\x05\x6a\x2c\x3c\x6a\xf6\xe5\x2c\x12\x33\xbd\xb5\x3e\x7f\xf5\xfa\xe6\xf4\xd5\xfd\x95\xfc\xb6\x69\x40\x8b\xdd\x88\x3b\xb5\x37\xe3\xda\xcd\xb8\xd0\xdc\x8c\x5b\xbb\xa2\x28\xe0\x97\x7f\xf9\x97\xd5\x97\xbe\xf4\x25\xde\x08\x7d\x0a\xd6\x35\xbb\x96\x94\x95\x6b\xe6\xe5\xe3\x25\xcd\x8c\x43\x8d\x9a\x5b\x00\x42\x79\x71\x75\x4c\x5f\x27\x74\xc9\xe3\x02\xde\xbe\x4e\x4c\xc1\x19\xa7\xed\x3a\x43\x89\x19\xc4\xb9\xf3\x81\x0e\x9f\x6c\x3e\x7e\xb1\x83\x8b\x54\xde\x1c\xac\x86\x66\x63\x12\xd8\x74\xa5\x27\x0d\xe2\xa1\x01\x58\xf2\x77\x29\x62\x5f\x9c\x28\x65\xec\xe0\x11\x0b\x72\x7c\xfc\x43\x3a\x3a\x14\xb7\x4b\x1f\x91\xca\xd4\x07\xa0\x38\x4f\x1f\x2f\xdf\xd8\xb2\xf4\x61\x45\xc9\x19\x63\xc0\x20\xe8\x79\x6a\xe6\xc7\xfd\x62\x7f\x5e\x7e\x70\x56\x04\x15\x58\x05\xb4\xb6\x0f\xd0\x30\x1b\xcf\xb4\x41\x8b\x74\x92\xc3\x98\xe6\x43\x8d\x74\xe9\x88\x92\x1a\x43\x6c\xf0\xd8\x8e\xdb\xca\x34\x9a\x7c\x96\x14\xc7\x27\x59\x31\x16\x33\x09\xcb\x00\xa6\x72\x31\xfa\xc5\x35\x71\x08\xb5\x39\xd7\xc4\xcf\x86\x49\xba\x4a\xea\xef\x21\xbd\xa5\x00\xe8\xae\xea\xe5\x84\x78\x02\x2e\x81\xe9\x7b\x68\xf6\x45\x69\x62\x85\x95\x06\x07\x69\xc3\x91\x82\xea\xf8\x33\x02\x0c\xce\x4e\x7a\x9b\x8f\x1c\x66\x3f\xb1\x3e\x4b\x9e\x54\xd5\xe7\xca\xc5\x4d\x50\x66\xd9\x5f\x02\x2b\xd4\x71\x24\x6e\x81\xc5\xb2\x99\xb1\xa4\xe0\xf4\xcd\xc7\x17\xdb\xf1\x96\xf8\x42\xdb\x88\xc9\x25\xda\x1d\xe6\x6f\xbc\xb6\x35\xf9\xee\xdd\xd1\xe2\xad\xea\x8b\xcf\x63\x28\x6f\xc8\xad\xbf\x45\x04\xd5\x75\xfe\xd5\x09\x22\xfe\xa5\x67\x2d\x2c\x0f\x01\xc8\xca\xc5\xa5\x8c\x62\xfd\x5d\xbc\xbb\xf2\x8d\x7d\x76\xf1\xeb\xca\x27\x26\x1f\xf7\x33\xcb\xed\x22\xd7\xfd\xca\x13\xc3\x53\x7a\xee\xc2\xcf\x57\xde\x5d\xd2\xa4\xcf\x5d\x74\x0b\x57\x86\x92\x8b\xa1\x75\xe9\xc0\x90\xa2\xe5\xb3\xc8\x58\x99\x5c\x32\x72\x79\x7c\xb4\xae\x81\xc0\xe5\xdf\x15\xb8\x75\x71\x31\x03\x92\x2b\x8f\x54\x6e\x89\xfe\x34\xe5\xd9\x72\x1a\x8d\x3e\xee\x17\x7b\xf3\xd4\xec\xaf\x2c\x60\x1b\x8d\xb0\xa4\x03\x50\x7b\x18\x20\x3b\x07\x18\xf0\x30\x35\x22\x41\xe1\x0b\xcf\xd5\x7c\x98\xcd\x60\xa9\x7e\x47\xa8\x40\x11\x1d\x18\x80\x8c\x0d\xf5\xd2\x52\x99\xb0\x46\x98\x8f\x33\xbd\xbb\xbf\x92\x1f\xb2\x03\x2a\x65\xbc\xe6\xd6\x60\xc9\xb9\xca\x96\x87\xf3\xe7\xfb\xa5\x75\xa5\x7d\x2a\xbd\x1b\x42\x60\xa1\x44\x68\x78\x0c\xf8\x08\xa1\x36\xca\x9b\x77\xfc\xa5\x46\x4c\xf6\xb7\xd0\xeb\xfd\xb3\x5e\x81\x83\xed\xa3\xec\xf2\xf9\xc3\xec\x83\xbd\x5c\x9d\x07\x80\x6a\x43\x94\xb0\x15\x0a\xa1\xde\xe3\x02\xb0\x6c\xf2\x5b\x76\x46\x30\x1f\xda\xe3\x71\x12\x6e\x97\x41\x50\x93\x06\xdf\xf7\x12\x30\x21\x56\xee\x70\x90\xef\xfc\x60\x6b\xfc\xad\xb7\xce\xcc\x5e\x9f\xa6\xda\x1e\x7d\x3e\xae\xf6\xb3\x4c\xab\xfd\x2c\xd6\xda\xa2\x81\x6c\xc6\xad\x4e\x10\xd5\x68\xfc\x17\x7e\xe1\x17\xa4\x59\xb2\x04\x18\xb5\x10\x26\xbd\xfb\x9e\x41\x78\x96\xf8\x71\xde\xdc\xf9\x78\xfb\xd2\x92\xe4\xe6\x61\x3e\x39\x5d\x74\xae\x7c\xfb\x78\xc7\xca\xe3\x7b\x8e\xe1\xed\xe2\x47\xdd\xfd\xc4\x09\x95\xdd\x7f\x85\x8b\x1d\xe4\xef\x87\xb6\x0b\x7d\xac\x82\x8e\xe1\x13\x4b\xdb\xf5\x99\xeb\xd9\x07\xc9\xdb\xc5\xc3\xe5\xaf\x1c\xfe\x2e\xb7\x54\x3e\x74\x8f\x0b\xfd\x5c\x09\x90\x31\xc4\x4e\xdc\x34\x42\x7e\x38\x28\x8e\x27\x69\xb1\x0b\xe0\x00\x2d\xc4\xf1\x65\x7d\x6a\x9c\x2f\xad\x26\xcb\x9b\x77\x4b\x39\x04\xcf\xca\xb5\x74\xbd\x30\x48\xe0\xd2\xf8\x81\x60\x10\xf4\x2c\xd5\x87\x07\x2b\xf9\xce\xde\x70\x71\x48\x40\x8b\x06\xa8\x41\x4b\xab\x1c\x88\xd5\xc5\x07\x58\x28\x8d\xf4\x7c\xbf\xb4\x31\x2e\x5a\x67\x50\xa5\x73\x3f\x09\x4b\x8a\x8b\x86\xf9\x78\xf3\x99\x8d\xd3\x71\x53\x60\x55\x29\x76\xb9\x28\x03\x80\xcc\x18\x93\x6e\x9d\xf4\xb6\x2e\x1c\x66\xef\x5b\x9d\x27\x8f\xa3\xbd\xda\x9f\x9c\xa9\xf7\x39\xde\x40\x97\xf7\xcf\x2e\x83\x11\xda\xb0\x00\xe4\x76\xea\x68\xbb\xad\xe3\x77\xa1\x65\x29\x63\x4a\xd4\x3d\x4b\xf4\xf8\x47\x1b\xd3\xef\xdc\xd8\x9c\xbe\x36\xc9\x8a\x7d\x20\xcb\x43\xec\x04\xd1\x1c\x00\xec\x7d\x2d\x4b\x40\x13\x11\xe1\x67\x7e\xe6\x67\xd4\xdf\xff\xfd\xdf\xf3\x19\x0c\x6f\xe0\xbc\x7e\x97\x14\x02\xc4\xd7\xb3\x7d\xf6\xb5\x3b\x27\x58\x65\xbf\xae\x74\x5c\xb3\x3b\x17\x0d\x97\x5d\x1a\x80\x25\xa0\xce\xc3\x24\x59\x7c\xbc\x29\x1d\xc0\x72\x19\xf9\x1c\x8f\xe3\x1b\x60\x5d\x75\xeb\x1b\x2c\x7c\xb3\xe1\x18\x19\xbb\x0c\x60\xa1\x7a\x0d\xd5\x8d\xcf\x75\x01\x50\xff\x55\xc0\x2b\x04\xc6\xbb\xc6\x3b\x2d\x6f\x5a\xc7\x5d\xf3\x1b\xa2\x8f\xa9\x33\x57\x5b\x72\x81\x70\x6f\x9f\xa0\xf7\xb8\x38\xf8\x6a\xa8\x26\x6e\x85\x32\xfa\x70\xb0\x38\x3c\x58\xc9\x6f\xe6\xca\x4c\xad\x86\xe6\x7a\x9a\x6f\x9c\x95\x5c\xbd\x75\xd2\x2c\x8f\x30\x16\x94\x48\xf1\xb9\x8e\xe7\x7b\x67\x5a\xab\x3c\x76\x73\x8b\x32\xf3\x71\x56\xec\xef\xaf\xe4\xb7\x72\xb5\xb4\xec\xdf\xd2\x43\x7c\x63\x32\x3c\xf8\x3a\xee\x1a\x2f\x46\xc7\x46\xc5\x93\x06\x9b\xd0\x2c\xab\xab\x40\xb1\x96\x18\xef\xcc\xe6\x77\x7e\xe7\x77\xea\x4b\x75\x00\x5a\xdf\x65\xa8\xaf\x3c\x06\x80\xac\xa7\xd5\x70\xfb\x28\xbb\xbc\x75\xdc\x7b\xaa\x57\xa8\x2d\xa8\x2c\x21\x16\x60\x88\xa8\x18\xa0\xe5\xdb\xb2\xcc\x58\x60\x61\x2a\x73\x5e\xb0\x05\xdb\xb5\xd1\x36\x61\x6b\x2f\x8d\xd0\x38\x6b\xd9\xa4\x5d\xe1\x84\x89\x41\xd0\x77\x57\x17\xd7\x7f\xb8\x35\xfd\xde\xe1\x20\xbf\x53\x20\x1c\x03\x82\x3d\xf2\x6c\x97\x88\xf8\xd7\x9e\xeb\xdb\x71\x2d\x22\x47\x44\xf8\xcf\xff\xfc\x4f\xf8\xc7\x7f\xfc\xc7\x98\x01\x32\x66\xf6\x27\x0d\xa4\x52\x3c\xa9\x91\xfa\xf8\xbb\xe8\x42\x03\xb1\xc4\x87\xd3\xb9\x00\x43\xec\x6c\xd7\x07\xba\x24\x1a\x9f\xdc\xbe\x4e\xeb\x02\x94\x31\x1d\xbd\x0b\xb8\x88\x49\x47\x8a\xe3\x03\xae\xa7\x1d\xa4\x5d\xb4\x21\xf0\xc3\x5d\xa8\x0e\x1f\x84\x32\x8f\xc9\x63\xcc\x20\x7d\x5a\x39\xee\x37\x0f\xbe\xf7\xd3\x02\xc5\x98\x49\x86\xcb\x79\xc7\x02\x17\xff\xbf\xfe\xeb\xbf\xae\x03\x5b\x1f\xc0\x65\x17\x6c\x22\xa2\x36\x00\xf3\x71\xa6\xc7\xb7\xd6\xe6\xd7\xa7\x3d\x7d\xd7\xd4\x69\xb4\x01\x0c\xb5\xa3\xcb\xea\xbf\xa2\xaf\x14\x78\x79\xdf\x56\x23\x83\x34\xde\xb4\xc0\x10\xdb\xc4\x8b\x04\xe4\xb4\x56\x7b\xb0\xde\xd7\x38\xde\x5f\xc9\x6f\xde\x19\xcd\x6f\x03\xd6\xa7\x42\xad\x25\xbd\xb5\x44\x44\xbe\x39\x27\xb9\x50\x1d\xbb\x26\x5c\x0f\xb2\xdd\x75\x8d\xa7\xa8\x07\x07\x28\x2e\xe5\x15\xe3\xba\x34\x38\x1a\x1e\x54\x06\xab\xab\xab\x00\x20\x6e\x36\x52\x40\xae\xf8\x7f\xe8\xb8\xb7\x75\xfe\x28\x7b\xdf\xea\x3c\xb9\xa4\x0c\x54\xf7\xb6\xb4\x97\x71\x44\x54\x0c\xe4\xd6\x42\xc1\x32\x83\x14\xf9\x2c\xc5\x15\x18\xb3\x35\x46\x03\x00\xc8\x3e\x34\x44\xd7\x4d\x9b\xc6\x8a\x4e\x6c\x64\xa0\x3c\x45\x74\x63\x73\xf2\xdd\x5b\x6b\xb3\xb7\x16\x89\x39\x36\xd0\x1c\x7d\x66\x97\xcc\xd5\x47\x9e\x01\x96\x06\x3f\x78\xe5\x95\x57\xe0\xab\x5f\xfd\xaa\x1d\x70\x7c\x83\x0e\x6f\x23\xd4\xd2\xe0\xa2\x07\x0f\x0d\xb0\xf0\x50\x1c\x57\xa7\x92\x9e\xb9\x6c\x2e\x85\x4c\xf3\x2d\xa5\xe7\xea\xbc\xb1\xf2\xb8\xd2\x77\xc5\x91\xde\x5d\xf2\xb8\xd2\xf7\xf1\x0e\xc9\x22\xa5\xe3\x73\x12\x9d\xab\x5d\xdc\x2f\xb8\x8a\x75\x21\x30\xd0\x55\xe1\x9e\xc6\xfa\x15\xeb\xdf\x25\x1d\x57\xbb\x88\x91\x2f\x04\xf8\x62\xac\x75\xa7\x4d\xa7\xcb\x64\x87\xf3\xe8\xe2\x6a\x1e\xf7\xee\xdd\xab\x3d\xc9\x00\xae\x2b\xcb\x3c\xd5\x83\xb9\x01\x93\xe7\xca\xcc\x6f\x9e\x99\xbd\xb5\xb7\x92\xbf\x51\x28\x33\x37\x60\x6a\x1d\xdd\x4c\x52\xb1\x35\xe9\x5d\x1a\x19\x28\x3d\x94\x3a\xbe\xf5\x21\x5d\xc1\x35\x96\x16\xd3\x58\x63\x6a\xb0\xe3\x5e\x17\xd0\x68\xf2\x71\x4f\xef\xdf\x5b\x5d\xbc\xb9\xbb\x92\x1f\x02\xb9\x48\x14\xaa\xc9\x29\x40\xfb\x8a\x0b\xb6\xff\xa5\xcb\xa4\x27\x76\x92\xd7\xc5\x9d\xa6\x9f\x73\x1d\xac\xa9\x67\xec\x60\xd4\x25\x91\x2e\x33\xa0\x28\xbf\x6a\x59\x88\xca\x44\x41\x4b\x96\x68\x18\x3c\x7c\xd8\xbf\xbc\x75\xd2\x7b\x2a\x2b\xad\x2d\xaa\xb5\x3e\x48\x79\xd1\x5f\x8a\xce\x6b\xfa\x6e\x4b\x3e\x34\x50\x42\xe6\x74\xb3\x96\xe4\xc4\xfd\x2f\x2d\x59\x0c\x2c\x12\x33\xbe\xbd\xb6\xb8\x76\xfd\xec\xf4\xb5\x69\x4f\xef\x6b\xa8\xef\x69\xa9\x97\x87\xec\x97\x9e\xe9\x7d\x2d\xf6\x56\x5c\xcb\xef\xea\xd5\xab\x7a\x7f\x7f\xdf\xbe\xd2\xfa\x72\x59\xcb\x5c\x20\x56\x02\xbe\x92\x0b\xf1\x76\xc5\xf1\xbd\xbb\x9c\xab\x2d\x4b\x1d\xc0\x95\x77\x4a\x03\x8c\x26\xa6\x7d\xc7\x00\x24\xce\x5f\x4a\x2f\x24\x8f\xf4\xcb\x5d\x2c\x08\xf1\xc9\x15\x53\x3e\xf7\x9b\xae\x0f\x3c\xbb\xc0\xa3\xab\xbc\x42\xfa\x44\x7a\xb6\xe9\x84\xca\xd3\x15\xd7\xe5\x42\xb2\x86\xe2\xd1\xb8\xb1\xc0\x41\x4a\x33\xe4\x62\x69\x25\xde\xa7\xe9\x13\xb1\xe9\x47\xe7\x81\x7e\xab\x48\x90\x4f\x43\x09\x62\x6a\x0b\xb4\x01\x98\xef\x0d\xf3\xfd\xdb\x6b\xf3\x6b\xd3\x54\xef\x1b\x00\xcd\xf7\x00\x78\xf5\x3d\x21\xf5\x6d\x64\xe4\x80\x87\x4f\xa1\xeb\xf8\x66\x79\x22\x4b\xe3\x2c\x12\x33\xde\x1b\x2e\xde\xbc\x3d\x9a\xff\x68\x91\x98\x31\xb0\x8b\x44\x41\xb0\xba\x00\x88\xf7\x73\x71\x17\x53\xc6\x5d\xf4\xcb\x83\x00\xec\x96\x37\xa7\x53\x3c\xd1\x58\xe5\xe0\x9b\x59\x8a\x89\x38\x04\xe2\xfc\x78\xd8\x92\xb3\xa0\x85\x5c\xba\x43\x37\xe5\xa6\xe7\x4e\x7a\x5b\xdb\xc7\xbd\xf7\xad\xce\x92\x4b\xca\xc0\xa0\xb5\x76\x08\x76\x09\xc7\xee\xd6\xae\x78\x36\x7c\x01\x98\x69\x8f\xc7\x6f\xfc\x1a\x73\xa2\x5d\xde\x31\xa6\x41\xcf\x76\x97\x38\x37\x05\x02\x18\xc0\x0a\x9a\x53\x64\xdd\x5e\x47\x35\x2d\x8f\x32\x6d\x03\x05\x42\x7e\x38\xc8\x77\xae\x6f\x4e\xbe\xbb\xbb\x9a\xdf\x36\xcd\xe9\x21\x7b\xe4\xb9\x3e\x41\x04\xd5\xbe\x16\xfa\xf1\x44\xb6\x59\x0d\x5e\x79\xe5\x15\x69\xd0\x94\x1a\x93\xa4\x70\x39\xa0\x91\x00\x8e\x0b\x24\x48\x20\x28\x14\xdf\xc7\xe3\x34\xfc\x78\x1b\x0b\xf1\x93\xfc\x7d\x71\x5c\x74\x5c\x36\x17\x8d\x0f\x34\x4a\x65\x1f\xaa\x07\xd7\xe4\x24\x26\xdf\x3e\x19\x7c\x4e\x1a\xcc\x7c\x03\x36\x97\xcf\x37\xe0\x4b\xbc\x63\x01\xb0\x4b\x26\x9e\x7e\x17\x7e\x2e\xc0\xc3\xc1\x90\xc4\xdb\x55\x3e\xb4\x5e\x7c\x3a\x57\x92\xb5\x0b\x60\x91\x9c\x2b\x1d\x1f\xb8\xb4\xe9\x86\x00\x5f\x0c\xf8\x8f\x91\x65\x89\x87\xbd\xe7\x8b\x0c\xd4\x1a\x00\xa4\xcd\xa9\x39\x00\xcc\x01\x21\x5f\x24\x66\xfc\xd6\x99\xd9\xf5\xfd\x95\xfc\xcd\x3c\x31\xd3\xe5\x0f\xea\xd2\x25\xa7\x65\xe1\x9a\x13\x45\x2d\x5f\xf2\x68\x6a\x1d\x4e\xb7\x05\xd0\x05\xa9\xd6\x56\x80\xfa\xb1\x9d\xae\x46\x93\x1f\xf7\xf3\x9d\x5b\x6b\xf3\x6b\x77\x47\x8b\x5b\x06\xda\x13\x54\x9b\x37\x7b\x3f\x97\xcd\xf7\x29\x96\x8a\xf8\xbb\x0b\x17\xf0\x70\x5f\x9b\xf1\xa5\xef\xc3\x14\x2e\x3d\x1c\xdd\x40\x35\xf1\x73\x29\x5e\x97\x90\x5d\x10\x59\x2b\xdd\xc7\x1f\x7f\x5c\xfd\xfa\xaf\xff\xba\x62\x57\x39\xd7\xb3\x7c\x63\x4c\x6a\x2f\x9c\x03\x03\xd9\x85\xc3\xfe\xa5\x73\x27\xbd\x27\xb3\x42\x6d\x02\xa0\xb2\xbb\x4a\x4a\xc4\xdb\xac\x45\xb6\xef\x72\x61\x8b\x8c\xd0\x80\x13\x7b\xae\x9e\xef\x8d\x31\x04\x29\x97\xcb\x3d\xcd\x25\x3f\x48\x78\xb5\x90\x78\xe5\x69\x08\x5c\xe1\x00\x09\x5b\x11\x9b\x47\x03\xa0\x27\xbd\xe2\xf0\xe6\x99\xf9\xab\x6f\x9c\x9d\xfe\x70\xa1\xf4\xb1\x01\x63\x3f\x9e\x38\xa5\x1f\x4f\xac\xfe\xf8\x32\x11\xd8\x93\x44\xd7\xae\x5d\xa3\xe5\x68\x9d\x4f\x19\xd1\x5f\xa9\x11\x4b\xd6\x14\x88\xf0\x77\x35\xd6\x50\x7c\x17\x9d\xab\x23\x48\x74\x5d\x3b\x9b\x0b\x60\x4b\x65\x14\x9a\x7d\xc7\x28\x6b\xd7\x20\x1e\x5b\x26\x52\xba\x96\x6f\x0c\x3f\x5f\xbe\xba\xe4\x95\xa6\x69\x9f\x7d\x83\x9c\x0f\x1c\x49\x20\xc0\xd7\x6e\x69\x1c\xee\x7c\x83\xa8\xab\xec\x43\x69\xfa\xd2\xf1\x01\x09\x5e\x26\x2e\x1a\x29\x3c\x16\x94\xb9\x5c\x08\x64\xf8\x9e\x5d\xf5\x10\xaa\x93\xd3\x02\x60\x17\x7d\xed\xc7\x2c\x2e\x34\x9c\x7e\x93\xcd\x0e\xf4\xb5\xbe\xdc\x59\x9b\xbf\xfd\xd6\xc6\xec\x7b\xc7\xfd\x62\xa7\x40\xc8\x6d\xc4\x52\xf7\xd3\x3d\x23\x24\xa0\xfa\xad\x75\xb6\xb4\x67\xa0\xda\x0b\x80\x15\x1f\x1a\xbf\xd4\xeb\x64\x70\x30\xad\x98\x60\x0c\xe5\x61\x60\x96\xea\xc3\x9d\xd1\xe2\xfa\xcd\xf5\xd9\xeb\xe3\x9e\x3e\x46\xc4\xb9\x31\xc6\x5e\x2c\x6a\xc1\x98\xcd\x6b\x25\x6f\xf9\xfb\xdb\xbf\xfd\xdb\x92\xae\xe5\x65\x04\x84\x26\xb6\x2d\xc7\xf0\x8b\xa1\xe5\xbc\x7d\xe0\x56\x75\x4d\x38\xd4\xc8\x7c\x8a\xc5\xa5\xf8\x5d\x33\x41\x00\x00\xb8\x76\xed\x9a\xfe\xe2\x17\xbf\xa8\xd9\xf2\x10\x20\xa2\x3d\x02\xad\xa0\xb2\xb6\x8c\x66\xc9\xfa\xf6\x51\xf6\x13\xab\xf3\xe4\x62\x63\x6d\x69\x1a\x86\x61\xfb\x5c\xda\x36\x93\xb6\xb3\x7b\x5e\xec\xb7\x81\xe4\xcd\xbc\xcb\xcf\x75\x7b\x36\xcb\x7e\xdc\x21\x22\x60\x04\x5d\xb5\x44\x34\xdd\x5d\x5d\xbc\x79\x63\x73\xfa\xea\xc1\x4a\xb1\x0b\xa5\x95\xc5\xde\xd3\x52\x2f\x13\x41\xb3\x49\xab\x05\x5a\x6c\x7a\x2f\xbc\xf0\x82\xfe\xc6\x37\xbe\xc1\x93\x08\x81\x00\x9f\xb2\xec\x82\xc6\x5d\xca\xd7\x55\xff\x9c\x3e\x34\x9b\x0b\x29\x7d\x9f\x4c\x31\x00\xc6\xa6\xef\x03\x07\x31\xc0\x8e\x87\xb9\xde\x5d\x32\x48\xfe\x21\xde\xbe\x01\x5f\x2a\x0f\xfe\xee\x02\x11\xb4\x4c\x62\x00\x0d\x4f\x23\x04\x12\xa8\x8b\x55\x9c\x54\xa6\xae\x83\xa8\x6f\x52\x26\x39\x1f\x08\x73\xa5\xe9\x93\xc3\x07\x22\x25\x3e\x5d\x2c\x2b\x5d\x00\x5f\x8c\x8b\x19\x0f\x24\x40\x16\x02\xd7\xa7\xf6\x4f\xd3\x74\xc9\x8f\x1c\x0f\xa6\x7f\x76\x19\x7d\x6e\x8c\x99\x8f\x33\x7d\xf8\xfa\xe6\xf4\xfb\x6f\xaf\xcf\x5f\x9d\xf4\x8a\x7d\x03\xa5\xc5\x42\xda\x6b\x62\x68\x00\x42\x73\x69\x9c\x6b\x63\x8a\xe4\xc8\x04\xd9\xf0\xd9\x2b\x34\x7b\x1f\x0d\x40\x75\xcb\xaf\x99\xde\x5b\x5d\xbc\xf9\xa3\x8d\xe9\x6b\xf7\x56\x17\x3b\x95\xb5\xc5\xee\x6f\xa9\xb7\x03\x90\xfc\xd5\x7b\x7a\x10\x11\xfe\xf4\x4f\xff\xd4\x07\xa0\xef\xa7\x4d\x49\xf1\x24\xdd\x23\xf1\xf5\xb5\x09\x9f\x8e\x68\x59\x5c\x24\xa5\x25\x31\x74\xcd\xc8\x78\xa2\x3c\x21\xdf\xc0\xc2\x05\x55\x00\xe5\x17\xa0\x01\xc4\x23\x6e\xca\x18\x93\xd6\xb7\xe4\x96\xa7\x8a\xb2\x8b\x07\xfd\x8b\x9b\xe3\xf4\xa9\x5e\x81\x5b\x60\x9a\xcf\x01\x58\x4b\x5e\x8d\x7a\x09\x23\xfa\x4e\xd1\xb5\x05\x2b\x7c\xbf\x8b\xbc\x4e\x09\xd5\x31\x65\xd2\x9e\x6d\xa3\x33\xa6\xc5\x1f\x80\xf1\x40\x96\x06\xdb\x6b\x63\x00\xa0\x40\xc8\x8f\xfa\xf9\xdd\x37\x37\x66\xaf\xde\x5c\x9f\xfe\x08\xd8\x12\x11\xd9\x90\x6b\xd7\x6e\x5b\x4b\x44\xd0\xcc\x36\x00\xa0\xfc\x18\x59\xf5\x48\x7f\x25\x05\xee\x9a\x89\x4a\x0d\x50\x52\xf4\x3e\xe5\xef\x7a\x77\xf1\xf2\xd1\x49\x83\xad\x0b\xec\xf8\x66\x92\x3e\xb9\x5d\xe9\xd2\x32\x71\xc5\x97\xe2\xf0\x67\xd7\xbb\xcb\x9f\xa7\x19\xe2\x4d\xf9\x85\x06\x30\x1e\x9f\x0f\x3e\x3c\xcc\x95\x47\x29\x3d\x57\x5a\xdc\xf9\x80\x64\x68\x20\x93\xca\x86\x86\x87\x40\x86\xc4\xcf\x25\x1b\xf5\xf3\xe9\x4f\x09\xa0\xf9\xca\xc7\x05\xba\xa8\xf3\xd5\x5d\x17\x7f\xc9\x85\x00\x94\xf4\x4e\xfd\xa5\x3a\xe8\x02\xca\x63\x64\x5a\x2a\xbf\x3c\xcf\x5b\x3c\xe8\x27\x4d\x00\x5a\x27\x70\xac\xae\x9c\xdb\x65\xf6\x9d\xb5\xf9\xad\x6b\x9b\x93\xef\xde\x1d\x2d\xae\xcf\x52\x3d\x66\xb6\xf8\x8a\xdf\xf2\xd8\x40\xac\xe2\x84\xb0\x09\x5b\x5a\x0e\x62\x64\xc8\x00\x0b\x1f\x67\x0a\x34\xf9\xe1\xa0\xb8\x75\xe3\xec\xf4\xbb\x6f\x9d\x99\xfd\x70\xd6\x33\xc7\x40\xb6\x05\xd8\x1b\xd1\xed\x12\x51\x35\x86\xd4\x56\x17\xc7\xf7\xe7\xa8\x8b\x01\xe6\xf4\x39\x34\x91\x0a\xa5\x17\x9a\xa8\x84\xfa\xa6\x02\x08\xdf\x9c\xeb\x1b\x38\x7c\x8e\x2b\x36\xfe\xec\xe2\x51\xfb\xdd\xbe\x7d\xbb\x7e\xb6\x77\xb5\xd8\x5f\xf2\x95\xcf\x14\x00\xb2\xb4\xc0\xc1\x23\x07\xfd\x9f\x18\xcd\xd2\x4b\x89\xc6\xa1\x05\x01\xf6\xf2\x1d\x7a\xfd\x71\x7b\x49\xc7\x80\x31\xe5\xb6\x5d\x7b\x9a\xa7\xb5\x6c\x63\x0c\x18\x6b\xea\xab\x02\xeb\x9b\x10\x89\xd0\xf4\x08\x5b\xc9\xd5\x2e\x13\xd9\xa3\xd8\x58\xa3\x6b\x74\xf0\x28\xc9\x6b\xa9\x00\x01\x41\x83\x81\x59\xaa\x8f\x77\xd6\x16\xd7\x6f\x9c\x9d\xbd\x3a\xed\x95\x1f\x50\x24\x7b\x5a\xe8\x86\x5c\x7b\x3b\x6e\xfd\xc5\x67\x5b\x9e\x8e\xcd\x59\xb6\x3e\x7c\x56\x15\xd7\xc0\xef\xab\x57\x89\x6f\x48\x11\x87\x64\xf1\xc9\x4f\x9f\x7d\x9d\xa6\xab\x4c\xae\x34\xb8\xf3\xc9\xfb\xa0\xd2\xa0\xe5\x23\xa5\xe9\xe3\xe5\x8b\x13\xb2\x4a\xb8\xca\x34\xb6\x8e\xb8\x93\xda\x89\x14\xdf\x05\xd4\x78\x98\xc4\xab\xab\x1c\x31\xb4\x9c\x7f\x08\xac\x72\x99\xba\xe4\x55\x4a\xf3\xb4\xce\xd7\x4e\x68\xf8\xfd\x00\x25\x1e\xdf\x55\xc7\xae\xbe\xe3\xd2\x1f\xb1\xe9\x3b\xe3\x12\xfd\x6f\xeb\x2a\xaf\x26\xba\x76\xa9\x68\x0a\xe5\xc1\x8e\xb9\x41\x98\xbe\x79\x76\x7a\x63\x34\x4b\x36\xfb\xb9\x1a\x6d\x9d\xf4\x2e\xf5\x0a\x18\xd8\x4d\x06\xe5\x5e\xc8\x8a\xaf\x4d\x80\x20\x8f\xd6\xde\x48\xb6\x3d\x80\xc6\x31\x84\x96\x8e\x53\x2d\xbe\x55\xb8\x06\xa3\x4f\xfa\xc5\xdd\x37\x36\xa6\xdf\xbd\xb1\x39\x7d\xf5\x70\x50\xec\x92\xcf\xb8\x58\xfd\x4f\x27\xad\x75\x9b\x74\xdc\x9e\xdb\x55\x1f\x75\xad\x07\xd7\xc4\xd6\xa5\xdf\x63\x75\xe7\x52\x9a\x92\x52\x3b\x0d\xda\x8e\x51\x66\x54\x89\x86\x7e\x01\xa0\xbc\x70\xae\x55\xb1\xcd\x12\x51\x7d\x4b\x2e\x00\x64\x0f\x1f\x64\xdb\xe7\x4e\x7a\x4f\xf7\x73\xdc\x42\xc0\x14\x90\x6c\xb8\x65\x08\xa3\x8d\x7c\xab\x75\x47\xa1\xf1\x59\x7a\x24\xe8\xb9\x36\xe1\xb5\x96\x78\x4c\x1d\xb7\x8e\x46\x08\x10\xb0\xd9\x94\xd5\xde\xcc\xd2\x72\x34\x5d\x7b\x02\xaa\x50\x66\xbe\xbf\x92\xdf\xfa\xd1\xc6\xec\xd5\x3b\xa3\xf9\x6d\x28\xad\x2d\x53\x20\xdf\x22\x02\x62\x65\xa9\xd0\x77\xcb\xc2\x22\x6c\xce\xf2\x21\x5a\xd7\xe0\x2e\xcd\x20\x25\x5e\x5c\x99\x4b\x00\xc8\xd7\x76\x2c\x9d\x6f\x26\xa6\xc0\xdd\xc0\x39\x7f\x17\xf0\xf6\xb6\x3b\x70\x77\x42\x97\xa3\x32\xbb\x06\xb1\x18\x1e\x31\xe0\x82\xe7\xd5\xc7\x5b\x02\x74\x5d\x14\x17\xf5\xa3\xf1\x79\xbd\x4a\x75\xee\xe3\x1f\x1a\x9c\x5c\xf5\xc2\xe5\xf1\xa5\x1b\x2a\x17\xae\xe7\x42\x65\xe9\x8a\xe7\x93\x2d\xd4\x56\x39\x0f\x5f\xdb\xa5\x7e\x54\x0e\x2e\xbb\x4f\x26\x17\xaf\xd3\xb8\x50\x9b\x0a\xe5\xcb\xa5\x4b\x5c\xef\x3e\x9e\x4b\x72\xd8\xc9\x9a\xd5\x85\x64\x29\x85\x2e\x13\xe5\x50\x01\x00\x00\x18\x4f\x13\x7d\xf8\xfa\xb9\xc9\x7f\x5e\x3b\x37\xf9\xf7\xdd\xe1\xe2\x8d\x45\xb5\x59\xd7\x2a\xe7\xa5\x2d\x00\xd8\x80\x8f\x7a\xbf\x0b\x9f\xc1\x42\xfb\xbd\x05\x4e\x0c\x3d\x18\xd2\xf8\xd9\xbd\x97\xe3\xac\xd8\xbf\x71\x76\xfa\x9d\x57\xb7\xc7\xdf\xda\x1d\x2e\xde\x86\xf2\xbe\xae\xb1\x5d\xe2\x02\x62\x3d\x62\x4b\x45\xf5\x9d\x5d\x9e\xb2\xa2\x4e\xd2\x5f\x31\xba\x85\xd7\x07\x07\x1a\xa1\xfe\x6b\x5d\x8c\x2e\x68\xf9\x27\x42\x04\x53\x11\x53\x8b\x98\x6b\xdb\xb4\x2b\x3c\x04\x64\x5c\xf1\x5b\x7c\xae\x5c\xb9\x82\xe4\x23\x8a\x58\x2d\x11\x29\x63\x4c\x0f\x11\x33\x00\x58\x01\x80\x95\x0f\xbe\xb5\x76\xe5\xe1\xc3\xec\x67\xfb\xb9\xda\x56\x80\x09\xb5\xd4\xf1\xef\x00\x59\x7f\x8e\x7c\x69\xe2\x02\x60\x6e\x85\x51\x20\x8b\xe4\xae\x68\x6a\x69\x69\xb1\x60\x40\x45\x5a\x0e\x45\xd3\x0e\x30\x00\x30\xce\x8a\xbd\x37\x36\xa7\xdf\x79\xed\xa1\xf1\x77\xa6\x3d\xb3\x07\x00\x27\xc6\x98\x23\x44\x3c\x41\xc4\x71\x65\x6d\x99\x01\xc0\xa2\xfa\x2b\x00\xa0\xb0\xc8\xfb\xea\xd5\xab\xfa\xe5\x97\x5f\xb6\xa2\xf3\x3a\xa5\x56\x4f\x45\x7e\xe9\x60\xe4\xa2\xa5\xef\xb4\xce\x68\x98\xad\x37\xca\x17\x60\xb9\xae\x51\x88\x63\x65\xe0\xb2\xd1\x34\xed\x3b\x8d\x4f\xf9\x5a\x79\xb8\xe2\xa3\x16\x59\x1b\x46\xe3\x2b\x12\xc6\xf3\xaa\x60\x99\x3f\xe7\xc5\x69\x24\x99\x68\x39\xd2\x41\x97\x96\x03\xcd\x8f\x94\x57\x9b\x37\x57\xde\x79\x1e\x78\x1e\x8d\x10\x97\x03\x55\xde\x55\x78\x7e\x24\xb9\x79\xbf\x97\xca\xc2\x57\x3e\x5c\x16\x1a\xee\x4a\xc3\xc5\xc3\xf5\xce\x65\xa0\x6d\xc2\x55\x96\x86\xfd\x51\x1a\x5e\x5f\xbe\x74\xb8\x73\xa5\x29\x85\x4b\x7c\x5d\x32\x71\x7a\xd7\xbb\x54\x1f\x21\x99\x62\x1c\xed\x13\x5d\x65\x0a\xc5\x91\xda\xe4\x92\x7b\xe9\xa5\x97\xcc\x95\x2b\x57\x2a\x95\x8c\x80\x25\x4a\x50\x00\xa0\xb0\x74\x56\x4e\x05\x00\x09\x22\xaa\x59\xcf\xe8\xc3\x41\x71\x5c\x20\xe8\xe1\x3c\x19\x0e\x72\xb5\x96\x02\x26\x25\x8f\x76\xe2\x75\x46\xd9\xfd\xff\xb5\x2e\xe7\x63\x07\x36\x71\xe9\x38\x62\x48\x98\x8d\x73\x92\xe9\xbb\xd7\x37\xa7\xdf\xfc\xce\xc3\x27\xdf\xb8\xbb\xba\x78\xab\x48\xe0\x18\x4a\xfd\x6f\x75\xff\x04\x1a\xd0\xb5\x40\xc4\x02\x4a\xfd\x5f\xb7\x07\xf2\x09\x04\xae\xc7\x79\xf9\xd2\xba\x02\x12\xee\x6b\xbb\x31\x6d\x3b\xd4\x8f\xbb\xd4\x79\xcb\x49\x4b\x45\x3e\xd0\x11\x9a\x3d\x58\x17\xb2\xbe\x44\x39\x76\x55\xb1\x5d\x22\xb2\xfb\x5a\x52\x30\x90\x6d\x9d\xf4\x36\xde\x71\x94\x5d\x19\xe4\xc9\x05\x04\x7b\xe1\x1c\x2c\xb5\x2e\x6e\xec\xa8\x7f\x09\x9d\x04\x28\x1a\xe7\xf8\x18\xa2\x5d\x03\xb2\xd6\x9b\x9a\x5f\xf9\x20\xb5\x18\x2a\x5f\xb9\x0f\x66\x19\xfc\xe4\x89\x9e\xde\x5d\x9d\x5f\xff\xd1\xc6\xec\xd5\x83\x41\x71\x17\xda\x1f\x50\xac\x77\xc4\x63\xf3\xc5\xe7\xa5\x0d\xb9\xcc\xb9\xac\x0f\xf4\xd9\x65\x9a\x8b\x9d\xb1\xbb\xe8\x7c\x6d\x26\x14\x27\x24\x53\xac\x3c\x31\x69\xf9\x9e\x63\x65\x08\xb5\xf3\x98\x38\x5d\xd2\x09\xd5\xb7\x6f\x36\xc3\xeb\x25\xa6\xfe\x63\xe4\xa4\xce\xa5\x33\xba\x5a\xb4\x42\xf9\x7d\x10\xbc\xef\xc7\x3f\x24\x47\x57\xf9\x24\x6b\xd9\xfd\xc8\xd7\xa5\x4c\x38\xd8\x3f\x4d\xbd\x76\xe5\xd1\xd5\x9f\xa7\x27\x59\x68\xb8\xb3\x56\x69\xbb\x94\xa2\xa0\x1c\x03\xc7\xd0\xdc\xbe\xae\x8e\xb3\x02\x5e\xdd\x1e\xff\xc7\xb4\xa7\xc7\x4f\xed\x0c\x8f\xcf\x1f\x66\x4f\x0e\xf2\x64\xd4\x9a\xf8\x1a\x02\x36\x2a\xa5\x5d\x8f\x1f\x7c\xa2\x6a\x00\x0c\x94\x11\xca\x71\xc0\xd4\x56\x75\xa8\xb7\x34\x94\x84\x1a\x8d\xde\x5f\x29\x6e\xbe\xfa\xd0\xf8\x1b\xdf\xdb\x3e\xf9\xce\xd1\xa0\xb8\xad\x11\x0e\x8d\x31\xc7\x88\x78\x4c\x0f\x65\x40\xb3\xb7\x51\x57\x79\x6b\x59\xdb\x4f\xe9\x4e\xdb\x77\x24\x8c\x00\x10\xd7\x0e\x62\x79\xd7\xcf\x29\x2c\x27\xe8\x03\x28\x21\x05\xed\x12\xac\x73\x61\xba\x8e\x40\x03\x59\x26\x52\x06\xb2\x77\xdd\x5b\xb9\xbc\x36\x4b\x9e\x4a\x34\x0c\x2d\x50\x40\x00\xe7\x47\xb3\x38\x54\x6f\x6d\x8e\x32\x4d\xe3\xa2\xc0\xa7\x82\x25\x35\xdd\x92\xe5\xa6\x65\x82\x69\x3f\xd0\x9d\x33\x92\x25\x87\xaf\x43\x22\x80\xfd\x72\xe9\xdd\xb7\x36\xe6\xd7\x76\xd6\xe6\x6f\x01\xc2\xb4\x3a\xfa\x3c\xae\x8e\xc1\xd5\xeb\x9b\xc4\x64\xd8\xba\xd2\x1f\xa0\xfc\x4c\xc2\x5f\xfe\xe5\x5f\xc2\x64\x32\x01\x68\xd7\xa7\x75\x92\x9f\x14\xc6\x1b\x9f\x0d\xe7\xbc\xa4\x30\xa9\x6d\xc5\xc6\xe1\xb2\xf8\x64\xa0\xe9\x48\xca\xac\x8b\xdc\xbc\x5c\x4e\xc3\xdb\x95\x8e\xd4\x91\xa5\xf2\xbf\x5f\xde\x52\x1a\x3e\x65\xcf\x15\xbf\xaf\x4d\x84\xe4\xe7\x75\x1e\x8a\x4f\xd3\x73\xe9\x0f\x29\x3c\xa4\x9b\x5c\x3c\x7d\xf1\xba\x80\xeb\x2e\xb4\x2e\x17\xe2\xe7\x6a\x9b\x31\x60\x32\x16\xf0\xc5\xf2\x73\xc9\x18\x9b\x67\x9e\x56\x4c\xf9\xc4\x0e\x76\x5e\xc0\x62\x1f\xaa\x89\x9e\x05\x2d\x73\xa8\xc6\x93\x6a\xef\x60\x39\xc6\x20\xc0\xa4\xa7\xd5\x8d\xcd\xe9\x0f\xa7\xbd\x62\xfa\xf8\x60\x65\xff\x91\xfd\xfe\x93\x67\xa6\xbd\xed\x9e\xc6\x72\x72\x4c\x27\xbb\x82\xfa\x6f\xcd\x9b\x91\x58\xfe\x4d\xa3\xf3\xa9\x75\xde\xa0\xd1\xd3\x9e\x3e\xbe\x33\x9a\x5f\xff\xc1\x43\x93\x6f\xbd\xbe\x39\xb9\x36\xe9\xe9\x7b\xba\xfc\xa4\xcb\x31\x42\x0b\xb0\x4c\xab\x65\xae\x39\x00\xf0\xbb\xba\x7c\x65\x11\xe3\xdf\xb5\xef\xf8\x74\xa4\x2b\x1d\xc5\x7e\x7d\xb2\x89\xf2\x25\x20\x9b\x91\x7c\xa6\x77\x97\x79\xce\x0a\x11\x32\x2d\x5a\x1e\x3e\x5e\x74\x99\x48\x99\xf2\x50\x7b\x0f\x11\x7b\x50\xed\x6b\x41\x03\x2b\xa3\x59\xb2\xf1\xcc\xdb\xa3\x9f\xd9\x9c\xf4\x7e\x32\x31\xb8\x6a\x9b\x87\xa9\xc4\x68\x50\x2d\x6b\x68\xc2\x2f\x00\xb4\xd6\x1b\x6d\x83\xe4\x66\x41\xee\xc4\x30\xde\x6a\x83\x34\x6d\xef\x79\x62\x4e\xde\xdc\x98\x7d\xef\x87\xe7\xa6\xdf\xde\x1b\xe6\xb7\x0c\xd4\xcb\x43\x27\x55\x07\x1b\x43\x65\x6d\xa9\x3a\xe2\x02\xda\x83\x84\xd9\xdb\xdb\x83\x3f\xfd\xd3\x3f\xd5\x79\x9e\x53\x93\x1e\x6d\x64\xbc\x8e\xad\xb9\x90\xd3\xdb\x86\x48\xdb\x06\x6d\x9c\x7c\xc9\x05\x08\x0f\x69\x99\x05\xa1\x9d\xbe\xd4\xd7\x25\x3a\xc5\xf8\xb9\xe2\xbb\xe4\x11\x75\x0a\xe1\x27\x99\x31\x79\x7e\x68\x87\xf4\xc9\xe0\xca\x03\x2d\x73\xca\x8b\xd2\xf1\x3a\xa0\xcf\xdc\xfc\xce\xdf\xa5\xbe\x65\xdf\x01\xda\x7c\xa4\xfc\x21\xa3\x07\x58\xae\x63\xde\x16\xa8\xcc\x9c\x9f\xcf\x49\xa6\xe6\x2e\xa6\x69\x4e\x43\xe5\x52\x84\x9e\xfb\xf9\xe2\x81\x83\xc6\xe5\x42\xa6\x6f\xea\x62\x74\xaa\x4b\x0e\xde\xf6\x62\x5d\x8c\xee\xe6\xed\xd2\xe7\x78\xfb\xef\x2a\x47\x4c\xbb\xe0\xbc\xe9\xb3\x24\xa7\x57\x76\xbb\x5c\x64\x8c\x41\x44\xba\x63\xb1\xfe\xad\xf0\x43\x6b\x07\xa2\x01\x04\x2c\x94\x29\x4e\x32\x3d\xdd\x1b\xe6\x87\x27\x7d\xbd\x6f\x00\x16\xbd\x02\x07\xa9\xc6\x3e\x36\x53\x5c\xa7\x93\x42\xdb\x13\x65\x00\xad\x8c\x9e\xf6\xf4\xd1\xdd\xd1\xe2\xcd\xd7\xcf\x4d\xbf\xfd\x9f\xe7\x4f\xbe\xf5\xa3\x8d\xe9\xeb\xd3\x9e\xd9\x35\x08\x47\x80\xe5\x12\x11\x00\x1c\x43\x69\x19\x9a\x00\xc0\x0c\x11\x67\x95\xfe\x5f\xc0\xb2\xb5\xdd\x44\xdc\x96\xeb\x72\x52\xdf\xe1\xfe\xd4\x71\x5d\x05\x10\x6e\x77\x46\xf8\xe3\xce\xcb\x83\x2e\x15\x85\x10\xb9\xa5\x91\x66\x59\x7c\x66\xe5\x73\x5e\x64\xf6\xfc\xf3\xcf\xab\xab\x57\xaf\x52\xf4\x48\x4f\x11\xd5\x16\x97\x54\xe3\xe0\xe2\x41\xff\xe2\x99\x49\xfa\x74\x5a\xe0\x3a\x80\x35\xe1\xd9\x25\x1d\x6c\xcc\x77\x6c\x98\x32\x58\x9d\xf4\xe1\xcd\xd8\xf2\xa8\xd6\x8f\xea\x8d\xc1\x6c\xa8\xab\x7b\x3a\x01\x44\x36\x5d\x03\xd6\x84\x58\x52\xd5\x23\x04\x1f\x2e\xb1\xe1\x66\xc8\xf7\x2d\x34\x1a\x7d\xb0\x92\xdf\x7a\x6b\x63\x76\x6d\x6f\x75\x71\xdb\x20\x4c\x11\xd0\xa2\x6c\x7b\xe1\x50\x7d\x82\xc8\x6e\xcc\x25\xe5\xa8\x01\x00\xfe\xe2\x2f\xfe\xc2\x87\x78\xed\xb3\x34\x23\x8b\x99\xa5\xb9\x5c\xcc\x4c\xcc\xf5\xeb\x4a\xcf\x25\x4b\x4c\x7c\x57\x58\x28\x5f\xae\x32\xe9\x2a\x43\x6c\x5e\x7d\xb3\x14\x29\xbd\xd0\xbb\x34\xeb\x96\x66\x37\x52\xfc\x2e\x33\x6a\x89\x2f\xb7\xbe\xf8\xac\x59\xa1\xd9\x39\xa7\x0d\x59\x07\x24\x19\x5d\x56\x8c\xd8\xb4\x5d\xb2\x70\xb9\x24\x7e\x5d\xfb\x92\x8f\x77\x6c\x1e\x5c\xb2\x76\x29\x93\x98\x7a\xea\xe2\x1f\x2b\x2b\x97\xd3\xe7\xa2\xeb\x90\x58\xa1\x15\x79\xb6\xcb\x46\x73\x68\xc6\x16\x45\x68\x40\x83\xd1\x8b\x04\xf4\xfe\x4a\x9e\x4f\x7b\x7a\xbc\xb7\x92\xef\xdf\x39\xe8\xdf\x7a\xc7\x71\xef\xb1\x8d\x71\x6f\x6b\x34\x4f\x36\x7a\x05\x0e\x94\x41\xb5\xa4\xdf\x05\x47\x97\x88\x16\x4a\xcf\x27\x99\x3e\xdc\x5b\xc9\x77\xee\x8c\xe6\xb7\x76\x46\x8b\x9b\x77\x57\xe7\xb7\x8e\x07\xc5\xbd\x85\x32\x87\x00\xa5\xa5\x05\xaa\x2d\x02\x64\xc2\xda\xba\x21\x9d\x2c\x0f\xd5\xd6\xf6\xc0\x6d\xb9\xb1\xfd\x2f\xc6\x75\xe5\x11\x4a\x3f\xd4\x76\xeb\x36\x82\x8e\x48\x5d\x5d\xc8\xc4\x49\x69\x82\x0d\xfb\xf9\xe7\x9f\xb7\x8d\x87\x5e\x32\x97\x01\xc0\x00\x00\x86\x60\x60\xb8\x3a\x57\xdb\x1f\xb9\x71\xe6\x67\x9e\xd8\x19\xfe\x5e\xbf\xc0\x0b\x14\xfd\xd2\xa3\xd0\x74\x5d\x11\xa0\xbd\xe4\x43\x69\xb9\x93\xda\x61\x83\x73\x9a\x50\xdb\x18\x5d\x71\x24\x27\x4d\xd5\xed\xd1\xeb\x49\xaf\xd8\x7f\xf5\xa1\xf1\xbf\x7e\xf7\xfc\xc9\xbf\xde\x19\x2d\x6e\x18\x84\x7d\x63\xcc\x21\x22\x1e\x57\xbf\xf5\x17\xa0\x85\x65\x22\x0d\x00\x40\x36\x65\xf9\xea\x34\x46\x19\x5b\x27\x01\xd6\x90\x92\x0b\x0d\x58\x12\x3f\xdf\x00\x15\x4a\xd7\x95\x16\xf5\x97\x9e\x43\xbc\x24\x39\x7c\x03\xaa\xf4\x1c\x13\x46\x9d\x4f\xa1\x87\xca\xf2\x7e\xf2\x1a\xdb\x57\xa5\x3c\x50\x17\xd2\x23\x3e\x60\x10\xe3\x4e\xa3\xab\x1e\xb4\x7e\x3b\x2d\xef\x18\xda\xd3\xf2\x8b\x05\x5c\xff\x55\xee\x41\x97\xcb\xa9\x5d\x75\x1f\x98\x6d\xaf\xf6\x6a\x8d\xfa\x64\x6a\xf5\x37\x30\xc6\x0c\x11\x71\x08\x00\xed\x3f\x03\x83\x54\xe3\x68\x38\x57\x67\xcf\x4c\xd3\xcd\x8d\x71\xba\x7d\x6e\xdc\xdb\x3a\x3b\xe9\x6d\xad\xce\xd5\x7a\x96\xab\x41\xaf\x50\x83\x54\x43\x8a\x06\x53\x6a\x7a\x04\x00\x5d\x28\x93\x2f\x12\x33\x9d\xa5\x7a\x3a\xe9\xe9\xf1\x51\x3f\xdf\xdf\x1d\x2e\x76\xee\xad\x2e\x76\xf6\x57\xf2\xbb\x27\x99\x3e\x98\xa7\xfa\xd0\x20\x58\xfd\x6e\xef\x6b\xb1\xe0\x65\x4a\x8e\x42\x73\xe0\x62\x6f\xfb\xd5\x00\xad\xeb\x2f\x7c\x63\x6d\x2c\xc0\x0c\x81\xf3\x90\x7b\x90\x00\xa9\xd6\x3d\xae\x7b\x5c\x62\x80\x08\x75\xbe\xcc\xba\x68\x7c\xf1\xeb\xf4\x48\x03\xab\xff\x52\x8d\x83\xb3\xe3\xde\xe6\xe6\x49\xef\xc9\xac\xc0\x2d\x1b\xa1\x06\x02\xf5\xba\x10\xdd\x97\xd2\x80\x0b\xea\xe8\xfd\x2d\xf5\x85\x71\x88\xe5\x91\x66\x61\xff\x09\x7f\x92\x4c\x31\x14\xd6\x48\x50\x46\x5a\xa6\x02\x44\xd0\x68\xf4\xde\x70\x71\xf3\x31\x7e\x83\x60\x00\x00\x20\x00\x49\x44\x41\x54\xe6\x99\xd9\xb5\x83\x41\x7e\xc7\x20\xd8\x2f\x3e\xd7\x17\xcd\xb1\x63\x70\x2d\xc0\x82\x88\x70\xf5\xea\x55\x7d\xe9\xd2\x25\x75\xfd\xfa\x75\x3b\x4b\x73\x01\x10\x10\x9e\x01\xda\x75\xe1\x02\x16\xc0\xe2\x84\x14\x24\x9f\x39\xf2\x01\x4f\xa2\xa7\x69\xb8\xda\xa2\x24\xf7\x69\x3b\x99\x6b\x76\xca\x1d\x2f\x2f\x9f\xf3\xe5\xd5\xc7\xc7\x57\xd6\xbe\x77\x97\xfc\x31\x0a\x8a\xfb\x2b\xf6\x6b\xf9\xf8\xea\x96\xc7\x73\x95\x63\x4c\x1d\x85\xe2\x87\x1c\x57\xb8\xf7\x03\x94\x42\xe0\xbf\x2b\xaf\x50\xf9\x4b\x60\xb4\xab\x6c\x3e\xba\xfb\x19\x8c\xba\xc4\x3d\x6d\x19\xff\x58\x40\x4c\xa5\x27\x15\xbd\x94\x0e\x4a\x00\x50\xa7\x8b\xcd\x37\xdd\xec\x5f\xa9\x6b\x11\xe6\xb9\x32\xf9\xe1\xa0\x98\x8e\xb3\xe2\xe0\xde\xea\x62\xe7\xd6\x6c\xbe\xbe\x36\x4b\x37\x57\xe7\x6a\x34\xc8\x93\xe1\xca\x5c\x0d\x07\xb9\x1a\x66\x05\x66\x68\xca\x4f\xce\x68\x04\xad\x11\xf2\x79\xa2\xe7\x27\x59\x71\x3c\xce\xf4\xf1\xa4\x57\x1c\x9f\x64\xc5\xe1\x49\x5f\x1f\x4e\x7a\xc5\xd1\x22\x31\x63\x83\xf5\xde\x95\x31\x99\x9c\x5a\x0b\x8b\xdd\x1a\x60\xad\xee\xf6\x86\xf4\xa5\xcd\xb8\x57\xaf\x5e\xd5\x67\xce\x9c\x51\xe4\xa2\x51\xea\x42\x3a\x2e\xa4\x93\x68\x58\xcc\x24\x07\xc0\xdd\x96\x7d\x78\xc2\x25\x6b\xad\x4f\x43\x17\xd0\xb9\x84\x0a\xcd\xce\x62\x0a\x67\xc9\xd1\x5b\x72\xab\x06\xd4\x5a\x26\xb2\x37\xe6\x66\x05\x0e\xcf\x1f\xf5\x2f\xae\xcd\x92\xcb\x0a\xca\xcd\x52\x50\xe1\x0c\x8a\x37\x24\x8b\x89\x64\x5b\x41\x83\xe5\x66\xde\xd6\x26\x5b\x6e\xc1\x81\xda\xb6\xd2\x5a\xe0\xa7\x4c\x69\xba\x06\x9a\x0d\xc2\x84\xc6\x67\xe1\x99\xa5\xfa\xf0\xed\xf5\xf9\xb5\xbb\xab\x8b\xb7\xe7\x69\x79\x43\x22\x47\xd8\xd0\x5e\xcf\xac\x01\x8b\x7d\xfe\xc4\x27\x3e\xa1\x5e\x7c\xf1\x45\x0e\x3e\x40\x78\xf7\xd1\xc4\xd2\xf9\xde\x63\xc3\x5c\x83\x0b\x80\xbb\xa3\x71\x40\xc5\xe9\x43\xb2\x87\xf2\xe1\xf3\x77\x01\x3c\xfe\x2c\xe5\xa9\x4b\x7f\x08\x81\xa8\x10\x5f\x57\x58\x4c\x3c\x9e\x87\x10\x6f\x89\xa7\x8f\x87\x0b\xcc\xb9\xea\xdb\x07\xb6\x5d\x8a\x50\x02\x7d\xae\x32\x75\x29\xd6\x58\xe5\x7f\x3f\x96\x0d\x9f\xc2\xe7\xb2\x76\x99\x20\xf0\xb8\x5d\xe4\xe8\x3a\x71\x75\xf1\x93\xe8\xbb\x96\x55\xac\xd5\xcf\x99\xce\xbb\xde\xf5\x2e\x75\xf5\xea\x55\x5d\x8d\x2f\x35\x78\xa9\x96\x8a\x52\x28\x2d\x17\x2d\x3d\x0a\x50\x03\x9d\x9c\x5c\xec\x39\x47\xc4\xc1\x42\x99\x69\x9e\xe8\xf1\xa4\xa7\x0f\xf6\x86\xf9\x9d\x54\x63\x3f\xd5\x98\x65\x39\x0e\xb2\x42\x65\xbd\x02\x33\x34\xa0\x0c\x02\x68\x00\x6d\x94\xc9\x17\xca\xe4\xb3\x54\x4f\x17\x89\x99\xe6\xca\xcc\x0a\x65\xa6\x1a\x61\x0e\x08\x73\x63\x4c\xbd\x1d\xc0\xde\xd3\x05\xcd\x64\xb5\x1e\x03\x08\x68\x69\xbe\x70\x5d\x82\x17\x80\x12\xc8\x00\x00\xc0\xc1\xc1\x81\xcd\x82\xaf\x3d\xc4\xf6\x29\x9f\x3e\xeb\xca\xdb\xa5\x7b\x96\x2c\x2a\x10\x70\xae\x3d\x2e\xd2\x00\x10\x12\x20\x16\xe0\xd8\xe7\x3a\xee\x60\x30\x50\x4f\x3c\xf1\x04\x95\xcb\x9a\xf2\xe8\x73\x79\xc5\xbf\x86\x6c\x38\x4f\xd6\x1f\x3a\xee\xbd\x7b\x90\xab\x8b\x00\x40\xf6\x95\x90\x5f\x68\x03\x15\x69\x77\x50\xbd\x0b\x0b\x3d\x20\xc7\x34\x80\x46\xb2\x94\xd0\xd3\x4b\x1c\xc4\x60\x0b\xc9\x54\x8f\xfc\x8e\x67\xb2\xb7\x65\x6f\x25\x7f\xf3\xe6\xfa\xfc\xfa\x71\xbf\xd8\x37\xc4\x34\x48\x7e\xe9\xed\xb8\x4b\x16\x97\xbd\xbd\x3d\x20\xa0\x25\x04\x3a\x25\xe4\xcc\xdf\x5d\xca\x3c\xa4\x2c\xa4\x5f\x89\x9e\xc6\xe1\x32\xc4\x0e\x00\xbc\x5d\xfa\x06\x1c\x2a\x83\x94\x16\x97\x57\x92\xd9\x37\x20\x4a\x32\xc5\x74\xc6\x2e\xb3\x98\x58\x4b\x85\x2b\x2f\xae\x32\xa6\x61\x21\xe5\xe5\x9a\x91\xc5\x2a\x9e\x98\x76\x10\x03\x0a\x62\x40\x86\x2f\x4d\x49\x2e\x17\x88\xee\xea\x5c\x7d\xc1\x27\x4b\xec\x20\xcf\xcb\x3f\x34\x80\x84\xc0\x91\xef\xd9\xe7\x27\x39\x5a\x7e\x0a\xdc\x75\x06\xb0\x2c\x5b\x68\x52\xe0\xaa\x4f\xaf\x6c\xaf\xbf\xfe\xba\x06\x28\xad\x11\x16\xbc\x54\x63\x8a\x95\x93\x1e\x91\xb6\x7e\x9a\xea\xda\x0a\x30\x64\x50\x82\x97\x39\x00\x4c\x0d\x42\x96\x27\x26\xcd\x93\xea\x52\xd4\x0c\x52\x04\x48\xd1\x34\x72\x1a\x00\x00\x2c\xf9\x99\xd2\x72\xa3\xa1\x99\x84\xda\x09\xa9\x05\x26\xf5\xad\xb8\x95\xae\xa7\x93\xd6\xd6\xb7\x89\xc8\x49\xa2\x3a\xef\x37\x6e\xdc\xf0\x95\x47\xa8\x1e\x24\x1a\x60\x34\x3e\x1e\x9c\xd6\x17\x8f\xcb\xe4\x1a\x67\x9c\xbc\xed\x1e\x12\x29\xb1\x18\xc1\x43\x34\x3e\x9e\xb5\x90\xd3\xe9\x54\x7f\xfb\xdb\xdf\x86\x8f\x7e\xf4\xa3\xb4\x61\xb6\xae\xf8\xa7\xd6\x96\xcd\x71\xba\xbd\x31\x49\x2f\xa7\x85\xda\x00\xa0\x20\xc5\x6e\x88\x35\xf5\xb1\x33\x8b\x0d\x38\x30\x29\x41\x89\xa9\x36\xe3\xd2\x7d\x30\xed\x2b\xfe\x9d\x9b\x56\xaa\x70\x17\x88\x89\x72\x58\xee\x90\x01\x00\x98\xa7\xe6\xf8\xed\xf5\xd9\xb5\xbd\xe1\xe2\xf6\x22\x31\xc7\x06\x8c\xbd\xce\xb9\x65\x6d\x21\x1d\xa9\xfe\x36\x85\x5d\x22\xb2\xe5\x06\xb2\x02\x04\xc1\xdf\x37\x88\x4b\x03\x94\x6b\xe0\xeb\x02\x38\xa4\x41\xcf\x97\x26\xa7\xf1\xcd\x9e\x43\x80\xc9\xa5\xf8\x7d\x79\x89\x01\x63\xd2\xb3\x24\xb3\x2f\x1f\x2e\x79\x42\x7c\xf8\xbb\x0b\x78\x85\x06\x71\xd7\x20\x17\xca\xab\xab\xce\x24\x00\xd0\x05\x90\x74\x51\x6a\x31\xca\xd6\x55\x5e\x34\x7e\x8c\xf2\x74\xf1\x88\x0d\xb7\xfe\x96\x36\x54\x3e\xb1\xfa\x59\xe2\x21\xf5\x11\xfa\xee\x2b\x13\xa9\xdc\x42\xc0\xd4\xd5\x3e\x7d\x00\xdc\x35\x80\xba\xe4\xec\x52\x57\x4b\xbc\xee\xdd\xbb\x07\xe7\xce\x9d\xab\x37\xeb\x42\xa9\x53\x53\xa8\xc0\x0b\x00\xd0\x2b\x25\x2c\x60\xb1\x20\xa3\xfc\x3c\x40\x09\x30\xec\xbe\x98\x66\x1b\x03\x42\x6a\x00\x94\x41\x51\xbf\xd8\xbf\xfa\xe6\xde\x8a\x37\x3d\x70\x51\x03\x95\xea\xd9\xd2\xb9\xac\xed\x1a\xa0\xd9\xd3\x32\x1c\x0e\xa5\x89\x87\xab\x0d\x48\xe5\xe7\x6b\xbb\x31\x7a\xdd\xa7\x57\x7c\xcf\x56\xbe\xe8\x3e\x9f\x06\x84\xe1\x89\x87\x3a\x61\x8c\x52\xe6\xfe\x1a\xa0\x7d\xbd\xbf\x31\x46\x01\x80\x3d\x6b\x5f\x83\x16\x30\x90\x0d\xf2\x64\xf4\xd0\x71\xf6\xe8\xea\x3c\xb9\x84\xc6\xa4\x50\x83\x93\x36\x74\x11\x56\x63\x6a\xb7\xb4\x17\xa6\x72\xf5\xf1\x69\x5f\x1c\x68\x2f\x47\xb5\x89\x84\x80\xa5\x7d\x2f\x94\x1c\x2b\xf0\x02\x70\x30\xc8\x6f\xbe\x75\x66\x76\xfd\xa4\x57\xec\x9b\xe6\xa2\x39\xbb\xc7\x85\x82\x97\xba\x1e\xaa\xb2\x92\x94\x52\x48\xe9\xf9\x06\x40\xc9\x3f\x34\xa8\xf9\x94\xaa\x2b\x5c\xea\x18\x3c\x1f\x3e\x99\x68\x1c\xda\x39\x79\xa7\xf5\x29\x41\xde\xd1\x7d\xb2\x72\xe7\xe3\xcd\x01\x0f\x8f\x47\x7f\x39\x3f\x57\xa7\x0d\xd5\x93\x2b\xef\xbe\xfe\xcd\x95\x85\xe4\x62\x81\x6a\xa8\x1d\x50\x3f\xdf\x40\x46\xd3\xec\x3a\x68\x53\x3e\x3c\x5f\x21\xdd\xe5\xa3\xf1\x29\x5b\x97\x8b\x01\x07\x52\x1c\x5f\x9f\x95\xca\x4c\xa2\x0d\xa5\x25\xc5\x73\x81\x6b\x69\x40\xe1\x71\x79\xda\xbc\x5f\xb9\x68\x63\xc7\x0e\x5e\x3f\xa1\x3e\x21\xc5\x57\x00\x00\x5f\xfc\xe2\x17\xf5\x6f\xff\xf6\x6f\xab\x33\x67\xce\x50\x9a\x9c\xc9\x4c\xbf\xae\xac\xab\xf0\xcc\x18\x93\x61\xf9\x61\xc6\xac\x7a\x6f\x2e\x43\xad\x8c\x00\x76\xb2\x4d\xf8\xd8\x93\x3e\x76\x13\xad\x26\x16\xf3\x1a\x98\xd0\xef\xcd\x41\xb3\x2c\x54\xef\x67\x01\x72\xad\x3f\x3d\x45\x44\x0e\x62\xc0\x78\x3c\xe6\xf9\x8d\xd1\x7f\x12\x60\xe1\xe5\x27\xbd\x87\x74\x8b\x14\xcf\x07\x48\x42\x40\xa6\x95\x6e\x52\x3d\x84\xce\xd6\xd3\xbb\x10\x90\xbd\x6b\xf2\x4e\xb7\x7f\xf0\xc4\xf8\xb9\xec\x9a\xcf\xa3\x8f\x3e\xaa\x9e\x78\xe2\x09\x0b\x54\xb0\x72\x09\x94\xf7\xcc\xa4\x88\xd8\x07\x80\xbe\x32\x30\x3c\x37\x4e\x1f\x7e\xf7\xbd\xe1\x87\xce\x8d\x7b\xcf\x25\x80\x7d\x9b\x58\xfb\x7f\xe3\xc4\xe3\xc8\x0c\x5f\xf0\xad\xb6\xd2\x3e\x94\x36\x8d\x8c\x5c\x78\x1c\x7a\xba\x69\x39\xac\x61\xba\x48\xcc\xf8\x87\x5b\x93\x7f\xbb\x7e\x6e\xfa\xfd\x49\xa6\xef\xd1\x63\x70\x88\x38\xb1\x48\xbc\x3a\xb3\x6f\xaf\x77\xb6\xe0\xc5\x30\x6b\x0b\x5d\x29\x73\x9d\x91\xa7\xf5\x23\xad\xa2\xd9\x5f\xcb\x4f\x3a\x9f\xcf\xe9\xa5\x76\xe4\xbb\xb7\x81\xc7\xf3\xdd\x1d\x60\xe9\x91\x85\xbb\xee\x15\xe0\xef\x9c\x0f\x0f\x73\x95\x85\x94\x8e\x54\x2e\x3c\x6d\x4e\xcf\xe5\xe6\x65\xc5\x79\x6b\x47\x98\x2b\x2d\x97\x9f\x2f\x8c\xfb\x4b\xef\xbc\x4e\xba\xf0\xf5\xb9\xa5\x3d\xf2\xd0\x28\x2a\x9a\x26\xd7\x23\x3c\x9e\xab\xcd\xc5\x28\xd5\x98\xf6\x46\xf9\x49\xf5\x6d\xf5\x98\x4f\xd7\xf9\xca\xce\x27\x97\x75\xb4\x2f\x2b\xf2\x6b\xd3\xe5\xed\x1b\x84\xb8\x92\xbf\x2d\x6f\xba\xaa\xae\x59\x3c\x5f\x9f\x71\x95\x9b\x2d\x7b\xca\x8f\xcb\x2d\x8d\x13\xae\xfe\x42\xe3\xd0\x7a\xa0\x03\xb3\x4b\x07\xf1\xbe\x6d\x00\x00\x5e\x79\xe5\x15\xf3\xd2\x4b\x2f\x99\x67\x9f\x7d\x16\xb1\xfc\x14\x80\x01\x28\x75\xa9\x29\x2f\x7c\xb1\x16\x17\x43\x96\x8e\x8a\x0a\x44\x14\x50\xde\x9b\x95\x23\xe2\x0c\x4a\x00\x32\x83\x72\x62\x39\x83\xea\x8e\x95\xea\x53\x2c\x76\x89\x7f\x82\xd5\x15\xfd\x76\xf3\x6d\xa5\xd3\x4f\xa0\xbc\x97\x65\x5a\xe9\xf9\x59\xc5\xc3\x5e\x2e\x4a\xd3\xa4\x17\xcd\x69\x80\x72\x7c\x79\xcf\x7b\xde\x83\xdf\xf9\xce\x77\x78\x5b\xe5\xe5\xca\xeb\x86\xfb\x53\xe7\xd3\xd9\x9c\xce\xa5\x57\x5d\xed\x91\x03\x4e\x2e\x97\xab\xef\xf0\x74\x97\x2c\x2e\x1c\x01\x03\xb4\x1b\x1f\x30\xfa\x18\xb4\xe4\x72\x1a\x00\xe0\x9d\xef\x7c\xa7\xfa\xc5\x5f\xfc\xc5\xa5\xc1\xdd\x1e\x87\x26\xdf\x27\x4a\x57\x16\xc9\x70\xeb\x24\x3b\xbf\x31\x49\x2f\xa7\x1a\xd7\x69\x0b\xc7\x76\x3c\x30\xa4\xfd\x57\x8b\x47\xcd\x3b\xb9\x62\x19\xa0\x5a\x1c\x32\xd0\x2c\xf5\xd4\x5f\x69\x96\x81\x8f\x01\x6c\xde\x5b\xfe\x64\x33\x2e\x2c\x03\x19\x68\x85\x01\xd8\x23\xda\x07\x2b\xf9\x9b\x3f\xda\x98\xbe\x76\x92\x15\xbb\x06\x5b\x9b\xb2\xec\x91\xb7\xda\x64\x89\xec\xcc\x3e\x00\xc0\xbb\xdf\xfd\x6e\xf5\xc3\x1f\xfe\x90\xd6\x87\x84\xb8\xbb\xf8\x87\x66\xd7\xd4\xf9\xac\x0e\x3e\x7f\x29\x6d\x4e\x17\x83\xe8\x69\x1c\x2e\x8f\x6b\xa6\xe8\xca\xa3\x24\x8f\xc4\xdf\x57\x2e\xae\xf4\x79\x98\xc4\xcb\x15\x26\xc9\x12\x92\x31\x26\x2f\x3e\x17\x93\x6e\x8c\x5f\xcc\x0c\x8b\xff\xc6\xca\xe2\x9a\x05\x86\xf2\x1b\x92\xc3\xe7\xcf\x1d\xcf\x63\x4c\xbb\xf1\xc9\xc7\xe9\x5c\x72\xaa\xc8\xf8\x21\xff\x98\x72\xe5\x8e\x87\x4b\xf4\x52\x1e\x5c\xe3\x85\xcb\xb9\x64\x75\xc5\x8f\x91\xab\x76\xd6\x5a\xf1\xfc\xf3\xcf\xdb\xcd\xba\x76\xa2\x99\x57\x5b\x14\x6a\x4b\x09\xb1\xae\xd4\xb7\xed\xd2\x3f\x6e\x69\xa1\xba\x9f\x3c\x5b\xab\x4b\x7d\xff\x0a\xdb\xb3\x38\xaf\x64\xae\xc3\xe9\x7e\x16\x7a\x4f\x0b\xb5\xb4\x08\xe5\xc5\x75\xac\x54\x1e\xae\x32\x74\xf5\x0d\x29\xdc\x37\xfe\xfb\xd2\x70\xc9\x15\xea\x3b\xf5\xb3\x34\x88\x48\x0d\x0e\x84\x77\x29\x61\x29\x51\x1b\x2e\x29\x67\xb8\x71\xe3\x06\x57\xb6\xf5\x11\x68\x7a\xd6\x1e\x11\xab\x4d\xb9\xd9\xbb\x86\xb3\xe4\x12\x00\xb5\x82\x98\x66\x8a\x56\x7f\x01\xda\x5e\x43\x67\x37\xc8\xda\xa7\x66\xc3\x6c\x7d\x51\x1d\xf1\xa6\x20\x88\xfe\x1a\x24\xd3\x04\xdf\xde\x17\x1b\xc1\xb5\x21\x97\x85\x2d\x12\x33\xfd\xd1\xd9\xd9\x77\xee\x8c\x16\x6f\x17\xca\xd4\xc7\x9f\xa1\x39\xfa\x4c\xcd\x85\x76\x23\xae\xdd\xb8\x4c\xbf\xfe\xec\x1a\x1c\xa5\x7a\x04\x16\xe6\x1b\x6c\xa4\x7a\xe4\x75\xb9\x54\x87\xcc\x71\x7e\xf4\x4f\x31\x3a\x29\x2e\xe7\xc1\xfd\xa9\x73\xb5\x53\x29\x1f\xae\xb2\xa0\x69\xc4\x0c\x72\xae\xb4\x7c\x8a\xd4\x55\x56\x52\x3a\xae\xbc\x52\x3f\x57\x1d\x5b\x1a\x69\x52\xc2\xf9\x71\x7f\xa9\xec\x25\xde\x2e\xb9\x7d\x72\x85\x14\x5a\x0c\x18\xe0\x2e\x66\x30\xf3\xc9\x21\xea\x28\x70\xd7\x55\x97\x01\x3e\xa6\xdd\x48\x74\x52\xfd\xfa\xf8\x75\xf1\x77\xe9\x77\x5f\xdb\x0c\xb9\x98\x41\x2b\x54\x16\x31\xe1\xae\x72\x89\x76\xfd\x7e\x5f\x01\x2c\x7d\x49\x9a\x6f\xca\xb5\x3a\xd8\x6e\xa2\xb5\xa7\x7e\xec\x5d\x2b\xc7\x00\x70\x88\x88\x87\xd5\xef\x3e\x00\x1c\xb2\xbf\x7d\x80\xf2\x3e\x2e\x1b\x07\x11\x8f\xc9\x33\xbd\x9b\xcb\x5a\xd7\x5b\x13\xd5\x4a\x2e\x1f\x68\xe1\xe5\x23\xb9\x98\xf6\x1d\xea\xa3\xb1\x7e\xd6\x5f\xe2\xed\x03\x57\x21\x39\x34\x80\xff\x38\x74\x97\x86\xe1\x43\xf1\x92\x9f\x02\x00\x7d\xf9\xf2\x65\xf5\xda\x6b\xaf\xd9\x46\x53\x87\x59\xe4\x8a\xcd\x47\xb0\xd2\x2c\xc7\xc1\xd9\x49\x6f\xfb\xec\x38\x7d\xbc\xa7\xc9\xdd\x2d\xc6\xc6\x2d\x21\x87\x31\xd6\x6a\xd2\x4e\x5c\x02\x23\xf5\x2f\xb5\xb6\x10\x27\xd9\xb3\x5b\xe1\x66\x79\xc9\xa9\x75\x9b\x2e\x34\x97\xd3\xd9\x77\x30\x4d\x5e\x0d\x82\x3e\x1c\xe4\x37\x6f\x6c\x4c\xae\x4d\x7b\xc5\xb1\x69\x1f\x7f\x96\x8e\xc0\xd5\x47\xdf\x2c\x4f\xa1\x11\xc7\x28\x75\x57\x7d\x85\x90\xb4\x0d\xe3\x03\xba\x94\x86\x8b\x87\xaf\xad\xc4\xc8\xe4\x0a\x97\x9c\x2b\x4e\x57\x19\x42\xef\x5d\x06\xe4\x98\x38\x5d\xd2\x89\x51\xfe\xa1\xfa\x76\xcd\x8c\x5d\xf2\x84\xe4\xa4\x2e\xc6\xe2\x22\xd1\xba\xfc\x69\x7e\xba\xcc\x1a\xef\x47\x0e\x57\xfb\x0d\x59\x78\x62\xf3\x23\x39\x17\x50\x97\xf2\x1d\x7a\x8f\x91\xab\x8b\xd5\x28\xf6\x59\xe2\xef\xca\x87\x34\x79\x02\x07\x2d\xe5\xe9\xa2\x09\x3d\xab\xd9\x6c\x26\x96\x3d\xb5\x6c\x10\x7d\x5b\xeb\xbd\x6a\x42\x6d\xf7\xc5\xd4\x07\x5c\x4c\xf3\xe1\x46\x3b\xf9\xb6\xfc\xb4\x5d\x7e\x22\x96\x94\xa5\x1b\x6f\x01\x9a\xe5\x20\x60\x75\x61\x65\x11\xac\xf8\x5d\xfa\x51\x0c\x4d\x17\x7f\xd7\x84\xb7\x4b\xbb\x77\xe1\x0c\x6f\xfd\xa5\xe4\x85\x47\xee\x02\x58\x7c\xb4\xce\x4e\x65\x41\x0b\x0b\x03\x80\xa5\x4d\x4e\xe9\xca\x22\x19\x6e\x8e\xd3\x47\xd7\x66\xc9\x25\x65\x20\xb3\x96\x11\xbb\xe4\x42\xaf\xdb\x07\x68\x5b\x4e\x24\xd7\x0a\x27\xa0\x85\xaf\x00\xb9\xf8\xd8\xb4\x5a\xcb\x54\xcc\x8f\xdf\xd2\x6b\xbf\x02\x6d\x2a\xea\xb9\x32\xe3\xb7\xd7\xe7\xaf\xde\x5b\x5d\xdc\x2e\x10\xc6\x06\xcc\x1c\x4c\xeb\xab\x9f\x74\x13\x17\x05\x2d\xb4\x53\xd1\x32\x8d\xfd\xf5\x29\x26\x80\xe5\xc6\x17\x52\x92\x9c\x26\xc4\xab\x4b\x1c\x97\xc2\xa3\xf1\x63\xf2\x40\xe9\x42\x3c\x42\x79\x93\xc2\x42\x9d\x96\xcb\x10\x3b\xb8\xfa\xf2\x06\xc2\xbb\x4f\xb9\x87\xe4\x91\xf2\xc3\xd3\x95\xe2\x50\x19\x7c\x83\x7a\x17\xfd\x12\x3b\xa0\x4b\xfe\xa1\x74\x42\x32\xc5\x0e\xea\x92\xeb\xaa\x43\x63\xf8\xd8\xf7\x98\xfe\xe9\x4a\xf7\xb4\xe5\x1d\x02\x24\x3c\x6e\x8c\xce\xf0\x95\x65\xec\xc0\x76\x9a\x7a\x75\xc6\xa7\x47\xa5\xb1\xb9\x43\x8c\xea\x0a\x0d\xed\x71\xc9\xca\x66\xef\x80\xa9\xaf\xef\x00\xa8\x0f\x4e\xd4\x60\x83\x82\x97\x2a\xbc\xce\x27\x7d\x06\xa8\xef\x63\xd1\x84\x87\xc6\xf6\xc9\xd1\x50\x9e\x63\xda\x9d\xaf\xac\xa4\xba\x8e\xa9\xab\xd3\xb6\x3b\x49\x47\x79\xeb\x2f\x75\x04\x84\x14\x68\x8c\x50\x2e\x50\xd3\xe2\x4b\x2f\x9d\x03\xa8\x91\x6a\x0d\x58\xa0\xfc\xa0\x62\xb6\x36\x4b\x36\xcf\x8e\xd3\xc7\xfa\xb9\x3a\x5f\x03\x82\x0a\x21\x2c\x5d\xe3\x6f\xff\x33\x33\x0a\xdd\x11\xb6\x04\x46\x2a\xf2\x52\x86\x06\x00\xb9\xc0\x0f\xb7\xdc\x48\xb4\x2e\xd0\x83\x60\xa0\x40\xc8\x8f\xfb\xf9\xce\xcd\xf5\xd9\xb5\x49\x4f\x1f\x42\xb3\x91\x8b\x9a\x26\xed\x9a\x67\xfd\x47\x01\x8b\xa3\x21\xc7\xcc\x78\x7c\x03\xac\xa4\x38\x7c\xf5\x4c\x1b\x5e\x68\xa0\x77\x0d\x90\xbe\x38\x52\x3a\x2e\x9a\xd0\xac\x4e\x72\x2e\x9e\x31\x03\x27\xcf\x03\xf5\x93\xf8\x84\xde\x25\x99\x5c\xfd\x27\x26\x4f\x1c\xa4\x85\xfa\x32\xaf\x47\x57\x58\x48\x0f\x84\xc0\x92\xcb\xc5\x0c\x8c\x34\x8d\x58\x90\x70\x5a\x79\x42\xbc\x63\xfb\x08\x95\x83\x0f\x86\x5d\xd2\xa6\xf1\x62\xda\x91\x94\x36\xe7\xe9\x9a\xd9\xfa\xe4\x90\xde\x7d\x2e\xa6\x9e\x24\x99\x62\xcb\x88\xc7\x8b\x95\xa5\xe5\xac\x3e\x25\x17\xd5\x01\x94\x60\xa5\x05\x22\x80\xf5\x13\x02\x64\x80\xf9\xd7\x1e\x04\x9c\x50\x19\xa4\xfa\x68\x7d\xe5\x39\xa0\xeb\xb9\x0b\xe9\xfe\x18\xfd\xcf\xe5\x39\x4d\x7a\x5d\xea\x98\xfa\x47\xd7\xb7\x35\x73\x49\x83\x48\x48\x31\x74\x41\x49\xa2\xb2\xfb\xcc\x67\x3e\xb3\xa4\x28\xc9\x32\x51\xbd\xf1\xa9\x57\xe0\x60\x7d\x92\x6c\x9d\x99\xa6\x17\x7b\xba\xfc\xa0\x62\x49\xbc\x0c\x32\x9a\x77\x5c\x5a\xfe\x11\x41\x88\xa9\xd1\x4f\x63\x39\x61\x5f\xcc\x2a\x01\x30\xf9\xfe\x11\x08\x27\x88\x58\xfa\x86\xc2\x16\x92\x86\x05\x4f\x8b\x44\x4f\xef\xad\x2e\xde\xd8\x19\x2d\xde\xd6\xaa\xb6\xb2\xd0\xbb\x5b\xa8\xc5\xa5\xb6\xb6\x10\xc4\xde\x2a\x4b\xf6\x2b\xf9\x73\x80\xc0\xc3\xf8\x20\xe7\x8a\x1b\x03\x76\x62\x9f\xbb\xd0\x75\x49\xe7\x34\x72\x84\xd2\xf1\x0d\x3a\xa7\x51\xf6\xb1\x65\xc2\x9d\x6b\xa0\x39\x8d\x3c\xae\x78\xa7\x29\x7b\x17\x4d\xec\xc0\xe8\x0b\x97\xda\x1f\x6f\x97\x2e\x85\x2c\x59\x87\x62\x81\x69\xcc\x3b\x78\xc2\x1f\xd4\xb3\x8f\xb7\x4f\xbe\xae\xe5\x1d\x2b\x07\x8f\x1f\x3b\xd1\xed\x2a\x9f\x8b\x37\x4f\x87\xca\x2e\xa5\xe3\xf2\x13\x79\x73\x00\x53\xe9\xfd\xfa\x53\x01\x15\x90\x51\x00\xf5\x44\x32\x34\xa1\xaa\xd3\x64\x20\x08\x08\x8f\x56\x78\xf5\x5c\x6f\x05\x60\xd7\xf8\x9f\x06\x30\xf8\x26\x88\x5c\x66\x89\x3e\x06\xf0\x48\x79\x8e\xd1\x57\xb1\x6d\xbd\x8e\x97\xc0\xf2\xf1\x23\x7e\x9c\xd0\x77\x5c\x90\xff\xb9\x32\x23\x66\xf4\x7b\xdf\xfb\x9e\xb9\x72\xe5\x8a\x35\x80\xa8\xea\x2f\x81\x72\x97\x76\x0f\xcb\x63\xd0\x83\xd1\x2c\xd9\x78\x74\x7f\xf0\xfe\x0b\x87\xfd\x0f\xf5\xf3\xe4\x7c\x73\x52\xa8\xbd\xc7\x04\x80\x2f\xdf\x34\xdb\x74\x97\xf7\x9b\x50\xa0\x42\xac\x36\xd2\x51\x68\x6c\x36\xfd\x3a\xd6\x19\x1b\x0b\x4c\x0d\xa2\x48\x6a\xe4\x6a\x5e\x04\x00\x8d\x90\x1f\x0f\x8a\x9d\xd7\xcf\x4d\xbe\xf9\xa3\xb3\xb3\xd7\x0b\x34\x07\x00\x70\x52\x6d\xd2\x9a\x54\xc7\xe7\xa6\xd0\x00\x97\xa2\xda\x94\x6b\x00\xc0\xbc\xf0\xc2\x0b\x5a\x6b\x8d\x7b\x7b\x7b\x58\x14\x85\x2d\x3f\xe9\xb8\xa1\x75\xbc\x11\xf0\x3a\xb5\x45\xc2\x1b\x2e\xaf\x6b\x1a\x87\xa6\x27\xa5\xcf\x65\xf1\xc5\xf1\x1d\xad\xf4\x1d\x8b\x94\xfc\xbb\xca\x13\xcb\x1b\xc9\x9f\xf6\xc4\x91\xf2\x1a\x4a\xc7\x86\x41\x40\x6e\x9b\xb6\x75\xbe\xbc\xd2\x34\x81\xbd\xd3\xb6\xe0\x93\x27\x54\x8e\x4a\xf8\xe5\x61\x94\xa7\xd4\x36\xa5\xfc\x73\x47\xf5\x12\xcf\x17\xd7\x53\x52\x99\x71\x39\x62\x74\x95\x24\xbf\x2b\x2e\xef\x2b\x12\xad\x54\xfe\x9c\x86\x96\x8f\xd4\x4e\xa5\x70\x5e\x2e\x21\x7e\x94\xa7\x4f\xb7\x4b\xf2\xf1\x36\xe2\x4b\xd3\x15\xcf\x25\x13\x75\x31\x79\x90\x74\x53\x48\x6e\x5e\xa6\xde\x36\xf1\xd2\x4b\x2f\x99\x97\x5e\x7a\xc9\x8e\x51\x06\xcb\x63\xd3\xf6\x17\xc8\x33\x05\xd4\x96\xaf\x06\xa8\xbf\x27\x64\xfd\x0a\xc6\xc3\x00\x80\xdd\xfb\x52\xf3\x7d\xe1\x85\x17\xf4\x4b\x2f\xbd\x64\x5e\x7e\xf9\xe5\x5a\xa6\xd9\x6c\x16\x53\x6e\x92\xa3\x79\xf5\x95\x8f\xd5\x2d\xb6\x3d\x69\x07\x3d\x0a\xcf\x3c\x7e\xa8\xce\xb8\x93\xda\x8c\xab\x2f\x20\x00\x18\xba\x39\x97\x23\xaa\x10\x3a\x05\x70\x23\x2f\xea\x9c\x28\x91\x2e\x13\x11\xe4\x6a\xff\x52\x28\xaf\x4f\xce\x46\xb3\x74\x7d\x63\xd2\xbb\xd8\xcf\xd5\x76\x69\x0c\xb1\xc7\x9b\xcb\xfc\xd1\x92\xa2\xcb\x40\xf4\x42\xb9\xe6\x6e\xdc\xe6\x2c\x51\xbd\x06\x49\x85\x62\x47\xa1\x5b\x41\x8e\x0c\x12\x83\x0a\x38\x23\x93\xa0\x5c\x99\xe9\xfe\xca\xe2\xe6\xed\xb5\xf9\x9b\x8b\xd4\x8c\xc1\x94\xd6\x16\xba\xa3\xdc\x5e\x36\x04\xd0\xda\x90\x5b\xa3\xf1\x6f\x7e\xf3\x9b\xbc\xae\xac\x93\xde\x7d\x2e\x84\xc6\x25\xe4\xeb\x4a\x9b\xf2\xa0\x61\x1c\x31\xfb\xe4\x0b\x59\x0e\x38\x4f\x4e\x2f\xcd\x7e\x5c\x8e\xe7\x87\xfb\xf3\x34\x5d\x3c\x68\x1c\x29\xcf\xd4\x85\xac\x01\x3e\xd7\x85\x96\xe7\x4d\xaa\x3b\x57\x1c\x5f\x7b\x90\x66\x46\xb1\x2e\x34\xbb\x76\xc9\x23\xd1\xf8\x66\x9f\xa1\x36\x14\x23\x43\x97\x78\xd4\xb9\x66\x8a\x94\x6f\x97\xb6\x11\xfb\x1e\xf2\x97\xd2\x89\xa1\xe5\xf1\xba\xe8\x7e\x1e\x8f\xf7\xd7\xd8\xb8\x3e\xe7\x2b\x07\x1b\xdf\xd7\x3e\x24\x5e\x2d\x9e\x7c\x99\x86\x7c\x36\x40\xda\x67\xe8\x74\xc2\xa6\xdf\xda\x45\x9e\x14\x72\x8d\xcd\x3e\x19\x62\xe2\xc5\x96\x0f\x0f\x93\xac\x27\xfc\x5d\x4a\xdb\xd7\xaf\xa3\xfc\xa4\x6f\x15\xb9\x84\xe6\x8d\xcf\xa5\xb0\x7c\x15\x58\x87\xfd\xfc\xcf\xff\x7c\xad\xe0\x85\x06\x90\xda\x13\x45\x69\x81\xd9\x99\x49\xba\xbd\x3e\x4d\x2e\xa6\x1a\x47\xb5\xe5\xa2\xfa\x30\x62\x8d\x11\x8c\xc5\x1c\xa5\x4f\xbd\x64\x44\x40\x84\x31\x08\x68\x97\x81\x0c\x50\xf3\x5c\xf9\x6c\x2a\x68\x53\x83\x19\xcb\xab\xfc\x2d\x3f\xe2\x48\x64\xb5\x80\xa5\x36\xdd\x40\xf5\xb1\x46\x39\xf3\xc6\x18\x30\x0a\xf4\xa4\x57\x1c\xde\x5d\x5d\xbc\xb1\x3b\xcc\xef\x40\xfb\x24\x91\x3d\xcb\x6f\xef\x6d\xd1\xe4\x8f\x5f\xed\x0f\xd0\xad\xe1\xd8\x67\xc9\x49\xf4\x12\xef\x50\xda\x2e\x39\xba\x74\x0c\x97\xf3\xe5\xc9\x27\xa3\x12\x68\x7c\xfc\x68\x98\x4b\x39\xb8\xd2\x97\xd2\xe1\xa0\xcd\x25\x67\x88\xb7\x14\xcf\xe5\xef\x52\x5e\x3c\x3c\x54\x6e\x2e\xfe\xbc\x8d\x48\x83\x59\xec\xe0\x48\xe3\xc6\x94\xeb\x69\xe8\x7d\x75\x12\xeb\x0f\x42\x98\x0b\x3c\xf3\x67\x1e\x9f\x0f\x26\xdc\x8f\xba\x98\x81\xc7\xe5\x62\xfb\x0c\x77\x31\xe5\xed\xa2\x8f\xe1\x77\xbf\xcf\xa1\xfa\x00\x16\x7e\xdf\xed\x64\x75\x75\x55\x9d\x9c\x9c\x68\x80\x36\x90\xf9\xc2\x17\xbe\xa0\xec\xe6\x5b\x80\xe5\x31\x45\xd8\xa4\x5b\xff\x5a\xb0\xf2\xc9\x4f\x7e\x52\x01\x00\x7c\xe4\x23\x1f\x51\x5f\xff\xfa\xd7\x63\xe4\x96\x9c\x6b\xe2\xe5\x9a\x1c\x75\x29\x07\xce\xe7\x34\x65\xc9\xf1\x43\x17\xde\x4b\xb4\x76\x89\x06\x1c\x44\x5d\x5c\x6c\xa7\xaa\xe9\x9e\x7f\xfe\x79\x55\x5d\xef\x6f\xff\x52\x2c\xaf\x53\x1e\x00\xc0\x10\x00\x46\xa3\x69\xb2\xf5\xcc\xdb\xa3\x9f\x7b\x6a\x67\xf8\x7f\xac\x4d\xd3\xf7\x02\x98\x1a\xa8\x34\xdf\x18\xa2\x76\x17\x6b\x57\xb2\x00\x45\xfe\x1a\x73\x49\xd1\xd8\x6a\x10\xe4\x1b\x6e\xdb\xf4\x6e\xab\x8b\xe5\x47\x25\x92\xdc\x3c\xd1\xd3\x5b\x6b\xf3\xef\xfd\xc7\x23\x47\xff\xf0\xc3\xad\xe9\x2b\xc6\x98\x7d\x28\xcf\xf9\x1f\x42\x75\xa6\xbf\xfa\x16\x86\x3d\x0a\xad\x81\x9c\x2a\xd2\x5a\xc3\xef\xff\xfe\xef\x5b\x76\x92\x02\x04\xcf\xbb\x04\x60\xa4\x46\xe4\xe2\x41\x69\x5c\x75\xed\xea\x34\xb1\x6d\x43\x92\x89\xf3\xf6\x0d\x5e\x10\x78\xf7\x0d\xb6\x31\xf2\x74\x19\x08\x63\xe3\xf0\xf0\x50\x9e\x5c\x65\xea\x52\x00\x52\x7c\x9f\x9c\xa7\xc9\x0f\x4d\x0b\x1c\xe1\xa7\x75\x5d\x07\xec\x10\x8f\x98\xb2\x8f\x49\xb3\xb3\xc2\x0d\xd0\x84\x78\x77\x75\xa7\xc9\x4b\x57\xde\xff\xab\xdd\x69\xc1\x54\x0c\xfd\xfd\xb4\x0d\xd1\xfd\xd2\x2f\xfd\x92\xfa\xbb\xbf\xfb\xbb\x1f\x57\xdf\xe8\x22\x57\x4c\x5e\x4e\xcb\x3b\x94\xe6\x7d\xbb\xd8\x06\x1d\x0a\xf3\xa1\x3a\xee\x6a\xd0\x62\x3d\xc8\xf1\xb3\x1a\xc0\x00\x40\x0a\x06\xd2\xd1\x3c\x59\x5f\x9f\x26\x17\xfb\x0b\xb5\x55\x2e\xf1\x54\x0b\x3d\xad\xaf\x2c\x13\xd0\x62\xec\x53\x7b\x09\xc8\x10\x38\xd3\xfc\x36\x8b\x4a\x95\x20\x84\x7e\xf9\xb7\xcd\x8f\xfd\x1a\x9a\x62\x23\x4b\xf9\x6b\xd3\x36\x30\x4b\xf4\xe1\xbd\xd5\xc5\x9b\x77\x57\x17\xb7\xa1\x3a\x3d\x54\xfd\xd1\xcf\xa7\x6b\xf6\x07\x88\x08\x45\x51\xc0\xdd\xbb\x77\x81\xf8\x87\x66\x20\xd6\x49\x0d\x90\x77\x48\xc5\xc2\x68\x1c\x4e\x2b\xc5\xe3\x61\x9c\x9e\xfe\xf2\x3f\xea\xb4\x23\xdc\x95\x57\x4a\xaf\x1d\x34\x20\xbc\x4b\x65\x20\xfd\xd2\x70\x2a\x03\x95\x8d\xb7\x7d\xfe\x1c\x2a\x3f\x1e\xc6\xf3\x20\x01\x4e\xee\x5c\x7d\x4f\x2a\x13\x57\x1d\x4a\x8a\x3b\x54\xc7\x92\xbf\xa4\x0b\x38\xad\xab\xfe\x25\x9e\x34\xff\x5d\xca\x80\xc6\xe1\x75\xef\x92\x35\x04\xc8\x24\xb9\xa8\x73\xb5\xa9\xd8\x7e\xca\xe9\x5d\x65\xe9\x93\x8f\xcb\xe2\x6a\x3f\x3c\x3d\x17\x3f\x57\x1d\xc7\xd2\x87\xc6\x85\xae\x74\xf4\xdd\x25\x87\xaf\x6f\xbb\xe8\x7d\xed\x8e\xbe\xbb\x26\x7b\xc1\x7a\xaa\x40\x4b\xcc\x38\xe9\xe3\xef\xaa\x37\x57\x3c\xe9\x3d\xa4\xdb\x79\x58\x97\x74\x42\x61\xb1\xe5\x45\xe9\x5b\xb4\xae\x0b\xe8\x24\xa5\x29\x39\x9e\x79\x69\xa0\xe0\x9d\x50\x4a\xa7\x06\x2f\xd5\x97\x3a\x15\x22\xa6\x89\x81\xec\xec\x38\xdd\x3e\x33\x49\x2f\xa6\x1a\xd7\x9b\x25\x1b\x43\xb0\x4a\x1b\xc4\x20\x36\xdf\x78\xb6\xcb\x3e\x00\x1c\xc6\x00\x58\xcb\x8d\xfd\x3a\xb3\x5d\x6a\x6a\x6d\xe2\x35\x34\x3e\x77\x36\x15\x9b\x2e\x03\x37\x86\x8a\x55\x3e\x14\xca\xcc\x8f\x06\xc5\xdd\x3b\xa3\xf9\x1b\x07\x83\x62\x17\xaa\x7d\x2d\xe4\x24\x11\xbd\x6c\xae\xfe\x5a\xa9\x2d\xb7\x3f\xf8\x83\x3f\x08\x95\x2f\x2f\xd7\xd0\x8c\x5c\xaa\x17\x29\x4c\xaa\x43\xa9\xd3\x4b\x7c\xa4\xf4\xb9\x2c\x3e\x3e\x34\x8c\xd2\xb8\xc2\x39\x1f\xd7\x8c\x81\x0f\xe4\x31\x65\x1b\x2a\x03\xfe\xec\x53\xb4\x3e\x5e\x9c\x1f\xcf\x8b\xc4\xd3\x35\x18\xbb\xf2\x16\x92\x95\xf3\x72\xe9\x01\x57\xfb\x70\x95\x7b\x57\x9e\x2e\x1e\xc0\xc2\x7c\xf4\x21\xa5\x1b\x93\x8e\x8f\x5e\xaa\x2b\xa9\x2c\x7c\x6d\xd1\xd5\x7e\x5d\x32\x85\xfa\x97\x8b\x5e\xd2\x0d\xb1\xe5\xe3\x92\xd9\xd7\xbe\xe8\xbb\x4b\xef\x84\xf8\xbb\xfa\xb2\xaf\x0c\x5d\xfc\x43\xed\x8e\x3a\x9f\x9e\x8c\x75\xae\x3e\xef\xd2\xdb\x2e\xdd\x17\xe2\x43\xe5\x8f\x91\xdb\x55\xbe\x31\x60\xc8\x17\x2f\xa6\x5d\xc6\xd0\xb9\xfa\xb0\x02\x58\xbe\xf2\x5f\x12\x86\xfa\x73\x3a\x29\x2e\x7f\x16\x07\x1c\x72\x55\xbd\x82\x12\xb0\x28\x28\x01\x4b\x7d\x14\xba\x57\xa8\xc1\xd9\x49\xef\xd1\xd5\x79\xb2\xad\x0c\x66\xcd\xe1\x9c\x72\xbd\xd0\xee\xed\x2e\x37\xda\x36\x09\xd7\x9b\x72\x0d\xb5\x7c\x50\x1b\x4b\xb3\x45\x17\x0d\x00\x56\x66\x1a\x43\xe3\x02\x30\xab\x0e\xf9\xa9\xac\x2b\xc6\x98\xfa\xdd\x34\x10\xa8\xda\x2a\x6e\x88\x4c\x06\x0c\x18\x98\x27\x66\xbc\xb7\x92\xdf\xba\xbb\xba\x78\x1b\x10\x5a\xf7\xb5\x18\x63\xe6\x92\xb5\xc5\x96\xd3\xd5\xab\x57\xf5\x67\x3f\xfb\x59\xdf\x80\xcd\x07\x6b\x69\x80\x8f\x51\x74\x52\x63\x91\x14\x0b\x4d\x47\xe2\xed\xea\x80\x2e\xde\xbe\x78\x3e\x3e\x31\x69\xb9\xde\x5d\xf9\x72\x3d\x77\x19\x10\x79\x1a\x21\x99\x38\xad\x8b\x8e\xfb\x49\xf5\xcc\xc3\x39\x8f\x18\xe0\xe7\x8a\x2b\xc9\xe9\x92\x81\xba\xd3\x94\x5d\x8c\x9f\x14\x16\xe2\x1d\x02\x69\xb1\xe9\x86\xea\xc5\x95\xb6\x34\xc0\xfa\x80\x45\x28\xed\x50\x5b\xe0\x34\x31\xbc\x5d\x7c\x62\xea\x99\xa7\x29\xbd\xd3\x81\x48\xfa\x8d\xed\x37\xa1\xf2\xf2\xe5\xe3\x34\x65\xec\xe3\xc3\xf3\xe4\x8b\xe7\xd2\x2d\xae\x71\xd6\x55\x06\xde\x7e\xe2\xb8\x36\xa3\x99\x90\x57\xc7\xba\x1d\x32\x2a\x41\x1e\x91\x9f\x87\x47\x50\xc6\x08\x7e\x4b\xe5\xe2\x6a\x24\x5d\x1b\x0f\xf7\x0b\xa2\x2e\x52\x70\x36\xac\xfe\xab\xac\x2e\xe9\xfa\x24\x5d\x3f\x3b\x4e\x1f\xef\xe7\x6a\xab\x0c\xc3\xd6\x37\x83\x9a\x13\x40\x0d\xf0\x00\x02\x3c\xea\xa3\xc9\xd8\x58\x56\x38\x8d\x41\x00\xbe\x44\x44\x4f\x26\x01\xa1\xa3\x46\x1e\x2b\xbb\xdd\xeb\xdb\x3e\xc1\x54\xfe\x47\x42\x67\x10\xf4\xa4\x57\xec\xde\x5b\x9d\xbf\xb9\xb7\x92\xdf\x05\x72\x8a\x08\x88\xa5\xc5\x18\x93\x1b\x63\xb4\xfd\xb3\x77\x07\xfc\xda\xaf\xfd\x9a\xfa\x93\x3f\xf9\x13\x5b\x37\x1c\x20\x72\x8b\x00\x90\x77\x4a\x07\x8c\x2e\xa4\x3c\xa4\xb8\xbe\xc6\x4c\xc3\xf8\xb3\xcb\x85\xe2\x84\x64\x0a\xc9\xe3\x7a\xf7\x3d\x73\xde\x21\xa5\xe8\x03\xf8\xbe\x38\xfc\xb9\x4b\x5e\xe9\xaf\x24\x9f\x8b\xb7\x44\x13\x8a\x13\xaa\x6f\x5f\x19\x85\x06\x72\x97\x8b\x51\xfe\x31\x7c\xbb\x28\x48\x69\x10\x8a\x91\x25\x54\xe7\x21\x79\xa8\x7f\xd7\x72\x8a\xe5\xdf\x85\xd6\x55\x0e\xe0\xf1\xe7\xe1\xb1\x65\xe2\x03\xc9\x3e\x17\x02\x2c\x31\xf2\x87\x40\x5e\x8c\xeb\x0a\xb0\x5d\xb4\x5d\xc0\xb1\xe8\xf8\x65\xae\x00\x50\x6f\x1a\xe6\xe1\xd6\xdf\x18\xa3\x2f\x5d\xba\xe4\x6a\xdf\xae\x49\x8a\xcf\xc5\xf6\xd5\x2e\x7d\x86\xc6\xd5\x00\xee\xa5\xa2\xfb\x71\x7c\x06\xc1\x13\xb6\x9b\x72\x39\x1a\xac\x01\x0b\x22\xa6\x89\x86\xec\xa1\x93\xde\xf9\xf5\x69\xf2\x58\x4a\x2f\x9d\x03\x00\x6a\xdf\x68\xf6\xbd\xb8\x0f\x81\x63\x2b\x0e\x5b\xe2\x69\xb1\xad\xb8\x7a\xee\x69\x59\x0e\x20\xa7\x98\xaa\xf5\x21\x69\x6b\x6e\xae\xcc\xf4\x60\x50\xec\xec\x0d\xf3\x5b\x8b\xc4\x8c\x41\xbe\x6c\x8e\x7e\xe0\xab\x75\xe1\x1d\x73\x5e\x34\x4a\x9c\x34\x9b\x8b\x99\x1d\xf3\xfa\x73\x29\x23\xa9\xc1\x87\x94\x21\x57\x38\xb1\x1d\xd3\x25\x13\xcf\x0f\xe7\x2f\xe5\x59\x1a\xf4\x7d\xca\x5a\x8a\x13\x02\x34\x52\xb9\x4b\xf9\x91\xf2\xe0\x92\xdb\x15\x9f\xcb\x1f\x03\xb6\x80\xd1\xf0\x74\x24\xf9\x38\xff\x90\xdc\xf7\x3b\x08\xff\x57\xbb\x18\x10\xe3\x8a\x27\xe5\xdb\x07\x2a\xbb\xf0\x3e\xad\x0b\xd5\x81\x2b\x3c\x26\xcd\xff\xd5\xf5\xab\x01\x00\x3e\xf7\xb9\xcf\xa9\x3f\xfe\xe3\x3f\x8e\x96\xe3\x13\x9f\xf8\x84\x7a\xf1\xc5\x17\xbb\x80\xa3\x07\x9d\x47\xa9\x6d\xc4\xb4\x13\x00\x00\x78\xe2\x89\x27\xd4\x47\x3f\xfa\x51\xb0\x79\xfe\xdd\xdf\xfd\x5d\xf5\x47\x7f\xf4\x47\x22\x38\x91\xdc\x17\xbe\xf0\x05\x05\xd0\x18\x0e\xae\x5e\xbd\xaa\xaf\x5f\xbf\x7e\xda\x3c\xc6\xe4\xe1\x41\xf0\x5e\x72\x12\x70\xe1\x11\xb8\xa2\x0b\x29\x65\x3e\xa0\x88\xb4\xec\xce\x16\xc5\xde\x53\xa5\x31\xdb\x98\xa4\x8f\xae\x2c\x92\x2d\x34\x90\x95\x27\x89\x2c\xd8\xa9\x00\x88\x41\x30\xd8\xec\x49\xb1\x4b\x46\xf6\x18\x74\x7d\x6a\xd9\x54\x34\xb5\xb9\x84\x9e\x91\x86\x1a\x7c\x2c\x9f\x28\x22\xe7\x84\x0c\x89\xd9\x22\x6b\x16\x88\x0c\x3d\x7f\x5d\x2d\x23\x61\x75\xe7\xcc\x2c\x35\xc7\xbb\xc3\xfc\xd6\xde\x4a\x7e\xdb\x80\x99\x23\x60\x7d\xf4\x19\x9a\x3d\x2d\x4b\x1f\x52\xf4\x1c\x81\x06\xe6\x47\x07\x13\x00\x59\x39\x4a\x40\x44\x0b\xfe\xfc\xd9\x35\xbb\xf1\xbd\xc7\x3c\x73\xe7\x6a\x47\xa1\xb8\xb1\x69\x75\x95\xcf\x57\x1e\x5d\xe2\x3c\xa8\x74\x1f\x44\x79\x77\x29\xc3\x07\x21\xab\x4b\xb9\x49\xcf\x5d\x06\xf4\xfb\xe1\x1d\xf3\x1c\x93\xa6\xcf\xcf\x15\xcf\x05\xf4\x24\x7a\xeb\xba\x96\x25\x8d\x23\xa5\x23\xe9\xf8\xd3\x80\xcd\xd8\xb2\x90\x40\x71\x0c\xaf\x96\xff\x6f\xfe\xe6\x6f\xaa\x3f\xff\xf3\x3f\xd7\x00\xe5\x00\xfc\xc2\x0b\x2f\xe8\x7e\xbf\x5f\x0f\xd6\xf4\x56\x73\x76\x1b\x6d\x7d\xf4\xf8\xf1\xc7\x1f\x87\x17\x5f\x7c\x51\x92\x23\xd4\x0e\xba\xb6\x9f\x2e\x6d\x2c\xba\xcc\x7f\xf0\x83\x1f\xe8\x1f\xfc\xe0\x07\x2d\x80\x42\x8e\x64\x03\x22\x2a\x9e\x77\xc7\x04\x58\x03\x2c\x1b\x11\x3c\x9f\x16\xe8\xd2\x46\xba\xe4\xdd\x35\x39\xf2\xca\x81\xdc\x23\x20\xd0\x03\x71\x15\xea\xa3\x80\x25\x33\xc6\x64\x00\x30\x40\xc4\x21\x00\xac\xaf\x4f\x92\xed\x8f\xbf\x7e\xe6\xb3\xef\xdc\x1b\xfc\x42\x3f\x57\xdb\xfc\xd6\x5b\x00\x0a\x19\xa0\x46\x2c\xc8\x68\x2c\x1d\x7f\x97\x78\x71\xbe\x36\xdc\x65\x6d\x59\x3a\x69\x64\x38\xa8\x29\x69\x0a\x34\xf9\x9d\xd1\xfc\xd5\x6f\x5d\x38\x7e\xf1\xd5\xed\xf1\x4b\x85\x82\x5d\x63\xcc\x3e\x96\x9f\x36\xb7\x9f\x3a\xb7\xdf\x29\xe2\x9f\x33\xa7\x8d\x29\x06\x99\xc7\x76\xba\x90\xb2\x73\x29\x1b\x17\xb0\x95\xf8\x73\x9e\x9c\x6f\xcc\xe0\x12\x23\xaf\x8b\x96\x77\x0a\xfe\xec\x0b\x73\xe5\xe1\x7e\xf2\xc7\x5d\x6c\x9e\xa8\x3c\x9c\xbe\x6b\x1e\x42\x03\x8b\x4b\x39\xc5\xd6\x8d\x44\x2f\xb9\xd3\x0e\x14\x5d\x9d\x54\x1f\xb1\xf1\x7c\xed\xb3\x8b\x5c\xa1\x78\xbe\xf7\x1f\xa7\x5e\xfe\x2f\xd3\xf9\x1d\xd2\x72\xd2\x79\xac\x09\x9d\xdb\x5f\xe4\xb7\x7f\x82\x7c\xee\x83\xb6\x73\x7c\x21\xff\x52\x79\xd4\x20\x6e\xe9\x9e\xb2\xb6\xf3\x82\xa7\xab\x57\xaf\xea\xcf\x7f\xfe\xf3\xea\x0f\xff\xf0\x0f\x35\x00\x80\x52\x4a\x69\xad\x1f\x44\x5b\x39\x2d\x48\x6e\x39\xdf\xb5\x24\x0f\xb2\x51\xd7\xca\x93\xa0\x63\x55\xa1\x43\x7b\x77\x8b\xbd\xbf\x65\x04\x00\xeb\x97\xee\x0d\x2e\x7f\xe8\x8d\xf5\xff\x6b\xfb\x38\xfb\x70\xaa\x71\xc4\x85\x25\x86\x12\x11\x31\x88\xe0\x86\x38\x17\x78\x69\xf1\x6f\x3d\xc8\x20\x26\x74\xb7\x0b\x00\xc0\x34\x29\x8e\x5f\x3f\x37\xfd\xd7\x6f\x5f\x38\xfe\xa7\x9b\x67\xe6\xd7\xa0\xbc\xb7\x65\xdf\x18\x73\x5c\x81\x97\x63\xf2\x71\xc5\xd6\xad\xb9\xc2\x8d\x8a\xf7\xab\xd4\x7c\x71\x62\xd1\x31\x38\xe8\xba\x28\xe0\x10\xb8\xf0\xc5\x7f\xd0\x74\xd4\xc5\x82\x22\x29\x9e\x0f\xd0\xc4\xc8\x23\xc5\x8b\x01\x1e\x5c\x06\x1a\x4f\x72\x31\xe5\xe3\x72\x5d\x41\x91\x8f\xcf\x69\x68\x4f\xab\x97\x62\xf3\xd6\x05\x6c\x76\xe5\xdf\xc5\x3d\x88\x7c\xc6\x96\x5b\x2c\x20\x8b\x69\xe3\xa7\x75\x75\x9a\x9f\xfe\xf4\xa7\xd5\xdf\xfe\xed\xdf\x6a\x6b\x49\x10\xe8\x5c\xf1\xb9\xd3\x00\x6d\xab\x83\xf4\x7d\x20\x80\x28\x4b\x43\xc8\xaf\xab\x8b\x6e\x47\x6c\x6f\x0a\x2f\x13\x25\xfd\x86\xee\x24\x23\x69\xf0\xdf\xd6\xf7\x92\x00\xca\xb2\xf9\xd4\xa7\x3e\xa5\xbe\xfc\xe5\x2f\x9f\x06\xb4\x73\x59\x1f\x48\x3f\xf6\xed\x71\x89\x55\xd2\xd2\x4c\x50\x8a\xab\x7f\xf5\x57\x7f\xb5\x2e\x5c\x7e\x77\x4b\x55\x21\xf5\x87\x15\xcf\x8d\x7b\xe7\x87\x0b\xb5\x95\xd8\x65\xa2\xca\xd5\x9b\x67\xed\x2d\xb5\x50\x9d\x11\x62\x08\xa2\x0d\x3a\xda\xdf\x29\xe2\x68\xc3\x0b\x46\x5c\x74\xe4\x96\x5d\x9f\xd3\x60\x60\xda\xd3\xfb\xf7\x56\x17\x37\x0f\xfb\xc5\x2e\x54\x9b\x71\xa1\xb4\xaa\x58\x0b\x8b\x26\x16\x96\x7a\x43\x2e\x33\xef\x49\x75\xd1\xa5\xb3\x85\xe2\xf0\x30\x89\x4e\xac\x57\x4f\x1c\x5f\x23\xe5\x1d\x26\x94\x3f\xd7\xf3\x69\xe4\x91\xc2\x7c\xfe\x31\xb3\xf6\x25\x05\x10\xe0\xed\x93\xdb\x27\xcf\xfd\xd4\xdf\x69\x78\x9f\xb6\x7c\x5d\xf1\x63\x69\x5d\x83\x69\x0c\x30\x96\x9e\xbb\x96\x87\x0f\x64\x4b\x32\x9f\x56\x21\x87\xc0\x6b\x97\x3c\x72\xd7\xb5\xcf\xf8\x26\x2b\x34\x8f\xbc\x2c\xba\x00\x1a\x97\xdc\x75\x9c\x0b\x17\x2e\xd0\xe5\x0f\xd7\x40\xbd\xf4\x2c\x58\x19\x34\x40\xbd\x9f\x43\x7b\x74\x75\x0b\x24\xbd\xf9\xe6\x9b\xf0\xa5\x2f\x7d\x49\x5f\xba\x74\x49\x91\xfd\x1f\xbe\x89\x45\x97\xb6\x2c\xb5\xeb\x5a\x8e\x8f\x7d\xec\x63\xf0\xb5\xaf\x7d\x0d\x00\x9a\x25\xa0\x2a\x3f\x8a\x7c\x27\x4f\x91\x78\xf5\x2f\xfd\xe0\x23\xbb\x89\xbe\xe6\x6f\x1f\x08\x38\xb1\x20\x4e\x4b\xb7\xff\x02\x94\xc6\x06\x3b\x16\xfd\xdc\xcf\xfd\x9c\xfa\xca\x57\xbe\x22\xf5\xa7\x98\xfc\xba\xe2\xb8\x26\xb1\x4e\x1e\xbe\x7b\x5c\x7c\x0d\x18\x84\x67\xee\xb7\x44\xf7\x37\x7f\xf3\x37\xb4\x81\xd0\x82\x6f\x81\x96\xb4\x80\x6c\x63\x92\xbe\x33\xcb\xd5\x06\x9a\xb6\x8c\x6d\x40\xd1\x5c\xc5\xdf\xbc\x91\x5f\x7b\xaa\x87\x1e\x71\x06\xb2\xf7\x05\x0c\xd8\x6f\x1f\x89\x69\xf8\x1c\x4a\x77\xc3\xb4\x9d\x01\x00\xad\xcc\xfc\x70\x50\xec\xec\x0e\xf3\x9d\x71\x56\x1c\x93\xef\x11\xcd\x8d\x31\xf6\xd2\x39\x0d\xd5\xf2\x10\x99\x1d\x68\x80\xf2\x3a\xe8\x7f\xfa\xa7\x7f\x8a\x55\x2c\x2e\x25\xea\xea\x2c\x5c\x01\xc5\x28\x6b\xa9\x51\x71\x5e\x2e\x25\xe6\xe2\xe5\x7a\x76\xc9\x0c\x20\x37\xec\x50\x47\xe0\xf2\x70\x99\x5c\x74\xae\x34\xb9\x8b\x2d\x6b\xdf\x00\xcc\xfd\x7c\x75\xe5\xcb\x5f\x48\x19\x70\xf9\xc0\x11\x16\x52\x28\x3c\x1e\xaf\x83\x2e\x83\x78\x57\x50\x14\x03\xa8\xba\xa4\xef\x72\x2e\xc5\x2b\xf9\x75\x4d\xaf\x8b\xdc\x5d\xf2\xe5\x02\x7e\x31\xb2\xc4\xa4\x23\xd1\xc4\xe4\x5d\x6c\x1b\x9f\xfe\xf4\xa7\xd5\x23\x8f\x3c\x42\xe9\xe8\x00\xcc\xc1\x0a\x1f\xb4\x01\x9a\xc9\x30\xd8\x78\xcc\x72\xd0\x02\x5d\x16\xd4\x90\xf7\x1a\xec\x5c\xbc\x78\x11\x00\x00\x9e\x79\xe6\x19\x30\xc6\xa8\x1b\x37\x6e\xf0\x76\x1c\xd3\xbe\x5d\x34\xbc\xac\x5a\xf1\xbf\xf6\xb5\xaf\x69\x80\x96\x95\xc5\x96\x43\x6b\xbc\x24\x80\x4e\x31\x1a\x5a\x3e\x92\xe5\xc5\x82\x13\x9a\xbe\x06\x68\x4d\x9e\x15\xb4\x81\x9e\x46\xc4\x5a\xa6\xaf\x7c\xe5\x2b\x5d\xf2\x4b\x9d\x0b\xc4\x84\xda\xcf\x92\x7f\x0a\x7e\x45\xed\x52\xd2\x3e\x45\xc5\x05\x05\x00\x80\xdf\xfa\xad\xdf\x82\x3f\xfb\xb3\x3f\x6b\x85\x57\x77\xb7\xd8\x0d\x45\x35\x78\x19\xcd\xd2\xd1\x9a\xfd\x36\x51\x85\x24\x9b\x1b\xde\xec\x85\x2a\xd8\x1c\x87\x26\x9b\xb2\xaa\x40\x76\x33\x2e\xdf\xe7\xd2\x1c\x7a\x36\xd5\x47\x3a\xf9\x17\xa4\xc3\xd7\xfb\x03\xbb\x64\x6e\xd9\x21\x00\x2c\x12\x33\xde\x1b\x2e\x6e\x1e\x0e\xf2\x3b\x5a\xc1\x14\x01\xeb\x3b\x5b\xd8\x65\x73\x9a\xce\x12\x00\xca\x0f\x6f\x3d\xf9\xe4\x93\xb6\x21\xc6\x82\x11\x10\xc2\x62\xc1\x03\x77\xd2\x60\xe8\x1b\xb8\x5c\x4a\xdc\x07\x2a\x24\x3a\x9e\x66\xac\x62\x94\xd2\x93\x1c\x07\x10\xae\x34\x5c\xe5\xc2\xd3\xa0\x4a\xc5\xc7\xcf\x05\x0c\xa4\x77\xa9\x4c\x24\x1e\x2e\xb9\x63\xca\xd4\x95\xbe\x54\x76\xbe\x3a\xf6\xd5\x29\x77\x31\x03\x28\x77\x31\xf4\x2e\xbe\xbe\x3c\x9d\xc6\x3d\x08\x3e\xae\xd9\x64\x97\xb4\xba\x0e\x02\x3f\xce\xbc\x77\x2d\x93\x16\x2d\xdb\xbb\x41\x2d\x27\xad\xc1\x5a\x78\xe7\x34\x00\xd0\x1a\x0f\xb8\x4e\xad\x7f\xc9\x55\x13\xca\x02\x9c\x8a\x5e\x01\x34\x5b\x1a\xfe\xea\xaf\xfe\x2a\x7a\x30\x05\xbf\xde\x0d\x3a\xc7\x1e\x16\x6a\x49\xa9\xff\xd8\x4a\x85\x02\x00\xb5\x32\x57\xd9\xea\x3c\x19\xf4\x73\x35\x4c\x34\x64\xca\x60\x8a\x55\xb9\x18\x00\x5d\x28\x33\xcf\x95\x99\x2e\x12\x33\x9f\xf4\x8a\xe9\xa4\xa7\x73\x8d\xad\xfd\x94\x1a\xca\xf1\x08\xc8\x7b\xcb\x19\x63\xf4\xf3\xcf\x3f\xaf\x84\xa5\x35\x57\x1b\x08\x95\xc1\xa9\xe2\x49\xc3\x6e\xa8\x11\xba\x06\xae\x60\xe3\x65\x28\x52\x41\x09\x9c\xe8\xb7\x89\x86\x00\xb0\x7e\xf9\xce\xca\x53\x3f\x79\x63\xfd\x0b\x67\xc7\xbd\x67\x12\x03\xc3\x1a\x4c\x08\xeb\x76\x22\xc0\x08\x6c\x46\x11\x37\xd1\xf2\x9b\x73\x3d\xc8\xa5\xa6\x25\x1b\x82\x0d\x61\x5a\x82\xa4\xb2\xf3\xec\xaf\xe4\xd7\x5f\xbe\x78\xf4\xe5\xd7\xb6\x26\xdf\x9c\x64\x7a\x07\xc8\x77\x89\xaa\xbf\x29\x94\x1b\x73\x6b\xeb\x8b\xed\x68\x55\xe3\x90\x14\x6f\x8c\xa2\xb8\x1f\x85\xed\x4b\xf3\xb4\x7c\xbb\xb4\xab\x1f\xa7\x8b\x4d\xe7\x7e\xe5\x71\x01\xf9\xd8\x0e\x2f\xf1\x83\x0e\x32\x75\x69\x23\x12\xff\x1f\x47\x7d\xb8\x40\xb3\x94\xa6\x6f\x90\x94\xe2\xba\xd2\xeb\x02\x0a\x5c\x13\x34\x7e\xbf\x77\xa0\x00\x00\x20\x00\x49\x44\x41\x54\x57\xdb\xef\x9a\xbe\x0b\xd8\xb9\xfa\x1b\x80\x3b\x3d\x5f\x5b\x72\xa5\x1b\x13\x37\x56\x7e\x9e\x07\xee\x5c\xf5\xd4\xe2\x49\xf7\x00\x2f\x40\xd0\xbf\x3c\x02\x2c\xdd\xeb\x05\x74\x60\xa6\xcf\x60\x20\x4d\x35\xaa\xac\xc0\xb4\x97\xab\x34\xd5\x98\x29\x53\xc6\xd1\x08\x5a\xa3\xd1\x5a\x41\x9e\x2b\x93\xcf\x53\x9d\xe7\xca\x68\x83\xe5\x60\x5c\xe9\x5a\x3a\x58\x03\xd1\xbb\xb5\x6c\x16\xd0\xd8\xcb\x3f\xbf\xfa\xd5\xaf\xc2\x9b\x6f\xbe\xe9\x6b\x07\xa1\xb6\xcc\x01\xfe\x52\x39\xb0\x32\xae\x81\xca\xd2\x37\xfd\x00\x55\x62\x20\x5d\x99\x27\x83\x95\x85\x1a\xf5\x34\xae\x6f\x1d\xf7\x36\xb7\x8f\xb3\xf3\x6b\xb3\x64\x33\xcb\xd5\x99\x54\xe3\xd0\xae\x58\x68\x05\xd3\x45\x62\xc6\xb3\xa4\xd8\x3b\xe9\xeb\xc3\xdd\xe1\xe2\xee\xee\x30\xdf\x1d\xf7\x8a\xfd\x71\xa6\x8f\xa7\xa9\x9e\x16\xca\xe4\x80\x35\x78\x69\x01\x19\x3a\x2e\x55\x65\xc8\x4f\xbc\xfa\xf2\x2b\xb9\x98\xb6\x0c\x82\x3f\x00\xf8\xef\x71\x71\x15\xb2\x0b\x51\x4a\x1d\x71\xc9\x59\x13\x17\xbd\x29\x17\x9a\x46\x99\x1a\x63\xd2\x87\x8e\xb3\x0b\x83\x5c\x6d\x29\x03\x59\xcb\x6a\xb2\xf4\x2d\x21\x53\x2f\x03\xd5\x76\x92\xd6\xd2\x0f\x39\xce\x8c\xcd\x15\xff\x4b\xa0\xa3\xda\xab\x62\x88\x4d\xc6\xb3\x25\xa6\xf5\x95\xe8\xe6\xb2\x3b\x64\xf4\x08\x39\x9a\xf9\x51\xbf\xb8\xbb\xbf\x92\xdf\x9d\xa6\xfa\x18\xaa\x1b\x72\xc9\x6d\xb9\x9a\x1c\x81\xd6\x9c\x8f\xa7\x3c\x7d\x0a\x8b\xd3\xf8\xea\xc5\x15\x8f\xc7\x95\x66\x02\x21\x05\x29\xb5\x1b\x5f\xfa\xae\x46\x1c\x6a\xfc\x54\xee\x90\x32\x77\xc9\x16\x03\xc6\x63\x65\x95\xe4\x89\x19\x24\x63\x40\xa2\x12\xfc\x42\x4e\x52\x00\xb1\xe5\xdd\x45\xfe\x2e\x03\xba\x54\x1f\xad\x41\xc3\x91\x1e\x6f\x97\xbe\xb6\xac\xc1\x2f\xbb\xaf\x8d\x52\x3f\x5f\x5e\x5c\xc0\x4a\x6a\xf3\x52\xfb\x73\xf1\x77\xb5\xc1\xd0\x20\xe0\xca\xaf\xd4\xc7\x7d\x3a\xc5\xd5\x26\x7c\x20\x46\xe2\xc7\x69\xea\x74\xb8\x95\xc5\x65\x61\xa9\xc6\x04\x85\x88\x4a\x01\xa6\xbd\x1c\xb3\x2c\x57\x83\x7e\x81\xc3\xd1\x2c\x1d\x9d\x1d\xa7\xeb\x67\x26\xe9\xfa\x70\x91\xac\x67\x05\x0e\x0c\x00\x2c\x12\x33\x5d\x24\x7a\x3e\x4f\xcd\xf4\xa4\x57\x8c\x77\x87\x8b\xfd\xe3\x41\x71\x3c\x4b\xf4\xb8\x0c\x33\xf3\x85\xd2\xf5\xf5\x13\x50\xe9\x5f\x0a\x5e\xaa\x67\x05\xd0\x58\x5f\x2a\xd0\xc2\xcb\x2f\xa6\x1f\x4a\xed\xb6\xce\xbf\xbd\x5b\x05\xa0\xb1\xae\x90\xc3\x2b\xf5\x38\x69\x8c\x29\x01\x8b\xc6\x6c\xb8\x50\xc3\xf5\x69\xba\xf9\xc8\x41\xff\xc2\xc3\x07\xd9\xa5\xb5\x59\xf2\xc4\x20\x4f\x1e\xeb\x15\x78\x41\x19\x58\x47\x83\x43\x64\x2b\x2a\x1a\x61\x0a\x60\xa6\x1a\x61\x9c\x2b\xb3\x33\x4d\xf5\xb5\xfd\x95\xfc\xfb\x37\xcf\xcc\xae\xdd\x5e\x9b\xdf\x3a\x58\xc9\xf7\x27\x3d\x3d\xce\x95\x99\x03\x82\xbd\x10\x55\x61\xf9\x1d\x3d\xba\x6f\xc8\xd6\x17\xb5\xbe\x48\xfd\xc5\x57\x4e\xd2\xb3\xab\xaf\x2c\xc5\xe7\xc0\x45\x4a\x94\x27\xc2\x5d\x70\xa0\xb1\x9f\x04\x27\xfb\x37\x5a\x95\x52\x2f\x13\x19\x48\x95\xc1\xec\xec\x24\x7d\x67\xaf\x50\x1b\x08\xa0\xe8\x9e\x15\x72\x45\x4a\xeb\x36\xdc\xd6\x7d\xb7\x74\xff\x0a\xbf\xb3\x85\xee\x4a\x69\x7d\x59\x1a\xeb\xd0\x16\x78\x21\xb1\xf9\xc9\x23\x24\xd6\x15\x4e\x6b\x37\x0e\xe7\xca\x4c\xf7\x56\x16\x37\x4f\xb2\x62\xcf\xa8\xf2\xb8\x33\xdd\xdb\x02\x6d\x64\xdb\xf0\x31\x06\xe6\xf3\x39\x7c\xe0\x03\x1f\x50\xff\xf1\x1f\xff\x21\x0d\xa8\xb4\x9c\x43\x0d\xc5\x85\xf6\x39\xbd\xe4\x24\x85\xe5\x73\x2e\xf0\xe4\x6b\x88\x12\x68\x00\x90\xe5\xf2\x0d\x02\x3e\x7a\x9f\xac\xd2\x80\x29\xc9\x21\x29\xe2\x10\xd8\x09\xbd\xbb\xe4\x71\xc9\xc2\xe9\x42\x40\x34\x04\x78\xa4\x01\x0e\x00\x40\xa5\x69\x0a\x79\x9e\xeb\xd1\x68\xa4\x00\x00\x8e\x8f\x8f\x5b\x84\xa3\xd1\x08\x8e\x8f\x8f\x79\x78\x68\x80\x95\xf2\x26\xb5\x2f\xd7\xe0\xeb\x72\x31\x79\x92\xfc\x62\xdb\x4b\x8c\x1e\x94\xd2\x8b\x01\xbb\xd2\xb3\x2b\x5c\x72\xbe\x36\xe9\x2a\xef\x10\x58\xf2\xc9\xe3\x72\xae\x81\x0b\x00\xea\xed\x00\x1a\xa0\x3d\x50\xdb\xf0\x96\x35\xa5\xfc\x4b\xa1\xb4\xa0\xa4\xa9\xc1\x34\xcd\xd5\x60\x90\xab\xe1\x3b\x8e\xb2\xcd\x8b\xfb\xfd\xc7\x1e\x3a\xe9\x3d\x31\x9c\x27\x97\x7b\x05\x5e\x48\x35\x6e\x40\x69\x99\xcf\x00\x00\x0c\xc0\xdc\xa0\xc9\x01\x60\xae\xd1\x1c\x2f\x12\x73\x73\xd2\xd3\xd7\x0f\x07\xf9\xeb\x77\xd6\xe6\x6f\xde\x5c\x9b\xdf\xba\x3b\x5a\xec\x2f\x94\x9e\x17\xaa\x3c\x28\x61\xa0\xfe\xdc\x4a\x7d\xf9\x67\x25\x17\x08\x83\x34\xbd\x1b\xa5\x4b\x5d\x2d\x95\x97\xb4\x97\x85\x8e\x8f\xd5\xf6\x89\xd2\xc2\x64\x30\xcb\x72\x35\xdc\x1c\xf7\x36\xde\x7d\x77\xe5\xf2\xa3\xfb\xfd\x9f\x1c\xcd\x93\x67\xd3\x42\x3d\x96\x68\x58\x07\x28\xcb\xc0\x1e\xb4\x05\x68\x26\xd7\x68\xca\xc1\xb4\x1c\x9b\x10\xb2\x02\xf2\x41\xae\x3e\xbc\x3e\x4b\x76\x1f\x3e\xca\xae\x1f\xf7\x8b\x6f\xbd\x75\x66\xf6\x6f\xaf\x9f\x9b\xbc\xba\x33\x5a\xec\xce\x13\x3d\xd5\x25\x78\x99\x5b\xc0\x52\x81\x96\xdc\xe6\x9b\x02\xbb\xab\x57\xaf\xea\xe1\x70\xa8\xc6\xe3\x71\x4c\xdf\xb7\xae\x4b\x5f\x68\xc5\x77\xed\xd0\x08\x82\x11\x8f\xbf\xb3\x93\x56\x1b\x73\xa9\x75\x25\x03\x80\x0c\x11\x87\xc6\x98\x21\x02\xae\x6f\x4c\xd2\xf3\xbf\xf4\xbd\xcd\xff\x7b\xeb\x24\xfb\x48\xa2\x61\x54\x83\x89\xa5\x4d\xb4\xcb\x27\x85\x6a\xcb\x09\xbd\x85\xce\x10\x2b\x46\x6b\xaf\x4c\xb3\x65\xc6\x5e\x62\x67\xea\x8f\x38\xb6\x97\x8c\xec\xe9\x25\xe9\x68\xb4\x6b\x45\xc9\x80\x81\xc3\x7e\xf1\xe6\x37\x1e\x3b\xfc\x12\x5d\x26\x32\xc6\x1c\x56\x47\xa0\xc7\xc6\x98\x31\x36\xb7\xe7\x6a\x80\x1a\xe9\x4b\xcb\x44\x70\x8a\x3a\xe8\x02\x18\x7c\xf4\x52\xda\x3e\xe0\x21\xc5\x0b\xc9\xe9\x03\x64\x21\xe7\x6a\x73\x2e\x40\xe1\xf2\xf7\xf1\xee\x2a\xbf\x14\xde\x15\x5c\x49\xe9\xc4\xca\xed\x92\xa5\xb3\xa3\x0a\xdb\x9e\x30\x78\xe1\x85\x17\xb4\xbd\x04\x8c\xd3\x44\xba\x07\x22\x1b\xe3\x07\x10\xee\x2f\xb1\x69\xfb\x74\x60\x97\xb0\xd3\xfa\xc5\x4c\x28\x42\x61\x0f\xaa\x0f\x3d\x10\x7e\xdc\xca\x02\xd0\x3a\xde\x9b\x02\xb4\x27\xb1\x00\x90\xf6\x0a\xcc\xb6\x8f\xb3\xf5\xcb\x77\x57\x1e\x7f\xc7\x51\xf6\xcc\x68\x96\xfc\x6f\xfd\x5c\x5d\x4e\x35\x9e\x47\x83\x23\x04\x48\xd1\xb1\x72\x50\x4d\x36\x75\x05\x64\xa6\x1a\xcd\x7e\x9e\x98\x9b\xe3\x5e\xf1\xad\xdb\x6b\x8b\xff\xf9\xea\xf6\xf8\xbb\x6f\xad\xcf\xf6\xf3\xc4\x4c\x4d\xb5\xd7\xd0\x80\x69\x59\x62\xec\x1f\xdf\x7f\x18\x71\xb7\x96\x37\xec\x63\x1f\xfb\x98\x7a\xfa\xe9\xa7\x6b\x3a\xb6\x8f\x25\x25\x40\x2e\x03\x53\x96\xc3\x43\xc7\xbd\xcd\xc7\xef\xad\x5c\x7e\x6c\x7f\xf0\xf1\xb5\x69\xfa\xb1\xac\xc0\x27\x95\x81\x11\x02\xaa\xd6\x40\xe4\xd8\x2a\x51\x8f\x63\x8c\xc4\x00\x68\x8d\xe6\x70\x9e\xe8\x57\xf7\x87\xf9\x8b\xd7\xcf\x4e\xbf\xfa\xda\x43\xe3\xd7\x0e\x06\x05\xb5\xbe\xd4\x27\x60\x01\x5a\x7b\x84\xc0\x96\x8f\x70\x75\x47\xa8\x7c\x7c\xb4\xde\x78\xae\xa5\x22\x49\xc1\x4b\x8c\xa9\x9f\x6b\xf6\x5a\xbb\xda\x4a\x51\x55\xd0\xd2\x86\x23\x80\xf4\x91\xc3\xfe\xf6\xca\x3c\xb9\xa0\x34\x0c\x6a\x4b\x48\xab\xc4\xab\x22\xe7\xcb\x46\xd8\x9c\x1e\x6a\x5d\xe8\xcf\xd7\x78\x2a\x6f\xf2\xd3\x7c\x6f\xa8\xfe\xf6\x11\xe1\x41\x59\xb8\x4e\x2f\xd5\x5b\x81\x9b\xc4\x34\x80\x3e\xea\x17\x3b\xf7\x86\xf9\xce\x2c\xd5\x63\x80\xd6\x47\x15\xf9\x25\x73\x74\x66\x42\x3b\x45\xcc\x00\x25\x85\x49\x28\xd5\x87\x60\x43\x7e\xbc\xae\x43\x71\x24\xb9\x4e\x2b\x67\x8c\x8b\x91\x21\x56\x4e\x17\xef\xae\xf2\x4b\xe1\x3e\x1e\x5d\x65\xe8\x12\x2f\x96\x5e\x74\x14\x90\xd0\x67\xaa\xa8\x62\x40\x0b\x05\x3a\x1d\x65\x8b\x55\x7e\x0f\x24\xbf\x2c\x7e\x48\x07\x72\x9d\x07\x24\x0c\x48\x78\x8c\x52\x8e\x55\xfc\xf7\x03\x7e\xe9\x73\x17\x39\x62\xf8\x89\xb2\x6c\x6f\x6f\xc3\xce\xce\xce\x12\x03\xc9\xca\x62\x27\xb4\xca\x60\x7a\x66\x9a\x0e\xdf\x77\x6b\xf4\xf8\xe3\xf7\x06\x9f\x1e\xcd\x92\x9f\x4a\x35\x3e\x86\x06\x86\x08\x90\xd1\x93\xa2\xae\xc9\x23\x1a\x03\x06\x51\x29\x80\x81\xd1\x30\x48\x50\x6d\xa4\x1a\x1e\xeb\xe7\xea\x99\xb5\x69\xfa\xb3\x8f\x1c\xf4\xbf\x71\x67\xb4\xf8\xca\x77\xce\x1f\xff\xfb\xcd\x33\xb3\xfd\x79\x62\xa6\x64\x62\x6d\xf7\x1b\xd2\xcd\xaa\x5d\x00\xb1\x8b\x4e\x01\x80\x7e\xdf\xfb\xde\x47\xdf\x5b\xa0\x05\xa0\x3e\x65\x9b\x01\x40\x36\x5c\xa8\xc1\xe5\x3b\x2b\x97\x9e\xb8\x33\xfc\xe4\xd6\xb8\xf7\xa9\x2c\x57\x4f\xa9\x12\xb4\xa9\x7a\x7d\x80\x6c\xcb\x34\x95\xc9\xa5\x35\x9e\x61\x7b\xcc\x6a\x0d\x8b\x00\x2a\x31\xb8\x31\xc8\xd5\x73\x0f\x1d\x65\x97\xd7\x27\xe9\x47\x1e\x3e\xec\xff\xbf\xdf\xdf\x3e\xf9\xff\x5e\xdb\x9a\xdc\x5a\xa4\x66\x4c\x64\xb5\x63\x57\x6b\xe9\xc8\x53\x26\x2e\x80\x1f\xa2\xf5\xc6\x4b\x1d\x81\xae\x0e\xc9\x19\xf3\x81\xcc\x39\x4b\xe7\x1b\x73\xd9\xce\xf1\xf2\x1b\x45\x06\xb2\x87\x8e\x7a\xef\xca\x0a\xb5\x49\x76\x43\xb7\x80\x86\xc1\xe5\x05\x20\x42\x52\x57\x9c\x03\x59\xb6\x9e\x6d\x84\xd6\xad\xbc\x7c\x03\xb0\x60\x65\xb1\xcd\x81\x2e\x31\x71\x57\x24\x66\xba\xb7\xba\x78\x73\x9c\x15\x07\xe5\xda\x62\x65\x92\x64\xa7\x89\x48\x14\x5f\xc5\x2b\x4f\x98\xcb\xd1\x38\x5d\x66\x52\x3c\x9e\x54\xc7\xb1\x3c\x5d\x71\xb8\x9c\x31\x0a\xd0\xc5\xa3\x4b\x1c\xd7\x4c\xd9\xe7\x0f\xb0\xdc\xb6\x7d\xf9\xf0\xc5\x09\x95\x8f\x94\x3f\xc9\x85\x2c\x2f\x51\x83\xd4\xef\xfd\xde\xef\xa9\x5e\xaf\x57\x03\x10\x76\x75\xf8\x52\x5f\xa0\xfe\x92\x73\xec\xcf\x02\x80\x12\xd8\xf8\xc2\x03\xae\xeb\x40\x1d\x0b\x46\xbb\xd2\x76\x89\xdb\x35\x8c\xb7\xd5\x2e\x00\xfe\xb4\x60\x3d\x66\xa0\xb8\x6f\xde\x3b\x3b\x3b\x4b\xd6\x16\x02\x5a\xec\x35\x18\xaa\x02\x2c\xd9\xda\x2c\x1d\xbe\x6b\x6f\x70\xe1\xdd\x77\x86\x1f\xd9\x3a\xe9\x7d\x7a\x90\xab\xf7\x2a\x03\xeb\xa5\x5c\x64\xcf\x63\xf5\x6b\xc0\x01\x5e\xc8\x4d\xea\x64\x3f\xa2\x42\x03\xa3\x9e\xc1\xcb\xc9\x34\xb9\xb8\xb2\x50\x1f\x59\x9f\x24\x7f\x7f\x6d\x6b\xf2\xff\x7c\xf7\xfc\xf8\xb5\xa3\x7e\x7e\x0c\xe5\xe4\x52\x55\x93\xcc\x14\xaa\x81\x1a\xc8\x98\x28\xec\xed\xe0\xe5\xe0\x72\xda\xca\x43\xcb\x03\xda\x96\x16\x7b\x21\x6b\x76\xee\x38\x5d\x7f\x6a\x67\xf5\xe9\x4b\xbb\x83\x5f\x3e\x33\x49\x3f\x91\x6a\xbc\x40\x2d\x4c\xae\x31\x90\x4e\xec\x25\x1a\xe9\xd2\x55\x00\x54\x89\x31\x9b\x2b\x0b\xf5\xe1\x87\x0f\x7b\x17\x56\x16\xa3\x77\x0e\x17\xc9\x17\xbf\x75\xe1\xf8\xda\x42\x99\x31\x60\x6d\x25\x03\xbe\xef\xc5\xd3\xb7\x5d\x6d\xe9\xbe\x5c\x42\x9e\x4d\x95\x08\xdf\xd6\xa1\xc8\x33\x77\x86\x85\xd3\x5f\xa3\x94\x52\xa6\xd2\x72\xcf\x3e\xfb\x2c\x56\x68\x16\xab\x06\x9b\x54\xa8\xb2\x0f\x00\x19\x02\x0c\x12\x83\x6b\x4f\xdf\x1a\x7d\x6c\x63\x9a\xbe\x3f\x31\x38\xb0\x90\xa0\x55\x21\xb0\x8c\x18\xc1\xf1\x4e\x8f\x37\x4b\x34\xae\x78\x2d\x6b\x0e\x2e\xa7\x4f\xdf\x5c\x07\x98\x26\xbd\xe2\xde\xf7\xb7\xc7\xff\xb6\x33\x5a\xdc\x58\x24\xfa\x10\x00\x26\x00\x30\x41\xc4\x59\x75\x97\xcb\x02\x00\x16\xd8\x5c\xfc\x63\x00\xca\xf3\xf2\x07\x07\x07\xb8\xbb\xbb\x6b\xb3\xc9\xfb\xa5\x86\x36\x86\xa2\x74\x00\x4d\x7d\x58\x1a\x3b\x68\xd1\x67\x1b\xce\xeb\x5b\x09\xfc\x01\xda\xf5\xcf\xd3\x06\x68\xcb\xc9\xe9\x0c\x2c\xa7\xc1\xf3\x46\x0b\x95\xfa\xab\x00\x0f\xe3\xe0\x45\xf3\x48\xfd\xc0\xf1\x4e\x79\xd0\x8e\xc6\x31\x2f\x7d\xa7\x32\xd0\x32\xf0\xc5\xe1\x79\x05\x16\xc7\xc5\xdb\x3a\x5a\x8f\x3e\x79\xea\xb8\x4f\x3f\xfd\x34\xfe\xf4\x4f\xff\x34\xbe\xf2\xca\x2b\x35\x38\xb9\x72\xe5\x0a\x3e\xf7\xdc\x73\x98\x24\x65\xf7\x7f\xee\xb9\xe7\xf0\xca\x95\x2b\x55\xd3\x47\x9a\x0e\x22\x22\x1a\x63\x90\xbe\xd3\x5f\xfb\x4c\xe9\xec\x33\xa1\x31\x96\xff\x95\x2b\x57\xf0\xca\x95\x2b\xf8\xd2\x4b\x2f\xb9\x74\x8a\xe4\xb8\x0e\x92\xe2\x4a\x65\x15\xa3\xc3\xee\xc7\x49\x7c\x7d\xba\x52\x8a\x27\xb5\x55\x17\xef\xff\x2a\x17\x93\x6e\xa8\x7c\x6b\x3f\x3a\x69\xb5\xfa\x9f\x81\x96\x14\x00\x7a\x89\xc1\xc1\xb9\x71\xef\xdc\xfb\x6f\xad\x7e\xe0\x3d\x77\x86\xbf\x75\x6e\xdc\xfb\x4c\x3f\x57\xef\x51\x00\xab\x65\xcb\x6c\x8f\x07\x56\x50\xda\x79\x25\x5d\x4c\x2f\x27\x2d\x69\xab\x66\x5a\xa6\xb9\xd6\x2f\x92\x4b\xeb\xb3\x64\x7b\x6d\x9a\xcc\x16\x89\x19\x4f\x7b\x7a\x9e\xa3\x31\x95\x8c\x86\x2c\x67\x19\x28\x3d\x10\x00\xcc\x73\xcf\x3d\xe7\x6b\xc7\x62\xfd\x7d\xfe\xf3\x9f\x57\xcf\x3d\xf7\x1c\x92\x7e\x46\x41\x4b\x8a\x88\x3d\x00\xc8\x94\x86\xc1\x85\x83\xfe\xb9\xa7\xdf\x1e\xfd\xb7\x77\xee\x0d\x7e\xfd\xcc\x34\xfd\xa9\x9e\xc6\xf3\x08\x98\x80\x41\xf0\xce\x01\xaa\x54\xe9\xd8\x45\xcb\xaa\x29\x07\xa9\x1c\x11\x00\x20\x49\x0c\xae\x65\x85\xba\xb0\x3e\x4d\xce\x0d\x72\x75\xef\xee\xea\x62\x3f\x57\x46\x57\xdb\x31\xea\x71\x9e\x02\x96\x2b\x57\xae\x80\x50\x1e\x0f\xa2\x4d\x2f\xc5\x49\xd8\xbb\xcd\x8f\x6b\x80\xa3\x8e\x86\xd3\xf7\xfa\xd7\x90\x4f\x6a\x5f\xb9\x72\x85\x2a\x3d\x7a\xe1\x5c\x66\x8c\x19\x28\xc0\xe1\xfa\x2c\x39\xfb\xde\x5b\xa3\x9f\x1e\xcd\x93\xcb\x08\x90\x2c\x83\x8e\xf0\x85\x71\xf4\xa8\xb3\xeb\x82\x38\x4b\xd3\x7c\x32\x00\xca\x7d\x2e\x06\x5b\xcb\x4e\x00\xb4\x43\x54\xff\x97\xee\x8c\x91\x46\x2c\xa3\xf7\x56\xf3\xd7\xbf\xbf\x3d\xfe\xe6\xe1\x20\xdf\x31\x0a\x4f\x10\xf1\x04\x11\xc7\x50\x82\x97\x45\xf5\x57\x00\x40\x81\x88\x05\x96\xf7\x08\x98\xab\x57\xaf\xea\xdd\xdd\x5d\x0a\x3a\x6c\xd9\x5a\x40\x51\x67\x83\x24\xab\x99\x3f\x7f\xe6\x20\x42\x0a\x97\xe2\x4a\xf5\xcb\xc3\x38\x4f\xea\x5c\x69\xb9\xe2\x48\xf2\xf9\x78\x48\x34\x3c\xdd\x18\xde\xf4\x19\x1d\xfe\x5c\xee\x2e\xb2\x85\xe4\x09\xf1\xee\x1a\xa7\x8e\xbb\xb3\xb3\x63\x3e\xfe\xf1\x8f\xa3\x05\x0c\xd8\xdc\xbe\x69\x4d\xf5\x14\x80\x24\x50\xce\x34\x39\x48\x49\xc8\x60\xd3\x32\xef\xb3\x67\xe0\x71\x4d\x35\x52\x41\xa3\x5b\x6a\x20\x63\xff\x9e\x7d\xf6\x59\x7c\xf9\xe5\x97\x5b\xf9\xdd\xda\xda\x52\xe3\xf1\x58\xaa\x13\x80\xc0\x40\x09\xcb\x16\x99\xae\xa0\x86\xfb\xb9\xe8\x5d\xe0\xd2\xc5\x9b\xeb\x4c\x17\x0f\x2a\xb3\x4b\xd9\xbb\xd2\xe9\xf2\xdc\x85\x37\xf7\xa3\x32\xba\x26\x4e\x00\xd0\x4c\x5a\x01\x80\xef\xe3\xb0\x9f\x7b\xe9\xa5\x05\xae\xbc\xe3\x38\x7b\xc7\x4f\xdc\x5e\xfd\xd0\xbb\x76\x57\x3e\x73\x66\xda\xfb\x64\x4f\xe3\xb6\x32\xd8\xa3\x96\x13\x9b\x68\x09\x23\x4a\x45\xce\x81\x89\x25\xa8\x85\xa3\x61\x36\xd8\xd4\x50\x48\x29\x83\x2b\x59\xa1\xce\xaf\x2e\x92\x87\x57\xe7\x89\x29\x94\x39\x9a\x64\x7a\xba\x50\xba\xbe\x5d\xd6\x22\x0d\x9b\xb7\xea\xdd\xb0\xb6\x4b\xcb\x4a\xb4\x2e\xb8\x40\x0b\x54\xcb\x64\x50\x5d\x0f\xf2\xd0\x51\x6f\xe3\xfd\xb7\x56\x3f\xf9\xe8\xfe\xe0\xd7\xd7\xe6\xe9\xb3\xa9\xc6\xb3\x00\xa8\x90\xe4\xc7\xe5\xc8\x15\x67\x74\x4c\x02\xe9\x9a\x0f\xb9\x21\x22\x40\x79\xdc\x7a\x25\xcb\x93\x77\x8c\x16\xea\x6c\xaa\xf1\xce\xbd\x61\x7e\x58\x24\xa0\xab\xc1\xd0\x54\xd6\x16\xcb\x42\x43\xd5\xaf\x3d\x60\x4e\x6a\x27\xd4\xc5\xb4\x5d\x00\x68\x8e\x4b\x71\x53\x0e\x2f\xf8\x98\x75\xd0\x25\x73\x90\xfd\x30\x93\xc7\x4c\x58\x2b\xbf\xa4\xc0\x74\xf3\xa4\xb7\xd1\xcf\xd5\x76\x79\xf6\xdc\x42\x15\x0a\x0c\x4a\x08\xc9\xef\x61\x69\x15\x3e\xab\xd4\xd6\xa5\x72\x55\x3c\xbb\x3f\xb7\x6e\xec\xd8\xf0\x06\x9b\x0e\xe5\x49\xff\xb7\xda\x6f\x6b\x37\x4d\x53\x10\x0a\xf2\xbd\x95\xfc\xcd\x93\xbe\x3e\xd0\xaa\x5c\x26\x32\xc6\xd0\x8b\xe6\x5a\xc7\xf0\x4a\xd9\x96\xea\x5a\x5a\x5a\x70\x99\xcc\x5d\x4b\x10\x9c\xce\x15\x8f\xd6\x0f\x4f\xdb\xfe\xba\xcc\x7c\x3c\xbd\xae\xcb\x22\xbe\x65\x8f\x10\x0f\x29\x4d\xf0\x84\xc5\x96\x11\xe7\x17\x92\x0d\x1c\xfe\xae\x72\x3e\x4d\x9d\x71\xff\xa5\x72\xfc\xd9\x9f\xfd\x59\xf8\x87\x7f\xf8\x07\xfd\xb9\xcf\x7d\x4e\xf5\xfb\x7d\x69\x59\x47\x01\x00\x5d\x02\xa2\xc7\x2f\x01\x00\xea\x67\x62\x06\x56\x1c\xac\x4b\xf7\x29\x59\x67\x37\x97\x5b\x1a\x5c\xbe\xfc\xab\x95\x37\x6b\x6a\xe6\xdf\xa5\xf1\x7c\x11\xdd\x55\x2e\x5d\xcc\xd0\xa7\x32\xef\x07\x9e\xa5\x7e\x12\x6a\x5f\x31\xe9\xbb\xc2\x63\xfc\x43\x34\x5d\xf2\xee\xe3\xeb\xe4\x43\xaf\x8b\x87\xe5\x81\x3a\x03\x80\xac\x57\xe0\xe0\xe1\xc3\xec\xc2\x13\x77\x86\x1f\xbe\xb8\x37\xf8\xc5\xb5\x59\xf2\x6c\x62\x70\xb3\x34\x01\x2e\x5b\x51\x6a\x0d\x6c\x01\x8d\x83\xc0\x85\x08\x85\xcf\xc3\xa8\xc4\xe0\xc6\xea\x3c\x79\xf6\xc2\x41\x7f\x08\x00\x2b\x06\xe1\x9f\x7e\xb4\x31\xbd\x3e\xeb\xd5\x7d\x61\x4e\x80\xbb\x6d\xe7\xf4\x06\x5e\x5a\x0e\x92\xbe\x28\xd3\x5a\x06\x2d\x14\xc8\x65\x08\x98\x9d\x99\xa6\xeb\x3f\xb1\xb3\xfa\x91\x47\xf6\xfb\xff\xfb\xea\x2c\x79\x3a\x31\xb0\xc1\xc7\x24\x53\xfd\x93\xba\x21\x1f\x93\x5a\x23\x95\x8b\xbe\x2a\x93\x36\x40\xc4\x34\x35\x66\xeb\xcc\xa4\xf7\x53\xef\xbe\x3b\x3c\x3c\xc9\xf4\xf4\xb5\xad\xc9\xb5\x59\x6f\xe9\x63\x8b\x73\x20\x3a\xcc\x8e\xf7\xc2\xbe\xb7\xae\xfd\x0e\x40\xd6\xa1\x3a\x01\xb9\x7e\x5d\x75\xee\x33\xf5\xf0\x30\x63\x8c\x31\x6c\xdd\x3c\x81\xca\xe2\x62\x8c\x49\x00\xa0\x87\x88\x03\x00\x18\xa4\x1a\x47\x97\x76\x57\x9e\x78\xe4\xa0\xff\x53\x99\xc6\xb3\x58\x21\x14\xac\xd7\x26\xcd\x52\xe1\x73\xb3\x97\x0b\x88\x4a\x1b\x6d\x25\xc0\xd1\xa2\xb5\x99\x00\xde\x00\x1a\x4a\xd6\xfe\x6b\x90\x34\x4d\xf4\xc1\x6b\x0f\x4d\xfe\xf5\xf6\xda\xfc\xc6\x22\x31\x07\x06\xcc\x04\x11\x27\x88\x38\x03\x80\x29\x22\x2e\xa0\x7d\x14\xba\xb0\x65\x77\xfb\xf6\x6d\x3c\x3a\x3a\xb2\xa8\xdd\x8a\x68\x97\x06\x5c\xf5\x84\xec\x99\x37\x0a\x8e\x74\x69\xd6\x69\x1c\xc9\xf2\x60\x7f\x15\xb4\x8b\xda\x08\x7c\xe8\x4c\x8c\xce\xd2\xa8\x4c\xe2\xe4\x89\xa5\x45\xe5\x5e\x36\x68\x2d\xe7\x91\x5a\x93\xb8\x3c\x9a\xbc\x53\x7a\x1a\x4f\xe2\xc1\x9f\x79\xde\xe9\xb3\x72\xf8\xdb\x67\x69\xe9\x89\x97\x8f\x24\x23\xe7\x4d\xf3\x43\xeb\x0c\x3e\xfe\xf1\x8f\xe3\x8b\x2f\xbe\xa8\x9f\x7f\xfe\x79\x95\x24\x09\x05\x16\xd4\xaa\xa2\x00\x5a\x96\x95\xda\xc2\x42\xfd\x90\x6d\x14\xac\x7e\x13\x44\x4c\xaa\x7e\x5b\xff\x59\xbf\x2a\x3e\xe5\x6b\x67\xd9\x75\xba\xd0\x28\xe9\x3a\x8f\x76\xfa\xc9\xac\x32\xc6\x65\x89\x61\x75\xc6\x9d\x64\xd1\xf0\xd1\xd1\xb2\xa5\x2e\x14\x5f\x72\xa1\x38\x31\x56\x16\x9f\x7e\xbd\x9f\xb4\x63\x68\x5c\x96\xa4\xae\x32\xd5\x71\x2d\x68\x41\xb6\x01\x97\xfc\xf5\x50\x43\xff\xfc\x51\xf6\xf0\x7b\xee\xac\x7e\xf4\xb1\xbd\xc1\xaf\x54\xa0\xe5\xac\x4b\x97\xd3\xce\x52\x77\x1a\x53\x35\x9c\xa5\x49\xab\x3c\x26\x18\x46\xdb\xd0\x61\x2f\xd5\x78\x76\x90\x27\x6b\x89\xc6\xd9\x2c\x35\x07\x27\x59\x31\xd6\xaa\xbe\xfe\xde\x96\x83\x21\xef\x2e\x2b\xc3\x52\xf9\x91\x09\xbc\x6d\xe7\x49\xab\x2c\x00\xfb\xfd\x1c\x47\x4f\xbf\x3d\xfa\xe0\xe3\xf7\x56\xfe\xcf\xf5\x59\x7a\x25\x31\x70\x06\x01\xeb\xc1\x86\xe6\x15\xed\xbb\xab\xb0\x88\x73\x8f\x8d\x8d\xa4\x7c\x69\xa9\xa2\x40\x65\x70\xd8\x2b\xf0\x4c\x4f\xe3\x6c\x9c\x15\x77\xc6\x59\x31\x29\x14\x14\xd8\xdc\x7d\x43\xf3\x0b\x50\x59\x63\x84\xbe\x1b\x72\x52\x1f\x31\x2c\xcc\x00\x94\x05\xe7\xea\xb8\x52\x83\x95\x3a\xbb\x7d\x97\xac\x01\xe6\xe5\x97\x5f\x36\x95\x89\x9a\x2a\xcd\x04\x11\x53\x44\xec\x43\x69\x1a\xeb\xf7\x0a\xb5\xfe\xc4\x9d\xe1\x07\x1f\x3a\xc9\xae\x24\x06\xcb\xdb\x72\xe9\x5d\x29\xe5\xb2\x62\x65\xde\x73\x80\x09\xa1\xa5\xd6\xbb\xcf\x5b\x1f\xe0\x82\x7a\x97\xb5\x27\x2a\xd9\x8c\x08\x00\xf6\xc8\x34\x98\x0a\xe9\xda\x1b\x73\x69\xc3\x29\x1f\x8e\xfb\xc5\xdb\xff\x79\x7e\xfc\x2f\x07\x83\xfc\x96\x56\x70\x82\x88\x27\x50\xdd\x90\x0b\x25\x3a\x5d\x40\x69\x7d\xb1\x4b\x45\x06\x11\xe1\x85\x17\x5e\xd0\x04\xb4\x70\x20\x21\x99\xd5\xe8\xa0\xec\xa2\xb3\x7e\x54\xa9\x9b\xc8\x38\x34\x2e\x08\x32\x49\x69\xf3\x30\xce\x5f\x4a\xdb\x25\x47\x2c\x1d\x07\x20\x12\x58\x01\x90\xcb\x80\xcb\xea\x7a\x0e\xc9\xcd\x9f\x69\x1d\xf2\x74\x5d\xbc\x21\x10\x26\xca\xf8\xfc\xf3\xcf\xab\xed\xed\x6d\x6b\x92\x07\x02\x18\xec\x24\x01\x2b\x80\x51\xf7\xbf\x4a\x26\x0b\x52\xec\x0c\xd8\x2a\xd2\x5e\xf5\xde\x43\xc4\x14\x01\x7b\x08\x98\xa2\x31\x29\x1a\xc8\x94\x86\x9e\x32\xd0\x43\x80\x1e\x02\x24\x80\x98\x02\xb6\x4e\x43\x34\xf7\x4f\x34\xe0\xa7\xb5\xbf\x0d\x1a\xbd\x61\x9d\xdd\x17\x63\xe8\x33\xdf\x13\xf3\xec\xb3\xcf\xe2\xdb\x6f\xbf\x2d\x0d\xaa\x4e\xf3\xbc\x40\x4b\x95\xa2\x71\xd0\x74\x79\xe6\xe0\x32\x04\x4a\x38\xe8\xf5\x01\x06\x57\xda\x2e\xde\x5d\xe8\x5d\x69\x4b\x03\x48\x2c\x6f\x04\x80\x7a\xc2\x4a\x2c\x78\x08\x00\x16\xe4\xf6\xa0\xda\x22\xb0\x39\xe9\x6d\x3e\x71\x77\xf8\xdc\x3b\x77\x07\xbf\x54\x0e\xd4\xb8\x51\x33\xa9\x94\x72\xad\x67\x81\x5c\x38\x8a\x6d\xc1\xcb\x41\x9d\xdc\x5b\x52\x0b\x6e\xaf\xba\x68\xe2\xd8\x9b\x32\xc8\x7c\xb6\x1a\x23\x00\x14\x62\x9a\x68\x5c\xef\xe7\x6a\x25\x01\x9c\x4c\x7a\x7a\xf7\x24\x2b\x26\xa6\x39\xc4\x54\x54\xcb\x9f\x65\x41\x55\xcb\x25\x57\xae\x5c\xc1\x47\x1e\x79\x04\xbf\xff\xfd\xef\xf3\x72\x35\x5f\xf8\xc2\x17\x94\x1d\x07\xd9\x1d\x66\x09\x22\xf6\x8c\x31\x19\x22\x66\x89\x86\xd5\x77\xee\xad\x3c\xfa\xfe\x5b\xa3\x5f\xdb\x98\xf4\x3e\x91\x6a\x38\x8b\x06\x15\x20\xd4\xa0\xc2\xc2\x7b\x9b\x2f\x7a\xd3\x47\x2b\x3f\xa6\x29\x17\x3e\xf3\xb3\xae\x1e\xbb\xaa\x3f\x6c\x15\x68\x7b\xa6\x96\x18\x18\x65\xb9\x1a\x22\xe0\xc1\xd1\xa0\xb8\x37\xe9\x15\x13\x0d\xed\x23\xd1\xf6\xd7\x96\xcf\x95\x2b\x57\x70\x65\x65\x05\xdf\x78\xe3\x8d\x2e\xfd\x88\xb7\x47\x3a\x61\xae\xdb\x5b\x4a\x12\x74\x99\x32\xed\xbb\x15\xce\x67\xfe\x89\x35\x81\x5a\x45\x56\x9a\xde\x00\xd3\x5e\x81\x83\xd1\x2c\xd9\x4e\x0c\x0e\x2d\x51\xab\x57\x60\xd3\x68\x69\x68\xeb\xe6\x5c\x01\x56\x96\x0d\xb2\x1d\x6b\x19\xa1\xca\xdf\x28\xb2\x8d\x13\x09\x73\xba\xa4\xd4\x84\x35\x7c\x0c\x82\x3e\xee\x17\xb7\x8e\x06\xf9\x5e\xa1\xcc\xdc\x80\xc9\x11\x30\xb7\x4b\x45\x00\x4b\x5f\x82\x2e\x63\x1a\x03\x9f\xfa\xd4\xa7\xd4\x37\xbe\xf1\x0d\xd8\xdf\xdf\x77\x2d\xeb\x58\x47\xeb\x61\x69\xc9\x80\xbd\x73\x1a\x89\x1f\xa5\xa5\x74\xd4\xdf\xb5\x64\xe3\x5b\xd2\xf2\x2d\x77\x70\x79\x5d\x4b\x40\x52\x5a\x20\xf8\x53\x7a\x4e\xeb\xca\x9b\x94\x96\xe4\xef\x5b\x9e\x72\x3d\x77\xcd\xb7\xab\x1c\x5b\xe9\x6e\x6d\x6d\xa9\xbb\x77\xef\x6a\x00\xf7\xe7\xee\x0d\xf9\x06\x98\xe5\x65\xfd\xa0\x99\xf9\xb6\x97\x6c\xb5\x49\x93\xdc\xa8\x64\x61\xb2\x24\x87\x4c\x15\x90\xa1\x36\x19\x6a\xc8\xd0\x98\x54\x69\x48\xd1\x40\x0a\x1a\x14\x1a\x93\x02\x00\x18\xc4\xdc\x28\xd0\x46\x41\x6e\x10\x72\x28\xdf\xe7\x5a\xc1\xdc\x28\xcc\x8b\x14\xa6\x79\xa6\xe6\x45\x0f\x72\x68\x2e\xb0\xe2\x7f\x36\x6f\x54\x09\xd2\x63\x96\x00\xd0\xbe\x03\xe4\xe5\x97\x5f\x06\x12\x4f\x7a\x0e\xb5\xed\x2e\xcb\x4a\xdc\x9d\x76\xf9\xc5\x67\x26\xf7\xf5\x93\x98\xa5\x27\x89\x46\xd2\xe1\x5d\x96\x88\xa4\x34\x3b\xc9\x62\xdb\x24\x01\xc7\xec\x98\x6f\x32\x7a\xe7\xee\xe0\xa9\x47\xf7\xfb\xff\x6d\x6d\x96\x3c\xa3\x34\x6e\x18\x3a\xd0\x32\x3d\x6b\xb5\xf4\xd2\x40\x5c\x79\x60\x6b\xa2\x6b\x07\x7b\x6c\xf1\x62\x73\x4c\x68\xbd\x56\x7e\x89\xc1\xd1\xea\x3c\x79\xe6\x91\xfd\xfe\x74\x92\xea\xc3\x93\xac\x18\xef\xaf\xe4\xbb\x50\x5e\x87\x9f\x55\xe9\x58\x5d\x6e\xf3\xa9\xc9\x77\x8d\x5a\x7d\xf9\x85\x17\x5e\xb0\xed\x77\xf9\x92\xbd\xe6\x44\xed\x60\x34\x4f\x37\x2e\xdf\x59\x79\xee\xcc\x24\xfd\xa9\x54\xc3\x26\x42\x09\x5a\x04\x71\x81\xaf\x0c\x2c\x85\x5b\x40\x03\xcd\xa8\xdf\x72\x46\x18\x07\x51\x06\x38\x15\x7d\x3a\xc8\xd5\x93\x8f\x1c\x64\xff\x6d\x7f\xa5\x7f\x6b\x9c\x15\xc7\x07\xfd\xdc\xae\x1a\xd8\x3c\xe7\x55\x1e\x6d\x2c\xfd\xde\xf7\xbe\x17\xfe\xf9\x9f\xff\x19\x08\x0d\x7f\x96\xda\x4e\xb0\xad\xd2\xe3\xd0\xb4\xb0\x63\x3b\xba\xd4\xb1\x14\x00\x68\x7b\x5b\x2e\x25\xa6\x6b\xe6\xd5\xfa\xa0\x32\xc6\xa4\x89\x86\x6c\x34\x4b\xd6\x87\x8b\x64\x5b\xe9\xf2\xf6\xc3\x2a\x06\x01\x2b\x4d\x71\x22\x09\xb5\x4f\xc0\x68\xe8\xde\x96\x1a\x6c\xb4\xce\xb6\xb7\x79\xf3\xce\xb0\x54\x81\xdc\xa3\x7a\xe7\xa6\x3a\x0d\x26\xdf\x1b\xe6\x37\xa7\xa9\x1e\x6b\x04\x7b\xb9\x5c\xeb\x52\x23\x62\x5e\xab\xf7\x04\x20\x22\x7c\xf9\xcb\x5f\xf6\x29\x34\x09\x6c\xf8\x66\x99\xd2\xe0\xef\xa2\xe3\x03\xbe\x14\x26\xf1\x72\x85\xf3\x67\x9f\xac\x21\xb0\x15\x02\x71\x3e\x5e\xd4\x2f\x04\xb8\x25\xe7\xe2\xc5\xe5\xf1\x81\x0e\x17\x88\x09\xa5\xb5\xe4\x36\x37\x37\xd5\x07\x3e\xf0\x01\x78\xf7\xbb\xdf\x5d\xef\x1b\x20\x20\xa5\x35\x50\x58\x7f\x3b\x39\x00\xa8\xaf\x0d\x57\x58\xdd\x4a\xda\x9b\x9b\x2c\x5d\xe8\x81\x2a\x60\x94\xe4\x66\x98\x4d\xf4\x7a\x36\xd6\xeb\xe9\xcc\xac\xa7\x0b\x58\x57\xb9\x59\x4b\x72\x33\x42\x0d\x43\x34\x90\x81\x81\x0c\xa1\xb4\xba\x00\x00\x18\x80\x1c\x10\xe7\x06\xa1\xfc\x53\x30\xd5\x09\x1e\xeb\x14\x8e\xf2\x14\x0f\x17\x03\xdc\x9f\x0f\xd5\xe1\x6c\xa8\x0e\x75\x8a\x63\x9d\xc0\x38\xef\xe1\xb4\xe8\xe1\xdc\x24\x4b\x97\x7c\x51\x25\x68\xaf\x1a\xa7\x65\x6b\xcb\x7f\xe9\xb2\xbb\x34\x4d\x55\x9e\xe7\xb1\x20\xc6\x55\xf6\xb1\x3a\x2e\xd4\x96\xba\xa6\x11\x03\x58\x42\x7d\x98\xc7\xf1\xc9\x28\xe9\x94\xd3\x00\x39\xa7\x4c\x6c\xbf\x12\xbd\xb6\xbe\x1e\xa8\x13\x0d\xc3\x47\x0e\xfa\x17\x1f\xdb\x1f\x7c\x7c\x63\x92\x3e\x97\x6a\xdc\x6e\x01\x15\xc6\x93\xab\xdf\xa5\xc1\x75\x69\x10\xa6\xfa\x9f\xc5\x77\xe8\x72\xea\x12\x8d\xeb\xa3\x59\xf2\xcc\x85\xc3\xec\xee\xde\x70\x71\xf3\x24\x2b\xa6\x8b\xd4\xd0\xb6\x6a\xfb\x55\xbd\x8f\x8b\xde\x53\xd4\xeb\xf5\x60\xb1\x58\x2c\x5d\x31\x60\xcb\xc4\x96\x85\xdd\xa0\x9c\x2d\x70\x78\x71\xbf\x7f\xe9\xfc\x51\xff\x93\xbd\x42\x5d\x00\x57\xbb\xb5\xb2\xda\xf1\xc7\x8e\x73\xcb\xe6\xff\x06\x9c\x48\x68\x44\x44\x27\xb0\xb4\xff\xa7\x06\x3e\x88\x90\x68\x18\xae\xce\x92\xa7\x1f\x39\x18\xbc\x76\x67\xb4\xb8\x75\x92\x15\xe3\xbc\xb1\xba\xb4\xca\x04\xc2\x6d\x8a\xeb\x46\x1f\x80\x59\x6a\xa3\xd2\xe6\x5c\x27\x71\xa4\x9f\x06\x00\x38\x39\x39\xd1\x6c\x63\x56\x3d\x03\xac\x15\x68\x85\x3e\x53\x8d\xd9\xe6\xb8\xb7\xd9\xcf\xd5\x96\x6a\x9d\x51\x5f\xde\x47\x62\x8b\xd2\x77\x7a\xa8\x0d\x5a\xa0\x41\x92\x35\x68\xa1\x9c\x96\x5d\xdd\xc8\x2c\x6a\xf7\x55\x3c\xf3\x5f\xa4\xe6\xf8\xee\xea\xfc\x66\xae\xcc\x14\x2a\xc0\x22\xdc\xdd\x52\x2b\x6c\xc4\xf2\xc2\x39\x76\xcf\x8d\x54\xc6\xd6\x89\x40\x91\xd1\x49\x34\xd2\x20\xab\xd8\xb3\x94\xfe\xd2\xc0\x01\x72\x9b\x91\x5c\x48\x91\x86\x94\x66\x4c\x98\x94\x77\x9e\xaf\x18\x25\x4e\xe3\x4a\xef\xae\x67\x89\x0f\x8f\x1f\x33\x30\x78\x01\xe8\xf6\xf6\xb6\xfa\xc0\x07\x3e\x00\xef\x7a\xd7\xbb\x00\x00\xe8\x04\x00\x00\xc0\xf6\xb3\x65\x90\x52\x7f\x94\xce\xa4\xa8\x4d\x9a\x96\x16\x95\x61\x3a\xd7\xeb\x2b\x07\x7a\x73\xe5\x50\x9f\xcf\xa6\xfa\x7c\x3a\x37\x8f\x24\xb9\xd9\xc6\x02\x36\x51\x9b\x75\x34\x30\x02\x03\x03\x04\x33\x40\x83\x19\xd4\x57\xb0\x1b\x05\x80\x69\xf5\x2d\x75\x0d\x50\x7e\x98\xcd\xd8\xb6\x8d\x30\x35\x08\x63\x83\x30\x06\x05\x87\x5a\xe1\x6e\x91\xe2\x4e\x9e\xe1\x5b\xf3\x15\x75\x73\xb2\xa6\x76\x26\xeb\x6a\x37\xef\xab\xc3\x22\x85\x71\xd1\xc3\xa9\x56\x90\x57\x8a\xdc\x5e\xfa\xa5\xaa\xfe\x62\xbf\xdc\xdb\x02\x30\xa6\xfa\x42\xad\x2d\x20\x0b\x62\xfa\xfd\xbe\x9a\xcd\x66\xae\xba\x0e\xf5\x11\x4e\xe3\x1a\xdc\x7d\x00\xe9\xb4\x6d\xd9\x45\x13\xa3\xdc\x7d\x7c\x42\xa0\xcb\xc5\x2f\xa6\xcd\xba\xca\x81\x6e\x40\xb5\x9b\xc3\x9b\x6f\xed\x54\x1b\x72\xd7\xa6\xe9\xe8\xb1\xbd\xc1\x07\xb7\x4e\xb2\x8f\x64\xb9\xba\x88\x50\x8e\x0d\xad\x71\xb9\x1e\x9c\xdb\xe0\x43\x9a\x54\x72\x0b\x4d\xfd\xc1\x97\x6a\x9c\xa0\xcf\xe5\x09\x52\x68\xee\x04\x43\x61\x1c\x40\x80\x54\xe3\xe6\xd9\x71\xef\x83\x8f\xee\x0f\xae\xed\x8c\x16\x3b\xf7\x56\x17\x73\x03\xcb\xed\xd1\x3e\x53\x8b\xe1\x62\xb1\xd0\xb4\x2c\x48\x99\xb4\xbe\xcb\x87\x88\x99\xd2\x30\x58\x9b\xa5\x5b\x97\xef\xae\x7c\x68\x75\xa1\x9e\x51\x00\x69\x3d\x46\xf1\xbb\x94\x6c\x5e\xd0\x5a\x52\xa8\x69\xa5\x3d\xbe\xd1\xc5\x01\x71\xac\x63\xe5\x46\x97\xd3\x44\xd0\x83\x00\xa9\x56\xdb\x67\xc7\xe9\x33\xef\x38\xca\xbe\xbf\xbf\xb2\xb8\x7b\xb0\x52\xd8\x31\xcd\xae\xde\xd4\x6d\x87\x4c\x3e\x24\x27\xb5\x37\xa7\x21\x84\xd3\xa6\x92\xa7\x90\x88\x0f\xb0\x78\x15\x38\x2d\x74\x80\x66\x06\x48\xd7\xd6\x53\x8d\x83\xb3\x93\xf4\xa1\xac\x28\xd7\x37\xa5\x1d\x47\xd4\xab\x05\x42\x5a\x05\x6c\xc0\x18\x5c\x0a\xa3\x9d\x00\x00\x6a\x38\x44\xd7\x05\xeb\x4e\x41\xad\x32\xf5\x95\xba\x44\x0e\x68\x37\x86\x2a\x4f\x50\xed\x9f\xd2\xd3\x54\xef\xdf\x1b\x2e\xee\x14\x68\xe8\x0d\xb9\xf4\xab\xcf\xf5\x11\x3b\x9a\x3f\x76\x5b\x2e\xb0\xe7\x58\x85\x18\x5b\x77\x21\x25\xec\x0b\xeb\xc2\x2f\x34\xcb\x74\xfd\x9e\x46\x9e\x10\xc0\x72\xf1\x74\xd1\x48\xd6\x12\x1f\x5d\x57\xb9\x43\xf5\xd6\xf2\xfb\xcc\x67\x3e\x43\x5f\xeb\x09\x00\x79\x97\x6e\x21\x55\xa0\x4d\xaa\x34\x64\xaa\x30\x83\xde\xd4\x8c\x46\xf7\x8a\xf3\xa3\xbd\xe2\xf1\xfe\x58\xbf\x47\x2d\xcc\x25\x55\x98\x0b\xa8\x61\x13\x0d\xac\xdb\x5b\x49\xdb\xf7\x1f\xb5\xb5\x57\x33\x20\xd8\x13\x1d\x26\x03\x83\xf5\xf7\xb9\xd0\x70\x15\x69\x72\x83\x66\xac\x27\xb0\xbf\x72\x58\xec\xae\xdf\xc5\x5b\x79\x0f\xdf\x58\x0c\xf0\x07\xe3\x33\xc9\xb5\xa3\xad\xf4\xe6\x6c\x15\x0f\xb5\x82\xa9\x4e\x61\x8a\x0d\xb8\x57\x00\xc0\x67\x73\xb6\xff\x58\xd0\xa6\x01\x1a\x0b\x0c\x01\x2d\x21\xd0\xea\xd3\x59\x21\x1d\x28\x01\x9f\x18\xbd\xe9\xa3\xa1\x72\xf1\xb6\xcc\x65\x97\xf8\x4a\x61\x31\x80\x3d\x04\x94\xba\xe4\xa1\xae\x0b\xe6\x4f\x41\x4b\x0a\x00\x19\x1a\x18\x9c\x3f\xca\x2e\x6c\x1f\x67\x1f\x5a\x59\xa8\x4b\x0a\x1a\x2b\x7b\xeb\xee\x73\x24\xcf\xc0\x2d\x28\xf4\xb0\x06\xff\xd8\x6e\x15\x15\xd8\x9e\x17\x3a\xd1\x25\x13\xd2\xe5\xc1\xbd\xda\x3f\x02\x98\x0e\x72\x75\xf1\x1d\x47\xd9\x47\x2e\xed\x0d\xbe\x7f\xb0\x92\x1f\xe7\x09\xd8\xf6\x68\xc7\xce\xba\xac\x8d\x31\x2d\x6b\x20\xf9\x26\x13\xad\x4f\xfe\x1d\xa2\x74\x90\xab\xd1\xa3\xfb\xfd\x4b\xe7\x4e\x7a\x1f\x49\x0b\xb5\x05\x40\xf2\xc1\xc6\xc1\xd6\x7c\x99\x02\x0f\x5c\xc2\x18\xed\x48\xe5\x2d\xc2\x6d\x30\x88\x4d\x7e\x01\xec\x7e\x19\xfa\xcc\xc1\xa0\x01\x05\x98\x0e\x17\xea\xf2\xf9\xc3\xec\xfd\xb7\xd7\xe6\xd7\x0f\x07\xc5\xb1\x29\x57\x16\x52\x20\x56\x17\xa9\x7f\x82\xbb\x0f\xc5\x8e\x6f\x75\xdb\x72\x1d\x87\x76\x3d\xfb\x12\x58\x6a\xd4\x64\x16\x48\xcd\xd7\xed\xaf\x5e\x02\xa6\x89\xc6\xc1\xda\x2c\xdd\x4a\x35\x8e\x00\x38\x02\x2e\x35\x22\x62\xbd\x1d\x09\xe8\x42\x0f\x35\xc3\x35\xe8\xb1\x0d\x25\xad\xea\xb5\xcf\x76\x8d\xa7\x06\x35\x40\x14\x6f\x0d\x64\x0c\x4b\xab\xe2\x4b\x9b\xb9\xbd\x08\x08\xcb\xf9\xa7\x46\xd0\x47\xfd\xfc\xd6\x51\xbf\x38\xd4\x0a\xe6\x80\xf5\x6d\xb9\x9a\x83\x17\x0a\x90\xd8\x55\xe8\x12\x20\xa4\x6e\x09\xe9\x0b\x7e\x00\xed\xf8\x5c\x99\x49\xf1\xa5\xb4\x7d\x69\x49\x8a\xd3\xa5\xe4\x24\x05\xc9\x65\xf5\xc9\xe2\x52\xd8\x2e\x60\xe1\x03\xda\x5d\x78\xfb\xf2\xee\xcb\x03\x38\x68\xb8\x73\xa6\x6f\x3f\x72\x08\x20\x7e\x3d\xd6\xd2\xf3\xbf\xe6\x7b\x2f\xd5\x4d\xd4\x25\x58\xc9\xb7\xd7\xee\x16\x97\x07\x27\xfa\xfd\xe9\x5c\x3f\x95\xe4\x70\x09\xb5\xd9\x86\xe6\x0b\xb2\x40\x6c\xcf\x6d\x6b\x23\x54\x6a\xbc\x42\xff\xd8\x4c\xf5\xaa\x4e\xb5\xdc\x33\x6a\x8f\x92\x59\x8a\xda\xac\x27\x06\xd7\x01\xe0\x31\xc8\x4d\x9e\xce\xcd\x38\x1b\xc3\xee\xf0\x50\xbf\x71\xe6\x76\xfe\xea\x7c\xa8\xbe\x7d\x7c\x56\x7d\x77\xff\xe1\xde\xcd\x3c\xc3\xa9\xa9\xac\x95\xd0\x9c\x5a\xb0\x03\x83\xbd\xc1\xb4\xee\xf7\xd5\x73\x6d\xdd\xfd\xfa\xd7\xbf\x0e\xdf\xfe\xf6\xb7\x43\xfa\x4a\xea\x23\xbc\x0e\x5c\x7e\x31\xed\x9b\xd2\x72\x30\xd2\x45\x71\xfb\x80\x85\x94\x3e\xf7\x8b\xed\x07\xfc\x59\x92\xc1\xc7\x8b\xeb\x7d\x45\xea\xc9\xea\x7c\x7b\x67\x57\x36\x9a\xa5\xeb\x8f\xec\xf7\x9f\x5e\x9b\x26\x4f\x27\x1a\x46\xd4\x92\x42\x2f\x57\xa3\xf0\xb9\xfd\x0c\x4b\x6f\x00\xac\xfd\x21\xf3\x61\xd6\x9b\x2a\x29\x87\x45\xa2\xd9\x4b\xa9\x0c\x0e\x47\xb3\xe4\xa9\x8b\xfb\xfd\x8f\x5e\xdf\x9c\x5c\xbf\x37\xcc\xcb\x09\x29\xb6\x3f\x90\x6b\xdb\xa9\xbd\xbb\xcc\x02\x38\x62\x71\xa2\x65\x63\x3f\x6d\x90\x22\x60\xb6\xb2\x48\xd6\x1f\x3e\xec\xbf\xa7\x9f\xab\x4b\xd8\x6a\x93\xe5\xd8\x43\xad\x1f\x2d\x99\x25\xf9\xe9\x64\xbd\x2e\x53\x3a\x19\x6f\x77\xdf\x16\x90\x21\x56\x28\x6e\x3c\x28\xc3\xcb\xc8\x69\xa1\xb6\xcf\x4e\xd2\xa7\xb6\x8f\x7a\xaf\xec\x0e\x17\x3b\x87\xfd\xdc\xae\x28\xa4\x55\xfe\xa9\xa5\x85\xde\xe7\xe6\xc2\x17\x2e\x20\x4d\xc3\x5a\xf1\xb8\xc5\xc5\x45\x2c\x39\x2e\x4c\x4d\x4f\x37\x10\xda\x4d\x76\xf4\x6e\x08\x20\xb3\x43\x34\x90\xf6\x73\x35\x5c\x9d\xab\xed\x44\xe3\x68\x79\x3f\x0b\xd6\x9b\xac\x1a\x00\x82\xed\xa6\x8a\x8d\x3f\x40\xd9\xc8\x99\xa1\xa4\x7e\xaf\x2b\x14\x71\x29\xdc\xc6\x45\x92\x02\x88\xe9\x56\xcf\xed\xc9\x28\x14\x89\x99\xee\xae\x16\x6f\xcc\x53\x33\x36\xd5\xdd\x2d\x58\x5e\x8d\x9c\x57\x95\x57\xff\x21\x39\x4a\xc6\x51\x35\x84\x07\xf2\x56\x79\x3b\xe8\x7c\x0a\xcb\x07\x5e\x80\xf8\xbb\x68\x25\x3a\x9f\x2c\x3e\xab\x44\xcc\xe0\x11\xf2\xe7\x3c\x5d\x0a\xd8\xa5\xf8\x25\x20\xe6\x8b\x4f\xdf\x25\xd9\x7c\x03\x92\x04\x4c\x5b\x7c\x28\x68\xa1\x34\x74\x22\x40\xcc\xcd\xf5\x64\x00\xaa\x0b\x1d\x11\x31\x1d\x1c\x15\xa3\x33\xb7\xf3\x4b\x6b\xf7\x8a\x0f\x65\x63\xfd\x5c\xb2\x30\x4f\x2a\x0d\xdb\xd5\x12\x90\x6a\x5b\x34\xdb\x5a\xdd\xae\xee\xb6\x66\x6f\xf6\x5f\xdd\xe5\x9a\x38\xe5\x1c\xa1\xd2\xaa\x96\x86\x0e\x1c\x75\xdf\x2a\xf5\x1e\x1a\x58\x4f\x0c\xac\x9b\xb9\x7e\x4c\x2d\xf0\xb9\x6c\xa2\xef\x0e\xf7\xf1\xfa\xd9\x5b\xf9\x3f\x1f\x9d\x4b\xfe\x65\xef\x42\xef\xda\x6c\x55\x8d\x0d\xc2\xdc\x2a\x44\x28\x2d\x97\x0a\xc8\x52\xeb\xd2\x6c\x14\x91\x82\x96\x18\x17\x43\x1b\xea\x1f\xe0\x08\x97\xe8\xba\x00\x95\x10\x40\x0a\x0d\x06\xae\x74\x5c\xf4\xa1\xfc\x84\x78\xd5\x4e\x00\xd6\xcd\x26\x54\xc4\xf4\xe1\xa3\x6c\x7b\xfb\x38\xfb\x68\x3f\x57\xe7\x11\xb0\xdc\xe8\x0d\xcb\x58\x83\xaa\x57\xa6\x6a\xe5\x08\x0e\x27\x91\x71\x5e\x52\xda\x95\x53\x3d\x8d\x9b\x1b\x93\xf4\xd9\x47\xf7\x06\xff\x63\x6f\x78\x72\xa8\xc1\x70\x0b\x43\x0d\xae\x6d\x9b\xb4\xcb\xff\x7c\xaf\x0f\xb1\x8a\xa6\x88\x98\x2a\x0d\x83\x95\xb9\xda\x3a\x33\x49\x9f\x4c\x75\xb5\xe2\x50\xcb\x65\x27\xc6\xcb\x42\xd9\x57\x5a\x3e\x94\xa6\xdd\x77\x9b\x0e\x28\x6f\xc8\x6d\xee\xc3\x69\x40\x11\x2e\xf3\xaf\x02\x15\x80\x1a\x2c\xd4\xc5\xb3\x93\xf4\x5d\xa3\x59\xf2\xbd\xa3\x41\x71\x0c\x4d\xfd\xda\xcf\xd8\xd4\x7a\x59\x18\xdf\x5c\xc0\x5b\x72\x62\x1b\xe5\x16\x17\x10\xde\x43\x8e\x2a\xe0\x56\x3c\x2a\x30\x41\xde\xad\xc6\xdc\x2b\x30\x5b\x9f\x25\xa3\xc1\x5c\x6d\xa1\x81\xd4\xa2\x46\x43\x37\x57\x49\x68\x19\x68\xe5\x50\x64\xc8\xbe\x1a\x5d\xd3\x34\xbf\xed\xfd\x31\x0d\x43\xdf\x79\xf8\x86\xce\xd4\x4b\x55\x6c\xf9\x4a\xcf\x12\x7d\x7c\x67\x75\x7e\x73\x91\x18\xba\x21\x37\x87\xf6\xe6\xdc\xa5\xf2\x71\x7c\x69\x34\x76\x30\x0c\x01\x16\x4e\x47\x69\x79\x1c\xd7\x0c\x2e\x34\x2b\x93\xd2\x08\x01\x89\xd8\x38\xa1\x7c\xc7\xf2\x8e\x95\xaf\xcb\x40\x10\x33\x78\xb8\x64\x72\xc6\xa1\xa0\x85\x9a\xde\xe9\x52\x90\x05\x2a\xd8\x1c\x3b\xce\x00\x20\x1d\xee\xe5\x1b\x1b\xb7\xf2\xa7\x56\xf7\x8b\x8f\x66\x13\xf3\x6c\xb2\x30\x8f\xa3\x86\x4d\x00\x18\x00\x00\xd8\xf5\xd1\xb2\xed\xd2\x67\x80\x72\xa9\x95\xf4\x03\x63\x95\x5a\x45\x07\x36\xac\x6d\x63\x47\xdb\xeb\x28\x40\x31\x74\x6c\xc1\xfa\x38\x2b\x81\x3c\x00\x88\x0a\x0d\x0c\xb1\x80\xc7\x54\x61\x2e\x24\xb9\x79\x6f\x6f\x62\x3e\xb5\x76\x57\xff\xeb\xc9\x86\xfa\x9f\x07\xe7\xd3\x57\xc7\x67\x92\xdd\x22\x81\xfa\xf2\xaf\x4a\xf9\xe7\x00\xad\x2f\xd4\xd6\xed\xf4\xf9\xe7\x9f\x57\x45\x51\xc0\x1f\xfc\xc1\x1f\xf8\xc0\x73\x8c\xa5\xc1\xe5\x42\x71\x63\xd2\x89\x49\xf3\x41\x58\x4b\x62\xac\x83\x5d\xe4\x08\xa6\xc9\x2f\x2f\x84\xb2\xce\xca\x76\x6a\x20\xeb\xe7\x38\x7c\x74\xaf\xff\xde\xb5\x59\xf2\x5e\x65\x60\x60\x4c\xb3\x34\xd1\xba\xe8\x90\xf8\x5b\xc7\x27\x9a\x8d\xf5\xb1\x6d\x4f\xb7\x96\x09\x1a\xa7\xb6\x2e\x00\xd4\xb7\xa4\xb7\x07\x05\x42\x07\x6d\x8b\x3b\x1a\xc8\x56\x16\xea\xc2\xf9\xa3\xec\xfd\xdf\x36\x27\xaf\x41\xf9\xed\xb9\x0c\xda\x1b\xca\xe7\x56\x1e\x7e\xe9\x1e\xb9\x8c\xb1\x06\x2f\x76\x7f\xcb\xea\x3c\x19\x5d\x38\xcc\x2e\xae\xce\xd5\x25\x65\x60\xd0\x02\x54\xc2\x78\xd4\xf2\x12\xae\xf8\x68\x4b\x6e\xc7\xbb\x8a\x8e\xa1\xbf\x7a\x95\xa1\xa2\x81\x7a\x32\x5f\x1d\x7b\x31\xed\x3e\x5d\x17\x95\x01\xe8\x69\xdc\x5c\x9b\xa5\x17\x87\x8b\x64\x13\x00\x76\x48\x79\xa4\xd5\x84\x5d\x03\x4d\x1b\x00\x3e\xf8\xc1\x0f\xaa\x7f\xff\xf7\x7f\x97\xf4\x5f\xe7\x3e\x4a\x37\xd4\x58\x66\xbe\xce\xe2\x72\xad\x04\xac\xb5\xc5\x3a\x66\xde\x06\x20\xe8\xb3\x57\x60\xb6\x3e\x4d\x37\x7a\x5a\xad\xdb\x0d\x5a\xa5\x4e\x6c\xcc\x75\x14\x64\xd0\x05\xa3\x56\x1a\x60\x91\xa1\xad\x48\x5a\x11\x0c\xe8\xb0\xca\xe0\x7e\x5e\x0c\x4f\x91\x28\x21\x34\x08\xf9\xa4\xa7\x77\x0f\x07\xf9\x9e\x26\xfb\x5b\xd8\xe6\xc2\xfa\xcf\x96\x89\xe3\x86\x50\xc9\x0a\x41\xc3\xb9\x1f\x9f\xbd\x73\x3e\x52\x3c\xee\xcf\x5d\x17\x0b\x87\x4b\xa6\xd8\x01\xc1\xa7\xd4\xe9\xb1\x75\x00\x00\x20\x00\x49\x44\x41\x54\x60\x41\x08\x73\x3d\xbb\xf8\xba\xe4\x8e\xe9\x30\x2e\xde\x2e\xb9\x7d\x1d\xce\xf7\x5e\x3f\xf3\x63\xce\x00\x40\x97\x5a\xeb\xfb\x51\xec\x1a\x39\x18\x93\x65\x63\x33\xdc\xbc\xb9\x78\x72\xb4\x5b\x7c\x32\x1b\xeb\x0f\x27\x0b\x73\x49\x69\xd8\x84\xf2\x04\x90\xb2\x4b\xa3\x74\xf9\xd4\xce\x06\x1a\xe5\x87\x2d\xd0\xd2\x60\x13\xf2\xdf\x2e\x0f\xb5\xc6\x8b\x76\x7f\xe4\xb3\x37\xa8\x93\xa5\xdc\xda\x93\x06\x83\x90\xa2\x86\xcd\x74\x6e\x46\x49\x5e\x3c\xd6\x9b\xe9\x0f\xaf\x1c\xe9\x7f\x3d\xde\x4c\xfe\xc7\xe1\x76\xfa\xbd\xc9\x9a\x3a\x34\x09\xda\xaf\xab\x2b\x68\xbe\xae\x4e\x3f\x54\x0a\x00\xa0\xed\x37\x98\xec\x3b\xfb\x8d\x7d\x0e\x59\x3a\xa4\x34\x62\x68\x7d\x71\x43\xe1\x5d\xd3\xe9\x02\xfa\x63\xf2\xeb\x4d\x93\x1e\x30\x60\x96\x85\xda\x1a\xd8\xcf\xd5\x68\x63\xd2\x7b\xa2\x57\xe0\x06\x96\x61\x75\x3b\x6a\xcd\xcc\x3d\xb3\xc8\x46\x8f\xb7\x5b\x12\x35\xc2\x08\x86\x85\x76\x7b\x16\x09\xa4\xc9\x30\x02\x80\x51\x89\x56\xa3\x33\x93\xf4\xa9\xad\xe3\xde\xc6\xed\xb5\xf9\x18\x9a\x7d\x2e\xb5\x85\x81\xc8\xdf\xb2\x32\x60\x73\xe2\x8f\x4f\x38\xd2\x95\x45\xb2\x7e\xee\x24\x7b\x67\xaf\x50\xdb\xbe\xcb\x4f\x25\x7f\xba\x6a\xd0\x24\x87\x4b\xfd\x0b\x5d\x83\x1b\x4a\x65\xd9\xb6\xc0\xb0\xe2\xa9\xd3\x52\x1a\x87\xc3\x79\x72\xfe\xcc\x34\x3d\x3f\x58\xa8\xeb\x93\xb4\x98\x0a\xc6\x89\xba\x1c\xd8\x49\x40\xae\x57\xbb\xf4\x29\x00\x90\x2d\x2e\xe0\xf0\x73\x39\x91\x8e\xac\xf1\x59\x84\xd9\x32\x21\xda\xcc\x25\x1a\xb3\xe1\x3c\x39\x9b\x16\x38\x92\xda\x92\xd5\x8d\x7c\x77\x35\x5f\x83\x63\x60\x72\xc9\x21\xbd\x91\x87\xa5\x51\xb3\xf4\xc4\xe7\x04\x54\xbf\x03\x00\x68\x34\x7a\xdc\x2b\x76\x8f\xb3\xe2\x18\x00\xe6\x80\xf5\x26\x43\xbb\x4c\x54\x6f\x56\xaa\x9e\xc1\x18\xc3\xf7\xb7\x58\xc7\x07\x33\x3b\x20\x72\xe5\xe2\x02\x21\x12\x5d\x68\xf6\xc6\x79\xc4\xf2\xe2\xa0\x57\x1a\xc4\x63\x00\x89\x94\x0f\xfe\x1e\x3b\x3b\x8c\x9d\x49\x4a\x71\x63\x79\xf3\xf8\x2e\x5e\xbe\x49\x41\x8b\xfe\x37\x7e\xe3\x37\xd4\xe6\xe6\x26\x9d\x79\xd6\x16\x16\x68\xfa\x4d\x7d\x8c\x12\xb4\xc9\xd2\xb9\x19\xae\xed\x16\xe7\xd7\x77\xf2\x0f\x0f\x0f\xf4\xcf\xa4\x33\xfd\x5e\xa5\x61\x0b\x0c\x0c\x00\x40\xd5\x9b\xd2\x25\xe5\x45\x17\xc6\xf9\x87\xdb\xe8\x6e\xf6\xd6\x2e\x77\x26\x39\xef\x78\xcd\xde\x16\x42\x64\x96\x22\x35\x2c\xab\xd9\x68\xe9\xa1\x00\x60\x00\x1a\xb6\xd3\x99\x59\x57\x79\x71\x3e\x9d\xe9\x27\x07\xc7\xfa\xeb\xc7\xe7\x92\x7f\x39\x3a\x97\xbe\x31\x1b\xaa\x63\x28\x3f\xa3\x91\x42\x79\xd5\x80\x2d\xdb\x4a\xd4\x7a\xd6\x0b\xc6\x18\x10\xfa\xd6\x83\x72\x5d\x2d\x35\x5d\x5d\x0c\x10\x0f\xb5\xf5\x90\x25\xe6\xc7\xe1\xa4\x7d\x58\xe5\x32\x02\x40\xba\x3e\x4d\xd7\x57\xe7\xc9\x25\x55\x7d\x44\x97\x4e\x00\x63\x6f\x81\x0d\xb9\xa0\x1e\xef\x1c\x09\x21\x31\x66\xb8\x3a\x4f\x1e\xbf\x78\xd0\x7f\xec\xf6\xda\xfc\x2e\x40\xbd\x21\xb5\xb5\x64\x44\x22\xb5\xde\x69\x79\x90\x25\xa3\xac\x57\xe0\xfa\xca\x42\x6d\x27\x06\x87\x3c\xff\x14\xd8\x4b\x20\x62\x69\xf2\xde\x36\x84\x2e\xe5\x4f\x3c\x3d\x25\xe4\x3b\xa6\xec\x10\x30\xed\xe7\x6a\x6b\x6d\x9a\x3c\x3c\x5c\xa8\xd1\xb4\xa7\xeb\xe5\x22\x20\x06\x0a\x12\x45\x7f\xf6\xb3\x9f\x55\x7f\xf2\x27\x7f\xc2\xc7\x09\x97\x7e\xf4\xb6\xd1\x58\x65\x4d\xdf\x79\xb8\x97\x17\xdd\xa4\x03\x50\xcf\x20\xeb\xd9\x63\xaa\x71\xb0\xb2\x50\xeb\x89\x81\xea\xe2\x39\x43\xfe\xb7\x11\x61\x65\x3c\xb4\x1e\x00\x2d\x4a\x8e\x0a\xdb\x0b\x48\xa5\xb9\xda\xda\x6c\xa0\x34\xb3\x11\xfa\xc6\x88\xbd\xec\x4c\x29\x37\x18\x2c\x1b\x87\xa9\x96\x8b\x9a\x34\x0d\x14\xca\xcc\x4f\xfa\xc5\xdd\x59\xaa\xcb\x8d\x85\x65\xc3\xd6\x58\x5e\xbc\xd5\xba\xc7\xc5\xfe\x21\x62\x48\xb1\xf2\x41\xdb\x37\x73\x92\x1a\x80\x6b\x06\xe5\xe3\x25\xf1\xb6\x4e\xaa\x63\xce\x4b\x7a\x96\x68\xa4\xb0\x58\xd0\x12\x8a\xef\xcb\xb7\xc4\x2f\x26\x8e\x04\xde\x5c\x32\x84\xea\x4d\x4c\x73\x73\x73\x13\x00\x4a\xc0\x42\x67\x2f\x64\x96\x56\x7f\xee\x3e\x29\x60\xb4\xba\x5f\x9c\x7f\xe8\xc6\xe2\xc3\xe7\xde\x98\xff\xf7\xb5\xbb\xf9\x7f\xef\x4d\xf4\xc7\xd4\xff\xcf\xdc\xbb\x3e\x59\x76\x5c\xf5\x82\xbf\x95\x7b\x9f\x47\x9d\xaa\xae\xae\x6e\xb5\x5b\x6d\xb9\xfd\x92\x6d\x59\x36\xba\x46\xa8\x75\x6d\xf3\xf0\xd8\x77\x30\x04\x98\xb9\xe0\x09\x83\x81\x18\x0f\x10\x61\xa4\x3f\xaa\x15\x7c\x80\x70\x84\x81\xc0\x11\xf0\x85\x0f\x44\x4c\x40\x40\x30\x86\x18\xdb\xc8\xc6\x6f\xcb\xb2\x1e\x2d\xa9\xd5\xea\xae\xae\xae\xc7\xa9\x53\xe7\xec\x9d\x6b\x3e\xec\x7c\xac\x5c\x3b\x73\x9f\x53\x36\x31\x31\x29\x55\x9f\xbd\xf3\x9d\xb9\x33\x57\xfe\xd6\x23\x33\x5b\x5c\x47\xb7\x3b\xc8\xc4\xe3\x33\xc5\xb8\x4e\x24\x25\x5d\x18\x0b\x6a\xa7\xaf\xcc\xea\x04\x2c\x91\xa3\x0d\xfe\x12\xf4\xc8\xb0\xcc\x41\x10\xec\x54\x4e\xc1\x06\xc6\x57\x83\x45\x66\x12\x58\x31\x0c\x31\x66\xa6\xe5\xeb\xe3\x53\xfe\xf8\xce\x7e\xf3\xbb\x97\x5e\x5b\xfd\x9f\x57\x5e\x59\x7e\x6a\xf7\x6e\x73\xdd\x34\xbc\xc3\xcc\x63\xff\x07\x71\x3a\xaf\xda\x04\x10\x18\xa8\x5f\xfd\xd5\x5f\xd5\xb4\x2a\xf7\x2c\x5d\x89\xee\xad\x93\x62\xae\x03\xb4\xe7\x4d\x9b\x5b\x04\xa4\x2b\x81\xe8\x21\x5a\x2d\x69\xf2\xa6\x75\x32\x19\xff\x5e\xb9\x42\x55\x94\x82\x6e\x46\x5d\x59\x1a\x5f\x39\x19\x5d\x9d\xac\xe8\x7a\x77\x1f\x1d\xa0\xc7\x26\xa7\x3e\x69\xde\x8e\x76\xeb\x31\x2a\x92\xc7\x5f\x16\xf1\x11\xd5\x50\x22\xb3\x6c\x62\xd6\x01\xdc\x31\xbd\xc4\xa8\xc7\x2d\x5d\xb9\x72\x3c\x7a\x1f\x9c\x5a\x16\x62\x1d\x13\xcf\x80\x62\x6e\x98\xd9\xc8\x75\x2f\xcc\x67\x46\x3d\x6a\x69\x36\x6e\x69\x97\x18\x63\x72\xaa\xda\x5e\xbb\xd3\xe9\x94\xd4\x93\x85\x3f\xa9\xf9\xc8\x2c\xc2\x95\x90\x34\xc4\x4c\xa6\x9d\x08\xe3\x24\x56\xff\x9b\x30\xa3\xb6\xb4\xb3\xb5\x32\x57\x26\x2b\x33\xe3\xee\x50\x4a\xd9\x0f\xbe\xed\x21\xc9\xce\xce\x4e\xbf\x71\x9b\x01\xe8\xde\x38\xab\x73\xb1\x90\x27\xe2\xf2\x5d\x13\x6e\x1f\x66\x2e\x5d\xba\x84\xfb\xf7\xef\x87\x78\xfa\xe0\x1d\xa4\x83\xd9\xd4\x96\xc6\x5b\x2b\xb3\x5b\x59\x9a\x02\x41\xbb\xd6\x03\x15\x39\x3f\x1f\x53\x83\xc6\x44\x1f\x87\x08\x76\xe2\xce\x24\x74\x40\x26\x24\xf0\xbb\x92\x04\xd8\xd1\xd2\x95\xc4\x28\xa6\x87\x49\xed\xca\xf0\xe2\x70\xda\xdc\x6d\xaa\x6e\x47\x84\xd8\x49\xe4\x2f\x56\xcc\x19\x29\xe5\xdc\x10\xe1\x0b\xe5\x21\x25\x38\x39\x00\x39\x24\xed\x28\x01\x9d\x52\xfa\x92\x84\x45\x13\xc3\xa1\xb2\xb4\x04\x62\xd3\x34\xb9\xfa\xe6\x38\xcf\x9f\xb6\xed\x9b\xa6\x29\xb5\xbd\xd4\xbe\x52\x9a\x6c\x3c\x75\xaf\x8b\x36\xbe\x4d\x76\x21\x8c\xce\xec\x6c\xfb\x7e\x7b\x7d\xf7\xad\xe6\xe9\xed\xfb\xed\x27\x47\x0b\x7e\x92\x2c\xae\x00\xe8\xce\x57\x71\x54\x2a\x88\xe1\xe3\x8e\x06\x00\x4a\x1d\xe4\xdf\x83\xb8\x1e\x21\x4d\x32\x77\x59\x86\x89\x67\x07\x7a\xe2\xbc\x21\x24\xca\x73\x92\xcc\x06\xa2\x93\x69\xbc\x4d\x03\x75\x69\xc5\xc1\x91\x86\x18\xbb\xb4\xc2\x63\x5b\x47\xf6\x4a\xbd\xe4\x47\x46\x0b\xfb\xf6\xfa\xac\xfe\xd7\xa3\x2b\xf5\x4b\xab\x2d\xd3\x49\x37\x23\x4d\x91\x27\x53\x7b\x67\xf5\x81\x75\x48\xc7\xf3\x26\x84\xb3\x14\xa7\x44\x07\xd7\xe5\x21\xc7\xc1\xba\xb4\x9b\xd4\x7b\x5d\x3a\xed\x72\xf5\x5e\x97\xb6\x04\x90\x00\x44\x09\xbb\x97\x2c\x68\x5b\x46\x00\x75\xc5\x98\x5e\x9e\xd7\xef\x1c\x59\xb3\x47\x80\xe9\x86\x50\xee\xac\xae\xbc\xcb\x8e\xa3\x72\x64\x64\x14\x98\xc9\x6b\x5e\x80\xa8\xea\x13\xe8\x3d\x9b\xca\xd2\x6c\x67\x59\x3d\x32\x6a\x69\xbc\xaa\xb8\x66\x70\x2d\xda\xe9\x5d\xf8\xb6\x7e\x3e\x8b\x4d\x29\x7e\x7e\xbb\x43\xf8\xa8\x1e\xb5\x34\xab\xad\xd9\x21\xc4\x8b\x85\x01\x57\x37\x21\x41\x89\xa6\x10\x3e\x2c\x9d\x77\x1e\xb3\xf8\xf9\x4a\xe8\x83\x95\x8c\xa6\xa8\xd4\x3b\x42\xc0\x9a\x5f\x8f\x89\x08\x86\x79\x3a\x6a\xcd\xce\xa8\x35\x53\x61\x6b\x17\xbe\xbd\xd6\x92\xa8\xf5\xef\xbc\xe3\x3e\x59\x87\x4a\x48\x3d\x87\xf2\x4b\xe8\x3c\x29\xcc\xa3\x2a\x66\xce\x6e\x87\x16\x86\x5b\xb5\x61\xd4\xe3\xd6\xcc\xa6\x8d\xd9\xeb\x44\x87\xa9\xf3\x28\x30\xf2\x69\xde\x9f\x93\x5f\xed\xfa\xb2\x98\x02\x92\x67\x49\xad\x15\x22\xcd\xa2\xdc\xbc\xb3\x04\x7b\x56\xf3\xe1\xe1\xa4\xdd\x77\x86\xb9\x01\xb4\xc0\x11\x08\x69\xe7\xe2\xfb\xe6\xe6\xcd\x9b\x56\x6e\x75\xf5\xd9\xc9\xac\x75\x51\x48\x09\xde\x79\x09\xcc\x90\xbf\xff\x5b\x47\xa4\x4b\xef\xb2\xfc\x5c\x59\x9b\x70\xb6\xe7\x71\x9b\xb6\xb1\x54\x1f\xef\x97\xeb\xaf\xf3\xd6\x29\x97\x47\x69\xae\xf4\x38\x5f\x75\xf8\x20\x24\x17\x47\x6e\xeb\x24\x80\xb1\xb1\x98\x4e\x8f\xdb\x2b\x17\x6f\x37\x1f\xb9\xfc\xda\xea\x37\x2f\xdc\x6d\x3f\x37\x3e\xe5\x5f\x31\x16\xd7\x88\x51\xc7\x33\x54\x94\x84\x05\x81\x68\x22\xde\x42\xaf\xc6\x73\x60\x53\x39\x64\x91\x33\x72\xef\x12\x72\x4c\x13\x44\x27\xd1\x2f\xe5\x1a\xf5\xac\x61\x15\xc1\x17\x96\x90\x60\x57\x8c\xcb\x97\x51\x93\xe5\xab\xa3\x05\x3f\xb5\xb3\xdf\xfe\xf6\xe5\xd7\x56\xff\xfb\xe5\xd7\x56\x4f\x6d\x1d\xb6\x97\xc9\xf2\x0c\x9d\x1d\x4f\x22\x79\x51\x7f\xfa\x7c\x91\x9f\xc5\xe5\xe6\xe7\xcf\x92\xf7\xa6\xd2\x9a\xdc\x98\xdc\x44\xd2\x32\x94\x7e\x13\x37\x04\xe6\x43\x9e\x8e\xa6\x69\x4e\x3b\x01\x2f\x64\x69\xbc\xbd\xac\xaf\x9a\xee\x5a\x97\x6e\x5d\x00\x7a\xc3\x55\x8f\xba\x1e\xed\x5e\x47\x90\x45\x58\x42\xcf\x0b\xf1\x0b\xc2\x97\x5e\x00\x31\xd5\x93\x95\xb9\x3a\x69\xcc\x94\x84\x9d\x8a\xda\x29\xeb\x5d\xb2\xa3\x28\xa7\xf6\xad\x2d\x8d\x27\x8d\x99\x55\x96\x66\xc4\xdd\xee\xaa\x12\x7f\x9c\x03\x19\xbd\x7e\xe9\xcd\xbd\x14\xac\xac\xc3\x7b\x3a\x3f\x2a\xf4\x97\xf7\x27\x46\x5d\x5b\x4c\x6b\x8b\x29\x32\x73\xcf\x9b\x88\xf4\xa4\x5d\xe7\x9f\x2f\xbd\xb5\xa6\x56\x01\x43\xdc\x6b\x8e\x00\xf7\x90\xd0\xab\xaf\xbe\x9a\x5c\x51\xef\xec\x3b\xdc\x47\x09\x68\xbc\x86\xfb\x70\xb3\xa5\xd9\x19\x77\xc0\xa5\x8b\x13\x0f\x73\xcb\x74\xb4\x23\xc0\x41\x41\x43\x08\x46\x87\x02\x29\xf7\x24\x30\x81\x2e\x76\xf1\xc3\xf6\x6a\x4a\x89\x64\xaa\x5e\x8a\xce\x5d\xad\x58\x24\xe4\x96\xb8\x59\x8c\xda\x83\xe3\x49\xfb\x80\x85\x6d\x0b\x52\xc0\x12\xcb\x10\xe5\x3a\x55\x51\x6e\x01\x1d\x02\x30\x25\xc9\x41\x52\xad\x81\x7c\x4a\xd2\x85\x5c\xfe\x3a\x9f\x21\xf0\x32\x54\x56\x2e\xfe\x50\xba\xa1\x72\x37\xe5\x14\x37\xe1\x50\x73\x6d\x38\x4f\x3d\xd7\xd5\x63\x90\xbb\x2e\x48\x5a\xfc\xe4\x1f\x7b\x11\xac\x69\x31\xdd\x3a\xb6\x57\x77\xef\x34\x4f\x5c\xb8\xdb\x7c\x72\x3a\xb7\x1f\x35\x2b\xbc\x87\xc0\xe3\xc8\x7a\x79\x9b\x01\x3f\x3f\x04\xf1\x11\x12\x92\xe0\x25\x28\x34\x3b\x6e\x2d\xcc\x1d\x4d\xe8\x09\x42\x02\x93\xce\x4f\x39\x37\xbc\xcd\x4a\xd7\x16\x84\xdd\x77\x21\x4b\xf2\x12\x1e\x0d\x56\x9c\x98\x5c\x1a\x0f\x93\xb0\x81\xe8\xd4\xbc\x3b\xd5\x8a\x1e\xdf\x3a\xb4\x97\xeb\xe5\xea\x6a\xbd\xe4\x9d\xfb\x6f\x1f\x3d\x7f\x7a\xc1\xdc\xe5\x0a\x0b\x2f\x25\x42\x67\xb8\xeb\xea\x10\x54\x17\xe1\xb4\xdd\xaf\x7d\xed\x6b\xf8\xc6\x37\xbe\xb1\x89\x44\x22\xf7\x9e\x1b\x1b\xe7\x89\xab\xe3\x0f\x01\x12\x9d\x6f\x29\x6d\x69\x8c\xe5\xea\xb4\x89\x2b\xcd\x6b\xb9\x16\x24\x71\x14\x2d\xcd\x81\xc7\xda\x74\xa6\x01\xbb\xc4\x30\xc8\x8c\x97\x6e\x58\x44\x7a\x1e\xf2\x86\x64\x56\x3d\xf8\xce\xd3\x62\x76\xff\x48\x93\x2c\x3f\x0f\x72\x36\x1e\xb9\x35\x23\x39\x46\x5f\xd4\x82\xc0\x75\x6d\x69\x77\xdc\x9a\xe9\x09\xb7\x35\xa8\x2f\x61\xc8\xf4\x05\xa0\x40\x8c\x8b\xdb\x01\x97\xd6\x6c\x19\xc6\x54\x4b\x34\x24\x96\xcf\xae\x6b\x01\xef\xab\xe3\x22\x33\x69\x20\xda\x1f\x24\xa6\x32\x4c\xe7\x8d\xf8\x5d\xb4\xb6\x43\x4a\x51\x88\xbb\x33\xd8\x8c\xa5\x31\x98\x0d\xdc\xba\x2e\xcf\xf1\x91\xfd\x21\x00\x4c\x69\xbd\x19\x72\x6b\x25\x2e\xa5\xcc\xd7\x85\x87\xbc\x32\xa2\x31\x19\x27\xfc\x8d\x5b\x33\xde\x39\xab\x2e\x8e\x3a\xc3\x5c\xc3\x82\x98\xf5\x06\x58\xd8\xc6\x29\x06\x7c\x57\x00\x22\x21\xed\xb8\xb9\xf8\x51\xfc\xd6\x65\x97\x87\x8b\xef\xc5\x81\xf1\x8f\x13\x62\xef\xeb\x1e\x11\xa8\x48\xa3\x90\x3c\x83\xd1\x12\x96\xf3\xb1\xdd\x9f\x77\x86\xb9\x12\xb4\x04\xc3\x5c\x97\xa7\x7f\xb6\xcc\x8c\x2f\x7c\xe1\x0b\xeb\xa4\x2c\x25\x6e\x2c\xb7\xb8\xe6\xb8\x3f\x2d\xcd\x59\x27\xa5\xd0\x52\x17\x9b\x09\xcb\x81\xab\x1e\x87\x2b\xfc\x4b\x1c\x9b\x8c\xa3\xcb\xd8\xa4\xee\x43\xdc\xe6\xa6\x69\xf4\x22\xa3\xfd\x36\xcd\x7b\xa8\xcf\xf4\x3b\x00\xe0\x77\x7e\xe7\x77\xcc\x33\xcf\x3c\x13\x40\x8b\x10\x2b\x1b\x78\xe3\x5b\xb7\x13\xa3\x6a\x31\x9b\x1d\xb6\x8f\xec\xbd\xbe\xfa\xe8\xde\x9b\xcd\xef\x6c\x1d\xdb\x5f\xaf\x56\x78\x8c\xd8\x81\x96\x30\x90\xfd\xd8\xf7\xa3\xd6\x3b\xc1\xc6\x51\x37\x1f\xbc\x3e\x3c\xa8\x8f\xa4\x48\xd8\x4b\x3a\x14\x35\x25\xfd\x2c\x00\x49\x2c\x29\x4e\x36\xa9\xa9\x22\xea\x12\x51\x98\x5b\x92\xb8\xfb\xf8\xfe\x0c\xa5\xa4\xba\xe1\x85\xba\xd3\x7a\x6b\xd3\xe2\x91\xc9\x9c\xff\xd7\x8b\x6f\x36\xbf\xf7\xd0\xad\xd5\xc7\x67\x87\xed\x23\xa6\xc1\x0c\xee\x96\x5d\x67\x0b\x54\xcb\x05\x54\xd2\xa1\xa7\x9f\x7e\x1a\x6b\xdc\xa6\x8b\xbc\x1e\xef\x3f\x4d\x3e\xb9\xf9\x94\x63\x14\xb5\x5f\x8e\x1e\x68\xff\x21\xc6\x66\x93\x7a\xfc\x54\x2e\xbb\x83\x14\xdd\x99\x5d\xc6\xd2\x94\xe4\x5a\xe1\xc7\x2f\x10\xc6\x40\x6a\x7d\xe8\x16\x4b\x37\x1a\xba\xf1\x2d\xc5\x12\x3d\x7c\x9d\x4a\x2d\xfc\xaf\x07\xcb\xb1\xa8\x28\x30\x44\x61\x0c\x6b\xc7\x80\x61\x1a\x57\x96\xc6\x94\x31\x42\x15\xf3\x37\xd9\xda\x4d\x71\xcb\x7e\x88\x4f\xdd\x51\x00\xb5\x61\xd4\xc4\x30\x52\x88\x24\xdb\x10\xaa\xee\xeb\xe8\xd7\x1f\xc1\x8c\xe7\x99\x6d\x44\x13\x37\xe7\xe1\xf3\xa5\x42\xbc\xb4\x1f\x7b\xd4\x23\xb4\x47\x80\x19\x03\x50\x4d\x40\xed\x76\x04\xfb\x7e\xf0\x7d\xa2\xa5\x50\xd2\x9d\x67\xbc\x49\xb0\x6c\x74\xe2\x4d\xb8\x03\x19\x57\x2f\x46\x49\x3c\x09\x5e\x44\xfc\xf0\xc7\xcc\xf5\xa8\xa5\xe9\x6c\x55\xed\xd6\xd6\xec\x84\x34\x10\xe3\x98\xd3\x01\x20\x99\x34\xb9\x5d\x3a\x0e\x48\x02\x27\xc0\xa7\xaf\xe5\x94\x69\xfc\xc0\xed\x7f\xa4\xf8\xaf\x1f\x2c\x72\xa0\xeb\x62\x5b\xc3\xcb\x93\x71\xbb\xbf\xac\x83\x7d\x4b\xa2\x26\x12\x87\xcf\x85\x7e\x22\x22\x7c\xe9\x4b\x5f\x2a\x11\x1c\xf9\x5e\x92\x00\xe4\xd2\x6e\xba\x98\x0e\xfd\xea\x85\x7c\x1d\x38\xf2\xfe\x25\x20\x9b\x03\x3e\xeb\x08\x69\xae\x3d\x9b\xf4\x95\x7f\x1e\x6a\xb7\xac\x8b\x74\x25\x89\x92\x76\xeb\x24\x40\x43\xe0\xc8\x5e\xb9\x72\xc5\x00\xc0\xd5\xab\x57\x01\x20\x01\x2d\x42\x45\x14\x0c\x71\x3b\xd0\x62\x1f\xb9\xfc\x5a\xf3\xf1\x8b\x77\x9a\xdf\x19\x9f\xd8\x5f\x31\x2d\xae\xaa\xc9\x20\xa8\x1d\x8b\xc5\x80\x23\xae\xe1\x08\x68\x42\x58\xb8\x1e\x83\xa3\x01\xa0\x57\x37\xe9\xf8\x85\x15\x81\xd9\x7b\xc4\xb8\x2c\x8c\x82\x49\xaa\x91\x44\x22\x12\xe5\x91\xcf\x3b\x5a\xeb\xca\x4a\x87\x78\x09\xf7\xc7\xd8\x19\x2d\xec\x2f\x5d\x78\xab\xf9\xdc\x43\xaf\xae\x7e\x69\xf6\xa0\xbd\x5e\x35\xd8\x01\xf3\x14\x4e\x6d\xe4\xd4\x6c\x9a\xee\x18\x66\x0e\xaa\xa3\xad\xad\xad\x9f\x95\xb0\x96\xc2\x72\x20\xfe\x67\x75\x43\x75\x5a\x27\x41\x3a\xaf\xff\x3a\x66\xc7\x1a\x63\x0c\x90\x9c\xec\x0c\x20\x91\x72\x25\x7d\x6f\x98\xea\xca\x5d\xd0\xd9\x45\x94\xf4\x38\xfe\x24\x43\x51\x48\x02\xc3\x5a\xc0\x31\x0c\xec\xc0\xb0\x1c\xaf\xb2\x2e\x32\x9d\x58\x5f\xf4\xba\x20\xaa\x90\xa4\x55\xce\xa0\xb3\x23\xd3\x6a\x91\xd0\x6e\x11\xaf\xd4\x87\x21\xcc\x12\xd0\x12\xc0\x24\x24\x57\x99\x06\x24\xf5\x10\xcc\x40\xae\xb2\x72\x0a\x49\x4c\x98\x73\x52\x4a\xa3\xfb\x24\x5f\x9f\x94\x21\xb2\xc4\x4d\x6b\xb8\x69\x0d\x0f\xd1\xe6\x92\x5b\x47\x67\x4b\xb4\xd7\xca\xc0\xa1\x85\x27\xf7\xde\x43\x40\xb9\x82\x3d\x78\x51\xfa\xce\x60\x59\x5d\xb7\x34\x9e\xae\xaa\x9d\xca\x76\x3b\x8a\xbc\x0d\xb8\xec\xd0\xc8\x50\x46\x19\x8a\x1f\x8c\x11\x4d\xaa\x03\x77\x42\x4e\x31\xcf\x38\x80\x39\xa4\xe1\x24\x54\x4a\x5f\x5c\xbe\x7e\xd0\x48\x94\x2a\x14\x7f\xee\x83\xdb\x65\x6d\xe7\x47\x93\x76\xff\xac\x0a\x3b\x8a\xfc\x19\x13\xf2\x7e\x22\x7f\x05\x3a\x88\xba\xf3\x5b\x9c\xc4\x65\x48\x4d\x21\xdf\x4b\x8b\x79\x09\x68\xac\x13\x33\x4b\x97\x5b\xe8\x4b\x60\x47\xe7\x9b\x03\xb1\xb9\x7c\xe5\xaf\x6e\xa3\x4e\xa3\xff\x72\x65\x0f\x95\xa3\x41\xd2\x50\xdd\xbc\x5b\xd7\xd6\x9c\x64\xa6\xf4\x4d\x8a\xe5\xfc\xda\xaf\xfd\x9a\x34\x64\x4c\x40\x0b\xc5\xdb\x73\xc7\xcc\x3c\x26\xcb\xb3\xd9\x83\xf6\xda\xe5\x57\x97\xbf\x72\xe1\x6e\xf3\xb9\xd1\x82\x3f\x6a\x18\x7b\x11\xb4\x08\x6a\xaf\x45\x81\x62\x36\x74\x5c\x96\x07\x34\x9e\xbd\x22\x48\x60\x12\x24\x2d\xce\x40\x16\x44\x42\xcd\xc4\x11\x44\x24\x94\x31\x4a\x52\x20\xe2\x92\x07\x21\xfe\x0e\x0d\x37\x89\x02\xc6\x81\x9b\x73\x42\x2d\x1c\xa9\x71\x57\x6f\x0e\xec\xa1\x9f\xaf\x22\x2b\x57\x57\x02\x4d\x47\x67\xfc\xd1\x0b\x77\xdb\xcf\x5d\x79\x75\xf5\x2b\xb3\x83\xf6\xba\xe9\xc0\x4b\xcf\xe6\x45\xee\x34\x92\x5c\xe0\xe9\xe9\xe9\x90\x14\x23\xe7\x72\xa0\xbb\x94\x6e\x9d\xb4\x71\xa8\x1c\x19\x37\x37\xbf\x86\xea\x90\xab\x53\x6e\x2c\x0f\xb5\x71\x68\xce\x76\x01\xd6\x5a\x20\xa8\xbb\x35\x9d\x8f\x2a\x05\x22\x03\xee\x8e\xbe\x70\x17\x76\x76\x75\x4b\x44\x6b\x9c\xee\x9e\x11\x28\xd5\x0f\xd9\xc0\xed\xfb\xb1\xe0\xff\x42\xd4\x2e\x03\xbd\x58\x27\xaa\x53\x78\x29\x43\x8c\x55\x02\x3c\x09\x80\x72\x4d\xe6\x6e\xb1\xee\x84\x2f\x6e\xb7\x90\x1c\x5b\x05\x7b\x0e\x6f\xd7\x98\x7c\xa3\xd6\xb0\x5d\x56\xf6\xac\x25\x0e\x67\x11\xb1\xfa\xd5\x68\x42\xae\x7b\x92\x25\x08\x07\xee\xc5\xe9\x56\x92\x1b\x25\x6d\xf2\xd3\xba\x04\xde\xd2\x7a\xa5\xfb\x6e\x5b\xc2\x72\x51\xdb\xe3\x45\xcd\xcb\x6e\xc7\x6d\xb2\xab\x2a\x6a\x2e\xfa\xea\x32\xed\x4a\x02\x93\x22\x18\x1a\xe2\x42\xf5\x22\xb0\x6e\xd1\xc8\x39\x4f\x28\x82\x47\xd0\xe1\x77\x3b\x8a\x66\xd3\x95\xd9\xab\x98\xa6\x5e\x1c\x98\x1c\x20\x07\xc0\x0f\xc7\x4e\xe7\x18\x0f\x9f\xcb\x75\x82\x94\x9b\x90\x78\x62\x91\x46\x8a\xc4\xa3\xe0\x31\x97\x32\x3a\xb9\xfd\x59\xce\x2e\xb7\x45\xda\x9e\x55\x76\x7e\x32\x6e\x0e\xc5\x89\xb9\x16\xf9\xa3\xc9\x93\xbe\x52\x12\x97\xd2\x22\x9f\x03\x31\xda\x95\xd2\xc8\x70\x2d\x86\xd6\xc0\x60\x48\x92\x30\xf4\xbb\x8e\x28\x96\xd2\xe4\xdc\xa6\x9c\x6d\xae\xde\x3a\x2c\x57\xce\xcf\xd2\xd6\x5c\xbc\x4d\xe2\x24\xce\x1b\xaf\x4b\xd0\x02\xc7\xc9\xb9\xbf\x31\x98\xc7\x04\xcc\x26\x47\xf6\xf2\x43\x2f\x2f\x3f\x75\xe1\x5e\xfb\x7b\xa3\x33\x7e\xd2\x74\xc7\xf5\xa7\xec\x56\x22\x0d\x61\x11\xe6\x20\x7c\x22\xa6\x40\x94\x6c\x90\x18\xeb\x22\x6d\x94\xa0\x20\xcd\xcb\xcb\x98\x83\xbe\x5a\xcd\x93\x6e\x35\x40\x94\xf4\x50\xf4\x73\xdc\x47\x20\x7b\x14\xe7\x65\x60\x54\x3c\xa0\x61\xe1\xd7\x2f\x20\x99\xd7\x2e\xc5\x78\xb4\xe4\x27\x77\xee\x35\x9f\x7b\xe8\xd6\xea\x93\xdb\x0f\xda\x6b\x64\x21\x0d\x76\xc7\x40\xcf\x38\x12\x40\xd6\x60\x77\x1d\x17\xa8\xe3\xe5\x00\x3f\x94\xdf\xa6\x80\x39\x57\xe6\xa6\x4c\x48\x09\xa0\x97\xe6\xd3\x26\x80\x5b\xbb\xa1\x7a\x03\x48\x80\x4a\x3f\x35\xc1\x58\x62\xcb\x14\xee\xad\x89\x0b\x26\x47\x2a\x1c\xa0\x2b\xa5\x43\x36\xe1\xf6\xc5\x62\x1b\xd7\x82\x38\xd6\x93\xd2\x85\xda\x5f\x02\x91\xc4\x9c\xc1\x8d\x4c\x12\xa0\x23\x60\x71\x66\x07\x9e\x19\x20\xd8\x55\xc5\x8b\x95\x61\x0b\x0a\x47\x15\xe4\xd7\x22\x71\x72\xac\xef\x13\xad\x85\x58\x19\x8b\xd3\x91\x5d\x36\x86\x17\x0c\xb6\x2c\xe6\x88\x96\x08\xc5\xbe\x88\xd2\xa7\xc4\x3f\xf4\x0b\x87\x3c\x4a\x52\x14\xdf\xa7\xba\x9f\x43\xbb\x13\xe6\x47\xa5\x13\xcf\xad\xe1\xc5\xe9\xc8\x1e\x2e\x46\x76\x89\x0c\x30\xd1\xe3\x21\x03\xea\x86\x5c\x6e\x4c\x87\xf9\xbb\x8e\x7b\xd7\xfe\xda\x65\xfd\x15\xd2\x02\x90\xee\xed\x06\x60\x4c\x77\x47\xd1\x74\xda\xd0\x6e\x65\x69\x2a\xd1\x72\xd7\xa1\x11\x60\x48\x08\x23\x51\x66\x28\x4f\x48\x58\xa2\x5f\xfa\x51\x35\x92\x4d\x87\x68\x9a\x4e\x06\x49\x90\x94\xd0\x74\xe7\x6f\x89\x97\xcb\x9a\x0f\x4e\x47\x7c\xc4\xe0\xe4\xac\x16\xa1\x22\xb2\xde\xae\xc5\xe7\xf5\xb9\xcf\x7d\x6e\x9d\x28\x31\xe7\x6f\x55\xb8\x8c\x5f\xe2\xe8\x50\xf0\xcf\x11\xcc\x12\xc2\xd5\xf9\x0f\x95\xb1\x4e\x22\x31\x54\xaf\x5c\x9a\xa1\x3a\x6d\x52\x9f\xa1\xb2\x36\xa9\xc3\xd0\xc2\x52\xfa\x4e\x6b\x9d\xe4\x4e\xd9\x1d\x89\xce\xf1\x5c\x92\xe9\x78\xc1\x3b\xd7\x7e\xbc\xfc\xd4\xce\x7d\xfb\x7b\xf5\x19\x7f\x98\x18\xd3\xde\x00\x4f\x46\x76\xfa\xde\x11\x5d\x07\xd4\x19\x09\xe0\x4e\x06\x71\x88\x4d\x01\x6f\x30\x27\x5c\x66\xd6\x91\x3f\xd3\x9f\x49\xc4\x25\xf1\x17\x22\x76\x84\x9f\x52\xd8\x11\xf2\x80\x26\x76\x50\x7e\xe9\xb3\xe6\x44\xdd\x4f\x5d\xaf\xf0\x61\xb7\xe3\xe8\x93\xdb\x07\xed\x35\x30\xcf\x80\xde\x6e\x23\xad\xbe\xd0\xae\xb4\x90\xaf\xfb\xa6\xeb\x18\x8a\x4d\x5d\x2e\xfe\x26\x12\x9a\xf3\x96\xbd\x4e\xe2\xb2\xc9\x18\xde\xb4\x6d\xdd\x18\x07\xcc\xaa\x62\xbb\xaa\x78\xc1\x2e\x6d\xf8\xb2\x19\x0c\xec\x1f\x24\x9d\x96\xd2\x85\xde\x8e\x17\x6f\xf4\xdd\xf3\x8e\xeb\x08\x10\x17\x6b\xb9\xc6\xc0\x63\x13\xbd\xf0\xfa\x7c\x5d\x6a\x4b\x6c\xcf\x6a\x7b\x70\x3a\xb2\x0d\x17\xda\x5f\x5a\xbc\x01\x24\x86\xad\x00\x6c\x5b\xa1\x59\x8c\xec\x7c\x31\xb6\x87\x6d\x77\x29\x2f\x92\xce\xc8\xcc\xc1\xc8\xa7\x50\x3f\x4a\x60\x46\xd2\x36\x0f\xe5\x97\xf3\x8e\x92\xcd\xbe\x71\xae\x4c\xd3\x54\xbc\x58\xd4\xed\x7c\x55\xd9\xe4\xc2\x49\x14\xc6\xa3\xea\x9b\x75\x63\xac\x34\xa6\xed\x26\x89\x37\x22\xc2\x25\xe7\x8d\x74\xe4\xae\x09\x38\xa3\xb9\xda\x52\x3d\x6d\xcc\x6c\xdc\x9a\x1d\xc3\x18\x27\x80\x40\xe4\xa1\x81\x46\x1a\x9e\xc2\x8f\x12\xba\x44\x08\x4b\x49\xa7\x47\xd9\x52\x68\x98\x7b\xd4\xf9\x27\xe2\x32\xc3\xcd\x62\xd4\x1e\x2f\x46\xad\x3f\x06\x3a\x18\xe7\x02\x3d\xfb\x16\x8d\x3a\xa5\x64\x60\x13\xc9\x96\x41\x3a\x40\x4a\xf1\x87\x16\xfb\xdc\x37\xcd\x49\x75\x64\x1e\xe7\x21\xc0\xeb\x88\xe8\xa6\x63\x6a\x48\xf2\x51\x22\xe6\x39\xa9\x61\xa9\x2f\x36\xe1\x4c\xa5\x1b\xea\xb7\x52\xf8\x50\x5e\x41\xd2\xe2\x41\x0b\x11\x8d\x09\x98\xd6\x4b\xde\xbd\xf6\xc3\xb3\xff\x65\xfb\x7e\xfb\x87\xf5\x92\xdf\x8f\x6e\xf1\xed\x11\xa9\xee\x57\x80\x17\x81\xac\x69\x68\x42\x14\xfc\x93\x39\x96\x9b\x84\xc9\xbb\x26\x6a\x24\x26\x49\x0f\x61\x75\x31\x7a\xd3\xcb\x73\x62\xc2\x2f\x87\x98\x58\x53\x01\x4e\xde\x9c\xab\xab\x25\x3f\xbe\x73\xb7\xfd\xed\xcb\xb7\x9a\xff\xb1\x73\xdf\x5e\x85\xc5\x94\x53\xb5\x51\x4d\xca\x58\x50\x49\x5d\x7e\x1a\x49\xa0\x0e\x3f\x2f\x88\x3d\xcf\xdc\xda\x14\x78\x6f\x5a\xfe\x26\xf5\x5b\xcb\x14\xa8\xbb\x79\x8a\x8e\x89\xb1\xa8\xed\x21\x88\x1b\xfd\xf5\xce\x33\x54\x7b\xd8\xf6\x1c\x2e\xd0\x7d\x88\x1a\x90\xc2\xf5\xca\xf9\x78\x2d\x61\x79\x3c\x6e\xf7\x57\x15\x27\xdf\x4c\xb7\x7d\x60\xfb\x6f\x8f\x96\x9d\xd5\x76\x71\x38\x69\xee\xb4\xc6\xce\x35\x1b\x92\x02\xb7\x58\x7f\xe9\x79\x9e\x6e\xc8\x09\x49\x7b\x79\xf0\x40\x58\xea\xec\xb2\xb2\xf3\xf9\xd8\x1e\x2e\x2b\xd6\xd7\x6e\xf4\xc6\xcc\x9a\xf1\x71\x6e\x9c\x51\x4a\x50\x5a\xc0\x86\xd2\x1a\xa0\x33\xd4\xd2\xc8\x4a\xef\x67\x27\x77\x47\xd1\x74\x65\x2e\xd4\x96\x66\xb9\xee\xd1\x40\xa5\xf7\x51\x43\xa8\xfc\xed\x52\x26\x20\x83\xa5\x34\x26\x15\x59\x45\x44\xdd\x17\xbd\xa5\x95\xc9\x42\x1b\x30\xbc\x9e\x8f\x0f\x57\x15\x7b\xe0\x12\xc0\x88\xb3\x6b\xe9\xb8\x0b\xf7\xec\xdf\xbf\xf2\x95\xaf\x94\x54\x1c\xfe\x39\x27\x61\x59\xa7\x92\xd0\xc0\x66\x5d\x19\x39\xb7\xa9\xaa\x64\x28\xad\x2e\x2b\x17\xc7\x64\xe2\x0d\x49\xf7\x74\x1e\x25\xd1\xf8\x26\xaa\x9d\x75\x6a\x80\x92\x3a\x68\xa8\xcf\xd6\xf5\x2b\xc4\x6d\xb1\xc9\x89\xb8\x70\xc6\xb8\xcc\x3c\xad\x56\xd8\x7d\xdb\x4f\x96\x4f\xed\xec\xb7\xbf\x57\x2f\xf9\x31\x20\x6e\x95\xa4\x20\xb9\xf0\xae\x13\x8d\x78\xf5\x4a\x91\xca\x7b\x3b\x14\x2f\x63\x47\x8a\x0f\xc2\xa1\x8f\xfe\xe4\x4e\x8d\x30\x5c\xda\xa8\x76\xe2\x10\xdf\x4f\x9a\xd4\xae\x96\x62\x7c\x65\x88\xe0\x6d\xde\x28\x43\x7c\xfd\x7c\x8c\x4d\x4b\xe7\x1d\x73\x7a\x1c\x56\x86\xe0\x8e\xab\x15\x3f\xb6\x73\xbf\xf9\xf4\xc5\xdb\xab\x5f\xda\x3a\x6a\x2f\xfb\x7e\x45\xff\xb4\x53\x2f\xed\x2a\x9d\xf1\xb2\xa9\xd4\x4d\xfb\x6d\x22\xc5\x38\xcf\xf3\x79\x01\x76\x29\xfe\x4f\xdb\x86\x52\x1e\xc1\xff\xe6\xcd\x9b\xbd\xc3\x35\x93\x6f\xe7\x76\x54\xb6\x04\xfb\x60\xda\xec\x37\x26\x5c\xd5\x00\x20\x32\x8e\x52\x6a\xde\x7d\xef\x34\x2f\x4a\xc2\x15\x58\x08\x65\xe9\xb1\xad\xe2\x8b\x69\x12\x8c\x7c\x91\xda\x8d\xf8\x7c\xa4\x0f\x03\xd6\x56\xbc\x3c\x9a\xb6\x07\x00\x2c\x9c\x41\xad\x94\xa2\xa4\x1b\x49\x42\x06\x72\x3d\x80\xd8\x65\x6a\x01\xd8\x45\x6d\xe7\xfb\xb3\xe6\xee\x59\xcd\x87\xa1\x8d\x49\xd3\x18\xd1\x06\x33\xa2\x0a\x59\xbd\xc4\xf0\x5e\xa6\x64\x24\xbe\x24\xfc\xd3\x12\x84\x3f\xe9\xb0\x38\xef\x65\xb2\xee\x08\x10\x7b\x38\x1f\xb7\x47\xab\xca\x2e\xd1\x31\xe9\xb2\xbd\xba\x4f\x34\xb8\x5d\x37\xae\x07\xc7\xeb\x90\x98\xfd\x3c\x0b\x98\x01\x60\x3f\xf8\xc1\x0f\x26\xf7\xee\x88\x86\x24\x47\x1e\x03\xa8\x6b\x6b\xc6\x93\xc6\xcc\x6a\x4b\x33\x12\x1d\x53\x12\x4d\x79\xbf\x12\x6e\xd3\xe0\x24\xa4\x21\x79\xc2\x04\x52\x11\xa1\x48\xdb\xdb\x86\x97\x50\xd6\xe8\xaf\xc1\x4d\x53\xf1\x62\x31\xb2\x87\x67\xb5\x5d\x6a\xdb\x16\xa4\x1f\x33\xa7\x42\x03\xca\x44\x64\x93\x05\x33\x27\x61\xc8\xc5\xc9\xbd\x6f\xc2\x8d\xe5\xc6\xc7\x79\xb8\xb8\x21\xb5\x51\x8e\x20\x0e\xa9\x5e\x4a\x2a\x9c\xa1\x31\x5c\xca\x53\x03\x42\x1d\x7f\xa8\xde\xa5\xbc\x75\x9d\x13\x8e\x54\x1e\x32\x27\x8c\xfa\xfc\x01\x56\x63\x00\xe3\x7a\xc5\x3b\x7b\xb7\x57\x8f\xed\xde\x6d\xff\xe7\x68\xc9\x1f\x01\xd4\xf9\x0e\x4c\x01\x60\xfb\x93\x85\x3a\x49\x87\xa2\x38\x7a\x05\x90\xd0\xc0\x4b\x36\x29\x52\xb5\xc0\xc5\xf9\xfb\x8a\xb2\x13\x51\x9e\xb8\xeb\x22\x79\x40\xc2\x62\x8a\x10\xe0\x0f\xc2\x93\xc0\x26\x54\xd5\xdb\x04\x88\x95\x42\xad\x11\xf0\xab\x4b\x98\xa7\x7e\x9b\x34\x89\xf0\x40\x95\xa3\xa8\x96\xc0\x20\xc6\xac\x3e\xe3\x0f\xef\xec\x37\xff\x63\xf7\x4e\xf3\x64\x7d\x66\x77\x1c\x78\x09\xc0\x45\x9c\xbb\x61\x32\x04\x55\x3b\x3d\xff\xce\x23\x51\xdc\x04\x74\x94\xe2\x9c\x47\xca\x13\x9e\x3f\xfb\xd9\xcf\x9a\xcf\x7e\xf6\xb3\xbd\xb1\xfa\xd9\xcf\x7e\xb6\x94\xf6\x3c\x2e\x9b\x2e\x27\x71\x91\x2a\x11\xcf\xac\xb5\xc4\x76\x7f\x7b\xf5\xd6\xaa\xb2\xc7\x1c\xf2\xca\xd3\x56\xf9\xbd\x49\xd1\xdf\xee\x37\x1d\xef\x52\x00\x29\xb0\x6f\x3f\xbe\x9c\x50\x21\x6e\x26\x7f\x31\xd6\xdd\xa3\x5d\x19\x3b\x3f\x98\x36\xfb\x10\x74\x5d\x82\x96\x0c\x78\x4b\xe8\xbe\x6f\x0b\x8b\x8b\x77\x17\x23\xbb\xd8\x9f\xad\xee\x9d\x8e\xda\xbb\xde\x48\x57\x66\x23\xed\x3e\x89\xd3\x7a\xfa\xe1\xdf\x4d\x27\xea\x01\x12\x6d\xbf\x22\xfd\x93\xf7\x8c\x7f\x9c\xfe\x71\xde\xcb\x64\xab\xca\xce\x8f\x26\xed\xdd\x93\x71\x7b\x68\x29\x32\xea\x48\xd7\x3c\x79\x8a\xf5\xa6\x27\xc7\x7b\xa7\xc7\x5a\x32\xa6\x6b\x11\xe1\xbc\x2a\x01\x5d\x88\xf9\xc1\x0f\x7e\x60\xc5\xd9\x14\x01\x79\x4a\x89\x8b\xff\xab\x2c\xd5\xe3\xd6\x74\x87\xd7\x38\x27\x69\x66\x0e\xa4\x44\xc9\x8b\x87\x28\xd4\x0b\xcf\x80\xc6\x2e\xcc\x9d\x3e\xa4\x25\x26\xf1\xa9\x63\x1b\xfd\xe1\x74\xfa\xb4\xa2\x5c\xbe\x0c\xb6\x2b\xc3\xf3\xf9\xa8\x3d\x58\x55\xbc\xe4\x78\xbc\xbf\x57\x17\x01\x88\x37\x41\x4b\x24\xfe\xb9\xcf\x7d\xce\x28\xa9\x4b\xae\xff\x73\x44\x50\x4a\x62\x72\x12\x04\x1d\xa6\xdf\x37\xcd\x5f\xa6\xcd\xc5\xd7\xf9\xe4\xa4\x3f\xba\x4e\xb9\xfa\xe8\xba\x0d\x85\xad\x1b\x9f\xb9\xbe\xd9\x74\x4c\x4b\x69\x95\xae\xab\xcc\x47\x4b\x22\x73\xf9\x84\xf8\x6a\xab\xa8\x41\x5c\x38\xfd\x59\x2d\x63\x00\x63\xb3\xe2\xd9\xf6\x81\xbd\xbe\x77\xbb\xf9\xe4\x78\x6e\x9f\x86\x45\xe6\xd2\xd1\x38\x0a\xc3\x0e\x21\x74\x63\x3b\x84\xe4\x06\x7f\x96\x1b\x28\x50\x35\xb8\x03\xad\x34\xe7\xc5\x88\x36\x29\xba\x20\xea\x45\x8c\x06\x90\x49\xb0\x78\xf3\x92\x1d\x12\xb3\xb8\xff\xa0\x92\x89\x86\x64\xeb\xee\xf2\xb2\xd8\x1d\x9f\xf2\x47\x2e\xdc\x6b\x0f\x56\x53\xb3\xbf\xff\x4e\xf3\x5d\x4a\x6f\x68\x07\xc4\xfc\x24\xa2\xdc\x65\xa7\xe7\xa1\x85\x9b\x8c\xb7\x52\x9c\x9f\x8a\xee\xae\x3b\x09\xd8\x4b\xbe\xfd\x55\x07\x7f\xfb\xb7\x7f\x1b\xca\xf8\xf5\x5f\xff\x75\xf3\x0f\xff\xf0\x0f\xeb\x18\xa2\x4d\xe7\x1a\x6e\xde\xbc\x69\x45\x7d\x8a\x92\x56\x36\x68\xee\x6d\xaf\xf6\x8f\x26\xed\xeb\x5b\xcb\xea\x0a\xb9\x83\xd7\xd6\x2d\x67\x25\x9a\x1e\x5c\x21\xb0\x98\x26\x2b\x59\x28\xac\x1f\x6e\xcd\xb0\x04\xbb\xac\xf8\xf8\xc1\x56\xf3\x00\x7d\xa6\x32\xb9\x66\x82\xe3\xa5\xba\xf0\xbf\x6e\x0d\x90\x63\xd0\x02\x68\x1a\xc3\xcb\xe3\x49\x7b\xf0\x60\xda\xdc\xbe\x3c\x1f\x2d\xaa\x96\xb2\x17\xfa\xe4\x1a\xd4\xa3\x0f\xe7\xc2\x05\x65\x17\xfb\x20\x3d\xdc\x4e\x86\x9f\x8e\xec\xfe\xc1\x56\x73\xe7\x64\xd2\x1e\x23\x1e\xba\x6a\x05\x28\x4b\xd3\x64\x80\xdd\x39\x5c\x2f\xbf\x7a\x20\x70\x93\x85\xb4\x37\x58\x33\x6a\x22\xc9\xb9\x87\xf7\xda\x62\x3c\x6a\x69\x56\x59\x4c\xe5\x88\x51\x80\x38\xeb\xa8\x47\x0a\x07\x46\x22\xd2\x4e\x93\x83\x53\xe3\xec\x88\xbe\x39\x5c\x19\x9e\xa3\xf9\x7e\xd7\xa8\x25\x34\xcb\xca\xce\x4f\x47\x76\xde\x18\x0e\x12\x17\x89\x32\xd5\x2f\x24\x31\x29\xc4\x19\x02\x0e\xd9\x3c\xd1\xff\x4e\xb9\x77\xbd\x30\xaf\xe3\x00\x4b\xe0\x68\x1d\xc7\xb9\x49\x9d\x36\xe5\x32\xcf\x9b\x66\x68\xf1\xd8\xa4\x8f\xce\x53\xa7\xf3\x72\xca\x46\xff\x91\x3b\xab\xc5\x30\xa6\xd3\xb9\xbd\x7a\xf1\xcd\xe6\xbf\x4f\x8f\xec\xaf\x98\x96\xaf\x06\x30\x92\x19\xc3\x01\x67\x43\x10\xc7\x94\xbd\x4c\xe2\x21\x79\x75\xff\x0a\x20\x92\x1e\xc0\xe8\x41\x4b\x0a\x32\x72\xc4\x2b\x7b\x82\xa9\x07\x2d\x40\xfc\x15\x33\xce\x4f\x31\x8e\x6f\x5d\x0c\x27\xed\x91\x3b\x43\x38\x66\xd9\x3d\xfb\x38\xb2\x89\x1c\xeb\x2a\xce\xce\x36\xa6\xa5\x2b\xd3\x63\xfb\xd4\xc5\x3b\xcd\xdd\xe5\x8c\x0e\x8e\x1f\xaa\x6f\xa1\x23\xae\x63\x47\x5c\xfd\xf6\x55\xbf\x33\x24\x77\xa7\x91\x77\xe7\x01\x17\x25\xe0\x5d\x9a\x47\x83\x20\xc6\x03\x02\xa9\x86\xf0\xef\x24\x0e\x3b\xcb\xa9\x2b\x00\x58\x99\x5e\xc7\xf9\xfc\xe7\x3f\x6f\xfe\xfa\xaf\xff\xda\xfe\xc2\x2f\xfc\x82\xf9\x8f\xff\xf8\x8f\xf3\xb6\x27\x38\x09\xce\x95\x74\x21\xd8\xf8\x75\xcf\x68\x8e\x26\xed\xf1\xbd\xed\xd5\x4b\x97\xe6\xf5\x63\x55\x63\xa6\xfa\x6e\xba\x70\x06\x0c\xe2\x98\xd6\x74\x38\x2c\xa7\x0a\x07\x87\x72\x8b\xab\x42\x1f\x94\xe7\x18\xd9\x84\x71\x76\x15\xb1\xc4\xcb\xf9\xb8\xbd\x7b\x38\x6d\x0e\x5d\x7b\xfc\x42\x2d\xfb\x35\x39\xf6\x42\xf4\x89\x97\x36\x84\x85\x3d\xfc\x82\x9b\xd3\x51\x7b\xfc\xe6\x85\xd5\x2b\xd7\x0e\x27\xfb\xa3\xd6\x9d\x69\xa6\xea\x24\xc7\x3b\x65\xdb\xac\x5b\x19\x7d\x7d\x1a\x06\x77\x4c\x8e\xe8\x53\x8a\x89\xe2\xbc\x0c\xc2\x4c\xea\xc7\x03\xd0\x12\x2f\x8f\x27\xed\x9d\xfb\xb3\xd5\x9d\xf9\xc8\xce\xe1\xee\xe6\x83\x3b\xb1\x5a\x82\x97\x1c\xd3\xee\x5c\x09\x5f\x0c\x31\xd8\x21\x4c\x1f\xf9\xbf\x2e\x03\x99\xb8\x17\xe7\x83\x1f\xfc\xa0\x9f\x24\x72\x4f\x7b\x62\xe3\xe2\xc5\xb3\x95\xa5\xf1\xb8\xa5\x1d\xc3\x34\x8e\x23\xc5\x71\x6b\xd0\x1f\xa2\xff\x61\x3c\x55\xf7\x1f\xa8\x1b\x64\xf1\xa8\x66\x76\x5b\xa7\x25\x71\xf7\x8e\x5c\x5c\x26\x52\xf9\x0a\x6e\x56\xc6\xd5\xf5\x70\x33\xca\x1a\x5e\x2e\x47\xf6\x78\x51\xdb\x23\x0b\x6e\xc0\xc9\x16\xe8\x9e\x61\x2e\xfa\x75\x29\x81\x81\x12\x71\xdb\xe4\xc3\xae\x03\x9c\xd2\x6f\x48\xfa\xb1\xa9\x54\x44\xe7\x25\xdd\x50\xfa\xa1\xf0\x52\x3d\x91\x79\x1e\x8a\xab\xe3\x97\xd2\x0f\x49\x83\x72\xfe\xba\xce\xd9\xba\xe9\x7b\xa8\xc4\x79\x0f\xfe\xac\x96\x9a\x88\xc6\xa3\x05\xef\x5d\xb8\xdb\x3c\xbe\x7d\xbf\xfd\x95\x7a\xc5\x8f\x12\xc4\xbd\x25\x9e\x78\x27\x2b\xb6\x57\xc5\x14\xa0\xbd\x57\x56\xbb\xf4\xe1\xbe\x43\x8e\xc0\x84\xc2\x19\xe0\x08\x73\x46\x50\xea\x98\x1e\x10\x61\x5d\x1d\xd2\x53\xab\x7d\x58\x8c\x1b\xee\x71\x27\x0f\x28\xc4\xe1\x91\x2c\x6c\x65\x02\x32\x13\xe2\x68\xbf\x5a\x79\x62\xeb\xd5\x4e\x1e\x3d\x05\x7b\x1e\xc9\x6c\xc4\x7a\x87\x85\x8f\x51\x57\x0d\x3f\xb2\x75\xd8\x7e\x7c\xef\x0d\x7a\xed\x6c\x66\x0e\x57\x5b\xc6\x9f\x68\xed\xa5\xbc\x8d\x32\xd6\x2d\x7d\xdf\x75\x73\x6e\x13\x10\x6b\x32\x71\xb5\xb3\x00\xf0\xdb\xbf\xfd\xdb\xe6\xda\xb5\x6b\x49\x80\x36\x2a\x56\x76\x83\x39\x7f\x4f\x87\x7b\x0c\xa5\x07\x69\x40\x07\x8c\x32\x60\x4d\xb7\x21\x57\x77\xeb\xd4\x6c\xf6\xb9\xe7\x9e\xb3\xe2\xea\x8a\x24\x0f\xa1\x3e\xb0\x04\xb2\xcb\xca\x2e\xdf\xbc\xb0\x7c\xe5\x1d\x0f\x26\xfb\xe3\xd6\xec\x18\x8b\x3a\xaa\x65\x04\x10\x0f\xff\x00\xc9\xa3\x1b\x87\xfe\x88\xa0\x5e\x38\x10\xc7\x75\x6f\x7a\xf4\x59\xde\xdc\x0c\xd2\x60\xc1\x02\x76\x55\xd9\xf9\xfe\x56\x73\x6b\xde\x6d\xc2\x08\x52\x13\x21\x45\x49\x16\xe7\xcc\x37\x49\xe2\x3b\xe0\xd3\x00\x68\x16\xb5\x9d\xbf\xb1\x7b\xf6\xda\x3b\x0f\x26\x2f\xcd\x56\xe6\xea\xc8\x9a\x70\x6f\x9f\x04\x6d\x62\xd8\xa7\xcf\x03\xad\x94\xfd\xe0\xe7\x79\x6f\x5a\xb3\x8c\x83\x24\x8e\xec\x07\x4f\x19\xce\x46\xf6\xe0\xde\x6c\xf5\xfa\xc1\xb4\x79\xab\x31\xdd\xa1\xab\x1e\xc8\xa9\x3e\xb1\xa5\xb1\x59\x70\x9b\x80\xfb\x24\x82\x7e\xde\x84\xeb\xe8\xc5\xf9\xc1\x0f\x7e\x20\x27\x49\xcf\x28\x37\x70\x09\xdd\x19\x2e\xd3\x71\x6b\xa6\x86\x31\xf6\x40\x84\x05\xd2\xce\xa1\x49\x81\xe5\x7b\xa8\x39\x10\x52\xc1\xcd\xa5\x88\x92\xd3\x3c\xd6\x74\xa2\xdc\x0b\xaf\x07\xb2\xd8\x1e\xd7\x2c\x6a\x7b\xbc\x1c\xd9\x05\xc4\x60\x86\x42\xe2\xae\x4f\xf4\xc4\x2f\x2d\xd6\x32\x9f\x5c\x98\x5c\x0c\xfd\x9f\x8c\xaf\x3f\xbe\x4e\x3b\x04\x8a\xb4\xd3\x0b\xb2\x2c\x4f\xd6\x21\x57\xcf\x4d\x5d\x4f\x95\x92\x29\x7b\x28\xcf\x92\xc8\xdc\xf7\x89\xec\x9f\x4d\xa5\x24\x83\x62\xf8\x0d\xcb\x0e\x71\x04\x80\x37\x10\xb7\xe5\xc2\xa9\x88\xb6\x1e\xb4\xef\xda\xb9\xdb\xfe\xf7\xd1\xc2\x3e\x41\x96\x67\x31\xa9\x10\x5d\x00\x29\x15\xe3\x24\x96\x7b\xf0\xf1\x52\x8a\x1e\xe7\x8f\xb4\xe2\xf2\xbc\x2b\x92\x09\x27\xe3\x26\x79\x26\xf9\x65\x28\x1b\xc5\xc4\x51\x15\x4f\xfd\x2a\x91\x07\x4e\xca\xa6\x8c\xe5\x2c\x8b\x22\x1e\x4a\x26\xbf\x23\xbc\xe9\x2a\x05\xc7\xa9\xb8\xf8\x62\xd1\x62\x9e\xd5\x4b\x7e\x74\xfb\xa0\xfd\xc4\xee\x5b\xcd\xa3\x48\xb7\x47\xcb\xd3\x4f\x83\x53\x2a\x0f\xef\xd6\xd1\xc9\xa1\xb9\xa3\xe3\x0e\xc6\x7b\xf6\xd9\x67\x25\x68\x91\x73\x4e\xbf\x7b\x1b\x29\xff\x9c\xfc\x02\xa9\x2d\xcf\x40\x3e\xda\x06\x2b\x57\xbf\x6c\xdd\xfd\x22\xfd\xc7\x7f\xfc\xc7\x59\xd0\x82\x74\x81\x6f\x00\x34\x96\xb0\xbc\xb3\xb3\x7c\xe3\xc1\xa4\x79\xbd\x35\xbc\xcc\xae\x90\xd9\xb2\xdc\xaf\xfa\xfe\x39\x89\x89\x1f\x8b\x6a\xe4\x26\x00\x40\x16\x96\xe4\xa1\xa4\x8b\x4c\x80\x25\x34\xf3\xb1\x3d\xb8\x73\x61\xf9\x4a\x6b\xfa\x3b\x47\x55\x9b\x25\x50\x29\xfd\x86\x3c\x88\xa8\x69\x2b\x2c\x0e\xb6\x9a\xbb\xb7\xf6\xce\x7e\x78\x3a\xb2\xfb\x72\xcd\x49\x6a\xea\x19\x11\xe1\xa9\xdb\x18\x3c\xb9\xf7\x98\x8d\x4d\x28\xf4\x27\xf7\x63\x13\x80\x96\xb8\x79\x30\x6d\x5e\xbf\x7d\x61\xf9\xca\xd1\xb4\x3d\x00\x15\xfb\xc3\xbb\xf0\xfe\xe6\x9b\x6f\x66\xfd\x33\x6e\x08\xe0\x1b\x20\x4a\x5c\x86\x38\xc9\xdc\xc2\x91\xe3\xd6\xb3\x47\x3f\x43\x4c\x16\xcf\x35\x10\x60\x46\x2d\x8d\x47\x0d\xcd\x0c\xd3\x58\x22\x41\x41\x9f\xa0\xf3\x8a\xa2\x72\x05\x37\x15\xca\x95\x88\x32\x44\xe9\xa5\x8b\x84\x32\x32\xb2\xec\x06\x7c\xe4\xf8\xfa\x79\x20\x88\xab\x5b\xc2\x72\x59\xf1\x7c\x59\xd9\x85\x44\x99\xf2\xfc\x16\x44\x04\xaa\xc5\x65\x25\xe9\x88\xec\x33\x19\x0f\x85\xb8\x32\x1f\x4d\x7c\x86\x08\xee\x90\x24\x43\xbe\xeb\x31\x50\xf2\x93\xe9\x74\x99\x43\x6d\x1d\x4a\xef\xf3\x18\x4a\x2f\xe3\x0c\x01\x90\x75\x52\x16\x99\x4f\xc9\x0d\x7d\x07\x00\xc0\xde\xde\x1e\x0e\x0e\x0e\xb4\x88\x5f\x2e\x20\xde\x20\xb7\x26\x60\x3a\x99\xdb\xcb\x3b\xfb\xed\xcf\x4d\x4e\xec\x53\xa6\xe5\x2b\x51\x5f\xd2\x51\xdf\x28\x3a\xe7\xc0\x91\x4a\x89\x85\x1c\xa3\x51\x1f\x1d\x44\x98\x41\x05\x13\xa4\x91\xa9\x20\xdc\x25\x14\x93\xcf\x89\x79\xe2\xb5\x01\x99\xd5\x44\xb1\x60\x2c\xf3\xa6\x68\x4c\x08\xf8\x39\x1b\x57\x9d\x70\x79\x9b\x98\x47\x81\xe9\xf0\x99\x06\x35\x99\xa8\x63\xb0\x13\xc8\xf5\xba\x68\x2f\xe0\xec\xd9\x1c\x2c\xb2\xd8\x1d\x9f\xda\x27\x2e\xde\x69\x3e\x76\x74\xa5\xbe\xb5\xdc\x22\xcb\x08\x12\xd1\x06\x91\x2e\x85\x31\x36\xa0\x32\x02\xfa\xe3\xbe\xc4\x90\xac\x1b\x47\x09\x5d\x55\xbb\x31\x25\x10\x08\xe3\x48\xa8\xdd\xc3\xbb\xff\xcd\x70\xb3\x72\x21\x0d\x65\xb9\x31\x68\xc5\xe2\x1a\xc6\xb4\x04\x2f\xbe\xfd\xdb\xdb\xdb\x38\x39\x39\x29\xb5\x21\x38\x99\x5f\xc6\x9e\xa3\x01\xd0\x30\xb8\x21\xa2\xe6\x70\xda\x1e\xde\xb9\xb0\x7c\xf1\xd2\xe9\xe8\xd1\xdd\x96\xa6\x04\x32\x9c\x19\xbd\x69\xfe\xee\x17\xe2\x57\xad\x03\x5a\x32\xa0\x2f\x18\xf5\xd2\x04\x50\x5a\x86\xd4\x78\x46\x46\x37\x14\x82\xa6\xe2\xc5\xc1\x56\x73\xeb\xcd\x0b\xcb\x37\x41\x58\x42\x6d\xc0\x80\xf8\x96\xea\x1b\x5a\x3f\xb6\xbc\xf4\x4b\xa8\x8a\x1a\x22\x5a\x02\x58\x32\x73\xb3\xac\xed\xfc\xd5\xbd\xc5\x4f\xde\x71\x30\x79\x71\xb6\xaa\xae\x54\xd6\x1d\x81\xc0\x94\x2e\x59\x7a\x6d\x14\x7d\x10\x1e\x55\xe7\xf5\xe9\x43\x2f\x50\xb7\x8a\x8a\x00\x00\x20\x00\x49\x44\x41\x54\x69\xda\x21\xa2\x1c\xed\x7d\x3a\xb2\xfb\xb7\x77\x97\x2f\xbe\x75\x61\xf5\xda\xa2\xb6\x73\xa0\xeb\x0f\xd7\x9e\xe4\x18\x10\xad\x2e\xfa\xbb\xbf\xfb\xbb\xf3\x30\xb4\xa1\x1f\xdd\x6f\x32\x5f\x72\x0b\xdd\xa0\x54\x45\xf8\x27\x00\x2e\x40\xd1\xbf\x0b\xdf\x93\x4f\x3e\xa9\x8d\xdb\x00\x20\x99\x7c\x40\x27\xbe\xac\x2c\xd5\xa3\xd6\x4c\x47\xdd\x8e\xa2\xba\x27\x12\x64\xc8\x05\xde\x67\xd4\x13\xc3\x39\x7a\x1c\x74\xa2\x1a\x23\xca\x2c\x3a\xeb\x68\x75\x46\xae\x64\x64\xbd\x2e\xae\xa3\xc4\x3d\xb1\x96\xdf\xcd\x21\x78\x51\xb4\x86\x97\xcb\xda\xce\x57\xa6\x3f\x90\x85\x48\x30\xc9\xe3\x1c\x06\x80\x5a\x62\xa0\xd3\x6c\x1a\x9e\xfb\x83\x48\xab\xd3\xe4\xea\x31\x54\x46\x29\x7d\xae\x3c\x1d\x96\x2b\xab\xe4\x97\x4b\x3f\x04\x86\x74\x39\xb9\xe7\xd2\x7b\xae\x9e\xa5\x34\xc9\xf3\xc1\xc1\x41\xb2\x88\x79\xfd\x2e\x04\x17\xec\x54\x44\xd3\x7a\xc5\xb3\xd9\x41\xfb\xe8\xf6\x41\xfb\x54\xbd\xe2\xf7\x10\xc3\x04\xf0\x40\x29\xf7\x97\x5a\xf7\x53\x9f\x40\x39\x4e\x94\x05\xf2\x4f\x08\x95\x47\x38\x0e\x04\xb1\xd4\x75\x4b\x6c\xe1\x33\x83\x78\xf7\x80\x3e\x08\x61\xdc\x16\x6c\x0f\x88\x48\x1c\xd1\xef\xe7\x2e\x75\x44\xb7\x8b\x1f\xa5\x2b\x1e\x84\xf5\x19\x13\x88\xb8\x6e\xe7\x14\x8b\x55\xc6\xb7\x01\x14\xe2\xf8\x86\x33\xfb\x83\x29\xc5\xc9\xdb\x2e\x3d\x01\xc6\x34\xb8\x3a\x3d\xb2\x1f\xdf\x7b\x7d\xf5\x98\x69\x30\x23\x71\x97\x91\xff\x2e\x48\x69\x14\x06\x5c\x09\xdc\x4b\x3f\x1d\xb7\x28\x7d\x79\xe6\x99\x67\x8c\xdf\x26\x2f\x24\x23\x12\xa4\x18\x51\xd7\xe4\xf2\x4d\x00\x63\xea\x76\x4c\xc5\x6b\x22\xdc\x05\x93\x48\x25\x4b\xc1\x8f\xe2\xb5\x12\x5a\xea\x94\x80\x22\x2f\x85\x79\xfc\xf1\xc7\x73\xed\xee\xb5\x43\x00\x3d\x7d\x52\x78\xd8\xac\xe0\x16\xea\xe6\xac\xb6\xf3\x5b\x7b\x67\x3f\xde\x9f\xad\x5e\x5a\x56\x3c\xf7\xa0\x45\x4b\xb6\x7b\xd2\x3e\x2d\x03\x10\x36\x18\x32\x38\x8c\x00\x35\x3f\x92\xa1\x04\x41\xc9\x75\x3c\xc4\xb8\x96\xd0\x9c\x8c\xdb\xbb\xb7\x77\xcf\x5e\x70\xf6\x2d\xfe\x1e\xba\xc4\x20\xd5\xfd\x86\x3e\xf1\x76\x2d\x62\xcd\xd2\xeb\x82\x07\x74\x4b\x22\x5a\xb4\x06\x8b\xfb\xb3\xe6\xee\x4b\x97\x17\xdf\x3d\x9a\xb4\xb7\x2d\xc1\x26\x7c\x83\x40\x10\x89\x34\x46\xaa\x6b\x15\x3f\xd2\x8f\xdd\x97\x9e\xc6\x10\x31\xf3\xc5\x5c\x97\x40\xae\x31\xbc\xbc\xb7\xbd\x7a\xe9\xb5\x8b\x67\x2f\x1e\x4f\x9a\x03\x06\x2f\x99\xbb\x3f\xd1\x1f\x5e\x1d\xdb\x5b\x2f\x9e\x7c\xf2\xc9\x12\x23\x8d\x8c\xff\x20\x93\xa8\x27\xad\xe6\x7e\x87\x44\xe6\xc5\xc5\x4e\xee\xdd\x16\x7e\xa1\xac\x51\x4b\xf5\xb4\x31\xdb\x75\x6b\x02\xda\x76\x94\xa6\x8b\x4c\x91\xc0\x01\x08\x84\xcc\x03\x14\x86\xef\x68\x8e\x46\x47\x1a\x68\x80\x13\x8e\x2d\x47\x8a\x58\x94\x21\x39\xc3\x08\x84\xa2\x8b\x3a\xf8\x48\x1a\x5b\xc3\xcb\x65\xc5\xf3\xc6\xed\x63\x77\x7f\xe1\x9e\x22\xd7\xee\x04\x75\x02\xc0\x67\x3e\xf3\x99\x1e\xb1\x74\x4e\x4b\x33\xa4\xbf\x7e\xce\x49\x10\x7a\x80\xb2\x90\xd6\x3b\x09\x00\x86\x08\x93\x96\x52\x0c\x8d\x8b\x52\xbd\xb5\x5f\x49\xca\xb1\x6e\x40\xcb\xf7\x52\xfd\x86\xd2\xf4\x08\xf5\x06\xe9\x86\x5c\x92\xd7\x2f\xfe\xe2\x2f\x1a\x2d\x6d\x11\x63\xbf\xf6\x76\x2d\x60\x1e\x4f\x0f\xed\xd5\x9d\xfd\xf6\xe7\xc7\xa7\xfc\x04\xb5\xbc\x0b\x20\x21\x3e\xd2\xf8\x95\xd9\x49\x22\xa2\xc5\x6b\x00\xf9\xc1\xe9\x2d\xa9\x62\x06\xc9\x30\x0f\x7c\x82\xa4\x53\x73\x9c\x7e\x92\xb9\x3c\xa4\x3d\x49\x87\xab\x3c\xb1\xf4\x75\xe1\x70\xd1\x9d\x07\x50\x21\xbe\x4f\x1e\x08\xab\x5f\xa4\x3a\x5b\x17\xaf\xa5\xf2\x71\xa2\x04\x29\x56\x22\x59\x6c\x9c\xd4\x85\xc2\x56\x6c\x2f\x85\x91\x67\x71\xf8\x33\x99\xd8\x23\xaf\x71\xbd\xe4\xc7\x76\xef\x36\xbf\x3c\x3d\x69\x2f\x13\xc3\x9f\xeb\x32\xa6\xee\xf0\xbf\xf0\x0d\xbd\x7d\x9e\x97\x1e\xd7\x75\x2d\xc7\x48\x6e\x6e\x0e\xcd\x55\xff\xae\xe9\x6a\x00\x06\x0a\xd4\x02\x48\xd4\x3e\x01\x60\xb8\xed\xdc\x63\x22\x1a\x1b\x8b\xd9\xa4\x35\xb3\xe9\xca\xec\xcc\x96\x66\x77\x67\x59\xed\x6d\x9f\x55\x7b\x3b\xcb\x7a\x6f\xfb\xcc\xec\xcd\x96\x66\x77\x6b\x69\x76\xa7\x2b\xb3\x33\x6e\x68\xc7\x58\x4c\xc1\x09\x90\xd1\x20\xa8\xa7\x62\x72\xef\xb8\x71\xe3\x46\xae\x9d\x49\x3f\xfc\xf9\x9f\xff\x79\x78\xf6\x8b\xb7\xa7\x7b\x48\x17\xe9\x06\xc0\x92\x09\x8b\x3b\x3b\xab\x3b\xb7\xf6\xce\xbe\x7f\x34\x6d\x6e\x5b\x72\x3b\xbc\x4a\x44\x37\x04\x92\x1a\xca\xa5\x85\xb8\x8b\x1b\x04\x97\x90\x63\x3f\x22\xf4\xbc\x85\x8b\x8c\xcd\x58\x56\x7c\x7c\x77\x7b\xf5\xd2\xad\x8b\x67\x3f\x6e\x0c\xc2\x5d\x74\xea\xcf\x2a\xa0\x12\xc0\x9b\x94\x3a\xf8\xfe\xf0\xc0\x47\x00\xa0\x25\x80\x45\x63\x78\xfe\xe3\x2b\xf3\x1f\xbc\x7a\xe9\xf4\x5b\xa7\x23\x7b\xc0\x80\x0d\x73\xa0\x87\xf4\x55\xeb\xfd\xbc\x91\x60\x84\x63\x9f\x65\xe9\x45\x9a\x3c\x7d\x27\x39\x03\x01\x4b\x6c\x1f\x4c\x9b\x5b\x2f\x5f\x5a\x7c\xf7\xcd\x0b\xcb\xd7\xce\x6a\x3e\x06\xb0\x20\xa2\xa5\xb0\xd7\xe9\x31\x77\xbe\xdd\x37\x6f\xde\xb4\x8b\xc5\xc2\x67\x5f\x5a\xa3\x4a\x6b\x5f\x6f\x7d\xa8\x33\x11\x37\x95\x08\x24\x99\x3f\xff\xfc\xf3\xfa\x03\x25\xc6\xb9\x62\x32\x98\x51\x4b\xe3\x49\x43\xb3\xda\x62\x46\x9e\xb2\x05\x0e\xb1\xbf\x05\xcb\xdb\x11\x0a\x30\x8c\x94\x25\xf5\xf8\x59\x1c\x26\xe7\xc5\x67\xe0\x20\x3a\x0e\x14\x5f\x70\x9b\x29\x77\x49\xaa\x0c\xe9\xd2\xdb\xa9\x19\xb0\x2d\xf1\xf2\xac\xb2\xf3\x65\x15\x6e\x85\xb6\x40\x24\xec\x72\x30\xfb\xdf\x2f\x7e\xf1\x8b\xe6\xcf\xfe\xec\xcf\xb4\xb4\xa0\x24\x39\x58\xe7\x3f\x44\x48\x73\x20\x26\x97\x5e\xa6\x91\xe1\x39\xff\xf3\xc4\xcd\xb5\x2f\x37\x40\x4b\x63\x6c\xa8\x7e\xd2\xaf\x04\x60\x72\x52\x99\x52\x7f\x97\xe2\xad\x6b\x47\x2f\xed\x57\xbf\xfa\x55\xfb\xc4\x13\x4f\xc8\xeb\xdc\x83\x6d\x8b\x9b\x03\x63\x00\x75\xbd\xe4\xd9\xec\x41\xfb\xe8\xd6\x51\xfb\x91\xaa\xe1\x47\x92\xf1\x1a\xc4\x20\x71\xd0\x07\x42\x98\xb2\x8c\x51\xec\xe8\x10\x43\x98\x09\xec\xdf\x7d\x18\xc7\x79\x21\xf2\xd0\xb6\x58\x31\x6f\x3f\xd8\x25\x47\xc7\xe1\x2c\x09\x7f\x58\x5d\xef\x7c\x0c\xa9\x03\x82\x07\x24\xf9\xad\x90\xfe\x2c\x99\x30\x3f\x05\xe2\x11\x58\x4a\x88\xb3\xc5\x05\x8e\x61\xde\x4b\x09\x0e\x07\xbf\xd0\x3e\xb8\x3a\x5a\xec\x4d\x4e\xec\x47\x2f\xde\x6e\xfe\xe3\x6c\xcb\x1c\xb7\x63\x2c\x41\xd4\x38\x20\xe9\x69\x97\x27\xbe\xc1\x35\x4d\xb3\x09\x0d\x1c\xa2\x99\xbd\x31\xa5\x0c\x59\x7b\xc4\x5b\x48\xe5\x3a\x30\xc1\x30\x06\x54\x1b\x8b\x9a\x98\xea\x4b\xf3\x7a\xf6\xf0\xd1\x78\x77\xf7\xac\xde\xd9\x5a\x99\x9d\x71\x6b\xa6\x55\x77\xac\x84\xb1\xc4\xcd\xb2\xb2\xf3\x55\xc5\x8b\x55\x65\x97\x47\xe3\xf6\xf8\xcd\xdd\xe5\xe1\x83\x69\x33\x6f\x0c\x37\x96\x60\xe1\x16\x1a\x01\x28\x3c\x93\x19\xea\xe8\xc2\x0c\x10\x55\x67\xe3\xf1\xd8\x2c\x97\xcb\xde\xbc\xfa\xc3\x3f\xfc\x43\xb3\xbd\xbd\xed\xd3\xc9\xf4\x81\x99\x13\x7f\x0b\x00\xd3\xb3\x91\x3d\x7e\xf5\xd2\xe2\xc7\x97\x4f\xeb\xeb\xb3\x55\x75\x79\xb6\x34\x97\xe3\x1c\x48\xe9\xaf\x97\x05\xf8\x4f\x1e\xc3\x34\x05\x57\xfe\x5e\x72\x20\x24\xed\x2c\xf2\x29\x39\x3f\x87\x5a\xc2\xf2\xc1\xb4\xb9\xfd\xda\xde\xd9\xf7\xef\x6e\xaf\xee\xa2\x53\x13\x2d\x89\x48\x1e\x7d\x91\x35\x46\x55\x5b\xc4\xa1\xe2\x48\xd5\xca\xd2\xff\x31\x61\x71\x32\xb6\x07\xff\x79\xed\xe4\x1b\xb3\x65\x7d\xf9\xfa\xc1\xf8\x23\x93\xc6\xec\x64\xb1\x06\xf5\x9b\x10\xf8\x08\x17\x16\xe6\x1c\xf5\x13\xc9\x3e\x56\x3b\xa3\x02\x8d\xf0\x42\x01\x06\x30\x1f\xb7\xfb\xaf\x5c\x5a\x7c\xeb\xc7\x0f\xcd\x7f\x70\x32\x6e\x0f\xe0\x40\x8b\xaf\xbb\x00\x2f\x09\x90\x93\xf3\xfe\xfb\xdf\xff\x7e\x6e\x6d\xca\xbd\x63\x20\xcc\x02\xe9\x76\xe8\x9c\x2b\x71\xf5\x32\x0c\x00\xec\x93\x4f\x3e\x69\x9e\x7f\xfe\xf9\x9c\x15\x71\x20\xf4\x14\xb6\x42\x53\x3d\x69\xcc\xac\xb2\x34\x95\x44\xca\x0f\xc3\x48\x93\x23\x8c\x08\x4f\x72\xc7\x84\x54\xc3\x64\xd3\x09\xae\x52\x42\x12\xf9\xd1\xd9\xfd\x93\x0c\xee\xfc\xb8\x96\x52\x39\x26\xd8\x55\xcd\x8b\x65\x6d\xe7\x8d\x61\x29\x1e\xeb\x89\x4c\xe5\xaf\x03\x2d\xb2\x4f\xe5\x73\x8e\xe8\x95\x3e\xe8\xd0\xf3\x26\xf9\x96\xd2\xe4\xfc\x4b\x00\x6a\xd3\x3c\xd6\x95\xb7\x2e\xdd\xa6\xe5\x6c\x9a\x6e\x53\xbf\x52\x5e\x83\x5c\xb7\xf8\xde\xbd\xeb\x2e\x9c\xa8\x7e\x3c\x3d\xb6\x57\x66\x87\xf6\xbf\xd5\x67\x78\x94\x98\xc7\xc9\xe8\x17\xaa\x99\xde\x38\x14\xf6\x21\x11\xd1\x8b\x79\x20\xf0\x86\x36\x05\x4b\x72\x8b\x18\x41\xf8\x09\x9b\x98\x44\x04\xcd\x0e\x4c\x44\x75\x55\x17\x2f\x4a\x48\xbb\xb2\x04\x89\x15\xf9\x32\x28\xd9\x62\xd9\x4d\x37\xcd\x08\x08\x25\x0f\xcb\x72\x22\x46\x09\xbb\x00\x7b\xed\x4d\x0a\x4b\xb1\x9c\x78\xae\x1b\xbc\x67\xfb\xa0\xbd\x31\x39\xb5\x2f\x9e\xd6\xd5\x9c\x2b\x2c\x11\x99\x37\x0b\x08\x3b\x3c\x07\x66\x9e\x79\xe6\x19\xf3\x97\x7f\xf9\x97\x38\x3a\x3a\x2a\xd1\xc0\xd2\x5c\x49\x98\x85\x9f\xfb\xb9\x9f\x33\xdf\xf9\xce\x77\x24\x30\x00\x52\xd0\x12\xa4\x72\xf2\x99\x99\xeb\x9a\xa9\xbe\x34\x1f\x4d\xdf\x7d\x7f\x7a\xe5\x6d\xc7\xa3\x77\x5d\x3c\xad\xdf\x3f\x5b\x55\xef\xab\x5b\xba\x56\x31\x5d\x36\x8c\x1d\xc0\xdf\xba\xcc\x4b\x4b\x98\x33\xf1\xdc\x12\x1f\x37\x06\xb7\x4f\x47\xf6\x27\x47\x93\xe6\xa5\x7b\xdb\xab\x5b\xaf\x5d\x3c\xbb\xf3\xd6\xce\xea\x78\x31\xb2\x72\xf1\x94\xe7\x4e\x49\x17\x6c\x33\x00\xe0\x4f\xfe\xe4\x4f\x70\xf3\xe6\xcd\x5e\xa4\x2f\x7f\xf9\xcb\x80\x03\x38\x8a\x59\x6b\x80\x70\x17\x57\xb2\x48\x03\x58\xec\x6f\xad\xee\xbe\x74\x69\xf1\xdd\x9d\xb3\xfa\xf2\x23\x0f\xc6\xd3\x51\x4b\x33\x01\x3b\x83\x93\x70\x46\x9e\xe1\xc5\xbd\x38\xca\x71\xa4\xeb\xd1\x14\xa0\xe0\x14\x73\xcc\x80\x3d\x99\x34\x77\x5f\xbd\xb4\xf8\xee\x4b\x97\x4e\x7f\xdc\x18\x5e\x10\x68\x81\x0e\x78\x85\x7e\x53\xd2\xf5\x64\x2c\xde\xbc\x79\xd3\x3a\xdb\xa5\x40\xc7\x05\xd0\xf1\xfd\x51\xfb\xfe\x70\xcf\xe3\xbb\x3b\xab\x37\xbe\x7d\xed\xf8\xdf\xc6\xcd\x85\xd9\xc3\x47\xe3\xc7\xc6\xae\x5f\x12\x3b\x37\xa4\xbc\x8b\xee\x84\x94\x79\x4f\xda\x05\xdd\xc7\x29\xd3\x94\x1e\x8f\x00\x00\xcb\x9a\x8f\x6f\xed\x9d\x7d\xeb\xbb\xd7\x8e\xbf\x7d\x34\x6d\xf7\x99\x30\x07\xb0\x60\x66\x0f\x5e\x7a\x36\x2e\x4a\x5d\xe8\xdd\x10\xc3\xba\xa9\x90\x04\xc0\xfa\xed\xd0\x9b\x48\x63\x0c\x00\x3c\xff\xfc\xf3\x61\xfb\xa7\xb2\x45\x09\xbb\x2a\xfc\x9f\x61\xaa\x2b\x4b\x63\xc3\x6e\xdb\xa7\x1b\x60\xd1\x10\x31\xed\xe8\x3e\xba\x4c\xa1\x85\xff\x80\xe1\x63\x52\xff\xa3\x46\xc3\x3e\x35\x74\x85\x5f\x87\x61\x7a\xd4\xbe\xe7\x08\x80\x25\x6e\x56\x86\x17\xab\x8a\xcf\x00\xc8\xf3\x0a\x82\x7a\x28\xd3\x57\xde\x95\x24\x26\xeb\x80\x62\x4e\x8a\xa2\xf3\x19\x4a\x23\xcb\x28\x95\x33\xe4\x72\x52\x90\x52\x9d\x75\xfd\x86\xd2\xe7\xf2\x1a\xaa\xe7\xa6\x69\x36\xad\x83\xae\x87\xf4\x93\x69\x72\xbf\x49\x7a\x79\x00\x23\xc7\x93\x59\x93\xfb\x88\xaa\x25\xef\xcc\x0e\xda\xf7\x4f\x8e\xda\x27\x4c\xcb\x57\xe3\x51\xf6\x48\xc6\xa3\xdc\x1a\x1c\x06\x34\x10\xa4\x18\x41\xda\x20\x28\x2e\x89\x09\xd0\x71\x9c\x11\x10\x91\x9e\x14\xb1\x40\x27\x7a\x56\x71\x3c\xa8\x97\x9c\xad\x5f\x0c\x3c\xc8\xf1\x31\x5c\x59\x79\xc0\x9f\xf0\xcc\xf0\xd2\x4f\x39\xcd\x92\xd9\x4c\xd1\xea\x21\x61\x84\xd2\xea\xc4\xf6\x06\x75\x56\x9c\xbb\x29\x61\x76\x4d\xb1\x98\x4d\xe6\xf6\xc9\xdd\x3b\xed\x37\x57\x53\x73\xb0\xaa\x68\x41\xd1\x50\x52\x9e\x39\x15\xbe\xeb\x73\xcf\x3d\x67\x2f\x5c\xb8\x90\x1b\x8b\xfa\x59\xfb\x25\x61\x1e\xb4\xe8\x2d\xf2\x48\x01\x4b\x50\xdd\x10\x51\x3d\x59\x99\xf1\x23\x87\xe3\xcb\x1f\x78\x6b\xf6\xd8\x43\x27\xf5\xcf\x6f\xad\xaa\xc7\x27\x8d\x79\xac\xb6\xf4\x48\x07\x56\x72\x8c\x27\xa9\x5f\x34\x3b\x67\x66\x7e\x69\x5e\xdf\x7e\xfb\xe1\xf8\xa5\xf7\xdf\xdd\xfa\xfe\xfe\xac\xf9\xcf\x9f\x5c\x3e\xfd\xee\xcb\x97\x16\xb7\xe7\x13\xab\xed\x13\x12\xa9\x93\x07\x2d\x19\x83\xe5\xec\xb3\x62\xd6\x2c\xa2\x6d\x8b\x6f\xa3\x97\xba\x8c\x5b\x83\xe3\x5b\x7b\x67\x3f\x19\x77\xe7\x79\x8d\x1f\x3e\x1c\x3f\x36\x16\x5b\x81\x73\xed\xca\xd9\xc2\x48\x00\x93\x2e\xe4\x82\x5d\xed\x99\x12\xa8\x35\x22\x05\x2d\x98\x8f\xed\xc1\xcb\x97\xce\xbe\xfd\xc2\x95\xd3\x6f\x1e\x4d\xdb\x7d\x22\x9a\xbb\x7a\x7b\xc0\xd1\xdb\x4d\xa3\xec\x3a\x7a\x4e\x4a\x67\x04\x90\xab\x11\x41\x4b\x0d\x60\xce\xc0\xf8\xd5\xbd\xb3\x97\xeb\x96\xfe\xef\x0f\x55\xdb\xcd\xdb\x0f\xc7\x8f\x4d\x57\x66\xd7\x64\xc4\x2c\xb2\x0d\x69\x7b\xd4\xbc\x51\xf1\xb5\xbf\xf4\x09\xbb\x66\xc1\x58\x8c\xec\xc1\xcb\x97\x16\xcf\xff\xc7\xf5\xa3\x7f\xdb\x9f\x35\x6f\x58\xc2\x31\x80\x39\x80\x39\x11\x2d\x90\x4a\x5c\x12\xcc\x90\x91\xe6\x9e\x0b\x9c\x0c\xa5\xab\x32\xed\xc9\xbd\x0f\xb9\x10\xef\xe9\xa7\x9f\x26\x44\xd5\x50\xe5\xf2\xa9\x88\x68\x04\x60\x44\x44\x53\x00\xd3\x0b\x67\xd5\xa5\x6b\x47\x93\xc7\x1e\x9a\x8f\x3e\x50\x5b\xda\x49\x45\x5a\x91\xf0\x84\x8f\x90\xa0\x47\x11\x4e\x82\x18\x8a\x8a\x6b\x17\x07\xe6\xf0\x19\x31\x04\x0c\xa3\x72\xa1\x8e\x6a\x0c\x2f\x0e\x66\xab\x97\xde\xb8\x78\xf6\x83\x07\xb3\xf6\x2d\x00\xa7\x44\xb4\x60\xe6\x33\x00\x67\x00\x56\xee\x63\xb6\x14\x59\x51\xde\xdd\xdd\xa5\x97\x5e\x7a\x29\xb7\xf0\xf9\x2a\xf8\x30\x39\xb7\x34\x18\xc8\x81\x68\xad\x44\x90\xcf\x7a\x6e\xe7\xfc\x8c\xfa\xd5\xf5\xca\xd1\x8b\x12\x88\xf1\x75\xb2\xea\x5d\x96\x6d\x32\xcf\x3a\x4d\xae\x9e\xba\xbe\xba\x1f\x6c\xa1\xae\xf2\x33\x5b\xf4\xdb\xea\x7f\x0d\xd2\xe1\x67\x55\x78\xae\x4f\xf1\xcb\xbf\xfc\xcb\xf4\xea\xab\xaf\xf2\x8d\x1b\x37\xfc\x1c\x30\x00\x88\x88\x2a\x27\x65\x19\x11\xd1\x84\x99\xb7\x66\x87\xf6\xe1\x8b\x77\x9a\x4f\x6c\x1d\xd9\xa7\x8d\xe5\x4b\xe4\x0d\x3b\x7a\x6b\x8e\x00\x2d\xb2\x09\xdd\x40\x75\xe0\x84\x90\x18\xa9\x40\x3d\x8a\xb4\x52\xf3\x13\xf2\xf3\x12\x15\x3f\x93\x12\x95\x0d\x00\x0d\xe2\xa3\xa1\x8b\xeb\x88\x78\x76\x52\xcc\x3f\x37\x24\x63\x3e\xbd\xdd\x0d\xa2\x3e\xe1\x0c\x98\xc4\x3a\x50\xe4\x25\x90\x95\x84\x54\xa9\xe4\x45\xf4\x07\x03\x1c\x80\x13\x40\x4c\x5b\x6c\x70\x77\x71\xa1\xba\xd5\x8c\xe9\x18\x26\x99\xa3\x61\xd1\x66\x66\xfb\xf4\xd3\x4f\xd3\x8d\x1b\x37\xe8\xab\x5f\xfd\xea\x79\x08\x6e\x6e\xfe\xe0\xd9\x67\x9f\x35\x37\x6e\xdc\x20\x3f\x2e\x5c\xbc\xca\xfd\x8d\xe4\xdf\xa8\xa1\xd9\x3b\x1e\x4c\xae\x3c\xf1\xc6\xce\xcf\x7f\xf0\xce\xec\x33\x0f\x1f\x8d\x3f\xbb\xb3\xac\x3f\x3d\x6d\xcc\xcf\xd5\x4c\x6f\x23\x60\x06\x90\xe9\x4c\x91\xdd\x7f\xee\x26\x70\x4f\xbf\xe2\xbf\x64\x08\x98\x54\x4c\x17\x47\xad\x79\xf7\xa4\x31\x8f\x6d\x2f\xab\xf7\x3f\x34\x1f\xbd\xfd\xa1\x93\xf1\xb8\xb6\xb4\x7c\x30\x6d\xce\xac\xe9\x8d\xbe\xb0\x16\xba\x05\x88\x6e\xdc\xb8\x81\xaf\x7f\xfd\xeb\xc5\x75\xe1\xeb\x5f\xff\xba\x1f\xff\xf2\xcf\x88\xe7\x0a\x00\x05\x35\x18\xa1\x6a\x0c\xe3\x74\x6c\x97\x96\x60\x67\xab\x6a\x6b\x6b\x65\x2e\x56\x4c\x95\xff\x8a\xb2\x42\x70\x9e\x7e\x48\xf8\xa1\xab\x01\x70\x0f\x9b\xbb\x74\x7d\x73\x83\x38\x5c\x25\xb3\x3b\x1f\xb5\x07\xaf\x5e\x5a\xfc\xe7\x8f\xae\x9e\x3e\xff\xe6\x85\xe5\x6b\x96\x70\x84\x4e\xca\x70\x8c\x0e\x64\x2c\xe0\x68\x3c\xba\x31\xd3\x22\xd2\x04\xeb\xfb\x02\x08\x6b\x22\x98\x99\x29\x0e\x50\x72\xfd\x20\x6d\x9c\xba\xbe\x12\x9f\xf3\x78\xda\x9e\x9e\x8e\xec\x49\x65\x41\xd3\xa6\x9a\x8d\xba\x1d\x58\xc9\x8c\x48\x67\x56\x7e\xfd\xd3\x1d\xa9\xd3\xe8\xb4\x0c\xc0\x12\xdb\xe3\x49\xfb\xd6\x4b\x0f\x2d\xbe\xf9\xcd\x77\x1c\xff\x3f\x77\xb7\x57\xa1\x1f\x98\xf9\x04\xdd\x7a\x77\x2a\xfa\x63\xe5\xfe\x5a\xa4\x52\x17\xbe\x79\xf3\xa6\xad\xeb\xda\x58\x6b\xcf\x83\x2b\x06\xdd\x26\xdc\xb3\x8e\xab\xd3\x1b\x20\xb1\x18\xce\x49\x10\x82\xb8\x9c\x88\x50\x31\xd5\xb5\xa5\x31\x81\x6a\xad\xd6\xc9\xd1\xef\x54\xfd\xe4\x89\x35\x05\x32\xe7\xe3\xa6\x1f\x53\x5e\x9a\x28\x74\xf3\xe8\x23\x34\x20\xdf\x9b\x7d\x3f\xa1\x4e\x22\x5e\x76\x7a\x64\x5e\x00\x3d\x6b\x71\xcd\x79\x80\xdc\x89\x8a\xff\xf4\x4f\xff\xa4\x39\xb2\x1c\x37\x37\xf4\x5b\x7a\xd6\x79\xe8\xe7\x75\x6e\x48\x9d\xa3\xf3\xcc\xd5\x61\xa8\x4e\xeb\xde\x4b\x69\xc2\xf8\x5a\x53\xdf\x5c\xfa\x9c\xd4\x30\xf7\x9e\xcb\x77\xd3\xbe\x08\x65\xfd\xeb\xbf\xfe\x6b\xd0\x69\x4b\x55\x91\x68\xc3\x18\xc0\xb8\x6a\x31\xdd\x3a\x6c\xaf\x4f\x4e\xec\xe3\xa6\xc5\xe5\x60\x75\x97\xdd\x41\xc1\x0e\x54\x38\x2b\x8e\x04\x18\xb8\xdf\x60\x81\xe8\xe3\xc5\xf4\xc1\x5e\xd6\x83\x8a\x10\x24\x41\x90\x7b\xa6\xae\x2c\xbf\x43\xc7\xa7\x8f\xf1\x45\xde\xc1\xa2\x96\x53\x30\xc4\xaa\x6e\xa0\x6e\x45\xf0\x15\x61\x7f\xf1\xa2\x6e\xa2\xdf\x0f\xe4\x56\x10\x27\x39\x61\xb8\x1d\x43\x0c\x24\x17\x35\x46\xb8\x92\xec\x7e\x60\x76\x26\xfb\x2e\x2e\x87\x5a\x44\xca\x42\x16\x3b\x93\x13\xfe\xf0\xec\xa0\x7d\x57\xbd\xe4\x9d\x60\x2c\x8d\xe4\x5c\x14\xa0\x3c\xf6\xd6\xd1\xc4\x10\xf6\xf1\x8f\x7f\x3c\x84\x4b\xa9\xb3\x32\x06\x0e\x3b\x84\x98\x79\x7a\x69\x5e\xef\xfd\xb7\x37\xb6\x9f\x78\xea\xd6\x85\xcf\xbd\xef\xde\xf4\x8b\x6f\x3b\x19\xfd\xee\xd6\xca\x3c\x5d\x5b\xba\x42\xa0\x29\x40\xb5\xb8\x3f\x47\x7c\x93\xee\x7b\xb0\xe8\x1f\x1f\xea\xda\x5f\x1b\xd0\xb8\x62\xba\x32\x5d\x99\x27\x2e\xcd\xeb\xff\xed\xdd\xf7\x27\x5f\xfc\xf9\xd7\xb6\xff\x8f\x8f\xbe\xbc\xfb\xf1\x2b\x47\xa3\x3d\x00\x53\xf7\x27\x2f\xa4\x0c\xbb\xaf\x98\x39\x18\x9e\x7f\xf1\x8b\x5f\x4c\xfa\xe1\xd2\xa5\x4b\x52\xda\x6e\xc5\x5f\x38\x55\x15\xdd\xd6\xdf\xa5\xe3\xd4\x17\x00\xe6\x20\xcc\x4f\x3a\xfb\x89\x1f\xfd\xe8\xea\xfc\xf9\x3b\x3b\xab\x17\x97\x95\x5d\x88\xbc\x93\x51\xed\xe7\x40\x62\xe6\xa4\x9c\xc4\xe6\x61\xa8\x91\x87\xba\x22\x5f\x37\x78\xc2\x14\x04\x70\x32\x6e\xf7\x5f\xbe\xb4\xf8\xd6\x0f\xaf\xce\x9f\xbf\x7d\xe1\xec\xe5\xc6\xf0\xa1\x03\x2d\x7e\xeb\xaf\x97\x32\x24\x3b\x8a\xdc\x33\x80\x4e\x45\xf4\xf9\xcf\x7f\xde\xf8\x67\x65\x43\x12\xe2\x0b\x35\xdd\x52\xe4\xed\xfb\xe5\x78\x59\xf1\xe1\xeb\x17\x97\x2f\x7f\xf7\xed\xf3\x6f\xbc\x70\xe5\xf4\xf9\xfd\xed\xd5\xad\xa5\xb1\xcb\xd0\x0a\x4e\xa7\x92\xfc\x4d\xda\x27\xda\x98\xb6\x5f\x3c\xc3\x4f\x53\xc6\x59\x6d\xe7\x77\x76\x56\x2f\xfd\xe0\xe1\x93\xaf\x7d\xeb\xed\xc7\xdf\xb8\xb7\xbd\xea\x24\x2d\x0e\xbc\x11\xd1\xdc\x31\xe9\xbe\xde\xfe\xfb\x7a\xd0\xef\xb3\x0d\xb4\x72\x8d\xad\xd8\xba\x79\xd6\x73\x95\x7a\xd7\xeb\x7a\xe9\x59\xfa\x31\x00\xdc\xbe\x7d\x9b\x9f\x7a\xea\x29\x8f\xb0\x01\x24\x46\x66\x23\x66\x1e\x51\xb7\x75\x6f\x6b\x6f\x31\xba\xf2\xf6\xa3\xc9\xe3\x7b\xa7\xf5\x7b\x6b\xc6\x96\x84\xc2\x39\x94\xad\x59\x5d\x19\xae\x79\xac\xf0\xee\x29\x36\x1c\x1f\x27\x10\x75\x86\x2f\x73\xeb\x81\xb8\xab\xa8\xc7\x17\xa6\x6e\x59\xf1\xd1\xdd\x9d\xd5\x8b\xb7\x77\x97\x3f\x3a\xee\x8c\x95\xa4\xc4\x65\x89\x0e\x7d\x7a\x20\xc3\x70\xc8\xf3\x53\x9f\xfa\x94\x79\xe9\xa5\x97\x72\xec\xa8\xf4\x33\xe8\x7f\x0b\xe9\xa7\xb9\x3a\x2d\x2d\x29\xc5\x5d\x97\x47\x29\x4d\xa9\x5e\x43\x79\x40\xf9\xeb\x34\xb9\xba\xea\x70\x8b\x72\xdd\x4b\x69\xe2\x2a\xde\x97\x9e\xe8\xbf\xdc\x98\x5e\xd7\xde\x5e\xb9\x1f\xfd\xe8\x47\xe9\xb5\xd7\x5e\x63\xcf\x51\x73\x3c\x21\xb7\x72\xe3\x7e\x04\x60\x02\x60\x32\x3a\xb5\x97\x2e\xde\x69\x3f\x36\x7b\x60\x3f\x56\xb5\xb8\x42\xc1\xa0\x43\xb0\x83\x40\x5a\x4d\x79\xf9\x61\x20\xda\xde\xe6\x24\x61\xe2\x04\xae\x71\x3b\x87\xdc\x73\x37\x1d\x3c\x48\x89\x93\x2d\xaa\x87\x7c\x7e\xfe\x0c\x17\x69\xd8\xab\xf2\xf6\x12\xa2\xc4\x80\xd8\x9d\x44\x1d\xc0\x92\x64\xef\x22\x18\x49\xd5\x3f\x1c\x51\x95\x34\x4a\xf1\xc0\x84\xfc\x71\xe1\x3e\x2e\x44\x3d\x38\xb4\xd1\x97\x43\x32\x7f\x12\x45\x8b\x99\xee\x4a\x33\xed\x08\xaf\x9f\xee\x56\xaf\xb5\x13\x73\x02\x42\x8b\x4e\xea\xe2\xb9\x45\x96\xb6\x0b\x37\x6e\xdc\x20\x21\x69\xc8\xd1\xc4\x9c\xe4\x8e\x6f\xdd\xba\xc5\x40\xb8\x15\x3c\x00\x21\x49\x17\xdd\xd8\x18\x93\xc5\xe4\xe1\x93\xc9\x43\x1f\xbc\x33\x7b\xfa\x7d\xf7\x66\xbf\x75\xe5\x64\xfc\xab\x5b\xab\xea\xf1\x8a\xe9\x21\x03\x1a\x51\x14\x6c\xa5\xe6\x47\x90\xcf\x1e\x9e\xc9\x37\xed\x08\x06\x54\x1b\xc6\x6c\x64\xcd\x43\x5b\x4d\x75\x7d\xe7\xac\xba\xba\xbd\xaa\xb9\x31\xf6\xe0\xc1\x56\xbb\x80\x90\x06\x3b\x29\x01\x43\x7c\xd3\x1b\x37\x6e\xc0\x18\x13\xa4\x0a\x75\x5d\xd3\x7c\x3e\x07\x00\xfe\xc6\x37\xbe\x21\xa5\x2e\x8c\x6e\x1e\xb0\x9b\x13\x44\xdd\x0b\x89\xfe\x20\x10\xcc\xaa\xb2\xed\xe9\xc8\xae\x96\xb5\x3d\xad\x2d\x99\x49\x63\x66\x23\x6b\x26\xfe\x8b\x07\x62\xa9\x86\x70\xd1\xc9\xe1\xc4\x7e\x88\xc5\x31\x49\xa2\x3d\x84\x4e\xc2\xf0\x60\xab\x79\xf3\xe5\xcb\x8b\xef\xfc\xe8\xea\xe9\x7f\xde\xde\x5d\xbe\x72\x56\xf3\x7d\x44\xd5\xc8\x89\xfb\x4d\x24\x0c\x6e\xcc\x78\x7a\x63\x89\x08\x5f\xff\xfa\xd7\xf9\xde\xbd\x7b\x74\x7c\x7c\xcc\x40\x94\xba\xa0\x1b\x57\x72\xc2\xca\x4f\x08\xf1\xec\xfb\x08\x2d\xb1\x3d\x1d\xd9\xe5\xc9\xa4\x9d\x2f\x46\x76\x0e\xa2\xa6\x62\xaa\x47\x2d\x8d\x89\xc9\x24\xca\x0a\x95\x99\xef\x3b\x3f\x5d\xb5\xd3\x7d\xd8\x54\x76\x79\x38\x69\xef\xbd\x7e\xf1\xec\x85\x1f\xbd\xed\xf4\x9b\x3f\x79\x68\xf1\xfd\x83\x59\x73\xbb\x35\x38\x04\xe1\x08\x9d\xc4\xe9\x04\xc0\xa9\xff\x23\xa2\x15\x80\x33\x66\xf6\x73\x48\xaa\xcc\x58\xa9\x17\x73\xeb\x8e\xec\x0b\xa8\xb8\x45\x27\x6d\x5c\x80\x61\x5b\x02\x64\xde\xd3\xd2\x63\x4f\x04\xf4\xad\xfc\x0c\x00\x18\x8b\xba\xb2\x18\x13\xa3\xee\x7d\x3f\x61\x63\x92\x03\x31\xb9\x77\x9f\x26\xb1\x91\x11\x06\x47\x09\x04\x51\x71\x7d\x39\x1d\x1d\x4e\xe5\x3f\x31\xff\x7e\xa1\x96\xd0\xac\x0c\x2f\x1a\xc3\xfa\x6e\xa2\x44\xdf\x2b\x77\x59\x09\x3d\xb1\xd6\xa5\xe7\xfc\x7c\x9f\x01\x7d\x09\x40\xce\x3e\x44\xe6\xa3\xe3\x96\xbe\xdb\x3a\x69\x86\x7e\xd6\xf9\xe5\xea\x51\xaa\x9b\x19\x08\xcb\xc5\xd9\xd4\x95\x6c\x53\xd6\xe5\xa3\xfb\x65\x5d\xfd\xb4\xba\x2e\xf4\xdd\xd5\xab\x57\x93\xc3\x17\x85\xf8\x37\xb1\x71\x01\x63\x3a\x99\xf3\xe5\xc9\x89\x7d\xcc\xb4\x7c\x99\x18\x26\xa1\x1e\x19\x54\x1d\xb7\x13\x87\x51\x1a\x09\x2e\x8b\x34\x21\xad\xbc\x8f\x45\x50\x6f\x0f\x28\xd4\x0a\x40\x3a\x4d\x80\x78\xdc\x01\x13\x71\x35\x40\x2a\x97\x97\x79\xb3\xc0\x5d\x5e\x72\x12\xcb\x88\xa0\x03\x29\xb5\x74\x05\x72\xd8\x01\x25\xba\x22\xe0\x94\x2e\x0f\x76\x9d\x11\xfb\x22\xb6\x37\xbe\xb0\x20\x77\xa2\xae\x81\x31\xea\xf2\x32\x0d\x5f\x99\xcc\xed\xa3\x93\xb9\xbd\xba\xdc\x32\xfb\x76\x44\xde\xd6\xa0\xf6\xf6\x2e\x42\x8c\x0f\xac\x9f\x3b\xc5\xb1\x26\x77\x96\x38\x9a\x13\x6c\x58\x5c\x99\xe3\xca\x62\xfa\xc8\x83\xc9\xb5\xf7\xdf\x9d\x3d\xfd\x8e\x83\xc9\xaf\xee\x2e\xaa\xa7\x46\x96\xae\x12\xd3\x58\x72\xca\x39\x3a\x28\x36\x65\x8a\x9e\x28\xaf\xea\x71\x81\x23\x43\x8c\xd9\xa8\xc5\xf5\xdd\xb3\x7a\x67\x74\x9f\xf6\x26\x0d\x3d\x34\xb2\xe6\xff\xfa\xc9\xe5\xd3\xd7\x6d\x57\x6b\x2f\x59\x00\x9c\xe4\x44\xdb\x8a\x00\x45\x6e\x3a\xcc\x2f\xd7\x6e\x7d\x9e\x8b\x07\x48\x06\x40\x6d\x0d\xcc\xe1\xb4\x79\xf3\xe5\xcb\xdc\x2e\x46\x76\x39\x1f\xdb\xe3\x77\x1c\x4c\x1e\xbb\x70\x56\x5d\x31\x0c\x93\xec\x5e\x0b\xe0\x18\x71\x9e\xe8\xfe\x49\xc6\xb2\xf3\x4a\x06\x58\x1c\xd6\xcb\xca\xce\xef\x6d\xaf\x5e\x7f\xe5\xd2\xe2\x87\xaf\xec\x9d\xfd\xf0\xde\xf6\xea\xb5\xb3\xda\xee\x33\x78\x0e\xc6\x5c\xd8\xb7\x48\xdb\x16\xab\xfe\x00\xc4\xf3\x6c\x6e\xdf\xbe\xdd\xf3\x53\xa7\x13\x37\x88\x36\x3f\xc6\x49\xa2\x82\x24\x4e\x02\xff\x55\xc5\xb8\x37\x5b\x35\x8b\x91\x9d\xdf\xdf\x6a\xf6\x1f\x39\x9c\xdc\x79\xfb\xe1\xf8\x5d\x97\xe6\xa3\xab\x93\x86\x76\x6b\x6b\x6a\xdf\x64\xd9\x11\xf2\x5b\x71\x26\xbc\x7b\x65\x2c\x2b\x5e\xcc\xc7\xed\xc1\xfd\xad\xe6\xce\x9b\x17\x96\xb7\xde\xd8\x3d\x7b\xe5\xee\xf6\xea\x8d\xd3\xb1\x3d\xe0\x0e\xb8\x05\xbb\x16\x44\xe0\x16\xec\x7d\xfc\x0e\xab\x5c\x7f\x64\xdc\xd0\x9a\x21\xdd\x20\x0d\x97\x36\x2e\x7e\xa0\xc9\xcf\x2d\xfd\x34\x61\x0f\x73\xe5\x5d\xef\x7a\x97\xf9\xc4\x27\x3e\x41\x17\x2e\x5c\x80\x43\x8a\x0e\xd0\x92\xd7\xe3\x8e\x1d\x67\x31\x25\xd0\xf4\xf2\xe9\xe8\xe1\xb7\x1f\x4e\x9e\xb8\x78\x36\x7a\xb7\x61\x1a\x25\x86\x44\x5e\x77\x9e\xb1\x02\xd7\x76\xb3\xf2\x1b\x04\xc6\x0d\x71\xe2\x76\xb4\x53\x19\x01\x52\xe4\x47\xd4\x5c\x80\x1a\xd7\xaa\x80\x74\x4d\x39\xab\xed\xfd\x3b\x17\x56\x2f\xbc\x79\x61\xf9\x93\xb3\x11\x1f\x3a\x0b\x6b\x8f\x40\x97\x0e\x89\x37\x44\xc4\xfe\x4f\xa0\x4f\xb9\xdc\x48\x4e\x4d\x3f\x4b\xc9\x81\xfc\x16\xb2\x9a\xfa\x03\xcb\x34\x3d\x2e\x50\xa5\xd1\xe5\x0c\xa2\xdc\x4c\x7e\x43\xfe\xfa\x39\xd7\xce\x5c\x58\x2e\xfd\x50\x1e\xb9\xbc\x36\x69\x6f\xae\xdf\x86\xca\x29\x7e\xaf\x1f\xfe\xf0\x87\x2c\xb8\x2a\x62\xe6\xca\xcd\x81\x1a\xdd\x4e\xa2\x09\x80\x89\x69\xf9\xc2\xc5\x3b\xcd\xe3\x3b\xfb\xed\x27\x47\x2b\x3c\x42\x40\x15\x86\x98\x07\x0b\x10\xa7\xca\x72\xbc\x13\x28\x05\x16\x11\x94\x53\x1c\xf4\x9d\x9f\x38\x29\x97\x5d\x82\xc8\x5d\x52\x34\x54\x15\xd2\x0a\x79\x3a\x67\x04\x3d\x62\x77\x81\xdf\x55\xc4\xf9\x34\xe9\xc2\x41\x1d\x03\x40\x70\x1c\x2e\x07\x81\x8a\x5e\xf4\xba\x39\x46\x41\x8a\xc0\x6e\xd2\xf5\xa5\x48\x5e\xf2\x12\x57\xa0\xe4\xf2\x02\xd1\x2f\xf2\xa0\xbb\xb8\xa8\x05\x53\x5f\xdf\xc2\x0a\x06\xa7\xab\x89\x79\x75\xb9\x6d\xde\x6c\x47\x74\x8a\x4e\x37\xdf\x48\x0e\xda\xeb\xe8\x99\x99\xbf\xf1\x8d\x6f\x94\xc6\xa3\xf7\xd7\x92\x44\x79\x1a\x6e\x00\xb1\x00\x2a\xa1\x7e\x99\x56\x16\x5b\xef\x78\x30\x79\xfb\x87\xde\xdc\xfe\xe4\x3b\x0f\xa6\xbf\xb9\x7b\x56\x3d\x5d\x5b\xba\x4a\xa0\xba\x6b\x92\x1b\x13\xfe\xee\x35\x81\x17\x7d\xdb\x3d\xad\x0a\x9c\xb5\x58\xcc\x25\x45\x94\x07\xbd\x49\xb2\x46\x8c\xad\xda\x9a\xcb\xdb\xcb\xfa\xe1\xd9\xca\x60\x39\xb2\xf7\x8e\x27\xed\xa9\x35\x89\xc4\xd3\x52\xb2\x6d\x0c\xac\x24\x51\xc1\xdd\xb8\x71\x83\xbc\x5d\x8c\xe8\x47\x2f\x69\xd2\x52\x07\xb8\x4e\x06\x0c\xf1\xaa\xe2\xd5\x7c\x6c\x17\x27\xe3\xf6\xa4\xa9\xec\x99\x61\xa2\xda\x52\x6d\x98\x46\x01\xde\x92\x38\x91\x59\x48\x4d\xba\x16\x22\x1a\xab\x8b\xce\x48\xd5\x35\x00\x13\xa3\xa9\x78\x79\x34\x69\xee\xbd\xb6\x77\xf6\xc2\x0b\x6f\x3b\xfd\xf6\xcb\x97\x17\x3f\xd8\xdf\x6e\xde\x58\x55\x41\xd2\x72\x4c\x44\x27\xe8\xa4\x0c\x67\x70\xb6\x2d\x0e\x64\x34\x00\x5a\xd7\x1e\x86\x90\xb6\xa0\x4f\xa7\x0d\x00\xfe\xfa\xd7\xbf\xce\x4f\x3d\xf5\x94\xaf\x87\xec\x03\x7f\xc2\x2e\x90\xa3\x49\x04\xcb\x06\xed\x59\xc5\xab\x93\x71\x7b\x72\x34\x6d\x8e\x8e\x27\xed\xe1\xe9\xd8\x9e\x9c\x8d\xec\x89\x25\x6e\x81\xa0\x2c\xa0\x30\x42\x7a\x1b\x4d\x3a\x8d\x42\x6b\xb8\x59\x56\x76\x31\x1f\xd9\xa3\x83\xad\xe6\xad\xdb\x17\x97\x2f\xbf\x7c\x79\xf1\xa3\x97\x1e\x5a\xfc\xf0\xd6\xde\xd9\x8b\xfb\xb3\xe6\x8d\xb3\x11\x1f\x30\xf8\x18\xc0\x11\x11\x9d\x30\xf3\x31\x11\xcd\x99\xd9\x1b\xe5\x9e\xa1\x5b\xe7\xbc\xd4\xc9\x8f\x95\xd6\xf7\xf5\xcd\x9b\x37\xed\xd6\xd6\x96\x69\x9a\x46\xcf\x11\x20\xd3\x3f\x03\xe1\xd0\x71\xf5\x91\xff\x25\x9b\x09\xcd\x99\x27\x9c\xf4\x2b\xaf\xbc\x62\x7f\xe3\x37\x7e\x23\xe8\xf7\xc5\xae\x22\xc9\xb9\x18\x66\x86\x01\x99\xca\x52\x5d\x5b\xaa\x3b\x89\x0b\xa0\x67\x23\xa3\x8f\x16\x25\x41\xf3\x13\x30\xc4\xa0\xcc\xa9\x8b\x10\xb2\x55\x91\x8f\x1f\xcf\x9c\x06\x65\x79\x94\xfe\xf4\x8a\xae\xa5\xee\x4a\x72\xb5\x15\x5a\x9e\xdd\x92\x95\xbc\x7c\xea\x53\x9f\x32\xff\xf4\x4f\xff\x04\xe4\xa5\x23\x40\xbf\xaf\x4b\xfe\x32\xed\xa0\xae\x3d\x13\x6f\x13\x0e\x72\x48\xea\x26\xf3\x28\xe5\x5f\x92\xe2\xe9\xb2\x74\x99\x43\xe9\xd7\xe5\x5d\xfa\xcd\xe5\x3d\x24\xa5\x19\x7a\xee\xd5\xe1\xf7\x7f\xff\xf7\xa5\x14\x26\x79\x16\x8b\xd4\xb8\x3e\xe3\xd9\xf4\xd8\x7e\xa0\x5e\xf1\x55\x30\xd7\x71\x4b\x71\xb7\xca\x38\x12\xeb\xc6\x8b\x04\xd9\x72\x2c\xa6\x20\xdf\x13\xef\xc0\x79\x93\xb7\xfb\xf0\xf3\x43\xc4\x0f\xbf\x8a\xa0\x25\xc0\xde\x3d\x04\xf2\xe1\x6b\x25\xc1\x85\x8a\xe7\x19\x0c\x66\x78\x91\x4e\xb8\xed\x39\x00\x09\x17\x8c\x98\x41\x24\xdf\x6e\x71\x0d\xa0\x48\x1c\x6e\x40\x61\x26\x87\xea\x74\x0b\xb4\x6c\x83\x60\x42\x32\x37\x56\x53\xb2\xb8\x75\x35\xa8\x56\xfc\xc8\xf4\xc4\xbe\x73\x74\x66\xbf\xbf\x9c\xd2\x01\x4c\x94\xba\x00\xc9\x91\xf8\x20\x22\x2d\x2d\x1d\x1a\x3b\x9a\xbb\x96\xbf\x1e\xc8\xd6\x60\x8c\x09\x18\x3f\x74\x32\xba\xfc\xc1\x3b\xb3\x5f\xba\x7e\x30\xf9\xad\xed\x65\xf5\x61\xc3\xb4\x4b\x80\x89\xf8\x34\x25\x42\x09\xe3\x26\xd5\x65\x05\x62\x96\xda\x01\xea\x11\x81\x00\x1c\x0d\xb0\x33\x69\xf0\xf8\xb5\xc3\x89\x69\x0d\x2f\x97\x86\xff\xf1\xf6\xee\xf2\xf5\xa6\x0a\xeb\x87\x6f\x9f\xdc\x36\x1d\xec\xba\xa4\x4a\x40\x9c\x61\xa2\xe7\x5d\xe3\xfa\xd5\xef\x32\x0a\x97\xee\xfa\x6f\x64\xc1\x58\xd4\x16\x6f\x5e\x58\x2e\xe7\xe3\xf6\xf8\x60\xab\xd9\xbf\x76\x38\x7e\xcf\xdb\x4e\xc6\x8f\xec\x2e\xea\xcb\xd3\xc6\xcc\x8c\x45\xed\x5b\xa2\xbe\x34\x92\x2e\x73\x7e\xec\x3a\xce\x82\x3b\x49\x79\xcd\xcb\xf9\xa8\x3d\xbe\x3f\x5b\xdd\xb9\x73\x61\xf5\xca\x1b\xbb\x67\xaf\xdc\xdb\x5e\xbd\x71\x3a\xb2\x07\x16\x7c\x4c\x44\xc7\x6e\x81\x96\x0b\x75\x90\xb8\x50\x7a\x26\x4b\x4f\xb2\xe2\xdc\x90\x44\x41\xbe\xfb\xb3\x84\x96\x32\xad\xd2\x56\x74\xe5\x11\xec\xb2\xb2\xcb\xfb\x33\x5e\x1c\x4f\xda\x07\x6f\xed\xac\x6e\x5f\x38\xab\xf6\xf6\xe6\xa3\x2b\x97\xe7\xf5\x95\x9d\xb3\x6a\x6f\xd2\x98\xd9\xa8\x35\xe3\x91\xa5\x71\x65\xa9\x36\xee\xf3\x59\x62\xdb\x1a\xd8\x55\x65\x97\x8b\xda\xce\x8f\x27\xed\xe1\xf1\xa4\x3d\x3c\x9a\xb4\xfb\x07\x5b\xcd\xfe\xe1\xb4\xd9\x3f\x1d\xd9\x07\x8d\xb1\x73\x78\x09\x53\x94\x36\xc9\xdf\xb0\x0d\x9a\xd2\x9d\x44\x41\xd2\x22\x4f\x87\x3f\x3d\x3d\x2d\x49\x4d\xd6\x49\x5c\x4a\xce\x02\xf1\xcc\x80\xa1\x84\xeb\xc4\xfa\x16\x48\xf6\xac\x87\x08\x42\x4d\x12\xef\xd4\xb0\x30\x6e\x2b\xf4\x98\xbc\x4a\x29\xb2\x8b\x1d\x41\xe3\xc8\x4d\x72\xe0\x18\x24\x01\xce\x70\x6e\xca\xa5\x06\x6a\xa4\xde\xfa\xcf\x50\x7e\xe4\xea\x9f\x13\x8d\x02\x80\x35\xdc\xac\x2a\xbb\x70\x97\x6e\x85\x93\x22\x25\x68\xa1\xde\x22\x03\x69\x9c\x0b\xe4\xfb\x75\x68\x01\x06\xfa\x8b\xf1\x90\xc8\xda\x64\xe2\x95\x88\xef\xba\xf7\xa1\x78\x9b\x80\xa8\x1c\x68\xc9\xd5\x65\xa8\xdc\x8d\xc4\xf3\x1b\xa6\x97\x6e\x13\xff\xd2\xb7\xc2\x5f\xfd\xd5\x5f\x85\xb1\x2f\xce\x6d\x89\x7f\xcc\x06\xa0\xf1\xf8\xd4\xee\x4e\xe6\xf6\x51\xd3\x62\x87\x98\x8c\x66\x8a\x48\x22\x03\x00\x80\xdc\xea\x2c\xd8\x68\x21\x45\xe8\x23\xf3\x3e\x20\xe8\xff\xa6\x2e\xc0\x23\x79\x78\x9c\x04\xf6\x72\xeb\x75\x14\xd9\x08\x35\x96\xcc\x36\xda\xb9\x00\x69\x69\x3e\x6e\x32\x07\xe3\xd6\xf1\x44\x2a\x24\x53\x77\x58\x24\x2e\xd2\xe9\xbc\xec\xd3\x02\x92\x22\x88\x8c\x23\x00\xa6\xc5\xde\xf8\xd4\xbe\x6b\x74\xca\x97\xcd\x0e\x6e\x5b\x13\xb6\xa4\x6a\xe0\x19\xee\x9b\x71\xfe\x83\x73\xf6\xd1\x47\x1f\x35\x2f\xbe\xf8\xa2\x1e\xeb\xc9\xd9\x2c\x70\xc6\xb8\xdb\x67\xd5\xce\x07\xde\x9a\x7d\xe4\xfa\xc1\xe4\x37\xb7\x97\xd5\x13\x0e\xb4\x24\xad\x0a\xf4\x28\x7c\xa2\x54\x1d\x5e\x62\x4b\xa5\x82\x3c\x19\x0a\xb9\xce\x08\x3f\x34\x9e\x34\xf4\xf8\xdb\x0f\x27\xbf\x71\x5a\xdb\x93\xa6\xe2\x7f\xbb\xbb\xbd\xba\x2d\xc0\x8b\x77\x09\x78\xc9\x95\xaf\x0e\x60\xf3\x4c\x9d\x07\x2e\x06\x1d\x08\xe8\xd1\x57\x07\x04\x9a\xa6\xe2\xe6\xfe\x56\xb3\x3c\x1e\xb7\x27\x77\x76\x56\x77\x1e\x3e\x5a\x5e\x7b\xf8\x78\x7c\xfd\xd2\x7c\x74\x75\x7b\x59\xed\x76\x0b\x74\x58\x9c\x03\x7d\xeb\xe1\x6e\x82\x6d\x89\x9b\xa6\xe2\xe5\x59\x6d\x17\xf3\x91\x3d\x7c\x30\x6d\xf6\xf7\xb7\x57\x77\xee\xec\x2c\x5f\xbf\xb7\xdd\xdc\x39\x1d\xb5\xf7\x2d\x75\x86\xc2\x04\xf2\xbb\x87\x7a\x5b\x7e\x21\x54\x45\x42\x3d\xa2\xfb\x20\xc7\xe8\x85\x77\x7f\x93\x36\xa2\x0a\x2d\xb4\xd9\xf5\x91\xee\x13\x1f\xe6\xcb\x5c\x32\xb0\x5c\xd6\xbc\x5c\x56\xcd\xf1\x83\x69\x73\xef\xcd\x9d\xe5\xeb\xb3\x65\xb5\xb3\xbd\xac\x76\xa6\x8d\x99\x4d\x1a\x33\x1b\xb7\x34\x1d\xb7\x66\x6c\x6c\xd7\x2f\xad\x61\xdb\x18\x2c\x16\x23\xbb\x98\x8f\xda\xe3\x93\x49\x7b\x7c\x5a\xdb\xf9\xb2\xb2\x8b\xa6\xe2\x13\x4b\x58\x80\xb0\x44\x77\x56\xcd\x1c\xdd\x01\x73\x5e\x35\x94\xa8\x88\x1c\xc8\xca\x5d\xae\xb8\x8e\x26\x6b\x66\x32\x17\xbe\x91\xcb\x9d\x9c\xbb\x69\x66\xc5\x74\x8e\x10\xe9\x8b\xbf\x0c\x00\x53\x31\x99\xba\x43\x83\x63\xb0\xe4\x2c\x80\x88\x8e\x3d\xa7\x10\x45\x9b\xfa\x12\xae\x94\x34\x6a\x70\x22\xc5\xa3\xd1\x9f\xd0\x27\xa8\x1a\xc8\x44\xbe\xb7\x3f\xa9\x62\x5c\x06\x13\x37\xad\xe1\x65\xdb\x49\x5c\x00\x84\x8b\xdb\xb2\x7a\x60\x4e\x16\xa4\xa2\x14\x03\xe8\xf7\xab\xc9\x3c\x0f\x49\x33\xb4\xdb\x44\x92\x52\x9a\x6c\x26\x13\xbe\xc9\x73\xa9\x0e\x5a\xfa\xa1\xcb\xd3\xcf\xa5\xfa\x6a\x7f\xd9\x3e\xa8\xf7\x52\xbc\x52\x9d\x4a\xf1\x4a\xd2\x31\x7f\xf0\x96\x5e\x84\x03\x87\x0d\xa0\x26\xe6\x7a\x7a\x62\xaf\xd4\x4b\xbe\xde\x1d\x39\x1f\xcf\x41\x01\xa4\xb8\x3f\x4a\x37\x3c\x7a\x88\xc6\xb8\x62\x11\x92\xef\xa4\x38\x71\xf8\x85\x4e\xa0\x8a\x20\x32\x01\x7a\x0b\xba\x53\xe9\x74\x07\xc5\x79\xd1\x7a\x9c\x41\x01\x0c\x81\x04\xd0\x12\x20\x27\xa4\x76\x8e\xf4\xfc\x12\x52\x20\xea\xca\x0b\xd2\x25\x1f\x27\xa7\x03\x66\xf1\xc2\xaa\x2e\x89\xad\x9a\xcf\x33\x3d\x36\x61\x88\xf9\x20\xc6\xb8\x5e\xf2\xd5\xd1\xc2\x5e\xad\x1a\x7e\xd1\x8e\xba\xa3\xff\x25\xe8\x14\x34\xcc\x02\x9d\xea\x47\xdd\x35\xd6\x03\x34\x2f\xbe\xf8\xa2\x55\x76\x2d\x06\x48\x6c\x5a\x6a\x30\xc6\xa3\x96\x76\xde\x75\x7f\xfa\xe8\xfb\xee\x6e\xfd\xcf\xed\xb3\xea\x49\xc3\xd8\x4d\x3e\x89\xfb\x86\x41\x0a\xe5\xfb\xd4\x83\x15\x05\x2e\x53\xac\xd6\x57\x09\x89\xee\x13\xe3\xc3\xe3\xe4\xc8\x30\x12\xa1\x9e\xae\xcc\x47\xde\x75\x30\x39\x3c\x1d\xdb\xc3\x65\x65\x17\xf7\xb7\x1a\xcb\x26\x59\x9c\xfc\xd9\x5c\xa1\x2f\x9e\x79\xe6\x19\xf3\xd5\xaf\x7e\x15\x2f\xbc\xf0\x02\x16\x8b\x85\xfd\x83\x3f\xf8\x83\x1e\xa3\xe4\xfb\x52\x00\x18\xfd\x7d\x52\xee\xdd\x49\x47\xee\x6d\xaf\xe6\x87\xd3\xe6\xde\x1b\x17\x97\xaf\xef\x9d\xd6\x97\xf7\x4e\x47\x97\x2f\x9e\x56\x57\x2e\x9c\x55\x7b\xb3\x55\xb5\x33\x6a\x68\x6c\x98\x8c\x61\xd4\x86\x3b\x95\x0b\x13\x6c\x63\xb8\x59\x55\xbc\x5c\x8c\xec\xfc\x78\xdc\x1c\x3c\xd8\x6a\xf6\xef\x6f\x35\x77\x0f\xb6\x9a\xfd\x93\x71\x7b\x78\x56\xdb\x93\x96\x82\x44\xc5\x4b\x57\xbc\x2d\x87\xb6\xe7\x58\x0a\x1b\x9d\xe4\x80\x35\xe6\xe4\x0e\xba\x1c\x83\x19\xc6\xcb\x6f\xfd\xd6\x6f\xf5\x98\x7c\xb1\x66\x34\x29\x88\x4f\xfb\x84\xba\x13\x77\x97\xe4\x4f\xac\x25\x4c\x2d\x61\xb1\x20\x7b\xbc\xa8\xed\x83\x83\xad\x66\xec\xfa\x60\x64\x18\xb5\xb3\x63\x0a\xe3\x83\x09\x8d\x35\x6c\x5b\xe2\x33\xeb\x6f\x75\xa6\xb0\xd3\x6b\x89\x78\xa8\xdc\xc2\x3f\x23\x82\x95\x85\x88\xa7\xc1\x5b\x68\xa7\xb5\xe7\xe2\x27\x07\x41\x1e\xf2\xb4\xdf\x00\xb0\x75\x21\xb0\x94\x09\x90\x66\x10\xde\xb5\xb4\x45\x3b\xff\x41\x8c\x35\x75\x6d\x69\x62\x9c\x61\x6e\xc2\x0f\xca\x89\x8a\x38\xe9\x3a\x0e\x4e\x12\x71\x84\x88\x01\xa2\x24\x3b\x82\x90\x4c\xec\x24\x2f\x5f\x21\x39\xf1\x93\xb8\x94\x10\x80\x08\x55\x12\x22\x61\x9d\xaa\xa8\xb1\x14\x0e\x9e\x93\xbf\xd2\x79\x7f\x7c\xec\x63\x1f\x33\xff\xfe\xef\xff\x9e\x43\x9b\xa5\xf7\x6c\x5f\x9f\xc3\x0d\xa1\xda\x92\x94\x63\x13\xee\x72\x93\xbc\x86\xa4\x28\xa5\xb0\xa1\x7c\x36\xe9\xa3\x4d\xeb\xb3\x2e\xbf\x1c\x18\x1a\x4c\x2f\x74\xd4\xc9\xe2\xd7\xa9\x05\xb8\xa6\x16\xe3\xc9\x89\x7d\x87\x59\xf1\x1e\x9c\x8a\x34\x80\x13\x35\xde\xa2\x34\x02\x42\xfd\xe3\x55\x2f\x52\x4d\x9a\x61\xa3\xb5\xa0\x21\xe8\x68\x04\xac\x57\xa0\x04\x6e\xe1\x8f\xf5\x11\x84\x53\x58\x87\x4a\x43\x61\x96\x93\x27\x48\x79\xf2\x75\x89\x76\x37\x5d\xfe\x32\x0f\x22\x4e\xee\x2b\x8a\xe0\xcc\x17\x16\x57\xda\x68\x33\x13\x01\x53\xa2\x26\x93\x8c\x4d\x68\x76\x0a\x88\x24\x6e\x33\x0d\xae\x8c\x16\xfc\x50\xd5\xf0\x6c\xc5\xe9\x01\x70\x92\xf1\x12\x9c\x31\x3e\xf4\xa1\x0f\x99\xef\x7d\xef\x7b\xbd\xb1\x37\x1a\x8d\xb0\x5a\xad\xac\x3e\x60\xce\x8f\x05\x97\x5f\x0d\x60\x6c\x18\xd3\xcb\xf3\xd1\x95\x9f\xbb\xbd\xfd\x6b\xbb\x8b\xfa\x97\x2a\xc6\x6e\xc9\xa0\x56\x4b\x5c\x22\x38\xcc\xd0\x26\x89\x1c\xe5\x2b\xfc\x27\x16\xe3\xc5\xff\xb8\x84\x2c\xfc\x2a\xa6\xe9\xce\x59\xfd\xd1\xf7\xdc\x9b\xee\x3f\x98\x36\x87\xa7\x23\xfb\xed\xd3\xb1\xf5\xc6\xb9\x92\xce\x25\xf3\xe4\xdb\xdf\xfe\xb6\x7d\xef\x7b\xdf\x6b\x7e\xf2\x93\x9f\xe0\x9b\xdf\xfc\x26\xbe\xf7\xbd\xef\x69\x95\x91\x45\x54\x17\xb9\xf2\x93\x3e\xb6\x40\x38\x5d\x36\x6e\x15\xee\x00\xcc\xe2\x7e\xd5\xcc\x1f\x4c\x9b\x7b\xb7\x2e\x9e\x4d\xc6\x2d\x4d\x67\xcb\x6a\xe7\xc2\x59\xb5\xb3\xb5\xaa\x66\x75\x4b\xe3\x9a\xa9\xae\x5b\xaa\x09\x40\x63\xd8\x2e\x2b\x5e\x9c\x4c\xda\xe3\x93\x71\x7b\x3c\x1f\xb7\xf3\x45\x6d\x17\x8d\xe1\xd3\x28\x5d\xc0\x92\x40\x73\xbf\x40\x7b\x09\x83\x57\x0f\x39\xff\x00\x14\x7c\x9d\x44\x3f\x00\x48\x54\x23\x6b\xb5\x13\x47\x47\x47\x3d\xda\xa2\xb4\x14\x12\xd4\x59\x51\x66\xe3\xd4\x33\xde\xb0\x79\x0a\x60\xca\xe2\x62\x4d\x26\x8c\x5b\xc0\xb4\xf0\xdb\xfa\xd9\x97\x0d\x30\xaa\x6d\x38\x00\x00\x20\x00\x49\x44\x41\x54\x44\x09\x8f\xd7\x10\x84\x4b\x2f\x21\xb6\x63\x8b\xfc\xe5\xb6\xf5\xc6\x85\x95\xee\x68\xb2\x40\xa2\x2a\x1b\x62\x68\xcf\xc3\xf4\x16\xfd\x86\x24\x2e\x25\xee\x35\x1b\x2e\x44\x60\x00\xc2\xc7\x48\x44\xe6\x44\x64\x2a\x0b\x53\xb7\x34\xae\x9c\xaa\x28\xa0\x4b\x45\x70\x23\x87\xc7\x82\xfb\x12\x62\x70\x8e\x04\x93\x13\x15\x53\xa0\xc3\x00\x52\xe6\x2d\x2e\x08\xe2\x68\x63\x38\xc3\x37\xa6\x38\xb1\x49\x2c\x0f\x9a\x60\x30\xc0\x06\xd6\x12\x2f\x5b\x42\x77\xf7\x87\xe8\x0b\xc9\x89\x88\x01\x69\x84\xcd\x4b\xee\x83\x95\xd4\x38\x5a\x2d\xa4\xe3\xe4\x54\x1c\x43\xaa\x9a\x52\x98\x8c\x93\x2b\xab\x94\x87\x8e\x2b\xeb\xac\xdb\xa1\xe3\xc8\x77\x5d\xf7\xd2\x58\x2b\xf5\x9d\x45\x3e\xef\x4d\xeb\xa0\xc3\x36\x4d\x93\xad\xbf\xe2\xdc\xbb\x9d\x23\x2d\x4f\xc7\x73\xfb\x1e\x63\xb1\x03\xb0\x51\xab\xb4\x7b\x48\x47\x6a\xb4\x7f\x89\x0b\x7f\x37\xfe\x19\xfa\x2e\xa3\xe0\xfc\xdc\xc8\xc9\x14\xc5\x9c\xe9\xf9\x83\xd2\x15\x30\xd9\xae\xe2\xd2\x09\x84\x11\x2f\x30\x24\x35\xb9\xdc\x3f\x44\xa1\x9e\x51\xbe\x92\x82\x12\x71\x09\x62\x58\x40\xa3\xc9\x0f\x25\x80\x06\xf0\x32\xd8\x94\x4b\x97\x0b\xb6\xb7\xa1\x21\x52\x75\x0a\x69\x62\x2e\x04\x42\xd5\xf2\xde\x78\xc1\xd7\xea\x25\xef\x02\x7c\x47\x7e\x33\x47\xa4\xa5\xa4\x60\x48\xa2\x68\x57\xab\x95\xfb\x66\xc9\x22\x14\xc6\x81\x07\x2d\x60\x8c\xa7\x8d\xd9\xf9\xe0\x9d\xd9\x87\x1f\x9a\x8f\x3e\x5d\x31\x2e\x13\xc4\x65\xb4\xee\xf3\x92\xfe\xbc\x3d\x5c\x43\xbd\x27\x0d\x63\xf5\xbb\x57\x3b\xe6\x20\x92\x4e\x57\x31\xed\x5e\x3c\xab\x9e\x7e\xf7\xfd\xe9\x4b\xf7\xb7\x9a\x3b\xa7\xa3\xb3\x25\x15\x76\x8e\x78\xda\x26\x4f\xd7\xf5\xe0\x2e\x63\xef\x62\xd1\x2d\xc4\x39\x55\x7a\x00\x45\xdc\xbf\xcb\x67\xec\x24\x0c\x63\x6b\x78\xbc\xac\x6c\x7d\x32\xb6\xf7\xef\xed\xac\x8c\x63\x04\x46\xae\x1d\x71\xa1\x06\x2c\x08\x2b\xee\x9e\x97\x20\xa1\x6e\x89\xc7\xd5\x27\x12\x06\x22\x92\x8b\xf7\x82\xe2\xbd\x44\xb9\x9b\x8f\xed\x26\xa7\x09\xcb\xe7\x7f\xfe\xe7\x7f\xb6\x40\xaa\x32\x52\x9f\x22\xbc\x53\xdf\x96\xc6\x83\x98\xb1\xa8\xfb\x18\xe8\x5d\xa0\x29\xa5\x86\x71\xae\xa8\xfb\x92\x10\x6d\x76\xa4\x2a\xcc\xdf\xf6\x2c\xef\x21\x92\x3b\x87\x74\x3f\x68\x89\x53\xae\xed\x83\xed\x14\xcf\xeb\x80\x4c\x70\x25\x20\x32\xb4\xf8\x15\x9d\x57\x87\xe8\x5f\xf1\x6c\xfc\xe1\x73\xc6\x7a\xae\x33\x9d\x46\x8c\xc8\x4c\xc5\xf0\xb8\xa3\x20\x9c\x43\xd5\x47\x39\xe1\xda\x16\xa6\xfe\xa4\x96\xf9\x07\x71\x3c\xe2\x6f\xca\xb2\x50\x8f\x60\x84\x7a\x75\xe5\x37\xad\xc1\xb2\x35\x7c\xc6\x14\x75\x7c\x2c\x2e\x96\xf2\x12\x26\xe7\x2c\x00\x28\x69\xcb\x3a\x15\x44\xce\x0d\x82\x47\xe5\xaf\xff\x8c\x7a\x47\xe6\x79\x48\xd2\x30\x24\xa1\xd0\x6d\xca\xb5\x43\x0f\x54\x99\x66\x93\xf1\xb6\x89\x2a\x4a\xe7\x5d\xca\xab\x54\xa7\x75\xf5\x91\xf1\xec\x1f\xfd\xd1\x1f\x79\xa0\x12\x02\x35\x68\x71\xaa\x82\x7a\x74\xc6\xb3\xf1\x82\xaf\x93\xc5\x38\x00\xe2\xe0\xc4\x20\x93\x61\xe2\xdc\x89\x34\xae\xf0\x4f\x55\x90\xf0\xa0\x81\x93\xf8\x48\x45\x0d\x92\xbd\x56\x59\xfa\x60\x4e\xc2\xe3\xbc\x50\xe2\x9c\x98\x9d\x7c\x48\xe2\x43\x4e\x2b\x15\xee\x9e\x49\xb5\x09\x71\x3a\xf6\xa4\x47\x82\x16\xa4\x85\x3a\xa0\x97\x0d\x8b\xf6\x33\x5d\xb6\xee\xd7\x62\x67\x74\x66\xaf\x8c\xce\x78\xd7\xd8\x78\xe8\x1a\xd2\x31\x90\xcc\x4f\x21\x6d\x09\xee\xe2\xc5\x8b\x59\x06\x82\xe2\x99\x3e\x72\xeb\xf3\xec\xd2\x7c\x74\xed\x9d\x0f\x26\x9f\x18\xb7\x74\x1d\x80\x89\xb5\x54\x64\x28\x69\x81\x1a\x32\xce\x33\xa1\x95\x99\x4a\x24\x6e\x28\x82\x28\xc0\xc3\xe7\x51\x63\xae\x5f\x39\x1e\x3d\x75\xed\x68\xf4\xe8\xce\xb2\xda\x41\x7f\x81\xec\xe2\x93\xfe\x26\x00\xc4\x1c\x12\x8b\x7b\xf8\x55\xdc\x7b\x7a\xf8\x5a\xb7\x9b\xe7\x18\xc0\x21\x80\x03\xf7\x27\x9f\x0f\x88\xe8\x00\x84\x7d\x4b\x38\xb0\x06\xfb\xd6\xe0\x2d\x6b\x70\xaf\x35\x78\xcb\xfd\xdd\xb3\x06\xf7\x2c\xe1\x80\x09\xfb\xa0\x90\x6e\xdf\xfd\xea\xbc\x7d\x99\x73\x74\x6a\xa3\x60\xcb\x41\xfd\xdb\x8f\x65\x5b\xce\xeb\x4a\xfd\x22\xf3\xee\xdd\xeb\x24\xea\x75\xec\xea\x2e\xff\xf6\x45\x5b\x92\x67\xd7\xde\xdc\x9f\xec\xd3\x43\x20\x6c\x7b\xf6\x07\xcc\x25\x46\xc9\x12\xe8\x00\xc9\xc1\x7b\x1a\xb4\xe4\xda\x9b\x0b\xdf\x84\xc6\x96\xde\x93\xc4\x72\xb2\x6e\xb2\x88\xae\xe3\xde\x73\x88\x1a\x04\xa0\x62\xaa\x0d\x93\x09\xdc\x97\xe0\x3c\x15\x0d\x0d\x69\xba\xa8\xa5\x70\xea\xd1\x47\x62\x1d\x67\xf8\x57\xf2\xbc\xd9\xb6\x88\x67\x26\xb6\xad\xe1\x65\x4b\xc1\xbe\x25\x69\xa3\x73\x89\x38\xd1\xab\x8a\x54\xb6\x3d\xee\x05\xfd\xc9\x91\x93\x06\x94\xe2\x03\xe5\x09\x75\x1e\xc4\x3b\x24\x19\x29\x01\x03\x1d\xb6\xe9\x24\x5f\x97\xe6\x3c\xc0\x29\x97\x77\xe9\x7d\xe8\x79\xa8\xaf\x83\xfb\x8b\xbf\xf8\x0b\x0b\x24\xdf\x5d\xaa\x4b\x3b\xf5\x00\x60\x88\x51\x8f\x4f\xec\xe5\x6a\xc5\x8f\x10\x63\x0c\xc0\xb1\xd5\x4a\x38\x42\x29\xa6\xe8\x2d\x54\x6e\x80\x76\x53\xc6\xaf\x32\xa9\x81\x66\xb8\x9b\xc8\x9d\x84\x1b\x06\xb5\xc4\x4a\x0a\x37\x05\x90\xe2\x6f\x6b\x16\x13\xa1\x87\x8b\x44\x39\x41\xe8\x43\x22\x1e\xa5\x8b\x6d\xf7\xe0\x6d\x66\x3a\x4f\x66\xff\x4b\x21\x5d\x4c\x23\x4e\xec\xf5\xcf\x2e\x8d\x14\xbe\x0a\x48\xa2\x3a\x88\xdd\xff\xe2\xce\x68\xd6\x00\x2b\xe4\x5b\x57\x4b\xbe\x32\x5a\xd8\xab\x66\xc5\x53\xee\x4e\xb1\xad\x99\xd9\x03\x0e\xef\x02\x6d\x94\xe7\xf5\x20\x43\x03\x3d\x83\xe6\x7e\xfd\x8e\xb2\x9a\xbb\x5b\xc1\xc7\x3b\xcb\x6a\xef\x43\x6f\xce\x3e\x72\xe1\xb4\xfe\x28\x31\x66\xa2\xd6\xbd\xb6\x85\x30\x66\x77\xba\xb0\x28\x07\x48\x88\x1c\x23\x8e\x89\xb0\xab\x53\xc5\xd7\x79\x6b\xec\xac\x4f\x57\xa5\xae\xbe\x4f\xbc\xf3\x60\x7a\xe3\xa1\x93\xd1\x35\xdf\x06\x08\x40\xee\xda\x9a\xeb\x9f\x30\x57\x1e\x7e\xf8\xe1\x2c\x43\xe4\x6d\x46\x90\x3b\x39\x56\x2c\xa4\x70\x0b\x2c\x33\xeb\xc5\x79\x9f\x99\xc3\x62\x5c\x78\xbe\x2b\xfd\x45\x7a\xff\x2c\xcb\x38\x06\xe0\x77\x14\x79\x15\x49\x0e\xb4\x04\x77\xfd\xfa\xf5\xd2\x78\x18\x1c\x27\x05\x3f\x79\x51\x6f\x7a\x73\x74\x27\x05\xf1\xea\x2c\xd9\x3f\x87\xae\xce\xa1\x5f\x44\x7b\x75\x9f\x49\x50\x73\xe0\xc2\x0f\x99\xd9\x03\xa0\xde\x79\x2d\x94\x1a\xe2\xea\x3b\xf9\x32\x4d\xe8\xb5\xed\xa7\xc5\x12\x83\xf8\x42\xda\xb8\xf8\x45\xb2\xa4\x93\x82\x0a\x4b\x3e\xa2\x37\x50\x04\x90\x48\x1b\xbc\x98\xd5\xeb\x8c\x89\x61\x48\x58\x81\xfb\xd3\x36\x81\x94\x08\xf9\x49\x2c\x9f\x13\x31\x6c\x26\x5e\x1a\x37\x6d\x68\x8e\x33\x91\x79\xf4\x00\x4b\x10\x59\xf7\xe3\x78\xc3\x2f\x6b\x38\x1c\xca\xe4\x75\x7d\x6a\x77\x91\xce\x15\xc8\x83\x01\xe9\x0f\x11\x7e\x1e\x55\x47\x4e\x62\xb2\x49\x9c\x75\xae\xa4\x12\x19\x42\xd1\xa5\xb2\x65\xda\x4d\x54\x66\xba\x8e\xb9\x34\xa5\x3c\x75\x9a\x92\x4a\x2b\xd7\x9e\x4d\xd2\x00\x88\xdb\x5e\x85\x61\xae\x54\x0f\x18\x30\x6a\x62\x1e\x4f\x4e\xf9\x72\xa7\x26\x82\x91\xbb\x77\x28\x59\xb5\x52\x35\x47\x12\x06\x0e\x2b\x4b\xb0\x45\x81\x48\xe3\x5c\x7c\x94\x92\x96\xc4\x27\x3e\x27\xaa\x23\xc0\x5b\x80\xca\xdd\x42\x3d\x46\x3a\x5b\x37\xc5\xa4\xa8\x5f\x84\xd3\x78\x11\x84\x30\xce\x3b\x4c\xd8\x58\x1e\xc9\x84\xa1\xfc\x58\x47\x1f\x97\x45\xb8\x42\x7f\xbe\x3c\x1f\x1f\x1c\xf3\x76\x9d\xe4\x65\xad\xa6\xc5\xae\x59\xe1\x82\x97\xb8\x70\xbc\x18\x13\xc8\x7c\xef\x92\x48\x5c\x1d\x2e\x16\x6e\x99\x46\x54\x3d\x8d\xeb\x96\xa6\x97\xe6\xa3\x6b\x57\x8f\xc6\x1f\x1b\x59\x5c\xd3\x4a\xbb\xde\xb1\x1b\xa1\x1b\x14\xd2\x0c\xad\x4d\x37\x1e\x04\x0b\x5e\x4a\x0d\x73\xb3\xdf\x51\x86\xa3\x0f\x92\x7d\xfe\x75\x8b\x2b\x7b\xa7\xa3\x27\x1e\x3e\x1a\x7f\x6f\x7f\xb6\xba\x7b\x34\x6d\xbd\xba\x25\x98\x19\x78\x5a\x57\x90\xbc\xe0\xad\xb7\xde\xca\xed\x32\xf2\xb7\x26\x7b\x95\x1c\x44\x98\x3f\x98\xcd\x2f\xde\x63\x74\x67\x81\x05\xc9\x15\x62\xbf\xf6\x6c\x92\x44\x9d\x2c\xc5\x93\x5c\x13\xfb\x0c\x61\xe3\x21\xed\x3c\xe4\x8d\xcf\xd9\xc5\xda\xb7\x39\xa3\x1e\xf1\x4e\xae\xa7\x43\xce\x02\xa9\x2a\x4d\xa9\xcf\x82\x5a\x0d\x51\x42\xe5\xdb\xef\xfb\xcc\x6f\xe1\xf7\xaa\xc8\x48\x77\x5c\x9f\x0a\x7b\x99\x44\x1d\xe7\xf3\x56\x40\x49\xda\xbf\x48\x5b\xa3\xd0\x1e\xa9\x26\x23\xa2\x92\x5d\xcb\x60\x9b\xff\x2b\x9c\xb6\x71\x19\x22\xe4\x9b\x14\x1c\x06\xa0\xe8\xb0\x14\x79\x3a\xd0\x42\xbe\x63\xbb\x58\x81\xb0\x94\x30\x5c\x7f\x3a\x24\xa7\x3b\x20\xa5\xb8\xa5\x3c\x92\xbd\x0f\x85\x7c\xd3\x80\x5c\x38\x03\xd6\x12\x37\xce\x32\x1b\x10\x83\xd9\x4f\x62\xb5\xc3\x44\xab\x8d\x24\x40\x2c\x01\x16\xf9\x5c\xfa\x16\x39\x91\x36\x44\xfc\x92\xc4\xc6\xc7\xd7\x0b\x7e\x69\xc1\xd6\x65\x6b\xbf\x4d\x06\x6c\x69\x42\x0f\xa9\x89\x72\x7d\xa3\xd3\xe8\x38\x43\xc0\x5b\xbb\x52\x9d\x86\x40\x59\x70\x5e\x55\xe4\xc3\xc5\x62\x17\x54\x45\xe8\x76\x91\x98\xd1\xc2\xbe\x8d\x2c\xcf\x00\x18\xbd\x10\xf9\x03\x6a\xfb\xab\xb4\x0b\x97\x0b\xba\xb6\x47\x51\xc6\xa7\xfa\xa4\x5b\x69\x2b\xa2\x01\x44\xb4\xb3\x91\xcb\x5c\x3c\xe8\x2c\xbf\x88\xc6\x72\x82\x21\x3b\xe4\x3e\x3e\x57\x11\x52\x73\x33\xad\x64\xc8\xcb\x4f\x8b\xde\xf1\x2b\x7a\xaf\xb5\xae\x50\x50\x7b\xe5\x2a\x2a\xd2\x49\x90\xd7\x8b\x03\x18\x8b\x59\xd5\xf0\xae\x69\x79\x4a\x64\xe4\x7d\x45\xf2\x6f\x70\x7c\x3f\x78\xf0\x40\x8e\x55\xf9\x9b\xa8\x89\xb6\x97\x66\xf7\x91\xc3\xf1\x7b\xb6\x57\xe6\xfd\x86\x69\xa6\xab\x9f\xeb\xef\xf0\xb9\x49\x7e\xa1\x14\x94\x68\x06\xab\x07\x54\xca\x24\x51\x96\x24\xbe\x9f\xcc\x9a\xea\xe9\x8a\x1e\xd9\x3b\xad\xdf\xbb\xb3\xac\xbe\x7f\x34\x6d\x8f\x29\x35\x18\xf5\x0b\xa4\x75\xe0\xa1\xd7\x57\x7e\xa7\xc9\xdf\xfe\xed\xdf\xe2\xce\x9d\x3b\x3d\x9b\x17\x69\x34\x8a\x74\x4e\xfa\x77\x79\x93\xb2\xb4\xe3\x90\xa0\xa5\x37\x3f\x33\x36\x39\x01\xb8\x50\xdf\xd0\xb4\x11\x71\xe4\x6f\xb2\x58\xfb\xbc\x07\xd4\x23\xb9\x35\x74\x70\xfc\xc8\x93\x75\x05\x23\x0c\xea\x6f\xc3\xd7\x02\x86\x46\xb4\x5d\x9e\x82\x2f\xff\x64\x5f\x20\x93\x97\x6c\xab\x07\x68\xc9\xaf\xf8\x4b\xda\xf8\x9d\xef\x7c\xa7\xd4\xa4\x12\xb3\xb9\x49\xfc\x21\xbf\x24\x53\xf9\x3b\x54\xb0\x5e\x48\x7a\x9d\x83\xf4\xa3\x25\x20\x46\xa8\x8a\x3a\x89\x4b\x22\x02\xa1\x30\xd3\xbc\x64\x83\xc5\x73\xe7\x38\x91\x60\xe8\x73\x5d\x08\x11\xf8\x68\x35\x51\x4c\x97\x6e\xa8\xce\x81\xa1\x1c\x70\x62\x91\x87\x0b\xb7\x4c\x68\x98\x92\x8f\x2c\x8d\xa0\x92\x67\xa0\x1b\xe8\xce\xc6\x45\x2f\x96\x7a\x70\xc8\x49\x2d\xbf\x4f\x6e\x10\x95\xde\xa5\xcb\x81\x1e\x1d\x37\xf7\x9b\x23\xc6\xc5\x41\x5c\xc8\x73\x08\x40\xe4\xe2\xe5\xea\x9f\x73\xa5\x34\x43\xe9\x73\xf5\xd9\x64\x42\x95\xfa\x24\xa8\x8a\x80\x70\x23\x7a\x72\x52\x6a\xf7\xc7\x06\x8c\xba\x3a\xe3\xcb\x64\x51\x07\xf5\x87\x1b\xdc\xde\xa0\x54\xaa\x66\x92\x91\xe6\xa6\x86\xdc\xb6\xca\x6a\xe5\x8a\x61\x4e\x6a\x19\xd4\x50\x4e\xb2\x40\x8c\x70\x02\x2b\x62\xb9\x3e\x4d\x02\x74\xa4\x54\x27\x8c\x79\x16\xe5\xc4\x78\xdd\xb4\xf5\x75\xa7\x38\x61\x1d\xe0\xe0\x50\x98\x58\x80\xc3\xa5\x89\xb1\x93\x25\x8e\x8b\xed\x27\xf7\xec\x66\x2c\xc5\xba\xc7\x3a\x39\x7f\x97\x1f\x3b\x15\x10\x73\x07\xde\x64\x9e\x21\xef\x10\x17\x5e\x05\x33\xad\x1a\xde\x35\x0d\xa6\x50\xdb\xa1\x91\x71\x7a\xd7\x90\xf7\x53\x2a\x22\xe3\x9e\xc3\x42\xcb\xcc\xf5\xa4\x31\xbb\x97\xe7\xa3\x77\x8f\x5a\x73\x35\xc8\x7c\x0a\x9c\x91\x7f\x48\x04\x50\xbe\xbf\x32\x49\x12\x50\xe3\xfb\x93\x93\x6e\x2e\x17\x03\x38\xb0\x1a\xe9\x9f\x04\x42\x23\x6b\x2e\x5f\x38\xab\xde\x75\x61\x51\x5f\xa9\x2c\x8d\x3d\xb8\x13\xd2\x0e\xb8\x77\x30\x33\x9e\x7d\xf6\x59\xf3\xf4\xd3\x4f\xf7\xfa\xef\xce\x9d\x3b\xf6\xfa\xf5\xeb\xc1\x80\x57\x48\xa7\x35\xb0\xf0\xea\x11\x7f\x86\x4a\xd8\xae\x8c\x8c\x9a\x24\x63\xf3\xe1\xd5\x1f\x5e\xf5\x73\x2c\x9e\xf5\x56\x67\x6d\x90\xda\x38\x15\x56\x62\xc7\xe1\x7f\x6f\xde\xbc\xa9\x0d\x72\x87\x18\xaf\x75\x71\x00\x00\xd3\xe9\xd4\xf8\xbc\xa5\x21\xad\x28\xbf\x11\xcf\x3d\xc3\x59\xdf\x47\xae\xbf\xfc\xef\x7c\x83\x3f\x1f\x3f\x67\x98\x9b\xa8\xc8\xfc\xa6\x13\xff\xcd\x6e\xde\xbc\x69\xbf\xf5\xad\x6f\x95\x9a\x54\x6a\x6f\x0e\x2b\x48\xff\x21\x86\x34\x71\xfa\xe4\x5c\x9d\xa8\xb4\xf8\x64\x39\xf2\x44\x95\x13\x27\x30\x20\x44\x79\xee\xbf\x6e\x62\x7b\x4c\x2f\x88\x72\xc8\x0b\x42\x84\xea\x25\x32\x20\x35\xd9\x52\x17\xe2\x53\x4c\xdf\x4d\x7e\x7f\x16\x8c\x4f\x43\x69\xfc\xf0\x2b\xb9\x57\xb7\x48\xf8\xd8\x02\x58\x31\x01\x96\xd8\x32\xd8\x46\x50\x04\xa9\x2a\xb2\xba\x2f\x9e\x7d\xf6\x59\xf3\xcd\x6f\x7e\xd3\x1b\xe8\xca\xbe\x09\xe9\x0b\xef\x43\xd2\x10\xfd\x9d\x4a\x61\x39\xc9\x82\x1e\x44\xa5\xb4\xba\x2e\x43\x75\x2b\xf9\x69\x37\x54\x56\x49\x12\x55\xca\xaf\xd4\x2f\xeb\xda\x34\x54\x9f\x12\xc7\x10\x9e\x3f\xf5\xa9\x4f\x99\xf7\xbd\xef\x7d\x00\x22\xa8\x15\xa0\x05\x40\xb0\x71\xa9\x4d\xcb\xe3\x7a\xc5\x7b\x80\x3b\x02\x20\x0e\xce\x54\xed\x03\x29\x9d\x13\xd2\x17\x4e\xe3\xa5\x8b\x9d\x5f\xc9\xd5\x45\x8a\x2c\x9e\xd3\x98\x00\xcb\x63\xf8\x21\x26\x4b\x5a\xb7\x30\xe6\x3d\x62\x08\x80\x27\x73\x48\x9c\xac\x92\x53\x6b\xc5\x4b\x1d\x63\x78\x7f\xa1\xf6\x40\x4e\xb5\xad\x20\x61\x60\xd5\xae\x70\x82\xae\x10\xb3\xb3\xaa\x93\x8f\xef\x4f\xac\x97\xd7\x15\x90\xc5\xb4\x5a\x61\xa7\x6a\x78\x0a\xa6\x9a\x11\x4e\x72\xcd\x82\x17\x31\xaf\xad\xf2\x33\xe8\xe6\xbd\x16\xd9\x77\xa7\x26\x33\x8d\xb7\x97\xd5\x95\x0b\x8b\xfa\x3d\x95\xa5\x60\xdb\x92\x75\xd4\x7b\xe8\xc9\xac\x82\x1f\xa5\x42\xb3\x44\xe2\x22\xe8\x60\xee\xb7\x0f\x88\xf2\xe5\x19\x8b\xd9\xf6\x59\xf5\xc8\xc5\xd3\xea\xda\x64\x45\x2f\xb5\x13\xf2\x87\xf5\x35\xa2\x9d\x1e\x84\x00\x00\xbe\xf6\xb5\xaf\x65\x99\x96\x5b\xb7\x6e\x85\x85\xaf\xb0\xab\xc6\xc7\xf7\x7d\xe9\x55\x17\x89\x3a\x44\xfd\x01\xe9\xbc\x93\x52\x8b\x44\x72\x20\x9f\x85\x7a\x5f\xaa\x46\x02\x90\x92\xaa\x21\x05\x56\x74\x5d\xd7\xb9\x21\x06\x0e\x8b\xc5\xc2\x02\x40\x5d\xd7\x46\x4a\x5f\x84\x94\xc4\x88\x7a\x27\xb4\x4a\x48\x66\x02\xd3\xa4\xd4\x4d\xa1\x1f\x72\x75\xe2\x74\x6b\x77\xf2\x2c\xe3\x4a\x06\xdc\x7b\x1e\x1d\x1d\x0d\x31\xb0\x43\xcf\x25\xa9\xf8\x60\x3f\x49\x57\x8b\xe7\x75\xa2\xad\xc1\x70\x05\x54\x12\xdd\x9a\xca\xc3\x10\x77\xaa\xa2\x04\x88\x08\xdd\x7e\xf0\x42\xe4\x1c\x24\x53\x97\x2b\x9b\x12\x5d\xbd\x48\x10\x63\xf5\x44\xa1\x94\xd4\x8f\x42\x15\x7c\x7d\x54\x75\xa4\xeb\x06\x3e\x05\xb0\x92\xd5\xed\x6a\x9b\x9f\x0c\x68\x29\x4d\xda\xa1\xc5\x1b\x99\x30\x2d\x15\x2b\xe5\x3f\xe4\x5f\x5a\xdc\x73\xe0\x28\x07\x84\x64\xdc\x5c\xbe\x43\x03\x71\x08\xcc\x6d\x02\x8a\x86\x08\x60\x0e\xb9\xe7\x24\x4f\xb9\xfe\x2c\xa5\xc1\x07\x3e\xf0\x81\x6c\x9e\x9e\x90\x04\x11\xae\x65\x63\x5a\x8c\xab\x86\xf7\x9c\x9a\xb4\x73\x72\x70\x07\xab\xc8\x4e\x5a\x42\x3a\x0e\xa9\x78\x1e\xab\x38\x69\x8d\x5f\xa6\xc3\x72\x2d\x11\xbc\x88\x9f\x4e\x30\x71\x40\x5b\x1a\x29\xba\x88\xda\xd3\x18\xba\x3e\xbd\xe4\x94\xf1\x4c\x67\x53\x90\xf8\x04\x10\x54\x9e\x6d\x3d\x06\x25\x01\x2f\x11\xd9\x79\x20\xd6\xcf\xce\xf7\x89\x07\x47\x31\x2d\x31\xea\xaa\xe1\x59\xd5\xf0\x8c\x98\x6b\xa6\x9e\xea\x41\x8e\xf7\x64\x5c\xbc\xf7\xbd\xef\x35\x9f\xfe\xf4\xa7\x5d\x9d\xc2\x02\x02\x91\x2e\xa8\x34\xa6\x2b\x33\xdb\x9b\xd7\x57\xa7\x2b\x73\xcd\x30\xa6\xa5\xd6\x6a\x70\x91\xeb\x99\x3e\xe0\x48\x99\xb5\xa0\x45\x13\x3d\x84\xcc\x6f\xaf\xdc\xe2\x10\xa0\x7a\xd2\x98\x2b\xbb\x8b\xfa\x9d\xb3\x55\xf5\xad\xf9\xc4\x1e\x22\x55\xd7\x48\x35\x51\x69\xee\xf4\xe6\xe7\xd1\xd1\x11\xbe\xfc\xe5\x2f\xe7\xb6\x4b\x7b\xb7\x04\x12\x9b\x0d\x6f\xdb\x51\x02\x2d\x40\x5c\xe4\xa5\x4d\x87\xff\x4d\x9e\x95\x4a\x44\x4a\x7e\xe0\xda\x04\x65\xc7\x51\x72\x25\xc6\x70\x13\x50\x13\x9c\xbb\xac\xd2\x00\x71\x9b\xb5\x02\x77\x9a\xce\xcb\xad\xfa\xf2\x37\x79\xce\x81\xed\xc2\x73\xe2\x77\x8e\xf6\x9f\xd7\x6d\xda\x9f\xa5\xf7\xb5\x44\x7d\x5d\xe6\xc1\xe9\x85\x5b\xda\x79\x68\x47\x80\x09\xc4\x50\x6e\x15\x70\xf4\xa5\x27\xde\xf4\xaa\x24\xf6\xe1\x1c\x68\xbe\x2f\x9b\x55\x7c\x7d\x76\xa4\x3f\xbf\x21\x8a\x8f\x5d\x49\x3e\xef\xcc\xa4\x2d\x72\x44\xaa\x8e\x42\xd2\x12\xeb\xd3\xdf\x0a\x2e\x5d\x0e\x18\x6c\x22\x72\x94\xef\x7a\xe0\xe5\xc4\x70\x9a\x6b\x4c\x06\x7d\x26\xae\x74\x25\x89\x4c\xae\x4e\x25\x37\x04\x84\x4b\xf1\x37\x49\x53\x9a\x80\xba\xbd\x25\x00\x98\x4b\x3b\x94\xbf\x26\x18\x25\x97\x1a\xe6\x3a\xc2\x6e\x5a\x9e\x92\xc5\x2c\xa6\xe5\x1e\x28\xd0\x2b\x8c\x97\x16\x86\xb9\xa1\x41\x88\x07\x1c\x44\x3d\x35\x4a\x70\xbd\x15\xdf\xe7\x11\xf3\xea\x8e\x02\x20\x51\xbe\x28\x53\x26\xcd\xe5\x49\xbd\xd0\xf0\x2e\x7d\xbc\xea\x46\xab\x87\x08\x7e\x5a\x47\x15\x55\x5a\x20\xf7\xb2\xef\xa6\x6b\xa9\xa1\x91\x7a\x30\x29\x4a\x22\x16\xf3\x34\x3e\x8c\xb1\x3c\x35\x2d\x4f\x89\x51\x0b\x69\x0b\x50\x58\x08\xbc\x7b\xf7\xbb\xdf\x1d\x38\x50\xc5\xe5\xca\xbf\x1a\x40\xbd\xb5\xaa\x76\xf6\x16\xf5\xdb\xc6\x2d\x5d\x26\xbf\xa3\x52\x37\x17\xc9\x10\x48\xfd\x38\x13\x59\xb8\x1c\x28\x19\xa2\x5f\x62\x84\x0d\xc6\xf5\xfe\x23\x4b\xbb\xb3\x55\x75\x75\x6b\x65\x76\xd0\xb7\x35\x09\x52\x27\x4f\xeb\x94\xb1\x72\x76\xde\x7c\xf9\xcb\x5f\xd6\xd2\x8c\x1e\xb8\x10\x7f\xde\xae\x46\x6f\x13\x4e\x4e\xb7\x55\xbf\x5e\x0d\xa2\x8f\xed\xcf\xa9\x43\x1a\x55\x36\x9e\x7b\xee\x39\xad\x16\x2a\xb9\x12\xd3\x94\x73\x43\x74\xb6\xe7\x94\x6a\x4a\xf7\x49\xb6\x8f\xd4\xb3\x57\x7d\x35\x2a\x9e\x07\x6d\xb9\x6d\xde\x43\xed\x2f\xcd\x89\x4d\x70\xc3\xa6\xf1\xd7\xf6\xb9\x9c\xa0\xeb\x16\xb2\x92\x7f\x70\x4e\x2c\x07\xf9\xa7\xc4\xe8\x61\x57\x11\xf9\x7c\x94\x41\xa2\xa4\xdf\x1d\x1d\xea\x1f\x25\x1e\x4e\x0e\xcd\x31\x7c\x2c\xf3\x20\x35\x91\xa5\x15\x3e\x89\x7f\xf3\xf9\x48\xbc\x91\x3c\x3b\x69\x0b\x8b\x0e\x96\x86\xb8\xb9\xbe\xc8\x1c\x15\xee\xdd\xd0\x42\x9d\x03\x2d\x9b\x02\x11\x3d\xa8\x73\xf9\xe4\xe2\x96\xea\xb5\x49\x3d\xf5\x04\x28\x81\xb2\x1c\x40\x29\x2d\x16\xb9\xbc\x91\x89\x9b\xcb\x3b\x97\xc7\x3a\xe9\x54\x8e\xc8\x6a\x8e\x07\xcf\x3d\xf7\x9c\xd4\x47\x67\xaa\xd1\xc5\x27\xc0\x98\x16\x35\x31\x4f\xbb\xb1\x26\x00\x6d\x40\xde\x88\xe3\x8d\x29\xa8\x59\x58\x4c\x8a\x0e\x98\xa4\x8b\x31\x13\xbb\xf9\xe1\x6d\x58\x10\x6c\x44\x92\xbc\x5d\x40\x37\x9d\x62\x3c\x20\x62\x99\x60\xc7\x02\x72\x71\x39\x96\x47\x9d\x94\x22\xa6\x75\x40\x23\xb0\xf4\x11\x08\x78\x35\x57\xb8\xec\x91\xdd\xdc\xe8\x4d\x6c\x84\xfa\x90\x97\xba\x70\x0a\x90\x7a\x60\x46\x3a\x57\x7e\xb0\x5b\x71\x89\xe2\xbd\x67\x21\x93\x28\xd8\xf2\x82\xd8\x50\x4e\xe0\x94\x6a\xb2\x18\x3b\x89\x98\xb4\x53\xe9\x17\x2b\x08\xc1\x63\x8f\x3d\x96\xec\x2a\x53\x69\x03\x70\x61\xe6\xba\xb6\x34\x9b\xae\xcc\x9e\x61\x9a\x75\xd5\x92\x4c\x94\xef\x1a\x39\x36\x14\x98\x90\x86\x7b\xc9\xb7\xee\x83\xbb\x68\xd3\xe3\xbf\x6a\xd2\x82\x3e\x9e\xe3\x6c\x50\xe2\x8c\xa5\xd9\xb4\x31\x97\xa7\x2b\xb3\x4b\x8c\x60\xe7\xa2\xfe\x86\xe6\xc2\xe0\xfa\x71\xef\xde\xbd\x2c\x80\x71\x0c\x61\x58\x8c\x29\xee\xf8\x91\x47\xcf\x2f\x35\x40\xf1\x00\x87\xdc\xe1\x69\x48\x81\x4a\xa3\xf2\x0d\x36\x1c\xbe\xdc\xbb\x77\xef\x02\x00\x3e\xfc\xe1\x0f\x6f\x04\x62\x33\xae\x24\x11\xd2\xae\xb4\x2e\x24\x69\x7f\xf4\xa3\x1f\x69\xc9\x47\x11\xc0\x08\xa0\x92\x18\x22\x4b\x00\x23\x6c\x66\xf4\x33\x6e\xde\xbc\x69\x4f\x4f\x4f\x37\xa9\xef\x26\x0c\xe4\x3a\x86\x57\x33\x9b\x43\x65\x86\x78\x39\x1b\x97\x9c\xd8\x2b\x97\x49\xd1\x65\xb6\x75\xa1\x67\xe3\x22\x99\x4e\x05\xfb\x23\x33\xea\xe5\x26\xfa\xb7\x8b\x25\x61\x89\x66\x60\x3b\xbf\xf4\x7e\xa3\x94\x10\x0c\xd5\x1f\x01\x24\x25\xb4\x59\x54\x98\xc9\x81\x97\x14\xac\xf4\xd4\x43\x3e\x4c\xd8\xb8\x00\xe5\x85\xd5\x3b\x0d\x2c\xa4\x9f\x74\x7a\xd1\xd5\x7e\x5a\x04\xab\xe3\x6f\xf2\x9e\x03\x4b\xba\xee\xa5\xdf\x21\xa0\x91\x6b\xf3\x90\x1b\xaa\x9b\xae\x63\x09\x9c\x00\xfd\xbe\x2d\xe5\x07\xe4\xbf\x0d\x88\xc8\xfc\xe9\x9f\xfe\x29\x80\xac\x34\xcd\x8f\xf5\x30\x71\x89\xb9\x26\x4b\x75\x22\x41\x48\xc6\x53\xf7\x9b\x6e\x08\x92\x76\x24\x2e\x91\xba\x70\x31\x8c\x77\x39\x60\x5d\xbe\xe4\x16\xed\xe8\xef\x4f\xaa\xf5\x63\x95\x93\x19\xe4\x77\x1b\x25\xf6\x20\xee\x34\xe9\xae\xc8\x34\x2e\x7b\x69\x25\x3c\xf8\x88\x65\x44\x30\x12\x57\xc2\x70\x59\x64\xa8\x93\x9f\x27\xfd\xe6\x85\x73\xab\x7d\x87\x24\x75\x11\x3b\xf5\x00\x27\xb1\xf5\x6a\xa2\x98\x49\x6f\x7a\x87\x76\xc0\x8b\x79\x3c\xb6\x31\xd4\x01\x97\xdc\x76\xd2\x1e\x51\x25\xa2\x60\xa0\x2b\x76\x0c\x1a\x41\x03\x24\xc1\x0e\xf9\x55\x16\xd3\xda\xd2\x8c\xc2\x75\x0f\x24\xf2\x0c\x4f\xba\xd6\xc1\x25\xd7\x26\x24\xf6\x40\x29\xe3\x97\xee\x52\x52\xf4\xd1\xa7\x2d\x71\x7d\xa2\xdf\xe4\x10\x05\x03\x06\xa8\xeb\x96\x76\x26\xad\xd9\x31\x96\x6a\x6b\xe2\x39\x2e\xbe\x8f\x04\xbd\x33\x00\xec\x27\x3e\xf1\x09\xf3\x2f\xff\xf2\x2f\x43\xb4\x2e\xbc\x7f\xe5\x2b\x5f\xb1\x40\xef\xb2\xde\xc0\x1c\x38\x5b\x8c\x70\x02\x39\xa5\x3b\x6e\x7a\xeb\x0d\x90\x5c\x62\x28\xeb\x66\x45\xfc\x5e\xfa\x9b\x37\x6f\xda\xcf\x7c\xe6\x33\xe6\xef\xff\xfe\xef\x2d\x00\x7c\xf7\xbb\xdf\xcd\xd1\x62\xe9\x4a\x61\x9b\x2c\xf0\xb9\x34\x39\x9a\x8e\x7f\xfc\xc7\x7f\x0c\xfd\x23\xeb\x97\xb3\x13\xd2\x6b\x8f\xf4\x2f\x3d\x6b\xc9\xca\x0b\x2f\xbc\x30\x50\xcd\xb5\x6e\xd3\xf6\xe6\xc2\x87\xd6\xa4\x10\x57\xda\xb8\x6c\xe2\x72\x04\x1f\x40\x0a\x56\xd4\x02\x2e\x8f\x1d\x36\x4e\xe2\x02\xea\x08\xba\x98\x48\x29\xd0\xe8\x5c\x47\x7c\x03\x91\x12\xd3\x2a\x89\xe7\x8d\x0d\x45\x7c\x6d\x5c\xab\x49\x42\x6e\xed\x88\x79\x89\x8f\x0a\x81\xab\x52\x50\x64\x59\xf4\x83\x47\xec\xde\xe6\xc5\xf7\x83\xec\x1b\xb1\xab\x28\x37\x81\xbd\x2b\x2d\xc6\x3a\x5c\x3e\x6f\x32\xb1\xb2\x13\x22\x53\x4e\x49\xe2\xa0\x11\xf4\xd0\xe2\x5e\x9a\xec\x39\x70\x93\xab\x63\x2e\xbe\xae\x43\x89\x20\xe6\x00\x9f\xf7\x2f\xc5\x2b\x49\x65\xb2\x75\x63\x66\xfb\xdc\x73\xcf\x79\x03\x3a\xef\x17\xea\x22\x88\xb7\x01\xbb\x85\x91\xd9\x71\xf4\x51\xbc\xd2\x83\xd4\xb9\x05\x37\x63\xa8\xdb\x33\x62\x10\x71\xc3\x29\xd0\x72\x05\xf3\xab\x56\xb2\x1a\x49\x90\xe0\x1d\xc5\x4a\x78\x80\x13\xc4\x3d\x10\x79\x89\xb9\xe8\xcb\x0c\x9c\x08\x45\x80\x10\x70\x84\x07\x2a\x24\x38\x00\xcd\x9d\x73\x58\x58\xe3\x96\xed\x08\x56\x92\x2c\x5c\xd9\x24\xda\x18\xb2\x22\x41\x8b\x9c\x28\x83\x54\xbb\xbb\xf8\x9d\xa7\x03\x3f\x63\x62\x4c\xc4\xf9\x52\x39\x06\x21\x8c\x29\x2f\x3d\xf5\xd2\x96\xcc\xa2\xa9\x81\x4f\x6d\x98\xc6\xb5\xa5\x19\x65\x68\xae\xfc\x8c\x3d\x7a\x14\xea\x1b\xdb\x97\x4b\x9b\x30\x58\x3a\x1f\x45\x04\xfb\x34\x4f\x60\x62\x51\x8c\x34\xde\x66\xc0\x54\x8c\x69\xdd\xd2\xd4\x70\x3c\x3f\x45\xb6\x57\x83\x09\x05\x5a\x80\x61\x9a\x11\xfc\xf6\xf7\xf7\xf1\x95\xaf\x7c\xc5\xfe\xee\xef\xfe\xae\xf9\x9b\xbf\xf9\x1b\x2b\xe6\x59\xf6\x02\x5b\xe5\x67\x33\x7e\xde\x7e\x25\x71\xcc\xf9\xb3\x58\x3c\x28\xc8\xd4\x3b\xf7\xbe\x96\x91\x57\x6e\xb0\xed\x28\xd3\xb5\x6c\xfd\x72\xaa\xac\x67\x9f\x7d\xd6\xc8\x31\x2a\xed\x65\x36\xb5\x57\xf9\xea\x57\xbf\xba\x09\xa3\xfb\xb3\xb8\x92\xf4\x65\x23\x86\x56\x2f\x46\x9a\x60\xe7\x16\xab\x5c\x9a\x04\xac\x28\xa4\xdb\x3b\x65\x8f\x3c\x52\xd7\x83\xcb\x13\xa4\xc4\x53\xfa\x71\x12\x2f\x8d\x13\xb7\x44\xcb\xdc\x4a\x3c\x4c\x81\x0e\x38\xee\x4d\x6f\x8b\x16\x22\x5c\x8e\xd2\x16\x50\xb4\x3c\xf7\xaa\xa1\x52\x5f\x64\x8e\xbd\x86\x78\x97\x7f\x28\xfc\xea\xf0\xdc\xb3\x96\x74\xe4\xf2\xcc\x22\x58\xf1\x2e\xf3\xc8\x85\x97\xf2\xd7\x4e\xa7\xd5\x83\x7e\x53\x8e\x24\x17\xf6\xd3\x10\x92\xa1\x7a\x97\xf2\x1b\x6c\xab\xb3\xe3\xd2\x5c\x7a\xcf\x91\x05\xdc\x89\xb9\x1d\x67\x0a\xe4\x39\x5f\x88\x91\x46\x69\xbc\x00\x90\xfc\xbf\x72\x70\x53\xfa\xc7\x41\x0a\x11\xc4\x1d\xf0\x8b\x74\x8c\x2f\xf2\x25\x04\x55\x8e\xd0\x1a\x88\xfc\xb9\x9f\x7f\xd7\x01\x01\x5c\x74\xf9\x71\xf0\xf6\x65\x78\xbc\x14\x92\x24\x15\xee\x02\x82\xf4\x86\xc4\x49\xba\x12\xab\xf9\xb9\xd4\xeb\x83\x18\xdf\x17\xda\xe1\x1d\x21\x11\x92\x2b\xb2\x57\x59\x01\x42\x0d\xc5\x8e\x99\xe2\x9a\xdc\x99\x53\xdc\x9d\x9c\x8b\x9c\x93\xfe\x72\x11\x70\xe3\xc0\xaa\x78\x0e\xbc\xb2\x31\x4c\xe3\xca\x9a\x29\x81\xea\xde\xa1\x0b\x4a\x10\x07\xf1\x2b\xb7\xa2\xa7\xfd\xe8\x7a\x92\x55\x7c\xe6\xe4\xdd\xc7\x0d\x60\x12\x0e\xf0\x89\xf7\x12\x60\x16\x18\x13\x00\x0c\x59\xaa\x2b\xa6\xa9\x89\xe7\xa7\x40\xfc\x26\x1b\x34\x32\x9b\x32\xe4\x73\x69\x1e\x03\x88\xd2\x97\xbf\xf9\x9b\xbf\xb1\x5f\xf8\xc2\x17\x8c\xb7\xf3\x68\xdb\x16\x6a\x2b\xb5\x05\xa2\xaa\x43\xfa\x65\xfe\x42\x1d\x7d\x7e\x12\xb4\x6c\x6d\x6d\xe5\xe6\x6e\x76\x3e\x9f\x23\x7c\xd3\x78\x9a\x36\x97\xf2\xd0\xc0\x18\x99\xdf\x64\x5c\xca\xe7\xf9\x7c\x1e\x32\xfb\xc2\x17\xbe\x60\x76\x76\x76\x7a\x69\x55\xde\xa5\x35\xa0\x54\xbf\xdc\x73\x29\xce\x3a\xff\x5c\xdd\xc2\xbb\x56\x15\xad\xe3\x5a\x73\x71\x35\x42\x0c\x4e\x89\x0e\x45\x40\xca\x25\x78\x3f\x49\x38\xd3\x89\xe7\xdf\xa9\x10\x2e\x63\x44\xa2\x9b\xcb\xa3\xf4\xeb\xe3\x00\x19\xb4\x0e\xb1\x9d\x5a\x10\xcf\x1e\xbc\xc9\x48\x9d\xfc\xfb\x33\xcf\x3c\x63\xd4\xd5\xe7\x39\xe9\x02\x90\x0e\x9a\x21\xce\xbf\x04\x44\x4a\xd2\x97\x21\x29\x85\xf6\x5b\x27\xd1\x00\x86\x07\xb0\xae\xe7\x3a\x89\x90\xcc\x4f\xd7\x61\xd3\x3a\x9d\xb7\xcd\x43\xcf\xb2\xde\xb9\xba\x01\x08\xdf\xd8\xef\xa8\x00\x10\xc6\x40\xca\x71\xcb\x43\x18\xd9\x8d\x21\x39\x48\xc5\x60\x94\x2a\xc9\xfe\xa1\x6c\x62\x94\x87\x34\x42\xb2\xe2\x32\x21\xaf\x3a\x81\x28\x07\x62\x5c\x67\xd8\xfa\xa8\x2a\x8a\x8b\xa3\x0c\x4d\xde\x64\x25\x43\x3b\x38\x4a\x69\x12\xd6\xdd\x9f\x25\x93\xdb\xa5\xc7\x08\x12\x9a\x18\x5d\x95\x98\x9e\x9e\x1b\x05\x4e\xbe\xac\x54\x92\x13\xa5\x31\xae\x4e\xa9\x8e\x37\x86\x87\x3c\x09\xe8\xce\x95\x0a\xdf\x4b\xcd\xff\x64\x9e\x96\x6c\x38\x74\x1a\x3f\x06\x98\xd9\x18\x90\x31\x16\xb5\x71\x76\x34\x94\x13\x6f\x14\x5d\xda\x21\xaa\xde\x7d\x49\x89\x56\x0f\x49\x3f\x01\xe0\x7a\xe5\x2a\xc2\xca\xee\xbb\x84\xc3\x78\x63\x90\xec\x27\xcf\xb4\x6a\xc9\x53\x56\x0a\x92\x79\x2e\xc5\x09\xee\x4b\x5f\xfa\x52\xf0\xff\xb3\x3f\xfb\x33\x0b\xc4\xad\xd4\xff\x05\xbb\x5d\xc2\x7c\x3e\x3d\x3d\xcd\xe5\xb5\x2e\xff\x4d\xcb\x3f\x4f\xbc\x12\xb0\xdb\x64\x3d\x1e\xa2\xb3\xf8\xd2\x97\xbe\x24\x9f\xcf\xf5\x1d\x36\x70\xa5\xfa\x6d\x22\x4d\x1a\x6a\x6f\x96\xa9\x2c\x21\x20\x49\xa8\x4b\x48\xaa\x27\x56\x0d\xea\x20\xb1\x78\xab\xb0\xc4\x25\x80\x41\xcc\xa5\x14\xe8\x43\xd9\xa5\x71\xef\x80\x39\x0d\x5a\xc2\x99\x58\x99\xb2\x7a\xbf\x82\x8d\xc9\x95\x2d\xd3\xab\x3c\x7b\xe8\x73\x48\xa7\x98\x11\x49\x66\x39\x02\xf5\x5e\x92\x54\x0c\xa1\xe0\x4d\x07\xe4\xa6\x60\x54\x3a\x2d\xd1\xc9\x95\x51\x92\x56\x94\xdc\xba\x34\x83\x03\x78\x83\xfa\x94\xde\x87\x9e\x87\xfa\x3a\x38\xcf\x61\xae\x1b\xe7\x6c\x08\xf0\x97\x71\x4a\x16\x39\xac\xfb\x8a\x6d\x8e\x32\x85\xd4\xf9\x34\x61\x1d\xce\x40\x01\xf6\xe0\x45\xe4\x4d\xdd\x6f\x5e\x88\x20\xf2\x70\x71\xc8\xe3\x80\x50\x89\x7e\x7d\x38\x00\x03\x0f\x76\x3c\xd2\xea\x17\x12\x0c\x79\xb5\xd4\x40\x18\xdf\xb2\x7c\x62\x99\x36\x06\x66\xf0\x56\xcc\xc3\x13\x11\x59\x0e\x28\x8d\xa3\x8a\x08\x52\x0c\x82\x65\x43\x0d\x67\x00\x8b\xdf\x1d\x19\xcb\x8b\xcf\xea\xde\x22\x1f\x2e\x25\x0e\xdd\xf5\x01\x04\x63\x0d\x60\x0d\x1a\x10\x2c\x4b\x02\xc6\xf1\x53\xe6\x68\x8f\xa4\x57\x1e\xa7\xca\x40\x9f\x26\xd9\x31\xe9\xe2\xa9\x62\x8a\x2e\x84\x89\xe6\x6b\x3a\xc9\x00\x5a\xc3\x68\x88\xad\x8d\xed\xf4\xe0\x0c\x50\x92\x96\x01\x89\xcb\x7f\x89\xff\xcd\x9b\x37\x01\x00\xef\x7d\xef\x7b\x83\x9f\xfc\x1e\x03\x77\x4a\xc9\xe7\x12\xd3\x5d\x92\x44\x9c\xe7\x79\x9d\x5b\xb7\xf6\xae\x2b\x27\x57\x47\xcd\x7c\xe5\xca\xc9\x95\xbb\x49\x99\x39\xb7\x49\xdc\x52\xde\xe7\x01\x48\xbd\xbc\x37\x11\x61\xe5\x16\x4f\x19\x66\x7f\xf1\x17\x7f\xd1\x94\x26\xb7\x76\x8e\x50\x04\x09\x06\x90\x4e\xd8\x20\xd9\x10\xef\x91\x1e\x79\xaa\x2a\xf2\x63\x9d\x07\x4b\xfa\x95\xc4\x01\xfa\xe5\x74\x9b\x38\x28\xa1\x97\x39\x06\x48\x4a\x57\x08\x80\xe9\x38\xa7\x62\xff\xe5\xfa\xc3\x5d\xb2\x58\x12\xf7\x95\x44\x63\x39\xb7\x6e\x92\x0d\xa5\x59\x47\x14\x4c\xe6\x2f\x27\xfd\xd9\x74\x92\xf6\x00\x6e\xa6\xcc\xa1\xe7\xf3\xa4\x29\xf5\x63\x69\xd2\x0f\xe5\x5d\xf4\xcf\x71\x98\x45\x47\x00\x57\xb0\x36\xdc\x22\x4e\x90\xab\x48\xc4\x2a\xd2\x93\xd2\x30\x40\xa4\x61\x25\xd1\x48\x23\xc9\x94\x0a\xce\x17\xed\x24\xe2\xd8\xef\xe2\x26\x20\x42\x4a\x37\x64\x39\x94\xfa\x78\xf6\x5f\xe0\x9c\xb4\x39\x04\x10\xd8\x61\x1d\x16\xd2\xa3\x6e\x7e\x84\x43\x28\xc5\x89\xb7\xb1\x04\x0e\x71\x52\xda\xc2\xf9\x36\x09\x29\x41\xaf\xb9\x6e\x45\x8f\x17\x49\x73\x07\x5a\x0c\x6c\x07\x0a\x59\x82\x15\x13\x93\xa5\x8d\xf2\x12\x54\xed\xaf\xd5\xe2\x3e\x1f\xdb\x5d\xcc\xda\x30\xb8\x93\x06\xf9\x7e\x12\x1c\x14\x27\x7d\x92\xfe\xfa\xf8\xb9\x11\xd7\xb5\x35\xbd\xb7\xc8\xf7\xb9\xef\xcc\xcc\x27\x4f\xd2\x73\x2e\x20\xf5\xb2\x96\xd0\x34\x95\x6d\x98\xf4\xfd\x58\x1e\x20\xa6\xd7\x9b\xa8\x0b\x17\x4b\x0b\x6d\x8e\xde\x40\xc4\x95\xe9\xf4\xc2\x6c\x5e\x79\xe5\x95\xa0\xe6\x91\xcc\xa1\x94\x2e\xa8\x72\x72\x75\xd1\xfe\x5a\xd2\x5b\xa2\x29\xfa\x5d\xc7\xd7\x71\xcf\x4b\x03\x2d\xf2\x79\xc9\x75\x59\xd3\x64\x5d\xd7\x21\x26\x57\xc6\x5b\x07\x68\x74\x9a\x5c\x9f\xe5\xda\x21\xe3\x97\xca\x2b\xf5\x4b\x91\x56\x6b\x43\xb1\xdc\xe0\x28\x75\x52\xe2\x27\x55\x23\x1b\x10\x74\x0b\xc0\x7a\x0e\xc2\x63\x11\x4e\xe9\x24\x82\xe8\x1c\x03\x92\x10\xc9\x25\xb0\x20\xdd\x39\xe2\x2e\xf2\xf7\x04\x51\x2a\xd3\x25\xc3\xeb\x18\xd7\xc8\xb9\xc6\x14\x40\x38\x40\xaf\xec\x72\x13\x5b\x1c\x40\xe7\xfb\x60\xdd\xb3\x7f\x37\x99\x38\x72\x00\x6f\xe2\xd6\x49\x3f\x36\x0d\x2f\xc5\xd1\x75\x1c\x8a\xbb\x2e\xcf\xff\x8a\x34\x3f\x6b\xde\x45\x7f\x7d\x66\x8f\xf3\x2b\x8e\xfb\x8e\xa3\x47\xe3\x07\x71\xb7\x5e\xb9\x7f\xb3\x8b\x91\x5f\x6d\xe2\xc0\x75\xd0\x03\x01\xf8\x10\xe2\x20\x85\x97\x76\xa4\x79\xc4\x34\xee\x3d\xec\x54\xf2\xcf\x21\x23\x78\x03\x5b\x1f\x1e\x6a\x95\x70\x06\xbe\x9c\xb4\xc6\xdd\x1c\x8e\xf9\xf8\xf6\xc9\x9d\x30\xb2\x2e\xc9\x2d\x63\x3e\xad\xe3\x50\x92\x56\xb0\x2f\x52\xaa\x8b\xe2\x95\x07\x94\xf4\x45\x64\x72\x64\xd7\xc8\x4f\x12\xeb\x29\x9a\x66\x08\xfe\xfa\x0e\x46\x0f\x8c\x6a\xb5\x51\x70\xcf\x3d\xf7\x9c\xdc\xfd\x12\xe2\xcb\x71\x20\x9f\x5b\xc3\xcd\xb2\xb2\x0b\xa6\x38\x0e\x42\x17\xbb\x76\x45\x5a\x23\x7a\x38\x43\xc7\x12\xc6\x4e\xd0\x28\x52\x7d\x11\xc1\x4b\xec\x88\x5e\xfe\x2c\x7c\x92\x3a\xf9\xce\xef\xbe\x4a\x4b\x68\x56\x95\x5d\x9c\xd5\xbc\xb0\x05\xc2\xa7\xd5\xe4\x02\x48\xe4\xc0\x47\xee\x5d\xbb\xd2\x7a\x13\x9e\xdb\xb6\x45\x6e\xeb\xae\x52\xfd\xe4\xd6\x2e\xa8\xdf\x21\x1a\xbb\xae\x6e\xb9\xf8\xb9\x72\x74\x7c\x1d\x96\x03\x15\x43\xfd\x55\x7a\x2e\xd5\x23\x97\xf7\x50\x3b\x4b\x6d\xcb\x95\x3b\xd4\xde\x75\x71\x36\xed\xe3\x5e\xc5\x72\xc8\xb8\xf4\x61\x7a\xa0\xc5\x59\x20\x6f\xc8\x81\x32\x98\xc2\x8e\x9c\x14\x78\xe8\xe4\x3d\xb4\x92\xcb\x3f\x65\x5f\x35\xa7\x91\xa4\x52\xb4\x58\xb2\x66\xac\xf3\x51\x79\x6b\xee\xcd\x49\x5b\x92\x0e\x1d\x92\x34\x0d\xb8\x75\x28\x1e\xc8\x7f\xc0\xd2\xf7\xf9\xff\xca\xe9\xba\x9e\x47\xf4\xf7\xff\x17\xf7\x5f\xd6\x5f\x43\x63\x9f\x0d\x59\x26\x2c\x55\x8a\xe4\x27\x65\xb5\xbb\x41\x99\xaa\x05\xc4\x82\x0b\x3f\x5e\xe5\xca\x2c\x65\x0c\xf1\x9d\x59\xac\x46\x94\x86\xa6\x6f\xfe\x9e\x1f\x95\x07\xc5\x49\x95\x00\x78\x25\x01\x4a\x24\x2d\x9c\x42\x26\x59\x7d\xf6\xdc\x83\xfc\x13\x0b\x6e\x28\x8e\xd5\x62\x1c\x1b\x0e\x12\x5b\x9b\xfd\x75\x20\xb1\x19\x1c\xe3\x52\xea\x5f\xf8\x42\xdd\xbd\x63\x86\xce\x40\xe7\x1b\xc3\x05\xf5\x6f\xd6\x2d\x2b\x5e\x9e\x8e\xec\x71\x4b\xbc\xd4\xe0\x4c\xfc\x84\x36\xca\x4f\x96\xb1\xa5\x4d\xa4\xcb\xd2\xcf\xf7\xaf\x4c\x97\x05\x2d\x2a\x2c\xd0\xcd\x10\x47\x94\xc2\x80\x35\xbc\x5c\x8c\xec\xe1\xe9\xc8\xf6\x80\xcb\x06\x74\xcf\x8a\xbf\x92\x2b\x49\x36\x7c\x7a\xf9\xbb\xce\x0d\xd1\xa6\xd2\x62\x38\x04\x2e\xb4\x3b\x0f\xe3\x56\x72\x43\x92\x96\x52\x19\xb9\xba\xaf\x93\x5c\x94\xca\x2c\xb9\x92\x84\xa6\x08\x22\x36\xcc\x77\x13\xb7\xee\x9b\xf5\x22\x0e\xa1\x38\x0d\x66\xb2\x08\xad\x70\x9e\x45\xef\x9d\xe1\x0e\x6e\xcb\x10\x09\x46\x14\x80\xf8\xf7\x1c\xb1\x55\xc2\xd9\x30\xd7\x8b\x18\x47\x04\x32\x21\xe1\x6c\x18\x29\x61\xc8\xad\x15\xee\x9c\x2f\x91\x35\xf9\x83\xf4\xd2\x9a\x24\xdc\xdc\xe0\x64\x1e\xfa\x40\xeb\x90\x72\x2e\x8f\xa1\xb0\x12\x31\xc8\x89\xee\x34\xf1\xc8\x01\x29\x5d\x77\x1d\x3f\x57\x97\x75\x75\x58\xf7\xbc\x4e\xcc\xba\x2e\xac\x14\x9e\xe3\x08\xd7\xd6\x41\x9c\xd5\x91\x48\x5f\x72\x8e\x01\x6b\x2b\xb2\xd6\xd0\xc2\x8d\xfd\x04\x14\xc7\x73\x48\xc4\x38\x96\x1c\xb3\xc8\x48\x3a\x42\xb7\x43\xc6\xe3\x12\xee\x45\xed\x1f\xe5\x1f\x8f\x55\x49\x41\x88\x17\x43\x76\xd2\xd2\x08\x5e\xb4\x8a\x95\x72\x73\x31\x6e\xd3\x09\x15\xf1\xc7\x17\xb0\xcc\xc4\x4b\x49\x48\x4a\x5b\xe2\x96\x70\x4e\xf4\x24\x10\xcc\x83\xec\x90\x58\x57\x5f\x09\x92\x6d\xf0\x59\x30\x3b\x70\x23\x57\x7c\x21\xcd\x71\x86\x33\xbe\x3d\xb6\xa2\xc6\x56\x68\x62\x53\xfc\x82\x1d\xef\x22\xf3\xea\x23\x79\x8e\x8b\x8c\xab\xd2\x75\x55\xa2\x70\x53\xbc\x3d\xab\xed\xe2\x70\xda\x1c\x2e\x2b\x3e\xf6\xf5\x95\xf4\x2d\x60\x2c\x42\x9e\x81\x83\xfc\x92\x08\xfd\xad\xc1\x61\x38\xe7\x2a\x30\x64\x69\x36\x04\xf1\xa9\xd8\xb1\x6b\x0a\x14\xc7\xfc\xe2\x4e\xcd\x95\xe1\xf9\xc9\xa8\x3d\x38\x1d\xb5\x0b\x46\x1c\xf3\x42\x3d\x94\xf4\x55\x01\xc8\xeb\x39\xa9\x99\x61\xef\x34\x13\x96\x9b\xbf\x32\xed\x26\x34\xa6\x44\x2f\x4b\xcc\xe2\x50\x7c\x99\x2e\x57\xd7\x52\x7e\x3d\xa6\x1f\xfd\x7e\xd0\x65\xe7\x68\x72\xae\xaf\x74\xde\xb9\xfa\x0d\xf9\xe7\xda\x59\xea\xdb\x5c\x58\x4e\x5a\xa4\xcb\xd4\xed\xd1\x6e\x1d\x38\x0a\x7f\x9b\x7e\x64\x99\x61\xee\x63\xe5\x8d\x6f\x95\xbe\x97\x88\xdc\x05\x85\x80\x1c\xfc\x21\x1c\x3d\xda\x05\xcf\x7a\xb1\x60\xe9\x34\x3d\x4f\x98\xb7\xd2\x36\xc6\x20\x3a\x47\xc2\x7d\x75\x13\x33\x12\x01\x3f\xb1\x13\xee\xb2\x4f\x4c\x0c\x21\x48\x5d\xb2\x2e\xd7\x1f\xce\xc6\x05\x28\x7f\xa0\xa1\x81\xa0\xfd\x86\xb8\x90\x4d\xfc\x72\xe2\x3f\x8d\xb0\x73\x40\x2a\x27\x66\x85\x0a\xd3\xe5\x6c\xc2\xb9\x0c\xc5\x19\xca\xbb\x94\x76\x93\x7a\x0d\x95\x9d\x03\x94\x16\x48\xc1\x0a\x51\x7e\x0c\x04\x3b\x09\x02\xda\x1a\x4b\x3b\xa2\xb9\x14\xf5\xfb\xa7\x04\x5e\x04\x55\xab\xe2\x8a\xb5\x0b\x12\x04\x4a\xbc\x7c\x92\x54\x66\x22\xf8\x6c\x42\xdc\x0a\x2b\x19\x04\x4e\x9f\xbd\xc4\x23\x0e\x61\x2d\xad\x08\x77\x33\x47\x70\x4f\x14\xa5\x40\x3e\xfb\x6e\x72\x21\x48\x34\xb5\xe4\x20\x26\x0e\xea\xa2\x20\x20\x0a\x38\x48\xa3\x98\x58\x87\x64\xf2\x87\xbc\x29\x00\xc1\x80\xec\xe4\x76\xee\xd0\x2b\xae\x3c\x42\x63\x2b\x5a\xb4\x35\x2d\xd8\x31\x53\x52\xe5\x41\xe2\x2e\x32\xef\xef\x25\x2d\x5e\x55\xa4\xcf\x6d\x12\xaa\x22\x7f\x4c\x82\x3d\x1d\xd9\xe5\xfd\xd9\xea\xad\xd3\x51\x7b\xd7\x82\x1b\xf9\x09\x08\x51\xde\xeb\xa5\x26\xd2\xd8\xd6\x33\x4e\x92\xc9\x92\xe0\xb0\xcf\xb8\xc5\x6f\x20\xba\x46\x0b\x59\x62\xff\xa7\xd8\x32\x76\x6f\xf0\x67\x2c\x46\xf6\xf0\x68\xda\xde\x5d\x8c\xec\x82\xd2\xcb\x64\xe5\xe5\x84\x3d\x3b\x17\xe5\x24\xcd\xd1\xcf\x40\x7e\x4e\xe6\x18\x0c\x19\x67\x88\x46\xe9\x32\x65\x1e\xb9\xba\xc8\x72\xd7\x2d\xc4\xb9\x36\xc8\x67\xab\xe2\xeb\xb4\xb9\xf2\x72\xb4\x2e\x47\x93\x35\x70\xc8\x09\x14\x72\x7e\xa5\xb8\xb9\x75\x5f\xd7\x27\x97\xb7\x7e\xf6\xae\x54\xa6\xae\x97\x8c\x2f\x7f\x87\x80\xab\x05\x60\x87\x38\xd5\xd2\x7b\xee\x83\xe4\xc2\x01\xf4\x17\x70\x27\x55\xc9\x2e\x52\x29\x77\xa0\x08\x2e\x21\x10\x9b\x24\x7f\x95\x47\xdc\xaa\x29\xf2\x75\x04\x34\x10\xf7\x44\xf1\xdd\xe5\x42\xc9\x7b\x4a\xa8\x3d\x20\x4a\xea\xe7\xee\x1b\x39\x8f\x7a\x48\xd9\xb8\x00\x79\x30\x31\x84\x3a\xd7\xb9\xa1\x05\x78\xdd\xb7\x5a\xc7\x69\x94\x80\x45\xc9\xad\x1d\x1b\x03\xee\x3c\x65\x9d\xb7\x9f\x86\xe2\x9f\xb7\x8d\xc1\x65\x8c\x34\xc3\x19\x3f\xd6\x50\xd3\x8c\xe8\x20\xc9\x3f\x2c\x40\xdd\x4b\x50\xa1\x78\xe9\x43\x9a\x9b\x93\x84\x38\x49\x41\xe7\x25\x56\x96\x8c\xbc\x25\x91\xc4\xf8\x7f\x05\x1a\x29\x0c\x5b\x0f\xa0\xf0\xff\xb2\xf7\xae\x4f\x72\x5d\xd7\x7d\xe8\x6f\xed\x73\xfa\x74\x4f\xcf\x03\x03\x60\x38\x00\x41\x10\x84\xa8\x17\x25\xcb\x92\x2e\x29\x59\x26\xa3\xc4\x92\x6c\x39\xb2\xa3\xeb\x9b\xba\x29\xe7\x53\xae\xed\x4a\x15\xf1\x47\x81\x79\xd9\x4e\x4a\xce\xc3\x55\xa9\xbc\x6e\xca\xa9\x4a\x94\x5b\xb6\xa4\x28\x26\x43\xd3\x14\x45\x40\x22\x05\x92\x00\x01\x0c\x66\x06\x83\x9e\x9e\x9e\xee\xd3\xe7\xec\x75\x3f\x9c\xfd\x58\x7b\x9f\x7d\xba\x1b\x94\xfd\xe1\x56\xdd\x5d\x35\xd3\xe7\xb1\xdf\x67\xaf\xb5\x7e\x6b\xad\xfd\x20\x91\x6d\xf4\x2b\x61\x7f\x43\x17\x6c\x40\x97\x7d\x3d\x2b\xd3\x27\x00\x00\x20\x00\x49\x44\x41\x54\x26\xe2\x4b\xf3\x91\xa9\x0f\x05\xef\xc3\xba\xc4\x16\x01\xff\x50\x36\x51\xa8\x35\x36\xbd\xc7\x40\x51\x4f\x08\xbe\x21\xca\x22\x18\x5c\xa3\x50\xd6\x3d\x4c\xea\x9c\x4a\x50\x6b\x2f\x90\x56\x90\xdf\x26\x72\x15\x69\xc0\x1f\xf0\x27\xf2\xd0\x00\x74\xa5\x74\x39\xea\xd7\xa3\x47\x6b\xd5\xbd\x3a\xe3\xa9\xcb\x4b\x98\x00\x24\x40\xdb\xbf\x5d\xbc\x6e\x66\x77\x18\x87\x1f\x17\xc6\x3d\x46\x24\x9b\xc1\x02\x8f\xb1\x7b\xe1\xce\x65\x63\x59\x46\xa4\xd8\x09\xdc\x17\x18\xad\xac\xd5\x44\x1c\xf6\x59\x2b\x9e\x9e\x14\xd5\xe1\xd1\x5a\xf5\x60\x96\xeb\x72\x51\xff\xa4\x56\x94\x76\x84\x65\x72\x26\x15\x16\xd1\xe7\xaa\xef\x56\xb9\x4e\xd5\xa9\x4b\xde\x75\x85\x2e\xb9\xb9\x28\xee\xe3\xa4\x69\x8d\xd3\x2f\x7c\xe1\x0b\xad\x48\xf2\x59\xd7\xf5\xd6\xd6\x96\xcc\x73\x99\x1c\x58\xb5\x7e\x3f\x6f\xfc\xd4\xb7\x71\xcf\xe2\xc9\xb9\x8f\xa3\x99\x06\x26\x2b\x83\xb4\x83\x3d\x2d\x16\x55\x8a\xad\xf6\x8a\xf0\x38\x44\x6f\x15\x11\xbb\x66\xfa\xfc\x1d\x91\x49\xed\x20\xb8\xb6\x4c\xd2\x04\xab\xb9\x52\x32\x9d\xdc\x95\xd7\x47\x24\xb1\x3a\xa2\xad\x9d\x30\xfc\xe9\xd6\xcd\xc7\x35\x6d\x56\x5d\x26\x52\xb9\xaa\x28\x02\x2f\xb1\xd9\x2f\x46\xb5\xf1\xfb\x38\xa4\x4c\x8f\x5d\x71\x52\x1a\x4c\x2a\x2c\xcb\x67\x91\x69\x70\x15\xe2\x4c\xb5\xb7\xab\x1d\xa9\x3c\xe3\xb8\x5d\xed\xea\xd2\x72\x56\x21\x9e\x54\x5a\x17\x48\x6c\x3d\x6e\xe3\x50\x74\xb2\xac\xff\x23\x0d\x62\x5d\x15\x34\x62\x85\x8a\x34\x9c\x80\x17\x39\xc2\x1e\x6f\x91\x9e\x8b\x61\xad\x0e\x7e\x0c\x36\x40\x20\xe1\x0e\x42\x2c\x38\xfc\xc0\xf7\xfb\xbb\x84\x02\x9e\x5a\x84\x44\x41\xd2\xd8\xdc\x18\xdf\x79\xb1\xeb\x8f\xe5\x70\xc9\x58\xd0\x97\xa5\xa7\x80\xd0\x45\xd9\x96\xfe\x64\xce\x71\x33\x8c\x60\xb6\xe8\xc8\xef\x14\x1c\xb6\x83\x44\x19\x76\xc5\x92\xb3\x04\x90\xb0\xae\x2a\x2a\xeb\x1e\x8d\x75\x8e\x12\x44\x9a\x22\x7e\x67\x68\xd7\x3d\x93\xf4\x9d\xd8\x39\xd7\x9d\x92\x6c\xad\x2d\xf6\x17\x44\x7a\xda\xd3\xe3\xc3\xf5\xea\xde\x53\x8f\xf4\xa8\x57\xd3\x86\xb7\xcc\x18\x40\x12\xb5\xc1\xed\x3a\x6c\xda\x29\x17\x32\xc8\x4e\x71\x93\x8e\xa3\xfe\x94\xe3\xac\x89\x23\xf8\x93\xe8\x1f\x8e\xf8\x9c\xe4\xb5\xcc\x40\x99\xf1\xe4\xd1\xa0\xbe\x37\x1a\x54\x87\xb5\x42\x09\xf8\x93\x95\xc5\xb5\xe5\x73\x9a\xda\xbb\xd4\x26\xad\xf4\x48\xd3\xe2\x2a\x34\xef\xc2\x27\x3f\xf9\x49\xf5\x93\x9f\xfc\x44\xdb\x5f\xf1\x1c\x3f\xf9\xc9\x4f\x5c\x1c\x00\x30\xef\x17\xf1\xb1\x45\x9e\x86\x18\xac\xa5\x9e\xad\x1a\x16\xb5\x71\x51\x1c\x6c\x6d\x6d\xa9\xd1\x68\xd4\x6a\x2f\x00\x7c\xe5\x2b\x5f\x91\x56\x7d\xf9\xdc\xca\x29\xfc\xd2\x2f\xfd\x92\x93\xcf\x7f\xf1\x17\x7f\x01\x00\x18\x8d\x46\x2e\x9f\xdd\xdd\x5d\xec\xed\xed\x21\x51\x76\x0c\x6a\x56\xf9\xc6\x8b\x78\x72\x2a\xc4\x4a\x76\x4b\x31\xb0\xcf\x72\x11\x71\x55\x86\xbe\x30\x5e\xbc\xf1\x9a\x05\x34\xf6\x9a\xc1\x5a\x13\x6b\x67\xc5\xb5\x08\x1d\x11\xa8\x70\xda\x5b\x78\xde\x84\xa5\xf0\xa0\x9c\x58\xbb\x64\x3f\x43\xdf\x6b\x48\x14\x10\x68\xb0\x59\x9c\xb8\x17\xca\x61\x38\xdf\xc6\x98\xe6\x1b\x6b\x8d\xdd\x6d\x33\xb9\xea\xc0\x2d\x0d\x8f\xb5\x0f\xb1\xe5\x7f\x0b\x41\x8a\xfb\xc7\x11\xb2\x71\xbc\x54\xda\x55\x81\xc2\x22\x26\xb2\x2c\x5e\x57\x5b\x16\xdd\xa7\xea\xbf\x6a\x9a\xc7\x2d\x6f\x59\xdd\xbb\xca\x48\x7e\x03\x0b\x5a\xc4\x18\x0a\x18\x61\xf8\x9c\x35\x13\xf4\x7c\x40\x47\xac\x68\x0a\xf0\xb0\x11\x6e\x00\x1c\x60\xb7\x5a\xb1\x11\xfb\x66\x3f\x14\xbb\x09\x98\xd3\x8e\x25\x90\x10\x3e\x1d\xb9\x42\xc8\x6b\xe2\x16\xa4\xf8\xd5\x3d\x9e\x14\xe4\x0a\x23\x93\x3f\xc9\x8d\xeb\xac\x70\x37\x87\x29\x1a\x80\xd4\x58\x4b\x48\x58\x4e\xd8\x11\x6c\x53\x7d\x09\xdc\x7d\x19\xd6\xc2\xc2\x82\x36\x4d\x74\xdf\x1c\xc0\xd1\x9f\x15\xba\x9e\x72\x7d\x7c\xaf\x80\xc4\x2b\x93\x10\x09\x5c\xdb\x06\x2b\xd0\xad\x25\x88\xc4\x5c\x1f\x86\x56\x34\xad\x7b\x34\xd1\x39\x95\xd6\xe5\x01\x21\x90\x5a\x16\xe3\xc4\x9c\x16\xa9\xb0\x59\x81\x1e\xfd\x56\x00\xaa\x69\xae\x27\x0f\xd6\xcb\x7b\x27\xfd\xb5\xbd\xb5\x79\xb6\xab\x18\xb9\xc5\x16\x2c\xda\x1c\xf3\x1e\x3f\x2e\x4c\x1f\x0a\x55\x4f\x18\x9f\x02\xfe\xe9\x5c\x6f\xee\x01\x1b\x65\x50\xf0\x5a\x37\x26\x3c\xe8\x04\xc8\x7f\x07\x00\x4c\xac\x4f\x7b\x7a\xff\x68\x58\xed\x9d\x14\xf5\xd8\xf4\x8b\x3c\xc4\xcf\x8e\xf7\x14\x60\xb1\x21\x56\xc6\xe4\xf5\x22\x1e\x88\xcb\x97\x2f\xe3\xf6\xed\xdb\x49\xfa\xb5\xc0\xf1\xeb\x5f\xff\xba\x02\x80\xaf\x7d\xed\x6b\xc1\x46\x90\xf6\xb9\xdd\xa8\xee\xd7\x7f\xfd\xd7\xd5\x9f\xfc\xc9\x9f\x74\xf1\x82\x45\xfc\x76\x15\x9e\x9a\xca\xb3\x2b\xaf\x45\xcf\xba\x00\x91\x06\x3c\xc8\xf8\xfa\xd7\xbf\xee\xda\x17\x05\x65\xc6\x71\xeb\x9d\xf9\x3e\xae\xff\xa3\x03\x42\xf1\xca\x2b\xaf\xe8\xbd\xbd\xbd\xae\x36\x74\xf5\x4f\xca\xe5\xd5\x05\x50\x52\x3c\x39\x95\x4f\x0a\xe4\x06\x69\xba\x0e\x59\x8c\x23\xa6\xfc\x4d\xb1\x16\xba\xca\xb5\x16\xa7\xdb\xeb\x98\x39\xd9\x15\x04\x81\x32\x16\x68\x00\xf6\x60\x39\x72\xd6\x12\x73\xeb\xf2\xb0\x37\x2c\xee\xd9\x67\xe5\xdf\x51\x08\x64\x3c\xd3\xf4\x0f\x25\x98\xb2\x0c\xc6\x5e\x2b\x26\xa5\x18\x49\x2b\xcb\x12\x8b\xd3\x22\x54\x69\xef\xbb\x10\x6d\x57\xfc\xf8\x7a\xa1\xe0\xfd\x39\xe2\x2d\x8a\xbb\x92\xc6\xf0\x98\x69\x7e\x5e\x40\xbd\xcc\xa2\xb3\x2c\x2c\x64\x6e\xaf\xbc\xf2\x8a\xbe\x76\xed\x5a\x6a\x09\xac\x60\x3c\x8d\xc5\xa5\x5c\x53\x0f\x6b\x85\x69\x86\xf6\xd8\x93\xa8\xa4\xfd\x1f\x0e\x44\x04\x87\x2c\x4a\x8b\x8a\x10\xcc\x8d\x30\x12\xda\x77\x60\x5a\x09\x93\xfb\x7a\x8b\xf3\x86\xa4\x95\x03\x42\xb8\x09\x22\x63\x81\x38\x3c\xb5\x89\x64\x26\x7e\xec\x95\x72\xca\x87\x11\xa0\x10\x42\x53\x46\xf4\x75\x93\x6d\x09\x95\x14\xdb\x1f\x4e\x00\xc3\x0a\x6b\x6f\xd6\x21\x91\xbd\x54\x4c\x6c\x5d\x19\x04\x9d\x61\x52\xe7\x34\xd6\xc6\x92\x20\xfe\x60\xaf\x17\x2d\x75\x4f\x29\x6a\xe2\xb9\x26\xa2\xca\xfe\xce\x33\x9e\x1e\x0c\xe7\x0f\xf6\x36\xca\x77\xb7\x4e\xf3\xab\x83\x0a\xdb\x0e\x80\x49\x1e\xe6\x26\xde\x86\x6d\xb1\xc0\x91\x45\x33\xa5\xad\xda\xba\x88\x9c\x45\x8a\x48\x9c\xe7\x14\x7d\x57\xf9\xa9\xa9\x9d\xce\x82\xd0\x32\xe3\xc9\xe1\x70\xfe\xe1\xfe\xfa\xfc\xce\xb4\xa7\xa7\xf0\xa7\x2b\x57\x40\x60\x79\x09\xc2\xf5\xeb\xd7\xe5\x21\x8b\x5d\x16\x17\x1b\x02\xfa\xcc\xf3\x1c\x55\x55\x01\x00\x7e\xe3\x37\x7e\x03\x68\x2c\x9a\x9d\xf3\x67\x84\x95\x3f\xa9\xc8\x49\x1a\xb5\xc2\x3a\xde\x75\xf7\xfc\xf9\xf3\x38\x38\x38\x88\xeb\x13\x5f\xa7\xde\xaf\xf2\xfc\x71\x42\x92\xff\x7d\xe3\x1b\xdf\x50\x1f\xff\xf8\xc7\x83\xf6\xb3\xd9\xec\x30\xe2\x3d\x36\x1d\x80\xee\xe5\xf9\x68\x7f\x0b\x07\x64\x80\xf4\x19\x48\x51\x58\x66\x3d\x59\x66\x45\x8f\x9f\xcb\xf1\xb1\xc8\x6a\x03\x20\x74\x15\x7d\x14\x73\x58\xab\x52\xf1\xe0\x92\x66\xd4\xe6\x01\x34\x08\x15\x37\xda\xa8\xd7\x9b\x04\xff\x22\x44\x16\x11\xc1\x70\x9a\xa8\xd2\x85\x04\xc4\x27\xdd\x86\xa7\x42\x87\x93\x18\x65\x59\x52\xc3\x31\x5c\x21\x60\x50\xe1\x69\xd4\x86\x79\x34\x4a\xa6\x52\x8c\x9c\x98\x02\x17\x51\x84\x72\x2d\xf2\x4d\xf5\x59\xd8\x27\xed\xfe\x5c\xf6\x61\x53\x21\x26\x36\x99\x66\x15\x70\xb0\xaa\x90\x4f\x32\x87\x25\x75\x59\x84\xc2\xe3\xfa\xca\x34\xa9\xb2\xba\xe2\xa5\xea\x12\x03\xaf\xc7\x69\x67\xaa\x0d\x49\x3a\x48\x81\x16\x67\x36\x47\xa3\x71\x97\x43\x35\xae\x7b\x74\xc4\x33\xbe\xd8\x58\xea\x00\x80\x8d\x20\x92\x02\x06\x42\xed\xb6\x03\x95\x03\xfa\x08\x88\x41\x62\x14\x57\x1f\xf1\x6b\x8d\x22\x4e\xd3\x96\xae\x1c\x7f\xb6\x4f\x63\xd5\xb1\x60\xc3\xd2\x0e\x05\xbb\x50\x93\xa9\x93\x3b\x34\xd1\xd4\xd9\xe5\x61\xab\x27\xea\x14\x58\x45\xc1\x51\x9d\x84\xd0\x15\xc2\x52\xa2\x11\x8a\xdb\xec\x24\xb8\x48\x67\x6b\x6c\x2d\x40\x92\x41\x87\x3f\x01\x30\x00\x41\xd7\x3d\x35\xaa\x0a\x1a\xeb\x8c\x2a\x39\xd1\x14\xe6\x5b\xa7\x40\xcb\xcb\x2f\xbf\xac\xaa\xaa\x72\xc0\x55\x08\x55\xab\xe9\x06\xae\x22\x78\x41\x5f\x9e\x16\x7a\x74\xeb\xec\xe9\xcd\x0b\xc7\xc5\x73\xfd\x93\xde\x16\x31\xab\xe0\xe4\x6b\xf9\x3d\x48\x02\x96\xf0\x23\x3b\xdc\x47\xc6\x82\xe4\xfa\x41\x5a\xa2\x65\x07\x0a\x9c\x68\xbe\x91\xb4\x6c\xf9\xd5\x59\x02\x20\x80\x31\xee\xd7\x7b\xf7\xb6\xca\x77\x0f\x87\xf3\xbd\x8a\x78\x0a\x46\x0c\x58\x5c\x7f\x49\xde\xff\xf2\xcb\x2f\xab\xb7\xdf\x7e\x1b\x58\x0c\x5a\x02\x7a\xb2\x80\xe5\xa9\xa7\x9e\xc2\xdf\xfe\xdb\x7f\xdb\xc5\x97\x2b\xba\x58\x1c\x9f\x11\x7f\x1b\x92\x27\xb2\x7b\x19\xd4\x8a\xcf\xcc\x81\x90\x06\x1a\x41\x7d\xf9\xf2\x65\x75\xfb\xf6\x6d\x9d\x65\x19\xea\xba\x5e\x45\x30\xdb\xf7\x5d\x8a\xfd\x22\x5e\x1b\xf7\x43\x97\x7b\x24\x5e\xc5\x16\x80\x38\x9b\x2e\x92\x97\xc9\xb3\xb6\x84\xac\xd2\x22\x3f\x67\x31\x14\x69\xb4\x2d\xd3\xce\xe3\x1a\x0e\x87\xf6\xac\xa3\x54\x9b\x52\xed\x4d\x01\xd6\x94\x4c\xe8\xea\xdf\x14\x90\xf1\xe0\x36\x8a\xdc\x25\x70\x16\x69\xff\xea\xc5\x17\x5f\xb4\x9d\xe0\x4c\x54\x2d\xc0\x62\x02\x03\xd0\x86\x73\x85\xb3\x5b\xc2\xe0\xd2\x0b\xcd\xc0\xaf\x0b\x92\x83\x15\x10\x64\x17\xb8\x9f\xec\x9b\xf6\x00\xf7\xec\x9b\x7c\x44\x04\x1b\x5a\x45\x65\x4b\x65\x84\x18\x79\xae\xa9\xc8\x34\xe5\x88\xca\x4b\xb6\x21\x0c\x8b\x90\x6c\x4a\xe8\x76\xbd\xef\x12\xd2\xab\x5e\x77\x81\x83\xf8\x77\x59\x48\xc5\x5f\x04\x1e\x96\xa5\x5d\xb5\x5d\xab\xdc\xa7\xc2\x2a\xa0\x25\x8e\xb7\x52\x5f\xb4\xac\x8b\xcc\xda\x4c\xae\xd4\xe5\x9a\x1a\x55\x7d\xda\xc3\x04\xcf\x72\x6d\x5c\x04\xf0\xa6\xfb\x80\x04\x82\xf3\x77\xe0\x04\xb5\x63\xbc\x12\xe8\x04\xfe\x01\xa1\x30\x37\x48\xc4\x5b\x04\x9c\x45\xa6\x19\xc0\x12\xda\x87\xe0\xc1\xe4\x23\xa9\x33\xa8\x86\xc9\xcf\xb9\x1d\xd8\xd3\x18\x24\xf8\xf1\x02\xd1\x2a\x17\x91\xff\x43\x58\x4c\xe4\xaf\x17\xa3\x6e\x97\x59\xb2\xed\x37\x35\x35\xe5\xb6\xda\xef\xca\x82\x77\x15\x31\xc2\x32\x6c\x47\x01\xd0\x0a\xe5\x7c\x40\x87\xf3\x3e\x3d\x64\x45\x6e\xee\x86\x5c\x31\x23\x41\x89\xfd\xc6\xf1\x21\x76\x91\x60\x71\x2b\x89\x00\x54\x44\x64\x5d\x2a\x25\x80\xb2\xcc\x78\x72\x77\xab\xbc\x7b\xfb\xcc\xf4\xcd\xad\x69\x76\xb9\x5f\xa9\x2d\x16\xa6\x66\x07\x32\x65\x57\x45\x86\x30\x7f\x8a\xb6\x7f\x21\xf7\xbb\x89\x81\x4f\x3c\xac\xc0\x51\x7c\x84\x18\xc7\x7e\x87\x32\xe3\xf1\xde\xc6\xfc\xdd\x0f\xb7\xca\xf7\xc6\x8d\x9b\xa8\x24\xa2\xd2\xb4\x45\x9b\x76\x39\xfa\x08\x14\x4d\xe6\xf8\x74\xe8\x58\xf9\x80\xb8\xd7\x44\xa4\xaa\xaa\x8a\x01\x45\x2c\x4b\x62\x8b\x82\x7d\x96\x54\xe8\x48\x4c\x51\x10\x40\x46\x53\x7b\x3e\xa2\x16\x96\x18\x7c\xfc\xe3\x1f\xc7\xcd\x9b\x37\x57\xe5\x35\x8f\x63\x7d\xe9\xe2\x85\x2e\x2e\x89\xf9\x73\xd1\x06\x87\x41\xbf\x08\x65\x29\x75\x9d\x9c\x67\x2a\xc6\xb1\x12\x7d\x01\x53\x6e\xf0\xde\xd6\x33\xb2\xc2\x04\xfd\x18\xd5\xbd\xab\xbd\x5d\x4a\xee\xa2\xfe\x89\xef\x5b\xf2\x29\xd6\xfe\x1f\x47\xe0\xb8\xf7\xdf\xff\xfe\xf7\x17\x99\x53\x83\x41\xa5\x09\xba\x56\x28\x35\x35\x4b\x02\x59\x50\x4f\x68\x55\x41\xf0\x5c\x18\x4f\xbd\xb6\x61\x22\x06\x0a\x28\x45\xe9\x45\x3a\x97\x84\xbd\x26\xd3\xca\x87\xba\xd3\x79\xed\x8f\x54\xa6\xa9\xc8\x98\xe4\x1c\xa1\xa0\x9d\x56\x4b\xb0\xd7\x40\x6b\xcb\x7f\xc4\x69\xc4\x7d\x2b\xbf\x44\x7c\x9d\x88\xa7\x12\xcf\x96\xa5\x8f\xaf\xbb\xd2\xc9\xba\xa5\xe2\x77\xb5\x6b\x51\x7b\x53\xf9\xa7\xd0\x7c\x1c\x2f\x46\xe2\x5d\xed\xee\xea\xc3\x58\x2b\x48\xd5\x63\x95\x7a\x4b\xb3\xb5\x15\x78\xee\xda\x08\xb0\xc6\xb4\x9e\xa1\x9a\xad\xab\xdb\x3a\xc3\x54\xa6\xf7\x67\x65\x89\x81\xc7\xd1\x20\x16\xcc\xc5\x14\x6a\xa5\x73\x98\xcc\x46\xe5\x66\xec\x52\x94\x8e\x1c\xe1\xc4\x0b\xa9\x7d\xf9\x5e\xb1\x17\x69\xa4\xb8\x77\xe0\x27\x04\x01\x76\xfe\x97\xa4\x18\x32\x0d\x24\x8f\x36\x7c\x01\xa6\xee\x64\xae\xbd\x50\xb6\xbb\xed\x46\xfc\x44\x00\x32\x59\x6e\x90\xa7\xcc\x2f\xb6\xf2\x40\x76\x55\x53\xb6\xce\x69\x5c\x0e\xd4\x61\xd5\xa7\xb1\xa6\xf0\x84\xe1\x94\x79\xdd\x7e\xeb\xe7\x9f\x7f\x5e\x01\x50\x1f\x13\xe7\xe4\x90\x9f\xd3\x02\x99\x0f\x37\xfb\x9b\x38\x8b\x0b\x83\xa7\xd3\x9e\x1e\xbd\x7d\xe1\xf4\x47\x07\xeb\xd5\x4f\x2d\x1f\x74\xdd\x1c\x63\x3b\xeb\x32\x93\xcf\xa4\xb6\x65\xeb\x65\xf9\x64\xdc\x17\x32\x48\x80\x4b\xbe\x3d\x8e\xef\x89\x42\x18\xd0\x0f\xd7\xe6\xb7\xde\x3f\x3b\xbd\x79\xb4\x36\xdf\xd3\xc4\x53\x0b\x5a\x98\xd9\xfe\x4a\x3a\x72\x7f\xcc\x8c\xff\xf5\xbf\xfe\x97\xcd\x2a\xa6\xa3\x16\x80\xf9\xea\x57\xbf\xaa\x98\x59\xbf\xfc\xf2\xcb\x5d\xa7\x72\x3b\x9a\x34\x16\x17\xc5\xcc\x39\x33\xe7\x30\x27\x55\xcb\x3f\x19\x07\x8d\x10\xcf\x85\xa5\xa6\x05\x5a\xe4\xf3\x97\x5f\x7e\x59\x7d\xed\x6b\x5f\xeb\x3a\xeb\x28\xc5\x2f\x25\x1f\x8e\xf9\xd8\xb2\x38\xf6\x5a\x03\x50\xeb\xeb\xeb\x72\xd2\x7f\x60\x61\x32\xf2\x44\xb6\x4d\x01\xc8\x89\x28\x97\xbf\xf6\xcf\xf4\x4f\x61\xaf\x01\x14\xa6\x1f\x0a\x7b\x2d\xde\xd9\x5f\x9b\x37\x4c\x99\x2d\xbe\xc7\xcc\xfa\x99\x67\x9e\x49\xf1\xc8\x2e\xab\x91\xec\xc3\x2e\x7e\x1b\xf7\x0f\xa2\xfb\x96\x4c\x58\x24\x1c\x97\x09\x32\x17\x5e\x7c\xf1\xc5\x60\x3f\x83\x28\x38\xd4\x0b\x00\x6c\xce\xec\x30\x67\xb7\xf8\x7d\x25\x10\x29\x9d\x4d\x6c\x77\x1d\x68\x1b\x4d\x86\x26\x3f\x91\x8e\x3d\xe1\x06\x44\x1b\x11\xa5\xcb\xd7\xf2\x7d\x16\x5a\x9c\x80\x33\xf1\xc9\xab\xcd\x1b\x86\x02\x54\xa6\xa9\xc8\x35\x0a\xc5\xde\xdd\x26\x4d\x93\xc6\x75\x04\x7b\x0d\xb8\xc9\xb9\xab\x20\xce\xc7\x41\xf0\x5d\xa8\x34\xf5\xfd\x62\xa6\xb1\x0c\xb0\xa4\xca\xe9\xaa\xe3\xe3\x5a\x7c\xba\xf2\x8f\x9f\xa7\xc0\x75\xaa\x2e\xa9\x3c\x96\x59\xad\x52\xf5\x8b\xf3\x5c\x54\xef\x94\x36\x68\x35\xa7\x40\x23\xd5\x84\xf2\x74\x33\xbb\x57\xe7\x34\x46\xbc\x1d\x00\x45\x03\x34\x38\x74\xd1\xda\xf6\xe3\xf8\x3e\x9d\x1b\xf3\xd1\xe0\x6f\x91\xa3\xc3\x27\x7e\x8c\x87\x73\x67\xc2\x77\x3e\x9d\x15\x70\x1e\x28\xb5\xb2\xb6\x59\x90\x58\x0e\x6d\xf2\xb6\xb8\x8c\xa3\x36\xc8\x5a\xb8\xe8\x3e\x02\x98\x4d\x99\xb6\x56\xd6\x52\xc0\x22\x72\x8c\xf9\x0c\xb4\xf1\x65\x99\x6b\x16\xb4\x6d\xfa\xaf\xee\xe1\x68\x3e\xa0\xc3\xba\x47\x53\x0b\x30\x89\xbc\xcb\x08\xd1\xb8\x32\xcf\xf1\xda\x6b\xaf\x69\x00\xfa\xbd\xf7\xde\x33\x4d\x69\x6b\xc5\xc2\xed\x54\x11\x91\xb3\x54\x10\x51\xa9\x09\x93\x87\x6b\xf3\xfd\xb7\x2e\x8c\x7f\x38\x1a\xd4\x1f\xea\xc6\x75\x2e\xbb\xda\xb5\x45\x5a\x8a\x5c\x1f\xc8\x7e\x07\x82\x38\x1d\xc6\xdf\x74\x70\xd6\x38\x01\x9c\x4c\x9e\xa3\x41\xfd\xe1\xcf\xce\x4f\xdf\xfc\xf0\xcc\xec\x67\xa7\x3d\x3d\x26\xa2\xa9\x05\x2c\xa2\xaf\x5c\xdf\x48\x25\x2d\x52\x60\x63\xfa\x72\xbc\xe7\x5b\xdf\xfa\x96\x02\xa0\xff\xf4\x4f\xff\xd4\x1d\x9f\x60\x2d\x06\x42\x60\xdb\xf8\x39\x33\x07\x02\xda\x08\xe2\x9c\x99\x0b\xfb\x87\x46\x28\x4b\xe1\x5c\xd8\x74\x44\x54\x48\x41\xcd\xe2\xa0\x48\xc0\xf3\x6c\xe6\xe6\xb8\x82\x7f\xf8\x0f\xff\xa1\xfa\xea\x57\xbf\x9a\xb2\x28\xc4\x3c\x33\xc5\x2b\x52\xd6\x05\xf9\xa7\xe2\x74\x27\x27\x27\xce\xc2\x11\xcd\x9d\x53\x68\x00\x98\x12\x40\xa5\x80\x07\x2a\x05\x80\x01\x11\x0d\x00\x0c\x95\xc6\xb0\xa8\xd5\xc6\xa0\x52\xc3\x41\xa9\x36\x86\xf3\x6c\xa3\xa8\x68\x98\x69\x0c\x7b\x9a\x06\x26\x7e\x41\x44\xae\x8f\x4c\xff\x48\x20\x23\xfb\xdf\xd5\xe9\xda\xb5\x6b\xea\xbd\xf7\xde\x5b\xc6\xdf\x53\x80\x26\xee\xc3\x54\x5f\xa4\xf2\x4b\xf2\xeb\x2e\x0d\x13\x1d\xcf\x92\x02\x6f\x85\x2d\xff\x9d\x26\x52\x13\xf4\x3c\xd3\x65\x73\xe0\x18\x74\x17\xa5\xc5\x0c\x0d\x10\xda\x2d\xc7\x65\x79\x86\x6d\xb5\xb5\x38\x04\xd1\xa5\x0a\xd6\x52\x65\xa4\x7a\x63\x89\x51\xf2\x47\x02\x18\x4a\x31\xe5\x99\xa6\x9e\x12\x9b\xd0\x19\x93\x65\xa7\x90\x4b\x2d\x55\x5b\x10\x62\x94\xd9\x99\xaf\x88\xbf\x0c\xbc\xa4\xee\xe3\xf8\x2b\x03\xd6\xc7\x78\xf7\x51\xc3\x5f\x47\x9e\x3f\x4f\xfe\xcb\xfa\xc7\x86\x88\x49\x51\xc5\x8a\xaa\xd9\x3a\x1d\x54\x05\x1d\xca\xed\xff\xbd\x96\x2c\x81\xbf\xd5\xa4\xc5\xb5\xc8\xdc\x5a\x15\xc0\xdc\x02\x03\x22\x57\xf1\xc2\x03\x0f\xb6\x69\xdc\x2c\x79\x12\xda\x80\xad\x47\x90\x4c\x98\x31\xbb\xa5\xa2\x81\x50\x81\xf5\x24\x79\x60\xa2\x37\x84\x08\x0c\xc1\x7e\xda\x89\x00\x6b\x7e\x72\x6a\xd4\x46\x9b\x51\x64\x65\x90\x6e\x62\xb2\xd2\x98\xc4\xb5\xa5\xef\xa6\x04\x5d\x15\xea\x68\x3e\xa0\xa3\x3a\xa3\x29\x9a\x79\x28\xce\x4a\x22\x5d\x43\x1d\x0a\x19\xb4\xd6\xa6\x5c\xff\x3e\x61\x85\xb0\x93\x59\xad\x8b\x65\x0a\xf0\x74\x9e\xf1\xf8\x67\xe7\xa7\xef\xdc\xd8\x9d\xfc\x60\xdc\xaf\xf7\xb5\x38\x06\xa5\x65\xf5\x32\x0f\x93\xc0\x24\xe0\x4d\xae\x0e\x71\x94\xe0\xda\x81\x9c\x64\xab\x80\x93\xa2\xda\xff\xd9\xb9\xd3\x37\xde\xd9\x39\xbd\x79\xdc\xaf\x8e\x40\x98\x36\xf5\xc6\xd4\xb4\xc1\xad\x28\x82\xef\x2f\x97\x7e\x85\x89\x9d\xf8\xd6\xb7\xbe\xa5\x2e\x5d\xba\x04\xa0\x11\x88\x52\x40\xc3\x08\x69\x78\x4b\x82\x04\x24\x4e\xf0\xc2\x0b\xec\x82\x40\x83\x9c\x1b\xe1\x9c\x69\x0c\xc0\x18\x98\xb8\x71\x7c\x27\xb0\x05\x08\x52\x31\x88\xb9\x76\xed\x9a\xca\xf3\x1c\x7f\xfa\xa7\x7f\xaa\x01\xe0\x9b\xdf\xfc\xa6\xac\x7e\xac\x30\x3e\x4e\x68\x59\x72\x2e\x5e\xbc\xa8\x00\x3f\x97\x45\xb8\x67\x6c\x7d\x52\xd6\x94\x1c\x68\xda\x59\x54\x34\x3c\x3b\xc9\xb7\x2e\x3f\xec\xef\x7c\x7a\x6f\x78\xe9\x17\xef\x6e\x5c\x7d\xfe\xce\xe6\x73\xbf\xfc\xde\x99\xe7\xff\xc6\xad\x33\xbf\xfc\xe2\xad\x33\xbf\xfc\xcb\xb7\xce\x7c\xf1\x4b\xef\x6f\x3d\xf7\x99\xfb\xeb\x57\x9e\x39\x18\xec\x6c\x4f\xf2\xad\xfe\x5c\x6d\x10\x63\x60\x01\x1f\x04\x20\x14\x7f\x49\x00\x03\x00\x9f\xf9\xcc\x67\xba\xda\x15\x3f\x8f\xc7\xc3\xb2\x3e\x5b\x3a\x7e\x72\xb4\x91\xce\x22\x2d\xb3\x13\x3d\x03\x01\xda\x0e\x34\x15\xe9\x23\xae\x15\x57\x95\xe2\xb2\x26\x2e\x8d\x4e\xe1\x08\x28\x98\x38\xc8\x82\x4f\x3a\x9c\x11\x2d\xe7\x73\xf1\xa3\x99\x32\x14\xde\xc7\x84\x4d\xf2\x19\xf9\x6b\x97\x37\x59\xc2\xf6\x4c\x30\x14\x29\xa4\x32\x46\x91\x6b\x55\x64\x9a\xd4\x5c\x69\x4b\x6c\x80\x30\xb7\xc5\x40\x2e\xb1\x01\xdd\x2a\xa6\x35\xfb\x7e\x55\xe4\x1f\x9b\xe4\x64\x19\x29\xf4\x1a\xe7\xdb\x65\x16\x5d\x34\x98\x16\x01\xa2\x54\x1b\x17\xb5\x65\x11\x02\x4f\x95\x9b\xaa\x5f\x17\xe2\x5f\x14\xe2\x7a\x2e\xaa\x1b\x00\xa8\xdf\xf9\x9d\xdf\x09\xc6\xb6\x10\x78\x52\xf8\x55\x68\xac\x8b\xe5\x7c\xa0\x46\xb3\xa1\xfa\xb0\x7f\xa2\xaf\x92\xe6\x41\x23\x88\x3c\x48\x09\x8c\x1e\x91\x11\xc4\x8d\x65\x2b\xcb\xc5\xe0\x0d\x3c\x48\x80\x7b\x20\x6c\x41\x26\xcb\x68\x6f\x24\x58\x2b\x4d\x68\x5a\x0c\xb6\xd1\x87\x10\x74\x12\x54\xc4\xe6\x48\x00\x6e\xb5\x90\xa8\x5e\x38\xe1\x16\x01\x21\xd9\xd3\x9e\x1b\xb7\x96\x69\x80\xa3\xea\x70\x39\x78\x6c\x94\xb2\x0d\x0e\xf6\x79\x32\x66\x1d\x92\xed\x97\x84\x4e\x9e\xc7\xe8\x0c\x93\x72\x48\xf7\xca\x35\xf5\x50\xe7\x6e\x6f\x12\x39\xf1\x14\x88\x68\xc6\x6a\xe2\xcf\x3f\xff\xbc\x7a\xed\xb5\xd7\x00\x00\x45\x51\x28\x71\xe0\xa2\x9d\x3f\x61\xd3\x54\x66\xde\x81\x9d\xe3\x32\x05\x90\x83\xa8\x00\x63\x72\xda\xd3\x47\x37\x76\x27\x6f\xf7\x2b\xb5\xf5\xec\xfe\xda\xf3\x1b\x65\xb6\xa3\x40\xc1\xe1\xad\x12\xd0\x25\xa7\x35\x99\xe7\xc1\x42\x32\x69\x72\x23\xb1\xa8\x40\xc4\xf1\xdf\x54\x5a\x74\x18\xd3\x5c\x8f\x3f\xd8\x9e\xbd\x75\x73\x77\xf2\xe6\xd1\x5a\x75\x5f\x13\x26\xcc\x3c\x21\xa2\x14\x68\x09\x26\xea\x5a\xc0\xf4\xd2\x4b\x2f\xa9\xef\x7d\xef\x7b\x0b\x15\xaf\xff\xfc\x9f\xff\xb3\xbe\x76\xed\x9a\xb2\xee\x21\xd3\x6f\xd6\xf2\x21\x41\x84\x32\x16\x13\x05\x40\x29\x0d\xd5\xab\x55\x3e\xa8\x54\x3e\x2c\x55\xb1\x36\x57\x45\x51\xab\x22\xd7\x54\x28\x26\xa5\x74\x43\x9f\xb3\x5c\x4f\x4f\x7b\x7a\x3a\xcb\x75\x35\xcf\xb8\x3c\xed\xd5\xd5\xb4\xa7\xcb\x5a\xf9\x49\xc5\xf6\x8f\x99\xad\x95\x4d\xf4\x7b\x43\xd7\xd7\xae\x5d\x53\x66\xe2\x2e\x3a\x42\x2c\x07\xbb\x78\x7a\x52\xe9\xb7\x13\x82\x23\xb0\x62\xe7\xab\xc4\x80\xaa\x71\x7d\x81\xf2\x5e\x4d\xf9\xc6\x2c\x1b\x6c\x4f\xf3\xe1\x13\x27\xbd\x8b\xe7\x4e\x7a\xcf\x0e\xcb\xec\x63\x45\xa5\x76\x7a\x9a\xb6\x73\x4d\x1b\x99\xc6\x90\x98\x0a\x00\x5a\x13\x57\x5a\x61\x3a\x57\xfa\x70\xda\xd3\x1f\x8e\xfb\xf5\x3b\x8f\xd6\xaa\x5b\x87\x6b\xd5\xde\xc3\xe1\x7c\x34\x1a\xd4\x93\x59\xae\x4b\x36\xfd\x81\xd0\xa2\x26\xf7\x24\x72\x6e\xbd\xe3\xe3\x63\x3c\xfb\xec\xb3\xea\xee\xdd\xbb\xd6\x0a\x29\xdb\xd9\x02\x68\x89\x3e\x89\xfb\x27\x56\xb6\x53\x32\x41\x01\xed\xc9\xb9\x71\x26\xcb\x82\x06\x1a\x57\x91\x2c\x28\xf6\x21\xca\x6b\x4d\x8c\x4a\xf1\xac\x56\x5c\x31\x41\x2b\x16\x15\x0d\x51\x49\x5b\x23\x08\x88\xb3\xf9\x1f\x6b\x0f\x31\x81\xa6\x42\x12\xc8\xc8\x3a\xdb\xb3\x5a\xac\xa9\xd6\xaa\x88\xe4\x35\x48\xc5\x94\xf7\x6a\x2a\x7a\x9a\xf2\x59\xc2\x6a\x94\xb2\x3e\x45\x1b\xd0\x2d\x13\xe4\x49\x13\x59\x14\x2f\xce\x63\x99\xc0\x4f\xa5\x4b\x01\xd6\x78\x10\xa5\xac\x37\xa9\xba\xa5\xee\x63\x20\xb0\xc8\x2c\xd8\x55\xa7\x65\xe5\x2e\x2a\x7f\x51\x3e\x5d\x7d\xb9\x52\xdd\xfe\xe0\x0f\xfe\x00\x40\x7a\x23\x32\xe1\x2a\x72\x7f\x55\x41\xd3\xd3\x4d\xf5\xfe\xf0\x11\x7d\x2e\xab\xb0\xd5\x78\x1d\x0d\xa4\x30\xc2\x95\x21\x47\xb5\x09\x24\xa7\xca\x02\x76\xc4\xbb\x49\x87\xf6\x89\x15\x6e\x26\x56\x20\xe0\x0c\x10\x90\x81\xc4\x98\xf6\xd0\x46\xa4\x6c\xd1\xa1\xcf\xb1\xad\xe5\x37\xf5\x8c\x01\x8d\x05\x2d\xc1\xc1\xd2\x46\xd2\xb6\xec\x02\x96\xd6\x28\x2a\x27\x6a\x97\x7f\x6e\x35\x0a\xd3\x02\xab\xed\x48\x70\xe4\x4c\x12\x21\x6d\x57\x05\x1d\x4e\xd7\xd5\xde\xbc\xa0\x11\x03\x25\x09\x8b\x8b\xfd\x6b\xcf\x11\x6a\x7e\x7f\xf6\xb3\x9f\xc1\xc4\x41\x59\x96\xc1\x3b\x61\x7d\x50\x01\x78\xf5\x7f\x25\x33\x4f\x01\x14\x20\x9a\x3c\x1a\x54\xf7\x6f\xec\x4e\xde\xc8\x34\x15\x4f\x1f\xf5\x3f\xbb\x39\xcb\x77\x32\x4d\xb9\x04\x26\x0e\x80\x88\xa6\xb9\x3e\x97\x4d\xb3\xbd\xe6\x40\x9e\x80\xae\x02\xb4\xc9\x28\x36\x86\x26\xd6\xb3\x4c\x8f\x6f\x6f\xcf\xde\x7a\xfb\xc2\xe4\xf5\x83\xf5\xf9\xdd\x4a\xf1\x98\x11\x80\x16\xfb\x17\x58\x5c\x7c\x19\x8d\xf0\x8f\x40\x0b\x90\xa0\x1f\x41\x33\x4e\x93\x8f\x00\x8b\x9b\x73\x41\x44\xf9\x5a\xa9\x8a\xed\xd3\x7c\xb8\x35\xcd\xb7\x36\x67\xd9\xb9\x8d\x59\xb6\x3b\x2c\xb3\x8b\x83\x4a\x3d\x91\xd7\xb4\x91\x31\x06\xc4\x94\x2b\x34\xf3\x0e\xe7\x4a\x8f\xca\x8c\x8f\xca\x5c\x3f\x2c\x33\x7d\x74\xd2\xaf\xf7\x1e\x0d\xea\xbd\x87\xc3\xf9\xe1\xa3\x41\x3d\x39\xed\xd5\xd3\x9a\x9c\x2b\xcf\xd6\xdf\xed\x4b\x23\xeb\x9b\x38\x05\x5c\x86\x58\xc1\x49\x29\x95\x9d\x0a\xe3\xed\xdb\xb7\x21\xe6\xf6\xb8\x7e\x30\x00\x21\x17\x7d\x92\x03\xc8\xf3\x9a\x8a\x33\xa7\xf9\xf0\xd2\xa8\xb8\xf8\xc4\xb8\xf8\xc4\x99\xd3\xec\xd3\x9b\xb3\xfc\x13\x6b\x95\xba\x92\xd7\x74\x8e\x98\x86\x04\x0c\x88\x2d\xc8\x31\x32\xd9\x82\x34\xca\x4a\x3d\xe5\xf1\xf9\x09\xef\xcf\x46\xfa\xde\x49\x51\xdf\x1a\x0d\xea\x1f\x3f\xd8\x28\x6f\xde\xdf\x2a\x3f\x3c\x18\x56\x23\xb3\xec\x3d\x47\x04\x52\x8d\xf5\xd1\xad\x9c\xdb\xda\xda\xc2\x1f\xfd\xd1\x1f\x2d\x33\x70\xa4\xfa\x2b\xee\xab\xae\xfe\x4b\x5d\x6b\xa0\xbd\x73\xee\x22\xad\x13\xd1\xb3\x96\x20\x33\x44\xda\xf5\x91\x1b\xad\xb4\x99\x9c\xab\xb5\x5d\x12\x2d\x99\x8c\xa0\xa6\x98\x31\x2e\x0c\x22\x72\xaa\x68\x92\x24\x2b\x18\x5d\xc8\xe1\x13\x7e\x62\xc9\x18\x84\x99\x9c\x00\x28\x6d\x57\x16\xb5\x27\x87\xa5\xaa\x78\xed\xda\x35\x65\x77\x2a\x4c\x84\x55\xc0\xc6\x32\x50\xb2\x32\xd0\x7c\x8c\x78\x8b\xc6\xc1\xe3\x86\x55\xc1\xc8\xaa\x21\x65\x29\x5a\x35\xef\x55\x2d\x3a\x5d\x69\xba\x82\xd3\x3c\x53\x96\x17\x9d\xd1\xf4\x74\x2b\xbb\x33\x1f\xd4\x7b\xbd\x69\xbd\x93\xd5\x3c\x0c\x37\x82\xb3\xab\x86\x12\xf0\x40\x8c\x45\xa9\x2d\x23\xb0\x59\xb6\x41\x86\x9d\xc3\x60\x5f\x86\xdb\x08\x18\x82\x13\x87\x71\x85\x32\xde\x00\x11\x93\x36\xa8\x6b\x54\x0e\x99\xf7\x01\xb8\x61\x21\x43\x9d\x3b\xc7\xbf\xf7\x13\x7f\xd9\x4d\x98\x07\x42\xf0\x23\x15\x15\x89\x7b\xec\x03\xab\x5c\x90\x11\xd4\xb1\xf5\x54\x56\xd8\xb9\x94\x08\x7a\xbe\xa6\xf6\x66\xeb\x6a\xaf\xee\xd1\x44\xce\x6f\x81\x77\xed\x38\xa1\x2c\x5d\x21\x9f\xf9\xcc\x67\xd4\x8f\x7f\xfc\xe3\xd6\x38\xb0\xee\x11\x31\xa9\xd3\xa6\xa9\xd0\xf0\xc4\x12\xde\x14\x6f\x05\x43\xae\x15\xf2\xfd\xf5\xf9\x9d\x1f\x5f\x38\xc9\xcb\x4c\x97\x57\x8e\x06\xcf\x6d\x9f\xe6\x17\x7b\x35\x0d\xe4\x12\x65\xcf\xb2\xec\xac\x1f\x12\xff\x4d\xbf\xc5\x26\x32\x0e\x2d\xc5\x64\xd0\x63\x6c\xe5\xae\x89\xab\x93\xbe\x3e\xbc\x73\x66\xf6\xd3\x1b\xbb\x93\xd7\xee\x6e\xcd\xde\x2b\x33\x3e\x02\x61\x42\xa0\x09\x8c\x9b\x88\x88\x4a\x66\x2e\x85\x80\x6f\xed\xe3\x22\x8e\x41\x48\x0a\x1e\x09\x02\xac\x55\x01\x6d\xfe\xd9\xf0\x54\x46\xbe\x5e\xaa\xc1\xb9\x49\x6f\xeb\x89\x71\xef\xd2\xce\x49\xf1\xa9\xad\x69\xfe\xf1\xe1\x5c\x5d\x2a\x2a\xda\xcd\x6b\x75\x2e\x63\x6c\x11\x53\x41\xe1\x24\x5d\x30\x50\x32\xf1\x44\x13\xa6\x5a\xf1\xa8\xcc\x78\xff\xa4\x57\xbf\x3f\x5a\xab\xde\x79\x38\xac\xde\x3d\x18\xce\x3f\x3c\x1c\xce\x0f\x0f\xd7\xab\xb1\xf9\xde\x95\xa9\x8b\xb3\x22\x59\xc5\xc0\x0a\x6c\x6b\x7d\x89\xbf\xfd\x82\xd0\xd9\x17\x57\xaf\x5e\xc5\xe7\x3f\xff\x79\x75\xf1\xe2\x45\xab\x80\x38\xcb\x13\xc2\xb6\xe4\x00\x72\xa5\x51\x6c\xce\xb2\x8d\xdd\xe3\x62\xf7\xd2\xa8\xff\xdc\xc5\x51\xf1\xc2\xd6\x2c\xff\x5c\x51\xd1\xe5\x4c\xd3\x36\x01\x43\x80\xf2\xd6\xa4\x76\x37\x36\x9a\xff\x8a\x31\x54\x4c\xdb\xb9\xc6\xa5\xfe\x5c\x7d\x6a\xa3\xcc\xbe\x78\xf6\x94\xbf\x74\x7e\xd2\x7b\xfb\x89\x93\xe2\x2f\xee\x6d\x96\x6f\xdd\xdf\x2c\x6f\x1f\x0e\xe7\xa3\x32\xe7\xa9\xa9\x43\x25\x78\x9a\x05\x32\x0a\x00\xae\x5d\xbb\x16\xbb\x06\x63\x5e\x9c\xba\x7e\x5c\x6b\x4c\x4b\xc9\x5f\x65\xcb\xff\xb8\xf0\x96\x39\xec\xfb\xdf\xff\x3e\xbe\xff\xfd\xef\x4b\xdf\x9c\xf3\xb3\x0a\x94\x06\xa0\xd9\xea\xdf\xba\x8b\x98\xb8\x02\x51\x21\x89\xcb\xf3\xc9\xd6\xfa\x81\x96\xa9\xd4\xe9\xa1\x11\x93\x03\x42\xe0\x13\x10\xaa\x61\xde\xe9\x32\x43\x8b\x76\xb0\x17\x8c\x50\x6b\x18\x8d\xc5\x25\xaf\xcd\x92\xe8\xc5\xd6\x08\x17\x3a\xb6\xfb\x5f\x26\x10\x3b\xfb\x3d\x0a\x5d\x83\x45\xbe\x4f\xe5\xdb\x95\x87\xbc\x8f\x9f\xa5\xf2\x58\x56\xbe\x4c\xfb\x38\x08\x3b\x4e\x17\xd7\x69\x95\x3a\xac\xd2\x37\x29\x0b\xd3\xa2\x3e\x6c\xb5\x4f\x02\x16\xf1\xe7\x36\xec\x22\xa2\xb2\x1c\xaa\xa3\xd9\xba\xba\x3d\x18\xeb\xab\xaa\xe6\xa1\x77\xbf\x78\xe4\xee\x47\xab\x18\x89\x46\xc8\x47\x06\x09\x04\xa3\xde\xb9\x5a\x9a\x38\x1e\x18\x00\x96\x79\xb5\x30\x7b\x64\xc9\x70\xa2\x5f\x32\xc0\x84\x52\xe0\xe8\x30\xf0\x51\x70\x0b\xe0\xbb\x72\x49\xe4\xd9\x32\xd7\xf8\xcd\xd6\xa4\x9b\xc3\xd3\x9c\x79\x27\x41\x8f\xf9\x47\xce\xc2\xc2\xc6\x68\x43\xae\x2a\x31\x43\xb0\x69\xea\x1c\x93\xd9\x50\xdd\x2b\xd7\xd4\x81\xce\x30\x15\xa6\x71\xbb\x59\x9c\x13\x5c\x10\xe0\x05\x00\x0c\x68\x69\x8d\x8d\x5e\xaf\xa7\x7e\xef\xf7\x7e\x0f\x32\x2e\xf9\x3d\x5d\x2a\x23\x98\x4a\xa9\x41\xdb\x89\x90\x55\x06\x75\x7f\xb3\x7c\xaf\x52\x5c\xcd\x7a\x7a\xfa\xcc\xe1\xe0\xb9\x73\x93\xde\xa5\x7e\xa5\x36\x94\x39\x13\xcd\x37\x48\xf4\xaf\xe8\x1e\xe9\x12\x92\xdf\xcb\x7f\x67\xdf\xbf\x36\x1e\x13\xeb\x79\xc6\xd3\xd1\xa0\xda\xff\x60\x7b\x76\xf3\xa7\x3b\x93\xb7\xee\x6f\xce\xdf\xab\x15\x1f\x31\x78\x42\xa0\x31\x33\x4f\x00\x38\xab\x8b\x00\x77\x72\xe9\x38\x80\xc0\xb2\xee\xfa\x0d\xf0\x7b\x80\x44\x3b\xb5\x76\xb9\x42\x72\x02\xe5\x45\x4d\x83\xf3\x27\xbd\xed\x27\x47\xfd\x2b\x17\x47\xc5\x73\xe7\x4e\xf3\x5f\x1c\x96\xd9\xa7\x8a\x5a\x5d\x52\x1a\xdb\x04\x0c\x00\x6f\x99\x92\xe3\xc4\xdf\x9b\x11\x58\x43\xf7\xe7\x5c\xae\xcf\xb2\xa3\xb3\xa7\xf9\xbd\x0b\xc7\xfa\xd6\x71\xbf\xbe\xb9\xb7\x51\xfe\xe8\x83\xb3\xb3\x9b\xfb\xeb\xe5\xde\xa4\xd0\x53\xdd\x8c\x03\xeb\xda\x8b\xdd\xbe\x80\xb0\xbe\x44\xc2\x7a\x11\x7f\x6a\xf1\x96\x67\x9e\x79\x46\xdd\xba\x75\x4b\x7f\xf3\x9b\xdf\x94\x96\x26\xe9\x2e\x53\xe4\x27\xcb\x16\xfd\x5a\x15\x3b\x27\xbd\x9d\xa7\x8f\x06\x9f\xb8\xf4\xa8\xff\xc2\xb9\x49\xfe\xfc\xda\x3c\x7b\x2e\xd3\xd8\x25\x50\x28\xc3\x63\xd0\x12\x68\x22\xc2\xfd\xda\xb8\x9c\x86\x4a\xd3\x30\xd3\xbc\x53\x54\xea\xea\xc6\x2c\x7b\xee\xdc\x49\xfe\xe6\xce\x49\xef\xd5\xf7\xb7\xa7\x6f\x7e\x78\xa6\xbc\x7d\xd2\xaf\xa7\x76\xdc\x9a\x71\x6c\xdb\x69\xff\xd4\xcb\x2f\xbf\x0c\x22\xc2\xe9\xe9\x29\x5e\x7f\xfd\x75\xfc\xe5\x5f\xfe\x65\x0a\x9c\x74\xf1\xec\x2e\xd9\xb7\x48\xe6\xa8\xcc\x3c\x74\x8a\x91\xb9\xb7\xd7\x81\x7c\x8f\x2a\x11\xd8\xd3\x04\x68\x21\x66\x26\x63\xee\xca\x00\x64\x44\xd4\x63\xe6\x82\x88\xfa\x20\x14\x9b\xd3\x6c\x7b\x77\x5c\x3c\x7b\x66\x9a\x3f\x9d\x35\x68\xd9\x10\x93\x41\xb8\xa6\xc8\xe6\x39\x07\x93\xee\x2c\xd3\x95\xc0\xc2\xc6\x83\x7c\x6e\x4d\xd7\x92\xd1\x89\x71\x2d\x59\x80\xdf\x8b\xc2\xbe\x97\xc2\xa2\xad\xdb\x80\x18\xb5\xe2\x93\x47\x83\xea\x83\xfd\x8d\xf9\xad\x93\xbe\x3e\x42\x63\x42\x9d\x01\x98\xc3\x7f\x24\x96\x7d\x95\xe7\x39\xdd\xb9\x73\x27\x50\x82\x90\x16\x8e\x8c\x74\xe0\xc4\x3b\x25\x9e\xa7\xae\xe3\xb4\xa9\x3c\x64\x1c\x19\x28\xf1\xac\x2b\x8f\xb8\xac\x65\xf5\x8f\x99\xff\xa2\xf4\x32\x5d\xaa\x4e\x71\x1c\x7b\xaf\x3a\x9e\xa7\xd2\xda\x5f\x9b\xff\xa2\x76\x07\xef\x9e\x7f\xfe\x79\x32\x81\xd1\x30\x1d\x32\x65\x67\xe4\x57\x01\xf4\x00\x14\x4c\xc8\xf2\x92\x37\xfa\x27\xfa\x52\x5e\xe2\x0c\x00\xe5\xb6\xf1\x70\xc2\x55\x0e\x3c\xab\x9d\x02\x24\x77\x21\x23\x16\x38\x81\xbc\x95\x41\xd0\x0f\x9b\xb1\x6c\xf7\xfd\xb0\x04\x10\x00\x71\x01\xe4\x03\x0b\x88\x79\xee\x48\x29\xe8\x09\x2b\x04\xfd\x8b\x56\xdd\xcd\x3b\x16\x37\xe1\xa6\x90\x70\x60\xa6\xd9\xfb\x85\x02\x0b\x01\x02\x00\x22\x80\x9c\xd8\xf2\x95\x38\xcc\x1f\x9e\x29\x8b\x4d\x86\xd9\x4b\x70\x53\x9f\x72\x4d\x7d\x38\xda\xcd\x5f\x9b\x6c\x67\xef\xd5\x39\x3d\x22\xa2\x53\x22\x3a\x65\xe6\x99\xb1\x8c\x54\xcc\x3c\x27\xa2\xda\x7c\x53\x26\x22\x16\xd6\x84\xd6\x18\xd2\x5a\xf3\x6b\xaf\xbd\xc6\xcf\x3f\xff\x3c\x29\xa5\x40\x44\x24\x34\x76\x77\x2d\xbb\x92\xec\x83\xc6\xca\x46\xa7\x85\x9e\x9d\x14\xfa\xb4\xcc\xf9\x14\x00\x14\x53\x96\x69\xca\x1b\x77\xba\xb3\x8f\x85\x3b\x8c\x0b\x9e\x15\xf0\xc3\x00\xb4\x09\xc6\xc7\xcd\xb7\xad\x32\x2e\x4f\x0a\x7d\xf4\x60\xa3\xfc\xe0\xd6\xf9\xe9\x8f\x7f\xfa\xc4\xe9\x5f\xee\x6d\xce\x3f\xd0\x0a\xc7\x0c\x3e\x21\xa2\x63\x00\x27\x00\x4e\x89\x68\x02\x60\x66\xfa\x67\x0e\x60\x6e\x84\xb9\xed\x1f\x10\x11\x5f\xbf\x7e\x5d\xef\xec\xec\xa8\xc9\x64\x12\xf0\x9f\x2f\x7c\xe1\x0b\xf4\xed\x6f\x7f\xdb\x7c\x0e\x96\xae\x10\x2b\xa0\x33\x22\xea\x11\x51\x2f\x63\xea\x6f\x94\xd9\xd6\x53\x8f\xfa\x97\x3f\x73\x7f\xfd\x97\x9e\x3d\x58\xfb\x8d\x9d\x93\xe2\x9b\xeb\x65\xf6\xa5\xa2\xa6\x8f\x29\xa6\x33\x0a\x54\x10\xec\x21\xb7\x76\x38\xc8\x39\x51\x1c\x2a\xa8\x0c\x22\xa2\x3c\x03\x6d\xe4\x5a\xed\xf6\x2b\xf5\xcc\x7a\x99\x5d\xdd\x9e\xe6\x4f\x9e\x39\xcd\x87\x19\x53\xcd\x84\xaa\xcc\xb9\xd6\xca\x88\xf7\x46\xe1\x66\x61\x71\x91\xdf\x92\xbf\xf4\xa5\x2f\xd1\xab\xaf\xbe\x9a\xe2\x09\x29\xbe\x11\xc8\xcc\x47\x8f\x1e\xb1\x9c\x90\x2c\x81\x1c\xfc\x8a\xa1\x1e\x80\xfe\xa0\xca\xd6\x2e\x8d\xfa\x97\x3f\xb5\x37\xfc\xf2\xc7\x0e\xd7\xbe\x75\x7e\xd2\xfb\xc6\x60\xae\x3e\xab\x98\xce\x12\xc2\xfd\x6b\x64\xc1\xce\xcb\xe0\x91\xab\xe0\x0d\x32\x3e\xa3\xe9\x4b\x1a\xf6\x34\xed\x0e\xe6\xea\xf2\xe6\x2c\x7b\x72\xa3\xcc\x0a\x02\xcd\x66\xb9\x3e\x9d\x15\x3c\x37\xc3\x95\x4d\x3f\x48\x1e\xcc\xf6\xfe\x9f\xfe\xd3\x7f\xaa\xf7\xf6\xf6\xe2\xf6\xa6\x64\x1c\x10\xca\x27\x25\xe2\xa6\x70\x88\xcd\xc3\xe5\x9d\x25\x32\x5e\xc4\xd8\x53\xef\x15\x00\x7e\xf5\xd5\x57\xf9\x85\x17\x5e\x20\xd3\x40\x32\x83\xd2\x32\x70\xc7\xb8\x01\x0c\x36\xca\xec\xec\x13\xe3\xe2\xea\xf6\x69\xef\xe9\x9c\x69\x60\x33\x6d\x31\x3e\xdb\xad\xce\x07\xe9\x95\xba\x08\x57\xc2\x73\xa6\xe6\x63\x59\x1e\x11\xe8\x28\x96\x76\x6d\x0f\x39\x66\xe2\xf3\xb7\x11\x49\xc4\x0b\xa0\x92\x21\x88\x5a\x61\x76\x3c\xa8\x6e\x3f\x58\x9f\xbf\x7b\x3c\xa8\x2d\x70\x91\xfe\xdf\x1a\x1e\xc0\x10\x00\xfe\x77\xff\xee\xdf\xc5\x28\x7c\x59\x5f\xaf\x12\xba\xbe\xcd\xe3\xe6\xb3\x28\xef\x45\x60\xaa\x2b\x2c\x4b\xf3\x51\xeb\xf7\x38\xe9\x56\x89\x9b\x02\x78\xf1\xbb\x14\x91\xb9\xf0\xa5\x2f\x7d\xa9\xa1\x68\x21\x8b\xe0\x15\x02\xab\x1c\x34\x4b\x31\x15\xe5\xc4\x9c\x15\x13\x7e\xa2\x98\xea\xf3\x4a\x63\xd0\x30\x46\xc3\x20\x85\x65\x42\xca\x1b\x3f\x9e\xad\xd0\xb6\xfb\xa6\x84\xf6\x19\x38\x00\xee\xa5\xba\xb7\xd6\x18\x7a\x60\x84\xe5\x98\x66\x93\x00\x35\x31\x8b\x0b\x80\xbd\x75\xab\x8a\x0a\x12\x79\x10\x65\x15\x04\xb6\x35\x36\xc0\xc1\xc6\x21\x43\xa0\xa6\xc3\x5a\xf4\x69\xe9\xdc\x2a\x29\x36\x27\x17\x5f\xbc\x77\xf1\x25\x6f\x10\x96\x9d\x86\x7f\x34\x7d\xc1\x44\x60\x85\x72\xb2\x9d\xfd\xe8\xd1\x85\xde\x1b\xe5\xba\xda\x63\xc2\x09\x11\x9d\xa2\x11\xd0\x53\x34\xca\x47\x05\x60\x6e\x84\x72\x6d\xbe\x29\x5f\xb9\x72\x85\xde\x7e\xfb\xed\x85\x63\xca\x82\x17\x22\x62\x61\x81\xb0\xc2\x3d\xfc\x54\xfe\x19\x01\xd0\x0c\xe6\x59\x8f\xcb\x51\xbf\x1e\x9f\xf4\xeb\x51\x99\xf1\xa9\x26\xd4\x19\x53\x66\xe6\x02\x2a\x8f\x27\x3d\x70\xf4\xdc\x9d\x7c\x1f\x03\x7e\x75\x91\x91\x33\x9a\xa0\x2b\xc5\xf3\xd3\x42\x1f\x1f\xac\xcf\xef\x7e\x70\x76\x7a\xf3\xdd\x9d\xe9\x8f\xde\x3b\x37\xbd\xf9\x70\x58\xdd\x07\xe1\x18\xc0\x31\x11\x9d\xa0\x01\x2d\x27\x00\x26\x00\x66\x44\x34\x33\x7d\x32\x37\x7d\x62\x5d\x06\xd6\xca\x88\x57\x5f\x7d\x95\x27\x93\x89\x64\x9d\x0c\x00\x16\xb4\x40\x80\x7a\x0b\x5a\xd0\x58\x59\x7a\x00\x7a\x79\x4d\x6b\x67\x4f\x7b\xe7\xae\x1e\x0e\x3e\xf5\x99\xfb\xeb\x5f\x7b\x72\xd4\xff\xad\xf5\x32\xfb\x1b\x3d\xa6\xcb\x04\x1a\x04\xe0\xcd\x66\x0e\xcf\xc3\x25\x4f\x6f\xc6\x2b\xfb\xf1\x02\x8f\xb7\x89\xa9\xa7\x80\xed\x5e\xad\xae\xac\x97\xd9\x95\xed\x69\xef\xec\x7a\x99\x61\x9e\xf1\xe9\x2c\xd7\x65\x6d\xa5\xa2\x10\xca\xd1\xb7\x24\x22\xe2\x17\x5e\x78\xc1\x82\x17\x1b\xba\x8c\x00\xc1\x98\x11\x4b\x9d\x9d\xa5\x85\xc2\x55\x54\x3d\x30\x8a\xc1\x5c\x0d\x2f\x8f\xfa\x4f\x3f\xb7\xb7\xfe\xd5\xa7\x1f\xf5\xbf\xbd\x39\xcb\x5f\xec\x69\x7a\x12\xc6\xd2\xe4\x3c\x0e\x02\x94\x90\xe3\x1d\x1e\xb4\x04\x8a\x4a\xd0\x47\x62\xdc\x70\x53\x0f\x05\xac\xe7\xb5\xda\x1d\x56\xd9\xa5\xad\x59\x3e\x2c\x6a\x35\x3d\xee\xd7\xe3\x69\xae\x4b\x27\x26\x4d\x5e\x16\xd8\xd9\x36\x8a\xfe\x58\xc6\x4f\x21\xfa\x49\x2a\xb0\x94\x78\x1f\xe7\x41\x00\x38\x4b\x74\xf2\x2a\x21\x65\x95\xc1\x0b\x2f\xbc\x40\xdc\x38\xba\x89\xbc\x49\x34\x63\xe6\x1e\x35\x6b\xe8\xfb\x44\x54\x0c\xe7\xd9\x99\x27\xc6\xbd\x8f\x9d\x3d\xcd\x9f\xce\xb5\x1a\x5a\xca\x0d\x26\x0f\x3a\x45\x49\x70\xa8\x08\xb4\x58\x8d\x43\xba\x7a\x9a\x7c\xec\xb5\xf9\xb4\x42\x43\x81\xcf\x2d\x30\xbf\x3b\xe6\x2c\xca\xf6\xbf\x26\x06\x59\x5f\x3a\x50\x2b\x2e\x4f\xfa\xfa\xde\xfe\xfa\xfc\x9d\xa3\xb5\xf9\x21\x1a\x1f\xf0\x1c\x1e\xbc\x58\xe0\x62\xab\xca\x62\x90\xcb\x3e\x97\x1f\x28\xee\xdb\xf8\x3e\xf5\x8d\xba\x84\xab\x1c\x18\x71\x19\xa9\xf4\x5d\xf9\xdb\xfa\xc6\xe5\xc8\x5f\x12\x7f\xa9\x81\x19\xd7\xab\xeb\xdd\xa2\x7e\x49\xd5\xaf\xab\xbe\xcb\xfa\x70\x51\x3d\x17\x59\x1c\x63\x97\x13\xff\xda\xaf\xfd\x9a\xfa\xd7\xff\xfa\x5f\xeb\x2f\x7d\xe9\x4b\x76\xdc\x5b\xc6\x1c\xd0\x00\x2c\x53\x22\xf4\xb4\x42\xd6\x2b\x79\xb3\x3f\xe1\xdd\x7c\xce\x67\x24\x0e\x27\x23\xd8\xad\xa8\xb6\xbb\xe4\x3a\x01\x6c\xc6\xb3\x9d\xec\x1a\xee\xeb\x46\x4e\x03\x77\x20\x45\x02\x73\x00\x81\xb5\xc4\x02\x71\x0b\x26\xe0\xa4\xa2\x68\xbe\x60\x6f\x82\x3c\x25\xbd\x5a\xd6\xe5\x98\x27\xf9\x94\x96\xb9\x3a\x00\xc6\x22\x67\xd9\x00\x8a\x18\xac\x05\x27\xe0\x00\xb0\xb8\xd4\xd2\x72\xc4\x2e\x96\x11\xe6\xbe\x02\xce\x29\x6c\xea\x36\xef\xd3\x83\xd1\x6e\xfe\xea\xf1\x4e\xf6\x8e\x2e\xd4\x11\x11\x9d\x18\x77\x88\x75\x85\x94\xc6\x24\x5e\xa3\xa1\x61\x83\x49\xc1\xff\xe2\x5f\xfc\x0b\xf9\xed\x93\x74\xfb\x5b\xbf\xf5\x5b\xea\x3b\xdf\xf9\x8e\xb6\xe0\x45\xb8\xcc\x03\xd0\x62\x98\xbe\x64\x65\x36\x2f\x5d\x65\x3c\x3f\xee\xd7\x93\xc3\xe1\xfc\xe1\x71\xbf\x3e\x2a\x33\x9e\xd4\x0a\x35\x53\x5b\xc1\x14\xd8\xb6\x55\x25\x26\x68\x56\xe0\x5a\xf1\xbc\xcc\x78\x76\xd2\xaf\x47\x0f\x87\xd5\xdd\xdb\x67\x66\xef\xbc\xbb\x33\xfd\xd1\x3b\x3b\xa7\x37\xee\x6d\x95\x1f\xcc\x7a\xfc\x88\x99\x8f\x01\x9c\x10\xd1\x18\x0d\x60\x19\x9b\x49\xc4\xa7\x30\xd6\x64\x03\x56\x6c\xbf\xd4\xc6\xea\xc2\x00\x70\x78\x78\x88\xb7\xde\x7a\xcb\xb6\x43\x01\xd0\x5f\xfe\xf2\x97\x95\x04\x2d\x72\xf5\x90\x00\x2d\x39\x33\x17\x3d\xad\xd6\x9e\x18\xf7\x9e\x78\x6e\x6f\xfd\x0b\x9f\x7a\x30\xfc\x3b\xe7\x26\xbd\x6f\xf5\xab\xec\x33\x04\xea\x37\xdf\xae\x19\x2b\xd2\x82\x00\x41\x2b\x4e\x5e\x08\xcb\x92\x14\xd6\xb6\x7b\xe4\xd9\x4d\x0a\x94\x65\x4c\xe7\x06\x73\xf5\xb1\xcd\x32\xbb\xb0\x51\x66\xba\xcc\xf5\xc9\xb4\x93\x3d\x4b\xda\x00\x00\x20\x00\x49\x44\x41\x54\xa7\x67\x55\xc6\x15\x84\xa5\x45\x08\x69\x98\xef\xea\xc0\xcb\x68\x34\xa2\xc3\xc3\x43\x5b\x98\x0e\x4b\x0c\xf9\xa2\xd8\xaf\x46\x4e\xc8\x95\xfd\x51\x00\x28\xfa\x95\x1a\x5e\x7d\x38\xb8\xfa\xd9\xfb\xeb\xbf\x7a\x69\xd4\xff\xf6\x70\x9e\x7d\x5e\x31\x6d\x5a\x41\x46\x62\xfe\x99\xe7\x17\x70\x0a\x89\x79\x01\x0f\xe9\x20\xad\x46\x2e\xbe\x07\x3e\x96\x67\x10\x08\x94\x67\x1a\x67\x07\x95\xba\xbc\x39\xcd\xcf\x0c\x6a\x75\xb4\xbf\x31\x7f\x38\xcf\xb8\xb6\xe6\x3d\x31\x81\xd9\xf5\x8b\xb5\x44\x59\x00\xa3\x94\x52\x22\xa2\xf3\xc8\x98\xbf\x78\x7e\xa2\x1c\x3b\x8c\x44\xdf\x89\x3c\x38\x13\x0f\x52\x44\xb9\x4c\x90\x11\x00\x7e\xf1\xc5\x17\xd5\xed\xdb\xb7\xf9\x85\x17\x5e\x20\x1b\x84\xaf\x2e\x33\xd6\x16\x6b\x02\x1b\xac\xcd\xd5\xe6\x13\x27\xc5\x33\xe7\x26\xbd\xab\x85\xa6\x75\xc9\x58\x43\x50\x01\xf1\x04\x08\x78\xaa\xfb\x50\x61\x3a\xb9\xdc\xd3\x33\x32\x08\x20\x24\xd9\xb1\x2c\x57\x3c\xb1\x79\xca\xca\x90\xcf\x8b\x09\x60\xe2\x6a\x52\xe8\xfb\xfb\xeb\xf3\x77\x1f\xae\x57\xf7\xa9\x31\x31\x5b\x6d\xad\x86\x9f\xc4\x64\x3f\x08\xbf\xfa\xea\xab\xdc\xef\xf7\x55\x5d\xd7\x52\x30\xc6\xfd\xbb\xe8\x7e\xd1\xb7\x88\x99\x9a\x14\xba\x81\xb0\x7d\xcc\xfc\xe3\x77\xa9\x5f\xf9\x17\xc7\x8f\x41\x42\x60\xf2\x4b\xc4\x5f\xd5\x1a\xb5\x68\x1e\x4d\xfc\x3c\xae\x57\xaa\x9e\xb2\x4e\x31\x88\x89\xdb\xec\xae\xdf\x7d\xf7\x5d\xfe\xf6\xb7\xbf\xad\x36\x37\x37\xa5\xf6\x6c\xaf\x2d\x68\xb1\x00\xbe\xd9\xbd\x32\x23\x45\x8c\xbc\x38\xe5\x73\xbd\xa9\x3e\x47\x9a\xfb\x8e\x89\xc0\x8f\x53\x58\xa0\xec\x84\xb6\x90\xfe\xd6\xb2\x68\x2a\xd3\xa4\xf7\x62\xac\xe9\x74\xf3\xdf\x31\x16\x0b\xc4\xc9\x30\x7d\xd3\x0c\x7b\xe2\x73\x20\xec\xad\x85\xc5\x32\xca\xd6\x5a\x27\x6f\xd9\xf0\x59\x1a\x10\xe1\x69\xc7\x09\x16\x7b\x16\x8f\x7b\x0e\x5b\x98\xa8\x42\x7b\x1b\x83\x06\x30\x85\x2b\x9f\x58\x30\x6c\x07\x50\x1a\x55\x3a\xcc\xc7\x12\xb1\xab\x03\xf4\xe9\x99\xec\xc7\x0f\x2f\xf5\x5e\x2b\xd7\xd5\x7d\x56\x8d\x90\x26\xa2\xa9\xf9\x9b\xa1\x11\xd0\x73\x66\x76\x6e\x22\x98\xf9\x1b\x91\xe2\x91\x1c\x8b\x37\x6e\xdc\x60\xa0\xb1\xbc\x58\x7e\xe8\x87\x43\x98\x4e\x08\x44\x6d\xe2\xd4\x64\x8f\x0b\x20\xd4\xf3\x9c\xe7\xa3\xb5\x6a\xb4\xbf\x31\x3f\x7c\xb4\x56\xed\x8d\x06\xf5\xe1\x69\xa1\x4f\xe6\x99\x9e\xd6\x8a\xcb\x3a\x43\xad\x09\x73\xad\xb8\xd6\x04\xd6\xc4\xac\x09\x55\xa5\x78\x3e\xcf\x79\x3a\xeb\xe9\xd3\x71\xa1\x1f\x3d\x1c\x56\xf7\xef\x6e\x95\xb7\xde\x3f\x3b\xbb\xf9\xee\xf9\xd3\x1f\xbf\xb3\x73\x7a\xf3\xde\x56\x79\x7b\x5a\xf0\x43\x34\x56\x96\x13\x22\x3a\x31\x96\x96\x09\x33\x8f\xa9\xb1\x3e\x4d\xc8\x6c\x9e\x67\x94\x32\x3b\x57\xcb\xf1\x35\xb3\x3c\x9c\xfe\xfd\xbf\xff\xf7\x98\xcd\x66\x0c\x00\x45\x51\x50\x5d\xd7\x2c\xdc\x43\x52\x58\x3b\x21\x6d\x56\xcd\x14\x19\xd3\x60\x77\x5c\xec\x3e\xb7\xb7\xfe\xe5\x8f\x1f\xac\xfd\xdd\xad\x59\xfe\xf5\x9c\xd5\x45\xf2\xc6\x76\xff\xbd\xed\x58\x17\x56\x41\x3b\xf7\xc9\x0e\x07\x2b\x82\x19\x12\xa4\x7b\x9a\xb2\xd7\x76\xbc\x2b\x50\x91\x6b\xf5\xe4\xda\x5c\x3d\xb9\x39\xcb\x51\x65\x78\x34\xe9\xe9\xc9\x3c\x63\xed\x89\x24\x9c\xc3\x63\xc6\x06\x31\x33\xdf\xbd\x7b\x17\xe6\x54\xe5\x14\x6f\x65\x00\x3c\x1c\x0e\xd5\x7c\x3e\x67\xa3\xe0\x98\x2c\x28\xd8\x54\x0e\x40\x01\x46\x41\xc0\xe0\xe9\xa3\xfe\x53\x9f\xff\x70\xe3\x37\x2f\x1e\x17\xff\x7b\xbf\x52\x9f\x56\xa0\x41\x28\x1b\xbd\xe0\xb3\xc0\xcd\xcb\x39\x0a\x2d\x99\x08\x95\x02\x11\xd5\xf5\x65\x28\x11\x0d\xd5\x31\xad\x17\x35\x3d\xb5\x31\xcb\xb6\x32\xc6\xbd\xc3\xe1\xfc\xb8\xca\x78\x6e\xe8\x8d\xcd\x58\x75\x80\x5b\x22\x75\x03\x5e\x62\x50\x22\xff\x24\x9f\x8e\x79\xbf\xac\x66\xd2\x4b\x91\x5a\x0e\x9d\x9a\x54\x94\x9a\x29\x2c\xe3\xa6\x26\xe6\xb6\x8e\x88\xb7\x69\x34\x71\x55\x29\x6d\xb6\xfd\xf7\x93\x09\x1d\xb3\x31\x55\x8e\x19\xa5\x67\xbc\xf1\x0b\x7b\x1f\x7e\x92\x20\x1a\x99\x8f\x27\x60\x8d\xf7\xcb\xb7\x3f\x66\x5c\x84\x6c\x1b\x11\x41\x31\x15\x45\xad\x86\x85\x56\x03\x02\x94\x16\xa6\x3f\xe1\xb3\x6c\xa5\x7f\xf1\xc5\x17\xf1\xdd\xef\x7e\x37\x91\x33\x80\x6e\x61\xfc\x51\xc3\x5f\x65\x7e\x1f\x35\xaf\xae\x89\x58\x5d\xe3\x6c\x59\x19\xcb\xe2\xfd\x3c\xed\x8d\x27\x8f\xad\x94\xd7\x7f\xf8\x0f\xff\xc1\xee\xc3\x20\x8f\xbe\x90\x93\x73\x35\x9a\xc9\x9f\x8d\x3b\x91\x50\xce\xd6\xd5\x83\xd3\x33\xea\xd6\xda\xb1\xba\x92\x55\x7a\x0b\x80\x03\x24\xed\xf1\x2f\xc1\x05\x1b\x59\xdc\x3c\x0b\xe7\x8b\x88\x34\x06\x98\x30\xfb\x34\xde\x8f\x60\x0b\xb0\x68\xde\xe4\x8f\xc4\x0a\x25\x0b\x5e\x60\x28\x4a\x10\xa9\xdd\x6d\xba\xa1\x5f\x72\x8b\x93\x24\xe5\xc9\x49\xa1\x2e\x0f\x5b\x31\xc1\x80\xc5\x4e\x33\xbe\x5d\x16\x70\xb8\xba\x78\xa4\x16\xda\x2f\x7c\x8d\x7d\x9d\xfd\x53\x9b\x47\xd5\xa3\xa3\x93\x33\xea\xa7\xa7\x9b\xd9\x03\xdd\x6c\x3a\x67\xad\x2b\xd2\xcd\x0b\x84\x13\x33\x41\xd4\x9a\x8c\xb9\x2c\xc8\xb1\xd0\x9a\xb4\x2a\x26\x39\x02\x7e\xf2\x2f\xc8\xbb\x5f\xdc\xd8\xd1\xe0\xf2\xb4\xd0\xe5\xfb\xbd\xe9\xa3\x0f\xce\xce\xee\xac\x95\x6a\x73\xfb\x34\xdf\x3a\x33\xcd\xb7\xd7\xcb\x6c\xa3\xa8\x68\x50\xd4\xaa\x28\x6a\x35\xc8\x34\x72\x4d\xd0\xf3\x8c\xa7\x65\xae\xcb\x52\xe9\xf2\xa4\xa8\x47\x8f\xd6\xea\xd1\xd1\xda\xfc\x68\x9a\xeb\x49\xad\x70\xca\xe0\xa9\x01\x26\xf2\x6f\x62\xff\x4c\x7f\x4c\xc8\xaf\x22\x2a\xe5\xa4\x65\x5b\x3f\xdb\x06\x31\xf7\x07\x00\x54\x59\x96\xc1\xbe\x24\x26\x9e\xb4\x2c\x28\x08\x41\x7d\xfe\xa4\x77\xee\x53\x0f\x86\xcf\x7f\xec\x60\xf0\x7f\x6c\x94\xd9\x4b\x66\x49\x6f\xb4\xb5\x45\xb0\x36\x34\xe4\xd3\xc2\x12\xee\xe2\x3a\x00\x2b\x41\x78\xf4\x95\x04\xd8\x26\x42\xde\xaf\xb2\xcf\xee\x1e\xd3\x46\xae\x69\x2b\xd7\xf4\x7f\xff\x74\x67\xf2\xf6\x49\xa1\xc7\x16\x18\xa3\x19\x23\xd2\x0a\xa3\x89\x08\x2f\xbd\xf4\x12\xde\x7c\xf3\xcd\xe0\xdb\xc7\x63\x61\x32\x99\xe8\xc8\x45\x14\xfc\x31\x73\x4e\x68\x14\xfb\xad\x69\xbe\xf5\xb9\xbb\xeb\x5f\xdf\x1d\xf7\xbe\xdd\xaf\xd4\xb3\x60\xca\x17\xc9\xa8\x40\x86\x45\x6d\x74\x71\x84\x72\x12\x58\x44\x85\x5b\x55\x3e\xb7\xf7\x8a\xb1\xb1\x31\xcb\xfe\xd6\x27\x1f\xac\x4f\xe7\x19\x7f\xe7\x47\x17\x4e\xde\x9e\x14\x7a\xe4\x79\x11\x01\x66\xe5\x9c\x19\x13\xae\xfd\x9b\x9b\x9b\xea\xf8\xf8\xf8\x71\xe8\xa6\x0b\x6f\x00\x91\xbc\xb0\x16\x97\x45\xda\x6d\x97\xb6\xe9\xee\x6f\xdf\xbe\x6d\xfd\xba\x40\x83\x24\xad\xa6\x61\xb5\x4d\x3b\xbf\xa5\x07\xa0\x28\x6a\xb5\x79\x7e\xd2\xbb\xbc\x73\x52\x3c\x53\xd4\x6a\xdb\x76\xbc\x03\x91\x11\x68\x71\xcc\x4b\x7c\x1c\xff\x41\x24\x3f\x0b\xd8\xa3\xe7\x69\x42\xa3\x03\x04\x00\x92\x65\x06\xf9\xf8\x8f\x17\xcf\xa7\x11\x0c\x87\xca\x9c\x1f\x1e\x6c\x54\xef\xec\xaf\xcf\x3f\x64\x85\x29\x9a\x89\xb9\x33\xf2\xcb\xc6\x98\x9a\x99\xf7\x6c\xcd\x8a\x07\x07\x07\xb8\x75\xeb\x96\x44\x98\xb2\x5f\xed\x78\x7c\x1c\x57\x49\x8c\x4a\x6d\xcb\x62\xad\x50\xe6\x9f\xca\x6f\x91\xab\xd0\x99\xe8\x44\xbc\x55\x5d\x5a\xcb\xca\xb0\x79\x21\xf1\x2e\x55\x86\x6c\x47\xca\x5d\xd5\x55\xa7\x45\x79\xca\xfa\xa5\xbe\xc1\xb2\xbe\xe1\x57\x5f\x7d\xd5\xd2\x40\x33\x9c\x3c\x51\xcb\x09\xf0\xb9\xd5\x38\x75\x46\x04\x50\x5e\x4c\xf5\x56\x31\xd5\xe7\x14\xa3\x0f\x50\x20\x90\xfd\x3c\x0e\x29\xb0\x85\x25\xc4\x6a\x51\xce\xea\x41\x2d\x81\x6e\xb5\x2f\x3f\xfa\xe1\xb9\x5b\x60\x45\xa1\x28\x6f\x48\xa9\x21\x32\x25\x57\x27\x6f\x88\x26\xf7\x9a\x22\x09\x41\x96\xee\x1c\xa7\x14\x19\x3a\x15\x59\xa4\xb1\xd6\x20\xf3\x5e\x1e\x0c\xe8\x94\x8f\x2e\xee\x6c\xaf\x4d\x7e\x0d\x36\x32\xd7\x04\x3d\x3d\x93\xbd\x75\xf0\x74\xef\x7f\x94\x6b\xea\x01\x14\x1d\x1b\xcb\xc2\x09\x33\xcf\xe0\x97\xfb\xce\xe1\x81\x4b\xdd\x74\x2b\xe1\x83\x0f\x3e\xa0\x93\x93\x93\x78\x6c\xa4\xe8\xcc\x31\x5c\x3b\xdf\xc5\xb5\xdc\x5b\x58\x6c\xdc\xda\x28\xa9\x6c\xde\xd7\xcc\x5c\xa3\x01\xb9\xd6\x6a\x6b\x81\x55\x45\x44\xb3\x2a\xe3\xd9\x71\xbf\x1a\x1d\x6c\x54\xfb\x1f\x6e\xcd\xee\xdd\xd9\x2e\xef\xde\xde\x9e\xdd\xb9\xbd\x3d\x7b\xef\xfd\xb3\xd3\xf7\xdf\x3b\x3b\xfd\xd9\xad\xf3\xd3\x5b\xef\x9d\x3d\x7d\xef\xce\x76\xf9\xde\x83\xcd\xf9\xdd\x51\xbf\x3a\x9c\xe7\x78\xc4\x0a\xc7\x20\x4c\x88\x9a\xd5\x42\xa6\xed\xc7\x68\x40\xca\x18\x0d\x70\x39\x85\x01\x33\x76\x32\x2e\x37\xab\x6d\xdc\xbc\x16\x33\xb6\x99\x99\xf1\xda\x6b\xaf\xc5\xb4\x4d\x2f\xbd\xf4\x12\x3d\xf1\xc4\x13\x56\xb8\x53\x24\xa8\x33\xf8\x1d\x6c\x07\xe7\x27\xbd\xb3\xbf\x70\x6f\xfd\xc5\x67\x0f\xd6\xfe\xcf\x8d\x32\xfb\x8a\x62\x5a\x6f\x3a\xb5\x6d\x21\x08\xc6\x86\x97\xbc\x86\x06\xe4\x70\x90\x13\x95\xa9\x2d\xac\xc5\xc7\x73\x69\xcc\x4d\xce\x74\xa6\x5f\xa9\x8b\x6b\xf3\x4c\xcd\x33\x7e\xf0\x68\xad\x1a\xd5\x2a\x00\x97\xf6\xe0\x4d\x6b\x6d\x60\x66\xc6\x0b\x2f\xbc\x40\xbd\x5e\x8f\xee\xdc\xb9\xe3\x46\xa1\x1c\x0b\x72\x19\xb8\x95\x8d\xc6\x2b\x51\x90\x99\xff\x49\xa0\x7e\xce\xb4\xfe\xb7\xde\x3d\xf3\xd5\xcb\x47\x83\xff\xab\x5f\xa9\x8f\x13\xa8\x47\x24\x15\x80\xb6\x8c\x72\xe4\x27\x57\x15\x46\x32\x54\x26\x92\xe9\x2c\xcd\x3b\x39\x68\x5f\x39\x90\x43\x20\x50\xaf\xa8\xe9\xf2\xc6\x2c\xef\x57\x19\xef\x1d\xf7\xab\xe3\x32\xd3\x76\xd3\x3e\x36\x6d\xb2\xb9\x3a\x7a\xf8\xfe\xf7\xbf\x9f\x9a\xac\xdd\xe5\x0a\x52\x88\x9a\x16\xbd\x97\x2d\x69\x1f\xa2\x14\x85\xae\xf7\x4a\xfe\x66\x59\xa6\x24\xea\x66\xb6\x5b\x8b\x73\x52\x93\xae\x94\x2e\x67\x99\x9e\x54\x19\x4f\x03\x50\xb0\xe0\x3a\xd5\x22\xd9\xe1\x48\xb4\x0e\xf2\x39\xb7\xdf\xc9\x7c\xe3\x33\xe0\x6c\x92\x88\x45\xba\xf6\x11\xa0\x32\xc6\xa0\x3f\xa7\x8d\xa2\xa6\x02\x08\xb6\x8d\x16\x02\xc3\x0b\x82\x84\xd6\xd6\x75\xdf\x65\x51\x58\x94\x5e\xf6\xf3\xaa\x2e\x94\x55\x96\xa5\xc9\xf7\x32\x8f\x55\xf3\x5a\x05\x71\xc7\xcb\x07\xbb\xd2\xc6\xed\x8b\xfb\x6b\x59\xff\x76\xe5\x99\xaa\x47\x9c\xbf\x0c\xc9\x3a\x4a\x2d\xda\x30\x37\x20\xdc\xc4\xc9\x6a\xf5\x25\x80\xe9\x6c\x9d\xee\x8f\xcf\x67\x3f\x9d\xae\xab\x0f\x99\xa0\xd9\x18\x34\xdc\x81\x3c\x6d\x5e\x60\x4b\x82\xb7\x58\xd8\x6d\xff\xd9\xb0\x2c\x76\x83\x56\xb8\xa1\x7d\xbc\x66\xbb\x5a\xef\x06\x07\x1a\xd7\x0b\xc9\xb8\xf6\xca\xe7\x0d\xa3\xbb\x26\x09\xc2\xd5\xca\x03\x06\x57\x9e\xd8\xcc\xd1\x55\xdd\xc6\x76\xed\x25\x51\x57\x5b\xef\x26\xa2\x3d\xe5\xda\x56\x8d\x7c\x06\x2e\xae\xc4\x42\x2d\x0d\xdb\x58\xbf\xaa\x3e\xed\x3f\xda\xc9\xde\x9c\x9c\xc9\xee\xb3\xc2\x04\xe1\x7c\x96\x92\xfc\xce\xa0\x72\xe7\x5c\x77\x06\x9b\x71\x05\xc4\xfc\x6c\xe9\xd8\x36\x7c\xc0\x59\x9f\xad\x52\x63\xc0\x80\xb5\xc4\x4d\x89\xc8\xee\x50\x3b\x36\xc0\x62\x04\xe0\xc8\xfc\x8d\x88\xe8\x10\xc0\x08\xc0\x11\x11\x1d\x31\x73\xf3\x0b\x1c\x54\x8a\x1f\x4c\x73\xfd\x60\xd2\xd3\x77\x4f\x7b\xfa\xfe\x5c\xf1\x03\x06\x0e\x6c\x7a\x22\x3a\x64\xe6\x23\x93\xfe\xd0\xa6\x35\xf9\x8e\x89\x68\x04\xc0\x02\x17\xb7\xb5\xbf\x00\x4c\x76\x8f\x1b\x37\x19\x97\x99\x93\x7b\xb6\xfc\xca\xaf\xfc\x4a\xb0\x01\x9d\xa0\x03\xcb\x1b\xad\x5b\x64\xb0\x3e\x53\x1b\x9f\x7c\xb0\xf6\xc5\x2b\x0f\x07\x7f\x67\x7d\x96\x3d\xaf\x18\x1b\x9e\x37\x47\x5b\x56\xd8\x39\x2d\xf0\x82\x95\x80\x00\xdc\xd8\x5f\x8a\x06\xa9\x13\xfc\x10\x91\xe4\x65\x84\xcf\x73\x4d\x17\xcf\x9d\xf4\xbe\xf6\x89\xfd\xb5\x6f\x5e\x39\x1c\x5c\xc9\x6a\x0c\x21\x0e\x26\x14\x6d\xb6\xae\xaf\x80\xf6\x45\x56\x76\xbc\xb8\xbe\xb2\x20\x8e\xfd\x8a\x2a\x7b\x56\x50\xd1\xab\x69\xe3\xf3\x77\x36\x3e\x75\xf9\x68\xf0\xdb\xfd\xb9\xfa\x04\x01\x85\x25\x0c\x22\xbb\x60\x84\xc3\x36\x08\x72\x60\xd3\x29\xae\x2a\x76\x6e\x26\x07\x4d\x76\x3c\xc6\xf5\xb5\x11\xa6\x92\x27\xb8\x7e\x33\xf1\x15\x63\x63\x73\x96\x7d\xf5\x13\xfb\x6b\x7f\x73\xe7\xa4\xb8\xd4\xd3\x6a\x60\x5c\xdf\x45\x04\x4c\x5d\x78\xf9\xe5\x97\xd5\xfe\xfe\xbe\xe4\xa1\xd2\x9a\x62\x9f\xa5\x78\x78\xfc\xac\xc5\x6f\x97\x01\x17\x19\x64\xe5\x82\xcc\xea\xba\x0e\x08\xd8\x7e\x48\x8b\x4c\x01\x37\x70\x34\x00\x5d\x29\xae\x66\x39\x4f\xe7\x8a\xcb\xb4\x1a\xdb\xa5\xdc\x8a\xb7\x0e\x45\xdb\x8f\xc3\x6d\xde\x9b\x00\x2b\xcd\x4d\x22\x82\x88\xc7\xd1\x17\x64\x66\x3f\x60\x9a\x06\x02\x20\x64\x35\x15\xfd\x4a\x0d\x8b\x4a\x15\x08\x4d\xa2\xf2\x37\x08\xdf\xfd\xee\x77\x63\xb0\xd1\x15\x16\xe6\x83\xf0\xe3\xdb\xdf\x45\x69\x7e\x5e\x17\x4a\xca\x04\xfa\x51\xf2\xf9\xab\x0e\x1f\xa5\x1e\xab\x84\x45\x75\x5d\xe5\x9d\x34\xab\x5b\xb0\x52\x39\x13\x3d\x61\x5a\x15\x34\x9a\x9c\xc9\xde\x3b\x39\x9b\xfd\xb4\x2a\xe8\xd0\x01\xe9\x00\x21\x58\xc6\x1c\x21\x06\x61\xa1\x70\x3e\xef\x10\x8a\xc3\x4f\xd1\x20\x81\x83\xbc\x4b\xc7\x41\x08\x41\x38\xd6\x92\xe3\x72\x14\x79\x4b\x11\x11\x82\x22\x99\xc2\xa7\x71\x06\x15\x9b\x3a\x62\x8c\x8e\xc9\xb2\xff\x0d\x9b\x19\x6a\xdd\x91\x3f\xc0\x6b\x8d\x16\xdc\xb0\xcf\x80\x88\x1d\xd3\xad\x73\x4c\x26\x5b\xea\xe6\xe8\x42\xef\x27\xac\x30\xe1\xf0\xdc\x1d\xb7\x12\x90\xda\x7b\xf0\x2c\x03\xbe\x0b\x69\x74\x7d\x7d\xdd\x6d\x58\xc6\xd1\x19\x46\x06\x08\xb8\x93\x96\xd1\x00\x05\xe7\xb2\x31\x16\x10\x0b\x2a\x2c\xe8\xb0\x40\xc6\x02\x8f\x43\x10\x8e\x40\x38\xb4\x7f\x0c\x36\xcf\xc8\xc5\x35\xa0\x45\x82\xa0\x11\x80\x91\x01\x47\x16\xb0\xd8\xbf\xa9\x99\x94\x6b\x97\x85\xcb\x33\x89\x5c\xfb\x27\x93\x49\xb2\x4f\x7a\xbd\x9e\x7c\x1e\xbb\x44\x1c\x68\x01\x50\x5c\x7a\xd4\xbf\x7c\xe9\x51\xff\x6f\x6c\xcc\xb2\xcf\x99\x8d\xe4\x82\xfe\xb3\x8e\x9e\x06\xa8\x88\x55\x43\x01\xb8\x6e\x5b\x52\xec\xf3\x20\x2f\xf2\x50\xc8\x91\x8e\x48\x17\x96\x4b\xaa\xa8\xe9\xf2\x13\xe3\xe2\x6f\x3d\x7b\xb8\xf6\x37\x2f\x1c\xf7\x77\x94\x76\x67\x1e\xd9\xed\x0d\xe2\xb6\xe1\xd3\x9f\xfe\x74\xdc\x76\x00\xd0\xf6\x70\x42\x34\xf5\x4f\xf5\x47\xae\x34\x86\x5b\xd3\xfc\xdc\xc7\x0e\x06\x5f\x5f\x2b\xd5\xe7\x54\xb3\x4f\x4d\xe0\x2e\x65\xf6\x54\x28\xe9\x24\xd5\x76\x81\xfd\x5b\x71\x2d\x35\x4b\x2c\x47\xd2\x5a\x8b\xb0\x5f\x6d\xfc\x5e\x4d\xbb\x67\x27\xf9\x4b\xcf\x1e\x0c\xbe\x78\xe6\x34\xdf\x11\xfd\x51\x44\xed\xb2\x6e\xc1\xf8\x94\x6d\x1b\x52\x8a\x60\x0b\xf8\x74\x84\xc6\x58\xb2\x24\x92\x6d\x9a\x15\x5a\x52\xf5\x73\x60\x0c\x00\x7f\xf1\x8b\x5f\x54\x4f\x3d\xf5\x14\x10\x9a\x7e\x14\x9a\xbd\x2c\x14\x35\x7b\xb9\xf4\x88\xa8\x00\xa1\xbf\x39\xcb\x9f\xd8\x1d\xf7\xae\x6e\x96\xd9\x93\x24\xd8\xa8\x61\x3b\x90\xf7\xee\x97\xfd\xa0\x73\xbf\xf6\xeb\xb8\x81\x0d\x8f\xa0\x65\xdc\xc0\x04\x13\x46\x08\x3f\xba\x34\x45\xdb\x15\x11\xde\x1c\x2e\xe7\xc9\xd4\x8a\x27\xa3\x41\x75\xe7\xc1\xc6\xfc\x67\x93\xbe\x1e\xa1\x21\xf6\x39\xda\x4b\xa2\x19\x00\x3f\xff\xfc\xf3\xb4\xb5\xb5\x45\xb7\x6e\xdd\xb2\xcd\x8a\x69\x46\xba\x27\xe2\x38\xb1\xfb\x88\x13\xcf\x64\x9a\x55\x5c\x39\x5d\x2e\xa9\x38\xc4\xae\x9c\xd8\x65\x93\x8a\x9f\xaa\xf7\x22\xd7\x8d\x34\x21\x76\xc5\x89\xaf\xb1\x20\x6e\x97\x1b\x69\x51\x5e\xab\xb8\x87\x3a\xfb\x55\xba\x4b\x11\x22\x8f\x60\x95\x11\xdb\x53\x6e\x89\xb2\xc6\x65\x84\xac\x98\xf2\x66\x6f\xc6\xe7\x88\x91\x87\x8e\xea\xb6\x0e\x49\xf2\x5f\x84\x67\x9a\xe8\x4d\x1a\xb7\xc4\x9a\xa5\x66\x6a\xe6\xbb\x18\xf4\x22\xa7\x9a\x34\x9c\x4e\x10\x59\x82\x3e\x42\x0a\x05\x02\x77\x53\xaa\x2e\x08\xf7\x69\x75\xdd\x4b\x68\xe6\xc5\xa0\x0d\x5a\x62\x6e\xe0\xf2\xa0\xa8\x7e\xb6\xf9\x6e\x86\x3e\x05\x6d\x21\x30\x9a\xc3\x2d\xd5\xed\x87\x97\x7a\x3f\x3c\x39\x9f\xfd\x0c\x84\xb1\xb1\x6e\x8c\xd1\x2c\x81\x9e\xa1\x99\x54\x6f\x69\xb7\x86\x85\x41\xc6\xad\xf3\x5f\xff\xeb\x7f\xc5\x78\x3c\x26\xad\xb5\x44\x87\x04\xcf\x80\x63\x3e\x09\x00\x6a\x3e\x9f\x6b\x00\xd8\xda\xda\xa2\xf3\xe7\xcf\xdb\xa5\x18\x44\xe1\x6a\x23\x7b\x2d\xb7\x4f\xd0\xd4\x6c\x86\xe7\x56\xf0\xa0\x59\x8a\x6c\xeb\x58\xa2\x01\x18\x25\x1a\x17\x97\xdd\x63\x65\x4a\xcd\x29\xce\x53\x32\x4b\xbc\xd9\x6f\x20\x37\x41\x33\xf1\xd6\xee\xcb\x32\x31\x71\x4f\x4d\xdc\x12\xcd\x5e\x2d\xa5\x71\x0f\xd5\x40\xeb\x1c\x22\x0d\x00\x8f\x1e\x3d\x92\x5b\xbd\x3b\x9a\x79\xe9\xa5\x97\xd4\x95\x2b\x57\xf0\x95\xaf\x7c\xc5\x0d\x20\x6a\x16\x67\x28\x66\xce\x00\xf4\x88\xa8\xcf\xcc\x83\xb3\xa7\xbd\xb3\xcf\xed\xad\xbf\xf8\xe4\x71\xf1\x6b\x83\xb9\xba\xaa\xd0\xcc\xe3\x90\x43\xc7\x3b\x23\x45\x30\xbc\x38\x1a\x06\x01\x41\x86\xf0\xdd\x65\x16\x8f\x5c\xc1\x68\xdb\x34\x06\x50\x96\x6b\x5a\xcf\x35\xa9\x2a\xe3\xfd\xfd\x8d\xf9\xfd\xb9\xd2\x95\x49\xe2\xbe\xbb\x70\x97\x70\xaf\xd7\xc3\xab\xaf\xbe\xca\x5f\xf9\xca\x57\x94\x75\x19\xd9\xdd\x76\x0d\x6f\x50\xe6\xe3\x67\x44\x94\xd9\xc9\xc9\x00\xfa\x83\xb9\x3a\xf3\xe9\xbd\xe1\x2f\x5c\x7d\xb8\xf6\x77\xfb\xb5\xba\x0a\x3f\x9a\x7d\x9b\x48\x50\x05\x7b\x59\xd5\x92\x8f\xe6\xd7\xd2\x86\xeb\x27\xb6\x95\xf6\xf9\x01\x11\xc9\x77\xf4\xa1\x55\x07\x32\x4d\xeb\x39\x53\x3d\xcb\xf5\xde\xc9\x40\x1f\x95\xb9\x77\xad\x5a\x57\x9a\x4d\x66\xe9\xe7\x63\x1f\xfb\x18\x1d\x1f\x1f\xd3\x68\x34\x8a\xb3\x96\x74\x14\xcb\x3a\x5b\x74\x40\x53\xe6\x5a\xad\x8a\x70\x62\x2d\x43\xa2\xa3\x96\xe9\x5d\x9a\xe5\x6c\x43\xd8\x6f\x0f\x8d\x9a\xa0\xcb\x4c\x9f\xce\x15\x4f\x34\xb8\x72\x71\xa3\x8c\x28\x7e\x2e\x07\xaa\xfd\x08\x96\x09\xba\x54\x2d\xdd\xb4\x15\xdc\xce\xe4\x42\x81\x0b\x34\xc3\xe8\x5a\xda\x5b\xe4\x7b\xa5\xa9\x28\x2a\x35\xec\x19\x57\x11\xc2\x7e\x69\xdd\x13\x91\xb5\xb8\xac\xa4\xb1\x27\x9e\xaf\xe2\x2a\x4a\xbd\x8b\xef\x3f\xaa\x2b\x27\x36\xf1\x75\xa5\xed\x72\xbf\x2c\xd2\x60\xe3\xdf\x2e\x97\x51\x2a\x8f\x54\xdc\x2e\x37\xd2\xb2\xbc\x52\xf1\xe4\x37\xed\xec\xd7\x68\x92\xa2\x2c\x37\xd8\x4e\x9e\xc4\xc4\x48\x9d\x61\x3c\xdd\xcc\xee\x8c\xcf\xe7\x37\xcb\x35\x75\x8f\xc9\x6a\xe6\x1c\x98\xb7\x83\x6b\xfb\xaf\x99\x79\x0b\x3f\x98\x43\x9c\x15\xd0\x0f\xb3\xdf\x43\x45\xbc\x94\x56\x11\xf7\xc0\x17\x6a\xa2\xb2\xa9\x8f\xaf\x87\xa5\x3b\x59\x4e\x4b\xaf\x21\x0b\x1f\x6c\x24\x9b\x13\xb9\x6b\x97\x2c\xc6\x6a\xb0\xab\x42\x8c\x68\x31\x98\x25\x4d\xdd\xec\xcc\xe1\xec\xea\xcd\x60\x22\x5d\x15\x74\x38\x3e\x9b\xbd\x7d\xbc\x93\xbf\xc3\x8a\x26\xf0\x82\xdd\xba\x8a\xac\xc5\xa5\x65\xa2\xb6\x7d\xb5\xb7\xb7\x07\x03\x42\xe2\x38\x31\xff\x4c\xba\x09\xfe\xdb\x7f\xfb\x6f\xfa\xc6\x8d\x1b\xce\x6d\x24\xe6\x4a\x38\x90\x62\x2d\x30\xa6\x5e\x76\x8b\xfd\x09\x8c\xd5\xc5\xb8\x8f\xc6\x30\x96\x17\x66\x1e\x11\x91\xb5\xbc\x38\xf7\x91\x71\x03\x1d\x02\x38\xb4\xcf\xcd\xbb\x11\x8c\xb5\xc5\xe4\x23\x77\xc4\x75\xd6\x27\xf2\xbb\x07\xdb\x39\x0c\xce\x3d\x04\x34\x63\xfc\xcf\xfe\xec\xcf\x80\x36\x2f\xc0\xf7\xbe\xf7\x3d\xfd\x87\x7f\xf8\x87\xee\xac\x26\x03\xd4\xed\x75\x4e\xcd\x96\x18\x79\x4f\xab\xe2\xca\xc3\xfe\xd5\x0b\xc7\xbd\x17\xd7\xe6\xea\x2a\x35\x9a\x3b\xe2\xf1\xeb\x46\x92\x19\x77\x52\x63\x4b\x81\x16\xe2\x68\x18\xb1\x17\xd0\x8d\xcc\x68\x23\x6b\x07\x7c\xa3\x32\xc1\x80\x62\x0c\x37\x66\xd9\x73\x17\x47\xc5\x97\x77\x8f\x8b\x5d\x05\x1a\xd8\x76\x50\xb8\x89\x9e\xbd\x06\xd0\xec\x90\xfe\xab\xbf\xfa\xab\x2e\x4f\x31\xbf\xc5\xc5\x77\xca\x0b\x90\x67\x1a\x83\x33\xd3\x7c\xe7\xe9\xa3\xc1\x97\x07\x15\x5d\xa5\x66\x43\xb8\xb0\x0f\x10\x91\x89\xa1\x65\xeb\x69\xf0\x34\x26\x49\x38\x52\x6c\x48\x3e\xe2\xe0\xb9\x94\xa7\x1c\x7e\x86\x80\xbe\x33\xa6\x8d\xad\x69\xf6\xb9\x4b\xa3\xfe\x17\xce\x9c\xe6\xbb\x30\xd6\x33\xe3\x36\x52\x30\xf3\xf8\x00\xb7\x33\x32\xfe\xcd\xbf\xf9\x37\xfa\x83\x0f\x3e\x58\xe4\x0a\xb2\x21\x85\x29\x62\xb9\x03\x00\x7a\x15\xe0\x92\x12\x8e\x9d\x42\xcb\xfa\xfc\xd0\x00\x98\xf8\xc0\xaa\xc6\x64\xda\x6c\x84\x54\xce\x73\x3d\xd1\xaa\x99\xa9\x9d\xc8\xa7\xf5\x2c\xf8\x06\x8e\xe1\x26\x18\x59\x2b\x69\xc4\xd8\xed\x08\xa0\x54\x9c\xf6\x93\x78\x61\x99\x61\xdb\x50\x8c\xa2\x5f\xab\xad\x41\xa5\x06\x08\x99\x58\xdc\xaf\xab\xba\x33\x52\x42\xbb\x2b\x9f\x94\xab\x68\x59\xfc\xd8\xb4\xfd\xb8\xae\x9b\x94\x89\xef\xaf\x2b\x3c\x4e\xdd\x96\xf5\x9b\x0c\x8b\xe2\x74\xb5\x6f\x51\x1f\x2f\xcb\xc7\xd1\x8b\x31\xbb\x5b\xd7\x80\x71\x19\xd1\x64\xde\xa7\xa3\xf1\xb9\xec\xd6\xf8\x7c\x76\xb3\x2a\xe8\x88\x03\x16\xd5\xe2\x46\x80\x15\xe8\xd4\x58\x21\xcc\xd6\x49\x70\x60\x20\x66\xd0\x52\x53\xb3\x20\x5c\x72\x68\xa7\xc2\xf9\x39\x2d\x76\x29\x29\x2c\x36\x42\xb3\xdc\xd8\x5b\x23\x23\x80\xe3\x4c\x1d\xe4\xe9\xd2\x2a\x06\x64\xe9\x99\xdd\xbd\xfd\x25\x01\x80\x5c\x59\x8e\x36\xc9\xcd\xbf\x71\x02\x88\x3c\x66\x83\x13\x68\x91\xb6\x4c\xcd\x66\x7b\x55\x8f\x46\x93\xed\xec\xdd\xd1\x85\xfc\xed\xf9\x40\x1d\x21\x5c\x45\xe3\xe6\x6f\x40\xcc\x43\x12\x2e\x1d\x5c\xbf\x7e\x5d\x5f\xbf\x7e\x5d\x27\x56\x46\x2c\xa2\x83\xe4\xf8\xfa\xef\xff\xfd\xbf\xeb\x1b\x37\x6e\x98\xea\xf9\xe3\x04\xcc\x98\x08\x0e\x61\x84\xb7\xa8\xd8\xd5\x3f\x13\x34\x2e\x1d\x0b\x5c\xec\xaf\x74\xf9\x38\x90\x22\xde\x1d\x89\xf8\xee\xcf\x5a\x5c\xe0\xe7\xb4\xc4\x9b\x67\x3a\x20\x67\x79\x39\xe0\x81\xf9\x9d\x3b\x77\x62\x7a\x73\x6d\x4e\xb8\x06\x02\x97\x08\x80\xc1\x7a\x99\x6d\x5d\x1a\xf5\xff\xb7\xcd\x69\xfe\x59\xa5\x69\xc3\x6b\x92\xd1\x2a\x32\xf8\x1b\xeb\x2a\x02\xd8\x7b\xfa\x9b\x5b\x37\x7c\xc5\x23\xd3\xcf\xa1\xe0\x8f\xef\x1d\x08\xb6\x63\x4a\x94\x6b\x0c\xa7\xaa\x57\xd3\xb9\xb3\xa7\xf9\xe7\x2f\x1f\xf5\x3f\x5b\x54\x34\x00\x30\x60\x73\x54\x03\x22\xf7\x06\x11\xb9\xd5\xb5\xcf\x3e\xfb\x6c\xdc\x07\x29\x85\x36\x07\x50\x0c\xe6\x6a\xeb\xa9\xa3\xfe\xd5\xed\xd3\xfc\xf3\x99\xa6\xad\xa8\xff\x02\x13\x5f\x48\xbb\x5e\x11\x89\x2d\x24\x32\x6d\x48\x62\xbe\x87\xa5\xc4\x93\xf2\x54\xba\x8e\x03\x23\x44\x43\x67\xaa\x57\xab\x4b\xe7\x26\xf9\x73\x3b\x27\xbd\x2b\x6b\xa5\x1a\x22\xfc\xbe\x2d\x97\x8f\xed\x93\xa7\x9e\x7a\xaa\x4b\x19\x5d\xe6\x4e\x6a\xc5\x5d\xc6\xe8\x17\x69\x14\x41\x9c\xd7\x5f\x7f\xbd\xc5\xdc\x85\x86\x21\xb5\x0b\x0d\x40\xd7\x19\x97\x65\xc6\x93\x9a\xb8\x04\xa7\x90\x25\xb5\x9e\x01\x21\xf2\x26\x6e\x7f\x2c\x12\x33\xcc\x65\x97\x37\x1f\x8a\x5a\x03\xd8\xc7\x93\x8c\xdf\x15\x16\x7c\x78\x19\x8f\x00\x64\x4c\x45\xbf\xa2\xad\xc1\x5c\x6d\x98\xd3\x38\xdd\x87\x4b\x01\xaf\x8e\xd0\x05\x46\x52\x0c\x20\xf5\x3c\xce\xa3\x2b\xa4\xac\x0e\x29\xbf\xe2\xb2\xfc\x5b\xcc\x2a\x11\x37\xfe\x5b\x35\xdf\x4e\x6b\xd5\x92\x78\x5d\xf5\x48\x85\x55\x85\xce\xa2\xeb\xe4\xbb\xa7\x9f\x7e\x3a\x3e\x84\x4d\x82\x16\x6d\x4c\xfd\x72\x5e\xc3\x94\x99\xa7\x9c\xd1\x78\xba\xae\xee\x3f\xda\xcd\xdf\x9e\x9c\xc9\xde\x35\x4b\x75\xbd\x38\xb6\x86\x07\x13\x9c\x01\x5d\x0a\x7a\x08\x4d\xd4\xdd\x87\x4c\xc7\xab\x55\x21\xd5\xd8\x03\x0a\xfd\x28\x27\x37\x3f\xd8\xa6\x76\xe9\x02\x2b\x8c\x2d\x3f\xd4\x58\x03\x88\xe5\x64\x83\x61\xb0\xb1\x9e\xe1\x26\x6f\xfa\x02\xd9\x98\x4f\x02\x66\x2c\x81\x8f\x9b\xcf\x26\xd4\x0a\xf2\x14\xcc\x00\x74\x86\xc9\x74\x43\xdd\x7e\xf4\x44\xfe\xe6\xe4\x4c\x76\x87\xc1\x4d\x5f\x9b\xf9\x1b\xcc\xec\xac\x2d\x46\xc1\x92\x96\x05\x0d\x34\x42\x38\xcf\xf3\xae\xb1\x2c\xe9\xb1\x53\x90\xcb\xb4\x6f\xbc\xf1\x06\xae\x5f\xbf\xee\x2c\x2e\x96\x2f\xda\xf2\x8d\xb5\xa3\x92\xf3\x5e\xe0\x57\xf8\x58\x0b\x8c\x75\x73\x8d\x99\x79\xcc\xcd\xca\xa8\x00\x98\x98\xbf\x09\x33\xbb\x3f\x13\x7f\x62\xda\x3f\x31\x7d\x61\xc7\xa3\x9d\x6f\x23\x79\xb5\x9d\x97\xa3\x99\x19\xf7\xee\xdd\x8b\x3e\x5c\x68\x85\xfd\xfb\x7f\xff\xef\x2b\xd3\x7f\xf1\x3c\x0e\x2f\xa4\x19\x39\x81\x8a\x9d\x93\x7c\xf7\xec\xa4\xf7\xf9\xa2\x56\x3b\xe4\x5c\x44\x5e\x00\xbb\xc0\x1e\x13\x5b\xab\x8b\xdd\x0b\xc8\xca\x01\x27\x2f\x24\x0d\xc0\x0f\xf5\xd0\xac\x17\xd3\x51\x02\xbf\x43\xc8\x98\xe6\xd9\x60\x38\xcf\xae\x5c\x3c\x2e\xbe\x7c\xfe\xa4\xd8\x61\xe6\x02\x66\x0f\x1a\x63\x35\x51\xcc\xac\xb8\x59\x8c\xa2\x98\xd9\x81\x37\x7b\xea\xb3\x05\xaa\xc2\xda\xa2\xc8\x9c\x43\x04\xa0\x58\x9b\x67\xdb\x4f\x8e\x8a\xcf\x0c\x2a\x75\x15\x4c\xb9\x6b\x97\xb4\xa6\xc4\x16\x57\x73\x25\x27\xde\xba\x6b\x8e\xe2\x09\x79\x67\xe5\x2a\x8b\xf6\x86\x33\xe3\xc5\xa5\xe9\x58\x8e\xa2\x28\xa6\xc1\xb0\xcc\x9e\xdd\x19\xf7\x3e\xbe\x35\xcd\xb7\x11\x4e\x5c\x56\xb2\x4f\x60\x64\xe1\xb5\x6b\xd7\x94\x00\xbc\x40\xb7\xdc\x59\xc6\xdf\x35\x00\x95\xda\xc7\x45\x66\x12\xfb\x96\xe2\x02\xe5\xe0\xb5\x84\xdf\xca\xcc\x0c\xe6\x60\x0f\x80\x4a\x71\x59\xe6\x7a\xaa\x15\x97\x88\x06\x5d\x93\x48\xea\x9c\xfe\x4d\x90\xbf\xd5\x24\x39\xb1\x44\x12\x11\x11\x00\x80\x88\x17\x5b\xd0\x9a\xd7\xc6\x67\xe8\x34\xbc\x70\xf3\xac\x16\xcf\x65\x14\x45\xad\x36\xd6\xe6\xd9\x99\x5c\x53\x3e\xcf\x82\x55\x45\x8b\x84\xaa\x0c\x5d\x7d\xdc\xa5\xe5\xad\xea\xf2\x58\xf4\x7c\xd1\xfb\x65\xcf\x96\x59\x1f\x96\x59\x2d\x64\xdb\x96\xb5\xb1\xab\xfc\x2e\x8b\x91\x1c\x8b\x71\xbc\x2e\x41\xd3\xd5\x8f\x5d\x20\xb1\xab\x6e\xca\x98\x43\x01\xc0\x8e\x77\x4b\xbc\x76\x32\xa6\x82\x59\xde\x6a\x04\x91\x35\x9f\x17\x3a\xa7\xd1\xe4\x4c\xf6\xc1\xa3\xdd\xde\x9b\xbd\x29\x6f\x0f\x8e\xf5\xb3\x04\x28\xcb\xd3\x25\xa3\xb1\xfb\xa7\x04\x5e\x70\x6f\x20\x11\x34\x64\xc4\x3b\xc3\x4d\x56\xb5\xec\x9a\x41\x70\xfe\xef\x38\x13\x38\x08\xe1\xcb\x60\x0f\x84\xfc\x8e\x1a\xbe\x34\x4b\x3b\x8d\x4b\x8a\xfc\xbe\x4c\x2c\xc1\x8b\x67\x80\xde\xd2\x62\xe7\x2c\xc8\xfd\x24\x6c\x1d\xcd\xfb\x48\x32\xb1\x8c\x27\x0b\x31\x56\x28\x56\xa8\x66\x43\xb5\x77\xbc\x93\xbd\x3d\x3e\x9f\xbd\xa3\x73\x1a\xa1\x59\xb1\x23\x41\x80\x13\xda\xd6\x3d\x22\xbf\x6d\xe2\x10\xbd\xd4\x78\x5a\x74\x6d\xef\x5d\xfa\x87\x0f\x1f\x02\x08\x5d\x8a\xe6\xcc\x9a\x60\x4c\x19\x41\x27\xcb\x54\xa6\x8e\xce\x2d\x21\xca\x71\x2b\x5b\x82\xef\x10\x5a\x4b\x02\xe5\x51\x02\x26\x19\x4f\x00\x16\xeb\xca\xea\xea\x07\x79\xad\x01\xa8\x7f\xf5\xaf\xfe\x95\xdb\xbb\x85\x1c\x18\x6d\x00\x8b\x70\x8b\x14\x3d\x4d\x83\x0b\xa3\xfe\xd5\xf5\x52\x5d\x55\x0c\xb3\x5f\x0b\x3b\x00\x4b\x62\xfc\x09\x3c\x63\xc6\xb6\x9c\x4f\x45\x62\xa5\x91\x01\xf1\x9e\x91\x47\x7c\x3e\x86\xd3\x11\xb8\x46\x1b\xf8\x00\x36\x3f\x42\xae\xb1\x7d\x66\x9a\x3f\x77\xf9\x51\xff\xd9\x0f\xcf\xcc\xf6\x01\x14\x20\x77\x78\xaa\xfb\x1e\x2c\x4e\x11\x97\x7d\x66\xda\xe5\x40\x9c\x01\x2d\x39\x11\xe5\x99\x46\xb1\x5e\x66\xe7\xb6\x66\xf9\xb3\xb9\xa6\x2d\xaf\x3a\x78\x82\x77\xed\x45\x48\x37\x2c\x85\x64\xd0\x06\x0f\xe8\x2d\x79\x48\x2b\x0a\x40\x21\xaf\x08\xae\x23\x59\x6b\xe9\xd9\x64\x66\x65\x63\xbf\x56\xbb\x67\x27\xbd\x4f\x9c\x3d\xcd\xff\xf2\x60\x7d\x7e\x38\x57\xba\x24\xbf\xb1\xa0\x73\x17\xda\x6b\x66\xc6\x17\xbf\xf8\x45\x25\x0c\x1c\x32\x2c\x93\x81\x2d\x3e\xbd\xaa\x56\xea\x08\x28\xf1\xcc\x85\x05\x9b\x34\xb5\x36\x61\xaa\x09\x65\x99\xf1\xb4\xa6\xc6\x55\x14\xf0\x4f\xc4\x40\x39\xd4\x10\xe5\x32\x2f\xfb\x51\x43\x1b\x4a\x3b\x34\x83\xd3\x33\xf2\xc0\x9c\x63\x2e\xfc\x60\x97\x9a\xaa\x40\xe6\x0e\xdd\x3a\x11\xa0\xf2\x9a\x86\x6b\x73\xb5\x65\x57\x16\xa1\xdd\x4f\xab\x80\x17\x60\x35\x20\xf2\xf3\x84\x55\xeb\xf1\x57\x9d\x57\x17\xe3\x5b\x96\xff\xa2\x32\x16\xe5\x91\xb2\x78\x74\xa1\xfb\x55\x80\x5d\x17\x68\xef\x0c\xd7\xaf\x5f\x77\xe3\x5d\xce\x65\x80\x30\xc5\x8b\xf9\x15\xcd\x52\x58\xf0\xa4\xce\x31\x3a\xde\xc9\xde\x19\xed\xe6\x6f\xcc\x07\xb4\x07\x82\xb6\xda\x96\xd4\x8e\x2c\x90\x30\xb7\x42\x78\x8b\x77\x96\x36\x04\xe2\x31\x10\xc1\x59\x25\x1d\x33\xb2\x99\xd9\xc9\xaf\x4d\xbd\x9b\x3f\xa7\xaa\x19\x10\x63\x90\x8e\x9c\x04\xe8\x69\x87\x3d\x1d\x1b\x73\x28\x83\xc3\x73\x85\x5c\x2f\x19\xc6\x6b\xef\x48\xac\x72\x70\x34\xef\x11\x9b\x6b\x97\x53\x2a\x2c\x20\x83\x63\xe0\xdc\xac\x98\xaa\xe6\x03\xda\x1f\x9f\xcb\x6e\x1e\xef\xe4\x37\xe7\x03\x75\x08\xef\x12\x71\xcb\x7d\xc5\xdc\x96\x4a\x30\xda\x00\xbc\x24\x42\x8a\x46\x53\x63\x29\xf5\xce\x8d\x9d\xf5\xf5\x75\x77\x2d\x78\x66\x00\x2e\xe0\xc1\xae\xad\x63\xcb\x0a\x83\x06\x78\xb9\xa5\xd4\xdc\x80\x33\xe9\x02\x8a\x97\x36\xbb\x79\x2c\x08\x5d\x63\x12\xb8\xb9\x3e\xb8\x7e\xfd\xba\xfe\xf5\x5f\xff\x75\x75\xe5\xca\x95\x55\x00\x9b\x0d\x29\xab\x69\x63\x71\x01\x8a\x61\x99\x6d\xec\x8e\x7b\xbf\x50\x54\x6a\x87\x80\xdc\xae\x94\x91\x13\x4d\x53\x96\x82\xe6\xd6\x73\x5f\xcb\xcf\xed\x44\x5d\x37\xc4\x24\x80\x01\xc0\x62\xf0\x71\x22\xcf\x94\xd8\xe0\x40\x0e\x30\x88\x91\xf7\x2b\x75\x71\xe7\xa4\xf7\xc9\x5e\x4d\x03\x08\xd7\x88\xb0\x2e\xc4\xab\x4a\x9b\xbc\xbc\xa9\x42\xf6\x8b\x4b\x3f\x98\x67\x1b\xe7\x4f\xf2\xdd\xc1\x5c\x5d\x22\xa6\x82\xdd\x19\x63\x21\x7d\x08\x38\x11\x00\xb8\x80\x17\xc0\xd3\xae\xb7\x8c\x42\x12\x5d\xd0\x01\x12\xd4\xf9\x7c\x0c\x20\x74\x1a\x86\x8d\xcf\x41\x3e\x99\xc6\xd6\x66\x99\x5d\x39\x3b\xc9\x2f\x0f\xe7\x6a\x88\xf4\xca\x22\x2b\x53\x15\x11\xe1\xf5\xd7\x5f\xd7\x67\xcf\x9e\x95\xd6\xca\xb8\x6f\x3a\x3d\x3a\xf1\x7d\xea\x61\xd7\x60\x8c\x07\xf6\x22\xcd\x39\x58\xfe\x2c\x1e\x4b\x8b\x4b\x55\x9a\xad\xab\x83\x89\x41\x26\x22\x59\x86\x2a\x06\x9a\x33\x85\x39\xa1\x00\x07\x26\xdc\x47\x4e\x0d\x44\xf6\xe0\xc3\xa1\x6b\xb1\xb4\x92\x45\x3a\x79\x1d\xe2\x24\x86\x53\x23\xc5\xfb\x5e\x4d\x83\xe1\x3c\xdb\x16\xf3\x5c\xdc\x7e\x2e\xec\x00\x56\xf8\x6b\x42\x0a\xe4\x20\x71\xdf\xf5\x2c\x7e\xb7\x2c\x9f\x2e\x0b\xc2\x47\x09\x8b\xc0\xc0\x22\xe0\xd6\x65\x8d\x59\x35\x2c\x6a\x63\xd7\x58\x5e\x24\x58\x16\xd5\x43\x12\x58\xcc\xac\x53\xe5\xba\x78\x9f\xfe\xf4\xa7\x15\x80\xd6\x12\x58\x61\x7a\x8f\x05\x50\xe3\x06\x50\x34\x9e\xf7\xe9\xf0\xe1\x93\xbd\x37\x8f\x9f\xc8\xdf\x9c\x17\x74\x04\x82\xb6\xfb\x33\xb8\xb1\x2f\x54\x44\x22\xaf\x61\x59\x86\xeb\xa6\xbc\x98\x08\x52\xf7\x94\x4c\xcb\x63\xf6\x10\x40\xd8\x78\x1c\x44\xa4\xd6\xdc\x82\xd6\x44\x5e\x73\xf0\xa3\x8b\x6f\xf2\x63\xb7\x67\x84\x07\x37\x20\x78\x77\x94\x05\x41\xe2\x5d\x43\x6e\xdc\xae\x0f\xfb\x7a\x8b\xd9\x34\xf6\x81\x36\xf3\x85\xde\x7e\x74\xa1\xf7\xe6\x74\x53\xdd\x05\x41\x4e\x74\xb5\xd7\x16\x0c\x54\x16\x58\xca\xb9\x2d\x75\x5d\x8b\x86\x06\x63\x20\xfe\xee\xab\x5a\x60\x82\x3c\x4e\x4e\x4e\x82\xf1\x67\x26\xff\x9a\x6e\xe4\xd8\x22\x62\x81\xae\xb5\x0c\x49\xd7\x4e\x00\x48\xec\x5f\x04\x72\xe4\x5f\x25\x81\x0a\xf9\x0d\xe5\x9c\xb5\xe5\xfa\xf5\xeb\x7a\x7f\x7f\x1f\xf6\xa4\xe7\x3f\xf9\x93\x3f\xd1\xef\xbf\xff\x3e\xa2\x90\x12\x3e\x30\xee\x90\xc0\x25\x62\xdd\x22\x60\xe4\x04\x14\xdb\xa7\xf9\xf6\xd6\x34\x7f\x2e\x67\xda\x20\x78\x8b\x1f\x89\xb1\x11\x2b\x8b\x26\x77\x58\x22\x90\xef\x03\xf9\xca\x66\x57\x69\xf6\x20\x38\x1a\xfd\xad\x20\x66\x16\xb8\x78\x12\x5c\x9b\x51\xac\x72\x4d\x1b\x9b\xd3\xec\x13\xdb\xd3\x7c\x0b\x66\x19\xb0\xe1\xf3\x72\x5e\x87\x75\x19\x45\x65\xf8\x49\xca\xf0\x16\xb2\x9c\x99\xf3\xb5\xb9\xda\x3a\x37\xe9\x3d\x5d\xd4\xb4\x43\x60\xe5\xfa\x44\xd4\x23\xec\x87\xb6\x92\xef\xad\x27\xe4\xe5\x61\xe4\xbe\x95\xf2\xcd\xcf\x39\xf3\xa5\x04\x93\xed\xc9\xf3\x12\xaf\x9c\x88\x7e\x6c\xc0\xa6\x2a\x2a\xda\xdd\x9c\xe5\x4f\xad\x95\xd9\x16\xf9\x3d\x69\xdc\x52\x71\x29\x07\x6d\x79\xcf\x3d\xf7\x9c\xad\x96\xe4\xcf\x92\x66\xe2\x67\x49\xc5\x37\x76\x15\x2d\xd4\x14\x12\x21\x29\x94\xa4\xc9\x4f\xbc\x73\x7f\xcc\xac\xab\x8c\xcb\x59\xce\x93\x4a\xf1\x54\x72\x1e\x71\xd9\x1e\x74\xd2\xbe\x15\x40\x4e\xf1\x91\x83\xb3\x8a\x6c\xb2\xf6\x04\x3e\xb6\x44\x60\x07\x2e\x85\x66\xc8\x26\xa1\x19\x0e\x24\x0b\x74\x6a\x1e\x88\x9a\xad\xff\xfb\x95\xda\xee\x57\x6e\x65\x91\xfb\x70\x76\xc0\x0a\xed\x1b\x76\x79\x1c\xda\xc2\xd3\xf6\xe7\xe3\x5a\x5b\x52\xe0\x71\x55\x4b\xda\x5f\x45\xf9\x32\xef\x54\xfa\xae\xfc\x52\xc0\x6a\x59\xba\x45\x71\x96\xa5\x97\xe0\x7b\x59\xbe\x31\xd8\x59\x56\x4e\x90\xf7\x8d\x1b\x37\xf4\x8d\x1b\x37\xec\xa4\x34\xf7\xde\xba\x8b\xcc\xb8\xb0\x3b\xa2\x4e\x21\xb5\x52\x45\xf9\x6c\x1d\x6a\xff\xe9\xde\x9f\x67\x73\x0c\x36\x0e\xe6\x9f\xcb\xe7\xd8\x62\x86\xa2\x90\x4b\x8b\xe1\x68\x99\x7e\x6c\x6e\xf7\x07\xb1\xd9\xb8\x6e\x14\xdb\x61\x6c\xe9\xc5\x9a\xeb\x1d\xa5\x58\x4e\xe7\xcd\x1d\xcd\x81\xa5\x2c\x68\xc5\x13\xa1\x2b\xc6\x66\x0c\x06\xb3\xb7\xf0\x78\xda\x32\x75\x90\x2a\xb2\xcd\xc9\x58\x5d\x82\x13\x09\x7c\x94\x46\x2f\x6f\x98\xa6\xa9\xae\x69\xa7\x79\x5f\x15\x34\x1a\x9f\xcb\xde\x7e\xf8\x64\xef\x8d\xc9\xb6\xfa\xc0\x9c\x45\x64\x77\x89\x8d\x57\xcf\x94\xe2\x9b\x49\x4b\x07\x4e\x4e\x4e\xec\x18\x88\x95\x34\x85\xf4\x38\xea\xa2\xb7\xd8\x5a\x17\xe7\x01\x00\xea\xdf\xfe\xdb\x7f\x0b\x99\x9f\xd9\x1a\x5e\xfb\xf6\xb5\xdc\x3f\x4a\x3c\x73\xd7\x56\x38\xd8\xeb\xd8\x05\x25\xcd\xf6\xf2\x1d\x11\x41\x6b\x6d\xdb\x8d\xff\xf8\x1f\xff\x23\x00\x20\xda\x3c\x2c\x6e\x4f\x70\x2f\x77\x86\x15\xf9\x5a\xc1\x95\x13\x28\xcf\x34\x15\xe7\x4e\xf2\xdd\x41\xa5\x2e\x13\xa3\xf0\x1c\x35\x74\x3c\x72\x90\x87\x1d\x2f\xd2\x2a\xd3\x8c\xeb\x66\xfc\x46\x79\x38\x41\x0b\xf1\x54\x8c\x77\x19\xc1\x4c\xec\x46\x24\x33\x3c\x8d\x78\xf7\xa5\xd2\x18\x0c\xe7\xd9\xd5\x8b\xa3\xe2\xe2\x83\xf5\xf9\x3e\xfc\x49\xce\x96\xa6\x43\xda\x33\xee\xa1\xa8\x4f\x9c\x5c\x30\x7d\x52\xf4\x2b\xb5\xb5\x35\xcd\x2f\x66\x5a\x6d\xb5\xea\x0a\x21\xe2\x28\xaa\x9c\xa8\x5f\x80\x41\x48\x46\x15\x53\x1c\x64\x9f\x70\xb0\x61\x9e\x49\x6a\x79\x06\xc2\x2b\x0a\xfb\xce\x5a\x6b\xc1\x40\xa6\x69\x63\x30\x57\xbb\x6b\x73\xb5\x01\x46\xce\xe0\x60\x7f\x1b\xd9\x27\x76\x9e\xcb\x22\xaf\x8c\xf8\x4d\x02\x63\xf1\xae\xe5\x2a\x92\x0c\xbb\xc5\x90\x17\x14\xa4\x81\x46\xd3\x8c\x89\x08\x08\xf6\x00\x70\x4c\xa2\x52\xba\x9a\xf6\xf4\xc9\x3c\xe3\x09\xc3\x4c\x8c\x13\x99\x77\xcd\x6d\x75\xfd\xed\x01\x61\x0c\x53\xda\x89\x38\xdc\x75\xd0\xb2\xca\x40\x61\x14\x29\xd3\x13\xbb\x12\x91\x19\xcd\xca\xa2\x4a\x6d\xad\x95\xd9\x06\x9a\xd9\xe6\x01\xfa\x16\xf7\x26\x6f\xc6\x6f\xfe\xe6\x6f\x2e\xb2\xb4\x2c\xfa\x5d\x66\x71\xe8\xd2\x02\xbb\xd2\xc7\xf9\xc7\xc8\x37\x55\x86\x0d\x31\xc8\xed\x4a\xdf\x55\x9e\x1c\x63\x71\xdd\xe2\xbc\xe3\xf4\x5d\x7d\xb1\xac\x8f\x96\x3d\xef\x12\x4c\xcb\xe2\xc7\xef\x15\xd0\x72\x9d\xda\x3c\x5b\xab\x47\x60\x4c\xfe\xb0\xab\x47\x88\x26\xd3\xad\xec\xee\xfe\x95\xde\x0f\xc7\xe7\xf2\x9b\x75\x0f\x63\xa0\xd1\xa2\x9c\x26\x24\x7f\x9d\x69\x24\x80\xfe\xb0\x26\x78\x39\x74\x2d\x23\x8e\xb5\x3a\x58\xd0\xe0\xd5\x2e\x0f\x34\xd8\x02\xf8\xe6\x95\xd5\x6c\xd9\x9e\xab\x24\x34\x65\x49\xa0\xae\x6a\x80\xa0\xbf\x68\xa1\xa7\x3b\x30\x51\x34\x2b\x00\x64\x9e\x6e\x63\x4b\x93\x7b\x48\x40\xdd\xc3\xf8\xe4\x5c\x76\xf3\xe1\xa5\xde\x1b\x27\x67\xb3\xf7\x38\x6b\xb6\xb5\x87\xd8\xc3\x04\x62\x35\x11\x84\x9b\x48\x7c\x1b\x30\xb3\xdd\xa3\xa4\x0b\xac\xa6\xe8\x2a\x15\x67\x51\xba\xf8\x5a\x03\xc0\x37\xbf\xf9\x4d\x37\x6e\xe4\x3c\x18\x39\x1f\x05\x82\x87\x9a\x6b\xb7\x32\x8a\xc2\x25\xf7\x72\xe3\xb8\x54\x5a\x30\x37\xbb\xdf\x56\x55\x85\x7f\xf4\x8f\xfe\x91\xfe\xce\x77\xbe\xa3\x01\xa0\x2c\x4b\xd9\x2e\xd9\xce\xd8\xf2\xa4\x01\xe0\x77\x7f\xf7\x77\x55\xc4\xf3\xe5\x2e\xe2\x16\xa8\x17\x8a\x51\x6c\x4d\xf3\xdd\x4c\xd3\x06\xe0\xc7\x9e\x3b\xe5\x58\x28\xaa\x6e\x3c\x59\xf7\x27\xc1\x7f\x7b\x26\xe3\x02\xf2\x21\x9e\xfc\x2d\x73\x64\xc9\xeb\x09\xee\xd4\x71\x98\xb9\x1b\x16\x14\xc1\x3c\x96\xee\x52\x9b\x27\x01\x79\x51\xa9\x9d\x9d\x71\x71\x05\x62\x23\x3a\xd3\x3e\x1b\xdf\xf1\x82\x94\x95\x45\xf4\x5d\x4e\x44\x4a\x31\xf2\x7e\x45\x1b\xfd\x4a\xed\x2a\x8d\x41\x70\x5e\x9f\xad\x4b\x67\xe0\xb0\x7e\x16\xf1\x08\xb3\xa4\x5b\xe0\x12\x58\x6b\x28\x8a\x1b\x67\xcb\x2e\x9e\x4b\x63\xe9\x11\x82\x1e\x09\xc8\x98\x86\xc3\xb9\xda\x1d\x96\xd9\x76\xc6\x18\x18\x2b\x92\x94\x7f\xf1\xb8\xe8\x0a\x31\x0f\x95\xb2\x21\x0e\x1a\x89\x17\x5d\x56\x80\x45\xd7\xee\xf7\xc6\x8d\x1b\xd2\xb7\xef\x22\x0a\x74\xef\x88\xa7\x52\xa8\xa6\x79\x3d\x99\x65\x7a\xac\xc9\x1d\x6e\xe6\x43\x80\x62\xc4\xa3\xa8\xc3\x2d\x42\x0f\xba\x26\xee\x27\x37\x98\x49\xdc\x0a\xe4\x23\xe7\x10\xc8\xb2\x63\x94\x64\xda\x65\xb5\x4b\x26\x18\x8b\x0b\x6d\x0f\xe7\x6a\x83\x40\x72\x3b\x68\x39\x90\x83\xf4\xff\xe9\x3f\xfd\xa7\x94\x60\x0c\x18\x28\xda\x4c\xaf\x2b\x4d\x2a\xce\xa2\x3c\xe2\x10\xc7\x4d\xfd\x2e\xb2\xba\x2d\x4b\xdf\x15\x3f\xae\xd7\x2a\x96\x90\x45\xf1\x97\xf5\xd1\xa2\xbe\x8b\xf3\x48\x85\x65\x75\x49\x0a\x3a\x01\xda\x65\x7c\x79\x04\x80\x9f\xe7\x62\x04\x2d\xcc\xca\x90\x93\xb3\xd9\x07\x07\x57\x7a\x3f\x38\x3e\x9f\xbf\x39\xef\xe3\x10\x80\xb6\x3c\xc7\x85\x04\xa6\x76\xff\x5b\xda\xe7\xe2\x40\x14\xef\xe1\x10\x82\x9c\x06\x1f\xc9\x4d\xed\x2c\x28\xf2\xdb\xfc\xc7\x1a\x87\xd3\x08\x0d\xb8\x72\x72\xc1\x3e\x97\x79\xdb\xab\x40\xab\x14\x0c\x93\x28\xa4\x53\x34\xe0\xa9\xee\x61\x7c\xbc\x93\xbf\x79\x70\x39\xff\xf3\x93\xb3\xd9\xcf\xb4\x6a\x96\x00\x93\x3f\x7f\x27\x58\x02\x6d\x5c\x29\xad\xef\x16\x03\x06\x13\x52\xca\x40\x6c\x81\x88\xad\x10\x71\xba\x3b\xae\x76\xac\x00\x00\x20\x00\x49\x44\x41\x54\x38\x6e\xd2\xb2\xf9\x5f\xfe\xcb\x7f\x71\xcf\x7e\xf1\x17\x7f\x51\xd9\x15\x48\xb6\x5e\xf6\x5e\xd4\xc5\x01\x10\x11\x5a\xf4\x2f\x35\x5f\x99\xa7\x4d\xf0\x4f\xfe\xc9\x3f\x89\x69\x5c\xe6\x91\x6a\x7b\x92\x27\x58\xf7\x90\x68\xbb\x82\x99\x9c\x0b\x40\x65\x9a\x8a\x8d\x32\x7b\x22\x63\x04\xdb\x47\x70\x6b\x0c\x04\x99\xda\x58\x0e\x84\x58\x2b\x61\x4b\xbf\x6c\x0f\x0e\x00\x38\x40\xc7\xbf\x07\x95\x59\x0a\x64\x8a\x22\x3b\xf0\x62\xae\x29\xce\xa8\x09\x19\xa3\x18\x56\xea\x09\xb4\x97\xfe\xc6\x8a\x2a\x10\x7e\x1b\x69\x3d\x73\x56\xa8\x9e\xa6\x62\xad\xca\xb6\x8a\x9a\xb6\x14\xa8\xf0\xa0\xca\xd6\x4b\x52\xb3\x69\xbb\xa3\xf0\x00\xfe\x37\xd7\xce\xa5\xec\x81\x18\x01\xe1\x9c\x1f\x97\x37\xb5\xfa\x4b\x5a\xb4\x5a\x41\x28\x21\xb0\x1b\x47\x32\x15\xfd\x2a\xdb\xde\x28\xb3\x1d\x33\xc7\xd3\x5a\xa1\xa4\xfc\x93\x27\x83\x27\x7a\xd5\xf7\x15\xda\x34\xd1\xc5\x8b\x17\x0a\x24\x9b\x70\x91\xe6\xb1\x32\xa3\x8f\xfd\xfd\x00\x74\x99\x71\x79\x5a\xe8\x51\xad\x78\xda\xc4\x71\x71\xdb\x40\xc2\xe2\x15\xe9\xef\x17\xaf\x11\x4c\x28\x02\xbc\x46\x87\xd6\x00\xb7\x9f\xde\xce\x4a\x8f\x4d\x2f\x72\xf0\xc8\x41\x13\x55\xc7\xc6\xcd\x8b\x5a\x6d\xad\x97\xd9\xd9\xa2\x6e\x3e\x5a\x6a\x92\x12\xda\x8c\x6c\xd5\x20\x99\xc4\xe3\xa4\xff\x28\x65\x2d\xaa\x83\xfc\xfd\xff\xc3\x8a\x41\x30\x41\xd9\x87\xd2\xe2\xe2\xe6\xba\x08\xcb\x80\xb3\x16\x8c\xcf\x66\xef\xed\x3f\x53\xfc\x70\x74\xa1\xf7\x46\xb9\xa6\xf6\x99\xa0\x7d\x96\x2d\x4e\x1d\xf8\xa3\xc3\x38\x6d\x46\x15\xbe\x17\x66\x44\x9f\x9d\x5b\x59\x91\x2a\x0d\x82\x79\x3a\x6f\xaa\x10\x28\xcd\x4b\xf6\xf3\x18\x0c\xea\x6a\x7e\xb8\x65\x91\x69\x55\xc9\xe6\xdb\x62\xb0\x3e\x54\x03\x1c\x3d\xba\x90\xbf\xb6\x7f\xa5\xf8\xe1\xc9\xd9\xfc\x3d\x9d\x05\xfb\x96\xc8\xfd\x4a\xe4\x39\x51\xc1\x29\xcc\x96\xa1\x46\x7b\x90\xb4\x2c\x22\x89\x90\x02\x2c\x8f\x4b\x2b\x49\x3a\xfd\xd1\x8f\x7e\x04\xa0\xb5\xa9\xa1\x73\x19\x45\x75\x48\x82\xe7\xd8\xd2\x6d\x5f\xfc\xcf\xff\xf9\x3f\x01\x00\xff\xec\x9f\xfd\x33\x99\x75\xaa\x2d\xf1\x73\xf9\xde\xf1\xa5\xdf\xff\xfd\xdf\x5f\xd4\xd6\x66\x25\x14\x90\x13\x90\xf7\x2b\xb5\x4b\xdc\x28\x78\xde\xb8\xe1\x18\x3f\xc4\x5d\x14\x84\x25\xaf\xc3\x32\xd3\x4e\xe2\x07\x98\x04\x23\x7e\x4e\xa5\x0f\xf1\x61\xba\x1c\xd5\x09\x4d\x5b\x8b\x5e\x4d\x6e\x8e\x0b\x12\xe0\x45\x16\x1f\x4d\x99\x88\xe3\xa9\xbc\xa6\xa2\x98\xd3\x40\x69\x1a\x84\xda\x79\xdc\x66\x57\xa9\xc0\xed\x1a\xcb\x49\x3b\x2f\x94\xa2\xf6\x06\xca\x8e\x68\x7c\xab\xc7\xa4\x46\x1e\xbf\x42\xa8\x04\x99\x7e\x57\x99\xc6\xb0\xa8\x69\x33\xd7\xad\x4d\x58\x03\x5a\x5a\xc1\xea\x22\x43\x2c\x37\x5b\x63\xb3\x6b\x39\x74\x57\x66\x8b\x06\x68\xeb\x1d\x8b\x43\x16\xe5\x6c\x79\x33\x29\xae\xaa\x14\x4f\x4f\x7b\xf5\xb8\x52\x3c\xed\xd7\xd8\xf2\xe6\xe2\xb0\xe3\x6c\xa7\xc9\xd5\x09\x71\x08\x26\xf1\x91\x30\x75\x39\xff\x25\x23\xb6\xb8\x04\x8c\xd3\x32\x69\x67\x16\x13\x8a\x9f\xfc\x6a\x8e\x10\x5c\x46\xaa\x57\xd3\x70\xbd\x41\x9d\x83\x59\x5e\xe7\x62\x76\x79\x57\xe7\xe3\xef\xfd\xbd\xbf\xa7\xfe\xf8\x8f\xff\x58\xf6\x5d\xcc\x2c\x64\x9a\x55\x99\x61\x97\x9b\x64\x21\x63\x89\xca\x8b\x5d\x3e\xa9\xeb\x4e\xad\x31\xca\x33\xae\x43\x6a\x10\xc6\xf9\x2f\xaa\x53\x57\xdb\x96\x69\xc4\x5d\xe5\x3e\xce\x75\xaa\x7e\x71\x08\xd2\x64\x59\x86\xeb\xd7\xaf\x6b\x2b\x10\x23\xa1\x63\x69\xa1\x8c\x27\xb3\x01\x7e\xd7\x49\x22\xc2\x64\x4b\xdd\xd1\xd4\x43\x9d\xa3\xdc\xda\xc3\x67\xfb\x13\x7d\x51\xd5\xc8\x21\xc6\x6b\x4b\x8b\x84\x30\x1f\x3b\x13\xbb\x98\x4d\xe0\x27\xa5\x04\xe9\x02\x9b\x06\x59\xba\x48\xcc\x1b\x03\x5c\xc1\x2e\x3f\xcb\x54\x63\x27\xbd\x0d\xd2\xc4\x62\x5d\x56\x36\x33\x39\x7f\xc7\xc5\x0f\x2f\x64\x53\x99\x08\xf3\x01\xed\x1f\x5d\xc8\xdf\x38\xba\xd4\x7b\x63\xba\xa1\xee\xea\x0c\x47\x0c\xb7\xa5\xbf\x75\x11\xb9\x8d\xdc\xec\x4a\x22\xe3\x7a\xa9\x00\x77\x18\x66\xd7\xa1\x81\x8b\xc6\x58\x2a\xc4\xe3\xad\x6b\x6c\x76\x95\xe3\x82\xd6\x5a\xbe\xc7\xd6\xd6\x96\x1a\x8d\x46\xfa\x8f\xfe\xe8\x8f\x00\x00\xa3\xd1\x48\x03\x0d\xd8\x7a\xe5\x95\x57\x74\xea\x4c\x18\xfb\x5c\x82\x9f\xad\xad\x2d\xb7\x24\xd5\xec\x06\xbc\x88\x56\x53\xed\x75\xf1\x95\x52\xf8\xed\xdf\xfe\x6d\xb5\xb5\xb5\x15\x58\x7d\xec\xfc\x0e\x96\xbb\xc4\x82\xf2\xa2\x52\x83\xa2\xa6\x6d\x00\xb9\x1b\x69\xc2\x62\x17\xbb\x31\x9b\xbc\xc2\xfb\x84\x51\xc5\xf0\xe2\x48\x66\x18\xda\x69\x5c\x9a\x51\x1e\x64\xb7\x03\x10\xb4\x11\xe5\x4b\xd1\x38\x35\xb4\xa0\x7a\x35\x6d\xf5\x6b\xca\x67\x19\x2b\x50\xe0\x06\x72\xe5\x36\xc9\x24\x50\x72\xef\x5d\x7c\x22\xca\x15\x53\x91\x31\xad\x19\x50\x17\xd0\x8e\x24\x1d\xf7\x1b\x3d\x4f\xcd\x75\x88\xe9\xd4\x83\x27\x43\xab\x2d\x1f\xb1\x48\x1e\xf5\x95\xbc\x0e\x56\x06\x12\x49\xb9\xa9\x88\x3d\x68\xb1\x3c\xac\xcb\x6a\xf5\xbb\xbf\xfb\xbb\xea\xc6\x8d\x1b\xf8\xc1\x0f\x7e\x20\x1f\x2f\xe2\xcd\xf2\xd7\xc6\x6d\xed\xe3\xb2\x88\xc1\xaf\xc2\xf8\x01\xc0\x4e\x02\xb3\xfe\xad\x78\x42\x98\x03\x31\x55\xc6\xe5\x69\x4f\x8f\xab\x8c\x27\x98\x07\x19\x04\xe0\xc3\x4d\xd6\x43\xfb\x63\xa6\xb0\x4c\x8a\xc5\x76\x21\x1e\xbf\xdc\x53\xe6\x69\x19\x72\x02\x95\xb6\xb2\x21\x64\x9a\x06\xeb\xb3\x6c\x77\x58\xaa\xc1\xf1\xa0\x96\x48\x1c\xe8\xb0\xb4\xfc\xf1\x1f\xff\xb1\x8e\xde\xaf\x6c\x26\x43\x77\xff\x7f\x14\x8b\x48\x0a\x1c\x2d\x63\xdc\xcb\xca\x4a\x59\xe9\x16\xb5\x71\xd9\xf3\x54\x59\x8b\x2c\x81\xab\xe6\xff\x51\xae\xbb\xea\xd3\x4a\x63\x57\xa7\x58\xc1\x71\xed\xda\x35\x20\x14\x5e\x95\x21\xf0\x12\x21\xb1\x3b\xf0\x02\x40\xb1\x22\x4c\x37\x14\x8e\xa8\xa7\xeb\x9c\xca\x33\x7b\xd5\x73\x83\xb1\xbe\x9c\x55\x18\xb4\xb8\xb2\x08\x81\xc6\xe7\x68\xca\xdc\xc2\x30\x49\x47\x58\xcd\x68\x0f\x20\x4a\x04\x5a\xda\x45\x79\xda\x72\x7b\x1f\xc1\xab\x08\x6c\xfe\xc9\x32\x6d\xb2\x36\x19\x09\xea\x0b\xe6\xa4\xd9\x45\xdc\x3e\xad\x36\xfb\xb4\x3c\xba\x90\xbf\x71\x74\x31\x7f\x6b\x36\x54\x77\x39\xc3\x18\x44\x63\x32\x1b\xb3\xc9\x79\x2d\x66\x22\xae\x5b\x06\x1c\x4d\x7c\x8d\xf7\x2b\x49\x81\xdd\x55\xae\x11\x3d\x4b\x29\x0d\x71\xba\x55\x68\x49\x01\xd0\x16\xa8\xd8\xdf\xf3\xe7\xcf\xab\x83\x83\x03\xfd\xca\x2b\xaf\xe8\x0b\x17\x2e\xa8\x84\x8b\x0b\x40\xdb\x62\x63\xd2\x7f\xd4\x36\xb6\xf8\xd8\xbf\xfc\x97\xff\x52\x47\x13\x73\x1d\xbf\x93\xae\x23\x62\x28\xc5\xc8\x55\x23\xe4\x5c\x90\x13\x48\x9b\x61\xe8\xc7\xa4\x3f\x0c\xd4\x8f\x3d\x37\x42\x9b\x01\xdc\x16\xe6\x4d\xa6\x62\x7e\x54\x98\xce\x42\xe0\x60\x6f\xa0\x44\x90\x94\x20\x36\x51\x54\x99\xa6\x61\xaf\xa6\xa2\xcc\x58\xb1\xa7\x53\x00\xc1\x7e\x2d\x9a\xc5\xde\x3a\x42\x91\x85\x88\xe3\xfa\xc9\xc1\x72\x63\xb1\x6c\xfe\xb3\xf9\xef\x65\x11\x60\x94\x0f\x72\x5b\x50\xfa\xd0\xc2\x30\x21\x50\x89\x9b\x2a\xed\xab\xf2\x55\x10\xaf\xe3\x3a\x94\x89\xa4\x88\x91\x9b\x0d\x58\x53\x73\x7b\x0c\x80\x6c\x30\xc0\xef\xff\xfe\xef\xeb\x6f\x7c\xe3\x1b\x8b\x14\xea\x55\x64\x87\xce\x13\x0f\x63\xc2\x5b\xa6\xf5\x2e\xd4\xbe\xc9\xaf\xac\xd1\x80\x63\x14\x1a\x80\x9e\x67\x5c\x4e\x0a\x3d\x6e\x26\xe8\x46\x48\xb2\x0b\x91\xc8\xe7\x2d\x8d\x2e\x7a\x98\x40\xaf\xad\x64\x32\xaa\xbb\x97\x1a\x68\xbb\x1e\x01\x12\x05\x90\x69\x2a\xd6\xe6\x6a\x67\xbd\xcc\x36\x80\xb9\x1b\x94\x42\xe3\x08\x10\xf8\xb5\x6b\xd7\xd4\xc1\xc1\x81\x05\x2f\xab\x58\x2d\xe2\x67\x1f\x05\xa0\xa4\xf2\x5c\x54\x46\x1c\x16\x7e\xe7\x15\xca\xfc\xa8\xe9\x57\xcd\xff\xff\x2b\xc1\xf6\x43\x85\x06\xe0\x6a\x73\x5d\x0a\xa6\x16\x1c\xbd\x0b\x82\xe6\x8c\x30\xdd\x50\x5a\x67\xbd\xaa\x2a\x68\xb2\xf5\xa0\x1a\xaf\x1f\xe9\xab\xf9\x8c\xb7\xe3\x15\x3a\x3e\x9d\x00\x23\x62\x7e\x88\x5f\x85\x20\x98\xbb\x29\x28\x66\x5c\x5d\xac\xdd\x9a\xa4\x6d\xfa\x80\x66\x84\xf0\xb1\x5a\x5c\x98\x16\x0e\xd8\xc4\x02\x87\x83\x18\x7e\x3a\xa0\x15\x50\x75\x8f\xc6\xa7\x9b\xea\xf6\x68\x37\x7f\x7b\xf4\x44\xfe\xd3\x72\x8d\xee\xb3\xc2\x88\x81\x31\xb5\x5d\x44\xc1\xdc\x16\x44\x2e\x22\x5b\x6c\x02\xb4\x00\xab\x8d\xa9\x45\xb4\xd4\x65\xa9\x58\x64\x4d\x5c\x15\x14\xe1\xe0\xe0\xc0\x3d\xbc\x7f\xff\xfe\x2a\x3c\x24\xd5\xb6\x45\xe0\x3c\x15\x82\x38\xda\x98\x85\x16\x05\x2b\xb0\x18\x50\x9a\xa0\x74\x94\x87\x9f\x40\xee\xed\xe1\x1e\x53\x08\xb8\xe1\x18\xb1\x7c\x6f\x53\x34\xc1\x8e\x1d\x6a\x8d\xeb\xd0\x12\x11\x2a\xa8\x08\x5c\x30\x61\xbd\x4c\x89\xce\x40\x69\x76\x65\x26\x58\xd0\x02\xf6\x1b\xd0\x01\x1d\x16\x34\x0e\xf7\x78\x71\xef\x2a\xc5\xba\xcc\x75\xa5\x15\x57\x1e\x60\x99\x36\x04\x0a\xb7\x6f\x89\x80\x53\xae\x2f\xe2\xa7\xa9\x20\x73\x6c\x6f\x1f\x99\x96\x8f\x96\xa5\xc4\x16\xd7\x48\xfc\x36\xe0\xcd\xb7\x4d\x45\xa0\x6d\x91\x3c\xb1\x61\x19\x2d\xb4\xd2\xa7\x88\x4d\x47\xd7\xab\x0c\x72\xf7\xb1\xe4\xe6\x5b\x71\x3e\x72\xbf\x00\xa0\xd9\x3d\xf7\xa4\xa8\x8f\x67\x99\x1e\xdb\x95\x45\x8c\xd8\x33\xc3\xe1\xce\x9b\x8e\x41\x23\xb2\x92\x58\x84\x2e\xb5\x33\xa3\xff\x89\xaf\x69\x80\x7a\x70\xef\xca\x23\x91\x0c\xe1\xc0\x0e\xe6\xb8\x44\xdc\x5c\x01\xc5\xa0\x52\x3b\x9b\xd3\xfc\x9c\xd2\xcd\xd6\xd6\xf0\xcb\xa2\x03\xc4\x6d\x83\xb0\xb8\xac\x12\x52\xa6\xe9\x2e\x73\xb5\x7d\xd7\x65\x66\x93\xcf\xba\x98\x6b\x57\x48\x31\xd2\xd4\x7d\xaa\xcc\xb8\xbc\xd8\x12\xd5\xd5\x9e\x45\xf1\x16\xd5\xf7\xe7\xcd\x7b\xd5\xfc\x96\xa6\x21\x22\xf5\xd9\xcf\x7e\xd6\x2d\x05\x4c\xcc\xf7\x72\x73\x5e\xcc\xea\x22\xbb\x49\x9a\x9d\xa8\x3b\x61\xf0\x88\x33\x1a\x95\x43\xba\x7b\xfc\x44\x7e\xf3\xf0\xa9\xde\x6b\x8f\x2e\xe4\x6f\xce\xd6\xb3\x7b\x3a\x33\x93\xdb\xdd\x2a\x9f\x26\x34\x3e\x6f\xbb\xc4\x92\x05\xd9\x84\x06\xe5\x18\x9c\x04\x73\x00\xfc\xbf\x28\x0d\x39\x55\x94\x64\xb9\xb2\x7c\x93\x99\x15\x37\x16\x3c\xd9\x65\xdd\xe1\xb1\x02\x70\xf4\xec\x5c\xbb\x96\x0e\x89\xa0\x15\xaa\x72\x8d\xf6\x8f\x77\xb2\xb7\x0f\x9e\xee\xbd\x76\x74\x21\x7f\x6b\xb6\xae\xee\xb2\xc2\x08\xe2\x10\x42\xeb\x22\x62\xb1\xa5\xbd\xe9\x57\xbb\x9d\xbe\x3b\xc9\xd6\x7e\x87\x17\x5e\x78\x61\x11\x3d\xc8\xe7\x2a\xba\x4e\xc5\x91\xcf\xba\xde\xcb\x77\x5d\x79\xc7\x8c\x7d\x51\xfd\xec\x75\x3c\x9e\x53\x75\x8d\xaf\xe3\x3a\xa7\xda\x95\x7a\x0e\xa5\x94\xb2\xd6\x16\xb9\x57\x47\x34\x49\xb5\x29\x83\xa0\xb4\x62\xad\x15\x57\x68\xd1\x6c\xc2\xba\xcd\xcd\xb8\x72\x80\x5a\xc0\x9a\x66\x3c\xc3\x95\x25\x8c\xe6\x49\x01\x1b\x96\x64\x78\xb9\xdb\x0d\x5d\x58\x25\xc4\x9f\xc9\x3c\x48\xcb\x46\x66\x55\xaa\x69\x5f\xbc\x6a\x46\xf4\x83\x94\x73\x4a\x8c\x37\x5b\x67\xc5\xcc\xaa\xca\x18\xd3\x9c\x67\x95\xe2\xa9\x5b\x59\xcb\x61\x1b\x7c\xef\xd8\x4e\xf1\x4f\x5b\xf0\x9e\x3d\xcd\x41\x3c\x8b\xfb\x22\x9c\x32\x61\xa1\x8f\x90\x6f\xe6\xa9\xcd\xa6\x3d\x25\xbe\x09\x9a\xb8\x3a\xed\xd5\xa3\x71\xbf\x1e\x95\x99\xdf\x07\xc9\xf4\x43\x30\xaf\xc5\x2a\xef\x0b\xe6\x91\x2d\xa2\xad\x38\xfe\x52\x57\xd1\xe3\x3c\x6b\x09\x10\xe1\x1e\xb2\x0d\x72\x8c\x9a\x99\x75\xad\x50\x4d\x73\x3d\x99\xe5\x7a\xa4\x89\x2b\xc5\x54\xb4\x8d\x2c\xf1\x47\x6c\xfe\x3b\xad\xcd\x68\x75\x5d\x46\x18\x89\x6e\xdc\x3b\x01\x62\xbb\x34\x4a\x59\xb6\x65\xdb\xbe\x4c\x23\x0e\xec\x3e\x2f\x0c\x55\x54\x6a\xeb\xcc\x34\x7f\xa2\xa8\xa9\x98\xe6\xad\x25\x61\x5d\xcc\x00\xe2\xf9\xa2\xfe\x8c\xc1\xe3\x32\xcd\x70\x99\xb9\xad\x0b\x84\xc6\x71\x63\x46\xb9\xec\x9b\x77\xd5\x69\x99\xb6\x97\xba\x5f\xa5\xcc\x55\x41\x56\x97\x66\x9c\x6a\xef\x2a\xf9\xa5\x9e\x77\x7e\x43\x66\xd6\x6f\xbd\xf5\x16\x80\x06\xd8\xdb\xad\xd1\x4d\xb0\x96\x97\x2a\x5e\x3a\x98\x5a\x99\xc7\x8a\xf4\xbc\x0f\xad\xcf\xe5\xb3\xba\x50\x93\xf9\x80\x46\x1b\x07\xf5\xb3\x6b\xa3\xfa\x72\x56\x61\x08\x36\xc7\x04\x40\x58\x34\x5a\xdc\xab\xbd\x30\x99\x3c\x97\x72\x23\xbd\x51\x14\xec\xde\x2d\xb1\xa5\x52\xe8\x65\x02\xe8\x93\xd0\x00\x82\x52\x8c\x3a\xc9\xb6\x5d\x29\x67\xba\x01\x5a\x41\x50\xd0\x55\x8f\x26\xb3\x75\xb5\x77\x72\x36\xbb\x35\x3e\x9f\xfd\x74\xb2\x95\xdd\xa9\x7b\x74\xc4\xe0\x89\x59\x39\xe4\x00\x0b\xcc\x39\x3c\x66\x4e\x4b\x60\x6d\x21\xbf\xe5\xbd\xeb\xcf\xf7\xdf\x7f\x1f\xaf\xbe\xfa\xea\xaa\xf4\x90\x7a\x2e\xdf\xc7\x5a\x63\x57\x1e\x29\x86\x9d\x2a\xff\x71\xea\xb1\x2a\xfd\xc8\xf8\x2b\xf1\xf1\xae\xe7\x5a\x6b\xfd\xca\x2b\xaf\x00\xf0\x07\xe9\x59\x01\x25\xac\x87\x2e\xd4\xc4\xa8\x89\x83\x7c\x52\x5a\xbf\xe5\xd1\xd2\x9d\xe1\xdf\x5b\x4d\xde\x3e\xa4\x60\xfe\x05\x37\x26\x82\x4e\xa3\x7d\x93\x83\x7f\x19\x4e\x0b\x90\x54\x01\xc4\x99\x30\x80\x79\xc6\xd3\x4a\xb9\x73\xad\xe2\xf6\x7a\x6b\x8f\x99\xd7\x62\x85\xb8\x78\xee\xe2\x57\xc4\x7a\x96\xe9\x72\x9e\xf1\x94\x09\x15\x98\x8b\xc6\x43\xe0\xa9\xa0\x59\xfa\x6d\xfb\xc1\xd0\x48\x24\xef\x9c\x84\xb2\x4a\xbb\xf0\x32\x90\x8c\x28\xe9\x54\x08\x41\xd7\xea\xb8\xc3\xa2\xf8\x91\x8e\x81\x4a\xf1\x64\x34\xa8\xee\x1d\x0e\xe7\xf7\x67\xb9\x76\x2b\x83\xa5\x87\x21\xee\x97\xc4\x3c\x32\x79\xdd\x65\x71\x69\x8d\xfb\x60\xf9\x2e\x16\x13\x8d\x0d\x9d\x8c\xff\xc2\x85\x0b\xea\xfe\xfd\xfb\x5a\x54\xd6\xfa\xfa\x24\xb3\xd0\x40\xb3\x19\x17\x03\xd5\x3c\xd3\xd3\xd3\x5e\xb3\xb2\x28\xaf\x11\xf8\x3f\x53\xfe\x7b\x6b\x31\xf1\x03\x37\x11\x2f\xfa\x00\xe1\xc0\x17\xd1\x05\x65\x84\x83\x21\x32\x8d\xc5\x79\xb9\x8f\x62\x2f\x49\xe5\x9a\x86\x9b\xb3\xec\x62\xbf\x52\x83\x69\x5e\x3b\xe0\x92\x30\x23\xa6\x42\x8a\xa1\x2d\x0a\xab\x30\xa3\x55\x18\xe2\xb2\xfc\x57\xb1\x68\x7c\x24\x50\xfb\x57\x10\x96\x59\x87\xba\xc2\x2a\x63\xfc\xaf\x35\x0f\x03\x5e\xec\xad\x42\x03\xe4\x2d\x78\x89\xb5\x0c\x2b\x6c\xad\x16\x57\x31\xa0\xeb\x9c\xaa\xc9\x96\x2a\xe7\xfd\xde\x78\x36\x54\x87\x9b\xfb\x74\xb4\x7e\xa4\xaf\xf4\x4e\xf5\x39\xd5\xd0\x91\x72\x2a\x98\x01\x1f\x0e\xa0\xc4\x26\x43\x81\xe6\x99\xe5\xc8\x8f\x28\x87\xe0\x98\x2a\xdb\x73\x8e\x2c\xde\x11\xb6\x6e\x47\x4b\x46\xa8\xc4\x0a\x83\x9b\x88\xe9\xca\xa0\x90\xe6\x4c\x9d\x75\x86\x69\x39\x50\x47\xa7\x67\xb2\xdb\xe3\xb3\xd9\xbb\x93\x6d\x75\x7b\x36\x54\x0f\x38\x33\xcb\x9c\xd9\xb9\x86\xa6\x06\xc0\xc8\x6d\xee\xed\xdc\x96\x94\x7b\x48\xdb\xef\x10\xf5\x75\xd7\x98\xfa\x28\x80\x76\x59\xbc\x14\x80\xff\xa8\xb4\xb3\x88\xee\x1f\xa7\x4e\xa9\x7a\x2c\x05\x4b\x52\x8b\x4e\x4d\xca\x6c\x04\x35\xa0\xa9\x11\xfc\x0c\x68\x78\x71\x09\x20\x0d\x32\x22\x16\xdd\x0e\x76\x28\x93\x17\xe0\x04\xbb\xc7\x8b\x14\xc4\x61\xee\xde\xa2\x2f\xc6\x9c\x1b\x93\x3e\x2e\xc1\xcf\x27\x01\x00\x26\x54\x65\xae\x27\x9a\xd0\xaa\x6c\x6c\x79\x31\xb4\xda\xb9\x9a\xc6\x80\x0c\x3d\xcf\x74\x59\x66\x7a\xa2\x89\xab\x4c\xab\xc2\x5a\x38\x24\xcd\x04\x4a\x85\x28\xd7\xd7\x56\xc8\xaa\x2e\xb8\x16\xa4\x6b\xa9\xf6\xee\xc2\xcd\x39\x12\xd9\x04\x16\x1a\xdb\xb5\x0c\x94\x99\x1e\x3d\x5a\xab\xf6\x1e\xad\x55\x23\xad\xd2\xe3\xb6\x6b\x92\x2e\x96\x8f\x51\x39\x96\x75\xfc\x4c\x0a\x9f\x9f\x67\xb0\x6b\xc0\xfb\x5a\xe5\xea\x09\x39\xc7\x85\xdb\xe7\x61\xe8\x4a\x71\x79\x5a\xd4\xe3\x4a\x61\x1a\xd8\x9b\xc5\xfc\x14\x19\x1c\x03\x84\x60\xa2\x02\x11\xcb\xf7\xf2\x59\xd0\x7d\x62\xbb\x7f\x00\x02\xd1\xfa\x81\xd0\x98\xca\xda\x2b\xda\x6d\x5e\x0e\xc0\x98\x44\x99\xa6\x62\xbd\xcc\x2e\xae\xcd\xb3\x21\xfc\xde\x05\xad\xe5\xd1\x76\x20\x0b\xad\x3b\x36\xef\xa6\x42\xca\xac\xdb\x65\xaa\x8e\x19\xa1\xfc\x5d\xf6\x3c\x2e\x2f\x95\x97\x0c\x1a\xed\xba\xc5\x56\x9a\xae\xbc\x53\xcf\x97\x05\x59\x56\x5c\xce\x32\x13\x78\x57\x39\x5d\xdf\xa1\xeb\x3a\x55\x97\x38\xbd\x4a\xbc\x77\xe1\x77\x7e\xe7\x77\x5a\x74\x47\xcd\x96\xee\x1a\x62\xd9\xae\x70\x1b\xb9\xbd\x5d\xcc\xdf\x08\x84\x11\x67\x74\x54\xae\xd1\xfd\x47\xbb\xf9\x8d\x07\xcf\x14\x3f\x3c\x78\xaa\xf7\xda\xf8\x5c\xf6\x6e\xb9\x46\x87\x3a\x43\x09\x45\xda\x8d\x5f\x01\x26\xec\x32\xca\xb6\x19\x99\x22\xfa\x21\xc0\x6d\xce\xc5\xc2\x8c\x2d\x6c\x35\xb1\x54\x71\x69\xfd\xc6\x61\x31\xb3\xf5\x98\xc5\xa3\x9c\x26\xae\xb1\xec\x64\x28\xcb\x01\x1d\x8e\xcf\x66\xb7\x1e\x5e\xca\x5f\x3f\xb8\xdc\xfb\xf3\x47\x17\xf2\xb7\xa7\x1b\xd9\x1d\xad\x70\xc4\xcc\x23\x00\x23\x22\x1a\x19\x77\xda\x88\xfd\x29\xc8\x53\x6a\x76\xc9\xb5\x5b\xe3\x5b\x45\x49\x9e\xc2\x8c\xbb\x77\xef\x62\x77\x77\xb7\x8b\x86\x16\x8d\x2b\x79\xdd\x35\xd6\xbb\xc6\xdf\xaa\xe3\x75\xd1\xd8\xb2\xf7\x71\x5d\x63\xf0\x92\xaa\x43\x5c\xef\xae\x31\x1a\xe7\x1d\xc7\x6d\x84\x87\x52\x0a\x68\xb4\x68\xeb\x0a\xb1\x7f\xb1\xfb\x08\x00\x34\xb1\x3e\x29\xea\x43\x4d\x1c\xec\xdb\x95\x02\x27\x96\x17\xa3\x35\x46\x45\x3c\x82\xd8\x9f\x45\x0a\x58\x0a\x13\xb1\x90\x2c\x9c\x1c\xac\x62\x05\x30\x09\xbe\xef\xed\x12\x0c\xe8\x5a\x71\x39\xe9\xe9\x11\x8c\xd5\x4e\xb6\x13\xf0\x42\x5a\xba\xcc\xc8\x1c\x56\x29\x5c\x48\xb6\x7f\x35\x83\xcd\x3c\xcf\xfa\xa8\x56\x3c\x6d\x64\x8e\x68\x27\x7b\x39\x13\xcc\x29\x63\x6b\x1d\x8a\xfa\x85\x7d\x2c\x21\x49\xd3\xa0\x2f\xf1\x4e\xca\x3e\x0f\x06\xe3\x34\x86\x1b\x10\xeb\x69\x4f\x8f\x46\xfd\x7a\x7f\x9a\xeb\x52\xca\x76\xe9\x65\x11\x6e\x71\x00\x9d\x5b\x0e\xd8\xb0\x8c\xfe\x6c\x9c\xc7\x12\x22\xab\x08\xd8\x54\x70\x68\x49\x7c\x64\x07\x62\x6a\x85\x72\xd2\xd3\xe3\x4a\xf1\xd4\xe2\x45\x69\xd5\x90\xd0\x85\xe5\xd7\x40\x84\x04\xed\x8b\xa8\xb7\x1b\x06\xcd\x32\x86\x67\xbb\x2e\x1f\x39\xf8\x65\x62\x3f\x3f\xc0\x7d\x30\xb6\xdb\x8e\x37\x19\x58\xf4\x4e\x40\x3e\x98\xab\xdd\xad\xd3\x6c\x0b\x40\x4e\x08\xb6\x3e\x4e\x6a\x24\xff\xe0\x1f\xfc\x83\x14\xa2\xec\x62\x86\xa9\x78\xa9\x38\xa9\xfb\xd4\xf3\x58\xab\xea\x2a\x2b\xf5\x3e\xce\x3b\x8e\x1f\xe7\x2b\x7f\x1f\x07\x24\xa7\xca\x94\x7d\x94\xd2\x0a\xbb\xe2\xc4\xf1\x02\x42\x58\x52\x2f\xf9\x4d\x62\x50\x97\xea\xe3\x85\x6d\xfc\x83\x3f\xf8\x03\x3d\x9d\x4e\x5d\x5c\x41\xdc\xc1\xc6\x74\xe4\x8f\x04\xb0\x7b\xbc\x8c\xe1\x37\x56\x33\x00\x86\x46\xac\xe8\x68\xba\x99\xdd\x39\x78\xba\xf7\xfa\x83\xab\xc5\xf7\x1e\x5e\xea\xbd\x7e\x72\x36\xbb\x55\xae\xd1\xa1\xce\x69\xca\x04\xed\xd8\x1e\x8b\xad\xd1\x6d\x0d\x02\x5e\x1e\x71\x4e\x0a\x27\x3b\xba\x04\xd2\x84\x62\x37\xa2\x33\x92\x46\x32\x58\x9b\x8e\x3d\xb1\x39\xa6\x0b\x22\x37\x2d\x87\x41\xa8\x33\x2a\xe7\x03\x75\x78\xb2\x9d\xbd\xff\xe8\xc9\xfc\xf5\x83\x2b\xc5\x0f\x0e\x9f\xea\xbd\x7e\xb2\xad\xde\xab\x0b\x3a\x00\x35\x60\x85\x88\x46\xf0\xab\x87\x46\xf0\xab\x87\x62\xf7\x90\xfd\x0e\x6e\xe9\x33\x11\x61\x7f\x7f\x1f\x7f\xf6\x67\x7f\x86\xbd\xbd\xbd\x2e\xcb\x64\x7c\x2f\xc7\x6d\xea\x3a\x15\x16\x59\x73\x52\xb4\xdc\x35\x0e\xe3\x71\xda\x55\xa7\xf8\x39\xa2\xdf\xae\x7a\xa7\xe8\x37\x7e\x1e\xd7\x0f\x00\x94\x9c\x9c\x2b\x57\xd0\x88\x6b\x39\xdf\x51\xd7\x0a\xd5\xc3\xe1\x7c\xcf\x2c\xc6\x68\xd2\x8a\x71\xe8\x34\x7a\x78\x5e\x9c\x54\xd8\xc5\x10\x0d\x34\xfa\x96\xa4\xf5\xe3\xcc\xaf\x1e\x4d\xcf\xd8\x90\x72\xc2\x4d\x64\x77\xf9\x31\x98\x50\x4d\x7a\x7a\x7f\x6f\xa3\xbc\x0b\x31\x96\x16\xb8\x45\xdc\xa9\xdf\xd6\x5a\x6a\xe2\xbb\xfd\x75\x88\x48\xcf\x72\x3d\x39\x5a\xab\xf6\xcb\x8c\x47\x0d\xad\x89\xbe\x10\x7d\x12\xba\x8d\x85\x72\x2d\x5a\x2a\x27\xe0\x07\x7d\xd4\xd5\x77\x91\xed\x85\x3a\x7e\x83\x7e\x32\x65\xd4\x0a\xe5\x49\xa1\x0f\x47\x83\xea\xe1\x2c\xd7\x25\x10\x9c\xc5\x26\x41\x4c\x90\xbe\xc3\x55\x64\xef\xbb\xe8\x0c\xe2\x57\x01\x7e\x55\x03\xa2\x0c\xba\x08\x27\x16\x40\xc9\x34\xd2\x8f\x2f\x27\xc3\x91\x38\x29\xd7\x9a\xbd\x2b\xa5\xcb\x93\xa2\x1e\xcd\x33\x1e\x4b\x23\x97\x1b\x67\x08\x3f\x98\x79\xe8\x23\x19\x06\xea\x00\x89\xf9\xd2\xce\x94\x0d\xf9\x3e\xfc\x18\xde\xd5\x1e\x9f\xbd\x12\x15\x21\x3a\x3f\x1e\x28\xf6\x81\x62\xe4\x83\x4a\xed\x9c\x99\xe6\x3b\xb9\xa6\xa2\x52\x9c\xda\x9c\x28\xd0\x90\xfe\xf9\x3f\xff\xe7\x29\xa6\x27\x35\xa2\x14\xe3\x89\x43\xd7\xbb\x65\x82\x3b\x05\x34\x52\xa1\x0b\x20\x2c\x62\xda\x5d\x83\x6e\x51\xe8\xea\x8b\xf8\x5d\x0a\xfc\x2c\xea\xc7\xae\x32\x1e\xa7\x7f\xd0\xf1\xbc\x4b\x50\x2c\xaa\x17\x80\x06\xbc\x00\xee\x8c\x17\xcb\xe0\x14\x99\xf3\x8c\xcc\xbd\xb4\x5e\xc6\x7f\x6e\x7b\x77\x34\x3b\x4f\x97\xba\x47\xe5\xf8\x7c\x76\x7a\xba\x95\xed\xaf\x8d\xea\x5b\xeb\x0f\xeb\x2b\xeb\x47\xf5\xe5\xfe\x44\xef\x66\x73\xde\x50\x35\x0a\xd2\xa4\x62\x13\x79\xb8\x6a\x40\x9c\xf7\xe2\xe6\x0f\xc4\xe6\x67\x6f\xb5\xf1\x8f\x5c\x22\xc1\xc0\x21\xcc\xf9\x86\x56\xc8\xee\x80\x6a\x8a\x27\x68\x56\xa8\x6a\x3b\x8f\x65\x3b\x7b\x7f\x7c\x2e\x7b\x7f\xba\xa9\xf6\xab\x1e\x3d\x02\xd1\x94\xc1\x13\x32\xe0\x84\xfd\xb9\x43\xf2\xc4\x67\x79\xf2\xb1\x3b\x4c\xd0\xb9\xd6\xda\x4b\x9e\xbb\xc2\x22\x30\xbc\x6a\x58\x65\xdc\xa4\xca\x49\xf1\xd6\x14\x1f\x5e\x44\x77\x71\xb9\x29\x5e\x92\x0a\xcb\x00\x7e\x17\x10\x02\xe0\xb5\xe8\x48\x80\x07\x42\x1b\x00\x34\xb1\x3e\x58\xaf\x0e\xca\x5c\x1f\x0d\x2a\x75\x8e\x19\xaa\x05\x4c\x48\xb0\x75\xc4\x4e\x1e\x63\x65\xf7\xab\x27\x42\xeb\xba\xb0\x9c\x3b\x0b\x4c\x8b\xf1\x5b\x4e\xcf\xcd\xa4\x72\x6a\xe7\x93\xca\xbb\xcc\xf4\xe4\xc1\x46\xf9\xd3\xf7\xcf\x4d\x3f\x84\xa0\x43\x31\xfd\x21\x98\xcf\x69\x95\x91\x58\x70\x47\xf4\x8c\x49\xa1\x27\x0f\x36\xe6\xf7\x27\x45\xbd\xbf\x5e\x66\x97\x55\x73\x18\xa5\x89\xbb\xbc\x4f\x5a\x22\xd1\xd0\x5b\x0c\x80\x5c\xba\x08\xe7\x35\xcd\x6f\xef\xd3\x94\xec\x06\x71\x53\x29\x3d\x3e\xee\x57\xfb\xe3\x7e\x7d\x54\x93\xdf\x1f\x09\xd1\x38\x8b\x57\xd4\x2e\x09\x2b\xcb\x89\x45\x9a\xb4\xbc\x5f\x46\xc0\xad\xe7\xb1\x99\x50\xce\x6f\x61\x71\x42\x69\xa5\x78\x7a\xdc\xaf\x1e\xcd\x72\x3d\x66\x37\x71\x8b\xdc\xca\x83\x2e\x33\x97\x89\xd6\xf9\x42\x60\x0a\xb8\x99\xe8\xa9\x98\xc1\xa0\x08\x4d\x7d\x52\x1b\x10\xed\xf0\xcc\xd7\x24\xb4\xb3\xe8\xf3\x9a\x36\xce\x4d\x7a\x4f\xf5\x6a\x8a\x77\x56\x0c\xad\x3e\x6d\x77\x91\x0c\x49\x84\x89\x74\xdf\x2f\x7b\xd7\x05\x66\x16\x59\xd9\x52\xd6\x97\x38\x7d\xaa\xcc\x65\x56\xba\x2e\xe6\xb9\xc8\x74\x98\x8a\x1b\xf7\x4b\x57\x79\x8b\xe2\x74\xd5\x27\x60\xc8\x51\xdc\xb8\x2d\x32\x8f\x45\xe5\x76\xa5\x6b\x0a\x34\x4a\xab\x04\xf8\x26\x4f\x7b\xde\x8c\x3d\xed\xd7\x09\x6e\x18\xcb\x0b\x33\x1f\xa1\x71\x93\x1c\x01\x18\xa1\xb1\xc0\x1c\xd5\x05\x3d\x18\x9f\xcf\x7f\xf6\xe0\x63\xc5\x9f\xdf\xfb\x64\xff\xff\xd9\xbf\x52\xfc\xe0\xf8\x7c\xfe\xf6\x74\x43\xdd\xab\x0a\x1a\xb3\xa2\xca\x6a\x6b\x76\x67\xdc\xc0\xe8\x22\xcd\xc4\xf6\xbd\x35\xaa\x58\xfb\xbd\xe1\x8e\x0c\xc3\x25\xc5\xca\x22\x3b\xa7\xc1\x26\x72\x16\x4b\x6a\x20\x13\x13\x81\x15\xaa\xaa\xa0\xf1\x6c\x5d\xed\x8d\xcf\x67\x37\x0f\x2e\xf7\x7e\xf0\xe1\xa7\xfa\xdf\xbd\xff\xf1\xe2\x87\xe3\xf3\xd9\x3b\x55\x5f\xdd\x67\xc2\x11\x08\x47\xc6\x25\x34\x62\x66\xeb\x1e\x72\x96\x27\xeb\x4e\x8b\xdc\x43\xf2\x2f\x00\x2d\xbd\x5e\x2f\x65\x7a\x8e\xc7\xf4\xa2\xb1\x1a\xc7\x4f\x7d\xdb\xd4\x7b\xf9\x6e\x11\x1d\x21\xf1\x5c\x82\xf5\x24\x78\x58\xd2\x86\x38\x6e\xaa\x2c\xd5\x71\x9f\x4a\x1b\xf4\x4f\xd7\x1e\x32\x80\x10\xdc\x04\xad\x09\x7a\x34\xa8\x46\x27\x45\xbd\xa7\x81\x4a\xd8\xde\x5c\x68\x61\x08\x69\x44\xf7\x03\xb6\xb9\xb5\x43\x4e\x58\x69\xe4\xaf\x71\x69\x44\x79\x5b\x4e\xef\x8f\x6e\xb1\xca\x2e\x09\xfe\x2f\xa7\x1f\x68\x42\x75\xda\xd3\x47\x1f\x9e\x99\xdd\x9c\xf4\xf4\x14\x8d\x0c\x93\xe7\x5c\x39\xa0\x22\x00\x8b\xeb\x13\x69\x75\x8a\xfe\xaa\xb9\xd2\xe5\xa3\x41\x75\x74\xb4\x56\xdd\xab\x15\x4f\x53\xf8\x69\x11\x68\x09\x5d\x4b\xed\xf3\xf7\xe4\x6f\x1c\x3c\x66\x4b\x2b\xe6\x00\xbc\xa5\x4a\x98\x68\x19\x8c\x69\x4f\x8f\x46\x6b\xd5\xfe\x69\x4f\x8f\x85\x9b\x3b\x58\x39\x2c\x15\xaf\xc8\x65\xd4\x65\xe5\xec\xa2\x9d\x16\xdf\x5c\xb6\x73\x6e\x17\x31\x74\x0d\xf4\xd4\xc7\x92\xe9\x01\x81\x52\x89\xa8\xaa\x15\xaa\x49\x51\x8f\x27\x45\xbd\x5f\x13\x4a\xd5\x9c\x63\x11\x9e\x4b\x12\x7c\x39\x73\xd3\x61\x21\x94\x0a\xa2\x37\xb8\x84\x56\x94\x20\xb0\x61\xdb\x81\x23\x3e\x01\x57\x83\x90\xb2\xe7\x01\x19\xd3\xe0\xdc\x69\xef\xd9\xb5\x79\x36\x9c\xf6\xf4\x88\x85\xc0\xa3\xf0\xd4\x4c\x0d\x24\x27\x07\x3e\x6e\x58\x94\x7e\x65\x90\x19\x3d\x5f\xc6\xb0\x57\xc9\x37\x95\xd7\xe3\xa4\x5b\xe5\x3e\x95\xdf\xe3\x94\xf7\x51\xdb\x91\x7a\xbe\x6a\x3d\x5b\xf1\xff\xf1\x3f\xfe\xc7\x1a\x70\x27\x02\xbb\x49\x7d\xf0\x56\x95\x60\xd7\x69\x0a\x0f\xd2\x2b\x20\x00\x8e\xf9\x1b\x00\x18\x80\x30\xd0\x39\x4d\x27\xdb\xd9\xc9\xe4\x4c\xb6\x97\x95\x7c\x73\x30\xd6\xe7\xd6\x8f\xaa\x8b\xc3\x47\xf5\xc5\xfe\x84\x77\xb3\x92\x37\xb2\x1a\x05\xd5\x5c\x10\x43\x49\x4b\x65\x48\x7b\xf1\x46\x5f\x14\x3c\x77\xd1\xc4\x29\x71\x66\xd2\xba\xc9\x84\x1a\xc1\xa5\x50\xe9\x9c\xa6\x55\x8f\x26\xe5\x1a\x1d\x9e\x6e\x65\x1f\x9e\x9c\xcd\x3e\x3c\xdd\xcc\xf6\xab\x3e\x8d\x41\x38\x85\x38\x78\x92\xa2\x9d\x6f\xe1\xdd\x66\xf6\xda\x9e\xb0\x5d\x72\xb3\x1b\x77\x33\xe9\x3f\x5c\x8e\x1a\xd0\x59\xc7\x6e\xb1\x8b\xbe\x9f\xe4\x81\x8b\xd2\x2e\x03\xf8\x8f\x53\xa6\x8c\xf3\xb8\x34\x17\xf3\xe8\x8f\xca\x63\x16\xd5\x3b\xc8\x5b\xce\x5b\x88\x2d\xec\x80\xdb\x29\x5d\x03\xa8\x26\x85\x9e\x1e\x0e\xab\xf7\xcf\x4f\x7a\x9f\xcb\xe7\x6a\x20\x0d\x1e\x29\xc3\x07\xc9\x81\x48\xd6\x3e\x10\x09\x5b\x4a\xb3\x6a\xbb\x59\x9b\xa9\x57\xdb\xfa\x21\x6f\xc4\xea\x9d\x38\x5e\xad\x78\x3a\x5a\xab\x3e\xfc\xf0\x4c\x79\xc7\x58\x37\x35\xc1\xd3\x24\xe0\xa7\x41\x84\x2e\x9d\x70\xe3\x55\x08\xc1\x6e\xfa\xa4\x22\xa2\x6a\x9a\xeb\xf1\xfd\xcd\xf2\xfd\x27\x47\xfd\xc3\xa2\x52\x1b\x12\x20\xc8\xd5\x3c\x0c\x4f\x5f\xc2\xd9\xd0\xea\xac\x06\xcc\xa5\xdb\xdb\xb6\x9d\x8a\x2e\x70\xe5\x45\x13\xe5\x4d\xde\xd6\x9a\x53\x29\x9e\x3e\x1c\x56\xb7\x1f\xac\xcf\x3f\x3c\x29\xea\x09\xfe\x5f\xf6\xde\xfc\xd7\x8f\xe3\xb8\x17\xfd\x54\xcf\xf2\xfd\x9e\x8d\x3c\xa4\x48\x8a\xa2\x56\x5b\x8e\x65\xd9\x96\x17\x1e\xda\xb2\xe3\x97\xf8\x06\x49\x6e\xf0\xb2\xd8\x46\x82\x08\x08\x90\xc4\x40\x60\xf9\x8f\x12\x13\xc0\x36\xfc\x80\xc4\x59\x9e\xe3\x3c\xc4\x41\x5e\x80\xc4\xc9\xf5\x7e\xa9\xd5\x72\x6c\x99\xd2\xa5\x24\x8a\x22\x29\x2e\x87\x67\xf9\xae\x33\xdd\xef\x87\x99\xee\xa9\xa9\x6f\xf5\x7c\xe7\x90\xf4\xbd\xb9\xef\xde\x06\xce\xf9\xce\xf4\x54\x57\x57\x57\x57\x57\x57\x57\x6f\x95\x13\x22\x94\x07\x8b\x7a\x0b\x54\x9d\x67\x76\x10\xdd\xdb\xf9\xde\x75\x00\x9d\x04\x8e\x35\xa4\x5e\x0d\x83\x29\x93\x05\xab\xb3\x48\x30\xd9\x1d\x94\xd7\x0a\xe3\x46\x99\xa5\xa1\x48\xd9\x54\x88\xe6\x76\x6a\xcd\x31\xa2\xed\x16\x0c\x2d\xa2\x6d\x98\x2c\x56\x4c\x93\xa0\x52\xdc\xb5\x3b\x51\xe0\xd6\xe7\x5b\x1b\x73\x9f\x1c\xd2\xd5\x99\x79\xe4\xc8\x38\xd9\xdc\x1d\xce\xaf\xcd\x0d\x52\x50\xf0\xbc\x2c\x5c\x24\xe9\x1b\x7c\xd7\x88\xa5\x0e\xcb\x46\x67\x1a\x7c\x97\x92\xd4\x60\xfb\x28\xc8\x98\x72\x3d\x08\x3d\x07\x0d\x7d\xcb\xde\xd7\x2d\x7e\xb7\xe8\xea\x83\xdb\x87\xbe\x74\x85\x5d\x78\x68\x77\x12\x88\x3c\x07\x85\x81\xca\x60\x29\xea\x4e\x7e\x58\xbf\xe7\xf5\xef\xb0\xcc\xb1\xbf\x7f\xd4\xdc\x1c\x6d\xe6\x17\x4d\xe1\xd6\x57\xf6\xec\xe6\x70\xd7\x1e\x1b\x8c\xdc\xd1\x7c\x6c\x37\xb3\x89\x3d\x94\xce\xdd\x2a\x95\x2e\x37\xb6\x3a\x09\x93\xaa\x33\x89\x5a\xa7\x4b\xd7\x73\x4b\x8a\xd6\xac\x82\x33\xd5\x08\x15\x06\xd6\x19\xcc\x6c\x42\xb3\x32\xa3\xd1\x3c\xa7\xbd\xd9\x8a\xb9\x31\x5d\x33\x37\x26\xeb\xe6\xc6\x74\xcd\x6c\xcf\x07\x34\x72\xa6\x32\x56\x1c\xdc\x04\x0e\x33\xef\x39\x81\xd8\x21\x04\x76\x8b\x36\x11\x79\xcf\x4a\x38\x0d\x97\xd8\x6d\xc8\x9c\x4f\xce\x39\xfc\xc1\x1f\xfc\x81\xf9\xcb\xbf\xfc\x4b\x14\x45\x01\xf4\x6f\x0b\xa1\x4e\x94\x77\x99\x86\xc3\x2d\x53\xce\x9a\xc7\xa7\x8b\x1e\x49\x57\x1f\x78\x2d\x2d\x0f\xcb\x68\xeb\xab\xdf\x4d\x9a\xa6\x38\x7b\xf6\x6c\x58\x1a\x20\xbc\x0b\xfe\xb7\xea\xa8\x41\xc5\xcc\xd8\xc9\x1b\x47\x26\xe7\x4f\xee\xe6\x97\xb2\xc2\xac\x26\xd6\xe5\xdc\x28\x76\x61\x6b\x7c\x33\xfa\x24\xd6\x59\xf3\x43\xbd\x82\x17\x9d\x89\x64\xab\x63\xe6\x83\x5f\xee\x45\x04\x5a\x90\x5e\x94\x17\xba\x0d\x00\x0e\xce\x4e\x53\xbb\x77\x6d\x6d\x7e\x61\x67\x50\xec\xb0\xf6\xc6\x4f\x61\x96\x72\xd7\x5a\xef\xc2\x3d\x0f\xde\x80\xf3\xbf\x00\x8a\x49\x66\xf7\x2e\x1e\x9e\xbe\xfe\xc0\xf6\xf0\xfc\xea\x2c\x39\x91\x5a\x1a\x56\xdd\x58\x43\x1f\x1f\x90\x7b\xc3\xc4\x81\xf3\x45\xcc\x1e\xb4\x8c\x3c\xc0\x31\x06\x35\xc7\x24\x80\x5d\x58\xc9\xae\xc4\xe1\x07\xa7\x31\x7e\x78\xa8\xbd\x41\x79\xf9\xd2\xa1\xe9\x6b\xd7\xd7\xe6\x57\x2c\x85\x01\x44\x51\xd7\xb3\x37\x54\xfa\x0c\x06\x7c\xbc\x26\xdf\x31\xbb\xc4\x00\xfa\x1a\x97\xbe\x9d\x57\x67\x3a\xbe\xd0\x49\x18\x1c\xdc\xfa\x2c\x88\xc8\x16\xe4\x66\x3b\xc3\x62\x7b\x9e\xd8\xd1\x4a\x61\x8e\x02\x5c\x88\xd8\xe1\x44\xad\x51\x5f\xfd\x5d\x71\x94\x00\xed\xf9\xbc\x45\x2b\x53\xc1\xc3\x46\x8a\xa1\xa2\xda\xf3\x4d\x2c\x3d\xfb\xf5\xeb\x00\x2a\xc9\x32\x83\xc2\x1c\x3b\xb1\x9b\x9f\xba\x74\x68\x76\x71\x6e\xac\x76\x83\xa8\xf7\xbe\x58\x20\x18\x2d\x5a\x85\xc5\x94\x60\x4c\x89\xc6\xa6\x45\x62\x8a\x58\xcb\x43\xc6\x77\x75\xbe\xb1\xa9\x91\x2e\xe3\xa6\x8f\x3b\x3a\x46\x57\x57\x1e\x92\x8e\xbe\xae\x7f\xfe\x2d\xf6\xab\xe1\x8f\xd1\xa1\x19\xf5\x5d\x2e\x7a\x00\x30\x59\x96\xf1\x75\x61\xe1\x38\x01\xe9\x6a\x65\x6b\x08\xb8\x02\xf4\x4a\xd4\xdf\x32\x3d\xf4\xcf\xce\xb9\x21\x11\xcd\x40\x98\x00\x94\x3b\xe7\x72\x18\xe4\x65\x4e\xfb\xfb\x9b\xc9\xce\xe8\x70\x72\xd9\x94\xc8\x93\xb9\x5b\xcd\xc7\x76\x3d\x1f\xdb\xf5\x74\xea\xd6\xd3\x99\x5b\x4d\xe7\x6e\x35\x99\xbb\x61\x52\x60\x48\xd6\xa5\xd5\x9d\x24\x30\x70\xd5\x33\x00\xeb\x00\x38\x43\x85\x23\x58\xd4\x6b\x55\x6c\x4a\xb3\x22\xa5\x51\x99\xd3\xa4\xc8\x69\x34\xcf\x69\x34\x5f\x35\x3b\xd3\x15\xda\x29\x33\x9a\x58\x43\x13\x67\x30\x73\x84\x29\x88\x66\x0e\xae\x32\x56\x2a\x5d\xe0\x0f\xde\xf3\xc6\x49\xf0\xbe\xa0\xf1\xc2\xb4\x0c\x16\xd7\xdc\x39\x14\x46\xb3\x7e\x11\x24\x11\xe1\xec\xd9\xb3\x76\x6d\x6d\xcd\x14\x45\x21\x65\x4c\xab\x7b\x4d\x0e\x97\xc9\x47\x4c\x4e\xba\xda\x09\xcf\xa7\x4b\x3e\x34\x1d\xdb\x55\x06\x99\x26\x06\x2f\x43\x9f\x38\xc9\x1f\x00\xb0\x45\x51\x98\xcf\x7f\xfe\xf3\x46\xd3\xf7\xcc\x0b\x56\xdf\x0d\xe5\x0a\x47\x34\xbb\xb2\x31\xbb\xf2\xce\xfa\xec\xfc\xfa\x34\x39\xb9\x32\x4f\x8e\x86\xe9\x1e\x62\x86\x0f\x1f\x68\x86\x8e\x36\xe2\x35\x51\x74\xb3\x3c\xf3\xa2\x75\x48\x1b\xf1\x89\x21\x25\xb0\x73\x85\xac\x41\xb1\x3b\x28\xaf\x5d\x59\x9f\xbf\x51\x9a\xf6\x81\x86\xac\x6c\x16\x40\x4b\xee\x3c\x1f\xea\x78\xde\xae\xbd\x9c\xfa\x41\xc7\xcc\x12\x66\xbb\xc3\xf2\xc6\xab\xf7\x8c\x7f\x74\x74\x94\xbe\x7b\x73\x9c\x3d\xb2\xe0\x35\x61\xbb\x6c\x1b\xc3\x44\x32\x42\x7a\x50\x78\x67\x56\xdb\x2d\xdc\x3b\x45\x75\x5f\xe8\xda\x5e\xa6\xe6\x90\x57\xbf\x87\xd0\xc3\x13\xe6\xc6\x8e\xae\xad\xcd\x2f\x5c\xde\x98\x5d\xdc\xcf\xcb\x1d\x07\x37\xab\x07\x1c\x61\x9a\x56\xe1\x49\x9d\x9c\xf0\xc9\x4f\x7e\xd2\x7c\xf7\xbb\xdf\xe5\xb2\x18\xeb\x83\xfc\x77\x1e\x1f\x9e\xf9\x39\x2e\x5d\x9d\x87\x0c\x5d\x8d\x25\x10\xe9\xe3\x59\x47\x6d\x85\xd2\xb5\x00\x6c\x99\xb8\xd9\xcd\x95\xe2\xfa\x34\xb5\xdb\x6e\xea\x1e\xf0\x66\x65\x65\x3c\x04\x1e\xd7\x0b\x02\x2b\xce\x07\xa5\x1e\xe4\xb3\xae\x58\x6f\xe9\x36\xbc\x17\xa1\xb6\x2d\x15\x9f\x59\x63\x90\xb4\x5b\x82\x73\x6d\x60\x6e\x91\x33\xe2\x00\x00\x89\xa5\xd5\x7b\x46\xd9\xbb\xb2\x92\x5e\x9c\x64\x48\xdd\xe2\x0d\xa2\x81\x87\xcc\x2a\xd5\x46\x38\xf2\x37\xc6\x6b\x39\x32\xd7\x0c\x9e\x98\x91\xd9\xd7\x48\x5d\x36\x12\xeb\x1a\x95\x75\xc1\xf5\xc5\xd7\x85\xff\xa0\x34\x2c\xcb\x3f\x66\x2c\x5a\x2c\xa7\x23\x56\x86\x4e\x6f\xd6\x7c\x5e\x5d\xd4\xe5\xa7\x34\xbc\x01\x53\xb7\x21\x83\xe6\x7c\x97\x02\x08\xa3\x19\xfe\x27\xd7\x75\xcc\x00\xe4\xd4\xec\x4a\xca\xeb\xf7\xdc\x39\x57\xfd\x26\x18\x39\x20\xb5\x09\xd2\x22\x43\x3e\x1f\x26\xd9\xe8\x70\x92\x93\x75\x39\x39\xa4\xa6\x44\x6e\x4a\x97\x27\x73\x97\x27\x25\x52\x2a\x5d\x4a\x16\x29\x39\x67\xc8\xd6\xf2\x40\xb0\xd6\x90\x75\x06\x85\x33\xb0\xb5\x77\xa5\x28\x53\x9a\xd8\x04\x33\x47\x28\x9c\xa1\x99\x33\x98\x59\x83\x39\x08\x33\xb4\x0d\xad\x82\x10\xee\x11\xf2\x06\x4a\xd8\x4d\xc5\xa6\x81\x7c\x87\x11\x3c\x4c\x7c\x6a\x08\x68\x1f\x2a\xc7\x17\xe3\x1e\x39\x72\xc4\xdc\xbc\x79\xb3\xab\x1d\xf4\xf1\x30\x77\x79\x2d\x34\x43\x41\x6b\x8b\xb7\xf3\xdc\x07\xb6\x4b\x57\xc7\xe8\x5e\xa6\xbf\x97\xe5\xd9\xfa\xfd\xf2\x97\xbf\x0c\x61\x74\x07\x43\xbb\xe5\xa1\xa8\x7f\x47\x99\xdd\x7b\xeb\xf0\xec\xfc\xb1\xbd\xfc\xbd\x79\x61\xd6\x13\x87\x3c\x74\x70\x5c\xa7\xd7\xa1\x99\xad\xd0\x4e\x29\x91\x1b\x31\xe4\xa0\xb5\x7d\x56\x4c\x73\x68\x28\xf3\xe4\x33\x9c\x7e\xf1\x6f\xbd\x3e\xc6\x8e\xf3\xf2\xc6\xd5\x8d\xd9\xf9\x2b\x1b\xd3\xb7\x2d\x35\x8b\xbf\x7d\x1f\xc6\x07\x14\x40\x7b\x17\x8d\x18\xac\x1b\x5a\x34\x5a\x2a\xe3\x1b\x6e\x36\x4d\xed\xe8\xe2\xe6\xe4\xf5\xfb\x6f\xe5\x3f\x5e\x9b\x25\x27\xb2\x92\x56\x17\xa7\x9d\x3c\xa1\xcc\xf5\xd2\x62\x46\x7b\x1a\x2d\x18\x75\xde\x90\x54\xcc\x35\x87\x18\x2a\xdf\xcf\x36\x9e\x1c\x07\x60\x77\x58\x5e\xbe\x74\x78\xfa\xda\xad\x95\xe2\x8a\x25\x4c\xa8\x3d\x75\xdd\x3a\x7e\x00\x62\xc0\xf5\xe3\x1f\xff\x18\xcc\x68\x09\x7c\x41\x7c\x10\x10\x35\xd4\x53\x11\xd9\xb7\x33\xea\x82\x59\xd6\x58\x16\x94\x6e\x49\xae\xd8\x1d\x16\x3b\xe3\xcc\x6e\x5b\x42\x61\xaa\xdb\x44\x9b\xd4\x7c\x42\x2f\x18\x32\xfc\x7b\x23\x84\xa4\x4b\xbc\xc0\xb5\x38\xef\x13\xb5\xbe\x65\x5e\x1c\x6d\x2b\x32\xdc\x8c\x9b\x1f\x9a\xa4\x8f\xac\xcd\x92\xf5\xfd\x41\x99\x96\xd4\x5e\xa4\xeb\x3b\x23\x21\xf0\x3c\xc4\x94\x50\x9f\xce\x57\xbe\x77\x75\x98\x7d\x70\xc9\x70\x50\x7c\x77\x3b\xf4\x31\xa6\xef\x26\xce\xdb\xc1\x05\x2c\xca\x7b\xdf\x34\x00\x80\x7f\xfa\xa7\x7f\xc2\x6b\xaf\xbd\xc6\x3d\x30\xdc\xc8\xf5\xbb\x8e\xb8\xd1\xe2\xa7\x22\xfd\x62\xde\x9c\xaa\xf5\x2f\x33\x54\x46\x4b\x0a\x66\xbc\xb4\xe2\x08\x29\x88\x52\x6b\xbc\x9c\x92\x81\x43\x0a\x38\x03\x47\xa9\xb1\xc8\xe0\xbd\x2d\x80\xf1\x8b\xe6\x7d\x70\xde\x23\x54\x79\x5d\x0a\x67\x50\x3a\xa2\x02\x04\xaf\xd8\xb9\x92\x2f\xa8\x71\xb1\xf3\x1d\x40\x7e\xc4\x16\x0c\x17\xfe\x1d\xcc\xd0\xf1\x65\xe6\x1e\x16\x28\xfa\xeb\xe2\xc5\x8b\x00\x00\x66\xb4\xc4\x3a\xe3\x58\xe8\x32\xee\x3b\x0d\xd1\x25\x78\xfb\xc2\xdf\xa9\x4c\x76\x19\x23\x7d\xf3\x88\x79\x83\x5a\x9d\xcc\xe7\x3f\xff\x79\x23\x4e\x84\x0e\xfa\x5d\x7a\x06\x9d\x73\xb3\xd2\x60\x72\x79\x63\xfa\xd6\xc9\x8d\xfc\xfc\xea\x2c\x39\xba\x36\x33\xc7\x08\xec\x92\xd1\x2e\x65\xec\xda\x17\xf0\x02\x8a\xd1\xd2\x42\xd2\xee\x92\x9b\x25\x02\x8d\xa1\xa4\x6b\x77\x87\x22\x71\x93\xeb\x6b\xf3\x37\xde\xd8\x9c\xbc\xb2\x9f\x97\x3b\x95\xe7\x12\x5e\x36\xd5\x7b\xaf\x7c\xf9\xf9\x7a\x35\xb9\xce\xa5\xe6\x4b\x90\xeb\x4a\xde\x31\xd9\xcf\xcb\x9d\xf3\xc7\xc7\x3f\xba\x67\x3f\x7b\xe4\xd8\x28\x7b\x4f\x62\x91\xf3\x69\x1c\xe2\x45\x62\xa4\x7a\xef\x8c\x9f\x62\x5b\xbc\xf8\xdd\x3b\x02\xa8\x65\xa4\x70\x4f\x17\x37\x86\x5a\x6b\x3e\xd9\xa4\xc3\x38\x2f\x6f\xbc\x75\x78\xfa\x93\x4b\x87\xa6\xaf\x8f\x6a\x6f\x0b\x21\xb4\xdb\xd6\x74\x91\xe8\xdb\x2c\x00\xec\xed\xed\xf9\x77\x29\x27\x4b\xbd\xd2\x92\xc7\x49\x8f\x04\x4e\x89\x77\xf5\x37\x62\xcf\x8e\x7d\xc3\xb9\x73\xe7\xdc\xd6\xd6\x16\xa1\xa9\x38\x3f\x4d\x92\x38\xe7\x12\x22\x4a\x9d\x73\x29\x11\x65\x0e\xc8\x08\x58\x39\xb9\x9b\x9f\x3a\x32\xce\x1e\x49\x1c\x65\x44\xec\xa8\x63\x6a\x7b\x5f\x00\x7e\x43\x26\xb5\x4f\x37\x64\x44\x06\x47\x21\x97\x5d\xa2\x30\x55\xd4\x82\xc1\x82\x3c\xb4\x65\x5e\x69\x4c\xad\x25\x34\x35\x0c\x55\xc4\x14\xd7\xd7\xe6\x2f\x6f\xaf\x14\x37\x4a\x83\x31\x08\x73\x54\x42\x5a\xa2\xdd\xa0\xdd\xe9\xd3\xa7\xe9\xcc\x99\x33\x74\xee\xdc\xb9\x16\xff\x18\x4f\x3d\x9f\xe5\x9f\xf6\x4d\xd6\x95\x7c\xe7\x38\x79\x3e\x1a\x5e\xfe\x2b\xd9\xc5\xd3\x49\x7a\xe5\xb7\x98\x0c\x49\xba\x34\xfa\x39\x6d\x9e\x8e\x4e\xb9\x53\xca\xaa\xd1\x43\x91\x74\x32\x8d\x87\xb7\x4a\x9c\x46\x0b\x18\xec\x32\x7a\x78\xfe\xad\xb2\xdc\xbc\x79\xd3\x01\xc0\x47\x3e\xf2\x11\x32\xc6\x80\x88\x9c\x73\x8e\xa8\x5a\x7c\x65\xeb\x17\x9e\xde\xd6\xbf\x85\x73\xae\x64\x86\xc2\xbc\x56\x26\x25\x80\x39\xaa\xce\x7f\x0e\x60\x5e\x2b\xdf\x39\x1a\x45\xec\xa7\x97\xaa\x67\xa2\x29\x88\x26\x96\x30\x76\x06\x63\x97\xd2\xbe\x35\x18\xb9\xd4\xec\xdb\x94\xc2\x9f\x4b\x68\xdf\x25\x34\xb2\x06\xfb\x48\x68\x04\xa2\x11\xaa\x45\xb6\xe3\x7a\x07\xd4\x88\x88\xf6\x9d\x73\xe3\xfa\x79\xe4\xaa\x2d\xcd\x3e\x6e\xdf\x3f\x53\xbd\x18\x97\x88\xc6\x44\x34\x15\x86\xcc\x1c\x40\x49\x44\xf3\xba\x8c\x65\xcd\x97\x60\x60\x78\x65\x79\xf6\xec\x59\xfb\xb3\x9f\xfd\x4c\xb6\x0f\xcb\xde\xf9\xb3\xe7\x61\xac\x4e\x35\x3c\x9a\xac\x4a\xf9\xe0\x9a\x83\xe7\xc9\xd5\x8d\x6c\x7b\x10\xef\x3c\xf2\x34\xb4\x09\x00\x00\x20\x00\x49\x44\x41\x54\x4e\xca\x3f\xa7\xdb\x62\xb1\xad\x70\x9a\x24\x6e\x2d\x1f\x29\xc7\x1e\x4e\xd2\xcd\xcb\x03\x00\xe6\x23\x1f\xf9\x08\x3e\xfe\xf1\x8f\x13\x35\x2b\xb2\xc9\xe7\x5b\xeb\xfd\x04\x40\x42\x44\x95\xde\x87\xcb\x8a\x04\x44\x40\xb2\x3e\x4b\x0e\xad\xce\x93\xcd\xc4\x22\x07\x14\x4f\x38\x0b\x7e\xd7\x4c\x33\xbd\xe1\x5a\x73\x1f\x32\x69\x33\x65\xd5\xea\x87\x43\xa0\x05\xa3\xa5\xd1\xe7\xd6\xc0\xde\x5a\x29\x2e\xfd\xb7\x7b\x26\xcf\xbd\x7e\x64\xfa\x93\x69\xe6\x6e\x81\xe0\x65\xd6\xff\x79\x4f\x60\x89\x4a\x36\xcb\x3a\x4f\x77\xf6\xec\x59\xbb\xb5\xb5\x45\x75\xbb\x85\x73\x2e\xf0\x04\x95\x91\xe6\xdf\x93\xba\x5f\xcc\x1c\xc1\x4c\x32\x5b\x26\x96\xcc\xa1\x69\x7a\x24\x2f\xcc\x3a\x55\x03\x09\x31\x20\xaf\x0d\x10\x17\x1e\xeb\xd9\x07\x31\x0b\xa1\xd4\x74\x58\x80\xeb\x61\x7d\x7a\x30\x06\xf1\x35\x47\xf5\xef\x2c\xb1\xa3\xb7\x36\x67\x3f\xfa\xe9\xbd\xa3\xe7\xdf\x59\x9f\xbf\x59\x18\x77\x8b\x88\xf6\x01\xec\x03\x18\x13\xd1\x98\x1b\x30\xce\xb9\x12\x80\xab\xdb\xa8\x3b\x7b\xf6\xac\x3d\x79\xf2\x24\x5d\xbe\x7c\xd9\xa3\xe4\x72\xa5\xc9\x31\x18\x9c\xec\x8b\x4c\x82\xb6\x12\x05\xda\x8d\x0f\xca\x37\x2e\xb8\x52\xd0\x03\x2c\xb3\xbe\x5d\x90\xe8\xba\xb2\x88\x28\x41\x75\x09\x61\x86\x6a\xd4\x97\x91\xc3\xe0\xe8\x28\x3b\x7a\x7c\x2f\x7f\x6f\x66\x69\x85\x1f\x8e\x43\xa8\x04\x94\xdf\x85\xe2\x05\xac\x32\x16\x9a\xdc\x89\x00\x62\x73\x83\xa1\x29\x29\xae\xc1\x96\x56\x60\x42\xd0\x02\xf2\x85\xe2\xdf\xda\x9f\x83\x90\x50\x03\x67\xf6\x07\xe5\xf9\xab\x1b\xf3\xb7\x66\xa9\x1b\x81\x82\xd1\xe2\xad\xf4\x12\x08\x0d\xcb\x45\x76\x17\xc9\x8e\x8d\x57\x38\xaf\x68\xfe\x5d\x0b\x5a\x07\x2c\x3b\x6e\x8e\x5b\xe6\xad\xd1\xc4\xd3\xc9\x6f\x9c\x2e\x0d\x87\x66\xc8\xc4\xe8\xd7\xca\xc6\xdf\xbb\x70\x77\xa5\x89\xf1\x4a\x2b\x4f\x57\x5c\x5f\xbc\x31\x3c\xf2\x7b\x8b\x37\xcf\x3d\xf7\x9c\x3b\x77\xee\x9c\x3b\x77\xee\x9c\x3b\x73\xe6\x8c\x87\xa1\x5a\x19\xa0\x36\x5e\xfc\x9f\x1f\xe9\x78\x43\xa6\x20\x22\x2f\x73\xfe\x37\x18\x33\x44\x34\x45\x6d\xcc\xb0\x29\xa5\x30\x6d\x53\xaf\x33\x99\x10\xd1\x8c\x88\xc6\x00\xa6\xfe\x17\x8b\x8b\x66\xfd\xd9\x2a\xde\x60\x19\x13\xd1\x7e\x6d\x80\x04\xe3\x05\x95\x82\xf3\x77\x0a\x8d\xfd\x3b\xc3\x33\xae\xf1\x4c\x6b\x3a\x67\xb5\x12\x9c\xd7\x86\x4a\x89\xb6\x1b\xda\x11\x85\xe3\xd5\xf1\xda\x6b\xaf\xe1\xaf\xfe\xea\xaf\xec\x7d\xf7\xdd\x67\xf6\xf6\xf6\x38\x6f\x64\x7b\xe1\xcf\xdc\x28\x80\x02\xcf\xe3\x64\xa7\x1d\xab\x43\x2b\xd2\x48\x37\x38\xcf\x8b\xb7\x69\xed\xb9\x65\x24\x44\xe8\xd6\xe2\x35\xf8\x18\x6e\xad\xfc\x1a\x1f\x38\x7c\x28\xf3\x0b\x2f\xbc\xe0\x9e\x7d\xf6\x59\xb7\xb5\xb5\x45\x2c\x04\x7d\x8f\xca\x68\x31\xa8\x06\xb1\x29\x11\x65\xd6\xc0\xcc\x52\x67\x53\x4b\xd9\xfa\x2c\x39\x3c\x2c\xcc\x46\xe2\x28\x09\xb9\xd4\x94\xb4\x16\xdd\xd6\x8a\xb6\x71\x2e\xb4\x4f\x7a\x96\x27\xfd\x13\x5f\x27\xc6\x8c\x17\x2d\xb8\xfa\x5f\x95\x85\xc3\x7e\x5e\x5e\xbf\xb8\x39\xfd\xf1\xab\xc7\xc6\x3f\xda\x5e\x2d\x2e\x5b\x72\x7b\xa8\x0d\xef\xfa\x77\x4a\xcd\xb4\x91\x97\x4d\xe7\x65\xb1\x1e\xb4\xfb\x41\x87\xab\x9f\x89\x88\x5c\xdd\x80\x13\x3f\x98\xaf\xf9\x93\x80\x90\x14\xc6\x61\x9c\x97\xd3\xcc\x99\x64\x6d\x96\x6c\xe6\xa5\x59\x31\x20\x23\xba\xb0\x05\x6f\x51\x6c\x9a\x2d\x14\x2e\xf4\x8f\x75\xbf\xa8\x4e\xbb\xd5\x3c\xf7\xcf\x54\x45\x94\xc6\xcd\xde\xd9\x98\x9f\xff\xf7\x7b\xf7\x7f\x78\xe9\xf0\xf4\xb5\x69\xea\xb6\x51\x1d\x45\xe0\xdb\xb8\xd7\x0b\x33\x31\xb0\xf0\x9e\x27\x77\xee\xdc\x39\xe7\x9c\xa3\xfd\xfd\x7d\xad\xcd\xc9\xa9\x22\x4e\x9a\x94\x41\x03\xc0\x26\xec\x83\x54\xca\xbc\xc1\x71\xe3\x8b\x0b\xae\x47\xb8\xd0\x98\x99\xc7\xc5\xe3\xe2\x16\x67\x82\xca\x55\x9d\x00\xc8\x00\x0c\xc8\x51\xbe\x3a\x4f\x0e\x9d\xba\x35\x78\x6c\x50\x9a\xc3\xad\xc3\x83\xd8\x2e\x06\xee\x75\xa9\x2c\x66\xd7\x82\xe1\x0b\x8d\xaa\xe4\xde\xba\x09\x53\x39\xa1\xe2\x64\xd0\x76\x13\x55\xf1\xac\x1e\x3d\x5e\x59\xeb\x3e\x9b\xea\xc1\xcc\x13\x7b\xe5\xad\xc3\xb3\x57\xc7\x99\xdd\xa9\x0d\x17\xef\x75\xe1\xee\x42\xe7\x9c\x73\xcf\x3e\xfb\x6c\x57\x87\xe7\x83\x74\x97\x69\x69\x62\x46\x81\x27\x5f\x0a\x01\x0f\x2d\xc3\xb3\x03\xdf\xb2\xb0\x0c\xfe\xa0\xf8\x64\xe8\xa2\xe9\x4e\x71\xdf\x69\xb8\x1d\x7e\x69\x6d\x6f\x01\x0f\x6b\x4f\x0e\x95\x82\x04\x84\xe1\xca\x8c\x96\xb2\xfe\xf3\xc6\x8c\x97\x3d\xef\xce\xf5\xef\x73\xe7\x9c\x57\xc0\x73\x54\xc6\x89\x5f\x04\x3b\x45\x63\xa4\xf0\xe7\x31\x2a\xc3\x62\x52\x7b\x4f\xbc\xb1\xe1\x3d\x29\x93\x5a\x91\x8d\xd0\x78\x5d\xbc\x51\x32\x42\x73\x70\x9c\x57\x78\x7c\xbb\xf3\x9c\xd8\xf4\x90\xa7\xbb\xee\x14\x4a\x00\x65\x6d\xac\xf8\x36\x14\x3c\x4f\x17\x2e\x5c\xc0\x3f\xfd\xd3\x3f\x79\x97\xb4\xd7\x37\x9c\x87\xd2\x58\xd7\xe2\x79\xe0\x71\x7c\xb4\xa7\xc5\xf3\xa0\x19\x0e\x5d\x53\x4b\x31\x83\x56\x6b\xb7\x7d\xe2\x65\xde\x1a\x6e\xae\xcf\x17\x0c\x66\xe8\x32\x29\xf3\x5c\xf8\x65\xf2\xe9\x17\x64\xfa\x81\x6a\x30\x60\xe0\x3b\x69\x20\x99\x27\x0e\xf3\xc4\x15\x79\x61\x06\x6b\xb3\xe4\x50\x5e\x9a\x55\x83\xf6\x5d\x5d\xaa\xee\x25\xf6\x8d\xeb\x60\x02\x3b\xcb\xa4\xe9\xa0\x01\x40\xdb\x32\x5d\x13\x5a\xeb\x6d\x3f\x02\x06\xc6\x99\xdd\x7e\xfb\xf0\xec\x95\x57\x8f\x8d\x9f\xbf\xb2\x31\xbb\x50\xa4\xb8\x55\x1b\xe2\xde\xf8\xf6\x6d\xc2\xb7\xa7\x12\x4c\x3e\x9e\x79\xe6\x19\xeb\x07\x1c\x7e\xd6\xc1\x1b\x51\x9e\x1f\x8c\x27\x54\xf3\xc4\x38\xe7\x88\x40\xe9\x24\x73\xe5\x34\xb5\xd3\xcc\x9a\x6c\x75\x6e\x36\xb2\xd2\x0c\x09\x64\x84\xbb\xa8\xa9\x10\xb6\xae\xd3\x3b\x62\xab\xca\x6d\x33\x2f\x2c\xba\xf5\x4c\x6c\x6c\x9d\x86\x23\xc4\x8e\x43\x20\x87\xc2\xb8\xd9\xcd\xd5\xe2\xe2\x4f\x4f\x8c\x7e\x78\xe1\x9e\xc9\x4f\xc7\xb9\xbd\x09\xc2\x2e\x98\xa7\x05\x95\x3e\x98\x52\x33\xfd\x55\xfa\x41\x95\x37\xe4\xf6\xf6\xf6\xe8\xf5\xd7\x5f\xf7\xd4\x70\x6f\x4b\x28\x06\xb0\xd0\x47\xc9\xef\xe1\xd9\x4f\x15\x69\x0a\x53\x1a\x30\x3c\xce\xc3\xca\xef\xad\x06\xc0\x0c\x17\x4f\x0c\xff\xf3\x6b\x3f\x52\xe7\x5c\x4e\xc0\xc0\x38\xca\x1f\xba\x39\x7c\x6c\x75\x9e\x1c\x07\xbc\xc1\x8e\x96\xc4\x35\xf6\x04\x37\x30\x1a\xa9\x6c\x59\xe0\xfe\xbf\x63\x20\x44\x0b\x46\x4b\xd3\x18\x1a\x3b\x8b\x82\x11\x54\xc7\x30\x6b\x3e\xe0\xf3\x71\x8e\xd3\x56\xcd\x46\x5a\xc2\xfe\x95\x8d\xd9\x2b\x7b\x83\xf2\xa6\x35\x61\x7e\x3e\x74\x28\x00\x9c\x1f\x21\x6f\x6d\x6d\xd1\xd6\xd6\x16\x9f\x2e\xe2\x41\x4e\xd7\xc8\x78\xe9\x51\x89\x4d\x91\x70\x25\xc7\x15\xbb\xe6\x06\x8e\x75\xa4\xda\x54\x93\x46\x8f\xa6\xe0\x64\x07\xa1\x4d\x51\x49\x5c\xb2\x0c\x9e\x26\x8d\x8e\x65\x34\x71\x3a\xb4\xf2\x4b\x9a\xfa\xd2\xca\xf3\x91\x9d\x56\x57\x99\x64\xa7\xa3\x79\xc6\x42\xbe\x1f\xfa\xd0\x87\xe8\xd0\xa1\x43\xf8\xf2\x97\xbf\x6c\x4f\x9f\x3e\x5d\x99\xea\x95\x20\x7b\x63\xc5\xc9\xbf\x5a\xbe\xb8\xcc\x15\xf5\x94\x0b\x9f\x5f\xf7\x6b\x4c\xfc\x54\xd2\xac\x56\x42\xde\x58\xe1\x7f\xdc\x33\x32\x45\xa3\xc4\xfd\x14\xcf\xb4\x36\x64\xbc\x41\xe2\x3d\x31\x13\xaa\x5c\xc9\x53\xa6\xf4\xbd\x87\xc7\x1b\x2b\x9e\x06\xbe\x00\x37\x18\x2c\xdc\x28\xa3\xc6\xe3\xe4\x17\xe0\x52\x6d\xb4\xf0\xa9\x20\x59\xbf\x31\x39\x90\x83\x33\x4d\x7e\xb5\x3a\x95\xae\x6d\xad\x0d\xf2\xae\x55\xe2\x97\x32\x18\x93\x47\x6e\xf8\x90\xc0\xe9\xf3\xd0\xda\x3d\xa0\xe7\x47\x02\xa7\x2c\x87\xc6\x13\x8d\x96\x96\xfe\xff\xc5\x5f\xfc\x45\xb3\xb1\xb1\x81\x2c\xcb\x7c\x5c\xd0\xdf\xfe\xc1\x2f\x15\x40\xa5\xf3\x0d\x88\xcc\x2c\xb1\xae\x30\x28\x33\x4b\xd9\xca\xdc\xac\x67\xa5\x19\x1a\x90\xa9\xbc\xeb\x08\x0b\x6f\x1b\xbd\xcb\xae\xac\xf0\xba\xb7\xd6\xc5\xae\xca\x15\x61\x5d\x88\xab\xc9\x5f\xe8\xe4\x39\xf7\xbc\xf7\xbe\xea\x20\x26\xa9\xdd\xbb\x7c\x78\x76\xfe\xfc\xf1\xf1\x73\x17\x0f\x4f\x5f\x9d\x64\xee\x06\x08\xfb\x40\x33\x4d\x54\xcb\xf9\xb4\x96\xd7\xb2\x42\x1b\xa6\x68\xe1\xa7\xff\x4f\x9f\x3e\xed\x3d\x4f\xc1\xeb\x52\xb3\xc3\x4f\xfd\xfa\x75\x3d\xe4\x3d\x52\x44\x64\x1c\x9c\x99\x64\xb6\x9c\xa5\x76\x9c\x38\x4a\xf2\xd2\x0c\xb3\x92\xf2\xc4\xa1\x5a\xfb\xe9\xc4\x9a\x17\xaf\x06\x1c\x35\xfd\x21\x78\x5c\x63\xc6\x50\x3d\x88\x6f\x8c\x96\x66\xdf\x2e\x85\x27\xc0\x91\xc3\x3c\x71\xa3\x1b\x6b\xf3\x8b\xaf\x9c\x18\x9f\x3b\x7f\x7c\xfc\xa3\xfd\x41\x79\xc3\x11\xf6\x00\xec\xba\xe6\x36\xf6\x70\xa1\x29\xf7\x8c\xba\x66\x71\xb6\xbb\x72\xe5\x0a\x2e\x5c\xb8\x80\xdd\xdd\x5d\x60\xd1\x90\xd7\xec\x08\xa9\x8f\x17\xa6\x79\xe5\x01\x74\x9a\x60\x72\xa1\xed\x82\xd5\x16\x29\xf1\xad\x71\xda\x42\xba\xb0\x50\xc9\x02\xb3\xdd\x61\xb1\x37\xca\xed\x8d\x72\xec\x66\xa9\x38\xcf\x45\x7a\x41\x00\x2c\xbc\x57\x91\xbe\x2d\xa3\xb1\x3c\x3a\x26\x4e\x25\xde\xca\x00\xaf\x2b\x9a\x38\x0c\xc0\xad\x94\xc6\x42\xf7\x95\x8e\x20\x02\xe4\x60\x56\xe6\xe6\x81\x13\x7b\xf9\xfd\x57\xd7\xe7\x17\xe6\x69\xb9\xe3\x9a\x6d\xd0\xde\x65\xea\xd7\xfd\x84\xb9\x79\xb1\x03\x82\xf3\x59\x0b\x3c\x3e\x36\xb2\x8b\xe1\x32\x11\x98\x65\x79\xc9\x5f\xa3\xc4\x75\xc1\x6b\x38\x3d\x9e\x65\xb8\xba\xe8\xe9\x0b\x17\x2b\x1f\x87\x8f\xc9\xfa\xb2\x74\xcb\xe8\x89\xb5\x93\x2e\x1a\x43\x9a\x17\x5f\x7c\x11\x2f\xbe\xf8\x22\x7e\xe7\x77\x7e\xc7\xec\xec\xec\xe0\xf0\xe1\xc3\x01\xd6\x35\x8b\x77\x2d\xd0\x6c\xb9\xa7\x66\x21\x78\xb8\x4a\xa0\x96\xc1\xd6\x4e\x37\x19\x57\xcb\x25\xd8\x37\x2f\x2f\xa6\xce\xaf\x19\xc9\xb2\xdd\x3c\x00\x5a\x8b\x10\x49\x2c\xa0\xa5\xf6\x4e\x0c\x8b\xc5\x9b\x9b\x65\x3a\xce\x07\x7f\xaa\xf0\xc2\xc1\x8d\xde\xd3\x12\xe1\x9d\x0f\x31\xf9\xd2\xd2\x71\xf8\xbe\x32\xde\xa7\x0d\x9a\x48\x9c\xd6\x9e\xb4\x3c\x62\xed\x4e\x4b\x67\x3a\xbe\x43\xc0\x6a\x70\x92\x7f\x9d\x6d\xe9\x3b\xdf\xf9\x8e\xfd\xce\x77\xbe\xb3\xb0\x23\x4e\xc8\x83\x5f\x3c\x3e\x22\xa2\x14\x40\x5e\x24\xd8\xbb\xb2\x31\x7b\x13\x40\x6a\x89\xf0\xf0\x4d\x7c\xf0\xd0\x24\x3d\x66\x1c\xa5\x5e\xaf\x02\x7c\x40\xea\x8d\x21\x40\x6e\x8f\xe6\x1a\xbe\xb9\xfe\x85\xda\x70\x8a\x27\xbd\x3a\xcd\xd9\x61\x96\xd8\xbd\x2b\x1b\xb3\xd7\x7e\x76\x6c\xf4\xfc\x9b\x9b\x93\x57\x47\xb9\xdd\x06\x41\x1e\x82\xe8\x8d\xec\x50\x2e\xd6\x49\xb7\xce\xe4\xfa\xdc\xe7\x3e\x67\xbe\xfe\xf5\xaf\x5b\x60\xf1\x80\xc9\xfa\x77\x56\xb7\x4d\xbf\x8b\x2e\x45\xb5\x84\x22\xb5\x84\xf4\xca\xc6\xec\xad\xc2\xc0\x4e\x52\x3b\x7a\xf8\xe6\xf0\xfd\x47\x47\xd9\xa9\xbc\xc0\xb0\x36\x6e\xc0\x8f\xf5\x70\xed\xa2\x35\xbb\xa6\x02\xcf\x9a\x91\x77\xb0\x6d\x5c\xd3\x87\xfa\x19\x0e\x47\x0e\x16\xb0\xb3\xd4\x8e\xae\xad\xcd\x2f\x9e\x3f\x3e\x7e\xf6\x67\xc7\xc6\x2f\x8f\xf2\xf2\x1a\x08\x7b\xcc\xab\x1a\x78\xe1\x9a\xc3\xe7\x02\x2f\x6a\xbc\x96\x88\xf0\xdc\x73\xcf\xe1\xd2\xa5\x4b\xaa\x5e\xc3\xc1\xdb\x82\x01\xaa\xa9\x22\xff\x22\xdd\x32\xfe\x8f\x44\x22\x3e\x8a\x94\x23\xf3\x56\x38\x77\xee\x9c\x7b\xf6\xd9\x67\x5d\x6d\x79\x12\x98\xb2\xac\x17\x6c\xa5\xb5\x05\x9e\x81\x90\x97\xe4\xf2\x53\x3b\x83\x53\x47\xc6\xd9\xbb\x52\x4b\x83\xf6\x3d\x45\xc2\xf0\xe0\xf6\x09\xb8\xd0\xf2\xda\x63\x62\xcf\x4a\xd7\xf2\xa4\x84\x69\xa5\xc6\x8a\xf5\xab\xd6\x83\x35\xca\x2a\xd7\x37\x88\xaa\xa2\xeb\x67\x6a\x2f\x10\xae\x85\x25\x29\x8d\xbb\x7c\xf9\xd0\xec\xf5\x51\x6e\x77\x6b\xeb\xdc\xcf\xff\x71\x65\x1e\xf8\xf7\xed\x6f\x7f\xdb\xa6\x69\x6a\xac\xb5\x1a\x3f\xb5\x11\x10\xaf\x23\x39\xaa\xe4\x30\x32\xad\x56\xa7\xcb\xbc\x15\x1a\x1d\x72\x24\xd7\x45\x03\x4f\xcb\xe1\x25\x3d\x32\x8d\xc6\x87\x3e\x9e\x0c\x8d\x57\xda\xb3\xe4\x43\xd7\x48\x58\xc3\x19\xcb\x5f\xa3\x31\xe6\x59\xd1\xca\xc7\x47\x18\x3e\x9e\x5e\x79\xe5\x15\xfb\xf2\xcb\x2f\xbb\x47\x1f\x7d\x94\xbe\xf2\x95\xaf\xd8\x7a\x5d\x01\xf7\xb2\x78\xe5\x18\x3c\x7a\xf5\x77\x3e\x75\xe4\xa7\x5d\xfc\xe8\xa8\xf4\x9d\x0a\xea\xc5\xbb\xb5\x22\x0a\xef\xa8\x14\x94\x5f\x77\x12\xce\xb3\x40\x7b\xdb\x32\x57\x68\x53\x54\x53\x4f\x72\x01\xb0\xc7\x2f\xbd\x2b\x16\xcc\xbb\x52\x2b\x41\x57\xd3\xea\x7c\xa7\xf0\xec\xb3\xcf\xba\xa7\x9e\x7a\xca\x3c\xfe\xf8\xe3\xf4\xe3\x1f\xff\x78\x99\xb7\x02\x68\x77\xc0\x5d\xde\x39\x19\x34\xdd\xa6\xc9\xb2\xf4\x9c\x69\x9e\x1a\x1f\x34\xef\x88\x26\x8b\x32\x2c\xf3\xf4\x68\x65\xd1\xf4\x34\xc7\xd7\x92\x2b\x05\xcf\x32\x9e\xa9\x6d\xe3\xdc\xb9\x73\x5c\xdf\x73\x23\x97\x7b\x5d\x0c\x4b\x63\x4a\x72\x6e\x94\x97\xd3\x71\x6e\xc7\x89\x25\xac\xcc\xcd\x46\x5e\x9a\x21\x01\xa6\xf6\x47\xb4\x94\x9c\x47\xe6\x75\x6e\xf8\xc6\x55\xbf\x8f\x77\x2c\xbd\xd7\xfb\x4d\x1f\x5e\x17\xd0\xd9\x49\x66\x77\x2f\x1f\x9a\xbd\xfa\xca\x89\xd1\xb9\x37\x8e\x4c\x7e\xb6\x9f\xdb\xeb\xa8\xa6\x44\x46\xa8\xae\x97\xf0\xd3\xa4\xc1\x53\x88\x66\xea\xd2\xaf\xbd\x02\xf3\x9a\x9b\x9f\xfc\xe4\x27\xa1\x3e\x59\x3b\xe5\xe4\x19\x34\x0e\x29\x53\x7b\x61\x02\xef\x2d\x9c\x1b\xe7\x76\xbe\x33\x2c\x76\xe6\x89\x1b\xa7\x96\xd2\xbc\x34\xc3\xc4\x52\x6a\x00\x03\x50\xf0\x34\xf9\x7b\x97\x1a\xcf\x94\x3c\xc8\x9f\x82\x71\xe3\xea\x38\x3e\xf8\xf0\x03\xfc\xc2\xb8\xd9\x28\xb7\xdb\x97\x0f\xcf\x5f\xfb\xe9\xbd\xa3\x73\xe7\x8f\x8d\x7e\x32\xc9\xed\x0d\x54\x0b\x93\x77\xa9\xba\xe0\x75\x5c\x1b\x30\xde\x8b\xea\xdb\x72\xf0\xee\x7a\x6f\xcb\xd9\xb3\x67\xed\xce\xce\x4e\x4c\x17\x42\xc4\x73\xb9\x96\x32\xce\x0b\x03\x39\x55\x24\x9f\xe5\xbb\x44\xd2\x2b\x9c\x39\x73\xc6\x77\x06\x1e\x87\xaf\xb0\x04\x40\xe6\xaa\xed\x9b\x03\x00\xd9\xe6\x38\x3b\x7a\x62\x37\xff\x85\xac\xa4\xd5\xf6\x46\xb7\x9a\x18\xd7\x08\x69\xcb\x1a\x0f\xc4\x36\x6e\x31\x4f\x7c\xdb\xa0\xa8\x63\x89\xfb\x48\x9a\x14\xad\xc3\x78\xf8\xf1\xe7\xfe\xac\x00\x6a\x9e\x43\x43\xe1\xdb\xb1\x7d\x56\x95\xa7\x72\xff\xca\xc6\xec\xfc\xde\xb0\xbc\x6e\x4d\x63\x99\xa2\xb1\x34\xc3\xdc\xa8\x73\x0e\x67\xce\x9c\xa1\x1f\xfe\xf0\x87\x31\xe5\x25\x2b\x5b\x3e\x6b\x9d\xa3\x53\xd2\x76\x59\xb5\x9a\x42\x95\x1d\x82\x86\xb7\x4b\x61\xcb\x7c\x9d\x02\xa3\x0a\x67\x24\xc8\x46\x60\x95\x6f\xb1\xf2\xca\xf4\xcb\x78\xc5\xcb\x65\x15\xf8\xae\xfc\x63\x34\xcb\x74\x31\x43\x4a\xe3\x51\x48\xf3\xf2\xcb\x2f\x5b\xa0\x1a\x1c\x3c\xf1\xc4\x13\xf4\x67\x7f\xf6\x67\xc1\x88\x61\xeb\x40\x3a\x8d\x18\x6a\xe6\xe7\xcb\x5a\xf9\x04\x63\x06\xb5\x62\x46\xb3\x1b\xa9\x35\xad\xc3\x0d\x11\xaa\x16\xe4\x4d\xfd\x77\x6f\xe0\xa0\xd9\xea\xec\xd7\xab\x78\x9c\xfc\x58\xf0\xb2\x56\x78\xb6\x76\x33\xfb\x72\x5b\xa0\x5a\xcb\x23\x47\xb2\x2f\xbf\xfc\xb2\xab\x8d\x16\xc9\x27\x69\x48\x48\xcf\x83\xe4\x71\x5f\x03\x97\xa7\xe3\x8a\x95\xeb\x35\x29\x07\xd2\x88\xe5\x86\x80\x34\xdc\x35\x79\x88\x19\xb8\xb2\x7c\xb2\x1c\x7d\x8c\x32\x39\xd0\x88\x75\x22\x31\xbd\x02\x91\x2e\x3c\x7f\xe1\x0b\x5f\x30\xc6\x18\xf8\xa9\x11\xef\xbd\xa3\x66\x2a\x84\xd3\xeb\x3b\x6b\x72\x06\x34\xca\xca\xc9\xee\xa0\xdc\x73\x84\xc9\xa0\xa0\x61\x5e\x9a\x95\xc4\x51\x6b\x56\xc0\x4f\x95\xa0\x65\xb4\xd4\xef\xfc\x0c\xaf\x9a\xaa\x4a\x5d\xb3\xa3\xf3\x5b\xd6\x0b\x60\x09\x76\x7f\x50\xde\xb8\x70\x74\xf2\xc2\xcb\x27\xf7\xff\xeb\x9b\x9b\xd3\xd7\x26\x99\xbb\xe9\xe0\xfc\x3a\x8e\x7d\xaa\xd6\x72\xed\xa3\x32\xc4\x5b\x3b\x89\x80\x66\xad\x22\x00\xb0\xf5\x8a\xad\x3a\x66\xeb\x5d\x3c\x79\xc6\xcf\x17\xf9\x1f\xdf\x78\x6b\x99\xaf\x78\x4d\xe4\x26\xa9\x2d\x6e\xad\x94\x7b\x7b\x83\xf2\x96\x35\x6e\x96\x5a\xca\x52\x4b\x99\x71\x94\x84\x6e\x30\x74\x8a\x55\xa1\xc9\xf9\xf2\x8a\x41\x78\x20\xcc\xef\xac\xad\xe0\x2d\xc1\x4e\x53\xbb\x7f\x7d\xad\x78\xeb\xd5\x63\xe3\x17\xff\xfd\xde\xfd\xe7\x2f\x1e\x9e\x5e\x98\x67\xee\x16\x80\x5d\x54\xc6\xdb\xbe\xab\x16\xe4\xfa\xc5\xf5\x53\xdf\xf6\xbd\xc7\xa5\x6e\xc3\xa1\xed\xbe\xfe\xfa\xeb\x34\x1a\x8d\xb8\x9c\x7b\x79\xf1\xef\xb2\x9f\xe1\xed\xca\x3f\x2f\x18\x3e\x07\xbd\xab\x48\xfb\xe6\xbf\x77\x8d\x18\x64\x58\xb8\x7f\xc5\x39\x57\x00\x54\x5c\xdd\x98\xbd\x35\xcd\xec\xf6\xea\xdc\x1c\x83\xab\xf3\x60\xd6\x07\xbb\x07\x3a\x04\x2e\x29\xde\x0a\x6d\xe0\x21\x1e\x98\x61\xc2\x4d\xd4\x30\x1f\xcb\x34\x4b\x2b\x0d\xcb\x50\x5a\xf6\xb5\xd3\x84\x53\x65\x40\xe9\xea\xcc\x3c\x70\xef\xee\xe0\xc1\xeb\x6b\xc5\x85\x5b\x2b\xc5\x9e\x77\x05\xa2\x12\xfc\x0a\xac\xe6\xd9\x82\x47\x09\x0c\x55\x3f\xbe\xc6\xdc\xd3\x07\x81\x5b\x96\xcf\x32\x5a\x7e\x1e\xdf\xba\xc2\x41\xf9\x72\x37\x70\xf4\xe5\xf3\xdd\xc6\x17\x85\xfb\xd2\x97\xbe\x64\x81\xf6\x14\xca\x17\xbf\xf8\x45\xdf\x49\x48\xf9\xf2\x6d\x35\xdc\x42\x5d\x77\x2a\x00\xc2\xd4\x10\x00\x80\x75\x38\x60\x38\x0c\x16\xa7\x02\x5a\xf8\x63\xcf\xde\x1b\xc4\xe9\xaa\xd3\xaa\xd3\x13\xde\x58\xe1\x77\xe1\x74\x04\x29\x9b\xea\x94\x06\xcb\xc3\x42\xe4\x17\x49\xaf\xe9\xc0\xae\x3a\xeb\x1a\x18\x1c\xf4\x39\x16\x34\x98\x98\x8e\xee\xa2\x25\xf6\xbd\x0f\x0d\x6a\x5a\xbf\x48\xba\xbe\xf5\x9c\xe3\x0a\xf2\x56\xff\xf2\x53\xc4\x2b\x0f\x83\x81\xbd\xbe\x36\xc7\xfe\xa0\xdc\xbf\xb2\x31\xbb\xfa\xde\x77\x56\x3f\xf8\xc0\xf6\xf0\xbd\x6b\x33\xda\x34\x8e\x52\xdf\x01\xd7\x4e\x6f\xd6\xe3\xf9\xdd\x45\x6d\x1d\x4a\xf0\xc7\x66\xb4\xd7\x43\x3a\x00\x8e\x60\xe7\xc6\xcd\x6e\xad\x14\x97\x7e\x72\x62\xf4\xec\xf9\xe3\xa3\xf3\xbb\x83\xf2\x1d\x47\xd8\xf1\xeb\x37\xc4\x3a\x0e\xee\x69\xe4\x7d\x57\x90\xff\x66\x19\x4b\x9c\x87\xbe\x0d\xd4\x83\x58\x6e\xcc\x81\x3d\x1b\xd1\xee\xec\x24\x2d\x8b\x37\x8f\x4c\x26\xd7\xd6\x67\xd7\x8e\xed\xe5\xaf\x3d\x72\x63\xf8\xee\x07\xb6\x07\xef\x39\x3c\x49\x4f\xa4\x8e\xaa\xc3\x21\x83\x91\x52\x0d\xe0\x83\x47\x05\x6c\x60\x8e\xf6\x40\xbf\x24\xd8\x79\x62\x27\xbb\x83\xf2\xda\x5b\x9b\xd3\xd7\xfe\xdb\xd1\xc9\x2b\x57\x37\x66\x97\xa7\xa9\xbd\x65\xe1\x46\x04\xda\x43\x7d\xa9\x2b\x1a\xcf\x13\x3f\xd9\x7a\x46\xed\x29\xe1\x10\x22\xbb\x65\xfb\xf4\x3f\x5d\x72\x6a\x01\xfd\x1c\x17\x6e\x05\x71\xa7\x06\x1f\xf1\x79\x1e\x68\xa3\x9d\x85\xc0\x2c\x4d\x3e\xda\xf0\x5b\xe3\xfc\x94\x51\x0e\x20\x9d\xa5\x2e\x7d\x70\x7b\xf0\xc8\xfa\x2c\x39\x69\x1c\xb2\x20\xa5\x9e\x18\xa2\x36\xe7\x19\xc2\x40\x84\x34\x5a\x44\x08\xeb\x6e\x6a\xa0\x76\x05\x4b\x0f\x4e\xed\x6e\xe4\xc6\x8d\xcf\xab\x4e\xe0\xa7\x90\x7c\xfa\x46\x38\x28\x29\x8d\xbb\x7a\x75\x7d\xf6\xc6\xde\xb0\xdc\x06\x5b\xa0\xcb\x46\xc5\x7e\x74\x09\x00\xb8\x7c\xf9\x32\xed\xee\xee\xc6\xbc\x17\x5d\x21\x36\x3d\xd1\x05\x2f\x47\x7e\xb1\xc0\xd9\x12\x1b\x91\xc6\x68\xe9\x1a\xc5\xc6\xd2\xf5\x2d\x4b\xd7\x48\xb3\x2b\x4d\x0c\x4e\x7b\xd6\xdc\x95\xb1\x6f\xcb\x46\xec\x92\xd6\x2e\xdc\x07\x4e\x93\x24\x89\x71\xce\x39\x7f\x14\x81\x1f\xbd\xc1\x3b\x0d\x5d\x38\xff\xc5\xba\xe6\x5c\x18\x2e\x7f\xb6\xf6\xb8\x38\x20\xac\x35\x09\xbb\x78\xd8\x34\x53\xeb\x99\xbd\xb7\xd6\xac\x70\x37\x7a\x3d\x22\x0d\x1e\x46\x8f\x1b\x8d\x57\x25\x4c\x9b\x7a\xba\x4f\x9f\x3e\x4d\x45\x51\xd0\x3f\xfe\xe3\x3f\xfa\x32\xc4\xfe\xb8\x47\x80\xcb\xa9\xe6\xbd\xd0\x60\xbb\x70\x5b\xe5\x5d\xba\xb3\x9d\x12\x67\x3b\xf2\xe1\xcf\xb1\xba\x06\x16\xf3\xe3\xdf\x35\xd8\x2e\xfa\xa4\x77\xa7\x2b\x1d\x97\xad\x65\x65\x6f\xe5\xf3\xda\x6b\xaf\x39\x6f\xb4\xb8\xea\xec\x12\xc7\x9e\x43\x07\x4f\xed\x45\xab\xdc\xc0\x75\x85\x71\xc5\xce\xb0\xd8\x7f\xfb\xd0\xf4\xf2\x28\x2f\x6f\xa6\x8e\x60\x2a\xc9\x4d\x08\x64\xf8\x12\x54\x30\x5d\x2e\x8e\x75\x01\x9f\x2e\xa9\x60\x1c\x4a\x72\xc5\x38\xb3\x7b\xd7\xd7\xe6\x17\xcf\x1f\x1b\x3f\xff\xc2\xfd\x7b\x3f\x78\xed\x9e\xf1\x2b\xe3\xcc\xde\x00\xb0\xe7\xe0\xf6\x50\x79\x18\x76\x6b\x0f\x03\x5f\x8c\x3e\x65\x1e\x49\xee\x2d\xb7\x00\xf0\xd2\x4b\x2f\xe1\xd2\xa5\x4b\x54\x97\xa9\x55\x47\x7f\xf4\x47\x7f\x44\x69\x9a\xfa\x32\x07\x1e\xb3\xe9\x9a\xb0\x43\xae\x6e\x9b\xa1\x5d\x21\xb4\x29\x2a\xe7\x89\x9b\xef\x0c\x8b\xbd\x2b\x1b\xb3\x77\xae\x6e\xcc\x2f\xed\x0d\xca\xeb\xf3\xc4\x8e\x2d\xa1\xa8\x6f\xc2\xae\xba\x22\x61\xc9\x39\x72\xb6\x24\x94\x8e\x60\x0b\x83\x62\x9a\xda\xf1\xce\x4a\x71\xf5\xd2\xa1\xd9\xab\x3f\x3b\x3e\x7e\xf1\xe5\xfb\xf6\x9f\x7b\xf5\xd8\xf8\xa7\x37\x56\xe7\x6f\xcf\x13\x77\x0b\x95\xc7\x69\x97\x9a\x6d\xcf\x7b\x68\x76\x0a\xb6\xa6\xcb\x50\x9f\x61\xd3\xd0\x59\x85\x9f\xfd\xec\x67\x34\x9d\x4e\xb9\xfc\x70\x79\xe2\x3c\x5a\xf6\x27\x65\xd3\xc8\xbe\x5d\x5a\xe5\xcb\xde\x79\x9c\xfc\x0d\x81\x9d\xe9\x62\xd0\xec\x26\x0a\x17\xc0\x39\xe7\xd6\x01\x6c\x12\xe8\x10\x80\xa3\x9f\x7e\x75\xf3\x37\xde\xfb\xce\xea\x7f\x5e\x99\x99\xa3\xc6\x35\xdb\xc0\xf8\x4a\x72\x12\x71\xde\x5a\x88\x1d\x6b\xbc\x68\xc4\xe8\xb1\x1a\xce\x0a\x9a\x5d\x7b\x0e\x69\xa0\xb4\xd3\x7a\x5b\xcb\x92\x2b\x6e\xae\xcc\x7f\xf0\x83\x87\x76\xff\xf2\xb5\x7b\xc6\xcf\xce\x12\xbb\x5d\x0b\xc2\x88\xda\xeb\x04\x42\xc7\xd1\x71\x63\x74\xd7\xe8\xa9\x2b\x1c\x04\xf6\xa0\x69\x6e\x07\xf7\xcf\x83\x8e\xff\x1e\xb4\xfc\x47\x0c\x4b\xcb\xcc\xda\x9e\x4c\x07\x00\x6c\x24\xda\x8e\xd7\x60\x7b\x04\x2b\xf0\x71\xfc\xad\x6f\x6c\x2d\x4e\x08\x5c\xf6\xd7\xd7\xd7\xcd\xde\xde\xde\xed\xc8\xbb\x84\xef\xd2\x59\x77\xeb\x39\x16\x87\x25\xb0\x7d\x68\x8d\x85\xbb\xc1\x93\x3e\xe5\x42\x0f\xfa\x02\xdc\x70\x38\x34\x93\xc9\x84\x7b\x5c\x8c\xf8\x0b\xa7\x38\xd7\x4b\x04\x56\x51\xf5\x03\xab\x00\xd6\x01\xac\xc2\x61\x1d\xc0\x90\x80\xd5\xac\xa4\x43\xeb\xd3\xf4\x9e\x13\xbb\xd9\x89\x93\xbb\xf9\xa9\x7b\xf6\xf3\x93\x1b\xd3\xe4\xe8\xa0\xa0\xd5\xc4\x51\x6a\x1c\x19\xb2\x48\x0d\xd3\xfa\x7e\xcd\x86\x83\x83\x35\x28\x0a\xe3\x8a\xb9\xb1\x93\x49\x66\xf7\x6e\x0d\x8b\x1b\x97\x0f\xcd\xde\xb8\x74\x78\x7a\xf1\xe6\x4a\x71\x63\x96\xda\x5b\x65\xb5\x00\x77\x0f\xd5\xaf\xf7\xb4\xec\xd5\x6b\xb6\x82\xc7\x05\xed\x6b\x27\xbc\x61\x01\x22\xea\xd2\xdb\x21\x3c\xf5\xd4\x53\x66\x73\x73\x93\xf3\x4c\xf2\x25\x85\xb8\x1c\xb5\xe6\xcb\xaa\xab\xee\x1d\xab\x78\xe5\xb0\x0a\x60\x98\x38\xac\xa6\x25\xad\x0d\xca\x64\x75\x63\x92\x1c\xba\x67\x3f\x3d\x7a\x74\x94\x1d\x5b\x9f\x26\xeb\xc3\x22\x59\x4d\x2d\x0d\x13\x07\xe3\x00\x14\xc6\x15\xb3\xc4\x8e\xa6\xa9\x1b\x4d\xd2\x72\x72\x6b\xa5\xd8\xbe\xb6\x3e\xbf\xb6\x3d\x2c\xb6\x27\x99\xdd\x2b\x8d\xdb\xb7\x84\x89\x83\x1b\x81\xed\x14\xac\x7f\xc3\x51\x07\x35\x4f\x5a\x8b\x72\x19\x3f\x80\xbb\xd7\x87\x75\xca\xa6\xb6\xab\x28\x96\x10\xe2\x39\xe6\xe6\x51\x03\x57\x60\xe2\x2f\xb8\xce\x50\x9d\x77\x52\x5c\x5f\x9d\x5f\x9e\x26\x76\x6f\x48\x66\x93\xe7\x2d\x17\x86\x37\x06\x86\xe3\xc6\xe5\x42\xf0\xbe\x90\x36\x58\x07\xbc\x3f\xcf\xc5\x1b\x2b\xe1\x68\x5c\xa5\x5c\xf0\x46\xcc\xe2\xb1\xcc\x04\xa4\xc3\x79\x72\xf2\xd8\x7e\x76\xdf\x95\x8d\xd9\xfa\x7c\xd5\xed\x01\xad\xdb\xa2\xbd\xd0\x06\xa5\xfe\xc5\x2f\x7e\xd1\xdc\x86\x8b\xcd\x07\x4d\xe1\xf4\x15\x8e\x58\x5e\x5d\xb0\xb7\x63\x28\x1c\x44\xe1\x1e\x44\xa1\xff\x47\x32\x5a\x96\x75\x96\x77\x2b\x2c\xe5\xcf\x33\xcf\x3c\x63\x9f\x7c\xf2\x49\xf3\xfd\xef\x7f\xbf\x75\x24\x3b\x1b\xf5\xfa\xf4\x88\xe0\x08\x71\xb5\x6b\x3f\xfa\x1d\xc0\x82\xd1\xd2\x05\xcb\xd7\xae\x1c\x3f\x7e\xbc\x65\x20\xb1\xe3\xc1\x65\x88\x75\xfc\x3c\x3e\xd6\x56\x34\x65\x18\x83\xb5\x11\x18\x08\x18\xfe\x2b\x69\xd0\x8c\xbe\x65\x03\x41\xf9\x2d\x3a\x20\x8c\xe0\xd1\xf4\xf6\x32\xfa\x39\x1e\xf9\x3d\x66\xb8\x6a\xb0\x98\x4c\x26\x00\x80\x7f\xff\xf7\x7f\xc7\xfb\xdf\xff\x7e\x78\x6f\x04\x9b\x4a\xf1\x53\x24\x2d\xd9\x6b\xf5\x0f\xe1\xba\x08\x14\xb3\xc4\xce\xb6\x57\xe6\x93\xbd\xbc\xd8\x7e\x6b\x73\x7a\x69\x63\x9a\x1c\x3a\x3a\xca\x8e\x1d\x19\xa5\x9b\xab\xb3\x64\x7d\x58\x98\xd5\x41\x61\x56\xf3\xc2\xe4\xc6\x21\x75\x54\x5d\x3f\x61\xe1\x6c\x61\xdc\x6c\x9c\xdb\xd1\xde\xa0\xd8\xb9\x35\x2c\x6e\x6c\xaf\x94\xdb\x3b\xc3\x62\x67\x3f\x2f\xb7\x67\x89\xdd\x2f\x0d\x46\x0e\x61\x5a\x68\x42\x08\x87\xcb\xf9\xed\xfd\xdc\x68\xd1\x6e\x83\x96\xc6\xb7\xa6\x7f\x43\x7d\x7c\xed\x6b\x5f\xb3\x9f\xfb\xdc\xe7\xcc\x89\x13\x27\xb8\x87\xd1\x87\xa2\xe6\xc3\x04\x6d\x0f\x14\xea\xf7\xe6\x46\xea\xea\x62\xd2\x61\x09\x37\x29\x53\xec\xcd\xd2\x62\x38\xca\xca\xeb\xd7\xd7\xe6\x97\x33\x3b\x19\x66\x05\xe5\x99\x35\x79\x62\x29\x35\xf5\x72\x8b\x82\x5c\x51\x24\xae\x98\x27\x76\x56\x12\x8a\xd2\xb8\xd9\x3c\x71\xfb\xa5\x71\x13\x07\xcc\x40\xfe\x22\x53\x0a\x07\x4b\xba\xe6\x0c\xa6\xd6\x0d\xed\x9c\x1f\x68\xae\xdf\xf0\xfd\xb8\x26\x27\x77\x4b\xef\x05\x07\x48\xd7\x1a\x97\x58\x27\x25\x09\x59\xda\x10\xfd\x3d\x16\x62\x34\x66\xd1\x5e\xa4\x17\x18\x71\x6d\x6d\x7e\x65\x94\xdb\x1b\x1b\x53\x77\xb2\xd9\x16\xb7\x68\x39\x34\x6b\x68\x5b\x37\x57\x2c\x7a\x42\x1c\xb5\x5d\x88\x22\x48\xf8\x70\x05\x38\x1a\x4b\x49\x5d\x37\x13\xac\x96\xc5\xad\xda\x7e\x41\x58\x56\xd2\xd1\x7b\x46\xd9\x43\xeb\xd3\xe4\xe8\xf6\x6a\x71\x0d\xf5\x76\x37\x08\x8b\xbb\x6e\x00\x81\x7f\x0f\x3f\xfc\xb0\x79\xfd\xf5\xd7\x63\x0a\x4b\x6d\x18\x3d\xbe\x71\x98\x2e\x25\x08\xe5\x7b\x17\x0d\x1c\xa7\xcc\x5f\xa6\x8d\x29\xd5\xd8\x28\xaf\x8b\xf6\xdb\x51\xe6\x5d\xdf\xfb\xa6\x91\xb4\x6a\xf4\x76\x75\x38\x5d\x79\x1f\x74\xd4\x2f\xf1\x42\xc0\xe1\xfb\xdf\xff\xbe\x05\x80\x7f\xf8\x87\x7f\xc0\x1b\x6f\xbc\x61\x1f\x7d\xf4\x51\xf3\xab\xbf\xfa\xab\xbc\x5d\xf2\x9b\xa7\xa5\x07\x46\xe5\xaf\x6c\xcb\x6c\x3d\x4c\x80\xe7\x38\xfd\xbb\x34\xca\x1f\x7a\xe8\x21\x53\x96\x25\xde\x7a\xeb\x2d\x4d\x2e\xb4\x67\x49\x1b\xff\xd6\xc7\xcb\xc1\xe3\x62\x9d\x72\x9f\xce\x88\x3f\x4b\xfa\xba\x9e\x65\x39\x25\xdd\x7d\x70\xcb\x72\x6b\x46\x96\x2c\x67\x17\x8d\x32\xef\x2e\x9a\xb4\x72\x2c\xa4\xfd\x2f\xff\xe5\xbf\xd8\xc7\x1f\x7f\xbc\xd5\x3e\x98\xbc\x14\x61\xba\xbe\x92\x0d\x79\x29\x5f\xb8\x39\x19\xa0\x59\x09\x37\xb3\x19\x46\xb3\xb4\xbc\x35\xca\xcb\xeb\x37\x57\x8a\xab\xf9\x26\x0d\x53\x4b\xc3\xac\x34\x79\x5e\x2d\xe4\xcd\x53\x4b\xa6\x24\x67\x4b\x03\x6b\xc9\x15\xa5\x71\xc5\x34\xb5\xb3\x59\xe2\x26\xf3\xc4\x8e\xe6\x89\x1b\xcf\x8d\x9b\x58\x0a\x5e\x83\x09\xa1\xf1\x2e\xd4\x46\x03\xf7\x2c\xf8\x2b\x30\xb8\xd1\x12\x2e\xf5\xf4\x65\x7a\xe6\x99\x67\xec\xc6\xc6\x86\xd9\xdd\xdd\xed\xd2\x5f\x06\x00\xbe\xfe\xf5\xaf\x5b\x36\x95\xd6\x32\x7c\xea\x32\xfb\xe7\x66\x40\xdf\x1c\xa3\xef\xcf\x5e\x1a\xd6\x74\x4d\x00\xe4\x0e\xc8\xe7\xc6\xe6\x45\x42\xf9\xc4\xb9\x94\x72\x32\xe4\x60\x08\x48\xfd\xa4\x9f\x23\xc0\x11\x0a\x57\x19\x86\xfc\x66\xf5\xca\x10\x71\xcd\x2e\x41\x54\x46\x9b\xdf\x21\x18\x6e\x67\xaf\xd7\xb4\x14\x9c\x26\xcf\x0b\x6f\xb4\x14\x45\xb1\x4c\x7e\xba\xe4\xb4\x4b\xd6\x5a\x32\xb7\x6c\xaa\x48\xc6\x69\x8a\xba\x57\x47\x52\x8f\xf6\xf8\x9f\x77\x19\xae\xd6\x7f\xeb\xce\xb9\x4d\x22\xda\x5c\x99\x99\x13\xbf\xfc\xea\xe6\x67\x1f\xb9\x39\xfc\xc4\x70\x6e\x36\xa9\xc3\xea\x68\x79\x51\x5c\x63\x30\xf4\x0a\x91\xd9\x22\xbe\x33\x49\x9b\x16\xe2\x6b\x64\xb4\xa9\xa2\x6a\x3a\xab\x82\x29\xc9\xcd\x6e\xae\xcc\xff\xeb\xf3\x0f\xec\xfd\xdf\xaf\x1c\x1f\xfd\x60\x5a\x4f\x17\xa1\x6a\x2c\xea\x85\x5d\x7d\xdc\x8e\x4a\x38\x88\x65\xdb\xd7\xa0\x59\xd6\xb9\xff\xff\x3d\xdc\x69\x59\x6f\x37\xfd\xdd\xa8\xcb\x03\x87\xcf\x7c\xe6\x33\xe6\x1b\xdf\xf8\x86\x05\x16\xa7\x98\xe4\x14\x50\x57\xe0\xf2\xfb\xf4\xd3\x4f\x1b\xef\x55\x79\xec\xb1\xc7\x0c\x00\xfc\xf4\xa7\x3f\xb5\xf7\xdd\x77\x9f\x79\xfb\xed\xb7\xa3\xa3\xd3\xbb\xf8\x8c\xdb\x4c\xd7\xf5\x2c\xe9\xbd\x1d\x03\xb3\x6f\x3e\xe8\x01\x7b\x3b\xb8\xfb\xf2\x87\xbf\x1f\xb4\x9c\xfc\xfc\x12\x03\x04\xaf\x9d\x41\x75\x08\x9d\x1f\xc4\x85\x5b\xcb\xd1\x4c\x91\xf8\x65\x04\x43\x1f\xcf\x60\x72\x57\x5d\xc4\x9b\x12\x90\x1a\x07\x63\x2c\x65\xc6\xc1\x38\x02\x2c\xc1\x3a\xa0\x74\xe4\x6c\xd5\x59\x3b\x7f\x33\xf5\xac\x31\x88\x5a\x1e\x84\x11\x33\x04\x96\x4d\x87\xb4\x16\xa2\xbe\xf8\xe2\x8b\xf8\xde\xf7\xbe\xd7\xbb\x1e\x1e\x7c\xf0\x41\xf3\xe6\x9b\x6f\xb6\xa6\xd2\x18\x7f\x5a\x7d\x63\x8c\x3f\x82\x57\xe1\xd2\xd4\x3a\x3e\xe0\xf0\x1e\x52\x6e\x58\x10\xbf\xf0\x94\x5d\x7c\x59\x97\xdd\x2f\xb8\xf5\x8b\x6f\xc3\xa2\x64\xc1\x87\xe0\x70\xa8\xcb\x67\xb9\xf7\xf4\x36\xe4\xa4\xab\x6f\x51\x0d\x19\x12\x09\xfb\x84\x03\x67\xfe\xf9\xcf\x7f\xde\xe4\x79\xce\x5d\x83\x5e\x68\x7d\x45\x0c\x89\x68\xdd\x39\x77\x88\x88\x36\x8d\xc5\xd1\x8f\xbf\x7e\xe8\x57\x1e\xbf\xb2\xf6\x9f\x37\xa6\xc9\x49\x79\x0c\x34\x0f\x8b\xde\x12\x7f\xf6\x0a\x9a\x05\x5b\x68\xcf\x24\x2d\x7a\x64\xda\x11\x0b\x38\xe1\xd0\x32\x9e\x02\xc0\xa2\xe9\xc2\x0d\x1d\xff\x32\xca\xca\x0b\x3f\x3b\x3e\xfa\x7f\x7e\x74\xdf\xfe\xff\xfb\xce\xda\xec\x22\x33\x5c\x9a\x4b\xed\x98\xe1\x02\x00\xdf\xfd\xee\x77\xf1\xd2\x4b\x2f\x75\x29\x97\x65\x21\x66\xf9\xf7\x49\x77\xa7\x1d\xa1\x66\x45\xff\xf7\x30\x76\x6e\x27\x9f\x3e\x69\x96\x95\xe7\xa0\xf9\xfe\x8f\x32\xfe\x96\xe6\xfb\xd1\x8f\x7e\xd4\x3c\xf7\xdc\x73\x77\x44\x1b\xc7\x21\xf0\x2d\x33\x84\xfb\x76\xc6\x50\xd2\xc6\xc2\x41\xf2\x59\x86\x43\xe2\xf3\x21\x86\xeb\x6e\x18\x1a\xcb\x46\xa2\x5d\xb8\x63\xf9\xc8\xb8\xae\xb2\x74\x75\x26\x1e\xbe\x93\x16\x6e\xbc\xf0\x4e\xba\xee\x03\x8c\x73\x4e\xbb\xbd\x9c\x77\xd2\x43\xd4\x9d\x37\x83\xf1\x53\xee\x72\x40\x0c\x00\xb2\x93\xb6\xa2\x93\xe6\xde\x05\x7e\xb9\x28\x9f\x0a\x59\x58\xcf\x22\xfe\xf0\xcc\x33\xcf\xd8\xfb\xef\xbf\xdf\x08\x6f\x61\x2f\x39\xfd\xcc\x67\x3e\x63\x4e\x9e\x3c\x09\x00\x7e\xeb\xf3\x82\xf1\xc2\x0c\x17\xcf\x1f\xb9\x3e\x28\x67\xfd\x68\x80\x67\xc6\xa1\x36\xcb\xe1\x8d\x2f\x69\xb8\xf0\x72\xfb\xa9\x20\xc9\x87\x96\xd7\x89\xe1\xc4\xce\xce\x0e\xfe\xfc\xcf\xff\xfc\x20\x72\x7a\x10\x5d\xb0\xd0\x06\xb4\x73\x5c\x96\x85\x18\xac\xef\xaf\x17\x76\x55\xf8\x4b\xb8\xfc\xc1\x44\x35\x33\xa9\xae\x30\xaa\x2b\x27\xab\x99\x9e\x3b\xc2\x60\x7d\x96\x6e\x1c\xdf\xcf\x1f\x59\x9d\x27\x87\x8d\xa3\x24\x2c\x35\x21\x3d\x53\x1e\x4d\xf5\x9e\x66\x7f\xd6\x0a\x31\x23\x06\xb4\xb8\xfa\x5c\x3a\x74\xe4\x41\xbb\xfc\xce\x87\x66\x3b\x1e\x2d\x4c\x60\xb5\x93\xb9\x90\x96\x40\xc6\x92\xbb\x75\x6b\xa5\xb8\x78\x73\xb5\xb8\xee\xe0\xfc\x01\x5c\xad\x4b\xe3\x18\x0a\xf7\xcd\x6f\x7e\x53\x76\x8c\xdc\x6c\xf2\xef\x5d\xbb\x51\x80\xa6\xb2\x63\x75\xa6\x7d\xf3\x2b\xb9\xb5\x55\xdf\xb1\x38\x89\x4b\x3a\xab\xba\xe8\xd4\xbe\xc9\xf2\xc5\xe2\x65\x59\x34\x9e\x75\xe1\x69\x66\x18\x17\x71\x6a\xe5\xf1\xef\x92\x66\x99\x6f\x6c\x47\x0b\xc7\xa3\xd1\xc2\xe3\x65\x19\xb4\xfa\x8e\xc5\xc7\xde\x35\xba\x38\x2e\x77\xf9\xf2\xe5\x2e\x5e\xf0\x32\x44\xf3\x61\x38\xcc\xe5\xcb\x97\x2d\x4b\xc7\x69\x40\x24\x4e\xa3\x91\x97\x93\xbf\xc7\xe0\x39\x6f\x64\xe7\xcf\xeb\x5c\x96\x25\x86\x07\x02\x9f\xcf\x97\xbf\xcb\xba\x92\xdf\x64\x5b\x34\x68\xd3\x27\x65\x31\x96\x9f\x26\xb7\x5a\xbb\x94\x65\xd3\xe2\x39\x6f\x38\x2d\x3c\x9d\xd6\x76\x2c\x16\x69\xd4\xe0\x09\x80\x93\xf7\x6c\x01\x68\xed\x2a\xaa\x3b\x56\x79\xe8\xa0\x75\xcd\x81\x66\x7e\x6a\xc2\x5f\xe2\xe7\xcf\x09\xf2\x06\x87\xbf\x92\x62\xec\xaa\x63\xf9\xfd\x3d\x5a\x23\x54\x3b\x82\xf6\xd1\x1c\x9a\xe6\x6f\x34\xde\x47\xb3\xe8\xd4\x1f\xe3\x3f\x86\xb8\x7a\xa2\x2e\x5b\x41\xcd\x6e\x3c\x5f\x17\xd8\xdc\xdc\xa4\xd7\x5f\x7f\x1d\xf5\xce\x19\xc9\x63\x8b\x76\x5d\xb5\xe4\x6a\x3a\x9d\x62\x6d\x6d\x0d\x6b\x6b\x6b\x20\x0a\x3d\x4e\x38\xb7\x88\x9a\x9d\x7d\x9e\x67\x05\xe3\x4d\x51\xf3\xa1\xa0\xea\x1c\x24\x7f\x4f\xd0\xb4\xe6\x51\xb8\xa6\x83\x4f\x7b\xa1\x7d\x09\xaa\xe7\xcf\x88\x9a\x2b\x3a\xc2\xad\xec\xcc\x88\xf3\xfc\x2e\x6b\x7e\x84\xab\x0d\xfc\x14\xf3\xad\x5b\xb7\xf0\x17\x7f\xf1\x17\x5d\x72\x2a\xe5\x4d\xb6\x0d\x40\x6f\x0b\x52\x57\x78\xb9\x0b\x6b\x5c\x0e\x3a\x02\xe1\xc1\xa7\x95\x16\xd3\x02\x3e\x6f\xf9\x89\xf9\xbd\x96\xeb\xaa\xae\x80\xd9\x8d\xd5\xf9\x3b\xfb\x79\x79\xe3\xc8\x38\x7d\xc0\x38\xca\xfd\x99\x83\xdc\x00\xa9\x7d\x21\x4d\x4b\x77\x4d\x1e\xcc\xd6\x68\xd2\x04\x42\xda\x06\xc6\xc2\x2e\xa4\xf0\xbd\xca\x88\x7b\x6c\xfc\x99\x00\x8e\x8b\x6a\x83\x96\xd5\x5a\x93\x49\x62\xb1\xba\x31\x4d\x1f\x3a\x32\xca\x1e\x5c\x99\x4f\x5f\x1b\x65\xe5\x04\x95\xe5\xec\x5d\x6e\xfe\x4c\x03\x95\x6f\x4a\x9c\xe7\x75\x9f\xd1\x64\x57\xbd\x2e\xcb\x2b\x96\xb6\x6f\xba\x3b\xc1\xef\x05\x56\xca\x94\xc1\x62\x19\xb5\xf2\x6b\x7c\x59\x96\xaf\xc4\xc7\x71\xc5\x82\x56\x37\x5d\xbf\x9d\x23\xb1\x8e\x7c\x8d\x78\xe6\xf8\x34\x39\x40\x04\x5e\xab\x9b\x58\x1a\xff\x2d\x96\x46\x83\xd1\xea\xab\xab\x8c\x1a\x0d\x31\x9e\x76\xa5\x5f\x18\x95\x75\xc0\x77\xb5\x97\x65\xf0\x1a\x1c\x96\xc0\x1e\xb4\xbc\x31\x7c\x07\x6d\xcb\xcb\x78\x22\x7f\xa5\x1c\x75\xc9\x40\x4c\x8e\xd5\x36\x73\xf6\xec\xd9\x85\xb3\x5d\x98\x37\xc0\x2f\x4c\xf5\x5b\xf0\x53\xde\x17\xa0\xed\x6d\xe0\x5e\x08\x43\xcd\x7a\xc1\xd8\x55\x14\x16\x8b\xeb\x28\x5b\x87\x23\xfa\x77\xf6\x9d\xc3\x5b\x60\xe1\x0c\xa2\x3e\x67\x94\x68\xbc\x09\xef\x17\x2e\x5c\xc0\x85\x0b\x17\x00\x54\xd3\xa9\xc4\xd6\xba\x50\x73\x2d\x40\x4b\x97\xd5\xf1\xbe\xbc\x69\x3d\x85\xe3\xa7\x87\x52\x60\xe1\x6c\x1c\x53\xe3\x6b\xd1\x44\xcd\x39\x32\xc1\x30\x03\x5b\x47\xa3\xc4\xb7\xae\xee\xe0\x65\x65\x46\x8b\x94\x95\x98\xbc\x4b\x1d\x1e\xd3\xe3\x32\x5d\xab\x3f\xd0\x3c\x2e\x5d\xa3\x0f\x0d\x8e\x8f\xd0\xba\x46\x7e\x60\x56\x77\xb8\x5c\x0a\x15\xb3\xfd\x8d\xa1\xc1\x15\x66\x0d\xd2\x13\x7b\xd9\xa9\xcd\x49\x76\x2a\x2b\x69\xb5\xb2\xd0\xbd\xb7\x24\xdc\x0a\x04\x8f\xc4\x63\xab\xec\x61\xe6\x1e\x63\x0b\x03\xb9\x01\xd2\x04\x5a\x28\x85\xb6\xf3\x48\x26\xf3\xf4\xf8\x2c\x5a\x78\x5d\xf3\x50\x79\x7f\xc8\x10\xc1\x15\x89\xbb\xbe\x3b\x28\xdf\xda\x19\x16\xb7\x6a\xe1\xf0\x47\xad\x7b\xcb\xda\x8f\x38\x1c\xbb\x74\x71\x81\x8f\x8c\x24\x4d\x40\x62\xde\x15\x74\xe0\x3a\x48\x7c\x17\xfe\x3b\x0d\xc2\xbc\x5c\xf0\xd6\x80\xc5\x49\x4f\x82\xc4\xa1\xf1\x25\x46\xbb\x2c\xa7\xf4\xb4\xdc\x4e\x88\xf1\x34\xe6\xb9\x91\x30\x12\x8f\x46\x9f\xa7\xd1\xb2\x78\xe9\x2d\xb0\x1d\xf9\x68\x6d\x9b\xff\x76\x79\xb7\x1c\xe2\xf5\xc3\x43\xcc\x2b\xd7\xa5\x73\x7c\x9c\xed\xf8\x2e\xbd\x02\x5c\x5e\x62\x5e\x13\x59\xaf\x5d\xc6\x09\x29\xf0\xb2\x0c\xfe\x9b\xc4\xad\x79\xc2\xfa\xe8\x52\x59\x7e\xc9\xdf\x3e\xed\x94\x3f\x4b\x2f\x55\x97\x3e\xe1\x65\xd0\x64\x40\x2b\xb7\x65\xcf\x1a\x3f\x5b\xf9\x30\xaf\x7b\xc8\x83\x0d\x66\x5b\xb7\x9b\x7b\xef\x0b\xda\x8b\x40\xfd\xe2\x54\xee\x75\xf1\x17\x1e\xce\x50\x79\x18\x5a\xde\x06\xa0\x75\xd7\xd0\x18\xec\xd8\x7e\x62\xb7\x3c\x33\xaf\x85\xbf\x96\x85\x9f\x4b\x62\x01\xb8\xb3\x67\xcf\x86\x5b\x9f\x05\xef\xbb\x78\xdb\xa5\xab\x00\x00\xef\x7a\xd7\xbb\xe8\xab\x5f\xfd\xaa\x95\x5e\xa9\xb0\x96\xd2\xb9\x16\x6f\xd0\x5c\x9a\x6a\xc1\xae\xcf\x20\x22\xff\xec\xff\xa6\xdc\x3b\x85\xf6\x45\xa9\x53\xd4\x17\xa3\xa2\xb9\xa2\x23\xe0\x61\xde\x15\xff\x5b\xd6\xf5\x11\x16\x14\x9f\x3d\x7b\xd6\xbe\xfc\xf2\xcb\x5c\xd6\x62\x6d\x49\xf3\xe2\x69\x6d\xaa\x4b\xdf\x70\x1d\xd7\x1a\xc5\xf9\x10\xb5\x12\x23\x88\x62\xa3\xc2\x56\x78\xea\xa9\xa7\x82\x55\xec\x9a\x43\x75\x00\xc0\x2f\x1c\x0a\x16\x1e\x80\x62\x96\xd8\xc9\xf6\x4a\x79\x79\x92\xda\x1d\x57\x2d\xb6\x02\x1c\xea\xc3\xe5\xea\x13\x14\xe1\x2f\xe1\x72\xe1\xbf\xbf\x9b\xc2\x07\x47\x04\x48\xa3\xc5\xa1\x4e\xef\x5b\x0f\xc3\x4d\x35\x8d\x68\x60\xc3\xf5\xcf\x75\x84\xbf\x90\xaa\xa1\x1f\xcd\xce\x09\xff\x17\xfe\x55\x21\x2d\xe9\xd0\xe1\x71\xfa\xd0\xd1\x51\x7a\x32\x71\xd5\xdc\x24\x2a\xa3\x2d\x8c\x18\x80\xd6\x91\xd8\x00\x80\xd5\xd5\xd5\x2e\xde\x6a\x23\x6f\xed\x59\x4b\xc7\xe1\x6c\x04\x5e\xb3\x76\x25\x7e\x8d\xbe\x98\x1c\x74\xc1\xc4\x68\xd2\xf2\x5a\x86\xbb\xcf\x77\x8e\x57\x96\xd3\x3f\xc7\xf8\xa2\xe1\x58\x46\xc3\x32\x9e\x69\xf1\x1a\x0d\x32\x4d\x6c\x14\xde\x35\x3a\x97\xb8\x63\x6d\xd8\x42\xa7\x51\xc2\x4b\x1e\x68\xf2\x22\xf3\x96\x65\x8c\xd1\x26\xe9\x5a\xc6\x73\xad\x0e\x3d\xcd\x52\xb6\x78\x9c\xcc\x23\xf6\x4d\x96\x41\xb6\x3f\x2d\x3f\xad\x9c\x9a\xfc\x49\xc5\x1f\xcb\xbf\x8b\x26\xfe\xac\xf1\x70\x99\x3c\x2d\xcb\x8f\xd3\xbc\x4c\x7f\xb4\xf0\x27\x49\x62\xb6\xb7\xb7\xf9\x2e\xb3\x05\xbd\xcf\x46\xfc\x33\x6a\xef\x6c\xf1\x27\xb7\xee\x39\xe7\xf6\x88\x68\x07\xc0\x0e\x80\x1d\x22\xda\x71\xce\x6d\xfb\xb8\xfa\x79\xdb\x39\xb7\x03\x60\xcf\x39\x17\x4e\x7e\xf5\xd3\x23\x4e\x6c\xf5\xa5\xe6\x24\x58\x79\x88\xa2\x75\xce\xc1\xda\xaa\x6a\x7e\xff\xf7\x7f\xbf\x4b\x1f\x48\x7e\xc5\xf8\xda\xc2\xf1\xd7\x7f\xfd\xd7\x16\x58\xf0\xe2\xb4\x3c\x23\xb5\x21\x51\x38\xe7\x8a\x9a\x4e\x7e\x37\xd8\x84\x95\xcb\x97\x73\x0f\xd5\x34\xd0\x9e\x8c\x03\xdb\xf2\x5d\x2f\xc0\x9d\x38\xe7\xf8\x7a\x4b\xee\x81\x91\x1e\x27\x0b\x00\xa3\xd1\x28\x56\xd6\x65\xba\x40\xf2\x82\x07\x4d\x36\x35\x7c\x0b\xbb\x8a\x24\x01\x5a\x43\xd2\x94\x0c\xcf\xb8\x13\x57\xbd\x50\xcb\xdf\x40\xeb\x17\x16\xf9\x15\xd2\xeb\x00\x0e\x01\xd8\x84\x44\x10\xa6\x1c\x00\x00\x20\x00\x49\x44\x41\x54\xc3\xe6\xc3\x37\x87\xef\x39\x7d\x71\xe3\xb3\xa7\x6e\x0d\x3e\x58\xdd\x16\xdd\xbe\x11\xd3\x87\xc6\x60\x69\x59\xa9\xad\x9d\x3f\x7e\x81\x6d\x35\xc5\x23\x60\xf8\x2f\xb0\xe0\x96\x09\x26\xa5\xc8\x38\xe0\xf6\x1e\x1e\xfe\x9d\xdb\x8f\x04\x58\xc0\x8e\xf2\xf2\xb5\x57\x8f\x8d\xfe\xfe\xb9\xfb\xf7\xbe\xb9\xbd\x5a\x5c\x46\xd5\x98\xf8\x1e\x79\xd9\x68\x5a\x77\xb4\x74\x04\x4d\x29\xf6\x49\x77\x3b\x41\x2a\xdb\xbb\x01\x7f\x10\xfa\xbb\x3a\xba\x83\xd0\xe3\x83\x96\xee\x76\xe8\xd1\xda\x4b\x17\x8c\x86\x00\x33\x40\xcc\xbf\xbb\xcb\x98\xb8\xdd\xfa\xed\x03\xdb\x45\xfb\x41\xc3\xed\x96\x71\x19\xbe\x18\x7c\xcc\xf0\xea\x23\x23\x9a\x11\xd3\x45\x67\x9f\x7a\x94\xf9\xcb\x8e\x7e\x19\x5d\x7d\xe5\xfb\x20\x72\xd7\x17\x57\xd7\xbb\x0f\x7d\x64\x49\xc2\x45\xeb\xda\x2f\xdc\x85\xef\x90\xf4\x43\xeb\x0c\xd0\x5a\xcc\xeb\xfb\x0f\x03\x20\xec\x58\x52\xf2\xb6\x40\x18\x54\x5a\xd4\xd3\x1e\x40\x38\x91\xb6\xb5\xf0\xd6\x77\xce\xae\x39\x1e\x20\xa6\x83\xbb\xf8\xd5\xb7\xad\xab\x71\x7f\xfc\xc7\x7f\x6c\xbe\xf2\x95\xaf\xf0\x69\xb5\x70\x7e\x92\xb6\xe8\x56\xf0\xa2\x35\xf0\x75\x8b\xe7\x2e\xf1\x45\xcb\x9c\x3f\x0b\x37\xb9\xb3\x78\xce\x4f\x69\x5c\xf5\xa9\xeb\xdb\xd5\x5d\x9d\xf2\xad\x1d\xf9\xef\x83\x74\x37\x03\x8b\xee\x1d\xcf\x15\x8b\xb8\x9b\xc7\xe3\x0a\x5b\x2c\x6b\x5f\x21\x31\xa6\x26\x6c\xba\xc8\xdf\x16\x9d\x59\x72\xc9\xd1\xfd\xec\xde\xc3\x93\xf4\xde\xcc\x9a\x55\x7f\x18\x1c\x5f\x3f\x12\x82\x8f\xaa\xcf\x5c\x09\x2e\xc8\xf0\x99\x02\x0c\x5f\x6b\x03\xc7\xd2\x71\xef\x4c\x1b\x75\x98\x8a\xf2\x85\x21\xf6\x2d\xac\xa7\xe1\x42\xe2\xbd\xa1\x35\x3e\x83\xea\x5c\xbb\xd2\x60\x67\x6f\x50\xbe\x71\x63\xad\xb8\x89\xe6\x12\xbb\x39\xe3\x63\x98\x2e\x22\x22\xac\xaf\xaf\xd3\xeb\xaf\xbf\xbe\x6c\xba\x62\x99\xbb\xfe\x4e\x83\x41\xdb\x15\x7c\x10\xfc\xda\x74\x82\x06\xd3\xf5\xbe\xec\xdb\xed\xd0\xd3\x45\xd7\xed\xd0\x23\xa7\x05\x96\xc1\x68\xb0\x31\xb8\x3b\xa9\xdf\x3e\xb0\x5d\xb4\x1f\x34\x74\x95\x91\x2b\xa1\xbe\xf9\xc8\x29\x88\x2e\xdc\x9a\x1b\x5a\xa3\x8b\xc3\xc6\x68\x92\x53\x3f\x1a\xbc\xc1\x62\x9d\xf1\x29\x5c\x3e\x55\xb7\x2c\x5d\xac\x3c\xb1\xb2\xf3\xf4\xb2\x3c\x9c\x16\x8d\x3f\x66\x49\x3a\xc9\x2b\x5f\x86\xd8\x94\x99\xcc\xd3\x2a\x71\x0b\xf5\xed\xb7\xca\x9f\x39\x73\x86\xbc\xbe\x03\xda\x37\x9c\xa3\x3d\x2d\x52\x52\x75\x89\x9f\xbf\x0c\x74\x8e\xe6\xb8\x79\xbf\x65\x77\x8a\xea\x4a\x95\x70\xfe\x0a\xd5\x37\x9a\xb3\x29\xa6\xb9\xc7\x83\xe6\xe8\xfe\x30\x5d\x0f\x04\x6f\x90\xdc\xe2\x1b\xe3\xab\x66\x38\xc6\xda\x81\xc6\xfb\x10\x5e\x78\xe1\x05\x07\x54\xd3\x6a\xf5\xd4\x91\xdf\xc8\xe2\x17\xec\xc2\xf3\xc3\x1b\x15\x75\x59\xf8\x19\x33\x3e\xce\xef\x02\x6a\xdd\xde\xec\xa7\x7f\xd0\x5c\x41\x63\x19\x5f\x7d\x3d\xf8\x3c\xdc\x33\xcf\x3c\xa3\x4d\x91\x79\x3e\x48\xfe\x2c\x6b\x77\x7d\x07\x45\x31\xf9\x0e\x88\xba\x42\xb0\xbe\xd8\xbb\xfc\xa6\xb9\x77\x78\x08\xef\xd2\x15\x06\x04\x6b\x38\x1c\xf0\x53\xff\x15\x00\x66\x93\xd4\x8e\x6e\xae\xce\x2f\x8d\xf3\x72\xdb\xa1\x3a\x81\xb1\x9a\xfa\x69\x73\x83\x6b\x16\x42\x35\xe5\xd3\xf4\x4c\x0d\xa4\xab\xdf\x9c\x48\xec\x6a\x03\x86\x6b\x3d\x80\xe5\xe1\xda\xef\xc1\x68\x71\x1e\x9e\x16\x17\xf8\x06\xe4\x4d\xc2\xc4\xd2\xfa\xc6\x24\x7d\xe4\xd8\x7e\xf6\x48\x56\xd0\xd0\x39\x97\xd6\x53\x45\xad\x6d\x7d\x7c\x34\xf1\xad\x6f\x7d\x4b\x8e\xdc\x34\xfe\xca\x3f\x19\x64\xbc\xac\x2f\x0d\x37\xff\x16\x1b\xe9\x6a\x79\x1e\xf4\x3d\x16\xba\xca\x12\x7b\xd6\x68\xea\x93\x7f\x97\xdc\x76\xf1\xa6\x8b\x9e\xbe\x79\x75\xd5\x57\x9f\xb2\x76\xe1\xe9\xa2\x43\x7e\xef\x82\xed\xe2\x69\x17\x9f\xe5\xb3\x45\x9c\x8e\x18\xee\xbe\xb2\xe2\x71\x2f\x53\x8e\x5a\x47\xd3\x95\x8f\x6c\x7f\xfc\x59\x2b\x0f\x1f\x25\xc6\x70\xc7\xda\x93\xa4\x51\x2b\x8b\xc6\x67\xcd\xd3\xa3\xe5\x23\x79\xbb\xcc\xcb\xd6\x55\x0f\x5a\x3e\x92\x96\x58\x7d\x18\x22\x0a\xe7\xfb\xf8\xa9\x23\x3f\x2d\x43\xca\xf6\x63\x36\x65\xe2\xcf\xbe\x9a\xb0\x5f\xbe\x66\x85\x6f\x73\x0e\x67\x91\xd4\xe9\xe4\x02\xdc\x42\xc9\x67\xe1\x04\x58\x12\x07\x2b\x42\xe7\xb7\x2c\x7b\x57\x58\x0a\x4b\x44\xfc\x04\xf5\x40\x9b\x9f\xba\xf1\x3c\x12\xde\x13\xef\x45\xe2\xd3\x6e\xad\xa9\x1f\xfe\xce\xbc\x4e\xdc\xe0\xf1\xde\xa8\xae\x73\x9b\x34\xf9\xef\xdb\x47\x2c\xd3\xb3\xda\xf3\x02\xee\xa4\xfe\xa0\x8d\x46\xfa\x06\x9e\x09\x1f\x5d\x2c\x58\xa7\xbf\xfd\xdb\xbf\x6d\x36\x36\x36\x00\xf8\xf5\x46\xc4\xbd\x2f\x49\xfd\x97\x12\x51\xe2\xaa\x6d\xd1\xf9\xa0\x34\xf9\xd1\x51\x76\xff\xc6\x34\x3d\x9e\x38\x4a\xbd\xcd\x49\x0b\x37\x6a\xb1\x29\x21\xb6\x74\x97\x1b\x14\x21\x5e\x4c\xe7\x78\x63\x87\x6f\x70\x76\x00\xc8\xd5\xb7\x8b\x12\xc2\x1d\x44\x08\xf9\xd7\x79\x91\xbc\x4a\xa0\xfe\xce\xd2\x7a\x78\x00\x09\x39\xa2\x32\xc1\xce\xde\xa0\x7c\x73\x67\xa5\xdc\xa5\x66\x5b\xb4\x1f\x59\xb8\x5a\x80\x1c\x00\x6e\xe5\x76\x8d\xd0\x96\x79\x11\x64\xbc\x13\xf1\x31\xaf\x01\xff\x26\x05\x88\x8f\x26\xb5\x74\x7d\xdf\x63\xa1\xab\x2c\xfc\xd9\x40\xe7\x81\x2c\x63\x17\xde\xae\x91\x82\x36\xea\xed\xe2\x59\x1f\xbc\x5d\x69\x38\x4c\x0c\x6e\xd9\xf7\x18\xbe\xae\xef\x5d\xb0\x5d\x3c\xd5\xe2\x62\x9d\xa2\x7c\xd6\xea\x52\x7a\x28\x44\xcb\x6b\xa5\xe3\x75\x2f\xd3\x4a\x18\x09\xdb\x37\x1d\xb0\xe8\x75\x96\xc6\x4c\x4c\x76\x38\x6e\xa9\x63\xb5\xc5\xbb\x1a\x2f\x38\xfd\xbc\xcd\x69\xb0\x92\x6e\xad\x0c\x8e\x3d\x6b\x3c\x81\x88\x97\xe9\xba\xea\x81\x18\xbc\x46\xab\xe4\x89\x01\xc0\x8f\xca\xe0\x5b\xa4\xfd\x65\x85\xce\xc7\xa3\xee\xa8\xeb\x4f\xfe\x92\x4f\x87\x66\xf1\x68\xf0\xa2\xb0\x5f\x6f\xf4\xf8\x4e\xb9\xac\xd3\x97\x35\x6e\x07\x34\x5e\x1e\x9f\xed\xd9\xb3\x67\xed\x4f\x7f\xfa\x53\x9a\xcf\xe7\x9c\x3f\x84\x45\x7e\xdf\x6e\x3d\x68\xf5\xdb\xaa\xd7\x95\x95\x15\xf3\xfd\xef\x7f\xdf\xfa\xed\xe4\xb5\x57\x2a\xf0\x87\xd5\x91\x37\x00\x1d\xe3\x8d\x36\xfd\x13\x64\xb1\x86\x2d\xd9\x73\xf0\xb4\x70\x9e\x2c\x99\x26\xd3\xca\xcb\xf9\x24\x65\x28\xe6\xa1\xd1\xf4\x2b\xff\x2e\xf3\x77\xa2\xbb\xed\x0c\xd2\xca\xea\x63\xad\xab\x30\xe2\x14\xdd\x14\xcd\xa9\x7f\x7c\x9d\xcb\x21\x38\x6c\x6e\x8e\xd3\x53\x1f\xbe\xb4\xfe\xab\xef\xbd\xba\xfa\x8b\xab\xb3\xe4\x98\x36\x4b\x74\x37\xc2\x92\xeb\x8e\xc4\x56\x3b\x04\x63\xa6\x39\x23\x46\x20\x70\x40\x30\x6c\xe0\x67\x8e\x1c\x4a\x83\xd1\xcd\x95\xe2\x47\x3f\xb9\x77\xff\x2f\x9e\x7d\x60\xf7\x7b\xd6\x60\x07\xed\xb5\x2e\x7c\xa1\x9a\x05\xb0\x6c\x9d\x4b\x9f\xba\xe8\x0a\xb7\x93\xe6\x7f\x87\xff\x35\xc2\xdd\x90\x8d\xbe\x46\x4c\x97\x5e\x39\xa8\x8e\xb9\x1d\xaf\xcb\x9d\x3e\xdf\x2e\x4d\x3f\x4f\xdc\xcb\xd2\xde\x09\x4d\x07\xad\x4b\x44\xe2\x2d\x00\x1c\x3b\x76\xcc\x5c\xbb\x76\xcd\x02\xed\x53\x9b\x95\x75\x1a\xad\x78\xbe\x3e\x11\x00\xd3\xd1\x0b\x5b\xa3\x7d\xfe\x3c\x04\x7a\x3c\xcc\x33\xcf\x3c\x63\x19\x2d\xb7\xcb\xd7\x83\xf2\x47\xc3\xd5\x0a\x1d\xfc\xe1\xa7\x12\xb7\xd6\x6c\x4a\x3e\xf0\x20\x60\x5a\x77\x23\x45\xb6\x7a\x2f\x6b\xa3\xb1\x72\xfc\x5c\xda\x7f\xd7\x1a\x17\x9f\x20\x36\xca\x92\x16\x91\x36\x32\x00\x83\x0f\xa1\x9e\xbb\xab\xd7\xb5\x3a\xaa\x43\xd8\x16\xed\x9c\xcb\x88\x28\x01\x21\x73\x70\xf9\xc6\x34\x3d\x7c\x74\x94\xde\xb7\x5a\x98\xa3\xda\x71\xfe\x7c\x28\xc0\x7f\x21\x9e\x65\x22\x6e\xb6\x35\x5e\x17\x1d\x37\x3f\x84\xce\xdb\xba\xfc\x60\x3b\x07\xe6\x5a\xab\x4b\xeb\xdf\xc3\xa2\x5e\x22\x10\x90\x18\x07\x53\x24\xb8\xb1\xbd\x52\xbc\xb9\x9f\x97\x23\x3f\x07\x89\xc6\x7a\x2e\x7d\x7a\x22\xe2\x5e\x17\xcd\x3a\x97\x73\xf0\x1e\x8e\xc7\x43\xa4\x01\x8b\x8b\x8d\x10\x64\xda\x3e\xb8\x62\xa3\x31\x75\x8e\x3b\x92\x26\x36\x02\xb9\x13\x3a\xb4\xd1\x80\x06\x1f\xcb\x2b\x56\xb6\x65\x69\x64\xfa\x65\x69\xfb\x94\x6b\x59\x19\xfa\x94\xa7\x2b\x6f\xfe\x7e\xd0\x7c\xb4\x38\x0e\xef\xdf\xbb\x94\x96\xa7\x13\x68\x8f\xe0\xb5\x72\x70\x9e\x92\x02\x1f\xa3\x57\x1b\x39\x4b\xfa\x20\xe0\xfd\x1f\x22\xcf\x7d\x60\xb5\xfa\xe3\xcf\x52\x7f\x4a\x7e\x4a\x5e\x76\xd1\x21\xcb\xce\x79\xab\x75\x12\x92\x97\x4e\xa4\x93\x9e\x07\x4e\x8f\x16\x2f\x69\xb5\x22\x4d\x8b\xa6\xd1\x68\x64\xd7\xd7\xd7\xcd\xbd\xf7\xde\x4b\xff\xfc\xcf\xff\x6c\xa5\x07\x86\xe1\xf4\x1d\x46\xf0\x14\xd4\x71\xdc\x7b\xe2\xb4\x74\x00\xf8\xda\x99\x40\xbb\xf7\x2c\x5c\xbd\x7a\x95\x66\xb3\x19\xed\xec\xec\x78\x7e\xca\x3a\xd0\xf4\x9a\xac\x07\x4d\x0e\xb8\xfc\xf2\x38\xa9\x23\xa4\x9c\x87\x3a\x19\x8d\x46\xa1\x6e\xaf\x5e\xbd\x4a\xef\xbc\xf3\x0e\xbe\xf9\xcd\x6f\x5a\xef\x89\xe1\xbc\x60\x7c\x52\x79\x22\x3c\x37\x41\xbe\xce\x9f\x3f\x8f\x1f\xfc\xe0\x07\x38\x7c\xf8\x30\xed\xec\xec\x48\x59\x95\xb2\xc6\xe3\x24\x7f\xa4\x3c\x68\x72\xaa\x79\x58\xb4\xf6\x2f\xf3\x31\x80\xee\x71\xe1\x08\x7c\xb8\x9d\xd1\x90\x86\x13\x40\xcb\xe3\x02\x00\xa6\xf6\xb6\xf0\xbb\x8b\x0e\xa1\xf2\xbc\x6c\x1a\x8b\xa3\x0f\xdd\x1c\x3e\xf6\xe1\x4b\xeb\xbf\xf6\xe0\xf6\xf0\x74\x6a\x29\xe7\xc5\x0d\xc6\x46\xcb\x5a\x71\x8d\x75\xa1\x98\x22\xce\x91\xee\x5d\x11\x5e\x93\x96\x55\x0a\x84\x13\x77\xfd\xbc\x91\x37\x5c\xc0\x92\xe9\x39\xb6\xe3\x0a\x72\x7b\x37\xd6\xe6\xcf\xbe\x74\xdf\xde\xff\xf5\xd2\xa9\xfd\xe7\x51\x6d\xeb\x0b\x37\x91\xd6\x73\xb7\x16\xec\x3e\x88\xdb\xbc\xbf\x88\x87\x3e\xf5\x74\x10\xb8\x83\xe6\xf9\x3f\x22\xff\xbe\xe1\xa0\x79\xf6\x19\x69\xfc\xaf\x14\xba\xca\x2d\xf5\x89\x7c\x96\x30\x31\x1d\x83\x1e\x30\x77\xe2\xb9\x88\xd1\x74\xb7\xf3\xd1\xc2\xb2\xf2\x2f\xc3\x77\x60\x1d\x7c\x80\xef\x7d\xe2\x0f\x82\x7b\x69\xba\xe1\x70\x68\x26\x93\x89\x05\x80\xf7\xbe\xf7\xbd\xe6\x95\x57\x5e\xb1\x40\x38\xa8\x2d\x9a\x09\xf3\x3e\x58\xd7\xe1\x69\xe8\xb1\x53\x73\x99\x7c\xf4\x91\xd3\x3e\xf8\x96\x79\x61\xfa\xb4\x81\x10\xfe\xf0\x0f\xff\xd0\x7c\xf5\xab\x5f\xb5\xfc\x7e\xb0\x2f\x7e\xf1\x8b\x46\xeb\x3b\x38\x0c\xe7\xf1\x92\xb2\x2d\xab\x63\x8d\xbe\x83\x3c\x77\xc9\x1a\xf8\x37\xcd\xe3\xc2\xad\x68\x6e\x19\x2d\xb3\xfc\xbb\x46\x62\xad\x6f\xec\xa0\x9d\x60\x95\xd6\x73\x76\x06\xcd\x1d\x14\xd5\x14\x12\x90\x26\x8e\x06\x87\x26\xe9\xf1\x23\xe3\xf4\x64\x56\x9a\x15\x50\x63\x54\x04\xd1\xf4\x86\x83\x63\x9e\x8f\xb0\x5e\x85\x9f\x8e\x5b\x65\xad\x36\x00\x25\x2e\x78\x4d\x44\x29\xc3\x14\x90\x68\x20\x9a\xc7\xa7\xe5\x9d\xa9\xf9\x40\x8e\x68\x6e\xdc\x3b\x57\x37\xe6\x6f\xce\x52\x37\x61\x73\xb6\xfe\x48\xe5\x96\x45\xaa\xac\xe8\x3e\x68\xe8\xe3\x65\xe0\x45\xe0\x41\x8e\x12\x6f\x27\xcf\xbe\x69\x6f\xb7\x9c\x5d\x65\x5a\x06\x7f\x27\xe5\xea\x13\xff\x1f\x25\x1c\x94\x47\x7d\x43\x17\x4e\xce\x63\xf9\x6c\x44\xbc\xe6\x7d\x70\x1d\x30\x07\x79\x8e\x79\x5c\x38\x3d\x32\x7f\xad\x7c\x31\x3d\xa8\x29\xdc\x18\xac\xd4\x97\x3e\x6d\x5f\xba\xfd\x33\x57\x37\x31\xaf\x40\x5f\x19\x8f\xb5\xef\x3e\x7a\xa2\x4b\xff\x73\x1e\xf7\x4a\x57\x14\x45\x88\xbf\x7e\xfd\x7a\x78\x2e\xcb\x92\xfe\xfe\xef\xff\x3e\xec\x70\x39\x77\xee\x9c\x3b\x7d\xfa\x34\x9d\x3d\x7b\xd6\x7b\x1e\x5a\xf4\xfa\x03\xe3\x3c\xcc\xb9\x73\xe7\xdc\xb3\xcf\x3e\x1b\x2b\x4f\x8c\xcf\x5c\x4e\xba\xea\xc9\xc3\x72\x4f\x4b\x57\x99\xb5\x38\x49\x9b\x84\xd1\xfa\xe2\x10\x5e\x7c\xf1\xc5\xc0\xa7\x2b\x57\xae\x38\x00\x88\xf5\x1b\x1c\x86\xf3\x98\x95\x37\x46\x63\x2c\x70\xfa\xfa\xb4\x45\xe9\x85\xea\x92\xe3\x05\xde\x2c\x9b\x2a\x92\x0d\x87\x07\x9f\x79\x4c\x09\xc9\xcc\x83\x00\xb3\xbb\x2b\xbc\xd1\xe2\x89\xf7\x7b\xf5\x09\x40\x56\x4f\x19\xe5\x04\x64\xeb\xd3\x64\xf3\xc8\x28\xbd\x77\xa5\x9e\x2e\x52\xad\x69\xa0\x35\x7d\x03\xaa\x4c\x16\x30\x0f\x4b\xed\x2b\x69\xb9\x40\x2a\xe3\xa2\x6d\x80\x54\x44\xd3\xa2\xe3\x86\x5c\x63\xc5\xb4\xce\x7f\x69\x70\x72\xca\x88\xd1\xe4\x3d\x3a\x04\x32\x06\x94\x3a\xc2\x78\x6f\x58\xbe\x7a\x63\xad\xd8\xa6\x66\x8b\x5a\x58\x40\xc6\xf9\xbb\xb5\xb5\x45\xef\x7b\xdf\xfb\xe8\xa5\x97\x5e\xd2\x14\x9a\xe4\xb5\x16\xb8\xc2\x94\x4a\x94\x94\x6f\x3c\x78\xa1\x6c\xb9\x2f\x23\xf9\x6a\x8a\x39\x06\xdb\x45\xeb\xb2\xb2\xc9\xb8\x65\x74\xf1\x38\x69\xed\x6b\x3c\xed\x7a\x8e\xc1\xf3\x78\xe9\xde\x94\xca\xac\x4f\xd9\xf8\xef\x82\xbb\x74\x09\x0e\x2d\x68\xf5\xce\xf1\x1f\x84\xe7\xb1\x7a\x97\x75\x2f\x69\xe6\xbf\x40\x3b\x7f\xe9\x3e\x8f\x75\xa4\x12\x3e\xa6\x64\x79\x3d\xf3\x74\x60\xe9\x79\x1e\x31\x1e\xc4\xea\xdc\xc3\xf8\xb4\x5a\x1d\xc9\x36\x06\x51\x4e\x9e\x56\x9b\x96\x91\x53\x3c\x9c\x56\xee\x09\x90\x1d\x8f\xc4\x07\x74\xcb\x49\xac\x9c\xb1\x34\x1a\x8f\x25\x2f\x7c\x39\x24\xac\x46\x5f\x8c\xee\x90\x77\xdd\xd1\x1a\x00\xee\x13\x9f\xf8\x84\x79\xe0\x81\x07\xc8\xdf\x66\x9e\x65\x19\xfd\xed\xdf\xfe\xad\xcd\xb2\x8c\xae\x5c\xb9\x82\x6f\x7c\xe3\x1b\xf6\x13\x9f\xf8\x84\xb9\x78\xf1\xa2\x66\xac\x68\xed\x96\xf3\x50\xca\x41\x57\x19\x78\x3a\xde\x27\x4a\x1e\x68\xb2\xa7\xc9\x3d\xff\x8b\xf1\x2a\x56\x06\x02\xe0\xbc\x41\x82\xc5\x3a\x0c\x70\x57\xae\x5c\xd1\xbc\x1d\x5c\x86\x80\xc5\x3a\xe1\x79\x49\x79\x91\x3c\x90\xe5\xe5\x30\x52\xae\x34\x39\x92\x9e\xa7\x16\x6f\xe4\xae\x22\x4d\x70\x63\x0a\x57\x63\xb2\x0c\x5a\x85\xe2\xa9\xa7\x9e\x32\x83\xc1\xc0\xef\x4f\x77\xd4\x1c\xaa\x43\xd4\xdc\xbb\x90\x12\x51\x06\x20\x75\x70\xe9\xa0\x34\xab\x47\xc6\xd9\xf1\x8d\x49\x7a\xaf\x01\x25\x70\x4c\xca\xa8\xb6\x09\x80\x66\xea\xa8\xfe\xe7\x0d\x07\x4e\xb4\x14\x37\x7f\xca\x2d\x3f\x60\x2e\x5c\xc8\x58\xc3\xfb\x59\x24\x7f\x6a\x2e\x51\x63\x3c\xf1\x05\xb8\x8e\xe5\x17\x68\xf2\x4c\xf2\xe7\xc6\x54\x91\xc6\x80\xd2\x79\xe2\xde\x7c\xfb\xd0\xf4\xcd\x92\x30\x73\x70\xe1\xd2\x45\xbf\xb3\xa8\x5e\xa0\x1b\x16\xd9\xbf\xf0\xc2\x0b\x9a\x2b\x4e\xd6\x93\x26\xe0\x5a\x47\xc0\x95\x77\x57\xa7\xa5\x09\xb4\xfc\xc6\xdf\x63\x9d\x81\x26\x47\x5a\xd0\x70\x2e\x83\x59\x46\x17\x8f\x93\x70\xcb\xca\xd5\x05\xaf\xf1\x77\xd9\x7b\x8c\xe6\x18\x9d\xb2\x93\x95\x75\x25\x65\x01\x91\x77\x1f\x34\x7c\x31\x9e\xc7\x46\xed\xb1\x7a\x5f\xc6\x5b\x2d\x4f\x2e\xbf\x16\xf1\xce\x5f\xa6\x35\x22\x3d\xe7\x97\xd4\x49\x72\xa0\x15\xe3\x4b\x4c\xee\xbb\x3a\x35\xfe\x27\x3b\x2b\xb0\x32\x69\x3c\xe7\xf1\x52\x61\xf3\x38\xd9\xae\x35\xc3\x40\x96\xb3\xcb\xf0\xe1\x41\xca\x30\x4f\xc7\xf9\xc0\xe1\x35\x83\x90\x77\xda\x3c\x1d\xe7\x05\x37\xde\x24\x6e\x8d\xcf\x52\x97\x59\x00\xb8\x78\xf1\x22\x5d\xbc\x78\x31\xa4\xbf\x78\xf1\x22\x01\x70\x17\x2f\x5e\x74\x17\x2f\x5e\x74\x00\x0c\xff\x1e\xa1\x9d\xe7\xb9\x4c\x77\x48\x63\x82\x97\x55\x93\x0d\xd9\xd9\x73\x78\x89\x43\x93\x4d\x4d\xd6\x63\x75\x19\x93\x69\x99\x2e\xe6\x68\xe8\xd2\x21\xb1\x36\xcd\x65\x9b\xa7\x8b\x95\x47\xda\x16\x72\x20\xac\x19\xb1\x9a\xfe\x74\x00\x9c\xac\x44\x3e\x45\x61\x95\x38\x28\xb0\xb1\xef\x32\xf8\x82\x9a\xaf\x7d\xed\x6b\x16\x80\x3c\x99\x8f\xef\x21\xb7\xa8\x2f\xc3\x72\xce\xcd\x0a\x83\xd9\xee\xa0\xbc\xbe\xbd\x52\x5c\x9d\xa5\x76\xcf\x01\x8d\x81\x41\xb5\x34\xd4\x62\x45\x4e\xd6\x1d\xd0\x3e\xcb\x85\x05\x02\x5b\xe5\xe3\x6a\x9c\x0e\xce\x49\x0d\xe4\x5a\xeb\x59\xbc\x65\x12\xce\x1f\x90\x74\x84\x3c\x9d\x18\x87\x35\xb9\x13\x90\x0e\x0b\x73\xf2\xc4\x6e\xfe\xc4\x3d\xfb\xd9\x51\xe3\x30\xa4\xe6\xc2\xb0\x70\x42\x22\x35\xa7\x42\x62\x30\x18\xe0\x0b\x5f\xf8\x82\x54\x2a\x5a\xd0\xac\x69\x0e\xaf\x3d\x73\x18\x39\x82\xd2\x60\x62\x38\xe4\x37\x0d\x96\xff\x75\xd1\x24\xe1\x35\xdc\x12\xae\x8b\x1e\x8d\x2e\x8d\x96\x65\x38\x34\xf8\x65\xf9\xf5\x79\x8e\xd1\xc6\xeb\x7b\x19\x8f\xfb\xd0\xc5\xf1\x1f\x94\xce\x2e\xb9\x93\xfc\x8c\xd5\x9d\x86\x43\x93\xb9\xd8\xbc\x7f\x17\x1d\x1e\x9e\xe3\xeb\x2a\xff\x32\x39\x8c\xc9\xbe\x26\x0f\xb2\xbd\xc5\xda\xa1\x56\x46\x59\x86\x65\xdf\x65\xbb\xd6\xda\xae\x4c\xdb\xb7\x3d\x68\xdf\x78\xd0\xea\x83\xa7\x8f\xf5\x07\x5d\xe9\x62\xf4\xf0\xe7\x18\x2f\x62\x3a\x4c\xb6\x9b\x65\x6d\x39\x26\x0b\xb1\xba\x84\x88\xc7\xca\xca\x8a\x39\x75\xea\x94\x01\x60\x4f\x9d\x3a\xe5\x9f\x63\xf8\x0e\xa2\x73\x96\xb5\x85\xae\xb2\xf4\x91\x1f\x0d\x1f\xc4\xbb\x8c\x3f\x48\x19\x38\x7c\xac\xff\x92\xb6\x48\x8c\x76\xd3\x25\x9c\x0b\xc0\x0a\x71\x1a\x9c\x06\x2f\x89\x6a\x79\x2c\x38\x0c\x89\x03\x82\x88\xa8\x70\x70\xb3\x51\x5e\xee\xdd\x58\x9d\x5f\xde\xcf\xcb\x6b\xde\xb8\xf0\x77\x04\x51\x1b\x71\x78\xf4\x76\x82\xbf\x26\x00\x70\x20\x38\x7e\xe0\x51\x6d\xab\x54\x66\x8a\xf3\xe6\x0a\xb9\x16\x6e\xbf\x3e\xa6\xe5\xd1\xa9\xcb\x10\xe2\x5d\x93\x26\xe4\xca\x4f\xe6\x05\xaa\x73\x5d\x02\x71\x84\xc4\x62\xb8\x39\x49\x3f\x78\xea\xd6\xe0\xa1\xd4\xd2\x2a\x1c\xfc\xf5\x07\xf2\x50\xba\xc0\xdb\x3f\xfd\xd3\x3f\xb5\x47\x8e\x1c\xe1\x02\xbc\xcc\xc0\xe4\xdf\xb4\x3a\x91\xe9\x65\xe3\x97\x8d\x26\x66\xc4\x62\xc9\x37\x9e\xc7\x41\x0c\x5e\x09\x1b\xeb\xc4\x63\x46\xb7\xfc\xd5\xd2\x68\xb4\xc8\x34\x92\x4f\x9a\x22\xd1\xd2\xca\x38\xf9\xcc\x83\x6c\xe4\x1a\x6c\x2c\xdf\x65\x65\x90\x69\x35\x7e\x69\xcf\x31\x5e\x6a\xb4\x6b\xf5\x1b\x93\xbd\x58\x58\x26\x1b\x5d\x65\xe2\xef\x50\xe2\x65\xe7\xa3\xc5\x69\xb4\xc4\x64\x45\xc3\xaf\xc9\x62\x97\xec\xc4\x68\xf7\x61\x99\x21\x20\xd3\x4a\xe3\x41\x83\x89\xe5\xdb\x45\x2b\xa7\x47\xd2\xd6\x55\x67\x9a\x31\xb3\x4c\x26\x34\x5d\x13\xd3\x5f\x92\xd6\x65\x3a\x65\x59\x7d\xc8\xba\x8d\xe9\x3f\x0b\x00\x47\x8e\x1c\x31\x5e\x1f\x1f\x39\x72\x04\xe3\xf1\xd8\x5e\xba\x74\xc9\x02\xc0\xa5\x4b\x97\xec\xa5\x4b\x97\xec\x91\x23\x47\x42\xde\xf5\xb3\x4f\x8b\xd5\xd5\xd5\x58\x3d\xc4\x74\x7c\x4c\x47\x74\xc1\x48\x7e\x2f\xd3\x0b\x12\x4f\x4c\x0f\xc4\x68\xd7\xf2\x90\x41\xab\xab\x3e\x06\x96\x05\x60\x49\x00\xc8\x67\x89\x20\x86\xb4\xeb\x77\x21\xfd\xc7\x3e\xf6\x31\xf3\xc3\x1f\xfe\xd0\x8a\xf3\x5c\x0c\x9a\x0e\x7b\x88\x6a\x77\x51\x38\xd3\x25\xb1\x38\x7a\xea\xd6\xe0\x17\x3e\x74\x69\xfd\x3f\xbd\xeb\xfa\xca\x27\x52\x57\xed\x2e\x92\x1b\x88\xfc\xf4\x0c\x9f\xa3\x09\xde\x13\xd7\xb2\x6b\xc0\xd3\xb7\xbe\xb1\x74\x1e\x95\x0a\x0f\x9f\xe7\x22\x64\xf4\xea\x22\x96\x1e\xe4\x60\x81\xc9\x1b\x47\x27\x5f\xfd\xee\x23\x3b\x7f\x7b\x7d\x6d\x76\xb9\x24\xec\x80\x30\x72\xd5\x05\x5a\xfc\xb4\xc7\x50\xd1\xcf\x3c\xf3\x8c\x1d\x0c\x06\x66\x3a\x9d\x42\xa9\x97\x58\xe8\x52\x80\x07\x49\xd3\x55\xcf\x07\x49\xdf\xe7\x7d\x19\xcd\xb2\x21\x6a\xdf\xb4\xef\x5d\x23\x18\xf9\x8e\x08\x6c\x57\x58\x86\x57\xd2\xa7\xd1\xd8\x85\x33\x46\xcb\xb2\x7c\x96\xd5\xd3\x9d\xca\x48\x9f\xfa\xea\x92\x07\xad\x3e\x63\x71\x52\x06\xc1\xe0\xfa\xea\x30\x89\x0b\xca\x73\x8c\x46\x08\x98\x58\x3e\x5d\xf4\x6b\x34\x68\xf9\x6b\x78\xfa\xc8\x6a\x57\x99\xbb\x68\x8a\xe5\x75\x27\x75\x7d\x10\x1c\x1a\x4c\x9f\x36\x75\x10\x1c\x07\xe1\x67\x2b\xf8\x5d\x4f\x7e\x67\x8e\xbf\x6f\x49\x9e\xa1\xe2\x43\x2c\x4e\xee\x6e\xaa\x75\x7a\x5f\x7d\x14\x83\xe1\x70\x3e\x74\xc9\xb1\x26\xfb\x07\xd1\x2d\x5d\xed\xaf\x2f\xfd\x31\x1a\xa3\x79\x6b\x88\x34\xa2\xbb\xe2\xe4\x37\x69\x81\x2d\x64\xfa\xc3\x1f\xfe\x10\x00\xe4\x4d\xd1\xe1\xcf\xb1\x1b\x43\x5d\x7d\xc4\x73\x41\x6e\xb2\x33\x2c\xaf\x5f\x5f\x9b\x5f\x9c\x64\xe5\xf6\xc2\xa4\x22\x9b\x3a\x0a\x46\x07\x5b\xaf\xd2\x9a\xc6\xa9\x13\xb7\x60\xd0\x18\x2a\xad\x75\x2e\x22\x90\xc8\xa7\x7a\xa6\xfa\xcf\xaf\x65\xa9\x0d\x94\x90\x8f\xf7\xec\x70\x6f\x4d\xe5\xc9\x31\xc0\xf0\xf8\x7e\xfe\xf1\xfb\x6f\x0d\x1e\xca\x0b\x33\x44\xb3\xbe\xc7\xff\x72\x6b\x33\x04\x26\xe0\xfc\x1b\x37\x02\x65\x90\x02\xa6\xa5\xd5\xd2\x70\xbc\x5a\x88\xd1\xa1\xe5\xa9\x09\xa5\x66\x51\xc7\x82\x56\x3e\xdb\x11\xaf\xe1\x33\x58\x94\x51\xf9\x5d\x2b\x43\x57\xa7\x2f\x9f\xb5\xc6\x2c\x83\xc5\x22\x8d\x32\x6f\xf9\xdb\x95\x77\x2c\xf0\xb6\xb5\x0c\x57\x1f\x19\xd1\xf8\xc3\xd3\x6b\x69\x38\x2d\x06\x8b\xf5\x25\xf5\x44\xac\x8e\x65\x3e\x52\x6f\x69\xf2\xd6\x15\xb4\x32\x77\x75\xda\xcb\x3a\xcb\x65\x79\x75\xd1\x14\x33\xa0\xb4\xb6\xd1\xc5\x2b\x9e\x36\x26\x57\x32\x6d\x57\x47\x27\xe9\x97\x79\xc8\xef\x12\x5f\xac\x1d\x49\xbe\xf2\xb4\x5d\x9d\xe9\x32\x79\x84\x80\xd7\xe8\x8f\xe9\x9a\x2e\x7e\xe3\xe9\xa7\x9f\x36\x00\xc0\x8d\x16\x80\x0f\x5c\xab\xb4\xcc\xa3\x6f\x00\xb4\x0e\xc8\xf3\xbf\x67\xcf\x9e\xb5\x4f\x3f\xfd\xb4\xf1\x38\x9f\x7e\xfa\x69\xf3\x7b\xbf\xf7\x7b\x50\xc2\x32\xb9\x59\x16\xa4\xec\xaa\x65\x63\xcf\x9a\x0e\x88\xd1\xc4\xd3\x68\x36\x44\xac\xdd\xfa\x77\x4d\xd6\xf9\x37\xad\xcd\x19\xa0\x7b\x57\x91\x41\x7b\x31\x0d\x5f\xfc\xa9\xc1\x72\x46\x74\x2d\x2a\x83\xc7\x53\x5f\xae\x05\xe7\x5c\xbd\x76\x95\x00\x20\xa9\x7f\xd3\x3a\xce\x5f\x03\x90\x39\x72\x69\x56\x9a\xd5\xa3\xa3\xec\xc4\xc6\x34\xbd\xb7\xb5\x80\x36\x84\x2a\xb2\xe5\x25\x21\xb4\x17\xde\x32\x63\x85\x38\x0c\x84\xe7\x85\x9a\x02\xcb\xd5\x66\x5a\x7c\xf0\xf4\xa0\x9d\x1e\x35\x45\x8e\x16\x3d\x3e\x00\x90\x5a\x1c\x36\x96\x6e\x5e\x5b\x9f\xbf\x35\xce\xec\x9e\x33\xe0\x97\x7f\xf9\xdf\xb0\x50\x49\x5c\x03\xc0\xeb\x24\xb6\x48\x8b\x33\x27\xf6\x1e\x4b\xc3\xf1\x42\xf9\x5d\x86\xab\x4f\x1e\x31\x9a\xb5\x3c\x62\xb4\xc4\x16\xa7\xf5\xc1\x29\xf1\x73\xd9\xed\xa2\x5b\x4b\xdf\x95\x77\xdf\xf4\xb1\xf2\xc5\xe0\x0e\x92\x67\x8c\x27\x7d\xeb\xf5\x4e\xea\x9f\xf3\x95\x2f\xe6\x94\x78\xe5\x3b\xd7\x2f\x52\x07\x71\x65\x1b\x4b\x2b\xf9\xc7\xe3\x38\x4d\x4e\xc4\x77\xc9\x03\x6f\x7b\x06\x3a\x5f\x64\x79\x35\x39\x8d\xe1\xd6\xe8\x02\x83\xe1\xcf\x72\x81\xef\x32\x79\xf1\xb8\x65\x1d\x2c\xa3\xa9\x4f\x9d\x7b\x9c\xa4\xa4\x91\xcf\xb1\x7c\xf8\xf7\x18\x8e\xbe\xf9\x68\xf4\x6b\x65\xe1\xf8\x00\xc0\x3e\xf1\xc4\x13\xe6\xea\xd5\xab\x0e\x80\x93\x67\xa3\x10\x11\xb6\xb6\xb6\x88\x1d\x94\x17\xbc\x2e\xf5\x4e\x8a\xd0\xb7\xf9\xe0\x69\x25\x22\xb0\x74\xd8\xda\xda\xa2\xb3\x67\xcf\xda\x97\x5e\x7a\xc9\x3d\xfd\xf4\xd3\x86\xed\x82\xe2\x74\x6a\x75\xac\x95\x55\x83\xd5\x74\x59\x4c\x06\xb4\xbe\x5c\x4b\x27\xe9\x8b\x19\xf5\xbc\x7e\xb4\xb4\x9a\x8c\xc5\x64\x3a\xd0\xa1\xdd\x55\x04\x06\xc0\x33\x63\xdd\x79\x8b\xd8\x3e\x4a\x55\x2a\x1b\x02\xda\xdb\xa2\x59\xc5\xfa\x3f\x83\xca\x78\xa9\x6e\x8b\x06\x52\x4b\xc8\x8c\xa3\xec\xd0\x24\x3d\xb2\x39\x4e\xef\x4f\x1d\x65\x8b\x44\x53\xf0\x6e\xf8\x87\xca\xa0\x50\x2c\x06\x11\x82\xb7\x04\xfc\xdc\x97\xe6\x1b\xd0\x2c\xfe\x6d\x9d\x21\xa3\xc1\x33\xe3\x08\xae\xbd\x1e\x06\x0e\x70\xcc\x92\x22\x50\x9a\x58\x4a\x47\xb9\xbd\x70\x6b\xa5\xb8\x31\x4b\xdc\xd4\xc1\x15\xd4\xbe\xbd\xd4\xa1\xae\xc8\xad\xad\x2d\xda\xda\xda\xa2\xda\x80\xe1\x75\x11\x33\x2c\x65\x88\xd5\x79\x2c\xfe\xa0\xf8\xbb\xf0\x76\xe5\x71\x10\x7a\xee\x66\x1a\x99\xf6\x76\xd3\x2f\xc3\xdb\x37\xfe\x7f\xb6\xd0\xb7\x1c\x31\x9d\xc0\x07\x3b\x31\x45\xec\x22\xe9\xb8\x22\xd4\xe8\xd1\x8c\x0b\x69\xec\x6b\xe9\x96\xd1\xca\xe3\x63\xdf\x0f\x82\x23\x96\x36\xd6\x76\x62\x38\x62\xf8\x0e\x42\x77\x2c\x9e\x87\xdb\xc1\x2d\x75\xc8\x32\x5a\x65\xbd\x1d\xa4\x0c\xcb\x74\x8e\xa4\x25\xfc\x7e\xf2\x93\x9f\xa4\x8b\x17\x2f\xba\xdf\xfc\xcd\xdf\xa4\xe7\x9f\x7f\xde\xf9\x23\xf6\xcf\x9c\x39\x43\xfe\xc6\x66\x96\x9e\x88\x28\x61\xcf\xe1\xd7\x1b\x2d\xfe\xb7\x86\xf1\x87\xe8\x85\x38\xe7\x9c\xe3\xb8\x23\x67\xcd\xf4\x91\xd9\x83\xc0\xf2\xdf\x83\xc8\x92\xc4\x77\x37\xda\x80\xd6\xfe\xbb\xec\x07\x24\x1d\x05\xf3\x41\xb3\x88\x3c\x6c\x5f\xb7\xa9\xca\xd8\xad\xad\x2d\x73\xdf\x7d\xf7\x79\x57\x0b\x67\x56\x02\x00\xce\xb9\xa4\x7e\x4e\x00\xe4\x00\x25\x04\xca\x86\x73\xb3\x7e\xcf\x28\xbb\x6f\xa5\x48\x0e\xf3\x0c\x5a\x2e\xa1\x60\x38\xb4\xfc\x2a\xe1\x59\x23\xa8\x79\xa6\xca\xb8\x80\x30\x40\x00\x3f\xc7\x23\x0c\x15\xe2\xa8\x9b\xd8\x3a\x2e\x18\x2d\xac\x84\xe4\x28\x4c\x17\x11\x08\x89\xc5\x2a\x80\x9b\xd7\xd7\x8a\x8b\xa3\xbc\xdc\x71\x26\x18\x2d\x61\x6b\x34\x44\xa5\x9e\x3b\x77\xce\x1d\x3f\x7e\xdc\x8c\x46\x23\xff\x4d\x33\x2c\x34\xa5\xa1\x75\x12\xde\x4d\xe7\xa0\x0b\x92\x74\x3a\x01\x71\xe1\x93\x02\xca\xf1\xca\x3c\x34\x5c\xe8\x09\xa7\x19\x53\x5a\x47\xd5\xa5\xc4\x64\x63\xd1\xca\xde\x37\x7d\x8c\xb6\x98\xd2\xb4\xd0\xf9\x25\xcb\x70\x3b\x79\x6a\xb4\xc6\xc2\xed\xc0\xc5\xf8\xd6\x95\x8e\xff\xf2\xb2\x73\xe3\x43\x96\x5f\xf2\x49\x9b\x6a\xe0\xb0\x52\x4e\xa5\xdc\xc9\x7c\xf8\x5f\x4c\x9f\x49\x59\x96\xf9\x48\xf9\xd3\xfe\xfc\x37\xd9\xfe\x34\xdc\xb2\xec\x31\x3a\xb4\x36\x25\xf3\xf1\xf0\x92\x87\x1a\x4f\x64\x3e\x5a\x79\x78\xfd\x71\x78\x5f\x1e\xd9\x91\x71\x9a\xf8\x08\x5a\xab\xd7\xd8\x40\xd8\xc3\x70\x7a\x80\x76\x1d\xf4\xa1\x09\xe2\xfb\x42\x27\xfc\xa9\x4f\x7d\x8a\xde\xf3\x9e\xf7\xe0\xe3\x1f\xff\x38\xa5\x69\x8a\xad\xad\x2d\x62\x27\xf2\xfa\xbc\x93\xda\x18\xf1\x03\xff\x04\x68\x76\x82\xd6\x7f\x29\xaa\xd9\x83\x84\x1d\xae\xea\xef\x57\x0a\xbb\x45\x9b\xfb\x12\xe1\x0d\x1c\xe7\x3d\x39\x67\xce\x9c\xa1\x73\xe7\xce\xb9\xdf\xfd\xdd\xdf\x35\xb3\xd9\x0c\x37\x6f\xde\xd4\xea\x42\xd3\xbf\x80\x5e\x6f\x5a\xfb\x94\xf0\xda\x74\x24\xe7\xa7\x94\x69\xa0\x5d\x0f\x12\xf6\x20\xed\x58\x9b\xb5\xe1\x5d\x7b\xa8\x47\x39\x55\xd4\xfa\x28\x0a\x27\x95\xa9\x2c\x48\x1f\x65\xdf\x12\xa4\xb7\xdf\x7e\xdb\x9d\x39\x73\x86\x80\xe6\xce\x22\x9e\x1f\x11\x19\x36\x55\x94\x82\x90\x3b\x42\x9a\x38\x1a\xde\x33\xca\x8e\x6d\x4c\xd3\x93\x06\x95\x00\x48\x2e\xb6\x34\x8b\x5f\x38\x55\x9b\x1b\x92\x13\xe4\x61\x2a\x8b\x24\x20\x59\xb8\x93\xc8\x17\xc8\x35\xc6\x88\x0f\xf2\x9e\x23\x7e\xe9\x97\xbf\x59\x9a\xaf\x8b\x09\x53\x53\x0d\x0d\x69\xe2\xc8\x8c\xf2\xf2\xe2\xce\x4a\x79\x6d\x96\xb8\x29\xa8\x3a\xf2\x5f\x1c\x46\x17\xdc\x7e\xa7\x4f\x9f\xa6\x7f\xfb\xb7\x7f\xd3\x14\x9b\x0f\x5c\x18\x34\x85\x00\xf1\x2e\x95\x98\x84\x97\x69\x48\x81\xd5\xf2\xd1\x8c\x1f\xa9\x34\x96\x75\x1a\xda\xbb\xa6\x94\x96\x29\xe2\x2e\x7c\x77\x9a\x7e\x19\x6d\xfc\x5b\x1f\x7e\x69\xb4\x2c\xcb\xb3\x8b\xd6\x98\x71\xd1\xc7\x68\xe9\xca\x17\x88\x97\x95\xd7\xad\xec\xd4\x64\x27\x0e\x11\xc7\x3b\x3a\x40\xef\xdc\xb8\x6c\x69\xd3\x1e\x1e\x46\x93\x13\x27\xd2\x2d\x1b\xa5\x3b\xe5\x4f\xc2\xf2\x6f\x1c\x77\x57\xa7\x00\x01\x23\xcb\xde\x55\x1e\xed\x59\xc3\xcd\x69\x93\xcf\x9e\x26\x4d\x8f\x6b\x7c\xd5\x3a\xa6\xae\x3a\xd6\x0c\x13\x59\xc7\x9c\x4e\xd9\xaf\x68\xfc\x94\x65\x97\xf5\xab\xd1\xe4\xe3\x17\xe4\xf4\x57\x7e\xe5\x57\xe8\xc2\x85\x0b\xf6\xcd\x37\xdf\x74\x4f\x3e\xf9\xa4\x9f\xe6\x41\xdd\x07\xf1\x7e\x29\xa9\xef\xd4\xe3\x06\x4b\x52\x4f\x15\xa5\xb5\x31\x93\xa0\x5a\x9f\x98\xd4\xf0\x46\x3e\x8b\x3b\xfa\x7c\x5f\xe7\xc9\xf1\x9e\x1a\x77\xe6\xcc\x19\x5a\x5d\x5d\xc5\x91\x23\x47\xf0\xe3\x1f\xff\x98\xcb\x12\xe7\x17\xaf\x13\x6d\xfa\x27\xd6\x2e\x39\x0f\x81\xb8\xf1\xc8\xf9\xa9\xc9\x74\x8c\x1e\xad\x1d\x5b\x05\x8e\xd3\x2f\xd3\x41\xe4\x09\xa0\x31\x5c\x34\x81\xea\x22\xc2\xa7\xf1\x85\xed\xab\xec\x79\x63\x70\x40\xe5\x35\xa8\x8f\x6b\x96\xc2\x45\x68\xa6\xb2\xd2\xfa\x14\xdd\xd4\x51\xb5\x78\xf5\xd0\x34\x3d\x7c\x74\x94\x3d\x90\x5a\x33\xf4\x08\x7d\x06\x8d\xc1\x52\x1b\x0b\xa8\xbd\x1b\xf5\xc7\xb6\xc9\x51\x13\x44\xcd\x87\x16\x0e\x06\x4c\xa1\x04\xd4\x32\x66\xf4\xfc\x2b\x4b\x85\x80\xb0\x68\x97\xc3\x03\x95\xa1\xd4\xc4\x13\x19\x87\x81\x23\xdc\xda\x5e\x2d\xde\xde\xcf\xed\xb6\xb6\xd6\xa5\xb6\xf0\x6a\x92\x29\x76\x15\x80\x36\x5a\xfb\x79\x84\x3e\x1d\x9e\xa6\xd4\x0f\x82\x67\x99\x37\xa0\x6f\xda\xbe\x5e\x85\xbe\xf9\xf6\x09\xb7\x9b\xfe\x6e\xe4\xad\xe1\x8b\x75\x84\x77\x23\xc4\x70\xf2\x76\x1d\x1b\xf9\x69\x75\x24\xd3\xc9\x4e\x48\x7a\x97\x64\xa7\x25\x71\xc6\x3a\x2f\x9e\xae\x0f\x3e\x28\xf1\x31\xd8\x18\xbe\x65\xf0\x52\x89\x2f\xc3\x1d\x7b\xd6\x68\xd5\xca\xc3\x75\x79\x17\x3e\xce\x73\x5e\x27\x1a\x0f\x63\xf5\x1e\x2b\x43\xcc\xf8\xeb\x82\x97\x34\x1c\x94\x3f\x06\x80\xfb\xf4\xa7\x3f\x6d\xde\xfd\xee\x77\xe3\x63\x1f\xfb\x18\x71\x0f\x8b\xf7\x94\xd4\x6b\x30\x13\x6f\x7c\x30\x4f\x4b\x06\x20\xab\x0d\x91\x2c\x71\x94\x65\x25\xe5\x79\x61\xb2\xbc\xa0\x3c\x2b\x29\x4b\x2c\x25\x09\x28\x33\x96\x12\x4b\xc1\x2b\xe3\xd3\xfb\x3c\xc8\x7b\x74\x98\x07\xc6\x3f\x10\x00\x37\x1c\x0e\xc3\x14\xd2\x13\x4f\x3c\x41\x57\xaf\x5e\xed\x5a\x4f\xd2\x25\x03\x5a\x1b\xd4\xea\x32\xd6\xbe\xfa\x0c\x56\xfb\xd4\xc3\xb2\x36\x1a\x6b\x97\x00\x1a\xc3\x25\xa6\x48\x64\xd0\x8c\x19\x19\xba\x1a\xb9\xaf\x88\xc0\xf4\x4f\x7f\xfa\xd3\xe6\x9e\x7b\xee\xf1\xf8\x82\x13\x84\xcd\x0d\x06\x97\x9b\x73\x2e\x45\x7d\x9a\x6e\x5e\x98\x95\xe3\xa3\xfc\xfe\xb5\x79\x72\x54\x78\x2e\x02\x71\xad\x69\x9e\xfa\xa3\x03\x9a\xcb\x12\xeb\xe0\xdf\x43\x14\x63\x61\xb3\xd5\xba\x36\x34\x6a\xeb\x85\xd8\x19\x2d\x01\x9c\xe1\xa0\x18\xbe\x00\x47\x0b\x34\x93\x43\x9e\x38\xb8\x71\x66\xdf\xde\x1d\x96\xd7\xa6\xa9\x9d\x80\x50\xf0\x2b\x00\x98\xf7\x05\x40\xb5\xde\x45\xdc\x1e\x2d\xad\xd3\x65\x9d\xb7\xf4\x86\xc5\x46\x5e\x12\x4e\x86\x18\xac\x5c\x11\x1e\x6b\x18\x72\x94\xc5\xb9\xd7\x95\xae\x8b\x0e\xd9\x01\x68\x65\xd4\xd2\x4a\x03\x3d\xd6\x59\xca\x34\xa4\xc0\xc6\x78\xd9\x35\x0a\xec\xa2\x4d\xe6\xd9\xa7\xee\xe4\xe8\xb5\xab\x4c\x5a\x3d\xf4\xe5\x9b\x0c\x9e\x8f\x5d\x9d\x70\x8c\x4e\xa9\xf0\x64\x3c\x1f\x33\x48\x3c\xfc\x9d\xeb\x1c\x23\x9e\xb5\x76\xa3\xd5\xa7\x9c\xd2\xeb\xc2\xc3\xf3\x97\xb4\xf0\xbc\x5a\x4d\x5f\x79\xd6\xda\x8d\x4c\x27\xf3\x91\xf9\xc5\xca\x20\xe1\xa4\x5c\x78\x3a\x78\x9e\x0e\x6d\xba\x24\x7e\x09\x2f\xeb\x5d\xe2\xd6\x60\x78\xe8\x03\x2f\xcb\xda\x35\x15\xe1\x9f\x39\xed\xf6\xc9\x27\x9f\x34\xdf\xfe\xf6\xb7\x6d\xed\xf9\x07\x1a\x63\xc2\x1b\x12\x86\x1b\x2c\x61\x00\xed\x5c\x36\x28\x4d\xbe\x31\x4b\x57\x36\xc7\xc9\xfa\xd1\x71\xb6\x79\xef\x5e\x7e\xcf\xc9\xdd\xc1\xc9\xfb\x76\xf2\x07\xef\xdd\xcb\xef\x3b\xbe\x9f\x9f\x3c\xbe\x9f\x1f\x3f\xbe\x9f\x1d\xdf\x1c\x67\x1b\xeb\xb3\x64\x30\x2c\x4c\x9e\x15\x94\x1a\x90\x71\x06\xc6\x55\x6b\x79\xbd\x71\x24\xd7\xc4\x34\x53\x11\xf5\x14\xd2\xd6\xd6\x16\x7d\xf3\x9b\xdf\xb4\x1f\xf8\xc0\x07\xcc\x3b\xef\xbc\x23\x65\xca\xf3\x4a\x1a\x35\x9c\x27\x9a\x8e\x92\x72\x0c\x2c\xca\x0c\x97\x35\xd9\xe6\xb4\x36\x10\x93\x6f\x69\x98\x70\x78\x0d\xb7\x9a\x5f\x2a\x0a\x77\x90\x11\xba\xb4\xd2\x11\x79\xef\x8c\xff\xd6\xb7\xbe\x65\x1f\x7b\xec\x31\xa3\xc0\x5a\x6a\x6e\x48\x2e\x00\xcc\x88\x68\x06\x60\x32\x4f\xdc\xe8\xfa\xda\xfc\xca\xf6\xca\xfc\xe2\x91\x51\xfa\x88\x71\x48\xfd\x9a\x93\x70\x34\x3f\x53\x6d\x2d\x83\x02\x80\x23\x07\x5a\x88\x04\x7b\xaf\x8c\x14\x6f\xdc\x34\x57\x29\xf9\x77\xaa\x7f\xb5\xeb\x1b\xf9\x33\x9b\x7e\xf2\x46\x90\xc7\x14\xa6\xaf\x9a\x8c\xc9\x91\x59\x9d\x25\x0f\xdd\x7f\x6b\xf0\xc4\xf5\xb5\xe2\x8d\xfd\xbc\xdc\x29\x92\x70\x53\xb4\xe7\x85\x41\xbb\x91\x72\xbe\x6a\x8d\x75\x59\x9d\x1e\xa4\xfe\xba\x64\x44\xa3\xa3\x0b\x77\xdf\x7c\xef\x26\xec\x32\x9e\x68\xdf\xbb\x68\xee\xc2\x79\xd0\xb2\x2f\xab\xb3\xae\x72\xf4\xa5\xdb\xe7\xd1\xb7\x4c\xb1\xfc\x96\xc1\xf3\x78\xd9\x71\x1c\x84\x4f\x32\x70\x3d\xd1\x25\x8f\x1a\x2f\x79\x9b\xe9\xa2\x49\x3e\xdf\x0e\x7c\xec\x59\xf2\x5e\xe2\x8b\x95\x27\x56\x97\xf2\xbd\x4b\x27\x48\x9a\x64\xd0\x68\x95\x38\x62\x75\xb5\x0c\x3e\x56\xc6\x65\xcf\xb1\x32\xc6\xf2\xd4\xbe\x4b\xde\xb7\x70\x7e\xff\xfb\xdf\xe7\xe7\xb0\x18\xf6\xdd\xb0\xb5\x28\x86\x88\x52\x38\xa4\x06\x94\xae\x4d\x93\x7c\x7d\x9a\xac\x6f\x8e\xd3\xcd\xcd\x51\x76\x72\x7d\x66\x4e\xac\xcc\xcd\xd1\x61\x61\xee\xc9\x0b\xb3\x99\x5a\xb3\x6e\x1c\x8c\x25\x58\xc0\x59\x47\x28\xe6\xc6\xed\x8c\xb3\xf2\xda\x28\xb7\xef\x8c\xb2\xf2\xda\xde\xb0\xbc\x76\x73\xa5\xb8\xb6\xbd\x32\xdf\xd9\xcf\xcb\xd1\xdc\xa0\xf0\xfd\x9d\xd7\xf7\xf5\xda\xc6\xa2\x7e\xf6\x53\x49\x56\xb9\xf1\x59\x93\xa9\x83\xd4\x83\x06\x13\xe3\xe7\xb2\x36\xdc\xa7\xcd\xcb\xb4\x5d\xb8\x79\x99\x42\x79\x68\x09\x80\x66\x9c\xc8\x4c\x62\xca\x24\x66\xd8\xc8\x3c\x00\x84\x2b\xcb\xb9\xd0\xf8\xb3\x4c\xfc\x61\x74\xcd\x81\x74\x0e\x9b\xc3\xc2\x9c\xf8\xf0\xa5\xf5\x27\x3f\x74\x69\xed\x37\x57\x67\xc9\x31\xb9\xab\x87\x1b\x22\xdc\x26\x69\xb9\x5c\x88\x83\xd7\xc6\x0c\x5c\xe3\x11\x61\x07\x07\xb9\x70\x41\xa2\x3f\xb5\x97\xe7\xe7\xd8\xbd\x44\xd4\x18\x2d\x2c\x6d\xf3\x8c\xe6\x84\xdd\x7a\x2a\x29\xc4\x55\x66\x8f\xdd\xcf\xcb\x9f\xfc\xe4\xc4\xe8\xeb\x3f\x3e\xb9\xff\xad\xeb\xab\xf3\x4b\x00\x46\x44\x34\x02\x30\xab\xff\xbc\x30\x5b\x00\x96\x88\xc0\x04\xb9\x0f\xdf\x97\x09\x96\x8c\xbb\x1d\xa3\x76\x19\x7c\x1f\x21\x3d\x88\x0c\xdd\x29\xcd\xb7\x13\x0e\x24\xe3\x91\xef\x77\x42\x67\xdf\xfa\x5c\x46\x5b\x9f\x4e\xa3\x2f\xae\x3b\xa1\xb3\x2f\x2e\x4f\x57\xdf\x3a\xef\xcb\xe3\x3b\xe1\x43\x2c\xaf\xbe\x72\xe0\x9f\x7d\x38\x48\x39\x34\x9d\x7c\x37\xda\x7f\x97\xe1\xa0\x85\x58\xdf\xd0\xa7\x9d\xf6\xad\x3b\xed\x5d\xe6\xd1\x49\xd7\xca\xca\x8a\x19\x8f\xc7\xb6\xee\x73\x00\x80\x2f\x98\x0d\x06\x4b\xfd\x5b\x9d\xa7\x65\x91\xae\xcd\x93\xe1\xe1\x71\xba\x79\xef\x6e\xf6\xc0\xb1\xfd\xfc\xa1\x23\xe3\xf4\xd1\xb5\x69\xf2\x9e\xbc\xa4\x93\x89\xa3\x4d\x63\xe9\x10\x01\xab\x70\x94\xfb\x21\x69\x9d\xaf\x75\x84\x99\x25\xb7\x53\x12\x6e\x14\x89\xbb\x36\x49\xed\xc5\x9d\x95\xe2\x67\x57\xd6\x67\xe7\xaf\x6e\xcc\x2e\x6e\xaf\x14\xd7\x76\x07\xe5\xa8\x48\xdc\xac\x4e\x53\xd4\x87\x8f\x7a\x23\xc2\x1b\x33\xa8\xe3\xf0\xcc\x33\xcf\xd8\x47\x1f\x7d\xd4\xbc\xfa\xea\xab\x7d\x3a\x7b\xc9\xab\x58\x3b\xea\xa3\x1b\x96\xe5\x75\x90\xfa\x97\xf0\x5d\x86\x52\x78\xd6\xce\x71\x91\x6e\xfa\x98\x3b\xce\x0a\x18\xe9\x8a\xb6\x2c\xce\x88\x67\xcb\x70\xe2\xf8\xf1\xe3\xe6\xf1\xc7\x1f\x07\x10\xd6\x70\x18\x00\x60\x73\x89\xa6\x5e\x10\x55\x6d\x8f\x26\x64\x0e\x2e\x25\x87\xec\xc4\x7e\x7e\xff\xea\x2c\x39\x4a\x80\xf1\x5e\x14\x6e\x34\x34\x2e\x90\xc6\x8b\xe2\xbd\x20\x6d\x7f\x73\x1d\x47\x7e\xe5\x49\x63\x9c\xb8\xfa\x39\x18\x26\xec\x52\x45\x1f\xaa\x35\x32\xd4\xdc\x99\xc4\x0c\x1b\xcd\x80\xf1\xf1\xfc\xe4\xdf\x7a\xfa\x89\x12\x98\x41\xe2\x68\xb2\x9f\x97\x97\xb7\x57\xcb\x1b\xce\x04\xaf\x93\xe7\x6f\x10\x60\xbf\x36\x68\x6b\x6b\x8b\x8c\x31\x54\x1f\x37\x1d\x73\xe3\xc9\x3a\xe2\x2e\x5a\x5f\x47\xd2\xcd\x2a\xdd\xc5\x3c\x9e\xe3\x06\xfb\xa6\x09\xa6\x94\x03\xe9\x62\xd6\xbe\x59\xf1\x4d\xba\xca\x79\x7a\x49\x1b\xa7\x37\x46\xcb\x41\xa6\x63\x34\x38\x8d\x7f\xcb\x5c\xf6\x92\xc7\x31\x1e\xc4\x02\x87\xe1\xed\xc9\x87\x2e\x17\xae\x4c\x27\xf9\x2d\xa7\x62\xa4\x1c\x68\xfc\xe9\xa2\xdd\x30\x3c\xbc\xdd\xc7\x70\xb7\xf4\x82\xf8\xce\xcb\x27\xcb\xbd\x4c\x4e\x35\x1d\x24\xe1\xa4\x6b\x9c\xd3\xdc\xc5\x4b\x59\xc7\x50\xf8\xd9\x95\x2f\x2f\xb3\xcf\x37\xe6\x8a\x8f\xd1\x11\x33\x5a\xb8\xdc\x71\x59\xd5\xda\xbf\xc4\x07\x2c\xf2\x44\xa6\x95\x72\xed\xbf\x3b\xe5\x19\x2c\xce\xe7\x25\xdb\xba\xc6\xd7\x58\x7a\xfe\x1e\xe3\xb1\xc4\x41\x00\xdc\xfb\xdf\xff\x7e\xfa\xec\x67\x3f\x4b\x1d\x46\x4b\x5a\xf7\x37\x19\x1c\xb2\xac\xa4\x95\xa3\xe3\xec\xc8\xbb\x6e\x0c\xdf\xfd\xbe\x2b\x6b\x9f\x78\xe4\xe6\xf0\xd7\x8f\xef\xe5\xbf\x76\x68\x92\xfe\xd2\xb0\x30\x1f\xcc\xac\x79\xc0\x38\x3a\x6a\x40\x6b\xe4\x28\x27\x42\x42\xd5\x0e\xd8\x04\xa0\x94\x1c\x65\x04\x0c\x13\x67\x0e\x27\x16\x27\xf3\xd2\xbc\x7b\xa5\x30\xef\x59\x9f\x25\x8f\x1e\x19\x65\xa7\x8e\x8e\xb2\xcd\xb5\x59\x32\x70\x84\xa2\x30\xb6\x9c\x27\xe1\x62\xdd\xda\x39\x5f\xad\x6b\xac\x75\x7e\x68\x73\x5b\x5b\x5b\xf4\xf0\xc3\x0f\xe3\xea\xd5\xab\xb4\xb7\xb7\xa7\xc9\x8c\xe4\x37\x97\x65\x2f\x67\xbc\xbe\xb5\xfa\xe1\x3c\x95\x72\x25\xbf\xc9\x34\x5a\xdb\xd1\x74\x44\x4c\x3f\xf0\x32\xb4\xbe\x4b\xc3\x45\x53\xd2\xbc\x30\x5a\xc7\xa7\x75\x80\x56\xa4\x93\x02\xca\x89\x71\xa3\xd1\xc8\xb1\x45\xba\x55\x46\xcd\xf6\x33\x00\xf0\xf3\x8c\x86\x2f\xd2\x9d\xa5\x0e\xf7\xec\x67\x47\x36\x27\xd9\xfd\xa9\xa5\x41\x3d\x0f\x14\x92\x85\x33\x59\x6a\x6b\x22\x48\xb7\x3f\x28\x48\x16\xd0\xb1\x29\x22\x69\x64\x30\x98\xc6\x53\xe2\x9f\xdb\x06\x48\x3d\x17\x04\x57\x1b\x52\x35\xba\x06\x53\x6d\x3c\xb9\x1a\x8e\x18\x10\x11\x81\x1c\x65\x89\xa5\xac\x34\xee\xd6\xce\xb0\x78\x6b\x3f\xb7\x23\x50\xd8\x1a\x5d\xd6\x74\x95\x6d\xb9\x26\xf7\x77\x7f\xf7\x77\x76\x6d\x6d\xcd\xcc\xe7\xf3\x98\x72\x8f\x75\x70\xbc\x8e\x34\x21\x8e\xc5\x6b\x1d\xba\x8c\xe7\x71\x52\xb9\xc5\x94\x9c\x94\x31\x87\x36\x7d\x1e\x8f\xc5\x22\x0d\x52\x49\xcb\xd0\xf5\x5d\x2a\xf9\x58\x67\xaa\x75\xac\xbc\x13\x07\x16\xdb\x81\x56\x66\xde\xb8\x81\x45\xba\xb4\x4e\x9c\x77\x6c\x3e\x4d\xac\x2d\x6a\x3c\xe4\x65\xd0\xf2\xd5\xf8\xd3\xd5\xe1\x71\x78\xad\x53\x91\xb2\x42\xe2\x5d\xca\xa9\x86\x43\xd3\x4b\x31\xfa\xb4\x3a\x94\xb2\x2d\x15\xad\x66\xa8\x68\x79\x48\x5e\xf6\xa9\x63\xa9\xfb\x64\xdd\xc5\x78\xc1\x7f\x81\xc5\x7a\xf1\xf1\x52\x9f\xca\x0e\x44\xab\x17\x4d\xae\x65\xb1\x21\xb7\x3a\x00\x00\x20\x00\x49\x44\x41\x54\x47\x23\x75\x35\x97\x6f\x39\xb0\xe0\xed\xb1\xcb\xc8\xe5\xc1\xc3\xc8\x32\x68\x9d\x29\xa7\x9b\xe3\xd4\xf8\xca\xeb\x86\xe7\x13\xf8\xf0\xd9\xcf\x7e\xb6\xb5\xc5\x99\x79\x57\xbc\xd1\x92\x12\x51\x66\x2c\x06\xab\x73\x73\xe8\xbe\xdd\xc1\xa9\x0f\x5c\x5e\x3f\xfd\xe8\xb5\x95\xdf\x3c\x36\xca\x3e\xbb\x3a\x4b\x3e\x91\x5a\xf3\x80\x01\xad\x02\x64\xaa\x63\x2e\x5c\xd8\xe0\xe1\x77\xa8\xfa\xbe\xa7\xb5\xd4\x80\x50\xf5\x19\x0e\x79\xe2\xcc\x3d\x83\x92\xde\xb5\x3a\x4f\xde\xbb\x39\x4e\x1f\xbc\x67\x94\xaf\x25\x8e\x26\x7b\x79\x39\x2e\x12\x67\x5d\x05\xef\xd7\xbd\x00\x80\xdf\x98\x11\xea\xc2\x18\x83\x7f\xf9\x97\x7f\xb1\xf5\xb3\xa9\xbd\xf0\x52\x8e\x35\xb9\xe0\xf5\x2a\xeb\x4c\xeb\x37\xa4\xdc\xc6\xea\x0f\x1d\xcf\xb2\x0f\xe2\xdf\x78\xbe\x9a\xae\x68\xe5\x2d\x0d\x17\x4d\x99\xcb\xce\xcd\x07\x4d\xc1\x69\xd6\x7e\x8c\x49\x90\xef\xec\x70\x1f\x39\x72\x09\xfb\xe5\x6b\x03\x26\x05\x21\x29\xc9\x25\x83\xd2\xe4\xc7\xf7\xf3\x87\x07\x85\x59\xa7\xca\xc0\xf1\xb2\x11\x50\x84\x85\xb2\x75\x75\x33\xeb\xb5\x8a\x62\xf1\x41\xbe\xc4\x76\xe7\x30\xac\xe0\x06\x4f\xf0\xc2\x30\x86\x10\xea\x99\x28\x96\xaf\xa7\x27\x9c\x01\x53\x93\xe2\x69\x61\x79\x7a\x5b\xc8\x38\x1a\xa4\xce\xd8\x49\x66\xaf\x5e\x5b\x9f\x5f\xb5\xd5\x0e\xa3\x82\x1b\x2d\xde\x12\xaf\xad\x70\xb7\xb5\xb5\x45\xdf\xfb\xde\xf7\x34\x03\x63\x81\xd7\xca\xf7\x18\x8c\x06\x17\x0b\x5c\xb9\xf1\x38\xad\x83\x94\x41\x53\x74\x31\x3a\x62\x8a\xad\x0f\xad\x5d\x32\x2e\xe9\xd7\xe4\xbe\x0b\x5f\xec\x39\xe6\x45\xd0\xf8\x1d\x6b\x6f\x5d\x9d\x7b\xcc\x18\xd3\x14\xc5\xb2\x20\xeb\x2f\x46\x53\xac\x8e\x62\x41\xeb\xf4\x5b\x4d\x07\xfa\x68\xd9\x7f\x5f\x46\x17\xa7\x9f\xa7\xf1\x34\xcb\x0e\x9f\xd3\xb1\x30\x98\x52\x70\xcb\x11\x21\xef\x64\xa5\xc1\x2a\xe3\x25\x1d\xb1\x4e\x9d\xd3\xc2\xd3\x6a\x9e\x47\x69\xb4\xcb\x72\x75\x05\x8e\x3b\xa6\xdb\x35\xb9\xe1\xfc\xd2\x74\x3b\xc7\xb3\xa0\x1a\x19\x9d\x5a\x3b\xee\x1a\x00\xc4\x70\xc6\x8c\x4c\xfe\xbd\xd5\x06\xfc\x61\x72\xd4\x9c\x74\x6b\xc0\xce\x5c\xa9\x9f\x73\xe3\x68\x70\x74\x9c\x1e\x79\xec\xea\xea\x63\x1f\x7c\x7b\xfd\xd7\xef\xdb\xc9\x3f\xbb\x3e\x4b\x3e\x9d\x58\x73\x2f\x88\x12\xc9\xc0\xca\x36\xa1\x3a\x63\x6a\xfa\x99\xfa\x1b\x39\x2f\x04\x14\xf4\x3e\x39\x80\x88\x92\xc4\xd1\x46\x56\xd2\x83\xab\x73\xf3\xe8\x91\x71\xb6\xb9\x36\x33\x7b\xb7\x56\x8a\xdd\x59\x6a\x0b\x57\x25\x71\x35\xcd\xdc\xfb\x52\x75\x21\x6c\xd1\xee\x9b\x6f\xbe\x89\xf1\x78\x1c\x8c\x1c\x2c\x7a\x2f\xe4\x94\x4d\x4c\xfe\x79\x9d\xf8\x78\x4d\xbe\x81\x7e\x06\xa6\xc7\x8b\x48\xbc\x64\x27\xa7\x5b\x95\xe5\xae\x23\xff\x7d\x88\x35\x82\x65\x8a\x38\xd6\x80\x62\xca\x38\x18\x2e\x7c\xcb\x6f\x7d\x08\x9d\x17\x34\xbe\x3f\x3e\x07\x90\x4c\x33\x6b\x4f\xee\x0e\xee\x5f\x9f\x26\x27\x92\xfa\x24\x5d\x6f\xe1\x7a\x8b\x37\x78\x46\x98\xfa\x68\x84\xca\x05\x03\xc4\x87\x3a\x65\x63\xe8\x54\x34\x35\x8b\x69\xc3\xfa\x98\xda\x5b\xe2\x5c\xcb\xe8\x69\xa9\x29\x62\xcb\x77\xeb\x85\x30\x7e\x77\x92\x6b\x80\xda\xf9\x57\xa8\xb2\xc4\x52\x46\xc0\x68\x94\x97\x6f\xde\x1a\x96\x3b\xa0\x6a\xee\xb3\x4e\x64\x2b\x43\xdc\xf9\x5f\x22\x22\xb7\xb6\xb6\x46\xaf\xbf\xfe\xba\xa6\x80\x63\xa3\x2c\xa9\x24\x34\x0f\x83\x06\xab\x05\x39\x3a\x94\xdf\xba\x3a\x06\xa9\x08\xbb\x46\x6c\x12\xff\x32\x7a\xfb\x94\xd9\x87\x2e\xb8\xae\x8e\x33\x56\x2e\x4f\x6f\x4c\x91\x77\xf1\x3f\xd6\xa8\x25\x8d\x31\xe3\xa4\xcb\x20\x88\xf1\x57\x83\xd1\xd2\xca\x0e\x47\x3e\x73\xfa\xb4\xce\x28\x36\x97\x2d\x8d\x30\xe9\x09\x90\x3a\x86\x07\x3e\x02\xd4\x14\x6b\x97\x57\x41\xa3\x45\xa3\x5f\x7b\x96\x65\xd1\x8c\x15\xad\x23\x91\xf9\x73\x3e\x6b\x9d\x4d\xac\x63\x97\xc6\x4d\x4c\x86\x39\x8d\xe8\x80\xd7\xa6\xf1\x48\x7c\x93\xf1\xb2\x2e\x62\x32\xed\x04\x8c\x8c\xef\x6a\x8f\x31\x3c\xbc\x6c\x2a\x9d\x1f\xfb\xd8\xc7\xe8\xb7\x7e\xeb\xb7\xbc\x47\x5f\x1a\x2d\x7e\x59\x42\xee\x9c\x1b\x10\x68\x70\x6c\x94\x1d\x79\xff\x95\xb5\x8f\x3e\xf6\xce\xea\xef\x1e\x19\x67\xbf\x33\x28\xcc\x7b\x89\x28\x0b\x85\xf5\x03\x54\x34\xfd\x4d\x50\xf3\x68\xbc\xf5\x61\x62\x27\x0c\x4e\xd1\xd4\x20\x7b\x26\x90\x31\x0e\x87\xf2\xd2\xbc\xfb\xd0\x24\xbd\xef\xf0\x34\xdd\xb9\xb9\x5a\xdc\x9c\x64\x76\x5e\x75\x57\x55\x87\xc3\x3c\x2e\xad\x69\x23\xe7\x1c\xfe\xf5\x5f\xff\xd5\xde\x7b\xef\xbd\xb4\xb7\xb7\x27\x3d\x8b\x40\x5b\xb6\xa4\x31\xa3\xb5\xff\x98\x4c\x71\xd9\x96\x6d\xa4\xab\xce\x24\x2e\xae\xff\xb4\xa9\xce\x2e\x1d\x65\x96\x19\x2e\x5d\xca\x5b\x0a\x49\x97\x40\x71\x7c\x31\xc1\xc5\xb9\x73\xe7\xdc\xb9\x73\xe7\xfc\xa1\x74\xb5\x11\x4b\x7c\xaf\x3b\x3f\xf8\x27\x01\x21\x9b\xa5\x8e\xd6\xa7\xc9\xf0\xe8\x38\xbd\x2f\x2f\xcd\x1a\x81\xc2\x5a\x17\xbe\x56\x85\x1b\x06\x41\x88\x00\xd4\xf3\x42\x68\xac\x9a\x60\x8e\x08\x8f\x89\xb0\xa6\x9b\x37\x86\xaf\x99\x8e\xaa\xd2\x7b\x97\x61\x28\x4c\xa0\x89\xd7\x7e\x2b\x2e\xd8\x4b\x04\xe3\x30\x48\xad\x49\x0a\xe3\x6e\x5c\x3e\x34\x7b\xcb\x1a\xcc\x6b\x5e\x17\x75\x52\xbf\x3d\x3a\x78\x5d\xfe\xe6\x6f\xfe\x46\x9b\xa6\xd3\x7e\xfd\xb3\x26\x70\x5a\x87\x20\x47\x59\x5a\xe0\x4a\x5a\xfb\xd6\x95\x47\xd7\xfb\x41\x60\x25\x2d\x1a\xae\x2e\xdc\x07\x81\xeb\xc3\xbb\x65\xb8\xba\x70\x68\x65\xe8\x2a\x4b\x8c\xbe\x3e\x78\x62\xe9\xba\x7e\xfb\xe0\x91\x0a\x71\x99\xcc\x69\x38\x64\xba\x58\xa7\x25\xe7\xf0\x97\x75\xa6\x9a\x52\x96\xbf\xb2\x23\xd4\x8c\x2e\x8d\x56\x6e\xb8\x1c\x94\x3e\x0e\xa3\x19\xc2\x92\x7f\x5d\x46\xb1\xe6\xd1\x88\x19\xa0\x92\x26\x49\xab\x66\x7c\x6a\xf1\xb2\xce\x24\x9f\x20\x70\xc8\xb2\xc5\xca\xac\x19\xcc\x1c\x56\xed\x6c\x7f\xf9\x97\x7f\x99\xbe\xfb\xdd\xef\xda\x33\x67\xce\xf8\xed\xcd\x7c\x07\x11\xa1\xf6\xb2\x00\x18\x12\xd1\xe0\xd4\x4e\x7e\xfc\x89\xb7\xd7\x7f\xe9\xd1\x6b\x2b\xbf\xbf\x31\x4b\x7f\x29\x71\x74\x34\x8c\x55\xdb\x23\xdc\x66\x00\x4a\x5e\x6b\x37\x7d\x85\x27\x9a\x1a\x45\xdf\xfe\x05\xf8\x18\x18\x44\x04\xe3\x28\xcb\xad\x79\x70\x6d\x96\x3c\x74\x74\x94\xcd\xf6\x07\xe5\xcd\x51\x6e\xa7\x25\x39\xcb\x8d\x16\x00\xc1\xf3\x42\x55\x70\xe7\xce\x9d\x73\x7b\x7b\x7b\x1a\xef\xf9\x33\x18\x0f\xb5\xf6\xd4\x65\x64\xf0\x62\x49\xd9\xe8\x92\x53\x29\x33\x5d\x30\x9a\x6e\x58\x68\x67\x9a\xe1\x22\x85\xba\x4b\xe1\x70\xa1\xed\x52\xa0\x5d\x23\xa4\x05\x81\xf6\xf7\x17\x89\x3f\x2f\x68\xe1\x50\xba\xfa\x39\x2f\x8c\xc3\xf1\xfd\xfc\xbe\xf5\x59\x72\x2c\x71\x94\x11\xdf\x0b\xcd\x88\x6d\xc7\xb0\x48\x6a\xef\x20\x92\x70\xed\x96\xe9\x1a\x69\x0c\x6b\x65\x1a\x83\x84\xa7\x0a\xa2\xec\x42\x36\x21\x48\xa3\x85\x67\xc6\xe0\x92\xc4\x51\x6e\x1c\xca\x79\xe2\xde\xba\xb6\x3e\xdf\x46\x7d\x0d\x40\x4d\x8e\x3f\x94\x2e\x5c\x09\x20\xce\x75\x59\x16\x34\x6b\x59\x0b\x5d\x1d\xc6\xff\x0e\x3f\xbf\xa0\x29\x83\xff\xd9\x82\xec\x58\xfa\xe8\x09\x19\x62\xe9\x62\xb8\xbb\x3a\x52\x08\x5c\xb1\x81\x19\x18\x6c\x0c\x5e\xa3\x49\x1a\x3d\xcb\x8c\x3d\x1e\xb4\xf2\xc8\x4e\x45\xa3\x35\x56\xf6\x18\xdd\x7c\xdc\xbf\xac\x6d\xf7\x29\x83\xf6\xbc\xac\x3e\xba\xe2\x63\x65\x3e\x48\x19\x42\xfc\xc3\x0f\x3f\x4c\xbf\xf1\x1b\xbf\xc1\xc6\xa0\x0b\x47\xf3\xe7\xce\xb9\x21\x11\xe5\x0f\x6c\x0f\x4e\x7c\xe0\xf2\xfa\xa7\x1f\xdc\x1e\x7e\x6e\x6d\x9e\x7c\xd4\x38\x1c\x0a\x03\xe1\x70\xd6\x86\xff\xf1\x1a\xbe\xf1\xaa\xb7\xb4\x79\x5b\x97\x2b\x16\xa6\x38\x96\x03\xc1\x90\xa1\xc4\xe2\x9e\x61\x61\x4e\xad\xcf\xd2\xd9\xee\xb0\xbc\x36\x1a\x94\x13\x57\x79\xdc\xf9\x8c\x04\xf7\xc0\xb8\xd3\xa7\x4f\xd3\xb3\xcf\x3e\xeb\x1e\x7a\xe8\x21\xba\x75\xeb\x56\x8c\x67\x9a\xa7\x94\x87\x18\x3f\x35\xf8\x83\xc0\x4a\xf8\xa8\x37\x05\xba\x41\xda\xc2\xd7\xb5\xab\x48\x0a\x63\x8c\x98\x3e\x8a\x35\xa6\x18\x78\x7c\x20\xae\x36\x5c\x02\xd1\xec\x34\x41\x6e\x21\xfb\xf9\xc8\x74\x9a\x59\xda\x1c\xa7\x87\x37\x27\xd9\xbd\x79\x49\x6b\x04\xe6\x43\x43\x63\xf9\x48\x82\xe4\xd4\x11\x18\x3c\xc4\x1b\x01\x7e\x4e\x32\x78\x70\x48\x91\x4a\x9e\xa2\xf1\xf8\x08\x62\xd8\x23\xdf\x16\x1d\x60\xfd\x33\x08\xe4\x90\xa5\x8e\x32\x10\xed\x6f\x0f\x8b\x37\x46\x59\x39\x23\xa2\xb2\x36\x56\x2c\x98\xd7\xc5\x53\xc2\x8c\x97\x98\x61\x12\x1b\x15\x22\x92\x46\x0a\x93\x26\x5c\x5d\x2e\x6a\x4d\x76\xa4\x9b\xd9\x88\xe7\x58\xfe\xcb\xf0\x2e\xa3\xb9\x2b\x68\xf9\xc4\x68\x5f\x56\xee\x58\x19\x34\xba\xfb\x74\x48\x77\xca\xd3\x58\x59\xbb\xca\x10\x4b\xd3\x25\x23\x12\x3e\xe6\x91\xd0\x78\xa5\x29\x2f\x3e\x4e\x95\x79\x72\x18\x39\xfd\xa2\x79\x69\x34\x1e\x82\xc5\x69\x32\xdd\x05\xbf\x4c\x4e\x39\x4d\x1a\xfd\x92\x07\x92\x6e\xcd\x7b\x01\x01\xcb\x3b\x23\x40\xc7\x2f\x3b\x2c\x0f\xb7\xac\x4d\x69\xe5\x95\xcf\x31\x59\xe3\xdf\xba\xe8\xd6\xea\x8c\xd3\x11\xe3\x27\x04\x6e\x59\x66\x0b\x00\x9f\xfa\xd4\xa7\xcc\xa3\x8f\x3e\x8a\x24\x49\xbc\xf7\xde\x00\xad\xdd\x43\x39\x11\xe5\x44\x34\x38\x3c\x4a\x36\x3f\x70\x65\xed\x53\x0f\xdd\x1c\xfc\xf6\xfa\x2c\xfd\x90\x71\x38\x1c\x74\x79\x5d\x1a\x57\xe9\xe4\x9a\x02\xdf\x67\x50\xab\xb0\x41\x85\x8b\x01\xb4\x14\xe4\xca\x44\xa9\x0b\xe2\x8d\x21\xe7\x8d\x17\x32\x89\xa5\xc3\x83\xd2\x1c\xce\x4b\x33\xda\x1b\x94\xd7\xf7\x06\xe5\x18\x00\x5f\xe3\x02\xbf\x5c\xa0\x7a\x24\x77\xfa\xf4\x69\x3a\x79\xf2\x24\xc6\xe3\x31\xdd\xbc\x79\x93\x77\x7f\x5d\xf5\xa0\xb5\x35\x29\x47\x50\x60\x97\x4d\x15\xc9\x3a\xe1\xdf\x62\xf6\x85\x7f\xe6\xf9\xc9\xf6\xd8\x9c\x9b\xa2\x10\x29\xdf\x6d\xe4\x9b\x81\x9e\x5e\xc6\x7b\x1c\x32\x9d\x67\xa2\x4d\x92\xc4\x68\x87\xeb\x50\xfb\x00\x36\x8b\xe6\x3c\x93\x19\x80\x59\x69\x30\xba\x74\x68\xf6\xc6\xad\x61\x71\xb5\x20\x37\xe3\xe2\x52\x19\x07\x6d\x22\xda\xe2\x54\xbd\x78\x98\x76\x0d\xb4\xcd\x1d\x57\x1b\x26\xfe\x1e\xa2\xf0\x0b\x17\x40\x83\xfd\xcb\xf0\x78\xdc\x8e\x14\xcc\xdc\x68\xe1\x89\x9a\xb8\x74\x50\x98\x93\xf7\xee\x66\x67\xde\x7d\x7d\xe5\xfd\x06\x94\x03\xc8\xa9\x3e\x5f\x80\xfd\x69\x75\xe1\xf9\x26\x83\xed\xf8\x1e\x8b\xeb\xfa\xd5\x9e\xe5\xbb\x26\x0b\x1c\x4e\x3e\xf7\xa5\x57\x06\x2e\xaf\x31\x5a\x35\xd9\x8c\xe5\xd3\xc5\x3f\xed\x79\x59\x19\x62\x38\x0f\x82\xbb\x8b\xae\x18\x4f\x7d\x90\xfc\x59\x46\x9b\x94\xa7\x18\xde\x18\x3d\x31\x1d\x20\xf1\x49\xda\x82\x5e\xe8\xc8\x53\x83\xe1\xf1\x1c\xa7\x84\xd5\xf2\xd7\x70\x2c\x83\x97\x74\x73\x5a\xbb\xe8\xd3\xf2\x95\x74\x6b\x71\x12\x96\xf3\x78\x59\x1b\xd3\x68\xe7\xf8\xb4\xe7\xae\xf4\x5a\xfd\x68\xf2\xc2\xf5\xbc\xa4\x5b\x3e\x23\xf2\xac\xf1\xd3\x7f\x87\x06\xfb\xa9\x4f\x7d\xca\x7c\xfb\xdb\xdf\xb6\x79\x9e\xcb\xcd\x16\xde\x80\x49\x89\x2a\x7d\x9a\x58\xac\x3e\x7a\x7d\xf5\xfd\xa7\xb6\x07\xbf\xb2\x3a\x4b\x3e\x68\x1c\x0e\x55\xde\x72\x62\xfd\x43\xb3\x34\x40\xf6\xcc\x8e\x3d\xb5\x76\x90\x2a\x81\xf7\xdc\xfe\xb4\x17\x6f\x02\xb5\xcf\x45\xa5\x7c\x38\x37\xef\xbb\xff\xd6\xe0\xd7\x7f\xe1\x9d\xd5\x33\xc7\xf6\xb2\x63\xa8\xce\x35\xcb\xa9\xbe\xbf\x8f\xed\x86\xf2\xe5\xc2\xfa\xfa\x3a\xd8\xd9\x2e\x9c\x5f\x5d\xf2\x63\xb1\x58\xdf\x9a\x1c\x74\xd5\x1f\x44\x3a\x60\x11\x37\x8f\x97\x6d\xb3\x4b\xee\xc0\xde\xad\x76\xe4\xbf\xac\x13\x69\xb1\x49\x2b\xde\xa1\x6d\x89\x81\xc1\xc6\x46\x6e\x4e\xfc\x55\x91\xce\xb9\x73\xe7\xce\xb9\x3f\xf9\x93\x3f\x31\xc6\x18\x9e\xb7\x7f\xe6\x9d\xb3\xf7\xba\x64\x00\xb2\x59\x6a\xdd\xd1\x71\x76\xf4\xd0\x34\x3d\x9e\x97\xb4\xc2\x96\xe2\x82\x14\xf9\xe1\x51\xae\x86\x09\x06\x8d\x43\x6b\x11\x15\x29\xe9\xd8\xb6\xed\x1a\xbe\x59\xcb\xe2\x17\x6e\xf9\xbc\x7d\xfe\xad\x6d\xd3\x3c\x9f\xa6\xfc\x75\xbe\xdc\x0a\x22\x18\x87\x34\xb1\x66\x25\x71\x34\x1f\xe5\xf6\x8d\x5b\x2b\xc5\x2e\x10\xb6\x46\x3b\x34\xf5\xe0\x7f\xdd\xd6\xd6\x16\x7d\xe8\x43\x1f\xa2\xe7\x9f\x7f\x5e\xe3\xff\x41\x83\x66\x55\x1f\x34\x68\x23\xd4\xbe\x79\xc7\x46\xff\x9a\x12\xee\x83\x5f\xca\x66\x1f\xba\xe4\xe8\xf7\x6e\x86\xbb\x8d\xef\x4e\xf3\xea\xd2\x07\x32\x2c\xe3\x47\xcc\x2b\xa3\xf1\x9e\xc3\x52\x24\x9e\xa7\x89\xe9\x16\x39\xf2\x97\xb0\x46\xf9\xde\x45\x8b\xc4\x2f\x69\x5c\x56\x46\x99\x4f\x2c\x3e\x46\xb7\x56\xde\xae\x32\x6a\xb2\x1a\xa3\xab\x2b\x6f\x19\x0e\x02\x23\xcb\x7b\x10\x9e\x48\xcf\x40\x57\xfe\xd2\x63\x15\x60\xdf\x7c\xf3\x4d\x0b\x54\x1e\x7c\x31\x3d\x94\xa0\xb9\xff\x2e\x07\xb0\xf2\xee\xeb\xc3\x87\x1e\xbb\xba\xf6\x7f\xde\x33\xca\x3e\x99\x5b\x3a\x41\xa0\xc4\xf7\x0b\x00\x16\xfb\x10\xa1\xbb\xfd\x3b\xb9\xc6\xdf\xcf\x07\xc8\x0b\x83\x69\x56\xa4\xaa\xcf\xa9\x10\xb0\xe5\xb6\x7e\x19\x42\x96\x5a\x6c\xe4\xa5\xc1\x34\xb5\xd7\x6f\x0d\x8b\x6b\x45\xe2\xf8\xfd\x75\xa8\x07\xf6\x61\xbd\x0b\x00\xe7\xef\x35\x62\x7c\x8c\xb5\x0b\xf9\xbc\xac\x0d\xc4\xd2\xc5\x74\x46\x57\xdb\x90\x69\x63\xb0\x3c\x38\x60\xf1\x92\x45\x2d\x04\xb7\x1b\x1a\xe1\x90\x8d\xc8\x89\x6f\x1c\x96\xe3\x97\xae\x29\x35\xcf\x0f\x7f\xf8\xc3\x94\x24\x09\x77\x87\x01\x80\xdf\xe6\xc5\xdd\x7d\xe1\x0e\xa3\x22\x01\x0d\x0b\x33\x3c\x32\xce\x4e\xae\xce\xcd\x66\xe2\x2a\xc1\xe3\x85\x08\xcf\xae\x1d\x51\xc9\x89\xdf\x81\xd4\x08\xa4\x23\xb6\x1f\x3f\x08\x58\x95\xc2\x6f\x69\xab\xdf\x1a\x03\xc7\xa7\xf7\xef\xdc\x20\x42\x13\x57\xe1\x67\x5e\x96\x80\xaf\xb6\xf0\xfd\x62\xaf\x9a\x03\xc6\x21\x4b\x2d\x0d\x8d\xa3\x9b\xef\x6c\xcc\xdf\x9c\x25\x6e\xce\x3c\x51\xde\x5d\xe8\xd8\xc8\xc2\x19\x63\xc0\x04\x58\x53\x62\x9a\xab\xd0\x61\x51\xf1\xf9\x22\x48\x01\x27\x25\x0d\x0f\xd2\xe0\x89\x75\x40\xb1\xb4\x52\x71\xf3\x78\xc2\x22\x4d\xb1\xbc\x65\x7a\x4d\xa6\x63\x69\x24\x7c\x8c\x4e\x9e\x5e\x53\x04\xb1\x4e\xa4\x2f\xdd\x5d\xf8\xbb\xf2\xeb\xaa\x17\x8d\x77\x31\x99\xd0\xe8\xd6\x8c\xc7\x2e\x1e\x42\xc9\xb7\xab\x7e\x62\x74\x4a\xb9\x93\xf9\xf1\x67\x0d\x16\x2c\x8e\x7f\x8f\xb5\x0f\x4d\xce\xf9\x28\x51\x76\x9e\x5a\xba\x18\x9f\xad\x78\xe6\x65\x94\x38\x35\x79\x34\x1d\xf0\x1c\x37\x87\xe1\xf9\xcb\x7a\x90\xf5\xc4\xff\x64\x9e\x9a\x7c\x11\xc3\xd1\xc5\x43\x59\x5e\x8f\x57\x33\x6c\xba\xca\xec\xf3\x69\x95\xeb\xa3\x1f\xfd\x28\x7e\xed\xd7\x7e\x8d\x9e\x7c\xf2\xc9\x4a\xe5\x52\xb8\x03\xc8\xdf\xee\x9c\x11\xd1\xc0\x39\x37\x38\x3a\xce\x8e\x7e\xf0\xd2\xfa\x2f\xdf\xb7\x3b\xf8\xf5\x61\x61\x1e\xae\x0f\x91\x6b\x67\xc0\xfb\x05\x71\x96\x57\xd8\x51\x1a\xfa\x10\x6a\xd2\x2a\x78\x7c\xa9\x48\x41\xde\xf4\x3d\x8d\x27\xde\x38\x0c\xd2\x92\x06\x00\xc6\xfb\x03\x7b\xe5\xd6\x4a\xb1\x03\xa0\xf4\x07\xd2\xd5\xfd\x24\x9f\x42\x72\x5b\x5b\x5b\x54\xeb\x7e\xe9\xcd\xd0\xe4\xd4\x93\x28\xeb\x44\xd3\xf1\xbc\x5e\x62\x6d\x57\x7b\xd7\x64\xa6\x2b\x6d\xac\xdd\x01\x80\xf1\xc8\x34\xb7\xaa\xff\x8d\xb9\x45\x65\x58\xe6\x06\xe5\xcf\x9c\x71\x12\x9f\xf9\xd2\x97\xbe\x64\xa7\xd3\x69\x58\x4f\xe2\xd3\x51\x75\x52\xac\x3f\x45\xb6\xa0\xea\xee\xa2\xea\x0e\x23\xc2\xec\xea\xc6\xec\xad\xeb\x6b\xf3\x37\xa6\xa9\xdd\xa9\x8e\xf0\xf7\xb5\xe2\x9a\xff\x0e\xcd\x94\x0d\x6b\x22\xd4\x12\x9c\xea\x03\x9f\xc4\x09\xa0\xd4\xc0\x84\x29\x20\x86\xa8\xb9\xbc\xd1\x35\xcf\x1e\x2e\x62\x30\x79\x38\x57\xbf\xfb\xaf\x95\xe0\x7b\x5a\x90\x0f\x8b\xe4\x81\x53\x3b\x83\xff\xe3\xa1\x9b\xc3\x47\x52\x4b\xab\x70\xc8\x51\x4f\x15\xd5\x53\x47\x7c\x54\xc1\xaf\x49\x07\xe2\x2e\x62\xcd\xa5\x18\x73\xbd\x6b\x6e\xe2\x98\xfb\x5c\xe2\xd4\x82\x96\xb6\x8f\xfc\x68\xf9\xf3\xb4\x32\xef\x98\x7b\xbb\xeb\x9b\xc6\x17\x2d\x74\xf1\x44\xe2\xd1\xd2\x68\xf8\x62\x3c\x8d\xe1\xef\xca\xaf\xab\x5e\x62\x7c\x8f\xb9\xe5\x63\xae\xdb\x58\x5c\xcc\x0d\x1d\x2b\xbf\xcc\xb3\xcb\x65\x1c\x73\x5b\x1f\x84\x8e\x58\xe8\xaa\xfb\x2e\xf9\xe8\xca\x47\xea\xb9\x58\x19\x62\xf9\x20\x02\xdb\xc5\x23\xf9\x5d\xb6\x67\x1e\x62\xbc\x97\xcf\xda\xb7\x58\xd9\x34\xfa\x62\xe5\xd5\x68\x8a\xf1\xa7\xab\x1e\x2d\x00\xfb\xf8\xe3\x8f\xe3\xab\x5f\xfd\xaa\xe5\x3b\x88\xa8\x7d\x8c\x7f\x8e\x7a\xaa\xe8\xa1\x9b\x83\x87\x4e\xec\xe5\x9f\x1c\xce\xcd\x23\x04\x1a\xb6\x8d\x8d\x5a\xff\x12\xeb\x51\x5b\x6b\x12\x1b\x23\x85\x78\x42\x6a\xfa\x85\xaa\x87\x77\x7e\xcc\x5b\x7d\x26\x6e\x35\x2f\x6e\xed\x68\x7a\x1c\x07\x00\x26\x2b\xcd\xa9\x63\xfb\xd9\x47\x1e\xd8\x1e\xbc\x7f\x63\x92\x1c\x42\xb3\x5c\xc0\x4f\x15\x99\x60\x44\xb5\x75\x7f\xac\x8d\xc6\xda\xa5\xa6\x43\x65\xfb\xd2\xe4\x48\x3e\xcb\xbc\x63\xed\x44\xa6\x95\x74\xaa\xfa\x33\x76\x00\x5d\x6c\x84\xac\x8d\x1c\x64\x88\x59\x50\xfc\x1b\xb7\xd8\xa4\x55\x6e\x01\xe0\x7d\xef\x7b\x1f\x0d\x87\x43\x49\x03\x79\x58\xe6\x6d\x49\x50\x5f\x2d\x3e\x4b\x2c\x0d\xe7\xc9\xca\xe1\x49\x7a\x6c\x65\x6e\x0e\x1b\x54\x07\x05\x91\xa3\xe0\xdd\xe0\x37\x33\x4b\x23\xc2\x4b\x92\x6b\x62\x2a\xa2\xb8\xb5\xcd\xbe\x34\x6e\x44\x2e\xd5\x0e\x70\xb5\xc1\xc5\x4f\xe8\xad\x11\x35\xd7\x12\x78\x01\xae\x58\xc1\x85\x97\x98\xcb\xd0\xdf\x8b\x54\x2f\xd4\x4d\xd3\x92\xd6\x8d\xa3\xed\xeb\xeb\xf3\x8b\x93\xcc\x4e\x1c\xc1\x2f\xd4\x75\x7e\x67\x51\xcd\x43\xe7\x9c\x73\x67\xce\x9c\xd1\x76\x19\x69\x56\x71\xcc\xba\xd5\xe0\x65\x9d\xf5\xf1\x24\x40\x81\xd1\x2c\xee\xc0\x2d\x91\x8f\xe6\x01\x90\xf4\x68\xca\x38\x06\xdf\x05\x23\xf1\x76\x7d\x93\x3c\x58\x96\xaf\x36\x8a\x91\xcf\x5d\xf4\x74\x05\x59\x97\xb2\x5e\x63\xb0\x4e\x81\x89\x95\x6b\x59\xb9\x39\x2e\x3e\xca\x92\x65\xe0\x38\x20\x7e\x63\x23\x36\xf9\x8d\xd3\x69\xa1\xf3\xd6\x0a\x58\x59\xa7\x7c\x78\x11\xab\x0b\xa0\xad\x64\xbb\x78\xca\xe9\x90\x5e\x0c\x0d\x9e\xe7\x2d\x8d\x14\x9e\x8f\x43\xbb\x3e\x65\x79\x24\x1f\x62\x3c\xe7\x3a\xb7\xab\xd3\xd1\x46\xd8\x31\xb9\xe6\x65\x8b\xe9\x10\x9f\x87\x2c\x93\xa4\x29\xa6\xab\x62\x9d\x9b\x96\x8f\xfb\xe8\x47\x3f\x1a\xbc\x2d\x2c\x4f\xdf\x57\x64\x00\x72\x38\xac\xac\x14\x66\xe3\x43\x97\xd6\x7f\xe9\xd8\x7e\xf6\x9f\x32\x4b\xc7\x0c\xc8\xc0\x0f\x78\xa9\xd2\xcc\xd5\x23\xbf\x4e\x57\x17\x9e\x96\x97\xa6\x8e\xa8\x9e\x6b\xfd\x5e\x1f\xfc\xb2\xe0\xd9\xaf\xd3\x56\x9f\x6b\xe3\xc3\xd5\x53\x4d\x4c\xf7\x27\x8e\x32\x10\x46\xa3\xdc\x5e\xba\xbe\x3a\xbb\x05\xc0\xd6\x1b\x35\x4a\xaf\xff\xb9\x17\x86\x79\x5d\x38\xa9\x5c\x7e\x34\x99\x97\x32\x28\xe5\x40\xe2\x68\xf5\xdb\x22\x5e\xca\x2c\xcf\x4f\xca\x9b\xa4\x09\x22\x4d\x4b\x27\xf4\x39\xc7\x25\xa6\x2c\x97\x29\xd2\x2e\x23\x27\x66\x10\x85\x46\xf1\xf2\xcb\x2f\x3b\x71\x92\xae\x7f\xe6\xd6\x33\xd5\x2e\x3f\x03\x20\x71\x84\xc4\x11\x68\x63\x9a\x1e\x3d\x34\x4d\x8f\xd5\x6b\x5d\xc2\x94\x8f\x47\x14\x8e\xfc\xf7\xc2\xe3\x7f\x83\xe0\x91\xe0\x7e\xfb\xee\x23\xe9\x32\xf4\xae\x14\x7f\x10\x51\x15\xd5\x48\x3f\x5b\x6d\xc3\x9e\xbd\x81\xc3\x2c\x94\x00\xe3\x1a\xa1\xad\x8d\xa2\xfa\x9d\x8c\xc3\x4a\x66\x29\x2d\x8c\xbb\xb4\xbd\x52\xdc\x98\x27\x6e\x0a\x7d\x9d\x4b\x85\x8d\x9d\xac\x78\xfe\xfc\x79\x9a\x4e\xa7\x52\x49\x70\xc5\x1c\x53\x3e\x12\xde\x89\xbf\x58\xbd\x02\x8b\x72\xd2\xf5\xec\x05\x9a\xe3\x95\x8a\x56\x93\x1d\x8d\x66\x9e\x56\x83\xe7\xe5\x89\x8d\x3e\x63\xca\x52\xe2\x97\x0a\x80\xe7\x6b\xa0\x97\x87\x97\x89\x37\x7e\x49\xb3\xe4\x7b\x57\x90\xf5\xc2\x71\x76\xc1\xfa\xf7\xbe\xbc\x93\x7c\xd3\x64\x43\xc3\x21\x0d\x25\xa0\x5d\x66\x89\x53\xe3\x0d\xa7\x85\xc7\x73\xf9\x90\x9d\xb8\x26\x53\x9c\x26\xad\x4c\x92\x97\x52\x5e\x78\x9c\x66\x10\x70\x05\xec\xcb\xa1\xf1\x53\x2a\x7e\x74\xa4\x23\x16\x07\xb4\x3b\x0b\xce\x2b\x60\x11\x6f\xcc\xd0\xd3\xda\xb0\xec\xec\x24\x1f\x65\x19\xb4\x3a\x96\x86\x9e\xa4\x95\xa7\xef\x32\xee\x34\x23\x07\x1d\x69\x1c\x00\xbc\xf0\xc2\x0b\xbe\xff\x30\x40\xd8\x45\xe4\x0f\x30\xcd\x01\xe4\xc6\x61\xed\x81\x5b\x83\xfb\xde\xfb\xce\xea\x6f\xaf\xcd\xd2\x27\x0c\x68\xe0\x0d\x96\x4a\xed\x7a\xaf\x3d\xbb\xe3\xae\xce\xc2\xf7\x11\xfe\x72\x5e\x7e\x04\x87\x03\x10\xee\xc6\x03\x9a\xa9\xa4\x1a\x71\x38\xa9\x9d\x6f\xaf\xae\x4b\x10\x76\xb7\x12\x58\x5f\xe1\x0d\x18\xa4\x04\xb2\x93\xcc\x5e\xbe\xba\x31\x7f\xab\x4c\x16\x2e\x62\x74\x44\x64\xf9\xd9\x2e\xc7\x8f\x1f\xa7\xf3\xe7\xff\x3f\xea\xde\xf4\xd7\x92\xe3\xb8\x17\xfc\x45\x56\x9d\xed\xee\x7d\xbb\x9b\x6c\xee\xe2\x62\xd2\x8f\xd2\xc8\x52\x5f\x5a\x4f\x92\x21\xd9\xcf\xf6\xc8\x86\xfd\x2c\xf9\xbd\x07\x19\x82\x00\x1b\x82\x64\x12\x98\x7f\x89\x84\x30\xd6\x07\xc3\x02\x2c\x18\x32\x3c\x5f\x6c\x48\x98\x19\x8d\x25\x0c\x6c\x34\xb5\x90\x43\x89\x32\x29\x2e\xdd\x64\x93\xbd\xdd\xa5\xef\x72\x96\xaa\xcc\xf9\x50\x99\x59\x51\x71\x22\xab\xea\x36\x5b\xb2\x5f\xa2\x6f\x9f\xaa\xcc\xc8\x88\xc8\xcc\xc8\xc8\xc8\xc8\xa5\x5e\x4b\xf5\xb7\xc0\xae\x34\x32\x64\x3f\xd1\x74\x8a\xc4\x67\x14\x18\x99\x97\x7b\x73\x48\x81\xd7\x74\x83\x66\x18\x5b\x8e\x48\x06\xcd\xfa\x4a\xc1\xb5\xe1\x38\x4d\x68\x74\xb2\xc5\x62\xc1\xe3\x43\x1a\x5f\x2a\x2a\x20\x4e\x18\xed\x4d\x8a\x1b\xef\xad\xcf\xde\xbc\x3d\x2a\xae\x59\x42\x51\xd5\x02\x93\x00\xa0\xe9\x21\x41\x2d\xa4\x8d\xe3\x47\x0e\xf1\x3d\x58\xc8\x8d\xe0\xa2\x30\x79\x03\x03\xf1\x0b\xd1\x40\x90\x00\x79\x23\x2f\xc3\x5d\x8b\x7d\x34\xa9\x02\x9e\xda\x63\x53\x83\x32\x21\x36\xab\xf3\xec\xe9\x47\x76\xc7\x9f\xba\xf7\xf6\xf0\xfe\x61\x61\xd6\xc0\x96\x8c\xfc\xdf\xd2\x67\xda\x9d\x73\xd8\xdf\xdf\x97\xae\x3b\x59\xb7\x40\xb3\xdd\x53\xf0\x01\x4e\x06\x2d\x4e\x1b\xf8\x53\x41\x73\x3b\x4b\x3c\x46\xfc\xb6\xd1\x37\xec\x4f\xe6\xd5\xca\x28\xf9\xd0\x0c\x1a\x0d\xbf\xe4\x51\xe2\x4a\xf1\x99\x6a\x03\x0e\x67\xc5\xaf\x16\xba\xea\xac\x6f\xe8\x2a\x2f\x8f\x6b\xab\xb7\xd3\xd2\xe8\x92\x1b\x0d\x6f\x5f\x3a\x29\xb9\x09\x74\x35\x17\xb6\x46\x2b\x65\xdc\x6a\x41\xe2\xee\x92\x25\xcd\xc5\x9e\xaa\x4b\x89\x57\x93\x65\xee\xe2\xe7\x21\x15\xdf\x56\x66\x59\x37\x5a\x90\xfd\x4a\xd3\x1b\x1c\x4e\xbe\xb7\xf5\xc5\x54\xe0\x65\x59\xd2\x09\xcf\x3e\xfb\x6c\x83\x16\xd5\xb7\xe4\x56\x7f\x0e\xc3\xdc\xd2\xf8\x81\xbd\xf1\x63\xab\xf3\xec\xd7\x33\x87\x71\xbc\x09\x37\xe4\xf1\x8a\x97\x7b\xe9\xab\xbf\xda\x40\x09\xf6\x08\xe4\x18\x13\xb4\xba\x73\xb5\x95\xc0\x86\xe9\x2a\x4b\x3d\x99\xe6\x26\x67\x05\x5b\x6f\x40\x08\x79\xc9\xd1\x78\xbc\x30\xf7\x9f\x3b\x1a\x7c\xf8\xde\xdb\xc3\x7b\x50\x5f\x9c\x97\xa3\xda\x6c\x2c\xf5\x1d\x1e\x7a\xe8\x21\x5e\x5f\x3c\x70\x58\x29\x37\x29\x9d\x09\xf4\x6f\xab\xb6\x3e\x94\xd2\x77\x12\x4e\xd2\x89\x38\xdb\x3e\xb2\x98\x9a\x31\x86\x20\x67\x57\x1c\x07\xb7\x9c\xb4\xd9\xa3\xf6\x2c\x2d\x3d\xf3\xa3\x1f\xfd\xc8\x5e\xba\x74\xc9\x5d\xbc\x78\x31\x36\xab\x17\xc0\xb0\xd1\x2a\x5a\xd2\xce\xb9\x1c\x40\xe6\xc8\xe5\x8e\x88\xd6\xe6\xf9\xc6\xe6\x34\xbf\x67\x60\x69\x1c\xbf\x1d\xc4\x99\x8a\x56\xb5\x47\x5c\x99\xc6\xde\x23\xe3\x65\x8a\xef\xf2\xf6\x90\x54\x4b\x75\xe3\xd2\xba\x60\x82\x78\x34\x9e\x9e\xff\x74\x40\xa0\xc2\x2f\xb9\xa3\x7a\x19\x49\xba\x0d\xc3\x53\xbd\x64\x54\xe5\xf7\x66\x14\xa8\xba\x5d\x71\xc3\x38\xdc\xd8\x9b\x14\xd7\xa7\x03\x7b\x62\xc9\x95\xde\xf2\x0e\x5f\xd8\xe6\x96\xb5\x23\x22\x84\x0b\x8a\xb2\x2c\x33\x7e\x13\x97\xac\x77\x6e\xdd\x6a\x69\x9a\x35\xce\xdb\xb1\x8f\x57\x20\x04\xe9\x89\xd1\xbc\x3b\x1a\xdd\xd4\x0c\xd5\x2a\xf1\xdc\xa2\x97\x33\x70\x0d\xb7\x26\xff\x1c\x4e\x76\x36\x39\x73\xd1\xca\x17\xf2\x12\x7b\x6f\xeb\xb4\xda\x0c\x5e\xd2\xe2\x3c\x69\x75\xa1\xb5\x41\x5b\x59\x53\x79\xa4\x1c\xa4\x78\x97\x33\x5e\x59\x0e\x59\x7f\x7c\xf6\xce\xdb\x45\xcb\x6f\x45\xbc\x9c\xa9\x49\x38\x0d\x0f\x14\x38\xad\x3d\x39\x5f\xbc\x7e\xb5\xfc\xb2\x9d\x78\xfe\x54\x1e\x8d\x1f\xb0\x38\x6d\xc6\x2b\xfb\x26\xf7\x94\x48\x3a\xa9\x32\x49\x3c\x52\x66\x53\x78\xa4\x8c\xc8\x7e\x23\xeb\x47\xd6\x79\x08\x5a\x9b\x71\xfa\xdc\x30\xe7\x6d\x2a\xe1\x35\xfd\xd2\x68\x93\x95\x95\x15\xf3\x17\x7f\xf1\x17\xe4\x4f\xa5\x86\x09\x5c\xd8\x52\x10\x8e\x10\x8f\x32\x47\x93\xad\x93\xfc\xec\xd3\xd7\x56\x7f\x7b\xeb\x38\xff\x2d\x03\x1a\xf2\xbd\x2b\x21\xf0\x8f\xe7\x86\xe5\x9c\xe6\xc6\x5d\x9f\xe8\x15\x3f\x6f\x94\x2a\x39\x18\x30\x58\xf2\xa2\x34\x6a\x80\x8d\x45\xe1\xbe\xb0\x9a\x46\x3d\x56\x50\xb5\xb2\x30\x3f\x19\x94\x6f\xbf\xbb\x39\xbf\xea\xf5\x7c\x81\xea\xfb\x75\x56\xea\x7e\x22\x02\xdb\x2a\x20\xdb\x4c\x7a\x4b\x38\x57\xbc\xcd\x78\xfb\x70\x38\x52\xe0\x78\x9f\x06\x96\xe5\x52\xd3\x0b\x60\x30\x1a\x3e\xde\x57\x2c\x50\x6f\xce\x05\x4b\xe0\xef\x9a\x42\x08\x41\x9b\xc9\x74\xcd\x32\x52\x41\x9b\x61\x34\xf2\xf2\xcd\x46\x7e\x4f\x47\x70\x93\xcd\x9d\x73\x73\x22\xf2\x9b\x74\x69\xea\xbd\x2e\x6f\x1f\x8c\x8b\xf7\x2c\xc1\xba\x60\x00\x80\xd5\x12\x7f\x5f\xfa\x5a\xb4\x6b\xc0\x7a\x06\x96\x84\x2e\x1a\x2d\xce\x5b\xe4\x4c\x24\xb8\x91\x14\x3f\x05\xc0\x24\xbe\xb6\xda\x5d\xc3\xd2\x0e\xd6\x77\x6d\x10\x55\x11\x0d\x0d\x43\xc0\x68\x41\x0f\xdf\x7f\x30\xfa\x9d\x47\x77\xc7\x4f\xae\xce\xcd\x06\xf9\xfb\x5d\x50\x6f\xd4\x0d\x9b\x75\xe1\x7f\x0d\x11\xe1\xb9\xe7\x9e\x33\x65\x59\xa6\x2c\x5f\x39\xc3\xd2\xd2\xda\xe4\xa0\xcd\x1b\x23\xe3\xb5\xd9\x60\xea\xb9\xed\x9d\xc3\xa7\xe4\x4d\x96\xab\x0f\xdd\x54\xfe\xbe\x21\x35\xfb\x95\x75\x28\xeb\x44\x9b\x71\x68\xb4\xb5\xd9\x73\x57\x7f\x6d\xab\xe3\x54\x68\xab\xbb\xb6\x3c\xf2\xb7\xad\x6e\x35\x3a\x5a\x59\x52\x65\x68\x2b\x97\xf4\x06\x68\x70\x72\x36\xa9\xf1\xc3\x61\xdb\xda\xaf\x2d\xaf\x0c\x6d\xb2\xad\xcd\x74\xb5\xfa\xd1\x9e\x39\x6f\x5a\x1d\xa6\x64\x83\xe3\x69\xe3\xdd\x8a\x3f\x8e\x1f\xe2\x5d\xf2\x90\xaa\xf7\xd4\xd8\x61\x15\x38\x95\xde\x70\x38\x34\xc7\xc7\xc7\xf6\xeb\x5f\xff\xba\x75\xb5\xb7\x3c\xe8\xbe\xd0\x6e\x39\x11\xe5\x99\xa5\xe1\x99\xe3\xe1\xb9\xd5\x59\xf6\x58\xe6\x68\x25\xdc\x70\x0e\xa0\xf6\xae\xd7\xf3\x4d\x75\x2a\xee\xe2\x7f\x84\x7a\x2f\x8c\x1f\x69\x99\x8b\x9e\x7b\x72\x62\x2c\xbf\x38\x4c\x9a\x7e\x54\xe7\xab\x81\x62\xdc\x70\x54\xd0\xb9\x8d\x59\xf6\xc8\xc0\x62\x25\x94\xc9\x4f\xdc\x8d\x3f\x59\x14\xeb\xc4\x39\x87\xcf\x7d\xee\x73\x52\xbe\x53\xfd\x28\xa5\x9f\x53\xba\xab\x0d\x4e\x83\x49\xb5\xf7\x69\x64\x0e\x40\x73\xa9\xa8\xab\x30\x5a\xa7\xe8\x53\x88\x54\x68\xab\xac\x18\xf7\xfb\xbf\xff\xfb\x61\x87\x34\xbf\x29\x36\xfc\x36\x4e\x17\x01\x98\x02\x98\x16\xc6\x1d\x5f\x5b\x5b\xbc\xf5\xee\xc6\xfc\x17\xb3\xdc\x1e\x00\x10\x56\x08\x9a\xc2\x22\x43\x63\x71\xb1\x09\xce\xb3\xd4\x72\x55\xed\x19\x27\x01\x27\x49\x68\xa4\x34\xd6\x64\x22\x77\x19\x44\x78\x22\xac\x4d\xb3\x8f\x3d\x76\x63\xf2\x7b\x0f\xed\x8d\x9f\x98\x2c\xcc\x1a\x2a\xc3\x85\x2f\x1b\x35\xda\xc8\xbb\x12\xef\x24\xa4\x94\x3f\x0f\x7d\x0d\x80\xff\x48\xe1\xdf\x8b\x9f\xb6\xba\xfa\x20\x3c\x9d\xa6\xff\xfd\x7b\x04\xcd\x40\x48\x85\xd3\xf2\x9f\x92\xed\x94\xf1\xc1\x9f\xbb\x68\x69\x8a\x5f\xe2\x97\xb0\x9a\x81\x93\x1a\xe4\xef\x24\xdc\x8d\xf6\xed\x53\x0f\x6d\xfa\xbf\x0f\x3f\xd2\xf0\x48\x85\x3e\x69\x7d\xf5\x8f\x16\xc2\x4d\xb9\x39\x80\xdc\x38\x8c\xd7\x67\xd9\xf6\xa0\x30\x17\x00\x54\x4e\x93\xa0\xeb\x99\xa2\xf5\x8e\xf7\x60\x9f\xc4\xc0\xb6\x24\xfa\x34\xd7\x98\x5c\xf2\x49\x2d\x98\xa7\x25\xa2\x68\x4c\x4c\x11\x3d\x3a\x3c\xf0\x0b\x4b\x2b\x10\x07\x72\xc8\x87\xa5\x39\xb7\x31\xcd\x1f\xbe\xf7\xf6\x68\xdb\x39\x17\x2e\x24\x0d\xf2\xc6\xff\x00\x00\xff\xf4\x4f\xff\xd4\x57\xee\xba\xda\x38\xc0\x68\xa1\xab\xff\xf5\x8d\xd7\x60\x96\x70\xf7\x29\x48\x97\x92\xed\x33\xb3\xe0\x15\xd9\xa7\xb3\xc4\x0a\xfc\xce\x77\xbe\x13\xad\x67\x66\x49\x72\x2b\x2d\xec\x79\x99\x02\x98\x3a\xe7\xa6\x00\xa6\x07\xe3\x62\xef\xea\xc6\xec\xcd\xbd\x49\xf1\xae\x83\x6b\xd0\x70\x8e\x1b\x1d\x80\x13\x12\xa3\xb9\x0b\xb9\xb3\x95\x1b\x10\x95\x5c\x52\x5c\x26\x6a\x5a\x27\x95\x54\x37\xe1\xfd\x4c\xc0\xd5\x79\xb9\xf4\x86\x0d\x61\x9c\x38\xd5\x8f\x01\x0c\x54\x55\xd0\x78\xeb\x24\xff\xc4\xe3\x37\x26\x9f\xba\xf7\xf6\xf0\xc1\xac\xc4\x18\xcd\xbd\x2e\x0d\xcf\x0b\x2d\xf9\x29\x97\xda\x24\xf5\xdb\x26\xac\x9a\x01\xdb\x26\x57\x9a\x2c\x68\x38\x52\xf1\x7d\xbc\x84\x7d\xf3\xb4\xd1\xef\xe2\x27\x45\xbb\x8d\x1f\x49\xaf\x6d\xf6\xde\x95\xd6\x07\xbe\xab\x7f\xf7\x29\x43\x1f\x7e\xda\x78\xec\xc2\xd3\xc5\x57\xd7\x80\xca\x9f\x03\x6e\x8b\xe5\xfa\x95\xc6\xb7\x4c\x6b\x53\xbc\x9a\x17\xa4\x53\x77\xb5\xc0\xb6\x4d\x02\x65\x19\xd0\x03\x36\x55\x86\xb6\x89\xa8\xc6\x93\xa4\x21\xeb\xaa\xcb\x60\xe3\xf0\x6d\x06\x8b\xc4\x27\xdb\xaa\xcb\x08\xe2\x79\x23\xec\x7c\x3e\x17\x7a\xde\x85\xc9\x9a\x09\xbf\x61\xaf\x8b\x71\x34\x5e\x9b\x65\xe7\x87\x16\xdb\x01\x7e\x59\xef\x33\xaf\x09\x4f\x10\x33\xd4\xe8\x6b\x51\x66\xa6\x4b\xc6\x08\xd3\xe1\x8d\x65\x25\x12\xbf\x1e\xa6\x99\x54\xed\x7d\x34\x96\x86\x93\x45\x76\xcf\xe6\x49\x7e\xce\x6f\x34\x36\xc1\xe3\x12\x3e\x22\xe9\xcb\x0e\x60\x69\xbf\x4f\x97\x2e\xe7\x21\xd5\xef\x4e\x23\x0f\x29\xf8\x36\xbc\x9d\xfd\xb2\xed\x23\x8b\x5a\x7c\x6a\x7d\x32\xb5\xb6\x19\xe2\xe4\x5f\x48\xb3\x4a\x3e\x23\xe0\xf0\xe2\x8b\x2f\x3a\x7f\xfb\xa1\x5c\xef\x0c\xbf\x59\xf8\x25\xa2\x1c\xd5\xe9\x22\x03\x50\x36\x29\xb2\xd5\xed\x93\xfc\xbe\x81\x35\xa3\xc0\x74\xdc\xe4\x1d\x10\x88\x85\xc9\xa5\x85\x55\xf2\xb1\x62\x0d\x33\x1e\x2a\x42\x70\x16\x52\xf3\xd2\x5b\xa0\x71\x85\x73\x38\xda\xec\xd8\xd2\x54\xb0\xe4\xeb\x25\x25\x6a\xe4\x01\x5b\xc2\x92\x96\x3f\x81\x60\x1c\x56\x06\xa5\x19\x3b\x72\x7b\x47\xa3\xf2\xfa\xf1\xd0\x4e\x41\x51\xd9\x3a\xf6\x1b\x8a\xc6\xbf\x65\x24\xdb\x52\xfe\x36\xbc\x9b\x68\xae\x4b\x72\xc7\xa6\x14\xc8\x94\x73\x29\xf2\xa0\xd0\xd3\xf2\x68\xf1\x92\x1f\x0d\xbe\x6f\x9e\x36\xfa\x5d\xfc\xa4\x68\xb7\xf1\x23\xe9\x85\xbf\x25\x99\x4f\xbc\x6b\x7c\xb7\xc1\xcb\x3e\xaa\x95\xa7\xab\x0c\x7d\xf8\x69\xe3\x91\x87\x20\x2b\x29\x1a\xbc\x1e\xb4\x67\x49\x8b\xc3\x48\xdc\xb2\xee\xb5\x35\x7b\x99\x8f\xd3\xd1\x9e\x53\xf0\x92\x3f\x0e\x0b\x2c\xeb\x39\xa9\xc4\xa5\x8c\x70\x1e\x89\xe5\x4f\x95\x91\xc7\xb7\xf5\xbd\x90\x87\xe3\xec\x6a\xa7\x2e\x63\x42\x83\xe7\xc6\x0b\xa0\x97\x3d\xd5\x7e\x1a\x7c\x5b\xde\x98\x3e\x1c\x0e\x4d\x59\x96\xee\xb9\xe7\x9e\x33\x00\x40\x44\x19\x55\x67\x83\x8d\x3f\x02\x3d\x70\xce\x8d\x0c\x68\xbc\x3a\xcf\xce\x3c\x7a\x6b\xf2\x1b\xe7\x8e\x06\x9f\x30\xfe\xc2\xb9\xe6\x81\xe7\x30\xd1\xab\x3f\x96\xcb\x1b\x54\xbb\x22\xa3\x3e\xe4\xe1\x27\xa4\xd4\x1c\x23\x80\xfa\x39\x8c\x41\x71\x9f\x24\x6f\x85\x98\x6f\xc9\x94\xaa\x2e\xb7\x23\xd8\x45\xee\xf6\xf7\x26\xc5\xcf\xdf\xdd\x9c\x5f\x05\x30\x63\x5b\x27\xc2\x56\x8a\xf8\xe1\xdd\x17\x5e\x78\xc1\xd6\x98\x3b\xeb\xb5\x0d\x26\xa5\xb7\xda\xf0\xdd\x29\x7c\x8a\xa7\x98\x41\xbe\xa7\xdc\x33\xda\xcc\x23\xc4\xa7\x66\x04\x6d\xa1\x8f\x55\x6d\x80\xea\x43\x59\x4a\x1e\xcd\xeb\x12\x4f\x17\x39\x60\x7a\x38\x2a\x6f\xbd\xb7\x3e\x7f\x7b\x77\x52\x5c\xb1\xde\xeb\xb2\x54\x03\x3e\xb2\xf2\xaa\xb8\xf0\xca\x93\x20\x23\x6b\x37\x21\x87\x6f\x0a\x59\x40\xd7\xa4\xe7\xe1\xa9\xf6\xce\x68\xcb\x44\x92\x3e\xd7\x52\x4b\xf0\x8e\xcc\x64\x61\x3e\xf4\xc0\xfe\xe8\xd3\x0f\xed\x8d\x9f\x5e\x9d\x65\x1b\xf0\xdf\xb3\x40\xcb\xb7\x8c\x42\xe7\xee\x08\xa9\xf6\xfe\x8f\xbe\x24\xf1\xcb\x08\xa9\xfa\xd2\xfa\x50\xf8\xed\x53\xc7\xc0\x2f\xbf\x0e\xff\x3d\xdb\xa8\x6f\xbd\xb5\x85\xd4\x32\xcf\x69\x68\x9e\xb6\x0e\x4e\xbb\x9c\xa5\x79\x47\x52\x78\xfa\xb8\xdb\xef\xc6\x12\xa2\xd4\xcb\x7d\x61\x65\xe8\xf2\x78\xdd\x0d\xf9\xfa\xc0\x38\x84\xc7\x25\xe5\x95\xca\xc9\x61\x38\x28\x69\x3c\xac\xee\xc4\x1a\x57\x49\xda\x66\x80\x2a\x9e\x54\x0d\xcf\x21\xaa\x2c\xc1\xc0\xa9\xad\x12\x66\xb4\x30\xcf\x79\xc3\x83\xce\xd7\x90\xea\x1b\x53\x85\xa7\xc6\x79\x78\x0a\xa8\x4d\x66\xb1\x32\x2c\xcc\x46\x58\xfa\x42\xed\x4d\x92\xe5\x4f\xe9\xfa\xd3\x2e\xe1\x74\x2d\x37\x9d\x46\xa6\x4f\xab\x13\x96\x70\xa7\x2e\xa0\x93\xcf\x32\x68\xb3\x1f\x62\xbf\x96\xc5\x77\xcd\x62\x34\x5b\xa2\x31\x5b\xba\x7c\xf9\xb2\xbb\x74\xe9\x52\x38\x97\x4f\xec\xb3\xde\xa1\x79\x83\x2b\x90\x50\x37\x62\x66\xc9\x19\x90\xa3\xc9\x22\x5b\xd9\x3e\xce\x2f\x0c\xac\x19\x03\x4d\x46\x6b\x63\xc0\x79\xcf\x47\x74\xa1\x34\xd3\xc3\xf7\xc6\xc3\x7b\x80\x85\xb7\x9a\x7d\x62\xb0\xc4\xc3\x69\x20\xf5\x56\x44\x2f\xcd\x51\x66\x15\x8b\x24\xdc\x0f\xb0\xc4\x47\x80\x87\x8b\xc7\xa7\x09\x18\xe6\xd6\xac\x64\x8e\x8a\xe9\xc0\x5e\xdb\x1b\x2f\xf6\x9c\x41\xc9\x76\x98\x4b\xef\x0b\x01\xd5\x67\xd0\x9f\x7c\xf2\x49\x32\xc6\xd0\xfb\xef\xbf\xdf\xd6\xde\xc4\xfe\x52\x70\xd2\x23\x67\x44\x1e\x99\x1e\x60\xa4\x3c\x68\xbf\x5d\xb3\x80\x14\x3f\x1a\xee\x3e\x3c\x68\xcf\x6d\xca\x5b\x83\x73\x58\xae\x8b\x2e\xbe\xb5\x3a\xd3\xea\xb3\xab\x1d\x52\x74\xfa\xd4\x69\x8a\xa7\xb6\xbe\xac\xd1\x0e\xef\xdc\x5b\x00\x96\x2e\x71\x6a\x93\x26\x29\x3b\x24\xe2\x9d\x02\xcf\xe9\xa4\xca\xc9\xd3\xda\xf6\x4f\x70\xbe\x89\xc1\x6b\x1e\x16\xc9\x9f\x86\xbb\xad\x8f\x48\xcf\x8a\x56\x16\x39\x30\x6b\x75\x22\xeb\x53\x2b\x43\x78\xe6\x65\x91\x32\x2c\xdb\x4c\xf6\xcb\x54\xdf\x02\xd2\xed\x04\x2c\xd7\xbd\x26\xd7\x92\x8e\xd6\x56\x9c\x8e\x5b\x59\x59\x31\x8b\xc5\xc2\x3d\xfb\xec\xb3\xc6\xdf\x7f\x15\x4f\x9e\xa2\x9e\xbc\x0d\x89\x68\x64\x1c\xc6\xab\xf3\xec\xec\x43\xbb\xe3\xa7\xcf\x4c\x07\x4f\x03\x64\xea\x13\x9f\x4e\xf5\x76\x34\xaf\xfc\x6f\x3e\x57\xb6\x0a\x3b\x55\x1a\x32\x11\x83\x15\xf7\x80\xf1\x13\xa9\x11\xbe\xe1\x6a\xe7\x30\xd4\x80\x77\x80\x2b\x8c\x3b\xda\x5f\x29\x5e\x7b\x7b\x7b\xf6\x86\x83\x9b\xa3\xda\xeb\xb9\x70\xce\x95\xbe\x9e\xc2\xad\xc1\x00\xe0\x1e\x7c\xf0\x41\x7a\xf5\xd5\x57\xb5\xb6\x94\xb2\xc1\xe5\x48\x83\xe7\xb0\x56\xc1\x25\xdb\x0c\x0a\x5e\x0b\xbd\xbd\x39\x2c\x04\x9e\x06\x0e\x6d\x56\xd8\x77\x26\xa4\xc1\x69\xca\x27\x35\x3b\xe7\x6b\x94\x9a\xa5\xa8\xce\x60\xbc\x1b\x8c\xe3\xb0\xf0\x77\xba\xf8\xbf\x29\x11\x55\xfb\x5d\x08\xd3\xc3\x61\xb9\x77\x75\x63\xf6\xe6\xad\x95\xe2\x6d\x4b\x95\xd7\xa5\x61\x04\x84\x5f\x62\x26\x86\xf8\x8a\xb3\x93\xdd\x6e\xd9\x12\x89\x79\xe2\x17\xa4\x83\x20\x3b\x34\xaf\xf1\xa7\x3a\x4b\x44\x19\x3b\x41\xbd\x2e\x19\x0c\xa1\x06\x1f\x70\x0c\xbe\xbe\x57\x80\x40\x18\x94\x74\xee\xec\xd1\xe0\xe2\x87\x6e\x8d\xff\xf3\xbd\xb7\x87\x17\x00\x8c\xc3\x45\x4b\x50\x36\xeb\x86\xb5\xd0\x8d\x8d\x0d\xfc\xe4\x27\x3f\xe9\x3b\xbb\xd4\x14\x7b\x5b\x7a\x97\x77\x26\x25\x0f\xf2\xb7\x4b\x86\x52\xfc\x6a\xb8\x4f\x23\x9f\x46\x79\xbe\x53\xef\x53\x1f\x38\xee\x45\xd4\xf2\xc8\xf4\x14\x8e\xd0\xce\x7d\xea\xbb\x8d\x1f\x99\xde\x95\x47\xa3\x17\xf8\x48\xf1\xad\xe9\x81\xb6\xf2\xf3\x78\x23\xd2\xda\xea\x4f\xe6\xd3\xda\x4e\xf3\x96\x48\xd9\x49\x19\x38\x92\x6f\x4d\x7e\xb4\x78\x0d\x77\x4a\xf6\xbb\xf8\x93\xbf\x6d\xf8\x64\x59\x34\x59\xd7\xea\x27\x55\xa7\x6d\xf5\x2f\xf5\x7b\x5b\x79\xbb\xe0\x35\x5a\xe6\xf8\xf8\xd8\x02\x40\x58\x16\xe1\x03\x3d\x00\x90\xbf\x16\x3f\xe0\x24\x90\xa1\x4a\x27\x86\x74\x44\xcd\x4b\xf5\x29\xce\x78\xf8\x87\xe2\xa5\xfd\xcd\xab\x2b\xb8\x95\x82\x6a\x18\xa8\xc7\x0b\xd7\xb8\x72\x83\xdb\x2f\x15\x0d\x27\x06\x97\x3a\x38\x4f\x88\x9d\x8e\xe2\xc9\x15\xff\xd5\xfd\x5d\xf1\xeb\xd0\xe1\x4b\xd1\x0a\x3c\xfe\xfe\xef\xff\x3e\xd5\xf6\x5a\xfb\x41\x79\x36\x4a\x5a\x2a\xae\x4b\xee\x64\x90\x72\xd5\xa5\xf7\xac\x66\xc5\x6b\x48\xb9\x81\xa3\x09\x35\x27\xd2\xa5\xec\x25\x6e\x8d\x51\x15\xfe\xf2\xe5\xcb\x50\x8c\x16\x0b\x76\x29\x1d\xf8\x85\x74\x84\xe9\x3c\x73\x87\x37\x56\x17\x57\xdf\xd9\x9c\xbd\x76\x92\xdb\x3d\xc0\xdb\x18\x42\x5e\x1c\x6a\x19\x92\xc9\xd5\xbd\x2c\xe1\xc5\xa7\x31\x80\xca\xb8\xa1\xc6\x7b\x74\x2f\x52\x53\x88\x1c\x42\xa7\xf0\xff\x33\x9a\xa8\x2d\xe4\x4a\x60\x5d\xe0\x8b\x19\x33\x8c\x08\x37\x41\x09\x94\x4f\x16\xe6\xe1\xfb\x0e\x86\x9f\x7e\xfc\xe6\xe4\xe2\x99\xe3\x7c\x1b\xf5\x92\x51\xca\x78\x01\x00\x7c\xf1\x8b\x5f\xd4\x0c\xc7\x3e\xa1\x6b\x00\xed\x0b\x9b\x0a\xa7\xe1\xe5\xb4\xa1\x4b\xee\x25\x4c\x5b\xc7\x3b\x0d\xad\x5f\x45\x48\x19\x09\x6d\x7d\xf7\x83\xc0\xca\x3c\xa7\x09\x7d\xea\xfe\xb4\x78\xa4\x71\xa9\x4d\xd0\xba\x68\xf6\xe1\x4b\xd2\xb9\x9b\xe1\x34\xfd\xe7\xb4\x7c\x6b\x71\x7d\xe8\xa5\x78\xb8\x1b\xfd\xf4\xb4\xfa\xa2\xb5\xee\xbd\x1e\x95\x63\x57\x15\xe7\xf8\x09\x9c\xea\xa4\x25\x37\x54\xb8\x7e\xae\x8d\x14\xaa\x3e\x1d\xd3\xb8\x50\x8e\x5f\x45\x17\xe0\x1c\xf3\xa9\xd5\x1e\x15\xa7\x18\x28\x14\x8d\x24\x3e\x21\xf5\x46\x17\x37\x58\xe4\x65\x74\xbe\x1c\x1e\x5e\x2f\xa3\x1e\xb4\x3a\xeb\x63\x03\xf0\x90\x92\x99\x3e\xfa\xa2\x6b\xa2\xcb\xf3\xa7\x26\x07\x8d\x17\xcd\x4a\x92\x04\x52\x16\x37\x44\x7c\x6a\x46\xa1\x79\x76\x52\xcc\x69\xf4\xcc\x9b\x6f\xbe\x19\xbc\x12\xfc\xa4\x91\x05\x60\x9d\x73\xd1\x78\x71\xce\xc5\xe3\xd1\x96\xdc\xf4\x68\x54\xee\x5d\xd9\x9a\xbe\x79\x63\x75\xf1\x66\x49\xce\xf2\x63\x66\xb5\xd7\xa2\xe9\x05\x69\x08\x1b\x93\xc5\x70\xec\x99\x3b\x5e\x02\x89\xa1\x00\x00\x20\x00\x49\x44\x41\x54\x7c\xc3\xf5\xfe\x52\x34\x97\x64\x35\x7c\xab\xa2\x72\xc9\x54\x51\xc1\x02\xaf\x93\x25\x13\x88\xde\x15\xe9\xfa\x89\xde\x9c\xea\x24\x92\x71\xb4\xb2\x3e\xcb\x9e\x7c\x68\x77\xfc\xdb\x8f\xdf\x98\x3c\x3d\x99\xd7\x47\xa4\x9d\x73\x79\xf8\x03\x1a\x5f\xd8\xc6\xd6\xd6\x16\xa7\xda\x26\x8c\xad\xde\x30\x11\x34\x98\xbe\xf0\x29\x2f\x60\x5b\x07\xbd\x53\xdc\x80\x3e\xd3\xd3\xf2\xb5\x29\x84\x2e\xaf\x61\x2a\xbf\x06\xd3\x16\xa7\xe1\xeb\x53\x3f\x29\xba\x1a\x5c\x5b\x1d\xb7\xe5\x6b\x53\x36\x29\x99\x91\x86\x85\xf6\x2c\x67\x72\x92\x46\x4a\xd6\x78\x9a\x66\xc0\xb4\xd5\x77\x8a\xbe\x8c\x97\xbc\x48\x9e\x52\xa1\xab\x00\x24\x40\xdb\xbf\xcc\xa9\xf4\x10\x6c\x02\x4e\xe3\x45\xe2\x95\xfa\x38\x95\xaf\xeb\x39\xbc\x4b\x5e\x52\xe3\x04\x0f\x29\x79\xe8\x2a\xb3\x84\x35\x00\xcc\xe6\xe6\xa6\x01\xea\xfd\x1c\xc1\x7b\x1d\x3c\x2f\xce\x39\x13\xfe\x40\xce\x38\xc0\x58\x02\xf8\xfd\x2b\x14\x15\xbd\x8b\xaa\xb7\xf6\x95\xc3\x2f\x09\x35\xbf\x29\x17\xc7\x21\xf8\xb1\x81\xdf\x07\x16\x27\x9e\xa8\xbc\x27\x60\x06\x88\xbc\x51\x37\xd0\xf0\x78\x1b\xae\x7e\x6f\xbc\x44\x60\x82\xb5\xe4\x8a\xd2\xb8\xc2\xf1\x31\xab\xbe\xb3\xa6\x51\x7e\x00\xf8\xd2\x97\xbe\xc4\xdb\xa4\x6f\x3f\xe0\xcf\xa9\x3e\x70\x1a\xd9\xe8\xea\xeb\x10\x79\xb5\x78\x00\xcd\x0b\xe8\xb4\x01\xab\xaf\xe2\x93\xa1\x8f\xb5\xae\x0d\x16\x6d\x30\xf6\xa7\x3f\xfd\xa9\x7d\xe1\x85\x17\xf8\xda\x9d\xbc\xdb\x85\xdf\xeb\x32\xf5\x17\xd3\x4d\x0b\xe3\x8e\x6f\xae\x16\x57\xaf\x6c\xcd\x7e\x7e\x32\xb0\xb7\x00\x34\x56\xd1\x48\x1a\x18\xd1\x5b\x52\xdb\xd3\x8d\x4b\x89\x84\xa4\xb1\x5b\x0d\x63\x70\xde\x4d\x58\x1b\x17\xc1\xc2\x46\x74\x95\x70\xcb\x3e\x3c\x35\x84\x37\xe0\x0e\xab\x46\x72\x7d\x89\xaf\x6c\x79\x41\xcf\x2c\x6d\x6c\x4d\xf3\x8f\x3e\x7a\x6b\xf2\x5f\x1e\xde\x1d\x7f\x28\x2f\x69\x05\xd5\xda\xee\x90\x88\xe2\xe5\x74\x61\xa9\x28\xb8\x19\x7b\x6e\xe0\x3a\x8d\xd7\x41\x83\xed\xe3\x85\xd3\xdc\x8a\x9a\xcb\x91\xc7\xa7\x14\xa5\x11\x70\x32\x8f\x46\x5b\xca\x63\xc0\xcd\x69\x77\xd5\x55\x8a\xef\x36\x99\x57\x5d\xa2\x22\x2d\xe4\xed\x03\x27\x79\xd2\x78\xd4\xea\x47\xe2\x91\x79\x52\x38\xb4\x20\xf1\x18\xb4\xe3\xd5\xca\x25\xe1\xb9\xfc\x68\xf0\x32\x5e\x4e\x82\xb4\x7a\x4c\xf1\xdd\xc6\x8b\x66\x4c\xa5\x60\xb4\xd0\x85\x3b\x15\x17\x82\xa4\xab\x95\x47\xf2\x20\xeb\x42\x1a\x75\x5d\xf4\x0d\x74\x9c\xa9\x3a\x48\x95\x5b\x2b\x53\x8a\xbe\x2c\xb3\x2c\x9b\x05\x80\xfd\xfd\x7d\xfb\xec\xb3\xcf\x9a\xe7\x9f\x7f\xde\x02\x4d\xfd\x19\x7e\xc3\x9f\x03\xb0\xc8\x6c\xb1\xc8\xec\xd4\xc1\x15\xdc\x3c\x21\x84\x65\x1c\xa6\x77\x7d\xe0\x9e\xf8\xa6\x9e\xf6\xf9\x1c\xbb\x12\xc3\xcf\x44\xc3\x84\x38\x40\x2d\xe9\x77\x27\x3d\xf2\xd1\xd7\x23\x96\x7b\xc8\xff\x23\x38\xc0\x16\x99\x9b\x4e\x73\x3b\xc5\xb2\xf1\x10\xf0\x1b\x36\x4e\xe2\x9b\xdf\xfc\x66\x57\x3f\xee\xd2\x35\x52\xbe\xda\x64\x56\xca\x25\x3a\x70\x68\x32\xa3\xe9\xb6\x98\xd6\xd6\xa9\x24\xb0\xf6\xde\x15\xaf\x85\x3e\x56\xb4\x7c\x8e\x30\x1f\xfa\xd0\x87\x64\x5c\x28\x34\x5f\x2a\x2a\x00\xcc\xa3\x01\x43\x98\x4e\x07\xe5\xc1\xe5\xad\xe9\x2f\x6e\xac\xce\xdf\xac\xbe\x61\x14\x36\x61\x61\xc9\x5b\xb2\xbc\x85\xc5\x31\xe3\xa1\x86\xd0\xdd\x7f\xae\xbe\x49\xd7\x7b\x62\x1a\x97\x11\xc5\x10\x3e\x06\x10\x6f\x80\x59\xbe\x0e\x9a\x43\x37\x76\xa5\x3b\xc6\x23\xa1\x3e\xa6\x4d\x20\x90\xa9\xf6\xbb\xe4\x9f\xf8\xf5\x6b\x2b\xbf\x7d\xee\x70\x70\x0f\x1c\xc6\x70\x8d\x25\xa3\xf8\x89\x77\x8f\xbb\x31\x5b\x11\xe1\xb4\x06\x6a\x57\x38\xad\x6c\x9d\x06\x67\x57\xbc\xec\xac\x40\xb7\x3c\xa6\x06\x36\xf9\x7e\xa7\x46\x7e\x57\xb8\xd3\x7a\xd2\x66\xac\x92\x97\x0f\x52\xe7\x29\xa3\xa7\x8d\x9e\x8c\xeb\x33\x41\x92\xb4\xa4\xfc\xc8\xd9\x9c\x6c\xd7\x94\x91\x29\x65\x41\x33\x6c\xba\x78\xd2\xca\x2e\x79\xd0\xf8\xd2\x68\x4b\x1c\x5d\xb4\x65\x7e\xcd\x00\xe0\x30\x9a\x9e\xd5\xfa\x43\x1f\x9a\x1a\xfe\x3e\x38\x52\x38\xa5\x21\xd5\xa7\xbf\x2c\xc9\x31\x3b\xf6\xcb\x3d\x2d\xf1\x3d\xfc\x5a\x02\x66\xb9\x2b\x8e\x87\xf6\xb0\x34\x6e\x0a\x2c\x7b\xcb\x97\x36\xb9\x20\xd8\x22\xb5\xd7\x24\x2e\xe1\xb0\x5b\x70\xeb\xbd\x88\xc1\x53\xce\x26\xa6\xdc\x43\xef\x71\x35\xc6\x1e\x57\xd3\x68\xb0\xe1\x5c\x63\x6c\xb0\xe4\x8a\x69\x6e\x0f\x0e\xc6\xc5\x7e\x83\x65\x9e\x4f\x19\x9b\xbc\xd7\x25\x04\x4d\xe6\xba\x64\x86\xe7\xd3\x8c\xde\x14\xce\x3b\x91\x8b\x14\xaf\x46\x12\xd7\x98\x6b\x0b\xa7\x51\xa0\xfc\x39\xa5\xe4\x53\xd6\x7f\x23\x14\x45\x81\x60\x55\x33\x57\x58\xb4\xda\xfc\x92\xd1\xdc\x2f\x17\x4d\xe1\x97\x8c\x4a\xc2\xf1\xcd\xd5\xc5\xfb\x97\xcf\x4c\x5f\x39\x1a\x96\xb7\x1c\x60\xc3\xe8\xef\x1a\x86\x40\xf0\xca\xa5\x4c\x99\xda\x0b\xd3\xb0\x94\xf9\x9e\x17\x92\x0f\x01\x1e\xf5\xf2\x12\x88\xad\x91\x36\x3b\x4e\xc3\xc3\x13\xd3\x42\x27\x14\xde\x1e\xce\x55\x8d\x2c\x1f\x16\xe6\xfe\x7b\x6e\x0f\x7f\xf7\x37\xae\xae\x7d\x72\x5c\x34\x6f\xd5\x0d\x47\xe8\xbc\xf7\x25\x6e\xec\x02\x96\x8c\x17\x4d\x39\xb7\xb9\x05\x21\xd2\x34\x81\xd6\x9e\xdb\xe0\x34\x3c\x6d\x71\x29\x98\x54\x5a\x6a\x46\x77\x5a\xda\x1a\x0e\x39\xa8\x82\xbd\x4b\xf8\x3e\x83\x55\x8a\x5e\x1f\x1c\x92\x97\x54\xfb\xb5\xe1\xd3\x06\x4c\x8d\x1f\xfe\xac\xf5\x77\x6d\x96\xae\xf1\x01\x91\x9e\xa2\xa3\x19\x33\x32\x68\xe5\x4e\xb5\x77\x8a\x6f\xad\x0d\x53\x6d\x9b\x6a\x67\x0d\x5f\x17\x4e\xad\x2c\x29\xe3\x47\xf2\xdd\x55\x67\x3c\x4d\x93\x89\x94\x61\x04\x05\x9e\xa7\xb7\xb5\x9f\xac\x63\x59\x6e\xde\x56\x3c\x5f\xa7\x91\xf7\xec\xb3\xcf\x86\xef\x13\x35\x80\xb8\xe7\xc5\xc1\xd9\xd2\xb8\xe2\x78\x50\x1e\x2c\x8c\x3d\x06\x1a\x2b\xff\x88\xef\xfc\xf8\x50\x48\x27\x8a\x86\x85\xf3\x0a\xbd\xb1\x2f\x31\xd2\x0a\x4b\x50\x7c\xbc\x90\xe3\x06\xb1\xff\x19\x13\x6c\x73\x70\xf0\xb4\xd7\x4b\x52\x0e\xa5\xc1\xfc\x70\x54\xde\xb8\xb5\x52\xec\xa1\x1a\xf3\x2c\x50\xaf\x3e\x78\x1e\xac\x34\x5e\x98\xd7\x45\xd3\x49\x3c\x68\x7a\xb3\xcd\x88\xe9\xd3\x17\x38\x5c\x8a\x56\x97\x01\x1c\xf9\xee\xa3\x2c\xb5\x5f\x0d\x26\x05\x97\x9a\xd9\x48\xc1\x6c\x1b\x20\x63\xdc\x95\x2b\x57\xa2\xd1\xe2\x2f\xd9\xe1\xae\xa6\xf0\x89\x6f\xf9\x19\x80\x63\x10\xa6\x45\xe6\x8e\xdf\x3a\x33\x7d\xfd\xc6\xea\xe2\x17\x45\xe6\xe6\xcc\x29\xd7\xb0\x7a\x99\x4b\x4e\x0d\xf5\xde\x97\xda\x8a\x27\x72\xcd\x1b\x79\x3d\xb2\xb8\x1c\xe4\x9a\x31\x70\x95\xe0\xf3\x3d\x36\xce\xfb\x19\x2b\x61\x75\xc2\x46\x61\x47\xe3\x38\x9e\x60\xdf\x3b\x86\xbd\xe2\x7f\x38\x5e\x98\xc7\x1e\xdc\x1b\xfd\xf1\xc5\x2b\xeb\x1f\xc9\x2d\x85\xaf\x48\x0f\x83\xc1\xc2\xbf\x26\xaa\xdc\xaa\x0b\xe8\xca\xaa\xcf\x2c\x8d\xb7\x49\x0a\x27\x7f\x96\x0a\x4c\xa6\x49\x81\xb6\x4a\x1e\x49\x53\x7b\xd6\xd2\x52\xbc\x19\xb4\xd3\xd6\xf8\xd6\xca\xa0\xe5\xd7\x68\xf6\x31\x66\xb4\x01\x5a\xe3\x47\xd2\xd6\xf2\x6b\x83\x5f\x1b\x4f\x5a\x38\x4d\xfb\xa6\xe0\x8c\xf8\x6b\x33\x42\xb4\x01\x3a\xa5\x4b\x64\xba\xe4\xa7\x2d\xad\x4d\x11\xa7\x06\x71\x09\xaf\x95\x57\xa3\x29\xf9\x6d\x83\x4f\x19\x5d\x29\x19\x4c\xf5\x29\x8d\xf7\x90\x9e\x6a\x2b\x29\x6b\x29\xbe\x53\x21\xd5\x3e\x1a\x3f\x1a\x4c\xdb\xe0\x07\xa0\x32\x5a\xc2\x56\x02\x79\x1a\x87\xef\xf7\x00\x00\x4b\xce\x1e\x8e\xec\xed\x79\xee\x0e\x1a\x48\x1a\x13\x50\x36\xad\x74\xdc\xc0\x08\xbe\x72\xa0\x31\xa9\x65\xc7\x8d\xb8\xc3\x26\xdc\x86\x1e\xf5\x7c\xa0\xc3\xbc\x2d\x91\x2c\xb1\xf1\x21\xee\x83\x71\xdc\x00\xb2\xf3\xcc\x1e\x1e\x8c\xca\x1b\xfb\x93\xe2\x30\x5c\x36\x17\xca\xc8\x7f\x79\x3d\x7c\xe1\x0b\x5f\x48\x19\x08\x29\x9d\xc2\xdb\xa0\x2d\xad\xcb\x18\xed\x32\xe0\x53\x72\xd0\xa6\x33\x3a\x97\x8a\x34\xc2\x3c\xbe\x6d\xc6\xa0\x05\xad\xd2\x52\xf8\x25\x0f\x0d\x38\xee\x16\x14\xf8\xe4\x09\xa3\x69\xf8\x73\x84\xe3\x1b\x6b\xc5\xb5\x37\xb7\x4f\x5e\x39\x18\x95\xd7\x2c\xa1\x08\xa3\x7e\xc3\xea\x5d\x7e\x6c\xc6\xf9\x3d\x2d\xf1\x53\x01\xd1\x92\xae\x2d\xec\x00\x1b\x97\x83\xa4\xb5\x4d\xcc\x20\x69\xb8\x4f\xea\x65\x9f\x80\x57\x7a\x77\x1a\x3b\x6a\xc2\xfe\x1a\x6a\x60\x02\xc1\xc1\x80\x86\x2b\xf3\xec\x63\x4f\xdc\x98\xfc\xb7\xff\xf4\xfe\xca\x13\xc3\x92\xd6\xc0\x4e\x1a\x51\xf3\x63\x8c\xda\xec\x49\x86\xb6\x19\x5b\xdb\x20\xd7\x35\x00\xf6\x85\xb9\x1b\x79\xee\x36\xee\x2e\x63\xe8\x83\xd0\x4e\x0d\x3a\xa7\x8d\x6b\x8b\x3f\x0d\xdc\x07\xc5\x9d\xca\xab\x19\x52\x3c\xbd\xcb\x70\x96\x71\x9a\x31\x22\xd3\x4f\x53\x77\x29\xf8\x3e\xf9\x4e\x43\x53\xd3\xbb\x5d\x03\x4d\xdf\x70\x1a\x23\x4b\x83\xe9\x6b\xa0\xa4\x68\xa7\xda\x58\x96\x27\xa5\xd7\xef\x84\x7e\xc4\x19\x26\xb9\x61\xa0\x2f\xc9\x15\xb7\xc7\xc5\xc1\xc9\xd0\x5e\x03\xa0\x6c\x5e\xe1\x68\xea\x1b\xd1\x03\xac\x73\xd4\x30\x44\x1a\x1e\x7a\xb1\x37\x26\xde\xf1\xc5\x51\x8b\xc1\x25\xee\xb3\xe4\x87\x36\x62\x9e\x30\x16\x38\x58\x42\x71\x32\xb0\x7b\xfb\xe3\xc5\xb5\x45\xe6\xe6\x60\xf5\x23\x26\xf1\x8d\x3a\xf0\xc7\xa1\xfb\x8c\xf7\x3c\xae\xef\xc4\x29\x95\x2e\x9f\xdb\xfa\xc0\xa9\xe4\x5a\xbb\xf2\x9f\x87\x30\x6e\x1a\xf6\x2c\xd3\x42\x3a\x2f\x0c\xf7\xbc\x19\x05\x06\x2c\x4d\x63\x34\x45\xa7\x11\xfc\x85\x74\x00\xaa\x4b\xe9\x00\x10\x85\x1b\x77\xaa\xcd\xa7\x84\xca\xb3\x90\x11\x51\xe6\xcb\x3b\x98\x0d\xdc\x62\xeb\x24\xdf\x58\x9f\x65\xf7\xe4\x96\x46\xc1\x52\x96\x32\xcb\x3d\x21\x5c\xd8\xe4\xc2\x51\xb8\xaa\x3f\x64\x8a\xd7\xfe\xb3\x0b\xe4\xe0\x82\x71\xd1\xbc\x94\x8e\x5c\xd3\x95\xc8\xf1\x06\x84\xf2\xbb\xd5\xfc\x72\x3b\x9e\x40\x0d\xfe\xe2\xff\xd9\xb0\xa4\xf3\x2b\x8b\xcc\x9e\x0c\xed\xd5\xa3\x51\x79\x54\x1a\x58\x8f\x8a\xd7\x7d\x78\x77\x3b\x3b\x3b\xc4\x3e\x0b\x10\xd2\x0c\x7b\x06\x9a\xed\xca\x7f\xa1\x3c\x93\x02\xc3\x43\x4a\x66\xd0\xf1\xae\xd1\xd4\xd2\x52\xa1\x8d\xee\x9d\xe0\x4e\xe5\x97\x38\xa4\x67\xba\x4f\x1d\xa5\xe8\x68\xf1\xda\x6f\x6d\x47\xb7\xf3\x97\xc2\xd5\xc5\x43\x57\x7d\x11\x6a\x65\x48\x48\xd7\x85\x86\x9b\x12\x7f\x9c\x06\xc7\x23\xcb\x1a\x70\x12\x83\x25\x91\x4f\x6b\x9f\xa0\x9f\xf8\x3b\x44\x9a\x06\x2f\x07\x7b\x59\xf6\xb6\x7a\x90\x30\x9c\x5e\xaa\x7e\x79\x9d\x00\x7a\x39\xa5\x4e\x35\x0c\x96\xc4\xb3\x96\x4f\x96\x37\x95\x37\x3c\xf7\x29\x6f\x5b\xbc\x2c\x67\x0a\x27\x00\xd0\xe6\xe6\x26\xfd\xe0\x07\x3f\xb0\xfc\x02\x3a\x54\xe3\x02\xa1\xd2\xfb\xb9\x1f\x03\x06\x00\x86\x20\xca\x0b\xe3\x86\xdb\xc7\x83\xb3\xdb\x27\x83\x47\x8d\xc3\x70\xf9\xaa\xd0\xb4\xb0\xd4\x07\x7f\xc2\x49\x22\xaa\x01\x58\x45\x00\xa8\x27\xad\x00\xc4\xea\x53\x0d\xa7\x18\x4c\x4b\x17\xda\x81\xb0\xc8\xdd\xd1\xf5\xb5\xf9\xab\xbf\x38\x77\xf2\xa3\x83\x51\x71\x8b\x88\x4e\x9c\x73\x33\x7f\x77\xd9\xc2\x5f\xfb\x5f\x7a\x03\xcd\x85\x25\xa3\x17\x5f\x7c\x31\xa0\x0a\xf5\xd6\x57\x96\xb4\x7e\xda\x25\x03\x52\xe7\x68\xf8\xfa\xea\x42\x55\x4e\x34\x0b\xcc\x28\xbf\x21\xa3\x36\x2b\x97\xf0\x80\xde\x79\xfb\x58\x52\x6d\x33\x7f\x93\x78\x06\x10\x6f\x09\xe4\xd6\xe7\xd2\xd1\x68\xff\x77\x7c\x30\x2a\xf6\xde\xde\x9a\xbe\xb6\x3f\x29\xde\x2d\x8c\x9b\x4b\x71\x6d\xee\x6f\xa9\xad\xdf\x10\x1d\x2f\x22\x82\x6e\x6d\x03\x88\xae\xc1\xd8\xf3\x79\xb3\x35\x90\x57\x7f\xb5\x30\x3b\xee\x2d\x84\xec\x4c\xf5\x09\x22\x6f\xf0\xc4\xf5\x56\xb0\x25\xac\xc6\xa7\xcd\x91\x59\xda\xd8\x3e\x1e\xfc\xee\xd3\xef\xad\xfe\xaf\xf7\xed\x8f\x1e\x1e\x16\xd5\x49\x23\xb0\xcd\xba\xfe\xaf\x71\xcf\x8b\xd8\xef\xa2\x5a\xf2\xca\xaf\xf6\xdc\x65\x4d\xa7\x70\x77\xbd\xf7\xe5\x27\x15\xda\xe8\xde\x09\x6e\x39\x13\x91\xf5\xa7\xd1\x94\x71\x7d\xf9\xd6\xfa\x88\x15\xe9\x92\x66\x6a\xa6\xd4\x85\x2b\xc5\x83\xc6\x93\xa4\xcb\xe9\x9b\x96\x67\xce\x47\x9f\x59\x59\xaa\x7e\x53\xef\x32\x2e\xc5\xbf\xe4\xaf\x2b\xbf\x8c\x6b\x2b\xa3\xf6\x2c\xcb\x93\xa2\xdf\xa5\x53\x53\x32\xc4\xdb\x1c\xec\x59\x93\x0d\x0d\x87\x46\x53\x93\x65\x2d\x6f\xdf\x32\xa6\xe4\xa1\x6f\x5d\xd9\xfd\xfd\x7d\x7b\xee\xdc\x39\xf3\xc2\x0b\x2f\xd8\xc6\x45\x9e\xe2\xf4\x69\x78\x76\x80\x9d\xe5\xf6\xf8\xbd\xf5\xf9\xdb\xc7\x03\x7b\xc3\x01\xd6\x01\x4b\x57\x58\x34\xb4\xaf\x4f\xa3\x70\xd9\xa8\xb7\x42\xa2\xb5\x4c\x40\x38\x38\x11\x70\xf1\xc9\x64\x30\x78\xea\xed\x02\x72\xa4\x69\x86\xa6\xd1\x02\x38\x38\x3b\xcd\xcb\xbd\x9b\xab\x8b\x77\x6f\xae\x2c\xf6\xfc\x18\x17\xc6\xba\xe8\x4d\x0a\xdb\x28\x7c\xdc\xd2\x7e\x1f\x56\x97\xfc\x39\x25\x0f\x12\x1e\x4a\x5a\xaa\x6d\x24\x3e\x8d\xa6\xec\xff\xbd\xfa\x8b\x14\xe6\x94\xd2\x91\x0c\xa7\x14\xb2\xfc\xd5\x14\x22\xd0\xad\xa0\xda\x60\x0d\x00\x9b\x65\x99\x79\xfe\xf9\xe7\x6d\xd8\xa8\xab\xf0\x18\x8e\x46\xcb\xfd\x2e\x53\x6b\x70\xfc\xee\xd6\xec\xad\xab\x1b\xf3\xd7\x8e\x07\x76\xcf\xc2\xd9\xe6\x6e\xd8\xca\x44\x5e\x6a\x6e\x5a\x16\xec\x90\xe0\x98\xa1\x52\x09\x29\x3b\x89\xe4\x6a\x41\x8e\xe6\x37\x0b\xb5\x81\xe3\xb7\x09\x37\x8d\xf7\xc6\x5d\x01\x31\x6d\x09\x8d\x8b\x0c\xf2\x0f\x3d\x86\x93\x46\xc3\x82\x2e\xdc\x7b\x38\xfc\x9d\x5f\xbf\xb6\xf2\x5b\xf7\xde\x1e\x3e\x38\x28\x1b\xc6\x8b\x34\x60\x42\x3d\x47\xe3\xe5\x91\x47\x1e\x49\x19\x94\xbf\xac\xf0\xab\xa4\x75\xb7\x43\x9f\x3e\x70\xb7\x68\xdc\x49\x7a\x9b\x22\x92\xa1\x8d\x7f\xcd\xe0\x90\x65\xee\x53\x7e\x6d\xb0\x4c\xe5\x4b\x0d\xd6\x6d\x46\x8c\x96\xaf\x2f\x4f\x6d\xf1\x9a\x1e\xeb\x93\xaf\x0f\xfd\x3b\xe5\x29\x84\xb6\xc9\x62\x6a\x40\xea\xa2\x73\x5a\x18\xce\xcb\x9d\xe4\x93\xf0\x1a\x9e\x18\x77\x70\x50\x6d\x57\x09\xc6\x8a\x80\x0b\x46\x4b\xb5\x8d\x80\x50\x58\x83\xf9\xb5\xf5\xf9\xd5\xfd\xc9\xe2\x4a\x69\xaa\x3d\x8f\xb5\x5e\x95\x97\xbe\xd5\x69\x71\x63\x41\x58\xa6\x77\x68\xc0\xf2\xbb\xbe\x62\xbc\x13\x07\x40\x7c\xfa\x92\x3b\x4c\x19\x47\x42\x28\x8d\x9b\x1e\x8c\xcb\xf7\x6e\xae\x2e\xae\xcc\x72\x77\x8c\x6a\x62\xce\xb7\x46\x2c\xb5\xab\x30\x5a\x52\x75\x79\xda\xfe\xaa\xe1\x4b\x19\x26\x6d\x36\x40\x9b\x1d\xd0\x1a\xf8\x52\x91\x74\x27\x72\x02\xd2\xa5\x2a\x09\x69\x6e\x24\x8e\x4f\xe2\x4d\xd1\xb1\x2c\x3d\xd0\x95\x78\x2d\x00\x38\xe6\x52\xf0\x4b\x46\xce\xc7\x47\x37\x21\x82\xdd\xe0\x97\x8d\xfc\x6f\x06\x20\x5f\x18\x07\x00\x66\x7d\x9e\x6f\xae\x2e\xb2\xcd\xdc\xd1\x90\xfb\xf9\xa4\x91\x1a\x97\x78\x08\x71\x09\x08\xde\xa2\x0e\x5e\x90\x86\xcf\x8c\xfb\x07\xe1\xad\xde\xb0\xbc\x43\xb5\x8b\x31\x54\x5e\x30\x32\x80\xe6\x52\x52\xf4\xba\x70\x7a\xac\xd2\x6b\x1c\x1e\x7f\xdc\xf3\x22\x0b\x40\x26\x77\xb4\x3e\x2c\xcc\xc4\x38\x3a\x3a\x1e\x96\xbb\x27\x03\x3b\x75\x26\x2a\x7f\xe9\x4a\x8e\x6d\xbe\xb3\xb3\x43\x5b\x5b\x5b\x98\xcd\x66\xd8\xdd\xdd\xe5\x75\x9b\x9a\x30\x74\xb9\x02\xa5\x2b\x51\x83\xd5\x60\x78\x7e\xed\x59\xe2\x6b\xc3\x21\xe1\x52\xbc\xa5\x70\x4a\x9e\x35\x3a\x48\x94\x2f\x45\xbf\xab\x7c\x1a\xff\xa9\x20\xcb\x90\x72\x0d\x6b\xf9\x38\xac\x2c\x03\x4f\xb3\x09\x18\xb0\x67\xae\x2b\x38\x8e\x54\x9b\x84\x3e\xce\xd3\x35\xf9\x90\xe5\x03\xd2\x65\x6c\x93\x85\x36\x3a\x0d\x9d\xa3\xe4\x4f\xc9\x02\xaf\x3b\x8d\x0f\x40\xa7\xc3\xe1\xc3\xb3\x94\x43\x59\x5e\xc9\x93\x96\x2e\xcb\xa6\xc9\x69\xaa\x3f\x72\x3c\x72\xe0\x4b\xb5\x77\xaa\x2f\x4b\x1e\x90\xe0\x57\x96\x8d\xc7\x4b\x1e\x23\x4f\x59\x96\xd1\x57\xbf\xfa\x55\x62\xf7\x97\x18\xff\xbd\xa2\x86\xee\x47\x75\xb2\x72\x00\xd0\x70\x9e\x3b\xb3\x39\x1d\x6c\x6c\x9d\xe4\xf7\x0f\x4b\xb3\x4a\xf5\xdd\x12\x5e\xdf\x7a\xad\xec\xea\xcf\xb5\x34\xf4\x30\xd3\xfd\xce\x05\xbd\x5b\x1b\x34\xb5\xf1\xc1\x3e\xf7\x52\x0d\x00\xf1\x4e\x19\x5e\x01\x6c\x08\x8a\x1e\x9d\x80\xe3\x64\x60\x77\xdf\xd9\x9c\xbd\xf2\xc6\xf6\xf4\xe5\xe9\xd0\xee\x03\x38\x26\xa2\x23\xe7\xdc\x0c\xd5\x17\xa2\xc3\x52\x51\xe1\xc7\x47\x57\x15\x3d\x2e\x15\xf1\x76\xe6\x75\x19\xda\x4c\x8e\xf3\x5a\x3d\xf7\xd1\xa7\xa4\xe0\xd6\x9e\xb5\x7e\xd6\xf6\x1c\xe9\xc9\x3d\x2e\x5a\xc7\xe2\xc6\x44\xac\x53\x91\x4f\x1b\xf4\x52\x4a\x97\xbf\xf3\x02\xb7\x75\xfa\xc0\x87\xaa\xa8\x3f\xf6\xb1\x8f\x91\xa9\x56\xbd\xf8\xc7\x17\xa3\x4c\x84\xbd\x2e\x5e\x70\x0d\x00\xe3\x08\xd9\x74\x60\x8b\x71\x61\x46\xeb\xb3\xec\xcc\x78\x91\xad\x67\xd5\xf7\x2b\x82\x04\xd6\xbd\xc9\xa1\xf9\x1e\x04\x35\x1a\x24\xcd\x9e\x57\x0b\x71\xe0\x38\x5c\x66\xc4\x04\x95\x02\xa2\x7a\xcf\x78\x10\x7c\xe7\x11\x05\x38\x4f\x9e\x6f\x5a\x6f\x74\x98\x3a\x04\x3c\xda\x71\x40\x00\xa0\x7c\x60\x69\x73\x54\x98\x11\x08\x47\x27\xc3\xf2\xd6\xc9\xc0\xce\x1c\xd5\x6d\xcc\xf2\x36\x8c\x97\x95\x95\x15\x7c\xe7\x3b\xdf\xb1\x2c\xbe\x6d\xd0\xe4\x0a\x4b\xca\x82\x4c\x93\xef\xcd\x02\xe9\x46\x55\xea\x59\xe2\xd3\xe2\x25\x2d\x1e\x4f\x02\xbe\x0d\xa7\x86\x47\x2b\x43\x1b\xac\xa4\xdf\x55\x3e\xc9\x7f\x9b\x01\xc3\xeb\x4e\xc3\x93\x6a\x3f\x39\xe0\xa4\x78\xed\xd3\x8e\x9a\x1e\xb0\x0a\x5c\x78\xe7\xfa\x86\x3f\x73\x78\x3e\x10\xf3\x32\x4a\x63\xa4\x4d\x16\x24\x6c\xc3\x9b\xab\xc0\x73\x9a\x1a\xdf\x3c\x9f\xe4\xaf\xad\xfe\x64\x5e\x0e\xa7\xc9\xa2\xd6\xa6\xa9\xfa\xe7\xb8\x65\xd9\x64\xdd\xf2\x7a\x90\x3c\x69\x46\x1a\x44\xbc\x84\xe1\x83\x12\x2f\xaf\xa4\xa3\xb5\x5f\x9f\x7a\x90\x65\x03\x50\x19\x2e\xff\xfa\xaf\xff\x6a\x2f\x5d\xba\xe4\x2e\x5e\xbc\x18\x0d\x18\xbf\xc7\x91\x00\x64\xde\x80\xc9\x89\x68\x00\x42\x6e\x0d\x72\x47\xa0\xad\x93\xfc\xec\xca\x22\x3b\x9b\x59\x0c\x89\xc8\x4f\x4e\xf9\x85\x71\xac\xa2\xbc\xb2\x76\x2c\x81\x18\x4c\x63\x2c\x08\x09\xec\x4b\xba\xe4\xf3\xd5\x28\xfd\xa9\x23\xa2\x7a\x12\xec\x6a\xa3\x09\x00\x0a\xe3\xa6\xbb\x2b\xc5\x5b\x6f\x6c\x4f\x7f\x7c\x75\x73\xfe\x56\x49\xee\x90\x88\x8e\x00\x9c\x50\xf5\x7d\xbe\xb9\x73\x6e\xe1\x8d\x96\xb0\xbf\xc5\x01\x70\xe2\x20\x8b\x26\x4b\x48\xfc\x6a\x6d\x9f\xea\x03\x52\x1e\x34\x59\x02\xf4\xf6\xe3\xc6\x49\x17\xac\x01\x60\xbb\xbe\x0e\xad\x29\x37\x5e\x08\x6d\xd6\x26\x3d\x25\x12\x2f\x7f\xd7\x0c\x23\xa9\x04\x34\xcb\x8c\xe3\x33\x3f\xfc\xe1\x0f\x6d\x10\x54\x04\x43\xb8\x1e\x80\x83\xb5\x4d\xfe\x39\x27\xff\xc5\xd0\x22\x73\x28\x0d\xdc\xca\x3c\x5b\x5d\x9b\x65\x5b\x83\x92\x56\xe0\xbc\xbf\x23\xc8\x1a\x98\xdc\x01\xf5\xc7\x13\x01\x70\x4f\x08\x84\xd0\xf2\xa3\xfa\x4b\x06\x07\xbc\x81\xe2\x8d\x97\xe6\x3a\x68\xfd\xd5\xe7\x60\xcd\x10\xa8\xf1\xe1\xd0\x68\xce\x52\x5d\x4e\x07\x34\x3c\x3f\x01\xa9\x73\xcd\x2f\x57\x1b\xd0\x30\xb7\xb4\x31\x2a\x4d\x6e\x09\xb7\x8f\x87\xe5\xde\x34\xb7\x73\xd4\x4b\xb5\xa5\x17\xf8\x28\x88\x7e\xd6\xe2\xc2\x86\xdd\x47\x1f\x7d\xd4\xec\xed\xed\xa5\x2c\xec\x46\xdb\xb0\x2a\x91\xf1\x52\x8e\xb4\xfc\x5a\xbb\x6b\x46\xb0\xcc\xdb\xe6\x51\x21\xa4\xf1\x42\xc0\x6a\xf2\xdf\x56\x86\x54\xdf\xd0\xf8\xe9\xf2\xda\xb4\xf1\x29\x3b\xb6\x56\xb6\xae\x36\x69\x33\x78\xb4\x3a\xd0\x3c\x0a\x6d\x6d\xd7\x35\xb3\x43\x0b\xac\x2c\x17\xa7\x63\x15\x78\x2e\x63\xda\xcc\x9c\xd3\xd1\x74\x93\xe6\x59\xe1\xf1\x1c\x9f\xd6\x3e\x52\x77\x49\x7c\x1c\x67\xaa\xcc\x5d\xb2\xdf\xc6\x87\x26\x03\xb2\xae\x52\xf5\xc6\xf5\x6c\x17\x2c\x2f\x8f\xa4\x23\xe3\xb5\x25\x7f\x29\x97\xbc\x9c\x92\x9f\xae\xb6\xd4\xca\x4f\x3b\x3b\x3b\xf4\x47\x7f\xf4\x47\x7c\x2c\x08\x13\xd7\x30\x69\xcd\x00\x84\xc3\x1a\x43\xe7\x5c\x3e\x1b\x58\x37\x2c\xcd\x68\x63\x96\x9f\x1b\x15\xd9\x9a\xb1\x94\x85\x49\x27\x71\xee\x02\xb1\xb0\x21\xd7\xcf\x2a\xf5\x9b\x24\x58\xbc\xb7\x60\x08\x35\x4e\xaf\xda\xa3\x07\xdf\x51\x5d\x8c\x30\x36\x84\xec\x16\xce\x1e\x8e\xec\xf5\xb7\xce\x4c\x7f\xf2\xe6\xf6\xf4\xff\x3b\x1a\x97\x37\x88\xe8\x18\xc0\x91\x73\x2e\xde\x55\x06\xbf\x35\xc2\x23\x2a\x51\x2d\x8d\xe1\xec\xd9\xb3\xf4\xfa\xeb\xaf\x4b\x39\xe1\x6d\xac\xe9\x02\xcd\xe8\xd5\xfa\xbc\xd6\xb7\x53\x32\x98\xb2\x09\x34\xf9\x4e\xb5\xb5\x85\xe2\x71\xe1\x4c\x6b\x4a\x4d\x76\xfc\x94\x61\x93\xca\x27\xf1\x76\x19\x46\xb2\x13\x48\xeb\x0f\x00\xe8\xd3\x9f\xfe\x34\x9d\x39\x73\x06\x59\x96\x45\x9c\x4c\x70\x83\xd1\x02\xff\x6c\x50\xb9\x0b\x33\x00\xd9\x3c\xb7\x65\x6e\x69\xb8\x36\xcb\x37\x57\xe7\xd9\x66\x06\xca\xa3\x1b\x90\xb0\xe4\x5d\x89\x96\x31\xc0\x8e\xc8\xf1\x4b\x88\x3c\x53\x54\x0b\x66\x60\x2a\xb6\x0c\x21\x1a\x1a\x1c\xae\x32\xf2\x69\x39\x5f\xc3\x3a\x47\xf8\x7c\x51\x0c\xc4\x90\x50\x20\xe0\x33\xf3\x4e\xe0\xfb\x0f\x8c\xa5\xc9\xd0\xd2\xe6\xb0\x34\x59\x69\xdc\xee\xd1\xb0\x3c\x98\xe5\xae\xf0\xc6\x4b\xb4\xd4\x59\x5d\x46\x43\xe6\xe2\xc5\x8b\xf4\xdd\xef\x7e\x57\xb3\x8a\xe5\x80\xa0\xcd\x24\xc1\xf2\xc8\xdf\x2e\xb8\x94\xcc\xf1\xbc\x72\x56\x20\xe1\x25\x6c\x6a\x56\xc0\xf3\xa5\xfa\x82\x56\x86\xf0\x2b\x67\x83\x1a\x3f\xb2\x6c\xb2\xbe\x64\x1e\xad\x3c\x26\x91\x57\x2b\x6b\x57\x5d\x07\x7c\x92\x6f\xad\x0c\x1a\xff\x6d\x74\xfa\xe8\x8c\xbe\x32\x90\xaa\x27\x52\xe2\x52\xb8\x34\x2f\x50\x57\xd9\x52\x7f\x12\xbf\xe6\x7d\xd1\x68\x73\xbe\x35\x6f\x72\x17\x0f\x3c\x9f\x51\xe2\x4e\x2b\x5f\xa9\xfe\x90\xe2\x4f\xa3\xcf\xe9\xc9\xd0\x56\x1e\x39\x41\x4d\xc1\x6a\x74\xe2\x20\xe7\x9c\xa3\x77\xdf\x7d\xd7\xbe\xf8\xe2\x8b\x6e\x67\x67\x87\x42\xf0\xf0\xc6\xff\x11\x11\x65\x7e\x02\x9b\x13\x51\x5e\x1a\x64\xf3\xcc\x95\x6b\xb3\x6c\x6d\x6d\x9e\x6d\x0f\x4b\x9a\xc4\x73\x49\xbe\xa4\x75\x81\xdc\x92\xee\x75\xc2\x43\x1f\x21\x1d\x1a\x9e\x72\x82\xfc\x62\xb5\x2f\x00\x85\x81\x8e\x5d\x9b\xe1\x08\xe1\x9b\x7a\xb3\x81\xbb\xfd\xee\xe6\xec\x95\xd7\xcf\x9f\xfc\xe4\xfa\xda\xe2\x4a\x49\xee\x10\xd5\x32\x51\xf0\xb6\xcc\xfc\x3e\xce\x70\x8f\x59\x19\x3c\x2e\xcf\x3f\xff\xbc\x7d\xfd\xf5\xd7\xfb\xf4\xdd\x10\xb8\x7c\x4a\x03\xbc\x4f\xdf\x96\x72\xa6\xf5\x2f\x19\xfa\xf4\xab\x06\x9d\xd4\x52\x51\xca\x0a\x93\xc2\x93\x0a\xd2\xc2\x92\x05\xd3\x70\x6b\xf4\xad\x92\x67\x69\x76\x70\xf9\xf2\x65\xb7\xbe\xbe\x4e\xeb\xeb\xeb\xc8\xb2\x8c\xef\x71\x09\x81\x80\xea\x68\x1c\xb3\xbe\x09\x80\xb1\x06\x59\x91\xd9\x72\x54\x98\x95\x8d\x59\xbe\x35\x2e\xcc\x5a\x58\x70\x8a\x03\x7e\xdc\xa1\xee\x99\xa6\x4a\xc8\x22\xe2\x60\xb4\xa0\x29\xa8\x95\x90\xb3\x5b\x57\x42\xc9\xc2\x4f\x78\x16\x46\x0e\x37\x32\xa2\x2b\xd2\x01\x7c\x9f\x4d\x4d\xbb\x7a\xa2\x06\x1c\xab\xc1\x80\x8f\xe1\x07\x39\x64\xce\x4c\x46\x85\xd9\x18\x96\x86\x4a\xe3\x6e\x1d\x8d\xed\xc1\xc2\xb8\xc2\x1b\x29\xda\xe6\xbd\x8a\x25\xe6\x79\x51\xda\x0f\x02\xbe\x2b\xb4\xc9\xc2\x9d\x84\x36\x99\x6a\x83\xed\xea\x54\xa9\xd0\x07\x77\xdf\xd0\xd5\x27\xb4\xf7\xf0\xdb\x55\x87\x7d\xf9\x49\xd1\xe9\x1b\x4e\x53\xff\xd2\x78\xe8\xd2\x2d\x5c\x37\xc8\x7c\x29\xda\x7d\xf8\x4c\x95\xf9\x4e\xf9\xe6\x79\x34\x5e\x35\x03\x40\xc3\x97\x9a\x05\x6b\x6d\x2e\x07\xfc\x00\xab\xc1\xa4\xf0\xa5\xea\x24\x25\x5b\x7d\x60\x34\x5a\x5a\xbd\x4a\x1e\x52\xed\x90\x1a\x60\x97\xf8\xf0\x86\x0b\xc7\x51\xcf\x1b\x89\x32\xf2\x9f\x3c\x09\xfb\x5e\xa6\x03\x6b\x09\x44\xab\x73\xb3\x31\x29\xb2\x8d\xcc\xd2\xa0\xb1\xdf\x85\x23\x40\xd8\x85\x48\xcc\x2b\x2f\xcd\x96\xe6\xe4\x33\xe4\x63\xe8\x6a\x9c\x3e\xb2\x71\x53\xaf\x1f\xc2\x0a\x83\xf9\xf5\xb5\xc5\x2f\x5e\x3b\x7f\xf2\xc3\x77\x36\x67\xff\x36\x1f\xb8\x7d\x22\x3a\xf6\x1e\x97\x63\xe7\xdc\x89\x37\x5a\x66\xa8\x0c\x96\x32\xd4\x0b\x11\xb9\x27\x9f\x7c\x92\x5e\x7e\xf9\xe5\x94\x1c\xf3\x31\x35\x25\x07\x12\xa6\xab\x8f\x48\x18\x8d\x86\xc6\x4b\x1f\xdc\x31\x3e\x13\x11\xa9\xf5\x67\x0d\xa6\x8d\x11\xa9\x60\x64\x5a\x9b\x00\x07\xf7\x60\x6a\x7d\x5b\x5d\x03\x7f\xfb\xed\xb7\xdd\x8f\x7f\xfc\x63\xf7\xcc\x33\xcf\x68\x6e\x26\x00\xd1\x84\x36\xec\x2f\x03\x60\xe6\x79\x75\xda\x7f\x6d\x9e\x6d\xac\xcf\xb2\xed\xdc\xd1\xb0\xf6\xae\x20\xba\x05\xfd\xc8\x5d\x0b\x20\x93\xc2\xe8\x35\x89\x71\xae\xe1\x4a\x8c\x46\x0d\x83\x8b\xf0\x9e\xcb\xa6\x71\x53\x7b\x78\xa2\xc1\x14\x2c\x72\x6e\x84\xa0\xb9\xc1\x2b\x18\x5b\xdc\xd5\x19\x8d\xa0\x46\x85\x10\x65\x0e\x2b\xa3\xc2\x6c\x8d\x8b\x2c\x5b\x64\xf6\xd6\xe1\xb8\xbc\x5d\x98\xda\xf3\x22\xeb\x98\xc5\xb9\x9d\x9d\x1d\x7a\xea\xa9\xa7\xe8\xa5\x97\x5e\xea\x52\x36\xda\x3b\x67\x25\x25\x4f\x5a\xc7\xd2\x14\xba\x14\x7a\xf9\xdb\x57\xa1\xb6\xa5\x9d\xc6\x63\xd8\x87\x8e\x2c\x87\x34\xc6\x25\x0d\xe9\x59\x91\x41\xc3\xdb\x35\xc0\xf6\x51\x40\x5a\x19\xfa\xd4\xbf\x36\xc9\x90\xb4\xe4\xc4\x46\xc2\x6a\x5e\x11\x09\x93\x1a\x88\x53\xf2\xa7\x95\x33\xe5\x15\x91\xed\xc1\x07\x3f\xae\x94\x49\xc0\xa6\x8c\x85\x54\x7d\xf2\xf2\x87\x3c\xa9\xe5\x71\x97\xc8\xa7\xd5\x9b\xe4\x4b\x83\xe1\xf8\x53\x03\x4c\x57\x3d\xca\x31\x21\x25\x1f\x7d\xda\x58\x1b\xec\x52\xf2\xa3\xc9\x7c\xc4\x19\xbc\x2e\x68\xb6\x99\x01\xa2\xd7\x3d\x18\x2f\x39\x11\x65\x0e\x2e\x3f\x19\x96\x73\x00\x76\xb2\x30\x2b\x93\xc2\xac\x67\x96\x86\x7c\xe2\x59\x55\x6a\xad\x48\xeb\x09\xa6\x9f\xb8\x2e\xed\x2d\xf4\xe7\x8b\xa2\xbe\xae\x06\x94\x86\xfe\x07\xff\x8d\xe6\x10\x00\xa0\x24\x57\xec\xaf\x2c\xde\x79\xfd\xdc\xc9\x8b\x6f\x9e\x39\xf9\xd9\xe1\xc8\xde\x00\xe1\xc8\x39\x77\xc4\xf6\xb7\xcc\xfc\x95\x1f\x65\xd8\x94\x4b\x44\x25\xf9\x63\xd1\xaf\xbf\xfe\x3a\xde\x7e\xfb\x6d\xad\x7f\x4a\x0f\x57\x9b\x8e\x93\xfd\x4f\x56\x41\x4a\x66\xa4\x4d\x91\xd2\x49\x6d\xb8\x65\x70\x40\xbd\x54\x94\x12\x28\xad\x33\x48\x65\x93\x1a\x50\x52\x33\x23\x59\x38\x08\x18\x59\x91\x3c\x48\x81\x96\x79\x71\xe9\xd2\x25\x2e\xb0\xc4\xf2\x81\xc5\x65\x8d\x5f\x42\xb6\xc8\x9c\x35\x8e\xf2\xcd\xe9\x60\x6b\x65\x91\x6d\x12\xc8\xc4\x25\x23\xb8\x7a\x83\xae\xab\xc4\xb1\xf6\x96\x78\x33\xc0\x4b\x67\x74\xfb\x39\xff\x81\x2d\xf2\x66\x8e\xa3\x08\x53\xe5\x43\x14\xe8\x48\xc7\x31\x4e\x39\x90\x67\xb2\x61\x8c\xc7\x4e\xe1\x69\x38\x17\x97\xb0\x1a\x9e\x1c\xf8\x3d\x2e\x0d\xdc\x55\x3e\x02\x8c\x71\xb4\x36\x2e\xb2\x73\x2b\x8b\xcc\xcc\x72\xfb\xde\xed\x71\x79\xcc\x2e\xa8\x73\x6c\x77\x3a\x6f\x37\x02\xe0\x86\xc3\x21\xc4\x25\x75\x50\x9e\xb5\xf7\xd0\x66\xa9\x65\x89\xf0\x2e\x71\x6b\x83\x95\x54\x76\x6d\x03\x85\x16\x34\x25\x2b\xf9\x3b\x2d\x4e\x1e\x52\x33\x43\x0d\xaf\x56\x3e\x0d\x2e\x65\x6c\xf1\x3e\xaa\xb5\x47\xaa\x8d\x4e\x53\x57\xa9\xfa\xd7\xca\xc0\x07\x64\xd9\x6f\x35\xc3\x2d\xc5\x6b\xdf\xb6\x95\xf4\x52\xf9\x43\x48\xe9\x11\x4e\x87\x1b\x27\x5a\xbd\x72\xdc\xfc\x9d\x1b\x22\x6d\xfc\xca\x7a\xd3\x94\xb9\xd4\x87\x5a\x1d\x6b\xf5\xc7\xf3\x6b\xf5\xc0\xd3\x35\xbd\x2e\xeb\x85\xb0\x5c\x46\x75\x62\x23\xf2\x68\xed\xd7\xd6\xff\x53\x65\x92\x46\x12\xaf\x33\x99\xd7\xb1\xd3\xa6\xf1\x74\x51\x58\xda\x61\x1e\x97\x70\x41\xa9\x29\x33\xe0\x70\x54\x4e\x1d\xc1\x4e\x16\xd9\xca\xb8\xc8\xd6\x32\x87\x41\x30\x25\xf8\x58\x40\x4c\x8f\xd7\x85\xa4\x46\xcf\xae\x6e\x4c\x0f\xc6\x8c\x87\xa2\x65\xaf\x79\xfc\xad\x86\x09\x00\x0e\x96\x60\xf7\x26\xc5\x3b\xaf\x9d\x3f\xb9\xf4\xda\xb9\xe9\xcb\x07\x93\xe2\x7d\x67\x70\x1b\xf5\x49\xa2\x60\xb4\xcc\x88\x68\x4e\xd5\xa5\x73\xe1\x5e\x17\x07\x54\x9b\x72\xbd\xd1\xc2\xeb\x05\x1d\xf5\xaa\xb5\xbf\x94\x1f\xb0\x77\x39\xb9\xe5\x41\xca\xbd\x66\xc8\xa7\xe4\x2e\x35\x01\x23\xf8\xcd\xb9\x9a\x32\xe1\xbf\x9c\x31\xc7\x32\xf3\x4e\x06\x85\x79\x4d\x71\xb4\xcd\x6e\xfb\x0c\x76\x5a\xc7\x5b\x52\x48\xfc\x78\x74\xc8\xe7\x05\x37\x76\xa6\x20\xac\x1e\x87\x29\x8c\xa3\xd2\x38\x8c\x0a\x33\x3c\x73\x32\xb8\x30\xb0\x34\x5e\xba\xbe\xdf\x5b\x18\xc1\xeb\xc2\xd7\x35\xc3\xfd\x2b\xdc\x36\xa8\x8d\x9a\xb0\xd9\xb6\x79\x4d\x74\xc3\xb0\x00\xc4\x5e\x14\x5a\xa2\x19\xf2\x06\x7a\x95\x91\x52\x7f\x7e\xa0\x69\xeb\xa3\xf9\xc9\x74\x61\xbb\x10\x05\xfe\xc9\x64\x16\xab\x93\xc2\x9c\x5f\x9b\xe5\xe6\x68\x68\xdf\xd9\x9f\x14\x47\x3e\x8f\xf3\xde\xa6\xa4\xc2\x0e\xcb\x46\xa3\xd1\xc8\x94\x65\xa9\xb5\x59\xaa\xcd\x65\x1b\xa5\x94\x65\x17\xbe\xd4\xec\x3b\x15\x52\x46\x39\xc4\x7b\x0a\x5f\x17\x9f\x6d\x33\x56\x1e\xd7\xa7\x4f\xa4\xe8\xb6\xe5\xeb\x5b\x0f\x7d\xe8\xa4\x3c\x14\x6d\x83\xb1\x0c\x72\xf2\xa0\x29\x26\xcd\xeb\xc6\xe9\xa4\x26\x41\x5a\xdd\xcb\xf5\x74\x6d\xd6\x1e\x82\xa6\x47\x34\xaf\x84\xc4\x27\x79\xd7\xda\x26\xcc\x68\xdb\x26\x84\x1c\x67\xdb\xc0\xad\x4d\x2c\xb9\x41\xd0\x36\x3b\xe5\x3c\x6b\x83\x3e\x4f\xef\xd2\xaf\xbc\xed\x78\x7b\xa6\x66\xcf\xbc\x1e\x24\xdf\x5d\x13\x65\xcd\x8b\x95\xaa\xf7\xa5\x09\xf6\x97\xbf\xfc\x65\x1a\x0c\x06\xcc\xc0\x20\xb0\xad\x02\xf0\x46\x8c\xf1\x8f\x19\xaa\x13\x47\x54\xe4\x70\x87\xc3\xf2\xc4\x19\xd8\x95\x45\xb6\x3a\x2a\xcc\x9a\x71\xc8\x81\x70\xe2\xa7\xbe\xac\x22\x7a\xb7\xc3\x45\x74\x14\xbe\x49\x44\x71\x72\x59\xeb\x6d\x62\x07\x29\x9c\x3f\xb5\xe4\xe2\x31\x6b\x07\x20\xac\x3b\x39\x82\xdd\x9b\x2c\xae\xfc\xec\xde\xe3\xff\xf7\xe7\xe7\x4f\x5e\xda\x9f\x14\xd7\xfc\xbe\x96\xa3\xb0\x29\xd7\xff\x86\xbd\x2d\x73\x20\x7e\xd6\xc0\x79\xaf\x8b\xfb\xf8\xc7\x3f\x4e\xe3\xf1\x98\x2e\x5f\xbe\xcc\xdb\x4f\xb6\x6d\xca\x18\x94\x21\x25\xeb\x5d\xf2\x9c\x32\x46\xb4\x3e\xdd\x68\x43\x11\x17\x64\x86\x80\x6a\xa9\x48\x53\xb2\x5a\x41\x91\x88\x4b\x31\x1f\x18\x92\x86\x8f\x2c\x8c\x56\x58\x19\x34\xeb\x1d\x29\x78\x76\x1c\xae\x51\x61\x7c\xbb\x15\x55\x2d\x6c\x00\x7f\x4c\x9a\x60\xe6\xb9\x2d\xcb\x0c\xb4\x31\xcd\x57\x36\xa6\xf9\x79\xe3\x28\xab\x84\x93\x80\xda\xe3\x10\x03\x8f\x91\x5e\x93\xf0\x99\x00\xe9\xf5\x20\x9f\x31\xe6\x75\xb5\xa5\xde\x38\x15\xc4\xac\x8c\x86\x01\xe5\x18\xed\xd0\x39\xd0\x34\x5a\x9a\xe9\xcd\x8a\xd3\x42\x65\xbc\xd0\xfa\xa4\xc8\xee\x3f\x73\x92\x0f\x0e\xc6\xe5\x2f\x6e\x8f\x8b\x19\x28\x39\x9b\x0a\xef\x0e\xa8\xea\xfb\x6b\x5f\xfb\x1a\xdf\xf7\xa2\x09\xab\x8c\x97\x82\x2e\xe3\x52\x1d\x82\xe3\x4c\x29\x38\x0e\x2f\x65\x44\x2a\x67\xc9\x1f\xa7\xad\x19\x17\x29\x7c\x21\x7f\x9f\xa5\x54\x8e\x47\xab\x1f\xed\x17\x58\xa6\xd3\xd7\xd8\x43\x07\x4c\xca\x48\x90\x65\xe7\x93\x94\xd3\x28\x2b\xb9\x59\x4f\x1a\x33\x72\x30\x0b\xf1\xda\xf2\x90\xd6\xff\xa5\xe2\xd3\x8c\x22\x6d\x70\x97\x7a\x85\xf3\x93\x3a\x61\x64\x05\xac\xd4\x87\xda\xec\x95\xe3\xd4\x64\x9d\xcb\xae\x81\x5e\x17\x9c\x27\x5e\xa7\x46\xc1\xc1\xf9\x96\xb4\x65\x3d\x71\xb5\x20\xbd\x4f\x50\x60\x1d\xfb\x93\x83\x0b\x2f\x1f\xa7\x99\xe2\x5b\xd6\x87\x94\x03\xbe\x41\xf8\x54\x74\x5e\x7a\xe9\x25\xcb\x97\x8b\xfc\xd5\xff\x71\xff\xa3\xd8\x07\x49\xac\x8c\xa6\xc8\x51\xde\x1e\x95\x87\xc7\x83\xf2\x30\x2f\xc9\x4c\x8a\x6c\x2d\xb7\x66\xc4\x37\xeb\x06\x3d\xdd\xb8\x2a\xc3\xc1\x6f\x2b\x08\x70\x62\x99\xa9\xf6\xf6\x44\x05\x2d\x3d\x2f\xa5\x71\xc5\xcd\xd5\xe2\x8d\x1f\x3f\x70\xf8\xfd\x7f\x3b\x7f\xfc\xb3\xc3\x71\x79\xc3\x7b\x5a\x8e\x00\x44\xe3\xc5\x39\x37\x25\xa2\x19\xfc\xde\x16\x54\x97\xd1\xf1\x6f\x32\xe1\x87\x3f\xfc\x21\xfe\xe5\x5f\xfe\x45\x5b\xf2\xe4\x75\xc9\x4a\xd4\x68\xef\x36\xbd\xa9\xf5\x09\x08\xdc\x32\x9f\x66\xcc\xa6\xfa\xbd\xa6\x17\x1a\xfa\x92\x2f\x15\xa5\x18\xe6\xa1\x8f\x71\xc2\x2b\x49\x2a\x9a\x10\xba\x06\x38\x0d\x37\x17\xe4\x64\xc8\xb2\xcc\x7c\xf6\xb3\x9f\xa5\x73\xe7\xce\x85\xa8\x20\xb0\x12\x67\x70\x1d\x1a\xf8\x25\x23\x07\x64\x45\xe6\x4a\x4b\x8e\xce\x9c\x0c\xce\x8e\x8b\x6c\xcb\x70\xe4\x2e\x08\x60\x5d\x08\xde\xda\xdc\x58\x00\xd5\xeb\x9d\xd1\xac\x60\xe2\x11\x7b\x69\xbd\x1e\x55\x19\x3c\xa8\x8f\x2f\x3b\x00\x70\x1c\x4f\x8d\xa3\x3e\x2e\x27\x8c\x16\xc7\xd2\xb8\x21\x84\xa6\x75\xaf\x18\x31\x94\x39\x5a\x1d\x17\xe6\x81\x33\x27\x39\x0e\x26\xe5\x95\xa3\x41\xb9\x70\x06\x25\x83\xe1\xb3\xa7\x48\x31\x7c\x33\xaa\xc7\xb2\x51\xaa\xed\xa4\xb0\xa7\xe0\x9d\x80\x95\x46\x54\x4a\xce\xba\x70\x86\xc0\xe5\x58\xa3\xa3\x85\xd3\x96\xb5\x4f\xfe\x54\xf9\x52\x70\xa7\xa1\x99\xaa\x93\x3e\x38\x4f\x03\x17\x82\x66\xd8\x05\x11\x94\xa7\x5c\x90\x78\xef\x32\x40\xa4\x42\x96\xc6\xa9\xc6\x87\x1c\x08\x1d\x96\x69\xf3\xb2\xa4\xe0\x65\x48\xc9\xac\x1c\xf4\x43\xe0\xc6\x60\x1b\x1d\xc9\x93\x2c\xaf\xd4\x8d\x1a\xbc\xf4\xe0\xc8\x36\x80\x48\x97\x7c\x2c\xf5\x7d\x01\x0f\x86\x53\x1b\xe8\x52\x3c\xa5\x9e\xef\x98\x4e\x9e\xe7\xc6\x5a\xeb\x76\x76\x76\xc8\x7b\x20\x82\x1e\x8d\x77\x7d\x79\x23\x22\xac\x3a\xf0\x73\x44\x28\x32\x94\x07\x93\xf2\x78\x77\x65\xb1\x5b\x66\xee\x64\xbc\xc8\xc6\xc3\xc2\xac\x10\xa8\x31\x24\x04\xf5\xed\xfc\x0b\xd7\xab\x8d\xe7\xa0\x8b\xd9\x04\xd8\xf9\x78\x47\xd5\x7e\x96\xa3\x51\xb9\xf7\xf6\x99\xd9\x8f\x5f\x7c\xe8\xe0\xfb\x6f\x9f\x99\xfe\x62\x3a\x70\xb7\x1c\x70\x08\xc2\x6d\x00\x87\x44\xc4\xf7\xb6\x2c\x00\xcc\xc3\xb7\x89\x3c\xba\x32\x94\xf1\x85\x17\x5e\xb0\x57\xaf\x5e\x95\xf5\xaa\xd5\xa5\x94\x1f\x59\xf7\xbc\x38\x5a\x5f\x6c\x5b\xee\xe7\xf9\x64\xde\xb6\x7e\xaf\xf1\xe4\x38\xbe\x8c\x65\xd2\x66\xb3\x6d\x82\xaa\x09\x1b\x27\xa8\x15\x46\x1a\x3e\x29\xdc\xd1\x48\x85\xbe\x71\x47\xe2\x8a\xcf\xce\x39\xf7\xd6\x5b\x6f\x39\xfe\x01\x46\x51\xe8\xe0\x32\xe4\xb4\x08\x7e\xa3\x6e\x69\x1c\x2d\x32\xe7\x06\x96\x68\xfb\x24\xbf\x77\x60\xcd\x38\x52\x0c\xf6\x87\xc7\xa8\x19\x30\x35\x28\xc5\x34\x96\x75\xe9\xf4\x10\x0f\x8e\xe5\x6b\x60\x0a\x74\x94\xbc\xdc\x70\xaa\x79\xaa\x8d\x1f\x8e\x87\x47\x35\x1a\xd6\xc5\x0e\x45\x99\xa3\x95\x71\x91\xdd\xbb\x36\xcb\x16\xc7\xa3\xf2\xfd\xe3\xa1\x9d\xdb\x1e\xc6\x0b\x50\x2d\xd1\xb5\x9c\x36\xea\xe3\x0d\x08\x70\xda\xe0\xf4\xab\x08\xff\x1e\x34\xff\x3d\xc2\x9d\x4c\x50\xee\x34\xa4\x8c\x07\xd9\xc6\x29\x0f\x97\x84\x4d\xe9\x93\x36\xdc\x6d\x38\x34\x83\x46\x86\x94\x47\xaa\x6b\xc2\xd7\x35\x31\x0b\xf1\x9a\x97\x4e\xab\x8b\x3e\xe5\x4d\xf1\xa2\xc1\xb7\xf1\xd4\xb7\x5e\xfb\xe0\x4e\xf1\xd7\x87\x8e\x1c\x6b\x24\x4d\xb5\x5d\xad\xb5\xf4\xa7\x7f\xfa\xa7\xf4\xd7\x7f\xfd\xd7\x36\x1c\x8d\x06\xe2\x05\x9b\x51\x0d\x7a\xaf\x7c\xd8\x4a\x60\xf9\xd2\x92\x25\xd8\xe9\xc0\xcd\xf7\x27\xc5\xc1\xe1\xa8\xdc\xcb\x1c\xca\xdc\xd2\x20\x73\x94\x53\x65\xa6\x34\x76\xfe\x71\xa7\x7c\x1c\x13\x1c\xaa\x63\xcd\xb4\xac\xd9\x01\x87\xd2\xb8\xe2\x64\x68\x0f\xae\xad\xcf\xdf\xfc\xe9\xbd\x47\x2f\xbe\x7c\xff\xd1\x4b\x37\x56\x16\x57\x17\x39\x76\x01\xdc\x66\x46\xcb\x31\x80\x13\x00\x53\xe7\xdc\xdc\x7b\x5b\x16\xde\x68\x09\x77\xb6\x38\x00\xfc\xa3\x8a\xb2\x2e\x9b\xc4\x97\xeb\x32\x55\xf7\x48\xa4\xa7\x70\xa7\x3c\xd4\x7d\xe0\x35\xd8\x25\x1c\xda\x95\xff\xd2\x02\xd2\x82\x86\x50\x8b\x93\xcc\xa9\x1b\x6a\xb1\x5c\x50\xfe\x2c\x67\x0a\x6d\xb4\x01\xc0\x6c\x6c\x6c\xd0\x0f\x7e\xf0\x03\xcb\xf6\xba\x04\xe3\x04\xf0\x86\xb5\x77\x1d\xc6\x75\x4e\x54\x36\x83\x71\x00\x15\x99\x73\x8b\xcc\x96\x6b\xb3\x6c\x65\x63\x96\xdf\x43\x0e\x59\x3c\xfe\x2c\x2d\x06\x68\x46\x00\x4b\x73\x88\x9e\x12\xe7\xf3\x3b\xd4\x16\x38\xbf\xf7\x25\x1a\x1c\x3e\x8d\x18\x7c\x40\x56\xad\x95\x62\xc9\x98\xe1\x97\xe5\xf1\x4f\xa3\x73\xa3\x4a\xce\x06\xf8\x5f\xb8\x58\x0f\x95\xf1\xb2\x36\x2e\xcc\xb9\x49\x91\x15\xb3\xdc\xee\x9d\x0c\xcb\x93\x82\x1a\x9b\x74\xad\xaf\xbf\xb8\x69\x97\x5f\x52\xf7\xd8\x63\x8f\xd1\x2b\xaf\xbc\x12\xda\x4e\xb6\x41\x4a\xc1\x6a\x33\x66\x99\x26\x8d\x9a\x94\x0c\xc9\xa0\xc1\x69\x38\x53\xf8\x4e\x63\x74\x9d\x86\x07\xed\xb9\x4f\xe7\xee\x3b\x60\xa6\x7e\x53\x79\xb9\xbb\xb6\x6b\x00\x4f\xf1\x9d\xe2\x93\x4f\x42\xe4\x33\xd7\x3d\x61\x02\xc5\x71\xb4\x2d\xdb\x70\x18\x89\x9b\xe3\x00\x9a\x32\xa8\xc1\xa6\xca\xa5\x2d\x6f\x48\x7e\xdb\x70\x6b\xc6\x49\x57\x9d\x68\xcb\x64\xa7\x29\x7b\x17\x2f\xb2\x5e\xb9\x3a\xe8\xe2\xa9\x0f\x6e\x28\xf5\xd3\xa7\x0c\x1a\x8c\xc4\x97\x2a\x43\x23\xfd\x67\x3f\xfb\x99\xfb\xfc\xe7\x3f\x6f\xd6\xd7\xd7\x01\xc4\x8b\x34\x83\xa7\xc5\xf9\x67\x07\x00\xfe\x91\xbc\x67\x26\x7a\x69\x1c\xa1\x5c\x64\x6e\x76\x38\x2a\x8f\x6e\xac\x16\xb7\xf6\xc7\xc5\x0d\x47\x58\x10\x08\xe4\x28\xf3\x6a\xd3\x68\xcb\xf5\xa1\xd4\xfc\xea\x0c\x0b\x87\x92\x50\xcc\x72\x3b\xbd\x3d\x2a\x6f\xbe\xbf\xbe\x78\xfb\x8d\xb3\x27\xaf\xbc\x7a\xef\xf1\x4b\x57\xb6\x66\x6f\x1c\x8e\xca\x1b\xa5\x71\x7b\x00\x8e\x40\x74\x08\xe0\xd0\x39\xc7\x8f\x3f\x4f\x89\x68\xea\x3d\x2d\x0b\x54\xba\x38\x5e\x36\xe7\x9c\x73\x2f\xbc\xf0\x82\x7d\xfa\xe9\xa7\xcd\xf5\xeb\xd7\x53\x7d\xa1\xaf\x9c\xb6\x8d\xbb\x52\xee\x52\xf8\xda\xe0\xb5\xb6\x6f\xeb\xc3\x51\x36\xb4\x0b\xe8\xda\x14\x69\x1f\x85\x9b\x52\xaa\x32\x4e\x33\x3c\xb4\xc1\x44\x53\x60\x29\x5e\x1d\x00\x9a\xcd\x66\x76\x6b\x6b\xcb\x7c\xff\xfb\xdf\xb7\xec\x84\x91\xa4\xcb\x8d\x96\xb0\xeb\x3c\x03\x21\xb3\x04\x9a\xe7\xce\x39\x03\x7b\xe6\x38\x3f\x3f\x59\x64\x5b\x41\xfc\x1a\xdf\x8f\xf0\x46\x83\xf3\x67\xa0\xab\xfd\xae\xc1\x22\x61\x86\x4a\x30\x42\x7c\xfe\xb8\x61\x8b\x20\xf2\x54\x80\x7c\x13\x3a\xd0\xb4\xba\x2a\x3a\x7e\x41\x89\x19\x38\x8e\x2f\x4d\x05\x1c\x80\x38\xb2\x2d\xac\x2a\xbf\x11\x87\xbc\x85\xc3\x36\x1c\x9b\xcc\xd2\xc6\xa4\xc8\xb6\xc7\x85\x71\x0b\xe3\x0e\xa6\x03\x7b\x5c\xe4\xb5\xcb\xd1\xcf\x4e\x88\xbd\x47\x83\x63\x32\x99\x84\x65\x23\xde\x7e\xfc\x19\xe2\x59\xbe\xa7\x64\xa5\x0d\x47\x92\x35\x5a\x6c\x00\x00\x20\x00\x49\x44\x41\x54\x9b\x61\xa1\x0d\xda\x9a\xbb\x53\xc2\xf5\xc1\x2d\xe9\xf4\x49\x6b\x7b\x4e\x19\x15\x5a\x9e\x14\xbd\x25\x59\x47\xbf\x32\xc9\x36\x4b\xa5\xb7\xf1\x2d\xbd\xad\x21\x4e\x3e\x4b\x7c\x50\x60\x65\x7d\xc8\x7c\x6d\xf1\x6d\xcb\x22\x5d\x65\xd1\xca\xd5\x56\x46\xa7\xa4\xf7\xe5\x55\xe3\x5b\xd2\x91\x3a\x30\xc5\x53\x78\x06\x96\x97\xd7\xb5\x67\x8e\x23\xd5\x5f\xdb\xda\x4c\x1a\x10\x1c\x9e\xcb\x9c\x36\x38\xb6\xc9\x73\x17\xdf\xa9\x32\x2c\xd5\xcf\xab\xaf\xbe\xea\x2e\x5c\xb8\x40\x1b\x1b\x1b\x0d\x83\x04\xa8\x75\x71\x18\xf0\x99\x57\x26\x7c\xe3\x27\x7e\x49\xba\xc8\xdc\xe2\x64\x58\x1e\x1f\x4c\xca\xc3\x9b\x6b\xc5\xcd\xfd\x71\x71\x6b\x3a\x28\x6f\xcf\x73\x3b\x5d\x64\x6e\x5a\x1a\x37\xb7\xe4\xac\x25\x58\x6b\x5c\x61\x8d\xb3\x96\x5c\x69\xc9\x95\x85\x71\x8b\x79\x6e\xa7\x27\x03\x7b\x78\x38\x2a\x77\x6f\xad\x16\x57\xdf\xd9\x9c\xbd\xf1\x8b\x73\x27\xaf\xbe\x7e\x6e\xfa\xb3\x2b\x5b\xb3\xb7\xf6\x56\x8a\xab\xd3\xdc\xed\x5b\x72\xb7\x89\xe8\x08\x44\x61\x5f\x4b\x30\x5a\xa6\xa8\x36\xe3\x06\x4f\x4b\x01\xa0\xe4\xd7\xfb\xfb\x67\x5c\xba\x74\xc9\x5d\xbf\x7e\xbd\xad\x2f\xa4\xea\x52\x1b\x27\xc1\x60\xba\xe4\x2e\xf5\x9c\x6c\x1f\x85\xc7\x36\xbe\xe3\xb3\x76\x01\x9d\x74\xc7\x49\xe1\x50\x11\x29\xc4\xb4\x99\x23\xcf\x2f\x15\x56\x10\x70\x39\xc3\xd1\x0c\x98\xb6\xca\xb5\x00\x30\x9d\x4e\x1d\xd0\x38\x61\xc4\xf9\xe1\xcb\x99\x04\xc4\xb3\xfd\x15\x3d\x42\x6e\x8d\xc3\x3c\xb7\xc5\xb0\x34\xf9\x99\x93\xc1\xbd\x79\xe9\x4f\x19\x45\x63\xa2\x36\x12\x3c\x42\xcf\x44\x7d\x24\x59\x2e\xeb\xc4\x2f\x7d\x86\x0d\x5c\x9e\x2b\x9e\x27\xbc\x55\x3b\xd4\x03\xce\xda\x98\xa9\x8c\x1e\x66\xa0\x34\xaa\x97\x9f\x72\x42\x7d\x0f\x0d\x10\x8f\xf0\x55\x24\xd8\x07\x23\xbd\x91\xc5\x0d\x18\x10\xc1\x80\xb2\xdc\xd2\xd6\x64\x9e\x6d\x8d\x4b\xe3\xca\x0c\x87\x27\x83\xf2\x78\x91\xb9\xb0\x9e\xca\x03\x6f\x0f\x02\x20\x2f\xa9\xd3\x06\xe2\xae\x70\x27\x79\xdb\x60\xdb\x06\x27\x09\x97\xc2\x73\x27\xe5\xb8\x93\x90\xa2\xd1\x35\x59\x48\x05\xad\x2f\x76\x85\x0f\xd2\x66\x29\xda\x5d\x7c\xa4\x60\x53\xf9\xe4\xa4\x8a\xf7\x75\xd9\xef\x35\xb8\xbe\xa1\x8b\x17\x93\x48\x97\xba\x4a\xab\xd3\x54\xde\x94\x7e\xec\xaa\x1f\x69\x88\x6b\x65\xd0\x68\x74\xf1\x94\x9a\x29\xa7\x78\xd1\xfa\x18\x89\xf7\xd4\x44\xb8\x8b\x6f\x89\xb3\xf5\xf9\xdf\xfe\xed\xdf\xe2\xd1\x68\x65\xb2\xe5\x1f\xe3\xb3\xf5\x11\x61\xe9\xa5\x04\xc1\x82\x60\x1d\xa1\x28\x32\xb7\x38\x1e\x96\x47\xb7\x47\xe5\xfe\xad\x95\x62\xf7\xc6\xda\xe2\xfd\x1b\xab\x8b\xeb\xbb\x2b\xc5\x8d\x83\x71\x79\xeb\x70\x5c\xde\xda\x1f\x97\xb7\xf6\x27\xc5\xf5\xfd\x49\x71\x73\x7f\x52\xdc\xb8\xb9\xba\x78\xff\xea\xc6\xec\xf2\x95\xad\xd9\x1b\x6f\x6f\x4f\xdf\x78\x7b\x7b\xfa\xc6\x95\xad\xf9\x2f\xde\x5f\x9f\xbf\xb3\x3f\x29\xde\x9f\xe6\x76\xcf\x9a\x6a\x2f\x8b\xdf\xc3\x72\x08\xc4\xfb\x5a\x4e\x50\x19\x2d\xe1\x6a\xff\x45\xf8\x26\x91\xe7\xd5\x52\x75\x5b\xae\x05\x00\xf1\x5d\xa2\x54\x9d\xa5\xea\x58\x4e\xf2\xb5\xf1\xb7\xab\x6d\x8c\x78\x3f\x0d\xfd\x94\x67\x87\xbf\x57\xed\x88\xbb\x17\x34\x8f\x48\x2a\xbe\x6f\x1c\x4f\x0b\x21\x05\x93\xa4\xfb\xdc\x73\xcf\x99\x70\x76\xdf\xa7\x85\x2f\x84\xe6\x00\xc6\x44\x34\x06\x30\x76\xce\xad\x11\xd1\x9a\x73\x6e\x83\x40\x1b\x99\xc3\xd6\xf9\xc3\xe1\x43\x9f\x78\x7b\xe3\x77\x1f\xd8\x1b\x3d\x3d\x2c\x69\x25\xe1\x10\x6c\x7e\x54\x91\x10\x4f\x15\x55\x76\x81\x76\x97\x4a\xc8\xc7\xf6\xa3\x38\xd4\x4b\x36\xd1\xa8\x81\x4f\x40\x65\xf0\x88\xe6\x0e\xb8\x1b\xc7\xaa\xd9\x33\xb0\x4c\x56\xa6\x73\xa0\x60\xf0\x84\x64\x0b\x37\x3f\x19\xd8\x9f\xbf\xb7\x31\xfb\xbf\x5e\x3b\x77\xf2\x7f\xbf\x7d\x66\xfa\xda\xd1\xc8\x1e\xa0\xea\x44\xfc\x2f\x74\x1e\xeb\xeb\xda\x02\xc0\xb5\x6b\xd7\xf0\xed\x6f\x7f\x9b\x1b\xb9\x80\xde\xf6\x3c\x3e\xd5\xde\x6d\xf1\x49\xeb\x5c\xe0\x97\xe9\x1a\xdd\x2e\xd9\xec\xa2\xd1\x86\x4b\x06\x99\x3f\x04\xb9\x54\x20\x71\xcb\xb2\xf4\xe5\x33\xc5\x83\xa4\x99\xc2\xd1\x17\x2e\xc5\xab\x2c\x27\x0f\x32\x5d\x6b\x3b\x09\xdf\x97\x47\x8d\x5f\x8d\x7e\x1b\xff\x29\x5e\x65\xf9\xda\x64\x56\x93\x0b\xad\x8c\x6d\xed\xa6\x95\x57\xe3\xad\x4d\x5e\xfa\xf6\x0d\x8e\x53\xa3\xdd\x87\x0f\x9e\x5f\x96\x21\xd5\xbe\x77\xd2\xdf\xd4\xf2\x3e\xf2\xc8\x23\xe6\xa3\x1f\xfd\x28\x2e\x5c\xb8\x10\xbc\x2b\x86\xed\x71\xcc\xfd\xef\x90\x8d\x07\x43\x00\x61\x4c\x08\xe3\xc3\x0a\x7b\x1e\x3b\xe7\x86\x44\x34\x24\x87\x61\x6e\x69\x32\x2c\xcc\x70\x5c\xd0\xca\xa0\x34\x43\xe3\xc8\xc0\xc1\x10\x60\x00\x67\xad\x81\x9d\x65\x76\x3a\xf3\xde\x99\xc2\xb8\x99\x25\xcc\x1d\x5c\xf8\xc6\xd0\x9c\x88\x82\x71\x32\x05\x10\x3c\x2c\x53\xbf\x34\x34\xf7\x97\xcc\xcd\x3d\x6c\xe1\x9c\x5b\x32\x5a\x9e\x7f\xfe\xf9\x94\xfe\xec\xd3\xc6\x5d\x7a\xa2\xab\xff\x6a\xb2\x9f\xe2\x25\xd5\x57\x53\x61\x09\xbe\x6d\xa9\xa8\x6b\x76\x20\x2d\xf0\xd4\x2c\x46\xc3\xd5\x66\x65\x73\xfa\x62\xd1\xa4\x51\x80\xb6\x19\x71\xc3\x4a\xbb\x74\xe9\x52\xb8\x51\x97\x8f\xd6\xe1\x54\x51\xb4\x34\xbd\x35\x5e\x7d\xdb\xc8\xef\x77\x99\x0e\xac\x35\x8e\x68\x73\x9a\x9f\x1d\x15\xd9\xaa\x71\x94\xc5\x69\x03\xbb\xfe\xb6\x32\x52\xa8\xb9\x2c\x14\x9f\xc9\x1b\x25\x4b\x76\x0b\xc2\x5a\x0f\x37\x23\xe3\xcd\xbc\x0c\x3e\x7a\x4b\xc8\xc3\xc5\xb4\xfa\xb6\xc5\xba\xa2\xb8\xe7\xa5\xfe\x28\x64\xa8\xb1\xe0\x59\x71\xa2\x76\x25\xdf\xce\x01\x86\xbc\xe7\xa5\xc8\x36\xc7\x85\xc9\xaa\x0f\x33\xda\xc3\x45\xee\x8a\x50\x07\x54\x1f\xf3\x0b\xb3\x9a\xca\xfe\x71\xce\xad\xad\xad\xe1\x91\x47\x1e\xa1\x9f\xfe\xf4\xa7\x8e\x51\xd3\xbc\x1c\x5c\x4e\xf8\x9f\x06\xa7\xc5\xb7\x3d\xa7\x66\x0c\xda\xcc\x50\x9b\xe9\xf6\xa1\x97\x2a\x83\x0c\xa9\xbe\xc0\xeb\x47\xce\x98\x53\x33\xd8\x36\xbe\x52\x7c\x6a\x21\x55\x3f\x1a\x0e\x0d\xae\xcd\x40\xe0\x33\xb6\x90\x26\xdb\x58\x4b\xe7\xf9\xe4\xb3\x45\x73\x76\x98\xaa\xf7\xb6\xf2\x4b\x7c\x72\x06\xa8\xcd\x34\x35\xfc\x9c\xef\x36\x3a\xa9\xb6\xe4\x65\xe6\xcf\x1a\xdf\xbc\x8c\x5a\x5f\x91\x74\x24\x3c\x6f\x17\x8d\x1e\xd7\xc1\xbc\x1d\x64\x3e\xf9\x9c\x6a\xd7\x00\xa3\x79\xa1\x52\xf4\x35\x78\x4d\xb6\x34\xbe\x64\x7f\x25\x00\x6e\x7f\x7f\xdf\xfd\xfc\xe7\x3f\x77\xec\x1b\x46\x51\x3f\xb1\x67\xeb\xc7\x83\xc0\x8f\x45\x75\x4a\xc7\xb2\xe7\x12\x95\xc7\x23\xec\x2f\x59\x38\xb8\x85\x35\x98\x2e\x72\x77\x72\x32\xb4\x07\x87\xa3\xf2\xe0\xf6\xb8\xdc\x3d\x18\x15\x7b\xb7\x27\xe5\xad\x83\x51\xb1\x7b\x7b\x54\xde\x9a\x0e\xdd\xfe\x22\x77\x07\xa5\xc1\xa1\x23\x9c\x80\x70\x44\xd5\x29\xa1\x63\x54\x9b\x6f\x0f\x51\x5f\xe1\x7f\x04\x6f\xbc\xf8\xa5\xa1\x19\x55\xdf\x23\x8a\x9e\x16\xef\x11\x8a\x46\x0b\xb0\x74\xaa\xb3\xad\x8e\xa1\xc0\x85\x90\xf2\x18\x12\x96\xdb\x37\xd5\xdf\x64\x3e\x29\xdf\x92\x7e\x1f\xbd\xd0\xa0\x95\x63\x39\xa4\x2c\x27\x0d\xae\xed\x9d\xe3\x48\xa5\xb5\x59\xe1\x3c\xad\x8b\x96\x8c\x6f\x4b\xe7\xb4\x2d\x80\x02\x95\x25\x1b\xac\xef\xa9\xff\xcd\x41\xc8\x8b\xcc\x0d\xdf\x3e\x33\x7d\x7d\xfb\x38\xbf\x67\x5c\x98\xb5\xb5\x59\x76\xce\x38\xbf\x19\xab\x5e\x27\x02\x00\x3f\x78\x03\xd5\x65\x74\xc2\xab\x21\x8c\x96\xd0\x3b\xc3\xa6\xdc\xda\xd8\x20\x8e\x92\xc5\xa0\xde\x88\x0b\x7f\x6b\x2e\x4f\x6b\xc4\xb8\x3a\x85\x59\x21\x61\x6f\x0d\x8f\xae\x2d\x23\x4e\xcf\x35\x18\x36\xa0\xe1\x78\x61\x9e\xb8\x70\x7b\x98\x1b\x47\x86\x00\xbc\xb1\x3d\xfd\xf9\xd1\xb0\x3c\x08\x9b\x75\xfd\x6f\xe1\xeb\x2e\xdc\x29\x60\x00\x58\x76\x34\x3d\xb4\x41\x08\x6d\xed\xdc\x35\xd3\xd4\x42\x1f\xb9\x3d\x0d\x7c\x9b\x87\xe2\x34\x74\xfa\xe0\xe4\xe9\xa7\xc1\xff\x41\x78\xb9\x5b\xa1\xad\xaf\xa6\xc2\x07\xe5\xbb\x6d\x96\x76\xa7\x72\xd2\xa5\x97\x52\xcf\x29\x8f\x4b\x9f\xe7\xbb\x21\x63\x6d\x86\x63\x1b\xfc\x69\xeb\xbf\x0f\x1d\x2d\xbe\x0f\x9d\xd3\xca\x83\x06\xdb\xe5\xa5\xc1\xb5\x6b\xd7\x70\xcf\x3d\xf7\xc0\x7b\x2c\x42\x7c\x41\x44\x39\x96\x3d\xc7\xc1\x38\x28\xfc\x49\x9e\x39\x80\xa1\x87\x1b\x02\xc8\xbd\x77\x26\x78\xf0\x8d\xc7\x13\x68\x86\x49\x5d\x1c\x6b\xbc\xd1\x13\x7e\xa5\xd7\x7a\xca\x9f\x19\x4c\xcc\x27\xf8\xb2\xce\x39\x6d\x79\xe8\x54\x75\x82\xbb\xa3\x43\xee\xb6\xee\x6d\x95\x2f\x6d\x8f\x8b\xb4\x64\x79\x68\x9b\xb5\x75\x11\xe5\xde\x10\xcb\xde\x79\x5a\x6a\xd6\xd7\x87\x9e\x66\xed\x01\x00\xb6\xb7\xb7\xcd\x3f\xff\xf3\x3f\xf3\x53\x46\x61\x2f\x56\x18\xe1\x43\xb9\xf9\xb3\x41\x75\x44\x1a\xf3\xcc\x39\x6b\x60\xd7\x66\xd9\xc6\xea\x22\xdb\x18\x58\x1a\xc9\x7b\x6a\x1d\x80\xc6\x4e\x5c\x71\xc5\x3f\x50\x1b\x36\xd1\x48\x71\x81\xd1\xf0\xfd\x0a\xf9\xad\x0b\x34\x36\xfe\x46\x12\xde\x55\x52\x75\x8a\xda\x33\x13\xee\x69\x91\x27\x8f\xaa\xcd\xba\x95\x97\xa5\xb9\xef\xa6\xbe\xbe\xba\x31\xcd\x09\x78\x9c\x2f\x8e\x03\x08\x94\x65\x96\x36\x27\x85\x39\x3b\x59\x64\x43\x47\xd8\x3f\x1a\x95\x47\x8b\xcc\x95\xa0\xea\x94\x11\xd5\x37\xec\x86\x7d\x70\x71\x4d\xf9\xe2\xc5\x8b\xb4\xb3\xb3\x43\xec\x98\x5e\x60\x83\xcf\x6e\xa5\x97\x8d\xc7\x73\xf9\x30\x22\xaf\x9c\x1d\x43\xe0\x92\x79\x02\x4e\x28\x71\x92\x0f\x49\x4b\xd2\x91\xb8\x65\xb9\x52\x65\x6c\x83\xd1\x66\x3d\xda\xaf\xec\xab\x32\x4d\xa3\x29\xeb\x43\x9b\xd1\xcb\x3e\xa4\xbd\x77\x95\x21\xc0\xa5\x94\xa3\xac\x67\x1e\x27\xeb\x38\x25\x03\x12\xb7\x9c\xcd\xa7\xca\x2b\x71\xa4\xf2\xf1\x3a\x4e\x79\x3b\x24\x8f\x7d\x78\x02\x96\xdb\xa7\x0d\xb7\x6c\xeb\xbe\xb8\x25\x8c\xac\x37\x2d\x70\xdc\x12\x07\xe7\x57\x83\xd1\xc6\x0e\xa9\x9b\xfb\xe2\x0e\x21\x25\xeb\x1a\xee\x54\x9b\x45\xdc\x3f\xfb\xd9\xcf\xec\xa3\x8f\x3e\x4a\x2b\x2b\x2b\xf1\x24\x11\x80\xb0\xb9\x35\xee\x75\xf1\x2f\xd6\x3f\x06\xcf\x4b\xf0\xb6\x94\x61\xe9\x86\x88\x16\xec\x79\x16\x2e\x86\x23\xa2\x13\xef\x3d\x39\x21\x7f\x61\x1c\xfc\x46\xdb\x70\x4a\x28\xec\x61\xa1\xfa\xc4\xd0\xcc\xc7\x87\x0d\xb8\x33\xe7\xdc\x02\xfe\x3b\x44\x10\x46\x0b\x50\xed\x69\xf9\xfc\xe7\x3f\x6f\x5e\x7f\xfd\x75\xb2\xd6\x6a\xfd\xaf\xab\xee\xbb\xe4\x8a\xc7\xf3\x7a\xd7\xfa\xb9\x26\x8f\x6d\xfd\xbf\x0d\xb7\x26\x03\x11\xb7\x34\x5c\x34\xa5\xcc\x11\xf6\x31\x28\xf8\x80\x20\x3b\x36\x8f\x27\x25\xee\xb4\x74\x34\x43\x67\x09\xcf\xc9\xc9\x89\xdb\xdc\xdc\x34\xe1\x88\xb4\x30\x10\x88\xe5\x8b\x1d\xdf\x5b\xcf\x04\x20\x03\x21\x3f\xc9\xed\x22\x77\x84\xf5\x59\xbe\x35\x5e\xb0\x6b\xa0\x63\xc6\x70\x45\xbf\xd7\x1a\xfc\xeb\x88\xd1\x80\xa8\xc7\xb6\x38\x32\x93\x37\x26\x18\x4f\x0d\x46\x28\x18\x35\x88\x4e\x90\x60\x88\x38\x84\xbc\xa8\xae\xfc\xa7\x50\x90\xe6\x09\xa3\x18\xa8\x89\xbc\xf2\x0c\x51\xfc\x90\x63\x05\x22\x4e\x3d\x85\x7c\xd5\x43\x75\xc3\xee\x22\xbb\x67\x7d\x96\x8f\x8d\xc3\xfe\xc1\xb8\x38\x9c\x67\x6e\xc1\x36\x2e\x07\xa1\x23\x6f\xbd\x84\x9d\xfb\x44\xcb\x5f\x96\x76\x68\x0a\xba\x65\x5c\x72\x59\x94\xf2\xe0\x94\xbf\x10\x4c\x22\x5e\xc6\x05\x3e\x35\x3a\x32\x4e\xf2\x99\xe2\x87\xe3\x94\xf8\x39\x3e\x99\xc6\xdf\x53\x1d\x5c\x0e\x18\x1c\x3e\xc5\xbf\xac\x4b\xad\x3e\xb4\xfc\x29\x83\x51\xe6\x4d\xfd\x71\xb8\x14\x0e\x28\xf1\x72\xe0\xd7\xfa\x35\x87\x93\x8a\x52\xd6\x9b\xa4\x2f\x75\x83\xac\x53\xad\xad\x64\xdd\x48\x78\xad\xfe\x64\x3b\xf1\x38\xd9\xf6\x6d\x0a\x9d\xa7\x6b\x75\x29\x8d\x3e\x29\x4b\x40\x9a\x47\x19\xb4\xc9\xa3\xa4\xa3\xc9\x22\x87\x69\xa3\xa7\xc9\xae\xc4\xa5\xb5\x3f\xaf\x37\x39\xa6\x68\xc6\x8e\x56\xaf\x8d\x72\xbc\xf2\xca\x2b\x8e\xdf\xae\xee\x8d\x96\xb0\x59\xd7\x01\x00\x55\xb7\xcf\x3a\xbf\x24\x53\x80\xdd\x4c\x8b\xca\xa8\x58\x04\xa3\x85\x79\x4e\x66\x54\x7f\x3f\x68\x8a\x6a\xa9\x27\x2c\xf9\x1c\x7b\x63\x86\x1b\x2f\x33\xd4\x47\x9c\x4f\x7c\x9e\x39\x55\xdf\x1e\x9a\x03\x08\x46\x4b\x38\x3d\xd4\x30\x5a\xac\xb5\x78\xf1\xc5\x17\xdd\xab\xaf\xbe\xea\xac\xb5\x4c\xb3\x27\xe5\x5a\xb6\xab\xec\x13\xb2\xbe\x52\x46\x34\xd7\xd3\x92\x5e\x1b\x0c\x0f\x9a\xb1\xae\xf1\xa4\xca\x91\xbc\x39\x57\x22\x6d\x23\x90\x9a\xb1\xc9\xc1\x40\xb3\xfa\x64\x41\x52\xcf\x1a\x3f\x21\x48\xda\x1c\x2e\x18\x4f\x91\xe7\xd9\x6c\xe6\x80\xc6\x7e\x17\x2e\xcc\xf2\xdd\x78\x21\xae\x6e\xd4\x75\x8e\x6c\x06\x9c\x0c\xec\x7c\x5c\x9a\xd1\xda\x3c\xdf\x1a\x15\x66\x8d\xa2\x29\x22\x3e\x57\xee\x00\xe1\xda\x68\x14\xae\x36\x4a\x78\x69\xbc\xd1\xc2\x8f\x4b\xb3\x1c\xda\xd2\x51\x94\x52\x6f\x33\xd4\xde\x17\x8e\x98\x61\x72\x50\xf1\xd4\x36\x47\x1d\xcb\x69\xf3\x7c\x06\x64\xfc\x3d\x2f\xf7\x6f\xcc\xb2\xed\x71\x99\xdd\xba\xb1\xb6\xd8\x8b\xa7\x8d\xc2\x87\xb3\xfd\xd1\x3c\x66\x20\x06\x46\xdc\xce\xce\x0e\x29\x97\xd5\x49\xe5\x78\xa7\xa1\x2b\x7f\xaa\x33\x4a\xf9\x4e\xe5\xd5\x3c\x1c\x1a\xed\x54\x7f\x0a\x69\x52\x31\x6b\xf9\x64\x5e\x6d\xc0\xd2\xfa\x41\xc8\xa7\xe1\x93\x41\xa3\xa7\xf5\xd1\xbe\x41\x96\xb5\x6d\x06\x28\xf1\x77\xe9\x81\x36\xfe\x52\xf5\xa0\xd1\xe3\x7d\x3e\x25\x77\x29\x59\x48\x0d\xb4\x6d\xfc\xf1\x38\xa9\x6f\x52\x72\xc8\xe1\xb5\x81\x28\x55\xb6\x36\x9e\xfb\xc8\x16\x06\x83\x81\xf1\x03\xa1\xcc\xdf\x36\xd9\x4c\x19\xde\x3c\x3d\xd5\x7f\x52\x03\x1f\xe7\x8b\xb7\x95\xe4\x4b\x33\x76\x25\x7f\x7c\x50\x07\x00\xfc\xc6\x6f\xfc\x06\x7d\xfd\xeb\x5f\xb7\x6c\xdf\x4b\x05\x50\xef\x7d\xb1\x7e\x5f\x8b\xf3\xf7\xbd\xf0\x65\x9e\x02\xd5\xd2\x78\xe1\x0d\x8d\x05\xea\x4d\xb6\x33\x54\xc6\x4a\x78\x3e\x09\x7f\x22\xfd\x24\x6c\xbe\xc5\xf2\x61\x87\x02\xd5\xc5\x72\x61\x6f\x4d\x19\x78\x02\xaa\x8d\xb8\xde\x7b\xad\x0d\xfa\x6d\xf2\x29\xeb\x9e\xd7\x25\x8f\x97\xfa\xa3\xcd\x68\x96\xef\xd2\xa0\x69\xeb\x97\xf2\x99\xf3\x97\x6c\x57\x7e\x73\x6e\x1f\xa4\xf2\x59\x33\x5a\x24\x71\x9e\xaf\x4d\x69\xb5\x0d\x1a\xbc\xf3\xb6\x0d\x70\x9a\x90\x2f\xc1\x85\x5b\x75\xbd\x30\xc6\x25\x23\x76\xf2\xa8\xa1\xe0\x7c\x5c\x3e\xcf\x5d\x39\xcf\xec\x7c\x5c\x98\xd1\xea\x3c\xdb\x1c\x96\x66\x45\x1a\x11\x81\x72\xea\x54\x51\x88\x8b\xbd\x48\x9c\x2a\x8a\x9e\x92\x68\x6f\x34\x2d\x9f\xd4\xa9\x22\x40\x18\x42\x0c\x28\xa0\xd2\xd2\xa3\x33\x25\xf0\xad\xd0\x96\x86\x16\x01\x64\x1c\xad\x8c\x0a\x73\xdf\xd6\x49\xfe\xd0\xe6\x74\x70\xeb\xfa\xfa\xfc\xe6\x3c\x77\xb6\x2a\x3b\xf3\x1e\x31\xf7\x2b\x9a\x1d\xcb\x89\xe3\xd2\x21\x9d\x07\xcd\xa0\xe6\x8a\x9f\x77\x32\x6d\x46\xd6\xc7\xe0\x4d\x0d\x2a\x06\xcb\x74\xb4\x7e\x92\x1a\x8c\xfb\x0c\x26\x92\x1f\x69\x40\x71\x05\xa4\x0d\x1a\x6d\x86\x54\xaa\x8f\xa4\xfa\x9e\x1c\xc8\x35\x78\xad\x4e\x24\x9c\x4c\xd3\x66\x66\xbc\xdb\xf0\x3f\xad\x2d\x65\x9d\xa4\x26\x2c\x5c\xc9\x69\x3c\x6a\xde\x09\x59\xbf\xfc\x4f\x9b\xf9\xf3\x3a\x5a\x1a\x08\x15\x3a\x21\x3f\x8f\xd7\xf2\x05\xdc\x96\xc1\x3b\x91\x57\xf2\x2d\xfb\x8e\x94\x7f\x6d\xc2\xa8\xe6\x3b\x7b\xf6\x2c\xfd\xf9\x9f\xff\x79\x9c\x48\x58\x6b\xdd\xd6\xd6\x96\x99\x4e\xa7\xbc\x1e\x43\xd0\x06\x25\xd9\x3e\xb2\xfd\xa4\x11\x26\x79\xa2\xc4\xb3\x36\x68\xca\xf6\xe0\xbc\xa4\x96\x25\xe4\x4c\xce\x00\xa0\x1f\xfd\xe8\x47\x16\xa8\x26\xb3\xe1\xd3\x00\x00\xe2\xbe\x14\xe6\x81\xb1\xdc\x90\xf1\xc6\x4b\xe9\xbd\x2e\x85\x5f\xce\x99\x53\x75\xfa\x67\x86\x7a\xd9\x68\x11\x3c\x2f\xde\x33\x13\xbc\x31\x33\xaa\x2e\x91\x9b\xa3\xb9\x24\x34\xf7\x06\x51\xb8\x72\xc2\x7a\x9a\xc1\xcb\xe2\x80\xa5\x23\xcf\x5a\x7f\x90\xf2\x99\xd2\x65\x29\xb9\xe7\x86\xa8\x46\x47\xd3\x4b\x29\x23\x25\xd5\x8f\xb5\x7e\xce\xf9\xe0\xe5\x58\x2a\xaf\x41\x53\x28\x65\xe0\xe9\xf2\x57\x06\xcd\xb2\xb3\x58\x56\xac\xa9\xa0\xc1\x19\x91\x16\xf0\xb5\xe1\x09\xf9\xb8\x10\x37\x42\x38\x36\xe6\x3d\x02\x01\x67\x70\x09\x06\x6b\x37\x6c\x96\x0a\x7f\x87\x00\x8e\xaf\xaf\x2e\xde\x7f\xed\xdc\xc9\x2b\x57\x37\xe6\xaf\xcd\xf2\xf2\x10\xae\x6e\xb5\x4a\xea\x2b\x1a\x61\xbb\x0b\x80\xf8\xc0\xd3\x43\x20\xd1\x4c\x11\x57\xf8\x52\xa8\x73\xd5\x3e\x17\xc7\xb2\x2a\x6a\x93\x8f\x52\x55\xff\x8b\xb7\xc6\x30\xd0\x80\x93\xe7\x71\x0d\x20\x72\x6e\x89\x47\x17\xcb\xd2\x94\x49\xe3\xb0\xb6\x32\xcf\x2e\x7e\xe8\xe6\xf8\x7f\xfb\xcc\x6b\x5b\x7f\x78\xe1\x60\x78\x21\x2b\x69\x85\xfc\x91\x41\x00\x43\xaa\x36\xab\x55\xd7\xf9\x01\xc6\xff\x5a\xa0\x3a\xa6\xee\x51\x49\x39\x01\x74\x43\xd8\x0a\x58\x29\x17\x1a\xbc\x0c\x5c\x2e\x24\x0d\x89\x5b\xd2\xe9\xea\x2f\x12\x57\x9f\xa0\xe5\x49\x95\x8f\xc3\xa5\xea\x27\x15\x64\x5f\x92\xf9\x24\xcd\x90\xa7\xad\x7e\x52\xb4\x35\x5e\x39\xbe\x54\x1d\xa7\xca\x94\x9a\x39\x6a\x65\xd2\x70\xb6\xe5\x4b\xf1\x94\x82\x91\xf0\x1c\x9f\xe4\x45\x83\xed\x53\xff\xa9\xf6\x97\x3c\x75\xc1\x40\xc0\x5b\x00\xf8\xc4\x27\x3e\x61\x00\xd8\xaf\x7e\xf5\xab\x00\x60\x6f\xde\xbc\xb9\xc4\xd3\xde\xde\x9e\xf5\x30\xbc\x0c\x29\xd9\xd0\xe4\x44\xd2\x3e\xed\xb3\x86\x9b\x3f\xa7\xfa\x84\x7c\x86\x80\x97\x6d\x89\xbf\xfc\xcb\xbf\x34\x40\x73\x3c\xf0\x4b\x45\x16\xde\xab\x02\x6f\x98\xa0\x3e\x92\x1c\x0c\x92\x63\xbf\x0c\x74\xe8\x9c\x3b\x0c\xcf\xa8\xf6\xb3\x1c\xa2\x3a\x1d\x14\x6f\xbe\x0d\x7f\xde\xd3\x12\x6e\xc1\x0d\xcb\x43\xf1\x98\x33\x9a\x4b\x53\x08\xfc\xbd\xf0\xc2\x0b\xf6\x0f\xff\xf0\x0f\xdb\xe4\xad\xab\xbc\x5a\x5f\x49\xe9\xd5\x54\xdf\xd1\xda\xba\x75\xcc\xed\xa0\x2f\x65\x2c\x25\xd3\x31\x84\x21\x2a\xa5\x18\x52\xcc\x6a\xc2\x24\x7f\xdb\xf0\xb4\xe5\x0f\x71\x3c\x68\xf8\xfb\xf0\xc4\x71\x2d\xf1\xe4\x07\xce\x90\x1e\xce\xf3\xe7\xa8\x76\x8c\x8f\xfd\xef\x1a\xfb\xdb\x80\xc3\xc6\xb0\xa4\xed\x47\x6f\x8e\xff\xd3\x87\xdf\x5b\xfb\xc4\x85\x83\xe1\x93\x03\x6b\x86\x24\xd7\x61\x92\x81\x4d\xba\xf8\xfc\x4b\x7b\x0f\xd1\xca\xa6\x5d\x1d\x33\xbb\xcb\xc5\xb3\x13\x8f\x43\x33\xf6\x1a\xd3\xbe\x00\x27\xd8\x77\x2a\xaf\xc1\x73\x14\x52\x09\x20\x07\x07\xcc\xa7\xb9\xfb\xc5\xfb\x1b\xb3\xff\xe3\xa5\xfb\x8e\xbe\xfb\xce\xe6\xf4\xca\x6c\xe0\xc2\x5d\x04\xdc\x18\xb4\xec\x37\xcc\x6a\x00\x34\xee\x20\xb8\x93\xd0\x36\x28\x9f\x16\xcf\x07\xc5\x71\x37\xc3\xdd\xe2\xe7\x97\x5d\xae\xae\x3e\x0f\x74\x1b\x20\xa7\xd1\x3f\xa7\x81\x69\xd3\x39\x77\x82\xbb\x8f\xee\xba\x93\x32\xa6\x60\x4e\xab\xef\x3a\xf9\xfe\xca\x57\xbe\x62\xfe\xea\xaf\xfe\xca\x3e\xfb\xec\xb3\x86\xeb\x95\xd4\xe1\x80\xc4\xa9\x95\x2e\x43\xa3\x4f\x9b\x22\x01\xd3\xa7\x3f\x77\xd1\xb9\xa3\xfa\xe6\x77\x7e\xb1\xfa\xe0\x86\x77\x63\x32\xcf\xef\x84\x91\xf0\xa2\x3e\xb9\xce\x6b\xdc\x75\x05\x36\x58\x33\x9d\xd8\x80\x49\xb4\x83\xac\xa7\x3e\x75\x82\x1e\x30\xbf\xea\x3e\xda\x87\x36\x0f\x56\x5b\x2a\x32\x90\x53\xeb\xf6\x77\xe9\x8a\xd5\xdc\xd3\x29\x58\x88\x5f\x83\x7a\x4c\xb5\x68\xba\x86\xa5\x6b\x37\xc5\x07\x7f\x0e\xf0\x8d\xf2\x9d\x3f\x7f\x9e\x8e\x8f\x8f\xb9\x7b\x90\xbc\x7b\x10\xe1\x19\x00\xbf\xa8\x08\xf0\xfb\x5d\x40\x30\x25\x01\xf3\xdc\x2d\x0c\x60\xd6\xe7\xf9\xda\x64\x61\xd6\x8d\xff\x6a\x28\xdf\x44\xbb\xe4\xf2\x60\x2f\xdc\x60\xa8\x88\xb2\x92\x2e\x79\x65\xc2\xc6\x11\xc4\xbb\x57\x1a\x1b\x71\xe3\x92\x0e\xc5\x38\x20\xdc\xce\x5b\x31\xa3\x1e\xaf\xf6\x88\x08\xc2\x68\xf1\xf8\xab\x25\x23\xbe\xe9\xb8\x76\x27\xd5\x9b\x81\x09\x04\xca\x72\x8b\x8d\xc9\xc2\xdc\xbb\x3e\xcf\x47\x8e\x70\x7b\x3a\xb0\xe1\xc4\x51\x8d\xb6\xfe\xb8\x25\xa1\x9a\xd5\xc4\x52\x5f\xbc\x78\x91\x9f\x38\x92\x32\x18\xe4\x42\x73\x93\x07\xd9\xd0\x5c\x92\x9a\xdb\x5a\x83\x91\xb2\x28\x79\x90\x70\x68\x81\xd3\x5c\xb3\xd2\x1d\x2b\xdd\xae\x5a\xd9\x90\xc8\x9f\x72\xc9\x6a\xb8\xb8\x44\x49\xf8\x54\xf9\x34\xdc\xb2\xde\x64\xfe\x36\x78\xcb\x70\x77\xb9\xa7\x35\x1a\xd2\x6d\xac\xd5\x21\xb0\x8c\x5b\xd3\x17\x1a\x1f\x3c\x6f\xaa\xed\x38\x7d\xfe\x6c\x45\xfe\x36\x5e\xf9\xe0\x92\xaa\x07\x9e\x57\xf2\xaf\xcd\xac\xb5\xfa\x4b\xd5\x9b\xfd\xca\x57\xbe\x62\x7e\xf3\x37\x7f\x93\xf2\x3c\x87\xdf\x98\xca\xef\x61\x8a\xfc\xf8\x4d\xf5\x95\xf6\x20\x02\x3f\x11\xf8\x85\x2f\x7c\xc1\x5c\xb8\x70\x81\xde\x7a\xeb\x2d\x30\xfc\x56\xa1\xc9\xe3\x34\xf9\xb5\xd0\xeb\xdb\x09\x3c\xa9\x3e\x0d\x06\xab\xe9\x0a\x49\x5f\xab\xf3\x58\x6f\x67\xcf\x9e\x35\xeb\xeb\xeb\x74\xe6\xcc\x19\xac\xae\xae\x06\xdc\x11\x7f\xd8\xc0\x0b\x34\x3e\x66\xe8\xe0\xf7\x9e\xf8\xa5\xa3\x12\xfe\x1a\x7e\xd4\xfb\x53\x16\xf0\xfb\x55\x5c\xf5\x4d\x21\x7e\xe3\x6d\xd8\x74\x5b\x86\x7d\x35\x61\x53\x30\xaa\x86\xb0\xfe\x11\x2f\xbd\xf4\x12\x76\x77\x77\x69\xb1\x58\x48\x79\xd1\xe4\x80\xc7\xf1\x72\xf3\x3a\xe7\xf5\x9b\xaa\x37\x39\x8e\xb6\xf5\x11\xcd\xa8\xd2\x60\x34\xdd\x2e\x65\x5d\xb6\x3b\x97\x09\x0b\xc0\x88\x21\x72\xc9\x22\x03\x7b\xe7\x30\x5d\x33\x1b\x2d\x9f\x96\xb7\xeb\x5d\xf2\xa4\xbd\xa7\x82\x9c\x05\xa8\x3c\xb1\xe5\x0a\x6e\x4d\x07\xaf\x4b\xf0\xbc\xac\xf8\xbf\x0d\x78\xcf\x8b\xb1\xd8\xd8\x3e\x1e\x3c\xf4\xd4\xb5\x95\x8f\x3e\x79\x7d\xe5\x99\xf5\x69\x76\x8f\x61\xde\x89\xfa\x32\x39\x1f\x95\x38\x35\x14\x83\x8f\xd4\xd2\x98\x72\x51\x66\x44\x6c\x74\xaa\xc9\x37\xf0\x4a\x67\x4d\x34\x82\x7c\x1e\xd5\xbe\xe2\x74\xb5\x34\x25\xce\xc2\x15\xf3\xdc\x5e\xb9\xb9\x5a\xfc\xe0\xad\x33\xd3\xff\xf3\x8d\xed\x93\x97\x6f\xad\x2e\x6e\x94\xa6\xd5\xf3\xd2\x98\x59\x1c\x1c\x1c\xe0\x9b\xdf\xfc\xe6\x2f\xdb\xeb\xd1\x67\x76\x70\x27\xb0\xff\x11\xc3\x7f\x24\xfe\xb5\x99\x39\x7f\x4e\xa5\xa7\xf0\x74\xe1\x3b\x2d\x1f\x7d\x42\x17\xdf\x29\x3e\x43\xe8\xcb\xf7\xd2\x2c\xf3\x03\xe4\xc3\x57\xbe\xf2\x15\x33\x1c\x0e\x25\x6f\x0d\xc3\x85\x4d\xd8\xb8\x37\xa0\x81\x07\xa8\xbc\xa3\x9f\xfd\xec\x67\xcd\xf7\xbe\xf7\xbd\x2e\xbe\xa0\xc4\x9d\xb6\xcd\xee\x46\x1b\x9f\x2a\xfe\x91\x47\x1e\x31\x6f\xbd\xf5\x56\xc3\x23\xa5\xd4\x8f\x49\x3c\xa3\xe3\xd9\x0a\x1d\x6e\x53\xe9\x2d\xde\xae\xae\x32\x7f\x10\x99\x3e\x0d\xee\xbb\xfd\xdc\x1b\xb6\xed\x38\x74\x18\x9b\x64\x81\x52\xb3\x32\x9e\x4f\x7a\x5e\x8c\x88\x93\xef\x12\x07\xcf\x27\x3d\x26\x1a\x6e\x6d\x46\x29\x2d\x36\x8d\x1e\xdf\x98\xc5\x37\x91\x92\xf8\x0d\x06\x4d\xd8\x6c\x6a\x1c\x01\xf3\xcc\xd9\x22\x73\x6e\xbc\x30\xc3\xf5\x59\xb6\x9d\x97\x66\x08\x20\x1e\x51\x96\xc7\x93\xe3\xd1\x60\xc9\x28\x37\x2e\xa2\x22\x61\x46\x05\xcf\xc3\xee\x63\x71\x1e\x3b\xc5\x73\xcb\xcc\x98\x08\x1f\x83\x0c\x70\xac\x73\x10\x03\x24\xd4\xb4\xa9\x99\x35\xd2\xa5\xaa\xdc\x0d\x3e\xf8\x94\x27\xb2\x06\x32\xb9\xa5\xb5\x71\x61\xce\xaf\x2e\xb2\xcd\x61\x61\x9c\x25\x77\x3c\xcd\xdd\xac\xcc\x9c\x15\x59\x63\x76\xb6\x39\xda\x8d\xc7\x63\x08\xef\xcb\x2f\x23\x9c\x06\x77\x9b\x87\x46\x06\xad\x5f\x68\x71\x1f\x34\x70\x7e\xba\x70\xa7\xbc\x48\x6d\x78\x3f\x28\x5f\xa9\xb8\xa6\xb8\x2c\xc7\xa7\xd2\xa5\x37\xc1\x76\xc0\x77\x95\x99\xc3\xb6\xb5\x67\xc8\x9f\x82\xef\xa2\xc7\x3d\x3c\x5c\x97\xa6\xf0\xc9\x67\x2b\xf2\xf5\x29\x2f\x9f\x59\x3b\xa0\x9a\x9c\x19\x63\xe2\x32\x46\xd4\x61\xfe\xc3\xb2\x7e\x50\xce\xc0\x26\x6f\xc1\x35\xea\x61\x1a\x1e\x90\x9d\x9d\x1d\xfa\xbb\xbf\xfb\x3b\xae\x97\xbb\xea\x53\xea\xef\xae\x32\xa4\xf2\x6a\x74\x52\x7d\x41\xf3\x26\x68\x1e\x9a\x25\xf8\xfd\xfd\x7d\x02\xe0\x8e\x8f\x8f\xe9\x1f\xff\xf1\x1f\xf9\xa9\xa3\xf8\x17\xaa\xc7\x3f\xc7\xa5\x9e\x00\x17\x7e\xd9\x09\x25\x07\xbf\xe9\x56\xe0\x02\x6a\x2f\x8e\x03\xaa\xcd\xb7\x97\x2e\x5d\x72\xc7\xc7\xc7\x74\xe3\xc6\x0d\x8d\x57\xcd\x2b\xc1\xcb\xd0\xd6\x77\xda\xf2\x69\xf0\x6d\xb8\xb9\x57\xa7\x4f\x1b\x4b\x6f\x97\x84\xef\xdb\x2f\x5c\xea\x02\xba\x50\xb0\x94\x15\x96\x6a\xfc\x94\x10\xc9\x8a\xe0\x05\x4e\xe5\xed\x63\x51\x73\x85\x90\x72\x31\x69\xf8\x63\x05\xfe\xc1\x1f\xfc\x01\x6d\x6e\x6e\x36\x06\x4f\xd4\x82\xb9\x54\xe9\x54\x7f\x51\x9a\xac\x01\xe6\x99\x2b\xad\x71\x6e\x6d\x96\xaf\xad\x2e\xb2\xad\x0c\x94\x01\x4d\x2f\x47\xbd\xc4\x52\x3d\x3b\x5f\x23\xfc\x82\x38\x1e\x88\xdd\xc9\x42\x0d\x83\x23\x7c\x81\xba\x36\x2e\xb8\x31\xc2\xbf\x16\x1d\x1f\xe2\x07\x15\x19\x91\x00\x17\x6a\x01\x68\x1a\x36\xc2\xf0\x6a\x94\x21\x66\x76\x31\xb6\x41\xd7\x91\xc9\x1c\xad\x8e\x0a\x73\x7e\x75\x9e\x9d\x19\x17\x26\x07\x70\x3c\xcb\xed\xc9\x2c\xb3\xb1\x9e\x51\x75\xea\xb0\x2e\x47\xa1\xdc\x21\xed\x99\x67\x9e\x89\xa7\x1c\x9e\x79\xe6\x19\xf3\xee\xbb\xef\xf2\xb6\xd5\xe4\x07\x22\x4d\xeb\x8c\x5a\x7a\x9f\x3c\xa1\xe0\x2e\x91\xce\x95\xaf\x8c\xe7\x34\xb4\x74\x99\xa6\x3d\x43\xa1\xc3\x7f\x65\xd9\x53\x34\xbb\x14\x94\x56\x9f\x9a\xd2\x93\x69\xe1\x5d\x73\x27\x03\x7a\x7b\x75\xb5\x03\xc7\x95\x52\x78\x3c\x0f\xa0\xd7\xab\x84\x97\x6d\x98\xd2\x1d\x21\x5d\xf2\x8b\x04\xac\x86\x8f\x97\x41\xe2\xe4\xb2\x25\xcb\x20\xd3\xdb\xea\x47\xd5\x79\xcf\x3d\xf7\x9c\xd9\xd9\xd9\xa1\x8b\x17\x2f\x86\xbe\x65\xfc\xf2\x4f\x30\x4a\x8c\x37\x5a\x32\x00\xc6\x80\xb2\xd5\x79\x96\x9f\x3d\x1e\x8c\x0c\x88\x0a\xe3\x60\xab\x6f\x12\x72\x6f\x02\xf9\xa5\x8b\xd8\x3f\x7d\xdf\x94\xe5\x4c\xf5\x29\x88\xb4\xb6\xba\x97\xb0\x52\x96\xa4\x31\x27\xe5\x48\xd6\x6b\x80\xd5\xda\x58\xb6\xab\x03\x80\x1b\x37\x6e\xb8\x33\x67\xce\x98\xef\x7f\xff\xfb\x36\xdc\xfb\x22\x71\xf9\x65\xa2\xd8\xb7\xc2\xbb\xfc\x0d\x38\xfd\x04\xd6\x06\x58\xd4\x63\x4d\x3c\xe2\xfc\xf1\x8f\x7f\xdc\x5c\xbf\x7e\x9d\xae\x5f\xbf\x9e\x5a\x02\x4c\x2d\xbf\xca\x32\x6a\x75\xc6\xc7\xd6\x14\x0c\x2f\x23\x04\xbc\x94\xef\x2e\x3d\x2b\x65\x43\x8e\xff\x29\x79\x90\xfc\x35\xf8\x16\x43\xa6\xca\x24\x12\xcf\xa1\x53\xdd\x2d\x77\x6f\x17\x3e\x0d\x7f\x1b\xcf\x32\xad\x8d\x87\x3e\x4b\x46\x43\xe7\xdc\x0a\x11\xad\x40\x6c\xd6\x5d\x9d\x67\xf7\x3c\x71\x63\xf2\xe1\x8f\x5c\x5d\xfb\xe4\xf6\x71\xfe\x70\xf8\x24\x80\x5c\xda\x09\x2d\xc6\x23\xf8\x3e\x13\x6d\x03\x6d\xcc\xc3\x32\x37\xf1\x2c\x61\xf5\xde\x11\x6f\x24\xb1\x65\x26\x30\x23\x07\x9e\x5e\xb4\x6f\xd0\x94\x90\xc6\x97\xa5\x03\x30\x31\x03\xc6\x79\x38\x4d\x82\x7c\x28\xc9\x1d\x4e\x73\xfb\xda\xf5\xb5\xf9\x0f\xde\xdc\x9e\x7e\xff\xad\x33\xd3\x9f\xef\x4d\x8a\x3d\x67\xe2\xd5\xd6\x05\xfb\xb3\xec\x0f\xe1\xf7\x03\x6e\xda\xfd\x65\x04\x29\xa7\xa7\xcd\x7b\x37\xcb\x73\xb7\xf1\xfd\x32\x42\x1f\x1e\xfb\xea\x9c\xb6\x67\x89\x0f\x22\xad\xaf\x5e\xea\x82\xef\xd2\x31\x77\x93\x4e\x08\xa7\xc2\xcd\x74\x19\xc7\x13\x7f\xbd\x87\x25\xea\x39\x63\x61\xd6\x67\xd9\xf0\xf1\x1b\x93\x7b\xce\x1e\x0d\xee\xb9\xb9\xb6\x78\xf7\x95\x7b\x8f\x6f\x4c\x07\x76\xee\x9a\xd7\xde\x37\x4e\x61\x02\x6a\xff\xec\xd2\xd7\x7d\xdb\x35\x94\xbb\xab\x0e\xfb\xf4\xc7\xbe\x32\x93\x6c\xd7\x95\x95\x15\x73\x7c\x7c\x6c\x01\xe0\xd3\x9f\xfe\xb4\xf9\xc1\x0f\x7e\x10\x61\x43\x7d\xf7\x5c\x2a\x8a\xfa\x38\x2c\x03\x49\x7c\x1d\x3c\xb5\x85\xd3\xc8\x5e\x9f\x7a\xb8\x1b\x72\x7f\x9a\xba\xef\x5d\x5e\xed\x23\x8b\xd2\xe2\x97\x56\x18\xb7\xf4\x5c\x4b\x3e\x6d\x06\x07\x96\x46\x02\x86\xd3\xe1\x05\x90\x78\xb5\x19\x94\x36\x1b\x92\x7c\x71\x78\x59\x16\x3c\xf6\xd8\x63\x34\x99\x4c\x1a\x71\x61\x37\xa9\xff\x0d\x02\x47\xac\xd3\x57\x9b\x75\x8d\xb3\xd3\xa1\x5d\x0c\x4a\xca\x37\xa7\xf9\xf6\xb0\x34\x2b\x15\xf6\x70\xb3\x6e\xd8\x40\x2b\xbe\xe0\x1c\x3d\x1c\xf5\x4d\xb5\x8d\xcd\xb6\xcc\x90\xe1\xd6\x45\xd3\x56\xe0\x26\x4c\x5d\x15\xd1\x60\x8a\x9b\x6b\x9b\xf4\x63\x6e\x39\x87\x08\x27\x87\xa2\xd1\x52\x59\x30\xe4\xcf\x77\x73\x7e\x96\x8c\x16\x61\x43\x19\x47\xc3\xdc\xd2\xf6\xca\x22\xbb\x67\x6d\x96\xad\x0d\x4b\x33\x9b\xe5\xf6\x68\x9a\xdb\x85\x23\x58\x57\x7f\xe6\x31\x7a\x5e\xfc\xac\xd0\xfa\x28\xda\xd9\xd9\x69\x6c\x0e\x7c\xf4\xd1\x47\xcd\x6c\x36\xa3\xa2\x28\x52\x5e\x8b\x48\x9e\xbd\x73\x38\x6d\x46\x97\x9a\x31\xc8\x19\x81\xb4\xef\x52\xf9\x53\xb8\xad\x92\xa6\xc1\xa5\xd2\x78\x08\x0a\x3b\x55\x0f\x9c\x6f\x0d\x5f\x17\x5d\xad\xec\xb2\x1e\xdb\x70\xf0\x32\xb7\xb5\x8f\x9c\xb8\xf4\x9d\xf9\xc9\x99\x22\xe7\x51\x9b\x09\xa6\x66\x70\x5a\x5d\x69\x33\x3e\x39\xc3\x95\xfa\x51\xea\xca\x54\xfb\xa4\x66\xfa\xda\xcc\xb7\x2d\x3d\xf2\xb4\xbd\xbd\x6d\x2e\x5c\xb8\x40\x7b\x7b\x7b\x4e\x4c\xc0\xf8\xdd\x54\x06\x40\xe6\x9c\xcb\x88\x68\x00\x20\x87\x43\x3e\xb0\x34\xdc\x3e\x19\xac\x3f\x7e\x73\xf2\xf8\x87\xdf\x5b\xfb\x2f\xf7\x1c\x0d\xff\x60\x63\x9a\xd3\xcd\x95\xc5\xf5\xa3\xa1\x9d\x39\x03\x7e\xdf\x55\x38\xc0\x10\x74\xa1\xdb\xd9\xd9\xa1\x67\x9e\x79\x86\x66\xb3\x19\x1d\x1c\x1c\x50\x51\x14\x5c\x6f\x4b\x99\xe7\xba\x5a\x9b\x8d\xf3\xb6\xd2\xca\x2c\xeb\x8e\x04\x6c\xea\xaf\xab\x4d\x24\x2f\x4b\xed\xba\x58\x2c\x22\x8e\xcb\x97\x2f\xe3\x33\x9f\xf9\x0c\x3d\xf9\xe4\x93\xf4\xd8\x63\x8f\xd1\xdf\xfe\xed\xdf\xda\x33\x67\xce\xd0\xb7\xbe\xf5\x2d\x7b\xe6\xcc\x19\x9a\x4e\xa7\x58\x5b\x5b\x43\x08\x6f\xbc\xf1\x06\x76\x77\x77\xb1\xbb\xbb\x8b\xbd\xbd\x3d\xec\xee\xee\xe2\x5b\xdf\xfa\x56\x03\x1f\x74\x39\x4c\x79\xa4\x52\xfd\x4e\xf3\x58\x68\x75\x26\x61\xdb\xda\xa4\x4f\xfd\xc8\x76\x45\x0b\x3e\x1e\x64\x1f\x90\x34\x34\xde\x1d\xd0\xf4\xb8\x68\x56\x4f\xca\x0a\x6e\xcb\x23\x19\x3b\x95\x25\xa5\xd0\xfd\x65\xe6\x69\x04\xde\xe9\x59\x87\xcf\xa1\x6f\xd6\xad\xbd\x2e\xc0\x9a\xb1\xd8\x3a\x7b\x3c\x78\xe0\x63\xef\xac\x7d\xf2\xb1\x1b\x93\x8b\xd5\xcd\xba\x40\xc3\x43\x11\x8c\x01\x61\x80\x70\xcb\x6d\xc9\xd3\xc2\x82\x9a\x16\x8f\x25\xc5\xff\xa2\xc7\x84\x23\x68\x8e\xb8\xe1\x8b\xd1\xcb\x86\x0c\xdf\xcb\x12\x3c\x2d\x7c\x53\x31\xb8\x31\xc5\x18\x4f\x79\x8b\xbc\xa7\xc6\x96\xc6\xdd\x3a\x1c\x96\x2f\xbe\xb3\x39\xfb\xee\x2b\x17\x8e\xff\xe5\xe6\xea\xe2\xda\x2c\xb7\xc7\x0e\xd5\xe7\xdd\xc9\x7f\x8b\x03\x4d\xef\x0b\xe4\xef\xaf\xd8\x03\x73\x9a\xd9\x59\x0a\xe6\x4e\x67\x1f\x7d\x78\x3a\x2d\x8e\x5f\x55\x3f\xd5\x78\xe4\xfa\x43\xea\x12\x0d\x4f\x97\xee\xe9\xcb\x57\x0a\x37\xe7\xe5\xb4\xb3\x46\x2d\xaf\x46\xbf\x6f\x7d\xb6\xc9\x4a\x2f\x1c\x61\x23\x29\xdf\x2c\xea\xf3\x1a\xa0\xe1\x65\xa9\xf4\x99\x43\x3e\x2a\x68\x78\xfe\x68\xb8\xf5\xc4\xf5\x95\x27\x3f\x74\x6b\xfc\xdb\xeb\xb3\xec\xf7\x8d\xa3\x87\xe7\x99\xfd\xe7\x37\xce\x9e\xfc\xef\x2f\x3e\x78\xfb\xc5\x1b\xab\x8b\x03\x6b\x6a\xef\x68\xb8\x67\x84\x9a\x5f\x26\x96\x7d\x53\xf2\x7c\xb7\xe5\xb4\xef\xbb\x8c\x3b\xad\x1c\x9d\x86\xa7\x5f\x59\x5b\xf7\x80\x3f\xad\x8e\xe8\xea\xaf\xa7\xc9\x77\x5a\x3a\x29\xd8\x56\x5e\x32\x25\x03\xb7\xe4\xa4\x15\x2c\xad\x3d\xcd\x0b\xc2\x03\x87\x0b\x78\xb4\x67\xfe\xae\x59\xc5\x1a\x8c\x8c\xd7\x3c\x31\x5a\xd0\xd2\x0c\x50\xdd\xe4\x1a\x3e\xc4\x48\xc1\x45\xd1\xb4\x2b\x08\x4d\xeb\x2f\xe6\x77\x00\x4d\x07\xb6\x3c\x19\xda\xe3\xad\x93\xc1\xd6\x64\x91\x6d\xe6\x8e\xf2\x68\x20\x10\xd5\xcb\x2f\xd4\xcc\xdc\x44\xe6\xf7\xa4\x84\x37\x66\x10\x34\xa6\x59\x0d\x6f\x0c\xc1\xf9\xaa\xae\x6f\xe8\xe5\x00\x4d\xdc\x15\x8e\x1a\x1b\x37\x86\xf8\xb1\xe7\xea\xbd\x4e\x0d\xdf\x31\xd2\x18\xd7\x8e\x5b\x87\xfc\x04\x22\x72\xb4\x32\x2c\xcd\x03\xeb\xb3\xfc\xbe\xed\xe3\x41\x5e\x64\xee\x60\x96\xd9\xf9\x22\xf3\x5f\x9e\x6c\xb2\x4a\x40\xfd\xa9\x79\xa0\x76\x7e\x25\x3e\x17\x00\xb4\xb7\xf9\x9d\x86\x14\xbe\x3e\x74\xb4\xbe\xe1\x12\xcf\xa7\xc1\xcd\xe5\x3f\xd5\x97\x4e\x1b\x2f\x67\xa6\x7d\x43\xaa\x0d\x24\xcd\x50\x0f\xbc\x4f\x71\x3d\x23\x67\x94\x12\xb7\x9c\x35\x6b\xf0\x32\xaf\x41\xba\x4c\x0e\x3a\x1d\xad\x6e\x25\x7f\xc0\xb2\xae\x4c\xd5\xb3\x9c\x15\xa7\x9e\xad\xc8\x17\xf2\xca\x29\x42\xcc\xb7\xb6\xb6\x66\xe6\xf3\xb9\x03\x2a\xa3\x05\x40\x30\x58\xc2\x5e\x5a\xc3\xfe\x72\xbf\xf9\x76\x00\x60\x40\x0e\xa3\xf1\xc2\xac\x3c\x70\x30\xbe\xef\xc3\xef\xad\x7e\xe2\x91\xdd\xf1\x9f\xae\xce\xb3\x3f\xcc\x2c\x1e\x22\xa2\xdc\x38\x9c\x1b\x15\xc6\xce\x72\xfb\xfe\xed\x71\x79\x38\xab\x6f\xc4\x26\xaa\xbe\x97\xc3\x97\x3f\x62\xdf\xbc\x74\xe9\x92\x7b\xf4\xd1\x47\x8d\xbf\xbc\x2e\xd5\x96\x9a\x9e\x97\x75\x92\xaa\xb7\x94\x87\xa1\x2d\x9f\x6c\x53\x0e\xd3\x37\xb4\x8d\x71\x5a\x19\x25\xdf\x1a\x8f\xda\x38\xdb\x26\xd3\x1a\x8e\x14\x4d\xd9\xb7\xb8\x9c\x4a\xfa\xb2\x1d\xb8\x2e\x68\x93\x6d\x59\x27\x5a\xdd\xa7\x70\x4b\xde\x35\xbe\xa5\x4d\xd2\x68\x6b\xed\x1e\x97\x54\xe3\x73\xc6\xdb\x14\x03\x1f\xd8\xa5\xeb\x47\x53\xe2\x52\xc0\x2c\x4b\x93\x0d\xa3\x19\x42\x1a\x0f\xb2\x52\x34\x21\x91\xf0\x4b\xc6\x0b\x9a\x8d\x1c\x3b\x6e\xe0\x85\x2d\x1b\x05\x7b\x01\x87\xa3\x72\x66\x0d\xe6\x9b\xd3\x7c\x6b\xb2\x30\xeb\xc6\x21\x23\x47\xf5\xf1\x68\xcd\x0b\xe2\x0d\x1a\xee\x3d\x89\xdf\x3f\xaa\x14\x46\x63\x9f\x8a\xb6\x09\xb7\x3e\x0f\xe5\x0d\x18\x0e\x0f\xf8\x65\x27\x9f\x23\xdc\xed\xc2\x36\xb1\x04\xfb\xc4\x71\x03\xcb\xd3\x71\x8e\x19\x37\xe1\xc4\x93\xcf\xb4\x54\x49\xac\x82\xa5\xd9\x64\x40\x79\x6e\xe9\xc2\xea\x3c\xff\xd0\xf6\xf1\x60\x75\x5c\x9a\xa3\xc3\x51\x79\x32\xcf\x6c\xe1\x6a\x35\x1d\xd1\xb0\x93\x0d\x55\xc9\xea\xa5\x3a\x17\x36\x1e\xb2\xd3\x47\x6d\x9d\x1e\x4a\x5c\xca\x08\xd6\xf2\x9e\x06\x96\xc7\xb5\xe1\x68\x33\xc2\xbb\x68\x4b\x7a\x29\x45\x2c\x95\x34\x57\x10\x5c\x71\xf1\x3e\xd7\x55\x87\x29\x3e\x39\x3d\xc9\xb3\xc6\x77\x2a\x5d\xd2\x97\x46\x8b\x34\x80\x02\x8c\xcc\x2f\xf5\x82\xd4\x03\xbc\x0c\x9a\xd1\x23\xf9\x93\x93\x37\xce\x77\xca\x90\x92\xfa\x2e\x55\x1e\x8d\x17\xfe\x17\x71\x0c\x87\x43\x93\x65\x19\x9d\x9c\x9c\xd8\xe7\x9e\x7b\xce\x84\xfb\x58\x82\x97\x85\x9d\x16\x32\xa8\x6e\xac\xce\x50\x19\x2e\xd1\x68\x59\x99\x67\xeb\x4f\xdc\x9c\x3c\xfe\xbf\x5c\x5d\xfb\xbd\xfb\x0e\x86\xff\x7d\xbc\x30\x9f\x32\x8e\x36\xd8\x21\x80\x51\xe6\x68\x7b\x5c\x64\xb3\x83\x49\xf1\xde\xe1\xa8\x3c\x2c\x0d\xc2\xb2\x39\xb8\xf1\xe2\x69\x3a\xe7\x9c\x7b\xe6\x99\x67\xe8\xbb\xdf\xfd\x2e\x37\xc2\x64\x9d\xf3\x19\xb4\x94\x39\x6d\x49\x41\xc6\x87\x38\xa0\x69\xec\x49\x43\x26\xf5\x2c\x71\xf3\xbc\xbc\x4f\xf0\x20\xdb\x28\x05\x07\x01\x23\xe9\x87\x20\xfb\x42\x4a\xd6\xda\xc6\xd9\x94\xae\xd3\xc6\xc7\xd0\x5f\xa4\x31\xd2\xd6\x0e\x72\xbc\xd4\xfa\x8e\x94\x79\x5e\x87\x29\x83\x43\xea\x1e\x4e\x53\xd6\x49\x6b\x9d\xb5\xed\x71\x09\x84\x53\xd6\x2f\x9f\x58\xb7\x75\xb8\x94\x52\x82\xc8\x2f\x19\x97\xca\x2b\x65\xa0\xb4\x29\x7f\x29\xe4\xa9\x41\xa6\x81\x9b\x19\x2f\x7c\xec\x0d\xbb\xc0\x63\x1c\x3b\x26\x58\xd1\x22\x18\x10\xb0\x3f\x5e\x1c\x93\x43\xb1\x3e\xcb\xcf\x8c\x17\xd9\x1a\x81\xaa\x35\x39\xe6\x58\xa8\xa5\x8c\x1d\x91\x26\xfe\xd9\x46\x56\x31\x6c\x9f\x4a\xc0\x13\x7f\x78\x2b\xb0\xf4\x1a\xbe\xa2\xe4\xd8\x49\xef\xb8\xa4\x43\x58\xda\x47\x43\xe2\xd7\x85\x77\x86\x9f\xe2\x7f\x4d\xf2\xac\xaa\x50\xef\xe5\x11\x2c\x82\x90\x39\x5a\x1f\x2f\xcc\x13\x5b\xd3\xc1\xc3\x67\x8f\x06\x6e\x91\xb9\x83\xa3\x61\x39\x2b\xb3\x86\x6c\x71\x03\x26\xd6\x35\x3f\x36\x48\x44\x10\x9e\x97\xd4\x73\x5b\x7a\x17\xdc\x69\x61\xbb\xe2\x52\xbf\x77\x42\xbb\x2b\xb4\xe1\xea\x43\xbf\x8d\xe6\x69\xca\x18\x42\x6a\xf6\xd6\x46\x5f\x33\x14\x34\x18\x69\xcc\xa4\x74\x05\xe7\xa3\x0d\x16\x2c\xbd\xcb\xd8\xd0\x74\x5c\x4a\x41\x6b\xe5\x91\x34\x39\xee\x46\x9d\x95\x65\xe9\xca\xb2\x74\x40\xf5\xcd\x35\x66\xa8\x84\x3c\xe1\x68\x73\x30\x58\x32\x22\x1a\x3a\xe7\x46\x44\x34\xbe\xef\x60\x78\xee\xa3\xef\xae\xed\xfc\xfa\xb5\xd5\xff\xb6\x7d\x9c\xff\xf1\xb0\xcc\x9e\x24\xd0\xa0\xa1\x4b\x00\x18\x47\x1b\x83\x92\x36\x07\x96\xf6\x0f\xc6\xc5\xcd\xdb\xe3\x72\x06\xd4\x27\x60\x5c\xfd\xb5\x62\x7e\xb1\x24\xbf\x48\xb2\xad\xbc\x5a\x3b\xf4\x8d\x97\x38\x65\x5c\xdb\x73\x0a\x77\x68\x2f\xcd\x88\x94\xed\xce\x65\x8d\xc3\x4a\x18\x8e\x9b\x87\xbe\x46\x7d\xaa\xbc\x21\x1e\x58\xe6\xb1\x4d\xbe\x35\x59\xd6\xfa\x7e\xaa\xae\xba\x60\xb9\x61\x24\xcb\x91\xaa\x1f\x8d\x07\x2d\x6e\x49\x6f\x68\xc7\xa1\x65\xe5\x04\xa6\x64\xc7\xb7\x22\x2e\xd5\x98\xfc\x5d\x9b\xf1\x68\x46\x05\x89\x67\x60\xd9\xf2\xe6\x41\x36\x2c\xff\xd5\x0c\x23\x4e\x3f\xe0\x8e\xe1\x81\x07\x1e\x30\x4f\x3e\xf9\x24\xa7\xad\x39\x15\xa4\x83\x21\xee\x8b\xb1\x04\x3a\x18\x97\xc7\xc6\x91\x5d\x9b\xe7\x1b\xa3\xc2\xac\x56\x37\xeb\xf2\x3d\x25\x1e\x85\xb7\x1e\xa2\xcb\x86\x9a\x46\x80\xd4\x7e\xd1\xd8\x09\x50\x0e\x8d\xdb\x74\xeb\x02\xf3\x05\x9f\xda\x14\x6a\x98\x13\x8c\x9e\x63\xb8\xc1\x20\x09\x35\x6e\x00\x60\x87\x99\x99\xc5\x53\x07\xc7\xf2\xca\x18\xb1\xb7\x67\x90\x97\x74\x61\x75\x9e\x3d\x7e\xfe\x68\x70\x6e\x65\x91\xcd\x4e\x06\xf6\xf0\x78\x68\x4b\xd4\xec\x48\xe3\x91\x07\x02\xaa\x3b\x25\x94\x65\xa3\xff\xd9\x43\x9b\xa7\xe3\x7f\xd6\xc0\x95\x6d\x2a\xbd\x6d\x92\xa4\xe5\xd3\xfa\xbc\x84\x6f\x9b\x2d\xb6\xe1\x0e\x41\xea\x90\xae\xbc\xa9\x41\x4b\xe6\x93\x13\x3e\x59\x1e\xa9\x73\xf1\xb5\xaf\x7d\xcd\xfc\xf0\x87\x3f\x74\x40\x63\x3f\x1e\x01\xf5\x11\x67\x78\x2f\x4b\xf0\xb0\xa0\xda\x97\x37\x1a\x95\x66\xf2\x91\xab\xab\x4f\x7e\xf4\xdd\xf5\xff\xfa\xe0\xde\xf8\x7f\xac\xcd\xb3\x4f\x65\x8e\xce\x81\x5f\x42\x20\x0a\x9c\x39\x6c\x0d\x8b\x6c\x15\xc0\xde\xf1\xb0\xbc\x75\x34\x2c\xa7\xde\xe3\xec\x50\x1b\x31\x8d\xa3\xbf\x61\x32\x71\xf1\xe2\x45\xba\x7a\xf5\xaa\x2c\xaf\xae\xce\xd2\x65\xe1\x70\xb4\xe2\x00\x00\x20\x00\x49\x44\x41\x54\x97\xf1\x5a\x7d\x4a\x3d\xd1\xd5\x4e\xa9\xb6\xd6\xe0\xfb\xe0\x48\xb5\x71\x08\x52\xfe\x34\xdc\x29\x19\x48\xe1\x4e\x19\x3c\xda\x38\xab\x8d\xa5\x6d\x86\x41\x97\x51\xc1\x03\x97\x61\xb9\xba\x72\x27\xfd\xb8\xef\xf8\xbe\x74\xaa\x48\x32\xdd\x66\x6d\xa5\x0a\x21\xd3\x35\x8b\x50\xc3\xd3\x26\x24\x5a\x63\xcb\x90\xaa\x90\x2e\x83\x67\xa9\x82\xd7\xd6\xd6\xe8\xa9\xa7\x9e\x8a\xe9\xec\xbe\x91\xb0\xa0\x1b\x05\x84\x5d\xe6\x14\xef\x39\x20\x22\x2a\x8c\xa3\x93\xa1\x9d\x0d\x2c\x99\xf0\x25\x69\x83\xfa\xd6\xa2\x6a\x30\x0f\x77\xac\x78\x43\x83\x1b\x2d\xd1\xb6\x60\x55\xe2\x6a\xf8\x08\xe9\xf3\xf0\xbb\x57\x2a\x9b\x22\xce\x8c\xd8\x12\x51\xc8\x56\x5b\x21\xf1\x5e\x00\x22\x40\xdd\xbf\x99\x60\xea\xb8\x1a\xbf\xe3\xfc\x39\x8f\x80\x79\x87\x34\x4b\x4e\x5a\x19\x7c\xbf\x0e\x63\xd9\xd3\x21\x93\x39\x6c\x0c\x4b\x73\xff\xc6\x2c\xbb\x7f\x6b\x9a\x0f\x1c\x70\xfb\xf6\xa8\x9c\x96\x95\x87\x28\x6c\x38\xe4\xd5\x1f\xdd\xe2\xfe\x39\xee\x7b\xf9\xd8\xc7\x3e\x46\x41\xb1\x8b\xa0\x75\xa4\x94\xf7\x4d\x83\x6b\x1b\x08\xf9\xbb\xe6\x7e\x4e\xe1\x68\xa3\xa3\x0d\x6a\x29\x58\x6d\x60\xd6\xf8\x4c\xd1\xd5\x70\x9f\xa6\x7e\x38\x2d\x39\x38\xc9\x32\xa1\x23\x5d\xba\x95\x8d\x88\x97\x75\x28\xe3\x8d\x42\x27\x04\x5e\x26\x4d\xe1\xa6\xf8\x97\x83\x23\x87\x07\x96\x69\xa7\x64\x41\x2e\x1d\x70\x7c\xbc\x3c\xf2\x19\x5f\xfe\xf2\x97\xcd\x47\x3f\xfa\x51\xfa\xc6\x37\xbe\x61\x9f\x7d\xf6\x59\xc3\x3d\x2d\x1e\xd6\x00\xc8\xa8\xba\x97\x25\x47\xd8\xcb\x42\x34\x72\xce\x8d\xef\xbf\x3d\x3a\xf7\xf1\x2b\xeb\x9f\x7a\xe2\xc6\xca\xff\xd8\x3e\x1e\xfc\xee\xb8\x30\x8f\x19\x60\x05\x5e\x4f\xd4\x8d\x53\x3d\x51\xe8\xeb\x20\x93\x59\xda\x18\x5a\x32\x8b\xcc\xdd\xba\x3d\x2e\x6f\xcd\x73\x17\xae\xa7\x0f\xa7\x8d\x1a\x37\xc1\x12\x91\xbb\x78\xf1\x22\x9d\x3f\x7f\x1e\xc3\xe1\x90\xde\x79\xe7\x1d\x5e\x5e\x28\xf5\x20\xbd\x00\xb2\x4d\xda\xda\x98\xcb\x55\x0a\x37\x6f\xbf\x36\xd9\xd5\x64\x0f\xd0\xdb\x3d\xd5\x07\xb5\x49\x78\x4a\x96\xdb\x96\xb2\xba\x64\xba\x0b\x26\xc5\xb7\xe6\xad\x6a\xab\x1f\x29\xd3\x10\x71\x9c\x1e\xe7\x5d\xd6\x3d\x8f\x97\xf5\xc3\xe1\xb5\x25\x39\xd5\xd0\xcb\x12\x88\xba\x9e\x65\x68\x74\x34\x41\x5c\xdb\x34\xab\xe1\x6a\x2b\x60\x48\xd3\x14\x42\x5b\x05\x4b\x21\x91\xb4\x35\x4b\xd3\x1c\x1e\x1e\xda\xdd\xdd\x5d\x7a\xec\xb1\xc7\x2a\xc6\xea\x1b\x75\x9b\x9b\x53\x63\x54\x63\x29\xa3\x52\x26\x04\x37\xcf\xac\x9d\xe5\x6e\x31\x2c\x69\xb0\xba\xc8\xd6\x87\x05\xad\x84\x81\x3c\x98\x05\xd1\xf0\x08\xfb\x4d\x78\x6d\x20\x0c\xfc\xd4\xd8\xa3\x02\x8a\x66\x06\xdb\xff\x82\xc6\x66\xdd\x00\xd1\x38\x11\x84\x1a\xa6\x36\x9e\x02\xa9\xb0\x0c\x54\x1b\x4a\xf5\x07\x1b\xc3\x72\x56\x80\x6c\x5a\x98\xfc\x37\xe0\x5e\xaa\x25\x01\x5b\x1b\x69\x44\xc6\x61\x3c\x28\xcd\xd9\x95\x45\xf6\xe0\xd6\x49\xbe\xbd\x3a\xcf\x6c\x91\xb9\xe3\xa3\xb1\x5d\x00\x71\xaf\x0b\xd5\xd5\x1b\x2b\x9e\xa3\x76\xc6\x18\x24\x3c\x30\x4e\x79\x4e\x19\xb2\x1a\x9c\x8c\x4f\xbd\xf3\x5f\x2e\xfb\x5a\x9e\x36\x3a\x29\x1e\x53\xb0\xa9\xb2\x68\xf9\x4d\x4b\x5a\x1b\xed\x14\xdf\x9c\x16\xff\xd3\xf8\x94\xca\x53\x73\xe5\xcb\xfe\x2b\xf3\x73\x5d\xa0\xd1\x90\x7f\xb2\x1d\xd0\x82\x83\xf3\x27\xeb\xa2\x8d\x0e\xe7\x95\xc3\x68\x65\xd4\x06\xb4\xa5\xe7\xc7\x1f\x7f\xdc\xec\xee\xee\xba\x3f\xfb\xb3\x3f\x33\x1b\x1b\x1b\x18\x0e\x87\xe0\xfb\x59\xc2\x6d\xb7\xfc\x0f\x95\xb1\x52\xfd\x81\x46\xb9\xc5\xe4\x23\xef\xad\x3d\xf1\xf4\x7b\xab\x7f\xfc\xe0\xfe\xf8\xf3\x1b\xb3\xfc\xe3\x03\x4b\xf7\x10\x68\x18\x74\x43\xd4\x1b\x0e\x60\xb3\x9e\xa8\x5f\x08\x18\xe4\xd6\xac\xe7\x96\xca\x79\x6e\xaf\x1f\x8c\x8b\x03\x5b\x2d\xe9\x96\xde\xc3\xe2\x00\xf0\xeb\x22\x40\x44\xce\x18\x83\x7f\xf8\x87\x7f\x68\x2b\x3b\x6f\x03\xae\xc3\xb5\xbd\x17\x5a\x3d\xcb\xfc\x6d\x32\x25\xc7\xa1\xae\xfe\x1b\xf2\x6a\x46\xa6\x13\xe9\x92\xbe\x7c\x96\x74\xe4\xb8\x24\x79\x4d\xc9\x4c\xaa\xef\x70\xdc\x9c\xdf\x3e\xb2\x96\xaa\x9f\x54\xdd\xa6\xfa\x16\x4f\xd7\xfa\x16\xff\x4d\x3d\x4b\x1a\xa9\xbe\x68\x80\xfa\xca\x7f\x6e\xdd\xf4\x21\x16\x42\x5b\x43\x49\x5c\x21\x4e\x2a\x4d\xa9\x48\x35\x78\xcd\xa8\xe1\x79\xe4\xb8\xa9\x29\xc2\xb6\x32\x2d\x19\x30\xbb\xbb\xbb\xee\xd2\xa5\x4b\x72\xb3\x6e\xe4\x8b\x2f\xec\xb2\xbd\x2f\xe1\x17\x00\x8c\x23\xd0\x2c\xb7\x45\x61\x5c\x31\x2a\xcd\x60\x65\x91\xad\x0f\x4a\x1a\xd7\xbe\x96\x90\xa9\x36\x5a\x62\xa5\x79\x85\x52\xdd\xa3\x52\x99\x11\x71\x2f\xad\x5f\x13\xaa\xaf\x6a\xa1\x9a\xba\x2f\x02\x85\x75\x23\x8e\x94\xc4\x02\x12\xc3\x11\xe2\xfc\x8d\x0d\x8d\xc2\x04\x05\xc7\xd8\x54\x0d\x16\x28\x71\xa9\x4b\xee\x38\x6c\xa5\xf2\x68\x94\x97\xb4\x35\x29\xb2\x0b\x1b\xb3\xfc\xc2\xc6\x2c\x5f\x1b\x96\x66\x76\x3c\xb0\xc7\x8b\xdc\xb9\x06\x38\x67\xd7\x7f\x43\x84\x79\xc5\xda\x4e\x1e\xf1\xd0\x66\x88\xdf\x09\x9c\x0c\x77\x92\xe7\x57\x11\xee\x84\xaf\xae\x49\x8b\xec\xff\x29\x78\x2e\xa5\x72\x90\x68\x83\x95\x4a\x53\xa3\x91\xa2\x2f\xfb\x6e\x0a\x37\xd0\x0f\x9f\x46\x57\x9b\x9c\x49\x3a\x1a\x1f\x49\x98\xdd\xdd\x5d\xf7\xdc\x73\xcf\x99\xf1\x78\x1c\x8f\x38\x33\x03\xde\x00\x88\xc7\x9b\xc5\xd2\xd0\x28\x2f\x69\xe5\xde\xc3\xe1\xf9\x0f\xbf\xbf\xfa\xb1\x5f\xbb\xb6\xf2\xdf\xcf\x1f\x8d\x7e\x67\x52\x98\x5f\xcb\x1c\xd6\xe1\x28\x5b\x3a\x01\xc8\x7a\x95\x0b\x1e\x55\xd4\x7d\xd3\x38\x4c\x06\xa5\x99\x18\x60\x3e\x1d\xd8\x6b\xb7\x47\xe5\xb1\x23\x94\x1e\xcc\xb2\xef\xeb\x58\xd4\x13\x39\xc7\xfa\x9f\x56\x6e\x29\x33\x7c\xf0\x3c\x4d\x5d\xa5\xea\x5b\x1b\x47\xda\x82\x26\x07\x5c\x6d\x69\x5e\x04\x8d\xbe\x36\xc6\x69\x65\x48\xf1\xd7\xe7\x39\xd0\x5d\x1a\x97\x14\xdc\x29\xf9\x6e\x93\xcd\xb6\xba\xef\x2a\x6f\x5b\x5d\x77\xe9\xd2\x14\x4f\x4b\x6d\x4c\x2c\x41\x53\x1e\xa9\x78\x0d\xa6\x0f\xec\x07\x0d\x6d\x34\x4e\x93\x76\x6a\x5e\xfd\x9a\xb2\xfc\xe3\x77\xbc\x8c\x01\x8c\xfd\xed\xba\xf1\x7e\x17\xe7\xdc\xc6\xb8\x30\xdb\x0f\xed\x8d\x1f\x7f\xea\xda\xca\xc7\x1e\xdc\x1f\x3f\x39\x5e\x98\x0d\x79\x33\x6d\x6d\xe5\x2d\xdf\xb1\x22\xb7\x93\x34\x0c\x00\xf6\x12\x97\x85\x18\x6e\x2d\x68\xf4\xa0\xf1\xa3\x58\x1a\xd2\x16\xd2\x2c\xb6\x54\x48\xe5\x6d\xe2\x71\xd6\x12\x0e\x66\xb9\xbd\xb2\x37\x29\x7e\x74\x65\x73\xf6\xff\xbc\x7d\x66\xfa\xf2\xfb\xeb\xf3\x6b\x8b\xcc\xf1\x3b\x5f\x0a\xe7\x5c\x41\xd5\x17\x54\xc3\x29\x87\x70\xbf\x04\xc0\xda\xf7\xf2\xe5\xcb\x38\x3a\x3a\xc2\xf7\xbe\xf7\x3d\xe9\x81\xd3\x5c\x94\xfc\x19\x0c\xa6\x81\x93\x85\x36\xf9\xd7\x70\xb7\xe1\xd5\xde\xbb\xf2\xf7\x29\x83\xe4\xbd\x8d\xae\x56\xd6\xbe\xbc\xa7\xca\xdf\xc6\x1f\xc7\x25\x79\x95\xfc\xb7\xbd\xcb\xfc\xa9\x7a\xea\x82\xe5\xbc\x77\xd1\x4a\x95\x4d\xcb\x9b\xc2\x0d\x00\xb8\x78\xf1\x22\xd6\xd6\xd6\x70\xdf\x7d\xf7\x61\x63\x63\x83\x7b\x2f\x0c\x3b\xbd\x63\x5c\xf5\x15\x67\xe3\x9f\x73\x8f\x6b\x08\x20\xcf\x2d\x0d\x37\x66\xf9\xc6\xfd\xfb\xa3\x87\x1f\xda\x1b\xff\xe7\x0b\x07\x83\x4f\xae\xce\xb2\x8f\x64\x8e\xb6\x09\x94\x7b\x6d\x12\x27\x27\xfc\x8e\xa6\xae\x50\x92\x3b\xbe\x3d\x2a\x7e\xf2\xc6\xd9\xe9\x3f\xbc\x7c\xe1\xe8\x7b\x37\xd7\x16\x37\x00\x1c\x03\x98\x3a\xe7\x96\x3e\x9e\xea\xfb\x25\x0e\x0f\x0f\xf1\x37\x7f\xf3\x37\x5a\x7b\x76\xd5\x4d\xdf\x3c\x7d\x65\x42\xcb\xdf\x05\x2b\xf9\xd0\xf2\xb6\xe9\x94\x36\x79\x68\xcb\xab\xf1\xab\xf1\x93\x2a\x5b\x5b\x39\x52\x79\x35\x98\xbe\xfc\xa4\xf4\xc2\x69\x79\x69\xcb\xdf\xc8\xa3\x1d\x87\xe6\x41\xc6\xf7\xb5\xf2\x64\x48\x59\x5a\x1a\x3e\x1e\xcf\xff\xda\x2c\xc9\x50\xc0\xbe\xe5\xe8\x33\x6b\x6b\x04\xef\x79\x69\x22\xf1\x6b\xbd\x3e\x0f\xb9\xe6\xee\x7e\xef\xac\x20\x94\x06\x6e\x96\xdb\x85\x25\xd8\x51\x61\xc6\x93\x45\xb6\x9e\x39\x1a\x54\x5f\x68\xae\xad\x92\xe6\xff\x41\xcd\x34\x8d\x16\x1e\xa8\x06\xf7\x4c\x57\x96\x07\x49\x03\x04\x60\x1e\x9c\x3a\x81\x53\x6a\x5c\xef\x0f\x34\xe3\x42\x5e\xe5\x23\x91\xcd\xa3\xd9\x22\x70\xa3\xca\xff\xb7\xe4\xe1\x09\x15\x15\x0d\x27\x22\x02\x8d\x73\x4b\x5b\x93\x85\xb9\x6f\x73\x9a\xdf\xb7\x36\xcf\x56\x73\x47\xb3\xd2\xb8\x79\x91\xc1\x5a\x02\x39\xc4\x0b\xb5\x28\xec\x39\x12\x4b\x47\xf0\x6d\xe2\x36\x37\x37\x71\xee\xdc\xb9\x70\x02\x49\xce\x3e\x52\x33\x0d\x3e\xa3\xb2\xe8\x96\xad\xbe\x1e\x06\x39\x63\x93\x34\x53\xb3\x46\x1e\x27\x67\x25\x5d\x65\xd0\xe4\x5f\x83\x0b\x38\xa5\x01\xa2\xd1\x4e\xd1\x95\x33\x3c\x39\x30\x69\x7d\x36\xfc\x49\xda\x92\x7f\x09\x13\x9e\x9d\x78\x36\xca\xb3\xe9\x09\x1b\x7e\x91\x80\xe1\x7f\x01\x4e\xce\xc0\x39\x1d\xad\xfe\x97\xf8\xbe\x7a\xf5\xaa\xfb\xdc\xe7\x3e\x47\xe3\xf1\xb8\xde\x93\x56\xef\x9d\x33\xa8\xf6\x23\x6a\xcb\x42\xc3\xcc\xd1\x68\x6d\x9e\xaf\xdd\x7f\x7b\xf4\xe0\xe3\x37\x27\x3b\x4f\xdc\x98\x7c\xee\xbe\xdb\xa3\xdf\x5b\x99\x67\x1f\xce\x1c\x6d\x11\x55\xa7\x1a\xfd\xe2\x74\xec\xc3\xfc\x8e\xa9\x58\xe1\xd1\x98\x71\x70\x6c\xf6\x43\xa0\x41\x6e\x69\x25\xb7\x26\x2f\x32\x77\x73\x6f\x52\xdc\x5c\x18\xbb\xf0\xde\x66\x1b\xbc\x2c\x40\xfc\xe8\x20\x11\x91\x1b\x0e\x87\x10\x57\x16\x68\x75\x0f\xd4\x3a\x53\xf6\x35\x59\x57\x51\x65\x24\xda\x43\x6b\x63\x0d\x06\x4a\x9a\xfc\xd3\x3c\x00\x29\xf9\x02\x83\x95\xbf\x29\x79\x43\x02\x87\xa4\x9f\xea\x1b\xb2\x8c\x72\xa0\x97\xfd\xc7\x20\x5d\xce\xae\x3e\xcf\xbd\x4e\x1c\x77\x28\x9f\x84\x95\xf9\x52\xba\x28\xe4\x95\xb8\x65\x1f\x6c\xf0\x16\xbe\x08\x9a\x52\xca\x3c\xa4\x14\xb8\xa6\xb0\x64\xe0\x30\x52\x31\xf3\x3c\x21\x3d\x30\xac\x09\x32\xaf\x7c\xd9\x10\x6d\x86\x88\x51\x60\xb4\x06\xe5\xc1\x00\x70\x9f\xfc\xe4\x27\xcd\x95\x2b\x57\x96\x96\x8c\x98\xd1\x12\xde\x65\x87\xf3\x63\xb2\xc3\x22\x83\x9d\x0d\xec\xcc\x1a\xd8\xc9\xc2\x8c\xab\x3b\x5e\x28\x0f\x1b\x61\x49\x64\xe2\x48\x62\x70\xae\x5a\x26\x0a\x54\x83\x5e\x71\xcc\x20\x88\x06\x88\x6b\xec\x9b\x61\xdb\x63\x1a\x9b\x80\x83\x61\xa2\x9e\x6c\x62\x78\xe3\x86\x60\x61\x78\x84\x07\xf5\x90\x51\x8d\x2e\xd2\x8d\x11\x32\x84\x8f\x36\xfa\x74\x03\xca\x8c\xc3\xda\xb0\x34\x17\xd6\x66\xf9\x83\x9b\xb3\x6c\x73\x58\x1a\x47\xc0\xa2\x34\xce\x96\x99\xb3\x8e\x59\x7a\xec\xae\x17\x8e\x9d\xef\x8f\x71\x17\x2f\x5e\x24\xfe\xf1\xc6\x9e\xe1\x34\xb0\x21\x70\x25\x7c\x5a\x9c\x9a\x1c\x23\x11\xd7\xb7\xdf\x72\x45\xdf\x15\x38\x9c\xd6\x67\xba\x82\xa6\x98\x34\x1d\x41\x0a\x7c\x8a\x47\x99\x4f\x7b\x4e\xe1\xe1\x52\xd7\x17\x87\xd4\x05\xa9\x3a\x91\x0a\x5c\xc3\x4d\x58\xae\xc3\x08\xff\x91\x8f\x7c\x84\xae\x5d\xbb\x16\xaf\xea\x0f\x13\x1f\x7e\x47\x14\x11\xe5\x5e\x8e\xe3\x45\x72\xce\xb9\x01\x81\x46\xa3\xc2\xac\x9c\x3b\x1e\x9c\x7d\x64\x77\xfc\xf4\x13\x37\x26\x9f\x79\x78\x77\xfc\xb9\xad\x93\xc1\xa7\x06\xd6\x3c\x48\xa0\x61\x30\x42\xc2\x5e\xb9\x50\xed\x0e\x5e\x0f\x2c\xed\x81\xe3\x8a\xa4\xa9\x13\x8c\xc3\x68\x50\x9a\xd5\x81\x25\x4c\x07\xf6\xdd\x83\x49\x79\xdb\x9a\x6a\xaf\x8b\x47\x61\x51\xf7\xb9\xa0\xbf\xdd\x8b\x2f\xbe\xe8\xbe\xf4\xa5\x2f\x99\x97\x5f\x7e\xb9\xad\x1d\xb4\x01\x56\x4e\x48\xdb\x60\x1b\xf5\x8a\x76\xb9\xd3\xfa\x83\x36\x56\x74\xc9\x94\x7c\x4e\x05\x0d\x5e\xe3\xa9\xad\xef\xf0\x7c\x9a\x4c\x07\x98\xd4\x78\x89\x3b\x88\xd7\xfa\x9d\x56\xaf\x52\xd7\xa5\xea\x27\x55\xc7\xa9\x3e\x6a\x53\xf9\xb2\x04\x52\x2d\x74\x35\x4e\x9f\xc2\xa7\x04\x4e\x56\x80\x56\xa1\x1a\x9d\x2e\x45\xae\xc1\x76\xe1\x5c\x8a\xbf\x72\xe5\x0a\xfd\xd6\x6f\xfd\x16\x7d\xfb\xdb\xdf\xb6\xc1\x78\x11\x1f\x50\x24\x00\xd6\xef\xb7\x08\x1d\x36\xc4\x13\x11\x55\xc6\x4b\xee\xec\x74\x60\x17\x8e\x50\xae\x2e\xb2\xd5\xf1\x22\x5b\x33\x8e\xb2\x60\xee\x34\x96\x77\x1c\x1a\x97\xc0\x05\x6c\xf5\x46\xdd\xa6\xe1\x50\x13\x43\xf8\x1e\x62\x5c\xaf\x8e\x28\x9c\x2e\x25\x95\x6e\xab\x4f\x35\x45\x1b\x45\x1a\x3d\x2c\x3d\xf2\xc5\x8c\x93\x50\x86\x10\x43\x3c\x3e\xe2\x6d\x7e\x68\xa0\xf6\xd8\xb0\x38\x6a\x60\xc8\x73\x47\xdb\x93\x6a\xe3\xee\xbd\x6b\xf3\x7c\x32\x28\x8d\x75\x04\x6b\x8d\xb3\x65\xf8\xba\x11\xa2\xe7\xa5\x42\x5b\x7b\xc3\xf8\x7e\x24\x02\xaa\x2f\xdb\x86\x3d\x30\x61\x13\xe4\x52\xcb\x37\x95\x67\x1f\x25\xc7\xd3\x34\xe5\xa1\x29\xac\xb6\xfc\x32\x2d\x95\x5f\xe3\x99\xd3\x04\x9a\xb3\x18\x6d\x70\xe0\xb8\xc1\x9e\xe5\x4c\x52\xa3\xa5\x19\x37\x72\xe0\xe1\x22\x27\xcd\x57\x9e\xc7\x26\xf0\x71\xfe\x38\x8c\xa4\xaf\xd1\xd1\x06\x07\x4d\x2f\xb4\xd5\x0d\x44\x5e\xe9\x45\x42\x0b\xac\xec\x06\x08\x32\xf7\xec\xb3\xcf\x9a\x87\x1f\x7e\x58\x6e\xba\x8d\x06\x0b\x10\xbf\xe0\x6c\xc2\xa6\x5b\xe7\x5c\x4e\x44\xa3\x61\x69\xc6\x9b\xd3\x7c\xeb\xfe\x83\xd1\x23\x8f\xdf\x98\x3c\xf3\xd8\xcd\xc9\xef\x9f\x3f\x1c\xfe\xce\x64\x61\x3e\x9c\x81\xd6\x01\xc4\xcb\xb3\x09\xe2\x83\xaf\x0e\x08\xdb\xf2\xe2\x1e\x3a\xe6\x49\xe5\x9b\xf1\xe3\x57\xe8\x01\x84\xfd\x2e\xc3\xd2\xac\x0e\x4a\x73\xb2\x3f\x2e\xae\x1e\x8e\xca\x13\x00\x16\xd4\xd4\xdb\xcc\x98\xa1\x67\x9e\x79\x06\xdf\xf8\xc6\x37\x34\x59\x4a\xc9\xb3\x36\x5e\xf0\x3a\xe6\xf9\xe4\x7b\x6a\x62\x2b\x3d\x3a\xd2\x80\x91\x30\x80\x2e\xc7\x29\x79\xd0\x0c\x0f\x0d\x5f\xc8\xcb\xcb\xaf\x79\xfc\xb4\x81\x5c\x8e\x8f\x24\xfe\x78\xdd\x05\x7a\xa9\xc1\x9f\x97\x41\xe3\x15\x22\x8d\xb7\x1f\x97\x75\xd9\xdf\x24\x4d\xde\x5f\x65\xff\x97\x63\xb2\x86\x5b\xad\x7b\x7e\x1c\xba\x8f\x92\xee\x13\x34\xc6\xb5\xa0\x09\xb0\x56\xc9\x12\xb7\xa6\xc0\x4f\xcb\xe3\x69\xf3\xb8\xcb\x97\x2f\x3b\xa0\xbe\x9c\x8e\xaa\xbb\x0b\xb8\xd7\x85\xd8\x26\x5d\x12\x69\x95\xbb\x97\x80\x79\xe6\xca\xe3\x41\x39\x25\x90\x5d\x9d\x65\x1b\xe3\xc2\xac\x12\xc8\x34\x0c\x11\xc0\x0f\xe6\x68\x18\x06\xf1\x24\x11\xb1\x46\x72\xe1\xa3\x88\x2e\xde\x7a\x4b\xde\x82\x59\x5a\xc6\xf1\xc6\x48\xbd\xc9\xb7\x49\x27\xe2\x8c\x79\x6a\xca\xce\xbf\x6a\x7b\x68\x22\x4f\xb5\x82\x6b\x1a\x5c\x81\x27\x6f\x25\x35\xca\x19\xc0\x48\x20\x65\x69\x04\xc0\x80\x26\xc3\xd2\x3c\xb0\x36\xcf\x1e\xda\x3a\xc9\xcf\xad\xcf\xf3\x61\xe6\xc8\x95\x06\x65\x49\xce\x5a\x83\x60\xe9\x84\xb6\xa8\x51\xd7\x07\xbe\x1a\x06\xcc\xce\xce\x0e\x3d\xfa\xe8\xa3\xdc\x95\xdd\x68\x73\xf6\x2b\xfb\x44\xea\x59\x7b\x0f\x71\xb2\x93\x6a\x0a\xb6\x0d\xb7\x96\x9e\xe2\x99\xd3\x4c\x29\x42\xad\x7c\xf2\xb9\x2d\xc8\x3e\xdb\x86\x5b\xba\xc1\xe5\xb3\x86\x8f\xa7\xa5\x8c\x06\x09\xcf\xd3\xa5\x9e\xe8\x2a\x93\x84\xe5\x38\x79\x1c\x57\xc6\x7c\xd0\x90\x4b\x14\x11\x76\x7d\x7d\x9d\xe6\xf3\xb9\xdd\xd9\xd9\x31\x57\xaf\x5e\x75\x5f\xfc\xe2\x17\xc9\xeb\x10\xfe\x6d\xa1\xc6\x07\x11\xa9\xbe\x44\x6e\x40\x44\x39\xbc\x97\x25\x77\x34\x5e\x99\x67\x6b\x17\x6e\x0f\xef\x7f\xe2\xe6\xe4\x23\x4f\xdc\x58\xf9\xdd\xfb\xf7\x47\x7f\xb0\x3e\xcb\x7f\x33\xb7\xe6\x3e\xe3\x75\xba\x57\x01\x75\x05\x12\xdb\x37\x47\xa8\x6e\xc3\x26\x17\x4f\x2b\x3a\x57\xa7\x85\xcd\xf8\x44\x01\x87\xf3\xf0\x00\xaa\x23\xd2\x2b\xa3\xd2\xac\x13\xe8\xfd\xeb\xeb\x8b\x6b\x8b\xcc\x15\xa0\xb8\x49\x37\x5c\x4a\x17\x4e\x1a\x39\xa0\xbe\x6f\xe9\xbe\xfb\xee\x33\x87\x87\x87\x29\x19\x6f\x33\x82\x65\x1b\xf3\x77\x28\xbf\x9a\x9c\x48\x19\xd5\xda\xb5\x8f\x1c\x2c\xb5\xb1\x28\x07\x44\x3e\xde\xff\x20\xe8\x00\x4d\x19\x4a\xf5\x01\xc9\xab\xe4\x45\x33\x5c\xb4\xb2\x70\x7e\x65\x9c\x34\xe6\x38\x1e\x24\xf2\xcb\xf2\x6b\xc6\xa0\x5c\xda\x95\x76\x81\x51\x70\x39\x91\xa7\x51\x5e\x79\x8f\x8b\xb4\xb8\x24\xd3\x32\xb4\x59\xcb\x01\x5f\x2a\xbf\x66\x21\x87\x78\xae\x18\x78\x3c\xd0\xac\x84\x36\x25\xdb\x36\x83\x92\xe5\xd4\x3a\x4c\xaa\x7c\x0d\xe3\x45\x29\x6b\xfc\x76\x07\xd0\x3c\x7d\x04\x54\x2a\x60\x91\xbb\xf2\xf6\xa8\x9c\x66\x0e\x76\x7d\x96\x6f\x8e\x0b\xb3\x0a\x3f\xa4\xfb\x0f\xb1\xd6\xc7\x96\xd9\xb1\x1c\x59\x99\xc4\xfe\xe7\x06\x01\xff\xbc\x40\x0d\xef\xf1\x56\x48\xeb\x75\x74\x9f\xb4\xe4\x5d\x01\x10\x0d\xa5\x90\x93\xf8\x2f\x04\x66\xf1\x1e\x68\xd7\xec\x47\x20\x2e\x91\x88\x86\x14\x35\xd2\x79\xe3\xb2\x5f\x63\x1c\x6d\x8d\x0b\xf3\xa1\xf5\x69\xfe\xe8\xd6\x49\xbe\xb9\x36\xcf\x32\x02\x95\xf3\xdc\x96\x96\xe0\x4a\x8a\xf7\xe9\x70\xe3\x85\xb3\x47\xac\x8d\x88\xfc\xbd\x13\xcf\x3c\xf3\x8c\xfc\x84\x00\x0f\x32\xee\x4e\x0c\xe5\x36\x9c\x77\x8a\xab\x2f\x1f\xbc\xca\xbb\xca\xa7\xf5\x83\x2e\xbc\xf2\x59\x83\xe9\xd3\xb7\x64\x7f\x97\x83\x91\x7c\x96\xc6\x89\xa6\xf4\x35\x7c\x9a\x97\x46\xe2\x4e\xd5\x01\xd7\x39\x5c\x99\x2e\xe1\x58\x5d\x5d\xa5\xd5\xd5\x55\x3a\x38\x38\xb0\x00\xf0\x27\x7f\xf2\x27\xb4\xb3\xb3\xc3\x0d\x14\xf2\xb2\x6a\xbc\x2c\x06\x63\x25\xec\x67\xa9\xee\x63\x01\x0d\x09\x18\x0e\x4b\xb3\x72\xf6\x78\x70\xf6\xd7\xae\xaf\x3c\xf9\xd4\xb5\x95\xdf\x79\x70\x6f\xfc\x5f\xb7\xa6\xf9\x67\x46\xa5\x79\x94\x40\xe3\x06\x93\x0e\xca\xe6\x7f\x8a\x69\x75\x5f\x0e\xf7\xb8\x50\x13\x9e\xc0\xf6\xb6\x35\xfb\x3c\x81\xf2\x81\xa5\xb5\x95\x85\x99\x4c\x07\xf6\x8d\xdd\x49\x71\x60\x09\x85\x37\x58\xc2\x7e\x97\xd0\xc9\xa2\xc1\xb0\xb3\xb3\x43\x4f\x3d\xf5\x94\xbc\xed\x9a\xd7\xb5\xa6\xcf\x35\x99\xe5\x2a\xa2\x4b\x66\xe4\xc0\xd9\xd6\x07\xb4\xb1\xa8\xad\xbf\xa4\x06\x60\x59\xb6\x40\x5b\x1a\x38\x9a\x21\xd4\x25\x83\xdc\x68\x93\xf2\xae\x95\xed\xff\x67\xef\xdd\x7f\x24\x39\x8e\xfb\xc1\x88\xac\xea\xea\x9e\x9e\x9e\xd9\xd9\xd9\xd9\x07\x97\x4b\x8a\x5c\x3e\x44\xeb\x2b\x3f\x44\x51\x82\x21\xeb\xbe\x3a\x1b\x7e\x1c\xec\xf3\x41\xd0\xfd\x62\x18\x06\x6c\x03\x26\xff\x28\x12\x06\xfc\xba\x3b\x41\x07\x1b\xb6\xef\xce\x07\xd8\x3e\xc9\x3a\xd8\x82\xee\x6b\x93\xd2\x89\x16\x45\x4a\x24\xc5\xa5\xc8\xe5\x72\x76\x76\x76\xa6\xa7\xdf\x5d\x95\x79\x3f\x54\x66\x56\x64\x54\x64\x55\xf5\xec\xca\xdf\x5f\x2e\xc9\xde\xa9\xca\x8a\x8c\x8c\x7c\xc6\x27\x23\x5f\x31\x10\x22\xe5\x15\x97\x45\x6a\x33\x52\x59\xf0\xf6\x17\x6b\x53\x12\xb8\xa1\x32\x4a\x69\x17\xf1\x45\xd3\x01\x74\x5d\x5c\x5b\x87\xce\x2b\x15\x17\x96\x22\x30\x29\x13\x79\x05\xe1\x95\xab\xa9\x93\xe5\xb4\x12\x52\xe4\x19\xc6\x65\xe5\xb2\xf9\xe7\x9f\xff\xf9\x9f\x47\xa5\x14\x00\x54\x8b\x72\xdd\x19\x06\x7e\xde\x98\xde\xac\x5c\x8d\x40\x94\x9d\x36\x2a\xc6\x83\xe2\xac\x5f\x24\xc9\x85\x45\x7a\xb9\x57\x60\x06\xe0\xb6\x12\x92\x96\x89\xd5\x14\x8e\x9b\x02\xa2\xa3\x29\x3f\x2a\x32\x15\x10\x40\x20\x9d\x93\xed\x7c\xd0\x8e\xb0\xca\x83\xee\xc2\xc3\xe3\x80\xc4\x17\x8c\xbc\x68\x07\x07\x50\x3f\x6b\xa6\x0a\x0e\x74\x02\x08\x89\xbf\x93\xd5\x70\x7f\xd2\xb1\xd6\x40\x0f\x21\xa6\x61\x2a\x9e\x98\xa6\x06\x2f\x6d\xad\xd5\xd3\x17\x16\xe9\x13\xfb\xf3\x74\x77\x67\x99\x9a\x22\x31\x8b\x59\x66\xef\x3d\x02\x54\x76\x01\x2f\x17\xc7\xe6\x1b\x06\x00\xc6\x25\x83\x4e\x23\x01\x00\xf4\xfb\x7d\x85\x88\xa8\xb5\xa6\x75\x86\x03\xeb\x2e\xcf\xce\xb5\x01\xea\x4d\x14\xad\x44\x2f\x01\x7e\x89\x9e\x3a\x1e\xb6\xa9\xe3\x92\x9e\x39\x80\xe0\x3c\xa5\xb6\x2a\xc9\xd8\x44\x2f\xe5\x6b\x0c\xa4\xf0\xb4\x21\xfb\x4e\xdb\x7d\x4c\x76\x69\xba\x80\xf3\xa1\xb4\x3e\x7c\x96\x65\xaa\x28\x0a\xb3\x5e\xaf\xcd\x62\xb1\x30\x2f\xbd\xf4\x92\xa2\x80\x85\xd4\x49\x07\x5e\x14\x94\x7d\x31\xda\xa9\xa0\xc4\x18\xe3\xcf\x63\x49\x0c\x64\x5b\xeb\x64\xf7\x99\xa3\xe1\x8d\x9f\xbd\x3d\xfa\xcf\x4f\xdc\x1f\x7c\xe5\xe2\x2c\xfd\xf5\x41\xa1\x3e\xa9\x0c\x6e\x23\x94\x33\x3f\xb4\xfd\x07\x16\x51\x53\xf9\x07\x34\x64\xb1\x7d\xb0\x48\xd7\xf9\x3b\xf0\x42\x32\x89\x4c\x17\x67\x3d\x8d\x07\xc3\x55\xb2\xbc\x37\xca\x6f\xcd\x7a\x7a\x61\xb0\xbe\xde\x05\xc0\x9f\xac\x8b\x88\x68\x5e\x7e\xf9\x65\xfd\xe2\x8b\x2f\xaa\xb7\xdf\x7e\x1b\x97\xcb\x25\x57\xbe\x34\xaa\x58\x5b\xa3\x79\xce\x95\x75\x97\x3a\xd5\xd4\xc6\x78\x99\x37\xe9\x37\x0a\x20\x40\x78\x8e\xc9\x29\x01\xf8\xb6\x59\x09\xc9\xea\x04\x42\x5a\x24\x3e\x28\xfc\x62\xed\xab\x29\x3f\x25\xa0\xc8\xe5\xa4\x7f\x9b\xfa\x21\x49\xb7\x73\x9a\xc6\xbe\x50\xba\xab\x88\xba\xa6\xc8\x79\x67\x2b\x65\x1c\x2f\x54\x8e\xc4\x62\xe1\xa4\x0a\x22\xa1\x32\xc7\x27\x36\x9a\x6b\x2a\x28\xea\x27\xa1\x52\xa9\x33\xf4\xcf\xdf\xf9\xce\x77\xe8\x4d\xd2\xa5\x80\xd5\x59\x06\xc6\xbe\x57\xed\x9d\x2e\x88\xb1\x13\xcf\xeb\xc4\x14\xf7\x87\xeb\xf1\x68\x9d\xf6\xb6\x97\xc9\xc5\x9e\xc6\x0c\x01\xf9\x2c\x8b\x4f\x3c\x92\xaa\x13\x00\x0f\xfb\xad\x1a\x31\x19\xb2\x98\xb6\xa4\x0c\xee\x2a\x22\x09\xe6\xd3\x49\xc8\x56\xee\x06\xb5\x48\xc6\x2d\x84\xab\x93\x99\x6c\xe5\x0e\xd9\xd1\x00\x22\xaf\xb6\x78\x68\xba\xcb\x9d\x0e\xea\xea\x70\x9d\x3c\xb3\x37\x4f\x6f\x5e\x9e\x64\x17\x2e\x2c\x7a\xeb\x65\x4f\xcf\xa6\x59\xe1\x4c\x2e\x0a\x42\xa5\x23\x02\x18\xb0\x3b\x23\x5c\x67\xee\x80\x4b\x51\x14\xc6\x82\x16\x17\xfd\x79\x9f\x69\x12\xf8\xb3\x11\x68\x9b\xe8\x1e\x94\x86\xbb\x4d\xc3\x6e\xd2\x56\xa8\x1f\x6f\xff\x5d\xe3\xa1\x0a\x40\x92\xd3\xd1\x34\x75\x92\x31\x39\xa4\x7e\x85\xd3\x3a\x05\x2a\x29\x3e\x0e\x9e\x54\x51\x14\xfa\xc5\x17\x5f\x54\x6e\x21\xb8\x05\x2d\x14\xb0\xb8\xb0\xee\xaf\x02\x7b\xb4\x82\xb5\xb2\x64\x00\x90\x21\xe2\x60\x90\xab\xe1\x93\xc7\x83\xeb\x9f\xf9\x60\xe7\x73\xcf\xdc\x1b\x7e\xf9\x60\xda\xfb\x1f\xb7\x72\xf5\x9f\x12\x50\x3b\xee\x78\xc9\xb2\xb3\x31\x00\x58\x59\x48\xc1\x54\x20\x45\xea\x2f\x00\x7c\x7f\x65\xbf\x55\x8d\x8e\x8a\x89\x3e\xbc\xa9\x06\x3c\x0e\xd8\x18\xe8\x0f\x0a\x75\x69\xb0\x52\xf7\x0f\x77\x56\x77\x96\x3d\xbd\x34\x60\xdc\x56\x68\x7a\x28\x9d\x5f\xf3\xf2\xea\xab\xaf\x9a\xd7\x5e\x7b\xcd\x08\xa0\xc5\x89\x42\xfd\xa5\xbe\x9a\x3f\x37\x29\xda\xb6\xe7\xb6\x3a\xd1\x04\x6c\x9a\xd6\x8d\xd1\xf4\xf0\x67\xce\x3b\xd6\x26\x01\xe4\xf4\x3a\x7f\x0a\xea\x38\x1f\x0e\x00\x68\xdd\xa5\xb2\x34\xc9\xc7\x9f\xa5\x76\xd4\x96\x76\xfe\x2e\x19\x19\xba\xf4\x03\xb5\x32\x6b\x02\x2e\xbc\xf2\x50\x66\x12\x92\xe4\x0d\x5a\x42\x66\xdc\x8f\x8f\x56\x78\x21\x50\xd3\x53\xd3\xd4\x8e\x04\x3c\x40\xf8\x26\xc5\x4f\xc3\xc4\xac\x37\xa2\x7b\xfe\xf9\xe7\xcb\xbe\x81\xf4\x1f\x20\xeb\x5c\x0d\x00\xde\x22\xe3\xfe\x02\x80\x59\xa5\xa6\x38\x1e\xae\xc7\x5b\xb9\x4a\x46\xeb\xe4\x42\xaa\xb1\xaf\x00\x91\x9e\x68\x49\x06\x42\x5e\xb1\xf3\x33\x18\xfc\x8c\x92\x01\xdf\xdb\x94\x56\x0d\xbb\xde\x04\x9c\xe5\x06\x59\x66\x90\xa5\xb2\x58\x4f\x44\xa0\xe5\xad\x2c\xb5\x1d\x44\x06\x18\x40\x09\x2d\x3a\xd5\x68\xd0\x54\x91\xb0\x5c\x0a\xe2\x35\x55\x41\xd5\x76\x2a\x39\x19\x42\x19\xfb\x3d\x8d\xd7\x86\xeb\xe4\xb9\x8b\x8b\xf4\x93\x8f\x9c\x66\x97\x2f\xcd\xd3\x7c\x9e\xea\xc5\xa2\xa7\xdd\xd4\x99\x3f\x6d\xd4\x2f\xe7\xf5\x45\xe7\xf2\xd0\x5b\x5f\xfc\xed\xd3\xe7\xd8\x85\xe4\x9c\x64\x45\xe9\x1a\xee\x3c\xf1\xfd\xd7\xe2\xbb\x49\xbc\x9b\xe4\xc5\xa6\xe1\x9a\x14\x4f\x93\xa5\xaa\x8d\x77\x13\xe8\xa9\x85\xfb\xa3\x3f\xfa\x23\x7c\xed\xb5\xd7\xcc\x0b\x2f\xbc\x80\x00\xe5\x45\x88\x2e\x1c\x56\x8b\x6e\xdd\x74\x90\x82\xf2\xd0\x38\xb7\x86\x25\x43\xc4\x0c\x00\xb2\xdd\x65\x3a\x7a\xe6\xee\xf0\xf1\xe7\x3f\xd8\xf9\xa5\x4f\xde\x1d\x7e\xe5\xf2\x34\xfb\xca\x70\xa5\x7e\x31\x31\x78\x01\x00\x54\x70\x5c\x82\x15\x2b\x68\xb3\xf4\x85\xb4\x19\x00\xda\xf4\x2c\x64\x61\xbd\xb8\xe7\x49\x1b\x3a\x92\xc5\xf6\xa4\xcd\x28\x8d\x3b\x5b\x65\xbf\xf5\xf1\xf1\xf6\xfa\xde\xaa\x67\xd6\x36\xb1\x06\x00\x0a\x00\x6f\x71\x01\x44\x84\xcf\x7e\xf6\xb3\xfe\x74\xeb\xab\x57\xaf\xe2\x74\x3a\x95\x14\x1f\xcf\x57\x49\x39\x37\x29\x5f\x92\xf2\xc6\x67\xea\x1e\x16\x6f\x09\xf4\x48\xf1\x9c\xa7\x4e\x53\x10\x2d\x01\x6e\x49\xd6\x18\x98\x88\x81\x8e\x58\xfd\x6e\xb3\xce\xc4\xd2\x72\xde\xf6\x4f\x1d\xc7\x16\xe2\x25\x8b\x14\x88\xb4\x15\x32\x35\x97\x71\xbf\x98\xd9\x4a\x02\x28\xce\xaf\x69\x2f\x79\x93\x7f\x97\x8a\x12\xe3\xe3\x7e\x92\xe9\xcf\x39\x11\x88\x91\x0e\xca\x9b\x42\xc9\xf4\x10\x07\x5b\xae\x31\x83\x27\xb4\x1d\xd0\xb2\xa7\xf5\xb4\x5f\x4c\xb2\x42\xa5\x5b\xab\x64\xd4\xd3\x38\xf0\x87\xf5\x5b\x4b\x89\x1f\x11\xb9\x8e\xc8\xbe\xd3\xfb\x84\x7c\xac\x36\x15\xe8\x00\x0e\xf8\x85\x75\xe0\xfe\xc5\x4a\x28\x6b\xad\x71\x5b\x26\xab\xb0\x81\xe5\x04\x42\x10\xc1\x01\x45\xed\x9d\xfe\xb5\x11\xd2\xdd\x44\x01\xf6\xc7\x50\x26\x37\xca\x43\x42\x63\x48\xfa\x02\x5a\x97\x37\x65\x7e\x0d\xd2\x02\x2f\x6f\xe5\xea\xe9\xdd\x45\x7a\xf3\xda\x24\x3b\xd8\x9f\xf7\x30\x47\xb3\x5a\xa4\x5a\xeb\xa4\x02\x27\x76\x3d\x01\xba\xf2\xa8\xfe\x00\x02\xf8\x0b\x33\x11\x60\xa3\x6d\xd4\xd2\x48\x47\xea\xc8\x62\x53\x20\x00\x72\xfd\x8b\xc5\x23\xd5\xcb\x2e\x1d\x52\x93\x0c\x92\xf5\x52\xea\x07\x62\x56\x4e\x2e\x9f\xb4\x0b\x28\x96\x27\xbc\x73\xe6\x96\xb2\x98\x0c\xd2\x68\x98\xfe\x05\xc6\x4f\xe2\xcd\x95\x0e\xf7\x03\xc2\x0b\x01\x00\x1f\x7b\xec\x31\xfc\xed\xdf\xfe\x6d\x7c\xfd\xf5\xd7\x0d\x40\x79\x48\x25\x22\xfa\x01\x0d\xe1\x93\x38\xeb\x9f\x3d\xe5\xd6\xdf\xde\x0c\x16\xb0\x40\x69\x61\xc9\x76\x16\xc9\xee\x33\x77\x87\x4f\xfc\xec\x47\xdb\x5f\xbc\x79\xbc\xf5\xdb\x07\xd3\xde\x7f\x37\x5c\x27\x9f\x4d\x35\x5e\x46\xc0\x04\xc0\xed\xf6\x09\xcf\x54\x2a\x85\x0c\x5a\x58\xd8\x93\xd3\xc4\xb8\xf6\xed\x16\xdc\x22\xc1\x28\x86\xb6\xd9\xb0\x51\xd3\x26\xeb\x7c\xd0\x20\x26\x06\xf7\xfa\x39\x66\x79\x62\x3e\x3e\xeb\xe7\xa7\xab\x44\xaf\xa1\xbc\x12\xc0\x93\xdb\xbe\xcf\xb7\x87\xe7\x9f\x7f\x1e\xed\x81\x90\x3c\x5f\xa5\x3a\x02\x50\x2f\x97\x58\x9b\xa2\x65\x5c\x2b\xb3\x96\x78\x6a\x0a\x32\x12\xa7\x54\xd7\x68\x66\x71\xfd\x29\xb5\x15\x69\x81\x37\xff\xf1\x2d\xc6\xf4\x39\xb6\x03\x4f\xea\x1b\xa4\xe7\x58\x1b\x88\x4d\x13\x4b\xed\x98\xcb\x20\xc5\x17\x6b\xd3\x52\xde\xd2\xfc\xa1\xe1\x80\x7c\x37\x00\xd5\x01\x74\x40\x3c\x59\x75\x6f\xec\x48\x39\xe2\xe3\xa0\x25\x66\x3a\x93\x3a\xd6\x4d\x94\x82\xe4\x62\x89\x8f\x75\xae\xdc\x71\x04\xc9\xbf\x89\xe1\xd8\x42\x5d\xf7\x97\xf2\x93\xe6\xe1\x9d\xf6\xf4\x45\xb3\x4c\xf5\x7a\x96\xe9\x79\x02\x68\xb6\xd6\x6a\x98\x15\x6a\xa0\x00\x55\x75\x54\x14\x54\xeb\x55\x48\x71\xba\x75\x27\xb4\xc0\x7c\x9f\x63\x20\x9c\xfa\x01\x56\xb0\xa6\x9a\x52\x72\x56\x19\x40\xb6\x70\x97\xfc\x6b\x88\x0c\x81\xc3\x3a\x6f\x29\xbe\xa0\x53\x74\xdf\xfc\xb3\x3d\x31\xd8\x00\x9b\x2c\x83\xe8\x74\x53\x2d\xbe\xb2\x23\x4e\x94\xc1\xad\xac\x50\xd7\xb6\xd6\xc9\x93\xbb\x8b\xf4\xc9\x83\x59\xef\xf2\xde\xbc\x97\x42\x79\x64\x79\x91\xdb\x05\xbc\x0c\xc0\x50\xeb\x9b\x1b\x1d\xfb\x17\x80\xea\x2a\x81\x86\xeb\x04\x9a\xea\x7a\x0c\x40\x37\xd5\xbb\x98\x0b\xea\x52\x07\x19\x9a\x06\x05\x9c\x8f\xc4\xaf\x2d\xad\x00\x32\xf8\xe2\x1d\x3d\xe5\x27\x29\x00\xd7\x5e\x78\xfa\x78\x27\xce\xe3\xa4\x9d\xb7\x24\x43\xd3\x33\x8d\x13\x23\xfe\x9e\xf7\x67\x3e\xf3\x19\xbc\x73\xe7\x8e\x06\x00\xf3\x9b\xbf\xf9\x9b\xb8\xb3\xb3\x03\x0e\xd8\x7a\xa1\xaa\x75\x2c\xfe\x3e\x21\x67\xed\x83\x70\xe1\xad\x07\x2c\x17\x16\xe9\xe8\x99\xa3\xe1\x53\x9f\xfa\x78\xfb\x0b\x4f\x1e\x6f\xfd\xe6\xe5\x69\xf6\xab\xdb\xab\xf4\x17\x7a\x05\x5e\x53\x80\x5b\xb4\xa5\xb8\x76\x6d\xec\x3b\x3d\x69\x9b\x83\x97\xfa\xb4\xab\x9b\xf2\x21\x77\x9c\xb9\x9c\xb4\x7f\xb9\x75\xa6\x7a\x2e\xb3\x25\x68\x8b\x08\x60\x17\xeb\xee\x64\x85\x5a\x4d\x32\x7d\x34\xed\x17\xe3\x42\x95\xa7\x5a\xdb\xe0\x7e\xbd\x0b\x59\x15\x6f\xc8\x62\x78\xfa\xe3\xe5\xc4\xfb\xd0\x98\xe2\xa4\x7e\xbc\x3e\xf0\x32\xe6\x80\x96\xc7\xc3\xc1\x2f\xaf\x1b\xb1\x38\x39\x9d\x94\x8d\x12\xef\xd8\x8f\x3a\x64\xf4\xce\xaf\x4d\xee\x2e\xcf\x52\x5d\xe7\xed\xb9\x29\xbf\x01\xea\x72\x35\x95\x99\x14\xbf\xd4\x1f\xf1\x3c\xf5\xa0\x4b\x9a\x2a\xa2\xc2\x36\x75\xa8\x12\x08\xe0\x19\xce\xbf\x4b\x40\xa6\x0d\x90\xb8\x70\x12\x3d\x05\x27\xf4\x1b\xed\x08\x29\x6f\x29\x3d\x9c\x47\x93\x0c\xe2\x77\x76\x9f\x11\x2f\x70\x04\x80\xe0\x86\x63\x08\xba\x89\xf2\x5d\xa3\x31\xcb\xd4\x2c\xe7\x99\x5e\x82\x01\x33\xc8\x93\x41\x96\xab\xa1\x02\x54\x7e\x5a\x48\x00\x08\xd2\x02\x57\x1b\x5f\x30\x95\x44\xc3\x55\x5b\x1d\xd1\xfa\x5b\x70\x64\x7b\xa2\x2a\x91\xe1\x39\x30\x41\x07\xc7\x13\xc8\x13\xe4\xbe\xfa\x6d\x94\x42\xf8\xe0\xe6\x6a\x0c\x3a\x4d\xda\xf9\x86\x08\xba\x7e\xdf\x92\xc5\x5b\x7e\x2a\xcc\x5a\xab\x52\x65\x70\x94\x15\xea\xf2\x70\x95\x3c\xbe\xbb\x48\x3e\x71\x71\xde\xbb\x7a\x61\xd1\xeb\xa7\x1a\xf3\x45\xaa\x8b\x3c\xa9\xa6\x8c\xa0\xaa\x07\x7e\x14\x42\x76\x7f\xf0\xe4\x41\x07\x10\xb3\x89\xeb\xda\x0e\xa8\xdb\x84\x7e\x53\x60\x74\x9e\x78\x62\x34\xd4\x3f\x66\x01\x92\xda\x0e\x1f\xd4\x48\x72\x48\x3c\x36\x91\xb9\x89\x87\x0f\xff\xa5\x2f\x7d\x09\x6f\xdd\xba\x65\x00\x00\x7e\xe5\x57\x7e\x05\x5f\x7f\xfd\x75\xf3\xd2\x4b\x2f\xa9\x7e\xbf\x5f\x06\xaa\xa6\x80\xd0\x5a\x54\x10\xc8\x49\xb7\xf6\x5b\x0f\xcb\x83\xe4\x32\x0a\x5a\x2e\x4d\xd2\xbd\x4f\xde\x1d\x7e\xf2\xd9\xc3\xe1\x17\x9f\xb8\x3f\xf8\xb5\x2b\x93\xec\x97\x47\xcb\xf4\xe7\xb3\x02\x6f\x28\x83\xe5\x39\x4f\xa4\x7e\xfb\x46\xe2\x5b\x09\x19\x58\x18\xda\x8e\xcb\x24\x04\xd3\xb6\xc6\x1e\x6b\x80\x2e\x9c\xeb\x57\x2a\x6b\x2b\x6d\x10\x01\x50\x31\xae\xbf\xa8\x83\x17\x04\x00\x7b\x9f\xd1\x76\x62\x70\x36\xe9\xeb\xa3\x59\x75\x9f\x91\x5f\xef\x42\xf2\xd5\x75\x86\x86\xec\xe2\x8b\x59\x11\x63\xe5\x2a\xf5\xd9\xb1\x67\x89\x5f\x53\x58\x89\x37\x12\xff\x98\x7c\x94\x0f\xb5\x1a\x80\x40\x2f\xa5\x2b\x66\xf5\xe1\xf1\x70\x50\xd6\xc4\xbb\x2d\x1f\xf8\xb3\x14\x2e\xc6\x7b\x13\x59\x9d\x3f\x57\x29\x31\x9c\x21\x19\x35\x3c\x2d\xd7\x77\xdc\xac\x1a\x5b\xed\xcc\xbf\x71\xf4\x1a\x73\x31\x9e\xb1\xf0\x92\xbf\x64\x0a\x96\xc2\x35\xc9\xf2\xa0\xdf\x45\xf7\xd2\x4b\x2f\x29\x02\x18\xdc\x9a\x0a\x05\xe1\x9d\x46\xb5\x7b\x8d\x8c\x31\x23\x44\x1c\x81\x81\x51\xaa\x71\xef\xd2\xb4\xf7\xe8\xcd\x7b\x5b\xcf\x3d\x79\x3c\x78\x6e\x7f\x96\x5e\x4b\x0b\x95\x01\x82\x5f\xc7\xe2\xca\xb1\x7e\x22\x4a\xe9\xdc\x49\xb8\x14\x34\x94\xa1\x9c\x55\xc3\x8d\xb6\xd8\x3a\x19\x1f\x2c\x3c\x31\xb3\xc9\x75\x20\x79\x20\xfa\x56\x5e\x9d\x64\x34\x5a\x23\xcc\x72\x65\x0e\xe7\xbd\xe2\xdd\xfb\xc3\xfc\xcd\xbb\xdb\xeb\xef\x1f\x6d\xaf\xde\xfe\x78\x67\x75\xfb\x64\x2b\x9f\x21\xa2\xbb\xfb\xc8\xdd\xb9\xa2\xa1\xba\x7f\xc5\xad\x51\xa2\x77\x22\x01\xf5\x73\xee\xe5\x97\x5f\xd6\x00\x00\x5f\xfa\xd2\x97\xd4\x37\xbf\xf9\x4d\xa9\xde\xc6\xde\x25\xff\xa6\x76\x21\xd5\x7d\xc9\xe2\xd9\xd4\x86\x25\xde\x31\x5a\x1e\x5f\x97\x76\x47\xc3\x39\xd7\xd4\x76\x29\x1d\xa5\x6f\xe2\x47\x69\xa4\xf0\xd2\x77\x69\xc4\xed\xf9\x0f\x06\x03\xb5\x58\x2c\xf4\x97\xbe\xf4\x25\x05\x00\xf0\xe4\x93\x4f\x42\xaf\xd7\xab\x0d\x04\x68\x7c\xe4\x0e\x21\x20\xed\xbe\xd6\x07\x18\x63\xd2\x54\x63\x76\x79\x9a\xed\x5e\x3d\xcb\x1e\xbf\x3a\xce\x7e\xee\x60\xda\xfb\x4f\xdb\xab\xe4\xd9\xac\xc0\xeb\x89\xc6\x5d\x04\x1c\xf0\x1e\xbd\x04\x26\xc1\x2e\x45\x41\x9e\x92\xd2\xb8\x10\x02\xbd\x81\x3a\x63\xcf\xdb\xbd\x78\x6e\x86\x00\x96\x92\xa6\x04\x3d\x72\xa3\xd3\x68\x16\xe3\x7e\xfe\xdd\xb7\x0f\xe6\xff\xdb\x0f\xae\xce\xbe\x75\x6f\xb4\xbe\x03\x00\x0b\xf7\x73\xed\xcb\x18\xa3\x01\xaa\xfb\x8c\x0e\x0f\x0f\xe1\xbb\xdf\xfd\x2e\xdc\xba\x75\x4b\xaa\x1b\x5d\x75\x12\x2f\x93\x58\xfd\x6a\xe2\x0d\x0d\xef\x5d\x79\x34\xa5\x21\xc6\x8f\x7f\x93\xfa\x80\xa6\x34\x35\x85\xe7\x2e\xd6\x06\x9a\xfa\x8e\xb6\xf4\xd0\xb8\x25\x99\x78\x1c\x31\xda\xa6\xf8\x02\x7a\x69\xaa\xa8\x09\x35\x79\x53\x0d\xf1\x03\xe2\xc7\x9d\x64\x61\x89\xf1\x8b\x8d\xb4\x24\x94\xa9\x84\xef\x34\x4e\x20\x74\x12\x02\xe6\x05\x8f\x8c\x7e\xd3\xd1\xa9\x02\xa8\x56\xcc\xdb\x93\x30\x0d\x01\x07\x41\x9e\xf2\xc3\x99\x90\x98\x24\xb4\x02\xbd\x4c\xf5\x72\xd1\x2b\x96\x06\xa0\xe8\x17\x6a\xd0\xcf\xd5\x30\x71\x23\x2f\x4b\xd8\x08\x2c\x9c\xe5\x81\x91\xb8\x30\xde\xca\x21\x80\x16\xf9\xe4\x38\x97\x41\xe4\x42\x46\x70\x16\x8e\x80\x43\x73\x2e\x55\xec\x6c\x07\x1a\xb7\x0a\xc5\xd8\xc5\xae\x32\xe0\xe1\x59\xba\x51\x01\x66\x89\x81\x0b\x59\xa1\xae\x8e\x56\xc9\x8d\xbd\x79\xfa\xf8\xc5\x79\xef\x91\xd1\x2a\xdd\xdb\x5e\x27\x09\x02\xac\x56\xa9\x31\x1a\x21\xb1\x66\x74\x05\xe5\x08\x9a\xde\x89\x84\x36\xdf\xfc\x1a\x18\x5b\xc6\xee\x9b\x9f\x4e\x22\x77\x23\x51\xd1\xb8\xa8\x91\x5c\x0a\xea\xa1\x44\x17\x1b\x15\x35\x8d\x22\x01\xe2\x6d\xab\xcd\x49\xf1\x49\x61\xa5\xd1\xa7\xeb\x74\x68\xd1\x50\x7f\x1e\x9e\x9b\xaf\x25\xfe\x26\x42\x63\x84\x1f\x1f\x4d\x72\x99\x7c\x9e\x7c\xfe\xf3\x9f\xc7\x47\x1f\x7d\x14\xad\x02\x85\x5b\xb7\x6e\x99\xdf\xf8\x8d\xdf\xc0\x24\x49\xa8\xf2\xa6\x75\xc1\xf5\x1d\xde\xba\x42\xa7\x84\xec\x96\xe6\x0c\x00\x7a\xa8\x21\x1b\xae\xd4\xe8\xda\xa4\x7f\xf9\x89\xfb\x5b\xcf\x3d\x7d\xb4\xf5\x85\x9b\xf7\xb6\x7e\xfd\xea\x24\xfb\x6f\xb7\x57\xea\xe7\xb2\x42\x3d\x9a\x18\xb5\xab\x00\x52\x6b\x0b\x09\xac\x1a\xe5\x83\x9d\x0c\x22\x6d\xb8\xea\x81\x8d\x7f\xf5\xd6\x93\x60\x77\x10\x7a\x32\x6f\xc1\x71\xbc\x31\xb4\xe8\x56\x6c\xab\xa3\x13\xc2\xc6\xeb\xfa\x8f\x5a\xe1\xa4\xa9\x56\xa3\x5e\xa1\xcc\x3a\xd1\xf7\x27\xfd\xe2\x64\x95\x9a\x15\x94\x8b\x74\x01\x11\x0b\xb7\x16\x90\xf6\x8d\xa3\xd1\x08\xbe\xfe\xf5\xaf\xd3\xa9\x85\x20\x65\x10\x4e\xe7\x34\xd5\x69\x5a\xae\xc0\xfc\x8d\xe0\xcf\x79\x77\x9d\xc6\x50\x42\x38\x49\x76\x1e\x0f\x6f\x73\x8e\x8f\x14\x37\x8d\x8f\xcb\x2e\xe9\xde\x36\xdd\xcd\xf9\xf1\x36\xc0\x75\x30\x97\x81\x83\x88\xa6\x76\x16\x6b\xc7\x94\x5e\x91\xef\x00\x21\xa6\xe0\xf9\x50\x93\xdf\x05\xea\x82\xb6\x62\x2e\x86\x4c\x39\x4d\x9b\x95\x44\xa2\xe7\x61\xa1\xe5\xb9\x29\xbc\x24\x73\xd3\x28\xb2\x6d\xe4\x2b\xa2\xf9\x5f\xfc\xc5\x5f\x54\xdf\xfe\xf6\xb7\xb5\xbb\x7b\xc4\xfa\xfb\x11\x17\x54\x23\xaf\x0c\x00\x06\x88\x38\x00\x80\x11\x00\x0c\xed\xdf\x11\x00\x8c\x92\x02\x76\x2f\xce\x7b\x8f\x3c\x71\x3c\x78\xf6\xa9\xa3\xad\x4f\x1d\x4c\x7b\x37\x7a\x5a\x65\x00\x60\x81\x43\xf7\x9b\x5d\x01\x80\x8c\x96\x40\x04\x05\x6e\x94\xd6\x04\x1a\xc0\x40\xb8\xe5\xba\x83\xed\xa4\x03\x9c\x89\xd2\x75\x09\x2b\x01\x15\x68\x90\xcf\xb6\x00\x6d\xc0\xac\xb4\x82\x93\x55\xa2\x3f\x98\x66\xc5\x0f\xef\xec\xae\xbe\xf3\xd1\xee\xea\xed\xfb\x5b\xeb\xdb\xe3\x41\x7e\xb2\xe8\xe9\x45\x81\x90\x03\x42\x6e\xaa\x5b\xa7\xb5\x1d\x2d\xba\xf9\x7b\x00\x52\x07\x98\xf5\x25\xa8\x73\xc6\x18\x78\xe5\x95\x57\xf4\xe7\x3e\xf7\x39\xb5\x58\x2c\x00\x00\xe0\xf5\xd7\x5f\x8f\xd5\x4b\x17\x5e\x6a\x97\xfc\x7b\xac\x0e\xc7\xda\x74\xec\x3b\x30\x3a\x10\x68\x9a\x46\x82\x92\x6b\x1a\x81\xc6\xfa\x81\xa6\x51\x32\x8d\xaf\x6d\xd4\xdc\x48\x7b\xf3\xe6\x4d\xb5\xbd\xbd\xed\x89\xae\x5e\xbd\x0a\xff\xf8\x8f\xff\xa8\x5f\x7c\xf1\x45\x15\x58\x18\x00\xf8\x74\xa1\xb2\xdf\x14\xf9\xa6\x00\x2a\xeb\x8a\xfd\x9b\xa2\x86\x34\xd3\x98\x6d\x2f\x93\xd1\x85\x45\x7a\x70\x69\xda\x7b\xfc\xea\x59\xf6\xcc\xc1\xb4\xf7\xe9\xad\x55\xf2\x6c\x4f\xe3\x75\x65\x60\x04\x50\xf2\xb7\xb1\x42\xe3\x79\x00\xc4\xd5\xeb\x7c\x68\x99\x09\x2d\x34\x50\x1b\xc8\xb8\x30\x2e\x4e\xb4\x42\xd0\xb5\x6f\xd4\xca\x42\x2f\x5d\xa4\x38\x86\xf1\xd2\xab\xc4\xdc\xfe\x68\x77\xf9\xf5\x1f\x5c\x9d\xfd\x9f\xef\xed\xcf\xdf\x5c\xf6\xcc\xd8\x18\xb3\x40\xc4\x15\x00\xac\x8c\x31\x39\xd8\x36\x64\x65\xd4\x00\x95\xb5\x52\x70\x5d\xca\x5e\xa2\xe5\xae\xad\x0e\xc6\xea\x74\x97\xba\xd6\xc5\xda\x10\x1b\xdc\x37\xf1\xe8\xa2\x37\x25\x59\xda\xfa\x86\xb6\xf6\x12\x7b\x8e\xf9\x41\x07\x7f\x1a\x87\x44\x1f\x93\xbd\x26\xaf\xb3\xb8\x70\x2b\x0a\x45\x5e\x40\xde\x81\xd0\x70\x81\xa4\x0e\x88\x8e\x90\x28\x1f\x8e\x08\x39\xaa\x45\xf2\xe3\x68\x8d\x3e\x73\xd4\x48\x75\x18\x47\x89\x12\x22\x04\x42\xd7\x94\x6e\x69\x74\xca\xdf\x11\x00\xcc\x07\x1f\x7c\x60\x7e\xf9\x97\x7f\x59\xfd\xe5\x5f\xfe\xa5\xbb\xd7\x88\xe7\x41\x49\x5c\x8e\x3a\xa2\x3c\x35\x1a\xb3\xec\xe9\xf5\xbc\xa7\x17\x5a\x41\xb1\x95\xab\xc1\x60\xad\xb6\x95\xb6\x96\x17\xd7\xcb\xd0\xc0\x0d\xd7\xd4\x07\x16\x18\x14\xc2\xd8\x51\x5c\x70\x5e\x03\x11\xca\x83\x15\x1f\x38\x5c\xff\xc2\x04\x61\x96\x9a\x2a\x83\x68\x88\xe0\xd0\x3a\x43\x60\xb4\x25\xc1\x30\xa0\xef\x64\xfd\x96\x6e\x06\xc6\x82\x5d\x4f\x3c\x6f\xc0\x55\x28\x77\x04\x1f\xa6\x68\x70\xd4\xd3\x78\x65\x90\x27\x4f\xee\xcd\x7a\x4f\x1d\x4c\x7b\x8f\xec\x2e\xd2\xdd\x7e\xa1\xb2\x5e\xa1\x12\x65\x40\xd9\x40\xee\x5f\x65\x2d\x65\x4e\x59\xf9\x41\x2b\x40\xb0\x2b\x89\x0e\x96\x11\xa0\xb4\xaa\x7d\xf6\xb3\x9f\xc5\x47\x1e\x79\x04\x1e\x7b\xec\x31\x78\xec\xb1\xc7\x02\x8b\xcc\xd3\x4f\x3f\xad\x8e\x8f\x8f\xf5\x27\x3e\xf1\x09\x3c\x3d\x3d\x95\x46\x73\x7c\xa4\x43\xb3\x37\x36\x22\x6c\x1a\x29\x4a\xa3\x49\x10\xc2\x70\x8b\x05\xfd\xc6\xdb\x8c\xc4\x4b\x1a\x39\x51\xf9\x63\x23\x5a\x69\xf4\x2a\xf5\x25\x52\xbf\x40\x0b\x5f\xec\x43\x7e\xed\xd7\x7e\x0d\xbf\xf1\x8d\x6f\xe8\x2f\x7f\xf9\xcb\xf8\xd8\x63\x8f\xc1\xde\xde\x1e\x5f\x1f\x70\x68\x00\x00\x20\x00\x49\x44\x41\x54\xbc\xf0\xc2\x0b\xce\x82\xa6\x00\xaa\xf5\xdb\x10\x5a\x56\xd0\x18\xe3\x2c\x2c\x0a\xaa\xad\xcd\xe5\x1a\x16\x03\x59\xaa\x55\x7f\x6b\x9d\x6c\xef\xcf\x7b\x97\x1e\x19\xf7\x9f\x7c\xe2\x78\xf0\xb3\x4f\xdf\x1d\xfe\x37\x9f\xb8\x3f\xf8\xd5\x83\x59\xef\x8b\xc3\x75\xf2\xe9\x54\xe3\x35\x05\x6e\xf7\xa0\xa9\x1a\xa6\xb1\x22\x53\xec\x52\x43\x1b\xae\xb2\x1b\xdf\x6e\x2b\x3a\xb2\x6e\xcc\xaf\x61\x03\x40\x34\xd5\x91\x09\x25\x3a\x29\x2f\x6c\x75\x20\xc5\x87\x71\xe1\x08\x0f\x63\x0b\x0a\xa1\x3c\xc8\x12\x48\xbb\x23\xe2\xd9\x46\x82\xca\xc0\xb0\xa7\x55\x5f\x01\xcc\x67\x99\x3e\x9c\xf4\x8b\x39\x28\x2c\x6c\x39\x18\xb4\xd7\x02\x58\xfe\xc6\xe6\xa9\x89\x9c\x5a\x1d\x2b\x7b\xa9\x8e\xc7\xac\x01\xb1\x7a\x23\x29\x75\xa9\x5d\x34\xe9\x1d\x5a\xbf\xb8\xac\x92\xcc\x12\x6f\xca\xb7\x8b\xcc\x5c\x77\xf2\x34\xc7\xc2\x34\xb5\x29\xa9\x1d\x49\xcf\x3c\xdf\xa5\xb4\xc4\xfc\x79\xde\x4a\x6d\xb3\xad\xbf\x28\xeb\x10\xc9\x80\x18\xc2\x6c\xf2\xef\x62\xad\x88\xb9\xae\x96\x90\xb6\xb8\xba\xbc\xb7\xc5\xfb\xb0\x5c\x8d\xb7\xb5\xbc\xf0\x5f\x6a\xff\xd2\x35\x2f\x43\xf7\xf3\x6b\x5e\x00\x46\x4a\xc3\x68\x67\x99\x5e\x7e\xf2\xde\xe0\xd9\x67\x0f\x87\xbf\x10\x58\x5e\xac\xe3\x1d\x08\x04\xef\xd5\xbf\x00\xe1\x34\x0b\xa5\xaf\x5d\x35\x50\x7a\x06\x23\xb6\xa0\x33\xb5\x61\x02\xa0\xc4\x04\xb0\x3d\x92\xef\x90\x43\xe0\xc3\xa5\x8d\xc9\x1f\xbe\x87\xe9\x6d\xb6\xfa\xd4\x63\x88\xfb\x01\x80\xd6\x60\x16\x45\x62\xee\x2c\x52\xfd\xc3\x93\xad\xfc\x8d\xbb\xa3\xf5\x8f\xee\x8e\x56\xef\x9f\x0e\xf2\xa3\x69\x56\x8c\x17\x3d\xbd\xc8\x95\x59\x69\x05\x1a\xc2\xf5\x2f\xfe\x47\x47\x90\x50\xd5\x85\x9a\xf5\x85\xd0\x78\xd7\x30\xe2\xe4\xee\x41\xea\x70\xd3\xa8\x6d\x13\x7f\xe9\x5b\x9b\x05\xa5\x4d\xee\x2e\xfd\x0a\x34\x7c\x8b\x8e\x4a\x5f\x7c\xf1\x45\xf5\xca\x2b\xaf\x68\xb6\x0e\xcd\xc7\x5b\x5b\xef\x55\x5a\x4d\xe8\x37\x45\xfc\xa9\x85\x25\x05\x03\x4a\x19\x48\x7b\x1a\xd3\xad\x55\x32\xda\x5d\xa4\x7b\xfb\xb3\xde\xb5\x6b\x67\xbd\xa7\x2f\x4d\x7b\x3f\xbb\xbd\x4a\x9e\xcb\x72\x7c\x5c\x19\xdc\xc5\xf2\xf8\xfe\x2a\x1e\xfb\x97\x8f\xb8\xa2\xb5\xda\x02\x8e\xfa\xa0\x82\x0c\x2e\x00\xeb\x7c\x6b\x6d\xd3\xb6\x77\x03\xc1\x80\xc1\xb7\x7f\x0b\x68\xaa\x6b\x3f\xa4\xb6\x56\x31\xa5\x6b\x64\x8c\x31\xa0\x15\xcc\xc6\x83\xfc\x7b\xef\x5e\x5a\xfc\xcd\xbf\x3f\x32\xf9\xe7\xfb\x5b\xf9\x11\x20\xcc\xa0\x5c\xef\xb2\x02\x00\xb7\xa6\x8c\xb6\x1f\xa9\x0d\x9c\x57\xd7\x74\xb1\x5a\xb4\xf1\x39\x4f\x9b\x88\xc9\xd1\xc4\xa7\xc9\x52\xd1\x16\xff\x79\xf5\xee\xa6\x3a\xba\x8b\xd5\xa7\x8b\x4c\x6d\x3c\x3b\xf5\x21\xf1\x5e\x5f\x16\x0c\x3a\x08\xb1\xa9\x6b\xca\x90\xf3\x00\xa0\x58\x25\x38\x4f\xfc\x5d\xe3\x6b\xec\xbc\x1d\x78\xa1\x9d\x1e\x94\xd3\x45\xca\xce\x81\x0f\xa0\x04\x30\x43\xf2\xf3\x8b\x76\xd1\xc0\x68\x7b\x95\x5c\x7a\xf2\x68\xeb\xe9\x9f\x39\x1c\x3e\x7f\x79\xd2\x7b\x3c\xd5\x98\x01\x40\xd8\xad\xd8\x7e\x24\xe8\xa3\x58\xcf\x16\x82\x95\x6a\x90\x47\xe9\x43\x8b\x70\xe9\xe1\x59\xc4\xf8\x13\x27\x75\xc0\x4d\x9d\x71\x1b\x5d\xc0\x4f\x64\x44\x21\x1a\xe3\xe3\xd3\x4d\xce\xa4\x21\x1d\xb4\x24\x8c\x41\xc8\x35\x9a\xf1\x2a\xd1\xef\xcf\x32\xfd\xe6\xc9\xd6\xfa\xf5\xc3\xd1\xfa\xdd\xbb\xa3\xd5\xed\x93\xad\xfc\x64\x9a\xe9\x49\xae\x74\x5e\x28\xc8\x01\x20\x07\xf4\xa0\xc5\x2d\x38\xd4\x00\xe0\xa6\x8d\xb4\x9d\x72\xa8\x4d\x23\x11\x65\xa9\x4d\x00\x12\xab\x67\xd7\x91\x5f\xbc\x78\x51\x01\x00\xdc\xbf\x7f\x7f\xd3\xfa\xdc\xb5\xf3\x7d\x10\x80\xd1\x34\xd0\x71\xee\xbc\x83\x8e\xce\xfd\xca\xc5\x8b\x17\x15\xcd\x1f\x3a\xed\x03\x00\x74\xea\xc7\xcb\x46\x17\xd3\x73\xb9\xe9\x74\x10\x59\x7c\x5b\xb6\x5f\x03\xa9\x32\xa0\x12\x8d\x59\x4f\xe3\x60\x7b\x99\x0c\xf7\xe7\xe9\xfe\xd5\xb3\xfe\x8d\xcb\x67\xbd\x9f\xb9\xb0\x48\x7f\x6e\xb0\x56\xcf\xa5\x06\xaf\xa0\xc1\x01\x18\x50\xbc\xed\x54\xf5\x99\xc3\x8e\x38\x88\x91\xc1\x3c\xdf\x12\x5d\xd5\x7d\x69\x3b\xb4\x31\x74\x80\xc2\xb6\x4f\x03\x6b\x37\xb5\xc1\x0b\xa1\x77\xfc\x79\x20\x4b\x9b\x27\xe6\xe4\x78\xb8\xfe\xd6\x5b\x57\xa6\x7f\xf9\xfd\x47\x66\xdf\x5b\xa6\x7a\x0c\x00\x33\x32\x6d\x14\x4c\xc3\x82\x6d\x07\xaf\xbc\xf2\xca\xa6\xfd\x70\x9b\xa2\x84\x8e\xdf\xdb\x74\x9c\xf4\xde\x24\x57\x97\x6f\x4d\x8a\xbc\x0d\xa8\x73\xb9\xdb\x64\xa7\xfe\x9c\xb6\x49\xd6\x4d\xfb\x92\x2e\xbc\xba\xd0\x4a\x61\x01\x20\xac\xd3\x5d\x12\xb3\xa9\x8b\x09\xd1\xd4\xd1\xc5\xe8\x9d\x3b\xcf\xe8\xab\xad\x32\xc5\xf8\x6c\x92\xa6\xa8\xa3\xeb\x5d\x38\x78\xb1\x7f\x03\xf0\x62\x8c\x19\x00\xc0\xd0\x59\x5d\x00\x60\x04\x06\x46\xfd\x1c\x2f\xde\xbc\xb7\x75\xf3\xd3\x1f\x6d\xff\xe2\xc1\x2c\xbb\xd1\xcb\xcb\xdd\x07\xb6\x87\xe1\x23\xc6\xda\x3b\x35\xef\xd6\x0e\x70\x60\x23\xb9\x18\x8f\xa8\x85\x45\xea\x24\x6d\x9c\x8d\x1d\x29\x43\x11\x35\x5c\x22\x01\xaf\x8e\x20\x8c\xaa\x03\x20\xdd\x73\x6c\xbe\xdf\xcb\x4b\x47\x9e\x60\x56\x85\x32\xc7\xcb\xd4\xbc\x3d\xcd\x8a\x7f\x3f\xde\xca\x5f\xff\x78\x77\xf5\xde\xc7\xa3\xe5\xe1\xfd\x61\x3e\x5e\x27\x66\xa5\xd1\xe4\x1a\xad\x05\x06\xbd\x25\x06\x48\xa7\x0c\x50\x01\x1b\x80\xb0\xbe\xd4\xea\x0e\xdf\xa9\x44\xfc\x01\x11\x3d\x98\xf9\xf2\x97\xbf\xac\xfe\xfa\xaf\xff\xda\x87\x77\xbb\x61\x48\x90\xae\x1d\x65\x97\x6f\x31\xd7\xd6\x6f\x3c\x70\xa7\x26\xa4\xab\xe6\xcf\xd7\xa6\x34\x59\x54\xc8\x1a\x10\x0a\x6c\xa8\x65\xc5\xb7\xd7\xe0\x67\x20\x45\x00\x85\x06\xd2\x5e\xa1\xb2\xe1\x4a\x0d\x2e\xcd\x7a\x7b\x97\x27\xbd\x6b\x97\x27\xd9\xcd\x8b\xf3\xf4\x33\x5b\xab\xe4\xd3\x3d\x0d\x37\x94\xc1\x11\x00\xa4\x41\x8b\x12\x2a\x5e\x58\x5f\x43\x50\x60\x9b\xb5\xad\x8b\x32\xf4\x8f\x59\x21\x25\xbe\x04\x56\x54\x31\xd1\x36\x19\x91\x4b\xf2\xa8\xb5\xc3\xc8\x00\x66\x95\xe8\x3b\x1f\xef\xac\xfe\xfe\x7b\xd7\x27\x7f\xf9\xce\xa5\xf9\x7b\x1a\xcd\x04\x11\x17\x16\xbc\x94\xc0\xbf\x02\x30\x00\xb6\xfc\xc7\xe3\x31\x7c\xf5\xab\x5f\xed\x6a\x81\x00\xe1\xfb\xa6\x96\x81\x2e\xdf\x37\x19\x5c\x77\x05\x56\xce\x0f\x22\x7c\xba\xca\xd1\x14\xb7\xe3\xdd\xa6\x8f\x9b\xdc\x26\x03\x8c\x4d\x01\xce\xc6\xfd\x0e\xdd\x55\x44\xe7\xa7\x28\x43\x24\xfe\x8a\x3d\x23\xf9\xae\x84\xf0\xfc\xdd\xd1\xd2\xb9\x2b\xc5\xde\x69\x3c\xee\xbb\x73\x34\x41\x86\xd1\xd3\x6f\x74\xb0\x82\x10\x66\x8a\x24\x13\x8d\x9b\x7f\xe7\x8e\x7e\xef\x94\xc9\xf4\x9c\x17\xd6\xa1\x3a\x19\x35\x7b\x46\xac\x2e\x2b\x03\x28\x15\x22\x16\x0a\xf2\x7b\xdb\xeb\xf1\xa2\xaf\x4f\x87\xab\x74\x38\xc8\x93\x51\xa2\xb1\xa7\xa0\x5a\xfd\xef\xc7\x6d\x1e\x94\x58\x5f\x1f\xad\x5b\x84\x87\x81\x95\x06\xb0\x6e\x08\xae\x76\x14\x80\x0f\x13\xd0\x60\xf8\x5c\xeb\x80\x03\x99\x80\xed\x42\xf2\x91\x84\xaf\x24\x23\x82\x38\xb0\x1e\x24\x00\x28\x58\x23\x23\x41\xd9\x79\x34\x02\xad\x63\x4c\x79\xd9\xb0\x09\x1a\x1c\xf5\x0a\xf5\xf8\x70\xa5\x3e\xbd\xb7\x48\x3f\x73\x79\xda\x7b\xfa\xda\xa4\xbf\x73\x79\xd2\x1b\xec\x2c\x93\x34\xd1\x98\xac\x13\x83\x45\x62\x00\xd0\x83\x51\xb7\x50\x93\xae\x39\x70\x4a\x90\xa7\x0a\x01\xc0\x9f\xba\xec\x76\x28\x01\x6b\x6f\x6e\x5d\x80\x5b\x1b\xf3\xe6\x9b\x6f\x06\x75\x35\xcf\xf3\xb6\xf6\xc7\xfd\x9a\xe8\xdb\xda\x01\xa5\x6b\xa2\xe5\xed\x65\xe3\x38\xff\xf0\x0f\xff\x50\xbc\xb5\x9b\xa6\xd7\x1e\x02\xe9\xfb\x24\xac\x16\x6a\x18\xfb\xce\xf3\x32\x41\x44\x77\xee\x8a\x02\x7b\x04\x3f\x86\xa7\xda\xa6\xc6\x98\x14\xca\x43\xe2\x7a\xca\x40\x36\x5a\x25\x5b\xd7\xc7\xfd\x83\xa7\xee\x6d\x7d\xe2\xb9\xc3\xe1\x2f\x3c\x7d\xb4\xf5\x1b\x8f\x9d\x0e\xbe\x72\x69\xd6\xfb\x1f\xb6\xd6\xc9\x67\x52\x53\xae\x5d\x01\x7b\x78\xa4\xb1\x03\x04\x04\xf4\x03\x03\x43\xac\x16\xf4\xb8\xfd\x60\x6d\x99\xab\xa3\xac\x21\x70\x6b\x21\x87\xfc\xd5\xfa\xaf\x8a\x4f\x7d\x03\x73\xfd\x04\x6b\x0e\x3c\x78\xdb\x90\xee\x2a\x02\xda\x8e\x30\x2c\x3c\x07\x90\x12\x83\x83\x7e\xa1\x2e\x64\x85\x9a\x9c\x0c\xf3\x9f\xcc\xfa\x7a\x01\xe0\xaf\x01\x70\xb7\x47\xbb\x7e\xd1\xb2\x37\xe6\xcf\xfe\xec\xcf\xb4\x8f\x3a\x64\xcb\x75\x04\x2d\x57\x8c\x3c\xc7\x68\xa4\xba\x49\x79\x72\x1e\x92\x1e\x89\xc5\x13\xab\xd7\x52\xdb\x8e\xb5\x21\x49\x26\xc7\xa3\x49\xef\xf2\x7c\xd0\x42\x38\x10\xfe\xf2\x34\xc4\xd2\xe3\xde\xbb\xe4\x6b\x4c\x2e\xce\x4b\x7a\x96\x64\x02\x80\xb2\x71\x36\x39\xae\x94\x9b\x46\x8a\x5d\x10\x53\x93\xe9\x89\x3e\x73\x2b\x0b\x0f\xdb\x16\x9f\x24\xe7\x79\xd0\x72\x17\x39\x63\x61\x45\x27\xac\x6f\xc8\xa1\x2c\x87\x95\xfb\x46\x46\x1e\x1a\xc2\x91\x7a\x6e\x10\xf4\x3b\xfb\x8b\x77\xa6\xa9\x5e\x7c\xfa\xce\xf6\xf8\xb1\x93\xc1\xb3\xa3\x65\xb2\x9f\x68\x54\x5e\x21\x1b\x72\xa9\xa2\xc7\x2d\xe8\x47\x57\x14\xcb\xd4\xce\x6c\x21\x96\x97\xaa\xa6\x94\x01\xa5\x5d\x04\x35\xa0\x01\x41\xb7\x28\x74\x80\xb2\x3f\x75\x1c\x49\x4a\xb7\x45\xd3\x91\xa2\x14\x07\x0a\xcf\xc8\x68\x9c\x5f\xad\x37\x60\xca\x81\xc8\x35\x48\x35\x3e\x3e\x5a\x26\x8f\x6f\xaf\x92\xff\x7c\xf9\x2c\xbb\xb3\x4c\xf5\xdb\xb3\xac\x78\x73\x3c\xc8\x7f\x70\xbc\x95\xbf\x7f\xb8\xb3\x3a\xba\x3b\x5a\x8f\xcf\xfa\xf9\x42\x2b\x58\xd9\xb2\x0e\xac\x30\x00\x10\xec\x52\x72\xe5\x2d\x4d\x1b\x41\xbd\x1d\xd4\xa6\x40\x00\xda\xd7\xc7\xbc\xf8\xe2\x8b\x9e\xcf\x2b\xaf\xbc\xa2\xdd\xbb\x60\x96\xaf\xc5\x67\xdd\x26\x96\xcb\x36\x4b\xa9\x7e\xe6\x99\x67\xd4\x8f\x7e\xf4\x23\xdd\x45\x2e\x44\x0c\xd6\xa8\x00\x80\x6c\x51\x2c\xf3\x4e\x51\x3f\x44\x74\x7d\x9c\x02\x90\xd7\xab\xd0\x69\x20\xf2\x9c\x02\x00\x24\x06\xb3\x4b\xd3\xde\xf0\xea\x24\xdb\x3b\x98\xf4\xae\xef\xcd\xd3\x27\x46\xcb\xf4\x67\x86\x6b\xf5\x5c\x56\xa8\x9b\x89\x86\x7d\x70\xfd\x28\xa9\x48\xbe\xce\xb1\x5d\x3d\xe5\x0b\xd6\x1a\x4e\xc7\x8d\x44\xc1\x1a\x14\x37\x90\x40\x17\x29\x65\xe9\xf8\xbb\xb6\x4e\xe3\x62\xd6\xd7\x80\x9e\x3e\x63\x25\xb7\x07\xdf\x54\x08\x1b\x61\x89\x0c\x5d\x80\xf2\xb3\xf1\x09\x36\x69\x7f\xad\x6e\x5c\x1f\x67\xff\xfd\xcf\xde\x1e\xdd\xfd\xd6\x93\xa7\xff\xf7\xbc\xa7\xc1\x5d\xc6\x08\x55\x7d\xcf\x59\xff\x07\x7f\xf0\x07\x7f\xa0\xfe\xe4\x4f\xfe\xa4\x69\x9a\x44\x45\xbe\xb9\xbe\x53\xd2\x15\x31\x5e\x9c\x9e\xc7\x01\xe4\xbd\x8b\xc5\x24\xe6\x27\xb5\x8f\x26\xbd\xc8\x65\xa0\x34\x6d\xfa\x49\x8a\x47\x75\xa4\x91\xe4\xe2\x32\x74\x7d\xe6\x69\xe0\x7e\x52\x5f\x21\xf5\x21\xfe\x59\x6a\x2b\x3f\x0d\x33\x53\x53\x1c\xd2\xbb\x14\x07\x44\x68\x24\x1e\x9b\x9a\xc0\x9c\xdb\x34\x1d\x4d\x3c\x7c\xdc\x59\x96\xa9\xd5\x6a\xc5\xb7\x48\xbb\xbf\xee\xc7\x17\xec\xd6\x16\xed\x42\xb5\x6d\x7a\x57\x69\x18\xed\xcf\x7a\x57\x9f\xfb\x78\xf8\xe9\x27\x8e\xb7\x3e\x75\x61\x9e\x5e\x49\x35\xa6\x76\xa3\x00\x00\x40\x64\x3a\x04\x7c\xc7\x44\x47\x51\xe0\xcd\xe7\x50\x81\x1a\xd2\xd9\x06\x7c\x6a\x4c\xe3\x8e\x2f\xfa\x65\x1f\x03\x90\x14\x03\x20\x8d\x6b\x52\x22\x22\x05\xb2\x07\x87\x6b\x85\x03\x29\x13\x01\x64\x20\xc8\xc3\xbf\x03\x18\x6d\x4a\x30\xb9\xc8\x95\x39\x5c\xa6\xfa\xfd\x79\x4f\xbf\x7d\x36\xc8\x7f\x74\x3a\xc8\xdf\x3b\x1e\xe6\x87\x87\xa3\xd5\xf1\xbd\xed\xf5\x4c\xab\xc0\x24\xce\xa7\x8d\xf8\x0f\x20\xac\x8b\xfe\xd9\x54\x87\xe0\xd5\xd6\xc7\xd0\xbf\x00\x00\x9b\x80\x9b\xdf\xfb\xbd\xdf\x53\x7f\xf1\x17\x7f\x21\x7e\x6f\xfa\xd6\xe6\x68\x58\xfa\xfc\xfb\xbf\xff\xfb\xea\x4f\xff\xf4\x4f\xfd\x62\x59\xe7\x58\xda\x6a\x8e\x01\x0f\x1e\x46\x09\x34\x8a\x7d\xe7\xd3\xb5\xfe\x67\x8c\x51\x08\xa8\x7a\x45\x09\x56\x1e\x19\x67\x57\xf6\xe7\xbd\xeb\xbb\xf3\xe4\xa9\xed\x55\xfa\xf4\x56\xae\x6e\xf6\x0a\xbc\x91\x68\xdc\x53\x06\x06\x65\x38\x54\xbe\x36\x79\xa5\xed\xd2\x62\x65\x86\x10\xa7\xf0\x7a\x5d\xbe\x93\x7f\x5b\xda\x57\x95\x3f\x21\x44\xb7\xb9\xe1\xff\xa5\x32\x55\x81\x21\xb0\x8e\xf0\xbe\xc1\x58\x4f\x24\x81\x0d\x09\x57\xc5\x6a\xe3\x13\xda\x0f\x6f\x8c\x06\x0c\x68\x84\xc5\x59\x3f\xff\x2f\xff\xef\xf5\xc9\x2b\xdf\xbf\x36\x7d\x63\x95\x9a\x89\x01\x33\xc3\x6a\x8b\xf4\x8a\x00\x99\xdc\x95\xd9\x7c\x3e\x07\x52\xf7\x36\xe9\xe3\xcf\xa3\x5c\x79\xd8\xae\xfa\xa3\x2b\x68\x88\xf1\x3e\xef\x73\x97\x41\x3c\x97\xd5\xd1\x77\xe5\x4d\xf9\xb7\xc5\x71\x9e\xb4\x75\xd1\xed\xb5\x38\xda\xd4\xcf\x26\x95\xa3\xc9\x6f\x53\xbe\x6d\xf4\x5d\xe5\xe9\x52\x90\xe7\x05\x2b\xe7\x72\x31\xf0\x62\xe4\x53\x76\xdd\x09\xbb\x03\xbb\xde\xc5\x9d\xf9\xe2\x76\x1c\xed\x5e\x98\xa7\x97\x9f\xba\xb7\xf5\xec\xcd\x7b\x5b\x9f\xba\x34\xed\x5d\xcf\x72\x35\x90\xc0\x86\x55\xd3\x50\xdd\x07\x64\xfd\x49\x2f\x8a\x22\x4a\x81\x5a\xc7\x45\x69\x6a\x80\x81\xbf\xc7\x4e\xfb\x14\xe2\x90\xac\x24\xd2\x7b\xe0\xc7\x02\xb6\x8d\x5c\x03\x72\xd6\xa9\x8b\x0a\x26\x92\x4e\x47\x4f\xde\x72\x03\xb0\xd2\x0a\x66\xb9\x32\xc7\xab\x44\xdf\x9e\xf7\xf4\x7b\xd3\xac\xf8\xf1\xa4\x5f\xdc\x3e\xeb\xe7\x77\x4e\x86\xc5\xe1\xe1\x68\xe5\xac\x31\xc1\xae\xa4\x06\x20\x03\x10\xd6\xd1\xc0\x8f\x02\x98\x48\x92\x3b\xb7\xb3\x26\xc0\xd0\x75\xc7\x13\xa9\xdf\x35\x9e\x4d\xfc\x99\x93\x3a\x4f\xca\x83\xef\x02\x92\x2c\x29\x94\x57\x1d\xa0\x54\xb4\x69\x4f\xab\x74\x6f\x91\x0e\x0f\x26\xbd\xbd\xbd\x79\x7a\x30\x5a\x26\xd7\x46\xcb\xf4\xb1\xd1\x52\x3d\x3d\xc8\x93\x27\xfc\x89\xb6\x06\x32\x04\xc8\x00\x50\x89\xeb\xac\xec\x5f\xfe\x5e\x81\x87\xb0\x16\x55\x6f\x15\x68\x71\xe1\x9b\x16\x93\x87\xd0\xbb\xa5\xfd\x81\x54\x6f\xeb\xeb\x60\x24\xf9\x63\xfe\xd2\x80\x86\x5a\x71\x3c\x80\x66\xe9\x29\x14\x8c\x0f\x47\xab\xff\xfd\x5f\x1f\x1f\xff\x4f\x1f\x5e\x58\xde\x5e\x25\x66\x0c\x58\xee\x32\xb2\xc0\x25\x87\x0a\xb8\x68\x80\x5a\xbd\xdb\x14\xb8\x40\x03\x4d\x93\xd2\x3f\xef\xa0\xbc\x4d\xe9\x4b\xb4\x5d\xf8\x35\x3d\xc7\xe2\x3f\x8f\xdc\x12\xef\x26\xdd\xfb\xa0\xfa\x73\x53\x7d\xed\x5d\x9b\xc5\xe5\x61\x08\x23\xf9\x35\x65\x42\x57\x34\xd9\xd5\x02\xd4\xc6\xb7\x4b\x1a\x9a\x78\x3a\xc7\xbf\x53\x7f\x05\x00\x7a\x34\x1a\xa9\xc9\x64\xa2\x59\xe7\xee\x3a\x54\xb7\x8b\x21\xb5\x66\x6a\x77\x48\x5d\x86\xe5\x21\x75\x43\xf6\xdb\x05\x80\xa1\xd2\xb0\xbb\xb3\x4c\x2f\x3f\x7e\xbf\x7f\xf3\xa9\xa3\xad\xe7\xae\x9e\x65\x8f\x0f\x72\x35\x8a\x75\x4c\xf5\x02\x97\x35\x33\x1f\xcb\xb9\xe9\x27\x24\x5d\xad\xa3\x6a\x1a\x70\xd5\xe3\x6c\x94\xa2\x9b\xb3\x3d\x62\xb8\xa3\x21\xe4\xd4\x85\x1f\x07\x2a\x2d\xd1\x01\x40\x87\xd1\x70\xf9\x6f\x6e\x10\x56\x1a\x60\x56\x28\x33\x5e\x27\xe6\x68\x99\xea\xdb\xf3\x9e\xfe\xe0\xac\x9f\xff\x64\xd2\x2f\xee\x4c\xb2\xe2\xf0\x74\x2b\x3f\x3a\x1e\xe6\x93\x49\x09\x64\x1c\x50\xf1\x80\x86\x82\x19\x32\xc5\xe8\x00\x8b\xaf\x6f\x14\xb8\xc4\xb6\x5a\x03\xa9\x9f\x4d\x8b\xae\x1b\xc2\x77\xb1\x84\x48\xbc\x7d\x5d\x97\xac\x41\x52\x38\x6a\x25\x21\x8e\x2f\xbe\xa5\x6d\x46\x02\x2d\x81\x65\x85\x84\x49\x13\x8d\xe9\xee\x22\xc9\x2e\x4d\x7b\x7b\xbb\x8b\xf4\x60\x7b\x95\x5c\xd9\x59\x26\xd7\x47\xcb\xe4\xb1\xc1\x5a\x5d\xef\xe7\xea\x5a\x5a\xe0\x95\xc4\xe0\x48\x19\x18\x7a\xb0\x52\x4b\x73\x65\x61\xa1\x03\x81\x6e\xd8\x8c\x32\x82\x72\x6a\xd7\xd4\xf3\x85\xc7\x53\x59\x43\xc3\x32\x93\xd6\xa8\x75\x97\x25\x8e\xce\x69\x9c\x31\xe6\x41\xfc\x76\xf0\x00\x50\x1f\x04\x00\x18\xbd\x4c\xf5\x07\xb7\x2e\x2e\xfe\xe7\xd7\x1e\x3b\xfb\x87\xa3\xed\xf5\x9d\x1c\x0d\xdd\x22\xbd\x02\x00\x8d\xe4\xda\x8d\x97\x5f\x7e\x59\xff\xd6\x6f\xfd\x96\xfa\xfa\xd7\xbf\x0e\xf3\xf9\x9c\x4a\x20\x01\x5b\x49\xa7\x70\xda\x26\x00\x23\x85\x6d\x72\x6d\xa0\x4a\x7a\xe6\x61\x63\xba\xb0\x29\xce\xae\x60\x62\x13\xab\x4a\x53\xba\xda\x68\xda\x5c\x53\x39\x48\xba\x95\xc7\x53\x0b\xcf\xeb\x63\x57\xd0\x11\x8b\x78\x13\xb4\x16\x73\x9b\x58\x77\xa8\x3c\xd4\x35\xc5\xd9\x06\x60\xce\x6b\x45\xa2\xb2\x44\x2b\xe5\xce\xce\x8e\x3a\x3b\x3b\xd3\x00\x8d\xd6\x97\x14\x2a\x00\x13\xdc\x6f\x04\xe1\x94\xd1\x08\x00\x46\x68\x60\x38\x5a\x26\x97\x1f\x3d\xed\x3f\x7e\xf3\xde\xd6\x73\x8f\x9c\xf6\x6f\x6e\xaf\xd5\xae\x32\xd5\xc8\x34\xda\xb9\x81\x30\xc2\x0a\x4c\xd8\x8c\x26\x02\x70\xba\x82\x80\x98\x0b\xaf\x13\xa8\x0e\xc5\x03\xe4\x9d\x5f\xdd\xd2\x12\x8b\x53\x92\x69\x93\xb3\x5f\x5a\xad\x49\xf6\x9f\x98\xd2\x72\x9d\xb5\x01\x58\x19\x84\x85\x46\x33\xc9\x95\x39\x59\x25\xe6\x70\xd9\xd3\x77\xa6\x59\x71\xfb\xac\x5f\x7c\x34\xed\x17\x87\x8b\x54\x1f\xcf\x7a\xc5\xf8\x6c\x50\x9c\x9c\x6c\xe5\xb3\x45\x4f\x8b\xe7\xc4\x58\xd6\x01\x80\x11\xd6\xc6\x04\x75\x35\xb2\x4b\x29\x5a\x9f\xd9\x14\x8c\xb8\xc3\xc9\xd1\x75\xb0\xa0\xf8\xf6\xd9\x40\xaf\x18\xa0\x91\x76\x01\x29\xe1\x59\x02\x29\x40\x01\x0b\x1a\x50\x59\x8e\xd9\xde\x3c\x1d\x5c\x98\xf7\xf6\x86\x6b\xb5\x3f\x58\xab\xfd\xd1\x2a\xbd\xb2\xbb\x48\x1e\x1d\xae\x93\x6b\xfd\x1c\xaf\xf5\x0a\x75\x25\xd1\xb0\xab\x0c\x0e\xd1\xc0\x10\x01\xed\x59\x49\xb2\x75\xa2\x96\x17\xf6\x6f\x8c\xa6\x56\xaf\x98\x75\x90\x5a\x2e\xb0\xcc\x08\xa0\x67\xad\x48\xd6\x9d\xaa\x6e\x47\xd0\x82\x8f\xcb\x1e\x36\x67\xe9\x24\xeb\x0f\x97\x93\x4f\x63\xb9\x21\x8a\xa1\x29\xa5\x56\x16\x9a\x30\xd7\xc2\x8c\x0d\xe7\xad\x2f\x06\x0c\x40\x3e\xed\x17\xdf\x7d\xeb\xca\xec\x7f\xf9\xde\x23\x93\xff\x72\x36\x28\x0e\x0d\x82\xdb\x65\xe4\xa6\x8d\x3c\x78\xa1\x3b\xe9\x76\x77\x77\xd5\x78\x3c\xee\xaa\x30\x37\xb1\x50\xc4\x9e\x37\x0d\xb7\x89\x2c\x9b\xca\x17\xfb\xb6\x89\xa1\xe1\x61\x58\x6d\x9a\x80\xe1\xa6\xe0\x49\x0a\x2b\xc5\x53\x93\x8b\x2f\xce\x6d\x1c\xa9\xb1\x77\xc7\x48\x37\xd0\x52\xff\xf3\x66\x30\x7f\xe7\xe0\x40\x42\x64\x5d\x50\x6c\xac\x00\xbb\xe4\x41\x4c\xe6\x18\x5f\x1f\xde\x81\x16\x80\xd2\x0c\x6a\xc1\x8b\xb6\x9d\xad\x06\x00\xb0\x8d\x56\x9a\x06\x90\xe4\xd4\x06\x41\x4f\xfa\x85\x7e\x7f\x6f\x91\xaf\x12\xb3\x5a\xa6\x7a\x71\xe3\xa4\xff\xf4\xee\x22\x3d\x48\xdc\x71\xe2\x91\x1e\x55\x04\x1b\x58\x75\x78\x74\x48\x69\x28\x1f\x36\x12\xf3\x7f\xc5\x51\x5b\x5d\x61\x79\x32\x4e\x8f\x00\xc8\x7b\xe9\xc0\xb2\x53\xef\xf1\xe9\x74\x7f\x74\xab\x73\x47\x27\x82\x16\xd6\x41\xd3\x5b\x73\xe9\x35\xa5\xf5\xbd\x1b\x00\x06\x50\x29\x3b\xdd\x97\x18\xb5\x97\x6a\xb8\xde\x2f\xcc\xcd\xed\x55\x32\xdb\x9b\xa7\xe3\x5c\x99\x93\x5c\x99\xa3\x65\xaa\x8f\x16\x3d\x7d\x34\xe9\x17\x1f\x8f\xfb\xf9\xd1\x34\xd3\x47\xab\x54\x9f\xcc\x7a\x7a\x7c\xd6\xcf\x27\xb3\xac\x58\xad\x12\x93\x9b\xca\x32\xa3\x01\xc2\xb3\x61\xb0\xe1\xe0\x3b\x01\x80\xf0\x45\xc0\x8e\x8e\x02\x86\xa6\x51\x59\xa7\x29\x20\x36\x6d\xe3\xe9\x5d\x78\x0a\x44\x88\xe3\x16\x49\xfa\xac\x62\xcf\x4a\x83\xca\x72\x95\x6d\xaf\x92\xc1\x68\x95\x0c\x07\x6b\xb5\xdb\xcf\xd5\xee\x70\xad\xf6\x77\x17\xe9\x95\xdd\x45\xfa\xc8\x60\xad\xae\xf4\x73\x3c\x48\x35\x1e\x94\x6b\x55\x70\xa4\x0c\x0c\xca\x8b\x0d\x9d\x75\xc8\xd5\xb4\xea\xc0\xc6\xd8\x76\x5f\x0a\x5c\x01\xc8\xb1\xf8\x7c\x3a\xc5\x83\x8f\xfa\x7a\x2b\xca\xda\x81\x96\x32\xa0\x3d\xed\x1a\xc1\xef\xe4\xe1\x5b\xfb\x91\x37\x44\x22\xb7\x5b\xa0\x5f\x35\x17\x4a\xc7\x6b\xab\x21\x03\x85\x6a\xdd\x8a\x0b\x57\xd5\x7d\x5a\xe1\x99\x3c\xd5\x3f\x36\x5e\x7e\xdf\x12\x02\x02\xa4\x5b\xab\xe4\xb9\x4f\x1c\x0f\x7e\x79\xdc\xcf\x8f\xdf\x3e\x98\x2f\x66\x7d\xed\x36\x28\xe4\x50\x0e\xd8\x72\x52\x6f\x7c\x1d\x1e\x0c\x06\x30\x1e\x8f\x01\x36\x1f\x10\xc7\x74\x49\x93\xbe\x72\x7f\x37\x19\xb4\x36\x0d\x90\xbb\xba\x87\x01\x96\x9a\x40\x41\xd7\xf4\xb4\x81\xab\x98\x3e\x8d\xc9\xb3\x49\x1e\x4a\xfd\x41\x50\x66\x1c\xb8\x6c\x8a\xe2\x24\xab\x85\x64\x0e\x73\xcf\x52\x86\xc6\x80\x43\xdb\x77\x2e\x33\x7f\xe6\xae\xcd\xbf\x0d\xdd\x36\xf1\xa1\xb2\xb6\xa5\x31\x88\xc7\x75\xfa\x82\x79\x3e\x77\x7c\x4c\xfd\x56\x62\xaa\xbc\x72\x00\xd0\x1a\x4c\x3e\xcb\xb4\xfe\xf0\xc2\x72\xb9\x4c\x8b\xc5\x22\xd5\xb3\xc7\xef\x0f\x9e\xbd\x38\x4f\xaf\x65\x85\xca\x9a\xd4\x78\x00\x5e\x82\x8e\x98\x74\x42\xdc\xec\xcc\xd9\x39\x06\xd2\xc8\x50\x50\x6a\x75\x4b\x86\x87\x25\x9e\x00\x39\xb5\x43\x4e\x54\x60\xd2\x33\x52\x19\xeb\xa2\xf2\x00\x5c\xf0\xb8\x8f\xd4\x01\x4b\xe9\xf0\xa6\xf3\x50\x2c\x1e\x52\x81\xc1\x61\x6a\x60\x68\x0c\x1e\xf4\x8a\x72\x6d\xcc\x70\x95\x2c\x0c\x9a\x59\xa1\x60\x52\x94\x6b\x64\x0e\x97\xa9\x39\x9c\x66\xc5\xe1\x78\x90\xdf\x9d\xf4\x8b\xf1\xbc\x57\x8c\xd7\x89\x99\xac\x95\x99\xac\x52\x3d\x9b\xf7\xf4\x62\x91\xea\xd5\x32\xd5\x39\x99\x6a\x02\xa8\x5b\x67\x00\xab\x7b\x61\x00\x98\x75\x26\xb6\x98\xd7\x85\x91\x1c\x05\x2b\x6d\x0b\x69\x49\x1d\xa7\xf4\x7c\xab\xb8\xf7\x03\xa8\x6e\x59\xb6\xdf\x3c\x40\x41\x40\xa5\x34\x40\xaf\xc0\x74\x90\xa7\xd9\xd6\x5a\x0d\x07\x6b\x35\xec\x69\x1c\xf5\x72\x35\x1a\xae\xd5\xde\xce\x22\xdd\xdb\x59\x26\x97\x87\x6b\x75\xd0\xcf\xd5\x7e\xaf\x50\x57\x7a\x05\xee\x2b\x03\xbb\xca\xe0\x08\x0d\x0c\xb0\xb4\x62\x2a\x64\x35\xa5\x04\x16\xe5\xbf\x00\x58\x29\x7d\x11\xb4\x84\xc0\xc3\xb8\x7f\x05\x60\x5d\xd5\x3e\xbb\xc6\xac\x4c\x58\x00\xb4\x5d\xfd\x46\x10\xea\x72\x7d\x3a\xcd\x02\x19\x64\x6d\x16\x02\x40\x51\x2b\x13\xe7\xcb\xc3\x40\x28\xb3\xd4\x4c\xe8\xa0\xc5\x54\x82\x75\x9e\x92\x72\x79\x96\x00\x8e\x2e\x2c\xd2\xe7\x9f\x3e\x1a\xde\x99\x65\x7a\xfc\x93\xbd\xc5\x62\xd9\x83\xdc\x18\x93\x92\x7e\x50\xd9\xfe\x4e\x19\x63\xb4\xdb\x55\x06\x21\x58\x8d\xf5\xc5\x00\x72\xff\xdb\xd5\x9a\x1e\x03\x37\x9c\x37\x8f\x87\x87\xe5\xa0\x9b\xb7\x4b\x09\xd4\x68\x46\x1b\x03\x3e\x92\x2c\x31\xc7\xe3\xe6\x00\x41\xd2\xd3\x12\x3d\x97\xb3\x49\xae\x98\x61\x83\xa7\x8d\xd3\xc7\xf2\x38\xe0\x1f\xdb\x0e\x1d\x03\x0f\x5d\x2a\x40\x1b\x5a\x6c\x43\xb3\x6d\x40\xa6\x29\xbe\x2e\x99\x1b\xab\x2c\x6d\x88\xbd\x0b\x28\xa2\xb2\xc6\x2a\x7f\xc0\x83\x6e\xfb\x74\xd6\x17\xf7\x6e\x2d\x2f\xa9\xb3\xc0\xf0\x75\x09\x50\x8d\xb2\xbd\x69\x75\x99\xea\xfc\xe3\x9d\x55\xbe\x48\xf5\x62\xd6\x2b\x66\x4f\x1e\x6f\x3d\x77\x75\x92\xdd\xc8\x72\x1c\x86\x23\x27\xcb\x07\x98\x3a\xa7\xc0\xc3\x6b\xdf\x86\x7b\x89\x9c\x3f\x19\x92\x52\x33\x78\x94\x1e\xd8\xe8\xbe\x8a\x1e\xc0\x2b\x0e\x08\x3b\x4c\x49\x36\xe2\xe8\x08\xb7\x4e\x52\xc9\x16\x8e\x4e\x09\x0e\x0a\x06\xaf\x52\x2e\x09\xfc\x85\x4c\x71\x69\xa3\x23\xd1\x1a\x90\xf2\x7e\x98\x22\x40\xaa\x0c\x0c\xc1\xe0\x7e\xaa\x01\x00\x4c\xbe\x85\x6a\xa1\x01\x66\xfb\x98\xce\xb4\xea\x9f\xe4\xca\x8c\xf3\x44\x1f\xaf\x95\x39\x59\xa6\xfa\x78\x96\xe9\x7b\x67\xfd\xfc\xf8\xac\x5f\x8c\xa7\xfd\x62\xbc\x4a\xcc\xac\x50\x66\x51\xa0\x59\xad\x13\xb3\x58\x27\x26\xcf\x95\x59\xe5\xca\xe8\x3c\xd1\xba\x20\x60\x97\x4c\x1f\x6a\x0a\x28\x40\x68\x3f\x31\x50\x12\xb3\xd4\x70\x30\x42\x2d\x2e\x84\x46\x91\x78\x95\xfb\x06\x16\xb0\x28\x0d\x2a\x2d\x30\x4d\xb5\x52\x69\x81\x59\x56\xa8\xb4\x57\xe0\x20\xd5\x38\x48\x74\xf9\x77\xb8\x56\xc3\xed\x65\xba\x7b\x61\x91\xec\x6f\xaf\x92\xcb\x83\xb5\x3a\xe8\x15\x6a\xbf\xa7\x71\x3f\xd1\xb8\x97\x68\x18\x21\xc0\x10\x0d\x0e\xd1\x60\x86\x06\xb2\x12\x20\x90\x7a\x4a\xde\x28\xb0\x00\x13\xd6\x31\x4a\xe3\x3c\x10\x01\x02\x53\x9f\xa3\x71\x16\x4a\x63\x01\xaf\xaf\x54\x95\x35\x26\x98\x86\xb5\x56\x11\x17\xd6\x9f\x7f\xcb\x80\x78\x6d\x00\x80\x4e\xce\x72\x1a\x28\x06\xda\x89\xc8\xe5\xb7\x18\x7e\x77\xdf\xed\x3f\x55\x0b\xa4\x2d\xb2\x8a\x87\xd6\x7d\x32\x0d\x14\xf6\x30\x16\x8d\x39\xe0\xef\x00\x18\x80\x81\xb4\x50\x57\x2e\x4f\x7b\x5f\x78\xea\x68\xeb\x70\xd1\xd3\x27\x77\x76\x56\xab\x3c\x29\xaf\x01\x70\xf5\x00\x08\x78\x81\xb8\xc2\xef\x32\x70\x6d\xb2\x3c\x48\xfa\x28\x06\x42\x62\xfd\x78\x1b\x4d\xcc\x5a\xc1\x01\x4e\x0c\x48\xd0\x6f\x4d\xbc\x25\xfd\xdc\x14\x6f\xdb\x20\xdc\xd1\xc4\x74\x74\x0c\xd0\xb4\x81\x2d\xc9\xb5\x01\xc0\x20\x4f\x90\x7d\x68\x02\x12\x92\xd5\xa1\xc9\x0c\xd5\x66\xc1\xd8\xe4\x5b\x13\x42\x6c\xe3\xd1\x66\x2a\xeb\x6a\x5d\xfa\x69\xb9\x20\x7e\xe1\x56\x69\xfa\xcb\x80\xec\x38\xb2\xbb\x8d\x86\x10\x6e\x9b\x1e\x01\xc0\x10\x35\x8c\xb6\xd7\xc9\xa5\x47\x4f\xb2\x1b\xcf\xde\xdd\xfe\xb9\x6b\x67\xd9\x13\x83\xb5\x1a\x29\xc3\x47\x99\x20\x2a\x5f\x37\x3a\x92\x16\x54\x56\x61\xc8\x55\x03\xc0\x78\x74\x00\x08\x01\x34\xf0\x71\xb9\x4e\xbc\x0a\x44\xc3\x39\xa3\x8b\x1c\x89\xed\x24\x09\x70\xea\xec\x9a\x50\x19\x4b\x5b\x35\x62\x86\x60\xc4\xdc\x1a\x5f\xcd\x94\x53\xe7\x5d\xd3\x92\x65\x1c\xda\x20\x68\x40\xb3\x32\x00\x2b\x83\x66\xa1\x11\x66\x1a\x61\xe2\xa6\x9a\xd6\x89\x3e\x59\x25\xe6\x78\x95\xea\xd3\x59\x4f\x8f\xe7\x59\x31\x99\xf5\xf4\x6c\xde\xd3\xb3\x79\xaf\x58\xac\xd2\xf2\xb6\x6b\x8d\x66\x65\xaf\x34\xc8\x35\x82\xd6\xca\xfe\x05\xa3\x0d\x82\xd6\x68\x40\x23\x68\x83\x00\x06\x8d\xb6\x62\x68\x2a\x6e\x9b\x23\xc9\x51\x68\x50\x29\x03\x50\xfe\x50\x21\x94\xeb\x4e\xac\xbf\x4a\x0c\x2a\xa5\x31\x53\x06\x52\x55\x02\x8c\xb4\x5f\x60\x36\x58\xab\xc1\x60\x9d\x0c\x86\x6b\x35\x1a\x2d\x93\xdd\xe1\x3a\xd9\x1b\xac\xd5\xc5\x5e\x81\xbb\xa9\x56\x7b\xa9\xc6\xdd\x44\xc3\x7e\xa2\x71\x57\x81\xb5\xa2\x98\x72\x3d\x18\x96\x60\x30\x98\x88\xa9\xb2\x55\x3e\xe2\xbe\x5a\x03\x16\xd2\x7b\x1a\xdb\x06\x6a\xf7\x04\xb9\xba\xcc\x41\x86\xa3\x61\x20\xa8\xdd\xc2\x47\xde\xa4\x7a\x2c\x2c\xa4\xaa\xad\x95\x71\x96\x20\x0c\xd3\xea\x28\x82\x83\x27\x21\xac\x72\xb5\xf6\x68\xdf\xa9\xf8\xbe\x0d\xd6\xda\x38\x87\x2e\xe4\x5f\xc6\xc8\x18\x03\x46\xc1\x62\x92\x15\xff\xe5\xad\x2b\xb3\xff\xf5\x8d\x6b\xd3\x6f\xdd\x1f\xe6\x47\x00\xe5\x7a\x17\x28\x6f\x8f\x0e\x4e\xd4\x35\x26\xb8\x0e\x20\x36\x42\x6f\x53\x7c\x5d\x2d\x35\x40\xde\x63\x4e\x02\x20\x4d\x72\x74\xa5\xe1\xb4\x9b\xa6\xa1\x4d\xee\x2e\xbc\x9b\xe4\x06\x46\xd3\x55\x87\xb6\xa5\xa1\x73\x7a\x9d\xc5\xa5\x29\xf2\x18\x72\x73\x48\xac\x2d\x1c\xa5\xdf\xc4\x04\xd5\x05\x3d\x4a\x19\xc9\xe9\x38\xbf\xb6\x4a\xd4\xe4\xef\xbe\x51\xde\x4d\x68\x5a\x42\xc9\x12\x2a\x57\x00\x00\xbf\xfa\xab\xbf\x0a\x2f\xbf\xfc\xb2\x3b\x84\x4b\x1a\xed\xae\x4c\xb8\x56\x81\x8e\xa2\xc3\xe3\xe5\x15\xe8\x49\x56\xe8\x77\x0e\x16\xd3\x45\xcf\x2c\x16\x87\xc3\xc5\xa3\xa7\xfd\x9b\xa3\x55\xb2\x97\x68\x93\xd2\xa9\x19\xbf\x58\x8f\xf4\x80\x7e\xf4\x08\x15\x60\xa1\x9d\x19\xda\xde\x38\xec\x94\x89\x43\x08\x00\x4f\x13\x68\xa1\x71\xb8\xe1\x6c\x30\xc2\x2d\x23\xf7\xfe\x41\x24\xc1\xab\x6c\xe1\x08\xd8\x48\xe2\x7a\x99\x84\x8e\x9e\x03\x2c\x20\x0a\x8a\x5a\x17\x02\x51\x43\x2d\x46\x2d\x46\x4d\xe2\x07\x7e\x58\xa5\x1f\xb1\x3c\x5f\x04\x0c\xa6\x00\x30\x74\x0b\x6b\x0c\x80\xee\x03\x68\x03\x26\x37\x90\xe4\x06\x61\x01\xe5\x22\xe0\x95\x01\x58\x68\x65\xc6\x05\xc2\xb8\x50\x66\x6c\x2d\x36\x93\xb5\x82\xf1\x5a\xe9\xf9\x3a\x29\xa7\x9b\x96\xa9\x5e\xac\x12\xb3\xca\x13\xb3\x5a\x25\x26\x5f\x25\x7a\xb5\x4e\x74\xbe\x4e\x4c\x5e\xa0\xd1\x76\x0a\x0a\x00\x00\x34\x80\x36\x68\xa4\xb6\x4e\xc4\x2f\x01\x89\x13\x30\xd5\x98\x66\x05\xa6\xd6\x6a\x92\xa6\x1a\xb3\x54\x63\x9a\x16\x98\xf6\x0a\x35\x18\xe4\x38\x18\xac\x93\xdd\x2c\x57\x17\x7a\x1a\x77\x53\x8d\xc3\x44\xc3\x28\x31\x38\x4a\x34\xee\x2a\x8d\xbb\xe5\xce\x1e\x1c\xba\x29\x1e\x34\x90\x22\xd8\xa3\x03\x0c\x28\x9f\x1b\x7c\xaa\x0b\x00\xc0\xb8\x1b\xcf\xad\x74\xae\x8c\xca\x82\x12\xa6\xbb\xec\x3b\x29\x74\x67\x29\xa8\xd5\x59\x57\x4e\xa6\xe2\x5f\xd1\x84\x77\x02\xf1\x02\xa6\xbc\x28\xc8\x01\xc4\xc0\x2a\xe2\x79\x39\xe9\xb9\xa5\x0b\xa1\x5a\x8b\x56\x49\x6f\xff\x8f\x36\xcc\x80\x4f\x05\x4a\x28\x9f\x8a\x9f\xa1\x02\xd3\xb6\x15\xe2\x27\x1f\xa6\x6a\x17\xac\x6d\x10\xfa\x72\xf1\xbd\xc9\x06\xb9\x7a\xfc\xca\xa4\xf7\xd4\xed\x79\xfa\xc6\xfd\x61\x7e\x02\xe0\x0f\xff\x73\x96\x17\x5f\xdf\x22\x87\x25\x76\x05\x2a\x5d\x67\x04\x80\x85\x95\xe8\x62\x3a\x49\xe2\xcb\xc3\xd2\x70\x9b\x0c\xfc\x25\xeb\x4c\x93\x35\x25\xe6\x2f\xc5\x21\xe9\xa3\x36\x70\x27\xfd\x6d\xd3\xa3\x5d\xf3\x8a\xf2\xa4\x32\xf9\x77\x6c\x10\xb2\x89\xf9\x26\x48\x31\xf6\xde\x85\x4f\x8c\x96\xbe\xb7\xc9\xdb\x45\xbe\x36\xff\xf3\xba\x4d\x11\xa9\x77\x31\xcb\x8b\x71\x37\xd2\xd6\x0f\xaa\xf3\xbb\x8e\x8c\x31\x43\x6b\x89\x19\x41\xb9\x9d\x73\x74\x69\xda\xbb\xfa\xc9\xc3\xe1\xa7\x9e\x38\x1e\x3c\x77\x61\x9e\x5e\xe9\x05\x97\x34\x82\xd7\x92\xc1\x08\xcf\x2d\xca\xed\xb0\x7b\xa4\xdc\x0d\xd1\x80\x18\xa0\xd6\x5f\xc6\xe9\x00\xc4\xc5\x90\x12\x93\x1a\x99\x30\x92\x94\x9f\x3a\xc8\x10\xf3\x0c\xb6\x82\x76\x48\x53\x93\x90\x8d\xc1\xe8\x08\x36\xbe\x1b\x2a\x94\x81\xa4\xd5\x80\x06\x04\x6d\x00\x34\x94\x5b\xb4\x35\x00\xac\x4c\x79\x68\x5e\x79\xc9\x5d\xe9\x6f\x2d\x38\x66\x61\xd0\xcc\x34\xc2\xc2\x20\xac\x0c\x5a\x50\x84\xf6\xf0\xbc\x92\x6b\x6e\x10\x72\x4d\x06\x2e\x56\x45\x59\x10\x51\x02\x0a\x04\x00\x2c\xad\x28\x03\x34\x90\xd9\xbf\x03\xb7\x10\x56\x39\xeb\x88\x9b\xc6\x01\x18\xa0\x71\x67\x18\x95\x96\x19\x9b\xa0\x54\x48\x9a\x7f\x0d\x55\x66\x53\x4e\x86\x6b\x47\xa4\x12\x88\x5a\x3e\x1a\xf8\x32\x13\x60\xab\x6b\xac\xdb\x2c\x66\xc9\x40\x87\x91\xfa\x5f\x03\xd7\x34\x5c\xcc\x1a\x44\xe9\x82\x76\x13\x4e\x0b\x75\xc9\x97\xc6\x76\x60\xdc\xc4\x13\x25\x32\x3a\x57\x66\x3c\x1e\xe4\xaf\xbd\xb7\xbf\xfc\x3f\xde\xbc\x32\xfd\xf6\xdd\x9d\xf5\x21\x44\x2e\x61\x74\xdb\xff\x23\x16\x97\x36\xc5\x19\x73\x31\x80\x03\x02\xef\x58\xb8\x26\x7e\x12\x9f\x87\xa9\x7b\x24\x5d\xd8\xa4\x1f\x7f\x5a\xfa\x6d\x53\xff\x4d\x0c\x05\xa2\x4b\x1b\x08\x39\x02\x72\xae\x0d\xd5\x02\x74\x13\x42\xb2\x90\x74\xb1\xc0\x6c\x02\x58\x62\x05\xda\xe4\xdf\x25\xf3\xba\x66\x74\x0c\x91\xb6\x59\x74\xa2\x5b\x5b\xad\xdf\x8a\xc8\x5b\xb3\xba\x20\xbd\x6d\x15\x8c\x06\x44\x7d\xb4\xbd\xca\xe7\x8f\x16\x8b\x49\xbf\x18\x3f\x73\x77\xeb\xe7\x0e\xa6\xd9\x8d\x2c\xc7\x01\x80\xb1\x1d\x69\xdd\x72\x50\xf5\x5a\xc2\x02\x3c\xd6\x7f\x05\x6b\x55\x22\x67\x7a\x50\xf3\x72\x6d\x7b\x36\x1f\x35\x06\xb4\x42\xa7\x68\xbf\xd5\x3a\x54\x2a\x13\xd4\x5d\x3d\x3e\x86\x74\x2c\x51\x78\x44\x7a\x18\x3f\x37\xdf\x07\xb0\xc8\xa0\x7c\x8e\x05\x99\x32\xa8\x14\x02\x51\xba\x82\x3e\x08\xae\x4e\x20\x91\x8a\x23\x7f\x2e\x4b\x19\x87\x32\x06\x54\x69\x92\xc0\xcc\xcb\x60\xa8\x35\x87\x28\xa8\x12\xe8\x00\x94\x40\x87\x72\x16\xea\xb8\xd1\xe4\xbb\xd4\x57\xd4\xfd\x0c\x28\x1b\x44\x95\xd3\x79\x6c\x21\x2b\x27\x67\xd3\x87\x2e\xef\x02\x1d\x18\xe4\x0b\x53\xb8\xd4\x42\x68\x48\x59\x00\x40\x35\x8d\x51\x01\xc2\xd0\x1a\x58\x57\xdc\xc1\x42\x5a\x17\x97\x53\xc9\x86\xe4\x97\x25\x46\x82\x16\x68\x9d\xb0\x89\x2b\x43\x22\xf8\xf0\x41\x59\x10\x79\x5c\xa2\x83\x75\x35\xfc\x10\xa3\x40\x76\x08\xd3\xec\xeb\x9c\xcb\x1f\x76\xf2\x6e\x0d\x88\x4b\x79\xe8\xf2\x09\x83\x7c\x76\x19\xe7\x69\x6c\x79\x18\x52\xa9\x4a\x2b\x92\xb1\x79\x60\xc0\x20\xe8\x55\x62\x8e\xee\x8e\x56\xdf\xfa\xe1\xe5\xd9\xff\x75\xeb\xe2\xe2\xcd\xb3\x41\x31\x23\x8b\xb8\x7d\xdd\x21\x3b\x2d\xbd\x05\xb7\x83\x6b\x1b\x08\x37\x59\xbe\xf9\xe8\x5e\xe2\xd9\xa5\x0f\x07\xa8\xf7\xff\xf4\xb9\xf3\xb4\x48\x0b\x4d\x0c\x00\x74\x71\x51\xfd\x73\x0e\x1a\x27\x4b\x17\x1d\xc7\x5d\x53\x5a\x44\x19\xe8\x25\x8b\xdc\x99\xc8\x8f\x7e\xa7\xcf\x8e\xb9\x61\x7e\x28\x08\xee\x5a\x0d\xe5\xd9\xb5\xb2\x21\x84\x71\xc7\x64\x57\x82\x8c\x34\x2e\xc3\xfc\x55\x03\x0d\x97\x85\xf3\x8b\xc9\xec\x64\x75\xbc\x10\xc2\xfc\xe0\x69\xf1\xe9\xcc\xb2\x0c\xfe\xe6\x6f\xfe\x46\xbb\xcb\x19\xed\x77\x9e\xbf\xc6\x82\x95\x02\x00\x8c\xfd\xab\x01\xc0\xfd\x75\xdf\x0a\x40\x34\xeb\xd4\xe4\xf7\xb6\xd7\xa7\x67\x83\xe2\x7e\x62\xa0\x18\xe4\xc9\xa0\xa7\xd5\x40\x11\x3b\x78\x6d\x44\x68\xfb\x47\x0f\x26\x5c\xe4\x4c\x39\xbb\xe7\x92\xce\x76\x71\x82\x79\xdd\xc5\x51\x9b\xf6\x91\xe6\xed\x91\x7c\x72\xf2\x79\xd3\x3e\x57\xe0\x0c\xc2\x04\x1f\x05\xcd\xe8\x81\x16\x99\x96\xa2\xf1\x61\x8d\x94\xe8\xa5\x2a\x5d\x6e\xa1\xa2\xeb\xf0\x9d\x22\x0a\x82\xd8\xb4\x54\x0b\x96\x1d\x1d\x06\x34\xd4\x49\xf9\x56\x7b\x24\x35\xaa\x7a\x0c\x35\x24\x4a\xe1\xac\x3c\x5e\x09\x57\xb4\xce\x5b\xa1\xb5\x7a\xd8\x5f\x02\x00\x09\x06\xbf\x72\x51\xb1\xfd\x05\xdf\xc0\x5d\x58\x08\x76\x3d\x0b\x96\xd6\x42\x5f\x2d\x9c\xe8\x88\x7e\x2d\x13\xb7\x08\xf8\xfc\x8c\x94\x07\x2d\x93\x5a\xda\x7d\x18\xb4\xbc\xcb\x48\xd0\x17\x16\xad\x9b\xae\x1e\xb0\xfc\x62\xa0\xa5\x9e\x97\x0e\x50\x55\xbc\x1d\xfb\x52\x3e\x52\x1f\x6d\x82\x82\x35\x23\x84\xde\xbd\xd3\x38\x5c\x9d\xf0\xc0\x81\xd0\x56\xdb\x95\x85\x93\x6a\x4d\x55\x27\x5d\x39\x57\x7c\xd1\xc7\x55\xd1\x62\xd5\xa6\x4c\x48\x6f\x20\xcc\xa7\x6a\x61\xae\x23\xb2\xe9\xf6\xf5\xd8\x2e\x77\xb6\x05\x56\x2f\x03\x00\xad\x60\x75\x3a\xc8\xdf\xfd\xe1\x95\xd9\xdf\xbf\x76\xe3\xec\x9b\xef\x5f\x5c\xfc\x64\xde\xd3\x13\xb0\x67\xb8\x00\xc0\xda\xf6\x59\xf4\x1c\xa3\x32\x1b\x11\xe1\xe8\xe8\x08\x4f\x4f\x4f\x69\x5f\xea\x8a\x8f\xea\x0f\x57\xc5\x68\x5f\xee\xe8\xa9\x62\xe7\x7d\x6f\x95\x49\x61\x3f\x4d\xf5\x0f\xed\xee\xa8\xee\xe0\xe1\xb8\x0e\xa2\x32\x50\x39\xa4\x67\x60\x61\x8c\x10\x96\xa6\x9b\xea\x04\x60\xb4\x5c\x0f\xf3\x34\xf0\x1f\xa7\x91\xf4\x21\x97\x89\xa6\x57\xb3\x70\xc8\xbe\x71\x5d\xce\x65\xa4\xe5\xca\xd3\xeb\xe5\x68\xba\x64\xf1\x61\x4c\xc9\x3c\x0c\xcb\x45\x57\x1a\x1e\x6f\x17\x4b\x48\x13\xef\x58\xf8\x36\x34\x2a\xd1\x71\xa4\x1e\x8b\xc3\xd3\x7d\xfb\xdb\xdf\x06\x00\x00\x66\x79\xe1\xf1\xf9\x3b\x3d\x10\x71\x01\x82\x15\x06\xc2\x0e\x20\xcf\x95\xc9\x3f\xb8\xb0\x58\x4f\xb3\x62\x72\xb2\x95\x9f\xdc\xbc\xb7\xf5\xec\xfe\xac\x77\xbd\x57\xa8\x01\xed\x05\x90\x3c\xd0\xd6\x4d\xfd\x91\xfb\x8b\x4e\x9e\xe4\xa0\x7c\x2a\x4a\x5b\x8b\x51\xe0\xc7\xe4\xa8\x86\x94\x58\xe3\x21\xc5\x5a\x03\x02\x82\xdc\x2e\x6e\x1a\x48\xb6\xae\x54\x19\xe3\xc1\x08\x86\xf9\x56\x1b\x61\xd3\x67\x41\x10\x51\x3e\xe2\x49\x06\xb7\x61\xb3\x06\x96\x2f\x24\xa8\x1f\xf5\xc7\x12\x0f\x0e\x24\xc8\xbb\xbb\x62\x32\xf1\xb4\xd1\x30\xb5\xc4\x88\xe5\x06\x80\x48\xf6\xad\xf0\x74\x04\x40\x26\x3c\x00\xce\xfb\xd3\x3a\xe8\xa7\x34\x1d\x6f\xf0\x16\x06\x63\x15\x76\x70\x27\x96\x97\xa9\x12\x94\xe8\xf5\xfa\x73\x2d\x51\x10\xc8\x4d\x6a\x04\x9b\x6a\x95\x41\x0b\x9f\x2b\xa2\x6f\xdc\x12\x49\xd7\x50\xd5\xb4\x35\xdb\x66\x2e\x81\x2d\xee\xaa\x6f\x7c\xfa\xb7\xda\xfd\xe3\xe8\xfc\x62\xf7\xf2\x2b\x4d\xb0\x6d\x7e\xe8\xcb\xd7\xd7\x23\xc0\x00\x48\xb9\x3c\xd1\x60\x60\x95\xea\xc9\xdd\xd1\xfa\x87\x6f\x5c\x9d\xfe\xf3\xfb\x17\x97\x3f\x9a\xf7\x8a\x13\x8d\xb0\x22\x8b\x70\x6b\x23\x6f\x72\xbe\x95\x02\x00\x7d\xeb\xd6\xad\x26\x6b\x04\xb5\xb4\x4b\x16\x15\x4e\x0b\xc2\xf7\x18\x3f\x4e\x73\x5e\x2b\x4a\x9b\xc5\x27\x26\x93\xf4\xce\x5d\xcc\x12\x73\x1e\xf9\x9a\x5c\xcc\x52\x25\xc9\x11\xa3\xa3\xf1\xb5\x59\x75\xce\x65\x71\x71\x01\x91\xbc\x73\xc7\xbf\xc5\xe8\xb9\x55\x83\xff\xa5\x34\x9c\x77\x8c\x86\x02\x2c\x8a\x80\x25\xc4\xcb\xbf\x71\x04\xc8\xc3\xb4\x39\x09\x8d\xb6\x85\x6f\xca\x97\x9a\x7b\xed\xb5\xd7\x8c\xb5\xba\xb8\xf8\x78\x78\x7f\x35\xbc\x7d\xa7\x15\xc3\x9d\xc3\xe1\xac\x31\x00\xe5\x8e\x91\x62\xd1\xd3\xab\xd3\xad\x62\x3c\xe9\x17\x13\x34\xa0\xfb\xb9\xda\x4a\x35\x66\x58\xee\xe7\xb4\x23\x31\x86\x50\xdc\xa3\x00\x5a\x62\xdb\x31\xab\xf1\x58\x3d\x03\x98\x91\x85\xeb\xe3\x9a\x0b\xe0\xb8\xed\x11\xf9\x14\x92\xa7\x09\x3a\x59\x72\x55\x81\xeb\xdc\xc3\x7e\x58\x8e\x9b\x03\x28\x1f\xa6\x3a\x7c\xae\x96\x0f\x36\x5d\x08\x95\x39\x9d\xcb\x28\xa5\x55\x8c\x87\xc9\x87\x8c\x90\x0f\x9b\x98\xe8\xa5\x9c\xd2\x47\x26\x0b\xb7\x7e\x71\xd0\x12\x28\x42\xa2\x95\x03\x40\x11\x44\x1e\x82\x46\x9a\xc6\x4a\xb1\x62\x95\x47\x8c\x07\x05\x27\xc1\xa2\x6d\x08\xc1\x87\x03\x2d\xd4\x5a\x11\xaa\xd6\x2a\x6d\x54\x06\x09\xb4\x54\x33\x3d\x55\x3c\xa1\x43\xe1\x1b\x03\x3e\xc0\xf2\xce\xd6\x03\x9f\xbf\x0e\x68\x08\xa8\xb6\x0a\x8f\xf5\x7a\x07\x35\xf2\xca\xcf\x46\x14\xc6\x19\xba\x78\x5d\xa7\xb2\xd7\xeb\x80\xcf\x57\x9b\xe1\x15\x60\x02\x66\x41\x74\x65\x62\x65\x67\x60\xab\x50\x26\x3f\xeb\xe7\x87\xb7\xf6\x17\xdf\xfb\xee\xa3\x67\xff\xcf\x87\x17\x96\xef\x2d\x7a\xfa\xc4\x20\xcc\x00\x61\x0e\x00\x4b\x3b\xf0\x5a\x01\xc0\xda\x18\x53\x38\xeb\xb1\xef\xb7\x6c\x5f\xf6\xda\x6b\xaf\xd1\x6a\xaf\xc9\x5f\x00\x59\x6f\x48\xcf\xf5\xea\x10\xba\x2e\x3a\x47\x7a\xee\x1a\xbf\xd4\x8f\xf3\xf0\x9c\x37\xa5\x8f\xf9\x6f\x42\xdb\xe5\x39\x96\x36\x60\xb4\x4d\xf1\xc7\xf2\x84\x62\x01\xe7\xdf\x96\x2e\xef\xcf\x81\x4b\x4c\x81\xf2\x42\xe4\xf4\xfc\x5b\xac\x62\xc4\xc0\x04\x8f\x4b\x7a\xa7\x60\x88\xf3\xe4\x15\xcc\xf9\xd3\x0c\xe1\xe6\xb5\xa6\x77\xca\x8b\xa7\x21\x06\x80\x40\x78\x96\xc2\x49\xc0\x4a\xaa\xb0\x3e\xde\x8f\x3e\xfa\x08\x3f\xfe\xf8\x63\xf8\xc4\x27\x3e\x01\xc6\x18\x83\xe8\x37\x17\xd2\xb3\x31\x9c\xbf\x21\xcf\x6e\xcd\x4b\x61\x79\x95\xa3\x07\x0b\x5e\xd6\x89\xc9\xa7\x7d\x3d\x1b\x6f\x15\x67\xb9\x32\xcc\xb9\x50\xd3\x00\x00\x20\x00\x49\x44\x41\x54\xb3\xac\x50\xbd\xac\xc0\xad\x14\x54\x02\xe0\x94\x4b\xa5\x70\xa4\x8e\xd3\xd7\xb2\x88\x72\x34\x60\x6a\x00\x23\x50\x84\x2e\xbc\x1c\x5c\xa4\xf5\x61\x22\x80\xc0\x10\x8f\xc0\xb4\x4d\x3b\x70\xa2\x3b\x4c\xe8\x05\x56\x64\xa2\xb8\xad\x82\x0d\xfc\xda\x94\x4b\x15\x41\x40\xc7\x94\x48\x97\x9d\x4c\x4d\xce\x19\x9d\xc2\xb8\xed\x7b\x1b\x1f\x2f\x0b\x59\xe7\xc1\x42\x70\x65\x46\xdf\xbc\x06\xe0\x91\x10\x45\x47\xcf\xfd\xa0\x6b\x2b\xa4\x75\x55\x86\x2c\x66\x41\x00\xa6\x6c\x89\x15\x82\xd0\x57\x3b\xde\x18\xbd\x9d\x4f\xe2\x8b\x59\x29\x31\xd2\x67\x9f\x87\xc1\x49\x24\xcc\x49\x17\x94\xb6\x2d\xfa\xb5\x13\x28\x04\x84\xd1\xd3\x73\x83\x75\x33\x0e\xd8\xb0\xb4\xb9\x2c\xa5\x72\xd3\x9d\x3b\x74\x3a\x49\x5a\x00\x32\x40\xcd\xbf\x5f\xc6\x41\x4b\xb0\x4e\x08\xaa\xe3\xf8\xc5\xbc\xa4\xe5\x07\x10\x94\x0b\x07\x32\x34\x7b\x01\xca\xb5\x2c\xcb\x54\x4f\x8f\xb6\x57\xef\xbf\x7d\x79\xf1\xfa\x0f\xae\xce\xbe\x77\xb4\x9d\x7f\xb8\x4e\xcc\x29\x00\xcc\x00\x61\x6a\x8c\xf1\xc0\xc5\x18\xb3\x44\x44\xb7\x0d\x3a\x47\xc4\xc2\x18\x7f\x30\x82\x01\x00\xb8\x77\xef\x1e\x9e\x9e\x9e\xf2\xaa\x40\xfb\x79\x57\x2d\xe9\x74\x04\x10\x7f\xea\xf8\xb4\x08\xa5\xe7\x3a\x0a\xa1\xce\x9b\xfb\xd3\x30\x8e\x07\x9d\x82\x92\xe4\x96\x94\x79\x4c\x6e\xaa\x6f\xa4\x69\x26\xe9\x3b\x97\x23\xf6\xcc\xe3\x91\xf2\xa0\x69\x3a\x27\x96\xf6\x98\xfe\xa7\xcf\x34\x5f\x29\x0f\xca\x3b\xa0\x4d\x18\x73\x89\x30\x06\x66\x38\x73\x2a\xbc\x21\x3f\x9a\x70\x9a\x19\xb1\xb0\x9c\x9e\x16\x50\x13\x78\xa2\x3c\x39\x08\x91\xc0\x10\x2d\x04\x4a\xc3\x65\x95\x40\x99\x14\x07\xb7\xdc\x48\xe1\xb8\x3c\x3c\xaf\xa9\x7c\xfe\xfd\xec\xec\xcc\x1c\x1d\x1d\x99\x57\x5f\x7d\xd5\xbc\xf0\xc2\x0b\x81\xbc\x6c\x3b\xa7\x07\x2b\x84\x87\x26\x7f\xdd\xe8\xa5\x00\x00\x6d\xc0\x14\x85\x82\x62\xde\xd3\xf3\xb3\x41\x3e\x99\xf5\xf4\x34\x01\x84\x7e\xae\x06\xa9\xc6\x7e\x29\xa0\x5b\x14\x27\x6d\xed\xa4\x19\x58\x75\xd9\xd4\xdc\x8d\x42\x38\x9f\x11\x54\x09\x10\xff\xda\x56\x54\x96\x31\x81\x62\x21\x20\x23\xe8\x15\xd8\xf4\x87\xd5\x87\xf6\xb9\x54\x1c\x68\x23\xab\x59\x85\x58\xdc\x68\x03\x5a\x9d\x2b\x4e\x1f\xb1\xa0\x5e\x39\xd5\xe4\x67\x61\x29\xa8\xa3\x4a\xcf\x4b\xce\xcc\xf1\x35\x31\x49\xda\x5d\xda\x28\xa5\xaf\x15\x12\x0f\xac\x1e\x58\x08\xc2\xb3\x9e\x0e\xde\xfb\xd6\x2c\x4f\xd4\x82\x43\xbe\xd1\x05\xa1\x7c\x97\x9a\xf1\xdf\x43\x79\x48\xad\xaa\x41\xbc\xa0\x7c\x63\x79\xc4\x3e\x18\x02\x0e\xc0\x82\x09\x6e\x58\xe4\xe0\xa4\x02\x16\xa1\x82\xa6\xe9\xac\x94\x79\x28\x85\x71\xa9\x21\x20\xcd\xaf\xb5\x81\x8a\xb4\x3a\xd2\x3f\x4c\x1b\x10\xd9\x2a\x4b\x06\x3d\xfe\x9f\xfa\xdb\x7f\x51\xde\x05\x48\x81\x07\x92\x32\x28\x31\x5e\x05\x76\x68\x96\xd5\x2c\x35\xae\x2e\x05\x72\x41\x25\x8b\xf5\xcc\x13\x58\x9d\x0d\xf2\xe3\x0f\xf6\x96\xef\xfc\xf0\xca\xfc\xfb\xef\xed\xcf\x7f\x78\xba\x95\x7f\x5c\x24\x30\x01\x84\x09\x94\xa0\x65\x86\x88\x0b\x6b\x6d\x59\x22\xe2\x1a\xca\x23\x1f\x0a\xac\x0e\xd6\x74\x87\x24\x1a\x00\x80\xaf\x7f\xfd\xeb\x9a\x24\xc5\x59\x5c\x80\xf9\x51\x05\x4e\x75\x11\x32\x3f\x69\xd0\xc9\xf5\x16\xed\xe7\xa5\x70\x92\x6e\xa2\x3c\x78\xbc\x54\x6e\xbe\x16\x86\xcb\xcd\xc3\x49\x34\x52\x7c\x5c\x5e\x5f\x7c\x2c\x2f\x0c\xd4\xf3\xc7\xd1\x70\x43\x81\x8b\x53\x4a\x0b\xcd\x2f\x9e\x07\x5c\x97\x6b\x46\xe3\x64\xe3\xba\x53\x2a\x4b\xcf\x37\x21\x81\xa5\x0c\x68\x9a\xef\x92\x22\x88\x39\x0e\x0a\xa8\x80\x3c\x81\x1c\xb1\xf1\x8c\x41\xa8\xcb\x4c\x79\x73\x5e\x48\x7e\xd4\x8f\x57\x6a\x0e\x38\x62\x96\x21\x9e\xc9\xb1\xe9\x2f\x2e\x2b\x8f\x1f\x05\x7e\x08\xf1\xbc\x02\x00\x80\x57\x5f\x7d\xd5\xbc\xfa\xea\xab\x86\x2d\xda\x05\xa8\x37\xba\x82\xbc\xd3\x6f\xce\xbf\xec\x1c\x10\x0a\x8d\x46\x2f\x52\xb3\x9c\xf4\x8b\xd9\x74\x50\x4c\x00\x20\xef\x69\xd5\x4b\x0b\xcc\x94\x81\xc4\x77\x66\xac\xe3\x16\x54\x64\xf9\x84\x82\xc2\x76\x61\x59\x87\x47\x43\xfb\xd6\x84\x61\x0b\x92\x14\xb6\xa7\x8f\xd1\x52\xa5\xc2\xc2\x56\xda\x22\xfc\x4a\xc3\x4b\x05\x47\xcd\xe3\x35\x79\x48\x57\x80\x08\xf6\xae\x98\x58\xfc\xe4\x9d\x2b\x06\xe2\xea\x77\xc6\x84\x3d\x0e\x51\x8b\xb5\xb4\x51\x3a\x69\x0a\x8f\xcb\x1f\xdb\xce\x2a\x4d\x9a\x04\xbc\x7c\x79\x96\x0f\xbc\xbc\xd0\xd0\x93\x60\x4d\xad\x6e\xf0\x5e\xd5\x5b\x3c\x5c\x3e\x86\x52\xd6\xd6\x55\x54\xf2\xd7\x8f\xc3\x77\xf4\xb4\xcc\xe8\x8e\x19\xae\x80\x3d\x48\xa3\xb2\xd2\x32\x8d\x65\x20\x11\x86\x9f\xdd\x42\x65\x14\x83\x3b\x59\x29\xb0\xe1\x79\x53\xe3\xe7\xd6\xf3\xd8\x09\x37\xe3\xc0\x03\x78\x61\x79\x9e\x54\x39\x48\xe2\x24\x02\x96\xeb\x53\x6c\x64\x46\x06\x3e\x94\x11\xb7\xc0\xa2\xfd\x4f\xa3\xd1\x8b\x9e\x9e\x1e\x8d\xd6\x1f\xbe\xb7\x3f\x7f\xeb\xed\xcb\xf3\x37\x6f\x5f\x58\xbd\x37\xcd\xf4\x91\x46\x73\x86\x88\x53\x63\xcc\x19\x00\xcc\x10\x71\x6e\x8c\x99\x23\xe2\x1c\x00\x96\x00\xb0\xb4\xa0\x65\x4d\x36\x1d\x00\x40\x75\xf8\xdc\xce\xce\x8e\x5a\xad\x56\x2e\xc7\x9d\x08\x14\x44\xb8\x1f\x5f\x73\x41\xfb\x46\xe7\xb8\x3e\xe0\x7d\xb0\xa4\xd3\x24\x8b\x86\xa4\x5f\xb8\x8e\xe2\x16\x10\x2e\x2b\xd7\x5f\xdc\x9f\xc6\xc1\x75\x0c\xfd\x46\xd3\xcb\x07\xe1\x52\x9c\xd4\x0f\x18\x2d\x95\x3d\x96\xc7\x1c\xe0\x70\x7f\xc7\x03\x20\xcc\x23\x29\x7f\x68\x99\x05\xdd\x3c\xcb\x17\x94\xd6\xb8\xf0\xc4\x36\xad\xd9\x90\xcc\x42\x4d\xf4\x92\x72\xe7\x89\x8a\x81\x00\x9a\x31\x12\xff\x18\x88\x70\x19\x49\xfd\x9a\xe2\x97\x2a\x39\x7d\xa6\x72\x72\xc4\xce\x2b\xbd\x14\x8e\xca\x63\x04\x7f\x1e\xa7\x98\x97\x02\x78\x09\xe4\xa5\xd3\x45\x50\x07\x2f\x9a\xbc\x17\x80\x58\x80\x9d\x3a\x3a\xeb\x17\xd3\x69\x3f\x9f\xe4\x09\x2c\x13\x8d\x49\xaa\x55\x9a\x18\xec\x21\x60\x30\x08\x74\xb1\x39\xdd\x5f\x03\x18\x26\xf4\xe7\x53\x34\x65\xc7\x4b\xd6\x9e\x90\xf0\x48\x3c\x78\x4b\xe7\x19\x49\x1d\x4a\xcf\x36\x1e\x4e\xdd\x16\xde\xa5\xb1\x1a\x7d\x56\x0a\x21\xe4\x43\xec\x00\x48\x65\x73\xeb\x19\x42\xc6\x5c\x51\xfb\x77\xaa\xfc\xec\xa3\xb4\x25\xdb\xf3\x37\x25\x17\xaf\x70\x89\xf5\xa1\xe2\x6f\x15\x37\xd0\x74\x44\xd2\xce\xe2\xf6\xf2\x1a\xfa\xcd\xa6\x95\x15\x46\xc9\x33\x32\x75\x64\x85\xa6\xeb\x59\x68\xb8\xa8\x92\xf4\x7c\xab\x8a\x14\xec\x0a\x02\xef\xed\xcb\xc6\xa5\xbb\xb2\x40\x10\x7a\x12\x45\x68\x4d\x31\xe0\xac\x5e\xd4\xce\x13\xe4\x67\x55\xbc\x1e\x1c\xf8\x34\xb3\x4c\x95\xf2\xb1\xde\x09\x90\xa9\x39\x5b\x30\x72\x3c\x84\x89\xcb\x3f\x57\x0f\x58\x7a\xdc\x4e\x61\x74\xd3\x63\xf6\x03\xef\xf9\x5d\xfe\xd4\x8e\xf0\x67\x8d\x94\xee\xf6\x0a\x3a\x20\x5f\x6e\xa1\x7c\x06\x00\x72\xa5\xf3\xb3\x41\x71\xef\xf6\x85\xe5\x8f\xdf\x3d\x98\xff\xe0\xbd\xfd\xc5\xdb\x47\xa3\xf5\x87\xeb\xd4\x9c\x02\x82\x03\x2d\x53\x44\x9c\x22\xe2\xcc\x59\x5c\xc0\x82\x16\x28\x07\x53\x6b\x00\xbf\x26\xcf\xed\x9a\xf4\xe7\xb7\x58\xd0\x22\x59\x47\x80\xbc\x4b\x4a\xbb\x69\xea\x9e\xf3\x04\x81\x9e\xc6\x11\xb3\x8a\x28\xf6\x4c\x79\x71\xcb\x89\x14\x8e\xd3\x4a\x96\x1d\x47\xc3\xf5\x08\x8d\x93\xea\x28\xea\x62\xb2\x22\x7b\x76\xef\x5c\xd7\x19\xf6\xa3\x3c\xa5\x69\x1f\x29\x2c\x9f\x99\x80\x88\x1f\x4d\x2f\x2d\x47\x04\x00\x2d\x01\x17\x5e\x70\x52\x61\xd3\xc8\xb8\xe2\x8c\x01\x0b\xc9\xa2\x20\x29\x6a\x89\x9e\x27\xbe\x49\x1e\x1e\xde\xf1\x6e\x8a\x9f\x66\x1c\xa5\xa7\xb4\xbc\x32\x48\xf2\x73\xf0\x03\xec\xbb\x64\xc1\xe2\xf9\xd7\x04\xfc\x02\xe7\xac\x2f\xcf\x3f\xff\x3c\x40\xd9\xd8\xdd\x27\x4d\xd6\xc1\x50\x90\x52\x81\x95\x6a\xea\xa8\xaa\x88\x08\xb9\x41\xd0\xb3\xbe\x9e\x9e\xf5\xf3\xb3\x65\x4f\xcf\x01\x41\x97\x00\x06\xd3\xf2\x80\xb0\x6a\xfd\x81\x1b\xb5\x42\xf5\x27\x4c\x18\xca\xfe\xe0\xc2\x93\xaf\xf4\xf6\x5c\x8a\x58\x02\x45\x4d\xf8\x49\x80\x46\x1c\x75\x63\xa5\x54\x83\x00\x4c\x99\x01\xff\x0e\xd5\x77\xa4\x2f\x4c\xb3\x23\xfd\xd7\xe6\x47\x69\x99\x41\xaf\x5c\x5d\x30\xf7\xca\x15\x9a\x57\xc2\x2c\x8d\x3e\xff\xb8\xe2\x35\x50\x6d\x17\xc7\x4a\x51\x73\xfe\xee\x4c\x19\x3e\x62\xf7\x8d\x80\x28\x26\x9e\xaf\x9e\x9e\x76\xb3\x10\x82\x81\x7a\x3e\x84\x2f\x21\x5f\x1b\xce\xee\xb9\xad\xd2\x15\x6e\xe3\x25\x3a\xd7\x87\x73\x20\xd0\xa9\x7c\x2a\x9b\x03\x10\xac\x94\x7d\xe4\x94\x5f\x59\x8f\x8c\xdf\xfe\x0b\x58\xc9\x55\xd5\x21\x17\x77\x78\x0a\x6e\x05\x6e\xc0\x5a\x7d\xc2\xe9\x30\x68\xc8\x47\x24\x3f\xff\xcd\x10\x70\x00\x55\x9e\xd0\x7a\xee\x7f\x04\x94\xc4\xf2\xdc\xb5\x49\x70\xf9\x21\x59\x5a\x88\x84\x15\x70\x22\xd9\xe5\x64\xe2\xed\x83\xae\x97\xa1\xaa\x09\x5d\xc7\x61\x60\x99\x9a\xc9\xbd\xed\xf5\x9d\x5b\xfb\x8b\x1f\xbd\x73\x30\xff\xc1\x87\x7b\xcb\x5b\x67\x83\xe2\x50\x2b\x38\x33\xc6\x4c\x00\x60\x8a\x88\x53\xfb\x77\x06\x00\x33\x00\x58\x00\xc0\x02\x11\x57\xc6\x98\xb5\x5d\xdb\x42\x17\xe5\x6a\x97\xee\x57\x5f\x7d\xd5\x08\xd6\x16\xa9\x9f\x96\xf4\x10\xef\xeb\x25\x70\x23\xd1\xc7\x78\xd3\xfe\x99\x86\xdb\xe4\x59\xf2\xa3\xfa\xa7\x8d\x87\xb4\x0b\xc7\x85\xe5\x69\x39\x2f\x6f\x29\x9d\x31\x9d\xeb\xbe\x4b\xf1\x4b\x6b\x40\x25\xde\x31\x99\x80\xd3\x3a\xe0\x12\x53\xb4\xee\x1b\x15\x8a\x7f\xe7\xae\xc9\xbf\x2d\x3c\xaf\x1c\x9c\x3e\x66\x62\xe2\x80\x82\x66\x20\x40\x55\x18\x4d\xa0\x83\xce\xe1\x71\xdd\xc2\x41\x09\xb2\x70\x2e\x0c\xdd\xa5\x04\xec\x1b\xe7\xc9\xbf\xf1\xbe\x8d\xc7\x47\xd3\xaa\x00\xc0\x7c\xf1\x8b\x5f\x54\x9f\xfa\xd4\xa7\xf0\x6b\x5f\xfb\x9a\x3f\xef\xc5\xce\x55\xa3\x5b\xa8\xcb\xd2\xe0\x4e\xa0\xf4\x1d\x83\xb5\xcc\x14\xde\x34\x8b\x50\x00\x82\x5e\xf6\xcc\x6a\x3c\xc8\x27\xb3\x4c\x9f\xe5\x89\x59\xa3\x41\x95\x6a\x95\xa6\xda\x5a\x5f\x58\x62\xb8\xc2\xf3\xca\xc0\x03\x92\x7a\xad\x04\xa7\x80\x01\xc8\xb4\x0a\xd6\xd6\xb8\xb8\xef\x41\xed\x66\xdb\x46\x01\x20\x18\x25\x73\x65\x5e\x7e\xa8\x7a\xe3\x9a\xf5\xc8\xc9\x1b\x51\x0c\x5e\x24\x16\x8e\x9a\xdc\x1b\x01\x00\xf7\xa3\xca\xc0\xcb\xcf\x2a\x89\x61\x32\x59\x64\x23\x01\xc2\x00\x47\x04\x5d\x7b\x3d\x1e\xff\xd9\xc9\x6c\x9c\xbf\x21\x53\x82\xe1\x4e\x95\xf2\x19\xeb\xf9\x60\xe4\x13\x93\x3d\x9d\x30\x5d\xe1\xd5\x26\x2b\x63\xa7\x6f\xeb\x18\xb1\xb2\x10\x38\xb9\x39\xe8\xa4\xb2\xf1\x85\xa9\x65\x3a\x9d\x9c\xe8\x95\xb2\x54\x8f\x90\x08\x86\x84\x37\x8d\x2f\x38\xfb\x8d\x54\x6a\x3a\xc5\x54\x73\x41\xc5\x47\x5f\xdf\x9c\xa5\xc3\x87\x20\x8d\x86\xe6\x35\x07\x0e\x41\xbd\xa7\xc2\x42\x95\x36\x2a\x1e\x82\xcf\x75\x5f\x26\xe1\x95\x15\x44\x26\x9f\x0f\x8e\x1f\x06\x03\x81\x2a\x39\x06\x0a\x05\xf9\x34\x2b\x4e\x3e\xba\xb0\xbc\xf5\xce\xc1\xfc\xfb\xef\x5e\x9a\xbf\x75\x77\xb4\xbe\xbd\xea\x99\x13\x03\x66\x82\x88\xfe\x67\x8c\x99\x58\xd0\x32\xb5\x0b\x71\x1d\x68\x59\x81\xbd\x9b\xc8\xae\x69\x71\xfd\x92\x79\xe5\x95\x57\xf4\xf3\xcf\x3f\x8f\xaf\xbd\xf6\x9a\x21\xd6\x16\x80\xb0\xaf\x8d\x59\xc9\x9b\xfc\x11\xe4\xa9\x09\xde\x4c\x0c\x0b\x27\xe9\x19\x69\x6a\x27\xa6\x6b\x90\x85\xe3\x7d\x74\x4c\x47\x52\x1d\x10\x9b\x06\xa3\xdf\x25\x2b\x07\x8d\x93\xf3\xe3\xfe\x9c\x3f\x95\x5b\x4a\x57\x4c\x6e\x4e\x1f\xcb\xc3\x26\x1e\xc0\xfd\x85\x16\x16\x75\xb1\x0a\xc3\x33\x51\x42\x57\xd2\x7b\x2c\x8c\x73\x12\x7f\x4a\x1f\xe3\xdf\x16\x06\x22\xe1\xda\xe4\x6c\x72\x4d\x71\xb6\xc9\xf6\xc0\xee\x73\x9f\xfb\x9c\xfa\xd7\x7f\xfd\x57\xfd\xe2\x8b\x2f\xfa\x5b\x55\xdd\x37\x77\x45\x80\x29\xaf\x8c\x4f\x01\x40\x19\x63\x32\x44\xcc\xec\x5f\x77\x59\xa3\xbb\xa8\x71\x00\xf6\xa2\x46\x28\x8f\x61\x1f\xed\x2c\x93\x8b\x8f\x9c\x66\x37\x1e\x3b\x19\xdc\xbc\x36\xee\x3f\xbe\xb3\x4c\xf6\x7b\x05\x66\x8a\x54\x1f\x71\x4a\xa1\x7c\x89\x20\x80\xf0\x93\x57\xa0\x18\x86\xa7\xfe\x9c\x47\x18\x26\xe8\xf3\x65\x4d\x4e\x80\x92\xf7\x06\x90\x5b\x01\xf9\xc6\xa3\x97\x7c\xb8\x57\x2d\xfa\x58\x3c\x3c\x5a\x92\x8f\x4c\xf4\x30\x1f\x04\x11\xbc\xb7\x03\x22\x48\xf2\x84\xc7\x2f\xe6\x53\x0b\x6f\x2a\x5b\x43\xb9\xd6\xd0\x2a\x11\x21\x80\x23\xa4\xbc\xa5\xad\xed\x15\x25\x39\xb2\x1f\xc2\x2d\xd4\x50\x7b\xaa\xfe\x75\x99\xe1\xe9\x8d\x03\x67\x18\xa4\xa7\x96\x15\xc4\xa3\xcb\x4e\xb2\x58\xfd\x72\x92\xd0\x43\x0e\x91\x65\x4a\x6d\xa1\x37\xcb\xe3\xfa\x42\x70\xbe\x44\x39\x38\x7f\x19\xe8\xe9\xb5\x5e\x08\xf0\xe2\xf9\x08\xfc\x67\x0e\xb4\x84\x7a\x51\x2f\xea\x32\xce\x75\x62\x16\x27\x5b\xf9\xd1\x07\x7b\x8b\xb7\x6f\xed\x2f\xde\xfd\x78\xb4\xbe\xb3\x4c\xf5\xa9\x01\x33\x23\x56\x15\x67\x59\x99\x41\x79\x9c\xff\xca\x4e\x0f\x2d\xa0\x3c\x63\x6a\x65\xff\xd2\xf3\xa6\xdc\x0f\x22\x17\x2b\xf2\x67\x68\xf9\xde\xa5\xdf\x3d\x6f\x7f\xdd\x25\x9e\x07\xd5\x0f\x9b\xea\x52\x49\xa7\x76\xf5\x6f\x92\x97\xba\x2e\x38\xa0\x8b\x3e\x6f\x92\x3b\x9a\xf7\x6e\x57\x51\x0c\x65\x71\x6b\x0b\x47\x5d\x31\xf4\xc9\x91\x19\x47\x92\xd4\x71\x14\x48\xe7\xd6\x28\x2a\xe4\x71\x73\x99\xa5\x30\x54\x4e\x8a\x3a\x63\x32\x73\x79\xba\x38\x6a\x82\x93\xcc\x89\x31\xf3\x58\x8c\x57\xd7\x78\xbd\xbb\x7d\xfb\xb6\x01\x08\xce\x7c\x71\x6b\x5c\xbc\xe5\xc5\xed\x34\xb2\x1d\x95\xb1\x32\x19\xac\xb6\x4b\xd3\xa9\x23\x0d\xf6\x9e\x10\x40\x2c\x96\xa9\x59\x9d\x6e\x15\x93\xd3\x41\x7e\xbc\x4c\xf5\x2c\x31\x88\x59\xa1\x06\x69\x79\xe9\x1f\x02\x60\xb9\x56\xc0\xf7\x74\xd5\xe8\x0d\xa0\xf4\x0e\x16\x44\x5a\x4a\x7e\x7e\x5c\xa5\x44\x48\xf7\x2e\x9c\x0a\xea\x02\x20\x84\xfc\x80\xbc\x87\x67\x89\xa0\x87\xe9\x54\xb7\x06\xfd\x3b\x42\xb0\x5e\xc1\x90\x29\x0d\xb7\xa5\xb6\xda\xad\x8b\x41\x45\x73\x72\x50\x41\x02\x40\x45\x64\xf6\xd1\x0b\x23\xf3\x92\x96\x2a\xde\x4a\xb3\x96\x87\xa9\x61\x20\xaf\x8f\x96\x69\x96\x72\xaa\xaa\xe4\x58\x4d\xd1\xb0\x34\x63\x15\x2e\xb8\x75\x9b\x61\x0e\x7e\xb1\xa6\xb1\xf9\x51\x3b\xac\x8c\x02\x02\x07\x4c\x6a\x5a\xde\xad\x91\xb1\x96\x1d\x5b\x6f\xa8\x45\xc3\x6d\xa5\x75\x8b\x78\xe9\x82\x5e\xaa\x94\xab\x5b\x99\x5d\x5d\xa3\xab\x6c\x8c\x8d\xdf\xf1\x20\x16\x1e\x6f\xb9\xa0\xd3\x1f\x55\x59\x53\x60\x13\xd4\x33\x63\x4b\xc5\xa7\xd1\xa7\xd2\xca\x5d\x4d\x25\x55\x32\x57\xb5\xa4\x94\x0c\x59\x85\xaf\x83\xaf\x5a\x1c\x58\xc5\x01\x9e\x07\xf5\xc2\xca\x1f\x80\x5d\xa1\x40\x50\x90\x6b\x0f\x54\x2e\x43\x62\x75\x64\xb4\xcc\x6c\x26\x3b\xc0\xe7\xf8\x16\x08\xf9\xac\x5f\x8c\x3f\xda\x5d\xbe\xfb\x83\xab\xd3\xef\xfc\xe8\xf2\xe2\x07\x77\xb7\xd7\xb7\xf3\xd4\x9c\x1a\x30\x67\x50\x4e\x07\x4d\x00\xc0\xfd\xa6\x50\x02\x97\x39\x94\x53\x43\x73\x28\xcf\x6b\x59\x23\x62\x0d\xb4\xb8\x75\x2d\x2f\xbf\xfc\xb2\x7e\xee\xb9\xe7\xf0\x8d\x37\xde\x40\x53\x6e\x6d\xe4\x7d\x6a\x60\x81\xf6\x99\xed\x13\x1f\xf8\x4b\x7a\x41\x9a\x2a\xe2\x53\x2e\x52\x38\xea\x78\x9c\xce\x71\xde\x9c\x0f\x7d\x97\xac\x47\x94\x0f\xf7\xa7\x7c\x14\xe3\xc3\xe3\x23\xb5\x2d\x90\x57\xd2\xa5\x31\xdd\x4d\xf3\x03\x58\x3c\x3c\x9f\xa4\x38\x90\xfd\x75\xbc\xb9\x3f\xe7\x11\xcd\xfb\x44\x08\x20\x45\xdc\x04\x3e\x62\xa6\xb0\xd8\xbb\x54\x30\x00\x72\x46\x4a\x99\x0c\x84\x5e\x7a\xe7\x85\x08\xcc\x5f\xaa\x64\x4d\x05\x87\x20\x67\x22\xa5\x45\x21\x1c\x8f\x47\x6a\x30\xdc\x8f\x37\x46\x5e\xd0\x52\x21\x06\x74\xaf\xbe\xfa\xaa\xf9\xcc\x67\x3e\x83\x4a\x29\x00\x28\x8f\x77\x71\xdf\xb0\x3a\xdb\xc5\x00\x04\x07\xd7\x15\x6e\x0b\xa2\x05\x3c\x6b\x4b\xe7\xef\x3f\xd2\x0a\xd6\xb3\x4c\x2f\x4e\x86\xf9\xc9\xe9\x56\x7e\xbf\x50\xb0\xec\xe7\x6a\x90\x15\x38\xf0\xb7\x01\x43\xa5\x20\x68\xbf\xea\x95\x22\xc9\x6c\x60\x74\x95\xca\x43\xf2\xb7\x0c\xe8\x8f\x22\x47\x5a\x31\xe8\xed\x29\xf5\x16\xca\x17\xfd\x8a\x74\x35\x05\x02\x7e\x4d\x08\xdd\x02\xec\x77\xf7\xf8\x6d\xa6\xe1\x28\xde\x11\x1a\x96\xee\x20\xad\x35\x70\xc1\x55\x16\x00\x1d\x8d\x7b\x75\x84\x50\x29\x79\x9f\x72\xaa\xa8\xa1\x52\xfe\x3c\x0f\xf8\xfd\x46\x34\xff\x0c\x79\x47\x59\x59\xfb\x4a\x46\xa7\x52\x68\x7e\xd0\xb8\xa4\x75\x36\x26\x7c\xa8\x52\x60\x15\x68\x19\x79\x58\x3f\x68\xe1\x18\xca\x97\x9c\x7d\xe2\x72\x01\x2b\xb0\x00\x10\xdc\xb9\x54\xc6\x45\x40\x91\xaf\x07\x58\xd5\x9a\x0a\xc4\xd9\xb2\xa0\x80\xca\x8a\x5d\x4d\x9d\x59\xe1\xb0\x4a\x8d\xaf\xb5\x4e\x4e\x1b\x09\x5d\x70\x5b\x02\x18\x5a\x32\xe5\xa3\x3f\x65\xd6\xd2\x54\x9d\x88\x2b\x53\xc7\x27\xa8\xf4\x55\x96\x92\x82\x2c\x17\xd9\x92\xa9\x1c\xcf\xcc\xca\x87\x50\xed\xae\xb2\x99\x6d\x5c\x9e\xda\x30\xb6\x7a\xd7\xcb\xc0\xb1\xb1\x71\xaf\x13\xb3\xb8\xb7\xbd\xbe\xfd\xa3\xcb\xf3\xef\x7d\xff\xda\xf4\x7b\x3f\xd9\x5f\xde\x5a\xf4\xf4\x09\x28\x98\xd8\xb5\x2c\x13\x44\x3c\x83\x72\x3a\xc8\x4d\x0d\x2d\x00\xc0\xed\x20\x5a\x00\xc0\x1a\xca\xa3\xfd\xdd\x61\x73\x35\xd0\xe2\x0e\x9b\x7b\xfd\xf5\xd7\x8d\xa9\x5f\x52\x44\xfb\xdb\xd8\x68\x9d\x7f\xe7\x61\xb8\x4e\xe1\xdd\x03\xef\x52\x24\x0b\x04\xe5\xc7\xf5\x03\xef\xd7\x63\xe0\x02\xa0\x2e\x2b\xe7\x4f\xe5\xa3\x3c\xf9\xa0\xd8\xc9\xc1\xe3\x63\xbd\x4f\x4d\xa7\x48\x79\x23\x01\x26\x9a\x0f\x8a\xf8\x01\xa3\xe5\xfa\x29\x66\x4d\x69\x2a\xbf\x58\x99\x29\xf0\x35\x3b\xee\xa8\x39\x89\x32\xa4\xdf\xa8\xd0\x9b\x98\xd5\xba\xfa\xf1\x78\xba\xf0\xe5\xa6\xaa\x36\xf3\x62\x13\xef\x26\xd7\x25\xcd\x0f\xea\xce\x1d\x07\xb9\x61\x1a\x00\x40\xd9\xce\x4d\x41\x79\xb9\xa6\xb2\xbf\xcc\xbe\xd3\x9b\xa6\xdd\xdf\xa1\x9d\x46\x72\x53\x48\x43\x00\x18\xa2\x81\xe1\x70\x95\x5c\x78\xe4\x34\xbb\xfe\xcc\xd1\xf0\xb9\xc7\x4e\xfb\x4f\x0f\x56\x6a\xd7\x75\xd1\xb5\xa9\x1e\xa8\xb7\x9c\x26\xd7\x44\x2b\x7d\xeb\xca\xbb\x0b\xdd\xc3\xe6\xbf\x49\xba\xbb\xba\xc6\xfc\xf1\x4a\xb6\x3d\x6e\x59\x5e\x3e\x15\xd1\x2d\x6c\x34\x2e\x0a\xec\xec\x63\x60\xc5\x89\xed\xc3\x16\xf8\xf2\xa3\xe4\x03\x9e\xcc\xcf\x3d\x84\xc0\x83\xf3\x76\xe0\x21\x9e\xe6\x98\x26\x33\x81\x95\x26\x2e\x8f\x3b\x54\x2f\xb4\xbf\x08\x53\xa9\x1c\x98\xc4\xf2\x43\x48\x8b\xf1\xff\x56\xf2\x80\x21\x00\x07\x9a\xf9\x72\x00\x2e\x7d\xcf\x95\xc9\xc7\x83\xfc\xe8\x83\x0b\x8b\x77\xdf\x39\x98\xff\xf0\xe3\x9d\xd5\x9d\x65\xaf\x3c\x48\xce\x94\xb7\x39\xcf\x00\x60\xe1\x76\x0a\x91\x1d\x43\x0b\x3b\x3d\xe4\xee\x22\xf2\x16\x16\x7b\xc8\x9c\xeb\xdb\xfc\x5f\x36\x3d\x44\x9d\xa4\xdc\x62\xd3\x0b\x5d\x9e\xff\xa3\x78\x4b\xf1\x6c\xaa\x2f\x25\x9d\xd8\xb6\x34\xa2\x29\xdc\xa6\x71\x3e\x28\x6d\x57\x9a\x4e\xe1\x9a\xee\x2a\x02\x46\xac\x84\x6f\x94\x61\x17\x81\xba\x26\x52\x0b\xcf\x81\x12\x8e\xd0\x48\x72\x36\xf9\x3f\x28\xf0\x78\xd8\x60\x47\xfa\xf6\x30\x80\x91\x02\xf0\xa3\x57\x0d\x65\xc7\xe1\x00\x0c\xbd\x69\xda\x75\x2a\x03\xf7\x4e\x3a\x9c\x21\x94\xd3\x47\x2b\x00\x5c\xcd\xb2\x62\xf1\xde\xfe\x62\x76\x6f\x7b\x7d\xfc\xf1\xbd\xc1\xed\x67\x8f\xb6\x3f\x7d\x71\x9e\x5e\xeb\xe5\x38\x90\x76\x0b\x09\xd7\x2d\x06\x8e\x0f\x6f\x2a\xcf\x30\x1c\x1d\x76\xd4\xe8\x5b\xdc\xa6\x00\xaa\x12\x8e\xa8\x1a\x51\x01\x36\xc4\x29\x28\xee\xe0\xd9\xd4\x06\xd5\x22\x6f\x14\x3d\x4d\xfd\xdc\x90\x36\x45\x45\xf2\x54\xce\x87\x0a\x70\x8a\xf1\xa2\xe0\x1f\x8b\x0b\xc0\x8f\xf2\x43\x6b\x94\x30\xd5\x16\x71\x95\x61\xa1\xbe\xc8\x18\x20\x0e\x7c\xa8\xbf\xbc\x76\x86\x5a\xcd\xe8\x82\xe7\x7a\x7d\x03\x80\xda\x74\x1c\x90\xf4\xd4\xc3\x31\x8b\x61\x18\x71\x98\xf3\x04\x58\xd1\x7a\x14\x44\x47\xf3\x1d\x43\x9a\x2a\x7e\x0c\x17\x1a\xb3\x34\x23\x09\x45\x61\x1a\x9d\xc2\xa5\xce\xf9\x17\x68\xf4\x2c\x2b\xc6\x77\x76\x56\xef\xfd\x78\x7f\xf1\xf6\x87\x7b\x8b\x0f\x26\xfd\xe2\x7e\x81\x40\xd7\xb0\xf8\x75\x2c\x64\xfd\x8a\x3b\xc2\xdf\x81\x96\x9c\xfd\x34\xf9\x01\xf9\x0b\x77\xef\xde\x85\x73\xba\x58\x5f\xb9\x49\x7f\x1b\xa3\x8f\xe9\x9b\x18\xcd\x43\x53\xd2\x91\x38\xf9\x1a\x92\x58\x58\xaa\xa7\x1f\x24\x1f\xda\x00\x57\x17\xde\x9b\xf0\xe3\xe1\x02\xfa\xa6\xbb\x8a\x5c\x60\xd7\x3e\xb8\xf9\x4b\x7a\x8f\x85\x95\x78\x71\xe1\x24\x3a\x6a\x82\xe3\x66\x3d\x24\xdf\x28\xad\x86\xb0\x4d\x53\x53\x1a\x37\xeb\x35\xc9\xdf\x94\x16\xea\x8f\x0d\xdf\x24\xff\x18\x3d\x80\x9c\xee\x36\xd9\x68\x5c\xc1\x5f\xbb\x55\x1a\x11\x91\x9e\xeb\x42\xe3\x77\x79\xa0\xd9\xb3\x86\x70\xab\x74\xe1\x76\x1f\x41\x79\xd6\x42\x0e\x60\xb4\x56\x50\xac\x52\xbd\x3c\xd9\xca\xcf\xee\x0f\xf3\x7b\xb9\x32\xf3\x54\xa3\x4a\x35\x66\xca\x40\x8a\x7c\xee\xa4\x41\x5b\x39\x25\x1e\x8c\x3a\x11\xa0\xdc\x36\xca\xce\x9c\x60\xc1\x6b\x6c\xb9\xa2\xe4\xf1\xd0\xb0\x4e\x21\x7a\xa5\x22\x05\x2a\x3f\x04\xa0\x80\xc9\x2a\xf4\xfd\x25\xad\x07\x25\xe1\xa8\x9e\x66\x8b\x08\xc0\x24\x90\xe0\x64\xf4\x91\x11\xd0\xc2\xf2\xb4\x09\x48\x38\x89\xa4\xed\xc3\xee\x6b\x2d\x3d\x4d\x23\x72\x96\x77\x2e\x7f\x4c\x70\x46\x4a\x28\x5b\xb5\xc5\xb7\x94\xa4\x16\x07\xc1\x23\x58\x11\x02\x00\xb9\xf8\xcf\x80\x08\x66\x80\x59\x66\x8c\xaf\x10\x14\xb0\x91\x7f\x5d\x19\x19\xf2\x62\x85\x08\xa6\x61\x02\xb9\xa8\x75\xc3\xc5\xe7\xc0\x50\x38\xb5\x56\x92\x10\x50\xe1\xb9\x1b\xcb\x2f\x4c\x03\x06\xe1\x2a\x6a\x5a\xde\xc1\xb9\x3e\x8e\x37\xa9\xc7\xc6\x07\xe1\xd6\xa4\x10\xb4\x84\x02\x19\xdf\x90\x0c\x02\xcc\x7b\x7a\x76\xb8\xb3\x7a\xff\x87\x57\xe6\xff\xfe\xd6\xd5\xd9\x0f\x3e\xba\xb0\x7a\x7f\xd6\xd3\xc7\x1a\xcd\x19\x20\x9e\xd9\x33\x59\xdc\x8e\x21\xbf\xcd\xd9\x18\x13\x6c\x75\x86\x6a\x3d\xcb\x1a\xdc\xa9\xdd\xe4\x52\x45\xbb\xd3\x11\x5e\x79\xe5\x15\x7d\xf5\xea\x55\xfc\xc6\x37\xbe\x01\xab\xd5\x8a\xf6\x7f\x2e\x4b\x34\x84\xfd\x3c\x10\x1a\x49\x37\xd1\xb0\xc8\xc2\x41\xc4\x9f\xf6\xa1\x8e\x86\xf7\xad\xbc\x89\xa0\x40\x27\xf9\xf1\x99\x00\x49\x87\x49\x69\xe4\xfd\x3b\x95\x39\xe6\x4f\x75\x08\x95\x57\xd2\x29\xb1\xf4\x50\x7a\x0e\x1e\xb8\x7c\x52\x79\x49\xb2\x28\x16\x0f\xcd\x63\xea\xa4\x72\xf3\xf9\xc6\xbb\xa2\x98\xb9\x0c\x40\x06\x18\xd0\x40\xd3\x64\x46\xea\xfa\xbe\x09\x2a\x8b\xb9\x26\xd9\xa4\xa9\x24\x4e\x1b\x93\x69\x13\x39\x36\x31\x0f\x3e\x2c\x9e\x35\x7f\x32\x75\xc4\xad\x57\xce\xfa\x92\x92\xe7\x8c\xfd\x06\xee\x67\x8c\x19\xda\x5d\x48\x03\x30\xe5\xf4\x51\x56\xe0\xce\x68\x99\xec\x5d\x3d\xcb\xae\x3f\x76\x32\x78\xe2\xda\x59\x76\x63\xb4\x48\xf6\x7b\x1a\x33\xda\x59\xb6\xba\x96\xa9\x83\x80\x14\xaa\x93\x51\x9d\x42\xa9\xfa\xe2\xaa\x07\x37\xb5\xce\xdb\x33\xa8\x10\x2e\x0d\xdb\x14\xa6\xce\x62\x83\xb4\x55\xc4\x34\x2e\xff\xde\xc0\x48\x02\x67\xa5\xe0\x21\x0d\x05\x24\x0c\x07\x78\x72\x71\x37\x8d\xcb\xae\xee\xd9\x1f\xa6\xa7\x09\xf8\xd1\x20\x0d\xfc\x4b\x16\xf5\x1c\x0d\xd2\x4c\x12\x60\x88\x5f\x90\x37\xb5\xc8\x2a\x24\xeb\x75\x33\xd9\x6d\x04\x9b\xa4\xd9\xcb\x44\x41\x50\x3d\x1d\x1c\x08\xfb\x78\x5c\x49\x44\x22\xac\xdd\x6a\x6e\x20\x58\xb0\x8d\x9e\x06\x98\x1f\xeb\xfd\x49\x9a\xc4\x29\x36\xb6\x38\xdc\xd5\x1d\x03\x08\xab\xb4\x58\x9c\x0e\xf2\xc3\x0f\xf6\x96\xef\x7d\xb0\xb7\x7c\xff\xde\x70\x7d\x38\xcb\xf4\xfd\x5c\x99\x19\xa0\xdf\x1d\xe4\xa7\x87\xe8\xcf\x4d\x0b\xd1\x2d\xce\x76\x4a\xc8\x4d\x0f\x69\x67\xf9\xb5\x32\x68\x00\x80\xb7\xde\x7a\x0b\xbe\xf9\xcd\x6f\xc6\x74\x0f\x40\xbd\xaf\xdb\xa4\xff\xeb\xf2\x1c\x0b\xdb\xe4\x77\x9e\x78\xce\xab\xd3\x1e\x36\xef\x4d\xf3\x41\xe2\x1d\xcb\x27\xf8\x69\xc7\xc3\x2d\x2e\x1c\xf9\x39\x3f\x8e\x86\x9c\x3f\x45\x69\x5c\x20\x8e\xe8\x8c\xf0\x2d\x66\xb9\x09\x06\x1d\x2c\xac\x64\xb9\xe1\xfe\x31\x39\x9d\x1c\x34\x3c\x45\xa0\xb1\xb4\xf2\xfc\xe0\x8e\x23\x67\x49\x06\x68\xa1\x91\x78\x36\xd1\xf2\xb4\xc4\xe2\xf4\x8e\x9d\xb6\xcb\xfb\x3a\x03\x61\x19\xfa\xab\x01\xc8\xf1\xdb\x1a\xc0\x9f\x01\x53\xfe\x10\x72\x40\x28\x0a\x84\x7c\xd1\xd3\xcb\xb3\x7e\x31\x39\xd9\xca\x4f\x67\x59\x71\xa6\x15\x14\x89\x3d\xfb\x45\x19\x54\xa1\x52\x81\xc0\x2a\x42\x77\xec\x48\x09\x91\xba\x79\x7a\x7e\x08\x5b\x5b\x5a\x8d\xc6\xd1\x53\xd2\x0f\x9e\xd8\x2d\x7e\x75\x11\x55\x8b\x80\xc3\x4e\x3d\xa2\x4a\xc3\x38\x81\xaf\x99\x60\x30\x8a\x30\x41\xf6\x10\x4c\x01\x08\x8a\x94\x0f\x51\x68\x0b\xf1\x15\xdc\xa5\x99\xc8\x49\xed\x0b\x9e\x07\xd6\x0b\x9f\x46\xc0\xf3\x3a\x0a\xce\x08\x9a\x08\xac\x2a\x15\x66\xac\x85\x0b\xa7\xb2\xea\xf9\x28\xc1\x01\xef\xcf\x12\x40\xcb\xae\x96\x3f\x01\x1a\x41\x2f\x0f\xf8\x30\x64\xc9\x6c\x24\xcd\x21\x3f\xb0\x40\xd7\xed\x18\x8a\xaf\xe7\x42\x2a\x2b\x84\xe7\xcf\x18\x6b\x19\x09\xaf\x1a\xa8\xe2\x0a\xeb\x5d\x99\x86\xd0\x46\x54\x51\xd2\xb7\xca\x97\xed\xd2\xb2\xf9\x25\xd5\x1f\x9a\x02\x03\x06\x72\x65\x56\xa7\x5b\xf9\xdd\xf7\x2f\x2e\x7e\xf8\xd6\x95\xf9\x1b\xef\xed\x2f\xde\xb9\xb7\xbd\xbe\x3d\xcf\xf4\x3d\x8d\x30\x31\xe0\x8f\xec\x9f\x60\x79\x98\x9c\xb7\xb0\x50\x10\xe3\xac\x2c\xd6\xc2\xb2\x06\x77\xbd\x08\x04\xf7\xa8\x69\x80\xf2\xdc\xa9\x97\x5f\x7e\x59\x8f\xc7\x63\x5c\x2c\x16\xbc\x9f\xe4\x7d\x32\xef\xaf\xe8\x5f\x80\x50\x07\xf0\xac\x6d\x7b\xa6\x4e\xf2\xdf\x34\x1e\x49\xdf\x51\x9a\x4d\x75\xda\x26\xe9\xa1\x7e\x31\xde\x31\x1e\x9c\x9e\xea\x64\x49\x67\x70\x87\x50\xb7\x6a\x35\xd1\x53\x7f\xaa\x67\x25\xf9\xbc\xe5\x26\x36\x55\xd4\x55\xb9\xba\x84\xb4\x59\x11\xa4\x4c\xe1\xf1\x70\xa1\x01\x42\xc4\x65\x20\x8e\xf0\x24\x05\xce\x0b\x9d\xf2\xe3\xdf\x0d\xc4\x81\x8f\x24\xa7\x04\xb4\x5c\x3c\x34\x93\x39\x3f\xfe\x4d\x09\x61\xdc\x7b\x4c\x56\xf7\x0e\x2c\x8c\x24\x63\x20\xeb\x33\xcf\x3c\x83\xff\xf0\x0f\xff\xa0\x19\x80\xa1\x61\xdd\x34\x91\x7b\x2f\x00\xc0\x8d\x8a\x1c\x58\xd1\x50\xae\x75\x29\xb0\x3c\xb8\xae\xdc\x8d\x04\x46\x03\x62\x9e\x27\x66\x35\xef\x15\xb3\xf1\xa0\x98\x9e\xf5\x8b\xf1\xa2\xa7\x67\x80\x50\x24\x1a\x93\x44\x63\x8a\x60\x01\x0c\x57\x38\x61\x5f\x5c\xa5\x8e\x29\xc4\xd8\x5d\x41\x2c\x08\x53\xe0\x14\x5c\xa0\xa8\xa8\x1c\x11\x07\x21\x8e\x69\xc8\x2e\x54\x54\x95\x2f\x06\x7f\x6b\xca\xc5\x30\x05\xec\xd2\xe3\xa2\xa1\xf7\xe3\xb4\x38\xa9\x62\xf1\x44\xd5\xec\x01\x44\x60\x2e\x21\x92\x9f\xe4\xe2\x60\x06\x6b\x40\x8b\x5e\x7a\xe9\x2c\x06\xc6\x06\xf2\x5b\xdb\x89\x7c\xbe\x12\xd2\x05\xaf\xc2\xd4\x8a\x97\xc3\x38\x19\xaa\x88\x69\x23\xa2\xeb\x5b\x18\x4e\x0d\x68\x6b\x3c\xd1\xc6\x0b\x00\xd5\x16\x6c\xa6\xec\xa9\x95\x42\x58\xa0\x1b\x9e\xc3\x52\xdf\xf2\xee\x69\x11\x6a\x65\x00\x10\x5a\x5b\x90\x5f\x76\x45\xb6\x86\x43\x90\x57\x00\x40\x76\x4b\xf1\xf8\xa8\x5c\x86\x66\x8a\x1d\x2d\xac\x95\x59\x4d\xfb\xfa\xf4\xce\xee\xea\xfd\x1f\x5e\x99\x7d\xff\xdd\x83\xc5\x5b\x77\x76\x96\x1f\x4c\x33\x7d\x54\x28\x33\x36\xe5\x76\xe6\x29\x94\x3b\x86\xdc\x56\xe7\x29\x94\x3b\x87\xe6\x58\x1e\xdf\xbf\x80\x72\x3d\x0b\xdd\x31\xe4\xa6\x86\x0a\x3b\x5d\xed\xfb\x17\xc4\xf2\x18\xff\xed\xed\x6d\x1c\x8f\xc7\x78\xff\xfe\x7d\x57\x0a\x74\xc4\xcd\xfb\x44\x4a\x23\xf5\x77\x94\x9e\x26\x5f\x33\x7f\x47\x47\x69\x78\x13\x90\xc0\x8b\xc4\x5b\x8a\x87\xcb\x26\xf1\xa6\x55\xb6\x2d\x1e\x4a\xa3\x04\x7f\x3a\x75\xc3\xd3\xc5\xd3\xc2\x69\xb9\xae\x91\xba\x16\xa9\xbb\xe0\xfc\x78\xd9\x35\xa5\x97\x3b\x49\x26\x1a\x8e\xe3\x02\x4c\x58\xc0\x26\xc6\x31\xf0\x41\x85\x96\xfe\xd2\x30\x31\x5a\x80\x7a\xc1\xf0\xcc\x8c\x99\x99\x62\x00\x80\x56\x22\x5e\xf0\xbc\xb0\x68\x3a\x24\x47\x0b\x47\x02\x5e\x14\xc0\xb5\xa1\x51\xc3\x68\xe8\x3b\xe7\xc1\xe3\xa1\xef\x9c\x87\x44\x1f\xc8\x7a\x7c\x7c\xec\xdf\x1f\x7f\xfc\x71\xdc\xde\xde\x96\x78\xb9\xbf\x5a\xf8\xb9\xbb\x43\xbc\x05\xc6\x99\x80\xdd\x5f\x00\x28\x34\x98\x7c\x9d\x9a\xd5\x24\x2b\x26\xe3\xad\x62\x3c\xe9\x17\x67\xeb\xc4\xac\x94\x01\x93\x18\x4c\x95\xc1\x14\xc1\x59\xc0\xeb\x20\x80\x2b\x8b\xea\xd4\xd3\x2a\x93\x44\x17\x28\x8d\x90\x10\xd9\x83\xc4\x83\x77\xf9\x7e\x61\x31\xd3\x60\x1e\x1c\xd5\xa2\x77\xe7\x94\x10\x80\xe5\x14\x22\x54\xa0\xc4\xea\x19\x20\x49\x72\x31\x0a\xb7\x47\xd7\x23\xa2\xf1\x3b\x25\x26\x6d\xaf\x0e\x82\x32\x3e\x6c\x89\x26\xf8\xd1\x37\x5b\xec\x5b\xdb\xa5\x24\x81\x1f\x21\x33\x2d\x37\xa6\xa9\xd1\x7f\x43\x12\x97\x6f\x78\x7c\xed\x8a\x78\xea\x6e\xf9\x50\x6e\xd1\x0d\x55\xb5\x17\xcd\x4d\x8b\x18\xf7\x0e\xb6\x4c\x4c\x00\x9e\x5c\x8e\x05\xdb\xbb\x2d\x82\x46\x00\x3b\x9d\xe4\x1a\x05\x06\xf1\x38\x3e\xfe\xbb\x33\x19\x52\x20\x83\x21\xa8\xab\xaf\x05\x32\x01\x5f\x27\x68\xb5\x4d\x9a\x67\x38\x29\x2f\x9a\x2f\x3e\x91\xf5\xbc\x08\x2e\x8e\x74\x79\x6f\x2b\x74\x9e\x98\xd5\x2c\xd3\x67\x47\xa3\xf5\x47\xe5\x85\x88\xb3\x37\xdf\xbf\xb8\x7c\xe7\xa4\xbc\xc5\x79\x0c\x08\x13\x40\x3c\x73\xeb\x58\xa0\x3a\xb6\x9f\x4e\x17\x2d\xec\x29\xb8\x4b\xdb\x07\xd4\xac\x2c\x50\xf6\x0f\xee\xf8\x05\x70\x56\x16\x00\x80\x5b\xb7\x6e\x19\x6b\x69\x91\xfa\x46\x97\x24\x1d\x24\xa9\xde\xe7\x73\x5d\xc1\xfb\x63\x15\xe1\x41\x69\x81\xd1\x70\x10\x42\x79\xf0\xb0\x3c\x1e\xea\x38\x8d\x7b\xa6\x72\x4b\x03\x7a\xae\x1b\x24\x7e\x9c\xde\xc5\x4f\xd3\xc3\xe3\x91\xf2\x84\x3a\x49\xbf\x53\x3e\x92\x0e\x94\x00\x06\xa5\xa5\x3c\x24\x1c\x41\xf3\x5b\x0a\xc7\xf5\xb8\xdf\x0e\xcd\xe7\x12\x63\x4e\xb1\xf7\xd8\xba\x91\xf3\xac\xe7\x70\xfc\x24\xe0\xc2\x79\x6d\xf2\x1e\xfb\xd6\x65\xae\xae\x8d\x47\x2c\x0d\x0f\xea\xa4\xf8\x38\xef\x36\x99\x3b\xf3\x17\x4e\xdc\x55\xe4\x07\x60\xd7\xbf\x90\xd3\x77\xdd\x16\xea\x01\x00\x64\xfc\xe4\x5d\xf2\x3e\x00\x63\x06\xa9\x56\x3b\x17\xe6\xe9\xfe\xb5\xb3\xec\xc6\xa3\xa7\xfd\x1b\x97\x27\xd9\xf5\x9d\xa5\xda\xeb\x15\x6a\xa0\x0c\xa8\xda\x02\x48\xeb\x7c\x2f\x13\x3b\x46\xdd\x7e\x03\x60\xca\xd6\xfe\xc5\x1a\x1d\xc4\xf9\x00\xf8\xdd\x2f\x2e\x6c\xa5\xa0\x38\x6d\xa8\x70\xca\xb0\xc6\x2b\x4c\x1e\xb7\x8b\xbf\x96\x3e\x41\xf6\xa8\xfc\xf4\x9d\xa3\x09\x00\xd1\x12\xe5\x16\x76\x72\xd0\x56\x93\x87\x45\x18\x0c\xc8\x23\xa0\xc5\xed\xb4\x72\x19\xc5\x17\x8d\x3a\x65\x1e\xcb\xef\x46\x17\x45\x5f\xd2\xe7\xe8\xb9\xb4\xb5\x00\x3c\xcd\x04\x37\x8b\x89\x96\xce\x75\xa9\xf1\x11\xfd\x29\x2c\x0a\x7b\x6b\x5e\x27\xe9\x39\x35\x04\xe5\x31\xf9\x19\xb8\xe2\xc9\x13\xea\xa8\x45\x6a\x1e\x30\x3b\xbe\x1a\x0c\x14\xca\xe4\x8b\x9e\x9e\x8c\x07\xc5\xf1\xe1\x68\x75\xe7\xa3\xdd\xe5\xfb\x1f\xef\xac\x6e\x8f\x07\xc5\x7d\x53\xae\x61\x59\x38\x50\x02\xe4\x4e\x21\xa8\x76\x0a\xf9\x1d\x43\x60\x77\x1a\x5a\x50\xc2\x77\x0c\x01\x5d\x84\xeb\xd2\xdc\x61\xab\x73\x17\xff\x36\xd7\x16\xae\x4d\xe7\x34\xf1\xe9\x22\x53\x97\xb5\x1d\x5d\xe2\xda\x24\xce\x4d\xc2\x6d\xca\xaf\xab\x5e\xdf\x34\x2f\x37\xe1\xed\x69\x9d\xc5\x85\xa2\x99\x98\x19\xce\xd1\x51\x34\x45\xbf\x73\xc4\xc9\x91\x9c\xa3\x75\xe8\x8c\x86\x07\x16\x4e\x42\x99\x3c\xae\x20\x21\x8c\xbf\x64\xad\x89\x21\x7a\x49\x56\xc9\x62\x43\x79\xd0\x34\x50\x6b\x92\x64\xe2\xe4\x79\xca\xfd\x51\xe0\x27\xc9\x47\xf9\xf0\xa9\x22\x9a\xf7\x52\xfc\xdc\x21\x00\xe0\xcd\x9b\x37\xf1\xf3\x9f\xff\x3c\x7e\xed\x6b\x5f\xd3\x6e\xf7\x11\xa1\x77\x16\x16\xc0\xf0\x96\xe9\xc2\x5a\x5b\x9c\x9f\x46\x72\xd7\x91\x9b\x42\x02\xbf\x06\x06\x0b\xad\x60\x3d\xef\xe9\xd9\xc9\x56\x7e\x7a\x36\x28\x4e\x16\x3d\x3d\xd5\x0a\x0a\x34\x08\x89\x01\x85\x06\x13\xf4\x63\xd5\x7a\x06\x37\x29\x3f\x7a\x80\x56\x19\xb6\x5a\x53\xc0\xe9\x24\xab\x04\xcd\x10\x6e\x49\x28\xc3\x71\x95\x42\x4e\x41\x0d\xc2\x86\x23\x5e\xae\x82\xfc\x14\x09\x51\x32\x7c\x5a\x88\xa6\x9b\xab\x33\x0c\x99\x55\xdf\x2c\xb1\x94\x43\xde\xc8\x61\x7f\x54\x79\x06\x79\x4a\x23\xac\xd8\x7b\xbe\xd5\x96\x59\x62\x91\xc1\xca\x5a\x12\x80\x1b\x92\x87\x7c\xf1\x27\x06\x0f\xfc\x03\xf1\xa2\xe9\x11\x12\x86\xb5\x67\x0c\x9e\x28\x6b\x9e\xdf\x34\x60\x50\xad\x2a\xa2\x2a\xcf\xa9\xf5\x05\x22\x7c\xc8\xb7\xd2\xc2\x42\x4f\x7a\xae\x3f\x53\xc0\x44\xe9\x01\xdc\xba\x17\x3a\xfd\x53\x85\xab\x81\x5b\x0a\x10\x81\xa5\xc5\x47\xe0\x64\x2d\xa1\x76\xa1\x20\x9f\xf7\xf4\xe4\xfe\x30\xff\xf8\xc3\xbd\xd5\x7b\xef\x5e\x9a\xbf\xf5\xee\xa5\xf9\x8f\x6e\x5f\x58\xdd\x5a\x64\xe6\x14\xb0\x9c\x0e\x02\x80\x33\x28\x01\xcb\x99\xb5\xb0\xf8\x29\x21\x28\x0f\x92\x73\xeb\x58\x96\x50\x4d\x0f\xe5\x50\x4d\x25\x6b\x00\x7f\x0f\x9a\x06\x00\x78\xf9\xe5\x97\xf5\xc1\xc1\x01\x7e\xed\x6b\x5f\x8b\x4d\xf5\x4b\x7d\x25\x30\x3f\xc9\x52\xcf\xf9\xf0\x3e\x3b\xa6\x87\x62\x96\x07\x29\x7e\x1a\x8e\xeb\x17\x89\x37\x6d\xbe\x9c\x87\x14\x07\x95\x49\xd2\x09\xc0\x9e\x79\x1f\xcf\xf5\x09\xe5\x1d\x0b\xc7\x75\x85\x94\x4f\x34\x3d\x54\x3f\x37\x95\x87\xa4\xab\x38\x36\xe0\xf9\xd0\x25\x9f\x82\x72\x6d\xba\x1d\x9a\xbe\x73\x85\x19\x53\xb2\x4d\x89\xa7\x5d\x14\x07\x05\x52\xe6\x4a\xc2\x77\x01\x18\x12\x50\xa0\x95\x94\x57\x08\x29\x4e\xa9\xb2\x18\xe6\xcf\x0b\x92\x03\xb6\x26\x90\xc4\x69\xa8\xdc\x4d\xe6\xbb\x18\xef\xb6\xf8\xb9\x33\x00\x60\xee\xdf\xbf\x6f\xde\x79\xe7\x1d\x03\x00\xf0\xd4\x53\x4f\xe1\x9f\xff\xf9\x9f\x6b\xb6\x78\xd7\x75\xae\xce\xd4\xeb\x40\x0c\x98\xf2\x16\x57\x67\x0e\x76\x07\x49\xb9\x29\xa3\x02\x4a\x73\x71\xee\x01\x0d\x98\x42\x27\xb0\x9e\x64\xc5\xf4\x68\xb4\x3e\x3e\x1b\xe4\xf7\x17\x3d\x3d\xd5\x08\x39\x02\x2a\x65\x30\x41\x03\x4a\x02\x30\xbc\x82\x80\x7f\x0f\x17\x9f\xd2\xed\xb1\x60\xa0\x66\x85\x08\x74\x3f\x79\x91\xd6\x41\xf0\xdc\xaa\xd6\x24\x84\x5a\x5e\x92\x91\x82\x17\x4e\x87\x56\x7b\x93\xc9\x19\xa0\x87\x93\x81\x10\x06\x40\x48\x0b\x91\xb9\x6d\x27\x90\x8f\xdb\xbd\x38\xe1\x58\x38\x31\x0d\x41\x3c\x6c\xd1\x27\x95\x8f\xb2\x15\x76\xb1\x78\x5a\x1e\x3e\x96\x06\x1b\x98\x03\x38\xe0\x5c\x4d\x78\x9d\x83\x5d\x4d\x03\xe8\xa6\xa1\xb0\x62\x68\x00\xc1\x4d\xe9\xc8\x3b\xaf\x58\x7d\xb2\xbe\xe8\x4a\xc8\xed\x4c\x02\xb7\x9b\xcd\x04\x00\xcd\xb8\x04\x19\x00\xc4\x30\x0f\x90\x54\xb0\x10\x70\x54\x69\x09\x41\x1f\x0d\x57\x4f\xbd\x3f\xd9\x80\xe6\x9b\xb1\xdf\x6d\x32\xdd\x9e\x73\x8d\xa0\x17\x3d\x3d\xbd\x3f\x5c\x1f\x7e\xb8\xb7\x7c\xef\xdd\x83\xc5\x5b\xef\x1c\xcc\xde\xba\xbd\xb7\x7c\x7f\xd6\xd7\x47\xda\x5e\x86\x08\x00\x13\x63\x8c\x5b\xcb\x32\xb1\x0b\x71\x3d\x60\xb1\x16\x98\x15\x22\x2e\x01\x60\x65\xd7\xb0\xac\xe9\x40\xc5\x9e\x72\xeb\xa6\x93\x0d\x40\x09\x5a\x7e\xfd\xd7\x7f\x5d\xfd\xfd\xdf\xff\x7d\x93\xe5\x82\xf6\x3b\x6d\xfd\xb1\xd4\x77\x73\x7d\xc4\x07\xb4\x12\x3f\xae\xcf\x68\x58\x49\x47\xb8\xe9\x8e\x98\xbe\xa2\xfd\x37\x0f\xcf\xf9\xf0\x01\x2c\xb5\x38\x20\xd4\xf5\x80\xf4\xcc\xbb\x1b\x3e\x1d\x23\x85\xa3\x79\x44\x3b\xb3\xa6\xf4\x70\x50\x89\x2c\x3c\x9f\x56\xa3\xfc\x62\x5d\xb8\x34\x40\x07\xf6\x3d\x66\xb1\x42\x0e\x5c\x62\xa0\x81\x2b\x55\xfe\x1e\xb3\x2e\x48\x89\x90\x2c\x32\x75\x9d\x54\x7f\x97\x2c\x09\x34\xe3\x20\xc2\x83\x57\x4a\x4e\xdf\x84\x04\x63\x95\x4f\xaa\xd0\x5d\xd0\x2b\xe7\x2f\x8d\x12\x24\xc7\xf9\xf2\x38\x9a\x1a\x09\x0f\x23\xca\xf9\xc6\x1b\x6f\x18\x00\x80\x4f\x7e\xf2\x93\x98\x65\x59\x19\xa9\x1d\x31\x21\xed\xfd\xcb\x9f\xb6\x20\x86\x8e\xae\xe8\x6e\x23\xba\xf5\x71\x0d\x15\xb0\x29\x00\xa1\xd0\x0a\xf2\xb3\x41\x31\x3d\xda\x5e\x9f\x9c\x0e\xf3\xfb\x8b\x9e\x3e\xd3\x68\xd6\xca\xa0\x4a\x0c\x26\xf6\x0a\x01\x44\x76\x1c\xbc\x57\xbc\x08\xe4\x1c\x10\xb2\x14\x96\x69\xc9\xda\x5d\x48\x40\x94\x13\xab\x41\x34\x85\x2e\xce\xe0\xaa\x01\x1b\x1f\x07\x10\x4e\x26\xa7\x5f\xd0\xd2\x00\x9b\x96\x08\x81\x05\x59\x3f\x03\xf4\x0e\x24\x1b\xbf\x53\x5a\x06\x82\xad\xde\x4e\x36\x1f\xaf\x53\x80\x64\xeb\xb6\x9f\xc6\x32\x50\x1d\x79\x4f\xf2\xcd\xe5\x93\x53\x8e\x65\x39\x57\x7e\xf4\x5c\x1b\x2f\x32\x09\x47\x1b\x1d\xcd\x33\xc7\x8f\x9f\xad\x52\xeb\x1d\xe9\xa2\x5b\x43\x78\x92\xfc\xf1\xb2\x99\xaa\xac\x7c\x7a\x3c\x78\xa8\xf2\xba\x02\x95\x0e\x90\x60\x98\x27\x74\x51\xab\x45\x0e\x72\x19\x86\x60\x0b\x2d\xbf\x12\x03\x54\x75\xb1\x5a\x8b\x54\xa5\x8c\x4e\xfb\x54\xf9\x54\xcf\x7b\xfa\x4a\xf3\x24\xbe\x98\x1c\x00\x59\x60\xc4\x8a\xc2\xd7\x03\x53\x7e\x2c\xd3\x60\x5c\x1e\xe9\x55\xa2\xd7\xa7\x5b\xf9\xe1\x87\x17\x56\x3f\x7e\xe7\x60\xf6\x83\x1f\x5d\x9e\xbf\xf9\xe1\xde\xea\xd6\x34\x2b\x8e\x8d\xaa\xd6\xad\xd8\x73\x58\xce\x2c\x48\x71\xbb\x86\xe6\x50\xdd\x2f\xb4\x80\x12\xac\x04\x0b\x70\x49\x9b\x77\xfd\x82\xb7\xb2\xac\xd7\x6b\xf8\xe3\x3f\xfe\x63\x0a\x5a\x24\xa5\x48\x93\xcc\xc1\x03\xef\xbb\x24\x1d\xc3\xfb\x4f\xde\xef\x4b\xfd\x3b\x8d\x53\xd2\x61\xbc\x2f\xa6\x4a\x96\x16\x1f\x7f\x96\xd2\x16\xeb\xab\x29\x3d\x95\x53\x02\x36\x54\x0e\x49\xb7\x72\x5e\xd4\x71\xbd\xa9\x19\x2d\xd7\x87\x31\x59\xf9\x3b\x1f\x64\xc7\x64\x8d\xc9\xd5\xa4\xef\x28\xbd\x54\x7e\xc1\x1a\x97\x87\xb1\x36\x83\xbb\x18\x28\xd8\x74\x0d\x8c\x0b\x07\x1b\x86\x89\xc9\x13\x8b\x3b\x86\xf2\xa4\xe7\x2e\x7e\xd0\x40\xdb\xf6\xec\x5c\x5b\x5e\x35\xc9\x13\xfb\xce\xe3\x88\xc6\xf3\xe2\x8b\x2f\x2a\x00\x00\x44\xf4\x57\x06\x18\x63\x14\x00\xb8\x5b\xa7\x15\xda\x6b\x04\x4c\x75\xeb\x74\x0a\x00\x03\x44\xa4\xe7\xbf\xc4\xce\x82\xc9\x7a\x39\x6e\xef\xcf\x7a\x07\xd7\xc7\xd9\x8d\xeb\xa7\xfd\x1b\x97\x27\xbd\xeb\xdb\xab\x64\x2f\xd5\x68\x4f\x76\x26\x9d\x34\xb8\xd6\x16\x5e\x73\x57\x2a\x17\xa7\xc8\x43\x25\x6c\xfb\xf4\xda\xb4\x0f\xf5\xa3\x8e\xc8\xb5\x6e\x0f\x00\x00\x20\x00\x49\x44\x41\x54\xf6\x48\xd5\xdf\x4a\x85\xf8\x96\x4a\x14\x92\x5f\x4f\x52\x61\x15\x12\x9e\x2f\x85\x0d\x5b\xb9\x07\x54\x44\x39\x52\x5d\xe7\xe9\x9d\xd2\x27\xe0\x86\xcb\xe9\x1e\xa8\x25\xc7\x09\x28\x4e\xdd\x10\x17\x58\x7f\x78\x5e\x7a\x19\x68\xfe\x86\xf9\xc7\xe5\xe1\x7e\x00\xa4\x4c\x0c\xa3\x23\x84\x2e\x7e\xa7\x90\x79\x7e\x48\x89\x08\xe3\x90\xc3\x88\xef\x06\x82\x75\x4d\xee\x83\x4f\xbb\x10\x07\x2d\x7f\x7f\xae\x1d\x54\xcf\xbe\x57\x25\x79\x15\x8d\xdf\xc5\x67\x19\x7b\x6b\x09\x08\x61\x85\x72\x0f\xbf\x19\xff\x5e\x28\x93\x4f\xfb\xc5\xf1\x47\xbb\xab\x0f\x7e\xb2\xb7\x7c\xf7\xf6\xee\xf2\xce\xd9\x20\x3f\x29\x14\x4c\x21\x3c\x77\xc5\x83\x12\xa8\x16\xdc\xae\xa0\x04\x29\xee\xd9\x9f\x78\x6b\x07\x23\xfe\x19\xec\x20\xa6\xcc\xf7\xea\x72\x44\x00\x80\x5f\xfa\xa5\x5f\x52\xff\xf2\x2f\xff\x22\xf5\x43\x00\xf1\x7e\xb2\xe9\x5b\x97\x35\x23\xb1\x30\xd2\x77\xce\x4b\x0a\x2b\xf5\x9b\x9b\xf6\xe9\x4d\x71\x4a\x3c\xdb\xd2\xdd\x96\x67\x6d\x71\xb6\xe5\x11\x77\x31\xdd\x21\xf1\x93\xd2\x23\xc5\xdf\xb5\xfc\x45\xba\x5a\x5f\x20\x08\xdc\xc6\x88\x46\xba\x69\x06\x74\xf1\xe3\xf1\x74\xe1\xdb\xb5\xc2\x80\x40\xb3\x89\xfb\x69\x01\xbe\xff\xe8\x38\x1a\x9d\x70\x70\x9d\x62\x3f\x80\xea\x00\x3b\xba\x78\x57\x3a\xc4\x6e\xc8\x9e\x3d\xa8\x49\x0b\xdc\xde\x9b\xa7\xfb\x8f\x8c\xb3\x6b\x8f\x9e\xf6\x1f\xbf\x7a\x96\xdd\xd8\x59\xa4\x07\xa9\x41\x5f\x07\x64\x85\x2b\x28\x35\xc1\x75\xa1\x7b\xd8\xfc\xbb\x86\xdd\xc4\x35\xf1\xac\x2d\xa8\xdd\x90\xcf\xff\x7f\x57\x51\x43\xfc\x4c\x16\xbf\x1e\xa5\x41\x9e\xff\xc8\xbb\x8a\x0c\x94\x97\x20\x9e\x0e\xf2\xe3\x8f\x77\x56\xef\x7f\xb8\xb7\x7c\xff\xc3\x0b\xcb\xdb\xd3\x7e\x31\xd6\x60\xe6\x50\x82\x10\x0f\x4e\xc8\x21\x72\x6e\xc1\xad\xfb\xe5\xd6\x6f\x45\x0f\x8f\x03\xb2\xf0\x96\x9f\x7c\x4b\xc0\x0b\xbc\xf2\xca\x2b\xfa\x85\x17\x5e\x50\xff\xf6\x6f\xff\xd6\x06\x34\x1e\xc4\xff\x3c\x00\xe2\xbf\x16\x6f\x29\x9e\x4d\xf5\xe5\x26\xc0\xa3\x4b\xb8\x4d\xe3\x7c\x50\xda\xae\x34\x9d\xc2\x35\xdd\x55\x24\x45\xa2\x23\xcf\xd2\xbb\xc4\xab\x0b\x68\x89\xf1\xe6\x16\x02\x89\x5e\x8a\xa7\x49\x66\xce\xb3\x6b\xe6\x3b\x5e\x9b\x16\xc2\x26\x15\xa1\xab\x3c\xe7\x75\x9b\x34\x20\xe7\x3c\xbd\xed\xac\x28\x78\xa1\x9d\x5b\x0e\x25\x18\x71\x1d\xa0\x03\x2a\xee\x7d\x00\xd5\xae\x84\x0c\x4a\x00\xb3\xc8\x95\x59\xdc\xdb\x5e\x4f\x4f\x07\xf9\xf1\xed\x0b\xab\xdb\x57\x26\xbd\x2b\xd7\x4f\xfb\x37\xae\x9e\x65\x37\xf6\x66\xe9\x95\x9e\xc6\x0c\x85\xed\x33\x6d\x0a\x34\xb6\x60\x97\xd3\x9b\xc0\x2f\xa6\xb2\xe2\xe1\xa5\xb7\x36\x67\xc8\x74\x08\xe7\x12\x53\x52\x8d\xe9\x25\x26\x02\x14\x09\x08\xa9\xc0\x23\x54\xb0\x2c\x68\x03\xc8\x10\xad\x3f\xe0\x2c\x04\x64\x4d\x0f\x9d\x52\x01\x00\x40\x01\x38\x48\xe6\x93\x48\x7a\x63\x56\x1e\x47\x5d\x5a\xb0\xe4\x4c\x0c\x2c\x52\x31\x27\xc8\xe2\x76\xea\x48\xa7\xe7\x22\xff\xeb\xe9\xc2\x3c\xe6\x01\xe4\xbb\x92\xea\x90\x4a\x5a\x93\xa4\xd1\xe8\x45\xaa\x27\xc7\xc3\xf5\xe1\x9d\xdd\xd5\x07\x1f\xed\x2e\x3f\xb8\x3b\x5a\x1f\xcf\xb2\x62\x5c\x60\x68\x61\x01\xb2\x33\x08\xab\x7b\x85\x56\xf4\x67\xa7\x83\xf8\xbd\x42\xc1\x6e\x21\xb2\x53\x88\x4e\x25\xc3\x3f\xfd\xd3\x3f\x01\x00\xc0\x77\xbe\xf3\x1d\x31\x3b\x7f\xca\xee\x41\xfa\xe3\x4d\xc2\x36\xe9\x14\xca\xfb\x3c\x32\xc5\xe2\xd9\x34\xfe\x36\xda\x18\xe8\x68\xe3\xdd\x55\x67\xb7\xd1\x6f\x02\xb8\x6a\xae\x09\xdc\x6f\xaa\x44\xdb\xcc\x77\x4d\xbc\x9a\x12\x71\x5e\xc4\xd8\x55\x9e\x18\xcf\x26\x53\x21\xa5\x3f\x0f\x42\x6d\x92\x71\x13\xeb\x51\xd3\xbb\x14\x16\x40\x8e\xbf\x53\xe5\x22\xdb\xa6\xc1\x4e\x11\xd1\x78\x3d\x88\xb1\xdf\x6a\x5b\xa8\xdd\x54\x12\x58\x20\x63\xdf\xc3\xed\xd3\x00\x19\x18\x18\x28\x03\x83\x54\xe3\xf6\x70\x95\xec\xee\xcf\x7a\x07\x8f\x9e\x66\xd7\xaf\x9d\xf5\x6f\xec\xcd\xd3\x83\xc1\x5a\x8d\xf8\x49\xbc\x75\xa5\xb5\x99\x15\x20\x78\x6e\x50\xf6\x9d\x2c\x28\x06\x82\xb5\x30\x92\x6c\x31\xc6\x62\x3a\x9c\xee\xa6\x72\x53\x7d\xce\x84\x92\xa6\x4a\xea\x67\x88\x6c\x96\x37\xd2\xf7\xa6\x74\xb8\x47\x20\x72\x4a\xd7\x02\x04\x79\x4e\x89\x1b\xa2\xad\xa6\x6a\xc2\x7b\x8b\x1c\x6f\x43\x98\x22\xc9\x30\x47\x4b\x79\xf2\x28\x9b\xe0\xaa\x71\x89\x60\x7c\xba\x5a\x4b\xe2\x69\xb2\x50\x99\x94\x1b\x45\xaf\x92\x75\xca\x00\x40\x81\x26\x9f\x66\xc5\xf8\xde\xf6\xfa\xce\x9d\xdd\xd5\x07\x77\x76\x56\x87\xf7\x87\xeb\xa3\x79\x4f\x4f\x0a\x65\xe6\x06\xcb\x8b\x0f\xe9\x74\x10\x39\x7b\xc5\x81\x17\x77\x3c\x7f\x70\x19\xa2\xa9\x6e\x6e\xd6\x50\x4d\x11\x01\x80\x3f\xaa\x3f\xb0\xb4\xfc\xdd\xdf\xfd\x1d\x9c\x9d\x9d\xc1\x6c\x36\x83\xf5\x7a\x0d\x20\x0f\x36\x37\xb1\x02\x74\x99\x4e\x68\xeb\x1b\x41\x08\xc7\xc3\xf2\x38\x25\x59\xb9\x5f\x4c\x3e\x29\x1d\x12\x7d\x17\xbe\x4d\x69\xe8\x62\xf9\xe1\x74\x4d\xf1\x48\xf9\xd3\x96\x86\x36\xab\x94\x94\x16\x29\x0d\x52\x1c\x94\x56\xcc\x73\xde\xce\x62\x81\x36\x55\xb0\x6d\x4a\x39\x56\xe1\x24\xde\xb1\xc2\x6a\xca\xc4\x4d\x4d\x62\xd4\xaf\x4b\xb8\x36\x9a\x18\xff\x4d\x5c\x57\x40\xd4\x35\x9e\x07\x92\x67\x77\x77\x57\x8d\xc7\x63\x0d\x10\x4e\x1d\x91\x11\xb4\x04\x60\x52\xb7\xfe\x05\xc2\x69\x24\x3a\x75\x44\x81\x8c\x5f\x17\x63\x8c\x19\x20\xe0\x00\x4b\x00\xb3\xb5\xbd\x4a\x76\xf7\xe6\xe9\xc1\x95\x49\x76\xe5\xda\x38\xbb\xbe\x3f\xeb\x5d\x19\xae\xd4\x6e\xaa\x31\xf3\xbb\x3e\x98\x9a\xe1\xa3\x55\xb7\x16\xa0\xab\x92\xe9\x46\x13\xbf\x07\xa9\x8b\x16\x0b\xc8\x22\x8b\x33\x9c\xc2\xac\x6d\xc3\xf5\xe4\xec\x7e\x1b\x1e\xb5\x4b\x33\x59\x23\x43\xf3\xa0\x69\x8c\x2f\xed\xf6\xa9\x2d\x3e\x6e\x49\x72\x08\xc6\xa8\xf5\xa5\xce\x3b\x94\x8b\x5b\x62\xac\xc5\x43\x00\x72\x62\xac\x1c\x3d\x32\x60\x18\x03\xaa\x01\x08\xa2\x29\x30\xf4\x20\xb7\x10\x6c\x04\x31\xb3\x62\x8c\xa6\x07\x42\x5e\x92\xd8\x94\x1f\x18\x00\x8d\x00\x79\xa2\x17\x67\x59\x31\x3e\x1a\xad\xef\xdc\xd9\x59\xde\xbe\x3b\x5a\xdf\x39\xdd\xca\x4f\x16\x3d\x3d\xc9\x95\x99\x5a\xc0\xe2\xd7\xad\x00\x01\x2c\x50\x59\x54\x02\xc0\x42\xad\x2c\x64\x1a\x88\x4e\x09\xd5\x46\xe2\x6e\x2d\xcb\x63\x8f\x3d\xa6\x7e\xf2\x93\x9f\x6c\xa2\x2b\x1e\xa6\x7f\x57\xda\x8d\x06\x69\x82\xdf\x26\xcf\x9b\xf6\xd7\x5d\x78\xc7\x5c\x57\x7e\x5d\xf4\x66\x53\x9c\x9b\xe4\x7d\x17\x59\x1f\x28\x1f\xa4\x66\xbf\x89\x30\x5d\x0a\x2a\x16\x0e\xa0\x5e\xb1\xa8\x5f\x17\x04\xc8\xe5\xe8\x12\x0f\xa7\xef\x5a\xd9\x24\xd9\x36\x49\x7b\x1b\xb8\x6a\xab\x44\xe7\xa9\xc4\x5d\x2a\x61\x13\x8a\x07\x4e\xf3\xe4\x93\x4f\xaa\x1f\xff\xf8\xc7\x9a\x5a\x5f\x00\x42\x0b\x0c\x59\xb0\x4b\x41\x8c\xb7\xc2\x80\x5d\x03\x43\x2c\x30\x03\xfa\x0c\xe1\xa1\x76\x99\x31\x66\xa0\x00\x07\x69\x81\xdb\x5b\xeb\x64\x74\x61\x91\xec\x5f\x9a\xf6\x0e\xae\x9e\x65\xd7\x0f\xa6\xbd\x2b\xa3\x65\xba\x97\x15\x38\x54\x86\xa8\x05\x59\x2b\x8b\x56\x8d\x4d\x47\xca\x92\xa3\xa0\x48\xfa\x48\x4f\xd2\x8d\xdd\x5c\xdd\x5d\xae\xf0\x0b\x3d\xb1\x37\x04\x3c\xa1\xbf\x61\x04\xb1\x34\xb7\x6d\xaf\xee\x4a\xcf\x01\x57\xed\xd0\x3b\x06\x52\x1c\x30\xa8\xd1\x4a\x71\x12\x1e\xce\x83\x5a\x2b\x50\x48\x60\x93\x05\x45\x20\x6f\xa9\x17\xf5\xaf\x22\x28\x72\xdf\x22\xeb\x73\xb8\x45\x2a\xb4\xb8\x94\x79\x62\xd0\x80\x46\xd0\xab\x54\xcf\x4e\x07\xf9\xf1\xdd\xd1\xfa\xf6\xe1\xce\xea\xf0\x78\x6b\x7d\x34\x2e\xcf\x45\x9a\x14\xca\x4c\x35\x78\x2b\x8a\xbb\xec\x70\x61\x8f\xe2\x0f\x2c\x2b\xee\x87\xe5\x05\x88\xee\x2f\x3f\x3c\x8e\xfe\xca\x74\x91\x83\xe4\xe6\xf3\x39\xfc\xf3\x3f\xff\x33\x00\x00\xfc\xf8\xc7\x3f\x6e\x52\x8c\x10\x79\xdf\xa4\xdf\x74\xae\x4b\xbf\xc9\x2d\x15\xd4\xb5\x01\x99\x36\xf9\x9a\xe2\x96\xe2\x8a\x7d\xe7\x7e\x31\x39\x9a\xd2\x21\x59\x31\xda\x68\x62\x72\x4b\xe9\x95\x64\x8e\xf9\xc7\xe2\x8f\xf1\x8a\x39\x29\x5f\x68\x78\xff\xbd\x4b\xf7\x14\x03\x10\x6d\x0a\x98\x3f\xc7\xbe\xc5\x0a\x6c\x13\x85\xdd\x16\xaf\x44\x77\xde\xb8\xba\x5a\x5c\xba\xf2\xeb\xc2\xa3\x4b\x7c\x9b\xc8\xb5\x49\xdc\x51\x7e\xcf\x3f\xff\xbc\x7a\xe1\x85\x17\x6a\x61\xec\x29\xb5\x35\xf0\x62\x7f\xd4\xfa\xe2\xc0\x8b\x03\x33\xdc\x02\x93\x39\xf0\x62\xbf\x0d\xd0\x40\x96\x68\xdc\x1e\xe4\x6a\xb4\xbb\x48\xf6\xf6\xa7\xbd\x83\x2b\x93\xec\xda\xc1\xb4\x77\x65\x67\x99\xec\x0d\xd6\x6a\x98\x68\xcc\x9c\x2a\xaa\xa6\x21\xa0\xd3\xf4\x0f\x37\xdf\xb7\xb9\x2e\x53\x2e\x00\x44\x11\xd7\x64\x89\x80\x90\xa6\x38\xa9\xc5\xc1\xb9\x26\x21\x38\x48\x20\xa7\x08\x4b\xf2\xd3\x1d\x3f\xa1\x65\x83\xe4\x0e\xb3\xde\x88\xd1\xd2\x34\x0b\x20\x82\x6f\x19\x77\x91\x1a\x9b\x9e\xa0\x1c\x88\x7f\x09\x4c\xc2\x69\x13\xc1\x70\x13\x7e\x31\x16\x1c\xa1\xab\x15\x91\x92\x36\x55\xba\x29\x78\x8a\xda\xf3\x08\x10\x35\x0c\x04\x49\x31\x84\x53\x5a\x94\x3f\x3d\xcf\xa7\x7c\xd3\x68\x74\xae\x4c\x3e\xef\xe9\xc9\xe9\x56\x7e\x74\x38\x5a\x1d\x1e\x96\xd6\x95\xa3\xb3\x7e\x3e\x5e\x25\x7a\x5a\x28\x98\x19\x28\x41\x0a\x84\xa7\xda\x4a\xa7\xdc\xd2\x05\xb7\xee\xaf\x86\x70\xb7\x50\xf4\x06\x67\x80\xca\xca\xc2\xdc\x79\x06\xbb\xd2\x33\x08\x7c\x36\xa5\xdf\x44\xa6\x07\xb1\x9c\x48\x71\x6c\x62\x95\xe9\xe2\x62\xfc\xbb\xca\xd5\x45\x0f\x72\x7a\x88\x84\xd9\x24\x2f\xba\x60\x80\xa6\xfc\x6e\x1d\x4c\x63\x83\x40\x5d\xad\x18\x5d\x2a\x5c\x17\x9e\x31\xd4\xd7\x96\xa1\x6d\x32\x34\xc9\x16\xfb\xdb\x55\xae\xa6\x34\xc5\xbe\x75\xb1\x8a\x6c\xda\xe8\xba\xb8\x07\x01\x51\x9d\x40\xd1\x4b\x2f\xbd\xc4\xa7\x8e\x5c\xb8\x56\x00\x03\xf5\x9d\x48\x03\xfe\x4c\xa7\x92\xa0\x5c\x07\x93\xf5\x73\xb5\xbd\xb3\x4c\xf6\x2e\xce\x7b\x07\x17\xa7\xbd\x83\x83\x69\x7a\x65\x6f\x9e\xee\x6f\xaf\xd2\xdd\x5e\x01\x59\x79\x2f\x52\xf3\xc2\xdc\x4a\xa1\x57\x8a\xda\x60\x3b\x80\x88\xb9\x1a\x9e\x08\xf5\x67\xe5\x2f\x09\x21\xc8\x07\x4c\x36\xca\xab\x0e\x3a\x04\x4b\x45\x5c\xb3\xfb\x30\x00\x50\x6d\x53\x6e\x01\x78\x3e\x0d\x35\xab\x49\xc4\xda\x40\x9e\x6b\x62\x78\x90\x53\xfe\xad\x01\x21\xf2\x9d\xaf\xe9\xf1\xe0\xa7\x14\x5e\x16\x1a\xe4\x3c\xa1\xc0\x89\xef\xc4\x82\x20\x0f\x1c\x94\x80\x60\xfb\x33\xdd\x96\x0c\x2c\x0c\x4d\xaf\x7b\xc1\x48\x41\x1a\x4b\x54\x1e\x68\x57\x02\x98\x42\x99\x7c\x95\x98\xc5\xb4\x5f\x8c\xef\x0f\xd7\x47\x77\xb7\xd7\x87\xf7\xb6\xd7\x87\xf7\xb7\xf2\xe3\x69\x56\x9c\xe4\x89\x99\x1b\x80\x05\x20\xd0\x6d\xcb\x1e\xa8\xd0\xa9\x20\xb7\xb5\xd9\xfe\x72\xf2\x57\x0b\xc0\x05\x80\x59\x59\xe8\x16\xe7\xaf\x7c\xe5\x2b\xea\xaf\xfe\xea\xaf\xda\xfa\xbd\xb6\xd1\x7c\x97\xbe\xb3\x0b\xa0\xd8\x84\xf7\x79\xe3\x3c\x2f\xef\xf3\x0c\xd8\x37\xc9\x87\x2e\x72\x43\x44\x96\x36\xde\x9b\xe4\xdb\xc3\xe6\xdd\x94\x16\x20\xdf\xa2\x3d\xf3\xc3\xb0\x14\x34\xf1\x6b\x43\x84\xa2\xb0\x42\xb8\x18\x88\xe2\x61\x9b\xe8\xba\xa0\xf9\x56\x04\x28\xc8\x26\x7d\x8b\xf9\xb5\x21\x4d\x2e\x2f\x4f\xa7\x24\x2b\xf5\x93\xd2\xd0\x46\x2b\x55\xa4\x28\xcf\x2f\x7c\xe1\x0b\xea\x5b\xdf\xfa\x96\x06\x10\xb7\x4f\x03\x80\x3c\x85\x04\x91\x7b\x90\xe8\x42\x5e\x6a\x79\x09\xc0\x4b\xb9\x90\x37\x43\x80\x41\xa2\x71\x6b\x6b\xad\x46\x7b\xf3\x74\x6f\x7f\xd6\xbb\x72\x79\xd2\xbb\x76\x71\x96\xee\x8f\x96\xe9\xee\x20\x57\xc3\x54\x63\x56\x1e\x6c\x27\xc0\x11\x6e\x51\x68\x00\x13\x2c\x80\xe8\x82\x29\x03\x11\x08\x54\x9a\x8f\x2a\x6f\x51\x49\x43\x38\x4a\xa7\x23\xfc\xd8\x74\x05\x32\x0f\x43\x78\x47\xa7\xb3\x62\x69\xa1\x71\x77\xa1\xef\xc8\xde\x10\x42\x9e\xd5\x1b\x8a\xd8\x2a\x47\x93\xc1\xad\x6d\xfb\x78\x0c\xf4\x54\x65\x5b\xed\x19\x6a\x95\x39\x92\x30\x0d\x06\x34\x42\x9e\x27\x26\x5f\xa4\xc5\xe4\x6c\x50\x8c\x8f\xb7\xf2\xa3\xa3\xd1\xea\xf0\xde\xf6\xfa\xf0\x64\x90\x1f\x2f\x7a\x7a\xa6\x55\x79\x18\x1c\x59\x9b\x42\xa7\x84\x1c\x48\xa9\xdd\x23\x04\x16\xb0\xf0\x6d\xcd\x0e\xb8\x38\xab\x8a\x3d\x97\xc5\x2f\xbc\x75\xcf\x77\xee\xdc\x81\xbf\xfd\xdb\xbf\x6d\x1a\x41\x03\xb4\xf7\x8d\x40\xe8\x9a\xfa\xb9\x4d\x15\x1b\x08\x34\x31\x79\x9a\x14\x7b\xcc\xaf\xad\x0f\xe5\xf1\xc7\xdc\x26\x7d\x76\x57\xbd\x28\xf1\xe4\xbc\x63\xb2\x6c\xf2\xbd\x4d\x2f\x6d\x92\x1f\x5d\x41\xa9\x73\x22\x0f\xda\x8c\xba\xa0\xbb\x36\xa1\xda\xe8\xce\x1b\xee\x61\xd3\x3f\x0c\x7e\x9b\xd0\x3c\x2c\x7e\x6d\x71\x00\x9c\x2f\xbf\x1f\xba\x13\xac\x2f\x54\x26\xff\x73\x87\xd9\x01\x80\x03\x2e\x14\xc8\x38\x8b\x4b\x0a\xf2\x3a\x98\xe0\x1d\x2c\x90\x49\x35\x6e\x5d\x58\x24\x7b\x97\xa6\xbd\x2b\x07\x93\xec\xca\xfe\x2c\x3d\xb8\xb0\x48\xf7\x86\xab\x64\xd4\x2b\x70\x50\xde\x50\x5d\x5e\xee\x58\x47\x09\x10\x80\x98\xc6\x03\xd0\xa0\xdd\xbf\x11\x03\x45\xa6\x59\xfc\x54\x05\x9b\x36\xda\x54\xa1\xd7\x64\xa7\xd3\x31\x14\xc4\xb0\xdd\x2a\x76\x46\xa5\x74\x41\xd6\x34\x5b\xa1\x5a\x0c\x3b\x35\x1f\x77\x2c\xbd\xbc\xb4\x9a\x46\x1f\xa0\x35\x96\xc6\x52\xf6\x9a\x41\x63\x43\xf9\x82\xf8\x1c\xd8\x03\x6f\x6b\x89\x03\x50\x52\xba\x41\x76\x5a\x66\x15\x05\x3f\xdd\x18\x40\x23\xe8\x42\x99\x7c\x99\xea\xd9\x34\xd3\x93\xd3\xc1\xfa\xe4\x78\x98\x1f\xde\xdb\x5e\x1f\x1e\x0f\xd7\xc7\x67\xfd\xe2\x64\x9d\x9a\x39\x58\x30\x42\xc1\x89\xf4\xcc\x2c\x2c\x6e\xcd\xca\xca\xae\x5f\xf1\x07\xc7\x01\x84\xd3\x41\x50\xf5\x11\xda\xe5\xa9\x00\x58\x00\xba\x03\x87\x26\xa5\xd6\xc5\x2a\x11\xa3\xdb\xa4\xaf\xdb\x44\x56\x89\x46\x72\x9b\xf4\xa7\x12\x10\x8a\xf1\xdb\x04\x98\x75\x91\xef\x41\xd3\xde\x96\xf7\x5d\x00\x09\x08\x74\x6d\xa0\xa5\x2d\x5d\xde\x61\xec\xc3\x39\x05\x88\x85\x6d\xb2\x38\x70\x3a\x20\xef\x4d\xb2\x74\xc9\xc0\x58\x5c\x12\xff\x58\x3c\x5d\xf8\x3f\xe8\xb7\x36\xb7\x09\xdf\xf3\x34\xe0\x87\x21\x63\x2d\xfc\xef\xfe\xee\xef\xaa\xd1\x68\xc4\xbf\xd3\xe7\x00\xc0\x90\x1d\x48\xee\xaf\x03\x2d\xd2\x61\x76\xd1\xdd\x49\x50\xdd\x5c\xdd\xdf\x5a\xa9\xd1\xc5\x59\x6f\xff\xf2\xa4\x77\xe5\x60\xda\x3b\xb8\x38\x4f\x0f\xb6\x57\xc9\xee\x20\x57\xc3\x5e\xa1\x32\x65\x40\xa1\x00\x62\x44\x25\x27\x0c\xdd\x63\x3b\x63\xba\x3a\x77\x62\xae\x9f\xfe\x89\xac\xab\x08\xd8\xf2\xa9\x1e\xa8\x14\x66\x93\x75\x24\x36\x8d\xd4\xb8\x75\x3b\x62\xae\xa8\xa7\xbb\xf4\x68\xb2\x5a\x70\x25\x1e\x9d\xc2\x01\x61\x1a\x8a\x2d\xf2\xe5\x87\xbf\x49\x67\xaa\x54\x77\x0a\x49\xfc\xc2\xa9\xa7\x6a\x9d\x4a\x05\x3a\x6a\x8e\x24\xae\x96\x16\x0a\x4c\x8c\x85\x31\xec\xfc\x19\x00\x03\x06\x41\x17\x68\xf4\x3a\x31\xab\x79\x4f\x4f\xc6\x83\xfc\xe4\x78\xb8\x3e\xbc\x37\xcc\x0f\x8f\x46\xab\xa3\xd3\x41\x7e\xb2\x4a\xcb\x85\xb6\x0c\x8c\x50\x4b\x8a\x7f\x26\xdf\x73\x08\xa7\x84\xf8\xb9\x4a\xf4\xf0\x38\x6f\x61\xe1\x5b\x9c\x23\x6b\x58\x24\x77\x5e\xc5\xb3\x49\xbf\xfd\xa0\xf1\x40\x0b\x7d\x9b\xdb\x54\xd6\xf3\xf2\x79\x10\x85\x0e\x1b\xc8\x72\x1e\x4b\x4b\x93\xee\x8f\xf9\x9f\x17\x10\x76\x06\x50\x6d\x5d\x6c\x9b\x00\x9b\x28\xf9\x07\xa9\xb0\x5d\xfd\x1e\xa4\xa2\x35\x65\x3c\x40\x1c\x64\xc5\x10\x69\x53\xb8\xb6\xef\xdc\x75\x89\x5b\xa2\xed\x22\x6b\x1b\x9f\x4d\xf9\x05\xf9\xfc\x3b\xbf\xf3\x3b\xea\xab\x5f\xfd\xaa\xdf\x85\x44\xad\x30\x86\x5c\x21\xe0\xa6\x90\x24\x00\x43\xac\x2f\xfe\xd9\x54\xd7\x0b\x78\x00\x43\xac\x2f\x0e\xb8\xf8\x77\xa5\x61\x6b\xb4\x4c\x46\x97\xa6\xbd\x83\xcb\xd3\xec\x60\x7f\x96\x5e\xd9\x5d\xa4\x7b\xdb\xff\x5f\x7b\x57\xef\x23\x39\x52\xf6\x1f\x97\xdd\x3d\x3d\xbd\x33\x73\xab\xbb\x3d\x08\x10\x39\x04\x04\xc4\x04\x04\x48\x24\x5c\x88\x8e\x08\x11\x2d\x7f\xd4\x2d\xc9\x85\x20\x42\x2e\xe4\xfe\x02\x22\x40\x02\x21\x02\x24\xc4\xe9\xd5\xed\xb2\x2c\xb3\x33\x3d\x3d\xdd\xee\xf2\x1b\x74\xdb\x5d\x7e\xfc\x7c\x96\xdd\xb3\x03\xdc\x23\xcd\xb4\x5d\xf5\x7c\xd5\xf7\xcf\x55\xe5\xf2\xa6\xbc\x3a\xdb\x16\x17\xb3\x18\xaa\xc3\x47\x1e\x0f\x34\x3c\xa2\x1f\xd2\xfb\x74\x10\x13\x8e\xd3\xa7\x9e\xe4\xd3\xe1\x7d\xa0\xbb\xbf\x05\x82\x1c\x2c\x29\x3b\xc2\xa4\x44\xe2\x47\xfa\x91\x84\xc3\x60\xdf\x40\x07\x2a\x40\x02\x4d\xc9\xc0\x0f\xc0\xfb\x81\x81\x07\xe5\x47\xcf\x67\x50\x36\xf0\x62\xbf\x98\xb7\x8d\x8e\x40\x44\x41\x8e\xdd\x6c\x0a\x3f\x9b\x95\xa6\x91\xdc\x5b\xd3\xc3\x24\x07\xc8\x42\x82\x9a\x36\x1e\x62\x0c\x00\x75\x68\x36\xf7\xd5\x6e\x75\x33\x8f\xd7\x6f\xce\xeb\x57\xaf\x2e\xb6\x5f\xfe\xdf\xe5\xfd\x17\xaf\x97\xf5\x9b\x4d\x15\x57\x4d\x01\xf7\xc9\x6b\xc9\x1d\x40\x61\x66\x5a\x7a\x1b\x6d\xe1\x78\xf6\xca\x06\x6d\xb4\xed\xce\x63\x39\xec\x65\xea\x4e\xbc\x6d\xc3\x8a\xa2\x80\x18\x23\xfc\xe2\x17\xbf\x88\x6d\x7b\x3d\xc4\x4b\x0f\xae\x6d\x38\xee\xaf\xb4\x07\x55\x4c\xd6\x87\x27\xe9\xe9\x5f\xf3\x87\xf3\x1d\xeb\xc2\xfc\x5c\xff\x28\x0d\xb2\x9c\x2d\xef\x78\xc0\x85\x61\x9f\xa5\xfc\xa6\xd2\xc9\x5d\x8f\x19\xdb\x3c\x63\x92\x96\x16\x4c\x64\xda\x0a\xc6\x29\x0b\x2a\xb3\x56\xb8\x1c\xd2\x74\x5b\x6d\x49\x08\x9c\xab\xa8\xdc\x7d\x4e\xfa\xbc\x08\xf7\x14\x34\x06\x09\x4f\x4e\xc9\xfe\x17\x00\x00\x7c\x90\x1d\xf5\x97\x7e\x0f\xa9\x9b\x81\x41\x4b\x49\xdd\xdf\x21\x3c\x05\x2d\x78\xa9\xa9\x2a\x23\x9c\x3f\xd9\x94\x17\x1f\xdc\xce\xde\x7f\x76\x33\x7b\xf6\xc1\x6a\xfe\xb5\xa7\x77\xd5\xb3\x27\xf7\xe5\xd5\xa2\x2e\x96\x65\x2c\xaa\x74\xe8\x2b\xb8\x11\x9b\xa2\xc1\x08\x48\xcc\x44\xa0\xa7\xff\x9e\x18\x31\x03\x52\x60\xb5\x68\xb6\x83\x8b\xeb\xbf\x7d\xd4\x5f\x37\x62\x56\xa9\x48\xb0\x26\xed\xf3\xe8\xee\x89\xa5\x14\xd2\xf7\x34\x9d\xd0\x07\x1b\x47\x70\xd5\x3f\x95\x36\x95\x01\x80\x0e\x3c\xb4\x4a\x39\x80\x55\xf4\x45\x18\xd0\x95\x7e\xb8\x11\xcd\x7e\x25\x7c\x94\x2e\x8c\x93\x9a\xee\xfe\x90\x92\x02\x60\x1b\x9a\xcd\x7e\x29\x68\xf7\xe6\xdf\xe7\xf5\xeb\x7f\x2e\xb7\xaf\xbe\xbc\xdc\x7e\xf9\xf2\xc9\xe6\xf5\x6a\xbe\xbb\x01\x80\xf6\x28\xfe\x1a\x81\x12\xf6\xcc\x15\xe8\x6f\xb2\xe5\x66\x58\xda\x3d\x2b\x31\x39\x2c\xae\x03\x2c\x00\xd0\x1d\xcf\x0f\x00\xf0\x93\x9f\xfc\x24\xfc\xf2\x97\xbf\x94\x06\x2d\x8a\xb4\x3e\x54\x1b\xa0\x3c\xd7\xd6\x7e\xcc\xfb\x30\xdd\xf2\x6a\x3a\x2d\xe3\x86\x45\x9f\x25\x3d\x29\x59\xcb\xc1\xda\xaf\x7b\xca\x2c\x47\xbf\xc4\xaf\x61\x07\xab\x9d\xaf\xbe\x55\x44\xf0\x78\xe8\xa1\x81\xc7\xbb\x22\x2b\xa8\x75\x11\x02\x31\x21\xf9\xc5\x7f\x6d\x38\x7e\x13\x89\x7a\xa5\xba\x03\x2a\x20\x2f\x2f\x55\x00\x30\x2f\x1a\x38\x5b\x6c\xc3\xf2\xc3\xdb\xf9\xfb\x1f\xde\xcc\xbe\xf6\xc1\xed\xec\xd9\x7b\x77\xe5\xb3\xcb\xfb\xea\xe9\x62\xbb\xdf\xd4\xcb\xbd\x95\x84\x49\x03\x03\x53\x91\xa4\x53\xdb\x6c\xaa\xe9\xf9\xea\x5b\x45\x82\x7d\xe4\x0b\x5e\xae\x6a\x79\x36\x65\xdc\xdc\xcd\x76\xd7\x6f\x17\xbb\x37\x6f\xce\xb7\xaf\xff\xb9\xac\xbf\x7c\x79\xb1\x7d\xf5\xaf\xf3\xed\x9b\xbb\xf9\x7e\x66\x05\x86\x6f\xfa\xac\x93\xfb\x74\xdf\x4a\x4d\xcc\xb0\xf4\x00\x4b\x02\x4a\xd8\x73\x58\xd0\x52\x5b\x7c\xf1\xe2\x45\x7c\xfe\xfc\x79\x68\x81\x0b\xd8\x9e\x78\xa7\x00\x1a\x9c\x6e\x6f\xf8\x58\x20\xf4\x90\xba\x29\x3b\x63\x01\x00\x08\x7a\x2c\x72\x5e\x9b\x63\x79\xad\x3c\x26\xb9\xa9\xfb\x54\xd2\x88\x21\x7e\x0a\x94\x47\xf1\x71\x05\xe5\x29\x78\x1c\x26\xe9\xb4\x22\x4b\xcd\x77\x4b\x65\xd3\x1a\x80\x25\x5d\xd6\xb2\xd2\x9e\x28\x24\x62\xf3\x2d\x05\x2e\xc9\xcc\x8b\xf8\x39\x81\xe4\x2f\x7d\x13\xa9\x6a\xf6\x5f\xa4\xee\x96\x94\xe0\x38\x03\x33\x47\x33\x33\xe9\x99\x31\x15\x34\x87\x65\x26\x80\x2a\x34\x70\xb6\xd8\x96\x17\xef\xdd\x55\x4f\x9f\xdd\x56\xef\x7f\xb0\x9a\x3d\x7b\x6f\x35\x7b\xff\x72\x53\x3e\x3d\xdf\x86\x8b\x79\x1d\x16\x25\xfa\xd4\xc0\x80\xba\x27\xfe\xe1\x8c\x81\x67\x70\xd7\x88\xdc\xab\x61\x24\xd5\x1f\xc2\x2f\x32\xc8\xac\x88\x50\x9d\x80\x90\x01\xc0\x10\xf4\xa5\xe9\x06\x00\x00\xe2\xb5\xf5\xfe\xac\xd3\xf1\xbb\x42\xfd\xc3\xf8\x8c\xc0\x8b\xf1\xbb\xbd\x86\x02\x20\x16\x4d\xbc\xaf\x9a\xd5\x6a\xbf\x67\xe5\xf5\xeb\x27\xdb\x57\xaf\x97\xdb\x57\xff\x5c\xd6\x6f\xae\x17\xf5\xf5\xa6\x8a\xab\x58\xc0\x7d\x03\xb0\x01\x68\x36\x80\xf6\xa4\x34\xc3\x13\x6c\xdb\x0d\xb5\xbd\x3d\x2b\xe9\x41\x71\xc9\x75\x4c\xde\x08\x4a\x4f\xbc\x6d\xfd\x4c\xdb\x68\x77\xfd\xfb\xdf\xff\x1e\x7e\xf7\xbb\xdf\x41\xd3\x34\xb0\xdb\xed\x30\x1f\x40\xde\x43\x2a\xc5\xc7\x5d\x5b\x74\x4b\xfd\x20\xa7\x5b\xf3\x47\x03\x5b\x40\xc8\x48\xba\xb1\x9c\x25\x7f\xc6\xa6\x41\xbb\xf6\xea\x96\x64\x70\xbc\xc5\x2e\xc7\x93\xde\x5b\xc6\x33\x4e\xf7\xa0\xad\xe6\x0e\x82\x1a\x92\xcb\x1d\x30\xd3\xfb\x56\xbf\x04\x68\xbc\x68\xdf\xa2\x53\xf3\xcf\x5a\x29\x72\xc9\x83\x52\x73\x11\xad\x45\x2f\x9c\x48\x37\x0b\x60\x92\x7b\x16\xc0\x34\xf4\x67\x05\xba\x0d\xbd\x09\x70\xa1\x36\xf8\xf6\xc3\x9a\xa6\x2a\xa0\x98\x87\x06\xce\xca\x58\x2c\x16\x75\x58\x5e\xac\xab\x8b\xab\x75\x79\xf5\x74\x5d\x3d\x7d\xef\xae\x7a\x7a\x79\x5f\x3e\x7d\xb2\x29\xaf\x96\x9b\xf2\x62\xff\x8a\x35\x03\x64\x88\x3d\x27\xd6\x19\x19\x3c\x63\x90\x86\xa5\x4b\x16\xed\xbd\x57\xf7\x20\xcc\x30\x4b\x63\x19\xd8\xb9\xe5\x2e\xcc\x74\x7c\x63\x87\x5e\x7e\x11\x97\x98\x28\x3e\xc2\x7f\x6e\x29\x8b\xb6\xd7\x1c\xc2\xc8\x69\x99\x23\xa8\x3c\x5c\xc7\x6e\x73\xed\xee\xe6\x76\x1e\xaf\xdf\x2e\xea\xeb\x7f\x2f\xea\xd7\x6f\xce\xeb\x37\xff\x3a\xaf\x5f\xbf\x3d\xab\x6f\xb6\x65\xb3\xde\x85\xe6\x2e\x16\x07\x80\x52\x1c\x67\x57\xd2\x25\x21\xe2\x1a\xcf\xa6\xf4\x80\x0a\x7e\xa5\x19\x60\xf0\x86\x50\xfa\xdb\x5d\xa7\x9b\x6f\x2f\x2f\x2f\xc3\xdb\xb7\x6f\x2d\x0f\x6b\x12\x69\x63\x85\x06\x12\xa6\xba\x1e\xa3\x83\x4b\x8f\x77\x1c\xf1\xf0\x70\x72\xc0\xc8\x7a\xec\xe4\xfa\x34\x45\x7e\x73\xba\xbd\x36\x4d\x69\x28\x04\x23\x16\x67\x24\x59\x0e\x18\x58\xec\xa4\x72\x58\x87\xa5\xd0\x5a\xd2\x40\x0d\x65\xd3\xe2\xdf\x54\x03\xb8\x25\x4f\x25\x60\x34\x45\x7a\xbc\x34\x36\xfd\xac\x3c\xde\xff\x02\xfd\xb2\x64\xc1\x4b\xf2\xd7\xee\x87\x19\x1c\x6c\x87\xce\x89\xe9\x40\x0b\x9a\x91\xe9\xc5\x1f\x4e\xe9\x3d\x2b\x23\xcc\x67\x31\x2c\x16\xdb\xb0\xbc\xb8\x2f\xaf\xae\xee\xcb\x8b\xf7\xee\x66\x4f\xaf\xd6\xe5\xd3\xcb\x75\xf9\x74\xb9\x2d\x2f\x16\x75\x58\x56\xbb\xe3\xb2\x52\x6f\xf9\x01\x8d\xa2\xd4\x5e\x0b\x8a\xba\xa7\x66\x61\x66\x43\x9b\x71\xf1\xce\x2c\x48\xaf\x7f\x8b\xb3\x48\xc9\x5b\x45\x80\x7c\x3a\xee\x60\x29\x7a\x3e\xf4\x6d\x60\x2e\xec\x6d\x7f\x41\x87\xdd\xa4\x8b\xe5\x11\x82\x92\xd3\x47\xe7\xcd\x0e\x1a\xa8\xcb\x66\xb3\xae\xe2\x6a\x35\xdf\x5d\xbf\x3d\xdb\x5d\x5f\x9f\xd7\x6f\xae\xcf\x76\xd7\x6f\x17\xf5\x9b\xb7\x67\xbb\x9b\xbb\xd9\x6e\x55\x87\x66\x5d\x97\xcd\xdd\xae\x3d\x18\x0e\x8e\xcb\x3a\x08\x94\xe0\xbf\xee\xd5\x65\x48\x00\x4b\x81\xbe\xd0\x8c\x36\xda\xe2\xd9\x95\x1e\x40\x01\xd4\xc6\x3e\xff\xfc\x73\xf8\xeb\x5f\xff\x2a\x0d\x42\x1c\x51\x4f\xd0\x69\xb8\x74\x8d\x75\x8c\xbd\xe6\xfc\xf2\x3e\x68\xe6\x00\x17\x8b\x3e\x4e\x07\x28\xba\xbd\x69\x68\xef\x5b\x1a\x53\xae\x39\xd7\x9c\x4f\x9e\x70\x2a\x7f\xcc\x7e\x68\x33\x2e\x5e\xc0\xa1\x65\xa0\x55\x3f\x35\xf0\x5a\x74\x7a\x0a\x4e\xb3\x97\x86\x03\x8a\xa7\xc0\x55\x7a\x6f\x69\x24\x58\xde\x0b\x4c\x72\x2a\x3d\xf5\xeb\xf1\x5b\xd2\xdf\xea\xe1\xe4\x45\xfd\x1f\x7c\xf0\x41\xb8\xbc\xbc\x84\xbf\xfd\xed\x6f\xd4\x77\x90\xa0\x9d\x75\x69\xfa\xdf\x44\x6a\xc3\xbb\xbf\x04\xb8\x04\x18\x1e\x6e\x37\x38\xa5\x37\x5d\x62\x42\x87\xde\xf5\x0e\xc4\x83\x06\xe6\xa1\x81\xaa\x8c\xc5\xf9\x2c\x16\xf3\x79\x1d\x96\x4f\x36\x61\x79\x71\x5f\x5d\x5d\xde\x97\x57\x57\xeb\xf2\xea\xf2\x7e\x7f\x56\xcc\xf9\x36\x2c\xe7\x75\x58\xcc\x62\x31\x2f\x9a\x22\x04\x84\x2e\xa8\x8d\x9d\xc7\x5b\x6a\x00\x1f\x52\x6f\x76\x03\xf6\x37\xd2\x4c\xc3\x50\xd0\x47\x12\xd8\x92\x40\x00\x5e\xb6\xe9\x9d\xb9\x02\x7d\x9f\xd9\xbd\x28\x03\x90\x72\xc8\xa3\x9e\x6e\x38\xe6\x01\xf3\xea\xb4\xea\xeb\xe1\x2e\x16\x10\xb7\x21\x6e\xee\x67\xcd\x7a\x5d\xed\x6e\x6e\xe7\xf1\xe6\xed\x62\x0f\x54\xae\x17\xf5\xf5\xed\xd9\xee\x66\x35\x8b\xab\x4d\x15\xf7\x60\x25\x34\xf7\xb1\x68\x36\xcd\x7e\x66\x24\x5d\xe6\xe9\x00\x49\x31\xfc\x90\x61\xf7\xbd\x20\x80\xde\x79\x2b\xdd\x99\x2b\x87\xe5\x9f\xee\x74\x5b\x80\xe3\x9b\x41\x70\x6c\x3f\xed\xe6\x5b\x7c\x0d\xc9\xfe\x15\x98\xcd\x66\xe1\xf0\xd5\xe6\x96\xb4\x36\x8f\xfb\xbe\x54\x86\x92\x07\xa0\xfb\x01\xea\x9e\xd2\x87\xf9\x28\x19\xa9\xbf\x4c\x89\xf2\x3d\xd7\x2f\x8f\x8c\x85\x6f\x0a\x9f\x28\x1f\xb9\xf2\x6a\x89\x03\x4c\x9c\x2f\xd2\xb8\x45\xf9\x65\xf5\x5b\x0a\xe7\xea\xd7\xa0\xcc\xdb\x36\x2c\xa1\x40\x0d\x28\x00\xc8\x95\x08\xcb\xe0\xf0\x54\x5e\x6a\x08\xd2\x60\xeb\x45\x9f\x5c\x9a\x3c\xe9\xc1\x7c\xde\xc1\xde\x42\x39\x3a\x39\x90\x32\xc6\x7e\xae\x8e\x31\x40\x18\x00\x8e\xb3\x30\xf8\x30\x3b\x0c\x66\x00\x20\xdd\x17\xd3\x02\x97\x90\xdc\x57\xe8\x3a\xdd\xd4\x8b\x3f\x39\xc0\xfe\x36\xfb\xe5\xa4\x0a\x00\xe6\x65\x03\x67\xd5\x2e\xcc\xe7\xbb\x62\xb1\xd8\x86\xe5\x72\x53\x5e\x3c\xd9\x86\x8b\xe5\xa6\x5c\x3e\xb9\x2f\xaf\x2e\x36\xe5\xc5\x72\x53\x2e\xcf\xb7\x61\x79\x56\x87\xe5\x6c\x57\xcc\xdb\xc3\xef\xf0\xc2\x04\xbd\x84\x73\x98\x63\x90\x66\x08\x24\x20\x82\xa7\x17\x18\x5e\x7e\x96\x43\xe6\xb3\x6c\x69\x4d\x97\x63\xba\xb9\xa8\x06\x8e\xfb\x5b\xe0\x78\xd6\x0a\x20\x37\xfb\xdf\xef\x19\x9a\xc0\x5f\xa9\x26\xdf\x6c\x12\xc0\x12\x00\x40\x2c\x9a\xb8\x2b\x9a\x7a\x5b\x36\x9b\xfb\x2a\xae\xd7\x55\x5c\xad\xce\x76\x37\x6f\xe7\xbb\x9b\x9b\xb3\xdd\xf5\xea\x6c\x77\x73\x3b\x8b\x37\x77\xf3\xdd\xcd\xba\x8a\xeb\x4d\x19\xd7\x75\xd9\x6c\x76\x05\xdc\x1f\xbe\x11\xd4\xbd\x86\x0c\xc7\x37\x83\xa8\xb7\x7e\xd2\xd9\x94\x14\xb0\xe0\x73\x56\xd2\x25\xa0\x6e\x0f\xcb\xe1\x3e\x9d\x59\x89\x09\x38\xeb\xae\xd3\x73\x58\xbe\xfd\xed\x6f\x87\x3f\xfd\xe9\x4f\x9e\x27\x62\x2a\xde\xd3\x7f\x5a\xf8\x73\x1f\xba\x34\xdd\x92\x2e\x69\xfc\xc9\x49\xe7\x14\x69\xb0\xe4\xc9\x14\xfd\xee\x14\x79\xcc\x85\x4f\x9d\x3f\x66\x5e\x6a\xc6\x05\x08\xa3\x1a\xa0\x00\x90\x0d\x7a\x2b\xba\x55\x47\x4b\x52\x65\x96\xfc\xb4\xa2\x79\xcf\x00\xec\x29\x78\x2a\xce\x5b\xd1\x2c\xfa\xad\x7a\x39\xde\x29\x40\xd0\x68\x32\x2c\x25\x85\x24\x2c\x00\x0c\x3e\x33\x30\x00\x2f\x49\x18\x3e\xec\x6e\xf0\xc6\x52\x32\x3b\x83\x0f\xc7\x6b\x97\x95\x66\x55\x84\x45\xb5\x0b\xf3\xb3\x3a\x2c\xce\xb7\x61\xf9\x64\x13\x2e\xce\xb7\xe5\xc5\xc5\xa6\xbc\x78\x72\x5f\x5e\x3c\xd9\x03\x99\x8b\xb3\x3a\x2c\x66\xbb\x62\x5e\xc5\xa2\x0a\x4d\x51\x75\x87\xe0\x1d\x48\x9a\x15\x10\x30\x88\xb8\x5f\x05\x2f\xbc\x74\xcb\x3e\x68\xe6\x02\xef\x05\x81\x44\x26\x3d\xfd\x95\x85\x2d\x9d\x0e\xe1\x0d\xa5\x76\x93\x6c\x73\x48\xcf\x60\xc6\x28\x85\x3a\x42\x3a\x06\xcb\x52\xc9\xeb\xd4\xc9\x27\xb9\x9b\xbd\x8d\x78\xf8\x70\xe1\x66\x53\x36\x9b\x4d\x15\xd7\xeb\x59\x5c\xdd\xce\xf7\xb3\x2a\xb7\xf3\xfa\xe6\x76\x1e\x6f\x56\xf3\xdd\x6a\x35\xdb\xdd\xdc\xcf\xe2\x6a\x1b\x60\x53\x87\x66\x13\x43\xb3\x6d\xfa\xcb\x3f\x18\x80\x0c\x80\x4b\xba\xdc\x83\xc1\x4a\x73\x3c\x6e\x1f\x7f\x2f\xa8\xbd\x6e\x41\x4a\x07\x5a\x60\x0f\x62\x0e\xe9\xee\x2f\x0f\xa5\xb3\x2b\x0c\x71\x83\x27\x10\xe1\x9c\x9c\x87\x2c\x36\xbc\x63\x87\xe5\xc1\xda\xe3\x9b\x66\x87\xf3\xd5\x0b\x34\xa6\x00\x2e\x39\x00\x40\x92\xf7\x8e\x53\x92\x4e\xad\x8c\xad\xf9\x63\xae\x97\x69\x7f\x30\x66\x60\xb3\x84\x8b\x8e\x10\x7c\x54\x45\xb1\x0c\xfe\x96\x01\xbc\x25\x4f\xa5\xf4\xda\xcc\xc9\x0b\x29\xfd\xd8\x67\x8e\x1f\xf3\x69\xe9\xe1\xd2\x2e\xf9\x96\xc6\x59\xf4\x4b\x69\xc5\x69\x12\xe5\x7e\xfa\xd3\x9f\x86\xf3\xf3\xf3\x1e\xe3\x61\xc6\x05\xcf\xc8\x90\x9b\x7a\x0f\xbc\xe9\x86\xde\x0e\xc8\x24\xcb\x4c\x73\x18\x82\x19\xea\x24\x5f\xfc\x5a\xf6\x11\xd4\x34\x50\x85\x06\x66\x65\x2c\xaa\x32\x16\xf3\xb3\xdd\x01\xc8\xdc\x87\xe5\x93\x4d\x75\xb1\xdc\x84\xab\xe5\xb6\x9b\x8d\x59\x9c\xd5\x61\x31\xdf\x85\xf9\x1e\xcc\xc0\xbc\xdc\x03\x9a\x80\x0f\xc5\x3b\xfe\xef\x52\x3f\x08\xc1\x64\xdf\x53\x03\x50\x14\x29\x74\x30\xca\xb5\xff\xbb\x99\x14\x79\x2e\x06\x7a\x4b\x3f\x29\x82\x49\x97\x07\xa1\x03\x1d\xf4\x27\x01\x8e\xe1\x69\x18\xc0\x1e\xa0\x34\x00\x71\x17\xf6\x20\xa5\x2e\x9b\xcd\xa6\x8c\x9b\xf5\x2c\xae\xef\x66\x71\x75\x37\xdb\xad\x56\xb3\x78\x73\x37\x8b\xab\xd5\x7c\x77\x73\x3b\xdf\xdd\xdc\xed\x97\x7e\x36\xdb\xd0\xac\x63\x68\xea\x58\x34\xdb\xd8\x5f\xca\xa1\xf6\x9d\xa4\x1b\x6e\x7b\x61\xcc\x8c\x0a\xf5\x15\xe6\xde\x26\xdb\xf6\x3a\xdd\xa7\xd2\xa0\x13\x6e\x01\xa0\xfd\x9e\x10\x7c\xf1\xc5\x17\xf0\xd9\x67\x9f\xc5\xef\x7d\xef\x7b\xe1\xe5\xcb\x97\xf0\x97\xbf\xfc\xa5\xcd\x0e\xae\x9d\x59\x06\x20\x20\x64\x38\x9d\x98\x17\xeb\xf3\xf6\x6d\x9e\xc1\x90\xeb\x4f\xb0\x2e\x30\xc8\x59\xf2\x84\xf2\xcf\x63\x53\x22\x4e\xb7\x25\x4f\xbc\x69\xd7\xfc\xb6\xf4\xf5\x29\x1f\xa0\x70\xac\xc3\x03\x76\x2c\xe1\xbd\x03\xe8\xb0\x51\xeb\x00\x64\x89\xf7\x82\xa2\xd4\x71\xcd\x2f\x4f\x1c\x57\x21\xa6\xb0\xe3\x49\x23\x47\x39\xe0\xd1\x2a\x23\xe5\xab\xc5\x87\xa9\xd2\x67\xf1\xc1\x4c\xf8\x9b\x48\x68\x3f\x44\x0b\x58\x00\xfd\xf6\x80\x4c\xf2\x4a\x75\xb7\x3f\x06\xbf\x6a\x5d\xd0\xdf\x51\x0a\x30\x9c\x89\x61\xff\x8a\x06\xc2\xe1\x8d\xa5\xaa\xda\x15\x8b\xb3\x5d\x98\x2f\xea\xb0\x38\xdf\x84\xe5\x72\x5b\x2e\x17\x9b\x72\x79\x5e\x87\x8b\xf3\x6d\xb1\x5c\x6c\xcb\xc5\xa2\x0e\xcb\xb3\xba\x98\x57\x31\xcc\xab\x3d\x00\xaa\x42\x84\x10\x60\x0f\x68\x00\x00\xfa\xc0\x06\xa0\x07\x6e\xfa\x53\x2c\xbd\x25\xa7\xe3\xb1\xfb\x7b\x25\xbd\xe3\xea\xf1\x72\x0b\xe0\xd9\x10\x1c\x87\x37\xeb\xb4\x1b\x75\x87\x36\xd2\x99\x90\x02\x29\x1a\x9c\x68\xdb\x34\x87\xb0\x74\x07\x0a\x00\xec\x81\x09\x34\xb0\x9f\x41\x89\x61\xff\xcd\x9f\xba\x68\xea\x3a\x34\xf5\xb6\x8c\x9b\x4d\xd5\xac\xd7\x55\x5c\xdf\xcd\xe3\x6a\x35\xdb\xdd\xdc\xcd\x77\xab\x9b\xfd\x6c\xca\x7e\xc9\xa7\x8a\xeb\x3a\x34\x9b\x5d\x68\xea\x58\xc0\xb6\x29\x86\x20\x03\x68\xc0\xd2\x9e\x4c\x4b\x6e\xa4\x3d\xcc\xac\xc4\x66\xb8\x5f\xa5\x4e\x66\x50\x5a\xb0\x92\x1e\x0c\xd7\xfd\x75\xaf\x70\x1f\x00\x4b\xf2\xdb\xbd\x19\xf4\xa3\x1f\xfd\x28\x7c\xf6\xd9\x67\xda\xc3\x49\x6e\x9b\xb5\xf4\x01\x16\x50\xe0\xd1\x6d\xe1\x97\xc6\x1d\x0b\xd0\xf1\x92\x25\x5f\xa7\xba\xc6\x36\x3d\x0f\x91\x92\xac\x25\x1f\x24\xfe\xd6\x4e\x0e\xe8\xb3\x5c\x5b\x00\xce\xe0\x97\x7b\x98\xf2\x64\xd2\x58\xa2\xf4\x8f\x19\x8c\xbd\xa0\xc3\x63\x4b\x42\xb0\xdc\xb5\xc5\x3f\xae\xf0\x2c\xbe\x70\xf6\x35\x19\xae\x32\x72\x3e\x4a\xe1\x56\x3f\x2d\xc0\xd2\xdd\xe9\x7d\xfc\xf1\xc7\xe1\xe9\xd3\xa7\x1c\x3f\xf9\x8b\x36\xf6\x56\x49\x5c\xfa\xa9\x81\x00\x47\x40\xd2\xf2\xe5\xfc\xb5\xfa\x30\xb8\x09\x45\x03\x55\xd1\xc0\xac\xd8\xef\x7d\xa9\x66\xb1\xa8\x66\xbb\x62\xbe\xdc\x96\x8b\x8b\xfb\xf2\x6a\xbf\x47\xa6\x5c\xee\xc1\x4c\x58\xee\x67\x65\xc2\x62\xb6\x2b\xaa\x2a\xee\x97\x9a\xca\x06\x42\x88\x45\x55\x36\x45\x28\x30\xb0\x01\x00\x68\x8e\x75\x71\xd8\xe0\x89\xe5\xa9\x04\x87\x88\x4b\x53\xc9\x64\xc9\x1e\x70\x40\x87\x7a\x68\x90\x83\x77\x98\xf4\x55\x1d\x28\x36\x47\xdb\xb1\x29\xf6\x9b\x65\x63\xd1\xd4\x07\x90\x52\xd7\x01\x62\x1d\x62\xbd\x2d\x9b\xf5\xa6\x8a\x9b\x75\x15\x57\xf7\x55\xb3\xbe\xab\x76\xeb\xf5\x2c\xae\xd6\x87\x59\x95\xdb\x79\x5c\xad\x67\x71\xbd\x0d\xcd\xa6\x0e\xb1\x6e\x0a\xa8\x9b\x02\xb6\x0d\x34\x35\x40\x11\xa1\xe8\xbd\x6e\xdc\x02\x8a\x14\x8c\xb4\xcb\x3f\xed\xcc\xc8\x26\x01\x20\x2c\xd0\x81\x23\x08\xa1\xae\x21\x09\x4b\xff\x00\xfa\x75\x3b\x3d\x8b\x65\xf0\x0d\xa1\xab\xab\xab\x70\x7d\x7d\x9d\x33\x38\xe0\x70\x6f\xbf\x41\xf1\x49\x7d\xcb\x94\x34\x75\xdf\xc9\x85\x7b\x00\x40\x6e\x5f\x99\x03\x22\xb4\x72\xb0\xda\xf6\xd8\xc9\xc9\x13\xaf\x1d\x8d\x06\xbc\xb9\x4b\x45\x9c\x13\xb9\xce\x68\x05\xa1\xc9\x4f\xc9\xab\xc9\x4b\x00\xc6\x03\x8a\xb4\xce\xc4\xaa\x43\x92\xc9\xc9\xa3\x31\x95\xd1\xe2\x9b\x64\x9b\x93\x55\xf3\xb6\x3d\xb2\xfc\xe7\x3f\xff\x79\xf8\xe4\x93\x4f\xe2\xf3\xe7\xcf\xf7\x03\xf7\xf1\x49\x95\x05\x2f\x29\x88\x69\x97\x98\x0e\x20\x03\xa0\xbf\xd1\x37\x05\x1f\x29\xe0\xe1\xde\x5e\xea\x81\x16\x48\x66\x65\xda\xd9\x1d\xf4\xfa\x76\x0f\x48\x15\x0d\xcc\x00\x20\x94\x07\x30\x33\xdb\x15\xd5\xbc\x9d\xa5\xd9\x86\xe5\x62\x1b\x16\x8b\xc3\x32\xd3\x62\x1b\x16\xf3\x3a\x2c\xcf\xda\xe5\xa6\xc3\x46\xe0\x32\x42\xd8\x2f\x39\x15\x21\xc0\xe1\x83\x92\x0d\x40\xd1\x40\x15\xa0\x80\x62\xb0\x1c\xd5\x27\x12\xac\xf4\x41\x39\x74\xe5\x50\x60\xb6\xa1\x68\x53\xec\xc1\x48\x03\x4d\xdc\x03\x93\x3d\x50\x89\x87\xe5\x9d\x18\x9a\xba\x0e\xcd\x7e\x06\x25\x34\x9b\xfd\x0c\x4a\xb3\xd9\x94\xfb\x8d\xb1\xf7\x55\xb3\xb9\x3f\x2c\xf9\xdc\xce\xeb\xd5\x6a\x1e\x57\xf7\x55\x5c\x6f\xca\x3d\x7f\x2c\x9a\x78\x98\x3d\x89\x4d\x01\x3b\x18\xbe\x4e\xdc\x3b\x6d\xb6\x0d\x43\x7b\x4e\xf0\xbe\x94\x08\xc9\xcc\x4a\x0b\x64\xf0\xfe\x14\x48\x66\x58\x00\x81\x92\xc4\x5e\x7a\x60\x5c\xfb\xb1\xc3\xde\x2b\xcc\xc9\x8c\x0b\xbc\x78\xf1\x22\x26\xc7\xf1\x53\xc4\xb5\x15\xee\xc1\xca\xf2\x10\xe5\x69\x8b\x94\x7e\x4b\xdb\x1f\xd3\x77\x79\xd2\xaa\xf1\xb6\xfc\x94\x7e\xca\x1e\x00\x2d\x3f\xc6\x6f\x2e\x5e\x4b\xab\x27\xcd\x40\xe8\xe4\xd2\x2b\xa5\xd9\x63\x07\xeb\xa6\xc6\xfc\x54\x37\xf6\x91\xb5\x8b\x81\x0b\x36\x2a\x85\x63\x47\x28\xd2\x12\x6a\xd1\x95\x03\x3a\x3c\x83\xbf\x47\x8f\x37\xde\x22\x33\x15\x00\x1b\x0b\xce\xc6\xd8\x7e\xcc\xba\x07\x6f\x26\xb5\xaf\x54\x37\xc3\xd3\x7a\x53\x70\x83\x81\x4c\xfa\x21\xc8\x0e\x90\x48\x7b\x65\x9a\xe1\x99\x32\x3d\xe0\x43\x2c\x53\x0d\x74\xb4\xf6\x10\xb0\x2a\xbb\x6b\x28\x42\x68\x20\xb4\xb3\x2f\xf3\x5d\xa8\xce\xb7\x61\x71\xbe\xd9\x03\x9a\xd9\xae\xa8\x66\xbb\x50\xcd\xe2\x1e\xcc\xcc\x77\xa1\xaa\x62\x31\x9f\xc5\x62\x5e\xee\x8a\x6a\x76\xd8\x83\x53\x46\x08\x45\x37\x53\x53\x40\xd1\x7d\x35\x1b\xa0\x68\xf6\xf9\x52\xc0\x01\xf4\xa0\x4e\xa7\xb7\x7c\xb3\x9f\xe2\xe9\xae\x0f\xb3\x26\x71\xff\xf6\x0e\xd4\x31\x34\xf5\x01\x94\x1c\xff\xca\x66\x53\x07\xa8\x37\x65\xdc\xdc\x57\x71\x7d\x5f\xed\xf7\xa3\xac\x67\x71\x7d\x5f\xc6\xcd\xa6\x6c\xea\xfa\x00\x4c\x76\xe1\x08\x4c\x0e\x7f\xbb\xe4\x1a\x03\x06\xfc\xa6\x8e\x34\x33\xd2\x7b\xb3\x87\xd8\xcf\xc2\xe9\xa4\xae\xa9\x6f\x03\x75\x20\x26\xfd\xc5\xaf\x7a\x1b\xbe\xce\x6c\xed\x3b\x73\x40\x83\x87\x72\x1e\x48\xc6\xf2\x9d\xc2\xb6\x24\xeb\xed\x6f\xbd\xe5\x40\xf1\xe4\xa6\xed\xd4\x79\x98\x0b\x34\xa7\x1c\x7b\x3b\x2c\xa2\xed\xbb\x93\x90\x1a\x87\x38\x73\x9c\x91\xc2\x24\x64\xcc\xe9\xb0\x22\x4d\x20\x78\x3c\x74\x6a\xb0\xf0\x50\x36\xac\x3e\x3c\x06\x5f\x46\x91\xf6\x66\x12\x31\x3b\xd3\x03\x30\x49\x58\xfa\x1a\x36\x9e\x81\xe9\xae\x13\xa0\x02\x40\xcc\xc4\x30\xbc\x01\xeb\x41\xba\xa9\x7b\x40\xf7\xe5\x20\x6e\xbf\xc7\x26\x84\xa6\x38\xfc\x41\x28\x23\x84\xea\x30\x93\x53\xc6\x22\x94\x69\x7c\x2c\xaa\xd0\x00\x84\xfd\x6c\x0d\x14\x87\xb8\x16\xe4\x00\x34\x10\xa1\x9d\x31\x69\x62\x2c\x5a\x90\xb2\x9f\x49\x89\xa1\x89\x11\x00\xb6\xfb\x7d\x27\xf5\xf6\x00\x40\x0e\xaf\x20\xc7\x58\x40\x8c\x01\xea\xc3\x2c\x09\x39\xb0\x03\xc0\x8e\xda\x07\x02\x09\x48\x00\x00\xf6\xed\x9c\x84\xaf\xf7\x9a\x71\xb2\x41\x36\x95\xc3\xcb\x40\xe9\x51\xfa\x83\x0d\xb5\xc2\xfe\x94\xde\xab\xcb\x49\x38\x4e\x5b\xd7\x9e\x08\xc0\xe2\x69\x73\xd2\x53\xad\x74\x6d\x19\x30\x1f\x4a\xb7\x37\x5c\xb3\x63\xb9\x7e\x28\xdd\x94\x9d\xb1\xe5\x0a\x82\x1e\x8b\x9c\xd7\xe6\x58\x5e\x2b\x8f\x49\xae\x62\x18\x53\x4a\x33\x27\x32\xe1\x00\xf9\x4e\x6b\x61\xa9\x1d\x2e\xe3\x29\x90\xa3\xf1\x61\xbf\xbd\x85\x80\xf5\x53\xe0\x89\xf2\x81\xd3\xaf\xa1\x7b\xca\x26\x67\x97\xb3\xc9\xf9\x93\xca\xe1\xbc\x4e\x65\xb4\x4a\x9c\x12\x97\x97\x1c\x28\xd5\xf4\x53\x7e\x52\x32\x3d\x7b\x65\x59\x06\x00\x80\xef\x7f\xff\xfb\xf0\xf9\xe7\x9f\x0f\x9e\x70\x53\x4a\xcf\xc3\x48\x74\xe3\xa5\xa4\xee\x1a\x03\x1c\x3c\x2b\x53\x14\x45\x3a\x8b\x42\x82\x8f\x74\x66\x05\xf3\xa2\x59\x97\x54\x77\xc7\x4b\x00\xaa\x14\x6c\xe1\x03\xfa\x20\x16\x10\x62\xd1\x84\xc3\x62\x4e\xe2\xff\x0e\x60\x0f\x76\xf0\x8c\x4a\x9a\xaf\x16\x1a\xb4\xb9\xc3\xb2\xd1\x8e\x88\x4f\xeb\x55\xd7\xbf\x34\xfd\x53\x61\x7b\xe7\x98\xc0\x71\x3f\x4a\x1a\xdf\x3b\x51\x16\x8e\x4b\x37\x78\xd9\xa6\xb7\x9f\x25\x5d\x2e\x6a\xe3\xf1\x92\x4e\x0a\x80\x88\xb8\xd4\x77\x00\x80\x01\x68\x49\x96\x84\xd2\x19\x3f\x7c\x44\x3f\x7c\xfd\xeb\x5f\x0f\xaf\x5e\xbd\xda\x67\x46\x8c\xdd\x21\x72\x30\x6c\x2b\xb8\x8d\x46\x74\x0d\xe8\x3a\x95\x05\x14\xc6\xb5\xc3\x34\x1e\xb7\x35\xa9\xdd\x61\xff\xb0\x6e\xdc\xa7\xe0\x7e\x26\x8d\xa3\xfc\xe2\x7c\xa1\x08\xc7\x63\xbf\x2d\xf9\x89\x09\x8f\x83\x58\x3f\x07\x10\xd2\x7b\xa9\x5c\xa8\x7e\x52\x4a\x03\x45\x9c\x1c\xb6\x8d\xf5\x49\xe5\x27\x8d\x27\x9e\xb1\x8c\x1b\xcb\xb5\xfa\x3a\xc8\x17\x69\xc6\x85\x1a\xc8\xb4\x81\x9a\x43\x80\x9a\x6e\x2e\x1e\x87\x81\xd1\xa6\x35\x11\x12\x24\x27\x00\x00\x13\x4c\x49\x44\x41\x54\x33\x2d\x0d\xf2\x5d\x91\x36\x40\x4b\x32\xde\x38\x2f\x4d\xa1\x6b\x4a\x7f\x5c\xf4\x9d\xef\x7c\x27\xfc\xe1\x0f\x7f\x88\xc4\xec\x0b\x00\x6a\x34\xe9\x72\x12\xf4\x1b\x6b\xfb\x4b\x5e\x27\xb3\x31\x14\xa8\x20\x67\x4f\xd0\x72\x11\x29\xc7\x00\x95\x0a\xdb\x6f\xff\x92\xa5\x2e\x12\x7c\x11\xe9\x4e\xd3\x80\xdf\xd0\x12\x09\xcd\x32\xb4\x61\xbd\x57\x79\x89\xe5\x93\x54\x2e\x05\x24\x80\xc0\x4b\x8d\xc3\xe1\x08\x46\x52\x80\x93\xce\xb8\xe0\xfb\x54\xc7\x40\x0e\xd9\xef\x81\x94\xd6\x67\x62\x09\x88\x4a\x77\x1a\x8e\xf3\xa1\x77\xee\xca\xc5\xc5\x45\xb8\xb9\xb9\xa1\x06\x09\xad\x7d\x78\x78\x39\xfe\x31\x3a\x34\x3a\x85\xee\xc7\x98\x3f\x1c\x8f\xc6\x3f\x95\x3e\x4e\x56\x8b\xf7\xa6\x4d\xd3\x61\xa1\xc9\xea\x0f\x05\x5c\xc6\x38\xd6\xca\x00\xd8\x01\x05\x27\xdf\xea\x48\xe5\x72\x0b\x4f\x42\x70\x9a\x2c\x8e\xcb\x01\x00\x99\x12\x66\xed\x38\x52\x05\xd0\x2a\x93\xb5\x32\x6a\x7e\x49\xba\xad\xb2\x96\xb2\x95\x74\x49\xf5\x01\x5f\x5b\x74\x68\x75\x55\xad\x2f\xdf\xfc\xe6\x37\xc3\xdf\xff\xfe\xf7\x08\x30\xf8\xd8\x63\x7a\x32\x2f\x37\x80\x07\xc4\x17\xa8\x6b\xe8\x83\x0c\x7c\xdf\x03\x19\x70\x04\x3b\x3d\x90\xc2\x5d\x53\x3a\x18\x80\x82\x6d\x03\xf5\x8b\x96\xca\x7a\x27\x16\xa3\x81\xb8\x37\x73\x85\xee\x7b\x83\x38\x35\xb0\x27\x4b\x2a\x11\x00\x52\x30\xd2\xca\xf7\xbe\x78\x8c\x36\xb5\xaa\x33\x32\xdc\xf2\x12\x9e\xcd\xa1\x74\xa5\xe0\x04\xfb\x27\x6c\xa4\xed\x01\x93\x83\xde\x74\xe6\x04\x5e\xbc\x78\x11\x3f\xfc\xf0\xc3\xf0\xf2\xe5\x4b\xa9\x7f\xa2\xda\xa8\x14\x0e\xc9\xbd\x65\x20\x4a\xf9\x29\xbd\xb9\x36\x34\x7f\x39\x1e\xce\x06\xd7\x1f\x50\xfa\x01\x85\x61\x5b\x9a\xcd\x54\xc6\x9a\x56\x4c\x9c\x0d\xae\xac\x73\xca\x99\xb2\x67\xe9\x3f\x2d\xe9\xe2\x7c\xb7\xd6\x8b\xd4\x1e\x24\xfc\x60\x8c\xb3\xd6\x93\x7d\x7b\x84\x21\x71\xce\x49\x06\x29\xe3\x16\xb2\x0c\xca\x92\x6e\xef\xa0\xde\xea\xca\xf1\xc5\x42\x56\x7f\x4e\x69\x63\x4a\xbd\x39\xb6\x4e\xe5\xdf\x14\x36\xcd\xbe\x59\x66\x63\x84\x7b\x0c\x04\xda\x6b\x16\xcc\x08\x60\xa4\xe3\x95\x00\x0b\xa1\x93\x03\x2b\xbd\xfb\x64\x46\x69\xe0\x33\x06\x31\x54\x9a\x89\xbd\x1b\x29\x51\x1f\x00\xec\x00\x41\x32\x13\x93\x9e\x57\x12\x91\x1c\xfe\xfa\x71\x07\x70\x84\x25\x25\x6a\xef\x09\xa5\x83\x3a\x46\x7f\x10\xde\xa6\x05\xa7\x01\xa7\x15\xe5\x87\x74\xa2\xad\x34\x78\x48\xe0\xc3\xca\x2b\x01\xa1\xf4\x5a\xfb\xb5\xf8\xa1\xe9\xc6\xe4\x49\xaf\x85\xdf\x9b\x97\x16\x5f\xc7\xa6\xc1\x92\x3f\x14\x71\xe0\x45\x93\x93\xfc\xf6\xa6\x41\xe2\x69\x69\x6c\x99\x61\x5e\x60\xc2\x59\xdd\x96\xa5\x22\xca\x48\x6b\x88\x32\x2a\x15\xba\x56\x21\x24\xbb\x96\x0c\xa4\x90\x1a\xa5\x1f\x08\xfe\x31\x80\x4b\xb2\xe7\xa5\x53\xe9\xf6\x36\x02\x4a\x66\x0a\x3f\xfe\xe3\xa8\xfd\xe8\x23\x31\xe3\xc0\x82\x9b\xe4\x49\x7b\x00\x0c\xb8\x5f\x62\xc6\x06\x03\x9a\x96\xbf\x05\x32\xf8\x35\xee\x81\x9e\xc4\x1f\xbc\x64\x04\x48\x47\xcf\x7f\x7c\x9d\x02\x30\x22\xcd\x31\xe5\x6b\x29\xd9\xef\x01\x40\x80\x84\x94\xa7\xd5\x43\x01\x97\xc4\x46\xef\x9a\x00\x3f\x03\x00\x42\xc9\x22\x50\x44\xcd\x06\xf5\xf6\x3a\xe1\xd9\x14\x94\x9e\xde\xc1\x70\xcf\x9f\x3f\x0f\x2d\x58\xf9\xd6\xb7\xbe\x15\xfe\xfc\xe7\x3f\x5b\x3b\xea\x36\xce\xd5\x81\x8f\x0c\xe7\xfa\xcb\x29\xc0\x80\xd7\xa7\x5c\x00\x30\x95\xaf\x16\xdd\x90\x69\x93\x4a\xb3\x37\xbd\x14\x71\xe5\x76\x0a\x40\x41\xd5\x15\x0f\x98\xb2\xda\xd4\xc6\x6c\x00\xd0\x97\x8a\x2c\xe1\x52\xbc\x05\x84\x58\x07\x42\xad\x50\x2d\x80\x49\xd3\x07\x82\x4e\x00\xbd\xb0\x38\x7e\xea\x5a\xf3\xc1\xd3\x30\xb1\x6d\x2b\x28\xa4\x40\x20\x27\x47\x91\x25\xbf\x2d\x3e\xe7\xf2\xa5\xbe\x8d\xed\xd0\xb0\x2c\x7c\xe3\x1b\xdf\x80\x7f\xfc\xe3\x1f\x83\x7c\x49\xbf\x5e\x8d\x97\x4c\x00\xe5\x55\x02\x40\x52\xd0\x33\xf8\xc2\xf5\x61\xf0\x0e\x00\x40\x01\x09\x6a\x5f\x4a\xc0\xba\x52\xfe\x24\xae\x07\x52\x5a\xfd\xc4\x12\x57\x0b\x3a\x7a\x69\x3b\xf0\xa7\xbe\x92\xe9\xa6\x96\x8a\xd2\x65\x94\x24\x3d\x83\xaf\x19\xc3\xb1\x0c\xd2\xa5\xa3\xc1\x2b\xc5\x84\x4c\x2f\x2c\x59\xfa\x19\x00\xa3\x04\x20\xa5\xa7\xd0\xa6\x5f\x5b\x4e\xd3\xda\xf9\x9f\xfa\x92\x5c\x77\xe1\xed\xdb\x40\xdf\xfd\xee\x77\xbb\x32\xfb\xe3\x1f\xff\x08\xc9\x97\x98\xa5\x41\x0a\x50\x38\xe6\xc7\xbc\x40\xdc\x03\x8a\xa3\x74\x71\xd7\xda\xa0\x4d\xf9\x23\x91\x57\x07\x75\x6f\x95\x97\xc2\x28\xbf\xb8\xbe\x4e\xea\x9f\x29\x92\xf2\x40\xea\x0f\x29\x1e\x0a\x18\x49\xfa\xb4\x7a\x41\xe9\xe1\xca\x58\x23\x6b\xfe\x6a\xf5\x15\xcb\x59\xeb\x93\x34\x5e\x0e\xce\x9d\xb2\x82\x13\xa9\x80\xb5\xc1\x97\xd2\x65\x89\x93\x0a\x10\xdb\xd5\xee\xa5\x74\x58\x07\x50\xca\xdf\x1c\x92\xec\x59\xec\xe4\xd8\xb6\x94\x63\xca\xdb\x52\x6e\x1a\x4f\x41\x63\xf2\x7c\x72\x62\x96\x96\x00\x92\xfc\xe3\x66\x2d\x9a\xe3\xb7\x96\x30\x60\xe9\xe2\x09\xb9\x1e\x20\x61\x64\x39\x90\xc3\xf1\x75\xe1\x08\xb4\xa4\x3a\xd8\xb7\xb2\x0e\x44\x95\x49\x0a\x64\x22\xc1\x4b\xc6\xa3\xe5\x9d\x41\x98\x16\x2f\xf8\x45\x5e\x27\x69\xee\xbd\x7d\x96\xce\xa8\xf0\xc9\xee\xc8\x52\x2f\x2d\x00\x82\xd2\x37\x55\x9d\xd7\xfa\xd7\x5c\x7d\x9c\x6e\x8d\xd7\xab\x9b\x8b\xcf\xf1\x57\xb2\x33\x55\x7f\x6f\x05\x86\x39\xba\x35\xbf\xb4\x31\xf4\xd4\xba\xbd\x65\x6c\xf2\x43\x03\x2e\x12\x7a\xd4\x1c\xb3\x02\x80\xdc\x81\x9b\x1b\x74\x73\x33\x93\xab\x48\x16\xdd\x12\x5f\x7a\xef\x01\x42\x00\xfe\x4a\xa6\xf9\x04\x42\xbc\xa4\x73\xac\x2f\xa7\x90\xc9\x01\xd1\xe9\xb5\xa5\x43\x32\x95\xd7\x0f\x7e\xf0\x83\xf0\xdb\xdf\xfe\x36\x02\x00\xfc\xf8\xc7\x3f\x0e\xbf\xfe\xf5\xaf\xb9\x37\x96\x3a\x3d\xe8\x69\xbe\x77\x30\x1e\xf2\x1d\x5f\x7b\xee\x03\x07\x96\x90\x0f\x3d\x50\x22\x2c\x83\x51\x7a\x5a\x92\xca\x2a\xfd\x38\x60\x0a\x52\xba\x38\x6a\x83\x2b\x5e\x56\x6a\x75\x11\x33\x36\x83\xaf\x25\x4b\xe0\x85\x9b\x1d\x3a\xf8\x07\x00\xfd\x73\x55\xd2\xf2\x4d\xaf\xc1\xfe\x80\x25\x5d\x43\x12\x06\x02\x8f\xd4\xa7\xa4\x69\xf1\xf4\x5d\x53\x81\x0b\x8a\x2c\x20\xe3\x94\x83\x9d\xb5\x0f\x96\x64\x2d\x3e\xe5\xf6\xcd\xdc\x58\xe6\xb5\xa9\x95\xab\xb5\x9f\xcc\x49\xdb\x58\x5f\xb1\x3f\x66\x3f\xb4\xcd\xb9\x63\x07\x7a\x0f\x4d\xa1\xe3\x94\x7a\xa4\x8a\xef\x45\x8c\x2d\xa5\xfa\xac\x0d\xaa\x95\xa3\x74\x49\x3e\x59\x41\xa9\xa7\x22\x8d\xad\xac\x5a\x83\xa5\x1a\x9d\xd6\xe0\xb9\xfa\x4b\xc9\x4b\x7e\xe7\xa6\x27\x7e\xf4\xd1\x47\x01\x00\xe0\x37\xbf\xf9\x4d\x04\xd8\x2f\x2d\x01\xc0\xe0\x09\x9e\xb1\xd3\x11\xb1\xb4\xd3\x86\xf7\x66\x4e\xb8\x19\x17\x45\x86\xd2\xc1\x2d\x6d\x0d\xc0\x0f\x06\x5e\x49\x1e\x0c\xe4\x88\x25\x9a\xde\x52\x8d\xb0\x9f\x84\x94\x49\xd2\x39\xf8\x5a\x72\x6a\x27\xf1\x65\x00\x4e\xa8\x6b\xbc\x91\xf6\xa3\x8f\x3e\x0a\x87\x32\xa4\xda\x99\x54\xcf\x52\x5e\x4b\x9d\x97\xea\x6a\x2a\xcb\xd9\xc5\x71\x38\x8c\xb2\x27\xf9\xa7\xb5\x79\x2a\x3d\x94\x0e\x6e\xb0\xb4\xb4\x5b\xce\x2f\xad\x2f\x00\x21\xde\xd2\xb6\xb1\x0e\xca\x36\x4e\x93\xa5\x4f\xd1\xca\x5a\xe3\xe5\x7c\xd5\xfa\x4e\x4e\x56\xe2\xb1\xf8\xa8\xf9\x24\xa5\x47\xc3\x18\x5a\x7f\xdd\x2d\x15\x59\x91\x8e\xd6\xe8\xbc\xe4\xa9\xac\xda\x20\x0c\x20\xfb\xa1\x01\x06\x2f\x80\xf0\xa4\xdd\x93\x0e\x4b\x67\x64\x95\xd5\x64\xbc\x34\x56\x3e\xc7\x86\xc7\xe6\x18\xd9\x96\x1f\x9c\x32\x22\x2d\x97\xcb\xb0\x5a\xad\x3a\x7d\x1f\x7f\xfc\x71\xf8\xd5\xaf\x7e\xd5\xd3\xaf\xcc\xce\x60\xdf\x7a\x94\x82\x0a\x6e\x79\xc7\xa3\xcf\x10\xe7\x22\xbc\xd1\x95\x20\xe9\x50\xc0\x0e\x70\x70\x60\x26\xb1\xc3\xbd\xed\x33\x58\xea\x49\x37\xd0\x12\xa4\x75\xaa\x1a\x2f\x15\x2f\x51\x6e\x7f\x33\xb5\x4d\xeb\x20\x66\x1d\x80\xac\x40\x61\x2c\x8f\xc5\x3f\x4d\x8e\xb3\x33\xa6\xfc\x38\x40\x34\x45\xdf\x32\x45\x7d\x9c\xaa\x9e\x68\xba\xc7\x96\x25\xc9\x6b\x9d\x71\xe1\x9c\xf6\x54\x0c\x8a\xb8\x81\x82\x2a\x68\xcd\x1f\x49\xd7\x58\x20\x42\xe9\x7e\x88\x41\x5c\xa2\xb1\x83\xf4\xd4\x7a\x34\xbd\x56\x7b\xa7\xf2\xc7\x4b\x52\x07\x07\x28\x6e\xcc\x20\x22\x12\xb7\x11\x98\x98\x4d\x49\x81\x3f\xcb\x8b\xd3\x21\xe8\x94\xf6\xb2\xf4\x64\x25\xd0\x60\x20\x11\x6c\x20\xbe\x00\x0c\xd0\xc1\x61\x78\x3f\xca\xcf\x7e\xf6\xb3\xf0\xe9\xa7\x9f\xe6\x76\xb8\x1c\xe5\x96\xff\x18\xdd\xb9\x03\x6c\x2e\xbf\x77\x40\xf2\x3e\xd4\xe5\x92\x36\xd8\x8d\x29\x57\x6c\xc3\xeb\x93\x14\xe6\x01\x31\xb9\xf5\xca\x0b\x4a\xa4\xeb\xd6\x4f\xcb\xf8\x3b\x65\x1b\x10\x75\x87\x01\xfb\x91\x81\x52\x8a\xc3\xb8\x0e\xbd\xfd\x0d\x8c\x8d\x94\x97\x43\xa5\x38\x8e\xd2\x17\x09\x19\xce\x1f\xca\x7e\x2a\xab\x55\xb0\xd4\x17\x6b\xc5\x08\xc9\x35\x0e\xa3\xfc\xe0\xf8\x38\x9f\x52\xbe\xf4\x9e\x92\xe5\xec\x69\xc0\x0f\xfb\x83\x7f\x29\xdd\x94\x5e\x1c\xde\x12\x95\x0e\x8e\x1f\xa7\x0f\xe7\x97\xe4\x13\x17\x86\xfd\xa3\xfc\xe5\xea\x02\xd5\x71\x72\xbe\x73\x34\xa8\x0f\xed\xd2\x52\x3a\x33\xd0\x1c\xce\x04\xf9\xe4\x93\x4f\x62\x7b\xdd\x0a\x21\xd0\x82\x0f\x77\x1b\x9c\xf4\x7a\xa0\xee\xf8\xfb\x94\x2f\x59\x6e\xc1\xe9\x4c\xff\xd2\xaf\x20\xb7\x5f\x4c\xa6\xf2\xa6\xbb\x6e\x6d\x34\x4d\xd3\x1d\xcb\x0f\xc9\xd1\xfc\xed\x1f\x7e\x73\xa8\xdd\xdf\x92\x2e\x47\xb5\xf9\xd0\xfe\xa5\x61\xed\xac\x13\x00\xc0\x0f\x7f\xf8\xc3\x2e\x6f\x3f\xfd\xf4\x53\x2e\xef\x71\xfd\xc3\xed\x9b\x6a\x93\x52\x3f\xc4\xb5\x51\xae\xdd\x70\xba\x23\x11\x06\x28\x9c\xf3\x0f\xdb\xc1\xb6\xb1\x5f\x5c\xdb\xe1\xfa\x5d\xec\x07\xe7\x93\xe5\x9a\xcb\xd7\x1c\x7d\xd2\x20\xaa\xa5\x87\xca\x0f\xaa\x0e\x70\xb6\x39\x1e\x3c\x6e\xb4\xc4\xd5\x3b\x4c\x54\x1f\x67\x01\x42\x5a\xbe\x4a\xf5\x3e\xe5\xd1\xc6\x4f\xae\x0e\x48\xe9\x90\x7c\x94\xda\x62\x27\xaf\x7d\x64\xd1\x43\x69\xa2\x25\x24\x8c\x65\x80\xe0\xa3\x74\x58\x65\x39\x7f\x24\x3f\xfe\x93\xe9\xbf\x31\x4d\xff\xab\xe4\x2e\x4b\xe3\x32\x93\x34\x9b\x62\x92\xe7\x74\x51\xf7\x56\xb9\x03\x89\xdf\x8f\xa2\xe4\xa8\xb7\x7b\x42\x08\x21\xc6\x18\xf1\xb5\x81\xac\xfd\x54\xce\xd3\xbb\xb7\xef\x39\xa5\x6e\x4e\x76\x0a\xdd\x14\xff\x98\xf4\x7a\xcb\x41\xd3\x6d\x21\x4f\x1a\xbc\xe1\xb9\xfe\x4d\x3d\x76\xe5\xd6\x63\x8b\xbe\x31\xf6\xdd\xbc\xd4\x1e\x97\x1c\xe5\x18\x44\x00\x13\x46\x39\x25\x11\x87\x26\x39\xfb\x00\xc3\x0a\xe7\xa9\x20\x92\xcf\x5e\x7a\x97\x80\xe2\xb1\x82\x99\xc7\xea\xd7\xff\x0c\x11\x9f\x35\x00\xee\x3e\x87\x24\x1d\x1c\x78\xa2\x80\x48\x3a\xdb\xf4\xe4\xc9\x93\x70\x7b\x7b\xdb\xbb\x4e\xc3\x08\x9a\x7a\x80\xd3\xfa\xc7\x31\x03\x42\xee\x20\xf8\x2e\x80\x8b\x07\x50\x3c\x14\x70\xb1\x3e\xe4\xe6\xd8\x19\x03\x5c\x72\x75\xe7\xea\xe3\x74\x4f\x0d\xbe\xa6\x02\xe3\x94\xac\xc4\x0b\x92\x2d\xf7\xd3\x97\x40\x01\xfd\x5a\xe3\x38\x5e\x89\x5f\xe3\xc1\xf6\xa8\x5f\xac\x23\xa0\x70\x8a\x97\x92\xc1\xf2\x9a\xaf\x9c\xef\x96\x74\x4b\x7e\x49\xfe\x6a\x69\xe5\xe2\x24\x39\xcd\x77\x4b\xfe\x71\x3e\x72\x34\x26\x8f\xb5\xf2\xa2\xe2\xac\x79\x89\xef\x2d\xe5\xc7\xf9\x66\xe1\x23\x6d\x3c\x7b\xf6\x2c\xe0\xfb\xf6\x8f\x73\x06\xc7\xb5\x40\x27\x05\x3c\xd4\x2c\x4f\xbb\xbc\x45\xf1\xa7\x3a\x39\x9f\xd2\xb8\x36\xec\xec\xec\x4c\xab\x5f\xd6\x32\x00\xe2\xde\x94\x87\x02\xbf\x95\xcf\x93\x06\x8b\x2f\xd6\x7a\xa0\xf9\x28\xd5\xb1\x29\xd2\x40\xf9\x20\xf5\x23\xf8\x5a\xe3\x97\xda\x15\xd7\xb6\x35\xbf\xac\xfa\xb1\x0e\xa9\xce\x59\xd3\xe0\xa9\xd3\x5c\x1a\xf0\xbd\xb5\x5e\x48\x3e\x4b\x75\x44\x2b\x2f\xe9\x9a\xfa\x95\xfc\x18\xf8\x2e\x29\xa1\xee\x71\x9c\x14\xcf\xe9\x90\x2a\xbf\x95\x2c\x0d\xd3\xa2\xc3\x52\x49\x25\xd9\xa9\xf9\x73\xf3\x86\x2b\x7c\xab\x7d\x2e\xde\xd2\x11\x7a\x48\x93\xd1\xd2\xa1\xc9\xe6\xf8\xe4\xb5\x71\x4a\x7e\xaf\xae\xc9\xd3\x7b\x79\x79\x39\x99\xce\x10\x82\xd4\x29\x51\xd7\xd6\x78\x2b\x7f\x6e\x7d\xb3\xea\xb3\xf4\x6d\x39\x36\x35\x1a\xeb\xb7\x64\x6f\x8a\x34\x8c\x29\x3f\x0b\x79\xec\xe4\xf2\x78\xe4\x1e\x43\xbf\x33\x45\x9e\xe4\xd6\x19\x0b\x79\xf2\x58\xf5\x9b\x42\x38\x92\x61\x0d\xe8\xe4\x12\x8b\xac\x4e\x2c\x8f\xe5\x38\x20\x43\xa5\xdb\x92\x5f\x9c\x2d\xcd\x9f\xb1\x83\xb6\xb5\x43\xf5\xf8\xef\xf5\xc7\x1b\x4f\x95\x85\xc5\x8e\xd5\xcf\x53\x00\xad\xc7\x4a\x63\xca\x35\xb7\x0e\x6a\x34\x05\x88\xf0\xf2\x53\x69\x99\x0a\x14\xe5\xca\x79\xae\x73\x07\x98\x53\xe8\xd6\xfa\x44\x4b\xdc\x54\x69\xd0\x68\xea\xfc\x99\x4a\x77\x8e\x1f\xd4\xb5\x54\xaf\xa7\x6a\x3b\x1a\x4d\x51\xbf\x39\x9b\xb9\x3e\x89\x64\xcd\x20\x4b\xc5\x1e\x6b\x43\x8b\xe3\x0a\xd8\xd3\x99\x59\x1a\x9f\x07\x34\x68\xe9\xc8\xf1\x0d\x0f\xfa\x94\x5e\x8a\x4f\x92\x93\x40\x04\x96\xb1\xe4\x89\x37\x1f\x29\x59\x6b\x5d\xb2\x96\x11\x95\x1f\x9a\x4e\x4d\x4f\x7a\x2f\xd5\x3f\xca\x0e\x15\x47\x95\x93\x64\x97\xd2\xe5\xf1\xdb\x42\x9e\x3a\xc9\xe5\x83\x24\x63\xb1\x83\x6d\x50\xf7\x94\x1f\x9c\x1d\x2e\xdf\x25\x7e\xce\xb6\xd5\x8e\xa5\xee\x59\xcb\x9e\xf3\x2d\xa7\xbe\x58\xdb\xbb\x54\xb6\x9a\x7f\x9c\x7d\x4f\x9d\xa6\xf4\x49\x79\x9a\xdb\x96\x28\x59\xce\x3f\x8f\x5f\x14\x49\x32\x52\xbe\x71\xe1\x9e\x7a\xae\xf9\x8d\x7d\xd4\xec\x48\x75\x0a\x93\xc5\x26\x99\x77\x9a\x62\xac\x1c\x1b\xd1\x64\x2c\x64\xa9\x18\x52\xbc\xe6\x93\x27\x23\x25\x1b\x39\x32\x39\xf9\x94\x63\xd7\x43\xb9\xfa\xd9\x4a\x24\xe8\x9d\x2a\x2d\xb9\xba\xa5\x4e\xe9\x3f\x8d\x4e\x9d\x96\x53\x94\x55\x6e\x3f\x21\x75\x98\x92\xac\x57\xce\x53\x97\x73\xed\x68\x83\x32\xc5\xaf\xc9\x79\xc9\xd3\x87\x5b\x06\x65\x8e\xdf\xab\xcf\x7a\xad\x85\x59\x6d\x72\x3c\x94\x6e\x4d\x2e\xb7\x5c\xbd\x3e\x49\xe4\x05\x1b\xda\x35\xd6\x69\xf5\x2f\xb7\x7d\x65\xb5\xd1\x9c\xc1\xdc\xea\x44\x8e\x0e\x6b\xa7\x14\xd0\x9f\x45\x86\xb3\xc3\xc9\x69\x32\x54\xfc\x14\xa0\xc8\x02\xbe\x72\x6c\x58\x3b\x97\xc7\x3c\x20\x4e\x49\x8f\xcd\xa7\xc7\xe6\xcf\x63\x26\xef\xc0\x65\x8d\xf3\xb4\x01\x6b\xdb\xf2\x80\x2b\x8f\x8e\xa9\xe9\x94\x7d\xcb\x29\x69\x4c\x5e\x9e\x2a\x0d\xa7\xce\xcb\x5c\x10\x77\xaa\x72\xf2\x8e\xa7\x56\x3d\x93\x09\x6b\x60\x02\x87\x4f\x81\x8c\x73\x2b\x97\x65\xa0\xe7\x2a\x00\xf6\x1b\x87\x71\x40\x45\x43\xbd\x16\x94\xc9\xd9\xc2\xbc\xd8\x9e\x64\x9f\x4a\x8b\x25\xdf\x25\xbe\x1c\xa0\xe6\x6d\x40\x5a\x1e\x53\xe1\x9a\x8d\x1c\x3f\x24\x1b\xd2\xbd\x66\x93\xf3\xd9\x03\x32\xbd\x75\xd0\xaa\x03\xfb\xe7\xe9\x50\x2d\xf5\xdc\xe2\xab\xd6\xee\x3c\x65\x99\xdb\xcf\x78\xda\xb1\xe4\x0b\xd7\x96\x3c\x61\x96\x72\x95\x28\xa7\x5c\x28\x79\x2d\x8c\xd3\x65\xcd\x37\x4b\x5e\x4a\x36\x2d\xba\x3c\x7a\x25\xfd\x38\x5e\xaa\xa3\x94\x2e\x4b\x1d\xe2\xf2\xc2\xda\xde\x28\xfd\x94\x1e\x8d\x2c\xfd\xd8\x94\x6d\x7f\x20\xaf\x65\x04\xe5\x28\x77\x4f\xc9\x69\x64\x6d\xf0\x9a\x7e\x4b\xc7\x35\x45\x83\xe7\xf4\x4a\xe1\xb9\x79\xa3\xe9\xb7\xc6\x4f\x69\xeb\xb1\xd2\x63\xcd\x83\x29\xeb\xd9\x14\x34\x85\x0f\x53\xd7\x63\x4f\x9b\xf4\x80\x0a\xaf\x4f\x16\x39\x6d\x10\xf0\xa6\x21\xbd\xd7\x06\x12\x6f\x7a\x73\xed\x58\xec\x73\x64\xe9\x83\x4f\x19\xae\xf1\x7a\xf4\xe1\x01\xd8\xa3\xc3\x32\x58\x4b\x61\x56\x3b\x69\x58\x2e\x10\x19\x93\x3f\x9e\x6b\x4d\x36\xab\xac\x2d\x9d\x8a\x35\x63\xac\x89\x94\x80\x10\xa7\xcb\x6b\xef\xb1\x0c\x1c\xa7\x02\x47\x38\xce\x5a\x09\xc6\x74\xf4\x16\x5f\x2c\x65\x2b\xf9\x61\x05\x7b\xb9\x1d\x98\x25\x7e\xcc\x00\x3d\xa5\x5f\x5e\x99\x77\x09\x4e\x4e\x69\x53\x2b\x1f\xab\xcf\xde\xb4\xe5\x76\xe6\x63\xc2\x29\x3e\xef\x20\xa0\xb5\x71\xcb\x80\x39\xc5\xa0\xe6\xd5\xfd\x2e\x6c\x5a\xf4\xa4\xf1\x9e\x7e\xd4\xd3\x1f\x4c\x51\x37\xa7\x00\x7b\x1e\xfe\xb1\xed\xf2\x5d\x8e\xcb\xa3\x51\xa0\x75\x30\x9c\xa2\x02\xe4\x02\x24\x8f\x0f\x54\xe5\xd6\x3a\x13\x2f\x48\xa4\xf4\x59\x3b\x38\x7c\xaf\xe5\x17\x95\x16\x8b\xae\x31\x0d\x9b\x4b\x2f\x97\xaf\x96\x32\xd4\xfc\xa6\xca\xc0\x5a\x97\xac\xf9\xa9\xc9\x5b\xeb\x4d\xce\xc0\xad\xb5\x53\x4f\xfe\x48\x7c\x9c\xbd\x20\xfc\xe1\x78\x10\x7e\xbd\x3e\x4a\x72\x9c\x2f\x14\x0f\xe5\x23\xe7\x0b\xc5\xcb\xd5\x53\xcd\x8e\x94\xbf\x16\x1e\x4d\xce\xe2\x93\xa5\xcc\xb9\xf2\xd3\xf8\xa9\xeb\x29\xec\x70\xbc\x96\x7a\x49\xd9\xe4\x7c\xca\x29\xa7\x9c\x7a\x61\x69\xf3\x9a\x1d\xce\x27\x4f\x1b\xa3\x7c\xd6\xda\x18\x25\x2b\xb5\x41\x53\x7a\xad\x0d\x51\x0b\x97\x9c\xa6\xc2\xb5\x84\x5b\xe4\x38\x79\x4b\xa6\x7a\xec\x6b\x7e\x79\xf8\x72\x64\x1e\x9a\xde\xa5\xed\xaf\xe8\xbf\x9b\xbc\x03\x83\xa6\x03\x87\x7b\x3b\x61\xec\x87\xc5\xa6\x65\xd0\xf4\x84\xe7\xe6\x09\x35\x18\x59\xfc\xb2\xc8\x59\x7c\xe5\x78\x34\x39\xcf\x18\x32\x46\xb7\xb7\x1f\xb3\x8e\x43\x63\xae\xc7\xd4\x13\x0f\xe5\xd6\x3b\x4e\xf6\x94\x75\xdd\xa2\xe3\xc1\x69\xac\x23\x52\x67\x32\xc6\xa6\x84\xee\x34\x3f\x34\xa0\x24\x81\xa5\xa9\x81\x8b\x84\x64\xb1\x3f\x96\x0e\x7a\x0c\x79\x3a\xd8\x9c\x4e\xd6\x1b\x26\xc5\x8f\x05\xb4\xb9\x60\x54\xeb\xc0\x28\x3f\xbc\x94\x23\x6b\xc9\x1f\x4d\xb7\x56\xef\xa9\x7a\xc8\xfd\x7a\xe5\x34\x1e\xc9\x27\x8f\x0d\x6f\x1a\x38\x1f\x00\xc5\x61\x7e\xeb\xbd\xe4\x13\x65\xcb\xe3\x8b\xe4\x03\xd6\x69\xcd\x1f\xab\x3f\x5a\x7e\x6a\x36\xc7\xe4\xcf\x14\x3e\x49\xfc\x56\x9f\x28\x7e\xc9\x17\xec\x93\xa4\xdf\xd2\x76\x28\xca\x6d\x33\x39\xfc\xac\x4f\xb9\x09\xc4\x89\xb0\x84\x79\xee\x35\x9f\x2c\xb6\x2c\x99\x6f\xe5\xf7\xfa\xa5\xc9\x5a\x3a\x0f\x2d\x4c\xb3\x21\x85\x5b\x6d\x8c\x49\x67\x0e\x69\x79\xc3\xc9\x9c\x9a\xac\x36\x72\x7d\x79\xa8\xfc\xb5\x52\x4e\x39\x68\xfa\x2c\xf1\x5c\xa7\x8b\x79\xb5\xfa\x6d\xf1\x43\xb3\x63\xe1\xb1\xe8\xb3\xe4\xa3\xc7\x8e\xc7\xbe\xb5\x9f\xd5\x74\x5b\x78\x2c\x7d\xb5\x76\xed\xe1\x9f\xca\x0e\x25\x6b\xa9\x8f\xde\x34\x4c\xa1\xc3\x93\x27\x53\xe8\xe3\x68\x4c\x99\x51\x63\xaf\x45\xb7\x99\x49\x72\x02\x1b\xb7\x0e\x70\x39\x03\x00\xb6\x67\x91\xb3\x82\x12\x6f\xe3\xb4\xd0\xd8\x4e\x35\x40\x5e\x9a\xc7\xf2\x70\xbe\xbc\x0b\x7a\x6c\x03\x39\xc0\x69\x7c\x7a\x4c\xa0\xcb\x2b\xeb\xa9\x23\x96\xbe\x64\x2a\x7d\xa7\x90\x4b\x79\x28\xff\x73\x74\x7b\xf8\xa7\x06\x45\xa7\x04\x5c\x5e\xdd\xb9\xbe\x4c\xa1\x83\xe3\x19\x53\x07\x3d\x3c\x53\x97\xc3\x18\x39\x2d\x0d\x53\x97\x9f\x45\xb7\x8b\xa6\xec\x4c\x25\x87\x3d\x09\xce\xf1\xc9\x03\xa6\xb8\xce\x93\x03\x68\x94\x1d\xac\x8f\xe3\xb1\xc4\x7b\x64\x72\x2a\x88\x15\x18\x59\x40\x54\x4e\x03\xb6\x34\x68\x89\x47\x1b\x50\xa9\xf4\x4a\x94\xd3\x10\xa5\x01\x8c\x2b\x2f\xa9\xae\x71\x7e\x4a\xf9\x63\xcd\x23\x4b\xbd\xf0\xe6\xa9\xa4\x8f\xd2\x29\xa5\x5f\xca\x3b\x2d\xfd\x9a\x1d\xc9\x37\x8f\xbf\x94\x0f\xf8\x57\xea\x47\x2c\x36\x24\x3e\xca\x6f\x6b\xb8\xe6\x27\x97\x2e\x4b\xbb\xd3\xea\x3b\x67\x53\xaa\x4f\xde\x7a\x40\xc9\x69\xed\x51\xd2\xc9\x91\xd4\x66\xad\x6d\x5e\xf2\x07\xeb\xd1\xf2\x95\xb2\x2f\xd5\x29\x8a\x4f\xb2\x43\xf9\x23\xf1\x48\x65\x6e\xcd\x1f\xce\xce\x20\xbf\x2c\x05\x65\xb9\xb7\x54\x74\xab\x2d\x4b\xa5\xa5\xe4\x3d\x95\xc1\xea\x9b\x54\xb8\x9c\x9c\xd6\x21\x70\xe4\xf1\xcb\x4a\x96\x06\x3f\x85\xce\x87\xd2\x93\x53\x2f\xc6\xd8\xc8\x25\xab\x8e\xa9\xf2\xf2\x21\xf4\x5a\xea\x70\x8e\x7d\x4b\x99\x4a\x1d\x1b\xa7\x47\xeb\xaf\x28\x5d\x9e\xb4\x79\xf3\xd8\xea\xb7\x35\xde\x9a\x6f\xf8\xda\xab\x83\x23\xad\x6f\xcc\xb1\x49\xf5\xcf\x96\xb4\x59\x74\x7b\x78\x3c\x72\x53\xe7\x3d\x27\xe7\xb1\x3f\x26\xed\x53\xfa\x2d\x11\xa7\xdb\x94\x1e\x4b\x47\x21\x29\xb7\x74\x0e\x54\xbc\x94\x21\x52\x82\x28\xdb\x9c\x0f\x5a\xa7\x74\xca\x4e\xea\x21\xf5\x79\x75\x9e\x02\x1c\x4d\x05\xb0\x72\xf5\x3c\x06\x20\xe6\xb1\x35\x66\xc0\x18\x63\x77\x2a\xbe\x5c\xd9\xdc\xc1\xa6\x8d\xb3\x74\xe0\x63\x06\x18\xca\x9e\xc4\xaf\x75\xbe\x5e\x9b\x1a\xef\x18\x7d\xa7\x04\x45\x53\xe8\x98\x62\x40\xb4\x8c\x59\x16\xfe\x29\x7c\xca\xe9\x9b\xad\xba\xad\xf2\x56\x7d\x53\xb4\xa9\xdc\xeb\x6c\xf0\x63\x01\x18\x16\x27\xbc\x99\x3c\x65\xe7\xad\x55\x9e\x1c\x80\xc6\xf1\x71\x3a\x31\xb8\xc2\xfc\x16\xf2\x36\xb6\xf4\x9e\xab\x14\x38\x5e\x1b\x1c\x38\x39\x4a\x87\xb7\xc3\xe4\xf2\x9b\xe2\x91\xca\x85\xf3\x43\xf3\x4f\x4b\x8b\x25\x6f\x31\x69\x71\x5e\xd9\xdc\xce\xd2\xa2\xcb\xd2\x1e\xf0\xb5\x16\xc6\xd9\x91\xee\xa5\x70\xcb\xbd\x55\x4e\x6a\x87\x39\xed\xc5\x5a\x47\xb8\x3c\xb0\xe6\x8d\xe4\x97\xe6\x07\x77\xad\xa5\x3f\xa7\x2c\x72\xda\x10\xd5\x3f\x72\xfc\x5a\x59\x7a\xca\x16\xeb\xb1\xd8\x97\x6c\x53\x71\x9a\x0e\x89\xbc\xe5\x94\x53\x97\xb8\x3a\xa8\x5d\x63\xff\xa8\xf8\xb1\x3a\x3c\xf5\x5b\x0c\xf4\x34\x66\x51\x39\xc3\x23\x55\x1e\x4a\xde\xd3\x98\x4c\x89\x36\xd8\x1c\x43\x56\x79\xca\xdf\x29\xfd\xb0\xfa\xf0\x2e\xf5\x5a\xd3\xff\x10\x79\xf1\x10\xa4\x95\x39\xe6\x7d\x8c\x64\x4d\x83\xa7\xaf\xb0\x74\xbc\x16\x3b\x52\x98\xc5\x0f\x2b\x8f\xc6\xeb\xd5\x2d\xf5\x61\x39\xf6\x73\x79\xc7\xf8\xad\xd9\xf0\xda\xcc\xf1\x23\x47\xf7\x43\xe4\xdb\xd4\xf5\x84\xb3\x91\xa3\x7b\xaa\xfe\x48\x2a\xef\xdc\x36\xea\x62\x90\xc2\x3d\xce\xe5\x74\x6e\x52\x41\x5b\x7f\x29\x7d\x16\xd2\x3a\x47\x8b\xbe\x29\x07\x1b\xef\xc0\x3d\x45\xc7\x30\x05\x69\xa0\xd4\x03\x5a\x1f\x92\xde\x05\x90\xcc\xe9\xdc\x73\xfd\x18\xab\xc3\x2b\x93\x6b\x6f\x8c\x9f\x5a\x1f\x30\x75\x1b\xb1\xd4\xe1\x29\xfa\x8d\xb1\xf9\x90\x23\xe7\xc9\xb7\x53\xfb\xa7\xf5\xf5\x9c\xee\x53\x95\xab\x97\xdf\x5a\x4f\x3c\x76\xa6\x06\x5c\xda\xf8\xee\xa5\x87\x6a\xf3\x2e\xca\x19\x48\xa5\xc2\xb1\x02\xa2\x1c\x3e\x4e\x86\xf3\x27\xa0\x3f\x1c\x4e\xf1\x78\x6c\x5b\x80\xd7\xd8\x4a\x97\xeb\x0f\x95\x3e\x8f\x7e\x8d\x38\x5b\x9a\x2e\x29\xef\x25\x1d\xd4\xb5\x37\xde\x9a\x67\x9c\xec\xd8\xb2\xb0\xfa\xec\x49\x9f\x26\x87\xfd\x92\xc2\x72\xaf\xbd\xe9\xc8\x95\xd3\x7c\xb0\xa4\x2f\xa7\xad\x72\xf9\x2a\xf9\x2c\x95\x87\xd5\x0f\xad\x7d\x60\x1a\xdb\xff\x48\xe9\x90\xfa\x11\xa9\x4d\x5b\xf3\x9b\xf2\x87\xbb\xb6\xe6\x81\xa5\x6f\x91\xea\x8f\x45\x0e\xcb\x52\x76\x39\x1d\x16\x3f\x2c\x65\xe6\xb1\x61\x6d\x7b\x5e\x39\xab\x0f\x22\x69\x99\x66\x6d\x08\x92\x51\x6b\x27\x61\xa9\x64\xf8\xde\x52\x78\x9a\x6e\x89\x72\xe5\x1e\x9b\x0d\x8d\x3c\x65\xfc\x15\x7d\x45\x1c\x9d\xb2\x9d\x79\x3a\x37\x2f\xaf\xa7\x13\xb5\xf4\x3d\x9e\xf4\x8c\x49\xbb\x67\xe0\xce\x1d\xfc\xa7\xd2\xed\x0d\xcf\x1d\xec\xde\x85\x6e\xca\xce\xd8\x72\x95\xf4\x58\xe4\xbc\x36\xc7\xf2\x5a\x79\x4c\x72\xff\x0f\xf9\x63\xeb\x7e\x2d\x7e\x67\x93\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x08\xf7\xe8\xd3\xa5\x14\x03\x00") +var _web_uiV1StaticMstile310x310Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x23\x40\xdc\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x02\x2e\x00\x00\x02\x2e\x08\x06\x00\x00\x00\x98\x4a\x83\xdf\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xdc\xbd\xfb\x93\x25\xc7\x55\x3f\x78\x32\xab\x6e\xdd\xdb\xb7\x7b\x7a\x7a\x5a\x33\xa3\xb1\xa4\x19\x8d\x85\x2c\xc9\x46\x18\x61\x19\x6c\x8c\xbe\x0b\x18\xaf\xe1\xbb\x66\x59\x08\x82\x30\x8f\x20\x02\x47\x20\xfd\x51\xb2\x03\xfc\x03\x01\xf8\x07\xf8\x81\x0d\xff\xc0\x06\x0f\x47\x7c\xc1\xf1\x35\xeb\xd7\x1a\xfc\xc0\x36\xb2\x24\x8f\x47\xd2\xa8\xd5\xd3\xd3\xd3\x7d\xfb\x3e\xaa\x32\xf7\x87\xaa\xac\x3a\x79\xea\xe4\xab\xee\xed\xb1\x77\x53\x31\xea\xaa\xac\x93\xe7\x9c\x7c\x9d\xf3\xa9\x93\x59\x79\x01\xea\x24\x81\x4f\x32\xf2\xaf\x8f\x07\xe5\x67\xfe\x71\x79\x1c\x5f\x70\x94\xe1\xf4\x74\xf1\xf4\xd5\xcf\xf7\x7c\x9d\xe4\xaa\x4b\xec\xb3\x14\x19\x9b\x48\xa9\xbc\x5c\x7d\x30\xb4\x4e\x5c\x3f\xa4\xc8\x70\xf1\x0c\x3d\x0b\x8d\xfd\x18\x5e\x29\x72\x31\x8d\x6b\x5c\xfb\xe6\xd9\xba\xf2\x53\xdb\x6e\x9d\x76\x18\x9a\x5c\x63\x68\xd3\xb2\x63\xc6\xea\xba\x73\x74\xa8\x1e\x43\xf2\xcf\x2b\x6d\x4a\xde\x50\x3e\x3f\x6e\xf9\x9b\x96\xf7\xa0\xfa\xf5\x27\x69\x7c\x6f\x5c\x4e\x08\x7c\x84\x1c\x92\xcf\xd8\x86\x14\x0b\x19\x6e\x4c\x13\x03\x9a\x86\x00\xad\x14\xc3\x1c\xdb\x06\xbe\xb4\x69\x47\x70\x5e\x93\x71\x28\xd8\x48\xe1\x31\xd4\x31\xbb\xf4\xd8\x44\x5b\x84\xea\x73\x5e\x40\xd7\x27\xd3\xa7\xcb\x3a\x3c\xe8\xb3\x75\x78\x0e\x01\x57\xeb\x38\xb2\x07\x05\x1e\x62\x9f\xc7\x94\xdd\x04\x8f\xd8\xfc\xf3\xd0\x23\x75\xfc\xbb\x7c\xcb\xba\xe5\x63\x93\xcb\xbf\xa4\x94\x4f\x2d\x77\x9e\x7d\x7c\x1e\xbc\x63\x9f\x0f\x91\xf7\xc0\x80\x6a\x08\x15\xc5\x18\xf5\x18\x19\x2e\x70\x93\x0a\x00\x7c\x13\x23\x64\x58\xb9\x49\xb8\xae\x23\xde\x44\x99\x07\x8d\xc6\x1f\xd8\xe0\x5a\x93\xb7\xab\x3f\x87\x3a\xe5\xd8\x76\x1e\x02\xc0\x5d\xfc\x87\xf4\xed\x10\x30\x3c\x84\x87\x8b\xee\x3c\x0c\x5e\xe8\x45\xe2\x41\xcd\x81\x75\xd2\x4f\x92\x2e\x00\xeb\x83\xb9\x4d\xbd\x3c\x3c\x28\x79\x43\xe5\xae\x2b\x2b\xe6\x39\xf5\x71\xeb\xf0\x1c\x4a\xbb\x09\x19\xae\xb6\x4d\x7d\x69\x49\xf1\xd3\x49\xc9\xd5\xc8\xa9\x08\x9b\xe3\x1b\x02\x26\x21\xe7\x32\x04\x10\xb9\x64\xd1\x7c\x1f\xff\xd8\x4e\x7b\x50\x29\x76\x00\x6d\xda\x01\xa4\x38\xf8\x21\xfc\x63\xe5\xad\x4b\x9b\x5a\x6e\x13\x20\x75\xc8\xb8\x4a\xd5\x2d\x16\x58\xf9\x78\x0f\x9d\x63\xb1\x69\x88\x31\xa4\xf9\x31\xe3\x39\x96\x6f\x2c\x88\x8d\x95\xef\x93\xb9\xae\xfd\x5c\xe7\xf9\xba\xb2\x52\xe7\x74\x2c\x8f\x21\x7e\x61\xa8\x1e\xb1\x73\x70\x9d\x31\x4a\xcb\x85\xc6\x93\xcf\x6e\xaf\x9b\xd6\x99\x9f\xa9\x75\x4e\xf5\xcf\x3e\x7e\x6b\xd9\x64\xca\x9c\x2a\xe6\xba\xf7\x31\xa7\xf4\xa1\x67\xa1\x81\x96\xe2\x0c\x42\x7c\x62\x0c\xd6\x10\x39\x9b\x4e\xa9\x7a\x9e\x87\xcc\xa1\xc6\xc5\x65\x10\x36\x6d\xcc\x7d\xe3\x28\xd5\x90\x70\x65\x36\x09\x76\x42\x6d\x95\x0a\x62\xce\x73\x4c\xa6\xf2\x8e\x31\x4c\x31\x36\x81\x33\x8a\x43\xfa\x60\x48\xdf\x73\xe5\x5d\x3a\xfb\xe6\x49\x2c\x7d\xea\x1c\x49\x6d\x9f\x18\x9d\x62\xed\x76\xac\x4e\x9b\x6c\x57\xd7\x1c\x71\xf9\x25\xaa\x93\x4f\x8e\x8b\x96\xd3\x35\x96\x9e\xa3\x49\x29\x07\x01\x9a\x98\xf1\x14\xab\x5f\x48\xf6\x3a\xfa\xbb\xf8\xc4\xd4\x6d\x23\x76\x2d\x85\x81\x6b\x30\xb9\x1a\x34\x34\x71\x5d\xc6\xdc\x37\x69\x7d\x93\x3a\xc4\xdb\x25\x8f\x5e\x73\x3a\x70\x29\x66\x70\xa6\x94\x09\xd1\xc5\x18\xc6\x75\x53\x2a\xcf\x50\xdf\x70\xbc\x63\x8c\x07\xce\xf7\x19\xb7\xd8\x76\x0a\xd1\xc4\xea\xe3\xe2\xed\x1b\xe7\x3e\x1e\xdc\xdc\x19\x22\xd3\x77\xef\x9b\x33\x1c\x5d\x28\xf9\xf4\x8c\x31\x7c\x31\xfc\x52\xe8\x63\xfb\x72\x68\xdd\x7e\x5c\x69\x93\xba\xa4\xf6\x47\x4a\x1b\xa7\xf0\x4f\x75\x5a\x43\xda\x20\xa5\x9f\xd7\xb1\xc7\x9b\xa0\x5d\x27\x85\xec\xad\xab\x0c\x2e\x7b\x9e\xe9\x81\xb6\x59\xc8\xc1\x87\x04\xc7\x38\x2e\xae\x9c\xaf\x6c\x08\xc4\xb8\x74\x48\x35\xce\x31\x80\xc6\x55\x6e\x68\xd9\x94\xb4\x29\xe3\x10\xd3\xaf\x31\xed\xba\xe9\xc1\x7f\x1e\x20\xcc\x97\x9f\x32\xf1\x43\xbc\x62\xef\x5d\x3c\x42\x00\x28\xf4\x2c\x26\x85\x40\x94\x8f\x76\x28\x0d\xa6\xdb\xd4\x78\x89\x19\x27\x43\xe5\x6c\x9a\xb7\xab\xcf\x62\x41\x6a\x0a\x7f\x97\xcc\x75\xd3\x50\x3b\x9a\xc2\xcf\x77\x3d\x94\x37\xbe\x3f\xcf\x31\xe8\xca\xdf\xc4\x18\x34\xf7\x29\x7e\x2b\xd5\xae\xfb\xae\x87\xa6\xd0\xb8\x4c\x2e\xec\xa3\x0d\x01\x0e\x9f\x73\x8e\x31\x8a\xd2\xf3\x2f\xa4\x47\xc8\x79\xfa\x74\xf4\xf1\xe5\x68\x43\xf9\xbe\x14\xd2\x7f\x13\x29\xd6\x59\x6e\x6a\xe2\x84\x9e\xf9\xf4\x09\x4d\xaa\x94\x09\x13\xf3\xdc\x65\xa0\x42\x63\x7b\x1d\xdd\xd6\xed\xdb\x54\x90\x10\xea\xdf\x90\x83\x74\xf1\x4c\x29\xc3\xb5\x73\x8a\x51\x8c\x99\x27\x29\x3a\x85\xe6\x44\x48\x4e\x2c\x4d\xaa\x53\x88\xd1\x6b\xd3\xbc\x5d\x32\x62\x1c\x5f\xac\x9d\xf7\xb5\xdf\xd0\x76\x0b\xf5\xa3\x6b\x7e\x0f\x9d\x07\xbe\xf6\x8b\xe1\xed\xe2\x43\x79\x50\xde\x21\xf9\xa1\xbc\x54\x5d\x5c\xf2\xcd\xfd\x10\xdb\x96\x52\xb7\xa1\xf3\xdf\x22\xf4\x0d\x52\x6e\x90\x0c\x99\x0c\x31\x95\xe5\x78\xc4\xca\x88\xe1\x93\x32\x60\x63\x52\xea\x00\x8a\x79\x36\x44\x8f\x21\xb2\x87\xd0\xc6\x38\xa4\x4d\xc8\xdb\x04\xef\x18\xe3\x18\xab\x4f\x4c\x19\x97\x11\x8f\x31\xbc\xdc\xb3\xd8\x36\x58\xb7\x1d\x63\x9c\x4f\xc8\x90\xf9\x64\xf8\x6c\x09\xcd\x8f\x71\x36\x2e\xde\x5c\xf9\xd8\xba\xc4\xb6\x79\x6c\x5b\xc5\xe8\x80\xf3\x7c\x6d\x10\x7a\x36\x84\xb7\x2b\x8f\x93\xe9\x92\xc3\xc9\xf5\xf5\x71\x6c\x79\x17\x7d\x4a\x1b\x84\xe4\xb8\xe4\x85\xc6\x46\xaa\x0e\x38\x6f\x1d\xde\x9b\xd2\x29\x76\xdc\x85\x6c\x99\x6f\x6e\xf8\x74\xf1\xc9\x0b\x8e\x1f\xdf\x00\xf5\x29\xcb\x3d\x4b\x51\xc0\x55\xf9\x94\x81\xeb\x6b\x50\x2e\xc5\x4e\x26\x9f\xac\x54\x79\xbe\xfb\xd8\xb2\x2e\x9a\x90\x0e\xa9\x03\xea\x3c\x53\x4a\xbb\xaf\x2b\x67\x28\xdf\x98\x32\xa9\x86\x98\xcb\x8b\xe9\xcf\x58\x7d\x86\x96\xf1\xd1\xae\xdb\x27\x31\xc6\x76\x1d\x59\x29\xf3\x68\x88\x0c\x9f\x03\x88\x29\xcb\x95\x0b\xd9\x55\x9f\xac\x18\xe7\x10\x23\x6b\x48\xf9\x4d\xb5\xeb\xa6\xc7\x94\xef\xf9\xba\xf3\x6b\xc8\xbc\x0b\xe5\xc7\xce\x81\xd4\xf1\x13\xab\x53\x8a\x3e\x2e\x7e\x9b\x9c\x63\xa9\x7c\x9c\xfa\xae\x3b\x08\x5d\xc0\x23\x04\x86\x42\x46\x2e\x16\x24\x71\x3c\x62\xc0\x8d\x0b\x40\x71\xfa\xba\xe4\x84\x52\xec\x60\x8c\xe5\xe3\x2a\xbb\x09\x30\xb0\x69\x70\x11\xd3\x46\x43\xda\x25\x46\xb7\xf3\x06\x47\xeb\xf2\xd8\x74\x7f\xa5\x3c\x73\xd1\x6d\xd2\x98\x51\x9a\x98\x3a\x6f\xca\x69\xc4\x38\x0a\xdf\x9c\xf7\x95\x19\xa2\x5b\x4a\xbd\x69\x3b\xb9\xda\x3b\x56\xf7\x90\x4e\x31\x34\x43\x64\xad\x33\x36\x37\x31\xaf\x63\xc7\x5d\x4a\x3b\x84\x52\xa8\xbf\x62\xe8\x38\xb9\x43\x75\x4a\x69\x67\x97\xcf\xe4\xca\xac\xd3\x7f\x3e\x3a\x97\x5f\x76\x16\xe4\x94\xf6\x81\x0e\x60\xe8\xb8\xb2\x2e\xf0\x10\xd3\xa1\xb1\x13\xc9\xc5\xcf\xa5\xbf\x8b\x6f\xe8\x19\xa7\xaf\x4f\x6f\xd7\x5f\x57\x9e\x8b\x77\x0c\x5d\x68\xb2\xf8\xea\x16\xba\x8e\xd5\x6b\xd3\x0e\xc0\xd0\xc5\xea\x38\x44\x4e\xac\x01\x09\xc9\x89\xa1\x4b\xd5\xe5\x3c\xd3\x26\xda\x3f\xc4\x37\xb5\xaf\x39\x79\x9b\xa4\x8f\x1d\x9f\xa9\x8e\x97\xb3\x1d\x29\xc6\x3f\xb5\x0e\x9b\xe8\x83\x18\x7b\x91\xaa\x4b\xac\xa3\xf3\xd9\x43\xdf\xf3\x58\x1b\x34\xd4\x0e\xc5\xd8\xbf\xd4\xb9\x30\xa4\x5f\x63\xea\x1a\x3b\xfe\x42\x3c\x52\xda\x2a\x86\xee\xbc\xe7\xba\x53\x1f\x5f\x83\xb8\x2a\x1c\x52\xc0\x37\x08\x62\x27\x59\xec\xc4\xc3\xf4\x21\x23\xc4\x75\xf8\xa6\xd2\x83\x72\x40\x3f\x29\x29\xc6\x00\xa4\x8c\x91\x54\x99\x43\xe9\xd6\xed\xa7\x18\x63\x3a\xa4\xfc\x26\xd2\x83\x1c\x83\xa1\x7e\x8e\x71\xa0\x3e\xbe\xb1\x86\x18\xe7\x0d\x31\x8a\x31\xf9\x29\x4e\xfd\x3c\xec\xcb\xd0\xb6\xf4\x95\x8d\x2d\x17\xc3\x77\xc8\xfc\x8f\x95\xed\xea\xe3\x14\x30\x97\x22\x73\x88\x63\x1f\xda\xc6\x31\x72\x52\xc6\x54\xca\xd8\x5d\x07\x70\x0c\x9d\xa3\x31\x7a\x38\xcb\x85\x08\x39\x00\xe0\x43\x78\xdc\x00\xf6\x35\x56\x8c\xb1\xf1\x81\x29\x8e\xc6\xa7\x8f\x0f\x14\x6d\xa2\x53\x37\x9d\xce\x13\x54\x0d\x1d\x44\xae\xb2\xff\x5f\x68\xa7\x9f\x34\xa0\xf0\x20\xf5\x89\xe9\xef\x14\x47\x3b\x94\x2e\x05\xd8\x84\xf8\xf9\x1c\x59\xc8\x90\xfa\x00\x40\xc8\x4e\x0c\x05\x6a\xa9\xf4\xa9\xfd\x91\x32\xa7\x37\x01\xec\x62\x69\x62\x6c\x49\x6c\xf9\x21\x20\xc5\xe7\x67\x62\xc7\x49\x8c\xbc\xf3\x98\x13\xf8\x7a\xc8\x3c\x49\x1d\x3f\xa9\xbc\xd7\xe1\x9f\xe2\x63\xa2\xe4\xc4\x1a\x84\x68\x84\xc4\x3c\x0b\x19\x88\x90\x2e\x34\xcf\x07\x70\x62\x01\x8f\x2f\x0d\x1d\xfc\x3e\x3e\x43\xe4\xc6\xf0\x1c\x0a\x4e\x42\xf9\xf8\xf9\xba\x93\x27\x56\xb7\x18\x1d\x63\xfb\x35\xd5\xb0\xac\x3b\x66\xb8\x32\x29\x06\x3e\x95\x26\xd6\x10\x84\xda\x87\x6b\xfb\xd8\x31\xe6\x2b\x3b\xa4\x5f\x42\x36\x22\x24\x2f\xd5\x26\xe1\x72\xb1\xb6\xc8\x37\x1f\x62\xfb\x60\x1d\x07\xb8\x8e\xbd\x4e\xad\xb3\xeb\xd9\x90\xe4\x6b\x9b\xd8\x31\x1a\xa3\xcf\x3a\x76\x33\x76\x1c\x0f\xb1\xb9\xb1\xf2\x52\xcb\xc6\xb4\x6b\xaa\xcd\x8c\xad\x5f\x0c\x0f\xdf\x35\x57\xa6\x47\x9b\xda\x30\xb1\x42\x7c\x13\x20\xd4\xf9\xae\x89\x14\xfa\x1b\xd2\x8f\x6b\x80\x4d\x4c\xbc\x4d\x74\xe8\xd0\x72\xeb\xea\x9f\x2a\x2f\x55\x66\x6c\x1b\xfb\x26\xcd\x10\x67\x17\x4b\xb7\x29\x43\xec\x73\x10\xae\xf9\x90\x22\x77\x48\xfb\xc4\xf2\x1b\xd2\x3e\x29\x7d\x3a\xd4\x0e\xf8\xee\x71\x7e\x48\xa7\x50\xfb\xfb\xf4\x1b\x52\xdf\xd8\xb4\xee\xdc\xf7\xf1\x08\x39\x0a\x4a\x3b\xb4\x5f\x5d\xed\x9a\x62\xa3\x53\x74\x0d\xc9\x48\x1d\xaf\xa9\x63\xd4\xa7\x63\x8a\x9f\x0c\xe9\x34\xb4\x8f\x63\xf8\xc6\x8c\x6f\x5f\x9b\xba\x92\x4b\xef\xd8\x3e\xf1\xb5\x31\xab\x6b\x88\xd0\x59\x90\x49\x9b\x00\x02\xf4\xde\xf7\xcf\xc7\xc7\xc5\x8b\x93\x97\x32\x71\x63\xd2\x26\x9c\xea\x26\x74\x38\x2f\xfe\x31\x93\x76\x13\x86\x39\xe6\x3e\x95\xdf\x79\x26\xd7\xd8\x74\x19\x22\x6e\x8e\xc5\x1a\xf0\x58\xa3\xec\x7a\x96\xe2\x54\x62\x78\xc7\x1a\xbf\x50\x7f\x84\x9c\xa1\xef\x9a\xca\x8d\x29\xef\xd3\x63\x48\xbe\xcb\x46\x0d\x6d\x9f\x21\xe5\x42\xba\xb8\x52\xaa\x1d\x4c\xe5\x3f\x24\xa5\x3a\xcf\x98\x3c\xca\x3b\xb6\x5c\xc8\xb9\x86\x64\x86\xfa\xce\xe7\xb7\x62\xfb\x9d\xa3\xa7\xcf\x39\xbd\x62\xf3\x5d\xfc\xd7\xa5\x8d\xcd\xf7\x8e\x85\x98\x09\x31\xa4\x3c\xe5\xe1\xaa\xa8\x8b\x97\x4b\x56\xa8\xf3\x5c\xbc\x63\xf9\x87\xae\x87\xa6\x75\xf9\xf9\x26\xc8\x26\xf9\x6d\x22\xa5\xf2\x8e\x19\x1b\x43\x79\x0f\x2d\x33\x84\x5f\xc8\x70\x72\x7f\x87\xc8\xdc\x84\x03\x19\x5a\x76\xdd\x7e\x89\x75\x08\x29\xfc\x37\xd5\xa6\xf8\x7a\x28\xcf\x18\x59\x43\xf4\xf1\xd1\x87\xec\x68\x8a\xdd\x0b\xd1\xc7\x8c\xbb\x18\xdb\x3b\x74\x1e\xc7\x82\x0c\x4e\x8e\x6b\x0e\x86\xfa\x7a\x53\xf9\xae\x94\x3a\x9f\x53\x6d\xc1\xd0\x79\x11\x3b\x66\x37\xd9\x0e\xbd\x72\xd4\xc9\x87\x3a\x9b\xd2\x84\x0c\xce\x10\x00\x13\xa2\x8b\x75\xf6\x21\xfd\x42\x29\x05\xf4\xc4\xb6\x1f\xf7\x2c\x34\x89\xb8\x3a\xa7\x18\x30\x2e\x3f\xa6\x4d\x5d\xfd\xe3\x4b\x29\xba\xc4\x4e\xcc\x94\xf6\x8a\xd5\x27\x94\xd6\x71\x76\xf4\x3e\xd4\xbe\x2e\x5e\xeb\x8c\xd9\x14\xa3\x15\x63\xc4\xb9\xf2\xeb\x3a\xbe\xd8\xfb\x98\xbe\x0d\xcd\x3d\x8e\x5f\x4c\x1b\xa5\xf6\x5b\xac\x3d\x0c\xd9\xdc\x14\xfb\x11\xa3\xb3\xeb\xb9\x4f\x46\x6c\x1f\xc7\xd0\xfa\xec\xa4\xcf\x2e\x0e\x99\x87\x3e\x7b\x19\x23\x23\x46\x57\x4a\x1b\xd2\xc9\xc5\xdf\xf7\x9c\xca\x0c\xd9\x50\x57\x3f\xc4\xd6\x2f\xa4\x9f\xcf\xa6\xb9\x74\x8a\xd5\x23\x96\x2f\xc7\x67\x23\x29\x34\x20\x63\x26\x71\x4c\x43\xfa\x26\x36\x47\x93\x6a\xb4\xce\x2b\xa5\x1a\xfb\xd0\xb3\x21\x13\x7b\x08\x8f\xa1\x46\x64\xc8\xb3\x90\xfc\xd0\x64\xe6\xe4\xac\x53\xef\x4d\xa6\x75\xfa\x70\x48\x5d\x37\xd9\x67\x3e\x59\xb1\x8e\xcb\x55\x96\xa3\xdf\x44\x7d\x42\xe9\x3c\x8d\x61\xc8\x06\x6d\x92\x37\xe5\x9b\x3a\xa7\x53\xe6\x54\x4c\x4a\xe1\x31\x44\xee\x26\xc6\x44\x68\xdc\x0d\xd5\x25\x95\x47\xea\x58\x3f\x8f\x31\xfb\xa0\xe5\xfb\xec\x60\xb4\x2e\x2e\xe0\xe0\x02\x02\xb1\x20\xc3\x65\xd4\x7c\x13\xce\x75\x1f\x23\x9b\xd2\xc7\xd4\x85\x93\xe7\xe2\x39\x24\xc5\xe8\x38\x84\x6e\xa8\x41\x8c\x9d\x54\x9b\xe2\x35\x44\x5e\xa8\x6f\x63\x53\x2a\x68\x49\x95\x19\xeb\x98\x42\xf7\x3e\x19\xe7\x41\x93\x92\x62\xc1\x88\xb9\x1f\x5a\x37\x8e\x3e\x46\xf6\x79\xb4\xc9\xba\x63\x2f\xa6\xbf\xf1\xb3\x18\x79\xa9\x6d\x32\xa4\x0e\xb1\xfd\x99\xc2\x77\x28\x38\x48\xe9\xd7\x1f\x47\xff\xc6\xd8\x6e\x88\xa0\x89\xe9\x33\x2a\x37\x44\x13\x9b\xb7\xa9\x76\xe3\x68\x36\x35\x77\x93\xe8\x63\x3b\xd6\xd7\xe8\xa1\xc6\x0a\x81\x0f\xca\x23\x06\x68\xa4\xe8\xe7\xe3\xe3\xd2\x2f\x45\x6e\x8a\x81\xf0\xf1\x49\x49\x9b\x36\x1e\x1c\x0f\x1f\x70\x4a\xd1\xc7\x05\xc6\xd6\x31\x6a\xb1\x46\xc2\xa5\x0f\xbd\xf6\x95\x4f\xbd\x4e\xd5\x2b\x56\xd7\x21\xf4\xa1\xf2\xeb\xf0\x4f\x31\x5c\x21\xba\x50\xd9\x75\x68\x36\x59\x6e\x08\xef\xd4\x3e\x4f\xe1\x1d\x5b\x6e\xdd\x34\x14\x38\xd0\xf2\x34\x6f\x5d\x7e\xeb\x8c\xaf\x75\xd2\x26\xc0\x98\x8b\xf6\x41\x8e\xcd\x07\xc1\x3b\xd5\xc6\x7a\x89\x69\xa1\x10\x10\xf0\x39\xf7\x54\x83\x19\x6b\xf0\x63\x40\x92\xcb\x09\x85\x1c\xe4\x79\x1b\x80\x58\xa7\xe8\x2b\xbf\x09\x79\xeb\x0c\xa6\x18\xba\xf3\x72\x2e\x43\xc0\x20\x7d\xe6\x1b\x7b\xb1\xfa\xc7\xd0\xa7\xe6\xc5\xb6\xc7\x3a\x6d\xec\x2a\xbb\x09\x43\x1f\xe2\xe1\x03\x86\x43\x80\x62\xa8\x1d\x52\x78\xc6\xf4\xa3\xcf\xa6\xa4\x38\xac\xd4\x39\xe9\xd2\x83\x2b\x93\xea\x38\x63\xc7\xc1\x3a\x0e\x79\xe8\x98\x8b\x1d\xbb\x31\x65\x42\x32\x53\xfd\x4d\x8a\xdc\x54\x9b\x42\xf3\xd6\xe9\x07\x9f\x0f\x4e\xa1\x89\x91\x45\xf3\x7d\xba\xfb\xca\x26\xd9\x64\x49\xfe\xb9\x94\xe0\xee\x5d\x79\xa1\x46\xf7\x4d\x44\x9f\x71\x88\xed\xc8\x90\xae\x9c\x9c\x75\x52\xaa\xe3\x09\x3d\x4b\xe1\xe7\x6a\x9b\x75\x75\xda\xb4\x83\xf3\x4d\x9a\x21\x3c\x86\xf2\xdb\x74\x1f\xf8\xca\xa5\x18\xcf\xa1\x6d\x3a\xd4\xe1\x0c\x91\x15\xa3\x47\x8a\x43\x1d\x32\x17\x43\x72\x38\xbb\xe4\xd3\x25\x64\xb0\x53\x75\x3b\xaf\x76\x4f\x71\x16\xa9\xb4\x2e\x3b\x4c\xf3\x7c\x3a\xae\x3b\xf7\x86\xd2\xc7\xc8\x8e\xa9\xdf\x26\xda\x31\x96\x76\x13\x69\x53\xe3\xd2\xa7\xff\x90\x36\x0a\xb5\x87\x4f\xb7\x58\xdb\xcc\x32\xe0\x94\x0d\x35\xd2\xba\xcf\x62\x8d\x4b\x4a\x8a\x9d\x78\x9b\x92\xb7\xa9\x14\xdb\xf1\xa9\x03\x84\x96\x4b\x7d\xf6\xa0\x53\x8c\x03\x3c\x0f\x63\x10\x92\x97\xc2\x63\x1d\xba\x4d\x00\xbd\xa1\xb2\x7e\x1c\x29\xb5\x6d\x7f\x12\x74\x5e\x37\x0d\x01\x6c\x0f\x32\x85\x9c\x9d\x8f\xc6\x55\x2e\x76\x5e\xa5\x8e\xf7\x18\x9d\x7e\x92\xda\x90\xa3\xfb\xff\xcb\x98\xe6\xae\x63\xe8\x37\x22\xd4\xdc\xfb\xd0\x39\x30\xcf\x62\xc1\xce\x26\xca\x50\x9d\x63\x74\x73\xd5\xc3\x27\xcf\xc5\x3f\x35\x3d\x08\x07\x92\x32\x69\xcf\xcb\x11\xae\x93\x36\xa1\x67\x6c\x1b\xac\x6b\x98\xcf\x03\x3c\x9e\x67\xe2\xea\xb5\x09\xc7\xb9\xc9\xf6\x72\xbd\x40\x85\x74\x19\xe2\xe8\x52\xf9\xa6\xe8\x1f\x92\xcd\xdd\xbb\xea\xcc\xd9\x2d\xee\x6f\xcc\xdc\x19\x62\x83\x62\x6d\x72\x4a\x99\x54\x19\x2e\xba\xd8\x3e\x4c\x4d\x3e\xbe\xae\xfe\xa0\x34\x21\x5d\x86\xfa\x03\x97\x9f\x76\xd1\xc5\xce\x97\x4d\xcc\x21\x2a\x2f\x34\x97\xb9\xbc\xa1\x76\x35\x99\xc9\xd0\x0e\xf2\x19\xd2\xd0\x64\x48\xd5\x2b\xa4\x83\xcb\x60\xa6\xf2\x8f\x9d\x38\x0f\xca\x79\x9d\x17\x40\x1b\x32\xb8\x7c\xed\x39\x64\x0c\x0d\x75\xc4\xb1\x06\x86\x8e\x09\x97\x8c\x94\xf1\x1d\x93\x86\x3a\xbe\x90\x5c\x9f\x9e\xb1\x3c\x62\x52\xca\x78\x7f\x10\xf3\x60\xa8\x53\x4c\x29\x1b\x9b\x36\x2d\x23\xd5\xd9\x6c\x3a\x0d\x95\x1d\xeb\x4c\xcf\x4b\x8f\x9f\x84\x71\x97\xea\x33\x36\xad\xcb\x10\x3b\xb6\x49\x5d\x06\xdb\x18\xce\x69\xc7\x18\xe7\x75\x1c\x90\xab\x8c\x0f\x40\xb8\x74\x88\x95\x1d\x32\xcc\xb1\xfc\x43\xe5\x53\xe9\xd6\x6d\xc3\x58\x67\x7d\xde\x93\x20\x15\xa4\x0e\xe5\x1d\x5b\xe6\xc7\x41\x37\x04\x40\xfb\xe6\xdc\xba\xce\x96\x03\xe1\xa9\xbc\x93\xd3\x6f\xfe\xe6\x6f\x4a\xfc\x97\xe8\x03\x24\x8f\x26\x1f\x10\x0d\x19\x79\x97\xbc\xd0\x1c\xe1\x6c\x1f\x47\x9f\x02\x5e\x63\xec\xd9\x3a\x4e\xcb\x67\xa7\x43\x7c\x42\xe3\x25\x86\x5f\xac\xdd\x71\xc9\x8d\x6d\x43\xac\x5b\x4c\x39\x5f\xbb\xc7\xfa\x3a\xdf\xb8\x4b\x1d\xb3\x3e\x1d\x53\xe6\xa6\xaf\xbf\x5d\xf6\x24\xd6\x0e\x87\xfa\x3b\xb6\x7e\x9b\x48\x31\xe3\x55\xa6\x10\xc6\x0e\x68\x17\x4f\x8e\x3e\x65\x12\xf8\x06\xdd\x3a\x29\x85\xcf\x26\x3b\x2b\xd5\x88\x9f\x97\xdc\x21\xe5\x53\x79\x0c\x95\x19\x72\x34\x29\x3c\x42\x4e\x29\xc4\x3b\xc6\xb0\xc5\xf2\x4a\x49\x29\xf3\x8a\xd5\xe7\xd7\x7e\xed\xd7\x24\xbe\xa6\xf7\x5c\xfe\x83\x4c\xe7\x20\x77\x28\x10\xe0\xfe\xfe\xb8\x53\xcc\x18\x5a\xc7\xd1\xc5\xea\x30\x24\x0d\x05\x35\xe7\x95\xce\x5b\x46\xac\xdf\x73\xe5\x3f\xa8\x7e\x09\x95\x1d\xe2\x0f\x1f\xc4\x18\x69\x93\x60\x0a\x2a\x94\xa7\xc8\x73\x73\x4f\xf3\xcd\xb3\x94\x84\xf9\xe0\xbf\xa9\xe5\x39\x5e\x2e\x7a\xaa\x27\xe5\xe1\x7b\xee\x92\xef\xa2\xa1\x6d\x38\xa4\x7d\xb0\x3e\x43\x79\x84\xca\xac\xd3\xee\xbe\xfc\x54\xd9\xa9\xed\x9f\xa2\x1f\xa7\x1b\x96\x95\xa2\xab\xab\x9e\xdc\x9c\x09\x8d\x9d\x94\x67\x12\x00\xd4\xf5\xeb\xd7\xe5\xf5\xeb\xd7\xe1\x8b\x5f\xfc\x22\x5b\xfe\x23\x1f\xf9\x88\x34\xcf\x5e\x7a\xe9\x25\xf9\xf2\xcb\x2f\x5b\x74\x2f\xbd\xf4\x92\xd4\x5a\x83\x10\xc2\x21\x7e\xb3\x09\xcb\x72\xc9\xd5\x5a\xb7\xd7\x42\x08\x30\x3a\x63\xfd\x3f\xf2\x91\x8f\x48\x00\x80\x2f\x7e\xf1\x8b\xca\xd4\x11\xd7\x15\xfc\x6d\x1e\xd3\xff\xe6\x3e\x75\x1c\xbb\xc6\x1b\xe6\xc7\xe9\xe5\x1a\xfb\x9c\x5d\xc3\x34\x5c\x72\xd1\x87\xf4\x0a\x8d\x7f\x9f\x2e\x3e\x9b\x87\x65\x00\x84\xdb\xd3\xc7\x3b\xe4\x9f\x86\xe8\xcf\xa5\x50\x7b\x71\xf9\x58\x9f\x21\xbc\x43\x7d\xe5\xea\x27\x5f\xbb\xa6\xd8\xb6\x90\x0f\xf5\xcd\x1b\x9f\x1c\x17\x46\xf0\xd1\x87\x74\xb6\xf2\x42\xd6\x6b\x1d\x03\xef\xba\xf6\x19\xfe\x75\x27\x9a\x4b\xef\x21\xfa\x6e\xba\x8c\xab\x7c\x2c\xcf\x14\x10\x15\xdb\x4f\x10\xc1\xd3\x27\x7b\x48\xdd\x87\xc8\x59\x87\x37\x24\xf2\x4c\x31\x42\x21\xe0\x95\x5a\x3e\xa9\xee\x2f\xbe\xf8\xa2\x74\x01\x10\x1f\x48\xc0\xf9\x5a\x6b\x29\x84\x50\x00\x10\x05\x68\x28\x10\x31\x49\x08\x11\x2d\xb3\x49\xed\x38\x65\x74\xf2\xf2\xa3\x60\x8c\x4b\x3f\xf7\x73\x3f\x27\xbf\xf6\xb5\xaf\x9d\xe7\xf8\xdd\xf4\x58\xf5\xc9\x81\x0d\xcb\x4a\x71\xf4\x3e\x50\xb7\x29\xb9\xeb\xd0\xa6\xf2\x34\x69\x13\xf5\x59\x47\x97\x4d\x95\x8d\x05\x5c\x9b\xf2\x53\xeb\x94\x49\x7d\x29\x70\x26\x6c\x15\x52\x10\x20\x40\xbf\xe3\x39\x64\x4c\xcb\xc7\x26\x9f\x13\x8e\x79\x23\xa1\x68\x8f\xf2\x03\xa6\x5c\x2c\x8a\xc4\xd7\x43\x3a\xc2\x05\x32\xd6\xe1\xe9\xa2\x8d\xb9\x37\xe9\xbc\xc0\x83\x2b\x0d\x01\xc5\x94\x8e\xd3\x7f\x5d\x9d\x36\x09\x62\xd7\xd2\xcf\x44\x1c\x5e\x7a\xe9\x25\x09\xc0\x47\x2f\x18\xe7\xde\x03\x20\x06\x60\xf8\xc0\x00\x2e\x87\xe9\x7d\x89\xd3\xc1\x05\x42\x48\xea\xb5\x85\x4f\x66\xc3\x43\xc5\xd2\x03\x84\xc1\xcd\x33\xcf\x3c\x23\xbf\xf3\x9d\xef\x9c\x17\x18\xe7\x52\x8a\x41\xc7\xf9\x00\x71\x76\xc2\xc7\xcf\xf7\x36\x1d\x63\xd7\x42\xfa\xbb\x64\x02\xf8\xe7\xd3\x50\x5b\x77\x5e\x80\xc3\xe7\x0b\x28\x5d\x2a\xf0\x71\xf9\x1f\x8e\x26\x56\xde\xa6\xda\x61\xc8\x4b\x97\xeb\xde\xc7\x27\xf6\xe5\x9b\xe3\x61\x95\x15\x0c\x21\xd7\x79\xe0\xc8\x0b\x0d\x4a\x5a\x36\x26\x6d\xa2\x11\x5d\x0e\x23\xe4\x48\x52\xdf\xcc\x42\x1d\xe1\x92\x13\x5b\x7e\x5d\xb4\x7b\x5e\x03\xdd\xc7\x6f\x13\x32\x63\xdf\x8c\x1e\x14\xc8\x1a\x22\xd7\xa2\x79\xfc\xf1\xc7\x25\x00\xc0\x6b\xaf\xbd\x66\x95\xc3\xe0\x84\x73\xc6\x24\x2f\x06\xfc\xf7\x68\x1c\x20\x27\x18\x61\x71\x81\xa3\x26\x4a\x63\xd1\x98\xba\x72\x3c\x03\x72\x54\x04\x1d\x4b\xe3\x89\xf0\x28\x5f\xbd\x22\x22\x36\x21\xc7\x14\xf3\x96\x1b\xba\x77\xd1\x6c\x82\x2f\xe6\x15\x72\x7a\x43\x9c\xa5\x4f\xe7\x28\xc7\x93\xf0\xcc\x47\x13\xca\x1b\x02\x3e\x62\x7d\xc4\x26\xc0\x9d\x8b\x86\x93\xed\x03\x98\x31\x63\xcb\x55\x2e\xa6\x4f\x52\xe6\x43\xcc\x18\xe6\xe8\x52\x80\xae\x14\x01\x82\x21\x42\x63\xf8\x85\x26\x1d\x97\x38\x19\xae\xc6\xe5\x74\xf1\x36\x84\x47\xbf\x94\x8e\x0d\xd1\xc5\xf2\x48\x41\xf4\xeb\x82\xad\xa1\xb2\x52\xe8\x53\xfa\xd9\x27\x13\xe7\xa5\xf2\xdb\xa4\x71\xa4\xcf\x2c\x9a\x2b\x57\xae\x48\x00\x80\xb7\xdf\x7e\xbb\x57\x0e\x47\x4f\x00\xd8\x28\x88\x33\x62\x62\x9e\xd3\xa5\x1a\x03\x6a\x98\x88\x89\x24\x65\x2d\x39\x38\x9f\x00\x02\x49\x68\x39\x79\xbd\x72\x8e\xa4\x02\xd1\x14\xe5\x00\x47\x2e\xf0\xd1\x5b\x5a\x72\x95\x21\x6d\x6c\xc9\xa1\x7f\x0d\x98\xf9\xdd\xdf\xfd\x5d\xf9\x37\x7f\xf3\x37\x43\xe7\x5c\x28\xf9\x9c\x12\x97\x1f\x23\x33\x55\x17\x97\xfd\x4d\x9d\xdb\x43\x64\xbb\xca\xa7\x38\xd4\x4d\xa6\x18\xbb\xbf\x4e\xfb\xc6\xe4\x87\x68\x52\x7d\xa4\xcf\x4f\xc7\xca\x4c\x49\xeb\xb4\x95\x8f\x9f\x17\x27\x08\x86\x30\x84\x38\x5d\x0a\x53\xfa\x54\x20\xb1\x8e\x03\x76\xe9\x1e\xe3\xa4\x53\x69\x36\x3d\xa9\xce\x6b\x92\x0e\x79\x23\xa0\xb4\x10\x41\x9f\xca\x73\x5d\xda\xa1\x20\x31\x36\x0d\xe6\xb1\xb3\xb3\x23\x4f\x4e\x4e\xda\xb2\x66\x0f\x0a\x75\xdc\xcd\xbd\x74\x39\x59\x70\x83\x17\x49\xf8\x48\x0f\xd8\xa0\xa0\x85\x2d\x4b\x1c\xb8\x55\x06\xeb\x8e\x79\xe0\x67\xcc\x5f\xc5\xf1\x30\x51\x19\x17\x40\x41\x3c\x14\x91\x4d\x81\x8d\x32\xed\x41\x79\xe2\x25\x25\x06\xdc\x58\xb2\xb1\x3c\xd7\x72\x57\xcc\x5e\x9a\x84\x74\x1e\x63\x33\x65\x8e\x87\xe6\x0d\x24\xf0\xf2\xe9\x12\x92\x3f\xd4\xce\xa7\x3e\x4f\xb5\x13\x21\x7b\xb7\x8e\x3f\x58\xd7\x16\x0f\xa1\x8f\xe1\x07\x01\x9e\x43\xed\x75\x0a\x10\x75\xe1\x0d\x6f\x7f\xd2\xaf\x8a\x62\xd0\x2f\xad\xb0\xf5\xe6\xe6\xe1\x45\xf3\x39\x5a\x5a\x8e\xca\xf3\x81\x2a\x9f\x5e\xdc\x5b\xbf\x8b\xaf\x8b\x3f\x96\x33\x74\x32\x87\x00\x13\x30\x74\x21\xd9\x29\x60\x70\xe8\x1b\x8d\x0b\xdc\xa6\xb6\xd1\x10\xe0\x1a\xab\x9f\xd1\xc7\xc7\x37\xb6\x7d\x92\xf5\x33\x91\x14\x9a\x30\xb8\x88\x78\x26\x9b\x7c\xd7\xd2\x90\xb9\x97\x0c\x4d\x4b\x8b\x41\x88\x10\xa2\xe3\xa1\x2d\x7e\x35\x90\x31\xd7\xda\xda\xf0\xe6\x92\xcb\x3d\x33\x89\xb6\x8d\x75\xaf\x01\x14\x12\xa0\x9a\x3c\x9b\x56\x58\xe5\x70\xf9\x36\x8f\x00\x12\x27\x2d\xb7\x2f\xa6\xa7\x13\x02\x49\x28\x8f\x2b\xd7\x26\x0c\x66\xb2\x2c\x93\x55\x55\xc5\x8c\xd9\x58\x9b\x4a\x75\xf4\x39\x03\x97\x0c\x7a\x1d\x2a\x1b\x72\xc2\x9b\x9c\xf3\xae\x72\x86\xef\x3a\xce\x34\x16\x98\xad\xdb\x06\xb1\xf6\xc2\x57\x36\xb5\xff\x53\xed\xf6\x10\xa0\x34\xb4\xff\x38\x3d\x69\xb9\x98\x36\x4d\xaa\x63\x0e\x7c\x03\xba\xfe\x02\x62\xee\x02\x1f\x9c\xc1\x71\x5d\x73\x1d\xe6\x92\x49\x79\x18\x1a\xee\x19\x6d\x34\x17\x10\xe2\x74\x0b\x25\x1f\xad\xcb\x50\x72\x65\x7c\x46\xd5\x25\x23\xc4\xc7\x6b\xa8\x1d\x29\x66\xe0\xd0\x7a\xb8\xc0\x5e\x8a\xdc\x58\x43\xe5\x4b\x46\x57\x1f\x2f\xc5\xd0\xb9\xfa\x25\xb9\x2d\xb9\x4f\x8e\x4d\xf2\xec\xf7\xa8\x41\x43\x1f\x9c\x70\x63\x9f\x9b\x8b\xd2\x05\x5a\x00\xcd\x4d\x04\x5a\xda\xbf\xb9\x12\x72\xba\xcc\xf2\x71\x25\xe5\xa8\x02\x39\x2e\x65\x31\x59\xc9\x62\xba\xca\x8a\xa2\x12\x45\xa6\x44\x2e\xb5\x90\x52\x89\x5c\x6a\xc8\x33\x05\xb9\xd4\x22\x17\x20\xa4\xd4\x20\x85\xae\xef\xa5\xae\xc1\x8e\x12\xa0\xb4\x00\xa5\x85\x2e\xb5\x00\xa5\x84\x56\x4a\x40\xa9\x04\x94\x20\x40\x55\xa0\x55\x99\xe9\xe5\x22\x57\xcb\xb3\x91\x9a\x2f\xf2\x6a\xb9\xca\x74\xb9\xca\xb4\x5a\x49\x5d\x2e\x33\x55\x2e\x73\x55\x9e\x8d\x94\x52\x82\x1d\x67\x80\xae\x15\x93\x47\x9f\x63\xf0\xe1\x9b\x7f\x26\xe2\x62\x8d\x77\x0f\x68\xb1\xe8\x7c\xfd\x0e\xf6\x58\x74\x39\x25\x20\xf9\xb1\x4e\x91\xb3\xd7\x3e\xdb\xe6\x92\x8b\xe7\x04\x47\xe7\x9a\x33\x54\x1f\x57\xf2\x95\xe7\x9e\x53\x1d\x86\x00\x0c\x9f\x0e\xbe\xf2\x2e\xdf\x14\x6a\x47\xce\x0e\xd2\x3e\xa0\x36\xd3\x65\x87\x7c\xf5\x71\x81\x19\x4e\xa7\x18\x7e\x54\x5f\xda\x46\x9c\xfe\x9c\xfc\x58\xff\x16\x33\xae\x7c\x7e\xbc\x37\x3e\xb8\x88\x0b\x40\xbf\x33\xb8\xc2\x29\xf7\x94\x17\x4e\x1c\xa8\xa0\x7c\xb8\x32\x2e\x7e\x34\x85\x40\x0b\xc7\x77\x48\xc7\xc7\xe6\x0f\xe1\x85\x9f\xa5\x20\xd3\x21\x06\x27\x25\x0d\x35\x24\x29\xe5\xd7\x05\x37\x21\x3d\xa2\xfb\xef\x53\x9f\xfa\x94\xfc\xf3\x3f\xff\x73\x15\x38\x0b\xa5\x1d\x9b\xdc\xf2\x0d\xf7\x17\xd1\x71\xf7\x2d\x6d\x13\xa1\xc1\xf7\x20\x40\xc8\xa2\x94\x72\x7b\x29\x8b\x9d\x65\x36\x99\xae\xb2\xe2\xc2\x3c\xdb\xdd\x59\x66\xbb\xe3\x95\x9c\x8e\x2a\xb1\x93\x29\x31\xc9\xb4\x98\x66\x1a\xb6\x33\x25\x26\x99\x12\x3b\x52\xc3\x54\x6a\x31\xcd\x94\x98\x4a\x2d\x26\x42\x43\x21\x00\x72\x01\x20\x9b\xc8\x8c\x04\x10\x52\x00\x48\x51\xeb\x90\x0b\x93\x6f\x47\x6e\x00\xa0\x06\x2f\x00\x60\xa2\x2a\x4a\x37\xff\x00\xb4\x02\x01\xa5\x06\x58\x6a\x01\xa5\x02\x58\x6a\xa1\xe7\x4a\xe8\xb9\x12\xb0\x54\x42\xcf\x94\x80\xb9\x92\x7a\x56\xd6\xff\xee\xaf\x32\x7d\xb2\xcc\xd5\xf1\x59\xae\x4e\x66\xe3\xea\xf8\x74\xa4\xe6\x8b\x5c\x2d\xe7\x23\xb5\x3c\x1d\x55\xcb\xf9\x48\x95\xab\x5c\xab\x66\x99\xa7\xe7\x7c\x51\x3e\x80\x6d\x94\x7b\x40\x87\x89\xb0\x18\xf0\xa3\xe8\xd2\x11\xa2\x6f\xf3\x3f\xfd\xe9\x4f\xab\x17\x5f\x7c\x51\x7e\xfa\xd3\x9f\x56\x7f\xf2\x27\x7f\x22\x3f\xfb\xd9\xcf\xb6\x7f\xb9\x31\x81\x64\xb8\x6c\x58\x8c\x63\xe2\x52\xec\x38\xe6\xf8\xba\xe6\x83\x4b\x17\x5f\x7d\x38\x1b\xc5\xd9\x2c\x97\x1d\x4b\xb5\xf7\x21\x3f\xc4\xd1\xd1\xba\xc4\xf8\x03\x9f\x7e\xae\xfc\x54\x9b\x16\xe3\x8b\x5d\xe5\x7c\xed\xca\xf5\x9f\x6f\x8c\x71\x6d\xea\xa2\x8f\xed\xc7\x4d\x8e\x6b\x49\x2d\xaf\xaf\xf1\x53\x9d\x5e\x6c\xa7\xa7\x00\x0b\x4c\x63\x52\x8a\x33\xdf\xb4\x13\x5c\x17\x18\x6c\x1a\xdc\xac\x9b\xd6\xd5\xdf\xd5\xe7\xe0\xc8\x1f\x3a\x9e\x36\x61\xa4\x9d\x63\xe1\x93\x9f\xfc\xa4\x04\x00\xf8\xdc\xe7\x3e\xa7\x00\xc2\xcb\x40\xcc\x66\x58\xbc\x7f\xc4\x02\x1a\xcd\x33\x8b\xae\xd1\xa5\x03\x29\x1a\x64\xa6\x21\x97\x4a\xc8\x4c\x03\x8c\x2a\x99\x4f\x97\xb2\xd8\xae\x81\xc9\x74\x6b\x29\x77\xa6\xab\x6c\xb7\x28\xe5\x6e\x51\x89\xbd\x51\x25\x2e\x8d\x2a\xb9\x37\xaa\xc4\x5e\xae\xc4\x5e\xae\xc4\x4e\x0d\x48\x60\x22\x00\x72\xa1\x45\x21\x74\x03\x4a\x40\x14\x0d\x18\xc9\xa1\x89\xa0\x60\xd9\x9e\xe5\x22\xda\xce\x38\x85\xfa\xb1\x06\x03\xdd\x75\x69\x80\x4e\xf3\xb7\xac\x81\x8e\x2e\xb5\x80\xa5\x16\x7a\xa9\x04\xcc\x95\x80\x79\x25\xf4\x5c\x49\x3d\xab\x24\x9c\x94\x52\x9d\x94\x52\x1f\x2f\x33\x7d\x77\x95\xab\xa3\x79\xae\x0f\x66\xa3\xea\xe8\x64\x5c\x1d\x9f\x8d\xd4\xfc\x64\x5c\xce\xcf\x46\x6a\x59\x4a\x5d\x2a\x01\x4a\x49\xad\x2a\xa1\x95\x92\x2d\x78\xa1\x20\xa6\x07\x7a\xc8\x73\xae\x6e\x3d\x90\x43\xd3\xcb\x2f\xbf\xac\xfe\xf0\x0f\xff\x50\xfe\xe5\x5f\xfe\xa5\xfa\xe4\x27\x3f\x29\xcd\x38\x82\x34\x67\x6d\xf2\xa9\x9c\x10\x8f\xa1\x2f\x03\x3e\xe7\xb7\x8e\x9d\x4a\x29\xeb\xb3\xcf\xae\xb9\xed\xa2\xf7\xe9\xb4\x6e\xf2\xb5\x71\xa8\xde\x2e\x10\x31\x54\x1e\x47\x17\x02\xa2\xb1\xd7\xeb\xe8\xb2\x6e\x59\xaf\x7e\x82\x3c\xf0\x21\x33\x17\x8a\x03\x54\xc6\x67\xd0\x7c\x28\x2e\x76\x92\xac\x33\x19\x5c\x7a\x71\xbc\x5d\xba\x87\x06\x2b\xc7\xcf\x97\x97\x0a\x14\x63\x26\x8c\x8b\x2f\x97\x42\x48\x3d\x86\x3e\x45\x7e\x6c\x99\x58\x1d\x38\xbd\x53\x26\xaf\x33\x71\x60\x85\xf9\x0c\xb8\x05\x25\xf8\x2f\xda\x63\x62\x00\x8c\xa4\xd1\x13\x00\x90\x42\x83\xcc\x6a\x70\x92\xe7\x95\x90\xa3\x4a\xe6\x5b\xa5\x2c\xa6\x8b\x6c\xb2\xb3\xcc\x76\x76\x16\xd9\xe5\xad\x95\xbc\x3c\xae\xe4\xe5\xf1\x4a\x5e\x29\x2a\xb1\x9f\x57\x72\x37\x57\x62\x27\x57\x75\xc4\x44\x2a\x31\x91\x00\x93\x06\x9c\x18\x80\x92\x43\x1d\x3d\xe9\xe9\xd6\x5d\x77\x10\x85\x8b\x1b\x69\x4f\x3e\x00\x80\xd0\x00\x5a\xd4\x34\x1a\x00\x84\xd6\x00\xae\xaf\x8b\x1a\x66\x86\xa7\xee\x4b\x50\x68\xc7\x8b\x01\x39\x1d\xb0\x10\xa0\x34\x74\x51\x9b\x26\x62\xb3\xac\xc1\x8c\x3e\x59\x65\xea\xa4\x94\xfa\x68\x91\xa9\xc3\x55\xae\xdf\x59\x65\xfa\x68\x91\xa9\xa3\x59\xa1\x0e\x4f\x8a\xea\xf0\x64\x5c\xcd\x4e\xc6\xd5\x7c\x91\xab\xb2\x94\xba\x2c\x33\xa5\xaa\x66\x29\xcb\x15\x9d\xc1\xf9\xe4\x9a\x6e\x00\xb6\x80\x0c\x17\x91\x31\x0f\x7f\xeb\xb7\x7e\x4b\x02\x00\xfc\xdd\xdf\xfd\xdd\x90\xf1\x0b\xd0\x1f\xf7\x38\x0d\x75\x36\xbe\x17\x82\xd8\x79\xec\x92\x89\xf5\xa2\x72\xe8\x33\x5f\x9d\x7d\x3a\x72\xb2\xb8\xfc\x18\x50\x14\xa3\x47\x48\x9f\x54\xdb\x1b\xb2\xf7\x26\x0d\x01\x08\x43\x7c\xea\x10\xfd\x21\x70\x8d\xe9\x87\xe8\x4f\xf3\xc1\x05\x5c\x5c\xc2\x29\x73\x9c\x86\x3a\x2d\xee\x2f\xc7\x2f\xa5\x41\x5d\xfa\xfb\xea\xe3\xd2\xd3\xc7\xdf\x55\x36\x34\x50\x42\x3a\x0c\x49\x31\x86\x2e\xc5\x08\xa5\x82\x31\xd7\x64\x5e\x07\x44\x85\x74\xa4\xf2\x93\x0c\xfb\xc7\x3e\xf6\x31\x99\xe7\x39\x5c\xbf\x7e\x1d\x3e\xfd\xe9\x4f\x2b\x47\x64\x45\x32\xd7\xce\xbf\x08\xdc\xe0\xeb\x1c\x00\x64\x0d\x4e\x44\x5e\x54\xb2\xd8\x5a\x35\x11\x94\xa5\xdc\xdd\x5a\x65\x7b\x5b\x2b\xb9\x37\x2e\xe5\xe5\x49\x29\x1f\x1a\x97\xf2\xf2\xb8\x94\xfb\x45\x25\xf6\xf2\x4a\xec\x65\x5a\x4c\xa5\x82\xa9\xd0\x62\x22\xa0\x06\x27\x00\x4d\xd4\x04\x7a\xe0\xc9\x7b\x1c\xb6\x6e\x00\x46\x0b\x38\xf0\x33\x74\x1f\x73\x8d\xcb\x81\xeb\x13\x65\x43\x8f\x2f\x0c\xe2\xc1\x34\x84\x31\x95\x89\x92\x01\x39\x0a\xa0\x01\x34\xed\x52\x94\x9e\x37\x91\x9a\x59\x25\xf5\x6c\x95\xa9\xe3\x65\xa6\x0f\x17\xb9\x3a\x38\x1b\xa9\xb7\xe7\x79\x75\x30\x2f\xd4\x9d\xd3\x42\x1d\xcd\x46\xd5\xf1\xac\xa8\x66\xf3\x5c\x2d\x17\xb9\x5e\xae\x32\xa5\x56\x99\x6e\x23\x41\xe8\x1f\x04\xc0\x0d\x5e\x56\x72\x6d\x1e\xb6\xd2\x72\xb9\x84\xcf\x7e\xf6\xb3\xea\x63\x1f\xfb\x98\x04\x00\xf8\x87\x7f\xf8\x87\x10\xe0\xf6\xd9\x4e\x60\xe8\x81\xd0\x92\xf6\x0b\xd2\x86\xe6\x7d\xaa\xed\xa7\xcf\x5c\xfe\x26\x86\x8e\xa3\xf5\xd9\xbe\x98\x36\x0c\xd9\x2c\x9f\xbe\x1c\xbd\x4b\x0f\x73\x1f\xb2\x8f\xb1\x3e\xcf\xd5\x3e\x58\xc7\x50\xfd\x86\x80\x9a\x58\xfb\x1c\xe3\x87\x62\xc7\x8c\xa5\x0f\xdd\xe3\x62\x92\x6b\xb0\xf8\x1a\xa8\xc7\x9c\x3c\xf3\x4d\x0a\xcc\x3f\xc5\x41\xb9\x64\x50\xbd\x52\x1a\x3a\xe4\x64\x7d\x9d\x11\xaa\x4b\xaa\x11\xf1\xb5\x23\x95\x13\xdb\x8e\x9c\x8c\x50\x7e\x2c\xbf\x50\xf9\x10\xdf\x18\xba\x54\x5d\xda\xf4\x4b\xbf\xf4\x4b\xf2\x5f\xff\xf5\x5f\x15\x80\xfd\x9b\x3d\xf4\x0c\x13\xc7\x97\x3e\x74\x59\xa7\xbd\xc6\x7b\x4f\xcc\xb5\x50\x20\x8b\x4a\xe6\x45\x25\xf2\x71\x29\x27\xdb\xcb\x6c\xba\xbd\xcc\x76\xb6\x17\xd9\xfe\x74\x25\x2f\x4f\x57\xf2\xea\xd6\x32\x7b\x78\x5c\xca\xcb\x45\xbd\xcc\xb3\x9b\x2b\xb1\x2b\x15\xec\x48\x10\x53\xa1\xa1\xdd\x77\xd2\x80\x13\x09\xd0\x07\x1a\x26\xcf\x05\x42\x30\x4d\x9d\xaf\x41\x34\xe1\x0f\x2d\xf8\xf2\x1a\xdd\x09\x12\x2d\xc1\xc9\x00\x96\x0e\x08\xd5\x54\x5d\x14\xc6\x51\x48\xf0\x59\x3d\x6c\xe3\x90\xad\x11\xf8\x61\xc0\x4d\x03\x2c\xb4\x01\x35\x73\x25\x60\xa6\x84\x3e\xa9\xea\xe8\xcc\xd1\xa2\x06\x33\x87\xf3\x51\x0d\x68\xce\x46\xd5\xc1\xe9\xb8\x3a\x38\x2d\xaa\xe3\xd9\x48\x9d\xcc\x47\x6a\xb9\xc8\xd5\x72\x9e\xab\xa5\x12\xa0\x34\x68\x10\x42\x94\x00\xd6\x9e\x18\xc5\x01\x17\xa4\x03\xfe\x6b\x5d\xe3\xf1\xf6\xf2\xcb\x2f\xab\x5f\xf9\x95\x5f\x91\x5f\xf8\xc2\x17\x62\x9c\x4a\xc8\x81\x82\x87\x36\xc5\x01\xfa\xca\xc5\x3a\xb1\x90\x6d\x59\xd7\xd6\x86\xea\x80\xeb\xe1\x03\x84\x1c\x6d\x48\xa7\x58\xd0\x18\xd2\xd9\xc7\x3b\x66\x0c\x84\xc6\x8c\x0f\x70\xba\xfa\x38\x94\x17\xd3\x7f\x29\xfe\x35\xd4\x8e\x6c\x7d\x5d\x9f\x43\xd3\x6b\x9a\x42\xc8\xd5\x55\x66\x28\x60\x88\x01\x2d\xc0\xe4\xc7\x38\xe0\x4d\x4e\xa0\x21\x4e\x35\x76\x22\xc7\x18\x20\x1f\x6d\x2c\x28\x08\xc9\x58\x17\xc4\x70\xcf\x52\x8c\x5c\xac\x41\xb6\x78\x9a\x83\xc5\x98\xa8\x8a\xef\xde\x02\x29\x64\x09\x48\xa2\xe7\x32\x53\x90\x8f\x4b\x99\x4f\x56\xb2\x18\x97\x72\xb2\xb5\x92\x3b\xdb\xcb\x7c\x77\x7b\x29\xf7\xa7\xcb\xec\xf2\xce\x32\x7b\x78\x6b\x29\xaf\x4d\xca\xec\xf2\xa8\x14\x97\x47\x4a\xec\x67\x5a\xec\x0a\x0d\x3b\x35\x40\x11\x39\xd4\x91\x99\xbe\xaf\xaf\x37\xe1\x36\x40\xa3\xb9\x6e\x9e\xc5\x44\x4c\x5a\x1e\x66\x3f\x4e\x03\x34\x80\x94\x05\x30\x4b\x40\x1a\x31\x10\x48\x4e\x0b\x7b\xea\x6b\xf3\x09\xb5\xb0\xd1\x85\x37\x42\x63\x65\xd4\x37\x3d\xe0\x02\x1e\xe0\xe3\x62\xe5\xc9\x47\x7b\x6b\x0c\xa0\x99\x37\x1b\x82\x4f\x2a\xa1\x8f\x96\xb9\x3e\x68\xa2\x32\x6f\xce\x8a\xea\xed\x59\xa1\xee\x9c\x8e\xaa\x83\xfb\x93\xf2\xf0\x2c\x57\xb3\x79\xae\xe6\xf3\x91\x9a\xcf\xeb\xfd\x33\x0a\x04\x94\x1d\x3f\x0b\xa4\x58\xc0\x06\xe5\x73\x9b\x7d\x7b\xe3\x96\xf9\x4a\x29\xd5\xc6\xc4\xd8\xc9\x90\x63\x48\x01\x3c\xae\xf2\xa1\x72\xb1\x20\xc2\xa7\x37\x30\x34\x2e\xba\x18\xf9\x94\x5f\x0a\x40\xf2\xe9\x19\xdb\x3e\x29\xa0\x91\x96\xa1\x3a\x70\x29\xd4\xe6\x94\x47\xaa\xaf\xa5\x72\x7c\xb6\x9d\xf6\xb5\xab\xac\x2b\xf5\x36\xe7\xf6\x08\x02\x0c\xa8\x30\xaa\x48\x6c\x4a\x45\x71\xa1\x41\xbc\x8e\x73\xdd\x44\x3d\x7c\x79\xa1\x7a\xb8\x68\x7c\x13\x20\x16\x71\x0f\xd1\x7f\x1d\xda\x90\xae\x9b\x48\x16\x3f\xee\x6c\x0d\x0a\x56\x68\x54\x05\x7f\xfd\xd3\x5c\x4b\x72\x8d\xc1\x4b\x2e\x9a\xaf\x6d\xcc\xa7\xc4\xe3\x52\x4e\xb6\x57\xd9\xee\x85\x79\xb6\xbf\x3b\xcf\x2f\x6f\x2f\xe5\xe5\xe9\x32\xbb\xb2\xb5\x92\x57\xc7\xa5\xbc\x36\xaa\xc4\xe5\x5c\x89\x7d\xa9\xc5\x9e\xa8\x37\xcc\x16\xcd\x17\x3b\xde\x93\x67\x31\x4c\x70\x25\xdd\x78\x69\x81\xee\x05\x41\x0d\x2d\x30\xf0\x6c\x43\x71\xf1\xc3\x3c\xed\xc8\x54\x2d\xc0\x6a\x47\x46\x5f\x1a\x95\xa1\xb0\xa2\x03\x52\x0d\x88\xd1\x5d\xd4\xa6\x05\x42\x58\x3e\x88\x1e\xa2\x69\x41\x19\xd8\x7b\x6f\x30\x30\xc2\x80\xaf\xc5\x65\xc2\xec\xa5\xd1\xaa\x89\xcc\x1c\x57\x52\x1f\xad\xa4\x3e\x58\xe6\xea\xce\x3c\x57\x77\x4e\x8b\xea\x8d\x59\x51\x1d\xdc\x1f\x57\x77\xee\x6d\x95\x87\xa7\x45\x75\x32\xcf\xf5\x6c\x91\xd7\x5f\x3a\x95\x99\xa6\x20\xc6\x02\x34\x24\x1a\x83\xc7\x65\x7b\x4d\x81\x8c\xd6\x1a\x6e\xdf\xbe\x0d\x9f\xff\xfc\xe7\x7d\xb6\x24\xd5\x41\xfb\xf2\x63\x40\x42\x6c\xf2\xbd\x6c\xf8\xae\x43\xfc\x5c\xf4\x9b\x02\x34\x29\x20\x31\x54\xc7\x54\xde\xeb\x82\xad\xf3\xb0\xd9\x1c\x7d\xac\xac\x14\xbf\x66\xae\x69\xf2\xca\xa1\x7b\x5c\x5c\x02\x5c\x0c\x43\x0e\x16\xa0\xcf\xc7\xd7\x10\x3e\x7e\xae\x32\xe0\x79\xe6\x03\x21\x43\xf8\xa7\xa4\x21\x13\x65\x93\x29\x16\xbd\x52\x5d\x36\x3d\x11\x7c\x74\xa9\xe0\x27\x5a\xc7\x50\x64\x85\x82\x15\xf2\x29\xb2\xec\x45\x56\x34\xe4\xb9\x12\x72\x5c\xca\xc9\xb8\x14\xc5\xb8\x94\x3b\x7b\x67\xa3\xbd\x4b\x67\xf9\xe5\xdd\x79\x76\x75\x67\x91\x5d\x9f\x2e\xb3\x47\x8a\x4a\x3e\x32\xaa\xc4\xe5\x4c\xc3\xbe\xd4\x62\x57\x68\x31\x01\x00\x29\xb4\x06\x2d\xf8\xe5\x17\xbc\x87\xc3\x5a\xde\x31\xd1\x0f\x00\x10\x78\x5f\x88\xb5\x31\x16\x3b\xe4\xc6\x51\xa3\x25\x20\x9a\x3a\xde\x35\x1a\x68\x41\x01\xf0\x65\x4c\x54\xc5\x12\x8f\x81\x02\xb8\x97\x91\x04\x66\x8e\x83\x32\x8e\x82\x6d\x94\xc5\xa5\x3c\x27\x83\xcb\x27\x00\xad\xbd\xef\x3d\xe0\x19\x68\x68\xbf\x70\x9a\x55\x52\x1f\x94\x52\x1f\x2e\x33\x7d\x7b\x3e\xaa\x6e\x9f\x14\xea\x47\xc7\x93\xf2\xcd\x7b\x5b\xe5\x9d\x7b\x93\xf2\xe8\x74\x5c\x9d\x2c\x33\x3d\x5f\xe4\x6a\x3e\xcf\xd5\x12\x00\x14\x34\x5f\x4a\x41\x37\x46\x2d\x40\xe3\xf9\x04\xbb\x17\x89\xc1\x51\x98\x9b\x37\x6f\xca\x57\x5f\x7d\xd5\x65\xb3\x00\xd2\xe7\xed\xd0\x79\x19\x1b\x35\xd8\x34\x58\x49\xd1\x37\xa6\x4d\xce\xbb\x9c\xaf\x9d\xd7\x79\xc1\x74\xe9\x31\x14\xb0\xd1\x32\x2e\x1d\x01\xe2\xfa\x25\x75\x5c\xc5\xb4\xa7\x45\x23\xc0\x6e\x5c\x27\x61\xa4\xa0\x18\xfa\x41\x8e\x08\xe9\x87\x75\xa4\xfc\x5d\x72\x80\x3c\x8f\xe9\x90\xd4\x49\x38\x14\xa8\xac\x33\xb0\xb8\xf2\xa9\xfd\x46\xe5\xb8\x64\x85\xe4\xb8\xda\x2b\x24\x3f\x05\x60\x79\xe9\xb9\x5f\x51\x36\x7a\xd1\x53\x64\x39\xb0\x02\xd0\x46\x57\xa4\xd6\x3a\xcf\xb4\x90\xa3\x4a\x14\x45\x25\x8b\x51\x25\xa6\x3b\x8b\x6c\xe7\xf2\x69\xb1\x7f\xe9\x2c\xbf\x7a\xf1\x2c\xbf\x3e\x5d\x65\x8f\x8d\x57\xe2\x46\x51\xc9\x6b\x99\x86\x6b\x52\x89\x5d\x01\xa2\x00\xc0\x0b\x2a\x75\x12\x64\xed\x03\xef\x07\xc1\xb1\x0a\x13\x23\xe8\xc5\x2e\x5a\xe7\x6f\x3f\xe1\x97\x59\x78\xde\x56\x6a\x22\x26\x5c\x08\xc6\xe2\x89\x40\x07\x30\xf9\x58\x02\x17\xd9\xc0\xca\xf9\x96\x76\x00\x3f\xb3\xa2\x26\x8e\x72\x9e\x65\xa4\x1e\x40\x0a\x95\xc1\xfa\x35\xca\x98\x3d\x36\x28\x32\x53\x2a\xa1\x4f\x2a\xa1\x0f\x56\x99\x7e\x73\x99\xa9\xdb\x67\x85\xba\x75\x5a\x54\x3f\xba\x37\x29\xdf\x3c\xdc\x2e\x0f\xee\xec\x2c\x0f\x97\x99\x9a\xad\x6a\x20\xb3\x34\x87\xf0\x01\x58\x5f\x2f\xd1\x6b\x0c\x56\xac\xf1\x4c\x97\x97\xcc\x17\x4a\x0f\x3f\xfc\xb0\x7c\xeb\xad\xb7\x86\x38\x73\x57\x4a\x7d\x43\x1e\xc2\x23\xc6\x2e\xf9\x78\x40\x04\x4d\xac\x7e\xe7\xd1\x66\x43\xea\x39\xd4\x56\x87\x74\xf0\xd1\x6d\x02\x30\xc5\xf0\xf6\xe9\xc9\xe5\xc5\xea\x0e\x00\xfd\xcf\xa1\x81\x10\xe0\xa4\x48\xbe\x0b\xec\xe0\x7b\x2e\xb9\x3a\x2f\xc6\x31\xc6\xa2\xb2\x46\xa7\x60\xce\x00\x00\x20\x00\x49\x44\x41\x54\x54\x5e\xeb\x0c\x6a\xae\x4d\x42\xfa\x84\x78\x73\x20\x82\xeb\x40\xee\x79\x6a\xbb\xfa\xf4\x19\xd2\x27\x9c\xae\x43\xda\xc0\xe4\x01\x57\xfe\xc2\x85\x0b\xf2\xb9\xe7\x9e\x83\xf7\xbe\xf7\xbd\x2c\x50\xc1\xc9\xf1\xa5\x0f\xb7\x57\x25\x17\x0a\x64\xae\x44\x91\x2b\x51\x6c\x2f\xb3\xe9\x95\x93\xd1\xfe\xd5\x93\xe2\xda\xc5\x79\x7e\x6d\x7b\x91\x3d\x3e\x29\xe5\x8d\xa2\x12\x8f\xe5\x95\x7c\x2c\x53\xb0\x27\x00\x26\xc6\x3b\x0b\xb0\xf7\x90\x38\xf6\x5a\x30\x91\x0b\x8d\x1c\x2d\x8a\x64\x90\x48\x81\x59\x76\xe9\xca\xd8\x10\xa7\xdb\x73\x82\xc0\x84\x69\x1b\xc4\xc3\x06\x44\x88\xb7\xe1\xd5\xe6\xd9\xf7\xad\x8a\x08\x5e\x59\x75\xf7\x2c\x6d\xc5\x04\x3b\xec\xfa\x85\x31\x07\x6d\x27\x1a\x09\x72\x15\xee\xf3\x0e\x2f\xc9\xf5\x64\x82\x5e\x2a\xa1\x4f\x4a\x09\x07\xa5\xd4\xb7\x17\xb9\xba\x75\x36\xaa\x5e\x3f\xda\xaa\xfe\xeb\xed\x9d\xe5\xed\xdb\xbb\xcb\xc3\xd3\x71\x75\x52\x66\x6a\x5e\x4a\xbd\xac\x1c\x20\x86\xfc\x03\xe6\xaf\xf5\x1b\x50\x14\xc8\x5c\xb8\x70\x41\xde\xbf\x7f\x3f\xc5\xc1\xb9\xec\x95\xef\x45\xc4\xc5\x2f\xc6\x79\x73\x7c\x62\x81\x08\x2e\x17\xf2\x3d\x31\xfa\xb9\x78\xd3\x32\x38\x6d\xca\x76\xc6\xc8\x0f\xc9\x1b\x02\xe0\x62\x6c\x39\xe7\x4f\x7c\xbc\x42\xbc\x39\x9d\x86\xf2\x66\x13\x06\x2e\x98\x71\x68\xd0\x50\xc6\xa1\xeb\x4d\x0c\xf4\x10\x62\x73\x25\xda\xd9\xf8\x7a\x28\xd0\xe0\x64\xc4\xe8\xe7\xcb\xf3\x81\x27\xd7\x80\x8d\x1d\x94\xae\x3a\x6d\x32\x2f\x06\xfc\x85\xca\x39\x69\xf3\x3c\x97\x65\x59\xb6\x74\x78\x29\xc8\xf5\x25\x10\xb9\xee\x01\x15\xad\xb5\x6c\x36\xc5\x4a\x59\x9f\x7f\x52\x5c\x98\xe7\x93\xeb\x47\xe3\xcb\x0f\xdf\x2f\x1e\xbb\x74\x36\x7a\xcf\x74\x99\x3d\x39\x2e\xc5\xcd\xbc\x12\x8f\x64\x4a\x5c\x96\x00\x3b\x02\x03\x0c\x14\x55\x20\x5f\xf9\x22\xd0\x00\x6e\xaf\x0b\x9c\xe3\x74\x87\x13\x68\x64\x85\x73\xb8\x3d\x80\x64\x71\x6b\x36\xd5\xb6\x40\x04\x45\x48\x22\xf8\x77\xd1\x0c\x0a\x66\xf8\xe4\x05\x20\x9e\x4d\x37\x3e\x9e\x16\x1d\xb7\x2c\x04\xe1\xc2\xbe\xbd\x45\xb1\xc2\x31\x50\x6a\x96\x96\x8e\x56\x99\xbe\xb5\xcc\xd5\xab\xb3\x51\xf5\xfd\xfb\xe3\xea\x07\x6f\xef\xac\x5e\xbf\x7d\x71\xf1\xe6\xc1\xf6\xea\x78\x99\xa9\xa5\xae\xcf\xa4\x59\xba\x40\x0c\xf3\xe9\x35\xfe\x0b\xdc\x7d\xc4\x8f\x41\x0e\x9d\x9b\xb1\x3c\x36\x51\x6e\x08\x5d\x48\xff\x4d\xf3\x4c\xf5\x0b\x31\x69\xc8\x0b\x9d\xc9\x87\x35\xf5\x39\xcf\xb1\xb0\x4e\x5b\x05\xcb\xc6\xbd\x66\x6c\x48\xd8\x86\x79\x0f\x19\x50\x43\x74\x1c\x3a\xb0\xd6\xe1\x3d\x74\x40\xb9\x68\xd7\x31\x5c\x31\x60\x2b\xf6\x2d\x83\xbe\xd1\x44\xeb\xf4\xa7\x7f\xfa\xa7\xf2\x33\x9f\xf9\x0c\x05\x2e\xb2\xf9\xa1\x3c\xfa\xdb\x3d\x00\x2e\xa0\x52\xef\x5d\x31\xa7\xc5\xe6\x12\x44\x7e\x61\x9e\x4f\x9e\x7c\x67\xeb\xea\xb5\xe3\xe2\xc9\xdd\x79\xfe\xf4\x74\x29\x9f\x2a\x2a\xf9\x44\x5e\x89\x6b\x52\x8b\x3d\xd1\x1d\xe6\xd6\x4b\x3e\xf0\x10\xe5\x78\x81\x82\x1d\x97\x2f\xc7\x48\xc7\xed\xf0\x87\xf0\x8e\x5e\xc2\x19\x90\x3a\x99\x38\x56\xe3\xa0\x69\xc0\x9f\x91\xc9\xca\xc7\x34\x64\xf9\xac\xf7\x39\x36\xaa\x9c\x2f\xfa\xc5\x6d\x48\xc6\xca\x69\xa4\x8c\xf9\xba\x8b\xaf\x49\x57\x1f\x25\xf5\x71\x25\xf5\x9d\x65\xa6\x5e\x9f\xe7\xea\x95\xd3\x42\xfd\xe7\xe1\xf6\xea\x95\x1f\x5d\x5c\xdc\xfa\xe1\xde\xfc\x68\x31\xd2\x73\x68\xc0\x0a\x80\xf5\x95\x12\xbe\x06\x74\x8d\xe7\x47\x6f\xae\xbc\xfc\xf2\xcb\x8a\xf9\xfd\xa4\x98\x17\x4a\x8e\xdf\xa6\x5e\xdc\x58\x5d\x37\x90\x1e\x94\xde\xa9\xc0\x2a\x64\x67\x63\x5e\x34\x63\x74\x4d\x01\x07\x31\xb6\x3f\xd5\x4f\xac\x9b\xd6\xf6\x99\x02\xfa\x83\x80\xbb\xe7\x1c\x0e\xbe\xc7\xf4\x9c\x72\xa9\x51\x02\xee\xde\x57\x11\x4e\xbe\x4b\x97\x18\xfe\xb4\x6e\x31\xfc\x0d\x4d\x8c\x51\xe0\x92\x6b\x20\x52\xde\x54\x1f\x5f\x19\x1f\x5f\x97\x3e\x21\x20\xe2\xa3\x77\xf1\xa7\x63\x0b\x20\xa2\xbf\xf6\xf6\xf6\xe4\xef\xfc\xce\xef\x00\x00\x80\xf9\x8d\x20\x87\x2e\xd2\x6c\xb6\x35\x79\x0d\x60\xc1\xc7\xd9\xb7\x60\x25\xab\x44\x7e\xe9\x2c\xdf\xb9\x79\x38\xb9\xf6\xf0\xfd\xe2\x89\x0b\xf3\xfc\xe9\xe9\x4a\xbe\x6f\x5c\xc9\x1b\x59\x25\xae\x4a\x0d\xbb\xa2\xf9\x34\x19\x3b\x42\xe3\xe1\x04\xd9\x6b\xc2\x6d\x3a\x35\x4b\x2f\xdc\xeb\xbf\x1b\x24\xd8\x9b\x2d\xdc\x80\x48\x77\x9e\xb7\xae\x6c\xe3\xb4\x6d\xee\x02\x2f\x0f\xe9\x66\x41\x0a\x6d\x4e\x71\x39\xea\x6e\xe9\xa8\x93\x55\x3b\x6b\xdb\x5d\xb3\x4b\x32\xa0\x5b\x60\x01\xe0\x8f\x23\x69\x52\xcf\xee\xb9\x15\x8e\x62\xf7\xbb\x70\xfb\x62\x50\x11\xab\xee\x80\xca\x38\x03\x5f\xcd\xe6\x69\xc1\x68\xd1\xa7\x61\x74\x21\xe0\xa7\xeb\x0f\x28\x35\xc0\xbc\x92\xfa\x70\x95\xe9\x37\x6b\x10\x53\x7d\xf7\xee\xb4\xfc\xf6\x6b\x97\xe6\xaf\xbc\xba\x3f\x3f\xac\xa4\x2e\x41\x40\xd9\x44\x5b\x4a\x80\xf6\x9a\xdb\x1b\x63\xf8\x2a\xf2\x17\x00\xba\xe8\xcb\xef\xff\xfe\xef\xcb\xbf\xfe\xeb\xbf\x4e\x9d\xfb\x94\x77\x8c\x5d\xf3\xd9\x76\x9f\x1d\x0d\x39\x76\x60\x9e\x6f\x52\x7f\x57\x19\x97\x9c\x14\xa0\x17\x92\x1b\x02\x97\x3e\x80\xe1\x4a\x43\xfb\x8c\xea\xc1\x95\x89\x7d\x31\xf5\xe9\x42\xe9\x5c\xed\xe9\x6a\x4b\x2b\x89\x00\x81\x0b\x85\xc5\x34\x44\x28\xb9\x90\x6d\xa8\x4c\xa8\xe1\x62\x75\x8a\x71\xee\x31\x3c\xd6\xa9\x77\x0a\xbf\x75\x11\xf0\x50\x80\xb7\x09\xda\xc1\x89\xd9\x70\x6b\x01\x14\xe8\x80\x09\xbe\xb6\x80\x0a\x00\x48\xa1\xa0\x78\x68\x36\xda\xb9\x7e\x34\xb9\x76\xf5\xfe\xe8\xa9\xdd\x45\xfe\xf4\xf6\x42\x3e\x31\x2e\xb3\x1b\xb9\x12\x97\x9b\xfd\x2a\xcd\x59\x2a\xc2\xfe\xf2\x87\x2c\x07\xf5\x9c\x94\xd9\xd7\x82\x9c\x6c\xe8\x8d\x1f\xc0\x91\x87\x32\x39\x67\x4b\x1d\x37\xf6\xec\x2e\x40\x84\xf5\x14\xc8\x99\x9b\x64\x03\x81\x76\xc7\x4d\x7d\xef\x89\x82\x58\xd8\x89\x94\xc3\xbc\x59\x5d\x80\xd7\x97\x7b\x88\x63\x35\xec\x92\x16\x39\x9b\xc6\x1b\x41\xa2\x4b\x4b\x0c\xad\x5d\x2f\x1b\x08\xf9\x74\x04\x70\xc9\xd5\x00\xd0\x9e\xf2\x3b\xaf\x84\x3e\x5c\xe6\xea\xf6\x6c\xa4\xbe\x7f\xbc\x55\x7e\xf3\x9d\x69\xf9\xdd\x5b\x7b\xf3\x5b\x6f\x5d\x58\x1e\x2f\x73\xbd\x84\x1a\xb8\x94\xe6\xd0\x3b\xc7\x3f\x30\xd7\xcc\xcf\x10\x80\x52\x0a\x70\x84\x12\xa5\x58\xe7\x1b\x5b\xce\xf5\x3c\x36\x2a\x10\xe3\xbc\xb8\xbc\x10\x60\x8a\x79\xb9\x0e\xe9\xe1\xd2\x85\xca\xa4\xfc\x43\xfa\xc7\xbe\xe8\xba\xea\x15\x93\x62\xc1\x1f\x27\x2b\xb6\x9c\x0f\x84\xf8\xee\x43\x2f\xc6\x41\xd9\x66\x9e\xb9\x3a\x38\x46\x40\xec\xc0\xf3\xa5\x10\x8f\xd0\x40\x0c\x81\x90\xd0\xe0\x0b\xd1\x3d\xa8\x34\x04\x28\x0d\x05\x4f\x43\xea\x99\x62\x8c\x7c\xa8\xdb\x99\xfe\xe0\x0f\xfe\x40\xfe\xd5\x5f\xfd\x15\xf7\x0b\xcc\x2e\xc0\x42\xff\xb5\x80\x45\x6b\x9d\xef\x2e\xf2\xc9\xa3\xf7\xc6\x57\xaf\x9c\x14\x4f\xec\xcf\xf2\xf7\xee\xce\xf3\xa7\xb6\x56\xf2\xe6\xa8\x92\x75\x64\xa5\x3b\xfc\x4d\x72\x6f\xf2\xc6\x5d\xe2\xf8\x87\x75\xb2\xac\x45\xc7\x27\xd7\xbe\x90\xae\x7c\xe7\xf4\xbb\xd8\x89\xdf\x11\xdb\x6f\xfb\xd4\x71\xd3\x2f\x8f\x34\x2a\xd4\xe9\xed\xab\x6b\x47\xa3\x41\x68\xc1\xfe\x2e\x51\x48\xaf\x8e\x1e\x9c\xcb\x35\xbd\x36\x6b\x0a\xb4\x35\xc0\x08\x10\x85\x5e\x38\x00\x13\x97\xec\x12\x14\x4c\x41\x7b\x56\x4c\x93\x17\x01\x74\x82\xe2\xa0\x53\xb6\xf9\xbc\xbd\xd4\x00\xa5\x12\x70\x52\x66\xea\x60\x9e\xab\x5b\x27\xe3\xea\x95\x7b\x93\xea\xdb\x87\xdb\xab\xef\xbf\x71\x61\x71\xfb\x60\x67\xd5\x82\x98\xe6\x9f\x42\x11\x19\xe7\x5e\x18\xfa\x49\xb5\xe3\x50\x3b\x53\x26\xf6\x45\x30\x75\x3e\xa7\xbe\x94\xa6\x38\xe6\x58\x07\xeb\x8a\x70\x60\x1e\x3e\xfe\x29\xb4\xb1\x11\x09\x5f\x5f\x6c\x5a\x17\x57\xe2\xda\x2f\xe6\xa5\xdf\xa5\x8b\x6f\x6c\x84\x02\x1d\x9c\x8f\xe7\xe4\xf5\xfc\x7e\xda\x9c\x77\xa7\xa1\x91\x89\x54\x54\x38\xb4\x4c\x0c\x4f\xda\x68\x9c\x8c\xf3\x00\x0e\xb1\x83\xfd\xc7\x0d\xaa\x5c\x3a\xa4\x4c\x94\xde\xc4\xfa\xd0\x87\x3e\x24\xbf\xf4\xa5\x2f\x29\x03\x58\x5e\x7c\xf1\x45\xfc\x8b\xcb\x78\xd3\x2d\xde\xa3\x02\x82\x7c\x0d\x04\x35\x50\x91\x02\x44\x3e\x2e\x65\xf1\xf0\xfd\x62\xef\xca\xc9\xe8\xc6\xfe\xd9\xe8\x99\x4b\xb3\xfc\xe9\x9d\x45\xf6\xc4\xb8\x94\x8f\xe4\x4a\xec\x0b\x0d\x53\x03\x56\x6a\xd6\xe6\x0b\x9c\xce\x49\xb5\xfb\x1e\x8c\xbf\xb4\x96\x22\xf0\x97\x3c\xe8\x4b\x0f\x20\x60\x02\xa0\xf7\xcc\x3c\x72\xee\x0b\xb5\xf8\xc5\x7f\xed\x82\x38\x80\x89\x4c\x00\x10\xa0\xc0\xe8\x4a\xaf\x63\x5d\x73\x7f\x99\xa8\x5f\xa9\xb6\x3d\xc8\xd7\x30\x02\x9f\x1f\x43\x36\xc9\xb6\xcb\x47\x5a\x60\x9c\x05\xed\x31\xff\xa0\x9b\xe8\x12\x69\xf3\x76\xbd\x06\xc0\x3e\xd0\x0e\xda\xe5\x28\x4c\x62\x12\xdd\x3b\x8d\x37\x54\xeb\x86\x31\x77\xe2\xb0\x01\x74\x18\x9d\x75\x9f\xb4\xd3\x98\x56\xa3\xb6\x75\x48\x5e\xab\x79\x59\xff\xbe\x92\x3e\x5e\x65\xfa\xce\xd9\x48\xbd\x7e\x6f\x52\x7e\xff\xee\xb4\xfc\xcf\x83\xed\xe5\x2b\x77\x76\x56\x6f\x1e\x4d\xcb\x93\x4a\x6a\x03\x60\x68\x14\xa6\x6c\xf4\xe6\x0e\xba\xb3\xe6\x65\xc4\x26\x5e\x9c\xd6\x79\xcb\xef\xc9\xf6\xf0\x06\x72\x1d\x53\x9e\xca\x4b\x01\x0b\x31\xcf\x53\x5e\xc6\x53\xea\x8c\x93\x2f\x10\xc0\xb5\x4d\x0c\x40\x1a\x02\xc8\x42\x41\x89\x10\xd8\x70\xe9\x18\xa3\x53\x28\x71\x6d\x2b\x01\xec\x3d\x2e\x58\x81\x50\x4a\x89\xc8\xf8\x94\x0a\x21\x3f\x17\x1d\xc7\x3f\x86\x0f\xd5\xdf\xa5\x53\xaa\x6c\x5f\x59\xd7\x7d\x4c\x8a\x1d\x40\x94\x7f\xcc\x75\xea\x7d\x6c\x3f\xb9\xea\xd0\xa3\x79\xe1\x85\x17\xe4\xbf\xfc\xcb\xbf\x28\x80\xde\x81\x71\xf8\x77\x84\xe8\x61\x70\x00\x68\xef\x8a\xd0\x90\x4b\x0d\xf9\xa8\x92\xc5\xee\x3c\xdb\x79\xe8\x74\x74\xf5\xd2\x59\x7e\xf3\xca\x49\xf1\xd3\x17\xcf\xf2\x27\xb7\x4a\x79\x73\x54\x89\xab\x52\x89\x1d\x51\x7f\xba\x2c\xa9\xc3\x76\x85\xf9\x3b\x87\x66\x42\x06\xda\xda\xeb\xc1\x95\x61\x0a\x23\x67\x15\xff\xb6\xce\x2e\x89\xf4\xe4\xd1\xf3\x5f\xe2\xf8\x02\xa3\x0f\x0b\x74\xcc\xff\x1b\x04\x81\x41\x99\x15\x95\xa0\xba\x52\xb0\x17\x50\xce\x80\x92\x3e\x98\x43\x3d\xa0\x1b\x56\x5c\x1b\x7a\xf8\x5b\x8f\x98\xc8\x8f\xb7\x7d\xf1\xda\x12\x2d\xeb\x08\x37\xb9\xf4\x33\x40\x85\xf2\xc7\xd8\x07\x40\x2f\x95\xa8\xf7\xc3\x2c\x32\x7d\xeb\x64\x5c\xbe\xf2\xce\x76\xf9\xed\x77\xb6\x97\xdf\x7d\x67\x7b\x75\xeb\x60\x7b\x75\x78\x96\xab\xa5\xae\x3f\xad\x36\x00\x86\x5b\x4e\xa2\x3f\x0c\x09\x80\xe6\x9d\x01\x30\x2f\xbc\xf0\x82\xbc\x7b\xf7\x2e\x7c\xf3\x9b\xdf\x34\xcf\x43\x6f\xc6\x21\x7b\x84\x93\xcf\xf6\xa6\x3a\x5e\x97\x03\xe3\xf4\x0e\xd9\xf9\x58\x3f\x82\x53\x0c\x78\xf0\xb5\x09\xa7\x97\xcf\xb7\x50\x1a\xaa\x97\x0b\xd8\xb8\xea\xc3\xf9\x2a\x9f\x2e\xf8\x99\x4b\xa7\x14\x7b\xcf\xf1\xf5\x81\xce\x60\x1f\x08\x70\x37\xb2\x6b\x10\xc4\x0c\xde\x98\xc6\xa4\x4a\x85\x92\xcb\x89\xa6\x94\x89\x41\xc4\x31\x28\x14\xcb\x4e\x41\xae\x21\xc0\xe3\xd3\x21\x54\xe7\x50\xfb\xc4\x1a\x8b\x58\x04\x1e\xd2\x37\x2a\x51\xc0\x62\xfe\x32\x51\x15\xfc\x2f\x07\x0d\xf9\x48\x89\x7c\xba\xcc\xa6\x97\x66\xf9\xfe\xfe\x6c\xf4\xd8\x43\xb3\xd1\x93\xfb\xa7\xf9\x7b\x2e\x2c\xf2\x27\xc7\xa5\xbc\x29\x35\xec\x49\x0d\x13\x00\x91\x73\xfe\xb3\x96\x01\x40\xf7\x4e\x98\x08\x0c\x4e\xf8\x2d\x9a\xdb\xa4\x0a\xd6\xbd\xf5\x8b\x3e\xd0\x73\x58\x8e\xc4\x39\xd1\x16\x28\x30\x1b\x4d\x01\x3c\x3a\x90\xf3\x5e\xfa\x9a\x11\x39\x24\xd2\xd3\x2e\x85\x99\xc8\x03\xd8\x51\x27\xcc\x81\x8b\x0b\xc5\x2e\xe5\xc4\x80\x08\x8c\x1f\x62\xca\xf2\x72\xfa\x67\xd2\xb0\x74\xcc\x67\xd2\xd1\x40\x27\x42\x8f\x96\xc6\xbf\xdc\xa6\xea\x73\x62\xe0\x78\x95\xa9\x37\xcf\x0a\xf5\xca\xdd\xad\xf2\xbb\x6f\xef\x2c\xff\xf3\x60\x7b\xf5\xca\xdd\xad\xf2\xe0\x74\x5c\xcd\x16\x0d\x88\x69\xf6\xc3\x28\x40\x9b\x7a\xa1\x9b\x8b\x0a\xc0\xfa\xd5\x6a\x0b\xc0\x7c\xf2\x93\x9f\x94\x9f\xfb\xdc\xe7\x42\x8e\xcd\xe4\xc5\xd8\xd2\x10\xc8\x01\xc7\x73\x97\x03\xa7\x7a\xb8\xe4\x85\x9e\xc5\xbc\xa4\x51\x39\xb1\x36\x2d\x06\x0c\xa5\xfa\x38\x1f\x7f\x5f\xd9\x21\x76\x38\xd6\x9f\xfa\xe4\xfa\xf8\x85\x5e\x80\x7d\xb4\x6c\x9b\xd2\x88\x0b\x66\x98\x3a\x30\x39\x94\x44\x95\x72\xf1\x8b\xa5\x0b\x01\xa2\x90\x9e\xc0\x5c\xbb\xca\xc5\xea\x10\x5b\x76\xd3\x29\x04\x26\x20\x52\x97\x54\x9d\x63\xe8\x83\x34\x64\xd3\x6d\x0b\x58\xcc\x5f\x26\xd2\x52\x9f\xb7\xa2\xa0\x18\x55\xb2\xd8\x59\xc8\xe9\xde\xd9\xe8\xf2\x95\xd3\xd1\xcd\x2b\x27\xc5\xd3\xfb\xb3\xfc\x7d\x5b\xab\xec\xc9\x51\x25\xae\x09\x2d\x76\x05\xf9\x84\x19\xff\x26\x0e\xde\xc3\x01\xe0\x78\xd3\xe6\x7c\x5c\xf3\xda\x4f\xa3\x1c\x1d\x68\xe0\xf7\xc2\xd8\x40\xc1\xb5\xfc\xc3\xbb\x3c\xfb\x13\x5f\x7c\xdd\xa5\xa0\xa3\xb4\x80\x0f\x0f\xaa\x38\x20\x44\x23\x15\x00\xf4\x0c\x98\xae\xde\xa6\xf6\x00\x82\x2c\xab\xf1\xfa\xf5\x40\xa4\xb3\x5d\xba\xe7\x00\xb4\x35\x6d\x2d\x5c\xbc\xe9\xd7\x40\x6e\x2d\xb8\x27\x7e\x60\xe6\x66\x11\x17\x03\xf3\x69\x50\x8f\x53\x5d\x6a\x80\x79\x29\xf5\xe1\x32\xd7\xaf\xde\xdb\x2a\xff\xe3\xed\xed\xe5\x7f\x1e\x6c\xaf\x5e\x3d\xdc\x5e\xdd\xbe\x3f\xae\x8e\xcf\x46\xf5\x21\x77\x40\x7e\xfc\x11\x01\x1a\xe7\xcf\x0c\x00\xf4\x96\x90\x5c\x2f\xa4\x31\x36\x11\x18\x3a\x9f\x9d\x8a\xb1\xf7\x21\x3e\x29\x3a\xc7\x82\x25\x97\x7f\xf3\x95\xf5\xc9\xc1\xbc\x29\x7f\x57\x39\xaa\xd7\x90\x7c\xca\x9b\xa6\xa1\x7d\x15\x0b\xf2\x62\xf8\xb9\xfc\xb3\xaf\x3f\xad\x88\x8b\x8f\xa1\x0b\x98\x84\x00\x0b\xa5\x89\x71\xb0\xbe\xfc\xd4\x01\xe3\x1b\x88\x1c\xbd\x8b\xcf\x26\x53\xec\x1b\x42\x6c\x99\x75\xcb\xc6\x0c\xd2\x10\xa2\xa6\x74\xed\xf5\xbb\xdf\xfd\x6e\xf9\xf0\xc3\x0f\xc3\xff\xfc\x9f\xff\x93\x6e\xb8\x95\xa4\x2c\xbb\x77\xa5\x01\x2e\xb9\x54\x90\x4f\x4a\x39\xd9\x99\xe7\xbb\x97\xce\xf2\xab\x57\x4f\x46\x37\xae\xd6\xcb\x41\xcf\x4e\x4a\xf9\x64\x5e\x89\xab\xcd\x71\xfb\x32\xf6\x48\x7c\x68\x9f\x85\x0f\x72\x33\x91\x0f\xee\xeb\x15\xfa\x69\xb4\x55\x06\x2d\x83\x18\xf7\x6e\xfe\x6f\xd3\xd9\xf7\xd8\x29\x72\x4b\x5a\x9d\x3e\x60\xfd\x8e\x51\x1f\x10\x74\x57\x74\x89\x2b\x74\xdd\xde\x13\x00\x47\xdb\x94\x03\x70\x4e\x77\xcc\x1c\xca\x37\x6c\x2f\x4f\x42\xea\x85\x49\x5c\x20\x31\x04\x35\xc2\x9a\x06\x81\x9a\x6b\x39\x89\x53\x93\x3c\x03\x80\xb2\xf9\x11\xc8\x5b\xa7\x45\xf9\xad\x83\xed\xd5\x37\xdf\xbe\xb0\xfa\xfe\xdb\xdb\xcb\x5b\xf7\xb6\xaa\xa3\xd9\xa8\x9a\xad\xb2\x1a\xc0\xe0\x4f\xab\x01\x00\x10\x88\x01\xb0\xe7\x6d\x1b\x8d\x79\xf9\xe5\x97\xd5\xbb\xdf\xfd\x6e\xf9\x83\x1f\xfc\x20\x06\x18\xe0\x67\x94\xa7\xeb\x59\x2a\x88\xf1\x01\x80\x4d\xbc\xb4\xf9\x74\x8c\xa1\x5d\x37\xf9\xea\x6d\xe4\xac\x4b\x13\x5b\x36\xd4\xc7\x29\xed\x99\x12\x1c\x18\xe2\x6b\x5b\xe0\xc2\x09\x08\x31\x8c\x75\x70\xa9\x9d\xec\x6a\x54\x20\xd7\x80\xf2\xd6\xe1\x8f\x79\xf8\x3a\xcf\xf5\x7c\x68\x1d\x53\x79\x87\x00\x5d\xaa\xec\x50\x5d\x53\x78\xf5\xf8\x5e\xbb\x76\x4d\x3e\xf3\xcc\x33\xf0\xd4\x53\x4f\x59\x05\xcc\x29\xb7\xf8\xe8\x7d\xb0\x41\x4b\x77\xf6\x8a\x86\x3c\x53\xa2\x18\x57\xa2\xd8\x9d\x67\x7b\x57\x4e\x8a\x6b\xd7\x8e\xc7\x4f\x5c\x3e\xcd\x7f\x76\x67\x91\x3f\x3b\x2e\xe5\xcd\x4c\x8b\x7d\xd1\x9e\xb9\x82\xe4\x04\xdf\xe0\xbb\x37\x6a\xeb\x6d\xdd\xbf\x92\xc0\x94\x88\x7b\x12\xe2\xc6\x2f\x19\x38\x00\x95\x03\x48\xd0\xbb\x78\x40\xd0\x97\x1e\x5c\x7a\x21\x20\xce\x55\x0e\x1f\xee\x66\x6d\x94\x45\xeb\x3f\xf5\x6f\x02\xb9\xbe\xe6\xb1\x3d\xbd\x55\x77\x06\x04\xd0\x9f\x42\xa8\xe9\x3b\x42\xbc\x4c\x83\x15\xc6\x4b\x66\x6d\x5c\xa7\x95\xd9\xc0\x06\x61\xa2\x49\x4d\xe4\x09\x84\x55\xd6\x6e\x03\x0d\xda\x00\xd6\xae\x38\xd3\x8e\x80\x1b\xa7\xad\xb3\x46\x60\xb7\x55\xa5\xad\x86\x06\x05\x30\x5b\x65\xfa\xf6\x59\x51\x7d\xeb\xee\x56\xf9\x8d\xb7\x2e\x2c\xbf\xfd\xe6\x85\xe5\xad\xc3\x69\x79\x38\xaf\x01\xcc\x5c\x0b\xef\x17\x49\xf4\xb7\x90\xf0\x19\x31\xf0\xcf\xff\xfc\xcf\xf0\xbd\xef\x7d\x2f\xd5\x59\xc5\xe6\x73\xcf\x87\x38\xce\x98\x37\x79\x57\xf9\x21\x20\x64\x13\x2f\xb2\x21\x5d\x36\xe5\x47\x43\x72\xb9\x97\xfc\xd4\x17\xd4\x75\x74\xf4\xd5\x33\x08\x26\x05\x7a\x00\xa4\x10\x4e\x31\x51\x0c\x5f\x0a\x45\x3a\x52\x22\x1f\x31\x4e\xdf\x27\x93\x2b\x17\x42\xa0\x9c\x1c\x5f\xfe\xda\x88\x32\x81\xd6\x57\x36\x86\x4f\xec\xdb\x54\x6c\x5f\xc1\x27\x3e\xf1\x09\xf9\xf9\xcf\x7f\xde\xfa\x42\x08\xfd\xa0\x21\x00\x58\x3f\x66\x28\xf1\x3d\x34\xfb\x57\x32\x0d\xf9\xb8\x94\xd3\x8b\x67\xa3\xdd\x47\x8e\x8b\x6b\x8f\xde\x1b\xbf\xef\xd2\x2c\xff\xb9\xe9\x52\xbe\x3f\x57\xf2\x31\xa9\xc5\x0e\x5d\x3e\x01\xc7\x7d\xef\x37\x7d\x9a\xff\x8b\xc6\xeb\x68\xe3\x40\x63\xcb\x74\x61\xfc\x56\x96\x3b\xb2\x63\x2f\x6f\x70\x07\xd7\x79\x9d\x7d\x93\x47\xaf\x3b\x7e\x24\xea\x81\xc0\x01\xd6\xbb\xd5\xb3\xf7\xdc\x3e\xf2\x9f\xd3\xbb\x95\xab\x01\x34\x73\x60\x1c\x5f\x77\x5e\x4f\x67\x72\x44\x22\x58\x3e\x8d\x42\xed\x57\x3f\xc0\x14\x44\x25\x52\xe2\x39\x5c\x5f\x44\x1c\x52\xcc\xf2\x70\xb5\x87\x3d\x96\xe2\xf4\x68\xf3\xc8\x20\x50\x00\xcb\x4a\xea\x83\xf9\xa8\xfa\xce\xbd\x49\xf9\xd5\x3b\x17\x56\xff\x7e\x7b\x77\xf1\xfa\x9d\x9d\xd5\xc1\xd9\xa8\x9a\x95\x99\x9e\x6b\xb0\x36\xf3\x5a\x4b\x48\xd0\xb2\xb1\x52\x7b\x6f\x96\x91\xc6\xe3\xb1\x5c\x2c\x16\x21\xbb\x32\xd4\x8e\xa7\x3c\x07\x86\xd6\x95\x52\x64\xc4\xf0\x48\xe1\xcb\xe9\x39\xa4\xce\xb1\xd7\x3e\x7d\x43\xba\xc7\xf0\xc5\xf5\x02\x08\xd7\x35\xa4\x53\x08\x9c\x7a\x79\x89\x08\x22\xaa\x28\xa5\x0f\x01\x19\xaf\x93\x63\xca\xc4\x0c\xca\x10\x60\xe2\x74\xa3\xe5\xb9\x32\x29\x83\xda\x37\x49\x29\xbf\x94\xc1\xe4\xe2\xed\x42\xa3\x9b\x4e\xa1\xbe\xc3\x34\xbd\xe7\xbf\xfd\xdb\xbf\x2d\xaf\x5c\xb9\xe2\xfb\x75\xe6\xf6\x1f\x39\x92\x3f\x87\xfa\xf7\x82\xf2\x71\x29\x27\x0f\x9d\x8e\xf6\x1e\x3f\x9c\xdc\xb8\x76\xbf\x78\xdf\xde\x59\xfe\xa1\xe9\x32\x7b\x2e\xd3\x70\xb5\xf9\x8c\xd9\xda\xb3\x52\x5b\x74\xd1\xbd\x2d\x33\x9e\x47\x13\xd7\x81\x7f\x80\xd0\x72\x34\x3d\x07\xda\xbd\xfd\xba\x12\x5e\x7d\xb0\x37\x77\xb6\x99\xad\x7e\xdd\x1b\x2e\x80\xe5\x6f\xbd\xbf\xfd\xd3\xbe\xc3\x03\xd4\x35\x64\x37\xdf\xd2\x4f\x8d\xad\xfa\xb7\xb2\x03\xf0\xa2\x39\xb3\xc5\x24\xce\x79\xb6\xed\x47\xda\x91\xd6\xa3\xd7\x4e\xb4\xce\x29\x89\x89\x8c\x38\x7f\x6b\x88\xa3\xf7\x00\x05\x27\x48\x08\xab\xd3\xcf\xb7\xda\x02\xdc\x4d\xdd\x66\xd3\x33\x77\xf0\x98\xe8\x6e\x42\xe7\xc9\x68\x00\xa5\x84\x3e\x5e\xe4\xea\xbb\x27\xe3\xea\xab\x07\xdb\xcb\xaf\xdc\xda\x5b\x7c\xff\xf5\xbd\xc5\x9b\x67\x45\x35\xaf\x04\xd4\x67\xc2\x08\xef\xcf\x0b\x00\xbd\x36\xd1\x26\xf3\xcb\xd4\x4c\x1a\x6a\x27\x7f\x52\xf8\x50\x7b\x1a\x0b\xbe\x62\x5f\x2e\x87\xea\x63\x52\xa8\xdd\x87\xe8\xef\xe2\x1b\x0b\x6a\x4c\xf9\x90\x5f\x0f\xc9\xf1\xf9\x67\xef\x4b\x32\x9d\x4a\x2e\x20\x80\x93\x0b\x30\xa4\x22\x2e\x2c\x8f\x73\xfc\x94\x37\x97\x62\xe4\x71\x1d\xeb\xe3\x79\x9e\x29\x76\xb0\x9f\xb7\x7c\x1f\xf2\x5f\x7b\x42\x32\x5f\x0a\x49\x72\xdd\x82\x15\xad\x75\x2e\x84\xc8\x01\x20\x1f\x95\xa2\x78\xf8\xa4\xd8\x7f\xe2\x9d\xc9\xcd\x6b\xc7\xe3\x9f\xbf\x38\xcf\x3f\x3c\x59\xc9\xf7\x65\x5a\xec\x73\xd1\x06\xf3\x96\x8e\xf3\x69\x84\xc2\x84\xd8\xb9\x90\x7e\xc7\x86\x46\x69\xa8\xbf\xe9\xfe\x8f\x79\x77\x0e\x9c\xe6\xf3\x91\x14\x57\x8a\x73\x9c\x68\x53\xb1\x75\x9c\x3d\x17\x31\xe9\x74\xe0\xee\x31\x77\x0c\xda\x00\x03\x2b\x86\x47\x28\xea\xc3\xe9\x4f\x23\x24\x01\x3f\xde\x4f\x3a\xbd\x5c\x04\x5e\x70\xea\xee\xa6\xef\x00\x72\x7d\x3b\x20\x14\xc3\xc8\x71\x83\x54\xfc\xdc\x5f\x0b\x3c\xce\xb5\x00\xd0\xa0\xe7\xab\x4c\xbf\x3e\x2b\xaa\x2f\xbf\xb3\x5d\xfe\x8f\x57\xf7\xcf\xbe\xf5\xea\xfe\xfc\xce\x69\x51\x99\xe5\xa3\x25\x80\x15\x79\xe1\xbe\x46\x02\x7c\xed\xd9\xc0\xeb\xca\x4b\x89\x0c\x84\xa2\x0f\x31\x3c\x37\xa1\x53\xac\x2c\x4a\x67\xd2\x50\x60\xe0\x92\x11\x7a\x29\x76\xc9\x89\xe5\x1f\x92\xe1\xe3\x1b\xa3\x6f\x48\xaf\x21\x01\x0a\x05\x90\xfe\xf2\x13\xab\x18\x4e\x21\xc5\x28\x4d\x4c\x65\x62\x78\x73\xfc\x5c\xe8\x94\xa3\x1f\x82\xf0\x43\x03\x3c\x84\x8a\x39\x5a\x97\x5e\xa1\xbc\x98\xe7\x31\xbc\x9d\x75\xb9\x70\xe1\x82\xfc\xbd\xdf\xfb\x3d\x00\x00\xf8\xb3\x3f\xfb\x33\x6e\xf3\xad\x04\x00\xd0\xe4\xcb\xa0\xe6\x9f\x39\x34\x2e\x1f\x57\xb2\x78\xec\x68\x7c\xf9\xe6\xe1\xe4\x99\xab\x27\xc5\xf3\x17\xe6\xf9\x07\x27\xa5\x7c\x4a\x6a\xd8\x07\xa0\x4b\x2d\xf6\x92\x46\x78\x97\x85\xfd\x04\x87\xe8\x7d\xee\x20\xda\xb1\xe2\x32\x6c\x54\xc3\xbf\xfc\x40\x97\x85\x9c\x74\x10\xaa\x37\xd5\x61\x18\x70\xe2\x97\xb2\xf8\xcf\xc3\x53\xbe\xd3\xc1\x07\xce\xd1\xbd\x31\x5d\x14\xa5\xb9\x6b\xcf\x8c\xd1\xcd\x2d\xe7\xda\xa1\x3d\xdb\xc5\x84\xc9\xda\xf3\xe9\x18\x90\xea\x5c\xbe\xd1\x80\x0f\x83\x63\xeb\xde\x1d\xb6\xd2\x45\xb4\x70\xe4\xc8\xe2\x49\x0f\xd4\x43\x51\x32\xac\x0c\x62\xd9\xfc\xc0\x64\x17\x19\x03\xe8\xd7\x19\xb7\x21\xae\x53\x57\x7d\x0c\xa2\xdb\xff\x2f\xcb\x4c\xdf\x3e\x2d\xaa\x7f\x3b\x9c\x96\x5f\x7a\xfd\xd2\xfc\x3f\x5e\xdd\x9f\xdf\x3e\x9e\x94\x33\x6d\x22\x30\xf6\xa1\x76\x66\x0f\x0c\xb8\x96\x92\x3c\x87\xd8\x0d\x75\x94\x9b\xce\xe7\x9e\x0f\xe5\x9d\xea\x88\x53\x68\x86\xe8\x97\x6a\xef\x53\x80\x5b\xaa\x4f\x1a\x02\x60\x86\xf6\x65\x2f\x99\x69\xe0\x03\x1b\x31\x8d\xc0\x25\x8a\x0e\x53\x1c\xba\x8f\xa7\x4b\x37\xaa\x77\x0a\xff\x18\x3e\x3e\x3d\xd6\xa5\x0b\xd1\x6f\x62\x02\x6d\x6c\xd0\x3c\xf6\xd8\x63\xf2\xd6\xad\x5b\x0a\x00\xe0\xc5\x17\x5f\x94\x00\x96\xa1\x95\xe8\x2f\xfe\x97\x03\x80\xf9\x65\xe6\x5c\x08\x91\xe7\x95\x28\x6e\x1e\x4e\xae\x5e\x3f\x1a\x3f\x73\xe5\xa4\x78\x7e\x77\x9e\x3d\x37\x2e\xe5\x93\x99\x12\x7b\x02\xa0\xb0\x5d\x89\x9d\xe8\xef\xee\xe0\x28\x88\x71\x13\xee\x08\x0b\x9f\x58\xc7\xd6\x5c\x68\xf4\x25\x0a\x0b\x32\xa8\x2c\x14\x65\xb0\xf5\x8b\x88\xfa\x90\x28\x43\x4f\x80\x89\x34\xa1\xa5\x31\x27\x48\xf1\x9c\x68\xdb\x53\xb7\xd9\x2f\x42\x97\x8a\x7c\x7a\xd7\xc5\xf8\xbe\x70\xb6\x27\xa3\x8c\x5b\x7f\xe8\x9d\x5c\xcc\xd1\x50\x61\x6e\x30\xc1\x30\x0a\x20\xbc\x36\x6a\x24\xdc\xf5\xf1\x43\xd5\xb8\x28\x50\x4a\x10\x87\x03\x60\x36\x36\x6a\x47\xb9\x52\x02\x66\xab\x4c\xdf\x3a\x29\xaa\x6f\x1c\x4e\x57\x5f\xf9\xd1\xde\xe2\x1b\x3f\xdc\x9b\xdf\xbe\xbb\x55\x9e\x68\xd9\x03\x30\xd6\xf2\x11\x3e\xc8\x0e\x6f\xe0\x8d\x38\x85\x37\xf5\x05\x10\x22\x69\x38\xfe\x30\xa0\xdc\x26\x69\x37\xf5\xb2\x1b\xeb\x27\x63\x68\x01\xfc\xed\xe3\xcb\x1f\xd2\x07\x0f\xd2\x1f\x82\x80\xfe\x00\xf0\xa5\xd0\x1b\x7f\x08\x95\xb9\x10\x23\x40\x5a\x85\x28\x7f\x1f\x1f\x6e\x80\xbb\x80\x5a\x8c\x2e\x31\x83\x62\x68\x5a\x97\xdf\xd0\xf2\x83\x06\x9e\xd9\x7c\x6b\x9e\xd1\x7d\x2c\x24\xd2\x52\xff\x6b\x4e\xba\x7d\xf2\x60\xeb\x91\x77\x1d\xb7\x80\xe5\xfd\x93\x95\xbc\x99\x2b\xb1\x5f\x03\x16\x21\xdd\xa1\x74\x3b\xf9\xc1\x40\xf3\xcc\x38\x7a\x86\xce\x77\xd6\x4a\xeb\xcc\xd1\x1e\x99\xb0\xef\xec\x03\x27\xfc\x97\x82\x03\x2f\xf8\x61\xf8\xe1\xf2\x34\x1a\xe2\x02\x24\x3d\x1d\x3c\x74\x7c\xdd\xdc\x9f\x7b\x63\xc9\xec\xbe\x1b\xe0\x97\x3a\xb8\xe8\x12\x20\x80\xe2\x72\xcc\x3c\x00\x08\xa1\x1f\x2c\x87\xd9\x1b\xc3\x61\x19\x07\x88\x60\x01\x6a\x68\x80\x86\xc0\x88\x4b\x7d\xd2\x79\x61\xd0\x84\x4e\x52\x46\x91\xad\x66\x43\x76\x59\x09\x38\x59\x66\xea\xd6\xc9\xb8\xfa\xd6\xe1\xf6\xea\x6b\x6f\xec\x2e\xff\xe3\x87\x7b\x8b\xd7\x0f\xb7\x57\xc7\xd0\x2c\x1f\x81\x03\xc0\xa0\x6b\x36\xfa\xb2\xb3\xb3\x23\x4f\x4e\x4e\x0c\xdd\xb9\xbf\x71\x83\xff\x65\x9b\xf2\xe5\xec\xa2\xcf\x8f\xc5\xc8\xa6\xfe\x0c\x98\x6b\xae\x4c\x48\x2f\x97\x0c\x8e\x8f\x8b\xbf\xb9\x37\xc9\xe5\xdf\x5c\xfe\x33\x55\x46\x8c\xbf\xe4\x52\x4a\xc4\xc7\x4a\x06\xb8\x18\x26\xa1\xeb\x18\x05\x70\x4a\x41\x90\x38\xcf\x37\xd0\x52\xd0\xea\x26\x68\x63\xf4\x76\xd1\x01\xa3\x73\xa8\x4c\x2c\x02\x0e\xb5\x47\xaa\x9c\x60\xfa\xf5\x5f\xff\x75\xf9\xf7\x7f\xff\xf7\xca\x75\xda\x2d\xf3\x0f\xff\x42\x73\x91\x57\xa2\x78\xf4\xde\xf8\xf2\xa3\x47\xe3\xf7\x3d\x72\x5c\xfc\xfc\xee\x3c\x7f\x76\xb2\x92\x37\x73\x2d\xf6\x85\xb6\x8f\xe3\x07\xb0\x23\x1e\xae\x97\x64\xfe\xcb\x1d\xf2\x06\x4a\x22\x18\xfd\xe8\x06\x0f\x4a\xe8\xb2\x0b\x18\x99\x78\xa9\x80\xf3\xc0\x74\xa9\x06\x45\x5f\x62\x7c\x1c\x07\x7e\xdc\xb4\x71\x00\xaf\x57\x3a\xe2\xf7\x07\x38\xe7\xe8\x03\x47\x3d\x3a\x12\x2d\x71\xeb\x48\xe0\x4d\x2f\x7a\xc0\xf0\xc7\x7d\xe0\xd0\xcb\x55\x21\x17\x10\x6a\xc9\x4c\x17\x46\x36\x6a\x77\x2a\x6f\x54\xb3\x46\xd5\x93\xcb\xf3\x5d\x03\x70\xfd\x63\x2b\xa4\x6b\x5d\x97\x4a\xc2\xf1\xa2\x06\x30\xdf\x39\xd8\x5e\x7d\xed\xf6\xc5\xc5\x37\x6e\xed\xcd\x5f\xbf\xb7\x55\xcd\x00\xec\x08\x0c\xd9\xfb\x42\x41\x4c\xcd\x57\x6b\xba\x79\x37\xf4\x42\x19\x63\xcb\x69\x19\x2e\xdf\x65\x2f\x5d\xf2\xb8\x32\xbe\x97\x6b\x00\xb7\x9e\x14\x18\xc4\x00\x21\x9f\x73\x4e\x01\x11\x2e\x5d\x01\xfa\xba\xbb\xea\x0c\x90\xae\x43\x4c\xdb\xba\xf8\xfa\xf4\xc1\x34\xae\x3a\x58\xb4\x5c\xc4\xc5\xd7\xf8\x1c\x8a\xa3\xf9\xdc\xb3\x10\x40\xe1\xca\x71\x89\x03\x50\xae\x41\xe6\x1b\x88\x3e\xbd\x42\xfa\xac\x0b\x6a\x86\x94\x4f\x19\xe8\xbe\xb2\x29\x20\xa8\x97\x68\x84\x85\xfc\xc5\xfb\x57\x24\xd9\x74\x3b\x79\x68\x36\xda\x7b\xf4\xde\xf8\xc9\x47\x8f\xc6\xcf\x5f\x3e\x1d\x7d\x60\x6b\x25\x9f\xca\x1a\xc0\x22\x40\xd8\xed\x8e\x22\x24\x00\x00\xa2\x39\xf9\x14\x20\xec\xa4\x7b\x38\x82\xd2\xea\x06\x18\x20\x7e\x2e\x46\xf8\xd3\x5f\x27\x3f\x26\xa6\xc0\x82\x0a\xe7\xe9\xad\x5d\x19\x68\x23\x3d\xee\x28\x0a\x06\x37\xf4\x8b\x9e\x5e\x64\xc7\xda\x6b\x41\xda\xce\x75\xe4\x3c\xf2\x75\xbd\xe8\x04\xf7\xe6\x8f\xdf\xec\x7b\xbc\x9a\x3a\x93\x72\x6d\x19\xce\xd1\x33\x20\x8f\x75\xd8\x3d\xa7\x4f\xfa\x8a\x03\x26\xb8\xce\x4c\xc3\xf6\x64\x06\x96\xd9\xb8\xfa\x02\xd3\xe6\x4e\x80\x42\xc6\x84\x97\x37\x49\x6e\x40\x4b\xc6\x4e\xbb\x77\xa6\x53\xcd\x00\x98\x4a\xc2\xd1\x32\x57\xb7\x8e\xc7\xe5\x7f\xbc\x79\x61\xf9\x95\xdb\x17\x17\xff\xf1\xda\xfe\xfc\xd6\x32\xd3\x73\xe8\xf6\xc0\x28\xe8\xf6\xbe\x94\xe6\x67\x03\xc8\xb9\x2f\xad\xcd\x78\xf9\xe5\x97\xd5\x23\x8f\x3c\x22\x6f\xdf\xbe\x3d\xe4\xc5\xd0\x17\x5d\x70\x39\x69\x00\xde\xfe\x03\x43\xeb\x02\x25\x94\x17\xe7\x3f\x7c\x72\x7c\x75\xa0\xf9\x2e\xfd\x7d\x3e\xcb\x55\xb7\x98\x7a\x86\xea\x00\x4c\x59\xac\x1b\x27\xcb\x07\xca\xf0\xbd\x2b\xc5\x82\x48\xaa\x6f\x7b\x1f\x7a\x39\x78\x90\x8e\x78\x48\x4a\x75\xf4\x90\x90\xbf\x49\x7d\xa8\x9c\x4d\xd5\x3f\x55\x07\xdf\x73\xb6\x1d\x3e\xf8\xc1\x0f\xca\x2f\x7f\xf9\xcb\x38\xca\x62\x6d\xc0\x25\xe7\xb0\x98\x25\x21\xa9\xb5\x2e\x46\x4a\x16\x17\xcf\xb2\xbd\x6b\xf7\xc7\x37\x1e\xb9\x37\x7e\xf6\x5d\xc7\xc5\xf3\xdb\xcb\xec\xd9\x51\x25\x1e\x11\x00\x53\x1c\xe5\xb0\x6d\x3e\x0a\x7e\x13\xdf\xd1\xfb\xfc\xb7\x79\xed\x8e\x0d\xe1\x47\x45\x2a\x1a\x70\x13\xbb\x41\xd2\x06\x04\x10\x88\x2e\x40\xcf\x89\x38\x81\x16\xba\xb1\xc1\x42\xfd\x37\x6a\x29\x23\x22\x61\xdd\x7d\x11\x03\xd6\xe1\x23\x9d\xd8\xfd\x19\xa6\x3d\xcc\x29\xbf\x9c\x07\x37\x20\x11\x7f\x8a\x4d\xf6\xcd\xd4\xf7\x46\x4e\xd7\x28\xfd\x3d\x44\x26\xd3\x6c\xa4\x65\x7e\x7b\x48\x77\x4b\x81\x1d\x2b\x74\x30\x9e\xb0\x41\x0b\x3e\x24\x8e\xfb\xa5\x68\x1a\x65\xc3\x27\x2c\x5b\x87\xd7\x39\x42\x3e\x6d\xc4\x44\x98\xbe\x25\x9f\xe9\x1b\x16\x40\xea\xdb\xed\x4e\xb6\x78\xb2\xa0\x93\xe9\xa3\x0e\xc0\xe8\xc3\x79\xae\x5e\x39\xda\x2a\xbf\xfe\xea\x43\xf3\x2f\xbd\xb5\xb3\xfc\xee\xdb\x17\x96\x07\x8b\x4c\x2f\x35\xe8\x25\x00\x94\xe6\xf0\x3a\x40\x40\xa6\x61\x63\xfd\x8d\x8c\xbe\x18\x7a\x9f\x23\x8e\x01\x25\x43\x00\x84\x2b\xa5\xda\xcd\x50\x14\xc3\x07\xba\x42\x00\x8e\xca\x08\x01\x13\x5a\x06\xc0\x2d\x8f\xe3\x81\x69\x38\xf9\x21\x5d\x7d\x6d\x11\x02\x42\x2e\x39\xde\xb6\xc1\x23\x3b\x36\xb2\x12\xd3\x01\x31\xa8\x0d\x27\x57\xd4\x84\x2b\x0b\x9e\xfc\x10\xa2\x8e\xa1\xa7\xf9\x9b\x04\x18\x29\xfc\x52\xdb\x94\xcb\x0b\x0d\xbc\x5e\x3f\x34\xbf\x0f\xa4\x00\x00\xfe\xf8\x8f\xff\x58\x6e\x6d\x6d\x71\xf4\x92\xf9\xd7\xee\x63\xc9\x14\x14\x3b\x8b\x7c\xe7\xca\xc9\xe8\x91\x47\xee\x8d\xdf\xf7\xe8\xbd\xf1\xf3\xbb\xf3\xfc\xb9\xa2\x12\x37\xa4\x16\x3b\x86\x4f\x1f\x30\x60\x07\x60\x7f\xe6\x8b\xa3\x08\x76\x68\x5c\x37\xd7\xdd\xbb\xaa\x66\x8d\x77\xe3\x21\x2c\xcb\x6d\x3b\x1c\xfe\x6d\x97\x8f\xa8\xb4\xfa\xa3\xc8\x8c\xf3\x0c\x8f\x88\xe4\xe4\x8f\x28\x68\xfc\x87\x46\x30\x00\x80\x8d\x62\xb8\xda\x8b\x46\x23\x42\x11\xa1\x90\x3e\x1c\x7d\x7a\x14\xa1\xdf\xde\x7e\x7a\xca\x98\xd3\x34\xae\x2b\x86\x80\xbe\x60\x69\x26\xdb\xee\x0f\x4f\x64\xa9\xc5\x36\xfc\x27\xef\xbe\x68\x4f\x8c\x6a\xdd\x63\x0d\x1a\x60\x5e\x49\x7d\x30\x1b\xa9\x6f\xdd\xb9\xb0\xfc\xb7\xd7\xf6\xe7\xff\xcf\x9d\x9d\xe5\xab\xf7\x26\xd5\xd1\x32\x57\x73\x05\x7a\x69\x3e\x9d\x06\xe8\xfd\x26\x92\x42\x20\xd1\x05\x60\x70\x0a\xd9\x2d\x57\x5a\xc7\x4e\xfb\x6c\xa1\xcb\xdf\x85\xf4\x75\xd1\xc7\xe8\x10\x4b\x13\x0b\x18\x7c\x91\x1c\x7c\x1d\xfb\xe2\x1a\x13\xfd\x08\xa5\x50\x9b\xa7\x02\xbf\x36\x65\x8c\x92\x9a\xfc\x33\xcf\xf1\x9c\xa1\xcf\x70\x59\x20\xcf\x01\xe5\x61\xfe\x86\x9f\x62\xca\x08\x86\x1e\xeb\x21\xa0\x2f\x83\x36\xb4\x29\x8f\xe5\x63\xbe\x02\xd1\x63\x3d\x0c\x2d\xfe\x6b\xf8\x6b\x72\x2d\xa1\x5f\x4f\x8e\x9e\xf2\xc5\x34\xb4\xae\xb4\x2e\x1a\xdd\x0b\x42\x03\x24\x8f\xde\xfb\xda\xca\xd4\x9f\xf6\x67\x4b\xf7\xe1\x0f\x7f\x58\x10\x7a\xa9\xb5\x16\xcd\x12\x90\x68\x96\x83\x46\x50\x03\x96\xb1\x54\x50\x4c\x97\xd9\xce\x95\x93\xe2\x91\x9f\x7a\x67\xeb\x67\x9f\x7a\x7b\xfa\xd1\xc7\x8e\xc6\x1f\xbf\xb0\xc8\x7f\xbe\x50\xf2\x31\x09\x62\x0b\xcc\x3b\x22\xda\xa4\xd0\x76\x0c\x5e\xbe\x31\x20\x03\xdb\x63\xf3\xc6\x8e\xde\x68\xf1\xff\x01\x00\x74\xe3\xb5\x6b\x21\x1d\xbf\xee\xe5\x14\xbd\x19\x13\x47\x4d\x1b\x8e\x7b\x6b\x15\xc8\x5d\x77\x6f\xe5\xcd\x1b\x3e\xe0\x4d\xb3\x00\xe6\x00\x13\x81\xbf\x7d\x6d\x28\xad\xb7\x63\x53\x67\x22\xd3\xd2\x07\x81\xae\x7e\x87\xe3\x3a\x77\x00\xc5\x80\x29\xb3\x61\x43\xa0\xff\xda\x76\x36\x72\xdb\xb6\x68\x80\x43\xe3\x39\xe9\x39\x35\x1d\xc0\xb1\x5d\x28\x05\x7a\x86\x9e\xfa\x4b\x7a\xdf\xb5\x88\xad\x15\x6d\x0f\x0e\x08\xb5\xbc\x2c\xa6\x4d\x2d\xda\x71\xd3\x5f\x42\x62\x4f\xe8\x45\xcb\x57\x16\xb9\x63\xc9\x8d\xde\xdb\x87\x14\x22\x2a\x06\x30\x98\x76\x14\xa4\xcd\xe9\x58\x04\xa2\x7f\x3b\x8e\xbb\xe1\x83\xc4\x79\x90\x09\xd7\xe8\x76\xe7\x83\x10\x22\x97\x1a\x76\x8b\x4a\xbe\xeb\xc2\x22\x7f\xfc\xa1\x59\x7e\x79\xba\xcc\xc6\x52\x0b\xad\x84\x2e\x2b\x09\x5a\x35\x83\xbf\xb1\x01\xd0\xfc\x15\xa2\x69\x20\x21\x5a\xad\x04\x00\xe8\x0f\x7e\xf0\x83\xe2\xc6\x8d\x1b\xe2\x3b\xdf\xf9\x0e\xb5\x9b\x9c\xcd\x0c\xd9\x53\xac\x39\xf5\x13\x9c\x5d\xa5\xfc\x5c\x36\x12\xf3\x75\x39\x64\xaa\xbf\xc9\xe3\xf2\x5d\x75\xe0\xfc\x24\xa5\xe5\x40\x45\x2c\x2d\x1d\x11\x00\xfd\x3a\xd2\x3c\xcc\x13\xfb\x43\xdc\x16\x94\x07\xe7\x47\x5c\xed\x00\xe8\x39\xe7\x7b\x71\xd2\x60\xf7\x19\xe6\xdb\xd3\x99\x0e\x69\x17\x42\x03\x46\x10\x57\xc6\x97\x86\xa0\x62\x9f\x5c\x17\xcf\x14\xc4\x1a\x43\x93\x52\xff\xd8\x37\x80\x75\xda\x6c\x08\x6f\x6f\xde\x78\x3c\x96\xfb\xfb\xfb\xf0\xc6\x1b\x6f\xf4\x36\xde\xd2\x73\x59\xd0\xd2\x50\xfb\x95\x10\x00\xe4\xe3\x52\x4c\x2e\xce\xf3\xfd\x47\x8f\xc6\x37\x6e\x1c\x4d\x9e\x7f\xe8\x74\xf4\xe1\xad\x95\x7c\x26\x57\xe2\x32\x80\xc8\x2d\x00\xd2\xa4\xd0\x17\x31\x1d\x9d\xeb\x99\xfd\x84\xa3\x0b\x7d\x62\xea\xfa\xcd\x1d\x4a\xe3\x73\x5e\xbc\x66\xee\x13\x51\x63\xca\x07\x13\xc3\xa4\xb7\x14\x80\xee\x75\xf3\x3f\xeb\x3e\x5a\x8f\x61\x1a\xb7\xa5\x9a\x0b\x7c\x6f\xfb\x5a\xbe\x75\xec\x4d\xb2\x1d\xa0\xa2\x4b\x87\xf6\x8f\x58\x82\x0d\xba\x1a\x7a\xeb\xbc\x9c\x36\xcf\xbd\xd4\x68\xef\xdd\xb1\x79\x61\xad\xeb\x36\x6d\x74\x03\xcc\x5f\xdb\x20\xda\x12\xd0\xd1\x43\x0b\xa8\xbb\x9f\x91\xb0\x4f\x25\xee\xea\x82\x75\xa3\x7b\x8f\xb4\x17\x64\xe2\x7a\x35\xcf\xe9\x6f\x07\x34\x3c\xcc\xbd\x12\xfa\x64\x99\xe9\x57\x8f\x27\xe5\x97\x7f\xb4\xb7\xf8\xd2\xeb\x7b\xf3\xef\x1c\xec\xac\xee\xcc\x46\xd5\x89\x92\xb0\x6c\xf6\xbb\xe0\xbd\x2f\x78\xdf\x4b\xef\xd7\xa8\x07\x1c\x60\xe7\xca\xe3\x9e\xb9\xa2\x03\x31\xcb\x2a\x43\x96\x48\x5c\xbe\x31\x36\xc2\x4d\xf5\xa2\x79\xb1\xfa\x85\xa2\x16\x2e\x99\x21\x5d\x37\xe5\x57\x5d\x72\x62\xfc\x64\x54\xc4\xc5\x24\x0e\x11\xf9\x90\xa8\x29\xc3\x09\xc5\x08\x8b\xa2\x29\xfc\x17\xd3\x51\x45\x5d\xe8\x8e\x8b\xc4\x50\x1e\x26\x51\xa4\xc7\xe9\x4b\xf9\x62\x99\xb8\x9e\x1c\x9a\xe6\xde\x00\x5c\x28\x14\xd7\x0d\xc8\x73\x0e\x89\x53\xbd\x5c\x65\x7d\x75\xc1\xc8\x97\x45\xb1\x4f\x3f\xfd\xb4\xf8\xc1\x0f\x7e\x80\x7f\x5b\xa8\x8d\xb0\x00\x80\x10\x42\x64\xe6\xbe\x01\x2c\x23\x21\xc4\x08\x34\x8c\x32\x0d\xe3\xe9\x2a\xdb\xb9\x71\x77\x72\xfd\xd9\x37\x76\x7e\xf1\xa7\xde\x99\xfe\xd6\xe5\xd3\xd1\xc7\x27\xa5\x7c\x26\xd7\xf2\xa2\x68\xbe\x14\xa2\x7b\x09\x00\xa0\xd9\xd3\xd0\x7d\x91\x21\x00\xd8\x33\x3b\xb8\x37\xdc\xfe\x13\xde\xb5\x0a\xd7\x03\xf3\x3c\x04\x5a\x1a\x1a\x73\x4d\x65\x21\x9f\x8a\x68\x34\xf9\xc5\xe6\xfe\xa2\x8a\x7d\x47\x00\x58\x2f\xd2\x63\x7b\x7e\xdb\xe9\x77\x8f\x5b\xd7\x89\xa3\x39\x4d\xbe\x00\xdb\xb9\x9b\x7f\x6c\x7d\x7b\x6e\xdc\xa1\x2d\xae\x37\x06\x06\x84\xbf\x69\x8a\xf6\x99\xe8\x68\xfb\xfc\x11\x90\x6d\x0a\xd4\xe5\x1b\xa7\xdc\x54\xaf\xe3\x29\x6c\x5e\x6d\x24\x43\xb4\xec\xcc\xf8\x33\x34\xa6\xed\x04\xca\xa4\x93\xd8\x8c\x0b\xdd\x28\x22\x10\x2f\xa3\x53\xc7\x5f\x20\x1e\x06\xf0\x74\x11\x98\xae\x1f\xec\x3a\x1a\xbd\x4c\xfd\x04\x34\x75\x03\x61\xcb\xec\xfd\xc8\x24\xe9\x0f\xa2\x43\xbb\xa4\x6a\xed\xc3\xe9\x9a\xb9\x89\x8f\xb4\xa3\xd2\x44\x23\x4d\x9d\xeb\x89\x2f\x8a\x5c\x89\xcb\x5b\x2b\xf9\xee\xbd\xb3\xfc\xb1\xbd\x79\x3e\xc9\x95\x58\xae\x32\xbd\x5a\x65\x5a\x35\x16\xa2\x7e\xfb\x6d\x7e\x87\xcc\x44\x5e\x9a\x7d\x3d\xba\xb9\x17\x00\xa0\x9f\x7f\xfe\x79\xf1\x95\xaf\x7c\x45\xef\xed\xed\xc9\xc9\x64\x02\xcb\xe5\x52\x68\x6d\x8e\x0c\x6c\x35\x34\xc9\xd8\x1f\xda\x35\x38\x71\x65\xe9\x14\xd5\x8e\x67\x1c\x0f\x9c\xb0\x1d\xe6\x7c\x1f\xc5\xfd\x9c\x0c\x5a\x1f\x0d\x7d\x7d\x28\xd0\xa0\xba\x70\xba\x51\x79\xae\x28\x90\x49\xd8\x7f\xbb\xf4\xa3\xed\x10\xd3\x56\x2e\xdd\x80\xe8\xe4\xeb\x27\x97\x8f\x0c\xe9\xd7\xb3\x5d\xeb\x20\x32\x17\x9f\x21\xf7\xa9\x29\x84\x74\x53\xf5\xc3\x79\x43\x74\x0b\x21\xd6\x10\x6f\x1f\x92\x8e\xe1\xe3\x43\xb6\x12\x00\x54\x9e\xe7\xb2\x2c\x4b\x05\x10\xfc\x5a\x48\xa2\x7f\xf5\x11\xfd\x20\x72\x51\x7f\xde\x3c\xd9\x9f\x8d\x76\x9f\x7e\x7b\xeb\x99\xc7\x0f\xb7\x7e\xfd\xc2\x3c\x7b\x21\x57\xe2\x9a\xd0\x62\xd2\x6d\xa4\x84\xde\x9b\x7f\x37\xdb\xf9\x37\x49\x36\x4a\x62\xbf\xce\x5a\x65\x00\x1a\x63\x4e\x36\x54\x0a\x61\x9f\xbe\xd2\xb1\xb0\xe5\x50\xa4\x49\xbf\xc8\xc1\x5a\xf7\xa2\x2f\x68\xc3\x66\x7b\xaa\x2a\xb8\x37\xf6\x52\xe7\xde\xff\xfd\x22\xf7\x6f\x0f\xb1\xa7\xe2\x52\x13\xda\x03\x1d\x1c\x10\xea\xf4\xe9\x45\xc1\x7a\xb2\x7c\x75\x47\xfd\xca\xf5\x19\x95\x8f\x94\xee\x1c\x70\xb3\xeb\x46\x37\xe0\x44\x34\xc0\x49\x37\x51\x07\x32\x1e\x2c\x39\xba\x03\x38\xd6\xb8\x62\xfa\x0f\x3b\x7c\xab\xed\x11\xea\xb1\xa2\x6f\x06\x24\xd2\x7a\x69\xe8\xe9\xd5\x3b\xe1\xd7\xd0\x20\x10\xc9\x45\x4e\x1a\xcd\x7a\x73\x00\xa0\x03\x64\x86\x17\x5d\xc6\xa2\xe3\xc6\x44\x50\xec\xa8\x8d\x05\x03\x3b\x79\xe6\x97\xb2\x2d\xfd\x85\x55\x4f\xdc\x67\x5a\x80\x2a\xa5\xbe\x73\x5a\x54\x5f\x7f\xeb\xc2\xf2\x1f\x5f\x79\xe8\xec\xab\xb7\xf6\xe6\x6f\xce\x46\x6a\x46\x0f\xb0\xe3\x7e\xc0\x91\x46\x5f\x00\xea\x08\x0c\xde\x4f\x07\x71\x36\xdc\x17\x9d\x70\x95\xf3\x45\x21\x70\x7e\x28\x1a\xe2\x93\xe3\x8b\xf8\xa4\xe8\xef\x2a\x47\xf3\x5d\xf2\xa8\xae\x43\x22\x5b\x31\x75\x4b\xe1\x3f\xc4\xc7\x85\x74\x82\x9c\x30\x73\x11\x52\xc1\xa9\x8e\x9c\x56\x7c\x5d\x7e\x38\x49\x72\x3f\x84\x97\x6b\x80\x05\x01\x00\x43\xe7\xd2\x8b\xca\xa3\x00\x81\x0e\x40\xcc\x97\xe3\xcd\xe5\x53\xbd\xf0\x5f\x5c\x06\x7e\xe1\x17\x7e\x01\xbe\xf8\xc5\x2f\x5a\x05\x9b\x03\xe3\x00\xc0\x3a\x4c\x2e\x6f\x22\x30\xe6\xf3\xe6\x42\x00\x14\x17\x16\xf9\xf4\xdd\x07\x93\x1b\x4f\xbe\xb3\xf5\xa1\x2b\x27\xc5\x6f\x16\x95\x78\x56\x68\x51\x00\x20\x47\x62\xbd\xe1\x35\xd7\x80\xaf\x6d\xb3\xda\xee\xed\xc0\x06\xd4\x94\x69\x7d\x28\xf1\x8e\xe8\xad\x12\x7f\x7a\x2b\xda\x42\x7d\xd9\xed\xdb\xa9\xb0\xf3\x3b\x96\xbd\x9c\x4e\x17\x46\x3e\x06\x47\x54\x6e\xe3\xaf\x2c\xc0\x62\x57\x87\x36\x4e\x07\x16\x68\x7b\xb0\xe0\xa3\x57\x07\x22\x1b\x33\xe8\xd5\x93\xcb\xa4\xb2\x3a\x54\x80\xf7\x9a\x10\x51\x3d\xf0\x60\xcb\xa1\x4a\x76\x4e\xb2\x75\xdb\x56\x79\x01\x56\x24\x83\xc8\x69\xeb\xd7\x61\x00\x26\x40\xd9\xbf\x0e\xeb\xd5\xb7\xa7\xa7\x25\xcf\xd1\xf6\x0d\x73\x3a\xcc\x08\x76\x63\xf5\x56\x21\x1f\xb7\x00\x00\x20\x00\x49\x44\x41\x54\xb2\xc0\x4f\x93\xdf\x8d\xed\x26\x8a\x81\xc7\x05\x8e\x7e\x20\x80\xc1\xe9\x84\xa3\x4d\x56\x7d\x3b\x50\x61\xf1\xc6\xff\x47\x15\xc3\x2d\x81\xfa\x18\xe5\x11\xbd\xda\x17\x80\x9a\x5c\x8e\x94\xb8\xb6\x3b\xcf\x3e\xba\xb5\x9a\x3c\xf5\xd0\x2c\xff\x97\x47\x8e\x8b\x7f\xfc\xee\x95\xd9\xb7\x7e\xb4\xb7\x3c\x04\x68\x7f\xff\xc8\x7c\x5d\x68\x1d\x5e\xd7\x80\x96\x9e\x0d\x45\xa0\x05\xc0\xef\x6f\x42\xf9\xbe\xe7\xbe\x3c\x0e\xc0\xe0\xeb\x58\x3d\x38\x7a\x97\x5c\x17\x18\x0a\xa5\x90\x7e\x9c\x2f\x88\x01\x1a\x3e\x39\x2e\x59\x2e\x5a\x57\x5e\x4c\xf2\x61\x82\x1e\x4f\xde\xa2\xd5\x29\x25\x0a\x91\x82\x9e\x5c\x32\x62\x11\x9d\x4b\x5e\x6a\x94\x25\x94\x52\xa3\x22\x31\x65\x52\x65\x9b\x6b\x93\x5c\x3c\x43\x3a\x3a\xdb\x19\xfd\xbe\x10\xde\xbf\x62\x40\x4c\x77\xe2\x6d\x73\x88\xdc\x74\x29\xa7\x8f\x1e\x8d\xaf\xfe\xd4\xc1\xd6\x73\xd7\xee\x8f\xff\xd7\x9d\xa5\xfc\x70\xa6\xc4\x7e\xcd\x2d\x66\xc7\x0a\x4a\x4e\xb2\xc8\xf2\x89\xd4\xf6\x5b\x79\xdf\x71\x73\x7c\xd2\x34\xe1\xcb\x84\xee\x63\x84\x59\xce\xcd\x47\xcf\x54\x2c\xba\x0e\xf8\x8d\x3e\x50\xc6\xf7\x9c\xdb\xdf\x03\x00\xbd\x25\x40\xb6\x6c\x43\x4c\xf7\xb1\x70\xc0\xac\x2b\xc3\x9d\x37\x43\x42\x51\x24\x5a\xd1\x82\x99\x98\xc6\xd1\x58\x07\x61\xd1\xf7\x8a\x3b\x22\x83\x6d\x04\xc7\x45\xcf\xc8\xe4\xf2\xb5\x83\x06\x8f\x09\xd7\x0f\x8f\x9a\x3c\xeb\xc0\x3c\x60\xe6\x01\x02\xda\xb6\xb8\x9a\x93\x02\x98\x2d\x73\xfd\xca\xd1\xd6\xea\x9f\x7e\xb0\x3f\xff\xc7\xef\x5d\x99\xbd\x7a\x6f\xab\x34\x7b\x5f\x96\xcd\xde\x17\xeb\xf3\x69\xbc\xff\xc5\xf0\x53\x4a\xc1\x67\x3e\xf3\x19\x5f\xc4\xc0\x97\x52\x6c\xec\x50\xff\x90\xea\xb7\x52\xea\x90\xaa\xd3\xa6\xeb\xbb\x0e\xfd\x83\x90\xe3\xa5\xa5\x11\x17\x9c\x28\x82\x6b\x11\x34\xc3\xd0\x15\x95\x00\x07\x3d\x97\x9f\xd2\x00\x21\xfe\x29\x3a\x84\x64\x0c\x45\xff\x9b\x48\xb1\x1d\x1d\x02\x71\xbd\x76\xc6\xfb\x59\x4c\x94\xc5\xac\x55\x03\x02\x2b\xe6\x20\xb9\xbc\x12\x93\xab\xf7\x47\xfb\xef\x3e\xdc\x7a\xe6\xd1\x7b\xe3\x5f\xda\x3b\xcb\x3f\x32\x5e\xc9\x27\x64\x7b\x1e\x4b\x67\x1e\x9b\xe0\x38\xfa\x3f\xf0\x4e\xd1\xe9\x00\xb0\xd3\xa3\xa1\x74\xe8\xbd\x3d\x1b\xff\x03\xe6\xac\x8f\x26\xa7\x83\x51\xf8\xab\x15\x2a\x01\x2c\x63\x4f\xe5\xd4\x3e\x08\x7d\xd9\xd2\x3c\x70\xf9\x27\xca\x9b\xdf\xdf\xc2\x04\xf1\x89\xa3\xa2\x7e\x8b\x46\x16\x00\xa0\xfd\x51\x41\xcb\x79\x91\xfd\x38\x02\x97\xd1\xda\xda\x0f\xd1\x4b\xc2\x6e\x53\xac\x47\xdf\xe1\xda\x15\xb7\xc1\x03\x8e\x22\xa0\x78\x94\xb0\x8b\xd6\x4b\x35\x60\xf1\x31\x91\x1b\x4b\xff\x76\xd9\x88\x57\xbb\xd7\x6e\xa2\xd3\xa1\x1d\x07\xed\x98\x21\x7a\xf7\x4e\x4d\xb6\x6b\xaa\x99\xc1\x6a\xb7\xad\x59\xea\x32\x51\x9d\xe6\x5e\x40\xef\xe4\x60\xcc\x05\xb3\x65\x97\xd9\x1c\xf9\xb4\xff\x4d\x1b\xb7\x4b\x61\x18\x70\x38\x00\x48\x1b\xe5\x69\xc7\x37\xb4\x9d\x2c\x28\xbd\x46\x7f\x44\x2d\x54\x0a\x3d\x1d\x97\xe2\x99\xcb\xa7\xc5\xd5\xad\x95\x7c\xea\xf2\x6c\xf4\x8f\xff\xf5\xd0\xd9\x97\x5f\xdb\x9f\xbf\x39\x1f\x29\x73\xfa\x6e\x1b\x79\x61\x7e\xb4\x11\x00\x40\x49\xd9\xb9\x97\x9f\xf9\x99\x9f\x81\x7f\xff\xf7\x7f\x5f\xc7\x07\xd0\x94\xba\x14\x13\xa2\x71\xad\x18\xb8\x6c\x6d\xac\xed\xf6\xd1\x71\x11\x95\x75\xfd\x4e\xca\x0b\xf9\x3a\xc1\x04\x57\x7e\xec\x8b\x38\xfe\xdb\xf3\x6f\xc2\x41\x30\xa4\x73\x53\x2a\x19\xc3\x6f\x68\x0a\x2d\xe7\xa4\xf2\x02\x0f\x3f\xf3\xcc\xd7\x16\xb4\xa3\x42\xa8\x3c\xe6\x39\xd7\xce\xb4\x0c\xab\xdf\xa7\x3e\xf5\x29\x99\xe7\x2d\x5e\x95\x28\xd2\x62\xa2\x2e\xb9\x10\xa2\x05\x2c\x00\x50\xec\xcd\xf2\x9d\x1b\x77\xc7\x37\xaf\x1f\x4d\x7e\xfe\xf2\xc9\xe8\x23\x3b\xcb\xec\x7d\x99\x12\x97\x05\xd4\x4b\x43\x00\x9e\xb7\x6f\xe3\xa4\xa0\x33\xe4\x00\xfe\xb7\x6f\x1b\x9c\xd0\x93\x40\x81\x6c\x74\x24\x91\x94\x90\x3e\xd0\x77\xc4\xae\x32\x7c\x04\xa6\x3b\x28\x0d\x03\x0e\x2f\x5f\xd7\xdb\xb6\x27\xd1\xc8\x0a\xfe\xcc\xda\xf7\x37\x3d\xb9\x4b\xd2\xba\x70\x54\xa9\xf9\xae\x67\x74\xbf\x91\x8b\x76\x78\x3d\xdd\x89\xab\x67\x50\xce\x00\x45\x2c\x39\x5c\x7d\xd9\x20\x51\x00\xd1\x32\xfc\xb9\x36\xa3\x00\x37\xaa\x9d\x99\x71\x8b\x65\x00\x68\xa5\x05\xcc\xe7\x99\x7a\xe5\xee\xb4\xfc\xe2\xad\x4b\xf3\xff\xf1\xca\x43\x67\xdf\x79\x67\x5a\x1e\x95\x99\x9e\x43\xb7\x84\x84\xa3\x2e\xf8\xf0\x3a\x30\xd7\x8e\xaf\x8e\x42\x36\x3b\x35\xf2\x3e\xc4\xcf\xa5\xa4\x75\xf8\x0d\xf5\x95\x29\x6d\x34\x24\x42\x02\x09\xfc\x53\xf4\x59\x0b\x1b\x98\xaf\x8a\xcc\x4b\x8e\x84\x7a\x5c\xc6\x30\xc4\x11\x48\xc9\xe4\xe1\x7b\xc9\x3c\xe3\xf8\x71\x74\x31\x65\x5d\x7a\x99\x97\x47\x0d\x3c\x0f\x09\x78\x1e\xf2\xbc\x34\xb9\xa7\xcf\xb8\x0e\xe0\xe8\x34\x53\x8e\x93\xed\xd3\xd5\xf5\x8c\xcb\xa7\x32\xe1\xa5\x97\x5e\x92\xe8\x2d\xc7\x44\x58\xa4\x10\x42\x36\x5f\x0e\x8d\x84\x10\x23\xad\xf5\x48\x08\x31\x2e\x4a\x31\xbd\x71\x77\xf2\xe8\xd3\x6f\x4f\x7f\xfe\xdd\x87\x5b\xbf\x71\xe5\xb4\xf8\xd5\xed\x55\xf6\xbe\x4c\x8b\xfd\x66\x83\x6e\xd7\xc0\x16\xd8\x40\x46\x50\xa0\x68\x87\x40\x6f\xf3\x82\x01\x25\xa6\x08\xb2\xa0\x34\x6a\xa2\xa1\x2f\x47\x90\x6b\x9f\x3f\x11\xe4\xaf\xb9\xee\x1b\x7a\xbc\xf9\x11\x9f\xad\x22\x2c\xe0\x44\xdf\x5c\xe9\x96\x15\xfc\xb2\x4e\x9d\x16\xe5\x4d\xf5\xec\x36\x78\x02\xfb\x36\xdc\xb5\x3d\xb3\x69\x97\x4b\x8e\x57\x7b\xd7\xc6\x5a\x2a\xcb\x62\x05\x76\xbb\xd1\x7a\xf8\x80\xa5\x60\x32\xbb\xa2\x5d\x04\x44\x43\xff\x79\x08\x04\xf6\x7e\x5f\xca\x11\x75\xa0\xba\x75\xfc\xfa\xd1\x39\x4e\x98\x6e\x95\x01\x9b\x9a\x00\xeb\x4e\x07\x3b\xf2\x86\xb7\xfd\xe0\xe3\x80\x34\x7a\x2e\x5a\x0a\xaa\x4a\xf3\x7f\xca\x13\x50\x79\xab\x2d\x48\xdf\x20\xd0\x64\x98\xba\xa2\x59\xed\x18\x33\xfa\xa0\xb5\xbc\x7a\x17\x96\x18\x65\x4a\xec\x6d\x95\xf2\x91\x0b\x8b\xfc\xea\xce\x22\xcf\xa5\x16\xf3\xc5\x48\xad\x96\xb9\x56\xcd\x59\x2f\x75\x73\x59\x1b\xa7\x50\x75\xa0\xfb\xea\x08\x00\xe0\x43\x1f\xfa\x90\xf8\xd1\x8f\x7e\x84\xed\xa4\xcb\x1e\xfa\xec\x2e\x2e\x87\x6d\x27\xf5\x0f\x3e\xdf\xc2\xf1\xf0\xa5\x90\x7c\x73\x4d\xe5\x52\x70\x81\xfd\x83\x65\x66\x19\x39\x02\xec\x76\xa2\x7a\xba\xae\xa9\x1c\x4e\x3f\x0e\x0b\x50\xfe\x54\x3e\xd5\x81\xa3\xa7\x7c\xa9\xee\xb4\x7c\x8f\x96\xfb\x1c\xda\x55\x39\x9f\x42\x9c\xe3\xa4\xcf\xe9\x33\xda\x19\x2e\x3a\x60\xe8\x42\xc9\xf0\x07\xe8\x0f\x08\xca\x1b\xcb\xc5\x9d\x16\x0b\x98\x7c\x20\xc3\x95\x6f\x3a\xc3\x55\x2f\xae\x7d\xb8\xf6\x72\xf1\xee\xd1\xe0\x23\xfb\x9b\x33\xa3\x64\x43\x2b\xa1\x5e\x16\x32\x80\x65\x24\x84\x18\x5f\x3c\xcb\x2f\x3c\x79\x30\x7d\xfa\xa9\xb7\xb7\x3e\xfa\xe8\xbd\xc9\xc7\x77\xe7\xf9\x07\x8b\x4a\x5e\x97\x20\xa6\x26\x28\x6e\x39\x36\x62\xf8\xb0\x39\xed\xac\x14\x35\xb4\x82\x2f\xd3\x18\xfa\xce\x95\x74\xb4\x36\x30\x68\x0c\x78\xc4\x17\x30\xd8\xe4\x1b\x59\xf4\x0b\x1a\x0b\xfc\x58\xcb\x17\xf4\x94\x59\xe4\x78\xb0\x3e\x8c\xf1\xef\x3b\x46\xb0\x1c\x29\x07\x5a\x70\x0d\xbb\xa7\x6e\x60\x60\x3b\x6a\xcf\x57\x4a\x78\x23\xb3\x43\x1f\x2f\xf0\xe9\x69\xd7\xd7\x01\xf3\xb0\xc0\x28\x2d\x67\xfb\x7a\x10\xed\x92\x4d\xf7\x55\x8f\xd5\x34\x18\x24\x08\x52\x4f\xe8\xb7\xa7\x6e\x96\x0d\x5b\x08\xd4\x21\x45\x4b\x09\xe3\xe0\x7b\xb5\x42\x08\x89\x46\x46\x74\x0f\xa5\x77\xb5\xb5\xc6\x03\x46\x4e\x44\x42\xe3\xc9\xed\xf6\x69\x2b\x8e\x1a\x06\xec\xf1\x27\xcc\xff\x38\x1a\x0b\x60\xd7\xb5\xb3\x96\x06\xdb\x7a\x0a\xc0\xcd\x82\xa7\x8e\x99\x7a\x66\xd9\x0b\x7f\x19\xd5\x36\x23\x02\x55\xb5\xc1\x11\x99\xd4\xb0\x33\x2e\xe5\xd5\xed\x65\x76\x6d\x67\x99\x5d\x18\x97\x42\x29\x09\x67\x8b\x91\x2e\x55\x6d\x79\xb0\x5d\xa2\x4e\xd8\x02\x2f\x1f\xfd\xe8\x47\xc5\x37\xbe\xf1\x0d\x8e\x96\x6d\x46\x47\x72\x01\x14\x97\x1e\xa9\x3c\x86\x96\xe5\x7c\x25\xe7\x03\x31\x70\xe0\xca\x50\xde\x18\x10\xf8\x7c\x97\x64\xe8\x29\xf0\x70\xb5\x0f\x0e\x50\xd0\x17\x69\x0e\x9c\x60\x53\x60\xca\x2b\xe8\xeb\x46\x69\x7d\x98\x40\x9b\x02\x5c\xc5\x4c\xf2\x85\x80\x86\x86\xc5\xb8\xa5\x93\x4d\x6d\x66\x72\x95\x19\x12\x9e\xc2\x3c\xc0\xc1\xc7\xc5\x17\xd7\x11\x97\x05\xb0\x81\x14\xbd\xa7\xbc\x06\x95\xd9\xdb\xdb\x83\xe7\x9e\x7b\x0e\xbe\xf0\x85\x2f\x28\xb4\xf9\x16\x00\xea\x03\xe4\xf0\xe6\x5b\xad\x75\xbb\x9f\x45\x80\xc8\x73\x05\x93\xab\x27\xc5\xe5\x9b\x87\x5b\xcf\x5e\xbf\x3b\xfe\x6f\x17\xcf\xf2\x0f\x8e\x2b\x79\x43\x6a\xb1\x63\xc1\x80\xd6\xe9\xf7\x0d\x7b\x4b\x83\xf2\xe8\x73\x6c\xd3\xb9\x41\xc8\xcd\x7a\xaf\x43\xd5\xc0\x7c\x61\xc3\xf3\x15\xd6\x85\x7d\x9d\xe2\xb8\x5d\xb4\x94\x75\xa7\x93\x9b\xbb\x1d\xf5\xb0\x41\x9b\x49\x5c\x3b\xc4\xe8\xdb\xea\x10\x41\xdc\x5a\x0f\x0a\x1c\x28\x2f\xae\x90\xb9\x8c\x69\x98\xe6\x9e\x2e\x81\x51\x1a\x0a\x82\x42\x55\x60\x9f\x07\xfa\x97\xfb\x2c\x3e\x28\x23\x65\xcc\x20\x50\x00\x3e\x5a\x86\xa7\x57\x27\x26\x33\x34\x0f\xd9\x0c\x47\x05\x5c\xb2\x7d\x3a\x29\xd0\xf3\x55\xa6\x6f\xdf\x9f\x94\xdf\x78\xe3\xc2\xf2\x4b\xaf\x5f\x9a\x7f\xfd\x8d\xdd\xe5\xeb\x27\x93\xea\x04\xba\xa5\xa3\xde\xe6\x5d\x8b\x05\xf4\x96\x8e\x62\x93\x6f\x59\x24\xc6\xf6\xfb\xec\xba\xaf\xfc\x79\x2f\xc7\xa4\xf0\x8a\xdd\xbf\x72\x5e\x29\xa6\xdd\xd7\xd6\x03\x1f\xf9\x8f\xe7\x95\x0f\x15\x71\xf7\xb1\xd1\x09\x1c\x69\xc0\xce\xdc\x57\x16\x47\x4f\x28\xfa\x0b\xa1\x5e\x8a\xe0\x68\x79\x83\x1c\x85\xe3\x9a\x22\x50\xee\x2f\x17\xe6\xa3\xff\x38\xa4\x89\x9f\x51\x3a\xac\xbf\x22\x65\x28\x7a\xb7\xda\xf0\xd2\xa5\x4b\xe2\xe8\xe8\x48\x7d\xfc\xe3\x1f\x17\x1f\xf8\xc0\x07\x4c\x74\x56\x0a\x21\x44\x03\x56\x24\xd4\xfd\x9e\x09\x21\xf2\xe6\x5f\x21\x41\x8c\xb7\x56\x72\xe7\xfa\xbd\xf1\xe3\xef\xbd\xb3\xfd\x4b\x37\x0f\x27\xff\xdb\xde\x3c\xff\x48\x13\x65\x99\xd4\x07\x63\xd9\xce\x15\x6f\x06\x74\x39\x03\x5c\x11\x9c\x8c\x5b\x66\x3f\xf1\x05\x00\xd1\x1e\x24\x16\x07\x10\xa8\x1e\xdc\x92\x41\xbb\xa4\x63\xc9\xed\x14\xa5\x67\x84\xe0\x51\x67\xd7\x9d\xaf\x13\x56\x0c\x2f\x05\x74\x75\xf0\x2c\xcb\x60\x67\x4d\x4e\x82\xc5\xf5\xc2\xd8\x86\xfd\x21\x48\xa6\xb1\xda\xf2\x08\x19\xe0\xc9\x8e\x8b\xb4\x7f\x39\xf0\x80\xda\xb0\x5f\x01\x54\xf7\xa6\x01\x7a\x20\x46\x40\x2f\xba\xd5\x49\x80\x76\x3c\x59\x87\x14\x02\xf4\x22\x09\x66\x7c\x50\x25\xf1\x79\x27\x1a\xeb\x23\xb0\x14\x8d\x36\xfb\xe2\xb3\x62\x9a\x1e\x22\xfd\xdf\x45\xf5\x9a\x7b\xf3\xd7\x81\x2a\xf0\x52\x56\xd7\x81\x08\xa1\x35\xad\x8f\xbe\x51\xea\x74\xc3\xa7\xdf\xa2\xf1\x4f\xf9\xe2\x36\x31\x87\xc7\xb5\x27\xef\x1a\x10\x86\x3f\xcf\xd2\x64\x99\xd5\xb4\x07\x42\x8b\x26\x92\x65\xf7\x19\xb3\x6c\xd6\xca\xb7\x1b\xb7\xd3\x53\xe4\x99\x16\x17\xc7\xa5\x7c\xf8\xc2\x32\x7f\xf8\xc2\x32\xdf\xce\x95\x28\x4b\xa9\xe7\xf3\x91\x5a\x69\xbc\xaf\xbd\x5b\x46\xb2\x5a\x5d\x6b\xad\x9f\x7f\xfe\x79\xf1\xd5\xaf\x7e\x95\xda\xf6\xd0\x92\x0b\x9e\x2e\x8a\xd0\xb9\x1c\x39\xb6\xf7\x86\x86\x4e\x0f\x9c\xc7\x45\xee\xa9\x8d\xe6\x74\x76\xe9\xae\xa1\xcf\x8f\xfa\x20\x4e\x2e\x27\x83\xd3\x1b\x27\x8e\x2f\xe5\xcd\xc9\x89\xc9\xa3\x3a\x98\x3c\x6e\xc5\xc3\xa5\x83\x20\xff\x9c\x6d\x6e\x80\x0b\x26\x0a\x55\x9a\xbb\xe7\x14\xe1\x12\xe7\xf8\x63\xca\x50\x27\x6f\xe4\x87\xc2\x62\xbe\x8e\xc6\xc8\x14\xeb\x43\x4d\x12\x57\x16\x37\x2c\xd6\x0b\xe7\xe3\x01\x8b\x75\xa1\x80\x09\x08\x2f\x2c\x83\x5b\x07\xa4\x9d\xaa\x01\x40\x5c\xbe\x7c\x59\xcc\x66\x33\x3d\x9f\xcf\xb5\xf9\x62\xa8\x01\x29\x82\xfc\xcd\xa1\x06\x2d\x23\x00\x18\x81\x86\x71\xae\xc4\xd6\xde\x59\xbe\xff\xf8\xdd\xc9\xd3\xcf\xbe\xb9\xf3\xab\x8f\x1c\x4f\x3e\x31\x5d\x65\x3f\x9b\x69\xb1\x2f\xb5\x90\x6d\x78\x18\x5b\x30\x63\x10\x99\x70\x8b\xff\x6d\xbd\x3b\x00\xcb\xb5\x4c\x22\x0c\x7f\x7c\x4f\xf8\x08\x26\x1f\x13\xf4\x97\x7e\xb0\xe5\x37\x80\x08\x2d\x5d\x51\x9d\x71\x7d\x68\xdd\xb1\x12\xcc\x2d\x17\x81\xf2\x3d\xeb\xb1\x15\x8c\x3e\x8c\x6c\xe3\x78\x01\xd0\xe1\x64\xce\x46\x31\x45\x05\x21\xeb\xef\x33\xea\xe9\x6e\xfb\xc0\x7e\x1d\x10\x30\xa8\x9f\xa1\xb3\x4b\x7a\xfa\x88\x0e\x40\xb6\xed\x2a\xac\xb1\xd0\xfb\xc6\x87\x34\x04\x1d\x1f\x46\x2e\x3e\xf7\xc6\xe0\x05\xe8\xf0\x42\x0b\x15\x5a\x5a\x6d\xff\x6d\xeb\xa5\x3b\x1e\x08\x6d\x34\x72\xed\x7a\x6b\x2c\xcf\x26\x47\xe0\xb5\x91\xd9\xf6\x69\xd7\x07\xd6\x18\x35\xe0\x82\xdb\xf7\x24\xac\x3f\xed\x18\x36\x6d\xac\x9b\x31\xd0\x2d\x61\x8a\x16\xf8\xb4\x2f\x18\x94\x65\x3b\xce\x84\xcd\xbf\xed\x5f\x7b\x5c\x50\x7d\x5a\xfe\x80\x8c\x72\x2b\x4a\x6c\x8d\x2a\xf1\xd0\x74\x95\x5d\xbb\x38\xcf\xf6\xb7\x56\x12\x56\xb9\x3e\x3d\xcb\xd5\x5c\x09\xd0\x04\x74\x6b\x04\x4e\x45\xa3\xbb\x36\x7b\x5e\x50\xd2\xe4\x9a\xfa\x04\xce\x57\xf8\x7c\x0c\x7e\xc6\xd1\x84\x1c\xb3\xab\x1c\xf7\x9c\xd3\x9d\x26\xea\x8f\xa8\x9d\xa7\xba\x50\x19\xd8\x47\xf8\xea\xc3\xf9\x52\x9f\x1c\x0e\xb4\xf8\xf6\x17\x99\x44\xfd\xa4\x8f\xde\xe8\xcd\x2d\x8d\x61\xfd\x24\x00\x28\x0e\xb8\x70\x28\xc7\xa5\x28\x1d\x34\xb4\x1c\x4d\xb1\x68\x0e\x3f\xa3\x95\xa7\x9d\x13\x0b\x9a\x38\x5d\x05\xd8\xfc\x31\xc8\xc0\xe0\x82\xb6\x03\x1d\x1c\x74\xe2\x50\xf4\xce\x0d\x32\xda\x51\x40\x68\xb8\xc1\x45\xe9\x25\x00\xe8\x4b\x97\x2e\x89\xc3\xc3\x43\x05\xc0\x7f\xe6\xdc\xfc\xcb\x9a\x7f\xed\x7e\x16\x09\x62\x3c\x29\xe5\x85\xab\xf7\x8b\x77\xbd\xe7\x60\xfa\xdc\x7b\xdf\xda\xfe\xc4\x43\xa7\xa3\x8f\x17\x95\x7c\x42\x80\x98\x50\x07\x61\x6b\x88\x0c\x0f\x71\x64\xee\x6d\x1b\xfc\x9b\x9d\x36\xfc\xf0\xb3\x56\x8c\x6e\xad\xa9\xed\x80\x80\x9c\x1e\x4a\x40\x14\x3a\x05\xd5\x36\xc2\x5d\x7e\xed\x28\x90\xdc\xde\x69\xa4\xa6\xa5\xdd\x8e\x44\xe3\xc8\x10\x01\x1b\x38\xaf\xbf\xbf\xa7\x6d\x46\x3b\x22\x60\x74\x40\x7c\x7a\x8e\xc3\x92\x21\xec\xbe\x80\xfe\xdb\x3c\xe6\xd3\xea\xd5\xb6\x8a\x20\x75\x20\xa7\xe3\x9a\xf6\x6a\x9d\x1c\xab\x46\x0f\xc8\xe0\x3a\xb7\x27\xcb\x42\xc7\x44\xa0\x82\xd8\xe1\xeb\xe6\xff\x78\x5f\x46\x17\x11\x69\x78\x03\x8a\xd8\xd0\x08\x0e\xee\xc3\x76\x7f\x0f\xfa\x1d\xa0\x06\x69\xe0\xd3\x6f\x0d\x18\xb1\x37\xc9\xea\x4e\x3f\x1c\x86\xd1\x4d\xab\xd7\xcd\x0e\x00\x48\x3f\x04\x54\xa8\xee\x46\x47\x8e\xbe\xfd\x94\x5a\x77\x2d\xc0\xcd\x85\x5e\x5b\x6b\xf3\xe9\xb5\xb0\x06\x92\xe9\xc7\xee\x86\xd7\x97\x6e\xdc\x35\x7b\xa2\xa0\x69\x23\xcb\xfb\x91\x86\xea\xa2\x99\x9d\x29\xec\xa2\x45\xed\xdc\xc9\x33\x2d\x2e\x4e\x4a\xf9\xc8\x85\xc5\xe8\xda\xc5\x79\x9e\x2d\x46\xea\x78\x31\x52\xab\x4a\xd6\x36\x4e\x83\xd6\x0d\x50\x69\xd4\xd6\xba\x89\xc2\xb4\x7b\x5e\xae\x5f\xbf\x2e\x8f\x8f\x8f\x5d\x8e\x3b\x26\x1f\x3f\x8b\x8d\x2e\x70\xfe\x8f\x2b\x3b\x24\x42\xe1\x2a\xab\xc9\x33\x6e\xc3\x2e\xf5\x27\x2e\xbf\x16\xd2\x8d\xfa\x52\x5a\xc6\xb7\x9c\xe3\x92\xcf\xd1\x71\x75\xa6\x7e\xd7\x3c\xe7\x74\xa7\x2f\xfe\xda\x10\x61\x05\x42\xfb\x40\xd6\x59\xcb\xdb\x64\x72\xe9\x3a\x54\xa7\x94\x72\xbe\x76\xf2\xe5\xd1\xb6\x33\x29\xf5\x53\x36\xb6\x0f\xcc\xe6\x5b\x74\xe2\xad\x79\x6e\xfe\x75\xe7\xb2\x80\xc8\xa5\x86\xc9\x74\x95\xed\x3c\x7a\x6f\x7c\xe3\xa9\x3b\xd3\x5f\x7c\xf8\x7e\xf1\xd1\xad\x95\x7c\x5f\xa6\xc5\x2e\xab\x89\xb6\xfe\xf4\xc0\x09\x67\x60\x39\x16\x22\x90\xd3\x13\x88\xc1\x45\x02\x7f\xd7\x9e\x11\xcc\xd9\x70\x37\xcf\x38\x39\xdc\x17\x40\xd6\xd7\x50\xba\xdf\x16\xbc\x6e\xfd\x43\xd9\x04\xb9\x72\xd5\x09\x80\x38\x56\xa4\x0b\xe6\x60\x01\x9f\x44\x7d\x6c\x89\x0c\x78\x13\x44\x7e\x4f\x6b\xab\xf5\x81\xeb\x37\xab\x8c\x86\x66\x39\xa7\x43\xaf\x66\x89\xa3\x05\x22\xad\x5c\x02\xa6\x30\x98\x44\x4c\xa9\xd4\xae\x5d\x50\x0b\x35\x07\xab\x58\x80\x0a\x3b\x6e\x0b\xd0\xe8\x16\xd8\xb5\x8e\x9c\x01\xb7\x58\x4e\x7f\x39\xb0\xd1\xca\x6a\xbb\x4e\x3e\x06\x39\x1a\x3a\x00\xd3\x45\x24\x34\xfa\x90\xc7\xfe\x69\x89\xfe\x1c\xec\x9f\x5d\x84\x0f\x9b\xa3\xdd\xad\x09\x00\xc1\xbf\x1d\x66\x97\x63\x7a\x5b\x03\xe0\x9f\xd4\xc0\xe3\xb4\xaf\x0b\x80\x16\x7a\x59\x4a\x7d\xeb\xee\xa4\xfc\xa7\x6f\x5f\x3b\xfd\xfb\xd7\xf6\xe7\xaf\x1c\x8f\xab\xa3\x4a\xea\x39\x08\xeb\xe0\x3a\xf3\xa3\x8d\x00\xc8\x36\x06\xf6\xbc\x84\x6c\x71\x8c\xdf\x0a\xd9\x5a\x8e\x1e\x3c\xcf\x7d\x7a\xc6\x96\x1d\xea\x6f\x63\xea\x9e\xd2\x0e\xa9\xf2\x31\xfd\x50\x7e\x5e\xfd\x32\x86\x88\x43\x3c\x14\xc9\x99\x6b\x0e\x39\xb9\x94\x08\xd1\x18\xba\x18\x44\xeb\x42\xdb\x29\x1d\x4b\x91\x2e\xa7\x2f\x57\x3f\x6c\x13\x29\x52\xa5\xeb\xaa\x98\x8e\x76\x18\x87\x74\x39\x04\x8a\x79\x5b\x79\x45\x51\x40\x55\x55\x1a\x81\x16\x89\x3e\x39\x34\xe7\xb3\xe4\xd0\x44\x5a\x84\x10\xb9\xa8\x7f\x3c\x6d\x6b\x7f\x36\x7a\xe8\x99\x3b\xd3\xf7\xff\xf4\x1b\xdb\xff\xfb\xd5\x93\xe2\xbf\x4f\xca\xec\xbd\x19\x88\x2d\xec\x04\xf1\x4b\xa0\x79\x13\x6d\xff\x76\xfe\xa6\xd5\x48\x00\x80\x59\x6b\xe7\xa0\x80\xf1\x53\xdd\x72\xbf\xed\x8c\x84\xc0\x65\x04\x74\x54\x8c\x83\xa5\x96\xb2\xbd\xec\x1c\x40\x67\x6e\xed\x5f\xdb\x15\x86\xb8\x71\x5a\x5d\x1d\xec\xaf\x42\xe8\x1e\x92\xee\xcd\x1e\x1d\xaf\x27\x04\x72\xb0\xb4\x0e\xb8\x36\xfd\x3a\xd0\x36\xe8\x3b\x61\x68\xdb\xbe\x17\x99\x01\xd1\xbe\x00\x5b\x83\x93\x78\x33\xfc\xdb\x34\x18\x2c\x58\x75\x30\x4e\x1c\x04\x58\xdf\xf2\xf2\x6b\x2d\xb6\xa2\xa4\x36\xf6\xb5\x5d\x99\x3e\x68\xe9\xfa\xb6\x55\x5b\xd8\xe3\xa5\x5e\x4e\x12\x96\x33\xaf\xc7\x60\xd3\xbe\xe4\x00\xb9\x76\x19\xd2\xd2\xa2\x1b\x47\x75\x30\xab\x01\x4a\x40\x96\xa8\x04\xea\x63\x81\x75\x13\xed\x9e\x1a\x21\xfa\x75\xea\xe6\x8b\xfd\xb9\x7e\x57\xd7\x4e\x27\x8d\x80\x92\x0d\x7e\x85\xd5\xbf\x1d\x28\x33\x32\xd1\x12\x17\x91\xd1\x8d\x15\x3c\x7e\xbb\xa8\xa2\x69\xcc\xfe\x27\xeb\xdd\xbc\x10\xa2\xfb\x02\x49\xa3\x76\xac\x71\x9e\xb0\x36\xbe\x77\x80\xad\x1b\xd7\x56\x9f\xa1\xb6\xa8\xfb\x04\x40\xd4\x5f\x1e\x5d\xda\x2a\xb3\x9b\x0f\xcd\x46\x0f\x4d\x57\xd9\xc9\xc9\xa4\x3a\x59\xe6\x6a\x51\xef\x7b\x11\xca\x34\x87\x89\xb8\x00\x6a\x5e\x66\xd9\x08\x27\xea\x33\x8c\x2a\x46\x1d\xce\xd6\xfb\xa2\x1d\x5c\x39\x9a\xb0\x4d\x8f\x4d\xd8\x96\x73\xbe\xcd\xe7\x97\x5c\x7a\x73\x3e\xd3\x55\x8e\xee\xc5\xf1\xf9\x56\x1f\x7d\x28\x6a\x85\xf9\x60\xf3\xe4\xf3\xb9\xae\xf2\x34\x09\x00\xd0\xe6\x24\x32\xac\xa0\x72\xfc\xf5\x5d\x03\xf8\x81\x43\x6c\x07\xbb\xf4\x48\x41\xd4\xbe\x64\xe8\x42\xb4\xbe\x28\x0e\x6d\x17\x0e\x3d\xfb\xda\xc9\x75\x1f\x2b\xb3\x95\xb7\x5c\x2e\x2d\x46\x68\x89\x48\x02\xb4\xe7\xb4\xe4\x4d\x99\x02\x00\x0a\xa9\x61\xf2\xe8\xbd\xf1\xd5\x67\xde\x9a\x7e\xe4\xd1\x7b\xe3\xff\x3e\x5d\x66\xcf\x65\x5a\xec\x51\xdf\x44\x9d\x87\x25\xa7\x45\x32\xc8\x19\xb5\x46\x97\x5b\x10\xb1\x0a\xb7\xb9\x14\x24\x19\x02\xa6\x14\xcb\x87\x73\x9f\x6d\x79\xec\xe8\xb1\xb3\x40\x06\x18\xf0\x35\x90\x59\x85\xca\x60\x39\xf6\xdf\x16\xfd\x58\xbc\x63\x6a\x43\xdb\xa0\xad\x93\x36\x4e\x13\x6c\x7d\xd1\x5b\x6f\x6f\x63\x2a\x70\xed\xd0\x39\x90\x1e\x18\x22\xff\xb7\x1c\x8d\x85\x3f\x2c\xae\x68\x3c\x8a\xd6\x3a\x0a\xbb\x88\xb4\xea\xa3\x6d\x30\xd7\xca\x12\x44\x5f\x32\x10\xda\x5b\x82\x85\x0c\xe0\xb0\x37\xde\x22\xd0\x05\xba\xfd\xe4\x1b\x03\x3f\xae\x71\xa8\x23\xc6\xe3\xd2\xd6\x4d\x23\x79\x0d\xe0\x13\x75\x7f\x70\x23\x1d\x3b\xf6\x5a\xbc\x35\x52\xf8\x29\x41\x41\x08\xe9\x2f\xb3\x71\x98\xab\x8b\xf5\x82\x41\x32\x31\x79\x0b\x86\x9a\x1b\x2d\x00\xac\x23\x07\x10\x31\x3d\x28\x52\xf7\xf4\xc3\xd2\x9c\x13\xb1\x03\xdd\x60\xc6\x89\x80\x4c\xc1\xfe\xee\x3c\xff\xf8\x7b\xde\x9e\x3e\x76\x71\x96\xff\xdd\xb7\xaf\xcd\xfe\xf9\x87\x97\xe6\xb7\x4e\x8b\x0a\x34\xc0\x1c\x95\xb6\x7e\xef\x88\xa4\x98\x88\x45\x8c\x8d\xe7\xec\x2c\x8e\x86\xc7\x46\x0b\x42\xd1\x05\x17\x1d\xa5\x8d\x89\x40\xe0\xf2\x2e\x3f\x11\x2a\x47\xe9\x63\x22\x4c\x98\x3e\x24\x93\x2b\xc3\xe9\x34\x38\x45\xf9\x88\x44\x81\x9b\x5e\x42\xda\x14\xbf\xd4\xd0\x1e\x8d\x72\x98\x44\x43\x7d\xa9\xcb\x43\x2e\x80\x12\xb5\x2c\x24\xd0\x2f\xaa\xbe\xf8\xe2\x8b\xad\x6e\x06\xac\x20\xe0\x62\x1d\xd9\x0f\x00\x45\x51\x8a\xe9\x7b\xdf\xda\x7e\xe2\x3d\x6f\x6f\x7d\xe2\xf2\xe9\xe8\xa3\x45\x29\x6f\x0a\x80\x02\x3b\xfb\xe4\x11\x41\x52\xcf\x58\xd2\x6b\x22\x03\xc3\xf2\x14\xde\xdc\x03\xf6\x79\x62\x9d\x7a\xfa\x30\xfa\x86\xea\x64\xf1\xea\x63\x0c\xb7\x6a\x9e\x0a\x78\x7c\x83\x33\x1f\x5f\xd7\x7b\x55\x40\x69\x00\xd0\xa2\x1e\x53\x4a\x68\xa5\x04\x94\xcd\x5f\x55\x49\x5d\x9a\x7f\x4a\xe8\x52\x09\x50\x5a\x80\xd2\xa0\x41\xd5\xed\xab\x94\xd0\x4a\x49\x50\xba\x19\x97\x02\x00\xa4\x06\x29\xb4\x90\xf5\xdf\xe6\x1a\x40\x66\x4a\xc8\x4c\x43\x9e\x29\x91\x67\x4a\xe4\x52\x8b\xfa\x39\x80\x94\x0d\xbd\x54\xf5\x41\x86\xa0\x41\xd2\xb7\x77\x7a\xed\xaa\x77\x4a\x17\x7b\x69\x63\x18\x05\x68\xa2\xc6\x73\x6a\x67\x6e\x2a\x0d\x98\x0b\xe1\xf1\x19\xae\x33\x2d\x56\xd3\x6b\x55\x4a\x78\xf3\x64\x5c\xfd\xd3\x2b\x0f\x9d\xfd\x9f\xdf\x7e\xf8\xf4\xeb\x07\x3b\xab\x23\xe8\x7f\x32\x0d\xd0\x8c\xb5\x81\x9f\x48\xff\xb8\xd2\x26\x96\x76\xce\x33\xfd\xb8\xfd\xf4\x5a\xf2\xcd\xdb\x78\x4a\xb4\x22\xb4\x36\x96\xc2\x6b\x5d\x99\x29\xfc\x7c\x6b\x95\xa9\x65\x39\x40\x83\x79\x85\x90\xe9\x10\x64\x0b\x00\x00\x7f\xf4\x47\x7f\x04\x7f\xf1\x17\x7f\x01\x00\x28\x22\xd0\xfc\x38\x22\x40\x7b\x84\x7f\xf7\x4b\xce\xcd\xdf\xfd\xd3\xd1\xde\xfb\xde\x9c\xbe\xff\xc6\xdd\xc9\x27\x2e\xce\xf3\x0f\x8f\x2a\x71\x55\x00\x14\x56\x44\xa0\xf7\x66\x6e\x27\xec\xa8\xe9\xa9\x9d\x98\x05\xf3\x26\x6e\x45\x15\x28\x7d\x6c\xaa\x65\xd7\x48\xc0\x02\x05\x2c\x68\xe9\x5e\xa3\x5d\x27\xf4\xf6\x2b\x86\x9d\x61\xb7\x69\xd7\xa5\x6f\xaf\x4e\xe8\x55\xdb\x55\x1e\x93\xf5\xde\xce\x05\xd8\xdb\x09\xf0\xeb\x37\xa3\xae\x6e\xff\x69\xd0\x0d\x28\x51\x42\x97\x4a\x42\x59\x09\xad\x2a\xa9\xcb\x32\xd3\xe5\x32\x53\xf3\x45\xa6\xe7\x8b\x5c\xcd\x97\xb9\x5a\xae\x32\xbd\x2c\x33\x5d\x2e\x32\x35\x5f\x66\x6a\xb9\xcc\x75\xb9\xcc\xf4\x72\x95\xa9\x06\xb4\xd4\x00\x45\x77\x60\xa5\xe5\xaf\xeb\x63\xde\x15\x8e\x58\x34\x60\x05\x04\x80\x14\xba\xb9\x07\x80\x4c\x09\x29\xb5\xc8\xa5\x06\x99\x2b\x91\xe7\x4a\xe6\xa3\x4a\xe4\xa3\x4a\xe6\x45\x25\x8a\xa2\x14\xc5\xa4\x94\xc5\xa8\x92\x93\x71\x29\x26\x45\x29\x8b\xa2\x92\x93\x51\x25\xf2\x5c\x89\x22\xd3\x90\xe7\x4a\xe4\x52\x89\x5c\x68\x21\x6b\x59\xa2\x96\x21\x34\x68\xb3\x2c\xa4\x51\xfb\xa1\x36\x36\xe1\x02\xe7\x86\x62\x14\x66\x10\xa2\x1f\x85\xc1\x7b\x52\xba\x50\x11\xd9\x0b\xd2\x6c\x40\x11\x34\x02\xd9\xcc\x91\x36\xcc\x22\x6c\x59\x16\xd8\x46\x7a\xf4\x3e\xe3\x47\x7a\xf7\xbe\x00\xd7\xf6\xc0\xc5\x23\x5c\x37\x8d\x20\x48\xe5\xed\x7d\x52\x35\x7d\xff\xf3\x74\x3b\xb5\xc0\x84\xce\x33\x1a\xa5\x01\x52\xc7\xb6\x2c\x8d\xec\x68\x00\x10\x32\x57\xfa\xda\xce\x22\x7b\xe1\x5d\xc7\xc5\x9d\x37\x76\x17\x6f\x1e\xec\xac\xcc\x59\x2f\xad\x3d\x6b\x7e\x26\x20\xb4\xd7\x24\x25\x2a\x12\x93\x42\x2f\x99\xf8\x9e\x7b\xc1\xa5\xd1\x14\x80\xbe\x5e\x98\x5f\xea\xaa\x42\x6c\x3d\x7d\xcf\xd6\x91\xe9\xe2\x47\xf3\x5d\xc1\x02\xea\x3b\x5d\x6d\xe9\x2a\xa7\x72\xe6\x21\x97\x62\x14\xf4\x55\x2a\x96\x77\x68\x59\x26\x46\xa7\x54\x59\xae\xb2\xb1\x60\xc6\x17\x7a\x73\xc9\x8e\xd5\xbb\x2d\xb3\xb7\xb7\x07\x47\x47\x47\xb0\xb5\xb5\xd5\xdb\x88\x8b\xa2\x2d\xe6\x5c\x96\xfa\x50\x39\x0d\x45\xa6\x44\xbd\x34\x74\x67\xfa\x91\x77\xdd\x2b\x7e\x7d\x67\x99\xbd\x3f\x57\x62\x0f\x40\xf4\x7f\x60\x13\x6f\x10\x64\x12\x76\xd4\xfc\x2e\x96\x8e\x4f\x07\x2e\x98\x2f\x75\x0c\x19\xd8\xc6\xd2\x0a\x8d\x23\x19\xb6\x85\x44\x0e\x02\x19\x52\x0c\x6a\x88\xb6\xe0\x36\xc9\x9d\xf1\x17\xa8\x2e\xda\x2a\x63\x1b\x5d\xbc\x81\xb4\x97\x04\x23\x93\x0b\xcb\x08\x47\x11\xda\x20\xe4\x94\x33\x25\x34\x28\xd9\x45\x48\x4a\xa9\x97\xa5\x54\xcb\x45\xae\xe7\x67\xa3\x6a\x36\x1f\xe9\xf9\x22\xaf\xe6\xf3\x5c\xcd\xcf\x46\xf5\xbf\xf9\xa8\x06\x27\x06\xac\x54\x42\x97\xba\xde\x54\x59\xea\x0e\xa0\x28\x55\x03\x13\xa5\x41\xab\xa6\x5d\x7b\x60\xdd\xf8\x60\x00\xa8\xc8\xb3\xac\x0e\xe8\x00\x00\x32\x4a\xc2\x5c\x6b\x00\x09\x42\x36\xc0\xa6\x8b\xca\xd4\xd7\xb9\xd4\x42\x66\x4a\xe4\x23\x25\xf2\x1a\xb4\xc8\x62\x5c\x8a\x62\xba\xcc\xa6\xd3\x55\x36\xd9\x5a\xc9\xe9\x64\x25\x27\x93\x52\x4e\xc7\xa5\x9c\x14\xa5\x2c\x72\x05\x45\xae\x64\x51\x47\x72\xa0\xe1\xdd\x6d\x5a\x35\xfb\x82\xec\x86\x35\x4e\x9d\x71\xb0\x68\x53\x30\xbb\xdf\x0a\x3b\xe2\x66\x6c\xb6\x5b\x53\xdb\x4d\xaa\x35\x50\xea\x30\x0e\x06\xae\x5d\xc7\xe2\x8d\xb7\xf5\xd2\x93\xe8\xe6\x09\x5d\x97\x69\x8a\xe2\x1a\x00\x34\xfb\x96\x5a\x5d\x70\x32\x6d\xd0\x7d\x49\x45\xeb\xdc\x91\xa2\x76\xb0\x5b\xc5\x6a\xb6\x0e\x0c\x22\x18\x22\x0c\x78\x83\xe6\x5c\x1c\xe8\xcd\x09\x8d\xeb\x84\xf6\x22\x99\xf6\x55\x00\xe5\x32\x57\x77\x0e\xb6\x57\x3f\x3a\x9e\x94\x33\xe8\x7e\xdc\x55\x61\x79\x38\x3d\xfe\xf8\xe3\xf2\xb5\xd7\x5e\x4b\x59\xd6\x00\x08\x3b\x4a\x5f\x59\x57\x9e\xcf\x51\xfb\xf2\x5d\xbe\x2c\xf4\xdc\xf5\x12\xec\xd3\x2b\x14\xcd\xe7\xf8\x0f\xf1\xa5\xdc\xbd\xe1\x25\xa1\x2f\x33\x14\x5d\xe2\xca\x59\xbe\x3a\x67\x1e\x1a\x86\x58\x40\xc8\xb9\xc7\x76\x3e\xf7\x6c\x68\xb8\x68\x48\x64\x67\x5d\xb9\xbe\xe5\x1c\xdc\x66\x5c\x87\x72\x13\x85\x96\xe1\xfa\x00\x00\x00\x7e\xf9\x97\x7f\x19\x1e\x7e\xf8\x61\xa9\xb5\x36\x13\xda\x7c\xee\x9c\xa3\x88\x8b\x39\x09\xb7\x90\x20\x8a\xc9\x4a\xee\x3c\x7e\x77\xf2\xd8\x7b\xde\x9e\xfe\xea\xc3\xf7\x47\x1f\xdb\x5a\x65\x4f\x4a\x0d\x3b\x02\x84\xc5\xbb\x35\x58\xc2\xb5\x23\xc3\x4e\x9d\x11\xed\x36\x7e\x62\xb3\x68\xbf\x7d\xe2\xdf\x8d\xb6\xb1\x05\x95\xd5\xf2\xec\x39\x10\x87\x56\x18\xa7\x10\xbb\x6c\xe9\xd3\x93\xd1\x61\x09\xee\xfc\x10\x9b\x25\x7a\xde\x62\x27\x62\xa0\x49\x19\x4b\xa6\xe8\xf8\x60\x90\xc5\xbd\xe1\x9a\x37\x5a\x00\x0d\x26\xea\x51\x49\x55\x96\x52\x2f\x57\x99\x5e\x2e\x73\x3d\x3f\xcb\xd5\xec\x6c\x54\xcd\x66\x85\x9a\xcd\x8a\x6a\x76\x5a\x54\xb3\xb3\x91\x9a\xcf\xf3\x6a\xbe\xca\xf4\xb2\x92\xba\xac\x04\x2c\x95\xac\x41\x4a\x25\x41\x69\xa1\xcb\x3a\x72\x02\x15\x00\xa8\x46\xba\x02\xd0\xf5\xb8\x33\x5f\x70\x68\xad\x00\x7d\xb9\x02\xcc\xfc\xc6\x11\x06\xec\x58\x84\x34\x7d\x66\x7d\xd5\x06\xd0\x8c\xe3\x0a\xda\x31\x6a\x18\xe1\x7b\x03\x6a\x46\x75\xb4\x46\xc8\x4c\x41\x9e\x69\xd1\x2e\x33\xe5\x4a\x14\x75\x94\x46\x16\xe3\x52\x4e\xb6\x97\x72\xba\xb3\xc8\xa7\xdb\xcb\x6c\x77\x6b\x25\x27\x93\x95\xdc\x29\x2a\x51\x8c\x2a\x59\xe4\x4a\xe4\x59\x03\x88\x84\x06\x49\x47\x42\x0b\x28\xac\x68\x84\x0d\x88\x0d\x7d\x7f\x8c\x22\x70\x84\xf8\x9a\xcf\xac\xfb\x40\xa2\x9f\xba\xaf\x75\x44\x3b\x86\x35\xb3\xe9\xb6\x3d\xc8\x4f\x77\x7a\xb5\x5a\x0a\x4e\x3b\x5c\x4d\x34\xca\xf0\x38\xb7\xf8\xe3\xb9\x29\x28\x4e\xee\xed\xb5\xc1\x91\x20\x0b\xdc\xbb\xd4\x10\xfd\x83\xfb\x3a\xd0\x07\x6a\x91\xab\xdb\xb7\x2e\xce\xff\xed\xfb\x97\xcf\xbe\x7f\x77\x5a\x2e\xa1\xf3\x47\x38\x82\x6c\x81\x98\x06\xb4\x98\xc4\x45\xbd\xb9\xe4\x72\xee\x3e\x1f\xe0\x7a\xeb\x8f\xe5\x1d\x02\x03\x31\xbe\x28\x25\x3a\x12\xa3\x63\xaa\x2f\x0c\x01\x24\x57\x1d\x63\xdb\xdb\xf5\x22\xef\xf3\xdb\x00\x80\xd0\xad\x83\xe1\x3a\xe1\x36\x1f\x7d\x0a\xd2\x8d\x2d\x3b\x94\x6e\x68\x72\x75\xa4\x8f\x2e\x76\x50\xf7\x74\xbf\x7a\xf5\x6a\xfb\xcc\x9c\xcf\x62\xf6\xb3\xb4\x11\x96\x06\xb8\xe4\x5a\x4c\x76\xe7\xf9\xde\xbb\x0f\xb7\x9e\xba\xf9\xce\xe4\x97\xaf\x9c\x14\x1f\x1d\x97\xe2\x86\x00\x98\x58\x67\x60\x34\xc9\xb2\x3b\x38\x84\xcd\x28\x86\xe9\xf1\x9b\xa8\xeb\x08\x74\x6b\x99\xa6\x7b\x65\xf4\xa4\xce\x98\xf3\xfc\x90\x0e\x0e\xa0\x42\x93\xb3\xbe\xa2\x1f\x9a\x17\xa8\x10\x17\x1d\xea\x87\xeb\xfb\x06\x9e\xd3\x00\x7f\xa2\x6b\x74\xd0\xe8\xa9\xd9\x63\x62\x40\xca\x7c\x54\x9d\x9c\x16\x6a\x76\x5a\x94\x27\x27\xe3\xea\x64\x56\xa8\xd9\xd9\x48\xcd\xe6\x79\x1d\x41\x29\xb3\x9a\x6e\x25\xf5\xb2\x94\x7a\xa9\xa4\x2e\x35\x40\x05\xf5\xfe\x15\xf3\x49\xa9\xb9\x56\xc8\x01\x28\x00\x50\xcd\x4b\xbe\xc9\xaf\xc7\x5a\x43\xe3\x02\x2d\xe6\xbe\xf7\xa5\x55\x03\xa4\x09\x1d\x05\x2f\xd2\xca\x17\xd6\xbd\xd4\x00\x52\x81\x96\x42\x0a\x09\xa0\x65\x99\x81\x6c\x5a\xa8\x76\x66\x1a\xa4\xd4\x30\x92\x5a\xe4\x99\xaa\x97\x90\x9a\x65\xa5\x62\x5c\xca\xc9\x64\x25\xa7\xd3\x55\x36\xdd\x5e\x64\xd3\xed\xa5\xdc\x99\xae\xb2\xe9\x74\x29\xa7\x93\x52\x4e\x47\x95\x2c\x32\x25\x8a\xac\x06\x34\xd2\x00\xf4\xee\x33\xe3\x7e\xdf\x5a\x11\x8a\x36\xd2\x06\x1d\xf2\x84\xee\xde\x8c\xc5\x6e\x15\x84\x44\x48\x4c\x79\xe8\x3a\xbd\x03\xa9\x60\x8d\x35\x1b\xf8\xda\x60\xa6\x8d\xa1\xd0\x73\x59\x1a\x25\xf0\x67\xdb\x86\x8b\x05\x40\x88\x1e\x06\xbb\xb5\xd1\x26\x8c\x43\x9a\x33\x62\x7a\x9f\x9c\x53\x99\x16\x7d\x37\xaa\x7b\x5f\x3f\xb5\x20\xa6\x2e\xb1\xcc\xd4\xd1\x9b\xbb\xcb\xaf\xfe\xe7\xd5\xd9\xbf\xbf\xb5\xbb\x38\x5a\x4a\x65\x00\x56\xfb\x13\x25\xe8\x63\x03\x25\x84\x80\x97\x5e\x7a\x49\xa2\x7d\x2e\x9c\x33\xf7\x81\x9a\x14\x3f\xe6\x8a\xa0\x84\xe8\x63\xe5\xd1\x08\x8b\x4f\x1f\x6e\x65\xc0\xb5\x5a\x10\xf2\xb7\xbe\xe0\x84\x4f\xb6\xef\xda\x45\x3b\x84\x77\x2c\x58\x84\xfe\x72\x81\x9d\x7c\xa8\x2a\x26\xc5\x38\xe5\x50\x83\x84\x74\x8a\x95\x1d\x3b\x58\x63\x13\xd7\xc8\x5c\xb4\x24\x75\x70\x99\x32\x12\x00\xd4\x6f\xfc\xc6\x6f\xc8\xeb\xd7\xaf\x1b\x43\x60\x96\x88\xda\x37\x12\xf3\x5b\x43\x42\x88\x42\x6b\x9d\x17\x95\x9c\x5e\x3e\x1d\x5d\xbd\x79\xb8\xf5\xec\xcd\xc3\xc9\xaf\xee\x9d\xe5\x1f\x2e\x2a\xf9\x18\xd4\x6f\xb5\x00\xd0\x19\x1a\x76\x4d\xa8\xf7\x12\xe5\x83\x04\xe8\x31\x31\x62\xdd\x82\x38\x8a\x34\x60\xcb\x4e\xd9\x10\x27\xc0\xad\xac\xd8\x25\x75\x6b\xc0\x0d\x51\xef\xd3\x6b\x73\x8d\xbc\x08\x7d\x93\x04\xcb\xcc\x3b\xaa\x88\xce\x6f\xa1\x0b\xfd\xf5\x2d\xfe\x30\x94\x69\x31\x6d\xd3\x29\xd0\x50\x22\x90\xb2\xcc\xd4\xf2\x6c\xa4\x66\xb3\x42\x9d\x9c\x16\xd5\xc9\xfd\x71\x75\x72\x32\xae\x4e\xce\x8a\xea\x64\x9e\xab\xf9\x22\x57\xf3\x55\xa6\xe7\xa5\xac\x23\x2a\xba\x8e\x9c\x94\x0d\x20\x29\x1b\x1d\x4b\x00\x50\x02\x84\x02\xf4\x45\x06\x02\x2d\xed\x3f\x04\x4c\x54\x53\x37\x6c\x04\x71\x1e\x6d\x03\x85\xae\x7b\x51\x17\xe8\x40\xb5\x33\xf2\x82\x36\x8f\x9b\x3c\x0c\xc0\x25\x90\x31\x8e\xf6\x6c\x49\x25\x40\x2a\xd0\x79\x99\x81\x5c\x80\x96\xa7\xf5\x52\xb7\x14\x0a\x46\xb9\x16\xf9\xa8\x8e\xc8\x4c\x8a\x4a\x4c\x26\x2b\x39\x99\xae\xb2\x9d\xed\x65\x36\xdd\x59\x64\xbb\x35\xa0\xc9\x76\xb6\x56\x72\xa7\xa8\x64\x31\xaa\x44\x0d\x66\x50\x44\xa6\x73\xea\xfd\xbd\x21\xdc\xf8\xa0\xd3\x47\x50\x5a\x32\x18\x71\x9e\x46\xf7\x1a\x65\x38\xc7\x10\x40\x3b\xc2\xf0\x98\x17\x88\x21\x8d\xc0\xd0\x68\xa4\x70\xe9\xc1\xec\x71\xa1\x9f\x89\x5b\xd7\xe8\xf3\xfa\x7e\x14\xb2\x6f\x39\x34\x2e\x0b\x02\x56\x52\xcd\xdf\xd9\x5e\x7d\xe7\xbb\x57\x66\x5f\x7b\x63\x77\x79\x67\x91\x6b\xd5\xec\x17\x92\x74\xdc\x08\x21\x14\x8e\xf2\x35\x4b\x45\xe6\x31\x05\x17\xd4\x16\x0f\x7d\x41\x0e\x45\x38\x62\x7c\x85\x2f\x02\x8f\x75\x08\x05\x07\x52\x7c\x52\x4c\x04\xc9\x47\xeb\xab\x17\xa7\x53\x4c\x04\x67\x28\x3f\x6f\x1b\x63\xe0\xe2\x2a\x94\x1a\x71\x09\xd1\xa4\x94\x77\x0d\x94\x21\x11\x97\x18\x70\x14\x42\xce\xbe\x67\x34\xb9\xe4\xe1\xfa\xf8\xde\x16\x14\x00\xc0\x8d\x1b\x37\x70\x9e\x99\xd4\xed\x19\x2d\x66\xf3\x2d\x68\x28\xb6\x56\xd9\xce\xc3\x27\xc5\x23\x4f\x1c\x4c\x3e\x70\xfd\x68\xf2\xab\xbb\x8b\xfc\x03\x99\x12\x57\xad\xb7\xfb\x36\xec\x2c\x78\xeb\xd8\xcb\x13\x76\xb6\x79\xa3\x34\xc6\x1d\x19\xc7\x9e\x11\xb3\xde\xe0\x0c\x99\x23\xc0\xdd\xd9\x42\x67\x34\xa5\x7d\xde\xa0\x0f\x81\x7e\x03\xc6\xec\x2f\xc0\x6f\x86\x3d\x5b\x2a\xec\xaa\xf5\x3f\xf5\x44\xda\x59\xc6\xba\x71\x18\xcc\x33\x6e\x8f\x0f\xae\x87\x6e\x32\xca\x7a\xb3\xec\x72\x95\xa9\xe5\x22\x57\xf3\xd3\xa2\x32\x20\xe5\xf8\x74\x5c\x5f\x9f\x8d\x9a\xa8\xca\xa8\x9a\x2d\xea\x65\x9f\x25\x08\x58\x41\x3d\x16\xda\x1f\xa6\x6b\xa2\x26\x25\xca\xef\x81\x15\xe8\xc6\x57\x0f\xbc\xe0\x08\x0c\xf4\xe7\xb9\x33\xd2\x42\xee\x7b\x1b\x53\xc9\x12\xa6\x49\x56\xa4\x85\x82\x16\xf4\xcf\xca\x43\x20\xc6\xfa\xac\x1f\xfd\x38\x28\x98\x48\xa3\x96\x20\x97\x5a\xe5\xab\x4c\xc8\xd3\x51\x95\x0b\x21\xa4\xd0\x30\xca\x94\x28\x8a\x52\x4c\xb6\x56\xd9\x74\xcb\x00\x99\x45\xb6\x7b\x61\x91\xed\x5c\x58\x64\xbb\x0d\x90\x99\x16\xa5\x9c\xe4\x4a\x14\xb9\xf9\xf2\x09\x2f\x71\x98\x3e\x44\x51\x17\x6b\x73\xab\x00\x70\xec\xc1\x6d\x89\x08\x98\xeb\x1e\x19\x52\xad\x3b\xe7\x6e\xa2\x24\xac\x40\xb0\x3e\x53\xb6\xa2\x27\x2d\x89\x06\x0c\x61\xb0\x5e\x9a\x8c\x7f\x3b\x8a\xc8\x9f\xb8\x8c\x0f\xbc\x03\xe0\x0f\xdf\xb3\xa2\xa8\xd6\xbe\x19\x3b\x4b\xd7\xda\xa9\xe3\x49\xf5\xfa\xf7\x2f\xcf\xbe\xfa\xc3\xbd\xc5\xad\xf9\x48\xb5\x67\x3a\xa0\x76\xea\x45\xf5\x4c\x42\x4b\x45\x31\x8e\x78\x68\x94\x85\x8b\x66\xb8\x64\xf8\x5e\xec\x39\x1f\x40\xf3\x52\x80\x50\x2c\x8d\xcf\xf7\xf9\xf8\xad\x1b\xa8\x70\xc9\x8f\x8d\xd6\x44\xaf\xd0\x70\x11\x17\x5f\xc8\x27\xe4\xf0\x53\x97\x86\x42\xe0\x82\x22\xea\x14\xfe\x1c\xf8\x01\x86\xce\x55\x7e\x08\x12\xf6\x0d\x06\x7a\xed\xa2\x87\xf7\xbc\xe7\x3d\xf0\xbd\xef\x7d\x0f\x5e\x7c\xf1\x45\xfa\x06\x62\x8c\x79\xde\xe4\x15\x50\x6f\xc2\x9d\x6c\x2f\xe5\xce\x23\xc7\xe3\x1b\x4f\x1c\x6c\xfd\xe2\xa3\xf7\xc6\xbf\xb2\xbd\xcc\xde\x9f\x69\xb1\x6b\x87\x9e\xcd\x1b\x13\xca\x74\xae\xa3\x40\x6b\x28\xbb\xdf\x4e\xe9\x2c\x64\x6f\x73\x2a\xb9\xed\x45\x5f\x98\xb7\x56\x6c\x0c\x31\xc6\xe8\x0c\xaa\xfd\x0c\xcb\xea\x01\xa7\x1e\x2a\xa1\x85\x8c\x4c\x6d\x01\x2b\x0c\xc6\x6c\xe0\xe3\x58\x42\xea\xa9\xd2\x7f\x62\xbe\xf2\x29\x85\xf9\xaa\x47\x2f\x67\xa3\xea\xe4\x74\x5c\x1d\xdf\x2f\xaa\xe3\xfb\x93\xf2\xf8\xfe\xa4\x3a\x3e\x29\xaa\x93\x59\x0d\x58\xe6\xab\x4c\xcf\x75\x0d\x52\x4a\xb0\x7f\x3d\x17\xff\xad\xa3\x2a\xcd\x09\xa3\x80\xa2\x2e\xcd\x9b\xa9\x02\x00\x73\x0d\x0d\xad\x05\x66\x30\x60\xc1\x91\x17\x93\x47\xfe\x76\xf5\xb4\x97\x91\x70\x3e\x77\x8d\xc1\x8b\x35\xde\xcd\x78\x46\x20\xa7\x17\x81\xa1\xff\xf0\x27\xfe\x4d\xd9\x76\x1e\x40\x37\x1f\xf2\x86\x5f\x0d\x70\x04\xe4\x65\xa6\xf3\x32\xd3\xf9\x6c\xac\x24\x68\xc8\x05\xc0\x68\x5c\xca\xe9\x74\x25\x9b\x25\xa5\x6c\x77\x77\x9e\xef\x5e\x58\x64\xbb\x3b\x8b\x6c\x77\xda\x00\x99\x51\x25\x8a\x91\x12\x85\x54\xf5\x06\x76\x7b\x23\x2e\xae\x3b\x8d\x26\xd8\xcb\x30\xf5\x03\x12\xa1\x82\x6e\xcc\x61\xa0\x6f\x00\xb9\x6e\x90\x84\xf9\xdb\xce\x3b\x02\x06\xf0\x98\x6c\xf3\xda\xb5\xac\x0e\x4e\x0b\x24\xcc\x06\xfe\xd0\xcd\x6f\x82\x8f\x0c\xaf\x7a\xee\x99\xf9\x0e\xf5\x57\x5c\x8d\x40\xa1\x11\xa8\xe9\x14\x47\xc0\x0b\x47\x2a\x3b\x9d\x67\x45\x75\xf0\x83\xfd\xb3\xaf\xff\xe0\xa1\xf9\x7f\xcd\x8a\x6a\xa6\x85\x75\x5e\x0b\x3b\xc6\x4c\x42\xcb\x44\xd4\xdf\x50\x10\x43\x53\x4c\x54\x7f\x88\xc3\xa5\xe5\x52\xfd\x60\xe8\x05\x96\xca\x89\xa5\x89\x01\x09\xb1\xa0\x2e\x76\x25\x82\xab\x9b\xd1\x25\x46\x77\x8e\x17\xed\xd7\x96\x27\xfd\x1c\xda\xe5\x54\x43\x1d\x41\x3b\x2b\x36\x42\xe2\xea\xe4\xd4\x86\x72\x35\x58\x2c\x7a\x74\xe9\x1f\x13\x79\xc2\x6d\xe6\x93\xe5\x03\x30\x00\x00\x70\xf5\xea\x55\xf9\xc2\x0b\x2f\xc0\xdf\xfe\xed\xdf\x2a\xf3\x9b\x43\x80\x8c\x7d\x53\xc6\x6c\xc0\xcd\x85\x10\x05\x68\x28\xb6\x97\xd9\xee\x8d\xbb\xe3\x27\x9e\x3c\x98\xfe\xb7\x6b\xc7\xc5\xaf\x4c\x4a\xf9\x4c\xa6\xc5\x14\x1b\x37\xeb\xba\x75\xd8\xdd\x81\x5d\x3d\x22\x80\xce\xb1\xd3\xd0\x05\x2a\x67\x15\x31\x51\x15\xf4\xa9\xb4\x6f\x23\xab\x09\x1d\xd3\xd4\x1d\xd8\xca\x84\xb0\xdb\xb0\x37\x2d\x67\x7e\x1d\xd7\x06\x3b\x38\xf2\x21\x18\x7d\xf0\xdb\xa2\xed\x94\x90\x43\x6e\xc9\x88\x61\x06\xdc\xbe\xcd\x3e\x15\xa1\xcb\x7a\x8f\x8a\x9a\xcd\x8a\xea\xe4\x64\x5c\x1d\x1f\x8f\xcb\xa3\x7b\x93\xf2\xe8\xfe\xa4\x3a\x3e\xa9\xa3\x2b\x33\x0e\xa8\x34\xfb\x52\x30\x70\x71\x82\x17\xb3\x87\xa5\x01\x14\x06\xd0\x60\x07\x60\x45\x5a\x9a\x65\x1d\x0b\xa4\x90\xe5\x1f\xe3\x34\x54\xaf\xcf\xd0\x1b\x30\x8e\xb2\x30\x74\xb8\xed\xa8\x2d\x31\xcf\x5c\x91\x17\xf6\x1a\x1f\xa8\x08\x68\xf3\x26\x8e\xc2\x40\xb7\xbf\x8b\x1e\x07\xd0\x3e\xd7\xa0\x73\x10\x22\x3f\xcb\xab\xfb\xf3\x91\x2a\x0e\xa7\xe5\x48\x2a\xc8\xeb\x8d\xbe\xd9\xce\x4e\x13\x85\xd9\x9d\xe7\x7b\xbb\xf3\x7c\xef\xc2\x22\xdb\xdd\x5e\xc8\xdd\x71\x25\x27\xb9\x92\xb9\x54\x90\xe3\x78\x21\x8e\x02\xda\xd1\xb9\xb6\x35\x3a\x6a\x6b\x2c\xf5\x01\x10\x7a\x68\xd3\x63\xf4\x63\xfe\x58\xcb\x3e\xe8\x40\x3c\xc0\x63\x96\xf6\x8b\xb0\xe8\x7b\x11\x48\x66\x99\xa9\x5d\xe2\x65\xeb\xd6\x94\xd5\x06\x4c\x09\xab\x21\x5a\x35\x05\xfa\x4d\x28\xd0\xb0\xcc\xf5\xec\x47\x17\x17\xdf\xfa\xee\xd5\xb3\x6f\x1e\x8f\xcb\x63\x25\xac\xb1\x6f\xef\xb7\xaa\x53\xac\xbd\xda\x21\x2d\x00\x00\x20\x00\x49\x44\x41\x54\xdf\x08\x81\x84\x98\x17\x4e\xae\x1c\x95\xe9\x92\xe1\x03\x2b\x9c\xbe\x31\x2f\xd1\x3e\x70\x16\x0b\x32\x5c\x7e\xd1\x45\xef\xd2\x3d\x86\x36\xa6\xdf\x62\xdb\xd6\xd5\xaf\xed\x3d\x9d\x3e\xb1\x88\x71\x28\x42\x0b\x55\x3e\xa6\x6c\x6a\x54\x67\x5d\x1e\xbe\x01\xe7\x1b\x80\x29\x3c\xdb\xe7\x2f\xbd\xf4\x92\x44\x6f\xfb\xf8\x0d\xd5\x84\xc8\x8d\x41\x2e\x04\x88\xc9\x74\x29\x77\x9f\x3c\xd8\x7a\xea\x3d\x07\xd3\x5f\xbb\x7c\x32\xfa\x5f\xc6\xa5\x7c\x42\x80\x28\x3a\x67\x0b\xc4\xd4\x82\x75\xc7\xfd\xc5\xc9\x7a\x86\xc2\xc3\x7d\xc7\xcd\xe4\x91\xb7\x38\x9a\x5c\xa1\xf3\x5e\xb4\xdd\x21\xc7\x28\x2b\x7c\x85\x48\x88\xbc\xff\x49\x76\x17\x20\xb7\xf6\xd9\x20\x36\xb4\x1d\x70\x59\x0d\xa0\x2a\xa9\x55\x29\xf5\xf2\x6c\xa4\x66\x27\xe3\xea\xf8\x68\xab\x3c\x3c\xda\x5a\x1d\x1c\x6d\x95\x47\xcd\x7e\x95\xe3\xf9\x48\xcd\x35\xc0\x42\x43\x0d\x4e\x9a\x3d\x29\x14\xa8\x2c\xa1\x03\x25\x2c\x78\x31\x11\x16\x64\xe8\x7b\xfb\x59\x10\xd0\xa0\x20\x06\x03\x14\xf3\xbc\xfd\x6b\x80\x0c\xe9\x17\x6b\xec\x72\x9f\x82\x77\xcb\x09\x9a\x03\x2d\x26\x49\x44\x2b\x51\x59\x49\xca\xe0\x68\x4b\x7b\x6f\xc6\x3f\xa1\xc9\x3d\x7f\xe9\x75\x3b\x6f\xc8\x33\x73\x3f\xca\x14\x14\x93\x55\x36\xbd\xb0\xc8\x76\x76\xe7\xf9\xee\xfe\x2c\xdf\xbf\x34\xcb\x2f\xef\x2e\xf2\xbd\xed\x65\xb6\x5b\x94\x62\x92\x57\x32\x97\x75\xf4\xa6\x03\x31\x68\xa9\x85\x1d\x82\x64\x79\xc9\xf8\xf8\xde\xb8\xc6\x4b\x41\xa4\x3c\x40\x07\x56\xcc\x62\x90\x3d\xd7\x50\x1f\x20\x30\xc3\xcd\x6b\x6a\x1b\x28\x0d\x5e\xda\x01\x10\x8d\x5e\xcc\xcf\x44\x98\xf9\xd2\xd2\xf7\x2b\x68\xf6\x76\x95\x52\xcf\xef\x5c\x58\xbe\xf2\x7f\x5f\xbf\xff\x7f\xfd\xf0\xd2\xe2\x7b\x95\xd0\x47\x20\xe0\x18\x00\x8e\x01\xe0\xa4\xf9\x37\x83\xfa\xf4\x5c\x7c\x00\x5d\x3b\x46\xef\xdd\xbb\x07\x9f\xfb\xdc\xe7\x62\x5e\x6a\x87\xa4\x98\x17\xf5\x75\xf9\xc3\x06\x65\xf8\xa2\x43\xeb\xf2\xf2\xe5\x0f\x95\x13\xd2\x97\x03\x66\x4e\x59\x34\xe2\x12\xeb\x80\x37\xa1\x38\xf7\xcc\xd7\x48\x2e\xc0\xe1\x43\x92\xf4\xd9\x10\x80\x81\x13\x87\x7c\x25\x43\x87\x9f\x73\xfc\xad\x8e\xd9\xda\xda\x92\x67\x67\x67\xca\x9c\xcf\x62\x0c\x3b\x32\xea\x39\x7a\x93\x2c\xb4\xd6\x85\x04\x31\x99\xac\xe4\xce\x4f\xbf\xb9\xfd\xec\x93\x07\xd3\x4f\xec\x9d\xe5\x2f\x14\x95\x7c\x04\x80\x6c\xc2\x6d\x93\xb0\x2c\x68\x77\xd0\x7b\xdf\xa8\x01\x98\xcc\x2e\xc4\x5c\xeb\x55\xe7\xe1\xdf\x83\x69\xdf\x00\x19\x99\x3e\xd0\xd2\xd4\xb3\x8b\x64\xd0\xb7\xc2\x06\x71\xd0\x75\xf9\xda\x90\x37\x7a\xd1\x07\xe0\xb8\x47\xe0\x85\xbe\x11\x1b\x03\x2c\x04\xb0\xce\x85\xb2\x35\xbb\x11\xcc\x57\x40\x67\xa3\xea\xe4\x78\x5c\x1d\xdd\x9d\x96\x07\x87\xd3\xd5\xc1\xdd\xe9\xea\xf0\xde\x56\x75\x7c\x5a\x54\x27\xab\x4c\x2f\xb5\xd6\x0b\xa8\x23\x1e\xcb\x06\x90\x2c\xa1\x01\x2c\x5a\xeb\x65\x03\x28\xb0\xa1\x36\x4b\x3d\x06\xbc\xb4\xd7\x74\xef\x0a\xf4\xc1\x8a\x89\xae\x98\x67\xa6\x9d\xdb\xb9\x85\x96\x8a\xe8\x5e\x02\x0c\x5e\x7a\x79\xa6\xbf\x7c\x91\x17\x0c\x5e\x28\x88\x41\xf4\xec\x3d\x74\x73\x88\x03\x2d\x38\xe2\x68\xfd\x43\x80\x06\xe7\x59\xc0\xc5\x00\x7e\x13\x85\x31\xd7\x5a\x6b\x73\x40\x63\x0e\x00\x79\x25\x21\x3f\x29\xca\x7b\xa7\xe3\xaa\x78\xeb\xc2\x72\x54\x54\x62\xb2\x3b\xcf\x77\x77\xcf\xf2\xdd\xfd\xb3\xfc\xf2\xfe\x69\x7e\xf9\xe2\xd9\x68\xff\xc2\x22\xdb\x1b\x97\x72\x9a\x37\x67\xd2\xd4\xd1\x09\xd1\x8e\x4d\x0c\x1c\xea\x3a\xa2\x01\x24\xd8\x4b\x76\xbc\x75\x91\x0b\x94\x89\x18\xdb\x73\xad\x3b\x4b\xc5\xf5\x52\x82\x53\xff\xc5\x06\x81\x20\x33\x57\xda\x8b\x0e\x28\x01\xa0\xb8\xa3\x89\xba\x76\x64\xf6\x9b\x0d\xd4\xf3\xa5\x12\x50\x1e\x6d\x95\x77\xbe\x7b\xe5\xec\xab\xb7\xf6\xe6\x3f\xac\x04\xcc\x40\xc0\x1c\xa0\xfd\x67\xc6\x7f\x6f\x7c\x37\x22\x15\x00\x70\xa0\x65\x9d\x97\x64\x9a\x52\x5e\x86\x53\x78\xc7\xbc\xec\xc6\x80\x26\x1a\xad\xa7\xfe\x8d\xe3\x1f\x03\x3c\x86\x06\x13\x42\x7e\x77\x68\x7b\x4a\x47\x9e\x55\xce\xe7\x5a\xb8\x82\x2e\x94\x34\xb4\x21\x5c\x00\x63\xa8\x3e\x43\x68\x43\xf2\x5c\x0d\x18\x7a\xee\xe3\xd3\xcb\xc7\x4b\x43\x00\x2d\x68\xc1\xa1\xf2\x42\xd7\xbf\xec\x5c\x00\xd4\x7b\x5a\x3e\xf8\xc3\xdd\x5f\x78\xfc\x70\xf2\x3b\x17\x16\xd9\x07\x73\x25\xf7\x85\x1b\x40\xf5\x92\xb5\x87\x03\x3b\x2b\xc7\x86\x8e\x36\xda\xa2\x7b\xb6\xa9\x29\x86\xc2\xe8\xd6\x1b\x26\xde\x2b\xd2\x0f\xb5\xd7\x20\xa1\x2e\xd0\x8f\x86\x18\x03\xab\x1b\x0c\x65\xf6\x02\x18\x7a\x72\xca\x28\x53\x27\xf3\x36\xdc\xbd\x21\xa2\x43\xe6\xd8\xe8\x01\xa2\x6f\x33\xba\xe7\x4a\x80\x5a\xe4\x6a\x76\x77\xba\xba\xf3\xce\xb4\xbc\xf3\xf6\xce\xf2\xce\xe1\xb4\x3c\x3a\x9e\x94\xc7\x67\xa3\x6a\x56\x66\x30\xd7\x5a\xaf\x1a\xd0\xb1\x84\xce\x28\x2f\xa1\xee\xef\x16\xc0\x70\xe0\x04\xec\x65\x22\xd0\xdd\x67\xcd\x25\x07\x52\xf0\x3f\x12\x31\x31\xa0\x03\x47\x5f\x00\xd1\x01\x7e\x1e\xca\xb3\xdb\x88\x1f\x3b\xbe\x68\x0c\x90\xb1\x89\x40\x79\xfb\xcc\x15\x69\x04\x00\x20\x73\xa1\x07\x68\xf0\x3e\x18\x4d\x7e\xf6\xa2\x79\x6e\xef\x0b\x63\x7e\x12\x03\xec\x08\x4c\xd1\xc8\x29\x00\x60\x3c\x2a\xc5\x64\x7b\x99\x4d\x2f\xce\xb3\xbd\xcb\x27\xa3\xcb\x57\x4f\x8a\xab\x0f\xcd\x46\xd7\x76\x16\xf9\xde\xb8\x14\x93\x7e\x23\x01\x6a\x17\x68\xc7\x1d\x9e\x05\xbd\x39\x63\xe6\x41\x83\xb4\xcd\x7c\x33\x80\xa6\xae\x2f\x40\x4d\x89\x5e\x3c\xf0\xb8\xb6\xc6\x78\x03\x0e\x41\x74\x60\xdf\xd0\xa3\x25\x1c\x1c\x55\xe9\xe8\x1b\x9a\x26\xa4\xa2\x35\x74\x3c\x05\x7e\xe1\xe9\x64\x99\xf3\x69\xda\x4f\xc9\xeb\x83\xf9\xd4\xfd\x71\x75\xf0\xdd\xab\xb3\x7f\xfb\xfa\xa3\xf7\xbf\x74\x52\x54\x77\x84\x10\x26\xd2\x72\x0c\x00\x27\x5a\xeb\x99\x10\x62\xa6\xeb\x5f\x88\xc6\x73\xa6\x8d\x14\xbe\xfc\xf2\xcb\xea\xea\xd5\xab\xf2\xce\x9d\x3b\x2e\x5b\xbb\x29\x87\xec\xa2\x05\xf0\xfb\x01\x1f\x7d\x48\x7e\x8a\x1f\xf3\xd1\x87\xe4\x0c\xd1\xc5\x77\xef\x02\x53\x29\xf4\xa9\xfa\x4b\x80\x7a\x8f\x8b\x2b\x29\xe6\x9a\x0a\xe2\x14\x0c\x29\x13\xc3\x97\x26\xaa\x7c\x08\x30\xb8\x64\xa4\x74\x38\x47\xe7\x92\x11\x93\xd7\x6b\x3b\x13\x69\x01\x00\xcb\xe0\x6b\xfb\x87\x12\xbb\xa5\xa1\x7a\x4f\xcb\xe4\xca\xe9\x68\xef\x17\x5e\xdb\xfd\xd8\xbb\x8e\xc7\xff\xc7\xd6\x4a\x3e\x2b\xb5\x98\x06\x82\x1b\xbd\x84\xdf\xcc\x2c\x67\xc3\x81\x16\xe8\x00\x85\x1d\x15\xc1\xc5\x44\x8f\x16\x15\xb0\x68\x8c\x18\x43\xab\x1b\xc3\x49\x7d\xa4\xc0\xe5\xf0\x5b\xa6\xad\x4c\x3f\x1f\xc9\x32\x9b\x0a\xbb\x88\x8a\x60\xe9\x01\x30\xe0\xea\x40\x94\x16\x02\x94\xd0\x6a\x91\xab\xf9\xf1\xb8\x3c\x7c\x7b\x67\x75\xfb\x8d\x8b\x8b\xdb\x07\x3b\xe5\xc1\xfd\xa2\x3c\x59\x8c\xd4\xec\xff\x65\xee\x5d\x9f\xe4\x38\x8e\x7b\xd1\x5f\xf5\xf4\xf4\xcc\xce\x3e\xb0\xbb\x58\x2c\x16\x20\x00\x82\x24\x44\x91\x12\x45\x49\x04\xa4\x63\xcb\x3a\xb6\x1e\x47\xb6\xac\x7b\x64\xcb\xd2\xb5\xef\xf5\xe3\x3a\x42\x61\x51\xf7\xf3\xfd\x77\x40\x2b\xec\x70\xf8\x11\x76\x84\x3f\x39\xec\x90\xc3\xef\x63\xfb\xf8\x04\x25\x50\x12\x5f\x22\x40\x80\x78\x10\x00\x81\xc5\x62\xb1\xd8\x9d\x9d\x67\x4f\xd7\xfd\xd0\x5d\x3d\xd9\xd9\x59\xd5\xd5\xb3\x2b\x1d\x17\x62\x31\xdd\xd5\x59\x59\xd9\xd5\x55\x59\xbf\xca\xca\xaa\x4a\x14\x86\xc8\xc0\x49\x36\x05\x44\xc1\x4a\x01\xb8\x64\xca\xb9\x34\x0d\x44\xe3\x34\x59\xe6\x6c\x9e\x83\x00\x14\x3e\x0d\x84\xa9\x35\x05\xec\x79\xf6\x5e\x85\xe5\xcd\x36\x25\xc3\xa7\x88\x48\xb9\xe8\xc2\x46\x60\xdc\xea\x62\x4b\x47\x64\xa2\x21\x20\xf1\x85\x81\x0b\x05\x32\xc4\x8a\x13\xb0\xb8\x1c\xb8\x64\x32\x99\xeb\x80\x5d\x53\x2b\x8c\x01\x27\x00\x9b\x36\x22\xd6\x1a\x0a\x68\x22\x73\x9f\x59\x6f\xa2\x71\x88\x68\x27\x8c\xa3\x9d\x4e\xbc\x75\xe7\xc8\xe8\x76\x67\xd4\xef\x1c\x19\x84\xcb\xc7\xba\xcd\xb5\xe3\x7b\xd1\xc6\xd1\xfd\x68\x63\x69\xd8\x58\x0e\x27\xaa\x3d\xb5\x1e\x52\xe0\xa1\x08\x8c\x00\xbb\x22\xf5\x0e\xd3\xfa\x3e\x1d\x2c\xf0\x05\xf7\xe5\xf6\xa6\x49\x9d\x35\x96\xca\x42\x0e\xd4\x72\x8a\xb4\x5e\x17\xc0\x0f\xe5\x9a\x8f\x4a\x0c\x10\x51\xe6\x12\x45\xdb\x0b\x72\xb0\x32\xb5\xf8\xa0\xc0\xb3\x17\x4d\x76\x6e\xae\xf6\xdf\x7c\xe7\x78\xef\xf5\xfd\x56\xb2\xad\xa0\x06\x48\xa7\x84\xcc\xb4\xd0\x80\x58\x21\x4b\x96\x17\x5a\x7f\x18\x68\xe1\xa1\x54\x9f\x05\x1a\x17\xbd\x09\x52\xe7\x4a\x07\xd7\x2e\x3e\x55\xf4\x75\x07\xd1\x75\xfb\xc5\xaa\x30\x8b\x51\xc1\xd5\xe7\xd7\xc5\x08\xb3\x00\x2f\x91\xae\x6a\x1f\x97\x3a\xa1\x4e\x01\x02\xe5\x0a\xe2\xe2\x31\x0b\x88\xf0\xe5\x63\x0b\xb6\x0f\xe7\x53\xf9\x78\xa5\x15\xe9\xe9\xf4\x10\x90\x76\x10\x98\x8e\x26\x73\x9f\x16\xa5\x54\x7a\xb2\x73\x92\x9e\xec\xfc\xd2\xed\xc5\xff\xe3\xf8\x5e\xf4\x2b\xed\x71\xf0\xb4\x02\xca\xa3\x3d\x1e\x2c\x56\x14\x17\xd8\xa1\x49\xca\x74\x2c\x86\x10\x2b\xe9\xde\xc2\xbc\xc0\xdf\x03\x79\x59\x5e\xa3\x1c\x4f\xe6\xdc\x53\x60\x56\xa4\x12\xf9\x14\xcc\xdb\x40\xa2\x34\xe2\x86\x1e\x75\x5b\x93\x9d\x87\x9d\xf1\xbd\xfb\x8b\xa3\x7b\x9b\x8b\xa3\xcd\xdd\xf6\x64\xa7\x1f\x4d\x7a\x63\xa5\x07\x3a\x05\x2c\x23\xa4\x80\xc5\x00\x12\x0a\x54\xa4\x5f\xee\x68\xcb\x57\x08\x51\x6b\x4a\xbe\x42\x88\xc5\x9b\xc0\xf7\x5c\x29\xb5\x09\x63\x39\x01\xa6\x96\x14\xc1\x1a\x33\x2d\x06\x61\xaa\x88\x4e\x2f\xf1\x40\xf9\x33\x5e\x05\x2b\x0a\xe1\xeb\x1a\x54\xf0\x78\xb0\xf8\xc0\xf1\x5b\x8a\x23\x56\x96\x1c\xc0\x90\xa9\xa5\x90\x3c\x97\x7c\x60\x0a\x67\x7d\x91\xf8\x28\x0e\x74\xb4\xd7\x9e\xec\xed\xb7\x26\x3b\x0f\x16\xc6\x9b\xd7\x57\x07\x37\x96\x07\xe1\xd2\xb1\x6e\xb4\x7e\xf2\x71\x74\x66\xb5\xd7\x5c\x9f\x1b\x07\x0b\x8d\x44\x85\x8a\x03\x06\x5b\x41\xb2\x36\x51\x68\x7f\xfc\x1b\x11\x5e\xc5\x36\x3a\x65\xc2\xeb\xb7\x12\x6e\x0a\x83\x0f\x9a\xc6\x76\x4d\x88\x69\xde\xd2\xb5\x06\x30\x08\x93\xee\x07\x4b\xa3\xab\x57\xd7\xfa\x6f\x3e\x9a\x1b\x3f\x40\x0a\x54\xa8\x2f\xcb\x00\xa4\xed\x08\x3e\x5a\xb6\x60\x1b\xd1\xd7\xb1\xb8\xd8\xe8\xab\x3a\x66\x7e\x4d\xef\x7d\xf3\x73\x81\x2c\x9b\xdc\xbe\x71\xbe\x41\xca\xa7\x8e\x71\xc0\x87\x9f\x2d\x1c\x44\xee\x54\x27\x79\x66\x5e\xd7\xdc\x64\xee\x81\x7a\x42\xd6\x31\x37\x99\xc0\xe3\x6d\xf7\x52\x5e\xe6\xf9\xac\x66\x2b\x9f\x60\x4d\xc3\x41\x0b\x33\x7b\x53\xd0\xd2\x6e\xc6\xaa\x73\x7a\xa7\x75\xf2\x63\x1f\x2c\x7c\x69\x63\x37\xfa\x5a\x2b\x3b\xd9\x59\x71\x27\x90\xda\xc1\x06\x07\x2a\x52\x39\x46\xd9\x36\x45\xa6\x2c\x34\x55\x52\xf8\xf0\xd0\xd9\xd0\x56\x12\x89\xa6\x9f\x5a\x8b\xca\x39\x6a\x00\x71\x90\xc4\xfd\x66\xd2\xdd\x99\x8b\xb7\x36\x17\x47\xf7\x36\x17\xc6\x9b\x8f\xe6\xc6\xdb\xbd\x68\xb2\x3b\x0c\xf5\x60\x12\xe8\xbe\x06\x46\x1a\x7a\x84\x74\xb4\x18\x6b\xad\x47\x00\x72\x4b\x0a\x31\x79\x97\x56\x0a\x11\x7f\x95\x7c\x25\x90\x26\xfb\xb2\x90\x7b\x73\x0d\x10\x2b\x0a\x9d\x0e\xca\x42\x42\xc0\x43\x22\x01\x09\xd7\xd4\x0f\x05\x16\x2c\x8d\xb9\x37\x79\x05\xec\xda\xc8\x43\xad\x31\x41\x26\x43\xe0\xaa\x1f\xb6\x40\xa6\x7e\x7c\x9e\x15\x9c\xd8\x4d\x9c\x70\x4d\xa7\x95\xc2\x8c\x17\x07\x2c\x1c\xbc\x14\x2c\x2f\x6c\x3a\x69\x0a\x62\x34\x22\x00\xed\x40\x23\x6a\x68\xd5\x6a\xc5\xc1\xc2\xe2\xa0\xb1\x74\xb4\xd7\x5c\x3b\xb1\xdb\xda\x58\xeb\x36\x4f\x2e\x0d\x1b\xcb\x51\x1c\xb4\x83\xec\x90\xc8\xf4\x65\xb2\xba\xa8\x40\xa6\x3d\xa7\x06\xc0\x6c\xb6\x67\x3a\xfd\xc2\xb7\xe3\xcd\xd9\x90\x69\x1e\x32\x85\x93\xbe\xa3\xb1\xc4\x4c\x83\xab\xed\x18\x8b\x09\xa7\x2b\xd3\x16\x0d\x95\xc5\xb6\x3e\x9d\xae\x1a\x87\xc9\xe0\xde\xe2\xe8\xbd\xb7\x8f\xef\xbf\xfa\xde\x5a\xff\xc7\xa3\x86\xde\x86\xc2\xae\xd6\x7a\x57\x29\x45\x9d\x71\x7b\x28\x5a\x26\x0b\xa7\x42\x6b\xad\xf1\xca\x2b\xaf\x24\x8b\x8b\x8b\xc1\xde\xde\x9e\xcb\x3a\xe2\x1b\xea\x4e\xcb\xb8\xd2\xb8\xf8\xfb\x4c\x27\xb9\xe2\x5c\xd3\x53\xae\x7c\x79\x1c\x84\x78\x57\xfa\xaa\x81\xb9\x0f\x98\xb1\x95\x9f\x4d\x9e\x3a\xfd\x2f\x00\x24\xca\x43\xd0\x59\x32\x98\x35\x54\x59\x31\x66\x31\x35\xf9\xf2\xf4\x49\x3f\xab\x0c\x85\xf0\xf5\xaf\x7f\x3d\x58\x5b\x5b\x03\xed\x04\xd8\x1c\xbd\x59\xee\x1c\x02\x68\xb7\xc7\xc1\xc2\xe9\x47\xad\x33\xcf\x6f\xce\x7f\xf1\xc4\xe3\xe8\x2b\xad\x38\x38\xa7\x80\xd0\xb2\x95\x1b\x80\xa9\xf2\xf3\xc5\x24\x39\xa9\x94\x46\x88\x73\x82\x88\xc2\x33\xbb\x10\x54\x51\x56\x9d\xe0\x2c\x83\x17\x62\x45\x29\x38\x1e\x97\x15\x6c\x9e\xa2\xa4\x78\x53\xf5\x3f\x6e\xe8\x41\xb7\x35\xd9\xd9\x5c\x18\xdd\xbb\xb7\x38\xba\xf7\x70\x7e\xbc\x95\xae\x06\x9a\x74\x47\x0d\xbd\x9f\x28\x8c\x34\xf4\x00\x99\x49\x9b\xce\xc7\x53\x6b\x8b\x26\x0e\xb8\x96\xbf\xdc\x9a\x62\xf1\x59\x01\x50\xda\xa6\x9f\x5b\x3d\x0a\xf5\xce\x80\x16\xa0\x08\x3c\xd8\x75\x42\xe9\x2b\xc0\x4a\x79\xc5\x97\x90\x46\xb2\xb4\x70\x0b\x8b\xc5\x1a\xe3\x0a\x2e\xe0\x92\x3f\x67\xf2\x15\xac\x2d\xa4\x5d\x51\xeb\x4b\x61\x3a\x89\xfd\x15\x2c\x31\x98\x82\x19\x3e\x7d\xc4\x7f\xdb\xda\x38\xf8\x6a\x44\x0a\x88\x82\x44\xcd\xb7\x26\xaa\xdd\x19\x35\x96\x96\xfb\xe1\xea\x7a\x37\x5a\x5f\xdf\x6b\x6e\x2c\xf7\x9b\x6b\x9d\x71\xb0\x10\x4e\x54\x14\xd0\x1a\x9c\x35\x54\x05\xfa\xad\x80\xd4\xaa\x51\x9e\x92\x05\x48\x5b\xa0\x60\x87\x58\x6c\xf8\xf3\xe9\x14\x12\xa6\x56\xc5\x29\xf0\x15\x2c\x3a\xc5\x7c\x35\xf1\x56\xcf\xa5\xb2\x81\x28\x00\xb1\xd2\xf1\xc3\xf9\xf1\xed\x2b\xeb\xfb\xdf\xbf\x72\xac\xff\xc6\x5e\x6b\xb2\x89\xe9\x0a\x22\xb3\x8a\x88\x5a\x5d\x06\x9a\xf8\x72\x81\x58\x3e\xc8\xde\x2d\xc0\xec\x7d\x95\xaf\xde\xf6\xed\xbc\x25\x3e\x75\xfb\x06\x5b\x67\x7e\x10\xc0\x70\x10\x5a\xc9\xe2\xe9\x92\x05\xc2\xb3\x2a\x7a\x29\xcd\x4c\xc1\xa6\x4d\xaa\x10\xe7\x41\x80\x83\xab\x80\xea\x14\xb2\x0b\xc1\xf9\xc8\x50\xa7\xf2\xd2\x50\x95\xbf\xf5\x7d\x4f\x9f\x3e\x8d\x4f\x7e\xf2\x93\xd8\xd8\xd8\x28\x3c\xa3\x53\x44\x28\x2a\xc6\x68\x7e\xdc\x58\x3a\xf3\xa8\xfd\xf4\xb3\x0f\x3a\x9f\x3f\xb1\x1b\xfd\x62\x6b\x1c\x3c\x1d\xa4\x0e\xba\x95\x18\x43\x52\x7c\x32\x8c\x98\x9e\x8b\xcc\xed\x11\x32\x40\x29\x4f\xbb\x54\x61\x24\x1b\x90\x28\xcb\xc6\x73\x98\xd5\x26\x54\x95\x57\xba\xda\x61\x14\x26\x83\xbd\xd6\x64\xf7\xfe\xe2\xe8\xf6\xbd\xc5\xe1\xdd\xed\xf9\x78\x7b\xaf\x35\xd9\x19\x86\x49\xcf\x58\x57\xa0\xf2\x11\xe1\x08\x99\x92\x35\xf7\x06\xc4\xa0\xe8\xa7\x42\xe7\xea\xad\x2b\x83\xd8\x14\x0f\x5d\xb2\x0c\x4c\xad\x27\x85\x38\xc0\x0e\x2c\x08\x2f\xab\xc3\xac\x19\xc1\x02\xc0\xcb\x2f\xbf\x1c\x00\xc0\x2b\xaf\xbc\x92\xd0\x6b\x00\x38\x77\xee\x5c\x00\x00\x57\xaf\x5e\xcd\xef\xaf\x5e\xbd\x9a\x48\xf1\x36\x3a\x13\xe7\x0a\xd4\xea\xe8\x11\x4a\xb4\x82\xd5\xa5\x74\x6d\xac\x35\x04\xbc\x18\x9a\x12\x80\xa1\xbf\xba\xb8\x1f\x8c\xe4\x03\x63\xac\x31\xe6\x3a\x52\x4a\xb5\xa1\x11\x05\x1a\x51\x73\xa2\xe6\xe7\xc6\x8d\x85\xa5\x41\xb8\x7a\xb4\x17\xae\x1d\xdf\x8b\xd6\xd7\xf6\x9b\x1b\x0b\x83\x70\xa9\x99\xa8\xa2\x15\x86\xbe\x13\x58\xdd\xb7\x8c\x12\x9c\x56\x4b\x8d\xe2\xd9\x43\x15\xc1\xb7\x1d\x4b\xe9\x40\x64\x4c\xa0\x93\xc7\xed\x78\xf3\xda\x5a\xff\xf5\x2b\xeb\xbd\x1f\x6e\xcd\x8f\xdf\x4f\x82\x12\x68\xe9\x02\x85\x55\x45\x25\x4b\x0b\x80\xe4\xe2\xc5\x8b\xae\x7a\x34\xeb\xc0\xb1\xae\x95\x40\xba\x77\xf5\x3b\x3e\x96\x94\x83\xa6\x9b\x75\x30\x3d\x0b\xb8\x82\x07\x9d\x2b\x9f\x83\xc4\x5b\x83\x54\x47\x0f\x8d\xb9\x90\x56\x02\x28\xae\x0f\xe6\xfb\xac\xea\xa3\xfb\xc8\x36\x6b\x70\xc9\x51\xfa\xf0\x64\x9f\x16\x69\x55\x84\x71\x08\x8c\x14\x54\x7b\x61\xd8\x58\x3a\xbd\xd3\x3a\xf7\xa1\x07\x9d\x5f\xd8\xd8\x8b\xbe\xd0\x1e\x07\xe7\xe8\x1e\x2d\x85\x8f\xc7\x7c\x34\x44\xe5\xe3\x69\x4d\x11\x83\x64\x75\x29\x80\x91\x22\x98\x01\xe0\x04\x40\x75\xc3\x74\x14\x29\x4c\x77\x08\xbc\x4b\xa3\x46\x12\x1f\x07\x7a\x34\x6c\x26\xbd\xc7\xed\x78\xfb\xc1\xc2\x78\xf3\xfe\xc2\xe8\xde\xc3\x85\xf1\xe6\x6e\x6b\xb2\x33\x6e\x24\xfb\x89\xca\x96\x68\x2a\x48\x96\x95\xfc\x1a\xd9\xf4\x10\x05\x2e\x64\x0a\xa8\x60\x5d\x01\x4a\xbb\xd7\x52\xeb\x0a\x58\x5c\x6e\x25\x11\xac\x20\x25\x6b\x0b\xb7\x6c\x98\x51\xea\xb7\xbf\xfd\xed\xe0\xd6\xad\x5b\xf8\xee\x77\xbf\x5b\x59\xbf\x3f\xf6\xb1\x8f\x05\x00\xf0\xc6\x1b\x6f\xf8\x8e\xf6\x7c\xdb\x5c\x1e\xf7\xb1\x8f\x7d\x2c\x78\xe3\x8d\x37\x12\xfa\x6b\x88\xe8\xfd\x1b\x6f\xbc\x91\xd0\x03\xf5\xcc\x8a\x3b\xc7\xf4\x93\x04\x7e\x0a\x71\xac\xad\x89\xd7\x28\x9f\x4e\x5c\x9a\x46\x22\x40\x45\x02\x30\xed\x2c\xbe\x8d\xec\x18\x0e\x00\xed\x46\xa2\x5a\x73\x71\xb0\xb0\x34\x68\xac\x1e\xdd\x6f\xae\x1d\xdf\x6b\x6d\x1c\xeb\x36\x37\x96\x06\x8d\xe5\x68\x12\x74\x82\xec\xbc\x24\x5e\xbf\x8b\x96\x0e\x14\x1b\x16\x38\x50\x49\x37\x85\xe4\xbe\x32\x3c\x14\x2c\x3c\x0c\x21\x49\xb3\xce\xd3\xe9\x1f\x3d\x6d\xc7\x46\x3e\xa1\x8d\xf5\x9a\x93\x9d\x1b\xab\x83\x37\xdf\x39\xbe\xff\xc3\x7b\x4b\xa3\x6b\xa3\x20\xd9\xc9\xa6\x86\x0c\x70\x31\xd3\x43\x3d\x36\xc5\x9a\x03\x7a\xad\x75\x62\x00\x34\x04\x1d\x6a\x89\x73\x85\xc3\xb0\xb8\xb8\xac\x0c\x55\xf2\xf9\xb6\x1f\x97\x3c\x9c\x9f\x4b\x16\xe9\x99\x4f\x3e\x55\xf1\x34\x5f\xdb\xb5\x8d\x9f\x6f\x99\xf0\x20\xf6\xf5\xbc\x9e\x1e\xb4\x13\x97\x42\x1d\x8b\x4b\x5d\x1e\x75\xcc\x58\xbe\xc1\x56\xc0\xd2\x87\xa2\x41\xaa\xf0\x05\xb9\xcd\xa8\xd6\x32\xea\x9b\x2a\x43\x8d\xf6\xd2\xb0\xb1\x7c\xe6\x51\xfb\xdc\x33\x0f\xe6\x3e\xbf\xb1\x17\x7d\xae\x15\x4f\x2d\x2d\x75\x42\xa5\xaf\x41\x01\xf0\xb8\xa7\x6b\x78\xbc\x6d\x4e\xdc\x23\xab\x32\x2f\x32\x27\x5f\xc5\x8f\x4e\x6b\x55\x8d\x2a\x09\x60\x49\xc6\x0d\x3d\xea\x45\x93\xee\xce\x5c\xbc\xbd\x35\x3f\xde\xdc\x5c\x18\xdd\xdb\x9e\x9f\x02\x16\x4c\xad\x27\x03\x1b\x58\x21\xbe\x2b\xe6\xda\xac\x14\x4a\xf4\x74\x53\x39\x0a\x58\x8c\xd5\x84\x9e\x21\x94\x83\x12\x3a\x1d\x04\x4c\x57\x51\x48\x16\x14\xfa\x2d\x2f\x5e\xbc\x98\xbc\xfc\xf2\xcb\x81\x51\xf0\x9f\xfe\xf4\xa7\x03\x00\x78\xf5\xd5\x57\x13\x7a\x4d\x8a\xe2\x20\x23\x36\x5e\xf7\xa5\x36\x50\x05\x62\xea\xb4\x61\x6b\xf8\xdc\xe7\x3e\x17\xfc\xf3\x3f\xff\x73\xa1\x4d\x49\xf5\x5b\x17\x97\x5b\xf3\x3c\x01\x7f\x4b\xcc\x74\xf7\x5d\xe6\xd8\x8b\xac\xcd\x1a\x8b\x8b\xf4\x97\x5b\x61\x80\x48\x69\xb4\x5b\x71\x30\x7f\xa4\x1f\x2e\xaf\xed\x37\x37\x8e\xef\x45\x1b\xc7\xba\xcd\x8d\xc5\x74\x49\x75\xa7\x91\xa8\xd0\xac\x1d\xf2\x69\x7f\xb9\xe5\xc5\x36\x2d\x2a\xf0\xa8\xdd\x66\xa7\xd8\xc9\x99\x81\x06\x30\x6a\x24\x83\xbb\x47\x86\x57\xde\x3e\xde\xfb\xfe\xfb\x2b\x83\xcb\x83\x66\xb2\x9d\xf9\xb4\xf0\x4d\xe6\xe8\xd2\x67\x3e\x85\x9a\x00\xa5\x29\x22\xdf\x70\x58\x23\xfd\x2a\xe0\xe2\xc3\x6f\x96\xbe\xf4\x20\x69\x0e\xc3\x22\x73\x10\x79\x7c\x74\x87\x2f\xef\x4a\xdd\xe0\xaa\xbf\xb3\xa0\xcf\x2a\x5e\xd2\xfd\x61\x15\x4e\x9d\xf8\xba\xa1\xae\x55\xa8\x14\xc8\xa8\xb1\xb4\xac\x13\x04\xb4\x28\x8d\xf6\xe2\xa0\xb1\x7c\xf6\xd1\xdc\x73\xcf\x6c\xcd\x7d\x7e\x7d\xaf\xf9\xf3\xed\x74\x37\xdc\x7c\x05\x98\x8f\x45\xc5\xcb\xc7\x45\x93\xad\xfb\xc9\x7c\x38\x9f\x2b\x37\xfc\xc0\xe6\xd4\x95\x43\x69\xb2\x6c\x08\x6d\x79\x9a\x29\xa5\x29\xee\xc9\x62\x05\x38\xa0\xa0\x45\xf6\x01\xa0\x21\x21\x80\xe5\x51\xea\x70\x7b\x77\x73\x61\xea\xc3\x32\x09\xd0\xd7\x5a\x0f\x94\x52\x03\xa2\x4c\xcd\xa6\x58\x12\x58\xa1\xbf\x25\x47\x5b\x14\x2d\x2c\x20\xf1\x00\x51\xcc\x6c\x3a\x08\x00\x0a\x20\x86\x02\x18\x32\xfa\x04\x00\xfc\xc2\x2f\xfc\x42\xf0\x2f\xff\xf2\x2f\x39\x60\xb1\x00\x14\x9b\xa2\xf5\xb1\x98\xd8\x68\x24\xd0\xe2\x1a\x59\xb9\x00\x8f\x0b\xd4\x58\x65\x59\x58\x58\x08\xba\xdd\x6e\xa9\x3c\x4e\x9f\x3e\x8d\x3f\xfe\xe3\x3f\x4e\xb8\x75\x86\xf9\xd8\x70\xb0\x15\xb0\xeb\x1c\xbc\x10\x4b\x4c\x61\x59\xb5\xf9\x65\xd3\x48\x74\x33\xbb\x12\x68\xa1\xe0\x25\xb3\xa6\x46\x61\x82\xf9\x23\xfd\x70\xf5\x78\x37\xda\x38\xbe\x17\x9d\x5c\xeb\x36\xd7\x97\x06\xe1\x6a\x3b\x0e\x72\x00\x03\x6d\x9c\x73\x69\x1b\x4a\x2f\x4c\xfb\x04\x4c\x5b\xd5\x59\xfb\x2c\xef\x6f\xc4\xdb\x12\xbd\x2a\x9e\x2d\x84\x69\xdb\xcf\x07\x12\xba\x9c\x57\x6a\x76\x29\xe8\x88\x58\xe9\x78\x6b\x61\x74\xeb\xc7\xc7\x7b\xaf\x5e\x3b\xda\x7f\xab\xdb\x9e\x6c\x62\x3a\x35\xb4\x8b\x14\xac\x74\xd5\x74\xbf\x16\x33\x45\x94\xa0\xe8\xef\x55\xaa\xef\xa8\xa7\x7f\xab\xfa\x96\x2a\x40\x5d\xc5\xc3\xd5\xbe\xaa\x3a\x63\x5b\xff\xe9\x3b\xb8\xb7\xe5\xe7\xfb\x0e\xd2\x80\x9b\xf3\xb4\xc9\x2e\xd1\xbb\xde\x81\xcb\xcc\xe5\x72\x0d\x64\xaa\xbe\x77\x5e\xa7\xab\x94\x9c\xeb\x65\x7c\x80\x41\xdd\xca\xe2\xcb\xcf\xa7\xa2\xcc\x82\x8e\x5d\x8a\x99\x3e\x77\x16\xee\xf1\xe3\xc7\xf1\x99\xcf\x7c\x06\x6b\x6b\x6b\x00\xac\x96\x96\x5c\xd9\x19\xd0\xf2\xd4\xc3\xb9\xe7\xce\x3d\x9c\xfb\xe2\xb1\x6e\xf4\xb9\x56\x1c\x9c\x51\x9e\xcb\xd6\x9d\x73\xde\x34\x9e\x81\x0d\x9b\x3f\x89\xcb\xbf\xa5\xf4\xcc\x28\x4b\xc6\xbc\xcc\x83\x3b\x22\x4a\xa3\x65\xbb\x7c\xd2\x73\x89\x2e\x81\x4e\xe2\x86\x8e\x7b\xcd\xc9\xee\xa3\x4e\x0a\x58\x3e\x58\x1c\xdd\x7d\xb0\x30\xde\xec\x45\x93\x6e\x02\xdd\x47\x06\x50\x18\x58\xc9\x41\x0b\xfb\xa3\x9b\xc8\x89\xce\xb6\x80\xb8\xb5\x3e\x05\x2b\x26\xce\xbc\x7f\x69\xd9\xe7\xc5\x8b\x17\x93\x6f\x7d\xeb\x5b\xc1\xef\xff\xfe\xef\x27\x00\xf0\xe5\x2f\x7f\x39\x00\x80\xef\x7e\xf7\xbb\xc9\xe9\xd3\xa7\x83\xf7\xdf\x7f\xdf\xd7\x8a\x61\x53\x2c\x3e\xa3\xc8\x3a\xa3\xcb\x83\x0c\x68\x6c\xe1\xc0\x7c\xbe\xfc\xe5\x2f\x07\x66\x8a\x8c\x1d\xa3\x21\xe5\x93\x5f\x13\xc0\x62\xe2\x28\xa0\x29\x80\x18\x5d\x5e\x9d\x54\x9a\x42\x22\x7f\x39\x70\x01\xd0\x36\x40\x26\x48\x30\xb7\xdc\x0f\x57\xd7\xf7\xa2\x8d\x13\x7b\xd1\xc9\x63\xdd\x68\x63\x69\xd0\x58\x6d\xc5\x8d\x4e\x23\x41\x18\x40\xf2\x67\x42\x3e\x2a\xc9\x41\x3c\x78\x9b\xe1\x91\x16\x47\xdf\x9c\x37\x6b\xd7\xc6\x9a\x69\xb1\x84\x4e\xbd\xe2\x52\x6b\xe6\x6e\x3b\xde\xbc\xbc\xde\xfb\xfe\x3b\xc7\x7b\xaf\xef\xcc\xc5\x77\x34\xdb\xce\x5f\xa7\x9b\xcc\x75\x31\x6d\x63\x92\xa5\x25\x71\x58\x5a\xea\xea\xfa\xba\x7a\xdf\x05\xac\xeb\xc8\x72\x90\xe0\xcb\xb7\xce\xc0\xbf\x4e\x3f\x58\x95\x27\x6a\xe4\xeb\x92\xa5\x2a\xef\x4a\xde\xa6\x43\x34\x2f\x46\x1b\x2c\x8d\x97\x84\xad\x03\x3c\x7c\x14\x5f\x55\x21\xf0\xbc\x5d\xa3\xa7\x84\x5d\xd7\x41\xa8\xfc\x7d\xa5\xb4\x3c\x8f\x12\x22\x5d\x59\x59\x09\xee\xdf\xbf\x9f\x1c\x3b\x76\xcc\x76\xc2\x73\x01\xb4\x40\xa3\x3d\x3f\x0c\x96\x9e\x79\x38\xf7\xdc\x87\x1e\x74\x7e\xf9\xe8\x7e\xf3\xe7\xa3\x49\x70\x4a\x31\xde\x2e\x23\x0a\x8f\xb7\xd2\xb1\x07\x4a\xba\x16\xc0\x81\xca\xfe\x37\x7a\x33\x3d\x39\x3a\x7d\x90\x2b\x56\xa6\xe5\xca\x32\xd1\x91\xa0\x2c\x21\xdd\x77\x85\x2a\x48\x55\x78\x2e\x01\x18\x8d\x04\xc0\x24\x40\xdc\xcf\x00\xcb\xfd\xc5\xd1\xed\xbb\x4b\xc3\xdb\x9b\x8b\xa3\xad\x7e\x33\x79\xac\x33\xff\x15\x05\x35\x62\x96\x16\xc9\xca\x92\x9b\xb2\xf5\x74\xb5\x50\x01\xa8\x90\xdf\xd2\xce\xb5\xd4\xa1\x16\x40\x09\xa4\x50\x7f\x14\x20\x5d\x6d\x06\x00\x9b\x9b\x9b\x40\x56\xdf\xbe\xfb\xdd\xef\xe6\x3c\x32\xd0\x62\xab\xcb\xbc\x4e\xf3\xfa\x2d\xb5\x5b\x57\x9b\x93\xda\x9a\xd4\x5e\x6d\x8a\xdf\xb7\x8d\xf1\x20\xf1\x71\xc9\x2a\x76\x3e\x06\xb4\x7c\xfd\xeb\x5f\x0f\xa4\xce\x30\x73\x0a\xce\xe3\x99\x95\x2b\xc9\xda\xab\x59\xee\x5d\xe0\x9d\xc5\xc5\x98\xb6\x61\xf3\x3b\xca\x7e\x73\xa7\xdd\xcc\xda\x12\x21\xed\xac\x8d\xe5\x65\x80\x14\xc8\xb4\x93\x00\x83\x87\x9d\x71\xff\x51\x27\xde\xbe\xbf\x34\xba\xbb\xb1\xdb\x3a\x79\x62\x37\x3a\x35\x05\x30\x41\xbb\x01\x84\x65\x1f\x2f\x52\x97\x94\xa5\x9d\x91\x79\x58\x6d\x96\x5c\x67\x0d\x3b\x6f\x3b\x79\x63\x52\x45\x3e\xc6\xf2\x42\xda\x31\x95\x01\x6a\xba\x33\xef\xb0\x99\x74\x6f\x1f\x19\x5d\x79\x6f\xad\xff\xce\x6e\x3b\xbe\xaf\x55\x61\xd5\x50\xcf\xb4\x33\x10\xc7\x75\xb3\x8a\x48\xdb\xf7\x6e\x91\xea\xb3\x0d\x68\xd8\x00\xb4\xc4\xab\xaa\xfe\xdb\x3a\x56\xa9\xff\xa9\xea\x17\x5c\xef\x23\xb5\x01\x57\x7f\x4b\xf9\xbb\xfa\x21\x5b\xfb\x92\xe2\x5d\x03\x1f\xe9\x39\x6f\xff\x75\xcb\x40\x92\xd1\x35\xf0\xb1\x02\x52\x5b\xdf\x56\x85\xe8\x66\x45\xb3\x55\xc1\x07\x0d\xfb\x80\xa0\x59\xdf\xa1\x4e\xfe\xd2\xc7\x0a\x00\x24\x9d\x4e\x27\xf8\xc6\x37\xbe\x81\xb9\xb9\xb9\x9c\x2f\x73\x02\x0c\x90\x99\x97\x91\x29\xb3\x56\x1c\x2c\xbc\xf0\x41\xe7\x23\x1f\x7a\xd0\xf9\xd5\xd5\x5e\xf3\xe7\x9b\x93\x60\x83\x83\x96\x5a\xc1\x6b\xbe\xc5\x41\xef\x62\x2d\xcc\x7b\xdb\xa6\x7d\xaa\xc4\x12\x79\x5b\x08\xec\x96\x96\x54\x81\x4e\x14\xe2\x61\x33\x19\x3c\x9a\x8b\x37\xef\x2e\x0d\x6f\xdd\x59\x1e\xdc\xba\xbf\x30\xde\x1c\x36\x93\x3d\xad\x30\xc8\x14\x68\x6e\x55\x61\x0a\xb5\x60\x69\xd1\xc2\xb6\xfc\xd9\x1f\xdd\xd9\x96\x76\x7c\x74\xf9\x72\x69\xf7\x5a\x5a\x2e\xbc\x23\xcd\xa6\x7b\xcc\xad\x4b\xc1\xf8\x8e\xae\xea\xc4\xf3\x3c\xad\xf5\x5a\x48\x23\xf1\xb6\xb5\x2b\x13\x6c\xcf\x7c\xda\x97\x24\x7f\x2d\x1d\xf1\x1b\xbf\xf1\x1b\xc1\x5f\xfc\xc5\x5f\x24\xbf\xfd\xdb\xbf\x1d\xfc\xc9\x9f\xfc\x49\x02\x58\x57\x36\xe5\x71\x06\xbc\xe8\x6c\xf5\x1f\x9f\xea\xd5\xc5\xf3\x92\xa4\xcd\xec\x6c\x16\x18\xf3\x97\x5b\x64\x82\x04\xf3\x4b\xc3\x70\xe9\xc4\x6e\x74\xf2\xe4\xe3\xd6\x99\xf5\xbd\xe8\xe4\xd2\x20\x5c\x6b\xc5\x2a\xca\xf5\x01\x9b\x12\x2a\xfc\x02\x19\xa8\x28\x4e\x15\xeb\x6c\x1e\x48\xb1\x79\x61\x3a\x55\x5c\x9e\x26\x32\x0f\xe8\x34\xf2\xf4\xb8\x02\x00\x98\x28\x3d\xba\xbd\x3c\x7a\xe7\xb5\x53\xbb\xff\xe3\x83\xa5\xd1\xf5\x71\xa8\x77\x00\xec\x66\xd3\x42\xfc\xf0\x44\xba\x8a\xa8\xb4\x0d\x80\xc5\xda\x62\xab\x7b\x75\xda\x42\x9d\x8e\x95\xd3\xfb\xf4\x3b\x36\x1e\x36\x59\x7d\xda\x8c\x8f\x5c\x3e\xf2\xf8\xf4\x89\x3e\xfd\xe3\xac\x7d\x2f\xa7\x85\x23\x2f\xd7\x73\xd0\x67\x4a\x78\xe8\x53\x80\x2e\xe1\x7c\xd2\xf8\xa4\xad\x42\x64\x36\x65\xe8\xfa\x08\xbe\x05\x6a\x53\xde\xf4\x5a\x46\x82\x4a\x05\xdf\xfa\xd6\xb7\x00\xe4\xca\x85\xef\xd3\x62\x0e\x81\xcb\xb7\xf0\x07\xd0\xf9\xc4\xdd\x85\x73\xcf\xdf\x9b\xff\xcd\xd5\x5e\xf8\xb9\x30\x09\xd6\x14\x10\x70\x9f\x15\x80\x7e\x30\x32\xe9\xc2\x7d\x5b\xb2\x0b\xaf\xbd\xe9\xa8\xf2\x82\x03\xdb\x18\x47\xc0\xec\xda\x00\x17\x6b\x1a\xc2\x77\x3a\x54\x2b\x13\xf3\xf9\xf8\xfc\x1d\x73\xf9\x05\x9f\x18\x63\xc6\xce\xcb\x01\x18\x85\x49\xef\xd1\x5c\xbc\x75\xf7\xc8\xe8\xc6\xad\x95\xfe\x8d\x0f\x96\x46\xf7\x46\x0d\xbd\xaf\x91\x83\x93\x11\x05\x2e\xe6\x9a\xfc\xda\xf6\x62\xc9\x01\x0b\xb9\x36\x8e\xb6\x05\xcb\x8a\x01\x2b\xdc\x89\xd6\x48\x4a\xa7\x80\x58\x70\x8d\x9e\x5c\x34\x94\xce\x17\x50\xd8\xea\x74\x95\x4c\xb3\x80\xa2\xba\xfa\xc1\x96\xde\x57\x29\xd6\x1d\x28\x89\xc1\x05\x64\xa8\x05\x86\x00\x99\x80\xc4\xdb\x00\x0c\x07\x31\x66\xea\xc8\x4c\x1b\x95\x00\xcc\xc2\xb0\xb1\x7c\x72\xb7\xb5\x71\xfa\x51\xeb\xec\x89\xdd\xd6\x99\xa5\x61\x63\xb5\x91\x18\x5f\x37\x45\xfe\x37\x21\x6d\x18\xae\x76\xef\x35\x2d\xcc\x74\x87\xec\x27\xa3\xa1\x15\x92\x47\x73\xe3\xdb\xdf\x3b\xb3\xf7\xf7\xd7\x8e\xf6\x2f\x8f\x43\xbd\x9d\x01\x16\xe9\xc4\xe7\x02\x68\x41\xb1\x3d\x89\xbe\x5c\x15\xa1\x4e\x5f\x32\x6b\xa8\xd3\x4f\xb9\xae\x25\xfa\x9f\x54\xbb\x39\x2c\x1e\x75\xf3\x39\x48\x59\xd5\x0e\x9e\x63\x6c\xaf\xf0\xd3\xae\x40\xb3\x14\xc2\x41\xc0\x56\xad\xe7\x99\xf2\x93\x56\x2e\x44\x64\x45\x42\x5b\x41\x75\x3e\x71\x77\xe1\xe9\x8f\x7e\x30\xff\xff\x2c\xf7\x9b\x5f\x08\x13\xb5\x4c\x2d\x2d\x35\x0c\x21\xb5\x83\x2f\xef\x32\x9d\x3d\xa5\xaf\x9f\x0d\x7d\xc6\x47\x87\xbe\x41\x23\x5d\xc9\xb0\x33\x17\x6f\xde\x59\x1e\xde\xb8\xb9\xd2\xbf\x71\x6f\x71\xb4\x39\x6c\xea\xc7\x28\x5a\x54\x46\x98\x9a\xac\x47\x5a\xeb\xdc\xba\x42\xa6\x84\x4a\xfe\x2b\x7a\xba\x7c\x39\xe6\xa3\xc3\x2c\x24\xec\x37\x57\xc0\x74\x39\x2f\x09\x75\xea\x69\x81\xaf\x07\x9f\x3a\x75\xdb\x37\x7d\x15\x28\xf2\x19\x24\x1c\x44\x2f\xfc\xb4\x74\x4a\x00\x20\x39\x7b\xf6\x6c\x70\xe3\xc6\x8d\x52\x7e\x99\xc3\xaf\x04\xf8\xe8\x2f\xbd\x96\xc0\x4b\x00\xbb\x05\x86\x02\x97\x0e\xb9\x6e\x07\x09\xe6\x3a\xa3\xc6\xf2\x13\x8f\x5b\x1b\x4f\x3d\x9a\x7b\xfa\xe4\x4e\xf4\xf4\xfc\xa8\xb1\x6c\xf6\x80\xa1\x6d\x28\x9f\xde\x25\xc0\xde\x05\x4c\xe8\x84\x2d\xb5\xb8\x14\xd2\x17\x06\x09\x53\x06\x09\x90\xf4\xa2\xc9\xce\xeb\x4f\xec\xff\xe3\x8f\x4e\xee\x5d\x1a\x35\xf4\x0e\x54\x69\xaf\x16\x7a\x26\x11\x9d\x7a\x05\xa6\xc0\x65\x96\x15\x44\x55\x20\xbe\x0e\x1f\xdb\xe8\xde\x65\x45\x70\x0d\x0a\x7c\xac\x18\xb3\x58\x5c\x24\xde\x87\x05\x16\xea\x58\x4d\x0e\x23\x1c\x58\x27\x34\x6a\x26\xc8\xdb\x08\x8b\xd7\x24\x3e\x10\x68\x66\x11\x4e\x3b\x78\x9b\xca\xa5\xd9\xaf\x8d\x0f\x1c\x74\xfc\xbd\x7c\xd2\xc0\xf5\x9c\x2c\xd1\x54\xc0\xf4\x00\x38\x55\xdc\xff\xa1\x1d\x26\xaa\xf3\xe1\x07\x9d\x53\x2f\xde\x59\xf8\x9d\x95\x7e\xf8\x85\x30\x51\x2b\x40\x71\x53\xaa\x9f\x04\x68\x31\x4a\x8c\x5a\x43\x7c\x7c\x67\xa6\x34\x76\xa9\x94\x83\x52\xf2\x49\xc9\x97\x7f\x56\x8c\xf0\x78\x8e\xe3\x20\x89\x1f\x75\xe2\x7b\x37\x57\x07\x97\x7f\x7c\x7c\xff\x8d\xab\x6b\xfd\x77\xb7\x16\xc6\xf7\xe3\x06\x76\xa1\x72\xc5\xd9\x05\xd0\x55\x4a\xed\x21\x55\xa0\xfb\x4a\xa9\x1e\x80\xbe\x52\xaa\xaf\x94\xea\x03\x18\x12\x4b\xcc\x50\x6b\x3d\x06\xd9\xbe\x1f\xe9\xf2\xe6\x89\x52\x6a\xa2\xb5\xd6\x64\x0a\x8c\x36\x3c\x4d\xad\x2c\xe7\xcf\x9f\x57\x96\xd1\xa3\x29\x76\x9f\x3a\x25\xd5\x47\xde\x1e\x78\x1a\x5b\xe0\x75\x5c\x0b\xf1\x9a\xd1\x6b\x46\x4f\xd3\x24\x24\xde\xd6\x5e\xb4\x40\xe3\xd2\x0d\xd2\x33\x5f\x9d\xc2\xcb\xc8\xb7\x8c\x0d\x3d\x00\xe8\x9d\x9d\x1d\xdd\x6a\xb5\x82\xc9\x64\xa2\xe7\xe7\xe7\x83\xf1\x78\xac\x01\xe0\xc2\x85\x0b\xbc\x8c\x78\x55\xd5\x60\xf5\x21\xfb\x33\x75\x68\x92\x3d\x9f\x64\x7f\x31\x80\x31\x8a\xd6\x87\xb1\x79\x96\x59\xfc\x26\x00\xc6\x1a\x88\x47\xa1\x1e\xed\xcc\xc5\xdd\xad\xf9\xd1\xc3\x5e\x94\xec\x40\xe9\xb8\x99\xa8\x28\x4c\x54\xa4\x4a\xeb\x87\xa6\x8d\x2c\x07\x1d\xac\xdd\x69\xe3\xd8\x4b\x0e\x83\x4c\x2b\x66\x66\x25\xa5\xa0\xa6\x60\x29\x9d\x5a\x74\x06\xcd\x64\xef\xfa\xda\xe0\xb5\x1f\x9d\xec\x5e\x1a\x34\x93\x1d\x00\xbb\x50\xd8\x47\xda\xe6\xf6\x01\xf4\xb3\xbf\x61\xf6\x6e\x63\xad\xf5\x44\xa5\xcb\x0a\x13\x5a\x9e\xe3\xf1\x58\xdd\xbf\x7f\xdf\xd4\x0f\x57\x1b\x31\xdf\x59\xa1\xd8\xc1\xd2\xef\x22\xf5\x4f\x36\xfd\x6e\x6b\x47\x25\x4c\xc8\xe4\xe2\xf9\xd8\xe8\xa5\xfa\x4c\x41\x42\x55\xff\x45\xe5\xa7\x74\x52\x9b\xa5\xef\x66\x2b\x13\xa9\x1c\x78\x7b\x06\x8b\x93\xe4\xb1\xb5\xcb\xaa\xb6\x47\xdf\xc5\xa7\x8d\xf2\x3c\x73\xb9\x14\x13\xf2\xa0\xa3\x24\x5f\x5e\x87\xc5\x1f\x35\xf9\xd4\x31\xd3\xd9\x46\x99\x60\xcf\x01\x00\x2b\x2b\x2b\xf8\xf5\x5f\xff\xf5\x7c\x7f\x0d\x6a\x65\xc9\x4c\xca\xd3\xd5\x43\x4a\xb5\x9b\xb1\xea\x9c\xdd\x6e\x9f\xfd\xf8\xdd\x85\xaf\xae\x77\xa3\x5f\x69\x4e\xd4\x3a\x80\x80\x3b\xa2\x3a\x83\x04\x3a\x66\xb4\x5c\x1c\x1e\x40\xf2\xb3\xc6\x18\x2b\x0b\x37\x6b\x97\xb5\x46\xd1\x39\x37\x0e\x74\xbc\xd7\x9a\xec\xdc\x5b\x1c\xde\xba\xbd\x3c\xbc\x75\x7f\x71\x74\x77\xb7\x1d\xef\x8c\x1b\x7a\x2f\x73\xbc\xa5\x7f\x3d\x64\x96\x17\x64\xab\x19\x88\xdf\x0a\x77\xbc\xcd\x7d\x57\xd8\xca\x20\xd1\x5f\xc5\xdc\x9b\xe5\xb6\x40\xba\xeb\xec\xf2\xf2\x72\xb0\xb3\xb3\xe3\x63\xa1\xf3\xad\xbf\x52\x3d\x34\xf7\xbe\x23\xbf\x82\xcc\x15\xbc\x7d\xa6\x90\x7c\x78\x57\x85\x2a\xbd\x70\x58\xa3\x49\x57\x7e\x75\xe5\xe3\xd3\x48\x01\x7b\x5c\xb2\xc0\xe8\xe2\x51\x03\xd2\xe1\x8e\xc5\x4d\xeb\xca\xfe\x2f\xe9\x9f\x46\x3b\xd0\x68\x47\x13\x75\x64\xb5\xd7\x5c\x7b\x62\xa7\x75\xea\xd4\xe3\xd6\xd9\xb5\xfd\x68\x63\x6e\x1c\x2c\x04\x9a\x9c\xe3\x94\x35\x2e\x4d\x80\xc9\x61\x35\x72\x0d\x8d\x61\x98\xf4\x6e\x2f\x0f\xdf\xbe\x74\x6a\xef\x7f\xdc\x5b\x1a\xbd\xaf\x01\x63\x6d\x31\x2b\x88\xba\xd9\x00\xc1\x9c\x43\x44\xcf\xec\xa2\x56\x4b\xd7\x2a\x22\x13\xfe\x77\x8e\xfc\x0f\xa5\xce\x1c\x20\x9f\xc3\xb2\x20\xfd\x34\xa6\x73\x7e\xaa\x6d\x57\xaa\xca\x75\x80\x46\x1d\x20\xe0\xc3\x7b\x16\x40\x41\xe3\xc0\x9e\xf9\x74\x0e\x07\xa9\xbc\x39\xff\xaf\x7d\xed\x6b\xc1\xfa\xfa\x3a\x00\x51\x59\x99\xed\xc3\xdb\x00\xa2\x56\xac\x96\x4e\xed\xb4\xcf\xbc\x70\x77\xfe\x97\x4e\xec\x45\x5f\x69\xc5\xc1\x59\x64\xa0\x45\x0e\x76\xb3\xc8\xe1\x82\x0e\x8f\xc0\x32\xcc\x01\x46\x61\x55\x06\xb7\xac\x10\x7a\x61\x8f\x09\x9f\x77\x48\xa0\xd1\x8b\x92\x9d\xfb\x8b\xa3\xbb\xb7\x97\x07\x37\xee\x2d\x8e\xee\x3e\x9e\x8b\xb7\x07\x61\xf2\x38\x51\x18\x68\xe8\x5e\x06\x46\xf2\x7d\x22\xc8\x54\xd1\x40\xb3\x83\x10\xd9\x9f\xd9\x92\x3f\xc9\xae\x4b\x1b\xc4\x65\xb2\xa7\x68\x9f\xec\x0f\xe2\xb1\xe7\x04\x07\x1a\xc5\xd7\x92\xd3\x56\xd5\x5b\x5b\x1b\xa8\x32\x65\x4b\xcf\x24\xde\x36\xf0\x53\x87\x7f\x15\xc0\xa9\xfb\x0e\x2e\x59\x6d\xfc\x7c\xd2\x7a\xf1\x58\x5b\x5b\x0b\xb6\xb6\xb6\x92\x13\x27\x4e\x04\x1f\x7c\xf0\x41\x22\x2c\xb1\x36\x40\x85\xaf\x20\x34\xbf\x74\xba\xd8\x76\xa0\xa3\x04\x60\x3a\xd9\x75\x47\x6b\xdd\x56\x50\xed\x30\x51\x9d\xb9\x71\xb0\xb2\xb6\xdf\x5c\x3b\xb5\xd3\x3a\x73\xf2\x71\xeb\xec\x4a\xbf\xb9\xde\x8a\x55\x1b\x04\xac\x94\xda\x95\xf1\x3b\x23\x0f\x34\xa6\x66\x99\x82\x43\xbd\xce\xd2\xb3\xb6\x3e\x0e\x92\xc1\xe6\xe2\xe8\xc6\xeb\x27\xbb\xff\xf3\xfa\xea\xe0\xc7\xc6\x19\x17\x6c\x8a\x28\x5b\xfe\xcc\x0f\x4f\xa4\xab\x87\x12\xa0\x30\x4d\x64\xfb\xf6\x2e\xa0\x0e\x81\x5e\x8a\xaf\xdb\x01\x4b\xf9\xd9\xfa\x2e\x58\x68\xaa\xae\xeb\xf6\x99\xb3\xf6\xb1\x3e\x72\x48\xef\x60\x6b\x0b\x75\x06\x4b\xb6\x32\x9c\x05\x17\x14\x64\xf9\x49\xfa\xb8\x70\x65\x75\x18\xa8\xb2\xae\x32\x3b\x0c\x1a\xd7\x47\xc0\xf1\xe3\xc7\x71\xff\xfe\xfd\x84\xec\x8a\x6b\x56\x1f\x84\x2a\x3d\xe1\xd9\x9c\xf4\x1c\x01\x68\xb7\xe3\x60\xe1\xe4\x6e\xeb\xec\x47\xee\xcd\x7f\xf1\x89\x9d\xd6\x97\xdb\x71\x70\x2e\x80\x0a\x7d\x01\x48\x9d\x8e\xdf\x87\x27\xdf\x14\xae\x8a\x47\x7a\x9f\xfd\x5f\x95\xd6\x01\x60\xbc\xf2\xca\x46\x8e\xe3\x86\x1e\x3d\xec\x8c\xef\xbd\xbf\x32\x7c\xef\xce\x91\xe1\xed\xed\xce\x78\xb3\xdf\x9c\x3c\x8e\x03\xf4\x32\xc0\x62\xc0\xc9\x80\x02\x16\x02\x56\x06\x20\x4b\x9a\x33\x00\x92\x1f\xea\xa6\xc9\xf9\x41\x59\xd6\xe2\xc6\x70\x26\x5c\xbc\x78\x31\x79\xe6\x99\x67\x02\x00\xb8\x76\xed\x9a\x6f\xa3\x05\x79\x2e\x81\x18\x13\x5c\x0a\x44\x52\x32\xae\x67\x3c\x1f\x5f\xde\xb3\xe4\x23\xd1\xf9\x0e\x08\x66\xed\x58\x7c\x78\xd7\x09\x33\xe9\x0e\x61\xf7\xde\x40\xb8\x0e\x84\x3f\xea\x0b\x33\x3d\xee\xa3\xb8\x13\x6f\xc1\xf2\xa2\xb5\xee\x28\xa5\xda\x4a\xa3\xd3\x9c\xa8\xf9\xc5\x41\xb8\x7a\x7c\xaf\xb9\x71\xea\x71\xfb\xec\x89\xdd\xe8\xd4\xe2\x30\x5c\x4d\x37\xb0\xab\x08\x06\xaf\xc0\x5f\x77\xc4\x41\x12\x3f\xec\xc4\xb7\x2f\xaf\xf7\xbe\x7f\x79\xbd\xf7\xa3\xfd\x28\xde\x44\x71\x3b\x7f\x73\x06\x91\xe4\xd7\xc2\xdb\x98\x0d\xb4\xd4\x0d\x3f\xc9\xb4\x87\xdd\x37\x71\x7a\x40\x6e\x93\x55\xe0\xc7\x37\xbf\xba\x60\x5e\x4a\x7f\x90\x81\xc0\x41\xf8\x39\x83\xd7\xc6\x66\x9e\x19\x4a\x42\xdb\x3e\x4a\x5d\xa5\xe6\xca\x43\x4a\x57\xa5\x40\x7d\xd0\x34\x7f\x07\x31\xfe\xa5\x97\x5e\x0a\x4e\x9f\x3e\xcd\x47\x58\xc6\x14\x1c\x60\xaa\x8c\xda\x51\xac\x16\x4e\xec\xb5\xce\x3c\xbb\xd9\xf9\xaf\x27\x1f\xb7\xbe\xd0\x4e\xb7\xf1\x0f\x01\x7f\x04\x49\x15\x24\x07\x2d\x85\x6b\x03\x1a\x9c\xe8\xc5\x10\x19\x4b\x09\xdb\xe8\x4a\x48\x4a\x3d\x57\xa6\x6e\x3c\x05\x8e\x39\xdb\x3a\xa0\x05\xa0\x1b\xd3\x01\x50\x1a\x93\x06\xe2\xfd\xe6\x64\xf7\xfe\xd2\xe8\xf6\xf5\xd5\xc1\xd5\xfb\x8b\xc3\xbb\x7b\xad\xc9\x76\xdc\xd0\xfb\x1a\xe8\x41\x61\xa0\xa0\xf8\xf4\x90\xb4\x91\x9c\xf1\x55\xa1\x7e\x2b\x54\x91\x26\xe9\xfb\x14\xb7\xdf\xa7\xd2\x71\x93\x76\x06\x58\x00\xb9\xce\x73\x50\x42\x69\x12\x46\xe7\xaa\xa3\x2e\x9e\x3c\xde\x45\xc3\x65\xb1\xe5\x61\xcb\xcf\xd5\xa6\x13\x76\x2d\xa5\xa9\x7a\x3f\x4a\xe3\x33\x42\xab\x6a\xff\x75\x47\x73\x55\x03\x2b\x9a\x67\x89\xf6\x3f\xfe\xe3\x3f\xf0\xe6\x9b\x6f\x26\x80\x73\x7f\x18\x93\x2e\x80\xac\x9f\x62\xa4\x7a\xc3\xec\x75\x62\xf6\x80\xc9\x0f\xf4\xc4\xf4\x50\xcf\x36\x94\x1a\x8d\x42\x3d\x78\xd4\x19\xf7\xfb\xcd\xc9\xee\xe3\xb9\xc9\xce\xa3\xce\x78\xeb\x89\x9d\xd6\xd9\x63\xdd\x68\xa3\x1d\x07\x0b\x41\xa2\x02\xc5\x46\x1d\xc6\x29\x57\x29\x55\xd0\x1b\xb4\xfd\x71\x9f\x18\x00\x98\x28\x9d\xec\xb5\x26\x5b\xb7\x97\x07\xef\xdc\x5c\x19\x5c\xed\x45\x93\x1d\xa4\xd3\x41\x74\xe5\x90\xd4\xee\x68\xb9\x15\x40\x4b\xa7\xd3\x09\x7a\xbd\x9e\x4f\x27\x4d\xe3\xaa\xbe\xa7\x44\x6b\xfb\xb6\x12\xe0\xf6\x09\x3e\x83\x70\xdf\x3e\x53\xba\xf6\x79\x5e\x95\x3f\xa5\xa9\x5b\x76\x26\x6d\x9d\x77\x74\x7d\x2f\xd7\x73\x5b\x1a\x27\x60\xe3\xce\xb9\x01\x64\xa7\x19\x5f\x47\x1a\xee\xb0\xc4\x9d\x88\x24\x67\x24\xea\x94\x65\x7b\x4e\x9d\xb1\x5c\x00\x33\x40\xcc\xbf\xce\x5b\x34\x7d\xb0\x58\x3a\xdd\x00\x00\x20\x00\x49\x44\x41\x54\x95\xe3\x13\xcf\x83\x07\x9b\x73\x55\x21\x7c\xe1\x0b\x5f\x48\x55\x41\x6a\x65\x81\x52\x2a\x50\x4a\x35\x00\x04\x5a\xeb\xa6\x52\x2a\xf7\x69\x39\xb1\x17\x9d\xfe\xd0\x83\xce\x67\xcf\xec\xb4\xff\x5b\x67\xd4\x78\x3e\x80\x6a\x59\x64\x2b\xe4\xa8\x33\x45\x63\x03\x12\x26\xbe\x00\x60\xa8\x0b\x14\xa1\xa1\xc0\x82\x9a\x95\x33\xd9\x4b\xbc\xad\x62\x91\xed\xc8\x79\x1a\x5f\xc0\x52\x7c\x9f\xa9\x15\x29\x09\x74\x32\x68\x26\xfb\x5b\xf3\xe3\x7b\xd7\xd7\x06\x97\xdf\x3d\xd6\xfb\xf1\x9d\xe5\xe1\xf5\x6e\x6b\xb2\x35\x09\xd0\xd5\xd0\x7b\x48\x1d\x6d\xf7\x01\xec\x21\x53\x9e\xd9\x7d\x1f\xa9\xf3\x6d\xbe\xa2\x88\x99\xac\x8d\x13\xe4\x04\xc0\x44\x29\xa5\x33\xc0\xa2\x8d\x5f\x4b\xe6\x40\x08\xa5\x14\x5e\x79\xe5\x95\x24\x08\x02\x35\x3f\x3f\xaf\xb6\xb7\xb7\x5d\x75\x4e\x8a\xb3\x39\xd1\x71\x3a\x9b\x93\x1d\xa7\x91\x78\xd9\xea\x31\xaf\xbf\x86\x27\x77\xf4\xb3\x05\x9b\xa3\xa3\xe4\x60\xe8\x92\x1f\x24\x8d\xab\x1c\x24\xbe\x92\xd3\x23\xe5\x45\x7f\xa9\x8e\xe0\xbc\xb9\x4c\x92\xae\xe1\x32\xd2\x77\xe3\x65\x51\x78\x8f\xcd\xcd\xcd\xfc\xfe\xd2\xa5\x4b\xda\xfc\x9d\x3f\x7f\x5e\x65\x75\x89\xf2\x48\x58\x9e\x26\x2e\x41\x5a\x27\x35\xb9\x4e\x32\xa7\xf0\x49\x06\x60\x4c\x9d\x35\x0e\xbe\xb1\x56\x98\x64\x47\x5a\xec\xef\xb5\x27\x7b\xbd\x56\xd2\x1d\x37\xf4\x38\x4c\x54\x23\x4a\x54\x2b\xd0\xaa\x01\x20\x9b\x1e\xca\xf6\x79\xc9\xda\xbd\xce\xc4\x52\x00\x54\xe6\x6c\x56\x28\x74\x32\x9d\xd4\x8b\x26\x8f\x6e\x2f\x8f\x2e\xbf\x7b\xac\xff\xe6\xd6\xc2\xe8\x76\x76\xe2\xb3\x99\x1a\xca\xdb\x9d\xd6\x7a\xa8\x94\x32\x0e\xb9\xd4\xd2\x92\xd7\x93\x8b\x17\x2f\x26\xad\x56\x2b\x18\x0c\x06\xb4\x0c\xa4\xf2\x35\xdf\xd5\x7c\x5b\xde\xa1\x55\xb5\x09\x6d\x49\x03\x76\x6f\x6b\xa3\x92\x33\xab\x24\x9f\x54\x4f\x6c\x69\x4d\x1a\x2a\x9f\xad\xef\x73\xb5\x19\x29\xd8\xda\xac\xe1\x2b\x3d\xe3\x6d\x86\xd2\x49\xed\xc1\x26\x2b\x95\x81\xb6\x45\xca\xcf\xa4\xa5\x32\x19\xde\x3c\x0d\x84\xeb\xfc\x9e\x02\x17\xf3\x12\x52\x03\x76\x8d\x70\xaa\x94\x91\x4f\xa8\xa2\xe5\x2f\x52\xe7\x63\x9a\x30\x6b\x25\xb0\xa6\xa3\xe7\x0f\x01\xc8\x97\x3d\x03\x68\x28\xa5\x42\xa5\x54\x0b\x40\xd4\x48\x30\xb7\xde\x8d\x4e\x7c\xe8\x41\xe7\xbf\x3c\xf9\x68\xee\x4b\xf3\xa3\xc6\xc7\x1a\x50\x73\xf9\xdb\xb8\xfc\x56\xd4\x14\x50\x94\x0c\x28\xd9\x8d\x6c\x15\x91\xe3\x0a\xc0\xc2\x95\xaf\x84\x92\x28\x3f\x55\xce\x38\x4d\x22\x27\xe4\xbd\x10\x80\x7c\xae\xdd\xc4\x25\xd0\x88\x1b\x7a\xb4\xd7\x9e\x6c\xdf\x3d\x32\xbc\x7e\xf5\x58\xff\xc7\xef\x1d\xed\x5f\xde\x5a\x18\xdf\x19\x37\x74\xba\x6a\x41\x61\x2f\x03\x28\x06\xb4\x18\xa5\xb9\x8f\x6c\xb5\x10\x80\x21\x9b\x2a\x8a\xb5\xd6\x63\xa3\xfc\xcd\xca\x06\x03\x58\x90\xd5\xfb\x0c\xc4\xe0\xd6\xad\x5b\xf8\xf3\x3f\xff\xf3\x64\x7e\x7e\x5e\xdd\xbc\x79\x53\xdf\xbd\x7b\x57\x6f\x6f\x6f\xd3\xfa\xa0\xc8\x9f\x54\x47\x68\x43\xb4\x29\xcb\x40\x48\x4f\x95\x83\xf4\x8c\x2b\x43\xdb\xbd\xa4\xac\x25\x03\x1d\x7d\xce\xaf\x6d\x4a\x8e\xf2\xe6\xe9\xa8\x52\x76\x76\xf6\x02\x6f\x2a\x23\x97\xc1\xc6\x8b\xbe\x53\x95\x8e\xaa\x52\xb8\x3c\x1f\xcd\xe2\x6d\x40\xd0\x1a\xe6\xe7\xe7\x55\x18\x86\x68\xb7\xdb\x86\x5f\x0a\x1f\xd2\xd5\x69\xb4\x33\xd7\x59\x9c\xc6\x74\x05\x52\x82\xb4\xae\x9a\x15\x46\x06\xac\x18\x20\x33\xc9\x69\x15\x26\x3a\x40\x3c\x0c\xf5\xa8\xdb\x9a\xec\xef\xb6\x27\x3b\xc3\x66\xd2\x0b\xb4\x52\xd1\x24\x88\x1a\x89\x6a\xa6\x06\x50\x05\x14\x56\x12\x11\xaf\x3a\x45\x7e\x88\xb5\x54\x03\x18\x85\xba\x77\x7f\x71\xf4\xde\xd5\x63\xbd\xd7\xef\x2c\x0f\x6f\xc4\x21\x1e\xa3\xbc\xe4\xd9\x0c\x18\x46\x59\x5b\x9b\xca\xc7\x46\xef\xaf\xbf\xfe\xba\x1a\x8d\x46\x14\xc0\x49\xe5\x69\xea\x99\xad\x43\xf3\xfd\x26\x95\x9d\xa0\x23\x2d\xcd\x43\x02\x22\xbc\xde\xd1\xf6\xca\x65\xa5\xf5\x8a\xd7\x71\x57\x1f\x6a\xd3\x2d\x52\x1a\xa9\x1d\x53\x3d\x64\x6b\x47\xd2\xbb\xf3\x7e\x5f\x1a\x84\xb9\xbe\x99\x8b\x9f\x54\x3e\x92\xae\xe4\x21\x7f\x4e\x81\x8b\xed\x85\xe8\x4b\xbb\x94\x11\x57\xbe\x3c\x43\x1b\x02\xf5\x09\x92\x92\x77\xf1\x91\x3a\x17\xdf\x8f\x6f\x9e\xbb\x4c\x8c\xf8\xf6\xb7\xbf\x5d\x3a\x34\x31\xb3\xb6\x98\xc3\xd7\x22\xad\x75\x2b\xd0\xaa\xbd\xda\x6b\x1e\x3b\xb7\xd5\x39\x7f\x76\x7b\xee\x17\x97\x86\xe1\x4b\x0d\x8d\xf9\xa2\xa6\x28\x06\xd7\x9e\x26\xca\x7a\x63\x02\x43\x03\xfc\xa9\xb6\x5b\x44\xac\xbc\x2b\x40\x4c\xca\x77\xba\x15\x79\xd1\x51\xd7\x9c\x61\x94\x32\xb2\x39\xf0\x26\x4a\x27\x83\x66\xb2\xb7\xb5\x30\xbe\x7b\x63\x35\xb5\xb2\xbc\xbf\x32\xbc\xde\x6b\x25\x0f\xb5\xc2\x1e\xd2\xa5\x96\xf9\x72\xcb\x0c\xbc\xf4\xc8\xf2\xe6\x01\xb2\x55\x43\xc6\xa7\x45\x29\x35\x06\x50\x02\x2c\x28\x8e\x6c\xb5\xb1\xac\x5c\xba\x74\x49\xaf\xad\xad\xa9\xef\x7d\xef\x7b\xe8\xf7\xfb\xfa\xe6\xcd\x9b\x52\x5d\xa7\x8a\x87\xd7\x2d\x3e\x82\xe3\x16\x04\x5a\x9f\x24\x85\x2c\x29\x33\x9a\x07\x57\x8c\xfc\xde\xd4\x77\x40\xce\x8f\x2b\x4d\x0e\x70\xa8\x0c\x34\x48\x7c\x5c\xef\x64\x53\xc6\xd2\xc8\x53\x7a\x57\x1e\x6c\xba\x43\x6a\xdb\x34\x2f\xaa\x10\xe9\xbb\xd9\xf4\x89\xa4\xe3\xe8\x7b\xd1\xfc\x6d\xba\x28\xff\xbd\x79\xf3\x26\xde\x7a\xeb\xad\xe4\xd2\xa5\x4b\xfa\xa9\xa7\x9e\x52\xd9\x4e\xda\x5a\x29\x83\x5d\xa6\x4b\x83\xb3\x38\xf3\x9b\xa8\x74\x09\x3e\xb5\xc4\xc4\x19\xdf\x82\xf5\x45\x4f\xb7\xce\x9f\x28\xa5\xe2\x49\x80\x51\x3f\x4a\xfa\x3b\x9d\x78\x77\x3f\x9a\xec\x06\x1a\x68\x26\x41\x14\x26\xaa\xa1\x34\xc2\x7c\xe7\x5b\xb6\x23\xee\xd4\x6f\xae\x78\x96\xd8\xa4\x81\xd1\xc3\xf9\xf1\xed\xab\x6b\xfd\xd7\x6f\xad\x0c\xdf\xed\x35\x27\x0f\x95\x52\x7b\x5a\x6b\xb3\xb5\x40\x57\x6b\x6d\x06\x0c\xa6\xbd\xe5\xd6\x16\xba\x32\xef\xe2\xc5\x8b\xc9\xda\xda\x9a\xba\x72\xe5\x8a\xa4\x53\xab\xc0\x29\xff\x6e\x1c\x80\x4b\xb4\xb6\x6b\xdb\x37\x76\x01\x13\xa9\x2f\x71\xf1\xe1\xb2\xda\xea\x89\x4d\x56\x6e\x85\x90\xda\xb9\x0d\x44\x28\xe1\x9a\xcb\x41\xd3\xf1\xa9\x18\x29\x0f\x3e\x98\x92\x06\x0b\xb6\x6f\x26\xb5\x17\x1a\x78\x39\xd9\xf0\x42\x9e\xb6\x6a\x1f\x17\x49\x59\xf3\x17\x34\xd7\x12\x2a\x96\x4c\x71\x2e\x0b\x0e\x0f\xb6\x8e\x80\xf3\xe1\x05\xa2\x21\xcb\xcc\x9f\xdb\x02\xcf\x8b\xcb\x83\xf3\xe7\xcf\x2b\x00\x05\xd0\x02\xb6\x53\xa6\x82\x9a\x5b\x1a\x35\x96\x3f\xf4\xa0\xf3\xb1\x67\x1e\xce\xfd\xd2\xf2\xa0\xf9\xa9\x50\xab\x23\xe5\xb6\x27\x00\x0a\x1b\x70\x70\x81\x08\x0d\x90\xe1\x54\xe9\x11\x66\xd8\x8a\xbf\x20\x97\x2b\x6f\x95\x8e\xe0\x52\x11\xa6\x44\xf9\x14\x57\x3e\x0e\xcf\x4c\xd3\x06\xcb\x40\x23\x0e\x30\xda\x6b\xc7\xdb\x77\x8e\x0c\x6f\x5c\x39\xd6\x7f\xeb\xda\xb1\xfe\xe5\x87\x0b\xf1\x07\x99\x39\x7a\x1f\xd9\xc9\xb2\xc0\xd4\xda\x92\x29\xce\x3e\x52\xb0\xd2\x43\xba\x5f\x84\x99\x16\x1a\x23\x75\xba\x35\x23\x3f\x33\xc2\x15\x01\xcb\xe9\xd3\xa7\xd5\x3b\xef\xbc\xa3\x01\xe0\xda\xb5\x6b\xba\xdf\xef\xdb\x3a\xd0\x2a\xb3\xae\xad\x73\xe3\x9d\x3e\x4f\x2b\xe5\x63\xa3\x73\xdd\xf3\x3a\x2f\x75\x04\x36\x05\xe7\x6a\x13\x92\xdc\xf4\x57\x1a\x65\x9a\x20\xe5\x47\xad\xbb\xfc\x5d\x24\xc5\x6e\x7b\x0f\x6b\xfb\x44\xb9\xfc\xa5\x72\x92\xf8\x49\xe5\x24\xe5\x6f\xbb\x16\xcb\x73\x30\x18\xa8\xbf\xff\xfb\xbf\x4f\x2e\x5d\xba\xa4\x5f\x7a\xe9\xa5\x7c\x0a\x49\x67\x08\x42\x29\x65\xa6\x28\x35\xd2\xba\x69\xea\x29\xb7\x5a\xe4\x00\x06\x53\xab\x61\x6e\x81\xd1\x5a\x4f\xa0\x54\x12\x37\x74\xbc\x33\x17\xef\x3e\x6e\xc7\x8f\x93\x40\x0f\x1b\x5a\x85\xcd\x24\x08\x73\xeb\x8b\xca\xec\x2d\x6a\xba\x13\x0c\xf2\xb6\x9e\x1d\x9e\xa8\x90\x3c\x6e\xc7\x9b\xd7\x8f\x0e\xde\x78\xef\xe8\xe0\x9d\xc7\x73\xf1\xa6\x52\xaa\x9b\xb5\x45\x3a\x78\x30\x53\x44\x66\x3a\x36\x95\x23\x93\xcf\x80\x16\x20\x6d\x5f\x8e\xef\x55\x15\x4f\xcb\x54\x1a\xa5\xdb\xbe\x0d\xb7\x9c\xb8\xa6\x14\xe9\x35\xef\xb8\xab\xc0\x2b\x4d\x23\xb5\x7f\xfe\xdc\x65\x0d\xe4\xf1\x36\x59\x5c\xf2\xbb\xae\xa5\xbc\x79\xfe\xae\x36\x63\xfb\x5e\xbe\xf9\xd3\xb4\xb6\xc1\x95\x24\x63\x00\x40\xfb\xfa\xb8\x54\x99\xe0\x6c\x69\x0c\x9d\x0d\x7d\x72\xde\x5c\x69\x71\x9e\xd2\x07\xb6\x01\x21\x6e\x25\xf2\xb5\xd4\x48\x0a\xb9\x80\x30\xf9\x06\x73\x40\xbe\xfd\x77\x33\xb3\xb6\xb4\xa0\xd1\x6e\xc7\x6a\xfe\x43\x0f\x3a\xcf\x9f\x7b\x38\xf7\x95\xd5\x5e\xf3\x33\xcd\x24\x58\x43\xce\xbc\xb8\xf8\x99\x82\x83\xd2\x96\xdd\xe4\x46\xda\xce\xdb\x14\xaa\x0b\xd0\xa4\xce\xb2\x76\xb3\x49\x19\x4a\x31\xb9\xb8\x1c\xe6\x56\x1b\x3a\x76\xf8\x22\x4d\x66\x88\x33\xb4\x62\x64\xd5\xd0\x18\x85\x7a\xb0\xdd\x19\xdf\x7f\xef\x68\xff\x9d\x1f\x1f\xdf\x7f\xf3\xf6\xf2\xe8\xc6\xb0\x99\xec\x98\xbd\x20\xb2\x5f\x63\x69\xe9\x2a\xa5\xf6\xb3\x11\x5e\x0f\x64\x4e\x3d\x1b\x79\x8e\x91\x8d\xfa\x90\x29\x50\x62\x7e\x37\x1d\x81\x06\xd2\x65\xcc\x1f\xfe\xf0\x87\xd5\x1b\x6f\xbc\xa1\x0d\x68\xc9\x82\xab\x3e\x71\x33\x28\xb7\x3a\x48\xf5\x96\xd7\x67\xc9\xbc\x6a\x6b\x5b\x2e\x2b\xa6\x14\x7c\xea\x38\x57\x08\x2e\x90\x66\x68\x25\x99\x6c\xf2\x72\x7e\x1c\xac\x98\x38\xa9\x5d\x52\xf9\x00\xb7\x5c\xb6\x77\xe3\x32\xfa\xb6\x7f\xde\xde\xa5\x51\x68\xd5\xaf\x95\xfe\xd1\xa3\x47\x79\xfd\x78\xee\xb9\xe7\xd4\x1f\xfe\xe1\x1f\x26\x97\x2e\x5d\xd2\x17\x2e\x5c\xa0\x7e\x30\x40\xda\xd9\x53\xe5\x6d\x2c\x30\xa6\xfe\x52\x00\x93\x20\x05\xe8\x39\x70\xc9\x7e\x53\x1a\x05\xdd\x8f\x92\xe1\xd6\xfc\xf8\x51\xbf\x99\x74\x03\xad\xd0\x9c\xa8\x66\x33\x51\xcd\x40\xa3\x01\x14\x7d\xdc\x34\xa8\x8e\xd0\xe8\x47\xc9\xe3\x5b\x2b\x83\xb7\xae\x1e\xeb\xbd\xf9\x70\x7e\x7c\x47\x07\xd8\xcd\x06\x0c\xa6\x4d\xf6\x91\x4e\x13\x0d\x49\xdb\x8b\xcd\x3b\x98\xf7\x98\x4c\x26\xf8\xc1\x0f\x7e\x20\x95\x17\xff\x36\x55\xf1\x92\x7e\xe6\x16\x4d\x5b\xe7\x2c\x0d\xac\xab\x82\xad\x2f\x92\xfa\x1e\x5b\xbd\x74\xdd\xf3\x3a\xca\x03\x6f\x3b\xb6\xf2\x31\xa1\x4e\x3d\x95\xf8\xf2\xe0\xab\x77\xea\x94\x29\xe5\xcd\x01\x98\x24\x23\x20\x00\x38\xb3\xaa\x48\x6a\xa8\x2e\xef\x64\x1e\xa4\x91\x0f\x8d\xa7\xe6\x5a\x9e\x87\x94\x8f\xcd\x22\x43\xa7\x6f\x78\x1e\x81\x40\x63\x93\x91\xf3\xe1\x72\x4a\xf1\xf8\xfa\xd7\xbf\x1e\xac\xad\xa5\xd8\x83\xed\xd5\x62\x96\x3c\xa7\xd6\x16\x8d\x76\x43\xab\xf6\x53\x0f\x3b\x67\x9f\xd9\x9a\xfb\xd2\xea\x7e\xf3\x33\xe1\x24\x58\x87\x2a\xf6\x16\xa5\x90\x3d\x94\x3a\x7f\x13\xac\xd0\x83\xa2\x0e\x62\x26\x49\x95\x91\x2d\x51\x05\x6f\x7a\xda\x9a\x15\xd9\xb0\x4b\x87\xd0\x0a\x80\x56\x3a\xaf\x81\xfd\x66\xd2\xbd\xbf\x34\xba\x71\xe5\x58\xef\xed\x5b\xcb\x83\x5b\xfb\xd1\xe4\x11\x80\x9e\x82\x1a\x64\xa0\xc5\x2c\x75\x36\x53\x42\xf4\x80\xc4\x38\x9b\x16\xa2\x2b\x86\x12\xad\x75\xee\x10\xa8\xa6\x07\xd0\x25\xe9\xeb\x4c\xcf\x43\xf9\xa5\x5f\xfa\xa5\xe0\x4f\xff\xf4\x4f\x8d\x84\xb6\x3a\xc0\x9f\xd9\xda\x85\x94\x86\xc6\x4b\xf9\xf0\xfa\x2f\xd5\x6b\x97\x2c\x2e\x79\xea\xa4\x71\xc9\x26\xbd\x03\x97\x95\xfe\xba\x74\x03\xa7\x73\xb5\x57\x29\xcf\xaa\x50\x6a\xaf\x42\xfe\x3c\x8e\xa7\xab\x7a\xee\xa3\x5b\x24\x39\x0a\xbf\xa4\xde\x61\x32\x99\xe0\x3b\xdf\xf9\x8e\xd9\xb4\x32\xe7\xa3\xa7\x27\x54\xd3\xe3\x06\xe2\x6c\x3f\xa8\x18\xa9\x55\x37\xc1\xd4\xe9\x9c\x1e\x0e\x1a\xd3\xb8\x61\x53\x8f\xae\x1e\xeb\xef\x3f\xea\xc4\xdb\xcf\x6c\xb5\xb7\x9e\xdc\x9e\x7b\xf6\x68\xaf\x79\xb2\x15\xa3\x9d\x36\xe9\xec\x14\xf6\x6c\x19\xa2\x06\x30\x0e\xf4\xe0\xfe\xc2\xe8\xea\xb5\xb5\xfe\xdb\x0f\xe6\xc7\x77\x26\x01\xba\x5a\xeb\x7c\x15\x51\xb6\xe5\x40\x8f\xe5\xc9\x4f\x7b\x4e\x2c\x4b\x9e\xa5\xdf\x3a\xcf\x29\x3f\xdb\x77\xb7\xc5\xc3\x42\x23\x5d\x57\xb5\x15\xa9\x4e\xd7\xe5\xe1\x13\x5f\xb7\xdc\xe0\x78\x5e\x55\x2e\x3e\xe5\x26\x85\xba\xef\x29\xf1\x77\xe9\xad\x42\x1a\x63\x71\xa1\x08\x87\x76\x53\x3c\xf8\x22\x2b\xc9\x94\x45\xcd\x40\x75\x78\xd9\x64\xa0\x23\x58\x93\x9f\x2f\x6f\x5a\x28\xb6\x91\x17\xc0\x90\xed\x67\x3f\xfb\x59\x45\x9d\x71\x91\x9a\x5c\x1b\x98\x4e\x11\xb5\x94\x52\x51\x00\xb4\x9f\xda\x9e\x3b\xfd\xc2\x07\xf3\x5f\x3d\xde\x8d\x7e\x31\x9a\x04\x27\xcc\xea\x43\x2f\xe0\x61\x01\x2d\xb6\x50\x62\x5c\x32\xfd\xce\x18\xf8\xb4\x13\x07\x29\x42\x70\x61\x1c\x13\x92\x00\xf1\xf6\x5c\x7c\xef\xea\x7a\xef\x07\x3f\x3a\xb9\xff\xc3\x3b\x47\x86\x37\x87\x4d\xbd\x8d\xd4\xd9\x76\x2f\x33\x47\x9b\x69\xa1\x3d\xa4\x53\x43\x46\x51\x9a\xd5\x42\x43\x90\x95\x42\x6a\xba\xfa\x22\x37\x4f\xd3\x15\x42\x17\x2f\x5e\x4c\xce\x9f\x3f\xaf\x5e\x7b\xed\x35\x0d\x00\xd7\xae\x5d\xa3\x75\x94\x5b\x51\xcc\xab\xd0\x6b\xa9\x5d\x48\x23\x74\x73\xcd\xeb\x29\xe5\xc9\xad\x1d\xb4\xbe\x25\x2c\x1f\x57\x9a\x84\x3c\xa3\x41\x4a\x63\x33\x51\x27\x1e\x69\xb8\x3c\x74\xf4\xa3\x84\xf4\xb6\x20\x8d\x36\xf9\xb5\x09\x55\xa3\x50\x17\xef\x3a\x81\xa6\x93\x78\xdb\x46\x81\xf4\xda\xf6\xbc\x32\xcf\x1f\xfc\xe0\x07\x0a\x80\x7e\xed\xb5\xd7\xf2\x95\x48\x40\x3e\x55\x94\x12\xa7\xe0\x5b\x03\x25\x87\x72\x6a\x65\xc9\x57\x21\x61\xba\x72\x2e\x01\x39\x72\xa0\x1f\x25\xbd\xad\x85\xf1\xa3\x6e\x2b\xd9\x51\xc0\xa4\x35\x09\x5a\xcd\x49\xd0\x0e\xa0\x94\xca\x37\x75\x51\xd0\x40\xf2\x60\x61\xfc\xee\x5b\x27\xba\xdf\xbb\xb3\x3c\x7a\x6f\xd4\xd4\x3b\xc8\xa6\x69\x55\xba\x6f\xcb\xbe\xf1\x29\x43\x6a\x6d\xa1\x5b\x0e\x24\x44\x4e\x5c\xba\x74\xc9\xb7\x5c\xea\x3e\xe7\xfd\x49\x5d\x7e\x94\x07\xa7\xaf\x92\xd9\xa7\x1e\xdb\x78\xb8\x2c\x38\x2e\x99\x6c\x41\xd2\x47\x36\xde\x36\x30\x50\x37\xcf\x2a\x39\x6c\xbc\xab\xe2\xbd\xf5\x83\x6d\x1f\x97\x3a\x48\xcb\x37\xbd\x0b\x7d\x1e\x46\x5e\x3e\x68\x4d\x92\xc5\x36\x0a\xb6\x22\x66\xe3\xd7\x92\x59\x58\x02\x64\x7e\x2d\x2a\xdd\x38\xaa\xbd\xb1\x1b\xad\x7f\xf4\x83\xf9\x5f\x3a\xb6\xdf\xfc\x6f\xcd\x89\xda\x80\xcf\xe8\xf1\x20\x00\x43\x08\x92\xa5\xc5\x05\x2a\x5c\x40\x43\xce\x40\x46\x45\x1c\xe3\x18\xe7\x5c\x9d\xe5\x32\x08\x93\xde\xfd\xc5\xd1\x8d\xcb\xeb\xfd\x37\x6f\xae\xf4\x6f\x0d\x9a\xc9\xa3\x44\xa5\x2b\x13\x8c\x95\x05\xe4\x44\x59\xb3\x0b\xae\xca\x56\x09\x29\xb6\x17\x0b\xdd\xf1\x56\xb1\x8d\xe2\xf8\xd4\x58\xc5\xe9\xb3\x36\x6b\x00\x20\x7f\xbf\xaa\x11\x3e\xa5\x71\x59\x3d\x24\xde\x55\x23\x50\x9b\xfc\x36\x19\x7d\x2d\xa5\x3c\x1f\xc9\x2a\xe2\x3b\xc2\x93\x2c\x48\x75\xda\x3f\x2f\x2f\x13\x67\x1b\xa5\x49\xbc\x6d\xd6\x59\x1e\x5c\x16\x23\x5b\xe0\xbc\xab\xe8\x2a\xc3\x57\xbe\xf2\x15\xb1\x2e\x64\xf5\xda\x58\x77\x81\xe2\x19\x47\x11\xb9\x8e\x49\x5c\x9c\xb5\x97\x0e\x7d\x36\x6c\xe8\xf8\xe6\xca\xa0\xbf\xd7\x8a\x77\x76\xe6\xe2\xcd\xa7\x1e\xce\x3d\x77\xb4\x17\x9e\x8a\x26\x41\x3b\xf5\xb6\xd1\x78\x3c\x17\xdf\xbe\x7a\xac\xf7\xda\x9d\xe5\xe1\xb5\x41\x98\x6c\xa3\xb8\x1b\x2e\xdf\xaf\x25\x06\xe4\x0d\xe6\x3c\x82\x4d\x07\xe7\xef\xee\x48\x5b\x55\x9f\x5c\x16\x00\x93\xbe\x4a\xd6\x59\xac\x08\x55\x6d\x4e\xa2\x43\x05\xad\x4f\xbe\x12\x8d\x2f\x6f\x5b\x3f\xc8\xf9\x4a\xf4\x3e\x3a\x46\x7a\x57\x9f\x72\xb5\xf6\xd1\xa1\x23\x51\xdd\x50\xa5\x9c\x7d\x0b\xdc\x56\xd8\x2e\x7e\x36\xe5\x61\xa3\xa3\x05\x47\x0b\x86\x5f\xe7\x72\x90\x33\x4a\x02\xfa\x47\x77\xba\x54\x1a\xed\xa5\x41\xb8\xf4\xf1\x3b\x0b\x9f\x3f\xde\x8d\x7e\xb1\x15\x07\x27\x15\x50\xbd\x8b\xa5\x25\x48\xb3\x3f\x5e\xbb\xd1\x0a\x34\x2e\x60\x42\x79\xfa\x02\x18\x4e\x57\x94\x95\x3a\x01\xa7\xa0\x65\xa2\x74\xbc\xd7\x8e\xb7\xdf\x5f\x1e\x5e\xb9\x72\xac\x77\xe5\xc1\xc2\xe8\xde\x28\xd4\x8f\x35\xd0\xd3\xd0\x5d\x05\x35\xc8\x14\x63\x0e\x5a\x30\x3d\x5b\x68\x80\xa9\xe9\xdb\xcc\xa1\x1b\x65\xed\xec\xdc\xff\xf6\x6f\xff\x16\x37\x6f\xde\x74\x75\xda\x2e\xd3\xac\xf4\xdc\x66\x1a\x96\x82\x04\x04\x5c\x79\xf9\xc4\xd3\xe7\xbe\x4a\xde\x96\x37\x7f\x4e\xf9\x70\x7a\x17\x78\xe2\x6d\xb7\x0a\xd4\xd9\xf2\xaa\x63\x56\x76\xe5\x23\xc9\x2c\xc9\x66\xe3\xed\x52\xf8\x92\x7e\x70\x81\x17\xef\x8e\xef\x6f\xfe\xe6\x6f\xf2\x38\xb6\x91\x1d\x7f\x4f\xaa\x83\x80\x6c\xf3\x3a\x4c\x01\x4c\x1b\xe4\x84\xf3\xc2\xd4\x91\x42\x67\x12\xe8\xd1\xf6\xfc\x78\x34\x0a\x93\xee\x5e\x6b\xb2\xfd\xcc\xd6\xdc\x73\x27\x77\xa3\x73\x73\xe3\x60\xb5\xdf\x4c\xb6\x6e\xac\x0e\x5e\x7b\xef\xe8\xe0\x72\xaf\x99\x6c\x43\x15\x0e\x2b\x35\x53\x44\x39\x68\x21\x03\x87\x52\x5b\xbc\x76\xed\x9a\x54\x1e\x36\x40\x6e\x6b\x57\xae\x7e\xa5\xaa\xc3\x74\xe5\xe9\x13\x5c\x75\xd1\x35\xf0\xa5\x34\x9c\x97\x53\x5f\xc1\x2e\xb7\xab\x1c\x6c\xb2\xf1\x7a\x4f\x83\xad\x7d\xbb\x82\x4d\x1f\x54\xc9\xc6\xaf\xeb\xbe\x4b\x49\x06\x5b\x1f\xe5\x83\x7c\x7c\xd2\xcd\x4a\xe3\x13\x7c\x65\xf2\x95\xa1\xc4\xaf\xd5\x6a\x05\xc3\xe1\x30\xa1\xa0\x25\x9b\x26\x0a\x40\x56\x10\xa9\x74\x0b\xee\x76\x67\x14\x2c\xbd\x74\x7b\xf1\x67\x9e\x7d\xd0\xf9\x66\x67\xd4\xf8\x48\xa0\xd1\xce\x97\x16\x82\xbb\xe3\x16\xed\xed\x85\x8e\x5f\xa0\xf5\x09\xb9\x45\xc5\xb1\x7a\xa8\x40\xab\x61\xf5\xa5\x71\xc9\x90\xcb\xaa\x01\xad\x38\x5d\xfa\x74\x6a\xdd\xd1\x18\x35\x92\xc1\xc3\x4e\x7c\xf7\xc6\xd1\xfe\x95\xf7\x8e\x0e\xae\xee\xcc\xc5\x0f\xe2\x40\xa7\xa3\x38\x68\x6a\x6d\x19\x50\xe0\x42\xf6\x61\x19\x01\x48\xb2\x7b\xd3\x20\x0d\x78\x49\x74\x71\x77\xd2\x7c\x05\xc3\x93\x4f\x3e\x19\xdc\xb9\x73\x07\x71\x1c\x57\x75\x90\xd2\xe8\x59\x02\xd1\x2e\x50\x6d\x8b\xb7\x29\x37\x9a\xc6\x05\x1a\xaa\xe8\xa4\x74\x52\x1a\x7a\x3f\x4b\x3e\x55\x69\xa4\x7b\x4e\x0f\x8f\x78\x29\x1c\x96\xce\x38\xcc\x7c\x0e\x7b\xa4\x2c\x06\x36\x60\xa2\xfc\x68\x3c\xb5\xfc\xe6\xab\x1a\x51\x3c\xef\xa8\x5d\xb8\xd6\x88\x02\x9d\x1e\x41\x72\xac\xdb\x3c\x76\x6e\xab\x73\x6e\x63\x37\x7a\xfa\x71\x3b\xbe\x7b\xe9\xf4\xde\xbf\x3f\x58\x18\xdf\x8d\x03\xdd\xcd\x80\x8b\x59\xf6\x3c\x60\x03\x0b\x33\x98\x48\xd8\x5f\x69\xa7\x69\x8f\x32\xf8\x69\x7d\xe3\xc3\xc8\xff\xb0\xfa\x9c\xba\x69\xfe\x33\xb6\x99\x3a\xf9\xb9\xfa\xdd\x5a\xf9\x48\xab\x8a\xf8\x1c\x19\x65\x2c\xcd\xe9\xd2\x40\xe7\x83\xf9\x2f\xa5\xa9\x12\xac\xce\xfc\xa4\x34\xc7\xe7\xe2\x2d\xf9\xdf\xd0\x77\x54\x00\x74\xa7\xd3\x09\x06\x83\x41\x02\x00\x2f\xbd\xf4\x92\xca\x68\xcc\x5e\x2d\x81\x52\xaa\xa9\xa6\x9b\xcc\xb5\x5a\xb1\x3a\xf2\xdc\xe6\xfc\x47\x9e\x7d\x30\xff\x7f\x2e\x0e\xc3\x97\x02\x8d\xb9\x29\x68\x01\xe8\x76\xda\x06\x2c\x50\x07\x81\x82\x8b\x0a\x07\x0c\x82\x19\x44\xb4\x8c\xe4\x96\x93\xb2\x43\x8d\x08\x92\x94\xcb\xe7\x76\x1a\xa3\xf5\x94\x7e\x0a\x8e\x52\x78\xa2\x4a\xa6\x1a\x95\xef\xaa\x9b\x04\x3a\xe9\x45\xc9\xde\x07\x47\x46\xd7\xdf\x5d\xef\xbd\x75\xfd\xe8\xe0\xdd\x9d\xb9\xf8\xde\xa4\x81\x3d\x0d\xbd\x6b\x56\x0b\x65\xf3\xe6\xf9\x9e\x2c\xe4\x6f\x84\xd4\x7f\x65\x94\x39\xdd\xc6\x2a\xdd\xdf\x22\xdf\xf5\x96\x38\xdf\x6a\xa0\xa8\x30\xbb\xdd\xae\x9a\x4c\x26\xa6\x23\xa6\xbe\x1b\x34\xae\x54\x2c\x28\xd6\x05\xde\x61\xdb\xe6\x66\x6d\xfe\x0e\x01\xb9\x36\x3c\x79\x3e\xbc\x1e\x2b\x46\x0f\x21\x0d\xed\xc8\xf8\xfc\x34\xf7\x43\xe1\xef\xe4\xf2\x5d\xa1\xef\x69\xa3\x03\xa1\xa3\x6d\x5c\xf2\x39\xe0\xed\xb3\xaa\xdd\x4a\x7a\xc3\xa5\x4f\x38\x0f\x9a\x07\xbd\xf6\xa1\xe5\xef\x67\xbb\xa6\xbe\x48\xb4\x9c\x6c\xfc\xf9\x3b\x54\xc9\x42\x83\x3a\x79\xf2\x24\xc8\x06\x75\xe9\x84\xce\xf4\xb0\x42\xc3\x5b\x63\xfa\x3d\x12\x4c\x7d\x5c\x34\x90\x1f\x22\x6a\xe2\xc6\x50\x98\x68\x85\xf1\x38\xd0\x83\x7e\x94\xec\xed\xb5\xe2\x07\x7b\xad\xc9\xbd\xbb\x47\x46\x97\xef\x2d\x8d\xde\x8f\x1b\xba\x8b\x74\xef\x24\xe3\x90\x9b\x3b\xe3\x22\xf5\x2f\xcb\x57\xee\x81\x00\x16\x00\xfa\xe2\xc5\x8b\xc9\xca\xca\x4a\x30\x18\x0c\x5c\x7a\x9f\xbf\x2f\xf7\x33\xb3\x7d\x63\x5b\x99\x4b\xb4\xbc\xde\x70\x1f\x31\xde\xe6\x78\xbd\xe1\x7f\x92\x1f\x08\x7f\x0f\x5b\x3d\x95\xf8\x54\x7e\x7b\xc6\xcb\xb7\x6e\x4a\x7d\x1c\xa7\x75\xc9\xea\x1b\x78\x1b\x75\xd1\x48\x20\x4c\xd2\x03\x52\x19\x95\xea\x89\x62\x89\x5c\x1d\xba\x2f\x62\xf6\x4d\x73\x10\xf4\x35\xeb\xc8\xc8\xe7\x1d\xb0\xb4\xb4\x84\xdd\xdd\xdd\xfc\x04\x58\xf2\x4c\xf4\x69\x69\x8d\xd5\xd2\xe9\x47\xed\xa7\x3f\x79\x67\xe1\xd7\xd6\xbb\xad\x2f\x87\x09\xd6\x4a\xd6\x95\x1c\x54\x14\x62\xf3\xa3\xe7\x45\x20\x52\xa2\x2d\xfb\x6d\xd8\xa9\xd3\x50\x67\xda\x47\x4a\xc3\xe5\x72\xdd\xd3\xeb\x58\x25\xf1\x5e\x7b\xb2\x7d\xe7\xc8\xe8\xbd\x1b\xab\xfd\xab\xf7\x96\x86\xb7\xf7\xa3\xe4\x51\x02\x9d\xef\xb6\x49\x7c\x5a\xe8\xe1\x88\x85\xa9\x21\x35\x3d\x08\xd1\x4c\x11\xd1\x53\x9a\x13\x00\xf9\x6a\xa1\x8f\x7e\xf4\xa3\x41\x1c\xc7\xb8\x7c\xf9\x32\xe0\x67\xd5\xe0\xf7\x2e\xcb\x8c\x6b\xf4\xe3\xca\x47\x4a\xeb\x0a\x92\x85\xc4\xc5\x9b\xa7\x93\xd2\x48\xbf\x5c\x36\xdf\xf2\x71\xe5\x23\xd1\xdb\x64\xfc\xcf\x10\x0e\x32\xa2\xe5\xf4\x75\x47\x9c\x5e\xfa\x74\x7e\x7e\x3e\xd8\xdf\xdf\xcf\xe9\x88\x05\xc6\xd0\x04\x00\xf2\x55\x8e\xd9\x6f\x88\xf4\x8c\x34\x73\x22\xbd\xb1\xc2\xd0\x03\x1b\x23\xa4\x9b\x64\x86\x0a\x2a\x6c\x68\x84\xad\x38\x08\x27\x0a\xa3\x61\x98\xf4\xa0\x72\x3f\x96\x5e\xd6\x1e\xf3\x93\xd6\x21\xfb\xb6\xc0\xfc\x66\x83\x87\xba\xba\xbc\x4e\xdd\xf0\x6d\x63\x87\x6d\x75\xa8\xdb\x8e\xeb\x58\x98\xaa\xfa\x4a\x58\x9e\x1f\xa6\x4c\x9c\xae\x4e\x99\xd6\xa9\xff\x3e\xdf\xda\x25\x43\xa9\x5f\x73\x29\xb5\x9f\x04\x00\xa9\xe2\x35\x6b\x21\x1d\x54\x21\xe5\x0a\x42\x4f\x8f\xa9\x0f\x32\x45\x60\x94\x42\x5b\x29\xd5\x6e\x4e\xd4\xc2\xf1\xdd\xe8\xd4\x8b\x77\x17\xbe\x74\x66\xa7\xf5\xb5\x56\xdc\x38\x03\x20\x10\x2d\x19\x16\xcb\x09\xca\xd1\xce\xa0\x81\xf2\xee\xba\x0c\x19\x49\x40\x48\x4c\x67\xe3\x5f\x43\x1e\x9e\x76\xdc\x48\x46\x8f\xe6\xc6\xf7\x6e\xad\x0c\xdf\xbb\xb9\x3a\xb8\xfa\x60\x7e\x7c\x77\x18\x26\x8f\xa1\x72\x93\xb3\x01\x2e\xc6\xaf\x85\x82\x16\xb3\x45\x3f\x5d\xe6\x0c\xb2\x43\x28\x80\x29\x68\xf1\x34\x49\x4b\xf5\xc1\x84\x59\x94\x6c\x55\x9c\x2b\x9d\x0d\x20\x01\xf5\xf8\x54\x05\x57\xdb\xb1\xe5\x35\x4b\xc7\x6d\x78\x1d\x44\xa1\x49\xb4\xb3\x94\x2b\x0d\x55\x7c\x7e\x52\x20\xca\xf7\x9b\x56\x81\xe3\xd2\xf5\x85\x0b\x17\x82\xef\x7f\xff\xfb\x09\x50\x39\x85\x54\x3a\x75\x1a\xc5\xe9\x23\xfa\x67\x00\x8e\xe1\x43\x7d\xc9\x4a\x87\x96\x66\xed\x73\x44\x7c\x67\x24\xd0\x52\xf9\x2e\x42\x39\xf8\xdc\xd7\xd5\xeb\xbc\x9d\x57\xc9\x65\xe8\x7c\x06\x2e\x3c\x1f\xdf\x4e\x98\xe7\x21\xd1\xf8\xe8\xaf\xc3\x00\x2b\x55\x83\x99\x59\xf9\xd7\xd5\x05\xae\x41\x8e\x09\x85\xef\x50\xd5\x3f\xd5\x41\x81\xb3\xa0\xb4\x2a\x9e\x12\x0f\xdf\x4a\x55\x25\x5f\x29\xfd\xca\xca\x4a\xf0\xc2\x0b\x2f\xe0\xf9\xe7\x9f\xcf\x79\x18\xe0\x42\x1a\xb7\x19\xa9\xb4\x1b\x5a\x75\x8e\xee\x37\x37\x3e\x72\x7f\xfe\x33\x1f\x7a\xd0\xf9\xb5\xce\x28\x78\xd1\x9c\xf6\x5c\x19\x6c\xe8\xc0\x81\x1a\x0a\xd6\x0d\xd1\x82\x53\x26\x74\x5a\x4c\x7c\x11\x8a\x83\x1f\x25\xd1\xd0\x18\x86\xba\xf7\x60\x61\x74\xfb\xc6\xea\xe0\xca\xfb\x2b\x83\x1b\x8f\xe6\xe2\xfb\x71\x43\xef\x62\x7a\xa6\x09\x9f\x2b\xef\x11\x65\x58\x58\x35\x84\xe9\x68\xae\x30\xaa\x33\x3e\x2d\x02\x68\x01\xfc\x1b\xe3\x61\x29\x11\x5b\xfe\x55\xf7\x36\x00\xe3\xcb\x5b\x52\xca\x12\xed\x2c\x8a\xc5\xd5\x56\x5c\x32\xf9\xc8\x5c\x47\x71\xf9\x74\x7c\xbe\xf4\xde\x00\xc1\x91\xce\x97\xc6\xf5\x5e\x2e\x1e\x10\xe8\xad\xe5\x2b\x0c\xae\x4a\xfb\x4b\x61\xea\xf7\x92\x83\x98\x6c\xd0\x15\xd2\x81\x18\xc9\x27\xc1\xb4\xfd\x0d\xb2\x01\xc3\x00\xd3\x55\x4a\xb4\x6d\xc6\x54\xe6\x9b\x37\x6f\xe2\xd2\xa5\x4b\xd8\xda\xda\x9a\xe5\xdd\xea\xe8\x73\x1b\xe0\xb0\x85\x3a\xf5\xc7\x07\x28\xd9\xde\xeb\x20\x75\xdd\xf0\x39\x2c\x1e\x12\x3f\xe9\x1d\x5c\x72\xcf\xda\x8e\x6c\xb2\xd6\xd5\x9d\x56\x1e\xae\x4e\xd6\x47\xe1\xf9\x22\x43\x57\x45\x30\x7c\x5c\x05\x5c\x15\x66\x05\x2d\x85\x3c\x4f\x9e\x3c\x89\x7f\xfd\xd7\x7f\x4d\x9e\x7f\xfe\x79\xe3\x84\x0b\xa4\xe0\x25\x20\xe0\x25\x9d\x26\x82\x8a\x16\x46\x8d\xe5\x33\x3b\xed\x8f\x3c\xb9\xdd\xfe\x85\xb9\x71\xf0\x9c\x12\x40\x4b\xd9\xea\xa2\x53\x1f\x17\x65\xf1\x2e\x51\x29\x00\xc8\xb7\xcf\x4f\x93\xe4\xfe\x28\x39\x19\x01\x12\x00\x39\x5f\x24\x7b\x96\x02\x9b\x32\xff\xe9\xb4\x4e\x85\x03\x2f\xcd\xdc\x03\x21\x69\x68\xf4\x9b\xc9\xee\x07\x4b\xa3\x1b\xd7\xd6\x7a\xef\xdc\x59\x1e\xde\xe8\x46\x93\x87\x49\x00\xb3\xfb\x6d\x0f\xd9\x92\x4a\x4c\x37\xb0\x32\x0e\xb8\xe6\x6c\x21\xae\x14\xcd\x46\x56\x26\xc3\x04\x00\x36\x37\x37\xd1\xef\xf7\x4d\x9c\x54\x87\x7c\x1b\x57\x22\xa4\x05\xfc\xea\x68\x1d\xe5\x20\xd5\x65\x29\x5d\x55\x07\x59\x25\xa7\xd4\xe8\x5d\x8a\xcc\x95\x86\x07\x9f\xf7\xa5\x74\x86\xb6\xea\xfd\xaa\x80\x1e\xcf\xd3\xa6\xf8\x6c\xf9\x48\x65\x55\xe7\x5a\x92\x85\xca\xe9\x92\xdf\xf6\xdc\x16\xaa\xea\x44\x81\xbf\x01\xee\xd9\x94\x76\x92\xf9\xde\xd1\x7a\x42\xbf\x99\xf9\x0b\x33\x1a\xa3\xcb\x0c\xb8\x01\xa3\x1d\x21\x6d\x93\xf9\xea\x21\x14\xa7\x6c\xa9\xb5\x85\x5b\x5a\xa4\xf7\x72\x05\x1f\x80\x5c\x37\xde\xa9\xeb\x19\x8d\x8d\x8f\xad\xbd\x49\xdf\xa7\xea\xbb\xd9\xe2\xeb\xbe\x73\x55\x1f\x5b\x15\xea\xb4\x87\xba\xe9\x5c\xef\x52\x47\x47\xba\xf4\x5c\x02\x14\x91\xb6\x4d\x50\x89\x81\xad\x32\xd8\x1a\xb9\xeb\x5e\x02\x19\x92\xb0\x2e\xc5\x69\x93\x93\xe7\xeb\xac\x88\x6f\xbd\xf5\x56\xbe\x82\xc8\xec\xd5\x82\xe2\xa8\x25\x32\xcb\x9f\x5b\x71\xb0\xf0\xc4\x4e\xeb\xe9\x73\x5b\x73\xff\x75\x71\xd8\x78\xa9\xa1\x55\x27\xcf\x8d\x74\xf6\xa5\x2e\x5f\x51\xef\x97\x32\x20\x48\xa1\x40\x31\xad\x12\x4c\x26\x14\x92\x88\x1c\x33\x47\x59\x7e\x02\x33\x84\x34\xe5\xfc\xa7\xc4\x06\x12\x99\x69\xa6\x14\x14\x69\x72\xa6\x89\x86\x06\x92\x5e\x94\x74\x6f\x2f\x0f\xae\xbc\xb3\xde\x7b\xf3\xde\xd2\xf0\xf6\x20\xd4\x8f\xcc\xd4\x10\xb1\xae\x74\xb3\xd1\x5b\x61\x17\x5c\x97\x95\x85\xef\xcd\x62\xb1\xb2\x00\xf6\x7a\x0a\x12\x67\xeb\x34\x7c\x94\x41\xe0\x78\xc6\x83\xab\xfe\x51\x5e\x5c\xa6\x2a\x45\x5a\x95\x47\xd5\x88\x46\xe2\x21\x81\x2a\x57\xe7\x63\x1b\x85\xb9\x64\xa3\x7c\x5d\x72\xdb\xbe\x17\x2d\xef\xaa\x51\xa0\x0f\x4d\xdd\x72\xe2\xef\x60\x64\xa2\xbf\x55\x72\x4b\xcf\xb9\xbc\x75\xe4\xce\xaf\xf7\xf7\xf7\x31\x3f\x3f\x0f\x0b\x5d\x6c\xf2\x33\xbb\xd9\x12\xbe\x46\xff\x4b\x60\x33\x01\xd9\xff\x85\x00\x95\x04\x28\x5a\x3d\x99\xdf\x0d\x7d\x27\x29\x54\x01\x81\xaa\x0e\xce\x15\x6f\xe3\x5d\xb7\x8f\xf3\x01\xd3\x52\xdf\x97\xc7\xad\xaf\xaf\x07\x9b\x9b\x9b\xce\xef\x26\xa4\xb3\xd5\x0b\x9b\xcc\x10\x9e\xdb\x06\x11\x07\x0d\x75\xda\x91\xab\x3c\xb9\xfe\xb4\x81\x15\x1b\x3f\x00\xe9\xce\xb9\x2e\x0f\x7d\xb0\xe7\x26\x5e\xf2\xc2\xb7\x79\xd6\xbb\x78\x73\xfe\xe6\x5e\xf2\xa4\x76\x79\xa0\x73\x2f\x6a\x13\x27\x79\x9f\x73\x4f\x73\xdd\x6e\xb7\x83\x38\x8e\x35\x39\x83\xc8\x34\x66\x63\x6d\x69\x20\x3d\x87\xa8\xa9\x94\x6a\x35\x12\xcc\x9f\xde\x69\x9d\x7d\x7e\x73\xfe\xf3\xeb\xdd\xe8\xf3\xd1\x24\xd8\x28\xc0\x80\xaa\xa5\xc8\x0e\x23\x46\xd5\xcc\x0d\x5d\x91\xe4\xa2\xcf\xc1\x86\xa2\x74\xba\x08\x44\x4a\xcc\xcb\x20\xa9\x90\xde\x5c\x2b\x05\x9d\x71\xd1\x0a\x49\x2f\x9a\xec\x5e\x5f\x1d\xbc\xf5\xe6\x89\xfd\x1f\xdc\x5b\x1a\xbd\x3f\x6a\xe8\x9d\x6c\x45\xc2\x1e\x50\x38\xd5\xb9\x8f\xf4\x7c\xa1\x41\x76\x3d\xcc\x56\x3a\x8c\x30\x3d\xe9\xd6\xec\x02\x6a\x56\x47\xe0\xe2\xc5\x8b\xc9\xb3\xcf\x3e\xab\x86\xc3\x21\xde\x7c\xf3\x4d\x5b\x7d\x29\x7d\x57\x94\xeb\x85\x6d\x65\x00\xf7\xac\x97\x3c\xfc\xb9\x1f\x72\x40\xe8\xa4\xfa\x4a\xf3\xe0\x72\xd1\x34\x09\xb9\x96\x78\xf3\x46\xeb\xf2\xde\xa7\xcf\xb9\x1c\x54\x56\x1a\x68\x75\x48\x48\x5c\x82\x22\x2f\xd7\xfb\xb9\xde\x19\xc2\x33\x9a\x2f\xe7\xc3\x79\xf1\xef\x2a\xe5\xeb\xfa\x7e\x2e\x19\x7d\x03\xfd\x1e\xd2\x8a\x0d\xe9\x7b\x71\x99\x6c\x3a\x55\x3b\xe2\x5d\x72\xe7\xd7\x8d\x46\x43\xfd\xf5\x5f\xff\x35\x3f\xc0\xd1\x1c\x41\x9d\x00\xf9\x79\x47\x40\x0a\x3a\xcc\x8a\x3c\x73\x72\xba\x39\xef\x28\x06\x30\xce\xe2\xe9\xaa\x21\x71\x40\x61\x06\x11\x64\x77\x5c\x2a\x17\x2d\x27\xdb\xbb\xf3\x20\xd5\x4f\x5b\x1d\x54\xec\xd7\xc5\xdb\x56\x86\x54\x4f\xd8\xfa\x17\x5e\x07\x4d\xba\x04\x00\x16\x17\x17\x83\xd1\x68\xa4\xb3\x6b\x65\xae\xf7\xf7\xf7\x2b\xbf\x9b\xe5\x1d\xab\x64\xa5\xf9\x4b\x3a\xcf\xd6\xee\x69\x1d\xf5\x0d\x55\xf5\x91\xf7\xc3\x89\x40\xc3\xf5\x9a\x04\x4c\xaa\x78\x97\x64\xae\xb3\x73\xae\x0b\x69\xcd\x82\x0c\x6d\xc1\x36\xda\xf5\x41\xaf\xae\xfc\x25\x59\x12\x00\x18\x0c\x06\x89\xcd\xd9\x8d\xcd\x05\x47\xd0\x88\x8e\xef\x45\x6b\xcf\x6c\xcd\x7d\xea\xf8\x6e\xf4\xd9\x28\xdd\x64\x0e\x40\x19\x0c\x88\xe0\x00\x28\xae\x22\x12\x12\xf1\xbd\x55\x28\x2d\x07\x16\x1a\xfe\x20\x88\xee\xb8\x22\x3a\xee\xf2\xa9\x21\x87\x9f\x0c\xa0\x91\x28\x24\xfb\xd1\x64\xe7\xbd\xb5\xfe\xeb\x3f\x3c\xd9\x7d\x6d\xb7\x1d\x3f\x48\x94\xee\x21\x5b\xde\x4c\x9c\x70\x8d\x7f\xcb\x88\x6d\x60\x95\xa0\xb8\x89\x95\x19\xcd\xe5\xd3\x43\x46\x39\xfe\xd9\x9f\xfd\x99\x41\xe4\x52\xdd\x03\x8a\x75\xc6\xc7\x6a\x41\xd3\xd9\x46\x29\xae\x91\x80\x4f\xfd\x74\x05\xce\x9b\x8f\xd4\x5d\x69\xaa\xd2\xdb\xd2\xb8\x82\x6d\xa4\x69\x9e\xd9\xda\xb3\xaf\x95\xc0\x57\x0e\x9e\x87\x34\x8a\xe6\xb4\x5c\x5f\xd8\x78\xd6\x91\x53\x1a\x19\x73\x99\xa4\xbc\x7d\x46\xec\xae\x7b\x9f\xd1\xbd\x89\x03\x80\xe4\x87\x3f\xfc\xe1\x34\xf3\x24\x41\xa3\xd1\x00\x52\x70\x91\xa7\xcd\xae\x63\x20\x3f\xfb\x28\xc9\xa6\xbf\x91\x4d\x31\xf1\xf7\x34\xd7\x31\xb5\xd4\xd0\xb3\xbf\x4c\x88\xa2\x28\x18\x8d\x46\x3e\xdf\xb8\x6a\x44\xed\x3d\xe2\x66\x32\xd6\xb1\x06\xf0\xb4\x94\x87\xb3\x2e\x35\x1a\x8d\x20\xdb\x5e\x21\xf9\x9d\xdf\xf9\x9d\xe0\x8f\xff\xf8\x8f\x93\xdf\xfc\xcd\xdf\x34\x7e\x45\x05\x5f\xa3\xaa\x60\xf4\x1a\xe1\x59\xb8\x16\xde\xa1\xaa\x5e\x49\xf1\x52\x7a\x1b\x8d\x6f\xfb\xb0\x05\x1b\x9d\xad\x6d\xd8\x74\x9d\x57\x1d\x99\x75\xf1\x88\x14\xea\x28\xa6\xc3\xe0\x7d\x90\xce\xa2\x14\xf8\xce\xb8\x74\x59\x21\xc8\x46\x4e\x2b\xbd\x70\xf5\x63\x77\xe7\x7f\xfe\xdc\xc3\xce\xaf\x2e\x0c\x1b\x9f\x08\xb4\x6a\x4b\xfc\x6c\xa0\xc5\xf7\x79\x5d\xba\x59\xc2\xac\x32\x68\x68\x4c\x02\x8c\x76\xe6\xc6\x5b\xef\xae\xf5\x7f\xf8\xc6\xc9\xfd\xd7\x7b\xcd\xc9\x23\x9d\x2d\x75\x36\xfb\xb2\x98\x3f\xb2\x9c\x92\x6e\x15\x9e\xa0\xe8\xc7\x92\x10\x05\x99\x37\xec\xdf\xfd\xdd\xdf\x0d\xfe\xe8\x8f\xfe\xa8\x4a\x29\xda\x1a\x61\xdd\xce\x72\xd6\xce\xc6\x87\x9f\x4f\x1a\x4a\x07\x07\xed\x41\x78\xd7\x49\x6f\x53\x32\xae\xf2\x3d\xc8\x37\xf0\x91\xf3\xb0\x42\x1d\x70\x55\x57\xd7\xcc\xda\x91\xda\xea\x98\xaf\xfe\x2b\xd0\x09\x4b\xa7\x0b\xbf\xa6\xc3\x25\xd7\x12\x08\xcb\x3b\x3e\x33\xa0\xa8\xb1\x92\x0f\x42\xfc\x61\x84\xba\x9d\x9e\x8b\x8f\x4b\xee\xfc\xf9\xca\xca\x8a\x39\xe1\x1b\xdf\xfe\xf6\xb7\x03\x5a\x06\x96\xa9\x32\xa7\xcc\x3c\xbd\x63\x0a\x5c\x92\xb5\x4e\xdb\xf2\xa9\x83\xb3\xd6\xd7\x59\xc3\x81\x75\x82\x74\x3a\x74\xdd\xc6\x62\x82\x6f\xe7\x62\xbb\x77\x05\x89\xce\x86\xea\x7c\xf8\x94\xf2\x66\xcb\x9e\x03\x64\x7e\x2d\xda\x9c\xf8\x0c\xb4\xdb\x71\xa3\x73\xee\xc1\xdc\x0b\x67\x76\xda\x9f\xef\x8c\x82\x8f\x28\x8d\x02\x68\xa1\x1d\x7c\xd9\x42\xe1\x0f\x64\xb8\x1d\xd4\x46\x37\x4b\xa0\x3b\xe2\xda\x2c\x45\x3c\x70\xd0\x32\x6a\xe8\xc1\x83\x85\xd1\xad\xcb\xeb\xfd\xd7\xdf\x3d\xd6\x7b\x67\x10\x26\x8f\x31\xdd\x12\x9c\x5b\x5b\xa8\x85\xc5\xac\x4e\xc8\x1d\xfc\xa8\x09\x1b\x40\x61\xd7\xdf\x66\xb3\x49\x4f\x70\xe6\x81\x77\xaa\x3c\x1e\x28\xd6\x49\x51\x21\x09\x69\xe8\xa8\x8b\xa6\xb1\x8d\x60\xa4\x06\x0f\x54\xf3\x97\xe4\x91\x46\x50\x9c\xce\xf6\xcc\xf5\xae\x5c\x1e\x1a\xf8\xfb\x26\x2c\xce\x04\x57\x7a\xe9\x79\x15\x00\xa8\x0a\x87\xad\x38\x6d\xba\xcb\x36\x6a\xa5\xa1\xae\xae\x91\xf8\xd5\x01\xa1\x2e\x3e\x2e\x99\x24\x9d\x46\x4f\x48\x2f\x8e\x5a\xd3\xc1\x42\xa0\xb2\x43\x49\x6d\x79\x98\x36\xea\x70\xe6\x97\xea\xfa\x4f\xaa\xd3\xe3\xf9\xd9\x82\x4f\x27\xec\xdd\xaf\x18\xd0\x62\x82\xcb\xaf\xc7\x67\xe7\x72\x4f\xb0\x53\x25\x57\x9d\xba\xe8\xa2\xb7\xd5\xd7\x9f\x14\x90\x39\x08\x9f\x04\x98\xbd\x0f\x3c\xa8\x85\x63\x96\x42\xf0\x05\x54\xb5\xf2\xfa\xe6\x37\xbf\x19\x34\x9b\xcd\x02\x70\x41\x71\x09\x61\xbe\x55\xf6\xf3\xf7\x3a\xcf\x7d\xe4\xde\xfc\xaf\xad\x77\xa3\x2f\x44\x13\xb5\xa1\x3c\xba\xfe\x02\x20\xd1\x53\x5f\x91\x99\x01\x88\x25\xa1\x04\x7c\xbc\xd8\x78\x0a\x62\xa6\x87\xfa\xcd\x64\xf7\xde\xd2\xe8\xc6\xe5\x63\xbd\x37\x6f\xae\x0e\xde\x1b\x84\xc9\x23\x14\xb7\x05\xcf\x37\x96\x63\x1b\x56\xd1\xb3\x4d\xf2\x39\x73\x09\xb8\xb0\xc3\x10\x7d\x46\x73\xbe\xa0\xa4\x2a\xcc\x32\x2a\xa6\x71\x75\x41\xd2\x4f\x53\x1e\xdf\x11\x5a\x55\x5e\xa8\xc9\xcb\x05\x18\x00\x77\xbb\xa5\x79\xb9\x68\x6d\x79\x01\xee\xbc\x41\x68\x7c\xc0\x2c\xbd\xae\x2a\x0b\x9a\x87\x4b\x6e\x1f\x40\xe5\x93\xae\x94\xcf\xd2\xd2\x52\xb0\xbb\xbb\x9b\x00\x00\xf3\xdf\xb3\xc9\x49\x83\x08\x44\x2f\x5e\xbc\x98\x7c\xe3\x1b\xdf\x08\xfe\xf2\x2f\xff\xb2\xce\xb7\xaf\xf3\x2e\x07\xe1\x37\x6b\x59\x3a\xe9\x49\xd9\x71\x7a\xe9\xda\x07\xb8\x70\x80\x59\x00\x8e\x15\xdb\x3c\xb8\xc2\xa1\xd6\x9f\x0a\x7e\xbe\x7a\x4d\x6a\x2f\x55\xe9\x5d\xed\x3d\x05\xdd\xc2\x03\x57\x38\xec\x51\xd0\x61\x84\x03\x81\x23\xb2\x3b\x6e\xc0\x80\x0b\x3d\xeb\xa3\xbd\xb1\x1b\x9d\xfc\xc4\xed\x85\x5f\x3e\xbd\xd3\xfe\xef\x73\xe3\xe0\xe9\x00\x2a\x02\x50\x1b\x31\xfc\x24\xa6\x7e\x0e\xc2\xd3\x80\x29\x97\xaf\x0c\x00\x24\xd0\xe8\x45\x93\x9d\x3b\x47\x86\xef\xbd\x7b\xac\xff\xe6\x9d\x23\xc3\x5b\xfd\x66\xf2\xd0\xac\x1c\xca\xfe\x0a\xd3\x43\xc6\xd2\x92\x2d\x79\x2e\x1c\x7b\x6f\xfe\xe8\x9c\xb9\xd6\x1a\xef\xbd\xf7\x1e\xfe\xe1\x1f\xfe\xa1\x0a\x84\xda\x3a\x35\xdf\xc6\x50\x87\x8e\x5f\x03\xd5\x0d\x9c\xe7\x33\x8b\x25\x44\xe2\xef\xe2\x6d\xa3\xf3\x0d\x07\x79\x57\x57\x5e\xff\xbb\x75\x86\x4f\xe7\x79\xd0\x8e\x75\x56\x80\xe9\x9b\xb6\x4e\xb0\x76\x36\xc2\x28\xbf\x64\x21\x60\xd7\x3e\x1d\xea\x61\x85\xba\xe5\xe0\xaa\xff\x87\x92\x07\x9f\x6a\x23\x9b\x5f\x9a\x78\xfe\xcb\xf3\x02\xcd\x4f\xf0\x0f\x4a\xe8\xaf\x79\x4e\xbf\x81\x29\xf3\xa7\x9e\x7a\x2a\xb8\x7e\xfd\xfa\x7f\x86\x76\xe4\x1b\x4f\x9f\x43\xa0\x99\x75\x00\x17\x00\xee\x7d\x5c\xa4\x70\xd8\x0d\x8c\xf3\x9d\xa5\x70\x0e\x2c\x93\x6b\xc3\x26\xad\x75\xb4\x30\x6a\x2c\x3d\xb3\x35\xf7\xe2\xf1\x6e\xf4\x99\x76\x1c\x9c\x52\x06\xb4\x00\x05\xc4\x60\x0e\x50\xb0\x5a\x32\xb8\x73\xed\x34\xda\x0f\x78\x68\x96\x47\x59\x84\x4a\xe6\x7c\xda\xca\x58\x80\xa8\x5f\x2e\x97\x27\x81\xc6\x7e\x6b\xb2\x7d\x7b\x79\x78\xf5\xea\x5a\xef\xed\xbb\x4b\xa3\x5b\xfd\x66\xf2\x28\x3b\xd5\xd9\x58\x59\xcc\x14\x11\x3d\xd3\x24\xdf\x9f\x85\x38\xe0\xc6\xb4\x01\x9b\x86\xfa\xca\x2b\xaf\x24\x67\xcf\x9e\x0d\x6e\xdc\xb8\xe1\x3b\x62\xf2\x01\x04\x55\x48\x3f\xb0\xd0\xd9\x46\xa5\xf4\xd9\xac\x8a\x96\xca\x4f\x79\xd3\x78\x2e\x33\xff\xe5\xd7\x9c\x7f\xdd\x91\x50\x82\x32\x6f\x69\x44\x69\xa3\xb3\x95\xad\xaf\x2c\xd2\x73\x1f\x10\x56\x27\xef\x2a\xf0\x22\xf1\xa6\x3c\xa4\xb4\x52\xfd\xb1\xc9\x2a\xf1\xb6\xc9\x35\xab\xb2\xb7\x75\xa0\x09\x90\x76\x82\x5f\xfd\xea\x57\x83\xbf\xfa\xab\xbf\x4a\xe8\xe9\xd3\x14\x9c\x48\xd7\x17\x2f\x5e\x4c\xce\x9e\x3d\x2b\xf1\x96\x64\x95\xea\x73\x9d\x77\xb0\xca\xef\xc9\xc3\x36\x40\xf1\xee\x5b\x28\x60\x21\x7e\x40\x05\x57\x02\x66\xbd\x0a\x38\x2d\x84\x6f\x48\x2c\xcb\x79\x3b\x35\xfb\xef\x08\x74\x00\x90\x2f\x1a\x79\xf8\xf0\x21\xae\x5f\xbf\x6e\x93\xdb\x56\x57\x6d\xf5\x8a\x86\x3a\x03\x27\x5b\xbe\x2e\xfa\x83\xf0\xe7\x32\xe6\xef\xc5\x81\x4b\x1d\xf4\x2a\x65\xce\x83\x2b\xbd\xef\xa8\x4d\x2a\x7c\x9b\x8c\xae\xd1\x55\xa9\x22\x65\x95\x82\xff\x4d\x81\x8b\x46\xd4\x4c\x82\xf6\x93\xdb\xed\xb3\xa7\x77\xda\xbf\xb0\x30\x6c\x3c\x1b\x68\x90\xfd\x5a\x60\x5d\x79\x23\x4e\xe7\x94\x4e\x52\xae\x69\x2d\x51\x80\x72\x6e\x08\x27\xf0\x65\xf2\xd9\x40\x95\xb1\xb8\x70\x03\x92\x86\x4e\xba\xad\xc9\xce\xfb\xcb\x83\x2b\xd7\xd6\xfa\x6f\x7f\xb0\x34\xba\xd9\x6f\x26\x3b\x50\xe8\x2a\xe4\x3e\x2d\xc6\xda\x92\x9f\x67\xc2\x76\xc2\xa5\x1b\x56\x15\x3a\x13\xad\x35\xde\x7e\xfb\x6d\x00\x00\x01\x2d\x80\xfc\x8d\x5d\xa0\x82\xa7\xb3\xf1\x71\x75\xd6\xf4\xba\xaa\xe3\x75\x29\x89\xaa\xce\xda\x26\xb3\xab\x93\xe6\xfc\x6c\xe0\x46\x92\x49\x52\xe6\x3e\x8a\xc5\xa7\x4c\x6c\x6d\xd1\xf5\xfd\x7c\x3a\x15\x4e\x5b\xa5\x84\x5d\xdf\x52\x7a\x07\xfe\x8c\xf2\xb5\xd5\x0d\x9b\xd2\x96\xe2\x5d\xba\xc8\x96\x7f\x1d\x85\xef\x2a\x33\xfe\x0e\xf9\x77\xbb\x74\xe9\x12\x80\xb2\xf5\xc4\xe6\x20\xfa\xfc\xf3\xcf\x07\x40\xa9\x6d\x4a\x79\xf2\xb8\xaa\x50\x05\x3e\x7c\xfb\x02\x49\x1e\x4a\x5b\x05\x40\x13\x60\xea\x32\xc0\x79\x33\xe7\xe5\x00\xc8\x2d\xf3\x86\x26\x20\xb4\xf9\xb5\x43\x2e\xde\xf6\xf2\x3f\x06\x6c\x72\xff\x23\x00\x38\x7a\xf4\xa8\x8d\x1f\xbf\xb6\xe5\xcf\xe9\x28\xad\x0b\x99\xa8\x02\x6f\x00\x00\x20\x00\x49\x44\x41\x54\x98\xf0\xb6\xe0\x93\x8f\x44\xeb\xd2\x91\x94\x9f\x0b\x8c\x99\x50\x6b\xaa\xc8\xa7\x32\xb9\x40\x86\x0f\x5f\x5f\xa5\xc6\xd3\xd6\xa6\x11\x56\x11\x4d\x97\x3c\x67\xdb\x62\x07\x50\x9d\xf5\xbd\x68\xe3\xd3\xb7\x96\x7e\xed\xe4\xe3\xd6\xaf\xb4\x63\x75\x52\x41\x85\x56\x3f\x13\x3f\x4c\x91\x11\xa7\x3c\x4a\x69\x1c\x48\xc6\x3a\x2b\xf5\x13\x5a\x7a\x94\x40\x27\x7b\xad\xc9\xf6\xad\x95\x14\xb4\xdc\x5b\x1c\xbd\x3f\x68\x4e\x76\xb2\xe5\xce\x5d\xba\x23\x2e\xd8\xea\x21\x76\xd6\x90\x69\x88\xf9\xaa\x21\xcb\xb6\xfd\x55\x80\xd3\xa7\xf3\xaa\x53\x17\xaa\xea\x8f\xd4\xc9\x55\xd5\x4d\x97\x8c\x36\x5a\x1f\x79\x7c\x47\x55\x92\x1c\x55\x6d\x4c\xe2\x2f\xbd\x8b\x4b\x1e\x97\x8c\xb3\x84\xaa\xf7\xf2\x69\xfb\x55\x69\xab\xf2\xac\xea\x84\x7c\xca\xb0\x4a\x1e\x17\x3f\x57\x3a\x5f\x3a\x2f\x79\xce\x9f\x3f\x1f\x5c\xba\x74\x29\x39\x7f\xfe\x7c\x00\x00\x97\x2e\x5d\xf2\x29\x1f\x97\x2c\x36\xe0\x50\xc5\xb3\xee\xb7\xf1\x29\x7f\x91\x67\xa3\xd1\x08\x3e\xfe\xf1\x8f\xe3\xfc\xf9\xf3\xe0\x96\x12\x66\x55\x31\x7d\x04\x77\x27\x08\xc2\x89\x0a\xe7\x47\x41\xb4\x30\x6c\x74\xe6\xc6\x8d\x85\xe6\x44\x75\x14\x10\x2a\x8d\xc0\x28\xe5\x44\xe9\xd1\xb8\xa1\x7b\x83\x66\xd2\xdd\x8f\x26\x83\x5e\x33\x19\x8d\xc2\x64\xa4\x55\x49\x2f\xd2\xa5\xe7\xe6\x3d\x4a\x1d\xfd\xce\xce\x0e\xfe\xe2\x2f\xfe\x42\x2a\x33\xdf\xfa\x5d\xb7\x9f\xae\xd2\x25\xae\x30\x8b\x0e\x70\xc9\x17\x00\xf6\x7d\x5c\x6c\x68\xde\x57\x28\x1f\xa4\x66\x43\x5e\x3c\xce\x55\xc0\x2e\x1e\x52\xfa\x42\xe0\x28\x9a\x9e\x47\x14\x40\xb5\x3b\xa3\x60\xe9\x99\x87\x73\x2f\x1c\xdf\x8b\x7e\xbe\x15\xab\x93\x30\x5b\xfa\xdb\xf6\x4d\x11\xe3\x6d\xe6\x0d\x8b\x13\x97\xc5\x71\x97\xae\x06\xe2\x22\x14\x2d\x39\xd3\xd4\x2e\x3c\xc3\x77\x6e\xe2\x74\x89\xd2\xc9\x5e\x34\xd9\xbe\xb9\x3a\x78\xe7\xdd\x63\xbd\xb7\x37\x17\x46\x37\x87\x61\xb2\xab\x81\xae\x42\xbe\x23\x6e\xbe\x82\x88\x2d\x75\x36\xdb\x85\xf3\x11\x45\x7e\x48\xe2\x3b\xef\xbc\x03\xad\x35\x16\x16\x16\x82\x6e\xb7\x0b\xd8\x1b\x83\x84\xb8\x5d\x60\x86\xf3\xb0\xa1\x7d\x5b\xe3\xa0\xbc\x25\x10\x6d\xcb\x43\x4a\x53\x35\x8a\xe0\x41\x92\xcf\xd5\xb9\xd9\x64\x90\x46\x52\x52\x5e\xb6\xb6\x28\x75\xd8\xb6\x32\xe5\xef\x2e\xd1\xbb\xe2\x6c\xcf\xab\x78\xd5\x01\x20\x34\x0d\xe7\x2d\x3d\xf7\x91\x55\xe2\x53\x07\x40\xfa\xa6\xa7\xe9\xb8\x5e\xad\x92\xd1\x1b\x04\x19\xa0\x62\x01\x2c\x2e\x7e\x3e\x75\xb9\x94\x9f\x40\x67\xeb\x33\x6c\xf1\xb3\xc8\x52\x08\x93\xc9\x24\x79\xed\xb5\xd7\x70\xe1\xc2\x05\xda\x5e\x02\xa0\xe4\x3e\x10\x20\x3d\x22\x21\x00\x10\x86\x13\x84\x2b\xfd\xe6\xd2\xfc\xb0\xb1\x3a\x3f\x6a\xac\x2e\xf7\x1b\x6b\xcb\xfd\xe6\xfa\xc2\xb0\x71\x2c\x9a\x04\x4b\x81\x46\x04\x20\x50\x48\xc1\xcb\x44\xe9\xc1\x30\x4c\xb6\x7b\xd1\xe4\xe1\x6e\x6b\xb2\xfd\x78\x2e\xde\xda\x6b\xc5\x9b\x7b\xed\xc9\xf6\x6e\x6b\xd2\x1d\x84\x13\xb3\x3d\x84\xb1\xb0\x14\x8e\x53\x30\xcf\xb4\xd6\x09\x00\x2c\x2f\x2f\xdb\xde\xcf\xb7\x7e\xfb\x80\x1c\x9e\xce\x17\xd4\x9b\x67\x3e\x7d\xb3\x44\x2f\xe5\x57\xfa\xf6\xb6\x7e\xed\x20\x23\x25\x89\x87\x2f\x4a\xab\xa3\xd8\x68\x1c\x2c\xe9\x0a\x1f\xe7\xdc\xb9\x73\xc1\xd5\xab\x57\x93\xcc\x4b\xbc\x50\x31\xcd\x56\xfe\x48\x37\x99\x6b\xb7\x62\xb5\x7c\xf6\x51\xfb\xe9\xf3\xef\x2f\xfd\xe6\xd1\xfd\xe6\x97\x03\x8d\xb6\x6d\x9b\xfc\x62\x48\x21\xc1\x14\x18\x08\x7b\xd5\x96\x9c\x49\x8a\x10\x83\x83\x14\x94\xf8\xa0\xb4\x4b\x9d\x94\xc6\x2e\x9d\x1d\xd4\x64\x5b\xf8\x63\xaf\x3d\xd9\xbe\xb1\xda\x7f\xf3\xca\xb1\xfe\x9b\x9b\x0b\xa3\x3b\xe3\x50\xef\x20\x9b\x12\x62\x67\x0f\x0d\x90\x2d\x7b\x06\x39\x88\x8d\x6d\x5a\x65\x80\x0b\x2e\x5e\xbc\x98\x7c\xe9\x4b\x5f\x0a\xfe\xee\xef\xfe\xae\x6e\x27\x57\x55\x87\xea\x80\x19\x9f\x7b\x29\x4f\x54\xdc\xdb\x80\x8e\x4d\x6e\x57\xc7\x2b\xbd\x8b\x4b\x06\xdf\xd1\xa6\x8b\x1f\xa7\xe1\xe0\x09\x02\xbd\x0b\x00\xfa\x2a\xc6\xba\xed\xbe\x0a\x98\x56\xf1\xa8\x0b\x78\xaa\xc2\x61\x8d\x3c\x7d\xf5\xe4\x2c\xf9\xd4\x05\x92\xb6\xfa\x7c\x18\xef\x59\x15\xea\xe4\x33\x73\xb9\x0a\x87\x54\x96\xfe\xb4\xd6\x81\x82\x0a\x03\x8d\x28\x9a\x04\xd1\xc2\xb0\xb1\x70\x64\x10\x6e\x3c\xb5\xdd\x3e\xb7\xd6\x6d\x3e\xdf\x19\x35\xce\x34\x27\x6a\xa3\x91\xa8\xd5\x40\x63\x29\xf3\x7f\xa4\x40\x08\x00\x12\x0d\xf4\x12\xa5\x7b\x89\xc2\x6e\xdc\x48\xee\x75\x5b\xc9\xd5\x07\xf3\xa3\xcb\x1f\x2c\x8d\x6e\x3c\x9c\x1f\x6f\xee\x47\x93\x9d\xfd\x68\xd2\xd3\x01\xcc\x4e\xc6\x66\xbb\x88\x98\x59\x60\xf2\x5f\xc1\x5a\x4d\x69\x0e\x23\xcc\xd2\xa6\xea\xe8\x3f\xce\x0b\x8e\xe7\x85\x3c\x95\x25\x43\x2e\x98\x6f\x25\xae\x52\xe6\x2e\x85\x28\x29\x5f\x4e\x57\x25\x9f\x14\x0f\x00\xc9\x33\xcf\x3c\x13\x7c\xf1\x8b\x5f\x2c\xa4\xe5\x9b\xcc\x69\xad\x23\x05\xd5\x0e\x13\xb5\xb0\xbe\xd7\x3c\x79\xfe\xf6\xe2\x2f\x9f\xde\x69\xff\xdf\xcd\x89\x5a\x37\x87\x1e\x02\xf2\x5e\xd3\x25\xfc\x21\x9d\x8c\x68\x1e\x31\x32\x6e\x74\xe1\xe0\x22\xcf\x43\xf0\xa9\xa9\xb2\xaa\x4c\x1d\x82\x39\x38\x92\xad\x3a\x1a\x40\x2f\x4a\x76\xae\xad\xf5\x5f\xff\xf1\xf1\xfd\xd7\xb7\xe6\xc7\x77\xb2\xd3\x9d\xf3\x25\xcf\xe4\x9a\x1f\x7b\x6f\x3b\xd5\x59\x6a\x68\xbe\xe1\xa0\x8a\xb0\x8e\xc2\xf6\xe9\xfc\x67\x91\xe7\x30\x3a\xa4\xff\x2c\xfc\x0f\x92\xd6\x47\x7f\x54\x75\xba\x75\x01\x08\xd7\x31\x2e\x5a\x5b\xa8\x53\xbe\x36\x65\x0e\x21\xde\xc5\xcf\x07\x34\xce\x22\x1f\xe7\xed\xd2\x9f\x55\xd7\x46\x9e\x83\x96\x8f\x2f\x8d\x6f\xfd\xb1\x96\x77\xbb\xdd\x0e\xcc\x4e\xe9\xb6\x53\xb5\x4d\xbf\xa0\xb5\x0e\x15\x54\xd8\x9c\xa8\x68\x69\x18\x2e\xad\x77\x9b\x27\x9f\x7c\xd8\x7e\xf6\x78\x37\xfa\xd4\xdc\xb8\xf1\x62\x38\x51\x27\x03\x8d\x05\x05\xd5\x56\x59\x9e\x1a\x45\x3d\xcd\x17\x54\x68\x20\xd1\xd0\x23\xad\xb0\x1b\x07\xfa\xde\xa0\x99\x5c\xd9\x99\x8b\xdf\x78\x7f\x79\xf0\xfa\xcd\xd5\xc1\x8d\x9d\x76\xbc\x33\x6e\xa4\xab\x30\x35\xf2\xad\x23\x0a\x03\x41\xfa\x6e\x93\xc9\x04\xdf\xf9\xce\x77\x66\x29\x6f\xdf\x72\x9d\x05\x88\x1c\xa4\xbd\xf2\x38\x31\xff\x50\x78\x48\x83\x88\xf4\x84\x6b\x1a\x67\xd0\x6a\x55\x7a\x4a\x2f\xf1\xa4\x32\xb9\xe2\x5d\xa0\x25\x01\x80\x8d\x8d\x8d\xe0\xda\xb5\x6b\xc9\x17\xbf\xf8\xc5\xbc\x92\x12\x39\x83\x6c\x93\xb9\x40\x29\x15\x2a\x8d\x68\x61\xd8\x58\x7e\x6a\x7b\xee\x85\x8d\xdd\xd6\x17\x9a\x93\x60\x1d\x40\x69\x45\x90\x22\xb8\x44\x4b\xfb\xf4\xe7\xc7\x37\xcb\x8e\x2f\xb9\xb3\x2c\x77\x54\x31\xc6\x98\xf2\xce\xfb\x05\xfe\x74\x15\xd0\x14\xc5\x14\x23\x54\xe1\x84\x87\x22\xe2\x51\x05\x91\x75\xe6\x88\x8b\x64\x10\x26\xbd\x5b\x2b\x83\xb7\xdf\x38\xb1\xf7\xda\x76\x27\xfe\x60\xa2\x74\x17\x7a\x0a\x56\xc8\xae\xb8\xf4\xb0\xc4\x11\xd2\x65\xcf\x31\xb5\xb2\xd0\xfd\x59\xe2\x38\x2e\x95\x01\xe4\x6f\xcf\xbf\x67\x1d\xa5\x29\xd1\x49\xcf\x6c\x75\xbe\x0a\x88\xbb\x82\x4f\x87\xc5\x69\x5d\x83\x06\x5b\x1e\x9c\x9f\x6f\x79\xd9\xf8\xbb\x06\x25\xb4\xbc\x5c\x69\x5d\xf2\x55\x7d\x57\x54\xc4\xd9\xf8\xf1\x6b\x9b\xbe\x70\xf1\xf5\x0d\x55\x1d\x03\xa5\x91\xbe\xa7\x4b\xcf\x19\x1e\x3e\xef\x6e\x4b\xe3\x03\x54\x5c\x74\xae\xf2\x72\x7d\x33\xdf\x7e\xc1\x87\xf7\x41\x68\x24\x79\x38\xe0\x03\x50\x3c\xde\xc5\xe2\x64\x1b\x1a\xd0\x12\x40\x45\xad\x38\x68\x1f\xeb\x36\xd7\x3e\xf4\xa0\xf3\x91\x33\x3b\xad\x2f\x75\x46\x8d\x0b\xe1\x44\x6d\x28\xa0\xa3\xa0\x02\x3e\x00\x54\x48\xa7\xee\x81\x6c\xa8\xcb\xfa\x01\x05\x04\x0a\xaa\xad\x35\xda\xd1\x44\xad\x35\x27\xea\x5c\x67\x14\x7c\x7a\xa5\x17\xbe\x7e\x7c\x2f\xfa\x87\x1f\xaf\xf7\x5e\xbb\xb7\x34\xbc\x37\x68\x26\x83\x24\x9d\x7e\x37\xf2\x99\x41\xa1\x59\xa6\x1e\x00\x48\xb2\xe3\x1d\x52\xa2\x20\x08\x92\x24\xf1\x2d\x33\xa9\x7e\x56\xb5\xc9\x59\xfa\xeb\xc3\xf8\x96\x94\x7f\x00\xa4\x87\x2c\x02\xc5\x81\xbd\x21\xd2\x35\xae\x69\x50\x59\x06\xfc\x19\xa5\xa7\xcf\xb2\x3e\xb3\xc4\x8f\xcb\x44\xe9\x5d\xf7\x26\x5d\x1e\xdf\xed\x76\xf5\xcb\x2f\xbf\x5c\xa8\xa4\xd9\x4e\x90\xe6\xf0\xc4\x86\x52\xaa\x05\x8d\xb9\xf6\x38\x58\x3c\xb5\xd3\xfa\xd0\x0b\xf7\x16\x7e\x65\x71\xd8\xb8\x10\x40\x35\xcc\xea\x1c\x71\xe5\x90\x46\x76\xe8\x20\x64\x03\x8b\x2a\x02\x06\x9e\xbc\x74\x67\x7e\x44\x2f\xdc\xe2\x6d\x4e\x43\x91\x4d\xda\x72\x08\x11\x4b\x6b\xc4\x21\x24\xa6\xb0\x86\x61\xb2\x7f\x77\x79\x78\xe5\xfb\xa7\xf7\xfe\xd7\xc3\x85\xf8\x6e\xa2\xb4\xf1\x63\xe9\x22\xf5\x69\xd9\xc7\xd4\xa7\xa5\x8f\x29\x60\x19\x29\xa5\x0a\x3e\x2d\x99\x3f\x8b\x7e\xe5\x95\x57\x92\x4f\x7e\xf2\x93\x8a\x8c\x0a\x78\x3d\x30\xf5\x85\x8a\x09\x81\x56\xb1\x74\xf4\x3a\x20\xbf\x9c\x97\xab\xde\x05\xc2\x2f\x37\xa4\xb9\x40\x82\x8d\x37\xad\x83\x92\x7c\xe6\x1a\x02\x0d\xe7\x1b\x30\x7e\xbc\x5d\x28\x4b\x3a\x45\x9e\xb9\xda\x37\xff\xe5\x72\xf1\xc0\xe5\xa1\x81\x56\x29\x1e\xa4\x36\x2e\xc9\xe3\xca\xcf\x15\x6c\xcf\xab\x74\x97\xad\xfc\x6c\x81\xcb\x22\x95\x2f\xaf\x9b\xbc\x1e\x71\x7e\x36\xc0\x6c\xfb\x66\xfc\x19\x2a\xe2\xe9\xb7\xaa\xfa\xbe\x52\x5e\xbc\x9d\x54\xc9\xc6\xe3\xea\x7e\x77\x57\xdf\xe2\xe2\x69\x6d\x8f\x41\x10\xa8\x17\x5f\x7c\x51\xfd\xea\xaf\xfe\xaa\xa9\xa3\xd4\xe2\x62\xac\x2d\xf9\x4e\xe9\x01\x54\xab\x33\x0a\xe6\xcf\x6e\xb7\xcf\x7c\xfc\xee\xe2\xe7\x4e\xef\xb4\x7e\x7b\x7e\x14\x7e\x36\xd4\xea\x78\x3a\x1d\xa4\x4a\xea\x37\x1f\x8c\x66\x31\x74\x87\x72\x95\xe9\xe6\x29\x4d\xaa\xad\x95\x56\xcd\x00\xea\x48\x34\x51\x67\x16\x87\xe1\x73\x1b\x7b\xd1\x91\x56\xa2\x76\xf6\x5a\x93\xfd\x71\x98\x24\x1a\xd0\xd3\x3e\x21\x35\x9d\x67\xbb\x21\x6b\xa5\xd2\x93\x32\x2f\x5c\xb8\xa0\xce\x9f\x3f\xaf\xae\x5f\xbf\x8e\x7e\xbf\xcf\xeb\x92\x4f\xdb\xa1\x7a\xcd\x56\xc6\xe6\xda\x56\xfe\x55\x79\xd0\xbc\x7c\xeb\x9d\x24\x9f\x36\x11\x80\xbd\x51\xf1\x67\xbe\xe8\x49\x44\xbb\x15\x61\xd6\x51\x12\xb5\xf0\x38\xd3\xa9\xec\x30\xb1\xec\xc3\x07\x60\xfb\xb5\x04\x1a\xed\xb5\xfd\xe6\xc6\x87\x1f\x74\x7e\x76\x69\x10\x5e\x08\xc8\x7e\x2d\xa5\xd2\xe4\x20\xa4\xca\xbd\x84\x59\x4b\x4a\xe4\xb6\x4f\xe9\x04\x3b\x16\x5a\x0b\x11\x1f\x19\xd0\x30\x6c\x26\xdd\xdb\xcb\xa3\x77\x2e\x9d\xda\xfb\x9f\x5b\x0b\xe3\xf7\x35\x74\x57\x29\xb5\x0b\xc0\xfc\x99\x95\x44\xc6\xda\x32\x02\x30\xa0\x4b\x9e\xb5\xd6\xb9\x3f\x8b\x71\xc2\x05\x80\x1b\x37\x6e\xd0\xac\xa4\xef\xc3\x47\x3e\xe6\xda\x55\x97\x02\xf6\x2b\xf1\xb6\x59\x04\xa4\x67\x34\x3d\xa7\xab\x0a\xbe\x7c\x6d\xef\x23\xbd\x0b\x4f\xeb\x23\x97\xcb\xa2\xe9\xca\x97\xde\xd3\x32\xb0\x95\x31\xa7\xf1\x6a\x7f\x8e\x67\xae\x3a\xc1\x2d\x3e\xb3\xe8\x16\x9e\x47\x1d\x0b\x01\xcf\xb3\xae\xf5\xc6\x65\xb1\xf2\x49\xe3\xa3\xa3\x7f\x1a\xf2\xb8\x64\xa8\x63\x65\xf9\x49\xc4\x57\xa6\x4b\x92\x24\xf9\xd1\x8f\x7e\x54\x28\x53\x66\x71\x09\x01\x44\x4a\xa9\xb6\x52\x2a\x3a\xba\xdf\x5c\xfe\xe4\xed\xc5\x0b\x17\xde\x5f\xfa\xe6\x89\xdd\xd6\xff\xdb\x8e\x1b\x2f\x05\x48\xb7\xc2\x28\x0c\x1e\x49\x26\x79\x8f\xaf\x8b\xf1\x1a\xc8\xa7\x8b\x4a\x41\x19\x01\x54\x3b\x9a\x04\xe7\x56\x06\xe1\x6f\xbd\x70\x6f\xe1\xff\xfb\xf4\xad\xa5\x9f\x39\xd6\x8d\xd6\x1a\x09\x3a\x00\xda\x99\xff\x65\x48\x66\x07\xf8\x3b\xe0\x1b\xdf\xf8\x46\x55\x99\xf8\xb4\x9d\xba\xd6\xb6\xaa\xc0\xf3\x94\x74\x6c\x15\xcf\x52\x7c\x03\x32\xca\x91\x46\x7b\x12\xea\xb6\x85\xaa\x11\x57\x15\x8f\x2a\x3a\x8e\xac\xad\xc8\xfb\xf7\x7e\xef\xf7\x82\x4f\x7d\xea\x53\xa9\xd1\x64\x0a\x92\x1b\x99\x6f\x4b\xd3\xfc\x29\xa5\xda\x2b\xbd\xf0\xd8\xb3\x0f\xe6\x3f\xfd\xe4\x76\xfb\xbf\xb7\x26\xea\xb4\x22\xe6\x12\x83\x9a\xe9\x14\x4e\x3e\xd4\x62\xa0\x84\xbe\x30\x9d\xc1\x91\x67\x8d\x32\x2a\xc2\x73\x9a\x67\x7a\xce\x08\x30\x45\xec\x25\x0b\x8c\x39\x8f\x84\xe4\x9f\xc6\x01\x5a\x29\x26\x8f\x2e\xbc\x83\xce\xe2\xfa\xcd\x64\xf7\xfd\xe5\xe1\xe5\x1f\x3d\xb1\xf7\xea\xbd\xa5\xd1\x6d\xad\xd0\x05\xd4\x2e\x54\x6e\x69\xc9\x4f\x78\x56\x4a\xf5\x95\x52\x43\x00\x43\xb0\xdd\x70\xd5\xf4\xcc\x13\xad\x94\xca\xb7\xee\xbf\x71\xe3\x86\xd2\x14\xc9\x94\x0b\x40\xfa\x96\x7c\x54\x6f\xab\xa3\xae\x91\xa3\x2d\x8d\xe1\x2f\x59\x0e\x6c\xf2\xf0\x34\xe6\xb9\x64\xe5\x71\x05\x89\xb7\x16\xee\xab\xd2\xd8\xac\x1e\xb6\x34\x5c\x6e\x9f\x7c\x7c\xf2\x70\xc9\x6d\x82\xd4\x9e\xa5\x6b\xfa\x0b\x0b\x6d\x5d\x0b\x89\x6f\xde\x2e\xde\x55\xa3\x50\xdb\xa8\xd6\x27\xcf\x2a\xf9\xab\xf2\x76\x5d\x57\xc9\xe2\x23\x53\x1d\x7e\xf4\xda\x57\x6e\xda\xbf\xf0\xbe\xc6\x95\xd6\xbb\x1c\x3e\xfb\xd9\xcf\x06\xb7\x6e\xdd\xd2\xc4\xaf\x45\x01\xb9\x2f\x4b\x03\xc5\x9d\xd2\xa3\xf5\xbd\xe8\xe8\x47\xef\x2d\x7c\xf6\xdc\xd6\xdc\xff\xb5\x34\x0c\x3f\xdf\xd0\x58\x93\x2c\x2c\x26\x50\x95\xac\x24\x02\xb0\x7e\x80\x29\x71\x45\x98\x28\xa0\x19\x4e\xd4\x89\x85\x51\xe3\xf4\xfc\xa8\xb1\xdf\x8f\x92\xc7\xfd\x66\x32\x9a\xa8\xfc\xbc\x28\x9d\xbd\x83\xa8\xa3\x2e\x5d\xba\xe4\x2a\x3f\x5b\x3d\xad\x6a\xb7\xf4\xba\x6e\x1d\xac\xdb\xa6\x5c\x79\xe7\xd7\x8d\x0a\xa1\xe9\x94\x0f\x57\xd6\x55\x0d\xce\xc6\x8f\xf2\xb2\x05\xa9\x43\xe0\xcf\x0d\x4f\xe9\x63\xe4\xf7\x3f\xf8\xc1\x0f\xf4\xf9\xf3\xe7\x15\x43\xd7\x0d\x00\x4d\xad\x75\x53\x29\xd5\x04\x30\x17\xc5\x6a\xfe\xcc\x4e\xfb\xf9\x67\x1f\x74\x7e\x71\x71\x18\x7e\x22\x80\x8a\x8a\x55\x2b\x33\xfb\x71\x90\xa2\x88\xe9\x8f\x36\x57\x3a\x5b\xa3\x8a\xbf\xc5\x7a\x5b\xac\xe5\x53\x33\xa2\xc9\x2f\x3b\xdc\xcc\x00\x1b\xb6\x89\x5d\xbe\xab\x63\x9e\xde\x2c\xb1\x2e\xc6\xa3\xc0\xd3\x14\x90\xc6\xa0\x99\xec\xde\x5e\x1e\x5e\x79\x6b\xa3\xfb\xda\xbd\xa5\xd1\xcd\x49\x80\x5d\x0d\xbd\x4b\xa6\x88\xf2\x03\x13\x91\x59\x5a\xb2\xa5\xcf\xb9\xc7\x3b\x39\xdd\x19\x48\x01\x0c\x5e\x7d\xf5\x55\x6c\x6f\x6f\xab\xc9\x64\xa2\x33\xd0\x52\x57\x79\xd5\x4d\xc3\xff\x24\x65\xc8\xc1\x8a\x4d\x41\x07\x96\xf4\x26\xd0\x67\x7c\x0a\xac\xaa\x43\xae\x7a\x87\x2a\x25\xee\x2a\x1f\xa9\x2d\x98\x78\xc0\x5e\x96\xb6\x3c\x25\xe5\xe2\x23\xb7\x04\xf0\x60\x89\x83\x10\xc7\xbf\x0d\xbd\xb6\xf1\x90\x82\xd1\x21\x1c\x08\xd9\x78\xd7\xcd\xd3\xf6\x2d\xaa\xd2\xf9\xea\xce\x59\xe5\xf6\x95\x85\x7e\x33\x4e\x23\xa5\xa3\xa1\x4a\x16\x5f\x59\xa5\x6f\xee\x93\xd6\xbc\x63\x25\xad\x01\x2d\x40\x6e\xa1\x08\x30\xb5\x5a\x14\x8e\x77\x39\xda\x0d\x57\x9e\xdf\xec\xfc\xcc\x53\xdb\xed\xaf\x2d\x0c\xc3\x0b\x0d\x8d\x23\x4a\x2b\x71\x47\x71\x13\x0a\x71\x59\xae\xd2\x6c\x7d\xde\x0f\x64\xfc\x94\x26\x40\x27\xa7\x57\x50\x50\x8d\x30\x51\x6b\x73\xe3\xc6\x89\xce\xb8\x31\xec\x47\xc9\x76\xaf\x95\x0c\x92\x20\xd5\x35\x14\xb4\x90\x2d\x35\x34\x90\x02\x97\xd3\xa7\x4f\xab\xdd\xdd\x5d\xdb\x37\xf6\x69\x33\x55\x75\x1d\xc2\xf3\x83\xb4\x23\x57\xfd\x12\x07\x86\x36\x8b\x8b\x69\x30\xbc\xd2\x4a\x95\xc5\x16\x38\x5f\x29\x0f\x5b\x23\x93\xf2\x96\xf8\x57\xf9\xd2\xd0\xb3\x88\x0c\x78\x09\x0c\x60\xc9\x40\x4b\x0b\x40\xfb\xc4\x6e\xeb\xf4\x87\x37\xe7\x7f\xfe\x78\xb7\xf9\xd9\x66\xa2\xd6\x4c\x27\x6f\xab\xac\xc5\xd7\x32\x35\x32\xcb\x58\x95\xd3\x14\xf8\xa8\xf2\x33\xa0\x08\x48\x0a\xf4\xc4\x54\x63\x56\x37\x71\xe9\xa6\x57\x4a\x60\x00\x91\x73\xbf\x99\xec\xde\x3e\x32\xbc\x7a\xf9\xf8\xfe\x8f\xee\x1e\x19\x5d\x1f\x37\xf4\x63\x9d\x82\x95\x3d\x4c\x9d\x71\x0b\xa0\x05\xd3\x3d\x5a\xb8\x4f\x0b\xb2\x6b\xbc\xf2\xca\x2b\xc9\xce\xce\x8e\x1a\x0e\x87\x26\x6b\x5e\x67\x68\xc7\x26\xc1\x39\x6d\xa1\x73\xa5\x31\x75\x41\x5b\xe8\xcc\xbd\xcb\xd7\x80\x77\xb0\x94\x9e\x7e\x35\xfe\x2c\x60\x74\x5c\x66\x2a\x03\xcd\x4f\x7a\x07\x1a\x27\xbd\x37\x37\xb5\xda\x9e\xf1\x32\x30\x7c\xe9\x2f\x4f\x4f\xf3\x96\xbe\x85\xad\xec\xe9\xfb\xf1\x6f\x00\x46\x73\xd0\x50\xa7\xd3\xa7\x4e\x87\x3e\xfa\xc4\xf6\xdc\x27\x7e\x16\x1d\xe6\xca\xd7\xa6\xdf\xaa\xd2\x51\x59\x7c\x2c\x3b\x55\x6d\x43\xd2\xff\x3f\xe9\x50\xd5\x37\xc0\xe3\x79\x21\x9c\x3f\x7f\x5e\x65\xf4\xf4\x2f\x44\x3a\xfd\xd2\x52\x4a\x45\xcb\xbd\xf0\xc8\xf3\x9b\xf3\x9f\x7a\xea\x61\xfb\xab\x4b\xc3\xf0\x7c\xa8\xd5\xb2\x9a\x2a\x5e\xab\x4e\x2f\x34\x0a\x95\xaa\x6a\x5b\x23\x31\xbc\xe8\x35\xa5\x99\xa2\x7e\xd5\x08\x13\xb5\xdc\x8e\x1b\x2b\x61\x82\xfd\x6e\x6b\xb2\xb5\xdf\x9a\x0c\x32\xf5\x6f\x7c\x5c\x0c\x88\xc9\xeb\xf7\xf9\xf3\xe7\xd5\x3f\xfd\xd3\x3f\x49\x7e\x79\x5c\xff\xd8\x06\x3a\xb6\x3a\x2b\x0d\xa4\x68\xf0\xf9\x16\xb3\xd4\x1d\x51\x1e\x6e\x71\xa1\xa3\x48\x09\x85\xfb\x08\xee\x42\x77\xbc\x21\x71\x34\x65\x33\x05\xf2\x91\x9f\xab\x03\xd2\x40\xba\x13\xe4\x57\xbf\xfa\xd5\x14\xd0\x66\xbe\x2d\x5a\xeb\x86\x52\x2a\x24\xe6\xc1\x36\x80\xb9\x23\xfd\x70\xe5\xdc\x56\xe7\xc2\x93\x3b\xed\xcf\x77\xc6\x8d\x67\x94\x46\x98\xd2\xa3\x34\xb5\x53\xd2\xd6\x19\xb4\x2e\x54\x3c\x8d\xf2\x99\x42\xf4\xf0\x32\x94\xea\x2e\x54\xc6\x87\xf7\x1a\x39\xfd\xf4\x78\x7a\xf2\x4c\x4d\x4f\x9c\xc6\x54\x56\x03\x9e\xcc\x4d\xf1\x1d\xd2\x9a\x3f\x08\x93\xee\xdd\x23\xc3\x6b\x57\xd6\x7b\x6f\xdc\x3d\x32\xba\x36\x0c\xf5\x23\x28\xd5\x55\xe9\xdf\x1e\x9b\x1e\x1a\x28\xa5\x46\xd9\x5f\x61\x37\x5c\x64\x53\x44\x40\x71\x7a\x28\x8e\x63\xda\x89\xd1\x40\x1b\x92\x64\xd5\xe3\xf5\xad\xce\x35\x2d\x32\xe9\x99\xa4\xd0\xf9\x33\x9e\x9e\x82\x75\x9e\xaf\x2d\x2d\xcf\x5f\x6a\x2f\xb3\xbc\x83\x94\x8f\xeb\x19\x30\x6d\x2b\x55\x9d\x5c\x95\xdc\xbe\x74\x9c\x9e\x86\x2a\xd3\xb2\xed\xb9\x8d\x8f\x8b\x1f\xb7\xee\xda\x3a\xe0\x3a\x83\x31\x1f\xb9\x69\xa0\xca\x5e\xb1\x7b\xcd\x68\x38\x6f\xc5\xfe\x7c\xd3\xd1\xbc\x60\xa1\x91\xde\x89\xcb\x5b\xf5\x4d\x5d\x56\x41\x97\xde\xf7\xb9\xb6\xf5\x37\xb6\x6f\x6c\x7b\x27\x0d\x14\x76\x49\x57\x99\x4f\x6b\x03\xd3\x01\x6c\xa4\x94\x6a\x35\x12\x74\x9e\xbb\x3f\xff\xb1\x73\x5b\x73\x5f\x5d\xee\x87\x9f\x6e\x26\x6a\x0d\x50\x41\xda\x81\x64\x8c\x34\x80\x7c\xc5\x10\x2d\x95\x54\xc9\xf2\x42\x57\x26\x11\xb3\x8a\xe7\x56\x92\x62\x47\x02\xd3\xe7\x20\xb3\xaa\x2b\xa8\xb0\x91\xa8\xa5\x68\x12\x34\xe3\x86\x7e\xd4\x6d\x4d\x1e\x0e\x9a\xc9\x08\xa9\xce\xd5\x19\x2f\x73\x9d\xfb\xeb\xbe\xf4\xd2\x4b\xea\xb5\xd7\x5e\x93\xea\x7d\x41\x6a\x4b\xb9\xda\xe8\x29\x46\xb3\xd5\xd7\x3a\xdf\xd8\xb7\xfd\x8b\xf1\xd4\xfc\x6d\x2a\x02\x75\xc4\x92\x1c\xb9\xaa\x1c\x68\xea\x38\xe7\xd5\xe5\x4d\xe5\x72\x86\x4b\x97\x2e\x25\x5a\x6b\x68\xad\x5d\xa7\x3f\x87\xe1\x04\xed\x93\x8f\xa3\xa7\x9f\x78\x1c\x9d\xef\x0c\x83\x73\x4a\xa3\x9d\xdb\x2e\x14\xfd\x8a\xe9\x15\xab\x6b\xe0\xf5\xcf\x10\x95\x2a\x31\x01\x2d\x05\x8e\xf4\xb3\x5b\x82\x7d\x76\x35\x6b\x13\xaa\x08\x4e\x0a\x1a\x4f\x95\xf3\x1c\x35\x92\xc1\xfd\xc5\xe1\x8d\x6b\x6b\xfd\xb7\xef\x1e\x19\xde\x30\x67\x0f\x81\xec\xd1\xa2\xb5\x36\x7f\x83\xec\x74\xe7\x7c\xc9\x33\x71\xc0\x2d\x38\xe2\xbe\xfa\xea\xab\x68\xb7\xdb\xa6\x4e\x99\xb2\x96\x82\x79\x96\x08\x74\x36\xe7\x2d\x4a\xc7\xeb\xad\x44\x2b\xd1\xf1\x3c\x7c\x78\xbb\x9c\x63\x6d\xfc\x25\x59\x5c\xd7\x3c\xce\x26\x8f\x44\x63\xa3\xb3\xc9\x50\x25\x93\xed\xfb\xd9\x64\x73\x95\x1d\x0f\xb6\x6f\x2b\xe9\x0e\xc9\x49\xd8\x46\xcf\xbf\x93\xcb\xd9\x57\x92\xc9\x55\x57\x5d\xc1\xd7\x69\x95\xeb\x52\x97\xac\xb4\x6d\x70\x7a\x1f\xc7\xc9\x04\xe5\xfc\x5c\x32\xd2\x34\x12\xad\xab\x8e\x55\xc9\x15\x58\x9e\xf3\xf8\x80\xc5\xd3\x7c\x6d\x75\xa2\x2a\x94\xca\x95\x6d\x83\x41\x8f\x78\x69\x3f\xb1\xd3\xda\x38\xb3\xd3\xfa\xb9\x23\x83\xf0\x13\x99\xc5\x3d\x28\x0d\x2e\x15\x32\x40\xc1\xe3\x8b\xfb\x96\x9b\xf8\x54\x2f\x4f\x01\x4d\xae\x87\xe9\x08\x53\x9b\x28\xea\xa7\x38\xcd\x21\xd0\x6a\x61\x7e\xd8\x78\xf1\xf4\xa3\xf6\xcf\x9d\x7c\xdc\x3a\xd7\x1a\x07\x0b\x48\x07\xdc\xe9\xee\xbc\xe9\x3b\x04\xd9\x75\xce\xcb\x11\x5c\xed\xd2\x45\xeb\x53\x77\x4d\x1a\xdb\x37\x93\xbe\xbd\x0f\xef\xd2\xb5\xaf\xc2\xa9\x52\x8a\x9c\x8f\x04\x2e\x66\x51\x0c\x86\x57\x15\x8f\x3c\xfe\x99\x67\x9e\x09\x80\x14\x65\x1b\xff\x10\xc5\x4e\x7f\xce\x3c\xb3\x43\x00\xd1\xda\x7e\xb4\x7e\x6a\xa7\xf5\xc9\x95\x5e\xf3\x85\x30\x51\xcb\xd3\x65\x6b\x1c\xa8\x14\x2b\x43\x0a\x46\xcc\x15\x4a\xcf\x68\x48\x2b\xad\xce\x51\xb8\x42\x0a\x7a\x28\xdb\x2a\xfc\xa2\xa1\x45\xeb\x0f\xcf\xcf\x36\xec\x33\x21\x0e\x92\xd1\xd6\xc2\xf8\xd6\x7b\x47\x07\x6f\xdf\x39\x32\x7c\xaf\x17\x25\x0f\x34\x0a\x07\x25\xe6\x7f\xd4\xd2\xa2\xb5\x1e\x91\x1d\x70\xf3\x5f\x03\x5a\x2e\x5e\xbc\x98\xbc\xfd\xf6\xdb\x18\x0c\x06\x92\xf8\xbe\x1d\x83\x2f\x5d\xd5\x48\xcb\x76\x5f\x07\xc8\x48\x7c\x6d\x40\xdb\xd5\xd9\x4b\x0a\x99\x5f\x4b\x4a\x9a\xe6\xe1\x03\x4e\x6c\x72\x48\x32\x4a\x1d\x00\xed\x2c\x0f\xa3\xad\xba\xe4\xab\x1c\x78\x30\xda\x2a\xfa\xba\xba\x46\xfa\x8e\xae\xf7\x76\xd5\x15\x57\xf0\xfd\x6e\x9c\x77\x9d\x3c\x38\x7f\xdf\x76\x26\xc5\xd5\x19\x94\xfa\xd4\x93\x2a\x7e\xbc\x3e\xf0\x4e\xce\x95\xde\x0b\xc4\xd0\x93\x9e\x4d\x5f\xc0\x57\x94\xce\x0f\x1b\x0b\x4f\x3f\x9c\xfb\xc4\x6a\xaf\xf9\xe9\xe6\x44\x6d\x28\xa8\xb0\xa0\x47\x75\xb5\x5e\xcd\x01\x08\x27\xd2\xd3\x9f\xd2\xf0\x53\xa1\xb8\xda\x48\xeb\xa2\xd5\x3c\x0b\xcd\x44\xad\xad\xf4\xc2\x97\x9e\x7c\xd4\xfe\xd4\xb1\x6e\x73\x03\xd9\xa0\x3b\xfb\x0b\xc8\x2f\xcc\x2f\x7d\x6f\x12\x5c\xdf\x58\x0a\xb3\xd0\xba\xbe\x99\x4d\xf7\xd4\x0e\xe6\xac\x22\x1f\xe4\xc4\xe3\x5d\xa8\x59\x1a\x09\x49\xca\x25\x81\x3f\x3f\x89\x7f\x49\xb6\x6b\xd7\xae\xb9\x46\xc8\x21\x52\xa4\x1d\x01\x68\x77\x46\xc1\xd2\x99\x47\xed\xe7\x8e\xef\x45\x2f\xb5\xe2\xe0\x54\x90\x9d\x45\x54\x34\xec\xa1\xb4\x09\xae\x46\x19\xd0\x94\x76\xf1\x07\x31\x09\x22\x45\xd1\x9a\xb0\x35\xfb\xc4\x69\x4c\xcd\x8c\xe2\x8a\x25\x14\xa7\x92\xe8\x33\x63\xc3\xe1\x67\x18\xe9\x6c\xfe\xc8\xac\x4a\x32\xd3\x4c\x93\x00\xf1\xa3\x4e\x7c\xef\xfa\x6a\xff\x9d\xf7\x57\x06\xef\x75\x5b\x93\x07\x3a\x3d\xe5\x99\xee\x8a\x4b\x4f\x79\xce\x7d\x5a\xb2\x32\xa7\xbb\x37\x26\x00\xf2\xa9\x21\x00\x18\x8d\x46\xde\x88\xf9\x80\x74\xae\xf8\x59\xf9\xf9\xa2\x7e\xd7\x88\xc1\x26\x5b\x9d\xd1\x45\x1d\xd9\x6c\xed\x6b\x96\x32\xa9\x7a\x1f\xdf\x11\x17\x7f\xe6\x23\x63\x55\xdb\xb6\xe9\x14\xa7\x2e\x98\xe1\x99\x24\x93\x4f\xda\x2a\x99\xaa\x80\xb6\xed\xdd\x7c\x69\x7d\xbf\x89\x2b\x7f\x5f\x30\x59\x95\x57\x95\xbe\xf6\x2d\x57\x1f\x7d\x5f\xc5\x93\x3e\x0f\x80\xf2\x6e\xe9\x00\xa2\x53\x3b\xad\x53\x1b\xbb\xad\x9f\xed\x8c\x82\xb3\x81\x46\x87\xeb\x5e\x51\xf7\x6b\x2d\x5a\xd2\xa7\xba\x1f\x50\x4a\x43\x97\x56\x64\xa4\xbf\x74\x16\x69\x0a\x52\x88\x2b\x41\xa1\xcf\x51\x41\x6b\x12\x9c\x59\xef\x36\x2f\x9c\xdc\x6d\xdd\xdc\x9a\x1f\x6f\x0d\xa2\x84\xef\x52\x6e\xde\xcd\x55\x66\x75\xbf\x43\x55\xbd\xf6\xa1\xad\x23\x8b\x37\xb0\x92\x46\xb8\x2e\xf0\x41\x33\xf4\x69\x9c\xb6\x46\xc8\x1b\x9d\x2f\xda\xb7\x8d\xa6\x13\x00\x38\x79\xf2\x24\x80\x12\xda\x34\x15\x36\x47\xa7\x5a\xeb\x48\x69\x44\x27\x1f\xb7\x4e\x3d\xf1\xb8\xf5\xa9\xc5\x61\x78\xae\xa1\xd3\x35\xfa\x52\x28\x38\x5b\x69\x19\x55\x97\x76\xb9\x85\xa9\xd4\xda\x90\x90\xca\xaf\x73\x10\x43\xcd\x8c\x45\xb4\x9d\xc2\xfc\x29\x3a\x9f\x42\x77\x02\xa9\xc0\xa5\x49\x2d\x33\x99\x41\x53\x93\x86\xa5\x90\xec\xb5\xe3\xad\x1b\x2b\xfd\xb7\x6f\xac\x0e\xae\xec\xb6\xe3\xfb\x49\x30\x3d\x7b\x08\x53\x4b\xcb\x20\x3b\x7f\x28\x9f\x1a\x42\xb6\xe4\xd9\xac\x20\x32\x87\x7d\x5d\xbc\x78\x31\xf9\xdc\xe7\x3e\x67\xb3\x92\xd0\xf8\xc0\xf2\x07\x14\xd3\x4a\xf1\x92\x15\xc1\x75\xed\x4a\x23\xc9\xe7\x4a\x63\x8b\x4f\x2a\xe8\x6c\x79\x24\x28\xf3\x73\xe5\xeb\xfb\x3e\x55\x69\x7d\xf9\xfa\xf0\xb0\x95\x23\x0f\x52\x9c\xed\xb9\x2f\x68\x74\x5d\x53\xf9\xa4\x8e\xd8\xb7\x63\xae\xa2\x97\xf2\xf4\x05\xbb\xb6\xbc\xa4\xfb\xc2\x00\x01\xd5\xa0\xc6\xc6\xa7\x2a\xf8\xf0\xa4\xb4\xb6\x36\xcc\xcb\xc2\xa6\xd7\x7d\xbf\xab\xad\x9f\xb1\xe5\x57\xa8\x87\xbf\xf5\x5b\xbf\x15\x08\x56\x07\x3a\xb5\x12\x42\x23\x6a\x8d\x55\xe7\xa9\xed\xf6\x8b\x4b\x83\xc6\x27\x1a\x99\xc5\x5d\x72\xe6\x30\x61\xaa\x8f\x55\x61\x4a\x86\xbb\x0c\xa4\xe0\x86\xfa\xbd\x18\x84\x32\x1d\x16\xd3\x3e\xc3\x58\xf0\xf3\x7c\x4d\x5f\x90\x09\x10\x68\xd5\xe9\x8c\x1a\x4f\xaf\xef\x35\x3f\x7a\x6c\xbf\xb9\x8e\xe9\x4a\x28\x3a\x55\x54\x28\x03\xe9\xfd\xc9\xb5\x54\x8f\x79\x3c\x7d\x56\x07\x10\xd7\x19\x10\xd1\x78\x9b\x4c\x25\x79\xaa\xd0\x10\x45\x42\x9c\x19\x4f\x1b\x08\x71\x12\xbf\xaa\xca\x5e\x12\x12\x72\xc1\x72\xd9\x70\xf7\xee\xdd\xe4\xe5\x97\x5f\x0e\x8c\x6f\x0b\x90\xcf\x6b\xe6\x27\x7b\x66\xd7\xd1\xfc\xb0\xb1\x7c\xe6\x51\xeb\xe3\xab\xfb\xe1\x8b\xcd\x49\x3a\xa7\x09\x4c\xa7\x1d\xe9\xb6\x23\xe9\x7d\x7a\x2d\x4e\x1f\x3a\xa6\x14\x0b\x48\x3c\x9f\xdb\x99\x5a\x58\x44\x5a\x9d\xd2\x14\xf9\xaa\x52\x23\xe2\x10\x26\x8d\x29\x3a\xbb\xe8\xec\xdf\x7e\x34\xd9\xb9\xb5\x32\x78\xfb\xda\x5a\xff\xed\x9d\xb9\xf8\x83\x49\x50\x3e\x30\x11\x64\x1b\xff\x6c\x6a\x28\x3f\x27\x03\x98\xfa\xb4\x00\x29\x68\xf9\xc2\x17\xbe\x10\xfc\xf3\x3f\xff\xb3\x6b\xb4\x46\xbf\xab\xf4\x67\x82\x4f\xe3\xe0\xca\xcc\x76\xed\xaa\x83\xb6\xfa\x44\xd3\xd8\x3a\x0b\x2e\xb7\x4b\x21\xd3\xf7\x71\x8d\x72\x6c\xef\x41\xef\xb9\x0c\xb6\xe7\x75\x3a\x08\x49\xa6\xaa\xd1\x98\x0b\x24\x80\x3d\xb3\x7d\x03\xa7\x32\x72\xc4\xfb\x76\xaa\xe6\xb7\x8a\xde\x46\xe3\xab\xcc\xa5\x60\x03\x8a\x52\x7a\xe9\x9b\xd2\xef\x29\x05\xd7\x37\xa4\xf9\xdb\xde\xa1\xaa\x73\xf2\xed\x98\xa4\x36\x6c\xd3\x01\x2e\x9e\x36\xc0\x5b\xf5\x4c\xca\xaf\xa4\x53\xfe\xf4\x4f\xff\xb4\xd0\xe7\x70\xff\x16\x00\x51\xa0\xd1\x3e\xde\x8d\xd6\x56\xf7\x9b\x9f\x6c\x4d\x82\x0d\x95\x59\xdc\x01\x94\xe6\xdf\x4b\xd3\xf2\x1a\x45\x52\x46\xa3\xa9\x93\xa3\x09\xaa\x0c\x84\x0c\x7d\x6e\x71\x37\xf7\x82\xef\x40\x98\xa8\xd5\xe5\x7e\xf8\xec\xfa\x5e\x74\xb6\x91\xe4\x7e\x2e\x66\x65\x54\x5e\x66\xf6\x2d\xb3\x6a\xd5\x6f\x9b\x5e\xf1\xe1\xcd\xf9\xf0\x6b\x9f\xc1\x8e\xb3\x7e\xdb\x00\x89\x2d\x31\x45\xdc\x1c\xa9\xbb\x1a\x13\xe7\xe1\x42\x58\x92\xe2\xab\x6a\xf8\x79\x3e\x66\x1e\x93\x38\x2a\x15\x2a\x2b\x80\x76\x90\xa0\xfd\xf4\xc3\xf6\xd9\xe3\x7b\xd1\xa7\xe7\xe2\xe0\x4c\x00\x15\x69\x56\x53\x0b\x68\x1a\x45\xc0\xa2\x59\xf5\xd3\xe0\xa9\xa7\x60\x27\x9d\x22\x2a\x82\xa0\xd2\xbe\x2e\x24\x1f\x9d\x99\x54\x14\x43\xdc\xe6\x39\x78\x7c\x01\x60\xe9\x69\x94\x9e\x4a\x35\x6c\xe8\xde\x9d\xe5\xe1\x95\xcb\xeb\xfd\x37\x1f\xce\xc7\x1f\xc4\x0d\x4d\xb7\xf1\x2f\xf8\xb5\x20\xdb\xa7\x85\xae\x1e\xe2\xcb\x9e\xcd\xf4\xd0\x3f\xfe\xe3\x3f\x56\x01\x0d\x9f\x50\xa5\xf4\x7c\xf9\xd8\x46\xbf\x52\x3d\xaa\x02\x21\x9c\xde\x16\x6c\x72\x4b\x6d\x43\x92\xcd\x27\xd8\xda\xa0\xed\x9e\xa6\xa9\x02\x10\xb4\xb3\xb4\x75\xa6\x5c\x06\xa9\xdc\x78\x7e\x9c\xde\xd7\x0a\x50\xd5\xe1\x1b\x1a\x1f\xbd\xe5\xd3\xf9\xb9\x64\x70\xe9\x26\x29\x8d\x0d\xf8\x4a\xf2\x49\xf9\x71\xb9\x68\x47\x2b\xd1\xfa\x5c\xdb\xea\x1b\xe7\x2b\xc9\x5b\x25\x6b\xd5\xf5\xac\x20\xd5\x47\xa6\xca\x3a\x40\x8e\x78\x29\x9c\xfe\x9c\xfb\xb7\x68\x44\x0d\xad\xda\x27\x1e\xb7\xce\xce\x8f\x1a\xcf\xa6\x8b\x32\x50\xf2\x55\x31\x3a\xd9\x0c\x3c\x0b\xfe\x29\x4c\x39\x4f\xa7\xee\x01\xde\x4b\x50\xeb\x4d\xae\x99\x79\x5e\xd4\x6a\x9f\xf1\xa7\xe7\xcd\x05\x1a\xed\xce\xb8\x71\x6a\xb5\xd7\xfc\xf0\xe2\x20\x5c\xc0\xd4\xcf\x25\xcc\x7c\x77\x00\xe4\x4e\xba\x81\xd6\x1a\x5f\xfc\xe2\x17\x83\x4e\xa7\xe3\xaa\xbf\x52\x1d\x93\xfa\x77\x1e\xb8\x6e\xf1\xad\x03\xb6\x81\x92\x44\xc7\xd3\x04\xfc\xa1\xaf\x82\xe6\x99\x56\x35\x4c\x9f\x51\xa0\x54\x61\x25\x85\x68\x93\x27\x2f\x40\x6a\x1a\xa3\x16\x17\xad\x75\xc1\x21\xf7\xc8\x20\x5c\x3a\xbd\xd3\x3e\xbf\x34\x08\x9f\x6b\x24\x6a\x21\x4d\x40\x81\x8a\x62\x60\x44\x93\xff\xa7\x56\x8d\x14\xa0\x98\xa5\x6b\x28\x54\x44\x03\x76\x34\xa5\x57\xb2\xf9\x11\xa0\xce\xc0\x6c\x7a\x49\x4d\xe5\xa0\x0d\x45\xb1\xda\x6e\xf2\xcc\x4d\x8e\x59\xfc\x24\xd0\xa3\xcd\xc5\xd1\x7b\x6f\x6f\xf4\x7e\xb8\xb9\x30\x32\x27\x3d\xef\x6a\xad\xbb\x66\x8a\x28\x9b\x1a\x1a\x20\xb3\xb4\x20\xf3\x6b\xa1\x27\x92\x9a\x43\x13\x27\x93\x09\x17\xbd\xaa\x21\xd8\x82\xad\xa2\xfb\x56\x68\x5f\x45\x67\xa3\x77\x35\x34\x5f\xe5\x5a\x45\x2f\x75\xa0\xbe\x79\xb9\xf2\xb0\x01\x23\x4e\x6b\xb3\x86\x48\x72\xfa\x0c\x3a\x5c\xf1\x86\x8f\x4b\x0f\xd8\x3a\x52\x1b\x80\xb4\x0d\x62\xc4\x41\x0b\x93\xaf\xae\x72\x94\xe4\x92\xe4\xa3\x79\x56\x01\xab\xaa\xf7\x75\x05\x49\x7e\x1b\x20\xac\x1a\x0c\x72\xf9\xf8\x7b\x48\xe5\x6c\x93\xbb\xaa\xcc\x7c\x75\xb7\xd4\x8f\x54\x95\x9b\xa1\xb1\xbd\x6f\x7e\x6d\x3a\xef\xec\xda\xbc\x5f\xbe\x92\x48\x01\xe1\xdc\x38\x58\x38\xd6\x8d\x3e\x1c\x4d\xd4\x49\x05\x84\x66\x8a\x26\x9f\xd1\xd1\x65\xfd\x0d\x4c\xf5\x30\xdf\xfc\x13\x48\x61\x8b\x19\xb0\x16\xac\xec\x20\xfd\x82\xcb\x44\x4f\x42\x71\xa5\x11\x00\xa8\xa0\x39\x51\x6b\xcb\x83\xf0\xe9\xe3\xdd\xe8\x24\xca\x4e\xba\x85\x72\x54\x4a\xe1\x99\x67\x9e\x41\xaf\xd7\x93\xca\x5c\x8a\x03\xca\xe5\xed\xdb\x07\x83\xdc\x57\xf1\x76\xd5\x09\x49\x8e\xd2\x73\x5b\x25\x74\x29\x62\x7e\x5f\xa7\xc1\xb8\x78\xba\x1a\xb3\x8d\x26\x01\x80\x6f\x7e\xf3\x9b\x25\xde\x8a\x1c\x9e\x45\xa6\x89\xda\x00\xa2\x67\x37\x3b\xcf\xae\xed\x37\x3f\x1d\x4d\x82\x75\xc0\x9c\xf9\x00\x86\x90\xd9\x7e\x29\x82\x50\xb9\xd3\x6c\x16\xa4\xf3\x28\x4a\xf3\x9e\x2c\x2e\x7f\xa6\xcb\x94\xe6\xff\x29\x46\xa9\xaa\xf0\xc5\x26\x31\x51\x48\x1e\xcd\xc5\xf7\xde\x3a\xb1\xff\xea\xed\x23\x83\x9b\x19\x68\xe1\xfe\x2c\xb9\xa5\x25\x3b\x77\x48\x02\x2d\x00\xd2\xe9\xa1\xcb\x97\x2f\x03\xf6\x51\x1d\x55\x3c\xb6\x51\x11\x4f\xe7\x02\x03\x5c\xb9\xf2\xfc\x4c\xbc\x4b\x1e\x57\x27\x27\xc9\x24\x8d\x3e\xea\x04\x17\x10\x97\x68\x69\x59\xd9\x40\x0a\xa7\xe3\x69\x29\x2d\x50\x2e\x37\xda\x31\xb9\xda\xa9\x0d\x54\xb9\xca\x57\x92\xe9\x30\x82\x24\x2f\x97\x85\xca\x53\xa5\x47\xaa\x3a\x65\x89\x77\x55\x9e\xb6\x7c\x0e\xab\x0c\xaa\xf2\xf4\x1d\x70\xda\xe2\x6c\x1d\x4c\x15\x38\xf5\xc9\xdb\x05\xee\x24\x9e\xbe\xe5\x66\xd3\x1b\x2e\x39\xe8\x5f\x08\x20\x0c\x13\xd5\x3e\xb6\x17\xad\x2d\x0f\xc2\x67\xc3\x44\x2d\x1b\xfd\x5b\x98\xe1\x31\x56\x14\xee\xbf\x58\xa1\x87\xd9\x0c\x7f\x6e\x81\x07\x50\x04\x22\xaa\x18\x57\xea\x63\x74\x31\x2b\x05\x20\xd0\xaa\xdd\x19\x05\x1b\xcb\xfd\x90\x02\x17\x03\xca\xaa\xf4\xd5\x41\xea\xb7\xab\x5d\xd9\x70\x80\x8d\xb7\x8f\x2e\x76\x06\xd7\x48\x50\xca\xb4\x0e\xbf\x83\x06\x6f\x5e\x7f\xf0\x07\x7f\x20\x29\x53\x80\x78\x8e\x2b\xa5\x22\xa5\x11\x6d\xec\x46\x6b\xa7\x77\xda\x3f\x37\x3f\x0c\x9f\x0b\x34\xda\xdc\x02\x62\xab\x92\x29\x48\x99\xde\x6b\xf2\x40\x98\x8e\x2c\xd3\x59\x82\xc4\x47\xa2\xa0\x7e\x36\x55\xbc\xb5\x06\x12\xa5\x93\xdd\x76\xbc\x79\x79\xbd\xf7\xfd\xab\x6b\xbd\x77\x13\x35\xb5\xb2\x10\xb0\xd2\x15\x56\x0f\xe5\x9e\xea\xc6\x09\x37\x03\x30\x00\x80\x7f\xff\xf7\x7f\x77\xbd\x4e\x9d\x4e\xc3\x36\x32\x96\x68\x0c\x9d\xab\x83\xb4\x35\x5a\x1b\x78\xe2\x40\x40\x92\x57\x52\xe6\x55\xa0\x4d\xca\xcb\x27\xcc\xda\xe1\xf9\x96\xb9\xad\xc3\x72\x95\xa9\xed\xbb\xcd\xa2\x1c\x0f\x1a\x6c\xa0\xd8\x27\x5f\xdf\x67\x75\xea\x2f\x97\x69\xd6\x30\x6b\xda\x3a\x83\xc3\xba\xf4\x2e\x99\xaa\xbe\xaf\xef\x00\xe3\xa0\xa1\x04\x60\xa2\x28\x2a\xf0\x67\xbe\x1e\x05\xe0\x12\x24\x68\x2f\x0d\x1a\xab\xad\x58\x9d\x02\x50\x52\xde\x05\x5f\x16\xa6\x78\x55\x89\xa8\xd8\x07\xe4\x56\x1b\x92\x56\x72\xf8\xe5\xfd\x86\xd2\x2c\x2b\x41\xa6\x40\x23\x6a\xc5\xc1\xfa\xe2\xa0\xf1\x64\x7b\x14\x74\xc0\xc0\x0b\xdc\xe5\xec\x63\x31\x3b\xa8\x1e\x73\xf1\xa6\x7c\x5d\x7d\x42\x65\xbc\xa4\xb4\x5c\xe8\xc9\xc6\x8c\x8e\xe8\x28\xaf\x2a\x25\x6f\x6b\x4c\xd2\x68\x5b\xba\xce\xf9\x92\x69\xa2\x42\x05\xcd\xff\x34\xa2\x30\x51\x9d\xa7\xb7\xda\xcf\x2d\xf7\xc2\x0b\x61\x82\x05\x6a\xd9\xc8\xd7\xe7\xb8\x1c\xb1\x14\x9d\xd2\x29\x3b\xf0\x16\xd2\x50\x9e\x34\x2e\x5f\x1c\x34\xcd\xa8\x50\xe9\x4b\xfe\x33\x6a\x3a\xd7\x49\x10\xba\x46\x71\xfe\x53\x13\x01\x74\xa0\x93\xcc\x19\xf7\xcd\x77\xd6\x7b\x6f\x4f\x54\xbe\x7d\x7f\x37\xdb\x9b\xc5\x1c\x9c\x38\x42\xba\xf4\x99\x02\x17\x00\x85\x03\x13\x13\x00\xf8\xde\xf7\xbe\x97\xe5\xa3\xf3\x38\x4b\xa0\x75\xc0\xc7\x8a\xc6\xe3\x78\x3d\x74\x9a\x0c\x19\x5d\x95\x45\xd0\xf6\x5c\xca\x43\xca\xd3\xf6\x4e\xb6\x7c\x5c\x60\x87\xa7\xf1\x1d\xe5\x56\xb5\x4d\x9f\x11\x8e\x4d\x1e\x9e\x86\xd3\x48\x32\x54\xc9\x64\x6b\xb7\x75\x94\xa2\xa4\x53\x5c\x20\xcb\xb7\x73\xad\x93\xff\x41\xc3\xac\x3c\x7c\xc0\x14\xd5\x99\x87\x21\x8b\xeb\x3b\xf9\x5a\x3c\x78\xdd\xf7\x05\xe6\x55\xe0\xcb\xda\x77\xd0\xed\x18\xc8\x56\x14\x05\x8b\x8b\xf1\x71\x09\xb4\x8a\xe6\x47\x8d\xd5\x70\xa2\x96\x29\x8f\x5c\xff\x66\x0a\x55\x2b\x2d\x5b\x58\xc4\xe5\xa5\x64\x1a\xc9\xfc\xa7\xa6\x53\x46\x65\xc0\x23\x2c\xb7\x90\x78\x1a\xca\x94\x3c\x68\x24\x6a\xa1\x33\x6a\xac\xaf\x0c\xc2\x25\x90\x3e\x2e\x7b\x37\x23\x83\x79\x5f\xce\xae\xea\x1b\xd8\xda\x3d\x2d\x47\x1a\x57\x15\x24\xfa\x83\xd6\x03\xeb\x3e\x2e\xbc\x11\x54\x8d\xc6\xa8\x62\xf4\x35\xf7\x49\x23\x26\xae\x00\x6d\x4a\xd5\xd6\x50\xcd\xe9\x9f\xb4\x90\x43\x20\x05\x2d\x27\x1e\xb7\x36\x9e\x78\xdc\xfe\xd9\x76\x1c\x9c\x55\xd9\xbb\x97\xac\x25\x04\x1c\xf0\xb8\xf4\x72\xea\xdf\xc2\xe7\x38\xf3\xd3\x97\xc1\x4c\x8e\x84\xdf\xd4\x01\x2b\xf7\xe6\x62\xf5\x5f\xb8\xcb\x96\x55\x4f\x97\x38\x67\x4f\xa8\x5c\xd9\x75\xa2\x34\xfa\x61\xd2\xfd\x60\x69\x74\xf5\xf2\x7a\xef\xcd\xfd\x68\xf2\x10\x2a\xdf\xa3\x65\x90\xf9\xb5\x18\x9f\x96\x81\xd9\x5c\x0e\x99\xb5\x85\x1f\x98\x08\xa4\x7b\xb5\x90\x1d\x71\x69\xe0\x60\xd5\x56\x49\x79\xdd\xb0\xd5\x2f\x89\x8e\xf2\xb0\xc5\xdb\xd2\xd8\x78\x57\xe5\xc3\xf3\x94\x3a\x7a\xdf\x77\x80\x40\x23\xc9\xc9\x01\x9f\x8f\xdc\x9c\xb7\x4d\x3e\xdb\x60\x62\xd6\x32\xe5\x79\x72\xf9\x29\x6f\x1b\xa8\xa9\xd2\x39\x3e\xd7\xb6\xf4\x55\xa0\xa6\x2e\x3f\x57\x3e\xbe\x80\xc1\x17\x54\xcc\x12\x24\xd0\xe6\xca\xaf\x4a\x6e\x5e\x17\xab\xf2\x74\x3d\xaf\xfb\xde\xbe\x65\x5a\xfa\xa6\x51\x14\x05\xa3\xd1\x28\x31\x83\x58\xd3\x91\x93\xe3\x52\xd2\xe5\xd0\x3a\x9d\x2a\x6a\xc7\x8d\xa3\x61\xa2\x96\x28\x53\x7a\xb8\x2d\xbd\x07\x50\xe8\x14\x34\xd3\xfd\x66\x10\x69\x9d\xce\x17\x74\xb5\xd9\x67\x2b\x07\x37\x96\x50\xec\x87\x14\x02\xad\xa3\xf6\x24\x58\x5e\x18\x36\x96\x01\x6c\x66\xef\x1f\x50\xf7\x08\xe3\x93\xc8\xe4\xf1\x29\xd7\xaa\x7a\x61\xbb\xb7\xa5\x73\x01\xa1\xaa\x3a\x6a\x4d\x17\xd2\x1b\x81\xd0\x67\xe4\x2c\x85\x59\x46\xdc\x55\x15\x5d\x54\x4c\x2f\xbf\xfc\x72\xbe\x82\x28\xdb\x80\x87\x83\x96\x50\xe9\x74\xb3\xb9\x27\xb7\xdb\xcf\xae\xf4\xc3\x97\xd2\x3d\x5b\x8a\xeb\xf5\x69\x90\x00\x07\x0f\x72\x9c\xf2\xa2\xa7\x26\x43\x2e\x83\xbd\x02\x17\x1d\xc4\xa6\x60\xa9\x78\x3d\x6a\xe8\xde\x83\x85\xd1\x8d\xab\xc7\x7a\xaf\x3f\x58\x18\x7f\x90\x28\xdd\x85\x4e\x57\x0f\x19\xd0\x92\x5d\x1b\xd0\x92\x4f\x0f\x19\x0b\x8b\xa9\xf4\x40\xea\xd7\x02\x80\xef\x88\xeb\x53\xe9\x6c\x88\x59\x02\xac\x36\x3a\x09\x0c\xf9\x28\x34\xdb\xa8\xac\x2e\x3f\xde\x41\xd9\x82\x6d\x54\xca\x9f\xb9\xea\x76\xdd\xe0\x2b\x0f\x2d\x8b\xaa\x8e\x98\x86\x2a\x59\x7d\xd3\x48\x60\xc6\x36\x10\xaa\x63\x35\xe0\xbc\x7d\xd3\xcd\x02\x20\x5c\x40\xa7\xee\xa0\xcd\x84\xba\xef\x5a\x27\x4d\xd5\xb7\xa9\xe2\x53\xb7\x83\x93\xbe\x43\xdd\xfa\xe6\x1b\xef\x5d\x66\xd4\xe2\x42\xfc\x1c\x83\x40\x23\x6c\xc5\x41\xbb\x3d\x0e\x96\x1b\x5a\x59\xf7\xef\xa2\x0a\xda\x1c\x9e\x98\xf3\xe6\x34\xd4\x65\xc0\xd6\x09\xb0\x24\x46\x46\x63\x51\xa9\x74\x61\xcc\xf9\xab\x30\x8c\xd5\xd2\xdc\x38\xa0\x16\x97\x80\xf4\x7f\x1e\xfe\x90\xd6\x60\x03\xc1\x3e\xdf\xc6\xd5\xbe\x39\xbd\x94\xce\xfb\xdb\xda\x2c\x17\x26\x24\x84\x86\xa6\x01\x8b\x0f\x18\xad\x34\xba\xe3\xe9\x5d\xf7\x52\x1e\xa5\x02\x35\xdb\xfa\x9b\x38\xe9\x2c\x22\x00\x51\x73\xa2\x3a\xc7\xbb\xd1\xc9\x93\xbb\xd1\x7f\x69\xc7\xc1\x19\xa0\x0c\x14\xa8\x45\x8d\x2f\x41\x36\x2b\x8c\xec\x3e\x25\x64\xb5\x0f\x9d\x33\x62\x66\xba\xd2\x9c\x66\x16\xab\x2c\x8c\xa5\xe5\xf8\x4a\x67\x73\xa1\x5c\x7e\x68\xc4\x41\x32\x7a\x34\x3f\xbe\x7b\xfd\xe8\xe0\xed\xdb\x47\x86\xd7\xe3\x86\xde\x25\x87\x25\x76\xc9\x75\xbe\x8d\x7f\xb6\xec\x99\x2e\x79\x06\x07\x2d\x59\x90\x46\x61\xd2\xaf\x54\x31\x4d\xbc\x54\x41\x79\x1a\x17\xa0\xad\xba\x96\xac\x18\x36\x19\x6d\xe0\x9c\xcb\xc0\x1b\xaf\xd4\x66\xaa\xde\xdb\xd6\x91\xd8\x64\x72\xbd\x83\xeb\x7d\x5c\x69\x66\xe1\x0d\xb8\xcb\xa7\xea\xfd\x6c\xc1\x47\x41\x49\x3a\xc7\xf6\xbc\x2e\xbd\xeb\xda\xaa\x6f\x1c\xbc\x5d\x8a\x9d\x5f\xfb\x58\xcd\x24\x7a\x1f\x5a\xca\xd7\xa6\xb7\x39\x4d\x55\x70\xf1\x98\x45\xbf\xdb\x9e\xcd\x04\x4e\x0c\xfd\xdc\xdc\x5c\xc0\xa6\x8a\x02\x76\x1d\x20\xed\xdc\xf2\xd7\x76\xdc\x00\x00\x20\x00\x49\x44\x41\x54\x43\xa5\x11\x36\x27\xaa\xdd\x4c\xd4\x42\xba\x00\x2c\x40\xd3\xbf\x7f\x17\x71\x4a\xa1\xfd\x80\x65\x34\xa9\x69\x8f\xa0\xa6\x31\xb9\x2d\xbe\xd0\xa9\x14\xdd\x09\x38\xa6\xb1\xb9\x09\xe4\x2e\x05\xdc\xef\x25\xa5\x0d\xc2\x44\x75\xa2\x38\xe8\x80\x0e\xd0\xa7\x03\x78\xd0\x69\x23\xb2\x34\xbc\x4e\x9d\xe6\xed\xbe\xaa\x3e\x72\xfe\x2e\xde\x26\xde\xb7\x0d\x97\xea\x89\x4f\xc5\xa5\x0a\x9b\x0a\xe7\x52\xa2\x36\x41\x0d\x8d\x4b\x41\x48\x7c\xad\x8d\x9e\x6d\x2c\x44\xff\x42\xad\x75\x14\x24\x68\x2f\x0e\xc2\xe5\xd3\x8f\x5a\xcf\x2f\x0f\xc2\x4f\x28\xad\xda\x92\x61\xce\xac\x2a\x9a\xce\x71\x92\x67\x10\x0e\xca\xa2\x69\xa5\x1b\x3a\x2f\x04\x8b\xe5\x46\x67\x84\x36\xeb\x22\xf3\x3a\x07\x90\x6f\x6c\xc4\x93\x24\x0a\xc9\x6e\x7b\xb2\x79\x73\x65\xf0\xce\xad\x95\xc1\xd5\x7e\x73\xb2\x43\x96\x3b\xf7\xb2\xdf\xfc\xc0\x44\xad\x75\xac\x94\x8a\xe9\xa1\x89\x40\x6a\x6d\xb9\x78\xf1\x62\x42\xc0\x98\x2f\xd0\xa4\x7f\xb9\x58\x2c\x4d\x22\xd0\x49\x15\x58\xca\xcb\x96\xc6\xd5\x00\x38\x1d\x97\xd7\xd6\x30\x6d\x0a\x95\xa6\x71\xc9\x63\x0b\x2e\xb9\x7d\xde\x95\xf3\xb2\xf1\x76\xf1\xe0\xef\x63\xeb\x2c\x6d\xed\xd5\x25\xb7\x24\x9f\xad\x43\x92\x78\xb8\x3a\x2f\x9e\x8f\x0d\x8c\x49\x69\x79\xb0\x3d\xe7\xba\xae\x4e\x5a\x13\xaa\x3a\x63\x5f\x40\x67\x03\xc2\xbe\x72\xf8\xea\x62\x5f\x39\x24\x7a\xdb\x3b\xb9\x74\x46\xd5\x3b\xf0\x7a\x21\xf5\x3d\x25\x19\xfa\xfd\x7e\xc2\xcf\x25\x62\xcb\x96\x03\xc0\xec\x71\x52\x18\xe0\x66\x09\xd2\xff\xb8\x6f\xac\x04\x36\xb2\x93\x9b\x73\xa8\x32\xed\x21\x50\xa4\x34\x27\xe0\x12\x1e\xd4\x3a\xce\xa8\x73\x8b\xbd\x49\x6a\xac\x30\x42\xbf\x13\x04\xa9\xcf\x66\x1b\xac\x6d\x1a\xab\x8b\x79\x67\x87\xe5\x45\xfa\x0e\x3e\x60\xd7\x06\x7a\x7d\xea\x4c\xd5\x60\xaf\x2a\x5d\x2e\x5f\xc0\x08\x5c\xca\xb7\xaa\x41\xf3\xc0\x79\x27\x96\x78\x9e\x07\x97\xa5\xd4\x00\x8f\x1f\x3f\x1e\x7c\xfb\xdb\xdf\x36\xfe\x2c\x85\x82\x24\xfb\xb5\x84\x0a\x2a\x6c\xc5\x41\x67\xbd\x1b\x9d\xda\xd8\x6b\x5d\x68\xc5\xc1\xa9\xbc\x32\x12\x28\xcb\x7d\xc6\xd3\x7d\x50\x64\x01\x45\xf0\x91\x9f\x57\x51\x86\x35\x52\x05\xcd\x9f\xd9\x4c\x2d\x42\x9e\x1a\xba\xb4\x23\xa2\xc6\x14\x6c\xf5\x9b\x93\x9d\x3b\x47\x86\xef\xdd\x5c\x19\x5c\xd9\x69\xc7\x0f\x30\xb5\xae\xe4\xa0\x05\xa9\x03\xee\x00\xa9\xc5\xa5\xb0\xb9\x9c\xd9\xca\xdf\x54\xf4\x1f\xff\xf8\xc7\x10\xfc\x5a\xa4\x4e\xcf\x36\x4a\xb7\x75\xa4\x55\xa3\xf3\x2a\xa0\xe4\x0a\x2e\x45\x9d\xc0\x5e\xdf\x6d\xc1\x67\x04\x20\xe5\x6b\x03\x32\xae\x4e\xbc\x4a\x41\x73\x70\x28\x29\x10\x1b\x50\xb4\xc9\xc6\xd3\x70\xf9\xea\x96\x8f\x2f\xc8\xaa\xe2\x25\x05\x5b\xe7\xe8\xca\xd7\x95\x5e\x8a\xb7\x95\x7f\x1d\x0b\x80\x0b\x18\xf2\x7c\x5c\xd7\x75\x82\x8f\x7c\xd2\xb7\xf5\x01\xc7\x55\xc0\x94\xdf\x27\xe4\x0f\xec\xda\x27\x54\x81\x37\x51\x9e\x23\x47\x8e\x04\xcc\x42\x5c\xf0\x75\xcc\xac\x10\xe9\x40\x57\xe9\x20\x51\x08\x12\xa5\x4b\x72\x49\x83\x45\x9b\x76\xe7\xce\xb6\xae\x19\x22\xc9\x1d\x41\x06\x2f\xec\x3a\x3f\x77\x6e\x9a\x99\x02\x02\x05\x15\x36\x12\xd5\x22\x47\xd9\x18\x60\x56\xfa\x2e\x82\x9f\x0b\x0f\xb6\x81\x43\x15\xc8\xf6\xf9\xae\x55\x75\xcc\x37\x5d\x41\x46\x09\xdd\x02\x76\x25\x51\x95\x91\x4d\x49\x43\x88\x77\xbd\x34\x55\xe4\x25\x9e\x4f\x3c\xf1\x04\x80\x62\xc5\x44\xf1\xc3\xa5\x4b\xde\x34\xda\x4b\xc3\x70\xf5\x89\xc7\xd1\xf3\x4b\x83\xf0\x85\x40\xab\x08\x30\xc6\x90\x6c\xd2\x52\x6b\x28\xe2\x09\x5e\x70\xb6\xb2\x4c\xf5\x14\x7e\x45\x73\x8b\x2d\xa6\x68\x36\x94\x2c\x3f\xbc\x71\x4c\x2b\xb7\x2a\x1e\x9f\xae\xa7\x17\xa3\x86\x1e\x6c\x2e\x8c\x6f\xdd\x5a\x19\x5c\xd9\x9a\x1f\x7f\xa0\x83\xe9\x5e\x2d\x5a\x6b\x73\xca\xb3\xf9\x33\x3e\x2d\xd4\xb7\x25\x5f\x45\x64\x1a\xff\xbf\xfd\xdb\xbf\x25\x83\xc1\x40\xaa\x9c\x92\x42\xe2\x71\x36\xe5\x45\xc1\x83\xad\x1e\x48\x69\xaa\xf2\xf6\xe5\x31\x0b\x6f\x58\xe2\xeb\xe6\x29\x85\xaa\x11\x07\x2d\x2b\x57\xb9\xfa\xc8\x5a\xd5\x91\xb8\xe2\x5c\x79\x56\xbd\xb7\x0f\x58\xf5\x51\x92\x26\x70\x25\x2b\x7d\x4b\x1e\x7c\xc1\x70\x65\x07\x69\x89\xf7\xb1\xd0\x50\x45\x4c\x41\xa1\x0d\x2c\xce\x92\xbf\x6b\xc4\x5c\x05\xb6\xa5\xe0\x2a\x57\x5e\x56\xfc\x3d\xa5\x3c\x79\x98\x05\xb4\x89\xf2\x3c\x7e\xfc\x38\xa1\xbb\xe5\x4a\x79\x15\x80\x8c\xd2\x48\x80\x84\x6b\x78\xba\x6a\xb4\xf8\x44\x95\x2c\x1f\x9a\xa4\x2a\xa4\xe1\x6e\x07\x9a\xe9\x75\x73\x40\x23\x24\x38\x44\x56\x11\x01\x25\xab\xbd\x99\xd6\x52\x1a\x81\x9a\xee\xdd\x02\xa0\xb0\x82\x28\x2f\x07\xc7\xaa\xa2\xaa\x01\x55\x5d\xa0\x51\xca\x5b\xc8\xb7\xaa\xce\x49\x32\x71\xbd\x17\xd8\x08\x6d\x99\xd2\xdf\xba\x0d\xdf\x85\xba\x5c\x23\x53\x51\xa6\x0b\x17\x2e\xe4\x1f\x84\xec\x90\x9b\x5b\x5b\xb4\xd6\xe9\x01\x5a\x71\xd0\x39\xda\x6d\x9e\x3a\xbe\x17\xbd\x18\xc5\x6a\x83\x57\x93\x14\x78\xa8\xdc\x43\xbc\xf0\x89\xa5\xa9\x1e\x2d\x3b\xd6\xa6\xcf\xb5\x50\xd9\x49\x7e\x0c\xe5\x94\x2a\xad\xa6\xf1\x12\x4f\x66\x17\xca\x1e\x24\x01\x92\x9d\xb9\xf8\xee\xcd\x95\xc1\x95\x7b\x8b\xa3\x9b\xe3\x86\xde\x25\x53\x43\xbd\xcc\x11\xb7\x97\x9d\x3d\x44\xcf\x1f\x8a\x81\xf2\xf9\x43\xec\x15\x6c\xdf\xcb\x15\x27\x7d\x6b\x8e\x98\x6d\xcf\x6c\x7c\x78\x90\xe8\xf8\x73\x17\x9d\xa4\xe0\xab\x14\xbe\x44\x23\x35\x72\xe9\x9a\x77\x5a\x36\xde\xfc\xbe\x4e\x59\xf9\x3c\x73\x7d\x3b\x57\x19\x48\xb2\xda\xf2\xe5\xf4\x75\xc1\x80\x6f\xc7\x5b\xc5\x87\xc6\xd9\x3a\x59\x17\x5f\x9f\x0e\x5b\x8a\xab\xe2\x67\xd3\xa5\xf4\x9b\x9b\xe7\x12\xaf\x2a\x80\xe9\x13\x24\x10\x63\x4b\xeb\xf3\xcd\x6c\x20\x55\xd2\x27\xb6\x50\x07\x78\x8a\x81\x9e\x54\x4f\xfa\x07\x00\x53\xbf\x3d\xe3\x0c\x3b\x51\x40\x12\xe8\xa4\xe8\xbd\xa8\xc4\xc1\x24\x0d\x92\x75\x84\x9f\x10\xcd\x67\x8b\xca\xc7\xce\xd1\x85\x21\x8a\xe8\xfb\x69\x72\x49\x8a\x7c\xd0\xaa\x80\x44\xe9\x24\x56\xda\x4c\xe9\x07\xf9\xbb\x09\x8e\x91\x96\xb3\x8b\xaa\xea\x4a\x01\x28\x90\x50\xd5\x1f\x1c\x46\x3d\xaa\xa4\xb1\xa1\xaa\xaa\x8a\x22\xbd\x10\x6f\x88\xae\xca\xec\xdb\x20\x0b\x69\xe9\x06\x43\xcc\x24\x96\x9f\xfa\x99\x81\x97\x48\x69\x44\x4b\x83\x70\xf5\xe4\x6e\xf4\xfc\xe2\xa0\xf1\x91\x00\x2a\xd4\xc6\x01\xcb\xf0\xc0\x14\x90\x00\x80\xd2\x5a\x74\x88\xcd\x41\xca\xff\x4f\xdc\x9b\x3e\xd9\x71\x5c\xf7\x82\xe7\x64\xd5\xad\x7b\xfb\xf6\xed\x46\xa3\xd1\x6c\x81\x20\x48\x41\x14\x48\xd1\x12\x45\x69\x08\x4a\xd6\xe2\x27\x79\x91\x57\x79\x26\x34\x5e\x43\xe1\x78\xb2\x47\x11\xe2\x97\xf9\x8f\x40\xdb\x11\xf6\x17\x87\x17\xf9\x83\x17\x8d\xc7\x21\xd9\x63\xca\x4f\x4f\xb6\x45\xca\x96\x44\x59\xa2\x28\x10\xa0\x48\x10\x68\x00\xbd\xf7\x5d\xab\x32\xe7\x43\x55\x56\x9d\x3a\xf7\xe4\x52\x0d\xc8\x2f\x23\xba\x6f\x55\xe6\xc9\x93\x27\xb7\x93\xbf\x3c\xb9\x14\xb6\x41\x0b\xe5\xd1\xda\x56\x5e\x87\x35\x7e\xad\xa5\x27\x02\x52\xa8\x30\x75\xc3\xad\xc3\xa9\xdd\x52\x00\x57\x60\x60\xdc\x2b\xf6\x7f\xb4\x31\x7d\xf5\xad\x8d\xd9\xb5\x93\x7e\xb1\x0b\x08\xad\xcb\xe5\xec\xe9\x21\x7b\x23\x2e\xb4\x8f\x3c\xdb\xa5\x22\xb8\x7a\xf5\xaa\xfe\x95\x5f\xf9\x15\x69\x90\x95\x06\x67\x69\x20\xa0\x16\x02\x80\xe5\x86\x2f\xb5\x07\x1e\xc6\x67\xec\x9c\x1f\x08\xcf\x92\x93\x68\x43\xed\x93\x82\x04\x5f\x7c\x5f\x1a\x52\x9c\x98\x99\x06\xa5\xf5\xf1\x97\x2c\x1a\x52\x3a\x92\x3c\x4b\xb3\x16\x07\x6f\x97\xa2\x0a\xc9\xc3\x5d\x97\x41\x94\xd7\x85\x94\xa6\xc4\xd7\x05\x24\x25\x7a\xca\x33\xa4\xdf\x7c\x7a\x31\xa4\x80\x63\x74\x9d\xab\xfc\xb9\xe3\x79\x95\x00\xa2\x2f\x4e\xa8\xcf\xc4\x0e\x14\x52\x9b\x88\x29\x6b\xfe\xeb\x6a\x7b\x3c\x4d\x57\x5a\x2e\xbe\x4b\x8e\x02\x15\xee\x0c\x02\x2c\x12\x9d\x4f\x53\x3d\x35\x68\xe6\x52\x7c\xba\xb7\x65\x79\x92\xba\xbc\x61\xb6\xb5\x4c\xc4\x36\xd4\xf2\x7d\x2d\xd4\x7f\x79\x49\x4a\x26\x66\xe0\x46\xe7\x09\x4c\xa7\x3d\x7d\xc2\xf3\x47\x37\xe8\xda\xf7\x8e\x27\x8c\x5c\x7d\xca\xd5\x27\x25\xbd\x11\x6a\x3f\x9c\xbf\x14\xd7\xdb\x47\x5d\x0d\xd0\x47\xcf\x05\x72\x01\x18\x4e\x47\xc3\xb8\x5f\x48\x59\x2a\x80\xf2\x82\x21\x72\x46\x1f\x00\x5a\x6b\x7a\x0a\x11\x53\x44\x4c\x11\x30\xcd\x0a\x1c\x9e\x3b\xe9\x3d\xf6\x8e\xa3\xec\x99\xac\x50\xe7\x4b\xfb\x5a\x83\xa8\xdb\x0d\xd3\x22\x85\xe5\x5d\xaf\x1c\xa4\xd0\xdf\x86\xc8\xd8\xbd\x5d\x4b\xae\xf5\xe1\x2c\xc2\x53\xe2\x84\xb2\x77\x05\x6a\x2c\x3c\x6a\xf6\xe5\x2c\x12\x33\xbd\xb5\x3e\x7f\xf5\xfa\xe6\xf4\xd5\xfd\x95\xfc\xb6\x69\x40\x8b\xdd\x88\x3b\xb5\x37\xe3\xda\xcd\xb8\xd0\xdc\x8c\x5b\xbb\xa2\x28\xe0\x97\x7f\xf9\x97\xd5\x97\xbe\xf4\x25\xde\x08\x7d\x0a\xd6\x35\xbb\x96\x94\x95\x6b\xe6\xe5\xe3\x25\xcd\x8c\x43\x8d\x9a\x5b\x00\x42\x79\x71\x75\x4c\x5f\x27\x74\xc9\xe3\x02\xde\xbe\x4e\x4c\xc1\x19\xa7\xed\x3a\x43\x89\x19\xc4\xb9\xf3\x81\x0e\x9f\x6c\x3e\x7e\xb1\x83\x8b\x54\xde\x1c\xac\x86\x66\x63\x12\xd8\x74\xa5\x27\x0d\xe2\xa1\x01\x58\xf2\x77\x29\x62\x5f\x9c\x28\x65\xec\xe0\x11\x0b\x72\x7c\xfc\x43\x3a\x3a\x14\xb7\x4b\x1f\x91\xca\xd4\x07\xa0\x38\x4f\x1f\x2f\xdf\xd8\xb2\xf4\x61\x45\xc9\x19\x63\xc0\x20\xe8\x79\x6a\xe6\xc7\xfd\x62\x7f\x5e\x7e\x70\x56\x04\x15\x58\x05\xb4\xb6\x0f\xd0\x30\x1b\xcf\xb4\x41\x8b\x74\x92\xc3\x98\xe6\x43\x8d\x74\xe9\x88\x92\x1a\x43\x6c\xf0\xd8\x8e\xdb\xca\x34\x9a\x7c\x96\x14\xc7\x27\x59\x31\x16\x33\x09\xcb\x00\xa6\x72\x31\xfa\xc5\x35\x71\x08\xb5\x39\xd7\xc4\xcf\x86\x49\xba\x4a\xea\xef\x21\xbd\xa5\x00\xe8\xae\xea\xe5\x84\x78\x02\x2e\x81\xe9\x7b\x68\xf6\x45\x69\x62\x85\x95\x06\x07\x69\xc3\x91\x82\xea\xf8\x33\x02\x0c\xce\x4e\x7a\x9b\x8f\x1c\x66\x3f\xb1\x3e\x4b\x9e\x54\xd5\xe7\xca\xc5\x4d\x50\x66\xd9\x5f\x02\x2b\xd4\x71\x24\x6e\x81\xc5\xb2\x99\xb1\xa4\xe0\xf4\xcd\xc7\x17\xdb\xf1\x96\xf8\x42\xdb\x88\xc9\x25\xda\x1d\xe6\x6f\xbc\xb6\x35\xf9\xee\xdd\xd1\xe2\xad\xea\x8b\xcf\x63\x28\x6f\xc8\xad\xbf\x45\x04\xd5\x75\xfe\xd5\x09\x22\xfe\xa5\x67\x2d\x2c\x0f\x01\xc8\xca\xc5\xa5\x8c\x62\xfd\x5d\xbc\xbb\xf2\x8d\x7d\x76\xf1\xeb\xca\x27\x26\x1f\xf7\x33\xcb\xed\x22\xd7\xfd\xca\x13\xc3\x53\x7a\xee\xc2\xcf\x57\xde\x5d\xd2\xa4\xcf\x5d\x74\x0b\x57\x86\x92\x8b\xa1\x75\xe9\xc0\x90\xa2\xe5\xb3\xc8\x58\x99\x5c\x32\x72\x79\x7c\xb4\xae\x81\xc0\xe5\xdf\x15\xb8\x75\x71\x31\x03\x92\x2b\x8f\x54\x6e\x89\xfe\x34\xe5\xd9\x72\x1a\x8d\x3e\xee\x17\x7b\xf3\xd4\xec\xaf\x2c\x60\x1b\x8d\xb0\xa4\x03\x50\x7b\x18\x20\x3b\x07\x18\xf0\x30\x35\x22\x41\xe1\x0b\xcf\xd5\x7c\x98\xcd\x60\xa9\x7e\x47\xa8\x40\x11\x1d\x18\x80\x8c\x0d\xf5\xd2\x52\x99\xb0\x46\x98\x8f\x33\xbd\xbb\xbf\x92\x1f\xb2\x03\x2a\x65\xbc\xe6\xd6\x60\xc9\xb9\xca\x96\x87\xf3\xe7\xfb\xa5\x75\xa5\x7d\x2a\xbd\x1b\x42\x60\xa1\x44\x68\x78\x0c\xf8\x08\xa1\x36\xca\x9b\x77\xfc\xa5\x46\x4c\xf6\xb7\xd0\xeb\xfd\xb3\x5e\x81\x83\xed\xa3\xec\xf2\xf9\xc3\xec\x83\xbd\x5c\x9d\x07\x80\x6a\x43\x94\xb0\x15\x0a\xa1\xde\xe3\x02\xb0\x6c\xf2\x5b\x76\x46\x30\x1f\xda\xe3\x71\x12\x6e\x97\x41\x50\x93\x06\xdf\xf7\x12\x30\x21\x56\xee\x70\x90\xef\xfc\x60\x6b\xfc\xad\xb7\xce\xcc\x5e\x9f\xa6\xda\x1e\x7d\x3e\xae\xf6\xb3\x4c\xab\xfd\x2c\xd6\xda\xa2\x81\x6c\xc6\xad\x4e\x10\xd5\x68\xfc\x17\x7e\xe1\x17\xa4\x59\xb2\x04\x18\xb5\x10\x26\xbd\xfb\x9e\x41\x78\x96\xf8\x71\xde\xdc\xf9\x78\xfb\xd2\x92\xe4\xe6\x61\x3e\x39\x5d\x74\xae\x7c\xfb\x78\xc7\xca\xe3\x7b\x8e\xe1\xed\xe2\x47\xdd\xfd\xc4\x09\x95\xdd\x7f\x85\x8b\x1d\xe4\xef\x87\xb6\x0b\x7d\xac\x82\x8e\xe1\x13\x4b\xdb\xf5\x99\xeb\xd9\x07\xc9\xdb\xc5\xc3\xe5\xaf\x1c\xfe\x2e\xb7\x54\x3e\x74\x8f\x0b\xfd\x5c\x09\x90\x31\xc4\x4e\xdc\x34\x42\x7e\x38\x28\x8e\x27\x69\xb1\x0b\xe0\x00\x2d\xc4\xf1\x65\x7d\x6a\x9c\x2f\xad\x26\xcb\x9b\x77\x4b\x39\x04\xcf\xca\xb5\x74\xbd\x30\x48\xe0\xd2\xf8\x81\x60\x10\xf4\x2c\xd5\x87\x07\x2b\xf9\xce\xde\x70\x71\x48\x40\x8b\x06\xa8\x41\x4b\xab\x1c\x88\xd5\xc5\x07\x58\x28\x8d\xf4\x7c\xbf\xb4\x31\x2e\x5a\x67\x50\xa5\x73\x3f\x09\x4b\x8a\x8b\x86\xf9\x78\xf3\x99\x8d\xd3\x71\x53\x60\x55\x29\x76\xb9\x28\x03\x80\xcc\x18\x93\x6e\x9d\xf4\xb6\x2e\x1c\x66\xef\x5b\x9d\x27\x8f\xa3\xbd\xda\x9f\x9c\xa9\xf7\x39\xde\x40\x97\xf7\xcf\x2e\x83\x11\xda\xb0\x00\xe4\x76\xea\x68\xbb\xad\xe3\x77\xa1\x65\x29\x63\x4a\xd4\x3d\x4b\xf4\xf8\x47\x1b\xd3\xef\xdc\xd8\x9c\xbe\x36\xc9\x8a\x7d\x20\xcb\x43\xec\x04\xd1\x1c\x00\xec\x7d\x2d\x4b\x40\x13\x11\xe1\x67\x7e\xe6\x67\xd4\xdf\xff\xfd\xdf\xf3\x19\x0c\x6f\xe0\xbc\x7e\x97\x14\x02\xc4\xd7\xb3\x7d\xf6\xb5\x3b\x27\x58\x65\xbf\xae\x74\x5c\xb3\x3b\x17\x0d\x97\x5d\x1a\x80\x25\xa0\xce\xc3\x24\x59\x7c\xbc\x29\x1d\xc0\x72\x19\xf9\x1c\x8f\xe3\x1b\x60\x5d\x75\xeb\x1b\x2c\x7c\xb3\xe1\x18\x19\xbb\x0c\x60\xa1\x7a\x0d\xd5\x8d\xcf\x75\x01\x50\xff\x55\xc0\x2b\x04\xc6\xbb\xc6\x3b\x2d\x6f\x5a\xc7\x5d\xf3\x1b\xa2\x8f\xa9\x33\x57\x5b\x72\x81\x70\x6f\x9f\xa0\xf7\xb8\x38\xf8\x6a\xa8\x26\x6e\x85\x32\xfa\x70\xb0\x38\x3c\x58\xc9\x6f\xe6\xca\x4c\xad\x86\xe6\x7a\x9a\x6f\x9c\x95\x5c\xbd\x75\xd2\x2c\x8f\x30\x16\x94\x48\xf1\xb9\x8e\xe7\x7b\x67\x5a\xab\x3c\x76\x73\x8b\x32\xf3\x71\x56\xec\xef\xaf\xe4\xb7\x72\xb5\xb4\xec\xdf\xd2\x43\x7c\x63\x32\x3c\xf8\x3a\xee\x1a\x2f\x46\xc7\x46\xc5\x93\x06\x9b\xd0\x2c\xab\xab\x40\xb1\x96\x18\xef\xcc\xe6\x77\x7e\xe7\x77\xea\x4b\x75\x00\x5a\xdf\x65\xa8\xaf\x3c\x06\x80\xac\xa7\xd5\x70\xfb\x28\xbb\xbc\x75\xdc\x7b\xaa\x57\xa8\x2d\xa8\x2c\x21\x16\x60\x88\xa8\x18\xa0\xe5\xdb\xb2\xcc\x58\x60\x61\x2a\x73\x5e\xb0\x05\xdb\xb5\xd1\x36\x61\x6b\x2f\x8d\xd0\x38\x6b\xd9\xa4\x5d\xe1\x84\x89\x41\xd0\x77\x57\x17\xd7\x7f\xb8\x35\xfd\xde\xe1\x20\xbf\x53\x20\x1c\x03\x82\x3d\xf2\x6c\x97\x88\xf8\xd7\x9e\xeb\xdb\x71\x2d\x22\x47\x44\xf8\xcf\xff\xfc\x4f\xf8\xc7\x7f\xfc\xc7\x98\x01\x32\x66\xf6\x27\x0d\xa4\x52\x3c\xa9\x91\xfa\xf8\xbb\xe8\x42\x03\xb1\xc4\x87\xd3\xb9\x00\x43\xec\x6c\xd7\x07\xba\x24\x1a\x9f\xdc\xbe\x4e\xeb\x02\x94\x31\x1d\xbd\x0b\xb8\x88\x49\x47\x8a\xe3\x03\xae\xa7\x1d\xa4\x5d\xb4\x21\xf0\xc3\x5d\xa8\x0e\x1f\x84\x32\x8f\xc9\x63\xcc\x20\x7d\x5a\x39\xee\x37\x0f\xbe\xf7\xd3\x02\xc5\x98\x49\x86\xcb\x79\xc7\x02\x17\xff\xbf\xfe\xeb\xbf\xae\x03\x5b\x1f\xc0\x65\x17\x6c\x22\xa2\x36\x00\xf3\x71\xa6\xc7\xb7\xd6\xe6\xd7\xa7\x3d\x7d\xd7\xd4\x69\xb4\x01\x0c\xb5\xa3\xcb\xea\xbf\xa2\xaf\x14\x78\x79\xdf\x56\x23\x83\x34\xde\xb4\xc0\x10\xdb\xc4\x8b\x04\xe4\xb4\x56\x7b\xb0\xde\xd7\x38\xde\x5f\xc9\x6f\xde\x19\xcd\x6f\x03\xd6\xa7\x42\xad\x25\xbd\xb5\x44\x44\xbe\x39\x27\xb9\x50\x1d\xbb\x26\x5c\x0f\xb2\xdd\x75\x8d\xa7\xa8\x07\x07\x28\x2e\xe5\x15\xe3\xba\x34\x38\x1a\x1e\x54\x06\xab\xab\xab\x00\x20\x6e\x36\x52\x40\xae\xf8\x7f\xe8\xb8\xb7\x75\xfe\x28\x7b\xdf\xea\x3c\xb9\xa4\x0c\x54\xf7\xb6\xb4\x97\x71\x44\x54\x0c\xe4\xd6\x42\xc1\x32\x83\x14\xf9\x2c\xc5\x15\x18\xb3\x35\x46\x03\x00\xc8\x3e\x34\x44\xd7\x4d\x9b\xc6\x8a\x4e\x6c\x64\xa0\x3c\x45\x74\x63\x73\xf2\xdd\x5b\x6b\xb3\xb7\x16\x89\x39\x36\xd0\x1c\x7d\x66\x97\xcc\xd5\x47\x9e\x01\x96\x06\x3f\x78\xe5\x95\x57\xe0\xab\x5f\xfd\xaa\x1d\x70\x7c\x83\x0e\x6f\x23\xd4\xd2\xe0\xa2\x07\x0f\x0d\xb0\xf0\x50\x1c\x57\xa7\x92\x9e\xb9\x6c\x2e\x85\x4c\xf3\x2d\xa5\xe7\xea\xbc\xb1\xf2\xb8\xd2\x77\xc5\x91\xde\x5d\xf2\xb8\xd2\xf7\xf1\x0e\xc9\x22\xa5\xe3\x73\x12\x9d\xab\x5d\xdc\x2f\xb8\x8a\x75\x21\x30\xd0\x55\xe1\x9e\xc6\xfa\x15\xeb\xdf\x25\x1d\x57\xbb\x88\x91\x2f\x04\xf8\x62\xac\x75\xa7\x4d\xa7\xcb\x64\x87\xf3\xe8\xe2\x6a\x1e\xf7\xee\xdd\xab\x3d\xc9\x00\xae\x2b\xcb\x3c\xd5\x83\xb9\x01\x93\xe7\xca\xcc\x6f\x9e\x99\xbd\xb5\xb7\x92\xbf\x51\x28\x33\x37\x60\x6a\x1d\xdd\x4c\x52\xb1\x35\xe9\x5d\x1a\x19\x28\x3d\x94\x3a\xbe\xf5\x21\x5d\xc1\x35\x96\x16\xd3\x58\x63\x6a\xb0\xe3\x5e\x17\xd0\x68\xf2\x71\x4f\xef\xdf\x5b\x5d\xbc\xb9\xbb\x92\x1f\x02\xb9\x48\x14\xaa\xc9\x29\x40\xfb\x8a\x0b\xb6\xff\xa5\xcb\xa4\x27\x76\x92\xd7\xc5\x9d\xa6\x9f\x73\x1d\xac\xa9\x67\xec\x60\xd4\x25\x91\x2e\x33\xa0\x28\xbf\x6a\x59\x88\xca\x44\x41\x4b\x96\x68\x18\x3c\x7c\xd8\xbf\xbc\x75\xd2\x7b\x2a\x2b\xad\x2d\xaa\xb5\x3e\x48\x79\xd1\x5f\x8a\xce\x6b\xfa\x6e\x4b\x3e\x34\x50\x42\xe6\x74\xb3\x96\xe4\xc4\xfd\x2f\x2d\x59\x0c\x2c\x12\x33\xbe\xbd\xb6\xb8\x76\xfd\xec\xf4\xb5\x69\x4f\xef\x6b\xa8\xef\x69\xa9\x97\x87\xec\x97\x9e\xe9\x7d\x2d\xf6\x56\x5c\xcb\xef\xea\xd5\xab\x7a\x7f\x7f\xdf\xbe\xd2\xfa\x72\x59\xcb\x5c\x20\x56\x02\xbe\x92\x0b\xf1\x76\xc5\xf1\xbd\xbb\x9c\xab\x2d\x4b\x1d\xc0\x95\x77\x4a\x03\x8c\x26\xa6\x7d\xc7\x00\x24\xce\x5f\x4a\x2f\x24\x8f\xf4\xcb\x5d\x2c\x08\xf1\xc9\x15\x53\x3e\xf7\x9b\xae\x0f\x3c\xbb\xc0\xa3\xab\xbc\x42\xfa\x44\x7a\xb6\xe9\x84\xca\xd3\x15\xd7\xe5\x42\xb2\x86\xe2\xd1\xb8\xb1\xc0\x41\x4a\x33\xe4\x62\x69\x25\xde\xa7\xe9\x13\xb1\xe9\x47\xe7\x81\x7e\xab\x48\x90\x4f\x43\x09\x62\x6a\x0b\xb4\x01\x98\xef\x0d\xf3\xfd\xdb\x6b\xf3\x6b\xd3\x54\xef\x1b\x00\xcd\xf7\x00\x78\xf5\x3d\x21\xf5\x6d\x64\xe4\x80\x87\x4f\xa1\xeb\xf8\x66\x79\x22\x4b\xe3\x2c\x12\x33\xde\x1b\x2e\xde\xbc\x3d\x9a\xff\x68\x91\x98\x31\xb0\x8b\x44\x41\xb0\xba\x00\x88\xf7\x73\x71\x17\x53\xc6\x5d\xf4\xcb\x83\x00\xec\x96\x37\xa7\x53\x3c\xd1\x58\xe5\xe0\x9b\x59\x8a\x89\x38\x04\xe2\xfc\x78\xd8\x92\xb3\xa0\x85\x5c\xba\x43\x37\xe5\xa6\xe7\x4e\x7a\x5b\xdb\xc7\xbd\xf7\xad\xce\x92\x4b\xca\xc0\xa0\xb5\x76\x08\x76\x09\xc7\xee\xd6\xae\x78\x36\x7c\x01\x98\x69\x8f\xc7\x6f\xfc\x1a\x73\xa2\x5d\xde\x31\xa6\x41\xcf\x76\x97\x38\x37\x05\x02\x18\xc0\x0a\x9a\x53\x64\xdd\x5e\x47\x35\x2d\x8f\x32\x6d\x03\x05\x42\x7e\x38\xc8\x77\xae\x6f\x4e\xbe\xbb\xbb\x9a\xdf\x36\xcd\xe9\x21\x7b\xe4\xb9\x3e\x41\x04\xd5\xbe\x16\xfa\xf1\x44\xb6\x59\x0d\x5e\x79\xe5\x15\x69\xd0\x94\x1a\x93\xa4\x70\x39\xa0\x91\x00\x8e\x0b\x24\x48\x20\x28\x14\xdf\xc7\xe3\x34\xfc\x78\x1b\x0b\xf1\x93\xfc\x7d\x71\x5c\x74\x5c\x36\x17\x8d\x0f\x34\x4a\x65\x1f\xaa\x07\xd7\xe4\x24\x26\xdf\x3e\x19\x7c\x4e\x1a\xcc\x7c\x03\x36\x97\xcf\x37\xe0\x4b\xbc\x63\x01\xb0\x4b\x26\x9e\x7e\x17\x7e\x2e\xc0\xc3\xc1\x90\xc4\xdb\x55\x3e\xb4\x5e\x7c\x3a\x57\x92\xb5\x0b\x60\x91\x9c\x2b\x1d\x1f\xb8\xb4\xe9\x86\x00\x5f\x0c\xf8\x8f\x91\x65\x89\x87\xbd\xe7\x8b\x0c\xd4\x1a\x00\xa4\xcd\xa9\x39\x00\xcc\x01\x21\x5f\x24\x66\xfc\xd6\x99\xd9\xf5\xfd\x95\xfc\xcd\x3c\x31\xd3\xe5\x0f\xea\xd2\x25\xa7\x65\xe1\x9a\x13\x45\x2d\x5f\xf2\x68\x6a\x1d\x4e\xb7\x05\xd0\x05\xa9\xd6\x56\x80\xfa\xb1\x9d\xae\x46\x93\x1f\xf7\xf3\x9d\x5b\x6b\xf3\x6b\x77\x47\x8b\x5b\x06\xda\x13\x54\x9b\x37\x7b\x3f\x97\xcd\xf7\x29\x96\x8a\xf8\xbb\x0b\x17\xf0\x70\x5f\x9b\xf1\xa5\xef\xc3\x14\x2e\x3d\x1c\xdd\x40\x35\xf1\x73\x29\x5e\x97\x90\x5d\x10\x59\x2b\xdd\xc7\x1f\x7f\x5c\xfd\xfa\xaf\xff\xba\x62\x57\x39\xd7\xb3\x7c\x63\x4c\x6a\x2f\x9c\x03\x03\xd9\x85\xc3\xfe\xa5\x73\x27\xbd\x27\xb3\x42\x6d\x02\xa0\xb2\xbb\x4a\x4a\xc4\xdb\xac\x45\xb6\xef\x72\x61\x8b\x8c\xd0\x80\x13\x7b\xae\x9e\xef\x8d\x31\x04\x29\x97\xcb\x3d\xcd\x25\x3f\x48\x78\xb5\x90\x78\xe5\x69\x08\x5c\xe1\x00\x09\x5b\x11\x9b\x47\x03\xa0\x27\xbd\xe2\xf0\xe6\x99\xf9\xab\x6f\x9c\x9d\xfe\x70\xa1\xf4\xb1\x01\x63\x3f\x9e\x38\xa5\x1f\x4f\xac\xfe\xf8\x32\x11\xd8\x93\x44\xd7\xae\x5d\xa3\xe5\x68\x9d\x4f\x19\xd1\x5f\xa9\x11\x4b\xd6\x14\x88\xf0\x77\x35\xd6\x50\x7c\x17\x9d\xab\x23\x48\x74\x5d\x3b\x9b\x0b\x60\x4b\x65\x14\x9a\x7d\xc7\x28\x6b\xd7\x20\x1e\x5b\x26\x52\xba\x96\x6f\x0c\x3f\x5f\xbe\xba\xe4\x95\xa6\x69\x9f\x7d\x83\x9c\x0f\x1c\x49\x20\xc0\xd7\x6e\x69\x1c\xee\x7c\x83\xa8\xab\xec\x43\x69\xfa\xd2\xf1\x01\x09\x5e\x26\x2e\x1a\x29\x3c\x16\x94\xb9\x5c\x08\x64\xf8\x9e\x5d\xf5\x10\xaa\x93\xd3\x02\x60\x17\x7d\xed\xc7\x2c\x2e\x34\x9c\x7e\x93\xcd\x0e\xf4\xb5\xbe\xdc\x59\x9b\xbf\xfd\xd6\xc6\xec\x7b\xc7\xfd\x62\xa7\x40\xc8\x6d\xc4\x52\xf7\xd3\x3d\x23\x24\xa0\xfa\xad\x75\xb6\xb4\x67\xa0\xda\x0b\x80\x15\x1f\x1a\xbf\xd4\xeb\x64\x70\x30\xad\x98\x60\x0c\xe5\x61\x60\x96\xea\xc3\x9d\xd1\xe2\xfa\xcd\xf5\xd9\xeb\xe3\x9e\x3e\x46\xc4\xb9\x31\xc6\x5e\x2c\x6a\xc1\x98\xcd\x6b\x25\x6f\xf9\xfb\xdb\xbf\xfd\xdb\x92\xae\xe5\x65\x04\x84\x26\xb6\x2d\xc7\xf0\x8b\xa1\xe5\xbc\x7d\xe0\x56\x75\x4d\x38\xd4\xc8\x7c\x8a\xc5\xa5\xf8\x5d\x33\x41\x00\x00\xb8\x76\xed\x9a\xfe\xe2\x17\xbf\xa8\xd9\xf2\x10\x20\xa2\x3d\x02\xad\xa0\xb2\xb6\x8c\x66\xc9\xfa\xf6\x51\xf6\x13\xab\xf3\xe4\x62\x63\x6d\x69\x1a\x86\x61\xfb\x5c\xda\x36\x93\xb6\xb3\x7b\x5e\xec\xb7\x81\xe4\xcd\xbc\xcb\xcf\x75\x7b\x36\xcb\x7e\xdc\x21\x22\x60\x04\x5d\xb5\x44\x34\xdd\x5d\x5d\xbc\x79\x63\x73\xfa\xea\xc1\x4a\xb1\x0b\xa5\x95\xc5\xde\xd3\x52\x2f\x13\x41\xb3\x49\xab\x05\x5a\x6c\x7a\x2f\xbc\xf0\x82\xfe\xc6\x37\xbe\xc1\x93\x08\x81\x00\x9f\xb2\xec\x82\xc6\x5d\xca\xd7\x55\xff\x9c\x3e\x34\x9b\x0b\x29\x7d\x9f\x4c\x31\x00\xc6\xa6\xef\x03\x07\x31\xc0\x8e\x87\xb9\xde\x5d\x32\x48\xfe\x21\xde\xbe\x01\x5f\x2a\x0f\xfe\xee\x02\x11\xb4\x4c\x62\x00\x0d\x4f\x23\x04\x12\xa8\x8b\x55\x9c\x54\xa6\xae\x83\xa8\x6f\x52\x26\x39\x1f\x08\x73\xa5\xe9\x93\xc3\x07\x22\x25\x3e\x5d\x2c\x2b\x5d\x00\x5f\x8c\x8b\x19\x0f\x24\x40\x16\x02\xd7\xa7\xf6\x4f\xd3\x74\xc9\x8f\x1c\x0f\xa6\x7f\x76\x19\x7d\x6e\x8c\x99\x8f\x33\x7d\xf8\xfa\xe6\xf4\xfb\x6f\xaf\xcf\x5f\x9d\xf4\x8a\x7d\x03\xa5\xc5\x42\xda\x6b\x62\x68\x00\x42\x73\x69\x9c\x6b\x63\x8a\xe4\xc8\x04\xd9\xf0\xd9\x2b\x34\x7b\x1f\x0d\x40\x75\xcb\xaf\x99\xde\x5b\x5d\xbc\xf9\xa3\x8d\xe9\x6b\xf7\x56\x17\x3b\x95\xb5\xc5\xee\x6f\xa9\xb7\x03\x90\xfc\xd5\x7b\x7a\x10\x11\xfe\xf4\x4f\xff\xd4\x07\xa0\xef\xa7\x4d\x49\xf1\x24\xdd\x23\xf1\xf5\xb5\x09\x9f\x8e\x68\x59\x5c\x24\xa5\x25\x31\x74\xcd\xc8\x78\xa2\x3c\x21\xdf\xc0\xc2\x05\x55\x00\xe5\x17\xa0\x01\xc4\x23\x6e\xca\x18\x93\xd6\xb7\xe4\x96\xa7\x8a\xb2\x8b\x07\xfd\x8b\x9b\xe3\xf4\xa9\x5e\x81\x5b\x60\x9a\xcf\x01\x58\x4b\x5e\x8d\x7a\x09\x23\xfa\x4e\xd1\xb5\x05\x2b\x7c\xbf\x8b\xbc\x4e\x09\xd5\x31\x65\xd2\x9e\x6d\xa3\x33\xa6\xc5\x1f\x80\xf1\x40\x96\x06\xdb\x6b\x63\x00\xa0\x40\xc8\x8f\xfa\xf9\xdd\x37\x37\x66\xaf\xde\x5c\x9f\xfe\x08\xd8\x12\x11\xd9\x90\x6b\xd7\x6e\x5b\x4b\x44\xd0\xcc\x36\x00\xa0\xfc\x18\x59\xf5\x48\x7f\x25\x05\xee\x9a\x89\x4a\x0d\x50\x52\xf4\x3e\xe5\xef\x7a\x77\xf1\xf2\xd1\x49\x83\xad\x0b\xec\xf8\x66\x92\x3e\xb9\x5d\xe9\xd2\x32\x71\xc5\x97\xe2\xf0\x67\xd7\xbb\xcb\x9f\xa7\x19\xe2\x4d\xf9\x85\x06\x30\x1e\x9f\x0f\x3e\x3c\xcc\x95\x47\x29\x3d\x57\x5a\xdc\xf9\x80\x64\x68\x20\x93\xca\x86\x86\x87\x40\x86\xc4\xcf\x25\x1b\xf5\xf3\xe9\x4f\x09\xa0\xf9\xca\xc7\x05\xba\xa8\xf3\xd5\x5d\x17\x7f\xc9\x85\x00\x94\xf4\x4e\xfd\xa5\x3a\xe8\x02\xca\x63\x64\x5a\x2a\xbf\x3c\xcf\x5b\x3c\xe8\x27\x4d\x00\x5a\x27\x70\xac\xae\x9c\xdb\x65\xf6\x9d\xb5\xf9\xad\x6b\x9b\x93\xef\xde\x1d\x2d\xae\xcf\x52\x3d\x66\xb6\xf8\x8a\xdf\xf2\xd8\x40\xac\xe2\x84\xb0\x09\x5b\x5a\x0e\x62\x64\xc8\x00\x0b\x1f\x67\x0a\x34\xf9\xe1\xa0\xb8\x75\xe3\xec\xf4\xbb\x6f\x9d\x99\xfd\x70\xd6\x33\xc7\x40\xb6\x05\xd8\x1b\xd1\xed\x12\x51\x35\x86\xd4\x56\x17\xc7\xf7\xe7\xa8\x8b\x01\xe6\xf4\x39\x34\x91\x0a\xa5\x17\x9a\xa8\x84\xfa\xa6\x02\x08\xdf\x9c\xeb\x1b\x38\x7c\x8e\x2b\x36\xfe\xec\xe2\x51\xfb\xdd\xbe\x7d\xbb\x7e\xb6\x77\xb5\xd8\x5f\xf2\x95\xcf\x14\x00\xb2\xb4\xc0\xc1\x23\x07\xfd\x9f\x18\xcd\xd2\x4b\x89\xc6\xa1\x05\x01\xf6\xf2\x1d\x7a\xfd\x71\x7b\x49\xc7\x80\x31\xe5\xb6\x5d\x7b\x9a\xa7\xb5\x6c\x63\x0c\x18\x6b\xea\xab\x02\xeb\x9b\x10\x89\xd0\xf4\x08\x5b\xc9\xd5\x2e\x13\xd9\xa3\xd8\x58\xa3\x6b\x74\xf0\x28\xc9\x6b\xa9\x00\x01\x41\x83\x81\x59\xaa\x8f\x77\xd6\x16\xd7\x6f\x9c\x9d\xbd\x3a\xed\x95\x1f\x50\x24\x7b\x5a\xe8\x86\x5c\x7b\x3b\x6e\xfd\xc5\x67\x5b\x9e\x8e\xcd\x59\xb6\x3e\x7c\x56\x15\xd7\xc0\xef\xab\x57\x89\x6f\x48\x11\x87\x64\xf1\xc9\x4f\x9f\x7d\x9d\xa6\xab\x4c\xae\x34\xb8\xf3\xc9\xfb\xa0\xd2\xa0\xe5\x23\xa5\xe9\xe3\xe5\x8b\x13\xb2\x4a\xb8\xca\x34\xb6\x8e\xb8\x93\xda\x89\x14\xdf\x05\xd4\x78\x98\xc4\xab\xab\x1c\x31\xb4\x9c\x7f\x08\xac\x72\x99\xba\xe4\x55\x4a\xf3\xb4\xce\xd7\x4e\x68\xf8\xfd\x00\x25\x1e\xdf\x55\xc7\xae\xbe\xe3\xd2\x1f\xb1\xe9\x3b\xe3\x12\xfd\x6f\xeb\x2a\xaf\x26\xba\x76\xa9\x68\x0a\xe5\xc1\x8e\xb9\x41\x98\xbe\x79\x76\x7a\x63\x34\x4b\x36\xfb\xb9\x1a\x6d\x9d\xf4\x2e\xf5\x0a\x18\xd8\x4d\x06\xe5\x5e\xc8\x8a\xaf\x4d\x80\x20\x8f\xd6\xde\x48\xb6\x3d\x80\xc6\x31\x84\x96\x8e\x53\x2d\xbe\x55\xb8\x06\xa3\x4f\xfa\xc5\xdd\x37\x36\xa6\xdf\xbd\xb1\x39\x7d\xf5\x70\x50\xec\x92\xcf\xb8\x58\xfd\x4f\x27\xad\x75\x9b\x74\xdc\x9e\xdb\x55\x1f\x75\xad\x07\xd7\xc4\xd6\xa5\xdf\x63\x75\xe7\x52\x9a\x92\x52\x3b\x0d\xda\x8e\x51\x66\x54\x89\x86\x7e\x01\xa0\xbc\x70\xae\x55\xb1\xcd\x12\x51\x7d\x4b\x2e\x00\x64\x0f\x1f\x64\xdb\xe7\x4e\x7a\x4f\xf7\x73\xdc\x42\xc0\x14\x90\x6c\xb8\x65\x08\xa3\x8d\x7c\xab\x75\x47\xa1\xf1\x59\x7a\x24\xe8\xb9\x36\xe1\xb5\x96\x78\x4c\x1d\xb7\x8e\x46\x08\x10\xb0\xd9\x94\xd5\xde\xcc\xd2\x72\x34\x5d\x7b\x02\xaa\x50\x66\xbe\xbf\x92\xdf\xfa\xd1\xc6\xec\xd5\x3b\xa3\xf9\x6d\x28\xad\x2d\x53\x20\xdf\x22\x02\x62\x65\xa9\xd0\x77\xcb\xc2\x22\x6c\xce\xf2\x21\x5a\xd7\xe0\x2e\xcd\x20\x25\x5e\x5c\x99\x4b\x00\xc8\xd7\x76\x2c\x9d\x6f\x26\xa6\xc0\xdd\xc0\x39\x7f\x17\xf0\xf6\xb6\x3b\x70\x77\x42\x97\xa3\x32\xbb\x06\xb1\x18\x1e\x31\xe0\x82\xe7\xd5\xc7\x5b\x02\x74\x5d\x14\x17\xf5\xa3\xf1\x79\xbd\x4a\x75\xee\xe3\x1f\x1a\x9c\x5c\xf5\xc2\xe5\xf1\xa5\x1b\x2a\x17\xae\xe7\x42\x65\xe9\x8a\xe7\x93\x2d\xd4\x56\x39\x0f\x5f\xdb\xa5\x7e\x54\x0e\x2e\xbb\x4f\x26\x17\xaf\xd3\xb8\x50\x9b\x0a\xe5\xcb\xa5\x4b\x5c\xef\x3e\x9e\x4b\x72\xd8\xc9\x9a\xd5\x85\x64\x29\x85\x2e\x13\xe5\x50\x01\x00\x00\x18\x4f\x13\x7d\xf8\xfa\xb9\xc9\x7f\x5e\x3b\x37\xf9\xf7\xdd\xe1\xe2\x8d\x45\xb5\x59\xd7\x2a\xe7\xa5\x2d\x00\xd8\x80\x8f\x7a\xbf\x0b\x9f\xc1\x42\xfb\xbd\x05\x4e\x0c\x3d\x18\xd2\xf8\xd9\xbd\x97\xe3\xac\xd8\xbf\x71\x76\xfa\x9d\x57\xb7\xc7\xdf\xda\x1d\x2e\xde\x86\xf2\xbe\xae\xb1\x5d\xe2\x02\x62\x3d\x62\x4b\x45\xf5\x9d\x5d\x9e\xb2\xa2\x4e\xd2\x5f\x31\xba\x85\xd7\x07\x07\x1a\xa1\xfe\x6b\x5d\x8c\x2e\x68\xf9\x27\x42\x04\x53\x11\x53\x8b\x98\x6b\xdb\xb4\x2b\x3c\x04\x64\x5c\xf1\x5b\x7c\xae\x5c\xb9\x82\xe4\x23\x8a\x58\x2d\x11\x29\x63\x4c\x0f\x11\x33\x00\x58\x01\x80\x95\x0f\xbe\xb5\x76\xe5\xe1\xc3\xec\x67\xfb\xb9\xda\x56\x80\x09\xb5\xd4\xf1\xef\x00\x59\x7f\x8e\x7c\x69\xe2\x02\x60\x6e\x85\x51\x20\x8b\xe4\xae\x68\x6a\x69\x69\xb1\x60\x40\x45\x5a\x0e\x45\xd3\x0e\x30\x00\x30\xce\x8a\xbd\x37\x36\xa7\xdf\x79\xed\xa1\xf1\x77\xa6\x3d\xb3\x07\x00\x27\xc6\x98\x23\x44\x3c\x41\xc4\x71\x65\x6d\x99\x01\xc0\xa2\xfa\x2b\x00\xa0\xb0\xc8\xfb\xea\xd5\xab\xfa\xe5\x97\x5f\xb6\xa2\xf3\x3a\xa5\x56\x4f\x45\x7e\xe9\x60\xe4\xa2\xa5\xef\xb4\xce\x68\x98\xad\x37\xca\x17\x60\xb9\xae\x51\x88\x63\x65\xe0\xb2\xd1\x34\xed\x3b\x8d\x4f\xf9\x5a\x79\xb8\xe2\xa3\x16\x59\x1b\x46\xe3\x2b\x12\xc6\xf3\xaa\x60\x99\x3f\xe7\xc5\x69\x24\x99\x68\x39\xd2\x41\x97\x96\x03\xcd\x8f\x94\x57\x9b\x37\x57\xde\x79\x1e\x78\x1e\x8d\x10\x97\x03\x55\xde\x55\x78\x7e\x24\xb9\x79\xbf\x97\xca\xc2\x57\x3e\x5c\x16\x1a\xee\x4a\xc3\xc5\xc3\xf5\xce\x65\xa0\x6d\xc2\x55\x96\x86\xfd\x51\x1a\x5e\x5f\xbe\x74\xb8\x73\xa5\x29\x85\x4b\x7c\x5d\x32\x71\x7a\xd7\xbb\x54\x1f\x21\x99\x62\x1c\xed\x13\x5d\x65\x0a\xc5\x91\xda\xe4\x92\x7b\xe9\xa5\x97\xcc\x95\x2b\x57\x2a\x95\x8c\x80\x25\x4a\x50\x00\xa0\xb0\x74\x56\x4e\x05\x00\x09\x22\xaa\x59\xcf\xe8\xc3\x41\x71\x5c\x20\xe8\xe1\x3c\x19\x0e\x72\xb5\x96\x02\x26\x25\x8f\x76\xe2\x75\x46\xd9\xfd\xff\xb5\x2e\xe7\x63\x07\x36\x71\xe9\x38\x62\x48\x98\x8d\x73\x92\xe9\xbb\xd7\x37\xa7\xdf\xfc\xce\xc3\x27\xdf\xb8\xbb\xba\x78\xab\x48\xe0\x18\x4a\xfd\x6f\x75\xff\x04\x1a\xd0\xb5\x40\xc4\x02\x4a\xfd\x5f\xb7\x07\xf2\x09\x04\xae\xc7\x79\xf9\xd2\xba\x02\x12\xee\x6b\xbb\x31\x6d\x3b\xd4\x8f\xbb\xd4\x79\xcb\x49\x4b\x45\x3e\xd0\x11\x9a\x3d\x58\x17\xb2\xbe\x44\x39\x76\x55\xb1\x5d\x22\xb2\xfb\x5a\x52\x30\x90\x6d\x9d\xf4\x36\xde\x71\x94\x5d\x19\xe4\xc9\x05\x04\x7b\xe1\x1c\x2c\xb5\x2e\x6e\xec\xa8\x7f\x09\x9d\x04\x28\x1a\xe7\xf8\x18\xa2\x5d\x03\xb2\xd6\x9b\x9a\x5f\xf9\x20\xb5\x18\x2a\x5f\xb9\x0f\x66\x19\xfc\xe4\x89\x9e\xde\x5d\x9d\x5f\xff\xd1\xc6\xec\xd5\x83\x41\x71\x17\xda\x1f\x50\xac\x77\xc4\x63\xf3\xc5\xe7\xa5\x0d\xb9\xcc\xb9\xac\x0f\xf4\xd9\x65\x9a\x8b\x9d\xb1\xbb\xe8\x7c\x6d\x26\x14\x27\x24\x53\xac\x3c\x31\x69\xf9\x9e\x63\x65\x08\xb5\xf3\x98\x38\x5d\xd2\x09\xd5\xb7\x6f\x36\xc3\xeb\x25\xa6\xfe\x63\xe4\xa4\xce\xa5\x33\xba\x5a\xb4\x42\xf9\x7d\x10\xbc\xef\xc7\x3f\x24\x47\x57\xf9\x24\x6b\xd9\xfd\xc8\xd7\xa5\x4c\x38\xd8\x3f\x4d\xbd\x76\xe5\xd1\xd5\x9f\xa7\x27\x59\x68\xb8\xb3\x56\x69\xbb\x94\xa2\xa0\x1c\x03\xc7\xd0\xdc\xbe\xae\x8e\xb3\x02\x5e\xdd\x1e\xff\xc7\xb4\xa7\xc7\x4f\xed\x0c\x8f\xcf\x1f\x66\x4f\x0e\xf2\x64\xd4\x9a\xf8\x1a\x02\x36\x2a\xa5\x5d\x8f\x1f\x7c\xa2\x6a\x00\x0c\x94\x11\xca\x71\xc0\xd4\x56\x75\xa8\xb7\x34\x94\x84\x1a\x8d\xde\x5f\x29\x6e\xbe\xfa\xd0\xf8\x1b\xdf\xdb\x3e\xf9\xce\xd1\xa0\xb8\xad\x11\x0e\x8d\x31\xc7\x88\x78\x4c\x0f\x65\x40\xb3\xb7\x51\x57\x79\x6b\x59\xdb\x4f\xe9\x4e\xdb\x77\x24\x8c\x00\x10\xd7\x0e\x62\x79\xd7\xcf\x29\x2c\x27\xe8\x03\x28\x21\x05\xed\x12\xac\x73\x61\xba\x8e\x40\x03\x59\x26\x52\x06\xb2\x77\xdd\x5b\xb9\xbc\x36\x4b\x9e\x4a\x34\x0c\x2d\x50\x40\x00\xe7\x47\xb3\x38\x54\x6f\x6d\x8e\x32\x4d\xe3\xa2\xc0\xa7\x82\x25\x35\xdd\x92\xe5\xa6\x65\x82\x69\x3f\xd0\x9d\x33\x92\x25\x87\xaf\x43\x22\x80\xfd\x72\xe9\xdd\xb7\x36\xe6\xd7\x76\xd6\xe6\x6f\x01\xc2\xb4\x3a\xfa\x3c\xae\x8e\xc1\xd5\xeb\x9b\xc4\x64\xd8\xba\xd2\x1f\xa0\xfc\x4c\xc2\x5f\xfe\xe5\x5f\xc2\x64\x32\x01\x68\xd7\xa7\x75\x92\x9f\x14\xc6\x1b\x9f\x0d\xe7\xbc\xa4\x30\xa9\x6d\xc5\xc6\xe1\xb2\xf8\x64\xa0\xe9\x48\xca\xac\x8b\xdc\xbc\x5c\x4e\xc3\xdb\x95\x8e\xd4\x91\xa5\xf2\xbf\x5f\xde\x52\x1a\x3e\x65\xcf\x15\xbf\xaf\x4d\x84\xe4\xe7\x75\x1e\x8a\x4f\xd3\x73\xe9\x0f\x29\x3c\xa4\x9b\x5c\x3c\x7d\xf1\xba\x80\xeb\x2e\xb4\x2e\x17\xe2\xe7\x6a\x9b\x31\x60\x32\x16\xf0\xc5\xf2\x73\xc9\x18\x9b\x67\x9e\x56\x4c\xf9\xc4\x0e\x76\x5e\xc0\x62\x1f\xaa\x89\x9e\x05\x2d\x73\xa8\xc6\x93\x6a\xef\x60\x39\xc6\x20\xc0\xa4\xa7\xd5\x8d\xcd\xe9\x0f\xa7\xbd\x62\xfa\xf8\x60\x65\xff\x91\xfd\xfe\x93\x67\xa6\xbd\xed\x9e\xc6\x72\x72\x4c\x27\xbb\x82\xfa\x6f\xcd\x9b\x91\x58\xfe\x4d\xa3\xf3\xa9\x75\xde\xa0\xd1\xd3\x9e\x3e\xbe\x33\x9a\x5f\xff\xc1\x43\x93\x6f\xbd\xbe\x39\xb9\x36\xe9\xe9\x7b\xba\xfc\xa4\xcb\x31\x42\x0b\xb0\x4c\xab\x65\xae\x39\x00\xf0\xbb\xba\x7c\x65\x11\xe3\xdf\xb5\xef\xf8\x74\xa4\x2b\x1d\xc5\x7e\x7d\xb2\x89\xf2\x25\x20\x9b\x91\x7c\xa6\x77\x97\x79\xce\x0a\x11\x32\x2d\x5a\x1e\x3e\x5e\x74\x99\x48\x99\xf2\x50\x7b\x0f\x11\x7b\x50\xed\x6b\x41\x03\x2b\xa3\x59\xb2\xf1\xcc\xdb\xa3\x9f\xd9\x9c\xf4\x7e\x32\x31\xb8\x6a\x9b\x87\xa9\xc4\x68\x50\x2d\x6b\x68\xc2\x2f\x00\xb4\xd6\x1b\x6d\x83\xe4\x66\x41\xee\xc4\x30\xde\x6a\x83\x34\x6d\xef\x79\x62\x4e\xde\xdc\x98\x7d\xef\x87\xe7\xa6\xdf\xde\x1b\xe6\xb7\x0c\xd4\xcb\x43\x27\x55\x07\x1b\x43\x65\x6d\xa9\x3a\xe2\x02\xda\x83\x84\xd9\xdb\xdb\x83\x3f\xfd\xd3\x3f\xd5\x79\x9e\x53\x93\x1e\x6d\x64\xbc\x8e\xad\xb9\x90\xd3\xdb\x86\x48\xdb\x06\x6d\x9c\x7c\xc9\x05\x08\x0f\x69\x99\x05\xa1\x9d\xbe\xd4\xd7\x25\x3a\xc5\xf8\xb9\xe2\xbb\xe4\x11\x75\x0a\xe1\x27\x99\x31\x79\x7e\x68\x87\xf4\xc9\xe0\xca\x03\x2d\x73\xca\x8b\xd2\xf1\x3a\xa0\xcf\xdc\xfc\xce\xdf\xa5\xbe\x65\xdf\x01\xda\x7c\xa4\xfc\x21\xa3\x07\x58\xae\x63\xde\x16\xa8\xcc\x9c\x9f\xcf\x49\xa6\xe6\x2e\xa6\x69\x4e\x43\xe5\x52\x84\x9e\xfb\xf9\xe2\x81\x83\xc6\xe5\x42\xa6\x6f\xea\x62\x74\xaa\x4b\x0e\xde\xf6\x62\x5d\x8c\xee\xe6\xed\xd2\xe7\x78\xfb\xef\x2a\x47\x4c\xbb\xe0\xbc\xe9\xb3\x24\xa7\x57\x76\xbb\x5c\x64\x8c\x41\x44\xba\x63\xb1\xfe\xad\xf0\x43\x6b\x07\xa2\x01\x04\x2c\x94\x29\x4e\x32\x3d\xdd\x1b\xe6\x87\x27\x7d\xbd\x6f\x00\x16\xbd\x02\x07\xa9\xc6\x3e\x36\x53\x5c\xa7\x93\x42\xdb\x13\x65\x00\xad\x8c\x9e\xf6\xf4\xd1\xdd\xd1\xe2\xcd\xd7\xcf\x4d\xbf\xfd\x9f\xe7\x4f\xbe\xf5\xa3\x8d\xe9\xeb\xd3\x9e\xd9\x35\x08\x47\x80\xe5\x12\x11\x00\x1c\x43\x69\x19\x9a\x00\xc0\x0c\x11\x67\x95\xfe\x5f\xc0\xb2\xb5\xdd\x44\xdc\x96\xeb\x72\x52\xdf\xe1\xfe\xd4\x71\x5d\x05\x10\x6e\x77\x46\xf8\xe3\xce\xcb\x83\x2e\x15\x85\x10\xb9\xa5\x91\x66\x59\x7c\x66\xe5\x73\x5e\x64\xf6\xfc\xf3\xcf\xab\xab\x57\xaf\x52\xf4\x48\x4f\x11\xd5\x16\x97\x54\xe3\xe0\xe2\x41\xff\xe2\x99\x49\xfa\x74\x5a\xe0\x3a\x80\x35\xe1\xd9\x25\x1d\x6c\xcc\x77\x6c\x98\x32\x58\x9d\xf4\xe1\xcd\xd8\xf2\xa8\xd6\x8f\xea\x8d\xc1\x6c\xa8\xab\x7b\x3a\x01\x44\x36\x5d\x03\xd6\x84\x58\x52\xd5\x23\x04\x1f\x2e\xb1\xe1\x66\xc8\xf7\x2d\x34\x1a\x7d\xb0\x92\xdf\x7a\x6b\x63\x76\x6d\x6f\x75\x71\xdb\x20\x4c\x11\xd0\xa2\x6c\x7b\xe1\x50\x7d\x82\xc8\x6e\xcc\x25\xe5\xa8\x01\x00\xfe\xe2\x2f\xfe\xc2\x87\x78\xed\xb3\x34\x23\x8b\x99\xa5\xb9\x5c\xcc\x4c\xcc\xf5\xeb\x4a\xcf\x25\x4b\x4c\x7c\x57\x58\x28\x5f\xae\x32\xe9\x2a\x43\x6c\x5e\x7d\xb3\x14\x29\xbd\xd0\xbb\x34\xeb\x96\x66\x37\x52\xfc\x2e\x33\x6a\x89\x2f\xb7\xbe\xf8\xac\x59\xa1\xd9\x39\xa7\x0d\x59\x07\x24\x19\x5d\x56\x8c\xd8\xb4\x5d\xb2\x70\xb9\x24\x7e\x5d\xfb\x92\x8f\x77\x6c\x1e\x5c\xb2\x76\x29\x93\x98\x7a\xea\xe2\x1f\x2b\x2b\x97\xd3\xe7\xa2\xeb\x90\x58\xa1\x15\x79\xb6\xcb\x46\x73\x68\xc6\x16\x45\x68\x40\x83\xd1\x8b\x04\xf4\xfe\x4a\x9e\x4f\x7b\x7a\xbc\xb7\x92\xef\xdf\x39\xe8\xdf\x7a\xc7\x71\xef\xb1\x8d\x71\x6f\x6b\x34\x4f\x36\x7a\x05\x0e\x94\x41\xb5\xa4\xdf\x05\x47\x97\x88\x16\x4a\xcf\x27\x99\x3e\xdc\x5b\xc9\x77\xee\x8c\xe6\xb7\x76\x46\x8b\x9b\x77\x57\xe7\xb7\x8e\x07\xc5\xbd\x85\x32\x87\x00\xa5\xa5\x05\xaa\x2d\x02\x64\xc2\xda\xba\x21\x9d\x2c\x0f\xd5\xd6\xf6\xc0\x6d\xb9\xb1\xfd\x2f\xc6\x75\xe5\x11\x4a\x3f\xd4\x76\xeb\x36\x82\x8e\x48\x5d\x5d\xc8\xc4\x49\x69\x82\x0d\xfb\xf9\xe7\x9f\xb7\x8d\x87\x5e\x32\x97\x01\xc0\x00\x00\x86\x60\x60\xb8\x3a\x57\xdb\x1f\xb9\x71\xe6\x67\x9e\xd8\x19\xfe\x5e\xbf\xc0\x0b\x14\xfd\xd2\xa3\xd0\x74\x5d\x11\xa0\xbd\xe4\x43\x69\xb9\x93\xda\x61\x83\x73\x9a\x50\xdb\x18\x5d\x71\x24\x27\x4d\xd5\xed\xd1\xeb\x49\xaf\xd8\x7f\xf5\xa1\xf1\xbf\x7e\xf7\xfc\xc9\xbf\xde\x19\x2d\x6e\x18\x84\x7d\x63\xcc\x21\x22\x1e\x57\xbf\xf5\x17\xa0\x85\x65\x22\x0d\x00\x40\x36\x65\xf9\xea\x34\x46\x19\x5b\x27\x01\xd6\x90\x92\x0b\x0d\x58\x12\x3f\xdf\x00\x15\x4a\xd7\x95\x16\xf5\x97\x9e\x43\xbc\x24\x39\x7c\x03\xaa\xf4\x1c\x13\x46\x9d\x4f\xa1\x87\xca\xf2\x7e\xf2\x1a\xdb\x57\xa5\x3c\x50\x17\xd2\x23\x3e\x60\x10\xe3\x4e\xa3\xab\x1e\xb4\x7e\x3b\x2d\xef\x18\xda\xd3\xf2\x8b\x05\x5c\xff\x55\xee\x41\x97\xcb\xa9\x5d\x75\x1f\x98\x6d\xaf\xf6\x6a\x8d\xfa\x64\x6a\xf5\x37\x30\xc6\x0c\x11\x71\x08\x00\xed\x3f\x03\x83\x54\xe3\x68\x38\x57\x67\xcf\x4c\xd3\xcd\x8d\x71\xba\x7d\x6e\xdc\xdb\x3a\x3b\xe9\x6d\xad\xce\xd5\x7a\x96\xab\x41\xaf\x50\x83\x54\x43\x8a\x06\x53\x6a\x7a\x04\x00\x5d\x28\x93\x2f\x12\x33\x9d\xa5\x7a\x3a\xe9\xe9\xf1\x51\x3f\xdf\xdf\x1d\x2e\x76\xee\xad\x2e\x76\xf6\x57\xf2\xbb\x27\x99\x3e\x98\xa7\xfa\xd0\x20\x58\xfd\x6e\xef\x6b\xb1\xe0\x65\x4a\x8e\x42\x73\xe0\x62\x6f\xfb\xd5\x00\xad\xeb\x2f\x7c\x63\x6d\x2c\xc0\x0c\x81\xf3\x90\x7b\x90\x00\xa9\xd6\x3d\xae\x7b\x5c\x62\x80\x08\x75\xbe\xcc\xba\x68\x7c\xf1\xeb\xf4\x48\x03\xab\xff\x52\x8d\x83\xb3\xe3\xde\xe6\xe6\x49\xef\xc9\xac\xc0\x2d\x1b\xa1\x06\x02\xf5\xba\x10\xdd\x97\xd2\x80\x0b\xea\xe8\xfd\x2d\xf5\x85\x71\x88\xe5\x91\x66\x61\xff\x09\x7f\x92\x4c\x31\x14\xd6\x48\x50\x46\x5a\xa6\x02\x44\xd0\x68\xf4\xde\x70\x71\xf3\x31\x7e\x83\x60\x00\x00\x20\x00\x49\x44\x41\x54\xe6\x99\xd9\xb5\x83\x41\x7e\xc7\x20\xd8\x2f\x3e\xd7\x17\xcd\xb1\x63\x70\x2d\xc0\x82\x88\x70\xf5\xea\x55\x7d\xe9\xd2\x25\x75\xfd\xfa\x75\x3b\x4b\x73\x01\x10\x10\x9e\x01\xda\x75\xe1\x02\x16\xc0\xe2\x84\x14\x24\x9f\x39\xf2\x01\x4f\xa2\xa7\x69\xb8\xda\xa2\x24\xf7\x69\x3b\x99\x6b\x76\xca\x1d\x2f\x2f\x9f\xf3\xe5\xd5\xc7\xc7\x57\xd6\xbe\x77\x97\xfc\x31\x0a\x8a\xfb\x2b\xf6\x6b\xf9\xf8\xea\x96\xc7\x73\x95\x63\x4c\x1d\x85\xe2\x87\x1c\x57\xb8\xf7\x03\x94\x42\xe0\xbf\x2b\xaf\x50\xf9\x4b\x60\xb4\xab\x6c\x3e\xba\xfb\x19\x8c\xba\xc4\x3d\x6d\x19\xff\x58\x40\x4c\xa5\x27\x15\xbd\x94\x0e\x4a\x00\x50\xa7\x8b\xcd\x37\xdd\xec\x5f\xa9\x6b\x11\xe6\xb9\x32\xf9\xe1\xa0\x98\x8e\xb3\xe2\xe0\xde\xea\x62\xe7\xd6\x6c\xbe\xbe\x36\x4b\x37\x57\xe7\x6a\x34\xc8\x93\xe1\xca\x5c\x0d\x07\xb9\x1a\x66\x05\x66\x68\xca\x4f\xce\x68\x04\xad\x11\xf2\x79\xa2\xe7\x27\x59\x71\x3c\xce\xf4\xf1\xa4\x57\x1c\x9f\x64\xc5\xe1\x49\x5f\x1f\x4e\x7a\xc5\xd1\x22\x31\x63\x83\xf5\xde\x95\x31\x99\x9c\x5a\x0b\x8b\xdd\x1a\x60\xad\xee\xf6\x86\xf4\xa5\xcd\xb8\x57\xaf\x5e\xd5\x67\xce\x9c\x51\xe4\xa2\x51\xea\x42\x3a\x2e\xa4\x93\x68\x58\xcc\x24\x07\xc0\xdd\x96\x7d\x78\xc2\x25\x6b\xad\x4f\x43\x17\xd0\xb9\x84\x0a\xcd\xce\x62\x0a\x67\xc9\xd1\x5b\x72\xab\x06\xd4\x5a\x26\xb2\x37\xe6\x66\x05\x0e\xcf\x1f\xf5\x2f\xae\xcd\x92\xcb\x0a\xca\xcd\x52\x50\xe1\x0c\x8a\x37\x24\x8b\x89\x64\x5b\x41\x83\xe5\x66\xde\xd6\x26\x5b\x6e\xc1\x81\xda\xb6\xd2\x5a\xe0\xa7\x4c\x69\xba\x06\x9a\x0d\xc2\x84\xc6\x67\xe1\x99\xa5\xfa\xf0\xed\xf5\xf9\xb5\xbb\xab\x8b\xb7\xe7\x69\x79\x43\x22\x47\xd8\xd0\x5e\xcf\xac\x01\x8b\x7d\xfe\xc4\x27\x3e\xa1\x5e\x7c\xf1\x45\x0e\x3e\x40\x78\xf7\xd1\xc4\xd2\xf9\xde\x63\xc3\x5c\x83\x0b\x80\xbb\xa3\x71\x40\xc5\xe9\x43\xb2\x87\xf2\xe1\xf3\x77\x01\x3c\xfe\x2c\xe5\xa9\x4b\x7f\x08\x81\xa8\x10\x5f\x57\x58\x4c\x3c\x9e\x87\x10\x6f\x89\xa7\x8f\x87\x0b\xcc\xb9\xea\xdb\x07\xb6\x5d\x8a\x50\x02\x7d\xae\x32\x75\x29\xd6\x58\xe5\x7f\x3f\x96\x0d\x9f\xc2\xe7\xb2\x76\x99\x20\xf0\xb8\x5d\xe4\xe8\x3a\x71\x75\xf1\x93\xe8\xbb\x96\x55\xac\xd5\xcf\x99\xce\xbb\xde\xf5\x2e\x75\xf5\xea\x55\x5d\x8d\x2f\x35\x78\xa9\x96\x8a\x52\x28\x2d\x17\x2d\x3d\x0a\x50\x03\x9d\x9c\x5c\xec\x39\x47\xc4\xc1\x42\x99\x69\x9e\xe8\xf1\xa4\xa7\x0f\xf6\x86\xf9\x9d\x54\x63\x3f\xd5\x98\x65\x39\x0e\xb2\x42\x65\xbd\x02\x33\x34\xa0\x0c\x02\x68\x00\x6d\x94\xc9\x17\xca\xe4\xb3\x54\x4f\x17\x89\x99\xe6\xca\xcc\x0a\x65\xa6\x1a\x61\x0e\x08\x73\x63\x4c\xbd\x1d\xc0\xde\xd3\x05\xcd\x64\xb5\x1e\x03\x08\x68\x69\xbe\x70\x5d\x82\x17\x80\x12\xc8\x00\x00\xc0\xc1\xc1\x81\xcd\x82\xaf\x3d\xc4\xf6\x29\x9f\x3e\xeb\xca\xdb\xa5\x7b\x96\x2c\x2a\x10\x70\xae\x3d\x2e\xd2\x00\x10\x12\x20\x16\xe0\xd8\xe7\x3a\xee\x60\x30\x50\x4f\x3c\xf1\x04\x95\xcb\x9a\xf2\xe8\x73\x79\xc5\xbf\x86\x6c\x38\x4f\xd6\x1f\x3a\xee\xbd\x7b\x90\xab\x8b\x00\x40\xf6\x95\x90\x5f\x68\x03\x15\x69\x77\x50\xbd\x0b\x0b\x3d\x20\xc7\x34\x80\x46\xb2\x94\xd0\xd3\x4b\x1c\xc4\x60\x0b\xc9\x54\x8f\xfc\x8e\x67\xb2\xb7\x65\x6f\x25\x7f\xf3\xe6\xfa\xfc\xfa\x71\xbf\xd8\x37\xc4\x34\x48\x7e\xe9\xed\xb8\x4b\x16\x97\xbd\xbd\x3d\x20\xa0\x25\x04\x3a\x25\xe4\xcc\xdf\x5d\xca\x3c\xa4\x2c\xa4\x5f\x89\x9e\xc6\xe1\x32\xc4\x0e\x00\xbc\x5d\xfa\x06\x1c\x2a\x83\x94\x16\x97\x57\x92\xd9\x37\x20\x4a\x32\xc5\x74\xc6\x2e\xb3\x98\x58\x4b\x85\x2b\x2f\xae\x32\xa6\x61\x21\xe5\xe5\x9a\x91\xc5\x2a\x9e\x98\x76\x10\x03\x0a\x62\x40\x86\x2f\x4d\x49\x2e\x17\x88\xee\xea\x5c\x7d\xc1\x27\x4b\xec\x20\xcf\xcb\x3f\x34\x80\x84\xc0\x91\xef\xd9\xe7\x27\x39\x5a\x7e\x0a\xdc\x75\x06\xb0\x2c\x5b\x68\x52\xe0\xaa\x4f\xaf\x6c\xaf\xbf\xfe\xba\x06\x28\xad\x11\x16\xbc\x54\x63\x8a\x95\x93\x1e\x91\xb6\x7e\x9a\xea\xda\x0a\x30\x64\x50\x82\x97\x39\x00\x4c\x0d\x42\x96\x27\x26\xcd\x93\xea\x52\xd4\x0c\x52\x04\x48\xd1\x34\x72\x1a\x00\x00\x2c\xf9\x99\xd2\x72\xa3\xa1\x99\x84\xda\x09\xa9\x05\x26\xf5\xad\xb8\x95\xae\xa7\x93\xd6\xd6\xb7\x89\xc8\x49\xa2\x3a\xef\x37\x6e\xdc\xf0\x95\x47\xa8\x1e\x24\x1a\x60\x34\x3e\x1e\x9c\xd6\x17\x8f\xcb\xe4\x1a\x67\x9c\xbc\xed\x1e\x12\x29\xb1\x18\xc1\x43\x34\x3e\x9e\xb5\x90\xd3\xe9\x54\x7f\xfb\xdb\xdf\x86\x8f\x7e\xf4\xa3\xb4\x61\xb6\xae\xf8\xa7\xd6\x96\xcd\x71\xba\xbd\x31\x49\x2f\xa7\x85\xda\x00\xa0\x20\xc5\x6e\x88\x35\xf5\xb1\x33\x8b\x0d\x38\x30\x29\x41\x89\xa9\x36\xe3\xd2\x7d\x30\xed\x2b\xfe\x9d\x9b\x56\xaa\x70\x17\x88\x89\x72\x58\xee\x90\x01\x00\x98\xa7\xe6\xf8\xed\xf5\xd9\xb5\xbd\xe1\xe2\xf6\x22\x31\xc7\x06\x8c\xbd\xce\xb9\x65\x6d\x21\x1d\xa9\xfe\x36\x85\x5d\x22\xb2\xe5\x06\xb2\x02\x04\xc1\xdf\x37\x88\x4b\x03\x94\x6b\xe0\xeb\x02\x38\xa4\x41\xcf\x97\x26\xa7\xf1\xcd\x9e\x43\x80\xc9\xa5\xf8\x7d\x79\x89\x01\x63\xd2\xb3\x24\xb3\x2f\x1f\x2e\x79\x42\x7c\xf8\xbb\x0b\x78\x85\x06\x71\xd7\x20\x17\xca\xab\xab\xce\x24\x00\xd0\x05\x90\x74\x51\x6a\x31\xca\xd6\x55\x5e\x34\x7e\x8c\xf2\x74\xf1\x88\x0d\xb7\xfe\x96\x36\x54\x3e\xb1\xfa\x59\xe2\x21\xf5\x11\xfa\xee\x2b\x13\xa9\xdc\x42\xc0\xd4\xd5\x3e\x7d\x00\xdc\x35\x80\xba\xe4\xec\x52\x57\x4b\xbc\xee\xdd\xbb\x07\xe7\xce\x9d\xab\x37\xeb\x42\xa9\x53\x53\xa8\xc0\x0b\x00\xd0\x2b\x25\x2c\x60\xb1\x20\xa3\xfc\x3c\x40\x09\x30\xec\xbe\x98\x66\x1b\x03\x42\x6a\x00\x94\x41\x51\xbf\xd8\xbf\xfa\xe6\xde\x8a\x37\x3d\x70\x51\x03\x95\xea\xd9\xd2\xb9\xac\xed\x1a\xa0\xd9\xd3\x32\x1c\x0e\xa5\x89\x87\xab\x0d\x48\xe5\xe7\x6b\xbb\x31\x7a\xdd\xa7\x57\x7c\xcf\x56\xbe\xe8\x3e\x9f\x06\x84\xe1\x89\x87\x3a\x61\x8c\x52\xe6\xfe\x1a\xa0\x7d\xbd\xbf\x31\x46\x01\x80\x3d\x6b\x5f\x83\x16\x30\x90\x0d\xf2\x64\xf4\xd0\x71\xf6\xe8\xea\x3c\xb9\x84\xc6\xa4\x50\x83\x93\x36\x74\x11\x56\x63\x6a\xb7\xb4\x17\xa6\x72\xf5\xf1\x69\x5f\x1c\x68\x2f\x47\xb5\x89\x84\x80\xa5\x7d\x2f\x94\x1c\x2b\xf0\x02\x70\x30\xc8\x6f\xbe\x75\x66\x76\xfd\xa4\x57\xec\x9b\xe6\xa2\x39\xbb\xc7\x85\x82\x97\xba\x1e\xaa\xb2\x92\x94\x52\x48\xe9\xf9\x06\x40\xc9\x3f\x34\xa8\xf9\x94\xaa\x2b\x5c\xea\x18\x3c\x1f\x3e\x99\x68\x1c\xda\x39\x79\xa7\xf5\x29\x41\xde\xd1\x7d\xb2\x72\xe7\xe3\xcd\x01\x0f\x8f\x47\x7f\x39\x3f\x57\xa7\x0d\xd5\x93\x2b\xef\xbe\xfe\xcd\x95\x85\xe4\x62\x81\x6a\xa8\x1d\x50\x3f\xdf\x40\x46\xd3\xec\x3a\x68\x53\x3e\x3c\x5f\x21\xdd\xe5\xa3\xf1\x29\x5b\x97\x8b\x01\x07\x52\x1c\x5f\x9f\x95\xca\x4c\xa2\x0d\xa5\x25\xc5\x73\x81\x6b\x69\x40\xe1\x71\x79\xda\xbc\x5f\xb9\x68\x63\xc7\x0e\x5e\x3f\xa1\x3e\x21\xc5\x57\x00\x00\x5f\xfc\xe2\x17\xf5\x6f\xff\xf6\x6f\xab\x33\x67\xce\x50\x9a\x9c\xc9\x4c\xbf\xae\xac\xab\xf0\xcc\x18\x93\x61\xf9\x61\xc6\xac\x7a\x6f\x2e\x43\xad\x8c\x00\x76\xb2\x4d\xf8\xd8\x93\x3e\x76\x13\xad\x26\x16\xf3\x1a\x98\xd0\xef\xcd\x41\xb3\x2c\x54\xef\x67\x01\x72\xad\x3f\x3d\x45\x44\x0e\x62\xc0\x78\x3c\xe6\xf9\x8d\xd1\x7f\x12\x60\xe1\xe5\x27\xbd\x87\x74\x8b\x14\xcf\x07\x48\x42\x40\xa6\x95\x6e\x52\x3d\x84\xce\xd6\xd3\xbb\x10\x90\xbd\x6b\xf2\x4e\xb7\x7f\xf0\xc4\xf8\xb9\xec\x9a\xcf\xa3\x8f\x3e\xaa\x9e\x78\xe2\x09\x0b\x54\xb0\x72\x09\x94\xf7\xcc\xa4\x88\xd8\x07\x80\xbe\x32\x30\x3c\x37\x4e\x1f\x7e\xf7\xbd\xe1\x87\xce\x8d\x7b\xcf\x25\x80\x7d\x9b\x58\xfb\x7f\xe3\xc4\xe3\xc8\x0c\x5f\xf0\xad\xb6\xd2\x3e\x94\x36\x8d\x8c\x5c\x78\x1c\x7a\xba\x69\x39\xac\x61\xba\x48\xcc\xf8\x87\x5b\x93\x7f\xbb\x7e\x6e\xfa\xfd\x49\xa6\xef\xd1\x63\x70\x88\x38\xb1\x48\xbc\x3a\xb3\x6f\xaf\x77\xb6\xe0\xc5\x30\x6b\x0b\x5d\x29\x73\x9d\x91\xa7\xf5\x23\xad\xa2\xd9\x5f\xcb\x4f\x3a\x9f\xcf\xe9\xa5\x76\xe4\xbb\xb7\x81\xc7\xf3\xdd\x1d\x60\xe9\x91\x85\xbb\xee\x15\xe0\xef\x9c\x0f\x0f\x73\x95\x85\x94\x8e\x54\x2e\x3c\x6d\x4e\xcf\xe5\xe6\x65\xc5\x79\x6b\x47\x98\x2b\x2d\x97\x9f\x2f\x8c\xfb\x4b\xef\xbc\x4e\xba\xf0\xf5\xb9\xa5\x3d\xf2\xd0\x28\x2a\x9a\x26\xd7\x23\x3c\x9e\xab\xcd\xc5\x28\xd5\x98\xf6\x46\xf9\x49\xf5\x6d\xf5\x98\x4f\xd7\xf9\xca\xce\x27\x97\x75\xb4\x2f\x2b\xf2\x6b\xd3\xe5\xed\x1b\x84\xb8\x92\xbf\x2d\x6f\xba\xaa\xae\x59\x3c\x5f\x9f\x71\x95\x9b\x2d\x7b\xca\x8f\xcb\x2d\x8d\x13\xae\xfe\x42\xe3\xd0\x7a\xa0\x03\xb3\x4b\x07\xf1\xbe\x6d\x00\x00\x5e\x79\xe5\x15\xf3\xd2\x4b\x2f\x99\x67\x9f\x7d\x16\xb1\xfc\x14\x80\x01\x28\x75\xa9\x29\x2f\x7c\xb1\x16\x17\x43\x96\x8e\x8a\x0a\x44\x14\x50\xde\x9b\x95\x23\xe2\x0c\x4a\x00\x32\x83\x72\x62\x39\x83\xea\x8e\x95\xea\x53\x2c\x76\x89\x7f\x82\xd5\x15\xfd\x76\xf3\x6d\xa5\xd3\x4f\xa0\xbc\x97\x65\x5a\xe9\xf9\x59\xc5\xc3\x5e\x2e\x4a\xd3\xa4\x17\xcd\x69\x80\x72\x7c\x79\xcf\x7b\xde\x83\xdf\xf9\xce\x77\x78\x5b\xe5\xe5\xca\xeb\x86\xfb\x53\xe7\xd3\xd9\x9c\xce\xa5\x57\x5d\xed\x91\x03\x4e\x2e\x97\xab\xef\xf0\x74\x97\x2c\x2e\x1c\x01\x03\xb4\x1b\x1f\x30\xfa\x18\xb4\xe4\x72\x1a\x00\xe0\x9d\xef\x7c\xa7\xfa\xc5\x5f\xfc\xc5\xa5\xc1\xdd\x1e\x87\x26\xdf\x27\x4a\x57\x16\xc9\x70\xeb\x24\x3b\xbf\x31\x49\x2f\xa7\x1a\xd7\x69\x0b\xc7\x76\x3c\x30\xa4\xfd\x57\x8b\x47\xcd\x3b\xb9\x62\x19\xa0\x5a\x1c\x32\xd0\x2c\xf5\xd4\x5f\x69\x96\x81\x8f\x01\x6c\xde\x5b\xfe\x64\x33\x2e\x2c\x03\x19\x68\x85\x01\xd8\x23\xda\x07\x2b\xf9\x9b\x3f\xda\x98\xbe\x76\x92\x15\xbb\x06\x5b\x9b\xb2\xec\x91\xb7\xda\x64\x89\xec\xcc\x3e\x00\xc0\xbb\xdf\xfd\x6e\xf5\xc3\x1f\xfe\x90\xd6\x87\x84\xb8\xbb\xf8\x87\x66\xd7\xd4\xf9\xac\x0e\x3e\x7f\x29\x6d\x4e\x17\x83\xe8\x69\x1c\x2e\x8f\x6b\xa6\xe8\xca\xa3\x24\x8f\xc4\xdf\x57\x2e\xae\xf4\x79\x98\xc4\xcb\x15\x26\xc9\x12\x92\x31\x26\x2f\x3e\x17\x93\x6e\x8c\x5f\xcc\x0c\x8b\xff\xc6\xca\xe2\x9a\x05\x86\xf2\x1b\x92\xc3\xe7\xcf\x1d\xcf\x63\x4c\xbb\xf1\xc9\xc7\xe9\x5c\x72\xaa\xc8\xf8\x21\xff\x98\x72\xe5\x8e\x87\x4b\xf4\x52\x1e\x5c\xe3\x85\xcb\xb9\x64\x75\xc5\x8f\x91\xab\x76\xd6\x5a\xf1\xfc\xf3\xcf\xdb\xcd\xba\x76\xa2\x99\x57\x5b\x14\x6a\x4b\x09\xb1\xae\xd4\xb7\xed\xd2\x3f\x6e\x69\xa1\xba\x9f\x3c\x5b\xab\x4b\x7d\xff\x0a\xdb\xb3\x38\xaf\x64\xae\xc3\xe9\x7e\x16\x7a\x4f\x0b\xb5\xb4\x08\xe5\xc5\x75\xac\x54\x1e\xae\x32\x74\xf5\x0d\x29\xdc\x37\xfe\xfb\xd2\x70\xc9\x15\xea\x3b\xf5\xb3\x34\x88\x48\x0d\x0e\x84\x77\x29\x61\x29\x51\x1b\x2e\x29\x67\xb8\x71\xe3\x06\x57\xb6\xf5\x11\x68\x7a\xd6\x1e\x11\xab\x4d\xb9\xd9\xbb\x86\xb3\xe4\x12\x00\xb5\x82\x98\x66\x8a\x56\x7f\x01\xda\x5e\x43\x67\x37\xc8\xda\xa7\x66\xc3\x6c\x7d\x51\x1d\xf1\xa6\x20\x88\xfe\x1a\x24\xd3\x04\xdf\xde\x17\x1b\xc1\xb5\x21\x97\x85\x2d\x12\x33\xfd\xd1\xd9\xd9\x77\xee\x8c\x16\x6f\x17\xca\xd4\xc7\x9f\xa1\x39\xfa\x4c\xcd\x85\x76\x23\xae\xdd\xb8\x4c\xbf\xfe\xec\x1a\x1c\xa5\x7a\x04\x16\xe6\x1b\x6c\xa4\x7a\xe4\x75\xb9\x54\x87\xcc\x71\x7e\xf4\x4f\x31\x3a\x29\x2e\xe7\xc1\xfd\xa9\x73\xb5\x53\x29\x1f\xae\xb2\xa0\x69\xc4\x0c\x72\xae\xb4\x7c\x8a\xd4\x55\x56\x52\x3a\xae\xbc\x52\x3f\x57\x1d\x5b\x1a\x69\x52\xc2\xf9\x71\x7f\xa9\xec\x25\xde\x2e\xb9\x7d\x72\x85\x14\x5a\x0c\x18\xe0\x2e\x66\x30\xf3\xc9\x21\xea\x28\x70\xd7\x55\x97\x01\x3e\xa6\xdd\x48\x74\x52\xfd\xfa\xf8\x75\xf1\x77\xe9\x77\x5f\xdb\x0c\xb9\x98\x41\x2b\x54\x16\x31\xe1\xae\x72\x89\x76\xfd\x7e\x5f\x01\x2c\x7d\x49\x9a\x6f\xca\xb5\x3a\xd8\x6e\xa2\xb5\xa7\x7e\xec\x5d\x2b\xc7\x00\x70\x88\x88\x87\xd5\xef\x3e\x00\x1c\xb2\xbf\x7d\x80\xf2\x3e\x2e\x1b\x07\x11\x8f\xc9\x33\xbd\x9b\xcb\x5a\xd7\x5b\x13\xd5\x4a\x2e\x1f\x68\xe1\xe5\x23\xb9\x98\xf6\x1d\xea\xa3\xb1\x7e\xd6\x5f\xe2\xed\x03\x57\x21\x39\x34\x80\xff\x38\x74\x97\x86\xe1\x43\xf1\x92\x9f\x02\x00\x7d\xf9\xf2\x65\xf5\xda\x6b\xaf\xd9\x46\x53\x87\x59\xe4\x8a\xcd\x47\xb0\xd2\x2c\xc7\xc1\xd9\x49\x6f\xfb\xec\x38\x7d\xbc\xa7\xc9\xdd\x2d\xc6\xc6\x2d\x21\x87\x31\xd6\x6a\xd2\x4e\x5c\x02\x23\xf5\x2f\xb5\xb6\x10\x27\xd9\xb3\x5b\xe1\x66\x79\xc9\xa9\x75\x9b\x2e\x34\x97\xd3\xd9\x77\x30\x4d\x5e\x0d\x82\x3e\x1c\xe4\x37\x6f\x6c\x4c\xae\x4d\x7b\xc5\xb1\x69\x1f\x7f\x96\x8e\xc0\xd5\x47\xdf\x2c\x4f\xa1\x11\xc7\x28\x75\x57\x7d\x85\x90\xb4\x0d\xe3\x03\xba\x94\x86\x8b\x87\xaf\xad\xc4\xc8\xe4\x0a\x97\x9c\x2b\x4e\x57\x19\x42\xef\x5d\x06\xe4\x98\x38\x5d\xd2\x89\x51\xfe\xa1\xfa\x76\xcd\x8c\x5d\xf2\x84\xe4\xa4\x2e\xc6\xe2\x22\xd1\xba\xfc\x69\x7e\xba\xcc\x1a\xef\x47\x0e\x57\xfb\x0d\x59\x78\x62\xf3\x23\x39\x17\x50\x97\xf2\x1d\x7a\x8f\x91\xab\x8b\xd5\x28\xf6\x59\xe2\xef\xca\x87\x34\x79\x02\x07\x2d\xe5\xe9\xa2\x09\x3d\xab\xd9\x6c\x26\x96\x3d\xb5\x6c\x10\x7d\x5b\xeb\xbd\x6a\x42\x6d\xf7\xc5\xd4\x07\x5c\x4c\xf3\xe1\x46\x3b\xf9\xb6\xfc\xb4\x5d\x7e\x22\x96\x94\xa5\x1b\x6f\x01\x9a\xe5\x20\x60\x75\x61\x65\x11\xac\xf8\x5d\xfa\x51\x0c\x4d\x17\x7f\xd7\x84\xb7\x4b\xbb\x77\xe1\x0c\x6f\xfd\xa5\xe4\x85\x47\xee\x02\x58\x7c\xb4\xce\x4e\x65\x41\x0b\x0b\x03\x80\xa5\x4d\x4e\xe9\xca\x22\x19\x6e\x8e\xd3\x47\xd7\x66\xc9\x25\x65\x20\xb3\x96\x11\xbb\xe4\x42\xaf\xdb\x07\x68\x5b\x4e\x24\xd7\x0a\x27\xa0\x85\xaf\x00\xb9\xf8\xd8\xb4\x5a\xcb\x54\xcc\x8f\xdf\xd2\x6b\xbf\x02\x6d\x2a\xea\xb9\x32\xe3\xb7\xd7\xe7\xaf\xde\x5b\x5d\xdc\x2e\x10\xc6\x06\xcc\x1c\x4c\xeb\xab\x9f\x74\x13\x17\x05\x2d\xb4\x53\xd1\x32\x8d\xfd\xf5\x29\x26\x80\xe5\xc6\x17\x52\x92\x9c\x26\xc4\xab\x4b\x1c\x97\xc2\xa3\xf1\x63\xf2\x40\xe9\x42\x3c\x42\x79\x93\xc2\x42\x9d\x96\xcb\x10\x3b\xb8\xfa\xf2\x06\xc2\xbb\x4f\xb9\x87\xe4\x91\xf2\xc3\xd3\x95\xe2\x50\x19\x7c\x83\x7a\x17\xfd\x12\x3b\xa0\x4b\xfe\xa1\x74\x42\x32\xc5\x0e\xea\x92\xeb\xaa\x43\x63\xf8\xd8\xf7\x98\xfe\xe9\x4a\xf7\xb4\xe5\x1d\x02\x24\x3c\x6e\x8c\xce\xf0\x95\x65\xec\xc0\x76\x9a\x7a\x75\xc6\xa7\x47\xa5\xb1\xb9\x43\x8c\xea\x0a\x0d\xed\x71\xc9\xca\x66\xef\x80\xa9\xaf\xef\x00\xa8\x0f\x4e\xd4\x60\x83\x82\x97\x2a\xbc\xce\x27\x7d\x06\xa8\xef\x63\xd1\x84\x87\xc6\xf6\xc9\xd1\x50\x9e\x63\xda\x9d\xaf\xac\xa4\xba\x8e\xa9\xab\xd3\xb6\x3b\x49\x47\x79\xeb\x2f\x75\x04\x84\x14\x68\x8c\x50\x2e\x50\xd3\xe2\x4b\x2f\x9d\x03\xa8\x91\x6a\x0d\x58\xa0\xfc\xa0\x62\xb6\x36\x4b\x36\xcf\x8e\xd3\xc7\xfa\xb9\x3a\x5f\x03\x82\x0a\x21\x2c\x5d\xe3\x6f\xff\x33\x33\x0a\xdd\x11\xb6\x04\x46\x2a\xf2\x52\x86\x06\x00\xb9\xc0\x0f\xb7\xdc\x48\xb4\x2e\xd0\x83\x60\xa0\x40\xc8\x8f\xfb\xf9\xce\xcd\xf5\xd9\xb5\x49\x4f\x1f\x42\xb3\x91\x8b\x9a\x26\xed\x9a\x67\xfd\x47\x01\x8b\xa3\x21\xc7\xcc\x78\x7c\x03\xac\xa4\x38\x7c\xf5\x4c\x1b\x5e\x68\xa0\x77\x0d\x90\xbe\x38\x52\x3a\x2e\x9a\xd0\xac\x4e\x72\x2e\x9e\x31\x03\x27\xcf\x03\xf5\x93\xf8\x84\xde\x25\x99\x5c\xfd\x27\x26\x4f\x1c\xa4\x85\xfa\x32\xaf\x47\x57\x58\x48\x0f\x84\xc0\x92\xcb\xc5\x0c\x8c\x34\x8d\x58\x90\x70\x5a\x79\x42\xbc\x63\xfb\x08\x95\x83\x0f\x86\x5d\xd2\xa6\xf1\x62\xda\x91\x94\x36\xe7\xe9\x9a\xd9\xfa\xe4\x90\xde\x7d\x2e\xa6\x9e\x24\x99\x62\xcb\x88\xc7\x8b\x95\xa5\xe5\xac\x3e\x25\x17\xd5\x01\x94\x60\xa5\x05\x22\x80\xf5\x13\x02\x64\x80\xf9\xd7\x1e\x04\x9c\x50\x19\xa4\xfa\x68\x7d\xe5\x39\xa0\xeb\xb9\x0b\xe9\xfe\x18\xfd\xcf\xe5\x39\x4d\x7a\x5d\xea\x98\xfa\x47\xd7\xb7\x35\x73\x49\x83\x48\x48\x31\x74\x41\x49\xa2\xb2\xfb\xcc\x67\x3e\xb3\xa4\x28\xc9\x32\x51\xbd\xf1\xa9\x57\xe0\x60\x7d\x92\x6c\x9d\x99\xa6\x17\x7b\xba\xfc\xa0\x62\x49\xbc\x0c\x32\x9a\x77\x5c\x5a\xfe\x11\x41\x88\xa9\xd1\x4f\x63\x39\x61\x5f\xcc\x2a\x01\x30\xf9\xfe\x11\x08\x27\x88\x58\xfa\x86\xc2\x16\x92\x86\x05\x4f\x8b\x44\x4f\xef\xad\x2e\xde\xd8\x19\x2d\xde\xd6\xaa\xb6\xb2\xd0\xbb\x5b\xa8\xc5\xa5\xb6\xb6\x10\xc4\xde\x2a\x4b\xf6\x2b\xf9\x73\x80\xc0\xc3\xf8\x20\xe7\x8a\x1b\x03\x76\x62\x9f\xbb\xd0\x75\x49\xe7\x34\x72\x84\xd2\xf1\x0d\x3a\xa7\x51\xf6\xb1\x65\xc2\x9d\x6b\xa0\x39\x8d\x3c\xae\x78\xa7\x29\x7b\x17\x4d\xec\xc0\xe8\x0b\x97\xda\x1f\x6f\x97\x2e\x85\x2c\x59\x87\x62\x81\x69\xcc\x3b\x78\xc2\x1f\xd4\xb3\x8f\xb7\x4f\xbe\xae\xe5\x1d\x2b\x07\x8f\x1f\x3b\xd1\xed\x2a\x9f\x8b\x37\x4f\x87\xca\x2e\xa5\xe3\xf2\x13\x79\x73\x00\x53\xe9\xfd\xfa\x53\x01\x15\x90\x51\x00\xf5\x44\x32\x34\xa1\xaa\xd3\x64\x20\x08\x08\x8f\x56\x78\xf5\x5c\x6f\x05\x60\xd7\xf8\x9f\x06\x30\xf8\x26\x88\x5c\x66\x89\x3e\x06\xf0\x48\x79\x8e\xd1\x57\xb1\x6d\xbd\x8e\x97\xc0\xf2\xf1\x23\x7e\x9c\xd0\x77\x5c\x90\xff\xb9\x32\x23\x66\xf4\x7b\xdf\xfb\x9e\xb9\x72\xe5\x8a\x35\x80\xa8\xea\x2f\x81\x72\x97\x76\x0f\xcb\x63\xd0\x83\xd1\x2c\xd9\x78\x74\x7f\xf0\xfe\x0b\x87\xfd\x0f\xf5\xf3\xe4\x7c\x73\x52\xa8\xbd\xc7\x04\x80\x2f\xdf\x34\xdb\x74\x97\xf7\x9b\x50\xa0\x42\xac\x36\xd2\x51\x68\x6c\x36\xfd\x3a\xd6\x19\x1b\x0b\x4c\x0d\xa2\x48\x6a\xe4\x6a\x5e\x04\x00\x8d\x90\x1f\x0f\x8a\x9d\xd7\xcf\x4d\xbe\xf9\xa3\xb3\xb3\xd7\x0b\x34\x07\x00\x70\x52\x6d\xd2\x9a\x54\xc7\xe7\xa6\xd0\x00\x97\xa2\xda\x94\x6b\x00\xc0\xbc\xf0\xc2\x0b\x5a\x6b\x8d\x7b\x7b\x7b\x58\x14\x85\x2d\x3f\xe9\xb8\xa1\x75\xbc\x11\xf0\x3a\xb5\x45\xc2\x1b\x2e\xaf\x6b\x1a\x87\xa6\x27\xa5\xcf\x65\xf1\xc5\xf1\x1d\xad\xf4\x1d\x8b\x94\xfc\xbb\xca\x13\xcb\x1b\xc9\x9f\xf6\xc4\x91\xf2\x1a\x4a\xc7\x86\x41\x40\x6e\x9b\xb6\x75\xbe\xbc\xd2\x34\x81\xbd\xd3\xb6\xe0\x93\x27\x54\x8e\x4a\xf8\xe5\x61\x94\xa7\xd4\x36\xa5\xfc\x73\x47\xf5\x12\xcf\x17\xd7\x53\x52\x99\x71\x39\x62\x74\x95\x24\xbf\x2b\x2e\xef\x2b\x12\xad\x54\xfe\x9c\x86\x96\x8f\xd4\x4e\xa5\x70\x5e\x2e\x21\x7e\x94\xa7\x4f\xb7\x4b\xf2\xf1\x36\xe2\x4b\xd3\x15\xcf\x25\x13\x75\x31\x79\x90\x74\x53\x48\x6e\x5e\xa6\xde\x36\xf1\xd2\x4b\x2f\x99\x97\x5e\x7a\xc9\x8e\x51\x06\xcb\x63\xd3\xf6\x17\xc8\x33\x05\xd4\x96\xaf\x06\xa8\xbf\x27\x64\xfd\x0a\xc6\xc3\x00\x80\xdd\xfb\x52\xf3\x7d\xe1\x85\x17\xf4\x4b\x2f\xbd\x64\x5e\x7e\xf9\xe5\x5a\xa6\xd9\x6c\x16\x53\x6e\x92\xa3\x79\xf5\x95\x8f\xd5\x2d\xb6\x3d\x69\x07\x3d\x0a\xcf\x3c\x7e\xa8\xce\xb8\x93\xda\x8c\xab\x2f\x20\x00\x18\xba\x39\x97\x23\xaa\x10\x3a\x05\x70\x23\x2f\xea\x9c\x28\x91\x2e\x13\x11\xe4\x6a\xff\x52\x28\xaf\x4f\xce\x46\xb3\x74\x7d\x63\xd2\xbb\xd8\xcf\xd5\x76\x69\x0c\xb1\xc7\x9b\xcb\xfc\xd1\x92\xa2\xcb\x40\xf4\x42\xb9\xe6\x6e\xdc\xe6\x2c\x51\xbd\x06\x49\x85\x62\x47\xa1\x5b\x41\x8e\x0c\x12\x83\x0a\x38\x23\x93\xa0\x5c\x99\xe9\xfe\xca\xe2\xe6\xed\xb5\xf9\x9b\x8b\xd4\x8c\xc1\x94\xd6\x16\xba\xa3\xdc\x5e\x36\x04\xd0\xda\x90\x5b\xa3\xf1\x6f\x7e\xf3\x9b\xbc\xae\xac\x93\xde\x7d\x2e\x84\xc6\x25\xe4\xeb\x4a\x9b\xf2\xa0\x61\x1c\x31\xfb\xe4\x0b\x59\x0e\x38\x4f\x4e\x2f\xcd\x7e\x5c\x8e\xe7\x87\xfb\xf3\x34\x5d\x3c\x68\x1c\x29\xcf\xd4\x85\xac\x01\x3e\xd7\x85\x96\xe7\x4d\xaa\x3b\x57\x1c\x5f\x7b\x90\x66\x46\xb1\x2e\x34\xbb\x76\xc9\x23\xd1\xf8\x66\x9f\xa1\x36\x14\x23\x43\x97\x78\xd4\xb9\x66\x8a\x94\x6f\x97\xb6\x11\xfb\x1e\xf2\x97\xd2\x89\xa1\xe5\xf1\xba\xe8\x7e\x1e\x8f\xf7\xd7\xd8\xb8\x3e\xe7\x2b\x07\x1b\xdf\xd7\x3e\x24\x5e\x2d\x9e\x7c\x99\x86\x7c\x36\x40\xda\x67\xe8\x74\xc2\xa6\xdf\xda\x45\x9e\x14\x72\x8d\xcd\x3e\x19\x62\xe2\xc5\x96\x0f\x0f\x93\xac\x27\xfc\x5d\x4a\xdb\xd7\xaf\xa3\xfc\xa4\x6f\x15\xb9\x84\xe6\x8d\xcf\xa5\xb0\x7c\x15\x58\x87\xfd\xfc\xcf\xff\x7c\xad\xe0\x85\x06\x90\xda\x13\x45\x69\x81\xd9\x99\x49\xba\xbd\x3e\x4d\x2e\xa6\x1a\x47\xb5\xe5\xa2\xfa\x30\x62\x8d\x11\x8c\xc5\x1c\xa5\x4f\xbd\x64\x44\x40\x84\x31\x08\x68\x97\x81\x0c\x50\xf3\x5c\xf9\x6c\x2a\x68\x53\x83\x19\xcb\xab\xfc\x2d\x3f\xe2\x48\x64\xb5\x80\xa5\x36\xdd\x40\xf5\xb1\x46\x39\xf3\xc6\x18\x30\x0a\xf4\xa4\x57\x1c\xde\x5d\x5d\xbc\xb1\x3b\xcc\xef\x40\xfb\x24\x91\x3d\xcb\x6f\xef\x6d\xd1\xe4\x8f\x5f\xed\x0f\xd0\xad\xe1\xd8\x67\xc9\x49\xf4\x12\xef\x50\xda\x2e\x39\xba\x74\x0c\x97\xf3\xe5\xc9\x27\xa3\x12\x68\x7c\xfc\x68\x98\x4b\x39\xb8\xd2\x97\xd2\xe1\xa0\xcd\x25\x67\x88\xb7\x14\xcf\xe5\xef\x52\x5e\x3c\x3c\x54\x6e\x2e\xfe\xbc\x8d\x48\x83\x59\xec\xe0\x48\xe3\xc6\x94\xeb\x69\xe8\x7d\x75\x12\xeb\x0f\x42\x98\x0b\x3c\xf3\x67\x1e\x9f\x0f\x26\xdc\x8f\xba\x98\x81\xc7\xe5\x62\xfb\x0c\x77\x31\xe5\xed\xa2\x8f\xe1\x77\xbf\xcf\xa1\xfa\x00\x16\x7e\xdf\xed\x64\x75\x75\x55\x9d\x9c\x9c\x68\x80\x36\x90\xf9\xc2\x17\xbe\xa0\xec\xe6\x5b\x80\xe5\x31\x45\xd8\xa4\x5b\xff\x5a\xb0\xf2\xc9\x4f\x7e\x52\x01\x00\x7c\xe4\x23\x1f\x51\x5f\xff\xfa\xd7\x63\xe4\x96\x9c\x6b\xe2\xe5\x9a\x1c\x75\x29\x07\xce\xe7\x34\x65\xc9\xf1\x43\x17\xde\x4b\xb4\x76\x89\x06\x1c\x44\x5d\x5c\x6c\xa7\xaa\xe9\x9e\x7f\xfe\x79\x55\x5d\xef\x6f\xff\x52\x2c\xaf\x53\x1e\x00\xc0\x10\x00\x46\xa3\x69\xb2\xf5\xcc\xdb\xa3\x9f\x7b\x6a\x67\xf8\x7f\xac\x4d\xd3\xf7\x02\x98\x1a\xa8\x34\xdf\x18\xa2\x76\x17\x6b\x57\xb2\x00\x45\xfe\x1a\x73\x49\xd1\xd8\x6a\x10\xe4\x1b\x6e\xdb\xf4\x6e\xab\x8b\xe5\x47\x25\x92\xdc\x3c\xd1\xd3\x5b\x6b\xf3\xef\xfd\xc7\x23\x47\xff\xf0\xc3\xad\xe9\x2b\xc6\x98\x7d\x28\xcf\xf9\x1f\x42\x75\xa6\xbf\xfa\x16\x86\x3d\x0a\xad\x81\x9c\x2a\xd2\x5a\xc3\xef\xff\xfe\xef\x5b\x76\x92\x02\x04\xcf\xbb\x04\x60\xa4\x46\xe4\xe2\x41\x69\x5c\x75\xed\xea\x34\xb1\x6d\x43\x92\x89\xf3\xf6\x0d\x5e\x10\x78\xf7\x0d\xb6\x31\xf2\x74\x19\x08\x63\xe3\xf0\xf0\x50\x9e\x5c\x65\xea\x52\x00\x52\x7c\x9f\x9c\xa7\xc9\x0f\x4d\x0b\x1c\xe1\xa7\x75\x5d\x07\xec\x10\x8f\x98\xb2\x8f\x49\xb3\xb3\xc2\x0d\xd0\x84\x78\x77\x75\xa7\xc9\x4b\x57\xde\xff\xab\xdd\x69\xc1\x54\x0c\xfd\xfd\xb4\x0d\xd1\xfd\xd2\x2f\xfd\x92\xfa\xbb\xbf\xfb\xbb\x1f\x57\xdf\xe8\x22\x57\x4c\x5e\x4e\xcb\x3b\x94\xe6\x7d\xbb\xd8\x06\x1d\x0a\xf3\xa1\x3a\xee\x6a\xd0\x62\x3d\xc8\xf1\xb3\x1a\xc0\x00\x40\x0a\x06\xd2\xd1\x3c\x59\x5f\x9f\x26\x17\xfb\x0b\xb5\x55\x2e\xf1\x54\x0b\x3d\xad\xaf\x2c\x13\xd0\x62\xec\x53\x7b\x09\xc8\x10\x38\xd3\xfc\x36\x8b\x4a\x95\x20\x84\x7e\xf9\xb7\xcd\x8f\xfd\x1a\x9a\x62\x23\x4b\xf9\x6b\xd3\x36\x30\x4b\xf4\xe1\xbd\xd5\xc5\x9b\x77\x57\x17\xb7\xa1\x3a\x3d\x54\xfd\xd1\xcf\xa7\x6b\xf6\x07\x88\x08\x45\x51\xc0\xdd\xbb\x77\x81\xf8\x87\x66\x20\xd6\x49\x0d\x90\x77\x48\xc5\xc2\x68\x1c\x4e\x2b\xc5\xe3\x61\x9c\x9e\xfe\xf2\x3f\xea\xb4\x23\xdc\x95\x57\x4a\xaf\x1d\x34\x20\xbc\x4b\x65\x20\xfd\xd2\x70\x2a\x03\x95\x8d\xb7\x7d\xfe\x1c\x2a\x3f\x1e\xc6\xf3\x20\x01\x4e\xee\x5c\x7d\x4f\x2a\x13\x57\x1d\x4a\x8a\x3b\x54\xc7\x92\xbf\xa4\x0b\x38\xad\xab\xfe\x25\x9e\x34\xff\x5d\xca\x80\xc6\xe1\x75\xef\x92\x35\x04\xc8\x24\xb9\xa8\x73\xb5\xa9\xd8\x7e\xca\xe9\x5d\x65\xe9\x93\x8f\xcb\xe2\x6a\x3f\x3c\x3d\x17\x3f\x57\x1d\xc7\xd2\x87\xc6\x85\xae\x74\xf4\xdd\x25\x87\xaf\x6f\xbb\xe8\x7d\xed\x8e\xbe\xbb\x26\x7b\xc1\x7a\xaa\x40\x4b\xcc\x38\xe9\xe3\xef\xaa\x37\x57\x3c\xe9\x3d\xa4\xdb\x79\x58\x97\x74\x42\x61\xb1\xe5\x45\xe9\x5b\xb4\xae\x0b\xe8\x24\xa5\x29\x39\x9e\x79\x69\xa0\xe0\x9d\x50\x4a\xa7\x06\x2f\xd5\x97\x3a\x15\x22\xa6\x89\x81\xec\xec\x38\xdd\x3e\x33\x49\x2f\xa6\x1a\xd7\x9b\x25\x1b\x43\xb0\x4a\x1b\xc4\x20\x36\xdf\x78\xb6\xcb\x3e\x00\x1c\xc6\x00\x58\xcb\x8d\xfd\x3a\xb3\x5d\x6a\x6a\x6d\xe2\x35\x34\x3e\x77\x36\x15\x9b\x2e\x03\x37\x86\x8a\x55\x3e\x14\xca\xcc\x8f\x06\xc5\xdd\x3b\xa3\xf9\x1b\x07\x83\x62\x17\xaa\x7d\x2d\xe4\x24\x11\xbd\x6c\xae\xfe\x5a\xa9\x2d\xb7\x3f\xf8\x83\x3f\x08\x95\x2f\x2f\xd7\xd0\x8c\x5c\xaa\x17\x29\x4c\xaa\x43\xa9\xd3\x4b\x7c\xa4\xf4\xb9\x2c\x3e\x3e\x34\x8c\xd2\xb8\xc2\x39\x1f\xd7\x8c\x81\x0f\xe4\x31\x65\x1b\x2a\x03\xfe\xec\x53\xb4\x3e\x5e\x9c\x1f\xcf\x8b\xc4\xd3\x35\x18\xbb\xf2\x16\x92\x95\xf3\x72\xe9\x01\x57\xfb\x70\x95\x7b\x57\x9e\x2e\x1e\xc0\xc2\x7c\xf4\x21\xa5\x1b\x93\x8e\x8f\x5e\xaa\x2b\xa9\x2c\x7c\x6d\xd1\xd5\x7e\x5d\x32\x85\xfa\x97\x8b\x5e\xd2\x0d\xb1\xe5\xe3\x92\xd9\xd7\xbe\xe8\xbb\x4b\xef\x84\xf8\xbb\xfa\xb2\xaf\x0c\x5d\xfc\x43\xed\x8e\x3a\x9f\x9e\x8c\x75\xae\x3e\xef\xd2\xdb\x2e\xdd\x17\xe2\x43\xe5\x8f\x91\xdb\x55\xbe\x31\x60\xc8\x17\x2f\xa6\x5d\xc6\xd0\xb9\xfa\xb0\x02\x58\xbe\xf2\x5f\x12\x86\xfa\x73\x3a\x29\x2e\x7f\x16\x07\x1c\x72\x55\xbd\x82\x12\xb0\x28\x28\x01\x4b\x7d\x14\xba\x57\xa8\xc1\xd9\x49\xef\xd1\xd5\x79\xb2\xad\x0c\x66\xcd\xe1\x9c\x72\xbd\xd0\xee\xed\x2e\x37\xda\x36\x09\xd7\x9b\x72\x0d\xb5\x7c\x50\x1b\x4b\xb3\x45\x17\x0d\x00\x56\x66\x1a\x43\xe3\x02\x30\xab\x0e\xf9\xa9\xac\x2b\xc6\x98\xfa\xdd\x34\x10\xa8\xda\x2a\x6e\x88\x4c\x06\x0c\x18\x98\x27\x66\xbc\xb7\x92\xdf\xba\xbb\xba\x78\x1b\x10\x5a\xf7\xb5\x18\x63\xe6\x92\xb5\xc5\x96\xd3\xd5\xab\x57\xf5\x67\x3f\xfb\x59\xdf\x80\xcd\x07\x6b\x69\x80\x8f\x51\x74\x52\x63\x91\x14\x0b\x4d\x47\xe2\xed\xea\x80\x2e\xde\xbe\x78\x3e\x3e\x31\x69\xb9\xde\x5d\xf9\x72\x3d\x77\x19\x10\x79\x1a\x21\x99\x38\xad\x8b\x8e\xfb\x49\xf5\xcc\xc3\x39\x8f\x18\xe0\xe7\x8a\x2b\xc9\xe9\x92\x81\xba\xd3\x94\x5d\x8c\x9f\x14\x16\xe2\x1d\x02\x69\xb1\xe9\x86\xea\xc5\x95\xb6\x34\xc0\xfa\x80\x45\x28\xed\x50\x5b\xe0\x34\x31\xbc\x5d\x7c\x62\xea\x99\xa7\x29\xbd\xd3\x81\x48\xfa\x8d\xed\x37\xa1\xf2\xf2\xe5\xe3\x34\x65\xec\xe3\xc3\xf3\xe4\x8b\xe7\xd2\x2d\xae\x71\xd6\x55\x06\xde\x7e\xe2\xb8\x36\xa3\x99\x90\x57\xc7\xba\x1d\x32\x2a\x41\x1e\x91\x9f\x87\x47\x50\xc6\x08\x7e\x4b\xe5\xe2\x6a\x24\x5d\x1b\x0f\xf7\x0b\xa2\x2e\x52\x70\x36\xac\xfe\xab\xac\x2e\xe9\xfa\x24\x5d\x3f\x3b\x4e\x1f\xef\xe7\x6a\xab\x0c\xc3\xd6\x37\x83\x9a\x13\x40\x0d\xf0\x00\x02\x3c\xea\xa3\xc9\xd8\x58\x56\x38\x8d\x41\x00\xbe\x44\x44\x4f\x26\x01\xa1\xa3\x46\x1e\x2b\xbb\xdd\xeb\xdb\x3e\xc1\x54\xfe\x47\x42\x67\x10\xf4\xa4\x57\xec\xde\x5b\x9d\xbf\xb9\xb7\x92\xdf\x05\x72\x8a\x08\x88\xa5\xc5\x18\x93\x1b\x63\xb4\xfd\xb3\x77\x07\xfc\xda\xaf\xfd\x9a\xfa\x93\x3f\xf9\x13\x5b\x37\x1c\x20\x72\x8b\x00\x90\x77\x4a\x07\x8c\x2e\xa4\x3c\xa4\xb8\xbe\xc6\x4c\xc3\xf8\xb3\xcb\x85\xe2\x84\x64\x0a\xc9\xe3\x7a\xf7\x3d\x73\xde\x21\xa5\xe8\x03\xf8\xbe\x38\xfc\xb9\x4b\x5e\xe9\xaf\x24\x9f\x8b\xb7\x44\x13\x8a\x13\xaa\x6f\x5f\x19\x85\x06\x72\x97\x8b\x51\xfe\x31\x7c\xbb\x28\x48\x69\x10\x8a\x91\x25\x54\xe7\x21\x79\xa8\x7f\xd7\x72\x8a\xe5\xdf\x85\xd6\x55\x0e\xe0\xf1\xe7\xe1\xb1\x65\xe2\x03\xc9\x3e\x17\x02\x2c\x31\xf2\x87\x40\x5e\x8c\xeb\x0a\xb0\x5d\xb4\x5d\xc0\xb1\xe8\xf8\x65\xae\x00\x50\x6f\x1a\xe6\xe1\xd6\xdf\x18\xa3\x2f\x5d\xba\xe4\x6a\xdf\xae\x49\x8a\xcf\xc5\xf6\xd5\x2e\x7d\x86\xc6\xd5\x00\xee\xa5\xa2\xfb\x71\x7c\x06\xc1\x13\xb6\x9b\x72\x39\x1a\xac\x01\x0b\x22\xa6\x89\x86\xec\xa1\x93\xde\xf9\xf5\x69\xf2\x58\x4a\x2f\x9d\x03\x00\x6a\xdf\x68\xf6\xbd\xb8\x0f\x81\x63\x2b\x0e\x5b\xe2\x69\xb1\xad\xb8\x7a\xee\x69\x59\x0e\x20\xa7\x98\xaa\xf5\x21\x69\x6b\x6e\xae\xcc\xf4\x60\x50\xec\xec\x0d\xf3\x5b\x8b\xc4\x8c\x41\xbe\x6c\x8e\x7e\xe0\xab\x75\xe1\x1d\x73\x5e\x34\x4a\x9c\x34\x9b\x8b\x99\x1d\xf3\xfa\x73\x29\x23\xa9\xc1\x87\x94\x21\x57\x38\xb1\x1d\xd3\x25\x13\xcf\x0f\xe7\x2f\xe5\x59\x1a\xf4\x7d\xca\x5a\x8a\x13\x02\x34\x52\xb9\x4b\xf9\x91\xf2\xe0\x92\xdb\x15\x9f\xcb\x1f\x03\xb6\x80\xd1\xf0\x74\x24\xf9\x38\xff\x90\xdc\xf7\x3b\x08\xff\x57\xbb\x18\x10\xe3\x8a\x27\xe5\xdb\x07\x2a\xbb\xf0\x3e\xad\x0b\xd5\x81\x2b\x3c\x26\xcd\xff\xd5\xf5\xab\x01\x00\x3e\xf7\xb9\xcf\xa9\x3f\xfe\xe3\x3f\x8e\x96\xe3\x13\x9f\xf8\x84\x7a\xf1\xc5\x17\xbb\x80\xa3\x07\x9d\x47\xa9\x6d\xc4\xb4\x13\x00\x00\x78\xe2\x89\x27\xd4\x47\x3f\xfa\x51\xb0\x79\xfe\xdd\xdf\xfd\x5d\xf5\x47\x7f\xf4\x47\x22\x38\x91\xdc\x17\xbe\xf0\x05\x05\xd0\x18\x0e\xae\x5e\xbd\xaa\xaf\x5f\xbf\x7e\xda\x3c\xc6\xe4\xe1\x41\xf0\x5e\x72\x12\x70\xe1\x11\xb8\xa2\x0b\x29\x65\x3e\xa0\x88\xb4\xec\xce\x16\xc5\xde\x53\xa5\x31\xdb\x98\xa4\x8f\xae\x2c\x92\x2d\x34\x90\x95\x27\x89\x2c\xd8\xa9\x00\x88\x41\x30\xd8\xec\x49\xb1\x4b\x46\xf6\x18\x74\x7d\x6a\xd9\x54\x34\xb5\xb9\x84\x9e\x91\x86\x1a\x7c\x2c\x9f\x28\x22\xe7\x84\x0c\x89\xd9\x22\x6b\x16\x88\x0c\x3d\x7f\x5d\x2d\x23\x61\x75\xe7\xcc\x2c\x35\xc7\xbb\xc3\xfc\xd6\xde\x4a\x7e\xdb\x80\x99\x23\x60\x7d\xf4\x19\x9a\x3d\x2d\x4b\x1f\x52\xf4\x1c\x81\x06\xe6\x47\x07\x13\x00\x59\x39\x4a\x40\x44\x0b\xfe\xfc\xd9\x35\xbb\xf1\xbd\xc7\x3c\x73\xe7\x6a\x47\xa1\xb8\xb1\x69\x75\x95\xcf\x57\x1e\x5d\xe2\x3c\xa8\x74\x1f\x44\x79\x77\x29\xc3\x07\x21\xab\x4b\xb9\x49\xcf\x5d\x06\xf4\xfb\xe1\x1d\xf3\x1c\x93\xa6\xcf\xcf\x15\xcf\x05\xf4\x24\x7a\xeb\xba\x96\x25\x8d\x23\xa5\x23\xe9\xf8\xd3\x80\xcd\xd8\xb2\x90\x40\x71\x0c\xaf\x96\xff\x6f\xfe\xe6\x6f\xaa\x3f\xff\xf3\x3f\xd7\x00\xe5\x00\xfc\xc2\x0b\x2f\xe8\x7e\xbf\x5f\x0f\xd6\xf4\x56\x73\x76\x1b\x6d\x7d\xf4\xf8\xf1\xc7\x1f\x87\x17\x5f\x7c\x51\x92\x23\xd4\x0e\xba\xb6\x9f\x2e\x6d\x2c\xba\xcc\x7f\xf0\x83\x1f\xe8\x1f\xfc\xe0\x07\x2d\x80\x42\x8e\x64\x03\x22\x2a\x9e\x77\xc7\x04\x58\x03\x2c\x1b\x11\x3c\x9f\x16\xe8\xd2\x46\xba\xe4\xdd\x35\x39\xf2\xca\x81\xdc\x23\x20\xd0\x03\x71\x15\xea\xa3\x80\x25\x33\xc6\x64\x00\x30\x40\xc4\x21\x00\xac\xaf\x4f\x92\xed\x8f\xbf\x7e\xe6\xb3\xef\xdc\x1b\xfc\x42\x3f\x57\xdb\xfc\xd6\x5b\x00\x0a\x19\xa0\x46\x2c\xc8\x68\x2c\x1d\x7f\x97\x78\x71\xbe\x36\xdc\x65\x6d\x59\x3a\x69\x64\x38\xa8\x29\x69\x0a\x34\xf9\x9d\xd1\xfc\xd5\x6f\x5d\x38\x7e\xf1\xd5\xed\xf1\x4b\x85\x82\x5d\x63\xcc\x3e\x96\x9f\x36\xb7\x9f\x3a\xb7\xdf\x29\xe2\x9f\x33\xa7\x8d\x29\x06\x99\xc7\x76\xba\x90\xb2\x73\x29\x1b\x17\xb0\x95\xf8\x73\x9e\x9c\x6f\xcc\xe0\x12\x23\xaf\x8b\x96\x77\x0a\xfe\xec\x0b\x73\xe5\xe1\x7e\xf2\xc7\x5d\x6c\x9e\xa8\x3c\x9c\xbe\x6b\x1e\x42\x03\x8b\x4b\x39\xc5\xd6\x8d\x44\x2f\xb9\xd3\x0e\x14\x5d\x9d\x54\x1f\xb1\xf1\x7c\xed\xb3\x8b\x5c\xa1\x78\xbe\xf7\x1f\xa7\x5e\xfe\x2f\xd3\xf9\x1d\xd2\x72\xd2\x79\xac\x09\x9d\xdb\x5f\xe4\xb7\x7f\x82\x7c\xee\x83\xb6\x73\x7c\x21\xff\x52\x79\xd4\x20\x6e\xe9\x9e\xb2\xb6\xf3\x82\xa7\xab\x57\xaf\xea\xcf\x7f\xfe\xf3\xea\x0f\xff\xf0\x0f\x35\x00\x80\x52\x4a\x69\xad\x1f\x44\x5b\x39\x2d\x48\x6e\x39\xdf\xb5\x24\x0f\xb2\x51\xd7\xca\x93\xa0\x63\x55\xa1\x43\x7b\x77\x8b\xbd\xbf\x65\x04\x00\xeb\x97\xee\x0d\x2e\x7f\xe8\x8d\xf5\xff\x6b\xfb\x38\xfb\x70\xaa\x71\xc4\x85\x25\x86\x12\x11\x31\x88\xe0\x86\x38\x17\x78\x69\xf1\x6f\x3d\xc8\x20\x26\x74\xb7\x0b\x00\xc0\x34\x29\x8e\x5f\x3f\x37\xfd\xd7\x6f\x5f\x38\xfe\xa7\x9b\x67\xe6\xd7\xa0\xbc\xb7\x65\xdf\x18\x73\x5c\x81\x97\x63\xf2\x71\xc5\xd6\xad\xb9\xc2\x8d\x8a\xf7\xab\xd4\x7c\x71\x62\xd1\x31\x38\xe8\xba\x28\xe0\x10\xb8\xf0\xc5\x7f\xd0\x74\xd4\xc5\x82\x22\x29\x9e\x0f\xd0\xc4\xc8\x23\xc5\x8b\x01\x1e\x5c\x06\x1a\x4f\x72\x31\xe5\xe3\x72\x5d\x41\x91\x8f\xcf\x69\x68\x4f\xab\x97\x62\xf3\xd6\x05\x6c\x76\xe5\xdf\xc5\x3d\x88\x7c\xc6\x96\x5b\x2c\x20\x8b\x69\xe3\xa7\x75\x75\x9a\x9f\xfe\xf4\xa7\xd5\xdf\xfe\xed\xdf\x6a\x6b\x49\x10\xe8\x5c\xf1\xb9\xd3\x00\x6d\xab\x83\xf4\x7d\x20\x80\x28\x4b\x43\xc8\xaf\xab\x8b\x6e\x47\x6c\x6f\x0a\x2f\x13\x25\xfd\x86\xee\x24\x23\x69\xf0\xdf\xd6\xf7\x92\x00\xca\xb2\xf9\xd4\xa7\x3e\xa5\xbe\xfc\xe5\x2f\x9f\x06\xb4\x73\x59\x1f\x48\x3f\xf6\xed\x71\x89\x55\xd2\xd2\x4c\x50\x8a\xab\x7f\xf5\x57\x7f\xb5\x2e\x5c\x7e\x77\x4b\x55\x21\xf5\x87\x15\xcf\x8d\x7b\xe7\x87\x0b\xb5\x95\xd8\x65\xa2\xca\xd5\x9b\x67\xed\x2d\xb5\x50\x9d\x11\x62\x08\xa2\x0d\x3a\xda\xdf\x29\xe2\x68\xc3\x0b\x46\x5c\x74\xe4\x96\x5d\x9f\xd3\x60\x60\xda\xd3\xfb\xf7\x56\x17\x37\x0f\xfb\xc5\x2e\x54\x9b\x71\xa1\xb4\xaa\x58\x0b\x8b\x26\x16\x96\x7a\x43\x2e\x33\xef\x49\x75\xd1\xa5\xb3\x85\xe2\xf0\x30\x89\x4e\xac\x57\x4f\x1c\x5f\x23\xe5\x1d\x26\x94\x3f\xd7\xf3\x69\xe4\x91\xc2\x7c\xfe\x31\xb3\xf6\x25\x05\x10\xe0\xed\x93\xdb\x27\xcf\xfd\xd4\xdf\x69\x78\x9f\xb6\x7c\x5d\xf1\x63\x69\x5d\x83\x69\x0c\x30\x96\x9e\xbb\x96\x87\x0f\x64\x4b\x32\x9f\x56\x21\x87\xc0\x6b\x97\x3c\x72\xd7\xb5\xcf\xf8\x26\x2b\x34\x8f\xbc\x2c\xba\x00\x1a\x97\xdc\x75\x9c\x0b\x17\x2e\xd0\xe5\x0f\xd7\x40\xbd\xf4\x2c\x58\x19\x34\x40\xbd\x9f\x43\x7b\x74\x75\x0b\x24\xbd\xf9\xe6\x9b\xf0\xa5\x2f\x7d\x49\x5f\xba\x74\x49\x91\xfd\x1f\xbe\x89\x45\x97\xb6\x2c\xb5\xeb\x5a\x8e\x8f\x7d\xec\x63\xf0\xb5\xaf\x7d\x0d\x00\x9a\x25\xa0\x2a\x3f\x8a\x7c\x27\x4f\x91\x78\xf5\x2f\xfd\xe0\x23\xbb\x89\xbe\xe6\x6f\x1f\x08\x38\xb1\x20\x4e\x4b\xb7\xff\x02\x94\xc6\x06\x3b\x16\xfd\xdc\xcf\xfd\x9c\xfa\xca\x57\xbe\x22\xf5\xa7\x98\xfc\xba\xe2\xb8\x26\xb1\x4e\x1e\xbe\x7b\x5c\x7c\x0d\x18\x84\x67\xee\xb7\x44\xf7\x37\x7f\xf3\x37\xb4\x81\xd0\x82\x6f\x81\x96\xb4\x80\x6c\x63\x92\xbe\x33\xcb\xd5\x06\x9a\xb6\x8c\x6d\x40\xd1\x5c\xc5\xdf\xbc\x91\x5f\x7b\xaa\x87\x1e\x71\x06\xb2\xf7\x05\x0c\xd8\x6f\x1f\x89\x69\xf8\x1c\x4a\x77\xc3\xb4\x9d\x01\x00\xad\xcc\xfc\x70\x50\xec\xec\x0e\xf3\x9d\x71\x56\x1c\x93\xef\x11\xcd\x8d\x31\xf6\xd2\x39\x0d\xd5\xf2\x10\x99\x1d\x68\x80\xf2\x3a\xe8\x7f\xfa\xa7\x7f\x8a\x55\x2c\x2e\x25\xea\xea\x2c\x5c\x01\xc5\x28\x6b\xa9\x51\x71\x5e\x2e\x25\xe6\xe2\xe5\x7a\x76\xc9\x0c\x20\x37\xec\x50\x47\xe0\xf2\x70\x99\x5c\x74\xae\x34\xb9\x8b\x2d\x6b\xdf\x00\xcc\xfd\x7c\x75\xe5\xcb\x5f\x48\x19\x70\xf9\xc0\x11\x16\x52\x28\x3c\x1e\xaf\x83\x2e\x83\x78\x57\x50\x14\x03\xa8\xba\xa4\xef\x72\x2e\xc5\x2b\xf9\x75\x4d\xaf\x8b\xdc\x5d\xf2\xe5\x02\x7e\x31\xb2\xc4\xa4\x23\xd1\xc4\xe4\x5d\x6c\x1b\x9f\xfe\xf4\xa7\xd5\x23\x8f\x3c\x42\xe9\xe8\x00\xcc\xc1\x0a\x1f\xb4\x01\x9a\xc9\x30\xd8\x78\xcc\x72\xd0\x02\x5d\x16\xd4\x90\xf7\x1a\xec\x5c\xbc\x78\x11\x00\x00\x9e\x79\xe6\x19\x30\xc6\xa8\x1b\x37\x6e\xf0\x76\x1c\xd3\xbe\x5d\x34\xbc\xac\x5a\xf1\xbf\xf6\xb5\xaf\x69\x80\x96\x95\xc5\x96\x43\x6b\xbc\x24\x80\x4e\x31\x1a\x5a\x3e\x92\xe5\xc5\x82\x13\x9a\xbe\x06\x68\x4d\x9e\x15\xb4\x81\x9e\x46\xc4\x5a\xa6\xaf\x7c\xe5\x2b\x5d\xf2\x4b\x9d\x0b\xc4\x84\xda\xcf\x92\x7f\x0a\x7e\x45\xed\x52\xd2\x3e\x45\xc5\x05\x05\x00\x80\xdf\xfa\xad\xdf\x82\x3f\xfb\xb3\x3f\x6b\x85\x57\x77\xb7\xd8\x0d\x45\x35\x78\x19\xcd\xd2\xd1\x9a\xfd\x36\x51\x85\x24\x9b\x1b\xde\xec\x85\x2a\xd8\x1c\x87\x26\x9b\xb2\xaa\x40\x76\x33\x2e\xdf\xe7\xd2\x1c\x7a\x36\xd5\x47\x3a\xf9\x17\xa4\xc3\xd7\xfb\x03\xbb\x64\x6e\xd9\x21\x00\x2c\x12\x33\xde\x1b\x2e\x6e\x1e\x0e\xf2\x3b\x5a\xc1\x14\x01\xeb\x3b\x5b\xd8\x65\x73\x9a\xce\x12\x00\xca\x0f\x6f\x3d\xf9\xe4\x93\xb6\x21\xc6\x82\x11\x10\xc2\x62\xc1\x03\x77\xd2\x60\xe8\x1b\xb8\x5c\x4a\xdc\x07\x2a\x24\x3a\x9e\x66\xac\x62\x94\xd2\x93\x1c\x07\x10\xae\x34\x5c\xe5\xc2\xd3\xa0\x4a\xc5\xc7\xcf\x05\x0c\xa4\x77\xa9\x4c\x24\x1e\x2e\xb9\x63\xca\xd4\x95\xbe\x54\x76\xbe\x3a\xf6\xd5\x29\x77\x31\x03\x28\x77\x31\xf4\x2e\xbe\xbe\x3c\x9d\xc6\x3d\x08\x3e\xae\xd9\x64\x97\xb4\xba\x0e\x02\x3f\xce\xbc\x77\x2d\x93\x16\x2d\xdb\xbb\x41\x2d\x27\xad\xc1\x5a\x78\xe7\x34\x00\xd0\x1a\x0f\xb8\x4e\xad\x7f\xc9\x55\x13\xca\x02\x9c\x8a\x5e\x01\x34\x5b\x1a\xfe\xea\xaf\xfe\x2a\x7a\x30\x05\xbf\xde\x0d\x3a\xc7\x1e\x16\x6a\x49\xa9\xff\xd8\x4a\x85\x02\x00\xb5\x32\x57\xd9\xea\x3c\x19\xf4\x73\x35\x4c\x34\x64\xca\x60\x8a\x55\xb9\x18\x00\x5d\x28\x33\xcf\x95\x99\x2e\x12\x33\x9f\xf4\x8a\xe9\xa4\xa7\x73\x8d\xad\xfd\x94\x1a\xca\xf1\x08\xc8\x7b\xcb\x19\x63\xf4\xf3\xcf\x3f\xaf\x84\xa5\x35\x57\x1b\x08\x95\xc1\xa9\xe2\x49\xc3\x6e\xa8\x11\xba\x06\xae\x60\xe3\x65\x28\x52\x41\x09\x9c\xe8\xb7\x89\x86\x00\xb0\x7e\xf9\xce\xca\x53\x3f\x79\x63\xfd\x0b\x67\xc7\xbd\x67\x12\x03\xc3\x1a\x4c\x08\xeb\x76\x22\xc0\x08\x6c\x46\x11\x37\xd1\xf2\x9b\x73\x3d\xc8\xa5\xa6\x25\x1b\x82\x0d\x61\x5a\x82\xa4\xb2\xf3\xec\xaf\xe4\xd7\x5f\xbe\x78\xf4\xe5\xd7\xb6\x26\xdf\x9c\x64\x7a\x07\xc8\x77\x89\xaa\xbf\x29\x94\x1b\x73\x6b\xeb\x8b\xed\x68\x55\xe3\x90\x14\x6f\x8c\xa2\xb8\x1f\x85\xed\x4b\xf3\xb4\x7c\xbb\xb4\xab\x1f\xa7\x8b\x4d\xe7\x7e\xe5\x71\x01\xf9\xd8\x0e\x2f\xf1\x83\x0e\x32\x75\x69\x23\x12\xff\x1f\x47\x7d\xb8\x40\xb3\x94\xa6\x6f\x90\x94\xe2\xba\xd2\xeb\x02\x0a\x5c\x13\x34\x7e\xbf\x77\xa0\x00\x00\x20\x00\x49\x44\x41\x54\x57\xdb\xef\x9a\xbe\x0b\xd8\xb9\xfa\x1b\x80\x3b\x3d\x5f\x5b\x72\xa5\x1b\x13\x37\x56\x7e\x9e\x07\xee\x5c\xf5\xd4\xe2\x49\xf7\x00\x2f\x40\xd0\xbf\x3c\x02\x2c\xdd\xeb\x05\x74\x60\xa6\xcf\x60\x20\x4d\x35\xaa\xac\xc0\xb4\x97\xab\x34\xd5\x98\x29\x53\xc6\xd1\x08\x5a\xa3\xd1\x5a\x41\x9e\x2b\x93\xcf\x53\x9d\xe7\xca\x68\x83\xe5\x60\x5c\xe9\x5a\x3a\x58\x03\xd1\xbb\xb5\x6c\x16\xd0\xd8\xcb\x3f\xbf\xfa\xd5\xaf\xc2\x9b\x6f\xbe\xe9\x6b\x07\xa1\xb6\xcc\x01\xfe\x52\x39\xb0\x32\xae\x81\xca\xd2\x37\xfd\x00\x55\x62\x20\x5d\x99\x27\x83\x95\x85\x1a\xf5\x34\xae\x6f\x1d\xf7\x36\xb7\x8f\xb3\xf3\x6b\xb3\x64\x33\xcb\xd5\x99\x54\xe3\xd0\xae\x58\x68\x05\xd3\x45\x62\xc6\xb3\xa4\xd8\x3b\xe9\xeb\xc3\xdd\xe1\xe2\xee\xee\x30\xdf\x1d\xf7\x8a\xfd\x71\xa6\x8f\xa7\xa9\x9e\x16\xca\xe4\x80\x35\x78\x69\x01\x19\x3a\x2e\x55\x65\xc8\x4f\xbc\xfa\xf2\x2b\xb9\x98\xb6\x0c\x82\x3f\x00\xf8\xef\x71\x71\x15\xb2\x0b\x51\x4a\x1d\x71\xc9\x59\x13\x17\xbd\x29\x17\x9a\x46\x99\x1a\x63\xd2\x87\x8e\xb3\x0b\x83\x5c\x6d\x29\x03\x59\xcb\x6a\xb2\xf4\x2d\x21\x53\x2f\x03\xd5\x76\x92\xd6\xd2\x0f\x39\xce\x8c\xcd\x15\xff\x4b\xa0\xa3\xda\xab\x62\x88\x4d\xc6\xb3\x25\xa6\xf5\x95\xe8\xe6\xb2\x3b\x64\xf4\x08\x39\x9a\xf9\x51\xbf\xb8\xbb\xbf\x92\xdf\x9d\xa6\xfa\x18\xaa\x1b\x72\xc9\x6d\xb9\x9a\x1c\x81\xd6\x9c\x8f\xa7\x3c\x7d\x0a\x8b\xd3\xf8\xea\xc5\x15\x8f\xc7\x95\x66\x02\x21\x05\x29\xb5\x1b\x5f\xfa\xae\x46\x1c\x6a\xfc\x54\xee\x90\x32\x77\xc9\x16\x03\xc6\x63\x65\x95\xe4\x89\x19\x24\x63\x40\xa2\x12\xfc\x42\x4e\x52\x00\xb1\xe5\xdd\x45\xfe\x2e\x03\xba\x54\x1f\xad\x41\xc3\x91\x1e\x6f\x97\xbe\xb6\xac\xc1\x2f\xbb\xaf\x8d\x52\x3f\x5f\x5e\x5c\xc0\x4a\x6a\xf3\x52\xfb\x73\xf1\x77\xb5\xc1\xd0\x20\xe0\xca\xaf\xd4\xc7\x7d\x3a\xc5\xd5\x26\x7c\x20\x46\xe2\xc7\x69\xea\x74\xb8\x95\xc5\x65\x61\xa9\xc6\x04\x85\x88\x4a\x01\xa6\xbd\x1c\xb3\x2c\x57\x83\x7e\x81\xc3\xd1\x2c\x1d\x9d\x1d\xa7\xeb\x67\x26\xe9\xfa\x70\x91\xac\x67\x05\x0e\x0c\x00\x2c\x12\x33\x5d\x24\x7a\x3e\x4f\xcd\xf4\xa4\x57\x8c\x77\x87\x8b\xfd\xe3\x41\x71\x3c\x4b\xf4\xb8\x0c\x33\xf3\x85\xd2\xf5\xf5\x13\x50\xe9\x5f\x0a\x5e\xaa\x67\x05\xd0\x58\x5f\x2a\xd0\xc2\xcb\x2f\xa6\x1f\x4a\xed\xb6\xce\xbf\xbd\x5b\x05\xa0\xb1\xae\x90\xc3\x2b\xf5\x38\x69\x8c\x29\x01\x8b\xc6\x6c\xb8\x50\xc3\xf5\x69\xba\xf9\xc8\x41\xff\xc2\xc3\x07\xd9\xa5\xb5\x59\xf2\xc4\x20\x4f\x1e\xeb\x15\x78\x41\x19\x58\x47\x83\x43\x64\x2b\x2a\x1a\x61\x0a\x60\xa6\x1a\x61\x9c\x2b\xb3\x33\x4d\xf5\xb5\xfd\x95\xfc\xfb\x37\xcf\xcc\xae\xdd\x5e\x9b\xdf\x3a\x58\xc9\xf7\x27\x3d\x3d\xce\x95\x99\x03\x82\xbd\x10\x55\x61\xf9\x1d\x3d\xba\x6f\xc8\xd6\x17\xb5\xbe\x48\xfd\xc5\x57\x4e\xd2\xb3\xab\xaf\x2c\xc5\xe7\xc0\x45\x4a\x94\x27\xc2\x5d\x70\xa0\xb1\x9f\x04\x27\xfb\x37\x5a\x95\x52\x2f\x13\x19\x48\x95\xc1\xec\xec\x24\x7d\x67\xaf\x50\x1b\x08\xa0\xe8\x9e\x15\x72\x45\x4a\xeb\x36\xdc\xd6\x7d\xb7\x74\xff\x0a\xbf\xb3\x85\xee\x4a\x69\x7d\x59\x1a\xeb\xd0\x16\x78\x21\xb1\xf9\xc9\x23\x24\xd6\x15\x4e\x6b\x37\x0e\xe7\xca\x4c\xf7\x56\x16\x37\x4f\xb2\x62\xcf\xa8\xf2\xb8\x33\xdd\xdb\x02\x6d\x64\xdb\xf0\x31\x06\xe6\xf3\x39\x7c\xe0\x03\x1f\x50\xff\xf1\x1f\xff\x21\x0d\xa8\xb4\x9c\x43\x0d\xc5\x85\xf6\x39\xbd\xe4\x24\x85\xe5\x73\x2e\xf0\xe4\x6b\x88\x12\x68\x00\x90\xe5\xf2\x0d\x02\x3e\x7a\x9f\xac\xd2\x80\x29\xc9\x21\x29\xe2\x10\xd8\x09\xbd\xbb\xe4\x71\xc9\xc2\xe9\x42\x40\x34\x04\x78\xa4\x01\x0e\x00\x40\xa5\x69\x0a\x79\x9e\xeb\xd1\x68\xa4\x00\x00\x8e\x8f\x8f\x5b\x84\xa3\xd1\x08\x8e\x8f\x8f\x79\x78\x68\x80\x95\xf2\x26\xb5\x2f\xd7\xe0\xeb\x72\x31\x79\x92\xfc\x62\xdb\x4b\x8c\x1e\x94\xd2\x8b\x01\xbb\xd2\xb3\x2b\x5c\x72\xbe\x36\xe9\x2a\xef\x10\x58\xf2\xc9\xe3\x72\xae\x81\x0b\x00\xea\xed\x00\x1a\xa0\x3d\x50\xdb\xf0\x96\x35\xa5\xfc\x4b\xa1\xb4\xa0\xa4\xa9\xc1\x34\xcd\xd5\x60\x90\xab\xe1\x3b\x8e\xb2\xcd\x8b\xfb\xfd\xc7\x1e\x3a\xe9\x3d\x31\x9c\x27\x97\x7b\x05\x5e\x48\x35\x6e\x40\x69\x99\xcf\x00\x00\x0c\xc0\xdc\xa0\xc9\x01\x60\xae\xd1\x1c\x2f\x12\x73\x73\xd2\xd3\xd7\x0f\x07\xf9\xeb\x77\xd6\xe6\x6f\xde\x5c\x9b\xdf\xba\x3b\x5a\xec\x2f\x94\x9e\x17\xaa\x3c\x28\x61\xa0\xfe\xdc\x4a\x7d\xf9\x67\x25\x17\x08\x83\x34\xbd\x1b\xa5\x4b\x5d\x2d\x95\x97\xb4\x97\x85\x8e\x8f\xd5\xf6\x89\xd2\xc2\x64\x30\xcb\x72\x35\xdc\x1c\xf7\x36\xde\x7d\x77\xe5\xf2\xa3\xfb\xfd\x9f\x1c\xcd\x93\x67\xd3\x42\x3d\x96\x68\x58\x07\x28\xcb\xc0\x1e\xb4\x05\x68\x26\xd7\x68\xca\xc1\xb4\x1c\x9b\x10\xb2\x02\xf2\x41\xae\x3e\xbc\x3e\x4b\x76\x1f\x3e\xca\xae\x1f\xf7\x8b\x6f\xbd\x75\x66\xf6\x6f\xaf\x9f\x9b\xbc\xba\x33\x5a\xec\xce\x13\x3d\xd5\x25\x78\x99\x5b\xc0\x52\x81\x96\xdc\xe6\x9b\x02\xbb\xab\x57\xaf\xea\xe1\x70\xa8\xc6\xe3\x71\x4c\xdf\xb7\xae\x4b\x5f\x68\xc5\x77\xed\xd0\x08\x82\x11\x8f\xbf\xb3\x93\x56\x1b\x73\xa9\x75\x25\x03\x80\x0c\x11\x87\xc6\x98\x21\x02\xae\x6f\x4c\xd2\xf3\xbf\xf4\xbd\xcd\xff\x7b\xeb\x24\xfb\x48\xa2\x61\x54\x83\x89\xa5\x4d\xb4\xcb\x27\x85\x6a\xcb\x09\xbd\x85\xce\x10\x2b\x46\x6b\xaf\x4c\xb3\x65\xc6\x5e\x62\x67\xea\x8f\x38\xb6\x97\x8c\xec\xe9\x25\xe9\x68\xb4\x6b\x45\xc9\x80\x81\xc3\x7e\xf1\xe6\x37\x1e\x3b\xfc\x12\x5d\x26\x32\xc6\x1c\x56\x47\xa0\xc7\xc6\x98\x31\x36\xb7\xe7\x6a\x80\x1a\xe9\x4b\xcb\x44\x70\x8a\x3a\xe8\x02\x18\x7c\xf4\x52\xda\x3e\xe0\x21\xc5\x0b\xc9\xe9\x03\x64\x21\xe7\x6a\x73\x2e\x40\xe1\xf2\xf7\xf1\xee\x2a\xbf\x14\xde\x15\x5c\x49\xe9\xc4\xca\xed\x92\xa5\xb3\xa3\x0a\xdb\x9e\x30\x78\xe1\x85\x17\xb4\xbd\x04\x8c\xd3\x44\xba\x07\x22\x1b\xe3\x07\x10\xee\x2f\xb1\x69\xfb\x74\x60\x97\xb0\xd3\xfa\xc5\x4c\x28\x42\x61\x0f\xaa\x0f\x3d\x10\x7e\xdc\xca\x02\xd0\x3a\xde\x9b\x02\xb4\x27\xb1\x00\x90\xf6\x0a\xcc\xb6\x8f\xb3\xf5\xcb\x77\x57\x1e\x7f\xc7\x51\xf6\xcc\x68\x96\xfc\x6f\xfd\x5c\x5d\x4e\x35\x9e\x47\x83\x23\x04\x48\xd1\xb1\x72\x50\x4d\x36\x75\x05\x64\xa6\x1a\xcd\x7e\x9e\x98\x9b\xe3\x5e\xf1\xad\xdb\x6b\x8b\xff\xf9\xea\xf6\xf8\xbb\x6f\xad\xcf\xf6\xf3\xc4\x4c\x4d\xb5\xd7\xd0\x80\x69\x59\x62\xec\x1f\xdf\x7f\x18\x71\xb7\x96\x37\xec\x63\x1f\xfb\x98\x7a\xfa\xe9\xa7\x6b\x3a\xb6\x8f\x25\x25\x40\x2e\x03\x53\x96\xc3\x43\xc7\xbd\xcd\xc7\xef\xad\x5c\x7e\x6c\x7f\xf0\xf1\xb5\x69\xfa\xb1\xac\xc0\x27\x95\x81\x11\x02\xaa\xd6\x40\xe4\xd8\x2a\x51\x8f\x63\x8c\xc4\x00\x68\x8d\xe6\x70\x9e\xe8\x57\xf7\x87\xf9\x8b\xd7\xcf\x4e\xbf\xfa\xda\x43\xe3\xd7\x0e\x06\x05\xb5\xbe\xd4\x27\x60\x01\x5a\x7b\x84\xc0\x96\x8f\x70\x75\x47\xa8\x7c\x7c\xb4\xde\x78\xae\xa5\x22\x49\xc1\x4b\x8c\xa9\x9f\x6b\xf6\x5a\xbb\xda\x4a\x51\x55\xd0\xd2\x86\x23\x80\xf4\x91\xc3\xfe\xf6\xca\x3c\xb9\xa0\x34\x0c\x6a\x4b\x48\xab\xc4\xab\x22\xe7\xcb\x46\xd8\x9c\x1e\x6a\x5d\xe8\xcf\xd7\x78\x2a\x6f\xf2\xd3\x7c\x6f\xa8\xfe\xf6\x11\xe1\x41\x59\xb8\x4e\x2f\xd5\x5b\x81\x9b\xc4\x34\x80\x3e\xea\x17\x3b\xf7\x86\xf9\xce\x2c\xd5\x63\x80\xd6\x47\x15\xf9\x25\x73\x74\x66\x42\x3b\x45\xcc\x00\x25\x85\x49\x28\xd5\x87\x60\x43\x7e\xbc\xae\x43\x71\x24\xb9\x4e\x2b\x67\x8c\x8b\x91\x21\x56\x4e\x17\xef\xae\xf2\x4b\xe1\x3e\x1e\x5d\x65\xe8\x12\x2f\x96\x5e\x74\x14\x90\xd0\x67\xaa\xa8\x62\x40\x0b\x05\x3a\x1d\x65\x8b\x55\x7e\x0f\x24\xbf\x2c\x7e\x48\x07\x72\x9d\x07\x24\x0c\x48\x78\x8c\x52\x8e\x55\xfc\xf7\x03\x7e\xe9\x73\x17\x39\x62\xf8\x89\xb2\x6c\x6f\x6f\xc3\xce\xce\xce\x12\x03\xc9\xca\x62\x27\xb4\xca\x60\x7a\x66\x9a\x0e\xdf\x77\x6b\xf4\xf8\xe3\xf7\x06\x9f\x1e\xcd\x92\x9f\x4a\x35\x3e\x86\x06\x86\x08\x90\xd1\x93\xa2\xae\xc9\x23\x1a\x03\x06\x51\x29\x80\x81\xd1\x30\x48\x50\x6d\xa4\x1a\x1e\xeb\xe7\xea\x99\xb5\x69\xfa\xb3\x8f\x1c\xf4\xbf\x71\x67\xb4\xf8\xca\x77\xce\x1f\xff\xfb\xcd\x33\xb3\xfd\x79\x62\xa6\x64\x62\x6d\xf7\x1b\xd2\xcd\xaa\x5d\x00\xb1\x8b\x4e\x01\x80\x7e\xdf\xfb\xde\x47\xdf\x5b\xa0\x05\xa0\x3e\x65\x9b\x01\x40\x36\x5c\xa8\xc1\xe5\x3b\x2b\x97\x9e\xb8\x33\xfc\xe4\xd6\xb8\xf7\xa9\x2c\x57\x4f\xa9\x12\xb4\xa9\x7a\x7d\x80\x6c\xcb\x34\x95\xc9\xa5\x35\x9e\x61\x7b\xcc\x6a\x0d\x8b\x00\x2a\x31\xb8\x31\xc8\xd5\x73\x0f\x1d\x65\x97\xd7\x27\xe9\x47\x1e\x3e\xec\xff\xbf\xdf\xdf\x3e\xf9\xff\x5e\xdb\x9a\xdc\x5a\xa4\x66\x4c\x64\xb5\x63\x57\x6b\xe9\xc8\x53\x26\x2e\x80\x1f\xa2\xf5\xc6\x4b\x1d\x81\xae\x0e\xc9\x19\xf3\x81\xcc\x39\x4b\xe7\x1b\x73\xd9\xce\xf1\xf2\x1b\x45\x06\xb2\x87\x8e\x7a\xef\xca\x0a\xb5\x49\x76\x43\xb7\x80\x86\xc1\xe5\x05\x20\x42\x52\x57\x9c\x03\x59\xb6\x9e\x6d\x84\xd6\xad\xbc\x7c\x03\xb0\x60\x65\xb1\xcd\x81\x2e\x31\x71\x57\x24\x66\xba\xb7\xba\x78\x73\x9c\x15\x07\xe5\xda\x62\x65\x92\x64\xa7\x89\x48\x14\x5f\xc5\x2b\x4f\x98\xcb\xd1\x38\x5d\x66\x52\x3c\x9e\x54\xc7\xb1\x3c\x5d\x71\xb8\x9c\x31\x0a\xd0\xc5\xa3\x4b\x1c\xd7\x4c\xd9\xe7\x0f\xb0\xdc\xb6\x7d\xf9\xf0\xc5\x09\x95\x8f\x94\x3f\xc9\x85\x2c\x2f\x51\x83\xd4\xef\xfd\xde\xef\xa9\x5e\xaf\x57\x03\x10\x76\x75\xf8\x52\x5f\xa0\xfe\x92\x73\xec\xcf\x02\x80\x12\xd8\xf8\xc2\x03\xae\xeb\x40\x1d\x0b\x46\xbb\xd2\x76\x89\xdb\x35\x8c\xb7\xd5\x2e\x00\xfe\xb4\x60\x3d\x66\xa0\xb8\x6f\xde\x3b\x3b\x3b\x4b\xd6\x16\x02\x5a\xec\x35\x18\xaa\x02\x2c\xd9\xda\x2c\x1d\xbe\x6b\x6f\x70\xe1\xdd\x77\x86\x1f\xd9\x3a\xe9\x7d\x7a\x90\xab\xf7\x2a\x03\xeb\xa5\x5c\x64\xcf\x63\xf5\x6b\xc0\x01\x5e\xc8\x4d\xea\x64\x3f\xa2\x42\x03\xa3\x9e\xc1\xcb\xc9\x34\xb9\xb8\xb2\x50\x1f\x59\x9f\x24\x7f\x7f\x6d\x6b\xf2\xff\x7c\xf7\xfc\xf8\xb5\xa3\x7e\x7e\x0c\xe5\xe4\x52\x55\x93\xcc\x14\xaa\x81\x1a\xc8\x98\x28\xec\xed\xe0\xe5\xe0\x72\xda\xca\x43\xcb\x03\xda\x96\x16\x7b\x21\x6b\x76\xee\x38\x5d\x7f\x6a\x67\xf5\xe9\x4b\xbb\x83\x5f\x3e\x33\x49\x3f\x91\x6a\xbc\x40\x2d\x4c\xae\x31\x90\x4e\xec\x25\x1a\xe9\xd2\x55\x00\x54\x89\x31\x9b\x2b\x0b\xf5\xe1\x87\x0f\x7b\x17\x56\x16\xa3\x77\x0e\x17\xc9\x17\xbf\x75\xe1\xf8\xda\x42\x99\x31\x60\x6d\x25\x03\xbe\xef\xc5\xd3\xb7\x5d\x6d\xe9\xbe\x5c\x42\x9e\x4d\x95\x08\xdf\xd6\xa1\xc8\x33\x77\x86\x85\xd3\x5f\xa3\x94\x52\xa6\xd2\x72\xcf\x3e\xfb\x2c\x56\x68\x16\xab\x06\x9b\x54\xa8\xb2\x0f\x00\x19\x02\x0c\x12\x83\x6b\x4f\xdf\x1a\x7d\x6c\x63\x9a\xbe\x3f\x31\x38\xb0\x90\xa0\x55\x21\xb0\x8c\x18\xc1\xf1\x4e\x8f\x37\x4b\x34\xae\x78\x2d\x6b\x0e\x2e\xa7\x4f\xdf\x5c\x07\x98\x26\xbd\xe2\xde\xf7\xb7\xc7\xff\xb6\x33\x5a\xdc\x58\x24\xfa\x10\x00\x26\x00\x30\x41\xc4\x59\x75\x97\xcb\x02\x00\x16\xd8\x5c\xfc\x63\x00\xca\xf3\xf2\x07\x07\x07\xb8\xbb\xbb\x6b\xb3\xc9\xfb\xa5\x86\x36\x86\xa2\x74\x00\x4d\x7d\x58\x1a\x3b\x68\xd1\x67\x1b\xce\xeb\x5b\x09\xfc\x01\xda\xf5\xcf\xd3\x06\x68\xcb\xc9\xe9\x0c\x2c\xa7\xc1\xf3\x46\x0b\x95\xfa\xab\x00\x0f\xe3\xe0\x45\xf3\x48\xfd\xc0\xf1\x4e\x79\xd0\x8e\xc6\x31\x2f\x7d\xa7\x32\xd0\x32\xf0\xc5\xe1\x79\x05\x16\xc7\xc5\xdb\x3a\x5a\x8f\x3e\x79\xea\xb8\x4f\x3f\xfd\x34\xfe\xf4\x4f\xff\x34\xbe\xf2\xca\x2b\x35\x38\xb9\x72\xe5\x0a\x3e\xf7\xdc\x73\x98\x24\x65\xf7\x7f\xee\xb9\xe7\xf0\xca\x95\x2b\x55\xd3\x47\x9a\x0e\x22\x22\x1a\x63\x90\xbe\xd3\x5f\xfb\x4c\xe9\xec\x33\xa1\x31\x96\xff\x95\x2b\x57\xf0\xca\x95\x2b\xf8\xd2\x4b\x2f\xb9\x74\x8a\xe4\xb8\x0e\x92\xe2\x4a\x65\x15\xa3\xc3\xee\xc7\x49\x7c\x7d\xba\x52\x8a\x27\xb5\x55\x17\xef\xff\x2a\x17\x93\x6e\xa8\x7c\x6b\x3f\x3a\x69\xb5\xfa\x9f\x81\x96\x14\x00\x7a\x89\xc1\xc1\xb9\x71\xef\xdc\xfb\x6f\xad\x7e\xe0\x3d\x77\x86\xbf\x75\x6e\xdc\xfb\x4c\x3f\x57\xef\x51\x00\xab\x65\xcb\x6c\x8f\x07\x56\x50\xda\x79\x25\x5d\x4c\x2f\x27\x2d\x69\xab\x66\x5a\xa6\xb9\xd6\x2f\x92\x4b\xeb\xb3\x64\x7b\x6d\x9a\xcc\x16\x89\x19\x4f\x7b\x7a\x9e\xa3\x31\x95\x8c\x86\x2c\x67\x19\x28\x3d\x10\x00\xcc\x73\xcf\x3d\xe7\x6b\xc7\x62\xfd\x7d\xfe\xf3\x9f\x57\xcf\x3d\xf7\x1c\x92\x7e\x46\x41\x4b\x8a\x88\x3d\x00\xc8\x94\x86\xc1\x85\x83\xfe\xb9\xa7\xdf\x1e\xfd\xb7\x77\xee\x0d\x7e\xfd\xcc\x34\xfd\xa9\x9e\xc6\xf3\x08\x98\x80\x41\xf0\xce\x01\xaa\x54\xe9\xd8\x45\xcb\xaa\x29\x07\xa9\x1c\x11\x00\x20\x49\x0c\xae\x65\x85\xba\xb0\x3e\x4d\xce\x0d\x72\x75\xef\xee\xea\x62\x3f\x57\x46\x57\xdb\x31\xea\x71\x9e\x02\x96\x2b\x57\xae\x80\x50\x1e\x0f\xa2\x4d\x2f\xc5\x49\xd8\xbb\xcd\x8f\x6b\x80\xa3\x8e\x86\xd3\xf7\xfa\xd7\x90\x4f\x6a\x5f\xb9\x72\x85\x2a\x3d\x7a\xe1\x5c\x66\x8c\x19\x28\xc0\xe1\xfa\x2c\x39\xfb\xde\x5b\xa3\x9f\x1e\xcd\x93\xcb\x08\x90\x2c\x83\x8e\xf0\x85\x71\xf4\xa8\xb3\xeb\x82\x38\x4b\xd3\x7c\x32\x00\xca\x7d\x2e\x06\x5b\xcb\x4e\x00\xb4\x43\x54\xff\x97\xee\x8c\x91\x46\x2c\xa3\xf7\x56\xf3\xd7\xbf\xbf\x3d\xfe\xe6\xe1\x20\xdf\x31\x0a\x4f\x10\xf1\x04\x11\xc7\x50\x82\x97\x45\xf5\x57\x00\x40\x81\x88\x05\x96\xf7\x08\x98\xab\x57\xaf\xea\xdd\xdd\x5d\x0a\x3a\x6c\xd9\x5a\x40\x51\x67\x83\x24\xab\x99\x3f\x7f\xe6\x20\x42\x0a\x97\xe2\x4a\xf5\xcb\xc3\x38\x4f\xea\x5c\x69\xb9\xe2\x48\xf2\xf9\x78\x48\x34\x3c\xdd\x18\xde\xf4\x19\x1d\xfe\x5c\xee\x2e\xb2\x85\xe4\x09\xf1\xee\x1a\xa7\x8e\xbb\xb3\xb3\x63\x3e\xfe\xf1\x8f\xa3\x05\x0c\xd8\xdc\xbe\x69\x4d\xf5\x14\x80\x24\x50\xce\x34\x39\x48\x49\xc8\x60\xd3\x32\xef\xb3\x67\xe0\x71\x4d\x35\x52\x41\xa3\x5b\x6a\x20\x63\xff\x9e\x7d\xf6\x59\x7c\xf9\xe5\x97\x5b\xf9\xdd\xda\xda\x52\xe3\xf1\x58\xaa\x13\x80\xc0\x40\x09\xcb\x16\x99\xae\xa0\x86\xfb\xb9\xe8\x5d\xe0\xd2\xc5\x9b\xeb\x4c\x17\x0f\x2a\xb3\x4b\xd9\xbb\xd2\xe9\xf2\xdc\x85\x37\xf7\xa3\x32\xba\x26\x4e\x00\xd0\x4c\x5a\x01\x80\xef\xe3\xb0\x9f\x7b\xe9\xa5\x05\xae\xbc\xe3\x38\x7b\xc7\x4f\xdc\x5e\xfd\xd0\xbb\x76\x57\x3e\x73\x66\xda\xfb\x64\x4f\xe3\xb6\x32\xd8\xa3\x96\x13\x9b\x68\x09\x23\x4a\x45\xce\x81\x89\x25\xa8\x85\xa3\x61\x36\xd8\xd4\x50\x48\x29\x83\x2b\x59\xa1\xce\xaf\x2e\x92\x87\x57\xe7\x89\x29\x94\x39\x9a\x64\x7a\xba\x50\xba\xbe\x5d\xd6\x22\x0d\x9b\xb7\xea\xdd\xb0\xb6\x4b\xcb\x4a\xb4\x2e\xb8\x40\x0b\x54\xcb\x64\x50\x5d\x0f\xf2\xd0\x51\x6f\xe3\xfd\xb7\x56\x3f\xf9\xe8\xfe\xe0\xd7\xd7\xe6\xe9\xb3\xa9\xc6\xb3\x00\xa8\x90\xe4\xc7\xe5\xc8\x15\x67\x74\x4c\x02\xe9\x9a\x0f\xb9\x21\x22\x40\x79\xdc\x7a\x25\xcb\x93\x77\x8c\x16\xea\x6c\xaa\xf1\xce\xbd\x61\x7e\x58\x24\xa0\xab\xc1\xd0\x54\xd6\x16\xcb\x42\x43\xd5\xaf\x3d\x60\x4e\x6a\x27\xd4\xc5\xb4\x5d\x00\x68\x8e\x4b\x71\x53\x0e\x2f\xf8\x98\x75\xd0\x25\x73\x90\xfd\x30\x93\xc7\x4c\x58\x2b\xbf\xa4\xc0\x74\xf3\xa4\xb7\xd1\xcf\xd5\x76\x79\xf6\xdc\x42\x15\x0a\x0c\x4a\x08\xc9\xef\x61\x69\x15\x3e\xab\xd4\xd6\xa5\x72\x55\x3c\xbb\x3f\xb7\x6e\xec\xd8\xf0\x06\x9b\x0e\xe5\x49\xff\xb7\xda\x6f\x6b\x37\x4d\x53\x10\x0a\xf2\xbd\x95\xfc\xcd\x93\xbe\x3e\xd0\xaa\x5c\x26\x32\xc6\xd0\x8b\xe6\x5a\xc7\xf0\x4a\xd9\x96\xea\x5a\x5a\x5a\x70\x99\xcc\x5d\x4b\x10\x9c\xce\x15\x8f\xd6\x0f\x4f\xdb\xfe\xba\xcc\x7c\x3c\xbd\xae\xcb\x22\xbe\x65\x8f\x10\x0f\x29\x4d\xf0\x84\xc5\x96\x11\xe7\x17\x92\x0d\x1c\xfe\xae\x72\x3e\x4d\x9d\x71\xff\xa5\x72\xfc\xd9\x9f\xfd\x59\xf8\x87\x7f\xf8\x07\xfd\xb9\xcf\x7d\x4e\xf5\xfb\x7d\x69\x59\x47\x01\x00\x5d\x02\xa2\xc7\x2f\x01\x00\xea\x67\x62\x06\x56\x1c\xac\x4b\xf7\x29\x59\x67\x37\x97\x5b\x1a\x5c\xbe\xfc\xab\x95\x37\x6b\x6a\xe6\xdf\xa5\xf1\x7c\x11\xdd\x55\x2e\x5d\xcc\xd0\xa7\x32\xef\x07\x9e\xa5\x7e\x12\x6a\x5f\x31\xe9\xbb\xc2\x63\xfc\x43\x34\x5d\xf2\xee\xe3\xeb\xe4\x43\xaf\x8b\x87\xe5\x81\x3a\x03\x80\xac\x57\xe0\xe0\xe1\xc3\xec\xc2\x13\x77\x86\x1f\xbe\xb8\x37\xf8\xc5\xb5\x59\xf2\x6c\x62\x70\xb3\x34\x01\x2e\x5b\x51\x6a\x0d\x6c\x01\x8d\x83\xc0\x85\x08\x85\xcf\xc3\xa8\xc4\xe0\xc6\xea\x3c\x79\xf6\xc2\x41\x7f\x08\x00\x2b\x06\xe1\x9f\x7e\xb4\x31\xbd\x3e\xeb\xd5\x7d\x61\x4e\x80\xbb\x6d\xe7\xf4\x06\x5e\x5a\x0e\x92\xbe\x28\xd3\x5a\x06\x2d\x14\xc8\x65\x08\x98\x9d\x99\xa6\xeb\x3f\xb1\xb3\xfa\x91\x47\xf6\xfb\xff\xfb\xea\x2c\x79\x3a\x31\xb0\xc1\xc7\x24\x53\xfd\x93\xba\x21\x1f\x93\x5a\x23\x95\x8b\xbe\x2a\x93\x36\x40\xc4\x34\x35\x66\xeb\xcc\xa4\xf7\x53\xef\xbe\x3b\x3c\x3c\xc9\xf4\xf4\xb5\xad\xc9\xb5\x59\x6f\xe9\x63\x8b\x73\x20\x3a\xcc\x8e\xf7\xc2\xbe\xb7\xae\xfd\x0e\x40\xd6\xa1\x3a\x01\xb9\x7e\x5d\x75\xee\x33\xf5\xf0\x30\x63\x8c\x31\x6c\xdd\x3c\x81\xca\xe2\x62\x8c\x49\x00\xa0\x87\x88\x03\x00\x18\xa4\x1a\x47\x97\x76\x57\x9e\x78\xe4\xa0\xff\x53\x99\xc6\xb3\x58\x21\x14\xac\xd7\x26\xcd\x52\xe1\x73\xb3\x97\x0b\x88\x4a\x1b\x6d\x25\xc0\xd1\xa2\xb5\x99\x00\xde\x00\x1a\x4a\xd6\xfe\x6b\x90\x34\x4d\xf4\xc1\x6b\x0f\x4d\xfe\xf5\xf6\xda\xfc\xc6\x22\x31\x07\x06\xcc\x04\x11\x27\x88\x38\x03\x80\x29\x22\x2e\xa0\x7d\x14\xba\xb0\x65\x77\xfb\xf6\x6d\x3c\x3a\x3a\xb2\xa8\xdd\x8a\x68\x97\x06\x5c\xf5\x84\xec\x99\x37\x0a\x8e\x74\x69\xd6\x69\x1c\xc9\xf2\x60\x7f\x15\xb4\x8b\xda\x08\x7c\xe8\x4c\x8c\xce\xd2\xa8\x4c\xe2\xe4\x89\xa5\x45\xe5\x5e\x36\x68\x2d\xe7\x91\x5a\x93\xb8\x3c\x9a\xbc\x53\x7a\x1a\x4f\xe2\xc1\x9f\x79\xde\xe9\xb3\x72\xf8\xdb\x67\x69\xe9\x89\x97\x8f\x24\x23\xe7\x4d\xf3\x43\xeb\x0c\x3e\xfe\xf1\x8f\xe3\x8b\x2f\xbe\xa8\x9f\x7f\xfe\x79\x95\x24\x09\x05\x16\xd4\xaa\xa2\x00\x5a\x96\x95\xda\xc2\x42\xfd\x90\x6d\x14\xac\x7e\x13\x44\x4c\xaa\x7e\x5b\xff\x59\xbf\x2a\x3e\xe5\x6b\x67\xd9\x75\xba\xd0\x28\xe9\x3a\x8f\x76\xfa\xc9\xac\x32\xc6\x65\x89\x61\x75\xc6\x9d\x64\xd1\xf0\xd1\xd1\xb2\xa5\x2e\x14\x5f\x72\xa1\x38\x31\x56\x16\x9f\x7e\xbd\x9f\xb4\x63\x68\x5c\x96\xa4\xae\x32\xd5\x71\x2d\x68\x41\xb6\x01\x97\xfc\xf5\x50\x43\xff\xfc\x51\xf6\xf0\x7b\xee\xac\x7e\xf4\xb1\xbd\xc1\xaf\x54\xa0\xe5\xac\x4b\x97\xd3\xce\x52\x77\x1a\x53\x35\x9c\xa5\x49\xab\x3c\x26\x18\x46\xdb\xd0\x61\x2f\xd5\x78\x76\x90\x27\x6b\x89\xc6\xd9\x2c\x35\x07\x27\x59\x31\xd6\xaa\xbe\xfe\xde\x96\x83\x21\xef\x2e\x2b\xc3\x52\xf9\x91\x09\xbc\x6d\xe7\x49\xab\x2c\x00\xfb\xfd\x1c\x47\x4f\xbf\x3d\xfa\xe0\xe3\xf7\x56\xfe\xcf\xf5\x59\x7a\x25\x31\x70\x06\x01\xeb\xc1\x86\xe6\x15\xed\xbb\xab\xb0\x88\x73\x8f\x8d\x8d\xa4\x7c\x69\xa9\xa2\x40\x65\x70\xd8\x2b\xf0\x4c\x4f\xe3\x6c\x9c\x15\x77\xc6\x59\x31\x29\x14\x14\xd8\xdc\x7d\x43\xf3\x0b\x50\x59\x63\x84\xbe\x1b\x72\x52\x1f\x31\x2c\xcc\x00\x94\x05\xe7\xea\xb8\x52\x83\x95\x3a\xbb\x7d\x97\xac\x01\xe6\xe5\x97\x5f\x36\x95\x89\x9a\x2a\xcd\x04\x11\x53\x44\xec\x43\x69\x1a\xeb\xf7\x0a\xb5\xfe\xc4\x9d\xe1\x07\x1f\x3a\xc9\xae\x24\x06\xcb\xdb\x72\xe9\x5d\x29\xe5\xb2\x62\x65\xde\x73\x80\x09\xa1\xa5\xd6\xbb\xcf\x5b\x1f\xe0\x82\x7a\x97\xb5\x27\x2a\xd9\x8c\x08\x00\xf6\xc8\x34\x98\x0a\xe9\xda\x1b\x73\x69\xc3\x29\x1f\x8e\xfb\xc5\xdb\xff\x79\x7e\xfc\x2f\x07\x83\xfc\x96\x56\x70\x82\x88\x27\x50\xdd\x90\x0b\x25\x3a\x5d\x40\x69\x7d\xb1\x4b\x45\x06\x11\xe1\x85\x17\x5e\xd0\x04\xb4\x70\x20\x21\x99\xd5\xe8\xa0\xec\xa2\xb3\x7e\x54\xa9\x9b\xc8\x38\x34\x2e\x08\x32\x49\x69\xf3\x30\xce\x5f\x4a\xdb\x25\x47\x2c\x1d\x07\x20\x12\x58\x01\x90\xcb\x80\xcb\xea\x7a\x0e\xc9\xcd\x9f\x69\x1d\xf2\x74\x5d\xbc\x21\x10\x26\xca\xf8\xfc\xf3\xcf\xab\xed\xed\x6d\x6b\x92\x07\x02\x18\xec\x24\x01\x2b\x80\x51\xf7\xbf\x4a\x26\x0b\x52\xec\x0c\xd8\x2a\xd2\x5e\xf5\xde\x43\xc4\x14\x01\x7b\x08\x98\xa2\x31\x29\x1a\xc8\x94\x86\x9e\x32\xd0\x43\x80\x1e\x02\x24\x80\x98\x02\xb6\x4e\x43\x34\xf7\x4f\x34\xe0\xa7\xb5\xbf\x0d\x1a\xbd\x61\x9d\xdd\x17\x63\xe8\x33\xdf\x13\xf3\xec\xb3\xcf\xe2\xdb\x6f\xbf\x2d\x0d\xaa\x4e\xf3\xbc\x40\x4b\x95\xa2\x71\xd0\x74\x79\xe6\xe0\x32\x04\x4a\x38\xe8\xf5\x01\x06\x57\xda\x2e\xde\x5d\xe8\x5d\x69\x4b\x03\x48\x2c\x6f\x04\x80\x7a\xc2\x4a\x2c\x78\x08\x00\x16\xe4\xf6\xa0\xda\x22\xb0\x39\xe9\x6d\x3e\x71\x77\xf8\xdc\x3b\x77\x07\xbf\x54\x0e\xd4\xb8\x51\x33\xa9\x94\x72\xad\x67\x81\x5c\x38\x8a\x6d\xc1\xcb\x41\x9d\xdc\x5b\x52\x0b\x6e\xaf\xba\x68\xe2\xd8\x9b\x32\xc8\x7c\xb6\x1a\x23\x00\x14\x62\x9a\x68\x5c\xef\xe7\x6a\x25\x01\x9c\x4c\x7a\x7a\xf7\x24\x2b\x26\xa6\x39\xc4\x54\x54\xcb\x9f\x65\x41\x55\xcb\x25\x57\xae\x5c\xc1\x47\x1e\x79\x04\xbf\xff\xfd\xef\xf3\x72\x35\x5f\xf8\xc2\x17\x94\x1d\x07\xd9\x1d\x66\x09\x22\xf6\x8c\x31\x19\x22\x66\x89\x86\xd5\x77\xee\xad\x3c\xfa\xfe\x5b\xa3\x5f\xdb\x98\xf4\x3e\x91\x6a\x38\x8b\x06\x15\x20\xd4\xa0\xc2\xc2\x7b\x9b\x2f\x7a\xd3\x47\x2b\x3f\xa6\x29\x17\x3e\xf3\xb3\xae\x1e\xbb\xaa\x3f\x6c\x15\x68\x7b\xa6\x96\x18\x18\x65\xb9\x1a\x22\xe0\xc1\xd1\xa0\xb8\x37\xe9\x15\x13\x0d\xed\x23\xd1\xf6\xd7\x96\xcf\x95\x2b\x57\x70\x65\x65\x05\xdf\x78\xe3\x8d\x2e\xfd\x88\xb7\x47\x3a\x61\xae\xdb\x5b\x4a\x12\x74\x99\x32\xed\xbb\x15\xce\x67\xfe\x89\x35\x81\x5a\x45\x56\x9a\xde\x00\xd3\x5e\x81\x83\xd1\x2c\xd9\x4e\x0c\x0e\x2d\x51\xab\x57\x60\xd3\x68\x69\x68\xeb\xe6\x5c\x01\x56\x96\x0d\xb2\x1d\x6b\x19\xa1\xca\xdf\x28\xb2\x8d\x13\x09\x73\xba\xa4\xd4\x84\x35\x7c\x0c\x82\x3e\xee\x17\xb7\x8e\x06\xf9\x5e\xa1\xcc\xdc\x80\xc9\x11\x30\xb7\x4b\x45\x00\x4b\x5f\x82\x2e\x63\x1a\x03\x9f\xfa\xd4\xa7\xd4\x37\xbe\xf1\x0d\xd8\xdf\xdf\x77\x2d\xeb\x58\x47\xeb\x61\x69\xc9\x80\xbd\x73\x1a\x89\x1f\xa5\xa5\x74\xd4\xdf\xb5\x64\xe3\x5b\xd2\xf2\x2d\x77\x70\x79\x5d\x4b\x40\x52\x5a\x20\xf8\x53\x7a\x4e\xeb\xca\x9b\x94\x96\xe4\xef\x5b\x9e\x72\x3d\x77\xcd\xb7\xab\x1c\x5b\xe9\x6e\x6d\x6d\xa9\xbb\x77\xef\x6a\x00\xf7\xe7\xee\x0d\xf9\x06\x98\xe5\x65\xfd\xa0\x99\xf9\xb6\x97\x6c\xb5\x49\x93\xdc\xa8\x64\x61\xb2\x24\x87\x4c\x15\x90\xa1\x36\x19\x6a\xc8\xd0\x98\x54\x69\x48\xd1\x40\x0a\x1a\x14\x1a\x93\x02\x00\x18\xc4\xdc\x28\xd0\x46\x41\x6e\x10\x72\x28\xdf\xe7\x5a\xc1\xdc\x28\xcc\x8b\x14\xa6\x79\xa6\xe6\x45\x0f\x72\x68\x2e\xb0\xe2\x7f\x36\x6f\x54\x09\xd2\x63\x96\x00\xd0\xbe\x03\xe4\xe5\x97\x5f\x06\x12\x4f\x7a\x0e\xb5\xed\x2e\xcb\x4a\xdc\x9d\x76\xf9\xc5\x67\x26\xf7\xf5\x93\x98\xa5\x27\x89\x46\xd2\xe1\x5d\x96\x88\xa4\x34\x3b\xc9\x62\xdb\x24\x01\xc7\xec\x98\x6f\x32\x7a\xe7\xee\xe0\xa9\x47\xf7\xfb\xff\x6d\x6d\x96\x3c\xa3\x34\x6e\x18\x3a\xd0\x32\x3d\x6b\xb5\xf4\xd2\x40\x5c\x79\x60\x6b\xa2\x6b\x07\x7b\x6c\xf1\x62\x73\x4c\x68\xbd\x56\x7e\x89\xc1\xd1\xea\x3c\x79\xe6\x91\xfd\xfe\x74\x92\xea\xc3\x93\xac\x18\xef\xaf\xe4\xbb\x50\x5e\x87\x9f\x55\xe9\x58\x5d\x6e\xf3\xa9\xc9\x77\x8d\x5a\x7d\xf9\x85\x17\x5e\xb0\xed\x77\xf9\x92\xbd\xe6\x44\xed\x60\x34\x4f\x37\x2e\xdf\x59\x79\xee\xcc\x24\xfd\xa9\x54\xc3\x26\x42\x09\x5a\x04\x71\x81\xaf\x0c\x2c\x85\x5b\x40\x03\xcd\xa8\xdf\x72\x46\x18\x07\x51\x06\x38\x15\x7d\x3a\xc8\xd5\x93\x8f\x1c\x64\xff\x6d\x7f\xa5\x7f\x6b\x9c\x15\xc7\x07\xfd\xdc\xae\x1a\xd8\x3c\xe7\x55\x1e\x6d\x2c\xfd\xde\xf7\xbe\x17\xfe\xf9\x9f\xff\x19\x08\x0d\x7f\x96\xda\x4e\xb0\xad\xd2\xe3\xd0\xb4\xb0\x63\x3b\xba\xd4\xb1\x14\x00\x68\x7b\x5b\x2e\x25\xa6\x6b\xe6\xd5\xfa\xa0\x32\xc6\xa4\x89\x86\x6c\x34\x4b\xd6\x87\x8b\x64\x5b\xe9\xf2\xf6\xc3\x2a\x06\x01\x2b\x4d\x71\x22\x09\xb5\x4f\xc0\x68\xe8\xde\x96\x1a\x6c\xb4\xce\xb6\xb7\x79\xf3\xce\xb0\x54\x81\xdc\xa3\x7a\xe7\xa6\x3a\x0d\x26\xdf\x1b\xe6\x37\xa7\xa9\x1e\x6b\x04\x7b\xb9\x5c\xeb\x52\x23\x62\x5e\xab\xf7\x04\x20\x22\x7c\xf9\xcb\x5f\xf6\x29\x34\x09\x6c\xf8\x66\x99\xd2\xe0\xef\xa2\xe3\x03\xbe\x14\x26\xf1\x72\x85\xf3\x67\x9f\xac\x21\xb0\x15\x02\x71\x3e\x5e\xd4\x2f\x04\xb8\x25\xe7\xe2\xc5\xe5\xf1\x81\x0e\x17\x88\x09\xa5\xb5\xe4\x36\x37\x37\xd5\x07\x3e\xf0\x01\x78\xf7\xbb\xdf\x5d\xef\x1b\x20\x20\xa5\x35\x50\x58\x7f\x3b\x39\x00\xa8\xaf\x0d\x57\x58\xdd\x4a\xda\x9b\x9b\x2c\x5d\xe8\x81\x2a\x60\x94\xe4\x66\x98\x4d\xf4\x7a\x36\xd6\xeb\xe9\xcc\xac\xa7\x0b\x58\x57\xb9\x59\x4b\x72\x33\x42\x0d\x43\x34\x90\x81\x81\x0c\xa1\xb4\xba\x00\x00\x18\x80\x1c\x10\xe7\x06\xa1\xfc\x53\x30\xd5\x09\x1e\xeb\x14\x8e\xf2\x14\x0f\x17\x03\xdc\x9f\x0f\xd5\xe1\x6c\xa8\x0e\x75\x8a\x63\x9d\xc0\x38\xef\xe1\xb4\xe8\xe1\xdc\x24\x4b\x97\x7c\x51\x25\x68\xaf\x1a\xa7\x65\x6b\xcb\x7f\xe9\xb2\xbb\x34\x4d\x55\x9e\xe7\xb1\x20\xc6\x55\xf6\xb1\x3a\x2e\xd4\x96\xba\xa6\x11\x03\x58\x42\x7d\x98\xc7\xf1\xc9\x28\xe9\x94\xd3\x00\x39\xa7\x4c\x6c\xbf\x12\xbd\xb6\xbe\x1e\xa8\x13\x0d\xc3\x47\x0e\xfa\x17\x1f\xdb\x1f\x7c\x7c\x63\x92\x3e\x97\x6a\xdc\x6e\x01\x15\xc6\x93\xab\xdf\xa5\xc1\x75\x69\x10\xa6\xfa\x9f\xc5\x77\xe8\x72\xea\x12\x8d\xeb\xa3\x59\xf2\xcc\x85\xc3\xec\xee\xde\x70\x71\xf3\x24\x2b\xa6\x8b\xd4\xd0\xb6\x6a\xfb\x55\xbd\x8f\x8b\xde\x53\xd4\xeb\xf5\x60\xb1\x58\x2c\x5d\x31\x60\xcb\xc4\x96\x85\xdd\xa0\x9c\x2d\x70\x78\x71\xbf\x7f\xe9\xfc\x51\xff\x93\xbd\x42\x5d\x00\x57\xbb\xb5\xb2\xda\xf1\xc7\x8e\x73\xcb\xe6\xff\x06\x9c\x48\x68\x44\x44\x27\xb0\xb4\xff\xa7\x06\x3e\x88\x90\x68\x18\xae\xce\x92\xa7\x1f\x39\x18\xbc\x76\x67\xb4\xb8\x75\x92\x15\xe3\xbc\xb1\xba\xb4\xca\x04\xc2\x6d\x8a\xeb\x46\x1f\x80\x59\x6a\xa3\xd2\xe6\x5c\x27\x71\xa4\x9f\x06\x00\x38\x39\x39\xd1\x6c\x63\x56\x3d\x03\xac\x15\x68\x85\x3e\x53\x8d\xd9\xe6\xb8\xb7\xd9\xcf\xd5\x96\x6a\x9d\x51\x5f\xde\x47\x62\x8b\xd2\x77\x7a\xa8\x0d\x5a\xa0\x41\x92\x35\x68\xa1\x9c\x96\x5d\xdd\xc8\x2c\x6a\xf7\x55\x3c\xf3\x5f\xa4\xe6\xf8\xee\xea\xfc\x66\xae\xcc\x14\x2a\xc0\x22\xdc\xdd\x52\x2b\x6c\xc4\xf2\xc2\x39\x76\xcf\x8d\x54\xc6\xd6\x89\x40\x91\xd1\x49\x34\xd2\x20\xab\xd8\xb3\x94\xfe\xd2\xc0\x01\x72\x9b\x91\x5c\x48\x91\x86\x94\x66\x4c\x98\x94\x77\x9e\xaf\x18\x25\x4e\xe3\x4a\xef\xae\x67\x89\x0f\x8f\x1f\x33\x30\x78\x01\xe8\xf6\xf6\xb6\xfa\xc0\x07\x3e\x00\xef\x7a\xd7\xbb\x00\x00\xe8\x04\x00\x00\xc0\xf6\xb3\x65\x90\x52\x7f\x94\xce\xa4\xa8\x4d\x9a\x96\x16\x95\x61\x3a\xd7\xeb\x2b\x07\x7a\x73\xe5\x50\x9f\xcf\xa6\xfa\x7c\x3a\x37\x8f\x24\xb9\xd9\xc6\x02\x36\x51\x9b\x75\x34\x30\x02\x03\x03\x04\x33\x40\x83\x19\xd4\x57\xb0\x1b\x05\x80\x69\xf5\x2d\x75\x0d\x50\x7e\x98\xcd\xd8\xb6\x8d\x30\x35\x08\x63\x83\x30\x06\x05\x87\x5a\xe1\x6e\x91\xe2\x4e\x9e\xe1\x5b\xf3\x15\x75\x73\xb2\xa6\x76\x26\xeb\x6a\x37\xef\xab\xc3\x22\x85\x71\xd1\xc3\xa9\x56\x90\x57\x8a\xdc\x5e\xfa\xa5\xaa\xfe\x62\xbf\xdc\xdb\x02\x30\xa6\xfa\x42\xad\x2d\x20\x0b\x62\xfa\xfd\xbe\x9a\xcd\x66\xae\xba\x0e\xf5\x11\x4e\xe3\x1a\xdc\x7d\x00\xe9\xb4\x6d\xd9\x45\x13\xa3\xdc\x7d\x7c\x42\xa0\xcb\xc5\x2f\xa6\xcd\xba\xca\x81\x6e\x40\xb5\x9b\xc3\x9b\x6f\xed\x54\x1b\x72\xd7\xa6\xe9\xe8\xb1\xbd\xc1\x07\xb7\x4e\xb2\x8f\x64\xb9\xba\x88\x50\x8e\x0d\xad\x71\xb9\x1e\x9c\xdb\xe0\x43\x9a\x54\x72\x0b\x4d\xfd\xc1\x97\x6a\x9c\xa0\xcf\xe5\x09\x52\x68\xee\x04\x43\x61\x1c\x40\x80\x54\xe3\xe6\xd9\x71\xef\x83\x8f\xee\x0f\xae\xed\x8c\x16\x3b\xf7\x56\x17\x73\x03\xcb\xed\xd1\x3e\x53\x8b\xe1\x62\xb1\xd0\xb4\x2c\x48\x99\xb4\xbe\xcb\x87\x88\x99\xd2\x30\x58\x9b\xa5\x5b\x97\xef\xae\x7c\x68\x75\xa1\x9e\x51\x00\x69\x3d\x46\xf1\xbb\x94\x6c\x5e\xd0\x5a\x52\xa8\x69\xa5\x3d\xbe\xd1\xc5\x01\x71\xac\x63\xe5\x46\x97\xd3\x44\xd0\x83\x00\xa9\x56\xdb\x67\xc7\xe9\x33\xef\x38\xca\xbe\xbf\xbf\xb2\xb8\x7b\xb0\x52\xd8\x31\xcd\xae\xde\xd4\x6d\x87\x4c\x3e\x24\x27\xb5\x37\xa7\x21\x84\xd3\xa6\x92\xa7\x90\x88\x0f\xb0\x78\x15\x38\x2d\x74\x80\x66\x06\x48\xd7\xd6\x53\x8d\x83\xb3\x93\xf4\xa1\xac\x28\xd7\x37\xa5\x1d\x47\xd4\xab\x05\x42\x5a\x05\x6c\xc0\x18\x5c\x0a\xa3\x9d\x00\x00\x6a\x38\x44\xd7\x05\xeb\x4e\x41\xad\x32\xf5\x95\xba\x44\x0e\x68\x37\x86\x2a\x4f\x50\xed\x9f\xd2\xd3\x54\xef\xdf\x1b\x2e\xee\x14\x68\xe8\x0d\xb9\xf4\xab\xcf\xf5\x11\x3b\x9a\x3f\x76\x5b\x2e\xb0\xe7\x58\x85\x18\x5b\x77\x21\x25\xec\x0b\xeb\xc2\x2f\x34\xcb\x74\xfd\x9e\x46\x9e\x10\xc0\x72\xf1\x74\xd1\x48\xd6\x12\x1f\x5d\x57\xb9\x43\xf5\xd6\xf2\xfb\xcc\x67\x3e\x43\x5f\xeb\x09\x00\x79\x97\x6e\x21\x55\xa0\x4d\xaa\x34\x64\xaa\x30\x83\xde\xd4\x8c\x46\xf7\x8a\xf3\xa3\xbd\xe2\xf1\xfe\x58\xbf\x47\x2d\xcc\x25\x55\x98\x0b\xa8\x61\x13\x0d\xac\xdb\x5b\x49\xdb\xf7\x1f\xb5\xb5\x57\x33\x20\xd8\x13\x1d\x26\x03\x83\xf5\xf7\xb9\xd0\x70\x15\x69\x72\x83\x66\xac\x27\xb0\xbf\x72\x58\xec\xae\xdf\xc5\x5b\x79\x0f\xdf\x58\x0c\xf0\x07\xe3\x33\xc9\xb5\xa3\xad\xf4\xe6\x6c\x15\x0f\xb5\x82\xa9\x4e\x61\x8a\x0d\xb8\x57\x00\xc0\x67\x73\xb6\xff\x58\xd0\xa6\x01\x1a\x0b\x0c\x01\x2d\x21\xd0\xea\xd3\x59\x21\x1d\x28\x01\x9f\x18\xbd\xe9\xa3\xa1\x72\xf1\xb6\xcc\x65\x97\xf8\x4a\x61\x31\x80\x3d\x04\x94\xba\xe4\xa1\xae\x0b\xe6\x4f\x41\x4b\x0a\x00\x19\x1a\x18\x9c\x3f\xca\x2e\x6c\x1f\x67\x1f\x5a\x59\xa8\x4b\x0a\x1a\x2b\x7b\xeb\xee\x73\x24\xcf\xc0\x2d\x28\xf4\xb0\x06\xff\xd8\x6e\x15\x15\xd8\x9e\x17\x3a\xd1\x25\x13\xd2\xe5\xc1\xbd\xda\x3f\x02\x98\x0e\x72\x75\xf1\x1d\x47\xd9\x47\x2e\xed\x0d\xbe\x7f\xb0\x92\x1f\xe7\x09\xd8\xf6\x68\xc7\xce\xba\xac\x8d\x31\x2d\x6b\x20\xf9\x26\x13\xad\x4f\xfe\x1d\xa2\x74\x90\xab\xd1\xa3\xfb\xfd\x4b\xe7\x4e\x7a\x1f\x49\x0b\xb5\x05\x40\xf2\xc1\xc6\xc1\xd6\x7c\x99\x02\x0f\x5c\xc2\x18\xed\x48\xe5\x2d\xc2\x6d\x30\x88\x4d\x7e\x01\xec\x7e\x19\xfa\xcc\xc1\xa0\x01\x05\x98\x0e\x17\xea\xf2\xf9\xc3\xec\xfd\xb7\xd7\xe6\xd7\x0f\x07\xc5\xb1\x29\x57\x16\x52\x20\x56\x17\xa9\x7f\x82\xbb\x0f\xc5\x8e\x6f\x75\xdb\x72\x1d\x87\x76\x3d\xfb\x12\x58\x6a\xd4\x64\x16\x48\xcd\xd7\xed\xaf\x5e\x02\xa6\x89\xc6\xc1\xda\x2c\xdd\x4a\x35\x8e\x00\x38\x02\x2e\x35\x22\x62\xbd\x1d\x09\xe8\x42\x0f\x35\xc3\x35\xe8\xb1\x0d\x25\xad\xea\xb5\xcf\x76\x8d\xa7\x06\x35\x40\x14\x6f\x0d\x64\x0c\x4b\xab\xe2\x4b\x9b\xb9\xbd\x08\x08\xcb\xf9\xa7\x46\xd0\x47\xfd\xfc\xd6\x51\xbf\x38\xd4\x0a\xe6\x80\xf5\x6d\xb9\x9a\x83\x17\x0a\x90\xd8\x55\xe8\x12\x20\xa4\x6e\x09\xe9\x0b\x7e\x00\xed\xf8\x5c\x99\x49\xf1\xa5\xb4\x7d\x69\x49\x8a\xd3\xa5\xe4\x24\x05\xc9\x65\xf5\xc9\xe2\x52\xd8\x2e\x60\xe1\x03\xda\x5d\x78\xfb\xf2\xee\xcb\x03\x38\x68\xb8\x73\xa6\x6f\x3f\x72\x08\x20\x7e\x3d\xd6\xd2\xf3\xbf\xe6\x7b\x2f\xd5\x4d\xd4\x25\x58\xc9\xb7\xd7\xee\x16\x97\x07\x27\xfa\xfd\xe9\x5c\x3f\x95\xe4\x70\x09\xb5\xd9\x86\xe6\x0b\xb2\x40\x6c\xcf\x6d\x6b\x23\x54\x6a\xbc\x42\xff\xd8\x4c\xf5\xaa\x4e\xb5\xdc\x33\x6a\x8f\x92\x59\x8a\xda\xac\x27\x06\xd7\x01\xe0\x31\xc8\x4d\x9e\xce\xcd\x38\x1b\xc3\xee\xf0\x50\xbf\x71\xe6\x76\xfe\xea\x7c\xa8\xbe\x7d\x7c\x56\x7d\x77\xff\xe1\xde\xcd\x3c\xc3\xa9\xa9\xac\x95\xd0\x9c\x5a\xb0\x03\x83\xbd\xc1\xb4\xee\xf7\xd5\x73\x6d\xdd\xfd\xfa\xd7\xbf\x0e\xdf\xfe\xf6\xb7\x43\xfa\x4a\xea\x23\xbc\x0e\x5c\x7e\x31\xed\x9b\xd2\x72\x30\xd2\x45\x71\xfb\x80\x85\x94\x3e\xf7\x8b\xed\x07\xfc\x59\x92\xc1\xc7\x8b\xeb\x7d\x45\xea\xc9\xea\x7c\x7b\x67\x57\x36\x9a\xa5\xeb\x8f\xec\xf7\x9f\x5e\x9b\x26\x4f\x27\x1a\x46\xd4\x92\x42\x2f\x57\xa3\xf0\xb9\xfd\x0c\x4b\x6f\x00\xac\xfd\x21\xf3\x61\xd6\x9b\x2a\x29\x87\x45\xa2\xd9\x4b\xa9\x0c\x0e\x47\xb3\xe4\xa9\x8b\xfb\xfd\x8f\x5e\xdf\x9c\x5c\xbf\x37\xcc\xcb\x09\x29\xb6\x3f\x90\x6b\xdb\xa9\xbd\xbb\xcc\x02\x38\x62\x71\xa2\x65\x63\x3f\x6d\x90\x22\x60\xb6\xb2\x48\xd6\x1f\x3e\xec\xbf\xa7\x9f\xab\x4b\xd8\x6a\x93\xe5\xd8\x43\xad\x1f\x2d\x99\x25\xf9\xe9\x64\xbd\x2e\x53\x3a\x19\x6f\x77\xdf\x16\x90\x21\x56\x28\x6e\x3c\x28\xc3\xcb\xc8\x69\xa1\xb6\xcf\x4e\xd2\xa7\xb6\x8f\x7a\xaf\xec\x0e\x17\x3b\x87\xfd\xdc\xae\x28\xa4\x55\xfe\xa9\xa5\x85\xde\xe7\xe6\xc2\x17\x2e\x20\x4d\xc3\x5a\xf1\xb8\xc5\xc5\x45\x2c\x39\x2e\x4c\x4d\x4f\x37\x10\xda\x4d\x76\xf4\x6e\x08\x20\xb3\x43\x34\x90\xf6\x73\x35\x5c\x9d\xab\xed\x44\xe3\x68\x79\x3f\x0b\xd6\x9b\xac\x1a\x00\x82\xed\xa6\x8a\x8d\x3f\x40\xd9\xc8\x99\xa1\xa4\x7e\xaf\x2b\x14\x71\x29\xdc\xc6\x45\x92\x02\x88\xe9\x56\xcf\xed\xc9\x28\x14\x89\x99\xee\xae\x16\x6f\xcc\x53\x33\x36\xd5\xdd\x2d\x58\x5e\x8d\x9c\x57\x95\x57\xff\x21\x39\x4a\xc6\x51\x35\x84\x07\xf2\x56\x79\x3b\xe8\x7c\x0a\xcb\x07\x5e\x80\xf8\xbb\x68\x25\x3a\x9f\x2c\x3e\xab\x44\xcc\xe0\x11\xf2\xe7\x3c\x5d\x0a\xd8\xa5\xf8\x25\x20\xe6\x8b\x4f\xdf\x25\xd9\x7c\x03\x92\x04\x4c\x5b\x7c\x28\x68\xa1\x34\x74\x22\x40\xcc\xcd\xf5\x64\x00\xaa\x0b\x1d\x11\x31\x1d\x1c\x15\xa3\x33\xb7\xf3\x4b\x6b\xf7\x8a\x0f\x65\x63\xfd\x5c\xb2\x30\x4f\x2a\x0d\xdb\xd5\x12\x90\x6a\x5b\x34\xdb\x5a\xdd\xae\xee\xb6\x66\x6f\xf6\x5f\xdd\xe5\x9a\x38\xe5\x1c\xa1\xd2\xaa\x96\x86\x0e\x1c\x75\xdf\x2a\xf5\x1e\x1a\x58\x4f\x0c\xac\x9b\xb9\x7e\x4c\x2d\xf0\xb9\x6c\xa2\xef\x0e\xf7\xf1\xfa\xd9\x5b\xf9\x3f\x1f\x9d\x4b\xfe\x65\xef\x42\xef\xda\x6c\x55\x8d\x0d\xc2\xdc\x2a\x44\x28\x2d\x97\x0a\xc8\x52\xeb\xd2\x6c\x14\x91\x82\x96\x18\x17\x43\x1b\xea\x1f\xe0\x08\x97\xe8\xba\x00\x95\x10\x40\x0a\x0d\x06\xae\x74\x5c\xf4\xa1\xfc\x84\x78\xd5\x4e\x00\xd6\xcd\x26\x54\xc4\xf4\xe1\xa3\x6c\x7b\xfb\x38\xfb\x68\x3f\x57\xe7\x11\xb0\xdc\xe8\x0d\xcb\x58\x83\xaa\x57\xa6\x6a\xe5\x08\x0e\x27\x91\x71\x5e\x52\xda\x95\x53\x3d\x8d\x9b\x1b\x93\xf4\xd9\x47\xf7\x06\xff\x63\x6f\x78\x72\xa8\xc1\x70\x0b\x43\x0d\xae\x6d\x9b\xb4\xcb\xff\x7c\xaf\x0f\xb1\x8a\xa6\x88\x98\x2a\x0d\x83\x95\xb9\xda\x3a\x33\x49\x9f\x4c\x75\xb5\xe2\x50\xcb\x65\x27\xc6\xcb\x42\xd9\x57\x5a\x3e\x94\xa6\xdd\x77\x9b\x0e\x28\x6f\xc8\x6d\xee\xc3\x69\x40\x11\x2e\xf3\xaf\x02\x15\x80\x1a\x2c\xd4\xc5\xb3\x93\xf4\x5d\xa3\x59\xf2\xbd\xa3\x41\x71\x0c\x4d\xfd\xda\xcf\xd8\xd4\x7a\x59\x18\xdf\x5c\xc0\x5b\x72\x62\x1b\xe5\x16\x17\x10\xde\x43\x8e\x2a\xe0\x56\x3c\x2a\x30\x41\xde\xad\xc6\xdc\x2b\x30\x5b\x9f\x25\xa3\xc1\x5c\x6d\xa1\x81\xd4\xa2\x46\x43\x37\x57\x49\x68\x19\x68\xe5\x50\x64\xc8\xbe\x1a\x5d\xd3\x34\xbf\xed\xfd\x31\x0d\x43\xdf\x79\xf8\x86\xce\xd4\x4b\x55\x6c\xf9\x4a\xcf\x12\x7d\x7c\x67\x75\x7e\x73\x91\x18\xba\x21\x37\x87\xf6\xe6\xdc\xa5\xf2\x71\x7c\x69\x34\x76\x30\x0c\x01\x16\x4e\x47\x69\x79\x1c\xd7\x0c\x2e\x34\x2b\x93\xd2\x08\x01\x89\xd8\x38\xa1\x7c\xc7\xf2\x8e\x95\xaf\xcb\x40\x10\x33\x78\xb8\x64\x72\xc6\xa1\xa0\x85\x9a\xde\xe9\x52\x90\x05\x2a\xd8\x1c\x3b\xce\x00\x20\x1d\xee\xe5\x1b\x1b\xb7\xf2\xa7\x56\xf7\x8b\x8f\x66\x13\xf3\x6c\xb2\x30\x8f\xa3\x86\x4d\x00\x18\x00\x00\xd8\xf5\xd1\xb2\xed\xd2\x67\x80\x72\xa9\x95\xf4\x03\x63\x95\x5a\x45\x07\x36\xac\x6d\x63\x47\xdb\xeb\x28\x40\x31\x74\x6c\xc1\xfa\x38\x2b\x81\x3c\x00\x88\x0a\x0d\x0c\xb1\x80\xc7\x54\x61\x2e\x24\xb9\x79\x6f\x6f\x62\x3e\xb5\x76\x57\xff\xeb\xc9\x86\xfa\x9f\x07\xe7\xd3\x57\xc7\x67\x92\xdd\x22\x81\xfa\xf2\xaf\x4a\xf9\xe7\x00\xad\x2f\xd4\xd6\xed\xf4\xf9\xe7\x9f\x57\x45\x51\xc0\x1f\xfc\xc1\x1f\xf8\xc0\x73\x8c\xa5\xc1\xe5\x42\x71\x63\xd2\x89\x49\xf3\x41\x58\x4b\x62\xac\x83\x5d\xe4\x08\xa6\xc9\x2f\x2f\x84\xb2\xce\xca\x76\x6a\x20\xeb\xe7\x38\x7c\x74\xaf\xff\xde\xb5\x59\xf2\x5e\x65\x60\x60\x4c\xb3\x34\xd1\xba\xe8\x90\xf8\x5b\xc7\x27\x9a\x8d\xf5\xb1\x6d\x4f\xb7\x96\x09\x1a\xa7\xb6\x2e\x00\xd4\xb7\xa4\xb7\x07\x05\x42\x07\x6d\x8b\x3b\x1a\xc8\x56\x16\xea\xc2\xf9\xa3\xec\xfd\xdf\x36\x27\xaf\x41\xf9\xed\xb9\x0c\xda\x1b\xca\xe7\x56\x1e\x7e\xe9\x1e\xb9\x8c\xb1\x06\x2f\x76\x7f\xcb\xea\x3c\x19\x5d\x38\xcc\x2e\xae\xce\xd5\x25\x65\x60\xd0\x02\x54\xc2\x78\xd4\xf2\x12\xae\xf8\x68\x4b\x6e\xc7\xbb\x8a\x8e\xa1\xbf\x7a\x95\xa1\xa2\x81\x7a\x32\x5f\x1d\x7b\x31\xed\x3e\x5d\x17\x95\x01\xe8\x69\xdc\x5c\x9b\xa5\x17\x87\x8b\x64\x13\x00\x76\x48\x79\xa4\xd5\x84\x5d\x03\x4d\x1b\x00\x3e\xf8\xc1\x0f\xaa\x7f\xff\xf7\x7f\x97\xf4\x5f\xe7\x3e\x4a\x37\xd4\x58\x66\xbe\xce\xe2\x72\xad\x04\xac\xb5\xc5\x3a\x66\xde\x06\x20\xe8\xb3\x57\x60\xb6\x3e\x4d\x37\x7a\x5a\xad\xdb\x0d\x5a\xa5\x4e\x6c\xcc\x75\x14\x64\xd0\x05\xa3\x56\x1a\x60\x91\xa1\xad\x48\x5a\x11\x0c\xe8\xb0\xca\xe0\x7e\x5e\x0c\x4f\x91\x28\x21\x34\x08\xf9\xa4\xa7\x77\x0f\x07\xf9\x9e\x26\xfb\x5b\xd8\xe6\xc2\xfa\xcf\x96\x89\xe3\x86\x50\xc9\x0a\x41\xc3\xb9\x1f\x9f\xbd\x73\x3e\x52\x3c\xee\xcf\x5d\x17\x0b\x87\x4b\xa6\xd8\x01\xc1\xa7\xd4\xe9\xb1\x75\x00\x00\x20\x00\x49\x44\x41\x54\x60\x41\x08\x73\x3d\xbb\xf8\xba\xe4\x8e\xe9\x30\x2e\xde\x2e\xb9\x7d\x1d\xce\xf7\x5e\x3f\xf3\x63\xce\x00\x40\x97\x5a\xeb\xfb\x51\xec\x1a\x39\x18\x93\x65\x63\x33\xdc\xbc\xb9\x78\x72\xb4\x5b\x7c\x32\x1b\xeb\x0f\x27\x0b\x73\x49\x69\xd8\x84\xf2\x04\x90\xb2\x4b\xa3\x74\xf9\xd4\xce\x06\x1a\xe5\x87\x2d\xd0\xd2\x60\x13\xf2\xdf\x2e\x0f\xb5\xc6\x8b\x76\x7f\xe4\xb3\x37\xa8\x93\xa5\xdc\xda\x93\x06\x83\x90\xa2\x86\xcd\x74\x6e\x46\x49\x5e\x3c\xd6\x9b\xe9\x0f\xaf\x1c\xe9\x7f\x3d\xde\x4c\xfe\xc7\xe1\x76\xfa\xbd\xc9\x9a\x3a\x34\x09\xda\xaf\xab\x2b\x68\xbe\xae\x4e\x3f\x54\x0a\x00\xa0\xed\x37\x98\xec\x3b\xfb\x8d\x7d\x0e\x59\x3a\xa4\x34\x62\x68\x7d\x71\x43\xe1\x5d\xd3\xe9\x02\xfa\x63\xf2\xeb\x4d\x93\x1e\x30\x60\x96\x85\xda\x1a\xd8\xcf\xd5\x68\x63\xd2\x7b\xa2\x57\xe0\x06\x96\x61\x75\x3b\x6a\xcd\xcc\x3d\xb3\xc8\x46\x8f\xb7\x5b\x12\x35\xc2\x08\x86\x85\x76\x7b\x16\x09\xa4\xc9\x30\x02\x80\x51\x89\x56\xa3\x33\x93\xf4\xa9\xad\xe3\xde\xc6\xed\xb5\xf9\x18\x9a\x7d\x2e\xb5\x85\x81\xc8\xdf\xb2\x32\x60\x73\xe2\x8f\x4f\x38\xd2\x95\x45\xb2\x7e\xee\x24\x7b\x67\xaf\x50\xdb\xbe\xcb\x4f\x25\x7f\xba\x6a\xd0\x24\x87\x4b\xfd\x0b\x5d\x83\x1b\x4a\x65\xd9\xb6\xc0\xb0\xe2\xa9\xd3\x52\x1a\x87\xc3\x79\x72\xfe\xcc\x34\x3d\x3f\x58\xa8\xeb\x93\xb4\x98\x0a\xc6\x89\xba\x1c\xd8\x49\x40\xae\x57\xbb\xf4\x29\x00\x90\x2d\x2e\xe0\xf0\x73\x39\x91\x8e\xac\xf1\x59\x84\xd9\x32\x21\xda\xcc\x25\x1a\xb3\xe1\x3c\x39\x9b\x16\x38\x92\xda\x92\xd5\x8d\x7c\x77\x35\x5f\x83\x63\x60\x72\xc9\x21\xbd\x91\x87\xa5\x51\xb3\xf4\xc4\xe7\x04\x54\xbf\x03\x00\x68\x34\x7a\xdc\x2b\x76\x8f\xb3\xe2\x18\x00\xe6\x80\xf5\x26\x43\xbb\x4c\x54\x6f\x56\xaa\x9e\xc1\x18\xc3\xf7\xb7\x58\xc7\x07\x33\x3b\x20\x72\xe5\xe2\x02\x21\x12\x5d\x68\xf6\xc6\x79\xc4\xf2\xe2\xa0\x57\x1a\xc4\x63\x00\x89\x94\x0f\xfe\x1e\x3b\x3b\x8c\x9d\x49\x4a\x71\x63\x79\xf3\xf8\x2e\x5e\xbe\x49\x41\x8b\xfe\x37\x7e\xe3\x37\xd4\xe6\xe6\x26\x9d\x79\xd6\x16\x16\x68\xfa\x4d\x7d\x8c\x12\xb4\xc9\xd2\xb9\x19\xae\xed\x16\xe7\xd7\x77\xf2\x0f\x0f\x0f\xf4\xcf\xa4\x33\xfd\x5e\xa5\x61\x0b\x0c\x0c\x00\x40\xd5\x9b\xd2\x25\xe5\x45\x17\xc6\xf9\x87\xdb\xe8\x6e\xf6\xd6\x2e\x77\x26\x39\xef\x78\xcd\xde\x16\x42\x64\x96\x22\x35\x2c\xab\xd9\x68\xe9\xa1\x00\x60\x00\x1a\xb6\xd3\x99\x59\x57\x79\x71\x3e\x9d\xe9\x27\x07\xc7\xfa\xeb\xc7\xe7\x92\x7f\x39\x3a\x97\xbe\x31\x1b\xaa\x63\x28\x3f\xa3\x91\x42\x79\xd5\x80\x2d\xdb\x4a\xd4\x7a\xd6\x0b\xc6\x18\x10\xfa\xd6\x83\x72\x5d\x2d\x35\x5d\x5d\x0c\x10\x0f\xb5\xf5\x90\x25\xe6\xc7\xe1\xa4\x7d\x58\xe5\x32\x02\x40\xba\x3e\x4d\xd7\x57\xe7\xc9\x25\x55\x7d\x44\x97\x4e\x00\x63\x6f\x81\x0d\xb9\xa0\x1e\xef\x1c\x09\x21\x31\x66\xb8\x3a\x4f\x1e\xbf\x78\xd0\x7f\xec\xf6\xda\xfc\x2e\x40\xbd\x21\xb5\xb5\x64\x44\x22\xb5\xde\x69\x79\x90\x25\xa3\xac\x57\xe0\xfa\xca\x42\x6d\x27\x06\x87\x3c\xff\x14\xd8\x4b\x20\x62\x69\xf2\xde\x36\x84\x2e\xe5\x4f\x3c\x3d\x25\xe4\x3b\xa6\xec\x10\x30\xed\xe7\x6a\x6b\x6d\x9a\x3c\x3c\x5c\xa8\xd1\xb4\xa7\xeb\xe5\x22\x20\x06\x0a\x12\x45\x7f\xf6\xb3\x9f\x55\x7f\xf2\x27\x7f\xc2\xc7\x09\x97\x7e\xf4\xb6\xd1\x58\x65\x4d\xdf\x79\xb8\x97\x17\xdd\xa4\x03\x50\xcf\x20\xeb\xd9\x63\xaa\x71\xb0\xb2\x50\xeb\x89\x81\xea\xe2\x39\x43\xfe\xb7\x11\x61\x65\x3c\xb4\x1e\x00\x2d\x4a\x8e\x0a\xdb\x0b\x48\xa5\xb9\xda\xda\x6c\xa0\x34\xb3\x11\xfa\xc6\x88\xbd\xec\x4c\x29\x37\x18\x2c\x1b\x87\xa9\x96\x8b\x9a\x34\x0d\x14\xca\xcc\x4f\xfa\xc5\xdd\x59\xaa\xcb\x8d\x85\x65\xc3\xd6\x58\x5e\xbc\xd5\xba\xc7\xc5\xfe\x21\x62\x48\xb1\xf2\x41\xdb\x37\x73\x92\x1a\x80\x6b\x06\xe5\xe3\x25\xf1\xb6\x4e\xaa\x63\xce\x4b\x7a\x96\x68\xa4\xb0\x58\xd0\x12\x8a\xef\xcb\xb7\xc4\x2f\x26\x8e\x04\xde\x5c\x32\x84\xea\x4d\x4c\x73\x73\x73\x13\x00\x4a\xc0\x42\x67\x2f\x64\x96\x56\x7f\xee\x3e\x29\x60\xb4\xba\x5f\x9c\x7f\xe8\xc6\xe2\xc3\xe7\xde\x98\xff\xf7\xb5\xbb\xf9\x7f\xef\x4d\xf4\xc7\xd4\xff\xcf\xdc\xbb\x3e\x59\x76\x5c\xf5\x82\xbf\x95\x7b\x9f\x47\x9d\xaa\xae\xae\x6e\xb5\x5b\x6d\xb9\xfd\x92\x6d\x59\x36\xba\x46\xa8\x75\x6d\xf3\xf0\xd8\x77\x30\x04\x98\xb9\xe0\x09\x83\x81\x18\x0f\x10\x61\xa4\x3f\xaa\x15\x7c\x80\x70\x84\x81\xc0\x11\xf0\x85\x0f\x44\x4c\x40\x40\x30\x86\x18\xdb\xc8\xc6\x6f\xcb\xb2\x1e\x2d\xa9\xd5\xea\xae\xae\xae\xc7\xa9\x53\xe7\xec\x9d\x6b\x3e\xec\x7c\xac\x5c\x3b\x73\x9f\x53\x36\x31\x31\x29\x55\x9f\xbd\xf3\x9d\xb9\x33\x57\xfe\xd6\x23\x33\x5b\x5c\x47\xb7\x3b\xc8\xc4\xe3\x33\xc5\xb8\x4e\x24\x25\x5d\x18\x0b\x6a\xa7\xaf\xcc\xea\x04\x2c\x91\xa3\x0d\xfe\x12\xf4\xc8\xb0\xcc\x41\x10\xec\x54\x4e\xc1\x06\xc6\x57\x83\x45\x66\x12\x58\x31\x0c\x31\x66\xa6\xe5\xeb\xe3\x53\xfe\xf8\xce\x7e\xf3\xbb\x97\x5e\x5b\xfd\x9f\x57\x5e\x59\x7e\x6a\xf7\x6e\x73\xdd\x34\xbc\xc3\xcc\x63\xff\x07\x71\x3a\xaf\xda\x04\x10\x18\xa8\x5f\xfd\xd5\x5f\xd5\xb4\x2a\xf7\x2c\x5d\x89\xee\xad\x93\x62\xae\x03\xb4\xe7\x4d\x9b\x5b\x04\xa4\x2b\x81\xe8\x21\x5a\x2d\x69\xf2\xa6\x75\x32\x19\xff\x5e\xb9\x42\x55\x94\x82\x6e\x46\x5d\x59\x1a\x5f\x39\x19\x5d\x9d\xac\xe8\x7a\x77\x1f\x1d\xa0\xc7\x26\xa7\x3e\x69\xde\x8e\x76\xeb\x31\x2a\x92\xc7\x5f\x16\xf1\x11\xd5\x50\x22\xb3\x6c\x62\xd6\x01\xdc\x31\xbd\xc4\xa8\xc7\x2d\x5d\xb9\x72\x3c\x7a\x1f\x9c\x5a\x16\x62\x1d\x13\xcf\x80\x62\x6e\x98\xd9\xc8\x75\x2f\xcc\x67\x46\x3d\x6a\x69\x36\x6e\x69\x97\x18\x63\x72\xaa\xda\x5e\xbb\xd3\xe9\x94\xd4\x93\x85\x3f\xa9\xf9\xc8\x2c\xc2\x95\x90\x34\xc4\x4c\xa6\x9d\x08\xe3\x24\x56\xff\x9b\x30\xa3\xb6\xb4\xb3\xb5\x32\x57\x26\x2b\x33\xe3\xee\x50\x4a\xd9\x0f\xbe\xed\x21\xc9\xce\xce\x4e\xbf\x71\x9b\x01\xe8\xde\x38\xab\x73\xb1\x90\x27\xe2\xf2\x5d\x13\x6e\x1f\x66\x2e\x5d\xba\x84\xfb\xf7\xef\x87\x78\xfa\xe0\x1d\xa4\x83\xd9\xd4\x96\xc6\x5b\x2b\xb3\x5b\x59\x9a\x02\x41\xbb\xd6\x03\x15\x39\x3f\x1f\x53\x83\xc6\x44\x1f\x87\x08\x76\xe2\xce\x24\x74\x40\x26\x24\xf0\xbb\x92\x04\xd8\xd1\xd2\x95\xc4\x28\xa6\x87\x49\xed\xca\xf0\xe2\x70\xda\xdc\x6d\xaa\x6e\x47\x84\xd8\x49\xe4\x2f\x56\xcc\x19\x29\xe5\xdc\x10\xe1\x0b\xe5\x21\x25\x38\x39\x00\x39\x24\xed\x28\x01\x9d\x52\xfa\x92\x84\x45\x13\xc3\xa1\xb2\xb4\x04\x62\xd3\x34\xb9\xfa\xe6\x38\xcf\x9f\xb6\xed\x9b\xa6\x29\xb5\xbd\xd4\xbe\x52\x9a\x6c\x3c\x75\xaf\x8b\x36\xbe\x4d\x76\x21\x8c\xce\xec\x6c\xfb\x7e\x7b\x7d\xf7\xad\xe6\xe9\xed\xfb\xed\x27\x47\x0b\x7e\x92\x2c\xae\x00\xe8\xce\x57\x71\x54\x2a\x88\xe1\xe3\x8e\x06\x00\x4a\x1d\xe4\xdf\x83\xb8\x1e\x21\x4d\x32\x77\x59\x86\x89\x67\x07\x7a\xe2\xbc\x21\x24\xca\x73\x92\xcc\x06\xa2\x93\x69\xbc\x4d\x03\x75\x69\xc5\xc1\x91\x86\x18\xbb\xb4\xc2\x63\x5b\x47\xf6\x4a\xbd\xe4\x47\x46\x0b\xfb\xf6\xfa\xac\xfe\xd7\xa3\x2b\xf5\x4b\xab\x2d\xd3\x49\x37\x23\x4d\x91\x27\x53\x7b\x67\xf5\x81\x75\x48\xc7\xf3\x26\x84\xb3\x14\xa7\x44\x07\xd7\xe5\x21\xc7\xc1\xba\xb4\x9b\xd4\x7b\x5d\x3a\xed\x72\xf5\x5e\x97\xb6\x04\x90\x00\x44\x09\xbb\x97\x2c\x68\x5b\x46\x00\x75\xc5\x98\x5e\x9e\xd7\xef\x1c\x59\xb3\x47\x80\xe9\x86\x50\xee\xac\xae\xbc\xcb\x8e\xa3\x72\x64\x64\x14\x98\xc9\x6b\x5e\x80\xa8\xea\x13\xe8\x3d\x9b\xca\xd2\x6c\x67\x59\x3d\x32\x6a\x69\xbc\xaa\xb8\x66\x70\x2d\xda\xe9\x5d\xf8\xb6\x7e\x3e\x8b\x4d\x29\x7e\x7e\xbb\x43\xf8\xa8\x1e\xb5\x34\xab\xad\xd9\x21\xc4\x8b\x85\x01\x57\x37\x21\x41\x89\xa6\x10\x3e\x2c\x9d\x77\x1e\xb3\xf8\xf9\x4a\xe8\x83\x95\x8c\xa6\xa8\xd4\x3b\x42\xc0\x9a\x5f\x8f\x89\x08\x86\x79\x3a\x6a\xcd\xce\xa8\x35\x53\x61\x6b\x17\xbe\xbd\xd6\x92\xa8\xf5\xef\xbc\xe3\x3e\x59\x87\x4a\x48\x3d\x87\xf2\x4b\xe8\x3c\x29\xcc\xa3\x2a\x66\xce\x6e\x87\x16\x86\x5b\xb5\x61\xd4\xe3\xd6\xcc\xa6\x8d\xd9\xeb\x44\x87\xa9\xf3\x28\x30\xf2\x69\xde\x9f\x93\x5f\xed\xfa\xb2\x98\x02\x92\x67\x49\xad\x15\x22\xcd\xa2\xdc\xbc\xb3\x04\x7b\x56\xf3\xe1\xe1\xa4\xdd\x77\x86\xb9\x01\xb4\xc0\x11\x08\x69\xe7\xe2\xfb\xe6\xe6\xcd\x9b\x56\x6e\x75\xf5\xd9\xc9\xac\x75\x51\x48\x09\xde\x79\x09\xcc\x90\xbf\xff\x5b\x47\xa4\x4b\xef\xb2\xfc\x5c\x59\x9b\x70\xb6\xe7\x71\x9b\xb6\xb1\x54\x1f\xef\x97\xeb\xaf\xf3\xd6\x29\x97\x47\x69\xae\xf4\x38\x5f\x75\xf8\x20\x24\x17\x47\x6e\xeb\x24\x80\xb1\xb1\x98\x4e\x8f\xdb\x2b\x17\x6f\x37\x1f\xb9\xfc\xda\xea\x37\x2f\xdc\x6d\x3f\x37\x3e\xe5\x5f\x31\x16\xd7\x88\x51\xc7\x33\x54\x94\x84\x05\x81\x68\x22\xde\x42\xaf\xc6\x73\x60\x53\x39\x64\x91\x33\x72\xef\x12\x72\x4c\x13\x44\x27\xd1\x2f\xe5\x1a\xf5\xac\x61\x15\xc1\x17\x96\x90\x60\x57\x8c\xcb\x97\x51\x93\xe5\xab\xa3\x05\x3f\xb5\xb3\xdf\xfe\xf6\xe5\xd7\x56\xff\xfb\xe5\xd7\x56\x4f\x6d\x1d\xb6\x97\xc9\xf2\x0c\x9d\x1d\x4f\x22\x79\x51\x7f\xfa\x7c\x91\x9f\xc5\xe5\xe6\xe7\xcf\x92\xf7\xa6\xd2\x9a\xdc\x98\xdc\x44\xd2\x32\x94\x7e\x13\x37\x04\xe6\x43\x9e\x8e\xa6\x69\x4e\x3b\x01\x2f\x64\x69\xbc\xbd\xac\xaf\x9a\xee\x5a\x97\x6e\x5d\x00\x7a\xc3\x55\x8f\xba\x1e\xed\x5e\x47\x90\x45\x58\x42\xcf\x0b\xf1\x0b\xc2\x97\x5e\x00\x31\xd5\x93\x95\xb9\x3a\x69\xcc\x94\x84\x9d\x8a\xda\x29\xeb\x5d\xb2\xa3\x28\xa7\xf6\xad\x2d\x8d\x27\x8d\x99\x55\x96\x66\xc4\xdd\xee\xaa\x12\x7f\x9c\x03\x19\xbd\x7e\xe9\xcd\xbd\x14\xac\xac\xc3\x7b\x3a\x3f\x2a\xf4\x97\xf7\x27\x46\x5d\x5b\x4c\x6b\x8b\x29\x32\x73\xcf\x9b\x88\xf4\xa4\x5d\xe7\x9f\x2f\xbd\xb5\xa6\x56\x01\x43\xdc\x6b\x8e\x00\xf7\x90\xd0\xab\xaf\xbe\x9a\x5c\x51\xef\xec\x3b\xdc\x47\x09\x68\xbc\x86\xfb\x70\xb3\xa5\xd9\x19\x77\xc0\xa5\x8b\x13\x0f\x73\xcb\x74\xb4\x23\xc0\x41\x41\x43\x08\x46\x87\x02\x29\xf7\x24\x30\x81\x2e\x76\xf1\xc3\xf6\x6a\x4a\x89\x64\xaa\x5e\x8a\xce\x5d\xad\x58\x24\xe4\x96\xb8\x59\x8c\xda\x83\xe3\x49\xfb\x80\x85\x6d\x0b\x52\xc0\x12\xcb\x10\xe5\x3a\x55\x51\x6e\x01\x1d\x02\x30\x25\xc9\x41\x52\xad\x81\x7c\x4a\xd2\x85\x5c\xfe\x3a\x9f\x21\xf0\x32\x54\x56\x2e\xfe\x50\xba\xa1\x72\x37\xe5\x14\x37\xe1\x50\x73\x6d\x38\x4f\x3d\xd7\xd5\x63\x90\xbb\x2e\x48\x5a\xfc\xe4\x1f\x7b\x11\xac\x69\x31\xdd\x3a\xb6\x57\x77\xef\x34\x4f\x5c\xb8\xdb\x7c\x72\x3a\xb7\x1f\x35\x2b\xbc\x87\xc0\xe3\xc8\x7a\x79\x9b\x01\x3f\x3f\x04\xf1\x11\x12\x92\xe0\x25\x28\x34\x3b\x6e\x2d\xcc\x1d\x4d\xe8\x09\x42\x02\x93\xce\x4f\x39\x37\xbc\xcd\x4a\xd7\x16\x84\xdd\x77\x21\x4b\xf2\x12\x1e\x0d\x56\x9c\x98\x5c\x1a\x0f\x93\xb0\x81\xe8\xd4\xbc\x3b\xd5\x8a\x1e\xdf\x3a\xb4\x97\xeb\xe5\xea\x6a\xbd\xe4\x9d\xfb\x6f\x1f\x3d\x7f\x7a\xc1\xdc\xe5\x0a\x0b\x2f\x25\x42\x67\xb8\xeb\xea\x10\x54\x17\xe1\xb4\xdd\xaf\x7d\xed\x6b\xf8\xc6\x37\xbe\xb1\x89\x44\x22\xf7\x9e\x1b\x1b\xe7\x89\xab\xe3\x0f\x01\x12\x9d\x6f\x29\x6d\x69\x8c\xe5\xea\xb4\x89\x2b\xcd\x6b\xb9\x16\x24\x71\x14\x2d\xcd\x81\xc7\xda\x74\xa6\x01\xbb\xc4\x30\xc8\x8c\x97\x6e\x58\x44\x7a\x1e\xf2\x86\x64\x56\x3d\xf8\xce\xd3\x62\x76\xff\x48\x93\x2c\x3f\x0f\x72\x36\x1e\xb9\x35\x23\x39\x46\x5f\xd4\x82\xc0\x75\x6d\x69\x77\xdc\x9a\xe9\x09\xb7\x35\xa8\x2f\x61\xc8\xf4\x05\xa0\x40\x8c\x8b\xdb\x01\x97\xd6\x6c\x19\xc6\x54\x4b\x34\x24\x96\xcf\xae\x6b\x01\xef\xab\xe3\x22\x33\x69\x20\xda\x1f\x24\xa6\x32\x4c\xe7\x8d\xf8\x5d\xb4\xb6\x43\x4a\x51\x88\xbb\x33\xd8\x8c\xa5\x31\x98\x0d\xdc\xba\x2e\xcf\xf1\x91\xfd\x21\x00\x4c\x69\xbd\x19\x72\x6b\x25\x2e\xa5\xcc\xd7\x85\x87\xbc\x32\xa2\x31\x19\x27\xfc\x8d\x5b\x33\xde\x39\xab\x2e\x8e\x3a\xc3\x5c\xc3\x82\x98\xf5\x06\x58\xd8\xc6\x29\x06\x7c\x57\x00\x22\x21\xed\xb8\xb9\xf8\x51\xfc\xd6\x65\x97\x87\x8b\xef\xc5\x81\xf1\x8f\x13\x62\xef\xeb\x1e\x11\xa8\x48\xa3\x90\x3c\x83\xd1\x12\x96\xf3\xb1\xdd\x9f\x77\x86\xb9\x12\xb4\x04\xc3\x5c\x97\xa7\x7f\xb6\xcc\x8c\x2f\x7c\xe1\x0b\xeb\xa4\x2c\x25\x6e\x2c\xb7\xb8\xe6\xb8\x3f\x2d\xcd\x59\x27\xa5\xd0\x52\x17\x9b\x09\xcb\x81\xab\x1e\x87\x2b\xfc\x4b\x1c\x9b\x8c\xa3\xcb\xd8\xa4\xee\x43\xdc\xe6\xa6\x69\xf4\x22\xa3\xfd\x36\xcd\x7b\xa8\xcf\xf4\x3b\x00\xe0\x77\x7e\xe7\x77\xcc\x33\xcf\x3c\x13\x40\x8b\x10\x2b\x1b\x78\xe3\x5b\xb7\x13\xa3\x6a\x31\x9b\x1d\xb6\x8f\xec\xbd\xbe\xfa\xe8\xde\x9b\xcd\xef\x6c\x1d\xdb\x5f\xaf\x56\x78\x8c\xd8\x81\x96\x30\x90\xfd\xd8\xf7\xa3\xd6\x3b\xc1\xc6\x51\x37\x1f\xbc\x3e\x3c\xa8\x8f\xa4\x48\xd8\x4b\x3a\x14\x35\x25\xfd\x2c\x00\x49\x2c\x29\x4e\x36\xa9\xa9\x22\xea\x12\x51\x98\x5b\x92\xb8\xfb\xf8\xfe\x0c\xa5\xa4\xba\xe1\x85\xba\xd3\x7a\x6b\xd3\xe2\x91\xc9\x9c\xff\xd7\x8b\x6f\x36\xbf\xf7\xd0\xad\xd5\xc7\x67\x87\xed\x23\xa6\xc1\x0c\xee\x96\x5d\x67\x0b\x54\xcb\x05\x54\xd2\xa1\xa7\x9f\x7e\x1a\x6b\xdc\xa6\x8b\xbc\x1e\xef\x3f\x4d\x3e\xb9\xf9\x94\x63\x14\xb5\x5f\x8e\x1e\x68\xff\x21\xc6\x66\x93\x7a\xfc\x54\x2e\xbb\x83\x14\xdd\x99\x5d\xc6\xd2\x94\xe4\x5a\xe1\xc7\x2f\x10\xc6\x40\x6a\x7d\xe8\x16\x4b\x37\x1a\xba\xf1\x2d\xc5\x12\x3d\x7c\x9d\x4a\x2d\xfc\xaf\x07\xcb\xb1\xa8\x28\x30\x44\x61\x0c\x6b\xc7\x80\x61\x1a\x57\x96\xc6\x94\x31\x42\x15\xf3\x37\xd9\xda\x4d\x71\xcb\x7e\x88\x4f\xdd\x51\x00\xb5\x61\xd4\xc4\x30\x52\x88\x24\xdb\x10\xaa\xee\xeb\xe8\xd7\x1f\xc1\x8c\xe7\x99\x6d\x44\x13\x37\xe7\xe1\xf3\xa5\x42\xbc\xb4\x1f\x7b\xd4\x23\xb4\x47\x80\x19\x03\x50\x4d\x40\xed\x76\x04\xfb\x7e\xf0\x7d\xa2\xa5\x50\xd2\x9d\x67\xbc\x49\xb0\x6c\x74\xe2\x4d\xb8\x03\x19\x57\x2f\x46\x49\x3c\x09\x5e\x44\xfc\xf0\xc7\xcc\xf5\xa8\xa5\xe9\x6c\x55\xed\xd6\xd6\xec\x84\x34\x10\xe3\x98\xd3\x01\x20\x99\x34\xb9\x5d\x3a\x0e\x48\x02\x27\xc0\xa7\xaf\xe5\x94\x69\xfc\xc0\xed\x7f\xa4\xf8\xaf\x1f\x2c\x72\xa0\xeb\x62\x5b\xc3\xcb\x93\x71\xbb\xbf\xac\x83\x7d\x4b\xa2\x26\x12\x87\xcf\x85\x7e\x22\x22\x7c\xe9\x4b\x5f\x2a\x11\x1c\xf9\x5e\x92\x00\xe4\xd2\x6e\xba\x98\x0e\xfd\xea\x85\x7c\x1d\x38\xf2\xfe\x25\x20\x9b\x03\x3e\xeb\x08\x69\xae\x3d\x9b\xf4\x95\x7f\x1e\x6a\xb7\xac\x8b\x74\x25\x89\x92\x76\xeb\x24\x40\x43\xe0\xc8\x5e\xb9\x72\xc5\x00\xc0\xd5\xab\x57\x01\x20\x01\x2d\x42\x45\x14\x0c\x71\x3b\xd0\x62\x1f\xb9\xfc\x5a\xf3\xf1\x8b\x77\x9a\xdf\x19\x9f\xd8\x5f\x31\x2d\xae\xaa\xc9\x20\xa8\x1d\x8b\xc5\x80\x23\xae\xe1\x08\x68\x42\x58\xb8\x1e\x83\xa3\x01\xa0\x57\x37\xe9\xf8\x85\x15\x81\xd9\x7b\xc4\xb8\x2c\x8c\x82\x49\xaa\x91\x44\x22\x12\xe5\x91\xcf\x3b\x5a\xeb\xca\x4a\x87\x78\x09\xf7\xc7\xd8\x19\x2d\xec\x2f\x5d\x78\xab\xf9\xdc\x43\xaf\xae\x7e\x69\xf6\xa0\xbd\x5e\x35\xd8\x01\xf3\x14\x4e\x6d\xe4\xd4\x6c\x9a\xee\x18\x66\x0e\xaa\xa3\xad\xad\xad\x9f\x95\xb0\x96\xc2\x72\x20\xfe\x67\x75\x43\x75\x5a\x27\x41\x3a\xaf\xff\x3a\x66\xc7\x1a\x63\x0c\x90\x9c\xec\x0c\x20\x91\x72\x25\x7d\x6f\x98\xea\xca\x5d\xd0\xd9\x45\x94\xf4\x38\xfe\x24\x43\x51\x48\x02\xc3\x5a\xc0\x31\x0c\xec\xc0\xb0\x1c\xaf\xb2\x2e\x32\x9d\x58\x5f\xf4\xba\x20\xaa\x90\xa4\x55\xce\xa0\xb3\x23\xd3\x6a\x91\xd0\x6e\x11\xaf\xd4\x87\x21\xcc\x12\xd0\x12\xc0\x24\x24\x57\x99\x06\x24\xf5\x10\xcc\x40\xae\xb2\x72\x0a\x49\x4c\x98\x73\x52\x4a\xa3\xfb\x24\x5f\x9f\x94\x21\xb2\xc4\x4d\x6b\xb8\x69\x0d\x0f\xd1\xe6\x92\x5b\x47\x67\x4b\xb4\xd7\xca\xc0\xa1\x85\x27\xf7\xde\x43\x40\xb9\x82\x3d\x78\x51\xfa\xce\x60\x59\x5d\xb7\x34\x9e\xae\xaa\x9d\xca\x76\x3b\x8a\xbc\x0d\xb8\xec\xd0\xc8\x50\x46\x19\x8a\x1f\x8c\x11\x4d\xaa\x03\x77\x42\x4e\x31\xcf\x38\x80\x39\xa4\xe1\x24\x54\x4a\x5f\x5c\xbe\x7e\xd0\x48\x94\x2a\x14\x7f\xee\x83\xdb\x65\x6d\xe7\x47\x93\x76\xff\xac\x0a\x3b\x8a\xfc\x19\x13\xf2\x7e\x22\x7f\x05\x3a\x88\xba\xf3\x5b\x9c\xc4\x65\x48\x4d\x21\xdf\x4b\x8b\x79\x09\x68\xac\x13\x33\x4b\x97\x5b\xe8\x4b\x60\x47\xe7\x9b\x03\xb1\xb9\x7c\xe5\xaf\x6e\xa3\x4e\xa3\xff\x72\x65\x0f\x95\xa3\x41\xd2\x50\xdd\xbc\x5b\xd7\xd6\x9c\x64\xa6\xf4\x4d\x8a\xe5\xfc\xda\xaf\xfd\x9a\x34\x64\x4c\x40\x0b\xc5\xdb\x73\xc7\xcc\x3c\x26\xcb\xb3\xd9\x83\xf6\xda\xe5\x57\x97\xbf\x72\xe1\x6e\xf3\xb9\xd1\x82\x3f\x6a\x18\x7b\x11\xb4\x08\x6a\xaf\x45\x81\x62\x36\x74\x5c\x96\x07\x34\x9e\xbd\x22\x48\x60\x12\x24\x2d\xce\x40\x16\x44\x42\xcd\xc4\x11\x44\x24\x94\x31\x4a\x52\x20\xe2\x92\x07\x21\xfe\x0e\x0d\x37\x89\x02\xc6\x81\x9b\x73\x42\x2d\x1c\xa9\x71\x57\x6f\x0e\xec\xa1\x9f\xaf\x22\x2b\x57\x57\x02\x4d\x47\x67\xfc\xd1\x0b\x77\xdb\xcf\x5d\x79\x75\xf5\x2b\xb3\x83\xf6\xba\xe9\xc0\x4b\xcf\xe6\x45\xee\x34\x92\x5c\xe0\xe9\xe9\xe9\x90\x14\x23\xe7\x72\xa0\xbb\x94\x6e\x9d\xb4\x71\xa8\x1c\x19\x37\x37\xbf\x86\xea\x90\xab\x53\x6e\x2c\x0f\xb5\x71\x68\xce\x76\x01\xd6\x5a\x20\xa8\xbb\x35\x9d\x8f\x2a\x05\x22\x03\xee\x8e\xbe\x70\x17\x76\x76\x75\x4b\x44\x6b\x9c\xee\x9e\x11\x28\xd5\x0f\xd9\xc0\xed\xfb\xb1\xe0\xff\x42\xd4\x2e\x03\xbd\x58\x27\xaa\x53\x78\x29\x43\x8c\x55\x02\x3c\x09\x80\x72\x4d\xe6\x6e\xb1\xee\x84\x2f\x6e\xb7\x90\x1c\x5b\x05\x7b\x0e\x6f\xd7\x98\x7c\xa3\xd6\xb0\x5d\x56\xf6\xac\x25\x0e\x67\x11\xb1\xfa\xd5\x68\x42\xae\x7b\x92\x25\x08\x07\xee\xc5\xe9\x56\x92\x1b\x25\x6d\xf2\xd3\xba\x04\xde\xd2\x7a\xa5\xfb\x6e\x5b\xc2\x72\x51\xdb\xe3\x45\xcd\xcb\x6e\xc7\x6d\xb2\xab\x2a\x6a\x2e\xfa\xea\x32\xed\x4a\x02\x93\x22\x18\x1a\xe2\x42\xf5\x22\xb0\x6e\xd1\xc8\x39\x4f\x28\x82\x47\xd0\xe1\x77\x3b\x8a\x66\xd3\x95\xd9\xab\x98\xa6\x5e\x1c\x98\x1c\x20\x07\xc0\x0f\xc7\x4e\xe7\x18\x0f\x9f\xcb\x75\x82\x94\x9b\x90\x78\x62\x91\x46\x8a\xc4\xa3\xe0\x31\x97\x32\x3a\xb9\xfd\x59\xce\x2e\xb7\x45\xda\x9e\x55\x76\x7e\x32\x6e\x0e\xc5\x89\xb9\x16\xf9\xa3\xc9\x93\xbe\x52\x12\x97\xd2\x22\x9f\x03\x31\xda\x95\xd2\xc8\x70\x2d\x86\xd6\xc0\x60\x48\x92\x30\xf4\xbb\x8e\x28\x96\xd2\xe4\xdc\xa6\x9c\x6d\xae\xde\x3a\x2c\x57\xce\xcf\xd2\xd6\x5c\xbc\x4d\xe2\x24\xce\x1b\xaf\x4b\xd0\x02\xc7\xc9\xb9\xbf\x31\x98\xc7\x04\xcc\x26\x47\xf6\xf2\x43\x2f\x2f\x3f\x75\xe1\x5e\xfb\x7b\xa3\x33\x7e\xd2\x74\xc7\xf5\xa7\xec\x56\x22\x0d\x61\x11\xe6\x20\x7c\x22\xa6\x40\x94\x6c\x90\x18\xeb\x22\x6d\x94\xa0\x20\xcd\xcb\xcb\x98\x83\xbe\x5a\xcd\x93\x6e\x35\x40\x94\xf4\x50\xf4\x73\xdc\x47\x20\x7b\x14\xe7\x65\x60\x54\x3c\xa0\x61\xe1\xd7\x2f\x20\x99\xd7\x2e\xc5\x78\xb4\xe4\x27\x77\xee\x35\x9f\x7b\xe8\xd6\xea\x93\xdb\x0f\xda\x6b\x64\x21\x0d\x76\xc7\x40\xcf\x38\x12\x40\xd6\x60\x77\x1d\x17\xa8\xe3\xe5\x00\x3f\x94\xdf\xa6\x80\x39\x57\xe6\xa6\x4c\x48\x09\xa0\x97\xe6\xd3\x26\x80\x5b\xbb\xa1\x7a\x03\x48\x80\x4a\x3f\x35\xc1\x58\x62\xcb\x14\xee\xad\x89\x0b\x26\x47\x2a\x1c\xa0\x2b\xa5\x43\x36\xe1\xf6\xc5\x62\x1b\xd7\x82\x38\xd6\x93\xd2\x85\xda\x5f\x02\x91\xc4\x9c\xc1\x8d\x4c\x12\xa0\x23\x60\x71\x66\x07\x9e\x19\x20\xd8\x55\xc5\x8b\x95\x61\x0b\x0a\x47\x15\xe4\xd7\x22\x71\x72\xac\xef\x13\xad\x85\x58\x19\x8b\xd3\x91\x5d\x36\x86\x17\x0c\xb6\x2c\xe6\x88\x96\x08\xc5\xbe\x88\xd2\xa7\xc4\x3f\xf4\x0b\x87\x3c\x4a\x52\x14\xdf\xa7\xba\x9f\x43\xbb\x13\xe6\x47\xa5\x13\xcf\xad\xe1\xc5\xe9\xc8\x1e\x2e\x46\x76\x89\x0c\x30\xd1\xe3\x21\x03\xea\x86\x5c\x6e\x4c\x87\xf9\xbb\x8e\x7b\xd7\xfe\xda\x65\xfd\x15\xd2\x02\x90\xee\xed\x06\x60\x4c\x77\x47\xd1\x74\xda\xd0\x6e\x65\x69\x2a\xd1\x72\xd7\xa1\x11\x60\x48\x08\x23\x51\x66\x28\x4f\x48\x58\xa2\x5f\xfa\x51\x35\x92\x4d\x87\x68\x9a\x4e\x06\x49\x90\x94\xd0\x74\xe7\x6f\x89\x97\xcb\x9a\x0f\x4e\x47\x7c\xc4\xe0\xe4\xac\x16\xa1\x22\xb2\xde\xae\xc5\xe7\xf5\xb9\xcf\x7d\x6e\x9d\x28\x31\xe7\x6f\x55\xb8\x8c\x5f\xe2\xe8\x50\xf0\xcf\x11\xcc\x12\xc2\xd5\xf9\x0f\x95\xb1\x4e\x22\x31\x54\xaf\x5c\x9a\xa1\x3a\x6d\x52\x9f\xa1\xb2\x36\xa9\xc3\xd0\xc2\x52\xfa\x4e\x6b\x9d\xe4\x4e\xd9\x1d\x89\xce\xf1\x5c\x92\xe9\x78\xc1\x3b\xd7\x7e\xbc\xfc\xd4\xce\x7d\xfb\x7b\xf5\x19\x7f\x98\x18\xd3\xde\x00\x4f\x46\x76\xfa\xde\x11\x5d\x07\xd4\x19\x09\xe0\x4e\x06\x71\x88\x4d\x01\x6f\x30\x27\x5c\x66\xd6\x91\x3f\xd3\x9f\x49\xc4\x25\xf1\x17\x22\x76\x84\x9f\x52\xd8\x11\xf2\x80\x26\x76\x50\x7e\xe9\xb3\xe6\x44\xdd\x4f\x5d\xaf\xf0\x61\xb7\xe3\xe8\x93\xdb\x07\xed\x35\x30\xcf\x80\xde\x6e\x23\xad\xbe\xd0\xae\xb4\x90\xaf\xfb\xa6\xeb\x18\x8a\x4d\x5d\x2e\xfe\x26\x12\x9a\xf3\x96\xbd\x4e\xe2\xb2\xc9\x18\xde\xb4\x6d\xdd\x18\x07\xcc\xaa\x62\xbb\xaa\x78\xc1\x2e\x6d\xf8\xb2\x19\x0c\xec\x1f\x24\x9d\x96\xd2\x85\xde\x8e\x17\x6f\xf4\xdd\xf3\x8e\xeb\x08\x10\x17\x6b\xb9\xc6\xc0\x63\x13\xbd\xf0\xfa\x7c\x5d\x6a\x4b\x6c\xcf\x6a\x7b\x70\x3a\xb2\x0d\x17\xda\x5f\x5a\xbc\x01\x24\x86\xad\x00\x6c\x5b\xa1\x59\x8c\xec\x7c\x31\xb6\x87\x6d\x77\x29\x2f\x92\xce\xc8\xcc\xc1\xc8\xa7\x50\x3f\x4a\x60\x46\xd2\x36\x0f\xe5\x97\xf3\x8e\x92\xcd\xbe\x71\xae\x4c\xd3\x54\xbc\x58\xd4\xed\x7c\x55\xd9\xe4\xc2\x49\x14\xc6\xa3\xea\x9b\x75\x63\xac\x34\xa6\xed\x26\x89\x37\x22\xc2\x25\xe7\x8d\x74\xe4\xae\x09\x38\xa3\xb9\xda\x52\x3d\x6d\xcc\x6c\xdc\x9a\x1d\xc3\x18\x27\x80\x40\xe4\xa1\x81\x46\x1a\x9e\xc2\x8f\x12\xba\x44\x08\x4b\x49\xa7\x47\xd9\x52\x68\x98\x7b\xd4\xf9\x27\xe2\x32\xc3\xcd\x62\xd4\x1e\x2f\x46\xad\x3f\x06\x3a\x18\xe7\x02\x3d\xfb\x16\x8d\x3a\xa5\x64\x60\x13\xc9\x96\x41\x3a\x40\x4a\xf1\x87\x16\xfb\xdc\x37\xcd\x49\x75\x64\x1e\xe7\x21\xc0\xeb\x88\xe8\xa6\x63\x6a\x48\xf2\x51\x22\xe6\x39\xa9\x61\xa9\x2f\x36\xe1\x4c\xa5\x1b\xea\xb7\x52\xf8\x50\x5e\x41\xd2\xe2\x41\x0b\x11\x8d\x09\x98\xd6\x4b\xde\xbd\xf6\xc3\xb3\xff\x65\xfb\x7e\xfb\x87\xf5\x92\xdf\x8f\x6e\xf1\xed\x11\xa9\xee\x57\x80\x17\x81\xac\x69\x68\x42\x14\xfc\x93\x39\x96\x9b\x84\xc9\xbb\x26\x6a\x24\x26\x49\x0f\x61\x75\x31\x7a\xd3\xcb\x73\x62\xc2\x2f\x87\x98\x58\x53\x01\x4e\xde\x9c\xab\xab\x25\x3f\xbe\x73\xb7\xfd\xed\xcb\xb7\x9a\xff\xb1\x73\xdf\x5e\x85\xc5\x94\x53\xb5\x51\x4d\xca\x58\x50\x49\x5d\x7e\x1a\x49\xa0\x0e\x3f\x2f\x88\x3d\xcf\xdc\xda\x14\x78\x6f\x5a\xfe\x26\xf5\x5b\xcb\x14\xa8\xbb\x79\x8a\x8e\x89\xb1\xa8\xed\x21\x88\x1b\xfd\xf5\xce\x33\x54\x7b\xd8\xf6\x1c\x2e\xd0\x7d\x88\x1a\x90\xc2\xf5\xca\xf9\x78\x2d\x61\x79\x3c\x6e\xf7\x57\x15\x27\xdf\x4c\xb7\x7d\x60\xfb\x6f\x8f\x96\x9d\xd5\x76\x71\x38\x69\xee\xb4\xc6\xce\x35\x1b\x92\x02\xb7\x58\x7f\xe9\x79\x9e\x6e\xc8\x09\x49\x7b\x79\xf0\x40\x58\xea\xec\xb2\xb2\xf3\xf9\xd8\x1e\x2e\x2b\xd6\xd7\x6e\xf4\xc6\xcc\x9a\xf1\x71\x6e\x9c\x51\x4a\x50\x5a\xc0\x86\xd2\x1a\xa0\x33\xd4\xd2\xc8\x4a\xef\x67\x27\x77\x47\xd1\x74\x65\x2e\xd4\x96\x66\xb9\xee\xd1\x40\xa5\xf7\x51\x43\xa8\xfc\xed\x52\x26\x20\x83\xa5\x34\x26\x15\x59\x45\x44\xdd\x17\xbd\xa5\x95\xc9\x42\x1b\x30\xbc\x9e\x8f\x0f\x57\x15\x7b\xe0\x12\xc0\x88\xb3\x6b\xe9\xb8\x0b\xf7\xec\xdf\xbf\xf2\x95\xaf\x94\x54\x1c\xfe\x39\x27\x61\x59\xa7\x92\xd0\xc0\x66\x5d\x19\x39\xb7\xa9\xaa\x64\x28\xad\x2e\x2b\x17\xc7\x64\xe2\x0d\x49\xf7\x74\x1e\x25\xd1\xf8\x26\xaa\x9d\x75\x6a\x80\x92\x3a\x68\xa8\xcf\xd6\xf5\x2b\xc4\x6d\xb1\xc9\x89\xb8\x70\xc6\xb8\xcc\x3c\xad\x56\xd8\x7d\xdb\x4f\x96\x4f\xed\xec\xb7\xbf\x57\x2f\xf9\x31\x20\x6e\x95\xa4\x20\xb9\xf0\xae\x13\x8d\x78\xf5\x4a\x91\xca\x7b\x3b\x14\x2f\x63\x47\x8a\x0f\xc2\xa1\x8f\xfe\xe4\x4e\x8d\x30\x5c\xda\xa8\x76\xe2\x10\xdf\x4f\x9a\xd4\xae\x96\x62\x7c\x65\x88\xe0\x6d\xde\x28\x43\x7c\xfd\x7c\x8c\x4d\x4b\xe7\x1d\x73\x7a\x1c\x56\x86\xe0\x8e\xab\x15\x3f\xb6\x73\xbf\xf9\xf4\xc5\xdb\xab\x5f\xda\x3a\x6a\x2f\xfb\x7e\x45\xff\xb4\x53\x2f\xed\x2a\x9d\xf1\xb2\xa9\xd4\x4d\xfb\x6d\x22\xc5\x38\xcf\xf3\x79\x01\x76\x29\xfe\x4f\xdb\x86\x52\x1e\xc1\xff\xe6\xcd\x9b\xbd\xc3\x35\x93\x6f\xe7\x76\x54\xb6\x04\xfb\x60\xda\xec\x37\x26\x5c\xd5\x00\x20\x32\x8e\x52\x6a\xde\x7d\xef\x34\x2f\x4a\xc2\x15\x58\x08\x65\xe9\xb1\xad\xe2\x8b\x69\x12\x8c\x7c\x91\xda\x8d\xf8\x7c\xa4\x0f\x03\xd6\x56\xbc\x3c\x9a\xb6\x07\x00\x2c\x9c\x41\xad\x94\xa2\xa4\x1b\x49\x42\x06\x72\x3d\x80\xd8\x65\x6a\x01\xd8\x45\x6d\xe7\xfb\xb3\xe6\xee\x59\xcd\x87\xa1\x8d\x49\xd3\x18\xd1\x06\x33\xa2\x0a\x59\xbd\xc4\xf0\x5e\xa6\x64\x24\xbe\x24\xfc\xd3\x12\x84\x3f\xe9\xb0\x38\xef\x65\xb2\xee\x08\x10\x7b\x38\x1f\xb7\x47\xab\xca\x2e\xd1\x31\xe9\xb2\xbd\xba\x4f\x34\xb8\x5d\x37\xae\x07\xc7\xeb\x90\x98\xfd\x3c\x0b\x98\x01\x60\x3f\xf8\xc1\x0f\x26\xf7\xee\x88\x86\x24\x47\x1e\x03\xa8\x6b\x6b\xc6\x93\xc6\xcc\x6a\x4b\x33\x12\x1d\x53\x12\x4d\x79\xbf\x12\x6e\xd3\xe0\x24\xa4\x21\x79\xc2\x04\x52\x11\xa1\x48\xdb\xdb\x86\x97\x50\xd6\xe8\xaf\xc1\x4d\x53\xf1\x62\x31\xb2\x87\x67\xb5\x5d\x6a\xdb\x16\xa4\x1f\x33\xa7\x42\x03\xca\x44\x64\x93\x05\x33\x27\x61\xc8\xc5\xc9\xbd\x6f\xc2\x8d\xe5\xc6\xc7\x79\xb8\xb8\x21\xb5\x51\x8e\x20\x0e\xa9\x5e\x4a\x2a\x9c\xa1\x31\x5c\xca\x53\x03\x42\x1d\x7f\xa8\xde\xa5\xbc\x75\x9d\x13\x8e\x54\x1e\x32\x27\x8c\xfa\xfc\x01\x56\x63\x00\xe3\x7a\xc5\x3b\x7b\xb7\x57\x8f\xed\xde\x6d\xff\xe7\x68\xc9\x1f\x01\xd4\xf9\x0e\x4c\x01\x60\xfb\x93\x85\x3a\x49\x87\xa2\x38\x7a\x05\x90\xd0\xc0\x4b\x36\x29\x52\xb5\xc0\xc5\xf9\xfb\x8a\xb2\x13\x51\x9e\xb8\xeb\x22\x79\x40\xc2\x62\x8a\x10\xe0\x0f\xc2\x93\xc0\x26\x54\xd5\xdb\x04\x88\x95\x42\xad\x11\xf0\xab\x4b\x98\xa7\x7e\x9b\x34\x89\xf0\x40\x95\xa3\xa8\x96\xc0\x20\xc6\xac\x3e\xe3\x0f\xef\xec\x37\xff\x63\xf7\x4e\xf3\x64\x7d\x66\x77\x1c\x78\x09\xc0\x45\x9c\xbb\x61\x32\x04\x55\x3b\x3d\xff\xce\x23\x51\xdc\x04\x74\x94\xe2\x9c\x47\xca\x13\x9e\x3f\xfb\xd9\xcf\x9a\xcf\x7e\xf6\xb3\xbd\xb1\xfa\xd9\xcf\x7e\xb6\x94\xf6\x3c\x2e\x9b\x2e\x27\x71\x91\x2a\x11\xcf\xac\xb5\xc4\x76\x7f\x7b\xf5\xd6\xaa\xb2\xc7\x1c\xf2\xca\xd3\x56\xf9\xbd\x49\xd1\xdf\xee\x37\x1d\xef\x52\x00\x29\xb0\x6f\x3f\xbe\x9c\x50\x21\x6e\x26\x7f\x31\xd6\xdd\xa3\x5d\x19\x3b\x3f\x98\x36\xfb\x10\x74\x5d\x82\x96\x0c\x78\x4b\xe8\xbe\x6f\x0b\x8b\x8b\x77\x17\x23\xbb\xd8\x9f\xad\xee\x9d\x8e\xda\xbb\xde\x48\x57\x66\x23\xed\x3e\x89\xd3\x7a\xfa\xe1\xdf\x4d\x27\xea\x01\x12\x6d\xbf\x22\xfd\x93\xf7\x8c\x7f\x9c\xfe\x71\xde\xcb\x64\xab\xca\xce\x8f\x26\xed\xdd\x93\x71\x7b\x68\x29\x32\xea\x48\xd7\x3c\x79\x8a\xf5\xa6\x27\xc7\x7b\xa7\xc7\x5a\x32\xa6\x6b\x11\xe1\xbc\x2a\x01\x5d\x88\xf9\xc1\x0f\x7e\x60\xc5\xd9\x14\x01\x79\x4a\x89\x8b\xff\xab\x2c\xd5\xe3\xd6\x74\x87\xd7\x38\x27\x69\x66\x0e\xa4\x44\xc9\x8b\x87\x28\xd4\x0b\xcf\x80\xc6\x2e\xcc\x9d\x3e\xa4\x25\x26\xf1\xa9\x63\x1b\xfd\xe1\x74\xfa\xb4\xa2\x5c\xbe\x0c\xb6\x2b\xc3\xf3\xf9\xa8\x3d\x58\x55\xbc\xe4\x78\xbc\xbf\x57\x17\x01\x88\x37\x41\x4b\x24\xfe\xb9\xcf\x7d\xce\x28\xa9\x4b\xae\xff\x73\x44\x50\x4a\x62\x72\x12\x04\x1d\xa6\xdf\x37\xcd\x5f\xa6\xcd\xc5\xd7\xf9\xe4\xa4\x3f\xba\x4e\xb9\xfa\xe8\xba\x0d\x85\xad\x1b\x9f\xb9\xbe\xd9\x74\x4c\x4b\x69\x95\xae\xab\xcc\x47\x4b\x22\x73\xf9\x84\xf8\x6a\xab\xa8\x41\x5c\x38\xfd\x59\x2d\x63\x00\x63\xb3\xe2\xd9\xf6\x81\xbd\xbe\x77\xbb\xf9\xe4\x78\x6e\x9f\x86\x45\xe6\xd2\xd1\x38\x0a\xc3\x0e\x21\x74\x63\x3b\x84\xe4\x06\x7f\x96\x1b\x28\x50\x35\xb8\x03\xad\x34\xe7\xc5\x88\x36\x29\xba\x20\xea\x45\x8c\x06\x90\x49\xb0\x78\xf3\x92\x1d\x12\xb3\xb8\xff\xa0\x92\x89\x86\x64\xeb\xee\xf2\xb2\xd8\x1d\x9f\xf2\x47\x2e\xdc\x6b\x0f\x56\x53\xb3\xbf\xff\x4e\xf3\x5d\x4a\x6f\x68\x07\xc4\xfc\x24\xa2\xdc\x65\xa7\xe7\xa1\x85\x9b\x8c\xb7\x52\x9c\x9f\x8a\xee\xae\x3b\x09\xd8\x4b\xbe\xfd\x55\x07\x7f\xfb\xb7\x7f\x1b\xca\xf8\xf5\x5f\xff\x75\xf3\x0f\xff\xf0\x0f\xeb\x18\xa2\x4d\xe7\x1a\x6e\xde\xbc\x69\x45\x7d\x8a\x92\x56\x36\x68\xee\x6d\xaf\xf6\x8f\x26\xed\xeb\x5b\xcb\xea\x0a\xb9\x83\xd7\xd6\x2d\x67\x25\x9a\x1e\x5c\x21\xb0\x98\x26\x2b\x59\x28\xac\x1f\x6e\xcd\xb0\x04\xbb\xac\xf8\xf8\xc1\x56\xf3\x00\x7d\xa6\x32\xb9\x66\x82\xe3\xa5\xba\xf0\xbf\x6e\x0d\x90\x63\xd0\x02\x68\x1a\xc3\xcb\xe3\x49\x7b\xf0\x60\xda\xdc\xbe\x3c\x1f\x2d\xaa\x96\xb2\x17\xfa\xe4\x1a\xd4\xa3\x0f\xe7\xc2\x05\x65\x17\xfb\x20\x3d\xdc\x4e\x86\x9f\x8e\xec\xfe\xc1\x56\x73\xe7\x64\xd2\x1e\x23\x1e\xba\x6a\x05\x28\x4b\xd3\x64\x80\xdd\x39\x5c\x2f\xbf\x7a\x20\x70\x93\x85\xb4\x37\x58\x33\x6a\x22\xc9\xb9\x87\xf7\xda\x62\x3c\x6a\x69\x56\x59\x4c\xe5\x88\x51\x80\x38\xeb\xa8\x47\x0a\x07\x46\x22\xd2\x4e\x93\x83\x53\xe3\xec\x88\xbe\x39\x5c\x19\x9e\xa3\xf9\x7e\xd7\xa8\x25\x34\xcb\xca\xce\x4f\x47\x76\xde\x18\x0e\x12\x17\x89\x32\xd5\x2f\x24\x31\x29\xc4\x19\x02\x0e\xd9\x3c\xd1\xff\x4e\xb9\x77\xbd\x30\xaf\xe3\x00\x4b\xe0\x68\x1d\xc7\xb9\x49\x9d\x36\xe5\x32\xcf\x9b\x66\x68\xf1\xd8\xa4\x8f\xce\x53\xa7\xf3\x72\xca\x46\xff\x91\x3b\xab\xc5\x30\xa6\xd3\xb9\xbd\x7a\xf1\xcd\xe6\xbf\x4f\x8f\xec\xaf\x98\x96\xaf\x06\x30\x92\x19\xc3\x01\x67\x43\x10\xc7\x94\xbd\x4c\xe2\x21\x79\x75\xff\x0a\x20\x92\x1e\xc0\xe8\x41\x4b\x0a\x32\x72\xc4\x2b\x7b\x82\xa9\x07\x2d\x40\xfc\x15\x33\xce\x4f\x31\x8e\x6f\x5d\x0c\x27\xed\x91\x3b\x43\x38\x66\xd9\x3d\xfb\x38\xb2\x89\x1c\xeb\x2a\xce\xce\x36\xa6\xa5\x2b\xd3\x63\xfb\xd4\xc5\x3b\xcd\xdd\xe5\x8c\x0e\x8e\x1f\xaa\x6f\xa1\x23\xae\x63\x47\x5c\xfd\xf6\x55\xbf\x33\x24\x77\xa7\x91\x77\xe7\x01\x17\x25\xe0\x5d\x9a\x47\x83\x20\xc6\x03\x02\xa9\x86\xf0\xef\x24\x0e\x3b\xcb\xa9\x2b\x00\x58\x99\x5e\xc7\xf9\xfc\xe7\x3f\x6f\xfe\xfa\xaf\xff\xda\xfe\xc2\x2f\xfc\x82\xf9\x8f\xff\xf8\x8f\xf3\xb6\x27\x38\x09\xce\x95\x74\x21\xd8\xf8\x75\xcf\x68\x8e\x26\xed\xf1\xbd\xed\xd5\x4b\x97\xe6\xf5\x63\x55\x63\xa6\xfa\x6e\xba\x70\x06\x0c\xe2\x98\xd6\x74\x38\x2c\xa7\x0a\x07\x87\x72\x8b\xab\x42\x1f\x94\xe7\x18\xd9\x84\x71\x76\x15\xb1\xc4\xcb\xf9\xb8\xbd\x7b\x38\x6d\x0e\x5d\x7b\xfc\x42\x2d\xfb\x35\x39\xf6\x42\xf4\x89\x97\x36\x84\x85\x3d\xfc\x82\x9b\xd3\x51\x7b\xfc\xe6\x85\xd5\x2b\xd7\x0e\x27\xfb\xa3\xd6\x9d\x69\xa6\xea\x24\xc7\x3b\x65\xdb\xac\x5b\x19\x7d\x7d\x1a\x06\x77\x4c\x8e\xe8\x53\x8a\x89\xe2\xbc\x0c\xc2\x4c\xea\xc7\x03\xd0\x12\x2f\x8f\x27\xed\x9d\xfb\xb3\xd5\x9d\xf9\xc8\xce\xe1\xee\xe6\x83\x3b\xb1\x5a\x82\x97\x1c\xd3\xee\x5c\x09\x5f\x0c\x31\xd8\x21\x4c\x1f\xf9\xbf\x2e\x03\x99\xb8\x17\xe7\x83\x1f\xfc\xa0\x9f\x24\x72\x4f\x7b\x62\xe3\xe2\xc5\xb3\x95\xa5\xf1\xb8\xa5\x1d\xc3\x34\x8e\x23\xc5\x71\x6b\xd0\x1f\xa2\xff\x61\x3c\x55\xf7\x1f\xa8\x1b\x64\xf1\xa8\x66\x76\x5b\xa7\x25\x71\xf7\x8e\x5c\x5c\x26\x52\xf9\x0a\x6e\x56\xc6\xd5\xf5\x70\x33\xca\x1a\x5e\x2e\x47\xf6\x78\x51\xdb\x23\x0b\x6e\xc0\xc9\x16\xe8\x9e\x61\x2e\xfa\x75\x29\x81\x81\x12\x71\xdb\xe4\xc3\xae\x03\x9c\xd2\x6f\x48\xfa\xb1\xa9\x54\x44\xe7\x25\xdd\x50\xfa\xa1\xf0\x52\x3d\x91\x79\x1e\x8a\xab\xe3\x97\xd2\x0f\x49\x83\x72\xfe\xba\xce\xd9\xba\xe9\x7b\xa8\xc4\x79\x0f\xfe\xac\x96\x9a\x88\xc6\xa3\x05\xef\x5d\xb8\xdb\x3c\xbe\x7d\xbf\xfd\x95\x7a\xc5\x8f\x12\xc4\xbd\x25\x9e\x78\x27\x2b\xb6\x57\xc5\x14\xa0\xbd\x57\x56\xbb\xf4\xe1\xbe\x43\x8e\xc0\x84\xc2\x19\xe0\x08\x73\x46\x50\xea\x98\x1e\x10\x61\x5d\x1d\xd2\x53\xab\x7d\x58\x8c\x1b\xee\x71\x27\x0f\x28\xc4\xe1\x91\x2c\x6c\x65\x02\x32\x13\xe2\x68\xbf\x5a\x79\x62\xeb\xd5\x4e\x1e\x3d\x05\x7b\x1e\xc9\x6c\xc4\x7a\x87\x85\x8f\x51\x57\x0d\x3f\xb2\x75\xd8\x7e\x7c\xef\x0d\x7a\xed\x6c\x66\x0e\x57\x5b\xc6\x9f\x68\xed\xa5\xbc\x8d\x32\xd6\x2d\x7d\xdf\x75\x73\x6e\x13\x10\x6b\x32\x71\xb5\xb3\x00\xf0\xdb\xbf\xfd\xdb\xe6\xda\xb5\x6b\x49\x80\x36\x2a\x56\x76\x83\x39\x7f\x4f\x87\x7b\x0c\xa5\x07\x69\x40\x07\x8c\x32\x60\x4d\xb7\x21\x57\x77\xeb\xd4\x6c\xf6\xb9\xe7\x9e\xb3\xe2\xea\x8a\x24\x0f\xa1\x3e\xb0\x04\xb2\xcb\xca\x2e\xdf\xbc\xb0\x7c\xe5\x1d\x0f\x26\xfb\xe3\xd6\xec\x18\x8b\x3a\xaa\x65\x04\x10\x0f\xff\x00\xc9\xa3\x1b\x87\xfe\x88\xa0\x5e\x38\x10\xc7\x75\x6f\x7a\xf4\x59\xde\xdc\x0c\xd2\x60\xc1\x02\x76\x55\xd9\xf9\xfe\x56\x73\x6b\xde\x6d\xc2\x08\x52\x13\x21\x45\x49\x16\xe7\xcc\x37\x49\xe2\x3b\xe0\xd3\x00\x68\x16\xb5\x9d\xbf\xb1\x7b\xf6\xda\x3b\x0f\x26\x2f\xcd\x56\xe6\xea\xc8\x9a\x70\x6f\x9f\x04\x6d\x62\xd8\xa7\xcf\x03\xad\x94\xfd\xe0\xe7\x79\x6f\x5a\xb3\x8c\x83\x24\x8e\xec\x07\x4f\x19\xce\x46\xf6\xe0\xde\x6c\xf5\xfa\xc1\xb4\x79\xab\x31\xdd\xa1\xab\x1e\xc8\xa9\x3e\xb1\xa5\xb1\x59\x70\x9b\x80\xfb\x24\x82\x7e\xde\x84\xeb\xe8\xc5\xf9\xc1\x0f\x7e\x20\x27\x49\xcf\x28\x37\x70\x09\xdd\x19\x2e\xd3\x71\x6b\xa6\x86\x31\xf6\x40\x84\x05\xd2\xce\xa1\x49\x81\xe5\x7b\xa8\x39\x10\x52\xc1\xcd\xa5\x88\x92\xd3\x3c\xd6\x74\xa2\xdc\x0b\xaf\x07\xb2\xd8\x1e\xd7\x2c\x6a\x7b\xbc\x1c\xd9\x05\xc4\x60\x86\x42\xe2\xae\x4f\xf4\xc4\x2f\x2d\xd6\x32\x9f\x5c\x98\x5c\x0c\xfd\x9f\x8c\xaf\x3f\xbe\x4e\x3b\x04\x8a\xb4\xd3\x0b\xb2\x2c\x4f\xd6\x21\x57\xcf\x4d\x5d\x4f\x95\x92\x29\x7b\x28\xcf\x92\xc8\xdc\xf7\x89\xec\x9f\x4d\xa5\x24\x83\x62\xf8\x0d\xcb\x0e\x71\x04\x80\x37\x10\xb7\xe5\xc2\xa9\x88\xb6\x1e\xb4\xef\xda\xb9\xdb\xfe\xf7\xd1\xc2\x3e\x41\x96\x67\x31\xa9\x10\x5d\x00\x29\x15\xe3\x24\x96\x7b\xf0\xf1\x52\x8a\x1e\xe7\x8f\xb4\xe2\xf2\xbc\x2b\x92\x09\x27\xe3\x26\x79\x26\xf9\x65\x28\x1b\xc5\xc4\x51\x15\x4f\xfd\x2a\x91\x07\x4e\xca\xa6\x8c\xe5\x2c\x8b\x22\x1e\x4a\x26\xbf\x23\xbc\xe9\x2a\x05\xc7\xa9\xb8\xf8\x62\xd1\x62\x9e\xd5\x4b\x7e\x74\xfb\xa0\xfd\xc4\xee\x5b\xcd\xa3\x48\xb7\x47\xcb\xd3\x4f\x83\x53\x2a\x0f\xef\xd6\xd1\xc9\xa1\xb9\xa3\xe3\x0e\xc6\x7b\xf6\xd9\x67\x25\x68\x91\x73\x4e\xbf\x7b\x1b\x29\xff\x9c\xfc\x02\xa9\x2d\xcf\x40\x3e\xda\x06\x2b\x57\xbf\x6c\xdd\xfd\x22\xfd\xc7\x7f\xfc\xc7\x59\xd0\x82\x74\x81\x6f\x00\x34\x96\xb0\xbc\xb3\xb3\x7c\xe3\xc1\xa4\x79\xbd\x35\xbc\xcc\xae\x90\xd9\xb2\xdc\xaf\xfa\xfe\x39\x89\x89\x1f\x8b\x6a\xe4\x26\x00\x40\x16\x96\xe4\xa1\xa4\x8b\x4c\x80\x25\x34\xf3\xb1\x3d\xb8\x73\x61\xf9\x4a\x6b\xfa\x3b\x47\x55\x9b\x25\x50\x29\xfd\x86\x3c\x88\xa8\x69\x2b\x2c\x0e\xb6\x9a\xbb\xb7\xf6\xce\x7e\x78\x3a\xb2\xfb\x72\xcd\x49\x6a\xea\x19\x11\xe1\xa9\xdb\x18\x3c\xb9\xf7\x98\x8d\x4d\x28\xf4\x27\xf7\x63\x13\x80\x96\xb8\x79\x30\x6d\x5e\xbf\x7d\x61\xf9\xca\xd1\xb4\x3d\x00\x15\xfb\xc3\xbb\xf0\xfe\xe6\x9b\x6f\x66\xfd\x33\x6e\x08\xe0\x1b\x20\x4a\x5c\x86\x38\xc9\xdc\xc2\x91\xe3\xd6\xb3\x47\x3f\x43\x4c\x16\xcf\x35\x10\x60\x46\x2d\x8d\x47\x0d\xcd\x0c\xd3\x58\x22\x41\x41\x9f\xa0\xf3\x8a\xa2\x72\x05\x37\x15\xca\x95\x88\x32\x44\xe9\xa5\x8b\x84\x32\x32\xb2\xec\x06\x7c\xe4\xf8\xfa\x79\x20\x88\xab\x5b\xc2\x72\x59\xf1\x7c\x59\xd9\x85\x44\x99\xf2\xfc\x16\x44\x04\xaa\xc5\x65\x25\xe9\x88\xec\x33\x19\x0f\x85\xb8\x32\x1f\x4d\x7c\x86\x08\xee\x90\x24\x43\xbe\xeb\x31\x50\xf2\x93\xe9\x74\x99\x43\x6d\x1d\x4a\xef\xf3\x18\x4a\x2f\xe3\x0c\x01\x90\x75\x52\x16\x99\x4f\xc9\x0d\x7d\x07\x00\xc0\xde\xde\x1e\x0e\x0e\x0e\xb4\x88\x5f\x2e\x20\xde\x20\xb7\x26\x60\x3a\x99\xdb\xcb\x3b\xfb\xed\xcf\x4d\x4e\xec\x53\xa6\xe5\x2b\x51\x5f\xd2\x51\xdf\x28\x3a\xe7\xc0\x91\x4a\x89\x85\x1c\xa3\x51\x1f\x1d\x44\x98\x41\x05\x13\xa4\x91\xa9\x20\xdc\x25\x14\x93\xcf\x89\x79\xe2\xb5\x01\x99\xd5\x44\xb1\x60\x2c\xf3\xa6\x68\x4c\x08\xf8\x39\x1b\x57\x9d\x70\x79\x9b\x98\x47\x81\xe9\xf0\x99\x06\x35\x99\xa8\x63\xb0\x13\xc8\xf5\xba\x68\x2f\xe0\xec\xd9\x1c\x2c\xb2\xd8\x1d\x9f\xda\x27\x2e\xde\x69\x3e\x76\x74\xa5\xbe\xb5\xdc\x22\xcb\x08\x12\xd1\x06\x91\x2e\x85\x31\x36\xa0\x32\x02\xfa\xe3\xbe\xc4\x90\xac\x1b\x47\x09\x5d\x55\xbb\x31\x25\x10\x08\xe3\x48\xa8\xdd\xc3\xbb\xff\xcd\x70\xb3\x72\x21\x0d\x65\xb9\x31\x68\xc5\xe2\x1a\xc6\xb4\x04\x2f\xbe\xfd\xdb\xdb\xdb\x38\x39\x39\x29\xb5\x21\x38\x99\x5f\xc6\x9e\xa3\x01\xd0\x30\xb8\x21\xa2\xe6\x70\xda\x1e\xde\xb9\xb0\x7c\xf1\xd2\xe9\xe8\xd1\xdd\x96\xa6\x04\x32\x9c\x19\xbd\x69\xfe\xee\x17\xe2\x57\xad\x03\x5a\x32\xa0\x2f\x18\xf5\xd2\x04\x50\x5a\x86\xd4\x78\x46\x46\x37\x14\x82\xa6\xe2\xc5\xc1\x56\x73\xeb\xcd\x0b\xcb\x37\x41\x58\x42\x6d\xc0\x80\xf8\x96\xea\x1b\x5a\x3f\xb6\xbc\xf4\x4b\xa8\x8a\x1a\x22\x5a\x02\x58\x32\x73\xb3\xac\xed\xfc\xd5\xbd\xc5\x4f\xde\x71\x30\x79\x71\xb6\xaa\xae\x54\xd6\x1d\x81\xc0\x94\x2e\x59\x7a\x6d\x14\x7d\x10\x1e\x55\xe7\xf5\xe9\x43\x2f\x50\xb7\x8a\x8a\x00\x00\x20\x00\x49\x44\x41\x54\x69\xda\x21\xa2\x1c\xed\x7d\x3a\xb2\xfb\xb7\x77\x97\x2f\xbe\x75\x61\xf5\xda\xa2\xb6\x73\xa0\xeb\x0f\xd7\x9e\xe4\x18\x10\xad\x2e\xfa\xbb\xbf\xfb\xbb\xf3\x30\xb4\xa1\x1f\xdd\x6f\x32\x5f\x72\x0b\xdd\xa0\x54\x45\xf8\x27\x00\x2e\x40\xd1\xbf\x0b\xdf\x93\x4f\x3e\xa9\x8d\xdb\x00\x20\x99\x7c\x40\x27\xbe\xac\x2c\xd5\xa3\xd6\x4c\x47\xdd\x8e\xa2\xba\x27\x12\x64\xc8\x05\xde\x67\xd4\x13\xc3\x39\x7a\x1c\x74\xa2\x1a\x23\xca\x2c\x3a\xeb\x68\x75\x46\xae\x64\x64\xbd\x2e\xae\xa3\xc4\x3d\xb1\x96\xdf\xcd\x21\x78\x51\xb4\x86\x97\xcb\xda\xce\x57\xa6\x3f\x90\x85\x48\x30\xc9\xe3\x1c\x06\x80\x5a\x62\xa0\xd3\x6c\x1a\x9e\xfb\x83\x48\xab\xd3\xe4\xea\x31\x54\x46\x29\x7d\xae\x3c\x1d\x96\x2b\xab\xe4\x97\x4b\x3f\x04\x86\x74\x39\xb9\xe7\xd2\x7b\xae\x9e\xa5\x34\xc9\xf3\xc1\xc1\x41\xb2\x88\x79\xfd\x2e\x04\x17\xec\x54\x44\xd3\x7a\xc5\xb3\xd9\x41\xfb\xe8\xf6\x41\xfb\x54\xbd\xe2\xf7\x10\xc3\x04\xf0\x40\x29\xf7\x97\x5a\xf7\x53\x9f\x40\x39\x4e\x94\x05\xf2\x4f\x08\x95\x47\x38\x0e\x04\xb1\xd4\x75\x4b\x6c\xe1\x33\x83\x78\xf7\x80\x3e\x08\x61\xdc\x16\x6c\x0f\x88\x48\x1c\xd1\xef\xe7\x2e\x75\x44\xb7\x8b\x1f\xa5\x2b\x1e\x84\xf5\x19\x13\x88\xb8\x6e\xe7\x14\x8b\x55\xc6\xb7\x01\x14\xe2\xf8\x86\x33\xfb\x83\x29\xc5\xc9\xdb\x2e\x3d\x01\xc6\x34\xb8\x3a\x3d\xb2\x1f\xdf\x7b\x7d\xf5\x98\x69\x30\x23\x71\x97\x91\xff\x2e\x48\x69\x14\x06\x5c\x09\xdc\x4b\x3f\x1d\xb7\x28\x7d\x79\xe6\x99\x67\x8c\xdf\x26\x2f\x24\x23\x12\xa4\x18\x51\xd7\xe4\xf2\x4d\x00\x63\xea\x76\x4c\xc5\x6b\x22\xdc\x05\x93\x48\x25\x4b\xc1\x8f\xe2\xb5\x12\x5a\xea\x94\x80\x22\x2f\x85\x79\xfc\xf1\xc7\x73\xed\xee\xb5\x43\x00\x3d\x7d\x52\x78\xd8\xac\xe0\x16\xea\xe6\xac\xb6\xf3\x5b\x7b\x67\x3f\xde\x9f\xad\x5e\x5a\x56\x3c\xf7\xa0\x45\x4b\xb6\x7b\xd2\x3e\x2d\x03\x10\x36\x18\x32\x38\x8c\x00\x35\x3f\x92\xa1\x04\x41\xc9\x75\x3c\xc4\xb8\x96\xd0\x9c\x8c\xdb\xbb\xb7\x77\xcf\x5e\x70\xf6\x2d\xfe\x1e\xba\xc4\x20\xd5\xfd\x86\x3e\xf1\x76\x2d\x62\xcd\xd2\xeb\x82\x07\x74\x4b\x22\x5a\xb4\x06\x8b\xfb\xb3\xe6\xee\x4b\x97\x17\xdf\x3d\x9a\xb4\xb7\x2d\xc1\x26\x7c\x83\x40\x10\x89\x34\x46\xaa\x6b\x15\x3f\xd2\x8f\xdd\x97\x9e\xc6\x10\x31\xf3\xc5\x5c\x97\x40\xae\x31\xbc\xbc\xb7\xbd\x7a\xe9\xb5\x8b\x67\x2f\x1e\x4f\x9a\x03\x06\x2f\x99\xbb\x3f\xd1\x1f\x5e\x1d\xdb\x5b\x2f\x9e\x7c\xf2\xc9\x12\x23\x8d\x8c\xff\x20\x93\xa8\x27\xad\xe6\x7e\x87\x44\xe6\xc5\xc5\x4e\xee\xdd\x16\x7e\xa1\xac\x51\x4b\xf5\xb4\x31\xdb\x75\x6b\x02\xda\x76\x94\xa6\x8b\x4c\x91\xc0\x01\x08\x84\xcc\x03\x14\x86\xef\x68\x8e\x46\x47\x1a\x68\x80\x13\x8e\x2d\x47\x8a\x58\x94\x21\x39\xc3\x08\x84\xa2\x8b\x3a\xf8\x48\x1a\x5b\xc3\xcb\x65\xc5\xf3\xc6\xed\x63\x77\x7f\xe1\x9e\x22\xd7\xee\x04\x75\x02\xc0\x67\x3e\xf3\x99\x1e\xb1\x74\x4e\x4b\x33\xa4\xbf\x7e\xce\x49\x10\x7a\x80\xb2\x90\xd6\x3b\x09\x00\x86\x08\x93\x96\x52\x0c\x8d\x8b\x52\xbd\xb5\x5f\x49\xca\xb1\x6e\x40\xcb\xf7\x52\xfd\x86\xd2\xf4\x08\xf5\x06\xe9\x86\x5c\x92\xd7\x2f\xfe\xe2\x2f\x1a\x2d\x6d\x11\x63\xbf\xf6\x76\x2d\x60\x1e\x4f\x0f\xed\xd5\x9d\xfd\xf6\xe7\xc7\xa7\xfc\x04\xb5\xbc\x0b\x20\x21\x3e\xd2\xf8\x95\xd9\x49\x22\xa2\xc5\x6b\x00\xf9\xc1\xe9\x2d\xa9\x62\x06\xc9\x30\x0f\x7c\x82\xa4\x53\x73\x9c\x7e\x92\xb9\x3c\xa4\x3d\x49\x87\xab\x3c\xb1\xf4\x75\xe1\x70\xd1\x9d\x07\x50\x21\xbe\x4f\x1e\x08\xab\x5f\xa4\x3a\x5b\x17\xaf\xa5\xf2\x71\xa2\x04\x29\x56\x22\x59\x6c\x9c\xd4\x85\xc2\x56\x6c\x2f\x85\x91\x67\x71\xf8\x33\x99\xd8\x23\xaf\x71\xbd\xe4\xc7\x76\xef\x36\xbf\x3c\x3d\x69\x2f\x13\xc3\x9f\xeb\x32\xa6\xee\xf0\xbf\xf0\x0d\xbd\x7d\x9e\x97\x1e\xd7\x75\x2d\xc7\x48\x6e\x6e\x0e\xcd\x55\xff\xae\xe9\x6a\x00\x06\x0a\xd4\x02\x48\xd4\x3e\x01\x60\xb8\xed\xdc\x63\x22\x1a\x1b\x8b\xd9\xa4\x35\xb3\xe9\xca\xec\xcc\x96\x66\x77\x67\x59\xed\x6d\x9f\x55\x7b\x3b\xcb\x7a\x6f\xfb\xcc\xec\xcd\x96\x66\x77\x6b\x69\x76\xa7\x2b\xb3\x33\x6e\x68\xc7\x58\x4c\xc1\x09\x90\xd1\x20\xa8\xa7\x62\x72\xef\xb8\x71\xe3\x46\xae\x9d\x49\x3f\xfc\xf9\x9f\xff\x79\x78\xf6\x8b\xb7\xa7\x7b\x48\x17\xe9\x06\xc0\x92\x09\x8b\x3b\x3b\xab\x3b\xb7\xf6\xce\xbe\x7f\x34\x6d\x6e\x5b\x72\x3b\xbc\x4a\x44\x37\x04\x92\x1a\xca\xa5\x85\xb8\x8b\x1b\x04\x97\x90\x63\x3f\x22\xf4\xbc\x85\x8b\x8c\xcd\x58\x56\x7c\x7c\x77\x7b\xf5\xd2\xad\x8b\x67\x3f\x6e\x0c\xc2\x5d\x74\xea\xcf\x2a\xa0\x12\xc0\x9b\x94\x3a\xf8\xfe\xf0\xc0\x47\x00\xa0\x25\x80\x45\x63\x78\xfe\xe3\x2b\xf3\x1f\xbc\x7a\xe9\xf4\x5b\xa7\x23\x7b\xc0\x80\x0d\x73\xa0\x87\xf4\x55\xeb\xfd\xbc\x91\x60\x84\x63\x9f\x65\xe9\x45\x9a\x3c\x7d\x27\x39\x03\x01\x4b\x6c\x1f\x4c\x9b\x5b\x2f\x5f\x5a\x7c\xf7\xcd\x0b\xcb\xd7\xce\x6a\x3e\x06\xb0\x20\xa2\xa5\xb0\xd7\xe9\x31\x77\xbe\xdd\x37\x6f\xde\xb4\x8b\xc5\xc2\x67\x5f\x5a\xa3\x4a\x6b\x5f\x6f\x7d\xa8\x33\x11\x37\x95\x08\x24\x99\x3f\xff\xfc\xf3\xfa\x03\x25\xc6\xb9\x62\x32\x98\x51\x4b\xe3\x49\x43\xb3\xda\x62\x46\x9e\xb2\x05\x0e\xb1\xbf\x05\xcb\xdb\x11\x0a\x30\x8c\x94\x25\xf5\xf8\x59\x1c\x26\xe7\xc5\x67\xe0\x20\x3a\x0e\x14\x5f\x70\x9b\x29\x77\x49\xaa\x0c\xe9\xd2\xdb\xa9\x19\xb0\x2d\xf1\xf2\xac\xb2\xf3\x65\x15\x6e\x85\xb6\x40\x24\xec\x72\x30\xfb\xdf\x2f\x7e\xf1\x8b\xe6\xcf\xfe\xec\xcf\xb4\xb4\xa0\x24\x39\x58\xe7\x3f\x44\x48\x73\x20\x26\x97\x5e\xa6\x91\xe1\x39\xff\xf3\xc4\xcd\xb5\x2f\x37\x40\x4b\x63\x6c\xa8\x7e\xd2\xaf\x04\x60\x72\x52\x99\x52\x7f\x97\xe2\xad\x6b\x47\x2f\xed\x57\xbf\xfa\x55\xfb\xc4\x13\x4f\xc8\xeb\xdc\x83\x6d\x8b\x9b\x03\x63\x00\x75\xbd\xe4\xd9\xec\x41\xfb\xe8\xd6\x51\xfb\x91\xaa\xe1\x47\x92\xf1\x1a\xc4\x20\x71\xd0\x07\x42\x98\xb2\x8c\x51\xec\xe8\x10\x43\x98\x09\xec\xdf\x7d\x18\xc7\x79\x21\xf2\xd0\xb6\x58\x31\x6f\x3f\xd8\x25\x47\xc7\xe1\x2c\x09\x7f\x58\x5d\xef\x7c\x0c\xa9\x03\x82\x07\x24\xf9\xad\x90\xfe\x2c\x99\x30\x3f\x05\xe2\x11\x58\x4a\x88\xb3\xc5\x05\x8e\x61\xde\x4b\x09\x0e\x07\xbf\xd0\x3e\xb8\x3a\x5a\xec\x4d\x4e\xec\x47\x2f\xde\x6e\xfe\xe3\x6c\xcb\x1c\xb7\x63\x2c\x41\xd4\x38\x20\xe9\x69\x97\x27\xbe\xc1\x35\x4d\xb3\x09\x0d\x1c\xa2\x99\xbd\x31\xa5\x0c\x59\x7b\xc4\x5b\x48\xe5\x3a\x30\xc1\x30\x06\x54\x1b\x8b\x9a\x98\xea\x4b\xf3\x7a\xf6\xf0\xd1\x78\x77\xf7\xac\xde\xd9\x5a\x99\x9d\x71\x6b\xa6\x55\x77\xac\x84\xb1\xc4\xcd\xb2\xb2\xf3\x55\xc5\x8b\x55\x65\x97\x47\xe3\xf6\xf8\xcd\xdd\xe5\xe1\x83\x69\x33\x6f\x0c\x37\x96\x60\xe1\x16\x1a\x01\x28\x3c\x93\x19\xea\xe8\xc2\x0c\x10\x55\x67\xe3\xf1\xd8\x2c\x97\xcb\xde\xbc\xfa\xc3\x3f\xfc\x43\xb3\xbd\xbd\xed\xd3\xc9\xf4\x81\x99\x13\x7f\x0b\x00\xd3\xb3\x91\x3d\x7e\xf5\xd2\xe2\xc7\x97\x4f\xeb\xeb\xb3\x55\x75\x79\xb6\x34\x97\xe3\x1c\x48\xe9\xaf\x97\x05\xf8\x4f\x1e\xc3\x34\x05\x57\xfe\x5e\x72\x20\x24\xed\x2c\xf2\x29\x39\x3f\x87\x5a\xc2\xf2\xc1\xb4\xb9\xfd\xda\xde\xd9\xf7\xef\x6e\xaf\xee\xa2\x53\x13\x2d\x89\x48\x1e\x7d\x91\x35\x46\x55\x5b\xc4\xa1\xe2\x48\xd5\xca\xd2\xff\x31\x61\x71\x32\xb6\x07\xff\x79\xed\xe4\x1b\xb3\x65\x7d\xf9\xfa\xc1\xf8\x23\x93\xc6\xec\x64\xb1\x06\xf5\x9b\x10\xf8\x08\x17\x16\xe6\x1c\xf5\x13\xc9\x3e\x56\x3b\xa3\x02\x8d\xf0\x42\x01\x06\x30\x1f\xb7\xfb\xaf\x5c\x5a\x7c\xeb\xc7\x0f\xcd\x7f\x70\x32\x6e\x0f\xe0\x40\x8b\xaf\xbb\x00\x2f\x09\x90\x93\xf3\xfe\xfb\xdf\xff\x7e\x6e\x6d\xca\xbd\x63\x20\xcc\x02\xe9\x76\xe8\x9c\x2b\x71\xf5\x32\x0c\x00\xec\x93\x4f\x3e\x69\x9e\x7f\xfe\xf9\x9c\x15\x71\x20\xf4\x14\xb6\x42\x53\x3d\x69\xcc\xac\xb2\x34\x95\x44\xca\x0f\xc3\x48\x93\x23\x8c\x08\x4f\x72\xc7\x84\x54\xc3\x64\xd3\x09\xae\x52\x42\x12\xf9\xd1\xd9\xfd\x93\x0c\xee\xfc\xb8\x96\x52\x39\x26\xd8\x55\xcd\x8b\x65\x6d\xe7\x8d\x61\x29\x1e\xeb\x89\x4c\xe5\xaf\x03\x2d\xb2\x4f\xe5\x73\x8e\xe8\x95\x3e\xe8\xd0\xf3\x26\xf9\x96\xd2\xe4\xfc\x4b\x00\x6a\xd3\x3c\xd6\x95\xb7\x2e\xdd\xa6\xe5\x6c\x9a\x6e\x53\xbf\x52\x5e\x83\x5c\xb7\xf8\xde\xbd\xeb\x2e\x9c\xa8\x7e\x3c\x3d\xb6\x57\x66\x87\xf6\xbf\xd5\x67\x78\x94\x98\xc7\xc9\xe8\x17\xaa\x99\xde\x38\x14\xf6\x21\x11\xd1\x8b\x79\x20\xf0\x86\x36\x05\x4b\x72\x8b\x18\x41\xf8\x09\x9b\x98\x44\x04\xcd\x0e\x4c\x44\x75\x55\x17\x2f\x4a\x48\xbb\xb2\x04\x89\x15\xf9\x32\x28\xd9\x62\xd9\x4d\x37\xcd\x08\x08\x25\x0f\xcb\x72\x22\x46\x09\xbb\x00\x7b\xed\x4d\x0a\x4b\xb1\x9c\x78\xae\x1b\xbc\x67\xfb\xa0\xbd\x31\x39\xb5\x2f\x9e\xd6\xd5\x9c\x2b\x2c\x11\x99\x37\x0b\x08\x3b\x3c\x07\x66\x9e\x79\xe6\x19\xf3\x97\x7f\xf9\x97\x38\x3a\x3a\x2a\xd1\xc0\xd2\x5c\x49\x98\x85\x9f\xfb\xb9\x9f\x33\xdf\xf9\xce\x77\x24\x30\x00\x52\xd0\x12\xa4\x72\xf2\x99\x99\xeb\x9a\xa9\xbe\x34\x1f\x4d\xdf\x7d\x7f\x7a\xe5\x6d\xc7\xa3\x77\x5d\x3c\xad\xdf\x3f\x5b\x55\xef\xab\x5b\xba\x56\x31\x5d\x36\x8c\x1d\xc0\xdf\xba\xcc\x4b\x4b\x98\x33\xf1\xdc\x12\x1f\x37\x06\xb7\x4f\x47\xf6\x27\x47\x93\xe6\xa5\x7b\xdb\xab\x5b\xaf\x5d\x3c\xbb\xf3\xd6\xce\xea\x78\x31\xb2\x72\xf1\x94\xe7\x4e\x49\x17\x6c\x33\x00\xe0\x4f\xfe\xe4\x4f\x70\xf3\xe6\xcd\x5e\xa4\x2f\x7f\xf9\xcb\x80\x03\x38\x8a\x59\x6b\x80\x70\x17\x57\xb2\x48\x03\x58\xec\x6f\xad\xee\xbe\x74\x69\xf1\xdd\x9d\xb3\xfa\xf2\x23\x0f\xc6\xd3\x51\x4b\x33\x01\x3b\x83\x93\x70\x46\x9e\xe1\xc5\xbd\x38\xca\x71\xa4\xeb\xd1\x14\xa0\xe0\x14\x73\xcc\x80\x3d\x99\x34\x77\x5f\xbd\xb4\xf8\xee\x4b\x97\x4e\x7f\xdc\x18\x5e\x10\x68\x81\x0e\x78\x85\x7e\x53\xd2\xf5\x64\x2c\xde\xbc\x79\xd3\x3a\xdb\xa5\x40\xc7\x05\xd0\xf1\xfd\x51\xfb\xfe\x70\xcf\xe3\xbb\x3b\xab\x37\xbe\x7d\xed\xf8\xdf\xc6\xcd\x85\xd9\xc3\x47\xe3\xc7\xc6\xae\x5f\x12\x3b\x37\xa4\xbc\x8b\xee\x84\x94\x79\x4f\xda\x05\xdd\xc7\x29\xd3\x94\x1e\x8f\x00\x00\xcb\x9a\x8f\x6f\xed\x9d\x7d\xeb\xbb\xd7\x8e\xbf\x7d\x34\x6d\xf7\x99\x30\x07\xb0\x60\x66\x0f\x5e\x7a\x36\x2e\x4a\x5d\xe8\xdd\x10\xc3\xba\xa9\x90\x04\xc0\xfa\xed\xd0\x9b\x48\x63\x0c\x00\x3c\xff\xfc\xf3\x61\xfb\xa7\xb2\x45\x09\xbb\x2a\xfc\x9f\x61\xaa\x2b\x4b\x63\xc3\x6e\xdb\xa7\x1b\x60\xd1\x10\x31\xed\xe8\x3e\xba\x4c\xa1\x85\xff\x80\xe1\x63\x52\xff\xa3\x46\xc3\x3e\x35\x74\x85\x5f\x87\x61\x7a\xd4\xbe\xe7\x08\x80\x25\x6e\x56\x86\x17\xab\x8a\xcf\x00\xc8\xf3\x0a\x82\x7a\x28\xd3\x57\xde\x95\x24\x26\xeb\x80\x62\x4e\x8a\xa2\xf3\x19\x4a\x23\xcb\x28\x95\x33\xe4\x72\x52\x90\x52\x9d\x75\xfd\x86\xd2\xe7\xf2\x1a\xaa\xe7\xa6\x69\x36\xad\x83\xae\x87\xf4\x93\x69\x72\xbf\x49\x7a\x79\x00\x23\xc7\x93\x59\x93\xfb\x88\xaa\x25\xef\xcc\x0e\xda\xf7\x4f\x8e\xda\x27\x4c\xcb\x57\xe3\x51\xf6\x48\xc6\xa3\xdc\x1a\x1c\x06\x34\x10\xa4\x18\x41\xda\x20\x28\x2e\x89\x09\xd0\x71\x9c\x11\x10\x91\x9e\x14\xb1\x40\x27\x7a\x56\x71\x3c\xa8\x97\x9c\xad\x5f\x0c\x3c\xc8\xf1\x31\x5c\x59\x79\xc0\x9f\xf0\xcc\xf0\xd2\x4f\x39\xcd\x92\xd9\x4c\xd1\xea\x21\x61\x84\xd2\xea\xc4\xf6\x06\x75\x56\x9c\xbb\x29\x61\x76\x4d\xb1\x98\x4d\xe6\xf6\xc9\xdd\x3b\xed\x37\x57\x53\x73\xb0\xaa\x68\x41\xd1\x50\x52\x9e\x39\x15\xbe\xeb\x73\xcf\x3d\x67\x2f\x5c\xb8\x90\x1b\x8b\xfa\x59\xfb\x25\x61\x1e\xb4\xe8\x2d\xf2\x48\x01\x4b\x50\xdd\x10\x51\x3d\x59\x99\xf1\x23\x87\xe3\xcb\x1f\x78\x6b\xf6\xd8\x43\x27\xf5\xcf\x6f\xad\xaa\xc7\x27\x8d\x79\xac\xb6\xf4\x48\x07\x56\x72\x8c\x27\xa9\x5f\x34\x3b\x67\x66\x7e\x69\x5e\xdf\x7e\xfb\xe1\xf8\xa5\xf7\xdf\xdd\xfa\xfe\xfe\xac\xf9\xcf\x9f\x5c\x3e\xfd\xee\xcb\x97\x16\xb7\xe7\x13\xab\xed\x13\x12\xa9\x93\x07\x2d\x19\x83\xe5\xec\xb3\x62\xd6\x2c\xa2\x6d\x8b\x6f\xa3\x97\xba\x8c\x5b\x83\xe3\x5b\x7b\x67\x3f\x19\x77\xe7\x79\x8d\x1f\x3e\x1c\x3f\x36\x16\x5b\x81\x73\xed\xca\xd9\xc2\x48\x00\x93\x2e\xe4\x82\x5d\xed\x99\x12\xa8\x35\x22\x05\x2d\x98\x8f\xed\xc1\xcb\x97\xce\xbe\xfd\xc2\x95\xd3\x6f\x1e\x4d\xdb\x7d\x22\x9a\xbb\x7a\x7b\xc0\xd1\xdb\x4d\xa3\xec\x3a\x7a\x4e\x4a\x67\x04\x90\xab\x11\x41\x4b\x0d\x60\xce\xc0\xf8\xd5\xbd\xb3\x97\xeb\x96\xfe\xef\x0f\x55\xdb\xcd\xdb\x0f\xc7\x8f\x4d\x57\x66\xd7\x64\xc4\x2c\xb2\x0d\x69\x7b\xd4\xbc\x51\xf1\xb5\xbf\xf4\x09\xbb\x66\xc1\x58\x8c\xec\xc1\xcb\x97\x16\xcf\xff\xc7\xf5\xa3\x7f\xdb\x9f\x35\x6f\x58\xc2\x31\x80\x39\x80\x39\x11\x2d\x90\x4a\x5c\x12\xcc\x90\x91\xe6\x9e\x0b\x9c\x0c\xa5\xab\x32\xed\xc9\xbd\x0f\xb9\x10\xef\xe9\xa7\x9f\x26\x44\xd5\x50\xe5\xf2\xa9\x88\x68\x04\x60\x44\x44\x53\x00\xd3\x0b\x67\xd5\xa5\x6b\x47\x93\xc7\x1e\x9a\x8f\x3e\x50\x5b\xda\x49\x45\x5a\x91\xf0\x84\x8f\x90\xa0\x47\x11\x4e\x82\x18\x8a\x8a\x6b\x17\x07\xe6\xf0\x19\x31\x04\x0c\xa3\x72\xa1\x8e\x6a\x0c\x2f\x0e\x66\xab\x97\xde\xb8\x78\xf6\x83\x07\xb3\xf6\x2d\x00\xa7\x44\xb4\x60\xe6\x33\x00\x67\x00\x56\xee\x63\xb6\x14\x59\x51\xde\xdd\xdd\xa5\x97\x5e\x7a\x29\xb7\xf0\xf9\x2a\xf8\x30\x39\xb7\x34\x18\xc8\x81\x68\xad\x44\x90\xcf\x7a\x6e\xe7\xfc\x8c\xfa\xd5\xf5\xca\xd1\x8b\x12\x88\xf1\x75\xb2\xea\x5d\x96\x6d\x32\xcf\x3a\x4d\xae\x9e\xba\xbe\xba\x1f\x6c\xa1\xae\xf2\x33\x5b\xf4\xdb\xea\x7f\x0d\xd2\xe1\x67\x55\x78\xae\x4f\xf1\xcb\xbf\xfc\xcb\xf4\xea\xab\xaf\xf2\x8d\x1b\x37\xfc\x1c\x30\x00\x88\x88\x2a\x27\x65\x19\x11\xd1\x84\x99\xb7\x66\x87\xf6\xe1\x8b\x77\x9a\x4f\x6c\x1d\xd9\xa7\x8d\xe5\x4b\xe4\x0d\x3b\x7a\x6b\x8e\x00\x2d\xb2\x09\xdd\x40\x75\xe0\x84\x90\x18\xa9\x40\x3d\x8a\xb4\x52\xf3\x13\xf2\xf3\x12\x15\x3f\x93\x12\x95\x0d\x00\x0d\xe2\xa3\xa1\x8b\xeb\x88\x78\x76\x52\xcc\x3f\x37\x24\x63\x3e\xbd\xdd\x0d\xa2\x3e\xe1\x0c\x98\xc4\x3a\x50\xe4\x25\x90\x95\x84\x54\xa9\xe4\x45\xf4\x07\x03\x1c\x80\x13\x40\x4c\x5b\x6c\x70\x77\x71\xa1\xba\xd5\x8c\xe9\x18\x26\x99\xa3\x61\xd1\x66\x66\xfb\xf4\xd3\x4f\xd3\x8d\x1b\x37\xe8\xab\x5f\xfd\xea\x79\x08\x6e\x6e\xfe\xe0\xd9\x67\x9f\x35\x37\x6e\xdc\x20\x3f\x2e\x5c\xbc\xca\xfd\x8d\xe4\xdf\xa8\xa1\xd9\x3b\x1e\x4c\xae\x3c\xf1\xc6\xce\xcf\x7f\xf0\xce\xec\x33\x0f\x1f\x8d\x3f\xbb\xb3\xac\x3f\x3d\x6d\xcc\xcf\xd5\x4c\x6f\x23\x60\x06\x90\xe9\x4c\x91\xdd\x7f\xee\x26\x70\x4f\xbf\xe2\xbf\x64\x08\x98\x54\x4c\x17\x47\xad\x79\xf7\xa4\x31\x8f\x6d\x2f\xab\xf7\x3f\x34\x1f\xbd\xfd\xa1\x93\xf1\xb8\xb6\xb4\x7c\x30\x6d\xce\xac\xe9\x8d\xbe\xb0\x16\xba\x05\x88\x6e\xdc\xb8\x81\xaf\x7f\xfd\xeb\xc5\x75\xe1\xeb\x5f\xff\xba\x1f\xff\xf2\xcf\x88\xe7\x0a\x00\x05\x35\x18\xa1\x6a\x0c\xe3\x74\x6c\x97\x96\x60\x67\xab\x6a\x6b\x6b\x65\x2e\x56\x4c\x95\xff\x8a\xb2\x42\x70\x9e\x7e\x48\xf8\xa1\xab\x01\x70\x0f\x9b\xbb\x74\x7d\x73\x83\x38\x5c\x25\xb3\x3b\x1f\xb5\x07\xaf\x5e\x5a\xfc\xe7\x8f\xae\x9e\x3e\xff\xe6\x85\xe5\x6b\x96\x70\x84\x4e\xca\x70\x8c\x0e\x64\x2c\xe0\x68\x3c\xba\x31\xd3\x22\xd2\x04\xeb\xfb\x02\x08\x6b\x22\x98\x99\x29\x0e\x50\x72\xfd\x20\x6d\x9c\xba\xbe\x12\x9f\xf3\x78\xda\x9e\x9e\x8e\xec\x49\x65\x41\xd3\xa6\x9a\x8d\xba\x1d\x58\xc9\x8c\x48\x67\x56\x7e\xfd\xd3\x1d\xa9\xd3\xe8\xb4\x0c\xc0\x12\xdb\xe3\x49\xfb\xd6\x4b\x0f\x2d\xbe\xf9\xcd\x77\x1c\xff\x3f\x77\xb7\x57\xa1\x1f\x98\xf9\x04\xdd\x7a\x77\x2a\xfa\x63\xe5\xfe\x5a\xa4\x52\x17\xbe\x79\xf3\xa6\xad\xeb\xda\x58\x6b\xcf\x83\x2b\x06\xdd\x26\xdc\xb3\x8e\xab\xd3\x1b\x20\xb1\x18\xce\x49\x10\x82\xb8\x9c\x88\x50\x31\xd5\xb5\xa5\x31\x81\x6a\xad\xd6\xc9\xd1\xef\x54\xfd\xe4\x89\x35\x05\x32\xe7\xe3\xa6\x1f\x53\x5e\x9a\x28\x74\xf3\xe8\x23\x34\x20\xdf\x9b\x7d\x3f\xa1\x4e\x22\x5e\x76\x7a\x64\x5e\x00\x3d\x6b\x71\xcd\x79\x80\xdc\x89\x8a\xff\xf4\x4f\xff\xa4\x39\xb2\x1c\x37\x37\xf4\x5b\x7a\xd6\x79\xe8\xe7\x75\x6e\x48\x9d\xa3\xf3\xcc\xd5\x61\xa8\x4e\xeb\xde\x4b\x69\xc2\xf8\x5a\x53\xdf\x5c\xfa\x9c\xd4\x30\xf7\x9e\xcb\x77\xd3\xbe\x08\x65\xfd\xeb\xbf\xfe\x6b\xd0\x69\x4b\x55\x91\x68\xc3\x18\xc0\xb8\x6a\x31\xdd\x3a\x6c\xaf\x4f\x4e\xec\xe3\xa6\xc5\xe5\x60\x75\x97\xdd\x41\xc1\x0e\x54\x38\x2b\x8e\x04\x18\xb8\xdf\x60\x81\xe8\xe3\xc5\xf4\xc1\x5e\xd6\x83\x8a\x10\x24\x41\x90\x7b\xa6\xae\x2c\xbf\x43\xc7\xa7\x8f\xf1\x45\xde\xc1\xa2\x96\x53\x30\xc4\xaa\x6e\xa0\x6e\x45\xf0\x15\x61\x7f\xf1\xa2\x6e\xa2\xdf\x0f\xe4\x56\x10\x27\x39\x61\xb8\x1d\x43\x0c\x24\x17\x35\x46\xb8\x92\xec\x7e\x60\x76\x26\xfb\x2e\x2e\x87\x5a\x44\xca\x42\x16\x3b\x93\x13\xfe\xf0\xec\xa0\x7d\x57\xbd\xe4\x9d\x60\x2c\x8d\xe4\x5c\x14\xa0\x3c\xf6\xd6\xd1\xc4\x10\xf6\xf1\x8f\x7f\x3c\x84\x4b\xa9\xb3\x32\x06\x0e\x3b\x84\x98\x79\x7a\x69\x5e\xef\xfd\xb7\x37\xb6\x9f\x78\xea\xd6\x85\xcf\xbd\xef\xde\xf4\x8b\x6f\x3b\x19\xfd\xee\xd6\xca\x3c\x5d\x5b\xba\x42\xa0\x29\x40\xb5\xb8\x3f\x47\x7c\x93\xee\x7b\xb0\xe8\x1f\x1f\xea\xda\x5f\x1b\xd0\xb8\x62\xba\x32\x5d\x99\x27\x2e\xcd\xeb\xff\xed\xdd\xf7\x27\x5f\xfc\xf9\xd7\xb6\xff\x8f\x8f\xbe\xbc\xfb\xf1\x2b\x47\xa3\x3d\x00\x53\xf7\x27\x2f\xa4\x0c\xbb\xaf\x98\x39\x18\x9e\x7f\xf1\x8b\x5f\x4c\xfa\xe1\xd2\xa5\x4b\x52\xda\x6e\xc5\x5f\x38\x55\x15\xdd\xd6\xdf\xa5\xe3\xd4\x17\x00\xe6\x20\xcc\x4f\x3a\xfb\x89\x1f\xfd\xe8\xea\xfc\xf9\x3b\x3b\xab\x17\x97\x95\x5d\x88\xbc\x93\x51\xed\xe7\x40\x62\xe6\xa4\x9c\xc4\xe6\x61\xa8\x91\x87\xba\x22\x5f\x37\x78\xc2\x14\x04\x70\x32\x6e\xf7\x5f\xbe\xb4\xf8\xd6\x0f\xaf\xce\x9f\xbf\x7d\xe1\xec\xe5\xc6\xf0\xa1\x03\x2d\x7e\xeb\xaf\x97\x32\x24\x3b\x8a\xdc\x33\x80\x4e\x45\xf4\xf9\xcf\x7f\xde\xf8\x67\x65\x43\x12\xe2\x0b\x35\xdd\x52\xe4\xed\xfb\xe5\x78\x59\xf1\xe1\xeb\x17\x97\x2f\x7f\xf7\xed\xf3\x6f\xbc\x70\xe5\xf4\xf9\xfd\xed\xd5\xad\xa5\xb1\xcb\xd0\x0a\x4e\xa7\x92\xfc\x4d\xda\x27\xda\x98\xb6\x5f\x3c\xc3\x4f\x53\xc6\x59\x6d\xe7\x77\x76\x56\x2f\xfd\xe0\xe1\x93\xaf\x7d\xeb\xed\xc7\xdf\xb8\xb7\xbd\xea\x24\x2d\x0e\xbc\x11\xd1\xdc\x31\xe9\xbe\xde\xfe\xfb\x7a\xd0\xef\xb3\x0d\xb4\x72\x8d\xad\xd8\xba\x79\xd6\x73\x95\x7a\xd7\xeb\x7a\xe9\x59\xfa\x31\x00\xdc\xbe\x7d\x9b\x9f\x7a\xea\x29\x8f\xb0\x01\x24\x46\x66\x23\x66\x1e\x51\xb7\x75\x6f\x6b\x6f\x31\xba\xf2\xf6\xa3\xc9\xe3\x7b\xa7\xf5\x7b\x6b\xc6\x96\x84\xc2\x39\x94\xad\x59\x5d\x19\xae\x79\xac\xf0\xee\x29\x36\x1c\x1f\x27\x10\x75\x86\x2f\x73\xeb\x81\xb8\xab\xa8\xc7\x17\xa6\x6e\x59\xf1\xd1\xdd\x9d\xd5\x8b\xb7\x77\x97\x3f\x3a\xee\x8c\x95\xa4\xc4\x65\x89\x0e\x7d\x7a\x20\xc3\x70\xc8\xf3\x53\x9f\xfa\x94\x79\xe9\xa5\x97\x72\xec\xa8\xf4\x33\xe8\x7f\x0b\xe9\xa7\xb9\x3a\x2d\x2d\x29\xc5\x5d\x97\x47\x29\x4d\xa9\x5e\x43\x79\x40\xf9\xeb\x34\xb9\xba\xea\x70\x8b\x72\xdd\x4b\x69\xe2\x2a\xde\x97\x9e\xe8\xbf\xdc\x98\x5e\xd7\xde\x5e\xb9\x1f\xfd\xe8\x47\xe9\xb5\xd7\x5e\x63\xcf\x51\x73\x3c\x21\xb7\x72\xe3\x7e\x04\x60\x02\x60\x32\x3a\xb5\x97\x2e\xde\x69\x3f\x36\x7b\x60\x3f\x56\xb5\xb8\x42\xc1\xa0\x43\xb0\x83\x40\x5a\x4d\x79\xf9\x61\x20\xda\xde\xe6\x24\x61\xe2\x04\xae\x71\x3b\x87\xdc\x73\x37\x1d\x3c\x48\x89\x93\x2d\xaa\x87\x7c\x7e\xfe\x0c\x17\x69\xd8\xab\xf2\xf6\x12\xa2\xc4\x80\xd8\x9d\x44\x1d\xc0\x92\x64\xef\x22\x18\x49\xd5\x3f\x1c\x51\x95\x34\x4a\xf1\xc0\x84\xfc\x71\xe1\x3e\x2e\x44\x3d\x38\xb4\xd1\x97\x43\x32\x7f\x12\x45\x8b\x99\xee\x4a\x33\xed\x08\xaf\x9f\xee\x56\xaf\xb5\x13\x73\x02\x42\x8b\x4e\xea\xe2\xb9\x45\x96\xb6\x0b\x37\x6e\xdc\x20\x21\x69\xc8\xd1\xc4\x9c\xe4\x8e\x6f\xdd\xba\xc5\x40\xb8\x15\x3c\x00\x21\x49\x17\xdd\xd8\x18\x93\xc5\xe4\xe1\x93\xc9\x43\x1f\xbc\x33\x7b\xfa\x7d\xf7\x66\xbf\x75\xe5\x64\xfc\xab\x5b\xab\xea\xf1\x8a\xe9\x21\x03\x1a\x51\x14\x6c\xa5\xe6\x47\x90\xcf\x1e\x9e\xc9\x37\xed\x08\x06\x54\x1b\xc6\x6c\x64\xcd\x43\x5b\x4d\x75\x7d\xe7\xac\xba\xba\xbd\xaa\xb9\x31\xf6\xe0\xc1\x56\xbb\x80\x90\x06\x3b\x29\x01\x43\x7c\xd3\x1b\x37\x6e\xc0\x18\x13\xa4\x0a\x75\x5d\xd3\x7c\x3e\x07\x00\xfe\xc6\x37\xbe\x21\xa5\x2e\x8c\x6e\x1e\xb0\x9b\x13\x44\xdd\x0b\x89\xfe\x20\x10\xcc\xaa\xb2\xed\xe9\xc8\xae\x96\xb5\x3d\xad\x2d\x99\x49\x63\x66\x23\x6b\x26\xfe\x8b\x07\x62\xa9\x86\x70\xd1\xc9\xe1\xc4\x7e\x88\xc5\x31\x49\xa2\x3d\x84\x4e\xc2\xf0\x60\xab\x79\xf3\xe5\xcb\x8b\xef\xfc\xe8\xea\xe9\x7f\xde\xde\x5d\xbe\x72\x56\xf3\x7d\x44\xd5\xc8\x89\xfb\x4d\x24\x0c\x6e\xcc\x78\x7a\x63\x89\x08\x5f\xff\xfa\xd7\xf9\xde\xbd\x7b\x74\x7c\x7c\xcc\x40\x94\xba\xa0\x1b\x57\x72\xc2\xca\x4f\x08\xf1\xec\xfb\x08\x2d\xb1\x3d\x1d\xd9\xe5\xc9\xa4\x9d\x2f\x46\x76\x0e\xa2\xa6\x62\xaa\x47\x2d\x8d\x89\xc9\x24\xca\x0a\x95\x99\xef\x3b\x3f\x5d\xb5\xd3\x7d\xd8\x54\x76\x79\x38\x69\xef\xbd\x7e\xf1\xec\x85\x1f\xbd\xed\xf4\x9b\x3f\x79\x68\xf1\xfd\x83\x59\x73\xbb\x35\x38\x04\xe1\x08\x9d\xc4\xe9\x04\xc0\xa9\xff\x23\xa2\x15\x80\x33\x66\xf6\x73\x48\xaa\xcc\x58\xa9\x17\x73\xeb\x8e\xec\x0b\xa8\xb8\x45\x27\x6d\x5c\x80\x61\x5b\x02\x64\xde\xd3\xd2\x63\x4f\x04\xf4\xad\xfc\x0c\x00\x18\x8b\xba\xb2\x18\x13\xa3\xee\x7d\x3f\x61\x63\x92\x03\x31\xb9\x77\x9f\x26\xb1\x91\x11\x06\x47\x09\x04\x51\x71\x7d\x39\x1d\x1d\x4e\xe5\x3f\x31\xff\x7e\xa1\x96\xd0\xac\x0c\x2f\x1a\xc3\xfa\x6e\xa2\x44\xdf\x2b\x77\x59\x09\x3d\xb1\xd6\xa5\xe7\xfc\x7c\x9f\x01\x7d\x09\x40\xce\x3e\x44\xe6\xa3\xe3\x96\xbe\xdb\x3a\x69\x86\x7e\xd6\xf9\xe5\xea\x51\xaa\x9b\x19\x08\xcb\xc5\xd9\xd4\x95\x6c\x53\xd6\xe5\xa3\xfb\x65\x5d\xfd\xb4\xba\x2e\xf4\xdd\xd5\xab\x57\x93\xc3\x17\x85\xf8\x37\xb1\x71\x01\x63\x3a\x99\xf3\xe5\xc9\x89\x7d\xcc\xb4\x7c\x99\x18\x26\xa1\x1e\x19\x54\x1d\xb7\x13\x87\x51\x1a\x09\x2e\x8b\x34\x21\xad\xbc\x8f\x45\x50\x6f\x0f\x28\xd4\x0a\x40\x3a\x4d\x80\x78\xdc\x01\x13\x71\x35\x40\x2a\x97\x97\x79\xb3\xc0\x5d\x5e\x72\x12\xcb\x88\xa0\x03\x29\xb5\x74\x05\x72\xd8\x01\x25\xba\x22\xe0\x94\x2e\x0f\x76\x9d\x11\xfb\x22\xb6\x37\xbe\xb0\x20\x77\xa2\xae\x81\x31\xea\xf2\x32\x0d\x5f\x99\xcc\xed\xa3\x93\xb9\xbd\xba\xdc\x32\xfb\x76\x44\xde\xd6\xa0\xf6\xf6\x2e\x42\x8c\x0f\xac\x9f\x3b\xc5\xb1\x26\x77\x96\x38\x9a\x13\x6c\x58\x5c\x99\xe3\xca\x62\xfa\xc8\x83\xc9\xb5\xf7\xdf\x9d\x3d\xfd\x8e\x83\xc9\xaf\xee\x2e\xaa\xa7\x46\x96\xae\x12\xd3\x58\x72\xca\x39\x3a\x28\x36\x65\x8a\x9e\x28\xaf\xea\x71\x81\x23\x43\x8c\xd9\xa8\xc5\xf5\xdd\xb3\x7a\x67\x74\x9f\xf6\x26\x0d\x3d\x34\xb2\xe6\xff\xfa\xc9\xe5\xd3\xd7\x6d\x57\x6b\x2f\x59\x00\x9c\xe4\x44\xdb\x8a\x00\x45\x6e\x3a\xcc\x2f\xd7\x6e\x7d\x9e\x8b\x07\x48\x06\x40\x6d\x0d\xcc\xe1\xb4\x79\xf3\xe5\xcb\xdc\x2e\x46\x76\x39\x1f\xdb\xe3\x77\x1c\x4c\x1e\xbb\x70\x56\x5d\x31\x0c\x93\xec\x5e\x0b\xe0\x18\x71\x9e\xe8\xfe\x49\xc6\xb2\xf3\x4a\x06\x58\x1c\xd6\xcb\xca\xce\xef\x6d\xaf\x5e\x7f\xe5\xd2\xe2\x87\xaf\xec\x9d\xfd\xf0\xde\xf6\xea\xb5\xb3\xda\xee\x33\x78\x0e\xc6\x5c\xd8\xb7\x48\xdb\x16\xab\xfe\x00\xc4\xf3\x6c\x6e\xdf\xbe\xdd\xf3\x53\xa7\x13\x37\x88\x36\x3f\xc6\x49\xa2\x82\x24\x4e\x02\xff\x55\xc5\xb8\x37\x5b\x35\x8b\x91\x9d\xdf\xdf\x6a\xf6\x1f\x39\x9c\xdc\x79\xfb\xe1\xf8\x5d\x97\xe6\xa3\xab\x93\x86\x76\x6b\x6b\x6a\xdf\x64\xd9\x11\xf2\x5b\x71\x26\xbc\x7b\x65\x2c\x2b\x5e\xcc\xc7\xed\xc1\xfd\xad\xe6\xce\x9b\x17\x96\xb7\xde\xd8\x3d\x7b\xe5\xee\xf6\xea\x8d\xd3\xb1\x3d\xe0\x0e\xb8\x05\xbb\x16\x44\xe0\x16\xec\x7d\xfc\x0e\xab\x5c\x7f\x64\xdc\xd0\x9a\x21\xdd\x20\x0d\x97\x36\x2e\x7e\xa0\xc9\xcf\x2d\xfd\x34\x61\x0f\x73\xe5\x5d\xef\x7a\x97\xf9\xc4\x27\x3e\x41\x17\x2e\x5c\x80\x43\x8a\x0e\xd0\x92\xd7\xe3\x8e\x1d\x67\x31\x25\xd0\xf4\xf2\xe9\xe8\xe1\xb7\x1f\x4e\x9e\xb8\x78\x36\x7a\xb7\x61\x1a\x25\x86\x44\x5e\x77\x9e\xb1\x02\xd7\x76\xb3\xf2\x1b\x04\xc6\x0d\x71\xe2\x76\xb4\x53\x19\x01\x52\xe4\x47\xd4\x5c\x80\x1a\xd7\xaa\x80\x74\x4d\x39\xab\xed\xfd\x3b\x17\x56\x2f\xbc\x79\x61\xf9\x93\xb3\x11\x1f\x3a\x0b\x6b\x8f\x40\x97\x0e\x89\x37\x44\xc4\xfe\x4f\xa0\x4f\xb9\xdc\x48\x4e\x4d\x3f\x4b\xc9\x81\xfc\x16\xb2\x9a\xfa\x03\xcb\x34\x3d\x2e\x50\xa5\xd1\xe5\x0c\xa2\xdc\x4c\x7e\x43\xfe\xfa\x39\xd7\xce\x5c\x58\x2e\xfd\x50\x1e\xb9\xbc\x36\x69\x6f\xae\xdf\x86\xca\x29\x7e\xaf\x1f\xfe\xf0\x87\x2c\xb8\x2a\x62\xe6\xca\xcd\x81\x1a\xdd\x4e\xa2\x09\x80\x89\x69\xf9\xc2\xc5\x3b\xcd\xe3\x3b\xfb\xed\x27\x47\x2b\x3c\x42\x40\x15\x86\x98\x07\x0b\x10\xa7\xca\x72\xbc\x13\x28\x05\x16\x11\x94\x53\x1c\xf4\x9d\x9f\x38\x29\x97\x5d\x82\xc8\x5d\x52\x34\x54\x15\xd2\x0a\x79\x3a\x67\x04\x3d\x62\x77\x81\xdf\x55\xc4\xf9\x34\xe9\xc2\x41\x1d\x03\x40\x70\x1c\x2e\x07\x81\x8a\x5e\xf4\xba\x39\x46\x41\x8a\xc0\x6e\xd2\xf5\xa5\x48\x5e\xf2\x12\x57\xa0\xe4\xf2\x02\xd1\x2f\xf2\xa0\xbb\xb8\xa8\x05\x53\x5f\xdf\xc2\x0a\x06\xa7\xab\x89\x79\x75\xb9\x6d\xde\x6c\x47\x74\x8a\x4e\x37\xdf\x48\x0e\xda\xeb\xe8\x99\x99\xbf\xf1\x8d\x6f\x94\xc6\xa3\xf7\xd7\x92\x44\x79\x1a\x6e\x00\xb1\x00\x2a\xa1\x7e\x99\x56\x16\x5b\xef\x78\x30\x79\xfb\x87\xde\xdc\xfe\xe4\x3b\x0f\xa6\xbf\xb9\x7b\x56\x3d\x5d\x5b\xba\x4a\xa0\xba\x6b\x92\x1b\x13\xfe\xee\x35\x81\x17\x7d\xdb\x3d\xad\x0a\x9c\xb5\x58\xcc\x25\x45\x94\x07\xbd\x49\xb2\x46\x8c\xad\xda\x9a\xcb\xdb\xcb\xfa\xe1\xd9\xca\x60\x39\xb2\xf7\x8e\x27\xed\xa9\x35\x89\xc4\xd3\x52\xb2\x6d\x0c\xac\x24\x51\xc1\xdd\xb8\x71\x83\xbc\x5d\x8c\xe8\x47\x2f\x69\xd2\x52\x07\xb8\x4e\x06\x0c\xf1\xaa\xe2\xd5\x7c\x6c\x17\x27\xe3\xf6\xa4\xa9\xec\x99\x61\xa2\xda\x52\x6d\x98\x46\x01\xde\x92\x38\x91\x59\x48\x4d\xba\x16\x22\x1a\xab\x8b\xce\x48\xd5\x35\x00\x13\xa3\xa9\x78\x79\x34\x69\xee\xbd\xb6\x77\xf6\xc2\x0b\x6f\x3b\xfd\xf6\xcb\x97\x17\x3f\xd8\xdf\x6e\xde\x58\x55\x41\xd2\x72\x4c\x44\x27\xe8\xa4\x0c\x67\x70\xb6\x2d\x0e\x64\x34\x00\x5a\xd7\x1e\x86\x90\xb6\xa0\x4f\xa7\x0d\x00\xfe\xfa\xd7\xbf\xce\x4f\x3d\xf5\x94\xaf\x87\xec\x03\x7f\xc2\x2e\x90\xa3\x49\x04\xcb\x06\xed\x59\xc5\xab\x93\x71\x7b\x72\x34\x6d\x8e\x8e\x27\xed\xe1\xe9\xd8\x9e\x9c\x8d\xec\x89\x25\x6e\x81\xa0\x2c\xa0\x30\x42\x7a\x1b\x4d\x3a\x8d\x42\x6b\xb8\x59\x56\x76\x31\x1f\xd9\xa3\x83\xad\xe6\xad\xdb\x17\x97\x2f\xbf\x7c\x79\xf1\xa3\x97\x1e\x5a\xfc\xf0\xd6\xde\xd9\x8b\xfb\xb3\xe6\x8d\xb3\x11\x1f\x30\xf8\x18\xc0\x11\x11\x9d\x30\xf3\x31\x11\xcd\x99\xd9\x1b\xe5\x9e\xa1\x5b\xe7\xbc\xd4\xc9\x8f\x95\xd6\xf7\xf5\xcd\x9b\x37\xed\xd6\xd6\x96\x69\x9a\x46\xcf\x11\x20\xd3\x3f\x03\xe1\xd0\x71\xf5\x91\xff\x25\x9b\x09\xcd\x99\x27\x9c\xf4\x2b\xaf\xbc\x62\x7f\xe3\x37\x7e\x23\xe8\xf7\xc5\xae\x22\xc9\xb9\x18\x66\x86\x01\x99\xca\x52\x5d\x5b\xaa\x3b\x89\x0b\xa0\x67\x23\xa3\x8f\x16\x25\x41\xf3\x13\x30\xc4\xa0\xcc\xa9\x8b\x10\xb2\x55\x91\x8f\x1f\xcf\x9c\x06\x65\x79\x94\xfe\xf4\x8a\xae\xa5\xee\x4a\x72\xb5\x15\x5a\x9e\xdd\x92\x95\xbc\x7c\xea\x53\x9f\x32\xff\xf4\x4f\xff\x04\xe4\xa5\x23\x40\xbf\xaf\x4b\xfe\x32\xed\xa0\xae\x3d\x13\x6f\x13\x0e\x72\x48\xea\x26\xf3\x28\xe5\x5f\x92\xe2\xe9\xb2\x74\x99\x43\xe9\xd7\xe5\x5d\xfa\xcd\xe5\x3d\x24\xa5\x19\x7a\xee\xd5\xe1\xf7\x7f\xff\xf7\xa5\x14\x26\x79\x16\x8b\xd4\xb8\x3e\xe3\xd9\xf4\xd8\x7e\xa0\x5e\xf1\x55\x30\xd7\x71\x4b\x71\xb7\xca\x38\x12\xeb\xc6\x8b\x04\xd9\x72\x2c\xa6\x20\xdf\x13\xef\xc0\x79\x93\xb7\xfb\xf0\xf3\x43\xc4\x0f\xbf\x8a\xa0\x25\xc0\xde\x3d\x04\xf2\xe1\x6b\x25\xc1\x85\x8a\xe7\x19\x0c\x66\x78\x91\x4e\xb8\xed\x39\x00\x09\x17\x8c\x98\x41\x24\xdf\x6e\x71\x0d\xa0\x48\x1c\x6e\x40\x61\x26\x87\xea\x74\x0b\xb4\x6c\x83\x60\x42\x32\x37\x56\x53\xb2\xb8\x75\x35\xa8\x56\xfc\xc8\xf4\xc4\xbe\x73\x74\x66\xbf\xbf\x9c\xd2\x01\x4c\x94\xba\x00\xc9\x91\xf8\x20\x22\x2d\x2d\x1d\x1a\x3b\x9a\xbb\x96\xbf\x1e\xc8\xd6\x60\x8c\x09\x18\x3f\x74\x32\xba\xfc\xc1\x3b\xb3\x5f\xba\x7e\x30\xf9\xad\xed\x65\xf5\x61\xc3\xb4\x4b\x80\x89\xf8\x34\x25\x42\x09\xe3\x26\xd5\x65\x05\x62\x96\xda\x01\xea\x11\x81\x00\x1c\x0d\xb0\x33\x69\xf0\xf8\xb5\xc3\x89\x69\x0d\x2f\x97\x86\xff\xf1\xf6\xee\xf2\xf5\xa6\x0a\xeb\x87\x6f\x9f\xdc\x36\x1d\xec\xba\xa4\x4a\x40\x9c\x61\xa2\xe7\x5d\xe3\xfa\xd5\xef\x32\x0a\x97\xee\xfa\x6f\x64\xc1\x58\xd4\x16\x6f\x5e\x58\x2e\xe7\xe3\xf6\xf8\x60\xab\xd9\xbf\x76\x38\x7e\xcf\xdb\x4e\xc6\x8f\xec\x2e\xea\xcb\xd3\xc6\xcc\x8c\x45\xed\x5b\xa2\xbe\x34\x92\x2e\x73\x7e\xec\x3a\xce\x82\x3b\x49\x79\xcd\xcb\xf9\xa8\x3d\xbe\x3f\x5b\xdd\xb9\x73\x61\xf5\xca\x1b\xbb\x67\xaf\xdc\xdb\x5e\xbd\x71\x3a\xb2\x07\x16\x7c\x4c\x44\xc7\x6e\x81\x96\x0b\x75\x90\xb8\x50\x7a\x26\x4b\x4f\xb2\xe2\xdc\x90\x44\x41\xbe\xfb\xb3\x84\x96\x32\xad\xd2\x56\x74\xe5\x11\xec\xb2\xb2\xcb\xfb\x33\x5e\x1c\x4f\xda\x07\x6f\xed\xac\x6e\x5f\x38\xab\xf6\xf6\xe6\xa3\x2b\x97\xe7\xf5\x95\x9d\xb3\x6a\x6f\xd2\x98\xd9\xa8\x35\xe3\x91\xa5\x71\x65\xa9\x36\xee\xf3\x59\x62\xdb\x1a\xd8\x55\x65\x97\x8b\xda\xce\x8f\x27\xed\xe1\xf1\xa4\x3d\x3c\x9a\xb4\xfb\x07\x5b\xcd\xfe\xe1\xb4\xd9\x3f\x1d\xd9\x07\x8d\xb1\x73\x78\x09\x53\x94\x36\xc9\xdf\xb0\x0d\x9a\xd2\x9d\x44\x41\xd2\x22\x4f\x87\x3f\x3d\x3d\x2d\x49\x4d\xd6\x49\x5c\x4a\xce\x02\xf1\xcc\x80\xa1\x84\xeb\xc4\xfa\x16\x48\xf6\xac\x87\x08\x42\x4d\x12\xef\xd4\xb0\x30\x6e\x2b\xf4\x98\xbc\x4a\x29\xb2\x8b\x1d\x41\xe3\xc8\x4d\x72\xe0\x18\x24\x01\xce\x70\x6e\xca\xa5\x06\x6a\xa4\xde\xfa\xcf\x50\x7e\xe4\xea\x9f\x13\x8d\x02\x80\x35\xdc\xac\x2a\xbb\x70\x97\x6e\x85\x93\x22\x25\x68\xa1\xde\x22\x03\x69\x9c\x0b\xe4\xfb\x75\x68\x01\x06\xfa\x8b\xf1\x90\xc8\xda\x64\xe2\x95\x88\xef\xba\xf7\xa1\x78\x9b\x80\xa8\x1c\x68\xc9\xd5\x65\xa8\xdc\x8d\xc4\xf3\x1b\xa6\x97\x6e\x13\xff\xd2\xb7\xc2\x5f\xfd\xd5\x5f\x85\xb1\x2f\xce\x6d\x89\x7f\xcc\x06\xa0\xf1\xf8\xd4\xee\x4e\xe6\xf6\x51\xd3\x62\x87\x98\x8c\x66\x8a\x48\x22\x03\x00\x80\xdc\xea\x2c\xd8\x68\x21\x45\xe8\x23\xf3\x3e\x20\xe8\xff\xa6\x2e\xc0\x23\x79\x78\x9c\x04\xf6\x72\xeb\x75\x14\xd9\x08\x35\x96\xcc\x36\xda\xb9\x00\x69\x69\x3e\x6e\x32\x07\xe3\xd6\xf1\x44\x2a\x24\x53\x77\x58\x24\x2e\xd2\xe9\xbc\xec\xd3\x02\x92\x22\x88\x8c\x23\x00\xa6\xc5\xde\xf8\xd4\xbe\x6b\x74\xca\x97\xcd\x0e\x6e\x5b\x13\xb6\xa4\x6a\xe0\x19\xee\x9b\x71\xfe\x83\x73\xf6\xd1\x47\x1f\x35\x2f\xbe\xf8\xa2\x1e\xeb\xc9\xd9\x2c\x70\xc6\xb8\xdb\x67\xd5\xce\x07\xde\x9a\x7d\xe4\xfa\xc1\xe4\x37\xb7\x97\xd5\x13\x0e\xb4\x24\xad\x0a\xf4\x28\x7c\xa2\x54\x1d\x5e\x62\x4b\xa5\x82\x3c\x19\x0a\xb9\xce\x08\x3f\x34\x9e\x34\xf4\xf8\xdb\x0f\x27\xbf\x71\x5a\xdb\x93\xa6\xe2\x7f\xbb\xbb\xbd\xba\x2d\xc0\x8b\x77\x09\x78\xc9\x95\xaf\x0e\x60\xf3\x4c\x9d\x07\x2e\x06\x1d\x08\xe8\xd1\x57\x07\x04\x9a\xa6\xe2\xe6\xfe\x56\xb3\x3c\x1e\xb7\x27\x77\x76\x56\x77\x1e\x3e\x5a\x5e\x7b\xf8\x78\x7c\xfd\xd2\x7c\x74\x75\x7b\x59\xed\x76\x0b\x74\x58\x9c\x03\x7d\xeb\xe1\x6e\x82\x6d\x89\x9b\xa6\xe2\xe5\x59\x6d\x17\xf3\x91\x3d\x7c\x30\x6d\xf6\xf7\xb7\x57\x77\xee\xec\x2c\x5f\xbf\xb7\xdd\xdc\x39\x1d\xb5\xf7\x2d\x75\x86\xc2\x04\xf2\xbb\x87\x7a\x5b\x7e\x21\x54\x45\x42\x3d\xa2\xfb\x20\xc7\xe8\x85\x77\x7f\x93\x36\xa2\x0a\x2d\xb4\xd9\xf5\x91\xee\x13\x1f\xe6\xcb\x5c\x32\xb0\x5c\xd6\xbc\x5c\x56\xcd\xf1\x83\x69\x73\xef\xcd\x9d\xe5\xeb\xb3\x65\xb5\xb3\xbd\xac\x76\xa6\x8d\x99\x4d\x1a\x33\x1b\xb7\x34\x1d\xb7\x66\x6c\x6c\xd7\x2f\xad\x61\xdb\x18\x2c\x16\x23\xbb\x98\x8f\xda\xe3\x93\x49\x7b\x7c\x5a\xdb\xf9\xb2\xb2\x8b\xa6\xe2\x13\x4b\x58\x80\xb0\x44\x77\x56\xcd\x1c\xdd\x01\x73\x5e\x35\x94\xa8\x88\x1c\xc8\xca\x5d\xae\xb8\x8e\x26\x6b\x66\x32\x17\xbe\x91\xcb\x9d\x9c\xbb\x69\x66\xc5\x74\x8e\x10\xe9\x8b\xbf\x0c\x00\x53\x31\x99\xba\x43\x83\x63\xb0\xe4\x2c\x80\x88\x8e\x3d\xa7\x10\x45\x9b\xfa\x12\xae\x94\x34\x6a\x70\x22\xc5\xa3\xd1\x9f\xd0\x27\xa8\x1a\xc8\x44\xbe\xb7\x3f\xa9\x62\x5c\x06\x13\x37\xad\xe1\x65\xdb\x49\x5c\x00\x84\x8b\xdb\xb2\x7a\x60\x4e\x16\xa4\xa2\x14\x03\xe8\xf7\xab\xc9\x3c\x0f\x49\x33\xb4\xdb\x44\x92\x52\x9a\x6c\x26\x13\xbe\xc9\x73\xa9\x0e\x5a\xfa\xa1\xcb\xd3\xcf\xa5\xfa\x6a\x7f\xd9\x3e\xa8\xf7\x52\xbc\x52\x9d\x4a\xf1\x4a\xd2\x31\x7f\xf0\x96\x5e\x84\x03\x87\x0d\xa0\x26\xe6\x7a\x7a\x62\xaf\xd4\x4b\xbe\xde\x1d\x39\x1f\xcf\x41\x01\xa4\xb8\x3f\x4a\x37\x3c\x7a\x88\xc6\xb8\x62\x11\x92\xef\xa4\x38\x71\xf8\x85\x4e\xa0\x8a\x20\x32\x01\x7a\x0b\xba\x53\xe9\x74\x07\xc5\x79\xd1\x7a\x9c\x41\x01\x0c\x81\x04\xd0\x12\x20\x27\xa4\x76\x8e\xf4\xfc\x12\x52\x20\xea\xca\x0b\xd2\x25\x1f\x27\xa7\x03\x66\xf1\xc2\xaa\x2e\x89\xad\x9a\xcf\x33\x3d\x36\x61\x88\xf9\x20\xc6\xb8\x5e\xf2\xd5\xd1\xc2\x5e\xad\x1a\x7e\xd1\x8e\xba\xa3\xff\x25\xe8\x14\x34\xcc\x02\x9d\xea\x47\xdd\x35\xd6\x03\x34\x2f\xbe\xf8\xa2\x55\x76\x2d\x06\x48\x6c\x5a\x6a\x30\xc6\xa3\x96\x76\xde\x75\x7f\xfa\xe8\xfb\xee\x6e\xfd\xcf\xed\xb3\xea\x49\xc3\xd8\x4d\x3e\x89\xfb\x86\x41\x0a\xe5\xfb\xd4\x83\x15\x05\x2e\x53\xac\xd6\x57\x09\x89\xee\x13\xe3\xc3\xe3\xe4\xc8\x30\x12\xa1\x9e\xae\xcc\x47\xde\x75\x30\x39\x3c\x1d\xdb\xc3\x65\x65\x17\xf7\xb7\x1a\xcb\x26\x59\x9c\xfc\xd9\x5c\xa1\x2f\x9e\x79\xe6\x19\xf3\xd5\xaf\x7e\x15\x2f\xbc\xf0\x02\x16\x8b\x85\xfd\x83\x3f\xf8\x83\x1e\xa3\xe4\xfb\x52\x00\x18\xfd\x7d\x52\xee\xdd\x49\x47\xee\x6d\xaf\xe6\x87\xd3\xe6\xde\x1b\x17\x97\xaf\xef\x9d\xd6\x97\xf7\x4e\x47\x97\x2f\x9e\x56\x57\x2e\x9c\x55\x7b\xb3\x55\xb5\x33\x6a\x68\x6c\x98\x8c\x61\xd4\x86\x3b\x95\x0b\x13\x6c\x63\xb8\x59\x55\xbc\x5c\x8c\xec\xfc\x78\xdc\x1c\x3c\xd8\x6a\xf6\xef\x6f\x35\x77\x0f\xb6\x9a\xfd\x93\x71\x7b\x78\x56\xdb\x93\x96\x82\x44\xc5\x4b\x57\xbc\x2d\x87\xb6\xe7\x58\x0a\x1b\x9d\xe4\x80\x35\xe6\xe4\x0e\xba\x1c\x83\x19\xc6\xcb\x6f\xfd\xd6\x6f\xf5\x98\x7c\xb1\x66\x34\x29\x88\x4f\xfb\x84\xba\x13\x77\x97\xe4\x4f\xac\x25\x4c\x2d\x61\xb1\x20\x7b\xbc\xa8\xed\x83\x83\xad\x66\xec\xfa\x60\x64\x18\xb5\xb3\x63\x0a\xe3\x83\x09\x8d\x35\x6c\x5b\xe2\x33\xeb\x6f\x75\xa6\xb0\xd3\x6b\x89\x78\xa8\xdc\xc2\x3f\x23\x82\x95\x85\x88\xa7\xc1\x5b\x68\xa7\xb5\xe7\xe2\x27\x07\x41\x1e\xf2\xb4\xdf\x00\xb0\x75\x21\xb0\x94\x09\x90\x66\x10\xde\xb5\xb4\x45\x3b\xff\x41\x8c\x35\x75\x6d\x69\x62\x9c\x61\x6e\xc2\x0f\xca\x89\x8a\x38\xe9\x3a\x0e\x4e\x12\x71\x84\x88\x01\xa2\x24\x3b\x82\x90\x4c\xec\x24\x2f\x5f\x21\x39\xf1\x93\xb8\x94\x10\x80\x08\x55\x12\x22\x61\x9d\xaa\xa8\xb1\x14\x0e\x9e\x93\xbf\xd2\x79\x7f\x7c\xec\x63\x1f\x33\xff\xfe\xef\xff\x9e\x43\x9b\xa5\xf7\x6c\x5f\x9f\xc3\x0d\xa1\xda\x92\x94\x63\x13\xee\x72\x93\xbc\x86\xa4\x28\xa5\xb0\xa1\x7c\x36\xe9\xa3\x4d\xeb\xb3\x2e\xbf\x1c\x18\x1a\x4c\x2f\x74\xd4\xc9\xe2\xd7\xa9\x05\xb8\xa6\x16\xe3\xc9\x89\x7d\x87\x59\xf1\x1e\x9c\x8a\x34\x80\x13\x35\xde\xa2\x34\x02\x42\xfd\xe3\x55\x2f\x52\x4d\x9a\x61\xa3\xb5\xa0\x21\xe8\x68\x04\xac\x57\xa0\x04\x6e\xe1\x8f\xf5\x11\x84\x53\x58\x87\x4a\x43\x61\x96\x93\x27\x48\x79\xf2\x75\x89\x76\x37\x5d\xfe\x32\x0f\x22\x4e\xee\x2b\x8a\xe0\xcc\x17\x16\x57\xda\x68\x33\x13\x01\x53\xa2\x26\x93\x8c\x4d\x68\x76\x0a\x88\x24\x6e\x33\x0d\xae\x8c\x16\xfc\x50\xd5\xf0\x6c\xc5\xe9\x01\x70\x92\xf1\x12\x9c\x31\x3e\xf4\xa1\x0f\x99\xef\x7d\xef\x7b\xbd\xb1\x37\x1a\x8d\xb0\x5a\xad\xac\x3e\x60\xce\x8f\x05\x97\x5f\x0d\x60\x6c\x18\xd3\xcb\xf3\xd1\x95\x9f\xbb\xbd\xfd\x6b\xbb\x8b\xfa\x97\x2a\xc6\x6e\xc9\xa0\x56\x4b\x5c\x22\x38\xcc\xd0\x26\x89\x1c\xe5\x2b\xfc\x27\x16\xe3\xc5\xff\xb8\x84\x2c\xfc\x2a\xa6\xe9\xce\x59\xfd\xd1\xf7\xdc\x9b\xee\x3f\x98\x36\x87\xa7\x23\xfb\xed\xd3\xb1\xf5\xc6\xb9\x92\xce\x25\xf3\xe4\xdb\xdf\xfe\xb6\x7d\xef\x7b\xdf\x6b\x7e\xf2\x93\x9f\xe0\x9b\xdf\xfc\x26\xbe\xf7\xbd\xef\x69\x95\x91\x45\x54\x17\xb9\xf2\x93\x3e\xb6\x40\x38\x5d\x36\x6e\x15\xee\x00\xcc\xe2\x7e\xd5\xcc\x1f\x4c\x9b\x7b\xb7\x2e\x9e\x4d\xc6\x2d\x4d\x67\xcb\x6a\xe7\xc2\x59\xb5\xb3\xb5\xaa\x66\x75\x4b\xe3\x9a\xa9\xae\x5b\xaa\x09\x40\x63\xd8\x2e\x2b\x5e\x9c\x4c\xda\xe3\x93\x71\x7b\x3c\x1f\xb7\xf3\x45\x6d\x17\x8d\xe1\xd3\x28\x5d\xc0\x92\x40\x73\xbf\x40\x7b\x09\x83\x57\x0f\x39\xff\x00\x14\x7c\x9d\x44\x3f\x00\x48\x54\x23\x6b\xb5\x13\x47\x47\x47\x3d\xda\xa2\xb4\x14\x12\xd4\x59\x51\x66\xe3\xd4\x33\xde\xb0\x79\x0a\x60\xca\xe2\x62\x4d\x26\x8c\x5b\xc0\xb4\xf0\xdb\xfa\xd9\x97\x0d\x30\xaa\x6d\x38\x00\x00\x20\x00\x49\x44\x41\x54\x44\x09\x8f\xd7\x10\x84\x4b\x2f\x21\xb6\x63\x8b\xfc\xe5\xb6\xf5\xc6\x85\x95\xee\x68\xb2\x40\xa2\x2a\x1b\x62\x68\xcf\xc3\xf4\x16\xfd\x86\x24\x2e\x25\xee\x35\x1b\x2e\x44\x60\x00\xc2\xc7\x48\x44\xe6\x44\x64\x2a\x0b\x53\xb7\x34\xae\x9c\xaa\x28\xa0\x4b\x45\x70\x23\x87\xc7\x82\xfb\x12\x62\x70\x8e\x04\x93\x13\x15\x53\xa0\xc3\x00\x52\xe6\x2d\x2e\x08\xe2\x68\x63\x38\xc3\x37\xa6\x38\xb1\x49\x2c\x0f\x9a\x60\x30\xc0\x06\xd6\x12\x2f\x5b\x42\x77\xf7\x87\xe8\x0b\xc9\x89\x88\x01\x69\x84\xcd\x4b\xee\x83\x95\xd4\x38\x5a\x2d\xa4\xe3\xe4\x54\x1c\x43\xaa\x9a\x52\x98\x8c\x93\x2b\xab\x94\x87\x8e\x2b\xeb\xac\xdb\xa1\xe3\xc8\x77\x5d\xf7\xd2\x58\x2b\xf5\x9d\x45\x3e\xef\x4d\xeb\xa0\xc3\x36\x4d\x93\xad\xbf\xe2\xdc\xbb\x9d\x23\x2d\x4f\xc7\x73\xfb\x1e\x63\xb1\x03\xb0\x51\xab\xb4\x7b\x48\x47\x6a\xb4\x7f\x89\x0b\x7f\x37\xfe\x19\xfa\x2e\xa3\xe0\xfc\xdc\xc8\xc9\x14\xc5\x9c\xe9\xf9\x83\xd2\x15\x30\xd9\xae\xe2\xd2\x09\x84\x11\x2f\x30\x24\x35\xb9\xdc\x3f\x44\xa1\x9e\x51\xbe\x92\x82\x12\x71\x09\x62\x58\x40\xa3\xc9\x0f\x25\x80\x06\xf0\x32\xd8\x94\x4b\x97\x0b\xb6\xb7\xa1\x21\x52\x75\x0a\x69\x62\x2e\x04\x42\xd5\xf2\xde\x78\xc1\xd7\xea\x25\xef\x02\x7c\x47\x7e\x33\x47\xa4\xa5\xa4\x60\x48\xa2\x68\x57\xab\x95\xfb\x66\xc9\x22\x14\xc6\x81\x07\x2d\x60\x8c\xa7\x8d\xd9\xf9\xe0\x9d\xd9\x87\x1f\x9a\x8f\x3e\x5d\x31\x2e\x13\xc4\x65\xb4\xee\xf3\x92\xfe\xbc\x3d\x5c\x43\xbd\x27\x0d\x63\xf5\xbb\x57\x3b\xe6\x20\x92\x4e\x57\x31\xed\x5e\x3c\xab\x9e\x7e\xf7\xfd\xe9\x4b\xf7\xb7\x9a\x3b\xa7\xa3\xb3\x25\x15\x76\x8e\x78\xda\x26\x4f\xd7\xf5\xe0\x2e\x63\xef\x62\xd1\x2d\xc4\x39\x55\x7a\x00\x45\xdc\xbf\xcb\x67\xec\x24\x0c\x63\x6b\x78\xbc\xac\x6c\x7d\x32\xb6\xf7\xef\xed\xac\x8c\x63\x04\x46\xae\x1d\x71\xa1\x06\x2c\x08\x2b\xee\x9e\x97\x20\xa1\x6e\x89\xc7\xd5\x27\x12\x06\x22\x92\x8b\xf7\x82\xe2\xbd\x44\xb9\x9b\x8f\xed\x26\xa7\x09\xcb\xe7\x7f\xfe\xe7\x7f\xb6\x40\xaa\x32\x52\x9f\x22\xbc\x53\xdf\x96\xc6\x83\x98\xb1\xa8\xfb\x18\xe8\x5d\xa0\x29\xa5\x86\x71\xae\xa8\xfb\x92\x10\x6d\x76\xa4\x2a\xcc\xdf\xf6\x2c\xef\x21\x92\x3b\x87\x74\x3f\x68\x89\x53\xae\xed\x83\xed\x14\xcf\xeb\x80\x4c\x70\x25\x20\x32\xb4\xf8\x15\x9d\x57\x87\xe8\x5f\xf1\x6c\xfc\xe1\x73\xc6\x7a\xae\x33\x9d\x46\x8c\xc8\x4c\xc5\xf0\xb8\xa3\x20\x9c\x43\xd5\x47\x39\xe1\xda\x16\xa6\xfe\xa4\x96\xf9\x07\x71\x3c\xe2\x6f\xca\xb2\x50\x8f\x60\x84\x7a\x75\xe5\x37\xad\xc1\xb2\x35\x7c\xc6\x14\x75\x7c\x2c\x2e\x96\xf2\x12\x26\xe7\x2c\x00\x28\x69\xcb\x3a\x15\x44\xce\x0d\x82\x47\xe5\xaf\xff\x8c\x7a\x47\xe6\x79\x48\xd2\x30\x24\xa1\xd0\x6d\xca\xb5\x43\x0f\x54\x99\x66\x93\xf1\xb6\x89\x2a\x4a\xe7\x5d\xca\xab\x54\xa7\x75\xf5\x91\xf1\xec\x1f\xfd\xd1\x1f\x79\xa0\x12\x02\x35\x68\x71\xaa\x82\x7a\x74\xc6\xb3\xf1\x82\xaf\x93\xc5\x38\x00\xe2\xe0\xc4\x20\x93\x61\xe2\xdc\x89\x34\xae\xf0\x4f\x55\x90\xf0\xa0\x81\x93\xf8\x48\x45\x0d\x92\xbd\x56\x59\xfa\x60\x4e\xc2\xe3\xbc\x50\xe2\x9c\x98\x9d\x7c\x48\xe2\x43\x4e\x2b\x15\xee\x9e\x49\xb5\x09\x71\x3a\xf6\xa4\x47\x82\x16\xa4\x85\x3a\xa0\x97\x0d\x8b\xf6\x33\x5d\xb6\xee\xd7\x62\x67\x74\x66\xaf\x8c\xce\x78\xd7\xd8\x78\xe8\x1a\xd2\x31\x90\xcc\x4f\x21\x6d\x09\xee\xe2\xc5\x8b\x59\x06\x82\xe2\x99\x3e\x72\xeb\xf3\xec\xd2\x7c\x74\xed\x9d\x0f\x26\x9f\x18\xb7\x74\x1d\x80\x89\xb5\x54\x64\x28\x69\x81\x1a\x32\xce\x33\xa1\x95\x99\x4a\x24\x6e\x28\x82\x28\xc0\xc3\xe7\x51\x63\xae\x5f\x39\x1e\x3d\x75\xed\x68\xf4\xe8\xce\xb2\xda\x41\x7f\x81\xec\xe2\x93\xfe\x26\x00\xc4\x1c\x12\x8b\x7b\xf8\x55\xdc\x7b\x7a\xf8\x5a\xb7\x9b\xe7\x18\xc0\x21\x80\x03\xf7\x27\x9f\x0f\x88\xe8\x00\x84\x7d\x4b\x38\xb0\x06\xfb\xd6\xe0\x2d\x6b\x70\xaf\x35\x78\xcb\xfd\xdd\xb3\x06\xf7\x2c\xe1\x80\x09\xfb\xa0\x90\x6e\xdf\xfd\xea\xbc\x7d\x99\x73\x74\x6a\xa3\x60\xcb\x41\xfd\xdb\x8f\x65\x5b\xce\xeb\x4a\xfd\x22\xf3\xee\xdd\xeb\x24\xea\x75\xec\xea\x2e\xff\xf6\x45\x5b\x92\x67\xd7\xde\xdc\x9f\xec\xd3\x43\x20\x6c\x7b\xf6\x07\xcc\x25\x46\xc9\x12\xe8\x00\xc9\xc1\x7b\x1a\xb4\xe4\xda\x9b\x0b\xdf\x84\xc6\x96\xde\x93\xc4\x72\xb2\x6e\xb2\x88\xae\xe3\xde\x73\x88\x1a\x04\xa0\x62\xaa\x0d\x93\x09\xdc\x97\xe0\x3c\x15\x0d\x0d\x69\xba\xa8\xa5\x70\xea\xd1\x47\x62\x1d\x67\xf8\x57\xf2\xbc\xd9\xb6\x88\x67\x26\xb6\xad\xe1\x65\x4b\xc1\xbe\x25\x69\xa3\x73\x89\x38\xd1\xab\x8a\x54\xb6\x3d\xee\x05\xfd\xc9\x91\x93\x06\x94\xe2\x03\xe5\x09\x75\x1e\xc4\x3b\x24\x19\x29\x01\x03\x1d\xb6\xe9\x24\x5f\x97\xe6\x3c\xc0\x29\x97\x77\xe9\x7d\xe8\x79\xa8\xaf\x83\xfb\x8b\xbf\xf8\x0b\x0b\x24\xdf\x5d\xaa\x4b\x3b\xf5\x00\x60\x88\x51\x8f\x4f\xec\xe5\x6a\xc5\x8f\x10\x63\x0c\xc0\xb1\xd5\x4a\x38\x42\x29\xa6\xe8\x2d\x54\x6e\x80\x76\x53\xc6\xaf\x32\xa9\x81\x66\xb8\x9b\xc8\x9d\x84\x1b\x06\xb5\xc4\x4a\x0a\x37\x05\x90\xe2\x6f\x6b\x16\x13\xa1\x87\x8b\x44\x39\x41\xe8\x43\x22\x1e\xa5\x8b\x6d\xf7\xe0\x6d\x66\x3a\x4f\x66\xff\x4b\x21\x5d\x4c\x23\x4e\xec\xf5\xcf\x2e\x8d\x14\xbe\x0a\x48\xa2\x3a\x88\xdd\xff\xe2\xce\x68\xd6\x00\x2b\xe4\x5b\x57\x4b\xbe\x32\x5a\xd8\xab\x66\xc5\x53\xee\x4e\xb1\xad\x99\xd9\x03\x0e\xef\x02\x6d\x94\xe7\xf5\x20\x43\x03\x3d\x83\xe6\x7e\xfd\x8e\xb2\x9a\xbb\x5b\xc1\xc7\x3b\xcb\x6a\xef\x43\x6f\xce\x3e\x72\xe1\xb4\xfe\x28\x31\x66\xa2\xd6\xbd\xb6\x85\x30\x66\x77\xba\xb0\x28\x07\x48\x88\x1c\x23\x8e\x89\xb0\xab\x53\xc5\xd7\x79\x6b\xec\xac\x4f\x57\xa5\xae\xbe\x4f\xbc\xf3\x60\x7a\xe3\xa1\x93\xd1\x35\xdf\x06\x08\x40\xee\xda\x9a\xeb\x9f\x30\x57\x1e\x7e\xf8\xe1\x2c\x43\xe4\x6d\x46\x90\x3b\x39\x56\x2c\xa4\x70\x0b\x2c\x33\xeb\xc5\x79\x9f\x99\xc3\x62\x5c\x78\xbe\x2b\xfd\x45\x7a\xff\x2c\xcb\x38\x06\xe0\x77\x14\x79\x15\x49\x0e\xb4\x04\x77\xfd\xfa\xf5\xd2\x78\x18\x1c\x27\x05\x3f\x79\x51\x6f\x7a\x73\x74\x27\x05\xf1\xea\x2c\xd9\x3f\x87\xae\xce\xa1\x5f\x44\x7b\x75\x9f\x49\x50\x73\xe0\xc2\x0f\x99\xd9\x03\xa0\xde\x79\x2d\x94\x1a\xe2\xea\x3b\xf9\x32\x4d\xe8\xb5\xed\xa7\xc5\x12\x83\xf8\x42\xda\xb8\xf8\x45\xb2\xa4\x93\x82\x0a\x4b\x3e\xa2\x37\x50\x04\x90\x48\x1b\xbc\x98\xd5\xeb\x8c\x89\x61\x48\x58\x81\xfb\xd3\x36\x81\x94\x08\xf9\x49\x2c\x9f\x13\x31\x6c\x26\x5e\x1a\x37\x6d\x68\x8e\x33\x91\x79\xf4\x00\x4b\x10\x59\xf7\xe3\x78\xc3\x2f\x6b\x38\x1c\xca\xe4\x75\x7d\x6a\x77\x91\xce\x15\xc8\x83\x01\xe9\x0f\x11\x7e\x1e\x55\x47\x4e\x62\xb2\x49\x9c\x75\xae\xa4\x12\x19\x42\xd1\xa5\xb2\x65\xda\x4d\x54\x66\xba\x8e\xb9\x34\xa5\x3c\x75\x9a\x92\x4a\x2b\xd7\x9e\x4d\xd2\x00\x88\xdb\x5e\x85\x61\xae\x54\x0f\x18\x30\x6a\x62\x1e\x4f\x4e\xf9\x72\xa7\x26\x82\x91\xbb\x77\x28\x59\xb5\x52\x35\x47\x12\x06\x0e\x2b\x4b\xb0\x45\x81\x48\xe3\x5c\x7c\x94\x92\x96\xc4\x27\x3e\x27\xaa\x23\xc0\x5b\x80\xca\xdd\x42\x3d\x46\x3a\x5b\x37\xc5\xa4\xa8\x5f\x84\xd3\x78\x11\x84\x30\xce\x3b\x4c\xd8\x58\x1e\xc9\x84\xa1\xfc\x58\x47\x1f\x97\x45\xb8\x42\x7f\xbe\x3c\x1f\x1f\x1c\xf3\x76\x9d\xe4\x65\xad\xa6\xc5\xae\x59\xe1\x82\x97\xb8\x70\xbc\x18\x13\xc8\x7c\xef\x92\x48\x5c\x1d\x2e\x16\x6e\x99\x46\x54\x3d\x8d\xeb\x96\xa6\x97\xe6\xa3\x6b\x57\x8f\xc6\x1f\x1b\x59\x5c\xd3\x4a\xbb\xde\xb1\x1b\xa1\x1b\x14\xd2\x0c\xad\x4d\x37\x1e\x04\x0b\x5e\x4a\x0d\x73\xb3\xdf\x51\x86\xa3\x0f\x92\x7d\xfe\x75\x8b\x2b\x7b\xa7\xa3\x27\x1e\x3e\x1a\x7f\x6f\x7f\xb6\xba\x7b\x34\x6d\xbd\xba\x25\x98\x19\x78\x5a\x57\x90\xbc\xe0\xad\xb7\xde\xca\xed\x32\xf2\xb7\x26\x7b\x95\x1c\x44\x98\x3f\x98\xcd\x2f\xde\x63\x74\x67\x81\x05\xc9\x15\x62\xbf\xf6\x6c\x92\x44\x9d\x2c\xc5\x93\x5c\x13\xfb\x0c\x61\xe3\x21\xed\x3c\xe4\x8d\xcf\xd9\xc5\xda\xb7\x39\xa3\x1e\xf1\x4e\xae\xa7\x43\xce\x02\xa9\x2a\x4d\xa9\xcf\x82\x5a\x0d\x51\x42\xe5\xdb\xef\xfb\xcc\x6f\xe1\xf7\xaa\xc8\x48\x77\x5c\x9f\x0a\x7b\x99\x44\x1d\xe7\xf3\x56\x40\x49\xda\xbf\x48\x5b\xa3\xd0\x1e\xa9\x26\x23\xa2\x92\x5d\xcb\x60\x9b\xff\x2b\x9c\xb6\x71\x19\x22\xe4\x9b\x14\x1c\x06\xa0\xe8\xb0\x14\x79\x3a\xd0\x42\xbe\x63\xbb\x58\x81\xb0\x94\x30\x5c\x7f\x3a\x24\xa7\x3b\x20\xa5\xb8\xa5\x3c\x92\xbd\x0f\x85\x7c\xd3\x80\x5c\x38\x03\xd6\x12\x37\xce\x32\x1b\x10\x83\xd9\x4f\x62\xb5\xc3\x44\xab\x8d\x24\x40\x2c\x01\x16\xf9\x5c\xfa\x16\x39\x91\x36\x44\xfc\x92\xc4\xc6\xc7\xd7\x0b\x7e\x69\xc1\xd6\x65\x6b\xbf\x4d\x06\x6c\x69\x42\x0f\xa9\x89\x72\x7d\xa3\xd3\xe8\x38\x43\xc0\x5b\xbb\x52\x9d\x86\x40\x59\x70\x5e\x55\xe4\xc3\xc5\x62\x17\x54\x45\xe8\x76\x91\x98\xd1\xc2\xbe\x8d\x2c\xcf\x00\x18\xbd\x10\xf9\x03\x6a\xfb\xab\xb4\x0b\x97\x0b\xba\xb6\x47\x51\xc6\xa7\xfa\xa4\x5b\x69\x2b\xa2\x01\x44\xb4\xb3\x91\xcb\x5c\x3c\xe8\x2c\xbf\x88\xc6\x72\x82\x21\x3b\xe4\x3e\x3e\x57\x11\x52\x73\x33\xad\x64\xc8\xcb\x4f\x8b\xde\xf1\x2b\x7a\xaf\xb5\xae\x50\x50\x7b\xe5\x2a\x2a\xd2\x49\x90\xd7\x8b\x03\x18\x8b\x59\xd5\xf0\xae\x69\x79\x4a\x64\xe4\x7d\x45\xf2\x6f\x70\x7c\x3f\x78\xf0\x40\x8e\x55\xf9\x9b\xa8\x89\xb6\x97\x66\xf7\x91\xc3\xf1\x7b\xb6\x57\xe6\xfd\x86\x69\xa6\xab\x9f\xeb\xef\xf0\xb9\x49\x7e\xa1\x14\x94\x68\x06\xab\x07\x54\xca\x24\x51\x96\x24\xbe\x9f\xcc\x9a\xea\xe9\x8a\x1e\xd9\x3b\xad\xdf\xbb\xb3\xac\xbe\x7f\x34\x6d\x8f\x29\x35\x18\xf5\x0b\xa4\x75\xe0\xa1\xd7\x57\x7e\xa7\xc9\xdf\xfe\xed\xdf\xe2\xce\x9d\x3b\x3d\x9b\x17\x69\x34\x8a\x74\x4e\xfa\x77\x79\x93\xb2\xb4\xe3\x90\xa0\xa5\x37\x3f\x33\x36\x39\x01\xb8\x50\xdf\xd0\xb4\x11\x71\xe4\x6f\xb2\x58\xfb\xbc\x07\xd4\x23\xb9\x35\x74\x70\xfc\xc8\x93\x75\x05\x23\x0c\xea\x6f\xc3\xd7\x02\x86\x46\xb4\x5d\x9e\x82\x2f\xff\x64\x5f\x20\x93\x97\x6c\xab\x07\x68\xc9\xaf\xf8\x4b\xda\xf8\x9d\xef\x7c\xa7\xd4\xa4\x12\xb3\xb9\x49\xfc\x21\xbf\x24\x53\xf9\x3b\x54\xb0\x5e\x48\x7a\x9d\x83\xf4\xa3\x25\x20\x46\xa8\x8a\x3a\x89\x4b\x22\x02\xa1\x30\xd3\xbc\x64\x83\xc5\x73\xe7\x38\x91\x60\xe8\x73\x5d\x08\x11\xf8\x68\x35\x51\x4c\x97\x6e\xa8\xce\x81\xa1\x1c\x70\x62\x91\x87\x0b\xb7\x4c\x68\x98\x92\x8f\x2c\x8d\xa0\x92\x67\xa0\x1b\xe8\xce\xc6\x45\x2f\x96\x7a\x70\xc8\x49\x2d\xbf\x4f\x6e\x10\x95\xde\xa5\xcb\x81\x1e\x1d\x37\xf7\x9b\x23\xc6\xc5\x41\x5c\xc8\x73\x08\x40\xe4\xe2\xe5\xea\x9f\x73\xa5\x34\x43\xe9\x73\xf5\xd9\x64\x42\x95\xfa\x24\xa8\x8a\x80\x70\x23\x7a\x72\x52\x6a\xf7\xc7\x06\x8c\xba\x3a\xe3\xcb\x64\x51\x07\xf5\x87\x1b\xdc\xde\xa0\x54\xaa\x66\x92\x91\xe6\xa6\x86\xdc\xb6\xca\x6a\xe5\x8a\x61\x4e\x6a\x19\xd4\x50\x4e\xb2\x40\x8c\x70\x02\x2b\x62\xb9\x3e\x4d\x02\x74\xa4\x54\x27\x8c\x79\x16\xe5\xc4\x78\xdd\xb4\xf5\x75\xa7\x38\x61\x1d\xe0\xe0\x50\x98\x58\x80\xc3\xa5\x89\xb1\x93\x25\x8e\x8b\xed\x27\xf7\xec\x66\x2c\xc5\xba\xc7\x3a\x39\x7f\x97\x1f\x3b\x15\x10\x73\x07\xde\x64\x9e\x21\xef\x10\x17\x5e\x05\x33\xad\x1a\xde\x35\x0d\xa6\x50\xdb\xa1\x91\x71\x7a\xd7\x90\xf7\x53\x2a\x22\xe3\x9e\xc3\x42\xcb\xcc\xf5\xa4\x31\xbb\x97\xe7\xa3\x77\x8f\x5a\x73\x35\xc8\x7c\x0a\x9c\x91\x7f\x48\x04\x50\xbe\xbf\x32\x49\x12\x50\xe3\xfb\x93\x93\x6e\x2e\x17\x03\x38\xb0\x1a\xe9\x9f\x04\x42\x23\x6b\x2e\x5f\x38\xab\xde\x75\x61\x51\x5f\xa9\x2c\x8d\x3d\xb8\x13\xd2\x0e\xb8\x77\x30\x33\x9e\x7d\xf6\x59\xf3\xf4\xd3\x4f\xf7\xfa\xef\xce\x9d\x3b\xf6\xfa\xf5\xeb\xc1\x80\x57\x48\xa7\x35\xb0\xf0\xea\x11\x7f\x86\x4a\xd8\xae\x8c\x8c\x9a\x24\x63\xf3\xe1\xd5\x1f\x5e\xf5\x73\x2c\x9e\xf5\x56\x67\x6d\x90\xda\x38\x15\x56\x62\xc7\xe1\x7f\x6f\xde\xbc\xa9\x0d\x72\x87\x18\xaf\x75\x71\x00\x00\xd3\xe9\xd4\xf8\xbc\xa5\x21\xad\x28\xbf\x11\xcf\x3d\xc3\x59\xdf\x47\xae\xbf\xfc\xef\x7c\x83\x3f\x1f\x3f\x67\x98\x9b\xa8\xc8\xfc\xa6\x13\xff\xcd\x6e\xde\xbc\x69\xbf\xf5\xad\x6f\x95\x9a\x54\x6a\x6f\x0e\x2b\x48\xff\x21\x86\x34\x71\xfa\xe4\x5c\x9d\xa8\xb4\xf8\x64\x39\xf2\x44\x95\x13\x27\x30\x20\x44\x79\xee\xbf\x6e\x62\x7b\x4c\x2f\x88\x72\xc8\x0b\x42\x84\xea\x25\x32\x20\x35\xd9\x52\x17\xe2\x53\x4c\xdf\x4d\x7e\x7f\x16\x8c\x4f\x43\x69\xfc\xf0\x2b\xb9\x57\xb7\x48\xf8\xd8\x02\x58\x31\x01\x96\xd8\x32\xd8\x46\x50\x04\xa9\x2a\xb2\xba\x2f\x9e\x7d\xf6\x59\xf3\xcd\x6f\x7e\xd3\x1b\xe8\xca\xbe\x09\xe9\x0b\xef\x43\xd2\x10\xfd\x9d\x4a\x61\x39\xc9\x82\x1e\x44\xa5\xb4\xba\x2e\x43\x75\x2b\xf9\x69\x37\x54\x56\x49\x12\x55\xca\xaf\xd4\x2f\xeb\xda\x34\x54\x9f\x12\xc7\x10\x9e\x3f\xf5\xa9\x4f\x99\xf7\xbd\xef\x7d\x00\x22\xa8\x15\xa0\x05\x40\xb0\x71\xa9\x4d\xcb\xe3\x7a\xc5\x7b\x80\x3b\x02\x20\x0e\xce\x54\xed\x03\x29\x9d\x13\xd2\x17\x4e\xe3\xa5\x8b\x9d\x5f\xc9\xd5\x45\x8a\x2c\x9e\xd3\x98\x00\xcb\x63\xf8\x21\x26\x4b\x5a\xb7\x30\xe6\x3d\x62\x08\x80\x27\x73\x48\x9c\xac\x92\x53\x6b\xc5\x4b\x1d\x63\x78\x7f\xa1\xf6\x40\x4e\xb5\xad\x20\x61\x60\xd5\xae\x70\x82\xae\x10\xb3\xb3\xaa\x93\x8f\xef\x4f\xac\x97\xd7\x15\x90\xc5\xb4\x5a\x61\xa7\x6a\x78\x0a\xa6\x9a\x11\x4e\x72\xcd\x82\x17\x31\xaf\xad\xf2\x33\xe8\xe6\xbd\x16\xd9\x77\xa7\x26\x33\x8d\xb7\x97\xd5\x95\x0b\x8b\xfa\x3d\x95\xa5\x60\xdb\x92\x75\xd4\x7b\xe8\xc9\xac\x82\x1f\xa5\x42\xb3\x44\xe2\x22\xe8\x60\xee\xb7\x0f\x88\xf2\xe5\x19\x8b\xd9\xf6\x59\xf5\xc8\xc5\xd3\xea\xda\x64\x45\x2f\xb5\x13\xf2\x87\xf5\x35\xa2\x9d\x1e\x84\x00\x00\xbe\xf6\xb5\xaf\x65\x99\x96\x5b\xb7\x6e\x85\x85\xaf\xb0\xab\xc6\xc7\xf7\x7d\xe9\x55\x17\x89\x3a\x44\xfd\x01\xe9\xbc\x93\x52\x8b\x44\x72\x20\x9f\x85\x7a\x5f\xaa\x46\x02\x90\x92\xaa\x21\x05\x56\x74\x5d\xd7\xb9\x21\x06\x0e\x8b\xc5\xc2\x02\x40\x5d\xd7\x46\x4a\x5f\x84\x94\xc4\x88\x7a\x27\xb4\x4a\x48\x66\x02\xd3\xa4\xd4\x4d\xa1\x1f\x72\x75\xe2\x74\x6b\x77\xf2\x2c\xe3\x4a\x06\xdc\x7b\x1e\x1d\x1d\x0d\x31\xb0\x43\xcf\x25\xa9\xf8\x60\x3f\x49\x57\x8b\xe7\x75\xa2\xad\xc1\x70\x05\x54\x12\xdd\x9a\xca\xc3\x10\x77\xaa\xa2\x04\x88\x08\xdd\x7e\xf0\x42\xe4\x1c\x24\x53\x97\x2b\x9b\x12\x5d\xbd\x48\x10\x63\xf5\x44\xa1\x94\xd4\x8f\x42\x15\x7c\x7d\x54\x75\xa4\xeb\x06\x3e\x05\xb0\x92\xd5\xed\x6a\x9b\x9f\x0c\x68\x29\x4d\xda\xa1\xc5\x1b\x99\x30\x2d\x15\x2b\xe5\x3f\xe4\x5f\x5a\xdc\x73\xe0\x28\x07\x84\x64\xdc\x5c\xbe\x43\x03\x71\x08\xcc\x6d\x02\x8a\x86\x08\x60\x0e\xb9\xe7\x24\x4f\xb9\xfe\x2c\xa5\xc1\x07\x3e\xf0\x81\x6c\x9e\x9e\x90\x04\x11\xae\x65\x63\x5a\x8c\xab\x86\xf7\x9c\x9a\xb4\x73\x72\x70\x07\xab\xc8\x4e\x5a\x42\x3a\x0e\xa9\x78\x1e\xab\x38\x69\x8d\x5f\xa6\xc3\x72\x2d\x11\xbc\x88\x9f\x4e\x30\x71\x40\x5b\x1a\x29\xba\x88\xda\xd3\x18\xba\x3e\xbd\xe4\x94\xf1\x4c\x67\x53\x90\xf8\x04\x10\x54\x9e\x6d\x3d\x06\x25\x01\x2f\x11\xd9\x79\x20\xd6\xcf\xce\xf7\x89\x07\x47\x31\x2d\x31\xea\xaa\xe1\x59\xd5\xf0\x8c\x98\x6b\xa6\x9e\xea\x41\x8e\xf7\x64\x5c\xbc\xf7\xbd\xef\x35\x9f\xfe\xf4\xa7\x5d\x9d\xc2\x02\x02\x91\x2e\xa8\x34\xa6\x2b\x33\xdb\x9b\xd7\x57\xa7\x2b\x73\xcd\x30\xa6\xa5\xd6\x6a\x70\x91\xeb\x99\x3e\xe0\x48\x99\xb5\xa0\x45\x13\x3d\x84\xcc\x6f\xaf\xdc\xe2\x10\xa0\x7a\xd2\x98\x2b\xbb\x8b\xfa\x9d\xb3\x55\xf5\xad\xf9\xc4\x1e\x22\x55\xd7\x48\x35\x51\x69\xee\xf4\xe6\xe7\xd1\xd1\x11\xbe\xfc\xe5\x2f\xe7\xb6\x4b\x7b\xb7\x04\x12\x9b\x0d\x6f\xdb\x51\x02\x2d\x40\x5c\xe4\xa5\x4d\x87\xff\x4d\x9e\x95\x4a\x44\x4a\x7e\xe0\xda\x04\x65\xc7\x51\x72\x25\xc6\x70\x13\x50\x13\x9c\xbb\xac\xd2\x00\x71\x9b\xb5\x02\x77\x9a\xce\xcb\xad\xfa\xf2\x37\x79\xce\x81\xed\xc2\x73\xe2\x77\x8e\xf6\x9f\xd7\x6d\xda\x9f\xa5\xf7\xb5\x44\x7d\x5d\xe6\xc1\xe9\x85\x5b\xda\x79\x68\x47\x80\x09\xc4\x50\x6e\x15\x70\xf4\xa5\x27\xde\xf4\xaa\x24\xf6\xe1\x1c\x68\xbe\x2f\x9b\x55\x7c\x7d\x76\xa4\x3f\xbf\x21\x8a\x8f\x5d\x49\x3e\xef\xcc\xa4\x2d\x72\x44\xaa\x8e\x42\xd2\x12\xeb\xd3\xdf\x0a\x2e\x5d\x0e\x18\x6c\x22\x72\x94\xef\x7a\xe0\xe5\xc4\x70\x9a\x6b\x4c\x06\x7d\x26\xae\x74\x25\x89\x4c\xae\x4e\x25\x37\x04\x84\x4b\xf1\x37\x49\x53\x9a\x80\xba\xbd\x25\x00\x98\x4b\x3b\x94\xbf\x26\x18\x25\x97\x1a\xe6\x3a\xc2\x6e\x5a\x9e\x92\xc5\x2c\xa6\xe5\x1e\x28\xd0\x2b\x8c\x97\x16\x86\xb9\xa1\x41\x88\x07\x1c\x44\x3d\x35\x4a\x70\xbd\x15\xdf\xe7\x11\xf3\xea\x8e\x02\x20\x51\xbe\x28\x53\x26\xcd\xe5\x49\xbd\xd0\xf0\x2e\x7d\xbc\xea\x46\xab\x87\x08\x7e\x5a\x47\x15\x55\x5a\x20\xf7\xb2\xef\xa6\x6b\xa9\xa1\x91\x7a\x30\x29\x4a\x22\x16\xf3\x34\x3e\x8c\xb1\x3c\x35\x2d\x4f\x89\x51\x0b\x69\x0b\x50\x58\x08\xbc\x7b\xf7\xbb\xdf\x1d\x38\x50\xc5\xe5\xca\xbf\x1a\x40\xbd\xb5\xaa\x76\xf6\x16\xf5\xdb\xc6\x2d\x5d\x26\xbf\xa3\x52\x37\x17\xc9\x10\x48\xfd\x38\x13\x59\xb8\x1c\x28\x19\xa2\x5f\x62\x84\x0d\xc6\xf5\xfe\x23\x4b\xbb\xb3\x55\x75\x75\x6b\x65\x76\xd0\xb7\x35\x09\x52\x27\x4f\xeb\x94\xb1\x72\x76\xde\x7c\xf9\xcb\x5f\xd6\xd2\x8c\x1e\xb8\x10\x7f\xde\xae\x46\x6f\x13\x4e\x4e\xb7\x55\xbf\x5e\x0d\xa2\x8f\xed\xcf\xa9\x43\x1a\x55\x36\x9e\x7b\xee\x39\xad\x16\x2a\xb9\x12\xd3\x94\x73\x43\x74\xb6\xe7\x94\x6a\x4a\xf7\x49\xb6\x8f\xd4\xb3\x57\x7d\x35\x2a\x9e\x07\x6d\xb9\x6d\xde\x43\xed\x2f\xcd\x89\x4d\x70\xc3\xa6\xf1\xd7\xf6\xb9\x9c\xa0\xeb\x16\xb2\x92\x7f\x70\x4e\x2c\x07\xf9\xa7\xc4\xe8\x61\x57\x11\xf9\x7c\x94\x41\xa2\xa4\xdf\x1d\x1d\xea\x1f\x25\x1e\x4e\x0e\xcd\x31\x7c\x2c\xf3\x20\x35\x91\xa5\x15\x3e\x89\x7f\xf3\xf9\x48\xbc\x91\x3c\x3b\x69\x0b\x8b\x0e\x96\x86\xb8\xb9\xbe\xc8\x1c\x15\xee\xdd\xd0\x42\x9d\x03\x2d\x9b\x02\x11\x3d\xa8\x73\xf9\xe4\xe2\x96\xea\xb5\x49\x3d\xf5\x04\x28\x81\xb2\x1c\x40\x29\x2d\x16\xb9\xbc\x91\x89\x9b\xcb\x3b\x97\xc7\x3a\xe9\x54\x8e\xc8\x6a\x8e\x07\xcf\x3d\xf7\x9c\xd4\x47\x67\xaa\xd1\xc5\x27\xc0\x98\x16\x35\x31\x4f\xbb\xb1\x26\x00\x6d\x40\xde\x88\xe3\x8d\x29\xa8\x59\x58\x4c\x8a\x0e\x98\xa4\x8b\x31\x13\xbb\xf9\xe1\x6d\x58\x10\x6c\x44\x92\xbc\x5d\x40\x37\x9d\x62\x3c\x20\x62\x99\x60\xc7\x02\x72\x71\x39\x96\x47\x9d\x94\x22\xa6\x75\x40\x23\xb0\xf4\x11\x08\x78\x35\x57\xb8\xec\x91\xdd\xdc\xe8\x4d\x6c\x84\xfa\x90\x97\xba\x70\x0a\x90\x7a\x60\x46\x3a\x57\x7e\xb0\x5b\x71\x89\xe2\xbd\x67\x21\x93\x28\xd8\xf2\x82\xd8\x50\x4e\xe0\x94\x6a\xb2\x18\x3b\x89\x98\xb4\x53\xe9\x17\x2b\x08\xc1\x63\x8f\x3d\x96\xec\x2a\x53\x69\x03\x70\x61\xe6\xba\xb6\x34\x9b\xae\xcc\x9e\x61\x9a\x75\xd5\x92\x4c\x94\xef\x1a\x39\x36\x14\x98\x90\x86\x7b\xc9\xb7\xee\x83\xbb\x68\xd3\xe3\xbf\x6a\xd2\x82\x3e\x9e\xe3\x6c\x50\xe2\x8c\xa5\xd9\xb4\x31\x97\xa7\x2b\xb3\x4b\x8c\x60\xe7\xa2\xfe\x86\xe6\xc2\xe0\xfa\x71\xef\xde\xbd\x2c\x80\x71\x0c\x61\x58\x8c\x29\xee\xf8\x91\x47\xcf\x2f\x35\x40\xf1\x00\x87\xdc\xe1\x69\x48\x81\x4a\xa3\xf2\x0d\x36\x1c\xbe\xdc\xbb\x77\xef\x02\x00\x3e\xfc\xe1\x0f\x6f\x04\x62\x33\xae\x24\x11\xd2\xae\xb4\x2e\x24\x69\x7f\xf4\xa3\x1f\x69\xc9\x47\x11\xc0\x08\xa0\x92\x18\x22\x4b\x00\x23\x6c\x66\xf4\x33\x6e\xde\xbc\x69\x4f\x4f\x4f\x37\xa9\xef\x26\x0c\xe4\x3a\x86\x57\x33\x9b\x43\x65\x86\x78\x39\x1b\x97\x9c\xd8\x2b\x97\x49\xd1\x65\xb6\x75\xa1\x67\xe3\x22\x99\x4e\x05\xfb\x23\x33\xea\xe5\x26\xfa\xb7\x8b\x25\x61\x89\x66\x60\x3b\xbf\xf4\x7e\xa3\x94\x10\x0c\xd5\x1f\x01\x24\x25\xb4\x59\x54\x98\xc9\x81\x97\x14\xac\xf4\xd4\x43\x3e\x4c\xd8\xb8\x00\xe5\x85\xd5\x3b\x0d\x2c\xa4\x9f\x74\x7a\xd1\xd5\x7e\x5a\x04\xab\xe3\x6f\xf2\x9e\x03\x4b\xba\xee\xa5\xdf\x21\xa0\x91\x6b\xf3\x90\x1b\xaa\x9b\xae\x63\x09\x9c\x00\xfd\xbe\x2d\xe5\x07\xe4\xbf\x0d\x88\xc8\xfc\xe9\x9f\xfe\x29\x80\xac\x34\xcd\x8f\xf5\x30\x71\x89\xb9\x26\x4b\x75\x22\x41\x48\xc6\x53\xf7\x9b\x6e\x08\x92\x76\x24\x2e\x91\xba\x70\x31\x8c\x77\x39\x60\x5d\xbe\xe4\x16\xed\xe8\xef\x4f\xaa\xf5\x63\x95\x93\x19\xe4\x77\x1b\x25\xf6\x20\xee\x34\xe9\xae\xc8\x34\x2e\x7b\x69\x25\x3c\xf8\x88\x65\x44\x30\x12\x57\xc2\x70\x59\x64\xa8\x93\x9f\x27\xfd\xe6\x85\x73\xab\x7d\x87\x24\x75\x11\x3b\xf5\x00\x27\xb1\xf5\x6a\xa2\x98\x49\x6f\x7a\x87\x76\xc0\x8b\x79\x3c\xb6\x31\xd4\x01\x97\xdc\x76\xd2\x1e\x51\x25\xa2\x60\xa0\x2b\x76\x0c\x1a\x41\x03\x24\xc1\x0e\xf9\x55\x16\xd3\xda\xd2\x8c\xc2\x75\x0f\x24\xf2\x0c\x4f\xba\xd6\xc1\x25\xd7\x26\x24\xf6\x40\x29\xe3\x97\xee\x52\x52\xf4\xd1\xa7\x2d\x71\x7d\xa2\xdf\xe4\x10\x05\x03\x06\xa8\xeb\x96\x76\x26\xad\xd9\x31\x96\x6a\x6b\xe2\x39\x2e\xbe\x8f\x04\xbd\x33\x00\xec\x27\x3e\xf1\x09\xf3\x2f\xff\xf2\x2f\x43\xb4\x2e\xbc\x7f\xe5\x2b\x5f\xb1\x40\xef\xb2\xde\xc0\x1c\x38\x5b\x8c\x70\x02\x39\xa5\x3b\x6e\x7a\xeb\x0d\x90\x5c\x62\x28\xeb\x66\x45\xfc\x5e\xfa\x9b\x37\x6f\xda\xcf\x7c\xe6\x33\xe6\xef\xff\xfe\xef\x2d\x00\x7c\xf7\xbb\xdf\xcd\xd1\x62\xe9\x4a\x61\x9b\x2c\xf0\xb9\x34\x39\x9a\x8e\x7f\xfc\xc7\x7f\x0c\xfd\x23\xeb\x97\xb3\x13\xd2\x6b\x8f\xf4\x2f\x3d\x6b\xc9\xca\x0b\x2f\xbc\x30\x50\xcd\xb5\x6e\xd3\xf6\xe6\xc2\x87\xd6\xa4\x10\x57\xda\xb8\x6c\xe2\x72\x04\x1f\x40\x0a\x56\xd4\x02\x2e\x8f\x1d\x36\x4e\xe2\x02\xea\x08\xba\x98\x48\x29\xd0\xe8\x5c\x47\x7c\x03\x91\x12\xd3\x2a\x89\xe7\x8d\x0d\x45\x7c\x6d\x5c\xab\x49\x42\x6e\xed\x88\x79\x89\x8f\x0a\x81\xab\x52\x50\x64\x59\xf4\x83\x47\xec\xde\xe6\xc5\xf7\x83\xec\x1b\xb1\xab\x28\x37\x81\xbd\x2b\x2d\xc6\x3a\x5c\x3e\x6f\x32\xb1\xb2\x13\x22\x53\x4e\x49\xe2\xa0\x11\xf4\xd0\xe2\x5e\x9a\xec\x39\x70\x93\xab\x63\x2e\xbe\xae\x43\x89\x20\xe6\x00\x9f\xf7\x2f\xc5\x2b\x49\x65\xb2\x75\x63\x66\xfb\xdc\x73\xcf\x79\x03\x3a\xef\x17\xea\x22\x88\xb7\x01\xbb\x85\x91\xd9\x71\xf4\x51\xbc\xd2\x83\xd4\xb9\x05\x37\x63\xa8\xdb\x33\x62\x10\x71\xc3\x29\xd0\x72\x05\xf3\xab\x56\xb2\x1a\x49\x90\xe0\x1d\xc5\x4a\x78\x80\x13\xc4\x3d\x10\x79\x89\xb9\xe8\xcb\x0c\x9c\x08\x45\x80\x10\x70\x84\x07\x2a\x24\x38\x00\xcd\x9d\x73\x58\x58\xe3\x96\xed\x08\x56\x92\x2c\x5c\xd9\x24\xda\x18\xb2\x22\x41\x8b\x9c\x28\x83\x54\xbb\xbb\xf8\x9d\xa7\x03\x3f\x63\x62\x4c\xc4\xf9\x52\x39\x06\x21\x8c\x29\x2f\x3d\xf5\xd2\x96\xcc\xa2\xa9\x81\x4f\x6d\x98\xc6\xb5\xa5\x19\x65\x68\xae\xfc\x8c\x3d\x7a\x14\xea\x1b\xdb\x97\x4b\x9b\x30\x58\x3a\x1f\x45\x04\xfb\x34\x4f\x60\x62\x51\x8c\x34\xde\x66\xc0\x54\x8c\x69\xdd\xd2\xd4\x70\x3c\x3f\x45\xb6\x57\x83\x09\x05\x5a\x80\x61\x9a\x11\xfc\xf6\xf7\xf7\xf1\x95\xaf\x7c\xc5\xfe\xee\xef\xfe\xae\xf9\x9b\xbf\xf9\x1b\x2b\xe6\x59\xf6\x02\x5b\xe5\x67\x33\x7e\xde\x7e\x25\x71\xcc\xf9\xb3\x58\x3c\x28\xc8\xd4\x3b\xf7\xbe\x96\x91\x57\x6e\xb0\xed\x28\xd3\xb5\x6c\xfd\x72\xaa\xac\x67\x9f\x7d\xd6\xc8\x31\x2a\xed\x65\x36\xb5\x57\xf9\xea\x57\xbf\xba\x09\xa3\xfb\xb3\xb8\x92\xf4\x65\x23\x86\x56\x2f\x46\x9a\x60\xe7\x16\xab\x5c\x9a\x04\xac\x28\xa4\xdb\x3b\x65\x8f\x3c\x52\xd7\x83\xcb\x13\xa4\xc4\x53\xfa\x71\x12\x2f\x8d\x13\xb7\x44\xcb\xdc\x4a\x3c\x4c\x81\x0e\x38\xee\x4d\x6f\x8b\x16\x22\x5c\x8e\xd2\x16\x50\xb4\x3c\xf7\xaa\xa1\x52\x5f\x64\x8e\xbd\x86\x78\x97\x7f\x28\xfc\xea\xf0\xdc\xb3\x96\x74\xe4\xf2\xcc\x22\x58\xf1\x2e\xf3\xc8\x85\x97\xf2\xd7\x4e\xa7\xd5\x83\x7e\x53\x8e\x24\x17\xf6\xd3\x10\x92\xa1\x7a\x97\xf2\x1b\x6c\xab\xb3\xe3\xd2\x5c\x7a\xcf\x91\x05\xdc\x89\xb9\x1d\x67\x0a\xe4\x39\x5f\x88\x91\x46\x69\xbc\x00\x90\xfc\xbf\x72\x70\x53\xfa\xc7\x41\x0a\x11\xc4\x1d\xf0\x8b\x74\x8c\x2f\xf2\x25\x04\x55\x8e\xd0\x1a\x88\xfc\xb9\x9f\x7f\xd7\x01\x01\x5c\x74\xf9\x71\xf0\xf6\x65\x78\xbc\x14\x92\x24\x15\xee\x02\x82\xf4\x86\xc4\x49\xba\x12\xab\xf9\xb9\xd4\xeb\x83\x18\xdf\x17\xda\xe1\x1d\x21\x11\x92\x2b\xb2\x57\x59\x01\x42\x0d\xc5\x8e\x99\xe2\x9a\xdc\x99\x53\xdc\x9d\x9c\x8b\x9c\x93\xfe\x72\x11\x70\xe3\xc0\xaa\x78\x0e\xbc\xb2\x31\x4c\xe3\xca\x9a\x29\x81\xea\xde\xa1\x0b\x4a\x10\x07\xf1\x2b\xb7\xa2\xa7\xfd\xe8\x7a\x92\x55\x7c\xe6\xe4\xdd\xc7\x0d\x60\x12\x0e\xf0\x89\xf7\x12\x60\x16\x18\x13\x00\x0c\x59\xaa\x2b\xa6\xa9\x89\xe7\xa7\x40\xfc\x26\x1b\x34\x32\x9b\x32\xe4\x73\x69\x1e\x03\x88\xd2\x97\xbf\xf9\x9b\xbf\xb1\x5f\xf8\xc2\x17\x8c\xb7\xf3\x68\xdb\x16\x6a\x2b\xb5\x05\xa2\xaa\x43\xfa\x65\xfe\x42\x1d\x7d\x7e\x12\xb4\x6c\x6d\x6d\xe5\xe6\x6e\x76\x3e\x9f\x23\x7c\xd3\x78\x9a\x36\x97\xf2\xd0\xc0\x18\x99\xdf\x64\x5c\xca\xe7\xf9\x7c\x1e\x32\xfb\xc2\x17\xbe\x60\x76\x76\x76\x7a\x69\x55\xde\xa5\x35\xa0\x54\xbf\xdc\x73\x29\xce\x3a\xff\x5c\xdd\xc2\xbb\x56\x15\xad\xe3\x5a\x73\x71\x35\x42\x0c\x4e\x89\x0e\x45\x40\xca\x25\x78\x3f\x49\x38\xd3\x89\xe7\xdf\xa9\x10\x2e\x63\x44\xa2\x9b\xcb\xa3\xf4\xeb\xe3\x00\x19\xb4\x0e\xb1\x9d\x5a\x10\xcf\x1e\xbc\xc9\x48\x9d\xfc\xfb\x33\xcf\x3c\x63\xd4\xd5\xe7\x39\xe9\x02\x90\x0e\x9a\x21\xce\xbf\x04\x44\x4a\xd2\x97\x21\x29\x85\xf6\x5b\x27\xd1\x00\x86\x07\xb0\xae\xe7\x3a\x89\x90\xcc\x4f\xd7\x61\xd3\x3a\x9d\xb7\xcd\x43\xcf\xb2\xde\xb9\xba\x01\x08\xdf\xd8\xef\xa8\x00\x10\xc6\x40\xca\x71\xcb\x43\x18\xd9\x8d\x21\x39\x48\xc5\x60\x94\x2a\xc9\xfe\xa1\x6c\x62\x94\x87\x34\x42\xb2\xe2\x32\x21\xaf\x3a\x81\x28\x07\x62\x5c\x67\xd8\xfa\xa8\x2a\x8a\x8b\xa3\x0c\x4d\xde\x64\x25\x43\x3b\x38\x4a\x69\x12\xd6\xdd\x9f\x25\x93\xdb\xa5\xc7\x08\x12\x9a\x18\x5d\x95\x98\x9e\x9e\x1b\x05\x4e\xbe\xac\x54\x92\x13\xa5\x31\xae\x4e\xa9\x8e\x37\x86\x87\x3c\x09\xe8\xce\x95\x0a\xdf\x4b\xcd\xff\x64\x9e\x96\x6c\x38\x74\x1a\x3f\x06\x98\xd9\x18\x90\x31\x16\xb5\x71\x76\x34\x94\x13\x6f\x14\x5d\xda\x21\xaa\xde\x7d\x49\x89\x56\x0f\x49\x3f\x01\xe0\x7a\xe5\x2a\xc2\xca\xee\xbb\x84\xc3\x78\x63\x90\xec\x27\xcf\xb4\x6a\xc9\x53\x56\x0a\x92\x79\x2e\xc5\x09\xee\x4b\x5f\xfa\x52\xf0\xff\xb3\x3f\xfb\x33\x0b\xc4\xad\xd4\xff\x05\xbb\x5d\xc2\x7c\x3e\x3d\x3d\xcd\xe5\xb5\x2e\xff\x4d\xcb\x3f\x4f\xbc\x12\xb0\xdb\x64\x3d\x1e\xa2\xb3\xf8\xd2\x97\xbe\x24\x9f\xcf\xf5\x1d\x36\x70\xa5\xfa\x6d\x22\x4d\x1a\x6a\x6f\x96\xa9\x2c\x21\x20\x49\xa8\x4b\x48\xaa\x27\x56\x0d\xea\x20\xb1\x78\xab\xb0\xc4\x25\x80\x41\xcc\xa5\x14\xe8\x43\xd9\xa5\x71\xef\x80\x39\x0d\x5a\xc2\x99\x58\x99\xb2\x7a\xbf\x82\x8d\xc9\x95\x2d\xd3\xab\x3c\x7b\xe8\x73\x48\xa7\x98\x11\x49\x66\x39\x02\xf5\x5e\x92\x54\x0c\xa1\xe0\x4d\x07\xe4\xa6\x60\x54\x3a\x2d\xd1\xc9\x95\x51\x92\x56\x94\xdc\xba\x34\x83\x03\x78\x83\xfa\x94\xde\x87\x9e\x87\xfa\x3a\x38\xcf\x61\xae\x1b\xe7\x6c\x08\xf0\x97\x71\x4a\x16\x39\xac\xfb\x8a\x6d\x8e\x32\x85\xd4\xf9\x34\x61\x1d\xce\x40\x01\xf6\xe0\x45\xe4\x4d\xdd\x6f\x5e\x88\x20\xf2\x70\x71\xc8\xe3\x80\x50\x89\x7e\x7d\x38\x00\x03\x0f\x76\x3c\xd2\xea\x17\x12\x0c\x79\xb5\xd4\x40\x18\xdf\xb2\x7c\x62\x99\x36\x06\x66\xf0\x56\xcc\xc3\x13\x11\x59\x0e\x28\x8d\xa3\x8a\x08\x52\x0c\x82\x65\x43\x0d\x67\x00\x8b\xdf\x1d\x19\xcb\x8b\xcf\xea\xde\x22\x1f\x2e\x25\x0e\xdd\xf5\x01\x04\x63\x0d\x60\x0d\x1a\x10\x2c\x4b\x02\xc6\xf1\x53\xe6\x68\x8f\xa4\x57\x1e\xa7\xca\x40\x9f\x26\xd9\x31\xe9\xe2\xa9\x62\x8a\x2e\x84\x89\xe6\x6b\x3a\xc9\x00\x5a\xc3\x68\x88\xad\x8d\xed\xf4\xe0\x0c\x50\x92\x96\x01\x89\xcb\x7f\x89\xff\xcd\x9b\x37\x01\x00\xef\x7d\xef\x7b\x83\x9f\xfc\x1e\x03\x77\x4a\xc9\xe7\x12\xd3\x5d\x92\x44\x9c\xe7\x79\x9d\x5b\xb7\xf6\xae\x2b\x27\x57\x47\xcd\x7c\xe5\xca\xc9\x95\xbb\x49\x99\x39\xb7\x49\xdc\x52\xde\xe7\x01\x48\xbd\xbc\x37\x11\x61\xe5\x16\x4f\x19\x66\x7f\xf1\x17\x7f\xd1\x94\x26\xb7\x76\x8e\x50\x04\x09\x06\x90\x4e\xd8\x20\xd9\x10\xef\x91\x1e\x79\xaa\x2a\xf2\x63\x9d\x07\x4b\xfa\x95\xc4\x01\xfa\xe5\x74\x9b\x38\x28\xa1\x97\x39\x06\x48\x4a\x57\x08\x80\xe9\x38\xa7\x62\xff\xe5\xfa\xc3\x5d\xb2\x58\x12\xf7\x95\x44\x63\x39\xb7\x6e\x92\x0d\xa5\x59\x47\x14\x4c\xe6\x2f\x27\xfd\xd9\x74\x92\xf6\x00\x6e\xa6\xcc\xa1\xe7\xf3\xa4\x29\xf5\x63\x69\xd2\x0f\xe5\x5d\xf4\xcf\x71\x98\x45\x47\x00\x57\xb0\x36\xdc\x22\x4e\x90\xab\x48\xc4\x2a\xd2\x93\xd2\x30\x40\xa4\x61\x25\xd1\x48\x23\xc9\x94\x0a\xce\x17\xed\x24\xe2\xd8\xef\xe2\x26\x20\x42\x4a\x37\x64\x39\x94\xfa\x78\xf6\x5f\xe0\x9c\xb4\x39\x04\x10\xd8\x61\x1d\x16\xd2\xa3\x6e\x7e\x84\x43\x28\xc5\x89\xb7\xb1\x04\x0e\x71\x52\xda\xc2\xf9\x36\x09\x29\x41\xaf\xb9\x6e\x45\x8f\x17\x49\x73\x07\x5a\x0c\x6c\x07\x0a\x59\x82\x15\x13\x93\xa5\x8d\xf2\x12\x54\xed\xaf\xd5\xe2\x3e\x1f\xdb\x5d\xcc\xda\x30\xb8\x93\x06\xf9\x7e\x12\x1c\x14\x27\x7d\x92\xfe\xfa\xf8\xb9\x11\xd7\xb5\x35\xbd\xb7\xc8\xf7\xb9\xef\xcc\xcc\x27\x4f\xd2\x73\x2e\x20\xf5\xb2\x96\xd0\x34\x95\x6d\x98\xf4\xfd\x58\x1e\x20\xa6\xd7\x9b\xa8\x0b\x17\x4b\x0b\x6d\x8e\xde\x40\xc4\x95\xe9\xf4\xc2\x6c\x5e\x79\xe5\x95\xa0\xe6\x91\xcc\xa1\x94\x2e\xa8\x72\x72\x75\xd1\xfe\x5a\xd2\x5b\xa2\x29\xfa\x5d\xc7\xd7\x71\xcf\x4b\x03\x2d\xf2\x79\xc9\x75\x59\xd3\x64\x5d\xd7\x21\x26\x57\xc6\x5b\x07\x68\x74\x9a\x5c\x9f\xe5\xda\x21\xe3\x97\xca\x2b\xf5\x4b\x91\x56\x6b\x43\xb1\xdc\xe0\x28\x75\x52\xe2\x27\x55\x23\x1b\x10\x74\x0b\xc0\x7a\x0e\xc2\x63\x11\x4e\xe9\x24\x82\xe8\x1c\x03\x92\x10\xc9\x25\xb0\x20\xdd\x39\xe2\x2e\xf2\xf7\x04\x51\x2a\xd3\x25\xc3\xeb\x18\xd7\xc8\xb9\xc6\x14\x40\x38\x40\xaf\xec\x72\x13\x5b\x1c\x40\xe7\xfb\x60\xdd\xb3\x7f\x37\x99\x38\x72\x00\x6f\xe2\xd6\x49\x3f\x36\x0d\x2f\xc5\xd1\x75\x1c\x8a\xbb\x2e\xcf\xff\x8a\x34\x3f\x6b\xde\x45\x7f\x7d\x66\x8f\xf3\x2b\x8e\xfb\x8e\xa3\x47\xe3\x07\x71\xb7\x5e\xb9\x7f\xb3\x8b\x91\x5f\x6d\xe2\xc0\x75\xd0\x03\x01\xf8\x10\xe2\x20\x85\x97\x76\xa4\x79\xc4\x34\xee\x3d\xec\x54\xf2\xcf\x21\x23\x78\x03\x5b\x1f\x1e\x6a\x95\x70\x06\xbe\x9c\xb4\xc6\xdd\x1c\x8e\xf9\xf8\xf6\xc9\x9d\x30\xb2\x2e\xc9\x2d\x63\x3e\xad\xe3\x50\x92\x56\xb0\x2f\x52\xaa\x8b\xe2\x95\x07\x94\xf4\x45\x64\x72\x64\xd7\xc8\x4f\x12\xeb\x29\x9a\x66\x08\xfe\xfa\x0e\x46\x0f\x8c\x6a\xb5\x51\x70\xcf\x3d\xf7\x9c\xdc\xfd\x12\xe2\xcb\x71\x20\x9f\x5b\xc3\xcd\xb2\xb2\x0b\xa6\x38\x0e\x42\x17\xbb\x76\x45\x5a\x23\x7a\x38\x43\xc7\x12\xc6\x4e\xd0\x28\x52\x7d\x11\xc1\x4b\xec\x88\x5e\xfe\x2c\x7c\x92\x3a\xf9\xce\xef\xbe\x4a\x4b\x68\x56\x95\x5d\x9c\xd5\xbc\xb0\x05\xc2\xa7\xd5\xe4\x02\x48\xe4\xc0\x47\xee\x5d\xbb\xd2\x7a\x13\x9e\xdb\xb6\x45\x6e\xeb\xae\x52\xfd\xe4\xd6\x2e\xa8\xdf\x21\x1a\xbb\xae\x6e\xb9\xf8\xb9\x72\x74\x7c\x1d\x96\x03\x15\x43\xfd\x55\x7a\x2e\xd5\x23\x97\xf7\x50\x3b\x4b\x6d\xcb\x95\x3b\xd4\xde\x75\x71\x36\xed\xe3\x5e\xc5\x72\xc8\xb8\xf4\x61\x7a\xa0\xc5\x59\x20\x6f\xc8\x81\x32\x98\xc2\x8e\x9c\x14\x78\xe8\xe4\x3d\xb4\x92\xcb\x3f\x65\x5f\x35\xa7\x91\xa4\x52\xb4\x58\xb2\x66\xac\xf3\x51\x79\x6b\xee\xcd\x49\x5b\x92\x0e\x1d\x92\x34\x0d\xb8\x75\x28\x1e\xc8\x7f\xc0\xd2\xf7\xf9\xff\xca\xe9\xba\x9e\x47\xf4\xf7\xff\x17\xf7\x5f\xd6\x5f\x43\x63\x9f\x0d\x59\x26\x2c\x55\x8a\xe4\x27\x65\xb5\xbb\x41\x99\xaa\x05\xc4\x82\x0b\x3f\x5e\xe5\xca\x2c\x65\x0c\xf1\x9d\x59\xac\x46\x94\x86\xa6\x6f\xfe\x9e\x1f\x95\x07\xc5\x49\x95\x00\x78\x25\x01\x4a\x24\x2d\x9c\x42\x26\x59\x7d\xf6\xdc\x83\xfc\x13\x0b\x6e\x28\x8e\xd5\x62\x1c\x1b\x0e\x12\x5b\x9b\xfd\x75\x20\xb1\x19\x1c\xe3\x52\xea\x5f\xf8\x42\xdd\xbd\x63\x86\xce\x40\xe7\x1b\xc3\x05\xf5\x6f\xd6\x2d\x2b\x5e\x9e\x8e\xec\x71\x4b\xbc\xd4\xe0\x4c\xfc\x84\x36\xca\x4f\x96\xb1\xa5\x4d\xa4\xcb\xd2\xcf\xf7\xaf\x4c\x97\x05\x2d\x2a\x2c\xd0\xcd\x10\x47\x94\xc2\x80\x35\xbc\x5c\x8c\xec\xe1\xe9\xc8\xf6\x80\xcb\x06\x74\xcf\x8a\xbf\x92\x2b\x49\x36\x7c\x7a\xf9\xbb\xce\x0d\xd1\xa6\xd2\x62\x38\x04\x2e\xb4\x3b\x0f\xe3\x56\x72\x43\x92\x96\x52\x19\xb9\xba\xaf\x93\x5c\x94\xca\x2c\xb9\x92\x84\xa6\x08\x22\x36\xcc\x77\x13\xb7\xee\x9b\xf5\x22\x0e\xa1\x38\x0d\x66\xb2\x08\xad\x70\x9e\x45\xef\x9d\xe1\x0e\x6e\xcb\x10\x09\x46\x14\x80\xf8\xf7\x1c\xb1\x55\xc2\xd9\x30\xd7\x8b\x18\x47\x04\x32\x21\xe1\x6c\x18\x29\x61\xc8\xad\x15\xee\x9c\x2f\x91\x35\xf9\x83\xf4\xd2\x9a\x24\xdc\xdc\xe0\x64\x1e\xfa\x40\xeb\x90\x72\x2e\x8f\xa1\xb0\x12\x31\xc8\x89\xee\x34\xf1\xc8\x01\x29\x5d\x77\x1d\x3f\x57\x97\x75\x75\x58\xf7\xbc\x4e\xcc\xba\x2e\xac\x14\x9e\xe3\x08\xd7\xd6\x41\x9c\xd5\x91\x48\x5f\x72\x8e\x01\x6b\x2b\xb2\xd6\xd0\xc2\x8d\xfd\x04\x14\xc7\x73\x48\xc4\x38\x96\x1c\xb3\xc8\x48\x3a\x42\xb7\x43\xc6\xe3\x12\xee\x45\xed\x1f\xe5\x1f\x8f\x55\x49\x41\x88\x17\x43\x76\xd2\xd2\x08\x5e\xb4\x8a\x95\x72\x73\x31\x6e\xd3\x09\x15\xf1\xc7\x17\xb0\xcc\xc4\x4b\x49\x48\x4a\x5b\xe2\x96\x70\x4e\xf4\x24\x10\xcc\x83\xec\x90\x58\x57\x5f\x09\x92\x6d\xf0\x59\x30\x3b\x70\x23\x57\x7c\x21\xcd\x71\x86\x33\xbe\x3d\xb6\xa2\xc6\x56\x68\x62\x53\xfc\x82\x1d\xef\x22\xf3\xea\x23\x79\x8e\x8b\x8c\xab\xd2\x75\x55\xa2\x70\x53\xbc\x3d\xab\xed\xe2\x70\xda\x1c\x2e\x2b\x3e\xf6\xf5\x95\xf4\x2d\x60\x2c\x42\x9e\x81\x83\xfc\x92\x08\xfd\xad\xc1\x61\x38\xe7\x2a\x30\x64\x69\x36\x04\xf1\xa9\xd8\xb1\x6b\x0a\x14\xc7\xfc\xe2\x4e\xcd\x95\xe1\xf9\xc9\xa8\x3d\x38\x1d\xb5\x0b\x46\x1c\xf3\x42\x3d\x94\xf4\x55\x01\xc8\xeb\x39\xa9\x99\x61\xef\x34\x13\x96\x9b\xbf\x32\xed\x26\x34\xa6\x44\x2f\x4b\xcc\xe2\x50\x7c\x99\x2e\x57\xd7\x52\x7e\x3d\xa6\x1f\xfd\x7e\xd0\x65\xe7\x68\x72\xae\xaf\x74\xde\xb9\xfa\x0d\xf9\xe7\xda\x59\xea\xdb\x5c\x58\x4e\x5a\xa4\xcb\xd4\xed\xd1\x6e\x1d\x38\x0a\x7f\x9b\x7e\x64\x99\x61\xee\x63\xe5\x8d\x6f\x95\xbe\x97\x88\xdc\x05\x85\x80\x1c\xfc\x21\x1c\x3d\xda\x05\xcf\x7a\xb1\x60\xe9\x34\x3d\x4f\x98\xb7\xd2\x36\xc6\x20\x3a\x47\xc2\x7d\x75\x13\x33\x12\x01\x3f\xb1\x13\xee\xb2\x4f\x4c\x0c\x21\x48\x5d\xb2\x2e\xd7\x1f\xce\xc6\x05\x28\x7f\xa0\xa1\x81\xa0\xfd\x86\xb8\x90\x4d\xfc\x72\xe2\x3f\x8d\xb0\x73\x40\x2a\x27\x66\x85\x0a\xd3\xe5\x6c\xc2\xb9\x0c\xc5\x19\xca\xbb\x94\x76\x93\x7a\x0d\x95\x9d\x03\x94\x16\x48\xc1\x0a\x51\x7e\x0c\x04\x3b\x09\x02\xda\x1a\x4b\x3b\xa2\xb9\x14\xf5\xfb\xa7\x04\x5e\x04\x55\xab\xe2\x8a\xb5\x0b\x12\x04\x4a\xbc\x7c\x92\x54\x66\x22\xf8\x6c\x42\xdc\x0a\x2b\x19\x04\x4e\x9f\xbd\xc4\x23\x0e\x61\x2d\xad\x08\x77\x33\x47\x70\x4f\x14\xa5\x40\x3e\xfb\x6e\x72\x21\x48\x34\xb5\xe4\x20\x26\x0e\xea\xa2\x20\x20\x0a\x38\x48\xa3\x98\x58\x87\x64\xf2\x87\xbc\x29\x00\xc1\x80\xec\xe4\x76\xee\xd0\x2b\xae\x3c\x42\x63\x2b\x5a\xb4\x35\x2d\xd8\x31\x53\x52\xe5\x41\xe2\x2e\x32\xef\xef\x25\x2d\x5e\x55\xa4\xcf\x6d\x12\xaa\x22\x7f\x4c\x82\x3d\x1d\xd9\xe5\xfd\xd9\xea\xad\xd3\x51\x7b\xd7\x82\x1b\xf9\x09\x08\x51\xde\xeb\xa5\x26\xd2\xd8\xd6\x33\x4e\x92\xc9\x92\xe0\xb0\xcf\xb8\xc5\x6f\x20\xba\x46\x0b\x59\x62\xff\xa7\xd8\x32\x76\x6f\xf0\x67\x2c\x46\xf6\xf0\x68\xda\xde\x5d\x8c\xec\x82\xd2\xcb\x64\xe5\xe5\x84\x3d\x3b\x17\xe5\x24\xcd\xd1\xcf\x40\x7e\x4e\xe6\x18\x0c\x19\x67\x88\x46\xe9\x32\x65\x1e\xb9\xba\xc8\x72\xd7\x2d\xc4\xb9\x36\xc8\x67\xab\xe2\xeb\xb4\xb9\xf2\x72\xb4\x2e\x47\x93\x35\x70\xc8\x09\x14\x72\x7e\xa5\xb8\xb9\x75\x5f\xd7\x27\x97\xb7\x7e\xf6\xae\x54\xa6\xae\x97\x8c\x2f\x7f\x87\x80\xab\x05\x60\x87\x38\xd5\xd2\x7b\xee\x83\xe4\xc2\x01\xf4\x17\x70\x27\x55\xc9\x2e\x52\x29\x77\xa0\x08\x2e\x21\x10\x9b\x24\x7f\x95\x47\xdc\xaa\x29\xf2\x75\x04\x34\x10\xf7\x44\xf1\xdd\xe5\x42\xc9\x7b\x4a\xa8\x3d\x20\x4a\xea\xe7\xee\x1b\x39\x8f\x7a\x48\xd9\xb8\x00\x79\x30\x31\x84\x3a\xd7\xb9\xa1\x05\x78\xdd\xb7\x5a\xc7\x69\x94\x80\x45\xc9\xad\x1d\x1b\x03\xee\x3c\x65\x9d\xb7\x9f\x86\xe2\x9f\xb7\x8d\xc1\x65\x8c\x34\xc3\x19\x3f\xd6\x50\xd3\x8c\xe8\x20\xc9\x3f\x2c\x40\xdd\x4b\x50\xa1\x78\xe9\x43\x9a\x9b\x93\x84\x38\x49\x41\xe7\x25\x56\x96\x8c\xbc\x25\x91\xc4\xf8\x7f\x05\x1a\x29\x0c\x5b\x0f\xa0\xf0\xff\xb2\xf7\xae\x4f\x72\x5d\xd7\x7d\xe8\x6f\xed\x73\xfa\x74\x4f\xcf\x03\x03\x60\x38\x00\x41\x10\x84\xa8\x17\x25\xcb\x92\x2e\x29\x59\x26\xa3\xc4\x92\x6c\x39\xb2\xa3\xeb\x9b\xba\x29\xe7\x53\xae\xed\x4a\x15\xf1\x47\x81\x79\xd9\x4e\x4a\xce\xc3\x55\xa9\xbc\x6e\xca\xa9\x4a\x94\x5b\xb6\xa4\x28\x26\x43\xd3\x14\x45\x40\x22\x05\x92\x00\x01\x0c\x66\x06\x83\x9e\x9e\x9e\xee\xd3\xe7\xec\x75\x3f\x9c\xfd\x58\x7b\x9f\x7d\xba\x1b\x94\xfd\xe1\x56\xdd\x5d\x35\xd3\xe7\xb1\xdf\x67\xaf\xb5\x7e\x6b\xad\xfd\x20\x91\x6d\xf4\x2b\x61\x7f\x43\x17\x6c\x40\x97\x7d\x3d\x2b\xd3\x27\x00\x00\x20\x00\x49\x44\x41\x54\x26\xe2\x4b\xf3\x91\xa9\x0f\x05\xef\xc3\xba\xc4\x16\x01\xff\x50\x36\x51\xa8\x35\x36\xbd\xc7\x40\x51\x4f\x08\xbe\x21\xca\x22\x18\x5c\xa3\x50\xd6\x3d\x4c\xea\x9c\x4a\x50\x6b\x2f\x90\x56\x90\xdf\x26\x72\x15\x69\xc0\x1f\xf0\x27\xf2\xd0\x00\x74\xa5\x74\x39\xea\xd7\xa3\x47\x6b\xd5\xbd\x3a\xe3\xa9\xcb\x4b\x98\x00\x24\x40\xdb\xbf\x5d\xbc\x6e\x66\x77\x18\x87\x1f\x17\xc6\x3d\x46\x24\x9b\xc1\x02\x8f\xb1\x7b\xe1\xce\x65\x63\x59\x46\xa4\xd8\x09\xdc\x17\x18\xad\xac\xd5\x44\x1c\xf6\x59\x2b\x9e\x9e\x14\xd5\xe1\xd1\x5a\xf5\x60\x96\xeb\x72\x51\xff\xa4\x56\x94\x76\x84\x65\x72\x26\x15\x16\xd1\xe7\xaa\xef\x56\xb9\x4e\xd5\xa9\x4b\xde\x75\x85\x2e\xb9\xb9\x28\xee\xe3\xa4\x69\x8d\xd3\x2f\x7c\xe1\x0b\xad\x48\xf2\x59\xd7\xf5\xd6\xd6\x96\xcc\x73\x99\x1c\x58\xb5\x7e\x3f\x6f\xfc\xd4\xb7\x71\xcf\xe2\xc9\xb9\x8f\xa3\x99\x06\x26\x2b\x83\xb4\x83\x3d\x2d\x16\x55\x8a\xad\xf6\x8a\xf0\x38\x44\x6f\x15\x11\xbb\x66\xfa\xfc\x1d\x91\x49\xed\x20\xb8\xb6\x4c\xd2\x04\xab\xb9\x52\x32\x9d\xdc\x95\xd7\x47\x24\xb1\x3a\xa2\xad\x9d\x30\xfc\xe9\xd6\xcd\xc7\x35\x6d\x56\x5d\x26\x52\xb9\xaa\x28\x02\x2f\xb1\xd9\x2f\x46\xb5\xf1\xfb\x38\xa4\x4c\x8f\x5d\x71\x52\x1a\x4c\x2a\x2c\xcb\x67\x91\x69\x70\x15\xe2\x4c\xb5\xb7\xab\x1d\xa9\x3c\xe3\xb8\x5d\xed\xea\xd2\x72\x56\x21\x9e\x54\x5a\x17\x48\x6c\x3d\x6e\xe3\x50\x74\xb2\xac\xff\x23\x0d\x62\x5d\x15\x34\x62\x85\x8a\x34\x9c\x80\x17\x39\xc2\x1e\x6f\x91\x9e\x8b\x61\xad\x0e\x7e\x0c\x36\x40\x20\xe1\x0e\x42\x2c\x38\xfc\xc0\xf7\xfb\xbb\x84\x02\x9e\x5a\x84\x44\x41\xd2\xd8\xdc\x18\xdf\x79\xb1\xeb\x8f\xe5\x70\xc9\x58\xd0\x97\xa5\xa7\x80\xd0\x45\xd9\x96\xfe\x64\xce\x71\x33\x8c\x60\xb6\xe8\xc8\xef\x14\x1c\xb6\x83\x44\x19\x76\xc5\x92\xb3\x04\x90\xb0\xae\x2a\x2a\xeb\x1e\x8d\x75\x8e\x12\x44\x9a\x22\x7e\x67\x68\xd7\x3d\x93\xf4\x9d\xd8\x39\xd7\x9d\x92\x6c\xad\x2d\xf6\x17\x44\x7a\xda\xd3\xe3\xc3\xf5\xea\xde\x53\x8f\xf4\xa8\x57\xd3\x86\xb7\xcc\x18\x40\x12\xb5\xc1\xed\x3a\x6c\xda\x29\x17\x32\xc8\x4e\x71\x93\x8e\xa3\xfe\x94\xe3\xac\x89\x23\xf8\x93\xe8\x1f\x8e\xf8\x9c\xe4\xb5\xcc\x40\x99\xf1\xe4\xd1\xa0\xbe\x37\x1a\x54\x87\xb5\x42\x09\xf8\x93\x95\xc5\xb5\xe5\x73\x9a\xda\xbb\xd4\x26\xad\xf4\x48\xd3\xe2\x2a\x34\xef\xc2\x27\x3f\xf9\x49\xf5\x93\x9f\xfc\x44\xdb\x5f\xf1\x1c\x3f\xf9\xc9\x4f\x5c\x1c\x00\x30\xef\x17\xf1\xb1\x45\x9e\x86\x18\xac\xa5\x9e\xad\x1a\x16\xb5\x71\x51\x1c\x6c\x6d\x6d\xa9\xd1\x68\xd4\x6a\x2f\x00\x7c\xe5\x2b\x5f\x91\x56\x7d\xf9\xdc\xca\x29\xfc\xd2\x2f\xfd\x92\x93\xcf\x7f\xf1\x17\x7f\x01\x00\x18\x8d\x46\x2e\x9f\xdd\xdd\x5d\xec\xed\xed\x21\x51\x76\x0c\x6a\x56\xf9\xc6\x8b\x78\x72\x2a\xc4\x4a\x76\x4b\x31\xb0\xcf\x72\x11\x71\x55\x86\xbe\x30\x5e\xbc\xf1\x9a\x05\x34\xf6\x9a\xc1\x5a\x13\x6b\x67\xc5\xb5\x08\x1d\x11\xa8\x70\xda\x5b\x78\xde\x84\xa5\xf0\xa0\x9c\x58\xbb\x64\x3f\x43\xdf\x6b\x48\x14\x10\x68\xb0\x59\x9c\xb8\x17\xca\x61\x38\xdf\xc6\x98\xe6\x1b\x6b\x8d\xdd\x6d\x33\xb9\xea\xc0\x2d\x0d\x8f\xb5\x0f\xb1\xe5\x7f\x0b\x41\x8a\xfb\xc7\x11\xb2\x71\xbc\x54\xda\x55\x81\xc2\x22\x26\xb2\x2c\x5e\x57\x5b\x16\xdd\xa7\xea\xbf\x6a\x9a\xc7\x2d\x6f\x59\xdd\xbb\xca\x48\x7e\x03\x0b\x5a\xc4\x18\x0a\x18\x61\xf8\x9c\x35\x13\xf4\x7c\x40\x47\xac\x68\x0a\xf0\xb0\x11\x6e\x00\x1c\x60\xb7\x5a\xb1\x11\xfb\x66\x3f\x14\xbb\x09\x98\xd3\x8e\x25\x90\x10\x3e\x1d\xb9\x42\xc8\x6b\xe2\x16\xa4\xf8\xd5\x3d\x9e\x14\xe4\x0a\x23\x93\x3f\xc9\x8d\xeb\xac\x70\x37\x87\x29\x1a\x80\xd4\x58\x4b\x48\x58\x4e\xd8\x11\x6c\x53\x7d\x09\xdc\x7d\x19\xd6\xc2\xc2\x82\x36\x4d\x74\xdf\x1c\xc0\xd1\x9f\x15\xba\x9e\x72\x7d\x7c\xaf\x80\xc4\x2b\x93\x10\x09\x5c\xdb\x06\x2b\xd0\xad\x25\x88\xc4\x5c\x1f\x86\x56\x34\xad\x7b\x34\xd1\x39\x95\xd6\xe5\x01\x21\x90\x5a\x16\xe3\xc4\x9c\x16\xa9\xb0\x59\x81\x1e\xfd\x56\x00\xaa\x69\xae\x27\x0f\xd6\xcb\x7b\x27\xfd\xb5\xbd\xb5\x79\xb6\xab\x18\xb9\xc5\x16\x2c\xda\x1c\xf3\x1e\x3f\x2e\x4c\x1f\x0a\x55\x4f\x18\x9f\x02\xfe\xe9\x5c\x6f\xee\x01\x1b\x65\x50\xf0\x5a\x37\x26\x3c\xe8\x04\xc8\x7f\x07\x00\x4c\xac\x4f\x7b\x7a\xff\x68\x58\xed\x9d\x14\xf5\xd8\xf4\x8b\x3c\xc4\xcf\x8e\xf7\x14\x60\xb1\x21\x56\xc6\xe4\xf5\x22\x1e\x88\xcb\x97\x2f\xe3\xf6\xed\xdb\x49\xfa\xb5\xc0\xf1\xeb\x5f\xff\xba\x02\x80\xaf\x7d\xed\x6b\xc1\x46\x90\xf6\xb9\xdd\xa8\xee\xd7\x7f\xfd\xd7\xd5\x9f\xfc\xc9\x9f\x74\xf1\x82\x45\xfc\x76\x15\x9e\x9a\xca\xb3\x2b\xaf\x45\xcf\xba\x00\x91\x06\x3c\xc8\xf8\xfa\xd7\xbf\xee\xda\x17\x05\x65\xc6\x71\xeb\x9d\xf9\x3e\xae\xff\xa3\x03\x42\xf1\xca\x2b\xaf\xe8\xbd\xbd\xbd\xae\x36\x74\xf5\x4f\xca\xe5\xd5\x05\x50\x52\x3c\x39\x95\x4f\x0a\xe4\x06\x69\xba\x0e\x59\x8c\x23\xa6\xfc\x4d\xb1\x16\xba\xca\xb5\x16\xa7\xdb\xeb\x98\x39\xd9\x15\x04\x81\x32\x16\x68\x00\xf6\x60\x39\x72\xd6\x12\x73\xeb\xf2\xb0\x37\x2c\xee\xd9\x67\xe5\xdf\x51\x08\x64\x3c\xd3\xf4\x0f\x25\x98\xb2\x0c\xc6\x5e\x2b\x26\xa5\x18\x49\x2b\xcb\x12\x8b\xd3\x22\x54\x69\xef\xbb\x10\x6d\x57\xfc\xf8\x7a\xa1\xe0\xfd\x39\xe2\x2d\x8a\xbb\x92\xc6\xf0\x98\x69\x7e\x5e\x40\xbd\xcc\xa2\xb3\x2c\x2c\x64\x6e\xaf\xbc\xf2\x8a\xbe\x76\xed\x5a\x6a\x09\xac\x60\x3c\x8d\xc5\xa5\x5c\x53\x0f\x6b\x85\x69\x86\xf6\xd8\x93\xa8\xa4\xfd\x1f\x0e\x44\x04\x87\x2c\x4a\x8b\x8a\x10\xcc\x8d\x30\x12\xda\x77\x60\x5a\x09\x93\xfb\x7a\x8b\xf3\x86\xa4\x95\x03\x42\xb8\x09\x22\x63\x81\x38\x3c\xb5\x89\x64\x26\x7e\xec\x95\x72\xca\x87\x11\xa0\x10\x42\x53\x46\xf4\x75\x93\x6d\x09\x95\x14\xdb\x1f\x4e\x00\xc3\x0a\x6b\x6f\xd6\x21\x91\xbd\x54\x4c\x6c\x5d\x19\x04\x9d\x61\x52\xe7\x34\xd6\xc6\x92\x20\xfe\x60\xaf\x17\x2d\x75\x4f\x29\x6a\xe2\xb9\x26\xa2\xca\xfe\xce\x33\x9e\x1e\x0c\xe7\x0f\xf6\x36\xca\x77\xb7\x4e\xf3\xab\x83\x0a\xdb\x0e\x80\x49\x1e\xe6\x26\xde\x86\x6d\xb1\xc0\x91\x45\x33\xa5\xad\xda\xba\x88\x9c\x45\x8a\x48\x9c\xe7\x14\x7d\x57\xf9\xa9\xa9\x9d\xce\x82\xd0\x32\xe3\xc9\xe1\x70\xfe\xe1\xfe\xfa\xfc\xce\xb4\xa7\xa7\xf0\xa7\x2b\x57\x40\x60\x79\x09\xc2\xf5\xeb\xd7\xe5\x21\x8b\x5d\x16\x17\x1b\x02\xfa\xcc\xf3\x1c\x55\x55\x01\x00\x7e\xe3\x37\x7e\x03\x68\x2c\x9a\x9d\xf3\x67\x84\x95\x3f\xa9\xc8\x49\x1a\xb5\xc2\x3a\xde\x75\xf7\xfc\xf9\xf3\x38\x38\x38\x88\xeb\x13\x5f\xa7\xde\xaf\xf2\xfc\x71\x42\x92\xff\x7d\xe3\x1b\xdf\x50\x1f\xff\xf8\xc7\x83\xf6\xb3\xd9\xec\x30\xe2\x3d\x36\x1d\x80\xee\xe5\xf9\x68\x7f\x0b\x07\x64\x80\xf4\x19\x48\x51\x58\x66\x3d\x59\x66\x45\x8f\x9f\xcb\xf1\xb1\xc8\x6a\x03\x20\x74\x15\x7d\x14\x73\x58\xab\x52\xf1\xe0\x92\x66\xd4\xe6\x01\x34\x08\x15\x37\xda\xa8\xd7\x9b\x04\xff\x22\x44\x16\x11\xc1\x70\x9a\xa8\xd2\x85\x04\xc4\x27\xdd\x86\xa7\x42\x87\x93\x18\x65\x59\x52\xc3\x31\x5c\x21\x60\x50\xe1\x69\xd4\x86\x79\x34\x4a\xa6\x52\x8c\x9c\x98\x02\x17\x51\x84\x72\x2d\xf2\x4d\xf5\x59\xd8\x27\xed\xfe\x5c\xf6\x61\x53\x21\x26\x36\x99\x66\x15\x70\xb0\xaa\x90\x4f\x32\x87\x25\x75\x59\x84\xc2\xe3\xfa\xca\x34\xa9\xb2\xba\xe2\xa5\xea\x12\x03\xaf\xc7\x69\x67\xaa\x0d\x49\x3a\x48\x81\x16\x67\x36\x47\xa3\x71\x97\x43\x35\xae\x7b\x74\xc4\x33\xbe\xd8\x58\xea\x00\x80\x8d\x20\x92\x02\x06\x42\xed\xb6\x03\x95\x03\xfa\x08\x88\x41\x62\x14\x57\x1f\xf1\x6b\x8d\x22\x4e\xd3\x96\xae\x1c\x7f\xb6\x4f\x63\xd5\xb1\x60\xc3\xd2\x0e\x05\xbb\x50\x93\xa9\x93\x3b\x34\xd1\xd4\xd9\xe5\x61\xab\x27\xea\x14\x58\x45\xc1\x51\x9d\x84\xd0\x15\xc2\x52\xa2\x11\x8a\xdb\xec\x24\xb8\x48\x67\x6b\x6c\x2d\x40\x92\x41\x87\x3f\x01\x30\x00\x41\xd7\x3d\x35\xaa\x0a\x1a\xeb\x8c\x2a\x39\xd1\x14\xe6\x5b\xa7\x40\xcb\xcb\x2f\xbf\xac\xaa\xaa\x72\xc0\x55\x08\x55\xab\xe9\x06\xae\x22\x78\x41\x5f\x9e\x16\x7a\x74\xeb\xec\xe9\xcd\x0b\xc7\xc5\x73\xfd\x93\xde\x16\x31\xab\xe0\xe4\x6b\xf9\x3d\x48\x02\x96\xf0\x23\x3b\xdc\x47\xc6\x82\xe4\xfa\x41\x5a\xa2\x65\x07\x0a\x9c\x68\xbe\x91\xb4\x6c\xf9\xd5\x59\x02\x20\x80\x31\xee\xd7\x7b\xf7\xb6\xca\x77\x0f\x87\xf3\xbd\x8a\x78\x0a\x46\x0c\x58\x5c\x7f\x49\xde\xff\xf2\xcb\x2f\xab\xb7\xdf\x7e\x1b\x58\x0c\x5a\x02\x7a\xb2\x80\xe5\xa9\xa7\x9e\xc2\xdf\xfe\xdb\x7f\xdb\xc5\x97\x2b\xba\x58\x1c\x9f\x11\x7f\x1b\x92\x27\xb2\x7b\x19\xd4\x8a\xcf\xcc\x81\x90\x06\x1a\x41\x7d\xf9\xf2\x65\x75\xfb\xf6\x6d\x9d\x65\x19\xea\xba\x5e\x45\x30\xdb\xf7\x5d\x8a\xfd\x22\x5e\x1b\xf7\x43\x97\x7b\x24\x5e\xc5\x16\x80\x38\x9b\x2e\x92\x97\xc9\xb3\xb6\x84\xac\xd2\x22\x3f\x67\x31\x14\x69\xb4\x2d\xd3\xce\xe3\x1a\x0e\x87\xf6\xac\xa3\x54\x9b\x52\xed\x4d\x01\xd6\x94\x4c\xe8\xea\xdf\x14\x90\xf1\xe0\x36\x8a\xdc\x25\x70\x16\x69\xff\xea\xc5\x17\x5f\xb4\x9d\xe0\x4c\x54\x2d\xc0\x62\x02\x03\xd0\x86\x73\x85\xb3\x5b\xc2\xe0\xd2\x0b\xcd\xc0\xaf\x0b\x92\x83\x15\x10\x64\x17\xb8\x9f\xec\x9b\xf6\x00\xf7\xec\x9b\x7c\x44\x04\x1b\x5a\x45\x65\x4b\x65\x84\x18\x79\xae\xa9\xc8\x34\xe5\x88\xca\x4b\xb6\x21\x0c\x8b\x90\x6c\x4a\xe8\x76\xbd\xef\x12\xd2\xab\x5e\x77\x81\x83\xf8\x77\x59\x48\xc5\x5f\x04\x1e\x96\xa5\x5d\xb5\x5d\xab\xdc\xa7\xc2\x2a\xa0\x25\x8e\xb7\x52\x5f\xb4\xac\x8b\xcc\xda\x4c\xae\xd4\xe5\x9a\x1a\x55\x7d\xda\xc3\x04\xcf\x72\x6d\x5c\x04\xf0\xa6\xfb\x80\x04\x82\xf3\x77\xe0\x04\xb5\x63\xbc\x12\xe8\x04\xfe\x01\xa1\x30\x37\x48\xc4\x5b\x04\x9c\x45\xa6\x19\xc0\x12\xda\x87\xe0\xc1\xe4\x23\xa9\x33\xa8\x86\xc9\xcf\xb9\x1d\xd8\xd3\x18\x24\xf8\xf1\x02\xd1\x2a\x17\x91\xff\x43\x58\x4c\xe4\xaf\x17\xa3\x6e\x97\x59\xb2\xed\x37\x35\x35\xe5\xb6\xda\xef\xca\x82\x77\x15\x31\xc2\x32\x6c\x47\x01\xd0\x0a\xe5\x7c\x40\x87\xf3\x3e\x3d\x64\x45\x6e\xee\x86\x5c\x31\x23\x41\x89\xfd\xc6\xf1\x21\x76\x91\x60\x71\x2b\x89\x00\x54\x44\x64\x5d\x2a\x25\x80\xb2\xcc\x78\x72\x77\xab\xbc\x7b\xfb\xcc\xf4\xcd\xad\x69\x76\xb9\x5f\xa9\x2d\x16\xa6\x66\x07\x32\x65\x57\x45\x86\x30\x7f\x8a\xb6\x7f\x21\xf7\xbb\x89\x81\x4f\x3c\xac\xc0\x51\x7c\x84\x18\xc7\x7e\x87\x32\xe3\xf1\xde\xc6\xfc\xdd\x0f\xb7\xca\xf7\xc6\x8d\x9b\xa8\x24\xa2\xd2\xb4\x45\x9b\x76\x39\xfa\x08\x14\x4d\xe6\xf8\x74\xe8\x58\xf9\x80\xb8\xd7\x44\xa4\xaa\xaa\x8a\x01\x45\x2c\x4b\x62\x8b\x82\x7d\x96\x54\xe8\x48\x4c\x51\x10\x40\x46\x53\x7b\x3e\xa2\x16\x96\x18\x7c\xfc\xe3\x1f\xc7\xcd\x9b\x37\x57\xe5\x35\x8f\x63\x7d\xe9\xe2\x85\x2e\x2e\x89\xf9\x73\xd1\x06\x87\x41\xbf\x08\x65\x29\x75\x9d\x9c\x67\x2a\xc6\xb1\x12\x7d\x01\x53\x6e\xf0\xde\xd6\x33\xb2\xc2\x04\xfd\x18\xd5\xbd\xab\xbd\x5d\x4a\xee\xa2\xfe\x89\xef\x5b\xf2\x29\xd6\xfe\x1f\x47\xe0\xb8\xf7\xdf\xff\xfe\xf7\x17\x99\x53\x83\x41\xa5\x09\xba\x56\x28\x35\x35\x4b\x02\x59\x50\x4f\x68\x55\x41\xf0\x5c\x18\x4f\xbd\xb6\x61\x22\x06\x0a\x28\x45\xe9\x45\x3a\x97\x84\xbd\x26\xd3\xca\x87\xba\xd3\x79\xed\x8f\x54\xa6\xa9\xc8\x98\xe4\x1c\xa1\xa0\x9d\x56\x4b\xb0\xd7\x40\x6b\xcb\x7f\xc4\x69\xc4\x7d\x2b\xbf\x44\x7c\x9d\x88\xa7\x12\xcf\x96\xa5\x8f\xaf\xbb\xd2\xc9\xba\xa5\xe2\x77\xb5\x6b\x51\x7b\x53\xf9\xa7\xd0\x7c\x1c\x2f\x46\xe2\x5d\xed\xee\xea\xc3\x58\x2b\x48\xd5\x63\x95\x7a\x4b\xb3\xb5\x15\x78\xee\xda\x08\xb0\xc6\xb4\x9e\xa1\x9a\xad\xab\xdb\x3a\xc3\x54\xa6\xf7\x67\x65\x89\x81\xc7\xd1\x20\x16\xcc\xc5\x14\x6a\xa5\x73\x98\xcc\x46\xe5\x66\xec\x52\x94\x8e\x1c\xe1\xc4\x0b\xa9\x7d\xf9\x5e\xb1\x17\x69\xa4\xb8\x77\xe0\x27\x04\x01\x76\xfe\x97\xa4\x18\x32\x0d\x24\x8f\x36\x7c\x01\xa6\xee\x64\xae\xbd\x50\xb6\xbb\xed\x46\xfc\x44\x00\x32\x59\x6e\x90\xa7\xcc\x2f\xb6\xf2\x40\x76\x55\x53\xb6\xce\x69\x5c\x0e\xd4\x61\xd5\xa7\xb1\xa6\xf0\x84\xe1\x94\x79\xdd\x7e\xeb\xe7\x9f\x7f\x5e\x01\x50\x1f\x13\xe7\xe4\x90\x9f\xd3\x02\x99\x0f\x37\xfb\x9b\x38\x8b\x0b\x83\xa7\xd3\x9e\x1e\xbd\x7d\xe1\xf4\x47\x07\xeb\xd5\x4f\x2d\x1f\x74\xdd\x1c\x63\x3b\xeb\x32\x93\xcf\xa4\xb6\x65\xeb\x65\xf9\x64\xdc\x17\x32\x48\x80\x4b\xbe\x3d\x8e\xef\x89\x42\x18\xd0\x0f\xd7\xe6\xb7\xde\x3f\x3b\xbd\x79\xb4\x36\xdf\xd3\xc4\x53\x0b\x5a\x98\xd9\xfe\x4a\x3a\x72\x7f\xcc\x8c\xff\xf5\xbf\xfe\x97\xcd\x2a\xa6\xa3\x16\x80\xf9\xea\x57\xbf\xaa\x98\x59\xbf\xfc\xf2\xcb\x5d\xa7\x72\x3b\x9a\x34\x16\x17\xc5\xcc\x39\x33\xe7\x30\x27\x55\xcb\x3f\x19\x07\x8d\x10\xcf\x85\xa5\xa6\x05\x5a\xe4\xf3\x97\x5f\x7e\x59\x7d\xed\x6b\x5f\xeb\x3a\xeb\x28\xc5\x2f\x25\x1f\x8e\xf9\xd8\xb2\x38\xf6\x5a\x03\x50\xeb\xeb\xeb\x72\xd2\x7f\x60\x61\x32\xf2\x44\xb6\x4d\x01\xc8\x89\x28\x97\xbf\xf6\xcf\xf4\x4f\x61\xaf\x01\x14\xa6\x1f\x0a\x7b\x2d\xde\xd9\x5f\x9b\x37\x4c\x99\x2d\xbe\xc7\xcc\xfa\x99\x67\x9e\x49\xf1\xc8\x2e\xab\x91\xec\xc3\x2e\x7e\x1b\xf7\x0f\xa2\xfb\x96\x4c\x58\x24\x1c\x97\x09\x32\x17\x5e\x7c\xf1\xc5\x60\x3f\x83\x28\x38\xd4\x0b\x00\x6c\xce\xec\x30\x67\xb7\xf8\x7d\x25\x10\x29\x9d\x4d\x6c\x77\x1d\x68\x1b\x4d\x86\x26\x3f\x91\x8e\x3d\xe1\x06\x44\x1b\x11\xa5\xcb\xd7\xf2\x7d\x16\x5a\x9c\x80\x33\xf1\xc9\xab\xcd\x1b\x86\x02\x54\xa6\xa9\xc8\x35\x0a\xc5\xde\xdd\x26\x4d\x93\xc6\x75\x04\x7b\x0d\xb8\xc9\xb9\xab\x20\xce\xc7\x41\xf0\x5d\xa8\x34\xf5\xfd\x62\xa6\xb1\x0c\xb0\xa4\xca\xe9\xaa\xe3\xe3\x5a\x7c\xba\xf2\x8f\x9f\xa7\xc0\x75\xaa\x2e\xa9\x3c\x96\x59\xad\x52\xf5\x8b\xf3\x5c\x54\xef\x94\x36\x68\x35\xa7\x40\x23\xd5\x84\xf2\x74\x33\xbb\x57\xe7\x34\x46\xbc\x1d\x00\x45\x03\x34\x38\x74\xd1\xda\xf6\xe3\xf8\x3e\x9d\x1b\xf3\xd1\xe0\x6f\x91\xa3\xc3\x27\x7e\x8c\x87\x73\x67\xc2\x77\x3e\x9d\x15\x70\x1e\x28\xb5\xb2\xb6\x59\x90\x58\x0e\x6d\xf2\xb6\xb8\x8c\xa3\x36\xc8\x5a\xb8\xe8\x3e\x02\x98\x4d\x99\xb6\x56\xd6\x52\xc0\x22\x72\x8c\xf9\x0c\xb4\xf1\x65\x99\x6b\x16\xb4\x6d\xfa\xaf\xee\xe1\x68\x3e\xa0\xc3\xba\x47\x53\x0b\x30\x89\xbc\xcb\x08\xd1\xb8\x32\xcf\xf1\xda\x6b\xaf\x69\x00\xfa\xbd\xf7\xde\x33\x4d\x69\x6b\xc5\xc2\xed\x54\x11\x91\xb3\x54\x10\x51\xa9\x09\x93\x87\x6b\xf3\xfd\xb7\x2e\x8c\x7f\x38\x1a\xd4\x1f\xea\xc6\x75\x2e\xbb\xda\xb5\x45\x5a\x8a\x5c\x1f\xc8\x7e\x07\x82\x38\x1d\xc6\xdf\x74\x70\xd6\x38\x01\x9c\x4c\x9e\xa3\x41\xfd\xe1\xcf\xce\x4f\xdf\xfc\xf0\xcc\xec\x67\xa7\x3d\x3d\x26\xa2\xa9\x05\x2c\xa2\xaf\x5c\xdf\x48\x25\x2d\x52\x60\x63\xfa\x72\xbc\xe7\x5b\xdf\xfa\x96\x02\xa0\xff\xf4\x4f\xff\xd4\x1d\x9f\x60\x2d\x06\x42\x60\xdb\xf8\x39\x33\x07\x02\xda\x08\xe2\x9c\x99\x0b\xfb\x87\x46\x28\x4b\xe1\x5c\xd8\x74\x44\x54\x48\x41\xcd\xe2\xa0\x48\xc0\xf3\x6c\xe6\xe6\xb8\x82\x7f\xf8\x0f\xff\xa1\xfa\xea\x57\xbf\x9a\xb2\x28\xc4\x3c\x33\xc5\x2b\x52\xd6\x05\xf9\xa7\xe2\x74\x27\x27\x27\xce\xc2\x11\xcd\x9d\x53\x68\x00\x98\x12\x40\xa5\x80\x07\x2a\x05\x80\x01\x11\x0d\x00\x0c\x95\xc6\xb0\xa8\xd5\xc6\xa0\x52\xc3\x41\xa9\x36\x86\xf3\x6c\xa3\xa8\x68\x98\x69\x0c\x7b\x9a\x06\x26\x7e\x41\x44\xae\x8f\x4c\xff\x48\x20\x23\xfb\xdf\xd5\xe9\xda\xb5\x6b\xea\xbd\xf7\xde\x5b\xc6\xdf\x53\x80\x26\xee\xc3\x54\x5f\xa4\xf2\x4b\xf2\xeb\x2e\x0d\x13\x1d\xcf\x92\x02\x6f\x85\x2d\xff\x9d\x26\x52\x13\xf4\x3c\xd3\x65\x73\xe0\x18\x74\x17\xa5\xc5\x0c\x0d\x10\xda\x2d\xc7\x65\x79\x86\x6d\xb5\xb5\x38\x04\xd1\xa5\x0a\xd6\x52\x65\xa4\x7a\x63\x89\x51\xf2\x47\x02\x18\x4a\x31\xe5\x99\xa6\x9e\x12\x9b\xd0\x19\x93\x65\xa7\x90\x4b\x2d\x55\x5b\x10\x62\x94\xd9\x99\xaf\x88\xbf\x0c\xbc\xa4\xee\xe3\xf8\x2b\x03\xd6\xc7\x78\xf7\x51\xc3\x5f\x47\x9e\x3f\x4f\xfe\xcb\xfa\xc7\x86\x88\x49\x51\xc5\x8a\xaa\xd9\x3a\x1d\x54\x05\x1d\xca\xed\xff\xbd\x96\x2c\x81\xbf\xd5\xa4\xc5\xb5\xc8\xdc\x5a\x15\xc0\xdc\x02\x03\x22\x57\xf1\xc2\x03\x0f\xb6\x69\xdc\x2c\x79\x12\xda\x80\xad\x47\x90\x4c\x98\x31\xbb\xa5\xa2\x81\x50\x81\xf5\x24\x79\x60\xa2\x37\x84\x08\x0c\xc1\x7e\xda\x89\x00\x6b\x7e\x72\x6a\xd4\x46\x9b\x51\x64\x65\x90\x6e\x62\xb2\xd2\x98\xc4\xb5\xa5\xef\xa6\x04\x5d\x15\xea\x68\x3e\xa0\xa3\x3a\xa3\x29\x9a\x79\x28\xce\x4a\x22\x5d\x43\x1d\x0a\x19\xb4\xd6\xa6\x5c\xff\x3e\x61\x85\xb0\x93\x59\xad\x8b\x65\x0a\xf0\x74\x9e\xf1\xf8\x67\xe7\xa7\xef\xdc\xd8\x9d\xfc\x60\xdc\xaf\xf7\xb5\x38\x06\xa5\x65\xf5\x32\x0f\x93\xc0\x24\xe0\x4d\xae\x0e\x71\x94\xe0\xda\x81\x9c\x64\xab\x80\x93\xa2\xda\xff\xd9\xb9\xd3\x37\xde\xd9\x39\xbd\x79\xdc\xaf\x8e\x40\x98\x36\xf5\xc6\xd4\xb4\xc1\xad\x28\x82\xef\x2f\x97\x7e\x85\x89\x9d\xf8\xd6\xb7\xbe\xa5\x2e\x5d\xba\x04\xa0\x11\x88\x52\x40\xc3\x08\x69\x78\x4b\x82\x04\x24\x4e\xf0\xc2\x0b\xec\x82\x40\x83\x9c\x1b\xe1\x9c\x69\x0c\xc0\x18\x98\xb8\x71\x7c\x27\xb0\x05\x08\x52\x31\x88\xb9\x76\xed\x9a\xca\xf3\x1c\x7f\xfa\xa7\x7f\xaa\x01\xe0\x9b\xdf\xfc\xa6\xac\x7e\xac\x30\x3e\x4e\x68\x59\x72\x2e\x5e\xbc\xa8\x00\x3f\x97\x45\xb8\x67\x6c\x7d\x52\xd6\x94\x1c\x68\xda\x59\x54\x34\x3c\x3b\xc9\xb7\x2e\x3f\xec\xef\x7c\x7a\x6f\x78\xe9\x17\xef\x6e\x5c\x7d\xfe\xce\xe6\x73\xbf\xfc\xde\x99\xe7\xff\xc6\xad\x33\xbf\xfc\xe2\xad\x33\xbf\xfc\xcb\xb7\xce\x7c\xf1\x4b\xef\x6f\x3d\xf7\x99\xfb\xeb\x57\x9e\x39\x18\xec\x6c\x4f\xf2\xad\xfe\x5c\x6d\x10\x63\x60\x01\x1f\x04\x20\x14\x7f\x49\x00\x03\x00\x9f\xf9\xcc\x67\xba\xda\x15\x3f\x8f\xc7\xc3\xb2\x3e\x5b\x3a\x7e\x72\xb4\x91\xce\x22\x2d\xb3\x13\x3d\x03\x01\xda\x0e\x34\x15\xe9\x23\xae\x15\x57\x95\xe2\xb2\x26\x2e\x8d\x4e\xe1\x08\x28\x98\x38\xc8\x82\x4f\x3a\x9c\x11\x2d\xe7\x73\xf1\xa3\x99\x32\x14\xde\xc7\x84\x4d\xf2\x19\xf9\x6b\x97\x37\x59\xc2\xf6\x4c\x30\x14\x29\xa4\x32\x46\x91\x6b\x55\x64\x9a\xd4\x5c\x69\x4b\x6c\x80\x30\xb7\xc5\x40\x2e\xb1\x01\xdd\x2a\xa6\x35\xfb\x7e\x55\xe4\x1f\x9b\xe4\x64\x19\x29\xf4\x1a\xe7\xdb\x65\x16\x5d\x34\x98\x16\x01\xa2\x54\x1b\x17\xb5\x65\x11\x02\x4f\x95\x9b\xaa\x5f\x17\xe2\x5f\x14\xe2\x7a\x2e\xaa\x1b\x00\xa8\xdf\xf9\x9d\xdf\x09\xc6\xb6\x10\x78\x52\xf8\x55\x68\xac\x8b\xe5\x7c\xa0\x46\xb3\xa1\xfa\xb0\x7f\xa2\xaf\x92\xe6\x41\x23\x88\x3c\x48\x09\x8c\x1e\x91\x11\xc4\x8d\x65\x2b\xcb\xc5\xe0\x0d\x3c\x48\x80\x7b\x20\x6c\x41\x26\xcb\x68\x6f\x24\x58\x2b\x4d\x68\x5a\x0c\xb6\xd1\x87\x10\x74\x12\x54\xc4\xe6\x48\x00\x6e\xb5\x90\xa8\x5e\x38\xe1\x16\x01\x21\xd9\xd3\x9e\x1b\xb7\x96\x69\x80\xa3\xea\x70\x39\x78\x6c\x94\xb2\x0d\x0e\xf6\x79\x32\x66\x1d\x92\xed\x97\x84\x4e\x9e\xc7\xe8\x0c\x93\x72\x48\xf7\xca\x35\xf5\x50\xe7\x6e\x6f\x12\x39\xf1\x14\x88\x68\xc6\x6a\xe2\xcf\x3f\xff\xbc\x7a\xed\xb5\xd7\x00\x00\x45\x51\x28\x71\xe0\xa2\x9d\x3f\x61\xd3\x54\x66\xde\x81\x9d\xe3\x32\x05\x90\x83\xa8\x00\x63\x72\xda\xd3\x47\x37\x76\x27\x6f\xf7\x2b\xb5\xf5\xec\xfe\xda\xf3\x1b\x65\xb6\xa3\x40\xc1\xe1\xad\x12\xd0\x25\xa7\x35\x99\xe7\xc1\x42\x32\x69\x72\x23\xb1\xa8\x40\xc4\xf1\xdf\x54\x5a\x74\x18\xd3\x5c\x8f\x3f\xd8\x9e\xbd\x75\x73\x77\xf2\xe6\xd1\x5a\x75\x5f\x13\x26\xcc\x3c\x21\xa2\x14\x68\x09\x26\xea\x5a\xc0\xf4\xd2\x4b\x2f\xa9\xef\x7d\xef\x7b\x0b\x15\xaf\xff\xfc\x9f\xff\xb3\xbe\x76\xed\x9a\xb2\xee\x21\xd3\x6f\xd6\xf2\x21\x41\x84\x32\x16\x13\x05\x40\x29\x0d\xd5\xab\x55\x3e\xa8\x54\x3e\x2c\x55\xb1\x36\x57\x45\x51\xab\x22\xd7\x54\x28\x26\xa5\x74\x43\x9f\xb3\x5c\x4f\x4f\x7b\x7a\x3a\xcb\x75\x35\xcf\xb8\x3c\xed\xd5\xd5\xb4\xa7\xcb\x5a\xf9\x49\xc5\xf6\x8f\x99\xad\x95\x4d\xf4\x7b\x43\xd7\xd7\xae\x5d\x53\x66\xe2\x2e\x3a\x42\x2c\x07\xbb\x78\x7a\x52\xe9\xb7\x13\x82\x23\xb0\x62\xe7\xab\xc4\x80\xaa\x71\x7d\x81\xf2\x5e\x4d\xf9\xc6\x2c\x1b\x6c\x4f\xf3\xe1\x13\x27\xbd\x8b\xe7\x4e\x7a\xcf\x0e\xcb\xec\x63\x45\xa5\x76\x7a\x9a\xb6\x73\x4d\x1b\x99\xc6\x90\x98\x0a\x00\x5a\x13\x57\x5a\x61\x3a\x57\xfa\x70\xda\xd3\x1f\x8e\xfb\xf5\x3b\x8f\xd6\xaa\x5b\x87\x6b\xd5\xde\xc3\xe1\x7c\x34\x1a\xd4\x93\x59\xae\x4b\x36\xfd\x81\xd0\xa2\x26\xf7\x24\x72\x6e\xbd\xe3\xe3\x63\x3c\xfb\xec\xb3\xea\xee\xdd\xbb\xd6\x0a\x29\xdb\xd9\x02\x68\x89\x3e\x89\xfb\x27\x56\xb6\x53\x32\x41\x01\xed\xc9\xb9\x71\x26\xcb\x82\x06\x1a\x57\x91\x2c\x28\xf6\x21\xca\x6b\x4d\x8c\x4a\xf1\xac\x56\x5c\x31\x41\x2b\x16\x15\x0d\x51\x49\x5b\x23\x08\x88\xb3\xf9\x1f\x6b\x0f\x31\x81\xa6\x42\x12\xc8\xc8\x3a\xdb\xb3\x5a\xac\xa9\xd6\xaa\x88\xe4\x35\x48\xc5\x94\xf7\x6a\x2a\x7a\x9a\xf2\x59\xc2\x6a\x94\xb2\x3e\x45\x1b\xd0\x2d\x13\xe4\x49\x13\x59\x14\x2f\xce\x63\x99\xc0\x4f\xa5\x4b\x01\xd6\x78\x10\xa5\xac\x37\xa9\xba\xa5\xee\x63\x20\xb0\xc8\x2c\xd8\x55\xa7\x65\xe5\x2e\x2a\x7f\x51\x3e\x5d\x7d\xb9\x52\xdd\xfe\xe0\x0f\xfe\x00\x40\x7a\x23\x32\xe1\x2a\x72\x7f\x55\x41\xd3\xd3\x4d\xf5\xfe\xf0\x11\x7d\x2e\xab\xb0\xd5\x78\x1d\x0d\xa4\x30\xc2\x95\x21\x47\xb5\x09\x24\xa7\xca\x02\x76\xc4\xbb\x49\x87\xf6\x89\x15\x6e\x26\x56\x20\xe0\x0c\x10\x90\x81\xc4\x98\xf6\xd0\x46\xa4\x6c\xd1\xa1\xcf\xb1\xad\xe5\x37\xf5\x8c\x01\x8d\x05\x2d\xc1\xc1\xd2\x46\xd2\xb6\xec\x02\x96\xd6\x28\x2a\x27\x6a\x97\x7f\x6e\x35\x0a\xd3\x02\xab\xed\x48\x70\xe4\x4c\x12\x21\x6d\x57\x05\x1d\x4e\xd7\xd5\xde\xbc\xa0\x11\x03\x25\x09\x8b\x8b\xfd\x6b\xcf\x11\x6a\x7e\x7f\xf6\xb3\x9f\xc1\xc4\x41\x59\x96\xc1\x3b\x61\x7d\x50\x01\x78\xf5\x7f\x25\x33\x4f\x01\x14\x20\x9a\x3c\x1a\x54\xf7\x6f\xec\x4e\xde\xc8\x34\x15\x4f\x1f\xf5\x3f\xbb\x39\xcb\x77\x32\x4d\xb9\x04\x26\x0e\x80\x88\xa6\xb9\x3e\x97\x4d\xb3\xbd\xe6\x40\x9e\x80\xae\x02\xb4\xc9\x28\x36\x86\x26\xd6\xb3\x4c\x8f\x6f\x6f\xcf\xde\x7a\xfb\xc2\xe4\xf5\x83\xf5\xf9\xdd\x4a\xf1\x98\x11\x80\x16\xfb\x17\x58\x5c\x7c\x19\x8d\xf0\x8f\x40\x0b\x90\xa0\x1f\x41\x33\x4e\x93\x8f\x00\x8b\x9b\x73\x41\x44\xf9\x5a\xa9\x8a\xed\xd3\x7c\xb8\x35\xcd\xb7\x36\x67\xd9\xb9\x8d\x59\xb6\x3b\x2c\xb3\x8b\x83\x4a\x3d\x91\xd7\xb4\x91\x31\x06\xc4\x94\x2b\x34\xf3\x0e\xe7\x4a\x8f\xca\x8c\x8f\xca\x5c\x3f\x2c\x33\x7d\x74\xd2\xaf\xf7\x1e\x0d\xea\xbd\x87\xc3\xf9\xe1\xa3\x41\x3d\x39\xed\xd5\xd3\x9a\x9c\x2b\xcf\xd6\xdf\xed\x4b\x23\xeb\x9b\x38\x05\x5c\x86\x58\xc1\x49\x29\x95\x9d\x0a\xe3\xed\xdb\xb7\x21\xe6\xf6\xb8\x7e\x30\x00\x21\x17\x7d\x92\x03\xc8\xf3\x9a\x8a\x33\xa7\xf9\xf0\xd2\xa8\xb8\xf8\xc4\xb8\xf8\xc4\x99\xd3\xec\xd3\x9b\xb3\xfc\x13\x6b\x95\xba\x92\xd7\x74\x8e\x98\x86\x04\x0c\x88\x2d\xc8\x31\x32\xd9\x82\x34\xca\x4a\x3d\xe5\xf1\xf9\x09\xef\xcf\x46\xfa\xde\x49\x51\xdf\x1a\x0d\xea\x1f\x3f\xd8\x28\x6f\xde\xdf\x2a\x3f\x3c\x18\x56\x23\xb3\xec\x3d\x47\x04\x52\x8d\xf5\xd1\xad\x9c\xdb\xda\xda\xc2\x1f\xfd\xd1\x1f\x2d\x33\x70\xa4\xfa\x2b\xee\xab\xae\xfe\x4b\x5d\x6b\xa0\xbd\x73\xee\x22\xad\x13\xd1\xb3\x96\x20\x33\x44\xda\xf5\x91\x1b\xad\xb4\x99\x9c\xab\xb5\x5d\x12\x2d\x99\x8c\xa0\xa6\x98\x31\x2e\x0c\x22\x72\xaa\x68\x92\x24\x2b\x18\x5d\xc8\xe1\x13\x7e\x62\xc9\x18\x84\x99\x9c\x00\x28\x6d\x57\x16\xb5\x27\x87\xa5\xaa\x78\xed\xda\x35\x65\x77\x2a\x4c\x84\x55\xc0\xc6\x32\x50\xb2\x32\xd0\x7c\x8c\x78\x8b\xc6\xc1\xe3\x86\x55\xc1\xc8\xaa\x21\x65\x29\x5a\x35\xef\x55\x2d\x3a\x5d\x69\xba\x82\xd3\x3c\x53\x96\x17\x9d\xd1\xf4\x74\x2b\xbb\x33\x1f\xd4\x7b\xbd\x69\xbd\x93\xd5\x3c\x0c\x37\x82\xb3\xab\x86\x12\xf0\x40\x8c\x45\xa9\x2d\x23\xb0\x59\xb6\x41\x86\x9d\xc3\x60\x5f\x86\xdb\x08\x18\x82\x13\x87\x71\x85\x32\xde\x00\x11\x93\x36\xa8\x6b\x54\x0e\x99\xf7\x01\xb8\x61\x21\x43\x9d\x3b\xc7\xbf\xf7\x13\x7f\xd9\x4d\x98\x07\x42\xf0\x23\x15\x15\x89\x7b\xec\x03\xab\x5c\x90\x11\xd4\xb1\xf5\x54\x56\xd8\xb9\x94\x08\x7a\xbe\xa6\xf6\x66\xeb\x6a\xaf\xee\xd1\x44\xce\x6f\x81\x77\xed\x38\xa1\x2c\x5d\x21\x9f\xf9\xcc\x67\xd4\x8f\x7f\xfc\xe3\xd6\x38\xb0\xee\x11\x31\xa9\xd3\xa6\xa9\xd0\xf0\xc4\x12\xde\x14\x6f\x05\x43\xae\x15\xf2\xfd\xf5\xf9\x9d\x1f\x5f\x38\xc9\xcb\x4c\x97\x57\x8e\x06\xcf\x6d\x9f\xe6\x17\x7b\x35\x0d\xe4\x12\x65\xcf\xb2\xec\xac\x1f\x12\xff\x4d\xbf\xc5\x26\x32\x0e\x2d\xc5\x64\xd0\x63\x6c\xe5\xae\x89\xab\x93\xbe\x3e\xbc\x73\x66\xf6\xd3\x1b\xbb\x93\xd7\xee\x6e\xcd\xde\x2b\x33\x3e\x02\x61\x42\xa0\x09\x8c\x9b\x88\x88\x4a\x66\x2e\x85\x80\x6f\xed\xe3\x22\x8e\x41\x48\x0a\x1e\x09\x02\xac\x55\x01\x6d\xfe\xd9\xf0\x54\x46\xbe\x5e\xaa\xc1\xb9\x49\x6f\xeb\x89\x71\xef\xd2\xce\x49\xf1\xa9\xad\x69\xfe\xf1\xe1\x5c\x5d\x2a\x2a\xda\xcd\x6b\x75\x2e\x63\x6c\x11\x53\x41\xe1\x24\x5d\x30\x50\x32\xf1\x44\x13\xa6\x5a\xf1\xa8\xcc\x78\xff\xa4\x57\xbf\x3f\x5a\xab\xde\x79\x38\xac\xde\x3d\x18\xce\x3f\x3c\x1c\xce\x0f\x0f\xd7\xab\xb1\xf9\xde\x95\xa9\x8b\xb3\x22\x59\xc5\xc0\x0a\x6c\x6b\x7d\x89\xbf\xfd\x82\xd0\xd9\x17\x57\xaf\x5e\xc5\xe7\x3f\xff\x79\x75\xf1\xe2\x45\xab\x80\x38\xcb\x13\xc2\xb6\xe4\x00\x72\xa5\x51\x6c\xce\xb2\x8d\xdd\xe3\x62\xf7\xd2\xa8\xff\xdc\xc5\x51\xf1\xc2\xd6\x2c\xff\x5c\x51\xd1\xe5\x4c\xd3\x36\x01\x43\x80\xf2\xd6\xa4\x76\x37\x36\x9a\xff\x8a\x31\x54\x4c\xdb\xb9\xc6\xa5\xfe\x5c\x7d\x6a\xa3\xcc\xbe\x78\xf6\x94\xbf\x74\x7e\xd2\x7b\xfb\x89\x93\xe2\x2f\xee\x6d\x96\x6f\xdd\xdf\x2c\x6f\x1f\x0e\xe7\xa3\x32\xe7\xa9\xa9\x43\x25\x78\x9a\x05\x32\x0a\x00\xae\x5d\xbb\x16\xbb\x06\x63\x5e\x9c\xba\x7e\x5c\x6b\x4c\x4b\xc9\x5f\x65\xcb\xff\xb8\xf0\x96\x39\xec\xfb\xdf\xff\x3e\xbe\xff\xfd\xef\x4b\xdf\x9c\xf3\xb3\x0a\x94\x06\xa0\xd9\xea\xdf\xba\x8b\x98\xb8\x02\x51\x21\x89\xcb\xf3\xc9\xd6\xfa\x81\x96\xa9\xd4\xe9\xa1\x11\x93\x03\x42\xe0\x13\x10\xaa\x61\xde\xe9\x32\x43\x8b\x76\xb0\x17\x8c\x50\x6b\x18\x8d\xc5\x25\xaf\xcd\x92\xe8\xc5\xd6\x08\x17\x3a\xb6\xfb\x5f\x26\x10\x3b\xfb\x3d\x0a\x5d\x83\x45\xbe\x4f\xe5\xdb\x95\x87\xbc\x8f\x9f\xa5\xf2\x58\x56\xbe\x4c\xfb\x38\x08\x3b\x4e\x17\xd7\x69\x95\x3a\xac\xd2\x37\x29\x0b\xd3\xa2\x3e\x6c\xb5\x4f\x02\x16\xf1\xe7\x36\xec\x22\xa2\xb2\x1c\xaa\xa3\xd9\xba\xba\x3d\x18\xeb\xab\xaa\xe6\xa1\x77\xbf\x78\xe4\xee\x47\xab\x18\x89\x46\xc8\x47\x06\x09\x04\xa3\xde\xb9\x5a\x9a\x38\x1e\x18\x00\x96\x79\xb5\x30\x7b\x64\xc9\x70\xa2\x5f\x32\xc0\x84\x52\xe0\xe8\x30\xf0\x51\x70\x0b\xe0\xbb\x72\x49\xe4\xd9\x32\xd7\xf8\xcd\xd6\xa4\x9b\xc3\xd3\x9c\x79\x27\x41\x8f\xf9\x47\xce\xc2\xc2\xc6\x68\x43\xae\x2a\x31\x43\xb0\x69\xea\x1c\x93\xd9\x50\xdd\x2b\xd7\xd4\x81\xce\x30\x15\xa6\x71\xbb\x59\x9c\x13\x5c\x10\xe0\x05\x00\x0c\x68\x69\x8d\x8d\x5e\xaf\xa7\x7e\xef\xf7\x7e\x0f\x32\x2e\xf9\x3d\x5d\x2a\x23\x98\x4a\xa9\x41\xdb\x89\x90\x55\x06\x75\x7f\xb3\x7c\xaf\x52\x5c\xcd\x7a\x7a\xfa\xcc\xe1\xe0\xb9\x73\x93\xde\xa5\x7e\xa5\x36\x94\x39\x13\xcd\x37\x48\xf4\xaf\xe8\x1e\xe9\x12\x92\xdf\xcb\x7f\x67\xdf\xbf\x36\x1e\x13\xeb\x79\xc6\xd3\xd1\xa0\xda\xff\x60\x7b\x76\xf3\xa7\x3b\x93\xb7\xee\x6f\xce\xdf\xab\x15\x1f\x31\x78\x42\xa0\x31\x33\x4f\x00\x38\xab\x8b\x00\x77\x72\xe9\x38\x80\xc0\xb2\xee\xfa\x0d\xf0\x7b\x80\x44\x3b\xb5\x76\xb9\x42\x72\x02\xe5\x45\x4d\x83\xf3\x27\xbd\xed\x27\x47\xfd\x2b\x17\x47\xc5\x73\xe7\x4e\xf3\x5f\x1c\x96\xd9\xa7\x8a\x5a\x5d\x52\x1a\xdb\x04\x0c\x00\x6f\x99\x92\xe3\xc4\xdf\x9b\x11\x58\x43\xf7\xe7\x5c\xae\xcf\xb2\xa3\xb3\xa7\xf9\xbd\x0b\xc7\xfa\xd6\x71\xbf\xbe\xb9\xb7\x51\xfe\xe8\x83\xb3\xb3\x9b\xfb\xeb\xe5\xde\xa4\xd0\x53\xdd\x8c\x03\xeb\xda\x8b\xdd\xbe\x80\xb0\xbe\x44\xc2\x7a\x11\x7f\x6a\xf1\x96\x67\x9e\x79\x46\xdd\xba\x75\x4b\x7f\xf3\x9b\xdf\x94\x96\x26\xe9\x2e\x53\xe4\x27\xcb\x16\xfd\x5a\x15\x3b\x27\xbd\x9d\xa7\x8f\x06\x9f\xb8\xf4\xa8\xff\xc2\xb9\x49\xfe\xfc\xda\x3c\x7b\x2e\xd3\xd8\x25\x50\x28\xc3\x63\xd0\x12\x68\x22\xc2\xfd\xda\xb8\x9c\x86\x4a\xd3\x30\xd3\xbc\x53\x54\xea\xea\xc6\x2c\x7b\xee\xdc\x49\xfe\xe6\xce\x49\xef\xd5\xf7\xb7\xa7\x6f\x7e\x78\xa6\xbc\x7d\xd2\xaf\xa7\x76\xdc\x9a\x71\x6c\xdb\x69\xff\xd4\xcb\x2f\xbf\x0c\x22\xc2\xe9\xe9\x29\x5e\x7f\xfd\x75\xfc\xe5\x5f\xfe\x65\x0a\x9c\x74\xf1\xec\x2e\xd9\xb7\x48\xe6\xa8\xcc\x3c\x74\x8a\x91\xb9\xb7\xd7\x81\x7c\x8f\x2a\x11\xd8\xd3\x04\x68\x21\x66\x26\x63\xee\xca\x00\x64\x44\xd4\x63\xe6\x82\x88\xfa\x20\x14\x9b\xd3\x6c\x7b\x77\x5c\x3c\x7b\x66\x9a\x3f\x9d\x35\x68\xd9\x10\x93\x41\xb8\xa6\xc8\xe6\x39\x07\x93\xee\x2c\xd3\x95\xc0\xc2\xc6\x83\x7c\x6e\x4d\xd7\x92\xd1\x89\x71\x2d\x59\x80\xdf\x8b\xc2\xbe\x97\xc2\xa2\xad\xdb\x80\x18\xb5\xe2\x93\x47\x83\xea\x83\xfd\x8d\xf9\xad\x93\xbe\x3e\x42\x63\x42\x9d\x01\x98\xc3\x7f\x24\x96\x7d\x95\xe7\x39\xdd\xb9\x73\x27\x50\x82\x90\x16\x8e\x8c\x74\xe0\xc4\x3b\x25\x9e\xa7\xae\xe3\xb4\xa9\x3c\x64\x1c\x19\x28\xf1\xac\x2b\x8f\xb8\xac\x65\xf5\x8f\x99\xff\xa2\xf4\x32\x5d\xaa\x4e\x71\x1c\x7b\xaf\x3a\x9e\xa7\xd2\xda\x5f\x9b\xff\xa2\x76\x07\xef\x9e\x7f\xfe\x79\x32\x81\xd1\x30\x1d\x32\x65\x67\xe4\x57\x01\xf4\x00\x14\x4c\xc8\xf2\x92\x37\xfa\x27\xfa\x52\x5e\xe2\x0c\x00\xe5\xb6\xf1\x70\xc2\x55\x0e\x3c\xab\x9d\x02\x24\x77\x21\x23\x16\x38\x81\xbc\x95\x41\xd0\x0f\x9b\xb1\x6c\xf7\xfd\xb0\x04\x10\x00\x71\x01\xe4\x03\x0b\x88\x79\xee\x48\x29\xe8\x09\x2b\x04\xfd\x8b\x56\xdd\xcd\x3b\x16\x37\xe1\xa6\x90\x70\x60\xa6\xd9\xfb\x85\x02\x0b\x01\x02\x00\x22\x80\x9c\xd8\xf2\x95\x38\xcc\x1f\x9e\x29\x8b\x4d\x86\xd9\x4b\x70\x53\x9f\x72\x4d\x7d\x38\xda\xcd\x5f\x9b\x6c\x67\xef\xd5\x39\x3d\x22\xa2\x53\x22\x3a\x65\xe6\x99\xb1\x8c\x54\xcc\x3c\x27\xa2\xda\x7c\x53\x26\x22\x16\xd6\x84\xd6\x18\xd2\x5a\xf3\x6b\xaf\xbd\xc6\xcf\x3f\xff\x3c\x29\xa5\x40\x44\x24\x34\x76\x77\x2d\xbb\x92\xec\x83\xc6\xca\x46\xa7\x85\x9e\x9d\x14\xfa\xb4\xcc\xf9\x14\x00\x14\x53\x96\x69\xca\x1b\x77\xba\xb3\x8f\x85\x3b\x8c\x0b\x9e\x15\xf0\xc3\x00\xb4\x09\xc6\xc7\xcd\xb7\xad\x32\x2e\x4f\x0a\x7d\xf4\x60\xa3\xfc\xe0\xd6\xf9\xe9\x8f\x7f\xfa\xc4\xe9\x5f\xee\x6d\xce\x3f\xd0\x0a\xc7\x0c\x3e\x21\xa2\x63\x00\x27\x00\x4e\x89\x68\x02\x60\x66\xfa\x67\x0e\x60\x6e\x84\xb9\xed\x1f\x10\x11\x5f\xbf\x7e\x5d\xef\xec\xec\xa8\xc9\x64\x12\xf0\x9f\x2f\x7c\xe1\x0b\xf4\xed\x6f\x7f\xdb\x7c\x0e\x96\xae\x10\x2b\xa0\x33\x22\xea\x11\x51\x2f\x63\xea\x6f\x94\xd9\xd6\x53\x8f\xfa\x97\x3f\x73\x7f\xfd\x97\x9e\x3d\x58\xfb\x8d\x9d\x93\xe2\x9b\xeb\x65\xf6\xa5\xa2\xa6\x8f\x29\xa6\x33\x0a\x54\x10\xec\x21\xb7\x76\x38\xc8\x39\x51\x1c\x2a\xa8\x0c\x22\xa2\x3c\x03\x6d\xe4\x5a\xed\xf6\x2b\xf5\xcc\x7a\x99\x5d\xdd\x9e\xe6\x4f\x9e\x39\xcd\x87\x19\x53\xcd\x84\xaa\xcc\xb9\xd6\xca\x88\xf7\x46\xe1\x66\x61\x71\x91\xdf\x92\xbf\xf4\xa5\x2f\xd1\xab\xaf\xbe\x9a\xe2\x09\x29\xbe\x11\xc8\xcc\x47\x8f\x1e\xb1\x9c\x90\x2c\x81\x1c\xfc\x8a\xa1\x1e\x80\xfe\xa0\xca\xd6\x2e\x8d\xfa\x97\x3f\xb5\x37\xfc\xf2\xc7\x0e\xd7\xbe\x75\x7e\xd2\xfb\xc6\x60\xae\x3e\xab\x98\xce\x12\xc2\xfd\x6b\x64\xc1\xce\xcb\xe0\x91\xab\xe0\x0d\x32\x3e\xa3\xe9\x4b\x1a\xf6\x34\xed\x0e\xe6\xea\xf2\xe6\x2c\x7b\x72\xa3\xcc\x0a\x02\xcd\x66\xb9\x3e\x9d\x15\x3c\x37\xc3\x95\x4d\x3f\x48\x1e\xcc\xf6\xfe\x9f\xfe\xd3\x7f\xaa\xf7\xf6\xf6\xe2\xf6\xa6\x64\x1c\x10\xca\x27\x25\xe2\xa6\x70\x88\xcd\xc3\xe5\x9d\x25\x32\x5e\xc4\xd8\x53\xef\x15\x00\x7e\xf5\xd5\x57\xf9\x85\x17\x5e\x20\xd3\x40\x32\x83\xd2\x32\x70\xc7\xb8\x01\x0c\x36\xca\xec\xec\x13\xe3\xe2\xea\xf6\x69\xef\xe9\x9c\x69\x60\x33\x6d\x31\x3e\xdb\xad\xce\x07\xe9\x95\xba\x08\x57\xc2\x73\xa6\xe6\x63\x59\x1e\x11\xe8\x28\x96\x76\x6d\x0f\x39\x66\xe2\xf3\xb7\x11\x49\xc4\x0b\xa0\x92\x21\x88\x5a\x61\x76\x3c\xa8\x6e\x3f\x58\x9f\xbf\x7b\x3c\xa8\x2d\x70\x91\xfe\xdf\x1a\x1e\xc0\x10\x00\xfe\x77\xff\xee\xdf\xc5\x28\x7c\x59\x5f\xaf\x12\xba\xbe\xcd\xe3\xe6\xb3\x28\xef\x45\x60\xaa\x2b\x2c\x4b\xf3\x51\xeb\xf7\x38\xe9\x56\x89\x9b\x02\x78\xf1\xbb\x14\x91\xb9\xf0\xa5\x2f\x7d\xa9\xa1\x68\x21\x8b\xe0\x15\x02\xab\x1c\x34\x4b\x31\x15\xe5\xc4\x9c\x15\x13\x7e\xa2\x98\xea\xf3\x4a\x63\xd0\x30\x46\xc3\x20\x85\x65\x42\xca\x1b\x3f\x9e\xad\xd0\xb6\xfb\xa6\x84\xf6\x19\x38\x00\xee\xa5\xba\xb7\xd6\x18\x7a\x60\x84\xe5\x98\x66\x93\x00\x35\x31\x8b\x0b\x80\xbd\x75\xab\x8a\x0a\x12\x79\x10\x65\x15\x04\xb6\x35\x36\xc0\xc1\xc6\x21\x43\xa0\xa6\xc3\x5a\xf4\x69\xe9\xdc\x2a\x29\x36\x27\x17\x5f\xbc\x77\xf1\x25\x6f\x10\x96\x9d\x86\x7f\x34\x7d\xc1\x44\x60\x85\x72\xb2\x9d\xfd\xe8\xd1\x85\xde\x1b\xe5\xba\xda\x63\xc2\x09\x11\x9d\xa2\x11\xd0\x53\x34\xca\x47\x05\x60\x6e\x84\x72\x6d\xbe\x29\x5f\xb9\x72\x85\xde\x7e\xfb\xed\x85\x63\xca\x82\x17\x22\x62\x61\x81\xb0\xc2\x3d\xfc\x54\xfe\x19\x01\xd0\x0c\xe6\x59\x8f\xcb\x51\xbf\x1e\x9f\xf4\xeb\x51\x99\xf1\xa9\x26\xd4\x19\x53\x66\xe6\x02\x2a\x8f\x27\x3d\x70\xf4\xdc\x9d\x7c\x1f\x03\x7e\x75\x91\x91\x33\x9a\xa0\x2b\xc5\xf3\xd3\x42\x1f\x1f\xac\xcf\xef\x7e\x70\x76\x7a\xf3\xdd\x9d\xe9\x8f\xde\x3b\x37\xbd\xf9\x70\x58\xdd\x07\xe1\x18\xc0\x31\x11\x9d\xa0\x01\x2d\x27\x00\x26\x00\x66\x44\x34\x33\x7d\x32\x37\x7d\x62\x5d\x06\xd6\xca\x88\x57\x5f\x7d\x95\x27\x93\x89\x64\x9d\x0c\x00\x16\xb4\x40\x80\x7a\x0b\x5a\xd0\x58\x59\x7a\x00\x7a\x79\x4d\x6b\x67\x4f\x7b\xe7\xae\x1e\x0e\x3e\xf5\x99\xfb\xeb\x5f\x7b\x72\xd4\xff\xad\xf5\x32\xfb\x1b\x3d\xa6\xcb\x04\x1a\x04\xe0\xcd\x66\x0e\xcf\xc3\x25\x4f\x6f\xc6\x2b\xfb\xf1\x02\x8f\xb7\x89\xa9\xa7\x80\xed\x5e\xad\xae\xac\x97\xd9\x95\xed\x69\xef\xec\x7a\x99\x61\x9e\xf1\xe9\x2c\xd7\x65\x6d\xa5\xa2\x10\xca\xd1\xb7\x24\x22\xe2\x17\x5e\x78\xc1\x82\x17\x1b\xba\x8c\x00\xc1\x98\x11\x4b\x9d\x9d\xa5\x85\xc2\x55\x54\x3d\x30\x8a\xc1\x5c\x0d\x2f\x8f\xfa\x4f\x3f\xb7\xb7\xfe\xd5\xa7\x1f\xf5\xbf\xbd\x39\xcb\x5f\xec\x69\x7a\x12\xc6\xd2\xe4\x3c\x0e\x02\x94\x90\xe3\x1d\x1e\xb4\x04\x8a\x4a\xd0\x47\x62\xdc\x70\x53\x0f\x05\xac\xe7\xb5\xda\x1d\x56\xd9\xa5\xad\x59\x3e\x2c\x6a\x35\x3d\xee\xd7\xe3\x69\xae\x4b\x27\x26\x4d\x5e\x16\xd8\xd9\x36\x8a\xfe\x58\xc6\x4f\x21\xfa\x49\x2a\xb0\x94\x78\x1f\xe7\x41\x00\x38\x4b\x74\xf2\x2a\x21\x65\x95\xc1\x0b\x2f\xbc\x40\xdc\x38\xba\x89\xbc\x49\x34\x63\xe6\x1e\x35\x6b\xe8\xfb\x44\x54\x0c\xe7\xd9\x99\x27\xc6\xbd\x8f\x9d\x3d\xcd\x9f\xce\xb5\x1a\x5a\xca\x0d\x26\x0f\x3a\x45\x49\x70\xa8\x08\xb4\x58\x8d\x43\xba\x7a\x9a\x7c\xec\xb5\xf9\xb4\x42\x43\x81\xcf\x2d\x30\xbf\x3b\xe6\x2c\xca\xf6\xbf\x26\x06\x59\x5f\x3a\x50\x2b\x2e\x4f\xfa\xfa\xde\xfe\xfa\xfc\x9d\xa3\xb5\xf9\x21\x1a\x1f\xf0\x1c\x1e\xbc\x58\xe0\x62\xab\xca\x62\x90\xcb\x3e\x97\x1f\x28\xee\xdb\xf8\x3e\xf5\x8d\xba\x84\xab\x1c\x18\x71\x19\xa9\xf4\x5d\xf9\xdb\xfa\xc6\xe5\xc8\x5f\x12\x7f\xa9\x81\x19\xd7\xab\xeb\xdd\xa2\x7e\x49\xd5\xaf\xab\xbe\xcb\xfa\x70\x51\x3d\x17\x59\x1c\x63\x97\x13\xff\xda\xaf\xfd\x9a\xfa\xd7\xff\xfa\x5f\xeb\x2f\x7d\xe9\x4b\x76\xdc\x5b\xc6\x1c\xd0\x00\x2c\x53\x22\xf4\xb4\x42\xd6\x2b\x79\xb3\x3f\xe1\xdd\x7c\xce\x67\x24\x0e\x27\x23\xd8\xad\xa8\xb6\xbb\xe4\x3a\x01\x6c\xc6\xb3\x9d\xec\x1a\xee\xeb\x46\x4e\x03\x77\x20\x45\x02\x73\x00\x81\xb5\xc4\x02\x71\x0b\x26\xe0\xa4\xa2\x68\xbe\x60\x6f\x82\x3c\x25\xbd\x5a\xd6\xe5\x98\x27\xf9\x94\x96\xb9\x3a\x00\xc6\x22\x67\xd9\x00\x8a\x18\xac\x05\x27\xe0\x00\xb0\xb8\xd4\xd2\x72\xc4\x2e\x96\x11\xe6\xbe\x02\xce\x29\x6c\xea\x36\xef\xd3\x83\xd1\x6e\xfe\xea\xf1\x4e\xf6\x8e\x2e\xd4\x11\x11\x9d\x18\x77\x88\x75\x85\x94\xc6\x24\x5e\xa3\xa1\x61\x83\x49\xc1\xff\xe2\x5f\xfc\x0b\xf9\xed\x93\x74\xfb\x5b\xbf\xf5\x5b\xea\x3b\xdf\xf9\x8e\xb6\xe0\x45\xb8\xcc\x03\xd0\x62\x98\xbe\x64\x65\x36\x2f\x5d\x65\x3c\x3f\xee\xd7\x93\xc3\xe1\xfc\xe1\x71\xbf\x3e\x2a\x33\x9e\xd4\x0a\x35\x53\x5b\xc1\x14\xd8\xb6\x55\x25\x26\x68\x56\xe0\x5a\xf1\xbc\xcc\x78\x76\xd2\xaf\x47\x0f\x87\xd5\xdd\xdb\x67\x66\xef\xbc\xbb\x33\xfd\xd1\x3b\x3b\xa7\x37\xee\x6d\x95\x1f\xcc\x7a\xfc\x88\x99\x8f\x01\x9c\x10\xd1\x18\x0d\x60\x19\x9b\x49\xc4\xa7\x30\xd6\x64\x03\x56\x6c\xbf\xd4\xc6\xea\xc2\x00\x70\x78\x78\x88\xb7\xde\x7a\xcb\xb6\x43\x01\xd0\x5f\xfe\xf2\x97\x95\x04\x2d\x72\xf5\x90\x00\x2d\x39\x33\x17\x3d\xad\xd6\x9e\x18\xf7\x9e\x78\x6e\x6f\xfd\x0b\x9f\x7a\x30\xfc\x3b\xe7\x26\xbd\x6f\xf5\xab\xec\x33\x04\xea\x37\xdf\xae\x19\x2b\xd2\x82\x00\x41\x2b\x4e\x5e\x08\xcb\x92\x14\xd6\xb6\x7b\xe4\xd9\x4d\x0a\x94\x65\x4c\xe7\x06\x73\xf5\xb1\xcd\x32\xbb\xb0\x51\x66\xba\xcc\xf5\xc9\xb4\x93\x3d\x4b\xda\x00\x00\x20\x00\x49\x44\x41\x54\xa7\x67\x55\xc6\x15\x84\xa5\x45\x08\x69\x98\xef\xea\xc0\xcb\x68\x34\xa2\xc3\xc3\x43\x5b\x98\x0e\x4b\x0c\xf9\xa2\xd8\xaf\x46\x4e\xc8\x95\xfd\x51\x00\x28\xfa\x95\x1a\x5e\x7d\x38\xb8\xfa\xd9\xfb\xeb\xbf\x7a\x69\xd4\xff\xf6\x70\x9e\x7d\x5e\x31\x6d\x5a\x41\x46\x62\xfe\x99\xe7\x17\x70\x0a\x89\x79\x01\x0f\xe9\x20\xad\x46\x2e\xbe\x07\x3e\x96\x67\x10\x08\x94\x67\x1a\x67\x07\x95\xba\xbc\x39\xcd\xcf\x0c\x6a\x75\xb4\xbf\x31\x7f\x38\xcf\xb8\xb6\xe6\x3d\x31\x81\xd9\xf5\x8b\xb5\x44\x59\x00\xa3\x94\x52\x22\xa2\xf3\xc8\x98\xbf\x78\x7e\xa2\x1c\x3b\x8c\x44\xdf\x89\x3c\x38\x13\x0f\x52\x44\xb9\x4c\x90\x11\x00\x7e\xf1\xc5\x17\xd5\xed\xdb\xb7\xf9\x85\x17\x5e\x20\x1b\x84\xaf\x2e\x33\xd6\x16\x6b\x02\x1b\xac\xcd\xd5\xe6\x13\x27\xc5\x33\xe7\x26\xbd\xab\x85\xa6\x75\xc9\x58\x43\x50\x01\xf1\x04\x08\x78\xaa\xfb\x50\x61\x3a\xb9\xdc\xd3\x33\x32\x08\x20\x24\xd9\xb1\x2c\x57\x3c\xb1\x79\xca\xca\x90\xcf\x8b\x09\x60\xe2\x6a\x52\xe8\xfb\xfb\xeb\xf3\x77\x1f\xae\x57\xf7\xa9\x31\x31\x5b\x6d\xad\x86\x9f\xc4\x64\x3f\x08\xbf\xfa\xea\xab\xdc\xef\xf7\x55\x5d\xd7\x52\x30\xc6\xfd\xbb\xe8\x7e\xd1\xb7\x88\x99\x9a\x14\xba\x81\xb0\x7d\xcc\xfc\xe3\x77\xa9\x5f\xf9\x17\xc7\x8f\x41\x42\x60\xf2\x4b\xc4\x5f\xd5\x1a\xb5\x68\x1e\x4d\xfc\x3c\xae\x57\xaa\x9e\xb2\x4e\x31\x88\x89\xdb\xec\xae\xdf\x7d\xf7\x5d\xfe\xf6\xb7\xbf\xad\x36\x37\x37\xa5\xf6\x6c\xaf\x2d\x68\xb1\x00\xbe\xd9\xbd\x32\x23\x45\x8c\xbc\x38\xe5\x73\xbd\xa9\x3e\x47\x9a\xfb\x8e\x89\xc0\x8f\x53\x58\xa0\xec\x84\xb6\x90\xfe\xd6\xb2\x68\x2a\xd3\xa4\xf7\x62\xac\xe9\x74\xf3\xdf\x31\x16\x0b\xc4\xc9\x30\x7d\xd3\x0c\x7b\xe2\x73\x20\xec\xad\x85\xc5\x32\xca\xd6\x5a\x27\x6f\xd9\xf0\x59\x1a\x10\xe1\x69\xc7\x09\x16\x7b\x16\x8f\x7b\x0e\x5b\x98\xa8\x42\x7b\x1b\x83\x06\x30\x85\x2b\x9f\x58\x30\x6c\x07\x50\x1a\x55\x3a\xcc\xc7\x12\xb1\xab\x03\xf4\xe9\x99\xec\xc7\x0f\x2f\xf5\x5e\x2b\xd7\xd5\x7d\x56\x8d\x90\x26\xa2\xa9\xf9\x9b\xa1\x11\xd0\x73\x66\x76\x6e\x22\x98\xf9\x1b\x91\xe2\x91\x1c\x8b\x37\x6e\xdc\x60\xa0\xb1\xbc\x58\x7e\xe8\x87\x43\x98\x4e\x08\x44\x6d\xe2\xd4\x64\x8f\x0b\x20\xd4\xf3\x9c\xe7\xa3\xb5\x6a\xb4\xbf\x31\x3f\x7c\xb4\x56\xed\x8d\x06\xf5\xe1\x69\xa1\x4f\xe6\x99\x9e\xd6\x8a\xcb\x3a\x43\xad\x09\x73\xad\xb8\xd6\x04\xd6\xc4\xac\x09\x55\xa5\x78\x3e\xcf\x79\x3a\xeb\xe9\xd3\x71\xa1\x1f\x3d\x1c\x56\xf7\xef\x6e\x95\xb7\xde\x3f\x3b\xbb\xf9\xee\xf9\xd3\x1f\xbf\xb3\x73\x7a\xf3\xde\x56\x79\x7b\x5a\xf0\x43\x34\x56\x96\x13\x22\x3a\x31\x96\x96\x09\x33\x8f\xa9\xb1\x3e\x4d\xc8\x6c\x9e\x67\x94\x32\x3b\x57\xcb\xf1\x35\xb3\x3c\x9c\xfe\xfd\xbf\xff\xf7\x98\xcd\x66\x0c\x00\x45\x51\x50\x5d\xd7\x2c\xdc\x43\x52\x58\x3b\x21\x6d\x56\xcd\x14\x19\xd3\x60\x77\x5c\xec\x3e\xb7\xb7\xfe\xe5\x8f\x1f\xac\xfd\xdd\xad\x59\xfe\xf5\x9c\xd5\x45\xf2\xc6\x76\xff\xbd\xed\x58\x17\x56\x41\x3b\xf7\xc9\x0e\x07\x2b\x82\x19\x12\xa4\x7b\x9a\xb2\xd7\x76\xbc\x2b\x50\x91\x6b\xf5\xe4\xda\x5c\x3d\xb9\x39\xcb\x51\x65\x78\x34\xe9\xe9\xc9\x3c\x63\xed\x89\x24\x9c\xc3\x63\xc6\x06\x31\x33\xdf\xbd\x7b\x17\xe6\x54\xe5\x14\x6f\x65\x00\x3c\x1c\x0e\xd5\x7c\x3e\x67\xa3\xe0\x98\x2c\x28\xd8\x54\x0e\x40\x01\x46\x41\xc0\xe0\xe9\xa3\xfe\x53\x9f\xff\x70\xe3\x37\x2f\x1e\x17\xff\x7b\xbf\x52\x9f\x56\xa0\x41\x28\x1b\xbd\xe0\xb3\xc0\xcd\xcb\x39\x0a\x2d\x99\x08\x95\x02\x11\xd5\xf5\x65\x28\x11\x0d\xd5\x31\xad\x17\x35\x3d\xb5\x31\xcb\xb6\x32\xc6\xbd\xc3\xe1\xfc\xb8\xca\x78\x6e\xe8\x8d\xcd\x58\x75\x80\x5b\x22\x75\x03\x5e\x62\x50\x22\xff\x24\x9f\x8e\x79\xbf\xac\x66\xd2\x4b\x91\x5a\x0e\x9d\x9a\x54\x94\x9a\x29\x2c\xe3\xa6\x26\xe6\xb6\x8e\x88\xb7\x69\x34\x71\x55\x29\x6d\xb6\xfd\xf7\x93\x09\x1d\xb3\x31\x55\x8e\x19\xa5\x67\xbc\xf1\x0b\x7b\x1f\x7e\x92\x20\x1a\x99\x8f\x27\x60\x8d\xf7\xcb\xb7\x3f\x66\x5c\x84\x6c\x1b\x11\x41\x31\x15\x45\xad\x86\x85\x56\x03\x02\x94\x16\xa6\x3f\xe1\xb3\x6c\xa5\x7f\xf1\xc5\x17\xf1\xdd\xef\x7e\x37\x91\x33\x80\x6e\x61\xfc\x51\xc3\x5f\x65\x7e\x1f\x35\xaf\xae\x89\x58\x5d\xe3\x6c\x59\x19\xcb\xe2\xfd\x3c\xed\x8d\x27\x8f\xad\x94\xd7\x7f\xf8\x0f\xff\xc1\xee\xc3\x20\x8f\xbe\x90\x93\x73\x35\x9a\xc9\x9f\x8d\x3b\x91\x50\xce\xd6\xd5\x83\xd3\x33\xea\xd6\xda\xb1\xba\x92\x55\x7a\x0b\x80\x03\x24\xed\xf1\x2f\xc1\x05\x1b\x59\xdc\x3c\x0b\xe7\x8b\x88\x34\x06\x98\x30\xfb\x34\xde\x8f\x60\x0b\xb0\x68\xde\xe4\x8f\xc4\x0a\x25\x0b\x5e\x60\x28\x4a\x10\xa9\xdd\x6d\xba\xa1\x5f\x72\x8b\x93\x24\xe5\xc9\x49\xa1\x2e\x0f\x5b\x31\xc1\x80\xc5\x4e\x33\xbe\x5d\x16\x70\xb8\xba\x78\xa4\x16\xda\x2f\x7c\x8d\x7d\x9d\xfd\x53\x9b\x47\xd5\xa3\xa3\x93\x33\xea\xa7\xa7\x9b\xd9\x03\xdd\x6c\x3a\x67\xad\x2b\xd2\xcd\x0b\x84\x13\x33\x41\xd4\x9a\x8c\xb9\x2c\xc8\xb1\xd0\x9a\xb4\x2a\x26\x39\x02\x7e\xf2\x2f\xc8\xbb\x5f\xdc\xd8\xd1\xe0\xf2\xb4\xd0\xe5\xfb\xbd\xe9\xa3\x0f\xce\xce\xee\xac\x95\x6a\x73\xfb\x34\xdf\x3a\x33\xcd\xb7\xd7\xcb\x6c\xa3\xa8\x68\x50\xd4\xaa\x28\x6a\x35\xc8\x34\x72\x4d\xd0\xf3\x8c\xa7\x65\xae\xcb\x52\xe9\xf2\xa4\xa8\x47\x8f\xd6\xea\xd1\xd1\xda\xfc\x68\x9a\xeb\x49\xad\x70\xca\xe0\xa9\x01\x26\xf2\x6f\x62\xff\x4c\x7f\x4c\xc8\xaf\x22\x2a\xe5\xa4\x65\x5b\x3f\xdb\x06\x31\xf7\x07\x00\x54\x59\x96\xc1\xbe\x24\x26\x9e\xb4\x2c\x28\x08\x41\x7d\xfe\xa4\x77\xee\x53\x0f\x86\xcf\x7f\xec\x60\xf0\x7f\x6c\x94\xd9\x4b\x66\x49\x6f\xb4\xb5\x45\xb0\x36\x34\xe4\xd3\xc2\x12\xee\xe2\x3a\x00\x2b\x41\x78\xf4\x95\x04\xd8\x26\x42\xde\xaf\xb2\xcf\xee\x1e\xd3\x46\xae\x69\x2b\xd7\xf4\x7f\xff\x74\x67\xf2\xf6\x49\xa1\xc7\x16\x18\xa3\x19\x23\xd2\x0a\xa3\x89\x08\x2f\xbd\xf4\x12\xde\x7c\xf3\xcd\xe0\xdb\xc7\x63\x61\x32\x99\xe8\xc8\x45\x14\xfc\x31\x73\x4e\x68\x14\xfb\xad\x69\xbe\xf5\xb9\xbb\xeb\x5f\xdf\x1d\xf7\xbe\xdd\xaf\xd4\xb3\x60\xca\x17\xc9\xa8\x40\x86\x45\x6d\x74\x71\x84\x72\x12\x58\x44\x85\x5b\x55\x3e\xb7\xf7\x8a\xb1\xb1\x31\xcb\xfe\xd6\x27\x1f\xac\x4f\xe7\x19\x7f\xe7\x47\x17\x4e\xde\x9e\x14\x7a\xe4\x79\x11\x01\x66\xe5\x9c\x19\x13\xae\xfd\x9b\x9b\x9b\xea\xf8\xf8\xf8\x71\xe8\xa6\x0b\x6f\x00\x91\xbc\xb0\x16\x97\x45\xda\x6d\x97\xb6\xe9\xee\x6f\xdf\xbe\x6d\xfd\xba\x40\x83\x24\xad\xa6\x61\xb5\x4d\x3b\xbf\xa5\x07\xa0\x28\x6a\xb5\x79\x7e\xd2\xbb\xbc\x73\x52\x3c\x53\xd4\x6a\xdb\x76\xbc\x03\x91\x11\x68\x71\xcc\x4b\x7c\x1c\xff\x41\x24\x3f\x0b\xd8\xa3\xe7\x69\x42\xa3\x03\x04\x00\x92\x65\x06\xf9\xf8\x8f\x17\xcf\xa7\x11\x0c\x87\xca\x9c\x1f\x1e\x6c\x54\xef\xec\xaf\xcf\x3f\x64\x85\x29\x9a\x89\xb9\x33\xf2\xcb\xc6\x98\x9a\x99\xf7\x6c\xcd\x8a\x07\x07\x07\xb8\x75\xeb\x96\x44\x98\xb2\x5f\xed\x78\x7c\x1c\x57\x49\x8c\x4a\x6d\xcb\x62\xad\x50\xe6\x9f\xca\x6f\x91\xab\xd0\x99\xe8\x44\xbc\x55\x5d\x5a\xcb\xca\xb0\x79\x21\xf1\x2e\x55\x86\x6c\x47\xca\x5d\xd5\x55\xa7\x45\x79\xca\xfa\xa5\xbe\xc1\xb2\xbe\xe1\x57\x5f\x7d\xd5\xd2\x40\x33\x9c\x3c\x51\xcb\x09\xf0\xb9\xd5\x38\x75\x46\x04\x50\x5e\x4c\xf5\x56\x31\xd5\xe7\x14\xa3\x0f\x50\x20\x90\xfd\x3c\x0e\x29\xb0\x85\x25\xc4\x6a\x51\xce\xea\x41\x2d\x81\x6e\xb5\x2f\x3f\xfa\xe1\xb9\x5b\x60\x45\xa1\x28\x6f\x48\xa9\x21\x32\x25\x57\x27\x6f\x88\x26\xf7\x9a\x22\x09\x41\x96\xee\x1c\xa7\x14\x19\x3a\x15\x59\xa4\xb1\xd6\x20\xf3\x5e\x1e\x0c\xe8\x94\x8f\x2e\xee\x6c\xaf\x4d\x7e\x0d\x36\x32\xd7\x04\x3d\x3d\x93\xbd\x75\xf0\x74\xef\x7f\x94\x6b\xea\x01\x14\x1d\x1b\xcb\xc2\x09\x33\xcf\xe0\x97\xfb\xce\xe1\x81\x4b\xdd\x74\x2b\xe1\x83\x0f\x3e\xa0\x93\x93\x93\x78\x6c\xa4\xe8\xcc\x31\x5c\x3b\xdf\xc5\xb5\xdc\x5b\x58\x6c\xdc\xda\x28\xa9\x6c\xde\xd7\xcc\x5c\xa3\x01\xb9\xd6\x6a\x6b\x81\x55\x45\x44\xb3\x2a\xe3\xd9\x71\xbf\x1a\x1d\x6c\x54\xfb\x1f\x6e\xcd\xee\xdd\xd9\x2e\xef\xde\xde\x9e\xdd\xb9\xbd\x3d\x7b\xef\xfd\xb3\xd3\xf7\xdf\x3b\x3b\xfd\xd9\xad\xf3\xd3\x5b\xef\x9d\x3d\x7d\xef\xce\x76\xf9\xde\x83\xcd\xf9\xdd\x51\xbf\x3a\x9c\xe7\x78\xc4\x0a\xc7\x20\x4c\x88\x9a\xd5\x42\xa6\xed\xc7\x68\x40\xca\x18\x0d\x70\x39\x85\x01\x33\x76\x32\x2e\x37\xab\x6d\xdc\xbc\x16\x33\xb6\x99\x99\xf1\xda\x6b\xaf\xc5\xb4\x4d\x2f\xbd\xf4\x12\x3d\xf1\xc4\x13\x56\xb8\x53\x24\xa8\x33\xf8\x1d\x6c\x07\xe7\x27\xbd\xb3\xbf\x70\x6f\xfd\xc5\x67\x0f\xd6\xfe\xcf\x8d\x32\xfb\x8a\x62\x5a\x6f\x3a\xb5\x6d\x21\x08\xc6\x86\x97\xbc\x86\x06\xe4\x70\x90\x13\x95\xa9\x2d\xac\xc5\xc7\x73\x69\xcc\x4d\xce\x74\xa6\x5f\xa9\x8b\x6b\xf3\x4c\xcd\x33\x7e\xf0\x68\xad\x1a\xd5\x2a\x00\x97\xf6\xe0\x4d\x6b\x6d\x60\x66\xc6\x0b\x2f\xbc\x40\xbd\x5e\x8f\xee\xdc\xb9\xe3\x46\xa1\x1c\x0b\x72\x19\xb8\x95\x8d\xc6\x2b\x51\x90\x99\xff\x49\xa0\x7e\xce\xb4\xfe\xb7\xde\x3d\xf3\xd5\xcb\x47\x83\xff\xab\x5f\xa9\x8f\x13\xa8\x47\x24\x15\x80\xb6\x8c\x72\xe4\x27\x57\x15\x46\x32\x54\x26\x92\xe9\x2c\xcd\x3b\x39\x68\x5f\x39\x90\x43\x20\x50\xaf\xa8\xe9\xf2\xc6\x2c\xef\x57\x19\xef\x1d\xf7\xab\xe3\x32\xd3\x76\xd3\x3e\x36\x6d\xb2\xb9\x3a\x7a\xf8\xfe\xf7\xbf\x9f\x9a\xac\xdd\xe5\x0a\x52\x88\x9a\x16\xbd\x97\x2d\x69\x1f\xa2\x14\x85\xae\xf7\x4a\xfe\x66\x59\xa6\x24\xea\x66\xb6\x5b\x8b\x73\x52\x93\xae\x94\x2e\x67\x99\x9e\x54\x19\x4f\x03\x50\xb0\xe0\x3a\xd5\x22\xd9\xe1\x48\xb4\x0e\xf2\x39\xb7\xdf\xc9\x7c\xe3\x33\xe0\x6c\x92\x88\x45\xba\xf6\x11\xa0\x32\xc6\xa0\x3f\xa7\x8d\xa2\xa6\x02\x08\xb6\x8d\x16\x02\xc3\x0b\x82\x84\xd6\xd6\x75\xdf\x65\x51\x58\x94\x5e\xf6\xf3\xaa\x2e\x94\x55\x96\xa5\xc9\xf7\x32\x8f\x55\xf3\x5a\x05\x71\xc7\xcb\x07\xbb\xd2\xc6\xed\x8b\xfb\x6b\x59\xff\x76\xe5\x99\xaa\x47\x9c\xbf\x0c\xc9\x3a\x4a\x2d\xda\x30\x37\x20\xdc\xc4\xc9\x6a\xf5\x25\x80\xe9\x6c\x9d\xee\x8f\xcf\x67\x3f\x9d\xae\xab\x0f\x99\xa0\xd9\x18\x34\xdc\x81\x3c\x6d\x5e\x60\x4b\x82\xb7\x58\xd8\x6d\xff\xd9\xb0\x2c\x76\x83\x56\xb8\xa1\x7d\xbc\x66\xbb\x5a\xef\x06\x07\x1a\xd7\x0b\xc9\xb8\xf6\xca\xe7\x0d\xa3\xbb\x26\x09\xc2\xd5\xca\x03\x06\x57\x9e\xd8\xcc\xd1\x55\xdd\xc6\x76\xed\x25\x51\x57\x5b\xef\x26\xa2\x3d\xe5\xda\x56\x8d\x7c\x06\x2e\xae\xc4\x42\x2d\x0d\xdb\x58\xbf\xaa\x3e\xed\x3f\xda\xc9\xde\x9c\x9c\xc9\xee\xb3\xc2\x04\xe1\x7c\x96\x92\xfc\xce\xa0\x72\xe7\x5c\x77\x06\x9b\x71\x05\xc4\xfc\x6c\xe9\xd8\x36\x7c\xc0\x59\x9f\xad\x52\x63\xc0\x80\xb5\xc4\x4d\x89\xc8\xee\x50\x3b\x36\xc0\x62\x04\xe0\xc8\xfc\x8d\x88\xe8\x10\xc0\x08\xc0\x11\x11\x1d\x31\x73\xf3\x0b\x1c\x54\x8a\x1f\x4c\x73\xfd\x60\xd2\xd3\x77\x4f\x7b\xfa\xfe\x5c\xf1\x03\x06\x0e\x6c\x7a\x22\x3a\x64\xe6\x23\x93\xfe\xd0\xa6\x35\xf9\x8e\x89\x68\x04\xc0\x02\x17\xb7\xb5\xbf\x00\x4c\x76\x8f\x1b\x37\x19\x97\x99\x93\x7b\xb6\xfc\xca\xaf\xfc\x4a\xb0\x01\x9d\xa0\x03\xcb\x1b\xad\x5b\x64\xb0\x3e\x53\x1b\x9f\x7c\xb0\xf6\xc5\x2b\x0f\x07\x7f\x67\x7d\x96\x3d\xaf\x18\x1b\x9e\x37\x47\x5b\x56\xd8\x39\x2d\xf0\x82\x95\x80\x00\xdc\xd8\x5f\x8a\x06\xa9\x13\xfc\x10\x91\xe4\x65\x84\xcf\x73\x4d\x17\xcf\x9d\xf4\xbe\xf6\x89\xfd\xb5\x6f\x5e\x39\x1c\x5c\xc9\x6a\x0c\x21\x0e\x26\x14\x6d\xb6\xae\xaf\x80\xf6\x45\x56\x76\xbc\xb8\xbe\xb2\x20\x8e\xfd\x8a\x2a\x7b\x56\x50\xd1\xab\x69\xe3\xf3\x77\x36\x3e\x75\xf9\x68\xf0\xdb\xfd\xb9\xfa\x04\x01\x85\x25\x0c\x22\xbb\x60\x84\xc3\x36\x08\x72\x60\xd3\x29\xae\x2a\x76\x6e\x26\x07\x4d\x76\x3c\xc6\xf5\xb5\x11\xa6\x92\x27\xb8\x7e\x33\xf1\x15\x63\x63\x73\x96\x7d\xf5\x13\xfb\x6b\x7f\x73\xe7\xa4\xb8\xd4\xd3\x6a\x60\x5c\xdf\x45\x04\x4c\x5d\x78\xf9\xe5\x97\xd5\xfe\xfe\xbe\xe4\xa1\xd2\x9a\x62\x9f\xa5\x78\x78\xfc\xac\xc5\x6f\x97\x01\x17\x19\x64\xe5\x82\xcc\xea\xba\x0e\x08\xd8\x7e\x48\x8b\x4c\x01\x37\x70\x34\x00\x5d\x29\xae\x66\x39\x4f\xe7\x8a\xcb\xb4\x1a\xdb\xa5\xdc\x8a\xb7\x0e\x45\xdb\x8f\xc3\x6d\xde\x9b\x00\x2b\xcd\x4d\x22\x82\x88\xc7\xd1\x17\x64\x66\x3f\x60\x9a\x06\x02\x20\x64\x35\x15\xfd\x4a\x0d\x8b\x4a\x15\x08\x4d\xa2\xf2\x37\x08\xdf\xfd\xee\x77\x63\xb0\xd1\x15\x16\xe6\x83\xf0\xe3\xdb\xdf\x45\x69\x7e\x5e\x17\x4a\xca\x04\xfa\x51\xf2\xf9\xab\x0e\x1f\xa5\x1e\xab\x84\x45\x75\x5d\xe5\x9d\x34\xab\x5b\xb0\x52\x39\x13\x3d\x61\x5a\x15\x34\x9a\x9c\xc9\xde\x3b\x39\x9b\xfd\xb4\x2a\xe8\xd0\x01\xe9\x00\x21\x58\xc6\x1c\x21\x06\x61\xa1\x70\x3e\xef\x10\x8a\xc3\x4f\xd1\x20\x81\x83\xbc\x4b\xc7\x41\x08\x41\x38\xd6\x92\xe3\x72\x14\x79\x4b\x11\x11\x82\x22\x99\xc2\xa7\x71\x06\x15\x9b\x3a\x62\x8c\x8e\xc9\xb2\xff\x0d\x9b\x19\x6a\xdd\x91\x3f\xc0\x6b\x8d\x16\xdc\xb0\xcf\x80\x88\x1d\xd3\xad\x73\x4c\x26\x5b\xea\xe6\xe8\x42\xef\x27\xac\x30\xe1\xf0\xdc\x1d\xb7\x12\x90\xda\x7b\xf0\x2c\x03\xbe\x0b\x69\x74\x7d\x7d\xdd\x6d\x58\xc6\xd1\x19\x46\x06\x08\xb8\x93\x96\xd1\x00\x05\xe7\xb2\x31\x16\x10\x0b\x2a\x2c\xe8\xb0\x40\xc6\x02\x8f\x43\x10\x8e\x40\x38\xb4\x7f\x0c\x36\xcf\xc8\xc5\x35\xa0\x45\x82\xa0\x11\x80\x91\x01\x47\x16\xb0\xd8\xbf\xa9\x99\x94\x6b\x97\x85\xcb\x33\x89\x5c\xfb\x27\x93\x49\xb2\x4f\x7a\xbd\x9e\x7c\x1e\xbb\x44\x1c\x68\x01\x50\x5c\x7a\xd4\xbf\x7c\xe9\x51\xff\x6f\x6c\xcc\xb2\xcf\x99\x8d\xe4\x82\xfe\xb3\x8e\x9e\x06\xa8\x88\x55\x43\x01\xb8\x6e\x5b\x52\xec\xf3\x20\x2f\xf2\x50\xc8\x91\x8e\x48\x17\x96\x4b\xaa\xa8\xe9\xf2\x13\xe3\xe2\x6f\x3d\x7b\xb8\xf6\x37\x2f\x1c\xf7\x77\x94\x76\x67\x1e\xd9\xed\x0d\xe2\xb6\xe1\xd3\x9f\xfe\x74\xdc\x76\x00\xd0\xf6\x70\x42\x34\xf5\x4f\xf5\x47\xae\x34\x86\x5b\xd3\xfc\xdc\xc7\x0e\x06\x5f\x5f\x2b\xd5\xe7\x54\xb3\x4f\x4d\xe0\x2e\x65\xf6\x54\x28\xe9\x24\xd5\x76\x81\xfd\x5b\x71\x2d\x35\x4b\x2c\x47\xd2\x5a\x8b\xb0\x5f\x6d\xfc\x5e\x4d\xbb\x67\x27\xf9\x4b\xcf\x1e\x0c\xbe\x78\xe6\x34\xdf\x11\xfd\x51\x44\xed\xb2\x6e\xc1\xf8\x94\x6d\x1b\x52\x8a\x60\x0b\xf8\x74\x84\xc6\x58\xb2\x24\x92\x6d\x9a\x15\x5a\x52\xf5\x73\x60\x0c\x00\x7f\xf1\x8b\x5f\x54\x4f\x3d\xf5\x14\x10\x9a\x7e\x14\x9a\xbd\x2c\x14\x35\x7b\xb9\xf4\x88\xa8\x00\xa1\xbf\x39\xcb\x9f\xd8\x1d\xf7\xae\x6e\x96\xd9\x93\x24\xd8\xa8\x61\x3b\x90\xf7\xee\x97\xfd\xa0\x73\xbf\xf6\xeb\xb8\x81\x0d\x8f\xa0\x65\xdc\xc0\x04\x13\x46\x08\x3f\xba\x34\x45\xdb\x15\x11\xde\x1c\x2e\xe7\xc9\xd4\x8a\x27\xa3\x41\x75\xe7\xc1\xc6\xfc\x67\x93\xbe\x1e\xa1\x21\xf6\x39\xda\x4b\xa2\x19\x00\x3f\xff\xfc\xf3\xb4\xb5\xb5\x45\xb7\x6e\xdd\xb2\xcd\x8a\x69\x46\xba\x27\xe2\x38\xb1\xfb\x88\x13\xcf\x64\x9a\x55\x5c\x39\x5d\x2e\xa9\x38\xc4\xae\x9c\xd8\x65\x93\x8a\x9f\xaa\xf7\x22\xd7\x8d\x34\x21\x76\xc5\x89\xaf\xb1\x20\x6e\x97\x1b\x69\x51\x5e\xab\xb8\x87\x3a\xfb\x55\xba\x4b\x11\x22\x8f\x60\x95\x11\xdb\x53\x6e\x89\xb2\xc6\x65\x84\xac\x98\xf2\x66\x6f\xc6\xe7\x88\x91\x87\x8e\xea\xb6\x0e\x49\xf2\x5f\x84\x67\x9a\xe8\x4d\x1a\xb7\xc4\x9a\xa5\x66\x6a\xe6\xbb\x18\xf4\x22\xa7\x9a\x34\x9c\x4e\x10\x59\x82\x3e\x42\x0a\x05\x02\x77\x53\xaa\x2e\x08\xf7\x69\x75\xdd\x4b\x68\xe6\xc5\xa0\x0d\x5a\x62\x6e\xe0\xf2\xa0\xa8\x7e\xb6\xf9\x6e\x86\x3e\x05\x6d\x21\x30\x9a\xc3\x2d\xd5\xed\x87\x97\x7a\x3f\x3c\x39\x9f\xfd\x0c\x84\xb1\xb1\x6e\x8c\xd1\x2c\x81\x9e\xa1\x99\x54\x6f\x69\xb7\x86\x85\x41\xc6\xad\xf3\x5f\xff\xeb\x7f\xc5\x78\x3c\x26\xad\xb5\x44\x87\x04\xcf\x80\x63\x3e\x09\x00\x6a\x3e\x9f\x6b\x00\xd8\xda\xda\xa2\xf3\xe7\xcf\xdb\xa5\x18\x44\xe1\x6a\x23\x7b\x2d\xb7\x4f\xd0\xd4\x6c\x86\xe7\x56\xf0\xa0\x59\x8a\x6c\xeb\x58\xa2\x01\x18\x25\x1a\x17\x97\xdd\x63\x65\x4a\xcd\x29\xce\x53\x32\x4b\xbc\xd9\x6f\x20\x37\x41\x33\xf1\xd6\xee\xcb\x32\x31\x71\x4f\x4d\xdc\x12\xcd\x5e\x2d\xa5\x71\x0f\xd5\x40\xeb\x1c\x22\x0d\x00\x8f\x1e\x3d\x92\x5b\xbd\x3b\x9a\x79\xe9\xa5\x97\xd4\x95\x2b\x57\xf0\x95\xaf\x7c\xc5\x0d\x20\x6a\x16\x67\x28\x66\xce\x00\xf4\x88\xa8\xcf\xcc\x83\xb3\xa7\xbd\xb3\xcf\xed\xad\xbf\xf8\xe4\x71\xf1\x6b\x83\xb9\xba\xaa\xd0\xcc\xe3\x90\x43\xc7\x3b\x23\x45\x30\xbc\x38\x1a\x06\x01\x41\x86\xf0\xdd\x65\x16\x8f\x5c\xc1\x68\xdb\x34\x06\x50\x96\x6b\x5a\xcf\x35\xa9\x2a\xe3\xfd\xfd\x8d\xf9\xfd\xb9\xd2\x95\x49\xe2\xbe\xbb\x70\x97\x70\xaf\xd7\xc3\xab\xaf\xbe\xca\x5f\xf9\xca\x57\x94\x75\x19\xd9\xdd\x76\x0d\x6f\x50\xe6\xe3\x67\x44\x94\xd9\xc9\xc9\x00\xfa\x83\xb9\x3a\xf3\xe9\xbd\xe1\x2f\x5c\x7d\xb8\xf6\x77\xfb\xb5\xba\x0a\x3f\x9a\x7d\x9b\x48\x50\x05\x7b\x59\xd5\x92\x8f\xe6\xd7\xd2\x86\xeb\x27\xb6\x95\xf6\xf9\x01\x11\xc9\x77\xf4\xa1\x55\x07\x32\x4d\xeb\x39\x53\x3d\xcb\xf5\xde\xc9\x40\x1f\x95\xb9\x77\xad\x5a\x57\x9a\x4d\x66\xe9\xe7\x63\x1f\xfb\x18\x1d\x1f\x1f\xd3\x68\x34\x8a\xb3\x96\x74\x14\xcb\x3a\x5b\x74\x40\x53\xe6\x5a\xad\x8a\x70\x62\x2d\x43\xa2\xa3\x96\xe9\x5d\x9a\xe5\x6c\x43\xd8\x6f\x0f\x8d\x9a\xa0\xcb\x4c\x9f\xce\x15\x4f\x34\xb8\x72\x71\xa3\x8c\x28\x7e\x2e\x07\xaa\xfd\x08\x96\x09\xba\x54\x2d\xdd\xb4\x15\xdc\xce\xe4\x42\x81\x0b\x34\xc3\xe8\x5a\xda\x5b\xe4\x7b\xa5\xa9\x28\x2a\x35\xec\x19\x57\x11\xc2\x7e\x69\xdd\x13\x91\xb5\xb8\xac\xa4\xb1\x27\x9e\xaf\xe2\x2a\x4a\xbd\x8b\xef\x3f\xaa\x2b\x27\x36\xf1\x75\xa5\xed\x72\xbf\x2c\xd2\x60\xe3\xdf\x2e\x97\x51\x2a\x8f\x54\xdc\x2e\x37\xd2\xb2\xbc\x52\xf1\xe4\x37\xed\xec\xd7\x68\x92\xa2\x2c\x37\xd8\x4e\x9e\xc4\xc4\x48\x9d\x61\x3c\xdd\xcc\xee\x8c\xcf\xe7\x37\xcb\x35\x75\x8f\xc9\x6a\xe6\x1c\x98\xb7\x83\x6b\xfb\xaf\x99\x79\x0b\x3f\x98\x43\x9c\x15\xd0\x0f\xb3\xdf\x43\x45\xbc\x94\x56\x11\xf7\xc0\x17\x6a\xa2\xb2\xa9\x8f\xaf\x87\xa5\x3b\x59\x4e\x4b\xaf\x21\x0b\x1f\x6c\x24\x9b\x13\xb9\x6b\x97\x2c\xc6\x6a\xb0\xab\x42\x8c\x68\x31\x98\x25\x4d\xdd\xec\xcc\xe1\xec\xea\xcd\x60\x22\x5d\x15\x74\x38\x3e\x9b\xbd\x7d\xbc\x93\xbf\xc3\x8a\x26\xf0\x82\xdd\xba\x8a\xac\xc5\xa5\x65\xa2\xb6\x7d\xb5\xb7\xb7\x07\x03\x42\xe2\x38\x31\xff\x4c\xba\x09\xfe\xdb\x7f\xfb\x6f\xfa\xc6\x8d\x1b\xce\x6d\x24\xe6\x4a\x38\x90\x62\x2d\x30\xa6\x5e\x76\x8b\xfd\x09\x8c\xd5\xc5\xb8\x8f\xc6\x30\x96\x17\x66\x1e\x11\x91\xb5\xbc\x38\xf7\x91\x71\x03\x1d\x02\x38\xb4\xcf\xcd\xbb\x11\x8c\xb5\xc5\xe4\x23\x77\xc4\x75\xd6\x27\xf2\xbb\x07\xdb\x39\x0c\xce\x3d\x04\x34\x63\xfc\xcf\xfe\xec\xcf\x80\x36\x2f\xc0\xf7\xbe\xf7\x3d\xfd\x87\x7f\xf8\x87\xee\xac\x26\x03\xd4\xed\x75\x4e\xcd\x96\x18\x79\x4f\xab\xe2\xca\xc3\xfe\xd5\x0b\xc7\xbd\x17\xd7\xe6\xea\x2a\x35\x9a\x3b\xe2\xf1\xeb\x46\x92\x19\x77\x52\x63\x4b\x81\x16\xe2\x68\x18\xb1\x17\xd0\x8d\xcc\x68\x23\x6b\x07\x7c\xa3\x32\xc1\x80\x62\x0c\x37\x66\xd9\x73\x17\x47\xc5\x97\x77\x8f\x8b\x5d\x05\x1a\xd8\x76\x50\xb8\x89\x9e\xbd\x06\xd0\xec\x90\xfe\xab\xbf\xfa\xab\x2e\x4f\x31\xbf\xc5\xc5\x77\xca\x0b\x90\x67\x1a\x83\x33\xd3\x7c\xe7\xe9\xa3\xc1\x97\x07\x15\x5d\xa5\x66\x43\xb8\xb0\x0f\x10\x91\x89\xa1\x65\xeb\x69\xf0\x34\x26\x49\x38\x52\x6c\x48\x3e\xe2\xe0\xb9\x94\xa7\x1c\x7e\x86\x80\xbe\x33\xa6\x8d\xad\x69\xf6\xb9\x4b\xa3\xfe\x17\xce\x9c\xe6\xbb\x30\xd6\x33\xe3\x36\x52\x30\xf3\xf8\x00\xb7\x33\x32\xfe\xcd\xbf\xf9\x37\xfa\x83\x0f\x3e\x58\xe4\x0a\xb2\x21\x85\x29\x62\xb9\x03\x00\x7a\x15\xe0\x92\x12\x8e\x9d\x42\xcb\xfa\xfc\xd0\x00\x98\xf8\xc0\xaa\xc6\x64\xda\x6c\x84\x54\xce\x73\x3d\xd1\xaa\x99\xa9\x9d\xc8\xa7\xf5\x2c\xf8\x06\x8e\xe1\x26\x18\x59\x2b\x69\xc4\xd8\xed\x08\xa0\x54\x9c\xf6\x93\x78\x61\x99\x61\xdb\x50\x8c\xa2\x5f\xab\xad\x41\xa5\x06\x08\x99\x58\xdc\xaf\xab\xba\x33\x52\x42\xbb\x2b\x9f\x94\xab\x68\x59\xfc\xd8\xb4\xfd\xb8\xae\x9b\x94\x89\xef\xaf\x2b\x3c\x4e\xdd\x96\xf5\x9b\x0c\x8b\xe2\x74\xb5\x6f\x51\x1f\x2f\xcb\xc7\xd1\x8b\x31\xbb\x5b\xd7\x80\x71\x19\xd1\x64\xde\xa7\xa3\xf1\xb9\xec\xd6\xf8\x7c\x76\xb3\x2a\xe8\x88\x03\x16\xd5\xe2\x46\x80\x15\xe8\xd4\x58\x21\xcc\xd6\x49\x70\x60\x20\x66\xd0\x52\x53\xb3\x20\x5c\x72\x68\xa7\xc2\xf9\x39\x2d\x76\x29\x29\x2c\x36\x42\xb3\xdc\xd8\x5b\x23\x23\x80\xe3\x4c\x1d\xe4\xe9\xd2\x2a\x06\x64\xe9\x99\xdd\xbd\xfd\x25\x01\x80\x5c\x59\x8e\x36\xc9\xcd\xbf\x71\x02\x88\x3c\x66\x83\x13\x68\x91\xb6\x4c\xcd\x66\x7b\x55\x8f\x46\x93\xed\xec\xdd\xd1\x85\xfc\xed\xf9\x40\x1d\x21\x5c\x45\xe3\xe6\x6f\x40\xcc\x43\x12\x2e\x1d\x5c\xbf\x7e\x5d\x5f\xbf\x7e\x5d\x27\x56\x46\x2c\xa2\x83\xe4\xf8\xfa\xef\xff\xfd\xbf\xeb\x1b\x37\x6e\x98\xea\xf9\xe3\x04\xcc\x98\x08\x0e\x61\x84\xb7\xa8\xd8\xd5\x3f\x13\x34\x2e\x1d\x0b\x5c\xec\xaf\x74\xf9\x38\x90\x22\xde\x1d\x89\xf8\xee\xcf\x5a\x5c\xe0\xe7\xb4\xc4\x9b\x67\x3a\x20\x67\x79\x39\xe0\x81\xf9\x9d\x3b\x77\x62\x7a\x73\x6d\x4e\xb8\x06\x02\x97\x08\x80\xc1\x7a\x99\x6d\x5d\x1a\xf5\xff\xb7\xcd\x69\xfe\x59\xa5\x69\xc3\x6b\x92\xd1\x2a\x32\xf8\x1b\xeb\x2a\x02\xd8\x7b\xfa\x9b\x5b\x37\x7c\xc5\x23\xd3\xcf\xa1\xe0\x8f\xef\x1d\x08\xb6\x63\x4a\x94\x6b\x0c\xa7\xaa\x57\xd3\xb9\xb3\xa7\xf9\xe7\x2f\x1f\xf5\x3f\x5b\x54\x34\x00\x30\x60\x73\x54\x03\x22\xf7\x06\x11\xb9\xd5\xb5\xcf\x3e\xfb\x6c\xdc\x07\x29\x85\x36\x07\x50\x0c\xe6\x6a\xeb\xa9\xa3\xfe\xd5\xed\xd3\xfc\xf3\x99\xa6\xad\xa8\xff\x02\x13\x5f\x48\xbb\x5e\x11\x89\x2d\x24\x32\x6d\x48\x62\xbe\x87\xa5\xc4\x93\xf2\x54\xba\x8e\x03\x23\x44\x43\x67\xaa\x57\xab\x4b\xe7\x26\xf9\x73\x3b\x27\xbd\x2b\x6b\xa5\x1a\x22\xfc\xbe\x2d\x97\x8f\xed\x93\xa7\x9e\x7a\xaa\x4b\x19\x5d\xe6\x4e\x6a\xc5\x5d\xc6\xe8\x17\x69\x14\x41\x9c\xd7\x5f\x7f\xbd\xc5\xdc\x85\x86\x21\xb5\x0b\x0d\x40\xd7\x19\x97\x65\xc6\x93\x9a\xb8\x04\xa7\x90\x25\xb5\x9e\x01\x21\xf2\x26\x6e\x7f\x2c\x12\x33\xcc\x65\x97\x37\x1f\x8a\x5a\x03\xd8\xc7\x93\x8c\xdf\x15\x16\x7c\x78\x19\x8f\x00\x64\x4c\x45\xbf\xa2\xad\xc1\x5c\x6d\x98\xd3\x38\xdd\x87\x4b\x01\xaf\x8e\xd0\x05\x46\x52\x0c\x20\xf5\x3c\xce\xa3\x2b\xa4\xac\x0e\x29\xbf\xe2\xb2\xfc\x5b\xcc\x2a\x11\x37\xfe\x5b\x35\xdf\x4e\x6b\xd5\x92\x78\x5d\xf5\x48\x85\x55\x85\xce\xa2\xeb\xe4\xbb\xa7\x9f\x7e\x3a\x3e\x84\x4d\x82\x16\x6d\x4c\xfd\x72\x5e\xc3\x94\x99\xa7\x9c\xd1\x78\xba\xae\xee\x3f\xda\xcd\xdf\x9e\x9c\xc9\xde\x35\x4b\x75\xbd\x38\xb6\x86\x07\x13\x9c\x01\x5d\x0a\x7a\x08\x4d\xd4\xdd\x87\x4c\xc7\xab\x55\x21\xd5\xd8\x03\x0a\xfd\x28\x27\x37\x3f\xd8\xa6\x76\xe9\x02\x2b\x8c\x2d\x3f\xd4\x58\x03\x88\xe5\x64\x83\x61\xb0\xb1\x9e\xe1\x26\x6f\xfa\x02\xd9\x98\x4f\x02\x66\x2c\x81\x8f\x9b\xcf\x26\xd4\x0a\xf2\x14\xcc\x00\x74\x86\xc9\x74\x43\xdd\x7e\xf4\x44\xfe\xe6\xe4\x4c\x76\x87\xc1\x4d\x5f\x9b\xf9\x1b\xcc\xec\xac\x2d\x46\xc1\x92\x96\x05\x0d\x34\x42\x38\xcf\xf3\xae\xb1\x2c\xe9\xb1\x53\x90\xcb\xb4\x6f\xbc\xf1\x06\xae\x5f\xbf\xee\x2c\x2e\x96\x2f\xda\xf2\x8d\xb5\xa3\x92\xf3\x5e\xe0\x57\xf8\x58\x0b\x8c\x75\x73\x8d\x99\x79\xcc\xcd\xca\xa8\x00\x98\x98\xbf\x09\x33\xbb\x3f\x13\x7f\x62\xda\x3f\x31\x7d\x61\xc7\xa3\x9d\x6f\x23\x79\xb5\x9d\x97\xa3\x99\x19\xf7\xee\xdd\x8b\x3e\x5c\x68\x85\xfd\xfb\x7f\xff\xef\x2b\xd3\x7f\xf1\x3c\x0e\x2f\xa4\x19\x39\x81\x8a\x9d\x93\x7c\xf7\xec\xa4\xf7\xf9\xa2\x56\x3b\xe4\x5c\x44\x5e\x00\xbb\xc0\x1e\x13\x5b\xab\x8b\xdd\x0b\xc8\xca\x01\x27\x2f\x24\x0d\xc0\x0f\xf5\xd0\xac\x17\xd3\x51\x02\xbf\x43\xc8\x98\xe6\xd9\x60\x38\xcf\xae\x5c\x3c\x2e\xbe\x7c\xfe\xa4\xd8\x61\xe6\x02\x66\x0f\x1a\x63\x35\x51\xcc\xac\xb8\x59\x8c\xa2\x98\xd9\x81\x37\x7b\xea\xb3\x05\xaa\xc2\xda\xa2\xc8\x9c\x43\x04\xa0\x58\x9b\x67\xdb\x4f\x8e\x8a\xcf\x0c\x2a\x75\x15\x4c\xb9\x6b\x97\xb4\xa6\xc4\x16\x57\x73\x25\x27\xde\xba\x6b\x8e\xe2\x09\x79\x67\xe5\x2a\x8b\xf6\x86\x33\xe3\xc5\xa5\xe9\x58\x8e\xa2\x28\xa6\xc1\xb0\xcc\x9e\xdd\x19\xf7\x3e\xbe\x35\xcd\xb7\x11\x4e\x5c\x56\xb2\x4f\x60\x64\xe1\xb5\x6b\xd7\x94\x00\xbc\x40\xb7\xdc\x59\xc6\xdf\x35\x00\x95\xda\xc7\x45\x66\x12\xfb\x96\xe2\x02\xe5\xe0\xb5\x84\xdf\xca\xcc\x0c\xe6\x60\x0f\x80\x4a\x71\x59\xe6\x7a\xaa\x15\x97\x88\x06\x5d\x93\x48\xea\x9c\xfe\x4d\x90\xbf\xd5\x24\x39\xb1\x44\x12\x11\x11\x00\x80\x88\x17\x5b\xd0\x9a\xd7\xc6\x67\xe8\x34\xbc\x70\xf3\xac\x16\xcf\x65\x14\x45\xad\x36\xd6\xe6\xd9\x99\x5c\x53\x3e\xcf\x82\x55\x45\x8b\x84\xaa\x0c\x5d\x7d\xdc\xa5\xe5\xad\xea\xf2\x58\xf4\x7c\xd1\xfb\x65\xcf\x96\x59\x1f\x96\x59\x2d\x64\xdb\x96\xb5\xb1\xab\xfc\x2e\x8b\x91\x1c\x8b\x71\xbc\x2e\x41\xd3\xd5\x8f\x5d\x20\xb1\xab\x6e\xca\x98\x43\x01\xc0\x8e\x77\x4b\xbc\x76\x32\xa6\x82\x59\xde\x6a\x04\x91\x35\x9f\x17\x3a\xa7\xd1\xe4\x4c\xf6\xc1\xa3\xdd\xde\x9b\xbd\x29\x6f\x0f\x8e\xf5\xb3\x04\x28\xcb\xd3\x25\xa3\xb1\xfb\xa7\x04\x5e\x70\x6f\x20\x11\x34\x64\xc4\x3b\xc3\x4d\x56\xb5\xec\x9a\x41\x70\xfe\xef\x38\x13\x38\x08\xe1\xcb\x60\x0f\x84\xfc\x8e\x1a\xbe\x34\x4b\x3b\x8d\x4b\x8a\xfc\xbe\x4c\x2c\xc1\x8b\x67\x80\xde\xd2\x62\xe7\x2c\xc8\xfd\x24\x6c\x1d\xcd\xfb\x48\x32\xb1\x8c\x27\x0b\x31\x56\x28\x56\xa8\x66\x43\xb5\x77\xbc\x93\xbd\x3d\x3e\x9f\xbd\xa3\x73\x1a\xa1\x59\xb1\x23\x41\x80\x13\xda\xd6\x3d\x22\xbf\x6d\xe2\x10\xbd\xd4\x78\x5a\x74\x6d\xef\x5d\xfa\x87\x0f\x1f\x02\x08\x5d\x8a\xe6\xcc\x9a\x60\x4c\x19\x41\x27\xcb\x54\xa6\x8e\xce\x2d\x21\xca\x71\x2b\x5b\x82\xef\x10\x5a\x4b\x02\xe5\x51\x02\x26\x19\x4f\x00\x16\xeb\xca\xea\xea\x07\x79\xad\x01\xa8\x7f\xf5\xaf\xfe\x95\xdb\xbb\x85\x1c\x18\x6d\x00\x8b\x70\x8b\x14\x3d\x4d\x83\x0b\xa3\xfe\xd5\xf5\x52\x5d\x55\x0c\xb3\x5f\x0b\x3b\x00\x4b\x62\xfc\x09\x3c\x63\xc6\xb6\x9c\x4f\x45\x62\xa5\x91\x01\xf1\x9e\x91\x47\x7c\x3e\x86\xd3\x11\xb8\x46\x1b\xf8\x00\x36\x3f\x42\xae\xb1\x7d\x66\x9a\x3f\x77\xf9\x51\xff\xd9\x0f\xcf\xcc\xf6\x01\x14\x20\x77\x78\xaa\xfb\x1e\x2c\x4e\x11\x97\x7d\x66\xda\xe5\x40\x9c\x01\x2d\x39\x11\xe5\x99\x46\xb1\x5e\x66\xe7\xb6\x66\xf9\xb3\xb9\xa6\x2d\xaf\x3a\x78\x82\x77\xed\x45\x48\x37\x2c\x85\x64\xd0\x06\x0f\xe8\x2d\x79\x48\x2b\x0a\x40\x21\xaf\x08\xae\x23\x59\x6b\xe9\xd9\x64\x66\x65\x63\xbf\x56\xbb\x67\x27\xbd\x4f\x9c\x3d\xcd\xff\xf2\x60\x7d\x7e\x38\x57\xba\x24\xbf\xb1\xa0\x73\x17\xda\x6b\x66\xc6\x17\xbf\xf8\x45\x25\x0c\x1c\x32\x2c\x93\x81\x2d\x3e\xbd\xaa\x56\xea\x08\x28\xf1\xcc\x85\x05\x9b\x34\xb5\x36\x61\xaa\x09\x65\x99\xf1\xb4\xa6\xc6\x55\x14\xf0\x4f\xc4\x40\x39\xd4\x10\xe5\x32\x2f\xfb\x51\x43\x1b\x4a\x3b\x34\x83\xd3\x33\xf2\xc0\x9c\x63\x2e\xfc\x60\x97\x9a\xaa\x40\xe6\x0e\xdd\x3a\x11\xa0\xf2\x9a\x86\x6b\x73\xb5\x65\x57\x16\xa1\xdd\x4f\xab\x80\x17\x60\x35\x20\xf2\xf3\x84\x55\xeb\xf1\x57\x9d\x57\x17\xe3\x5b\x96\xff\xa2\x32\x16\xe5\x91\xb2\x78\x74\xa1\xfb\x55\x80\x5d\x17\x68\xef\x0c\xd7\xaf\x5f\x77\xe3\x5d\xce\x65\x80\x30\xc5\x8b\xf9\x15\xcd\x52\x58\xf0\xa4\xce\x31\x3a\xde\xc9\xde\x19\xed\xe6\x6f\xcc\x07\xb4\x07\x82\xb6\xda\x96\xd4\x8e\x2c\x90\x30\xb7\x42\x78\x8b\x77\x96\x36\x04\xe2\x31\x10\xc1\x59\x25\x1d\x33\xb2\x99\xd9\xc9\xaf\x4d\xbd\x9b\x3f\xa7\xaa\x19\x10\x63\x90\x8e\x9c\x04\xe8\x69\x87\x3d\x1d\x1b\x73\x28\x83\xc3\x73\x85\x5c\x2f\x19\xc6\x6b\xef\x48\xac\x72\x70\x34\xef\x11\x9b\x6b\x97\x53\x2a\x2c\x20\x83\x63\xe0\xdc\xac\x98\xaa\xe6\x03\xda\x1f\x9f\xcb\x6e\x1e\xef\xe4\x37\xe7\x03\x75\x08\xef\x12\x71\xcb\x7d\xc5\xdc\x96\x4a\x30\xda\x00\xbc\x24\x42\x8a\x46\x53\x63\x29\xf5\xce\x8d\x9d\xf5\xf5\x75\x77\x2d\x78\x66\x00\x2e\xe0\xc1\xae\xad\x63\xcb\x0a\x83\x06\x78\xb9\xa5\xd4\xdc\x80\x33\xe9\x02\x8a\x97\x36\xbb\x79\x2c\x08\x5d\x63\x12\xb8\xb9\x3e\xb8\x7e\xfd\xba\xfe\xf5\x5f\xff\x75\x75\xe5\xca\x95\x55\x00\x9b\x0d\x29\xab\x69\x63\x71\x01\x8a\x61\x99\x6d\xec\x8e\x7b\xbf\x50\x54\x6a\x87\x80\xdc\xae\x94\x91\x13\x4d\x53\x96\x82\xe6\xd6\x73\x5f\xcb\xcf\xed\x44\x5d\x37\xc4\x24\x80\x01\xc0\x62\xf0\x71\x22\xcf\x94\xd8\xe0\x40\x0e\x30\x88\x91\xf7\x2b\x75\x71\xe7\xa4\xf7\xc9\x5e\x4d\x03\x08\xd7\x88\xb0\x2e\xc4\xab\x4a\x9b\xbc\xbc\xa9\x42\xf6\x8b\x4b\x3f\x98\x67\x1b\xe7\x4f\xf2\xdd\xc1\x5c\x5d\x22\xa6\x82\xdd\x19\x63\x21\x7d\x08\x38\x11\x00\xb8\x80\x17\xc0\xd3\xae\xb7\x8c\x42\x12\x5d\xd0\x01\x12\xd4\xf9\x7c\x0c\x20\x74\x1a\x86\x8d\xcf\x41\x3e\x99\xc6\xd6\x66\x99\x5d\x39\x3b\xc9\x2f\x0f\xe7\x6a\x88\xf4\xca\x22\x2b\x53\x15\x11\xe1\xf5\xd7\x5f\xd7\x67\xcf\x9e\x95\xd6\xca\xb8\x6f\x3a\x3d\x3a\xf1\x7d\xea\x61\xd7\x60\x8c\x07\xf6\x22\xcd\x39\x58\xfe\x2c\x1e\x4b\x8b\x4b\x55\x9a\xad\xab\x83\x89\x41\x26\x22\x59\x86\x2a\x06\x9a\x33\x85\x39\xa1\x00\x07\x26\xdc\x47\x4e\x0d\x44\xf6\xe0\xc3\xa1\x6b\xb1\xb4\x92\x45\x3a\x79\x1d\xe2\x24\x86\x53\x23\xc5\xfb\x5e\x4d\x83\xe1\x3c\xdb\x16\xf3\x5c\xdc\x7e\x2e\xec\x00\x56\xf8\x6b\x42\x0a\xe4\x20\x71\xdf\xf5\x2c\x7e\xb7\x2c\x9f\x2e\x0b\xc2\x47\x09\x8b\xc0\xc0\x22\xe0\xd6\x65\x8d\x59\x35\x2c\x6a\x63\xd7\x58\x5e\x24\x58\x16\xd5\x43\x12\x58\xcc\xac\x53\xe5\xba\x78\x9f\xfe\xf4\xa7\x15\x80\xd6\x12\x58\x61\x7a\x8f\x05\x50\xe3\x06\x50\x34\x9e\xf7\xe9\xf0\xe1\x93\xbd\x37\x8f\x9f\xc8\xdf\x9c\x17\x74\x04\x82\xb6\xfb\x33\xb8\xb1\x2f\x54\x44\x22\xaf\x61\x59\x86\xeb\xa6\xbc\x98\x08\x52\xf7\x94\x4c\xcb\x63\xf6\x10\x40\xd8\x78\x1c\x44\xa4\xd6\xdc\x82\xd6\x44\x5e\x73\xf0\xa3\x8b\x6f\xf2\x63\xb7\x67\x84\x07\x37\x20\x78\x77\x94\x05\x41\xe2\x5d\x43\x6e\xdc\xae\x0f\xfb\x7a\x8b\xd9\x34\xf6\x81\x36\xf3\x85\xde\x7e\x74\xa1\xf7\xe6\x74\x53\xdd\x05\x41\x4e\x74\xb5\xd7\x16\x0c\x54\x16\x58\xca\xb9\x2d\x75\x5d\x8b\x86\x06\x63\x20\xfe\xee\xab\x5a\x60\x82\x3c\x4e\x4e\x4e\x82\xf1\x67\x26\xff\x9a\x6e\xe4\xd8\x22\x62\x81\xae\xb5\x0c\x49\xd7\x4e\x00\x48\xec\x5f\x04\x72\xe4\x5f\x25\x81\x0a\xf9\x0d\xe5\x9c\xb5\xe5\xfa\xf5\xeb\x7a\x7f\x7f\x1f\xf6\xa4\xe7\x3f\xf9\x93\x3f\xd1\xef\xbf\xff\x3e\xa2\x90\x12\x3e\x30\xee\x90\xc0\x25\x62\xdd\x22\x60\xe4\x04\x14\xdb\xa7\xf9\xf6\xd6\x34\x7f\x2e\x67\xda\x20\x78\x8b\x1f\x89\xb1\x11\x2b\x8b\x26\x77\x58\x22\x90\xef\x03\xf9\xca\x66\x57\x69\xf6\x20\x38\x1a\xfd\xad\x20\x66\x16\xb8\x78\x12\x5c\x9b\x51\xac\x72\x4d\x1b\x9b\xd3\xec\x13\xdb\xd3\x7c\x0b\x66\x19\xb0\xe1\xf3\x72\x5e\x87\x75\x19\x45\x65\xf8\x49\xca\xf0\x16\xb2\x9c\x99\xf3\xb5\xb9\xda\x3a\x37\xe9\x3d\x5d\xd4\xb4\x43\x60\xe5\xfa\x44\xd4\x23\xec\x87\xb6\x92\xef\xad\x27\xe4\xe5\x61\xe4\xbe\x95\xf2\xcd\xcf\x39\xf3\xa5\x04\x93\xed\xc9\xf3\x12\xaf\x9c\x88\x7e\x6c\xc0\xa6\x2a\x2a\xda\xdd\x9c\xe5\x4f\xad\x95\xd9\x16\xf9\x3d\x69\xdc\x52\x71\x29\x07\x6d\x79\xcf\x3d\xf7\x9c\xad\x96\xe4\xcf\x92\x66\xe2\x67\x49\xc5\x37\x76\x15\x2d\xd4\x14\x12\x21\x29\x94\xa4\xc9\x4f\xbc\x73\x7f\xcc\xac\xab\x8c\xcb\x59\xce\x93\x4a\xf1\x54\x72\x1e\x71\xd9\x1e\x74\xd2\xbe\x15\x40\x4e\xf1\x91\x83\xb3\x8a\x6c\xb2\xf6\x04\x3e\xb6\x44\x60\x07\x2e\x85\x66\xc8\x26\xa1\x19\x0e\x24\x0b\x74\x6a\x1e\x88\x9a\xad\xff\xfb\x95\xda\xee\x57\x6e\x65\x91\xfb\x70\x76\xc0\x0a\xed\x1b\x76\x79\x1c\xda\xc2\xd3\xf6\xe7\xe3\x5a\x5b\x52\xe0\x71\x55\x4b\xda\x5f\x45\xf9\x32\xef\x54\xfa\xae\xfc\x52\xc0\x6a\x59\xba\x45\x71\x96\xa5\x97\xe0\x7b\x59\xbe\x31\xd8\x59\x56\x4e\x90\xf7\x8d\x1b\x37\xf4\x8d\x1b\x37\xec\xa4\x34\xf7\xde\xba\x8b\xcc\xb8\xb0\x3b\xa2\x4e\x21\xb5\x52\x45\xf9\x6c\x1d\x6a\xff\xe9\xde\x9f\x67\x73\x0c\x36\x0e\xe6\x9f\xcb\xe7\xd8\x62\x86\xa2\x90\x4b\x8b\xe1\x68\x99\x7e\x6c\x6e\xf7\x07\xb1\xd9\xb8\x6e\x14\xdb\x61\x6c\xe9\xc5\x9a\xeb\x1d\xa5\x58\x4e\xe7\xcd\x1d\xcd\x81\xa5\x2c\x68\xc5\x13\xa1\x2b\xc6\x66\x0c\x06\xb3\xb7\xf0\x78\xda\x32\x75\x90\x2a\xb2\xcd\xc9\x58\x5d\x82\x13\x09\x7c\x94\x46\x2f\x6f\x98\xa6\xa9\xae\x69\xa7\x79\x5f\x15\x34\x1a\x9f\xcb\xde\x7e\xf8\x64\xef\x8d\xc9\xb6\xfa\xc0\x9c\x45\x64\x77\x89\x8d\x57\xcf\x94\xe2\x9b\x49\x4b\x07\x4e\x4e\x4e\xec\x18\x88\x95\x34\x85\xf4\x38\xea\xa2\xb7\xd8\x5a\x17\xe7\x01\x00\xea\xdf\xfe\xdb\x7f\x0b\x99\x9f\xd9\x1a\x5e\xfb\xf6\xb5\xdc\x3f\x4a\x3c\x73\xd7\x56\x38\xd8\xeb\xd8\x05\x25\xcd\xf6\xf2\x1d\x11\x41\x6b\x6d\xdb\x8d\xff\xf8\x1f\xff\x23\x00\x20\xda\x3c\x2c\x6e\x4f\x70\x2f\x77\x86\x15\xf9\x5a\xc1\x95\x13\x28\xcf\x34\x15\xe7\x4e\xf2\xdd\x41\xa5\x2e\x13\xa3\xf0\x1c\x35\x74\x3c\x72\x90\x87\x1d\x2f\xd2\x2a\xd3\x8c\xeb\x66\xfc\x46\x79\x38\x41\x0b\xf1\x54\x8c\x77\x19\xc1\x4c\xec\x46\x24\x33\x3c\x8d\x78\xf7\xa5\xd2\x18\x0c\xe7\xd9\xd5\x8b\xa3\xe2\xe2\x83\xf5\xf9\x3e\xfc\x49\xce\x96\xa6\x43\xda\x33\xee\xa1\xa8\x4f\x9c\x5c\x30\x7d\x52\xf4\x2b\xb5\xb5\x35\xcd\x2f\x66\x5a\x6d\xb5\xea\x0a\x21\xe2\x28\xaa\x9c\xa8\x5f\x80\x41\x48\x46\x15\x53\x1c\x64\x9f\x70\xb0\x61\x9e\x49\x6a\x79\x06\xc2\x2b\x0a\xfb\xce\x5a\x6b\xc1\x40\xa6\x69\x63\x30\x57\xbb\x6b\x73\xb5\x01\x46\xce\xe0\x60\x7f\x1b\xd9\x27\x76\x9e\xcb\x22\xaf\x8c\xf8\x4d\x02\x63\xf1\xae\xe5\x2a\x92\x0c\xbb\xc5\x90\x17\x14\xa4\x81\x46\xd3\x8c\x89\x08\x08\xf6\x00\x70\x4c\xa2\x52\xba\x9a\xf6\xf4\xc9\x3c\xe3\x09\xc3\x4c\x8c\x13\x99\x77\xcd\x6d\x75\xfd\xed\x01\x61\x0c\x53\xda\x89\x38\xdc\x75\xd0\xb2\xca\x40\x61\x14\x29\xd3\x13\xbb\x12\x91\x19\xcd\xca\xa2\x4a\x6d\xad\x95\xd9\x06\x9a\xd9\xe6\x01\xfa\x16\xf7\x26\x6f\xc6\x6f\xfe\xe6\x6f\x2e\xb2\xb4\x2c\xfa\x5d\x66\x71\xe8\xd2\x02\xbb\xd2\xc7\xf9\xc7\xc8\x37\x55\x86\x0d\x31\xc8\xed\x4a\xdf\x55\x9e\x1c\x63\x71\xdd\xe2\xbc\xe3\xf4\x5d\x7d\xb1\xac\x8f\x96\x3d\xef\x12\x4c\xcb\xe2\xc7\xef\x15\xd0\x72\x9d\xda\x3c\x5b\xab\x47\x60\x4c\xfe\xb0\xab\x47\x88\x26\xd3\xad\xec\xee\xfe\x95\xde\x0f\xc7\xe7\xf2\x9b\x75\x0f\x63\xa0\xd1\xa2\x9c\x26\x24\x7f\x9d\x69\x24\x80\xfe\xb0\x26\x78\x39\x74\x2d\x23\x8e\xb5\x3a\x58\xd0\xe0\xd5\x2e\x0f\x34\xd8\x02\xf8\xe6\x95\xd5\x6c\xd9\x9e\xab\x24\x34\x65\x49\xa0\xae\x6a\x80\xa0\xbf\x68\xa1\xa7\x3b\x30\x51\x34\x2b\x00\x64\x9e\x6e\x63\x4b\x93\x7b\x48\x40\xdd\xc3\xf8\xe4\x5c\x76\xf3\xe1\xa5\xde\x1b\x27\x67\xb3\xf7\x38\x6b\xb6\xb5\x87\xd8\xc3\x04\x62\x35\x11\x84\x9b\x48\x7c\x1b\x30\xb3\xdd\xa3\xa4\x0b\xac\xa6\xe8\x2a\x15\x67\x51\xba\xf8\x5a\x03\xc0\x37\xbf\xf9\x4d\x37\x6e\xe4\x3c\x18\x39\x1f\x05\x82\x87\x9a\x6b\xb7\x32\x8a\xc2\x25\xf7\x72\xe3\xb8\x54\x5a\x30\x37\xbb\xdf\x56\x55\x85\x7f\xf4\x8f\xfe\x91\xfe\xce\x77\xbe\xa3\x01\xa0\x2c\x4b\xd9\x2e\xd9\xce\xd8\xf2\xa4\x01\xe0\x77\x7f\xf7\x77\x55\xc4\xf3\xe5\x2e\xe2\x16\xa8\x17\x8a\x51\x6c\x4d\xf3\xdd\x4c\xd3\x06\xe0\xc7\x9e\x3b\xe5\x58\x28\xaa\x6e\x3c\x59\xf7\x27\xc1\x7f\x7b\x26\xe3\x02\xf2\x21\x9e\xfc\x2d\x73\x64\xc9\xeb\x09\xee\xd4\x71\x98\xb9\x1b\x16\x14\xc1\x3c\x96\xee\x52\x9b\x27\x01\x79\x51\xa9\x9d\x9d\x71\x71\x05\x62\x23\x3a\xd3\x3e\x1b\xdf\xf1\x82\x94\x95\x45\xf4\x5d\x4e\x44\x4a\x31\xf2\x7e\x45\x1b\xfd\x4a\xed\x2a\x8d\x41\x70\x5e\x9f\xad\x4b\x67\xe0\xb0\x7e\x16\xf1\x08\xb3\xa4\x5b\xe0\x12\x58\x6b\x28\x8a\x1b\x67\xcb\x2e\x9e\x4b\x63\xe9\x11\x82\x1e\x09\xc8\x98\x86\xc3\xb9\xda\x1d\x96\xd9\x76\xc6\x18\x18\x2b\x92\x94\x7f\xf1\xb8\xe8\x0a\x31\x0f\x95\xb2\x21\x0e\x1a\x89\x17\x5d\x56\x80\x45\xd7\xee\xf7\xc6\x8d\x1b\xd2\xb7\xef\x22\x0a\x74\xef\x88\xa7\x52\xa8\xa6\x79\x3d\x99\x65\x7a\xac\xc9\x1d\x6e\xe6\x43\x80\x62\xc4\xa3\xa8\xc3\x2d\x42\x0f\xba\x26\xee\x27\x37\x98\x49\xdc\x0a\xe4\x23\xe7\x10\xc8\xb2\x63\x94\x64\xda\x65\xb5\x4b\x26\x18\x8b\x0b\x6d\x0f\xe7\x6a\x83\x40\x72\x3b\x68\x39\x90\x83\xf4\xff\xe9\x3f\xfd\xa7\x94\x60\x0c\x18\x28\xda\x4c\xaf\x2b\x4d\x2a\xce\xa2\x3c\xe2\x10\xc7\x4d\xfd\x2e\xb2\xba\x2d\x4b\xdf\x15\x3f\xae\xd7\x2a\x96\x90\x45\xf1\x97\xf5\xd1\xa2\xbe\x8b\xf3\x48\x85\x65\x75\x49\x0a\x3a\x01\xda\x65\x7c\x79\x04\x80\x9f\xe7\x62\x04\x2d\xcc\xca\x90\x93\xb3\xd9\x07\x07\x57\x7a\x3f\x38\x3e\x9f\xbf\x39\xef\xe3\x10\x80\xb6\x3c\xc7\x85\x04\xa6\x76\xff\x5b\xda\xe7\xe2\x40\x14\xef\xe1\x10\x82\x9c\x06\x1f\xc9\x4d\xed\x2c\x28\xf2\xdb\xfc\xc7\x1a\x87\xd3\x08\x0d\xb8\x72\x72\xc1\x3e\x97\x79\xdb\xab\x40\xab\x14\x0c\x93\x28\xa4\x53\x34\xe0\xa9\xee\x61\x7c\xbc\x93\xbf\x79\x70\x39\xff\xf3\x93\xb3\xd9\xcf\xb4\x6a\x96\x00\x93\x3f\x7f\x27\x58\x02\x6d\x5c\x29\xad\xef\x16\x03\x06\x13\x52\xca\x40\x6c\x81\x88\xad\x10\x71\xba\x3b\xae\x76\xac\x00\x00\x20\x00\x49\x44\x41\x54\x38\x6e\xd2\xb2\xf9\x5f\xfe\xcb\x7f\x71\xcf\x7e\xf1\x17\x7f\x51\xd9\x15\x48\xb6\x5e\xf6\x5e\xd4\xc5\x01\x10\x11\x5a\xf4\x2f\x35\x5f\x99\xa7\x4d\xf0\x4f\xfe\xc9\x3f\x89\x69\x5c\xe6\x91\x6a\x7b\x92\x27\x58\xf7\x90\x68\xbb\x82\x99\x9c\x0b\x40\x65\x9a\x8a\x8d\x32\x7b\x22\x63\x04\xdb\x47\x70\x6b\x0c\x04\x99\xda\x58\x0e\x84\x58\x2b\x61\x4b\xbf\x6c\x0f\x0e\x00\x38\x40\xc7\xbf\x07\x95\x59\x0a\x64\x8a\x22\x3b\xf0\x62\xae\x29\xce\xa8\x09\x19\xa3\x18\x56\xea\x09\xb4\x97\xfe\xc6\x8a\x2a\x10\x7e\x1b\x69\x3d\x73\x56\xa8\x9e\xa6\x62\xad\xca\xb6\x8a\x9a\xb6\x14\xa8\xf0\xa0\xca\xd6\x4b\x52\xb3\x69\xbb\xa3\xf0\x00\xfe\x37\xd7\xce\xa5\xec\x81\x18\x01\xe1\x9c\x1f\x97\x37\xb5\xfa\x4b\x5a\xb4\x5a\x41\x28\x21\xb0\x1b\x47\x32\x15\xfd\x2a\xdb\xde\x28\xb3\x1d\x33\xc7\xd3\x5a\xa1\xa4\xfc\x93\x27\x83\x27\x7a\xd5\xf7\x15\xda\x34\xd1\xc5\x8b\x17\x0a\x24\x9b\x70\x91\xe6\xb1\x32\xa3\x8f\xfd\xfd\x00\x74\x99\x71\x79\x5a\xe8\x51\xad\x78\xda\xc4\x71\x71\xdb\x40\xc2\xe2\x15\xe9\xef\x17\xaf\x11\x4c\x28\x02\xbc\x46\x87\xd6\x00\xb7\x9f\xde\xce\x4a\x8f\x4d\x2f\x72\xf0\xc8\x41\x13\x55\xc7\xc6\xcd\x8b\x5a\x6d\xad\x97\xd9\xd9\xa2\x6e\x3e\x5a\x6a\x92\x12\xda\x8c\x6c\xd5\x20\x99\xc4\xe3\xa4\xff\x28\x65\x2d\xaa\x83\xfc\xfd\xff\xc3\x8a\x41\x30\x41\xd9\x87\xd2\xe2\xe2\xe6\xba\x08\xcb\x80\xb3\x16\x8c\xcf\x66\xef\xed\x3f\x53\xfc\x70\x74\xa1\xf7\x46\xb9\xa6\xf6\x99\xa0\x7d\x96\x2d\x4e\x1d\xf8\xa3\xc3\x38\x6d\x46\x15\xbe\x17\x66\x44\x9f\x9d\x5b\x59\x91\x2a\x0d\x82\x79\x3a\x6f\xaa\x10\x28\xcd\x4b\xf6\xf3\x18\x0c\xea\x6a\x7e\xb8\x65\x91\x69\x55\xc9\xe6\xdb\x62\xb0\x3e\x54\x03\x1c\x3d\xba\x90\xbf\xb6\x7f\xa5\xf8\xe1\xc9\xd9\xfc\x3d\x9d\x05\xfb\x96\xc8\xfd\x4a\xe4\x39\x51\xc1\x29\xcc\x96\xa1\x46\x7b\x90\xb4\x2c\x22\x89\x90\x02\x2c\x8f\x4b\x2b\x49\x3a\xfd\xd1\x8f\x7e\x04\xa0\xb5\xa9\xa1\x73\x19\x45\x75\x48\x82\xe7\xd8\xd2\x6d\x5f\xfc\xcf\xff\xf9\x3f\x01\x00\xff\xec\x9f\xfd\x33\x99\x75\xaa\x2d\xf1\x73\xf9\xde\xf1\xa5\xdf\xff\xfd\xdf\x5f\xd4\xd6\x66\x25\x14\x90\x13\x90\xf7\x2b\xb5\x4b\xdc\x28\x78\xde\xb8\xe1\x18\x3f\xc4\x5d\x14\x84\x25\xaf\xc3\x32\xd3\x4e\xe2\x07\x98\x04\x23\x7e\x4e\xa5\x0f\xf1\x61\xba\x1c\xd5\x09\x4d\x5b\x8b\x5e\x4d\x6e\x8e\x0b\x12\xe0\x45\x16\x1f\x4d\x99\x88\xe3\xa9\xbc\xa6\xa2\x98\xd3\x40\x69\x1a\x84\xda\x79\xdc\x66\x57\xa9\xc0\xed\x1a\xcb\x49\x3b\x2f\x94\xa2\xf6\x06\xca\x8e\x68\x7c\xab\xc7\xa4\x46\x1e\xbf\x42\xa8\x04\x99\x7e\x57\x99\xc6\xb0\xa8\x69\x33\xd7\xad\x4d\x58\x03\x5a\x5a\xc1\xea\x22\x43\x2c\x37\x5b\x63\xb3\x6b\x39\x74\x57\x66\x8b\x06\x68\xeb\x1d\x8b\x43\x16\xe5\x6c\x79\x33\x29\xae\xaa\x14\x4f\x4f\x7b\xf5\xb8\x52\x3c\xed\xd7\xd8\xf2\xe6\xe2\xb0\xe3\x6c\xa7\xc9\xd5\x09\x71\x08\x26\xf1\x91\x30\x75\x39\xff\x25\x23\xb6\xb8\x04\x8c\xd3\x32\x69\x67\x16\x13\x8a\x9f\xfc\x6a\x8e\x10\x5c\x46\xaa\x57\xd3\x70\xbd\x41\x9d\x83\x59\x5e\xe7\x62\x76\x79\x57\xe7\xe3\xef\xfd\xbd\xbf\xa7\xfe\xf8\x8f\xff\x58\xf6\x5d\xcc\x2c\x64\x9a\x55\x99\x61\x97\x9b\x64\x21\x63\x89\xca\x8b\x5d\x3e\xa9\xeb\x4e\xad\x31\xca\x33\xae\x43\x6a\x10\xc6\xf9\x2f\xaa\x53\x57\xdb\x96\x69\xc4\x5d\xe5\x3e\xce\x75\xaa\x7e\x71\x08\xd2\x64\x59\x86\xeb\xd7\xaf\x6b\x2b\x10\x23\xa1\x63\x69\xa1\x8c\x27\xb3\x01\x7e\xd7\x49\x22\xc2\x64\x4b\xdd\xd1\xd4\x43\x9d\xa3\xdc\xda\xc3\x67\xfb\x13\x7d\x51\xd5\xc8\x21\xc6\x6b\x4b\x8b\x84\x30\x1f\x3b\x13\xbb\x98\x4d\xe0\x27\xa5\x04\xe9\x02\x9b\x06\x59\xba\x48\xcc\x1b\x03\x5c\xc1\x2e\x3f\xcb\x54\x63\x27\xbd\x0d\xd2\xc4\x62\x5d\x56\x36\x33\x39\x7f\xc7\xc5\x0f\x2f\x64\x53\x99\x08\xf3\x01\xed\x1f\x5d\xc8\xdf\x38\xba\xd4\x7b\x63\xba\xa1\xee\xea\x0c\x47\x0c\xb7\xa5\xbf\x75\x11\xb9\x8d\xdc\xec\x4a\x22\xe3\x7a\xa9\x00\x77\x18\x66\xd7\xa1\x81\x8b\xc6\x58\x2a\xc4\xe3\xad\x6b\x6c\x76\x95\xe3\x82\xd6\x5a\xbe\xc7\xd6\xd6\x96\x1a\x8d\x46\xfa\x8f\xfe\xe8\x8f\x00\x00\xa3\xd1\x48\x03\x0d\xd8\x7a\xe5\x95\x57\x74\xea\x4c\x18\xfb\x5c\x82\x9f\xad\xad\x2d\xb7\x24\xd5\xec\x06\xbc\x88\x56\x53\xed\x75\xf1\x95\x52\xf8\xed\xdf\xfe\x6d\xb5\xb5\xb5\x15\x58\x7d\xec\xfc\x0e\x96\xbb\xc4\x82\xf2\xa2\x52\x83\xa2\xa6\x6d\x00\xb9\x1b\x69\xc2\x62\x17\xbb\x31\x9b\xbc\xc2\xfb\x84\x51\xc5\xf0\xe2\x48\x66\x18\xda\x69\x5c\x9a\x51\x1e\x64\xb7\x03\x10\xb4\x11\xe5\x4b\xd1\x38\x35\xb4\xa0\x7a\x35\x6d\xf5\x6b\xca\x67\x19\x2b\x50\xe0\x06\x72\xe5\x36\xc9\x24\x50\x72\xef\x5d\x7c\x22\xca\x15\x53\x91\x31\xad\x19\x50\x17\xd0\x8e\x24\x1d\xf7\x1b\x3d\x4f\xcd\x75\x88\xe9\xd4\x83\x27\x43\xab\x2d\x1f\xb1\x48\x1e\xf5\x95\xbc\x0e\x56\x06\x12\x49\xb9\xa9\x88\x3d\x68\xb1\x3c\xac\xcb\x6a\xf5\xbb\xbf\xfb\xbb\xea\xc6\x8d\x1b\xf8\xc1\x0f\x7e\x20\x1f\x2f\xe2\xcd\xf2\xd7\xc6\x6d\xed\xe3\xb2\x88\xc1\xaf\xc2\xf8\x01\xc0\x4e\x02\xb3\xfe\xad\x78\x42\x98\x03\x31\x55\xc6\xe5\x69\x4f\x8f\xab\x8c\x27\x98\x07\x19\x04\xe0\xc3\x4d\xd6\x43\xfb\x63\xa6\xb0\x4c\x8a\xc5\x76\x21\x1e\xbf\xdc\x53\xe6\x69\x19\x72\x02\x95\xb6\xb2\x21\x64\x9a\x06\xeb\xb3\x6c\x77\x58\xaa\xc1\xf1\xa0\x96\x48\x1c\xe8\xb0\xb4\xfc\xf1\x1f\xff\xb1\x8e\xde\xaf\x6c\x26\x43\x77\xff\x7f\x14\x8b\x48\x0a\x1c\x2d\x63\xdc\xcb\xca\x4a\x59\xe9\x16\xb5\x71\xd9\xf3\x54\x59\x8b\x2c\x81\xab\xe6\xff\x51\xae\xbb\xea\xd3\x4a\x63\x57\xa7\x58\xc1\x71\xed\xda\x35\x20\x14\x5e\x95\x21\xf0\x12\x21\xb1\x3b\xf0\x02\x40\xb1\x22\x4c\x37\x14\x8e\xa8\xa7\xeb\x9c\xca\x33\x7b\xd5\x73\x83\xb1\xbe\x9c\x55\x18\xb4\xb8\xb2\x08\x81\xc6\xe7\x68\xca\xdc\xc2\x30\x49\x47\x58\xcd\x68\x0f\x20\x4a\x04\x5a\xda\x45\x79\xda\x72\x7b\x1f\xc1\xab\x08\x6c\xfe\xc9\x32\x6d\xb2\x36\x19\x09\xea\x0b\xe6\xa4\xd9\x45\xdc\x3e\xad\x36\xfb\xb4\x3c\xba\x90\xbf\x71\x74\x31\x7f\x6b\x36\x54\x77\x39\xc3\x18\x44\x63\x32\x1b\xb3\xc9\x79\x2d\x66\x22\xae\x5b\x06\x1c\x4d\x7c\x8d\xf7\x2b\x49\x81\xdd\x55\xae\x11\x3d\x4b\x29\x0d\x71\xba\x55\x68\x49\x01\xd0\x16\xa8\xd8\xdf\xf3\xe7\xcf\xab\x83\x83\x03\xfd\xca\x2b\xaf\xe8\x0b\x17\x2e\xa8\x84\x8b\x0b\x40\xdb\x62\x63\xd2\x7f\xd4\x36\xb6\xf8\xd8\xbf\xfc\x97\xff\x52\x47\x13\x73\x1d\xbf\x93\xae\x23\x62\x28\xc5\xc8\x55\x23\xe4\x5c\x90\x13\x48\x9b\x61\xe8\xc7\xa4\x3f\x0c\xd4\x8f\x3d\x37\x42\x9b\x01\xdc\x16\xe6\x4d\xa6\x62\x7e\x54\x98\xce\x42\xe0\x60\x6f\xa0\x44\x90\x94\x20\x36\x51\x54\x99\xa6\x61\xaf\xa6\xa2\xcc\x58\xb1\xa7\x53\x00\xc1\x7e\x2d\x9a\xc5\xde\x3a\x42\x91\x85\x88\xe3\xfa\xc9\xc1\x72\x63\xb1\x6c\xfe\xb3\xf9\xef\x65\x11\x60\x94\x0f\x72\x5b\x50\xfa\xd0\xc2\x30\x21\x50\x89\x9b\x2a\xed\xab\xf2\x55\x10\xaf\xe3\x3a\x94\x89\xa4\x88\x91\x9b\x0d\x58\x53\x73\x7b\x0c\x80\x6c\x30\xc0\xef\xff\xfe\xef\xeb\x6f\x7c\xe3\x1b\x8b\x14\xea\x55\x64\x87\xce\x13\x0f\x63\xc2\x5b\xa6\xf5\x2e\xd4\xbe\xc9\xaf\xac\xd1\x80\x63\x14\x1a\x80\x9e\x67\x5c\x4e\x0a\x3d\x6e\x26\xe8\x46\x48\xb2\x0b\x91\xc8\xe7\x2d\x8d\x2e\x7a\x98\x40\xaf\xad\x64\x32\xaa\xbb\x97\x1a\x68\xbb\x1e\x01\x12\x05\x90\x69\x2a\xd6\xe6\x6a\x67\xbd\xcc\x36\x80\xb9\x1b\x94\x42\xe3\x08\x10\xf8\xb5\x6b\xd7\xd4\xc1\xc1\x81\x05\x2f\xab\x58\x2d\xe2\x67\x1f\x05\xa0\xa4\xf2\x5c\x54\x46\x1c\x16\x7e\xe7\x15\xca\xfc\xa8\xe9\x57\xcd\xff\xff\x2b\xc1\xf6\x43\x85\x06\xe0\x6a\x73\x5d\x0a\xa6\x16\x1c\xbd\x0b\x82\xe6\x8c\x30\xdd\x50\x5a\x67\xbd\xaa\x2a\x68\xb2\xf5\xa0\x1a\xaf\x1f\xe9\xab\xf9\x8c\xb7\xe3\x15\x3a\x3e\x9d\x00\x23\x62\x7e\x88\x5f\x85\x20\x98\xbb\x29\x28\x66\x5c\x5d\xac\xdd\x9a\xa4\x6d\xfa\x80\x66\x84\xf0\xb1\x5a\x5c\x98\x16\x0e\xd8\xc4\x02\x87\x83\x18\x7e\x3a\xa0\x15\x50\x75\x8f\xc6\xa7\x9b\xea\xf6\x68\x37\x7f\x7b\xf4\x44\xfe\xd3\x72\x8d\xee\xb3\xc2\x88\x81\x31\xb5\x5d\x44\xc1\xdc\x16\x44\x2e\x22\x5b\x6c\x02\xb4\x00\xab\x8d\xa9\x45\xb4\xd4\x65\xa9\x58\x64\x4d\x5c\x15\x14\xe1\xe0\xe0\xc0\x3d\xbc\x7f\xff\xfe\x2a\x3c\x24\xd5\xb6\x45\xe0\x3c\x15\x82\x38\xda\x98\x85\x16\x05\x2b\xb0\x18\x50\x9a\xa0\x74\x94\x87\x9f\x40\xee\xed\xe1\x1e\x53\x08\xb8\xe1\x18\xb1\x7c\x6f\x53\x34\xc1\x8e\x1d\x6a\x8d\xeb\xd0\x12\x11\x2a\xa8\x08\x5c\x30\x61\xbd\x4c\x89\xce\x40\x69\x76\x65\x26\x58\xd0\x02\xf6\x1b\xd0\x01\x1d\x16\x34\x0e\xf7\x78\x71\xef\x2a\xc5\xba\xcc\x75\xa5\x15\x57\x1e\x60\x99\x36\x04\x0a\xb7\x6f\x89\x80\x53\xae\x2f\xe2\xa7\xa9\x20\x73\x6c\x6f\x1f\x99\x96\x8f\x96\xa5\xc4\x16\xd7\x48\xfc\x36\xe0\xcd\xb7\x4d\x45\xa0\x6d\x91\x3c\xb1\x61\x19\x2d\xb4\xd2\xa7\x88\x4d\x47\xd7\xab\x0c\x72\xf7\xb1\xe4\xe6\x5b\x71\x3e\x72\xbf\x00\xa0\xd9\x3d\xf7\xa4\xa8\x8f\x67\x99\x1e\xdb\x95\x45\x8c\xd8\x33\xc3\xe1\xce\x9b\x8e\x41\x23\xb2\x92\x58\x84\x2e\xb5\x33\xa3\xff\x89\xaf\x69\x80\x7a\x70\xef\xca\x23\x91\x0c\xe1\xc0\x0e\xe6\xb8\x44\xdc\x5c\x01\xc5\xa0\x52\x3b\x9b\xd3\xfc\x9c\xd2\xcd\xd6\xd6\xf0\xcb\xa2\x03\xc4\x6d\x83\xb0\xb8\xac\x12\x52\xa6\xe9\x2e\x73\xb5\x7d\xd7\x65\x66\x93\xcf\xba\x98\x6b\x57\x48\x31\xd2\xd4\x7d\xaa\xcc\xb8\xbc\xd8\x12\xd5\xd5\x9e\x45\xf1\x16\xd5\xf7\xe7\xcd\x7b\xd5\xfc\x96\xa6\x21\x22\xf5\xd9\xcf\x7e\xd6\x2d\x05\x4c\xcc\xf7\x72\x73\x5e\xcc\xea\x22\xbb\x49\x9a\x9d\xa8\x3b\x61\xf0\x88\x33\x1a\x95\x43\xba\x7b\xfc\x44\x7e\xf3\xf0\xa9\xde\x6b\x8f\x2e\xe4\x6f\xce\xd6\xb3\x7b\x3a\x33\x93\xdb\xdd\x2a\x9f\x26\x34\x3e\x6f\xbb\xc4\x92\x05\xd9\x84\x06\xe5\x18\x9c\x04\x73\x00\xfc\xbf\x28\x0d\x39\x55\x94\x64\xb9\xb2\x7c\x93\x99\x15\x37\x16\x3c\xd9\x65\xdd\xe1\xb1\x02\x70\xf4\xec\x5c\xbb\x96\x0e\x89\xa0\x15\xaa\x72\x8d\xf6\x8f\x77\xb2\xb7\x0f\x9e\xee\xbd\x76\x74\x21\x7f\x6b\xb6\xae\xee\xb2\xc2\x08\xe2\x10\x42\xeb\x22\x62\xb1\xa5\xbd\xe9\x57\xbb\x9d\xbe\x3b\xc9\xd6\x7e\x87\x17\x5e\x78\x61\x11\x3d\xc8\xe7\x2a\xba\x4e\xc5\x91\xcf\xba\xde\xcb\x77\x5d\x79\xc7\x8c\x7d\x51\xfd\xec\x75\x3c\x9e\x53\x75\x8d\xaf\xe3\x3a\xa7\xda\x95\x7a\x0e\xa5\x94\xb2\xd6\x16\xb9\x57\x47\x34\x49\xb5\x29\x83\xa0\xb4\x62\xad\x15\x57\x68\xd1\x6c\xc2\xba\xcd\xcd\xb8\x72\x80\x5a\xc0\x9a\x66\x3c\xc3\x95\x25\x8c\xe6\x49\x01\x1b\x96\x64\x78\xb9\xdb\x0d\x5d\x58\x25\xc4\x9f\xc9\x3c\x48\xcb\x46\x66\x55\xaa\x69\x5f\xbc\x6a\x46\xf4\x83\x94\x73\x4a\x8c\x37\x5b\x67\xc5\xcc\xaa\xca\x18\xd3\x9c\x67\x95\xe2\xa9\x5b\x59\xcb\x61\x1b\x7c\xef\xd8\x4e\xf1\x4f\x5b\xf0\x9e\x3d\xcd\x41\x3c\x8b\xfb\x22\x9c\x32\x61\xa1\x8f\x90\x6f\xe6\xa9\xcd\xa6\x3d\x25\xbe\x09\x9a\xb8\x3a\xed\xd5\xa3\x71\xbf\x1e\x95\x99\xdf\x07\xc9\xf4\x43\x30\xaf\xc5\x2a\xef\x0b\xe6\x91\x2d\xa2\xad\x38\xfe\x52\x57\xd1\xe3\x3c\x6b\x09\x10\xe1\x1e\xb2\x0d\x72\x8c\x9a\x99\x75\xad\x50\x4d\x73\x3d\x99\xe5\x7a\xa4\x89\x2b\xc5\x54\xb4\x8d\x2c\xf1\x47\x6c\xfe\x3b\xad\xcd\x68\x75\x5d\x46\x18\x89\x6e\xdc\x3b\x01\x62\xbb\x34\x4a\x59\xb6\x65\xdb\xbe\x4c\x23\x0e\xec\x3e\x2f\x0c\x55\x54\x6a\xeb\xcc\x34\x7f\xa2\xa8\xa9\x98\xe6\xad\x25\x61\x5d\xcc\x00\xe2\xf9\xa2\xfe\x8c\xc1\xe3\x32\xcd\x70\x99\xb9\xad\x0b\x84\xc6\x71\x63\x46\xb9\xec\x9b\x77\xd5\x69\x99\xb6\x97\xba\x5f\xa5\xcc\x55\x41\x56\x97\x66\x9c\x6a\xef\x2a\xf9\xa5\x9e\x77\x7e\x43\x66\xd6\x6f\xbd\xf5\x16\x80\x06\xd8\xdb\xad\xd1\x4d\xb0\x96\x97\x2a\x5e\x3a\x98\x5a\x99\xc7\x8a\xf4\xbc\x0f\xad\xcf\xe5\xb3\xba\x50\x93\xf9\x80\x46\x1b\x07\xf5\xb3\x6b\xa3\xfa\x72\x56\x61\x08\x36\xc7\x04\x40\x58\x34\x5a\xdc\xab\xbd\x30\x99\x3c\x97\x72\x23\xbd\x51\x14\xec\xde\x2d\xb1\xa5\x52\xe8\x65\x02\xe8\x93\xd0\x00\x82\x52\x8c\x3a\xc9\xb6\x5d\x29\x67\xba\x01\x5a\x41\x50\xd0\x55\x8f\x26\xb3\x75\xb5\x77\x72\x36\xbb\x35\x3e\x9f\xfd\x74\xb2\x95\xdd\xa9\x7b\x74\xc4\xe0\x89\x59\x39\xe4\x00\x0b\xcc\x39\x3c\x66\x4e\x4b\x60\x6d\x21\xbf\xe5\xbd\xeb\xcf\xf7\xdf\x7f\x1f\xaf\xbe\xfa\xea\xaa\xf4\x90\x7a\x2e\xdf\xc7\x5a\x63\x57\x1e\x29\x86\x9d\x2a\xff\x71\xea\xb1\x2a\xfd\xc8\xf8\x2b\xf1\xf1\xae\xe7\x5a\x6b\xfd\xca\x2b\xaf\x00\xf0\x07\xe9\x59\x01\x25\xac\x87\x2e\xd4\xc4\xa8\x89\x83\x7c\x52\x5a\xbf\xe5\xd1\xd2\x9d\xe1\xdf\x5b\x4d\xde\x3e\xa4\x60\xfe\x05\x37\x26\x82\x4e\xa3\x7d\x93\x83\x7f\x19\x4e\x0b\x90\x54\x01\xc4\x99\x30\x80\x79\xc6\xd3\x4a\xb9\x73\xad\xe2\xf6\x7a\x6b\x8f\x99\xd7\x62\x85\xb8\x78\xee\xe2\x57\xc4\x7a\x96\xe9\x72\x9e\xf1\x94\x09\x15\x98\x8b\xc6\x43\xe0\xa9\xa0\x59\xfa\x6d\xfb\xc1\xd0\x48\x24\xef\x9c\x84\xb2\x4a\xbb\xf0\x32\x90\x8c\x28\xe9\x54\x08\x41\xd7\xea\xb8\xc3\xa2\xf8\x91\x8e\x81\x4a\xf1\x64\x34\xa8\xee\x1d\x0e\xe7\xf7\x67\xb9\x76\x2b\x83\xa5\x87\x21\xee\x97\xc4\x3c\x32\x79\xdd\x65\x71\x69\x8d\xfb\x60\xf9\x2e\x16\x13\x8d\x0d\x9d\x8c\xff\xc2\x85\x0b\xea\xfe\xfd\xfb\x5a\x54\xd6\xfa\xfa\x24\xb3\xd0\x40\xb3\x19\x17\x03\xd5\x3c\xd3\xd3\xd3\x5e\xb3\xb2\x28\xaf\x11\xf8\x3f\x53\xfe\x7b\x6b\x31\xf1\x03\x37\x11\x2f\xfa\x00\xe1\xc0\x17\xd1\x05\x65\x84\x83\x21\x32\x8d\xc5\x79\xb9\x8f\x62\x2f\x49\xe5\x9a\x86\x9b\xb3\xec\x62\xbf\x52\x83\x69\x5e\x3b\xe0\x92\x30\x23\xa6\x42\x8a\xa1\x2d\x0a\xab\x30\xa3\x55\x18\xe2\xb2\xfc\x57\xb1\x68\x7c\x24\x50\xfb\x57\x10\x96\x59\x87\xba\xc2\x2a\x63\xfc\xaf\x35\x0f\x03\x5e\xec\xad\x42\x03\xe4\x2d\x78\x89\xb5\x0c\x2b\x6c\xad\x16\x57\x31\xa0\xeb\x9c\xaa\xc9\x96\x2a\xe7\xfd\xde\x78\x36\x54\x87\x9b\xfb\x74\xb4\x7e\xa4\xaf\xf4\x4e\xf5\x39\xd5\xd0\x91\x72\x2a\x98\x01\x1f\x0e\xa0\xc4\x26\x43\x81\xe6\x99\xe5\xc8\x8f\x28\x87\xe0\x98\x2a\xdb\x73\x8e\x2c\xde\x11\xb6\x6e\x47\x4b\x46\xa8\xc4\x0a\x83\x9b\x88\xe9\xca\xa0\x90\xe6\x4c\x9d\x75\x86\x69\x39\x50\x47\xa7\x67\xb2\xdb\xe3\xb3\xd9\xbb\x93\x6d\x75\x7b\x36\x54\x0f\x38\x33\xcb\x9c\xd9\xb9\x86\xa6\x06\xc0\xc8\x6d\xee\xed\xdc\x96\x94\x7b\x48\xdb\xef\x10\xf5\x75\xd7\x98\xfa\x28\x80\x76\x59\xbc\x14\x80\xff\xa8\xb4\xb3\x88\xee\x1f\xa7\x4e\xa9\x7a\x2c\x05\x4b\x52\x8b\x4e\x4d\xca\x6c\x04\x35\xa0\xa9\x11\xfc\x0c\x68\x78\x71\x09\x20\x0d\x32\x22\x16\xdd\x0e\x76\x28\x93\x17\xe0\x04\xbb\xc7\x8b\x14\xc4\x61\xee\xde\xa2\x2f\xc6\x9c\x1b\x93\x3e\x2e\xc1\xcf\x27\x01\x00\x26\x54\x65\xae\x27\x9a\xd0\xaa\x6c\x6c\x79\x31\xb4\xda\xb9\x9a\xc6\x80\x0c\x3d\xcf\x74\x59\x66\x7a\xa2\x89\xab\x4c\xab\xc2\x5a\x38\x24\xcd\x04\x4a\x85\x28\xd7\xd7\x56\xc8\xaa\x2e\xb8\x16\xa4\x6b\xa9\xf6\xee\xc2\xcd\x39\x12\xd9\x04\x16\x1a\xdb\xb5\x0c\x94\x99\x1e\x3d\x5a\xab\xf6\x1e\xad\x55\x23\xad\xd2\xe3\xb6\x6b\x92\x2e\x96\x8f\x51\x39\x96\x75\xfc\x4c\x0a\x9f\x9f\x67\xb0\x6b\xc0\xfb\x5a\xe5\xea\x09\x39\xc7\x85\xdb\xe7\x61\xe8\x4a\x71\x79\x5a\xd4\xe3\x4a\x61\x1a\xd8\x9b\xc5\xfc\x14\x19\x1c\x03\x84\x60\xa2\x02\x11\xcb\xf7\xf2\x59\xd0\x7d\x62\xbb\x7f\x00\x02\xd1\xfa\x81\xd0\x98\xca\xda\x2b\xda\x6d\x5e\x0e\xc0\x98\x44\x99\xa6\x62\xbd\xcc\x2e\xae\xcd\xb3\x21\xfc\xde\x05\xad\xe5\xd1\x76\x20\x0b\xad\x3b\x36\xef\xa6\x42\xca\xac\xdb\x65\xaa\x8e\x19\xa1\xfc\x5d\xf6\x3c\x2e\x2f\x95\x97\x0c\x1a\xed\xba\xc5\x56\x9a\xae\xbc\x53\xcf\x97\x05\x59\x56\x5c\xce\x32\x13\x78\x57\x39\x5d\xdf\xa1\xeb\x3a\x55\x97\x38\xbd\x4a\xbc\x77\xe1\x77\x7e\xe7\x77\x5a\x74\x47\xcd\x96\xee\x1a\x62\xd9\xae\x70\x1b\xb9\xbd\x5d\xcc\xdf\x08\x84\x11\x67\x74\x54\xae\xd1\xfd\x47\xbb\xf9\x8d\x07\xcf\x14\x3f\x3c\x78\xaa\xf7\xda\xf8\x5c\xf6\x6e\xb9\x46\x87\x3a\x43\x09\x45\xda\x8d\x5f\x01\x26\xec\x32\xca\xb6\x19\x99\x22\xfa\x21\xc0\x6d\xce\xc5\xc2\x8c\x2d\x6c\x35\xb1\x54\x71\x69\xfd\xc6\x61\x31\xb3\xf5\x98\xc5\xa3\x9c\x26\xae\xb1\xec\x64\x28\xcb\x01\x1d\x8e\xcf\x66\xb7\x1e\x5e\xca\x5f\x3f\xb8\xdc\xfb\xf3\x47\x17\xf2\xb7\xa7\x1b\xd9\x1d\xad\x70\xc4\xcc\x23\x00\x23\x22\x1a\x19\x77\xda\x88\xfd\x29\xc8\x53\x6a\x76\xc9\xb5\x5b\xe3\x5b\x45\x49\x9e\xc2\x8c\xbb\x77\xef\x62\x77\x77\xb7\x8b\x86\x16\x8d\x2b\x79\xdd\x35\xd6\xbb\xc6\xdf\xaa\xe3\x75\xd1\xd8\xb2\xf7\x71\x5d\x63\xf0\x92\xaa\x43\x5c\xef\xae\x31\x1a\xe7\x1d\xc7\x6d\x84\x87\x52\x0a\x68\xb4\x68\xeb\x0a\xb1\x7f\xb1\xfb\x08\x00\x34\xb1\x3e\x29\xea\x43\x4d\x1c\xec\xdb\x95\x02\x27\x96\x17\xa3\x35\x46\x45\x3c\x82\xd8\x9f\x45\x0a\x58\x0a\x13\xb1\x90\x2c\x9c\x1c\xac\x62\x05\x30\x09\xbe\xef\xed\x12\x0c\xe8\x5a\x71\x39\xe9\xe9\x11\x8c\xd5\x4e\xb6\x13\xf0\x42\x5a\xba\xcc\xc8\x1c\x56\x29\x5c\x48\xb6\x7f\x35\x83\xcd\x3c\xcf\xfa\xa8\x56\x3c\x6d\x64\x8e\x68\x27\x7b\x39\x13\xcc\x29\x63\x6b\x1d\x8a\xfa\x85\x7d\x2c\x21\x49\xd3\xa0\x2f\xf1\x4e\xca\x3e\x0f\x06\xe3\x34\x86\x1b\x10\xeb\x69\x4f\x8f\x46\xfd\x7a\x7f\x9a\xeb\x52\xca\x76\xe9\x65\x11\x6e\x71\x00\x9d\x5b\x0e\xd8\xb0\x8c\xfe\x6c\x9c\xc7\x12\x22\xab\x08\xd8\x54\x70\x68\x49\x7c\x64\x07\x62\x6a\x85\x72\xd2\xd3\xe3\x4a\xf1\xd4\xe2\x45\x69\xd5\x90\xd0\x85\xe5\xd7\x40\x84\x04\xed\x8b\xa8\xb7\x1b\x06\xcd\x32\x86\x67\xbb\x2e\x1f\x39\xf8\x65\x62\x3f\x3f\xc0\x7d\x30\xb6\xdb\x8e\x37\x19\x58\xf4\x4e\x40\x3e\x98\xab\xdd\xad\xd3\x6c\x0b\x40\x4e\x08\xb6\x3e\x4e\x6a\x24\xff\xe0\x1f\xfc\x83\x14\xa2\xec\x62\x86\xa9\x78\xa9\x38\xa9\xfb\xd4\xf3\x58\xab\xea\x2a\x2b\xf5\x3e\xce\x3b\x8e\x1f\xe7\x2b\x7f\x1f\x07\x24\xa7\xca\x94\x7d\x94\xd2\x0a\xbb\xe2\xc4\xf1\x02\x42\x58\x52\x2f\xf9\x4d\x62\x50\x97\xea\xe3\x85\x6d\xfc\x83\x3f\xf8\x03\x3d\x9d\x4e\x5d\x5c\x41\xdc\xc1\xc6\x74\xe4\x8f\x04\xb0\x7b\xbc\x8c\xe1\x37\x56\x33\x00\x86\x46\xac\xe8\x68\xba\x99\xdd\x39\x78\xba\xf7\xfa\x83\xab\xc5\xf7\x1e\x5e\xea\xbd\x7e\x72\x36\xbb\x55\xae\xd1\xa1\xce\x69\xca\x04\xed\xd8\x1e\x8b\xad\xd1\x6d\x0d\x02\x5e\x1e\x71\x4e\x0a\x27\x3b\xba\x04\xd2\x84\x62\x37\xa2\x33\x92\x46\x32\x58\x9b\x8e\x3d\xb1\x39\xa6\x0b\x22\x37\x2d\x87\x41\xa8\x33\x2a\xe7\x03\x75\x78\xb2\x9d\xbd\xff\xe8\xc9\xfc\xf5\x83\x2b\xc5\x0f\x0e\x9f\xea\xbd\x7e\xb2\xad\xde\xab\x0b\x3a\x00\x35\x60\x85\x88\x46\xf0\xab\x87\x46\xf0\xab\x87\x62\xf7\x90\xfd\x0e\x6e\xe9\x33\x11\x61\x7f\x7f\x1f\x7f\xf6\x67\x7f\x86\xbd\xbd\xbd\x2e\xcb\x64\x7c\x2f\xc7\x6d\xea\x3a\x15\x16\x59\x73\x52\xb4\xdc\x35\x0e\xe3\x71\xda\x55\xa7\xf8\x39\xa2\xdf\xae\x7a\xa7\xe8\x37\x7e\x1e\xd7\x0f\x00\x94\x9c\x9c\x2b\x57\xd0\x88\x6b\x39\xdf\x51\xd7\x0a\xd5\xc3\xe1\x7c\xcf\x2c\xc6\x68\xd2\x8a\x71\xe8\x34\x7a\x78\x5e\x9c\x54\xd8\xc5\x10\x0d\x34\xfa\x96\xa4\xf5\xe3\xcc\xaf\x1e\x4d\xcf\xd8\x90\x72\xc2\x4d\x64\x77\xf9\x31\x98\x50\x4d\x7a\x7a\x7f\x6f\xa3\xbc\x0b\x31\x96\x16\xb8\x45\xdc\xa9\xdf\xd6\x5a\x6a\xe2\xbb\xfd\x75\x88\x48\xcf\x72\x3d\x39\x5a\xab\xf6\xcb\x8c\x47\x0d\xad\x89\xbe\x10\x7d\x12\xba\x8d\x85\x72\x2d\x5a\x2a\x27\xe0\x07\x7d\xd4\xd5\x77\x91\xed\x85\x3a\x7e\x83\x7e\x32\x65\xd4\x0a\xe5\x49\xa1\x0f\x47\x83\xea\xe1\x2c\xd7\x25\x10\x9c\xc5\x26\x41\x4c\x90\xbe\xc3\x55\x64\xef\xbb\xe8\x0c\xe2\x57\x01\x7e\x55\x03\xa2\x0c\xba\x08\x27\x16\x40\xc9\x34\xd2\x8f\x2f\x27\xc3\x91\x38\x29\xd7\x9a\xbd\x2b\xa5\xcb\x93\xa2\x1e\xcd\x33\x1e\x4b\x23\x97\x1b\x67\x08\x3f\x98\x79\xe8\x23\x19\x06\xea\x00\x89\xf9\xd2\xce\x94\x0d\xf9\x3e\xfc\x18\xde\xd5\x1e\x9f\xbd\x12\x15\x21\x3a\x3f\x1e\x28\xf6\x81\x62\xe4\x83\x4a\xed\x9c\x99\xe6\x3b\xb9\xa6\xa2\x52\x9c\xda\x9c\x28\xd0\x90\xfe\xf9\x3f\xff\xe7\x29\xa6\x27\x35\xa2\x14\xe3\x89\x43\xd7\xbb\x65\x82\x3b\x05\x34\x52\xa1\x0b\x20\x2c\x62\xda\x5d\x83\x6e\x51\xe8\xea\x8b\xf8\x5d\x0a\xfc\x2c\xea\xc7\xae\x32\x1e\xa7\x7f\xd0\xf1\xbc\x4b\x50\x2c\xaa\x17\x80\x06\xbc\x00\xee\x8c\x17\xcb\xe0\x14\x99\xf3\x8c\xcc\xbd\xb4\x5e\xc6\x7f\x6e\x7b\x77\x34\x3b\x4f\x97\xba\x47\xe5\xf8\x7c\x76\x7a\xba\x95\xed\xaf\x8d\xea\x5b\xeb\x0f\xeb\x2b\xeb\x47\xf5\xe5\xfe\x44\xef\x66\x73\xde\x50\x35\x0a\xd2\xa4\x62\x13\x79\xb8\x6a\x40\x9c\xf7\xe2\xe6\x0f\xc4\xe6\x67\x6f\xb5\xf1\x8f\x5c\x22\xc1\xc0\x21\xcc\xf9\x86\x56\xc8\xee\x80\x6a\x8a\x27\x68\x56\xa8\x6a\x3b\x8f\x65\x3b\x7b\x7f\x7c\x2e\x7b\x7f\xba\xa9\xf6\xab\x1e\x3d\x02\xd1\x94\xc1\x13\x32\xe0\x84\xfd\xb9\x43\xf2\xc4\x67\x79\xf2\xb1\x3b\x4c\xd0\xb9\xd6\xda\x4b\x9e\xbb\xc2\x22\x30\xbc\x6a\x58\x65\xdc\xa4\xca\x49\xf1\xd6\x14\x1f\x5e\x44\x77\x71\xb9\x29\x5e\x92\x0a\xcb\x00\x7e\x17\x10\x02\xe0\xb5\xe8\x48\x80\x07\x42\x1b\x00\x34\xb1\x3e\x58\xaf\x0e\xca\x5c\x1f\x0d\x2a\x75\x8e\x19\xaa\x05\x4c\x48\xb0\x75\xc4\x4e\x1e\x63\x65\xf7\xab\x27\x42\xeb\xba\xb0\x9c\x3b\x0b\x4c\x8b\xf1\x5b\x4e\xcf\xcd\xa4\x72\x6a\xe7\x93\xca\xbb\xcc\xf4\xe4\xc1\x46\xf9\xd3\xf7\xcf\x4d\x3f\x84\xa0\x43\x31\xfd\x21\x98\xcf\x69\x95\x91\x58\x70\x47\xf4\x8c\x49\xa1\x27\x0f\x36\xe6\xf7\x27\x45\xbd\xbf\x5e\x66\x97\x55\x73\x18\xa5\x89\xbb\xbc\x4f\x5a\x22\xd1\xd0\x5b\x0c\x80\x5c\xba\x08\xe7\x35\xcd\x6f\xef\xd3\x94\xec\x06\x71\x53\x29\x3d\x3e\xee\x57\xfb\xe3\x7e\x7d\x54\x93\xdf\x1f\x09\xd1\x38\x8b\x57\xd4\x2e\x09\x2b\xcb\x89\x45\x9a\xb4\xbc\x5f\x46\xc0\xad\xe7\xb1\x99\x50\xce\x6f\x61\x71\x42\x69\xa5\x78\x7a\xdc\xaf\x1e\xcd\x72\x3d\x66\x37\x71\x8b\xdc\xca\x83\x2e\x33\x97\x89\xd6\xf9\x42\x60\x0a\xb8\x99\xe8\xa9\x98\xc1\xa0\x08\x4d\x7d\x52\x1b\x10\xed\xf0\xcc\xd7\x24\xb4\xb3\xe8\xf3\x9a\x36\xce\x4d\x7a\x4f\xf5\x6a\x8a\x77\x56\x0c\xad\x3e\x6d\x77\x91\x0c\x49\x84\x89\x74\xdf\x2f\x7b\xd7\x05\x66\x16\x59\xd9\x52\xd6\x97\x38\x7d\xaa\xcc\x65\x56\xba\x2e\xe6\xb9\xc8\x74\x98\x8a\x1b\xf7\x4b\x57\x79\x8b\xe2\x74\xd5\x27\x60\xc8\x51\xdc\xb8\x2d\x32\x8f\x45\xe5\x76\xa5\x6b\x0a\x34\x4a\xab\x04\xf8\x26\x4f\x7b\xde\x8c\x3d\xed\xd7\x09\x6e\x18\xcb\x0b\x33\x1f\xa1\x71\x93\x1c\x01\x18\xa1\xb1\xc0\x1c\xd5\x05\x3d\x18\x9f\xcf\x7f\xf6\xe0\x63\xc5\x9f\xdf\xfb\x64\xff\xff\xd9\xbf\x52\xfc\xe0\xf8\x7c\xfe\xf6\x74\x43\xdd\xab\x0a\x1a\xb3\xa2\xca\x6a\x6b\x76\x67\xdc\xc0\xe8\x22\xcd\xc4\xf6\xbd\x35\xaa\x58\xfb\xbd\xe1\x8e\x0c\xc3\x25\xc5\xca\x22\x3b\xa7\xc1\x26\x72\x16\x4b\x6a\x20\x13\x13\x81\x15\xaa\xaa\xa0\xf1\x6c\x5d\xed\x8d\xcf\x67\x37\x0f\x2e\xf7\x7e\xf0\xe1\xa7\xfa\xdf\xbd\xff\xf1\xe2\x87\xe3\xf3\xd9\x3b\x55\x5f\xdd\x67\xc2\x11\x08\x47\xc6\x25\x34\x62\x66\xeb\x1e\x72\x96\x27\xeb\x4e\x8b\xdc\x43\xf2\x2f\x00\x2d\xbd\x5e\x2f\x65\x7a\x8e\xc7\xf4\xa2\xb1\x1a\xc7\x4f\x7d\xdb\xd4\x7b\xf9\x6e\x11\x1d\x21\xf1\x5c\x82\xf5\x24\x78\x58\xd2\x86\x38\x6e\xaa\x2c\xd5\x71\x9f\x4a\x1b\xf4\x4f\xd7\x1e\x32\x80\x10\xdc\x04\xad\x09\x7a\x34\xa8\x46\x27\x45\xbd\xa7\x81\x4a\xd8\xde\x5c\x68\x61\x08\x69\x44\xf7\x03\xb6\xb9\xb5\x43\x4e\x58\x69\xe4\xaf\x71\x69\x44\x79\x5b\x4e\xef\x8f\x6e\xb1\xca\x2e\x09\xfe\x2f\xa7\x1f\x68\x42\x75\xda\xd3\x47\x1f\x9e\x99\xdd\x9c\xf4\xf4\x14\x8d\x0c\x93\xe7\x5c\x39\xa0\x22\x00\x8b\xeb\x13\x69\x75\x8a\xfe\xaa\xb9\xd2\xe5\xa3\x41\x75\x74\xb4\x56\xdd\xab\x15\x4f\x53\xf8\x69\x11\x68\x09\x5d\x4b\xed\xf3\xf7\xe4\x6f\x1c\x3c\x66\x4b\x2b\xe6\x00\xbc\xa5\x4a\x98\x68\x19\x8c\x69\x4f\x8f\x46\x6b\xd5\xfe\x69\x4f\x8f\x85\x9b\x3b\x58\x39\x2c\x15\xaf\xc8\x65\xd4\x65\xe5\xec\xa2\x9d\x16\xdf\x5c\xb6\x73\x6e\x17\x31\x74\x0d\xf4\xd4\xc7\x92\xe9\x01\x81\x52\x89\xa8\xaa\x15\xaa\x49\x51\x8f\x27\x45\xbd\x5f\x13\x4a\xd5\x9c\x63\x11\x9e\x4b\x12\x7c\x39\x73\xd3\x61\x21\x94\x0a\xa2\x37\xb8\x84\x56\x94\x20\xb0\x61\xdb\x81\x23\x3e\x01\x57\x83\x90\xb2\xe7\x01\x19\xd3\xe0\xdc\x69\xef\xd9\xb5\x79\x36\x9c\xf6\xf4\x88\x85\xc0\xa3\xf0\xd4\x4c\x0d\x24\x27\x07\x3e\x6e\x58\x94\x7e\x65\x90\x19\x3d\x5f\xc6\xb0\x57\xc9\x37\x95\xd7\xe3\xa4\x5b\xe5\x3e\x95\xdf\xe3\x94\xf7\x51\xdb\x91\x7a\xbe\x6a\x3d\x5b\xf1\xff\xf1\x3f\xfe\xc7\x1a\x70\x27\x02\xbb\x49\x7d\xf0\x56\x95\x60\xd7\x69\x0a\x0f\xd2\x2b\x20\x00\x8e\xf9\x1b\x00\x18\x80\x30\xd0\x39\x4d\x27\xdb\xd9\xc9\xe4\x4c\xb6\x97\x95\x7c\x73\x30\xd6\xe7\xd6\x8f\xaa\x8b\xc3\x47\xf5\xc5\xfe\x84\x77\xb3\x92\x37\xb2\x1a\x05\xd5\x5c\x10\x43\x49\x4b\x65\x48\x7b\xf1\x46\x5f\x14\x3c\x77\xd1\xc4\x29\x71\x66\xd2\xba\xc9\x84\x1a\xc1\xa5\x50\xe9\x9c\xa6\x55\x8f\x26\xe5\x1a\x1d\x9e\x6e\x65\x1f\x9e\x9c\xcd\x3e\x3c\xdd\xcc\xf6\xab\x3e\x8d\x41\x38\x85\x38\x78\x92\xa2\x9d\x6f\xe1\xdd\x66\xf6\xda\x9e\xb0\x5d\x72\xb3\x1b\x77\x33\xe9\x3f\x5c\x8e\x1a\xd0\x59\xc7\x6e\xb1\x8b\xbe\x9f\xe4\x81\x8b\xd2\x2e\x03\xf8\x8f\x53\xa6\x8c\xf3\xb8\x34\x17\xf3\xe8\x8f\xca\x63\x16\xd5\x3b\xc8\x5b\xce\x5b\x88\x2d\xec\x80\xdb\x29\x5d\x03\xa8\x26\x85\x9e\x1e\x0e\xab\xf7\xcf\x4f\x7a\x9f\xcb\xe7\x6a\x20\x0d\x1e\x29\xc3\x07\xc9\x81\x48\xd6\x3e\x10\x09\x5b\x4a\xb3\x6a\xbb\x59\x9b\xa9\x57\xdb\xfa\x21\x6f\xc4\xea\x9d\x38\x5e\xad\x78\x3a\x5a\xab\x3e\xfc\xf0\x4c\x79\xc7\x58\x37\x35\xc1\xd3\x24\xe0\xa7\x41\x84\x2e\x9d\x70\xe3\x55\x08\xc1\x6e\xfa\xa4\x22\xa2\x6a\x9a\xeb\xf1\xfd\xcd\xf2\xfd\x27\x47\xfd\xc3\xa2\x52\x1b\x12\x20\xc8\xd5\x3c\x0c\x4f\x5f\xc2\xd9\xd0\xea\xac\x06\xcc\xa5\xdb\xdb\xb6\x9d\x8a\x2e\x70\xe5\x45\x13\xe5\x4d\xde\xd6\x9a\x53\x29\x9e\x3e\x1c\x56\xb7\x1f\xac\xcf\x3f\x3c\x29\xea\x09\xfe\x5f\xf6\xde\xfc\xd7\x8f\xe3\xb8\x17\xfd\x54\xcf\xf2\xfd\x9e\x8d\x3c\xa4\x48\x8a\xa2\x56\x5b\x8e\x65\xd9\x96\x17\x1e\xda\xb2\xe3\x97\xf8\x06\x49\x6e\xf0\xb2\xd8\x46\x82\x08\x08\x90\xc4\x40\x60\xf9\x8f\x12\x13\xc0\x36\xfc\x80\xc4\x59\x9e\xe3\x3c\xc4\x41\x5e\x80\xc4\xc9\xf5\x7e\xa9\xd5\x72\x6c\x99\xd2\xa5\x24\x8a\x22\x29\x2e\x87\x67\xf9\xae\x33\xdd\xef\x87\x99\xee\xa9\xa9\x6f\xf5\x7c\xe7\x90\xf4\xbd\xb9\xef\xde\x06\xce\xf9\xce\xf4\x54\x57\x57\x57\x57\x57\x57\x57\x6f\x95\x13\x22\x94\x07\x8b\x7a\x0b\x54\x9d\x67\x76\x10\xdd\xdb\xf9\xde\x75\x00\x9d\x04\x8e\x35\xa4\x5e\x0d\x83\x29\x93\x05\xab\xb3\x48\x30\xd9\x1d\x94\xd7\x0a\xe3\x46\x99\xa5\xa1\x48\xd9\x54\x88\xe6\x76\x6a\xcd\x31\xa2\xed\x16\x0c\x2d\xa2\x6d\x98\x2c\x56\x4c\x93\xa0\x52\xdc\xb5\x3b\x51\xe0\xd6\xe7\x5b\x1b\x73\x9f\x1c\xd2\xd5\x99\x79\xe4\xc8\x38\xd9\xdc\x1d\xce\xaf\xcd\x0d\x52\x50\xf0\xbc\x2c\x5c\x24\xe9\x1b\x7c\xd7\x88\xa5\x0e\xcb\x46\x67\x1a\x7c\x97\x92\xd4\x60\xfb\x28\xc8\x98\x72\x3d\x08\x3d\x07\x0d\x7d\xcb\xde\xd7\x2d\x7e\xb7\xe8\xea\x83\xdb\x87\xbe\x74\x85\x5d\x78\x68\x77\x12\x88\x3c\x07\x85\x81\xca\x60\x29\xea\x4e\x7e\x58\xbf\xe7\xf5\xef\xb0\xcc\xb1\xbf\x7f\xd4\xdc\x1c\x6d\xe6\x17\x4d\xe1\xd6\x57\xf6\xec\xe6\x70\xd7\x1e\x1b\x8c\xdc\xd1\x7c\x6c\x37\xb3\x89\x3d\x94\xce\xdd\x2a\x95\x2e\x37\xb6\x3a\x09\x93\xaa\x33\x89\x5a\xa7\x4b\xd7\x73\x4b\x8a\xd6\xac\x82\x33\xd5\x08\x15\x06\xd6\x19\xcc\x6c\x42\xb3\x32\xa3\xd1\x3c\xa7\xbd\xd9\x8a\xb9\x31\x5d\x33\x37\x26\xeb\xe6\xc6\x74\xcd\x6c\xcf\x07\x34\x72\xa6\x32\x56\x1c\xdc\x04\x0e\x33\xef\x39\x81\xd8\x21\x04\x76\x8b\x36\x11\x79\xcf\x4a\x38\x0d\x97\xd8\x6d\xc8\x9c\x4f\xce\x39\xfc\xc1\x1f\xfc\x81\xf9\xcb\xbf\xfc\x4b\x14\x45\x01\xf4\x6f\x0b\xa1\x4e\x94\x77\x99\x86\xc3\x2d\x53\xce\x9a\xc7\xa7\x8b\x1e\x49\x57\x1f\x78\x2d\x2d\x0f\xcb\x68\xeb\xab\xdf\x4d\x9a\xa6\x38\x7b\xf6\x6c\x58\x1a\x20\xbc\x0b\xfe\xb7\xea\xa8\x41\xc5\xcc\xd8\xc9\x1b\x47\x26\xe7\x4f\xee\xe6\x97\xb2\xc2\xac\x26\xd6\xe5\xdc\x28\x76\x61\x6b\x7c\x33\xfa\x24\xd6\x59\xf3\x43\xbd\x82\x17\x9d\x89\x64\xab\x63\xe6\x83\x5f\xee\x45\x04\x5a\x90\x5e\x94\x17\xba\x0d\x00\x0e\xce\x4e\x53\xbb\x77\x6d\x6d\x7e\x61\x67\x50\xec\xb0\xf6\xc6\x4f\x61\x96\x72\xd7\x5a\xef\xc2\x3d\x0f\xde\x80\xf3\xbf\x00\x8a\x49\x66\xf7\x2e\x1e\x9e\xbe\xfe\xc0\xf6\xf0\xfc\xea\x2c\x39\x91\x5a\x1a\x56\xdd\x58\x43\x1f\x1f\x90\x7b\xc3\xc4\x81\xf3\x45\xcc\x1e\xb4\x8c\x3c\xc0\x31\x06\x35\xc7\x24\x80\x5d\x58\xc9\xae\xc4\xe1\x07\xa7\x31\x7e\x78\xa8\xbd\x41\x79\xf9\xd2\xa1\xe9\x6b\xd7\xd7\xe6\x57\x2c\x85\x01\x44\x51\xd7\xb3\x37\x54\xfa\x0c\x06\x7c\xbc\x26\xdf\x31\xbb\xc4\x00\xfa\x1a\x97\xbe\x9d\x57\x67\x3a\xbe\xd0\x49\x18\x1c\xdc\xfa\x2c\x88\xc8\x16\xe4\x66\x3b\xc3\x62\x7b\x9e\xd8\xd1\x4a\x61\x8e\x02\x5c\x88\xd8\xe1\x44\xad\x51\x5f\xfd\x5d\x71\x94\x00\xed\xf9\xbc\x45\x2b\x53\xc1\xc3\x46\x8a\xa1\xa2\xda\xf3\x4d\x2c\x3d\xfb\xf5\xeb\x00\x2a\xc9\x32\x83\xc2\x1c\x3b\xb1\x9b\x9f\xba\x74\x68\x76\x71\x6e\xac\x76\x83\xa8\xf7\xbe\x58\x20\x18\x2d\x5a\x85\xc5\x94\x60\x4c\x89\xc6\xa6\x45\x62\x8a\x58\xcb\x43\xc6\x77\x75\xbe\xb1\xa9\x91\x2e\xe3\xa6\x8f\x3b\x3a\x46\x57\x57\x1e\x92\x8e\xbe\xae\x7f\xfe\x2d\xf6\xab\xe1\x8f\xd1\xa1\x19\xf5\x5d\x2e\x7a\x00\x30\x59\x96\xf1\x75\x61\xe1\x38\x01\xe9\x6a\x65\x6b\x08\xb8\x02\xf4\x4a\xd4\xdf\x32\x3d\xf4\xcf\xce\xb9\x21\x11\xcd\x40\x98\x00\x94\x3b\xe7\x72\x18\xe4\x65\x4e\xfb\xfb\x9b\xc9\xce\xe8\x70\x72\xd9\x94\xc8\x93\xb9\x5b\xcd\xc7\x76\x3d\x1f\xdb\xf5\x74\xea\xd6\xd3\x99\x5b\x4d\xe7\x6e\x35\x99\xbb\x61\x52\x60\x48\xd6\xa5\xd5\x9d\x24\x30\x70\xd5\x33\x00\xeb\x00\x38\x43\x85\x23\x58\xd4\x6b\x55\x6c\x4a\xb3\x22\xa5\x51\x99\xd3\xa4\xc8\x69\x34\xcf\x69\x34\x5f\x35\x3b\xd3\x15\xda\x29\x33\x9a\x58\x43\x13\x67\x30\x73\x84\x29\x88\x66\x0e\xae\x32\x56\x2a\x5d\xe0\x0f\xde\xf3\xc6\x49\xf0\xbe\xa0\xf1\xc2\xb4\x0c\x16\xd7\xdc\x39\x14\x46\xb3\x7e\x11\x24\x11\xe1\xec\xd9\xb3\x76\x6d\x6d\xcd\x14\x45\x21\x65\x4c\xab\x7b\x4d\x0e\x97\xc9\x47\x4c\x4e\xba\xda\x09\xcf\xa7\x4b\x3e\x34\x1d\xdb\x55\x06\x99\x26\x06\x2f\x43\x9f\x38\xc9\x1f\x00\xb0\x45\x51\x98\xcf\x7f\xfe\xf3\x46\xd3\xf7\xcc\x0b\x56\xdf\x0d\xe5\x0a\x47\x34\xbb\xb2\x31\xbb\xf2\xce\xfa\xec\xfc\xfa\x34\x39\xb9\x32\x4f\x8e\x86\xe9\x1e\x62\x86\x0f\x1f\x68\x86\x8e\x36\xe2\x35\x51\x74\xb3\x3c\xf3\xa2\x75\x48\x1b\xf1\x89\x21\x25\xb0\x73\x85\xac\x41\xb1\x3b\x28\xaf\x5d\x59\x9f\xbf\x51\x9a\xf6\x81\x86\xac\x6c\x16\x40\x4b\xee\x3c\x1f\xea\x78\xde\xae\xbd\x9c\xfa\x41\xc7\xcc\x12\x66\xbb\xc3\xf2\xc6\xab\xf7\x8c\x7f\x74\x74\x94\xbe\x7b\x73\x9c\x3d\xb2\xe0\x35\x61\xbb\x6c\x1b\xc3\x44\x32\x42\x7a\x50\x78\x67\x56\xdb\x2d\xdc\x3b\x45\x75\x5f\xe8\xda\x5e\xa6\xe6\x90\x57\xbf\x87\xd0\xc3\x13\xe6\xc6\x8e\xae\xad\xcd\x2f\x5c\xde\x98\x5d\xdc\xcf\xcb\x1d\x07\x37\xab\x07\x1c\x61\x9a\x56\xe1\x49\x9d\x9c\xf0\xc9\x4f\x7e\xd2\x7c\xf7\xbb\xdf\xe5\xb2\x18\xeb\x83\xfc\x77\x1e\x1f\x9e\xf9\x39\x2e\x5d\x9d\x87\x0c\x5d\x8d\x25\x10\xe9\xe3\x59\x47\x6d\x85\xd2\xb5\x00\x6c\x99\xb8\xd9\xcd\x95\xe2\xfa\x34\xb5\xdb\x6e\xea\x1e\xf0\x66\x65\x65\x3c\x04\x1e\xd7\x0b\x02\x2b\xce\x07\xa5\x1e\xe4\xb3\xae\x58\x6f\xe9\x36\xbc\x17\xa1\xb6\x2d\x15\x9f\x59\x63\x90\xb4\x5b\x82\x73\x6d\x60\x6e\x91\x33\xe2\x00\x00\x89\xa5\xd5\x7b\x46\xd9\xbb\xb2\x92\x5e\x9c\x64\x48\xdd\xe2\x0d\xa2\x81\x87\xcc\x2a\xd5\x46\x38\xf2\x37\xc6\x6b\x39\x32\xd7\x0c\x9e\x98\x91\xd9\xd7\x48\x5d\x36\x12\xeb\x1a\x95\x75\xc1\xf5\xc5\xd7\x85\xff\xa0\x34\x2c\xcb\x3f\x66\x2c\x5a\x2c\xa7\x23\x56\x86\x4e\x6f\xd6\x7c\x5e\x5d\xd4\xe5\xa7\x34\xbc\x01\x53\xb7\x21\x83\xe6\x7c\x97\x02\x08\xa3\x19\xfe\x27\xd7\x75\xcc\x00\xe4\xd4\xec\x4a\xca\xeb\xf7\xdc\x39\x57\xfd\x26\x18\x39\x20\xb5\x09\xd2\x22\x43\x3e\x1f\x26\xd9\xe8\x70\x92\x93\x75\x39\x39\xa4\xa6\x44\x6e\x4a\x97\x27\x73\x97\x27\x25\x52\x2a\x5d\x4a\x16\x29\x39\x67\xc8\xd6\xf2\x40\xb0\xd6\x90\x75\x06\x85\x33\xb0\xb5\x77\xa5\x28\x53\x9a\xd8\x04\x33\x47\x28\x9c\xa1\x99\x33\x98\x59\x83\x39\x08\x33\xb4\x0d\xad\x82\x10\xee\x11\xf2\x06\x4a\xd8\x4d\xc5\xa6\x81\x7c\x87\x11\x3c\x4c\x7c\x6a\x08\x68\x1f\x2a\xc7\x17\xe3\x1e\x39\x72\xc4\xdc\xbc\x79\xb3\xab\x1d\xf4\xf1\x30\x77\x79\x2d\x34\x43\x41\x6b\x8b\xb7\xf3\xdc\x07\xb6\x4b\x57\xc7\xe8\x5e\xa6\xbf\x97\xe5\xd9\xfa\xfd\xf2\x97\xbf\x0c\x61\x74\x07\x43\xbb\xe5\xa1\xa8\x7f\x47\x99\xdd\x7b\xeb\xf0\xec\xfc\xb1\xbd\xfc\xbd\x79\x61\xd6\x13\x87\x3c\x74\x70\x5c\xa7\xd7\xa1\x99\xad\xd0\x4e\x29\x91\x1b\x31\xe4\xa0\xb5\x7d\x56\x4c\x73\x68\x28\xf3\xe4\x33\x9c\x7e\xf1\x6f\xbd\x3e\xc6\x8e\xf3\xf2\xc6\xd5\x8d\xd9\xf9\x2b\x1b\xd3\xb7\x2d\x35\x8b\xbf\x7d\x1f\xc6\x07\x14\x40\x7b\x17\x8d\x18\xac\x1b\x5a\x34\x5a\x2a\xe3\x1b\x6e\x36\x4d\xed\xe8\xe2\xe6\xe4\xf5\xfb\x6f\xe5\x3f\x5e\x9b\x25\x27\xb2\x92\x56\x17\xa7\x9d\x3c\xa1\xcc\xf5\xd2\x62\x46\x7b\x1a\x2d\x18\x75\xde\x90\x54\xcc\x35\x87\x18\x2a\xdf\xcf\x36\x9e\x1c\x07\x60\x77\x58\x5e\xbe\x74\x78\xfa\xda\xad\x95\xe2\x8a\x25\x4c\xa8\x3d\x75\xdd\x3a\x7e\x00\x62\xc0\xf5\xe3\x1f\xff\x18\xcc\x68\x09\x7c\x41\x7c\x10\x10\x35\xd4\x53\x11\xd9\xb7\x33\xea\x82\x59\xd6\x58\x16\x94\x6e\x49\xae\xd8\x1d\x16\x3b\xe3\xcc\x6e\x5b\x42\x61\xaa\xdb\x44\x9b\xd4\x7c\x42\x2f\x18\x32\xfc\x7b\x23\x84\xa4\x4b\xbc\xc0\xb5\x38\xef\x13\xb5\xbe\x65\x5e\x1c\x6d\x2b\x32\xdc\x8c\x9b\x1f\x9a\xa4\x8f\xac\xcd\x92\xf5\xfd\x41\x99\x96\xd4\x5e\xa4\xeb\x3b\x23\x21\xf0\x3c\xc4\x94\x50\x9f\xce\x57\xbe\x77\x75\x98\x7d\x70\xc9\x70\x50\x7c\x77\x3b\xf4\x31\xa6\xef\x26\xce\xdb\xc1\x05\x2c\xca\x7b\xdf\x34\x00\x80\x7f\xfa\xa7\x7f\xc2\x6b\xaf\xbd\xc6\x3d\x30\xdc\xc8\xf5\xbb\x8e\xb8\xd1\xe2\xa7\x22\xfd\x62\xde\x9c\xaa\xf5\x2f\x33\x54\x46\x4b\x0a\x66\xbc\xb4\xe2\x08\x29\x88\x52\x6b\xbc\x9c\x92\x81\x43\x0a\x38\x03\x47\xa9\xb1\xc8\xe0\xbd\x2d\x80\xf1\x8b\xe6\x7d\x70\xde\x23\x54\x79\x5d\x0a\x67\x50\x3a\xa2\x02\x04\xaf\xd8\xb9\x92\x2f\xa8\x71\xb1\xf3\x1d\x40\x7e\xc4\x16\x0c\x17\xfe\x1d\xcc\xd0\xf1\x65\xe6\x1e\x16\x28\xfa\xeb\xe2\xc5\x8b\x00\x00\x66\xb4\xc4\x3a\xe3\x58\xe8\x32\xee\x3b\x0d\xd1\x25\x78\xfb\xc2\xdf\xa9\x4c\x76\x19\x23\x7d\xf3\x88\x79\x83\x5a\x9d\xcc\xe7\x3f\xff\x79\x23\x4e\x84\x0e\xfa\x5d\x7a\x06\x9d\x73\xb3\xd2\x60\x72\x79\x63\xfa\xd6\xc9\x8d\xfc\xfc\xea\x2c\x39\xba\x36\x33\xc7\x08\xec\x92\xd1\x2e\x65\xec\xda\x17\xf0\x02\x8a\xd1\xd2\x42\xd2\xee\x92\x9b\x25\x02\x8d\xa1\xa4\x6b\x77\x87\x22\x71\x93\xeb\x6b\xf3\x37\xde\xd8\x9c\xbc\xb2\x9f\x97\x3b\x95\xe7\x12\x5e\x36\xd5\x7b\xaf\x7c\xf9\xf9\x7a\x35\xb9\xce\xa5\xe6\x4b\x90\xeb\x4a\xde\x31\xd9\xcf\xcb\x9d\xf3\xc7\xc7\x3f\xba\x67\x3f\x7b\xe4\xd8\x28\x7b\x4f\x62\x91\xf3\x69\x1c\xe2\x45\x62\xa4\x7a\xef\x8c\x9f\x62\x5b\xbc\xf8\xdd\x3b\x02\xa8\x65\xa4\x70\x4f\x17\x37\x86\x5a\x6b\x3e\xd9\xa4\xc3\x38\x2f\x6f\xbc\x75\x78\xfa\x93\x4b\x87\xa6\xaf\x8f\x6a\x6f\x0b\x21\xb4\xdb\xd6\x74\x91\xe8\xdb\x2c\x00\xec\xed\xed\xf9\x77\x29\x27\x4b\xbd\xd2\x92\xc7\x49\x8f\x04\x4e\x89\x77\xf5\x37\x62\xcf\x8e\x7d\xc3\xb9\x73\xe7\xdc\xd6\xd6\x16\xa1\xa9\x38\x3f\x4d\x92\x38\xe7\x12\x22\x4a\x9d\x73\x29\x11\x65\x0e\xc8\x08\x58\x39\xb9\x9b\x9f\x3a\x32\xce\x1e\x49\x1c\x65\x44\xec\xa8\x63\x6a\x7b\x5f\x00\x7e\x43\x26\xb5\x4f\x37\x64\x44\x06\x47\x21\x97\x5d\xa2\x30\x55\xd4\x82\xc1\x82\x3c\xb4\x65\x5e\x69\x4c\xad\x25\x34\x35\x0c\x55\xc4\x14\xd7\xd7\xe6\x2f\x6f\xaf\x14\x37\x4a\x83\x31\x08\x73\x54\x42\x5a\xa2\xdd\xa0\xdd\xe9\xd3\xa7\xe9\xcc\x99\x33\x74\xee\xdc\xb9\x16\xff\x18\x4f\x3d\x9f\xe5\x9f\xf6\x4d\xd6\x95\x7c\xe7\x38\x79\x3e\x1a\x5e\xfe\x2b\xd9\xc5\xd3\x49\x7a\xe5\xb7\x98\x0c\x49\xba\x34\xfa\x39\x6d\x9e\x8e\x4e\xb9\x53\xca\xaa\xd1\x43\x91\x74\x32\x8d\x87\xb7\x4a\x9c\x46\x0b\x18\xec\x32\x7a\x78\xfe\xad\xb2\xdc\xbc\x79\xd3\x01\xc0\x47\x3e\xf2\x11\x32\xc6\x80\x88\x9c\x73\x8e\xa8\x5a\x7c\x65\xeb\x17\x9e\xde\xd6\xbf\x85\x73\xae\x64\x86\xc2\xbc\x56\x26\x25\x80\x39\xaa\xce\x7f\x0e\x60\x5e\x2b\xdf\x39\x1a\x45\xec\xa7\x97\xaa\x67\xa2\x29\x88\x26\x96\x30\x76\x06\x63\x97\xd2\xbe\x35\x18\xb9\xd4\xec\xdb\x94\xc2\x9f\x4b\x68\xdf\x25\x34\xb2\x06\xfb\x48\x68\x04\xa2\x11\xaa\x45\xb6\xe3\x7a\x07\xd4\x88\x88\xf6\x9d\x73\xe3\xfa\x79\xe4\xaa\x2d\xcd\x3e\x6e\xdf\x3f\x53\xbd\x18\x97\x88\xc6\x44\x34\x15\x86\xcc\x1c\x40\x49\x44\xf3\xba\x8c\x65\xcd\x97\x60\x60\x78\x65\x79\xf6\xec\x59\xfb\xb3\x9f\xfd\x4c\xb6\x0f\xcb\xde\xf9\xb3\xe7\x61\xac\x4e\x35\x3c\x9a\xac\x4a\xf9\xe0\x9a\x83\xe7\xc9\xd5\x8d\x6c\x7b\x10\xef\x3c\xf2\x34\xb4\x09\x00\x00\x20\x00\x49\x44\x41\x54\x4e\xca\x3f\xa7\xdb\x62\xb1\xad\x70\x9a\x24\x6e\x2d\x1f\x29\xc7\x1e\x4e\xd2\xcd\xcb\x03\x00\xe6\x23\x1f\xf9\x08\x3e\xfe\xf1\x8f\x13\x35\x2b\xb2\xc9\xe7\x5b\xeb\xfd\x04\x40\x42\x44\x95\xde\x87\xcb\x8a\x04\x44\x40\xb2\x3e\x4b\x0e\xad\xce\x93\xcd\xc4\x22\x07\x14\x4f\x38\x0b\x7e\xd7\x4c\x33\xbd\xe1\x5a\x73\x1f\x32\x69\x33\x65\xd5\xea\x87\x43\xa0\x05\xa3\xa5\xd1\xe7\xd6\xc0\xde\x5a\x29\x2e\xfd\xb7\x7b\x26\xcf\xbd\x7e\x64\xfa\x93\x69\xe6\x6e\x81\xe0\x65\xd6\xff\x79\x4f\x60\x89\x4a\x36\xcb\x3a\x4f\x77\xf6\xec\x59\xbb\xb5\xb5\x45\x75\xbb\x85\x73\x2e\xf0\x04\x95\x91\xe6\xdf\x93\xba\x5f\xcc\x1c\xc1\x4c\x32\x5b\x26\x96\xcc\xa1\x69\x7a\x24\x2f\xcc\x3a\x55\x03\x09\x31\x20\xaf\x0d\x10\x17\x1e\xeb\xd9\x07\x31\x0b\xa1\xd4\x74\x58\x80\xeb\x61\x7d\x7a\x30\x06\xf1\x35\x47\xf5\xef\x2c\xb1\xa3\xb7\x36\x67\x3f\xfa\xe9\xbd\xa3\xe7\xdf\x59\x9f\xbf\x59\x18\x77\x8b\x88\xf6\x01\xec\x03\x18\x13\xd1\x98\x1b\x30\xce\xb9\x12\x80\xab\xdb\xa8\x3b\x7b\xf6\xac\x3d\x79\xf2\x24\x5d\xbe\x7c\xd9\xa3\xe4\x72\xa5\xc9\x31\x18\x9c\xec\x8b\x4c\x82\xb6\x12\x05\xda\x8d\x0f\xca\x37\x2e\xb8\x52\xd0\x03\x2c\xb3\xbe\x5d\x90\xe8\xba\xb2\x88\x28\x41\x75\x09\x61\x86\x6a\xd4\x97\x91\xc3\xe0\xe8\x28\x3b\x7a\x7c\x2f\x7f\x6f\x66\x69\x85\x1f\x8e\x43\xa8\x04\x94\xdf\x85\xe2\x05\xac\x32\x16\x9a\xdc\x89\x00\x62\x73\x83\xa1\x29\x29\xae\xc1\x96\x56\x60\x42\xd0\x02\xf2\x85\xe2\xdf\xda\x9f\x83\x90\x50\x03\x67\xf6\x07\xe5\xf9\xab\x1b\xf3\xb7\x66\xa9\x1b\x81\x82\xd1\xe2\xad\xf4\x12\x08\x0d\xcb\x45\x76\x17\xc9\x8e\x8d\x57\x38\xaf\x68\xfe\x5d\x0b\x5a\x07\x2c\x3b\x6e\x8e\x5b\xe6\xad\xd1\xc4\xd3\xc9\x6f\x9c\x2e\x0d\x87\x66\xc8\xc4\xe8\xd7\xca\xc6\xdf\xbb\x70\x77\xa5\x89\xf1\x4a\x2b\x4f\x57\x5c\x5f\xbc\x31\x3c\xf2\x7b\x8b\x37\xcf\x3d\xf7\x9c\x3b\x77\xee\x9c\x3b\x77\xee\x9c\x3b\x73\xe6\x8c\x87\xa1\x5a\x19\xa0\x36\x5e\xfc\x9f\x1f\xe9\x78\x43\xa6\x20\x22\x2f\x73\xfe\x37\x18\x33\x44\x34\x45\x6d\xcc\xb0\x29\xa5\x30\x6d\x53\xaf\x33\x99\x10\xd1\x8c\x88\xc6\x00\xa6\xfe\x17\x8b\x8b\x66\xfd\xd9\x2a\xde\x60\x19\x13\xd1\x7e\x6d\x80\x04\xe3\x05\x95\x82\xf3\x77\x0a\x8d\xfd\x3b\xc3\x33\xae\xf1\x4c\x6b\x3a\x67\xb5\x12\x9c\xd7\x86\x4a\x89\xb6\x1b\xda\x11\x85\xe3\xd5\xf1\xda\x6b\xaf\xe1\xaf\xfe\xea\xaf\xec\x7d\xf7\xdd\x67\xf6\xf6\xf6\x38\x6f\x64\x7b\xe1\xcf\xdc\x28\x80\x02\xcf\xe3\x64\xa7\x1d\xab\x43\x2b\xd2\x48\x37\x38\xcf\x8b\xb7\x69\xed\xb9\x65\x24\x44\xe8\xd6\xe2\x35\xf8\x18\x6e\xad\xfc\x1a\x1f\x38\x7c\x28\xf3\x0b\x2f\xbc\xe0\x9e\x7d\xf6\x59\xb7\xb5\xb5\x45\x2c\x04\x7d\x8f\xca\x68\x31\xa8\x06\xb1\x29\x11\x65\xd6\xc0\xcc\x52\x67\x53\x4b\xd9\xfa\x2c\x39\x3c\x2c\xcc\x46\xe2\x28\x09\xb9\xd4\x94\xb4\x16\xdd\xd6\x8a\xb6\x71\x2e\xb4\x4f\x7a\x96\x27\xfd\x13\x5f\x27\xc6\x8c\x17\x2d\xb8\xfa\x5f\x95\x85\xc3\x7e\x5e\x5e\xbf\xb8\x39\xfd\xf1\xab\xc7\xc6\x3f\xda\x5e\x2d\x2e\x5b\x72\x7b\xa8\x0d\xef\xfa\x77\x4a\xcd\xb4\x91\x97\x4d\xe7\x65\xb1\x1e\xb4\xfb\x41\x87\xab\x9f\x89\x88\x5c\xdd\x80\x13\x3f\x98\xaf\xf9\x93\x80\x90\x14\xc6\x61\x9c\x97\xd3\xcc\x99\x64\x6d\x96\x6c\xe6\xa5\x59\x31\x20\x23\xba\xb0\x05\x6f\x51\x6c\x9a\x2d\x14\x2e\xf4\x8f\x75\xbf\xa8\x4e\xbb\xd5\x3c\xf7\xcf\x54\x45\x94\xc6\xcd\xde\xd9\x98\x9f\xff\xf7\x7b\xf7\x7f\x78\xe9\xf0\xf4\xb5\x69\xea\xb6\x51\x1d\x45\xe0\xdb\xb8\xd7\x0b\x33\x31\xb0\xf0\x9e\x27\x77\xee\xdc\x39\xe7\x9c\xa3\xfd\xfd\x7d\xad\xcd\xc9\xa9\x22\x4e\x9a\x94\x41\x03\xc0\x26\xec\x83\x54\xca\xbc\xc1\x71\xe3\x8b\x0b\xae\x47\xb8\xd0\x98\x99\xc7\xc5\xe3\xe2\x16\x67\x82\xca\x55\x9d\x00\xc8\x00\x0c\xc8\x51\xbe\x3a\x4f\x0e\x9d\xba\x35\x78\x6c\x50\x9a\xc3\xad\xc3\x83\xd8\x2e\x06\xee\x75\xa9\x2c\x66\xd7\x82\xe1\x0b\x8d\xaa\xe4\xde\xba\x09\x53\x39\xa1\xe2\x64\xd0\x76\x13\x55\xf1\xac\x1e\x3d\x5e\x59\xeb\x3e\x9b\xea\xc1\xcc\x13\x7b\xe5\xad\xc3\xb3\x57\xc7\x99\xdd\xa9\x0d\x17\xef\x75\xe1\xee\x42\xe7\x9c\x73\xcf\x3e\xfb\x6c\x57\x87\xe7\x83\x74\x97\x69\x69\x62\x46\x81\x27\x5f\x0a\x01\x0f\x2d\xc3\xb3\x03\xdf\xb2\xb0\x0c\xfe\xa0\xf8\x64\xe8\xa2\xe9\x4e\x71\xdf\x69\xb8\x1d\x7e\x69\x6d\x6f\x01\x0f\x6b\x4f\x0e\x95\x82\x04\x84\xe1\xca\x8c\x96\xb2\xfe\xf3\xc6\x8c\x97\x3d\xef\xce\xf5\xef\x73\xe7\x9c\x57\xc0\x73\x54\xc6\x89\x5f\x04\x3b\x45\x63\xa4\xf0\xe7\x31\x2a\xc3\x62\x52\x7b\x4f\xbc\xb1\xe1\x3d\x29\x93\x5a\x91\x8d\xd0\x78\x5d\xbc\x51\x32\x42\x73\x70\x9c\x57\x78\x7c\xbb\xf3\x9c\xd8\xf4\x90\xa7\xbb\xee\x14\x4a\x00\x65\x6d\xac\xf8\x36\x14\x3c\x4f\x17\x2e\x5c\xc0\x3f\xfd\xd3\x3f\x79\x97\xb4\xd7\x37\x9c\x87\xd2\x58\xd7\xe2\x79\xe0\x71\x7c\xb4\xa7\xc5\xf3\xa0\x19\x0e\x5d\x53\x4b\x31\x83\x56\x6b\xb7\x7d\xe2\x65\xde\x1a\x6e\xae\xcf\x17\x0c\x66\xe8\x32\x29\xf3\x5c\xf8\x65\xf2\xe9\x17\x64\xfa\x81\x6a\x30\x60\xe0\x3b\x69\x20\x99\x27\x0e\xf3\xc4\x15\x79\x61\x06\x6b\xb3\xe4\x50\x5e\x9a\x55\x83\xf6\x5d\x5d\xaa\xee\x25\xf6\x8d\xeb\x60\x02\x3b\xcb\xa4\xe9\xa0\x01\x40\xdb\x32\x5d\x13\x5a\xeb\x6d\x3f\x02\x06\xc6\x99\xdd\x7e\xfb\xf0\xec\x95\x57\x8f\x8d\x9f\xbf\xb2\x31\xbb\x50\xa4\xb8\x55\x1b\xe2\xde\xf8\xf6\x6d\xc2\xb7\xa7\x12\x4c\x3e\x9e\x79\xe6\x19\xeb\x07\x1c\x7e\xd6\xc1\x1b\x51\x9e\x1f\x8c\x27\x54\xf3\xc4\x38\xe7\x88\x40\xe9\x24\x73\xe5\x34\xb5\xd3\xcc\x9a\x6c\x75\x6e\x36\xb2\xd2\x0c\x09\x64\x84\xbb\xa8\xa9\x10\xb6\xae\xd3\x3b\x62\xab\xca\x6d\x33\x2f\x2c\xba\xf5\x4c\x6c\x6c\x9d\x86\x23\xc4\x8e\x43\x20\x87\xc2\xb8\xd9\xcd\xd5\xe2\xe2\x4f\x4f\x8c\x7e\x78\xe1\x9e\xc9\x4f\xc7\xb9\xbd\x09\xc2\x2e\x98\xa7\x05\x95\x3e\x98\x52\x33\xfd\x55\xfa\x41\x95\x37\xe4\xf6\xf6\xf6\xe8\xf5\xd7\x5f\xf7\xd4\x70\x6f\x4b\x28\x06\xb0\xd0\x47\xc9\xef\xe1\xd9\x4f\x15\x69\x0a\x53\x1a\x30\x3c\xce\xc3\xca\xef\xad\x06\xc0\x0c\x17\x4f\x0c\xff\xf3\x6b\x3f\x52\xe7\x5c\x4e\xc0\xc0\x38\xca\x1f\xba\x39\x7c\x6c\x75\x9e\x1c\x07\xbc\xc1\x8e\x96\xc4\x35\xf6\x04\x37\x30\x1a\xa9\x6c\x59\xe0\xfe\xbf\x63\x20\x44\x0b\x46\x4b\xd3\x18\x1a\x3b\x8b\x82\x11\x54\xc7\x30\x6b\x3e\xe0\xf3\x71\x8e\xd3\x56\xcd\x46\x5a\xc2\xfe\x95\x8d\xd9\x2b\x7b\x83\xf2\xa6\x35\x61\x7e\x3e\x74\x28\x00\x9c\x1f\x21\x6f\x6d\x6d\xd1\xd6\xd6\x16\x9f\x2e\xe2\x41\x4e\xd7\xc8\x78\xe9\x51\x89\x4d\x91\x70\x25\xc7\x15\xbb\xe6\x06\x8e\x75\xa4\xda\x54\x93\x46\x8f\xa6\xe0\x64\x07\xa1\x4d\x51\x49\x5c\xb2\x0c\x9e\x26\x8d\x8e\x65\x34\x71\x3a\xb4\xf2\x4b\x9a\xfa\xd2\xca\xf3\x91\x9d\x56\x57\x99\x64\xa7\xa3\x79\xc6\x42\xbe\x1f\xfa\xd0\x87\xe8\xd0\xa1\x43\xf8\xf2\x97\xbf\x6c\x4f\x9f\x3e\x5d\x99\xea\x95\x20\x7b\x63\xc5\xc9\xbf\x5a\xbe\xb8\xcc\x15\xf5\x94\x0b\x9f\x5f\xf7\x6b\x4c\xfc\x54\xd2\xac\x56\x42\xde\x58\xe1\x7f\xdc\x33\x32\x45\xa3\xc4\xfd\x14\xcf\xb4\x36\x64\xbc\x41\xe2\x3d\x31\x13\xaa\x5c\xc9\x53\xa6\xf4\xbd\x87\xc7\x1b\x2b\x9e\x06\xbe\x00\x37\x18\x2c\xdc\x28\xa3\xc6\xe3\xe4\x17\xe0\x52\x6d\xb4\xf0\xa9\x20\x59\xbf\x31\x39\x90\x83\x33\x4d\x7e\xb5\x3a\x95\xae\x6d\xad\x0d\xf2\xae\x55\xe2\x97\x32\x18\x93\x47\x6e\xf8\x90\xc0\xe9\xf3\xd0\xda\x3d\xa0\xe7\x47\x02\xa7\x2c\x87\xc6\x13\x8d\x96\x96\xfe\xff\xc5\x5f\xfc\x45\xb3\xb1\xb1\x81\x2c\xcb\x7c\x5c\xd0\xdf\xfe\xc1\x2f\x15\x40\xa5\xf3\x0d\x88\xcc\x2c\xb1\xae\x30\x28\x33\x4b\xd9\xca\xdc\xac\x67\xa5\x19\x1a\x90\xa9\xbc\xeb\x08\x0b\x6f\x1b\xbd\xcb\xae\xac\xf0\xba\xb7\xd6\xc5\xae\xca\x15\x61\x5d\x88\xab\xc9\x5f\xe8\xe4\x39\xf7\xbc\xf7\xbe\xea\x20\x26\xa9\xdd\xbb\x7c\x78\x76\xfe\xfc\xf1\xf1\x73\x17\x0f\x4f\x5f\x9d\x64\xee\x06\x08\xfb\x40\x33\x4d\x54\xcb\xf9\xb4\x96\xd7\xb2\x42\x1b\xa6\x68\xe1\xa7\xff\x4f\x9f\x3e\xed\x3d\x4f\xc1\xeb\x52\xb3\xc3\x4f\xfd\xfa\x75\x3d\xe4\x3d\x52\x44\x64\x1c\x9c\x99\x64\xb6\x9c\xa5\x76\x9c\x38\x4a\xf2\xd2\x0c\xb3\x92\xf2\xc4\xa1\x5a\xfb\xe9\xc4\x9a\x17\xaf\x06\x1c\x35\xfd\x21\x78\x5c\x63\xc6\x50\x3d\x88\x6f\x8c\x96\x66\xdf\x2e\x85\x27\xc0\x91\xc3\x3c\x71\xa3\x1b\x6b\xf3\x8b\xaf\x9c\x18\x9f\x3b\x7f\x7c\xfc\xa3\xfd\x41\x79\xc3\x11\xf6\x00\xec\xba\xe6\x36\xf6\x70\xa1\x29\xf7\x8c\xba\x66\x71\xb6\xbb\x72\xe5\x0a\x2e\x5c\xb8\x80\xdd\xdd\x5d\x60\xd1\x90\xd7\xec\x08\xa9\x8f\x17\xa6\x79\xe5\x01\x74\x9a\x60\x72\xa1\xed\x82\xd5\x16\x29\xf1\xad\x71\xda\x42\xba\xb0\x50\xc9\x02\xb3\xdd\x61\xb1\x37\xca\xed\x8d\x72\xec\x66\xa9\x38\xcf\x45\x7a\x41\x00\x2c\xbc\x57\x91\xbe\x2d\xa3\xb1\x3c\x3a\x26\x4e\x25\xde\xca\x00\xaf\x2b\x9a\x38\x0c\xc0\xad\x94\xc6\x42\xf7\x95\x8e\x20\x02\xe4\x60\x56\xe6\xe6\x81\x13\x7b\xf9\xfd\x57\xd7\xe7\x17\xe6\x69\xb9\xe3\x9a\x6d\xd0\xde\x65\xea\xd7\xfd\x84\xb9\x79\xb1\x03\x82\xf3\x59\x0b\x3c\x3e\x36\xb2\x8b\xe1\x32\x11\x98\x65\x79\xc9\x5f\xa3\xc4\x75\xc1\x6b\x38\x3d\x9e\x65\xb8\xba\xe8\xe9\x0b\x17\x2b\x1f\x87\x8f\xc9\xfa\xb2\x74\xcb\xe8\x89\xb5\x93\x2e\x1a\x43\x9a\x17\x5f\x7c\x11\x2f\xbe\xf8\x22\x7e\xe7\x77\x7e\xc7\xec\xec\xec\xe0\xf0\xe1\xc3\x01\xd6\x35\x8b\x77\x2d\xd0\x6c\xb9\xa7\x66\x21\x78\xb8\x4a\xa0\x96\xc1\xd6\x4e\x37\x19\x57\xcb\x25\xd8\x37\x2f\x2f\xa6\xce\xaf\x19\xc9\xb2\xdd\x3c\x00\x5a\x8b\x10\x49\x2c\xa0\xa5\xf6\x4e\x0c\x8b\xc5\x9b\x9b\x65\x3a\xce\x07\x7f\xaa\xf0\xc2\xc1\x8d\xde\xd3\x12\xe1\x9d\x0f\x31\xf9\xd2\xd2\x71\xf8\xbe\x32\xde\xa7\x0d\x9a\x48\x9c\xd6\x9e\xb4\x3c\x62\xed\x4e\x4b\x67\x3a\xbe\x43\xc0\x6a\x70\x92\x7f\x9d\x6d\xe9\x3b\xdf\xf9\x8e\xfd\xce\x77\xbe\xb3\xb0\x23\x4e\xc8\x83\x5f\x3c\x3e\x22\xa2\x14\x40\x5e\x24\xd8\xbb\xb2\x31\x7b\x13\x40\x6a\x89\xf0\xf0\x4d\x7c\xf0\xd0\x24\x3d\x66\x1c\xa5\x5e\xaf\x02\x7c\x40\xea\x8d\x21\x40\x6e\x8f\xe6\x1a\xbe\xb9\xfe\x85\xda\x70\x8a\x27\xbd\x3a\xcd\xd9\x61\x96\xd8\xbd\x2b\x1b\xb3\xd7\x7e\x76\x6c\xf4\xfc\x9b\x9b\x93\x57\x47\xb9\xdd\x06\x41\x1e\x82\xe8\x8d\xec\x50\x2e\xd6\x49\xb7\xce\xe4\xfa\xdc\xe7\x3e\x67\xbe\xfe\xf5\xaf\x5b\x60\xf1\x80\xc9\xfa\x77\x56\xb7\x4d\xbf\x8b\x2e\x45\xb5\x84\x22\xb5\x84\xf4\xca\xc6\xec\xad\xc2\xc0\x4e\x52\x3b\x7a\xf8\xe6\xf0\xfd\x47\x47\xd9\xa9\xbc\xc0\xb0\x36\x6e\xc0\x8f\xf5\x70\xed\xa2\x35\xbb\xa6\x02\xcf\x9a\x91\x77\xb0\x6d\x5c\xd3\x87\xfa\x19\x0e\x47\x0e\x16\xb0\xb3\xd4\x8e\xae\xad\xcd\x2f\x9e\x3f\x3e\x7e\xf6\x67\xc7\xc6\x2f\x8f\xf2\xf2\x1a\x08\x7b\xcc\xab\x1a\x78\xe1\x9a\xc3\xe7\x02\x2f\x6a\xbc\x96\x88\xf0\xdc\x73\xcf\xe1\xd2\xa5\x4b\xaa\x5e\xc3\xc1\xdb\x82\x01\xaa\xa9\x22\xff\x22\xdd\x32\xfe\x8f\x44\x22\x3e\x8a\x94\x23\xf3\x56\x38\x77\xee\x9c\x7b\xf6\xd9\x67\x5d\x6d\x79\x12\x98\xb2\xac\x17\x6c\xa5\xb5\x05\x9e\x81\x90\x97\xe4\xf2\x53\x3b\x83\x53\x47\xc6\xd9\xbb\x52\x4b\x83\xf6\x3d\x45\xc2\xf0\xe0\xf6\x09\xb8\xd0\xf2\xda\x63\x62\xcf\x4a\xd7\xf2\xa4\x84\x69\xa5\xc6\x8a\xf5\xab\xd6\x83\x35\xca\x2a\xd7\x37\x88\xaa\xa2\xeb\x67\x6a\x2f\x10\xae\x85\x25\x29\x8d\xbb\x7c\xf9\xd0\xec\xf5\x51\x6e\x77\x6b\xeb\xdc\xcf\xff\x71\x65\x1e\xf8\xf7\xed\x6f\x7f\xdb\xa6\x69\x6a\xac\xb5\x1a\x3f\xb5\x11\x10\xaf\x23\x39\xaa\xe4\x30\x32\xad\x56\xa7\xcb\xbc\x15\x1a\x1d\x72\x24\xd7\x45\x03\x4f\xcb\xe1\x25\x3d\x32\x8d\xc6\x87\x3e\x9e\x0c\x8d\x57\xda\xb3\xe4\x43\xd7\x48\x58\xc3\x19\xcb\x5f\xa3\x31\xe6\x59\xd1\xca\xc7\x47\x18\x3e\x9e\x5e\x79\xe5\x15\xfb\xf2\xcb\x2f\xbb\x47\x1f\x7d\x94\xbe\xf2\x95\xaf\xd8\x7a\x5d\x01\xf7\xb2\x78\xe5\x18\x3c\x7a\xf5\x77\x3e\x75\xe4\xa7\x5d\xfc\xe8\xa8\xf4\x9d\x0a\xea\xc5\xbb\xb5\x22\x0a\xef\xa8\x14\x94\x5f\x77\x12\xce\xb3\x40\x7b\xdb\x32\x57\x68\x53\x54\x53\x4f\x72\x01\xb0\xc7\x2f\xbd\x2b\x16\xcc\xbb\x52\x2b\x41\x57\xd3\xea\x7c\xa7\xf0\xec\xb3\xcf\xba\xa7\x9e\x7a\xca\x3c\xfe\xf8\xe3\xf4\xe3\x1f\xff\x78\x99\xb7\x02\x68\x77\xc0\x5d\xde\x39\x19\x34\xdd\xa6\xc9\xb2\xf4\x9c\x69\x9e\x1a\x1f\x34\xef\x88\x26\x8b\x32\x2c\xf3\xf4\x68\x65\xd1\xf4\x34\xc7\xd7\x92\x2b\x05\xcf\x32\x9e\xa9\x6d\xe3\xdc\xb9\x73\x5c\xdf\x73\x23\x97\x7b\x5d\x0c\x4b\x63\x4a\x72\x6e\x94\x97\xd3\x71\x6e\xc7\x89\x25\xac\xcc\xcd\x46\x5e\x9a\x21\x01\xa6\xf6\x47\xb4\x94\x9c\x47\xe6\x75\x6e\xf8\xc6\x55\xbf\x8f\x77\x2c\xbd\xd7\xfb\x4d\x1f\x5e\x17\xd0\xd9\x49\x66\x77\x2f\x1f\x9a\xbd\xfa\xca\x89\xd1\xb9\x37\x8e\x4c\x7e\xb6\x9f\xdb\xeb\xa8\xa6\x44\x46\xa8\xae\x97\xf0\xd3\xa4\xc1\x53\x88\x66\xea\xd2\xaf\xbd\x02\xf3\x9a\x9b\x9f\xfc\xe4\x27\xa1\x3e\x59\x3b\xe5\xe4\x19\x34\x0e\x29\x53\x7b\x61\x02\xef\x2d\x9c\x1b\xe7\x76\xbe\x33\x2c\x76\xe6\x89\x1b\xa7\x96\xd2\xbc\x34\xc3\xc4\x52\x6a\x00\x03\x50\xf0\x34\xf9\x7b\x97\x1a\xcf\x94\x3c\xc8\x9f\x82\x71\xe3\xea\x38\x3e\xf8\xf0\x03\xfc\xc2\xb8\xd9\x28\xb7\xdb\x97\x0f\xcf\x5f\xfb\xe9\xbd\xa3\x73\xe7\x8f\x8d\x7e\x32\xc9\xed\x0d\x54\x0b\x93\x77\xa9\xba\xe0\x75\x5c\x1b\x30\xde\x8b\xea\xdb\x72\xf0\xee\x7a\x6f\xcb\xd9\xb3\x67\xed\xce\xce\x4e\x4c\x17\x42\xc4\x73\xb9\x96\x32\xce\x0b\x03\x39\x55\x24\x9f\xe5\xbb\x44\xd2\x2b\x9c\x39\x73\xc6\x77\x06\x1e\x87\xaf\xb0\x04\x40\xe6\xaa\xed\x9b\x03\x00\xd9\xe6\x38\x3b\x7a\x62\x37\xff\x85\xac\xa4\xd5\xf6\x46\xb7\x9a\x18\xd7\x08\x69\xcb\x1a\x0f\xc4\x36\x6e\x31\x4f\x7c\xdb\xa0\xa8\x63\x89\xfb\x48\x9a\x14\xad\xc3\x78\xf8\xf1\xe7\xfe\xac\x00\x6a\x9e\x43\x43\xe1\xdb\xb1\x7d\x56\x95\xa7\x72\xff\xca\xc6\xec\xfc\xde\xb0\xbc\x6e\x4d\x63\x99\xa2\xb1\x34\xc3\xdc\xa8\x73\x0e\x67\xce\x9c\xa1\x1f\xfe\xf0\x87\x31\xe5\x25\x2b\x5b\x3e\x6b\x9d\xa3\x53\xd2\x76\x59\xb5\x9a\x42\x95\x1d\x82\x86\xb7\x4b\x61\xcb\x7c\x9d\x02\xa3\x0a\x67\x24\xc8\x46\x60\x95\x6f\xb1\xf2\xca\xf4\xcb\x78\xc5\xcb\x65\x15\xf8\xae\xfc\x63\x34\xcb\x74\x31\x43\x4a\xe3\x51\x48\xf3\xf2\xcb\x2f\x5b\xa0\x1a\x1c\x3c\xf1\xc4\x13\xf4\x67\x7f\xf6\x67\xc1\x88\x61\xeb\x40\x3a\x8d\x18\x6a\xe6\xe7\xcb\x5a\xf9\x04\x63\x06\xb5\x62\x46\xb3\x1b\xa9\x35\xad\xc3\x0d\x11\xaa\x16\xe4\x4d\xfd\x77\x6f\xe0\xa0\xd9\xea\xec\xd7\xab\x78\x9c\xfc\x58\xf0\xb2\x56\x78\xb6\x76\x33\xfb\x72\x5b\xa0\x5a\xcb\x23\x47\xb2\x2f\xbf\xfc\xb2\xab\x8d\x16\xc9\x27\x69\x48\x48\xcf\x83\xe4\x71\x5f\x03\x97\xa7\xe3\x8a\x95\xeb\x35\x29\x07\xd2\x88\xe5\x86\x80\x34\xdc\x35\x79\x88\x19\xb8\xb2\x7c\xb2\x1c\x7d\x8c\x32\x39\xd0\x88\x75\x22\x31\xbd\x02\x91\x2e\x3c\x7f\xe1\x0b\x5f\x30\xc6\x18\xf8\xa9\x11\xef\xbd\xa3\x66\x2a\x84\xd3\xeb\x3b\x6b\x72\x06\x34\xca\xca\xc9\xee\xa0\xdc\x73\x84\xc9\xa0\xa0\x61\x5e\x9a\x95\xc4\x51\x6b\x56\xc0\x4f\x95\xa0\x65\xb4\xd4\xef\xfc\x0c\xaf\x9a\xaa\x4a\x5d\xb3\xa3\xf3\x5b\xd6\x0b\x60\x09\x76\x7f\x50\xde\xb8\x70\x74\xf2\xc2\xcb\x27\xf7\xff\xeb\x9b\x9b\xd3\xd7\x26\x99\xbb\xe9\xe0\xfc\x3a\x8e\x7d\xaa\xd6\x72\xed\xa3\x32\xc4\x5b\x3b\x89\x80\x66\xad\x22\x00\xb0\xf5\x8a\xad\x3a\x66\xeb\x5d\x3c\x79\xc6\xcf\x17\xf9\x1f\xdf\x78\x6b\x99\xaf\x78\x4d\xe4\x26\xa9\x2d\x6e\xad\x94\x7b\x7b\x83\xf2\x96\x35\x6e\x96\x5a\xca\x52\x4b\x99\x71\x94\x84\x6e\x30\x74\x8a\x55\xa1\xc9\xf9\xf2\x8a\x41\x78\x20\xcc\xef\xac\xad\xe0\x2d\xc1\x4e\x53\xbb\x7f\x7d\xad\x78\xeb\xd5\x63\xe3\x17\xff\xfd\xde\xfd\xe7\x2f\x1e\x9e\x5e\x98\x67\xee\x16\x80\x5d\x54\xc6\xdb\xbe\xab\x16\xe4\xfa\xc5\xf5\x53\xdf\xf6\xbd\xc7\xa5\x6e\xc3\xa1\xed\xbe\xfe\xfa\xeb\x34\x1a\x8d\xb8\x9c\x7b\x79\xf1\xef\xb2\x9f\xe1\xed\xca\x3f\x2f\x18\x3e\x07\xbd\xab\x48\xfb\xe6\xbf\x77\x8d\x18\x64\x58\xb8\x7f\xc5\x39\x57\x00\x54\x5c\xdd\x98\xbd\x35\xcd\xec\xf6\xea\xdc\x1c\x83\xab\xf3\x60\xd6\x07\xbb\x07\x3a\x04\x2e\x29\xde\x0a\x6d\xe0\x21\x1e\x98\x61\xc2\x4d\xd4\x30\x1f\xcb\x34\x4b\x2b\x0d\xcb\x50\x5a\xf6\xb5\xd3\x84\x53\x65\x40\xe9\xea\xcc\x3c\x70\xef\xee\xe0\xc1\xeb\x6b\xc5\x85\x5b\x2b\xc5\x9e\x77\x05\xa2\x12\xfc\x0a\xac\xe6\xd9\x82\x47\x09\x0c\x55\x3f\xbe\xc6\xdc\xd3\x07\x81\x5b\x96\xcf\x32\x5a\x7e\x1e\xdf\xba\xc2\x41\xf9\x72\x37\x70\xf4\xe5\xf3\xdd\xc6\x17\x85\xfb\xd2\x97\xbe\x64\x81\xf6\x14\xca\x17\xbf\xf8\x45\xdf\x49\x48\xf9\xf2\x6d\x35\xdc\x42\x5d\x77\x2a\x00\xc2\xd4\x10\x00\x80\x75\x38\x60\x38\x0c\x16\xa7\x02\x5a\xf8\x63\xcf\xde\x1b\xc4\xe9\xaa\xd3\xaa\xd3\x13\xde\x58\xe1\x77\xe1\x74\x04\x29\x9b\xea\x94\x06\xcb\xc3\x42\xe4\x17\x49\xaf\xe9\xc0\xae\x3a\xeb\x1a\x18\x1c\xf4\x39\x16\x34\x98\x98\x8e\xee\xa2\x25\xf6\xbd\x0f\x0d\x6a\x5a\xbf\x48\xba\xbe\xf5\x9c\xe3\x0a\xf2\x56\xff\xf2\x53\xc4\x2b\x0f\x83\x81\xbd\xbe\x36\xc7\xfe\xa0\xdc\xbf\xb2\x31\xbb\xfa\xde\x77\x56\x3f\xf8\xc0\xf6\xf0\xbd\x6b\x33\xda\x34\x8e\x52\xdf\x01\xd7\x4e\x6f\xd6\xe3\xf9\xdd\x45\x6d\x1d\x4a\xf0\xc7\x66\xb4\xd7\x43\x3a\x00\x8e\x60\xe7\xc6\xcd\x6e\xad\x14\x97\x7e\x72\x62\xf4\xec\xf9\xe3\xa3\xf3\xbb\x83\xf2\x1d\x47\xd8\xf1\xeb\x37\xc4\x3a\x0e\xee\x69\xe4\x7d\x57\x90\xff\x66\x19\x4b\x9c\x87\xbe\x0d\xd4\x83\x58\x6e\xcc\x81\x3d\x1b\xd1\xee\xec\x24\x2d\x8b\x37\x8f\x4c\x26\xd7\xd6\x67\xd7\x8e\xed\xe5\xaf\x3d\x72\x63\xf8\xee\x07\xb6\x07\xef\x39\x3c\x49\x4f\xa4\x8e\xaa\xc3\x21\x83\x91\x52\x0d\xe0\x83\x47\x05\x6c\x60\x8e\xf6\x40\xbf\x24\xd8\x79\x62\x27\xbb\x83\xf2\xda\x5b\x9b\xd3\xd7\xfe\xdb\xd1\xc9\x2b\x57\x37\x66\x97\xa7\xa9\xbd\x65\xe1\x46\x04\xda\x43\x7d\xa9\x2b\x1a\xcf\x13\x3f\xd9\x7a\x46\xed\x29\xe1\x10\x22\xbb\x65\xfb\xf4\x3f\x5d\x72\x6a\x01\xfd\x1c\x17\x6e\x05\x71\xa7\x06\x1f\xf1\x79\x1e\x68\xa3\x9d\x85\xc0\x2c\x4d\x3e\xda\xf0\x5b\xe3\xfc\x94\x51\x0e\x20\x9d\xa5\x2e\x7d\x70\x7b\xf0\xc8\xfa\x2c\x39\x69\x1c\xb2\x20\xa5\x9e\x18\xa2\x36\xe7\x19\xc2\x40\x84\x34\x5a\x44\x08\xeb\x6e\x6a\xa0\x76\x05\x4b\x0f\x4e\xed\x6e\xe4\xc6\x8d\xcf\xab\x4e\xe0\xa7\x90\x7c\xfa\x46\x38\x28\x29\x8d\xbb\x7a\x75\x7d\xf6\xc6\xde\xb0\xdc\x06\x5b\xa0\xcb\x46\xc5\x7e\x74\x09\x00\xb8\x7c\xf9\x32\xed\xee\xee\xc6\xbc\x17\x5d\x21\x36\x3d\xd1\x05\x2f\x47\x7e\xb1\xc0\xd9\x12\x1b\x91\xc6\x68\xe9\x1a\xc5\xc6\xd2\xf5\x2d\x4b\xd7\x48\xb3\x2b\x4d\x0c\x4e\x7b\xd6\xdc\x95\xb1\x6f\xcb\x46\xec\x92\xd6\x2e\xdc\x07\x4e\x93\x24\x89\x71\xce\x39\x7f\x14\x81\x1f\xbd\xc1\x3b\x0d\x5d\x38\xff\xc5\xba\xe6\x5c\x18\x2e\x7f\xb6\xf6\xb8\x38\x20\xac\x35\x09\xbb\x78\xd8\x34\x53\xeb\x99\xbd\xb7\xd6\xac\x70\x37\x7a\x3d\x22\x0d\x1e\x46\x8f\x1b\x8d\x57\x25\x4c\x9b\x7a\xba\x4f\x9f\x3e\x4d\x45\x51\xd0\x3f\xfe\xe3\x3f\xfa\x32\xc4\xfe\xb8\x47\x80\xcb\xa9\xe6\xbd\xd0\x60\xbb\x70\x5b\xe5\x5d\xba\xb3\x9d\x12\x67\x3b\xf2\xe1\xcf\xb1\xba\x06\x16\xf3\xe3\xdf\x35\xd8\x2e\xfa\xa4\x77\xa7\x2b\x1d\x97\xad\x65\x65\x6f\xe5\xf3\xda\x6b\xaf\x39\x6f\xb4\xb8\xea\xec\x12\xc7\x9e\x43\x07\x4f\xed\x45\xab\xdc\xc0\x75\x85\x71\xc5\xce\xb0\xd8\x7f\xfb\xd0\xf4\xf2\x28\x2f\x6f\xa6\x8e\x60\x2a\xc9\x4d\x08\x64\xf8\x12\x54\x30\x5d\x2e\x8e\x75\x01\x9f\x2e\xa9\x60\x1c\x4a\x72\xc5\x38\xb3\x7b\xd7\xd7\xe6\x17\xcf\x1f\x1b\x3f\xff\xc2\xfd\x7b\x3f\x78\xed\x9e\xf1\x2b\xe3\xcc\xde\x00\xb0\xe7\xe0\xf6\x50\x79\x18\x76\x6b\x0f\x03\x5f\x8c\x3e\x65\x1e\x49\xee\x2d\xb7\x00\xf0\xd2\x4b\x2f\xe1\xd2\xa5\x4b\x54\x97\xa9\x55\x47\x7f\xf4\x47\x7f\x44\x69\x9a\xfa\x32\x07\x1e\xb3\xe9\x9a\xb0\x43\xae\x6e\x9b\xa1\x5d\x21\xb4\x29\x2a\xe7\x89\x9b\xef\x0c\x8b\xbd\x2b\x1b\xb3\x77\xae\x6e\xcc\x2f\xed\x0d\xca\xeb\xf3\xc4\x8e\x2d\xa1\xa8\x6f\xc2\xae\xba\x22\x61\xc9\x39\x72\xb6\x24\x94\x8e\x60\x0b\x83\x62\x9a\xda\xf1\xce\x4a\x71\xf5\xd2\xa1\xd9\xab\x3f\x3b\x3e\x7e\xf1\xe5\xfb\xf6\x9f\x7b\xf5\xd8\xf8\xa7\x37\x56\xe7\x6f\xcf\x13\x77\x0b\x95\xc7\x69\x97\x9a\x6d\xcf\x7b\x68\x76\x0a\xb6\xa6\xcb\x50\x9f\x61\xd3\xd0\x59\x85\x9f\xfd\xec\x67\x34\x9d\x4e\xb9\xfc\x70\x79\xe2\x3c\x5a\xf6\x27\x65\xd3\xc8\xbe\x5d\x5a\xe5\xcb\xde\x79\x9c\xfc\x0d\x81\x9d\xe9\x62\xd0\xec\x26\x0a\x17\xc0\x39\xe7\xd6\x01\x6c\x12\xe8\x10\x80\xa3\x9f\x7e\x75\xf3\x37\xde\xfb\xce\xea\x7f\x5e\x99\x99\xa3\xc6\x35\xdb\xc0\xf8\x4a\x72\x12\x71\xde\x5a\x88\x1d\x6b\xbc\x68\xc4\xe8\xb1\x1a\xce\x0a\x9a\x5d\x7b\x0e\x69\xa0\xb4\xd3\x7a\x5b\xcb\x92\x2b\x6e\xae\xcc\x7f\xf0\x83\x87\x76\xff\xf2\xb5\x7b\xc6\xcf\xce\x12\xbb\x5d\x0b\xc2\x88\xda\xeb\x04\x42\xc7\xd1\x71\x63\x74\xd7\xe8\xa9\x2b\x1c\x04\xf6\xa0\x69\x6e\x07\xf7\xcf\x83\x8e\xff\x1e\xb4\xfc\x47\x0c\x4b\xcb\xcc\xda\x9e\x4c\x07\x00\x6c\x24\xda\x8e\xd7\x60\x7b\x04\x2b\xf0\x71\xfc\xad\x6f\x6c\x2d\x4e\x08\x5c\xf6\xd7\xd7\xd7\xcd\xde\xde\xde\xed\xc8\xbb\x84\xef\xd2\x59\x77\xeb\x39\x16\x87\x25\xb0\x7d\x68\x8d\x85\xbb\xc1\x93\x3e\xe5\x42\x0f\xfa\x02\xdc\x70\x38\x34\x93\xc9\x84\x7b\x5c\x8c\xf8\x0b\xa7\x38\xd7\x4b\x04\x56\x51\xf5\x03\xab\x00\xd6\x01\xac\xc2\x61\x1d\xc0\x90\x80\xd5\xac\xa4\x43\xeb\xd3\xf4\x9e\x13\xbb\xd9\x89\x93\xbb\xf9\xa9\x7b\xf6\xf3\x93\x1b\xd3\xe4\xe8\xa0\xa0\xd5\xc4\x51\x6a\x1c\x19\xb2\x48\x0d\xd3\xfa\x7e\xcd\x86\x83\x83\x35\x28\x0a\xe3\x8a\xb9\xb1\x93\x49\x66\xf7\x6e\x0d\x8b\x1b\x97\x0f\xcd\xde\xb8\x74\x78\x7a\xf1\xe6\x4a\x71\x63\x96\xda\x5b\x65\xb5\x00\x77\x0f\xd5\xaf\xf7\xb4\xec\xd5\x6b\xb6\x82\xc7\x05\xed\x6b\x27\xbc\x61\x01\x22\xea\xd2\xdb\x21\x3c\xf5\xd4\x53\x66\x73\x73\x93\xf3\x4c\xf2\x25\x85\xb8\x1c\xb5\xe6\xcb\xaa\xab\xee\x1d\xab\x78\xe5\xb0\x0a\x60\x98\x38\xac\xa6\x25\xad\x0d\xca\x64\x75\x63\x92\x1c\xba\x67\x3f\x3d\x7a\x74\x94\x1d\x5b\x9f\x26\xeb\xc3\x22\x59\x4d\x2d\x0d\x13\x07\xe3\x00\x14\xc6\x15\xb3\xc4\x8e\xa6\xa9\x1b\x4d\xd2\x72\x72\x6b\xa5\xd8\xbe\xb6\x3e\xbf\xb6\x3d\x2c\xb6\x27\x99\xdd\x2b\x8d\xdb\xb7\x84\x89\x83\x1b\x81\xed\x14\xac\x7f\xc3\x51\x07\x35\x4f\x5a\x8b\x72\x19\x3f\x80\xbb\xd7\x87\x75\xca\xa6\xb6\xab\x28\x96\x10\xe2\x39\xe6\xe6\x51\x03\x57\x60\xe2\x2f\xb8\xce\x50\x9d\x77\x52\x5c\x5f\x9d\x5f\x9e\x26\x76\x6f\x48\x66\x93\xe7\x2d\x17\x86\x37\x06\x86\xe3\xc6\xe5\x42\xf0\xbe\x90\x36\x58\x07\xbc\x3f\xcf\xc5\x1b\x2b\xe1\x68\x5c\xa5\x5c\xf0\x46\xcc\xe2\xb1\xcc\x04\xa4\xc3\x79\x72\xf2\xd8\x7e\x76\xdf\x95\x8d\xd9\xfa\x7c\xd5\xed\x01\xad\xdb\xa2\xbd\xd0\x06\xa5\xfe\xc5\x2f\x7e\xd1\xdc\x86\x8b\xcd\x07\x4d\xe1\xf4\x15\x8e\x58\x5e\x5d\xb0\xb7\x63\x28\x1c\x44\xe1\x1e\x44\xa1\xff\x47\x32\x5a\x96\x75\x96\x77\x2b\x2c\xe5\xcf\x33\xcf\x3c\x63\x9f\x7c\xf2\x49\xf3\xfd\xef\x7f\xbf\x75\x24\x3b\x1b\xf5\xfa\xf4\x88\xe0\x08\x71\xb5\x6b\x3f\xfa\x1d\xc0\x82\xd1\xd2\x05\xcb\xd7\xae\x1c\x3f\x7e\xbc\x65\x20\xb1\xe3\xc1\x65\x88\x75\xfc\x3c\x3e\xd6\x56\x34\x65\x18\x83\xb5\x11\x18\x08\x18\xfe\x2b\x69\xd0\x8c\xbe\x65\x03\x41\xf9\x2d\x3a\x20\x8c\xe0\xd1\xf4\xf6\x32\xfa\x39\x1e\xf9\x3d\x66\xb8\x6a\xb0\x98\x4c\x26\x00\x80\x7f\xff\xf7\x7f\xc7\xfb\xdf\xff\x7e\x78\x6f\x04\x9b\x4a\xf1\x53\x24\x2d\xd9\x6b\xf5\x0f\xe1\xba\x08\x14\xb3\xc4\xce\xb6\x57\xe6\x93\xbd\xbc\xd8\x7e\x6b\x73\x7a\x69\x63\x9a\x1c\x3a\x3a\xca\x8e\x1d\x19\xa5\x9b\xab\xb3\x64\x7d\x58\x98\xd5\x41\x61\x56\xf3\xc2\xe4\xc6\x21\x75\x54\x5d\x3f\x61\xe1\x6c\x61\xdc\x6c\x9c\xdb\xd1\xde\xa0\xd8\xb9\x35\x2c\x6e\x6c\xaf\x94\xdb\x3b\xc3\x62\x67\x3f\x2f\xb7\x67\x89\xdd\x2f\x0d\x46\x0e\x61\x5a\x68\x42\x08\x87\xcb\xf9\xed\xfd\xdc\x68\xd1\x6e\x83\x96\xc6\xb7\xa6\x7f\x43\x7d\x7c\xed\x6b\x5f\xb3\x9f\xfb\xdc\xe7\xcc\x89\x13\x27\xb8\x87\xd1\x87\xa2\xe6\xc3\x04\x6d\x0f\x14\xea\xf7\xe6\x46\xea\xea\x62\xd2\x61\x09\x37\x29\x53\xec\xcd\xd2\x62\x38\xca\xca\xeb\xd7\xd7\xe6\x97\x33\x3b\x19\x66\x05\xe5\x99\x35\x79\x62\x29\x35\xf5\x72\x8b\x82\x5c\x51\x24\xae\x98\x27\x76\x56\x12\x8a\xd2\xb8\xd9\x3c\x71\xfb\xa5\x71\x13\x07\xcc\x40\xfe\x22\x53\x0a\x07\x4b\xba\xe6\x0c\xa6\xd6\x0d\xed\x9c\x1f\x68\xae\xdf\xf0\xfd\xb8\x26\x27\x77\x4b\xef\x05\x07\x48\xd7\x1a\x97\x58\x27\x25\x09\x59\xda\x10\xfd\x3d\x16\x62\x34\x66\xd1\x5e\xa4\x17\x18\x71\x6d\x6d\x7e\x65\x94\xdb\x1b\x1b\x53\x77\xb2\xd9\x16\xb7\x68\x39\x34\x6b\x68\x5b\x37\x57\x2c\x7a\x42\x1c\xb5\x5d\x88\x22\x48\xf8\x70\x05\x38\x1a\x4b\x49\x5d\x37\x13\xac\x96\xc5\xad\xda\x7e\x41\x58\x56\xd2\xd1\x7b\x46\xd9\x43\xeb\xd3\xe4\xe8\xf6\x6a\x71\x0d\xf5\x76\x37\x08\x8b\xbb\x6e\x00\x81\x7f\x0f\x3f\xfc\xb0\x79\xfd\xf5\xd7\x63\x0a\x4b\x6d\x18\x3d\xbe\x71\x98\x2e\x25\x08\xe5\x7b\x17\x0d\x1c\xa7\xcc\x5f\xa6\x8d\x29\xd5\xd8\x28\xaf\x8b\xf6\xdb\x51\xe6\x5d\xdf\xfb\xa6\x91\xb4\x6a\xf4\x76\x75\x38\x5d\x79\x1f\x74\xd4\x2f\xf1\x42\xc0\xe1\xfb\xdf\xff\xbe\x05\x80\x7f\xf8\x87\x7f\xc0\x1b\x6f\xbc\x61\x1f\x7d\xf4\x51\xf3\xab\xbf\xfa\xab\xbc\x5d\xf2\x9b\xa7\xa5\x07\x46\xe5\xaf\x6c\xcb\x6c\x3d\x4c\x80\xe7\x38\xfd\xbb\x34\xca\x1f\x7a\xe8\x21\x53\x96\x25\xde\x7a\xeb\x2d\x4d\x2e\xb4\x67\x49\x1b\xff\xd6\xc7\xcb\xc1\xe3\x62\x9d\x72\x9f\xce\x88\x3f\x4b\xfa\xba\x9e\x65\x39\x25\xdd\x7d\x70\xcb\x72\x6b\x46\x96\x2c\x67\x17\x8d\x32\xef\x2e\x9a\xb4\x72\x2c\xa4\xfd\x2f\xff\xe5\xbf\xd8\xc7\x1f\x7f\xbc\xd5\x3e\x98\xbc\x14\x61\xba\xbe\x92\x0d\x79\x29\x5f\xb8\x39\x19\xa0\x59\x09\x37\xb3\x19\x46\xb3\xb4\xbc\x35\xca\xcb\xeb\x37\x57\x8a\xab\xf9\x26\x0d\x53\x4b\xc3\xac\x34\x79\x5e\x2d\xe4\xcd\x53\x4b\xa6\x24\x67\x4b\x03\x6b\xc9\x15\xa5\x71\xc5\x34\xb5\xb3\x59\xe2\x26\xf3\xc4\x8e\xe6\x89\x1b\xcf\x8d\x9b\x58\x0a\x5e\x83\x09\xa1\xf1\x2e\xd4\x46\x03\xf7\x2c\xf8\x2b\x30\xb8\xd1\x12\x2e\xf5\xf4\x65\x7a\xe6\x99\x67\xec\xc6\xc6\x86\xd9\xdd\xdd\xed\xd2\x5f\x06\x00\xbe\xfe\xf5\xaf\x5b\x36\x95\xd6\x32\x7c\xea\x32\xfb\xe7\x66\x40\xdf\x1c\xa3\xef\xcf\x5e\x1a\xd6\x74\x4d\x00\xe4\x0e\xc8\xe7\xc6\xe6\x45\x42\xf9\xc4\xb9\x94\x72\x32\xe4\x60\x08\x48\xfd\xa4\x9f\x23\xc0\x11\x0a\x57\x19\x86\xfc\x66\xf5\xca\x10\x71\xcd\x2e\x41\x54\x46\x9b\xdf\x21\x18\x6e\x67\xaf\xd7\xb4\x14\x9c\x26\xcf\x0b\x6f\xb4\x14\x45\xb1\x4c\x7e\xba\xe4\xb4\x4b\xd6\x5a\x32\xb7\x6c\xaa\x48\xc6\x69\x8a\xba\x57\x47\x52\x8f\xf6\xf8\x9f\x77\x19\xae\xd6\x7f\xeb\xce\xb9\x4d\x22\xda\x5c\x99\x99\x13\xbf\xfc\xea\xe6\x67\x1f\xb9\x39\xfc\xc4\x70\x6e\x36\xa9\xc3\xea\x68\x79\x51\x5c\x63\x30\xf4\x0a\x91\xd9\x22\xbe\x33\x49\x9b\x16\xe2\x6b\x64\xb4\xa9\xa2\x6a\x3a\xab\x82\x29\xc9\xcd\x6e\xae\xcc\xff\xeb\xf3\x0f\xec\xfd\xdf\xaf\x1c\x1f\xfd\x60\x5a\x4f\x17\xa1\x6a\x2c\xea\x85\x5d\x7d\xdc\x8e\x4a\x38\x88\x65\xdb\xd7\xa0\x59\xd6\xb9\xff\xff\x3d\xdc\x69\x59\x6f\x37\xfd\xdd\xa8\xcb\x03\x87\xcf\x7c\xe6\x33\xe6\x1b\xdf\xf8\x86\x05\x16\xa7\x98\xe4\x14\x50\x57\xe0\xf2\xfb\xf4\xd3\x4f\x1b\xef\x55\x79\xec\xb1\xc7\x0c\x00\xfc\xf4\xa7\x3f\xb5\xf7\xdd\x77\x9f\x79\xfb\xed\xb7\xa3\xa3\xd3\xbb\xf8\x8c\xdb\x4c\xd7\xf5\x2c\xe9\xbd\x1d\x03\xb3\x6f\x3e\xe8\x01\x7b\x3b\xb8\xfb\xf2\x87\xbf\x1f\xb4\x9c\xfc\xfc\x12\x03\x04\xaf\x9d\x41\x75\x08\x9d\x1f\xc4\x85\x5b\xcb\xd1\x4c\x91\xf8\x65\x04\x43\x1f\xcf\x60\x72\x57\x5d\xc4\x9b\x12\x90\x1a\x07\x63\x2c\x65\xc6\xc1\x38\x02\x2c\xc1\x3a\xa0\x74\xe4\x6c\xd5\x59\x3b\x7f\x33\xf5\xac\x31\x88\x5a\x1e\x84\x11\x33\x04\x96\x4d\x87\xb4\x16\xa2\xbe\xf8\xe2\x8b\xf8\xde\xf7\xbe\xd7\xbb\x1e\x1e\x7c\xf0\x41\xf3\xe6\x9b\x6f\xb6\xa6\xd2\x18\x7f\x5a\x7d\x63\x8c\x3f\x82\x57\xe1\xd2\xd4\x3a\x3e\xe0\xf0\x1e\x52\x6e\x58\x10\xbf\xf0\x94\x5d\x7c\x59\x97\xdd\x2f\xb8\xf5\x8b\x6f\xc3\xa2\x64\xc1\x87\xe0\x70\xa8\xcb\x67\xb9\xf7\xf4\x36\xe4\xa4\xab\x6f\x51\x0d\x19\x12\x09\xfb\x84\x03\x67\xfe\xf9\xcf\x7f\xde\xe4\x79\xce\x5d\x83\x5e\x68\x7d\x45\x0c\x89\x68\xdd\x39\x77\x88\x88\x36\x8d\xc5\xd1\x8f\xbf\x7e\xe8\x57\x1e\xbf\xb2\xf6\x9f\x37\xa6\xc9\x49\x79\x0c\x34\x0f\x8b\xde\x12\x7f\xf6\x0a\x9a\x05\x5b\x68\xcf\x24\x2d\x7a\x64\xda\x11\x0b\x38\xe1\xd0\x32\x9e\x02\xc0\xa2\xe9\xc2\x0d\x1d\xff\x32\xca\xca\x0b\x3f\x3b\x3e\xfa\x7f\x7e\x74\xdf\xfe\xff\xfb\xce\xda\xec\x22\x33\x5c\x9a\x4b\xed\x98\xe1\x02\x00\xdf\xfd\xee\x77\xf1\xd2\x4b\x2f\x75\x29\x97\x65\x21\x66\xf9\xf7\x49\x77\xa7\x1d\xa1\x66\x45\xff\xf7\x30\x76\x6e\x27\x9f\x3e\x69\x96\x95\xe7\xa0\xf9\xfe\x8f\x32\xfe\x96\xe6\xfb\xd1\x8f\x7e\xd4\x3c\xf7\xdc\x73\x77\x44\x1b\xc7\x21\xf0\x2d\x33\x84\xfb\x76\xc6\x50\xd2\xc6\xc2\x41\xf2\x59\x86\x43\xe2\xf3\x21\x86\xeb\x6e\x18\x1a\xcb\x46\xa2\x5d\xb8\x63\xf9\xc8\xb8\xae\xb2\x74\x75\x26\x1e\xbe\x93\x16\x6e\xbc\xf0\x4e\xba\xee\x03\x8c\x73\x4e\xbb\xbd\x9c\x77\xd2\x43\xd4\x9d\x37\x83\xf1\x53\xee\x72\x40\x0c\x00\xb2\x93\xb6\xa2\x93\xe6\xde\x05\x7e\xb9\x28\x9f\x0a\x59\x58\xcf\x22\xfe\xf0\xcc\x33\xcf\xd8\xfb\xef\xbf\xdf\x08\x6f\x61\x2f\x39\xfd\xcc\x67\x3e\x63\x4e\x9e\x3c\x09\x00\x7e\xeb\xf3\x82\xf1\xc2\x0c\x17\xcf\x1f\xb9\x3e\x28\x67\xfd\x68\x80\x67\xc6\xa1\x36\xcb\xe1\x8d\x2f\x69\xb8\xf0\x72\xfb\xa9\x20\xc9\x87\x96\xd7\x89\xe1\xc4\xce\xce\x0e\xfe\xfc\xcf\xff\xfc\x20\x72\x7a\x10\x5d\xb0\xd0\x06\xb4\x73\x5c\x96\x85\x18\xac\xef\xaf\x17\x76\x55\xf8\x4b\xb8\xfc\xc1\x44\x35\x33\xa9\xae\x30\xaa\x2b\x27\xab\x99\x9e\x3b\xc2\x60\x7d\x96\x6e\x1c\xdf\xcf\x1f\x59\x9d\x27\x87\x8d\xa3\x24\x2c\x35\x21\x3d\x53\x1e\x4d\xf5\x9e\x66\x7f\xd6\x0a\x31\x23\x06\xb4\xb8\xfa\x5c\x3a\x74\xe4\x41\xbb\xfc\xce\x87\x66\x3b\x1e\x2d\x4c\x60\xb5\x93\xb9\x90\x96\x40\xc6\x92\xbb\x75\x6b\xa5\xb8\x78\x73\xb5\xb8\xee\xe0\xfc\x01\x5c\xad\x4b\xe3\x18\x0a\xf7\xcd\x6f\x7e\x53\x76\x8c\xdc\x6c\xf2\xef\x5d\xbb\x51\x80\xa6\xb2\x63\x75\xa6\x7d\xf3\x2b\xb9\xb5\x55\xdf\xb1\x38\x89\x4b\x3a\xab\xba\xe8\xd4\xbe\xc9\xf2\xc5\xe2\x65\x59\x34\x9e\x75\xe1\x69\x66\x18\x17\x71\x6a\xe5\xf1\xef\x92\x66\x99\x6f\x6c\x47\x0b\xc7\xa3\xd1\xc2\xe3\x65\x19\xb4\xfa\x8e\xc5\xc7\xde\x35\xba\x38\x2e\x77\xf9\xf2\xe5\x2e\x5e\xf0\x32\x44\xf3\x61\x38\xcc\xe5\xcb\x97\x2d\x4b\xc7\x69\x40\x24\x4e\xa3\x91\x97\x93\xbf\xc7\xe0\x39\x6f\x64\xe7\xcf\xeb\x5c\x96\x25\x86\x07\x02\x9f\xcf\x97\xbf\xcb\xba\x92\xdf\x64\x5b\x34\x68\xd3\x27\x65\x31\x96\x9f\x26\xb7\x5a\xbb\x94\x65\xd3\xe2\x39\x6f\x38\x2d\x3c\x9d\xd6\x76\x2c\x16\x69\xd4\xe0\x09\x80\x93\xf7\x6c\x01\x68\xed\x2a\xaa\x3b\x56\x79\xe8\xa0\x75\xcd\x81\x66\x7e\x6a\xc2\x5f\xe2\xe7\xcf\x09\xf2\x06\x87\xbf\x92\x62\xec\xaa\x63\xf9\xfd\x3d\x5a\x23\x54\x3b\x82\xf6\xd1\x1c\x9a\xe6\x6f\x34\xde\x47\xb3\xe8\xd4\x1f\xe3\x3f\x86\xb8\x7a\xa2\x2e\x5b\x41\xcd\x6e\x3c\x5f\x17\xd8\xdc\xdc\xa4\xd7\x5f\x7f\x1d\xf5\xce\x19\xc9\x63\x8b\x76\x5d\xb5\xe4\x6a\x3a\x9d\x62\x6d\x6d\x0d\x6b\x6b\x6b\x20\x0a\x3d\x4e\x38\xb7\x88\x9a\x9d\x7d\x9e\x67\x05\xe3\x4d\x51\xf3\xa1\xa0\xea\x1c\x24\x7f\x4f\xd0\xb4\xe6\x51\xb8\xa6\x83\x4f\x7b\xa1\x7d\x09\xaa\xe7\xcf\x88\x9a\x2b\x3a\xc2\xad\xec\xcc\x88\xf3\xfc\x2e\x6b\x7e\x84\xab\x0d\xfc\x14\xf3\xad\x5b\xb7\xf0\x17\x7f\xf1\x17\x5d\x72\x2a\xe5\x4d\xb6\x0d\x40\x6f\x0b\x52\x57\x78\xb9\x0b\x6b\x5c\x0e\x3a\x02\xe1\xc1\xa7\x95\x16\xd3\x02\x3e\x6f\xf9\x89\xf9\xbd\x96\xeb\xaa\xae\x80\xd9\x8d\xd5\xf9\x3b\xfb\x79\x79\xe3\xc8\x38\x7d\xc0\x38\xca\xfd\x99\x83\xdc\x00\xa9\x7d\x21\x4d\x4b\x77\x4d\x1e\xcc\xd6\x68\xd2\x04\x42\xda\x06\xc6\xc2\x2e\xa4\xf0\xbd\xca\x88\x7b\x6c\xfc\x99\x00\x8e\x8b\x6a\x83\x96\xd5\x5a\x93\x49\x62\xb1\xba\x31\x4d\x1f\x3a\x32\xca\x1e\x5c\x99\x4f\x5f\x1b\x65\xe5\x04\x95\xe5\xec\x5d\x6e\xfe\x4c\x03\x95\x6f\x4a\x9c\xe7\x75\x9f\xd1\x64\x57\xbd\x2e\xcb\x2b\x96\xb6\x6f\xba\x3b\xc1\xef\x05\x56\xca\x94\xc1\x62\x19\xb5\xf2\x6b\x7c\x59\x96\xaf\xc4\xc7\x71\xc5\x82\x56\x37\x5d\xbf\x9d\x23\xb1\x8e\x7c\x8d\x78\xe6\xf8\x34\x39\x40\x04\x5e\xab\x9b\x58\x1a\xff\x2d\x96\x46\x83\xd1\xea\xab\xab\x8c\x1a\x0d\x31\x9e\x76\xa5\x5f\x18\x95\x75\xc0\x77\xb5\x97\x65\xf0\x1a\x1c\x96\xc0\x1e\xb4\xbc\x31\x7c\x07\x6d\xcb\xcb\x78\x22\x7f\xa5\x1c\x75\xc9\x40\x4c\x8e\xd5\x36\x73\xf6\xec\xd9\x85\xb3\x5d\x98\x37\xc0\x2f\x4c\xf5\x5b\xf0\x53\xde\x17\xa0\xed\x6d\xe0\x5e\x08\x43\xcd\x7a\xc1\xd8\x55\x14\x16\x8b\xeb\x28\x5b\x87\x23\xfa\x77\xf6\x9d\xc3\x5b\x60\xe1\x0c\xa2\x3e\x67\x94\x68\xbc\x09\xef\x17\x2e\x5c\xc0\x85\x0b\x17\x00\x54\xd3\xa9\xc4\xd6\xba\x50\x73\x2d\x40\x4b\x97\xd5\xf1\xbe\xbc\x69\x3d\x85\xe3\xa7\x87\x52\x60\xe1\x6c\x1c\x53\xe3\x6b\xd1\x44\xcd\x39\x32\xc1\x30\x03\x5b\x47\xa3\xc4\xb7\xae\xee\xe0\x65\x65\x46\x8b\x94\x95\x98\xbc\x4b\x1d\x1e\xd3\xe3\x32\x5d\xab\x3f\xd0\x3c\x2e\x5d\xa3\x0f\x0d\x8e\x8f\xd0\xba\x46\x7e\x60\x56\x77\xb8\x5c\x0a\x15\xb3\xfd\x8d\xa1\xc1\x15\x66\x0d\xd2\x13\x7b\xd9\xa9\xcd\x49\x76\x2a\x2b\x69\xb5\xb2\xd0\xbd\xb7\x24\xdc\x0a\x04\x8f\xc4\x63\xab\xec\x61\xe6\x1e\x63\x0b\x03\xb9\x01\xd2\x04\x5a\x28\x85\xb6\xf3\x48\x26\xf3\xf4\xf8\x2c\x5a\x78\x5d\xf3\x50\x79\x7f\xc8\x10\xc1\x15\x89\xbb\xbe\x3b\x28\xdf\xda\x19\x16\xb7\x6a\xe1\xf0\x47\xad\x7b\xcb\xda\x8f\x38\x1c\xbb\x74\x71\x81\x8f\x8c\x24\x4d\x40\x62\xde\x15\x74\xe0\x3a\x48\x7c\x17\xfe\x3b\x0d\xc2\xbc\x5c\xf0\xd6\x80\xc5\x49\x4f\x82\xc4\xa1\xf1\x25\x46\xbb\x2c\xa7\xf4\xb4\xdc\x4e\x88\xf1\x34\xe6\xb9\x91\x30\x12\x8f\x46\x9f\xa7\xd1\xb2\x78\xe9\x2d\xb0\x1d\xf9\x68\x6d\x9b\xff\x76\x79\xb7\x1c\xe2\xf5\xc3\x43\xcc\x2b\xd7\xa5\x73\x7c\x9c\xed\xf8\x2e\xbd\x02\x5c\x5e\x62\x5e\x13\x59\xaf\x5d\xc6\x09\x29\xf0\xb2\x0c\xfe\x9b\xc4\xad\x79\xc2\xfa\xe8\x52\x59\x7e\xc9\xdf\x3e\xed\x94\x3f\x4b\x2f\x55\x97\x3e\xe1\x65\xd0\x64\x40\x2b\xb7\x65\xcf\x1a\x3f\x5b\xf9\x30\xaf\x7b\xc8\x83\x0d\x66\x5b\xb7\x9b\x7b\xef\x0b\xda\x8b\x40\xfd\xe2\x54\xee\x75\xf1\x17\x1e\xce\x50\x79\x18\x5a\xde\x06\xa0\x75\xd7\xd0\x18\xec\xd8\x7e\x62\xb7\x3c\x33\xaf\x85\xbf\x96\x85\x9f\x4b\x62\x01\xb8\xb3\x67\xcf\x86\x5b\x9f\x05\xef\xbb\x78\xdb\xa5\xab\x00\x00\xef\x7a\xd7\xbb\xe8\xab\x5f\xfd\xaa\x95\x5e\xa9\xb0\x96\xd2\xb9\x16\x6f\xd0\x5c\x9a\x6a\xc1\xae\xcf\x20\x22\xff\xec\xff\xa6\xdc\x3b\x85\xf6\x45\xa9\x53\xd4\x17\xa3\xa2\xb9\xa2\x23\xe0\x61\xde\x15\xff\x5b\xd6\xf5\x11\x16\x14\x9f\x3d\x7b\xd6\xbe\xfc\xf2\xcb\x5c\xd6\x62\x6d\x49\xf3\xe2\x69\x6d\xaa\x4b\xdf\x70\x1d\xd7\x1a\xc5\xf9\x10\xb5\x12\x23\x88\x62\xa3\xc2\x56\x78\xea\xa9\xa7\x82\x55\xec\x9a\x43\x75\x00\xc0\x2f\x1c\x0a\x16\x1e\x80\x62\x96\xd8\xc9\xf6\x4a\x79\x79\x92\xda\x1d\x57\x2d\xb6\x02\x1c\xea\xc3\xe5\xea\x13\x14\xe1\x2f\xe1\x72\xe1\xbf\xbf\x9b\xc2\x07\x47\x04\x48\xa3\xc5\xa1\x4e\xef\x5b\x0f\xc3\x4d\x35\x8d\x68\x60\xc3\xf5\xcf\x75\x84\xbf\x90\xaa\xa1\x1f\xcd\xce\x09\xff\x17\xfe\x55\x21\x2d\xe9\xd0\xe1\x71\xfa\xd0\xd1\x51\x7a\x32\x71\xd5\xdc\x24\x2a\xa3\x2d\x8c\x18\x80\xd6\x91\xd8\x00\x80\xd5\xd5\xd5\x2e\xde\x6a\x23\x6f\xed\x59\x4b\xc7\xe1\x6c\x04\x5e\xb3\x76\x25\x7e\x8d\xbe\x98\x1c\x74\xc1\xc4\x68\xd2\xf2\x5a\x86\xbb\xcf\x77\x8e\x57\x96\xd3\x3f\xc7\xf8\xa2\xe1\x58\x46\xc3\x32\x9e\x69\xf1\x1a\x0d\x32\x4d\x6c\x14\xde\x35\x3a\x97\xb8\x63\x6d\xd8\x42\xa7\x51\xc2\x4b\x1e\x68\xf2\x22\xf3\x96\x65\x8c\xd1\x26\xe9\x5a\xc6\x73\xad\x0e\x3d\xcd\x52\xb6\x78\x9c\xcc\x23\xf6\x4d\x96\x41\xb6\x3f\x2d\x3f\xad\x9c\x9a\xfc\x49\xc5\x1f\xcb\xbf\x8b\x26\xfe\xac\xf1\x70\x99\x3c\x2d\xcb\x8f\xd3\xbc\x4c\x7f\xb4\xf0\x27\x49\x62\xb6\xb7\xb7\xf9\x2e\xb3\x05\xbd\xcf\x46\xfc\x33\x6a\xef\x6c\xf1\x27\xb7\xee\x39\xe7\xf6\x88\x68\x07\xc0\x0e\x80\x1d\x22\xda\x71\xce\x6d\xfb\xb8\xfa\x79\xdb\x39\xb7\x03\x60\xcf\x39\x17\x4e\x7e\xf5\xd3\x23\x4e\x6c\xf5\xa5\xe6\x24\x58\x79\x88\xa2\x75\xce\xc1\xda\xaa\x6a\x7e\xff\xf7\x7f\xbf\x4b\x1f\x48\x7e\xc5\xf8\xda\xc2\xf1\xd7\x7f\xfd\xd7\x16\x58\xf0\xe2\xb4\x3c\x23\xb5\x21\x51\x38\xe7\x8a\x9a\x4e\x7e\x37\xd8\x84\x95\xcb\x97\x73\x0f\xd5\x34\xd0\x9e\x8c\x03\xdb\xf2\x5d\x2f\xc0\x9d\x38\xe7\xf8\x7a\x4b\xee\x81\x91\x1e\x27\x0b\x00\xa3\xd1\x28\x56\xd6\x65\xba\x40\xf2\x82\x07\x4d\x36\x35\x7c\x0b\xbb\x8a\x24\x01\x5a\x43\xd2\x94\x0c\xcf\xb8\x13\x57\xbd\x50\xcb\xdf\x40\xeb\x17\x16\xf9\x15\xd2\xeb\x00\x0e\x01\xd8\x84\x44\x10\xa6\x1c\x00\x00\x20\x00\x49\x44\x41\x54\xc3\xe6\xc3\x37\x87\xef\x39\x7d\x71\xe3\xb3\xa7\x6e\x0d\x3e\x58\xdd\x16\xdd\xbe\x11\xd3\x87\xc6\x60\x69\x59\xa9\xad\x9d\x3f\x7e\x81\x6d\x35\xc5\x23\x60\xf8\x2f\xb0\xe0\x96\x09\x26\xa5\xc8\x38\xe0\xf6\x1e\x1e\xfe\x9d\xdb\x8f\x04\x58\xc0\x8e\xf2\xf2\xb5\x57\x8f\x8d\xfe\xfe\xb9\xfb\xf7\xbe\xb9\xbd\x5a\x5c\x46\xd5\x98\xf8\x1e\x79\xd9\x68\x5a\x77\xb4\x74\x04\x4d\x29\xf6\x49\x77\x3b\x41\x2a\xdb\xbb\x01\x7f\x10\xfa\xbb\x3a\xba\x83\xd0\xe3\x83\x96\xee\x76\xe8\xd1\xda\x4b\x17\x8c\x86\x00\x33\x40\xcc\xbf\xbb\xcb\x98\xb8\xdd\xfa\xed\x03\xdb\x45\xfb\x41\xc3\xed\x96\x71\x19\xbe\x18\x7c\xcc\xf0\xea\x23\x23\x9a\x11\xd3\x45\x67\x9f\x7a\x94\xf9\xcb\x8e\x7e\x19\x5d\x7d\xe5\xfb\x20\x72\xd7\x17\x57\xd7\xbb\x0f\x7d\x64\x49\xc2\x45\xeb\xda\x2f\xdc\x85\xef\x90\xf4\x43\xeb\x0c\xd0\x5a\xcc\xeb\xfb\x0f\x03\x20\xec\x58\x52\xf2\xb6\x40\x18\x54\x5a\xd4\xd3\x1e\x40\x38\x91\xb6\xb5\xf0\xd6\x77\xce\xae\x39\x1e\x20\xa6\x83\xbb\xf8\xd5\xb7\xad\xab\x71\x7f\xfc\xc7\x7f\x6c\xbe\xf2\x95\xaf\xf0\x69\xb5\x70\x7e\x92\xb6\xe8\x56\xf0\xa2\x35\xf0\x75\x8b\xe7\x2e\xf1\x45\xcb\x9c\x3f\x0b\x37\xb9\xb3\x78\xce\x4f\x69\x5c\xf5\xa9\xeb\xdb\xd5\x5d\x9d\xf2\xad\x1d\xf9\xef\x83\x74\x37\x03\x8b\xee\x1d\xcf\x15\x8b\xb8\x9b\xc7\xe3\x0a\x5b\x2c\x6b\x5f\x21\x31\xa6\x26\x6c\xba\xc8\xdf\x16\x9d\x59\x72\xc9\xd1\xfd\xec\xde\xc3\x93\xf4\xde\xcc\x9a\x55\x7f\x18\x1c\x5f\x3f\x12\x82\x8f\xaa\xcf\x5c\x09\x2e\xc8\xf0\x99\x02\x0c\x5f\x6b\x03\xc7\xd2\x71\xef\x4c\x1b\x75\x98\x8a\xf2\x85\x21\xf6\x2d\xac\xa7\xe1\x42\xe2\xbd\xa1\x35\x3e\x83\xea\x5c\xbb\xd2\x60\x67\x6f\x50\xbe\x71\x63\xad\xb8\x89\xe6\x12\xbb\x39\xe3\x63\x98\x2e\x22\x22\xac\xaf\xaf\xd3\xeb\xaf\xbf\xbe\x6c\xba\x62\x99\xbb\xfe\x4e\x83\x41\xdb\x15\x7c\x10\xfc\xda\x74\x82\x06\xd3\xf5\xbe\xec\xdb\xed\xd0\xd3\x45\xd7\xed\xd0\x23\xa7\x05\x96\xc1\x68\xb0\x31\xb8\x3b\xa9\xdf\x3e\xb0\x5d\xb4\x1f\x34\x74\x95\x91\x2b\xa1\xbe\xf9\xc8\x29\x88\x2e\xdc\x9a\x1b\x5a\xa3\x8b\xc3\xc6\x68\x92\x53\x3f\x1a\xbc\xc1\x62\x9d\xf1\x29\x5c\x3e\x55\xb7\x2c\x5d\xac\x3c\xb1\xb2\xf3\xf4\xb2\x3c\x9c\x16\x8d\x3f\x66\x49\x3a\xc9\x2b\x5f\x86\xd8\x94\x99\xcc\xd3\x2a\x71\x0b\xf5\xed\xb7\xca\x9f\x39\x73\x86\xbc\xbe\x03\xda\x37\x9c\xa3\x3d\x2d\x52\x52\x75\x89\x9f\xbf\x0c\x74\x8e\xe6\xb8\x79\xbf\x65\x77\x8a\xea\x4a\x95\x70\xfe\x0a\xd5\x37\x9a\xb3\x29\xa6\xb9\xc7\x83\xe6\xe8\xfe\x30\x5d\x0f\x04\x6f\x90\xdc\xe2\x1b\xe3\xab\x66\x38\xc6\xda\x81\xc6\xfb\x10\x5e\x78\xe1\x05\x07\x54\xd3\x6a\xf5\xd4\x91\xdf\xc8\xe2\x17\xec\xc2\xf3\xc3\x1b\x15\x75\x59\xf8\x19\x33\x3e\xce\xef\x02\x6a\xdd\xde\xec\xa7\x7f\xd0\x5c\x41\x63\x19\x5f\x7d\x3d\xf8\x3c\xdc\x33\xcf\x3c\xa3\x4d\x91\x79\x3e\x48\xfe\x2c\x6b\x77\x7d\x07\x45\x31\xf9\x0e\x88\xba\x42\xb0\xbe\xd8\xbb\xfc\xa6\xb9\x77\x78\x08\xef\xd2\x15\x06\x04\x6b\x38\x1c\xf0\x53\xff\x15\x00\x66\x93\xd4\x8e\x6e\xae\xce\x2f\x8d\xf3\x72\xdb\xa1\x3a\x81\xb1\x9a\xfa\x69\x73\x83\x6b\x16\x42\x35\xe5\xd3\xf4\x4c\x0d\xa4\xab\xdf\x9c\x48\xec\x6a\x03\x86\x6b\x3d\x80\xe5\xe1\xda\xef\xc1\x68\x71\x1e\x9e\x16\x17\xf8\x06\xe4\x4d\xc2\xc4\xd2\xfa\xc6\x24\x7d\xe4\xd8\x7e\xf6\x48\x56\xd0\xd0\x39\x97\xd6\x53\x45\xad\x6d\x7d\x7c\x34\xf1\xad\x6f\x7d\x4b\x8e\xdc\x34\xfe\xca\x3f\x19\x64\xbc\xac\x2f\x0d\x37\xff\x16\x1b\xe9\x6a\x79\x1e\xf4\x3d\x16\xba\xca\x12\x7b\xd6\x68\xea\x93\x7f\x97\xdc\x76\xf1\xa6\x8b\x9e\xbe\x79\x75\xd5\x57\x9f\xb2\x76\xe1\xe9\xa2\x43\x7e\xef\x82\xed\xe2\x69\x17\x9f\xe5\xb3\x45\x9c\x8e\x18\xee\xbe\xb2\xe2\x71\x2f\x53\x8e\x5a\x47\xd3\x95\x8f\x6c\x7f\xfc\x59\x2b\x0f\x1f\x25\xc6\x70\xc7\xda\x93\xa4\x51\x2b\x8b\xc6\x67\xcd\xd3\xa3\xe5\x23\x79\xbb\xcc\xcb\xd6\x55\x0f\x5a\x3e\x92\x96\x58\x7d\x18\x22\x0a\xe7\xfb\xf8\xa9\x23\x3f\x2d\x43\xca\xf6\x63\x36\x65\xe2\xcf\xbe\x9a\xb0\x5f\xbe\x66\x85\x6f\x73\x0e\x67\x91\xd4\xe9\xe4\x02\xdc\x42\xc9\x67\xe1\x04\x58\x12\x07\x2b\x42\xe7\xb7\x2c\x7b\x57\x58\x0a\x4b\x44\xfc\x04\xf5\x40\x9b\x9f\xba\xf1\x3c\x12\xde\x13\xef\x45\xe2\xd3\x6e\xad\xa9\x1f\xfe\xce\xbc\x4e\xdc\xe0\xf1\xde\xa8\xae\x73\x9b\x34\xf9\xef\xdb\x47\x2c\xd3\xb3\xda\xf3\x02\xee\xa4\xfe\xa0\x8d\x46\xfa\x06\x9e\x09\x1f\x5d\x2c\x58\xa7\xbf\xfd\xdb\xbf\x6d\x36\x36\x36\x00\xf8\xf5\x46\xc4\xbd\x2f\x49\xfd\x97\x12\x51\xe2\xaa\x6d\xd1\xf9\xa0\x34\xf9\xd1\x51\x76\xff\xc6\x34\x3d\x9e\x38\x4a\xbd\xcd\x49\x0b\x37\x6a\xb1\x29\x21\xb6\x74\x97\x1b\x14\x21\x5e\x4c\xe7\x78\x63\x87\x6f\x70\x76\x00\xc8\xd5\xb7\x8b\x12\xc2\x1d\x44\x08\xf9\xd7\x79\x91\xbc\x4a\xa0\xfe\xce\xd2\x7a\x78\x00\x09\x39\xa2\x32\xc1\xce\xde\xa0\x7c\x73\x67\xa5\xdc\xa5\x66\x5b\xb4\x1f\x59\xb8\x5a\x80\x1c\x00\x6e\xe5\x76\x8d\xd0\x96\x79\x11\x64\xbc\x13\xf1\x31\xaf\x01\xff\x26\x05\x88\x8f\x26\xb5\x74\x7d\xdf\x63\xa1\xab\x2c\xfc\xd9\x40\xe7\x81\x2c\x63\x17\xde\xae\x91\x82\x36\xea\xed\xe2\x59\x1f\xbc\x5d\x69\x38\x4c\x0c\x6e\xd9\xf7\x18\xbe\xae\xef\x5d\xb0\x5d\x3c\xd5\xe2\x62\x9d\xa2\x7c\xd6\xea\x52\x7a\x28\x44\xcb\x6b\xa5\xe3\x75\x2f\xd3\x4a\x18\x09\xdb\x37\x1d\xb0\xe8\x75\x96\xc6\x4c\x4c\x76\x38\x6e\xa9\x63\xb5\xc5\xbb\x1a\x2f\x38\xfd\xbc\xcd\x69\xb0\x92\x6e\xad\x0c\x8e\x3d\x6b\x3c\x81\x88\x97\xe9\xba\xea\x81\x18\xbc\x46\xab\xe4\x89\x01\xc0\x8f\xca\xe0\x5b\xa4\xfd\x65\x85\xce\xc7\xa3\xee\xa8\xeb\x4f\xfe\x92\x4f\x87\x66\xf1\x68\xf0\xa2\xb0\x5f\x6f\xf4\xf8\x4e\xb9\xac\xd3\x97\x35\x6e\x07\x34\x5e\x1e\x9f\xed\xd9\xb3\x67\xed\x4f\x7f\xfa\x53\x9a\xcf\xe7\x9c\x3f\x84\x45\x7e\xdf\x6e\x3d\x68\xf5\xdb\xaa\xd7\x95\x95\x15\xf3\xfd\xef\x7f\xdf\xfa\xed\xe4\xb5\x57\x2a\xf0\x87\xd5\x91\x37\x00\x1d\xe3\x8d\x36\xfd\x13\x64\xb1\x86\x2d\xd9\x73\xf0\xb4\x70\x9e\x2c\x99\x26\xd3\xca\xcb\xf9\x24\x65\x28\xe6\xa1\xd1\xf4\x2b\xff\x2e\xf3\x77\xa2\xbb\xed\x0c\xd2\xca\xea\x63\xad\xab\x30\xe2\x14\xdd\x14\xcd\xa9\x7f\x7c\x9d\xcb\x21\x38\x6c\x6e\x8e\xd3\x53\x1f\xbe\xb4\xfe\xab\xef\xbd\xba\xfa\x8b\xab\xb3\xe4\x98\x36\x4b\x74\x37\xc2\x92\xeb\x8e\xc4\x56\x3b\x04\x63\xa6\x39\x23\x46\x20\x70\x40\x30\x6c\xe0\x67\x8e\x1c\x4a\x83\xd1\xcd\x95\xe2\x47\x3f\xb9\x77\xff\x2f\x9e\x7d\x60\xf7\x7b\xd6\x60\x07\xed\xb5\x2e\x7c\xa1\x9a\x05\xb0\x6c\x9d\x4b\x9f\xba\xe8\x0a\xb7\x93\xe6\x7f\x87\xff\x35\xc2\xdd\x90\x8d\xbe\x46\x4c\x97\x5e\x39\xa8\x8e\xb9\x1d\xaf\xcb\x9d\x3e\xdf\x2e\x4d\x3f\x4f\xdc\xcb\xd2\xde\x09\x4d\x07\xad\x4b\x44\xe2\x2d\x00\x1c\x3b\x76\xcc\x5c\xbb\x76\xcd\x02\xed\x53\x9b\x95\x75\x1a\xad\x78\xbe\x3e\x11\x00\xd3\xd1\x0b\x5b\xa3\x7d\xfe\x3c\x04\x7a\x3c\xcc\x33\xcf\x3c\x63\x19\x2d\xb7\xcb\xd7\x83\xf2\x47\xc3\xd5\x0a\x1d\xfc\xe1\xa7\x12\xb7\xd6\x6c\x4a\x3e\xf0\x20\x60\x5a\x77\x23\x45\xb6\x7a\x2f\x6b\xa3\xb1\x72\xfc\x5c\xda\x7f\xd7\x1a\x17\x9f\x20\x36\xca\x92\x16\x91\x36\x32\x00\x83\x0f\xa1\x9e\xbb\xab\xd7\xb5\x3a\xaa\x43\xd8\x16\xed\x9c\xcb\x88\x28\x01\x21\x73\x70\xf9\xc6\x34\x3d\x7c\x74\x94\xde\xb7\x5a\x98\xa3\xda\x71\xfe\x7c\x28\xc0\x7f\x21\x9e\x65\x22\x6e\xb6\x35\x5e\x17\x1d\x37\x3f\x84\xce\xdb\xba\xfc\x60\x3b\x07\xe6\x5a\xab\x4b\xeb\xdf\xc3\xa2\x5e\x22\x10\x90\x18\x07\x53\x24\xb8\xb1\xbd\x52\xbc\xb9\x9f\x97\x23\x3f\x07\x89\xc6\x7a\x2e\x7d\x7a\x22\xe2\x5e\x17\xcd\x3a\x97\x73\xf0\x1e\x8e\xc7\x43\xa4\x01\x8b\x8b\x8d\x10\x64\xda\x3e\xb8\x62\xa3\x31\x75\x8e\x3b\x92\x26\x36\x02\xb9\x13\x3a\xb4\xd1\x80\x06\x1f\xcb\x2b\x56\xb6\x65\x69\x64\xfa\x65\x69\xfb\x94\x6b\x59\x19\xfa\x94\xa7\x2b\x6f\xfe\x7e\xd0\x7c\xb4\x38\x0e\xef\xdf\xbb\x94\x96\xa7\x13\x68\x8f\xe0\xb5\x72\x70\x9e\x92\x02\x1f\xa3\x57\x1b\x39\x4b\xfa\x20\xe0\xfd\x1f\x22\xcf\x7d\x60\xb5\xfa\xe3\xcf\x52\x7f\x4a\x7e\x4a\x5e\x76\xd1\x21\xcb\xce\x79\xab\x75\x12\x92\x97\x4e\xa4\x93\x9e\x07\x4e\x8f\x16\x2f\x69\xb5\x22\x4d\x8b\xa6\xd1\x68\x64\xd7\xd7\xd7\xcd\xbd\xf7\xde\x4b\xff\xfc\xcf\xff\x6c\xa5\x07\x86\xe1\xf4\x1d\x46\xf0\x14\xd4\x71\xdc\x7b\xe2\xb4\x74\x00\xf8\xda\x99\x40\xbb\xf7\x2c\x5c\xbd\x7a\x95\x66\xb3\x19\xed\xec\xec\x78\x7e\xca\x3a\xd0\xf4\x9a\xac\x07\x4d\x0e\xb8\xfc\xf2\x38\xa9\x23\xa4\x9c\x87\x3a\x19\x8d\x46\xa1\x6e\xaf\x5e\xbd\x4a\xef\xbc\xf3\x0e\xbe\xf9\xcd\x6f\x5a\xef\x89\xe1\xbc\x60\x7c\x52\x79\x22\x3c\x37\x41\xbe\xce\x9f\x3f\x8f\x1f\xfc\xe0\x07\x38\x7c\xf8\x30\xed\xec\xec\x48\x59\x95\xb2\xc6\xe3\x24\x7f\xa4\x3c\x68\x72\xaa\x79\x58\xb4\xf6\x2f\xf3\x31\x80\xee\x71\xe1\x08\x7c\xb8\x9d\xd1\x90\x86\x13\x40\xcb\xe3\x02\x00\xa6\xf6\xb6\xf0\xbb\x8b\x0e\xa1\xf2\xbc\x6c\x1a\x8b\xa3\x0f\xdd\x1c\x3e\xf6\xe1\x4b\xeb\xbf\xf6\xe0\xf6\xf0\x74\x6a\x29\xe7\xc5\x0d\xc6\x46\xcb\x5a\x71\x8d\x75\xa1\x98\x22\xce\x91\xee\x5d\x11\x5e\x93\x96\x55\x0a\x84\x13\x77\xfd\xbc\x91\x37\x5c\xc0\x92\xe9\x39\xb6\xe3\x0a\x72\x7b\x37\xd6\xe6\xcf\xbe\x74\xdf\xde\xff\xf5\xd2\xa9\xfd\xe7\x51\x6d\xeb\x0b\x37\x91\xd6\x73\xb7\x16\xec\x3e\x88\xdb\xbc\xbf\x88\x87\x3e\xf5\x74\x10\xb8\x83\xe6\xf9\x3f\x22\xff\xbe\xe1\xa0\x79\xf6\x19\x69\xfc\xaf\x14\xba\xca\x2d\xf5\x89\x7c\x96\x30\x31\x1d\x83\x1e\x30\x77\xe2\xb9\x88\xd1\x74\xb7\xf3\xd1\xc2\xb2\xf2\x2f\xc3\x77\x60\x1d\x7c\x80\xef\x7d\xe2\x0f\x82\x7b\x69\xba\xe1\x70\x68\x26\x93\x89\x05\x80\xf7\xbe\xf7\xbd\xe6\x95\x57\x5e\xb1\x40\x38\xa8\x2d\x9a\x09\xf3\x3e\x58\xd7\xe1\x69\xe8\xb1\x53\x73\x99\x7c\xf4\x91\xd3\x3e\xf8\x96\x79\x61\xfa\xb4\x81\x10\xfe\xf0\x0f\xff\xd0\x7c\xf5\xab\x5f\xb5\xfc\x7e\xb0\x2f\x7e\xf1\x8b\x46\xeb\x3b\x38\x0c\xe7\xf1\x92\xb2\x2d\xab\x63\x8d\xbe\x83\x3c\x77\xc9\x1a\xf8\x37\xcd\xe3\xc2\xad\x68\x6e\x19\x2d\xb3\xfc\xbb\x46\x62\xad\x6f\xec\xa0\x9d\x60\x95\xd6\x73\x76\x06\xcd\x1d\x14\xd5\x14\x12\x90\x26\x8e\x06\x87\x26\xe9\xf1\x23\xe3\xf4\x64\x56\x9a\x15\x50\x63\x54\x04\xd1\xf4\x86\x83\x63\x9e\x8f\xb0\x5e\x85\x9f\x8e\x5b\x65\xad\x36\x00\x25\x2e\x78\x4d\x44\x29\xc3\x14\x90\x68\x20\x9a\xc7\xa7\xe5\x9d\xa9\xf9\x40\x8e\x68\x6e\xdc\x3b\x57\x37\xe6\x6f\xce\x52\x37\x61\x73\xb6\xfe\x48\xe5\x96\x45\xaa\xac\xe8\x3e\x68\xe8\xe3\x65\xe0\x45\xe0\x41\x8e\x12\x6f\x27\xcf\xbe\x69\x6f\xb7\x9c\x5d\x65\x5a\x06\x7f\x27\xe5\xea\x13\xff\x1f\x25\x1c\x94\x47\x7d\x43\x17\x4e\xce\x63\xf9\x6c\x44\xbc\xe6\x7d\x70\x1d\x30\x07\x79\x8e\x79\x5c\x38\x3d\x32\x7f\xad\x7c\x31\x3d\xa8\x29\xdc\x18\xac\xd4\x97\x3e\x6d\x5f\xba\xfd\x33\x57\x37\x31\xaf\x40\x5f\x19\x8f\xb5\xef\x3e\x7a\xa2\x4b\xff\x73\x1e\xf7\x4a\x57\x14\x45\x88\xbf\x7e\xfd\x7a\x78\x2e\xcb\x92\xfe\xfe\xef\xff\x3e\xec\x70\x39\x77\xee\x9c\x3b\x7d\xfa\x34\x9d\x3d\x7b\xd6\x7b\x1e\x5a\xf4\xfa\x03\xe3\x3c\xcc\xb9\x73\xe7\xdc\xb3\xcf\x3e\x1b\x2b\x4f\x8c\xcf\x5c\x4e\xba\xea\xc9\xc3\x72\x4f\x4b\x57\x99\xb5\x38\x49\x9b\x84\xd1\xfa\xe2\x10\x5e\x7c\xf1\xc5\xc0\xa7\x2b\x57\xae\x38\x00\x88\xf5\x1b\x1c\x86\xf3\x98\x95\x37\x46\x63\x2c\x70\xfa\xfa\xb4\x45\xe9\x85\xea\x92\xe3\x05\xde\x2c\x9b\x2a\x92\x0d\x87\x07\x9f\x79\x4c\x09\xc9\xcc\x83\x00\xb3\xbb\x2b\xbc\xd1\xe2\x89\xf7\x7b\xf5\x09\x40\x56\x4f\x19\xe5\x04\x64\xeb\xd3\x64\xf3\xc8\x28\xbd\x77\xa5\x9e\x2e\x52\xad\x69\xa0\x35\x7d\x03\xaa\x4c\x16\x30\x0f\x4b\xed\x2b\x69\xb9\x40\x2a\xe3\xa2\x6d\x80\x54\x44\xd3\xa2\xe3\x86\x5c\x63\xc5\xb4\xce\x7f\x69\x70\x72\xca\x88\xd1\xe4\x3d\x3a\x04\x32\x06\x94\x3a\xc2\x78\x6f\x58\xbe\x7a\x63\xad\xd8\xa6\x66\x8b\x5a\x58\x40\xc6\xf9\xbb\xb5\xb5\x45\xef\x7b\xdf\xfb\xe8\xa5\x97\x5e\xd2\x14\x9a\xe4\xb5\x16\xb8\xc2\x94\x4a\x94\x94\x6f\x3c\x78\xa1\x6c\xb9\x2f\x23\xf9\x6a\x8a\x39\x06\xdb\x45\xeb\xb2\xb2\xc9\xb8\x65\x74\xf1\x38\x69\xed\x6b\x3c\xed\x7a\x8e\xc1\xf3\x78\xe9\xde\x94\xca\xac\x4f\xd9\xf8\xef\x82\xbb\x74\x09\x0e\x2d\x68\xf5\xce\xf1\x1f\x84\xe7\xb1\x7a\x97\x75\x2f\x69\xe6\xbf\x40\x3b\x7f\xe9\x3e\x8f\x75\xa4\x12\x3e\xa6\x64\x79\x3d\xf3\x74\x60\xe9\x79\x1e\x31\x1e\xc4\xea\xdc\xc3\xf8\xb4\x5a\x1d\xc9\x36\x06\x51\x4e\x9e\x56\x9b\x96\x91\x53\x3c\x9c\x56\xee\x09\x90\x1d\x8f\xc4\x07\x74\xcb\x49\xac\x9c\xb1\x34\x1a\x8f\x25\x2f\x7c\x39\x24\xac\x46\x5f\x8c\xee\x90\x77\xdd\xd1\x1a\x00\xee\x13\x9f\xf8\x84\x79\xe0\x81\x07\xc8\xdf\x66\x9e\x65\x19\xfd\xed\xdf\xfe\xad\xcd\xb2\x8c\xae\x5c\xb9\x82\x6f\x7c\xe3\x1b\xf6\x13\x9f\xf8\x84\xb9\x78\xf1\xa2\x66\xac\x68\xed\x96\xf3\x50\xca\x41\x57\x19\x78\x3a\xde\x27\x4a\x1e\x68\xb2\xa7\xc9\x3d\xff\x8b\xf1\x2a\x56\x06\x02\xe0\xbc\x41\x82\xc5\x3a\x0c\x70\x57\xae\x5c\xd1\xbc\x1d\x5c\x86\x80\xc5\x3a\xe1\x79\x49\x79\x91\x3c\x90\xe5\xe5\x30\x52\xae\x34\x39\x92\x9e\xa7\x16\x6f\xe4\xae\x22\x4d\x70\x63\x0a\x57\x63\xb2\x0c\x5a\x85\xe2\xa9\xa7\x9e\x32\x83\xc1\xc0\xef\x4f\x77\xd4\x1c\xaa\x43\xd4\xdc\xbb\x90\x12\x51\x06\x20\x75\x70\xe9\xa0\x34\xab\x47\xc6\xd9\xf1\x8d\x49\x7a\xaf\x01\x25\x70\x4c\xca\xa8\xb6\x09\x80\x66\xea\xa8\xfe\xe7\x0d\x07\x4e\xb4\x14\x37\x7f\xca\x2d\x3f\x60\x2e\x5c\xc8\x58\xc3\xfb\x59\x24\x7f\x6a\x2e\x51\x63\x3c\xf1\x05\xb8\x8e\xe5\x17\x68\xf2\x4c\xf2\xe7\xc6\x54\x91\xc6\x80\xd2\x79\xe2\xde\x7c\xfb\xd0\xf4\xcd\x92\x30\x73\x70\xe1\xd2\x45\xbf\xb3\xa8\x5e\xa0\x1b\x16\xd9\xbf\xf0\xc2\x0b\x9a\x2b\x4e\xd6\x93\x26\xe0\x5a\x47\xc0\x95\x77\x57\xa7\xa5\x09\xb4\xfc\xc6\xdf\x63\x9d\x81\x26\x47\x5a\xd0\x70\x2e\x83\x59\x46\x17\x8f\x93\x70\xcb\xca\xd5\x05\xaf\xf1\x77\xd9\x7b\x8c\xe6\x18\x9d\xb2\x93\x95\x75\x25\x65\x01\x91\x77\x1f\x34\x7c\x31\x9e\xc7\x46\xed\xb1\x7a\x5f\xc6\x5b\x2d\x4f\x2e\xbf\x16\xf1\xce\x5f\xa6\x35\x22\x3d\xe7\x97\xd4\x49\x72\xa0\x15\xe3\x4b\x4c\xee\xbb\x3a\x35\xfe\x27\x3b\x2b\xb0\x32\x69\x3c\xe7\xf1\x52\x61\xf3\x38\xd9\xae\x35\xc3\x40\x96\xb3\xcb\xf0\xe1\x41\xca\x30\x4f\xc7\xf9\xc0\xe1\x35\x83\x90\x77\xda\x3c\x1d\xe7\x05\x37\xde\x24\x6e\x8d\xcf\x52\x97\x59\x00\xb8\x78\xf1\x22\x5d\xbc\x78\x31\xa4\xbf\x78\xf1\x22\x01\x70\x17\x2f\x5e\x74\x17\x2f\x5e\x74\x00\x0c\xff\x1e\xa1\x9d\xe7\xb9\x4c\x77\x48\x63\x82\x97\x55\x93\x0d\xd9\xd9\x73\x78\x89\x43\x93\x4d\x4d\xd6\x63\x75\x19\x93\x69\x99\x2e\xe6\x68\xe8\xd2\x21\xb1\x36\xcd\x65\x9b\xa7\x8b\x95\x47\xda\x16\x72\x20\xac\x19\xb1\x9a\xfe\x74\x00\x9c\xac\x44\x3e\x45\x61\x95\x38\x28\xb0\xb1\xef\x32\xf8\x82\x9a\xaf\x7d\xed\x6b\x16\x80\x3c\x99\x8f\xef\x21\xb7\xa8\x2f\xc3\x72\xce\xcd\x0a\x83\xd9\xee\xa0\xbc\xbe\xbd\x52\x5c\x9d\xa5\x76\xcf\x01\x8d\x81\x41\xb5\x34\xd4\x62\x45\x4e\xd6\x1d\xd0\x3e\xcb\x85\x05\x02\x5b\xe5\xe3\x6a\x9c\x0e\xce\x49\x0d\xe4\x5a\xeb\x59\xbc\x65\x12\xce\x1f\x90\x74\x84\x3c\x9d\x18\x87\x35\xb9\x13\x90\x0e\x0b\x73\xf2\xc4\x6e\xfe\xc4\x3d\xfb\xd9\x51\xe3\x30\xa4\xe6\xc2\xb0\x70\x42\x22\x35\xa7\x42\x62\x30\x18\xe0\x0b\x5f\xf8\x82\x54\x2a\x5a\xd0\xac\x69\x0e\xaf\x3d\x73\x18\x39\x82\xd2\x60\x62\x38\xe4\x37\x0d\x96\xff\x75\xd1\x24\xe1\x35\xdc\x12\xae\x8b\x1e\x8d\x2e\x8d\x96\x65\x38\x34\xf8\x65\xf9\xf5\x79\x8e\xd1\xc6\xeb\x7b\x19\x8f\xfb\xd0\xc5\xf1\x1f\x94\xce\x2e\xb9\x93\xfc\x8c\xd5\x9d\x86\x43\x93\xb9\xd8\xbc\x7f\x17\x1d\x1e\x9e\xe3\xeb\x2a\xff\x32\x39\x8c\xc9\xbe\x26\x0f\xb2\xbd\xc5\xda\xa1\x56\x46\x59\x86\x65\xdf\x65\xbb\xd6\xda\xae\x4c\xdb\xb7\x3d\x68\xdf\x78\xd0\xea\x83\xa7\x8f\xf5\x07\x5d\xe9\x62\xf4\xf0\xe7\x18\x2f\x62\x3a\x4c\xb6\x9b\x65\x6d\x39\x26\x0b\xb1\xba\x84\x88\xc7\xca\xca\x8a\x39\x75\xea\x94\x01\x60\x4f\x9d\x3a\xe5\x9f\x63\xf8\x0e\xa2\x73\x96\xb5\x85\xae\xb2\xf4\x91\x1f\x0d\x1f\xc4\xbb\x8c\x3f\x48\x19\x38\x7c\xac\xff\x92\xb6\x48\x8c\x76\xd3\x25\x9c\x0b\xc0\x0a\x71\x1a\x9c\x06\x2f\x89\x6a\x79\x2c\x38\x0c\x89\x03\x82\x88\xa8\x70\x70\xb3\x51\x5e\xee\xdd\x58\x9d\x5f\xde\xcf\xcb\x6b\xde\xb8\xf0\x77\x04\x51\x1b\x71\x78\xf4\x76\x82\xbf\x26\x00\x70\x20\x38\x7e\xe0\x51\x6d\xab\x54\x66\x8a\xf3\xe6\x0a\xb9\x16\x6e\xbf\x3e\xa6\xe5\xd1\xa9\xcb\x10\xe2\x5d\x93\x26\xe4\xca\x4f\xe6\x05\xaa\x73\x5d\x02\x71\x84\xc4\x62\xb8\x39\x49\x3f\x78\xea\xd6\xe0\xa1\xd4\xd2\x2a\x1c\xfc\xf5\x07\xf2\x50\xba\xc0\xdb\x3f\xfd\xd3\x3f\xb5\x47\x8e\x1c\xe1\x02\xbc\xcc\xc0\xe4\xdf\xb4\x3a\x91\xe9\x65\xe3\x97\x8d\x26\x66\xc4\x62\xc9\x37\x9e\xc7\x41\x0c\x5e\x09\x1b\xeb\xc4\x63\x46\xb7\xfc\xd5\xd2\x68\xb4\xc8\x34\x92\x4f\x9a\x22\xd1\xd2\xca\x38\xf9\xcc\x83\x6c\xe4\x1a\x6c\x2c\xdf\x65\x65\x90\x69\x35\x7e\x69\xcf\x31\x5e\x6a\xb4\x6b\xf5\x1b\x93\xbd\x58\x58\x26\x1b\x5d\x65\xe2\xef\x50\xe2\x65\xe7\xa3\xc5\x69\xb4\xc4\x64\x45\xc3\xaf\xc9\x62\x97\xec\xc4\x68\xf7\x61\x99\x21\x20\xd3\x4a\xe3\x41\x83\x89\xe5\xdb\x45\x2b\xa7\x47\xd2\xd6\x55\x67\x9a\x31\xb3\x4c\x26\x34\x5d\x13\xd3\x5f\x92\xd6\x65\x3a\x65\x59\x7d\xc8\xba\x8d\xe9\x3f\x0b\x00\x47\x8e\x1c\x31\x5e\x1f\x1f\x39\x72\x04\xe3\xf1\xd8\x5e\xba\x74\xc9\x02\xc0\xa5\x4b\x97\xec\xa5\x4b\x97\xec\x91\x23\x47\x42\xde\xf5\xb3\x4f\x8b\xd5\xd5\xd5\x58\x3d\xc4\x74\x7c\x4c\x47\x74\xc1\x48\x7e\x2f\xd3\x0b\x12\x4f\x4c\x0f\xc4\x68\xd7\xf2\x90\x41\xab\xab\x3e\x06\x96\x05\x60\x49\x00\xc8\x67\x89\x20\x86\xb4\xeb\x77\x21\xfd\xc7\x3e\xf6\x31\xf3\xc3\x1f\xfe\xd0\x8a\xf3\x5c\x0c\x9a\x0e\x7b\x88\x6a\x77\x51\x38\xd3\x25\xb1\x38\x7a\xea\xd6\xe0\x17\x3e\x74\x69\xfd\x3f\xbd\xeb\xfa\xca\x27\x52\x57\xed\x2e\x92\x1b\x88\xfc\xf4\x0c\x9f\xa3\x09\xde\x13\xd7\xb2\x6b\xc0\xd3\xb7\xbe\xb1\x74\x1e\x95\x0a\x0f\x9f\xe7\x22\x64\xf4\xea\x22\x96\x1e\xe4\x60\x81\xc9\x1b\x47\x27\x5f\xfd\xee\x23\x3b\x7f\x7b\x7d\x6d\x76\xb9\x24\xec\x80\x30\x72\xd5\x05\x5a\xfc\xb4\xc7\x50\xd1\xcf\x3c\xf3\x8c\x1d\x0c\x06\x66\x3a\x9d\x42\xa9\x97\x58\xe8\x52\x80\x07\x49\xd3\x55\xcf\x07\x49\xdf\xe7\x7d\x19\xcd\xb2\x21\x6a\xdf\xb4\xef\x5d\x23\x18\xf9\x8e\x08\x6c\x57\x58\x86\x57\xd2\xa7\xd1\xd8\x85\x33\x46\xcb\xb2\x7c\x96\xd5\xd3\x9d\xca\x48\x9f\xfa\xea\x92\x07\xad\x3e\x63\x71\x52\x06\xc1\xe0\xfa\xea\x30\x89\x0b\xca\x73\x8c\x46\x08\x98\x58\x3e\x5d\xf4\x6b\x34\x68\xf9\x6b\x78\xfa\xc8\x6a\x57\x99\xbb\x68\x8a\xe5\x75\x27\x75\x7d\x10\x1c\x1a\x4c\x9f\x36\x75\x10\x1c\x07\xe1\x67\x2b\xf8\x5d\x4f\x7e\x67\x8e\xbf\x6f\x49\x9e\xa1\xe2\x43\x2c\x4e\xee\x6e\xaa\x75\x7a\x5f\x7d\x14\x83\xe1\x70\x3e\x74\xc9\xb1\x26\xfb\x07\xd1\x2d\x5d\xed\xaf\x2f\xfd\x31\x1a\xa3\x79\x6b\x88\x34\xa2\xbb\xe2\xe4\x37\x69\x81\x2d\x64\xfa\xc3\x1f\xfe\x10\x00\xe4\x4d\xd1\xe1\xcf\xb1\x1b\x43\x5d\x7d\xc4\x73\x41\x6e\xb2\x33\x2c\xaf\x5f\x5f\x9b\x5f\x9c\x64\xe5\xf6\xc2\xa4\x22\x9b\x3a\x0a\x46\x07\x5b\xaf\xd2\x9a\xc6\xa9\x13\xb7\x60\xd0\x18\x2a\xad\x75\x2e\x22\x90\xc8\xa7\x7a\xa6\xfa\xcf\xaf\x65\xa9\x0d\x94\x90\x8f\xf7\xec\x70\x6f\x4d\xe5\xc9\x31\xc0\xf0\xf8\x7e\xfe\xf1\xfb\x6f\x0d\x1e\xca\x0b\x33\x44\xb3\xbe\xc7\xff\x72\x6b\x33\x04\x26\xe0\xfc\x1b\x37\x02\x65\x90\x02\xa6\xa5\xd5\xd2\x70\xbc\x5a\x88\xd1\xa1\xe5\xa9\x09\xa5\x66\x51\xc7\x82\x56\x3e\xdb\x11\xaf\xe1\x33\x58\x94\x51\xf9\x5d\x2b\x43\x57\xa7\x2f\x9f\xb5\xc6\x2c\x83\xc5\x22\x8d\x32\x6f\xf9\xdb\x95\x77\x2c\xf0\xb6\xb5\x0c\x57\x1f\x19\xd1\xf8\xc3\xd3\x6b\x69\x38\x2d\x06\x8b\xf5\x25\xf5\x44\xac\x8e\x65\x3e\x52\x6f\x69\xf2\xd6\x15\xb4\x32\x77\x75\xda\xcb\x3a\xcb\x65\x79\x75\xd1\x14\x33\xa0\xb4\xb6\xd1\xc5\x2b\x9e\x36\x26\x57\x32\x6d\x57\x47\x27\xe9\x97\x79\xc8\xef\x12\x5f\xac\x1d\x49\xbe\xf2\xb4\x5d\x9d\xe9\x32\x79\x84\x80\xd7\xe8\x8f\xe9\x9a\x2e\x7e\xe3\xe9\xa7\x9f\x36\x00\xc0\x8d\x16\x80\x0f\x5c\xab\xb4\xcc\xa3\x6f\x00\xb4\x0e\xc8\xf3\xbf\x67\xcf\x9e\xb5\x4f\x3f\xfd\xb4\xf1\x38\x9f\x7e\xfa\x69\xf3\x7b\xbf\xf7\x7b\x50\xc2\x32\xb9\x59\x16\xa4\xec\xaa\x65\x63\xcf\x9a\x0e\x88\xd1\xc4\xd3\x68\x36\x44\xac\xdd\xfa\x77\x4d\xd6\xf9\x37\xad\xcd\x19\xa0\x7b\x57\x91\x41\x7b\x31\x0d\x5f\xfc\xa9\xc1\x72\x46\x74\x2d\x2a\x83\xc7\x53\x5f\xae\x05\xe7\x5c\xbd\x76\x95\x00\x20\xa9\x7f\xd3\x3a\xce\x5f\x03\x90\x39\x72\x69\x56\x9a\xd5\xa3\xa3\xec\xc4\xc6\x34\xbd\xb7\xb5\x80\x36\x84\x2a\xb2\xe5\x25\x21\xb4\x17\xde\x32\x63\x85\x38\x0c\x84\xe7\x85\x9a\x02\xcb\xd5\x66\x5a\x7c\xf0\xf4\xa0\x9d\x1e\x35\x45\x8e\x16\x3d\x3e\x00\x90\x5a\x1c\x36\x96\x6e\x5e\x5b\x9f\xbf\x35\xce\xec\x9e\x33\xe0\x97\x7f\xf9\xdf\xb0\x50\x49\x5c\x03\xc0\xeb\x24\xb6\x48\x8b\x33\x27\xf6\x1e\x4b\xc3\xf1\x42\xf9\x5d\x86\xab\x4f\x1e\x31\x9a\xb5\x3c\x62\xb4\xc4\x16\xa7\xf5\xc1\x29\xf1\x73\xd9\xed\xa2\x5b\x4b\xdf\x95\x77\xdf\xf4\xb1\xf2\xc5\xe0\x0e\x92\x67\x8c\x27\x7d\xeb\xf5\x4e\xea\x9f\xf3\x95\x2f\xe6\x94\x78\xe5\x3b\xd7\x2f\x52\x07\x71\x65\x1b\x4b\x2b\xf9\xc7\xe3\x38\x4d\x4e\xc4\x77\xc9\x03\x6f\x7b\x06\x3a\x5f\x64\x79\x35\x39\x8d\xe1\xd6\xe8\x02\x83\xe1\xcf\x72\x81\xef\x32\x79\xf1\xb8\x65\x1d\x2c\xa3\xa9\x4f\x9d\x7b\x9c\xa4\xa4\x91\xcf\xb1\x7c\xf8\xf7\x18\x8e\xbe\xf9\x68\xf4\x6b\x65\xe1\xf8\x00\xc0\x3e\xf1\xc4\x13\xe6\xea\xd5\xab\x0e\x80\x93\x67\xa3\x10\x11\xb6\xb6\xb6\x88\x1d\x94\x17\xbc\x2e\xf5\x4e\x8a\xd0\xb7\xf9\xe0\x69\x25\x22\xb0\x74\xd8\xda\xda\xa2\xb3\x67\xcf\xda\x97\x5e\x7a\xc9\x3d\xfd\xf4\xd3\x86\xed\x82\xe2\x74\x6a\x75\xac\x95\x55\x83\xd5\x74\x59\x4c\x06\xb4\xbe\x5c\x4b\x27\xe9\x8b\x19\xf5\xbc\x7e\xb4\xb4\x9a\x8c\xc5\x64\x3a\xd0\xa1\xdd\x55\x04\x06\xc0\x33\x63\xdd\x79\x8b\xd8\x3e\x4a\x55\x2a\x1b\x02\xda\xdb\xa2\x59\xc5\xfa\x3f\x83\xca\x78\xa9\x6e\x8b\x06\x52\x4b\xc8\x8c\xa3\xec\xd0\x24\x3d\xb2\x39\x4e\xef\x4f\x1d\x65\x8b\x44\x53\xf0\x6e\xf8\x87\xca\xa0\x50\x2c\x06\x11\x82\xb7\x04\xfc\xdc\x97\xe6\x1b\xd0\x2c\xfe\x6d\x9d\x21\xa3\xc1\x33\xe3\x08\xae\xbd\x1e\x06\x0e\x70\xcc\x92\x22\x50\x9a\x58\x4a\x47\xb9\xbd\x70\x6b\xa5\xb8\x31\x4b\xdc\xd4\xc1\x15\xd4\xbe\xbd\xd4\xa1\xae\xc8\xad\xad\x2d\xda\xda\xda\xa2\xda\x80\xe1\x75\x11\x33\x2c\x65\x88\xd5\x79\x2c\xfe\xa0\xf8\xbb\xf0\x76\xe5\x71\x10\x7a\xee\x66\x1a\x99\xf6\x76\xd3\x2f\xc3\xdb\x37\xfe\x7f\xb6\xd0\xb7\x1c\x31\x9d\xc0\x07\x3b\x31\x45\xec\x22\xe9\xb8\x22\xd4\xe8\xd1\x8c\x0b\x69\xec\x6b\xe9\x96\xd1\xca\xe3\x63\xdf\x0f\x82\x23\x96\x36\xd6\x76\x62\x38\x62\xf8\x0e\x42\x77\x2c\x9e\x87\xdb\xc1\x2d\x75\xc8\x32\x5a\x65\xbd\x1d\xa4\x0c\xcb\x74\x8e\xa4\x25\xfc\x7e\xf2\x93\x9f\xa4\x8b\x17\x2f\xba\xdf\xfc\xcd\xdf\xa4\xe7\x9f\x7f\xde\xf9\x23\xf6\xcf\x9c\x39\x43\xfe\xc6\x66\x96\x9e\x88\x28\x61\xcf\xe1\xd7\x1b\x2d\xfe\xb7\x86\xf1\x87\xe8\x85\x38\xe7\x9c\xe3\xb8\x23\x67\xcd\xf4\x91\xd9\x83\xc0\xf2\xdf\x83\xc8\x92\xc4\x77\x37\xda\x80\xd6\xfe\xbb\xec\x07\x24\x1d\x05\xf3\x41\xb3\x88\x3c\x6c\x5f\xb7\xa9\xca\xd8\xad\xad\x2d\x73\xdf\x7d\xf7\x79\x57\x0b\x67\x56\x02\x00\xce\xb9\xa4\x7e\x4e\x00\xe4\x00\x25\x04\xca\x86\x73\xb3\x7e\xcf\x28\xbb\x6f\xa5\x48\x0e\xf3\x0c\x5a\x2e\xa1\x60\x38\xb4\xfc\x2a\xe1\x59\x23\xa8\x79\xa6\xca\xb8\x80\x30\x40\x00\x3f\xc7\x23\x0c\x15\xe2\xa8\x9b\xd8\x3a\x2e\x18\x2d\xac\x84\xe4\x28\x4c\x17\x11\x08\x89\xc5\x2a\x80\x9b\xd7\xd7\x8a\x8b\xa3\xbc\xdc\x71\x26\x18\x2d\x61\x6b\x34\x44\xa5\x9e\x3b\x77\xce\x1d\x3f\x7e\xdc\x8c\x46\x23\xff\x4d\x33\x2c\x34\xa5\xa1\x75\x12\xde\x4d\xe7\xa0\x0b\x92\x74\x3a\x01\x71\xe1\x93\x02\xca\xf1\xca\x3c\x34\x5c\xe8\x09\xa7\x19\x53\x5a\x47\xd5\xa5\xc4\x64\x63\xd1\xca\xde\x37\x7d\x8c\xb6\x98\xd2\xb4\xd0\xf9\x25\xcb\x70\x3b\x79\x6a\xb4\xc6\xc2\xed\xc0\xc5\xf8\xd6\x95\x8e\xff\xf2\xb2\x73\xe3\x43\x96\x5f\xf2\x49\x9b\x6a\xe0\xb0\x52\x4e\xa5\xdc\xc9\x7c\xf8\x5f\x4c\x9f\x49\x59\x96\xf9\x48\xf9\xd3\xfe\xfc\x37\xd9\xfe\x34\xdc\xb2\xec\x31\x3a\xb4\x36\x25\xf3\xf1\xf0\x92\x87\x1a\x4f\x64\x3e\x5a\x79\x78\xfd\x71\x78\x5f\x1e\xd9\x91\x71\x9a\xf8\x08\x5a\xab\xd7\xd8\x40\xd8\xc3\x70\x7a\x80\x76\x1d\xf4\xa1\x09\xe2\xfb\x42\x27\xfc\xa9\x4f\x7d\x8a\xde\xf3\x9e\xf7\xe0\xe3\x1f\xff\x38\xa5\x69\x8a\xad\xad\x2d\x62\x27\xf2\xfa\xbc\x93\xda\x18\xf1\x03\xff\x04\x68\x76\x82\xd6\x7f\x29\xaa\xd9\x83\x84\x1d\xae\xea\xef\x57\x0a\xbb\x45\x9b\xfb\x12\xe1\x0d\x1c\xe7\x3d\x39\x67\xce\x9c\xa1\x73\xe7\xce\xb9\xdf\xfd\xdd\xdf\x35\xb3\xd9\x0c\x37\x6f\xde\xd4\xea\x42\xd3\xbf\x80\x5e\x6f\x5a\xfb\x94\xf0\xda\x74\x24\xe7\xa7\x94\x69\xa0\x5d\x0f\x12\xf6\x20\xed\x58\x9b\xb5\xe1\x5d\x7b\xa8\x47\x39\x55\xd4\xfa\x28\x0a\x27\x95\xa9\x2c\x48\x1f\x65\xdf\x12\xa4\xb7\xdf\x7e\xdb\x9d\x39\x73\x86\x80\xe6\xce\x22\x9e\x1f\x11\x19\x36\x55\x94\x82\x90\x3b\x42\x9a\x38\x1a\xde\x33\xca\x8e\x6d\x4c\xd3\x93\x06\x95\x00\x48\x2e\xb6\x34\x8b\x5f\x38\x55\x9b\x1b\x92\x13\xe4\x61\x2a\x8b\x24\x20\x59\xb8\x93\xc8\x17\xc8\x35\xc6\x88\x0f\xf2\x9e\x23\x7e\xe9\x97\xbf\x59\x9a\xaf\x8b\x09\x53\x53\x0d\x0d\x69\xe2\xc8\x8c\xf2\xf2\xe2\xce\x4a\x79\x6d\x96\xb8\x29\xa8\x3a\xf2\x5f\x1c\x46\x17\xdc\x7e\xa7\x4f\x9f\xa6\x7f\xfb\xb7\x7f\xd3\x14\x9b\x0f\x5c\x18\x34\x85\x00\xf1\x2e\x95\x98\x84\x97\x69\x48\x81\xd5\xf2\xd1\x8c\x1f\xa9\x34\x96\x75\x1a\xda\xbb\xa6\x94\x96\x29\xe2\x2e\x7c\x77\x9a\x7e\x19\x6d\xfc\x5b\x1f\x7e\x69\xb4\x2c\xcb\xb3\x8b\xd6\x98\x71\xd1\xc7\x68\xe9\xca\x17\x88\x97\x95\xd7\xad\xec\xd4\x64\x27\x0e\x11\xc7\x3b\x3a\x40\xef\xdc\xb8\x6c\x69\xd3\x1e\x1e\x46\x93\x13\x27\xd2\x2d\x1b\xa5\x3b\xe5\x4f\xc2\xf2\x6f\x1c\x77\x57\xa7\x00\x01\x23\xcb\xde\x55\x1e\xed\x59\xc3\xcd\x69\x93\xcf\x9e\x26\x4d\x8f\x6b\x7c\xd5\x3a\xa6\xae\x3a\xd6\x0c\x13\x59\xc7\x9c\x4e\xd9\xaf\x68\xfc\x94\x65\x97\xf5\xab\xd1\xe4\xe3\x17\xe4\xf4\x57\x7e\xe5\x57\xe8\xc2\x85\x0b\xf6\xcd\x37\xdf\x74\x4f\x3e\xf9\xa4\x9f\xe6\x41\xdd\x07\xf1\x7e\x29\xa9\xef\xd4\xe3\x06\x4b\x52\x4f\x15\xa5\xb5\x31\x93\xa0\x5a\x9f\x98\xd4\xf0\x46\x3e\x8b\x3b\xfa\x7c\x5f\xe7\xc9\xf1\x9e\x1a\x77\xe6\xcc\x19\x5a\x5d\x5d\xc5\x91\x23\x47\xf0\xe3\x1f\xff\x98\xcb\x12\xe7\x17\xaf\x13\x6d\xfa\x27\xd6\x2e\x39\x0f\x81\xb8\xf1\xc8\xf9\xa9\xc9\x74\x8c\x1e\xad\x1d\x5b\x05\x8e\xd3\x2f\xd3\x41\xe4\x09\xa0\x31\x5c\x34\x81\xea\x22\xc2\xa7\xf1\x85\xed\xab\xec\x79\x63\x70\x40\xe5\x35\xa8\x8f\x6b\x96\xc2\x45\x68\xa6\xb2\xd2\xfa\x14\xdd\xd4\x51\xb5\x78\xf5\xd0\x34\x3d\x7c\x74\x94\x3d\x90\x5a\x33\xf4\x08\x7d\x06\x8d\xc1\x52\x1b\x0b\xa8\xbd\x1b\xf5\xc7\xb6\xc9\x51\x13\x44\xcd\x87\x16\x0e\x06\x4c\xa1\x04\xd4\x32\x66\xf4\xfc\x2b\x4b\x85\x80\xb0\x68\x97\xc3\x03\x95\xa1\xd4\xc4\x13\x19\x87\x81\x23\xdc\xda\x5e\x2d\xde\xde\xcf\xed\xb6\xb6\xd6\xa5\xb6\xf0\x6a\x92\x29\x76\x15\x80\x36\x5a\xfb\x79\x84\x3e\x1d\x9e\xa6\xd4\x0f\x82\x67\x99\x37\xa0\x6f\xda\xbe\x5e\x85\xbe\xf9\xf6\x09\xb7\x9b\xfe\x6e\xe4\xad\xe1\x8b\x75\x84\x77\x23\xc4\x70\xf2\x76\x1d\x1b\xf9\x69\x75\x24\xd3\xc9\x4e\x48\x7a\x97\x64\xa7\x25\x71\xc6\x3a\x2f\x9e\xae\x0f\x3e\x28\xf1\x31\xd8\x18\xbe\x65\xf0\x52\x89\x2f\xc3\x1d\x7b\xd6\x68\xd5\xca\xc3\x75\x79\x17\x3e\xce\x73\x5e\x27\x1a\x0f\x63\xf5\x1e\x2b\x43\xcc\xf8\xeb\x82\x97\x34\x1c\x94\x3f\x06\x80\xfb\xf4\xa7\x3f\x6d\xde\xfd\xee\x77\xe3\x63\x1f\xfb\x18\x71\x0f\x8b\xf7\x94\xd4\x6b\x30\x13\x6f\x7c\x30\x4f\x4b\x06\x20\xab\x0d\x91\x2c\x71\x94\x65\x25\xe5\x79\x61\xb2\xbc\xa0\x3c\x2b\x29\x4b\x2c\x25\x09\x28\x33\x96\x12\x4b\xc1\x2b\xe3\xd3\xfb\x3c\xc8\x7b\x74\x98\x07\xc6\x3f\x10\x00\x37\x1c\x0e\xc3\x14\xd2\x13\x4f\x3c\x41\x57\xaf\x5e\xed\x5a\x4f\xd2\x25\x03\x5a\x1b\xd4\xea\x32\xd6\xbe\xfa\x0c\x56\xfb\xd4\xc3\xb2\x36\x1a\x6b\x97\x00\x1a\xc3\x25\xa6\x48\x64\xd0\x8c\x19\x19\xba\x1a\xb9\xaf\x88\xc0\xf4\x4f\x7f\xfa\xd3\xe6\x9e\x7b\xee\xf1\xf8\x82\x13\x84\xcd\x0d\x06\x97\x9b\x73\x2e\x45\x7d\x9a\x6e\x5e\x98\x95\xe3\xa3\xfc\xfe\xb5\x79\x72\x54\x78\x2e\x02\x71\xad\x69\x9e\xfa\xa3\x03\x9a\xcb\x12\xeb\xe0\xdf\x43\x14\x63\x61\xb3\xd5\xba\x36\x34\x6a\xeb\x85\xd8\x19\x2d\x01\x9c\xe1\xa0\x18\xbe\x00\x47\x0b\x34\x93\x43\x9e\x38\xb8\x71\x66\xdf\xde\x1d\x96\xd7\xa6\xa9\x9d\x80\x50\xf0\x2b\x00\x98\xf7\x05\x40\xb5\xde\x45\xdc\x1e\x2d\xad\xd3\x65\x9d\xb7\xf4\x86\xc5\x46\x5e\x12\x4e\x86\x18\xac\x5c\x11\x1e\x6b\x18\x72\x94\xc5\xb9\xd7\x95\xae\x8b\x0e\xd9\x01\x68\x65\xd4\xd2\x4a\x03\x3d\xd6\x59\xca\x34\xa4\xc0\xc6\x78\xd9\x35\x0a\xec\xa2\x4d\xe6\xd9\xa7\xee\xe4\xe8\xb5\xab\x4c\x5a\x3d\xf4\xe5\x9b\x0c\x9e\x8f\x5d\x9d\x70\x8c\x4e\xa9\xf0\x64\x3c\x1f\x33\x48\x3c\xfc\x9d\xeb\x1c\x23\x9e\xb5\x76\xa3\xd5\xa7\x9c\xd2\xeb\xc2\xc3\xf3\x97\xb4\xf0\xbc\x5a\x4d\x5f\x79\xd6\xda\x8d\x4c\x27\xf3\x91\xf9\xc5\xca\x20\xe1\xa4\x5c\x78\x3a\x78\x9e\x0e\x6d\xba\x24\x7e\x09\x2f\xeb\x5d\xe2\xd6\x60\x78\xe8\x03\x2f\xcb\xda\x35\x15\xe1\x9f\x39\xed\xf6\xc9\x27\x9f\x34\xdf\xfe\xf6\xb7\x6d\xed\xf9\x07\x1a\x63\xc2\x1b\x12\x86\x1b\x2c\x61\x00\xed\x5c\x36\x28\x4d\xbe\x31\x4b\x57\x36\xc7\xc9\xfa\xd1\x71\xb6\x79\xef\x5e\x7e\xcf\xc9\xdd\xc1\xc9\xfb\x76\xf2\x07\xef\xdd\xcb\xef\x3b\xbe\x9f\x9f\x3c\xbe\x9f\x1f\x3f\xbe\x9f\x1d\xdf\x1c\x67\x1b\xeb\xb3\x64\x30\x2c\x4c\x9e\x15\x94\x1a\x90\x71\x06\xc6\x55\x6b\x79\xbd\x71\x24\xd7\xc4\x34\x53\x11\xf5\x14\xd2\xd6\xd6\x16\x7d\xf3\x9b\xdf\xb4\x1f\xf8\xc0\x07\xcc\x3b\xef\xbc\x23\x65\xca\xf3\x4a\x1a\x35\x9c\x27\x9a\x8e\x92\x72\x0c\x2c\xca\x0c\x97\x35\xd9\xe6\xb4\x36\x10\x93\x6f\x69\x98\x70\x78\x0d\xb7\x9a\x5f\x2a\x0a\x77\x90\x11\xba\xb4\xd2\x11\x79\xef\x8c\xff\xd6\xb7\xbe\x65\x1f\x7b\xec\x31\xa3\xc0\x5a\x6a\x6e\x48\x2e\x00\xcc\x88\x68\x06\x60\x32\x4f\xdc\xe8\xfa\xda\xfc\xca\xf6\xca\xfc\xe2\x91\x51\xfa\x88\x71\x48\xfd\x9a\x93\x70\x34\x3f\x53\x6d\x2d\x83\x02\x80\x23\x07\x5a\x88\x04\x7b\xaf\x8c\x14\x6f\xdc\x34\x57\x29\xf9\x77\xaa\x7f\xb5\xeb\x1b\xf9\x33\x9b\x7e\xf2\x46\x90\xc7\x14\xa6\xaf\x9a\x8c\xc9\x91\x59\x9d\x25\x0f\xdd\x7f\x6b\xf0\xc4\xf5\xb5\xe2\x8d\xfd\xbc\xdc\x29\x92\x70\x53\xb4\xe7\x85\x41\xbb\x91\x72\xbe\x6a\x8d\x75\x59\x9d\x1e\xa4\xfe\xba\x64\x44\xa3\xa3\x0b\x77\xdf\x7c\xef\x26\xec\x32\x9e\x68\xdf\xbb\x68\xee\xc2\x79\xd0\xb2\x2f\xab\xb3\xae\x72\xf4\xa5\xdb\xe7\xd1\xb7\x4c\xb1\xfc\x96\xc1\xf3\x78\xd9\x71\x1c\x84\x4f\x32\x70\x3d\xd1\x25\x8f\x1a\x2f\x79\x9b\xe9\xa2\x49\x3e\xdf\x0e\x7c\xec\x59\xf2\x5e\xe2\x8b\x95\x27\x56\x97\xf2\xbd\x4b\x27\x48\x9a\x64\xd0\x68\x95\x38\x62\x75\xb5\x0c\x3e\x56\xc6\x65\xcf\xb1\x32\xc6\xf2\xd4\xbe\x4b\xde\xb7\x70\x7e\xff\xfb\xdf\xe7\xe7\xb0\x18\xf6\xdd\xb0\xb5\x28\x86\x88\x52\x38\xa4\x06\x94\xae\x4d\x93\x7c\x7d\x9a\xac\x6f\x8e\xd3\xcd\xcd\x51\x76\x72\x7d\x66\x4e\xac\xcc\xcd\xd1\x61\x61\xee\xc9\x0b\xb3\x99\x5a\xb3\x6e\x1c\x8c\x25\x58\xc0\x59\x47\x28\xe6\xc6\xed\x8c\xb3\xf2\xda\x28\xb7\xef\x8c\xb2\xf2\xda\xde\xb0\xbc\x76\x73\xa5\xb8\xb6\xbd\x32\xdf\xd9\xcf\xcb\xd1\xdc\xa0\xf0\xfd\x9d\xd7\xf7\xf5\xda\xc6\xa2\x7e\xf6\x53\x49\x56\xb9\xf1\x59\x93\xa9\x83\xd4\x83\x06\x13\xe3\xe7\xb2\x36\xdc\xa7\xcd\xcb\xb4\x5d\xb8\x79\x99\x42\x79\x68\x09\x80\x66\x9c\xc8\x4c\x62\xca\x24\x66\xd8\xc8\x3c\x00\x84\x2b\xcb\xb9\xd0\xf8\xb3\x4c\xfc\x61\x74\xcd\x81\x74\x0e\x9b\xc3\xc2\x9c\xf8\xf0\xa5\xf5\x27\x3f\x74\x69\xed\x37\x57\x67\xc9\x31\xb9\xab\x87\x1b\x22\xdc\x26\x69\xb9\x5c\x88\x83\xd7\xc6\x0c\x5c\xe3\x11\x61\x07\x07\xb9\x70\x41\xa2\x3f\xb5\x97\xe7\xe7\xd8\xbd\x44\xd4\x18\x2d\x2c\x6d\xf3\x8c\xe6\x84\xdd\x7a\x2a\x29\xc4\x55\x66\x8f\xdd\xcf\xcb\x9f\xfc\xe4\xc4\xe8\xeb\x3f\x3e\xb9\xff\xad\xeb\xab\xf3\x4b\x00\x46\x44\x34\x02\x30\xab\xff\xbc\x30\x5b\x00\x96\x88\xc0\x04\xb9\x0f\xdf\x97\x09\x96\x8c\xbb\x1d\xa3\x76\x19\x7c\x1f\x21\x3d\x88\x0c\xdd\x29\xcd\xb7\x13\x0e\x24\xe3\x91\xef\x77\x42\x67\xdf\xfa\x5c\x46\x5b\x9f\x4e\xa3\x2f\xae\x3b\xa1\xb3\x2f\x2e\x4f\x57\xdf\x3a\xef\xcb\xe3\x3b\xe1\x43\x2c\xaf\xbe\x72\xe0\x9f\x7d\x38\x48\x39\x34\x9d\x7c\x37\xda\x7f\x97\xe1\xa0\x85\x58\xdf\xd0\xa7\x9d\xf6\xad\x3b\xed\x5d\xe6\xd1\x49\xd7\xca\xca\x8a\x19\x8f\xc7\xb6\xee\x73\x00\x80\x2f\x98\x0d\x06\x4b\xfd\x5b\x9d\xa7\x65\x91\xae\xcd\x93\xe1\xe1\x71\xba\x79\xef\x6e\xf6\xc0\xb1\xfd\xfc\xa1\x23\xe3\xf4\xd1\xb5\x69\xf2\x9e\xbc\xa4\x93\x89\xa3\x4d\x63\xe9\x10\x01\xab\x70\x94\xfb\x21\x69\x9d\xaf\x75\x84\x99\x25\xb7\x53\x12\x6e\x14\x89\xbb\x36\x49\xed\xc5\x9d\x95\xe2\x67\x57\xd6\x67\xe7\xaf\x6e\xcc\x2e\x6e\xaf\x14\xd7\x76\x07\xe5\xa8\x48\xdc\xac\x4e\x53\xd4\x87\x8f\x7a\x23\xc2\x1b\x33\xa8\xe3\xf0\xcc\x33\xcf\xd8\x47\x1f\x7d\xd4\xbc\xfa\xea\xab\x7d\x3a\x7b\xc9\xab\x58\x3b\xea\xa3\x1b\x96\xe5\x75\x90\xfa\x97\xf0\x5d\x86\x52\x78\xd6\xce\x71\x91\x6e\xfa\x98\x3b\xce\x0a\x18\xe9\x8a\xb6\x2c\xce\x88\x67\xcb\x70\xe2\xf8\xf1\xe3\xe6\xf1\xc7\x1f\x07\x10\xd6\x70\x18\x00\x60\x73\x89\xa6\x5e\x10\x55\x6d\x8f\x26\x64\x0e\x2e\x25\x87\xec\xc4\x7e\x7e\xff\xea\x2c\x39\x4a\x80\xf1\x5e\x14\x6e\x34\x34\x2e\x90\xc6\x8b\xe2\xbd\x20\x6d\x7f\x73\x1d\x47\x7e\xe5\x49\x63\x9c\xb8\xfa\x39\x18\x26\xec\x52\x45\x1f\xaa\x35\x32\xd4\xdc\x99\xc4\x0c\x1b\xcd\x80\xf1\xf1\xfc\xe4\xdf\x7a\xfa\x89\x12\x98\x41\xe2\x68\xb2\x9f\x97\x97\xb7\x57\xcb\x1b\xce\x04\xaf\x93\xe7\x6f\x10\x60\xbf\x36\x68\x6b\x6b\x8b\x8c\x31\x54\x1f\x37\x1d\x73\xe3\xc9\x3a\xe2\x2e\x5a\x5f\x47\xd2\xcd\x2a\xdd\xc5\x3c\x9e\xe3\x06\xfb\xa6\x09\xa6\x94\x03\xe9\x62\xd6\xbe\x59\xf1\x4d\xba\xca\x79\x7a\x49\x1b\xa7\x37\x46\xcb\x41\xa6\x63\x34\x38\x8d\x7f\xcb\x5c\xf6\x92\xc7\x31\x1e\xc4\x02\x87\xe1\xed\xc9\x87\x2e\x17\xae\x4c\x27\xf9\x2d\xa7\x62\xa4\x1c\x68\xfc\xe9\xa2\xdd\x30\x3c\xbc\xdd\xc7\x70\xb7\xf4\x82\xf8\xce\xcb\x27\xcb\xbd\x4c\x4e\x35\x1d\x24\xe1\xa4\x6b\x9c\xd3\xdc\xc5\x4b\x59\xc7\x50\xf8\xd9\x95\x2f\x2f\xb3\xcf\x37\xe6\x8a\x8f\xd1\x11\x33\x5a\xb8\xdc\x71\x59\xd5\xda\xbf\xc4\x07\x2c\xf2\x44\xa6\x95\x72\xed\xbf\x3b\xe5\x19\x2c\xce\xe7\x25\xdb\xba\xc6\xd7\x58\x7a\xfe\x1e\xe3\xb1\xc4\x41\x00\xdc\xfb\xdf\xff\x7e\xfa\xec\x67\x3f\x4b\x1d\x46\x4b\x5a\xf7\x37\x19\x1c\xb2\xac\xa4\x95\xa3\xe3\xec\xc8\xbb\x6e\x0c\xdf\xfd\xbe\x2b\x6b\x9f\x78\xe4\xe6\xf0\xd7\x8f\xef\xe5\xbf\x76\x68\x92\xfe\xd2\xb0\x30\x1f\xcc\xac\x79\xc0\x38\x3a\x6a\x40\x6b\xe4\x28\x27\x42\x42\xd5\x0e\xd8\x04\xa0\x94\x1c\x65\x04\x0c\x13\x67\x0e\x27\x16\x27\xf3\xd2\xbc\x7b\xa5\x30\xef\x59\x9f\x25\x8f\x1e\x19\x65\xa7\x8e\x8e\xb2\xcd\xb5\x59\x32\x70\x84\xa2\x30\xb6\x9c\x27\xe1\x62\xdd\xda\x39\x5f\xad\x6b\xac\x75\x7e\x68\x73\x5b\x5b\x5b\xf4\xf0\xc3\x0f\xe3\xea\xd5\xab\xb4\xb7\xb7\xa7\xc9\x8c\xe4\x37\x97\x65\x2f\x67\xbc\xbe\xb5\xfa\xe1\x3c\x95\x72\x25\xbf\xc9\x34\x5a\xdb\xd1\x74\x44\x4c\x3f\xf0\x32\xb4\xbe\x4b\xc3\x45\x53\xd2\xbc\x30\x5a\xc7\xa7\x75\x80\x56\xa4\x93\x02\xca\x89\x71\xa3\xd1\xc8\xb1\x45\xba\x55\x46\xcd\xf6\x33\x00\xf0\xf3\x8c\x86\x2f\xd2\x9d\xa5\x0e\xf7\xec\x67\x47\x36\x27\xd9\xfd\xa9\xa5\x41\x3d\x0f\x14\x92\x85\x33\x59\x6a\x6b\x22\x48\xb7\x3f\x28\x48\x16\xd0\xb1\x29\x22\x69\x64\x30\x98\xc6\x53\xe2\x9f\xdb\x06\x48\x3d\x17\x04\x57\x1b\x52\x35\xba\x06\x53\x6d\x3c\xb9\x1a\x8e\x18\x10\x11\x81\x1c\x65\x89\xa5\xac\x34\xee\xd6\xce\xb0\x78\x6b\x3f\xb7\x23\x50\xd8\x1a\x5d\xd6\x74\x95\x6d\xb9\x26\xf7\x77\x7f\xf7\x77\x76\x6d\x6d\xcd\xcc\xe7\xf3\x98\x72\x8f\x75\x70\xbc\x8e\x34\x21\x8e\xc5\x6b\x1d\xba\x8c\xe7\x71\x52\xb9\xc5\x94\x9c\x94\x31\x87\x36\x7d\x1e\x8f\xc5\x22\x0d\x52\x49\xcb\xd0\xf5\x5d\x2a\xf9\x58\x67\xaa\x75\xac\xbc\x13\x07\x16\xdb\x81\x56\x66\xde\xb8\x81\x45\xba\xb4\x4e\x9c\x77\x6c\x3e\x4d\xac\x2d\x6a\x3c\xe4\x65\xd0\xf2\xd5\xf8\xd3\xd5\xe1\x71\x78\xad\x53\x91\xb2\x42\xe2\x5d\xca\xa9\x86\x43\xd3\x4b\x31\xfa\xb4\x3a\x94\xb2\x2d\x15\xad\x66\xa8\x68\x79\x48\x5e\xf6\xa9\x63\xa9\xfb\x64\xdd\xc5\x78\xc1\x7f\x81\xc5\x7a\xf1\xf1\x52\x9f\xca\x0e\x44\xab\x17\x4d\xae\x65\xb1\x21\xb7\x3a\x00\x00\x20\x00\x49\x44\x41\x54\x47\x23\x75\x35\x97\x6f\x39\xb0\xe0\xed\xb1\xcb\xc8\xe5\xc1\xc3\xc8\x32\x68\x9d\x29\xa7\x9b\xe3\xd4\xf8\xca\xeb\x86\xe7\x13\xf8\xf0\xd9\xcf\x7e\xb6\xb5\xc5\x99\x79\x57\xbc\xd1\x92\x12\x51\x66\x2c\x06\xab\x73\x73\xe8\xbe\xdd\xc1\xa9\x0f\x5c\x5e\x3f\xfd\xe8\xb5\x95\xdf\x3c\x36\xca\x3e\xbb\x3a\x4b\x3e\x91\x5a\xf3\x80\x01\xad\x02\x64\xaa\x63\x2e\x5c\xd8\xe0\xe1\x77\xa8\xfa\xbe\xa7\xb5\xd4\x80\x50\xf5\x19\x0e\x79\xe2\xcc\x3d\x83\x92\xde\xb5\x3a\x4f\xde\xbb\x39\x4e\x1f\xbc\x67\x94\xaf\x25\x8e\x26\x7b\x79\x39\x2e\x12\x67\x5d\x05\xef\xd7\xbd\x00\x80\xdf\x98\x11\xea\xc2\x18\x83\x7f\xf9\x97\x7f\xb1\xf5\xb3\xa9\xbd\xf0\x52\x8e\x35\xb9\xe0\xf5\x2a\xeb\x4c\xeb\x37\xa4\xdc\xc6\xea\x0f\x1d\xcf\xb2\x0f\xe2\xdf\x78\xbe\x9a\xae\x68\xe5\x2d\x0d\x17\x4d\x99\xcb\xce\xcd\x07\x4d\xc1\x69\xd6\x7e\x8c\x49\x90\xef\xec\x70\x1f\x39\x72\x09\xfb\xe5\x6b\x03\x26\x05\x21\x29\xc9\x25\x83\xd2\xe4\xc7\xf7\xf3\x87\x07\x85\x59\xa7\xca\xc0\xf1\xb2\x11\x50\x84\x85\xb2\x75\x75\x33\xeb\xb5\x8a\x62\xf1\x41\xbe\xc4\x76\xe7\x30\xac\xe0\x06\x4f\xf0\xc2\x30\x86\x10\xea\x99\x28\x96\xaf\xa7\x27\x9c\x01\x53\x93\xe2\x69\x61\x79\x7a\x5b\xc8\x38\x1a\xa4\xce\xd8\x49\x66\xaf\x5e\x5b\x9f\x5f\xb5\xd5\x0e\xa3\x82\x1b\x2d\xde\x12\xaf\xad\x70\xb7\xb5\xb5\x45\xdf\xfb\xde\xf7\x34\x03\x63\x81\xd7\xca\xf7\x18\x8c\x06\x17\x0b\x5c\xb9\xf1\x38\xad\x83\x94\x41\x53\x74\x31\x3a\x62\x8a\xad\x0f\xad\x5d\x32\x2e\xe9\xd7\xe4\xbe\x0b\x5f\xec\x39\xe6\x45\xd0\xf8\x1d\x6b\x6f\x5d\x9d\x7b\xcc\x18\xd3\x14\xc5\xb2\x20\xeb\x2f\x46\x53\xac\x8e\x62\x41\xeb\xf4\x5b\x4d\x07\xfa\x68\xd9\x7f\x5f\x46\x17\xa7\x9f\xa7\xf1\x34\xcb\x0e\x9f\xd3\xb1\x30\x98\x52\x70\xcb\x11\x21\xef\x64\xa5\xc1\x2a\xe3\x25\x1d\xb1\x4e\x9d\xd3\xc2\xd3\x6a\x9e\x47\x69\xb4\xcb\x72\x75\x05\x8e\x3b\xa6\xdb\x35\xb9\xe1\xfc\xd2\x74\x3b\xc7\xb3\xa0\x1a\x19\x9d\x5a\x3b\xee\x1a\x00\xc4\x70\xc6\x8c\x4c\xfe\xbd\xd5\x06\xfc\x61\x72\xd4\x9c\x74\x6b\xc0\xce\x5c\xa9\x9f\x73\xe3\x68\x70\x74\x9c\x1e\x79\xec\xea\xea\x63\x1f\x7c\x7b\xfd\xd7\xef\xdb\xc9\x3f\xbb\x3e\x4b\x3e\x9d\x58\x73\x2f\x88\x12\xc9\xc0\xca\x36\xa1\x3a\x63\x6a\xfa\x99\xfa\x1b\x39\x2f\x04\x14\xf4\x3e\x39\x80\x88\x92\xc4\xd1\x46\x56\xd2\x83\xab\x73\xf3\xe8\x91\x71\xb6\xb9\x36\x33\x7b\xb7\x56\x8a\xdd\x59\x6a\x0b\x57\x25\x71\x35\xcd\xdc\xfb\x52\x75\x21\x6c\xd1\xee\x9b\x6f\xbe\x89\xf1\x78\x1c\x8c\x1c\x2c\x7a\x2f\xe4\x94\x4d\x4c\xfe\x79\x9d\xf8\x78\x4d\xbe\x81\x7e\x06\xa6\xc7\x8b\x48\xbc\x64\x27\xa7\x5b\x95\xe5\xae\x23\xff\x7d\x88\x35\x82\x65\x8a\x38\xd6\x80\x62\xca\x38\x18\x2e\x7c\xcb\x6f\x7d\x08\x9d\x17\x34\xbe\x3f\x3e\x07\x90\x4c\x33\x6b\x4f\xee\x0e\xee\x5f\x9f\x26\x27\x92\xfa\x24\x5d\x6f\xe1\x7a\x8b\x37\x78\x46\x98\xfa\x68\x84\xca\x05\x03\xc4\x87\x3a\x65\x63\xe8\x54\x34\x35\x8b\x69\xc3\xfa\x98\xda\x5b\xe2\x5c\xcb\xe8\x69\xa9\x29\x62\xcb\x77\xeb\x85\x30\x7e\x77\x92\x6b\x80\xda\xf9\x57\xa8\xb2\xc4\x52\x46\xc0\x68\x94\x97\x6f\xde\x1a\x96\x3b\xa0\x6a\xee\xb3\x4e\x64\x2b\x43\xdc\xf9\x5f\x22\x22\xb7\xb6\xb6\x46\xaf\xbf\xfe\xba\xa6\x80\x63\xa3\x2c\xa9\x24\x34\x0f\x83\x06\xab\x05\x39\x3a\x94\xdf\xba\x3a\x06\xa9\x08\xbb\x46\x6c\x12\xff\x32\x7a\xfb\x94\xd9\x87\x2e\xb8\xae\x8e\x33\x56\x2e\x4f\x6f\x4c\x91\x77\xf1\x3f\xd6\xa8\x25\x8d\x31\xe3\xa4\xcb\x20\x88\xf1\x57\x83\xd1\xd2\xca\x0e\x47\x3e\x73\xfa\xb4\xce\x28\x36\x97\x2d\x8d\x30\xe9\x09\x90\x3a\x86\x07\x3e\x02\xd4\x14\x6b\x97\x57\x41\xa3\x45\xa3\x5f\x7b\x96\x65\xd1\x8c\x15\xad\x23\x91\xf9\x73\x3e\x6b\x9d\x4d\xac\x63\x97\xc6\x4d\x4c\x86\x39\x8d\xe8\x80\xd7\xa6\xf1\x48\x7c\x93\xf1\xb2\x2e\x62\x32\xed\x04\x8c\x8c\xef\x6a\x8f\x31\x3c\xbc\x6c\x2a\x9d\x1f\xfb\xd8\xc7\xe8\xb7\x7e\xeb\xb7\xbc\x47\x5f\x1a\x2d\x7e\x59\x42\xee\x9c\x1b\x10\x68\x70\x6c\x94\x1d\x79\xff\x95\xb5\x8f\x3e\xf6\xce\xea\xef\x1e\x19\x67\xbf\x33\x28\xcc\x7b\x89\x28\x0b\x85\xf5\x03\x54\x34\xfd\x4d\x50\xf3\x68\xbc\xf5\x61\x62\x27\x0c\x4e\xd1\xd4\x20\x7b\x26\x90\x31\x0e\x87\xf2\xd2\xbc\xfb\xd0\x24\xbd\xef\xf0\x34\xdd\xb9\xb9\x5a\xdc\x9c\x64\x76\x5e\x75\x57\x55\x87\xc3\x3c\x2e\xad\x69\x23\xe7\x1c\xfe\xf5\x5f\xff\xd5\xde\x7b\xef\xbd\xb4\xb7\xb7\x27\x3d\x8b\x40\x5b\xb6\xa4\x31\xa3\xb5\xff\x98\x4c\x71\xd9\x96\x6d\xa4\xab\xce\x24\x2e\xae\xff\xb4\xa9\xce\x2e\x1d\x65\x96\x19\x2e\x5d\xca\x5b\x0a\x49\x97\x40\x71\x7c\x31\xc1\xc5\xb9\x73\xe7\xdc\xb9\x73\xe7\xfc\xa1\x74\xb5\x11\x4b\x7c\xaf\x3b\x3f\xf8\x27\x01\x21\x9b\xa5\x8e\xd6\xa7\xc9\xf0\xe8\x38\xbd\x2f\x2f\xcd\x1a\x81\xc2\x5a\x17\xbe\x56\x85\x1b\x06\x41\x88\x00\xd4\xf3\x42\x68\xac\x9a\x60\x8e\x08\x8f\x89\xb0\xa6\x9b\x37\x86\xaf\x99\x8e\xaa\xd2\x7b\x97\x61\x28\x4c\xa0\x89\xd7\x7e\x2b\x2e\xd8\x4b\x04\xe3\x30\x48\xad\x49\x0a\xe3\x6e\x5c\x3e\x34\x7b\xcb\x1a\xcc\x6b\x5e\x17\x75\x52\xbf\x3d\x3a\x78\x5d\xfe\xe6\x6f\xfe\x46\x9b\xa6\xd3\x7e\xfd\xb3\x26\x70\x5a\x87\x20\x47\x59\x5a\xe0\x4a\x5a\xfb\xd6\x95\x47\xd7\xfb\x41\x60\x25\x2d\x1a\xae\x2e\xdc\x07\x81\xeb\xc3\xbb\x65\xb8\xba\x70\x68\x65\xe8\x2a\x4b\x8c\xbe\x3e\x78\x62\xe9\xba\x7e\xfb\xe0\x91\x0a\x71\x99\xcc\x69\x38\x64\xba\x58\xa7\x25\xe7\xf0\x97\x75\xa6\x9a\x52\x96\xbf\xb2\x23\xd4\x8c\x2e\x8d\x56\x6e\xb8\x1c\x94\x3e\x0e\xa3\x19\xc2\x92\x7f\x5d\x46\xb1\xe6\xd1\x88\x19\xa0\x92\x26\x49\xab\x66\x7c\x6a\xf1\xb2\xce\x24\x9f\x20\x70\xc8\xb2\xc5\xca\xac\x19\xcc\x1c\x56\xed\x6c\x7f\xf9\x97\x7f\x99\xbe\xfb\xdd\xef\xda\x33\x67\xce\xf8\xed\xcd\x7c\x07\x11\xa1\xf6\xb2\x00\x18\x12\xd1\xe0\xd4\x4e\x7e\xfc\x89\xb7\xd7\x7f\xe9\xd1\x6b\x2b\xbf\xbf\x31\x4b\x7f\x29\x71\x74\x34\x8c\x55\xdb\x23\xdc\x66\x00\x4a\x5e\x6b\x37\x7d\x85\x27\x9a\x1a\x45\xdf\xfe\x05\xf8\x18\x18\x44\x04\xe3\x28\xcb\xad\x79\x70\x6d\x96\x3c\x74\x74\x94\xcd\xf6\x07\xe5\xcd\x51\x6e\xa7\x25\x39\xcb\x8d\x16\x00\xc1\xf3\x42\x55\x70\xe7\xce\x9d\x73\x7b\x7b\x7b\x1a\xef\xf9\x33\x18\x0f\xb5\xf6\xd4\x65\x64\xf0\x62\x49\xd9\xe8\x92\x53\x29\x33\x5d\x30\x9a\x6e\x58\x68\x67\x9a\xe1\x22\x85\xba\x4b\xe1\x70\xa1\xed\x52\xa0\x5d\x23\xa4\x05\x81\xf6\xf7\x17\x89\x3f\x2f\x68\xe1\x50\xba\xfa\x39\x2f\x8c\xc3\xf1\xfd\xfc\xbe\xf5\x59\x72\x2c\x71\x94\x11\xdf\x0b\xcd\x88\x6d\xc7\xb0\x48\x6a\xef\x20\x92\x70\xed\x96\xe9\x1a\x69\x0c\x6b\x65\x1a\x83\x84\xa7\x0a\xa2\xec\x42\x36\x21\x48\xa3\x85\x67\xc6\xe0\x92\xc4\x51\x6e\x1c\xca\x79\xe2\xde\xba\xb6\x3e\xdf\x46\x7d\x0d\x40\x4d\x8e\x3f\x94\x2e\x5c\x09\x20\xce\x75\x59\x16\x34\x6b\x59\x0b\x5d\x1d\xc6\xff\x0e\x3f\xbf\xa0\x29\x83\xff\xd9\x82\xec\x58\xfa\xe8\x09\x19\x62\xe9\x62\xb8\xbb\x3a\x52\x08\x5c\xb1\x81\x19\x18\x6c\x0c\x5e\xa3\x49\x1a\x3d\xcb\x8c\x3d\x1e\xb4\xf2\xc8\x4e\x45\xa3\x35\x56\xf6\x18\xdd\x7c\xdc\xbf\xac\x6d\xf7\x29\x83\xf6\xbc\xac\x3e\xba\xe2\x63\x65\x3e\x48\x19\x42\xfc\xc3\x0f\x3f\x4c\xbf\xf1\x1b\xbf\xc1\xc6\xa0\x0b\x47\xf3\xe7\xce\xb9\x21\x11\xe5\x0f\x6c\x0f\x4e\x7c\xe0\xf2\xfa\xa7\x1f\xdc\x1e\x7e\x6e\x6d\x9e\x7c\xd4\x38\x1c\x0a\x03\xe1\x70\xd6\x86\xff\xf1\x1a\xbe\xf1\xaa\xb7\xb4\x79\x5b\x97\x2b\x16\xa6\x38\x96\x03\xc1\x90\xa1\xc4\xe2\x9e\x61\x61\x4e\xad\xcf\xd2\xd9\xee\xb0\xbc\x36\x1a\x94\x13\x57\x79\xdc\xf9\x8c\x04\xf7\xc0\xb8\xd3\xa7\x4f\xd3\xb3\xcf\x3e\xeb\x1e\x7a\xe8\x21\xba\x75\xeb\x56\x8c\x67\x9a\xa7\x94\x87\x18\x3f\x35\xf8\x83\xc0\x4a\xf8\xa8\x37\x05\xba\x41\xda\xc2\xd7\xb5\xab\x48\x0a\x63\x8c\x98\x3e\x8a\x35\xa6\x18\x78\x7c\x20\xae\x36\x5c\x02\xd1\xec\x34\x41\x6e\x21\xfb\xf9\xc8\x74\x9a\x59\xda\x1c\xa7\x87\x37\x27\xd9\xbd\x79\x49\x6b\x04\xe6\x43\x43\x63\xf9\x48\x82\xe4\xd4\x11\x18\x3c\xc4\x1b\x01\x7e\x4e\x32\x78\x70\x48\x91\x4a\x9e\xa2\xf1\xf8\x08\x62\xd8\x23\xdf\x16\x1d\x60\xfd\x33\x08\xe4\x90\xa5\x8e\x32\x10\xed\x6f\x0f\x8b\x37\x46\x59\x39\x23\xa2\xb2\x36\x56\x2c\x98\xd7\xc5\x53\xc2\x8c\x97\x98\x61\x12\x1b\x15\x22\x92\x46\x0a\x93\x26\x5c\x5d\x2e\x6a\x4d\x76\xa4\x9b\xd9\x88\xe7\x58\xfe\xcb\xf0\x2e\xa3\xb9\x2b\x68\xf9\xc4\x68\x5f\x56\xee\x58\x19\x34\xba\xfb\x74\x48\x77\xca\xd3\x58\x59\xbb\xca\x10\x4b\xd3\x25\x23\x12\x3e\xe6\x91\xd0\x78\xa5\x29\x2f\x3e\x4e\x95\x79\x72\x18\x39\xfd\xa2\x79\x69\x34\x1e\x82\xc5\x69\x32\xdd\x05\xbf\x4c\x4e\x39\x4d\x1a\xfd\x92\x07\x92\x6e\xcd\x7b\x01\x01\xcb\x3b\x23\x40\xc7\x2f\x3b\x2c\x0f\xb7\xac\x4d\x69\xe5\x95\xcf\x31\x59\xe3\xdf\xba\xe8\xd6\xea\x8c\xd3\x11\xe3\x27\x04\x6e\x59\x66\x0b\x00\x9f\xfa\xd4\xa7\xcc\xa3\x8f\x3e\x8a\x24\x49\xbc\xf7\xde\x00\xad\xdd\x43\x39\x11\xe5\x44\x34\x38\x3c\x4a\x36\x3f\x70\x65\xed\x53\x0f\xdd\x1c\xfc\xf6\xfa\x2c\xfd\x90\x71\x38\x1c\x74\x79\x5d\x1a\x57\xe9\xe4\x9a\x02\xdf\x67\x50\xab\xb0\x41\x85\x8b\x01\xb4\x14\xe4\xca\x44\xa9\x0b\xe2\x8d\x21\xe7\x8d\x17\x32\x89\xa5\xc3\x83\xd2\x1c\xce\x4b\x33\xda\x1b\x94\xd7\xf7\x06\xe5\x18\x00\x5f\xe3\x02\xbf\x5c\xa0\x7a\x24\x77\xfa\xf4\x69\x3a\x79\xf2\x24\xc6\xe3\x31\xdd\xbc\x79\x93\x77\x7f\x5d\xf5\xa0\xb5\x35\x29\x47\x50\x60\x97\x4d\x15\xc9\x3a\xe1\xdf\x62\xf6\x85\x7f\xe6\xf9\xc9\xf6\xd8\x9c\x9b\xa2\x10\x29\xdf\x6d\xe4\x9b\x81\x9e\x5e\xc6\x7b\x1c\x32\x9d\x67\xa2\x4d\x92\xc4\x68\x87\xeb\x50\xfb\x00\x36\x8b\xe6\x3c\x93\x19\x80\x59\x69\x30\xba\x74\x68\xf6\xc6\xad\x61\x71\xb5\x20\x37\xe3\xe2\x52\x19\x07\x6d\x22\xda\xe2\x54\xbd\x78\x98\x76\x0d\xb4\xcd\x1d\x57\x1b\x26\xfe\x1e\xa2\xf0\x0b\x17\x40\x83\xfd\xcb\xf0\x78\xdc\x8e\x14\xcc\xdc\x68\xe1\x89\x9a\xb8\x74\x50\x98\x93\xf7\xee\x66\x67\xde\x7d\x7d\xe5\xfd\x06\x94\x03\xc8\xa9\x3e\x5f\x80\xfd\x69\x75\xe1\xf9\x26\x83\xed\xf8\x1e\x8b\xeb\xfa\xd5\x9e\xe5\xbb\x26\x0b\x1c\x4e\x3e\xf7\xa5\x57\x06\x2e\xaf\x31\x5a\x35\xd9\x8c\xe5\xd3\xc5\x3f\xed\x79\x59\x19\x62\x38\x0f\x82\xbb\x8b\xae\x18\x4f\x7d\x90\xfc\x59\x46\x9b\x94\xa7\x18\xde\x18\x3d\x31\x1d\x20\xf1\x49\xda\x82\x5e\xe8\xc8\x53\x83\xe1\xf1\x1c\xa7\x84\xd5\xf2\xd7\x70\x2c\x83\x97\x74\x73\x5a\xbb\xe8\xd3\xf2\x95\x74\x6b\x71\x12\x96\xf3\x78\x59\x1b\xd3\x68\xe7\xf8\xb4\xe7\xae\xf4\x5a\xfd\x68\xf2\xc2\xf5\xbc\xa4\x5b\x3e\x23\xf2\xac\xf1\xd3\x7f\x87\x06\xfb\xa9\x4f\x7d\xca\x7c\xfb\xdb\xdf\xb6\x79\x9e\xcb\xcd\x16\xde\x80\x49\x89\x2a\x7d\x9a\x58\xac\x3e\x7a\x7d\xf5\xfd\xa7\xb6\x07\xbf\xb2\x3a\x4b\x3e\x68\x1c\x0e\x55\xde\x72\x62\xfd\x43\xb3\x34\x40\xf6\xcc\x8e\x3d\xb5\x76\x90\x2a\x81\xf7\xdc\xfe\xb4\x17\x6f\x02\xb5\xcf\x45\xa5\x7c\x38\x37\xef\xbb\xff\xd6\xe0\xd7\x7f\xe1\x9d\xd5\x33\xc7\xf6\xb2\x63\xa8\xce\x35\xcb\xa9\xbe\xbf\x8f\xed\x86\xf2\xe5\xc2\xfa\xfa\x3a\xd8\xd9\x2e\x9c\x5f\x5d\xf2\x63\xb1\x58\xdf\x9a\x1c\x74\xd5\x1f\x44\x3a\x60\x11\x37\x8f\x97\x6d\xb3\x4b\xee\xc0\xde\xad\x76\xe4\xbf\xac\x13\x69\xb1\x49\x2b\xde\xa1\x6d\x89\x81\xc1\xc6\x46\x6e\x4e\xfc\x55\x91\xce\xb9\x73\xe7\xce\xb9\x3f\xf9\x93\x3f\x31\xc6\x18\x9e\xb7\x7f\xe6\x9d\xb3\xf7\xba\x64\x00\xb2\x59\x6a\xdd\xd1\x71\x76\xf4\xd0\x34\x3d\x9e\x97\xb4\xc2\x96\xe2\x82\x14\xf9\xe1\x51\xae\x86\x09\x06\x8d\x43\x6b\x11\x15\x29\xe9\xd8\xb6\xed\x1a\xbe\x59\xcb\xe2\x17\x6e\xf9\xbc\x7d\xfe\xad\x6d\xd3\x3c\x9f\xa6\xfc\x75\xbe\xdc\x0a\x22\x18\x87\x34\xb1\x66\x25\x71\x34\x1f\xe5\xf6\x8d\x5b\x2b\xc5\x2e\x10\xb6\x46\x3b\x34\xf5\xe0\x7f\xdd\xd6\xd6\x16\x7d\xe8\x43\x1f\xa2\xe7\x9f\x7f\x5e\xe3\xff\x41\x83\x66\x55\x1f\x34\x68\x23\xd4\xbe\x79\xc7\x46\xff\x9a\x12\xee\x83\x5f\xca\x66\x1f\xba\xe4\xe8\xf7\x6e\x86\xbb\x8d\xef\x4e\xf3\xea\xd2\x07\x32\x2c\xe3\x47\xcc\x2b\xa3\xf1\x9e\xc3\x52\x24\x9e\xa7\x89\xe9\x16\x39\xf2\x97\xb0\x46\xf9\xde\x45\x8b\xc4\x2f\x69\x5c\x56\x46\x99\x4f\x2c\x3e\x46\xb7\x56\xde\xae\x32\x6a\xb2\x1a\xa3\xab\x2b\x6f\x19\x0e\x02\x23\xcb\x7b\x10\x9e\x48\xcf\x40\x57\xfe\xd2\x63\x15\x60\xdf\x7c\xf3\x4d\x0b\x54\x1e\x7c\x31\x3d\x94\xa0\xb9\xff\x2e\x07\xb0\xf2\xee\xeb\xc3\x87\x1e\xbb\xba\xf6\x7f\xde\x33\xca\x3e\x99\x5b\x3a\x41\xa0\xc4\xf7\x0b\x00\x16\xfb\x10\xa1\xbb\xfd\x3b\xb9\xc6\xdf\xcf\x07\xc8\x0b\x83\x69\x56\xa4\xaa\xcf\xa9\x10\xb0\xe5\xb6\x7e\x19\x42\x96\x5a\x6c\xe4\xa5\xc1\x34\xb5\xd7\x6f\x0d\x8b\x6b\x45\xe2\xf8\xfd\x75\xa8\x07\xf6\x61\xbd\x0b\x00\xe7\xef\x35\x62\x7c\x8c\xb5\x0b\xf9\xbc\xac\x0d\xc4\xd2\xc5\x74\x46\x57\xdb\x90\x69\x63\xb0\x3c\x38\x60\xf1\x92\x45\x2d\x04\xb7\x1b\x1a\xe1\x90\x8d\xc8\x89\x6f\x1c\x96\xe3\x97\xae\x29\x35\xcf\x0f\x7f\xf8\xc3\x94\x24\x09\x77\x87\x01\x80\xdf\xe6\xc5\xdd\x7d\xe1\x0e\xa3\x22\x01\x0d\x0b\x33\x3c\x32\xce\x4e\xae\xce\xcd\x66\xe2\x2a\xc1\xe3\x85\x08\xcf\xae\x1d\x51\xc9\x89\xdf\x81\xd4\x08\xa4\x23\xb6\x1f\x3f\x08\x58\x95\xc2\x6f\x69\xab\xdf\x1a\x03\xc7\xa7\xf7\xef\xdc\x20\x42\x13\x57\xe1\x67\x5e\x96\x80\xaf\xb6\xf0\xfd\x62\xaf\x9a\x03\xc6\x21\x4b\x2d\x0d\x8d\xa3\x9b\xef\x6c\xcc\xdf\x9c\x25\x6e\xce\x3c\x51\xde\x5d\xe8\xd8\xc8\xc2\x19\x63\xc0\x04\x58\x53\x62\x9a\xab\xd0\x61\x51\xf1\xf9\x22\x48\x01\x27\x25\x0d\x0f\xd2\xe0\x89\x75\x40\xb1\xb4\x52\x71\xf3\x78\xc2\x22\x4d\xb1\xbc\x65\x7a\x4d\xa6\x63\x69\x24\x7c\x8c\x4e\x9e\x5e\x53\x04\xb1\x4e\xa4\x2f\xdd\x5d\xf8\xbb\xf2\xeb\xaa\x17\x8d\x77\x31\x99\xd0\xe8\xd6\x8c\xc7\x2e\x1e\x42\xc9\xb7\xab\x7e\x62\x74\x4a\xb9\x93\xf9\xf1\x67\x0d\x16\x2c\x8e\x7f\x8f\xb5\x0f\x4d\xce\xf9\x28\x51\x76\x9e\x5a\xba\x18\x9f\xad\x78\xe6\x65\x94\x38\x35\x79\x34\x1d\xf0\x1c\x37\x87\xe1\xf9\xcb\x7a\x90\xf5\xc4\xff\x64\x9e\x9a\x7c\x11\xc3\xd1\xc5\x43\x59\x5e\x8f\x57\x33\x6c\xba\xca\xec\xf3\x69\x95\xeb\xa3\x1f\xfd\x28\x7e\xed\xd7\x7e\x8d\x9e\x7c\xf2\xc9\x4a\xe5\x52\xb8\x03\xc8\xdf\xee\x9c\x11\xd1\xc0\x39\x37\x38\x3a\xce\x8e\x7e\xf0\xd2\xfa\x2f\xdf\xb7\x3b\xf8\xf5\x61\x61\x1e\xae\x0f\x91\x6b\x67\xc0\xfb\x05\x71\x96\x57\xd8\x51\x1a\xfa\x10\x6a\xd2\x2a\x78\x7c\xa9\x48\x41\xde\xf4\x3d\x8d\x27\xde\x38\x0c\xd2\x92\x06\x00\xc6\xfb\x03\x7b\xe5\xd6\x4a\xb1\x03\xa0\xf4\x07\xd2\xd5\xfd\x24\x9f\x42\x72\x5b\x5b\x5b\x54\xeb\x7e\xe9\xcd\xd0\xe4\xd4\x93\x28\xeb\x44\xd3\xf1\xbc\x5e\x62\x6d\x57\x7b\xd7\x64\xa6\x2b\x6d\xac\xdd\x01\x80\xf1\xc8\x34\xb7\xaa\xff\x8d\xb9\x45\x65\x58\xe6\x06\xe5\xcf\x9c\x71\x12\x9f\xf9\xd2\x97\xbe\x64\xa7\xd3\x69\x58\x4f\xe2\xd3\x51\x75\x52\xac\x3f\x45\xb6\xa0\xea\xee\xa2\xea\x0e\x23\xc2\xec\xea\xc6\xec\xad\xeb\x6b\xf3\x37\xa6\xa9\xdd\xa9\x8e\xf0\xf7\xb5\xe2\x9a\xff\x0e\xcd\x94\x0d\x6b\x22\xd4\x12\x9c\xea\x03\x9f\xc4\x09\xa0\xd4\xc0\x84\x29\x20\x86\xa8\xb9\xbc\xd1\x35\xcf\x1e\x2e\x62\x30\x79\x38\x57\xbf\xfb\xaf\x95\xe0\x7b\x5a\x90\x0f\x8b\xe4\x81\x53\x3b\x83\xff\xe3\xa1\x9b\xc3\x47\x52\x4b\xab\x70\xc8\x51\x4f\x15\xd5\x53\x47\x7c\x54\xc1\xaf\x49\x07\xe2\x2e\x62\xcd\xa5\x18\x73\xbd\x6b\x6e\xe2\x98\xfb\x5c\xe2\xd4\x82\x96\xb6\x8f\xfc\x68\xf9\xf3\xb4\x32\xef\x98\x7b\xbb\xeb\x9b\xc6\x17\x2d\x74\xf1\x44\xe2\xd1\xd2\x68\xf8\x62\x3c\x8d\xe1\xef\xca\xaf\xab\x5e\x62\x7c\x8f\xb9\xe5\x63\xae\xdb\x58\x5c\xcc\x0d\x1d\x2b\xbf\xcc\xb3\xcb\x65\x1c\x73\x5b\x1f\x84\x8e\x58\xe8\xaa\xfb\x2e\xf9\xe8\xca\x47\xea\xb9\x58\x19\x62\xf9\x20\x02\xdb\xc5\x23\xf9\x5d\xb6\x67\x1e\x62\xbc\x97\xcf\xda\xb7\x58\xd9\x34\xfa\x62\xe5\xd5\x68\x8a\xf1\xa7\xab\x1e\x2d\x00\xfb\xf8\xe3\x8f\xe3\xab\x5f\xfd\xaa\xe5\x3b\x88\xa8\x7d\x8c\x7f\x8e\x7a\xaa\xe8\xa1\x9b\x83\x87\x4e\xec\xe5\x9f\x1c\xce\xcd\x23\x04\x1a\xb6\x8d\x8d\x5a\xff\x12\xeb\x51\x5b\x6b\x12\x1b\x23\x85\x78\x42\x6a\xfa\x85\xaa\x87\x77\x7e\xcc\x5b\x7d\x26\x6e\x35\x2f\x6e\xed\x68\x7a\x1c\x07\x00\x26\x2b\xcd\xa9\x63\xfb\xd9\x47\x1e\xd8\x1e\xbc\x7f\x63\x92\x1c\x42\xb3\x5c\xc0\x4f\x15\x99\x60\x44\xb5\x75\x7f\xac\x8d\xc6\xda\xa5\xa6\x43\x65\xfb\xd2\xe4\x48\x3e\xcb\xbc\x63\xed\x44\xa6\x95\x74\xaa\xfa\x33\x76\x00\x5d\x6c\x84\xac\x8d\x1c\x64\x88\x59\x50\xfc\x1b\xb7\xd8\xa4\x55\x6e\x01\xe0\x7d\xef\x7b\x1f\x0d\x87\x43\x49\x03\x79\x58\xe6\x6d\x49\x50\x5f\x2d\x3e\x4b\x2c\x0d\xe7\xc9\xca\xe1\x49\x7a\x6c\x65\x6e\x0e\x1b\x54\x07\x05\x91\xa3\xe0\xdd\xe0\x37\x33\x4b\x23\xc2\x4b\x92\x6b\x62\x2a\xa2\xb8\xb5\xcd\xbe\x34\x6e\x44\x2e\xd5\x0e\x70\xb5\xc1\xc5\x4f\xe8\xad\x11\x35\xd7\x12\x78\x01\xae\x58\xc1\x85\x97\x98\xcb\xd0\xdf\x8b\x54\x2f\xd4\x4d\xd3\x92\xd6\x8d\xa3\xed\xeb\xeb\xf3\x8b\x93\xcc\x4e\x1c\xc1\x2f\xd4\x75\x7e\x67\x51\xcd\x43\xe7\x9c\x73\x67\xce\x9c\xd1\x76\x19\x69\x56\x71\xcc\xba\xd5\xe0\x65\x9d\xf5\xf1\x24\x40\x81\xd1\x2c\xee\xc0\x2d\x91\x8f\xe6\x01\x90\xf4\x68\xca\x38\x06\xdf\x05\x23\xf1\x76\x7d\x93\x3c\x58\x96\xaf\x36\x8a\x91\xcf\x5d\xf4\x74\x05\x59\x97\xb2\x5e\x63\xb0\x4e\x81\x89\x95\x6b\x59\xb9\x39\x2e\x3e\xca\x92\x65\xe0\x38\x20\x7e\x63\x23\x36\xf9\x8d\xd3\x69\xa1\xf3\xd6\x0a\x58\x59\xa7\x7c\x78\x11\xab\x0b\xa0\xad\x64\xbb\x78\xca\xe9\x90\x5e\x0c\x0d\x9e\xe7\x2d\x8d\x14\x9e\x8f\x43\xbb\x3e\x65\x79\x24\x1f\x62\x3c\xe7\x3a\xb7\xab\xd3\xd1\x46\xd8\x31\xb9\xe6\x65\x8b\xe9\x10\x9f\x87\x2c\x93\xa4\x29\xa6\xab\x62\x9d\x9b\x96\x8f\xfb\xe8\x47\x3f\x1a\xbc\x2d\x2c\x4f\xdf\x57\x64\x00\x72\x38\xac\xac\x14\x66\xe3\x43\x97\xd6\x7f\xe9\xd8\x7e\xf6\x9f\x32\x4b\xc7\x0c\xc8\xc0\x0f\x78\xa9\xd2\xcc\xd5\x23\xbf\x4e\x57\x17\x9e\x96\x97\xa6\x8e\xa8\x9e\x6b\xfd\x5e\x1f\xfc\xb2\xe0\xd9\xaf\xd3\x56\x9f\x6b\xe3\xc3\xd5\x53\x4d\x4c\xf7\x27\x8e\x32\x10\x46\xa3\xdc\x5e\xba\xbe\x3a\xbb\x05\xc0\xd6\x1b\x35\x4a\xaf\xff\xb9\x17\x86\x79\x5d\x38\xa9\x5c\x7e\x34\x99\x97\x32\x28\xe5\x40\xe2\x68\xf5\xdb\x22\x5e\xca\x2c\xcf\x4f\xca\x9b\xa4\x09\x22\x4d\x4b\x27\xf4\x39\xc7\x25\xa6\x2c\x97\x29\xd2\x2e\x23\x27\x66\x10\x85\x46\xf1\xf2\xcb\x2f\x3b\x71\x92\xae\x7f\xe6\xd6\x33\xd5\x2e\x3f\x03\x20\x71\x84\xc4\x11\x68\x63\x9a\x1e\x3d\x34\x4d\x8f\xd5\x6b\x5d\xc2\x94\x8f\x47\x14\x8e\xfc\xf7\xc2\xe3\x7f\x83\xe0\x91\xe0\x7e\xfb\xee\x23\xe9\x32\xf4\xae\x14\x7f\x10\x51\x15\xd5\x48\x3f\x5b\x6d\xc3\x9e\xbd\x81\xc3\x2c\x94\x00\xe3\x1a\xa1\xad\x8d\xa2\xfa\x9d\x8c\xc3\x4a\x66\x29\x2d\x8c\xbb\xb4\xbd\x52\xdc\x98\x27\x6e\x0a\x7d\x9d\x4b\x85\x8d\x9d\xac\x78\xfe\xfc\x79\x9a\x4e\xa7\x52\x49\x70\xc5\x1c\x53\x3e\x12\xde\x89\xbf\x58\xbd\x02\x8b\x72\xd2\xf5\xec\x05\x9a\xe3\x95\x8a\x56\x93\x1d\x8d\x66\x9e\x56\x83\xe7\xe5\x89\x8d\x3e\x63\xca\x52\xe2\x97\x0a\x80\xe7\x6b\xa0\x97\x87\x97\x89\x37\x7e\x49\xb3\xe4\x7b\x57\x90\xf5\xc2\x71\x76\xc1\xfa\xf7\xbe\xbc\x93\x7c\xd3\x64\x43\xc3\x21\x0d\x25\xa0\x5d\x66\x89\x53\xe3\x0d\xa7\x85\xc7\x73\xf9\x90\x9d\xb8\x26\x53\x9c\x26\xad\x4c\x92\x97\x52\x5e\x78\x9c\x66\x10\x70\x05\xec\xcb\xa1\xf1\x53\x2a\x7e\x74\xa4\x23\x16\x07\xb4\x3b\x0b\xce\x2b\x60\x11\x6f\xcc\xd0\xd3\xda\xb0\xec\xec\x24\x1f\x65\x19\xb4\x3a\x96\x86\x9e\xa4\x95\xa7\xef\x32\xee\x34\x23\x07\x1d\x69\x1c\x00\xbc\xf0\xc2\x0b\xbe\xff\x30\x40\xd8\x45\xe4\x0f\x30\xcd\x01\xe4\xc6\x61\xed\x81\x5b\x83\xfb\xde\xfb\xce\xea\x6f\xaf\xcd\xd2\x27\x0c\x68\xe0\x0d\x96\x4a\xed\x7a\xaf\x3d\xbb\xe3\xae\xce\xc2\xf7\x11\xfe\x72\x5e\x7e\x04\x87\x03\x10\xee\xc6\x03\x9a\xa9\xa4\x1a\x71\x38\xa9\x9d\x6f\xaf\xae\x4b\x10\x76\xb7\x12\x58\x5f\xe1\x0d\x18\xa4\x04\xb2\x93\xcc\x5e\xbe\xba\x31\x7f\xab\x4c\x16\x2e\x62\x74\x44\x64\xf9\xd9\x2e\xc7\x8f\x1f\xa7\xf3\xe7\xff\x3f\xea\xde\xf4\xd7\x92\xe3\xb8\x17\xfc\x45\x56\x9d\xed\xee\x7d\xbb\x9b\x6c\xee\xe2\x62\xd2\x8f\xd2\xc8\x52\x5f\x5a\x4f\x92\x21\xd9\xcf\xf6\xc8\x86\xfd\x2c\xf9\xbd\x07\x19\x82\x00\x1b\x82\x64\x12\x98\x7f\x89\x84\x30\xd6\x07\xc3\x02\x2c\x18\x32\x3c\x5f\x6c\x48\x98\x19\x8d\x25\x0c\x6c\x34\xb5\x90\x43\x89\x32\x29\x2e\xdd\x64\x93\xbd\xdd\xa5\xef\x72\x96\xaa\xcc\xf9\x50\x99\x59\x51\x71\x22\xab\xea\x36\x5b\xb2\x5f\xa2\x6f\x9f\xaa\xcc\xc8\x88\xc8\xcc\xc8\xc8\xc8\xc8\xa5\x5e\x4b\xf5\xb7\xc0\xae\x34\x32\x64\x3f\xd1\x74\x8a\xc4\x67\x14\x18\x99\x97\x7b\x73\x48\x81\xd7\x74\x83\x66\x18\x5b\x8e\x48\x06\xcd\xfa\x4a\xc1\xb5\xe1\x38\x4d\x68\x74\xb2\xc5\x62\xc1\xe3\x43\x1a\x5f\x2a\x2a\x20\x4e\x18\xed\x4d\x8a\x1b\xef\xad\xcf\xde\xbc\x3d\x2a\xae\x59\x42\x51\xd5\x02\x93\x00\xa0\xe9\x21\x41\x2d\xa4\x8d\xe3\x47\x0e\xf1\x3d\x58\xc8\x8d\xe0\xa2\x30\x79\x03\x03\xf1\x0b\xd1\x40\x90\x00\x79\x23\x2f\xc3\x5d\x8b\x7d\x34\xa9\x02\x9e\xda\x63\x53\x83\x32\x21\x36\xab\xf3\xec\xe9\x47\x76\xc7\x9f\xba\xf7\xf6\xf0\xfe\x61\x61\xd6\xc0\x96\x8c\xfc\xdf\xd2\x67\xda\x9d\x73\xd8\xdf\xdf\x97\xae\x3b\x59\xb7\x40\xb3\xdd\x53\xf0\x01\x4e\x06\x2d\x4e\x1b\xf8\x53\x41\x73\x3b\x4b\x3c\x46\xfc\xb6\xd1\x37\xec\x4f\xe6\xd5\xca\x28\xf9\xd0\x0c\x1a\x0d\xbf\xe4\x51\xe2\x4a\xf1\x99\x6a\x03\x0e\x67\xc5\xaf\x16\xba\xea\xac\x6f\xe8\x2a\x2f\x8f\x6b\xab\xb7\xd3\xd2\xe8\x92\x1b\x0d\x6f\x5f\x3a\x29\xb9\x09\x74\x35\x17\xb6\x46\x2b\x65\xdc\x6a\x41\xe2\xee\x92\x25\xcd\xc5\x9e\xaa\x4b\x89\x57\x93\x65\xee\xe2\xe7\x21\x15\xdf\x56\x66\x59\x37\x5a\x90\xfd\x4a\xd3\x1b\x1c\x4e\xbe\xb7\xf5\xc5\x54\xe0\x65\x59\xd2\x09\xcf\x3e\xfb\x6c\x83\x16\xd5\xb7\xe4\x56\x7f\x0e\xc3\xdc\xd2\xf8\x81\xbd\xf1\x63\xab\xf3\xec\xd7\x33\x87\x71\xbc\x09\x37\xe4\xf1\x8a\x97\x7b\xe9\xab\xbf\xda\x40\x09\xf6\x08\xe4\x18\x13\xb4\xba\x73\xb5\x95\xc0\x86\xe9\x2a\x4b\x3d\x99\xe6\x26\x67\x05\x5b\x6f\x40\x08\x79\xc9\xd1\x78\xbc\x30\xf7\x9f\x3b\x1a\x7c\xf8\xde\xdb\xc3\x7b\x50\x5f\x9c\x97\xa3\xda\x6c\x2c\xf5\x1d\x1e\x7a\xe8\x21\x5e\x5f\x3c\x70\x58\x29\x37\x29\x9d\x09\xf4\x6f\xab\xb6\x3e\x94\xd2\x77\x12\x4e\xd2\x89\x38\xdb\x3e\xb2\x98\x9a\x31\x86\x20\x67\x57\x1c\x07\xb7\x9c\xb4\xd9\xa3\xf6\x2c\x2d\x3d\xf3\xa3\x1f\xfd\xc8\x5e\xba\x74\xc9\x5d\xbc\x78\x31\x36\xab\x17\xc0\xb0\xd1\x2a\x5a\xd2\xce\xb9\x1c\x40\xe6\xc8\xe5\x8e\x88\xd6\xe6\xf9\xc6\xe6\x34\xbf\x67\x60\x69\x1c\xbf\x1d\xc4\x99\x8a\x56\xb5\x47\x5c\x99\xc6\xde\x23\xe3\x65\x8a\xef\xf2\xf6\x90\x54\x4b\x75\xe3\xd2\xba\x60\x82\x78\x34\x9e\x9e\xff\x74\x40\xa0\xc2\x2f\xb9\xa3\x7a\x19\x49\xba\x0d\xc3\x53\xbd\x64\x54\xe5\xf7\x66\x14\xa8\xba\x5d\x71\xc3\x38\xdc\xd8\x9b\x14\xd7\xa7\x03\x7b\x62\xc9\x95\xde\xf2\x0e\x5f\xd8\xe6\x96\xb5\x23\x22\x84\x0b\x8a\xb2\x2c\x33\x7e\x13\x97\xac\x77\x6e\xdd\x6a\x69\x9a\x35\xce\xdb\xb1\x8f\x57\x20\x04\xe9\x89\xd1\xbc\x3b\x1a\xdd\xd4\x0c\xd5\x2a\xf1\xdc\xa2\x97\x33\x70\x0d\xb7\x26\xff\x1c\x4e\x76\x36\x39\x73\xd1\xca\x17\xf2\x12\x7b\x6f\xeb\xb4\xda\x0c\x5e\xd2\xe2\x3c\x69\x75\xa1\xb5\x41\x5b\x59\x53\x79\xa4\x1c\xa4\x78\x97\x33\x5e\x59\x0e\x59\x7f\x7c\xf6\xce\xdb\x45\xcb\x6f\x45\xbc\x9c\xa9\x49\x38\x0d\x0f\x14\x38\xad\x3d\x39\x5f\xbc\x7e\xb5\xfc\xb2\x9d\x78\xfe\x54\x1e\x8d\x1f\xb0\x38\x6d\xc6\x2b\xfb\x26\xf7\x94\x48\x3a\xa9\x32\x49\x3c\x52\x66\x53\x78\xa4\x8c\xc8\x7e\x23\xeb\x47\xd6\x79\x08\x5a\x9b\x71\xfa\xdc\x30\xe7\x6d\x2a\xe1\x35\xfd\xd2\x68\x93\x95\x95\x15\xf3\x17\x7f\xf1\x17\xe4\x4f\xa5\x86\x09\x5c\xd8\x52\x10\x8e\x10\x8f\x32\x47\x93\xad\x93\xfc\xec\xd3\xd7\x56\x7f\x7b\xeb\x38\xff\x2d\x03\x1a\xf2\xbd\x2b\x21\xf0\x8f\xe7\x86\xe5\x9c\xe6\xc6\x5d\x9f\xe8\x15\x3f\x6f\x94\x2a\x39\x18\x30\x58\xf2\xa2\x34\x6a\x80\x8d\x45\xe1\xbe\xb0\x9a\x46\x3d\x56\x50\xb5\xb2\x30\x3f\x19\x94\x6f\xbf\xbb\x39\xbf\xea\xf5\x7c\x81\xea\xfb\x75\x56\xea\x7e\x22\x02\xdb\x2a\x20\xdb\x4c\x7a\x4b\x38\x57\xbc\xcd\x78\xfb\x70\x38\x52\xe0\x78\x9f\x06\x96\xe5\x52\xd3\x0b\x60\x30\x1a\x3e\xde\x57\x2c\x50\x6f\xce\x05\x4b\xe0\xef\x9a\x42\x08\x41\x9b\xc9\x74\xcd\x32\x52\x41\x9b\x61\x34\xf2\xf2\xcd\x46\x7e\x4f\x47\x70\x93\xcd\x9d\x73\x73\x22\xf2\x9b\x74\x69\xea\xbd\x2e\x6f\x1f\x8c\x8b\xf7\x2c\xc1\xba\x60\x00\x80\xd5\x12\x7f\x5f\xfa\x5a\xb4\x6b\xc0\x7a\x06\x96\x84\x2e\x1a\x2d\xce\x5b\xe4\x4c\x24\xb8\x91\x14\x3f\x05\xc0\x24\xbe\xb6\xda\x5d\xc3\xd2\x0e\xd6\x77\x6d\x10\x55\x11\x0d\x0d\x43\xc0\x68\x41\x0f\xdf\x7f\x30\xfa\x9d\x47\x77\xc7\x4f\xae\xce\xcd\x06\xf9\xfb\x5d\x50\x6f\xd4\x0d\x9b\x75\xe1\x7f\x0d\x11\xe1\xb9\xe7\x9e\x33\x65\x59\xa6\x2c\x5f\x39\xc3\xd2\xd2\xda\xe4\xa0\xcd\x1b\x23\xe3\xb5\xd9\x60\xea\xb9\xed\x9d\xc3\xa7\xe4\x4d\x96\xab\x0f\xdd\x54\xfe\xbe\x21\x35\xfb\x95\x75\x28\xeb\x44\x9b\x71\x68\xb4\xb5\xd9\x73\x57\x7f\x6d\xab\xe3\x54\x68\xab\xbb\xb6\x3c\xf2\xb7\xad\x6e\x35\x3a\x5a\x59\x52\x65\x68\x2b\x97\xf4\x06\x68\x70\x72\x36\xa9\xf1\xc3\x61\xdb\xda\xaf\x2d\xaf\x0c\x6d\xb2\xad\xcd\x74\xb5\xfa\xd1\x9e\x39\x6f\x5a\x1d\xa6\x64\x83\xe3\x69\xe3\xdd\x8a\x3f\x8e\x1f\xe2\x5d\xf2\x90\xaa\xf7\xd4\xd8\x61\x15\x38\x95\xde\x70\x38\x34\xc7\xc7\xc7\xf6\xeb\x5f\xff\xba\x75\xb5\xb7\x3c\xe8\xbe\xd0\x6e\x39\x11\xe5\x99\xa5\xe1\x99\xe3\xe1\xb9\xd5\x59\xf6\x58\xe6\x68\x25\xdc\x70\x0e\xa0\xf6\xae\xd7\xf3\x4d\x75\x2a\xee\xe2\x7f\x84\x7a\x2f\x8c\x1f\x69\x99\x8b\x9e\x7b\x72\x62\x2c\xbf\x38\x4c\x9a\x7e\x54\xe7\xab\x81\x62\xdc\x70\x54\xd0\xb9\x8d\x59\xf6\xc8\xc0\x62\x25\x94\xc9\x4f\xdc\x8d\x3f\x59\x14\xeb\xc4\x39\x87\xcf\x7d\xee\x73\x52\xbe\x53\xfd\x28\xa5\x9f\x53\xba\xab\x0d\x4e\x83\x49\xb5\xf7\x69\x64\x0e\x40\x73\xa9\xa8\xab\x30\x5a\xa7\xe8\x53\x88\x54\x68\xab\xac\x18\xf7\xfb\xbf\xff\xfb\x61\x87\x34\xbf\x29\x36\xfc\x36\x4e\x17\x01\x98\x02\x98\x16\xc6\x1d\x5f\x5b\x5b\xbc\xf5\xee\xc6\xfc\x17\xb3\xdc\x1e\x00\x10\x56\x08\x9a\xc2\x22\x43\x63\x71\xb1\x09\xce\xb3\xd4\x72\x55\xed\x19\x27\x01\x27\x49\x68\xa4\x34\xd6\x64\x22\x77\x19\x44\x78\x22\xac\x4d\xb3\x8f\x3d\x76\x63\xf2\x7b\x0f\xed\x8d\x9f\x98\x2c\xcc\x1a\x2a\xc3\x85\x2f\x1b\x35\xda\xc8\xbb\x12\xef\x24\xa4\x94\x3f\x0f\x7d\x0d\x80\xff\x48\xe1\xdf\x8b\x9f\xb6\xba\xfa\x20\x3c\x9d\xa6\xff\xfd\x7b\x04\xcd\x40\x48\x85\xd3\xf2\x9f\x92\xed\x94\xf1\xc1\x9f\xbb\x68\x69\x8a\x5f\xe2\x97\xb0\x9a\x81\x93\x1a\xe4\xef\x24\xdc\x8d\xf6\xed\x53\x0f\x6d\xfa\xbf\x0f\x3f\xd2\xf0\x48\x85\x3e\x69\x7d\xf5\x8f\x16\xc2\x4d\xb9\x39\x80\xdc\x38\x8c\xd7\x67\xd9\xf6\xa0\x30\x17\x00\x54\x4e\x93\xa0\xeb\x99\xa2\xf5\x8e\xf7\x60\x9f\xc4\xc0\xb6\x24\xfa\x34\xd7\x98\x5c\xf2\x49\x2d\x98\xa7\x25\xa2\x68\x4c\x4c\x11\x3d\x3a\x3c\xf0\x0b\x4b\x2b\x10\x07\x72\xc8\x87\xa5\x39\xb7\x31\xcd\x1f\xbe\xf7\xf6\x68\xdb\x39\x17\x2e\x24\x0d\xf2\xc6\xff\x00\x00\xff\xf4\x4f\xff\xd4\x57\xee\xba\xda\x38\xc0\x68\xa1\xab\xff\xf5\x8d\xd7\x60\x96\x70\xf7\x29\x48\x97\x92\xed\x33\xb3\xe0\x15\xd9\xa7\xb3\xc4\x0a\xfc\xce\x77\xbe\x13\xad\x67\x66\x49\x72\x2b\x2d\xec\x79\x99\x02\x98\x3a\xe7\xa6\x00\xa6\x07\xe3\x62\xef\xea\xc6\xec\xcd\xbd\x49\xf1\xae\x83\x6b\xd0\x70\x8e\x1b\x1d\x80\x13\x12\xa3\xb9\x0b\xb9\xb3\x95\x1b\x10\x95\x5c\x52\x5c\x26\x6a\x5a\x27\x95\x54\x37\xe1\xfd\x4c\xc0\xd5\x79\xb9\xf4\x86\x0d\x61\x9c\x38\xd5\x8f\x01\x0c\x54\x55\xd0\x78\xeb\x24\xff\xc4\xe3\x37\x26\x9f\xba\xf7\xf6\xf0\xc1\xac\xc4\x18\xcd\xbd\x2e\x0d\xcf\x0b\x2d\xf9\x29\x97\xda\x24\xf5\xdb\x26\xac\x9a\x01\xdb\x26\x57\x9a\x2c\x68\x38\x52\xf1\x7d\xbc\x84\x7d\xf3\xb4\xd1\xef\xe2\x27\x45\xbb\x8d\x1f\x49\xaf\x6d\xf6\xde\x95\xd6\x07\xbe\xab\x7f\xf7\x29\x43\x1f\x7e\xda\x78\xec\xc2\xd3\xc5\x57\xd7\x80\xca\x9f\x03\x6e\x8b\xe5\xfa\x95\xc6\xb7\x4c\x6b\x53\xbc\x9a\x17\xa4\x53\x77\xb5\xc0\xb6\x4d\x02\x65\x19\xd0\x03\x36\x55\x86\xb6\x89\xa8\xc6\x93\xa4\x21\xeb\xaa\xcb\x60\xe3\xf0\x6d\x06\x8b\xc4\x27\xdb\xaa\xcb\x08\xe2\x79\x23\xec\x7c\x3e\x17\x7a\xde\x85\xc9\x9a\x09\xbf\x61\xaf\x8b\x71\x34\x5e\x9b\x65\xe7\x87\x16\xdb\x01\x7e\x59\xef\x33\xaf\x09\x4f\x10\x33\xd4\xe8\x6b\x51\x66\xa6\x4b\xc6\x08\xd3\xe1\x8d\x65\x25\x12\xbf\x1e\xa6\x99\x54\xed\x7d\x34\x96\x86\x93\x45\x76\xcf\xe6\x49\x7e\xce\x6f\x34\x36\xc1\xe3\x12\x3e\x22\xe9\xcb\x0e\x60\x69\xbf\x4f\x97\x2e\xe7\x21\xd5\xef\x4e\x23\x0f\x29\xf8\x36\xbc\x9d\xfd\xb2\xed\x23\x8b\x5a\x7c\x6a\x7d\x32\xb5\xb6\x19\xe2\xe4\x5f\x48\xb3\x4a\x3e\x23\xe0\xf0\xe2\x8b\x2f\x3a\x7f\xfb\xa1\x5c\xef\x0c\xbf\x59\xf8\x25\xa2\x1c\xd5\xe9\x22\x03\x50\x36\x29\xb2\xd5\xed\x93\xfc\xbe\x81\x35\xa3\xc0\x74\xdc\xe4\x1d\x10\x88\x85\xc9\xa5\x85\x55\xf2\xb1\x62\x0d\x33\x1e\x2a\x42\x70\x16\x52\xf3\xd2\x5b\xa0\x71\x85\x73\x38\xda\xec\xd8\xd2\x54\xb0\xe4\xeb\x25\x25\x6a\xe4\x01\x5b\xc2\x92\x96\x3f\x81\x60\x1c\x56\x06\xa5\x19\x3b\x72\x7b\x47\xa3\xf2\xfa\xf1\xd0\x4e\x41\x51\xd9\x3a\xf6\x1b\x8a\xc6\xbf\x65\x24\xdb\x52\xfe\x36\xbc\x9b\x68\xae\x4b\x72\xc7\xa6\x14\xc8\x94\x73\x29\xf2\xa0\xd0\xd3\xf2\x68\xf1\x92\x1f\x0d\xbe\x6f\x9e\x36\xfa\x5d\xfc\xa4\x68\xb7\xf1\x23\xe9\x85\xbf\x25\x99\x4f\xbc\x6b\x7c\xb7\xc1\xcb\x3e\xaa\x95\xa7\xab\x0c\x7d\xf8\x69\xe3\x91\x87\x20\x2b\x29\x1a\xbc\x1e\xb4\x67\x49\x8b\xc3\x48\xdc\xb2\xee\xb5\x35\x7b\x99\x8f\xd3\xd1\x9e\x53\xf0\x92\x3f\x0e\x0b\x2c\xeb\x39\xa9\xc4\xa5\x8c\x70\x1e\x89\xe5\x4f\x95\x91\xc7\xb7\xf5\xbd\x90\x87\xe3\xec\x6a\xa7\x2e\x63\x42\x83\xe7\xc6\x0b\xa0\x97\x3d\xd5\x7e\x1a\x7c\x5b\xde\x98\x3e\x1c\x0e\x4d\x59\x96\xee\xb9\xe7\x9e\x33\x00\x40\x44\x19\x55\x67\x83\x8d\x3f\x02\x3d\x70\xce\x8d\x0c\x68\xbc\x3a\xcf\xce\x3c\x7a\x6b\xf2\x1b\xe7\x8e\x06\x9f\x30\xfe\xc2\xb9\xe6\x81\xe7\x30\xd1\xab\x3f\x96\xcb\x1b\x54\xbb\x22\xa3\x3e\xe4\xe1\x27\xa4\xd4\x1c\x23\x80\xfa\x39\x8c\x41\x71\x9f\x24\x6f\x85\x98\x6f\xc9\x94\xaa\x2e\xb7\x23\xd8\x45\xee\xf6\xf7\x26\xc5\xcf\xdf\xdd\x9c\x5f\x05\x30\x63\x5b\x27\xc2\x56\x8a\xf8\xe1\xdd\x17\x5e\x78\xc1\xd6\x98\x3b\xeb\xb5\x0d\x26\xa5\xb7\xda\xf0\xdd\x29\x7c\x8a\xa7\x98\x41\xbe\xa7\xdc\x33\xda\xcc\x23\xc4\xa7\x66\x04\x6d\xa1\x8f\x55\x6d\x80\xea\x43\x59\x4a\x1e\xcd\xeb\x12\x4f\x17\x39\x60\x7a\x38\x2a\x6f\xbd\xb7\x3e\x7f\x7b\x77\x52\x5c\xb1\xde\xeb\xb2\x54\x03\x3e\xb2\xf2\xaa\xb8\xf0\xca\x93\x20\x23\x6b\x37\x21\x87\x6f\x0a\x59\x40\xd7\xa4\xe7\xe1\xa9\xf6\xce\x68\xcb\x44\x92\x3e\xd7\x52\x4b\xf0\x8e\xcc\x64\x61\x3e\xf4\xc0\xfe\xe8\xd3\x0f\xed\x8d\x9f\x5e\x9d\x65\x1b\xf0\xdf\xb3\x40\xcb\xb7\x8c\x42\xe7\xee\x08\xa9\xf6\xfe\x8f\xbe\x24\xf1\xcb\x08\xa9\xfa\xd2\xfa\x50\xf8\xed\x53\xc7\xc0\x2f\xbf\x0e\xff\x3d\xdb\xa8\x6f\xbd\xb5\x85\xd4\x32\xcf\x69\x68\x9e\xb6\x0e\x4e\xbb\x9c\xa5\x79\x47\x52\x78\xfa\xb8\xdb\xef\xc6\x12\xa2\xd4\xcb\x7d\x61\x65\xe8\xf2\x78\xdd\x0d\xf9\xfa\xc0\x38\x84\xc7\x25\xe5\x95\xca\xc9\x61\x38\x28\x69\x3c\xac\xee\xc4\x1a\x57\x49\xda\x66\x80\x2a\x9e\x54\x0d\xcf\x21\xaa\x2c\xc1\xc0\xa9\xad\x12\x66\xb4\x30\xcf\x79\xc3\x83\xce\xd7\x90\xea\x1b\x53\x85\xa7\xc6\x79\x78\x0a\xa8\x4d\x66\xb1\x32\x2c\xcc\x46\x58\xfa\x42\xed\x4d\x92\xe5\x4f\xe9\xfa\xd3\x2e\xe1\x74\x2d\x37\x9d\x46\xa6\x4f\xab\x13\x96\x70\xa7\x2e\xa0\x93\xcf\x32\x68\xb3\x1f\x62\xbf\x96\xc5\x77\xcd\x62\x34\x5b\xa2\x31\x5b\xba\x7c\xf9\xb2\xbb\x74\xe9\x52\x38\x97\x4f\xec\xb3\xde\xa1\x79\x83\x2b\x90\x50\x37\x62\x66\xc9\x19\x90\xa3\xc9\x22\x5b\xd9\x3e\xce\x2f\x0c\xac\x19\x03\x4d\x46\x6b\x63\xc0\x79\xcf\x47\x74\xa1\x34\xd3\xc3\xf7\xc6\xc3\x7b\x80\x85\xb7\x9a\x7d\x62\xb0\xc4\xc3\x69\x20\xf5\x56\x44\x2f\xcd\x51\x66\x15\x8b\x24\xdc\x0f\xb0\xc4\x47\x80\x87\x8b\xc7\xa7\x09\x18\xe6\xd6\xac\x64\x8e\x8a\xe9\xc0\x5e\xdb\x1b\x2f\xf6\x9c\x41\xc9\x76\x98\x4b\xef\x0b\x01\xd5\x67\xd0\x9f\x7c\xf2\x49\x32\xc6\xd0\xfb\xef\xbf\xdf\xd6\xde\xc4\xfe\x52\x70\xd2\x23\x67\x44\x1e\x99\x1e\x60\xa4\x3c\x68\xbf\x5d\xb3\x80\x14\x3f\x1a\xee\x3e\x3c\x68\xcf\x6d\xca\x5b\x83\x73\x58\xae\x8b\x2e\xbe\xb5\x3a\xd3\xea\xb3\xab\x1d\x52\x74\xfa\xd4\x69\x8a\xa7\xb6\xbe\xac\xd1\x0e\xef\xdc\x5b\x00\x96\x2e\x71\x6a\x93\x26\x29\x3b\x24\xe2\x9d\x02\xcf\xe9\xa4\xca\xc9\xd3\xda\xf6\x4f\x70\xbe\x89\xc1\x6b\x1e\x16\xc9\x9f\x86\xbb\xad\x8f\x48\xcf\x8a\x56\x16\x39\x30\x6b\x75\x22\xeb\x53\x2b\x43\x78\xe6\x65\x91\x32\x2c\xdb\x4c\xf6\xcb\x54\xdf\x02\xd2\xed\x04\x2c\xd7\xbd\x26\xd7\x92\x8e\xd6\x56\x9c\x8e\x5b\x59\x59\x31\x8b\xc5\xc2\x3d\xfb\xec\xb3\xc6\xdf\x7f\x15\x4f\x9e\xa2\x9e\xbc\x0d\x89\x68\x64\x1c\xc6\xab\xf3\xec\xec\x43\xbb\xe3\xa7\xcf\x4c\x07\x4f\x03\x64\xea\x13\x9f\x4e\xf5\x76\x34\xaf\xfc\x6f\x3e\x57\xb6\x0a\x3b\x55\x1a\x32\x11\x83\x15\xf7\x80\xf1\x13\xa9\x11\xbe\xe1\x6a\xe7\x30\xd4\x80\x77\x80\x2b\x8c\x3b\xda\x5f\x29\x5e\x7b\x7b\x7b\xf6\x86\x83\x9b\xa3\xda\xeb\xb9\x70\xce\x95\xbe\x9e\xc2\xad\xc1\x00\xe0\x1e\x7c\xf0\x41\x7a\xf5\xd5\x57\xb5\xb6\x94\xb2\xc1\xe5\x48\x83\xe7\xb0\x56\xc1\x25\xdb\x0c\x0a\x5e\x0b\xbd\xbd\x39\x2c\x04\x9e\x06\x0e\x6d\x56\xd8\x77\x26\xa4\xc1\x69\xca\x27\x35\x3b\xe7\x6b\x94\x9a\xa5\xa8\xce\x60\xbc\x1b\x8c\xe3\xb0\xf0\x77\xba\xf8\xbf\x29\x11\x55\xfb\x5d\x08\xd3\xc3\x61\xb9\x77\x75\x63\xf6\xe6\xad\x95\xe2\x6d\x4b\x95\xd7\xa5\x61\x04\x84\x5f\x62\x26\x86\xf8\x8a\xb3\x93\xdd\x6e\xd9\x12\x89\x79\xe2\x17\xa4\x83\x20\x3b\x34\xaf\xf1\xa7\x3a\x4b\x44\x19\x3b\x41\xbd\x2e\x19\x0c\xa1\x06\x1f\x70\x0c\xbe\xbe\x57\x80\x40\x18\x94\x74\xee\xec\xd1\xe0\xe2\x87\x6e\x8d\xff\xf3\xbd\xb7\x87\x17\x00\x8c\xc3\x45\x4b\x50\x36\xeb\x86\xb5\xd0\x8d\x8d\x0d\xfc\xe4\x27\x3f\xe9\x3b\xbb\xd4\x14\x7b\x5b\x7a\x97\x77\x26\x25\x0f\xf2\xb7\x4b\x86\x52\xfc\x6a\xb8\x4f\x23\x9f\x46\x79\xbe\x53\xef\x53\x1f\x38\xee\x45\xd4\xf2\xc8\xf4\x14\x8e\xd0\xce\x7d\xea\xbb\x8d\x1f\x99\xde\x95\x47\xa3\x17\xf8\x48\xf1\xad\xe9\x81\xb6\xf2\xf3\x78\x23\xd2\xda\xea\x4f\xe6\xd3\xda\x4e\xf3\x96\x48\xd9\x49\x19\x38\x92\x6f\x4d\x7e\xb4\x78\x0d\x77\x4a\xf6\xbb\xf8\x93\xbf\x6d\xf8\x64\x59\x34\x59\xd7\xea\x27\x55\xa7\x6d\xf5\x2f\xf5\x7b\x5b\x79\xbb\xe0\x35\x5a\xe6\xf8\xf8\xd8\x02\x40\x58\x16\xe1\x03\x3d\x00\x90\xbf\x16\x3f\xe0\x24\x90\xa1\x4a\x27\x86\x74\x44\xcd\x4b\xf5\x29\xce\x78\xf8\x87\xe2\xa5\xfd\xcd\xab\x2b\xb8\x95\x82\x6a\x18\xa8\xc7\x0b\xd7\xb8\x72\x83\xdb\x2f\x15\x0d\x27\x06\x97\x3a\x38\x4f\x88\x9d\x8e\xe2\xc9\x15\xff\xd5\xfd\x5d\xf1\xeb\xd0\xe1\x4b\xd1\x0a\x3c\xfe\xfe\xef\xff\x3e\xd5\xf6\x5a\xfb\x41\x79\x36\x4a\x5a\x2a\xae\x4b\xee\x64\x90\x72\xd5\xa5\xf7\xac\x66\xc5\x6b\x48\xb9\x81\xa3\x09\x35\x27\xd2\xa5\xec\x25\x6e\x8d\x51\x15\xfe\xf2\xe5\xcb\x50\x8c\x16\x0b\x76\x29\x1d\xf8\x85\x74\x84\xe9\x3c\x73\x87\x37\x56\x17\x57\xdf\xd9\x9c\xbd\x76\x92\xdb\x3d\xc0\xdb\x18\x42\x5e\x1c\x6a\x19\x92\xc9\xd5\xbd\x2c\xe1\xc5\xa7\x31\x80\xca\xb8\xa1\xc6\x7b\x74\x2f\x52\x53\x88\x1c\x42\xa7\xf0\xff\x33\x9a\xa8\x2d\xe4\x4a\x60\x5d\xe0\x8b\x19\x33\x8c\x08\x37\x41\x09\x94\x4f\x16\xe6\xe1\xfb\x0e\x86\x9f\x7e\xfc\xe6\xe4\xe2\x99\xe3\x7c\x1b\xf5\x92\x51\xca\x78\x01\x00\x7c\xf1\x8b\x5f\xd4\x0c\xc7\x3e\xa1\x6b\x00\xed\x0b\x9b\x0a\xa7\xe1\xe5\xb4\xa1\x4b\xee\x25\x4c\x5b\xc7\x3b\x0d\xad\x5f\x45\x48\x19\x09\x6d\x7d\xf7\x83\xc0\xca\x3c\xa7\x09\x7d\xea\xfe\xb4\x78\xa4\x71\xa9\x4d\xd0\xba\x68\xf6\xe1\x4b\xd2\xb9\x9b\xe1\x34\xfd\xe7\xb4\x7c\x6b\x71\x7d\xe8\xa5\x78\xb8\x1b\xfd\xf4\xb4\xfa\xa2\xb5\xee\xbd\x1e\x95\x63\x57\x15\xe7\xf8\x09\x9c\xea\xa4\x25\x37\x54\xb8\x7e\xae\x8d\x14\xaa\x3e\x1d\xd3\xb8\x50\x8e\x5f\x45\x17\xe0\x1c\xf3\xa9\xd5\x1e\x15\xa7\x18\x28\x14\x8d\x24\x3e\x21\xf5\x46\x17\x37\x58\xe4\x65\x74\xbe\x1c\x1e\x5e\x2f\xa3\x1e\xb4\x3a\xeb\x63\x03\xf0\x90\x92\x99\x3e\xfa\xa2\x6b\xa2\xcb\xf3\xa7\x26\x07\x8d\x17\xcd\x4a\x92\x04\x52\x16\x37\x44\x7c\x6a\x46\xa1\x79\x76\x52\xcc\x69\xf4\xcc\x9b\x6f\xbe\x19\xbc\x12\xfc\xa4\x91\x05\x60\x9d\x73\xd1\x78\x71\xce\xc5\xe3\xd1\x96\xdc\xf4\x68\x54\xee\x5d\xd9\x9a\xbe\x79\x63\x75\xf1\x66\x49\xce\xf2\x63\x66\xb5\xd7\xa2\xe9\x05\x69\x08\x1b\x93\xc5\x70\xec\x99\x3b\x5e\x02\x89\xa1\x00\x00\x20\x00\x49\x44\x41\x54\x7c\xc3\xf5\xfe\x52\x34\x97\x64\x35\x7c\xab\xa2\x72\xc9\x54\x51\xc1\x02\xaf\x93\x25\x13\x88\xde\x15\xe9\xfa\x89\xde\x9c\xea\x24\x92\x71\xb4\xb2\x3e\xcb\x9e\x7c\x68\x77\xfc\xdb\x8f\xdf\x98\x3c\x3d\x99\xd7\x47\xa4\x9d\x73\x79\xf8\x03\x1a\x5f\xd8\xc6\xd6\xd6\x16\xa7\xda\x26\x8c\xad\xde\x30\x11\x34\x98\xbe\xf0\x29\x2f\x60\x5b\x07\xbd\x53\xdc\x80\x3e\xd3\xd3\xf2\xb5\x29\x84\x2e\xaf\x61\x2a\xbf\x06\xd3\x16\xa7\xe1\xeb\x53\x3f\x29\xba\x1a\x5c\x5b\x1d\xb7\xe5\x6b\x53\x36\x29\x99\x91\x86\x85\xf6\x2c\x67\x72\x92\x46\x4a\xd6\x78\x9a\x66\xc0\xb4\xd5\x77\x8a\xbe\x8c\x97\xbc\x48\x9e\x52\xa1\xab\x00\x24\x40\xdb\xbf\xcc\xa9\xf4\x10\x6c\x02\x4e\xe3\x45\xe2\x95\xfa\x38\x95\xaf\xeb\x39\xbc\x4b\x5e\x52\xe3\x04\x0f\x29\x79\xe8\x2a\xb3\x84\x35\x00\xcc\xe6\xe6\xa6\x01\xea\xfd\x1c\xc1\x7b\x1d\x3c\x2f\xce\x39\x13\xfe\x40\xce\x38\xc0\x58\x02\xf8\xfd\x2b\x14\x15\xbd\x8b\xaa\xb7\xf6\x95\xc3\x2f\x09\x35\xbf\x29\x17\xc7\x21\xf8\xb1\x81\xdf\x07\x16\x27\x9e\xa8\xbc\x27\x60\x06\x88\xbc\x51\x37\xd0\xf0\x78\x1b\xae\x7e\x6f\xbc\x44\x60\x82\xb5\xe4\x8a\xd2\xb8\xc2\xf1\x31\xab\xbe\xb3\xa6\x51\x7e\x00\xf8\xd2\x97\xbe\xc4\xdb\xa4\x6f\x3f\xe0\xcf\xa9\x3e\x70\x1a\xd9\xe8\xea\xeb\x10\x79\xb5\x78\x00\xcd\x0b\xe8\xb4\x01\xab\xaf\xe2\x93\xa1\x8f\xb5\xae\x0d\x16\x6d\x30\xf6\xa7\x3f\xfd\xa9\x7d\xe1\x85\x17\xf8\xda\x9d\xbc\xdb\x85\xdf\xeb\x32\xf5\x17\xd3\x4d\x0b\xe3\x8e\x6f\xae\x16\x57\xaf\x6c\xcd\x7e\x7e\x32\xb0\xb7\x00\x34\x56\xd1\x48\x1a\x18\xd1\x5b\x52\xdb\xd3\x8d\x4b\x89\x84\xa4\xb1\x5b\x0d\x63\x70\xde\x4d\x58\x1b\x17\xc1\xc2\x46\x74\x95\x70\xcb\x3e\x3c\x35\x84\x37\xe0\x0e\xab\x46\x72\x7d\x89\xaf\x6c\x79\x41\xcf\x2c\x6d\x6c\x4d\xf3\x8f\x3e\x7a\x6b\xf2\x5f\x1e\xde\x1d\x7f\x28\x2f\x69\x05\xd5\xda\xee\x90\x88\xe2\xe5\x74\x61\xa9\x28\xb8\x19\x7b\x6e\xe0\x3a\x8d\xd7\x41\x83\xed\xe3\x85\xd3\xdc\x8a\x9a\xcb\x91\xc7\xa7\x14\xa5\x11\x70\x32\x8f\x46\x5b\xca\x63\xc0\xcd\x69\x77\xd5\x55\x8a\xef\x36\x99\x57\x5d\xa2\x22\x2d\xe4\xed\x03\x27\x79\xd2\x78\xd4\xea\x47\xe2\x91\x79\x52\x38\xb4\x20\xf1\x18\xb4\xe3\xd5\xca\x25\xe1\xb9\xfc\x68\xf0\x32\x5e\x4e\x82\xb4\x7a\x4c\xf1\xdd\xc6\x8b\x66\x4c\xa5\x60\xb4\xd0\x85\x3b\x15\x17\x82\xa4\xab\x95\x47\xf2\x20\xeb\x42\x1a\x75\x5d\xf4\x0d\x74\x9c\xa9\x3a\x48\x95\x5b\x2b\x53\x8a\xbe\x2c\xb3\x2c\x9b\x05\x80\xfd\xfd\x7d\xfb\xec\xb3\xcf\x9a\xe7\x9f\x7f\xde\x02\x4d\xfd\x19\x7e\xc3\x9f\x03\xb0\xc8\x6c\xb1\xc8\xec\xd4\xc1\x15\xdc\x3c\x21\x84\x65\x1c\xa6\x77\x7d\xe0\x9e\xf8\xa6\x9e\xf6\xf9\x1c\xbb\x12\xc3\xcf\x44\xc3\x84\x38\x40\x2d\xe9\x77\x27\x3d\xf2\xd1\xd7\x23\x96\x7b\xc8\xff\x23\x38\xc0\x16\x99\x9b\x4e\x73\x3b\xc5\xb2\xf1\x10\xf0\x1b\x36\x4e\xe2\x9b\xdf\xfc\x66\x57\x3f\xee\xd2\x35\x52\xbe\xda\x64\x56\xca\x25\x3a\x70\x68\x32\xa3\xe9\xb6\x98\xd6\xd6\xa9\x24\xb0\xf6\xde\x15\xaf\x85\x3e\x56\xb4\x7c\x8e\x30\x1f\xfa\xd0\x87\x64\x5c\x28\x34\x5f\x2a\x2a\x00\xcc\xa3\x01\x43\x98\x4e\x07\xe5\xc1\xe5\xad\xe9\x2f\x6e\xac\xce\xdf\xac\xbe\x61\x14\x36\x61\x61\xc9\x5b\xb2\xbc\x85\xc5\x31\xe3\xa1\x86\xd0\xdd\x7f\xae\xbe\x49\xd7\x7b\x62\x1a\x97\x11\xc5\x10\x3e\x06\x10\x6f\x80\x59\xbe\x0e\x9a\x43\x37\x76\xa5\x3b\xc6\x23\xa1\x3e\xa6\x4d\x20\x90\xa9\xf6\xbb\xe4\x9f\xf8\xf5\x6b\x2b\xbf\x7d\xee\x70\x70\x0f\x1c\xc6\x70\x8d\x25\xa3\xf8\x89\x77\x8f\xbb\x31\x5b\x11\xe1\xb4\x06\x6a\x57\x38\xad\x6c\x9d\x06\x67\x57\xbc\xec\xac\x40\xb7\x3c\xa6\x06\x36\xf9\x7e\xa7\x46\x7e\x57\xb8\xd3\x7a\xd2\x66\xac\x92\x97\x0f\x52\xe7\x29\xa3\xa7\x8d\x9e\x8c\xeb\x33\x41\x92\xb4\xa4\xfc\xc8\xd9\x9c\x6c\xd7\x94\x91\x29\x65\x41\x33\x6c\xba\x78\xd2\xca\x2e\x79\xd0\xf8\xd2\x68\x4b\x1c\x5d\xb4\x65\x7e\xcd\x00\xe0\x30\x9a\x9e\xd5\xfa\x43\x1f\x9a\x1a\xfe\x3e\x38\x52\x38\xa5\x21\xd5\xa7\xbf\x2c\xc9\x31\x3b\xf6\xcb\x3d\x2d\xf1\x3d\xfc\x5a\x02\x66\xb9\x2b\x8e\x87\xf6\xb0\x34\x6e\x0a\x2c\x7b\xcb\x97\x36\xb9\x20\xd8\x22\xb5\xd7\x24\x2e\xe1\xb0\x5b\x70\xeb\xbd\x88\xc1\x53\xce\x26\xa6\xdc\x43\xef\x71\x35\xc6\x1e\x57\xd3\x68\xb0\xe1\x5c\x63\x6c\xb0\xe4\x8a\x69\x6e\x0f\x0e\xc6\xc5\x7e\x83\x65\x9e\x4f\x19\x9b\xbc\xd7\x25\x04\x4d\xe6\xba\x64\x86\xe7\xd3\x8c\xde\x14\xce\x3b\x91\x8b\x14\xaf\x46\x12\xd7\x98\x6b\x0b\xa7\x51\xa0\xfc\x39\xa5\xe4\x53\xd6\x7f\x23\x14\x45\x81\x60\x55\x33\x57\x58\xb4\xda\xfc\x92\xd1\xdc\x2f\x17\x4d\xe1\x97\x8c\x4a\xc2\xf1\xcd\xd5\xc5\xfb\x97\xcf\x4c\x5f\x39\x1a\x96\xb7\x1c\x60\xc3\xe8\xef\x1a\x86\x40\xf0\xca\xa5\x4c\x99\xda\x0b\xd3\xb0\x94\xf9\x9e\x17\x92\x0f\x01\x1e\xf5\xf2\x12\x88\xad\x91\x36\x3b\x4e\xc3\xc3\x13\xd3\x42\x27\x14\xde\x1e\xce\x55\x8d\x2c\x1f\x16\xe6\xfe\x7b\x6e\x0f\x7f\xf7\x37\xae\xae\x7d\x72\x5c\x34\x6f\xd5\x0d\x47\xe8\xbc\xf7\x25\x6e\xec\x02\x96\x8c\x17\x4d\x39\xb7\xb9\x05\x21\xd2\x34\x81\xd6\x9e\xdb\xe0\x34\x3c\x6d\x71\x29\x98\x54\x5a\x6a\x46\x77\x5a\xda\x1a\x0e\x39\xa8\x82\xbd\x4b\xf8\x3e\x83\x55\x8a\x5e\x1f\x1c\x92\x97\x54\xfb\xb5\xe1\xd3\x06\x4c\x8d\x1f\xfe\xac\xf5\x77\x6d\x96\xae\xf1\x01\x91\x9e\xa2\xa3\x19\x33\x32\x68\xe5\x4e\xb5\x77\x8a\x6f\xad\x0d\x53\x6d\x9b\x6a\x67\x0d\x5f\x17\x4e\xad\x2c\x29\xe3\x47\xf2\xdd\x55\x67\x3c\x4d\x93\x89\x94\x61\x04\x05\x9e\xa7\xb7\xb5\x9f\xac\x63\x59\x6e\xde\x56\x3c\x5f\xa7\x91\xf7\xec\xb3\xcf\x86\xef\x13\x35\x80\xb8\xe7\xc5\xc1\xd9\xd2\xb8\xe2\x78\x50\x1e\x2c\x8c\x3d\x06\x1a\x2b\xff\x88\xef\xfc\xf8\x50\x48\x27\x8a\x86\x85\xf3\x0a\xbd\xb1\x2f\x31\xd2\x0a\x4b\x50\x7c\xbc\x90\xe3\x06\xb1\xff\x19\x13\x6c\x73\x70\xf0\xb4\xd7\x4b\x52\x0e\xa5\xc1\xfc\x70\x54\xde\xb8\xb5\x52\xec\xa1\x1a\xf3\x2c\x50\xaf\x3e\x78\x1e\xac\x34\x5e\x98\xd7\x45\xd3\x49\x3c\x68\x7a\xb3\xcd\x88\xe9\xd3\x17\x38\x5c\x8a\x56\x97\x01\x1c\xf9\xee\xa3\x2c\xb5\x5f\x0d\x26\x05\x97\x9a\xd9\x48\xc1\x6c\x1b\x20\x63\xdc\x95\x2b\x57\xa2\xd1\xe2\x2f\xd9\xe1\xae\xa6\xf0\x89\x6f\xf9\x19\x80\x63\x10\xa6\x45\xe6\x8e\xdf\x3a\x33\x7d\xfd\xc6\xea\xe2\x17\x45\xe6\xe6\xcc\x29\xd7\xb0\x7a\x99\x4b\x4e\x0d\xf5\xde\x97\xda\x8a\x27\x72\xcd\x1b\x79\x3d\xb2\xb8\x1c\xe4\x9a\x31\x70\x95\xe0\xf3\x3d\x36\xce\xfb\x19\x2b\x61\x75\xc2\x46\x61\x47\xe3\x38\x9e\x60\xdf\x3b\x86\xbd\xe2\x7f\x38\x5e\x98\xc7\x1e\xdc\x1b\xfd\xf1\xc5\x2b\xeb\x1f\xc9\x2d\x85\xaf\x48\x0f\x83\xc1\xc2\xbf\x26\xaa\xdc\xaa\x0b\xe8\xca\xaa\xcf\x2c\x8d\xb7\x49\x0a\x27\x7f\x96\x0a\x4c\xa6\x49\x81\xb6\x4a\x1e\x49\x53\x7b\xd6\xd2\x52\xbc\x19\xb4\xd3\xd6\xf8\xd6\xca\xa0\xe5\xd7\x68\xf6\x31\x66\xb4\x01\x5a\xe3\x47\xd2\xd6\xf2\x6b\x83\x5f\x1b\x4f\x5a\x38\x4d\xfb\xa6\xe0\x8c\xf8\x6b\x33\x42\xb4\x01\x3a\xa5\x4b\x64\xba\xe4\xa7\x2d\xad\x4d\x11\xa7\x06\x71\x09\xaf\x95\x57\xa3\x29\xf9\x6d\x83\x4f\x19\x5d\x29\x19\x4c\xf5\x29\x8d\xf7\x90\x9e\x6a\x2b\x29\x6b\x29\xbe\x53\x21\xd5\x3e\x1a\x3f\x1a\x4c\xdb\xe0\x07\xa0\x32\x5a\xc2\x56\x02\x79\x1a\x87\xef\xf7\x00\x00\x4b\xce\x1e\x8e\xec\xed\x79\xee\x0e\x1a\x48\x1a\x13\x50\x36\xad\x74\xdc\xc0\x08\xbe\x72\xa0\x31\xa9\x65\xc7\x8d\xb8\xc3\x26\xdc\x86\x1e\xf5\x7c\xa0\xc3\xbc\x2d\x91\x2c\xb1\xf1\x21\xee\x83\x71\xdc\x00\xb2\xf3\xcc\x1e\x1e\x8c\xca\x1b\xfb\x93\xe2\x30\x5c\x36\x17\xca\xc8\x7f\x79\x3d\x7c\xe1\x0b\x5f\x48\x19\x08\x29\x9d\xc2\xdb\xa0\x2d\xad\xcb\x18\xed\x32\xe0\x53\x72\xd0\xa6\x33\x3a\x97\x8a\x34\xc2\x3c\xbe\x6d\xc6\xa0\x05\xad\xd2\x52\xf8\x25\x0f\x0d\x38\xee\x16\x14\xf8\xe4\x09\xa3\x69\xf8\x73\x84\xe3\x1b\x6b\xc5\xb5\x37\xb7\x4f\x5e\x39\x18\x95\xd7\x2c\xa1\x08\xa3\x7e\xc3\xea\x5d\x7e\x6c\xc6\xf9\x3d\x2d\xf1\x53\x01\xd1\x92\xae\x2d\xec\x00\x1b\x97\x83\xa4\xb5\x4d\xcc\x20\x69\xb8\x4f\xea\x65\x9f\x80\x57\x7a\x77\x1a\x3b\x6a\xc2\xfe\x1a\x6a\x60\x02\xc1\xc1\x80\x86\x2b\xf3\xec\x63\x4f\xdc\x98\xfc\xb7\xff\xf4\xfe\xca\x13\xc3\x92\xd6\xc0\x4e\x1a\x51\xf3\x63\x8c\xda\xec\x49\x86\xb6\x19\x5b\xdb\x20\xd7\x35\x00\xf6\x85\xb9\x1b\x79\xee\x36\xee\x2e\x63\xe8\x83\xd0\x4e\x0d\x3a\xa7\x8d\x6b\x8b\x3f\x0d\xdc\x07\xc5\x9d\xca\xab\x19\x52\x3c\xbd\xcb\x70\x96\x71\x9a\x31\x22\xd3\x4f\x53\x77\x29\xf8\x3e\xf9\x4e\x43\x53\xd3\xbb\x5d\x03\x4d\xdf\x70\x1a\x23\x4b\x83\xe9\x6b\xa0\xa4\x68\xa7\xda\x58\x96\x27\xa5\xd7\xef\x84\x7e\xc4\x19\x26\xb9\x61\xa0\x2f\xc9\x15\xb7\xc7\xc5\xc1\xc9\xd0\x5e\x03\xa0\x6c\x5e\xe1\x68\xea\x1b\xd1\x03\xac\x73\xd4\x30\x44\x1a\x1e\x7a\xb1\x37\x26\xde\xf1\xc5\x51\x8b\xc1\x25\xee\xb3\xe4\x87\x36\x62\x9e\x30\x16\x38\x58\x42\x71\x32\xb0\x7b\xfb\xe3\xc5\xb5\x45\xe6\xe6\x60\xf5\x23\x26\xf1\x8d\x3a\xf0\xc7\xa1\xfb\x8c\xf7\x3c\xae\xef\xc4\x29\x95\x2e\x9f\xdb\xfa\xc0\xa9\xe4\x5a\xbb\xf2\x9f\x87\x30\x6e\x1a\xf6\x2c\xd3\x42\x3a\x2f\x0c\xf7\xbc\x19\x05\x06\x2c\x4d\x63\x34\x45\xa7\x11\xfc\x85\x74\x00\xaa\x4b\xe9\x00\x10\x85\x1b\x77\xaa\xcd\xa7\x84\xca\xb3\x90\x11\x51\xe6\xcb\x3b\x98\x0d\xdc\x62\xeb\x24\xdf\x58\x9f\x65\xf7\xe4\x96\x46\xc1\x52\x96\x32\xcb\x3d\x21\x5c\xd8\xe4\xc2\x51\xb8\xaa\x3f\x64\x8a\xd7\xfe\xb3\x0b\xe4\xe0\x82\x71\xd1\xbc\x94\x8e\x5c\xd3\x95\xc8\xf1\x06\x84\xf2\xbb\xd5\xfc\x72\x3b\x9e\x40\x0d\xfe\xe2\xff\xd9\xb0\xa4\xf3\x2b\x8b\xcc\x9e\x0c\xed\xd5\xa3\x51\x79\x54\x1a\x58\x8f\x8a\xd7\x7d\x78\x77\x3b\x3b\x3b\xc4\x3e\x0b\x10\xd2\x0c\x7b\x06\x9a\xed\xca\x7f\xa1\x3c\x93\x02\xc3\x43\x4a\x66\xd0\xf1\xae\xd1\xd4\xd2\x52\xa1\x8d\xee\x9d\xe0\x4e\xe5\x97\x38\xa4\x67\xba\x4f\x1d\xa5\xe8\x68\xf1\xda\x6f\x6d\x47\xb7\xf3\x97\xc2\xd5\xc5\x43\x57\x7d\x11\x6a\x65\x48\x48\xd7\x85\x86\x9b\x12\x7f\x9c\x06\xc7\x23\xcb\x1a\x70\x12\x83\x25\x91\x4f\x6b\x9f\xa0\x9f\xf8\x3b\x44\x9a\x06\x2f\x07\x7b\x59\xf6\xb6\x7a\x90\x30\x9c\x5e\xaa\x7e\x79\x9d\x00\x7a\x39\xa5\x4e\x35\x0c\x96\xc4\xb3\x96\x4f\x96\x37\x95\x37\x3c\xf7\x29\x6f\x5b\xbc\x2c\x67\x0a\x27\x00\xd0\xe6\xe6\x26\xfd\xe0\x07\x3f\xb0\xfc\x02\x3a\x54\xe3\x02\xa1\xd2\xfb\xb9\x1f\x03\x06\x00\x86\x20\xca\x0b\xe3\x86\xdb\xc7\x83\xb3\xdb\x27\x83\x47\x8d\xc3\x70\xf9\xaa\xd0\xb4\xb0\xd4\x07\x7f\xc2\x49\x22\xaa\x01\x58\x45\x00\xa8\x27\xad\x00\xc4\xea\x53\x0d\xa7\x18\x4c\x4b\x17\xda\x81\xb0\xc8\xdd\xd1\xf5\xb5\xf9\xab\xbf\x38\x77\xf2\xa3\x83\x51\x71\x8b\x88\x4e\x9c\x73\x33\x7f\x77\xd9\xc2\x5f\xfb\x5f\x7a\x03\xcd\x85\x25\xa3\x17\x5f\x7c\x31\xa0\x0a\xf5\xd6\x57\x96\xb4\x7e\xda\x25\x03\x52\xe7\x68\xf8\xfa\xea\x42\x55\x4e\x34\x0b\xcc\x28\xbf\x21\xa3\x36\x2b\x97\xf0\x80\xde\x79\xfb\x58\x52\x6d\x33\x7f\x93\x78\x06\x10\x6f\x09\xe4\xd6\xe7\xd2\xd1\x68\xff\x77\x7c\x30\x2a\xf6\xde\xde\x9a\xbe\xb6\x3f\x29\xde\x2d\x8c\x9b\x4b\x71\x6d\xee\x6f\xa9\xad\xdf\x10\x1d\x2f\x22\x82\x6e\x6d\x03\x88\xae\xc1\xd8\xf3\x79\xb3\x35\x90\x57\x7f\xb5\x30\x3b\xee\x2d\x84\xec\x4c\xf5\x09\x22\x6f\xf0\xc4\xf5\x56\xb0\x25\xac\xc6\xa7\xcd\x91\x59\xda\xd8\x3e\x1e\xfc\xee\xd3\xef\xad\xfe\xaf\xf7\xed\x8f\x1e\x1e\x16\xd5\x49\x23\xb0\xcd\xba\xfe\xaf\x71\xcf\x8b\xd8\xef\xa2\x5a\xf2\xca\xaf\xf6\xdc\x65\x4d\xa7\x70\x77\xbd\xf7\xe5\x27\x15\xda\xe8\xde\x09\x6e\x39\x13\x91\xf5\xa7\xd1\x94\x71\x7d\xf9\xd6\xfa\x88\x15\xe9\x92\x66\x6a\xa6\xd4\x85\x2b\xc5\x83\xc6\x93\xa4\xcb\xe9\x9b\x96\x67\xce\x47\x9f\x59\x59\xaa\x7e\x53\xef\x32\x2e\xc5\xbf\xe4\xaf\x2b\xbf\x8c\x6b\x2b\xa3\xf6\x2c\xcb\x93\xa2\xdf\xa5\x53\x53\x32\xc4\xdb\x1c\xec\x59\x93\x0d\x0d\x87\x46\x53\x93\x65\x2d\x6f\xdf\x32\xa6\xe4\xa1\x6f\x5d\xd9\xfd\xfd\x7d\x7b\xee\xdc\x39\xf3\xc2\x0b\x2f\xd8\xc6\x45\x9e\xe2\xf4\x69\x78\x76\x80\x9d\xe5\xf6\xf8\xbd\xf5\xf9\xdb\xc7\x03\x7b\xc3\x01\xd6\x01\x4b\x57\x58\x34\xb4\xaf\x4f\xa3\x70\xd9\xa8\xb7\x42\xa2\xb5\x4c\x40\x38\x38\x11\x70\xf1\xc9\x64\x30\x78\xea\xed\x02\x72\xa4\x69\x86\xa6\xd1\x02\x38\x38\x3b\xcd\xcb\xbd\x9b\xab\x8b\x77\x6f\xae\x2c\xf6\xfc\x18\x17\xc6\xba\xe8\x4d\x0a\xdb\x28\x7c\xdc\xd2\x7e\x1f\x56\x97\xfc\x39\x25\x0f\x12\x1e\x4a\x5a\xaa\x6d\x24\x3e\x8d\xa6\xec\xff\xbd\xfa\x8b\x14\xe6\x94\xd2\x91\x0c\xa7\x14\xb2\xfc\xd5\x14\x22\xd0\xad\xa0\xda\x60\x0d\x00\x9b\x65\x99\x79\xfe\xf9\xe7\x6d\xd8\xa8\xab\xf0\x18\x8e\x46\xcb\xfd\x2e\x53\x6b\x70\xfc\xee\xd6\xec\xad\xab\x1b\xf3\xd7\x8e\x07\x76\xcf\xc2\xd9\xe6\x6e\xd8\xca\x44\x5e\x6a\x6e\x5a\x16\xec\x90\xe0\x98\xa1\x52\x09\x29\x3b\x89\xe4\x6a\x41\x8e\xe6\x37\x0b\xb5\x81\xe3\xb7\x09\x37\x8d\xf7\xc6\x5d\x01\x31\x6d\x09\x8d\x8b\x0c\xf2\x0f\x3d\x86\x93\x46\xc3\x82\x2e\xdc\x7b\x38\xfc\x9d\x5f\xbf\xb6\xf2\x5b\xf7\xde\x1e\x3e\x38\x28\x1b\xc6\x8b\x34\x60\x42\x3d\x47\xe3\xe5\x91\x47\x1e\x49\x19\x94\xbf\xac\xf0\xab\xa4\x75\xb7\x43\x9f\x3e\x70\xb7\x68\xdc\x49\x7a\x9b\x22\x92\xa1\x8d\x7f\xcd\xe0\x90\x65\xee\x53\x7e\x6d\xb0\x4c\xe5\x4b\x0d\xd6\x6d\x46\x8c\x96\xaf\x2f\x4f\x6d\xf1\x9a\x1e\xeb\x93\xaf\x0f\xfd\x3b\xe5\x29\x84\xb6\xc9\x62\x6a\x40\xea\xa2\x73\x5a\x18\xce\xcb\x9d\xe4\x93\xf0\x1a\x9e\x18\x77\x70\x50\x6d\x57\x09\xc6\x8a\x80\x0b\x46\x4b\xb5\x8d\x80\x50\x58\x83\xf9\xb5\xf5\xf9\xd5\xfd\xc9\xe2\x4a\x69\xaa\x3d\x8f\xb5\x5e\x95\x97\xbe\xd5\x69\x71\x63\x41\x58\xa6\x77\x68\xc0\xf2\xbb\xbe\x62\xbc\x13\x07\x40\x7c\xfa\x92\x3b\x4c\x19\x47\x42\x28\x8d\x9b\x1e\x8c\xcb\xf7\x6e\xae\x2e\xae\xcc\x72\x77\x8c\x6a\x62\xce\xb7\x46\x2c\xb5\xab\x30\x5a\x52\x75\x79\xda\xfe\xaa\xe1\x4b\x19\x26\x6d\x36\x40\x9b\x1d\xd0\x1a\xf8\x52\x91\x74\x27\x72\x02\xd2\xa5\x2a\x09\x69\x6e\x24\x8e\x4f\xe2\x4d\xd1\xb1\x2c\x3d\xd0\x95\x78\x2d\x00\x38\xe6\x52\xf0\x4b\x46\xce\xc7\x47\x37\x21\x82\xdd\xe0\x97\x8d\xfc\x6f\x06\x20\x5f\x18\x07\x00\x66\x7d\x9e\x6f\xae\x2e\xb2\xcd\xdc\xd1\x90\xfb\xf9\xa4\x91\x1a\x97\x78\x08\x71\x09\x08\xde\xa2\x0e\x5e\x90\x86\xcf\x8c\xfb\x07\xe1\xad\xde\xb0\xbc\x43\xb5\x8b\x31\x54\x5e\x30\x32\x80\xe6\x52\x52\xf4\xba\x70\x7a\xac\xd2\x6b\x1c\x1e\x7f\xdc\xf3\x22\x0b\x40\x26\x77\xb4\x3e\x2c\xcc\xc4\x38\x3a\x3a\x1e\x96\xbb\x27\x03\x3b\x75\x26\x2a\x7f\xe9\x4a\x8e\x6d\xbe\xb3\xb3\x43\x5b\x5b\x5b\x98\xcd\x66\xd8\xdd\xdd\xe5\x75\x9b\x9a\x30\x74\xb9\x02\xa5\x2b\x51\x83\xd5\x60\x78\x7e\xed\x59\xe2\x6b\xc3\x21\xe1\x52\xbc\xa5\x70\x4a\x9e\x35\x3a\x48\x94\x2f\x45\xbf\xab\x7c\x1a\xff\xa9\x20\xcb\x90\x72\x0d\x6b\xf9\x38\xac\x2c\x03\x4f\xb3\x09\x18\xb0\x67\xae\x2b\x38\x8e\x54\x9b\x84\x3e\xce\xd3\x35\xf9\x90\xe5\x03\xd2\x65\x6c\x93\x85\x36\x3a\x0d\x9d\xa3\xe4\x4f\xc9\x02\xaf\x3b\x8d\x0f\x40\xa7\xc3\xe1\xc3\xb3\x94\x43\x59\x5e\xc9\x93\x96\x2e\xcb\xa6\xc9\x69\xaa\x3f\x72\x3c\x72\xe0\x4b\xb5\x77\xaa\x2f\x4b\x1e\x90\xe0\x57\x96\x8d\xc7\x4b\x1e\x23\x4f\x59\x96\xd1\x57\xbf\xfa\x55\x62\xf7\x97\x18\xff\xbd\xa2\x86\xee\x47\x75\xb2\x72\x00\xd0\x70\x9e\x3b\xb3\x39\x1d\x6c\x6c\x9d\xe4\xf7\x0f\x4b\xb3\x4a\xf5\xdd\x12\x5e\xdf\x7a\xad\xec\xea\xcf\xb5\x34\xf4\x30\xd3\xfd\xce\x05\xbd\x5b\x1b\x34\xb5\xf1\xc1\x3e\xf7\x52\x0d\x00\xf1\x4e\x19\x5e\x01\x6c\x08\x8a\x1e\x9d\x80\xe3\x64\x60\x77\xdf\xd9\x9c\xbd\xf2\xc6\xf6\xf4\xe5\xe9\xd0\xee\x03\x38\x26\xa2\x23\xe7\xdc\x0c\xd5\x17\xa2\xc3\x52\x51\xe1\xc7\x47\x57\x15\x3d\x2e\x15\xf1\x76\xe6\x75\x19\xda\x4c\x8e\xf3\x5a\x3d\xf7\xd1\xa7\xa4\xe0\xd6\x9e\xb5\x7e\xd6\xf6\x1c\xe9\xc9\x3d\x2e\x5a\xc7\xe2\xc6\x44\xac\x53\x91\x4f\x1b\xf4\x52\x4a\x97\xbf\xf3\x02\xb7\x75\xfa\xc0\x87\xaa\xa8\x3f\xf6\xb1\x8f\x91\xa9\x56\xbd\xf8\xc7\x17\xa3\x4c\x84\xbd\x2e\x5e\x70\x0d\x00\xe3\x08\xd9\x74\x60\x8b\x71\x61\x46\xeb\xb3\xec\xcc\x78\x91\xad\x67\xd5\xf7\x2b\x82\x04\xd6\xbd\xc9\xa1\xf9\x1e\x04\x35\x1a\x24\xcd\x9e\x57\x0b\x71\xe0\x38\x5c\x66\xc4\x04\x95\x02\xa2\x7a\xcf\x78\x10\x7c\xe7\x11\x05\x38\x4f\x9e\x6f\x5a\x6f\x74\x98\x3a\x04\x3c\xda\x71\x40\x00\xa0\x7c\x60\x69\x73\x54\x98\x11\x08\x47\x27\xc3\xf2\xd6\xc9\xc0\xce\x1c\xd5\x6d\xcc\xf2\x36\x8c\x97\x95\x95\x15\x7c\xe7\x3b\xdf\xb1\x2c\xbe\x6d\xd0\xe4\x0a\x4b\xca\x82\x4c\x93\xef\xcd\x02\xe9\x46\x55\xea\x59\xe2\xd3\xe2\x25\x2d\x1e\x4f\x02\xbe\x0d\xa7\x86\x47\x2b\x43\x1b\xac\xa4\xdf\x55\x3e\xc9\x7f\x9b\x01\xc3\xeb\x4e\xc3\x93\x6a\x3f\x39\xe0\xa4\x78\xed\xd3\x8e\x9a\x1e\xb0\x0a\x5c\x78\xe7\xfa\x86\x3f\x73\x78\x3e\x10\xf3\x32\x4a\x63\xa4\x4d\x16\x24\x6c\xc3\x9b\xab\xc0\x73\x9a\x1a\xdf\x3c\x9f\xe4\xaf\xad\xfe\x64\x5e\x0e\xa7\xc9\xa2\xd6\xa6\xa9\xfa\xe7\xb8\x65\xd9\x64\xdd\xf2\x7a\x90\x3c\x69\x46\x1a\x44\xbc\x84\xe1\x83\x12\x2f\xaf\xa4\xa3\xb5\x5f\x9f\x7a\x90\x65\x03\x50\x19\x2e\xff\xfa\xaf\xff\x6a\x2f\x5d\xba\xe4\x2e\x5e\xbc\x18\x0d\x18\xbf\xc7\x91\x00\x64\xde\x80\xc9\x89\x68\x00\x42\x6e\x0d\x72\x47\xa0\xad\x93\xfc\xec\xca\x22\x3b\x9b\x59\x0c\x89\xc8\x4f\x4e\xf9\x85\x71\xac\xa2\xbc\xb2\x76\x2c\x81\x18\x4c\x63\x2c\x08\x09\xec\x4b\xba\xe4\xf3\xd5\x28\xfd\xa9\x23\xa2\x7a\x12\xec\x6a\xa3\x09\x00\x0a\xe3\xa6\xbb\x2b\xc5\x5b\x6f\x6c\x4f\x7f\x7c\x75\x73\xfe\x56\x49\xee\x90\x88\x8e\x00\x9c\x50\xf5\x7d\xbe\xb9\x73\x6e\xe1\x8d\x96\xb0\xbf\xc5\x01\x70\xe2\x20\x8b\x26\x4b\x48\xfc\x6a\x6d\x9f\xea\x03\x52\x1e\x34\x59\x02\xf4\xf6\xe3\xc6\x49\x17\xac\x01\x60\xbb\xbe\x0e\xad\x29\x37\x5e\x08\x6d\xd6\x26\x3d\x25\x12\x2f\x7f\xd7\x0c\x23\xa9\x04\x34\xcb\x8c\xe3\x33\x3f\xfc\xe1\x0f\x6d\x10\x54\x04\x43\xb8\x1e\x80\x83\xb5\x4d\xfe\x39\x27\xff\xc5\xd0\x22\x73\x28\x0d\xdc\xca\x3c\x5b\x5d\x9b\x65\x5b\x83\x92\x56\xe0\xbc\xbf\x23\xc8\x1a\x98\xdc\x01\xf5\xc7\x13\x01\x70\x4f\x08\x84\xd0\xf2\xa3\xfa\x4b\x06\x07\xbc\x81\xe2\x8d\x97\xe6\x3a\x68\xfd\xd5\xe7\x60\xcd\x10\xa8\xf1\xe1\xd0\x68\xce\x52\x5d\x4e\x07\x34\x3c\x3f\x01\xa9\x73\xcd\x2f\x57\x1b\xd0\x30\xb7\xb4\x31\x2a\x4d\x6e\x09\xb7\x8f\x87\xe5\xde\x34\xb7\x73\xd4\x4b\xb5\xa5\x17\xf8\x28\x88\x7e\xd6\xe2\xc2\x86\xdd\x47\x1f\x7d\xd4\xec\xed\xed\xa5\x2c\xec\x46\xdb\xb0\x2a\x91\xf1\x52\x8e\xb4\xfc\x5a\xbb\x6b\x46\xb0\xcc\xdb\xe6\x51\x21\xa4\xf1\x42\xc0\x6a\xf2\xdf\x56\x86\x54\xdf\xd0\xf8\xe9\xf2\xda\xb4\xf1\x29\x3b\xb6\x56\xb6\xae\x36\x69\x33\x78\xb4\x3a\xd0\x3c\x0a\x6d\x6d\xd7\x35\xb3\x43\x0b\xac\x2c\x17\xa7\x63\x15\x78\x2e\x63\xda\xcc\x9c\xd3\xd1\x74\x93\xe6\x59\xe1\xf1\x1c\x9f\xd6\x3e\x52\x77\x49\x7c\x1c\x67\xaa\xcc\x5d\xb2\xdf\xc6\x87\x26\x03\xb2\xae\x52\xf5\xc6\xf5\x6c\x17\x2c\x2f\x8f\xa4\x23\xe3\xb5\x25\x7f\x29\x97\xbc\x9c\x92\x9f\xae\xb6\xd4\xca\x4f\x3b\x3b\x3b\xf4\x47\x7f\xf4\x47\x7c\x2c\x08\x13\xd7\x30\x69\xcd\x00\x84\xc3\x1a\x43\xe7\x5c\x3e\x1b\x58\x37\x2c\xcd\x68\x63\x96\x9f\x1b\x15\xd9\x9a\xb1\x94\x85\x49\x27\x71\xee\x02\xb1\xb0\x21\xd7\xcf\x2a\xf5\x9b\x24\x58\xbc\xb7\x60\x08\x35\x4e\xaf\xda\xa3\x07\xdf\x51\x5d\x8c\x30\x36\x84\xec\x16\xce\x1e\x8e\xec\xf5\xb7\xce\x4c\x7f\xf2\xe6\xf6\xf4\xff\x3b\x1a\x97\x37\x88\xe8\x18\xc0\x91\x73\x2e\xde\x55\x06\xbf\x35\xc2\x23\x2a\x51\x2d\x8d\xe1\xec\xd9\xb3\xf4\xfa\xeb\xaf\x4b\x39\xe1\x6d\xac\xe9\x02\xcd\xe8\xd5\xfa\xbc\xd6\xb7\x53\x32\x98\xb2\x09\x34\xf9\x4e\xb5\xb5\x85\xe2\x71\xe1\x4c\x6b\x4a\x4d\x76\xfc\x94\x61\x93\xca\x27\xf1\x76\x19\x46\xb2\x13\x48\xeb\x0f\x00\xe8\xd3\x9f\xfe\x34\x9d\x39\x73\x06\x59\x96\x45\x9c\x4c\x70\x83\xd1\x02\xff\x6c\x50\xb9\x0b\x33\x00\xd9\x3c\xb7\x65\x6e\x69\xb8\x36\xcb\x37\x57\xe7\xd9\x66\x06\xca\xa3\x1b\x90\xb0\xe4\x5d\x89\x96\x31\xc0\x8e\xc8\xf1\x4b\x88\x3c\x53\x54\x0b\x66\x60\x2a\xb6\x0c\x21\x1a\x1a\x1c\xae\x32\xf2\x69\x39\x5f\xc3\x3a\x47\xf8\x7c\x51\x0c\xc4\x90\x50\x20\xe0\x33\xf3\x4e\xe0\xfb\x0f\x8c\xa5\xc9\xd0\xd2\xe6\xb0\x34\x59\x69\xdc\xee\xd1\xb0\x3c\x98\xe5\xae\xf0\xc6\x4b\xb4\xd4\x59\x5d\x46\x43\xe6\xe2\xc5\x8b\xf4\xdd\xef\x7e\x57\xb3\x8a\xe5\x80\xa0\xcd\x24\xc1\xf2\xc8\xdf\x2e\xb8\x94\xcc\xf1\xbc\x72\x56\x20\xe1\x25\x6c\x6a\x56\xc0\xf3\xa5\xfa\x82\x56\x86\xf0\x2b\x67\x83\x1a\x3f\xb2\x6c\xb2\xbe\x64\x1e\xad\x3c\x26\x91\x57\x2b\x6b\x57\x5d\x07\x7c\x92\x6f\xad\x0c\x1a\xff\x6d\x74\xfa\xe8\x8c\xbe\x32\x90\xaa\x27\x52\xe2\x52\xb8\x34\x2f\x50\x57\xd9\x52\x7f\x12\xbf\xe6\x7d\xd1\x68\x73\xbe\x35\x6f\x72\x17\x0f\x3c\x9f\x51\xe2\x4e\x2b\x5f\xa9\xfe\x90\xe2\x4f\xa3\xcf\xe9\xc9\xd0\x56\x1e\x39\x41\x4d\xc1\x6a\x74\xe2\x20\xe7\x9c\xa3\x77\xdf\x7d\xd7\xbe\xf8\xe2\x8b\x6e\x67\x67\x87\x42\xf0\xf0\xc6\xff\x11\x11\x65\x7e\x02\x9b\x13\x51\x5e\x1a\x64\xf3\xcc\x95\x6b\xb3\x6c\x6d\x6d\x9e\x6d\x0f\x4b\x9a\xc4\x73\x49\xbe\xa4\x75\x81\xdc\x92\xee\x75\xc2\x43\x1f\x21\x1d\x1a\x9e\x72\x82\xfc\x62\xb5\x2f\x00\x85\x81\x8e\x5d\x9b\xe1\x08\xe1\x9b\x7a\xb3\x81\xbb\xfd\xee\xe6\xec\x95\xd7\xcf\x9f\xfc\xe4\xfa\xda\xe2\x4a\x49\xee\x10\xd5\x32\x51\xf0\xb6\xcc\xfc\x3e\xce\x70\x8f\x59\x19\x3c\x2e\xcf\x3f\xff\xbc\x7d\xfd\xf5\xd7\xfb\xf4\xdd\x10\xb8\x7c\x4a\x03\xbc\x4f\xdf\x96\x72\xa6\xf5\x2f\x19\xfa\xf4\xab\x06\x9d\xd4\x52\x51\xca\x0a\x93\xc2\x93\x0a\xd2\xc2\x92\x05\xd3\x70\x6b\xf4\xad\x92\x67\x69\x76\x70\xf9\xf2\x65\xb7\xbe\xbe\x4e\xeb\xeb\xeb\xc8\xb2\x8c\xef\x71\x09\x81\x80\xea\x68\x1c\xb3\xbe\x09\x80\xb1\x06\x59\x91\xd9\x72\x54\x98\x95\x8d\x59\xbe\x35\x2e\xcc\x5a\x58\x70\x8a\x03\x7e\xdc\xa1\xee\x99\xa6\x4a\xc8\x22\xe2\x60\xb4\xa0\x29\xa8\x95\x90\xb3\x5b\x57\x42\xc9\xc2\x4f\x78\x16\x46\x0e\x37\x32\xa2\x2b\xd2\x01\x7c\x9f\x4d\x4d\xbb\x7a\xa2\x06\x1c\xab\xc1\x80\x8f\xe1\x07\x39\x64\xce\x4c\x46\x85\xd9\x18\x96\x86\x4a\xe3\x6e\x1d\x8d\xed\xc1\xc2\xb8\xc2\x1b\x29\xda\xe6\xbd\x8a\x25\xe6\x79\x51\xda\x0f\x02\xbe\x2b\xb4\xc9\xc2\x9d\x84\x36\x99\x6a\x83\xed\xea\x54\xa9\xd0\x07\x77\xdf\xd0\xd5\x27\xb4\xf7\xf0\xdb\x55\x87\x7d\xf9\x49\xd1\xe9\x1b\x4e\x53\xff\xd2\x78\xe8\xd2\x2d\x5c\x37\xc8\x7c\x29\xda\x7d\xf8\x4c\x95\xf9\x4e\xf9\xe6\x79\x34\x5e\x35\x03\x40\xc3\x97\x9a\x05\x6b\x6d\x2e\x07\xfc\x00\xab\xc1\xa4\xf0\xa5\xea\x24\x25\x5b\x7d\x60\x34\x5a\x5a\xbd\x4a\x1e\x52\xed\x90\x1a\x60\x97\xf8\xf0\x86\x0b\xc7\x51\xcf\x1b\x89\x32\xf2\x9f\x3c\x09\xfb\x5e\xa6\x03\x6b\x09\x44\xab\x73\xb3\x31\x29\xb2\x8d\xcc\xd2\xa0\xb1\xdf\x85\x23\x40\xd8\x85\x48\xcc\x2b\x2f\xcd\x96\xe6\xe4\x33\xe4\x63\xe8\x6a\x9c\x3e\xb2\x71\x53\xaf\x1f\xc2\x0a\x83\xf9\xf5\xb5\xc5\x2f\x5e\x3b\x7f\xf2\xc3\x77\x36\x67\xff\x36\x1f\xb8\x7d\x22\x3a\xf6\x1e\x97\x63\xe7\xdc\x89\x37\x5a\x66\xa8\x0c\x96\x32\xd4\x0b\x11\xb9\x27\x9f\x7c\x92\x5e\x7e\xf9\xe5\x94\x1c\xf3\x31\x35\x25\x07\x12\xa6\xab\x8f\x48\x18\x8d\x86\xc6\x4b\x1f\xdc\x31\x3e\x13\x11\xa9\xf5\x67\x0d\xa6\x8d\x11\xa9\x60\x64\x5a\x9b\x00\x07\xf7\x60\x6a\x7d\x5b\x5d\x03\x7f\xfb\xed\xb7\xdd\x8f\x7f\xfc\x63\xf7\xcc\x33\xcf\x68\x6e\x26\x00\xd1\x84\x36\xec\x2f\x03\x60\xe6\x79\x75\xda\x7f\x6d\x9e\x6d\xac\xcf\xb2\xed\xdc\xd1\xb0\xf6\xae\x20\xba\x05\xfd\xc8\x5d\x0b\x20\x93\xc2\xe8\x35\x89\x71\xae\xe1\x4a\x8c\x46\x0d\x83\x8b\xf0\x9e\xcb\xa6\x71\x53\x7b\x78\xa2\xc1\x14\x2c\x72\x6e\x84\xa0\xb9\xc1\x2b\x18\x5b\xdc\xd5\x19\x8d\xa0\x46\x85\x10\x65\x0e\x2b\xa3\xc2\x6c\x8d\x8b\x2c\x5b\x64\xf6\xd6\xe1\xb8\xbc\x5d\x98\xda\xf3\x22\xeb\x98\xc5\xb9\x9d\x9d\x1d\x7a\xea\xa9\xa7\xe8\xa5\x97\x5e\xea\x52\x36\xda\x3b\x67\x25\x25\x4f\x5a\xc7\xd2\x14\xba\x14\x7a\xf9\xdb\x57\xa1\xb6\xa5\x9d\xc6\x63\xd8\x87\x8e\x2c\x87\x34\xc6\x25\x0d\xe9\x59\x91\x41\xc3\xdb\x35\xc0\xf6\x51\x40\x5a\x19\xfa\xd4\xbf\x36\xc9\x90\xb4\xe4\xc4\x46\xc2\x6a\x5e\x11\x09\x93\x1a\x88\x53\xf2\xa7\x95\x33\xe5\x15\x91\xed\xc1\x07\x3f\xae\x94\x49\xc0\xa6\x8c\x85\x54\x7d\xf2\xf2\x87\x3c\xa9\xe5\x71\x97\xc8\xa7\xd5\x9b\xe4\x4b\x83\xe1\xf8\x53\x03\x4c\x57\x3d\xca\x31\x21\x25\x1f\x7d\xda\x58\x1b\xec\x52\xf2\xa3\xc9\x7c\xc4\x19\xbc\x2e\x68\xb6\x99\x01\xa2\xd7\x3d\x18\x2f\x39\x11\x65\x0e\x2e\x3f\x19\x96\x73\x00\x76\xb2\x30\x2b\x93\xc2\xac\x67\x96\x86\x7c\xe2\x59\x55\x6a\xad\x48\xeb\x09\xa6\x9f\xb8\x2e\xed\x2d\xf4\xe7\x8b\xa2\xbe\xae\x06\x94\x86\xfe\x07\xff\x8d\xe6\x10\x00\xa0\x24\x57\xec\xaf\x2c\xde\x79\xfd\xdc\xc9\x8b\x6f\x9e\x39\xf9\xd9\xe1\xc8\xde\x00\xe1\xc8\x39\x77\xc4\xf6\xb7\xcc\xfc\x95\x1f\x65\xd8\x94\x4b\x44\x25\xf9\x63\xd1\xaf\xbf\xfe\x3a\xde\x7e\xfb\x6d\xad\x7f\x4a\x0f\x57\x9b\x8e\x93\xfd\x4f\x56\x41\x4a\x66\xa4\x4d\x91\xd2\x49\x6d\xb8\x65\x70\x40\xbd\x54\x94\x12\x28\xad\x33\x48\x65\x93\x1a\x50\x52\x33\x23\x59\x38\x08\x18\x59\x91\x3c\x48\x81\x96\x79\x71\xe9\xd2\x25\x2e\xb0\xc4\xf2\x81\xc5\x65\x8d\x5f\x42\xb6\xc8\x9c\x35\x8e\xf2\xcd\xe9\x60\x6b\x65\x91\x6d\x12\xc8\xc4\x25\x23\xb8\x7a\x83\xae\xab\xc4\xb1\xf6\x96\x78\x33\xc0\x4b\x67\x74\xfb\x39\xff\x81\x2d\xf2\x66\x8e\xa3\x08\x53\xe5\x43\x14\xe8\x48\xc7\x31\x4e\x39\x90\x67\xb2\x61\x8c\xc7\x4e\xe1\x69\x38\x17\x97\xb0\x1a\x9e\x1c\xf8\x3d\x2e\x0d\xdc\x55\x3e\x02\x8c\x71\xb4\x36\x2e\xb2\x73\x2b\x8b\xcc\xcc\x72\xfb\xde\xed\x71\x79\xcc\x2e\xa8\x73\x6c\x77\x3a\x6f\x37\x02\xe0\x86\xc3\x21\xc4\x25\x75\x50\x9e\xb5\xf7\xd0\x66\xa9\x65\x89\xf0\x2e\x71\x6b\x83\x95\x54\x76\x6d\x03\x85\x16\x34\x25\x2b\xf9\x3b\x2d\x4e\x1e\x52\x33\x43\x0d\xaf\x56\x3e\x0d\x2e\x65\x6c\xf1\x3e\xaa\xb5\x47\xaa\x8d\x4e\x53\x57\xa9\xfa\xd7\xca\xc0\x07\x64\xd9\x6f\x35\xc3\x2d\xc5\x6b\xdf\xb6\x95\xf4\x52\xf9\x43\x48\xe9\x11\x4e\x87\x1b\x27\x5a\xbd\x72\xdc\xfc\x9d\x1b\x22\x6d\xfc\xca\x7a\xd3\x94\xb9\xd4\x87\x5a\x1d\x6b\xf5\xc7\xf3\x6b\xf5\xc0\xd3\x35\xbd\x2e\xeb\x85\xb0\x5c\x46\x75\x62\x23\xf2\x68\xed\xd7\xd6\xff\x53\x65\x92\x46\x12\xaf\x33\x99\xd7\xb1\xd3\xa6\xf1\x74\x51\x58\xda\x61\x1e\x97\x70\x41\xa9\x29\x33\xe0\x70\x54\x4e\x1d\xc1\x4e\x16\xd9\xca\xb8\xc8\xd6\x32\x87\x41\x30\x25\xf8\x58\x40\x4c\x8f\xd7\x85\xa4\x46\xcf\xae\x6e\x4c\x0f\xc6\x8c\x87\xa2\x65\xaf\x79\xfc\xad\x86\x09\x00\x0e\x96\x60\xf7\x26\xc5\x3b\xaf\x9d\x3f\xb9\xf4\xda\xb9\xe9\xcb\x07\x93\xe2\x7d\x67\x70\x1b\xf5\x49\xa2\x60\xb4\xcc\x88\x68\x4e\xd5\xa5\x73\xe1\x5e\x17\x07\x54\x9b\x72\xbd\xd1\xc2\xeb\x05\x1d\xf5\xaa\xb5\xbf\x94\x1f\xb0\x77\x39\xb9\xe5\x41\xca\xbd\x66\xc8\xa7\xe4\x2e\x35\x01\x23\xf8\xcd\xb9\x9a\x32\xe1\xbf\x9c\x31\xc7\x32\xf3\x4e\x06\x85\x79\x4d\x71\xb4\xcd\x6e\xfb\x0c\x76\x5a\xc7\x5b\x52\x48\xfc\x78\x74\xc8\xe7\x05\x37\x76\xa6\x20\xac\x1e\x87\x29\x8c\xa3\xd2\x38\x8c\x0a\x33\x3c\x73\x32\xb8\x30\xb0\x34\x5e\xba\xbe\xdf\x5b\x18\xc1\xeb\xc2\xd7\x35\xc3\xfd\x2b\xdc\x36\xa8\x8d\x9a\xb0\xd9\xb6\x79\x4d\x74\xc3\xb0\x00\xc4\x5e\x14\x5a\xa2\x19\xf2\x06\x7a\x95\x91\x52\x7f\x7e\xa0\x69\xeb\xa3\xf9\xc9\x74\x61\xbb\x10\x05\xfe\xc9\x64\x16\xab\x93\xc2\x9c\x5f\x9b\xe5\xe6\x68\x68\xdf\xd9\x9f\x14\x47\x3e\x8f\xf3\xde\xa6\xa4\xc2\x0e\xcb\x46\xa3\xd1\xc8\x94\x65\xa9\xb5\x59\xaa\xcd\x65\x1b\xa5\x94\x65\x17\xbe\xd4\xec\x3b\x15\x52\x46\x39\xc4\x7b\x0a\x5f\x17\x9f\x6d\x33\x56\x1e\xd7\xa7\x4f\xa4\xe8\xb6\xe5\xeb\x5b\x0f\x7d\xe8\xa4\x3c\x14\x6d\x83\xb1\x0c\x72\xf2\xa0\x29\x26\xcd\xeb\xc6\xe9\xa4\x26\x41\x5a\xdd\xcb\xf5\x74\x6d\xd6\x1e\x82\xa6\x47\x34\xaf\x84\xc4\x27\x79\xd7\xda\x26\xcc\x68\xdb\x26\x84\x1c\x67\xdb\xc0\xad\x4d\x2c\xb9\x41\xd0\x36\x3b\xe5\x3c\x6b\x83\x3e\x4f\xef\xd2\xaf\xbc\xed\x78\x7b\xa6\x66\xcf\xbc\x1e\x24\xdf\x5d\x13\x65\xcd\x8b\x95\xaa\xf7\xa5\x09\xf6\x97\xbf\xfc\x65\x1a\x0c\x06\xcc\xc0\x20\xb0\xad\x02\xf0\x46\x8c\xf1\x8f\x19\xaa\x13\x47\x54\xe4\x70\x87\xc3\xf2\xc4\x19\xd8\x95\x45\xb6\x3a\x2a\xcc\x9a\x71\xc8\x81\x70\xe2\xa7\xbe\xac\x22\x7a\xb7\xc3\x45\x74\x14\xbe\x49\x44\x71\x72\x59\xeb\x6d\x62\x07\x29\x9c\x3f\xb5\xe4\xe2\x31\x6b\x07\x20\xac\x3b\x39\x82\xdd\x9b\x2c\xae\xfc\xec\xde\xe3\xff\xf7\xe7\xe7\x4f\x5e\xda\x9f\x14\xd7\xfc\xbe\x96\xa3\xb0\x29\xd7\xff\x86\xbd\x2d\x73\x20\x7e\xd6\xc0\x79\xaf\x8b\xfb\xf8\xc7\x3f\x4e\xe3\xf1\x98\x2e\x5f\xbe\xcc\xdb\x4f\xb6\x6d\xca\x18\x94\x21\x25\xeb\x5d\xf2\x9c\x32\x46\xb4\x3e\xdd\x68\x43\x11\x17\x64\x86\x80\x6a\xa9\x48\x53\xb2\x5a\x41\x91\x88\x4b\x31\x1f\x18\x92\x86\x8f\x2c\x8c\x56\x58\x19\x34\xeb\x1d\x29\x78\x76\x1c\xae\x51\x61\x7c\xbb\x15\x55\x2d\x6c\x00\x7f\x4c\x9a\x60\xe6\xb9\x2d\xcb\x0c\xb4\x31\xcd\x57\x36\xa6\xf9\x79\xe3\x28\xab\x84\x93\x80\xda\xe3\x10\x03\x8f\x91\x5e\x93\xf0\x99\x00\xe9\xf5\x20\x9f\x31\xe6\x75\xb5\xa5\xde\x38\x15\xc4\xac\x8c\x86\x01\xe5\x18\xed\xd0\x39\xd0\x34\x5a\x9a\xe9\xcd\x8a\xd3\x42\x65\xbc\xd0\xfa\xa4\xc8\xee\x3f\x73\x92\x0f\x0e\xc6\xe5\x2f\x6e\x8f\x8b\x19\x28\x39\x9b\x0a\xef\x0e\xa8\xea\xfb\x6b\x5f\xfb\x1a\xdf\xf7\xa2\x09\xab\x8c\x97\x82\x2e\xe3\x52\x1d\x82\xe3\x4c\x29\x38\x0e\x2f\x65\x44\x2a\x67\xc9\x1f\xa7\xad\x19\x17\x29\x7c\x21\x7f\x9f\xa5\x54\x8e\x47\xab\x1f\xed\x17\x58\xa6\xd3\xd7\xd8\x43\x07\x4c\xca\x48\x90\x65\xe7\x93\x94\xd3\x28\x2b\xb9\x59\x4f\x1a\x33\x72\x30\x0b\xf1\xda\xf2\x90\xd6\xff\xa5\xe2\xd3\x8c\x22\x6d\x70\x97\x7a\x85\xf3\x93\x3a\x61\x64\x05\xac\xd4\x87\xda\xec\x95\xe3\xd4\x64\x9d\xcb\xae\x81\x5e\x17\x9c\x27\x5e\xa7\x46\xc1\xc1\xf9\x96\xb4\x65\x3d\x71\xb5\x20\xbd\x4f\x50\x60\x1d\xfb\x93\x83\x0b\x2f\x1f\xa7\x99\xe2\x5b\xd6\x87\x94\x03\xbe\x41\xf8\x54\x74\x5e\x7a\xe9\x25\xcb\x97\x8b\xfc\xd5\xff\x71\xff\xa3\xd8\x07\x49\xac\x8c\xa6\xc8\x51\xde\x1e\x95\x87\xc7\x83\xf2\x30\x2f\xc9\x4c\x8a\x6c\x2d\xb7\x66\xc4\x37\xeb\x06\x3d\xdd\xb8\x2a\xc3\xc1\x6f\x2b\x08\x70\x62\x99\xa9\xf6\xf6\x44\x05\x2d\x3d\x2f\xa5\x71\xc5\xcd\xd5\xe2\x8d\x1f\x3f\x70\xf8\xfd\x7f\x3b\x7f\xfc\xb3\xc3\x71\x79\xc3\x7b\x5a\x8e\x00\x44\xe3\xc5\x39\x37\x25\xa2\x19\xfc\xde\x16\x54\x97\xd1\xf1\x6f\x32\xe1\x87\x3f\xfc\x21\xfe\xe5\x5f\xfe\x45\x5b\xf2\xe4\x75\xc9\x4a\xd4\x68\xef\x36\xbd\xa9\xf5\x09\x08\xdc\x32\x9f\x66\xcc\xa6\xfa\xbd\xa6\x17\x1a\xfa\x92\x2f\x15\xa5\x18\xe6\xa1\x8f\x71\xc2\x2b\x49\x2a\x9a\x10\xba\x06\x38\x0d\x37\x17\xe4\x64\xc8\xb2\xcc\x7c\xf6\xb3\x9f\xa5\x73\xe7\xce\x85\xa8\x20\xb0\x12\x67\x70\x1d\x1a\xf8\x25\x23\x07\x64\x45\xe6\x4a\x4b\x8e\xce\x9c\x0c\xce\x8e\x8b\x6c\xcb\x70\xe4\x2e\x08\x60\x5d\x08\xde\xda\xdc\x58\x00\xd5\xeb\x9d\xd1\xac\x60\xe2\x11\x7b\x69\xbd\x1e\x55\x19\x3c\xa8\x8f\x2f\x3b\x00\x70\x1c\x4f\x8d\xa3\x3e\x2e\x27\x8c\x16\xc7\xd2\xb8\x21\x84\xa6\x75\xaf\x18\x31\x94\x39\x5a\x1d\x17\xe6\x81\x33\x27\x39\x0e\x26\xe5\x95\xa3\x41\xb9\x70\x06\x25\x83\xe1\xb3\xa7\x48\x31\x7c\x33\xaa\xc7\xb2\x51\xaa\xed\xa4\xb0\xa7\xe0\x9d\x80\x95\x46\x54\x4a\xce\xba\x70\x86\xc0\xe5\x58\xa3\xa3\x85\xd3\x96\xb5\x4f\xfe\x54\xf9\x52\x70\xa7\xa1\x99\xaa\x93\x3e\x38\x4f\x03\x17\x82\x66\xd8\x05\x11\x94\xa7\x5c\x90\x78\xef\x32\x40\xa4\x42\x96\xc6\xa9\xc6\x87\x1c\x08\x1d\x96\x69\xf3\xb2\xa4\xe0\x65\x48\xc9\xac\x1c\xf4\x43\xe0\xc6\x60\x1b\x1d\xc9\x93\x2c\xaf\xd4\x8d\x1a\xbc\xf4\xe0\xc8\x36\x80\x48\x97\x7c\x2c\xf5\x7d\x01\x0f\x86\x53\x1b\xe8\x52\x3c\xa5\x9e\xef\x98\x4e\x9e\xe7\xc6\x5a\xeb\x76\x76\x76\xc8\x7b\x20\x82\x1e\x8d\x77\x7d\x79\x23\x22\xac\x3a\xf0\x73\x44\x28\x32\x94\x07\x93\xf2\x78\x77\x65\xb1\x5b\x66\xee\x64\xbc\xc8\xc6\xc3\xc2\xac\x10\xa8\x31\x24\x04\xf5\xed\xfc\x0b\xd7\xab\x8d\xe7\xa0\x8b\xd9\x04\xd8\xf9\x78\x47\xd5\x7e\x96\xa3\x51\xb9\xf7\xf6\x99\xd9\x8f\x5f\x7c\xe8\xe0\xfb\x6f\x9f\x99\xfe\x62\x3a\x70\xb7\x1c\x70\x08\xc2\x6d\x00\x87\x44\xc4\xf7\xb6\x2c\x00\xcc\xc3\xb7\x89\x3c\xba\x32\x94\xf1\x85\x17\x5e\xb0\x57\xaf\x5e\x95\xf5\xaa\xd5\xa5\x94\x1f\x59\xf7\xbc\x38\x5a\x5f\x6c\x5b\xee\xe7\xf9\x64\xde\xb6\x7e\xaf\xf1\xe4\x38\xbe\x8c\x65\xd2\x66\xb3\x6d\x82\xaa\x09\x1b\x27\xa8\x15\x46\x1a\x3e\x29\xdc\xd1\x48\x85\xbe\x71\x47\xe2\x8a\xcf\xce\x39\xf7\xd6\x5b\x6f\x39\xfe\x01\x46\x51\xe8\xe0\x32\xe4\xb4\x08\x7e\xa3\x6e\x69\x1c\x2d\x32\xe7\x06\x96\x68\xfb\x24\xbf\x77\x60\xcd\x38\x52\x0c\xf6\x87\xc7\xa8\x19\x30\x35\x28\xc5\x34\x96\x75\xe9\xf4\x10\x0f\x8e\xe5\x6b\x60\x0a\x74\x94\xbc\xdc\x70\xaa\x79\xaa\x8d\x1f\x8e\x87\x47\x35\x1a\xd6\xc5\x0e\x45\x99\xa3\x95\x71\x91\xdd\xbb\x36\xcb\x16\xc7\xa3\xf2\xfd\xe3\xa1\x9d\xdb\x1e\xc6\x0b\x50\x2d\xd1\xb5\x9c\x36\xea\xe3\x0d\x08\x70\xda\xe0\xf4\xab\x08\xff\x1e\x34\xff\x3d\xc2\x9d\x4c\x50\xee\x34\xa4\x8c\x07\xd9\xc6\x29\x0f\x97\x84\x4d\xe9\x93\x36\xdc\x6d\x38\x34\x83\x46\x86\x94\x47\xaa\x6b\xc2\xd7\x35\x31\x0b\xf1\x9a\x97\x4e\xab\x8b\x3e\xe5\x4d\xf1\xa2\xc1\xb7\xf1\xd4\xb7\x5e\xfb\xe0\x4e\xf1\xd7\x87\x8e\x1c\x6b\x24\x4d\xb5\x5d\xad\xb5\xf4\xa7\x7f\xfa\xa7\xf4\xd7\x7f\xfd\xd7\x36\x1c\x8d\x06\xe2\x05\x9b\x51\x0d\x7a\xaf\x7c\xd8\x4a\x60\xf9\xd2\x92\x25\xd8\xe9\xc0\xcd\xf7\x27\xc5\xc1\xe1\xa8\xdc\xcb\x1c\xca\xdc\xd2\x20\x73\x94\x53\x65\xa6\x34\x76\xfe\x71\xa7\x7c\x1c\x13\x1c\xaa\x63\xcd\xb4\xac\xd9\x01\x87\xd2\xb8\xe2\x64\x68\x0f\xae\xad\xcf\xdf\xfc\xe9\xbd\x47\x2f\xbe\x7c\xff\xd1\x4b\x37\x56\x16\x57\x17\x39\x76\x01\xdc\x66\x46\xcb\x31\x80\x13\x00\x53\xe7\xdc\xdc\x7b\x5b\x16\xde\x68\x09\x77\xb6\x38\x00\xfc\xa3\x8a\xb2\x2e\x9b\xc4\x97\xeb\x32\x55\xf7\x48\xa4\xa7\x70\xa7\x3c\xd4\x7d\xe0\x35\xd8\x25\x1c\xda\x95\xff\xd2\x02\xd2\x82\x86\x50\x8b\x93\xcc\xa9\x1b\x6a\xb1\x5c\x50\xfe\x2c\x67\x0a\x6d\xb4\x01\xc0\x6c\x6c\x6c\xd0\x0f\x7e\xf0\x03\xcb\xf6\xba\x04\xe3\x04\xf0\x86\xb5\x77\x1d\xc6\x75\x4e\x54\x36\x83\x71\x00\x15\x99\x73\x8b\xcc\x96\x6b\xb3\x6c\x65\x63\x96\xdf\x43\x0e\x59\x3c\xfe\x2c\x2d\x06\x68\x46\x00\x4b\x73\x88\x9e\x12\xe7\xf3\x3b\xd4\x16\x38\xbf\xf7\x25\x1a\x1c\x3e\x8d\x18\x7c\x40\x56\xad\x95\x62\xc9\x98\xe1\x97\xe5\xf1\x4f\xa3\x73\xa3\x4a\xce\x06\xf8\x5f\xb8\x58\x0f\x95\xf1\xb2\x36\x2e\xcc\xb9\x49\x91\x15\xb3\xdc\xee\x9d\x0c\xcb\x93\x82\x1a\x9b\x74\xad\xaf\xbf\xb8\x69\x97\x5f\x52\xf7\xd8\x63\x8f\xd1\x2b\xaf\xbc\x12\xda\x4e\xb6\x41\x4a\xc1\x6a\x33\x66\x99\x26\x8d\x9a\x94\x0c\xc9\xa0\xc1\x69\x38\x53\xf8\x4e\x63\x74\x9d\x86\x07\xed\xb9\x4f\xe7\xee\x3b\x60\xa6\x7e\x53\x79\xb9\xbb\xb6\x6b\x00\x4f\xf1\x9d\xe2\x93\x4f\x42\xe4\x33\xd7\x3d\x61\x02\xc5\x71\xb4\x2d\xdb\x70\x18\x89\x9b\xe3\x00\x9a\x32\xa8\xc1\xa6\xca\xa5\x2d\x6f\x48\x7e\xdb\x70\x6b\xc6\x49\x57\x9d\x68\xcb\x64\xa7\x29\x7b\x17\x2f\xb2\x5e\xb9\x3a\xe8\xe2\xa9\x0f\x6e\x28\xf5\xd3\xa7\x0c\x1a\x8c\xc4\x97\x2a\x43\x23\xfd\x67\x3f\xfb\x99\xfb\xfc\xe7\x3f\x6f\xd6\xd7\xd7\x01\xc4\x8b\x34\x83\xa7\xc5\xf9\x67\x07\x00\xfe\x91\xbc\x67\x26\x7a\x69\x1c\xa1\x5c\x64\x6e\x76\x38\x2a\x8f\x6e\xac\x16\xb7\xf6\xc7\xc5\x0d\x47\x58\x10\x08\xe4\x28\xf3\x6a\xd3\x68\xcb\xf5\xa1\xd4\xfc\xea\x0c\x0b\x87\x92\x50\xcc\x72\x3b\xbd\x3d\x2a\x6f\xbe\xbf\xbe\x78\xfb\x8d\xb3\x27\xaf\xbc\x7a\xef\xf1\x4b\x57\xb6\x66\x6f\x1c\x8e\xca\x1b\xa5\x71\x7b\x00\x8e\x40\x74\x08\xe0\xd0\x39\xc7\x8f\x3f\x4f\x89\x68\xea\x3d\x2d\x0b\x54\xba\x38\x5e\x36\xe7\x9c\x73\x2f\xbc\xf0\x82\x7d\xfa\xe9\xa7\xcd\xf5\xeb\xd7\x53\x7d\xa1\xaf\x9c\xb6\x8d\xbb\x52\xee\x52\xf8\xda\xe0\xb5\xb6\x6f\xeb\xc3\x51\x36\xb4\x0b\xe8\xda\x14\x69\x1f\x85\x9b\x52\xaa\x32\x4e\x33\x3c\xb4\xc1\x44\x53\x60\x29\x5e\x1d\x00\x9a\xcd\x66\x76\x6b\x6b\xcb\x7c\xff\xfb\xdf\xb7\xec\x84\x91\xa4\xcb\x8d\x96\xb0\xeb\x3c\x03\x21\xb3\x04\x9a\xe7\xce\x39\x03\x7b\xe6\x38\x3f\x3f\x59\x64\x5b\x41\xfc\x1a\xdf\x8f\xf0\x46\x83\xf3\x67\xa0\xab\xfd\xae\xc1\x22\x61\x86\x4a\x30\x42\x7c\xfe\xb8\x61\x8b\x20\xf2\x54\x80\x7c\x13\x3a\xd0\xb4\xba\x2a\x3a\x7e\x41\x89\x19\x38\x8e\x2f\x4d\x05\x1c\x80\x38\xb2\x2d\xac\x2a\xbf\x11\x87\xbc\x85\xc3\x36\x1c\x9b\xcc\xd2\xc6\xa4\xc8\xb6\xc7\x85\x71\x0b\xe3\x0e\xa6\x03\x7b\x5c\xe4\xb5\xcb\xd1\xcf\x4e\x88\xbd\x47\x83\x63\x32\x99\x84\x65\x23\xde\x7e\xfc\x19\xe2\x59\xbe\xa7\x64\xa5\x0d\x47\x92\x35\x5a\x6c\x00\x00\x20\x00\x49\x44\x41\x54\x9b\x61\xa1\x0d\xda\x9a\xbb\x53\xc2\xf5\xc1\x2d\xe9\xf4\x49\x6b\x7b\x4e\x19\x15\x5a\x9e\x14\xbd\x25\x59\x47\xbf\x32\xc9\x36\x4b\xa5\xb7\xf1\x2d\xbd\xad\x21\x4e\x3e\x4b\x7c\x50\x60\x65\x7d\xc8\x7c\x6d\xf1\x6d\xcb\x22\x5d\x65\xd1\xca\xd5\x56\x46\xa7\xa4\xf7\xe5\x55\xe3\x5b\xd2\x91\x3a\x30\xc5\x53\x78\x06\x96\x97\xd7\xb5\x67\x8e\x23\xd5\x5f\xdb\xda\x4c\x1a\x10\x1c\x9e\xcb\x9c\x36\x38\xb6\xc9\x73\x17\xdf\xa9\x32\x2c\xd5\xcf\xab\xaf\xbe\xea\x2e\x5c\xb8\x40\x1b\x1b\x1b\x0d\x83\x04\xa8\x75\x71\x18\xf0\x99\x57\x26\x7c\xe3\x27\x7e\x49\xba\xc8\xdc\xe2\x64\x58\x1e\x1f\x4c\xca\xc3\x9b\x6b\xc5\xcd\xfd\x71\x71\x6b\x3a\x28\x6f\xcf\x73\x3b\x5d\x64\x6e\x5a\x1a\x37\xb7\xe4\xac\x25\x58\x6b\x5c\x61\x8d\xb3\x96\x5c\x69\xc9\x95\x85\x71\x8b\x79\x6e\xa7\x27\x03\x7b\x78\x38\x2a\x77\x6f\xad\x16\x57\xdf\xd9\x9c\xbd\xf1\x8b\x73\x27\xaf\xbe\x7e\x6e\xfa\xb3\x2b\x5b\xb3\xb7\xf6\x56\x8a\xab\xd3\xdc\xed\x5b\x72\xb7\x89\xe8\x08\x44\x61\x5f\x4b\x30\x5a\xa6\xa8\x36\xe3\x06\x4f\x4b\x01\xa0\xe4\xd7\xfb\xfb\x67\x5c\xba\x74\xc9\x5d\xbf\x7e\xbd\xad\x2f\xa4\xea\x52\x1b\x27\xc1\x60\xba\xe4\x2e\xf5\x9c\x6c\x1f\x85\xc7\x36\xbe\xe3\xb3\x76\x01\x9d\x74\xc7\x49\xe1\x50\x11\x29\xc4\xb4\x99\x23\xcf\x2f\x15\x56\x10\x70\x39\xc3\xd1\x0c\x98\xb6\xca\xb5\x00\x30\x9d\x4e\x1d\xd0\x38\x61\xc4\xf9\xe1\xcb\x99\x04\xc4\xb3\xfd\x15\x3d\x42\x6e\x8d\xc3\x3c\xb7\xc5\xb0\x34\xf9\x99\x93\xc1\xbd\x79\xe9\x4f\x19\x45\x63\xa2\x36\x12\x3c\x42\xcf\x44\x7d\x24\x59\x2e\xeb\xc4\x2f\x7d\x86\x0d\x5c\x9e\x2b\x9e\x27\xbc\x55\x3b\xd4\x03\xce\xda\x98\xa9\x8c\x1e\x66\xa0\x34\xaa\x97\x9f\x72\x42\x7d\x0f\x0d\x10\x8f\xf0\x55\x24\xd8\x07\x23\xbd\x91\xc5\x0d\x18\x10\xc1\x80\xb2\xdc\xd2\xd6\x64\x9e\x6d\x8d\x4b\xe3\xca\x0c\x87\x27\x83\xf2\x78\x91\xb9\xb0\x9e\xca\x03\x6f\x0f\x02\x20\x2f\xa9\xd3\x06\xe2\xae\x70\x27\x79\xdb\x60\xdb\x06\x27\x09\x97\xc2\x73\x27\xe5\xb8\x93\x90\xa2\xd1\x35\x59\x48\x05\xad\x2f\x76\x85\x0f\xd2\x66\x29\xda\x5d\x7c\xa4\x60\x53\xf9\xe4\xa4\x8a\xf7\x75\xd9\xef\x35\xb8\xbe\xa1\x8b\x17\x93\x48\x97\xba\x4a\xab\xd3\x54\xde\x94\x7e\xec\xaa\x1f\x69\x88\x6b\x65\xd0\x68\x74\xf1\x94\x9a\x29\xa7\x78\xd1\xfa\x18\x89\xf7\xd4\x44\xb8\x8b\x6f\x89\xb3\xf5\xf9\xdf\xfe\xed\xdf\xe2\xd1\x68\x65\xb2\xe5\x1f\xe3\xb3\xf5\x11\x61\xe9\xa5\x04\xc1\x82\x60\x1d\xa1\x28\x32\xb7\x38\x1e\x96\x47\xb7\x47\xe5\xfe\xad\x95\x62\xf7\xc6\xda\xe2\xfd\x1b\xab\x8b\xeb\xbb\x2b\xc5\x8d\x83\x71\x79\xeb\x70\x5c\xde\xda\x1f\x97\xb7\xf6\x27\xc5\xf5\xfd\x49\x71\x73\x7f\x52\xdc\xb8\xb9\xba\x78\xff\xea\xc6\xec\xf2\x95\xad\xd9\x1b\x6f\x6f\x4f\xdf\x78\x7b\x7b\xfa\xc6\x95\xad\xf9\x2f\xde\x5f\x9f\xbf\xb3\x3f\x29\xde\x9f\xe6\x76\xcf\x9a\x6a\x2f\x8b\xdf\xc3\x72\x08\xc4\xfb\x5a\x4e\x50\x19\x2d\xe1\x6a\xff\x45\xf8\x26\x91\xe7\xd5\x52\x75\x5b\xae\x05\x00\xf1\x5d\xa2\x54\x9d\xa5\xea\x58\x4e\xf2\xb5\xf1\xb7\xab\x6d\x8c\x78\x3f\x0d\xfd\x94\x67\x87\xbf\x57\xed\x88\xbb\x17\x34\x8f\x48\x2a\xbe\x6f\x1c\x4f\x0b\x21\x05\x93\xa4\xfb\xdc\x73\xcf\x99\x70\x76\xdf\xa7\x85\x2f\x84\xe6\x00\xc6\x44\x34\x06\x30\x76\xce\xad\x11\xd1\x9a\x73\x6e\x83\x40\x1b\x99\xc3\xd6\xf9\xc3\xe1\x43\x9f\x78\x7b\xe3\x77\x1f\xd8\x1b\x3d\x3d\x2c\x69\x25\xe1\x10\x6c\x7e\x54\x91\x10\x4f\x15\x55\x76\x81\x76\x97\x4a\xc8\xc7\xf6\xa3\x38\xd4\x4b\x36\xd1\xa8\x81\x4f\x40\x65\xf0\x88\xe6\x0e\xb8\x1b\xc7\xaa\xd9\x33\xb0\x4c\x56\xa6\x73\xa0\x60\xf0\x84\x64\x0b\x37\x3f\x19\xd8\x9f\xbf\xb7\x31\xfb\xbf\x5e\x3b\x77\xf2\x7f\xbf\x7d\x66\xfa\xda\xd1\xc8\x1e\xa0\xea\x44\xfc\x2f\x74\x1e\xeb\xeb\xda\x02\xc0\xb5\x6b\xd7\xf0\xed\x6f\x7f\x9b\x1b\xb9\x80\xde\xf6\x3c\x3e\xd5\xde\x6d\xf1\x49\xeb\x5c\xe0\x97\xe9\x1a\xdd\x2e\xd9\xec\xa2\xd1\x86\x4b\x06\x99\x3f\x04\xb9\x54\x20\x71\xcb\xb2\xf4\xe5\x33\xc5\x83\xa4\x99\xc2\xd1\x17\x2e\xc5\xab\x2c\x27\x0f\x32\x5d\x6b\x3b\x09\xdf\x97\x47\x8d\x5f\x8d\x7e\x1b\xff\x29\x5e\x65\xf9\xda\x64\x56\x93\x0b\xad\x8c\x6d\xed\xa6\x95\x57\xe3\xad\x4d\x5e\xfa\xf6\x0d\x8e\x53\xa3\xdd\x87\x0f\x9e\x5f\x96\x21\xd5\xbe\x77\xd2\xdf\xd4\xf2\x3e\xf2\xc8\x23\xe6\xa3\x1f\xfd\x28\x2e\x5c\xb8\x10\xbc\x2b\x86\xed\x71\xcc\xfd\xef\x90\x8d\x07\x43\x00\x61\x4c\x08\xe3\xc3\x0a\x7b\x1e\x3b\xe7\x86\x44\x34\x24\x87\x61\x6e\x69\x32\x2c\xcc\x70\x5c\xd0\xca\xa0\x34\x43\xe3\xc8\xc0\xc1\x10\x60\x00\x67\xad\x81\x9d\x65\x76\x3a\xf3\xde\x99\xc2\xb8\x99\x25\xcc\x1d\x5c\xf8\xc6\xd0\x9c\x88\x82\x71\x32\x05\x10\x3c\x2c\x53\xbf\x34\x34\xf7\x97\xcc\xcd\x3d\x6c\xe1\x9c\x5b\x32\x5a\x9e\x7f\xfe\xf9\x94\xfe\xec\xd3\xc6\x5d\x7a\xa2\xab\xff\x6a\xb2\x9f\xe2\x25\xd5\x57\x53\x61\x09\xbe\x6d\xa9\xa8\x6b\x76\x20\x2d\xf0\xd4\x2c\x46\xc3\xd5\x66\x65\x73\xfa\x62\xd1\xa4\x51\x80\xb6\x19\x71\xc3\x4a\xbb\x74\xe9\x52\xb8\x51\x97\x8f\xd6\xe1\x54\x51\xb4\x34\xbd\x35\x5e\x7d\xdb\xc8\xef\x77\x99\x0e\xac\x35\x8e\x68\x73\x9a\x9f\x1d\x15\xd9\xaa\x71\x94\xc5\x69\x03\xbb\xfe\xb6\x32\x52\xa8\xb9\x2c\x14\x9f\xc9\x1b\x25\x4b\x76\x0b\xc2\x5a\x0f\x37\x23\xe3\xcd\xbc\x0c\x3e\x7a\x4b\xc8\xc3\xc5\xb4\xfa\xb6\xc5\xba\xa2\xb8\xe7\xa5\xfe\x28\x64\xa8\xb1\xe0\x59\x71\xa2\x76\x25\xdf\xce\x01\x86\xbc\xe7\xa5\xc8\x36\xc7\x85\xc9\xaa\x0f\x33\xda\xc3\x45\xee\x8a\x50\x07\x54\x1f\xf3\x0b\xb3\x9a\xca\xfe\x71\xce\xad\xad\xad\xe1\x91\x47\x1e\xa1\x9f\xfe\xf4\xa7\x8e\x51\xd3\xbc\x1c\x5c\x4e\xf8\x9f\x06\xa7\xc5\xb7\x3d\xa7\x66\x0c\xda\xcc\x50\x9b\xe9\xf6\xa1\x97\x2a\x83\x0c\xa9\xbe\xc0\xeb\x47\xce\x98\x53\x33\xd8\x36\xbe\x52\x7c\x6a\x21\x55\x3f\x1a\x0e\x0d\xae\xcd\x40\xe0\x33\xb6\x90\x26\xdb\x58\x4b\xe7\xf9\xe4\xb3\x45\x73\x76\x98\xaa\xf7\xb6\xf2\x4b\x7c\x72\x06\xa8\xcd\x34\x35\xfc\x9c\xef\x36\x3a\xa9\xb6\xe4\x65\xe6\xcf\x1a\xdf\xbc\x8c\x5a\x5f\x91\x74\x24\x3c\x6f\x17\x8d\x1e\xd7\xc1\xbc\x1d\x64\x3e\xf9\x9c\x6a\xd7\x00\xa3\x79\xa1\x52\xf4\x35\x78\x4d\xb6\x34\xbe\x64\x7f\x25\x00\x6e\x7f\x7f\xdf\xfd\xfc\xe7\x3f\x77\xec\x1b\x46\x51\x3f\xb1\x67\xeb\xc7\x83\xc0\x8f\x45\x75\x4a\xc7\xb2\xe7\x12\x95\xc7\x23\xec\x2f\x59\x38\xb8\x85\x35\x98\x2e\x72\x77\x72\x32\xb4\x07\x87\xa3\xf2\xe0\xf6\xb8\xdc\x3d\x18\x15\x7b\xb7\x27\xe5\xad\x83\x51\xb1\x7b\x7b\x54\xde\x9a\x0e\xdd\xfe\x22\x77\x07\xa5\xc1\xa1\x23\x9c\x80\x70\x44\xd5\x29\xa1\x63\x54\x9b\x6f\x0f\x51\x5f\xe1\x7f\x04\x6f\xbc\xf8\xa5\xa1\x19\x55\xdf\x23\x8a\x9e\x16\xef\x11\x8a\x46\x0b\xb0\x74\xaa\xb3\xad\x8e\xa1\xc0\x85\x90\xf2\x18\x12\x96\xdb\x37\xd5\xdf\x64\x3e\x29\xdf\x92\x7e\x1f\xbd\xd0\xa0\x95\x63\x39\xa4\x2c\x27\x0d\xae\xed\x9d\xe3\x48\xa5\xb5\x59\xe1\x3c\xad\x8b\x96\x8c\x6f\x4b\xe7\xb4\x2d\x80\x02\x95\x25\x1b\xac\xef\xa9\xff\xcd\x41\xc8\x8b\xcc\x0d\xdf\x3e\x33\x7d\x7d\xfb\x38\xbf\x67\x5c\x98\xb5\xb5\x59\x76\xce\x38\xbf\x19\xab\x5e\x27\x02\x00\x3f\x78\x03\xd5\x65\x74\xc2\xab\x21\x8c\x96\xd0\x3b\xc3\xa6\xdc\xda\xd8\x20\x8e\x92\xc5\xa0\xde\x88\x0b\x7f\x6b\x2e\x4f\x6b\xc4\xb8\x3a\x85\x59\x21\x61\x6f\x0d\x8f\xae\x2d\x23\x4e\xcf\x35\x18\x36\xa0\xe1\x78\x61\x9e\xb8\x70\x7b\x98\x1b\x47\x86\x00\xbc\xb1\x3d\xfd\xf9\xd1\xb0\x3c\x08\x9b\x75\xfd\x6f\xe1\xeb\x2e\xdc\x29\x60\x00\x58\x76\x34\x3d\xb4\x41\x08\x6d\xed\xdc\x35\xd3\xd4\x42\x1f\xb9\x3d\x0d\x7c\x9b\x87\xe2\x34\x74\xfa\xe0\xe4\xe9\xa7\xc1\xff\x41\x78\xb9\x5b\xa1\xad\xaf\xa6\xc2\x07\xe5\xbb\x6d\x96\x76\xa7\x72\xd2\xa5\x97\x52\xcf\x29\x8f\x4b\x9f\xe7\xbb\x21\x63\x6d\x86\x63\x1b\xfc\x69\xeb\xbf\x0f\x1d\x2d\xbe\x0f\x9d\xd3\xca\x83\x06\xdb\xe5\xa5\xc1\xb5\x6b\xd7\x70\xcf\x3d\xf7\xc0\x7b\x2c\x42\x7c\x41\x44\x39\x96\x3d\xc7\xc1\x38\x28\xfc\x49\x9e\x39\x80\xa1\x87\x1b\x02\xc8\xbd\x77\x26\x78\xf0\x8d\xc7\x13\x68\x86\x49\x5d\x1c\x6b\xbc\xd1\x13\x7e\xa5\xd7\x7a\xca\x9f\x19\x4c\xcc\x27\xf8\xb2\xce\x39\x6d\x79\xe8\x54\x75\x82\xbb\xa3\x43\xee\xb6\xee\x6d\x95\x2f\x6d\x8f\x8b\xb4\x64\x79\x68\x9b\xb5\x75\x11\xe5\xde\x10\xcb\xde\x79\x5a\x6a\xd6\xd7\x87\x9e\x66\xed\x01\x00\xb6\xb7\xb7\xcd\x3f\xff\xf3\x3f\xf3\x53\x46\x61\x2f\x56\x18\xe1\x43\xb9\xf9\xb3\x41\x75\x44\x1a\xf3\xcc\x39\x6b\x60\xd7\x66\xd9\xc6\xea\x22\xdb\x18\x58\x1a\xc9\x7b\x6a\x1d\x80\xc6\x4e\x5c\x71\xc5\x3f\x50\x1b\x36\xd1\x48\x71\x81\xd1\xf0\xfd\x0a\xf9\xad\x0b\x34\x36\xfe\x46\x12\xde\x55\x52\x75\x8a\xda\x33\x13\xee\x69\x91\x27\x8f\xaa\xcd\xba\x95\x97\xa5\xb9\xef\xa6\xbe\xbe\xba\x31\xcd\x09\x78\x9c\x2f\x8e\x03\x08\x94\x65\x96\x36\x27\x85\x39\x3b\x59\x64\x43\x47\xd8\x3f\x1a\x95\x47\x8b\xcc\x95\xa0\xea\x94\x11\xd5\x37\xec\x86\x7d\x70\x71\x4d\xf9\xe2\xc5\x8b\xb4\xb3\xb3\x43\xec\x98\x5e\x60\x83\xcf\x6e\xa5\x97\x8d\xc7\x73\xf9\x30\x22\xaf\x9c\x1d\x43\xe0\x92\x79\x02\x4e\x28\x71\x92\x0f\x49\x4b\xd2\x91\xb8\x65\xb9\x52\x65\x6c\x83\xd1\x66\x3d\xda\xaf\xec\xab\x32\x4d\xa3\x29\xeb\x43\x9b\xd1\xcb\x3e\xa4\xbd\x77\x95\x21\xc0\xa5\x94\xa3\xac\x67\x1e\x27\xeb\x38\x25\x03\x12\xb7\x9c\xcd\xa7\xca\x2b\x71\xa4\xf2\xf1\x3a\x4e\x79\x3b\x24\x8f\x7d\x78\x02\x96\xdb\xa7\x0d\xb7\x6c\xeb\xbe\xb8\x25\x8c\xac\x37\x2d\x70\xdc\x12\x07\xe7\x57\x83\xd1\xc6\x0e\xa9\x9b\xfb\xe2\x0e\x21\x25\xeb\x1a\xee\x54\x9b\x45\xdc\x3f\xfb\xd9\xcf\xec\xa3\x8f\x3e\x4a\x2b\x2b\x2b\xf1\x24\x11\x80\xb0\xb9\x35\xee\x75\xf1\x2f\xd6\x3f\x06\xcf\x4b\xf0\xb6\x94\x61\xe9\x86\x88\x16\xec\x79\x16\x2e\x86\x23\xa2\x13\xef\x3d\x39\x21\x7f\x61\x1c\xfc\x46\xdb\x70\x4a\x28\xec\x61\xa1\xfa\xc4\xd0\xcc\xc7\x87\x0d\xb8\x33\xe7\xdc\x02\xfe\x3b\x44\x10\x46\x0b\x50\xed\x69\xf9\xfc\xe7\x3f\x6f\x5e\x7f\xfd\x75\xb2\xd6\x6a\xfd\xaf\xab\xee\xbb\xe4\x8a\xc7\xf3\x7a\xd7\xfa\xb9\x26\x8f\x6d\xfd\xbf\x0d\xb7\x26\x03\x11\xb7\x34\x5c\x34\xa5\xcc\x11\xf6\x31\x28\xf8\x80\x20\x3b\x36\x8f\x27\x25\xee\xb4\x74\x34\x43\x67\x09\xcf\xc9\xc9\x89\xdb\xdc\xdc\x34\xe1\x88\xb4\x30\x10\x88\xe5\x8b\x1d\xdf\x5b\xcf\x04\x20\x03\x21\x3f\xc9\xed\x22\x77\x84\xf5\x59\xbe\x35\x5e\xb0\x6b\xa0\x63\xc6\x70\x45\xbf\xd7\x1a\xfc\xeb\x88\xd1\x80\xa8\xc7\xb6\x38\x32\x93\x37\x26\x18\x4f\x0d\x46\x28\x18\x35\x88\x4e\x90\x60\x88\x38\x84\xbc\xa8\xae\xfc\xa7\x50\x90\xe6\x09\xa3\x18\xa8\x89\xbc\xf2\x0c\x51\xfc\x90\x63\x05\x22\x4e\x3d\x85\x7c\xd5\x43\x75\xc3\xee\x22\xbb\x67\x7d\x96\x8f\x8d\xc3\xfe\xc1\xb8\x38\x9c\x67\x6e\xc1\x36\x2e\x07\xa1\x23\x6f\xbd\x84\x9d\xfb\x44\xcb\x5f\x96\x76\x68\x0a\xba\x65\x5c\x72\x59\x94\xf2\xe0\x94\xbf\x10\x4c\x22\x5e\xc6\x05\x3e\x35\x3a\x32\x4e\xf2\x99\xe2\x87\xe3\x94\xf8\x39\x3e\x99\xc6\xdf\x53\x1d\x5c\x0e\x18\x1c\x3e\xc5\xbf\xac\x4b\xad\x3e\xb4\xfc\x29\x83\x51\xe6\x4d\xfd\x71\xb8\x14\x0e\x28\xf1\x72\xe0\xd7\xfa\x35\x87\x93\x8a\x52\xd6\x9b\xa4\x2f\x75\x83\xac\x53\xad\xad\x64\xdd\x48\x78\xad\xfe\x64\x3b\xf1\x38\xd9\xf6\x6d\x0a\x9d\xa7\x6b\x75\x29\x8d\x3e\x29\x4b\x40\x9a\x47\x19\xb4\xc9\xa3\xa4\xa3\xc9\x22\x87\x69\xa3\xa7\xc9\xae\xc4\xa5\xb5\x3f\xaf\x37\x39\xa6\x68\xc6\x8e\x56\xaf\x8d\x72\xbc\xf2\xca\x2b\x8e\xdf\xae\xee\x8d\x96\xb0\x59\xd7\x01\x00\x55\xb7\xcf\x3a\xbf\x24\x53\x80\xdd\x4c\x8b\xca\xa8\x58\x04\xa3\x85\x79\x4e\x66\x54\x7f\x3f\x68\x8a\x6a\xa9\x27\x2c\xf9\x1c\x7b\x63\x86\x1b\x2f\x33\xd4\x47\x9c\x4f\x7c\x9e\x39\x55\xdf\x1e\x9a\x03\x08\x46\x4b\x38\x3d\xd4\x30\x5a\xac\xb5\x78\xf1\xc5\x17\xdd\xab\xaf\xbe\xea\xac\xb5\x4c\xb3\x27\xe5\x5a\xb6\xab\xec\x13\xb2\xbe\x52\x46\x34\xd7\xd3\x92\x5e\x1b\x0c\x0f\x9a\xb1\xae\xf1\xa4\xca\x91\xbc\x39\x57\x22\x6d\x23\x90\x9a\xb1\xc9\xc1\x40\xb3\xfa\x64\x41\x52\xcf\x1a\x3f\x21\x48\xda\x1c\x2e\x18\x4f\x91\xe7\xd9\x6c\xe6\x80\xc6\x7e\x17\x2e\xcc\xf2\xdd\x78\x21\xae\x6e\xd4\x75\x8e\x6c\x06\x9c\x0c\xec\x7c\x5c\x9a\xd1\xda\x3c\xdf\x1a\x15\x66\x8d\xa2\x29\x22\x3e\x57\xee\x00\xe1\xda\x68\x14\xae\x36\x4a\x78\x69\xbc\xd1\xc2\x8f\x4b\xb3\x1c\xda\xd2\x51\x94\x52\x6f\x33\xd4\xde\x17\x8e\x98\x61\x72\x50\xf1\xd4\x36\x47\x1d\xcb\x69\xf3\x7c\x06\x64\xfc\x3d\x2f\xf7\x6f\xcc\xb2\xed\x71\x99\xdd\xba\xb1\xb6\xd8\x8b\xa7\x8d\xc2\x87\xb3\xfd\xd1\x3c\x66\x20\x06\x46\xdc\xce\xce\x0e\x29\x97\xd5\x49\xe5\x78\xa7\xa1\x2b\x7f\xaa\x33\x4a\xf9\x4e\xe5\xd5\x3c\x1c\x1a\xed\x54\x7f\x0a\x69\x52\x31\x6b\xf9\x64\x5e\x6d\xc0\xd2\xfa\x41\xc8\xa7\xe1\x93\x41\xa3\xa7\xf5\xd1\xbe\x41\x96\xb5\x6d\x06\x28\xf1\x77\xe9\x81\x36\xfe\x52\xf5\xa0\xd1\xe3\x7d\x3e\x25\x77\x29\x59\x48\x0d\xb4\x6d\xfc\xf1\x38\xa9\x6f\x52\x72\xc8\xe1\xb5\x81\x28\x55\xb6\x36\x9e\xfb\xc8\x16\x06\x83\x81\xf1\x03\xa1\xcc\xdf\x36\xd9\x4c\x19\xde\x3c\x3d\xd5\x7f\x52\x03\x1f\xe7\x8b\xb7\x95\xe4\x4b\x33\x76\x25\x7f\x7c\x50\x07\x00\xfc\xc6\x6f\xfc\x06\x7d\xfd\xeb\x5f\xb7\x6c\xdf\x4b\x05\x50\xef\x7d\xb1\x7e\x5f\x8b\xf3\xf7\xbd\xf0\x65\x9e\x02\xd5\xd2\x78\xe1\x0d\x8d\x05\xea\x4d\xb6\x33\x54\xc6\x4a\x78\x3e\x09\x7f\x22\xfd\x24\x6c\xbe\xc5\xf2\x61\x87\x02\xd5\xc5\x72\x61\x6f\x4d\x19\x78\x02\xaa\x8d\xb8\xde\x7b\xad\x0d\xfa\x6d\xf2\x29\xeb\x9e\xd7\x25\x8f\x97\xfa\xa3\xcd\x68\x96\xef\xd2\xa0\x69\xeb\x97\xf2\x99\xf3\x97\x6c\x57\x7e\x73\x6e\x1f\xa4\xf2\x59\x33\x5a\x24\x71\x9e\xaf\x4d\x69\xb5\x0d\x1a\xbc\xf3\xb6\x0d\x70\x9a\x90\x2f\xc1\x85\x5b\x75\xbd\x30\xc6\x25\x23\x76\xf2\xa8\xa1\xe0\x7c\x5c\x3e\xcf\x5d\x39\xcf\xec\x7c\x5c\x98\xd1\xea\x3c\xdb\x1c\x96\x66\x45\x1a\x11\x81\x72\xea\x54\x51\x88\x8b\xbd\x48\x9c\x2a\x8a\x9e\x92\x68\x6f\x34\x2d\x9f\xd4\xa9\x22\x40\x18\x42\x0c\x28\xa0\xd2\xd2\xa3\x33\x25\xf0\xad\xd0\x96\x86\x16\x01\x64\x1c\xad\x8c\x0a\x73\xdf\xd6\x49\xfe\xd0\xe6\x74\x70\xeb\xfa\xfa\xfc\xe6\x3c\x77\xb6\x2a\x3b\xf3\x1e\x31\xf7\x2b\x9a\x1d\xcb\x89\xe3\xd2\x21\x9d\x07\xcd\xa0\xe6\x8a\x9f\x77\x32\x6d\x46\xd6\xc7\xe0\x4d\x0d\x2a\x06\xcb\x74\xb4\x7e\x92\x1a\x8c\xfb\x0c\x26\x92\x1f\x69\x40\x71\x05\xa4\x0d\x1a\x6d\x86\x54\xaa\x8f\xa4\xfa\x9e\x1c\xc8\x35\x78\xad\x4e\x24\x9c\x4c\xd3\x66\x66\xbc\xdb\xf0\x3f\xad\x2d\x65\x9d\xa4\x26\x2c\x5c\xc9\x69\x3c\x6a\xde\x09\x59\xbf\xfc\x4f\x9b\xf9\xf3\x3a\x5a\x1a\x08\x15\x3a\x21\x3f\x8f\xd7\xf2\x05\xdc\x96\xc1\x3b\x91\x57\xf2\x2d\xfb\x8e\x94\x7f\x6d\xc2\xa8\xe6\x3b\x7b\xf6\x2c\xfd\xf9\x9f\xff\x79\x9c\x48\x58\x6b\xdd\xd6\xd6\x96\x99\x4e\xa7\xbc\x1e\x43\xd0\x06\x25\xd9\x3e\xb2\xfd\xa4\x11\x26\x79\xa2\xc4\xb3\x36\x68\xca\xf6\xe0\xbc\xa4\x96\x25\xe4\x4c\xce\x00\xa0\x1f\xfd\xe8\x47\x16\xa8\x26\xb3\xe1\xd3\x00\x00\xe2\xbe\x14\xe6\x81\xb1\xdc\x90\xf1\xc6\x4b\xe9\xbd\x2e\x85\x5f\xce\x99\x53\x75\xfa\x67\x86\x7a\xd9\x68\x11\x3c\x2f\xde\x33\x13\xbc\x31\x33\xaa\x2e\x91\x9b\xa3\xb9\x24\x34\xf7\x06\x51\xb8\x72\xc2\x7a\x9a\xc1\xcb\xe2\x80\xa5\x23\xcf\x5a\x7f\x90\xf2\x99\xd2\x65\x29\xb9\xe7\x86\xa8\x46\x47\xd3\x4b\x29\x23\x25\xd5\x8f\xb5\x7e\xce\xf9\xe0\xe5\x58\x2a\xaf\x41\x53\x28\x65\xe0\xe9\xf2\x57\x06\xcd\xb2\xb3\x58\x56\xac\xa9\xa0\xc1\x19\x91\x16\xf0\xb5\xe1\x09\xf9\xb8\x10\x37\x42\x38\x36\xe6\x3d\x02\x01\x67\x70\x09\x06\x6b\x37\x6c\x96\x0a\x7f\x87\x00\x8e\xaf\xaf\x2e\xde\x7f\xed\xdc\xc9\x2b\x57\x37\xe6\xaf\xcd\xf2\xf2\x10\xae\x6e\xb5\x4a\xea\x2b\x1a\x61\xbb\x0b\x80\xf8\xc0\xd3\x43\x20\xd1\x4c\x11\x57\xf8\x52\xa8\x73\xd5\x3e\x17\xc7\xb2\x2a\x6a\x93\x8f\x52\x55\xff\x8b\xb7\xc6\x30\xd0\x80\x93\xe7\x71\x0d\x20\x72\x6e\x89\x47\x17\xcb\xd2\x94\x49\xe3\xb0\xb6\x32\xcf\x2e\x7e\xe8\xe6\xf8\x7f\xfb\xcc\x6b\x5b\x7f\x78\xe1\x60\x78\x21\x2b\x69\x85\xfc\x91\x41\x00\x43\xaa\x36\xab\x55\xd7\xf9\x01\xc6\xff\x5a\xa0\x3a\xa6\xee\x51\x49\x39\x01\x74\x43\xd8\x0a\x58\x29\x17\x1a\xbc\x0c\x5c\x2e\x24\x0d\x89\x5b\xd2\xe9\xea\x2f\x12\x57\x9f\xa0\xe5\x49\x95\x8f\xc3\xa5\xea\x27\x15\x64\x5f\x92\xf9\x24\xcd\x90\xa7\xad\x7e\x52\xb4\x35\x5e\x39\xbe\x54\x1d\xa7\xca\x94\x9a\x39\x6a\x65\xd2\x70\xb6\xe5\x4b\xf1\x94\x82\x91\xf0\x1c\x9f\xe4\x45\x83\xed\x53\xff\xa9\xf6\x97\x3c\x75\xc1\x40\xc0\x5b\x00\xf8\xc4\x27\x3e\x61\x00\xd8\xaf\x7e\xf5\xab\x00\x60\x6f\xde\xbc\xb9\xc4\xd3\xde\xde\x9e\xf5\x30\xbc\x0c\x29\xd9\xd0\xe4\x44\xd2\x3e\xed\xb3\x86\x9b\x3f\xa7\xfa\x84\x7c\x86\x80\x97\x6d\x89\xbf\xfc\xcb\xbf\x34\x40\x73\x3c\xf0\x4b\x45\x16\xde\xab\x02\x6f\x98\xa0\x3e\x92\x1c\x0c\x92\x63\xbf\x0c\x74\xe8\x9c\x3b\x0c\xcf\xa8\xf6\xb3\x1c\xa2\x3a\x1d\x14\x6f\xbe\x0d\x7f\xde\xd3\x12\x6e\xc1\x0d\xcb\x43\xf1\x98\x33\x9a\x4b\x53\x08\xfc\xbd\xf0\xc2\x0b\xf6\x0f\xff\xf0\x0f\xdb\xe4\xad\xab\xbc\x5a\x5f\x49\xe9\xd5\x54\xdf\xd1\xda\xba\x75\xcc\xed\xa0\x2f\x65\x2c\x25\xd3\x31\x84\x21\x2a\xa5\x18\x52\xcc\x6a\xc2\x24\x7f\xdb\xf0\xb4\xe5\x0f\x71\x3c\x68\xf8\xfb\xf0\xc4\x71\x2d\xf1\xe4\x07\xce\x90\x1e\xce\xf3\xe7\xa8\x76\x8c\x8f\xfd\xef\x1a\xfb\xdb\x80\xc3\xc6\xb0\xa4\xed\x47\x6f\x8e\xff\xd3\x87\xdf\x5b\xfb\xc4\x85\x83\xe1\x93\x03\x6b\x86\x24\xd7\x61\x92\x81\x4d\xba\xf8\xfc\x4b\x7b\x0f\xd1\xca\xa6\x5d\x1d\x33\xbb\xcb\xc5\xb3\x13\x8f\x43\x33\xf6\x1a\xd3\xbe\x00\x27\xd8\x77\x2a\xaf\xc1\x73\x14\x52\x09\x20\x07\x07\xcc\xa7\xb9\xfb\xc5\xfb\x1b\xb3\xff\xe3\xa5\xfb\x8e\xbe\xfb\xce\xe6\xf4\xca\x6c\xe0\xc2\x5d\x04\xdc\x18\xb4\xec\x37\xcc\x6a\x00\x34\xee\x20\xb8\x93\xd0\x36\x28\x9f\x16\xcf\x07\xc5\x71\x37\xc3\xdd\xe2\xe7\x97\x5d\xae\xae\x3e\x0f\x74\x1b\x20\xa7\xd1\x3f\xa7\x81\x69\xd3\x39\x77\x82\xbb\x8f\xee\xba\x93\x32\xa6\x60\x4e\xab\xef\x3a\xf9\xfe\xca\x57\xbe\x62\xfe\xea\xaf\xfe\xca\x3e\xfb\xec\xb3\x86\xeb\x95\xd4\xe1\x80\xc4\xa9\x95\x2e\x43\xa3\x4f\x9b\x22\x01\xd3\xa7\x3f\x77\xd1\xb9\xa3\xfa\xe6\x77\x7e\xb1\xfa\xe0\x86\x77\x63\x32\xcf\xef\x84\x91\xf0\xa2\x3e\xb9\xce\x6b\xdc\x75\x05\x36\x58\x33\x9d\xd8\x80\x49\xb4\x83\xac\xa7\x3e\x75\x82\x1e\x30\xbf\xea\x3e\xda\x87\x36\x0f\x56\x5b\x2a\x32\x90\x53\xeb\xf6\x77\xe9\x8a\xd5\xdc\xd3\x29\x58\x88\x5f\x83\x7a\x4c\xb5\x68\xba\x86\xa5\x6b\x37\xc5\x07\x7f\x0e\xf0\x8d\xf2\x9d\x3f\x7f\x9e\x8e\x8f\x8f\xb9\x7b\x90\xbc\x7b\x10\xe1\x19\x00\xbf\xa8\x08\xf0\xfb\x5d\x40\x30\x25\x01\xf3\xdc\x2d\x0c\x60\xd6\xe7\xf9\xda\x64\x61\xd6\x8d\xff\x6a\x28\xdf\x44\xbb\xe4\xf2\x60\x2f\xdc\x60\xa8\x88\xb2\x92\x2e\x79\x65\xc2\xc6\x11\xc4\xbb\x57\x1a\x1b\x71\xe3\x92\x0e\xc5\x38\x20\xdc\xce\x5b\x31\xa3\x1e\xaf\xf6\x88\x08\xc2\x68\xf1\xf8\xab\x25\x23\xbe\xe9\xb8\x76\x27\xd5\x9b\x81\x09\x04\xca\x72\x8b\x8d\xc9\xc2\xdc\xbb\x3e\xcf\x47\x8e\x70\x7b\x3a\xb0\xe1\xc4\x51\x8d\xb6\xfe\xb8\x25\xa1\x9a\xd5\xc4\x52\x5f\xbc\x78\x91\x9f\x38\x92\x32\x18\xe4\x42\x73\x93\x07\xd9\xd0\x5c\x92\x9a\xdb\x5a\x83\x91\xb2\x28\x79\x90\x70\x68\x81\xd3\x5c\xb3\xd2\x1d\x2b\xdd\xae\x5a\xd9\x90\xc8\x9f\x72\xc9\x6a\xb8\xb8\x44\x49\xf8\x54\xf9\x34\xdc\xb2\xde\x64\xfe\x36\x78\xcb\x70\x77\xb9\xa7\x35\x1a\xd2\x6d\xac\xd5\x21\xb0\x8c\x5b\xd3\x17\x1a\x1f\x3c\x6f\xaa\xed\x38\x7d\xfe\x6c\x45\xfe\x36\x5e\xf9\xe0\x92\xaa\x07\x9e\x57\xf2\xaf\xcd\xac\xb5\xfa\x4b\xd5\x9b\xfd\xca\x57\xbe\x62\x7e\xf3\x37\x7f\x93\xf2\x3c\x87\xdf\x98\xca\xef\x61\x8a\xfc\xf8\x4d\xf5\x95\xf6\x20\x02\x3f\x11\xf8\x85\x2f\x7c\xc1\x5c\xb8\x70\x81\xde\x7a\xeb\x2d\x30\xfc\x56\xa1\xc9\xe3\x34\xf9\xb5\xd0\xeb\xdb\x09\x3c\xa9\x3e\x0d\x06\xab\xe9\x0a\x49\x5f\xab\xf3\x58\x6f\x67\xcf\x9e\x35\xeb\xeb\xeb\x74\xe6\xcc\x19\xac\xae\xae\x06\xdc\x11\x7f\xd8\xc0\x0b\x34\x3e\x66\xe8\xe0\xf7\x9e\xf8\xa5\xa3\x12\xfe\x1a\x7e\xd4\xfb\x53\x16\xf0\xfb\x55\x5c\xf5\x4d\x21\x7e\xe3\x6d\xd8\x74\x5b\x86\x7d\x35\x61\x53\x30\xaa\x86\xb0\xfe\x11\x2f\xbd\xf4\x12\x76\x77\x77\x69\xb1\x58\x48\x79\xd1\xe4\x80\xc7\xf1\x72\xf3\x3a\xe7\xf5\x9b\xaa\x37\x39\x8e\xb6\xf5\x11\xcd\xa8\xd2\x60\x34\xdd\x2e\x65\x5d\xb6\x3b\x97\x09\x0b\xc0\x88\x21\x72\xc9\x22\x03\x7b\xe7\x30\x5d\x33\x1b\x2d\x9f\x96\xb7\xeb\x5d\xf2\xa4\xbd\xa7\x82\x9c\x05\xa8\x3c\xb1\xe5\x0a\x6e\x4d\x07\xaf\x4b\xf0\xbc\xac\xf8\xbf\x0d\x78\xcf\x8b\xb1\xd8\xd8\x3e\x1e\x3c\xf4\xd4\xb5\x95\x8f\x3e\x79\x7d\xe5\x99\xf5\x69\x76\x8f\x61\xde\x89\xfa\x32\x39\x1f\x95\x38\x35\x14\x83\x8f\xd4\xd2\x98\x72\x51\x66\x44\x6c\x74\xaa\xc9\x37\xf0\x4a\x67\x4d\x34\x82\x7c\x1e\xd5\xbe\xe2\x74\xb5\x34\x25\xce\xc2\x15\xf3\xdc\x5e\xb9\xb9\x5a\xfc\xe0\xad\x33\xd3\xff\xf3\x8d\xed\x93\x97\x6f\xad\x2e\x6e\x94\xa6\xd5\xf3\xd2\x98\x59\x1c\x1c\x1c\xe0\x9b\xdf\xfc\xe6\x2f\xdb\xeb\xd1\x67\x76\x70\x27\xb0\xff\x11\xc3\x7f\x24\xfe\xb5\x99\x39\x7f\x4e\xa5\xa7\xf0\x74\xe1\x3b\x2d\x1f\x7d\x42\x17\xdf\x29\x3e\x43\xe8\xcb\xf7\xd2\x2c\xf3\x03\xe4\xc3\x57\xbe\xf2\x15\x33\x1c\x0e\x25\x6f\x0d\xc3\x85\x4d\xd8\xb8\x37\xa0\x81\x07\xa8\xbc\xa3\x9f\xfd\xec\x67\xcd\xf7\xbe\xf7\xbd\x2e\xbe\xa0\xc4\x9d\xb6\xcd\xee\x46\x1b\x9f\x2a\xfe\x91\x47\x1e\x31\x6f\xbd\xf5\x56\xc3\x23\xa5\xd4\x8f\x49\x3c\xa3\xe3\xd9\x0a\x1d\x6e\x53\xe9\x2d\xde\xae\xae\x32\x7f\x10\x99\x3e\x0d\xee\xbb\xfd\xdc\x1b\xb6\xed\x38\x74\x18\x9b\x64\x81\x52\xb3\x32\x9e\x4f\x7a\x5e\x8c\x88\x93\xef\x12\x07\xcf\x27\x3d\x26\x1a\x6e\x6d\x46\x29\x2d\x36\x8d\x1e\xdf\x98\xc5\x37\x91\x92\xf8\x0d\x06\x4d\xd8\x6c\x6a\x1c\x01\xf3\xcc\xd9\x22\x73\x6e\xbc\x30\xc3\xf5\x59\xb6\x9d\x97\x66\x08\x20\x1e\x51\x96\xc7\x93\xe3\xd1\x60\xc9\x28\x37\x2e\xa2\x22\x61\x46\x05\xcf\xc3\xee\x63\x71\x1e\x3b\xc5\x73\xcb\xcc\x98\x08\x1f\x83\x0c\x70\xac\x73\x10\x03\x24\xd4\xb4\xa9\x99\x35\xd2\xa5\xaa\xdc\x0d\x3e\xf8\x94\x27\xb2\x06\x32\xb9\xa5\xb5\x71\x61\xce\xaf\x2e\xb2\xcd\x61\x61\x9c\x25\x77\x3c\xcd\xdd\xac\xcc\x9c\x15\x59\x63\x76\xb6\x39\xda\x8d\xc7\x63\x08\xef\xcb\x2f\x23\x9c\x06\x77\x9b\x87\x46\x06\xad\x5f\x68\x71\x1f\x34\x70\x7e\xba\x70\xa7\xbc\x48\x6d\x78\x3f\x28\x5f\xa9\xb8\xa6\xb8\x2c\xc7\xa7\xd2\xa5\x37\xc1\x76\xc0\x77\x95\x99\xc3\xb6\xb5\x67\xc8\x9f\x82\xef\xa2\xc7\x3d\x3c\x5c\x97\xa6\xf0\xc9\x67\x2b\xf2\xf5\x29\x2f\x9f\x59\x3b\xa0\x9a\x9c\x19\x63\xe2\x32\x46\xd4\x61\xfe\xc3\xb2\x7e\x50\xce\xc0\x26\x6f\xc1\x35\xea\x61\x1a\x1e\x90\x9d\x9d\x1d\xfa\xbb\xbf\xfb\x3b\xae\x97\xbb\xea\x53\xea\xef\xae\x32\xa4\xf2\x6a\x74\x52\x7d\x41\xf3\x26\x68\x1e\x9a\x25\xf8\xfd\xfd\x7d\x02\xe0\x8e\x8f\x8f\xe9\x1f\xff\xf1\x1f\xf9\xa9\xa3\xf8\x17\xaa\xc7\x3f\xc7\xa5\x9e\x00\x17\x7e\xd9\x09\x25\x07\xbf\xe9\x56\xe0\x02\x6a\x2f\x8e\x03\xaa\xcd\xb7\x97\x2e\x5d\x72\xc7\xc7\xc7\x74\xe3\xc6\x0d\x8d\x57\xcd\x2b\xc1\xcb\xd0\xd6\x77\xda\xf2\x69\xf0\x6d\xb8\xb9\x57\xa7\x4f\x1b\x4b\x6f\x97\x84\xef\xdb\x2f\x5c\xea\x02\xba\x50\xb0\x94\x15\x96\x6a\xfc\x94\x10\xc9\x8a\xe0\x05\x4e\xe5\xed\x63\x51\x73\x85\x90\x72\x31\x69\xf8\x63\x05\xfe\xc1\x1f\xfc\x01\x6d\x6e\x6e\x36\x06\x4f\xd4\x82\xb9\x54\xe9\x54\x7f\x51\x9a\xac\x01\xe6\x99\x2b\xad\x71\x6e\x6d\x96\xaf\xad\x2e\xb2\xad\x0c\x94\x01\x4d\x2f\x47\xbd\xc4\x52\x3d\x3b\x5f\x23\xfc\x82\x38\x1e\x88\xdd\xc9\x42\x0d\x83\x23\x7c\x81\xba\x36\x2e\xb8\x31\xc2\xbf\x16\x1d\x1f\xe2\x07\x15\x19\x91\x00\x17\x6a\x01\x68\x1a\x36\xc2\xf0\x6a\x94\x21\x66\x76\x31\xb6\x41\xd7\x91\xc9\x1c\xad\x8e\x0a\x73\x7e\x75\x9e\x9d\x19\x17\x26\x07\x70\x3c\xcb\xed\xc9\x2c\xb3\xb1\x9e\x51\x75\xea\xb0\x2e\x47\xa1\xdc\x21\xed\x99\x67\x9e\x89\xa7\x1c\x9e\x79\xe6\x19\xf3\xee\xbb\xef\xf2\xb6\xd5\xe4\x07\x22\x4d\xeb\x8c\x5a\x7a\x9f\x3c\xa1\xe0\x2e\x91\xce\x95\xaf\x8c\xe7\x34\xb4\x74\x99\xa6\x3d\x43\xa1\xc3\x7f\x65\xd9\x53\x34\xbb\x14\x94\x56\x9f\x9a\xd2\x93\x69\xe1\x5d\x73\x27\x03\x7a\x7b\x75\xb5\x03\xc7\x95\x52\x78\x3c\x0f\xa0\xd7\xab\x84\x97\x6d\x98\xd2\x1d\x21\x5d\xf2\x8b\x04\xac\x86\x8f\x97\x41\xe2\xe4\xb2\x25\xcb\x20\xd3\xdb\xea\x47\xd5\x79\xcf\x3d\xf7\x9c\xd9\xd9\xd9\xa1\x8b\x17\x2f\x86\xbe\x65\xfc\xf2\x4f\x30\x4a\x8c\x37\x5a\x32\x00\xc6\x80\xb2\xd5\x79\x96\x9f\x3d\x1e\x8c\x0c\x88\x0a\xe3\x60\xab\x6f\x12\x72\x6f\x02\xf9\xa5\x8b\xd8\x3f\x7d\xdf\x94\xe5\x4c\xf5\x29\x88\xb4\xb6\xba\x97\xb0\x52\x96\xa4\x31\x27\xe5\x48\xd6\x6b\x80\xd5\xda\x58\xb6\xab\x03\x80\x1b\x37\x6e\xb8\x33\x67\xce\x98\xef\x7f\xff\xfb\x36\xdc\xfb\x22\x71\xf9\x65\xa2\xd8\xb7\xc2\xbb\xfc\x0d\x38\xfd\x04\xd6\x06\x58\xd4\x63\x4d\x3c\xe2\xfc\xf1\x8f\x7f\xdc\x5c\xbf\x7e\x9d\xae\x5f\xbf\x9e\x5a\x02\x4c\x2d\xbf\xca\x32\x6a\x75\xc6\xc7\xd6\x14\x0c\x2f\x23\x04\xbc\x94\xef\x2e\x3d\x2b\x65\x43\x8e\xff\x29\x79\x90\xfc\x35\xf8\x16\x43\xa6\xca\x24\x12\xcf\xa1\x53\xdd\x2d\x77\x6f\x17\x3e\x0d\x7f\x1b\xcf\x32\xad\x8d\x87\x3e\x4b\x46\x43\xe7\xdc\x0a\x11\xad\x40\x6c\xd6\x5d\x9d\x67\xf7\x3c\x71\x63\xf2\xe1\x8f\x5c\x5d\xfb\xe4\xf6\x71\xfe\x70\xf8\x24\x80\x5c\xda\x09\x2d\xc6\x23\xf8\x3e\x13\x6d\x03\x6d\xcc\xc3\x32\x37\xf1\x2c\x61\xf5\xde\x11\x6f\x24\xb1\x65\x26\x30\x23\x07\x9e\x5e\xb4\x6f\xd0\x94\x90\xc6\x97\xa5\x03\x30\x31\x03\xc6\x79\x38\x4d\x82\x7c\x28\xc9\x1d\x4e\x73\xfb\xda\xf5\xb5\xf9\x0f\xde\xdc\x9e\x7e\xff\xad\x33\xd3\x9f\xef\x4d\x8a\x3d\x67\xe2\xd5\xd6\x05\xfb\xb3\xec\x0f\xe1\xf7\x03\x6e\xda\xfd\x65\x04\x29\xa7\xa7\xcd\x7b\x37\xcb\x73\xb7\xf1\xfd\x32\x42\x1f\x1e\xfb\xea\x9c\xb6\x67\x89\x0f\x22\xad\xaf\x5e\xea\x82\xef\xd2\x31\x77\x93\x4e\x08\xa7\xc2\xcd\x74\x19\xc7\x13\x7f\xbd\x87\x25\xea\x39\x63\x61\xd6\x67\xd9\xf0\xf1\x1b\x93\x7b\xce\x1e\x0d\xee\xb9\xb9\xb6\x78\xf7\x95\x7b\x8f\x6f\x4c\x07\x76\xee\x9a\xd7\xde\x37\x4e\x61\x02\x6a\xff\xec\xd2\xd7\x7d\xdb\x35\x94\xbb\xab\x0e\xfb\xf4\xc7\xbe\x32\x93\x6c\xd7\x95\x95\x15\x73\x7c\x7c\x6c\x01\xe0\xd3\x9f\xfe\xb4\xf9\xc1\x0f\x7e\x10\x61\x43\x7d\xf7\x5c\x2a\x8a\xfa\x38\x2c\x03\x49\x7c\x1d\x3c\xb5\x85\xd3\xc8\x5e\x9f\x7a\xb8\x1b\x72\x7f\x9a\xba\xef\x5d\x5e\xed\x23\x8b\xd2\xe2\x97\x56\x18\xb7\xf4\x5c\x4b\x3e\x6d\x06\x07\x96\x46\x02\x86\xd3\xe1\x05\x90\x78\xb5\x19\x94\x36\x1b\x92\x7c\x71\x78\x59\x16\x3c\xf6\xd8\x63\x34\x99\x4c\x1a\x71\x61\x37\xa9\xff\x0d\x02\x47\xac\xd3\x57\x9b\x75\x8d\xb3\xd3\xa1\x5d\x0c\x4a\xca\x37\xa7\xf9\xf6\xb0\x34\x2b\x15\xf6\x70\xb3\x6e\xd8\x40\x2b\xbe\xe0\x1c\x3d\x1c\xf5\x4d\xb5\x8d\xcd\xb6\xcc\x90\xe1\xd6\x45\xd3\x56\xe0\x26\x4c\x5d\x15\xd1\x60\x8a\x9b\x6b\x9b\xf4\x63\x6e\x39\x87\x08\x27\x87\xa2\xd1\x52\x59\x30\xe4\xcf\x77\x73\x7e\x96\x8c\x16\x61\x43\x19\x47\xc3\xdc\xd2\xf6\xca\x22\xbb\x67\x6d\x96\xad\x0d\x4b\x33\x9b\xe5\xf6\x68\x9a\xdb\x85\x23\x58\x57\x7f\xe6\x31\x7a\x5e\xfc\xac\xd0\xfa\x28\xda\xd9\xd9\x69\x6c\x0e\x7c\xf4\xd1\x47\xcd\x6c\x36\xa3\xa2\x28\x52\x5e\x8b\x48\x9e\xbd\x73\x38\x6d\x46\x97\x9a\x31\xc8\x19\x81\xb4\xef\x52\xf9\x53\xb8\xad\x92\xa6\xc1\xa5\xd2\x78\x08\x0a\x3b\x55\x0f\x9c\x6f\x0d\x5f\x17\x5d\xad\xec\xb2\x1e\xdb\x70\xf0\x32\xb7\xb5\x8f\x9c\xb8\xf4\x9d\xf9\xc9\x99\x22\xe7\x51\x9b\x09\xa6\x66\x70\x5a\x5d\x69\x33\x3e\x39\xc3\x95\xfa\x51\xea\xca\x54\xfb\xa4\x66\xfa\xda\xcc\xb7\x2d\x3d\xf2\xb4\xbd\xbd\x6d\x2e\x5c\xb8\x40\x7b\x7b\x7b\x4e\x4c\xc0\xf8\xdd\x54\x06\x40\xe6\x9c\xcb\x88\x68\x00\x20\x87\x43\x3e\xb0\x34\xdc\x3e\x19\xac\x3f\x7e\x73\xf2\xf8\x87\xdf\x5b\xfb\x2f\xf7\x1c\x0d\xff\x60\x63\x9a\xd3\xcd\x95\xc5\xf5\xa3\xa1\x9d\x39\x03\x7e\xdf\x55\x38\xc0\x10\x74\xa1\xdb\xd9\xd9\xa1\x67\x9e\x79\x86\x66\xb3\x19\x1d\x1c\x1c\x50\x51\x14\x5c\x6f\x4b\x99\xe7\xba\x5a\x9b\x8d\xf3\xb6\xd2\xca\x2c\xeb\x8e\x04\x6c\xea\xaf\xab\x4d\x24\x2f\x4b\xed\xba\x58\x2c\x22\x8e\xcb\x97\x2f\xe3\x33\x9f\xf9\x0c\x3d\xf9\xe4\x93\xf4\xd8\x63\x8f\xd1\xdf\xfe\xed\xdf\xda\x33\x67\xce\xd0\xb7\xbe\xf5\x2d\x7b\xe6\xcc\x19\x9a\x4e\xa7\x58\x5b\x5b\x43\x08\x6f\xbc\xf1\x06\x76\x77\x77\xb1\xbb\xbb\x8b\xbd\xbd\x3d\xec\xee\xee\xe2\x5b\xdf\xfa\x56\x03\x1f\x74\x39\x4c\x79\xa4\x52\xfd\x4e\xf3\x58\x68\x75\x26\x61\xdb\xda\xa4\x4f\xfd\xc8\x76\x45\x0b\x3e\x1e\x64\x1f\x90\x34\x34\xde\x1d\xd0\xf4\xb8\x68\x56\x4f\xca\x0a\x6e\xcb\x23\x19\x3b\x95\x25\xa5\xd0\xfd\x65\xe6\x69\x04\xde\xe9\x59\x87\xcf\xa1\x6f\xd6\xad\xbd\x2e\xc0\x9a\xb1\xd8\x3a\x7b\x3c\x78\xe0\x63\xef\xac\x7d\xf2\xb1\x1b\x93\x8b\xd5\xcd\xba\x40\xc3\x43\x11\x8c\x01\x61\x80\x70\xcb\x6d\xc9\xd3\xc2\x82\x9a\x16\x8f\x25\xc5\xff\xa2\xc7\x84\x23\x68\x8e\xb8\xe1\x8b\xd1\xcb\x86\x0c\xdf\xcb\x12\x3c\x2d\x7c\x53\x31\xb8\x31\xc5\x18\x4f\x79\x8b\xbc\xa7\xc6\x96\xc6\xdd\x3a\x1c\x96\x2f\xbe\xb3\x39\xfb\xee\x2b\x17\x8e\xff\xe5\xe6\xea\xe2\xda\x2c\xb7\xc7\x0e\xd5\xe7\xdd\xc9\x7f\x8b\x03\x4d\xef\x0b\xe4\xef\xaf\xd8\x03\x73\x9a\xd9\x59\x0a\xe6\x4e\x67\x1f\x7d\x78\x3a\x2d\x8e\x5f\x55\x3f\xd5\x78\xe4\xfa\x43\xea\x12\x0d\x4f\x97\xee\xe9\xcb\x57\x0a\x37\xe7\xe5\xb4\xb3\x46\x2d\xaf\x46\xbf\x6f\x7d\xb6\xc9\x4a\x2f\x1c\x61\x23\x29\xdf\x2c\xea\xf3\x1a\xa0\xe1\x65\xa9\xf4\x99\x43\x3e\x2a\x68\x78\xfe\x68\xb8\xf5\xc4\xf5\x95\x27\x3f\x74\x6b\xfc\xdb\xeb\xb3\xec\xf7\x8d\xa3\x87\xe7\x99\xfd\xe7\x37\xce\x9e\xfc\xef\x2f\x3e\x78\xfb\xc5\x1b\xab\x8b\x03\x6b\x6a\xef\x68\xb8\x67\x84\x9a\x5f\x26\x96\x7d\x53\xf2\x7c\xb7\xe5\xb4\xef\xbb\x8c\x3b\xad\x1c\x9d\x86\xa7\x5f\x59\x5b\xf7\x80\x3f\xad\x8e\xe8\xea\xaf\xa7\xc9\x77\x5a\x3a\x29\xd8\x56\x5e\x32\x25\x03\xb7\xe4\xa4\x15\x2c\xad\x3d\xcd\x0b\xc2\x03\x87\x0b\x78\xb4\x67\xfe\xae\x59\xc5\x1a\x8c\x8c\xd7\x3c\x31\x5a\xd0\xd2\x0c\x50\xdd\xe4\x1a\x3e\xc4\x48\xc1\x45\xd1\xb4\x2b\x08\x4d\xeb\x2f\xe6\x77\x00\x4d\x07\xb6\x3c\x19\xda\xe3\xad\x93\xc1\xd6\x64\x91\x6d\xe6\x8e\xf2\x68\x20\x10\xd5\xcb\x2f\xd4\xcc\xdc\x44\xe6\xf7\xa4\x84\x37\x66\x10\x34\xa6\x59\x0d\x6f\x0c\xc1\xf9\xaa\xae\x6f\xe8\xe5\x00\x4d\xdc\x15\x8e\x1a\x1b\x37\x86\xf8\xb1\xe7\xea\xbd\x4e\x0d\xdf\x31\xd2\x18\xd7\x8e\x5b\x87\xfc\x04\x22\x72\xb4\x32\x2c\xcd\x03\xeb\xb3\xfc\xbe\xed\xe3\x41\x5e\x64\xee\x60\x96\xd9\xf9\x22\xf3\x5f\x9e\x6c\xb2\x4a\x40\xfd\xa9\x79\xa0\x76\x7e\x25\x3e\x17\x00\xb4\xb7\xf9\x9d\x86\x14\xbe\x3e\x74\xb4\xbe\xe1\x12\xcf\xa7\xc1\xcd\xe5\x3f\xd5\x97\x4e\x1b\x2f\x67\xa6\x7d\x43\xaa\x0d\x24\xcd\x50\x0f\xbc\x4f\x71\x3d\x23\x67\x94\x12\xb7\x9c\x35\x6b\xf0\x32\xaf\x41\xba\x4c\x0e\x3a\x1d\xad\x6e\x25\x7f\xc0\xb2\xae\x4c\xd5\xb3\x9c\x15\xa7\x9e\xad\xc8\x17\xf2\xca\x29\x42\xcc\xb7\xb6\xb6\x66\xe6\xf3\xb9\x03\x2a\xa3\x05\x40\x30\x58\xc2\x5e\x5a\xc3\xfe\x72\xbf\xf9\x76\x00\x60\x40\x0e\xa3\xf1\xc2\xac\x3c\x70\x30\xbe\xef\xc3\xef\xad\x7e\xe2\x91\xdd\xf1\x9f\xae\xce\xb3\x3f\xcc\x2c\x1e\x22\xa2\xdc\x38\x9c\x1b\x15\xc6\xce\x72\xfb\xfe\xed\x71\x79\x38\xab\x6f\xc4\x26\xaa\xbe\x97\xc3\x97\x3f\x62\xdf\xbc\x74\xe9\x92\x7b\xf4\xd1\x47\x8d\xbf\xbc\x2e\xd5\x96\x9a\x9e\x97\x75\x92\xaa\xb7\x94\x87\xa1\x2d\x9f\x6c\x53\x0e\xd3\x37\xb4\x8d\x71\x5a\x19\x25\xdf\x1a\x8f\xda\x38\xdb\x26\xd3\x1a\x8e\x14\x4d\xd9\xb7\xb8\x9c\x4a\xfa\xb2\x1d\xb8\x2e\x68\x93\x6d\x59\x27\x5a\xdd\xa7\x70\x4b\xde\x35\xbe\xa5\x4d\xd2\x68\x6b\xed\x1e\x97\x54\xe3\x73\xc6\xdb\x14\x03\x1f\xd8\xa5\xeb\x47\x53\xe2\x52\xc0\x2c\x4b\x93\x0d\xa3\x19\x42\x1a\x0f\xb2\x52\x34\x21\x91\xf0\x4b\xc6\x0b\x9a\x8d\x1c\x3b\x6e\xe0\x85\x2d\x1b\x05\x7b\x01\x87\xa3\x72\x66\x0d\xe6\x9b\xd3\x7c\x6b\xb2\x30\xeb\xc6\x21\x23\x47\xf5\xf1\x68\xcd\x0b\xe2\x0d\x1a\xee\x3d\x89\xdf\x3f\xaa\x14\x46\x63\x9f\x8a\xb6\x09\xb7\x3e\x0f\xe5\x0d\x18\x0e\x0f\xf8\x65\x27\x9f\x23\xdc\xed\xc2\x36\xb1\x04\xfb\xc4\x71\x03\xcb\xd3\x71\x8e\x19\x37\xe1\xc4\x93\xcf\xb4\x54\x49\xac\x82\xa5\xd9\x64\x40\x79\x6e\xe9\xc2\xea\x3c\xff\xd0\xf6\xf1\x60\x75\x5c\x9a\xa3\xc3\x51\x79\x32\xcf\x6c\xe1\x6a\x35\x1d\xd1\xb0\x93\x0d\x55\xc9\xea\xa5\x3a\x17\x36\x1e\xb2\xd3\x47\x6d\x9d\x1e\x4a\x5c\xca\x08\xd6\xf2\x9e\x06\x96\xc7\xb5\xe1\x68\x33\xc2\xbb\x68\x4b\x7a\x29\x45\x2c\x95\x34\x57\x10\x5c\x71\xf1\x3e\xd7\x55\x87\x29\x3e\x39\x3d\xc9\xb3\xc6\x77\x2a\x5d\xd2\x97\x46\x8b\x34\x80\x02\x8c\xcc\x2f\xf5\x82\xd4\x03\xbc\x0c\x9a\xd1\x23\xf9\x93\x93\x37\xce\x77\xca\x90\x92\xfa\x2e\x55\x1e\x8d\x17\xfe\x17\x71\x0c\x87\x43\x93\x65\x19\x9d\x9c\x9c\xd8\xe7\x9e\x7b\xce\x84\xfb\x58\x82\x97\x85\x9d\x16\x32\xa8\x6e\xac\xce\x50\x19\x2e\xd1\x68\x59\x99\x67\xeb\x4f\xdc\x9c\x3c\xfe\xbf\x5c\x5d\xfb\xbd\xfb\x0e\x86\xff\x7d\xbc\x30\x9f\x32\x8e\x36\xd8\x21\x80\x51\xe6\x68\x7b\x5c\x64\xb3\x83\x49\xf1\xde\xe1\xa8\x3c\x2c\x0d\xc2\xb2\x39\xb8\xf1\xe2\x69\x3a\xe7\x9c\x7b\xe6\x99\x67\xe8\xbb\xdf\xfd\x2e\x37\xc2\x64\x9d\xf3\x19\xb4\x94\x39\x6d\x49\x41\xc6\x87\x38\xa0\x69\xec\x49\x43\x26\xf5\x2c\x71\xf3\xbc\xbc\x4f\xf0\x20\xdb\x28\x05\x07\x01\x23\xe9\x87\x20\xfb\x42\x4a\xd6\xda\xc6\xd9\x94\xae\xd3\xc6\xc7\xd0\x5f\xa4\x31\xd2\xd6\x0e\x72\xbc\xd4\xfa\x8e\x94\x79\x5e\x87\x29\x83\x43\xea\x1e\x4e\x53\xd6\x49\x6b\x9d\xb5\xed\x71\x09\x84\x53\xd6\x2f\x9f\x58\xb7\x75\xb8\x94\x52\x82\xc8\x2f\x19\x97\xca\x2b\x65\xa0\xb4\x29\x7f\x29\xe4\xa9\x41\xa6\x81\x9b\x19\x2f\x7c\xec\x0d\xbb\xc0\x63\x1c\x3b\x26\x58\xd1\x22\x18\x10\xb0\x3f\x5e\x1c\x93\x43\xb1\x3e\xcb\xcf\x8c\x17\xd9\x1a\x81\xaa\x35\x39\xe6\x58\xa8\xa5\x8c\x1d\x91\x26\xfe\xd9\x46\x56\x31\x6c\x9f\x4a\xc0\x13\x7f\x78\x2b\xb0\xf4\x1a\xbe\xa2\xe4\xd8\x49\xef\xb8\xa4\x43\x58\xda\x47\x43\xe2\xd7\x85\x77\x86\x9f\xe2\x7f\x4d\xf2\xac\xaa\x50\xef\xe5\x11\x2c\x82\x90\x39\x5a\x1f\x2f\xcc\x13\x5b\xd3\xc1\xc3\x67\x8f\x06\x6e\x91\xb9\x83\xa3\x61\x39\x2b\xb3\x86\x6c\x71\x03\x26\xd6\x35\x3f\x36\x48\x44\x10\x9e\x97\xd4\x73\x5b\x7a\x17\xdc\x69\x61\xbb\xe2\x52\xbf\x77\x42\xbb\x2b\xb4\xe1\xea\x43\xbf\x8d\xe6\x69\xca\x18\x42\x6a\xf6\xd6\x46\x5f\x33\x14\x34\x18\x69\xcc\xa4\x74\x05\xe7\xa3\x0d\x16\x2c\xbd\xcb\xd8\xd0\x74\x5c\x4a\x41\x6b\xe5\x91\x34\x39\xee\x46\x9d\x95\x65\xe9\xca\xb2\x74\x40\xf5\xcd\x35\x66\xa8\x84\x3c\xe1\x68\x73\x30\x58\x32\x22\x1a\x3a\xe7\x46\x44\x34\xbe\xef\x60\x78\xee\xa3\xef\xae\xed\xfc\xfa\xb5\xd5\xff\xb6\x7d\x9c\xff\xf1\xb0\xcc\x9e\x24\xd0\xa0\xa1\x4b\x00\x18\x47\x1b\x83\x92\x36\x07\x96\xf6\x0f\xc6\xc5\xcd\xdb\xe3\x72\x06\xd4\x27\x60\x5c\xfd\xb5\x62\x7e\xb1\x24\xbf\x48\xb2\xad\xbc\x5a\x3b\xf4\x8d\x97\x38\x65\x5c\xdb\x73\x0a\x77\x68\x2f\xcd\x88\x94\xed\xce\x65\x8d\xc3\x4a\x18\x8e\x9b\x87\xbe\x46\x7d\xaa\xbc\x21\x1e\x58\xe6\xb1\x4d\xbe\x35\x59\xd6\xfa\x7e\xaa\xae\xba\x60\xb9\x61\x24\xcb\x91\xaa\x1f\x8d\x07\x2d\x6e\x49\x6f\x68\xc7\xa1\x65\xe5\x04\xa6\x64\xc7\xb7\x22\x2e\xd5\x98\xfc\x5d\x9b\xf1\x68\x46\x05\x89\x67\x60\xd9\xf2\xe6\x41\x36\x2c\xff\xd5\x0c\x23\x4e\x3f\xe0\x8e\xe1\x81\x07\x1e\x30\x4f\x3e\xf9\x24\xa7\xad\x39\x15\xa4\x83\x21\xee\x8b\xb1\x04\x3a\x18\x97\xc7\xc6\x91\x5d\x9b\xe7\x1b\xa3\xc2\xac\x56\x37\xeb\xf2\x3d\x25\x1e\x85\xb7\x1e\xa2\xcb\x86\x9a\x46\x80\xd4\x7e\xd1\xd8\x09\x50\x0e\x8d\xdb\x74\xeb\x02\xf3\x05\x9f\xda\x14\x6a\x98\x13\x8c\x9e\x63\xb8\xc1\x20\x09\x35\x6e\x00\x60\x87\x99\x99\xc5\x53\x07\xc7\xf2\xca\x18\xb1\xb7\x67\x90\x97\x74\x61\x75\x9e\x3d\x7e\xfe\x68\x70\x6e\x65\x91\xcd\x4e\x06\xf6\xf0\x78\x68\x4b\xd4\xec\x48\xe3\x91\x07\x02\xaa\x3b\x25\x94\x65\xa3\xff\xd9\x43\x9b\xa7\xe3\x7f\xd6\xc0\x95\x6d\x2a\xbd\x6d\x92\xa4\xe5\xd3\xfa\xbc\x84\x6f\x9b\x2d\xb6\xe1\x0e\x41\xea\x90\xae\xbc\xa9\x41\x4b\xe6\x93\x13\x3e\x59\x1e\xa9\x73\xf1\xb5\xaf\x7d\xcd\xfc\xf0\x87\x3f\x74\x40\x63\x3f\x1e\x01\xf5\x11\x67\x78\x2f\x4b\xf0\xb0\xa0\xda\x97\x37\x1a\x95\x66\xf2\x91\xab\xab\x4f\x7e\xf4\xdd\xf5\xff\xfa\xe0\xde\xf8\x7f\xac\xcd\xb3\x4f\x65\x8e\xce\x81\x5f\x42\x20\x0a\x9c\x39\x6c\x0d\x8b\x6c\x15\xc0\xde\xf1\xb0\xbc\x75\x34\x2c\xa7\xde\xe3\xec\x50\x1b\x31\x8d\xa3\xbf\x61\x32\x71\xf1\xe2\x45\xba\x7a\xf5\xaa\x2c\xaf\xae\xce\xd2\x65\xe1\x70\xb4\xe2\x00\x00\x20\x00\x49\x44\x41\x54\x97\xf1\x5a\x7d\x4a\x3d\xd1\xd5\x4e\xa9\xb6\xd6\xe0\xfb\xe0\x48\xb5\x71\x08\x52\xfe\x34\xdc\x29\x19\x48\xe1\x4e\x19\x3c\xda\x38\xab\x8d\xa5\x6d\x86\x41\x97\x51\xc1\x03\x97\x61\xb9\xba\x72\x27\xfd\xb8\xef\xf8\xbe\x74\xaa\x48\x32\xdd\x66\x6d\xa5\x0a\x21\xd3\x35\x8b\x50\xc3\xd3\x26\x24\x5a\x63\xcb\x90\xaa\x90\x2e\x83\x67\xa9\x82\xd7\xd6\xd6\xe8\xa9\xa7\x9e\x8a\xe9\xec\xbe\x91\xb0\xa0\x1b\x05\x84\x5d\xe6\x14\xef\x39\x20\x22\x2a\x8c\xa3\x93\xa1\x9d\x0d\x2c\x99\xf0\x25\x69\x83\xfa\xd6\xa2\x6a\x30\x0f\x77\xac\x78\x43\x83\x1b\x2d\xd1\xb6\x60\x55\xe2\x6a\xf8\x08\xe9\xf3\xf0\xbb\x57\x2a\x9b\x22\xce\x8c\xd8\x12\x51\xc8\x56\x5b\x21\xf1\x5e\x00\x22\x40\xdd\xbf\x99\x60\xea\xb8\x1a\xbf\xe3\xfc\x39\x8f\x80\x79\x87\x34\x4b\x4e\x5a\x19\x7c\xbf\x0e\x63\xd9\xd3\x21\x93\x39\x6c\x0c\x4b\x73\xff\xc6\x2c\xbb\x7f\x6b\x9a\x0f\x1c\x70\xfb\xf6\xa8\x9c\x96\x95\x87\x28\x6c\x38\xe4\xd5\x1f\xdd\xe2\xfe\x39\xee\x7b\xf9\xd8\xc7\x3e\x46\x41\xb1\x8b\xa0\x75\xa4\x94\xf7\x4d\x83\x6b\x1b\x08\xf9\xbb\xe6\x7e\x4e\xe1\x68\xa3\xa3\x0d\x6a\x29\x58\x6d\x60\xd6\xf8\x4c\xd1\xd5\x70\x9f\xa6\x7e\x38\x2d\x39\x38\xc9\x32\xa1\x23\x5d\xba\x95\x8d\x88\x97\x75\x28\xe3\x8d\x42\x27\x04\x5e\x26\x4d\xe1\xa6\xf8\x97\x83\x23\x87\x07\x96\x69\xa7\x64\x41\x2e\x1d\x70\x7c\xbc\x3c\xf2\x19\x5f\xfe\xf2\x97\xcd\x47\x3f\xfa\x51\xfa\xc6\x37\xbe\x61\x9f\x7d\xf6\x59\xc3\x3d\x2d\x1e\xd6\x00\xc8\xa8\xba\x97\x25\x47\xd8\xcb\x42\x34\x72\xce\x8d\xef\xbf\x3d\x3a\xf7\xf1\x2b\xeb\x9f\x7a\xe2\xc6\xca\xff\xd8\x3e\x1e\xfc\xee\xb8\x30\x8f\x19\x60\x05\x5e\x4f\xd4\x8d\x53\x3d\x51\xe8\xeb\x20\x93\x59\xda\x18\x5a\x32\x8b\xcc\xdd\xba\x3d\x2e\x6f\xcd\x73\x17\xae\xa7\x0f\xa7\x8d\x1a\x37\xc1\x12\x91\xbb\x78\xf1\x22\x9d\x3f\x7f\x1e\xc3\xe1\x90\xde\x79\xe7\x1d\x5e\x5e\x28\xf5\x20\xbd\x00\xb2\x4d\xda\xda\x98\xcb\x55\x0a\x37\x6f\xbf\x36\xd9\xd5\x64\x0f\xd0\xdb\x3d\xd5\x07\xb5\x49\x78\x4a\x96\xdb\x96\xb2\xba\x64\xba\x0b\x26\xc5\xb7\xe6\xad\x6a\xab\x1f\x29\xd3\x10\x71\x9c\x1e\xe7\x5d\xd6\x3d\x8f\x97\xf5\xc3\xe1\xb5\x25\x39\xd5\xd0\xcb\x12\x88\xba\x9e\x65\x68\x74\x34\x41\x5c\xdb\x34\xab\xe1\x6a\x2b\x60\x48\xd3\x14\x42\x5b\x05\x4b\x21\x91\xb4\x35\x4b\xd3\x1c\x1e\x1e\xda\xdd\xdd\x5d\x7a\xec\xb1\xc7\x2a\xc6\xea\x1b\x75\x9b\x9b\x53\x63\x54\x63\x29\xa3\x52\x26\x04\x37\xcf\xac\x9d\xe5\x6e\x31\x2c\x69\xb0\xba\xc8\xd6\x87\x05\xad\x84\x81\x3c\x98\x05\xd1\xf0\x08\xfb\x4d\x78\x6d\x20\x0c\xfc\xd4\xd8\xa3\x02\x8a\x66\x06\xdb\xff\x82\xc6\x66\xdd\x00\xd1\x38\x11\x84\x1a\xa6\x36\x9e\x02\xa9\xb0\x0c\x54\x1b\x4a\xf5\x07\x1b\xc3\x72\x56\x80\x6c\x5a\x98\xfc\x37\xe0\x5e\xaa\x25\x01\x5b\x1b\x69\x44\xc6\x61\x3c\x28\xcd\xd9\x95\x45\xf6\xe0\xd6\x49\xbe\xbd\x3a\xcf\x6c\x91\xb9\xe3\xa3\xb1\x5d\x00\x71\xaf\x0b\xd5\xd5\x1b\x2b\x9e\xa3\x76\xc6\x18\x24\x3c\x30\x4e\x79\x4e\x19\xb2\x1a\x9c\x8c\x4f\xbd\xf3\x5f\x2e\xfb\x5a\x9e\x36\x3a\x29\x1e\x53\xb0\xa9\xb2\x68\xf9\x4d\x4b\x5a\x1b\xed\x14\xdf\x9c\x16\xff\xd3\xf8\x94\xca\x53\x73\xe5\xcb\xfe\x2b\xf3\x73\x5d\xa0\xd1\x90\x7f\xb2\x1d\xd0\x82\x83\xf3\x27\xeb\xa2\x8d\x0e\xe7\x95\xc3\x68\x65\xd4\x06\xb4\xa5\xe7\xc7\x1f\x7f\xdc\xec\xee\xee\xba\x3f\xfb\xb3\x3f\x33\x1b\x1b\x1b\x18\x0e\x87\xe0\xfb\x59\xc2\x6d\xb7\xfc\x0f\x95\xb1\x52\xfd\x81\x46\xb9\xc5\xe4\x23\xef\xad\x3d\xf1\xf4\x7b\xab\x7f\xfc\xe0\xfe\xf8\xf3\x1b\xb3\xfc\xe3\x03\x4b\xf7\x10\x68\x18\x74\x43\xd4\x1b\x0e\x60\xb3\x9e\xa8\x5f\x08\x18\xe4\xd6\xac\xe7\x96\xca\x79\x6e\xaf\x1f\x8c\x8b\x03\x5b\x2d\xe9\x96\xde\xc3\xe2\x00\xf0\xeb\x22\x40\x44\xce\x18\x83\x7f\xf8\x87\x7f\x68\x2b\x3b\x6f\x03\xae\xc3\xb5\xbd\x17\x5a\x3d\xcb\xfc\x6d\x32\x25\xc7\xa1\xae\xfe\x1b\xf2\x6a\x46\xa6\x13\xe9\x92\xbe\x7c\x96\x74\xe4\xb8\x24\x79\x4d\xc9\x4c\xaa\xef\x70\xdc\x9c\xdf\x3e\xb2\x96\xaa\x9f\x54\xdd\xa6\xfa\x16\x4f\xd7\xfa\x16\xff\x4d\x3d\x4b\x1a\xa9\xbe\x68\x80\xfa\xca\x7f\x6e\xdd\xf4\x21\x16\x42\x5b\x43\x49\x5c\x21\x4e\x2a\x4d\xa9\x48\x35\x78\xcd\xa8\xe1\x79\xe4\xb8\xa9\x29\xc2\xb6\x32\x2d\x19\x30\xbb\xbb\xbb\xee\xd2\xa5\x4b\x72\xb3\x6e\xe4\x8b\x2f\xec\xb2\xbd\x2f\xe1\x17\x00\x8c\x23\xd0\x2c\xb7\x45\x61\x5c\x31\x2a\xcd\x60\x65\x91\xad\x0f\x4a\x1a\xd7\xbe\x96\x90\xa9\x36\x5a\x62\xa5\x79\x85\x52\xdd\xa3\x52\x99\x11\x71\x2f\xad\x5f\x13\xaa\xaf\x6a\xa1\x9a\xba\x2f\x02\x85\x75\x23\x8e\x94\xc4\x02\x12\xc3\x11\xe2\xfc\x8d\x0d\x8d\xc2\x04\x05\xc7\xd8\x54\x0d\x16\x28\x71\xa9\x4b\xee\x38\x6c\xa5\xf2\x68\x94\x97\xb4\x35\x29\xb2\x0b\x1b\xb3\xfc\xc2\xc6\x2c\x5f\x1b\x96\x66\x76\x3c\xb0\xc7\x8b\xdc\xb9\x06\x38\x67\xd7\x7f\x43\x84\x79\xc5\xda\x4e\x1e\xf1\xd0\x66\x88\xdf\x09\x9c\x0c\x77\x92\xe7\x57\x11\xee\x84\xaf\xae\x49\x8b\xec\xff\x29\x78\x2e\xa5\x72\x90\x68\x83\x95\x4a\x53\xa3\x91\xa2\x2f\xfb\x6e\x0a\x37\xd0\x0f\x9f\x46\x57\x9b\x9c\x49\x3a\x1a\x1f\x49\x98\xdd\xdd\x5d\xf7\xdc\x73\xcf\x99\xf1\x78\x1c\x8f\x38\x33\x03\xde\x00\x88\xc7\x9b\xc5\xd2\xd0\x28\x2f\x69\xe5\xde\xc3\xe1\xf9\x0f\xbf\xbf\xfa\xb1\x5f\xbb\xb6\xf2\xdf\xcf\x1f\x8d\x7e\x67\x52\x98\x5f\xcb\x1c\xd6\xe1\x28\x5b\x3a\x01\xc8\x7a\x95\x0b\x1e\x55\xd4\x7d\xd3\x38\x4c\x06\xa5\x99\x18\x60\x3e\x1d\xd8\x6b\xb7\x47\xe5\xb1\x23\x94\x1e\xcc\xb2\xef\xeb\x58\xd4\x13\x39\xc7\xfa\x9f\x56\x6e\x29\x33\x7c\xf0\x3c\x4d\x5d\xa5\xea\x5b\x1b\x47\xda\x82\x26\x07\x5c\x6d\x69\x5e\x04\x8d\xbe\x36\xc6\x69\x65\x48\xf1\xd7\xe7\x39\xd0\x5d\x1a\x97\x14\xdc\x29\xf9\x6e\x93\xcd\xb6\xba\xef\x2a\x6f\x5b\x5d\x77\xe9\xd2\x14\x4f\x4b\x6d\x4c\x2c\x41\x53\x1e\xa9\x78\x0d\xa6\x0f\xec\x07\x0d\x6d\x34\x4e\x93\x76\x6a\x5e\xfd\x9a\xb2\xfc\xe3\x77\xbc\x8c\x01\x8c\xfd\xed\xba\xf1\x7e\x17\xe7\xdc\xc6\xb8\x30\xdb\x0f\xed\x8d\x1f\x7f\xea\xda\xca\xc7\x1e\xdc\x1f\x3f\x39\x5e\x98\x0d\x79\x33\x6d\x6d\xe5\x2d\xdf\xb1\x22\xb7\x93\x34\x0c\x00\xf6\x12\x97\x85\x18\x6e\x2d\x68\xf4\xa0\xf1\xa3\x58\x1a\xd2\x16\xd2\x2c\xb6\x54\x48\xe5\x6d\xe2\x71\xd6\x12\x0e\x66\xb9\xbd\xb2\x37\x29\x7e\x74\x65\x73\xf6\xff\xbc\x7d\x66\xfa\xf2\xfb\xeb\xf3\x6b\x8b\xcc\xf1\x3b\x5f\x0a\xe7\x5c\x41\xd5\x17\x54\xc3\x29\x87\x70\xbf\x04\xc0\xda\xf7\xf2\xe5\xcb\x38\x3a\x3a\xc2\xf7\xbe\xf7\x3d\xe9\x81\xd3\x5c\x94\xfc\x19\x0c\xa6\x81\x93\x85\x36\xf9\xd7\x70\xb7\xe1\xd5\xde\xbb\xf2\xf7\x29\x83\xe4\xbd\x8d\xae\x56\xd6\xbe\xbc\xa7\xca\xdf\xc6\x1f\xc7\x25\x79\x95\xfc\xb7\xbd\xcb\xfc\xa9\x7a\xea\x82\xe5\xbc\x77\xd1\x4a\x95\x4d\xcb\x9b\xc2\x0d\x00\xb8\x78\xf1\x22\xd6\xd6\xd6\x70\xdf\x7d\xf7\x61\x63\x63\x83\x7b\x2f\x0c\x3b\xbd\x63\x5c\xf5\x15\x67\xe3\x9f\x73\x8f\x6b\x08\x20\xcf\x2d\x0d\x37\x66\xf9\xc6\xfd\xfb\xa3\x87\x1f\xda\x1b\xff\xe7\x0b\x07\x83\x4f\xae\xce\xb2\x8f\x64\x8e\xb6\x09\x94\x7b\x6d\x12\x27\x27\xfc\x8e\xa6\xae\x50\x92\x3b\xbe\x3d\x2a\x7e\xf2\xc6\xd9\xe9\x3f\xbc\x7c\xe1\xe8\x7b\x37\xd7\x16\x37\x00\x1c\x03\x98\x3a\xe7\x96\x3e\x9e\xea\xfb\x25\x0e\x0f\x0f\xf1\x37\x7f\xf3\x37\x5a\x7b\x76\xd5\x4d\xdf\x3c\x7d\x65\x42\xcb\xdf\x05\x2b\xf9\xd0\xf2\xb6\xe9\x94\x36\x79\x68\xcb\xab\xf1\xab\xf1\x93\x2a\x5b\x5b\x39\x52\x79\x35\x98\xbe\xfc\xa4\xf4\xc2\x69\x79\x69\xcb\xdf\xc8\xa3\x1d\x87\xe6\x41\xc6\xf7\xb5\xf2\x64\x48\x59\x5a\x1a\x3e\x1e\xcf\xff\xda\x2c\xc9\x50\xc0\xbe\xe5\xe8\x33\x6b\x6b\x04\xef\x79\x69\x22\xf1\x6b\xbd\x3e\x0f\xb9\xe6\xee\x7e\xef\xac\x20\x94\x06\x6e\x96\xdb\x85\x25\xd8\x51\x61\xc6\x93\x45\xb6\x9e\x39\x1a\x54\x5f\x68\xae\xad\x92\xe6\xff\x41\xcd\x34\x8d\x16\x1e\xa8\x06\xf7\x4c\x57\x96\x07\x49\x03\x04\x60\x1e\x9c\x3a\x81\x53\x6a\x5c\xef\x0f\x34\xe3\x42\x5e\xe5\x23\x91\xcd\xa3\xd9\x22\x70\xa3\xca\xff\xb7\xe4\xe1\x09\x15\x15\x0d\x27\x22\x02\x8d\x73\x4b\x5b\x93\x85\xb9\x6f\x73\x9a\xdf\xb7\x36\xcf\x56\x73\x47\xb3\xd2\xb8\x79\x91\xc1\x5a\x02\x39\xc4\x0b\xb5\x28\xec\x39\x12\x4b\x47\xf0\x6d\xe2\x36\x37\x37\x71\xee\xdc\xb9\x70\x02\x49\xce\x3e\x52\x33\x0d\x3e\xa3\xb2\xe8\x96\xad\xbe\x1e\x06\x39\x63\x93\x34\x53\xb3\x46\x1e\x27\x67\x25\x5d\x65\xd0\xe4\x5f\x83\x0b\x38\xa5\x01\xa2\xd1\x4e\xd1\x95\x33\x3c\x39\x30\x69\x7d\x36\xfc\x49\xda\x92\x7f\x09\x13\x9e\x9d\x78\x36\xca\xb3\xe9\x09\x1b\x7e\x91\x80\xe1\x7f\x01\x4e\xce\xc0\x39\x1d\xad\xfe\x97\xf8\xbe\x7a\xf5\xaa\xfb\xdc\xe7\x3e\x47\xe3\xf1\xb8\xde\x93\x56\xef\x9d\x33\xa8\xf6\x23\x6a\xcb\x42\xc3\xcc\xd1\x68\x6d\x9e\xaf\xdd\x7f\x7b\xf4\xe0\xe3\x37\x27\x3b\x4f\xdc\x98\x7c\xee\xbe\xdb\xa3\xdf\x5b\x99\x67\x1f\xce\x1c\x6d\x11\x55\xa7\x1a\xfd\xe2\x74\xec\xc3\xfc\x8e\xa9\x58\xe1\xd1\x98\x71\x70\x6c\xf6\x43\xa0\x41\x6e\x69\x25\xb7\x26\x2f\x32\x77\x73\x6f\x52\xdc\x5c\x18\xbb\xf0\xde\x66\x1b\xbc\x2c\x40\xfc\xe8\x20\x11\x91\x1b\x0e\x87\x10\x57\x16\x68\x75\x0f\xd4\x3a\x53\xf6\x35\x59\x57\x51\x65\x24\xda\x43\x6b\x63\x0d\x06\x4a\x9a\xfc\xd3\x3c\x00\x29\xf9\x02\x83\x95\xbf\x29\x79\x43\x02\x87\xa4\x9f\xea\x1b\xb2\x8c\x72\xa0\x97\xfd\xc7\x20\x5d\xce\xae\x3e\xcf\xbd\x4e\x1c\x77\x28\x9f\x84\x95\xf9\x52\xba\x28\xe4\x95\xb8\x65\x1f\x6c\xf0\x16\xbe\x08\x9a\x52\xca\x3c\xa4\x14\xb8\xa6\xb0\x64\xe0\x30\x52\x31\xf3\x3c\x21\x3d\x30\xac\x09\x32\xaf\x7c\xd9\x10\x6d\x86\x88\x51\x60\xb4\x06\xe5\xc1\x00\x70\x9f\xfc\xe4\x27\xcd\x95\x2b\x57\x96\x96\x8c\x98\xd1\x12\xde\x65\x87\xf3\x63\xb2\xc3\x22\x83\x9d\x0d\xec\xcc\x1a\xd8\xc9\xc2\x8c\xab\x3b\x5e\x28\x0f\x1b\x61\x49\x64\xe2\x48\x62\x70\xae\x5a\x26\x0a\x54\x83\x5e\x71\xcc\x20\x88\x06\x88\x6b\xec\x9b\x61\xdb\x63\x1a\x9b\x80\x83\x61\xa2\x9e\x6c\x62\x78\xe3\x86\x60\x61\x78\x84\x07\xf5\x90\x51\x8d\x2e\xd2\x8d\x11\x32\x84\x8f\x36\xfa\x74\x03\xca\x8c\xc3\xda\xb0\x34\x17\xd6\x66\xf9\x83\x9b\xb3\x6c\x73\x58\x1a\x47\xc0\xa2\x34\xce\x96\x99\xb3\x8e\x59\x7a\xec\xae\x17\x8e\x9d\xef\x8f\x71\x17\x2f\x5e\x24\xfe\xf1\xc6\x9e\xe1\x34\xb0\x21\x70\x25\x7c\x5a\x9c\x9a\x1c\x23\x11\xd7\xb7\xdf\x72\x45\xdf\x15\x38\x9c\xd6\x67\xba\x82\xa6\x98\x34\x1d\x41\x0a\x7c\x8a\x47\x99\x4f\x7b\x4e\xe1\xe1\x52\xd7\x17\x87\xd4\x05\xa9\x3a\x91\x0a\x5c\xc3\x4d\x58\xae\xc3\x08\xff\x91\x8f\x7c\x84\xae\x5d\xbb\x16\xaf\xea\x0f\x13\x1f\x7e\x47\x14\x11\xe5\x5e\x8e\xe3\x45\x72\xce\xb9\x01\x81\x46\xa3\xc2\xac\x9c\x3b\x1e\x9c\x7d\x64\x77\xfc\xf4\x13\x37\x26\x9f\x79\x78\x77\xfc\xb9\xad\x93\xc1\xa7\x06\xd6\x3c\x48\xa0\x61\x30\x42\xc2\x5e\xb9\x50\xed\x0e\x5e\x0f\x2c\xed\x81\xe3\x8a\xa4\xa9\x13\x8c\xc3\x68\x50\x9a\xd5\x81\x25\x4c\x07\xf6\xdd\x83\x49\x79\xdb\x9a\x6a\xaf\x8b\x47\x61\x51\xf7\xb9\xa0\xbf\xdd\x8b\x2f\xbe\xe8\xbe\xf4\xa5\x2f\x99\x97\x5f\x7e\xb9\xad\x1d\xb4\x01\x56\x4e\x48\xdb\x60\x1b\xf5\x8a\x76\xb9\xd3\xfa\x83\x36\x56\x74\xc9\x94\x7c\x4e\x05\x0d\x5e\xe3\xa9\xad\xef\xf0\x7c\x9a\x4c\x07\x98\xd4\x78\x89\x3b\x88\xd7\xfa\x9d\x56\xaf\x52\xd7\xa5\xea\x27\x55\xc7\xa9\x3e\x6a\x53\xf9\xb2\x04\x52\x2d\x74\x35\x4e\x9f\xc2\xa7\x04\x4e\x56\x80\x56\xa1\x1a\x9d\x2e\x45\xae\xc1\x76\xe1\x5c\x8a\xbf\x72\xe5\x0a\xfd\xd6\x6f\xfd\x16\x7d\xfb\xdb\xdf\xb6\xc1\x78\x11\x1f\x50\x24\x00\xd6\xef\xb7\x08\x1d\x36\xc4\x13\x11\x55\xc6\x4b\xee\xec\x74\x60\x17\x8e\x50\xae\x2e\xb2\xd5\xf1\x22\x5b\x33\x8e\xb2\x60\xee\x34\x96\x77\x1c\x1a\x97\xc0\x05\x6c\xf5\x46\xdd\xa6\xe1\x50\x13\x43\xf8\x1e\x62\x5c\xaf\x8e\x28\x9c\x2e\x25\x95\x6e\xab\x4f\x35\x45\x1b\x45\x1a\x3d\x2c\x3d\xf2\xc5\x8c\x93\x50\x86\x10\x43\x3c\x3e\xe2\x6d\x7e\x68\xa0\xf6\xd8\xb0\x38\x6a\x60\xc8\x73\x47\xdb\x93\x6a\xe3\xee\xbd\x6b\xf3\x7c\x32\x28\x8d\x75\x04\x6b\x8d\xb3\x65\xf8\xba\x11\xa2\xe7\xa5\x42\x5b\x7b\xc3\xf8\x7e\x24\x02\xaa\x2f\xdb\x86\x3d\x30\x61\x13\xe4\x52\xcb\x37\x95\x67\x1f\x25\xc7\xd3\x34\xe5\xa1\x29\xac\xb6\xfc\x32\x2d\x95\x5f\xe3\x99\xd3\x04\x9a\xb3\x18\x6d\x70\xe0\xb8\xc1\x9e\xe5\x4c\x52\xa3\xa5\x19\x37\x72\xe0\xe1\x22\x27\xcd\x57\x9e\xc7\x26\xf0\x71\xfe\x38\x8c\xa4\xaf\xd1\xd1\x06\x07\x4d\x2f\xb4\xd5\x0d\x44\x5e\xe9\x45\x42\x0b\xac\xec\x06\x08\x32\xf7\xec\xb3\xcf\x9a\x87\x1f\x7e\x58\x6e\xba\x8d\x06\x0b\x10\xbf\xe0\x6c\xc2\xa6\x5b\xe7\x5c\x4e\x44\xa3\x61\x69\xc6\x9b\xd3\x7c\xeb\xfe\x83\xd1\x23\x8f\xdf\x98\x3c\xf3\xd8\xcd\xc9\xef\x9f\x3f\x1c\xfe\xce\x64\x61\x3e\x9c\x81\xd6\x01\xc4\xcb\xb3\x09\xe2\x83\xaf\x0e\x08\xdb\xf2\xe2\x1e\x3a\xe6\x49\xe5\x9b\xf1\xe3\x57\xe8\x01\x84\xfd\x2e\xc3\xd2\xac\x0e\x4a\x73\xb2\x3f\x2e\xae\x1e\x8e\xca\x13\x00\x16\xd4\xd4\xdb\xcc\x98\xa1\x67\x9e\x79\x06\xdf\xf8\xc6\x37\x34\x59\x4a\xc9\xb3\x36\x5e\xf0\x3a\xe6\xf9\xe4\x7b\x6a\x62\x2b\x3d\x3a\xd2\x80\x91\x30\x80\x2e\xc7\x29\x79\xd0\x0c\x0f\x0d\x5f\xc8\xcb\xcb\xaf\x79\xfc\xb4\x81\x5c\x8e\x8f\x24\xfe\x78\xdd\x05\x7a\xa9\xc1\x9f\x97\x41\xe3\x15\x22\x8d\xb7\x1f\x97\x75\xd9\xdf\x24\x4d\xde\x5f\x65\xff\x97\x63\xb2\x86\x5b\xad\x7b\x7e\x1c\xba\x8f\x92\xee\x13\x34\xc6\xb5\xa0\x09\xb0\x56\xc9\x12\xb7\xa6\xc0\x4f\xcb\xe3\x69\xf3\xb8\xcb\x97\x2f\x3b\xa0\xbe\x9c\x8e\xaa\xbb\x0b\xb8\xd7\x85\xd8\x26\x5d\x12\x69\x95\xbb\x97\x80\x79\xe6\xca\xe3\x41\x39\x25\x90\x5d\x9d\x65\x1b\xe3\xc2\xac\x12\xc8\x34\x0c\x11\xc0\x0f\xe6\x68\x18\x06\xf1\x24\x11\xb1\x46\x72\xe1\xa3\x88\x2e\xde\x7a\x4b\xde\x82\x59\x5a\xc6\xf1\xc6\x48\xbd\xc9\xb7\x49\x27\xe2\x8c\x79\x6a\xca\xce\xbf\x6a\x7b\x68\x22\x4f\xb5\x82\x6b\x1a\x5c\x81\x27\x6f\x25\x35\xca\x19\xc0\x48\x20\x65\x69\x04\xc0\x80\x26\xc3\xd2\x3c\xb0\x36\xcf\x1e\xda\x3a\xc9\xcf\xad\xcf\xf3\x61\xe6\xc8\x95\x06\x65\x49\xce\x5a\x83\x60\xe9\x84\xb6\xa8\x51\xd7\x07\xbe\x1a\x06\xcc\xce\xce\x0e\x3d\xfa\xe8\xa3\xdc\x95\xdd\x68\x73\xf6\x2b\xfb\x44\xea\x59\x7b\x0f\x71\xb2\x93\x6a\x0a\xb6\x0d\xb7\x96\x9e\xe2\x99\xd3\x4c\x29\x42\xad\x7c\xf2\xb9\x2d\xc8\x3e\xdb\x86\x5b\xba\xc1\xe5\xb3\x86\x8f\xa7\xa5\x8c\x06\x09\xcf\xd3\xa5\x9e\xe8\x2a\x93\x84\xe5\x38\x79\x1c\x57\xc6\x7c\xd0\x90\x4b\x14\x11\x76\x7d\x7d\x9d\xe6\xf3\xb9\xdd\xd9\xd9\x31\x57\xaf\x5e\x75\x5f\xfc\xe2\x17\xc9\xeb\x10\xfe\x6d\xa1\xc6\x07\x11\xa9\xbe\x44\x6e\x40\x44\x39\xbc\x97\x25\x77\x34\x5e\x99\x67\x6b\x17\x6e\x0f\xef\x7f\xe2\xe6\xe4\x23\x4f\xdc\x58\xf9\xdd\xfb\xf7\x47\x7f\xb0\x3e\xcb\x7f\x33\xb7\xe6\x3e\xe3\x75\xba\x57\x01\x75\x05\x12\xdb\x37\x47\xa8\x6e\xc3\x26\x17\x4f\x2b\x3a\x57\xa7\x85\xcd\xf8\x44\x01\x87\xf3\xf0\x00\xaa\x23\xd2\x2b\xa3\xd2\xac\x13\xe8\xfd\xeb\xeb\x8b\x6b\x8b\xcc\x15\xa0\xb8\x49\x37\x5c\x4a\x17\x4e\x1a\x39\xa0\xbe\x6f\xe9\xbe\xfb\xee\x33\x87\x87\x87\x29\x19\x6f\x33\x82\x65\x1b\xf3\x77\x28\xbf\x9a\x9c\x48\x19\xd5\xda\xb5\x8f\x1c\x2c\xb5\xb1\x28\x07\x44\x3e\xde\xff\x20\xe8\x00\x4d\x19\x4a\xf5\x01\xc9\xab\xe4\x45\x33\x5c\xb4\xb2\x70\x7e\x65\x9c\x34\xe6\x38\x1e\x24\xf2\xcb\xf2\x6b\xc6\xa0\x5c\xda\x95\x76\x81\x51\x70\x39\x91\xa7\x51\x5e\x79\x8f\x8b\xb4\xb8\x24\xd3\x32\xb4\x59\xcb\x01\x5f\x2a\xbf\x66\x21\x87\x78\xae\x18\x78\x3c\xd0\xac\x84\x36\x25\xdb\x36\x83\x92\xe5\xd4\x3a\x4c\xaa\x7c\x0d\xe3\x45\x29\x6b\xfc\x76\x07\xd0\x3c\x7d\x04\x54\x2a\x60\x91\xbb\xf2\xf6\xa8\x9c\x66\x0e\x76\x7d\x96\x6f\x8e\x0b\xb3\x0a\x3f\xa4\xfb\x0f\xb1\xd6\xc7\x96\xd9\xb1\x1c\x59\x99\xc4\xfe\xe7\x06\x01\xff\xbc\x40\x0d\xef\xf1\x56\x48\xeb\x75\x74\x9f\xb4\xe4\x5d\x01\x10\x0d\xa5\x90\x93\xf8\x2f\x04\x66\xf1\x1e\x68\xd7\xec\x47\x20\x2e\x91\x88\x86\x14\x35\xd2\x79\xe3\xb2\x5f\x63\x1c\x6d\x8d\x0b\xf3\xa1\xf5\x69\xfe\xe8\xd6\x49\xbe\xb9\x36\xcf\x32\x02\x95\xf3\xdc\x96\x96\xe0\x4a\x8a\xf7\xe9\x70\xe3\x85\xb3\x47\xac\x8d\x88\xfc\xbd\x13\xcf\x3c\xf3\x8c\xfc\x84\x00\x0f\x32\xee\x4e\x0c\xe5\x36\x9c\x77\x8a\xab\x2f\x1f\xbc\xca\xbb\xca\xa7\xf5\x83\x2e\xbc\xf2\x59\x83\xe9\xd3\xb7\x64\x7f\x97\x83\x91\x7c\x96\xc6\x89\xa6\xf4\x35\x7c\x9a\x97\x46\xe2\x4e\xd5\x01\xd7\x39\x5c\x99\x2e\xe1\x58\x5d\x5d\xa5\xd5\xd5\x55\x3a\x38\x38\xb0\x00\xf0\x27\x7f\xf2\x27\xb4\xb3\xb3\xc3\x0d\x14\xf2\xb2\x6a\xbc\x2c\x06\x63\x25\xec\x67\xa9\xee\x63\x01\x0d\x09\x18\x0e\x4b\xb3\x72\xf6\x78\x70\xf6\xd7\xae\xaf\x3c\xf9\xd4\xb5\x95\xdf\x79\x70\x6f\xfc\x5f\xb7\xa6\xf9\x67\x46\xa5\x79\x94\x40\xe3\x06\x93\x0e\xca\xe6\x7f\x8a\x69\x75\x5f\x0e\xf7\xb8\x50\x13\x9e\xc0\xf6\xb6\x35\xfb\x3c\x81\xf2\x81\xa5\xb5\x95\x85\x99\x4c\x07\xf6\x8d\xdd\x49\x71\x60\x09\x85\x37\x58\xc2\x7e\x97\xd0\xc9\xa2\xc1\xb0\xb3\xb3\x43\x4f\x3d\xf5\x94\xbc\xed\x9a\xd7\xb5\xa6\xcf\x35\x99\xe5\x2a\xa2\x4b\x66\xe4\xc0\xd9\xd6\x07\xb4\xb1\xa8\xad\xbf\xa4\x06\x60\x59\xb6\x40\x5b\x1a\x38\x9a\x21\xd4\x25\x83\xdc\x68\x93\xf2\xae\x95\xed\xff\x67\xef\xdd\x7f\x24\x39\x8e\xfb\xc1\x88\xac\xea\xea\x9e\x9e\x9e\xd9\xd9\xd9\xd9\x07\x97\x4b\x8a\x5c\x3e\x44\xeb\x2b\x3f\x44\x51\x82\x21\xeb\xbe\x3a\x1b\x7e\x1c\xec\xf3\x41\xd0\xfd\x62\x18\x06\x6c\x03\x26\xff\x28\x12\x06\xfc\xba\x3b\x41\x07\x1b\xb6\xef\xce\x07\xd8\x3e\xc9\x3a\xd8\x82\xee\x6b\x93\xd2\x89\x16\x45\x4a\x24\xc5\xa5\xc8\xe5\x72\x76\x76\x76\xa6\xa7\xdf\x5d\x95\x79\x3f\x54\x66\x56\x64\x54\x64\x55\xf5\xec\xca\xdf\x5f\x2e\xc9\xde\xa9\xca\x8a\x8c\x8c\x7c\xc6\x27\x23\x5f\x31\x10\x22\xe5\x15\x97\x45\x6a\x33\x52\x59\xf0\xf6\x17\x6b\x53\x12\xb8\xa1\x32\x4a\x69\x17\xf1\x45\xd3\x01\x74\x5d\x5c\x5b\x87\xce\x2b\x15\x17\x96\x22\x30\x29\x13\x79\x05\xe1\x95\xab\xa9\x93\xe5\xb4\x12\x52\xe4\x19\xc6\x65\xe5\xb2\xf9\xe7\x9f\xff\xf9\x9f\x47\xa5\x14\x00\x54\x8b\x72\xdd\x19\x06\x7e\xde\x98\xde\xac\x5c\x8d\x40\x94\x9d\x36\x2a\xc6\x83\xe2\xac\x5f\x24\xc9\x85\x45\x7a\xb9\x57\x60\x06\xe0\xb6\x12\x92\x96\x89\xd5\x14\x8e\x9b\x02\xa2\xa3\x29\x3f\x2a\x32\x15\x10\x40\x20\x9d\x93\xed\x7c\xd0\x8e\xb0\xca\x83\xee\xc2\xc3\xe3\x80\xc4\x17\x8c\xbc\x68\x07\x07\x50\x3f\x6b\xa6\x0a\x0e\x74\x02\x08\x89\xbf\x93\xd5\x70\x7f\xd2\xb1\xd6\x40\x0f\x21\xa6\x61\x2a\x9e\x98\xa6\x06\x2f\x6d\xad\xd5\xd3\x17\x16\xe9\x13\xfb\xf3\x74\x77\x67\x99\x9a\x22\x31\x8b\x59\x66\xef\x3d\x02\x54\x76\x01\x2f\x17\xc7\xe6\x1b\x06\x00\xc6\x25\x83\x4e\x23\x01\x00\xf4\xfb\x7d\x85\x88\xa8\xb5\xa6\x75\x86\x03\xeb\x2e\xcf\xce\xb5\x01\xea\x4d\x14\xad\x44\x2f\x01\x7e\x89\x9e\x3a\x1e\xb6\xa9\xe3\x92\x9e\x39\x80\xe0\x3c\xa5\xb6\x2a\xc9\xd8\x44\x2f\xe5\x6b\x0c\xa4\xf0\xb4\x21\xfb\x4e\xdb\x7d\x4c\x76\x69\xba\x80\xf3\xa1\xb4\x3e\x7c\x96\x65\xaa\x28\x0a\xb3\x5e\xaf\xcd\x62\xb1\x30\x2f\xbd\xf4\x92\xa2\x80\x85\xd4\x49\x07\x5e\x14\x94\x7d\x31\xda\xa9\xa0\xc4\x18\xe3\xcf\x63\x49\x0c\x64\x5b\xeb\x64\xf7\x99\xa3\xe1\x8d\x9f\xbd\x3d\xfa\xcf\x4f\xdc\x1f\x7c\xe5\xe2\x2c\xfd\xf5\x41\xa1\x3e\xa9\x0c\x6e\x23\x94\x33\x3f\xb4\xfd\x07\x16\x51\x53\xf9\x07\x34\x64\xb1\x7d\xb0\x48\xd7\xf9\x3b\xf0\x42\x32\x89\x4c\x17\x67\x3d\x8d\x07\xc3\x55\xb2\xbc\x37\xca\x6f\xcd\x7a\x7a\x61\xb0\xbe\xde\x05\xc0\x9f\xac\x8b\x88\x68\x5e\x7e\xf9\x65\xfd\xe2\x8b\x2f\xaa\xb7\xdf\x7e\x1b\x97\xcb\x25\x57\xbe\x34\xaa\x58\x5b\xa3\x79\xce\x95\x75\x97\x3a\xd5\xd4\xc6\x78\x99\x37\xe9\x37\x0a\x20\x40\x78\x8e\xc9\x29\x01\xf8\xb6\x59\x09\xc9\xea\x04\x42\x5a\x24\x3e\x28\xfc\x62\xed\xab\x29\x3f\x25\xa0\xc8\xe5\xa4\x7f\x9b\xfa\x21\x49\xb7\x73\x9a\xc6\xbe\x50\xba\xab\x88\xba\xa6\xc8\x79\x67\x2b\x65\x1c\x2f\x54\x8e\xc4\x62\xe1\xa4\x0a\x22\xa1\x32\xc7\x27\x36\x9a\x6b\x2a\x28\xea\x27\xa1\x52\xa9\x33\xf4\xcf\xdf\xf9\xce\x77\xe8\x4d\xd2\xa5\x80\xd5\x59\x06\xc6\xbe\x57\xed\x9d\x2e\x88\xb1\x13\xcf\xeb\xc4\x14\xf7\x87\xeb\xf1\x68\x9d\xf6\xb6\x97\xc9\xc5\x9e\xc6\x0c\x01\xf9\x2c\x8b\x4f\x3c\x92\xaa\x13\x00\x0f\xfb\xad\x1a\x31\x19\xb2\x98\xb6\xa4\x0c\xee\x2a\x22\x09\xe6\xd3\x49\xc8\x56\xee\x06\xb5\x48\xc6\x2d\x84\xab\x93\x99\x6c\xe5\x0e\xd9\xd1\x00\x22\xaf\xb6\x78\x68\xba\xcb\x9d\x0e\xea\xea\x70\x9d\x3c\xb3\x37\x4f\x6f\x5e\x9e\x64\x17\x2e\x2c\x7a\xeb\x65\x4f\xcf\xa6\x59\xe1\x4c\x2e\x0a\x42\xa5\x23\x02\x18\xb0\x3b\x23\x5c\x67\xee\x80\x4b\x51\x14\xc6\x82\x16\x17\xfd\x79\x9f\x69\x12\xf8\xb3\x11\x68\x9b\xe8\x1e\x94\x86\xbb\x4d\xc3\x6e\xd2\x56\xa8\x1f\x6f\xff\x5d\xe3\xa1\x0a\x40\x92\xd3\xd1\x34\x75\x92\x31\x39\xa4\x7e\x85\xd3\x3a\x05\x2a\x29\x3e\x0e\x9e\x54\x51\x14\xfa\xc5\x17\x5f\x54\x6e\x21\xb8\x05\x2d\x14\xb0\xb8\xb0\xee\xaf\x02\x7b\xb4\x82\xb5\xb2\x64\x00\x90\x21\xe2\x60\x90\xab\xe1\x93\xc7\x83\xeb\x9f\xf9\x60\xe7\x73\xcf\xdc\x1b\x7e\xf9\x60\xda\xfb\x1f\xb7\x72\xf5\x9f\x12\x50\x3b\xee\x78\xc9\xb2\xb3\x31\x00\x58\x59\x48\xc1\x54\x20\x45\xea\x2f\x00\x7c\x7f\x65\xbf\x55\x8d\x8e\x8a\x89\x3e\xbc\xa9\x06\x3c\x0e\xd8\x18\xe8\x0f\x0a\x75\x69\xb0\x52\xf7\x0f\x77\x56\x77\x96\x3d\xbd\x34\x60\xdc\x56\x68\x7a\x28\x9d\x5f\xf3\xf2\xea\xab\xaf\x9a\xd7\x5e\x7b\xcd\x08\xa0\xc5\x89\x42\xfd\xa5\xbe\x9a\x3f\x37\x29\xda\xb6\xe7\xb6\x3a\xd1\x04\x6c\x9a\xd6\x8d\xd1\xf4\xf0\x67\xce\x3b\xd6\x26\x01\xe4\xf4\x3a\x7f\x0a\xea\x38\x1f\x0e\x00\x68\xdd\xa5\xb2\x34\xc9\xc7\x9f\xa5\x76\xd4\x96\x76\xfe\x2e\x19\x19\xba\xf4\x03\xb5\x32\x6b\x02\x2e\xbc\xf2\x50\x66\x12\x92\xe4\x0d\x5a\x42\x66\xdc\x8f\x8f\x56\x78\x21\x50\xd3\x53\xd3\xd4\x8e\x04\x3c\x40\xf8\x26\xc5\x4f\xc3\xc4\xac\x37\xa2\x7b\xfe\xf9\xe7\xcb\xbe\x81\xf4\x1f\x20\xeb\x5c\x0d\x00\xde\x22\xe3\xfe\x02\x80\x59\xa5\xa6\x38\x1e\xae\xc7\x5b\xb9\x4a\x46\xeb\xe4\x42\xaa\xb1\xaf\x00\x91\x9e\x68\x49\x06\x42\x5e\xb1\xf3\x33\x18\xfc\x8c\x92\x01\xdf\xdb\x94\x56\x0d\xbb\xde\x04\x9c\xe5\x06\x59\x66\x90\xa5\xb2\x58\x4f\x44\xa0\xe5\xad\x2c\xb5\x1d\x44\x06\x18\x40\x09\x2d\x3a\xd5\x68\xd0\x54\x91\xb0\x5c\x0a\xe2\x35\x55\x41\xd5\x76\x2a\x39\x19\x42\x19\xfb\x3d\x8d\xd7\x86\xeb\xe4\xb9\x8b\x8b\xf4\x93\x8f\x9c\x66\x97\x2f\xcd\xd3\x7c\x9e\xea\xc5\xa2\xa7\xdd\xd4\x99\x3f\x6d\xd4\x2f\xe7\xf5\x45\xe7\xf2\xd0\x5b\x5f\xfc\xed\xd3\xe7\xd8\x85\xe4\x9c\x64\x45\xe9\x1a\xee\x3c\xf1\xfd\xd7\xe2\xbb\x49\xbc\x9b\xe4\xc5\xa6\xe1\x9a\x14\x4f\x93\xa5\xaa\x8d\x77\x13\xe8\xa9\x85\xfb\xa3\x3f\xfa\x23\x7c\xed\xb5\xd7\xcc\x0b\x2f\xbc\x80\x00\xe5\x45\x88\x2e\x1c\x56\x8b\x6e\xdd\x74\x90\x82\xf2\xd0\x38\xb7\x86\x25\x43\xc4\x0c\x00\xb2\xdd\x65\x3a\x7a\xe6\xee\xf0\xf1\xe7\x3f\xd8\xf9\xa5\x4f\xde\x1d\x7e\xe5\xf2\x34\xfb\xca\x70\xa5\x7e\x31\x31\x78\x01\x00\x54\x70\x5c\x82\x15\x2b\x68\xb3\xf4\x85\xb4\x19\x00\xda\xf4\x2c\x64\x61\xbd\xb8\xe7\x49\x1b\x3a\x92\xc5\xf6\xa4\xcd\x28\x8d\x3b\x5b\x65\xbf\xf5\xf1\xf1\xf6\xfa\xde\xaa\x67\xd6\x36\xb1\x06\x00\x0a\x00\x6f\x71\x01\x44\x84\xcf\x7e\xf6\xb3\xfe\x74\xeb\xab\x57\xaf\xe2\x74\x3a\x95\x14\x1f\xcf\x57\x49\x39\x37\x29\x5f\x92\xf2\xc6\x67\xea\x1e\x16\x6f\x09\xf4\x48\xf1\x9c\xa7\x4e\x53\x10\x2d\x01\x6e\x49\xd6\x18\x98\x88\x81\x8e\x58\xfd\x6e\xb3\xce\xc4\xd2\x72\xde\xf6\x4f\x1d\xc7\x16\xe2\x25\x8b\x14\x88\xb4\x15\x32\x35\x97\x71\xbf\x98\xd9\x4a\x02\x28\xce\xaf\x69\x2f\x79\x93\x7f\x97\x8a\x12\xe3\xe3\x7e\x92\xe9\xcf\x39\x11\x88\x91\x0e\xca\x9b\x42\xc9\xf4\x10\x07\x5b\xae\x31\x83\x27\xb4\x1d\xd0\xb2\xa7\xf5\xb4\x5f\x4c\xb2\x42\xa5\x5b\xab\x64\xd4\xd3\x38\xf0\x87\xf5\x5b\x4b\x89\x1f\x11\xb9\x8e\xc8\xbe\xd3\xfb\x84\x7c\xac\x36\x15\xe8\x00\x0e\xf8\x85\x75\xe0\xfe\xc5\x4a\x28\x6b\xad\x71\x5b\x26\xab\xb0\x81\xe5\x04\x42\x10\xc1\x01\x45\xed\x9d\xfe\xb5\x11\xd2\xdd\x44\x01\xf6\xc7\x50\x26\x37\xca\x43\x42\x63\x48\xfa\x02\x5a\x97\x37\x65\x7e\x0d\xd2\x02\x2f\x6f\xe5\xea\xe9\xdd\x45\x7a\xf3\xda\x24\x3b\xd8\x9f\xf7\x30\x47\xb3\x5a\xa4\x5a\xeb\xa4\x02\x27\x76\x3d\x01\xba\xf2\xa8\xfe\x00\x02\xf8\x0b\x33\x11\x60\xa3\x6d\xd4\xd2\x48\x47\xea\xc8\x62\x53\x20\x00\x72\xfd\x8b\xc5\x23\xd5\xcb\x2e\x1d\x52\x93\x0c\x92\xf5\x52\xea\x07\x62\x56\x4e\x2e\x9f\xb4\x0b\x28\x96\x27\xbc\x73\xe6\x96\xb2\x98\x0c\xd2\x68\x98\xfe\x05\xc6\x4f\xe2\xcd\x95\x0e\xf7\x03\xc2\x0b\x01\x00\x1f\x7b\xec\x31\xfc\xed\xdf\xfe\x6d\x7c\xfd\xf5\xd7\x0d\x40\x79\x48\x25\x22\xfa\x01\x0d\xe1\x93\x38\xeb\x9f\x3d\xe5\xd6\xdf\xde\x0c\x16\xb0\x40\x69\x61\xc9\x76\x16\xc9\xee\x33\x77\x87\x4f\xfc\xec\x47\xdb\x5f\xbc\x79\xbc\xf5\xdb\x07\xd3\xde\x7f\x37\x5c\x27\x9f\x4d\x35\x5e\x46\xc0\x04\xc0\xed\xf6\x09\xcf\x54\x2a\x85\x0c\x5a\x58\xd8\x93\xd3\xc4\xb8\xf6\xed\x16\xdc\x22\xc1\x28\x86\xb6\xd9\xb0\x51\xd3\x26\xeb\x7c\xd0\x20\x26\x06\xf7\xfa\x39\x66\x79\x62\x3e\x3e\xeb\xe7\xa7\xab\x44\xaf\xa1\xbc\x12\xc0\x93\xdb\xbe\xcf\xb7\x87\xe7\x9f\x7f\x1e\xed\x81\x90\x3c\x5f\xa5\x3a\x02\x50\x2f\x97\x58\x9b\xa2\x65\x5c\x2b\xb3\x96\x78\x6a\x0a\x32\x12\xa7\x54\xd7\x68\x66\x71\xfd\x29\xb5\x15\x69\x81\x37\xff\xf1\x2d\xc6\xf4\x39\xb6\x03\x4f\xea\x1b\xa4\xe7\x58\x1b\x88\x4d\x13\x4b\xed\x98\xcb\x20\xc5\x17\x6b\xd3\x52\xde\xd2\xfc\xa1\xe1\x80\x7c\x37\x00\xd5\x01\x74\x40\x3c\x59\x75\x6f\xec\x48\x39\xe2\xe3\xa0\x25\x66\x3a\x93\x3a\xd6\x4d\x94\x82\xe4\x62\x89\x8f\x75\xae\xdc\x71\x04\xc9\xbf\x89\xe1\xd8\x42\x5d\xf7\x97\xf2\x93\xe6\xe1\x9d\xf6\xf4\x45\xb3\x4c\xf5\x7a\x96\xe9\x79\x02\x68\xb6\xd6\x6a\x98\x15\x6a\xa0\x00\x55\x75\x54\x14\x54\xeb\x55\x48\x71\xba\x75\x27\xb4\xc0\x7c\x9f\x63\x20\x9c\xfa\x01\x56\xb0\xa6\x9a\x52\x72\x56\x19\x40\xb6\x70\x97\xfc\x6b\x88\x0c\x81\xc3\x3a\x6f\x29\xbe\xa0\x53\x74\xdf\xfc\xb3\x3d\x31\xd8\x00\x9b\x2c\x83\xe8\x74\x53\x2d\xbe\xb2\x23\x4e\x94\xc1\xad\xac\x50\xd7\xb6\xd6\xc9\x93\xbb\x8b\xf4\xc9\x83\x59\xef\xf2\xde\xbc\x97\x42\x79\x64\x79\x91\xdb\x05\xbc\x0c\xc0\x50\xeb\x9b\x1b\x1d\xfb\x17\x80\xea\x2a\x81\x86\xeb\x04\x9a\xea\x7a\x0c\x40\x37\xd5\xbb\x98\x0b\xea\x52\x07\x19\x9a\x06\x05\x9c\x8f\xc4\xaf\x2d\xad\x00\x32\xf8\xe2\x1d\x3d\xe5\x27\x29\x00\xd7\x5e\x78\xfa\x78\x27\xce\xe3\xa4\x9d\xb7\x24\x43\xd3\x33\x8d\x13\x23\xfe\x9e\xf7\x67\x3e\xf3\x19\xbc\x73\xe7\x8e\x06\x00\xf3\x9b\xbf\xf9\x9b\xb8\xb3\xb3\x03\x0e\xd8\x7a\xa1\xaa\x75\x2c\xfe\x3e\x21\x67\xed\x83\x70\xe1\xad\x07\x2c\x17\x16\xe9\xe8\x99\xa3\xe1\x53\x9f\xfa\x78\xfb\x0b\x4f\x1e\x6f\xfd\xe6\xe5\x69\xf6\xab\xdb\xab\xf4\x17\x7a\x05\x5e\x53\x80\x5b\xb4\xa5\xb8\x76\x6d\xec\x3b\x3d\x69\x9b\x83\x97\xfa\xb4\xab\x9b\xf2\x21\x77\x9c\xb9\x9c\xb4\x7f\xb9\x75\xa6\x7a\x2e\xb3\x25\x68\x8b\x08\x60\x17\xeb\xee\x64\x85\x5a\x4d\x32\x7d\x34\xed\x17\xe3\x42\x95\xa7\x5a\xdb\xe0\x7e\xbd\x0b\x59\x15\x6f\xc8\x62\x78\xfa\xe3\xe5\xc4\xfb\xd0\x98\xe2\xa4\x7e\xbc\x3e\xf0\x32\xe6\x80\x96\xc7\xc3\xc1\x2f\xaf\x1b\xb1\x38\x39\x9d\x94\x8d\x12\xef\xd8\x8f\x3a\x64\xf4\xce\xaf\x4d\xee\x2e\xcf\x52\x5d\xe7\xed\xb9\x29\xbf\x01\xea\x72\x35\x95\x99\x14\xbf\xd4\x1f\xf1\x3c\xf5\xa0\x4b\x9a\x2a\xa2\xc2\x36\x75\xa8\x12\x08\xe0\x19\xce\xbf\x4b\x40\xa6\x0d\x90\xb8\x70\x12\x3d\x05\x27\xf4\x1b\xed\x08\x29\x6f\x29\x3d\x9c\x47\x93\x0c\xe2\x77\x76\x9f\x11\x2f\x70\x04\x80\xe0\x86\x63\x08\xba\x89\xf2\x5d\xa3\x31\xcb\xd4\x2c\xe7\x99\x5e\x82\x01\x33\xc8\x93\x41\x96\xab\xa1\x02\x54\x7e\x5a\x48\x00\x08\xd2\x02\x57\x1b\x5f\x30\x95\x44\xc3\x55\x5b\x1d\xd1\xfa\x5b\x70\x64\x7b\xa2\x2a\x91\xe1\x39\x30\x41\x07\xc7\x13\xc8\x13\xe4\xbe\xfa\x6d\x94\x42\xf8\xe0\xe6\x6a\x0c\x3a\x4d\xda\xf9\x86\x08\xba\x7e\xdf\x92\xc5\x5b\x7e\x2a\xcc\x5a\xab\x52\x65\x70\x94\x15\xea\xf2\x70\x95\x3c\xbe\xbb\x48\x3e\x71\x71\xde\xbb\x7a\x61\xd1\xeb\xa7\x1a\xf3\x45\xaa\x8b\x3c\xa9\xa6\x8c\xa0\xaa\x07\x7e\x14\x42\x76\x7f\xf0\xe4\x41\x07\x10\xb3\x89\xeb\xda\x0e\xa8\xdb\x84\x7e\x53\x60\x74\x9e\x78\x62\x34\xd4\x3f\x66\x01\x92\xda\x0e\x1f\xd4\x48\x72\x48\x3c\x36\x91\xb9\x89\x87\x0f\xff\xa5\x2f\x7d\x09\x6f\xdd\xba\x65\x00\x00\x7e\xe5\x57\x7e\x05\x5f\x7f\xfd\x75\xf3\xd2\x4b\x2f\xa9\x7e\xbf\x5f\x06\xaa\xa6\x80\xd0\x5a\x54\x10\xc8\x49\xb7\xf6\x5b\x0f\xcb\x83\xe4\x32\x0a\x5a\x2e\x4d\xd2\xbd\x4f\xde\x1d\x7e\xf2\xd9\xc3\xe1\x17\x9f\xb8\x3f\xf8\xb5\x2b\x93\xec\x97\x47\xcb\xf4\xe7\xb3\x02\x6f\x28\x83\xe5\x39\x4f\xa4\x7e\xfb\x46\xe2\x5b\x09\x19\x58\x18\xda\x8e\xcb\x24\x04\xd3\xb6\xc6\x1e\x6b\x80\x2e\x9c\xeb\x57\x2a\x6b\x2b\x6d\x10\x01\x50\x31\xae\xbf\xa8\x83\x17\x04\x00\x7b\x9f\xd1\x76\x62\x70\x36\xe9\xeb\xa3\x59\x75\x9f\x91\x5f\xef\x42\xf2\xd5\x75\x86\x86\xec\xe2\x8b\x59\x11\x63\xe5\x2a\xf5\xd9\xb1\x67\x89\x5f\x53\x58\x89\x37\x12\xff\x98\x7c\x94\x0f\xb5\x1a\x80\x40\x2f\xa5\x2b\x66\xf5\xe1\xf1\x70\x50\xd6\xc4\xbb\x2d\x1f\xf8\xb3\x14\x2e\xc6\x7b\x13\x59\x9d\x3f\x57\x29\x31\x9c\x21\x19\x35\x3c\x2d\xd7\x77\xdc\xac\x1a\x5b\xed\xcc\xbf\x71\xf4\x1a\x73\x31\x9e\xb1\xf0\x92\xbf\x64\x0a\x96\xc2\x35\xc9\xf2\xa0\xdf\x45\xf7\xd2\x4b\x2f\x29\x02\x18\xdc\x9a\x0a\x05\xe1\x9d\x46\xb5\x7b\x8d\x8c\x31\x23\x44\x1c\x81\x81\x51\xaa\x71\xef\xd2\xb4\xf7\xe8\xcd\x7b\x5b\xcf\x3d\x79\x3c\x78\x6e\x7f\x96\x5e\x4b\x0b\x95\x01\x82\x5f\xc7\xe2\xca\xb1\x7e\x22\x4a\xe9\xdc\x49\xb8\x14\x34\x94\xa1\x9c\x55\xc3\x8d\xb6\xd8\x3a\x19\x1f\x2c\x3c\x31\xb3\xc9\x75\x20\x79\x20\xfa\x56\x5e\x9d\x64\x34\x5a\x23\xcc\x72\x65\x0e\xe7\xbd\xe2\xdd\xfb\xc3\xfc\xcd\xbb\xdb\xeb\xef\x1f\x6d\xaf\xde\xfe\x78\x67\x75\xfb\x64\x2b\x9f\x21\xa2\xbb\xfb\xc8\xdd\xb9\xa2\xa1\xba\x7f\xc5\xad\x51\xa2\x77\x22\x01\xf5\x73\xee\xe5\x97\x5f\xd6\x00\x00\x5f\xfa\xd2\x97\xd4\x37\xbf\xf9\x4d\xa9\xde\xc6\xde\x25\xff\xa6\x76\x21\xd5\x7d\xc9\xe2\xd9\xd4\x86\x25\xde\x31\x5a\x1e\x5f\x97\x76\x47\xc3\x39\xd7\xd4\x76\x29\x1d\xa5\x6f\xe2\x47\x69\xa4\xf0\xd2\x77\x69\xc4\xed\xf9\x0f\x06\x03\xb5\x58\x2c\xf4\x97\xbe\xf4\x25\x05\x00\xf0\xe4\x93\x4f\x42\xaf\xd7\xab\x0d\x04\x68\x7c\xe4\x0e\x21\x20\xed\xbe\xd6\x07\x18\x63\xd2\x54\x63\x76\x79\x9a\xed\x5e\x3d\xcb\x1e\xbf\x3a\xce\x7e\xee\x60\xda\xfb\x4f\xdb\xab\xe4\xd9\xac\xc0\xeb\x89\xc6\x5d\x04\x1c\xf0\x1e\xbd\x04\x26\xc1\x2e\x45\x41\x9e\x92\xd2\xb8\x10\x02\xbd\x81\x3a\x63\xcf\xdb\xbd\x78\x6e\x86\x00\x96\x92\xa6\x04\x3d\x72\xa3\xd3\x68\x16\xe3\x7e\xfe\xdd\xb7\x0f\xe6\xff\xdb\x0f\xae\xce\xbe\x75\x6f\xb4\xbe\x03\x00\x0b\xf7\x73\xed\xcb\x18\xa3\x01\xaa\xfb\x8c\x0e\x0f\x0f\xe1\xbb\xdf\xfd\x2e\xdc\xba\x75\x4b\xaa\x1b\x5d\x75\x12\x2f\x93\x58\xfd\x6a\xe2\x0d\x0d\xef\x5d\x79\x34\xa5\x21\xc6\x8f\x7f\x93\xfa\x80\xa6\x34\x35\x85\xe7\x2e\xd6\x06\x9a\xfa\x8e\xb6\xf4\xd0\xb8\x25\x99\x78\x1c\x31\xda\xa6\xf8\x02\x7a\x69\xaa\xa8\x09\x35\x79\x53\x0d\xf1\x03\xe2\xc7\x9d\x64\x61\x89\xf1\x8b\x8d\xb4\x24\x94\xa9\x84\xef\x34\x4e\x20\x74\x12\x02\xe6\x05\x8f\x8c\x7e\xd3\xd1\xa9\x02\xa8\x56\xcc\xdb\x93\x30\x0d\x01\x07\x41\x9e\xf2\xc3\x99\x90\x98\x24\xb4\x02\xbd\x4c\xf5\x72\xd1\x2b\x96\x06\xa0\xe8\x17\x6a\xd0\xcf\xd5\x30\x71\x23\x2f\x4b\xd8\x08\x2c\x9c\xe5\x81\x91\xb8\x30\xde\xca\x21\x80\x16\xf9\xe4\x38\x97\x41\xe4\x42\x46\x70\x16\x8e\x80\x43\x73\x2e\x55\xec\x6c\x07\x1a\xb7\x0a\xc5\xd8\xc5\xae\x32\xe0\xe1\x59\xba\x51\x01\x66\x89\x81\x0b\x59\xa1\xae\x8e\x56\xc9\x8d\xbd\x79\xfa\xf8\xc5\x79\xef\x91\xd1\x2a\xdd\xdb\x5e\x27\x09\x02\xac\x56\xa9\x31\x1a\x21\xb1\x66\x74\x05\xe5\x08\x9a\xde\x89\x84\x36\xdf\xfc\x1a\x18\x5b\xc6\xee\x9b\x9f\x4e\x22\x77\x23\x51\xd1\xb8\xa8\x91\x5c\x0a\xea\xa1\x44\x17\x1b\x15\x35\x8d\x22\x01\xe2\x6d\xab\xcd\x49\xf1\x49\x61\xa5\xd1\xa7\xeb\x74\x68\xd1\x50\x7f\x1e\x9e\x9b\xaf\x25\xfe\x26\x42\x63\x84\x1f\x1f\x4d\x72\x99\x7c\x9e\x7c\xfe\xf3\x9f\xc7\x47\x1f\x7d\x14\xad\x02\x85\x5b\xb7\x6e\x99\xdf\xf8\x8d\xdf\xc0\x24\x49\xa8\xf2\xa6\x75\xc1\xf5\x1d\xde\xba\x42\xa7\x84\xec\x96\xe6\x0c\x00\x7a\xa8\x21\x1b\xae\xd4\xe8\xda\xa4\x7f\xf9\x89\xfb\x5b\xcf\x3d\x7d\xb4\xf5\x85\x9b\xf7\xb6\x7e\xfd\xea\x24\xfb\x6f\xb7\x57\xea\xe7\xb2\x42\x3d\x9a\x18\xb5\xab\x00\x52\x6b\x0b\x09\xac\x1a\xe5\x83\x9d\x0c\x22\x6d\xb8\xea\x81\x8d\x7f\xf5\xd6\x93\x60\x77\x10\x7a\x32\x6f\xc1\x71\xbc\x31\xb4\xe8\x56\x6c\xab\xa3\x13\xc2\xc6\xeb\xfa\x8f\x5a\xe1\xa4\xa9\x56\xa3\x5e\xa1\xcc\x3a\xd1\xf7\x27\xfd\xe2\x64\x95\x9a\x15\x94\x8b\x74\x01\x11\x0b\xb7\x16\x90\xf6\x8d\xa3\xd1\x08\xbe\xfe\xf5\xaf\xd3\xa9\x85\x20\x65\x10\x4e\xe7\x34\xd5\x69\x5a\xae\xc0\xfc\x8d\xe0\xcf\x79\x77\x9d\xc6\x50\x42\x38\x49\x76\x1e\x0f\x6f\x73\x8e\x8f\x14\x37\x8d\x8f\xcb\x2e\xe9\xde\x36\xdd\xcd\xf9\xf1\x36\xc0\x75\x30\x97\x81\x83\x88\xa6\x76\x16\x6b\xc7\x94\x5e\x91\xef\x00\x21\xa6\xe0\xf9\x50\x93\xdf\x05\xea\x82\xb6\x62\x2e\x86\x4c\x39\x4d\x9b\x95\x44\xa2\xe7\x61\xa1\xe5\xb9\x29\xbc\x24\x73\xd3\x28\xb2\x6d\xe4\x2b\xa2\xf9\x5f\xfc\xc5\x5f\x54\xdf\xfe\xf6\xb7\xb5\xbb\x7b\xc4\xfa\xfb\x11\x17\x54\x23\xaf\x0c\x00\x06\x88\x38\x00\x80\x11\x00\x0c\xed\xdf\x11\x00\x8c\x92\x02\x76\x2f\xce\x7b\x8f\x3c\x71\x3c\x78\xf6\xa9\xa3\xad\x4f\x1d\x4c\x7b\x37\x7a\x5a\x65\x00\x60\x81\x43\xf7\x9b\x5d\x01\x80\x8c\x96\x40\x04\x05\x6e\x94\xd6\x04\x1a\xc0\x40\xb8\xe5\xba\x83\xed\xa4\x03\x9c\x89\xd2\x75\x09\x2b\x01\x15\x68\x90\xcf\xb6\x00\x6d\xc0\xac\xb4\x82\x93\x55\xa2\x3f\x98\x66\xc5\x0f\xef\xec\xae\xbe\xf3\xd1\xee\xea\xed\xfb\x5b\xeb\xdb\xe3\x41\x7e\xb2\xe8\xe9\x45\x81\x90\x03\x42\x6e\xaa\x5b\xa7\xb5\x1d\x2d\xba\xf9\x7b\x00\x52\x07\x98\xf5\x25\xa8\x73\xc6\x18\x78\xe5\x95\x57\xf4\xe7\x3e\xf7\x39\xb5\x58\x2c\x00\x00\xe0\xf5\xd7\x5f\x8f\xd5\x4b\x17\x5e\x6a\x97\xfc\x7b\xac\x0e\xc7\xda\x74\xec\x3b\x30\x3a\x10\x68\x9a\x46\x82\x92\x6b\x1a\x81\xc6\xfa\x81\xa6\x51\x32\x8d\xaf\x6d\xd4\xdc\x48\x7b\xf3\xe6\x4d\xb5\xbd\xbd\xed\x89\xae\x5e\xbd\x0a\xff\xf8\x8f\xff\xa8\x5f\x7c\xf1\x45\x15\x58\x18\x00\xf8\x74\xa1\xb2\xdf\x14\xf9\xa6\x00\x2a\xeb\x8a\xfd\x9b\xa2\x86\x34\xd3\x98\x6d\x2f\x93\xd1\x85\x45\x7a\x70\x69\xda\x7b\xfc\xea\x59\xf6\xcc\xc1\xb4\xf7\xe9\xad\x55\xf2\x6c\x4f\xe3\x75\x65\x60\x04\x50\xf2\xb7\xb1\x42\xe3\x79\x00\xc4\xd5\xeb\x7c\x68\x99\x09\x2d\x34\x50\x1b\xc8\xb8\x30\x2e\x4e\xb4\x42\xd0\xb5\x6f\xd4\xca\x42\x2f\x5d\xa4\x38\x86\xf1\xd2\xab\xc4\xdc\xfe\x68\x77\xf9\xf5\x1f\x5c\x9d\xfd\x9f\xef\xed\xcf\xdf\x5c\xf6\xcc\xd8\x18\xb3\x40\xc4\x15\x00\xac\x8c\x31\x39\xd8\x36\x64\x65\xd4\x00\x95\xb5\x52\x70\x5d\xca\x5e\xa2\xe5\xae\xad\x0e\xc6\xea\x74\x97\xba\xd6\xc5\xda\x10\x1b\xdc\x37\xf1\xe8\xa2\x37\x25\x59\xda\xfa\x86\xb6\xf6\x12\x7b\x8e\xf9\x41\x07\x7f\x1a\x87\x44\x1f\x93\xbd\x26\xaf\xb3\xb8\x70\x2b\x0a\x45\x5e\x40\xde\x81\xd0\x70\x81\xa4\x0e\x88\x8e\x90\x28\x1f\x8e\x08\x39\xaa\x45\xf2\xe3\x68\x8d\x3e\x73\xd4\x48\x75\x18\x47\x89\x12\x22\x04\x42\xd7\x94\x6e\x69\x74\xca\xdf\x11\x00\xcc\x07\x1f\x7c\x60\x7e\xf9\x97\x7f\x59\xfd\xe5\x5f\xfe\xa5\xbb\xd7\x88\xe7\x41\x49\x5c\x8e\x3a\xa2\x3c\x35\x1a\xb3\xec\xe9\xf5\xbc\xa7\x17\x5a\x41\xb1\x95\xab\xc1\x60\xad\xb6\x95\xb6\x96\x17\xd7\xcb\xd0\xc0\x0d\xd7\xd4\x07\x16\x18\x14\xc2\xd8\x51\x5c\x70\x5e\x03\x11\xca\x83\x15\x1f\x38\x5c\xff\xc2\x04\x61\x96\x9a\x2a\x83\x68\x88\xe0\xd0\x3a\x43\x60\xb4\x25\xc1\x30\xa0\xef\x64\xfd\x96\x6e\x06\xc6\x82\x5d\x4f\x3c\x6f\xc0\x55\x28\x77\x04\x1f\xa6\x68\x70\xd4\xd3\x78\x65\x90\x27\x4f\xee\xcd\x7a\x4f\x1d\x4c\x7b\x8f\xec\x2e\xd2\xdd\x7e\xa1\xb2\x5e\xa1\x12\x65\x40\xd9\x40\xee\x5f\x65\x2d\x65\x4e\x59\xf9\x41\x2b\x40\xb0\x2b\x89\x0e\x96\x11\xa0\xb4\xaa\x7d\xf6\xb3\x9f\xc5\x47\x1e\x79\x04\x1e\x7b\xec\x31\x78\xec\xb1\xc7\x02\x8b\xcc\xd3\x4f\x3f\xad\x8e\x8f\x8f\xf5\x27\x3e\xf1\x09\x3c\x3d\x3d\x95\x46\x73\x7c\xa4\x43\xb3\x37\x36\x22\x6c\x1a\x29\x4a\xa3\x49\x10\xc2\x70\x8b\x05\xfd\xc6\xdb\x8c\xc4\x4b\x1a\x39\x51\xf9\x63\x23\x5a\x69\xf4\x2a\xf5\x25\x52\xbf\x40\x0b\x5f\xec\x43\x7e\xed\xd7\x7e\x0d\xbf\xf1\x8d\x6f\xe8\x2f\x7f\xf9\xcb\xf8\xd8\x63\x8f\xc1\xde\xde\x1e\x5f\x1f\x70\x68\x00\x00\x20\x00\x49\x44\x41\x54\xbc\xf0\xc2\x0b\xce\x82\xa6\x00\xaa\xf5\xdb\x10\x5a\x56\xd0\x18\xe3\x2c\x2c\x0a\xaa\xad\xcd\xe5\x1a\x16\x03\x59\xaa\x55\x7f\x6b\x9d\x6c\xef\xcf\x7b\x97\x1e\x19\xf7\x9f\x7c\xe2\x78\xf0\xb3\x4f\xdf\x1d\xfe\x37\x9f\xb8\x3f\xf8\xd5\x83\x59\xef\x8b\xc3\x75\xf2\xe9\x54\xe3\x35\x05\x6e\xf7\xa0\xa9\x1a\xa6\xb1\x22\x53\xec\x52\x43\x1b\xae\xb2\x1b\xdf\x6e\x2b\x3a\xb2\x6e\xcc\xaf\x61\x03\x40\x34\xd5\x91\x09\x25\x3a\x29\x2f\x6c\x75\x20\xc5\x87\x71\xe1\x08\x0f\x63\x0b\x0a\xa1\x3c\xc8\x12\x48\xbb\x23\xe2\xd9\x46\x82\xca\xc0\xb0\xa7\x55\x5f\x01\xcc\x67\x99\x3e\x9c\xf4\x8b\x39\x28\x2c\x6c\x39\x18\xb4\xd7\x02\x58\xfe\xc6\xe6\xa9\x89\x9c\x5a\x1d\x2b\x7b\xa9\x8e\xc7\xac\x01\xb1\x7a\x23\x29\x75\xa9\x5d\x34\xe9\x1d\x5a\xbf\xb8\xac\x92\xcc\x12\x6f\xca\xb7\x8b\xcc\x5c\x77\xf2\x34\xc7\xc2\x34\xb5\x29\xa9\x1d\x49\xcf\x3c\xdf\xa5\xb4\xc4\xfc\x79\xde\x4a\x6d\xb3\xad\xbf\x28\xeb\x10\xc9\x80\x18\xc2\x6c\xf2\xef\x62\xad\x88\xb9\xae\x96\x90\xb6\xb8\xba\xbc\xb7\xc5\xfb\xb0\x5c\x8d\xb7\xb5\xbc\xf0\x5f\x6a\xff\xd2\x35\x2f\x43\xf7\xf3\x6b\x5e\x00\x46\x4a\xc3\x68\x67\x99\x5e\x7e\xf2\xde\xe0\xd9\x67\x0f\x87\xbf\x10\x58\x5e\xac\xe3\x1d\x08\x04\xef\xd5\xbf\x00\xe1\x34\x0b\xa5\xaf\x5d\x35\x50\x7a\x06\x23\xb6\xa0\x33\xb5\x61\x02\xa0\xc4\x04\xb0\x3d\x92\xef\x90\x43\xe0\xc3\xa5\x8d\xc9\x1f\xbe\x87\xe9\x6d\xb6\xfa\xd4\x63\x88\xfb\x01\x80\xd6\x60\x16\x45\x62\xee\x2c\x52\xfd\xc3\x93\xad\xfc\x8d\xbb\xa3\xf5\x8f\xee\x8e\x56\xef\x9f\x0e\xf2\xa3\x69\x56\x8c\x17\x3d\xbd\xc8\x95\x59\x69\x05\x1a\xc2\xf5\x2f\xfe\x47\x47\x90\x50\xd5\x85\x9a\xf5\x85\xd0\x78\xd7\x30\xe2\xe4\xee\x41\xea\x70\xd3\xa8\x6d\x13\x7f\xe9\x5b\x9b\x05\xa5\x4d\xee\x2e\xfd\x0a\x34\x7c\x8b\x8e\x4a\x5f\x7c\xf1\x45\xf5\xca\x2b\xaf\x68\xb6\x0e\xcd\xc7\x5b\x5b\xef\x55\x5a\x4d\xe8\x37\x45\xfc\xa9\x85\x25\x05\x03\x4a\x19\x48\x7b\x1a\xd3\xad\x55\x32\xda\x5d\xa4\x7b\xfb\xb3\xde\xb5\x6b\x67\xbd\xa7\x2f\x4d\x7b\x3f\xbb\xbd\x4a\x9e\xcb\x72\x7c\x5c\x19\xdc\xc5\xf2\xf8\xfe\x2a\x1e\xfb\x97\x8f\xb8\xa2\xb5\xda\x02\x8e\xfa\xa0\x82\x0c\x2e\x00\xeb\x7c\x6b\x6d\xd3\xb6\x77\x03\xc1\x80\xc1\xb7\x7f\x0b\x68\xaa\x6b\x3f\xa4\xb6\x56\x31\xa5\x6b\x64\x8c\x31\xa0\x15\xcc\xc6\x83\xfc\x7b\xef\x5e\x5a\xfc\xcd\xbf\x3f\x32\xf9\xe7\xfb\x5b\xf9\x11\x20\xcc\xa0\x5c\xef\xb2\x02\x00\xb7\xa6\x8c\xb6\x1f\xa9\x0d\x9c\x57\xd7\x74\xb1\x5a\xb4\xf1\x39\x4f\x9b\x88\xc9\xd1\xc4\xa7\xc9\x52\xd1\x16\xff\x79\xf5\xee\xa6\x3a\xba\x8b\xd5\xa7\x8b\x4c\x6d\x3c\x3b\xf5\x21\xf1\x5e\x5f\x16\x0c\x3a\x08\xb1\xa9\x6b\xca\x90\xf3\x00\xa0\x58\x25\x38\x4f\xfc\x5d\xe3\x6b\xec\xbc\x1d\x78\xa1\x9d\x1e\x94\xd3\x45\xca\xce\x81\x0f\xa0\x04\x30\x43\xf2\xf3\x8b\x76\xd1\xc0\x68\x7b\x95\x5c\x7a\xf2\x68\xeb\xe9\x9f\x39\x1c\x3e\x7f\x79\xd2\x7b\x3c\xd5\x98\x01\x40\xd8\xad\xd8\x7e\x24\xe8\xa3\x58\xcf\x16\x82\x95\x6a\x90\x47\xe9\x43\x8b\x70\xe9\xe1\x59\xc4\xf8\x13\x27\x75\xc0\x4d\x9d\x71\x1b\x5d\xc0\x4f\x64\x44\x21\x1a\xe3\xe3\xd3\x4d\xce\xa4\x21\x1d\xb4\x24\x8c\x41\xc8\x35\x9a\xf1\x2a\xd1\xef\xcf\x32\xfd\xe6\xc9\xd6\xfa\xf5\xc3\xd1\xfa\xdd\xbb\xa3\xd5\xed\x93\xad\xfc\x64\x9a\xe9\x49\xae\x74\x5e\x28\xc8\x01\x20\x07\xf4\xa0\xc5\x2d\x38\xd4\x00\xe0\xa6\x8d\xb4\x9d\x72\xa8\x4d\x23\x11\x65\xa9\x4d\x00\x12\xab\x67\xd7\x91\x5f\xbc\x78\x51\x01\x00\xdc\xbf\x7f\x7f\xd3\xfa\xdc\xb5\xf3\x7d\x10\x80\xd1\x34\xd0\x71\xee\xbc\x83\x8e\xce\xfd\xca\xc5\x8b\x17\x15\xcd\x1f\x3a\xed\x03\x00\x74\xea\xc7\xcb\x46\x17\xd3\x73\xb9\xe9\x74\x10\x59\x7c\x5b\xb6\x5f\x03\xa9\x32\xa0\x12\x8d\x59\x4f\xe3\x60\x7b\x99\x0c\xf7\xe7\xe9\xfe\xd5\xb3\xfe\x8d\xcb\x67\xbd\x9f\xb9\xb0\x48\x7f\x6e\xb0\x56\xcf\xa5\x06\xaf\xa0\xc1\x01\x18\x50\xbc\xed\x54\xf5\x99\xc3\x8e\x38\x88\x91\xc1\x3c\xdf\x12\x5d\xd5\x7d\x69\x3b\xb4\x31\x74\x80\xc2\xb6\x4f\x03\x6b\x37\xb5\xc1\x0b\xa1\x77\xfc\x79\x20\x4b\x9b\x27\xe6\xe4\x78\xb8\xfe\xd6\x5b\x57\xa6\x7f\xf9\xfd\x47\x66\xdf\x5b\xa6\x7a\x0c\x00\x33\x32\x6d\x14\x4c\xc3\x82\x6d\x07\xaf\xbc\xf2\xca\xa6\xfd\x70\x9b\xa2\x84\x8e\xdf\xdb\x74\x9c\xf4\xde\x24\x57\x97\x6f\x4d\x8a\xbc\x0d\xa8\x73\xb9\xdb\x64\xa7\xfe\x9c\xb6\x49\xd6\x4d\xfb\x92\x2e\xbc\xba\xd0\x4a\x61\x01\x20\xac\xd3\x5d\x12\xb3\xa9\x8b\x09\xd1\xd4\xd1\xc5\xe8\x9d\x3b\xcf\xe8\xab\xad\x32\xc5\xf8\x6c\x92\xa6\xa8\xa3\xeb\x5d\x38\x78\xb1\x7f\x03\xf0\x62\x8c\x19\x00\xc0\xd0\x59\x5d\x00\x60\x04\x06\x46\xfd\x1c\x2f\xde\xbc\xb7\x75\xf3\xd3\x1f\x6d\xff\xe2\xc1\x2c\xbb\xd1\xcb\xcb\xdd\x07\xb6\x87\xe1\x23\xc6\xda\x3b\x35\xef\xd6\x0e\x70\x60\x23\xb9\x18\x8f\xa8\x85\x45\xea\x24\x6d\x9c\x8d\x1d\x29\x43\x11\x35\x5c\x22\x01\xaf\x8e\x20\x8c\xaa\x03\x20\xdd\x73\x6c\xbe\xdf\xcb\x4b\x47\x9e\x60\x56\x85\x32\xc7\xcb\xd4\xbc\x3d\xcd\x8a\x7f\x3f\xde\xca\x5f\xff\x78\x77\xf5\xde\xc7\xa3\xe5\xe1\xfd\x61\x3e\x5e\x27\x66\xa5\xd1\xe4\x1a\xad\x05\x06\xbd\x25\x06\x48\xa7\x0c\x50\x01\x1b\x80\xb0\xbe\xd4\xea\x0e\xdf\xa9\x44\xfc\x01\x11\x3d\x98\xf9\xf2\x97\xbf\xac\xfe\xfa\xaf\xff\xda\x87\x77\xbb\x61\x48\x90\xae\x1d\x65\x97\x6f\x31\xd7\xd6\x6f\x3c\x70\xa7\x26\xa4\xab\xe6\xcf\xd7\xa6\x34\x59\x54\xc8\x1a\x10\x0a\x6c\xa8\x65\xc5\xb7\xd7\xe0\x67\x20\x45\x00\x85\x06\xd2\x5e\xa1\xb2\xe1\x4a\x0d\x2e\xcd\x7a\x7b\x97\x27\xbd\x6b\x97\x27\xd9\xcd\x8b\xf3\xf4\x33\x5b\xab\xe4\xd3\x3d\x0d\x37\x94\xc1\x11\x00\xa4\x41\x8b\x12\x2a\x5e\x58\x5f\x43\x50\x60\x9b\xb5\xad\x8b\x32\xf4\x8f\x59\x21\x25\xbe\x04\x56\x54\x31\xd1\x36\x19\x91\x4b\xf2\xa8\xb5\xc3\xc8\x00\x66\x95\xe8\x3b\x1f\xef\xac\xfe\xfe\x7b\xd7\x27\x7f\xf9\xce\xa5\xf9\x7b\x1a\xcd\x04\x11\x17\x16\xbc\x94\xc0\xbf\x02\x30\x00\xb6\xfc\xc7\xe3\x31\x7c\xf5\xab\x5f\xed\x6a\x81\x00\xe1\xfb\xa6\x96\x81\x2e\xdf\x37\x19\x5c\x77\x05\x56\xce\x0f\x22\x7c\xba\xca\xd1\x14\xb7\xe3\xdd\xa6\x8f\x9b\xdc\x26\x03\x8c\x4d\x01\xce\xc6\xfd\x0e\xdd\x55\x44\xe7\xa7\x28\x43\x24\xfe\x8a\x3d\x23\xf9\xae\x84\xf0\xfc\xdd\xd1\xd2\xb9\x2b\xc5\xde\x69\x3c\xee\xbb\x73\x34\x41\x86\xd1\xd3\x6f\x74\xb0\x82\x10\x66\x8a\x24\x13\x8d\x9b\x7f\xe7\x8e\x7e\xef\x94\xc9\xf4\x9c\x17\xd6\xa1\x3a\x19\x35\x7b\x46\xac\x2e\x2b\x03\x28\x15\x22\x16\x0a\xf2\x7b\xdb\xeb\xf1\xa2\xaf\x4f\x87\xab\x74\x38\xc8\x93\x51\xa2\xb1\xa7\xa0\x5a\xfd\xef\xc7\x6d\x1e\x94\x58\x5f\x1f\xad\x5b\x84\x87\x81\x95\x06\xb0\x6e\x08\xae\x76\x14\x80\x0f\x13\xd0\x60\xf8\x5c\xeb\x80\x03\x99\x80\xed\x42\xf2\x91\x84\xaf\x24\x23\x82\x38\xb0\x1e\x24\x00\x28\x58\x23\x23\x41\xd9\x79\x34\x02\xad\x63\x4c\x79\xd9\xb0\x09\x1a\x1c\xf5\x0a\xf5\xf8\x70\xa5\x3e\xbd\xb7\x48\x3f\x73\x79\xda\x7b\xfa\xda\xa4\xbf\x73\x79\xd2\x1b\xec\x2c\x93\x34\xd1\x98\xac\x13\x83\x45\x62\x00\xd0\x83\x51\xb7\x50\x93\xae\x39\x70\x4a\x90\xa7\x0a\x01\xc0\x9f\xba\xec\x76\x28\x01\x6b\x6f\x6e\x5d\x80\x5b\x1b\xf3\xe6\x9b\x6f\x06\x75\x35\xcf\xf3\xb6\xf6\xc7\xfd\x9a\xe8\xdb\xda\x01\xa5\x6b\xa2\xe5\xed\x65\xe3\x38\xff\xf0\x0f\xff\x50\xbc\xb5\x9b\xa6\xd7\x1e\x02\xe9\xfb\x24\xac\x16\x6a\x18\xfb\xce\xf3\x32\x41\x44\x77\xee\x8a\x02\x7b\x04\x3f\x86\xa7\xda\xa6\xc6\x98\x14\xca\x43\xe2\x7a\xca\x40\x36\x5a\x25\x5b\xd7\xc7\xfd\x83\xa7\xee\x6d\x7d\xe2\xb9\xc3\xe1\x2f\x3c\x7d\xb4\xf5\x1b\x8f\x9d\x0e\xbe\x72\x69\xd6\xfb\x1f\xb6\xd6\xc9\x67\x52\x53\xae\x5d\x01\x7b\x78\xa4\xb1\x03\x04\x04\xf4\x03\x03\x43\xac\x16\xf4\xb8\xfd\x60\x6d\x99\xab\xa3\xac\x21\x70\x6b\x21\x87\xfc\xd5\xfa\xaf\x8a\x4f\x7d\x03\x73\xfd\x04\x6b\x0e\x3c\x78\xdb\x90\xee\x2a\x02\xda\x8e\x30\x2c\x3c\x07\x90\x12\x83\x83\x7e\xa1\x2e\x64\x85\x9a\x9c\x0c\xf3\x9f\xcc\xfa\x7a\x01\xe0\xaf\x01\x70\xb7\x47\xbb\x7e\xd1\xb2\x37\xe6\xcf\xfe\xec\xcf\xb4\x8f\x3a\x64\xcb\x75\x04\x2d\x57\x8c\x3c\xc7\x68\xa4\xba\x49\x79\x72\x1e\x92\x1e\x89\xc5\x13\xab\xd7\x52\xdb\x8e\xb5\x21\x49\x26\xc7\xa3\x49\xef\xf2\x7c\xd0\x42\x38\x10\xfe\xf2\x34\xc4\xd2\xe3\xde\xbb\xe4\x6b\x4c\x2e\xce\x4b\x7a\x96\x64\x02\x80\xb2\x71\x36\x39\xae\x94\x9b\x46\x8a\x5d\x10\x53\x93\xe9\x89\x3e\x73\x2b\x0b\x0f\xdb\x16\x9f\x24\xe7\x79\xd0\x72\x17\x39\x63\x61\x45\x27\xac\x6f\xc8\xa1\x2c\x87\x95\xfb\x46\x46\x1e\x1a\xc2\x91\x7a\x6e\x10\xf4\x3b\xfb\x8b\x77\xa6\xa9\x5e\x7c\xfa\xce\xf6\xf8\xb1\x93\xc1\xb3\xa3\x65\xb2\x9f\x68\x54\x5e\x21\x1b\x72\xa9\xa2\xc7\x2d\xe8\x47\x57\x14\xcb\xd4\xce\x6c\x21\x96\x97\xaa\xa6\x94\x01\xa5\x5d\x04\x35\xa0\x01\x41\xb7\x28\x74\x80\xb2\x3f\x75\x1c\x49\x4a\xb7\x45\xd3\x91\xa2\x14\x07\x0a\xcf\xc8\x68\x9c\x5f\xad\x37\x60\xca\x81\xc8\x35\x48\x35\x3e\x3e\x5a\x26\x8f\x6f\xaf\x92\xff\x7c\xf9\x2c\xbb\xb3\x4c\xf5\xdb\xb3\xac\x78\x73\x3c\xc8\x7f\x70\xbc\x95\xbf\x7f\xb8\xb3\x3a\xba\x3b\x5a\x8f\xcf\xfa\xf9\x42\x2b\x58\xd9\xb2\x0e\xac\x30\x00\x10\xec\x52\x72\xe5\x2d\x4d\x1b\x41\xbd\x1d\xd4\xa6\x40\x00\xda\xd7\xc7\xbc\xf8\xe2\x8b\x9e\xcf\x2b\xaf\xbc\xa2\xdd\xbb\x60\x96\xaf\xc5\x67\xdd\x26\x96\xcb\x36\x4b\xa9\x7e\xe6\x99\x67\xd4\x8f\x7e\xf4\x23\xdd\x45\x2e\x44\x0c\xd6\xa8\x00\x80\x6c\x51\x2c\xf3\x4e\x51\x3f\x44\x74\x7d\x9c\x02\x90\xd7\xab\xd0\x69\x20\xf2\x9c\x02\x00\x24\x06\xb3\x4b\xd3\xde\xf0\xea\x24\xdb\x3b\x98\xf4\xae\xef\xcd\xd3\x27\x46\xcb\xf4\x67\x86\x6b\xf5\x5c\x56\xa8\x9b\x89\x86\x7d\x70\xfd\x28\xa9\x48\xbe\xce\xb1\x5d\x3d\xe5\x0b\xd6\x1a\x4e\xc7\x8d\x44\xc1\x1a\x14\x37\x90\x40\x17\x29\x65\xe9\xf8\xbb\xb6\x4e\xe3\x62\xd6\xd7\x80\x9e\x3e\x63\x25\xb7\x07\xdf\x54\x08\x1b\x61\x89\x0c\x5d\x80\xf2\xb3\xf1\x09\x36\x69\x7f\xad\x6e\x5c\x1f\x67\xff\xfd\xcf\xde\x1e\xdd\xfd\xd6\x93\xa7\xff\xf7\xbc\xa7\xc1\x5d\xc6\x08\x55\x7d\xcf\x59\xff\x07\x7f\xf0\x07\x7f\xa0\xfe\xe4\x4f\xfe\xa4\x69\x9a\x44\x45\xbe\xb9\xbe\x53\xd2\x15\x31\x5e\x9c\x9e\xc7\x01\xe4\xbd\x8b\xc5\x24\xe6\x27\xb5\x8f\x26\xbd\xc8\x65\xa0\x34\x6d\xfa\x49\x8a\x47\x75\xa4\x91\xe4\xe2\x32\x74\x7d\xe6\x69\xe0\x7e\x52\x5f\x21\xf5\x21\xfe\x59\x6a\x2b\x3f\x0d\x33\x53\x53\x1c\xd2\xbb\x14\x07\x44\x68\x24\x1e\x9b\x9a\xc0\x9c\xdb\x34\x1d\x4d\x3c\x7c\xdc\x59\x96\xa9\xd5\x6a\xc5\xb7\x48\xbb\xbf\xee\xc7\x17\xec\xd6\x16\xed\x42\xb5\x6d\x7a\x57\x69\x18\xed\xcf\x7a\x57\x9f\xfb\x78\xf8\xe9\x27\x8e\xb7\x3e\x75\x61\x9e\x5e\x49\x35\xa6\x76\xa3\x00\x00\x40\x64\x3a\x04\x7c\xc7\x44\x47\x51\xe0\xcd\xe7\x50\x81\x1a\xd2\xd9\x06\x7c\x6a\x4c\xe3\x8e\x2f\xfa\x65\x1f\x03\x90\x14\x03\x20\x8d\x6b\x52\x22\x22\x05\xb2\x07\x87\x6b\x85\x03\x29\x13\x01\x64\x20\xc8\xc3\xbf\x03\x18\x6d\x4a\x30\xb9\xc8\x95\x39\x5c\xa6\xfa\xfd\x79\x4f\xbf\x7d\x36\xc8\x7f\x74\x3a\xc8\xdf\x3b\x1e\xe6\x87\x87\xa3\xd5\xf1\xbd\xed\xf5\x4c\xab\xc0\x24\xce\xa7\x8d\xf8\x0f\x20\xac\x8b\xfe\xd9\x54\x87\xe0\xd5\xd6\xc7\xd0\xbf\x00\x00\x9b\x80\x9b\xdf\xfb\xbd\xdf\x53\x7f\xf1\x17\x7f\x21\x7e\x6f\xfa\xd6\xe6\x68\x58\xfa\xfc\xfb\xbf\xff\xfb\xea\x4f\xff\xf4\x4f\xfd\x62\x59\xe7\x58\xda\x6a\x8e\x01\x0f\x1e\x46\x09\x34\x8a\x7d\xe7\xd3\xb5\xfe\x67\x8c\x51\x08\xa8\x7a\x45\x09\x56\x1e\x19\x67\x57\xf6\xe7\xbd\xeb\xbb\xf3\xe4\xa9\xed\x55\xfa\xf4\x56\xae\x6e\xf6\x0a\xbc\x91\x68\xdc\x53\x06\x06\x65\x38\x54\xbe\x36\x79\xa5\xed\xd2\x62\x65\x86\x10\xa7\xf0\x7a\x5d\xbe\x93\x7f\x5b\xda\x57\x95\x3f\x21\x44\xb7\xb9\xe1\xff\xa5\x32\x55\x81\x21\xb0\x8e\xf0\xbe\xc1\x58\x4f\x24\x81\x0d\x09\x57\xc5\x6a\xe3\x13\xda\x0f\x6f\x8c\x06\x0c\x68\x84\xc5\x59\x3f\xff\x2f\xff\xef\xf5\xc9\x2b\xdf\xbf\x36\x7d\x63\x95\x9a\x89\x01\x33\xc3\x6a\x8b\xf4\x8a\x00\x99\xdc\x95\xd9\x7c\x3e\x07\x52\xf7\x36\xe9\xe3\xcf\xa3\x5c\x79\xd8\xae\xfa\xa3\x2b\x68\x88\xf1\x3e\xef\x73\x97\x41\x3c\x97\xd5\xd1\x77\xe5\x4d\xf9\xb7\xc5\x71\x9e\xb4\x75\xd1\xed\xb5\x38\xda\xd4\xcf\x26\x95\xa3\xc9\x6f\x53\xbe\x6d\xf4\x5d\xe5\xe9\x52\x90\xe7\x05\x2b\xe7\x72\x31\xf0\x62\xe4\x53\x76\xdd\x09\xbb\x03\xbb\xde\xc5\x9d\xf9\xe2\x76\x1c\xed\x5e\x98\xa7\x97\x9f\xba\xb7\xf5\xec\xcd\x7b\x5b\x9f\xba\x34\xed\x5d\xcf\x72\x35\x90\xc0\x86\x55\xd3\x50\xdd\x07\x64\xfd\x49\x2f\x8a\x22\x4a\x81\x5a\xc7\x45\x69\x6a\x80\x81\xbf\xc7\x4e\xfb\x14\xe2\x90\xac\x24\xd2\x7b\xe0\xc7\x02\xb6\x8d\x5c\x03\x72\xd6\xa9\x8b\x0a\x26\x92\x4e\x47\x4f\xde\x72\x03\xb0\xd2\x0a\x66\xb9\x32\xc7\xab\x44\xdf\x9e\xf7\xf4\x7b\xd3\xac\xf8\xf1\xa4\x5f\xdc\x3e\xeb\xe7\x77\x4e\x86\xc5\xe1\xe1\x68\xe5\xac\x31\xc1\xae\xa4\x06\x20\x03\x10\xd6\xd1\xc0\x8f\x02\x98\x48\x92\x3b\xb7\xb3\x26\xc0\xd0\x75\xc7\x13\xa9\xdf\x35\x9e\x4d\xfc\x99\x93\x3a\x4f\xca\x83\xef\x02\x92\x2c\x29\x94\x57\x1d\xa0\x54\xb4\x69\x4f\xab\x74\x6f\x91\x0e\x0f\x26\xbd\xbd\xbd\x79\x7a\x30\x5a\x26\xd7\x46\xcb\xf4\xb1\xd1\x52\x3d\x3d\xc8\x93\x27\xfc\x89\xb6\x06\x32\x04\xc8\x00\x50\x89\xeb\xac\xec\x5f\xfe\x5e\x81\x87\xb0\x16\x55\x6f\x15\x68\x71\xe1\x9b\x16\x93\x87\xd0\xbb\xa5\xfd\x81\x54\x6f\xeb\xeb\x60\x24\xf9\x63\xfe\xd2\x80\x86\x5a\x71\x3c\x80\x66\xe9\x29\x14\x8c\x0f\x47\xab\xff\xfd\x5f\x1f\x1f\xff\x4f\x1f\x5e\x58\xde\x5e\x25\x66\x0c\x58\xee\x32\xb2\xc0\x25\x87\x0a\xb8\x68\x80\x5a\xbd\xdb\x14\xb8\x40\x03\x4d\x93\xd2\x3f\xef\xa0\xbc\x4d\xe9\x4b\xb4\x5d\xf8\x35\x3d\xc7\xe2\x3f\x8f\xdc\x12\xef\x26\xdd\xfb\xa0\xfa\x73\x53\x7d\xed\x5d\x9b\xc5\xe5\x61\x08\x23\xf9\x35\x65\x42\x57\x34\xd9\xd5\x02\xd4\xc6\xb7\x4b\x1a\x9a\x78\x3a\xc7\xbf\x53\x7f\x05\x00\x7a\x34\x1a\xa9\xc9\x64\xa2\x59\xe7\xee\x3a\x54\xb7\x8b\x21\xb5\x66\x6a\x77\x48\x5d\x86\xe5\x21\x75\x43\xf6\xdb\x05\x80\xa1\xd2\xb0\xbb\xb3\x4c\x2f\x3f\x7e\xbf\x7f\xf3\xa9\xa3\xad\xe7\xae\x9e\x65\x8f\x0f\x72\x35\x8a\x75\x4c\xf5\x02\x97\x35\x33\x1f\xcb\xb9\xe9\x27\x24\x5d\xad\xa3\x6a\x1a\x70\xd5\xe3\x6c\x94\xa2\x9b\xb3\x3d\x62\xb8\xa3\x21\xe4\xd4\x85\x1f\x07\x2a\x2d\xd1\x01\x40\x87\xd1\x70\xf9\x6f\x6e\x10\x56\x1a\x60\x56\x28\x33\x5e\x27\xe6\x68\x99\xea\xdb\xf3\x9e\xfe\xe0\xac\x9f\xff\x64\xd2\x2f\xee\x4c\xb2\xe2\xf0\x74\x2b\x3f\x3a\x1e\xe6\x93\x49\x09\x64\x1c\x50\xf1\x80\x86\x82\x19\x32\xc5\xe8\x00\x8b\xaf\x6f\x14\xb8\xc4\xb6\x5a\x03\xa9\x9f\x4d\x8b\xae\x1b\xc2\x77\xb1\x84\x48\xbc\x7d\x5d\x97\xac\x41\x52\x38\x6a\x25\x21\x8e\x2f\xbe\xa5\x6d\x46\x02\x2d\x81\x65\x85\x84\x49\x13\x8d\xe9\xee\x22\xc9\x2e\x4d\x7b\x7b\xbb\x8b\xf4\x60\x7b\x95\x5c\xd9\x59\x26\xd7\x47\xcb\xe4\xb1\xc1\x5a\x5d\xef\xe7\xea\x5a\x5a\xe0\x95\xc4\xe0\x48\x19\x18\x7a\xb0\x52\x4b\x73\x65\x61\xa1\x03\x81\x6e\xd8\x8c\x32\x82\x72\x6a\xd7\xd4\xf3\x85\xc7\x53\x59\x43\xc3\x32\x93\xd6\xa8\x75\x97\x25\x8e\xce\x69\x9c\x31\xe6\x41\xfc\x76\xf0\x00\x50\x1f\x04\x00\x18\xbd\x4c\xf5\x07\xb7\x2e\x2e\xfe\xe7\xd7\x1e\x3b\xfb\x87\xa3\xed\xf5\x9d\x1c\x0d\xdd\x22\xbd\x02\x00\x8d\xe4\xda\x8d\x97\x5f\x7e\x59\xff\xd6\x6f\xfd\x96\xfa\xfa\xd7\xbf\x0e\xf3\xf9\x9c\x4a\x20\x01\x5b\x49\xa7\x70\xda\x26\x00\x23\x85\x6d\x72\x6d\xa0\x4a\x7a\xe6\x61\x63\xba\xb0\x29\xce\xae\x60\x62\x13\xab\x4a\x53\xba\xda\x68\xda\x5c\x53\x39\x48\xba\x95\xc7\x53\x0b\xcf\xeb\x63\x57\xd0\x11\x8b\x78\x13\xb4\x16\x73\x9b\x58\x77\xa8\x3c\xd4\x35\xc5\xd9\x06\x60\xce\x6b\x45\xa2\xb2\x44\x2b\xe5\xce\xce\x8e\x3a\x3b\x3b\xd3\x00\x8d\xd6\x97\x14\x2a\x00\x13\xdc\x6f\x04\xe1\x94\xd1\x08\x00\x46\x68\x60\x38\x5a\x26\x97\x1f\x3d\xed\x3f\x7e\xf3\xde\xd6\x73\x8f\x9c\xf6\x6f\x6e\xaf\xd5\xae\x32\xd5\xc8\x34\xda\xb9\x81\x30\xc2\x0a\x4c\xd8\x8c\x26\x02\x70\xba\x82\x80\x98\x0b\xaf\x13\xa8\x0e\xc5\x03\xe4\x9d\x5f\xdd\xd2\x12\x8b\x53\x92\x69\x93\xb3\x5f\x5a\xad\x49\xf6\x9f\x98\xd2\x72\x9d\xb5\x01\x58\x19\x84\x85\x46\x33\xc9\x95\x39\x59\x25\xe6\x70\xd9\xd3\x77\xa6\x59\x71\xfb\xac\x5f\x7c\x34\xed\x17\x87\x8b\x54\x1f\xcf\x7a\xc5\xf8\x6c\x50\x9c\x9c\x6c\xe5\xb3\x45\x4f\x8b\xe7\xc4\x58\xd6\x01\x80\x11\xd6\xc6\x04\x75\x35\xb2\x4b\x29\x5a\x9f\xd9\x14\x8c\xb8\xc3\xc9\xd1\x75\xb0\xa0\xf8\xf6\xd9\x40\xaf\x18\xa0\x91\x76\x01\x29\xe1\x59\x02\x29\x40\x01\x0b\x1a\x50\x59\x8e\xd9\xde\x3c\x1d\x5c\x98\xf7\xf6\x86\x6b\xb5\x3f\x58\xab\xfd\xd1\x2a\xbd\xb2\xbb\x48\x1e\x1d\xae\x93\x6b\xfd\x1c\xaf\xf5\x0a\x75\x25\xd1\xb0\xab\x0c\x0e\xd1\xc0\x10\x01\xed\x59\x49\xb2\x75\xa2\x96\x17\xf6\x6f\x8c\xa6\x56\xaf\x98\x75\x90\x5a\x2e\xb0\xcc\x08\xa0\x67\xad\x48\xd6\x9d\xaa\x6e\x47\xd0\x82\x8f\xcb\x1e\x36\x67\xe9\x24\xeb\x0f\x97\x93\x4f\x63\xb9\x21\x8a\xa1\x29\xa5\x56\x16\x9a\x30\xd7\xc2\x8c\x0d\xe7\xad\x2f\x06\x0c\x40\x3e\xed\x17\xdf\x7d\xeb\xca\xec\x7f\xf9\xde\x23\x93\xff\x72\x36\x28\x0e\x0d\x82\xdb\x65\xe4\xa6\x8d\x3c\x78\xa1\x3b\xe9\x76\x77\x77\xd5\x78\x3c\xee\xaa\x30\x37\xb1\x50\xc4\x9e\x37\x0d\xb7\x89\x2c\x9b\xca\x17\xfb\xb6\x89\xa1\xe1\x61\x58\x6d\x9a\x80\xe1\xa6\xe0\x49\x0a\x2b\xc5\x53\x93\x8b\x2f\xce\x6d\x1c\xa9\xb1\x77\xc7\x48\x37\xd0\x52\xff\xf3\x66\x30\x7f\xe7\xe0\x40\x42\x64\x5d\x50\x6c\xac\x00\xbb\xe4\x41\x4c\xe6\x18\x5f\x1f\xde\x81\x16\x80\xd2\x0c\x6a\xc1\x8b\xb6\x9d\xad\x06\x00\xb0\x8d\x56\x9a\x06\x90\xe4\xd4\x06\x41\x4f\xfa\x85\x7e\x7f\x6f\x91\xaf\x12\xb3\x5a\xa6\x7a\x71\xe3\xa4\xff\xf4\xee\x22\x3d\x48\xdc\x71\xe2\x91\x1e\x55\x04\x1b\x58\x75\x78\x74\x48\x69\x28\x1f\x36\x12\xf3\x7f\xc5\x51\x5b\x5d\x61\x79\x32\x4e\x8f\x00\xc8\x7b\xe9\xc0\xb2\x53\xef\xf1\xe9\x74\x7f\x74\xab\x73\x47\x27\x82\x16\xd6\x41\xd3\x5b\x73\xe9\x35\xa5\xf5\xbd\x1b\x00\x06\x50\x29\x3b\xdd\x97\x18\xb5\x97\x6a\xb8\xde\x2f\xcc\xcd\xed\x55\x32\xdb\x9b\xa7\xe3\x5c\x99\x93\x5c\x99\xa3\x65\xaa\x8f\x16\x3d\x7d\x34\xe9\x17\x1f\x8f\xfb\xf9\xd1\x34\xd3\x47\xab\x54\x9f\xcc\x7a\x7a\x7c\xd6\xcf\x27\xb3\xac\x58\xad\x12\x93\x9b\xca\x32\xa3\x01\xc2\xb3\x61\xb0\xe1\xe0\x3b\x01\x80\xf0\x45\xc0\x8e\x8e\x02\x86\xa6\x51\x59\xa7\x29\x20\x36\x6d\xe3\xe9\x5d\x78\x0a\x44\x88\xe3\x16\x49\xfa\xac\x62\xcf\x4a\x83\xca\x72\x95\x6d\xaf\x92\xc1\x68\x95\x0c\x07\x6b\xb5\xdb\xcf\xd5\xee\x70\xad\xf6\x77\x17\xe9\x95\xdd\x45\xfa\xc8\x60\xad\xae\xf4\x73\x3c\x48\x35\x1e\x94\x6b\x55\x70\xa4\x0c\x0c\xca\x8b\x0d\x9d\x75\xc8\xd5\xb4\xea\xc0\xc6\xd8\x76\x5f\x0a\x5c\x01\xc8\xb1\xf8\x7c\x3a\xc5\x83\x8f\xfa\x7a\x2b\xca\xda\x81\x96\x32\xa0\x3d\xed\x1a\xc1\xef\xe4\xe1\x5b\xfb\x91\x37\x44\x22\xb7\x5b\xa0\x5f\x35\x17\x4a\xc7\x6b\xab\x21\x03\x85\x6a\xdd\x8a\x0b\x57\xd5\x7d\x5a\xe1\x99\x3c\xd5\x3f\x36\x5e\x7e\xdf\x12\x02\x02\xa4\x5b\xab\xe4\xb9\x4f\x1c\x0f\x7e\x79\xdc\xcf\x8f\xdf\x3e\x98\x2f\x66\x7d\xed\x36\x28\xe4\x50\x0e\xd8\x72\x52\x6f\x7c\x1d\x1e\x0c\x06\x30\x1e\x8f\x01\x36\x1f\x10\xc7\x74\x49\x93\xbe\x72\x7f\x37\x19\xb4\x36\x0d\x90\xbb\xba\x87\x01\x96\x9a\x40\x41\xd7\xf4\xb4\x81\xab\x98\x3e\x8d\xc9\xb3\x49\x1e\x4a\xfd\x41\x50\x66\x1c\xb8\x6c\x8a\xe2\x24\xab\x85\x64\x0e\x73\xcf\x52\x86\xc6\x80\x43\xdb\x77\x2e\x33\x7f\xe6\xae\xcd\xbf\x0d\xdd\x36\xf1\xa1\xb2\xb6\xa5\x31\x88\xc7\x75\xfa\x82\x79\x3e\x77\x7c\x4c\xfd\x56\x62\xaa\xbc\x72\x00\xd0\x1a\x4c\x3e\xcb\xb4\xfe\xf0\xc2\x72\xb9\x4c\x8b\xc5\x22\xd5\xb3\xc7\xef\x0f\x9e\xbd\x38\x4f\xaf\x65\x85\xca\x9a\xd4\x78\x00\x5e\x82\x8e\x98\x74\x42\xdc\xec\xcc\xd9\x39\x06\xd2\xc8\x50\x50\x6a\x75\x4b\x86\x87\x25\x9e\x00\x39\xb5\x43\x4e\x54\x60\xd2\x33\x52\x19\xeb\xa2\xf2\x00\x5c\xf0\xb8\x8f\xd4\x01\x4b\xe9\xf0\xa6\xf3\x50\x2c\x1e\x52\x81\xc1\x61\x6a\x60\x68\x0c\x1e\xf4\x8a\x72\x6d\xcc\x70\x95\x2c\x0c\x9a\x59\xa1\x60\x52\x94\x6b\x64\x0e\x97\xa9\x39\x9c\x66\xc5\xe1\x78\x90\xdf\x9d\xf4\x8b\xf1\xbc\x57\x8c\xd7\x89\x99\xac\x95\x99\xac\x52\x3d\x9b\xf7\xf4\x62\x91\xea\xd5\x32\xd5\x39\x99\x6a\x02\xa8\x5b\x67\x00\xab\x7b\x61\x00\x98\x75\x26\xb6\x98\xd7\x85\x91\x1c\x05\x2b\x6d\x0b\x69\x49\x1d\xa7\xf4\x7c\xab\xb8\xf7\x03\xa8\x6e\x59\xb6\xdf\x3c\x40\x41\x40\xa5\x34\x40\xaf\xc0\x74\x90\xa7\xd9\xd6\x5a\x0d\x07\x6b\x35\xec\x69\x1c\xf5\x72\x35\x1a\xae\xd5\xde\xce\x22\xdd\xdb\x59\x26\x97\x87\x6b\x75\xd0\xcf\xd5\x7e\xaf\x50\x57\x7a\x05\xee\x2b\x03\xbb\xca\xe0\x08\x0d\x0c\xb0\xb4\x62\x2a\x64\x35\xa5\x04\x16\xe5\xbf\x00\x58\x29\x7d\x11\xb4\x84\xc0\xc3\xb8\x7f\x05\x60\x5d\xd5\x3e\xbb\xc6\xac\x4c\x58\x00\xb4\x5d\xfd\x46\x10\xea\x72\x7d\x3a\xcd\x02\x19\x64\x6d\x16\x02\x40\x51\x2b\x13\xe7\xcb\xc3\x40\x28\xb3\xd4\x4c\xe8\xa0\xc5\x54\x82\x75\x9e\x92\x72\x79\x96\x00\x8e\x2e\x2c\xd2\xe7\x9f\x3e\x1a\xde\x99\x65\x7a\xfc\x93\xbd\xc5\x62\xd9\x83\xdc\x18\x93\x92\x7e\x50\xd9\xfe\x4e\x19\x63\xb4\xdb\x55\x06\x21\x58\x8d\xf5\xc5\x00\x72\xff\xdb\xd5\x9a\x1e\x03\x37\x9c\x37\x8f\x87\x87\xe5\xa0\x9b\xb7\x4b\x09\xd4\x68\x46\x1b\x03\x3e\x92\x2c\x31\xc7\xe3\xe6\x00\x41\xd2\xd3\x12\x3d\x97\xb3\x49\xae\x98\x61\x83\xa7\x8d\xd3\xc7\xf2\x38\xe0\x1f\xdb\x0e\x1d\x03\x0f\x5d\x2a\x40\x1b\x5a\x6c\x43\xb3\x6d\x40\xa6\x29\xbe\x2e\x99\x1b\xab\x2c\x6d\x88\xbd\x0b\x28\xa2\xb2\xc6\x2a\x7f\xc0\x83\x6e\xfb\x74\xd6\x17\xf7\x6e\x2d\x2f\xa9\xb3\xc0\xf0\x75\x09\x50\x8d\xb2\xbd\x69\x75\x99\xea\xfc\xe3\x9d\x55\xbe\x48\xf5\x62\xd6\x2b\x66\x4f\x1e\x6f\x3d\x77\x75\x92\xdd\xc8\x72\x1c\x86\x23\x27\xcb\x07\x98\x3a\xa7\xc0\xc3\x6b\xdf\x86\x7b\x89\x9c\x3f\x19\x92\x52\x33\x78\x94\x1e\xd8\xe8\xbe\x8a\x1e\xc0\x2b\x0e\x08\x3b\x4c\x49\x36\xe2\xe8\x08\xb7\x4e\x52\xc9\x16\x8e\x4e\x09\x0e\x0a\x06\xaf\x52\x2e\x09\xfc\x85\x4c\x71\x69\xa3\x23\xd1\x1a\x90\xf2\x7e\x98\x22\x40\xaa\x0c\x0c\xc1\xe0\x7e\xaa\x01\x00\x4c\xbe\x85\x6a\xa1\x01\x66\xfb\x98\xce\xb4\xea\x9f\xe4\xca\x8c\xf3\x44\x1f\xaf\x95\x39\x59\xa6\xfa\x78\x96\xe9\x7b\x67\xfd\xfc\xf8\xac\x5f\x8c\xa7\xfd\x62\xbc\x4a\xcc\xac\x50\x66\x51\xa0\x59\xad\x13\xb3\x58\x27\x26\xcf\x95\x59\xe5\xca\xe8\x3c\xd1\xba\x20\x60\x97\x4c\x1f\x6a\x0a\x28\x40\x68\x3f\x31\x50\x12\xb3\xd4\x70\x30\x42\x2d\x2e\x84\x46\x91\x78\x95\xfb\x06\x16\xb0\x28\x0d\x2a\x2d\x30\x4d\xb5\x52\x69\x81\x59\x56\xa8\xb4\x57\xe0\x20\xd5\x38\x48\x74\xf9\x77\xb8\x56\xc3\xed\x65\xba\x7b\x61\x91\xec\x6f\xaf\x92\xcb\x83\xb5\x3a\xe8\x15\x6a\xbf\xa7\x71\x3f\xd1\xb8\x97\x68\x18\x21\xc0\x10\x0d\x0e\xd1\x60\x86\x06\xb2\x12\x20\x90\x7a\x4a\xde\x28\xb0\x00\x13\xd6\x31\x4a\xe3\x3c\x10\x01\x02\x53\x9f\xa3\x71\x16\x4a\x63\x01\xaf\xaf\x54\x95\x35\x26\x98\x86\xb5\x56\x11\x17\xd6\x9f\x7f\xcb\x80\x78\x6d\x00\x80\x4e\xce\x72\x1a\x28\x06\xda\x89\xc8\xe5\xb7\x18\x7e\x77\xdf\xed\x3f\x55\x0b\xa4\x2d\xb2\x8a\x87\xd6\x7d\x32\x0d\x14\xf6\x30\x16\x8d\x39\xe0\xef\x00\x18\x80\x81\xb4\x50\x57\x2e\x4f\x7b\x5f\x78\xea\x68\xeb\x70\xd1\xd3\x27\x77\x76\x56\xab\x3c\x29\xaf\x01\x70\xf5\x00\x08\x78\x81\xb8\xc2\xef\x32\x70\x6d\xb2\x3c\x48\xfa\x28\x06\x42\x62\xfd\x78\x1b\x4d\xcc\x5a\xc1\x01\x4e\x0c\x48\xd0\x6f\x4d\xbc\x25\xfd\xdc\x14\x6f\xdb\x20\xdc\xd1\xc4\x74\x74\x0c\xd0\xb4\x81\x2d\xc9\xb5\x01\xc0\x20\x4f\x90\x7d\x68\x02\x12\x92\xd5\xa1\xc9\x0c\xd5\x66\xc1\xd8\xe4\x5b\x13\x42\x6c\xe3\xd1\x66\x2a\xeb\x6a\x5d\xfa\x69\xb9\x20\x7e\xe1\x56\x69\xfa\xcb\x80\xec\x38\xb2\xbb\x8d\x86\x10\x6e\x9b\x1e\x01\xc0\x10\x35\x8c\xb6\xd7\xc9\xa5\x47\x4f\xb2\x1b\xcf\xde\xdd\xfe\xb9\x6b\x67\xd9\x13\x83\xb5\x1a\x29\xc3\x47\x99\x20\x2a\x5f\x37\x3a\x92\x16\x54\x56\x61\xc8\x55\x03\xc0\x78\x74\x00\x08\x01\x34\xf0\x71\xb9\x4e\xbc\x0a\x44\xc3\x39\xa3\x8b\x1c\x89\xed\x24\x09\x70\xea\xec\x9a\x50\x19\x4b\x5b\x35\x62\x86\x60\xc4\xdc\x1a\x5f\xcd\x94\x53\xe7\x5d\xd3\x92\x65\x1c\xda\x20\x68\x40\xb3\x32\x00\x2b\x83\x66\xa1\x11\x66\x1a\x61\xe2\xa6\x9a\xd6\x89\x3e\x59\x25\xe6\x78\x95\xea\xd3\x59\x4f\x8f\xe7\x59\x31\x99\xf5\xf4\x6c\xde\xd3\xb3\x79\xaf\x58\xac\xd2\xf2\xb6\x6b\x8d\x66\x65\xaf\x34\xc8\x35\x82\xd6\xca\xfe\x05\xa3\x0d\x82\xd6\x68\x40\x23\x68\x83\x00\x06\x8d\xb6\x62\x68\x2a\x6e\x9b\x23\xc9\x51\x68\x50\x29\x03\x50\xfe\x50\x21\x94\xeb\x4e\xac\xbf\x4a\x0c\x2a\xa5\x31\x53\x06\x52\x55\x02\x8c\xb4\x5f\x60\x36\x58\xab\xc1\x60\x9d\x0c\x86\x6b\x35\x1a\x2d\x93\xdd\xe1\x3a\xd9\x1b\xac\xd5\xc5\x5e\x81\xbb\xa9\x56\x7b\xa9\xc6\xdd\x44\xc3\x7e\xa2\x71\x57\x81\xb5\xa2\x98\x72\x3d\x18\x96\x60\x30\x98\x88\xa9\xb2\x55\x3e\xe2\xbe\x5a\x03\x16\xd2\x7b\x1a\xdb\x06\x6a\xf7\x04\xb9\xba\xcc\x41\x86\xa3\x61\x20\xa8\xdd\xc2\x47\xde\xa4\x7a\x2c\x2c\xa4\xaa\xad\x95\x71\x96\x20\x0c\xd3\xea\x28\x82\x83\x27\x21\xac\x72\xb5\xf6\x68\xdf\xa9\xf8\xbe\x0d\xd6\xda\x38\x87\x2e\xe4\x5f\xc6\xc8\x18\x03\x46\xc1\x62\x92\x15\xff\xe5\xad\x2b\xb3\xff\xf5\x8d\x6b\xd3\x6f\xdd\x1f\xe6\x47\x00\xe5\x7a\x17\x28\x6f\x8f\x0e\x4e\xd4\x35\x26\xb8\x0e\x20\x36\x42\x6f\x53\x7c\x5d\x2d\x35\x40\xde\x63\x4e\x02\x20\x4d\x72\x74\xa5\xe1\xb4\x9b\xa6\xa1\x4d\xee\x2e\xbc\x9b\xe4\x06\x46\xd3\x55\x87\xb6\xa5\xa1\x73\x7a\x9d\xc5\xa5\x29\xf2\x18\x72\x73\x48\xac\x2d\x1c\xa5\xdf\xc4\x04\xd5\x05\x3d\x4a\x19\xc9\xe9\x38\xbf\xb6\x4a\xd4\xe4\xef\xbe\x51\xde\x4d\x68\x5a\x42\xc9\x12\x2a\x57\x00\x00\xbf\xfa\xab\xbf\x0a\x2f\xbf\xfc\xb2\x3b\x84\x4b\x1a\xed\xae\x4c\xb8\x56\x81\x8e\xa2\xc3\xe3\xe5\x15\xe8\x49\x56\xe8\x77\x0e\x16\xd3\x45\xcf\x2c\x16\x87\xc3\xc5\xa3\xa7\xfd\x9b\xa3\x55\xb2\x97\x68\x93\xd2\xa9\x19\xbf\x58\x8f\xf4\x80\x7e\xf4\x08\x15\x60\xa1\x9d\x19\xda\xde\x38\xec\x94\x89\x43\x08\x00\x4f\x13\x68\xa1\x71\xb8\xe1\x6c\x30\xc2\x2d\x23\xf7\xfe\x41\x24\xc1\xab\x6c\xe1\x08\xd8\x48\xe2\x7a\x99\x84\x8e\x9e\x03\x2c\x20\x0a\x8a\x5a\x17\x02\x51\x43\x2d\x46\x2d\x46\x4d\xe2\x07\x7e\x58\xa5\x1f\xb1\x3c\x5f\x04\x0c\xa6\x00\x30\x74\x0b\x6b\x0c\x80\xee\x03\x68\x03\x26\x37\x90\xe4\x06\x61\x01\xe5\x22\xe0\x95\x01\x58\x68\x65\xc6\x05\xc2\xb8\x50\x66\x6c\x2d\x36\x93\xb5\x82\xf1\x5a\xe9\xf9\x3a\x29\xa7\x9b\x96\xa9\x5e\xac\x12\xb3\xca\x13\xb3\x5a\x25\x26\x5f\x25\x7a\xb5\x4e\x74\xbe\x4e\x4c\x5e\xa0\xd1\x76\x0a\x0a\x00\x00\x34\x80\x36\x68\xa4\xb6\x4e\xc4\x2f\x01\x89\x13\x30\xd5\x98\x66\x05\xa6\xd6\x6a\x92\xa6\x1a\xb3\x54\x63\x9a\x16\x98\xf6\x0a\x35\x18\xe4\x38\x18\xac\x93\xdd\x2c\x57\x17\x7a\x1a\x77\x53\x8d\xc3\x44\xc3\x28\x31\x38\x4a\x34\xee\x2a\x8d\xbb\xe5\xce\x1e\x1c\xba\x29\x1e\x34\x90\x22\xd8\xa3\x03\x0c\x28\x9f\x1b\x7c\xaa\x0b\x00\xc0\xb8\x1b\xcf\xad\x74\xae\x8c\xca\x82\x12\xa6\xbb\xec\x3b\x29\x74\x67\x29\xa8\xd5\x59\x57\x4e\xa6\xe2\x5f\xd1\x84\x77\x02\xf1\x02\xa6\xbc\x28\xc8\x01\xc4\xc0\x2a\xe2\x79\x39\xe9\xb9\xa5\x0b\xa1\x5a\x8b\x56\x49\x6f\xff\x8f\x36\xcc\x80\x4f\x05\x4a\x28\x9f\x8a\x9f\xa1\x02\xd3\xb6\x15\xe2\x27\x1f\xa6\x6a\x17\xac\x6d\x10\xfa\x72\xf1\xbd\xc9\x06\xb9\x7a\xfc\xca\xa4\xf7\xd4\xed\x79\xfa\xc6\xfd\x61\x7e\x02\xe0\x0f\xff\x73\x96\x17\x5f\xdf\x22\x87\x25\x76\x05\x2a\x5d\x67\x04\x80\x85\x95\xe8\x62\x3a\x49\xe2\xcb\xc3\xd2\x70\x9b\x0c\xfc\x25\xeb\x4c\x93\x35\x25\xe6\x2f\xc5\x21\xe9\xa3\x36\x70\x27\xfd\x6d\xd3\xa3\x5d\xf3\x8a\xf2\xa4\x32\xf9\x77\x6c\x10\xb2\x89\xf9\x26\x48\x31\xf6\xde\x85\x4f\x8c\x96\xbe\xb7\xc9\xdb\x45\xbe\x36\xff\xf3\xba\x4d\x11\xa9\x77\x31\xcb\x8b\x71\x37\xd2\xd6\x0f\xaa\xf3\xbb\x8e\x8c\x31\x43\x6b\x89\x19\x41\xb9\x9d\x73\x74\x69\xda\xbb\xfa\xc9\xc3\xe1\xa7\x9e\x38\x1e\x3c\x77\x61\x9e\x5e\xe9\x05\x97\x34\x82\xd7\x92\xc1\x08\xcf\x2d\xca\xed\xb0\x7b\xa4\xdc\x0d\xd1\x80\x18\xa0\xd6\x5f\xc6\xe9\x00\xc4\xc5\x90\x12\x93\x1a\x99\x30\x92\x94\x9f\x3a\xc8\x10\xf3\x0c\xb6\x82\x76\x48\x53\x93\x90\x8d\xc1\xe8\x08\x36\xbe\x1b\x2a\x94\x81\xa4\xd5\x80\x06\x04\x6d\x00\x34\x94\x5b\xb4\x35\x00\xac\x4c\x79\x68\x5e\x79\xc9\x5d\xe9\x6f\x2d\x38\x66\x61\xd0\xcc\x34\xc2\xc2\x20\xac\x0c\x5a\x50\x84\xf6\xf0\xbc\x92\x6b\x6e\x10\x72\x4d\x06\x2e\x56\x45\x59\x10\x51\x02\x0a\x04\x00\x2c\xad\x28\x03\x34\x90\xd9\xbf\x03\xb7\x10\x56\x39\xeb\x88\x9b\xc6\x01\x18\xa0\x71\x67\x18\x95\x96\x19\x9b\xa0\x54\x48\x9a\x7f\x0d\x55\x66\x53\x4e\x86\x6b\x47\xa4\x12\x88\x5a\x3e\x1a\xf8\x32\x13\x60\xab\x6b\xac\xdb\x2c\x66\xc9\x40\x87\x91\xfa\x5f\x03\xd7\x34\x5c\xcc\x1a\x44\xe9\x82\x76\x13\x4e\x0b\x75\xc9\x97\xc6\x76\x60\xdc\xc4\x13\x25\x32\x3a\x57\x66\x3c\x1e\xe4\xaf\xbd\xb7\xbf\xfc\x3f\xde\xbc\x32\xfd\xf6\xdd\x9d\xf5\x21\x44\x2e\x61\x74\xdb\xff\x23\x16\x97\x36\xc5\x19\x73\x31\x80\x03\x02\xef\x58\xb8\x26\x7e\x12\x9f\x87\xa9\x7b\x24\x5d\xd8\xa4\x1f\x7f\x5a\xfa\x6d\x53\xff\x4d\x0c\x05\xa2\x4b\x1b\x08\x39\x02\x72\xae\x0d\xd5\x02\x74\x13\x42\xb2\x90\x74\xb1\xc0\x6c\x02\x58\x62\x05\xda\xe4\xdf\x25\xf3\xba\x66\x74\x0c\x91\xb6\x59\x74\xa2\x5b\x5b\xad\xdf\x8a\xc8\x5b\xb3\xba\x20\xbd\x6d\x15\x8c\x06\x44\x7d\xb4\xbd\xca\xe7\x8f\x16\x8b\x49\xbf\x18\x3f\x73\x77\xeb\xe7\x0e\xa6\xd9\x8d\x2c\xc7\x01\x80\xb1\x1d\x69\xdd\x72\x50\xf5\x5a\xc2\x02\x3c\xd6\x7f\x05\x6b\x55\x22\x67\x7a\x50\xf3\x72\x6d\x7b\x36\x1f\x35\x06\xb4\x42\xa7\x68\xbf\xd5\x3a\x54\x2a\x13\xd4\x5d\x3d\x3e\x86\x74\x2c\x51\x78\x44\x7a\x18\x3f\x37\xdf\x07\xb0\xc8\xa0\x7c\x8e\x05\x99\x32\xa8\x14\x02\x51\xba\x82\x3e\x08\xae\x4e\x20\x91\x8a\x23\x7f\x2e\x4b\x19\x87\x32\x06\x54\x69\x92\xc0\xcc\xcb\x60\xa8\x35\x87\x28\xa8\x12\xe8\x00\x94\x40\x87\x72\x16\xea\xb8\xd1\xe4\xbb\xd4\x57\xd4\xfd\x0c\x28\x1b\x44\x95\xd3\x79\x6c\x21\x2b\x27\x67\xd3\x87\x2e\xef\x02\x1d\x18\xe4\x0b\x53\xb8\xd4\x42\x68\x48\x59\x00\x40\x35\x8d\x51\x01\xc2\xd0\x1a\x58\x57\xdc\xc1\x42\x5a\x17\x97\x53\xc9\x86\xe4\x97\x25\x46\x82\x16\x68\x9d\xb0\x89\x2b\x43\x22\xf8\xf0\x41\x59\x10\x79\x5c\xa2\x83\x75\x35\xfc\x10\xa3\x40\x76\x08\xd3\xec\xeb\x9c\xcb\x1f\x76\xf2\x6e\x0d\x88\x4b\x79\xe8\xf2\x09\x83\x7c\x76\x19\xe7\x69\x6c\x79\x18\x52\xa9\x4a\x2b\x92\xb1\x79\x60\xc0\x20\xe8\x55\x62\x8e\xee\x8e\x56\xdf\xfa\xe1\xe5\xd9\xff\x75\xeb\xe2\xe2\xcd\xb3\x41\x31\x23\x8b\xb8\x7d\xdd\x21\x3b\x2d\xbd\x05\xb7\x83\x6b\x1b\x08\x37\x59\xbe\xf9\xe8\x5e\xe2\xd9\xa5\x0f\x07\xa8\xf7\xff\xf4\xb9\xf3\xb4\x48\x0b\x4d\x0c\x00\x74\x71\x51\xfd\x73\x0e\x1a\x27\x4b\x17\x1d\xc7\x5d\x53\x5a\x44\x19\xe8\x25\x8b\xdc\x99\xc8\x8f\x7e\xa7\xcf\x8e\xb9\x61\x7e\x28\x08\xee\x5a\x0d\xe5\xd9\xb5\xb2\x21\x84\x71\xc7\x64\x57\x82\x8c\x34\x2e\xc3\xfc\x55\x03\x0d\x97\x85\xf3\x8b\xc9\xec\x64\x75\xbc\x10\xc2\xfc\xe0\x69\xf1\xe9\xcc\xb2\x0c\xfe\xe6\x6f\xfe\x46\xbb\xcb\x19\xed\x77\x9e\xbf\xc6\x82\x95\x02\x00\x8c\xfd\xab\x01\xc0\xfd\x75\xdf\x0a\x40\x34\xeb\xd4\xe4\xf7\xb6\xd7\xa7\x67\x83\xe2\x7e\x62\xa0\x18\xe4\xc9\xa0\xa7\xd5\x40\x11\x3b\x78\x6d\x44\x68\xfb\x47\x0f\x26\x5c\xe4\x4c\x39\xbb\xe7\x92\xce\x76\x71\x82\x79\xdd\xc5\x51\x9b\xf6\x91\xe6\xed\x91\x7c\x72\xf2\x79\xd3\x3e\x57\xe0\x0c\xc2\x04\x1f\x05\xcd\xe8\x81\x16\x99\x96\xa2\xf1\x61\x8d\x94\xe8\xa5\x2a\x5d\x6e\xa1\xa2\xeb\xf0\x9d\x22\x0a\x82\xd8\xb4\x54\x0b\x96\x1d\x1d\x06\x34\xd4\x49\xf9\x56\x7b\x24\x35\xaa\x7a\x0c\x35\x24\x4a\xe1\xac\x3c\x5e\x09\x57\xb4\xce\x5b\xa1\xb5\x7a\xd8\x5f\x02\x00\x09\x06\xbf\x72\x51\xb1\xfd\x05\xdf\xc0\x5d\x58\x08\x76\x3d\x0b\x96\xd6\x42\x5f\x2d\x9c\xe8\x88\x7e\x2d\x13\xb7\x08\xf8\xfc\x8c\x94\x07\x2d\x93\x5a\xda\x7d\x18\xb4\xbc\xcb\x48\xd0\x17\x16\xad\x9b\xae\x1e\xb0\xfc\x62\xa0\xa5\x9e\x97\x0e\x50\x55\xbc\x1d\xfb\x52\x3e\x52\x1f\x6d\x82\x82\x35\x23\x84\xde\xbd\xd3\x38\x5c\x9d\xf0\xc0\x81\xd0\x56\xdb\x95\x85\x93\x6a\x4d\x55\x27\x5d\x39\x57\x7c\xd1\xc7\x55\xd1\x62\xd5\xa6\x4c\x48\x6f\x20\xcc\xa7\x6a\x61\xae\x23\xb2\xe9\xf6\xf5\xd8\x2e\x77\xb6\x05\x56\x2f\x03\x00\xad\x60\x75\x3a\xc8\xdf\xfd\xe1\x95\xd9\xdf\xbf\x76\xe3\xec\x9b\xef\x5f\x5c\xfc\x64\xde\xd3\x13\xb0\x67\xb8\x00\xc0\xda\xf6\x59\xf4\x1c\xa3\x32\x1b\x11\xe1\xe8\xe8\x08\x4f\x4f\x4f\x69\x5f\xea\x8a\x8f\xea\x0f\x57\xc5\x68\x5f\xee\xe8\xa9\x62\xe7\x7d\x6f\x95\x49\x61\x3f\x4d\xf5\x0f\xed\xee\xa8\xee\xe0\xe1\xb8\x0e\xa2\x32\x50\x39\xa4\x67\x60\x61\x8c\x10\x96\xa6\x9b\xea\x04\x60\xb4\x5c\x0f\xf3\x34\xf0\x1f\xa7\x91\xf4\x21\x97\x89\xa6\x57\xb3\x70\xc8\xbe\x71\x5d\xce\x65\xa4\xe5\xca\xd3\xeb\xe5\x68\xba\x64\xf1\x61\x4c\xc9\x3c\x0c\xcb\x45\x57\x1a\x1e\x6f\x17\x4b\x48\x13\xef\x58\xf8\x36\x34\x2a\xd1\x71\xa4\x1e\x8b\xc3\xd3\x7d\xfb\xdb\xdf\x06\x00\x00\x66\x79\xe1\xf1\xf9\x3b\x3d\x10\x71\x01\x82\x15\x06\xc2\x0e\x20\xcf\x95\xc9\x3f\xb8\xb0\x58\x4f\xb3\x62\x72\xb2\x95\x9f\xdc\xbc\xb7\xf5\xec\xfe\xac\x77\xbd\x57\xa8\x01\xed\x05\x90\x3c\xd0\xd6\x4d\xfd\x91\xfb\x8b\x4e\x9e\xe4\xa0\x7c\x2a\x4a\x5b\x8b\x51\xe0\xc7\xe4\xa8\x86\x94\x58\xe3\x21\xc5\x5a\x03\x02\x82\xdc\x2e\x6e\x1a\x48\xb6\xae\x54\x19\xe3\xc1\x08\x86\xf9\x56\x1b\x61\xd3\x67\x41\x10\x51\x3e\xe2\x49\x06\xb7\x61\xb3\x06\x96\x2f\x24\xa8\x1f\xf5\xc7\x12\x0f\x0e\x24\xc8\xbb\xbb\x62\x32\xf1\xb4\xd1\x30\xb5\xc4\x88\xe5\x06\x80\x48\xf6\xad\xf0\x74\x04\x40\x26\x3c\x00\xce\xfb\xd3\x3a\xe8\xa7\x34\x1d\x6f\xf0\x16\x06\x63\x15\x76\x70\x27\x96\x97\xa9\x12\x94\xe8\xf5\xfa\x73\x2d\x51\x10\xc8\x4d\x6a\x04\x9b\x6a\x95\x41\x0b\x9f\x2b\xa2\x6f\xdc\x12\x49\xd7\x50\xd5\xb4\x35\xdb\x66\x2e\x81\x2d\xee\xaa\x6f\x7c\xfa\xb7\xda\xfd\xe3\xe8\xfc\x62\xf7\xf2\x2b\x4d\xb0\x6d\x7e\xe8\xcb\xd7\xd7\x23\xc0\x00\x48\xb9\x3c\xd1\x60\x60\x95\xea\xc9\xdd\xd1\xfa\x87\x6f\x5c\x9d\xfe\xf3\xfb\x17\x97\x3f\x9a\xf7\x8a\x13\x8d\xb0\x22\x8b\x70\x6b\x23\x6f\x72\xbe\x95\x02\x00\x7d\xeb\xd6\xad\x26\x6b\x04\xb5\xb4\x4b\x16\x15\x4e\x0b\xc2\xf7\x18\x3f\x4e\x73\x5e\x2b\x4a\x9b\xc5\x27\x26\x93\xf4\xce\x5d\xcc\x12\x73\x1e\xf9\x9a\x5c\xcc\x52\x25\xc9\x11\xa3\xa3\xf1\xb5\x59\x75\xce\x65\x71\x71\x01\x91\xbc\x73\xc7\xbf\xc5\xe8\xb9\x55\x83\xff\xa5\x34\x9c\x77\x8c\x86\x02\x2c\x8a\x80\x25\xc4\xcb\xbf\x71\x04\xc8\xc3\xb4\x39\x09\x8d\xb6\x85\x6f\xca\x97\x9a\x7b\xed\xb5\xd7\x8c\xb5\xba\xb8\xf8\x78\x78\x7f\x35\xbc\x7d\xa7\x15\xc3\x9d\xc3\xe1\xac\x31\x00\xe5\x8e\x91\x62\xd1\xd3\xab\xd3\xad\x62\x3c\xe9\x17\x13\x34\xa0\xfb\xb9\xda\x4a\x35\x66\x58\xee\xe7\xb4\x23\x31\x86\x50\xdc\xa3\x00\x5a\x62\xdb\x31\xab\xf1\x58\x3d\x03\x98\x91\x85\xeb\xe3\x9a\x0b\xe0\xb8\xed\x11\xf9\x14\x92\xa7\x09\x3a\x59\x72\x55\x81\xeb\xdc\xc3\x7e\x58\x8e\x9b\x03\x28\x1f\xa6\x3a\x7c\xae\x96\x0f\x36\x5d\x08\x95\x39\x9d\xcb\x28\xa5\x55\x8c\x87\xc9\x87\x8c\x90\x0f\x9b\x98\xe8\xa5\x9c\xd2\x47\x26\x0b\xb7\x7e\x71\xd0\x12\x28\x42\xa2\x95\x03\x40\x11\x44\x1e\x82\x46\x9a\xc6\x4a\xb1\x62\x95\x47\x8c\x07\x05\x27\xc1\xa2\x6d\x08\xc1\x87\x03\x2d\xd4\x5a\x11\xaa\xd6\x2a\x6d\x54\x06\x09\xb4\x54\x33\x3d\x55\x3c\xa1\x43\xe1\x1b\x03\x3e\xc0\xf2\xce\xd6\x03\x9f\xbf\x0e\x68\x08\xa8\xb6\x0a\x8f\xf5\x7a\x07\x35\xf2\xca\xcf\x46\x14\xc6\x19\xba\x78\x5d\xa7\xb2\xd7\xeb\x80\xcf\x57\x9b\xe1\x15\x60\x02\x66\x41\x74\x65\x62\x65\x67\x60\xab\x50\x26\x3f\xeb\xe7\x87\xb7\xf6\x17\xdf\xfb\xee\xa3\x67\xff\xcf\x87\x17\x96\xef\x2d\x7a\xfa\xc4\x20\xcc\x00\x61\x0e\x00\x4b\x3b\xf0\x5a\x01\xc0\xda\x18\x53\x38\xeb\xb1\xef\xb7\x6c\x5f\xf6\xda\x6b\xaf\xd1\x6a\xaf\xc9\x5f\x00\x59\x6f\x48\xcf\xf5\xea\x10\xba\x2e\x3a\x47\x7a\xee\x1a\xbf\xd4\x8f\xf3\xf0\x9c\x37\xa5\x8f\xf9\x6f\x42\xdb\xe5\x39\x96\x36\x60\xb4\x4d\xf1\xc7\xf2\x84\x62\x01\xe7\xdf\x96\x2e\xef\xcf\x81\x4b\x4c\x81\xf2\x42\xe4\xf4\xfc\x5b\xac\x62\xc4\xc0\x04\x8f\x4b\x7a\xa7\x60\x88\xf3\xe4\x15\xcc\xf9\xd3\x0c\xe1\xe6\xb5\xa6\x77\xca\x8b\xa7\x21\x06\x80\x40\x78\x96\xc2\x49\xc0\x4a\xaa\xb0\x3e\xde\x8f\x3e\xfa\x08\x3f\xfe\xf8\x63\xf8\xc4\x27\x3e\x01\xc6\x18\x83\xe8\x37\x17\xd2\xb3\x31\x9c\xbf\x21\xcf\x6e\xcd\x4b\x61\x79\x95\xa3\x07\x0b\x5e\xd6\x89\xc9\xa7\x7d\x3d\x1b\x6f\x15\x67\xb9\x32\xcc\xb9\x50\xd3\x00\x00\x20\x00\x49\x44\x41\x54\xb3\xac\x50\xbd\xac\xc0\xad\x14\x54\x02\xe0\x94\x4b\xa5\x70\xa4\x8e\xd3\xd7\xb2\x88\x72\x34\x60\x6a\x00\x23\x50\x84\x2e\xbc\x1c\x5c\xa4\xf5\x61\x22\x80\xc0\x10\x8f\xc0\xb4\x4d\x3b\x70\xa2\x3b\x4c\xe8\x05\x56\x64\xa2\xb8\xad\x82\x0d\xfc\xda\x94\x4b\x15\x41\x40\xc7\x94\x48\x97\x9d\x4c\x4d\xce\x19\x9d\xc2\xb8\xed\x7b\x1b\x1f\x2f\x0b\x59\xe7\xc1\x42\x70\x65\x46\xdf\xbc\x06\xe0\x91\x10\x45\x47\xcf\xfd\xa0\x6b\x2b\xa4\x75\x55\x86\x2c\x66\x41\x00\xa6\x6c\x89\x15\x82\xd0\x57\x3b\xde\x18\xbd\x9d\x4f\xe2\x8b\x59\x29\x31\xd2\x67\x9f\x87\xc1\x49\x24\xcc\x49\x17\x94\xb6\x2d\xfa\xb5\x13\x28\x04\x84\xd1\xd3\x73\x83\x75\x33\x0e\xd8\xb0\xb4\xb9\x2c\xa5\x72\xd3\x9d\x3b\x74\x3a\x49\x5a\x00\x32\x40\xcd\xbf\x5f\xc6\x41\x4b\xb0\x4e\x08\xaa\xe3\xf8\xc5\xbc\xa4\xe5\x07\x10\x94\x0b\x07\x32\x34\x7b\x01\xca\xb5\x2c\xcb\x54\x4f\x8f\xb6\x57\xef\xbf\x7d\x79\xf1\xfa\x0f\xae\xce\xbe\x77\xb4\x9d\x7f\xb8\x4e\xcc\x29\x00\xcc\x00\x61\x6a\x8c\xf1\xc0\xc5\x18\xb3\x44\x44\xb7\x0d\x3a\x47\xc4\xc2\x18\x7f\x30\x82\x01\x00\xb8\x77\xef\x1e\x9e\x9e\x9e\xf2\xaa\x40\xfb\x79\x57\x2d\xe9\x74\x04\x10\x7f\xea\xf8\xb4\x08\xa5\xe7\x3a\x0a\xa1\xce\x9b\xfb\xd3\x30\x8e\x07\x9d\x82\x92\xe4\x96\x94\x79\x4c\x6e\xaa\x6f\xa4\x69\x26\xe9\x3b\x97\x23\xf6\xcc\xe3\x91\xf2\xa0\x69\x3a\x27\x96\xf6\x98\xfe\xa7\xcf\x34\x5f\x29\x0f\xca\x3b\xa0\x4d\x18\x73\x89\x30\x06\x66\x38\x73\x2a\xbc\x21\x3f\x9a\x70\x9a\x19\xb1\xb0\x9c\x9e\x16\x50\x13\x78\xa2\x3c\x39\x08\x91\xc0\x10\x2d\x04\x4a\xc3\x65\x95\x40\x99\x14\x07\xb7\xdc\x48\xe1\xb8\x3c\x3c\xaf\xa9\x7c\xfe\xfd\xec\xec\xcc\x1c\x1d\x1d\x99\x57\x5f\x7d\xd5\xbc\xf0\xc2\x0b\x81\xbc\x6c\x3b\xa7\x07\x2b\x84\x87\x26\x7f\xdd\xe8\xa5\x00\x00\x6d\xc0\x14\x85\x82\x62\xde\xd3\xf3\xb3\x41\x3e\x99\xf5\xf4\x34\x01\x84\x7e\xae\x06\xa9\xc6\x7e\x29\xa0\x5b\x14\x27\x6d\xed\xa4\x19\x58\x75\xd9\xd4\xdc\x8d\x42\x38\x9f\x11\x54\x09\x10\xff\xda\x56\x54\x96\x31\x81\x62\x21\x20\x23\xe8\x15\xd8\xf4\x87\xd5\x87\xf6\xb9\x54\x1c\x68\x23\xab\x59\x85\x58\xdc\x68\x03\x5a\x9d\x2b\x4e\x1f\xb1\xa0\x5e\x39\xd5\xe4\x67\x61\x29\xa8\xa3\x4a\xcf\x4b\xce\xcc\xf1\x35\x31\x49\xda\x5d\xda\x28\xa5\xaf\x15\x12\x0f\xac\x1e\x58\x08\xc2\xb3\x9e\x0e\xde\xfb\xd6\x2c\x4f\xd4\x82\x43\xbe\xd1\x05\xa1\x7c\x97\x9a\xf1\xdf\x43\x79\x48\xad\xaa\x41\xbc\xa0\x7c\x63\x79\xc4\x3e\x18\x02\x0e\xc0\x82\x09\x6e\x58\xe4\xe0\xa4\x02\x16\xa1\x82\xa6\xe9\xac\x94\x79\x28\x85\x71\xa9\x21\x20\xcd\xaf\xb5\x81\x8a\xb4\x3a\xd2\x3f\x4c\x1b\x10\xd9\x2a\x4b\x06\x3d\xfe\x9f\xfa\xdb\x7f\x51\xde\x05\x48\x81\x07\x92\x32\x28\x31\x5e\x05\x76\x68\x96\xd5\x2c\x35\xae\x2e\x05\x72\x41\x25\x8b\xf5\xcc\x13\x58\x9d\x0d\xf2\xe3\x0f\xf6\x96\xef\xfc\xf0\xca\xfc\xfb\xef\xed\xcf\x7f\x78\xba\x95\x7f\x5c\x24\x30\x01\x84\x09\x94\xa0\x65\x86\x88\x0b\x6b\x6d\x59\x22\xe2\x1a\xca\x23\x1f\x0a\xac\x0e\xd6\x74\x87\x24\x1a\x00\x80\xaf\x7f\xfd\xeb\x9a\x24\xc5\x59\x5c\x80\xf9\x51\x05\x4e\x75\x11\x32\x3f\x69\xd0\xc9\xf5\x16\xed\xe7\xa5\x70\x92\x6e\xa2\x3c\x78\xbc\x54\x6e\xbe\x16\x86\xcb\xcd\xc3\x49\x34\x52\x7c\x5c\x5e\x5f\x7c\x2c\x2f\x0c\xd4\xf3\xc7\xd1\x70\x43\x81\x8b\x53\x4a\x0b\xcd\x2f\x9e\x07\x5c\x97\x6b\x46\xe3\x64\xe3\xba\x53\x2a\x4b\xcf\x37\x21\x81\xa5\x0c\x68\x9a\xef\x92\x22\x88\x39\x0e\x0a\xa8\x80\x3c\x81\x1c\xb1\xf1\x8c\x41\xa8\xcb\x4c\x79\x73\x5e\x48\x7e\xd4\x8f\x57\x6a\x0e\x38\x62\x96\x21\x9e\xc9\xb1\xe9\x2f\x2e\x2b\x8f\x1f\x05\x7e\x08\xf1\xbc\x02\x00\x80\x57\x5f\x7d\xd5\xbc\xfa\xea\xab\x86\x2d\xda\x05\xa8\x37\xba\x82\xbc\xd3\x6f\xce\xbf\xec\x1c\x10\x0a\x8d\x46\x2f\x52\xb3\x9c\xf4\x8b\xd9\x74\x50\x4c\x00\x20\xef\x69\xd5\x4b\x0b\xcc\x94\x81\xc4\x77\x66\xac\xe3\x16\x54\x64\xf9\x84\x82\xc2\x76\x61\x59\x87\x47\x43\xfb\xd6\x84\x61\x0b\x92\x14\xb6\xa7\x8f\xd1\x52\xa5\xc2\xc2\x56\xda\x22\xfc\x4a\xc3\x4b\x05\x47\xcd\xe3\x35\x79\x48\x57\x80\x08\xf6\xae\x98\x58\xfc\xe4\x9d\x2b\x06\xe2\xea\x77\xc6\x84\x3d\x0e\x51\x8b\xb5\xb4\x51\x3a\x69\x0a\x8f\xcb\x1f\xdb\xce\x2a\x4d\x9a\x04\xbc\x7c\x79\x96\x0f\xbc\xbc\xd0\xd0\x93\x60\x4d\xad\x6e\xf0\x5e\xd5\x5b\x3c\x5c\x3e\x86\x52\xd6\xd6\x55\x54\xf2\xd7\x8f\xc3\x77\xf4\xb4\xcc\xe8\x8e\x19\xae\x80\x3d\x48\xa3\xb2\xd2\x32\x8d\x65\x20\x11\x86\x9f\xdd\x42\x65\x14\x83\x3b\x59\x29\xb0\xe1\x79\x53\xe3\xe7\xd6\xf3\xd8\x09\x37\xe3\xc0\x03\x78\x61\x79\x9e\x54\x39\x48\xe2\x24\x02\x96\xeb\x53\x6c\x64\x46\x06\x3e\x94\x11\xb7\xc0\xa2\xfd\x4f\xa3\xd1\x8b\x9e\x9e\x1e\x8d\xd6\x1f\xbe\xb7\x3f\x7f\xeb\xed\xcb\xf3\x37\x6f\x5f\x58\xbd\x37\xcd\xf4\x91\x46\x73\x86\x88\x53\x63\xcc\x19\x00\xcc\x10\x71\x6e\x8c\x99\x23\xe2\x1c\x00\x96\x00\xb0\xb4\xa0\x65\x4d\x36\x1d\x00\x40\x75\xf8\xdc\xce\xce\x8e\x5a\xad\x56\x2e\xc7\x9d\x08\x14\x44\xb8\x1f\x5f\x73\x41\xfb\x46\xe7\xb8\x3e\xe0\x7d\xb0\xa4\xd3\x24\x8b\x86\xa4\x5f\xb8\x8e\xe2\x16\x10\x2e\x2b\xd7\x5f\xdc\x9f\xc6\xc1\x75\x0c\xfd\x46\xd3\xcb\x07\xe1\x52\x9c\xd4\x0f\x18\x2d\x95\x3d\x96\xc7\x1c\xe0\x70\x7f\xc7\x03\x20\xcc\x23\x29\x7f\x68\x99\x05\xdd\x3c\xcb\x17\x94\xd6\xb8\xf0\xc4\x36\xad\xd9\x90\xcc\x42\x4d\xf4\x92\x72\xe7\x89\x8a\x81\x00\x9a\x31\x12\xff\x18\x88\x70\x19\x49\xfd\x9a\xe2\x97\x2a\x39\x7d\xa6\x72\x72\xc4\xce\x2b\xbd\x14\x8e\xca\x63\x04\x7f\x1e\xa7\x98\x97\x02\x78\x09\xe4\xa5\xd3\x45\x50\x07\x2f\x9a\xbc\x17\x80\x58\x80\x9d\x3a\x3a\xeb\x17\xd3\x69\x3f\x9f\xe4\x09\x2c\x13\x8d\x49\xaa\x55\x9a\x18\xec\x21\x60\x30\x08\x74\xb1\x39\xdd\x5f\x03\x18\x26\xf4\xe7\x53\x34\x65\xc7\x4b\xd6\x9e\x90\xf0\x48\x3c\x78\x4b\xe7\x19\x49\x1d\x4a\xcf\x36\x1e\x4e\xdd\x16\xde\xa5\xb1\x1a\x7d\x56\x0a\x21\xe4\x43\xec\x00\x48\x65\x73\xeb\x19\x42\xc6\x5c\x51\xfb\x77\xaa\xfc\xec\xa3\xb4\x25\xdb\xf3\x37\x25\x17\xaf\x70\x89\xf5\xa1\xe2\x6f\x15\x37\xd0\x74\x44\xd2\xce\xe2\xf6\xf2\x1a\xfa\xcd\xa6\x95\x15\x46\xc9\x33\x32\x75\x64\x85\xa6\xeb\x59\x68\xb8\xa8\x92\xf4\x7c\xab\x8a\x14\xec\x0a\x02\xef\xed\xcb\xc6\xa5\xbb\xb2\x40\x10\x7a\x12\x45\x68\x4d\x31\xe0\xac\x5e\xd4\xce\x13\xe4\x67\x55\xbc\x1e\x1c\xf8\x34\xb3\x4c\x95\xf2\xb1\xde\x09\x90\xa9\x39\x5b\x30\x72\x3c\x84\x89\xcb\x3f\x57\x0f\x58\x7a\xdc\x4e\x61\x74\xd3\x63\xf6\x03\xef\xf9\x5d\xfe\xd4\x8e\xf0\x67\x8d\x94\xee\xf6\x0a\x3a\x20\x5f\x6e\xa1\x7c\x06\x00\x72\xa5\xf3\xb3\x41\x71\xef\xf6\x85\xe5\x8f\xdf\x3d\x98\xff\xe0\xbd\xfd\xc5\xdb\x47\xa3\xf5\x87\xeb\xd4\x9c\x02\x82\x03\x2d\x53\x44\x9c\x22\xe2\xcc\x59\x5c\xc0\x82\x16\x28\x07\x53\x6b\x00\xbf\x26\xcf\xed\x9a\xf4\xe7\xb7\x58\xd0\x22\x59\x47\x80\xbc\x4b\x4a\xbb\x69\xea\x9e\xf3\x04\x81\x9e\xc6\x11\xb3\x8a\x28\xf6\x4c\x79\x71\xcb\x89\x14\x8e\xd3\x4a\x96\x1d\x47\xc3\xf5\x08\x8d\x93\xea\x28\xea\x62\xb2\x22\x7b\x76\xef\x5c\xd7\x19\xf6\xa3\x3c\xa5\x69\x1f\x29\x2c\x9f\x99\x80\x88\x1f\x4d\x2f\x2d\x47\x04\x00\x2d\x01\x17\x5e\x70\x52\x61\xd3\xc8\xb8\xe2\x8c\x01\x0b\xc9\xa2\x20\x29\x6a\x89\x9e\x27\xbe\x49\x1e\x1e\xde\xf1\x6e\x8a\x9f\x66\x1c\xa5\xa7\xb4\xbc\x32\x48\xf2\x73\xf0\x03\xec\xbb\x64\xc1\xe2\xf9\xd7\x04\xfc\x02\xe7\xac\x2f\xcf\x3f\xff\x3c\x40\xd9\xd8\xdd\x27\x4d\xd6\xc1\x50\x90\x52\x81\x95\x6a\xea\xa8\xaa\x88\x08\xb9\x41\xd0\xb3\xbe\x9e\x9e\xf5\xf3\xb3\x65\x4f\xcf\x01\x41\x97\x00\x06\xd3\xf2\x80\xb0\x6a\xfd\x81\x1b\xb5\x42\xf5\x27\x4c\x18\xca\xfe\xe0\xc2\x93\xaf\xf4\xf6\x5c\x8a\x58\x02\x45\x4d\xf8\x49\x80\x46\x1c\x75\x63\xa5\x54\x83\x00\x4c\x99\x01\xff\x0e\xd5\x77\xa4\x2f\x4c\xb3\x23\xfd\xd7\xe6\x47\x69\x99\x41\xaf\x5c\x5d\x30\xf7\xca\x15\x9a\x57\xc2\x2c\x8d\x3e\xff\xb8\xe2\x35\x50\x6d\x17\xc7\x4a\x51\x73\xfe\xee\x4c\x19\x3e\x62\xf7\x8d\x80\x28\x26\x9e\xaf\x9e\x9e\x76\xb3\x10\x82\x81\x7a\x3e\x84\x2f\x21\x5f\x1b\xce\xee\xb9\xad\xd2\x15\x6e\xe3\x25\x3a\xd7\x87\x73\x20\xd0\xa9\x7c\x2a\x9b\x03\x10\xac\x94\x7d\xe4\x94\x5f\x59\x8f\x8c\xdf\xfe\x0b\x58\xc9\x55\xd5\x21\x17\x77\x78\x0a\x6e\x05\x6e\xc0\x5a\x7d\xc2\xe9\x30\x68\xc8\x47\x24\x3f\xff\xcd\x10\x70\x00\x55\x9e\xd0\x7a\xee\x7f\x04\x94\xc4\xf2\xdc\xb5\x49\x70\xf9\x21\x59\x5a\x88\x84\x15\x70\x22\xd9\xe5\x64\xe2\xed\x83\xae\x97\xa1\xaa\x09\x5d\xc7\x61\x60\x99\x9a\xc9\xbd\xed\xf5\x9d\x5b\xfb\x8b\x1f\xbd\x73\x30\xff\xc1\x87\x7b\xcb\x5b\x67\x83\xe2\x50\x2b\x38\x33\xc6\x4c\x00\x60\x8a\x88\x53\xfb\x77\x06\x00\x33\x00\x58\x00\xc0\x02\x11\x57\xc6\x98\xb5\x5d\xdb\x42\x17\xe5\x6a\x97\xee\x57\x5f\x7d\xd5\x08\xd6\x16\xa9\x9f\x96\xf4\x10\xef\xeb\x25\x70\x23\xd1\xc7\x78\xd3\xfe\x99\x86\xdb\xe4\x59\xf2\xa3\xfa\xa7\x8d\x87\xb4\x0b\xc7\x85\xe5\x69\x39\x2f\x6f\x29\x9d\x31\x9d\xeb\xbe\x4b\xf1\x4b\x6b\x40\x25\xde\x31\x99\x80\xd3\x3a\xe0\x12\x53\xb4\xee\x1b\x15\x8a\x7f\xe7\xae\xc9\xbf\x2d\x3c\xaf\x1c\x9c\x3e\x66\x62\xe2\x80\x82\x66\x20\x40\x55\x18\x4d\xa0\x83\xce\xe1\x71\xdd\xc2\x41\x09\xb2\x70\x2e\x0c\xdd\xa5\x04\xec\x1b\xe7\xc9\xbf\xf1\xbe\x8d\xc7\x47\xd3\xaa\x00\xc0\x7c\xf1\x8b\x5f\x54\x9f\xfa\xd4\xa7\xf0\x6b\x5f\xfb\x9a\x3f\xef\xc5\xce\x55\xa3\x5b\xa8\xcb\xd2\xe0\x4e\xa0\xf4\x1d\x83\xb5\xcc\x14\xde\x34\x8b\x50\x00\x82\x5e\xf6\xcc\x6a\x3c\xc8\x27\xb3\x4c\x9f\xe5\x89\x59\xa3\x41\x95\x6a\x95\xa6\xda\x5a\x5f\x58\x62\xb8\xc2\xf3\xca\xc0\x03\x92\x7a\xad\x04\xa7\x80\x01\xc8\xb4\x0a\xd6\xd6\xb8\xb8\xef\x41\xed\x66\xdb\x46\x01\x20\x18\x25\x73\x65\x5e\x7e\xa8\x7a\xe3\x9a\xf5\xc8\xc9\x1b\x51\x0c\x5e\x24\x16\x8e\x9a\xdc\x1b\x01\x00\xf7\xa3\xca\xc0\xcb\xcf\x2a\x89\x61\x32\x59\x64\x23\x01\xc2\x00\x47\x04\x5d\x7b\x3d\x1e\xff\xd9\xc9\x6c\x9c\xbf\x21\x53\x82\xe1\x4e\x95\xf2\x19\xeb\xf9\x60\xe4\x13\x93\x3d\x9d\x30\x5d\xe1\xd5\x26\x2b\x63\xa7\x6f\xeb\x18\xb1\xb2\x10\x38\xb9\x39\xe8\xa4\xb2\xf1\x85\xa9\x65\x3a\x9d\x9c\xe8\x95\xb2\x54\x8f\x90\x08\x86\x84\x37\x8d\x2f\x38\xfb\x8d\x54\x6a\x3a\xc5\x54\x73\x41\xc5\x47\x5f\xdf\x9c\xa5\xc3\x87\x20\x8d\x86\xe6\x35\x07\x0e\x41\xbd\xa7\xc2\x42\x95\x36\x2a\x1e\x82\xcf\x75\x5f\x26\xe1\x95\x15\x44\x26\x9f\x0f\x8e\x1f\x06\x03\x81\x2a\x39\x06\x0a\x05\xf9\x34\x2b\x4e\x3e\xba\xb0\xbc\xf5\xce\xc1\xfc\xfb\xef\x5e\x9a\xbf\x75\x77\xb4\xbe\xbd\xea\x99\x13\x03\x66\x82\x88\xfe\x67\x8c\x99\x58\xd0\x32\xb5\x0b\x71\x1d\x68\x59\x81\xbd\x9b\xc8\xae\x69\x71\xfd\x92\x79\xe5\x95\x57\xf4\xf3\xcf\x3f\x8f\xaf\xbd\xf6\x9a\x21\xd6\x16\x80\xb0\xaf\x8d\x59\xc9\x9b\xfc\x11\xe4\xa9\x09\xde\x4c\x0c\x0b\x27\xe9\x19\x69\x6a\x27\xa6\x6b\x90\x85\xe3\x7d\x74\x4c\x47\x52\x1d\x10\x9b\x06\xa3\xdf\x25\x2b\x07\x8d\x93\xf3\xe3\xfe\x9c\x3f\x95\x5b\x4a\x57\x4c\x6e\x4e\x1f\xcb\xc3\x26\x1e\xc0\xfd\x85\x16\x16\x75\xb1\x0a\xc3\x33\x51\x42\x57\xd2\x7b\x2c\x8c\x73\x12\x7f\x4a\x1f\xe3\xdf\x16\x06\x22\xe1\xda\xe4\x6c\x72\x4d\x71\xb6\xc9\xf6\xc0\xee\x73\x9f\xfb\x9c\xfa\xd7\x7f\xfd\x57\xfd\xe2\x8b\x2f\xfa\x5b\x55\xdd\x37\x77\x45\x80\x29\xaf\x8c\x4f\x01\x40\x19\x63\x32\x44\xcc\xec\x5f\x77\x59\xa3\xbb\xa8\x71\x00\xf6\xa2\x46\x28\x8f\x61\x1f\xed\x2c\x93\x8b\x8f\x9c\x66\x37\x1e\x3b\x19\xdc\xbc\x36\xee\x3f\xbe\xb3\x4c\xf6\x7b\x05\x66\x8a\x54\x1f\x71\x4a\xa1\x7c\x89\x20\x80\xf0\x93\x57\xa0\x18\x86\xa7\xfe\x9c\x47\x18\x26\xe8\xf3\x65\x4d\x4e\x80\x92\xf7\x06\x90\x5b\x01\xf9\xc6\xa3\x97\x7c\xb8\x57\x2d\xfa\x58\x3c\x3c\x5a\x92\x8f\x4c\xf4\x30\x1f\x04\x11\xbc\xb7\x03\x22\x48\xf2\x84\xc7\x2f\xe6\x53\x0b\x6f\x2a\x5b\x43\xb9\xd6\xd0\x2a\x11\x21\x80\x23\xa4\xbc\xa5\xad\xed\x15\x25\x39\xb2\x1f\xc2\x2d\xd4\x50\x7b\xaa\xfe\x75\x99\xe1\xe9\x8d\x03\x67\x18\xa4\xa7\x96\x15\xc4\xa3\xcb\x4e\xb2\x58\xfd\x72\x92\xd0\x43\x0e\x91\x65\x4a\x6d\xa1\x37\xcb\xe3\xfa\x42\x70\xbe\x44\x39\x38\x7f\x19\xe8\xe9\xb5\x5e\x08\xf0\xe2\xf9\x08\xfc\x67\x0e\xb4\x84\x7a\x51\x2f\xea\x32\xce\x75\x62\x16\x27\x5b\xf9\xd1\x07\x7b\x8b\xb7\x6f\xed\x2f\xde\xfd\x78\xb4\xbe\xb3\x4c\xf5\xa9\x01\x33\x23\x56\x15\x67\x59\x99\x41\x79\x9c\xff\xca\x4e\x0f\x2d\xa0\x3c\x63\x6a\x65\xff\xd2\xf3\xa6\xdc\x0f\x22\x17\x2b\xf2\x67\x68\xf9\xde\xa5\xdf\x3d\x6f\x7f\xdd\x25\x9e\x07\xd5\x0f\x9b\xea\x52\x49\xa7\x76\xf5\x6f\x92\x97\xba\x2e\x38\xa0\x8b\x3e\x6f\x92\x3b\x9a\xf7\x6e\x57\x51\x0c\x65\x71\x6b\x0b\x47\x5d\x31\xf4\xc9\x91\x19\x47\x92\xd4\x71\x14\x48\xe7\xd6\x28\x2a\xe4\x71\x73\x99\xa5\x30\x54\x4e\x8a\x3a\x63\x32\x73\x79\xba\x38\x6a\x82\x93\xcc\x89\x31\xf3\x58\x8c\x57\xd7\x78\xbd\xbb\x7d\xfb\xb6\x01\x08\xce\x7c\x71\x6b\x5c\xbc\xe5\xc5\xed\x34\xb2\x1d\x95\xb1\x32\x19\xac\xb6\x4b\xd3\xa9\x23\x0d\xf6\x9e\x10\x40\x2c\x96\xa9\x59\x9d\x6e\x15\x93\xd3\x41\x7e\xbc\x4c\xf5\x2c\x31\x88\x59\xa1\x06\x69\x79\xe9\x1f\x02\x60\xb9\x56\xc0\xf7\x74\xd5\xe8\x0d\xa0\xf4\x0e\x16\x44\x5a\x4a\x7e\x7e\x5c\xa5\x44\x48\xf7\x2e\x9c\x0a\xea\x02\x20\x84\xfc\x80\xbc\x87\x67\x89\xa0\x87\xe9\x54\xb7\x06\xfd\x3b\x42\xb0\x5e\xc1\x90\x29\x0d\xb7\xa5\xb6\xda\xad\x8b\x41\x45\x73\x72\x50\x41\x02\x40\x45\x64\xf6\xd1\x0b\x23\xf3\x92\x96\x2a\xde\x4a\xb3\x96\x87\xa9\x61\x20\xaf\x8f\x96\x69\x96\x72\xaa\xaa\xe4\x58\x4d\xd1\xb0\x34\x63\x15\x2e\xb8\x75\x9b\x61\x0e\x7e\xb1\xa6\xb1\xf9\x51\x3b\xac\x8c\x02\x02\x07\x4c\x6a\x5a\xde\xad\x91\xb1\x96\x1d\x5b\x6f\xa8\x45\xc3\x6d\xa5\x75\x8b\x78\xe9\x82\x5e\xaa\x94\xab\x5b\x99\x5d\x5d\xa3\xab\x6c\x8c\x8d\xdf\xf1\x20\x16\x1e\x6f\xb9\xa0\xd3\x1f\x55\x59\x53\x60\x13\xd4\x33\x63\x4b\xc5\xa7\xd1\xa7\xd2\xca\x5d\x4d\x25\x55\x32\x57\xb5\xa4\x94\x0c\x59\x85\xaf\x83\xaf\x5a\x1c\x58\xc5\x01\x9e\x07\xf5\xc2\xca\x1f\x80\x5d\xa1\x40\x50\x90\x6b\x0f\x54\x2e\x43\x62\x75\x64\xb4\xcc\x6c\x26\x3b\xc0\xe7\xf8\x16\x08\xf9\xac\x5f\x8c\x3f\xda\x5d\xbe\xfb\x83\xab\xd3\xef\xfc\xe8\xf2\xe2\x07\x77\xb7\xd7\xb7\xf3\xd4\x9c\x1a\x30\x67\x50\x4e\x07\x4d\x00\xc0\xfd\xa6\x50\x02\x97\x39\x94\x53\x43\x73\x28\xcf\x6b\x59\x23\x62\x0d\xb4\xb8\x75\x2d\x2f\xbf\xfc\xb2\x7e\xee\xb9\xe7\xf0\x8d\x37\xde\x40\x53\x6e\x6d\xe4\x7d\x6a\x60\x81\xf6\x99\xed\x13\x1f\xf8\x4b\x7a\x41\x9a\x2a\xe2\x53\x2e\x52\x38\xea\x78\x9c\xce\x71\xde\x9c\x0f\x7d\x97\xac\x47\x94\x0f\xf7\xa7\x7c\x14\xe3\xc3\xe3\x23\xb5\x2d\x90\x57\xd2\xa5\x31\xdd\x4d\xf3\x03\x58\x3c\x3c\x9f\xa4\x38\x90\xfd\x75\xbc\xb9\x3f\xe7\x11\xcd\xfb\x44\x08\x20\x45\xdc\x04\x3e\x62\xa6\xb0\xd8\xbb\x54\x30\x00\x72\x46\x4a\x99\x0c\x84\x5e\x7a\xe7\x85\x08\xcc\x5f\xaa\x64\x4d\x05\x87\x20\x67\x22\xa5\x45\x21\x1c\x8f\x47\x6a\x30\xdc\x8f\x37\x46\x5e\xd0\x52\x21\x06\x74\xaf\xbe\xfa\xaa\xf9\xcc\x67\x3e\x83\x4a\x29\x00\x28\x8f\x77\x71\xdf\xb0\x3a\xdb\xc5\x00\x04\x07\xd7\x15\x6e\x0b\xa2\x05\x3c\x6b\x4b\xe7\xef\x3f\xd2\x0a\xd6\xb3\x4c\x2f\x4e\x86\xf9\xc9\xe9\x56\x7e\xbf\x50\xb0\xec\xe7\x6a\x90\x15\x38\xf0\xb7\x01\x43\xa5\x20\x68\xbf\xea\x95\x22\xc9\x6c\x60\x74\x95\xca\x43\xf2\xb7\x0c\xe8\x8f\x22\x47\x5a\x31\xe8\xed\x29\xf5\x16\xca\x17\xfd\x8a\x74\x35\x05\x02\x7e\x4d\x08\xdd\x02\xec\x77\xf7\xf8\x6d\xa6\xe1\x28\xde\x11\x1a\x96\xee\x20\xad\x35\x70\xc1\x55\x16\x00\x1d\x8d\x7b\x75\x84\x50\x29\x79\x9f\x72\xaa\xa8\xa1\x52\xfe\x3c\x0f\xf8\xfd\x46\x34\xff\x0c\x79\x47\x59\x59\xfb\x4a\x46\xa7\x52\x68\x7e\xd0\xb8\xa4\x75\x36\x26\x7c\xa8\x52\x60\x15\x68\x19\x79\x58\x3f\x68\xe1\x18\xca\x97\x9c\x7d\xe2\x72\x01\x2b\xb0\x00\x10\xdc\xb9\x54\xc6\x45\x40\x91\xaf\x07\x58\xd5\x9a\x0a\xc4\xd9\xb2\xa0\x80\xca\x8a\x5d\x4d\x9d\x59\xe1\xb0\x4a\x8d\xaf\xb5\x4e\x4e\x1b\x09\x5d\x70\x5b\x02\x18\x5a\x32\xe5\xa3\x3f\x65\xd6\xd2\x54\x9d\x88\x2b\x53\xc7\x27\xa8\xf4\x55\x96\x92\x82\x2c\x17\xd9\x92\xa9\x1c\xcf\xcc\xca\x87\x50\xed\xae\xb2\x99\x6d\x5c\x9e\xda\x30\xb6\x7a\xd7\xcb\xc0\xb1\xb1\x71\xaf\x13\xb3\xb8\xb7\xbd\xbe\xfd\xa3\xcb\xf3\xef\x7d\xff\xda\xf4\x7b\x3f\xd9\x5f\xde\x5a\xf4\xf4\x09\x28\x98\xd8\xb5\x2c\x13\x44\x3c\x83\x72\x3a\xc8\x4d\x0d\x2d\x00\xc0\xed\x20\x5a\x00\xc0\x1a\xca\xa3\xfd\xdd\x61\x73\x35\xd0\xe2\x0e\x9b\x7b\xfd\xf5\xd7\x8d\xa9\x5f\x52\x44\xfb\xdb\xd8\x68\x9d\x7f\xe7\x61\xb8\x4e\xe1\xdd\x03\xef\x52\x24\x0b\x04\xe5\xc7\xf5\x03\xef\xd7\x63\xe0\x02\xa0\x2e\x2b\xe7\x4f\xe5\xa3\x3c\xf9\xa0\xd8\xc9\xc1\xe3\x63\xbd\x4f\x4d\xa7\x48\x79\x23\x01\x26\x9a\x0f\x8a\xf8\x01\xa3\xe5\xfa\x29\x66\x4d\x69\x2a\xbf\x58\x99\x29\xf0\x35\x3b\xee\xa8\x39\x89\x32\xa4\xdf\xa8\xd0\x9b\x98\xd5\xba\xfa\xf1\x78\xba\xf0\xe5\xa6\xaa\x36\xf3\x62\x13\xef\x26\xd7\x25\xcd\x0f\xea\xce\x1d\x07\xb9\x61\x1a\x00\x40\xd9\xce\x4d\x41\x79\xb9\xa6\xb2\xbf\xcc\xbe\xd3\x9b\xa6\xdd\xdf\xa1\x9d\x46\x72\x53\x48\x43\x00\x18\xa2\x81\xe1\x70\x95\x5c\x78\xe4\x34\xbb\xfe\xcc\xd1\xf0\xb9\xc7\x4e\xfb\x4f\x0f\x56\x6a\xd7\x75\xd1\xb5\xa9\x1e\xa8\xb7\x9c\x26\xd7\x44\x2b\x7d\xeb\xca\xbb\x0b\xdd\xc3\xe6\xbf\x49\xba\xbb\xba\xc6\xfc\xf1\x4a\xb6\x3d\x6e\x59\x5e\x3e\x15\xd1\x2d\x6c\x34\x2e\x0a\xec\xec\x63\x60\xc5\x89\xed\xc3\x16\xf8\xf2\xa3\xe4\x03\x9e\xcc\xcf\x3d\x84\xc0\x83\xf3\x76\xe0\x21\x9e\xe6\x98\x26\x33\x81\x95\x26\x2e\x8f\x3b\x54\x2f\xb4\xbf\x08\x53\xa9\x1c\x98\xc4\xf2\x43\x48\x8b\xf1\xff\x56\xf2\x80\x21\x00\x07\x9a\xf9\x72\x00\x2e\x7d\xcf\x95\xc9\xc7\x83\xfc\xe8\x83\x0b\x8b\x77\xdf\x39\x98\xff\xf0\xe3\x9d\xd5\x9d\x65\xaf\x3c\x48\xce\x94\xb7\x39\xcf\x00\x60\xe1\x76\x0a\x91\x1d\x43\x0b\x3b\x3d\xe4\xee\x22\xf2\x16\x16\x7b\xc8\x9c\xeb\xdb\xfc\x5f\x36\x3d\x44\x9d\xa4\xdc\x62\xd3\x0b\x5d\x9e\xff\xa3\x78\x4b\xf1\x6c\xaa\x2f\x25\x9d\xd8\xb6\x34\xa2\x29\xdc\xa6\x71\x3e\x28\x6d\x57\x9a\x4e\xe1\x9a\xee\x2a\x02\x46\xac\x84\x6f\x94\x61\x17\x81\xba\x26\x52\x0b\xcf\x81\x12\x8e\xd0\x48\x72\x36\xf9\x3f\x28\xf0\x78\xd8\x60\x47\xfa\xf6\x30\x80\x91\x02\xf0\xa3\x57\x0d\x65\xc7\xe1\x00\x0c\xbd\x69\xda\x75\x2a\x03\xf7\x4e\x3a\x9c\x21\x94\xd3\x47\x2b\x00\x5c\xcd\xb2\x62\xf1\xde\xfe\x62\x76\x6f\x7b\x7d\xfc\xf1\xbd\xc1\xed\x67\x8f\xb6\x3f\x7d\x71\x9e\x5e\xeb\xe5\x38\x90\x76\x0b\x09\xd7\x2d\x06\x8e\x0f\x6f\x2a\xcf\x30\x1c\x1d\x76\xd4\xe8\x5b\xdc\xa6\x00\xaa\x12\x8e\xa8\x1a\x51\x01\x36\xc4\x29\x28\xee\xe0\xd9\xd4\x06\xd5\x22\x6f\x14\x3d\x4d\xfd\xdc\x90\x36\x45\x45\xf2\x54\xce\x87\x0a\x70\x8a\xf1\xa2\xe0\x1f\x8b\x0b\xc0\x8f\xf2\x43\x6b\x94\x30\xd5\x16\x71\x95\x61\xa1\xbe\xc8\x18\x20\x0e\x7c\xa8\xbf\xbc\x76\x86\x5a\xcd\xe8\x82\xe7\x7a\x7d\x03\x80\xda\x74\x1c\x90\xf4\xd4\xc3\x31\x8b\x61\x18\x71\x98\xf3\x04\x58\xd1\x7a\x14\x44\x47\xf3\x1d\x43\x9a\x2a\x7e\x0c\x17\x1a\xb3\x34\x23\x09\x45\x61\x1a\x9d\xc2\xa5\xce\xf9\x17\x68\xf4\x2c\x2b\xc6\x77\x76\x56\xef\xfd\x78\x7f\xf1\xf6\x87\x7b\x8b\x0f\x26\xfd\xe2\x7e\x81\x40\xd7\xb0\xf8\x75\x2c\x64\xfd\x8a\x3b\xc2\xdf\x81\x96\x9c\xfd\x34\xf9\x01\xf9\x0b\x77\xef\xde\x85\x73\xba\x58\x5f\xb9\x49\x7f\x1b\xa3\x8f\xe9\x9b\x18\xcd\x43\x53\xd2\x91\x38\xf9\x1a\x92\x58\x58\xaa\xa7\x1f\x24\x1f\xda\x00\x57\x17\xde\x9b\xf0\xe3\xe1\x02\xfa\xa6\xbb\x8a\x5c\x60\xd7\x3e\xb8\xf9\x4b\x7a\x8f\x85\x95\x78\x71\xe1\x24\x3a\x6a\x82\xe3\x66\x3d\x24\xdf\x28\xad\x86\xb0\x4d\x53\x53\x1a\x37\xeb\x35\xc9\xdf\x94\x16\xea\x8f\x0d\xdf\x24\xff\x18\x3d\x80\x9c\xee\x36\xd9\x68\x5c\xc1\x5f\xbb\x55\x1a\x11\x91\x9e\xeb\x42\xe3\x77\x79\xa0\xd9\xb3\x86\x70\xab\x74\xe1\x76\x1f\x41\x79\xd6\x42\x0e\x60\xb4\x56\x50\xac\x52\xbd\x3c\xd9\xca\xcf\xee\x0f\xf3\x7b\xb9\x32\xf3\x54\xa3\x4a\x35\x66\xca\x40\x8a\x7c\xee\xa4\x41\x5b\x39\x25\x1e\x8c\x3a\x11\xa0\xdc\x36\xca\xce\x9c\x60\xc1\x6b\x6c\xb9\xa2\xe4\xf1\xd0\xb0\x4e\x21\x7a\xa5\x22\x05\x2a\x3f\x04\xa0\x80\xc9\x2a\xf4\xfd\x25\xad\x07\x25\xe1\xa8\x9e\x66\x8b\x08\xc0\x24\x90\xe0\x64\xf4\x91\x11\xd0\xc2\xf2\xb4\x09\x48\x38\x89\xa4\xed\xc3\xee\x6b\x2d\x3d\x4d\x23\x72\x96\x77\x2e\x7f\x4c\x70\x46\x4a\x28\x5b\xb5\xc5\xb7\x94\xa4\x16\x07\xc1\x23\x58\x11\x02\x00\xb9\xf8\xcf\x80\x08\x66\x80\x59\x66\x8c\xaf\x10\x14\xb0\x91\x7f\x5d\x19\x19\xf2\x62\x85\x08\xa6\x61\x02\xb9\xa8\x75\xc3\xc5\xe7\xc0\x50\x38\xb5\x56\x92\x10\x50\xe1\xb9\x1b\xcb\x2f\x4c\x03\x06\xe1\x2a\x6a\x5a\xde\xc1\xb9\x3e\x8e\x37\xa9\xc7\xc6\x07\xe1\xd6\xa4\x10\xb4\x84\x02\x19\xdf\x90\x0c\x02\xcc\x7b\x7a\x76\xb8\xb3\x7a\xff\x87\x57\xe6\xff\xfe\xd6\xd5\xd9\x0f\x3e\xba\xb0\x7a\x7f\xd6\xd3\xc7\x1a\xcd\x19\x20\x9e\xd9\x33\x59\xdc\x8e\x21\xbf\xcd\xd9\x18\x13\x6c\x75\x86\x6a\x3d\xcb\x1a\xdc\xa9\xdd\xe4\x52\x45\xbb\xd3\x11\x5e\x79\xe5\x15\x7d\xf5\xea\x55\xfc\xc6\x37\xbe\x01\xab\xd5\x8a\xf6\x7f\x2e\x4b\x34\x84\xfd\x3c\x10\x1a\x49\x37\xd1\xb0\xc8\xc2\x41\xc4\x9f\xf6\xa1\x8e\x86\xf7\xad\xbc\x89\xa0\x40\x27\xf9\xf1\x99\x00\x49\x87\x49\x69\xe4\xfd\x3b\x95\x39\xe6\x4f\x75\x08\x95\x57\xd2\x29\xb1\xf4\x50\x7a\x0e\x1e\xb8\x7c\x52\x79\x49\xb2\x28\x16\x0f\xcd\x63\xea\xa4\x72\xf3\xf9\xc6\xbb\xa2\x98\xb9\x0c\x40\x06\x18\xd0\x40\xd3\x64\x46\xea\xfa\xbe\x09\x2a\x8b\xb9\x26\xd9\xa4\xa9\x24\x4e\x1b\x93\x69\x13\x39\x36\x31\x0f\x3e\x2c\x9e\x35\x7f\x32\x75\xc4\xad\x57\xce\xfa\x92\x92\xe7\x8c\xfd\x06\xee\x67\x8c\x19\xda\x5d\x48\x03\x30\xe5\xf4\x51\x56\xe0\xce\x68\x99\xec\x5d\x3d\xcb\xae\x3f\x76\x32\x78\xe2\xda\x59\x76\x63\xb4\x48\xf6\x7b\x1a\x33\xda\x59\xb6\xba\x96\xa9\x83\x80\x14\xaa\x93\x51\x9d\x42\xa9\xfa\xe2\xaa\x07\x37\xb5\xce\xdb\x33\xa8\x10\x2e\x0d\xdb\x14\xa6\xce\x62\x83\xb4\x55\xc4\x34\x2e\xff\xde\xc0\x48\x02\x67\xa5\xe0\x21\x0d\x05\x24\x0c\x07\x78\x72\x71\x37\x8d\xcb\xae\xee\xd9\x1f\xa6\xa7\x09\xf8\xd1\x20\x0d\xfc\x4b\x16\xf5\x1c\x0d\xd2\x4c\x12\x60\x88\x5f\x90\x37\xb5\xc8\x2a\x24\xeb\x75\x33\xd9\x6d\x04\x9b\xa4\xd9\xcb\x44\x41\x50\x3d\x1d\x1c\x08\xfb\x78\x5c\x49\x44\x22\xac\xdd\x6a\x6e\x20\x58\xb0\x8d\x9e\x06\x98\x1f\xeb\xfd\x49\x9a\xc4\x29\x36\xb6\x38\xdc\xd5\x1d\x03\x08\xab\xb4\x58\x9c\x0e\xf2\xc3\x0f\xf6\x96\xef\x7d\xb0\xb7\x7c\xff\xde\x70\x7d\x38\xcb\xf4\xfd\x5c\x99\x19\xa0\xdf\x1d\xe4\xa7\x87\xe8\xcf\x4d\x0b\xd1\x2d\xce\x76\x4a\xc8\x4d\x0f\x69\x67\xf9\xb5\x32\x68\x00\x80\xb7\xde\x7a\x0b\xbe\xf9\xcd\x6f\xc6\x74\x0f\x40\xbd\xaf\xdb\xa4\xff\xeb\xf2\x1c\x0b\xdb\xe4\x77\x9e\x78\xce\xab\xd3\x1e\x36\xef\x4d\xf3\x41\xe2\x1d\xcb\x27\xf8\x69\xc7\xc3\x2d\x2e\x1c\xf9\x39\x3f\x8e\x86\x9c\x3f\x45\x69\x5c\x20\x8e\xe8\x8c\xf0\x2d\x66\xb9\x09\x06\x1d\x2c\xac\x64\xb9\xe1\xfe\x31\x39\x9d\x1c\x34\x3c\x45\xa0\xb1\xb4\xf2\xfc\xe0\x8e\x23\x67\x49\x06\x68\xa1\x91\x78\x36\xd1\xf2\xb4\xc4\xe2\xf4\x8e\x9d\xb6\xcb\xfb\x3a\x03\x61\x19\xfa\xab\x01\xc8\xf1\xdb\x1a\xc0\x9f\x01\x53\xfe\x10\x72\x40\x28\x0a\x84\x7c\xd1\xd3\xcb\xb3\x7e\x31\x39\xd9\xca\x4f\x67\x59\x71\xa6\x15\x14\x89\x3d\xfb\x45\x19\x54\xa1\x52\x81\xc0\x2a\x42\x77\xec\x48\x09\x91\xba\x79\x7a\x7e\x08\x5b\x5b\x5a\x8d\xc6\xd1\x53\xd2\x0f\x9e\xd8\x2d\x7e\x75\x11\x55\x8b\x80\xc3\x4e\x3d\xa2\x4a\xc3\x38\x81\xaf\x99\x60\x30\x8a\x30\x41\xf6\x10\x4c\x01\x08\x8a\x94\x0f\x51\x68\x0b\xf1\x15\xdc\xa5\x99\xc8\x49\xed\x0b\x9e\x07\xd6\x0b\x9f\x46\xc0\xf3\x3a\x0a\xce\x08\x9a\x08\xac\x2a\x15\x66\xac\x85\x0b\xa7\xb2\xea\xf9\x28\xc1\x01\xef\xcf\x12\x40\xcb\xae\x96\x3f\x01\x1a\x41\x2f\x0f\xf8\x30\x64\xc9\x6c\x24\xcd\x21\x3f\xb0\x40\xd7\xed\x18\x8a\xaf\xe7\x42\x2a\x2b\x84\xe7\xcf\x18\x6b\x19\x09\xaf\x1a\xa8\xe2\x0a\xeb\x5d\x99\x86\xd0\x46\x54\x51\xd2\xb7\xca\x97\xed\xd2\xb2\xf9\x25\xd5\x1f\x9a\x02\x03\x06\x72\x65\x56\xa7\x5b\xf9\xdd\xf7\x2f\x2e\x7e\xf8\xd6\x95\xf9\x1b\xef\xed\x2f\xde\xb9\xb7\xbd\xbe\x3d\xcf\xf4\x3d\x8d\x30\x31\xe0\x8f\xec\x9f\x60\x79\x98\x9c\xb7\xb0\x50\x10\xe3\xac\x2c\xd6\xc2\xb2\x06\x77\xbd\x08\x04\xf7\xa8\x69\x80\xf2\xdc\xa9\x97\x5f\x7e\x59\x8f\xc7\x63\x5c\x2c\x16\xbc\x9f\xe4\x7d\x32\xef\xaf\xe8\x5f\x80\x50\x07\xf0\xac\x6d\x7b\xa6\x4e\xf2\xdf\x34\x1e\x49\xdf\x51\x9a\x4d\x75\xda\x26\xe9\xa1\x7e\x31\xde\x31\x1e\x9c\x9e\xea\x64\x49\x67\x70\x87\x50\xb7\x6a\x35\xd1\x53\x7f\xaa\x67\x25\xf9\xbc\xe5\x26\x36\x55\xd4\x55\xb9\xba\x84\xb4\x59\x11\xa4\x4c\xe1\xf1\x70\xa1\x01\x42\xc4\x65\x20\x8e\xf0\x24\x05\xce\x0b\x9d\xf2\xe3\xdf\x0d\xc4\x81\x8f\x24\xa7\x04\xb4\x5c\x3c\x34\x93\x39\x3f\xfe\x4d\x09\x61\xdc\x7b\x4c\x56\xf7\x0e\x2c\x8c\x24\x63\x20\xeb\x33\xcf\x3c\x83\xff\xf0\x0f\xff\xa0\x19\x80\xa1\x61\xdd\x34\x91\x7b\x2f\x00\xc0\x8d\x8a\x1c\x58\xd1\x50\xae\x75\x29\xb0\x3c\xb8\xae\xdc\x8d\x04\x46\x03\x62\x9e\x27\x66\x35\xef\x15\xb3\xf1\xa0\x98\x9e\xf5\x8b\xf1\xa2\xa7\x67\x80\x50\x24\x1a\x93\x44\x63\x8a\x60\x01\x0c\x57\x38\x61\x5f\x5c\xa5\x8e\x29\xc4\xd8\x5d\x41\x2c\x08\x53\xe0\x14\x5c\xa0\xa8\xa8\x1c\x11\x07\x21\x8e\x69\xc8\x2e\x54\x54\x95\x2f\x06\x7f\x6b\xca\xc5\x30\x05\xec\xd2\xe3\xa2\xa1\xf7\xe3\xb4\x38\xa9\x62\xf1\x44\xd5\xec\x01\x44\x60\x2e\x21\x92\x9f\xe4\xe2\x60\x06\x6b\x40\x8b\x5e\x7a\xe9\x2c\x06\xc6\x06\xf2\x5b\xdb\x89\x7c\xbe\x12\xd2\x05\xaf\xc2\xd4\x8a\x97\xc3\x38\x19\xaa\x88\x69\x23\xa2\xeb\x5b\x18\x4e\x0d\x68\x6b\x3c\xd1\xc6\x0b\x00\xd5\x16\x6c\xa6\xec\xa9\x95\x42\x58\xa0\x1b\x9e\xc3\x52\xdf\xf2\xee\x69\x11\x6a\x65\x00\x10\x5a\x5b\x90\x5f\x76\x45\xb6\x86\x43\x90\x57\x00\x40\x76\x4b\xf1\xf8\xa8\x5c\x86\x66\x8a\x1d\x2d\xac\x95\x59\x4d\xfb\xfa\xf4\xce\xee\xea\xfd\x1f\x5e\x99\x7d\xff\xdd\x83\xc5\x5b\x77\x76\x96\x1f\x4c\x33\x7d\x54\x28\x33\x36\xe5\x76\xe6\x29\x94\x3b\x86\xdc\x56\xe7\x29\x94\x3b\x87\xe6\x58\x1e\xdf\xbf\x80\x72\x3d\x0b\xdd\x31\xe4\xa6\x86\x0a\x3b\x5d\xed\xfb\x17\xc4\xf2\x18\xff\xed\xed\x6d\x1c\x8f\xc7\x78\xff\xfe\x7d\x57\x0a\x74\xc4\xcd\xfb\x44\x4a\x23\xf5\x77\x94\x9e\x26\x5f\x33\x7f\x47\x47\x69\x78\x13\x90\xc0\x8b\xc4\x5b\x8a\x87\xcb\x26\xf1\xa6\x55\xb6\x2d\x1e\x4a\xa3\x04\x7f\x3a\x75\xc3\xd3\xc5\xd3\xc2\x69\xb9\xae\x91\xba\x16\xa9\xbb\xe0\xfc\x78\xd9\x35\xa5\x97\x3b\x49\x26\x1a\x8e\xe3\x02\x4c\x58\xc0\x26\xc6\x31\xf0\x41\x85\x96\xfe\xd2\x30\x31\x5a\x80\x7a\xc1\xf0\xcc\x8c\x99\x99\x62\x00\x80\x56\x22\x5e\xf0\xbc\xb0\x68\x3a\x24\x47\x0b\x47\x02\x5e\x14\xc0\xb5\xa1\x51\xc3\x68\xe8\x3b\xe7\xc1\xe3\xa1\xef\x9c\x87\x44\x1f\xc8\x7a\x7c\x7c\xec\xdf\x1f\x7f\xfc\x71\xdc\xde\xde\x96\x78\xb9\xbf\x5a\xf8\xb9\xbb\x43\xbc\x05\xc6\x99\x80\xdd\x5f\x00\x28\x34\x98\x7c\x9d\x9a\xd5\x24\x2b\x26\xe3\xad\x62\x3c\xe9\x17\x67\xeb\xc4\xac\x94\x01\x93\x18\x4c\x95\xc1\x14\xc1\x59\xc0\xeb\x20\x80\x2b\x8b\xea\xd4\xd3\x2a\x93\x44\x17\x28\x8d\x90\x10\xd9\x83\xc4\x83\x77\xf9\x7e\x61\x31\xd3\x60\x1e\x1c\xd5\xa2\x77\xe7\x94\x10\x80\xe5\x14\x22\x54\xa0\xc4\xea\x19\x20\x49\x72\x31\x0a\xb7\x47\xd7\x23\xa2\xf1\x3b\x25\x26\x6d\xaf\x0e\x82\x32\x3e\x6c\x89\x26\xf8\xd1\x37\x5b\xec\x5b\xdb\xa5\x24\x81\x1f\x21\x33\x2d\x37\xa6\xa9\xd1\x7f\x43\x12\x97\x6f\x78\x7c\xed\x8a\x78\xea\x6e\xf9\x50\x6e\xd1\x0d\x55\xb5\x17\xcd\x4d\x8b\x18\xf7\x0e\xb6\x4c\x4c\x00\x9e\x5c\x8e\x05\xdb\xbb\x2d\x82\x46\x00\x3b\x9d\xe4\x1a\x05\x06\xf1\x38\x3e\xfe\xbb\x33\x19\x52\x20\x83\x21\xa8\xab\xaf\x05\x32\x01\x5f\x27\x68\xb5\x4d\x9a\x67\x38\x29\x2f\x9a\x2f\x3e\x91\xf5\xbc\x08\x2e\x8e\x74\x79\x6f\x2b\x74\x9e\x98\xd5\x2c\xd3\x67\x47\xa3\xf5\x47\xe5\x85\x88\xb3\x37\xdf\xbf\xb8\x7c\xe7\xa4\xbc\xc5\x79\x0c\x08\x13\x40\x3c\x73\xeb\x58\xa0\x3a\xb6\x9f\x4e\x17\x2d\xec\x29\xb8\x4b\xdb\x07\xd4\xac\x2c\x50\xf6\x0f\xee\xf8\x05\x70\x56\x16\x00\x80\x5b\xb7\x6e\x19\x6b\x69\x91\xfa\x46\x97\x24\x1d\x24\xa9\xde\xe7\x73\x5d\xc1\xfb\x63\x15\xe1\x41\x69\x81\xd1\x70\x10\x42\x79\xf0\xb0\x3c\x1e\xea\x38\x8d\x7b\xa6\x72\x4b\x03\x7a\xae\x1b\x24\x7e\x9c\xde\xc5\x4f\xd3\xc3\xe3\x91\xf2\x84\x3a\x49\xbf\x53\x3e\x92\x0e\x94\x00\x06\xa5\xa5\x3c\x24\x1c\x41\xf3\x5b\x0a\xc7\xf5\xb8\xdf\x0e\xcd\xe7\x12\x63\x4e\xb1\xf7\xd8\xba\x91\xf3\xac\xe7\x70\xfc\x24\xe0\xc2\x79\x6d\xf2\x1e\xfb\xd6\x65\xae\xae\x8d\x47\x2c\x0d\x0f\xea\xa4\xf8\x38\xef\x36\x99\x3b\xf3\x17\x4e\xdc\x55\xe4\x07\x60\xd7\xbf\x90\xd3\x77\xdd\x16\xea\x01\x00\x64\xfc\xe4\x5d\xf2\x3e\x00\x63\x06\xa9\x56\x3b\x17\xe6\xe9\xfe\xb5\xb3\xec\xc6\xa3\xa7\xfd\x1b\x97\x27\xd9\xf5\x9d\xa5\xda\xeb\x15\x6a\xa0\x0c\xa8\xda\x02\x48\xeb\x7c\x2f\x13\x3b\x46\xdd\x7e\x03\x60\xca\xd6\xfe\xc5\x1a\x1d\xc4\xf9\x00\xf8\xdd\x2f\x2e\x6c\xa5\xa0\x38\x6d\xa8\x70\xca\xb0\xc6\x2b\x4c\x1e\xb7\x8b\xbf\x96\x3e\x41\xf6\xa8\xfc\xf4\x9d\xa3\x09\x00\xd1\x12\xe5\x16\x76\x72\xd0\x56\x93\x87\x45\x18\x0c\xc8\x23\xa0\xc5\xed\xb4\x72\x19\xc5\x17\x8d\x3a\x65\x1e\xcb\xef\x46\x17\x45\x5f\xd2\xe7\xe8\xb9\xb4\xb5\x00\x3c\xcd\x04\x37\x8b\x89\x96\xce\x75\xa9\xf1\x11\xfd\x29\x2c\x0a\x7b\x6b\x5e\x27\xe9\x39\x35\x04\xe5\x31\xf9\x19\xb8\xe2\xc9\x13\xea\xa8\x45\x6a\x1e\x30\x3b\xbe\x1a\x0c\x14\xca\xe4\x8b\x9e\x9e\x8c\x07\xc5\xf1\xe1\x68\x75\xe7\xa3\xdd\xe5\xfb\x1f\xef\xac\x6e\x8f\x07\xc5\x7d\x53\xae\x61\x59\x38\x50\x02\xe4\x4e\x21\xa8\x76\x0a\xf9\x1d\x43\x60\x77\x1a\x5a\x50\xc2\x77\x0c\x01\x5d\x84\xeb\xd2\xdc\x61\xab\x73\x17\xff\x36\xd7\x16\xae\x4d\xe7\x34\xf1\xe9\x22\x53\x97\xb5\x1d\x5d\xe2\xda\x24\xce\x4d\xc2\x6d\xca\xaf\xab\x5e\xdf\x34\x2f\x37\xe1\xed\x69\x9d\xc5\x85\xa2\x99\x98\x19\xce\xd1\x51\x34\x45\xbf\x73\xc4\xc9\x91\x9c\xa3\x75\xe8\x8c\x86\x07\x16\x4e\x42\x99\x3c\xae\x20\x21\x8c\xbf\x64\xad\x89\x21\x7a\x49\x56\xc9\x62\x43\x79\xd0\x34\x50\x6b\x92\x64\xe2\xe4\x79\xca\xfd\x51\xe0\x27\xc9\x47\xf9\xf0\xa9\x22\x9a\xf7\x52\xfc\xdc\x21\x00\xe0\xcd\x9b\x37\xf1\xf3\x9f\xff\x3c\x7e\xed\x6b\x5f\xd3\x6e\xf7\x11\xa1\x77\x16\x16\xc0\xf0\x96\xe9\xc2\x5a\x5b\x9c\x9f\x46\x72\xd7\x91\x9b\x42\x02\xbf\x06\x06\x0b\xad\x60\x3d\xef\xe9\xd9\xc9\x56\x7e\x7a\x36\x28\x4e\x16\x3d\x3d\xd5\x0a\x0a\x34\x08\x89\x01\x85\x06\x13\xf4\x63\xd5\x7a\x06\x37\x29\x3f\x7a\x80\x56\x19\xb6\x5a\x53\xc0\xe9\x24\xab\x04\xcd\x10\x6e\x49\x28\xc3\x71\x95\x42\x4e\x41\x0d\xc2\x86\x23\x5e\xae\x82\xfc\x14\x09\x51\x32\x7c\x5a\x88\xa6\x9b\xab\x33\x0c\x99\x55\xdf\x2c\xb1\x94\x43\xde\xc8\x61\x7f\x54\x79\x06\x79\x4a\x23\xac\xd8\x7b\xbe\xd5\x96\x59\x62\x91\xc1\xca\x5a\x12\x80\x1b\x92\x87\x7c\xf1\x27\x06\x0f\xfc\x03\xf1\xa2\xe9\x11\x12\x86\xb5\x67\x0c\x9e\x28\x6b\x9e\xdf\x34\x60\x50\xad\x2a\xa2\x2a\xcf\xa9\xf5\x05\x22\x7c\xc8\xb7\xd2\xc2\x42\x4f\x7a\xae\x3f\x53\xc0\x44\xe9\x01\xdc\xba\x17\x3a\xfd\x53\x85\xab\x81\x5b\x0a\x10\x81\xa5\xc5\x47\xe0\x64\x2d\xa1\x76\xa1\x20\x9f\xf7\xf4\xe4\xfe\x30\xff\xf8\xc3\xbd\xd5\x7b\xef\x5e\x9a\xbf\xf5\xee\xa5\xf9\x8f\x6e\x5f\x58\xdd\x5a\x64\xe6\x14\xb0\x9c\x0e\x02\x80\x33\x28\x01\xcb\x99\xb5\xb0\xf8\x29\x21\x28\x0f\x92\x73\xeb\x58\x96\x50\x4d\x0f\xe5\x50\x4d\x25\x6b\x00\x7f\x0f\x9a\x06\x00\x78\xf9\xe5\x97\xf5\xc1\xc1\x01\x7e\xed\x6b\x5f\x8b\x4d\xf5\x4b\x7d\x25\x30\x3f\xc9\x52\xcf\xf9\xf0\x3e\x3b\xa6\x87\x62\x96\x07\x29\x7e\x1a\x8e\xeb\x17\x89\x37\x6d\xbe\x9c\x87\x14\x07\x95\x49\xd2\x09\xc0\x9e\x79\x1f\xcf\xf5\x09\xe5\x1d\x0b\xc7\x75\x85\x94\x4f\x34\x3d\x54\x3f\x37\x95\x87\xa4\xab\x38\x36\xe0\xf9\xd0\x25\x9f\x82\x72\x6d\xba\x1d\x9a\xbe\x73\x85\x19\x53\xb2\x4d\x89\xa7\x5d\x14\x07\x05\x52\xe6\x4a\xc2\x77\x01\x18\x12\x50\xa0\x95\x94\x57\x08\x29\x4e\xa9\xb2\x18\xe6\xcf\x0b\x92\x03\xb6\x26\x90\xc4\x69\xa8\xdc\x4d\xe6\xbb\x18\xef\xb6\xf8\xb9\x33\x00\x60\xee\xdf\xbf\x6f\xde\x79\xe7\x1d\x03\x00\xf0\xd4\x53\x4f\xe1\x9f\xff\xf9\x9f\x6b\xb6\x78\xd7\x75\xae\xce\xd4\xeb\x40\x0c\x98\xf2\x16\x57\x67\x0e\x76\x07\x49\xb9\x29\xa3\x02\x4a\x73\x71\xee\x01\x0d\x98\x42\x27\xb0\x9e\x64\xc5\xf4\x68\xb4\x3e\x3e\x1b\xe4\xf7\x17\x3d\x3d\xd5\x08\x39\x02\x2a\x65\x30\x41\x03\x4a\x02\x30\xbc\x82\x80\x7f\x0f\x17\x9f\xd2\xed\xb1\x60\xa0\x66\x85\x08\x74\x3f\x79\x91\xd6\x41\xf0\xdc\xaa\xd6\x24\x84\x5a\x5e\x92\x91\x82\x17\x4e\x87\x56\x7b\x93\xc9\x19\xa0\x87\x93\x81\x10\x06\x40\x48\x0b\x91\xb9\x6d\x27\x90\x8f\xdb\xbd\x38\xe1\x58\x38\x31\x0d\x41\x3c\x6c\xd1\x27\x95\x8f\xb2\x15\x76\xb1\x78\x5a\x1e\x3e\x96\x06\x1b\x98\x03\x38\xe0\x5c\x4d\x78\x9d\x83\x5d\x4d\x03\xe8\xa6\xa1\xb0\x62\x68\x00\xc1\x4d\xe9\xc8\x3b\xaf\x58\x7d\xb2\xbe\xe8\x4a\xc8\xed\x4c\x02\xb7\x9b\xcd\x04\x00\xcd\xb8\x04\x19\x00\xc4\x30\x0f\x90\x54\xb0\x10\x70\x54\x69\x09\x41\x1f\x0d\x57\x4f\xbd\x3f\xd9\x80\xe6\x9b\xb1\xdf\x6d\x32\xdd\x9e\x73\x8d\xa0\x17\x3d\x3d\xbd\x3f\x5c\x1f\x7e\xb8\xb7\x7c\xef\xdd\x83\xc5\x5b\xef\x1c\xcc\xde\xba\xbd\xb7\x7c\x7f\xd6\xd7\x47\xda\x5e\x86\x08\x00\x13\x63\x8c\x5b\xcb\x32\xb1\x0b\x71\x3d\x60\xb1\x16\x98\x15\x22\x2e\x01\x60\x65\xd7\xb0\xac\xe9\x40\xc5\x9e\x72\xeb\xa6\x93\x0d\x40\x09\x5a\x7e\xfd\xd7\x7f\x5d\xfd\xfd\xdf\xff\x7d\x93\xe5\x82\xf6\x3b\x6d\xfd\xb1\xd4\x77\x73\x7d\xc4\x07\xb4\x12\x3f\xae\xcf\x68\x58\x49\x47\xb8\xe9\x8e\x98\xbe\xa2\xfd\x37\x0f\xcf\xf9\xf0\x01\x2c\xb5\x38\x20\xd4\xf5\x80\xf4\xcc\xbb\x1b\x3e\x1d\x23\x85\xa3\x79\x44\x3b\xb3\xa6\xf4\x70\x50\x89\x2c\x3c\x9f\x56\xa3\xfc\x62\x5d\xb8\x34\x40\x07\xf6\x3d\x66\xb1\x42\x0e\x5c\x62\xa0\x81\x2b\x55\xfe\x1e\xb3\x2e\x48\x89\x90\x2c\x32\x75\x9d\x54\x7f\x97\x2c\x09\x34\xe3\x20\xc2\x83\x57\x4a\x4e\xdf\x84\x04\x63\x95\x4f\xaa\xd0\x5d\xd0\x2b\xe7\x2f\x8d\x12\x24\xc7\xf9\xf2\x38\x9a\x1a\x09\x0f\x23\xca\xf9\xc6\x1b\x6f\x18\x00\x80\x4f\x7e\xf2\x93\x98\x65\x59\x19\xa9\x1d\x31\x21\xed\xfd\xcb\x9f\xb6\x20\x86\x8e\xae\xe8\x6e\x23\xba\xf5\x71\x0d\x15\xb0\x29\x00\xa1\xd0\x0a\xf2\xb3\x41\x31\x3d\xda\x5e\x9f\x9c\x0e\xf3\xfb\x8b\x9e\x3e\xd3\x68\xd6\xca\xa0\x4a\x0c\x26\xf6\x0a\x01\x44\x76\x1c\xbc\x57\xbc\x08\xe4\x1c\x10\xb2\x14\x96\x69\xc9\xda\x5d\x48\x40\x94\x13\xab\x41\x34\x85\x2e\xce\xe0\xaa\x01\x1b\x1f\x07\x10\x4e\x26\xa7\x5f\xd0\xd2\x00\x9b\x96\x08\x81\x05\x59\x3f\x03\xf4\x0e\x24\x1b\xbf\x53\x5a\x06\x82\xad\xde\x4e\x36\x1f\xaf\x53\x80\x64\xeb\xb6\x9f\xc6\x32\x50\x1d\x79\x4f\xf2\xcd\xe5\x93\x53\x8e\x65\x39\x57\x7e\xf4\x5c\x1b\x2f\x32\x09\x47\x1b\x1d\xcd\x33\xc7\x8f\x9f\xad\x52\xeb\x1d\xe9\xa2\x5b\x43\x78\x92\xfc\xf1\xb2\x99\xaa\xac\x7c\x7a\x3c\x78\xa8\xf2\xba\x02\x95\x0e\x90\x60\x98\x27\x74\x51\xab\x45\x0e\x72\x19\x86\x60\x0b\x2d\xbf\x12\x03\x54\x75\xb1\x5a\x8b\x54\xa5\x8c\x4e\xfb\x54\xf9\x54\xcf\x7b\xfa\x4a\xf3\x24\xbe\x98\x1c\x00\x59\x60\xc4\x8a\xc2\xd7\x03\x53\x7e\x2c\xd3\x60\x5c\x1e\xe9\x55\xa2\xd7\xa7\x5b\xf9\xe1\x87\x17\x56\x3f\x7e\xe7\x60\xf6\x83\x1f\x5d\x9e\xbf\xf9\xe1\xde\xea\xd6\x34\x2b\x8e\x8d\xaa\xd6\xad\xd8\x73\x58\xce\x2c\x48\x71\xbb\x86\xe6\x50\xdd\x2f\xb4\x80\x12\xac\x04\x0b\x70\x49\x9b\x77\xfd\x82\xb7\xb2\xac\xd7\x6b\xf8\xe3\x3f\xfe\x63\x0a\x5a\x24\xa5\x48\x93\xcc\xc1\x03\xef\xbb\x24\x1d\xc3\xfb\x4f\xde\xef\x4b\xfd\x3b\x8d\x53\xd2\x61\xbc\x2f\xa6\x4a\x96\x16\x1f\x7f\x96\xd2\x16\xeb\xab\x29\x3d\x95\x53\x02\x36\x54\x0e\x49\xb7\x72\x5e\xd4\x71\xbd\xa9\x19\x2d\xd7\x87\x31\x59\xf9\x3b\x1f\x64\xc7\x64\x8d\xc9\xd5\xa4\xef\x28\xbd\x54\x7e\xc1\x1a\x97\x87\xb1\x36\x83\xbb\x18\x28\xd8\x74\x0d\x8c\x0b\x07\x1b\x86\x89\xc9\x13\x8b\x3b\x86\xf2\xa4\xe7\x2e\x7e\xd0\x40\xdb\xf6\xec\x5c\x5b\x5e\x35\xc9\x13\xfb\xce\xe3\x88\xc6\xf3\xe2\x8b\x2f\x2a\x00\x00\x44\xf4\x57\x06\x18\x63\x14\x00\xb8\x5b\xa7\x15\xda\x6b\x04\x4c\x75\xeb\x74\x0a\x00\x03\x44\xa4\xe7\xbf\xc4\xce\x82\xc9\x7a\x39\x6e\xef\xcf\x7a\x07\xd7\xc7\xd9\x8d\xeb\xa7\xfd\x1b\x97\x27\xbd\xeb\xdb\xab\x64\x2f\xd5\x68\x4f\x76\x26\x9d\x34\xb8\xd6\x16\x5e\x73\x57\x2a\x17\xa7\xc8\x43\x25\x6c\xfb\xf4\xda\xb4\x0f\xf5\xa3\x8e\xc8\xb5\x6e\x0f\x00\x00\x20\x00\x49\x44\x41\x54\xf6\x48\xd5\xdf\x4a\x85\xf8\x96\x4a\x14\x92\x5f\x4f\x52\x61\x15\x12\x9e\x2f\x85\x0d\x5b\xb9\x07\x54\x44\x39\x52\x5d\xe7\xe9\x9d\xd2\x27\xe0\x86\xcb\xe9\x1e\xa8\x25\xc7\x09\x28\x4e\xdd\x10\x17\x58\x7f\x78\x5e\x7a\x19\x68\xfe\x86\xf9\xc7\xe5\xe1\x7e\x00\xa4\x4c\x0c\xa3\x23\x84\x2e\x7e\xa7\x90\x79\x7e\x48\x89\x08\xe3\x90\xc3\x88\xef\x06\x82\x75\x4d\xee\x83\x4f\xbb\x10\x07\x2d\x7f\x7f\xae\x1d\x54\xcf\xbe\x57\x25\x79\x15\x8d\xdf\xc5\x67\x19\x7b\x6b\x09\x08\x61\x85\x72\x0f\xbf\x19\xff\x5e\x28\x93\x4f\xfb\xc5\xf1\x47\xbb\xab\x0f\x7e\xb2\xb7\x7c\xf7\xf6\xee\xf2\xce\xd9\x20\x3f\x29\x14\x4c\x21\x3c\x77\xc5\x83\x12\xa8\x16\xdc\xae\xa0\x04\x29\xee\xd9\x9f\x78\x6b\x07\x23\xfe\x19\xec\x20\xa6\xcc\xf7\xea\x72\x44\x00\x80\x5f\xfa\xa5\x5f\x52\xff\xf2\x2f\xff\x22\xf5\x43\x00\xf1\x7e\xb2\xe9\x5b\x97\x35\x23\xb1\x30\xd2\x77\xce\x4b\x0a\x2b\xf5\x9b\x9b\xf6\xe9\x4d\x71\x4a\x3c\xdb\xd2\xdd\x96\x67\x6d\x71\xb6\xe5\x11\x77\x31\xdd\x21\xf1\x93\xd2\x23\xc5\xdf\xb5\xfc\x45\xba\x5a\x5f\x20\x08\xdc\xc6\x88\x46\xba\x69\x06\x74\xf1\xe3\xf1\x74\xe1\xdb\xb5\xc2\x80\x40\xb3\x89\xfb\x69\x01\xbe\xff\xe8\x38\x1a\x9d\x70\x70\x9d\x62\x3f\x80\xea\x00\x3b\xba\x78\x57\x3a\xc4\x6e\xc8\x9e\x3d\xa8\x49\x0b\xdc\xde\x9b\xa7\xfb\x8f\x8c\xb3\x6b\x8f\x9e\xf6\x1f\xbf\x7a\x96\xdd\xd8\x59\xa4\x07\xa9\x41\x5f\x07\x64\x85\x2b\x28\x35\xc1\x75\xa1\x7b\xd8\xfc\xbb\x86\xdd\xc4\x35\xf1\xac\x2d\xa8\xdd\x90\xcf\xff\x7f\x57\x51\x43\xfc\x4c\x16\xbf\x1e\xa5\x41\x9e\xff\xc8\xbb\x8a\x0c\x94\x97\x20\x9e\x0e\xf2\xe3\x8f\x77\x56\xef\x7f\xb8\xb7\x7c\xff\xc3\x0b\xcb\xdb\xd3\x7e\x31\xd6\x60\xe6\x50\x82\x10\x0f\x4e\xc8\x21\x72\x6e\xc1\xad\xfb\xe5\xd6\x6f\x45\x0f\x8f\x03\xb2\xf0\x96\x9f\x7c\x4b\xc0\x0b\xbc\xf2\xca\x2b\xfa\x85\x17\x5e\x50\xff\xf6\x6f\xff\xd6\x06\x34\x1e\xc4\xff\x3c\x00\xe2\xbf\x16\x6f\x29\x9e\x4d\xf5\xe5\x26\xc0\xa3\x4b\xb8\x4d\xe3\x7c\x50\xda\xae\x34\x9d\xc2\x35\xdd\x55\x24\x45\xa2\x23\xcf\xd2\xbb\xc4\xab\x0b\x68\x89\xf1\xe6\x16\x02\x89\x5e\x8a\xa7\x49\x66\xce\xb3\x6b\xe6\x3b\x5e\x9b\x16\xc2\x26\x15\xa1\xab\x3c\xe7\x75\x9b\x34\x20\xe7\x3c\xbd\xed\xac\x28\x78\xa1\x9d\x5b\x0e\x25\x18\x71\x1d\xa0\x03\x2a\xee\x7d\x00\xd5\xae\x84\x0c\x4a\x00\xb3\xc8\x95\x59\xdc\xdb\x5e\x4f\x4f\x07\xf9\xf1\xed\x0b\xab\xdb\x57\x26\xbd\x2b\xd7\x4f\xfb\x37\xae\x9e\x65\x37\xf6\x66\xe9\x95\x9e\xc6\x0c\x85\xed\x33\x6d\x0a\x34\xb6\x60\x97\xd3\x9b\xc0\x2f\xa6\xb2\xe2\xe1\xa5\xb7\x36\x67\xc8\x74\x08\xe7\x12\x53\x52\x8d\xe9\x25\x26\x02\x14\x09\x08\xa9\xc0\x23\x54\xb0\x2c\x68\x03\xc8\x10\xad\x3f\xe0\x2c\x04\x64\x4d\x0f\x9d\x52\x01\x00\x40\x01\x38\x48\xe6\x93\x48\x7a\x63\x56\x1e\x47\x5d\x5a\xb0\xe4\x4c\x0c\x2c\x52\x31\x27\xc8\xe2\x76\xea\x48\xa7\xe7\x22\xff\xeb\xe9\xc2\x3c\xe6\x01\xe4\xbb\x92\xea\x90\x4a\x5a\x93\xa4\xd1\xe8\x45\xaa\x27\xc7\xc3\xf5\xe1\x9d\xdd\xd5\x07\x1f\xed\x2e\x3f\xb8\x3b\x5a\x1f\xcf\xb2\x62\x5c\x60\x68\x61\x01\xb2\x33\x08\xab\x7b\x85\x56\xf4\x67\xa7\x83\xf8\xbd\x42\xc1\x6e\x21\xb2\x53\x88\x4e\x25\xc3\x3f\xfd\xd3\x3f\x01\x00\xc0\x77\xbe\xf3\x1d\x31\x3b\x7f\xca\xee\x41\xfa\xe3\x4d\xc2\x36\xe9\x14\xca\xfb\x3c\x32\xc5\xe2\xd9\x34\xfe\x36\xda\x18\xe8\x68\xe3\xdd\x55\x67\xb7\xd1\x6f\x02\xb8\x6a\xae\x09\xdc\x6f\xaa\x44\xdb\xcc\x77\x4d\xbc\x9a\x12\x71\x5e\xc4\xd8\x55\x9e\x18\xcf\x26\x53\x21\xa5\x3f\x0f\x42\x6d\x92\x71\x13\xeb\x51\xd3\xbb\x14\x16\x40\x8e\xbf\x53\xe5\x22\xdb\xa6\xc1\x4e\x11\xd1\x78\x3d\x88\xb1\xdf\x6a\x5b\xa8\xdd\x54\x12\x58\x20\x63\xdf\xc3\xed\xd3\x00\x19\x18\x18\x28\x03\x83\x54\xe3\xf6\x70\x95\xec\xee\xcf\x7a\x07\x8f\x9e\x66\xd7\xaf\x9d\xf5\x6f\xec\xcd\xd3\x83\xc1\x5a\x8d\xf8\x49\xbc\x75\xa5\xb5\x99\x15\x20\x78\x6e\x50\xf6\x9d\x2c\x28\x06\x82\xb5\x30\x92\x6c\x31\xc6\x62\x3a\x9c\xee\xa6\x72\x53\x7d\xce\x84\x92\xa6\x4a\xea\x67\x88\x6c\x96\x37\xd2\xf7\xa6\x74\xb8\x47\x20\x72\x4a\xd7\x02\x04\x79\x4e\x89\x1b\xa2\xad\xa6\x6a\xc2\x7b\x8b\x1c\x6f\x43\x98\x22\xc9\x30\x47\x4b\x79\xf2\x28\x9b\xe0\xaa\x71\x89\x60\x7c\xba\x5a\x4b\xe2\x69\xb2\x50\x99\x94\x1b\x45\xaf\x92\x75\xca\x00\x40\x81\x26\x9f\x66\xc5\xf8\xde\xf6\xfa\xce\x9d\xdd\xd5\x07\x77\x76\x56\x87\xf7\x87\xeb\xa3\x79\x4f\x4f\x0a\x65\xe6\x06\xcb\x8b\x0f\xe9\x74\x10\x39\x7b\xc5\x81\x17\x77\x3c\x7f\x70\x19\xa2\xa9\x6e\x6e\xd6\x50\x4d\x11\x01\x80\x3f\xaa\x3f\xb0\xb4\xfc\xdd\xdf\xfd\x1d\x9c\x9d\x9d\xc1\x6c\x36\x83\xf5\x7a\x0d\x20\x0f\x36\x37\xb1\x02\x74\x99\x4e\x68\xeb\x1b\x41\x08\xc7\xc3\xf2\x38\x25\x59\xb9\x5f\x4c\x3e\x29\x1d\x12\x7d\x17\xbe\x4d\x69\xe8\x62\xf9\xe1\x74\x4d\xf1\x48\xf9\xd3\x96\x86\x36\xab\x94\x94\x16\x29\x0d\x52\x1c\x94\x56\xcc\x73\xde\xce\x62\x81\x36\x55\xb0\x6d\x4a\x39\x56\xe1\x24\xde\xb1\xc2\x6a\xca\xc4\x4d\x4d\x62\xd4\xaf\x4b\xb8\x36\x9a\x18\xff\x4d\x5c\x57\x40\xd4\x35\x9e\x07\x92\x67\x77\x77\x57\x8d\xc7\x63\x0d\x10\x4e\x1d\x91\x11\xb4\x04\x60\x52\xb7\xfe\x05\xc2\x69\x24\x3a\x75\x44\x81\x8c\x5f\x17\x63\x8c\x19\x20\xe0\x00\x4b\x00\xb3\xb5\xbd\x4a\x76\xf7\xe6\xe9\xc1\x95\x49\x76\xe5\xda\x38\xbb\xbe\x3f\xeb\x5d\x19\xae\xd4\x6e\xaa\x31\xf3\xbb\x3e\x98\x9a\xe1\xa3\x55\xb7\x16\xa0\xab\x92\xe9\x46\x13\xbf\x07\xa9\x8b\x16\x0b\xc8\x22\x8b\x33\x9c\xc2\xac\x6d\xc3\xf5\xe4\xec\x7e\x1b\x1e\xb5\x4b\x33\x59\x23\x43\xf3\xa0\x69\x8c\x2f\xed\xf6\xa9\x2d\x3e\x6e\x49\x72\x08\xc6\xa8\xf5\xa5\xce\x3b\x94\x8b\x5b\x62\xac\xc5\x43\x00\x72\x62\xac\x1c\x3d\x32\x60\x18\x03\xaa\x01\x08\xa2\x29\x30\xf4\x20\xb7\x10\x6c\x04\x31\xb3\x62\x8c\xa6\x07\x42\x5e\x92\xd8\x94\x1f\x18\x00\x8d\x00\x79\xa2\x17\x67\x59\x31\x3e\x1a\xad\xef\xdc\xd9\x59\xde\xbe\x3b\x5a\xdf\x39\xdd\xca\x4f\x16\x3d\x3d\xc9\x95\x99\x5a\xc0\xe2\xd7\xad\x00\x01\x2c\x50\x59\x54\x02\xc0\x42\xad\x2c\x64\x1a\x88\x4e\x09\xd5\x46\xe2\x6e\x2d\xcb\x63\x8f\x3d\xa6\x7e\xf2\x93\x9f\x6c\xa2\x2b\x1e\xa6\x7f\x57\xda\x8d\x06\x69\x82\xdf\x26\xcf\x9b\xf6\xd7\x5d\x78\xc7\x5c\x57\x7e\x5d\xf4\x66\x53\x9c\x9b\xe4\x7d\x17\x59\x1f\x28\x1f\xa4\x66\xbf\x89\x30\x5d\x0a\x2a\x16\x0e\xa0\x5e\xb1\xa8\x5f\x17\x04\xc8\xe5\xe8\x12\x0f\xa7\xef\x5a\xd9\x24\xd9\x36\x49\x7b\x1b\xb8\x6a\xab\x44\xe7\xa9\xc4\x5d\x2a\x61\x13\x8a\x07\x4e\xf3\xe4\x93\x4f\xaa\x1f\xff\xf8\xc7\x9a\x5a\x5f\x00\x42\x0b\x0c\x59\xb0\x4b\x41\x8c\xb7\xc2\x80\x5d\x03\x43\x2c\x30\x03\xfa\x0c\xe1\xa1\x76\x99\x31\x66\xa0\x00\x07\x69\x81\xdb\x5b\xeb\x64\x74\x61\x91\xec\x5f\x9a\xf6\x0e\xae\x9e\x65\xd7\x0f\xa6\xbd\x2b\xa3\x65\xba\x97\x15\x38\x54\x86\xa8\x05\x59\x2b\x8b\x56\x8d\x4d\x47\xca\x92\xa3\xa0\x48\xfa\x48\x4f\xd2\x8d\xdd\x5c\xdd\x5d\xae\xf0\x0b\x3d\xb1\x37\x04\x3c\xa1\xbf\x61\x04\xb1\x34\xb7\x6d\xaf\xee\x4a\xcf\x01\x57\xed\xd0\x3b\x06\x52\x1c\x30\xa8\xd1\x4a\x71\x12\x1e\xce\x83\x5a\x2b\x50\x48\x60\x93\x05\x45\x20\x6f\xa9\x17\xf5\xaf\x22\x28\x72\xdf\x22\xeb\x73\xb8\x45\x2a\xb4\xb8\x94\x79\x62\xd0\x80\x46\xd0\xab\x54\xcf\x4e\x07\xf9\xf1\xdd\xd1\xfa\xf6\xe1\xce\xea\xf0\x78\x6b\x7d\x34\x2e\xcf\x45\x9a\x14\xca\x4c\x35\x78\x2b\x8a\xbb\xec\x70\x61\x8f\xe2\x0f\x2c\x2b\xee\x87\xe5\x05\x88\xee\x2f\x3f\x3c\x8e\xfe\xca\x74\x91\x83\xe4\xe6\xf3\x39\xfc\xf3\x3f\xff\x33\x00\x00\xfc\xf8\xc7\x3f\x6e\x52\x8c\x10\x79\xdf\xa4\xdf\x74\xae\x4b\xbf\xc9\x2d\x15\xd4\xb5\x01\x99\x36\xf9\x9a\xe2\x96\xe2\x8a\x7d\xe7\x7e\x31\x39\x9a\xd2\x21\x59\x31\xda\x68\x62\x72\x4b\xe9\x95\x64\x8e\xf9\xc7\xe2\x8f\xf1\x8a\x39\x29\x5f\x68\x78\xff\xbd\x4b\xf7\x14\x03\x10\x6d\x0a\x98\x3f\xc7\xbe\xc5\x0a\x6c\x13\x85\xdd\x16\xaf\x44\x77\xde\xb8\xba\x5a\x5c\xba\xf2\xeb\xc2\xa3\x4b\x7c\x9b\xc8\xb5\x49\xdc\x51\x7e\xcf\x3f\xff\xbc\x7a\xe1\x85\x17\x6a\x61\xec\x29\xb5\x35\xf0\x62\x7f\xd4\xfa\xe2\xc0\x8b\x03\x33\xdc\x02\x93\x39\xf0\x62\xbf\x0d\xd0\x40\x96\x68\xdc\x1e\xe4\x6a\xb4\xbb\x48\xf6\xf6\xa7\xbd\x83\x2b\x93\xec\xda\xc1\xb4\x77\x65\x67\x99\xec\x0d\xd6\x6a\x98\x68\xcc\x9c\x2a\xaa\xa6\x21\xa0\xd3\xf4\x0f\x37\xdf\xb7\xb9\x2e\x53\x2e\x00\x44\x11\xd7\x64\x89\x80\x90\xa6\x38\xa9\xc5\xc1\xb9\x26\x21\x38\x48\x20\xa7\x08\x4b\xf2\xd3\x1d\x3f\xa1\x65\x83\xe4\x0e\xb3\xde\x88\xd1\xd2\x34\x0b\x20\x82\x6f\x19\x77\x91\x1a\x9b\x9e\xa0\x1c\x88\x7f\x09\x4c\xc2\x69\x13\xc1\x70\x13\x7e\x31\x16\x1c\xa1\xab\x15\x91\x92\x36\x55\xba\x29\x78\x8a\xda\xf3\x08\x10\x35\x0c\x04\x49\x31\x84\x53\x5a\x94\x3f\x3d\xcf\xa7\x7c\xd3\x68\x74\xae\x4c\x3e\xef\xe9\xc9\xe9\x56\x7e\x74\x38\x5a\x1d\x1e\x96\xd6\x95\xa3\xb3\x7e\x3e\x5e\x25\x7a\x5a\x28\x98\x19\x28\x41\x0a\x84\xa7\xda\x4a\xa7\xdc\xd2\x05\xb7\xee\xaf\x86\x70\xb7\x50\xf4\x06\x67\x80\xca\xca\xc2\xdc\x79\x06\xbb\xd2\x33\x08\x7c\x36\xa5\xdf\x44\xa6\x07\xb1\x9c\x48\x71\x6c\x62\x95\xe9\xe2\x62\xfc\xbb\xca\xd5\x45\x0f\x72\x7a\x88\x84\xd9\x24\x2f\xba\x60\x80\xa6\xfc\x6e\x1d\x4c\x63\x83\x40\x5d\xad\x18\x5d\x2a\x5c\x17\x9e\x31\xd4\xd7\x96\xa1\x6d\x32\x34\xc9\x16\xfb\xdb\x55\xae\xa6\x34\xc5\xbe\x75\xb1\x8a\x6c\xda\xe8\xba\xb8\x07\x01\x51\x9d\x40\xd1\x4b\x2f\xbd\xc4\xa7\x8e\x5c\xb8\x56\x00\x03\xf5\x9d\x48\x03\xfe\x4c\xa7\x92\xa0\x5c\x07\x93\xf5\x73\xb5\xbd\xb3\x4c\xf6\x2e\xce\x7b\x07\x17\xa7\xbd\x83\x83\x69\x7a\x65\x6f\x9e\xee\x6f\xaf\xd2\xdd\x5e\x01\x59\x79\x2f\x52\xf3\xc2\xdc\x4a\xa1\x57\x8a\xda\x60\x3b\x80\x88\xb9\x1a\x9e\x08\xf5\x67\xe5\x2f\x09\x21\xc8\x07\x4c\x36\xca\xab\x0e\x3a\x04\x4b\x45\x5c\xb3\xfb\x30\x00\x50\x6d\x53\x6e\x01\x78\x3e\x0d\x35\xab\x49\xc4\xda\x40\x9e\x6b\x62\x78\x90\x53\xfe\xad\x01\x21\xf2\x9d\xaf\xe9\xf1\xe0\xa7\x14\x5e\x16\x1a\xe4\x3c\xa1\xc0\x89\xef\xc4\x82\x20\x0f\x1c\x94\x80\x60\xfb\x33\xdd\x96\x0c\x2c\x0c\x4d\xaf\x7b\xc1\x48\x41\x1a\x4b\x54\x1e\x68\x57\x02\x98\x42\x99\x7c\x95\x98\xc5\xb4\x5f\x8c\xef\x0f\xd7\x47\x77\xb7\xd7\x87\xf7\xb6\xd7\x87\xf7\xb7\xf2\xe3\x69\x56\x9c\xe4\x89\x99\x1b\x80\x05\x20\xd0\x6d\xcb\x1e\xa8\xd0\xa9\x20\xb7\xb5\xd9\xfe\x72\xf2\x57\x0b\xc0\x05\x80\x59\x59\xe8\x16\xe7\xaf\x7c\xe5\x2b\xea\xaf\xfe\xea\xaf\xda\xfa\xbd\xb6\xd1\x7c\x97\xbe\xb3\x0b\xa0\xd8\x84\xf7\x79\xe3\x3c\x2f\xef\xf3\x0c\xd8\x37\xc9\x87\x2e\x72\x43\x44\x96\x36\xde\x9b\xe4\xdb\xc3\xe6\xdd\x94\x16\x20\xdf\xa2\x3d\xf3\xc3\xb0\x14\x34\xf1\x6b\x43\x84\xa2\xb0\x42\xb8\x18\x88\xe2\x61\x9b\xe8\xba\xa0\xf9\x56\x04\x28\xc8\x26\x7d\x8b\xf9\xb5\x21\x4d\x2e\x2f\x4f\xa7\x24\x2b\xf5\x93\xd2\xd0\x46\x2b\x55\xa4\x28\xcf\x2f\x7c\xe1\x0b\xea\x5b\xdf\xfa\x96\x06\x10\xb7\x4f\x03\x80\x3c\x85\x04\x91\x7b\x90\xe8\x42\x5e\x6a\x79\x09\xc0\x4b\xb9\x90\x37\x43\x80\x41\xa2\x71\x6b\x6b\xad\x46\x7b\xf3\x74\x6f\x7f\xd6\xbb\x72\x79\xd2\xbb\x76\x71\x96\xee\x8f\x96\xe9\xee\x20\x57\xc3\x54\x63\x56\x1e\x6c\x27\xc0\x11\x6e\x51\x68\x00\x13\x2c\x80\xe8\x82\x29\x03\x11\x08\x54\x9a\x8f\x2a\x6f\x51\x49\x43\x38\x4a\xa7\x23\xfc\xd8\x74\x05\x32\x0f\x43\x78\x47\xa7\xb3\x62\x69\xa1\x71\x77\xa1\xef\xc8\xde\x10\x42\x9e\xd5\x1b\x8a\xd8\x2a\x47\x93\xc1\xad\x6d\xfb\x78\x0c\xf4\x54\x65\x5b\xed\x19\x6a\x95\x39\x92\x30\x0d\x06\x34\x42\x9e\x27\x26\x5f\xa4\xc5\xe4\x6c\x50\x8c\x8f\xb7\xf2\xa3\xa3\xd1\xea\xf0\xde\xf6\xfa\xf0\x64\x90\x1f\x2f\x7a\x7a\xa6\x55\x79\x18\x1c\x59\x9b\x42\xa7\x84\x1c\x48\xa9\xdd\x23\x04\x16\xb0\xf0\x6d\xcd\x0e\xb8\x38\xab\x8a\x3d\x97\xc5\x2f\xbc\x75\xcf\x77\xee\xdc\x81\xbf\xfd\xdb\xbf\x6d\x1a\x41\x03\xb4\xf7\x8d\x40\xe8\x9a\xfa\xb9\x4d\x15\x1b\x08\x34\x31\x79\x9a\x14\x7b\xcc\xaf\xad\x0f\xe5\xf1\xc7\xdc\x26\x7d\x76\x57\xbd\x28\xf1\xe4\xbc\x63\xb2\x6c\xf2\xbd\x4d\x2f\x6d\x92\x1f\x5d\x41\xa9\x73\x22\x0f\xda\x8c\xba\xa0\xbb\x36\xa1\xda\xe8\xce\x1b\xee\x61\xd3\x3f\x0c\x7e\x9b\xd0\x3c\x2c\x7e\x6d\x71\x00\x9c\x2f\xbf\x1f\xba\x13\xac\x2f\x54\x26\xff\x73\x87\xd9\x01\x80\x03\x2e\x14\xc8\x38\x8b\x4b\x0a\xf2\x3a\x98\xe0\x1d\x2c\x90\x49\x35\x6e\x5d\x58\x24\x7b\x97\xa6\xbd\x2b\x07\x93\xec\xca\xfe\x2c\x3d\xb8\xb0\x48\xf7\x86\xab\x64\xd4\x2b\x70\x50\xde\x50\x5d\x5e\xee\x58\x47\x09\x10\x80\x98\xc6\x03\xd0\xa0\xdd\xbf\x11\x03\x45\xa6\x59\xfc\x54\x05\x9b\x36\xda\x54\xa1\xd7\x64\xa7\xd3\x31\x14\xc4\xb0\xdd\x2a\x76\x46\xa5\x74\x41\xd6\x34\x5b\xa1\x5a\x0c\x3b\x35\x1f\x77\x2c\xbd\xbc\xb4\x9a\x46\x1f\xa0\x35\x96\xc6\x52\xf6\x9a\x41\x63\x43\xf9\x82\xf8\x1c\xd8\x03\x6f\x6b\x89\x03\x50\x52\xba\x41\x76\x5a\x66\x15\x05\x3f\xdd\x18\x40\x23\xe8\x42\x99\x7c\x99\xea\xd9\x34\xd3\x93\xd3\xc1\xfa\xe4\x78\x98\x1f\xde\xdb\x5e\x1f\x1e\x0f\xd7\xc7\x67\xfd\xe2\x64\x9d\x9a\x39\x58\x30\x42\xc1\x89\xf4\xcc\x2c\x2c\x6e\xcd\xca\xca\xae\x5f\xf1\x07\xc7\x01\x84\xd3\x41\x50\xf5\x11\xda\xe5\xa9\x00\x58\x00\xba\x03\x87\x26\xa5\xd6\xc5\x2a\x11\xa3\xdb\xa4\xaf\xdb\x44\x56\x89\x46\x72\x9b\xf4\xa7\x12\x10\x8a\xf1\xdb\x04\x98\x75\x91\xef\x41\xd3\xde\x96\xf7\x5d\x00\x09\x08\x74\x6d\xa0\xa5\x2d\x5d\xde\x61\xec\xc3\x39\x05\x88\x85\x6d\xb2\x38\x70\x3a\x20\xef\x4d\xb2\x74\xc9\xc0\x58\x5c\x12\xff\x58\x3c\x5d\xf8\x3f\xe8\xb7\x36\xb7\x09\xdf\xf3\x34\xe0\x87\x21\x63\x2d\xfc\xef\xfe\xee\xef\xaa\xd1\x68\xc4\xbf\xd3\xe7\x00\xc0\x90\x1d\x48\xee\xaf\x03\x2d\xd2\x61\x76\xd1\xdd\x49\x50\xdd\x5c\xdd\xdf\x5a\xa9\xd1\xc5\x59\x6f\xff\xf2\xa4\x77\xe5\x60\xda\x3b\xb8\x38\x4f\x0f\xb6\x57\xc9\xee\x20\x57\xc3\x5e\xa1\x32\x65\x40\xa1\x00\x62\x44\x25\x27\x0c\xdd\x63\x3b\x63\xba\x3a\x77\x62\xae\x9f\xfe\x89\xac\xab\x08\xd8\xf2\xa9\x1e\xa8\x14\x66\x93\x75\x24\x36\x8d\xd4\xb8\x75\x3b\x62\xae\xa8\xa7\xbb\xf4\x68\xb2\x5a\x70\x25\x1e\x9d\xc2\x01\x61\x1a\x8a\x2d\xf2\xe5\x87\xbf\x49\x67\xaa\x54\x77\x0a\x49\xfc\xc2\xa9\xa7\x6a\x9d\x4a\x05\x3a\x6a\x8e\x24\xae\x96\x16\x0a\x4c\x8c\x85\x31\xec\xfc\x19\x00\x03\x06\x41\x17\x68\xf4\x3a\x31\xab\x79\x4f\x4f\xc6\x83\xfc\xe4\x78\xb8\x3e\xbc\x37\xcc\x0f\x8f\x46\xab\xa3\xd3\x41\x7e\xb2\x4a\xcb\x85\xb6\x0c\x8c\x50\x4b\x8a\x7f\x26\xdf\x73\x08\xa7\x84\xf8\xb9\x4a\xf4\xf0\x38\x6f\x61\xe1\x5b\x9c\x23\x6b\x58\x24\x77\x5e\xc5\xb3\x49\xbf\xfd\xa0\xf1\x40\x0b\x7d\x9b\xdb\x54\xd6\xf3\xf2\x79\x10\x85\x0e\x1b\xc8\x72\x1e\x4b\x4b\x93\xee\x8f\xf9\x9f\x17\x10\x76\x06\x50\x6d\x5d\x6c\x9b\x00\x9b\x28\xf9\x07\xa9\xb0\x5d\xfd\x1e\xa4\xa2\x35\x65\x3c\x40\x1c\x64\xc5\x10\x69\x53\xb8\xb6\xef\xdc\x75\x89\x5b\xa2\xed\x22\x6b\x1b\x9f\x4d\xf9\x05\xf9\xfc\x3b\xbf\xf3\x3b\xea\xab\x5f\xfd\xaa\xdf\x85\x44\xad\x30\x86\x5c\x21\xe0\xa6\x90\x24\x00\x43\xac\x2f\xfe\xd9\x54\xd7\x0b\x78\x00\x43\xac\x2f\x0e\xb8\xf8\x77\xa5\x61\x6b\xb4\x4c\x46\x97\xa6\xbd\x83\xcb\xd3\xec\x60\x7f\x96\x5e\xd9\x5d\xa4\x7b\xdb\xff\x5f\x7b\x57\xef\x23\x39\x52\xf6\x1f\x97\xdd\x3d\x3d\xbd\x33\x73\xab\xbb\x3d\x08\x10\x39\x04\x04\xc4\x04\x04\x48\x24\x5c\x88\x8e\x08\x11\x2d\x7f\xd4\x2d\xc9\x85\x20\x42\x2e\xe4\xfe\x02\x22\x40\x02\x21\x02\x24\xc4\xe9\xd5\xed\xb2\x2c\xb3\x33\x3d\x3d\xdd\xee\xf2\x1b\x74\xdb\x5d\x7e\xfc\x7c\x96\xdd\xb3\x03\xdc\x23\xcd\xb4\x5d\xf5\x7c\xd5\xf7\xcf\x55\xe5\xf2\xa6\xbc\x3a\xdb\x16\x17\xb3\x18\xaa\xc3\x47\x1e\x0f\x34\x3c\xa2\x1f\xd2\xfb\x74\x10\x13\x8e\xd3\xa7\x9e\xe4\xd3\xe1\x7d\xa0\xbb\xbf\x05\x82\x1c\x2c\x29\x3b\xc2\xa4\x44\xe2\x47\xfa\x91\x84\xc3\x60\xdf\x40\x07\x2a\x40\x02\x4d\xc9\xc0\x0f\xc0\xfb\x81\x81\x07\xe5\x47\xcf\x67\x50\x36\xf0\x62\xbf\x98\xb7\x8d\x8e\x40\x44\x41\x8e\xdd\x6c\x0a\x3f\x9b\x95\xa6\x91\xdc\x5b\xd3\xc3\x24\x07\xc8\x42\x82\x9a\x36\x1e\x62\x0c\x00\x75\x68\x36\xf7\xd5\x6e\x75\x33\x8f\xd7\x6f\xce\xeb\x57\xaf\x2e\xb6\x5f\xfe\xdf\xe5\xfd\x17\xaf\x97\xf5\x9b\x4d\x15\x57\x4d\x01\xf7\xc9\x6b\xc9\x1d\x40\x61\x66\x5a\x7a\x1b\x6d\xe1\x78\xf6\xca\x06\x6d\xb4\xed\xce\x63\x39\xec\x65\xea\x4e\xbc\x6d\xc3\x8a\xa2\x80\x18\x23\xfc\xe2\x17\xbf\x88\x6d\x7b\x3d\xc4\x4b\x0f\xae\x6d\x38\xee\xaf\xb4\x07\x55\x4c\xd6\x87\x27\xe9\xe9\x5f\xf3\x87\xf3\x1d\xeb\xc2\xfc\x5c\xff\x28\x0d\xb2\x9c\x2d\xef\x78\xc0\x85\x61\x9f\xa5\xfc\xa6\xd2\xc9\x5d\x8f\x19\xdb\x3c\x63\x92\x96\x16\x4c\x64\xda\x0a\xc6\x29\x0b\x2a\xb3\x56\xb8\x1c\xd2\x74\x5b\x6d\x49\x08\x9c\xab\xa8\xdc\x7d\x4e\xfa\xbc\x08\xf7\x14\x34\x06\x09\x4f\x4e\xc9\xfe\x17\x00\x00\x7c\x90\x1d\xf5\x97\x7e\x0f\xa9\x9b\x81\x41\x4b\x49\xdd\xdf\x21\x3c\x05\x2d\x78\xa9\xa9\x2a\x23\x9c\x3f\xd9\x94\x17\x1f\xdc\xce\xde\x7f\x76\x33\x7b\xf6\xc1\x6a\xfe\xb5\xa7\x77\xd5\xb3\x27\xf7\xe5\xd5\xa2\x2e\x96\x65\x2c\xaa\x74\xe8\x2b\xb8\x11\x9b\xa2\xc1\x08\x48\xcc\x44\xa0\xa7\xff\x9e\x18\x31\x03\x52\x60\xb5\x68\xb6\x83\x8b\xeb\xbf\x7d\xd4\x5f\x37\x62\x56\xa9\x48\xb0\x26\xed\xf3\xe8\xee\x89\xa5\x14\xd2\xf7\x34\x9d\xd0\x07\x1b\x47\x70\xd5\x3f\x95\x36\x95\x01\x80\x0e\x3c\xb4\x4a\x39\x80\x55\xf4\x45\x18\xd0\x95\x7e\xb8\x11\xcd\x7e\x25\x7c\x94\x2e\x8c\x93\x9a\xee\xfe\x90\x92\x02\x60\x1b\x9a\xcd\x7e\x29\x68\xf7\xe6\xdf\xe7\xf5\xeb\x7f\x2e\xb7\xaf\xbe\xbc\xdc\x7e\xf9\xf2\xc9\xe6\xf5\x6a\xbe\xbb\x01\x80\xf6\x28\xfe\x1a\x81\x12\xf6\xcc\x15\xe8\x6f\xb2\xe5\x66\x58\xda\x3d\x2b\x31\x39\x2c\xae\x03\x2c\x00\xd0\x1d\xcf\x0f\x00\xf0\x93\x9f\xfc\x24\xfc\xf2\x97\xbf\x94\x06\x2d\x8a\xb4\x3e\x54\x1b\xa0\x3c\xd7\xd6\x7e\xcc\xfb\x30\xdd\xf2\x6a\x3a\x2d\xe3\x86\x45\x9f\x25\x3d\x29\x59\xcb\xc1\xda\xaf\x7b\xca\x2c\x47\xbf\xc4\xaf\x61\x07\xab\x9d\xaf\xbe\x55\x44\xf0\x78\xe8\xa1\x81\xc7\xbb\x22\x2b\xa8\x75\x11\x02\x31\x21\xf9\xc5\x7f\x6d\x38\x7e\x13\x89\x7a\xa5\xba\x03\x2a\x20\x2f\x2f\x55\x00\x30\x2f\x1a\x38\x5b\x6c\xc3\xf2\xc3\xdb\xf9\xfb\x1f\xde\xcc\xbe\xf6\xc1\xed\xec\xd9\x7b\x77\xe5\xb3\xcb\xfb\xea\xe9\x62\xbb\xdf\xd4\xcb\xbd\x95\x84\x49\x03\x03\x53\x91\xa4\x53\xdb\x6c\xaa\xe9\xf9\xea\x5b\x45\x82\x7d\xe4\x0b\x5e\xae\x6a\x79\x36\x65\xdc\xdc\xcd\x76\xd7\x6f\x17\xbb\x37\x6f\xce\xb7\xaf\xff\xb9\xac\xbf\x7c\x79\xb1\x7d\xf5\xaf\xf3\xed\x9b\xbb\xf9\x7e\x66\x05\x86\x6f\xfa\xac\x93\xfb\x74\xdf\x4a\x4d\xcc\xb0\xf4\x00\x4b\x02\x4a\xd8\x73\x58\xd0\x52\x5b\x7c\xf1\xe2\x45\x7c\xfe\xfc\x79\x68\x81\x0b\xd8\x9e\x78\xa7\x00\x1a\x9c\x6e\x6f\xf8\x58\x20\xf4\x90\xba\x29\x3b\x63\x01\x00\x08\x7a\x2c\x72\x5e\x9b\x63\x79\xad\x3c\x26\xb9\xa9\xfb\x54\xd2\x88\x21\x7e\x0a\x94\x47\xf1\x71\x05\xe5\x29\x78\x1c\x26\xe9\xb4\x22\x4b\xcd\x77\x4b\x65\xd3\x1a\x80\x25\x5d\xd6\xb2\xd2\x9e\x28\x24\x62\xf3\x2d\x05\x2e\xc9\xcc\x8b\xf8\x39\x81\xe4\x2f\x7d\x13\xa9\x6a\xf6\x5f\xa4\xee\x96\x94\xe0\x38\x03\x33\x47\x33\x33\xe9\x99\x31\x15\x34\x87\x65\x26\x80\x2a\x34\x70\xb6\xd8\x96\x17\xef\xdd\x55\x4f\x9f\xdd\x56\xef\x7f\xb0\x9a\x3d\x7b\x6f\x35\x7b\xff\x72\x53\x3e\x3d\xdf\x86\x8b\x79\x1d\x16\x25\xfa\xd4\xc0\x80\xba\x27\xfe\xe1\x8c\x81\x67\x70\xd7\x88\xdc\xab\x61\x24\xd5\x1f\xc2\x2f\x32\xc8\xac\x88\x50\x9d\x80\x90\x01\xc0\x10\xf4\xa5\xe9\x06\x00\x00\xe2\xb5\xf5\xfe\xac\xd3\xf1\xbb\x42\xfd\xc3\xf8\x8c\xc0\x8b\xf1\xbb\xbd\x86\x02\x20\x16\x4d\xbc\xaf\x9a\xd5\x6a\xbf\x67\xe5\xf5\xeb\x27\xdb\x57\xaf\x97\xdb\x57\xff\x5c\xd6\x6f\xae\x17\xf5\xf5\xa6\x8a\xab\x58\xc0\x7d\x03\xb0\x01\x68\x36\x80\xf6\xa4\x34\xc3\x13\x6c\xdb\x0d\xb5\xbd\x3d\x2b\xe9\x41\x71\xc9\x75\x4c\xde\x08\x4a\x4f\xbc\x6d\xfd\x4c\xdb\x68\x77\xfd\xfb\xdf\xff\x1e\x7e\xf7\xbb\xdf\x41\xd3\x34\xb0\xdb\xed\x30\x1f\x40\xde\x43\x2a\xc5\xc7\x5d\x5b\x74\x4b\xfd\x20\xa7\x5b\xf3\x47\x03\x5b\x40\xc8\x48\xba\xb1\x9c\x25\x7f\xc6\xa6\x41\xbb\xf6\xea\x96\x64\x70\xbc\xc5\x2e\xc7\x93\xde\x5b\xc6\x33\x4e\xf7\xa0\xad\xe6\x0e\x82\x1a\x92\xcb\x1d\x30\xd3\xfb\x56\xbf\x04\x68\xbc\x68\xdf\xa2\x53\xf3\xcf\x5a\x29\x72\xc9\x83\x52\x73\x11\xad\x45\x2f\x9c\x48\x37\x0b\x60\x92\x7b\x16\xc0\x34\xf4\x67\x05\xba\x0d\xbd\x09\x70\xa1\x36\xf8\xf6\xc3\x9a\xa6\x2a\xa0\x98\x87\x06\xce\xca\x58\x2c\x16\x75\x58\x5e\xac\xab\x8b\xab\x75\x79\xf5\x74\x5d\x3d\x7d\xef\xae\x7a\x7a\x79\x5f\x3e\x7d\xb2\x29\xaf\x96\x9b\xf2\x62\xff\x8a\x35\x03\x64\x88\x3d\x27\xd6\x19\x19\x3c\x63\x90\x86\xa5\x4b\x16\xed\xbd\x57\xf7\x20\xcc\x30\x4b\x63\x19\xd8\xb9\xe5\x2e\xcc\x74\x7c\x63\x87\x5e\x7e\x11\x97\x98\x28\x3e\xc2\x7f\x6e\x29\x8b\xb6\xd7\x1c\xc2\xc8\x69\x99\x23\xa8\x3c\x5c\xc7\x6e\x73\xed\xee\xe6\x76\x1e\xaf\xdf\x2e\xea\xeb\x7f\x2f\xea\xd7\x6f\xce\xeb\x37\xff\x3a\xaf\x5f\xbf\x3d\xab\x6f\xb6\x65\xb3\xde\x85\xe6\x2e\x16\x07\x80\x52\x1c\x67\x57\xd2\x25\x21\xe2\x1a\xcf\xa6\xf4\x80\x0a\x7e\xa5\x19\x60\xf0\x86\x50\xfa\xdb\x5d\xa7\x9b\x6f\x2f\x2f\x2f\xc3\xdb\xb7\x6f\x2d\x0f\x6b\x12\x69\x63\x85\x06\x12\xa6\xba\x1e\xa3\x83\x4b\x8f\x77\x1c\xf1\xf0\x70\x72\xc0\xc8\x7a\xec\xe4\xfa\x34\x45\x7e\x73\xba\xbd\x36\x4d\x69\x28\x04\x23\x16\x67\x24\x59\x0e\x18\x58\xec\xa4\x72\x58\x87\xa5\xd0\x5a\xd2\x40\x0d\x65\xd3\xe2\xdf\x54\x03\xb8\x25\x4f\x25\x60\x34\x45\x7a\xbc\x34\x36\xfd\xac\x3c\xde\xff\x02\xfd\xb2\x64\xc1\x4b\xf2\xd7\xee\x87\x19\x1c\x6c\x87\xce\x89\xe9\x40\x0b\x9a\x91\xe9\xc5\x1f\x4e\xe9\x3d\x2b\x23\xcc\x67\x31\x2c\x16\xdb\xb0\xbc\xb8\x2f\xaf\xae\xee\xcb\x8b\xf7\xee\x66\x4f\xaf\xd6\xe5\xd3\xcb\x75\xf9\x74\xb9\x2d\x2f\x16\x75\x58\x56\xbb\xe3\xb2\x52\x6f\xf9\x01\x8d\xa2\xd4\x5e\x0b\x8a\xba\xa7\x66\x61\x66\x43\x9b\x71\xf1\xce\x2c\x48\xaf\x7f\x8b\xb3\x48\xc9\x5b\x45\x80\x7c\x3a\xee\x60\x29\x7a\x3e\xf4\x6d\x60\x2e\xec\x6d\x7f\x41\x87\xdd\xa4\x8b\xe5\x11\x82\x92\xd3\x47\xe7\xcd\x0e\x1a\xa8\xcb\x66\xb3\xae\xe2\x6a\x35\xdf\x5d\xbf\x3d\xdb\x5d\x5f\x9f\xd7\x6f\xae\xcf\x76\xd7\x6f\x17\xf5\x9b\xb7\x67\xbb\x9b\xbb\xd9\x6e\x55\x87\x66\x5d\x97\xcd\xdd\xae\x3d\x18\x0e\x8e\xcb\x3a\x08\x94\xe0\xbf\xee\xd5\x65\x48\x00\x4b\x81\xbe\xd0\x8c\x36\xda\xe2\xd9\x95\x1e\x40\x01\xd4\xc6\x3e\xff\xfc\x73\xf8\xeb\x5f\xff\x2a\x0d\x42\x1c\x51\x4f\xd0\x69\xb8\x74\x8d\x75\x8c\xbd\xe6\xfc\xf2\x3e\x68\xe6\x00\x17\x8b\x3e\x4e\x07\x28\xba\xbd\x69\x68\xef\x5b\x1a\x53\xae\x39\xd7\x9c\x4f\x9e\x70\x2a\x7f\xcc\x7e\x68\x33\x2e\x5e\xc0\xa1\x65\xa0\x55\x3f\x35\xf0\x5a\x74\x7a\x0a\x4e\xb3\x97\x86\x03\x8a\xa7\xc0\x55\x7a\x6f\x69\x24\x58\xde\x0b\x4c\x72\x2a\x3d\xf5\xeb\xf1\x5b\xd2\xdf\xea\xe1\xe4\x45\xfd\x1f\x7c\xf0\x41\xb8\xbc\xbc\x84\xbf\xfd\xed\x6f\xd4\x77\x90\xa0\x9d\x75\x69\xfa\xdf\x44\x6a\xc3\xbb\xbf\x04\xb8\x04\x18\x1e\x6e\x37\x38\xa5\x37\x5d\x62\x42\x87\xde\xf5\x0e\xc4\x83\x06\xe6\xa1\x81\xaa\x8c\xc5\xf9\x2c\x16\xf3\x79\x1d\x96\x4f\x36\x61\x79\x71\x5f\x5d\x5d\xde\x97\x57\x57\xeb\xf2\xea\xf2\x7e\x7f\x56\xcc\xf9\x36\x2c\xe7\x75\x58\xcc\x62\x31\x2f\x9a\x22\x04\x84\x2e\xa8\x8d\x9d\xc7\x5b\x6a\x00\x1f\x52\x6f\x76\x03\xf6\x37\xd2\x4c\xc3\x50\xd0\x47\x12\xd8\x92\x40\x00\x5e\xb6\xe9\x9d\xb9\x02\x7d\x9f\xd9\xbd\x28\x03\x90\x72\xc8\xa3\x9e\x6e\x38\xe6\x01\xf3\xea\xb4\xea\xeb\xe1\x2e\x16\x10\xb7\x21\x6e\xee\x67\xcd\x7a\x5d\xed\x6e\x6e\xe7\xf1\xe6\xed\x62\x0f\x54\xae\x17\xf5\xf5\xed\xd9\xee\x66\x35\x8b\xab\x4d\x15\xf7\x60\x25\x34\xf7\xb1\x68\x36\xcd\x7e\x66\x24\x5d\xe6\xe9\x00\x49\x31\xfc\x90\x61\xf7\xbd\x20\x80\xde\x79\x2b\xdd\x99\x2b\x87\xe5\x9f\xee\x74\x5b\x80\xe3\x9b\x41\x70\x6c\x3f\xed\xe6\x5b\x7c\x0d\xc9\xfe\x15\x98\xcd\x66\xe1\xf0\xd5\xe6\x96\xb4\x36\x8f\xfb\xbe\x54\x86\x92\x07\xa0\xfb\x01\xea\x9e\xd2\x87\xf9\x28\x19\xa9\xbf\x4c\x89\xf2\x3d\xd7\x2f\x8f\x8c\x85\x6f\x0a\x9f\x28\x1f\xb9\xf2\x6a\x89\x03\x4c\x9c\x2f\xd2\xb8\x45\xf9\x65\xf5\x5b\x0a\xe7\xea\xd7\xa0\xcc\xdb\x36\x2c\xa1\x40\x0d\x28\x00\xc8\x95\x08\xcb\xe0\xf0\x54\x5e\x6a\x08\xd2\x60\xeb\x45\x9f\x5c\x9a\x3c\xe9\xc1\x7c\xde\xc1\xde\x42\x39\x3a\x39\x90\x32\xc6\x7e\xae\x8e\x31\x40\x18\x00\x8e\xb3\x30\xf8\x30\x3b\x0c\x66\x00\x20\xdd\x17\xd3\x02\x97\x90\xdc\x57\xe8\x3a\xdd\xd4\x8b\x3f\x39\xc0\xfe\x36\xfb\xe5\xa4\x0a\x00\xe6\x65\x03\x67\xd5\x2e\xcc\xe7\xbb\x62\xb1\xd8\x86\xe5\x72\x53\x5e\x3c\xd9\x86\x8b\xe5\xa6\x5c\x3e\xb9\x2f\xaf\x2e\x36\xe5\xc5\x72\x53\x2e\xcf\xb7\x61\x79\x56\x87\xe5\x6c\x57\xcc\xdb\xc3\xef\xf0\xc2\x04\xbd\x84\x73\x98\x63\x90\x66\x08\x24\x20\x82\xa7\x17\x18\x5e\x7e\x96\x43\xe6\xb3\x6c\x69\x4d\x97\x63\xba\xb9\xa8\x06\x8e\xfb\x5b\xe0\x78\xd6\x0a\x20\x37\xfb\xdf\xef\x19\x9a\xc0\x5f\xa9\x26\xdf\x6c\x12\xc0\x12\x00\x40\x2c\x9a\xb8\x2b\x9a\x7a\x5b\x36\x9b\xfb\x2a\xae\xd7\x55\x5c\xad\xce\x76\x37\x6f\xe7\xbb\x9b\x9b\xb3\xdd\xf5\xea\x6c\x77\x73\x3b\x8b\x37\x77\xf3\xdd\xcd\xba\x8a\xeb\x4d\x19\xd7\x75\xd9\x6c\x76\x05\xdc\x1f\xbe\x11\xd4\xbd\x86\x0c\xc7\x37\x83\xa8\xb7\x7e\xd2\xd9\x94\x14\xb0\xe0\x73\x56\xd2\x25\xa0\x6e\x0f\xcb\xe1\x3e\x9d\x59\x89\x09\x38\xeb\xae\xd3\x73\x58\xbe\xfd\xed\x6f\x87\x3f\xfd\xe9\x4f\x9e\x27\x62\x2a\xde\xd3\x7f\x5a\xf8\x73\x1f\xba\x34\xdd\x92\x2e\x69\xfc\xc9\x49\xe7\x14\x69\xb0\xe4\xc9\x14\xfd\xee\x14\x79\xcc\x85\x4f\x9d\x3f\x66\x5e\x6a\xc6\x05\x08\xa3\x1a\xa0\x00\x90\x0d\x7a\x2b\xba\x55\x47\x4b\x52\x65\x96\xfc\xb4\xa2\x79\xcf\x00\xec\x29\x78\x2a\xce\x5b\xd1\x2c\xfa\xad\x7a\x39\xde\x29\x40\xd0\x68\x32\x2c\x25\x85\x24\x2c\x00\x0c\x3e\x33\x30\x00\x2f\x49\x18\x3e\xec\x6e\xf0\xc6\x52\x32\x3b\x83\x0f\xc7\x6b\x97\x95\x66\x55\x84\x45\xb5\x0b\xf3\xb3\x3a\x2c\xce\xb7\x61\xf9\x64\x13\x2e\xce\xb7\xe5\xc5\xc5\xa6\xbc\x78\x72\x5f\x5e\x3c\xd9\x03\x99\x8b\xb3\x3a\x2c\x66\xbb\x62\x5e\xc5\xa2\x0a\x4d\x51\x75\x87\xe0\x1d\x48\x9a\x15\x10\x30\x88\xb8\x5f\x05\x2f\xbc\x74\xcb\x3e\x68\xe6\x02\xef\x05\x81\x44\x26\x3d\xfd\x95\x85\x2d\x9d\x0e\xe1\x0d\xa5\x76\x93\x6c\x73\x48\xcf\x60\xc6\x28\x85\x3a\x42\x3a\x06\xcb\x52\xc9\xeb\xd4\xc9\x27\xb9\x9b\xbd\x8d\x78\xf8\x70\xe1\x66\x53\x36\x9b\x4d\x15\xd7\xeb\x59\x5c\xdd\xce\xf7\xb3\x2a\xb7\xf3\xfa\xe6\x76\x1e\x6f\x56\xf3\xdd\x6a\x35\xdb\xdd\xdc\xcf\xe2\x6a\x1b\x60\x53\x87\x66\x13\x43\xb3\x6d\xfa\xcb\x3f\x18\x80\x0c\x80\x4b\xba\xdc\x83\xc1\x4a\x73\x3c\x6e\x1f\x7f\x2f\xa8\xbd\x6e\x41\x4a\x07\x5a\x60\x0f\x62\x0e\xe9\xee\x2f\x0f\xa5\xb3\x2b\x0c\x71\x83\x27\x10\xe1\x9c\x9c\x87\x2c\x36\xbc\x63\x87\xe5\xc1\xda\xe3\x9b\x66\x87\xf3\xd5\x0b\x34\xa6\x00\x2e\x39\x00\x40\x92\xf7\x8e\x53\x92\x4e\xad\x8c\xad\xf9\x63\xae\x97\x69\x7f\x30\x66\x60\xb3\x84\x8b\x8e\x10\x7c\x54\x45\xb1\x0c\xfe\x96\x01\xbc\x25\x4f\xa5\xf4\xda\xcc\xc9\x0b\x29\xfd\xd8\x67\x8e\x1f\xf3\x69\xe9\xe1\xd2\x2e\xf9\x96\xc6\x59\xf4\x4b\x69\xc5\x69\x12\xe5\x7e\xfa\xd3\x9f\x86\xf3\xf3\xf3\x1e\xe3\x61\xc6\x05\xcf\xc8\x90\x9b\x7a\x0f\xbc\xe9\x86\xde\x0e\xc8\x24\xcb\x4c\x73\x18\x82\x19\xea\x24\x5f\xfc\x5a\xf6\x11\xd4\x34\x50\x85\x06\x66\x65\x2c\xaa\x32\x16\xf3\xb3\xdd\x01\xc8\xdc\x87\xe5\x93\x4d\x75\xb1\xdc\x84\xab\xe5\xb6\x9b\x8d\x59\x9c\xd5\x61\x31\xdf\x85\xf9\x1e\xcc\xc0\xbc\xdc\x03\x9a\x80\x0f\xc5\x3b\xfe\xef\x52\x3f\x08\xc1\x64\xdf\x53\x03\x50\x14\x29\x74\x30\xca\xb5\xff\xbb\x99\x14\x79\x2e\x06\x7a\x4b\x3f\x29\x82\x49\x97\x07\xa1\x03\x1d\xf4\x27\x01\x8e\xe1\x69\x18\xc0\x1e\xa0\x34\x00\x71\x17\xf6\x20\xa5\x2e\x9b\xcd\xa6\x8c\x9b\xf5\x2c\xae\xef\x66\x71\x75\x37\xdb\xad\x56\xb3\x78\x73\x37\x8b\xab\xd5\x7c\x77\x73\x3b\xdf\xdd\xdc\xed\x97\x7e\x36\xdb\xd0\xac\x63\x68\xea\x58\x34\xdb\xd8\x5f\xca\xa1\xf6\x9d\xa4\x1b\x6e\x7b\x61\xcc\x8c\x0a\xf5\x15\xe6\xde\x26\xdb\xf6\x3a\xdd\xa7\xd2\xa0\x13\x6e\x01\xa0\xfd\x9e\x10\x7c\xf1\xc5\x17\xf0\xd9\x67\x9f\xc5\xef\x7d\xef\x7b\xe1\xe5\xcb\x97\xf0\x97\xbf\xfc\xa5\xcd\x0e\xae\x9d\x59\x06\x20\x20\x64\x38\x9d\x98\x17\xeb\xf3\xf6\x6d\x9e\xc1\x90\xeb\x4f\xb0\x2e\x30\xc8\x59\xf2\x84\xf2\xcf\x63\x53\x22\x4e\xb7\x25\x4f\xbc\x69\xd7\xfc\xb6\xf4\xf5\x29\x1f\xa0\x70\xac\xc3\x03\x76\x2c\xe1\xbd\x03\xe8\xb0\x51\xeb\x00\x64\x89\xf7\x82\xa2\xd4\x71\xcd\x2f\x4f\x1c\x57\x21\xa6\xb0\xe3\x49\x23\x47\x39\xe0\xd1\x2a\x23\xe5\xab\xc5\x87\xa9\xd2\x67\xf1\xc1\x4c\xf8\x9b\x48\x68\x3f\x44\x0b\x58\x00\xfd\xf6\x80\x4c\xf2\x4a\x75\xb7\x3f\x06\xbf\x6a\x5d\xd0\xdf\x51\x0a\x30\x9c\x89\x61\xff\x8a\x06\xc2\xe1\x8d\xa5\xaa\xda\x15\x8b\xb3\x5d\x98\x2f\xea\xb0\x38\xdf\x84\xe5\x72\x5b\x2e\x17\x9b\x72\x79\x5e\x87\x8b\xf3\x6d\xb1\x5c\x6c\xcb\xc5\xa2\x0e\xcb\xb3\xba\x98\x57\x31\xcc\xab\x3d\x00\xaa\x42\x84\x10\x60\x0f\x68\x00\x00\xfa\xc0\x06\xa0\x07\x6e\xfa\x53\x2c\xbd\x25\xa7\xe3\xb1\xfb\x7b\x25\xbd\xe3\xea\xf1\x72\x0b\xe0\xd9\x10\x1c\x87\x37\xeb\xb4\x1b\x75\x87\x36\xd2\x99\x90\x02\x29\x1a\x9c\x68\xdb\x34\x87\xb0\x74\x07\x0a\x00\xec\x81\x09\x34\xb0\x9f\x41\x89\x61\xff\xcd\x9f\xba\x68\xea\x3a\x34\xf5\xb6\x8c\x9b\x4d\xd5\xac\xd7\x55\x5c\xdf\xcd\xe3\x6a\x35\xdb\xdd\xdc\xcd\x77\xab\x9b\xfd\x6c\xca\x7e\xc9\xa7\x8a\xeb\x3a\x34\x9b\x5d\x68\xea\x58\xc0\xb6\x29\x86\x20\x03\x68\xc0\xd2\x9e\x4c\x4b\x6e\xa4\x3d\xcc\xac\xc4\x66\xb8\x5f\xa5\x4e\x66\x50\x5a\xb0\x92\x1e\x0c\xd7\xfd\x75\xaf\x70\x1f\x00\x4b\xf2\xdb\xbd\x19\xf4\xa3\x1f\xfd\x28\x7c\xf6\xd9\x67\xda\xc3\x49\x6e\x9b\xb5\xf4\x01\x16\x50\xe0\xd1\x6d\xe1\x97\xc6\x1d\x0b\xd0\xf1\x92\x25\x5f\xa7\xba\xc6\x36\x3d\x0f\x91\x92\xac\x25\x1f\x24\xfe\xd6\x4e\x0e\xe8\xb3\x5c\x5b\x00\xce\xe0\x97\x7b\x98\xf2\x64\xd2\x58\xa2\xf4\x8f\x19\x8c\xbd\xa0\xc3\x63\x4b\x42\xb0\xdc\xb5\xc5\x3f\xae\xf0\x2c\xbe\x70\xf6\x35\x19\xae\x32\x72\x3e\x4a\xe1\x56\x3f\x2d\xc0\xd2\xdd\xe9\x7d\xfc\xf1\xc7\xe1\xe9\xd3\xa7\x1c\x3f\xf9\x8b\x36\xf6\x56\x49\x5c\xfa\xa9\x81\x00\x47\x40\xd2\xf2\xe5\xfc\xb5\xfa\x30\xb8\x09\x45\x03\x55\xd1\xc0\xac\xd8\xef\x7d\xa9\x66\xb1\xa8\x66\xbb\x62\xbe\xdc\x96\x8b\x8b\xfb\xf2\x6a\xbf\x47\xa6\x5c\xee\xc1\x4c\x58\xee\x67\x65\xc2\x62\xb6\x2b\xaa\x2a\xee\x97\x9a\xca\x06\x42\x88\x45\x55\x36\x45\x28\x30\xb0\x01\x00\x68\x8e\x75\x71\xd8\xe0\x89\xe5\xa9\x04\x87\x88\x4b\x53\xc9\x64\xc9\x1e\x70\x40\x87\x7a\x68\x90\x83\x77\x98\xf4\x55\x1d\x28\x36\x47\xdb\xb1\x29\xf6\x9b\x65\x63\xd1\xd4\x07\x90\x52\xd7\x01\x62\x1d\x62\xbd\x2d\x9b\xf5\xa6\x8a\x9b\x75\x15\x57\xf7\x55\xb3\xbe\xab\x76\xeb\xf5\x2c\xae\xd6\x87\x59\x95\xdb\x79\x5c\xad\x67\x71\xbd\x0d\xcd\xa6\x0e\xb1\x6e\x0a\xa8\x9b\x02\xb6\x0d\x34\x35\x40\x11\xa1\xe8\xbd\x6e\xdc\x02\x8a\x14\x8c\xb4\xcb\x3f\xed\xcc\xc8\x26\x01\x20\x2c\xd0\x81\x23\x08\xa1\xae\x21\x09\x4b\xff\x00\xfa\x75\x3b\x3d\x8b\x65\xf0\x0d\xa1\xab\xab\xab\x70\x7d\x7d\x9d\x33\x38\xe0\x70\x6f\xbf\x41\xf1\x49\x7d\xcb\x94\x34\x75\xdf\xc9\x85\x7b\x00\x40\x6e\x5f\x99\x03\x22\xb4\x72\xb0\xda\xf6\xd8\xc9\xc9\x13\xaf\x1d\x8d\x06\xbc\xb9\x4b\x45\x9c\x13\xb9\xce\x68\x05\xa1\xc9\x4f\xc9\xab\xc9\x4b\x00\xc6\x03\x8a\xb4\xce\xc4\xaa\x43\x92\xc9\xc9\xa3\x31\x95\xd1\xe2\x9b\x64\x9b\x93\x55\xf3\xb6\x3d\xb2\xfc\xe7\x3f\xff\x79\xf8\xe4\x93\x4f\xe2\xf3\xe7\xcf\xf7\x03\xf7\xf1\x49\x95\x05\x2f\x29\x88\x69\x97\x98\x0e\x20\x03\xa0\xbf\xd1\x37\x05\x1f\x29\xe0\xe1\xde\x5e\xea\x81\x16\x48\x66\x65\xda\xd9\x1d\xf4\xfa\x76\x0f\x48\x15\x0d\xcc\x00\x20\x94\x07\x30\x33\xdb\x15\xd5\xbc\x9d\xa5\xd9\x86\xe5\x62\x1b\x16\x8b\xc3\x32\xd3\x62\x1b\x16\xf3\x3a\x2c\xcf\xda\xe5\xa6\xc3\x46\xe0\x32\x42\xd8\x2f\x39\x15\x21\xc0\xe1\x83\x92\x0d\x40\xd1\x40\x15\xa0\x80\x62\xb0\x1c\xd5\x27\x12\xac\xf4\x41\x39\x74\xe5\x50\x60\xb6\xa1\x68\x53\xec\xc1\x48\x03\x4d\xdc\x03\x93\x3d\x50\x89\x87\xe5\x9d\x18\x9a\xba\x0e\xcd\x7e\x06\x25\x34\x9b\xfd\x0c\x4a\xb3\xd9\x94\xfb\x8d\xb1\xf7\x55\xb3\xb9\x3f\x2c\xf9\xdc\xce\xeb\xd5\x6a\x1e\x57\xf7\x55\x5c\x6f\xca\x3d\x7f\x2c\x9a\x78\x98\x3d\x89\x4d\x01\x3b\x18\xbe\x4e\xdc\x3b\x6d\xb6\x0d\x43\x7b\x4e\xf0\xbe\x94\x08\xc9\xcc\x4a\x0b\x64\xf0\xfe\x14\x48\x66\x58\x00\x81\x92\xc4\x5e\x7a\x60\x5c\xfb\xb1\xc3\xde\x2b\xcc\xc9\x8c\x0b\xbc\x78\xf1\x22\x26\xc7\xf1\x53\xc4\xb5\x15\xee\xc1\xca\xf2\x10\xe5\x69\x8b\x94\x7e\x4b\xdb\x1f\xd3\x77\x79\xd2\xaa\xf1\xb6\xfc\x94\x7e\xca\x1e\x00\x2d\x3f\xc6\x6f\x2e\x5e\x4b\xab\x27\xcd\x40\xe8\xe4\xd2\x2b\xa5\xd9\x63\x07\xeb\xa6\xc6\xfc\x54\x37\xf6\x91\xb5\x8b\x81\x0b\x36\x2a\x85\x63\x47\x28\xd2\x12\x6a\xd1\x95\x03\x3a\x3c\x83\xbf\x47\x8f\x37\xde\x22\x33\x15\x00\x1b\x0b\xce\xc6\xd8\x7e\xcc\xba\x07\x6f\x26\xb5\xaf\x54\x37\xc3\xd3\x7a\x53\x70\x83\x81\x4c\xfa\x21\xc8\x0e\x90\x48\x7b\x65\x9a\xe1\x99\x32\x3d\xe0\x43\x2c\x53\x0d\x74\xb4\xf6\x10\xb0\x2a\xbb\x6b\x28\x42\x68\x20\xb4\xb3\x2f\xf3\x5d\xa8\xce\xb7\x61\x71\xbe\xd9\x03\x9a\xd9\xae\xa8\x66\xbb\x50\xcd\xe2\x1e\xcc\xcc\x77\xa1\xaa\x62\x31\x9f\xc5\x62\x5e\xee\x8a\x6a\x76\xd8\x83\x53\x46\x08\x45\x37\x53\x53\x40\xd1\x7d\x35\x1b\xa0\x68\xf6\xf9\x52\xc0\x01\xf4\xa0\x4e\xa7\xb7\x7c\xb3\x9f\xe2\xe9\xae\x0f\xb3\x26\x71\xff\xf6\x0e\xd4\x31\x34\xf5\x01\x94\x1c\xff\xca\x66\x53\x07\xa8\x37\x65\xdc\xdc\x57\x71\x7d\x5f\xed\xf7\xa3\xac\x67\x71\x7d\x5f\xc6\xcd\xa6\x6c\xea\xfa\x00\x4c\x76\xe1\x08\x4c\x0e\x7f\xbb\xe4\x1a\x03\x06\xfc\xa6\x8e\x34\x33\xd2\x7b\xb3\x87\xd8\xcf\xc2\xe9\xa4\xae\xa9\x6f\x03\x75\x20\x26\xfd\xc5\xaf\x7a\x1b\xbe\xce\x6c\xed\x3b\x73\x40\x83\x87\x72\x1e\x48\xc6\xf2\x9d\xc2\xb6\x24\xeb\xed\x6f\xbd\xe5\x40\xf1\xe4\xa6\xed\xd4\x79\x98\x0b\x34\xa7\x1c\x7b\x3b\x2c\xa2\xed\xbb\x93\x90\x1a\x87\x38\x73\x9c\x91\xc2\x24\x64\xcc\xe9\xb0\x22\x4d\x20\x78\x3c\x74\x6a\xb0\xf0\x50\x36\xac\x3e\x3c\x06\x5f\x46\x91\xf6\x66\x12\x31\x3b\xd3\x03\x30\x49\x58\xfa\x1a\x36\x9e\x81\xe9\xae\x13\xa0\x02\x40\xcc\xc4\x30\xbc\x01\xeb\x41\xba\xa9\x7b\x40\xf7\xe5\x20\x6e\xbf\xc7\x26\x84\xa6\x38\xfc\x41\x28\x23\x84\xea\x30\x93\x53\xc6\x22\x94\x69\x7c\x2c\xaa\xd0\x00\x84\xfd\x6c\x0d\x14\x87\xb8\x16\xe4\x00\x34\x10\xa1\x9d\x31\x69\x62\x2c\x5a\x90\xb2\x9f\x49\x89\xa1\x89\x11\x00\xb6\xfb\x7d\x27\xf5\xf6\x00\x40\x0e\xaf\x20\xc7\x58\x40\x8c\x01\xea\xc3\x2c\x09\x39\xb0\x03\xc0\x8e\xda\x07\x02\x09\x48\x00\x00\xf6\xed\x9c\x84\xaf\xf7\x9a\x71\xb2\x41\x36\x95\xc3\xcb\x40\xe9\x51\xfa\x83\x0d\xb5\xc2\xfe\x94\xde\xab\xcb\x49\x38\x4e\x5b\xd7\x9e\x08\xc0\xe2\x69\x73\xd2\x53\xad\x74\x6d\x19\x30\x1f\x4a\xb7\x37\x5c\xb3\x63\xb9\x7e\x28\xdd\x94\x9d\xb1\xe5\x0a\x82\x1e\x8b\x9c\xd7\xe6\x58\x5e\x2b\x8f\x49\xae\x62\x18\x53\x4a\x33\x27\x32\xe1\x00\xf9\x4e\x6b\x61\xa9\x1d\x2e\xe3\x29\x90\xa3\xf1\x61\xbf\xbd\x85\x80\xf5\x53\xe0\x89\xf2\x81\xd3\xaf\xa1\x7b\xca\x26\x67\x97\xb3\xc9\xf9\x93\xca\xe1\xbc\x4e\x65\xb4\x4a\x9c\x12\x97\x97\x1c\x28\xd5\xf4\x53\x7e\x52\x32\x3d\x7b\x65\x59\x06\x00\x80\xef\x7f\xff\xfb\xf0\xf9\xe7\x9f\x0f\x9e\x70\x53\x4a\xcf\xc3\x48\x74\xe3\xa5\xa4\xee\x1a\x03\x1c\x3c\x2b\x53\x14\x45\x3a\x8b\x42\x82\x8f\x74\x66\x05\xf3\xa2\x59\x97\x54\x77\xc7\x4b\x00\xaa\x14\x6c\xe1\x03\xfa\x20\x16\x10\x62\xd1\x84\xc3\x62\x4e\xe2\xff\x0e\x60\x0f\x76\xf0\x8c\x4a\x9a\xaf\x16\x1a\xb4\xb9\xc3\xb2\xd1\x8e\x88\x4f\xeb\x55\xd7\xbf\x34\xfd\x53\x61\x7b\xe7\x98\xc0\x71\x3f\x4a\x1a\xdf\x3b\x51\x16\x8e\x4b\x37\x78\xd9\xa6\xb7\x9f\x25\x5d\x2e\x6a\xe3\xf1\x92\x4e\x0a\x80\x88\xb8\xd4\x77\x00\x80\x01\x68\x49\x96\x84\xd2\x19\x3f\x7c\x44\x3f\x7c\xfd\xeb\x5f\x0f\xaf\x5e\xbd\xda\x67\x46\x8c\xdd\x21\x72\x30\x6c\x2b\xb8\x8d\x46\x74\x0d\xe8\x3a\x95\x05\x14\xc6\xb5\xc3\x34\x1e\xb7\x35\xa9\xdd\x61\xff\xb0\x6e\xdc\xa7\xe0\x7e\x26\x8d\xa3\xfc\xe2\x7c\xa1\x08\xc7\x63\xbf\x2d\xf9\x89\x09\x8f\x83\x58\x3f\x07\x10\xd2\x7b\xa9\x5c\xa8\x7e\x52\x4a\x03\x45\x9c\x1c\xb6\x8d\xf5\x49\xe5\x27\x8d\x27\x9e\xb1\x8c\x1b\xcb\xb5\xfa\x3a\xc8\x17\x69\xc6\x85\x1a\xc8\xb4\x81\x9a\x43\x80\x9a\x6e\x2e\x1e\x87\x81\xd1\xa6\x35\x11\x12\x24\x27\x00\x00\x13\x4c\x49\x44\x41\x54\x33\x2d\x0d\xf2\x5d\x91\x36\x40\x4b\x32\xde\x38\x2f\x4d\xa1\x6b\x4a\x7f\x5c\xf4\x9d\xef\x7c\x27\xfc\xe1\x0f\x7f\x88\xc4\xec\x0b\x00\x6a\x34\xe9\x72\x12\xf4\x1b\x6b\xfb\x4b\x5e\x27\xb3\x31\x14\xa8\x20\x67\x4f\xd0\x72\x11\x29\xc7\x00\x95\x0a\xdb\x6f\xff\x92\xa5\x2e\x12\x7c\x11\xe9\x4e\xd3\x80\xdf\xd0\x12\x09\xcd\x32\xb4\x61\xbd\x57\x79\x89\xe5\x93\x54\x2e\x05\x24\x80\xc0\x4b\x8d\xc3\xe1\x08\x46\x52\x80\x93\xce\xb8\xe0\xfb\x54\xc7\x40\x0e\xd9\xef\x81\x94\xd6\x67\x62\x09\x88\x4a\x77\x1a\x8e\xf3\xa1\x77\xee\xca\xc5\xc5\x45\xb8\xb9\xb9\xa1\x06\x09\xad\x7d\x78\x78\x39\xfe\x31\x3a\x34\x3a\x85\xee\xc7\x98\x3f\x1c\x8f\xc6\x3f\x95\x3e\x4e\x56\x8b\xf7\xa6\x4d\xd3\x61\xa1\xc9\xea\x0f\x05\x5c\xc6\x38\xd6\xca\x00\xd8\x01\x05\x27\xdf\xea\x48\xe5\x72\x0b\x4f\x42\x70\x9a\x2c\x8e\xcb\x01\x00\x99\x12\x66\xed\x38\x52\x05\xd0\x2a\x93\xb5\x32\x6a\x7e\x49\xba\xad\xb2\x96\xb2\x95\x74\x49\xf5\x01\x5f\x5b\x74\x68\x75\x55\xad\x2f\xdf\xfc\xe6\x37\xc3\xdf\xff\xfe\xf7\x08\x30\xf8\xd8\x63\x7a\x32\x2f\x37\x80\x07\xc4\x17\xa8\x6b\xe8\x83\x0c\x7c\xdf\x03\x19\x70\x04\x3b\x3d\x90\xc2\x5d\x53\x3a\x18\x80\x82\x6d\x03\xf5\x8b\x96\xca\x7a\x27\x16\xa3\x81\xb8\x37\x73\x85\xee\x7b\x83\x38\x35\xb0\x27\x4b\x2a\x11\x00\x52\x30\xd2\xca\xf7\xbe\x78\x8c\x36\xb5\xaa\x33\x32\xdc\xf2\x12\x9e\xcd\xa1\x74\xa5\xe0\x04\xfb\x27\x6c\xa4\xed\x01\x93\x83\xde\x74\xe6\x04\x5e\xbc\x78\x11\x3f\xfc\xf0\xc3\xf0\xf2\xe5\x4b\xa9\x7f\xa2\xda\xa8\x14\x0e\xc9\xbd\x65\x20\x4a\xf9\x29\xbd\xb9\x36\x34\x7f\x39\x1e\xce\x06\xd7\x1f\x50\xfa\x01\x85\x61\x5b\x9a\xcd\x54\xc6\x9a\x56\x4c\x9c\x0d\xae\xac\x73\xca\x99\xb2\x67\xe9\x3f\x2d\xe9\xe2\x7c\xb7\xd6\x8b\xd4\x1e\x24\xfc\x60\x8c\xb3\xd6\x93\x7d\x7b\x84\x21\x71\xce\x49\x06\x29\xe3\x16\xb2\x0c\xca\x92\x6e\xef\xa0\xde\xea\xca\xf1\xc5\x42\x56\x7f\x4e\x69\x63\x4a\xbd\x39\xb6\x4e\xe5\xdf\x14\x36\xcd\xbe\x59\x66\x63\x84\x7b\x0c\x04\xda\x6b\x16\xcc\x08\x60\xa4\xe3\x95\x00\x0b\xa1\x93\x03\x2b\xbd\xfb\x64\x46\x69\xe0\x33\x06\x31\x54\x9a\x89\xbd\x1b\x29\x51\x1f\x00\xec\x00\x41\x32\x13\x93\x9e\x57\x12\x91\x1c\xfe\xfa\x71\x07\x70\x84\x25\x25\x6a\xef\x09\xa5\x83\x3a\x46\x7f\x10\xde\xa6\x05\xa7\x01\xa7\x15\xe5\x87\x74\xa2\xad\x34\x78\x48\xe0\xc3\xca\x2b\x01\xa1\xf4\x5a\xfb\xb5\xf8\xa1\xe9\xc6\xe4\x49\xaf\x85\xdf\x9b\x97\x16\x5f\xc7\xa6\xc1\x92\x3f\x14\x71\xe0\x45\x93\x93\xfc\xf6\xa6\x41\xe2\x69\x69\x6c\x99\x61\x5e\x60\xc2\x59\xdd\x96\xa5\x22\xca\x48\x6b\x88\x32\x2a\x15\xba\x56\x21\x24\xbb\x96\x0c\xa4\x90\x1a\xa5\x1f\x08\xfe\x31\x80\x4b\xb2\xe7\xa5\x53\xe9\xf6\x36\x02\x4a\x66\x0a\x3f\xfe\xe3\xa8\xfd\xe8\x23\x31\xe3\xc0\x82\x9b\xe4\x49\x7b\x00\x0c\xb8\x5f\x62\xc6\x06\x03\x9a\x96\xbf\x05\x32\xf8\x35\xee\x81\x9e\xc4\x1f\xbc\x64\x04\x48\x47\xcf\x7f\x7c\x9d\x02\x30\x22\xcd\x31\xe5\x6b\x29\xd9\xef\x01\x40\x80\x84\x94\xa7\xd5\x43\x01\x97\xc4\x46\xef\x9a\x00\x3f\x03\x00\x42\xc9\x22\x50\x44\xcd\x06\xf5\xf6\x3a\xe1\xd9\x14\x94\x9e\xde\xc1\x70\xcf\x9f\x3f\x0f\x2d\x58\xf9\xd6\xb7\xbe\x15\xfe\xfc\xe7\x3f\x5b\x3b\xea\x36\xce\xd5\x81\x8f\x0c\xe7\xfa\xcb\x29\xc0\x80\xd7\xa7\x5c\x00\x30\x95\xaf\x16\xdd\x90\x69\x93\x4a\xb3\x37\xbd\x14\x71\xe5\x76\x0a\x40\x41\xd5\x15\x0f\x98\xb2\xda\xd4\xc6\x6c\x00\xd0\x97\x8a\x2c\xe1\x52\xbc\x05\x84\x58\x07\x42\xad\x50\x2d\x80\x49\xd3\x07\x82\x4e\x00\xbd\xb0\x38\x7e\xea\x5a\xf3\xc1\xd3\x30\xb1\x6d\x2b\x28\xa4\x40\x20\x27\x47\x91\x25\xbf\x2d\x3e\xe7\xf2\xa5\xbe\x8d\xed\xd0\xb0\x2c\x7c\xe3\x1b\xdf\x80\x7f\xfc\xe3\x1f\x83\x7c\x49\xbf\x5e\x8d\x97\x4c\x00\xe5\x55\x02\x40\x52\xd0\x33\xf8\xc2\xf5\x61\xf0\x0e\x00\x40\x01\x09\x6a\x5f\x4a\xc0\xba\x52\xfe\x24\xae\x07\x52\x5a\xfd\xc4\x12\x57\x0b\x3a\x7a\x69\x3b\xf0\xa7\xbe\x92\xe9\xa6\x96\x8a\xd2\x65\x94\x24\x3d\x83\xaf\x19\xc3\xb1\x0c\xd2\xa5\xa3\xc1\x2b\xc5\x84\x4c\x2f\x2c\x59\xfa\x19\x00\xa3\x04\x20\xa5\xa7\xd0\xa6\x5f\x5b\x4e\xd3\xda\xf9\x9f\xfa\x92\x5c\x77\xe1\xed\xdb\x40\xdf\xfd\xee\x77\xbb\x32\xfb\xe3\x1f\xff\x08\xc9\x97\x98\xa5\x41\x0a\x50\x38\xe6\xc7\xbc\x40\xdc\x03\x8a\xa3\x74\x71\xd7\xda\xa0\x4d\xf9\x23\x91\x57\x07\x75\x6f\x95\x97\xc2\x28\xbf\xb8\xbe\x4e\xea\x9f\x29\x92\xf2\x40\xea\x0f\x29\x1e\x0a\x18\x49\xfa\xb4\x7a\x41\xe9\xe1\xca\x58\x23\x6b\xfe\x6a\xf5\x15\xcb\x59\xeb\x93\x34\x5e\x0e\xce\x9d\xb2\x82\x13\xa9\x80\xb5\xc1\x97\xd2\x65\x89\x93\x0a\x10\xdb\xd5\xee\xa5\x74\x58\x07\x50\xca\xdf\x1c\x92\xec\x59\xec\xe4\xd8\xb6\x94\x63\xca\xdb\x52\x6e\x1a\x4f\x41\x63\xf2\x7c\x72\x62\x96\x96\x00\x92\xfc\xe3\x66\x2d\x9a\xe3\xb7\x96\x30\x60\xe9\xe2\x09\xb9\x1e\x20\x61\x64\x39\x90\xc3\xf1\x75\xe1\x08\xb4\xa4\x3a\xd8\xb7\xb2\x0e\x44\x95\x49\x0a\x64\x22\xc1\x4b\xc6\xa3\xe5\x9d\x41\x98\x16\x2f\xf8\x45\x5e\x27\x69\xee\xbd\x7d\x96\xce\xa8\xf0\xc9\xee\xc8\x52\x2f\x2d\x00\x82\xd2\x37\x55\x9d\xd7\xfa\xd7\x5c\x7d\x9c\x6e\x8d\xd7\xab\x9b\x8b\xcf\xf1\x57\xb2\x33\x55\x7f\x6f\x05\x86\x39\xba\x35\xbf\xb4\x31\xf4\xd4\xba\xbd\x65\x6c\xf2\x43\x03\x2e\x12\x7a\xd4\x1c\xb3\x02\x80\xdc\x81\x9b\x1b\x74\x73\x33\x93\xab\x48\x16\xdd\x12\x5f\x7a\xef\x01\x42\x00\xfe\x4a\xa6\xf9\x04\x42\xbc\xa4\x73\xac\x2f\xa7\x90\xc9\x01\xd1\xe9\xb5\xa5\x43\x32\x95\xd7\x0f\x7e\xf0\x83\xf0\xdb\xdf\xfe\x36\x02\x00\xfc\xf8\xc7\x3f\x0e\xbf\xfe\xf5\xaf\xb9\x37\x96\x3a\x3d\xe8\x69\xbe\x77\x30\x1e\xf2\x1d\x5f\x7b\xee\x03\x07\x96\x90\x0f\x3d\x50\x22\x2c\x83\x51\x7a\x5a\x92\xca\x2a\xfd\x38\x60\x0a\x52\xba\x38\x6a\x83\x2b\x5e\x56\x6a\x75\x11\x33\x36\x83\xaf\x25\x4b\xe0\x85\x9b\x1d\x3a\xf8\x07\x00\xfd\x73\x55\xd2\xf2\x4d\xaf\xc1\xfe\x80\x25\x5d\x43\x12\x06\x02\x8f\xd4\xa7\xa4\x69\xf1\xf4\x5d\x53\x81\x0b\x8a\x2c\x20\xe3\x94\x83\x9d\xb5\x0f\x96\x64\x2d\x3e\xe5\xf6\xcd\xdc\x58\xe6\xb5\xa9\x95\xab\xb5\x9f\xcc\x49\xdb\x58\x5f\xb1\x3f\x66\x3f\xb4\xcd\xb9\x63\x07\x7a\x0f\x4d\xa1\xe3\x94\x7a\xa4\x8a\xef\x45\x8c\x2d\xa5\xfa\xac\x0d\xaa\x95\xa3\x74\x49\x3e\x59\x41\xa9\xa7\x22\x8d\xad\xac\x5a\x83\xa5\x1a\x9d\xd6\xe0\xb9\xfa\x4b\xc9\x4b\x7e\xe7\xa6\x27\x7e\xf4\xd1\x47\x01\x00\xe0\x37\xbf\xf9\x4d\x04\xd8\x2f\x2d\x01\xc0\xe0\x09\x9e\xb1\xd3\x11\xb1\xb4\xd3\x86\xf7\x66\x4e\xb8\x19\x17\x45\x86\xd2\xc1\x2d\x6d\x0d\xc0\x0f\x06\x5e\x49\x1e\x0c\xe4\x88\x25\x9a\xde\x52\x8d\xb0\x9f\x84\x94\x49\xd2\x39\xf8\x5a\x72\x6a\x27\xf1\x65\x00\x4e\xa8\x6b\xbc\x91\xf6\xa3\x8f\x3e\x0a\x87\x32\xa4\xda\x99\x54\xcf\x52\x5e\x4b\x9d\x97\xea\x6a\x2a\xcb\xd9\xc5\x71\x38\x8c\xb2\x27\xf9\xa7\xb5\x79\x2a\x3d\x94\x0e\x6e\xb0\xb4\xb4\x5b\xce\x2f\xad\x2f\x00\x21\xde\xd2\xb6\xb1\x0e\xca\x36\x4e\x93\xa5\x4f\xd1\xca\x5a\xe3\xe5\x7c\xd5\xfa\x4e\x4e\x56\xe2\xb1\xf8\xa8\xf9\x24\xa5\x47\xc3\x18\x5a\x7f\xdd\x2d\x15\x59\x91\x8e\xd6\xe8\xbc\xe4\xa9\xac\xda\x20\x0c\x20\xfb\xa1\x01\x06\x2f\x80\xf0\xa4\xdd\x93\x0e\x4b\x67\x64\x95\xd5\x64\xbc\x34\x56\x3e\xc7\x86\xc7\xe6\x18\xd9\x96\x1f\x9c\x32\x22\x2d\x97\xcb\xb0\x5a\xad\x3a\x7d\x1f\x7f\xfc\x71\xf8\xd5\xaf\x7e\xd5\xd3\xaf\xcc\xce\x60\xdf\x7a\x94\x82\x0a\x6e\x79\xc7\xa3\xcf\x10\xe7\x22\xbc\xd1\x95\x20\xe9\x50\xc0\x0e\x70\x70\x60\x26\xb1\xc3\xbd\xed\x33\x58\xea\x49\x37\xd0\x12\xa4\x75\xaa\x1a\x2f\x15\x2f\x51\x6e\x7f\x33\xb5\x4d\xeb\x20\x66\x1d\x80\xac\x40\x61\x2c\x8f\xc5\x3f\x4d\x8e\xb3\x33\xa6\xfc\x38\x40\x34\x45\xdf\x32\x45\x7d\x9c\xaa\x9e\x68\xba\xc7\x96\x25\xc9\x6b\x9d\x71\xe1\x9c\xf6\x54\x0c\x8a\xb8\x81\x82\x2a\x68\xcd\x1f\x49\xd7\x58\x20\x42\xe9\x7e\x88\x41\x5c\xa2\xb1\x83\xf4\xd4\x7a\x34\xbd\x56\x7b\xa7\xf2\xc7\x4b\x52\x07\x07\x28\x6e\xcc\x20\x22\x12\xb7\x11\x98\x98\x4d\x49\x81\x3f\xcb\x8b\xd3\x21\xe8\x94\xf6\xb2\xf4\x64\x25\xd0\x60\x20\x11\x6c\x20\xbe\x00\x0c\xd0\xc1\x61\x78\x3f\xca\xcf\x7e\xf6\xb3\xf0\xe9\xa7\x9f\xe6\x76\xb8\x1c\xe5\x96\xff\x18\xdd\xb9\x03\x6c\x2e\xbf\x77\x40\xf2\x3e\xd4\xe5\x92\x36\xd8\x8d\x29\x57\x6c\xc3\xeb\x93\x14\xe6\x01\x31\xb9\xf5\xca\x0b\x4a\xa4\xeb\xd6\x4f\xcb\xf8\x3b\x65\x1b\x10\x75\x87\x01\xfb\x91\x81\x52\x8a\xc3\xb8\x0e\xbd\xfd\x0d\x8c\x8d\x94\x97\x43\xa5\x38\x8e\xd2\x17\x09\x19\xce\x1f\xca\x7e\x2a\xab\x55\xb0\xd4\x17\x6b\xc5\x08\xc9\x35\x0e\xa3\xfc\xe0\xf8\x38\x9f\x52\xbe\xf4\x9e\x92\xe5\xec\x69\xc0\x0f\xfb\x83\x7f\x29\xdd\x94\x5e\x1c\xde\x12\x95\x0e\x8e\x1f\xa7\x0f\xe7\x97\xe4\x13\x17\x86\xfd\xa3\xfc\xe5\xea\x02\xd5\x71\x72\xbe\x73\x34\xa8\x0f\xed\xd2\x52\x3a\x33\xd0\x1c\xce\x04\xf9\xe4\x93\x4f\x62\x7b\xdd\x0a\x21\xd0\x82\x0f\x77\x1b\x9c\xf4\x7a\xa0\xee\xf8\xfb\x94\x2f\x59\x6e\xc1\xe9\x4c\xff\xd2\xaf\x20\xb7\x5f\x4c\xa6\xf2\xa6\xbb\x6e\x6d\x34\x4d\xd3\x1d\xcb\x0f\xc9\xd1\xfc\xed\x1f\x7e\x73\xa8\xdd\xdf\x92\x2e\x47\xb5\xf9\xd0\xfe\xa5\x61\xed\xac\x13\x00\xc0\x0f\x7f\xf8\xc3\x2e\x6f\x3f\xfd\xf4\x53\x2e\xef\x71\xfd\xc3\xed\x9b\x6a\x93\x52\x3f\xc4\xb5\x51\xae\xdd\x70\xba\x23\x11\x06\x28\x9c\xf3\x0f\xdb\xc1\xb6\xb1\x5f\x5c\xdb\xe1\xfa\x5d\xec\x07\xe7\x93\xe5\x9a\xcb\xd7\x1c\x7d\xd2\x20\xaa\xa5\x87\xca\x0f\xaa\x0e\x70\xb6\x39\x1e\x3c\x6e\xb4\xc4\xd5\x3b\x4c\x54\x1f\x67\x01\x42\x5a\xbe\x4a\xf5\x3e\xe5\xd1\xc6\x4f\xae\x0e\x48\xe9\x90\x7c\x94\xda\x62\x27\xaf\x7d\x64\xd1\x43\x69\xa2\x25\x24\x8c\x65\x80\xe0\xa3\x74\x58\x65\x39\x7f\x24\x3f\xfe\x93\xe9\xbf\x31\x4d\xff\xab\xe4\x2e\x4b\xe3\x32\x93\x34\x9b\x62\x92\xe7\x74\x51\xf7\x56\xb9\x03\x89\xdf\x8f\xa2\xe4\xa8\xb7\x7b\x42\x08\x21\xc6\x18\xf1\xb5\x81\xac\xfd\x54\xce\xd3\xbb\xb7\xef\x39\xa5\x6e\x4e\x76\x0a\xdd\x14\xff\x98\xf4\x7a\xcb\x41\xd3\x6d\x21\x4f\x1a\xbc\xe1\xb9\xfe\x4d\x3d\x76\xe5\xd6\x63\x8b\xbe\x31\xf6\xdd\xbc\xd4\x1e\x97\x1c\xe5\x18\x44\x00\x13\x46\x39\x25\x11\x87\x26\x39\xfb\x00\xc3\x0a\xe7\xa9\x20\x92\xcf\x5e\x7a\x97\x80\xe2\xb1\x82\x99\xc7\xea\xd7\xff\x0c\x11\x9f\x35\x00\xee\x3e\x87\x24\x1d\x1c\x78\xa2\x80\x48\x3a\xdb\xf4\xe4\xc9\x93\x70\x7b\x7b\xdb\xbb\x4e\xc3\x08\x9a\x7a\x80\xd3\xfa\xc7\x31\x03\x42\xee\x20\xf8\x2e\x80\x8b\x07\x50\x3c\x14\x70\xb1\x3e\xe4\xe6\xd8\x19\x03\x5c\x72\x75\xe7\xea\xe3\x74\x4f\x0d\xbe\xa6\x02\xe3\x94\xac\xc4\x0b\x92\x2d\xf7\xd3\x97\x40\x01\xfd\x5a\xe3\x38\x5e\x89\x5f\xe3\xc1\xf6\xa8\x5f\xac\x23\xa0\x70\x8a\x97\x92\xc1\xf2\x9a\xaf\x9c\xef\x96\x74\x4b\x7e\x49\xfe\x6a\x69\xe5\xe2\x24\x39\xcd\x77\x4b\xfe\x71\x3e\x72\x34\x26\x8f\xb5\xf2\xa2\xe2\xac\x79\x89\xef\x2d\xe5\xc7\xf9\x66\xe1\x23\x6d\x3c\x7b\xf6\x2c\xe0\xfb\xf6\x8f\x73\x06\xc7\xb5\x40\x27\x05\x3c\xd4\x2c\x4f\xbb\xbc\x45\xf1\xa7\x3a\x39\x9f\xd2\xb8\x36\xec\xec\xec\x4c\xab\x5f\xd6\x32\x00\xe2\xde\x94\x87\x02\xbf\x95\xcf\x93\x06\x8b\x2f\xd6\x7a\xa0\xf9\x28\xd5\xb1\x29\xd2\x40\xf9\x20\xf5\x23\xf8\x5a\xe3\x97\xda\x15\xd7\xb6\x35\xbf\xac\xfa\xb1\x0e\xa9\xce\x59\xd3\xe0\xa9\xd3\x5c\x1a\xf0\xbd\xb5\x5e\x48\x3e\x4b\x75\x44\x2b\x2f\xe9\x9a\xfa\x95\xfc\x18\xf8\x2e\x29\xa1\xee\x71\x9c\x14\xcf\xe9\x90\x2a\xbf\x95\x2c\x0d\xd3\xa2\xc3\x52\x49\x25\xd9\xa9\xf9\x73\xf3\x86\x2b\x7c\xab\x7d\x2e\xde\xd2\x11\x7a\x48\x93\xd1\xd2\xa1\xc9\xe6\xf8\xe4\xb5\x71\x4a\x7e\xaf\xae\xc9\xd3\x7b\x79\x79\x39\x99\xce\x10\x82\xd4\x29\x51\xd7\xd6\x78\x2b\x7f\x6e\x7d\xb3\xea\xb3\xf4\x6d\x39\x36\x35\x1a\xeb\xb7\x64\x6f\x8a\x34\x8c\x29\x3f\x0b\x79\xec\xe4\xf2\x78\xe4\x1e\x43\xbf\x33\x45\x9e\xe4\xd6\x19\x0b\x79\xf2\x58\xf5\x9b\x42\x38\x92\x61\x0d\xe8\xe4\x12\x8b\xac\x4e\x2c\x8f\xe5\x38\x20\x43\xa5\xdb\x92\x5f\x9c\x2d\xcd\x9f\xb1\x83\xb6\xb5\x43\xf5\xf8\xef\xf5\xc7\x1b\x4f\x95\x85\xc5\x8e\xd5\xcf\x53\x00\xad\xc7\x4a\x63\xca\x35\xb7\x0e\x6a\x34\x05\x88\xf0\xf2\x53\x69\x99\x0a\x14\xe5\xca\x79\xae\x73\x07\x98\x53\xe8\xd6\xfa\x44\x4b\xdc\x54\x69\xd0\x68\xea\xfc\x99\x4a\x77\x8e\x1f\xd4\xb5\x54\xaf\xa7\x6a\x3b\x1a\x4d\x51\xbf\x39\x9b\xb9\x3e\x89\x64\xcd\x20\x4b\xc5\x1e\x6b\x43\x8b\xe3\x0a\xd8\xd3\x99\x59\x1a\x9f\x07\x34\x68\xe9\xc8\xf1\x0d\x0f\xfa\x94\x5e\x8a\x4f\x92\x93\x40\x04\x96\xb1\xe4\x89\x37\x1f\x29\x59\x6b\x5d\xb2\x96\x11\x95\x1f\x9a\x4e\x4d\x4f\x7a\x2f\xd5\x3f\xca\x0e\x15\x47\x95\x93\x64\x97\xd2\xe5\xf1\xdb\x42\x9e\x3a\xc9\xe5\x83\x24\x63\xb1\x83\x6d\x50\xf7\x94\x1f\x9c\x1d\x2e\xdf\x25\x7e\xce\xb6\xd5\x8e\xa5\xee\x59\xcb\x9e\xf3\x2d\xa7\xbe\x58\xdb\xbb\x54\xb6\x9a\x7f\x9c\x7d\x4f\x9d\xa6\xf4\x49\x79\x9a\xdb\x96\x28\x59\xce\x3f\x8f\x5f\x14\x49\x32\x52\xbe\x71\xe1\x9e\x7a\xae\xf9\x8d\x7d\xd4\xec\x48\x75\x0a\x93\xc5\x26\x99\x77\x9a\x62\xac\x1c\x1b\xd1\x64\x2c\x64\xa9\x18\x52\xbc\xe6\x93\x27\x23\x25\x1b\x39\x32\x39\xf9\x94\x63\xd7\x43\xb9\xfa\xd9\x4a\x24\xe8\x9d\x2a\x2d\xb9\xba\xa5\x4e\xe9\x3f\x8d\x4e\x9d\x96\x53\x94\x55\x6e\x3f\x21\x75\x98\x92\xac\x57\xce\x53\x97\x73\xed\x68\x83\x32\xc5\xaf\xc9\x79\xc9\xd3\x87\x5b\x06\x65\x8e\xdf\xab\xcf\x7a\xad\x85\x59\x6d\x72\x3c\x94\x6e\x4d\x2e\xb7\x5c\xbd\x3e\x49\xe4\x05\x1b\xda\x35\xd6\x69\xf5\x2f\xb7\x7d\x65\xb5\xd1\x9c\xc1\xdc\xea\x44\x8e\x0e\x6b\xa7\x14\xd0\x9f\x45\x86\xb3\xc3\xc9\x69\x32\x54\xfc\x14\xa0\xc8\x02\xbe\x72\x6c\x58\x3b\x97\xc7\x3c\x20\x4e\x49\x8f\xcd\xa7\xc7\xe6\xcf\x63\x26\xef\xc0\x65\x8d\xf3\xb4\x01\x6b\xdb\xf2\x80\x2b\x8f\x8e\xa9\xe9\x94\x7d\xcb\x29\x69\x4c\x5e\x9e\x2a\x0d\xa7\xce\xcb\x5c\x10\x77\xaa\x72\xf2\x8e\xa7\x56\x3d\x93\x09\x6b\x60\x02\x87\x4f\x81\x8c\x73\x2b\x97\x65\xa0\xe7\x2a\x00\xf6\x1b\x87\x71\x40\x45\x43\xbd\x16\x94\xc9\xd9\xc2\xbc\xd8\x9e\x64\x9f\x4a\x8b\x25\xdf\x25\xbe\x1c\xa0\xe6\x6d\x40\x5a\x1e\x53\xe1\x9a\x8d\x1c\x3f\x24\x1b\xd2\xbd\x66\x93\xf3\xd9\x03\x32\xbd\x75\xd0\xaa\x03\xfb\xe7\xe9\x50\x2d\xf5\xdc\xe2\xab\xd6\xee\x3c\x65\x99\xdb\xcf\x78\xda\xb1\xe4\x0b\xd7\x96\x3c\x61\x96\x72\x95\x28\xa7\x5c\x28\x79\x2d\x8c\xd3\x65\xcd\x37\x4b\x5e\x4a\x36\x2d\xba\x3c\x7a\x25\xfd\x38\x5e\xaa\xa3\x94\x2e\x4b\x1d\xe2\xf2\xc2\xda\xde\x28\xfd\x94\x1e\x8d\x2c\xfd\xd8\x94\x6d\x7f\x20\xaf\x65\x04\xe5\x28\x77\x4f\xc9\x69\x64\x6d\xf0\x9a\x7e\x4b\xc7\x35\x45\x83\xe7\xf4\x4a\xe1\xb9\x79\xa3\xe9\xb7\xc6\x4f\x69\xeb\xb1\xd2\x63\xcd\x83\x29\xeb\xd9\x14\x34\x85\x0f\x53\xd7\x63\x4f\x9b\xf4\x80\x0a\xaf\x4f\x16\x39\x6d\x10\xf0\xa6\x21\xbd\xd7\x06\x12\x6f\x7a\x73\xed\x58\xec\x73\x64\xe9\x83\x4f\x19\xae\xf1\x7a\xf4\xe1\x01\xd8\xa3\xc3\x32\x58\x4b\x61\x56\x3b\x69\x58\x2e\x10\x19\x93\x3f\x9e\x6b\x4d\x36\xab\xac\x2d\x9d\x8a\x35\x63\xac\x89\x94\x80\x10\xa7\xcb\x6b\xef\xb1\x0c\x1c\xa7\x02\x47\x38\xce\x5a\x09\xc6\x74\xf4\x16\x5f\x2c\x65\x2b\xf9\x61\x05\x7b\xb9\x1d\x98\x25\x7e\xcc\x00\x3d\xa5\x5f\x5e\x99\x77\x09\x4e\x4e\x69\x53\x2b\x1f\xab\xcf\xde\xb4\xe5\x76\xe6\x63\xc2\x29\x3e\xef\x20\xa0\xb5\x71\xcb\x80\x39\xc5\xa0\xe6\xd5\xfd\x2e\x6c\x5a\xf4\xa4\xf1\x9e\x7e\xd4\xd3\x1f\x4c\x51\x37\xa7\x00\x7b\x1e\xfe\xb1\xed\xf2\x5d\x8e\xcb\xa3\x51\xa0\x75\x30\x9c\xa2\x02\xe4\x02\x24\x8f\x0f\x54\xe5\xd6\x3a\x13\x2f\x48\xa4\xf4\x59\x3b\x38\x7c\xaf\xe5\x17\x95\x16\x8b\xae\x31\x0d\x9b\x4b\x2f\x97\xaf\x96\x32\xd4\xfc\xa6\xca\xc0\x5a\x97\xac\xf9\xa9\xc9\x5b\xeb\x4d\xce\xc0\xad\xb5\x53\x4f\xfe\x48\x7c\x9c\xbd\x20\xfc\xe1\x78\x10\x7e\xbd\x3e\x4a\x72\x9c\x2f\x14\x0f\xe5\x23\xe7\x0b\xc5\xcb\xd5\x53\xcd\x8e\x94\xbf\x16\x1e\x4d\xce\xe2\x93\xa5\xcc\xb9\xf2\xd3\xf8\xa9\xeb\x29\xec\x70\xbc\x96\x7a\x49\xd9\xe4\x7c\xca\x29\xa7\x9c\x7a\x61\x69\xf3\x9a\x1d\xce\x27\x4f\x1b\xa3\x7c\xd6\xda\x18\x25\x2b\xb5\x41\x53\x7a\xad\x0d\x51\x0b\x97\x9c\xa6\xc2\xb5\x84\x5b\xe4\x38\x79\x4b\xa6\x7a\xec\x6b\x7e\x79\xf8\x72\x64\x1e\x9a\xde\xa5\xed\xaf\xe8\xbf\x9b\xbc\x03\x83\xa6\x03\x87\x7b\x3b\x61\xec\x87\xc5\xa6\x65\xd0\xf4\x84\xe7\xe6\x09\x35\x18\x59\xfc\xb2\xc8\x59\x7c\xe5\x78\x34\x39\xcf\x18\x32\x46\xb7\xb7\x1f\xb3\x8e\x43\x63\xae\xc7\xd4\x13\x0f\xe5\xd6\x3b\x4e\xf6\x94\x75\xdd\xa2\xe3\xc1\x69\xac\x23\x52\x67\x32\xc6\xa6\x84\xee\x34\x3f\x34\xa0\x24\x81\xa5\xa9\x81\x8b\x84\x64\xb1\x3f\x96\x0e\x7a\x0c\x79\x3a\xd8\x9c\x4e\xd6\x1b\x26\xc5\x8f\x05\xb4\xb9\x60\x54\xeb\xc0\x28\x3f\xbc\x94\x23\x6b\xc9\x1f\x4d\xb7\x56\xef\xa9\x7a\xc8\xfd\x7a\xe5\x34\x1e\xc9\x27\x8f\x0d\x6f\x1a\x38\x1f\x00\xc5\x61\x7e\xeb\xbd\xe4\x13\x65\xcb\xe3\x8b\xe4\x03\xd6\x69\xcd\x1f\xab\x3f\x5a\x7e\x6a\x36\xc7\xe4\xcf\x14\x3e\x49\xfc\x56\x9f\x28\x7e\xc9\x17\xec\x93\xa4\xdf\xd2\x76\x28\xca\x6d\x33\x39\xfc\xac\x4f\xb9\x09\xc4\x89\xb0\x84\x79\xee\x35\x9f\x2c\xb6\x2c\x99\x6f\xe5\xf7\xfa\xa5\xc9\x5a\x3a\x0f\x2d\x4c\xb3\x21\x85\x5b\x6d\x8c\x49\x67\x0e\x69\x79\xc3\xc9\x9c\x9a\xac\x36\x72\x7d\x79\xa8\xfc\xb5\x52\x4e\x39\x68\xfa\x2c\xf1\x5c\xa7\x8b\x79\xb5\xfa\x6d\xf1\x43\xb3\x63\xe1\xb1\xe8\xb3\xe4\xa3\xc7\x8e\xc7\xbe\xb5\x9f\xd5\x74\x5b\x78\x2c\x7d\xb5\x76\xed\xe1\x9f\xca\x0e\x25\x6b\xa9\x8f\xde\x34\x4c\xa1\xc3\x93\x27\x53\xe8\xe3\x68\x4c\x99\x51\x63\xaf\x45\xb7\x99\x49\x72\x02\x1b\xb7\x0e\x70\x39\x03\x00\xb6\x67\x91\xb3\x82\x12\x6f\xe3\xb4\xd0\xd8\x4e\x35\x40\x5e\x9a\xc7\xf2\x70\xbe\xbc\x0b\x7a\x6c\x03\x39\xc0\x69\x7c\x7a\x4c\xa0\xcb\x2b\xeb\xa9\x23\x96\xbe\x64\x2a\x7d\xa7\x90\x4b\x79\x28\xff\x73\x74\x7b\xf8\xa7\x06\x45\xa7\x04\x5c\x5e\xdd\xb9\xbe\x4c\xa1\x83\xe3\x19\x53\x07\x3d\x3c\x53\x97\xc3\x18\x39\x2d\x0d\x53\x97\x9f\x45\xb7\x8b\xa6\xec\x4c\x25\x87\x3d\x09\xce\xf1\xc9\x03\xa6\xb8\xce\x93\x03\x68\x94\x1d\xac\x8f\xe3\xb1\xc4\x7b\x64\x72\x2a\x88\x15\x18\x59\x40\x54\x4e\x03\xb6\x34\x68\x89\x47\x1b\x50\xa9\xf4\x4a\x94\xd3\x10\xa5\x01\x8c\x2b\x2f\xa9\xae\x71\x7e\x4a\xf9\x63\xcd\x23\x4b\xbd\xf0\xe6\xa9\xa4\x8f\xd2\x29\xa5\x5f\xca\x3b\x2d\xfd\x9a\x1d\xc9\x37\x8f\xbf\x94\x0f\xf8\x57\xea\x47\x2c\x36\x24\x3e\xca\x6f\x6b\xb8\xe6\x27\x97\x2e\x4b\xbb\xd3\xea\x3b\x67\x53\xaa\x4f\xde\x7a\x40\xc9\x69\xed\x51\xd2\xc9\x91\xd4\x66\xad\x6d\x5e\xf2\x07\xeb\xd1\xf2\x95\xb2\x2f\xd5\x29\x8a\x4f\xb2\x43\xf9\x23\xf1\x48\x65\x6e\xcd\x1f\xce\xce\x20\xbf\x2c\x05\x65\xb9\xb7\x54\x74\xab\x2d\x4b\xa5\xa5\xe4\x3d\x95\xc1\xea\x9b\x54\xb8\x9c\x9c\xd6\x21\x70\xe4\xf1\xcb\x4a\x96\x06\x3f\x85\xce\x87\xd2\x93\x53\x2f\xc6\xd8\xc8\x25\xab\x8e\xa9\xf2\xf2\x21\xf4\x5a\xea\x70\x8e\x7d\x4b\x99\x4a\x1d\x1b\xa7\x47\xeb\xaf\x28\x5d\x9e\xb4\x79\xf3\xd8\xea\xb7\x35\xde\x9a\x6f\xf8\xda\xab\x83\x23\xad\x6f\xcc\xb1\x49\xf5\xcf\x96\xb4\x59\x74\x7b\x78\x3c\x72\x53\xe7\x3d\x27\xe7\xb1\x3f\x26\xed\x53\xfa\x2d\x11\xa7\xdb\x94\x1e\x4b\x47\x21\x29\xb7\x74\x0e\x54\xbc\x94\x21\x52\x82\x28\xdb\x9c\x0f\x5a\xa7\x74\xca\x4e\xea\x21\xf5\x79\x75\x9e\x02\x1c\x4d\x05\xb0\x72\xf5\x3c\x06\x20\xe6\xb1\x35\x66\xc0\x18\x63\x77\x2a\xbe\x5c\xd9\xdc\xc1\xa6\x8d\xb3\x74\xe0\x63\x06\x18\xca\x9e\xc4\xaf\x75\xbe\x5e\x9b\x1a\xef\x18\x7d\xa7\x04\x45\x53\xe8\x98\x62\x40\xb4\x8c\x59\x16\xfe\x29\x7c\xca\xe9\x9b\xad\xba\xad\xf2\x56\x7d\x53\xb4\xa9\xdc\xeb\x6c\xf0\x63\x01\x18\x16\x27\xbc\x99\x3c\x65\xe7\xad\x55\x9e\x1c\x80\xc6\xf1\x71\x3a\x31\xb8\xc2\xfc\x16\xf2\x36\xb6\xf4\x9e\xab\x14\x38\x5e\x1b\x1c\x38\x39\x4a\x87\xb7\xc3\xe4\xf2\x9b\xe2\x91\xca\x85\xf3\x43\xf3\x4f\x4b\x8b\x25\x6f\x31\x69\x71\x5e\xd9\xdc\xce\xd2\xa2\xcb\xd2\x1e\xf0\xb5\x16\xc6\xd9\x91\xee\xa5\x70\xcb\xbd\x55\x4e\x6a\x87\x39\xed\xc5\x5a\x47\xb8\x3c\xb0\xe6\x8d\xe4\x97\xe6\x07\x77\xad\xa5\x3f\xa7\x2c\x72\xda\x10\xd5\x3f\x72\xfc\x5a\x59\x7a\xca\x16\xeb\xb1\xd8\x97\x6c\x53\x71\x9a\x0e\x89\xbc\xe5\x94\x53\x97\xb8\x3a\xa8\x5d\x63\xff\xa8\xf8\xb1\x3a\x3c\xf5\x5b\x0c\xf4\x34\x66\x51\x39\xc3\x23\x55\x1e\x4a\xde\xd3\x98\x4c\x89\x36\xd8\x1c\x43\x56\x79\xca\xdf\x29\xfd\xb0\xfa\xf0\x2e\xf5\x5a\xd3\xff\x10\x79\xf1\x10\xa4\x95\x39\xe6\x7d\x8c\x64\x4d\x83\xa7\xaf\xb0\x74\xbc\x16\x3b\x52\x98\xc5\x0f\x2b\x8f\xc6\xeb\xd5\x2d\xf5\x61\x39\xf6\x73\x79\xc7\xf8\xad\xd9\xf0\xda\xcc\xf1\x23\x47\xf7\x43\xe4\xdb\xd4\xf5\x84\xb3\x91\xa3\x7b\xaa\xfe\x48\x2a\xef\xdc\x36\xea\x62\x90\xc2\x3d\xce\xe5\x74\x6e\x52\x41\x5b\x7f\x29\x7d\x16\xd2\x3a\x47\x8b\xbe\x29\x07\x1b\xef\xc0\x3d\x45\xc7\x30\x05\x69\xa0\xd4\x03\x5a\x1f\x92\xde\x05\x90\xcc\xe9\xdc\x73\xfd\x18\xab\xc3\x2b\x93\x6b\x6f\x8c\x9f\x5a\x1f\x30\x75\x1b\xb1\xd4\xe1\x29\xfa\x8d\xb1\xf9\x90\x23\xe7\xc9\xb7\x53\xfb\xa7\xf5\xf5\x9c\xee\x53\x95\xab\x97\xdf\x5a\x4f\x3c\x76\xa6\x06\x5c\xda\xf8\xee\xa5\x87\x6a\xf3\x2e\xca\x19\x48\xa5\xc2\xb1\x02\xa2\x1c\x3e\x4e\x86\xf3\x27\xa0\x3f\x1c\x4e\xf1\x78\x6c\x5b\x80\xd7\xd8\x4a\x97\xeb\x0f\x95\x3e\x8f\x7e\x8d\x38\x5b\x9a\x2e\x29\xef\x25\x1d\xd4\xb5\x37\xde\x9a\x67\x9c\xec\xd8\xb2\xb0\xfa\xec\x49\x9f\x26\x87\xfd\x92\xc2\x72\xaf\xbd\xe9\xc8\x95\xd3\x7c\xb0\xa4\x2f\xa7\xad\x72\xf9\x2a\xf9\x2c\x95\x87\xd5\x0f\xad\x7d\x60\x1a\xdb\xff\x48\xe9\x90\xfa\x11\xa9\x4d\x5b\xf3\x9b\xf2\x87\xbb\xb6\xe6\x81\xa5\x6f\x91\xea\x8f\x45\x0e\xcb\x52\x76\x39\x1d\x16\x3f\x2c\x65\xe6\xb1\x61\x6d\x7b\x5e\x39\xab\x0f\x22\x69\x99\x66\x6d\x08\x92\x51\x6b\x27\x61\xa9\x64\xf8\xde\x52\x78\x9a\x6e\x89\x72\xe5\x1e\x9b\x0d\x8d\x3c\x65\xfc\x15\x7d\x45\x1c\x9d\xb2\x9d\x79\x3a\x37\x2f\xaf\xa7\x13\xb5\xf4\x3d\x9e\xf4\x8c\x49\xbb\x67\xe0\xce\x1d\xfc\xa7\xd2\xed\x0d\xcf\x1d\xec\xde\x85\x6e\xca\xce\xd8\x72\x95\xf4\x58\xe4\xbc\x36\xc7\xf2\x5a\x79\x4c\x72\xff\x0f\xf9\x63\xeb\x7e\x2d\x7e\x67\x93\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x08\xf7\xe8\xd3\xa5\x14\x03\x00") -func web_uiStaticMstile310x310PngBytes() ([]byte, error) { +func web_uiV1StaticMstile310x310PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticMstile310x310Png, - "web_ui/static/mstile-310x310.png", + _web_uiV1StaticMstile310x310Png, + "web_ui/v1/static/mstile-310x310.png", ) } -func web_uiStaticMstile310x310Png() (*asset, error) { - bytes, err := web_uiStaticMstile310x310PngBytes() +func web_uiV1StaticMstile310x310Png() (*asset, error) { + bytes, err := web_uiV1StaticMstile310x310PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/mstile-310x310.png", size: 201893, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/mstile-310x310.png", size: 201893, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticMstile70x70Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x2b\x6d\xd4\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x7b\x70\x1b\xd7\x79\xef\xef\x9c\x5d\xec\x02\x20\x16\x04\x01\x10\x24\x20\x3e\xa0\x17\x29\xcb\x90\x2c\x1b\x7e\x51\x71\x43\xc5\xb1\xe5\xc4\x95\xe3\x1b\xc5\x49\xa3\xb6\xa9\xfa\x98\xea\xf6\xde\x3e\x72\xd3\xde\x4e\xa6\xcd\x74\x32\x99\xde\x4e\x26\x93\xe9\x6d\xd3\xdb\x34\x13\xb5\x79\x28\x69\xea\x3c\x5a\x25\x8e\xed\xc4\xaf\xd8\x96\xe3\x48\x7e\x88\xb2\x1e\xb4\x2c\xc2\xa4\x44\x52\x14\x48\x42\x20\x08\xe2\xb9\xbb\xd8\x3d\xe7\xfe\xb1\x80\x44\x51\x7c\x80\x14\x5f\x4a\xf8\x9b\x59\x13\x23\x63\x1f\x38\xdf\x6f\xbf\xf3\x9d\xef\xfb\xce\xf7\x01\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\x6b\x58\xc3\x1a\x7e\xb5\x40\x56\xfa\x01\x96\x0b\xd1\x68\x94\x02\x40\x30\x18\xbc\xe6\xdf\xc7\xc6\xc6\xa0\xeb\x3a\x00\xa0\xab\xab\x8b\x2d\xff\x93\xad\x2c\x7e\x69\x08\x10\x8d\x46\xa9\xcf\xe7\x83\xcf\xe7\x83\xa2\x28\x00\x40\xcb\xc7\xd4\xcf\x98\xf2\x99\x4d\xf3\x97\x01\x80\xa6\x69\x6c\x6c\x6c\x0c\x63\x63\x63\x38\x76\xec\xd8\x2f\x25\x39\x6e\x5a\x02\x74\x74\x74\xd0\x60\x30\x08\xbf\xdf\x5f\x11\x2e\x05\x20\x82\x43\x14\x19\x91\x6a\x74\xc1\xed\xd2\x84\x40\xad\x2a\x36\xc9\x06\xf1\x3b\x4a\x82\xd7\xa1\xd3\x5a\x91\x11\x3b\xe5\x44\x22\x1c\x94\x51\xae\x9b\x04\xba\x6a\x63\x19\xd5\x66\x4e\xa8\x22\x4b\xe6\x64\x73\x24\x2b\x9b\xf1\xac\x6c\xa4\x74\x91\xab\x9c\xc0\x00\xae\x1c\x4c\xd3\x34\xd6\xdf\xdf\x8f\x23\x47\x8e\xfc\x52\x10\xe2\xa6\x22\x40\x67\x67\x27\x0d\x87\xc3\x90\x65\xd9\x12\x36\x20\xd9\x4c\x62\xf7\xe5\x6d\x4d\x8d\x19\x69\x47\x63\x56\x8a\x7a\xf3\xb6\x2d\x1e\x55\xdc\x24\x9a\x24\x40\x40\xec\xf3\xfd\x81\xdc\xfa\xaf\x61\x12\xa4\x8b\x92\x39\x98\xac\x29\x9d\xbb\xec\x2a\x9d\x19\x51\xb4\xe3\x09\xa5\x14\xcb\x49\x66\x06\x04\x3a\xca\x84\x48\x26\x93\xac\xbb\xbb\x1b\xb1\x58\xec\xa6\x24\xc4\xaa\x27\x40\x34\x1a\xa5\x6d\x6d\x6d\x50\x14\x85\x02\x90\x00\x48\xb5\x45\x31\xb0\x3e\x65\xdf\xd9\x9a\xb2\xbf\x2f\x98\x91\xef\x93\x0d\xd2\x42\x40\xc4\xa5\x7c\x0e\x0e\xc0\x24\x3c\x35\xee\x2c\x9d\x18\xac\x53\x7f\x7e\xc1\xab\xbe\x38\x5c\xab\xc5\x4c\x8a\x02\x00\x1d\x00\xeb\xe9\xe9\x61\x37\x9b\x66\x58\xb5\x04\xe8\xec\xec\xa4\xed\xed\xed\x57\xde\xf4\x1a\x8d\xfa\xdb\x13\x35\xbb\x37\x5f\x76\x3c\x1a\xc8\x49\x3b\x05\x4e\xdc\x2b\xf9\x7c\x1c\xdc\x28\xd8\x58\xac\xcf\x5f\xfc\xc9\xb9\x40\xe1\x87\xc3\xb5\x5a\x8c\x13\x8b\x0c\xd9\x6c\x96\x75\x75\x75\xdd\x14\x5a\x61\xd5\x11\x60\xcf\x9e\x3d\x34\x14\x0a\x51\x00\x12\x61\x70\xb6\xa4\xed\x3b\xb6\x0d\xd7\x7c\x22\x9c\xb2\x3f\x2c\x30\xea\x5f\x75\x0f\x0c\x8b\x0c\xe3\x4e\xe3\x8d\xee\xc6\xfc\x77\xce\x35\xe4\x7f\x52\x90\x58\x0a\x80\x9a\xcd\x66\x8d\x58\x2c\xb6\xaa\x57\x17\xab\x66\x3c\x27\x0b\x5e\x30\x89\x7b\x4b\xc2\x79\xff\xed\x97\x5c\xff\xdd\x97\xb7\xed\x5c\x6a\xf5\xbe\x98\xd0\x04\x16\x3f\xd7\x90\xff\xd6\x5b\xeb\x72\xdf\x4e\x3b\x8d\x21\x94\x89\xb0\x5a\x35\xc2\x8a\x13\xa0\xa3\xa3\x83\x6e\xdb\xb6\x8d\x02\x90\x28\x83\xeb\x96\xd1\x9a\xdd\x77\x0d\x2a\x9f\xac\x55\xc5\x3b\xc9\xca\x3f\xde\x82\x61\x50\x9e\x7a\x27\x90\xff\xe6\x9b\xad\x99\x7f\xcd\xd8\xcd\x38\x00\x35\x99\x4c\x1a\x87\x0f\x1f\x5e\x55\x24\x58\xd1\x11\xde\xb7\x6f\x1f\x55\x14\x45\x02\x87\xb3\x75\xdc\x7e\xf7\x7d\xe7\x6b\x3f\xe3\xcf\xdb\xee\xbb\x99\x05\x3f\x15\x3a\x65\x89\xb7\x9a\xb2\x5f\x3a\xd1\x9c\xfd\x77\x4d\xe4\x49\x00\xfa\x99\x33\x67\xd8\x6a\xf1\x2b\xac\xc8\x48\xef\xde\xbd\x9b\x86\xc3\x61\x0a\xc0\xe9\x2e\x0a\x4d\x9d\x7d\x75\x9f\xde\x30\x66\xff\x38\x01\x91\x56\xe2\x79\x96\x1a\x1c\x40\x56\x36\xba\x5f\xdd\x90\xfe\x6c\xac\xbe\xf8\x0a\x08\x72\xd9\x6c\x56\x7f\xfc\xf1\xc7\x57\x9c\x04\xc2\x72\xdf\x70\xdf\xbe\x7d\xb4\xa1\xa1\x41\x22\x1c\x9e\x1d\x97\x5c\x8f\x3d\xfc\x8e\xff\x6b\xf5\x79\xe9\x3e\x02\xb2\xec\xcf\xb2\x5c\x20\x00\x64\x93\x06\x36\x25\x1d\x1f\x09\xe4\xa4\xa6\x78\xad\x76\x86\x38\x6d\xc5\x68\x34\xca\x00\x60\x78\x78\x98\xaf\xd4\xb3\x2d\xdb\xa0\x47\xa3\x51\xfa\xc8\x23\x8f\x08\xb2\x2c\x3b\x5c\xaa\x10\x7e\xf8\x1d\xdf\x17\x6f\x8b\xbb\xfe\x52\xe4\x74\x45\x97\x73\xcb\x09\x02\x42\xbd\x45\xdb\xf6\x2d\xa3\xce\x87\x27\xec\xc6\xf9\x94\xd3\xb8\x14\x0a\x85\x4a\xc0\xca\x91\x60\x59\xa6\x80\xb2\xca\x17\x01\x38\xc3\x63\xf6\xfb\x76\xf7\x78\xff\x9f\xb3\x24\x84\x97\xfa\xbe\x1c\x1c\x8c\x80\x69\x22\x53\x55\x91\xa9\xaa\x8d\x15\x74\x81\xeb\x8c\x72\xc6\x00\x26\x70\x88\x36\x93\x88\xb2\x41\xed\x8e\x92\xe0\x94\x0d\x62\x17\x19\x11\x81\xa5\xb7\x42\x18\xb8\x7e\x3a\x94\xfb\xbb\x97\x37\xa7\xff\x11\x40\xee\xe0\xc1\x83\x2b\x32\x1d\x2c\xf9\xf2\x6a\xef\xde\xbd\xd4\xef\xf7\x4b\x84\xc3\x7d\xf7\x80\xfb\x77\xef\x1e\x74\x7f\x56\xe0\xc4\xb9\xd8\xf7\xe1\xe0\xd0\x05\xae\x26\x6b\x4a\xc9\x11\xb7\x36\x74\xd9\x55\x8a\xa7\x9c\xa5\x78\x56\x36\x53\xaa\x8d\x4d\x70\x40\x2d\xbb\x70\xaf\x04\x7b\xca\x10\xc1\x21\x12\xc0\x6e\x33\x89\xd3\xa5\x09\xf5\x9e\xa2\x2d\x50\x9f\xb3\x85\x1a\xb2\x52\x53\x43\x4e\x6a\x74\xea\xd4\xb5\xd8\x94\x20\x80\x94\x93\xcd\x1a\x00\x4e\x00\x85\x29\xcf\xb4\x6c\x58\x52\x02\x54\xac\x7c\xd1\x24\x81\xdd\x3d\xde\xcf\x6e\xbe\xec\xf8\xfd\xc5\x1c\x48\x0e\x8e\xb4\xc3\x48\x9e\xf7\x15\x7b\x07\xbc\xea\xd9\x11\x45\xef\xd3\x45\x9e\x00\x90\x29\x1f\x85\xf2\xa1\x97\x0f\x03\xd7\x12\xc0\x0a\x22\x11\x50\x0e\x48\xba\xc8\xa5\x94\x68\xd8\x53\x35\x86\xf3\xbc\xbf\xe8\x06\xe0\xa6\x0c\x5e\x7f\xde\xb6\xbe\x65\xdc\xbe\x65\xc3\x98\x63\x4b\x43\x56\x0a\x09\x9c\xd0\xeb\x9f\x66\x7e\x38\x17\x28\x1c\xed\x6a\xce\x3e\x8f\x15\x12\x7c\x05\x4b\x46\x80\xfd\xfb\xf7\x53\x59\x96\xed\x0e\x9d\x36\xed\x79\xdb\xff\xa5\x50\x46\xfe\xc0\x62\x88\x9e\x03\x28\xda\xcc\x5c\x4f\x7d\xe1\xec\xb9\x86\xc2\x1b\x97\x5d\x7a\x0f\xa3\x48\x00\x48\x02\x48\x03\xc8\xc1\x12\xba\x8a\x49\x51\x3c\x5c\xff\xe6\x4f\xc6\xe4\xb0\xb1\x58\x3e\x24\x00\x4e\x46\xe1\x4a\x28\x25\x4f\x42\x29\x79\x8f\x37\x67\x03\xb5\xaa\xb0\x7e\xf3\x65\xe7\x9d\x5b\x47\x6b\x76\xd4\x15\x44\xff\x42\x08\x7d\xb9\x46\x1f\x7a\x69\xf3\xf8\xd7\x38\xc1\x10\x80\x5c\x36\x9b\x5d\x31\x12\x2c\xc9\x54\x57\x11\xbe\x4b\x13\x36\x3c\x7a\xc6\xff\xd5\xfa\xbc\xb4\xf3\x46\xaf\xc9\xc1\x31\x56\x53\x4a\xbc\xb5\x2e\x77\x34\x56\x5f\x38\x56\x12\xf9\x20\x80\x11\x5c\x15\x7c\xe5\x4d\xbf\x22\xf4\x64\x32\x09\x5d\xd7\x31\x3c\x3c\x3c\xa7\x3b\xb6\x92\x4f\x20\x49\x12\x42\xa1\x10\x30\x39\xc4\x5c\x26\x03\x00\x17\x00\x3f\x80\x00\x65\x68\x6a\x4e\xdb\xa3\x77\x0c\x29\xf7\x35\x8f\xcb\x1b\x28\xaa\xd3\x0a\xaa\xc8\x0a\xdf\xdf\x31\xfa\xf9\x54\x8d\xf1\x0c\x80\xf3\x00\x32\x07\x0f\x1e\x34\x16\x30\x24\x8b\x82\x45\x27\x40\x45\xf8\x8a\x2a\x6c\xfa\xf0\xe9\xfa\x6f\x78\x8b\xb6\x3b\x6e\xe4\x7a\x1c\x1c\xc9\x9a\xd2\xc8\x1b\x2d\x99\x17\x7b\xfd\xc5\x5f\x70\x8a\x41\x00\x71\x58\x82\xcf\x61\xd2\x9b\xde\xdf\xdf\x8f\x78\x3c\x8e\xee\xee\xee\x45\x7b\xa3\x3a\x3b\x3b\x69\x28\x14\xaa\x44\x23\x45\x00\x76\x58\x64\xf0\x02\x68\x04\x47\x4b\x63\x56\xba\xfd\x9e\x01\xf7\xee\xd6\x94\xbd\x8d\xce\x32\xa4\x0c\x9c\x3d\x73\xcb\xd8\xd7\x63\x81\xe2\x77\x00\x9c\x03\x90\xea\xea\xea\x32\x56\x32\x56\xb0\xa8\x04\xa8\x08\xdf\xa9\xd3\xf0\xde\x53\xf5\x87\xfc\x05\xe9\xce\x1b\xb9\x5e\x4e\x32\x33\xaf\xb5\x4e\xbc\x70\xb6\x31\xff\x12\xa3\xe8\x05\x30\x84\xab\x82\xd7\x35\x4d\x33\x96\x33\x39\xa3\xa3\xa3\x83\x86\xc3\xe1\xc9\xa1\xe9\x0a\x11\x42\xe0\xd8\xd0\x9c\x96\xef\xb9\xef\xbc\x67\x4f\x20\x67\x0b\x4d\x9d\x1a\x38\x80\xb7\xd6\x65\x5f\x7c\x65\x63\xfa\x4b\x20\x38\x09\x20\x11\x8f\xc7\xf5\xa7\x9e\x7a\x6a\x45\x6d\x80\x45\x23\x40\xc5\xda\x97\x0d\xd2\xf4\xe1\xd3\xf5\x5f\x6b\xcc\xca\xef\x5d\xe8\xb5\x18\xe1\xac\xbb\x31\x7f\xfc\xe8\xfa\x89\x1f\xaa\x36\xd6\x0d\x60\x10\x40\xc5\xb8\xd3\x57\x43\x12\xc6\x24\x6f\xa6\x88\xab\x53\x43\x13\x65\x68\xdb\x1e\x77\x7d\xb0\xa3\xbf\xf6\x01\xd9\xa4\xf6\xca\xf7\x87\x6a\xd5\xde\x1f\x6e\xbf\xfc\x39\x93\xe2\x38\x80\xa1\x6c\x36\x5b\x58\x0d\x9e\xc0\x45\x21\x40\x79\x30\x24\xca\x10\xd8\x73\xd6\xff\xf7\x1b\xc6\x1c\x8f\x2d\xf4\x5a\x13\x76\x23\xf5\x42\x5b\xea\x3f\x2f\xd6\x69\x47\x00\xf4\xc2\x52\xf7\x69\x00\x6a\x3c\x1e\x67\x2b\xfd\xc6\x4c\xc5\xa4\xbc\x05\x09\x16\x11\x1a\x01\x6c\xa8\x2d\x8a\xd1\x07\x62\x75\x1f\x6f\x4a\xcb\x9b\x0a\x12\x4b\x7f\xf7\xf6\xd1\xbf\xcd\xda\xcd\x97\x61\xcd\xfb\xb9\x95\x9c\xf7\x27\xe3\x86\x09\x10\x8d\x46\x69\x34\x1a\x15\x01\x78\x3a\x7b\x3d\x9f\xde\x71\xc9\xf5\xe7\x0b\xb1\x8c\x39\x38\xde\xf5\x17\x4f\xbf\xd8\x36\xfe\x1d\xd5\xc6\x4e\xc2\x1a\xa8\x24\x80\x42\x36\x9b\x35\x56\xc3\xdb\x32\x1b\x26\x85\xb3\xed\xb0\xa6\x85\x16\xca\xd0\x76\xd7\xa0\xfb\x83\x23\x6e\x3d\x36\xe0\x55\x9f\x06\x10\x03\x90\x7e\xf9\xe5\x97\xd9\x6a\x09\x0d\xdf\x30\x01\x0e\x1c\x38\x20\x02\x70\xdf\x32\xe2\x7c\xec\xc1\x1e\xef\x97\xe9\x02\x62\xf7\x26\xe1\xec\x58\x78\xe2\x99\xae\xe6\xec\x0f\x38\xc1\x59\x58\x2a\x3f\xa3\x69\x9a\xda\xdd\xdd\xbd\xaa\x13\x2a\xa6\xa2\xec\xfb\x10\x01\xb8\x61\x4d\x0b\x1e\x58\x86\xea\x08\x80\x54\x4f\x4f\x8f\xb1\x9a\xd2\xc6\x6e\x88\x00\x65\xa3\xcf\x55\x9f\xb3\xdd\xf1\xd1\x93\x81\xff\x92\x4c\xea\x9d\xef\x35\x34\x81\xa9\xcf\xb5\xa7\xbe\xdb\xe7\x2f\x3e\x0d\x4b\xf8\x23\x00\x72\xf1\x78\xdc\x58\x6d\xea\xbe\x5a\x4c\xce\x71\x28\x1f\x0c\x37\x90\x0f\x10\x89\x44\x68\x38\x1c\x86\x24\x49\x90\x65\x19\xd9\x6c\xb6\xaa\xa5\x6d\x35\x58\x30\x01\xca\x2a\x4f\xb2\x19\xa4\xe9\x37\x4e\x06\x1e\xf7\xe7\xe7\x6f\xf1\x17\x6c\x66\xee\xc9\x5b\x93\xff\x36\x5c\xab\x3f\x0f\x4b\x3d\x8e\x00\x50\xbb\xba\xba\xd8\xcd\xf4\xd6\xcf\x84\xb2\x6d\x04\x4d\xd3\xb0\x10\x4d\x16\x8d\x46\x69\x24\x12\x81\x2c\xcb\x15\x5f\x44\x45\xbb\x5e\x49\x55\xbf\xd1\xdc\x82\x05\x11\x20\x12\x89\xd0\x9d\x3b\x77\x8a\xe0\xf0\x76\xf6\x79\xfe\x6a\xc7\x25\xe5\xcf\xe6\x7b\xa1\xbc\x64\x66\x7e\x14\xb9\xfc\x2f\x97\x95\xd2\xcf\x60\x09\x3f\xa9\x69\x9a\x7a\xe8\xd0\xa1\x9b\x5e\xf0\x8b\x81\xb2\x71\x29\x82\xc3\xb9\x61\xcc\x7e\xef\xb6\x61\xd7\x6f\x35\x64\xa5\xed\x84\x83\x8e\xd5\x94\xce\xbd\xdd\x98\xff\xde\xb9\x40\xe1\x65\x4e\x91\xb9\x91\x4c\xa3\x05\x85\x83\x3f\xf8\xc1\x0f\x12\x51\x14\x9d\x4d\x13\xf2\xaf\xbd\xaf\xb7\xee\x0b\x74\x9e\xb1\xfc\xa2\x68\xe6\x7e\xb4\xed\xf2\x97\x2f\x2b\xa5\xe7\x01\xf4\x00\xb8\x9c\x4c\x26\xb5\xef\x7e\xf7\xbb\x6b\xc2\x87\x35\x85\x6c\xdd\xba\x55\xa4\x0c\x9e\xf7\xbf\x5b\xf7\xd7\xf7\x5d\xf0\x7c\xa9\xae\x68\xdb\x61\x63\xb4\xc1\xc6\x68\xc0\xad\x89\x5b\x37\x8e\x39\x1e\x0b\x66\xe5\xd6\xf3\xbe\xe2\x6b\xb2\xcb\xa9\x06\x83\x41\x16\x8b\xc5\xe6\x1d\x52\x9e\x37\x01\x76\xef\xde\x4d\xfd\x7e\xbf\x24\x9a\x64\xdd\x23\x6f\xfb\xff\xb9\xa6\x24\xac\x9b\xcf\xf9\xba\xc0\xf4\x1f\x47\x92\x5f\x19\xa9\x2d\x3d\x03\xcb\x1b\x36\x96\x4c\x26\xf5\xd5\x96\x2b\xb7\x92\x78\xf8\xe1\x87\x05\x00\xca\x3d\x03\xee\x3f\xba\xfd\x92\xf2\x19\x32\x8d\x9b\x99\x80\x10\x8f\x2a\x46\x14\x4d\xa8\xed\xad\x2f\x1e\x55\x14\xa5\x98\xcd\x66\x31\x36\x36\x36\x2f\x12\xcc\x3b\xaa\x55\x76\x7e\xb8\xa3\x43\xca\x27\xbc\x05\xdb\x8e\xf9\x9c\x6b\x12\xce\x5e\x68\x4b\xfd\x7b\xdc\xa3\x3f\x0b\x4b\xed\xa7\xd6\x84\x7f\x2d\x3a\x3b\x3b\x29\x00\xc9\xa9\xd3\x96\x3b\x86\x94\x4f\xce\xb5\xa4\x6e\x4b\x38\x7f\xbb\x3e\x6b\x8b\x00\xb0\x47\x22\x91\x79\xdf\x6f\x5e\x04\xd8\xb7\x6f\x1f\x05\x60\x57\x54\x61\xc3\x1d\x17\x95\x3f\x9a\xcf\xbc\xcf\xc1\xf1\x66\x4b\xe6\x99\x58\xa0\xf8\x04\xca\x73\xfe\x9a\xf0\xaf\x47\x38\x1c\x06\x00\x7b\x53\x5a\xbe\x57\x32\xa9\x7f\xae\xef\x53\x10\x69\x7d\xca\xf1\x20\x00\x67\x79\x9f\xe4\xbc\x50\xf5\x09\x6d\x6d\x6d\xd6\xfa\x96\xc3\x7d\x6f\x7f\xed\xff\x90\xab\x78\xb8\xc9\xe8\xf7\xaa\xdd\x6f\xb4\x64\xbe\x0d\x4b\xed\x27\x35\x4d\x5b\x13\xfe\x34\x28\xef\x7b\x94\x5c\x9a\xb8\xbe\xda\x73\x3c\x45\x71\x13\xac\xb8\xc4\xd2\x11\x20\x1a\x8d\x02\x80\xdd\x57\xb0\x6d\xd9\x92\x70\xce\xcb\xd5\x9b\x93\xcc\xf4\x0b\x6d\xe3\xff\xca\xa8\xb5\xce\xd7\x34\xad\xb0\x66\xed\xcf\x0a\x5a\xb4\x99\x6a\xb5\x5f\xd6\x05\x66\x60\x01\xc2\x47\xb5\x27\x5d\x79\xfb\x01\xf7\x5d\x83\xca\x1f\xce\x27\xa5\x8b\x83\xe3\xa5\x4d\xe3\xff\x91\x97\xcd\x13\xb0\xfc\xfa\x85\x63\xc7\x8e\x2d\xe4\x59\x7f\x95\xc0\xe2\xb5\x7a\x8f\x41\xb8\x3e\xd7\x17\x39\x38\xfa\xbd\xea\x29\x58\x7e\x81\x79\xa3\x2a\x02\x94\xdf\x7e\xc9\x53\x10\x37\x6d\xbe\xec\xfc\xd0\x7c\x6e\xf0\xae\xbf\x78\xbc\xcf\x5f\x7c\x16\x65\xf7\x6e\x4f\x4f\xcf\xaa\xf1\x83\xaf\x46\x68\x9a\xc6\x00\xa8\x13\x0e\xa3\xff\x5c\x43\xfe\xd5\xb9\xbe\x3f\xec\xd6\x63\x03\x75\xea\x09\x58\xee\xe6\x79\x8f\x6b\x55\x04\x28\xc7\xbf\xdd\x3b\x2e\xb9\x7e\x6b\x3e\x6f\xbf\x26\xb0\xc2\xcf\x37\xa6\xbf\x0d\x82\xf3\x00\x52\xd9\x6c\x76\x55\xf9\xc1\x57\x23\xfa\xfb\xfb\x81\x72\xec\xe0\x95\x8d\xe9\x6f\x5c\xac\x55\x67\x5c\xdc\x8f\x3b\x4a\x89\x67\xb6\x8c\x7d\xb9\x9c\x24\x53\x88\xc7\xe3\xf3\x1e\xdb\x39\xfd\x00\xbb\x77\xef\xa6\x1e\x8f\x47\xb6\x97\xe8\x86\x07\x62\xde\xff\x23\xb2\xea\x08\xc0\x01\xbc\xd1\x9a\x79\xfa\x82\x5f\xfd\x11\x80\x0b\x00\x72\x87\x0e\x1d\x32\xe7\xfb\x80\xbf\x6a\x18\x18\x18\xe0\x91\x48\x84\x89\xa2\xc8\x4c\x0a\xfd\xdd\xfa\x62\x6f\x49\x60\xa2\x5b\x15\xbc\x36\x2b\xbf\x80\xe7\x25\x96\x3d\x13\xcc\xbf\xfe\x7c\x7b\xea\x2b\x79\x3b\x7b\x1d\x96\x76\xcd\x3f\xfe\xf8\xe3\xf3\x1e\xdf\x39\x23\x77\x95\x2d\x5c\x6d\x09\xe7\x6e\xbb\x51\xbd\xe5\x9f\x97\xcc\xd4\xc9\x75\xd9\x1f\xc2\xca\xe2\xc9\xf5\xf4\xf4\xac\xbd\xf9\x55\xe2\xd8\xb1\x63\xd8\xb5\x6b\x57\x0e\x40\xbf\x21\x70\xfd\x78\x4b\x36\x71\xa2\x29\xfb\xa4\xa3\x44\xfd\x04\x84\x16\x6d\x66\xca\xa4\x88\x03\xe8\x47\x79\x7c\xcf\x9c\x39\xb3\xa0\xf1\x9d\x95\x00\xe5\xca\x5a\x22\x38\x3c\x5b\x47\x6a\x1e\x9d\xcf\x85\x4f\x34\x65\x9f\xd3\x45\x1e\x03\x90\xd2\x34\x4d\x5f\x53\xfd\xd5\xa3\x62\x23\x95\x49\x30\x08\x20\xc5\x28\x7a\xf3\x32\xab\x68\x5f\x15\x56\x76\x54\x0e\x40\xa1\xa7\xa7\x67\xc1\x01\xa1\x59\x09\xd0\xd6\xd6\x06\x00\x92\x3f\x6f\x6b\x0b\xe4\xaa\x4f\xee\x2c\xd8\xcc\xcc\xdb\x8d\xb9\xa7\x51\x8e\xee\x75\x77\x77\x2f\xe4\xd9\x7e\xa5\x11\x8b\xc5\x58\x2c\x16\x63\xfb\xf6\xed\x2b\x28\x8a\xa2\xc2\xca\x8a\xaa\xd8\x6c\x0c\x80\x91\xcd\x66\xd9\xd1\xa3\x47\x31\x30\x30\xb0\xe0\x97\x6b\x56\x02\x94\x8d\x3f\xe7\xc6\xa4\xe3\xc1\xf9\x24\x7a\x9c\x6d\xc8\xbf\xa2\xd9\xf8\x79\x00\x69\x4d\xd3\xf4\x5f\x86\xd0\xee\x4a\xa1\x9c\x09\xc5\xa2\xd1\x28\x73\xb9\x5c\x00\x80\x5c\x2e\xb7\x68\x49\x32\x33\x0a\x75\x92\xfa\x77\x6f\x4a\x3a\xee\xaf\xf6\x82\x26\xe1\xc6\xdb\xc1\xfc\xb3\xb0\x92\x38\xd7\xde\xfe\x79\xa0\x52\xcc\x72\x3a\xe1\xce\x26\xf0\x68\x34\x4a\x27\x17\xc0\xd4\x75\x1d\xfd\xfd\xfd\x55\x25\xcd\xce\x48\x80\xd6\xd6\x56\x00\x90\xdc\xaa\xd0\xe4\x2d\xd8\xb6\xcc\x75\xa1\x0a\xe2\x6e\xed\xdc\xb8\xd3\x38\x07\x4b\x65\xad\x68\xce\xfb\xcd\x80\x49\xb9\x84\x57\x8e\xf2\xb6\x71\x23\x9b\xcd\xb2\xd9\x72\x21\xa7\x14\xd2\xaa\x1c\x00\x60\x84\xc3\x61\xbd\xa3\xa3\xc3\x38\x76\xec\xd8\xac\x44\x98\x91\x00\xe5\xc0\x82\xbd\x39\x6d\xbf\x97\xf2\xea\x0a\x37\x70\x00\x3d\x0d\x85\x57\x61\xbd\xfd\x85\xfe\xfe\xfe\x35\xe1\xcf\x80\xb6\xb6\x36\xda\xd1\xd1\x01\x59\x96\xed\x92\x41\xdc\xeb\xc7\x1c\xf7\x36\x4d\xc8\xf7\x50\x46\xc4\xb1\x9a\xd2\xbb\xbd\xfe\xc2\x8b\x50\x94\x91\x03\x07\x0e\xa8\xd3\x95\x9f\xab\xa4\xe1\x0b\x0c\xae\x2d\xa3\x35\x0f\x6c\x19\x75\x7e\xc4\x9f\xb7\x6d\x31\x29\x57\x2f\xd5\xea\xc7\x4f\xad\xcb\x7e\x3b\xee\x46\xf7\xae\x5d\xbb\x0a\xc1\x60\x70\xc6\xbd\x13\xb3\xcd\xeb\x14\x80\xb3\x65\xdc\xde\x51\x6d\xd4\xcf\xa4\x5c\xbf\xe0\x2d\x1e\x03\x90\x02\x60\x3c\xf7\xdc\x73\xab\x82\x00\x93\xaa\x8a\x02\xd7\x3b\xbf\x58\x32\x99\xc4\xf0\xf0\xf0\xb2\x96\x83\xdd\xb5\x6b\x17\x05\xe0\x6c\x4d\xd9\xef\x7d\x7f\xac\xee\x8b\x8a\x26\x6e\x9f\x3c\xce\x3b\xfb\x6b\x53\xc7\x9b\x33\x7f\xf7\x7a\x6b\xe6\x5b\xed\xed\xed\x19\x00\x57\x9c\x68\x15\xe1\x3b\x75\xda\xf4\xeb\x6f\xfb\xff\x21\x94\x91\xf6\x4c\x0e\x1b\xb7\x5f\x16\xef\xdc\x9c\x74\xfc\xce\xeb\x2d\x99\xbf\x79\xbd\x35\xf3\xcd\xf6\xf6\xf6\xdc\xd8\xd8\x98\x31\xdd\x8e\xa9\x69\x09\xd0\xd1\xd1\x51\x99\xff\x5d\xc1\x8c\xb4\xb5\xda\x1f\x95\x70\xe9\xbd\x79\x89\x0d\x02\x28\x68\x9a\xb6\xe2\x79\xef\x93\xd4\xab\x08\x40\xa2\x06\xb7\x4b\x45\xe6\xa1\x26\x5c\x00\x98\x29\x22\xa7\x3b\x68\xda\xef\xf7\xeb\x7e\xbf\x5f\xdf\xb6\x6d\x9b\xb1\x1c\x7b\x0f\xf6\xef\xdf\x4f\x01\x38\x9b\xc7\xe5\x9d\x8f\xbc\xed\x7f\x5c\x64\xc4\x33\xf5\x3b\x22\x23\xde\x7b\x06\xdc\x5f\x14\x18\x71\xfd\x62\xfd\xc4\xbf\xb4\xb7\xb7\xa7\x8f\x1c\x39\xc2\xa2\xd1\x28\xf5\xfb\xfd\x22\xe1\xf0\x7e\xf0\x1d\xdf\x3f\xac\xcb\xc8\x7b\xa6\xbb\x07\xe5\xc4\x79\xef\x80\xfb\x0b\x19\xbb\x91\x7a\xa7\xb1\xf0\xa3\x68\x34\x9a\x99\xce\x1e\x9b\x96\x00\x65\x83\x42\x74\xab\x42\xa8\x46\x17\x9a\xaa\xfd\x61\x03\x75\xea\x69\x10\xa4\x00\xa8\x65\x97\xe6\x8a\xe0\x9a\xca\x63\x25\xee\xa9\x8b\x97\x1e\xa8\x1b\x36\x1e\x75\x64\xcc\x3b\xa9\x89\x00\xac\x04\x4b\x80\x40\x65\x02\x46\xf2\xb5\xc2\x1b\xe3\x21\xdb\x0f\xd3\x41\xf1\x95\x50\x28\x94\x39\x70\xe0\xc0\x92\x15\x72\x8a\x46\xa3\x54\x96\x65\x49\x60\xf0\xbf\xef\xdd\xba\xcf\x4f\x27\xfc\x0a\x08\x08\xbd\x63\x48\xf9\x74\xac\xbe\xf0\xea\x65\xa5\xf4\xc6\xfe\xfd\xfb\x0b\xb2\x2c\x03\x80\x73\xc3\x98\xe3\x81\xa6\xb4\xfc\xf0\x6c\xf7\x22\x20\x62\x47\x7f\xed\xa7\xdf\xad\x2f\xbe\x0a\x59\x56\x3b\x3a\x3a\xf4\xa9\xbf\x69\xda\x58\x40\x59\x55\x4a\xf5\x79\xa9\xad\xfa\xf9\x9f\x63\xc8\xa3\xbd\x05\xcb\x41\xb1\x62\x3e\xff\xbd\x7b\xf7\xd2\x6d\xdb\xb6\x89\x60\xdc\xe3\x1b\xd4\x3f\x76\xcb\x2b\xf9\x97\x9a\xce\x6a\x87\x5c\xe3\xe6\x5e\xc1\x44\x0b\x01\xec\x04\xa0\x04\xa0\x84\xc3\x29\x18\xd8\xe0\x1e\x33\x3f\xde\x72\x46\xfd\xde\x2d\xaf\xe4\x9f\xad\x8b\x97\x1e\x06\xe7\xee\x6d\xdb\xb6\x89\x7b\xf7\xee\xbd\xe1\x3a\x00\x53\x51\xf1\xad\xac\x9b\x90\xef\xac\x2b\x8a\x73\x66\x54\x09\x9c\x38\x6f\x19\xad\xf9\x28\x00\xd7\xa4\x1a\xc9\xae\x8d\x49\xc7\xaf\x4f\x97\x2a\x36\x15\x8a\x26\x6c\x09\xe4\x6c\xdb\x01\x48\xe5\x64\x93\x6b\x30\xd3\x05\x28\x00\xc9\x97\xb7\x6d\xae\x76\xfe\x37\x28\x57\xc7\x6a\x4a\xbd\x58\xc1\x6a\x17\x57\x0c\xa3\x12\x0f\xad\x7f\x4b\xfd\x87\xa6\xb7\xb5\xaf\xd9\x74\xde\x56\xcd\x6f\x20\x00\x24\x95\x6f\x6f\x39\xa5\x3e\xde\x72\x46\xfd\x1c\x31\xb9\xdf\xef\xf7\x4b\x8b\x4d\x82\xb2\x6f\xc5\xee\xcb\xdb\x6e\xaf\x76\x07\x55\xbd\x25\x40\x17\x2c\xe1\x5b\xd5\xd5\xd4\xea\x34\x33\x01\x81\xa2\x8a\x1b\x00\x48\xe5\x7b\x5f\x83\xd9\x08\x60\xf7\x16\xc4\x0d\x55\x3d\x21\x80\x09\x87\x11\x57\x45\x96\x44\xb9\x56\x6e\xb5\xe7\x2d\x16\x2a\xc2\xa7\x06\x0f\xad\x3f\x5e\xfc\x6a\x6d\xc2\xf8\x6d\xb2\x80\x24\x09\x02\x88\x75\x97\x8c\x3f\x09\x9f\x2c\x7e\xb1\x42\x82\xdd\xbb\x77\x2f\xb6\x26\x90\x08\x27\xf6\xb9\xbf\x66\xc1\x10\x38\x43\x65\xda\xb2\x40\x8b\x36\x56\x55\xc2\x08\x07\x90\x97\xcd\x1c\x66\x18\x8b\xeb\x6c\x80\xb2\x33\x82\x02\xb0\xd7\x15\x6c\x55\xcf\xff\x63\x4e\x63\x10\x04\x39\x00\xc6\xd8\xd8\x58\xb5\xa7\x2d\x0a\x2a\x86\x11\x38\xf7\x36\x77\xab\x9f\x75\xa5\xcd\xdd\x37\x72\x3d\x02\xc0\x9d\x30\x7f\x33\x18\xd3\xe2\xf1\x5b\xec\x5f\x0c\x87\xc3\xa9\xb6\xb6\xb6\x39\x1d\x2b\x9d\x9d\x9d\xb4\xdc\xac\x02\x00\x66\xdb\xbd\xc3\x2e\xbb\xf4\x01\x0e\x5e\x55\x39\xaa\x64\x4d\x69\x08\xd7\x26\x7c\x18\x03\x5e\xf5\xf4\xa6\xa4\xf3\xfe\xb9\xce\xd6\x45\x96\xb9\x6c\x9d\x3f\x6d\x85\x94\xeb\x08\xe0\xf3\xf9\x00\x6b\x7e\xb4\xd7\xe8\x42\xd5\xd1\xbf\x71\x67\x69\x08\x96\xfa\x5f\x76\x02\x94\xb3\x61\x9d\x9e\x61\x63\xb7\x67\xd8\xf8\xed\xc5\xb8\x26\x01\x50\x3f\x50\xfa\xb3\x4c\x40\xfc\x79\xce\x27\xbe\xdc\xd1\xd1\x91\x8b\xc5\x62\xd7\x7d\xaf\xb5\xb5\x95\xee\xda\xb5\xab\xb2\x7b\xa7\x72\x50\x00\x46\x28\x14\x32\xa2\xd1\xa8\x31\xcd\x3a\x5e\x8f\xd7\x6a\x67\xc7\x1d\xc6\x90\xb7\x38\xfb\x4b\xc6\xc0\x59\x9f\xaf\xf8\x3a\xae\x26\x7c\x30\x00\xb9\x9e\x40\xe1\xe7\x77\x0d\xba\x3f\x5e\xab\x8a\x8d\xb3\x9d\xdf\xdd\x98\x7b\x59\xb3\xb1\x04\xac\x6d\xf5\xd7\xfd\xff\xeb\xd4\x82\x24\x49\x00\x20\xca\x06\x75\xc9\xc6\xcc\x16\xea\x54\x4c\xd8\x8d\x78\xe5\x21\x97\xd3\xfb\xd7\xd1\xd1\x41\x65\x59\x96\x08\xe3\xfe\xc6\x5e\xed\x53\x0b\x51\xfb\x33\x81\x70\x48\x8d\x31\xed\x53\xe0\xdc\x2b\xcb\xb2\x18\x89\x44\xae\xb9\x76\x47\x47\x07\x7d\xe8\xa1\x87\xa8\x2c\xcb\xae\x40\xd6\xb6\xf5\x81\x9e\xba\xcf\xfd\xde\xeb\xc1\x27\xff\xe0\xb5\xe0\xb3\x1f\x3d\x59\xff\xb5\xdb\x2e\xb9\x1e\x13\x4d\xe2\x6d\x6f\x6f\x97\xca\x19\xd5\x48\x26\x93\x0c\x80\x6a\x52\x8c\xbc\xb4\x79\xfc\x5b\x06\x9d\x39\xed\x8b\x03\x38\xdb\x98\x7f\x65\xc4\xad\x9f\x84\x15\xf9\xab\x10\xa0\x50\x12\x78\xff\x4f\x6f\x19\x3b\x58\x14\xcd\xdc\x4c\xe7\x0e\x7a\xd4\x73\xc7\xc2\x99\xc7\x51\x76\xcb\x4f\x47\xe0\x99\x08\x40\x6d\x26\x71\x56\xbb\x02\x00\x80\xbc\x6c\x8e\xe2\x6a\x41\xa6\x65\x43\xd9\xaa\xb6\x2b\x49\x73\xa7\x9c\xe7\xdb\x17\xfb\xfa\x35\x69\x76\x9f\x73\x82\x6d\x05\x60\xdf\xb6\x6d\xdb\x95\x7f\x8f\x44\x22\xd6\x52\x93\xc3\x1d\xbd\xa8\xfc\xce\x6f\xbc\xd5\x70\x24\x32\xe2\xfa\xdf\xb5\xaa\xf8\x5e\x45\x13\xef\x5e\x37\x61\xff\xd8\xae\x5e\xcf\xb7\x3f\x76\x32\xf0\xb8\xa2\x0a\x1b\x14\x45\xb1\xef\xdf\xbf\x9f\x96\x33\xa1\x55\x00\x89\x8b\x75\xda\xcf\x9e\xde\x9a\x3c\x98\x93\xcc\xcc\xd4\xfb\x9a\x84\xb3\x53\xa1\xec\x2b\x2f\x6d\x1e\xff\x2a\xac\x62\x52\x85\xfe\xfe\x7e\x76\xf4\xe8\x51\x94\xcf\x1f\x1a\x71\xeb\x3f\xfb\xfe\xed\x89\x2f\xf4\xf9\x8a\xdd\x25\xca\x0c\x0e\x6b\x35\x96\x93\xcc\xcc\xeb\xad\x13\xcf\xfc\x38\x92\xfc\x82\x21\xf0\xb3\xb0\x42\xf2\xd5\x39\x82\x2a\xde\x32\xd9\xa0\x6e\xca\x51\xf5\x12\xb0\x60\x63\x29\x2c\x30\x31\xf1\x46\x50\x5e\x1a\xb9\x6a\x47\x4b\x0f\x2d\x45\xc5\x2b\x02\x88\xee\x84\xf1\x50\xc1\x23\x9c\x50\x14\xe5\xca\x0a\xa7\x9c\x27\xe9\xda\x92\x70\xee\x79\xcf\xf9\xda\xbf\xa7\xd3\xd4\x39\x26\x20\x08\xe4\xa4\xfb\x1f\x79\xdb\xff\xd5\xef\xef\x48\x7c\x02\xb2\x3c\xd2\xd9\xd9\xa9\x27\x93\x49\xe6\xf7\xfb\xd3\x00\x62\x17\x7c\xea\x0f\xbf\x7d\xe7\xf0\xbb\x9b\x92\xce\x5f\x6b\xcc\x48\x61\x91\x11\x29\x55\x53\x1a\xe9\xf3\x15\x8f\xa7\x9c\x46\x17\x08\xce\x01\x48\x68\x9a\xa6\x57\x3c\xab\xe1\x70\xd8\x08\x85\x42\x19\x00\xb1\x71\xa7\xa1\x3e\x79\x6b\xb2\xd7\x51\xa2\x2d\x2e\x4d\x68\x30\x29\xd7\x27\xec\xc6\x45\x53\xc0\x20\xac\x1a\x0b\xb3\x26\xe2\xce\xe4\x0a\xa6\x92\x41\xaa\x2e\x8e\xc8\x09\x0c\x5d\x60\x39\x2c\xb3\x06\x98\x14\xb1\x74\xd5\xa4\xd9\xbc\x76\x29\xcd\x07\x35\x69\x73\x07\xac\x65\x58\x0a\xb8\x3a\xed\x88\x26\x09\xec\xbc\x50\xfb\x99\xe9\x84\x3f\x19\xf5\x39\xdb\x7d\xb7\x8e\xd4\xec\x3d\xb5\x2e\xf7\xcd\xf6\xf6\x76\xfd\xe0\xc1\x83\x6c\xef\xde\xbd\xba\xdf\xef\x4f\x02\x30\x34\x1b\x4f\xbe\x1d\xcc\x9f\x7d\x3b\x98\x77\xc3\xd2\xca\x05\x58\xc5\x31\x46\x50\xae\x80\x36\x59\x80\x4f\x3d\xf5\x54\xe5\xfc\x14\xac\x02\x98\x89\xa2\xc4\xce\x16\x25\x66\x47\x79\x8a\x28\x9f\x97\x01\xa0\xce\x56\x90\x62\x3a\x02\x50\x00\x74\x3e\xea\x9f\x03\xcc\xa4\x57\xaa\x70\x2e\x1b\xca\x06\xab\x48\x18\x77\xd9\x54\x36\xab\x31\x74\x23\x90\x0a\xac\x09\x9c\x3b\x41\x88\xb8\x67\xcf\x1e\xa3\x7c\x5f\x7b\x30\x23\xdd\xa1\x68\x42\xdb\x5c\xe7\x13\x10\x6c\xbe\xec\x78\xe4\xd4\xba\xdc\x61\x94\x0b\x5c\x1d\x3e\x7c\x98\xed\xd9\xb3\x47\x0f\x85\x42\x49\x58\x82\x8a\xe3\xea\x52\xcf\x80\xa5\xe6\x75\x4d\xd3\xf4\xe9\xf6\x50\x1c\x3e\x7c\x98\x45\xa3\x51\x23\x12\x89\x64\x64\x59\x2e\xc0\x9a\xe7\xe9\xa4\xf3\xe7\x8c\x26\x02\xb3\x04\x83\x28\xaf\x3e\x01\x84\x13\x30\x4e\xf8\xb2\xab\xff\x8a\xbd\x42\x18\x9c\x84\x61\xd1\xcb\xcf\x56\x20\x98\x70\x11\x0e\x3b\x27\xa0\x93\x6a\x08\x4a\xb5\xaa\xb8\xa9\x5a\x2d\x59\x5b\x14\xc3\x84\xc3\xc5\x09\xc4\x68\x34\x6a\x74\x75\x75\x55\x62\x0e\x6c\xf7\xee\xdd\x2c\x1c\x0e\xab\x98\x64\x93\x65\xb3\x59\x36\x57\xbb\x99\x72\x1d\x05\x00\xd0\x3b\x3b\x3b\x8d\xca\x12\x74\x3e\x7d\x0e\x67\x9c\x02\x00\x3e\x3f\x6b\xda\xca\x5d\x5e\x99\xe8\x1f\x01\x5d\xca\x7b\x73\x02\x86\xeb\x0d\x66\xd1\x24\xd5\x8f\x91\x21\x70\xc6\xcb\x6f\xf8\xd4\xee\xa5\x93\xa2\xa6\x0b\xfe\x0d\x0b\x75\xbd\xcf\xf8\x96\x33\x52\xbd\x41\x47\x38\x68\xb5\x95\x32\x97\x02\x4c\x80\x61\x8a\x24\x47\x75\xbe\x24\x5a\xc0\x90\x48\x86\x13\x32\x75\x80\xd9\xb0\x5b\x3f\x6f\x12\x6e\x08\x55\x68\xcb\x78\xad\x16\x43\x79\x4c\x97\xc2\x4f\x52\xc9\x26\x02\xe6\xd7\x02\x77\xa6\x07\x67\x8c\x72\x83\xa3\xba\x12\x22\x04\xa0\x02\x23\x15\x07\xc8\x72\x83\x01\x44\x55\x5d\x74\xc8\x96\x32\x03\x4b\x71\x83\xa2\x8b\x0e\x82\x58\x3e\x8e\x64\x32\x09\xbf\xdf\xcf\x00\xa8\x69\x87\xd1\xdf\xef\x2d\x9e\xd8\x38\xe6\xbc\x7b\xb6\xf3\x4d\xc2\x8d\xd3\xc1\xfc\xf3\xb0\xe6\x7f\x63\xb2\x7a\x9e\x54\x06\x66\x72\x7b\xdb\xaa\x3a\x94\xb6\xb5\xb5\xd1\x68\x34\x3a\xb9\x8a\x29\x2d\x5f\xd3\x40\x95\x7d\x0c\x67\x64\xae\x26\xf2\x9c\xa5\xd7\xe7\xa6\x00\xe1\x10\x65\x83\xb8\xb0\xcc\x04\x18\x1e\x1e\x46\x28\x14\x32\x40\x50\xc8\xfa\x85\x6e\x25\x65\xde\x50\x59\xda\x99\x90\xf3\x8b\xa7\x51\x0e\x72\x1d\x3e\x7c\x98\x95\x53\xb1\x54\x10\x24\x5e\xda\x9c\xfe\x86\x2f\x2f\x85\x3d\xaa\x38\x2d\xf9\x38\x38\x5e\x6b\x9d\xf8\xd1\xa8\x5b\x3f\x01\xcb\xd8\xbb\x22\x90\x72\x91\x2d\x89\x70\xd8\x7d\x39\x5b\xa3\x2f\x6f\xdb\x40\x00\x3a\xee\x30\xfa\x13\x0a\x86\xda\xdb\xdb\xd5\x70\x38\xac\x4f\x97\xd6\x35\x29\x1d\xcc\xe9\xcf\xd9\x5a\x36\x5f\x76\xee\xf6\x16\xc4\xcd\x25\x81\x17\x2e\x7a\xd4\x9f\xf7\xd6\x17\x8f\xb6\xb7\xb7\x67\xc2\xe1\xf0\xb4\x46\x64\x05\xd3\x11\x80\x01\x60\x9a\xc8\x0a\x8c\xc0\x10\xf8\xdc\x9b\x47\x08\x08\x9c\xba\xe0\x01\x4a\x15\x16\x2f\x8b\x2d\xd0\xd5\xd5\xc5\xca\xf9\x73\xb9\x74\xa3\xed\xe7\x8d\xbd\xfa\xc7\x29\xab\xce\x77\x51\x2d\x0c\x11\xb9\x89\x80\xf8\x3a\xca\x6e\x6e\xc0\x9a\x6f\xdb\xdb\xdb\x0d\x00\xc9\x9c\x6c\x9e\xf8\xcf\x1d\x89\x2f\xbc\xef\xdd\xba\xdf\x5b\x9f\xb2\x6f\xa5\xe5\x52\xf2\x1c\x1c\x79\xc9\xcc\x1c\x5d\x3f\xf1\xe3\xb3\x0d\x85\x1f\xc0\xda\xc4\x71\x65\x83\x4c\x59\xf8\x4e\x7f\xce\xd6\x76\xff\xbb\x75\x7f\xd3\x98\x91\x3e\x40\x61\x05\x88\x38\xb8\x9e\xac\x29\xbd\x72\x64\x63\xfa\x6f\x87\xea\x70\x72\xd7\xae\x5d\x05\xe0\xea\x7e\x81\x4a\xfd\x20\xca\xe0\x79\xcf\x05\xcf\x81\x1d\x97\x5c\x7f\x39\xb9\x91\xe6\x2d\xa3\x35\x7f\x7e\xef\x80\x71\xfc\xd9\x2d\x63\x7f\x11\xaf\xc5\xc9\x03\x07\x0e\x14\x66\x2a\x4c\x79\x9d\x70\x35\x4d\x83\x2c\xcb\xac\x44\x59\xc1\xa4\x5c\x15\x4c\xe2\xaa\x66\xa0\x14\x4d\x08\x4e\x77\xbd\xa5\x86\xa6\x69\x86\x2c\xcb\x39\xdd\x49\x63\xe9\x46\xf1\x35\x6f\xdc\x58\x70\x89\xda\xe9\x30\xd6\x6c\x7b\xd1\x94\xc8\x20\xa6\x94\x75\x2f\x93\x2f\x07\xa0\x3f\x27\x9b\xec\xc9\x5b\x93\xf1\xba\xa2\xb8\xad\x31\x23\x6d\xb2\x99\xd4\x3e\xe1\x30\x46\xe2\x6e\xed\x4c\xc9\xda\x1c\xd3\x8b\x72\x4d\x84\x23\x47\x8e\xb0\x8a\xf0\x03\x59\xdb\xf6\xbd\xa7\x03\xdf\xb3\x1b\xf4\x9a\x78\x00\x01\x91\xea\xf3\xd2\x03\xff\xad\xbb\xfe\xce\x67\xb6\x8c\xfd\x41\x6f\x7d\xf1\x85\xc9\xb1\x88\xf2\x9b\xef\x7e\xcf\x05\xcf\x27\xef\x18\x72\xfd\xf5\xd4\x95\x08\x01\x50\xab\x8a\x77\x3e\x7a\xa6\xfe\x07\x87\x6f\xbb\xfc\xd1\x51\x45\x3f\xb1\x6f\xdf\xbe\x69\x4b\xd3\x5e\xb7\x37\xb0\xb9\xb9\x99\x28\x8a\x22\x32\x0a\xef\xb6\x61\xd7\x87\x64\x93\x2a\x53\xbf\x33\x1d\x52\xce\x52\xdf\xa0\x57\x7b\x05\x40\xbe\xab\xab\x6b\xd9\xf6\x00\x7a\x3c\x1e\xe2\xf7\xfb\x19\x08\x84\x42\xad\x50\xf4\x5e\x32\x3a\x17\x4b\x0b\x68\x0e\x92\x1c\xdc\xee\xf8\x47\x2e\x90\x77\x00\xa4\xbb\xbb\xbb\xcd\x4a\x6f\x9f\xe1\xe1\x61\xee\x72\xb9\xb8\xdf\xef\xd7\x01\x64\x41\x90\x52\x6d\x6c\x20\xe9\x2a\x75\x8f\xba\xf5\x37\x27\x1c\xc6\x09\x46\x71\x0e\xd6\xbe\xc8\x31\x4d\xd3\x8a\x87\x0e\x1d\x62\xd1\x68\x94\x36\x37\x37\x8b\x84\xa1\xfe\x43\x6f\xd7\x7f\xc5\xa3\x8a\x33\xd6\x75\xa1\x9c\xd8\x9b\xc7\xe5\xf7\xbc\xd3\x98\x7f\x8a\xcb\x42\xb6\xb5\xb5\xd5\xdc\xb1\x63\x07\x91\x65\xd9\x51\x9f\xb3\xdd\xf1\x40\xcc\xfb\xcf\xb3\xed\xd7\x10\x39\xa9\x09\x64\xa5\xcd\x6f\x07\xf3\x3f\x95\x2c\x5f\x01\x9f\xda\x9b\x68\xa6\x39\x9b\x71\x02\x35\x27\x9b\xd7\x87\x8f\x66\x80\xaf\x60\x0b\xc3\x2a\x93\xba\xac\x76\x40\xd9\xc8\x31\x00\x24\x4b\x0e\x7a\xf2\x62\x44\xfe\xd6\x7c\x56\x30\x33\xc1\x14\xa0\x0f\x6e\xb7\xff\x9b\x29\x91\x73\x28\x6f\x6f\x9b\x6a\x5d\x1f\x39\x72\x84\x75\x75\x75\x19\x9a\xa6\x65\x60\xed\xd1\x3b\x07\xe0\x24\x80\x13\x00\xba\x51\x2e\x77\x1b\x8f\xc7\xaf\x94\xbf\xab\xc4\x2e\x82\x59\xe9\x8e\x40\xce\x36\x67\x1f\x05\x87\x21\x34\x6d\x19\xad\xd9\x8b\x72\x09\x98\xb2\xc1\xe7\x6a\x1f\x75\x7e\x58\xa8\x22\xa7\x20\x90\xb3\xed\x0c\x4e\x48\x3b\x00\xd8\xcb\xf7\xbe\x06\xd7\x09\x6b\x78\x78\x18\xb0\xe6\x70\x3d\xed\x30\x46\xe6\xba\x41\x05\xde\x82\x2d\x4c\xb8\x55\xa6\xa4\x5c\xe8\x68\xd9\x50\xde\x18\x99\x03\x30\x38\xd1\x68\x7b\x72\xe8\x56\xf9\xbb\x8c\x2e\x9c\x04\xa6\x00\x7d\xe0\x36\xc7\xd7\xf3\x5e\xf1\x67\xb0\xf6\xe6\x15\x66\xda\xe0\xd2\xd5\xd5\xc5\x0e\x1d\x3a\xc4\x8e\x1e\x3d\x6a\xc4\xe3\xf1\x8a\x0b\x36\x9d\xcd\x66\x33\x3d\x3d\x3d\xea\xc1\x83\x07\xaf\xa9\x78\x5a\xc9\x08\x6a\xc8\x4a\xd1\x6a\x52\xba\x00\xa0\x31\x2b\xdd\x85\xab\x25\x60\x28\x00\x67\x20\x27\x55\x15\xf8\x22\x20\xb4\x21\x27\xdf\x05\xc0\x3e\x5d\x46\xd0\x75\xea\x63\x92\x61\xa5\x26\x6b\x4a\x83\xd5\xdc\x04\x00\x5c\x9a\x10\x72\x69\x82\x3f\x6b\x37\xcf\x97\x5d\xa5\xcb\x86\x63\xc7\x8e\xb1\x60\x30\x68\x94\x7d\xe3\xb1\x54\x93\xf4\xbd\x92\x83\x66\x9a\xcf\xa8\xbf\x29\xa9\xbc\xea\x90\x36\x00\xa8\x35\x34\x31\xb8\xdd\xfe\xad\x82\x47\xa8\x54\x2f\x4d\xc7\xe3\xf1\x39\x37\xb8\x74\x77\x77\xb3\x79\xec\x82\x92\x04\x56\x7d\xf7\x73\x81\x11\x17\xae\xd5\xae\x92\x49\xe7\xe1\x84\xa2\xac\xb2\x4c\xbc\x0e\x33\x4e\x01\x00\xd4\xb1\x9a\x52\x5f\xb5\x45\xe7\x04\x4e\xa4\x86\xac\x14\x01\x20\x2d\xa4\x5a\xd5\x8d\xe2\xf0\xe1\xc3\x4c\xd3\x34\xab\x28\x33\x41\x77\xd6\x2f\xfe\x57\xcf\x7d\x35\x9f\x1b\xd9\x28\xbd\x58\x92\x48\x6e\xb6\xdf\xc1\x01\xe8\x76\x92\x8e\xb7\xcb\x3f\x89\xed\x74\x7e\xae\xe0\x11\x9e\x04\x70\x16\x40\x22\x99\x4c\x2e\x49\x53\x87\x09\x87\x71\xb9\xda\xb1\x4d\xd6\xe8\x83\xb8\x76\x65\xc5\x12\x2e\xbd\xbf\x9a\x73\x4d\xc2\xf5\x81\x3a\xf5\x6d\xcc\xb0\x32\x9b\xd1\x11\x04\x4b\x03\x9c\x37\x09\xd7\xc5\x2a\x03\x43\x2d\xe3\xf6\x7b\x7a\xeb\x8b\x87\x61\xad\x77\x97\x1d\x87\x0e\x1d\x62\xfb\xf7\xef\x57\x65\x59\x1e\x01\xa0\x9a\x36\x92\x1a\x69\x93\xfb\x47\x37\x4a\x61\xd7\x98\x79\x9b\x6b\xdc\xdc\x64\xcf\x31\xbf\xa0\x73\x27\x08\x60\x48\xa4\xa0\xba\xe8\x48\xce\x2b\xc4\xf2\x75\xc2\x19\x2e\x90\x7e\x58\x2a\x7f\x04\x40\x66\x09\xcb\xd8\xe9\x17\x3d\x5a\xb7\x2a\x9a\x69\x87\x21\xcc\xaa\xa1\x0c\xca\xf5\xb3\x8d\x85\x23\xb8\xb6\x04\x4c\xe1\x6c\x63\xe1\xa5\xdb\x87\x94\xc7\x24\x46\x67\xb5\x03\x2e\x78\x8b\x27\x32\x76\x73\x10\x80\x5a\x2e\x3f\x73\x0d\xa6\xad\x10\x12\x89\x44\x20\x8a\xa2\x58\x12\xb8\xb2\x25\xe1\x7c\xd0\x61\x08\xb5\xd5\xfc\x2a\xd9\xa0\xf6\x53\xeb\x72\x3f\x02\xc1\x84\x24\x49\xe6\xd0\xd0\xd0\xb2\x77\xc3\x3c\x75\xea\x14\x0f\x06\x83\x4c\x51\x14\x0d\x40\x16\xc0\x18\x28\x19\xd1\x6b\x68\x2c\xe7\x17\xdf\x4a\x87\x6c\xaf\xa7\x9a\x6d\xaf\xa6\x9a\x6c\x2f\xa5\x83\xb6\x97\x72\x3e\xf1\x15\xdd\x49\xdf\x04\x25\xef\xc0\x32\xda\x46\x00\x64\xfb\xfb\xfb\x97\xa4\x5a\x79\x5b\x5b\x1b\x64\x59\xa6\x86\xc0\x6d\x25\x81\xbb\xc2\x29\xfb\x8c\xd9\xc1\x1c\x1c\x27\x9a\xb2\x4f\xbf\x5b\x5f\x7c\xb2\x9c\x14\x52\x84\x45\x02\xa2\xd9\x18\x51\x6d\x4c\x0e\xa7\xec\xdb\x09\xc8\xb4\x17\xc8\xca\x46\xea\x27\x5b\xc7\xfe\x51\xb7\xf1\x33\x00\xc6\xfa\xfa\xfa\xcc\x81\x81\x81\x6b\x64\x32\x2d\x01\x1a\x1a\x1a\x88\xc7\xe3\x11\x40\xe0\x0a\xe4\xa4\x3b\x02\x39\xa9\xaa\xec\x60\xc9\x20\x9e\xf3\xbe\xe2\x0b\x05\x99\x5d\x74\x3a\x9d\x5a\x77\x77\xf7\x8a\xb4\x43\x8d\xc5\x62\x3c\x9b\xcd\x72\x9f\xcf\xa7\xcb\xb2\x5c\x84\x65\x98\x8d\x01\x18\x86\x65\xad\x0f\x02\x18\x80\xe5\x9c\x19\x04\x70\x09\x56\xfc\x3d\x93\xcd\x66\xf5\x43\x87\x0e\x99\x7d\x7d\x55\xcf\x7e\xf3\x05\x69\x6e\x6e\x66\x00\xf8\xa8\xa2\xa7\x4d\xca\x9d\xa1\x8c\xbc\x89\x4e\xe9\x45\xc8\x08\x67\x27\xd7\xe5\x5e\x3a\xba\x7e\xe2\x6b\xdc\x5a\x4e\xa6\xfb\xfb\xfb\xcd\xd1\xd1\x51\xf8\xfd\x7e\x0e\xc0\x4c\xb8\x4a\xc9\x71\xa7\xa1\x37\x64\xa5\xf5\x92\x49\xec\x15\x22\x95\xf7\x68\xf4\x3e\x75\xeb\xd8\x3f\x65\x1c\xe6\xd1\xf2\x6f\x2e\x1e\x3e\x7c\xf8\xba\xe5\xf9\xb4\x53\x40\x3c\x1e\x47\x38\x1c\x36\x00\xe4\x06\x3d\xea\xc9\xad\x23\x35\x0f\x54\x13\x13\xa0\x20\x74\x73\xd2\xf9\xe0\x65\x65\xe2\x0d\x45\x51\x2a\x39\x6c\x2b\x82\x72\x81\x05\x00\xd0\x77\xef\xde\x6d\x04\x83\x41\x75\x8a\xbf\x1d\x28\x3f\x5f\x35\x7e\xf7\xc5\x42\x77\x77\x37\xdb\xb6\x6d\x9b\xa1\x28\x4a\x0a\x04\xe7\x8e\x37\x67\xbf\xd6\xe7\x2f\x9e\xde\x32\xea\xbc\xaf\x3e\x27\x35\x11\x00\x29\x67\x29\xd1\x13\x28\xbc\x96\x70\x95\x7e\x51\xce\x08\x4a\x4e\xce\x08\x0a\x85\x42\xba\xa2\x28\x49\x10\x9c\x8d\x05\x0a\xfa\x79\x5f\xb1\x6b\xdd\x84\x7c\xbb\x3f\x6f\x0b\x95\x28\xd7\x47\xdc\xda\xf9\xcb\xae\xd2\x5b\x9c\x20\x86\xb2\x07\x72\xa6\x12\x32\x33\xca\xb5\xdc\x09\x24\x50\xa3\xd1\x5d\xbf\xff\x7a\xe8\x1b\x42\x95\x76\xc0\x84\xdd\xe8\x3d\x74\xd7\xf0\xa3\x8c\xa2\xbf\xa7\xa7\x47\x5d\x2b\x0d\x33\x3d\x2a\x1d\xd6\x50\xe9\x3a\x06\x04\x60\x65\x1d\x51\x58\x4b\xda\x04\xae\xf6\x45\x54\xa7\xba\x72\x27\x9d\xef\x2e\x5f\xc3\x0b\x6b\xa9\x58\x59\x12\x27\xcb\x47\x61\xb6\x2e\x25\x33\x56\x09\x2b\xdb\x01\xb4\x24\x70\xc7\xfa\x71\xfb\x7d\x8a\x26\x56\x95\x22\x2e\x1b\xc4\x3b\xe2\xd6\x8f\xa7\x9d\x46\x9f\xa2\x28\xea\xa9\x53\xa7\x56\xac\x35\xfa\x6a\xc6\xa9\x53\xa7\x78\x5b\x5b\x9b\x39\x69\x8a\x1a\x85\x35\x15\x5d\xc4\x55\x43\x34\xad\x69\x9a\xfa\xf5\xaf\x7f\xfd\x3a\xd5\x5d\xb6\x75\x4c\x45\x51\x8a\xa8\xd8\x3a\xd6\x35\xe2\xe5\xbf\xe3\xb0\x9a\x6f\x98\xb3\x25\x87\xcc\x48\x80\xb2\x8b\x95\x80\xc0\x29\x1b\xb4\xb5\x75\xdc\x7e\x5b\x35\x3f\x8c\x80\x40\x36\xa8\xbd\xa7\xa1\xf0\x82\x28\x8a\x79\x4d\xd3\x78\x22\x91\x58\x23\xc1\x34\x28\xdb\x48\x5c\x51\x14\x5d\x96\x65\x15\xd6\x9b\x9b\x85\xd5\x28\x4b\xed\xee\xee\x36\x7f\xfa\xd3\x9f\xce\x28\xbc\x58\x2c\xc6\xbb\xba\xba\x98\xcb\xe5\x32\x65\x59\xd6\xca\x64\x52\x93\xc9\xa4\xde\xd7\xd7\x67\x3e\xf1\xc4\x13\xe6\x5c\x6d\xe9\x67\x9d\xda\x0f\x1c\x38\x20\x01\x68\xf4\x14\xc4\x0f\x7c\xe2\x78\xe3\x97\xab\x49\x7c\x00\x00\x93\x70\xf5\xf1\x3b\x46\x3f\x9c\x74\x95\x8e\x66\xb3\xd9\xdc\x6a\xef\xf8\xf5\xab\x8c\xb9\x04\x6a\x00\xc8\xa5\x1d\x46\xef\xb0\x5b\x3b\xd7\x34\x61\xaf\xaa\x20\xbd\xc0\x89\x3d\x7a\x51\xd9\xff\xec\x96\x54\xb7\xa2\x28\x6a\x5b\x5b\x9b\xb1\x56\x1e\x76\xe1\xa8\xf4\x1e\xc2\xa4\x84\x91\x64\x32\x89\xc5\x68\x9e\x39\x6b\xa5\x50\x9f\xcf\x47\x3c\x1e\x0f\x40\x20\x01\xf0\xcf\x95\xf9\x32\x19\xde\x82\x6d\x43\x5f\x7d\xf1\x85\xa2\xc4\x46\x7d\x3e\x9f\xbe\x52\x4b\xc2\x9b\x19\x7b\xf6\xec\xa1\xbb\x76\xed\x12\x3c\x1e\x8f\x2c\x19\xc4\xed\x2d\xd8\x42\x8a\x26\xfa\x4c\xca\x05\x49\x71\xf0\x70\x38\xcc\x5b\x5b\x5b\xf9\x3b\xef\xbc\xb3\xe0\xb1\x9d\x95\x00\x7d\x7d\x7d\x3c\x1a\x8d\x12\x00\xc2\x84\xdd\xe0\xb7\x8e\xd4\x3c\x68\x9b\xc3\xf3\x54\x01\x05\xb1\xb9\x34\xc1\x13\xab\x2f\xbc\x24\xcf\x10\x8a\x5c\xc3\xcc\xd8\xbb\x77\x2f\x6d\x68\x68\x90\xe4\x12\x09\xdc\x77\xc1\xf3\xc7\xbb\x7b\xbc\xff\x74\xfb\x25\xe5\x33\x91\xe1\x9a\xff\xb9\xe3\x92\xeb\x37\x7d\x05\x5b\xd3\xa8\xa2\x9f\x13\xdd\x8e\x62\x24\x12\x31\x17\x6a\x6c\xcf\x59\x2b\xb8\xad\xad\x8d\xcb\xb2\x4c\x4c\x0a\x9b\xa3\x44\xc3\xa1\x8c\x3c\x67\x1e\x7c\x05\x9e\xa2\xb8\x71\x44\xd1\x4f\x4c\x38\x8d\x7e\x9f\xcf\xa7\xad\xad\x08\xaa\xc3\x9e\x3d\x7b\x68\x43\x43\x83\xe4\xd0\x69\xcb\x47\x4e\x07\xbe\xb9\x71\xcc\xf9\xbb\x22\xa3\x5e\x02\x42\x09\x08\x15\x38\x71\xfb\xf3\xd2\xdd\x9b\x93\x8e\x07\x2e\x78\xd5\x9f\x1b\x0e\x9a\x6e\x6b\x6b\x33\x17\xa2\x65\xe7\x24\x80\x2c\xcb\x24\x14\x0a\x71\x00\x34\x6d\x37\xd8\xb6\x61\xd7\x6e\xca\xab\xeb\x12\x46\x40\x68\x63\x56\x6a\x10\x39\x0b\xf4\x00\x00\x0b\x4d\x49\x44\x41\x54\x3f\xdb\x90\xff\x29\x91\x84\x7c\x30\x18\x34\x17\xd2\xd9\xea\x57\x0d\xbb\x76\xed\x12\x00\x78\x1f\x3a\xe7\xfd\x3f\xcd\x13\xf6\x47\x66\xfa\x9e\x6c\xd2\xfa\x60\x46\xbe\xf5\x6c\x63\xfe\x19\xc9\xbe\x30\x2d\x3b\xa7\x20\x87\x87\x87\x79\x79\x1f\x1c\xd7\x6c\x5c\x70\xab\xc2\xe6\x40\x4e\x6a\xad\xf6\x06\x0e\x43\x08\x08\x9c\x18\x83\x5e\xf5\xb8\xa2\x28\xda\xda\xb2\x70\x76\xec\xdd\xbb\x97\x3a\x9d\x4e\x87\x37\x2f\x46\x3a\xfb\xea\x3e\x3f\x57\x85\xd6\x1a\x9d\xb6\x5c\x56\x4a\x27\xc7\x9d\xc6\xf9\x85\x68\xd9\xaa\xc2\xb6\xe5\x44\xc6\x02\x80\xf8\xf1\xe6\xec\x7f\xcd\xb6\xa5\x79\x3a\xec\xb8\xe4\xfa\xa3\xe6\x71\x79\x27\x00\xe7\xce\x9d\x3b\x57\x6c\xff\xc0\xcd\x80\x4a\x7d\xc6\x60\x46\xbe\xb7\x9a\x8c\x1f\x02\x82\xd6\x94\xfd\xfd\x00\x9c\x65\x57\xf7\xbc\x50\xd5\x09\x93\xd2\xae\x52\x69\x87\x71\xfa\x6c\x15\x9d\x2c\x26\x43\xe0\xc4\xfe\x60\x8f\xf7\xf3\x4e\x9d\x86\x01\x5c\xd9\x2b\xbf\x86\x19\x21\xc9\x06\xad\xaf\xfa\xcb\x26\xf1\x62\x81\xe9\x78\x55\x9f\x50\xd6\x02\x39\x10\xc4\xdf\x68\xcd\xfc\x40\x15\xd9\xb4\x85\x09\x66\x82\x5b\x13\xdb\x1e\x3a\xe7\xfb\x3b\xca\x10\x50\x14\x45\xda\xb3\x67\xcf\x1a\x09\x66\xc1\x84\xc3\xa8\x7a\xfb\x50\xb2\xa6\x14\x5f\xe8\x7d\xaa\x16\xc2\xe4\xe4\xcb\x9c\x6c\x76\x77\x35\x65\x9e\x99\xef\x44\xde\x32\x2e\x3f\xfc\xde\x3e\xcf\xa7\xc0\xe1\x09\x85\x42\xe2\x72\xe7\x0e\xde\x44\x30\x86\x6a\xb5\xb3\x45\xd1\x4c\xcf\xf5\x45\x93\x70\xa3\xd7\x5f\x7c\x1d\x58\xd8\xee\xec\x79\xb5\x8e\x95\x24\x09\x0d\x0d\x0d\x0c\x00\x4b\x28\xa5\xec\xc6\xa4\xfd\x5e\x67\x49\xa8\x3a\xb7\x8d\x80\xa0\x21\x2b\xdd\x65\x50\x9e\x1c\x76\xeb\xe7\xfc\x7e\xbf\xee\x72\xb9\xf8\xd4\x24\x85\x5f\x65\xb4\xb6\xb6\xc2\xe9\x74\x52\x53\xe0\x92\x49\xb9\xa7\x75\xdc\x7e\xdb\xcc\x09\x23\xc0\x99\x50\xfe\x85\x73\x8d\x85\x1f\x02\x88\x6b\x9a\x56\x9c\xaf\x11\x38\x2f\x02\x0c\x0d\x0d\x55\xfa\xd9\x98\x8c\x82\xa7\x9c\x86\xb9\x25\xe1\xdc\x39\x53\x46\xca\x74\x20\x20\xa4\x39\x2d\x77\x16\x24\xf3\x62\x42\x29\xf5\xfa\xfd\xfe\xd2\x1a\x09\xae\x42\x10\x84\x2b\x09\x23\x23\x8a\x9e\x16\x18\xa9\x0b\x66\xa5\x0d\x53\xc7\x98\x83\xe3\x5c\xa0\xf0\xc6\xcb\x9b\xd2\x5f\x29\xef\x3f\x48\x4d\x97\xf1\x33\xe7\xfd\xe6\xfb\x80\xa6\x69\x56\x1e\xd0\xc8\xd8\x4d\xcd\x6e\xd0\x60\x30\x2b\x57\x5d\x4f\x10\x00\x08\x88\xd0\x3a\x6e\x7f\x7f\x41\x32\x07\x12\x4a\xe9\xfc\x1a\x09\xae\x22\x91\x48\xf0\xb2\xf3\xcd\x04\x81\x76\xd1\xa3\x0d\x0e\xd6\xa9\xc3\x84\x13\x99\x72\x42\x8a\x36\x56\xb8\xe8\xd1\xfa\x5e\xdd\x30\xf1\x44\x57\x73\xf6\x3b\x8c\xe2\x0c\xac\x66\x9c\xc5\x27\x9e\x78\x62\x69\xa7\x80\xca\x03\x06\x83\x41\xae\x28\x8a\x09\x02\x33\xee\xd6\xd2\x1b\xc7\x1c\x77\x3b\x4b\x42\x55\x3b\x88\x2a\xa0\x20\x62\x38\x65\x7f\x50\x17\xd8\xe8\x88\xa2\xc7\xfc\x7e\x7f\x29\x18\x0c\xf2\x35\x47\x91\x15\x26\x8e\x44\x22\x86\x28\x8a\x2a\x08\x32\x39\xbb\x39\x74\xde\x5f\x7c\xeb\xf4\xba\xdc\xd1\xd3\xeb\x72\x3f\xeb\xad\x2f\xfe\x2c\xed\x34\x8e\xc1\xca\xf8\x19\x06\x50\x78\xf5\xd5\x57\xf9\x7c\x3b\x87\x03\x0b\x20\x00\x60\xc5\xa1\xa3\xd1\x28\x07\x50\x62\x14\xc6\xa8\x5b\xcb\x6f\x19\x75\x76\x08\x55\x7a\x08\x2b\x20\x20\x62\xcb\xb8\xfd\x41\xc9\x24\xec\x62\x9d\x76\x46\x71\x2b\xa5\xd6\xd6\x56\x76\x23\xc1\x8d\xd5\x86\xce\xce\x4e\x1a\x0e\x87\xc9\x7c\xb5\xdb\xa9\x53\xa7\x2a\x24\x28\xc2\x4a\xee\x18\x85\x95\xdb\xd7\x5f\x3e\x2e\xa1\xbc\xe5\xec\xd5\x57\x5f\xe5\x0b\x8d\x0a\x2e\x88\x00\x80\xb5\x89\xb4\xb9\xb9\xd9\x04\x50\xca\xcb\x4c\x55\x6d\x4c\x5e\x9f\xb2\x6f\xab\xb6\x64\x4a\x05\x04\x84\x06\x33\xd2\xaf\xf9\x73\xb6\xd0\x60\x9d\x76\x42\x52\x1c\xc5\x48\x24\xc2\x4d\xd3\xc4\xcd\xec\x31\xac\x44\xf2\xea\x7d\x7e\x5b\x43\x5d\xbd\xed\xf6\xbb\xa2\xdc\xe5\x72\x61\x3e\x44\x28\x1b\x74\xcc\xe7\xf3\x69\xa2\x28\x16\x60\x25\x8b\x64\xca\x7f\x8b\x3d\x3d\x3d\xe6\x13\x4f\x3c\xc1\x16\xf2\xe6\x57\x70\x43\x95\xd5\xca\xf5\xf8\x25\x00\x8d\xe0\xb8\xe3\x81\x58\xdd\x5f\x44\x46\x5c\x73\xee\x77\x9b\x09\x29\x47\xe9\xc4\xb3\x5b\x52\x9f\x1a\x75\xeb\xa7\x61\x75\xc2\x5c\x92\xd4\xec\xa5\x44\x24\x12\xa1\xd1\x68\x14\xb2\x2c\xdb\x6d\x06\xf1\x3e\x10\xf3\xfe\x29\xe5\x10\x9f\xde\x3a\xf6\x77\x20\xc8\x9d\x39\x73\xc6\x58\xce\xc6\x14\x73\x61\xc1\x1a\x00\xb0\xa6\x82\xf2\xaa\xa0\x04\x82\xd2\x60\x9d\x36\x1c\xcc\x48\xb7\xd6\xaa\xe2\x82\xf6\x86\x39\x0c\x21\x78\x4b\xa2\xe6\xc3\x8c\xf0\xec\x88\xa2\xf7\xba\xdc\x8a\x19\x89\x44\x4c\x51\x14\xc9\xcd\x10\x4a\xde\xbb\x77\x2f\x6d\x6f\x6f\x17\x45\x51\x74\x35\x66\xa4\xdb\x1f\xed\xae\x3f\xd8\x34\x61\xff\x0d\x6f\x41\xbc\x27\x2f\x99\x17\x12\x4a\xa9\xb7\xa1\xa1\x61\x55\x75\x51\xbb\x21\x02\x00\x96\x9a\x2a\xef\x25\xd4\x18\x45\x69\xc0\xab\x8e\x86\x53\x8e\xdb\x9d\x25\xa1\xaa\xba\x02\x53\x41\x39\xb1\x37\xa7\xe5\x87\xc2\xe3\xf6\x3b\x92\x35\xa5\x1e\xb5\x86\x4c\x84\x42\x21\xb3\xad\xad\x8d\xeb\xba\x4e\x6e\x44\xdd\x2d\x15\x2a\xea\xde\xe9\x74\xca\x92\x41\x02\x3b\x2f\xd4\xfe\xc9\xfd\xef\x7a\xbf\xe4\x2a\x09\x1b\x09\xac\xa5\x6f\xd3\x84\xfc\x9e\x0b\x5e\xf5\x48\x41\x62\xc9\x48\x24\x52\x5a\x2d\xa1\xf1\x1b\x26\x00\x00\x64\xb3\x59\x84\xc3\xe1\x12\x00\xad\x24\xf0\x62\xbf\xb7\x38\xba\x31\xe9\xb8\x43\x36\xa9\x63\x21\xd7\x23\x20\x70\xe9\xe2\xfa\x5b\x46\x6b\x3e\x56\x5b\x14\x3d\x97\x5d\x7a\x1f\x6a\x6c\x5a\x38\x1c\x66\x95\xfc\x84\xd5\xa0\x11\x2a\x82\x57\x14\x45\xa6\x0c\xb5\xb7\x8c\x3a\x1f\x7e\xf8\xac\xff\x2b\xe1\x71\xc7\x63\x02\x88\x3c\xf9\xbb\x02\x27\x8e\xd0\x84\xb4\xfd\x5c\x43\xe1\x59\x22\x09\x85\xd6\xd6\x56\x73\x35\x18\xbb\x8b\x42\x80\xb1\xb1\x31\xee\x72\xb9\xe0\xf7\xfb\x4b\x00\x8a\x9a\x8d\xe7\x07\xeb\xd4\xb1\x0d\x63\x8e\xdb\x64\xb3\xba\x0c\xa2\xe9\x40\x41\xa4\x40\x5e\xba\x27\x32\x52\xf3\x98\xa3\x44\x1d\xc9\x1a\x63\x90\x38\x6d\x7a\x28\x14\x62\xd1\x68\x94\xbb\x5c\xae\x79\x5b\xd7\x37\x8a\x48\x24\x42\xdf\xff\xfe\xf7\x93\x9d\x3b\x77\x0a\x8a\xa2\xc8\x84\xa3\x76\x53\xd2\xb1\xeb\x03\xe7\x7c\xff\x77\xdb\xb0\xeb\x7f\xd9\x4d\xa1\x61\x26\xc3\xca\x51\x12\x82\x2e\x5d\xa8\xe9\xf3\x15\x8f\x39\x6b\x9c\xaa\x24\x49\x7c\x25\xb6\xcf\x4d\xc6\xa2\x96\xd7\xad\xd4\xae\x81\xb5\x49\xa1\xcd\x53\x10\xdf\xfb\x68\xb7\xff\x93\x75\x45\x5b\xd5\x65\xe7\x67\x43\x89\xb2\x44\x4f\xa0\xf0\xfd\xd3\xa1\xdc\xa1\xcb\xae\xd2\x79\x6e\x55\xee\x32\x34\x4d\x33\x96\x72\x67\x4f\x34\x1a\xa5\xad\xad\xad\x95\x50\xad\x08\x40\xb2\x97\xa8\xa7\x2d\xe1\xd8\x7d\x5b\x5c\xf9\x03\x6f\x41\xbc\xbb\xda\xbd\xfe\x1c\x9c\xfd\xac\x6d\xfc\x4f\xbb\x83\xf9\xef\x02\xc8\xcc\x54\xbb\x67\xb9\xb0\xe8\xf5\x95\x2b\x9d\x3b\x00\x78\x00\x6c\x72\xa9\xc2\xce\x3d\x67\x7d\x7f\xdc\x98\x95\x5b\x16\xeb\x1e\x0c\x5c\x4f\xba\x4a\xaf\xbc\xd3\x90\xff\xc1\x05\xaf\xfa\x72\xda\x61\x24\x40\xa0\xa3\x5c\xab\x38\x9b\xcd\xb2\x6c\x36\x3b\x5b\xc3\x86\x59\xd1\xd1\xd1\x41\x7d\x3e\x1f\x26\x55\x05\x15\x01\x48\xa2\x49\x9c\xeb\x26\xe4\xad\x5b\x12\xce\x0f\xaf\x1f\x73\x7c\x48\x36\x68\xcb\x42\x06\x50\x17\x58\xea\xfb\x3b\x12\x1f\x49\xba\x4a\x27\x34\x4d\xcb\xcd\x56\xc5\x6b\xa9\xb1\x14\x05\xb6\xa7\x92\x20\x2c\x19\xe4\xce\x07\x7b\xbc\x7f\xb8\x29\xe9\xd8\x3e\x5f\x3f\xc1\x5c\x30\x09\xcf\x24\x6b\x4a\xaf\x0d\x78\xd5\x97\x2e\x7a\xd4\xa3\x09\x57\xe9\xbc\x66\xbb\x52\xb8\xba\x52\xbc\xfa\xba\x22\x8f\x93\x3e\xd3\x29\x9f\x2b\x87\x08\x0e\xc9\x53\x14\xfd\xa1\x8c\xbc\xa3\x35\x65\x7f\x5f\x73\x5a\xde\xe5\x28\xd1\x4d\xd5\xbe\xed\xb3\x21\xe9\xd4\x4f\x7c\xff\xf6\xc4\x3e\x5d\xe4\x83\xfd\xfd\xfd\xfa\x4a\xf5\x58\x5c\x12\x02\x00\x57\x72\xd9\x45\x58\x7b\xd7\x5a\x28\xc3\xf6\xbb\x07\xdd\xfb\xee\x1a\x74\x3f\x20\xf0\xa5\xa9\x2a\xca\xc1\x99\x41\x79\x72\xdc\x61\x74\x8f\xd5\x94\xce\x25\x5d\xa5\x9e\x8c\x6c\xf4\x67\x1c\x66\x5c\x15\x59\x5a\x13\x59\x41\x17\x98\xc1\x01\x06\x02\x80\x03\x02\x27\xa2\x64\x12\xd1\x5e\xa2\x6e\x47\x49\xf0\x7a\x8a\x62\xd8\x53\x14\xc3\xbe\xbc\xed\xd6\x40\x4e\xda\xea\x2c\xd1\x4d\x84\x13\xe7\x62\x0f\x14\x07\x70\xae\x21\x7f\xf0\xd9\x2d\xa9\xbf\xc2\x0a\x4e\x05\x4b\x56\xd6\xed\xb9\xe7\x9e\x63\x9d\x9d\x9d\x46\xb9\xeb\xe5\x79\x46\xa1\xbf\xd6\x9a\xc9\x8d\x2a\xfa\xe0\x03\x3d\xde\x8f\xd7\x2c\x70\x99\x38\x1b\x08\x08\xb5\x31\x12\x08\xe4\xa5\xfb\x03\x79\xe9\x7e\x24\x2a\x25\x8c\x39\xe3\x80\xce\x09\x0a\x8c\x70\x95\x13\x18\x1c\x60\x04\x10\x29\x27\x22\xe1\x70\x52\x0e\x3b\x40\xa4\x25\x7b\x23\xa6\x40\x15\xcd\xcc\x40\x9d\x7a\x01\x56\x26\xcf\x8a\x14\xd4\x00\x16\x69\x15\x30\x13\x06\x06\x06\xb8\xa6\x69\xbc\xb9\xb9\xb9\x04\xa0\x00\x82\x89\xb4\xd3\x18\x89\x05\x0a\xe7\xeb\x0a\xe2\x3a\x4f\x51\xf4\x2f\xf6\x94\x30\x15\x95\x75\x38\x01\x11\x29\x88\x43\xe0\x44\x11\x38\xa9\x15\x39\xf1\x08\x9c\xb8\x29\x27\x2e\x0a\x22\x13\x10\x61\x39\x84\xcf\xc1\x71\xd1\xa3\xf5\xfe\x38\x92\xfc\xa7\x4b\x1e\xfd\x65\x58\x3e\x7e\x6d\xa5\x9c\x43\x4b\x4a\x00\xc0\x8a\x1e\x76\x75\x75\xb1\x48\x24\x52\x12\x45\x51\x05\x90\xd1\x45\x9e\x8a\x05\x0a\xef\xe6\x25\xd3\x0c\x66\xa4\x56\x1b\xa3\xb6\xa5\x7e\x8e\xd5\x00\x4d\x60\xea\xab\x1b\x26\x7e\x72\x64\x53\xfa\xdf\x54\x89\xbf\x09\x2b\xa8\x93\x8d\xc7\xe3\xc6\x4a\x45\x41\x97\x9c\x00\x15\x9c\x3a\x75\x8a\xb7\xb6\xb6\x9a\x4e\xa7\x53\x85\x55\x58\x31\x9d\x50\x4a\x03\x3d\x81\x42\xaf\x4b\x17\xfc\x75\x05\xb1\x61\xa9\xb5\xc1\x4a\x81\x83\xa3\xcf\x5f\x3c\xfb\xd4\xad\xc9\x7f\x1d\xf0\x69\x4f\x73\x82\xd3\xb0\x2a\x94\x4c\x24\x93\xc9\xd2\x42\xe2\xf8\x8b\x85\x65\x23\x00\x00\xbc\xf3\xce\x3b\x5c\x92\x24\xde\xd0\xd0\xa0\x03\xc8\x03\x48\xeb\x22\x4f\xbe\xeb\x2f\x9e\xbb\x54\xab\x25\xbc\x05\x5b\x63\x8d\x4e\xdd\xbf\x2c\x44\xe0\xe0\xb8\xec\x2a\xc5\x9f\x6b\x1f\xff\xde\x9b\x2d\xd9\xff\xd0\x6c\xfc\x4d\x58\xa5\xe7\x46\x00\xe4\xcf\x9c\x39\x63\x3e\xff\xfc\xf3\x2b\x1a\x17\x58\xb1\x91\xde\xb7\x6f\x1f\x55\x14\x45\x84\x55\xd5\xc2\x0f\x6b\xa5\xd0\xb6\x29\xe9\xec\xbc\x7b\x50\xd9\xe5\xcb\xdb\x1a\x6f\x56\x22\x70\x70\x8c\x3b\x8d\xe4\x1b\x2d\x99\x17\x63\xf5\x85\x97\x18\x45\x2f\xac\xa2\x0f\x49\x58\x35\x87\x8d\xd5\xb2\x65\x7e\x45\x47\x38\x1a\x8d\xd2\x2b\x8d\x9f\xac\xe5\x62\x85\x08\x1b\x36\x26\x1d\xef\xb9\xfd\x92\x72\x5f\x30\x23\xb5\xdc\x2c\x44\xe0\xe0\x48\xb8\x4a\xf1\x13\x4d\xd9\x57\x7a\xeb\x0b\xbf\x30\x29\xce\xc3\x12\x7c\x02\xe5\x5e\x41\xe5\x36\x2f\xab\x42\xf8\xc0\x0a\x13\xa0\x82\xb2\xcf\x80\xc2\x6a\xa9\x52\x21\x42\x88\x70\x84\x83\x19\xe9\xb6\xc8\xb0\x6b\xe7\xc6\xa4\x63\x8b\x64\x52\xfb\xaa\x78\xe0\x29\xd0\x29\xd3\x2f\xf8\x8a\xb1\xd3\xa1\xfc\xd1\x78\xad\xd6\xc5\x09\x06\x61\x95\x6a\xa9\x08\x5e\x8d\xc7\xe3\x6c\x35\xe6\x36\xac\xaa\xf1\x2c\x27\x98\x54\x88\xe0\x82\x15\x53\x68\x04\x10\xb2\x97\x68\x78\x53\xd2\x71\xd7\xe6\xcb\xce\xed\xa1\x09\xa9\xc5\xc6\xe8\xb2\x97\xa6\x9f\x0c\x83\x72\x63\x44\xd1\x86\x7a\x02\x85\xd3\xbd\xfe\xe2\x9b\x45\x89\xf5\xc3\x4a\xd9\x1a\x81\xd5\x5e\xae\x80\x55\x2c\xf8\x0a\x56\x15\x01\x2a\x98\x44\x84\x8a\x8d\x50\xd1\x0a\x01\x00\x01\xa7\x46\x5b\x5a\xd2\xf6\x6d\x2d\xe3\xf6\xb6\xa6\xb4\xdc\xe2\xd2\x04\x0f\x5d\xe2\x9f\x52\x69\x00\x71\xa9\x56\x1f\x1c\xf0\xaa\xb1\xc1\x3a\xb5\x3b\x27\x99\x03\x20\x18\x81\xf5\xa6\xa7\x60\x15\x7b\x52\x01\xe8\xab\x5d\xf0\x15\xac\x4a\x02\x54\x50\x8e\x2e\x02\xe5\x60\x0c\xae\x92\xc1\x03\x8b\x10\x5e\xca\xe0\x77\xab\xe2\xba\xc6\xac\xb4\xa1\x21\x2b\xb5\xf8\xf2\xb6\x80\xb7\x20\x7a\x1d\x25\xc1\x45\x39\x28\xaa\xea\xcf\x7d\x15\x1c\x1c\x8c\x80\xa9\x22\x2b\xa4\x1d\x46\x3a\xe9\xd2\x47\x12\xae\xd2\xd0\xb0\x5b\x3b\x3f\xe1\x30\x2e\x9a\xf4\x4a\xf9\xb5\x54\xf9\xc8\xa1\xfc\xb6\xa3\xca\x3e\x3d\xab\x09\xab\x9a\x00\x15\x44\x22\x11\xda\xd6\xd6\x36\x39\x1c\x2b\xc2\x72\xa1\x3a\x61\x4d\x15\xee\xc9\x07\xe1\x70\xc9\x06\x75\xd7\x68\x82\xcf\xad\x09\x5e\x7b\x89\xba\xed\x06\x75\xda\x4b\xd4\x2e\x30\x22\x0a\x96\xfb\x97\x32\x0a\xc3\xa0\xdc\xd0\x44\xa6\x6a\x22\x2b\x14\x6c\x66\x26\x27\x9b\xe9\x9c\x6c\xa6\x8a\x36\x36\xce\xad\xbd\x90\x19\xe0\x9a\x63\xb2\xc0\x75\x00\x46\x32\x99\x64\xb1\x58\x0c\xd3\xf5\xe6\x5d\xed\xb8\x29\x08\x30\x19\x53\xc8\x50\x39\xa4\x49\x87\x7d\x9a\x43\xc2\x55\xe2\x54\x6c\x87\x4a\x6f\xa3\xca\x9e\x47\x7d\xd2\xa1\x4e\x73\x54\xc2\xcd\x06\xac\x22\x4d\x37\xad\xd0\x27\xe3\xa6\x23\xc0\x54\x74\x74\x74\xd0\x60\x30\x78\xa5\xe9\x35\x26\x87\x73\xa7\xff\x3c\x35\x12\xc9\xa6\x1c\xc6\x94\xbf\x0c\xb0\xda\xbe\x0f\x0f\x0f\x57\xdd\x91\xf3\x66\xc1\x4d\x4f\x80\xe9\x10\x8d\x46\xa9\xcf\xe7\x83\x24\x49\xf0\xf9\x7c\x90\x65\x19\x98\x7b\x27\x34\xd3\x34\xed\x4a\x53\xc7\x85\x26\x93\xac\x61\x0d\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\xab\x1e\xff\x1f\x26\xf5\xd6\xf1\x64\x30\x2a\xac\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x81\x22\x7c\x0b\x92\x2b\x00\x00") +var _web_uiV1StaticMstile70x70Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x2b\x6d\xd4\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x7b\x70\x1b\xd7\x79\xef\xef\x9c\x5d\xec\x02\x20\x16\x04\x01\x10\x24\x20\x3e\xa0\x17\x29\xcb\x90\x2c\x1b\x7e\x51\x71\x43\xc5\xb1\xe5\xc4\x95\xe3\x1b\xc5\x49\xa3\xb6\xa9\xfa\x98\xea\xf6\xde\x3e\x72\xd3\xde\x4e\xa6\xcd\x74\x32\x99\xde\x4e\x26\x93\xe9\x6d\xd3\xdb\x34\x13\xb5\x79\x28\x69\xea\x3c\x5a\x25\x8e\xed\xc4\xaf\xd8\x96\xe3\x48\x7e\x88\xb2\x1e\xb4\x2c\xc2\xa4\x44\x52\x14\x48\x42\x20\x08\xe2\xb9\xbb\xd8\x3d\xe7\xfe\xb1\x80\x44\x51\x7c\x80\x14\x5f\x4a\xf8\x9b\x59\x13\x23\x63\x1f\x38\xdf\x6f\xbf\xf3\x9d\xef\xfb\xce\xf7\x01\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\x6b\x58\xc3\x1a\x7e\xb5\x40\x56\xfa\x01\x96\x0b\xd1\x68\x94\x02\x40\x30\x18\xbc\xe6\xdf\xc7\xc6\xc6\xa0\xeb\x3a\x00\xa0\xab\xab\x8b\x2d\xff\x93\xad\x2c\x7e\x69\x08\x10\x8d\x46\xa9\xcf\xe7\x83\xcf\xe7\x83\xa2\x28\x00\x40\xcb\xc7\xd4\xcf\x98\xf2\x99\x4d\xf3\x97\x01\x80\xa6\x69\x6c\x6c\x6c\x0c\x63\x63\x63\x38\x76\xec\xd8\x2f\x25\x39\x6e\x5a\x02\x74\x74\x74\xd0\x60\x30\x08\xbf\xdf\x5f\x11\x2e\x05\x20\x82\x43\x14\x19\x91\x6a\x74\xc1\xed\xd2\x84\x40\xad\x2a\x36\xc9\x06\xf1\x3b\x4a\x82\xd7\xa1\xd3\x5a\x91\x11\x3b\xe5\x44\x22\x1c\x94\x51\xae\x9b\x04\xba\x6a\x63\x19\xd5\x66\x4e\xa8\x22\x4b\xe6\x64\x73\x24\x2b\x9b\xf1\xac\x6c\xa4\x74\x91\xab\x9c\xc0\x00\xae\x1c\x4c\xd3\x34\xd6\xdf\xdf\x8f\x23\x47\x8e\xfc\x52\x10\xe2\xa6\x22\x40\x67\x67\x27\x0d\x87\xc3\x90\x65\xd9\x12\x36\x20\xd9\x4c\x62\xf7\xe5\x6d\x4d\x8d\x19\x69\x47\x63\x56\x8a\x7a\xf3\xb6\x2d\x1e\x55\xdc\x24\x9a\x24\x40\x40\xec\xf3\xfd\x81\xdc\xfa\xaf\x61\x12\xa4\x8b\x92\x39\x98\xac\x29\x9d\xbb\xec\x2a\x9d\x19\x51\xb4\xe3\x09\xa5\x14\xcb\x49\x66\x06\x04\x3a\xca\x84\x48\x26\x93\xac\xbb\xbb\x1b\xb1\x58\xec\xa6\x24\xc4\xaa\x27\x40\x34\x1a\xa5\x6d\x6d\x6d\x50\x14\x85\x02\x90\x00\x48\xb5\x45\x31\xb0\x3e\x65\xdf\xd9\x9a\xb2\xbf\x2f\x98\x91\xef\x93\x0d\xd2\x42\x40\xc4\xa5\x7c\x0e\x0e\xc0\x24\x3c\x35\xee\x2c\x9d\x18\xac\x53\x7f\x7e\xc1\xab\xbe\x38\x5c\xab\xc5\x4c\x8a\x02\x00\x1d\x00\xeb\xe9\xe9\x61\x37\x9b\x66\x58\xb5\x04\xe8\xec\xec\xa4\xed\xed\xed\x57\xde\xf4\x1a\x8d\xfa\xdb\x13\x35\xbb\x37\x5f\x76\x3c\x1a\xc8\x49\x3b\x05\x4e\xdc\x2b\xf9\x7c\x1c\xdc\x28\xd8\x58\xac\xcf\x5f\xfc\xc9\xb9\x40\xe1\x87\xc3\xb5\x5a\x8c\x13\x8b\x0c\xd9\x6c\x96\x75\x75\x75\xdd\x14\x5a\x61\xd5\x11\x60\xcf\x9e\x3d\x34\x14\x0a\x51\x00\x12\x61\x70\xb6\xa4\xed\x3b\xb6\x0d\xd7\x7c\x22\x9c\xb2\x3f\x2c\x30\xea\x5f\x75\x0f\x0c\x8b\x0c\xe3\x4e\xe3\x8d\xee\xc6\xfc\x77\xce\x35\xe4\x7f\x52\x90\x58\x0a\x80\x9a\xcd\x66\x8d\x58\x2c\xb6\xaa\x57\x17\xab\x66\x3c\x27\x0b\x5e\x30\x89\x7b\x4b\xc2\x79\xff\xed\x97\x5c\xff\xdd\x97\xb7\xed\x5c\x6a\xf5\xbe\x98\xd0\x04\x16\x3f\xd7\x90\xff\xd6\x5b\xeb\x72\xdf\x4e\x3b\x8d\x21\x94\x89\xb0\x5a\x35\xc2\x8a\x13\xa0\xa3\xa3\x83\x6e\xdb\xb6\x8d\x02\x90\x28\x83\xeb\x96\xd1\x9a\xdd\x77\x0d\x2a\x9f\xac\x55\xc5\x3b\xc9\xca\x3f\xde\x82\x61\x50\x9e\x7a\x27\x90\xff\xe6\x9b\xad\x99\x7f\xcd\xd8\xcd\x38\x00\x35\x99\x4c\x1a\x87\x0f\x1f\x5e\x55\x24\x58\xd1\x11\xde\xb7\x6f\x1f\x55\x14\x45\x02\x87\xb3\x75\xdc\x7e\xf7\x7d\xe7\x6b\x3f\xe3\xcf\xdb\xee\xbb\x99\x05\x3f\x15\x3a\x65\x89\xb7\x9a\xb2\x5f\x3a\xd1\x9c\xfd\x77\x4d\xe4\x49\x00\xfa\x99\x33\x67\xd8\x6a\xf1\x2b\xac\xc8\x48\xef\xde\xbd\x9b\x86\xc3\x61\x0a\xc0\xe9\x2e\x0a\x4d\x9d\x7d\x75\x9f\xde\x30\x66\xff\x38\x01\x91\x56\xe2\x79\x96\x1a\x1c\x40\x56\x36\xba\x5f\xdd\x90\xfe\x6c\xac\xbe\xf8\x0a\x08\x72\xd9\x6c\x56\x7f\xfc\xf1\xc7\x57\x9c\x04\xc2\x72\xdf\x70\xdf\xbe\x7d\xb4\xa1\xa1\x41\x22\x1c\x9e\x1d\x97\x5c\x8f\x3d\xfc\x8e\xff\x6b\xf5\x79\xe9\x3e\x02\xb2\xec\xcf\xb2\x5c\x20\x00\x64\x93\x06\x36\x25\x1d\x1f\x09\xe4\xa4\xa6\x78\xad\x76\x86\x38\x6d\xc5\x68\x34\xca\x00\x60\x78\x78\x98\xaf\xd4\xb3\x2d\xdb\xa0\x47\xa3\x51\xfa\xc8\x23\x8f\x08\xb2\x2c\x3b\x5c\xaa\x10\x7e\xf8\x1d\xdf\x17\x6f\x8b\xbb\xfe\x52\xe4\x74\x45\x97\x73\xcb\x09\x02\x42\xbd\x45\xdb\xf6\x2d\xa3\xce\x87\x27\xec\xc6\xf9\x94\xd3\xb8\x14\x0a\x85\x4a\xc0\xca\x91\x60\x59\xa6\x80\xb2\xca\x17\x01\x38\xc3\x63\xf6\xfb\x76\xf7\x78\xff\x9f\xb3\x24\x84\x97\xfa\xbe\x1c\x1c\x8c\x80\x69\x22\x53\x55\x91\xa9\xaa\x8d\x15\x74\x81\xeb\x8c\x72\xc6\x00\x26\x70\x88\x36\x93\x88\xb2\x41\xed\x8e\x92\xe0\x94\x0d\x62\x17\x19\x11\x81\xa5\xb7\x42\x18\xb8\x7e\x3a\x94\xfb\xbb\x97\x37\xa7\xff\x11\x40\xee\xe0\xc1\x83\x2b\x32\x1d\x2c\xf9\xf2\x6a\xef\xde\xbd\xd4\xef\xf7\x4b\x84\xc3\x7d\xf7\x80\xfb\x77\xef\x1e\x74\x7f\x56\xe0\xc4\xb9\xd8\xf7\xe1\xe0\xd0\x05\xae\x26\x6b\x4a\xc9\x11\xb7\x36\x74\xd9\x55\x8a\xa7\x9c\xa5\x78\x56\x36\x53\xaa\x8d\x4d\x70\x40\x2d\xbb\x70\xaf\x04\x7b\xca\x10\xc1\x21\x12\xc0\x6e\x33\x89\xd3\xa5\x09\xf5\x9e\xa2\x2d\x50\x9f\xb3\x85\x1a\xb2\x52\x53\x43\x4e\x6a\x74\xea\xd4\xb5\xd8\x94\x20\x80\x94\x93\xcd\x1a\x00\x4e\x00\x85\x29\xcf\xb4\x6c\x58\x52\x02\x54\xac\x7c\xd1\x24\x81\xdd\x3d\xde\xcf\x6e\xbe\xec\xf8\xfd\xc5\x1c\x48\x0e\x8e\xb4\xc3\x48\x9e\xf7\x15\x7b\x07\xbc\xea\xd9\x11\x45\xef\xd3\x45\x9e\x00\x90\x29\x1f\x85\xf2\xa1\x97\x0f\x03\xd7\x12\xc0\x0a\x22\x11\x50\x0e\x48\xba\xc8\xa5\x94\x68\xd8\x53\x35\x86\xf3\xbc\xbf\xe8\x06\xe0\xa6\x0c\x5e\x7f\xde\xb6\xbe\x65\xdc\xbe\x65\xc3\x98\x63\x4b\x43\x56\x0a\x09\x9c\xd0\xeb\x9f\x66\x7e\x38\x17\x28\x1c\xed\x6a\xce\x3e\x8f\x15\x12\x7c\x05\x4b\x46\x80\xfd\xfb\xf7\x53\x59\x96\xed\x0e\x9d\x36\xed\x79\xdb\xff\xa5\x50\x46\xfe\xc0\x62\x88\x9e\x03\x28\xda\xcc\x5c\x4f\x7d\xe1\xec\xb9\x86\xc2\x1b\x97\x5d\x7a\x0f\xa3\x48\x00\x48\x02\x48\x03\xc8\xc1\x12\xba\x8a\x49\x51\x3c\x5c\xff\xe6\x4f\xc6\xe4\xb0\xb1\x58\x3e\x24\x00\x4e\x46\xe1\x4a\x28\x25\x4f\x42\x29\x79\x8f\x37\x67\x03\xb5\xaa\xb0\x7e\xf3\x65\xe7\x9d\x5b\x47\x6b\x76\xd4\x15\x44\xff\x42\x08\x7d\xb9\x46\x1f\x7a\x69\xf3\xf8\xd7\x38\xc1\x10\x80\x5c\x36\x9b\x5d\x31\x12\x2c\xc9\x54\x57\x11\xbe\x4b\x13\x36\x3c\x7a\xc6\xff\xd5\xfa\xbc\xb4\xf3\x46\xaf\xc9\xc1\x31\x56\x53\x4a\xbc\xb5\x2e\x77\x34\x56\x5f\x38\x56\x12\xf9\x20\x80\x11\x5c\x15\x7c\xe5\x4d\xbf\x22\xf4\x64\x32\x09\x5d\xd7\x31\x3c\x3c\x3c\xa7\x3b\xb6\x92\x4f\x20\x49\x12\x42\xa1\x10\x30\x39\xc4\x5c\x26\x03\x00\x17\x00\x3f\x80\x00\x65\x68\x6a\x4e\xdb\xa3\x77\x0c\x29\xf7\x35\x8f\xcb\x1b\x28\xaa\xd3\x0a\xaa\xc8\x0a\xdf\xdf\x31\xfa\xf9\x54\x8d\xf1\x0c\x80\xf3\x00\x32\x07\x0f\x1e\x34\x16\x30\x24\x8b\x82\x45\x27\x40\x45\xf8\x8a\x2a\x6c\xfa\xf0\xe9\xfa\x6f\x78\x8b\xb6\x3b\x6e\xe4\x7a\x1c\x1c\xc9\x9a\xd2\xc8\x1b\x2d\x99\x17\x7b\xfd\xc5\x5f\x70\x8a\x41\x00\x71\x58\x82\xcf\x61\xd2\x9b\xde\xdf\xdf\x8f\x78\x3c\x8e\xee\xee\xee\x45\x7b\xa3\x3a\x3b\x3b\x69\x28\x14\xaa\x44\x23\x45\x00\x76\x58\x64\xf0\x02\x68\x04\x47\x4b\x63\x56\xba\xfd\x9e\x01\xf7\xee\xd6\x94\xbd\x8d\xce\x32\xa4\x0c\x9c\x3d\x73\xcb\xd8\xd7\x63\x81\xe2\x77\x00\x9c\x03\x90\xea\xea\xea\x32\x56\x32\x56\xb0\xa8\x04\xa8\x08\xdf\xa9\xd3\xf0\xde\x53\xf5\x87\xfc\x05\xe9\xce\x1b\xb9\x5e\x4e\x32\x33\xaf\xb5\x4e\xbc\x70\xb6\x31\xff\x12\xa3\xe8\x05\x30\x84\xab\x82\xd7\x35\x4d\x33\x96\x33\x39\xa3\xa3\xa3\x83\x86\xc3\xe1\xc9\xa1\xe9\x0a\x11\x42\xe0\xd8\xd0\x9c\x96\xef\xb9\xef\xbc\x67\x4f\x20\x67\x0b\x4d\x9d\x1a\x38\x80\xb7\xd6\x65\x5f\x7c\x65\x63\xfa\x4b\x20\x38\x09\x20\x11\x8f\xc7\xf5\xa7\x9e\x7a\x6a\x45\x6d\x80\x45\x23\x40\xc5\xda\x97\x0d\xd2\xf4\xe1\xd3\xf5\x5f\x6b\xcc\xca\xef\x5d\xe8\xb5\x18\xe1\xac\xbb\x31\x7f\xfc\xe8\xfa\x89\x1f\xaa\x36\xd6\x0d\x60\x10\x40\xc5\xb8\xd3\x57\x43\x12\xc6\x24\x6f\xa6\x88\xab\x53\x43\x13\x65\x68\xdb\x1e\x77\x7d\xb0\xa3\xbf\xf6\x01\xd9\xa4\xf6\xca\xf7\x87\x6a\xd5\xde\x1f\x6e\xbf\xfc\x39\x93\xe2\x38\x80\xa1\x6c\x36\x5b\x58\x0d\x9e\xc0\x45\x21\x40\x79\x30\x24\xca\x10\xd8\x73\xd6\xff\xf7\x1b\xc6\x1c\x8f\x2d\xf4\x5a\x13\x76\x23\xf5\x42\x5b\xea\x3f\x2f\xd6\x69\x47\x00\xf4\xc2\x52\xf7\x69\x00\x6a\x3c\x1e\x67\x2b\xfd\xc6\x4c\xc5\xa4\xbc\x05\x09\x16\x11\x1a\x01\x6c\xa8\x2d\x8a\xd1\x07\x62\x75\x1f\x6f\x4a\xcb\x9b\x0a\x12\x4b\x7f\xf7\xf6\xd1\xbf\xcd\xda\xcd\x97\x61\xcd\xfb\xb9\x95\x9c\xf7\x27\xe3\x86\x09\x10\x8d\x46\x69\x34\x1a\x15\x01\x78\x3a\x7b\x3d\x9f\xde\x71\xc9\xf5\xe7\x0b\xb1\x8c\x39\x38\xde\xf5\x17\x4f\xbf\xd8\x36\xfe\x1d\xd5\xc6\x4e\xc2\x1a\xa8\x24\x80\x42\x36\x9b\x35\x56\xc3\xdb\x32\x1b\x26\x85\xb3\xed\xb0\xa6\x85\x16\xca\xd0\x76\xd7\xa0\xfb\x83\x23\x6e\x3d\x36\xe0\x55\x9f\x06\x10\x03\x90\x7e\xf9\xe5\x97\xd9\x6a\x09\x0d\xdf\x30\x01\x0e\x1c\x38\x20\x02\x70\xdf\x32\xe2\x7c\xec\xc1\x1e\xef\x97\xe9\x02\x62\xf7\x26\xe1\xec\x58\x78\xe2\x99\xae\xe6\xec\x0f\x38\xc1\x59\x58\x2a\x3f\xa3\x69\x9a\xda\xdd\xdd\xbd\xaa\x13\x2a\xa6\xa2\xec\xfb\x10\x01\xb8\x61\x4d\x0b\x1e\x58\x86\xea\x08\x80\x54\x4f\x4f\x8f\xb1\x9a\xd2\xc6\x6e\x88\x00\x65\xa3\xcf\x55\x9f\xb3\xdd\xf1\xd1\x93\x81\xff\x92\x4c\xea\x9d\xef\x35\x34\x81\xa9\xcf\xb5\xa7\xbe\xdb\xe7\x2f\x3e\x0d\x4b\xf8\x23\x00\x72\xf1\x78\xdc\x58\x6d\xea\xbe\x5a\x4c\xce\x71\x28\x1f\x0c\x37\x90\x0f\x10\x89\x44\x68\x38\x1c\x86\x24\x49\x90\x65\x19\xd9\x6c\xb6\xaa\xa5\x6d\x35\x58\x30\x01\xca\x2a\x4f\xb2\x19\xa4\xe9\x37\x4e\x06\x1e\xf7\xe7\xe7\x6f\xf1\x17\x6c\x66\xee\xc9\x5b\x93\xff\x36\x5c\xab\x3f\x0f\x4b\x3d\x8e\x00\x50\xbb\xba\xba\xd8\xcd\xf4\xd6\xcf\x84\xb2\x6d\x04\x4d\xd3\xb0\x10\x4d\x16\x8d\x46\x69\x24\x12\x81\x2c\xcb\x15\x5f\x44\x45\xbb\x5e\x49\x55\xbf\xd1\xdc\x82\x05\x11\x20\x12\x89\xd0\x9d\x3b\x77\x8a\xe0\xf0\x76\xf6\x79\xfe\x6a\xc7\x25\xe5\xcf\xe6\x7b\xa1\xbc\x64\x66\x7e\x14\xb9\xfc\x2f\x97\x95\xd2\xcf\x60\x09\x3f\xa9\x69\x9a\x7a\xe8\xd0\xa1\x9b\x5e\xf0\x8b\x81\xb2\x71\x29\x82\xc3\xb9\x61\xcc\x7e\xef\xb6\x61\xd7\x6f\x35\x64\xa5\xed\x84\x83\x8e\xd5\x94\xce\xbd\xdd\x98\xff\xde\xb9\x40\xe1\x65\x4e\x91\xb9\x91\x4c\xa3\x05\x85\x83\x3f\xf8\xc1\x0f\x12\x51\x14\x9d\x4d\x13\xf2\xaf\xbd\xaf\xb7\xee\x0b\x74\x9e\xb1\xfc\xa2\x68\xe6\x7e\xb4\xed\xf2\x97\x2f\x2b\xa5\xe7\x01\xf4\x00\xb8\x9c\x4c\x26\xb5\xef\x7e\xf7\xbb\x6b\xc2\x87\x35\x85\x6c\xdd\xba\x55\xa4\x0c\x9e\xf7\xbf\x5b\xf7\xd7\xf7\x5d\xf0\x7c\xa9\xae\x68\xdb\x61\x63\xb4\xc1\xc6\x68\xc0\xad\x89\x5b\x37\x8e\x39\x1e\x0b\x66\xe5\xd6\xf3\xbe\xe2\x6b\xb2\xcb\xa9\x06\x83\x41\x16\x8b\xc5\xe6\x1d\x52\x9e\x37\x01\x76\xef\xde\x4d\xfd\x7e\xbf\x24\x9a\x64\xdd\x23\x6f\xfb\xff\xb9\xa6\x24\xac\x9b\xcf\xf9\xba\xc0\xf4\x1f\x47\x92\x5f\x19\xa9\x2d\x3d\x03\xcb\x1b\x36\x96\x4c\x26\xf5\xd5\x96\x2b\xb7\x92\x78\xf8\xe1\x87\x05\x00\xca\x3d\x03\xee\x3f\xba\xfd\x92\xf2\x19\x32\x8d\x9b\x99\x80\x10\x8f\x2a\x46\x14\x4d\xa8\xed\xad\x2f\x1e\x55\x14\xa5\x98\xcd\x66\x31\x36\x36\x36\x2f\x12\xcc\x3b\xaa\x55\x76\x7e\xb8\xa3\x43\xca\x27\xbc\x05\xdb\x8e\xf9\x9c\x6b\x12\xce\x5e\x68\x4b\xfd\x7b\xdc\xa3\x3f\x0b\x4b\xed\xa7\xd6\x84\x7f\x2d\x3a\x3b\x3b\x29\x00\xc9\xa9\xd3\x96\x3b\x86\x94\x4f\xce\xb5\xa4\x6e\x4b\x38\x7f\xbb\x3e\x6b\x8b\x00\xb0\x47\x22\x91\x79\xdf\x6f\x5e\x04\xd8\xb7\x6f\x1f\x05\x60\x57\x54\x61\xc3\x1d\x17\x95\x3f\x9a\xcf\xbc\xcf\xc1\xf1\x66\x4b\xe6\x99\x58\xa0\xf8\x04\xca\x73\xfe\x9a\xf0\xaf\x47\x38\x1c\x06\x00\x7b\x53\x5a\xbe\x57\x32\xa9\x7f\xae\xef\x53\x10\x69\x7d\xca\xf1\x20\x00\x67\x79\x9f\xe4\xbc\x50\xf5\x09\x6d\x6d\x6d\xd6\xfa\x96\xc3\x7d\x6f\x7f\xed\xff\x90\xab\x78\xb8\xc9\xe8\xf7\xaa\xdd\x6f\xb4\x64\xbe\x0d\x4b\xed\x27\x35\x4d\x5b\x13\xfe\x34\x28\xef\x7b\x94\x5c\x9a\xb8\xbe\xda\x73\x3c\x45\x71\x13\xac\xb8\xc4\xd2\x11\x20\x1a\x8d\x02\x80\xdd\x57\xb0\x6d\xd9\x92\x70\xce\xcb\xd5\x9b\x93\xcc\xf4\x0b\x6d\xe3\xff\xca\xa8\xb5\xce\xd7\x34\xad\xb0\x66\xed\xcf\x0a\x5a\xb4\x99\x6a\xb5\x5f\xd6\x05\x66\x60\x01\xc2\x47\xb5\x27\x5d\x79\xfb\x01\xf7\x5d\x83\xca\x1f\xce\x27\xa5\x8b\x83\xe3\xa5\x4d\xe3\xff\x91\x97\xcd\x13\xb0\xfc\xfa\x85\x63\xc7\x8e\x2d\xe4\x59\x7f\x95\xc0\xe2\xb5\x7a\x8f\x41\xb8\x3e\xd7\x17\x39\x38\xfa\xbd\xea\x29\x58\x7e\x81\x79\xa3\x2a\x02\x94\xdf\x7e\xc9\x53\x10\x37\x6d\xbe\xec\xfc\xd0\x7c\x6e\xf0\xae\xbf\x78\xbc\xcf\x5f\x7c\x16\x65\xf7\x6e\x4f\x4f\xcf\xaa\xf1\x83\xaf\x46\x68\x9a\xc6\x00\xa8\x13\x0e\xa3\xff\x5c\x43\xfe\xd5\xb9\xbe\x3f\xec\xd6\x63\x03\x75\xea\x09\x58\xee\xe6\x79\x8f\x6b\x55\x04\x28\xc7\xbf\xdd\x3b\x2e\xb9\x7e\x6b\x3e\x6f\xbf\x26\xb0\xc2\xcf\x37\xa6\xbf\x0d\x82\xf3\x00\x52\xd9\x6c\x76\x55\xf9\xc1\x57\x23\xfa\xfb\xfb\x81\x72\xec\xe0\x95\x8d\xe9\x6f\x5c\xac\x55\x67\x5c\xdc\x8f\x3b\x4a\x89\x67\xb6\x8c\x7d\xb9\x9c\x24\x53\x88\xc7\xe3\xf3\x1e\xdb\x39\xfd\x00\xbb\x77\xef\xa6\x1e\x8f\x47\xb6\x97\xe8\x86\x07\x62\xde\xff\x23\xb2\xea\x08\xc0\x01\xbc\xd1\x9a\x79\xfa\x82\x5f\xfd\x11\x80\x0b\x00\x72\x87\x0e\x1d\x32\xe7\xfb\x80\xbf\x6a\x18\x18\x18\xe0\x91\x48\x84\x89\xa2\xc8\x4c\x0a\xfd\xdd\xfa\x62\x6f\x49\x60\xa2\x5b\x15\xbc\x36\x2b\xbf\x80\xe7\x25\x96\x3d\x13\xcc\xbf\xfe\x7c\x7b\xea\x2b\x79\x3b\x7b\x1d\x96\x76\xcd\x3f\xfe\xf8\xe3\xf3\x1e\xdf\x39\x23\x77\x95\x2d\x5c\x6d\x09\xe7\x6e\xbb\x51\xbd\xe5\x9f\x97\xcc\xd4\xc9\x75\xd9\x1f\xc2\xca\xe2\xc9\xf5\xf4\xf4\xac\xbd\xf9\x55\xe2\xd8\xb1\x63\xd8\xb5\x6b\x57\x0e\x40\xbf\x21\x70\xfd\x78\x4b\x36\x71\xa2\x29\xfb\xa4\xa3\x44\xfd\x04\x84\x16\x6d\x66\xca\xa4\x88\x03\xe8\x47\x79\x7c\xcf\x9c\x39\xb3\xa0\xf1\x9d\x95\x00\xe5\xca\x5a\x22\x38\x3c\x5b\x47\x6a\x1e\x9d\xcf\x85\x4f\x34\x65\x9f\xd3\x45\x1e\x03\x90\xd2\x34\x4d\x5f\x53\xfd\xd5\xa3\x62\x23\x95\x49\x30\x08\x20\xc5\x28\x7a\xf3\x32\xab\x68\x5f\x15\x56\x76\x54\x0e\x40\xa1\xa7\xa7\x67\xc1\x01\xa1\x59\x09\xd0\xd6\xd6\x06\x00\x92\x3f\x6f\x6b\x0b\xe4\xaa\x4f\xee\x2c\xd8\xcc\xcc\xdb\x8d\xb9\xa7\x51\x8e\xee\x75\x77\x77\x2f\xe4\xd9\x7e\xa5\x11\x8b\xc5\x58\x2c\x16\x63\xfb\xf6\xed\x2b\x28\x8a\xa2\xc2\xca\x8a\xaa\xd8\x6c\x0c\x80\x91\xcd\x66\xd9\xd1\xa3\x47\x31\x30\x30\xb0\xe0\x97\x6b\x56\x02\x94\x8d\x3f\xe7\xc6\xa4\xe3\xc1\xf9\x24\x7a\x9c\x6d\xc8\xbf\xa2\xd9\xf8\x79\x00\x69\x4d\xd3\xf4\x5f\x86\xd0\xee\x4a\xa1\x9c\x09\xc5\xa2\xd1\x28\x73\xb9\x5c\x00\x80\x5c\x2e\xb7\x68\x49\x32\x33\x0a\x75\x92\xfa\x77\x6f\x4a\x3a\xee\xaf\xf6\x82\x26\xe1\xc6\xdb\xc1\xfc\xb3\xb0\x92\x38\xd7\xde\xfe\x79\xa0\x52\xcc\x72\x3a\xe1\xce\x26\xf0\x68\x34\x4a\x27\x17\xc0\xd4\x75\x1d\xfd\xfd\xfd\x55\x25\xcd\xce\x48\x80\xd6\xd6\x56\x00\x90\xdc\xaa\xd0\xe4\x2d\xd8\xb6\xcc\x75\xa1\x0a\xe2\x6e\xed\xdc\xb8\xd3\x38\x07\x4b\x65\xad\x68\xce\xfb\xcd\x80\x49\xb9\x84\x57\x8e\xf2\xb6\x71\x23\x9b\xcd\xb2\xd9\x72\x21\xa7\x14\xd2\xaa\x1c\x00\x60\x84\xc3\x61\xbd\xa3\xa3\xc3\x38\x76\xec\xd8\xac\x44\x98\x91\x00\xe5\xc0\x82\xbd\x39\x6d\xbf\x97\xf2\xea\x0a\x37\x70\x00\x3d\x0d\x85\x57\x61\xbd\xfd\x85\xfe\xfe\xfe\x35\xe1\xcf\x80\xb6\xb6\x36\xda\xd1\xd1\x01\x59\x96\xed\x92\x41\xdc\xeb\xc7\x1c\xf7\x36\x4d\xc8\xf7\x50\x46\xc4\xb1\x9a\xd2\xbb\xbd\xfe\xc2\x8b\x50\x94\x91\x03\x07\x0e\xa8\xd3\x95\x9f\xab\xa4\xe1\x0b\x0c\xae\x2d\xa3\x35\x0f\x6c\x19\x75\x7e\xc4\x9f\xb7\x6d\x31\x29\x57\x2f\xd5\xea\xc7\x4f\xad\xcb\x7e\x3b\xee\x46\xf7\xae\x5d\xbb\x0a\xc1\x60\x70\xc6\xbd\x13\xb3\xcd\xeb\x14\x80\xb3\x65\xdc\xde\x51\x6d\xd4\xcf\xa4\x5c\xbf\xe0\x2d\x1e\x03\x90\x02\x60\x3c\xf7\xdc\x73\xab\x82\x00\x93\xaa\x8a\x02\xd7\x3b\xbf\x58\x32\x99\xc4\xf0\xf0\xf0\xb2\x96\x83\xdd\xb5\x6b\x17\x05\xe0\x6c\x4d\xd9\xef\x7d\x7f\xac\xee\x8b\x8a\x26\x6e\x9f\x3c\xce\x3b\xfb\x6b\x53\xc7\x9b\x33\x7f\xf7\x7a\x6b\xe6\x5b\xed\xed\xed\x19\x00\x57\x9c\x68\x15\xe1\x3b\x75\xda\xf4\xeb\x6f\xfb\xff\x21\x94\x91\xf6\x4c\x0e\x1b\xb7\x5f\x16\xef\xdc\x9c\x74\xfc\xce\xeb\x2d\x99\xbf\x79\xbd\x35\xf3\xcd\xf6\xf6\xf6\xdc\xd8\xd8\x98\x31\xdd\x8e\xa9\x69\x09\xd0\xd1\xd1\x51\x99\xff\x5d\xc1\x8c\xb4\xb5\xda\x1f\x95\x70\xe9\xbd\x79\x89\x0d\x02\x28\x68\x9a\xb6\xe2\x79\xef\x93\xd4\xab\x08\x40\xa2\x06\xb7\x4b\x45\xe6\xa1\x26\x5c\x00\x98\x29\x22\xa7\x3b\x68\xda\xef\xf7\xeb\x7e\xbf\x5f\xdf\xb6\x6d\x9b\xb1\x1c\x7b\x0f\xf6\xef\xdf\x4f\x01\x38\x9b\xc7\xe5\x9d\x8f\xbc\xed\x7f\x5c\x64\xc4\x33\xf5\x3b\x22\x23\xde\x7b\x06\xdc\x5f\x14\x18\x71\xfd\x62\xfd\xc4\xbf\xb4\xb7\xb7\xa7\x8f\x1c\x39\xc2\xa2\xd1\x28\xf5\xfb\xfd\x22\xe1\xf0\x7e\xf0\x1d\xdf\x3f\xac\xcb\xc8\x7b\xa6\xbb\x07\xe5\xc4\x79\xef\x80\xfb\x0b\x19\xbb\x91\x7a\xa7\xb1\xf0\xa3\x68\x34\x9a\x99\xce\x1e\x9b\x96\x00\x65\x83\x42\x74\xab\x42\xa8\x46\x17\x9a\xaa\xfd\x61\x03\x75\xea\x69\x10\xa4\x00\xa8\x65\x97\xe6\x8a\xe0\x9a\xca\x63\x25\xee\xa9\x8b\x97\x1e\xa8\x1b\x36\x1e\x75\x64\xcc\x3b\xa9\x89\x00\xac\x04\x4b\x80\x40\x65\x02\x46\xf2\xb5\xc2\x1b\xe3\x21\xdb\x0f\xd3\x41\xf1\x95\x50\x28\x94\x39\x70\xe0\xc0\x92\x15\x72\x8a\x46\xa3\x54\x96\x65\x49\x60\xf0\xbf\xef\xdd\xba\xcf\x4f\x27\xfc\x0a\x08\x08\xbd\x63\x48\xf9\x74\xac\xbe\xf0\xea\x65\xa5\xf4\xc6\xfe\xfd\xfb\x0b\xb2\x2c\x03\x80\x73\xc3\x98\xe3\x81\xa6\xb4\xfc\xf0\x6c\xf7\x22\x20\x62\x47\x7f\xed\xa7\xdf\xad\x2f\xbe\x0a\x59\x56\x3b\x3a\x3a\xf4\xa9\xbf\x69\xda\x58\x40\x59\x55\x4a\xf5\x79\xa9\xad\xfa\xf9\x9f\x63\xc8\xa3\xbd\x05\xcb\x41\xb1\x62\x3e\xff\xbd\x7b\xf7\xd2\x6d\xdb\xb6\x89\x60\xdc\xe3\x1b\xd4\x3f\x76\xcb\x2b\xf9\x97\x9a\xce\x6a\x87\x5c\xe3\xe6\x5e\xc1\x44\x0b\x01\xec\x04\xa0\x04\xa0\x84\xc3\x29\x18\xd8\xe0\x1e\x33\x3f\xde\x72\x46\xfd\xde\x2d\xaf\xe4\x9f\xad\x8b\x97\x1e\x06\xe7\xee\x6d\xdb\xb6\x89\x7b\xf7\xee\xbd\xe1\x3a\x00\x53\x51\xf1\xad\xac\x9b\x90\xef\xac\x2b\x8a\x73\x66\x54\x09\x9c\x38\x6f\x19\xad\xf9\x28\x00\xd7\xa4\x1a\xc9\xae\x8d\x49\xc7\xaf\x4f\x97\x2a\x36\x15\x8a\x26\x6c\x09\xe4\x6c\xdb\x01\x48\xe5\x64\x93\x6b\x30\xd3\x05\x28\x00\xc9\x97\xb7\x6d\xae\x76\xfe\x37\x28\x57\xc7\x6a\x4a\xbd\x58\xc1\x6a\x17\x57\x0c\xa3\x12\x0f\xad\x7f\x4b\xfd\x87\xa6\xb7\xb5\xaf\xd9\x74\xde\x56\xcd\x6f\x20\x00\x24\x95\x6f\x6f\x39\xa5\x3e\xde\x72\x46\xfd\x1c\x31\xb9\xdf\xef\xf7\x4b\x8b\x4d\x82\xb2\x6f\xc5\xee\xcb\xdb\x6e\xaf\x76\x07\x55\xbd\x25\x40\x17\x2c\xe1\x5b\xd5\xd5\xd4\xea\x34\x33\x01\x81\xa2\x8a\x1b\x00\x48\xe5\x7b\x5f\x83\xd9\x08\x60\xf7\x16\xc4\x0d\x55\x3d\x21\x80\x09\x87\x11\x57\x45\x96\x44\xb9\x56\x6e\xb5\xe7\x2d\x16\x2a\xc2\xa7\x06\x0f\xad\x3f\x5e\xfc\x6a\x6d\xc2\xf8\x6d\xb2\x80\x24\x09\x02\x88\x75\x97\x8c\x3f\x09\x9f\x2c\x7e\xb1\x42\x82\xdd\xbb\x77\x2f\xb6\x26\x90\x08\x27\xf6\xb9\xbf\x66\xc1\x10\x38\x43\x65\xda\xb2\x40\x8b\x36\x56\x55\xc2\x08\x07\x90\x97\xcd\x1c\x66\x18\x8b\xeb\x6c\x80\xb2\x33\x82\x02\xb0\xd7\x15\x6c\x55\xcf\xff\x63\x4e\x63\x10\x04\x39\x00\xc6\xd8\xd8\x58\xb5\xa7\x2d\x0a\x2a\x86\x11\x38\xf7\x36\x77\xab\x9f\x75\xa5\xcd\xdd\x37\x72\x3d\x02\xc0\x9d\x30\x7f\x33\x18\xd3\xe2\xf1\x5b\xec\x5f\x0c\x87\xc3\xa9\xb6\xb6\xb6\x39\x1d\x2b\x9d\x9d\x9d\xb4\xdc\xac\x02\x00\x66\xdb\xbd\xc3\x2e\xbb\xf4\x01\x0e\x5e\x55\x39\xaa\x64\x4d\x69\x08\xd7\x26\x7c\x18\x03\x5e\xf5\xf4\xa6\xa4\xf3\xfe\xb9\xce\xd6\x45\x96\xb9\x6c\x9d\x3f\x6d\x85\x94\xeb\x08\xe0\xf3\xf9\x00\x6b\x7e\xb4\xd7\xe8\x42\xd5\xd1\xbf\x71\x67\x69\x08\x96\xfa\x5f\x76\x02\x94\xb3\x61\x9d\x9e\x61\x63\xb7\x67\xd8\xf8\xed\xc5\xb8\x26\x01\x50\x3f\x50\xfa\xb3\x4c\x40\xfc\x79\xce\x27\xbe\xdc\xd1\xd1\x91\x8b\xc5\x62\xd7\x7d\xaf\xb5\xb5\x95\xee\xda\xb5\xab\xb2\x7b\xa7\x72\x50\x00\x46\x28\x14\x32\xa2\xd1\xa8\x31\xcd\x3a\x5e\x8f\xd7\x6a\x67\xc7\x1d\xc6\x90\xb7\x38\xfb\x4b\xc6\xc0\x59\x9f\xaf\xf8\x3a\xae\x26\x7c\x30\x00\xb9\x9e\x40\xe1\xe7\x77\x0d\xba\x3f\x5e\xab\x8a\x8d\xb3\x9d\xdf\xdd\x98\x7b\x59\xb3\xb1\x04\xac\x6d\xf5\xd7\xfd\xff\xeb\xd4\x82\x24\x49\x00\x20\xca\x06\x75\xc9\xc6\xcc\x16\xea\x54\x4c\xd8\x8d\x78\xe5\x21\x97\xd3\xfb\xd7\xd1\xd1\x41\x65\x59\x96\x08\xe3\xfe\xc6\x5e\xed\x53\x0b\x51\xfb\x33\x81\x70\x48\x8d\x31\xed\x53\xe0\xdc\x2b\xcb\xb2\x18\x89\x44\xae\xb9\x76\x47\x47\x07\x7d\xe8\xa1\x87\xa8\x2c\xcb\xae\x40\xd6\xb6\xf5\x81\x9e\xba\xcf\xfd\xde\xeb\xc1\x27\xff\xe0\xb5\xe0\xb3\x1f\x3d\x59\xff\xb5\xdb\x2e\xb9\x1e\x13\x4d\xe2\x6d\x6f\x6f\x97\xca\x19\xd5\x48\x26\x93\x0c\x80\x6a\x52\x8c\xbc\xb4\x79\xfc\x5b\x06\x9d\x39\xed\x8b\x03\x38\xdb\x98\x7f\x65\xc4\xad\x9f\x84\x15\xf9\xab\x10\xa0\x50\x12\x78\xff\x4f\x6f\x19\x3b\x58\x14\xcd\xdc\x4c\xe7\x0e\x7a\xd4\x73\xc7\xc2\x99\xc7\x51\x76\xcb\x4f\x47\xe0\x99\x08\x40\x6d\x26\x71\x56\xbb\x02\x00\x80\xbc\x6c\x8e\xe2\x6a\x41\xa6\x65\x43\xd9\xaa\xb6\x2b\x49\x73\xa7\x9c\xe7\xdb\x17\xfb\xfa\x35\x69\x76\x9f\x73\x82\x6d\x05\x60\xdf\xb6\x6d\xdb\x95\x7f\x8f\x44\x22\xd6\x52\x93\xc3\x1d\xbd\xa8\xfc\xce\x6f\xbc\xd5\x70\x24\x32\xe2\xfa\xdf\xb5\xaa\xf8\x5e\x45\x13\xef\x5e\x37\x61\xff\xd8\xae\x5e\xcf\xb7\x3f\x76\x32\xf0\xb8\xa2\x0a\x1b\x14\x45\xb1\xef\xdf\xbf\x9f\x96\x33\xa1\x55\x00\x89\x8b\x75\xda\xcf\x9e\xde\x9a\x3c\x98\x93\xcc\xcc\xd4\xfb\x9a\x84\xb3\x53\xa1\xec\x2b\x2f\x6d\x1e\xff\x2a\xac\x62\x52\x85\xfe\xfe\x7e\x76\xf4\xe8\x51\x94\xcf\x1f\x1a\x71\xeb\x3f\xfb\xfe\xed\x89\x2f\xf4\xf9\x8a\xdd\x25\xca\x0c\x0e\x6b\x35\x96\x93\xcc\xcc\xeb\xad\x13\xcf\xfc\x38\x92\xfc\x82\x21\xf0\xb3\xb0\x42\xf2\xd5\x39\x82\x2a\xde\x32\xd9\xa0\x6e\xca\x51\xf5\x12\xb0\x60\x63\x29\x2c\x30\x31\xf1\x46\x50\x5e\x1a\xb9\x6a\x47\x4b\x0f\x2d\x45\xc5\x2b\x02\x88\xee\x84\xf1\x50\xc1\x23\x9c\x50\x14\xe5\xca\x0a\xa7\x9c\x27\xe9\xda\x92\x70\xee\x79\xcf\xf9\xda\xbf\xa7\xd3\xd4\x39\x26\x20\x08\xe4\xa4\xfb\x1f\x79\xdb\xff\xd5\xef\xef\x48\x7c\x02\xb2\x3c\xd2\xd9\xd9\xa9\x27\x93\x49\xe6\xf7\xfb\xd3\x00\x62\x17\x7c\xea\x0f\xbf\x7d\xe7\xf0\xbb\x9b\x92\xce\x5f\x6b\xcc\x48\x61\x91\x11\x29\x55\x53\x1a\xe9\xf3\x15\x8f\xa7\x9c\x46\x17\x08\xce\x01\x48\x68\x9a\xa6\x57\x3c\xab\xe1\x70\xd8\x08\x85\x42\x19\x00\xb1\x71\xa7\xa1\x3e\x79\x6b\xb2\xd7\x51\xa2\x2d\x2e\x4d\x68\x30\x29\xd7\x27\xec\xc6\x45\x53\xc0\x20\xac\x1a\x0b\xb3\x26\xe2\xce\xe4\x0a\xa6\x92\x41\xaa\x2e\x8e\xc8\x09\x0c\x5d\x60\x39\x2c\xb3\x06\x98\x14\xb1\x74\xd5\xa4\xd9\xbc\x76\x29\xcd\x07\x35\x69\x73\x07\xac\x65\x58\x0a\xb8\x3a\xed\x88\x26\x09\xec\xbc\x50\xfb\x99\xe9\x84\x3f\x19\xf5\x39\xdb\x7d\xb7\x8e\xd4\xec\x3d\xb5\x2e\xf7\xcd\xf6\xf6\x76\xfd\xe0\xc1\x83\x6c\xef\xde\xbd\xba\xdf\xef\x4f\x02\x30\x34\x1b\x4f\xbe\x1d\xcc\x9f\x7d\x3b\x98\x77\xc3\xd2\xca\x05\x58\xc5\x31\x46\x50\xae\x80\x36\x59\x80\x4f\x3d\xf5\x54\xe5\xfc\x14\xac\x02\x98\x89\xa2\xc4\xce\x16\x25\x66\x47\x79\x8a\x28\x9f\x97\x01\xa0\xce\x56\x90\x62\x3a\x02\x50\x00\x74\x3e\xea\x9f\x03\xcc\xa4\x57\xaa\x70\x2e\x1b\xca\x06\xab\x48\x18\x77\xd9\x54\x36\xab\x31\x74\x23\x90\x0a\xac\x09\x9c\x3b\x41\x88\xb8\x67\xcf\x1e\xa3\x7c\x5f\x7b\x30\x23\xdd\xa1\x68\x42\xdb\x5c\xe7\x13\x10\x6c\xbe\xec\x78\xe4\xd4\xba\xdc\x61\x94\x0b\x5c\x1d\x3e\x7c\x98\xed\xd9\xb3\x47\x0f\x85\x42\x49\x58\x82\x8a\xe3\xea\x52\xcf\x80\xa5\xe6\x75\x4d\xd3\xf4\xe9\xf6\x50\x1c\x3e\x7c\x98\x45\xa3\x51\x23\x12\x89\x64\x64\x59\x2e\xc0\x9a\xe7\xe9\xa4\xf3\xe7\x8c\x26\x02\xb3\x04\x83\x28\xaf\x3e\x01\x84\x13\x30\x4e\xf8\xb2\xab\xff\x8a\xbd\x42\x18\x9c\x84\x61\xd1\xcb\xcf\x56\x20\x98\x70\x11\x0e\x3b\x27\xa0\x93\x6a\x08\x4a\xb5\xaa\xb8\xa9\x5a\x2d\x59\x5b\x14\xc3\x84\xc3\xc5\x09\xc4\x68\x34\x6a\x74\x75\x75\x55\x62\x0e\x6c\xf7\xee\xdd\x2c\x1c\x0e\xab\x98\x64\x93\x65\xb3\x59\x36\x57\xbb\x99\x72\x1d\x05\x00\xd0\x3b\x3b\x3b\x8d\xca\x12\x74\x3e\x7d\x0e\x67\x9c\x02\x00\x3e\x3f\x6b\xda\xca\x5d\x5e\x99\xe8\x1f\x01\x5d\xca\x7b\x73\x02\x86\xeb\x0d\x66\xd1\x24\xd5\x8f\x91\x21\x70\xc6\xcb\x6f\xf8\xd4\xee\xa5\x93\xa2\xa6\x0b\xfe\x0d\x0b\x75\xbd\xcf\xf8\x96\x33\x52\xbd\x41\x47\x38\x68\xb5\x95\x32\x97\x02\x4c\x80\x61\x8a\x24\x47\x75\xbe\x24\x5a\xc0\x90\x48\x86\x13\x32\x75\x80\xd9\xb0\x5b\x3f\x6f\x12\x6e\x08\x55\x68\xcb\x78\xad\x16\x43\x79\x4c\x97\xc2\x4f\x52\xc9\x26\x02\xe6\xd7\x02\x77\xa6\x07\x67\x8c\x72\x83\xa3\xba\x12\x22\x04\xa0\x02\x23\x15\x07\xc8\x72\x83\x01\x44\x55\x5d\x74\xc8\x96\x32\x03\x4b\x71\x83\xa2\x8b\x0e\x82\x58\x3e\x8e\x64\x32\x09\xbf\xdf\xcf\x00\xa8\x69\x87\xd1\xdf\xef\x2d\x9e\xd8\x38\xe6\xbc\x7b\xb6\xf3\x4d\xc2\x8d\xd3\xc1\xfc\xf3\xb0\xe6\x7f\x63\xb2\x7a\x9e\x54\x06\x66\x72\x7b\xdb\xaa\x3a\x94\xb6\xb5\xb5\xd1\x68\x34\x3a\xb9\x8a\x29\x2d\x5f\xd3\x40\x95\x7d\x0c\x67\x64\xae\x26\xf2\x9c\xa5\xd7\xe7\xa6\x00\xe1\x10\x65\x83\xb8\xb0\xcc\x04\x18\x1e\x1e\x46\x28\x14\x32\x40\x50\xc8\xfa\x85\x6e\x25\x65\xde\x50\x59\xda\x99\x90\xf3\x8b\xa7\x51\x0e\x72\x1d\x3e\x7c\x98\x95\x53\xb1\x54\x10\x24\x5e\xda\x9c\xfe\x86\x2f\x2f\x85\x3d\xaa\x38\x2d\xf9\x38\x38\x5e\x6b\x9d\xf8\xd1\xa8\x5b\x3f\x01\xcb\xd8\xbb\x22\x90\x72\x91\x2d\x89\x70\xd8\x7d\x39\x5b\xa3\x2f\x6f\xdb\x40\x00\x3a\xee\x30\xfa\x13\x0a\x86\xda\xdb\xdb\xd5\x70\x38\xac\x4f\x97\xd6\x35\x29\x1d\xcc\xe9\xcf\xd9\x5a\x36\x5f\x76\xee\xf6\x16\xc4\xcd\x25\x81\x17\x2e\x7a\xd4\x9f\xf7\xd6\x17\x8f\xb6\xb7\xb7\x67\xc2\xe1\xf0\xb4\x46\x64\x05\xd3\x11\x80\x01\x60\x9a\xc8\x0a\x8c\xc0\x10\xf8\xdc\x9b\x47\x08\x08\x9c\xba\xe0\x01\x4a\x15\x16\x2f\x8b\x2d\xd0\xd5\xd5\xc5\xca\xf9\x73\xb9\x74\xa3\xed\xe7\x8d\xbd\xfa\xc7\x29\xab\xce\x77\x51\x2d\x0c\x11\xb9\x89\x80\xf8\x3a\xca\x6e\x6e\xc0\x9a\x6f\xdb\xdb\xdb\x0d\x00\xc9\x9c\x6c\x9e\xf8\xcf\x1d\x89\x2f\xbc\xef\xdd\xba\xdf\x5b\x9f\xb2\x6f\xa5\xe5\x52\xf2\x1c\x1c\x79\xc9\xcc\x1c\x5d\x3f\xf1\xe3\xb3\x0d\x85\x1f\xc0\xda\xc4\x71\x65\x83\x4c\x59\xf8\x4e\x7f\xce\xd6\x76\xff\xbb\x75\x7f\xd3\x98\x91\x3e\x40\x61\x05\x88\x38\xb8\x9e\xac\x29\xbd\x72\x64\x63\xfa\x6f\x87\xea\x70\x72\xd7\xae\x5d\x05\xe0\xea\x7e\x81\x4a\xfd\x20\xca\xe0\x79\xcf\x05\xcf\x81\x1d\x97\x5c\x7f\x39\xb9\x91\xe6\x2d\xa3\x35\x7f\x7e\xef\x80\x71\xfc\xd9\x2d\x63\x7f\x11\xaf\xc5\xc9\x03\x07\x0e\x14\x66\x2a\x4c\x79\x9d\x70\x35\x4d\x83\x2c\xcb\xac\x44\x59\xc1\xa4\x5c\x15\x4c\xe2\xaa\x66\xa0\x14\x4d\x08\x4e\x77\xbd\xa5\x86\xa6\x69\x86\x2c\xcb\x39\xdd\x49\x63\xe9\x46\xf1\x35\x6f\xdc\x58\x70\x89\xda\xe9\x30\xd6\x6c\x7b\xd1\x94\xc8\x20\xa6\x94\x75\x2f\x93\x2f\x07\xa0\x3f\x27\x9b\xec\xc9\x5b\x93\xf1\xba\xa2\xb8\xad\x31\x23\x6d\xb2\x99\xd4\x3e\xe1\x30\x46\xe2\x6e\xed\x4c\xc9\xda\x1c\xd3\x8b\x72\x4d\x84\x23\x47\x8e\xb0\x8a\xf0\x03\x59\xdb\xf6\xbd\xa7\x03\xdf\xb3\x1b\xf4\x9a\x78\x00\x01\x91\xea\xf3\xd2\x03\xff\xad\xbb\xfe\xce\x67\xb6\x8c\xfd\x41\x6f\x7d\xf1\x85\xc9\xb1\x88\xf2\x9b\xef\x7e\xcf\x05\xcf\x27\xef\x18\x72\xfd\xf5\xd4\x95\x08\x01\x50\xab\x8a\x77\x3e\x7a\xa6\xfe\x07\x87\x6f\xbb\xfc\xd1\x51\x45\x3f\xb1\x6f\xdf\xbe\x69\x4b\xd3\x5e\xb7\x37\xb0\xb9\xb9\x99\x28\x8a\x22\x32\x0a\xef\xb6\x61\xd7\x87\x64\x93\x2a\x53\xbf\x33\x1d\x52\xce\x52\xdf\xa0\x57\x7b\x05\x40\xbe\xab\xab\x6b\xd9\xf6\x00\x7a\x3c\x1e\xe2\xf7\xfb\x19\x08\x84\x42\xad\x50\xf4\x5e\x32\x3a\x17\x4b\x0b\x68\x0e\x92\x1c\xdc\xee\xf8\x47\x2e\x90\x77\x00\xa4\xbb\xbb\xbb\xcd\x4a\x6f\x9f\xe1\xe1\x61\xee\x72\xb9\xb8\xdf\xef\xd7\x01\x64\x41\x90\x52\x6d\x6c\x20\xe9\x2a\x75\x8f\xba\xf5\x37\x27\x1c\xc6\x09\x46\x71\x0e\xd6\xbe\xc8\x31\x4d\xd3\x8a\x87\x0e\x1d\x62\xd1\x68\x94\x36\x37\x37\x8b\x84\xa1\xfe\x43\x6f\xd7\x7f\xc5\xa3\x8a\x33\xd6\x75\xa1\x9c\xd8\x9b\xc7\xe5\xf7\xbc\xd3\x98\x7f\x8a\xcb\x42\xb6\xb5\xb5\xd5\xdc\xb1\x63\x07\x91\x65\xd9\x51\x9f\xb3\xdd\xf1\x40\xcc\xfb\xcf\xb3\xed\xd7\x10\x39\xa9\x09\x64\xa5\xcd\x6f\x07\xf3\x3f\x95\x2c\x5f\x01\x9f\xda\x9b\x68\xa6\x39\x9b\x71\x02\x35\x27\x9b\xd7\x87\x8f\x66\x80\xaf\x60\x0b\xc3\x2a\x93\xba\xac\x76\x40\xd9\xc8\x31\x00\x24\x4b\x0e\x7a\xf2\x62\x44\xfe\xd6\x7c\x56\x30\x33\xc1\x14\xa0\x0f\x6e\xb7\xff\x9b\x29\x91\x73\x28\x6f\x6f\x9b\x6a\x5d\x1f\x39\x72\x84\x75\x75\x75\x19\x9a\xa6\x65\x60\xed\xd1\x3b\x07\xe0\x24\x80\x13\x00\xba\x51\x2e\x77\x1b\x8f\xc7\xaf\x94\xbf\xab\xc4\x2e\x82\x59\xe9\x8e\x40\xce\x36\x67\x1f\x05\x87\x21\x34\x6d\x19\xad\xd9\x8b\x72\x09\x98\xb2\xc1\xe7\x6a\x1f\x75\x7e\x58\xa8\x22\xa7\x20\x90\xb3\xed\x0c\x4e\x48\x3b\x00\xd8\xcb\xf7\xbe\x06\xd7\x09\x6b\x78\x78\x18\xb0\xe6\x70\x3d\xed\x30\x46\xe6\xba\x41\x05\xde\x82\x2d\x4c\xb8\x55\xa6\xa4\x5c\xe8\x68\xd9\x50\xde\x18\x99\x03\x30\x38\xd1\x68\x7b\x72\xe8\x56\xf9\xbb\x8c\x2e\x9c\x04\xa6\x00\x7d\xe0\x36\xc7\xd7\xf3\x5e\xf1\x67\xb0\xf6\xe6\x15\x66\xda\xe0\xd2\xd5\xd5\xc5\x0e\x1d\x3a\xc4\x8e\x1e\x3d\x6a\xc4\xe3\xf1\x8a\x0b\x36\x9d\xcd\x66\x33\x3d\x3d\x3d\xea\xc1\x83\x07\xaf\xa9\x78\x5a\xc9\x08\x6a\xc8\x4a\xd1\x6a\x52\xba\x00\xa0\x31\x2b\xdd\x85\xab\x25\x60\x28\x00\x67\x20\x27\x55\x15\xf8\x22\x20\xb4\x21\x27\xdf\x05\xc0\x3e\x5d\x46\xd0\x75\xea\x63\x92\x61\xa5\x26\x6b\x4a\x83\xd5\xdc\x04\x00\x5c\x9a\x10\x72\x69\x82\x3f\x6b\x37\xcf\x97\x5d\xa5\xcb\x86\x63\xc7\x8e\xb1\x60\x30\x68\x94\x7d\xe3\xb1\x54\x93\xf4\xbd\x92\x83\x66\x9a\xcf\xa8\xbf\x29\xa9\xbc\xea\x90\x36\x00\xa8\x35\x34\x31\xb8\xdd\xfe\xad\x82\x47\xa8\x54\x2f\x4d\xc7\xe3\xf1\x39\x37\xb8\x74\x77\x77\xb3\x79\xec\x82\x92\x04\x56\x7d\xf7\x73\x81\x11\x17\xae\xd5\xae\x92\x49\xe7\xe1\x84\xa2\xac\xb2\x4c\xbc\x0e\x33\x4e\x01\x00\xd4\xb1\x9a\x52\x5f\xb5\x45\xe7\x04\x4e\xa4\x86\xac\x14\x01\x20\x2d\xa4\x5a\xd5\x8d\xe2\xf0\xe1\xc3\x4c\xd3\x34\xab\x28\x33\x41\x77\xd6\x2f\xfe\x57\xcf\x7d\x35\x9f\x1b\xd9\x28\xbd\x58\x92\x48\x6e\xb6\xdf\xc1\x01\xe8\x76\x92\x8e\xb7\xcb\x3f\x89\xed\x74\x7e\xae\xe0\x11\x9e\x04\x70\x16\x40\x22\x99\x4c\x2e\x49\x53\x87\x09\x87\x71\xb9\xda\xb1\x4d\xd6\xe8\x83\xb8\x76\x65\xc5\x12\x2e\xbd\xbf\x9a\x73\x4d\xc2\xf5\x81\x3a\xf5\x6d\xcc\xb0\x32\x9b\xd1\x11\x04\x4b\x03\x9c\x37\x09\xd7\xc5\x2a\x03\x43\x2d\xe3\xf6\x7b\x7a\xeb\x8b\x87\x61\xad\x77\x97\x1d\x87\x0e\x1d\x62\xfb\xf7\xef\x57\x65\x59\x1e\x01\xa0\x9a\x36\x92\x1a\x69\x93\xfb\x47\x37\x4a\x61\xd7\x98\x79\x9b\x6b\xdc\xdc\x64\xcf\x31\xbf\xa0\x73\x27\x08\x60\x48\xa4\xa0\xba\xe8\x48\xce\x2b\xc4\xf2\x75\xc2\x19\x2e\x90\x7e\x58\x2a\x7f\x04\x40\x66\x09\xcb\xd8\xe9\x17\x3d\x5a\xb7\x2a\x9a\x69\x87\x21\xcc\xaa\xa1\x0c\xca\xf5\xb3\x8d\x85\x23\xb8\xb6\x04\x4c\xe1\x6c\x63\xe1\xa5\xdb\x87\x94\xc7\x24\x46\x67\xb5\x03\x2e\x78\x8b\x27\x32\x76\x73\x10\x80\x5a\x2e\x3f\x73\x0d\xa6\xad\x10\x12\x89\x44\x20\x8a\xa2\x58\x12\xb8\xb2\x25\xe1\x7c\xd0\x61\x08\xb5\xd5\xfc\x2a\xd9\xa0\xf6\x53\xeb\x72\x3f\x02\xc1\x84\x24\x49\xe6\xd0\xd0\xd0\xb2\x77\xc3\x3c\x75\xea\x14\x0f\x06\x83\x4c\x51\x14\x0d\x40\x16\xc0\x18\x28\x19\xd1\x6b\x68\x2c\xe7\x17\xdf\x4a\x87\x6c\xaf\xa7\x9a\x6d\xaf\xa6\x9a\x6c\x2f\xa5\x83\xb6\x97\x72\x3e\xf1\x15\xdd\x49\xdf\x04\x25\xef\xc0\x32\xda\x46\x00\x64\xfb\xfb\xfb\x97\xa4\x5a\x79\x5b\x5b\x1b\x64\x59\xa6\x86\xc0\x6d\x25\x81\xbb\xc2\x29\xfb\x8c\xd9\xc1\x1c\x1c\x27\x9a\xb2\x4f\xbf\x5b\x5f\x7c\xb2\x9c\x14\x52\x84\x45\x02\xa2\xd9\x18\x51\x6d\x4c\x0e\xa7\xec\xdb\x09\xc8\xb4\x17\xc8\xca\x46\xea\x27\x5b\xc7\xfe\x51\xb7\xf1\x33\x00\xc6\xfa\xfa\xfa\xcc\x81\x81\x81\x6b\x64\x32\x2d\x01\x1a\x1a\x1a\x88\xc7\xe3\x11\x40\xe0\x0a\xe4\xa4\x3b\x02\x39\xa9\xaa\xec\x60\xc9\x20\x9e\xf3\xbe\xe2\x0b\x05\x99\x5d\x74\x3a\x9d\x5a\x77\x77\xf7\x8a\xb4\x43\x8d\xc5\x62\x3c\x9b\xcd\x72\x9f\xcf\xa7\xcb\xb2\x5c\x84\x65\x98\x8d\x01\x18\x86\x65\xad\x0f\x02\x18\x80\xe5\x9c\x19\x04\x70\x09\x56\xfc\x3d\x93\xcd\x66\xf5\x43\x87\x0e\x99\x7d\x7d\x55\xcf\x7e\xf3\x05\x69\x6e\x6e\x66\x00\xf8\xa8\xa2\xa7\x4d\xca\x9d\xa1\x8c\xbc\x89\x4e\xe9\x45\xc8\x08\x67\x27\xd7\xe5\x5e\x3a\xba\x7e\xe2\x6b\xdc\x5a\x4e\xa6\xfb\xfb\xfb\xcd\xd1\xd1\x51\xf8\xfd\x7e\x0e\xc0\x4c\xb8\x4a\xc9\x71\xa7\xa1\x37\x64\xa5\xf5\x92\x49\xec\x15\x22\x95\xf7\x68\xf4\x3e\x75\xeb\xd8\x3f\x65\x1c\xe6\xd1\xf2\x6f\x2e\x1e\x3e\x7c\xf8\xba\xe5\xf9\xb4\x53\x40\x3c\x1e\x47\x38\x1c\x36\x00\xe4\x06\x3d\xea\xc9\xad\x23\x35\x0f\x54\x13\x13\xa0\x20\x74\x73\xd2\xf9\xe0\x65\x65\xe2\x0d\x45\x51\x2a\x39\x6c\x2b\x82\x72\x81\x05\x00\xd0\x77\xef\xde\x6d\x04\x83\x41\x75\x8a\xbf\x1d\x28\x3f\x5f\x35\x7e\xf7\xc5\x42\x77\x77\x37\xdb\xb6\x6d\x9b\xa1\x28\x4a\x0a\x04\xe7\x8e\x37\x67\xbf\xd6\xe7\x2f\x9e\xde\x32\xea\xbc\xaf\x3e\x27\x35\x11\x00\x29\x67\x29\xd1\x13\x28\xbc\x96\x70\x95\x7e\x51\xce\x08\x4a\x4e\xce\x08\x0a\x85\x42\xba\xa2\x28\x49\x10\x9c\x8d\x05\x0a\xfa\x79\x5f\xb1\x6b\xdd\x84\x7c\xbb\x3f\x6f\x0b\x95\x28\xd7\x47\xdc\xda\xf9\xcb\xae\xd2\x5b\x9c\x20\x86\xb2\x07\x72\xa6\x12\x32\x33\xca\xb5\xdc\x09\x24\x50\xa3\xd1\x5d\xbf\xff\x7a\xe8\x1b\x42\x95\x76\xc0\x84\xdd\xe8\x3d\x74\xd7\xf0\xa3\x8c\xa2\xbf\xa7\xa7\x47\x5d\x2b\x0d\x33\x3d\x2a\x1d\xd6\x50\xe9\x3a\x06\x04\x60\x65\x1d\x51\x58\x4b\xda\x04\xae\xf6\x45\x54\xa7\xba\x72\x27\x9d\xef\x2e\x5f\xc3\x0b\x6b\xa9\x58\x59\x12\x27\xcb\x47\x61\xb6\x2e\x25\x33\x56\x09\x2b\xdb\x01\xb4\x24\x70\xc7\xfa\x71\xfb\x7d\x8a\x26\x56\x95\x22\x2e\x1b\xc4\x3b\xe2\xd6\x8f\xa7\x9d\x46\x9f\xa2\x28\xea\xa9\x53\xa7\x56\xac\x35\xfa\x6a\xc6\xa9\x53\xa7\x78\x5b\x5b\x9b\x39\x69\x8a\x1a\x85\x35\x15\x5d\xc4\x55\x43\x34\xad\x69\x9a\xfa\xf5\xaf\x7f\xfd\x3a\xd5\x5d\xb6\x75\x4c\x45\x51\x8a\xa8\xd8\x3a\xd6\x35\xe2\xe5\xbf\xe3\xb0\x9a\x6f\x98\xb3\x25\x87\xcc\x48\x80\xb2\x8b\x95\x80\xc0\x29\x1b\xb4\xb5\x75\xdc\x7e\x5b\x35\x3f\x8c\x80\x40\x36\xa8\xbd\xa7\xa1\xf0\x82\x28\x8a\x79\x4d\xd3\x78\x22\x91\x58\x23\xc1\x34\x28\xdb\x48\x5c\x51\x14\x5d\x96\x65\x15\xd6\x9b\x9b\x85\xd5\x28\x4b\xed\xee\xee\x36\x7f\xfa\xd3\x9f\xce\x28\xbc\x58\x2c\xc6\xbb\xba\xba\x98\xcb\xe5\x32\x65\x59\xd6\xca\x64\x52\x93\xc9\xa4\xde\xd7\xd7\x67\x3e\xf1\xc4\x13\xe6\x5c\x6d\xe9\x67\x9d\xda\x0f\x1c\x38\x20\x01\x68\xf4\x14\xc4\x0f\x7c\xe2\x78\xe3\x97\xab\x49\x7c\x00\x00\x93\x70\xf5\xf1\x3b\x46\x3f\x9c\x74\x95\x8e\x66\xb3\xd9\xdc\x6a\xef\xf8\xf5\xab\x8c\xb9\x04\x6a\x00\xc8\xa5\x1d\x46\xef\xb0\x5b\x3b\xd7\x34\x61\xaf\xaa\x20\xbd\xc0\x89\x3d\x7a\x51\xd9\xff\xec\x96\x54\xb7\xa2\x28\x6a\x5b\x5b\x9b\xb1\x56\x1e\x76\xe1\xa8\xf4\x1e\xc2\xa4\x84\x91\x64\x32\x89\xc5\x68\x9e\x39\x6b\xa5\x50\x9f\xcf\x47\x3c\x1e\x0f\x40\x20\x01\xf0\xcf\x95\xf9\x32\x19\xde\x82\x6d\x43\x5f\x7d\xf1\x85\xa2\xc4\x46\x7d\x3e\x9f\xbe\x52\x4b\xc2\x9b\x19\x7b\xf6\xec\xa1\xbb\x76\xed\x12\x3c\x1e\x8f\x2c\x19\xc4\xed\x2d\xd8\x42\x8a\x26\xfa\x4c\xca\x05\x49\x71\xf0\x70\x38\xcc\x5b\x5b\x5b\xf9\x3b\xef\xbc\xb3\xe0\xb1\x9d\x95\x00\x7d\x7d\x7d\x3c\x1a\x8d\x12\x00\xc2\x84\xdd\xe0\xb7\x8e\xd4\x3c\x68\x9b\xc3\xf3\x54\x01\x05\xb1\xb9\x34\xc1\x13\xab\x2f\xbc\x24\xcf\x10\x8a\x5c\xc3\xcc\xd8\xbb\x77\x2f\x6d\x68\x68\x90\xe4\x12\x09\xdc\x77\xc1\xf3\xc7\xbb\x7b\xbc\xff\x74\xfb\x25\xe5\x33\x91\xe1\x9a\xff\xb9\xe3\x92\xeb\x37\x7d\x05\x5b\xd3\xa8\xa2\x9f\x13\xdd\x8e\x62\x24\x12\x31\x17\x6a\x6c\xcf\x59\x2b\xb8\xad\xad\x8d\xcb\xb2\x4c\x4c\x0a\x9b\xa3\x44\xc3\xa1\x8c\x3c\x67\x1e\x7c\x05\x9e\xa2\xb8\x71\x44\xd1\x4f\x4c\x38\x8d\x7e\x9f\xcf\xa7\xad\xad\x08\xaa\xc3\x9e\x3d\x7b\x68\x43\x43\x83\xe4\xd0\x69\xcb\x47\x4e\x07\xbe\xb9\x71\xcc\xf9\xbb\x22\xa3\x5e\x02\x42\x09\x08\x15\x38\x71\xfb\xf3\xd2\xdd\x9b\x93\x8e\x07\x2e\x78\xd5\x9f\x1b\x0e\x9a\x6e\x6b\x6b\x33\x17\xa2\x65\xe7\x24\x80\x2c\xcb\x24\x14\x0a\x71\x00\x34\x6d\x37\xd8\xb6\x61\xd7\x6e\xca\xab\xeb\x12\x46\x40\x68\x63\x56\x6a\x10\x39\x0b\xf4\x00\x00\x0b\x4d\x49\x44\x41\x54\x3f\xdb\x90\xff\x29\x91\x84\x7c\x30\x18\x34\x17\xd2\xd9\xea\x57\x0d\xbb\x76\xed\x12\x00\x78\x1f\x3a\xe7\xfd\x3f\xcd\x13\xf6\x47\x66\xfa\x9e\x6c\xd2\xfa\x60\x46\xbe\xf5\x6c\x63\xfe\x19\xc9\xbe\x30\x2d\x3b\xa7\x20\x87\x87\x87\x79\x79\x1f\x1c\xd7\x6c\x5c\x70\xab\xc2\xe6\x40\x4e\x6a\xad\xf6\x06\x0e\x43\x08\x08\x9c\x18\x83\x5e\xf5\xb8\xa2\x28\xda\xda\xb2\x70\x76\xec\xdd\xbb\x97\x3a\x9d\x4e\x87\x37\x2f\x46\x3a\xfb\xea\x3e\x3f\x57\x85\xd6\x1a\x9d\xb6\x5c\x56\x4a\x27\xc7\x9d\xc6\xf9\x85\x68\xd9\xaa\xc2\xb6\xe5\x44\xc6\x02\x80\xf8\xf1\xe6\xec\x7f\xcd\xb6\xa5\x79\x3a\xec\xb8\xe4\xfa\xa3\xe6\x71\x79\x27\x00\xe7\xce\x9d\x3b\x57\x6c\xff\xc0\xcd\x80\x4a\x7d\xc6\x60\x46\xbe\xb7\x9a\x8c\x1f\x02\x82\xd6\x94\xfd\xfd\x00\x9c\x65\x57\xf7\xbc\x50\xd5\x09\x93\xd2\xae\x52\x69\x87\x71\xfa\x6c\x15\x9d\x2c\x26\x43\xe0\xc4\xfe\x60\x8f\xf7\xf3\x4e\x9d\x86\x01\x5c\xd9\x2b\xbf\x86\x19\x21\xc9\x06\xad\xaf\xfa\xcb\x26\xf1\x62\x81\xe9\x78\x55\x9f\x50\xd6\x02\x39\x10\xc4\xdf\x68\xcd\xfc\x40\x15\xd9\xb4\x85\x09\x66\x82\x5b\x13\xdb\x1e\x3a\xe7\xfb\x3b\xca\x10\x50\x14\x45\xda\xb3\x67\xcf\x1a\x09\x66\xc1\x84\xc3\xa8\x7a\xfb\x50\xb2\xa6\x14\x5f\xe8\x7d\xaa\x16\xc2\xe4\xe4\xcb\x9c\x6c\x76\x77\x35\x65\x9e\x99\xef\x44\xde\x32\x2e\x3f\xfc\xde\x3e\xcf\xa7\xc0\xe1\x09\x85\x42\xe2\x72\xe7\x0e\xde\x44\x30\x86\x6a\xb5\xb3\x45\xd1\x4c\xcf\xf5\x45\x93\x70\xa3\xd7\x5f\x7c\x1d\x58\xd8\xee\xec\x79\xb5\x8e\x95\x24\x09\x0d\x0d\x0d\x0c\x00\x4b\x28\xa5\xec\xc6\xa4\xfd\x5e\x67\x49\xa8\x3a\xb7\x8d\x80\xa0\x21\x2b\xdd\x65\x50\x9e\x1c\x76\xeb\xe7\xfc\x7e\xbf\xee\x72\xb9\xf8\xd4\x24\x85\x5f\x65\xb4\xb6\xb6\xc2\xe9\x74\x52\x53\xe0\x92\x49\xb9\xa7\x75\xdc\x7e\xdb\xcc\x09\x23\xc0\x99\x50\xfe\x85\x73\x8d\x85\x1f\x02\x88\x6b\x9a\x56\x9c\xaf\x11\x38\x2f\x02\x0c\x0d\x0d\x55\xfa\xd9\x98\x8c\x82\xa7\x9c\x86\xb9\x25\xe1\xdc\x39\x53\x46\xca\x74\x20\x20\xa4\x39\x2d\x77\x16\x24\xf3\x62\x42\x29\xf5\xfa\xfd\xfe\xd2\x1a\x09\xae\x42\x10\x84\x2b\x09\x23\x23\x8a\x9e\x16\x18\xa9\x0b\x66\xa5\x0d\x53\xc7\x98\x83\xe3\x5c\xa0\xf0\xc6\xcb\x9b\xd2\x5f\x29\xef\x3f\x48\x4d\x97\xf1\x33\xe7\xfd\xe6\xfb\x80\xa6\x69\x56\x1e\xd0\xc8\xd8\x4d\xcd\x6e\xd0\x60\x30\x2b\x57\x5d\x4f\x10\x00\x08\x88\xd0\x3a\x6e\x7f\x7f\x41\x32\x07\x12\x4a\xe9\xfc\x1a\x09\xae\x22\x91\x48\xf0\xb2\xf3\xcd\x04\x81\x76\xd1\xa3\x0d\x0e\xd6\xa9\xc3\x84\x13\x99\x72\x42\x8a\x36\x56\xb8\xe8\xd1\xfa\x5e\xdd\x30\xf1\x44\x57\x73\xf6\x3b\x8c\xe2\x0c\xac\x66\x9c\xc5\x27\x9e\x78\x62\x69\xa7\x80\xca\x03\x06\x83\x41\xae\x28\x8a\x09\x02\x33\xee\xd6\xd2\x1b\xc7\x1c\x77\x3b\x4b\x42\x55\x3b\x88\x2a\xa0\x20\x62\x38\x65\x7f\x50\x17\xd8\xe8\x88\xa2\xc7\xfc\x7e\x7f\x29\x18\x0c\xf2\x35\x47\x91\x15\x26\x8e\x44\x22\x86\x28\x8a\x2a\x08\x32\x39\xbb\x39\x74\xde\x5f\x7c\xeb\xf4\xba\xdc\xd1\xd3\xeb\x72\x3f\xeb\xad\x2f\xfe\x2c\xed\x34\x8e\xc1\xca\xf8\x19\x06\x50\x78\xf5\xd5\x57\xf9\x7c\x3b\x87\x03\x0b\x20\x00\x60\xc5\xa1\xa3\xd1\x28\x07\x50\x62\x14\xc6\xa8\x5b\xcb\x6f\x19\x75\x76\x08\x55\x7a\x08\x2b\x20\x20\x62\xcb\xb8\xfd\x41\xc9\x24\xec\x62\x9d\x76\x46\x71\x2b\xa5\xd6\xd6\x56\x76\x23\xc1\x8d\xd5\x86\xce\xce\x4e\x1a\x0e\x87\xc9\x7c\xb5\xdb\xa9\x53\xa7\x2a\x24\x28\xc2\x4a\xee\x18\x85\x95\xdb\xd7\x5f\x3e\x2e\xa1\xbc\xe5\xec\xd5\x57\x5f\xe5\x0b\x8d\x0a\x2e\x88\x00\x80\xb5\x89\xb4\xb9\xb9\xd9\x04\x50\xca\xcb\x4c\x55\x6d\x4c\x5e\x9f\xb2\x6f\xab\xb6\x64\x4a\x05\x04\x84\x06\x33\xd2\xaf\xf9\x73\xb6\xd0\x60\x9d\x76\x42\x52\x1c\xc5\x48\x24\xc2\x4d\xd3\xc4\xcd\xec\x31\xac\x44\xf2\xea\x7d\x7e\x5b\x43\x5d\xbd\xed\xf6\xbb\xa2\xdc\xe5\x72\x61\x3e\x44\x28\x1b\x74\xcc\xe7\xf3\x69\xa2\x28\x16\x60\x25\x8b\x64\xca\x7f\x8b\x3d\x3d\x3d\xe6\x13\x4f\x3c\xc1\x16\xf2\xe6\x57\x70\x43\x95\xd5\xca\xf5\xf8\x25\x00\x8d\xe0\xb8\xe3\x81\x58\xdd\x5f\x44\x46\x5c\x73\xee\x77\x9b\x09\x29\x47\xe9\xc4\xb3\x5b\x52\x9f\x1a\x75\xeb\xa7\x61\x75\xc2\x5c\x92\xd4\xec\xa5\x44\x24\x12\xa1\xd1\x68\x14\xb2\x2c\xdb\x6d\x06\xf1\x3e\x10\xf3\xfe\x29\xe5\x10\x9f\xde\x3a\xf6\x77\x20\xc8\x9d\x39\x73\xc6\x58\xce\xc6\x14\x73\x61\xc1\x1a\x00\xb0\xa6\x82\xf2\xaa\xa0\x04\x82\xd2\x60\x9d\x36\x1c\xcc\x48\xb7\xd6\xaa\xe2\x82\xf6\x86\x39\x0c\x21\x78\x4b\xa2\xe6\xc3\x8c\xf0\xec\x88\xa2\xf7\xba\xdc\x8a\x19\x89\x44\x4c\x51\x14\xc9\xcd\x10\x4a\xde\xbb\x77\x2f\x6d\x6f\x6f\x17\x45\x51\x74\x35\x66\xa4\xdb\x1f\xed\xae\x3f\xd8\x34\x61\xff\x0d\x6f\x41\xbc\x27\x2f\x99\x17\x12\x4a\xa9\xb7\xa1\xa1\x61\x55\x75\x51\xbb\x21\x02\x00\x96\x9a\x2a\xef\x25\xd4\x18\x45\x69\xc0\xab\x8e\x86\x53\x8e\xdb\x9d\x25\xa1\xaa\xba\x02\x53\x41\x39\xb1\x37\xa7\xe5\x87\xc2\xe3\xf6\x3b\x92\x35\xa5\x1e\xb5\x86\x4c\x84\x42\x21\xb3\xad\xad\x8d\xeb\xba\x4e\x6e\x44\xdd\x2d\x15\x2a\xea\xde\xe9\x74\xca\x92\x41\x02\x3b\x2f\xd4\xfe\xc9\xfd\xef\x7a\xbf\xe4\x2a\x09\x1b\x09\xac\xa5\x6f\xd3\x84\xfc\x9e\x0b\x5e\xf5\x48\x41\x62\xc9\x48\x24\x52\x5a\x2d\xa1\xf1\x1b\x26\x00\x00\x64\xb3\x59\x84\xc3\xe1\x12\x00\xad\x24\xf0\x62\xbf\xb7\x38\xba\x31\xe9\xb8\x43\x36\xa9\x63\x21\xd7\x23\x20\x70\xe9\xe2\xfa\x5b\x46\x6b\x3e\x56\x5b\x14\x3d\x97\x5d\x7a\x1f\x6a\x6c\x5a\x38\x1c\x66\x95\xfc\x84\xd5\xa0\x11\x2a\x82\x57\x14\x45\xa6\x0c\xb5\xb7\x8c\x3a\x1f\x7e\xf8\xac\xff\x2b\xe1\x71\xc7\x63\x02\x88\x3c\xf9\xbb\x02\x27\x8e\xd0\x84\xb4\xfd\x5c\x43\xe1\x59\x22\x09\x85\xd6\xd6\x56\x73\x35\x18\xbb\x8b\x42\x80\xb1\xb1\x31\xee\x72\xb9\xe0\xf7\xfb\x4b\x00\x8a\x9a\x8d\xe7\x07\xeb\xd4\xb1\x0d\x63\x8e\xdb\x64\xb3\xba\x0c\xa2\xe9\x40\x41\xa4\x40\x5e\xba\x27\x32\x52\xf3\x98\xa3\x44\x1d\xc9\x1a\x63\x90\x38\x6d\x7a\x28\x14\x62\xd1\x68\x94\xbb\x5c\xae\x79\x5b\xd7\x37\x8a\x48\x24\x42\xdf\xff\xfe\xf7\x93\x9d\x3b\x77\x0a\x8a\xa2\xc8\x84\xa3\x76\x53\xd2\xb1\xeb\x03\xe7\x7c\xff\x77\xdb\xb0\xeb\x7f\xd9\x4d\xa1\x61\x26\xc3\xca\x51\x12\x82\x2e\x5d\xa8\xe9\xf3\x15\x8f\x39\x6b\x9c\xaa\x24\x49\x7c\x25\xb6\xcf\x4d\xc6\xa2\x96\xd7\xad\xd4\xae\x81\xb5\x49\xa1\xcd\x53\x10\xdf\xfb\x68\xb7\xff\x93\x75\x45\x5b\xd5\x65\xe7\x67\x43\x89\xb2\x44\x4f\xa0\xf0\xfd\xd3\xa1\xdc\xa1\xcb\xae\xd2\x79\x6e\x55\xee\x32\x34\x4d\x33\x96\x72\x67\x4f\x34\x1a\xa5\xad\xad\xad\x95\x50\xad\x08\x40\xb2\x97\xa8\xa7\x2d\xe1\xd8\x7d\x5b\x5c\xf9\x03\x6f\x41\xbc\xbb\xda\xbd\xfe\x1c\x9c\xfd\xac\x6d\xfc\x4f\xbb\x83\xf9\xef\x02\xc8\xcc\x54\xbb\x67\xb9\xb0\xe8\xf5\x95\x2b\x9d\x3b\x00\x78\x00\x6c\x72\xa9\xc2\xce\x3d\x67\x7d\x7f\xdc\x98\x95\x5b\x16\xeb\x1e\x0c\x5c\x4f\xba\x4a\xaf\xbc\xd3\x90\xff\xc1\x05\xaf\xfa\x72\xda\x61\x24\x40\xa0\xa3\x5c\xab\x38\x9b\xcd\xb2\x6c\x36\x3b\x5b\xc3\x86\x59\xd1\xd1\xd1\x41\x7d\x3e\x1f\x26\x55\x05\x15\x01\x48\xa2\x49\x9c\xeb\x26\xe4\xad\x5b\x12\xce\x0f\xaf\x1f\x73\x7c\x48\x36\x68\xcb\x42\x06\x50\x17\x58\xea\xfb\x3b\x12\x1f\x49\xba\x4a\x27\x34\x4d\xcb\xcd\x56\xc5\x6b\xa9\xb1\x14\x05\xb6\xa7\x92\x20\x2c\x19\xe4\xce\x07\x7b\xbc\x7f\xb8\x29\xe9\xd8\x3e\x5f\x3f\xc1\x5c\x30\x09\xcf\x24\x6b\x4a\xaf\x0d\x78\xd5\x97\x2e\x7a\xd4\xa3\x09\x57\xe9\xbc\x66\xbb\x52\xb8\xba\x52\xbc\xfa\xba\x22\x8f\x93\x3e\xd3\x29\x9f\x2b\x87\x08\x0e\xc9\x53\x14\xfd\xa1\x8c\xbc\xa3\x35\x65\x7f\x5f\x73\x5a\xde\xe5\x28\xd1\x4d\xd5\xbe\xed\xb3\x21\xe9\xd4\x4f\x7c\xff\xf6\xc4\x3e\x5d\xe4\x83\xfd\xfd\xfd\xfa\x4a\xf5\x58\x5c\x12\x02\x00\x57\x72\xd9\x45\x58\x7b\xd7\x5a\x28\xc3\xf6\xbb\x07\xdd\xfb\xee\x1a\x74\x3f\x20\xf0\xa5\xa9\x2a\xca\xc1\x99\x41\x79\x72\xdc\x61\x74\x8f\xd5\x94\xce\x25\x5d\xa5\x9e\x8c\x6c\xf4\x67\x1c\x66\x5c\x15\x59\x5a\x13\x59\x41\x17\x98\xc1\x01\x06\x02\x80\x03\x02\x27\xa2\x64\x12\xd1\x5e\xa2\x6e\x47\x49\xf0\x7a\x8a\x62\xd8\x53\x14\xc3\xbe\xbc\xed\xd6\x40\x4e\xda\xea\x2c\xd1\x4d\x84\x13\xe7\x62\x0f\x14\x07\x70\xae\x21\x7f\xf0\xd9\x2d\xa9\xbf\xc2\x0a\x4e\x05\x4b\x56\xd6\xed\xb9\xe7\x9e\x63\x9d\x9d\x9d\x46\xb9\xeb\xe5\x79\x46\xa1\xbf\xd6\x9a\xc9\x8d\x2a\xfa\xe0\x03\x3d\xde\x8f\xd7\x2c\x70\x99\x38\x1b\x08\x08\xb5\x31\x12\x08\xe4\xa5\xfb\x03\x79\xe9\x7e\x24\x2a\x25\x8c\x39\xe3\x80\xce\x09\x0a\x8c\x70\x95\x13\x18\x1c\x60\x04\x10\x29\x27\x22\xe1\x70\x52\x0e\x3b\x40\xa4\x25\x7b\x23\xa6\x40\x15\xcd\xcc\x40\x9d\x7a\x01\x56\x26\xcf\x8a\x14\xd4\x00\x16\x69\x15\x30\x13\x06\x06\x06\xb8\xa6\x69\xbc\xb9\xb9\xb9\x04\xa0\x00\x82\x89\xb4\xd3\x18\x89\x05\x0a\xe7\xeb\x0a\xe2\x3a\x4f\x51\xf4\x2f\xf6\x94\x30\x15\x95\x75\x38\x01\x11\x29\x88\x43\xe0\x44\x11\x38\xa9\x15\x39\xf1\x08\x9c\xb8\x29\x27\x2e\x0a\x22\x13\x10\x61\x39\x84\xcf\xc1\x71\xd1\xa3\xf5\xfe\x38\x92\xfc\xa7\x4b\x1e\xfd\x65\x58\x3e\x7e\x6d\xa5\x9c\x43\x4b\x4a\x00\xc0\x8a\x1e\x76\x75\x75\xb1\x48\x24\x52\x12\x45\x51\x05\x90\xd1\x45\x9e\x8a\x05\x0a\xef\xe6\x25\xd3\x0c\x66\xa4\x56\x1b\xa3\xb6\xa5\x7e\x8e\xd5\x00\x4d\x60\xea\xab\x1b\x26\x7e\x72\x64\x53\xfa\xdf\x54\x89\xbf\x09\x2b\xa8\x93\x8d\xc7\xe3\xc6\x4a\x45\x41\x97\x9c\x00\x15\x9c\x3a\x75\x8a\xb7\xb6\xb6\x9a\x4e\xa7\x53\x85\x55\x58\x31\x9d\x50\x4a\x03\x3d\x81\x42\xaf\x4b\x17\xfc\x75\x05\xb1\x61\xa9\xb5\xc1\x4a\x81\x83\xa3\xcf\x5f\x3c\xfb\xd4\xad\xc9\x7f\x1d\xf0\x69\x4f\x73\x82\xd3\xb0\x2a\x94\x4c\x24\x93\xc9\xd2\x42\xe2\xf8\x8b\x85\x65\x23\x00\x00\xbc\xf3\xce\x3b\x5c\x92\x24\xde\xd0\xd0\xa0\x03\xc8\x03\x48\xeb\x22\x4f\xbe\xeb\x2f\x9e\xbb\x54\xab\x25\xbc\x05\x5b\x63\x8d\x4e\xdd\xbf\x2c\x44\xe0\xe0\xb8\xec\x2a\xc5\x9f\x6b\x1f\xff\xde\x9b\x2d\xd9\xff\xd0\x6c\xfc\x4d\x58\xa5\xe7\x46\x00\xe4\xcf\x9c\x39\x63\x3e\xff\xfc\xf3\x2b\x1a\x17\x58\xb1\x91\xde\xb7\x6f\x1f\x55\x14\x45\x84\x55\xd5\xc2\x0f\x6b\xa5\xd0\xb6\x29\xe9\xec\xbc\x7b\x50\xd9\xe5\xcb\xdb\x1a\x6f\x56\x22\x70\x70\x8c\x3b\x8d\xe4\x1b\x2d\x99\x17\x63\xf5\x85\x97\x18\x45\x2f\xac\xa2\x0f\x49\x58\x35\x87\x8d\xd5\xb2\x65\x7e\x45\x47\x38\x1a\x8d\xd2\x2b\x8d\x9f\xac\xe5\x62\x85\x08\x1b\x36\x26\x1d\xef\xb9\xfd\x92\x72\x5f\x30\x23\xb5\xdc\x2c\x44\xe0\xe0\x48\xb8\x4a\xf1\x13\x4d\xd9\x57\x7a\xeb\x0b\xbf\x30\x29\xce\xc3\x12\x7c\x02\xe5\x5e\x41\xe5\x36\x2f\xab\x42\xf8\xc0\x0a\x13\xa0\x82\xb2\xcf\x80\xc2\x6a\xa9\x52\x21\x42\x88\x70\x84\x83\x19\xe9\xb6\xc8\xb0\x6b\xe7\xc6\xa4\x63\x8b\x64\x52\xfb\xaa\x78\xe0\x29\xd0\x29\xd3\x2f\xf8\x8a\xb1\xd3\xa1\xfc\xd1\x78\xad\xd6\xc5\x09\x06\x61\x95\x6a\xa9\x08\x5e\x8d\xc7\xe3\x6c\x35\xe6\x36\xac\xaa\xf1\x2c\x27\x98\x54\x88\xe0\x82\x15\x53\x68\x04\x10\xb2\x97\x68\x78\x53\xd2\x71\xd7\xe6\xcb\xce\xed\xa1\x09\xa9\xc5\xc6\xe8\xb2\x97\xa6\x9f\x0c\x83\x72\x63\x44\xd1\x86\x7a\x02\x85\xd3\xbd\xfe\xe2\x9b\x45\x89\xf5\xc3\x4a\xd9\x1a\x81\xd5\x5e\xae\x80\x55\x2c\xf8\x0a\x56\x15\x01\x2a\x98\x44\x84\x8a\x8d\x50\xd1\x0a\x01\x00\x01\xa7\x46\x5b\x5a\xd2\xf6\x6d\x2d\xe3\xf6\xb6\xa6\xb4\xdc\xe2\xd2\x04\x0f\x5d\xe2\x9f\x52\x69\x00\x71\xa9\x56\x1f\x1c\xf0\xaa\xb1\xc1\x3a\xb5\x3b\x27\x99\x03\x20\x18\x81\xf5\xa6\xa7\x60\x15\x7b\x52\x01\xe8\xab\x5d\xf0\x15\xac\x4a\x02\x54\x50\x8e\x2e\x02\xe5\x60\x0c\xae\x92\xc1\x03\x8b\x10\x5e\xca\xe0\x77\xab\xe2\xba\xc6\xac\xb4\xa1\x21\x2b\xb5\xf8\xf2\xb6\x80\xb7\x20\x7a\x1d\x25\xc1\x45\x39\x28\xaa\xea\xcf\x7d\x15\x1c\x1c\x8c\x80\xa9\x22\x2b\xa4\x1d\x46\x3a\xe9\xd2\x47\x12\xae\xd2\xd0\xb0\x5b\x3b\x3f\xe1\x30\x2e\x9a\xf4\x4a\xf9\xb5\x54\xf9\xc8\xa1\xfc\xb6\xa3\xca\x3e\x3d\xab\x09\xab\x9a\x00\x15\x44\x22\x11\xda\xd6\xd6\x36\x39\x1c\x2b\xc2\x72\xa1\x3a\x61\x4d\x15\xee\xc9\x07\xe1\x70\xc9\x06\x75\xd7\x68\x82\xcf\xad\x09\x5e\x7b\x89\xba\xed\x06\x75\xda\x4b\xd4\x2e\x30\x22\x0a\x96\xfb\x97\x32\x0a\xc3\xa0\xdc\xd0\x44\xa6\x6a\x22\x2b\x14\x6c\x66\x26\x27\x9b\xe9\x9c\x6c\xa6\x8a\x36\x36\xce\xad\xbd\x90\x19\xe0\x9a\x63\xb2\xc0\x75\x00\x46\x32\x99\x64\xb1\x58\x0c\xd3\xf5\xe6\x5d\xed\xb8\x29\x08\x30\x19\x53\xc8\x50\x39\xa4\x49\x87\x7d\x9a\x43\xc2\x55\xe2\x54\x6c\x87\x4a\x6f\xa3\xca\x9e\x47\x7d\xd2\xa1\x4e\x73\x54\xc2\xcd\x06\xac\x22\x4d\x37\xad\xd0\x27\xe3\xa6\x23\xc0\x54\x74\x74\x74\xd0\x60\x30\x78\xa5\xe9\x35\x26\x87\x73\xa7\xff\x3c\x35\x12\xc9\xa6\x1c\xc6\x94\xbf\x0c\xb0\xda\xbe\x0f\x0f\x0f\x57\xdd\x91\xf3\x66\xc1\x4d\x4f\x80\xe9\x10\x8d\x46\xa9\xcf\xe7\x83\x24\x49\xf0\xf9\x7c\x90\x65\x19\x98\x7b\x27\x34\xd3\x34\xed\x4a\x53\xc7\x85\x26\x93\xac\x61\x0d\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\xab\x1e\xff\x1f\x26\xf5\xd6\xf1\x64\x30\x2a\xac\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x81\x22\x7c\x0b\x92\x2b\x00\x00") -func web_uiStaticMstile70x70PngBytes() ([]byte, error) { +func web_uiV1StaticMstile70x70PngBytes() ([]byte, error) { return bindataRead( - _web_uiStaticMstile70x70Png, - "web_ui/static/mstile-70x70.png", + _web_uiV1StaticMstile70x70Png, + "web_ui/v1/static/mstile-70x70.png", ) } -func web_uiStaticMstile70x70Png() (*asset, error) { - bytes, err := web_uiStaticMstile70x70PngBytes() +func web_uiV1StaticMstile70x70Png() (*asset, error) { + bytes, err := web_uiV1StaticMstile70x70PngBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/mstile-70x70.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/mstile-70x70.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiStaticSafariPinnedTabSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x56\x5d\x6f\x1c\xc9\x0d\x7c\x9f\x5f\x51\xd9\xbc\xe4\x00\xb7\xb6\x49\xf6\x67\x60\xf9\x90\xb3\x8d\x43\x80\x38\x31\x6c\xe7\x82\x7b\xdc\x48\x73\xd2\x22\xab\x0f\xec\x0e\x24\x27\xbf\x3e\x28\xf6\x48\x97\xc8\x67\x18\x9a\xd9\x9e\xee\x26\x59\x2c\x16\xf9\xfa\xfb\xaf\x37\x07\x3c\xcc\xc7\xd3\xfe\xee\xf6\x7c\x23\x67\x71\x83\xd3\xb2\xbb\xbd\xdc\x1d\xee\x6e\xe7\xf3\xcd\xed\xdd\xe6\xfb\x37\xd3\xeb\xdf\xbd\xfb\xdb\xdb\x2f\x3f\x7f\x7c\x8f\xd3\xc3\x15\x3e\xfe\xfd\x87\xbf\xfc\xf9\x2d\x36\x61\xbb\xfd\x87\xbd\xdd\x6e\xdf\x7d\x79\x87\xcf\x3f\xfd\x08\x8d\x51\x62\x8f\x69\xbb\x7d\xff\xd7\xcd\x84\xcd\xf5\xb2\xdc\xff\x71\xbb\x7d\x7c\x7c\x3c\x7b\xb4\xb3\xbb\xe3\xd5\xf6\xcb\xa7\x2d\x37\x6d\x3f\xbd\x7f\x1b\x3e\xff\xf4\x63\x78\x3e\xf1\xee\xcb\xbb\xed\xe9\xe1\x4a\xe2\xd9\xe5\x72\xb9\x79\x33\xbd\xa6\x9d\xff\xf7\xea\xeb\xcd\xe1\xf6\x74\xfe\x1b\x97\x6a\x8c\x91\x87\x37\x13\x1e\xf7\x97\xcb\xf5\xf9\x46\xca\x59\xf4\x7f\xf7\xcb\x06\xd7\xf3\xfe\xea\x7a\x79\xb1\xf8\xb0\x9f\x1f\x7f\xb8\xfb\x7a\xbe\x89\x88\x78\xfe\xf2\xeb\xdb\x66\xc2\xfd\x71\x3e\xcd\xc7\x87\xf9\x4f\xa7\xfb\xf9\x62\xf9\xb4\x5b\xf6\x77\xe7\x9b\xaf\x1f\xf6\x97\x3f\x7f\xd8\x5f\xe2\x66\x9e\x17\xfa\x79\x33\x2f\xbb\xcb\xdd\xb2\x7b\x33\xbd\x3d\xce\xbb\x65\xbe\xc4\x3f\xff\x8d\xfb\xbb\xe5\xb8\xbb\x98\x21\x67\x22\xaf\xf0\x78\xdc\x2f\xcb\x7c\xcb\x0f\x1f\xe7\x65\x3e\xe2\xf3\x7c\xd8\xdf\x5e\xcd\x47\x07\x2c\x68\x14\x9b\x5e\x6f\x7f\xbd\xe8\xf5\x15\x96\xe3\xee\xf6\xf4\xcb\xdd\xf1\xe6\x7c\xe3\xaf\x87\xdd\x32\xff\x21\xae\xbe\xbd\x7a\xf6\xf2\x3b\x9c\x2e\x76\x87\xf1\xc5\xa2\xc5\x57\xe1\xe9\xed\xbb\xcd\xf4\xcb\xfe\x70\x38\xdf\xfc\x7e\x8d\x07\xa7\xe5\x78\xf7\x2f\x4f\xe8\xed\x4c\xc7\xef\x77\xcb\x35\x2e\xcf\x37\x1f\x34\xe5\x8a\x1c\x35\xe1\x22\x08\xf8\x3f\x45\x84\x8c\xd0\x2a\x42\x43\x48\x15\xc1\x10\x7a\xf2\x5f\x12\x33\xff\x20\x88\x20\x28\x42\xd2\x29\x54\x84\x1a\xc7\xaa\x56\x84\x84\x90\x2b\x42\x47\x28\x79\xec\x6b\xbe\x55\x0b\x42\x19\xb7\x77\x84\x9c\xfd\x21\x9d\x26\x0a\x82\xa6\x38\x85\xc2\x4b\xc7\x87\xac\x08\xd2\x10\x0a\x6f\xe5\x11\x43\x50\x41\xb0\xca\x53\x5c\xcd\x92\x78\x6c\xbd\xcb\x0a\x3d\x30\x84\x52\xa6\x20\xb1\xf2\x85\xbe\x0c\x6b\x36\x1c\xa9\x1e\x1f\x77\x33\xa8\x8c\x50\x69\x81\xab\x31\x22\x34\x9a\xb2\x4e\x3b\x8a\x60\xb1\x4e\x41\x69\xd6\xc3\x5d\x03\x30\x19\xa6\x12\xd7\x33\x01\x69\x8d\xab\x09\x21\x65\x7e\xef\x8c\xbb\xa5\xb1\xb3\x29\x42\xcb\x3c\x29\x93\x23\x68\xb1\x38\x16\xdc\xdf\x11\x12\x2f\xa0\x1b\x74\xbe\x23\xf4\x3c\x82\xf6\x3b\xb9\xb3\xf4\x61\x5a\x18\x3a\xcd\x8a\x41\x64\x0a\x39\x66\x98\x5f\x43\xc0\x15\x74\xb1\x28\xfc\x5a\x03\xaf\x12\xa9\x60\x94\xf4\x8f\xa1\x27\x81\xd2\x1b\x83\xae\x9b\x98\x36\x9b\x3a\x03\xab\x11\x42\x5f\xac\x55\xa8\x32\x23\x2d\x22\xf7\x42\xef\x33\x24\xba\x1b\xb1\x0b\x9a\x0d\x73\xc4\xae\x14\x38\x02\x35\xb9\x2b\x13\x8d\x67\xe8\xe0\x07\x19\xa0\x09\x42\x9b\xa9\x42\x18\x4d\x8e\x20\xb8\xb0\xe6\xd9\x20\x3b\x34\x22\x8f\xd8\x35\xf1\x4a\x81\x49\x9f\x42\x15\xd0\x0b\x03\xef\x6f\x28\x4e\x3c\x88\xe7\xa6\x20\x91\x02\x1a\x51\x4a\x65\x68\x42\xfb\x29\xa2\x22\x77\x02\x21\x0d\x86\xec\x98\xd4\x3c\x49\x61\xdc\x05\x99\xe7\x51\x04\x92\x91\x12\x08\x8a\x42\x2b\x24\x29\x0f\x4b\x45\x23\x5e\x92\x90\x0c\x8e\x6b\x44\x4e\x90\x02\x89\x09\x56\x26\xe9\x05\xb5\xc3\x68\xb4\x1a\x72\x6a\xb0\xa8\x38\xf0\x99\x1c\xfd\x26\xb8\x08\x96\x90\x06\x38\xc4\xaa\x46\x30\xff\x09\x84\x1e\x1e\x8c\xe8\x14\x3d\x23\x0c\x47\x48\x0a\xa1\x6f\xac\x83\x4a\x20\x89\xb5\xad\x09\x74\x7e\x56\xcf\xbc\x3c\xd5\x5d\x1f\x4f\x67\xb6\xe4\x89\xdf\x74\x50\x21\xd8\x5a\x81\x46\x0e\x09\x51\xb3\x4c\x43\x55\x46\x05\x80\xde\xf9\x69\xd6\xab\x3a\xaf\xe2\xa8\x48\x8d\x79\x0a\x44\xdb\xeb\xcb\x6b\x4c\x56\x9e\x5a\x19\xa5\x9f\x5a\x81\xaf\x15\x46\x63\x1d\x23\xa5\x23\x99\x5c\xb1\x75\x45\xe2\xc4\x4d\xe6\x9b\xda\xba\xf4\xb4\x2b\x8d\x1f\x25\x3b\x01\x35\x93\xc0\x59\x98\x1b\xaa\x86\x47\xb9\x52\x3b\x21\xcb\x14\xa4\x1b\xaa\x79\xdc\xee\x9d\x6f\xe1\x25\xc5\xbd\xf3\x9d\x63\x87\x52\xc0\x23\x37\xa5\x0e\xe5\xed\x25\x66\x64\x86\x59\x9d\xe8\xc3\xba\x0b\x59\x81\x32\x2a\xc6\x98\xe8\x8e\x45\x4f\x2a\x91\x4c\x55\x79\x79\xa1\x87\x51\x91\x63\x45\x8a\x0d\x3d\x0b\x1a\x1d\x55\xb3\x49\x44\x50\x23\x8c\x84\x6b\x15\x2c\x7a\x3e\x1b\x9b\x49\x87\x41\x0d\x0d\x09\xe4\x3f\x99\xc6\x2f\x19\xc2\xc0\x95\x4b\x09\x99\xdf\x5a\x42\xaa\x93\x6a\x75\xa2\xf1\x5c\x2a\x68\x28\x4e\x0f\x0a\xad\x0a\x52\xec\xe4\x6f\xa6\x83\x5e\xde\x46\x7e\x86\x8a\x55\x5b\x8b\x0b\x89\x46\x56\xb8\x4d\xea\xd2\xdd\x5d\x00\x1a\x58\xa4\x62\xe3\x21\xa0\xed\x94\x1c\xb4\x5e\x5d\x5e\x84\xb5\x9a\x05\x4a\xa5\x14\x2d\xb0\xca\xf4\xf6\x8e\x43\x1b\x6c\x20\xf5\x59\xba\x17\x62\x0d\xd2\x28\x30\xf4\xbb\x43\x0a\x21\xee\x38\xa8\xc2\x65\xb1\xc2\x22\x2e\x58\x95\x4c\x4c\x2a\x5e\x13\x99\xd0\x4c\xee\xa6\xd3\xcd\x05\x3b\xb3\x40\x83\x61\xa0\xcd\x34\xa5\x0c\x1b\x7c\x94\x21\x2f\xbc\x31\x65\xe8\xa0\xba\x4b\xaf\x6b\x89\x4c\xc1\xb8\x90\xbb\x47\xc9\x6d\xda\xcc\xd3\xe4\x9c\xf7\xec\x0f\xfa\x24\xd7\x9a\x5c\x07\x66\x75\x14\x5c\x4b\x2e\x89\x94\x9a\x94\xa6\x20\xa9\x0c\xc2\xf5\xe2\x88\x69\x6f\xd0\x55\x48\x09\x59\x1a\x8f\x8c\xf8\x9f\xcd\xf6\x7f\x5b\x66\x4a\xb5\x30\xe9\x1d\x17\x81\x7a\xef\xf5\xe7\x24\x75\x56\xd6\x3a\x1c\x66\xa3\x11\x4a\x4c\xec\xde\xdf\xa0\xae\xe9\x56\xa6\x5e\x98\xff\xe2\x09\xd7\x58\x20\x16\x41\x54\x79\x47\x55\x98\x53\xb1\x64\x98\x7d\x63\xba\xc5\x06\xd3\x52\x09\x76\x75\x13\xde\x44\x6c\x7d\x92\x82\x5c\x2c\xa3\xbb\x8e\x36\xa3\xa3\x0d\x3a\xf1\xd9\x1c\xe9\xa4\xc9\x7a\x6a\xdd\x29\x2e\x4f\x6c\xac\x9e\x12\x01\x45\xa3\x53\x26\xcb\x68\x3f\xe4\x0e\x13\x66\xf4\x8d\xa4\x2e\x9e\x59\x49\x28\x14\x6b\x89\x30\x45\x1f\x39\x46\x8b\xac\x0f\xf1\x8a\xec\x04\x59\x1b\xd9\x9c\x1d\x60\x6f\xb6\x82\xe6\xad\xb0\xb1\x0d\xb2\x79\x88\xe7\xd4\x95\x87\x0d\xc3\xe7\x8b\x64\xe8\xf2\x12\x01\x4a\xa5\x11\x9d\x0b\x9f\x2a\x86\x24\xb2\xa7\x0f\xad\x14\xb2\x9b\x19\xd1\x9a\x9e\x3b\x28\x43\x8a\xdd\xb3\xce\x3b\xd5\x5b\x8d\xf3\x88\x4f\x21\x3e\xcc\x43\x35\xa8\x76\x67\x3a\x43\x62\xa8\xa9\x42\xc7\x2c\x62\x50\xf6\x65\x36\x1e\x37\xd6\x27\xb2\xac\xbe\x70\x4f\xd9\x9d\x4c\x72\x79\x76\xef\xa9\x75\xdb\xc8\xc5\xd0\x62\xcf\xb0\x0e\x7a\x8d\x61\x82\xac\x69\x1c\x39\x9a\xbb\xcd\x20\xaa\x97\x12\xb9\xe2\xa3\x4d\x1d\x7a\xed\x1a\xde\x9e\x68\x55\x15\xc9\xa7\x19\xea\x64\x74\xde\x30\x85\x14\xab\x49\x1b\x8b\x3b\x42\x5b\x44\x4a\x3e\xfc\x50\x2c\x83\x29\xd4\xf3\xaf\x0a\x23\x6d\x34\xc1\x7f\x8b\x82\x7c\xf6\x86\xe4\x34\xa8\xcc\x5a\xe8\x71\x1a\x3d\x3b\x0f\x16\x14\x78\xcf\x1e\x82\xc4\xea\xe9\x2f\x40\xb0\x1c\x69\xb5\x29\x67\x4a\xaa\x0c\xb3\x3b\x7a\xdd\xf0\x9e\xad\x3f\xcb\x5a\x7d\x1d\xca\x09\x8e\xb3\x56\x72\x6a\xe4\x32\x75\xe7\x07\x3f\xb1\x4d\x93\x5b\x74\xbf\xfa\xf0\x52\xdb\xaa\x7e\xd1\x75\xdf\xda\x68\x2f\x31\x0f\x7f\xd8\x53\x5e\x72\xa6\x12\x89\x54\x59\x35\xc9\xe7\x47\xee\x4b\xeb\xc0\x45\xd1\x24\xe7\x7c\xc0\x6b\x63\x82\x95\x9a\x39\x4e\xf8\x3c\x98\x98\xe9\x06\x8e\x43\x9c\x79\x28\x92\xc5\xbf\xba\xfd\xec\x25\x62\x86\xaa\x58\x71\x13\x53\x27\x95\x46\x1f\x3d\xc9\x43\x1e\x2c\xae\x39\xba\xaa\xb5\x87\xe5\x75\xa8\x6e\xaf\xa3\x7d\xc3\x74\x8b\xf4\xda\x1c\x45\x36\x6a\xc7\x8e\xac\xa1\x5e\xd2\xc5\xa0\xc9\x7b\x60\x11\x57\x43\x52\xc2\x35\x3c\x1b\x47\xaf\xc9\xcb\xda\xa7\x01\xaa\x4a\x13\x56\x1b\xcb\x90\x34\x07\xaf\xa4\x0a\x15\xc7\x83\x19\xaa\x82\xbe\xe6\xd9\x07\x4e\xeb\xab\x8f\x75\x32\x6f\xfc\xa4\xc3\x37\x5a\xc8\x3c\x56\xa5\x16\xa6\xd1\x93\x47\xbd\xb1\x0c\x57\x68\xf3\x90\x19\x9e\xa7\x77\xa6\x94\x42\x36\x81\xd8\x26\x61\x01\x52\xf2\x0d\xc2\x01\xa3\xbb\xea\x79\x99\x25\xf5\x09\xda\xa7\x7a\xfa\x23\x2c\x74\x5b\x35\xdb\x25\x88\x20\x28\xd2\x70\x69\x7b\xc5\x3f\xa7\x87\xab\x37\xd3\x7f\x03\x00\x00\xff\xff\xab\x7e\x23\x1b\xd6\x0e\x00\x00") +var _web_uiV1StaticSafariPinnedTabSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x56\x5d\x6f\x1c\xc9\x0d\x7c\x9f\x5f\x51\xd9\xbc\xe4\x00\xb7\xb6\x49\xf6\x67\x60\xf9\x90\xb3\x8d\x43\x80\x38\x31\x6c\xe7\x82\x7b\xdc\x48\x73\xd2\x22\xab\x0f\xec\x0e\x24\x27\xbf\x3e\x28\xf6\x48\x97\xc8\x67\x18\x9a\xd9\x9e\xee\x26\x59\x2c\x16\xf9\xfa\xfb\xaf\x37\x07\x3c\xcc\xc7\xd3\xfe\xee\xf6\x7c\x23\x67\x71\x83\xd3\xb2\xbb\xbd\xdc\x1d\xee\x6e\xe7\xf3\xcd\xed\xdd\xe6\xfb\x37\xd3\xeb\xdf\xbd\xfb\xdb\xdb\x2f\x3f\x7f\x7c\x8f\xd3\xc3\x15\x3e\xfe\xfd\x87\xbf\xfc\xf9\x2d\x36\x61\xbb\xfd\x87\xbd\xdd\x6e\xdf\x7d\x79\x87\xcf\x3f\xfd\x08\x8d\x51\x62\x8f\x69\xbb\x7d\xff\xd7\xcd\x84\xcd\xf5\xb2\xdc\xff\x71\xbb\x7d\x7c\x7c\x3c\x7b\xb4\xb3\xbb\xe3\xd5\xf6\xcb\xa7\x2d\x37\x6d\x3f\xbd\x7f\x1b\x3e\xff\xf4\x63\x78\x3e\xf1\xee\xcb\xbb\xed\xe9\xe1\x4a\xe2\xd9\xe5\x72\xb9\x79\x33\xbd\xa6\x9d\xff\xf7\xea\xeb\xcd\xe1\xf6\x74\xfe\x1b\x97\x6a\x8c\x91\x87\x37\x13\x1e\xf7\x97\xcb\xf5\xf9\x46\xca\x59\xf4\x7f\xf7\xcb\x06\xd7\xf3\xfe\xea\x7a\x79\xb1\xf8\xb0\x9f\x1f\x7f\xb8\xfb\x7a\xbe\x89\x88\x78\xfe\xf2\xeb\xdb\x66\xc2\xfd\x71\x3e\xcd\xc7\x87\xf9\x4f\xa7\xfb\xf9\x62\xf9\xb4\x5b\xf6\x77\xe7\x9b\xaf\x1f\xf6\x97\x3f\x7f\xd8\x5f\xe2\x66\x9e\x17\xfa\x79\x33\x2f\xbb\xcb\xdd\xb2\x7b\x33\xbd\x3d\xce\xbb\x65\xbe\xc4\x3f\xff\x8d\xfb\xbb\xe5\xb8\xbb\x98\x21\x67\x22\xaf\xf0\x78\xdc\x2f\xcb\x7c\xcb\x0f\x1f\xe7\x65\x3e\xe2\xf3\x7c\xd8\xdf\x5e\xcd\x47\x07\x2c\x68\x14\x9b\x5e\x6f\x7f\xbd\xe8\xf5\x15\x96\xe3\xee\xf6\xf4\xcb\xdd\xf1\xe6\x7c\xe3\xaf\x87\xdd\x32\xff\x21\xae\xbe\xbd\x7a\xf6\xf2\x3b\x9c\x2e\x76\x87\xf1\xc5\xa2\xc5\x57\xe1\xe9\xed\xbb\xcd\xf4\xcb\xfe\x70\x38\xdf\xfc\x7e\x8d\x07\xa7\xe5\x78\xf7\x2f\x4f\xe8\xed\x4c\xc7\xef\x77\xcb\x35\x2e\xcf\x37\x1f\x34\xe5\x8a\x1c\x35\xe1\x22\x08\xf8\x3f\x45\x84\x8c\xd0\x2a\x42\x43\x48\x15\xc1\x10\x7a\xf2\x5f\x12\x33\xff\x20\x88\x20\x28\x42\xd2\x29\x54\x84\x1a\xc7\xaa\x56\x84\x84\x90\x2b\x42\x47\x28\x79\xec\x6b\xbe\x55\x0b\x42\x19\xb7\x77\x84\x9c\xfd\x21\x9d\x26\x0a\x82\xa6\x38\x85\xc2\x4b\xc7\x87\xac\x08\xd2\x10\x0a\x6f\xe5\x11\x43\x50\x41\xb0\xca\x53\x5c\xcd\x92\x78\x6c\xbd\xcb\x0a\x3d\x30\x84\x52\xa6\x20\xb1\xf2\x85\xbe\x0c\x6b\x36\x1c\xa9\x1e\x1f\x77\x33\xa8\x8c\x50\x69\x81\xab\x31\x22\x34\x9a\xb2\x4e\x3b\x8a\x60\xb1\x4e\x41\x69\xd6\xc3\x5d\x03\x30\x19\xa6\x12\xd7\x33\x01\x69\x8d\xab\x09\x21\x65\x7e\xef\x8c\xbb\xa5\xb1\xb3\x29\x42\xcb\x3c\x29\x93\x23\x68\xb1\x38\x16\xdc\xdf\x11\x12\x2f\xa0\x1b\x74\xbe\x23\xf4\x3c\x82\xf6\x3b\xb9\xb3\xf4\x61\x5a\x18\x3a\xcd\x8a\x41\x64\x0a\x39\x66\x98\x5f\x43\xc0\x15\x74\xb1\x28\xfc\x5a\x03\xaf\x12\xa9\x60\x94\xf4\x8f\xa1\x27\x81\xd2\x1b\x83\xae\x9b\x98\x36\x9b\x3a\x03\xab\x11\x42\x5f\xac\x55\xa8\x32\x23\x2d\x22\xf7\x42\xef\x33\x24\xba\x1b\xb1\x0b\x9a\x0d\x73\xc4\xae\x14\x38\x02\x35\xb9\x2b\x13\x8d\x67\xe8\xe0\x07\x19\xa0\x09\x42\x9b\xa9\x42\x18\x4d\x8e\x20\xb8\xb0\xe6\xd9\x20\x3b\x34\x22\x8f\xd8\x35\xf1\x4a\x81\x49\x9f\x42\x15\xd0\x0b\x03\xef\x6f\x28\x4e\x3c\x88\xe7\xa6\x20\x91\x02\x1a\x51\x4a\x65\x68\x42\xfb\x29\xa2\x22\x77\x02\x21\x0d\x86\xec\x98\xd4\x3c\x49\x61\xdc\x05\x99\xe7\x51\x04\x92\x91\x12\x08\x8a\x42\x2b\x24\x29\x0f\x4b\x45\x23\x5e\x92\x90\x0c\x8e\x6b\x44\x4e\x90\x02\x89\x09\x56\x26\xe9\x05\xb5\xc3\x68\xb4\x1a\x72\x6a\xb0\xa8\x38\xf0\x99\x1c\xfd\x26\xb8\x08\x96\x90\x06\x38\xc4\xaa\x46\x30\xff\x09\x84\x1e\x1e\x8c\xe8\x14\x3d\x23\x0c\x47\x48\x0a\xa1\x6f\xac\x83\x4a\x20\x89\xb5\xad\x09\x74\x7e\x56\xcf\xbc\x3c\xd5\x5d\x1f\x4f\x67\xb6\xe4\x89\xdf\x74\x50\x21\xd8\x5a\x81\x46\x0e\x09\x51\xb3\x4c\x43\x55\x46\x05\x80\xde\xf9\x69\xd6\xab\x3a\xaf\xe2\xa8\x48\x8d\x79\x0a\x44\xdb\xeb\xcb\x6b\x4c\x56\x9e\x5a\x19\xa5\x9f\x5a\x81\xaf\x15\x46\x63\x1d\x23\xa5\x23\x99\x5c\xb1\x75\x45\xe2\xc4\x4d\xe6\x9b\xda\xba\xf4\xb4\x2b\x8d\x1f\x25\x3b\x01\x35\x93\xc0\x59\x98\x1b\xaa\x86\x47\xb9\x52\x3b\x21\xcb\x14\xa4\x1b\xaa\x79\xdc\xee\x9d\x6f\xe1\x25\xc5\xbd\xf3\x9d\x63\x87\x52\xc0\x23\x37\xa5\x0e\xe5\xed\x25\x66\x64\x86\x59\x9d\xe8\xc3\xba\x0b\x59\x81\x32\x2a\xc6\x98\xe8\x8e\x45\x4f\x2a\x91\x4c\x55\x79\x79\xa1\x87\x51\x91\x63\x45\x8a\x0d\x3d\x0b\x1a\x1d\x55\xb3\x49\x44\x50\x23\x8c\x84\x6b\x15\x2c\x7a\x3e\x1b\x9b\x49\x87\x41\x0d\x0d\x09\xe4\x3f\x99\xc6\x2f\x19\xc2\xc0\x95\x4b\x09\x99\xdf\x5a\x42\xaa\x93\x6a\x75\xa2\xf1\x5c\x2a\x68\x28\x4e\x0f\x0a\xad\x0a\x52\xec\xe4\x6f\xa6\x83\x5e\xde\x46\x7e\x86\x8a\x55\x5b\x8b\x0b\x89\x46\x56\xb8\x4d\xea\xd2\xdd\x5d\x00\x1a\x58\xa4\x62\xe3\x21\xa0\xed\x94\x1c\xb4\x5e\x5d\x5e\x84\xb5\x9a\x05\x4a\xa5\x14\x2d\xb0\xca\xf4\xf6\x8e\x43\x1b\x6c\x20\xf5\x59\xba\x17\x62\x0d\xd2\x28\x30\xf4\xbb\x43\x0a\x21\xee\x38\xa8\xc2\x65\xb1\xc2\x22\x2e\x58\x95\x4c\x4c\x2a\x5e\x13\x99\xd0\x4c\xee\xa6\xd3\xcd\x05\x3b\xb3\x40\x83\x61\xa0\xcd\x34\xa5\x0c\x1b\x7c\x94\x21\x2f\xbc\x31\x65\xe8\xa0\xba\x4b\xaf\x6b\x89\x4c\xc1\xb8\x90\xbb\x47\xc9\x6d\xda\xcc\xd3\xe4\x9c\xf7\xec\x0f\xfa\x24\xd7\x9a\x5c\x07\x66\x75\x14\x5c\x4b\x2e\x89\x94\x9a\x94\xa6\x20\xa9\x0c\xc2\xf5\xe2\x88\x69\x6f\xd0\x55\x48\x09\x59\x1a\x8f\x8c\xf8\x9f\xcd\xf6\x7f\x5b\x66\x4a\xb5\x30\xe9\x1d\x17\x81\x7a\xef\xf5\xe7\x24\x75\x56\xd6\x3a\x1c\x66\xa3\x11\x4a\x4c\xec\xde\xdf\xa0\xae\xe9\x56\xa6\x5e\x98\xff\xe2\x09\xd7\x58\x20\x16\x41\x54\x79\x47\x55\x98\x53\xb1\x64\x98\x7d\x63\xba\xc5\x06\xd3\x52\x09\x76\x75\x13\xde\x44\x6c\x7d\x92\x82\x5c\x2c\xa3\xbb\x8e\x36\xa3\xa3\x0d\x3a\xf1\xd9\x1c\xe9\xa4\xc9\x7a\x6a\xdd\x29\x2e\x4f\x6c\xac\x9e\x12\x01\x45\xa3\x53\x26\xcb\x68\x3f\xe4\x0e\x13\x66\xf4\x8d\xa4\x2e\x9e\x59\x49\x28\x14\x6b\x89\x30\x45\x1f\x39\x46\x8b\xac\x0f\xf1\x8a\xec\x04\x59\x1b\xd9\x9c\x1d\x60\x6f\xb6\x82\xe6\xad\xb0\xb1\x0d\xb2\x79\x88\xe7\xd4\x95\x87\x0d\xc3\xe7\x8b\x64\xe8\xf2\x12\x01\x4a\xa5\x11\x9d\x0b\x9f\x2a\x86\x24\xb2\xa7\x0f\xad\x14\xb2\x9b\x19\xd1\x9a\x9e\x3b\x28\x43\x8a\xdd\xb3\xce\x3b\xd5\x5b\x8d\xf3\x88\x4f\x21\x3e\xcc\x43\x35\xa8\x76\x67\x3a\x43\x62\xa8\xa9\x42\xc7\x2c\x62\x50\xf6\x65\x36\x1e\x37\xd6\x27\xb2\xac\xbe\x70\x4f\xd9\x9d\x4c\x72\x79\x76\xef\xa9\x75\xdb\xc8\xc5\xd0\x62\xcf\xb0\x0e\x7a\x8d\x61\x82\xac\x69\x1c\x39\x9a\xbb\xcd\x20\xaa\x97\x12\xb9\xe2\xa3\x4d\x1d\x7a\xed\x1a\xde\x9e\x68\x55\x15\xc9\xa7\x19\xea\x64\x74\xde\x30\x85\x14\xab\x49\x1b\x8b\x3b\x42\x5b\x44\x4a\x3e\xfc\x50\x2c\x83\x29\xd4\xf3\xaf\x0a\x23\x6d\x34\xc1\x7f\x8b\x82\x7c\xf6\x86\xe4\x34\xa8\xcc\x5a\xe8\x71\x1a\x3d\x3b\x0f\x16\x14\x78\xcf\x1e\x82\xc4\xea\xe9\x2f\x40\xb0\x1c\x69\xb5\x29\x67\x4a\xaa\x0c\xb3\x3b\x7a\xdd\xf0\x9e\xad\x3f\xcb\x5a\x7d\x1d\xca\x09\x8e\xb3\x56\x72\x6a\xe4\x32\x75\xe7\x07\x3f\xb1\x4d\x93\x5b\x74\xbf\xfa\xf0\x52\xdb\xaa\x7e\xd1\x75\xdf\xda\x68\x2f\x31\x0f\x7f\xd8\x53\x5e\x72\xa6\x12\x89\x54\x59\x35\xc9\xe7\x47\xee\x4b\xeb\xc0\x45\xd1\x24\xe7\x7c\xc0\x6b\x63\x82\x95\x9a\x39\x4e\xf8\x3c\x98\x98\xe9\x06\x8e\x43\x9c\x79\x28\x92\xc5\xbf\xba\xfd\xec\x25\x62\x86\xaa\x58\x71\x13\x53\x27\x95\x46\x1f\x3d\xc9\x43\x1e\x2c\xae\x39\xba\xaa\xb5\x87\xe5\x75\xa8\x6e\xaf\xa3\x7d\xc3\x74\x8b\xf4\xda\x1c\x45\x36\x6a\xc7\x8e\xac\xa1\x5e\xd2\xc5\xa0\xc9\x7b\x60\x11\x57\x43\x52\xc2\x35\x3c\x1b\x47\xaf\xc9\xcb\xda\xa7\x01\xaa\x4a\x13\x56\x1b\xcb\x90\x34\x07\xaf\xa4\x0a\x15\xc7\x83\x19\xaa\x82\xbe\xe6\xd9\x07\x4e\xeb\xab\x8f\x75\x32\x6f\xfc\xa4\xc3\x37\x5a\xc8\x3c\x56\xa5\x16\xa6\xd1\x93\x47\xbd\xb1\x0c\x57\x68\xf3\x90\x19\x9e\xa7\x77\xa6\x94\x42\x36\x81\xd8\x26\x61\x01\x52\xf2\x0d\xc2\x01\xa3\xbb\xea\x79\x99\x25\xf5\x09\xda\xa7\x7a\xfa\x23\x2c\x74\x5b\x35\xdb\x25\x88\x20\x28\xd2\x70\x69\x7b\xc5\x3f\xa7\x87\xab\x37\xd3\x7f\x03\x00\x00\xff\xff\xab\x7e\x23\x1b\xd6\x0e\x00\x00") -func web_uiStaticSafariPinnedTabSvgBytes() ([]byte, error) { +func web_uiV1StaticSafariPinnedTabSvgBytes() ([]byte, error) { return bindataRead( - _web_uiStaticSafariPinnedTabSvg, - "web_ui/static/safari-pinned-tab.svg", + _web_uiV1StaticSafariPinnedTabSvg, + "web_ui/v1/static/safari-pinned-tab.svg", ) } -func web_uiStaticSafariPinnedTabSvg() (*asset, error) { - bytes, err := web_uiStaticSafariPinnedTabSvgBytes() +func web_uiV1StaticSafariPinnedTabSvg() (*asset, error) { + bytes, err := web_uiV1StaticSafariPinnedTabSvgBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/static/safari-pinned-tab.svg", size: 3798, mode: os.FileMode(420), modTime: time.Unix(1516661097, 0)} + info := bindataFileInfo{name: "web_ui/v1/static/safari-pinned-tab.svg", size: 3798, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV1StaticTadaPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xe7\x06\x18\xf9\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x1e\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x3b\x30\xae\xa2\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x06\xa1\x49\x44\x41\x54\x48\x0d\xa5\x57\x0b\x6c\x93\x55\x14\xfe\xce\xff\x68\xbb\x96\xad\x7b\x08\x1b\x63\x43\x20\x8b\x82\x3c\xa6\xac\x82\x8b\x24\x30\x35\x60\x22\x88\x46\x89\xf3\x85\x41\x89\x43\xc4\x44\x31\x26\x26\x4a\x52\xc1\x68\x94\x87\x51\x14\x5f\x10\xc2\x90\x11\x19\x62\x10\x91\xa0\xe2\x7c\xe0\x18\x03\x04\x1f\x53\x54\x1c\x66\xbc\xc2\x56\xd8\x60\xb4\xb4\xfd\x1f\xd7\x73\x3b\xfe\xd1\x6e\x6c\x2c\x72\xd3\xf6\xde\x7b\xee\xb9\xe7\x3b\xe7\xbb\xe7\x9e\xff\x2f\xd0\xc7\x36\xa9\x46\x68\x77\xee\x14\xe9\x7d\x54\xbf\xac\x9a\xe2\x68\x3c\xb0\xc7\x7c\xec\xfe\x7a\x63\x89\x33\xef\xda\xe7\x79\xad\x29\xfe\x74\xd1\x70\x5f\x9d\x31\xb9\xeb\xda\xff\x99\x77\x02\x93\xaa\xee\x12\x02\x9b\x7b\x32\x62\x59\xea\x2e\xcb\x42\x9d\xee\x56\x3e\x2d\xdf\x1d\x0f\x24\xeb\x09\x21\xa8\xa6\x4a\x0c\xaf\x59\x2d\x32\x93\xe5\xbd\x8d\xa9\xb7\xc5\xae\x6b\x33\x1a\x84\xcb\x15\x15\x35\x96\x65\x09\xeb\x46\x6d\x62\x35\x91\x25\x75\x18\xd0\x63\xeb\xf8\xce\xa5\x21\xc7\x8c\xa3\xbc\x6c\x26\xed\x95\x72\x79\x34\x3e\x97\xfd\x0c\xc2\xe1\x15\xeb\xcb\x32\x42\x52\xe6\xb4\xce\x88\x1d\x41\x6f\x7d\xf5\x48\x8a\x9b\xa6\xfd\x2a\x81\x6e\x52\xf6\x61\x88\xa3\x5b\x36\x8b\xa2\x8a\x81\x29\x96\x8d\x23\xb6\x8a\x17\x1c\xb9\xdb\xd3\xaa\x90\xb0\x33\xb5\xec\xf4\x6e\x38\x9a\xa3\xd4\xe7\x5e\xb5\x8f\xc3\x56\x24\x53\x7e\xb9\xa7\x66\x9d\xb8\x4d\xd5\xf0\x94\x65\xc2\xc7\xd2\x62\xdb\xc6\x62\xc7\x56\x75\x20\xfb\x0c\x8f\xe7\x3b\xf3\xe4\xbe\x9b\x27\xc9\x8b\x97\x1a\x2b\x96\x32\x56\x00\xd1\x08\xda\x9b\x6a\xd7\x88\x41\x10\xd8\x60\x5b\x68\x53\x54\xd4\x71\xc4\x73\xe9\xd0\x45\xe0\x4b\xed\x77\x64\x7d\x8a\x78\xcd\x93\x81\xe9\x9a\x26\x02\x61\x35\xe3\x40\x8d\xa2\xcc\x35\x41\x5b\xb7\x04\x32\x42\xf3\x2a\xc5\x50\x1d\xf0\xa8\x2a\x1a\x22\x6d\x58\x7b\x7b\x05\x9d\x70\x0c\x5f\xae\x4f\x01\x16\x4f\x2f\xba\x05\xb6\x18\x80\x13\xbf\x56\x53\x75\x75\x22\x71\x76\xbe\x76\x43\xfe\xe1\x63\xa2\xd2\x05\x33\xe3\xf8\xe0\x52\xa8\x2e\xc2\x88\x1f\x16\x6f\xda\xc8\x96\xa7\xcc\xa4\xc3\x5f\x7f\x24\x9e\x60\xda\x16\xf8\xfc\x78\x7e\xc7\x3a\xf1\xc2\xad\x0f\xd2\xbb\x62\xc6\x0c\x15\xf9\xc5\x4f\xc0\x46\x36\x34\xef\x62\x7a\x63\xfe\xf9\xae\x8e\x74\x52\x2d\x82\x41\x0d\x42\xbc\x0f\x55\x5f\x8f\xc2\xe2\x7c\x47\x31\x30\x5c\x2f\xef\x9f\xa9\x66\x84\xe3\x80\xab\xed\x18\xae\xfd\xfe\x15\x0c\x3b\xb8\x7e\x61\xe5\xbc\xc0\xfa\x0f\x67\xfb\x72\x6f\x7b\x88\xd6\x34\xb4\x61\x84\x69\x61\x19\x09\x2c\x7c\x66\x99\x48\x43\xfa\xd0\x5c\xb6\xb5\x1c\x69\x69\x2f\xc1\x3c\x3b\xda\xb1\x95\xdc\x77\x46\x4c\xc1\xa0\x29\xe6\x2d\x7a\x0e\xb6\x39\x10\x39\x56\x82\x32\x51\x5b\x9a\x86\x56\xb3\x22\x2f\x07\x38\xda\xa2\x21\xb3\xf9\x00\xb2\x4e\xee\x83\xa9\xba\xc9\xa5\xd9\xe5\x6a\xf6\x9d\xa3\x77\xac\xad\x6a\xe0\x33\x2f\x60\xba\x0b\x0d\x03\x3b\x4b\x0b\x10\xc7\x59\x6f\x33\x5a\x69\x01\x62\xe7\x73\x60\xe1\xf7\x64\x40\x67\xdc\xeb\x3d\x16\xdb\xc6\xdd\x0d\x9d\x36\xb5\xb7\xd9\xd8\xb2\xd3\x42\xdc\xe0\x8b\x94\xd8\xc1\x50\xdc\x06\x8d\xa9\x84\x4a\x51\x44\xc2\x27\xb6\xbb\xb2\xa6\x6e\xf4\x66\xe2\xe3\x09\xd3\xa9\xdd\x31\xde\xb5\x17\xdb\x4b\x86\xb3\xd7\xfd\xe8\x8e\xfa\xbd\x9d\x54\x77\x53\x12\x20\x3e\xa3\x39\xe0\x2e\x3d\x9d\xef\xc9\x28\x3f\x38\x6b\x53\x9a\x9c\xc7\xe2\x61\xb4\x1f\x5b\x79\x5d\xe3\xd7\x74\xa0\x37\xd0\xc4\x46\x53\x59\xc9\xe6\x3e\x17\x1b\x4a\xd3\x7a\x04\xc6\xd6\xf1\x63\xa1\x62\x12\xe2\x26\xe0\xce\xc2\x88\x9b\x86\xe3\xea\x21\x7e\x70\x01\x61\x1b\xc4\x47\x68\xe1\x54\xe3\x42\x90\xea\x87\xbf\x60\x56\xa1\xd7\x5f\xfc\xd9\xca\x39\x81\x51\x29\x9e\x75\x9d\xd8\xe2\x45\x16\xcd\xc1\x8c\x5d\xd1\x1e\xa9\x16\x5b\xc7\xbd\x07\x0f\x55\xc0\xe4\x34\xc8\x1b\xc1\x99\xe5\x46\xa4\x3d\x86\xed\x9b\xff\x40\xeb\xe9\x08\x54\x55\x61\x70\xbe\x58\xa4\xb2\x1f\x3a\x74\x85\x8f\xc2\xb6\x7e\xae\x37\xf7\x97\xad\x08\x05\xc3\xc8\xd7\xb3\xa0\x19\x16\x96\x06\x4f\x31\x48\xc7\xd9\x24\x39\x72\x49\x60\xf1\xe5\xcd\xf9\xb0\x8c\x5f\x58\x2f\x07\x39\xc3\x00\x1f\x67\x97\xe0\x48\x19\xac\x35\x14\xc6\x57\x9f\xff\x85\x73\xed\x51\x9e\xca\xed\x1d\x36\x4d\x3e\x97\x5c\x35\x0b\x25\xf6\x98\xbd\x03\xc5\x80\x4c\x28\x5c\x5c\x08\x4c\x17\x0e\x43\xd0\x26\x90\xb1\x9a\xde\x0c\x36\x39\xd8\x97\x06\xde\x36\xee\x39\xe8\x78\x1d\x3a\x03\x5e\x35\x94\x6d\x5f\x70\x58\x66\x96\x30\x70\xea\xcf\xbf\xb0\xa3\xb6\x1d\xe7\xce\x93\xf4\x25\xd1\x46\x52\x11\x6e\x20\x66\x5a\x37\x71\xda\x68\xff\xaa\x3f\x65\x7d\xcc\x3e\x79\x18\xfc\x66\xa6\x64\x1a\x53\x63\xc3\xb6\x97\x20\x6a\x2d\xa5\x0f\x82\x91\xce\xeb\xe4\x78\x22\xb6\x94\x78\x59\xe1\x51\x28\x69\x40\x66\x01\xc0\xf5\x30\x91\xca\x92\x52\x83\xeb\x40\xcb\x21\xe4\xf8\x22\x98\x3c\x5e\xc3\xb7\x3f\x59\x08\x9d\x11\xf0\xaa\x3a\x8a\x68\x30\xfe\x14\x8d\x68\x30\x0f\xa2\xcd\x3e\x87\xc7\xdf\xfe\x75\xd5\x05\x9b\xef\x88\xf9\x2f\x17\x32\x21\xcf\x82\x94\xd9\x70\xa3\x8a\xe5\xff\x74\x8b\x58\x7c\x31\xfe\x5e\x8e\xb6\x1a\x99\x4c\xb1\x37\x1b\x96\x7f\x10\x94\xc8\x69\x50\x98\x9f\x6a\x2d\xff\x74\x80\x13\x87\xc9\x9f\xf3\x51\xa0\xee\x37\x1b\x8d\xc7\x04\x5c\x5c\xac\x4d\x32\x38\x40\x82\x22\xa3\x03\x95\x3e\xb2\x7c\x6f\xbd\x13\x90\xec\xc5\xdc\x60\x3f\x5a\x11\x3c\x27\xc7\x17\x88\x92\xc3\x04\xa3\x7c\x85\x8c\x0a\xa4\xf7\x67\xd0\xac\x84\x40\xb8\x38\x72\x93\x11\x9a\xff\xbe\x08\x2a\x95\xd9\x74\x9a\x1b\x98\x54\xa2\x60\x42\xb1\x02\xb7\xc7\x62\x72\x14\x26\x8b\xe0\xd1\x65\xe6\xd9\xd7\x48\xb5\xe4\xe6\x80\x4a\x59\x2a\xd5\x5b\xae\x0f\xc0\xe7\x9b\x08\xdf\x40\x06\xe5\x55\x3e\x53\xed\xe8\x81\x04\xbd\xe0\x27\x3c\x53\x95\x6c\x27\xa1\x23\x29\xbb\x76\x28\xe1\xea\x81\x2a\x8e\x9e\x04\x9a\x4e\x0a\x9c\x3a\x63\xef\xb1\x74\xb5\x36\x55\x39\x75\x96\x0a\xac\xea\x8f\xa3\xff\x60\x1d\x8a\xab\x43\xcb\x88\x00\x21\xa6\xd7\x8c\x5d\x04\xe5\x82\xcc\x59\x7a\xd1\x8a\xcc\x6c\x8d\xa3\xf4\xd8\x46\xd1\x60\x7c\x53\x54\x48\xef\xc3\xe3\xdb\x46\x65\xdf\x32\x4d\x3d\xb7\x4e\x60\xf1\x49\x51\x01\x32\x06\xdc\x03\x9d\x5f\x9b\x64\x8d\x90\x89\xd4\x7c\x88\x7b\xde\xef\x44\x2a\x41\x63\xcc\xaf\x6e\xf0\x97\x75\x18\x10\x31\x3b\x04\x43\x6c\xe4\x9a\xbc\x4a\x96\xc2\x9e\xa1\x52\x57\x3a\x81\x91\x3d\xe4\x21\x0c\x28\xc8\x4a\xdc\x3c\x09\xc6\xd9\x9b\x00\x77\x40\x15\xf6\xa6\x25\x17\xd8\x7f\x23\x17\xe9\xe3\xc0\xe8\xfd\x07\x61\x28\x6b\x60\x5a\x55\x34\x6d\x5f\x53\xaa\xd9\xcb\xcf\x12\xc0\x62\xfb\x18\x1f\xfc\xf9\xb3\x40\x4c\xb1\x4c\xa4\x10\x83\xc6\x99\x66\x07\x54\x32\xeb\xe6\x9f\xb8\x4b\xc0\x48\x23\x1c\x29\xfc\x06\x45\x0d\x77\xd1\xf4\x1f\x7b\x7e\x20\x6c\x1d\x37\x9b\x73\xa4\x1f\xea\x77\xbf\x45\xc1\x04\x87\x29\xde\x74\x64\x4b\x6e\xe9\x54\xa4\xfb\xaf\x41\x8c\xcf\x52\x82\xc6\xc2\x1d\xa0\x2a\x83\x79\x58\x85\x70\x16\x31\x5a\x8b\xbc\x93\x93\x98\xe6\x52\x58\x6a\x79\xaf\xa0\x72\x07\xe1\x61\x90\x98\x8d\xa9\x25\x5c\x00\xba\x37\x4d\xd4\xf0\x0b\x80\xde\x5c\x91\x28\x89\xa1\x46\x7e\x9b\xe2\x20\x5c\xac\x2b\x93\xc6\x10\xff\xf2\xf7\x23\x1e\x57\xd2\xe4\xdd\x7c\x9f\x64\xeb\x35\x59\x13\x1a\xbc\x93\x9f\x21\xd6\x3d\x50\x14\x8d\x02\xfb\x38\x21\xba\x37\x12\x0d\x73\xf3\x58\xed\x10\xce\x36\xf9\x10\x6e\xe1\xc4\x92\xdb\xb0\x9b\x7f\x56\x72\x71\xde\x44\xb7\xef\x3a\xdd\x7d\xdb\x95\x4b\x48\x88\x0d\x2a\x6a\xab\x96\x22\x7a\xe2\x5e\x18\xa8\x63\x27\x3e\x84\xc7\xbb\x83\xaf\x83\x79\xe5\xe6\xfb\x60\x41\xd4\x5c\xdf\xe7\xbf\x1f\x7d\x30\x77\x59\x95\xff\x00\xa6\xa9\x88\xfd\x04\xed\x0a\xda\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xc8\x33\xe9\xa7\xe7\x06\x00\x00") + +func web_uiV1StaticTadaPngBytes() ([]byte, error) { + return bindataRead( + _web_uiV1StaticTadaPng, + "web_ui/v1/static/tada.png", + ) +} + +func web_uiV1StaticTadaPng() (*asset, error) { + bytes, err := web_uiV1StaticTadaPngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v1/static/tada.png", size: 1767, mode: os.FileMode(420), modTime: time.Unix(1526064532, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x9a\x55\x53\xdc\x0d\xb3\xc4\xff\xbb\xb8\xbb\x43\x70\x87\xa0\xc1\x65\x71\x0b\xee\xee\x12\x9c\xe0\xbe\x10\xdc\xdd\x9d\x20\xc1\x03\x09\x21\xb8\xbb\xbb\x6b\x70\x77\x87\x53\xcf\xf9\x00\x6f\x4d\xcd\x5c\xcc\x6d\x57\xf5\xaf\x2f\x3a\x52\x45\x49\x06\x0d\x99\x18\x19\x00\x00\x34\x39\x59\x49\x35\x00\x00\x3a\xff\x5b\x44\x78\x00\x00\xd4\x56\xed\x11\x00\x00\x80\xb5\x16\x53\x14\x03\x80\x9f\xf1\x28\x2f\xa6\x70\x00\x00\x50\x98\xcb\xaa\x29\x02\x80\x0f\x1d\x00\x40\x43\x00\xe0\x09\x00\x00\xe8\x01\x00\xb8\xb3\x03\xc0\x91\x09\x00\x08\x64\x00\x00\x81\x73\x4e\xb3\xaa\x10\x00\x00\xf0\x66\x0a\x32\x92\xc0\xfb\x7f\x53\xd0\x56\x96\x0c\x00\x00\x82\x9b\x9c\xa2\x14\xc2\x16\x0c\x39\xc0\x4c\x50\xf9\x9b\x9e\x1d\x00\xa4\x8e\xe5\x24\xc5\x34\xbc\x96\x4f\xdb\xbe\x24\xd0\xc8\x78\xd0\xdd\xad\x0a\xd7\xb4\x72\x1d\xb7\x37\x57\x3a\x71\x37\x83\x50\xa1\xfd\x1c\x36\x00\xcc\x28\x90\x01\xb2\x0e\xe3\x52\x40\x0f\xff\x17\xa1\x10\xfb\x85\xef\x68\x97\xf2\x0c\xdd\x93\x71\xca\x46\xcf\xa5\x24\x35\x8d\x53\x75\x1a\xc3\x56\xb1\x1e\x6f\xd4\x42\xef\x8b\x9c\x0b\xbf\xc1\x0e\xfa\x5e\x3b\xc6\xaa\x36\x0c\x1a\xf7\x93\x48\x65\xf3\x19\xf5\x79\x4c\xcc\x8c\xa1\x68\x3d\xd5\x0c\x35\x27\xd5\x79\x73\xf3\x35\x97\xeb\x48\x79\x55\x05\x9f\xd0\xba\x6b\xe0\xdb\x4b\xdb\x39\xe8\x66\x4a\x86\xdc\xff\x7f\x9c\x01\x07\xc4\x5f\x6b\xbc\xce\x2d\x5b\xb3\x3f\xd4\x85\x0f\x67\x08\x8c\xbc\x82\x1c\xee\x1b\x56\x91\x0e\x98\x21\x08\x36\xaa\x83\x2d\x87\x2b\x61\xdd\x1b\xda\x71\xeb\x85\xb5\x00\x2b\x05\x64\x53\x35\x5b\xd4\x37\x70\x41\x36\x42\xb7\x93\x03\xf6\xd5\xd8\x98\x51\x40\xc2\x18\xe4\xb7\x49\x7d\x31\xb8\xdf\x34\xa7\x7c\xee\x82\x99\xb1\x3f\xc3\x6f\xa5\x18\x70\xfe\x8a\x0e\x3c\x21\x4f\x31\x3d\x21\xd7\x81\xe2\x27\x7d\xe3\x13\xf7\x17\xcf\xad\x3b\xe0\x37\x6b\x31\x8d\x2e\x82\x4f\x84\xd1\x6d\x31\x2f\xb8\xde\x91\x00\x7f\x4b\x9b\x10\x41\x3d\x10\x38\x44\x44\xb6\xe9\xe7\x84\xcb\x64\xd9\xfd\xe2\xf9\x0b\x30\x16\x9a\xfb\x44\x3a\x03\x3d\xff\x86\x1b\xf2\x7e\xc2\xfc\x0d\xc1\x33\x07\xcc\x8d\xf9\x44\x11\x34\x20\x12\xeb\x15\x4f\x8b\x82\xf2\xa3\xbe\x80\x66\x44\x9c\x4f\x17\xdf\xac\x3e\xb4\xa7\x3e\x94\xba\x3e\xb4\x98\x4a\x0a\xeb\xb3\x98\x24\xb4\x37\x56\x79\x14\xb3\x81\x11\xda\x87\xc9\xc5\xda\xad\x81\xd3\x50\x2f\xa7\x23\x87\xf3\xe5\x07\xc3\x4a\x68\xab\x7d\xea\x55\x94\xa6\x52\x38\xeb\x58\xff\x68\x58\xd6\xa6\x3a\x70\xf1\x76\xe2\x60\xb4\x0b\x1c\x30\x7f\x63\x3b\x23\x84\xbb\xc0\x7a\xa1\x28\xdc\x87\xcb\xf6\x8a\x83\x1b\xea\xde\xd6\x11\x8b\x8a\xc3\xff\xde\x25\xa6\x49\x1a\xff\xc5\xc2\x69\xb0\xd7\x57\x92\x24\x1e\x09\x17\x0d\x07\x19\x26\xa3\x90\x0f\xac\x82\x09\x83\x05\x4a\x82\x82\x40\x40\x88\xed\x02\xb0\x88\xa9\x06\xdf\x09\x80\xe0\x80\x68\x50\x03\x21\x38\x97\x8a\x41\xb5\x17\x99\x27\x38\x46\xea\xa0\x5e\x6c\x51\x5c\xf7\xfb\xb5\x77\x5f\xf3\x6f\xe2\x4f\x04\xf8\x3b\x3e\x3e\xac\x66\x15\x3c\x56\xf8\x1a\x29\x5d\x2b\x2f\xb8\xdd\x95\xa8\xfe\x52\x50\x41\x08\x88\xaf\xeb\x3e\xee\x6e\x1d\x2b\xcf\x2b\x0b\x00\xc4\x07\x7b\xa7\x83\x6e\x27\x2f\x24\x95\xf2\x94\x7e\x74\x27\x46\x88\x9d\xa5\xb1\xfa\xa9\x14\xd8\xa0\x72\xa5\xf4\xa2\x8a\x93\x04\x76\xfc\x30\x49\x5d\x12\xff\xcd\xf1\x9d\x75\x14\xdf\x2d\xc8\x88\x71\xf8\x2e\xf4\xb6\xce\x7b\x57\x4b\xbe\xe5\x53\xf6\x2c\x57\x18\x04\x0d\x70\x4e\x09\xd6\x8e\x2b\x20\xea\xfe\xc4\xbc\x1a\x19\xe5\xac\xcf\x04\xe9\xb4\xc1\xd8\xc4\xf7\xb1\x76\x23\x80\xe2\x78\x01\x98\xf4\x5f\xbf\xbe\x4c\xea\xd9\x6c\xd8\x88\x35\xf3\x96\x26\x23\xe0\xe1\x90\xe3\x30\x10\x0f\xa0\x4a\x15\xf2\x04\x3b\x09\x12\x42\xa5\x38\x46\xf4\x33\xd6\xa6\x25\x7d\x44\xca\x74\xce\x59\xfb\x63\x31\xd8\x62\xcb\x1b\x0e\xeb\x74\xc1\x00\x0e\x53\xd4\x66\x2e\x23\xf1\x18\xaa\x67\x0a\xd5\xaa\x07\xf2\x26\xd1\xe5\xeb\x28\xc9\x02\x22\x06\x40\x05\x44\xa8\xeb\xf2\xbb\x58\x7c\xf2\xb3\x60\x61\x13\x26\x9e\x09\x8d\x97\xe7\x11\x10\x67\x90\xef\xc2\x8f\x39\x6b\x03\xc3\xd4\xd9\x8f\x6a\xb9\x05\xe5\x4d\x30\xdf\x65\xa3\x20\xbd\x9e\xba\x9a\x97\x54\xe6\x70\xf2\x21\x6f\x8d\x62\x06\x58\x4d\xf7\xff\x38\x43\x95\x6a\x72\xc0\x2d\x88\xdc\x7c\x46\xf6\x37\xc0\xe9\x1e\x48\xa7\x7a\x2e\x9b\x19\x4e\x46\x52\xf4\x92\xaf\x9f\x52\x15\x57\xbd\xe2\x39\x24\xb0\x35\x6f\x2c\x45\xba\xf9\x66\x3f\xf8\xd4\x77\xdb\x75\x45\x62\x4d\x2f\xcf\x05\x5f\x28\xd0\x94\xda\xa5\x1a\x21\xa8\x86\xe5\xf1\x1a\x7d\xf7\xf3\xb2\xcd\x2a\x8e\xfa\x61\x5b\x3a\xf9\xae\x24\xb5\xcb\x97\xa0\x38\x1e\x95\xa0\x6f\xbf\x1b\xde\x5b\xb2\xc0\x06\xd5\x23\xe1\xcb\x8c\x1d\x3b\x30\x42\x65\x5f\xc3\xb0\x54\xcb\xd2\x77\x4b\xde\x21\xaa\x2b\xd4\x80\xcb\xf5\x15\x30\x81\x76\x64\xf6\x32\xc3\x74\x3a\x54\x21\xb6\x68\x81\xc0\x27\x7e\xb5\x99\x3b\x88\x6d\xb2\x0c\x6a\x71\x6c\x52\xa5\x67\x7a\x48\xa2\x9f\x0a\xa2\xf2\xd3\x58\xfd\x30\xac\x30\xd7\xcf\xf6\x17\x6d\x55\x7a\xaf\x2c\x13\xdb\x5b\x88\x3f\x75\xf8\x7b\x14\x3d\x0c\xff\xee\xba\x62\x02\x1e\xc6\x90\x03\xa2\xf7\x56\x94\x90\x3c\x4a\xc0\x0f\x19\x82\xad\xcf\x49\xbc\xae\x34\xe2\x89\x5f\xcf\xcd\xdc\x9e\xce\x76\x2f\xca\xd4\x2d\xb7\xb8\x8a\x42\x31\x8a\x86\xcf\xcf\x6d\xd8\x61\x9b\x3f\x4e\x62\x2c\xf4\xec\xfd\x59\xcf\x67\x78\x3b\xb8\x8a\x68\x86\xc5\x93\xda\xb4\x86\x0b\x90\x76\xf6\x8e\x73\x24\x90\x5a\xd4\x44\xc6\x34\xd9\xf7\x85\x33\x5e\xb6\xb9\xf2\x47\x99\x6a\x1b\x48\xa7\xca\x97\xfb\xd1\xbd\x4f\x43\x42\x0e\x35\xfc\x55\xb0\xc6\xc4\x0e\xa8\x13\x1c\xfc\x9d\x2b\x7f\xbc\x3f\x57\xc6\x0f\xf0\x73\x2f\x6f\x45\xfd\x24\xb5\xb9\x56\xc1\xe3\xd5\x2a\xfd\xe7\x1b\xf6\x09\x31\x9c\x0d\xfb\x51\x8b\xb4\x1f\xa0\x72\x57\x92\xba\x15\x6e\xb5\x93\xff\xe1\x63\x64\xc7\x47\xfd\x07\xf6\x1b\xb8\x0e\x46\x42\xb0\x04\xce\x41\x66\x5f\xd3\x1b\xaf\x93\xd2\x7e\xe0\x4f\x52\x2e\xce\x4d\x51\xea\x55\x2d\xab\xa9\x1a\x15\x28\xda\xd6\xfd\xf5\xc9\x45\x30\x5b\x99\x06\xa5\xcb\x95\xd5\x76\xe4\x50\xce\x8b\x3e\x65\xb2\x50\x08\xa1\xec\x8a\xff\x79\x0b\x1a\xae\xd8\x0f\x9a\xa5\xda\x55\x42\x96\xf7\x8e\x5a\xd2\xc1\x76\x3b\xcc\x52\xf1\x3a\xaa\x13\x1f\xda\xc5\x29\xe4\xc9\xee\x72\x36\x10\x14\x15\x28\x0c\xb7\xde\x91\x89\x63\x93\x6a\x27\x5d\x18\xbc\xce\x28\x5c\xf4\xd8\x78\x76\x0c\x0f\x5d\x92\xa7\xb3\x7f\x7d\xcd\x1c\xea\x5e\x98\x88\x4d\xb5\x02\x41\x60\xfe\x50\xcd\x7a\x47\x7b\x14\x63\x9f\xe8\xcc\x74\x52\xbf\x04\x50\x07\x20\x02\xdd\xe6\xde\x5f\x1e\xd4\x09\x10\xda\x9d\x2d\x3e\xbd\xd0\x63\x7d\x13\x8a\x03\x86\x56\xfc\xcf\xff\xc0\xb0\x4b\x24\xd6\x89\x7d\xc8\x18\x1d\xc1\x88\xc3\xff\xde\xad\xb6\xaa\xc3\x03\x2b\x2d\x1c\xb8\x87\xfd\x30\x53\xa6\xec\x74\xef\xf0\x27\x96\xec\x07\x90\x73\x71\xed\xa8\xb8\x10\x81\x01\x24\xca\x58\x6f\xdf\x0b\x05\x70\x5d\x0e\xf4\xd0\x1e\x8a\xe2\x31\x10\x87\x91\x89\x14\x9f\xf2\x50\x00\x2c\x2a\xdc\x69\x2c\x28\xf1\xe7\x0a\xe1\x49\xb8\x0d\x4b\xa9\x19\xba\xdb\x6f\xbd\xbb\x44\x02\x2e\xdb\xbd\x35\xea\xc1\x64\x65\x40\x4e\xdb\xf9\x27\xcf\x7f\xb1\xf8\x4a\x36\xe2\x57\x8f\xd1\x30\x1d\x7e\x0b\xf2\x0f\xca\x3d\x74\xde\xdf\xcf\xe7\x57\x0d\x4c\x20\xf2\x8b\x34\xe4\x99\x83\x23\xf7\xe8\x69\xbd\x25\xd9\x30\xcb\x54\x12\x6f\x41\xee\xf4\x4a\x39\x90\x16\x39\x24\x8f\x98\x4d\xd8\xc5\xe7\x17\xab\x34\x30\x50\x28\x61\x57\x38\x34\xe0\x48\xd3\x9e\xc5\x84\xd2\x51\x8f\x95\xd3\xb8\xd3\x89\xa9\x42\xc2\x11\x4d\x65\xb5\x44\xc8\x42\xa2\x1d\xc7\x08\xce\xa6\x2c\x40\x25\xa4\x08\xc3\x84\xef\xcc\xa0\x12\x27\x8c\xc8\xa0\x0a\x62\xa7\x31\x41\x06\x5b\x45\x14\xe4\xf2\x66\x9b\xf6\xf5\x62\x90\xe9\xa2\xbd\xf7\x99\xc8\xbd\xf0\x8a\xf2\x65\xbd\x55\xde\x46\x1c\xc6\x72\xc3\xd9\x24\x4d\x76\xcc\xd4\x51\xe3\x76\x0e\xac\xef\x87\x1a\x07\x47\x5d\x84\x93\xb7\x64\x36\x9d\xe7\xf5\x0d\x8a\xa2\x93\xfc\xa3\x59\x06\x35\x10\x48\x40\x58\x47\x51\x0d\x0b\x4a\xea\x65\xaf\xa5\x96\x86\x71\x69\x05\xb5\x53\x4e\xfd\x54\x1b\x51\x2c\x13\xd3\xdc\x83\x8e\x9a\x21\xee\x28\x5c\xd1\x54\x26\xb8\x1c\xc3\x98\xec\xa3\x00\x65\x58\x1d\x04\x0b\xcb\x81\x46\x9e\x27\x4d\x9c\x4e\xab\x1b\x1e\x5d\x06\x0d\x3b\xde\x56\x9c\xca\x2c\x41\xb2\xb7\x73\x28\x41\xce\x2c\x29\xb6\x3b\x84\xca\xa5\x25\x3f\x53\x85\x1b\xff\xd3\xe0\x40\x11\xfc\x63\xbf\x4f\x2f\x8b\x98\xc3\x7e\x93\x6e\xd1\x7b\x5c\x6f\x23\x33\x04\x7a\x21\x18\x6d\x48\x04\xe0\x4e\x49\x4f\xed\x7f\x44\x13\xfa\xc3\x56\xfd\x52\x68\xb1\xf3\x6d\xc5\xbd\x16\x15\x9a\x09\x66\x25\xa0\xf5\x15\x26\xa9\xd7\x9a\xa7\xde\xdb\x96\x9f\x35\x18\x0f\x19\xb3\x57\x6d\x54\x10\x28\x24\x96\x08\x8a\x64\xac\xa1\xc1\x3d\xcb\x84\x49\x76\x41\x94\x12\x1f\xec\x2d\x6c\xa2\xeb\x45\xd0\x74\x31\x69\x62\x88\x43\x4b\xeb\xbd\x6c\xa2\x8b\x09\xf9\x4c\x4a\xc0\xb0\xfc\x95\xb7\x96\x72\x52\xdf\x7a\x40\xe1\xdd\x91\xae\x84\x48\x05\x85\x71\x5f\x62\xdc\x13\xaf\x51\x13\x04\x16\x12\x86\x6d\xea\x73\x34\xc0\x49\x9a\x30\x24\x7e\xd8\x96\x34\x7a\x92\x09\x29\xea\xaa\x6e\x97\x89\x82\xda\x16\xe5\x2a\x87\x57\x3d\xee\x36\x71\x08\xe6\x4f\x3a\x55\x4b\xc6\xce\x25\x59\x10\x10\x55\x3c\xf5\x65\xf7\xad\x3d\xd3\x16\x3e\x30\xb6\x2b\x80\xec\x47\x43\x8a\xec\x51\xa4\x96\xf0\xf1\xb1\x9b\x01\xa0\x08\x92\x98\xc3\x82\x12\x79\xd9\x2a\xc4\x93\x98\x5c\x2a\x13\x35\xed\xf6\x19\x27\x8c\x96\x24\x94\xa7\x85\xcd\x7e\x34\x2a\x3d\x7c\x24\xf0\xfa\xa9\x7d\xf5\xd3\x99\x91\x67\xf5\x05\x8c\x7d\x31\x98\xdb\xd9\x55\xa0\x9b\xfc\xc3\x88\x42\x4f\x7e\x53\xd2\xd3\xb0\x8a\xdc\x0b\xeb\xa8\x8a\x45\xe5\x59\x2c\x88\xdd\xb0\xa0\xef\x36\xc2\xdb\xee\xe3\x0f\xe3\x4c\xb9\x2f\x5c\x95\xaa\xe6\x73\x34\x55\xa8\x9f\x44\x9b\xae\x0f\x09\xf4\x56\x59\x2e\x7b\xc5\x1a\xdc\x3e\x83\x84\x28\x57\xf1\xad\xb6\xf5\x7a\x3f\xd7\x4a\x8d\x3e\x36\xec\x38\xf3\x98\x25\x2c\x4a\x2a\x7d\x58\xc9\xd7\x42\x8f\xdd\xdf\x95\xe0\x88\x8d\xb1\xef\x1f\xed\xc4\x5c\x6c\x90\x7b\xa5\xef\xe0\xcb\xf0\x1e\x59\xd3\x6c\x99\x38\xd9\xfa\xc9\x8a\x3c\x29\xf9\x80\x07\x20\x2a\x97\xa5\x46\x96\xd5\x96\xbc\xb1\xeb\xe2\x8b\x74\x68\x0a\x36\xe3\x72\x30\xd7\x2e\x8e\xb8\xca\xbd\x4e\xcf\x51\xde\x4e\xfb\x89\x1b\xb3\xdb\x09\x16\x2a\x71\x35\xcd\x47\x5d\x3c\xc7\xbe\x09\xb5\x32\x66\xb9\x7b\x0f\x6e\xaa\x82\x37\xb7\x73\xe5\x93\x72\x5b\x38\xab\x6a\x8c\x88\xb4\xd8\x06\x3e\x51\xfe\x14\xad\x3e\x11\x6d\xc2\x17\xe0\x31\x48\x41\x67\xa0\x8b\xbb\xb5\xe5\x68\x23\xe6\x10\xf1\x3a\x34\xd9\x0b\xa7\x33\x15\x68\xa2\x96\x26\x11\x5e\x89\x1b\x48\x63\x86\xe0\x6c\x61\x80\x20\x0f\x9b\x7a\x36\x47\x43\xc7\x43\x81\x59\x0c\x28\xf9\xeb\x51\x7d\x35\xa1\x99\x89\xe8\xd9\x0d\x0b\xe1\xc3\xe4\x06\xc4\xaa\x6c\x96\xe2\x5a\xc4\x4c\x82\xf9\x4a\xd7\xea\x50\x8a\x2d\xa7\xb4\x98\x33\xa9\xe2\x5e\xbf\xf6\xc0\x97\x14\xc8\x5e\x56\x92\x76\xd5\xcb\x33\x4e\xdf\x9c\xab\x79\x89\x6b\x32\xbf\xf7\xf6\xc1\xd7\x87\x75\x61\xdd\x5d\x9d\x5e\x0a\x98\x08\xf7\xbc\x73\x95\x84\xd3\xc7\x85\xfb\xdd\x8e\x54\x24\xed\xe7\x3e\xa4\xfc\xbd\x1e\x2a\x0f\xda\x46\x0d\x90\x1e\xd6\x5b\x8b\x56\xf7\xf3\x87\x8e\xc4\x87\x9d\x26\x3a\x21\x84\xec\x9c\xef\x66\xa6\x56\x55\x52\xa3\xd9\xe9\xd2\x73\x9e\x1f\x63\xcb\xd3\x35\xa7\xc6\x61\x20\xde\xc5\x5f\x56\xcb\x36\x06\x37\x64\x2f\x5e\x9b\x7c\x80\x17\x45\x8a\x73\xeb\xe2\x10\xff\x5a\x2a\x0d\x6b\x70\xf9\x68\x0e\x32\xc0\x80\x6f\xd5\x97\x99\x92\x96\xaf\x68\xcb\x45\x2d\x75\x78\xea\x8b\x4f\x4d\xbe\x94\x8e\xee\x4f\x53\x91\x5c\xe8\x61\x0d\xfb\x6d\xb2\x3b\x73\xa8\xdb\xd3\x11\x35\xcd\x09\x80\x20\x01\xb3\xb1\x22\x5b\xd4\x52\x9e\xa7\x2c\x75\x64\x74\x2a\x05\x17\xe4\x7a\x28\xa7\xfe\x2f\xd2\xdb\x1d\x51\x76\xdd\x0d\x75\x91\x28\xcc\x51\x19\xbf\x3f\xfc\xb4\x62\x8b\x49\x5b\x6f\xe5\xab\x30\x52\x93\x12\x44\x49\x25\xd0\x0f\x5b\x46\xb9\xc3\x79\xd3\x92\x7e\xd1\x82\xdd\xa8\x55\x6e\xcd\x3f\x1d\x45\x7c\xb1\x2f\xb0\xbf\xb1\x8e\xa0\x44\x64\x1b\x88\x99\x96\x9f\xd5\x21\x66\x4d\x59\xef\x70\xe2\x78\xda\x6c\xff\xf5\x35\x70\x91\xe2\x87\xd6\xf3\xe1\xb0\xf3\xa3\xf5\xb9\x22\xde\x06\x1c\x14\x0c\xe0\xfe\x0d\xf8\xfa\x64\xae\x3d\x00\xe3\x90\x09\x86\x3d\xb9\xd0\x72\x78\x6b\x23\xb2\xbc\x8a\x3c\x1e\x12\x8d\xb2\xeb\xe6\xaa\x93\xeb\x9e\x00\x74\xc4\x7e\x6a\x7d\xc4\x48\xdf\x78\x32\x29\xf2\xa2\xab\xd5\x39\x56\xf1\x2e\x1c\x1f\xd4\xda\x23\x76\xba\x7a\xd8\x9d\xf0\xd9\xd9\xc9\x46\xf2\xa7\xee\xb2\x09\x2d\xfc\x18\x31\x55\xf4\x11\x03\x6c\xdb\x20\x46\xc8\x14\x85\xa9\x1b\x45\x52\xb2\xab\xe3\xf3\xc5\x49\xfa\xf1\x22\xe8\x71\xd1\x3c\x99\xff\xb1\x69\xb1\xd7\xf5\x57\x02\xfb\xba\xbf\x43\xe0\xd9\x3e\xee\x4f\x52\x0d\xdc\x82\xba\x29\x6d\x31\xae\xce\x9a\x9e\x34\x06\x28\x7d\xce\xd2\xf1\x3e\x46\xfc\x7e\xc9\x54\x59\x2d\xdd\x7b\xb4\xa4\xee\x03\xed\x22\x4d\xc3\x00\xc5\xe7\xb6\xd4\xe9\xf5\x40\x5f\xe5\xb7\xb9\x92\xa6\x9f\x40\x2a\xc1\x21\x37\x9e\x2d\xf2\x66\xac\xcf\x0d\xc9\x25\x09\x96\x22\x1c\x92\x78\x25\xf2\xe6\xbd\x21\x35\x36\x9b\xd3\x3a\x57\x2d\x22\x93\x86\x15\x0c\x1e\xd0\x8d\x1a\x24\xc0\x55\x90\x4a\x80\xfd\xd4\xfd\xb3\x64\x30\xf4\x19\xbf\x58\x19\xb5\x7c\xfb\xd7\xc6\x13\x05\x49\xbd\x63\x6b\xa3\xe8\x7d\x6e\x92\x45\x2d\x18\x12\x50\x9c\x5a\xc0\xc3\x77\x81\x55\xd8\xf2\xf5\x06\x61\x31\x18\xce\x0a\x7a\x21\x48\x1d\x48\x53\x9a\x1c\xa4\x6c\x48\xfc\x22\xf3\xad\xe2\xe6\x38\x1b\x6b\xa6\x07\xd0\xa1\xb3\x5f\xf7\xf1\x75\x7a\x6b\xa9\x3d\x9d\x68\x4b\xd2\x3e\xa1\x05\x06\xbf\xb2\xfe\x99\xca\x99\x1a\xf3\x1e\x1a\x67\x20\x48\xc1\x9c\x1e\x9c\x3f\x9f\xaa\x7e\xfe\x1a\xee\x83\x97\x70\x2f\xa4\x9b\xb7\xe7\xbe\xa0\x07\x98\xa8\xa1\xee\x7d\x5d\xd5\x69\x4b\x9d\xad\x19\xc2\x6f\xdc\x69\x66\x67\x99\xd4\xc3\xad\xa6\x9b\xbe\xc9\x9e\x79\xac\x35\x26\x61\x32\xde\x7e\x8a\xd0\x06\xd6\x5f\x4c\x81\x4e\x8f\xe2\x0b\x18\xfb\x2b\x54\xcc\xba\x03\x77\xe9\x37\x4c\x2b\x86\xa7\xd5\x92\x20\x36\x74\xbc\xbe\x0d\x08\xaa\x4f\xfb\x98\x13\x76\xe9\x58\xe9\x2f\xcf\x8d\x8c\xf1\x57\xb3\x4f\xb6\x1f\xc5\xfb\xc2\xdc\xf5\x04\xbb\xd7\x93\x0c\x3b\x88\xc4\x9d\x8f\x66\x19\xdf\x64\xce\xe9\x88\x43\x97\x37\xcd\x9c\x6e\x38\xd8\x1e\x04\x34\xe0\x49\xc8\x6c\x3f\x54\x57\x64\xa6\x23\xe9\xef\x92\x93\x0f\x7d\x8f\x67\x25\x4a\x27\xcf\x89\x16\x4e\x67\x42\x41\x70\x18\xbd\x51\xe8\x39\xf2\x1c\x8f\x23\xd8\xf8\x96\xb5\x49\x50\x10\x70\x49\xf2\xab\xa5\xad\xb2\xee\x0b\x8a\x22\xf9\xd6\xfe\x58\x1e\x22\x20\x99\xdf\xc1\xfe\xa0\x10\x3e\x2f\x1e\xc8\xa4\xc2\x3d\x79\x7c\x9c\x4e\xe3\x7b\xfa\x1a\xb9\xad\x3c\xf1\x19\x6f\xfd\x13\xe2\x88\xf8\x58\x98\x7b\xc8\x06\x87\xb7\x9e\x12\x2c\xc2\xc4\xc8\x7a\x9c\x2a\x5b\x81\x87\x18\xb5\x3c\xe1\x80\xc3\x30\x5b\x42\x0f\xc9\x39\x45\xbd\x4b\x55\x0c\xde\xf7\x2e\xfa\x1a\xfa\xfc\xdf\x1c\xcc\x81\xe7\x07\x4f\x1b\x76\x54\x63\x90\xb1\x1b\x17\x2b\x19\xeb\x1b\xcf\xa5\xb7\xea\x3b\x89\xca\xdd\xe2\xc6\x7a\x63\x5e\x7d\x90\x9f\x4c\x00\x10\x21\xec\xc1\x75\x39\x09\x73\x3d\xf5\x6e\x54\x7f\xe1\xc6\x56\x3b\x02\x2c\xea\xcd\xb6\xde\xf5\xbb\x9d\x3d\x2f\x84\x0d\x6b\x17\xd0\x3d\x28\xb9\x9e\xf8\xaf\xcf\x3b\xd1\x3c\x08\xa6\x49\x36\x22\xcd\xfc\x5e\xb0\xeb\xf5\x8d\xae\x40\xf9\x17\x5b\x0a\x40\x0b\x74\x74\x68\x70\xa7\x92\x2c\x04\x5f\x7b\x27\xd2\x5a\x0f\x67\xea\x2f\xfe\xa8\xd8\xd3\x4c\xea\xd6\xe1\xbd\xb6\x31\x22\x6f\xfe\x7c\xce\x25\xd8\x44\x0c\xbc\xd9\xd4\xb3\xd9\x18\xa8\x2d\x7d\xb3\xd4\xa0\x8f\xbf\xbb\x6a\xc6\xe5\xb0\xe3\x29\xe9\xb8\x1f\x0e\x3a\xc1\x98\xa7\xda\xa3\x6a\x92\x61\x7f\x93\x12\x50\xf7\x56\x89\x3b\x8e\xc3\xf7\x13\xe5\x36\xe9\x40\xa7\xc1\x58\xb4\x89\x7b\xd6\x80\x66\x31\x5a\xda\xdf\x60\x9d\x13\x5e\x94\x8a\x37\x52\xbf\x88\xc1\x49\x7b\xc1\xe2\xbd\x2e\xce\xbe\x9d\xff\x05\x3f\x58\xb8\x5e\xb6\xbf\xc9\x1a\xe0\x84\x89\xdc\x6f\x4d\x8a\x92\x31\x45\x76\xc0\x0b\xdf\x3c\xe8\x64\x7c\xd1\x0e\x9b\xd3\x36\x16\x49\x78\xfe\xc1\xb4\x64\xb7\xd9\x68\xec\xbd\xb5\x2f\x57\xe0\xd5\x1c\xbf\x12\x7c\x5f\x1a\x49\x75\xe1\x8b\x88\xdd\xd4\x26\x6d\xb1\x73\xce\xa0\x01\x0f\x17\x70\x9f\x7d\x5e\x5b\x6a\x94\x4f\xc7\x9d\x1a\xa0\xe9\xd6\x1a\xfd\xc2\xba\x43\xb9\xcc\x02\x77\xb1\xfc\x8a\xac\x71\x32\xf6\xb0\x2f\x4a\xfa\x14\x7b\xe8\x76\x10\xcf\x63\xd3\xe7\x0b\xfe\x36\x39\x1d\xbe\x53\x42\xde\xd6\xce\x76\x5f\x21\xa7\x43\xfc\x12\x2a\x6a\x83\xf2\xde\x88\xe9\xc7\xa6\x67\x32\x8e\x23\x34\x86\xa5\x34\xd0\xf0\x2f\xd6\xed\x54\xe3\xa1\x4d\x4a\xea\x61\x9b\x6a\xfc\xd6\xab\xeb\x8f\x70\xfe\xdc\x7d\x03\xd1\x79\x69\x19\xf2\xa6\xf9\x13\x5f\x37\x39\x3c\x74\xb1\x98\xeb\x12\x87\xde\xb1\xef\x2d\xd5\x62\x47\xb8\xad\xb9\xf4\xe3\x7f\x4e\xb4\x7d\xbf\x9e\x33\xde\xa1\x84\x35\x02\x5d\xa9\x3e\x3c\x31\xf0\x29\xbb\x58\x09\x9b\x2f\x26\x22\x76\x2e\xe3\xc1\x96\x95\x01\x5e\x79\x5e\xf5\xf0\xde\x3a\x73\x8f\x13\x83\x71\x97\xd3\x55\xe1\x7b\xe0\x23\x17\x23\x96\x2a\x55\xa9\x5d\x5d\x55\x46\x6c\xc1\xb7\xfd\xda\x97\xb8\xb1\xd9\x45\xb0\xc2\xea\x50\x60\xa6\xac\xf9\x20\x77\x70\x28\x79\xc2\x98\xf4\x81\xc0\x45\xd1\xab\x42\x7b\x61\x16\x36\x2b\xd0\xb3\xe2\xe2\xf4\xcf\xfd\xde\x86\xc9\xe0\xee\x8c\xa7\xdf\x7c\x40\x77\xe0\x4a\xdc\x53\xec\x64\xb0\x6e\x77\x76\xf1\x7a\x5b\x58\x1a\x4f\x0b\xd8\xe3\xb9\xd2\x6a\x7e\x6d\x24\x31\xf1\x19\xbf\x68\x82\x66\xa4\xbb\xa1\x28\x16\xbd\x30\x4a\xd3\x64\x25\xa2\xda\x96\x4a\x58\x38\x7f\xb2\xe3\xf9\x2a\x68\xd5\xb7\xc2\x42\x10\xc5\x71\x5d\x4c\x55\xb1\xe5\x64\xf7\xf9\xe8\x37\xd8\x4b\x31\x1f\x53\xe3\x03\xe7\x65\xe8\xbd\x4c\x3b\x67\x6a\x72\xe0\x1f\xed\xb7\x00\xc3\x82\x50\xcf\x32\xe4\x8d\x00\x3b\xa7\xb7\xdf\x68\x5b\x13\xe2\x75\x17\x1b\x5a\x16\x4a\x6b\x14\x10\x2c\x60\xb5\x7e\xb3\x85\xc2\x41\xf5\xc1\x7b\x40\x66\xee\xf8\x26\x92\xf9\x07\x02\x7a\x6d\xd8\x7b\xa4\xd9\x76\x32\xe2\x4b\xcf\x8a\xc3\xa8\x56\x3d\xe5\xf1\xbb\xef\xa1\xc9\xdd\xc6\xf8\xf7\x5f\x9f\x2e\xf2\xff\xfa\x3e\x9d\xf9\xd4\xe3\xac\x8e\x1e\x5f\x1f\x7c\x7e\xe9\x4d\x9c\xbb\x20\xc7\x8e\xc2\x6e\x6b\xca\x93\xcb\x78\x7a\xb3\xb8\xf4\x75\x52\x22\x30\xb2\x44\xe4\xdc\xc4\x0f\x58\xdf\xdb\xe7\x75\x38\xf3\xda\x42\x28\x77\xbe\xcf\xe1\x73\x09\x36\xf6\x13\xc8\x17\x43\x03\xf4\xb0\x03\xa0\x50\xbe\xda\xb2\xda\xd2\x0f\xcd\xbe\xfc\x2f\xa2\x0c\xf8\x01\x4d\xaa\x5e\x82\x56\x0c\xd8\x9c\x43\x91\x97\xad\xa4\xfa\x51\x24\xe7\x04\x96\x2b\x37\x2d\x04\xfb\xfc\x3e\x41\x46\xe7\xb0\x0b\x52\xde\xe8\xe5\xdb\x9d\x6b\x23\x89\x1b\xd8\x0e\xdc\xeb\xd1\x28\x8b\x19\x44\x04\xd2\x0a\xa2\x01\xfe\xc6\x6f\x96\x51\x3a\xc4\xb6\x94\x68\x71\x17\x82\x48\x2c\x0e\xac\xeb\x67\x34\x7c\xfe\x75\x94\x4d\x55\xa9\x1d\x0e\xa0\xf6\xad\x8f\x08\xf3\x12\x38\x32\x5a\x12\xc6\xc9\xf6\x7e\x9e\xd1\xf4\x58\x38\x59\x17\x24\xca\x06\x0a\xe3\x2f\xe1\xcf\xda\x6f\xc8\xe0\x6e\x25\xa5\x5c\x81\x50\x9f\xcb\x8f\x2d\x5a\x50\x78\xd5\x3c\x4e\x20\x44\x69\x5d\xd6\x8f\xb3\x06\x49\xd9\xcd\x97\x0c\x00\xa2\x3a\xdb\x45\x74\x02\x6e\xe7\xe4\x43\x8a\xb8\xae\xac\xbb\x58\x5f\x88\x67\x43\x02\xb5\xc3\x8f\x1c\x79\x7c\x56\xc9\x03\xf6\x94\x0f\xde\x1e\x0f\xca\xc4\xe9\xbc\xbf\x57\xe3\x70\x24\x84\x2b\x6c\xd7\x92\xeb\xc7\xb5\x7e\x0d\xf8\xe5\x86\x76\x24\x31\xe1\xdb\x0f\x99\x4a\x25\x5f\x1f\xc8\x73\x13\x7e\x49\x4c\xbd\x68\x1f\xca\x79\x91\x1a\x85\x1c\xf6\x8d\x7d\xa4\xb9\xe1\x62\x23\x1b\x7d\x83\x10\x1c\x08\xcc\x66\x0b\xfb\x6f\x6d\xc0\x3b\xc3\x50\x40\xad\x17\x02\x21\x78\xea\x30\x15\x0f\x97\x4a\xf3\xfe\x49\xb1\xf7\xe7\xc6\x18\xc2\xa8\x78\x5c\xf2\xb0\xbc\x30\x52\x13\x93\xd1\xb1\x0c\xa2\x5b\xda\x00\xc5\x4b\x62\xe8\x81\xb5\x04\x9d\xc8\x6a\x34\xc9\x58\x48\x55\x76\xed\xd9\x44\xc0\x1f\x8a\x95\x91\x49\x83\x87\x67\xab\x89\xf9\xe2\x71\x58\x62\x56\x59\xf3\xa4\xd0\x3b\x4f\x37\x4e\x78\xb5\xa2\xcf\x67\xa1\x51\xb4\x94\x41\xbe\xb5\x60\xd0\xaf\x0f\xfa\xb3\x88\x64\xcc\x90\x86\x9b\x7e\x84\x7d\xb3\x81\xb0\xe8\xed\xb2\x96\xbf\x61\xdf\xea\x65\xb9\xce\x4f\xc6\x02\xad\x39\x1c\x47\x21\xaf\x74\x04\x1d\x2d\xfa\xe9\x05\x53\x04\x6f\xac\x12\xb9\xa4\x92\xa8\x42\x93\x68\xbe\xf9\x16\x3b\x2e\x7d\xdd\xa6\xe5\xa9\xf5\xb7\x67\x34\x9e\xb1\x8e\x0b\xc0\xba\x83\x07\x12\x80\x3b\xd4\x3f\xd5\x92\xde\x93\x9f\x6e\x2f\x34\x75\x8a\xb6\x1c\x91\x99\x2e\x3d\x9b\x9f\x4b\xc2\x9c\x1b\x9a\x75\x21\x48\x2d\x4a\x5e\x36\xad\x1a\x62\x46\x2e\x1c\xaa\xf0\x81\x65\x94\xdd\xcd\xba\x12\xa5\xa9\x3b\x4c\x9b\xf7\xe9\x1e\x99\x2c\x76\x1c\x6d\xfb\x85\x16\x50\x11\xe1\x24\x17\xce\x63\x89\x26\x3f\xee\x43\xfb\xd8\x17\x7b\xbf\xb1\x9c\x1d\x08\x67\x1b\xbc\x31\xb8\x77\x8e\xf2\x7e\xd7\xd9\x92\x0f\x05\x80\xb2\x1e\xad\x29\x1a\x96\x8d\x43\xb9\x11\x2a\x43\x75\xda\x15\xdd\x9b\x33\x52\xb8\x0b\x11\x06\x67\x14\xf2\xa1\xfe\x29\xea\xca\xad\x89\x08\x1e\xe2\xb3\xbb\xbd\xa8\xfa\xb6\x9b\xf9\xf5\x17\x0c\xde\xe0\x15\xe2\x4c\xe1\xf5\xfa\x3c\xff\x13\x80\xa5\x2f\xd6\x40\xb5\xd1\xd1\xed\xaa\x03\x97\xc3\x9c\xb1\xc6\x78\xf1\xc4\xd7\x5e\x1f\xa4\x47\xf8\x1a\x4f\x3b\xb2\xd6\x22\xcc\xfb\x39\x3f\x7f\x02\xd5\x66\xa1\x90\xea\x61\x3d\x71\xc3\x29\xfc\x8f\xd3\xb5\x13\xc6\x0b\xcf\xa4\xfd\x37\x95\x9d\xa7\x82\xbb\xac\xd0\xcc\xe5\x33\x24\x94\x7a\xff\xdb\x55\x9b\x43\x52\xd8\x59\xda\x63\x3c\x81\x5c\x10\x38\xd9\x10\xbd\x26\x34\xef\xb8\xef\xa0\x83\x98\x6b\xa2\x4d\x50\xd3\x0b\x67\x35\xd3\x20\x96\xef\xcb\x53\x77\xc7\xeb\x26\xcc\x21\x0b\xc0\xbe\x91\xcd\xe4\x57\x47\xc8\x6b\x64\xe9\x90\x60\x4d\x14\xb2\x3b\x11\x9f\xda\xde\x82\xff\x89\x6b\x92\x22\xac\x92\xe0\x20\x14\xac\x21\x91\x17\xcf\x2a\x85\xfe\x7d\xb8\x7b\xc8\xd1\x49\x9e\xc0\xe6\xec\x3f\x90\x28\x24\xb5\xa1\x77\xf9\x71\xbf\x26\x06\x5a\x07\x61\xd8\x35\x9a\x50\xd3\xeb\xe2\xd8\x6c\x95\x7c\xcb\x24\x48\xdf\xee\x5f\x21\x91\xfa\x44\xdc\x4d\x51\xe5\xec\xf2\xeb\x66\x5b\xd0\x17\xa5\xac\xeb\xb5\xfd\xd1\xfd\x03\x24\x3e\xa5\x80\x95\x2d\x01\xa3\x07\x46\xf4\x89\xd9\xb3\x3a\x24\x3f\x89\x55\x68\xe9\x54\x71\x8c\xf6\xf6\xbf\x38\x46\x40\xc9\x97\xd9\xf7\x89\xea\x26\x34\x70\xa5\x0b\xa5\x23\x59\xc1\x04\xb2\x9b\x9b\xaa\x55\xbc\xb7\x8d\x11\x57\xf3\x7e\x2b\xe3\x44\xa7\x55\xca\x35\x6c\x1e\x15\x7a\x5c\x4e\xec\x30\x1a\x93\x63\x36\x96\x43\xc2\xfc\x7a\xd1\xf6\x63\x5b\x1f\x97\xc3\x89\xaa\x9d\xd7\xfb\x07\xfd\x37\xa3\x32\xc7\xc9\x66\xc9\xfb\xa1\x1c\x21\x4e\x03\x6c\x51\x78\xc3\xa7\x57\x85\xa4\x36\x37\xab\xfa\x87\x2b\x69\x84\x07\xa4\x8e\x91\xb3\xff\x64\xda\x0e\x25\x30\x32\x31\xf8\x9c\x98\xfc\x79\xc7\x22\x25\xb5\x90\x8a\x5c\x9c\xc7\x62\x8b\xfc\x83\x62\xa0\xab\xb2\x56\xc0\x7b\xa7\xcf\xc1\x22\x44\x2e\x23\x89\x95\xb4\x18\xd1\x5e\xb3\x7e\x81\x60\xa7\xff\x37\x73\xcf\xd1\xa3\xfd\xa0\x1e\x88\x57\x11\x2d\x3f\x62\xc3\x55\x46\x66\x04\x79\x92\xe6\x44\x4c\xa4\x1e\xbb\x5d\x99\xe3\x32\xc8\xd1\x31\x0c\x54\xb7\x94\x72\x77\x57\xfd\x9d\x07\xc6\xf1\x2e\x6c\x25\x2c\xf2\x84\x27\xbc\x41\xc7\xfd\x33\x05\x9e\x2d\x87\x59\x0c\x95\xd5\xd8\xf7\x5f\x57\x9f\xe5\xb3\xc5\x50\x69\x12\xcd\x12\xa9\xfa\x59\x46\x49\x91\x09\xe8\xb1\x36\x5c\x7c\x60\x9b\x9b\x7d\xdd\x7b\x4e\xc7\x81\x80\xc7\x92\x24\x8b\xe2\x0b\x0b\xa5\x00\x6c\xae\x59\xcd\x51\x65\xb9\xc6\xf4\xf1\xb8\xf4\x75\x58\x5e\x73\x92\xfc\xe1\x45\xe3\x9b\x33\x03\xbe\xf3\x6e\xf8\xf7\x56\x63\xfa\xa5\x76\x54\x80\x53\x82\x82\x38\x04\xbb\x7c\x8c\x78\xfc\xdc\xab\x42\x5e\xa4\xde\x53\xbd\x7b\x69\xe5\x93\xf6\x8b\xb8\xd1\x6e\x4f\xe5\x96\xbf\x4b\xee\xea\x86\x03\xc2\x38\xed\xad\x27\x3e\xf6\x13\xe9\xec\xf5\xdd\x2c\x9e\xd5\x19\xca\x7b\x1c\x9c\x13\x3c\xbf\xb8\x61\x48\x94\x6e\x32\x08\xea\x0e\xe8\xc0\x40\x35\x01\x9d\xad\x65\x26\x80\x6f\xeb\x54\x08\xe1\x4b\x6e\x0f\x4c\x01\xaf\x0b\x04\x60\x1d\x07\x40\x58\x81\x9a\xcf\x81\xc6\x7a\xde\x90\x5f\x17\xb2\xbc\xbc\x6a\xf8\x87\x4f\xa1\x89\xd3\x82\x9b\xf8\x6f\x90\xc0\x40\xf2\x95\x78\x78\xf1\x03\x86\x20\xd7\xd1\x6c\x29\xcb\xf2\x5d\x84\x6b\x54\x4f\x23\x26\x99\xfd\x36\x84\xe5\xb7\xf1\xdb\x16\x22\x54\x41\x8e\x20\x83\x3d\xe5\xc1\xde\xc4\xc2\xa4\x1b\x95\x3f\xa1\x2c\x5a\x66\xfd\xe1\x0d\x8c\x0e\xf8\xab\x92\xbf\x5f\xc7\x6a\xc8\x22\x00\xf1\x8f\xe7\x1c\x6c\x0f\x42\x33\x21\x3d\x3a\x03\xe1\x3c\xd7\x31\x98\xe3\x27\x5b\x64\x17\x0f\x9f\xca\xa3\xab\x6b\x49\xa4\x6c\x64\x40\xad\x99\x6f\x54\x80\x2c\xc2\xbc\x84\x2f\x95\x40\x7b\x65\x36\xfa\x27\x24\x66\x23\x22\xb5\x0d\xab\xc1\x85\xb3\x0e\x07\x2f\x06\x4f\x41\x70\xb9\xd6\x4b\x9c\xf7\x45\xe4\x2d\xfe\x03\xc1\x02\x0a\xd5\xdb\x6d\x5e\xf6\xfb\x4a\xf3\x7c\x24\x15\xb7\x26\x90\x1f\xee\x61\xf9\x7c\x3e\xc6\x70\x1f\xc5\xf3\xe1\xa8\xd4\xdc\x35\xea\x93\xab\xbf\x4a\x0b\xfc\xa7\x86\xfd\x46\x24\xf7\xc5\x48\xbf\x0c\x43\x11\x19\xcc\x29\xbc\xbd\x80\xf3\xb5\xaa\x0a\xb5\x0a\x88\x43\xe2\x2a\x62\x00\x8d\x5e\x67\x6e\xf4\x3e\xd6\x11\x93\x61\xfd\x1c\x51\x27\xdb\xa1\x21\x2e\x83\x1a\xbc\xc2\xb6\xff\x5a\x86\x28\x2a\x28\x57\xf9\xc0\x5a\x63\x68\x5c\xac\x6d\xad\xe3\x58\xfa\x1d\x08\x72\xba\xeb\xce\xbc\x7f\xf7\x48\x12\x87\xbd\x78\x7d\x48\x34\xbc\x9c\x80\x74\x19\xcb\x3e\xae\x99\xc0\x9f\x65\xf6\xd4\xaa\xd1\xdd\xe5\xac\x8c\xe8\xff\x93\xd1\xdf\xa8\xc7\x76\xb3\x05\x23\x01\x14\x4a\xff\xfe\x6d\x45\x88\x35\x0f\x3f\x4c\xc3\x66\xb5\x8b\x68\x88\x20\xbc\x15\xbf\xd7\xc8\xd9\xd9\x43\x34\x46\x02\xe1\x0b\x1d\x7b\x4f\xfa\xc0\xb5\x03\x13\x7d\x38\xb6\x97\x16\xda\x54\x40\x82\xb0\x2e\xad\x40\x62\xb2\x5a\x08\x95\x5a\x8a\xc3\xad\x96\xda\x88\x65\x77\x1a\xfc\xad\x3b\xca\x8b\x0e\xfd\x8b\xb8\x5d\x6f\x86\x74\x8a\x2f\x41\xb1\x2f\xdd\xd5\xd5\x1a\x25\x8e\x32\x3b\x50\x8a\xe2\xe6\xcd\xe8\x68\xe0\x15\x58\xc4\x97\xac\x5d\xc5\x39\x4b\xc0\x0c\x6b\x23\x81\x44\xcc\x04\x01\xc6\x0c\xdd\x41\x42\xa9\xa9\x18\xb2\x3c\xc4\xa7\xa5\xdf\x5c\xa3\xdc\xcd\x29\x6b\xd8\x82\xf5\x1f\x3c\x63\x4f\x37\xa0\xd1\x33\x13\x04\x67\x9a\x21\xa5\xbf\x68\x56\x7e\x20\x8a\xb8\xd1\x7f\x2c\xfd\x12\x44\xf5\x58\xcc\x8b\x13\x7e\x5f\x96\xba\x4f\x25\xc0\xcf\xa8\xc2\x8d\x04\x84\x50\x32\x64\x86\x18\x4d\x30\xce\x4f\x88\x64\x30\xbc\x9e\x74\xdb\x7c\x81\x63\x3a\xc7\xfb\xb6\x52\x7d\x78\x13\x99\x2e\xa9\xf0\xb6\xf8\xfb\xdf\x4f\x09\xbb\xc2\x0d\x54\x92\x7f\x5f\xc4\xa7\x08\x2b\x42\x56\xd8\xe1\x4d\x62\xf1\xbf\x97\xf4\x54\x16\xe6\x1b\x93\x31\xbd\xdf\x2a\x20\x34\x10\x14\xd0\xf1\x22\x0a\xc9\x4f\x9e\x10\xe9\x67\x82\xc0\xba\x61\x32\x51\xd3\xaa\xe2\xaa\x4d\x33\xe8\x56\x88\x27\x25\x4d\x2e\xeb\x34\x55\xb0\x8e\x54\xf3\x64\xa2\x4f\x7f\x3a\xfb\x4f\x3c\x4f\xca\x80\xd6\x2f\x9b\x9e\xad\x6b\x51\x9b\x03\xf7\x34\x18\x69\xbd\xbd\x0d\xe9\x08\x01\xee\x4d\x34\x01\x52\x75\x53\x22\x17\x27\x8c\x91\x3c\xfc\xf8\x9c\x83\xf4\xea\x96\x97\xd5\xc2\xba\x8f\x81\xcf\x5b\x86\x87\x7f\x0a\xa9\xca\x11\x99\xba\x8f\x84\x44\xc1\x1f\x0b\x92\x54\x70\xdf\x46\x1f\xbb\xac\xef\x2d\x52\x45\xf1\x1d\xdc\x06\x7d\xd9\xca\xcd\x7c\xce\x23\xed\xba\x9d\x36\x5a\x08\xfd\xb9\x6b\x90\x02\x2f\x4f\x77\xec\x44\x77\x6b\xce\xb3\x0c\x95\x72\x05\xe6\xea\x26\x96\x97\x10\x77\xca\x44\x55\x1b\x9d\x19\x6a\x12\x25\x1c\x5e\x02\xc9\x50\xc5\xaf\x1b\x18\x4f\x39\x67\xe3\xdf\x04\x97\xf7\x37\x42\x60\x92\xcb\xc8\xef\xf1\x8b\x23\x00\x88\x5b\xf1\xe5\x06\xbf\xc1\x2b\xf2\xac\x4e\xb6\x37\x5d\x48\xc5\xd5\x8d\x2d\x4c\x79\x9f\xf5\xcd\xc8\xbd\x96\x19\xb1\x9c\x48\xa0\xcb\xc5\xac\x8d\xd8\x93\x7a\x97\x34\x02\x05\x24\x0e\x13\xfa\x3d\xe3\x21\xb2\xa7\x72\xeb\xfd\x50\x9d\x00\x41\xa4\xf1\x32\xc7\x2f\x49\xd0\x49\x9a\x11\xc0\x0c\x38\x9b\xee\x9c\xf1\xe5\x1a\xce\x7f\x44\x0c\x24\x93\x24\x21\xcb\x1c\x67\x78\x1f\xe3\x4a\x57\x8f\x77\xd9\x77\x8c\x16\x2b\x5a\x93\x72\x76\xaf\x20\xfe\x18\xf5\x23\x41\xae\x99\xea\x2f\xab\xdc\x5d\xb7\xda\xa8\x0e\xf8\x9d\x89\x55\x70\xfa\xe5\x4b\x3d\xc5\x3f\xe3\x72\x8a\x1f\xdc\x29\x06\x8d\xd2\x3d\xba\xbe\xf9\xe5\x0d\x72\x66\x3f\x4d\x25\x29\xc1\x40\x84\x29\xc3\x12\x6c\x75\x26\x72\x16\x33\xfd\xe0\x67\x47\x0d\x9d\x69\xaa\xc5\x9f\x5f\x72\x15\x29\x07\x02\xce\x6c\x82\x16\x8a\xad\xff\xc9\x04\xc2\x01\xdd\x13\x06\x44\x0f\x27\x26\x72\x0f\x64\xa3\x14\xd3\xc3\x8f\x92\x24\xa7\xa2\x75\x1f\x9e\xd8\xce\xf3\xe3\x3f\xe6\x66\xb2\x18\x6d\x8d\x9f\xa6\xb8\x27\x01\x10\xfe\x7a\xec\xf5\x06\xb6\xe2\x97\x20\x88\xea\xc8\xdf\x7f\x45\xb1\xa5\x18\x35\xe1\x01\xe7\x5f\x1b\xfd\x76\xb4\xd4\xf4\x43\x9e\xa4\x78\x6d\xb9\x51\xdc\xcc\xc0\x58\x00\xa6\x34\xca\x74\x88\x4d\x71\xcd\x6a\xfe\x61\x9d\xbb\x61\xea\x09\x55\xd3\xb1\xeb\xa9\x0e\xfa\x04\x1d\x4a\x37\x13\xd2\x49\x67\x2b\x3f\x0f\xbb\x53\x5e\x8a\xc2\xcd\x17\xb3\x6e\x17\xc9\x25\x86\x8a\xc9\x2e\xdf\x36\xcb\x14\x4a\x86\x01\xed\xd3\xb9\xc2\xec\x7e\x6f\xe1\xe0\xc0\xbc\x4c\x4c\x63\xc3\x0d\xea\x8f\xd0\xec\xf4\x8d\x43\x02\x68\x96\xdc\xaf\xa5\xd7\x6d\x05\x2f\x67\xaf\x4f\xad\xd6\x2c\x6c\xaf\x3c\x56\x0c\xf3\xe3\x43\x16\x28\xe4\xa2\x8d\xb8\x8f\xdb\x99\x43\xdb\xc6\xc1\x82\x8e\x88\x3d\x61\x66\x64\xc6\x51\x42\xcc\xd9\x0f\xeb\x1e\x4e\xdc\x16\x49\xe1\x22\xf5\x98\xaf\x8b\xd5\xdf\xef\xa8\x9a\x08\x7a\x15\xaf\x31\xc0\x8a\x05\xc0\x7b\xe0\xad\x25\x46\x5a\x6f\x5b\x88\xbb\xe3\xfb\x4a\x04\x11\x33\xc7\x0e\x71\x93\xcc\x7b\x73\xc6\x79\x6e\x30\xf0\xa6\xd0\x7e\xa2\x4e\xd3\x6e\xab\x48\x1a\x20\xf1\x7a\x3a\x84\xf2\xd4\x11\x59\x7a\xfa\xae\x3a\xbb\xb8\x5f\x37\x86\x4e\x05\xaf\x7a\xe1\x89\x67\xde\x4b\x11\xec\xd0\xa8\x3c\xbb\x54\x56\x4c\xf4\x6c\xac\x68\x30\x6b\xcc\x77\xd5\xfc\x94\xfa\x2f\xe9\x37\x02\xd3\x9e\x2a\xa2\xad\x7a\x4b\x34\x99\x29\xca\x68\xa1\x40\x7b\x59\x8b\x56\x77\xfc\x10\x8f\xc8\xf4\xd0\x5f\xec\xac\x8b\x9b\xad\xb9\x8b\x0f\xce\xd9\x3e\xd8\xc0\xa0\x6a\x6e\xaf\xba\xe5\x96\xcb\xac\x58\x84\x88\x59\x01\x6a\x4a\x48\x72\x70\x6c\xb7\x0a\x57\x6d\x4e\x30\x39\x9a\xe2\x80\x15\xc1\xb5\x0f\x67\x05\xb5\xd1\x67\xfa\xe4\x08\xf7\xb3\x77\x5e\x24\xe6\x2a\xe9\x58\x38\xe7\x19\x93\x67\xec\x25\x47\x5e\x70\x2b\xa5\xdf\x58\xf5\xe4\x3f\xef\xd7\xa0\x7f\x49\x8f\xcf\x45\x5d\x4a\x60\x98\xbf\xc5\x28\x1c\x98\x91\x7d\x71\xe1\xae\x77\x89\x3f\x5c\x97\xe9\xcd\xec\xba\xdf\x39\x3c\x3f\x7b\x47\x9b\x52\xa8\xe8\x43\x04\x0e\x16\x49\xb7\x43\xbb\x9e\x3b\x40\x79\x1d\x15\xb9\x79\x2c\x28\xf7\xd4\x7b\x13\x67\xab\xa8\x45\xb1\xf4\x65\xf5\x57\x86\xda\x61\x73\x70\xe5\xa7\xc8\x38\xe5\x75\x83\x68\xb2\x3c\x79\x47\x37\x64\x8c\xf8\x22\xec\xe5\x51\x3f\x76\x33\x54\xc1\xf7\xcb\x3f\x28\x53\xcd\x64\x8c\x28\x86\xba\xbf\x2e\xd2\x18\x5a\x06\x7c\xa1\x32\x34\x8c\xce\xb0\xdb\xbc\xdb\x39\xe3\xbb\x2e\x8b\xbc\x08\xaf\xeb\x2b\x9a\x39\xb7\x9b\x18\x98\x3f\xad\x35\xcd\x56\xbc\xff\x57\x84\x2a\xd9\x65\x12\x5f\x86\x3f\xfa\xaa\x96\xf9\x7a\x9c\x7d\xcf\xcc\xb6\x4c\x85\xac\x37\x3b\x65\x25\x3f\x69\x53\x6a\x53\xe7\xa2\x9d\xfe\x58\xa6\xc3\x47\xa3\x32\xeb\x32\x49\x6d\x46\xc1\x98\x5a\x20\x47\xc4\x74\xbe\x4a\xa4\x21\xb5\xd4\xcd\x31\x5a\x60\x1e\x0d\xe6\xc2\x4d\xb3\x37\xc6\xae\xee\x7f\x5f\x38\x6a\x73\x25\x13\xc3\x26\x8e\x1c\x36\x94\x0e\xc4\xb7\xf4\xfd\x49\xb1\x22\x55\xfe\x67\xc9\x63\x74\xf0\xdc\x3b\xc0\x89\xd0\x0b\x51\x35\xe2\x4c\xb0\xf8\x55\xde\x6f\xec\x69\x5f\x18\x27\x00\x7d\x31\x2c\xd2\x66\xf9\x29\xf9\xf5\x3c\xad\x23\xc4\x01\x1f\xe6\x0f\xff\xac\x5b\x94\xa8\xfb\x11\x2e\x32\xe1\xd4\x6b\xd6\xc6\x7a\xa8\xdd\xda\x1f\x8e\x2b\x4f\xa5\xd2\x30\xa8\x6e\x06\x68\x36\x07\x4e\x33\xba\x88\x66\xa9\x31\x16\x72\x7e\x33\x4b\x67\x15\xda\x6a\xaf\xab\xc2\xf6\x82\x96\x5a\x90\x09\x7e\xf0\x90\xac\x67\xa1\x93\x22\x29\x11\x38\x43\x04\xb4\x12\xaa\xa5\x2e\xc8\x5f\x3d\x63\x9e\x1b\x74\x53\x9f\xdb\xac\x7f\xef\x17\x1d\xcf\x93\x53\x22\x7f\xcb\x76\xc7\x88\x10\xe7\x4c\xfa\xfd\x6e\xf2\xe4\x7f\xda\xa0\xa2\x8b\xc3\x77\xe7\xba\x26\xbb\x8f\x28\x48\xff\x10\x70\x3e\xa1\x5f\x1f\x01\xf1\x0f\x29\xdd\xf8\x80\x30\x0f\x37\xec\x16\xb4\x27\xe0\x8f\x1f\x95\x91\x87\x94\x4d\x54\xce\xe8\x74\xeb\x63\xa7\xaa\xce\x2a\x77\xe7\x57\xb6\xaf\x45\xeb\xfb\xb3\x40\x67\xbc\x6a\x9a\xd3\xdf\x8c\x99\x0b\x62\x48\x2f\xed\x9e\x44\x81\xeb\x6e\xf0\x2f\x8e\xca\x6a\x4f\x7c\x1e\x7b\x36\xfe\xad\xa6\xea\xfd\x94\x3b\x30\x0b\xf7\x09\x3d\xde\x80\x37\x6e\x40\xbb\x5a\xb4\x17\xb7\xb9\x14\xfa\x05\x5e\xd2\x94\xa2\xd1\xf1\xfd\xed\xc1\xf2\x15\x64\xb3\x7d\x8e\xee\x6c\x3a\xef\x5d\x21\x34\xa6\x6b\x72\x2d\xaf\x69\x2d\xae\x02\x5b\x87\xfd\xe9\x23\x87\xc6\x9a\x83\x03\x0a\xbc\xe9\x52\x6a\xf9\xdf\x7e\x7f\x4d\xff\x05\xf8\xc2\x3d\xb5\xd5\x87\x82\x64\x57\xf5\xde\x98\xbe\x26\x97\xb8\xa2\x4d\xb5\x3f\x62\x17\x9a\x50\xe8\x76\xff\x1c\x16\x8d\x6d\x02\x68\x54\xc5\x1a\x45\x18\xa8\x63\xb7\x59\x4a\xf8\x0d\xff\x69\xeb\x9e\x59\xbb\x19\x67\x13\x8f\x0a\x09\x10\x4f\x92\x57\xff\xe6\xba\x97\x1e\x39\xe4\xd3\xed\xb7\x86\x5c\xd7\x57\xaa\x8e\x32\xaf\x2d\xee\x2d\x00\x7b\xa6\xdb\x39\xe1\x77\x79\xa6\x78\x01\x57\x9f\x3b\xc6\xdf\xce\xb8\x79\x37\xfa\xb0\x34\x89\x0a\x9c\x8c\x50\xef\xba\x56\x2c\x2e\xc9\xe6\xa2\x65\x12\xec\xe1\x3c\x09\x34\x59\xfb\xee\xaf\xad\x58\x0f\x44\x9f\xef\x59\x1e\xeb\xb5\xec\x8f\x31\xdf\xa5\x62\x0c\x44\x5b\x77\x89\x5a\xb7\xee\xe8\x14\x50\x64\x27\x48\xba\x71\x46\xe8\xec\x37\x16\xc4\x66\xea\x25\x9c\x0a\xcd\xb2\xf9\xe9\xd3\x29\x2f\x7f\x86\xb5\xf7\xd0\x34\xcc\x2b\x5e\x88\x49\x56\xcb\x0c\x30\xab\x3c\x57\x98\x3d\xc0\x29\x5e\xb8\x89\xdf\xf0\xa3\xb8\xa1\x6a\x42\xc0\x28\xdb\xc8\x49\x3f\xd5\x26\xd5\x27\x65\x89\xdc\xda\x51\x48\x6c\xeb\x91\x3a\x4c\xb0\x28\x0e\x89\xd5\xfd\x4b\xb3\xa4\xb0\x80\xf0\xbb\x52\x3b\x6c\xce\x1d\x85\x6b\x9d\xc6\xbd\x95\x1e\x91\xaf\xbe\x52\x5f\xce\x61\xb7\xbf\xe0\x2e\xd9\x5c\x61\x2b\x30\x82\xc8\x76\x89\xe4\x3b\x8a\xdb\xeb\x4b\xc6\x13\x4a\x4b\x12\x30\x81\x30\x60\xba\xb8\x89\xa9\x17\x47\x64\x67\x4d\x1f\xb5\xe1\xe7\xc5\xf3\xa6\xb9\xd4\xcd\x9a\xb9\xd8\x0c\x99\xf9\xef\xa1\x17\x9d\x71\x3c\x29\x76\x67\x22\x43\x62\x5a\x1f\x8a\x53\x8e\xf2\x84\x93\x3c\x69\x26\x57\xaf\xa0\x62\xfc\x68\x4e\x1f\xf7\xf6\xf1\x5a\x46\xeb\x0b\x67\x5a\xa3\x68\x38\x83\xdb\xe7\xe7\xb5\x4b\x34\x0e\x15\x2a\xdd\xe7\x74\x09\xef\x27\x79\xfe\xb8\xdc\x57\x1c\xa7\xe1\x82\x05\x4f\xb6\x50\x34\xec\x80\x23\xbd\xab\xc2\x1f\x55\x2f\xd9\x51\xa1\xe4\xfd\xb8\x68\xd4\x40\x90\x26\xcf\xf6\xec\x61\xcc\xd7\xd7\xa0\xbf\x07\x7f\xd6\xb3\x99\x02\x8e\xbb\x6d\xbe\x0c\xb9\x1a\x01\x9e\xf2\xc5\x77\x4f\xed\xab\x23\x1c\xb9\x27\x4b\xc9\xaa\x22\x71\xfa\x84\x88\xac\xa3\xf2\xe9\xd2\xb3\x4e\x01\x7c\x5a\xad\x88\x67\x09\x04\x03\x56\x03\x24\x1b\x95\x65\x65\xc8\xe7\x72\x3c\x6f\x4f\x6d\x28\x53\xc6\x68\x99\x4d\x85\xde\xba\xf8\x87\x47\xcf\x38\x7d\x1d\xbe\x9e\xf5\xce\xf0\xb6\x8f\x3b\x41\xee\x5b\x2f\x93\x72\x0c\xb0\xf8\x8c\xb6\x5f\x50\x84\x10\xe9\x4c\xe1\x14\xbf\x5b\x96\xd7\x2e\xb5\xcc\xa8\xfc\x79\x50\x1c\xcb\xf6\x44\x21\x6e\x0b\x6c\x71\x94\x65\x5f\xbc\x0c\xf2\xbe\x6e\x7f\x6c\xca\x81\xf7\xbc\xa0\xc8\x4f\xd8\x86\xad\x66\xfc\x46\xcb\x71\x39\xa4\x00\x63\x4c\xcc\x14\x59\x16\x31\x10\x1a\x09\x20\x9a\x25\x24\xb0\xbc\x74\x3a\xab\x36\xef\x9b\x2f\x24\x29\xa3\x97\x77\xbf\x5f\x1d\xbd\xad\x7a\x9f\xad\xc6\x01\x99\x24\x1b\x3f\x68\x87\xc6\x5f\xfe\x39\xef\x89\x8a\x04\x50\x17\x9e\x2a\x33\x2b\xcb\xe1\xc7\x21\xac\x7e\x64\x96\xbb\xbb\x0a\x55\xbd\x6d\x71\x52\xda\x0f\xf8\x99\x78\x39\xb0\xef\xc7\x87\x95\x33\x2e\xac\x80\x1a\x74\xf3\xe4\x76\x36\x77\x5b\x97\xf9\xd7\x89\xf2\x29\xb2\x30\xc9\x2b\xdd\x62\x27\x43\xe2\x7b\x1f\xe6\xa2\x40\x61\xe8\xef\x08\xef\xc3\x6f\x43\xdb\xca\x1f\x31\x2a\x09\x0a\x92\x24\xcf\x4b\x26\xbe\x0c\xe5\xae\x8f\x4b\xeb\xcc\x59\xd2\x2d\xe7\x12\x08\x03\x00\x3b\x07\x73\x66\xea\xe1\xbc\xd3\xcd\xc6\xbc\x2e\x45\xe7\xcb\x0f\x26\x08\xb7\xb9\x68\x30\xa3\xdb\x0e\xe8\x18\x39\x42\x9c\x3b\xe7\x37\x39\x1c\x94\xb7\x80\xe7\x88\xff\x86\x0a\xd5\xc0\x9d\x58\xe5\x66\x69\x04\xa6\xe3\x93\x41\xca\x9b\x5c\x43\x13\x19\x2c\x45\xd8\xe7\x97\x4b\x5f\x82\xe2\xa9\x7a\xd9\xf7\xc7\x16\xf5\x50\x66\x12\xff\x4d\x86\x20\x09\x8f\x12\x30\x34\x45\xbb\x6a\x97\x9c\x4c\x2e\xf0\x7a\xd0\xf6\x61\xd8\xb0\x72\x4b\x06\x41\xc3\x25\xdf\xa2\x90\xcf\x0c\x51\x7d\xf4\xb3\xe6\xaf\x85\x74\xf3\xfe\x12\x94\xe2\x23\xfd\x06\xc6\x53\x01\x8d\xc5\x0f\x5e\x01\xda\x64\xb6\x85\x23\x31\xc7\xd6\xdd\x98\x05\x0a\xd4\x47\xe1\xbc\xf0\xbf\xfe\xfe\xc8\xf9\x8f\x57\xa7\x91\x84\x34\x48\x80\x4a\xca\xe9\xa8\x99\x41\xbe\x61\x04\x89\x6b\x18\xa4\x41\xc5\x98\xad\x7b\x84\x7c\x0e\xd3\x61\x02\x48\x8a\x95\x2a\x8c\xc6\xb4\x01\x80\x68\xf6\xb9\xfe\x51\xa7\x2c\xdb\x1f\x2c\xfb\xf8\x9d\xbc\x30\x4a\xb3\x3a\x1a\x4c\x0d\xbe\x8d\x97\xed\x00\x00\x99\x3e\xe0\x28\x91\x4d\xd6\xc3\x4d\x2f\x30\xcb\xe2\x17\x47\xee\x4c\x2d\xf7\xdf\xf6\xb9\x9a\xda\x2a\x7a\x98\xd3\xfa\x36\x0f\x00\xb8\x38\xa2\x7e\x1b\xe2\x37\x95\xe9\xe1\x73\xa2\x6c\xc3\x1e\xf8\x47\x4b\xeb\xa4\xe1\x40\x3d\xa2\xf9\xfe\x80\xbc\xf5\xc7\xb8\x0a\xed\x64\x4b\xca\xd4\x49\x59\xf1\xba\x9f\xe5\x48\x1a\x23\x21\x63\x6e\xaa\x8d\xae\x2a\xa6\x8f\x0c\x90\xd8\xd3\x31\x05\x4f\x44\x15\x94\xe8\xbd\x86\x76\x7b\x89\x82\xa7\xdb\xae\xaf\x6f\x4f\x26\x8f\xc8\xb3\xe2\x72\xf6\xe5\x3f\xc7\x53\x0b\xa4\xbf\xef\x6a\x13\xff\x39\x34\x59\x1e\x27\x06\x40\x00\x15\xae\x2c\xef\x07\x0a\x00\x48\x9e\xc4\x9e\x1d\xe8\x38\xe7\xc6\x19\xdc\x7d\x04\x03\x8c\x29\x7f\xc2\x23\x86\x9a\xf7\x44\x4e\xf1\x17\x83\x23\x55\xd6\x3f\x4c\x15\x79\xc1\xd9\xd6\x28\x58\x4f\x31\x81\xa1\xa4\x1c\xb2\x7e\x4e\xd2\x8f\xbf\x95\x3c\x1c\xcd\x05\xbc\xef\x0a\xf5\x2f\xcf\xdf\x5f\x54\xf6\x3e\x39\x67\xff\x80\xbf\xb7\x1e\x6f\x86\x94\x45\xfc\x38\xac\xcb\x54\x0c\x57\x1c\x60\x96\x2a\x2c\x4a\x21\x9e\xf5\x0a\xf2\xca\x52\x10\xb9\x1b\xe1\x27\x38\xff\xed\x42\x48\x33\xac\x82\x92\xbf\x87\x07\xb5\x4e\xda\xc9\x26\xf7\xb4\xef\xe9\xfa\x85\x87\x13\x21\x2a\x9d\x41\x39\xad\x88\x8a\x09\x40\x63\x0d\x3e\x1b\x1b\x61\xf4\x2b\x41\x37\xe0\x33\x28\xd2\x0f\x29\x8a\x58\xd6\xe7\x32\x7d\x81\xcf\xba\x1a\x5a\x4b\xec\x4d\xaf\xf7\xe3\x0c\x4c\x20\xe8\x57\x67\xd6\x5f\x6c\x66\x09\x38\xb9\x39\xf9\x2a\x29\xc4\x23\x0a\xf1\x30\x9d\x2d\x9b\x46\x75\x57\xdf\xd2\xa8\xbf\x13\x37\x85\xce\x46\xb6\xb8\x34\xf9\x93\xd2\x3a\x67\x79\x16\x22\x6f\x7e\xf8\x41\x16\x9f\xdc\x43\xd9\xdb\xe2\x9b\xbb\x21\xb8\x3f\x5f\x68\xa5\xe4\x2e\x99\xb3\x3a\x8a\x36\x4c\x4e\x0d\x40\x22\x40\x47\x5a\x20\x42\x33\x25\xc7\x72\xcf\xac\x65\x39\x23\x8a\xfd\xbf\x95\x6f\x6e\x66\x75\x7c\x47\xdc\x93\xd5\xe9\x26\x14\x58\xdf\x68\x0b\xf7\x1a\x3c\xad\x80\x01\x43\x66\x34\x82\x3e\x98\x90\xa2\x38\xcf\x72\x6a\xf8\xbf\x82\xa5\xc9\x36\x62\x8d\x64\x01\xca\x32\x07\x64\xa0\x4a\x9f\xd0\xce\x36\x2e\xb4\x4d\x2d\x4c\x19\x95\x5c\xe5\x0e\x37\xed\xf6\x4b\xe4\x82\x20\x5f\x63\x70\xd3\x46\xb6\x48\xb5\x43\x99\x7c\x25\x9d\xca\x2d\x21\x57\x48\x8b\x4b\x90\xe3\x4d\x9c\x67\x50\x3d\x75\x48\xbb\x5c\x16\x75\x17\x2e\xae\xc9\x9a\xb0\x2f\x1b\x14\xc0\x2c\x1d\x1d\x62\xdb\xf4\x74\xe4\x6f\xd7\x12\x9a\x1c\x33\x42\x33\x4d\x40\xcc\xa4\x51\x4b\x70\x38\x3f\x18\xa9\x45\x22\x05\xed\x7b\x26\x80\x56\x85\x20\xf8\xf7\x7f\x02\xb2\xf3\x5e\xbc\xdb\x50\x67\xc2\xf6\x1f\x5b\xe5\xbb\xf3\x6b\x3f\xa6\x94\x2e\x54\x61\x92\x28\xcf\xab\xeb\x3a\x78\x0f\x38\x66\x6f\x5e\x41\x7f\x0e\xaf\xdb\xc4\xb7\x14\xf8\xb3\x03\xfd\xec\x5f\x85\xe8\xd7\xa5\x01\x48\x1d\xfb\xf1\x91\x11\x23\x78\xa5\x77\x96\x3f\xdf\xce\xa5\xd9\xe5\x04\x31\xb7\xe7\x6e\xcf\x60\xe3\x51\x30\xa0\xff\x02\xb9\x7c\xe1\xc4\x32\xcf\x8e\x2f\xf0\x9b\xf0\x7e\xf5\xfa\x87\x26\xcf\xa4\x63\xbf\xb7\xb6\x3d\x38\xf0\x3e\x3c\x11\xd8\xa4\x5c\x10\xab\x13\xd5\x5d\x5f\xc4\x95\x59\xd5\x3d\x5a\x8f\x6a\x9a\x10\xfa\x9b\x56\xee\x6f\xec\xf9\x60\x63\xaf\x6d\x00\xd4\x69\x24\xa4\xda\x9d\x84\x43\xf1\xa0\x4e\xa9\x96\x69\x79\xc4\xbb\x6f\xef\xdb\x08\xb0\x6a\x55\xd9\x20\x11\x53\x98\xb6\xa4\x99\x5e\x0b\x38\x52\x3a\xec\x5d\x6c\x5a\xc3\xee\x5b\xef\x07\x26\x4c\x78\xb6\x67\x1b\x9e\x7a\x61\xae\xe4\x8d\x13\x81\xfb\x6d\x8b\x21\x32\x36\x96\xf7\xce\x08\xc1\x99\xc8\x1f\x39\x63\x7e\x39\x74\x60\x85\xb8\x51\x87\xb8\x4e\x9a\x6c\xfc\xeb\x87\x78\xb7\xb3\x4c\xff\x1d\x1f\xc7\x98\x97\x1f\x15\x72\x32\x9f\x3f\x10\xf6\x55\xd4\xa9\x25\x9b\x40\xf9\xb1\xf1\xce\x0d\xb6\x6d\x00\xdd\x2f\xe1\xbb\x40\x04\x91\x3b\x01\xc0\xbe\x97\x41\xa2\x8a\x19\x8e\x02\x35\x72\xf3\x03\xab\x07\x67\x05\x5b\x23\x69\x0f\xbf\xbe\x64\xe6\x69\x3b\xa5\x3e\xb4\x0a\xbf\x4f\xb7\x9c\xa0\xd9\xd6\x79\xc9\xa7\x77\x74\x82\xf6\xf7\x82\x60\x64\x0d\x8b\xfc\xdd\xe8\xe3\xd4\x34\xc2\x66\x47\x39\x2a\x72\x13\x8a\x6d\x00\xde\xfa\x6b\x30\x6b\xe2\xc4\x23\xb1\x54\x6d\xd4\x26\xfa\xbe\x23\x3f\x6c\x96\xcc\x0a\x17\xd0\x17\xe3\x91\xdc\x04\x00\x14\xcb\x73\x2a\x51\x8d\x66\x7f\x78\x49\x44\xd4\xcb\x14\x9a\x62\xd8\x3f\x66\x21\x67\x2d\x9d\x3d\x73\xe3\x09\x95\xf5\xc9\xe2\x1f\x9d\xda\xae\x7f\xe4\x5d\x5f\x52\xf7\x72\x17\xb6\xcf\x73\x38\x5e\x0d\xc1\x63\x8b\x4d\x69\x6f\x49\x98\xd4\x2e\x94\xc2\x66\x2e\x97\xca\xbc\x52\x5c\x7a\x20\xcb\x9f\x20\xfd\x8e\x5a\x33\xca\xb5\x69\x63\x49\x05\x1f\x49\x66\x88\xa4\x9c\xd3\x9a\xc9\xf7\xf5\xca\x6a\x7b\x70\x6b\x6e\x32\x03\xa2\x8a\xbb\xca\xcd\x19\xd7\xfd\x2b\x97\x6d\x2d\x8a\x71\x3b\xeb\x08\xb5\xdb\x3e\xb9\xee\x2b\x2f\x9b\xca\x2f\xd5\x0c\x15\x49\xfb\x51\x8f\x90\x4d\x5e\x2f\xc7\xf4\x81\x20\x4a\x76\x05\xb9\xaf\x22\x39\xbf\xf3\xc5\x51\x7b\x1d\xfe\x32\xc2\x7a\xf0\xc7\x4d\xa8\x6f\x2f\x5f\xed\x0b\x33\x6b\xbe\x3f\xfb\xf4\x1a\xf8\xde\x42\xee\x8e\xc9\x5b\xd2\x90\x4b\x34\xb6\x3e\xda\x4c\x2f\xd0\x99\x96\x8c\xf4\x1c\xfd\xd9\x58\x4c\x0f\xc4\x39\xe2\xad\x22\x6d\xe9\x18\x46\x83\x03\xb6\x25\x8d\xe2\xfc\x2d\x44\x7c\xfc\x20\x78\xe7\xc9\xac\xdc\xa0\x54\xb8\x07\x3d\xb1\x46\x36\x23\x22\xad\x8d\x77\xe7\xd6\x5f\xa8\x67\x6d\xb0\x22\x2f\x5d\xfc\x65\xbc\x6e\xfa\xc4\x2a\x7d\x07\x38\x0b\x38\xf1\xe8\x04\x25\xca\x43\xf8\xcd\x08\x5c\x29\x60\xc0\xc2\xbc\xb1\x2a\xf2\xe6\xc6\x4f\xfc\xfd\x8d\xf9\xd9\xd5\x5a\x73\x48\xeb\xef\xb5\x60\x01\x30\x26\xf7\x13\x20\x66\x86\xe6\x07\xe6\x81\x80\x95\xc5\xa1\x53\xc2\xe0\xd8\xe2\xfa\x50\x29\xcd\xfa\xd7\x93\xa6\x4e\xd8\x3d\xd6\x90\x7c\x5d\x53\x10\x34\x93\x04\xe7\x63\x29\xfe\x98\x94\xaa\xb9\xef\x9f\x9d\x7e\x7b\xac\x6a\xab\x81\x90\xeb\x4d\x25\xba\x6d\x45\x3c\x54\x83\xf2\xce\x58\xd0\x69\x33\xdd\xf7\xf7\x53\x19\xeb\xed\xfc\x0f\x13\x72\x18\xb2\x3c\x35\xc5\x5c\x85\x88\x55\xc1\x66\x63\xb9\xe4\xac\xaf\x07\xb9\xc2\xa1\x0b\xf6\xa3\xad\xb7\x7f\x73\xa4\x6c\x34\x1f\x90\xa4\x86\xb9\xb4\xd5\xe8\xef\x4a\x52\x6b\x19\xe8\x02\x50\xb9\x52\x80\xf1\x22\xd9\xd4\xbe\x2b\x2f\xb1\x66\x37\x3f\xc6\xab\x73\xe3\xb5\xfc\xe7\x71\x03\xb5\x09\xa0\x09\xff\x2c\x8e\xe8\x94\x01\xf2\x7b\xf9\xa0\x2d\x7a\xea\x47\xb8\xb5\x79\x07\xc1\x5c\xe8\x84\x29\x3c\xd2\x9b\x11\x5c\xd4\xdd\x30\x7e\x00\x43\x45\x72\x20\xbb\x5e\xc2\xdb\xdd\xdc\xeb\xdf\xf7\xfd\x27\x13\x6f\xf7\x9d\xd5\x9a\x81\x60\x7c\x59\x98\x65\xdd\x18\xad\xd0\xee\x72\x15\x22\x0f\xd4\xc4\x22\x9d\xc5\xce\x28\x19\x90\xc7\xf2\xe7\xcd\x5b\xb9\x6c\xc0\x24\x25\xc9\xa2\x24\x85\xca\x89\x9e\xa0\x9a\xf1\xe0\xab\xe8\x77\x9c\x72\xb9\x2b\x47\x53\xd9\x0c\x84\xfb\xb8\x8a\x62\x00\x3d\x07\x4b\x0f\x00\xea\x09\x17\x9c\x02\x9e\x17\x97\x37\x48\x0d\x50\xda\x1a\xd8\xc8\x04\xd2\x98\x50\xd4\x93\x62\xa9\x78\xc0\xea\xa9\x27\x37\x6a\xab\x4d\x3e\xde\x3a\xc2\x7f\xf0\x39\x08\x0a\xb0\x1b\x92\x11\x3c\x23\xa9\x8c\x40\x34\xe2\xaa\x0f\xae\xfb\x61\x22\x5c\x99\xa9\xef\x3a\x05\x83\xe9\x43\x20\x0e\x44\x39\xfc\xf6\xc0\x2a\x0a\x72\xff\xb3\xe9\x4e\xff\x5a\xd2\xc1\xd7\xdd\x54\x53\x77\xac\xd5\xf3\xec\x32\xe9\x14\x10\x85\xdb\xfd\x57\x8b\x09\x19\xa7\xfe\x77\x16\xb3\x84\x7d\x0a\x1d\x3a\xcc\x42\x1b\xfb\x02\x9a\xb7\xb7\x19\xed\x64\x1c\xdc\x9f\xef\x8f\x7b\xd0\xc6\x7f\xd7\x6f\x59\xe8\xa5\xd5\x59\x90\x9a\x52\x14\xee\x09\x26\xa2\xaf\x64\x48\x50\x9b\x62\x1d\x03\x02\x2a\x3b\xd5\x86\xa5\x6d\x9b\x96\xad\x6a\x9f\x72\x18\x68\x63\xa3\xb6\x0f\x6b\xd2\x4f\xf2\xf5\x23\xdd\xce\xa4\xa9\xe9\xe5\x0f\x97\x96\xce\x04\x98\x97\x9c\xd4\x82\xcf\x30\xad\x6d\x63\x9f\xbb\xab\xa2\x8b\x2b\x7c\x5c\x34\xda\x68\x96\x65\x13\xed\x59\x96\x32\x54\xbf\xb1\xc7\x52\x95\x06\xb5\x88\x17\xe3\x18\xf4\xcb\xd8\x0b\xa0\x3a\x6e\x59\xd7\x7c\xcf\xcb\x18\x1d\x0e\xa4\x52\xe1\x5e\x3f\xc9\xc3\x82\xa1\x2d\x44\xea\x70\xb9\x92\xee\x56\x0a\x1f\x7b\x77\x17\x36\x2b\xcd\x35\x0e\xf2\xbd\xd7\x43\x22\xa1\x79\xbb\xb0\x3f\xd1\xe8\xa5\x98\x10\x47\xa9\x87\x02\xbd\x19\x74\x2f\xc3\x3b\xbc\x49\xc7\x0a\x97\xa9\x81\xd5\x48\xb3\x13\xc2\xcb\x93\xb8\xb6\x9a\x50\x43\x3a\x31\xd5\x46\x2e\x92\x2d\x54\xb2\x20\x15\xdc\x48\x3b\x1a\xa4\xae\xc8\x45\xfd\xfe\xa0\xc3\x3e\x69\x99\xc7\x53\x79\xad\x6f\x2d\x51\x30\x16\x22\x5c\x1f\xdf\x32\x4c\x17\x39\xd3\x19\x24\x4c\xac\x64\x42\xf3\xf7\x64\x42\xb2\x55\xc8\xd5\x77\x32\x44\x03\xfa\x0e\xaf\x54\x98\x95\xfe\x20\x03\x95\x74\xa6\xd1\xb4\x43\x79\x33\xb0\x02\xca\x58\xfa\xeb\x0f\x01\x68\x4c\x52\x47\x39\xe5\x8a\xfb\xc4\xe3\xa3\x54\x9d\xd2\xc2\x07\x87\xbf\xae\x04\xab\x11\x45\x11\x92\x26\x43\x8c\xfd\x4f\xac\xb6\x89\xca\x4b\x4c\xae\xd6\x49\x89\x00\xf1\xf8\xd1\x7e\x72\x79\x9b\x6e\xeb\xc2\xd8\x20\x3c\x10\x22\x4c\xc5\x85\x1d\x79\x5b\xa6\x17\xa1\x6d\x15\xd1\x7a\xee\x21\x84\xfb\x19\x46\x94\x97\x84\x75\x50\x6b\xbe\x3f\xd7\x37\x18\x51\x42\x5e\x1e\x4f\xa6\x2b\x3f\xd6\xa4\x6c\x14\x76\xfd\x13\x94\x0b\x26\x05\x54\xf0\xcb\x4f\xc5\xa7\x98\x9d\xa1\x15\xdd\x46\x61\x9a\x4f\x97\x51\x6a\xdd\x48\x84\xa6\x03\xf5\xf7\xa0\x0c\x5b\x26\xfb\x46\xc5\x10\xb3\x0a\x8a\x94\x92\x44\xb5\xc0\x0e\x13\xc0\x22\x51\x2d\x50\x4c\xfd\xa2\xeb\x9c\x2d\xea\x67\xfb\x1d\x11\x18\xfe\x59\x32\x28\x41\x89\x23\x3a\x79\x06\x63\x02\x9f\xf8\x33\xf8\xe6\x11\xa4\xf9\x59\x4c\x11\x94\x53\x0a\x40\xbc\x38\xe9\x85\x25\x18\x88\x6d\xee\x57\x43\x8a\x0a\x85\x75\x1f\xd3\xd9\x5d\x39\x7a\xfe\xc2\xcf\x2b\x65\x6e\x55\xb0\x01\x7c\xf1\xb2\x62\x8d\x28\x3c\x66\x96\x58\xcb\x3b\xe1\x6e\x50\x42\x44\x17\xc5\x0c\xa8\x0f\x7c\x70\x2e\xc5\x43\xc0\xc4\x28\x42\xc0\x0f\xa0\x60\x91\x6a\x98\x85\x34\xb5\x43\x71\xbc\x5e\x92\xc6\x4e\xb4\x2e\xf3\xde\x28\x2e\xd9\xf5\xda\x73\x84\x2d\x8b\x53\x0f\xc1\x53\x2d\x12\x47\xfd\x9c\x16\xf7\x1a\xdd\x40\x89\x45\x74\x42\xe0\x74\xb5\xf6\x8f\x78\xf1\xc2\x75\x8f\xaf\x7f\x4a\x61\xd2\x03\xa6\x55\xae\x25\x2c\x13\x5d\xbb\xaf\xb1\xde\x52\x3e\x7a\x36\x5c\xf9\x98\x16\x2c\xf0\x3d\xb1\x88\x1b\x93\x47\x76\xa5\xb5\x00\xbd\x1b\xfe\xaf\x13\x15\x3d\xda\x04\xad\x3b\x9e\x2d\x3f\x36\x3e\xb7\x4b\xd5\x2f\xce\xb9\xd9\x31\xe0\x6f\x42\x2a\x6f\xf3\x66\x38\x08\x88\x20\xb6\x48\x52\xc1\xfd\x47\xbe\xae\xe5\x7c\x47\x75\x0e\xef\x2e\xad\x39\xf0\x8b\xc1\x46\xb5\x95\xcf\xd3\xe0\xb1\x45\x2d\xaa\x75\x84\xc7\x9a\xce\xc4\x36\xd8\x8f\xdd\xd3\xe0\x6d\xe5\x6b\xce\xa8\x98\x25\xb7\x27\x67\x7e\x30\x15\x73\x5b\x69\xc2\x42\xfb\x84\x98\xe5\xf7\xfd\x6c\xf3\xbb\x07\xda\x54\xc0\xfe\xe1\x0d\x0f\x25\xdc\x02\xc5\x73\x14\x31\x8e\x28\x8a\x96\xdb\x14\xdb\x76\x6b\x26\x4e\x5c\xde\x25\x16\x15\xd1\x50\xb2\x16\x19\x17\x0d\xad\xbc\x08\x87\xea\x2c\x56\x11\xb9\xbd\x4c\x3a\x17\xe3\x96\x3a\x12\x0d\xf0\x50\x6d\xd4\x54\xfc\x6e\x37\xa6\xb4\x8e\x68\x0a\xa3\x8c\x96\xda\xcb\xf7\x30\x01\x5e\xa9\x81\x25\x7d\xb1\x3f\xb6\x4d\x53\xe7\x8f\xdb\xb7\x3a\x57\x7f\xe3\xe1\x65\x7a\x89\xc1\x9e\x9d\x7b\x8b\x38\x2e\x82\xbd\x79\x89\xb8\xb8\x3a\xf1\x1f\xee\x60\xa3\x1d\x42\xd5\xf8\x8c\x23\x23\x4b\x06\x87\x38\x5c\xb1\x23\x13\x20\xf2\x71\xe3\x47\xf7\x99\x85\x1a\xbf\x1c\x93\x9f\xea\x57\x27\x79\x53\xf7\x6b\x14\x75\x1a\x6a\x78\xf9\xb2\x89\x10\x26\x8b\x4e\x53\xe7\x7d\x0e\x44\x80\x42\x2f\xc3\x1d\xcf\x0c\x03\x88\xa1\xc2\xff\xf5\x4c\x8a\x68\x0c\x77\x51\x95\x71\x9c\xd2\xd9\x3d\xca\x22\x7f\x67\xc6\xeb\xc9\xbc\xe4\xe5\x55\x45\x11\x1b\xe4\x4b\xc0\x16\xf1\xef\xcb\xc8\x96\x2e\xaa\xaf\xf9\x2c\xd9\x8a\x00\x06\x40\x24\x1c\x43\x60\x75\xae\x6e\x64\x20\xc0\xf2\x1a\x8b\xdf\xb7\x20\x48\x1b\x07\x5e\x94\x7d\x8a\xdb\xcc\xdc\xfd\x76\xb5\x60\x7d\xa6\xfe\x66\x14\xbd\xad\xaf\xa2\xdb\xeb\xa3\x8e\xfc\x78\x61\xe6\x24\x94\xe0\xf9\xba\xed\x15\xfd\x40\x83\x5d\xc6\x2f\xbe\x51\xce\x87\x04\x06\xec\xb1\xa3\x58\xba\x05\x8c\x1e\xd4\x7b\x59\x34\xbf\x13\x37\x21\x08\xa3\x02\x7c\x04\xf5\x6e\xdf\xea\xe2\xaa\x91\x35\xeb\xf7\x1d\x4b\x6e\x50\x7f\x7d\x91\xfb\xd5\x0c\x7f\xe1\x88\xa8\xcb\xdf\xa7\x67\x86\x78\xa2\x94\x6c\x0e\x1b\x45\x45\x0d\xf7\x45\x14\x68\x45\xe8\x8a\xde\x3a\x5d\xc7\x84\x71\xf6\xfd\x86\x39\x6b\x6b\x78\x79\x3f\xc8\x20\x76\x37\x1c\x70\x38\xb6\x1a\xe1\x6c\x6e\xb2\xde\xca\xd6\x6e\xbb\xc6\x56\x69\x8f\xad\xcf\x02\x3b\x66\x0c\x5f\x0c\xfb\x45\x9a\x90\xf5\x5f\x78\x08\xc6\xb4\xfa\x36\x11\x6b\x54\x7a\x61\xda\xc5\xe9\xc3\x5e\xdb\x5e\xbc\xc2\xc3\x63\x90\x9d\xf9\xc5\x85\x02\xf7\x36\x2f\x19\xc9\xae\x85\x17\xb5\x47\xa2\x1c\xe1\xd8\xc8\x5d\x75\x97\x9a\x75\xf6\xa6\x65\xe2\xf8\x04\x6a\xca\x7e\x97\x0c\x84\x8b\xb2\x32\x07\x45\x57\xdb\x5c\x80\x7f\x7d\x48\x50\x0f\x23\x9b\xe0\x6b\xd4\x5c\xe3\x57\x1e\x75\x68\x81\x09\xb3\x1d\xab\xed\x47\x9d\x8c\x1f\x45\x6b\x8f\xe2\x5e\x75\x34\x1f\xfa\x50\x69\xa2\x96\xcd\x6f\xd6\x98\x5a\x2f\xba\x51\x62\x70\x68\x02\xb8\x6f\xc3\x5e\xb5\x08\x86\x7d\x60\xed\xa2\x65\xfe\xdd\xce\x7d\x39\x6c\xb3\x59\xce\x8b\xb2\xaa\xf2\x97\x0f\x52\x42\x84\x57\xc0\x8a\x0e\xc5\xaa\xbe\xe1\xef\x31\x51\x0d\x1e\x2e\x8d\xa9\xf7\xc1\x65\xc3\x55\xb7\x28\xe5\x63\x18\xcd\xe2\x1c\x0e\x5e\x91\xdc\x7a\xbd\x7a\x39\xd8\x60\x3f\x9f\x7b\x7c\x9c\xfd\xa1\xfe\xd2\x12\x02\xff\x4a\x72\xe3\xab\x3d\x3d\x3c\x0a\x79\x5c\xd5\x50\x1a\x8f\xe4\x91\x87\xf8\x9a\x30\xab\xee\xb4\xf5\x35\x25\xc2\xfd\x59\xd2\x4a\xad\xac\x94\x38\x5a\xa1\x86\x3b\x64\x1c\x92\x1e\xf2\x50\xaa\x42\x72\x3b\xbd\x8a\xf0\x21\x3e\xca\x05\x29\x4e\xc5\x11\x0c\x6a\x66\xbb\xf3\x5b\xb1\x1c\x83\x0d\x09\x1c\xa6\x13\xc1\x00\xd0\xeb\xf6\xd5\xeb\x3b\x05\x1a\x8b\xa6\x40\x9f\x1d\xfc\x69\x04\x91\x89\x04\x52\x0e\x39\x99\xd8\xfe\x96\x21\x8d\x1d\xa0\xd2\x68\xa1\x31\x1c\x87\x72\xbc\xe4\xb2\x45\x55\x44\x81\x42\xa7\x1e\xd1\x25\xbe\x68\x85\x07\x47\x31\x58\x2f\xf9\x5d\x17\x9b\x89\xcb\x60\xec\x8b\xfb\x95\xb5\xb7\xbe\xf0\xa0\xb4\x13\xe3\xf9\xef\xae\x2a\x4c\xd8\x00\x84\xdf\x8e\xa6\xfe\xa6\x1a\x6d\x3e\x16\x9f\x5e\xc6\x25\x95\x02\x4a\x73\x03\x34\x68\x7d\xb7\x56\x75\x0e\xd1\x9c\xb3\x1d\xe3\x08\x06\xc1\xc0\x75\xcf\xe5\x74\xc9\x61\xcc\xd5\x74\xbb\xdb\x01\x57\xb5\x1e\x3e\x6e\xd0\xa7\xec\xe9\x00\x8f\x2f\x3a\xb9\x97\x39\x2d\xd6\x55\x98\x01\xeb\x70\xcc\x24\xf5\x57\xb4\x43\x46\x31\x47\x16\xc6\x82\x64\x5d\x12\x3f\x2f\x1e\xdc\xa4\x97\xfe\xe0\xf2\x3a\x8a\x09\x73\x54\xe2\x4c\xfe\xfa\x71\x5b\xa7\x07\x2a\x83\x8d\xd3\x0e\xd9\x70\x47\xbb\x6a\xd6\x78\xe4\x21\x82\x1f\x4a\x49\x34\x19\x8e\xb8\xff\x7c\xc1\x15\x5e\x2c\x14\x97\x1e\xe9\x24\xb6\x6b\xbe\x62\x35\x6d\x53\x42\xfe\xd7\x3d\xbd\x56\x5b\x8e\xa0\xfc\x69\xcf\xed\x4d\x30\xbf\x29\x67\x39\x7b\x32\x24\xad\x49\x55\xb1\x1b\x99\x40\x7a\xce\xc9\x90\x84\x69\x02\xea\x3b\xb6\x25\x14\x8d\x0e\x34\x87\x66\x3e\x4d\x07\x9d\x78\xd2\xa2\x60\xc4\xec\xef\x0e\x38\xe3\xd0\x16\x20\x56\x3d\x86\xdc\x0d\x8f\x20\xd4\x8b\x9a\x95\x0f\x23\x6f\xad\x91\xda\x47\x74\xa2\xe4\xf0\xb9\x74\x2b\x60\xf6\x71\xa1\x8e\xe0\x06\x71\xa6\x6a\x96\x86\xc9\x6f\x0b\x4f\x16\x2e\x05\x13\x25\x11\x06\xef\xa2\x14\x1f\x11\x39\xb7\xdc\x1a\xf0\xf7\x94\x29\xe7\x9f\xfd\xbb\x11\x86\x5b\x20\x07\x1c\x57\x9a\x3f\x9a\xa0\xdb\xb2\x65\x90\xcf\x3d\x26\xb6\x21\xde\xd2\xc5\xcd\xb4\xae\x13\x75\x1c\x65\x66\x6b\x89\xdc\xdd\x1c\xce\x38\x6f\xf7\x22\x41\x9f\x9a\xde\x2b\x06\xe8\x08\xea\x47\x8b\xcc\xd8\xd0\x2b\xb6\x6d\x06\xa9\x60\x62\xc5\xcd\x86\xa9\x0c\x05\x79\xb5\x9e\xfa\x2b\x11\xbe\xb2\x71\xfc\x6b\x49\xd8\x37\xac\x96\xc4\x61\xcc\x55\x3e\xe2\x32\xfd\x56\x57\x2e\x26\x0d\x1b\x85\x7b\x91\xc8\xa6\x58\x90\x69\x27\xb1\x9b\xff\xf2\xe2\xbc\xd7\x17\x6c\x56\x0b\x71\x88\xfd\xa7\x10\x8f\x3d\xab\x1c\x84\x5c\x37\x85\x15\x70\xb9\x3c\x47\x78\x51\x4e\x29\x59\x56\x7f\x25\xd1\x94\xb4\x39\x8d\xc5\x2e\xe1\xc5\x53\xd2\xa6\x97\x66\x83\x04\x1e\x54\xf4\x0c\x06\x3b\xbf\x6e\x75\xb2\x3d\x47\x2a\x83\x3d\x71\xa1\xe4\x73\x9a\x17\xbc\x2e\x2f\x06\x49\x7e\xad\x13\x69\x5a\x13\x97\x42\xf4\xc6\xfb\x4d\x02\x12\x65\x3d\x69\x02\xe9\xb3\xb5\xd8\xc8\xb4\x43\xfd\xc8\xa6\xb2\xe2\x40\x04\xa5\x09\x0f\x7c\x03\xcb\xf4\x8d\x78\xb7\xd7\x7d\xf5\xe1\x0b\xef\xf8\x67\xfc\x75\xd3\xf2\xe6\x91\x13\x06\xe8\xb5\xfd\xba\x01\xcc\x77\x94\xd9\x66\x91\xef\x63\x35\x32\xa3\x76\xb8\x3f\xc1\x12\x26\xcb\x19\x99\xcd\x90\x6b\xef\xbe\xbc\x8e\xd4\x59\xe5\x8e\x06\xde\xf7\x5c\xcf\x3b\x7c\xa3\x05\xb8\x66\xf4\x33\x40\xa4\x83\xfd\x0c\x42\x64\xbb\x00\xbb\x5d\x66\xef\x4a\x59\x38\xf1\x85\xca\x30\xf6\xc8\xa2\x79\x66\x1c\x3d\xd3\x6b\xa3\xf0\xf7\xe4\xd6\x6d\xc4\x5f\xd4\x33\x71\xe7\x38\xa2\x5f\x87\x96\x62\xfa\xa1\x13\xdd\x49\x04\x83\x14\xa5\xb0\xed\xde\xd7\x76\xb9\xef\xae\x4f\x73\x77\x8f\x37\x96\x13\x2b\xc1\x6f\x17\xe6\x36\x0c\xae\x13\xa1\xd3\xa6\xc9\xaf\xff\x64\xf7\x5a\x5c\x14\xbd\x5c\x7f\x51\xc4\xf5\xb9\x53\x46\x32\x52\x59\x4e\x7d\xac\x96\x1e\xdb\xfd\x1d\xf1\xd7\xcc\x7c\xaf\x29\xda\x55\xe5\xda\xec\xb2\x65\x71\xdc\xa7\x67\x17\xbe\x2c\x62\x69\x01\x61\x64\xf9\xb6\xeb\x0a\x6d\xa9\x3b\xb1\x2e\x52\x02\x15\x9a\x2a\x55\x71\x08\x76\x87\x5d\x8b\x74\xbf\x42\x0e\x54\xce\xdc\x6a\xcd\x55\x3d\x4d\x98\x8b\x48\x1c\x67\x9e\xff\xcc\x8b\x4c\xa1\x82\x9b\x3d\xce\x40\xee\xef\x2a\xf0\x8e\xdf\xf4\x68\x99\xe5\x68\xee\x44\xd0\xf4\x09\xd4\x61\x72\x93\x25\x5e\x83\x85\x73\xc4\xfb\xe8\xb7\x53\x55\x20\x32\x62\x57\x09\xd7\x91\x78\xaf\xb0\x93\xd7\x97\x88\x20\x5c\xab\x63\x6b\xf4\x33\xad\x90\x4e\x19\xdd\x3b\x95\x6b\xe5\x92\x8e\xfc\xbc\x7f\x17\x65\xd1\x5b\xd8\x6e\xfc\x16\xd7\xb0\x80\xdf\xb0\xc0\xc8\x8a\x0f\x6d\xb5\xc1\x06\xf3\x93\x99\xf6\xa8\xb3\xd0\x91\x15\x10\x06\x31\x8e\x23\x4e\xef\xbf\xba\x1a\x72\xc4\x5e\x53\xaf\x78\x98\x6c\xff\xc5\x19\xe0\x0a\x61\x16\x77\xc0\x5f\x1c\xfa\xd4\xd3\x2a\xbe\xad\x09\xbb\x6e\x6f\x8f\xfb\x8f\x00\xb7\x65\xe7\xb5\xc6\x67\x8c\x35\xe0\x73\xc0\xe6\x35\xa7\xe4\xc5\x4d\x28\xf2\xec\x3a\x09\x44\x11\x9a\xfb\x29\x01\xa7\x73\x1f\x6d\x0b\xd1\x2c\x68\xd3\x9a\xb4\xdd\x06\x21\xd0\x30\x40\x22\x3e\x5f\x73\x39\x29\x3b\xac\xf2\x04\x0a\x97\xc8\xec\x84\x03\x4a\x78\x3d\x9c\x44\x2a\x44\x19\xbe\x41\x3b\x8a\xcb\xfe\xff\x12\x4d\xde\x6e\x34\x08\xc8\xe1\x73\x31\x93\xa9\x82\x6b\x7d\xdd\xd1\x25\x79\xb0\x9c\x7c\xdc\x3d\xb9\x02\xd9\x07\xe4\xf0\xbb\x07\x77\xcc\x4d\x9c\x35\xec\x5d\x8a\xa4\xbb\x6e\xbc\xe8\x0d\x60\xb9\x59\x1b\xee\xf8\x3d\x21\x05\x72\x59\xf1\xad\xe7\xdc\x5c\x41\xd3\x0a\x8c\x7e\xb4\x1e\xcb\x1c\xdd\x18\x16\xef\xdb\x1f\xd9\x39\x6c\xa2\x25\x01\x90\x8f\x72\x3c\xa4\x06\x18\x6b\x78\x9f\x04\xd8\xb2\xa3\x80\x08\x0b\x73\x17\x2b\x48\xa0\x21\xce\x0f\x64\xd0\x59\x7b\x6e\x29\x80\xee\x87\x0b\xea\x34\x26\xd2\x23\xba\xac\x5c\x44\xef\xba\x17\x59\xe8\x07\x0e\xfc\x3f\xa4\x2b\x90\x1e\x49\xb0\x90\x76\xdd\x5c\x05\xcd\xbb\x78\xc2\xdf\xa4\x8f\xcc\xde\xf1\x8b\x9e\xd3\x5c\x30\xcd\x95\x72\xf4\x3c\x3e\xb6\xba\x27\xd7\x5d\xa9\x8d\xf2\x89\xaa\xa5\x28\xb9\xf5\x10\x11\x7f\x1a\xbc\xf4\x25\xa0\xbe\xef\x70\x63\x6f\x41\xbf\x15\x3a\x67\xa5\xe7\x77\xa2\xcf\xb2\x17\xf8\xed\xb6\x21\x78\xf3\x98\xe3\xfb\xd5\xca\xa2\x96\xd4\xab\x47\xa7\xd5\x8e\x8a\x8d\x1f\x1f\x22\x7c\xcf\x02\x5d\x29\xde\xcb\x10\x58\x5f\xcc\x93\xb6\xa3\xdb\xf7\x14\xb6\x0e\xb3\xc3\xb5\x2c\x37\x26\x67\xc9\x17\xad\x27\x56\xe2\x65\xfe\x32\x83\x18\x52\x74\xe0\x26\xed\xcd\x63\xb1\xcd\x3b\x92\xaa\xdb\x49\xf4\x29\x47\xca\x42\xdb\x40\x52\x3f\x96\x8c\x69\x90\x4c\x34\x3c\x7e\x7f\x04\xab\xbd\xc0\x0f\x7d\xc3\x1d\x95\x3b\x1e\xe2\x51\xd3\xd5\xd0\xf5\x49\xc0\x49\x3b\x2e\xb8\x94\xba\xd1\x5a\xb4\xd3\x1b\x48\x27\xd2\x50\xb1\x6f\x14\xad\x3e\x89\x3e\x16\x1f\x58\xa7\x00\x80\xa1\x7e\x09\xc4\xcd\xe9\xea\x14\x11\x8c\xdb\x63\x28\x59\x0b\x7e\x13\x4e\x67\xa6\x44\x40\x62\x77\x80\x26\xb9\xb7\x16\x9f\x4c\x40\xab\x7b\x94\xd4\x99\x75\xc7\x74\x55\x00\x97\x5c\x41\x38\x6a\xc1\x6b\x50\x99\xa1\x15\xdf\x46\x75\x60\x94\x8e\xb7\x15\xc4\x77\xa2\xbf\x8a\xb9\x9b\x25\xa8\xa8\xb7\xeb\xf7\x64\x19\x35\x7c\xa4\x84\x3f\xe3\xa4\x83\xb5\x65\xfb\xcc\x56\x32\xc3\xbf\x4f\x2e\x2f\x4c\xdc\x02\xc1\xc6\x63\xaf\x70\xd0\x3a\x88\xaa\x5b\x39\x0d\xdd\x4e\x56\x02\xe0\xf9\x57\x6b\xe0\xb8\x87\xf9\x5b\xfe\x50\x4f\xfc\xdb\x45\x37\x0a\x9b\x9b\x86\x76\x73\x09\x26\xfc\x47\x91\x90\xda\x74\x3c\x30\x94\x0f\xf8\x0e\x98\x78\x41\xf0\xee\xfd\xdf\x4e\x26\x45\x15\x6c\xba\x83\x1c\x05\x96\xfa\xab\x2e\xba\xbc\x2e\x8d\xdf\xb6\x55\xee\xe8\x55\x2a\x99\xfb\x9c\x72\xb8\x57\x97\xcf\xcc\x8f\x37\x25\xe8\xcf\xfd\x9e\x42\x27\x64\xeb\x43\x77\x65\xac\x76\x10\xee\x2d\xfe\x25\x9b\x26\x93\x6e\x94\x1b\x9b\x10\x87\x8c\xef\x8a\xcf\x0b\x92\xc7\xa5\xae\x37\x0b\x15\xd5\x04\x65\xcb\x8e\xb0\xed\x36\x44\x39\xee\x16\xec\x12\xe6\xc5\x86\xef\xda\xed\x31\x01\x98\x70\x50\x1a\x00\x15\xd4\x79\x51\xf6\x11\xfd\x65\x79\x6a\x77\x90\x40\x25\x9d\x72\xcc\xbb\xcf\x67\x47\x70\x60\xfe\xbd\xef\xeb\x68\xc6\xb7\xe5\x8f\xe4\x1d\xde\xd3\xf3\xe2\x65\xf1\x63\x52\xdf\x8e\x6e\x34\x3d\x1f\x0b\x7f\x4f\x0e\x9a\xf3\xe2\x18\xcb\xa7\x84\xb2\x39\x3a\x23\xfd\x1d\x75\x0a\x2b\xa8\xc2\x79\x3a\x33\x50\x0b\xdc\x92\xf1\x2c\x31\x9e\x82\x1b\x0e\x57\xf8\xa5\x79\x57\x4e\xf6\xcb\x4e\xcb\x6b\x8c\x42\x64\x4d\xa9\x85\xaf\x22\xef\x63\xb4\xdb\xef\x95\xec\xa8\xa3\xee\x6f\x18\x6b\x51\xfe\x60\x5b\x6e\x82\x17\xf4\x4b\x25\x85\xcc\x93\x1e\x34\x27\xcb\xb1\xc9\xa9\xd4\x8b\xbc\xb2\x9a\xd2\x37\xfb\x02\x9a\x00\xc5\x02\x1b\x62\xbf\xf9\xbc\x08\x31\xd9\x9f\x17\x3b\xcf\x33\xc3\xc6\x7e\x7b\x2f\x9b\xb5\x49\xc8\xef\xf4\x1d\x5d\x8d\x8c\xfc\x3b\x6b\x4c\x00\x39\xd8\x20\x4f\xd1\xd6\x95\x99\x63\xe7\x5b\x8d\x53\x54\xd0\x2f\xfa\x4a\xbf\xad\x45\xb5\x7f\x14\xb3\x29\x50\x65\x0f\xc7\x68\xe0\x77\x3c\x2b\xc8\xe9\x49\x63\x64\x98\x8e\x9b\xf2\xf1\xe0\xf3\xf6\xbd\xb9\xc0\xa3\xe5\x6c\xf0\x42\xa2\x0a\xb7\x40\x62\xf2\xfb\x52\x43\xba\x3a\xf9\xb7\xe1\xe6\xce\x91\xeb\x99\x84\xbd\xef\x86\xbf\xaa\x80\x3c\xb8\x04\x5e\x59\x79\x04\x28\xa7\x44\x81\x11\xb1\xea\xc6\x74\x8b\x45\x0c\x00\xa8\x7c\xf6\xbb\x78\x7b\x3c\xa8\x65\xc6\x8f\x0b\xf2\x75\xf9\xc5\x48\x36\x25\xa3\xbc\x49\xf6\xda\x13\xbf\xf6\x59\x28\x93\x21\x79\x42\x82\xa4\x9e\x4e\x85\x9b\x27\x57\x35\xc0\x5a\x59\xeb\x43\xa8\x8f\xb5\xac\xb2\x75\x90\x92\x30\xf3\xfa\x2b\xd4\x76\xf5\x79\x8e\xf2\xf6\x48\x7e\xf6\xc4\x07\x1f\x00\xb8\xcb\xa3\xf2\xfd\xae\xf4\xae\x18\x9d\x7d\x11\x9f\x4a\x27\xd1\xc5\xa1\xaf\x6c\x00\x94\x94\xd3\xc5\x8d\x85\xcd\x9f\xb8\xe1\x6e\xc6\x0a\x2f\x59\xc8\x6b\xc2\xec\x86\xa3\xbc\xed\x5e\x51\x2e\xd3\x41\x01\x04\xce\xc0\x36\xf8\x45\x92\x7a\x92\x3f\x5d\x19\x06\xb9\x5e\x5b\x27\x2d\x64\xf0\x30\x11\xbe\xd9\x45\x53\x1f\xcc\x44\xcf\x1d\x2f\xf7\x90\x0d\xc4\x5f\xf4\x78\xe8\x8f\x52\xdc\xfb\xf7\x33\x21\x32\xde\xfd\xab\xf8\x28\x84\x88\x25\x32\x1e\xf2\x2d\xa8\x96\xe0\xbc\x2d\x9b\x08\x9a\x0f\xf7\xe0\x53\x77\x94\x6a\x7a\x3b\xfc\xd5\xc9\x0a\x84\x98\xf9\x70\x10\xf9\x77\x31\x1d\x27\x2b\x21\xf8\xcd\xc7\x84\xbe\xd8\x11\x2d\x61\x32\xc4\x54\x7c\x45\xc1\x79\x9f\x72\xc9\x86\xc9\x2c\x81\x61\x96\x2d\x04\xe4\xc3\x8d\x73\x23\x0e\xf2\xb3\x0e\x72\xdd\xe9\x4b\xe7\x0e\xb2\xf2\x71\x49\x66\xd4\xf4\x3b\xdb\xd1\x56\xcb\x1f\xa8\xd2\x23\xea\x55\x46\x7a\x3a\x0e\x3a\x0d\x5f\x78\x67\x93\xf0\x24\xc9\xe8\x96\xa6\xc4\x16\x1d\xce\xc9\x2b\x38\xcd\x46\x29\x40\x73\x6b\xa2\xcf\xd5\x2d\x70\xfb\xa2\xd3\xc6\x99\x3f\xbb\x11\xfc\xa1\xf7\xca\x1c\x7e\xd8\x42\xe9\xed\x4a\x7d\x21\x29\x5e\xa2\x0f\x17\x39\xc8\x57\xaf\xea\x0c\xf7\x3e\xd5\x44\x7f\x53\xfb\x2a\xe2\x1f\x6e\xa5\xbd\x79\xa9\x87\x8f\x9a\x66\xd1\x88\xd4\xd2\xde\x48\x89\x63\x0b\x49\x4a\xb8\xb1\x73\x4e\xf2\x7b\x05\x27\x6c\x1f\x57\x72\x5f\x7a\x74\x7d\xdb\x6c\xdf\xa7\x0a\x4c\x07\x6e\x3f\x0b\xda\x17\xdf\xfb\x09\x99\xf3\xb0\xe5\xa2\x45\x97\xc4\xdf\xbd\xb0\xab\x03\xf3\x66\xfc\x56\xff\x86\xa9\x0c\x0f\xfe\x05\x32\x82\xcd\x19\xad\x0c\x56\x4f\x7c\x4f\x64\x41\x59\xa3\xe0\xb9\xef\xe7\xfa\x72\x0e\x77\x4f\x26\x8f\x96\xcb\x70\x9a\x14\xf1\x09\x91\xe7\x22\x2e\xcc\x6f\xf1\x18\xd5\xa1\x77\x60\x08\xec\xd3\xd9\x54\x2e\x58\x44\xb2\x50\x80\x1d\xdf\xa2\xa5\x35\x61\x72\xe3\x30\x84\xa9\x9e\x65\x19\x25\x3d\x7c\x2e\x7a\x92\x42\xa2\x86\xe0\x80\xa7\x93\xc5\x06\xbf\xbc\xfe\x43\x4e\x1e\x53\x6b\xe3\x07\x0e\xb6\xdb\xa3\x30\x73\x01\xfe\xc7\x87\xd8\x5e\xf2\x98\xfd\x12\xd5\x0b\xcf\xf8\xbb\x54\x93\x67\x95\x3f\xaa\x4f\xeb\x16\x5b\xd5\xf6\x83\xcd\x93\xe3\x72\x0c\x66\x7b\x63\xa0\xd3\x7d\x92\x54\xa6\x47\x01\x1b\x61\x6d\x68\x1c\x8e\x8e\x1f\x67\x81\xc1\x5d\xfe\x8c\x5b\x22\x18\x3c\x49\x7f\x7d\xe5\x22\x9e\xb8\xfa\xcd\x57\x3a\x4a\x0e\x3d\x06\x7f\x77\x52\xcd\x40\xb4\x4c\x7e\x36\x04\xbe\xb8\x27\x12\x87\x5e\x45\xd4\xcf\xe7\x7a\xb3\x70\x7c\xab\x0d\x02\x06\x64\x2b\x24\xbb\x68\x58\x04\xf5\x52\xd0\xe5\x78\xe2\x78\x05\xc9\xa5\x4c\xc6\x68\x6f\xd3\x03\x5c\x18\x9e\x59\x25\x4c\x88\xca\xf7\xb1\x8e\x18\x2d\x95\xb4\x53\x66\xf3\xdc\xe4\x44\xcc\x66\x77\xd1\x74\x62\xb3\x4a\x12\x83\x71\x95\x7f\x6c\x07\x39\xc2\xec\xf2\x7c\x0c\xeb\xa1\xfb\x6b\xf7\x8b\x22\xd2\x55\xee\xb5\x95\xee\x2e\xd5\xa4\x65\x33\x99\x79\xbb\xf5\xde\x76\xf5\xdd\x76\x96\xa5\x22\xa9\x2d\x85\x29\x5a\x22\x4a\x4a\x4d\x4c\x52\x2f\x0c\x72\xbd\x80\x30\x22\xfa\xf8\x58\x78\xc2\xcb\x3b\x58\x43\x5a\xc4\x4e\xcf\x3e\x9e\x4a\xb9\x18\x0d\x6d\xaa\xc1\xa5\xa0\x70\xc9\xb2\x96\xa0\x00\x20\x84\xe0\x24\x34\xfd\xa5\x1f\x39\xad\xa2\x16\x49\x8d\x0a\x9b\x0f\x20\x50\x42\x9d\x5c\x5c\xdc\xbe\xa5\x0b\xa5\xa9\x01\x4b\xf4\xac\x29\xd1\x05\x13\x08\x0c\xcc\x6b\x07\xef\xf1\xb9\x1f\xe1\xda\xfe\xc9\x17\xea\x45\x1a\xa7\x27\xe7\x8f\x01\x01\xb5\x52\xa3\xdd\x06\x6a\x1d\xb6\xe6\x69\xf8\x84\xe2\x2a\x94\x53\xf5\xac\xdd\xc3\xb4\x43\x46\x86\x9f\x0f\xce\xf3\xd7\xd5\x5f\xee\xf4\x67\x1e\xb5\x79\x6c\x95\xf9\x58\xbe\xfa\xf1\xb5\x46\x9f\x7d\x27\x38\x6f\x30\x67\xc2\xc1\x78\xe1\xe9\x87\x2d\xb7\xa9\x81\x05\xae\xe4\x67\x75\xbc\x02\xeb\x1f\xda\x92\x79\xb1\x8d\xd3\xaa\xf7\xd4\x4d\x99\x3b\x51\x53\xa6\x8a\x6e\x30\xf2\x3b\xd8\x29\xde\xfe\xc9\xee\xbd\x1b\xc4\x11\x31\xab\x9c\xc7\xb9\xaa\x31\x56\xd2\xfc\x79\x65\x3f\x42\x0e\x9e\x97\x5d\x3f\xd7\x3f\xa9\x95\x96\xd4\x23\x04\x28\xc8\x78\x4e\xd3\x31\x2c\x66\xea\x43\x37\x3e\xa7\x85\xa6\x98\x99\x86\x52\x49\x5f\x47\xe5\xb2\x0d\x7a\xc4\x51\xed\xe1\x7e\xd8\x8a\x0e\x72\x93\xf4\x9c\x66\x6a\xae\x1e\x9e\xb2\xc1\x77\x16\xa9\x54\xdf\xb6\x9d\x65\x41\xaf\x30\xb3\x81\xe0\x61\x14\x7d\xb0\xf4\xa2\x04\x28\xed\x93\x5a\xe8\xaf\xbe\x72\x92\xd4\x7f\xdc\x15\x4f\xe3\x65\xae\x76\xc2\xf6\xde\x8c\xb9\x21\x11\x85\x77\x21\xe4\xef\xb0\x5b\x36\xce\x73\x7d\xec\xda\x65\xf8\xc9\x31\x23\x5f\x9f\x3b\x16\x5a\x75\xdb\x6a\x56\x7b\x04\x1e\x63\xd7\xb0\xf4\x72\x0d\xd9\xd0\x47\xa9\xb6\xac\xaf\xf4\x98\xfc\x0d\x06\x66\xa7\xac\xf9\xca\xb3\x91\x89\xc0\xad\xc4\x9f\x16\xe8\xaf\xae\x74\x34\xe8\xcd\xdb\x9a\xee\xfa\x43\x65\x07\x69\x64\xca\xbe\x5e\xa5\x50\xd6\x8d\x54\xaa\x36\xc0\x2a\x4a\x47\x0a\xaa\x22\xf9\xc1\x92\x23\x70\x9f\x87\xe1\xd8\xa6\x44\x93\xb1\x23\x0a\x5c\x58\xe2\x80\x3c\x87\xe8\xd8\xe4\x9c\x13\x2e\xee\x73\xa8\xca\xe8\x91\x81\x4d\x41\x64\x2f\x19\x6c\x54\x40\x92\x80\x81\x79\xd0\xc3\x8a\xa9\x8c\x34\xc9\x61\xd5\xc5\x01\xc4\x86\x09\xa4\xb1\xfa\x99\xb4\x52\xac\xd1\xae\x78\xed\x69\xa9\x4d\xcc\xbe\x47\x1e\xe3\x28\xe5\xf0\xb9\x0c\x30\x04\xd3\xdb\xce\xb4\xe8\xb8\xe3\x57\xad\xcb\x0b\xd7\x1c\x8c\xe0\xa7\x40\xdf\x2b\xb0\x96\xf0\x94\x09\x4f\x4a\x78\xed\x25\x3d\xe6\x5c\x7d\x06\xf3\x18\xa1\xd6\xb8\x88\x7a\x84\x82\xb7\x05\xdc\xdd\x05\x42\x69\xe9\x71\x98\xf3\x38\x0b\x36\xb7\x02\x45\xb1\xf4\xe1\xd1\xdb\xdf\xa8\xa5\x18\x45\xb3\xa7\xf7\x1d\x46\x5f\x04\x2a\x1d\xdd\x5a\x0c\xf1\x82\x48\x6e\x5f\x61\x3b\xb2\x6a\x51\x80\xed\xcb\x12\xd9\xab\xad\xa5\x87\xbc\xd0\x90\xc2\xac\x90\xc7\xb8\x83\xd8\x94\x02\x50\xb2\x01\x66\x62\x5a\x31\xa2\xd0\x92\x66\x8f\x1e\x62\x9b\x51\xc7\xed\x67\x10\x40\x9c\x25\x3e\x6e\x7d\x4b\xcb\xd2\x37\x66\xf0\x99\xde\x42\x16\x0f\xc3\x24\xcc\xc7\x87\x3c\xa4\x50\x43\x0d\xe7\x43\xde\x38\x43\x61\xb0\xfd\xc4\x3f\xf1\x34\xd0\x26\x89\xcc\xf6\xd3\x63\x6f\x24\x8e\x83\xaf\x98\x07\x13\xf1\xe2\x63\x8d\x00\x86\x92\xa0\x37\xf5\xcf\xf7\x2d\xfd\x4b\x51\x32\xa6\x48\x63\x45\x9b\xee\x70\xed\xb0\x91\x2f\x17\x65\x8c\x48\x1a\xc1\x74\xb8\x57\xeb\xba\xd0\x32\x61\x37\x62\xb6\x87\xd6\xb1\x8e\x2f\xfc\x9b\xc2\x78\xad\xb1\xe3\x97\x5c\xa1\x50\x41\x69\x15\x5d\x8c\x82\xbe\xa6\x9f\x02\x1a\xd8\xe6\x72\x8a\xab\x2b\xd1\xaf\xa0\x0f\x19\x94\xb4\x66\x09\xcf\xf7\xff\x52\x7a\x4c\xbf\xb1\x8c\xd3\xdf\xa0\x4a\xbc\x45\x0b\x9d\x5f\x3a\x6a\x85\x00\x82\xf9\xbc\xee\x5e\x5d\x18\x52\xa8\xd8\xbe\x6f\xdb\x9b\xf4\x67\x7a\x48\xef\x7f\xa2\x42\xf3\x7b\x50\x63\x65\x3e\x73\x1a\x25\x1d\xac\xd8\xa9\xce\xb8\x30\xcc\xfe\x4d\x5f\x51\x01\xef\xbf\x93\x99\xee\x7d\xc1\x68\x1b\x1b\xc9\x6e\x3e\xac\x5a\x14\xd6\x86\xd2\xa1\x50\x2d\x84\x45\x4a\x11\xb2\x0c\xc4\xa4\xfe\x0c\x16\xc2\x3e\xde\x2a\xca\x68\x21\x4c\xb3\x17\x12\x36\x48\xfa\xb0\x96\xac\xe9\x2c\xf6\x93\xe0\x2a\x6a\xb7\x8e\x74\x67\x39\xff\x91\xb9\xcf\x51\x2d\x04\x1e\xc5\x20\x2f\x42\x3e\x58\xef\xb0\x74\x70\x6d\x24\xb1\x6d\xc2\x40\xee\x75\xdf\xdc\xfb\xd0\x8e\xaa\x0f\x21\xc7\x9a\x80\x21\xeb\x83\x0a\x9c\x9b\x65\xd3\x4b\x90\x5c\x86\xf6\x43\x65\xbe\x98\x7f\x8f\x4b\x09\x78\x76\x00\xd1\x7b\x8c\x8a\xcd\xbd\x88\x8d\xff\xc2\xea\x76\xa5\xb4\x6f\xd8\x9e\xa5\xf9\x85\x69\x24\x04\x44\x01\x8f\x27\x90\x8a\x0b\xa0\xc6\xec\xef\xc2\x4c\x18\x29\xbd\xd2\x7f\xa3\xfd\x59\x92\xa5\x9e\x0b\xa5\x64\x97\x4f\x7a\xed\xbf\xed\xba\x7a\x7f\x5d\x7e\x5b\x5d\xd1\x2b\x19\x04\x77\x4c\x22\x33\xc9\x82\xea\xa4\xd8\x8a\x7b\x44\x3c\x30\x7f\x61\xed\xfe\xbe\xdd\xb5\xd0\x95\x15\x0a\xa0\xbe\x9c\xcd\xab\xba\xb2\xec\xeb\xbd\x0f\x9a\x80\xc8\x62\x31\xaf\x92\x4e\xbe\xbd\x64\xdf\x57\xf9\xe3\x1c\x29\x60\xfc\x3e\x49\xba\x59\xb2\xbb\x58\x6f\xb8\x0f\xfc\xf3\xab\x96\x57\x1f\x94\x63\xc7\x37\x53\xcb\x05\x96\xea\x2c\x86\x7d\x9e\x1e\x4e\x2c\xab\x2d\x6d\x4f\x61\xf1\x94\xa9\x5d\x44\xe5\xb1\xb2\x5b\x4a\xb8\x5d\x43\x29\x2e\xe9\xf0\x75\xaa\xf7\xea\xeb\x8f\x61\x93\xc2\x95\xec\xc5\x25\xb4\xfa\x99\x8a\x3c\x05\xc9\x68\xfd\xc9\xb7\xde\x6c\x84\x0d\x0c\x16\xc5\x8a\xc7\x8f\xd3\x9c\x09\xb7\xe2\x3f\xa9\x7d\xa6\x9e\xe0\x1e\x99\xfb\x84\xd8\xf6\x78\x96\xd7\x1d\xf8\xda\xef\xf6\x26\x7c\x50\xf0\xa6\x85\x72\x7f\x1e\x5d\x7d\x32\xa3\x18\x9b\x76\xc3\x3e\xec\xad\xbb\x7b\x94\xb2\x79\x61\x7b\xb0\x98\xbc\x90\xdc\x41\xb4\x10\x12\xa9\x18\xe0\x68\x85\xe9\xc1\x45\xc6\xd1\xe1\xe2\x58\x75\xb3\xd6\xb0\xd3\x47\x54\x6e\x1c\xe2\x8d\x17\x54\xf6\x5c\x99\x4d\xe4\x75\x73\x04\x07\x8f\x18\xb3\x41\x5c\xf9\xf1\x0d\xb9\x49\x35\x5f\xe5\xbb\x10\x1f\x81\xa0\xdf\x82\xfc\xc3\xf5\x50\xfd\x85\x6e\x50\x51\xda\xd8\x58\xb0\x7d\xc7\xd5\x0e\xf5\xe1\xbb\xa3\x15\x24\x1b\xce\x33\x94\x40\x3b\x64\x4f\x29\x8b\x68\xa5\xab\x34\x1c\xc5\xb5\x34\x21\x9a\x03\xb0\x1d\xfd\xda\x8a\xfd\xfd\x4c\x0f\x69\xc3\xf5\x4a\x7a\x1b\x05\x49\x31\x63\xf9\xc4\xd7\x1c\x68\xa4\x9c\xb4\xcb\xac\xbb\x3d\x45\x29\x2e\x39\x0f\xe4\xd3\xca\x5a\xda\xe4\xdd\x1d\xa3\x5a\xc7\x23\xc0\xcd\x5e\xe7\x41\xf3\x89\xb6\xb1\xd8\xe6\x76\x77\x60\xa2\x43\xf7\xb7\xa0\xf4\x79\x98\xd4\x7b\x98\x19\xaa\xbf\x68\xb5\x29\x6e\x9b\xdc\x13\xb4\x06\xee\xe4\x47\x1f\x8e\x09\xce\x75\x9f\x37\x34\x87\x8c\x10\xde\xf5\x0c\x5a\xd2\x7e\xd4\xee\x47\x9b\xb0\x81\x0d\x8a\xc5\xa8\x19\xf4\xe2\x33\x42\xfd\x06\x8d\x88\x19\xe5\x71\x28\x71\xe8\x79\xaf\xd7\x31\x01\x7c\x06\xe2\x98\x83\x7f\x89\x43\x39\x2f\xff\x12\xe7\x2e\xbc\x0c\x70\x86\x33\xeb\x7e\x10\x83\x77\x14\x79\x3b\x72\xd5\x02\x06\x66\xb3\xab\xc8\x68\xaa\xaa\x79\xce\xff\xb6\x51\xfb\xad\x31\x60\xfc\x16\xa3\x15\xd2\xc1\x56\x27\xcf\x55\xcc\xe1\xf3\xe6\xba\xcc\x3f\x55\x0e\x7f\xa3\x28\x4d\x8e\xc7\x09\x4b\x9a\xec\x82\x86\x03\xce\x83\xbd\x08\x38\x59\x75\x7e\x96\x4d\x7e\x64\x2f\x95\x4b\x1a\x1b\xb7\x8e\x3d\xa5\xcc\x00\xc0\xbd\x42\x57\xab\x1e\xf6\x79\x91\xc9\xb2\x7b\xbe\xdb\x59\x95\x18\x49\xbb\x48\x86\xd7\xbd\x54\x1c\xc8\x60\x4f\x41\xce\xfe\xd7\x95\x58\x74\x73\x49\x5d\xb9\x65\xee\x5b\x1f\x15\x43\x98\xc2\x65\x3a\x62\x56\xee\x58\x96\xa2\x8d\x1c\x5e\xd1\xc3\x96\xd2\x59\x0b\x31\xa2\x2e\x1c\xc8\xbb\x7e\x8a\x3d\x51\xda\x09\x15\xa1\x59\x62\xf0\xf1\x63\x6c\x7e\xff\x99\x1d\xb9\xaf\x34\xda\x17\xe0\xc9\x49\xff\xae\xd4\x4b\x11\x8f\x1d\x86\xbd\x76\x47\x0e\x4f\xd3\x87\xfa\x15\xe0\x72\x73\x14\xf9\x51\x1b\xfc\x4e\xfc\x45\x5b\x6d\xc1\x29\x12\xcc\x7d\x81\x76\x3d\x50\xb3\x44\x41\x50\x3f\xbb\x9b\xe1\xc2\xac\x89\x8f\xc3\x61\x48\x78\xa8\x79\x61\x80\x43\x31\xaa\x22\xd9\x78\x91\xf8\x9d\x4e\xa4\x8d\xb7\x52\xc8\xdb\x8d\xd6\xcf\x99\x93\x9e\x19\xdc\x67\x25\x62\xa1\x4e\xc2\x15\x70\xe3\x9e\x95\x1f\x7c\x01\x8e\xe9\x0a\xe4\xa1\x14\x19\xf3\x75\x34\xda\x34\x14\xaf\xcd\xe0\xf3\x71\xa3\x6d\xbd\x4f\x5c\xea\x4d\x8e\x1f\xa5\x09\x78\x9e\xd4\x7b\xf0\x44\x18\xde\x16\x4d\x60\xf5\x23\xe4\xc2\x0d\xfe\x80\x4e\x1a\x52\x64\x51\xcf\x12\x67\xd5\xbd\x77\x68\x3f\xc8\x24\x06\xc5\x3e\xe1\x81\x5b\x9c\x4e\x11\xcb\x97\xe2\x98\xa0\x18\x65\x8b\xc1\x51\xd1\x25\xa0\xd9\xce\x62\xbf\xfb\x77\xdb\x4b\x8f\x51\x15\xfe\x81\x1a\x57\x6e\x65\x4a\x0e\x37\xc8\x16\x4b\x40\x1f\xff\x70\xa9\xd5\x2c\x57\x37\x8a\x68\xdf\x91\xf6\xf6\xb1\xa4\x29\x91\x17\xf1\xd6\x27\x4e\xcf\x90\x99\xcf\xc6\x6a\x45\x1b\x4f\xaa\xfe\x27\x5f\x5a\xfa\xf6\x0c\x91\xe5\x84\xac\x98\xc0\x87\x85\xc1\x6f\x94\x38\x1b\xcc\x6a\x42\xa1\x84\x0c\xd9\x6b\x18\xa8\x9d\x46\xb1\xc4\x81\xb7\xdb\x6d\x76\x81\xba\x15\xd5\x08\xad\x99\x7a\x2d\xb6\xac\x75\xbb\xfc\x0d\xac\x4c\x62\xb8\x4c\xf2\x09\x00\x34\xc4\x7e\xab\x2b\x7e\x3d\x46\xd4\xc5\x9e\xff\x2a\xd2\x68\x17\xdb\x0d\x19\xde\x44\x75\x94\x93\xce\xd4\x55\xa0\x70\x41\x63\xa8\x3d\x45\xfd\xe4\x78\x29\xe1\xf7\x2f\xe2\x4f\xf3\xf3\xd4\x56\x3f\x29\x56\xc2\x62\x89\x8c\x95\x2b\x35\xe1\xca\x97\x9f\x86\xea\x29\x30\xca\xcd\x2c\x9a\x18\xd0\xd1\xcb\xb7\x2d\x3e\x53\x3f\x53\xd1\xfd\x55\xe0\xb9\x34\x4d\x2c\x62\xfc\xac\x8a\x7d\xfb\x31\xbf\xd8\x52\xa5\x17\x99\x8b\xf1\x75\xc2\xb8\xd5\xf3\x56\x14\x32\xf6\xe9\x08\x59\xfb\x8c\x19\x82\x03\xcb\x00\x3a\x27\xfb\x9a\x42\xd1\x3e\x95\x14\x21\xb6\x9d\x57\x72\xd0\x86\xb1\x16\xf5\xaa\x56\xd4\xfa\xf8\xa1\x88\xa7\x93\x21\x98\x53\x8a\xc5\xc9\xbc\xd1\xd6\xb4\xd1\x16\xab\xd1\x16\xb3\xd1\x16\x3b\x8b\x07\x69\x84\x24\x04\x5f\xb1\x5b\x83\x84\x23\x99\xb2\x8e\x11\x1c\x46\x08\x58\x41\xd8\x25\x8a\x2c\x8a\xeb\x4c\x76\xea\x2c\x8a\x43\x2c\x76\xc4\xa6\xa4\x25\x8a\x62\xa5\xe1\xa2\xc2\x90\xa4\xbe\x65\x14\xd2\x58\x4d\xaa\x27\x97\x92\xa4\x48\x3d\xf5\x63\xc4\x97\x76\x78\x98\x17\x08\x21\xfc\x5e\x46\xd3\xfc\x73\xe0\xa8\x06\x65\x25\x17\x03\x0c\xa4\x4a\x7f\x4c\xd4\xbe\x82\xcb\x19\x24\x4c\x72\xc9\xd8\xda\xd3\xd1\xb3\x0f\x93\x79\xb1\x27\xe2\xf7\x4b\x76\x32\x0a\x1d\xfe\x06\x62\x60\x5a\x61\xf6\xa3\x86\xc2\x45\xf5\x0b\x15\x56\xc7\x80\x16\xa1\x9d\x66\x80\xd6\xae\x4c\x01\x6a\x27\xd2\xef\x5e\x00\x91\x1a\x00\xa3\x86\xc4\x62\xf9\xcb\x20\x7a\x03\x3a\x72\xf5\x13\x46\xc4\xaa\xef\x6b\x06\xe2\xea\x5d\x1d\x35\x0b\x35\xdd\x69\x2c\xc1\xaf\x9d\xac\x31\x6d\x3f\xa9\x80\xdb\x6c\xe5\x39\x38\x6d\xb1\x9f\x73\x99\xa0\xd3\x30\x1b\x73\xe1\x42\x24\x6a\x2a\xa9\x6c\xc7\x67\x0f\x50\x08\xc0\x0e\xc6\xc4\x84\x86\x00\x43\x88\x09\xc1\x20\xc6\xf2\xe9\x7f\xc3\xf7\x14\x45\x59\xbc\x5f\x64\xba\xfb\xab\x5a\x09\x79\x03\xee\xa2\x25\x96\xfe\x0f\x14\x07\xeb\xf8\xff\xeb\x83\x89\xe2\x05\x8a\x83\x43\x23\x76\xd3\x42\x78\xdb\x14\x00\xc0\x57\x09\x00\xfc\x2b\xac\xbb\x66\x03\x93\x30\x73\x66\x40\x9b\x2f\x2a\xf6\x52\x42\x13\x93\x21\x93\x24\xb7\xc8\x4b\x74\x47\xa2\x28\xdb\x0b\x1f\x4c\x14\xbf\xf1\x8b\x43\xd9\xef\xad\x47\xcc\x65\x70\xef\x08\x6f\x4a\xb2\xfa\x56\x61\x5b\x15\x00\xa0\xa1\x8b\xd4\x1b\x39\xe8\xae\x48\x88\x80\xae\x45\xcc\xec\xad\x94\x76\x5d\xb2\xb1\x15\xd3\x85\xa1\x1d\x3e\x1b\xec\x3a\x58\x98\x69\x73\x49\xfd\xdd\x97\x0e\xe6\xfe\xe3\xb9\xf1\xd2\x07\x16\x61\x59\xa8\x25\xab\xfb\xc6\x05\x01\xf4\x15\xa0\x6d\xb4\xa0\x04\xde\x72\x9c\xd5\xa6\x89\x54\xbb\x39\xa8\xdd\xca\x85\xac\xb9\xa8\x4e\xc2\x61\x93\xa4\x7a\x9d\x60\x73\xa7\x81\x21\xa0\xd9\xb0\x75\xeb\xbd\xa9\xc2\xf7\x5f\x39\x90\xfb\x69\x3a\x6c\x2e\x40\x85\xa6\xc4\x4b\x55\xe2\x55\x00\x00\xe8\x2b\x40\x47\x68\x90\x4d\xc4\xaf\x05\xea\x14\x00\x00\x6c\x86\xc0\x4e\x47\xcc\xec\x8d\x41\xed\x1a\xc5\x90\x8d\x1a\x24\x21\xdb\x38\xda\xeb\x24\x9b\x3b\x01\xaa\x64\xa7\xaf\x0e\x97\x5f\x7b\xe9\x60\xf6\x3b\x57\x87\xca\x17\x6d\xcc\x32\x50\x13\xfe\x3c\xd4\x5c\x9f\x7c\x3c\xd0\xae\x0d\x8a\xdb\x31\x0a\x00\x50\x97\x48\xc1\x23\xd8\x14\xe2\x62\xf9\x4d\xc2\x8c\xb9\xa4\xbe\x74\x2b\xa9\x5f\x25\x0c\xe9\x11\x83\x24\x45\x1b\x87\xfa\x8a\xd0\x1c\xba\x40\x8b\xb7\x92\xfa\x99\x57\xf7\xe7\xbe\xf3\xde\x54\xe1\x6d\x55\xa2\xab\x50\x11\xfa\x2c\xd4\x14\xa0\x08\xf5\x5c\x3d\x2e\xce\xce\xdd\x34\xfa\x03\xec\x30\x05\x70\xe0\xc9\x26\xf2\x32\x51\x7b\x67\x02\x0b\x3c\x29\x76\x65\x89\x96\x6f\x0c\x94\x67\x96\x63\xc6\x0d\x81\x21\x33\x6c\xe2\xb8\x60\x63\xa5\xaf\x08\xf5\x30\x08\x55\x17\x92\xfa\x87\x6f\x4d\xe7\x7f\xf0\xd6\x74\xfe\xd5\x74\xc4\x9a\x07\x04\x59\x80\x6a\x73\xb8\x7a\xbc\x54\x25\x9b\x56\xbb\x77\x2b\xb1\xa3\x05\xc2\xa7\x00\x9b\x5f\x8a\x9f\x0c\x95\x1d\x64\x67\x17\xd9\x69\x51\x00\x88\x60\x86\xa2\x93\x39\x79\xf2\x9e\xc5\xc8\x89\xa9\xac\x7c\x3c\x6c\x92\x14\x62\x7d\x8f\x91\x2e\xd0\xe2\x72\xcc\xb8\x72\x71\x44\x3d\x7d\x75\x58\xbd\x66\x10\xe6\x14\x24\x77\x46\x79\x3f\x9a\x12\xde\xed\xe9\x8a\x05\xda\x8d\xc2\x0f\xb0\xc3\x15\x00\xc0\x57\x09\xf8\x30\x65\x6f\x38\x30\xaf\x08\x61\xe0\x14\x02\x33\x14\x19\x2b\x48\xe3\x47\x97\xc3\xf7\xec\xcd\x28\xf7\xc4\x35\x32\xba\x43\x36\xd2\xb6\x0c\x0c\x01\x2d\x8b\x76\x76\x31\x6e\x5c\xba\x38\x52\x3a\x73\x73\x40\x9b\x31\x09\x73\xd8\x97\xbd\x42\xef\x8c\xf6\x7e\x19\x73\xae\x78\xa7\xdd\x2a\xfc\x00\xbb\x40\x01\x1c\x34\x98\x0d\x1c\x45\x70\xa2\x25\x9d\xa4\xef\x10\x54\x94\xc0\x51\x04\xe7\x38\x9c\x52\x85\xc1\x23\xab\xe1\xbb\xa6\xd3\xca\xb1\x41\x55\xdc\x2b\x59\x38\x72\x3b\x9b\x47\x16\x66\x7a\x5e\xb1\x96\x66\x53\xfa\xf9\xcb\xc3\xea\x85\xa5\xb8\xbe\x48\x51\x55\xc8\x1d\xe1\xe7\x7f\x0e\x12\x7c\xaf\xf0\xef\x4a\xb3\x87\xc7\xae\x7a\xe9\x01\xb3\x01\xaf\x08\x4e\xe8\xb0\x43\xfb\xe1\x28\x02\xaf\x0c\x4e\x8d\xb1\x90\x64\xe1\xe8\x54\x4e\x9e\x3c\xb8\x16\x3a\x3a\x9e\x97\x0e\xc7\x74\x61\x58\xb4\x6f\x8f\xbd\x04\x1b\x31\x4b\x95\x68\x66\x25\x66\x5c\xbf\x99\xd2\x2e\xde\x1c\x2c\xdf\x2c\xc8\x76\x16\x6a\x8c\x6c\x4e\x25\x1f\x95\x3b\x76\x84\xbe\x25\xb2\x80\xdd\x2e\xfc\x00\xbb\x4c\x01\x1c\x04\xcc\x06\x7e\x8a\xc0\xc7\xcf\xf3\xca\xe0\x28\x84\xf3\x9d\x12\xd3\x49\x62\x2a\xab\x4c\xed\xcd\xc8\x07\x47\x0b\xd2\xfe\xa8\x4e\x86\x76\x9b\x07\xc9\xc2\xcc\x28\x4b\x34\xbb\x16\x36\x67\xe7\x92\xda\xb5\xd9\x94\x76\x73\x3d\x62\xae\x53\xe4\x62\x5f\xf3\x6b\x8e\xe0\x1b\x50\x2f\xf8\x7e\x51\xad\xb7\x85\xf0\x03\xec\xa2\x97\xeb\x85\x47\x09\x00\x9a\x24\x86\x83\x7b\x56\xe0\x15\x42\xf1\x34\x39\xaa\x93\xf8\x78\x5e\x1e\x9d\xc8\x4b\x7b\x47\x0a\xd2\x9e\x84\x26\x8c\x29\x26\x8e\x11\x8a\xa4\x9d\xa4\x10\x36\x62\x96\x21\x30\xb5\x28\xdb\x6b\x6b\x11\xe3\xd6\x62\xdc\x98\x9d\x4f\xe8\xf3\x99\xb0\x99\xa1\xc8\x65\xc6\xf0\xb4\x83\xfc\x31\x3f\xda\x37\x1b\xf1\x6f\x9b\x51\x9f\xc7\x8e\x79\x99\x9d\xa2\x81\x59\xe4\xa5\x06\xf1\xce\x0a\xbc\x42\xf0\x8a\xc1\xff\x4e\x12\x28\x52\x52\xaa\x90\x1a\x2e\x4a\xc3\xc3\x45\x71\x6c\x50\x15\xc7\x62\xba\x30\xa4\x98\x38\x2e\xda\x48\x21\x14\x89\x5b\xa1\x14\x14\x31\xdb\x22\x4c\xd7\x05\x56\x2c\x49\x76\x26\x13\x32\x97\x56\xa3\xe6\xe2\x4a\xd4\x58\x5e\x8f\x98\xe9\xb2\x48\x4b\x50\x4f\x35\xa8\x71\x9f\x1a\xd4\xd3\x10\x7a\xa9\x08\xef\x18\xc1\x77\xb0\xeb\x15\xc0\x41\x0b\x8a\xe0\x37\x2b\x38\xeb\x05\xaf\x52\xf0\xdf\x49\xdc\xdf\x8a\x98\x81\x14\x31\x48\x24\xae\x09\xf1\x64\x59\x48\xa6\x54\x71\x30\xae\x93\x54\xd8\x20\x09\xc5\xc4\x11\xc9\x46\x11\xd1\xc6\x32\x66\x20\x60\x86\x08\x66\x40\x10\x43\xa4\xda\xd1\x8c\xeb\x73\x54\x11\x2e\x06\x8c\x51\x54\xd9\xd1\xb6\x37\x04\xdd\x24\xac\xac\x13\xaa\xaa\x92\x9d\x2b\xca\x76\x36\xaf\x58\x99\x74\xd8\x4a\x67\x42\x56\xb6\x28\x5b\x45\x93\x30\x27\x13\xcb\xe1\xd8\x74\x9a\xee\xd3\x0c\x70\xd3\xbe\x38\xcd\x4b\xff\x52\x27\xf8\x00\xb7\xaf\xf0\x57\x5e\xc1\x6d\x04\x1f\xa6\x34\xbf\xc5\xb2\x33\x2b\x38\x6b\x05\x5e\x21\x24\x70\xcf\x12\x92\xcf\xef\x44\xee\xff\xaa\x39\xc1\x84\x22\x51\xa4\x48\x0a\x99\x58\x0e\x19\x24\x24\xdb\x58\x96\x2c\x24\xcb\x16\x96\x25\x0b\xcb\x84\x01\x21\x0c\x11\x4c\x11\x41\x00\x88\x22\x46\x19\x02\x6a\x23\x66\x19\x84\x19\x86\x40\x0d\x83\x30\x5d\x17\xa8\xae\x4a\x76\x59\x13\xa8\xa6\x0b\xd4\xb0\x30\x33\x36\xca\x8c\xf2\xc4\xb2\x5e\x82\x59\x03\xdc\x64\xb3\xde\xef\x78\x81\xf7\x1b\xed\xef\x38\xc1\x77\x70\x5b\x29\x80\x83\x16\x14\xc1\x8f\x4b\xc7\xab\x10\xde\x26\x79\x7e\xe7\x97\x18\xef\x4d\x84\xf7\x63\x84\x70\xee\xa9\xae\xae\x2e\xd4\x87\x7b\xf0\x8d\x17\x5e\xb3\xc5\xd6\x88\x78\x36\xb0\xfe\xee\x9d\x20\xf8\x0e\x6e\x4b\x05\x70\xd0\x02\x77\xa6\x77\x66\xf0\x32\x33\xf0\x9b\x6d\x42\x40\xe3\x15\xc8\x7b\x2e\x2f\xc7\x4f\xab\x0a\xe0\x17\xf9\xca\x0b\x32\x3f\x13\x04\x35\x3f\x81\x6f\x48\xf7\x78\x27\x09\xbe\x83\xdb\x5a\x01\x78\x34\x99\x15\x9a\x29\x44\x10\x7d\x09\x81\xc6\xb4\x27\xed\xcc\x00\x7e\x49\x40\xbe\x21\xe0\x50\x2f\xe0\x5e\x61\xf7\x8e\xf2\x7e\x26\xce\x1d\x2d\xf8\x0e\xee\x18\x05\x70\xd0\x64\x56\x08\x52\x08\x3f\xc2\x2a\xef\x71\x33\xf6\x38\xaf\xdb\xb6\x11\x6d\x78\xc3\x8c\x38\x9f\x63\xef\x08\xdf\x94\x96\xe5\x4e\x16\x7a\x1e\x77\x9c\x02\xf0\x68\xa2\x0c\xfc\x71\x10\x15\x22\x0e\xf8\xde\x7b\x0c\x3e\x9f\x00\xc1\x4a\xe0\xa7\x0c\x8d\x3e\x83\x1a\x7f\x0d\x00\xe8\x0b\xbe\x17\x77\xb4\x02\x38\x68\x81\xc3\x3e\x68\xa6\xf0\xfb\x2e\x68\xc4\x6f\xd4\xd7\x7e\x8a\xe0\xfd\xb9\x91\x80\x37\x64\xad\xee\x0b\x7d\x30\xfa\x0a\xe0\x83\x16\x14\xa2\x9d\x4f\xef\x71\x10\x58\x87\x9f\xde\x63\x00\xe8\x0b\x7d\xab\xe8\x2b\x40\x13\x34\x28\xea\x80\xda\xfc\xd9\xfb\xbb\x20\x01\x65\x6d\xfe\x0c\x00\x7d\x81\xef\x14\x7d\x05\xe8\x00\x2d\x56\x3a\xe9\xb4\x6f\x9b\x0a\x72\x5f\xd8\x7b\x87\xbe\x02\xf4\x18\xad\x96\x01\x6a\x86\xbe\x90\xf7\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x3d\xc5\xff\x0f\xa9\x40\x1f\x73\x75\xc7\xd3\x6b\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x37\x2d\x30\x33\x2d\x33\x31\x54\x30\x30\x3a\x34\x33\x3a\x32\x33\x2b\x30\x32\x3a\x30\x30\xc3\x2e\x30\xd9\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x37\x2d\x30\x33\x2d\x33\x31\x54\x30\x30\x3a\x34\x33\x3a\x32\x33\x2b\x30\x32\x3a\x30\x30\xb2\x73\x88\x65\x00\x00\x00\x57\x7a\x54\x58\x74\x52\x61\x77\x20\x70\x72\x6f\x66\x69\x6c\x65\x20\x74\x79\x70\x65\x20\x69\x70\x74\x63\x00\x00\x78\x9c\xe3\xf2\x0c\x08\x71\x56\x28\x28\xca\x4f\xcb\xcc\x49\xe5\x52\x00\x03\x23\x0b\x2e\x63\x0b\x13\x23\x13\x4b\x93\x14\x03\x13\x20\x44\x80\x34\xc3\x64\x03\x23\xb3\x54\x20\xcb\xd8\xd4\xc8\xc4\xcc\xc4\x1c\xc4\x07\xcb\x80\x48\xa0\x4a\x2e\x00\xea\x17\x11\x74\xf2\x42\x35\x95\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x85\x3c\x99\xda\x4a\x47\x00\x00") + +func web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08Png, + "web_ui/v2/assets/android-chrome-192x192-501b0811835ea92d42937aaf9edfbe08.png", + ) +} + +func web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08Png() (*asset, error) { + bytes, err := web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/android-chrome-192x192-501b0811835ea92d42937aaf9edfbe08.png", size: 18250, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsAndroidChrome512x512707625c5eb04f602ade1f89a8868a329Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xba\xf7\x57\x13\xdf\xf7\xc6\x3b\xc1\x20\xa1\x08\xa1\x09\x0a\x52\xa4\x83\x74\xa5\x48\x49\x68\xd2\x7b\x97\x0e\x02\x22\xd2\xa4\xd7\x04\x08\x5d\x45\x69\x52\xa4\x4a\x15\x10\x90\x0e\x42\xa4\xaa\x14\xe1\x8d\x74\xe9\x4a\xe8\x84\x1e\x4a\xca\x5d\x7e\xbe\xf7\xfe\x11\x77\xcd\x9a\x35\xbf\xcc\xec\x39\x67\x9f\xd7\x7e\x9e\x73\x66\x4e\x92\x91\x81\xe6\x0d\xaa\xdb\x54\x00\x00\xdc\xd0\xd6\x52\x37\x01\x00\x32\xe0\xdf\x09\xb9\x0e\x00\xc0\x49\xc8\xe4\x25\x00\x00\x60\x77\x15\x7d\x15\x00\x68\x48\xa5\xc6\x3b\x91\x03\x00\xc0\xe5\xa2\x65\xa2\x0f\x00\x61\xfc\x00\x80\x44\x01\xc0\xbf\x5b\x90\x9b\x00\x10\x28\x01\x00\xdb\x8e\x00\xf0\x30\x1b\x00\x58\x7c\xdf\x77\x18\x2b\x02\x00\x70\xdd\x59\x57\x53\x1d\x20\xfd\x3b\x8a\xba\x2a\xd2\x01\x00\xa0\x08\xd0\xd6\xd7\xa0\x58\xbd\xc6\x09\x88\xb0\x54\x37\x0b\x48\x00\x00\x12\xd0\x56\x57\x31\x0b\x99\xdf\x25\xe0\xd2\x79\x2c\x0b\x56\x28\xa3\x96\xc3\xc5\x8a\xaf\x15\x6b\x6c\x3f\x49\xcb\xd1\xe3\xff\xa1\xf3\x19\xfc\x63\xc2\xce\xee\x41\x6d\x79\x85\x7b\x47\x75\x79\x85\xa7\x5b\x87\x7b\xde\xaf\x4e\x05\xcf\x16\x77\x17\xf7\xe0\x16\x77\xdc\x31\xe1\x86\xa5\x4b\x90\x7b\x70\x4b\x90\x9b\xc0\xf4\xae\x1b\x0e\xf3\x58\x6f\x34\xf3\x6e\x8a\x94\x50\xda\x13\x37\xa9\x66\xc8\x9d\x68\x64\xfc\x30\x6e\x89\x00\xc8\xf5\xae\xfa\x52\x40\xdf\xc2\xe1\xfd\x57\xd9\xa1\x64\xc5\x6f\x88\xec\xaf\x71\x53\xcb\xe2\x48\x38\x17\x14\x02\x26\x8b\xfe\xff\xc7\x85\x07\x7c\xfb\x8c\x12\x02\x8e\xe9\x3b\xc6\xe4\xf9\x28\x9f\xba\x9f\xbb\xc3\xae\x6e\x71\x9e\x3d\x04\x93\xf5\xfc\xc7\xc3\x04\x44\x3b\x82\x37\x13\xb8\x38\xaf\xab\x86\x42\x21\x83\xef\x1a\x16\x02\xc0\x31\x7e\x6b\x42\x71\x57\x95\x11\x8f\xe8\xf8\x36\xe3\x62\xb8\xa0\x2f\xc5\x3e\x7c\x6e\x87\x80\x5d\x46\x41\x71\x11\xad\xcb\x91\xf3\x85\x30\xd1\x45\x94\x0c\x22\x19\xed\x75\x37\xe3\x5a\xb4\x63\x1b\x84\x1c\xce\x25\xc7\xa5\x44\x15\x1e\xf0\x1d\x7b\xe7\x0c\x1b\x26\x9f\xd0\x07\x39\xb3\xef\x9e\xd9\x59\x3e\x7d\x41\xab\x2a\x09\x85\xbc\x86\x14\x03\x10\xf0\x9d\x4d\x95\xd9\x60\xc6\x95\x4d\x60\x8c\xee\xa8\xd3\xd8\x21\xf8\xd2\xba\x4e\x35\x87\xf3\x48\x1e\xd6\xef\x19\xa4\x20\x0b\x40\x75\xa2\xe1\x12\x10\x14\x19\x17\xf4\xfe\xe6\xdd\xdd\x4e\xeb\xd5\xca\x04\x6c\x71\x22\xf6\xf4\x52\x61\xb1\x7b\x66\xcb\x96\x70\x72\xf7\x3d\xdd\x51\x48\x36\x3a\x5a\x6c\xac\xaf\xdb\xfb\x2e\x13\x59\xf4\xca\x16\x3d\x15\x72\x65\xf6\x05\x10\xbd\xac\x5f\x49\xc1\x19\x3b\xd6\xd7\xbd\x7f\x1a\xee\x54\x37\xb7\x45\x7f\xb7\xfb\x2c\x91\xe1\xf3\x22\x38\xfc\xe0\x42\xa5\x9b\xe5\xf4\x01\xdc\x9d\xbc\xe4\xd7\x45\x0b\x77\x06\x59\xf4\x8a\x23\x84\x1c\xee\xfb\x7c\x93\xeb\xe0\x03\xca\x5d\x96\x9b\x93\xaf\xbf\x8f\x36\x62\xbc\x90\x31\xde\x68\x81\xff\xf3\xb6\x73\x89\x91\xba\x19\xcb\xb0\x24\x9b\x88\x64\xc2\xa6\x94\x86\x14\x26\x11\x1a\xcf\x3b\xa2\xf2\x4c\x91\x61\x64\x27\x35\x91\x27\x46\x5e\x2b\x9b\x67\x24\xda\x3f\x1e\xf9\x02\x9c\xc1\xf3\x93\x95\x6c\x08\x1a\xcc\xb6\xec\xc2\xe4\x37\xc3\xb7\x20\xf3\xc4\x6d\xf2\xc9\xb3\xc7\x0c\xfe\xb6\xbd\x55\xfa\x6d\x9e\x8c\x8f\x44\x93\xda\xe3\x47\x04\x07\xde\xab\x74\xd6\xe3\x38\x17\xa3\x96\xf6\x90\x62\x63\xc5\xc3\xc7\xfc\xaa\xb7\xa0\x90\x0e\x1e\x26\xa0\x47\x9d\x91\xfb\x24\x9c\xfe\x3c\x81\x79\xdf\x69\xcc\x86\x83\x99\x25\xbd\x54\x23\xa3\x54\xa3\xa9\x4d\xbf\xe9\x25\x77\x59\x7a\xd6\xfd\xb2\x36\x41\x6e\x53\x26\x01\x9a\x01\x3e\x7b\x04\x2f\x0d\x9f\x44\x82\x1c\x46\xf0\xf5\xad\x64\x17\xe0\x8e\x9f\x11\x80\xe4\x02\x68\xd8\x21\x40\x2f\x80\x34\x26\x9c\x76\x61\x5d\x96\x49\xd4\x46\x2c\x3f\x5f\x7e\x28\x7f\xf3\x09\x71\xe3\x2b\x20\x77\x0d\x2c\x46\x51\x2f\x4f\x96\x70\xcd\x8a\xc6\x2f\x96\x5b\x82\x75\xed\x41\xfc\x57\xc7\xec\x19\xdb\x91\x61\x31\x0c\x9f\x8d\x33\x9f\xa9\x73\x5c\x6e\xaf\x0e\xdf\xa8\xe8\xd4\x13\xb7\x5c\xa9\x46\x91\x64\x4f\x4b\x66\xcc\x2c\xc3\x07\x40\x94\x64\x38\xeb\x92\xd1\x0b\xc5\x73\xc0\xdd\xb1\xd1\x24\xc9\xf3\x2f\x49\x46\x10\x70\x4c\x10\x8a\x8c\x2b\x5b\x30\xac\xe9\x48\xc1\xfa\x64\x09\xd7\x7b\xef\x4c\x22\x7a\x29\x42\x4c\x52\x1d\xa2\x96\xed\xcb\xf5\x31\xb6\xec\xa5\xd0\x96\xb6\x69\xf2\x80\x57\x9a\x56\xce\x93\xc7\xc1\x5a\x16\x81\x87\x2f\x55\xff\x6b\x52\xff\xaf\xa9\x7f\xfc\xbe\x93\x60\x8a\xbc\x8e\x23\xad\x24\x60\x04\x45\xbe\x94\xd3\x3a\x9d\xd1\x00\x87\x92\x28\x28\x62\xce\x48\x63\x2b\x61\x97\x1a\xa6\x45\x2f\x80\xeb\x57\x43\x64\xeb\x00\x3b\xd2\x94\x76\x85\x8c\x2c\x8f\x5b\x42\x1e\x39\xb0\x43\xa5\x9a\xe3\x6c\x5f\x9a\xc8\xc2\xde\xeb\xdf\xd2\x1f\x44\x93\xe3\xf5\xce\xbc\xc3\x74\x72\x31\x42\xa3\xb8\x39\x66\x7f\x92\x26\x47\x9e\x06\x54\x96\x2d\x9d\x2c\x1f\x28\x59\xb1\x62\xfa\x68\xc5\x31\xb9\xd7\x49\x0d\xf2\x2f\xbb\xb7\x21\xe4\x70\x89\xb3\x13\xc7\xf5\x60\xc6\xf3\x7c\x70\xe4\x41\xbb\xc0\x66\x92\xea\xdb\xd2\x36\x2b\x9d\x59\x75\xdd\x5b\x26\x8a\x2e\x3a\x39\x2f\xb9\x45\x07\xbc\x3e\xd7\x74\x84\x68\xfb\xfd\xc7\xe0\xf4\xf4\xb5\x6f\xc6\x23\xf6\x00\x70\x11\xcf\x6b\x33\xf0\x0d\xd0\x58\x0f\xe3\x01\x64\xf0\xb8\x71\x93\xd2\x04\x63\xca\x2a\x48\xb1\xef\x0b\xbe\xa9\x66\xe4\x9a\xf8\x4e\x10\xd3\x49\x8b\xb1\x11\x5b\x55\xc8\xea\x6f\xf9\x48\xb5\xf8\x7d\x67\xff\x91\x4a\x70\xca\x45\xb6\x4d\x95\xd0\x64\x90\x44\xb0\x57\x52\xfb\x8d\x32\xa4\x4a\xa7\xc9\x78\x8a\x33\x30\xde\x59\x51\xf4\x2f\x73\xdf\x32\xfd\xfe\x15\x55\x2c\x15\xa1\x8f\x2a\x9c\x0c\xb0\x0a\x6c\x28\x95\xb7\x7a\xad\xa0\xae\xcf\x66\x12\xf1\x91\xdf\xd5\x24\xeb\x7e\x9e\xc4\x8f\xcf\xfb\x6b\xcc\x03\x03\xba\x52\x6a\xc3\xa8\x62\xeb\x11\xee\x24\xb9\x64\x6e\x40\x88\x6b\x25\x76\x23\x98\x7d\xe5\x15\x62\x3b\x4b\x99\x6c\x08\xc4\x6e\x4f\x27\xce\x64\x3b\x22\xfb\xbc\xd7\x42\x34\xa9\xd6\xc2\xfc\xb2\xad\xf2\xbf\xd3\x34\x0c\x86\xba\xc3\xe6\x63\xe5\xe4\xfd\x27\xcf\xd8\xa4\xfc\x55\x33\x62\x24\xc8\xb9\x87\x4c\x01\xe8\x27\x26\x70\xe1\x35\xa4\xd1\x75\xf0\xb7\x94\x3f\x2d\xdc\x94\x83\xd9\x62\xaa\x68\x16\x11\xf4\x68\x2e\x9d\xbc\xd6\x08\xff\x8b\x5e\xfe\x67\x13\xbc\x0d\xcf\xf5\x0d\x2a\xf4\x3d\xf8\xbd\xb4\x2a\xd6\x64\x94\x2b\xda\xcf\x6b\xd4\x0f\x29\x7b\xb9\x53\xe4\x92\xb9\x69\x9f\x25\x32\x8b\x2b\x5b\xe6\x53\xc6\xdf\xb6\xa5\x5d\x78\x02\xd1\x11\xc3\xd8\xd0\xae\x56\x67\xf5\x73\x64\x3d\xc0\x79\x1b\xfb\xcf\x1c\x49\xca\x5a\x8e\x2f\xbe\xb0\x2e\x7b\xa4\xed\x2f\x5a\xa8\x0a\x2d\x63\x3d\x49\x7b\xb3\x09\x4b\x5d\xf1\x2f\x86\x40\x5e\x93\x3b\x7f\x60\x78\xa9\xc8\x1d\x83\x7e\x57\xda\x55\x19\x12\x99\x12\x48\x07\xf0\x62\xa0\xae\xe5\x77\xbf\x49\xc5\x67\x8c\xb0\x9a\xc8\xb8\xea\x50\x53\xa6\xbc\xff\xef\x4e\x84\x41\xd9\x79\x86\xfa\x7f\x54\x18\xc1\x58\xb9\xa7\x95\xc4\x60\x22\xc9\x66\x1c\x96\xab\xda\x5a\xf0\xf2\xfb\x8d\x64\xa7\x6f\xdc\xbb\x6f\xf9\x0e\x13\xcc\xe3\x96\x44\xaa\xf7\xff\x94\x3c\x6a\xa5\xee\x30\x9d\x4d\xe9\xcc\xec\xca\x76\x69\xcb\xee\x1c\xff\x04\x0d\x18\x12\xdf\xfc\xcb\x0d\x40\x87\x90\x2b\xd9\x5c\x32\x92\x3d\x5a\x2f\xe0\xc5\x9c\x99\xa1\xcb\xfc\xbb\x20\x24\x34\xfe\x7b\x80\xfe\xeb\xd1\x77\x99\x01\x2d\xfc\xa3\x06\x53\x7f\xd3\x29\x53\x6c\xc7\x6d\x23\x2c\xca\x37\x4b\xfb\xc7\xef\x62\x04\xe7\xbe\xb7\xb0\x14\xbe\xfd\x0f\xf9\xe0\x23\x03\x95\xd8\x6a\xb5\x8c\x13\x9d\x27\x55\xa7\xdd\xc4\xc2\x55\x78\x47\x67\x41\x8a\x42\xfb\x5e\xa9\x9d\xd8\xb3\x4f\xe4\x81\xab\xd8\x3b\x51\x71\x45\x36\xdf\x01\xb8\xe0\xb5\x18\x17\xd4\xec\x02\x98\x47\x8d\xa2\x18\xab\x84\xa3\x26\x09\x16\x1b\xaa\x72\x24\xed\x3b\xba\x56\x55\x96\x6f\x08\x0f\xe9\xb5\xf0\xd7\xf2\x8a\x6e\xe9\x8d\x0c\x8e\x7d\x14\x53\x16\x97\x0c\x60\x90\xce\x78\xc6\xbb\x41\x39\x78\xed\x27\xbd\x15\xd3\xa1\x5d\xc2\x41\x42\x79\xff\xfe\x34\x53\x58\x45\x69\x3b\x1d\xce\x79\x1f\xe3\x36\xb4\x64\x67\x68\xed\xfa\x18\x47\x7b\x9e\x19\x5d\x5f\xaf\x22\x8b\x45\x92\xe8\x01\xd4\x5d\xae\x6c\x1a\x14\x19\x17\xeb\x43\x8a\xfa\xb3\xce\x81\xc3\x24\x52\xf6\xa7\xa1\x06\xd3\x50\xaf\xa0\x72\x61\xf1\x32\xbd\x2d\xbd\x05\xfe\x0d\x73\x96\xfc\x77\x42\xca\x7c\x92\xf7\x53\xe5\x9e\xf6\xd9\x77\x16\xf9\x48\xc4\x87\x0c\x0c\x44\xf4\x71\xe3\xdf\x0a\x35\x86\x9b\xc7\x2d\x2d\xa6\xb4\xe3\x66\x7e\x4d\xcf\xf7\x09\x49\xfb\xe8\x8e\xc4\x07\x61\xe1\x66\x53\xd1\x46\xd7\xc1\x8c\xa9\x46\x00\x58\x6d\x15\xa9\x0a\xd3\x3b\x68\xb5\x3a\x37\x6a\x5d\xd2\x1e\x7c\x73\x72\xdc\x79\xd9\x1b\x61\xad\x94\x27\x59\xaa\xdb\x11\x5b\x98\x29\xf4\x50\xd4\xb8\x49\x5d\x4e\xa7\x27\x8a\xc6\x41\xa2\xc7\x17\x78\xe7\xd4\xbd\x01\x25\xce\xa6\xcd\xee\x25\xab\xfa\xdc\x0c\xc0\xed\x3f\x1e\x0c\x3b\xe7\xf2\xfc\x4b\xd3\x5e\x45\x13\xc2\x11\x63\xb0\x14\x6d\x9f\x06\x89\xbb\xcb\xc5\xaa\x80\x22\xe3\x92\x33\xe9\x80\x10\x2b\x47\x08\x82\x22\x0e\x64\x40\x9a\x14\xdf\x1e\xfe\x53\x77\x9b\xad\x59\xa1\x76\xce\x44\x59\xf6\x2b\x71\x21\xa6\x42\x3e\x1a\x51\x67\xda\x87\x89\x57\xf8\xb6\x3e\x41\x0c\x39\xcb\xb1\xb9\xae\x33\xee\x99\x54\xa7\xf5\xe4\xa2\xb8\xa5\xf4\x74\x57\xa7\x74\xf3\x1d\x35\x37\xfb\x25\x78\x85\xaf\x4a\xc5\x7b\x10\x89\x07\x80\xb8\xc2\x25\x38\x12\x5f\x19\xfb\xf2\x82\xc1\x24\x15\x5b\xbc\x53\x56\x37\x53\x6b\xd2\xe5\x6e\xd0\x73\x8f\xf6\x4a\x7b\x2d\xb6\x09\xd7\xc5\x1e\x16\xe6\xe4\x31\x68\x3c\x86\xcd\xee\xb4\xbf\x4b\x14\x12\x2b\xd9\xaf\x2b\x86\xb1\x69\xe9\xe7\x9c\x7c\x72\x79\x61\xbf\x40\x38\x59\x6a\xf2\xbb\x22\x36\x35\x68\x4a\x06\x3b\x3a\xd0\x1f\x84\x53\x84\x1d\xd2\x00\x10\x0d\xb8\xc4\xa3\x44\x7d\x13\x09\x89\xb0\xfa\x33\xd0\x7c\xfa\xc5\xdd\x38\x65\x27\xad\xee\x7a\xc6\x3c\xa5\xd6\x6a\x18\xcc\x55\x4b\x7c\x87\xb6\x9b\xd7\x34\x22\x57\xe2\x7e\xac\x7c\xbf\xca\xc2\x58\x4c\x6c\x0f\xeb\x9a\x2b\xcb\xf1\x0d\xdd\xb5\x56\x91\x8f\x57\x3f\x2c\x26\x2e\x4e\xce\x9e\xef\x11\xc3\xe6\x85\x55\xec\x40\x07\xaf\x1d\xcd\x55\x32\xa4\x00\xee\x54\x55\x7a\xe8\x4b\x5e\xe7\x3e\xa6\x93\xfc\x6b\x1d\x17\x0a\x1d\x38\x10\xbc\xa0\x5a\x30\x29\xc5\xa6\xa1\x31\x85\xef\x34\xb3\x54\xdb\xde\x5c\xb0\x9b\x0b\xd5\x5d\x54\x78\xff\xc5\xf5\x64\x31\xcc\x4e\x56\xbf\x37\xf3\x83\x30\xaf\x07\x2e\x51\x47\xeb\xb6\x7b\xda\x2a\xc1\x9e\xe3\xfb\xcc\x9b\x0f\x1c\x00\xb8\x20\x59\x0c\xbd\xc6\xf3\x82\x98\x6e\x3f\xa0\x87\x93\x79\xe6\x9d\xe3\xf2\x40\x5d\xfe\xe8\x96\xbf\xfb\x8b\xf9\xcc\xad\x5c\x7c\x2e\x66\x45\x84\x41\x43\x37\xfb\x43\xa9\xe0\x0c\x23\x0d\xf4\x27\xfd\x2c\xcd\x61\x5a\xec\x05\xa3\x9a\x53\xe1\x6e\xff\x5e\x2b\x76\xe4\xb6\x83\xe2\x50\x6e\xb8\x8c\x93\x0c\x20\x07\xcd\x87\xcf\xea\x32\x47\x1b\x81\xc1\x3c\xd1\x46\x00\xd8\x50\x1f\xb5\x82\x9d\xcc\x19\xc3\xae\xbd\x03\x90\x5a\x34\x3f\xa4\x34\xb6\x6d\x35\xb4\xf3\x7f\x4f\x8d\x89\x66\x64\xd4\xf1\x89\x6e\x79\x4a\x69\x6c\x40\x34\x4d\x4b\x84\x52\x1d\x21\x07\x8f\x8e\x8b\xdf\x0b\x35\x8a\x53\x75\x5c\x4d\xff\x11\x3a\xee\xeb\x94\x1e\x7c\x66\xec\x7f\x23\xb9\xfd\x46\x6d\x41\x74\xe5\x67\xd5\xb7\x02\x5c\xac\xda\xfd\xf1\xc2\x72\xf7\x95\x20\xc4\xca\x4f\x11\xa2\x7e\x84\x52\x8d\x93\xf4\x50\xaf\xfd\xe7\x06\x88\xd0\x0e\x7e\x84\xae\xff\x41\xca\xab\x27\xca\x37\xd4\xe7\x0a\x1c\xcf\x7d\x69\xe1\xf2\x6b\xcc\x79\x07\x14\xe6\x99\xdd\x9d\x39\x4d\xcb\xdd\x30\xaf\x85\x39\x9d\xf9\xb8\x64\x1d\xfd\xa7\x63\x2c\x9b\x18\x66\x00\x9a\x8c\x74\xfc\xfe\xcf\xa9\x1d\xff\xc1\x54\xda\x7d\xb3\xa7\xae\xcd\x6a\x74\xba\xf4\xbc\xea\x4b\x4b\x84\x70\x5d\xa4\xa8\x8b\xd6\xb2\xb9\x1d\x5e\xd1\x4d\x70\x71\xb3\x55\x7c\x5f\xbf\x47\xb0\x57\x8e\xec\xdb\x40\xc4\x70\xc6\xec\xb7\x70\xc9\x0d\x59\xba\x46\xcc\xb7\xea\x5b\xfe\x9e\xe2\x18\x8b\x48\x73\x70\x17\x86\x0a\x48\x1c\x47\x3a\x6a\x25\xea\x5b\x8c\x4b\xdf\x01\x23\xac\x6e\x39\x8c\x8f\x8a\x83\x90\xa5\x0a\x56\x36\xf7\xaa\x72\x4c\xc3\xe7\x73\x06\xd2\x8e\x1e\x0f\x65\x74\x57\x19\x45\xf4\x58\x76\x08\xec\x6b\xf7\xc8\x7d\x05\x21\x8d\xfb\x75\xb3\x46\x94\xc5\x37\xf7\xff\x81\x79\x45\x57\x31\x22\x60\xa3\xdd\xb9\x4b\x4d\x77\xce\x1c\x6d\xb0\x0a\x02\xfe\x49\x1d\x6b\xc3\x1c\x55\xc7\xc4\x87\x81\x65\xc9\x2a\x71\x57\x9d\x06\x46\xf2\x40\x8c\x99\x7d\xb8\x77\xcb\x5d\x34\x7d\xeb\x77\xd9\x27\xf1\x86\x49\xb3\xdd\x8e\x64\x2b\x34\x2a\x53\x59\xb3\xef\xf8\x46\x09\x53\x61\x43\x51\x38\xa7\xe9\x90\xfa\x82\xcf\x5d\x67\x7d\xc4\x25\xb2\x7f\xac\xd0\x38\xff\x61\x0e\xe0\x2d\x8d\x36\x94\x18\x5c\xd6\x3e\x18\x16\x32\x9d\x28\x9c\xfb\xcf\xd2\x80\xa9\x49\x64\x2e\xf7\x64\x34\x5b\xdf\xfe\x2d\xeb\x63\x30\xfd\x6f\x16\x3d\x2e\xf6\x68\x57\xc6\xa0\xba\x92\x89\xd6\x56\xc6\x33\x1f\x4e\xb7\x51\x71\x4e\xc3\x9c\xce\xf8\x91\xde\x23\x30\xea\x2e\x17\xab\xb0\x2a\x08\x8a\x9a\x28\xf6\x77\xb0\x7a\x84\xc8\x5b\x49\xfd\xad\x8e\x6e\x63\x56\xf0\x93\xaa\xb3\x1b\x9d\xfe\x8b\xdd\xa6\x25\x52\x39\x3d\xbd\xdd\xaf\x24\x20\x77\xdd\x17\x98\xe1\xc6\x1b\xeb\x17\x63\xf7\x06\xf3\x5b\xf7\xc7\x58\x67\xb0\x3f\x59\x7f\xcb\x38\xdd\xdc\x0d\xff\xbf\x38\xce\xd2\x37\x9b\x0e\x9a\x62\x1c\x82\xeb\xcf\xf0\x6e\xf8\xbf\x55\x4a\x7b\x53\x42\x6a\xc4\xac\xfd\x95\x6a\xd5\x03\xea\xd7\x22\xec\x5f\x03\x29\x1d\xaa\x85\x4f\xf2\x17\xdb\x8e\x77\x14\x1a\x9b\x0d\xff\x3d\xfe\x8a\x3d\x3a\x56\x90\xac\xc4\x19\x3e\x1e\xdc\x5f\x7e\x0f\x40\x7e\x8a\x81\xdd\x1b\x14\xbf\xa0\xb5\x2e\xb6\x8a\x74\xe2\x89\xda\x0e\x30\xb8\xda\xce\xe0\x46\x98\x06\x1f\xfc\x73\x39\x28\x2e\x1b\xbe\x22\x44\x66\xf8\x31\x30\xf5\x6b\x9d\xcf\xa8\x25\x2c\xea\xcd\x83\xe0\xc8\x64\xb8\x84\x61\x91\x4d\xb0\x4a\x31\x18\x52\x70\xbb\x41\x9e\xba\x64\x0d\xaf\xb2\xca\xd9\x74\xee\x0a\xbc\xa1\x54\x1b\x4a\xd9\x49\x32\x75\x7f\x71\x39\x53\x4e\xb3\x65\x93\x1b\xeb\x90\xc1\x9a\x7b\xcd\xcf\x87\x12\xec\xe5\x0b\x7c\xe3\xc6\xfb\xe9\x17\x73\xee\xf2\xee\x3a\x2c\x66\xd7\x45\x9e\x38\xce\x7f\x07\x7d\x55\x51\x24\x03\x54\xe9\xa1\x27\xa0\x06\x6d\x4e\x97\x87\x56\x04\x27\xc6\x8b\xc7\x60\x18\x20\x38\xe6\x33\xf8\xae\xe0\x77\x32\x5a\xd2\x55\x6b\xf9\x3f\x76\xbc\xaa\xda\xc1\x1f\xa7\x3a\x5d\x2e\xd6\x40\x39\xb2\xe1\x1e\xbc\xb6\x7e\x31\xa7\x37\xff\x5e\x21\xa2\xc3\x96\xf8\x94\xc7\x95\xa5\xb8\xf1\x2e\xf4\xb9\x20\x98\x8b\x09\xd4\x63\xca\xc5\x84\x74\x49\x36\x3c\xd7\x1c\xb8\xe8\x7a\x48\xc4\x18\x15\x0c\x16\xd7\x30\x4d\x56\xbd\x9b\x4e\x73\xc8\x13\x17\x21\x69\x05\x1f\x58\xde\x8e\x71\x78\x72\x4a\x0d\xa6\x40\xf1\xd4\xb3\xf7\x72\x64\x31\x5f\xfe\x2b\x17\x2c\x4c\xd1\x9a\x58\xf2\xd1\xe8\xda\x63\x66\x10\xa2\x7a\xf5\xf5\x05\x48\x95\x12\xca\x0e\x2e\x06\xd8\xa5\x3b\xda\xae\xfa\x1e\xe2\x42\x63\x1c\x0a\x3e\x6a\xff\x78\x37\x93\xf6\xce\xf0\x6f\xf3\xb2\xee\xec\xdf\xc0\xa4\x12\x57\x33\x52\x0e\x9c\x4b\x4e\xf1\x3d\xb7\x7d\x33\x25\xda\x66\x72\x91\xf4\xc2\xbd\xe5\xec\x78\x47\x37\x93\x42\x66\xf5\x66\x93\x08\x99\x31\xc7\xff\x10\xa4\x4d\x34\x02\x5e\x53\x2a\x75\x5c\xc5\xc6\x38\x90\x01\x7c\xde\xe9\xb3\xc7\x79\x87\xd2\x1b\xc1\x27\x9c\xe5\xfa\x5b\x57\x54\x03\xee\x46\x5d\x86\xe8\x36\x04\x38\x86\xd8\x23\xb4\xa6\xa1\xeb\xe6\xb0\x3b\x98\x8f\xee\x92\x74\x20\x9c\x12\x6e\xf9\x0f\xf3\x8f\xa0\x0e\xd4\x55\xa8\xee\xf4\x92\xa9\x52\x42\x03\xd4\x9e\xaf\x7c\x43\xd2\x5a\xa0\x97\x17\x97\x6f\x6e\xcc\xdc\xa9\x29\xfc\xb1\x45\xcd\xd2\xba\xb6\x9c\x5b\x35\x84\xae\xeb\xd8\x64\xc0\x08\x82\xd6\xba\xe9\x21\xd7\xaf\x53\x14\xd1\x1c\x77\xe5\x8e\x28\x2f\xe8\x59\x93\x86\xdd\x53\xa6\xe8\x66\x26\xa6\xed\x3f\x38\x73\xd5\x0c\xd4\x43\xa8\x21\xb4\x71\xb3\xdf\x05\xb2\x39\x16\x09\xf6\xef\x97\x15\x98\x7a\xdf\x7c\xb6\x35\x6b\x7c\x27\xbb\x56\x77\x2f\x73\x12\x36\x71\x07\x6f\xde\x6b\x74\x5d\x3d\xa6\x10\xee\xfb\xc4\x17\x78\xc7\xd0\x6d\x6d\xb2\x58\xb8\x9c\x27\x49\xdc\x60\x3b\x6e\xee\xbc\xc8\x36\x8d\x26\xd4\x23\xaf\xad\xee\xc5\xc5\xc9\xc2\xc7\x19\x55\x41\xd9\x46\x1d\x56\x04\xa7\x53\x3c\x15\xf0\xdd\xf4\x81\x7c\xa8\x87\xc8\xd9\x48\xbb\x1d\x81\xce\xb4\xfc\xe4\x5a\xef\xb8\xe2\x47\x92\x2d\x17\x94\x5d\xe9\x3d\x4f\xbd\x68\xd2\xe2\x6c\x92\x02\xe9\x70\x3a\xe2\x74\x06\x57\xf1\x2a\x50\xcd\xed\x7a\x53\x3c\x39\xde\x25\xf1\xff\x8b\x23\x41\x9b\xfd\x77\xe6\xe5\xb1\x08\x93\xe7\x46\xf0\x49\xd9\x46\x8b\x4b\xdd\x98\x79\x06\xcc\xd8\x0e\xff\x85\x75\x92\x07\xfa\x92\xe6\xbd\x73\x41\x9d\xf0\x49\xed\xd4\xcb\x53\xd8\x72\x76\x5d\x54\x47\x6e\xc3\x59\xd1\x14\xdb\xb8\xd0\x3d\x80\xeb\x0b\x28\x06\x70\xf6\x2f\xe4\x0a\xab\xbf\x8c\xad\x0d\x67\x06\x8c\x6e\xea\xea\x60\x26\xdc\xf0\x71\x8c\xe4\x7b\x74\xe9\x37\x2f\x68\x9d\x04\xa9\xd7\x96\xa0\x90\x47\xb4\xb4\xf0\x3b\xbd\x9c\x37\x03\x36\x7c\xb0\x86\x79\xa4\x0b\x4c\xc4\x69\x94\x71\x70\x67\x1c\x39\x4a\x16\x0e\x4d\xae\x5c\x2c\x80\x92\x05\x12\x8c\x19\x2f\x73\x9b\xf1\x40\x91\x07\xed\x6b\x74\x5b\x81\x1c\xee\xe8\xf1\x11\x9d\x65\xf2\xbc\xc3\xa0\xd7\x51\x87\xd6\x11\x23\xe4\x11\x0b\x18\x49\xa9\x69\xbd\xc8\xfd\xae\xc2\x73\x62\xae\x3d\xb9\xf7\x56\xbc\xaa\xd8\xfe\xec\xf8\xc7\x93\x6b\x01\x17\xec\x0e\x5d\x61\xcc\x76\x9d\x41\x5e\xb3\xba\x0c\x34\xf4\x0d\xff\xa5\xca\x53\x34\x5d\x2a\x91\xc3\x95\x32\x67\xdc\xc4\x7c\xfa\x1d\xec\x04\xab\xd0\x9c\xad\x87\x9e\xd9\x1f\x26\xeb\x67\xee\x42\x21\xb4\xe0\x60\xc9\xe5\x7b\x1e\xfb\x30\xc5\x6c\x19\xd2\x2f\x81\xe1\xf5\x3c\xd7\x4c\x8e\x59\x36\x2e\x45\xd0\x37\x96\x62\xe0\xa5\x24\xfd\x22\xbe\x24\x0d\xff\x04\x30\xfa\x23\x93\xd4\xd5\x56\xd0\xe6\xcb\x5f\x41\x92\xf0\x7a\xc3\xf9\x9d\xa9\xf0\x51\x2f\x23\x2f\xf4\xa5\x28\x7b\xb4\xc7\xf7\x93\x3f\x7b\xa8\x63\x4e\x98\xdd\x47\x3c\xa6\xa7\xa9\xe1\x06\x60\xac\x8f\x2a\x79\x44\x4b\xad\xb1\xc2\x7a\x97\x09\x29\x59\xaa\x5b\x52\x88\x8e\xab\x83\x4d\xd7\x89\x65\x4e\x56\xd5\x29\x6a\x77\x77\x5b\x99\x10\x93\xf6\xdf\x58\x4a\x24\x9c\xff\xaf\x15\x97\x64\xc1\x10\x07\x11\x8f\xfd\x31\xac\x21\x1b\xa9\x30\xf5\x9d\x48\xeb\x33\xaa\x5a\xd5\x90\x34\xc7\x49\x24\x77\x31\x98\x5d\x1a\xb5\x2e\xeb\x16\xe0\x77\x71\x75\x75\x26\xf2\x4a\xcd\x54\x30\xd9\x61\x4e\xab\x20\xfc\x54\xfb\xc8\x70\x63\x78\xc8\xe1\xa9\x58\x7b\x0c\x68\xd2\xa9\x4e\x83\x0b\x7a\x72\x43\x5d\x4e\xc7\x43\x2c\x94\xdf\x53\xcb\x1d\x33\x2c\xcc\x4a\x35\xcc\x1c\x28\x7b\x4f\xb6\x68\x1d\x8b\x4f\xbd\x2b\xbe\x12\xc2\xcd\x84\x94\xbc\xbb\x72\x44\x37\x78\x41\xf8\x44\x2c\x3f\x30\xcc\x31\xb9\x7c\x45\x91\xe3\xa3\xd8\x7a\x87\x34\xdc\x24\x44\x28\x18\x39\xb8\xcb\x70\x23\x12\x1c\x93\x04\x06\x09\x32\x0c\x0c\x53\xe6\x29\xb6\x5a\x59\x94\x07\x50\x60\xf7\x78\xf7\xa4\x06\x96\x52\x6d\x38\x40\xdb\xd3\xb0\x23\x25\x2a\xbe\x15\x56\xee\xdb\x5f\x5e\x82\x28\xb4\x4e\x3c\xdd\x2e\x18\xe3\x9b\xa4\xc3\xe7\x7b\x87\xab\x7f\x20\xee\x9b\x66\x92\xb4\x8a\xcf\x23\x3e\x7c\x72\xe0\x82\xea\x49\x40\x90\xdf\x99\xf2\xdf\x7f\xd4\x46\x04\xb9\x2a\xf9\x89\xd9\xa4\x93\xb0\xd8\x02\x31\xa2\x4c\x5d\xa7\x6b\x25\x96\x25\x68\xc5\xd0\x6a\xc5\xd8\x57\x0f\xca\x81\xa4\xaf\x48\x39\xf0\x19\xde\xa7\x00\xf4\xfd\xfd\xd6\x76\x52\x27\xc4\xbb\x9b\xb2\xf0\xd5\xcf\xf5\x89\x02\x54\x03\x15\xea\xb2\xb0\xe8\x95\x90\x68\x40\x48\xaa\x6f\x58\x28\x45\xb1\xd5\xca\x8c\x4f\xd7\x8d\x4d\xe3\xd5\xe3\x2f\x0f\xa0\xe3\x32\xda\x50\x78\x08\xe8\x35\xb5\x2a\x88\xd5\x49\xd5\x96\xa8\xd2\x83\x0d\xbe\xa8\x46\x71\x47\x56\x95\xfe\x8c\xd8\x59\x9a\x4c\xfd\xb9\xbb\xe5\x33\xe8\x75\x74\x7b\x55\xf0\xc6\xdd\x39\x53\x2e\xb9\x2c\x2e\x40\x95\x75\x68\x90\xfd\x68\x41\xd5\x3a\x3f\x45\x3e\x24\x5c\x64\x9d\x49\x10\xd3\x23\x8c\x6c\xf9\x0b\x2b\x06\xeb\x29\xab\x82\x58\x8d\xef\xae\x11\x8a\xf3\xf1\x00\x9c\x87\x66\x40\xcc\x6b\xc0\x10\xb1\x67\x7c\x29\x8e\x11\x1e\x72\x10\x14\x53\x4e\x55\x69\xc3\x0b\x30\xef\x2f\xd7\xdb\xec\xc0\xdb\x48\x2b\xaf\x78\x0e\x08\xe3\x19\x12\xbc\x4c\x03\xda\xe4\x4e\xaf\x9d\x85\x07\xdc\x1b\x1f\x5c\x2c\x44\x58\x57\x65\x3c\xe8\xf0\x1a\x1a\x71\x12\x34\xa3\x7c\xba\x64\xa3\x0a\xca\x7e\x8e\xb2\x09\xe9\xdf\xe4\x5e\x5a\xb6\x58\xaa\x68\x97\x3b\x1b\xfa\x33\xb9\x4e\xad\x70\x69\xc8\x78\xf3\x22\x6b\x13\x23\x5b\xe0\x5b\x49\xed\x4e\xfb\x55\xfe\xa0\x03\xa8\xa3\x8b\x75\xa2\xf1\x1b\x84\x1a\x61\xff\x1b\x58\x08\xa4\x6c\xbd\xb5\x96\xc1\xfd\x73\x1b\x7d\xed\x25\xf7\x4f\xf9\xfb\x51\x9c\xd7\xfe\x00\xec\x20\x60\x0d\x29\xa9\xc9\xea\xff\x35\xf1\x9a\x2a\xbb\x13\x0d\x92\x52\x4d\xdd\x59\x8b\xff\x34\xd6\x91\x16\x3c\x45\x7e\x7d\x90\x1d\xe2\x96\x58\x14\xff\x38\x1a\x28\x1e\xf4\x2f\xbe\xf7\x92\x3b\x31\xf6\x93\xfc\xf9\x54\x3a\xb9\x97\xb2\xab\xb6\x08\xa7\xf8\x3b\x92\x83\xec\xcd\x8f\x6c\xf5\x0e\x0c\x89\x3d\xef\x68\x20\xdc\xf6\xa0\x9e\x27\xdc\xca\xfd\x3c\xea\xa8\x03\x3a\xb6\xdf\xbf\x03\xae\xc6\xcc\x33\xaa\x2c\x39\x04\x1c\x1c\x84\x9e\x92\x54\x83\x0f\x53\xee\xfe\xe7\xd3\xe4\x01\x09\xf8\x49\xef\xce\x8e\x94\xee\x17\x1a\x58\x31\x19\xb1\x63\xf1\xff\x96\x96\xed\xa1\x53\xe3\x36\x54\xe3\xa6\x33\xd2\xc4\xe7\xa6\x80\xfa\x9d\xd5\x7f\x2f\x45\xe2\x77\x46\x8e\xab\xf6\x42\x90\xa4\xbf\x90\xb7\x30\x98\x7d\xbb\xce\x1c\xe1\x55\x89\x56\xae\x86\xe1\xbc\x79\x51\x72\x5c\x23\xf4\x64\x00\x8a\xad\x1b\xe8\xa5\x1f\x64\xa7\xef\x05\x74\x69\xb4\xa9\x06\x3e\xaf\x39\x5b\x17\x6b\x19\xdb\xd5\x6c\xd3\x4e\x9b\xb1\x78\xe6\xc6\x06\x4e\x0d\xe4\xea\x34\x94\xb7\x69\x65\xb2\x9a\xf0\xc6\x3f\x49\xe2\x9e\x33\x65\x80\x6a\x06\xae\xab\xee\x8a\xf0\xa4\xaa\x9d\xef\x7d\x33\xc5\x90\x56\x11\xa1\x51\x38\x12\x05\x70\xbd\x49\xe6\xc6\x11\x0e\x02\xed\x02\xf1\xb3\xae\x82\x58\xe9\x3b\x02\x4e\x3d\xfd\xaf\x18\xe3\x9b\xfc\x3b\x2f\x27\x52\x76\x92\x38\x47\x2d\xfe\xc2\xcc\x05\x95\x6f\x94\x7c\xf1\x29\x5d\x01\xde\x3b\x19\xdc\x22\xd3\x91\xac\xa0\xc5\xb4\xa8\x65\x7b\x7c\xaf\x79\x6c\xfe\xb4\xac\xbc\xfe\x23\xf7\xaf\xc7\xe6\xc5\xcd\x1f\x7b\x3f\x32\x67\x4e\xdf\x4b\x9a\xa3\x75\x7a\xad\xd6\xd6\x07\xad\xa8\xe7\xac\x70\x65\xdf\x93\xf5\x5e\xbd\xba\xf5\x3b\xdf\xb9\x9d\xb8\x21\xf8\x37\x54\x77\xf9\xfc\x51\xe8\xd3\x5f\x3b\xa8\x90\x63\xa2\x1a\x8a\x5b\xdb\x59\x2b\x4d\x28\x8d\x37\x7e\x3d\xfb\x55\x73\x29\x1f\x1f\xc3\xcd\xa4\x6f\x5e\x69\x89\xbf\xe5\x3e\x29\xf0\x7e\x92\x97\x2b\x37\x2a\xfd\xc1\x24\xc2\xa0\x26\x85\x81\x4b\x68\x82\xfd\x8a\x99\x5e\x52\xd1\x1c\x3e\xd3\x28\xe3\x5c\xce\xad\x56\x42\x12\x22\x07\xe2\x36\xed\x41\x31\x94\x1a\x82\x00\x0f\x5c\xfd\x73\xe1\xcc\x94\xb8\x20\xde\x7c\x74\xa0\x81\x65\x9a\x91\xa5\xe0\xf7\x6b\xc2\xaf\x97\xdc\x04\x9e\xde\xf1\x93\xfa\x19\xdf\x85\x43\x54\x97\x4d\xeb\x5f\x51\x5d\xe7\x72\x3e\xbf\x0f\xe5\xe3\x2f\xac\xcb\xca\x3e\x6f\x67\xe9\xde\x16\x65\x0e\x6c\xb5\x35\xaf\x74\xd2\x1e\x29\xc9\xee\xbc\xa1\xc2\xb1\xfb\xf3\xe6\xee\xe4\xcd\x88\x13\x18\x05\xc4\x63\x87\xea\xbf\xfd\xdf\x46\xab\x74\x40\x22\x56\x24\xff\xb4\xce\xf8\x58\xde\x0d\xe5\x92\xe0\xfb\xfc\x3b\x12\x24\xb8\x94\x02\xba\x5e\x2f\x01\x38\x82\xe1\xbc\xc9\x4f\x72\x9c\xad\xfd\x1b\xb2\xa4\xb4\x15\xbd\xb4\xaa\x9a\x84\xca\xd2\x6f\x6a\x7f\x13\x4d\x9b\xb4\x65\x37\xb5\xab\x09\x2d\x88\x75\x7b\xaa\xe2\x5b\xea\x0b\xf6\xd6\x28\x9b\x81\x59\x8b\x91\x2a\x14\x1a\x9b\xa5\x26\x71\x99\xe5\x25\x2c\x72\xa8\x75\xd8\x2a\x84\xdc\xf1\x7b\xc0\xf7\x13\xba\xc0\x0b\x77\x1a\xa1\xd3\xa1\xf4\x49\x91\x8a\xb3\x26\xce\x99\x0a\x5c\xb4\xf2\xee\x03\x76\xcd\x90\x48\xe5\xce\x1d\xa8\xf7\xef\xc0\xea\x6e\x13\x63\x8f\x86\xca\xce\xb8\xae\xec\x74\xf1\x4d\xef\x86\x9a\x89\x64\x21\xd3\x5f\xfc\x0b\xf1\x91\xdc\x9c\xec\x3f\x19\x22\x14\x13\x19\xa0\x32\x98\x07\x52\xd5\x6c\xf3\x5d\x80\x0a\xdf\x57\x71\xb0\x44\x53\x42\x51\x2f\x6d\x2f\xa8\x5e\x4d\xce\x0f\xc2\xf7\x20\x6e\xad\x2b\xfb\x8f\xd0\x27\xf5\xf2\xca\x62\x26\xad\xa4\x97\xdc\x65\xbf\xe2\x33\x7e\x66\x4f\x98\x4d\xf0\x7a\x2c\x72\x53\x0e\x0c\x74\x2c\x18\x51\xa1\xde\x39\xd6\xfb\x02\x16\xe9\x5b\xe9\x79\xc7\xcd\xe8\xab\x80\xaa\xcf\xb4\xb5\x58\xbf\xec\x53\xf1\x0c\x24\xa5\xa6\x20\xa0\x56\xaa\x9b\xe3\xa0\xeb\xc2\x09\x8c\x5b\x50\x6d\x8f\x4c\x09\x54\x61\xc5\xb3\x32\x61\xa6\x77\xf0\x5f\x58\xd7\xfc\x9b\x8c\x46\xec\x74\x9d\xe3\xb9\x1b\x9e\xe9\x17\xaf\x7f\x7e\x44\x4d\x3e\x2a\xfa\xd7\xc5\x3b\x4a\x1c\xc3\x34\x24\x5c\xfb\x90\xa1\x31\x64\xe7\x80\x99\x74\x5c\xff\x21\x8f\xe1\x6b\x71\x97\x4f\xf8\xe4\x4b\x9c\x41\xef\x32\xcf\xbd\x49\x26\x45\x89\x93\x72\x30\xf4\x69\x97\x03\xc1\x41\x17\x80\x2b\x0e\x14\xd5\x98\x7c\xce\x6a\xe1\xad\x14\x21\xd7\x59\xe0\x3f\x7c\xae\x6f\x60\x38\x55\x5a\x25\xa4\x56\xa0\x93\xcb\x9b\x5e\xaf\xad\x13\xec\xab\x5a\x15\x4e\xf5\xd7\x09\xbd\x9c\x1e\x2f\xda\xb0\x46\xf0\xf8\xc3\x32\x63\x31\xe4\xa0\xba\x71\xf6\x35\xc6\x25\xc6\x08\x88\x57\x4f\x68\xe9\x2e\x58\x5f\x7e\xbe\xaf\xc6\x3a\x31\xb6\x7e\x52\xf6\xce\x92\x11\x21\x67\x6a\x4e\xcc\xd1\xfb\x2f\xc9\xa9\x90\xe4\x87\xe4\x59\x91\x71\x2a\x17\x6a\x7c\xa6\x51\x3c\x50\xb2\xbf\xbf\xee\x6c\x20\xc6\x12\xfc\xe2\x22\xdb\xa6\x46\xb0\x49\x47\x12\xc7\x50\xf1\x25\x36\x5e\x31\xd5\xe4\x7a\xd8\x21\x70\xe2\x4c\xb8\x16\x30\x06\x02\x36\xdf\x53\x8c\xeb\xd3\xcb\x25\x32\xac\xc0\x4a\x57\x3e\xa8\xb5\x99\x8d\x2f\x3a\xab\x04\xb7\x3a\xde\xe6\x1d\x79\xfb\xbe\x5e\x2b\x62\xe8\xcd\xc4\x2f\x73\xf9\xbc\xda\x1f\xd2\xb7\xd4\x86\x06\x45\xd3\xa6\xef\xb0\x5b\x0a\x4e\x4b\xb0\x5c\x88\x1a\xc6\xa6\xb4\xb7\xe7\x36\x2c\xa1\x83\x4a\xf0\x0d\xa2\x92\x14\x25\x99\x5a\xb0\xde\xcb\x42\x5f\x14\x99\x6f\x7f\xc0\x8f\x13\x9f\x14\x1c\x63\xfc\xc9\x70\xde\x61\xa3\x78\x8d\x00\xf1\xbe\x8b\x16\x5a\x5c\xf2\xbe\xc2\xee\x03\x3d\x29\x26\xff\x99\x0c\xab\xe6\x8f\x13\x26\xc6\xfe\xc7\xa1\x8b\x8b\xa3\x03\xf9\x0b\xf6\x23\x3f\x58\x02\x5b\x9f\x33\x7a\xab\x56\x7f\x0d\x76\x82\x85\x77\xb0\xf0\x71\xe9\x80\x36\x5b\x7f\xa3\x6d\x68\x91\xb8\x2f\x85\xc9\x70\x71\x1d\xf8\xef\x1e\xe8\x3b\x9d\x5c\x1b\x61\x8f\xfd\xfd\x0f\x42\xc7\x6f\xf5\xde\xe6\x4a\x95\x3d\x69\xe1\x77\x2f\xf7\x9c\x38\x31\xd3\x2f\x30\x60\x9b\x08\x98\xb8\x7b\x6b\xb4\xc7\xaf\xf7\xed\x41\xc4\x1d\x20\x1e\xe9\x2d\xb0\x6b\x33\x63\x31\x84\xbd\xf9\xa0\x95\x66\x15\xe7\x34\xd9\xc5\x97\xed\x88\x22\xf3\x45\x9d\x08\xe2\xf3\xc4\x10\xbd\x6f\x88\xdb\xe9\x7f\xcb\x36\x5a\xd6\x48\x77\x3d\xd2\xb0\xf4\xaf\x4d\xfa\xec\xfb\x78\x55\xe9\x2b\xe2\x7b\x85\x35\x46\x47\xd7\xd7\x7e\x4e\x7b\x2f\xcc\xfd\xf8\xf6\x3e\xc2\x3e\x38\xe5\x41\x9c\xc5\xad\x67\xb7\x2a\x6e\x9f\xb2\x2a\x76\xb4\x93\x0a\xf9\x97\xe8\x7c\x7d\x67\x10\xd0\xc9\xd5\x06\x4b\x0d\xae\x10\xd2\xa3\x50\x30\x2f\xc4\x12\xfc\xf7\xcd\xc6\x67\xb5\xb6\x8c\x14\x85\x01\xdb\x85\xb9\x0e\x6a\xae\x1d\x99\xa4\xd0\xa5\xe8\xb9\x64\xc5\x77\xb5\x3f\xfc\x3d\x4c\x87\xb6\x69\x0d\xa0\xf1\xfd\x1c\xd3\x71\x25\xfb\x35\x51\x1d\xb6\xa1\x9e\xd2\xae\x3e\xfe\xe0\x9b\x4d\xaf\x21\xb4\x4b\xa9\xaa\x07\x9c\x3c\xfd\x09\x1b\x89\x10\xa1\xe3\x63\x19\x23\x12\xff\x1c\x13\x51\x4a\xa3\x41\x96\xe3\x89\xbd\x52\x67\x35\xe9\xbe\x77\x7a\x5d\xca\x13\x34\xb1\x17\x5a\x11\x3f\xf2\x51\x63\x71\x71\x31\x49\x21\x4f\x81\x32\x3c\x5c\x76\xf5\x2f\x55\x87\x4d\x13\xaf\xdb\x01\xe1\x86\xd4\xae\xef\xb5\xb1\x3e\x14\xda\x01\xb4\xf9\xe0\x27\x27\xf3\x9f\x04\xda\x31\x50\x58\x23\x9e\x50\x94\x58\xc7\x23\x02\x5e\x59\x91\x27\x33\x2e\x06\x19\xae\x5c\x61\x43\xd1\x0c\x5c\x57\xdd\x02\xfe\x40\x7b\xf9\xf8\x0b\xfd\xe2\xf0\x1d\x0f\x4f\xf3\xc0\x86\x02\xc9\xd2\x80\x16\x61\x77\xf7\xea\xa3\x05\x3d\x8d\x82\x31\xd6\x23\xbd\x91\x41\xa1\xd5\x5b\x4f\x2b\x3e\x8e\x77\xb1\x1d\x37\x2f\x2f\x15\xca\x70\x48\xf5\x7b\x02\x8e\x32\xb4\xd4\xf3\x99\x48\x99\x1d\x87\x13\x20\xfb\x39\x8a\xcc\x17\xac\x0e\x41\x90\x1e\xcd\xa5\xed\xbe\xab\xd7\x3a\xca\xc3\x49\x2f\x2b\xbf\xb5\x44\x7c\xec\xfc\x4b\xfe\xdf\x42\x05\xcc\x17\x3c\x92\x61\xf5\x80\xd3\x3f\x28\x68\xed\x27\xc6\x62\x62\x69\x64\x20\xbf\x2b\x0d\x73\x53\x3f\xe7\x56\xc4\xb2\xd4\x91\x8d\x56\x7e\x06\x52\xb0\x67\x39\xa5\x79\x79\xb4\x19\xc1\x2a\x4b\x52\x91\xdd\xb1\x67\x02\x61\x25\xf5\x84\x36\x9b\x9f\x15\xe5\x59\x16\x0d\x5c\x03\xf6\x86\x90\x64\x37\x5c\xbf\x66\x58\xb9\x4a\x7b\xb0\xb4\xa6\x9d\x0d\x2a\xb1\x2c\x1b\xe6\xf0\x66\xd6\xfe\x98\x1b\x48\xfb\x2c\xe1\x60\x91\x25\x1d\xaf\x58\xdd\x2e\x17\xaf\xfe\x13\x98\x45\xcd\xec\x1b\xb2\x71\x2e\xbd\xaf\x5b\xf2\x85\x88\xab\x75\xad\xa6\x82\xae\xa8\x90\x37\xae\x70\xde\x12\xff\x99\x41\x88\x2e\x48\x23\xe0\xba\x5e\xaa\x6b\xd4\x68\x01\xb1\x91\x59\xfe\xea\x32\x76\x24\xf5\xa6\xee\x10\xcc\xd2\x16\xff\xf2\xfb\x09\xe2\xa1\x1c\x10\x4c\x19\xac\xf3\x31\xef\xb7\xc1\xbc\x67\xf5\xad\x9d\x1f\x06\xbd\x73\xa2\xd5\xde\x3f\x32\xac\x45\xd5\x37\x83\x4d\xc9\xc2\xe8\xf1\x4e\x59\x51\x68\xdb\x2b\x43\x91\x93\x3e\xf8\x9d\x6e\xe5\xca\xe0\x22\x16\xd7\xaf\xa6\x10\xde\xa7\x38\x9a\x00\x33\x32\x47\x87\x5b\x46\xf7\x92\xcc\x83\x18\x6a\xda\xf2\x7c\x5b\x38\xf4\x73\x52\x27\xca\x33\x72\x6b\xbf\x37\xea\x6a\x04\x86\x7e\x2a\xb9\x57\xa1\x97\x96\x29\x64\x91\xea\x82\x06\xc5\xb7\x75\x66\xc9\xa0\xcf\x9f\x57\x5d\x1a\x6b\x94\x85\x02\x95\x20\x38\xf3\x3c\x33\x30\x76\x8d\x4b\x15\xf8\xf6\xc6\x05\xd7\x23\xa7\x43\x6b\x84\xa9\x20\x43\x06\x3d\x33\xb4\x39\xdf\xfe\x33\x09\x2b\xa8\x16\x44\xf0\x9b\x36\x91\xad\x11\xe4\x99\x5e\xdd\xec\x1c\xc9\xb0\xe6\x63\x09\x96\xb1\xfc\x35\xfd\xa1\xf9\x65\xb3\xfd\xf8\x62\x8c\x50\xa3\xb0\xc6\xc2\x6f\x7c\x8c\x66\x06\x19\xf4\xe5\xa9\xa6\xeb\xc9\x15\x39\x49\x25\xfd\xbc\x17\x85\x57\x41\x11\x9c\x64\xbc\x03\x90\x85\x81\x7b\xbc\x10\x0a\x53\x48\x47\x1c\xa4\xb7\x97\x4c\x45\x83\x2b\xe4\x3b\x8a\x47\x3f\xd0\xf7\x9e\x8b\xce\x56\x5c\xda\x67\xdf\x92\xa2\x82\xdc\x5a\xc1\xe1\x8e\x57\xe9\xd9\x3c\x11\xec\x19\x20\xda\xaf\xc1\x0c\x67\x5d\xc1\x86\xef\x88\x44\x95\xe9\xb6\x3e\x7a\x26\x50\xae\xe6\x2d\x40\xd8\xc8\xf2\x3a\xbe\x18\xe9\xa8\x5a\xe4\x4b\xe2\xbc\x86\xa2\x70\x84\x9f\x08\xe2\x99\x9f\x42\x48\xc7\x9d\x97\x47\xd5\xa9\xa6\x88\x87\x76\x99\xa4\xaa\xfe\xf1\x85\xfa\x31\x04\xfb\x2a\x24\x3b\x36\xc7\x6e\xe2\xa9\xb7\xb4\x2b\x2c\x54\xd1\x55\x79\x5e\x67\x56\xe1\x41\x9c\x05\x7b\x6f\x57\xd4\xc6\x12\xbd\x19\x59\x49\x0d\xb1\xb2\xbf\xdb\xfb\x16\x5e\xa5\x87\x6e\x3c\x6f\x9c\x4e\x39\x81\xa3\x1b\xb1\xa9\x3b\xbd\xbe\x51\x39\x8c\xa3\xfd\xc8\xa4\xbe\x4e\x1b\x40\x45\x8f\x5a\x87\xa8\x0b\x83\x98\xfc\x9a\xcb\xc7\x75\xf4\x8b\xe3\xf6\x50\x5d\x81\xc1\x83\x6d\xb2\x96\x6f\xdd\x0d\xb1\x5b\x15\x2c\xba\x43\x55\x19\x42\xae\x6c\xfa\x09\xfc\x32\xea\x46\xd3\x0b\x7b\x6c\xd4\x53\xc1\x9c\xfa\x39\x74\xf2\x31\xc2\xf0\xe3\xca\x9e\x6e\x0a\xb8\x15\x29\xe6\xc7\x4c\x7c\x82\x0a\xcb\x2a\x76\xf9\xfb\x7d\x60\xbc\x60\xf1\x75\x7e\x5b\x47\x2e\xfe\x30\xc0\x9c\x28\x50\x52\x8b\xed\x71\x4a\x34\xd5\x5d\x1b\xb4\x1f\x99\x8b\xc8\x78\x80\x55\x7a\x2f\x55\xc8\x14\xd0\xba\xc2\xe0\x26\x31\xb9\xb0\x7b\x0f\xc2\x82\x8f\x22\xe7\xd2\x3b\xa0\xa8\x25\x18\x64\x75\xe3\xd8\x8b\x82\x45\x60\xdb\x3b\xde\xcb\x30\x9d\xb0\x53\xa6\x80\x1d\xe9\x15\xd2\x65\xd1\x10\xdc\x2a\x84\xab\x12\x52\xc9\x3d\x66\x3e\xa2\x92\x29\xf4\x5a\xff\x96\x09\x66\xb2\x20\xe8\x48\x5d\x45\x21\xbd\x56\x9b\xfa\x63\xac\x4b\x7a\x96\xdc\x53\x9d\x9a\x08\xff\xe2\xcb\x3c\x9c\x61\x56\x94\xe7\xf7\xe7\x2c\x67\xa2\x24\x86\x5d\x1b\x62\x14\xdf\xd7\xba\x71\xaa\x1d\x52\x36\x37\x13\x52\xf9\xd7\x87\x03\x9c\x8c\x20\x61\xc2\x0d\x7f\x32\xec\xf9\x83\xd3\xdd\x73\x82\x93\x31\x5e\xaa\x4f\x99\xe4\xd7\x3b\xb0\x20\xe9\x6a\x31\x97\xa4\xb0\x43\x57\xfe\xaa\x33\xb5\x7c\x44\x80\xf9\x55\x16\xab\x6f\xb5\xf1\xfe\x5f\x58\x8c\x0e\xd2\xfd\xf0\xaa\xa2\x88\x9c\x1c\x51\xa1\xde\xed\x7d\xe7\x22\xac\x76\x14\x76\xf2\xe8\x37\x56\xff\xa1\x51\x79\x18\x34\xec\x94\xe9\x64\xfb\xce\xe6\xa4\x03\xd7\x3d\x45\x68\x19\xa4\xb2\x5b\x4d\x85\xfd\xfe\xc8\xdb\x9b\xad\xda\x6b\xea\x2a\x76\xca\x79\xbf\xc6\xc6\x32\x33\x99\x17\x7b\x7e\x68\x6f\x2a\x6e\x3a\x7b\xc3\x46\x72\x67\x96\xe4\x4d\xf1\x1a\x62\x98\x1a\xb5\xea\x03\x9c\x2d\x49\x85\x0e\x99\x4d\x0c\x7e\x49\x4f\x05\xe7\x94\x47\x1e\xcc\x40\xd4\x2e\xcb\x6a\xcf\xe7\x58\x66\x18\x60\x39\x52\xa5\xb0\xbb\x7a\x93\xe7\x38\x55\x9e\xaa\xb1\x4f\xc2\x4d\x6d\x99\x4d\x85\x0b\x85\x32\xfb\x4a\x3f\xac\x3c\xe3\x55\x45\xd8\xe7\x51\xdd\xcb\x97\x74\xfe\x17\x9a\xed\x17\x74\x22\x27\x7d\x1c\xdc\x6b\x3b\x46\x83\x4e\xc7\x4a\xc8\x12\xdf\x6c\xe1\x58\xfb\xcc\xe8\x4a\x45\x10\x42\x8b\x4b\x8f\xde\x08\x04\x57\x03\x3e\x62\x56\xce\x93\x62\x5a\x02\x82\x2c\x61\x68\x23\x0b\x83\x41\xaf\xb4\x2c\x41\x93\x41\x49\x43\x24\xb7\xa3\x8d\xf6\xd5\x99\x42\x45\x0a\x82\x14\x32\xf4\x85\x6e\xb5\x77\x99\x1a\xa4\x4e\x89\x28\x06\xd8\xa5\x07\xf7\x1f\x71\x9a\x87\x31\x11\x85\x27\x3b\xaf\x06\x3e\x3d\xe7\xfd\xe9\x60\x9f\x4a\x4a\x11\x52\xbb\x54\x1a\x31\x76\x9e\xdd\x80\x6d\xfb\x02\xfb\x50\xb7\xcc\xfb\x1d\x9d\x05\x2d\x1c\x8b\x85\x32\xfb\x75\x15\xb5\xfa\x79\xf7\x3d\xf3\x08\xaa\xb0\x91\x4b\x2c\xef\xb9\x82\xf5\x55\x7e\x39\x16\x74\xe2\xbd\x25\x9b\xf3\xf7\x46\x0b\xc5\x7a\x91\xe9\xf7\x22\x9b\x1c\x27\xd9\x3a\xb8\x80\x46\x91\x06\xe8\x00\x51\x6b\xc4\xe4\x20\xfc\x91\x7a\xe3\xc5\x65\xfb\x40\x49\x98\xb0\xc7\xdb\x9a\x35\x67\x2f\x5b\x26\x10\xed\xd7\x94\x8e\xce\xa8\x3d\xf5\x8b\x8d\x42\x51\x0b\xe5\xb8\x8e\x71\x9c\x00\x21\xd3\xc9\xe1\x3c\x7c\x49\x1c\xbd\xe3\x00\x21\xb9\x0c\x59\x2d\xac\x7c\xf8\xa9\x82\x42\xeb\x19\xe3\x87\xc2\xd6\x7a\xd7\x47\xfb\x0d\x7f\xc5\x9f\xa8\x8d\x70\xcb\xec\x1e\x73\x06\x3e\xef\x1d\x29\x31\x08\x9e\xf9\x35\x1d\xab\x20\xdd\xdc\xc9\x26\x14\x9e\xe2\xbc\xef\xe5\x56\x8e\x95\x14\xc4\xc7\xfa\x11\x0d\xbc\x89\x7d\x8f\x2f\x7b\x36\x44\x13\x6f\x34\x57\x9b\x8c\xeb\xfe\x70\xb2\xa2\xf4\x12\xb7\x07\x21\x9e\x72\xe9\x50\x8e\x7f\xd9\x40\x71\x47\x36\x94\x8e\x14\xfe\x9e\x1a\xab\x65\x9a\x92\xf6\x50\xcb\x35\x17\x9c\x8e\x8f\x24\x74\x18\xa7\x7b\xac\xa6\x0c\x6c\xd7\x2d\xc1\xac\xc3\xbe\x71\x2b\xd2\xed\xf5\x2e\xa7\x5c\x5d\x79\x92\x34\x16\x1c\xb8\x98\x90\x15\xeb\x40\xaf\x43\xba\x50\x72\xd7\x97\xac\x2f\x01\x1e\xd2\x44\x71\xd3\xf2\x13\x85\xec\xbe\xef\x3e\x62\x7d\xfd\xfc\x0b\xf7\xb6\xf7\xf7\xc3\x86\xc2\x42\x7c\x06\xdb\x3a\x0b\x5a\x64\xec\x46\x3c\xc7\x85\x0f\xfa\xc0\x68\x87\x73\x0a\x51\xa2\x7d\x0d\xc1\x20\x06\x76\xfe\x25\x69\x16\x1e\x5e\x11\x6b\xe2\xfb\x26\x5a\xc3\xc9\x35\xce\xc9\xee\x7a\xec\x14\x99\x13\x15\xfc\xd8\xb3\xf7\x6d\xb7\x99\x19\xcb\xcf\xbd\xed\x8d\x77\x29\xdb\x5b\x1d\x77\x91\x8f\x8e\x1a\xb7\xa1\xde\x0b\x79\x32\xca\x21\x57\xcf\x57\x59\x5c\x33\xbd\x7b\xba\x7f\x2f\xfb\x13\xc2\xe7\x48\xc4\x52\x18\x3d\x8e\x05\x40\x1a\x01\x05\xc9\xb1\x10\x44\xaf\xf1\xee\xd4\xb7\x1f\xc3\xef\x64\xfe\x20\x32\x9b\x4a\x7d\xb8\xb9\xf1\x3c\x7e\x90\x56\xea\x8e\xce\xae\x82\xcf\x1c\xca\xd9\x32\xfb\xb5\x65\xb5\x37\x12\x9a\x9a\x24\x6f\x30\x12\x89\x21\x68\x74\x69\x5d\x7a\x1e\x7a\x86\x32\xbc\x67\x03\xe0\x92\x19\x8d\x62\x28\x86\x9e\x7c\xa4\x39\xf7\xbf\xde\xcb\x14\x5d\xa4\xf9\xb5\x90\xad\x48\xe3\x0e\x83\x5a\xc3\x7a\x49\x87\xaf\x4c\x45\xa1\x8d\xf0\x47\x77\xa9\xf8\xfb\x02\xa6\xf7\xa5\xec\xe4\x6f\xad\xed\x87\xcd\x77\x5f\x4c\xe7\xf4\x2e\xfb\x94\xef\x7e\x83\xde\xc1\xe1\x94\x79\x88\x63\xaa\xc3\x5d\x62\xfb\xeb\x7f\x92\x8c\x00\xda\x1f\x2a\x28\x18\xb0\x59\xa7\xa8\x6d\x17\xe1\xa4\x44\x9c\x11\xd2\xbd\xa4\x5d\x2b\xa2\xbd\xc2\x6b\xd2\x27\xb7\xdb\x4c\x2e\xe4\x0b\xdc\xda\x59\x8a\xf5\xf8\x43\x7c\x34\xb4\x54\xcf\x8b\x79\x70\xef\xf0\xf3\xbb\x0f\xf7\x48\x82\x96\x24\x95\x9a\x48\xe4\x26\xaf\x32\x00\x65\x5b\x37\xfe\x4f\x83\x7b\xf3\x81\x3a\x34\x53\x00\x9a\xc5\x09\x2d\x07\x6f\x02\x45\x0f\x5e\x80\x6f\x8e\x61\x4e\xfc\x45\xc8\x4f\x6d\xe7\x33\xdc\xe2\x95\x50\x89\x3c\x8e\xa1\x8b\xd6\x91\xb8\x80\x2d\xac\xf7\xd8\xb4\xb7\x6a\xdb\x01\x9d\xcc\x15\xbd\x1f\x42\x85\x5a\x15\x24\x07\xa6\x48\xba\xb8\x06\xdf\x2d\x6b\xee\x97\x16\xaf\xe5\x23\x55\x67\x08\x45\x3a\xd0\x9c\x7a\x24\xf0\xac\x30\xc7\x61\x66\xa4\xfe\xf7\xc5\xff\x77\xb5\x87\xe7\x62\x86\xf5\xad\xb3\xb8\x2f\xa0\x3d\x1d\xe4\xf2\xe2\xf2\xe8\x1a\x96\xf7\x1c\xf4\x10\x12\xd9\x20\x4f\x5b\xa8\x26\x7c\xcd\x78\x35\xba\x9e\xa1\xd7\xd1\x1b\x9e\x42\xb6\xa2\xf4\x8c\xd6\xa0\x40\xf0\xe9\xf0\xc6\x8b\x4b\xe9\x61\xf2\x53\xdb\x5e\xfe\x1c\xa7\xfb\x4c\x6b\xc0\x97\xf2\xf1\x2e\xc3\x2c\x11\x18\xe9\x69\x59\xc4\x2b\x67\x7b\xe4\x4f\x3f\x52\x91\xd4\x3d\x14\x1a\x00\x50\x64\xbe\x8e\x0f\x69\xce\x3c\x44\x4e\xaf\x01\x84\x8b\xd1\xf3\xb9\x6a\xc3\x34\x44\xa6\x64\x29\xa7\xf3\xeb\xb5\x3e\x65\x92\x71\x5f\x86\x75\xa0\xb4\x07\xac\x4d\xc1\xf4\xea\xe8\xbf\x8c\x8b\xb6\x9a\xff\xc8\x76\xa9\xaf\x24\x7a\xb0\x58\x17\x8e\x9a\x3f\xa9\x0c\xf8\xae\x27\x87\xb2\xf4\x79\x6b\x9b\x13\xb1\x52\x2b\x08\x8e\xa9\x27\x95\x79\x77\xa1\x65\xff\x92\xc1\xa7\x9f\x26\x9f\x39\x63\xf0\x7e\x78\x6b\x4c\x2c\x63\x52\x3a\x37\xf6\x8f\xa6\xb5\xa4\x23\xa3\x45\xe7\x03\x87\xf0\x9d\x45\xd3\xb2\xd6\x67\x54\x8b\xd1\xbe\xab\xd8\xf5\x21\xf5\x20\x3c\x23\xae\x1d\xde\x44\x16\xf5\x30\xe6\xd3\x23\xf1\x55\xad\x6b\x00\x61\x6e\x6f\xb6\xea\x9d\x65\x3a\xe2\xad\x4c\xd9\x32\x7d\x2f\x9a\x39\xc1\xd7\x53\x76\xbf\x66\x31\xaf\x6a\x31\xe2\xcd\x03\xce\xbf\x2e\x06\xaf\x8b\xcb\xc7\x53\x19\x88\x4e\x94\x51\xc6\x31\x68\x53\x7e\x18\xb8\x20\x65\xd4\x57\xef\x00\x6d\xa8\xec\xca\xb5\x1b\xa9\xf1\x6a\x03\xb2\x8d\x03\xc5\x5f\x76\xad\x2a\x75\x18\x91\x46\x1e\x1a\x91\x16\x2e\x6d\xd4\xc3\xe5\xf9\x1e\xff\x31\x4e\x20\x84\x1b\x89\x7b\x4e\x76\x34\x18\x89\xd6\x56\xec\x8d\x4a\xcb\xef\xfd\xd7\xfe\x9e\xb8\xf0\x5c\x43\x9e\xdb\xf4\xfe\xc1\x38\x87\xc6\x82\xdd\xb0\x95\xac\xb2\xf5\xa7\x08\x2b\xd3\xa7\x1c\x8f\x7f\xe3\xe3\x9b\x2f\xbd\x74\xcf\x19\x21\x8a\x28\x8a\x15\x00\x5c\x83\x40\xa7\x34\x8c\x1e\xc1\xde\xfd\xb2\xec\x3e\x93\x38\xfd\xb5\x95\x8b\xd7\x2c\xe9\x5b\x56\xa6\xf1\x7b\x3c\xb9\xf5\x93\xe0\xf1\x07\xb3\x98\x33\x9f\xbf\xd8\xd6\xf8\x07\xba\xdf\x2e\xd2\xc7\x84\x94\xa8\x86\xd5\x84\x8e\xa9\xac\x5d\x01\x5c\x28\x22\x2f\xfd\xda\x2d\x39\xad\x02\xb8\xd5\x85\xe3\x38\x4f\x51\xc2\x1d\x06\xb5\xc3\x9c\x64\xc5\x70\x27\x81\xb3\x91\xb9\xf7\x51\x42\xae\x69\xb7\x14\x8b\xce\x7a\x97\xde\x14\xb6\x8e\xdd\x24\x9d\xf9\x0d\x7e\xd9\x60\x3b\xfa\xe3\x4a\x08\x1f\x82\x4b\xec\x8b\xe7\x12\x20\xaa\xf4\x54\xf0\x54\x54\x3f\x81\x67\x91\x58\x71\x34\xbf\x26\xcb\x51\x4a\xba\xd0\x8b\xac\x37\x0c\x9a\xdd\x50\xa6\xf2\x05\xbc\x7f\xd4\x74\xe4\xb6\xec\x2f\x58\x55\x46\x75\x67\xb5\x4c\x7b\xf5\x0e\x45\x2c\x6f\xe3\x6a\x58\xd0\xeb\x9c\xf7\x76\xa8\x45\x36\x8e\x2f\x8f\x34\x6f\x2c\x1f\xc2\xc8\x90\xb3\x78\xfe\x1c\xb1\x64\x24\x6e\x93\x8e\x0e\xec\x4e\x17\x30\x44\x07\x89\xbf\xe6\xbc\xe4\x3f\xda\xf3\x23\xb3\xa4\x23\xc2\x4f\x84\xd8\xfb\xc2\x58\xa9\x82\x96\xeb\x9e\xd1\xc4\x42\x2d\x9d\x41\x16\x69\x1f\x13\x71\xea\xcf\x22\xbb\x43\x50\x5a\xc5\x62\x4f\x58\x2c\xb0\xe2\x28\x74\xd1\x8d\x62\xe0\x04\x4e\xb1\x8a\x2d\xdc\xae\x00\x21\xbb\x6d\xcd\x36\x1c\xc2\xdf\x10\xdd\x8f\x5d\xd7\x05\x18\xd4\x1a\xfb\x94\x71\xc6\x5f\x07\x16\x7e\x7c\x5b\x18\x15\xdf\x78\x36\x83\x1d\x99\xde\xcf\x30\x93\x1d\x33\x4e\xf9\x4a\x47\x85\xc0\x42\x86\x77\xb1\x03\x53\x74\x5c\x28\x62\x43\x85\x66\x1d\xbc\x1e\x25\x51\x09\x39\x17\xb9\x1e\xd3\x0e\x12\xd5\x01\x30\x50\x5d\xab\x89\x49\x69\x85\xcb\x0b\xf7\x56\x17\xcb\xcf\x0f\x42\x1b\x1c\xa4\xaf\xeb\x25\x65\xc2\x1c\x6a\x88\x6b\xf3\x49\x13\x57\xce\xdf\x53\x8b\x1c\x20\xe4\x45\xd4\xf4\xbd\xcb\x85\x5a\x93\x4d\xb4\x98\xe1\xa1\x91\x1d\xba\x09\xc4\x17\x2b\x13\x92\x6a\xf9\x53\xbf\xd9\x0d\xe5\xe7\x72\x64\x16\xe9\x1e\x5b\x3f\x32\x02\xaf\x8e\xe3\x86\x4e\x47\x33\xba\xb6\x9c\xf7\x6f\xf0\x56\xa9\xb4\x1d\xd0\xb9\xe1\x12\x06\x2e\xc2\x7f\x6c\x52\x00\x0d\xab\x94\xb4\x4c\x1c\x90\xe1\xad\xc3\x70\x70\xcc\x14\x99\x0a\x1f\xd7\xf5\xd3\x7a\xb8\xf3\xa7\x9a\x11\x18\xfa\x16\x3a\x42\xb8\x4e\x89\xa5\x55\xfb\xd2\xe3\x23\xb9\x20\xe6\xac\xcb\xe3\x0f\xa1\x75\x8c\x09\x61\x3c\xb9\xa8\xff\x94\x85\xe8\xa4\x16\x15\x73\x8b\x64\x1b\x71\x13\xac\xa2\xce\xe0\x48\xf1\x10\x82\x40\xf4\x16\x92\x01\x8f\xe7\x33\x26\xea\x94\x0d\x22\x11\xc5\xa5\xf8\x1c\x28\xf1\x54\x2c\xaa\xbd\xad\xf1\x6c\xdd\xf6\xf4\x72\x4f\xfe\x8f\xb7\x7e\xb9\xc6\x53\xe6\xcb\xa8\x1e\x4e\x26\xa2\xf1\xe2\x55\x18\x03\xde\xf9\x03\xe3\x39\xa5\x36\x3b\x0d\xff\x8d\xb0\x42\x9f\xb1\xbc\xbf\x71\x99\x5f\x9e\xa8\x90\x9c\x34\xd9\x47\xd9\x99\x59\xfc\xc3\x95\xbc\x72\xc2\x25\x05\xd0\xcd\x8c\x36\xe8\x36\x66\x84\x47\xb9\x70\x1d\x3b\xbf\xf6\x9b\x99\x04\xfc\x42\x7b\xb7\xd9\x45\x51\x65\x67\x27\xb4\xe0\x64\x83\xb4\x80\x6a\x27\x0c\x6c\xa8\x40\x93\x0f\x00\x75\xa8\xf1\x0e\xe7\xc8\x99\x25\x08\x3e\x73\xe7\x7d\x18\x41\x05\x73\xea\xdf\x79\x89\x9e\xba\x83\xc7\xd7\x8f\x45\x66\xfb\x82\x6b\x4a\xc6\xf1\x1f\x6a\x42\x77\x1a\x07\x86\xdc\x7f\x6b\x87\xa7\xb7\x52\x47\x61\x21\x83\x97\x84\x7d\xa2\xa3\x1b\xc2\xd2\x12\x0d\xc5\xc7\xd8\x53\x86\x90\x3f\x8c\xbb\xde\x9b\x4b\x49\x9e\x0e\xee\x5a\x00\xd0\x02\x5c\xd7\x01\x49\x30\x34\x4f\x5c\x88\xda\x52\x86\x41\xbc\x60\xc4\x73\x6c\x90\x6e\x56\x81\x8b\xd3\xdf\x12\x26\x67\x7c\x99\x60\x73\xdc\x2c\xce\xfa\x6c\xfa\x4a\x73\x80\xa0\xd1\xc8\xd9\x13\x0d\xe5\x40\x2e\x41\x3a\x88\x79\x7e\x88\x9c\x92\x73\x4b\x8b\x74\x4b\x03\xac\x07\xe2\x93\xc2\xf9\x44\xbd\x61\x40\xb6\x1c\xca\xa6\x3d\xbb\x31\xca\xb3\xfb\xf2\xc7\xe8\xc5\xbc\x97\xae\x33\xdf\x53\x96\x4b\x63\x31\x92\x44\x30\xc2\xcc\x0d\x86\x84\xe2\x63\x2a\xbe\x76\xba\x3f\x0c\x01\xe3\x53\xa3\x52\x91\xcb\xd2\x2b\x38\xb3\xb9\xee\x6f\x6e\xcd\x54\x14\xbe\x32\xa6\x2d\xa6\x93\xd4\x03\xee\xad\x7f\xf2\xc6\xbc\xbe\xd9\xbf\xff\x34\x34\xdc\x15\x72\xed\x19\xd5\xe8\x72\x41\x6d\x57\xb0\xcf\x60\x5b\x1f\x14\x17\x8c\x3b\xfe\x76\xd5\xf9\x98\xb8\x76\xcc\x9d\xa8\x1a\x02\xa8\x26\x0a\xe2\xa8\x83\x2e\x7e\x51\x6a\x36\x88\x78\x26\x6d\xd8\xdb\x1a\xe2\x03\xe7\xdf\x74\x27\xbc\x6e\x50\x35\x37\x7d\xea\xf7\xc0\x65\xb1\xbb\xdb\xea\xe2\xc9\x03\x97\x5a\x15\xbb\xf1\x2b\xbb\xcc\x9e\x87\xae\x08\x0f\x87\x3a\xbf\x28\x80\xfb\x9c\xfc\x5a\x91\x66\x2a\xdc\x2c\x0a\xee\xfb\x09\x9e\xc2\x02\x9c\x75\x81\x0e\xcb\x4a\x3a\x02\x42\x79\xa2\xd6\xd5\x55\xc2\x65\xbc\xdf\xea\x99\x95\x21\xf5\x43\xf6\x96\xf4\xf6\x16\x83\x0d\xde\x45\xd9\x4d\x2c\x88\xce\x72\x1e\xee\x70\x1e\x31\xea\x5d\x32\xaa\x45\x81\x29\xd6\x66\xa9\x6a\x04\xc3\x9e\x1e\x57\x03\x48\x1d\xb9\x89\x31\xec\xa6\x40\xe1\xf2\x4b\x92\xf5\x50\x46\x77\xa8\x6d\x1c\x6c\x60\x61\x74\x67\x1f\xb3\x38\x37\x7f\xca\x76\xdc\x9c\xc7\x37\xba\x18\x6b\xb1\x8a\x55\x0a\x6a\xbc\x54\x68\xde\x23\x87\xc6\x38\x48\xc0\xc3\x4e\x20\x21\x9a\x12\x86\x5f\x0b\x45\xa0\x27\x54\xf7\x87\x2d\xe5\x91\x8d\x59\x2d\xbb\x31\xfb\x37\xc5\xbc\x3a\x6c\x58\x82\x9c\xc5\x5d\x3d\x27\x18\x28\xcd\xa8\x24\xfa\x17\x6b\x4b\x03\x77\x2e\x4d\xd6\x63\xd3\x30\xfb\x5f\xa3\x4a\x0a\x11\x9f\x1d\x8c\x42\xcf\x6c\x48\x64\x2a\x86\x10\x3a\x64\x2a\xc7\x10\x41\x51\x14\xd6\x62\x62\xc4\x62\x8f\x78\x73\xb1\xe1\xcf\x7c\x31\x06\x51\xdb\x72\x2a\xbc\x92\xa8\xe7\xb5\xb0\x33\xb4\xc1\x79\x8f\xcc\x28\x77\xc1\xbc\x14\x4b\xb3\xdf\x71\x3f\x3e\x4f\xb0\x26\xe4\x0f\x5d\x02\x64\x94\x7a\xaa\x07\xd4\xaf\x93\xa1\xa9\x48\xf4\x69\xb0\xd5\x9c\xa3\x15\x16\x40\x64\xc2\x69\x80\xb5\x57\x9a\xf9\x12\x4c\xb0\xc6\x8a\xfc\x88\x28\x9e\xc3\x09\x13\xed\x50\x8b\x40\x3f\xb2\xa2\x25\x71\x17\xf1\xfd\x85\xab\x95\x27\x5b\x58\xef\xd1\x29\x6f\x95\xc5\x79\x5c\x4d\x14\x09\x05\xbb\x76\xc6\xfc\x72\x65\x43\xd3\x8a\x14\x53\x00\xa5\x82\xc7\x5e\xcb\xb8\x1a\xf8\xfc\x40\xfe\x2a\xbf\x33\x07\x66\x7d\xaf\x8a\x64\x52\xfe\xf4\xe6\xeb\xb9\xc0\xbf\xc0\x97\x9a\xf6\xce\x60\xf7\x97\x63\xde\xf7\xcc\xd0\xdf\x07\xde\x7b\xbd\xce\x6d\xd0\x46\x1f\xe0\xdc\x2f\x70\xce\xa7\x09\x2d\x7b\xcc\x6c\x39\x8e\x56\xea\x82\x64\xf9\xbd\x64\x3d\x69\x3d\x95\x6f\x90\xaf\xe5\x9e\x4a\x9b\xbb\x62\x8e\x1e\xe1\x2f\x1a\xe5\x09\x22\xda\x29\xf7\xcc\x98\x3b\x02\x23\xab\x8e\x5a\x39\x0b\x04\x11\xea\x92\x38\x06\x42\x2f\x0a\x4d\x6a\xe4\x45\xa1\x57\x8c\x68\x4a\x5d\xd7\xe5\x5e\x9c\x6e\x4f\xad\x24\x28\x08\xff\x81\x5d\xd4\x5e\xe5\x70\xd6\x30\x4d\x15\x0a\x33\x89\xf7\x48\x32\x12\x69\xfc\x3a\xf2\x7c\x39\x1c\x1c\x3e\x7e\xc1\x6d\x99\xac\x87\x69\x7f\x50\x40\x3e\x96\x11\xf2\xf9\x70\xd4\x79\x8f\xd0\xa0\x83\xf8\x22\xd5\xa4\x2f\x04\x59\x15\x67\xa5\xff\x64\xd7\x89\xd9\xbb\x11\x15\x83\xab\x22\x11\x4f\xc3\x1b\x62\x34\x3d\xef\x72\x93\xb5\x96\x8f\x0f\x05\x0d\xd9\x6f\x40\x82\x28\x35\xa7\xdd\x86\x88\xbb\xf3\x49\x47\xe1\x59\xfd\x54\xf5\x24\xf9\x23\xea\xa8\xb1\x14\x0c\x09\x9f\x58\x0a\xeb\x29\x96\xb3\xe8\x15\x49\x16\xd3\x46\xe8\xaf\xd2\x01\x87\xd8\x85\xd1\x2f\x67\xbb\x41\xf8\xe5\x2d\xda\xee\xd9\xf3\x2e\x97\x58\xb5\xb6\xf6\xac\x96\xfd\x88\x16\xb3\xf6\xb3\xa7\x43\x11\x7f\xa7\xed\x88\x2a\xc3\xcb\x0e\x6b\x2c\xcc\xd5\x34\x3b\x6b\x14\x5c\x60\xb4\x23\x6a\xeb\x8d\x20\xeb\xcd\x9b\x10\x7e\xc8\x65\x17\x68\xe9\x03\x2e\x52\xbb\x58\xeb\xa7\xc5\x7a\x9b\xa8\x9f\xbf\x38\xe6\x6f\x31\x71\x8e\x92\x7f\xe2\xf2\x37\x3e\xd9\x0d\x16\x53\x81\xb1\xe2\xff\x74\xb1\x95\x76\x32\x33\x81\xc1\x0d\x34\xf7\x4b\xbb\xfb\x5f\x1a\xde\x67\x71\x40\xba\xf0\xe3\x3d\xa5\x44\x17\x0b\x25\xeb\x1c\x1c\x3e\x46\x7c\x66\x6b\x95\xb5\x5e\x5c\xc7\x8a\xeb\x52\x51\x91\x8a\x86\x61\xf7\xa6\xc5\x17\x08\x31\x0d\xc5\x6a\x25\x5c\xb1\xd3\xea\x3d\x12\xc3\xcb\x85\xbc\x9b\xa1\xbd\x66\x95\x58\xc9\x34\x7d\xb9\x25\xbd\xb9\xce\xee\xe5\x06\xae\x2f\xc6\x16\x66\xa9\x88\xc3\x76\x7a\xf6\x6c\x97\x3d\xd0\x66\xda\xc9\xc6\x83\xab\x71\x10\x57\x90\x54\x9d\x68\xe4\x8e\x3d\xa6\xae\xf1\xc1\x16\x2e\xf5\xd7\x53\x87\xd7\x48\xe6\x07\xc1\x1b\x98\x88\xd3\x3e\x36\xea\x29\x36\xd7\x4c\x8c\xa3\xc3\xe6\xd5\x22\x5e\x85\xc5\xd5\xaa\xa4\xd0\x17\x47\xcd\x1f\x23\xe6\x1a\x6b\xdc\x0e\x22\xb6\x93\x3d\xfb\x63\xec\x8d\x5f\x08\xbf\x61\x68\x5d\xef\x44\x6a\xfc\x4b\x57\x48\x0e\x33\xec\x3d\x15\x97\xbb\xff\xcd\x02\xb4\x39\xbe\x35\x56\x78\x52\x01\x82\xdf\x73\xd5\x31\x45\xfb\x87\x6f\x1b\xbe\x4b\xde\x36\xe4\x8b\x77\x8b\x8f\xdc\xd7\x24\x1f\x58\x58\x4c\x52\x48\x55\xb6\xfb\xf4\xe5\x9f\x06\xb8\x33\x62\x38\x15\xd7\x84\x00\x27\x31\x52\xa5\x3a\xcc\xe9\x94\x9a\x3f\xf9\x1a\x2f\xe5\xf5\x0d\xaa\xf3\x38\xb4\xec\xdb\xf1\xe5\x80\xca\xda\x2a\x68\x93\xec\x0f\x86\x5e\x87\x03\x33\xf6\x2b\x28\x3c\xb6\x92\x12\x21\x8c\xd1\x22\x5d\x7e\x98\x64\x3b\x76\x5d\x4f\xe5\x8d\x2f\x4f\x88\x2c\xd1\x8c\x53\x6b\x6b\x2e\xf8\xbc\x1f\x11\xf2\x19\xff\xbb\xb9\xa9\x7d\xc8\x48\x57\xd5\x64\x7c\x8f\xf3\xfd\x12\xcb\xf4\x68\xdd\xe8\x36\x4b\x5e\x96\xe3\x42\x12\x84\x1a\x75\x4a\x0b\x39\xa3\xf3\x2d\x36\x3f\x0f\xe7\xd6\x40\x7c\x2e\x12\x38\xd1\xa8\x80\xf5\xc0\xe5\xb2\xa8\xe0\x09\xa5\xe8\x9b\xab\x74\xc0\xa5\x25\xa7\x40\xdd\xfb\x11\x4f\x92\x99\xdf\xa1\x87\x1c\x3f\x07\xa3\xae\xf3\x94\xa6\x29\xe6\x15\x9d\x61\xd6\xf2\x62\xd2\xef\xbc\x2f\x9d\x07\xd8\xbf\x47\x2c\x16\x68\xc7\xb5\x8b\xb9\xb1\xa8\x41\xb5\x17\xd7\x80\x79\x11\x30\x9e\x0a\xe9\x70\x1e\x1e\xae\x6b\xb6\xb3\x5a\xcf\x6f\xfd\xed\x36\x1a\xa7\xb1\x2b\x90\xf0\xc7\x0a\x72\x1f\x76\x67\x8d\x28\xea\x15\x05\xe2\x3a\x5b\x08\xda\xdd\xb5\xe4\x2c\x23\x56\xbf\xe4\x26\x89\x61\x8a\x6e\x5c\x2d\x50\xdc\xa0\x58\x89\x57\xd5\xc5\xb9\xbd\x34\x54\xb6\x15\x42\x18\x4d\x2c\x2c\xd2\xf6\xc2\xee\x2d\x71\x4e\xf5\x71\xc2\xad\x44\x62\x5c\x54\x1d\x53\x0f\x39\x08\x83\x8f\x0e\x0e\x64\x6f\x53\x99\xde\xc4\x17\xf2\x21\xd2\x6b\x92\x48\x8a\x71\x2f\x5f\x28\x43\xd3\xa3\x22\x0b\xb2\xfe\x7c\x04\x50\x03\x04\xa5\x61\x07\x0a\xe4\xac\xb3\x76\x0e\x09\x43\x18\x31\xc4\x0c\x0f\xa5\x52\xaa\xe5\x38\x15\xe2\x8a\x56\x21\x56\xd6\x81\xfe\xad\x98\x67\x9c\x51\x9f\x6d\x2f\x4a\xcb\xc7\x95\x2a\xa9\xc3\xeb\x26\xc5\xad\x66\xb0\x85\x2b\x33\x3f\xd6\xc5\x6b\xa2\x7a\x1a\x3e\xe8\x7a\xc3\x7d\xd7\x1c\xb3\xc9\xa0\xef\xa3\x6e\xd1\x7c\xd0\xdf\xdd\xa8\x8a\x1d\x87\x25\x7e\xa1\xea\x92\x49\x0f\x1b\xa5\x1d\x6e\x30\x01\xee\xda\x92\x88\xf4\x85\xb7\x81\x7e\x67\x19\x6d\xc4\x86\x37\x46\xb3\xe2\x78\xde\x41\x44\x4c\x59\x72\xf7\x98\xe3\x3e\x0d\x48\x74\xf3\xe7\xa0\x7b\xca\x14\xae\xdb\xaa\x26\xca\x89\xd1\x02\xbc\xf9\xf4\x42\x33\xf3\x3c\xae\x03\x3f\x90\x60\xe0\x6b\xbb\x55\x04\x41\x45\xee\xad\xe2\x72\xef\xe4\x41\x1f\x27\xae\x68\x2a\x29\xd2\xf5\x86\x87\x28\xbf\x9d\xc1\x4a\xb0\xb3\x91\x73\xf5\x9e\x62\x59\x88\xa3\x6e\xb0\x3a\x25\x2d\xf4\x11\xde\x0d\x8f\x4e\xfa\xfd\x77\xbb\x7e\x2c\x7c\x5c\xa2\x7f\x31\x1f\x75\x7c\x9e\xbe\x3e\xa4\x10\xec\xe6\x19\x6c\x3b\x12\xdb\xbb\x5c\xb8\xc5\xf9\x5c\x7d\xcd\x47\xed\x76\xd6\xae\x80\xf2\xd3\x18\x17\xc3\x84\x34\x15\x92\x0b\x94\xe3\x50\xce\xaf\xb0\x8a\xa3\xce\xd0\xc8\x98\xaa\xd3\xfb\x4b\x9f\x4b\xa5\x94\x84\xc7\xcc\x51\x11\x3b\x35\x79\x51\x42\x18\xc9\x6d\x81\x84\xff\x14\xb5\xbd\x43\xf7\x8b\xe4\xd6\xc1\x4f\x02\xad\x15\xd1\x5c\x2d\x50\x50\x0e\x2c\x2c\xea\xcc\xe3\x94\x1f\x0b\x91\xce\x54\xa6\xbf\x2c\xb3\x62\xfe\xf8\xac\xb3\x59\x60\x58\x98\xb1\xb0\x9b\x16\xc9\x70\x5f\xab\x0e\xab\x36\x63\xbd\xdd\x8d\xaa\x04\xfa\x11\x27\x0a\x94\xe2\xf5\xb8\xf0\x49\x10\xf7\x18\xc8\xf1\xe8\x93\x57\x1d\xbb\x2c\xf9\xd7\x94\xf6\x38\x83\xf3\xbc\x8f\xda\xbf\x96\xbb\x65\x4f\xbf\x89\x90\x9f\x8a\x0b\x74\xfd\x4d\x75\xde\x7f\x5e\xba\xab\xc0\x59\x9b\x81\xb8\x92\xf0\x54\x74\x84\x74\x50\x92\xea\x6f\x96\x8a\x7a\x69\xa9\xb4\xe1\xc9\x63\x3e\xb1\xdf\x6f\xf0\x9a\x50\x36\x54\x82\x44\xb1\x1f\xb2\x96\xd3\x9c\x53\x0e\x17\x42\x94\x39\xaa\xeb\x75\x64\xf9\xed\x41\x9b\x46\x47\x1b\xe2\xb8\x94\x2a\x31\x83\xc8\x3d\xe3\x6d\x4f\x96\xd6\x35\x52\xfe\xfe\xca\x46\x7c\xe4\x52\x6c\xff\xc0\x82\xbd\xa1\x8d\x43\x54\x93\x49\xd4\xc6\x61\xc6\xc5\xb8\x00\x5e\x89\xfc\x6b\xca\x45\x42\x33\xd7\x8d\x46\x3c\x08\x75\xc0\x02\xa1\xd5\x13\x70\x75\x64\x80\xe9\x2a\xc9\x18\x50\x29\x40\xd4\x05\x0c\xc8\x50\xd4\x44\xc7\x10\xa9\x7b\x66\xa1\x35\xcc\xd1\x49\x16\x40\x47\x06\xbe\xb9\x9f\x20\xee\x3d\x30\x86\xd8\x33\xde\x46\x1b\xb0\x4d\xe0\xc6\xc1\x86\xda\x01\x92\xad\x96\xd2\xd3\xa3\x74\x86\x19\x4b\xf6\xba\x36\xa9\xf2\xcf\xa8\x22\xd1\xa7\x9c\x16\x18\x96\xf7\x4b\x02\x6b\x04\xb2\xe8\x22\xf7\xbb\x1d\x75\xd7\xc9\x61\x94\x0a\x69\x37\x8d\x2d\xa8\x9e\x85\x55\x95\x8a\x95\xd2\x78\x18\x3b\x0b\xbe\x06\x24\xd6\xe0\x00\xf4\x85\x64\x9d\x85\x79\x47\x66\x8a\xbc\x4d\x9e\x50\x67\x7d\x7e\x7d\x75\x56\x7f\xcc\xd2\x50\x7d\x14\xd5\xb7\x87\x11\xa1\xb6\xb7\x41\x71\x42\xc0\xe8\x08\x29\xe7\xe3\xfb\xc8\x28\x69\x62\xa7\x76\x4a\x84\x4b\x5a\x1c\x5a\xad\xed\x94\xd7\x25\xea\x70\x35\xe9\xc8\x67\xe6\xd7\x34\x23\xf2\x1a\x25\xa9\x52\x8f\xe4\x72\xec\x44\x0f\x01\x27\x7c\xe8\x1b\x6f\x76\xec\xfc\xeb\x66\x1d\x34\xd2\x33\x94\x79\xda\x9f\xc4\x18\xba\xb7\xde\xa6\x5f\x60\x2a\xf8\x90\xcf\xb8\x09\x29\x3f\x54\xd2\x41\xc1\xe2\x88\x8e\x2d\xe9\x83\x66\x18\xf0\xd4\xc2\x25\x97\xa5\x9e\x04\x79\x2a\x78\x20\x42\x3c\x3f\x05\x5d\x1d\x66\x58\xc7\x4c\xd3\xff\x25\x12\x68\x54\xb4\x52\xe3\x64\x97\x23\x18\xef\x24\x44\x7a\x39\x2b\x01\x4a\x6d\xc4\x07\x40\xa2\x07\xad\x01\xfa\x90\x8b\xb0\xe7\x1e\xe4\x4c\xca\xdf\x5e\x4b\xef\x53\xc6\xaa\xac\x42\xbd\x95\x72\xa5\x60\xff\xfc\x70\xaf\xb6\xb4\xeb\xfa\x55\x0c\x3a\xfd\x00\x87\xe3\xa4\x9b\xca\x4a\xed\x4b\x50\xe7\x82\xb2\x17\x40\x0c\x9f\xcf\xbe\x07\x6b\x3b\x6b\xfd\x98\xfe\x7b\x3e\x30\x3a\xdb\x9e\x59\x72\x36\x5a\xaa\xb1\xf4\x46\xe8\x61\x82\xbc\xce\x5d\x5a\xe1\x00\xd9\x71\x39\x0a\x5f\xf9\x35\xf3\x64\xa7\x5f\x19\xb3\x1b\x1a\x8b\x84\xbd\xc5\x9c\xf9\x2b\xd9\x0d\x4f\xb6\xac\xfe\x98\xab\xc7\x93\x45\x9f\x5d\x1a\xd0\xfa\xa5\x64\xe3\x1f\x76\x60\xf1\xf2\x3a\xb6\x4b\x89\x30\xdc\xf6\x9f\x49\x92\xb0\xd3\x5b\x4b\xfe\xa9\xcb\x60\xc9\x56\x0e\xc3\x9c\x42\xb4\x7f\xc7\x79\x5e\x3e\xaa\x91\x76\xfc\xe6\x31\x96\x17\x4f\xf8\x11\xf5\xed\x23\x75\x0e\x9c\x2b\xe4\xe1\xbf\x79\xeb\xdd\x16\x30\x90\xbc\xef\x48\x38\x7a\xb4\xf6\xd7\xff\x77\x03\xe2\x7d\xd3\xf7\x60\xbe\x64\x03\xc7\xd7\x0c\xbe\xe7\x91\x39\xfe\x40\x82\x93\xbd\x04\xdf\xd9\x7f\x8f\x86\x88\x85\xca\x8f\x85\x10\xf5\x99\x4d\x29\x4c\xc7\xf5\xed\x7c\xdf\x7e\xf6\xc9\xbf\x25\xc3\x6e\x4f\x55\x3b\x59\x93\x88\xde\x88\xdb\xc0\x66\x23\xb3\xeb\x99\x67\xaa\x29\x49\xd1\x45\x6b\xb9\x07\xc9\xff\xf9\xef\xd8\xc0\x82\xfd\xb0\x55\xeb\x92\x92\xdd\xe5\x69\xd0\x67\xfd\xf3\x70\x3b\x22\x9e\x12\xd1\xf3\xc3\xe5\xee\x92\x38\x14\x42\xab\xc7\xb2\x8a\x95\x1d\x6c\xca\xf9\xf8\x3e\x94\xa0\x82\xd9\x19\xdb\xef\x27\xfe\x2e\xe5\x23\x44\xf7\x8f\x4b\x91\x95\xf6\x74\xa7\x90\x24\xb8\xc0\x70\x09\x4d\xbf\x9c\xb5\x5f\x42\xba\x61\x1e\xed\x95\x6e\xf7\x93\xfd\xc9\x17\x6b\xe7\x19\xb0\x1e\x74\x9d\x61\xa7\xc2\x1d\x41\x7b\xf3\xf5\xe2\x1b\xf0\x6c\x39\xf2\xa2\xd8\x1d\x74\xd9\x0c\x7a\x6d\xed\xaf\x2c\x47\x59\x77\x97\xed\x64\xd4\xdd\x29\x1b\x82\xc1\x7b\xd9\x52\xe3\xed\xe0\xab\x45\xd3\x32\x07\x2f\xbe\x3d\xf3\x4a\x01\x7c\x66\x51\xf0\xb0\x03\x04\x11\x0d\xf7\x75\x7c\x08\x41\xa0\xb9\xcb\xc9\x90\x67\xbb\x41\xcf\xb7\x9a\x13\x72\x60\xd6\xc2\x1f\x49\x16\x81\x87\xba\x6d\xde\x45\xa7\x81\xb0\x47\x40\xb6\x6f\xc6\xb4\xdd\x11\x3e\x40\x5f\xf9\x5d\x7d\xe9\x5e\x57\x5b\xba\xac\xeb\x60\xd8\x05\x9a\xdf\x9c\x32\xbb\x92\xf7\x2b\x6d\x12\xbf\x0a\x39\xbc\xab\x9e\x51\xa1\xd1\x64\x9c\xa8\x55\xf2\xf4\x26\xbf\xe9\x79\x67\x9e\xf6\xd5\xfe\x55\x45\x32\x7a\x5e\xcf\xba\xfa\x8b\xf9\x79\x70\x23\x5e\x2d\x0e\x0d\xc5\x93\x45\x17\xb1\xd9\xa1\xd0\xee\x17\x22\x40\x91\x52\x23\xa3\x4d\xc4\xa9\xdf\xb6\x78\x39\xcd\x56\x61\x5a\x18\x36\x53\x65\x7f\x00\xe2\x97\xb8\x25\x13\xba\xf7\xdc\x20\x95\xfe\x35\xb1\x2f\x5c\x20\x05\x8b\x71\xf1\x16\x5a\xc3\x09\x44\x6d\xaf\xfd\x6a\xb3\x7c\x94\xaf\x55\x2b\xed\xa5\xb3\xa5\x6b\xd3\xc0\x39\xf8\x3c\x22\x94\xe1\x0f\x91\xc6\x2f\x58\x61\x75\x01\x41\x7a\xb2\x65\xe9\xe9\xb1\x23\xa9\x66\x44\xc6\x8d\x27\x27\xeb\xf9\xef\xbf\x1f\x10\x53\x00\x0e\xeb\xaa\x10\xfd\x72\xc4\x7b\x91\x2e\xa4\x76\xe9\x8e\x2a\xbe\x25\x77\x57\x8d\x06\xa4\xd5\x11\x8b\x7e\xf1\xb0\x82\xd0\x39\xc3\x51\x8e\xce\x97\x29\x63\x9a\xec\xa2\xa5\xda\xdd\xe0\x6d\x7a\xf5\x2c\x6a\xfe\x07\xea\xc3\xf7\x7e\x08\x1a\x5a\xfb\xab\xf0\xc9\x84\x14\x06\xd7\x9c\xb0\x35\x63\x80\x69\x2e\xfc\x4e\x63\xf8\xfe\x74\x0c\x3a\x9e\x8f\x3a\x3e\x88\x4d\x2f\x73\x50\x1e\xca\xa5\xbb\xdd\x8b\x36\x4d\xe7\xfc\xf7\x3e\x15\x87\x4d\x93\x48\x3e\x35\xbb\xf1\x67\xba\x1a\x81\x67\x6c\xa9\x13\xa4\x80\x96\x12\xbc\xba\xf3\xd3\x20\x48\x45\x32\x6f\xbc\xdb\x1f\x19\xf9\xaa\xf6\xf3\x1f\x7f\x84\x3c\x53\x3e\xfc\xcc\x27\x03\xf1\x8b\x33\x49\x78\x70\x20\x0d\x72\xca\x0b\x86\xb7\xfa\xab\x94\xf6\x70\xcc\xc9\xef\x9c\x7a\x51\x30\x8a\x95\x70\x49\xf7\xd3\x0f\x99\x47\x3e\x1c\x6e\xa3\x57\xdc\xbd\xcb\xa6\x00\xbe\x17\x6d\x9a\x8f\x86\x12\xc9\xa2\x8b\x04\xc2\x20\x3d\xc2\x40\xd1\x10\xd3\x40\xdd\x27\x7e\xb4\xb4\x8d\x31\xd1\xcc\xf9\x69\x54\x62\xc5\x4b\xf3\xe4\x42\xa5\xcc\x99\xa8\x08\x0f\x91\xa8\xeb\x25\x5d\x80\x71\x6d\xc2\xb7\x82\x24\x23\xe0\xee\xbc\x6e\x4b\x33\xfe\x95\xbc\x9c\x5f\x28\x0f\xb1\x0b\xa5\xd1\x1d\x13\xd2\xf8\xb6\xbf\xdf\x68\x62\xb1\x76\x47\x37\xb3\x15\x6b\xc8\x16\x2c\x84\x21\x3e\x81\x61\xff\x2b\x3c\x60\xe1\xc7\xa7\xea\x5f\xa4\xc0\xb9\x58\x59\xf3\x8f\xea\x9a\xde\x4d\xa7\x8d\xfd\x7c\x97\x09\xcb\x10\x7a\x7c\xeb\x32\xe9\xc5\x9b\x3f\x37\x2f\x2e\x8f\xd9\x0e\x61\xb9\xb5\x82\xd6\xb3\x96\x64\x31\x4e\x80\x8f\x1d\x23\x33\x15\x6b\x38\x79\xd1\xb7\x7e\x18\x39\xd0\xf4\xce\x22\xdd\xd2\xad\xfa\x08\xc7\x66\x4d\x62\xd4\xd0\x28\x6b\x67\x3b\x9e\x0a\x46\xbf\xaf\x5e\x7c\x01\x11\x57\x0d\xaf\x2a\x44\xd4\xa7\xfe\xaf\x0b\x3e\xe0\x33\x27\x64\x62\x1a\xba\xfd\x73\x9a\x52\xde\x2f\x44\x91\xc2\x39\x39\x2b\xfd\x85\x9a\x9c\x8e\xdb\x8d\xad\xe0\x7f\xbd\x02\x2d\xfa\x83\xf8\x1f\x9d\x5f\x7b\xf9\x9d\x6d\x5c\xe0\x21\x15\xc9\x34\xd4\x6b\xf5\xb9\x01\xa9\x18\xf3\xc6\x5f\xc2\xc9\xa7\x84\xbb\x71\x22\x3f\x67\x3e\xa1\x50\xdc\xa2\xce\x86\x61\x58\xad\x73\x78\xb9\x11\x1f\xcb\x48\x78\xed\x8a\x13\x89\x86\x4b\x48\xe0\xe3\xad\x24\xc0\xd5\xf6\x4b\x2f\xd1\x8a\xe6\xe9\xdd\xfa\xac\x3a\xb4\x57\xea\x84\xef\x4c\xe2\xe2\x19\x19\xd8\xc2\xef\x9e\xfe\xd0\x7d\xf2\xa7\xf4\xc4\xf4\x35\x72\x56\x4f\xf2\xa2\x84\x47\x8c\x52\x40\x25\x83\xda\xe5\xfa\xab\xf3\x1d\x21\xd3\xcb\x87\xff\xe6\x0f\x5f\xae\x92\xf4\xad\xf6\x9c\xa6\xcf\xff\xfe\x5a\x1f\x6a\xfe\xa8\xea\x5f\x2f\x7e\x4e\x98\x23\x12\xdf\x76\x3b\xdd\x21\xfe\xf3\x03\xb0\xa1\xee\xf8\xa5\x4f\xd5\xd7\xc7\x82\x22\xbf\x8e\x5d\xd7\x3d\x85\x07\x2a\x12\x22\x4b\xbc\x04\x7e\xaa\x4c\xdf\x89\xd8\xea\x7d\x1d\x45\xbe\x5d\x9c\x5c\x2f\x81\x3c\x00\x5e\x72\xd9\x79\x12\x0b\x97\x13\x0b\x0b\xc5\x45\x96\x4d\x37\x8d\x18\x0d\x2e\x0d\x5c\x3e\x2f\xbf\x4a\xb5\x14\xc6\xb2\x04\x04\x53\x3c\xfe\x43\x20\x3e\x47\xa0\xd7\xc5\x51\x68\x38\xd7\x26\x9b\xdd\x8b\xfa\xdc\x7d\x52\x66\x4c\x90\xb0\xd3\xdb\xe1\xc4\x3e\xad\x20\xbb\x4c\xa1\xdc\xbc\x6a\xc1\x3a\x37\x1a\x21\xf2\x3d\x27\x00\x7d\x50\xc8\xca\xe7\xf8\x9c\x19\xc9\xe1\xfd\xf0\x16\x90\xd1\x24\x54\x36\xb6\x7e\x22\xbb\x26\x13\xca\xc1\xbf\xf9\xca\x25\xb1\xd3\x46\xfb\x6a\xff\x9b\x48\x66\x70\x0b\xe3\xd9\xf5\x80\x9f\x67\x74\x3b\x07\x02\xff\x0b\xcc\x92\x4f\x23\x69\xed\xef\xf7\xbc\xb8\xd4\xd6\xc4\x2e\xe2\xd9\xac\xc0\x6d\x72\x8c\x56\xea\xef\xbf\x6b\x39\x4a\x84\xfb\x4d\xc2\x40\x31\x07\x52\x1b\x72\xed\x65\x19\x99\x2f\xf2\x35\x62\xbe\x6c\xf4\x7c\x60\xeb\x23\xfe\xba\x93\xe0\x83\xdd\xe3\x7d\x16\x76\xe4\x86\xcb\xfe\xfc\x69\xd9\x90\x82\xa1\x14\xc6\x25\xf1\xf5\xc5\xd5\x0e\xfe\xc3\x1a\x51\xf5\x9c\x1a\x1c\x13\x05\xb5\x26\xca\x3a\x98\xb8\x49\xc5\x9f\xe0\x2b\x05\x1c\x45\xc4\x72\x0b\x6b\xbf\xbb\x17\xfb\xcb\xaf\xf4\xa3\xc8\x06\x4d\x40\x90\x15\xf4\xdc\x63\x06\x83\x9b\xba\xdb\x23\x3f\xbe\x9c\xe9\x2f\x72\xb3\xc4\x47\xa6\x11\x4a\x3f\x4e\x74\xd9\xf8\x37\xe3\xb0\x23\xd3\xfb\x5f\xbb\x57\x70\x9d\x04\xc2\x1c\xb1\xe4\x47\x2a\x9c\x8b\x15\xc2\x6d\xe1\xfb\xf4\x5a\x51\x93\x90\xbe\xa7\x18\x47\xd8\x9c\x83\x2c\x6f\xbc\x94\x87\xda\x43\x96\x46\x6d\xf6\xc7\xc7\x00\x5e\xe7\x6b\xbf\x44\x10\x15\x3c\x35\x09\x41\x85\xd1\xea\xac\xaf\x45\x4b\x98\xa7\xdb\xf7\x9d\xca\x4f\x30\x46\xf3\x35\x6c\xc7\xd6\x1c\x1e\xba\xa7\x64\x8e\xb1\x3e\x6b\xc4\xc7\x7a\x93\x0c\x6e\x91\xfe\xaf\x91\xf4\x4d\xaf\x95\x8a\x85\x40\xc8\xf7\xf5\xdf\x9b\xd4\xff\x9b\xac\x37\xfc\xcc\x96\xcd\x63\xee\x7f\x70\xf4\xdc\xfc\x67\x2f\x71\x37\x46\x82\x0e\x00\x5e\x22\x58\x1d\x77\x99\x00\x4e\xa7\xfd\xf2\xf2\x53\x44\x98\xa1\xcd\x43\xe3\xf1\xee\xda\x8e\xf3\xbf\xf5\x86\x4d\x0e\x6d\xd9\xbf\xd9\x84\xae\xa6\xbf\x89\x64\xd2\xe9\xe5\x30\x73\xcd\x1f\xd1\x0d\x9f\xb1\xf4\x3a\x70\x41\x69\x62\x0c\x1e\xdd\x7a\xcb\x6a\xe2\x4c\x9b\x93\xc5\xaa\x43\x77\xa5\x1e\x6e\x9d\xd2\xeb\x2b\xe3\xaa\x63\x5d\x39\xcc\x88\x3e\x85\xf9\x65\x02\x2e\x65\xc0\xc9\xf8\x73\xd5\xeb\x00\x1f\x66\xa5\xff\xe2\x0e\xa1\xac\x49\x28\x32\xd0\x24\x9e\x20\x01\x7e\x2e\x8e\x51\x24\x86\x94\xe1\x7f\x77\x65\x37\xde\xd8\xfb\x44\x2a\x3a\xc0\xd9\x10\xef\xae\x1a\x72\x41\xd9\xc9\xbd\xe4\x81\xdc\xd8\xc0\xc5\x1e\x69\x14\x4f\xe4\xac\xc0\x0c\x35\xaa\xc4\x6c\x61\xf0\x56\xe2\x19\x00\xe8\x25\x32\x48\x58\x50\xc1\x63\x5f\x7f\x42\x00\x46\x86\x7b\x1e\x22\xba\x7c\xa7\x9d\x47\xa8\x0c\x82\x1f\x60\x6f\xbc\xb8\x37\x96\xf5\x11\x1d\xf9\x5e\x92\x53\xc5\x7d\x78\x19\x7b\x46\xd7\x41\x8c\xfb\x07\x6c\x24\x77\x09\xc3\x30\x5a\xd6\xa5\x32\x1c\x78\xd2\xfb\x86\xd6\xe5\xee\x7d\x4a\x0a\xfd\x40\x3f\x86\x79\x17\x92\xca\x2a\xec\xe6\xce\x56\xff\xac\x20\xd0\x95\x45\x28\xd3\x13\x0a\x8c\x92\x3d\x6b\x2e\xd5\xb0\xe7\x38\x93\xc7\x51\xeb\x3a\x67\x8a\x6f\x3c\xc3\x2e\xe7\x56\x2f\xfd\x15\x34\x39\xbf\x4a\x27\xc6\x78\x23\xa2\xe1\x5c\x72\x54\xf3\x4c\xa0\x78\x40\xfa\xbe\xc5\xef\x37\xea\xac\x13\x45\x53\xa7\x30\xbf\x7d\x04\x52\xd2\x04\xb8\x8d\xf2\xc8\x19\x9d\x85\x61\xb4\x14\xba\x2a\xf2\xdf\x8b\x8b\x2c\xe7\x65\x7c\x86\x25\xb7\x37\xe6\x36\x28\x93\x9e\x37\x5c\x56\xa9\xb5\xa1\x3b\x1d\x32\x0e\x58\x9a\x89\x64\xd1\x8e\xac\x28\x0c\x99\x6f\x3f\xbd\xda\x1f\x97\x44\xae\xd7\x10\x27\xad\x68\xdf\x55\x98\xe4\x34\xec\x6b\xb6\x20\xd0\xf5\x98\x44\x99\xc2\x3b\x86\x39\xf1\xe9\x7f\x8e\xdf\xad\x1f\x6b\xe7\xf4\x05\x0a\x52\xe4\x53\x3f\x89\x9b\x2f\x89\x57\x7f\x42\x8f\xfa\x98\xd5\xfe\x4f\x12\x1d\xb3\x9b\x4e\x9f\x3a\x41\xa0\x6a\xef\x5f\x8d\x5d\xef\x0f\xed\x73\xa1\x37\xbf\x82\xd1\xf7\x2e\xdb\xac\xb4\x41\xdd\x08\xad\x19\x84\xfc\xa5\x5f\x06\xa3\x16\x7f\x7d\x9c\x5e\xf3\x97\x2c\x23\xf4\x8b\xc3\x65\x37\x3c\xb1\xb5\x15\xb5\x53\xf1\x3b\xcb\x3e\x17\x14\x7f\x88\x25\xd3\x0e\x5c\xd0\x97\xec\xb4\x4e\x93\x69\xd9\x3d\xf4\xc1\xf1\x91\x62\x5d\x70\x49\xab\x07\x71\xe6\x8e\x64\x76\x44\x95\x47\xf6\xa0\x4d\x47\x42\xf8\xad\xdc\xd3\x11\x04\x9b\xc0\xcf\xbd\xed\xba\x2d\xda\x82\x44\x0f\x04\xed\x2a\x26\xd6\xe3\xf8\xc3\x6f\xff\x66\x1b\x31\x4c\x4f\x8f\xb2\xf1\x7a\x54\xef\x11\x0b\x04\xcc\x13\xa7\x2f\x27\xea\x11\x30\xc6\xff\xe5\xfe\xae\xff\x16\x79\x42\xbd\x8e\x75\xe0\x70\x9f\x72\xea\x07\xc7\xbf\xcc\xc8\xeb\x4e\x0f\x48\xa3\x32\xe9\xd9\x3c\x7b\xcf\x0d\x60\x4a\x36\x99\x68\x79\xca\x69\x98\xe6\xd7\x96\xb4\xb3\xbd\x31\x16\xe1\x42\x33\xe6\xdc\x84\x83\x36\xf4\xf7\x73\x16\x08\xf8\x43\xf2\x32\x74\x95\x6f\x54\xf4\x31\x83\x08\xcd\x55\x69\x98\xbc\x8f\x9a\x5b\xbb\xed\xc2\x8f\xab\x9f\x08\xe7\x5b\x1e\xe4\x45\xdf\x84\x4c\x93\xf7\x57\xce\x2f\xec\x08\x81\xa3\x3d\xee\x8e\x64\x35\xa4\x12\x8c\xf7\x52\x76\x5d\x54\x7d\x7e\xc0\xf4\xbf\x85\x98\x24\x42\x7c\x9f\x73\x7a\x53\x93\x0b\x0a\x89\x07\xd1\xc9\xb3\x02\xf5\x69\x8f\x86\xe3\xf5\x82\x13\x22\x63\x16\x7d\x25\x65\x75\x73\x3b\xbb\xd9\x82\x75\xea\xd1\x15\x2d\x28\x33\xa7\x98\xb3\xb9\xb7\x16\xc0\x6d\x75\x6b\xd2\x8b\x3f\x46\x85\x73\xff\x8d\xfd\x34\x5b\x97\x85\x6a\xba\x2c\x1f\xcd\xa4\x59\xad\x13\x9b\xfc\xf6\x88\x4d\x7e\xa9\xdc\x1c\x4d\x78\x8d\x89\x42\x38\x17\xab\xeb\x3c\x0a\x06\xd4\xc7\xec\x67\x50\x75\x74\x6e\x3b\x7b\xd3\x5e\x81\x15\x9c\x74\x6b\x9a\xd2\x7d\x39\x14\x50\xbf\xc7\x0b\x0c\x1f\xf8\xe9\x7c\xfd\x2e\x0c\x28\xb9\x11\xab\x3b\x62\xff\x6c\x04\xb9\xf8\x3c\xa5\x55\x8e\x7b\x14\xa2\xd4\xf5\x95\xbe\x7e\xb4\x34\xf2\x6a\x3a\x62\xef\xf8\x51\xf5\xb2\xc4\x2a\xe7\x4d\x1c\x8b\x36\x82\x2c\x7a\x45\x8b\x72\xce\x3d\xa6\x77\xf9\xd8\xa0\x23\x7e\x64\x64\xea\x65\x60\x5d\xf9\xf8\xa8\x53\x61\x30\x13\x3b\x48\xa4\x3a\xe0\xf4\x30\xe3\x62\x56\xc1\x07\xb2\xec\x22\xe0\x86\xb8\x13\x18\x3d\x37\x7a\x69\x59\xf0\x3b\xb9\xb0\xf0\x93\x76\x5d\x31\x65\x22\xe1\x9d\x59\xf0\xce\xcf\xe7\x7b\x7f\xf6\x50\x5d\x94\x81\xc5\x9c\x7c\xf8\xbe\x5c\x02\x64\x55\x1c\x0a\x89\x8f\x5b\x96\x72\xeb\xee\x63\x2c\xfd\xf9\x6c\xf0\xf1\xef\x57\x0a\xc1\xb3\x89\x16\xd7\xe4\x50\xe6\xad\x69\x67\x7b\xb5\xa8\xfc\x58\xb1\x46\x33\x32\x4f\x0e\x9b\x47\x26\xff\x06\xb9\x35\x83\x58\x25\xf6\xba\x70\x78\xcb\xa7\x92\x56\x59\x7e\x7f\x1a\xad\xd6\x76\xf8\x64\xe8\x72\x97\xd8\x14\x4a\x37\x1f\x87\x06\xad\x6a\x23\x18\xcb\x5e\x51\x81\x63\x1a\xfa\xc5\xf1\xb1\x1c\x40\xab\x9f\x9c\xc6\xa8\x68\xad\x5b\x8d\xb8\xa7\xd4\xf0\x8d\x2b\xd4\xef\x9b\x48\x64\xa6\xd9\xe5\xdf\xfd\x97\x7e\xe9\x1f\x6e\x8a\xef\xa8\x87\x83\x1e\xd9\x3d\x8d\xa7\x24\x95\x5f\x91\xda\xf7\x66\xe7\xaa\x72\x4f\xa6\xfc\x6e\x49\xd1\x93\x53\xac\x74\xfa\x6d\xf4\xd4\xb6\x6f\x9f\xe6\xaa\x52\x8f\x3f\xde\xdf\xa0\x44\xac\x5e\xfe\x1b\x73\x1d\xab\x5d\xb4\x07\x41\x6d\x31\xa4\x81\xc3\x75\x94\xa2\x93\x72\x43\x37\xb9\x5d\x69\x97\xf1\xcc\x85\xd1\x22\x4a\xca\x35\xea\x92\xd7\xe5\x93\xec\xcf\x66\xd3\x82\xa9\x7e\x89\x17\x54\x70\xc7\x35\x87\x8c\x2b\x87\x1e\xf6\x26\x69\x79\x82\xf9\xe8\x80\x80\xe3\x88\x34\xc9\x93\x6a\x74\x31\x4f\x52\xd9\x7a\xd4\xca\xd0\xd1\xe1\x20\x38\xe5\x2a\xa5\x14\x16\x0d\x97\x78\x86\xb2\x26\x15\xc0\x9b\x5f\x48\x0a\x04\xfb\x77\x5f\xaa\xa8\x04\x73\x1e\xd2\xd3\x97\x33\xf9\xbb\x0b\xac\x2e\x10\x9d\x8b\x2f\x6f\x69\x7a\xf1\x4d\xab\xc4\x0e\xdb\xf0\x00\x2f\x49\xdd\x0a\x2f\xa8\x90\xa9\x95\x05\x24\x29\x40\x70\x23\xc8\x45\x64\x2e\xf7\x84\xca\x4d\x50\x72\x97\x31\xf2\xb6\xed\x48\xed\x69\x53\xe0\xf1\x70\xfb\xb6\xfe\x26\x3b\x8e\xae\x11\x0f\x72\xc4\xfb\xa8\x46\xc3\x25\x0a\xc0\x67\x05\xf5\x50\xe4\xbb\xc6\x27\x6a\x91\xe2\xd2\xd8\x91\xdb\x38\xec\x08\x2b\x76\x8a\xe9\xe1\x89\x11\xa0\xf9\x55\xe7\xb6\x5d\x67\xb7\x55\x68\xb8\xec\xfe\x2e\xa0\x2e\x0c\xf4\xbc\xd9\x51\xdf\x6d\xe7\x29\x03\xc0\x35\x08\x2c\x7d\x4f\x14\x06\x6d\x79\x55\x57\xb0\x3c\xe5\x30\x7d\xe7\x45\xd0\x7b\x17\x12\x3b\x92\x25\x30\x78\x0f\x13\xb1\xf7\xe7\xb3\x0e\xae\x68\xea\x88\x6e\x90\xc0\x53\xfb\x4f\x77\x58\xa5\xf2\x55\x01\xfd\x55\x3a\x80\x5f\xed\xcb\xd9\x9c\xc9\x7a\xa3\xc0\xad\x1d\x46\x1b\xe7\x29\xee\x02\x89\x3a\xe1\x00\xdc\xb4\xed\xe9\x5e\x67\x63\xfc\xbb\xf0\x75\xd9\x2f\x0f\x5b\xac\x0a\xc1\x8f\xac\x43\x2e\xe3\x10\xba\x7f\x0a\x33\x63\x1e\xca\xda\xbc\x75\x78\xcb\x3a\x44\x73\xc5\x5b\x78\x5d\xd7\x39\x33\xc1\xfa\xf8\xb2\xaf\xe6\x02\xda\x1b\x87\xf6\x25\x50\x83\x63\xfc\x7a\x7f\xe7\xe5\xf2\x21\x8d\x96\xfb\x14\xc9\xbf\x02\xc8\xc7\xe6\xc5\x17\xa9\x16\x43\x58\xc5\x9f\x56\x9c\x74\x6a\x94\x2b\xff\xfb\x85\x24\xbe\xf1\xcc\x07\xd1\x61\x7b\x81\xe2\xb6\x8f\x3e\x7b\xe4\x79\xc7\x1f\xe0\x77\xc2\xde\xd1\x20\xe7\x7a\xf6\xd7\x47\xfa\x02\x9b\x93\x3f\xfb\x6f\x2d\xa5\xc1\x5e\xea\x54\xb8\xeb\xe4\x04\xd9\xb4\x5f\x08\x0d\xf1\xfc\x74\x19\xfa\x61\xd5\x50\xdc\x0f\xf1\xf6\x44\x00\x0a\x79\x44\xb5\xac\xcc\x74\x8f\x9c\xc6\x14\xf8\x12\xf9\xa9\x23\xbf\x49\x76\x49\xc9\x0e\x3f\x45\xa8\xb9\x28\x16\x6a\xe0\xd9\xe9\x1a\x03\x85\x68\x94\x29\xb4\x62\x9e\xf9\x38\xd8\x08\x21\x1c\x75\x6a\x20\x7b\xda\x33\x2a\xe4\x5c\x35\xb7\xc6\x67\xa5\xa5\xc8\xee\x97\x9e\x88\xeb\x9d\x8b\x34\x32\xbb\x3e\x2b\xae\xf9\x72\xd7\x54\x51\x76\xd7\x3f\xea\xb6\x5e\xce\x4d\xac\x21\x5b\xe1\x3e\xef\x7b\x51\x08\x0b\xf1\xdb\x5d\x6a\x73\x2e\xa8\x1e\x53\xc1\x81\xe6\xf8\x47\x00\x5a\x89\xf5\x5a\xb2\x17\x03\x01\x73\xaf\x14\xd8\xb0\xf9\xc2\xc4\x41\xbe\x05\xf9\xf4\x5f\xf6\xaf\xe7\x78\x53\xae\x67\x4f\x8e\x42\x2b\x2e\xb2\x3b\xc3\x3c\x3f\x9d\xed\xbb\xa7\x64\xee\x94\x8f\x9c\x71\x85\xf5\x5f\xf6\x6f\xd8\xbd\xca\xa5\xe0\x92\x0b\x6f\xaf\xc5\x92\x2e\xec\x08\xaa\x13\x77\xc7\x5c\x68\x87\xea\x0d\xcf\xea\x8d\x46\xf2\xf7\x50\xfe\x1b\xc3\xed\xf3\xa2\xb3\xc1\x17\x57\x8b\x86\xbd\xa7\xe2\x50\xc8\x60\x3c\x54\x1c\x09\xa3\x2b\xe2\xa3\x84\x6e\xf7\xb6\xac\xdd\xb9\xc8\xee\x3c\x5d\xaa\x5a\xfb\xcd\x59\x97\x41\x1a\x76\x1b\xea\xd8\x7b\xd3\xd3\x44\x2d\xe3\x6a\x11\x95\xf1\x00\x16\x49\x7a\xb2\x05\x43\x7c\xb6\x25\xf6\x0b\xe0\x63\xa9\x90\x96\xcd\x12\x87\xa1\x96\x3c\xab\xa0\xcd\x86\xbd\xba\xf7\xf7\xb5\x5f\xb4\x57\x46\x69\x04\x1e\x1e\xd5\x8f\x5d\xd4\xfb\x02\xf6\xe9\xd6\xfb\xc3\xed\xf3\x9a\xdc\x49\x88\xbb\x3b\xff\x64\x5a\x21\x8a\x0f\xa9\x1a\x29\x8e\xfb\x02\xc8\xf9\x02\xc0\xc1\x67\x9d\x8b\x6f\xc3\xcc\xfe\x3c\xae\x3e\x0e\xb3\xaf\xed\x1e\x66\xce\x88\xf1\x8b\x4a\xe9\xb2\x86\x09\xdf\x1a\x00\xb5\x89\x36\xcc\xdb\x8f\xd8\x21\xee\xbb\x2e\x7d\x51\xb0\xe9\xec\x62\xf1\x6f\x61\x8d\x91\x9a\x24\x47\xe3\x36\x6f\xd8\x1c\xbf\xa8\xc3\xeb\x23\xf9\xc5\xce\xb0\x92\x0c\xff\x60\x7f\x8b\x96\x02\x2a\x37\x5e\x34\xfc\xf2\x50\x0b\x7b\x2b\xc1\xc4\x76\x96\xc4\x71\x33\xb9\xbd\x31\xab\xa1\x3b\x44\xc2\x4b\x11\x19\xb4\xe3\xf0\xe4\x1f\x25\x0d\x7f\xdd\x61\x57\xb7\x7c\x58\xfd\x7b\x6c\x01\x96\xed\xab\x8e\x1b\x57\x57\x9d\xad\x33\xb2\x22\x14\x82\x98\x00\x51\x2f\xf9\xd0\x45\xd1\x1a\xb7\x1a\x4d\x11\x8d\xd3\x93\x08\x6d\xf9\x4c\xc9\x52\xf9\xcc\x35\xd6\xb5\xae\xf0\x9a\x5b\x64\xcf\xbe\x37\x7d\x66\x0b\x2e\xa8\x71\xab\xb9\xaa\xbe\xb5\x73\xe8\xbd\xb0\x14\x04\x11\x57\xfb\x7a\x0d\x54\x3b\x8d\x98\x59\xa8\xd6\x76\xce\x60\x02\x10\x5b\x0e\xf5\xc7\x85\x77\x25\x4b\xc5\x58\x32\x87\x3b\x62\x0d\x6f\x5c\xa9\xd3\x51\xd7\x8d\x0d\xd8\xa3\xe5\x1d\x08\xb3\x19\x56\x94\xf3\xff\x2f\xac\x0d\x03\x15\x60\xa0\x09\x73\x2d\x44\x07\x19\x8c\xc4\x06\x3f\xbe\xbc\x3e\xc9\xf4\x6c\x39\xbf\xca\xdc\x42\x1a\xf3\x78\xfe\x8d\xb7\x58\x46\x66\x5c\xdc\xe7\x8e\xf7\x52\xda\x16\xc1\x5a\x26\xfe\xbe\xb6\xce\x5a\x2a\x5f\x88\x0f\xd9\x41\x1b\xc0\xc2\xc0\xc8\x27\xa1\x1a\x33\x63\x8f\xe2\xca\xce\xf6\x3d\x54\x57\x43\x4e\x93\x6c\x4a\x47\x5e\xb0\x24\x4e\xd6\xea\xf8\xb2\x16\x9c\x50\x4b\x7e\xa3\x3e\x69\x19\x91\xf0\x09\x08\xf0\x23\xc9\xe6\x91\xde\x7f\xf7\xa4\x36\x7d\x70\xf1\xb9\xdf\x28\x6c\x76\x23\xc2\xca\xb6\x77\x54\xd3\xfa\xf8\xd7\x69\x46\x33\xed\xab\x17\xac\x9b\xb5\xbf\x39\x01\xbd\xa5\x51\x01\x28\x84\xff\x26\xc9\x7e\x3d\x70\x5c\x8d\x1b\xcd\x38\x2f\x93\xcd\x53\x4f\x93\x73\x2b\xfe\xf9\xbb\x20\xc6\x9f\xd3\xf9\xd6\x7f\x5e\x6f\x3b\xdb\x05\xd7\x17\xd4\x6b\xdd\xf5\x4e\x97\x73\xd2\x5a\x4b\xf4\x4f\x46\x4a\x8d\xd8\xa9\xb9\x3d\xd2\x0e\x14\x79\x10\x67\xee\xd5\xab\x97\x70\x70\xbb\x36\x95\xb3\xa5\x68\xea\xf7\xed\xdd\x96\xdb\xf7\x3a\x95\x65\x8a\x67\x8a\x45\x80\x1b\x1d\x99\x44\xa1\x61\x8d\xd3\xe7\xbd\xfc\x63\x5f\xb3\x5b\x08\xeb\xc0\x97\xca\x76\xcf\x56\xf7\x57\x6c\x62\x18\xfb\x2f\x3f\x0a\x4f\x04\x6c\x49\x64\xd1\x8e\xbb\x94\x94\xe4\x21\x54\xc0\x29\xe1\x71\xbd\x9f\xd1\xf0\x08\x50\x89\x4d\xb9\x0d\x54\x8a\x61\x1e\x58\x16\x97\x7d\x54\x75\x05\xde\x48\x50\x50\xfa\xab\x17\x71\x4b\xcb\x01\xd7\xc0\xef\xaf\x55\xd0\xec\xd1\x71\x1e\x75\x65\xa1\x29\xa2\x57\xc3\x97\x3c\x48\x37\xb2\x88\xfa\xbc\x6a\xe6\x40\x58\xfe\xa5\xac\x79\xfa\x84\x3f\xf3\x45\xda\xda\x5a\x9c\x53\x01\xf6\xd7\x0a\x83\xb7\x72\xae\x54\xdd\xc6\xda\x4f\x19\x4d\xd1\xdc\x8a\xca\x0b\x16\x08\x98\x51\x83\x82\xef\xab\xe1\xe6\x24\xbc\x12\x9b\x70\x1b\xa8\x7c\xa5\x16\x4d\x90\x39\x60\x50\x83\xb3\xae\xd9\x73\x80\xce\xed\x61\xcf\x01\x63\x23\x4a\x89\xc8\xb1\xae\xc2\xc0\xdb\x0d\xca\xff\x5d\x61\x2b\x43\x01\xfc\x34\xc2\xff\x60\xcc\x44\xdb\x4e\x8f\x6d\xe2\x38\x3b\xf6\xe1\x2e\xa3\x12\xcd\xab\x2c\x74\x35\xce\xed\xa5\x0d\xad\x9b\xfd\xb7\xaa\xa2\x03\x3a\x7f\x25\xfd\xbf\xfa\xff\x52\x59\x48\xab\x03\xaf\xaf\x32\xb0\xfa\xc5\x45\x7d\xbb\x6c\xf9\x55\x9f\x34\x44\x69\x0e\x6a\x06\xc4\x2c\x52\xc4\xea\x20\x05\x76\x09\xaa\xcb\x67\x84\x4f\x2c\xc7\x30\x8b\xc1\x19\x41\x41\xc0\xf8\x07\x42\x0a\xf8\x2e\xa5\x31\xef\xac\x1d\xc9\x8f\x79\xd3\xd8\xa7\xfc\x5f\xdf\x5a\x23\x31\x58\xee\x61\xc8\x34\x89\x77\x19\x49\x16\xed\xf8\x62\x6b\x8d\x12\x82\x01\xc0\xee\x14\xdf\xa3\xfb\xa8\xa9\xc3\x5f\xdc\x1d\xb9\xb6\x12\xc7\x88\xd7\x41\x22\xb8\xde\xe2\x16\x48\x0a\x4e\xf1\x33\x0d\xb3\xe1\x09\xd3\x10\xc1\x5e\x02\xe7\x2e\x41\x7c\xec\x5d\xe6\xd6\x5c\x32\x3e\x46\xef\xbf\x49\xa3\xba\x49\x53\xa3\xf1\x45\x01\x5c\xc5\x2b\xf1\xda\xb0\xce\xe1\xfa\xa8\x5f\x4e\xfb\x02\x40\x36\x9e\xcd\x88\x0b\xaa\x27\x13\xcd\xaf\x12\x95\x02\xdb\xfc\xe4\xf3\x93\x0a\x49\x30\xe9\x92\x02\x32\x80\x22\x00\xd0\x00\xbe\x6b\xb2\x93\x2f\x1b\x3f\x67\xe7\x7b\x5a\x7b\x5c\x17\x2d\xf1\xe5\x31\x6b\x90\xc0\x57\xc7\x0d\xb4\xe3\x1e\xfa\xb3\x95\x89\x65\x5a\x79\x00\xe5\xe0\xfd\x8b\x31\xee\x85\x10\x45\xd7\xa8\x16\xb6\xe0\x16\xee\x87\x87\xbc\x52\x67\xbc\x50\x08\xf8\x8f\x41\x22\x03\x14\x73\x89\x13\x00\xae\x33\x47\x53\x4d\x92\x77\x04\x33\xa9\xd1\x62\xdd\x5d\x13\x3f\x1d\xd2\x89\x9c\x2a\x58\x78\x23\x60\x6a\xc6\x40\x07\x2f\xe9\x01\x33\xb2\x49\x88\x8f\x65\x68\x88\x6f\x54\xc3\xe5\xf7\x45\x5d\x91\x42\x2a\xe7\x93\x57\xbf\xb3\xfa\x85\xc7\xc5\xf0\x1f\xe6\xf5\xc9\xbe\x1e\xb6\x53\x92\x93\xf5\xfc\x65\x5c\xa5\x4c\x3c\xba\x0e\x96\xc6\x11\x4e\xaf\x32\x69\x35\xeb\x5b\xd0\x79\x3d\x81\xf7\x44\x11\xa9\xc6\xdf\x41\x40\x62\x25\xa1\xb0\xea\xbb\xf4\xdc\xc7\x08\x72\xff\xd2\x1b\x57\x60\xba\xff\xdb\xf8\xe9\x1d\x50\x4f\x8c\x95\x14\x74\xfa\x57\x70\x49\x7c\xbc\x02\x80\x23\x62\x4c\xcd\x68\x99\xa2\xeb\x3c\xea\xe0\xbf\x70\xda\xf1\x79\x23\xc1\x91\xce\x15\x21\x56\xa7\xd4\x9e\xc8\xb3\x59\xca\xa8\x54\x27\x61\xe0\x8e\x27\x89\x2f\xbe\x69\x20\xed\x85\xb0\xf7\x9f\xe3\xbe\x6e\xad\x84\xb2\xd2\xf6\x1d\x43\xa9\x69\x25\x53\x37\xd7\xcd\x2e\x0c\x27\xf0\x7a\x63\x54\x10\x0a\xe1\xe7\xf4\xf1\x49\x31\x02\x43\x9b\x84\xaf\xf5\x48\x48\xa2\x14\xc9\xfe\x1f\x12\xce\x2a\x2a\xea\xf7\xeb\xe2\xdf\x19\xba\x07\x04\x06\x74\x90\x6e\x49\x05\x06\x90\x16\x91\xee\xee\x10\x41\x90\x54\x69\x18\xe9\x90\xee\x6e\x45\x5a\x42\x9a\xa1\x1b\xe9\xee\x46\xba\x7b\x98\x77\xfd\xfe\xef\xc5\x73\xf7\x5c\x9c\x75\xd6\x3e\xeb\xb3\xf6\xc5\xde\x6f\x38\x41\xaf\xd7\x3f\x3c\x22\x85\xff\xdc\x1f\xc6\x72\x02\x62\x9f\x1f\xe3\x01\x49\x15\x3d\x26\x71\x43\xf5\xac\x78\xea\xbf\xc4\xf7\x0c\x34\xd8\xe1\x0d\xd5\x89\x35\xc7\xf6\xac\x07\xca\xb3\xd0\x47\xf3\x69\xbf\xa2\x67\x0a\x74\x10\x5c\x96\xd4\x98\x3f\xed\xab\x5e\x47\xd0\xb3\x4c\x4c\x09\xcc\xc7\x23\xba\xe8\x5e\x9d\x13\xaf\xef\xfe\x38\x6d\xc7\xdb\xb6\x8d\xe8\x6a\x01\xe1\x74\xbe\x42\xc5\xd0\x68\xa5\x94\x75\x49\x2d\x8a\xc6\xea\xb4\xdf\x47\x5a\x5a\x06\x81\x36\xfb\x12\x35\xdb\xe8\xfa\x95\x04\xf0\xb7\x55\x77\xc8\x09\x36\x50\x83\x6f\x8b\x0c\xa1\xb3\x81\xbf\x6d\xf7\x72\xe7\xbe\x9a\xc5\xee\x24\x2b\x6f\x17\x9a\x70\x44\x29\xf2\xcb\xce\x4b\xcb\x0b\xff\x5a\xd8\xbc\x88\xa9\x18\xc9\x5d\xc5\xb5\xe1\x3e\x5a\x34\x55\x35\x2c\x19\x6d\x59\x2a\xa8\x7c\xc4\x02\xb7\xff\xee\xe1\x89\xf1\x3a\xc1\xbf\xa8\x52\x0d\x7e\x8c\x82\x3c\x94\xc1\x7e\x81\x21\xeb\x8f\xd7\x23\x41\x0e\x8d\xe8\x2f\x21\x5d\xdb\x9c\x03\xcc\xa9\x91\x1f\x0e\x91\xf4\x13\x1d\x06\xf3\x8d\x99\x33\x4b\x62\x36\x99\x17\xac\x16\x68\xf0\x37\xc9\xd1\x6f\xb8\xef\x81\xd5\x18\xec\xb8\x59\xcd\x7c\xea\x1f\x38\x74\xa5\xd7\x48\x4c\xe0\x2c\x81\xfe\x3d\x7f\xf0\x67\x3c\x67\xba\xce\x56\xc9\x10\xc4\xce\x97\xeb\xb1\xf8\xef\x97\xb8\x06\x5e\x6a\x04\xff\x21\x00\x97\x58\x32\xe1\x84\x98\x0d\x5b\xba\x8f\x36\xce\x9c\x0d\x30\x37\x41\x58\xdf\x66\x77\xc5\x34\x6a\x69\xa9\xee\x09\x8a\x0b\x1c\x44\xb8\x52\xbd\x08\x4b\x14\xd2\xbc\x5a\x3a\x0c\x6c\x21\x2a\xa3\x41\x07\xfe\x47\x28\x4c\x1f\xc9\x83\x44\xd4\x5a\xdf\x53\xd0\xe5\xec\x83\x9c\x86\x71\x29\x4f\x42\xe2\x0e\x73\xf0\x04\x6f\xf0\x12\x7a\x80\x63\xc9\x33\x8e\xef\xd8\x75\xb2\x7a\xdf\x54\xef\xbf\xb1\xe8\xe0\x2e\xc1\xa9\xe6\xb4\x43\x8f\xc9\x80\x64\x56\xf9\x80\x66\xea\xbc\xbb\x35\x5a\x73\xe8\xb0\x25\xe5\xdc\xe6\xe5\x9c\xc6\x1d\xf4\x3d\x2a\x22\xeb\xbf\x8f\xbc\x1d\x98\x32\x44\x38\xe6\xb0\xab\x8b\x7c\xca\xaa\xf6\x1f\xc4\x5c\xd3\xc8\xae\x98\x46\x23\x2d\xd5\x7f\xc4\xe2\x41\x3d\xa3\x77\x42\xcc\x3a\xb3\x4a\x73\xd7\xca\xa9\xda\x39\x5f\x2e\x0a\x76\xef\x58\x21\xb8\x3d\x49\x9d\xf8\x1d\xce\x10\x7f\xb1\xf2\x73\xba\x7d\x92\x24\xc1\xa8\x83\x2f\x54\x3a\xc4\x92\x7a\x18\x74\xa9\xbc\x05\x43\xc9\x89\x11\x64\x32\xec\x54\x2f\xb1\x10\x8c\x66\xcc\x91\x0e\xa5\xd6\xa5\xbd\xa3\x69\xb7\xc7\xb4\x62\xec\x7b\xff\xad\xba\x6f\x42\x76\xf5\xda\x20\x44\x82\x52\x9a\xd7\xa2\x25\xf3\x8e\x38\xb0\x2c\x1b\xc7\x77\x59\xa3\x03\x5e\x3c\xb3\xf6\x8e\x1c\x11\x1a\xf1\xec\xe0\x91\xb5\x50\x29\x4e\x21\x75\x93\x1a\xd3\xe6\x60\x11\x4d\x6c\xdd\xa3\xd2\xd1\x8a\xcc\xac\x74\xcb\x11\xb8\xa2\x85\x49\x92\xce\x87\x6b\xfc\xe7\x08\xe4\x03\x47\x8f\x6b\x41\xaa\x27\x6e\xf3\x69\x27\xdf\xf3\x20\x84\xfd\xca\xa2\x7d\x96\x83\x77\xe0\x91\xce\xe6\x26\xae\x19\x73\xf2\xf2\x76\x75\xfc\xf9\xca\x71\x64\xd2\x0d\xda\x42\xde\x78\x94\xa6\xca\xff\x66\xb4\x97\x9c\x96\x4a\xc6\xda\xcb\xce\x76\xff\x79\x0d\x01\x3a\x67\x1f\x39\x8c\x41\x07\xc1\xc5\xec\xcc\x0b\xb8\x5c\x90\x3f\xf9\x52\xed\x9f\x2f\x72\x17\x19\x08\x39\xa0\xbb\x09\x18\x11\x1d\x66\xc0\x35\x14\x3d\x76\xaa\x31\x0a\x31\x37\xc5\x40\xac\x05\x03\xf3\x3f\xd0\x5c\x09\x89\xae\xfc\xb2\x9a\xbc\xd6\x47\x7e\xe1\x0d\x9a\xa3\x4b\xbd\xaa\xfc\xd3\x1c\x35\x86\x8f\xed\xa7\xf1\x1d\x28\x1e\x08\xee\x5b\x7f\x6e\x7f\x5e\x05\xaa\x3b\xbf\x19\xd5\x94\x4b\x51\x0d\xe9\xca\x90\xcb\x60\x65\x5a\x42\x5f\x9e\x7a\x5f\xb4\x41\x27\x0b\xc9\xd7\x0c\xe9\x9b\xed\x74\xc7\x3c\xf3\xfe\x6f\xdf\x0c\xe7\x49\xb7\xfc\x3e\xe1\x21\x1a\x03\x2e\x7f\xa5\x7d\xf6\x85\xc9\xa1\x45\x02\x75\x85\x34\xae\x96\xd2\xa4\x5b\x36\x25\xd4\xff\xdb\xf4\xdb\x24\xa1\x15\xef\x27\xb7\x57\xdb\x0e\xcb\xfa\x78\x4f\xdf\x1a\x6c\xa8\x89\xc0\x1e\x57\xce\x1f\x93\x6e\x88\x8f\x6b\x51\x1d\x17\xbf\xaa\x0e\x49\xaa\xac\x57\x92\xcd\x0b\x77\xdb\x2f\x39\x80\x1c\x30\x62\x5b\xf4\x33\x10\x2a\xf0\x1c\x15\x82\x76\x9b\xec\x59\x33\x26\x41\x0b\xe0\x96\xd3\xd2\x4c\xdd\x75\x52\x7d\xc5\xcd\xf1\x68\xdf\xe1\x18\xf8\xbc\xc8\xf2\xa1\xa7\xf2\x21\x7a\xc6\xaa\xf1\xde\x6a\xc0\x1b\xf7\x70\xda\x4f\x6b\x46\x02\x80\x4c\x23\x25\xe9\xe0\x9e\x60\xff\x15\x2f\x42\x83\xa6\x76\x0c\xa9\xc0\x93\x8f\x90\x57\x0e\x7a\x5d\xa4\x35\x71\x62\xd1\x6d\x92\x2d\x20\x52\x3b\xe2\xf2\x88\x37\xb0\x9b\x37\x52\xca\x59\xcb\x13\x3b\x9a\x2c\xa9\xda\xc6\x19\x2c\x84\xb6\x29\x01\x6f\xf8\xf4\x92\xba\xc2\x05\x52\xb7\x23\x44\x86\x1d\x0b\x4a\x1f\x74\xc6\xcb\x1b\x52\xee\xaf\x7d\xd1\xed\x4f\xa3\x97\xeb\x37\x72\x83\x31\xa3\x14\x66\xbf\xee\x3d\xb2\x82\x10\xcd\x5a\x5a\xaa\x45\xdc\x59\x32\x72\xb3\x19\x45\xb4\xaf\x16\xd1\xaa\x4f\x33\xd1\xcd\x55\x12\x23\x97\xb4\x35\x8f\xfa\x1b\x23\x81\xab\x50\x5c\x4c\x39\x05\x1c\x47\xfb\x94\xad\x15\x16\x08\x73\x70\x9f\xb7\x7e\xd8\x70\x62\xa2\xd6\x7c\xc2\x78\x5a\x84\x25\x0c\x3e\x1b\x98\x9e\xd4\xa5\x24\x63\xfe\x56\xca\xb5\x64\xdf\xb6\xc4\x42\x7e\xa8\xc4\x13\xff\x89\x6f\x16\xff\x2a\x9e\x54\xf4\xb7\xfa\x2e\xaf\x8b\xcf\x35\xee\x80\x16\x94\xf3\x83\xeb\xdd\xc5\x2f\xb1\xc3\xc5\x04\x7a\xe3\xef\x73\x9b\x79\xd2\x63\xec\x43\x63\xe4\xeb\x39\xf9\x8d\xef\xa3\x01\x04\x3f\x26\x36\x8e\x89\x39\xd5\x00\xb1\x4a\xa9\x36\x85\xa7\x0f\xa7\xad\x29\xda\xa5\xfc\xca\x4c\xd4\x56\xd7\x68\x08\x95\x68\x56\x73\xea\x77\x97\x88\x48\xb2\x73\x4a\xa0\xff\x66\xee\x0e\x48\x3f\x01\x3e\x14\x9f\x09\x87\xe5\x6e\x92\x66\xa9\x9a\x3a\xf1\x56\x7c\x62\x3e\xc4\x21\x5e\xc3\x7e\xe3\x05\x3c\x38\x56\xfd\xe7\xe0\x57\xdf\xfd\xb3\x00\xe1\x60\xb5\xee\x54\x5d\x61\x9a\x5f\xd9\xab\x78\x09\x1a\xc6\x57\x14\x71\x8b\xb3\x6a\xd6\x84\xc2\x99\x20\x74\x14\x00\x02\x03\x0e\x73\x7e\x06\xd8\x87\x7b\xfc\x4d\x98\xcd\xac\x52\x70\xfc\x54\x78\x20\x1a\xfd\x63\x68\xb8\xb6\x46\x3b\xf8\x4e\x7c\x17\xea\xbf\xbc\x56\x17\x98\x2e\x87\x0c\x34\xc3\x59\x5b\x61\xb9\x00\x49\xea\x18\x95\x8a\x23\xa9\x4d\x1b\x2b\x9f\xdc\xeb\xcc\x33\xad\xc4\xb1\x8b\x2b\x52\x59\x91\xca\xe1\x65\x8f\x3a\x7e\x73\xe7\x51\xfd\x56\x02\xa8\x0c\xb5\xaf\x8c\x4c\x17\x44\x56\x0b\xa3\xb6\x4d\x16\x6f\xb7\x3e\x44\x24\x5e\x3f\xb7\x1a\x16\x0b\x6f\x48\x26\x3f\x7a\x65\x12\x72\x67\x52\xd1\xcd\xe8\xa2\xa5\xd0\x26\xb9\x41\xfc\x2d\xe2\xd8\xf8\x33\xf5\xde\x29\x29\x0d\x40\x06\xc4\x0c\x50\x8d\x77\xd0\x7a\xf3\x9d\xaf\xa8\xce\x6c\x0a\x41\x70\x3c\x46\x23\x8e\xa0\x30\x04\xf4\xf3\x75\xfb\x48\xf6\xd2\x3d\xf2\x15\x07\x70\xf5\xff\x04\x2c\x02\x10\x3f\xc9\xdd\x07\x24\xcf\xdf\x42\x8f\xfc\xa4\x90\x70\xa5\x07\xb5\x45\xbf\xde\x10\xc8\x1a\xed\x41\xc7\x1e\xd4\x3f\xae\x2b\x86\x5f\x57\x87\x2c\xf9\xcf\x3a\x74\x7b\xf0\xac\xc4\x39\xbd\x39\xaf\xfe\x86\x7a\x68\xec\xd5\x7a\x4e\xde\xdd\x31\x96\x58\x6d\xf3\x69\xf4\x20\xa9\x1e\xec\x14\xff\x7f\xf9\xe5\x0f\xa2\x78\x3b\x48\xef\x56\xbd\xdb\x4d\xe7\x1e\x8e\x9b\x40\x33\x35\x6a\x5c\x9d\x77\xce\x88\x9f\x4d\xaa\x32\x81\x7e\x7a\xcd\xa6\xd8\x80\xfe\x97\xdf\x77\x43\x51\xad\x27\x8b\x5f\x1f\x22\xed\xb5\x1f\x63\x15\xc6\x28\x86\xd4\x9e\xd2\x2c\xbf\xdb\x86\x7d\x53\x26\x5d\x29\x63\xff\x5f\x86\x91\x56\xc2\x84\xdb\x74\xa4\x77\x31\xdc\x10\x89\x6d\x6e\xb2\xde\x5a\x8e\x84\x46\x29\x80\x4e\x4c\xdd\x79\x7e\x33\x60\x7f\xc1\xa2\x43\x3d\x58\x3f\x04\xcd\x3c\x2f\x40\xfb\x2c\xb2\xec\xe0\xf8\xa8\xa0\x02\x19\x8e\x5e\x67\x55\xf9\xde\xd7\x41\x5d\xd1\x24\x86\x16\x0b\x40\x4c\x48\x23\x58\x0d\x1b\xc1\x31\x49\x01\xf8\xd1\x22\xac\x87\xe4\xec\xdb\xfc\x03\x5c\xb4\xc2\xa4\xd7\x97\x33\x60\x8d\xf5\xc8\x85\xb8\x07\x8d\x1f\xe4\x4d\x55\x59\x70\x3f\xee\x9f\x68\xa9\x0e\x86\x15\x46\x42\x2e\x7a\xe2\x79\x7a\x2c\xfa\x1d\xdc\x17\xe1\x37\x7f\x72\x2b\xdd\xea\xc8\xae\x56\xfc\x5a\xf5\x6e\xdd\x05\x2c\xb7\x8c\x87\x02\x94\xc7\x19\x58\x0b\x9e\x6f\xfb\x1e\x30\x3c\xa0\xe4\x23\x15\x7a\x62\xc8\x2a\xc4\x55\x5a\xdc\x39\x2a\x50\x0d\x47\xab\x15\x96\xc1\xfc\xaa\xf4\x37\x0b\x3c\x60\xf0\x60\xfb\x83\xba\xba\x1b\x1a\x69\xfa\x42\xeb\x71\x23\xf2\x76\xbe\x98\x8b\x0f\x69\xbf\x7b\x7f\xe7\xb5\xc5\x26\x0d\xa8\xcb\x43\x87\x85\x2c\x5a\x4b\x33\xe2\xd8\xff\x76\x50\xe1\xf9\x01\x80\x42\x7d\x43\x66\xcd\xf1\x02\x59\x89\x94\xdd\x9c\xa9\xd6\x82\x29\x00\x79\x56\x9a\x23\x94\x95\xf7\xcc\x70\x76\xa4\x69\xc9\x55\xfd\xe5\x6c\x37\x4a\xe4\xc7\xc5\xea\xa3\x83\x75\x13\x27\xf7\x74\xd6\xdc\x14\x94\xfb\x53\x0f\xf2\xa5\x71\x22\x5a\xaf\xf0\x86\x6c\x3d\xa7\x73\xe2\xb0\x1f\xd7\x79\x94\x29\x4a\x85\x49\xa9\xaa\x68\x61\x5e\xa8\x4a\xe0\xdf\x71\x6b\x46\x09\x4a\x95\xb6\x42\xeb\x68\x21\x90\xba\xf2\x98\xf8\x3a\xdb\x4e\xb1\xef\x22\xe7\xe8\x84\xbb\x63\xc5\xb4\x3f\xa7\x9c\x7c\xf2\x80\x53\x55\x63\x45\xff\x05\xbb\x84\xb6\xd1\x83\xb7\x04\x96\xdf\x39\x83\x93\x1a\x45\x78\x56\x6a\xb9\x82\xdf\x65\xe2\xd4\x26\xfb\x12\x3d\x7a\xc7\x8e\x75\xc0\x74\x3e\xf0\x36\x9e\x03\x55\x33\x14\x46\xcd\x64\xa5\xc6\x03\x5b\x7f\xbc\x26\xf0\x19\x21\xc8\xb1\x24\x3e\x85\xce\xc4\xaf\xfc\x4d\x19\x27\x48\xc9\xff\xed\x82\xd6\xa5\x68\xbc\x3d\x55\xb8\x4d\x66\x8e\x3c\x92\x5c\x5a\xbf\x2e\xf5\x75\xc4\x55\x2b\x22\x73\x3a\x9c\xaf\x35\xcf\x6e\x35\x7b\xe3\x71\x3e\x2c\x34\x36\x55\xa2\xfb\xdf\x6b\x62\xb6\x0f\x12\x93\xd8\xbd\x16\x11\x90\xb4\x5d\xcf\x1c\x99\x2a\xd1\x8d\xad\x77\xeb\x0d\xe0\xee\x58\x79\xf2\xc0\x01\x14\xe1\x77\xff\xae\x10\x53\x31\x6e\xad\xca\x72\x7f\x69\xd7\xe7\x57\xae\xe6\x4d\x39\x75\xbd\xeb\x4b\x6d\x85\x0b\x82\x0c\xa9\x1b\x7c\xe9\x77\x9d\x10\xb8\xed\xd2\x52\xe6\x20\xff\x52\xa7\xa6\x49\x75\x89\xce\x3a\xf6\x88\x00\x0e\x2e\x97\xf7\xd5\x6f\x4a\x02\xe9\x51\xa9\x4b\xb3\xeb\x33\xcf\x0b\xd1\x9f\x5b\xf3\x1e\x9e\x05\xad\x7f\x18\x05\xb6\xcc\x51\x4f\xe9\xb4\x73\x6f\x86\xb4\x94\x0d\x14\x66\xad\xec\x5e\xda\x1e\x37\x04\xd6\x31\x4b\x61\x53\x6f\xee\x38\x50\x75\x22\x0c\x12\xbe\xd5\xb0\x33\xaf\x53\xea\xf7\x34\x67\xa9\xf1\x73\x3b\x75\xd9\xd2\x6f\x8b\xff\xed\xce\x84\xd5\x08\x3d\xe2\xed\xdf\xf3\x94\xb2\x49\xb1\x19\x1b\x54\x7e\xdd\xd7\xa3\xbc\x6c\x52\x7f\xf3\xc5\x8e\x40\x3c\xaf\x72\x85\x26\xe8\xe8\xbd\x3f\xc6\x13\x96\x07\x8a\xff\xe5\x4f\xfd\x0e\xd5\xf7\xb6\x5c\x9b\xee\x4c\xbb\x61\x67\x22\xeb\xbc\xa3\x3e\x54\xae\xa1\xbd\x9f\xce\x5a\x5c\x85\x7d\xf8\x1c\xe2\xd1\xa7\x2d\x9a\x85\xd9\x15\x3f\xcb\x60\x81\x6c\x59\x6a\x42\x59\xaf\x89\xd7\xf1\x76\x7f\x5c\xd8\x70\x62\x7d\x39\x4a\x64\xed\xa7\x55\xd5\xdd\x42\xd2\x11\xbe\x5f\x0d\x6d\x1e\x09\x0d\xa0\xac\xee\xaf\xcb\x9a\x1b\xb3\x4c\x69\x47\x9f\x26\xef\x10\x1c\xab\x0f\x75\x36\x7f\x59\xfe\x70\x92\x63\x27\x01\x91\xa3\x00\x87\x7e\x17\x1b\x4e\x4e\xd4\x9f\xea\x76\x0d\x25\xd1\xba\xdf\x13\x25\x0f\x68\xc9\xac\xa4\xd5\x23\xab\x68\x6f\x5d\xbd\x76\x43\x9d\x5f\xa3\xfe\x3b\xe5\x67\x62\x7f\xcc\x0e\xa7\x23\xb9\xc6\x5d\x42\xbe\xd2\x13\x43\xb8\x0f\x3a\x45\x12\xbe\xa4\xe9\xf3\x55\x75\x2a\x63\xd2\xb4\x54\x64\x51\x94\x02\x88\xb4\x9a\x77\x67\xb5\x38\xff\x1c\x33\xe6\x27\xd0\x0a\x6e\x27\x9c\x01\x4e\x7e\x72\x92\x5a\x50\x53\x13\x8e\x5f\x7e\xe7\x53\xbd\xec\x0f\xd3\x73\x1d\x2b\xc7\x3d\x99\xcd\xc7\x3b\xed\xbe\x60\xb1\x25\x53\xfa\xf7\x51\xcb\xf3\x28\x85\x68\x41\x53\x9d\x1f\xa6\x3e\x71\x77\x9d\xf6\xda\x8f\xa7\xea\xf8\x7e\x2b\x61\xfd\x8d\x32\x26\xc2\x2d\x3f\x75\x91\x55\x0a\x11\xb4\x19\x2f\x96\x02\xaf\x46\x72\xeb\xb6\xbf\xe9\x44\x13\x29\xed\x0a\x1a\xa5\xa8\x7f\xf2\x6b\x39\x52\xf8\xfd\xa1\xce\x32\x19\xaa\xb8\xf7\xcc\x52\x07\xdc\x47\x94\x7a\xe8\xd3\xaa\x87\x7a\x2f\xbe\x6d\x0f\xf6\xc7\x07\x26\x25\xeb\xd1\x58\x62\xab\x0d\xb7\xcf\x4c\xaf\xc6\x03\x99\xf5\xaa\x26\xe3\x6a\x69\x5c\xfa\x48\x57\xae\xd1\x3e\x86\xd5\xf1\x31\x8c\x1c\x56\xc0\xe3\x0e\xc3\x6b\x5e\x91\x37\xf5\x6d\x01\x49\x48\x16\x4d\x72\xbf\x43\xa9\xbb\x92\x0f\xae\xbf\x91\x61\xc2\x37\x53\xa0\x26\xa4\x0c\x3d\xec\xfd\x67\x9c\x0a\x26\xae\xaa\xea\xc4\xcf\x82\x5c\x61\x58\x21\x85\xb5\xa4\x5f\xb2\xbf\xe8\xb9\x4d\x1c\x92\x00\x9e\x1d\x0c\xbf\x1c\x97\x47\x1e\x8e\x2c\xe4\x51\x8a\xa9\xb9\xcc\x54\x1a\xcb\xd4\x60\x3a\x7e\x99\x73\xbc\x74\x88\x8c\xf5\xf5\xd5\xba\x0a\x51\x5e\x22\xb0\x6c\x7b\xa8\xda\xa9\xfe\x6a\x09\x8f\x13\xcb\xde\xc1\xcc\x56\xc6\x80\x01\xc6\x1c\xb5\xfa\xfa\x0e\x5b\xae\xad\x84\x63\x69\x51\x19\xde\x04\x93\x1a\x61\xa6\xf1\xdf\x50\x26\x39\xd4\x95\xb1\x8b\x37\x47\x0e\x17\xcf\x58\x4c\xae\x24\x4d\xda\x29\x3f\xc5\x40\x50\x59\x43\x58\xb9\x55\xdf\x09\xaa\x0e\xb0\xa8\xf6\xb3\xa8\x92\x26\xb3\xf2\x06\xc0\x2f\xa6\x3b\x6a\x34\x15\x67\x2a\xff\x3a\xb1\x59\xf8\xf8\xaf\x8d\x0d\x63\x95\x9b\xea\xab\xbe\x76\xe5\xa8\x40\xe9\xb9\x9e\x28\xf2\x76\x6d\xda\x4d\x75\x43\x75\xf0\xe7\x91\x9e\x97\xce\x67\x14\xc3\xdd\xce\xb3\x48\x1c\x31\xd9\xcb\x9c\x4f\xae\xa2\x4f\x33\x79\xca\x59\xb9\x79\x92\x26\xb3\xd9\xc8\x33\xa9\xb6\x1b\x41\x00\xaf\xdc\x69\x0d\x3d\x6a\x75\xc0\x73\x3d\x64\x42\x40\xf8\x49\xd5\x57\x97\xb6\x5a\xda\x94\x6f\xf5\xde\x0c\x46\xe9\x9f\xe8\x11\x29\xca\x17\x81\xb2\x49\x78\xcf\x2a\x1e\xd1\x30\xf8\x70\xef\x22\x6b\xb0\x52\xc9\xe8\xde\x63\xf4\xde\x3d\x09\xd0\xa1\xed\x69\x24\xbc\x0a\xc4\xf1\xee\x23\xb7\x62\xeb\x8d\xc2\x29\x6c\x94\x4a\x2a\x13\x2c\x4e\x6a\xac\xce\xc9\x9d\xdd\xb1\x35\x9f\xcb\x11\x6a\x75\x49\xc9\x66\x70\x86\x06\x74\x80\xa8\xe8\xac\x5c\x09\x29\xe5\xcc\x5c\x09\xb1\x13\xd5\x52\x07\x8a\x56\x8b\x8a\xac\xba\x9d\xfa\xdf\xc5\xc7\xc5\x76\xb1\xd4\x7c\xfd\x78\xce\x59\x25\x55\x28\x38\x3b\x57\x35\xf7\x77\xca\xb0\xa2\x7e\x26\x3a\x0b\x17\xea\x3e\x7a\x59\x91\xb9\x3c\x41\x99\xb5\x14\x85\x52\xef\x60\x70\x84\xe5\x2e\x48\xe0\x17\x08\xdf\x04\x69\x7a\x1c\xf6\x3e\x6b\xba\xba\x4b\x76\xad\xc5\x21\x3f\xaf\xbc\x6a\x8f\x0d\xd6\x22\x09\xf3\xc3\x07\x8a\x5c\x29\xde\xdf\x29\xa9\xa0\xc5\xa6\xba\xa1\x66\x6f\x44\xfe\x2a\x10\x0e\xff\xd5\xda\xa2\x35\x59\xfc\xbe\xe2\xbd\x6f\xbf\x86\x61\x73\x1c\x81\xa0\x17\x21\xbf\xbe\x40\xa3\x11\x33\xd0\x3f\xfd\x02\x65\x19\x73\xc5\x19\x53\x34\xfc\xd1\xbd\x45\xb7\x24\x00\x42\xa6\xfe\x77\x66\x25\x6d\x13\xbc\xe6\xd0\xd1\xa9\x1a\x13\xf2\x1c\x61\xa9\x18\xd2\xba\x2f\x56\x67\xc6\xcc\x9d\xfc\x44\x38\x4d\xe5\x60\x4c\xb6\xb6\x47\xc7\x2a\x3e\x9b\x85\xdb\xf4\x6d\x82\x2a\x23\xb6\x7e\x17\x7d\x24\x5c\xf5\x15\x59\xbd\x55\xd1\xce\x44\x1f\x51\x1d\xf7\xce\xa5\xd7\x38\x08\x93\x1b\xa7\x12\x44\x1f\x60\xc9\xe6\x8a\x89\x15\x65\x1e\x4d\x5a\x73\xc8\xb1\x1b\x56\xb6\x16\x62\x4d\x56\x41\xb1\x53\xc0\xf5\x32\x8c\x68\x77\x71\x70\x71\xa5\xb7\x45\x99\x14\xd2\xef\x2f\xc3\x78\xb0\xfc\xd1\x00\x2d\x1f\xc1\xc4\xe3\xc8\xb4\x9c\xc2\xbf\xb9\xd2\x09\xeb\x0e\xf1\xa9\x8a\x7c\xc2\xe2\x1c\xe1\x7d\xb8\xae\x73\xe0\x55\x42\xbd\x8f\xd6\x1f\x37\xf2\x23\xfb\x92\x02\x1e\x55\x0a\x17\x95\xac\x0d\xb8\x1a\x37\x58\x2f\x61\x8f\x68\x8e\x12\xfe\x9e\xd0\xfe\xab\xf1\x26\x75\x2b\xef\xae\xc7\x5b\xbf\x01\x99\x58\x93\x7f\xc7\xe0\x6e\x8c\x71\x9f\x06\x81\xbf\xc3\xa2\xe3\xa0\xcf\xbf\xdd\x1e\xd2\xd9\xf4\x08\xca\xb3\xa5\xaa\xe2\xdc\x46\x38\x69\x5a\x37\x1c\x06\xb6\xf4\xd3\xd7\xe4\x6b\x16\xe0\x48\x3a\x79\xef\x8e\xbb\x89\x0d\x1c\xae\x7c\x1f\x63\xc4\x76\xf1\x1c\xcc\x54\x71\x6c\x82\xd6\xe0\x7b\x65\xc1\x1f\x5e\x7f\xbd\x95\x1f\x32\x23\xe6\xcb\x92\x85\xad\x8f\x6e\xec\xd4\x79\x30\x2c\x7a\xfd\x45\xdd\x4e\xc1\x20\x75\x14\x18\x0a\x06\xa9\x87\x2c\xae\x95\xb1\xc6\x5f\x9e\x8b\x3c\x6d\xd4\x56\x8c\x1f\x39\x57\x3c\x63\x64\x0c\xb2\x1b\x9d\x5f\xe8\x38\xfe\xf7\xd1\x41\x69\x74\x7e\x02\x26\xc9\x06\x96\x7b\x5b\x81\xe7\xc4\x7a\x3e\x3f\xe0\xad\x7f\x9b\xab\x34\xd6\x51\x39\x32\x47\xb2\xc6\xc6\x67\xa8\xed\x7b\x7c\x3b\x7c\xf3\xe1\x38\x93\xc3\x67\x08\x42\xb2\xfc\x21\xab\x03\x0f\x52\xf4\x0e\xaf\x54\xf4\xd5\xf1\xda\x50\xd6\x9f\x7a\x2d\x2d\x3f\x3a\xcd\x66\xf8\x41\x2d\x76\x3b\xec\xe2\x3b\xbd\xcf\xc6\x43\xf9\xe3\xb2\xce\x38\xb7\xa4\x1d\x0f\x35\x7a\xbe\xf7\x2f\x06\x30\x6a\x8e\xe9\xd4\x13\x03\xb5\x0a\xd6\x90\x73\x22\xf6\x09\xc0\x90\x94\xff\x32\x13\x91\x66\x78\xd2\x8d\x16\xd5\x47\x03\x74\x82\x6d\x1b\x6f\x92\x6d\xed\x68\x36\x50\xbf\x19\x94\xad\x74\x33\xcf\x7f\x93\x79\xc9\x0b\xce\x0d\x76\x05\x11\x84\x9e\x62\x75\xd1\x81\x02\x6e\x9b\x19\x56\x73\x18\x88\xab\x03\x4f\xf5\x01\x77\x15\x97\x7a\xe6\xf4\x98\x99\xc1\x03\x79\xcf\x05\x54\x47\xf8\x5a\xf4\xc0\xcb\x4d\x4f\x5f\xf9\x65\x27\x8a\xcd\xe3\x55\xca\x0b\x62\xcc\xfb\x46\x8c\xd0\xca\x36\x75\x32\x2d\x7e\xc3\x40\xb3\x0e\x86\xfe\x97\xc2\xa8\xa9\x94\x80\x0a\xc2\xfb\x37\x9d\x7f\x8d\xbf\x9c\xce\x55\x0b\xa3\xe4\xdc\xac\xed\x48\xbe\x6e\xa8\x24\xa8\x6f\xe9\xc2\x03\xec\xae\x9f\x2f\x78\xfe\xcd\xe8\xff\x97\xfc\x19\xc7\x14\x36\xa5\x73\x5e\x1c\x31\xc2\x0d\x9d\xaa\x18\x4e\x4c\x14\x5d\x90\x17\xb5\xd1\xb2\xc0\x55\x47\xdc\x49\xad\x08\x25\x10\x27\xa9\x0e\xf6\xb0\x6a\x16\x30\x71\x55\xbd\x9b\xb5\xa9\xcf\xf5\x0c\x32\x3f\xda\x5c\x3f\x7a\x62\xb8\x6e\x02\x2d\x51\xc9\x44\x77\x05\xbb\x7d\xdf\x35\x9f\x4f\x5b\xe9\x5e\x19\xf7\x17\xf8\x2d\x37\x31\xa1\x9a\xc1\xf9\x9b\x01\x55\x6e\x75\x5a\x61\xd6\x93\x4c\x1a\xf0\x8a\x30\x5f\x17\x07\x87\xc8\x55\x0f\xb3\x07\x5a\x39\x68\x1a\xa3\x7c\x15\xa0\x17\xbb\x9c\x6e\xe0\xb6\xc2\x3d\x1c\xb7\xb2\xa9\xc2\x41\x02\xa3\x48\x1d\xf5\x3c\xc6\x69\x01\x4b\x45\xb7\xc5\xaa\x08\x8b\xaa\x7c\x4e\x71\x5d\x59\xc7\x36\xe5\x2e\x26\x70\xa5\xd8\x6a\xb2\x7a\xc3\x59\x0e\xc1\x61\x7e\x1f\x57\x91\xd5\xff\x0f\x5d\x09\x75\x55\x24\x3c\xad\xcc\xfd\x98\x19\x88\x34\x6d\x5f\x3e\x76\x79\xa7\x6e\xdf\xc8\x81\xa4\xe3\x7b\x25\x76\x20\xf0\xf6\x9b\x70\x11\x5e\xc4\x6b\x09\xdd\x58\xe8\x9f\xf8\xaf\xad\xce\x47\x52\xcc\x39\xc7\x1e\x82\x72\x5b\x20\x9b\x6a\x6f\xfe\xe0\x84\xc9\x4f\xaf\x43\xe6\xdc\x05\x80\x2a\x3c\x9e\x63\xa6\x03\xed\x10\x27\x82\x0e\x21\x64\xce\x2a\xf4\xd9\x32\x5f\x4e\x27\xcb\x81\xbe\x85\xb9\x4f\xdf\xd6\x66\x79\x7a\xa6\xef\x7a\x33\x8c\xf3\xf7\x4a\xec\x0b\x5f\x0a\xbe\xd6\xc9\x10\xca\x52\x14\x98\x9e\x58\x24\xaf\xd2\x9f\xdd\x94\x89\xbb\x25\x6f\x72\x96\x64\x7c\xe1\x62\xa6\x90\xfa\x6c\x70\x51\xfe\x36\xab\xcc\xd2\x8f\x96\xf0\xb8\x7a\xd5\x03\xfc\xf0\x1c\x04\x90\x92\x51\xbd\x52\x3f\xf4\xa5\x18\x6e\xff\x3d\xe1\x35\x9f\x98\x12\xc9\xd3\x6e\xb3\x68\x98\xbb\xc3\xa3\xf9\x0a\x69\xa4\x65\x7a\xe7\x5e\xe8\x1d\x4f\x8f\xeb\x99\xde\x21\x0d\x52\xdf\xf2\x1b\xc6\x6c\x9b\xf0\xba\xd3\x18\x67\x18\x21\x0d\xb6\xe8\x34\x31\x63\x7d\x05\xcd\xce\x28\xef\x67\x05\x56\x9f\x1f\xe8\xae\x04\x6a\x4b\x7f\x2f\xc7\x69\x93\xd3\x8b\x27\x73\xe4\xd3\xf8\xc3\xa2\xca\x4e\xfe\x61\x2c\xd4\xca\xf2\x2a\x9c\x7e\xc2\x48\xca\xed\x5a\xba\x46\x53\xfd\xd1\x4d\x29\xec\xdd\x1b\x7c\x2e\xaf\xa0\x9e\x1f\x05\xda\x7a\x16\x57\xb1\x3e\xc2\x0d\x8a\xe8\x77\x55\x37\xfb\xa1\xa7\x1e\x5d\xf7\xf3\xbe\xb5\x2b\x90\x2e\x33\x05\x8b\x07\x0e\xe7\x7f\xd5\xe1\xed\xad\xd9\x43\x63\xc8\x05\xc3\x24\x34\x3d\xf2\x45\x99\x06\x9e\x47\x7e\x25\x5f\x8d\x2f\x0b\x60\xd0\x02\x62\x60\xe2\xa5\xea\x48\x43\xbb\x5f\x67\xe4\x35\xc2\xb3\xca\xfa\x47\xa2\x8b\x2f\x91\x48\xdc\x02\x6b\xc2\x7f\x85\xb7\x55\x67\x24\x76\xb6\x83\xcf\x52\x36\x96\x74\xa5\xe8\x67\xb9\x40\x6a\x60\xc0\xe3\x57\x51\x96\xb6\x71\x33\x61\xfe\xfd\x1c\x18\x00\xc2\xd6\xff\xfd\x4a\xf3\x16\xfc\xa4\x30\x13\x9e\x66\x27\x59\x0f\x5e\x2d\xab\xe3\xc9\xce\x94\xc2\x5b\x29\xaf\xfd\x8b\x17\x61\x65\x15\x3e\x8e\x71\x87\xc6\x79\xab\x6d\x2e\x4a\x11\x94\x44\xbf\x78\xc9\x33\x80\x8e\xa2\x16\xb3\xa6\x17\xfa\x60\xfa\x4e\x50\xf5\xaf\x78\xcd\x48\x76\xb3\xc3\x63\xc9\x50\xe3\x3d\x32\x99\xe8\x8a\x35\xe5\xec\x49\x24\xe1\x63\xec\x72\xce\x53\xb3\x2e\x7a\x59\x98\xaf\x2c\xcf\x04\x32\x15\xf9\x01\x75\xac\x62\x22\xe4\x17\xb3\x58\xe8\x1a\x2a\x45\x78\x75\x8f\xf7\x79\x8f\x96\x37\x26\x6d\x7b\xe3\x5d\x48\x65\xfc\x0a\x7e\x52\xb5\x80\xf0\xb3\xea\xfe\x5b\x75\xa1\x7a\x08\x4e\x9e\xe8\xcd\xe2\x3f\xb1\xc3\xd7\x07\x33\x5d\xf7\x58\xe6\x6a\x54\x7f\x1e\x84\x6b\x84\x40\x1a\xeb\x82\xfa\x4c\xde\x35\x14\xb4\x00\x30\x24\x25\x6f\xb0\xe9\xdd\x13\xc3\x3f\x7a\x04\xb2\x31\x74\x93\x10\x97\x90\x9b\xc2\x2d\x2a\xc3\x91\xec\x60\xd1\x1c\xaf\xef\x46\x93\xba\x29\xa6\x35\xd9\x2a\x0e\x05\x36\xae\x1e\x27\xa0\x78\x52\x9c\x88\xe9\x1e\x04\x80\xd1\x0d\x0f\x91\xea\xb3\xa0\xdb\x96\x86\xfb\x2b\x74\x4e\xf2\x2e\x92\x99\x1b\x09\x7f\xeb\x2f\x81\xfb\x96\x90\xbf\xaa\x1b\x99\xb9\xf8\x05\x1d\xb2\x95\xbe\xed\x57\xed\x34\xd3\xf8\x42\xf8\x35\x5e\x99\x72\x90\x88\x83\x95\x34\xde\xee\xb3\x58\xae\x19\xe6\xe0\xc9\x86\xf0\xe6\x82\x46\x1b\x8f\x59\xd6\xb9\x41\x11\xa6\xe0\xf1\x09\xed\x39\x4d\xc0\xca\xe6\x50\x67\x4e\xf1\x8b\xf2\xc4\x3e\x8b\x66\x41\x31\xf7\x80\x60\xb3\x1d\x63\xf4\xfa\x7a\x43\xbd\xec\x78\xeb\x17\x39\x65\xc2\x03\x02\x1f\x6d\xc0\x53\x19\xe8\x82\x15\xd4\xcb\x5a\xf7\x70\x81\x62\x2c\x78\xcf\xf9\x3e\x4c\xd0\x2f\x2a\x22\xf0\xa7\xe5\x70\xc4\x00\x69\xd2\x14\xb5\xc6\x1a\xa3\x4b\xd5\xe6\x49\x48\xc0\xec\x45\xb1\xab\xe7\x6d\xd2\x65\xfc\x24\x31\xca\x74\x90\x12\x2d\xb8\x1e\x13\x78\x4a\xfe\x20\xc5\xa4\x64\xae\x5f\x56\x95\x6d\xa5\x9b\xe9\x87\x7c\x08\xba\xcd\xd4\x8b\x55\x91\x69\x19\x34\x53\xc3\xc3\xb5\xe3\x7b\x91\x80\xf8\xf9\x53\x13\x2f\x27\x10\xce\x36\xa1\x7d\xab\xd4\x89\xff\xfc\xd6\x2e\x12\xde\xd7\x28\x43\x29\x80\x63\x37\x7a\x24\x8b\x6f\xa7\x48\x04\xa1\xb7\xd3\x82\xda\xf1\x77\x53\x0f\x8d\xe9\xb1\x01\x81\x32\x46\x65\x6e\x6f\x08\xed\x26\x68\x6a\xaf\x64\x5e\x92\x93\x20\x8e\x20\xca\x6e\xa7\xaf\xd6\x36\xa6\x40\xa3\x09\x7a\xb9\x45\x63\x62\x50\xd7\x8a\x19\x64\xe5\x63\x34\xbd\xb1\x48\xb4\x47\x07\x72\xd9\x75\x69\xbd\xbf\x7b\x61\x7a\xd0\xf5\xfa\x10\x39\xa6\x78\x51\xc1\xb7\xf5\xc1\xac\x6b\xa9\x32\x04\xe4\x3c\xfa\x3e\x02\x19\x3b\x9f\x8b\xf6\xbd\xfd\x71\xf9\x61\x4e\x60\x87\xa9\xb8\x8e\x36\xea\x0c\x13\x97\x39\x07\x1d\x18\x04\x30\x0d\xc5\x96\x6a\x64\xc8\x5a\xf2\x3b\xd0\x80\x18\x8a\x23\xac\xbf\x84\x74\xe5\xd4\x72\x39\x24\xdc\x4b\x0c\x10\xd0\x31\xdb\x93\xc5\x53\x29\x44\x0d\x56\x0a\x77\xa8\x19\xfd\xe8\x43\x1e\x15\x55\xca\x99\x8a\xf3\x04\x0c\x81\x42\x2f\x00\x2b\x42\xf6\x5f\x22\x70\x51\x6e\xc7\xf0\x90\xdc\xd1\xa5\xb8\x6d\xca\x5c\xd7\x2b\x64\x28\x5a\x95\xb7\xe5\x0f\x0d\x16\x60\x5c\x56\x35\xb4\x9e\x3c\xfd\x6c\xee\xcb\x0e\x52\xd7\xee\x20\x9b\x0e\x3b\xd5\x3c\x1b\x8d\x68\xef\xda\xda\xb1\x94\xbd\xdb\x5e\xf4\xb9\xaf\xb0\xa6\x9d\x1b\x79\x95\x00\x10\x05\x92\x8d\xba\x79\x9e\xd4\x5b\x00\x74\xb8\x92\x1d\x84\xff\x2c\x5d\x9d\x85\xcd\x86\xd4\x95\x8a\x75\x43\x83\xf0\xd0\xab\xa4\x1e\x44\xe4\x50\x3b\x77\xa5\x45\x34\x00\xa4\x30\xa6\x3a\x15\x58\x2c\x3b\x2f\xa1\xee\xd1\xd8\x95\xc1\x2a\x34\x00\x1f\x10\x93\xc0\x5e\xa8\x1d\xfe\xf3\xae\x25\x45\xaa\x03\xe4\x2e\x9b\xbb\xf0\x63\xc8\xdf\x78\xac\x63\x11\xed\x8f\x57\x10\x70\x72\x9d\x7c\xf5\x0b\xc8\xf9\xf7\x5e\xb0\xf6\xa2\xf0\x52\xf4\xdf\xa7\xeb\x15\x79\x4a\xb4\xc8\x77\x1b\x8c\x38\x29\x04\x95\xd5\x14\xc7\x7d\xfc\xbf\xde\xbf\xff\x89\x5f\x2c\xda\xf8\x88\x1d\xf4\xb8\x29\x99\x8b\x49\x18\x2c\xa8\x48\xe5\x1c\xd3\xb7\x9b\x90\x74\xf5\x07\x97\x98\x7f\x7b\xec\x5a\x9e\x64\xbf\x07\x40\xb0\x6f\xb7\xf5\xda\xa8\x5a\x87\x6a\x86\x0b\x1f\x3b\x0f\xab\x0e\xd3\x19\xc7\xc6\xf6\x53\xe3\x45\x14\x30\x89\xdc\xe9\xa7\xfa\x52\x6d\x7f\x95\x72\x13\x52\x0e\xa3\x1e\x35\xbe\x21\x90\x35\xeb\xd8\x65\x78\x30\xf4\x8c\xea\x25\xf8\x6c\x7d\xaa\xb8\x7f\xfd\x44\xf8\xce\x31\xac\x93\xa7\x93\xea\x53\x33\x0a\xec\xfc\x8e\x0d\xfb\xbe\xe5\x20\xed\x7e\x86\xe0\xfa\x20\x39\xb4\xf3\x09\xdd\x6b\x50\x00\x8b\x16\xee\x00\x39\x67\xa4\x2f\xa7\xa5\xab\xb1\x30\x58\x81\x8f\xe4\x69\x4c\xe6\x0b\xf4\xaa\x2b\x26\xd0\x97\x90\xa2\xc8\xe7\xd6\x23\x8b\x57\x89\xc7\xa3\x4d\x6e\xf0\xbe\xe8\x53\x26\x86\xc7\x31\xf6\x14\x4e\x8e\x25\xc1\xa4\x7b\x0b\xd8\xac\x94\x1c\xc0\x39\x37\x90\x77\x75\x15\x34\x7f\xc4\x96\xcc\xbb\x46\xf3\xe5\x84\xa4\xf8\xb9\x0e\x15\xeb\x58\xa7\x06\x2d\x4c\xd3\xf6\x44\x1c\xfc\x9c\xdd\x62\x35\xff\x2e\xb8\xe4\x1b\x00\xb7\x09\xef\x6f\x15\xaa\x3d\xb2\x01\x4e\x68\x05\x47\x38\xb3\xf9\xc9\x3c\x84\xe7\xe7\x3f\x10\x10\xbf\x29\xe0\xcc\xa0\x8f\x82\x3f\xcd\xb7\x8b\x40\x08\x07\x3e\x53\xf1\xe1\x58\x35\x7f\xb1\xb6\xbd\x53\x5b\xac\xd6\xcb\x52\x3a\x40\xaa\xd6\x25\x27\x71\xdd\x13\xa7\xd7\x5a\x3a\x66\xe0\x44\xf3\xad\xb7\x75\xac\x8e\x60\xdc\x9c\x57\x26\x02\x47\xf2\xc7\xbb\xa8\x39\x77\xcf\x45\x05\xe0\x53\x18\x45\x09\x3e\xa7\x33\x79\x1a\xea\x98\x36\x76\xfe\x4d\x17\xba\x37\x3b\x40\xe9\x99\x26\x61\x92\x41\xe3\x27\x14\xaf\x8e\x15\x7a\xbd\x9e\x00\xcd\x02\x23\x9f\x5b\xaf\x78\x2f\xb8\xe8\x27\x76\xdf\xe7\xf1\x77\x86\x93\x0e\x7e\xde\x52\xb8\x28\xef\x0e\x22\x7e\x23\x57\x57\x2f\x03\x77\xc5\x7d\xd9\xd3\x8d\xbf\xdd\x96\xca\x3e\x26\xad\x9c\x7b\x94\x6b\x9a\x77\x6a\x33\x30\xf4\xab\xd8\x3e\xda\xc2\x81\xd8\xcb\xb8\xc5\xac\xaf\xd4\x4c\x61\x92\xb8\x9c\xf1\x64\x56\x08\x9b\x06\x7c\xf2\x18\xfd\xe3\xde\xd4\x2d\xf4\x47\xc3\x86\x66\xd2\x9a\xb9\x7c\xa9\x96\xa6\x0d\xd6\xfc\xcf\xdc\xb0\x31\x64\x6f\x48\x65\x3d\x12\x0c\x3c\x75\x76\xb7\x38\x55\xdc\x6f\x3a\x7d\x8d\x62\x77\xbe\x65\x87\x74\xf8\xd1\x12\x87\xdb\x57\x39\x5a\x67\xc3\xd1\x1f\x3d\xa7\x84\x43\xf4\xac\xc2\x72\x70\xb1\x08\x81\x28\xb8\x90\x95\x0e\xe6\xea\xc5\x3f\xd3\x4f\x27\xbc\x98\x0e\xb2\x85\xc2\x21\xb0\x3d\xef\x00\x73\xbd\x56\xa8\xab\x20\xac\x83\xa3\xd3\x44\x77\xe6\x89\xdc\xea\x34\x79\xa3\xae\x66\x0a\xd6\xe1\xf3\xad\x6f\x7d\x89\x52\xcc\xa0\xb7\xc1\xc0\xba\x60\x14\x3b\xf9\xcf\x9e\x76\x9a\x8d\xde\x18\xfd\xe5\xbd\xe7\x68\xa8\x42\x1b\xe6\x98\x65\x19\x12\x1b\xb8\x5b\xff\xb4\xbf\xdf\x0f\x43\x11\xac\x9f\x9c\xf3\x7e\x7b\xef\xab\xaa\xc8\x08\x3b\x59\x4a\x95\xbb\xca\xfe\xf9\x75\x91\x39\x54\x05\x9f\x3c\xd2\xff\x8e\xe0\x27\xae\x9e\x94\x9b\x1b\x1b\xf6\xfd\x3f\x53\x87\x13\xde\xa1\xc3\xb8\xb7\xae\xa3\xf7\x59\x4f\xff\xa0\x05\xc5\xaa\xd3\xe5\xbd\x26\x62\xe6\x8e\x2a\x67\xa6\x88\xa0\xae\xf9\x05\x0d\x4d\x3f\xba\x5e\xc0\xf3\x2a\xcf\xd4\x87\xc0\xb8\x57\xc0\xe8\x7b\x91\xe7\x44\xec\xaf\xa9\xc0\x06\x9a\x7a\x7f\x63\x52\x41\x65\x1d\x2b\xe9\x9e\x2c\x71\x68\x96\xef\xcf\xed\x50\xda\xc0\xa8\x35\xed\x3c\x54\x43\xf4\xa2\x37\xae\x33\xdb\xf1\xc1\x08\x02\xb6\x88\x51\xb3\x3b\x70\xfb\x40\x3b\xbf\x60\x0d\x46\xaf\x94\xc2\xaf\x1c\x27\x1f\xf3\x2b\x30\x54\xb1\xdb\xcd\x29\xe2\x41\x41\x58\x9d\xd8\x31\x02\x24\xc1\xf0\x05\xf9\xd9\x05\x41\x73\xac\xd4\x38\xcc\xef\x37\xcb\xfb\x16\x26\x0b\x11\xc2\xc2\x36\x24\x15\x57\xfc\x56\xc3\xf7\x3e\x8e\x7e\x3f\x0c\xe5\xbd\x2a\x4a\xc7\x23\xbf\xd3\x1b\xd3\x31\xbe\xf6\x2e\xff\x31\x7a\xb8\x54\x5f\x2d\xcf\x77\x3c\x69\xd2\x5a\x71\xad\x8a\xa4\x40\x54\x16\x60\x1d\x78\x75\x15\x47\x7c\x09\x8b\xd2\x7d\xc8\xa6\x77\xd0\x26\x77\x1b\x29\xb6\xb3\xce\x6c\x44\xe3\xb1\x44\xab\x5c\x3e\x1a\xf0\xcb\xed\x54\xdb\x1d\xd1\x0e\x52\x7a\x5d\xc2\x13\xef\x68\x28\xbb\xcc\x14\x78\x7e\x4b\x18\xd5\xdb\x49\x78\x5c\xe4\x5d\x65\xe7\x7e\x89\x27\x21\x28\x8c\xec\xa2\x5a\x23\x06\x23\xa1\xe6\x03\xf9\x26\x3f\x47\xf6\xf1\xf1\xf1\xb1\x81\xef\x8c\x39\xa2\x78\x1f\x2a\x72\x9a\x48\x2c\x05\xf5\xdf\x32\x96\x02\x4e\x80\xc3\x13\x13\x8e\x5d\x07\xd2\x3c\x2c\x33\x35\x52\x49\x88\xde\xcb\x1b\x72\x40\xd1\x62\x5b\xa5\xc3\xb7\x5e\x4d\xc3\x84\x5a\x1b\x0b\x81\x71\xe2\x7f\x24\xbe\x28\x0f\x6f\x1a\x35\x0c\xf3\x30\x3d\x4a\x67\xbc\x06\x6c\x88\xa3\xa2\x0d\xc1\x39\x32\xee\xb5\xc5\x95\x71\x15\x18\x66\xbd\xdb\x12\x00\x03\xc8\x29\xe3\x5f\xee\x32\x72\x6e\xcb\xf1\x2a\x17\xe5\x53\x3b\xe0\x8b\xc3\xf7\x8e\xf0\xbe\xb9\x17\xf3\x8d\x91\x2f\xff\xef\x9d\xc7\xea\x5b\xaf\xab\xbb\x69\xe1\x2d\x91\x37\xba\x13\x35\x4a\x10\x18\x36\x69\xff\xb0\xf9\x88\x68\xb9\xb0\x15\xcd\xf0\xaf\x50\xc0\x67\x89\x47\x1a\xcb\x5c\xf9\x47\x8f\xf5\x40\xab\x98\xa9\x7a\xb9\xc2\xe7\xcf\xbd\xeb\x67\x77\xcd\x89\x53\xfe\x47\x49\x74\x77\xad\xb8\x8a\x51\x04\xcb\x42\xcb\x2b\x22\xc0\xaa\x78\x5f\x9a\x9b\xea\xb1\x6d\xc9\x47\xed\xfe\xef\x16\x37\x73\x49\x7a\xce\xa2\xe6\x12\x36\xa5\xa2\x4a\xa0\x13\x3f\xca\xbb\x2b\x0f\x2a\x2b\xc6\x9c\xd1\x34\xad\xa5\x6e\xbc\x0e\xb9\x6b\x6c\xc2\xce\x24\xbd\x5f\xc5\x1a\x68\xa2\xb9\x5f\x8f\xa6\xbc\xd4\x9f\x87\xef\xb2\x7d\x6c\x4c\xc3\x28\xfe\xd1\x9a\x0d\x40\x43\x7c\xaa\x2c\xb1\x63\x5f\x3c\x4a\x5b\x77\xde\xf6\x86\x89\x89\xe0\x94\xdd\x02\xb9\x18\x6a\x51\xfc\xd0\xd5\x61\xa1\x95\x37\xcb\x63\x37\x49\x68\x71\xdc\x4f\x0e\xd3\x5b\xb8\x8f\xad\xe8\xda\x18\x34\xfa\x75\x9f\x47\x30\x1b\x51\x3b\x15\x3c\xe0\x6d\x7f\x55\x44\x43\x4b\x1a\x1f\xed\xb4\x55\xa3\x8f\xd6\xcc\x29\x6f\x7d\xca\xb3\x74\xf9\x7b\x87\xfc\x45\x91\xd2\xf9\xe2\x09\x93\x67\x35\x8f\x2d\x2e\x9f\xbc\xc4\x3e\x7d\x92\xe8\xd7\x9b\xf9\xd4\x31\xd0\x69\x62\x49\x85\xb5\xe4\x73\x03\xb7\x14\x3b\x89\x4c\xbd\xd6\x4d\x27\x7a\x01\xcd\xe1\xc1\x97\x4c\x26\x6b\xdb\x8e\x8c\x16\x86\x4c\xb5\xe3\x75\xc4\x88\x57\x72\x0a\x03\x2f\x3a\x06\xfe\x33\x8f\xe5\xb1\x61\x90\xb6\x40\xd2\x71\x13\x81\xa1\x3b\xdd\xf8\xa6\x23\x6f\x97\xe4\x47\xe2\xdf\xb7\xae\x9d\xe2\x3b\xce\x98\xce\xa1\xbf\xb0\xfd\x7c\xb6\x7f\xa3\x44\x6a\x54\x49\x60\x06\x01\x39\xcf\x17\xf6\xff\x28\x65\x10\xc0\x5c\x56\xed\xc0\x87\xa8\x83\xfc\xb4\x05\x98\x02\xa9\xcd\xea\xa1\xc4\x27\x6e\x27\xc0\x49\x18\xec\xc5\x7a\x74\x70\xd4\x95\xb9\x40\xd8\xfe\x4e\x07\xc3\x09\x30\xd1\x9c\xbd\xda\x60\x3f\x37\xcf\x5f\x14\x29\x9e\xe7\xe0\x5f\x01\x19\x04\x21\x37\x44\x0f\x78\x76\x3e\x0a\xe1\x37\xde\x87\x46\xcf\xde\x29\xa7\x6e\xd1\xaa\xa6\xce\xcc\xf0\x4f\x63\x03\xee\xf8\x88\x9f\xcd\x84\x9f\x87\x1e\xe8\x64\x00\xe0\x1b\x49\x4c\x57\x65\x41\x23\x5c\x9e\xea\xfb\x14\x84\xce\x70\xfd\xbd\xe2\x3a\xcb\xe7\x91\x47\x1c\x48\x78\xdb\xec\xb8\xdd\xb0\x84\xb3\xc7\xeb\xa6\xed\xd6\xe2\xc9\xd9\x67\x91\xce\xad\xfe\x32\x08\xe3\x56\x08\x67\xe5\x4a\xaa\xef\xfa\xe2\x50\x66\x0c\x32\xf0\xea\xf6\x29\x55\x54\x5f\x13\x25\xc3\x4d\x4b\xef\x6a\x0b\xa4\x66\x59\xf4\xd2\x96\x24\xc2\xb8\x3a\x74\x87\xcb\xab\x0f\x24\x83\xd1\x0e\x77\x2f\xa2\x2b\x65\x2f\x75\x71\xec\xa9\x17\xd7\x55\xcf\x52\x35\xb0\xda\x7c\x8b\xa1\x39\x54\x16\x99\x70\x39\xf7\x75\x7c\xf9\x9b\x4f\xfb\xa1\x5b\x88\xdb\x20\x16\x2e\x0b\xd0\xa8\x06\x2d\xa2\x04\xf4\x0c\xe5\xbd\xee\xcd\xa7\x1f\xe0\xef\x15\x38\x1b\x03\xaa\x3b\x4d\x78\x24\xc5\xda\xbd\x85\x8e\x16\x1b\x84\x2c\xbd\xfb\x21\x42\xcf\x76\xf6\x74\xc1\xfe\x67\x3f\x2a\x08\xab\x08\x2b\x95\xbd\xa6\x69\x4a\x8b\xb9\x55\xe8\x25\x2d\xe3\xd9\x87\x49\x79\x15\x2d\xde\x2b\x5a\xb0\xd4\x7c\x9c\xb2\x78\x38\xb6\x7a\x32\x7d\xa4\x0b\x02\x04\xaa\xd7\xb2\xc2\x29\x76\x8f\x21\xc9\xd1\x8b\x2c\x22\xd6\x90\x39\x0b\x5d\xfe\x67\x7f\xdd\xc8\x03\x0a\xcd\x56\x08\x20\x2f\x08\x30\xa9\x72\xa0\x39\x01\xeb\x50\xad\xc7\xd7\x24\x31\xba\xa0\x3c\xe9\x7c\xc2\x1a\x67\xcc\xec\x7b\x92\xa9\xeb\x3a\x73\x13\xff\x9f\x34\x89\x8b\xc3\xf8\x7f\xa8\xd7\xa7\x3b\x4b\x6f\x77\x4f\x13\x3c\x86\x69\x5a\x7a\xe0\xcd\xa5\x63\x53\x3c\x3b\x1f\x67\x68\x16\x61\x75\x47\xb4\x8d\xd3\xf2\xb8\xd8\xd7\x66\xe8\x79\x31\xac\x36\x4c\xe0\xbc\xba\x7b\xe0\x92\x55\x73\x5b\x8e\x78\xad\xa7\x12\x4a\x08\xa8\x8d\x2f\xd6\x2e\x54\xd7\x92\x08\xc5\x5f\xe9\x6c\xbc\xce\x27\x47\x7c\xeb\x4b\x95\xd2\x06\xb9\x8f\x18\x6e\xa0\x05\xa7\xb5\xc3\x7b\x8a\x71\x00\x1c\x15\xae\x0e\x8e\x6d\x5f\x2c\x84\x13\x4a\x95\xae\x25\xea\x46\x9b\x30\x49\xe1\x53\x93\xa9\xb6\xd2\x15\x05\xd5\x9a\xfd\x9e\x33\x88\xaf\xcf\x86\xe2\x6a\xf8\xa0\xf8\xbc\x7f\xfb\xe5\x5e\x08\xa4\xe5\x94\xa8\x0b\x1c\x0e\x79\xfc\x74\x38\x48\xcf\x34\x2d\x61\x9c\x58\xbb\x95\x97\xa6\x62\xc0\x94\x2b\xca\x44\xaf\x59\x60\x1e\x65\x15\x05\xaf\xc5\x2d\x99\x23\x13\xfa\xd4\x31\x54\xa5\x50\xb2\x6f\x5b\xa2\x35\x6a\x5c\xd1\x9a\x2e\xed\x2e\xae\x6e\x63\x32\x06\x2a\xa1\xeb\x28\x35\xc3\x79\x2a\x5d\xf9\x63\x74\xbc\xec\x76\xfe\x67\xb5\xf6\xed\xa2\x91\xbe\x87\x6f\x9b\xa3\xe3\xc8\x6c\xa0\x2e\xad\x72\x2a\x6d\x59\x61\x19\x51\x54\x5b\x60\x23\xe4\x82\xd5\xd8\x8d\x2c\xf0\x91\x69\xb0\xb2\x76\x41\x4d\x17\xf8\x1e\xae\x40\x30\xa3\x33\x80\x8c\x9c\x63\x6a\xd2\xd2\x2a\x37\x8b\xc2\x3e\xc4\x8a\x2e\xf8\x31\xda\xd2\xf4\xb2\xa7\x49\x68\xa7\xa4\x0e\x68\xb3\xc9\xc8\x37\x05\x85\xc2\x04\x56\x2a\x0a\xc6\xf2\xd3\xb0\x10\x00\x60\xc7\xad\x43\x01\x8d\xd6\x26\x01\xc2\xdb\xff\x58\xe9\xfc\xc6\xab\xa6\x6f\x3c\x46\x16\x01\x29\x2f\x18\x96\xd0\xfd\x30\xe3\xb1\xc1\x03\xa2\x2e\x3a\xb1\x83\xf8\x0c\x72\xa6\x90\x6c\xc5\x83\xb1\x0a\x0e\xec\xa6\x4f\xfb\xf0\x01\xd4\xbf\x16\x56\x1f\x76\x82\x03\xfa\x69\x5a\xa5\xcd\x78\x40\x72\x60\xda\x0a\xa5\xa4\x92\x9e\x5e\xc2\xc6\xca\x1f\x7c\x61\x3f\x44\x0f\x65\x0a\xa7\xc4\x0d\x61\xef\x8a\x25\xbe\xbc\x0f\xe4\xef\x2a\x81\x49\x25\xd2\x9b\x7c\xe5\x5d\xe1\x27\xff\xfa\xb3\xa8\xc1\xad\x2e\xee\x6a\xaf\xb3\xb4\xa1\x1a\xea\xda\xfc\xc3\x62\x59\x44\x8c\x73\x06\x69\x1d\xdd\x17\xd3\x36\xe2\x7b\xf5\xf2\xc8\x50\x31\x05\xa7\xcd\x35\x40\x88\x6b\x6d\xb8\xa0\xd6\xc3\x6b\xda\x5d\xc2\x3a\x7e\x2e\x50\x76\x3b\x18\xf5\xf8\xb2\x2b\xf3\x3f\x81\xee\x44\x24\xaa\xc2\x3a\x4a\x2a\x1d\xf1\xdc\xaa\xfc\x51\x98\xf1\xb4\x28\x0a\xc0\x97\x04\x01\x02\xf6\xbe\x76\x2c\x3f\xb8\x37\x3c\xd8\x4d\x29\xb3\xfe\x2c\x39\xd3\x7f\x1d\xf8\xfb\x22\xa9\x6b\x20\xfa\xc7\x90\x5d\x36\x77\xb2\xc4\x57\xdc\x8a\x57\x7f\x87\x11\x3e\x58\x39\xd0\x91\x5e\xcd\x09\x55\xac\x1c\x3b\x86\x9c\xae\x18\x7e\x07\x3c\x04\xb9\xf3\x60\xdc\x5e\x27\x13\x9d\x91\x22\x94\x02\x88\x97\x61\xbd\xae\x60\x30\x7c\x9d\xba\xe8\x6c\x1a\xf7\xe2\xab\xed\x2c\xab\x88\x3c\x1d\xb6\x73\x6d\x8f\x49\xbf\x7d\xfd\xb1\x43\xb6\xf6\xc0\xe8\x73\xf4\xa5\x0b\xe8\x6e\x9c\x8e\x4d\xfa\xe6\x9e\xcb\xd7\xef\x2c\x8b\x10\x18\x37\x92\x95\x37\xd2\x57\x7d\x2d\xa4\x9b\x54\xd1\x03\x3b\xf3\x5f\x5f\x27\x20\x93\xe1\x4c\x91\x81\x49\x13\xa5\x25\x39\xfe\x2e\xe8\x1e\x9c\x2b\xae\x69\x34\xd2\x3a\x16\xaf\xa3\x69\x6a\x8d\xad\x5a\x41\x5b\xfd\xf2\x66\xa5\x75\xb5\x8b\xac\x8d\xeb\xf1\x54\xb7\x1c\xc6\x9d\x1f\x44\xe6\x04\x9c\x3d\x79\x11\x76\x8e\x69\x9e\x0e\xf9\x8c\xcb\xb3\x92\x51\xb1\x1c\xba\xe0\xbe\xd7\x50\x76\x53\xf7\x05\x47\x95\xe8\xd1\x98\x38\x04\xe3\xc4\x68\xb1\x05\xfd\xcf\x65\xeb\xb0\x25\xa5\x89\x60\x2d\xc9\xa9\xc2\x9f\x57\x09\x74\x36\xbd\x4c\xb8\xe2\x84\x79\xd6\x59\x7a\xab\xf6\xe5\x94\xc7\xc4\x48\xb5\x32\xb5\xd8\x3b\x89\xf7\xb3\x95\xd8\x6b\xa5\xd4\xc4\xe7\x56\x91\x24\xe2\xaf\xd5\x1f\x3f\xe9\x17\x7a\x01\x6a\x58\x88\xa7\x17\xdb\x20\xaa\x7f\x6f\x25\x01\x1a\x23\x5b\x32\x59\x7c\xea\xea\x02\xf6\x64\xa7\xce\x18\x3d\x0a\x91\x0f\x68\x82\x35\x89\x9e\xcf\x10\x5c\xae\x69\x3f\x8b\x68\xee\x5d\xe6\xab\xa7\x94\xd3\x7e\x2b\xb1\xf6\xbe\xe2\xbf\xe5\x4c\xff\xf2\x9c\x36\x45\x05\x77\x2c\x22\x7d\x2b\xd6\x73\x25\x1c\x41\xc9\x12\x6d\xbe\x8b\x62\x36\x87\x83\x40\x0e\xd3\x8b\x3c\x64\x7d\x16\xdc\xeb\xa3\xea\xbd\xca\x40\x42\x6b\x89\x9a\x37\xa9\x2b\xdc\x46\x48\xec\xbb\xb0\x02\x27\x79\x21\x05\xfe\x48\xaf\xfd\x43\x66\x01\xbb\xcf\x1f\x35\x0d\xdf\x5b\x9b\x01\xef\xfd\xce\x27\x5b\x5e\x5f\xc5\x7a\xfb\x6c\x33\xa2\x3f\xa0\xb0\x8c\x17\x96\x12\x80\x63\xb7\xce\x33\xe0\x35\x96\x24\x08\xa8\x2d\x1e\x7d\xe8\x1d\x4c\x24\x79\x1f\x7e\xf9\xe1\xeb\xc5\xcc\x64\xe3\x87\xab\x77\x6b\xc0\x6b\x5a\xd7\xe7\xbe\x7f\xf4\x6e\x2f\x37\xd8\xcf\x49\x65\x9a\xf1\xef\xf1\xdb\xa4\x36\x56\xcd\x4d\x00\xf4\xbc\x21\xc7\x2b\xb6\xed\xcd\xc1\x86\x79\x2e\x45\x8b\xbf\x8a\x76\x61\x42\x94\x8a\x7b\xae\xe3\x88\x74\xcc\xa9\x12\x98\xcd\xe3\xf2\xf7\xd3\x76\x39\xce\xad\x6b\xfc\xc6\x26\x2c\x80\xa2\x88\xc0\x0f\x89\x43\xf7\x71\x09\x18\x35\x25\x39\xcf\x09\x01\xd5\xb2\x81\xf1\xbb\x39\xb6\xf3\xe7\xc2\xd8\xf1\xc3\x1b\xcc\x07\x4a\xb1\x97\xaa\xd1\xa0\x40\x06\xde\xbf\x9f\x07\x1e\x74\x43\x3b\x2d\xc3\x32\xbc\xd4\xff\xdc\x6c\x99\x67\xef\x32\xf9\x53\x31\xd5\xe2\x7b\x31\xd7\x6e\x64\x21\xa6\xdf\x34\x98\xc9\xd3\x01\x30\x6e\x6a\xde\x4d\xc7\x0e\x85\xbb\xb4\x73\x9a\xbf\xc7\x7b\x04\x12\x8d\x02\x28\xd6\x11\xc7\x1e\x74\xdd\x4b\xed\x5b\xe5\xe1\x6e\xd3\x6e\x58\x96\x48\x60\x98\xb0\xc2\x3e\xb1\xaf\xcf\x0f\x0e\xf4\x4c\xb2\xd0\x06\x3a\x5d\xe2\xc1\xe2\x2e\x5a\x75\xb3\x56\x78\x56\xf5\xf9\x45\xb2\xcc\xd7\xc3\x88\xd5\x27\xb8\xed\x1a\x6d\xbc\x58\x6d\x88\xc6\x6e\x7d\x2e\xdb\xa3\xa3\xff\x06\x3e\x1a\xa6\x3a\x9e\x09\xc1\xa2\xa1\x81\x81\x06\xbb\x33\x43\xb2\x5f\xe8\xfa\x3a\xbb\xb6\x7a\x4e\x74\x37\x13\xde\xfb\x8f\x3a\xe2\x85\x6c\x01\xaf\xc2\x76\x83\x20\x5b\x58\xbc\x4f\xd1\x72\x58\x00\x07\xf9\xf9\x78\x80\xed\xf9\x63\xd3\x4f\x45\x64\xbd\xc4\x27\xa3\x12\xf6\x9a\x36\x9c\x9a\x10\xcd\xa1\xa5\xa5\xc0\xf3\x93\x3b\x8d\xad\xe4\xe3\xec\x17\x2d\x9a\xa3\x4b\x87\x3d\x1e\x5a\xb9\x4b\x18\xa3\x76\xbb\x1b\xbf\xfe\xd5\x81\x21\xd3\xf8\xf5\xfa\x82\x8c\x7c\x05\x66\xc4\x96\x02\x58\xa3\xed\x8b\x95\xd7\x9c\x40\xe0\xa5\x84\xf9\xe7\x30\x2c\xa1\x20\x7f\x03\x4b\xdb\x96\xae\x56\x7f\xf6\x11\xc2\xfb\x0c\x56\x8a\xfe\xed\x1d\x0b\x59\xcf\xe7\xa7\x7f\x9c\xdb\x73\x7d\x40\x59\xfe\xbc\xc9\x7e\xd5\xed\x4f\xcc\xd9\xae\x3a\xde\xae\x5f\xcc\xd0\xfe\x40\xbb\xe4\x16\x3c\xd4\xf1\xa5\x7b\x3f\x71\x9d\x74\x14\x12\x66\x20\x54\xee\xb5\x3f\x3b\x0c\xaa\xba\x3b\x6e\xfd\x22\x71\x5e\xc1\xed\xd8\xa5\x2a\xd5\x44\xb6\xaa\xac\x70\x50\x2b\xac\xa1\x27\x20\xa9\xc8\x00\x9b\x0c\x52\xa6\x00\x8a\xbd\xf8\x3e\xec\xa3\xe2\x0b\xeb\x90\x7a\x45\x8f\x8d\x45\x4d\xcf\x60\xb5\x9b\xcf\x09\x31\xa1\xae\x76\x62\xef\x97\x9a\xbf\xe6\x3d\x98\x3a\xfc\xd5\x75\x14\x09\x4c\x36\x33\xc5\xbd\xa3\x00\x90\xf7\xc8\xe1\xbb\xeb\x40\x3f\x49\xd0\xde\x26\xe8\xb4\xa2\x05\x0c\xbc\x0f\x76\x77\x16\x7b\x2f\xe6\xb9\xa3\x74\xaa\x4b\xcb\xa3\xfb\x38\xf8\x76\xbe\xf1\x30\xe6\x51\xfb\x9d\x13\x66\x69\xf1\xe8\x43\x8b\xed\x46\xa7\x9b\x0a\x14\x7d\x2e\xc7\xb9\x45\xc2\xc9\xb1\x04\x42\x90\x01\x09\xe6\xa6\x78\x27\xbd\x68\x14\x7e\x5b\x5b\xa9\x1f\x42\x9c\x88\xbb\xc1\xf3\xf2\x63\xca\x20\x72\x4b\x06\x0b\xf8\x1d\xef\x71\xb8\xa8\xa1\x8e\xda\x83\xd7\x82\xb9\xff\x5d\xac\xa1\x6c\xcf\xe3\xab\xde\x5e\xe7\xa0\xb6\x09\xcb\xc6\x9a\xbf\x1e\xce\x57\xaa\x1a\x8e\x32\x46\x7a\x41\xe9\x5e\x1f\x55\x80\x11\xc1\xf0\xae\x89\x85\x0b\x6f\xcf\x41\x14\x6b\x4a\xc7\x50\xe5\x88\x87\x86\x14\xec\x73\xd4\x58\x79\x6c\x97\xa9\xc8\xd3\x72\x29\x2f\x53\x04\xa5\xe2\xf5\xde\x54\x49\xd1\xcc\x88\x41\x74\x3c\x8d\x76\x50\xde\x0d\xa7\xaa\x06\xd4\x74\xf1\xdd\x43\x7a\x0d\x3d\xca\x32\x2c\x5f\x98\xca\x7e\x9c\x9f\x01\x56\x28\x00\x95\x78\xa9\xa9\x6d\xfd\x39\xc4\xbe\xdc\xba\xd4\xff\x78\x87\x06\x27\xd2\x63\x1f\xf9\xf5\x30\x0d\x6d\xe2\xd0\xfa\x95\x04\x27\x85\xdf\xb5\xee\xc9\x55\x16\xf3\x79\xdc\x11\xc4\xd8\xcd\x89\xec\xfc\x31\xf9\xa3\x17\xf7\xc9\xfd\xcb\x1e\x39\xda\x8a\x04\xbf\x7b\x36\xbb\x65\x37\x3c\x1e\xe9\x4e\x86\x10\x1d\x37\xf7\x4a\xf2\xca\xf7\xd1\x44\xf8\x1d\x6d\x77\x01\xd1\x8f\x76\xa4\x67\xc4\x80\xd0\x7b\xeb\x4f\xac\x87\x2d\x46\x43\x4b\x5f\xf1\x2a\xde\x11\xc6\xbf\xfd\x9b\xf6\x39\x65\x0e\x8f\xd0\xd9\x60\xda\xc6\x41\xc0\x72\xa9\xf1\xb7\x1a\x6a\xf5\xbc\x7b\x8f\x35\x5d\xde\x2b\x71\x9d\xb2\xfd\xf8\x1a\xc0\xa4\x40\x8c\x3a\x54\xa3\x92\xb8\x54\x33\x31\x20\xb9\x41\x7f\x96\x6c\x52\x30\x92\xd8\x35\xfa\x53\x82\x00\xa3\x21\xe5\x9f\x26\x20\xc8\x7b\x14\x01\x49\xdb\xcd\x84\x3c\x9c\x2d\x6e\xd8\xf2\x54\xec\x3a\xaf\xe8\x9e\x16\xae\xc7\x37\xd7\xed\x1e\xcb\x3d\xc5\x6f\x85\xd3\x21\x87\x45\x0b\xa7\xae\x0c\x38\x71\x74\xbe\xe7\x24\xef\x36\xf1\x88\x6b\xfc\x6c\xfb\xf2\x51\x88\x2f\xbd\x39\x4a\x18\xa6\x3d\xe8\xf2\x86\x2a\x4d\x25\x75\x9c\xd6\x68\xfe\x3b\x2b\x69\x9b\xdf\xcd\xe1\xbf\x75\xe8\xb7\x95\xd3\x8a\xba\x54\xaa\x59\x66\xf6\xd1\x6a\xff\xfc\x81\xa7\xe9\x5e\x75\xec\x2f\x7d\x5d\x5b\xef\x64\x4d\xdc\xf0\xa1\x5f\x2d\x92\x55\xc8\x27\x77\x34\x7e\xbc\x5a\x88\xde\x84\x13\xb7\x29\xa7\x6a\x7f\x25\xbb\xea\xbc\x9f\xe8\x89\xbc\x9f\xd8\x5e\x8a\xdb\x3e\x92\xee\xc4\x0f\xf1\xf9\xb6\x8b\x87\xfe\xf9\x25\xe0\x5e\x86\x1e\xf7\xea\x9c\x3d\xef\xa9\x80\x7a\x51\x9d\xe2\xd7\x99\x89\xa4\x5a\xa8\xdb\xd5\x91\xea\xb3\xeb\x6d\xce\x81\x75\x6f\x79\xfd\xd4\x5f\x03\x8a\xce\xe9\x56\xb8\x32\xfc\xdb\xa1\x74\xc4\x7d\x15\xe4\x4e\xc0\x5f\xd2\x0f\xdc\x6b\x7f\xe8\xab\x15\xf4\x0b\xbd\x1a\x52\xaa\x1b\x92\x7e\x3f\x77\x64\x3e\x18\xae\xda\xde\xa6\xfe\xe8\xf9\xbc\x19\x12\xb8\x13\x74\x52\xd1\x60\x79\xbb\x42\x57\x3c\x18\x95\xf7\x84\x0e\x1b\xf8\x0e\xef\x20\xeb\xc4\x7f\x9e\x1f\x66\x0b\x43\x34\xa4\xa4\xff\xe9\x42\xe1\x23\x20\x8f\x4f\xa4\x93\xed\x4f\xac\xcf\xa1\x73\x66\xec\x2d\x1d\x26\x6f\x2c\xa7\xdb\x5d\x60\xf4\xc4\x12\xb9\xd0\x39\xe1\xf5\x93\x05\xad\xb7\xd8\x35\xc1\xa0\x07\x2e\x23\x92\x34\xc2\x59\xdb\xe2\x7c\x05\xaa\x71\x1e\xfb\x5e\x15\xb1\x26\x8a\xfb\x19\xe7\x74\xef\x6a\xd2\x60\xb8\x06\x6f\x88\xde\x22\xcb\x4a\x43\x25\xcd\xcb\x01\x7c\x14\x49\x36\x97\xf6\xd1\xbd\x2f\x8c\x72\x07\xe7\x84\x1d\xd4\x1a\xd7\x56\x19\x08\x67\x75\x22\x7a\x00\xc7\xca\xf8\x54\xe4\x97\x50\x0f\xfe\xed\xce\x7c\x68\xa9\x72\x39\xb6\x57\xf1\xdb\x7e\x23\xe5\xc3\x62\x2b\x3f\x41\x26\x83\x8f\x89\x69\x4a\x0e\x43\x60\x80\x55\x48\xdd\x88\x52\x13\xdd\x36\xfe\x63\xb0\xc7\x7d\x7f\xc2\x65\x7d\x41\x83\x57\xa4\x3b\x92\x15\x40\x25\x39\x69\x81\xcd\x54\x1d\x4e\x62\x2e\xef\x3b\xa9\x1f\x2f\xb1\xe3\x39\x0d\x15\x58\x94\xc3\xf4\x4b\xa8\x4b\xaa\x52\xab\x84\x6a\xf5\xbd\x45\x2d\xdf\xa5\x7e\xa7\x57\x66\x7e\xc1\x4e\xed\xea\x24\xed\xe6\x64\xe4\xfc\x3b\x1c\x80\x74\x2f\xd6\xe2\x09\x95\xe0\x97\x25\xbc\xaa\x8b\x89\x6e\xb8\xad\x52\x18\x14\x48\xd5\x79\x3a\x65\x69\x32\xdb\x4d\x20\x71\x43\xf1\xad\x28\x46\xce\xa6\xb5\x93\x0e\x1e\xce\x01\x60\x5e\xde\x20\x99\x34\x0b\xe8\xc5\x9d\x0a\xf3\xb3\x39\xd7\xc8\x5d\x07\xe9\x87\xbe\x5d\xe9\xc4\xe7\xe1\xb4\x6d\x42\x28\xef\x59\x01\x3a\x7a\xe2\x70\x13\xeb\xea\xb8\xee\x91\x76\xaa\xcb\x0a\x2a\x5d\xde\xa0\x02\x03\xcb\x1d\x8a\x80\x42\xc2\xd4\x04\xfa\x46\x4d\x13\x1e\xea\x53\x75\x05\x93\xf4\x4b\xa4\x96\xd6\x8e\x89\x91\xea\x23\xdc\x36\xf6\x98\x58\xe6\x46\x68\x66\x44\x4a\xd5\x60\xf3\x9e\xc7\xbe\xeb\xba\x98\x03\x45\x7b\xac\xfa\x6c\x1f\xb2\x2c\x58\x0f\xc5\xea\xbb\x17\xad\xa8\x19\xad\xc0\xbc\xf1\xfb\x29\x0b\x79\xca\xef\xfa\x5c\x35\x75\xea\xb0\xa0\xe5\x4b\x13\xcb\x8a\xc1\x8b\x5f\x8a\xd5\x14\x1e\xce\xc5\x2c\xc3\xcc\xf6\x71\xb1\x6c\x1a\x7c\x72\x54\xa0\x1c\x4f\x4d\x21\x4c\x98\xf3\x5f\x88\x1a\xd4\x75\x21\x41\xbf\x30\x47\xb4\xc9\x10\xef\xc3\xa7\x97\xef\xcb\x76\x2c\x8f\x4c\xb4\x73\x65\xa1\xae\xaa\xbb\x02\xae\x90\x1c\x01\xbc\xbf\x88\x2b\x6c\x49\x9c\x8f\x8d\xd3\xb2\x78\xf8\x26\xe9\x45\x46\x20\x02\x40\x09\x7a\x6e\x20\x5b\xb8\x15\xae\x70\x2d\xa8\xf1\xc7\x5f\xb8\x2f\x90\x3e\xd5\xe9\x4d\xf3\x32\x08\x86\x78\x89\x99\x60\x71\xa4\x31\xf4\x29\xbc\xbe\x53\xdd\x95\xc8\x64\x59\x56\x0d\xef\x24\x2b\x7d\xd4\x72\x24\x40\xaa\x3f\x31\x7f\x17\x73\x97\x1d\x78\x63\xf1\x0e\x47\x72\x63\x12\x2b\xa6\x21\xc5\x90\x78\xdb\x5c\x86\x1a\x60\x48\x00\xda\xf5\xc6\x6c\x6f\xa2\x03\xd9\x74\x2f\xf9\xc5\xc2\x8c\xc5\x89\xa4\x41\x70\xfc\x4a\xab\xd3\xf8\xf0\xf6\x89\xb7\xf8\x7f\x72\x5b\xc8\x00\x8c\x8b\xa4\xa2\xe9\xf7\x7f\x64\x26\xee\xa2\x17\x98\x6e\xf7\xe2\x37\x25\xd2\x8a\xe5\x91\xd1\xb7\x27\xe7\xf1\xb8\x32\xff\xec\x95\x1f\x3b\xa1\x33\x64\x86\x0d\x29\xe7\x68\xee\x3d\x07\xa7\xe3\xd3\x2c\x21\xae\x39\x62\x13\x00\xf1\x55\x91\x0a\x2c\x61\xb7\x9f\xd1\x4b\xaa\x17\x3c\xf4\xfd\x32\x41\x7b\x59\x61\xfe\x19\x99\xac\xe7\x22\xcb\x29\xbb\xcc\x40\x81\x12\x7b\x59\xbd\x5e\x22\x75\xdc\xfb\x70\xab\x2e\x90\x70\xa0\x68\xf0\xd0\x47\xac\x25\xae\x24\x81\x3a\x2d\x1d\xdb\xee\x38\xbd\x48\x06\x07\x97\x49\x8d\x6f\xab\x75\x81\x76\xad\x15\x9d\xfc\xe8\x7b\x7a\xdc\xfc\xa3\x44\xb3\x09\x3a\xbf\x5a\x04\xde\x37\x90\x36\xb9\x6b\x2a\xf8\x1d\xf1\x5a\xfb\x49\x98\xc4\x77\xc8\xb4\x7f\xfd\x5c\x30\xdc\xe9\x66\xe1\xf1\x6d\xed\xeb\xe7\x45\x27\x38\x54\x46\x8c\x39\x7f\x48\xb2\x94\x62\x99\x34\x0b\x68\x59\x72\x2d\xf4\x78\x31\xcb\x23\x1a\xba\x9d\x46\x36\xd8\xb0\x36\xe4\xb5\xa0\xf0\x54\xb5\xd1\x49\x0e\xd1\x90\x28\xee\xe7\xde\x07\xb1\xb0\xd6\x52\xed\x59\x6f\x5b\xe2\xe7\xce\x93\xb5\x64\x39\xc9\x23\xe6\x56\x8e\x38\xc0\x68\x79\x29\x2b\xf7\xb0\x76\x82\x44\x1c\x55\xda\x37\xd2\xb9\x6c\xa6\xe0\xed\x0f\x25\x67\xd1\xdc\x9f\xba\x1d\x5b\x5c\x1b\x6f\xf8\x6a\xf0\xf7\xa2\xbc\xd4\x49\xca\x9d\x4e\x50\xc6\x3f\xa7\x1b\x9e\xca\xe5\x34\x84\x72\x72\x6f\x87\xb3\xbf\x14\xa6\x75\xfd\x03\xa1\xc3\xdb\xa3\xac\x94\x60\x6a\x13\x06\x0f\x7c\x6b\x6a\x16\xf7\x19\xfd\x16\x63\xf2\x50\x59\x81\x49\x35\xca\x0d\x41\x75\x54\x72\xb5\x37\xea\x4a\x51\xe9\x21\xaf\x67\xc7\xd5\xd8\x2d\x0e\x1f\x5d\x89\xfe\x3a\xe0\x26\xbd\xbf\xab\xb0\x9c\x14\xb8\x70\x33\xbb\xa0\x5d\xbe\x46\xc9\x47\xe5\x2e\x47\x49\x79\x25\xe0\x08\x10\xb2\xdd\x84\x32\x07\x33\x85\xd1\x7f\xca\xd8\x06\x78\x31\xa3\x14\xeb\x65\x49\x8f\x05\xc3\x14\x78\xad\x3f\x53\x99\x2f\xc5\xd1\x70\xa7\xbf\xc8\xa5\x7a\x18\x82\x2f\xd5\x6d\x10\xff\x78\x5d\xa2\x33\xc7\xef\xdc\x80\x7f\xaf\x7f\xd7\x0e\x91\x94\x63\x78\xfa\x58\xc3\x0e\xd8\xca\x28\x64\xcf\x4d\xf8\xe6\xd4\xef\x12\x12\xfe\xe1\x19\xf8\x36\x06\xf3\x3e\xb5\x32\x41\x4d\x7b\xeb\xa7\x06\x37\x4a\x9e\x11\xe4\x45\x05\xc4\x49\x2b\x6c\xbc\x5e\x23\x13\x64\xea\x55\x54\xe2\xc4\x90\x24\x05\xf0\x23\x19\x49\x00\xaf\xd6\x5e\xb1\x60\x3a\x39\xd2\x95\xc2\x7a\xdf\xfa\xfb\x5e\x62\x59\xef\x64\xfa\xd9\x8d\xa2\xc7\xa6\x56\xc6\x15\x38\x7e\xe4\xcc\x75\x32\xd2\x63\xda\x4f\x6b\x23\x5b\x66\x2c\xf7\x15\xaf\x3b\x91\x81\x27\xe3\xab\xbf\x65\x9b\x4d\xc4\xcb\x0d\xc7\xb2\xb0\x86\xb6\xfc\x3a\x13\xc7\xb2\xee\x9e\x7d\xac\x73\xd8\xeb\x3a\x3f\xab\x1e\xb4\x7a\x60\x3c\x8e\x4f\xe7\x7d\x31\x00\x11\x1e\xf8\x1a\x81\x42\x30\x1e\x89\xa4\x18\x42\xb8\x1e\x82\x18\x78\x1f\x03\xbf\x94\x33\x01\x92\x10\x1c\xfd\xb2\x2a\xf6\xf5\x13\x66\x2a\xd2\xc1\x13\x38\x82\xaa\x28\xbc\x5d\x45\x81\x32\x5a\x26\xd9\xd6\x03\x30\x4e\x07\xdf\xfa\x21\xcb\x0e\x8e\xbb\x2f\xbb\x22\xd8\x65\x3c\x89\xce\xc7\xec\xd4\xa3\x84\xc3\x95\xa9\xcf\xea\xb8\x0f\xba\xb8\xa5\xef\x0b\xde\x90\x7d\xe5\x7a\xf8\xac\x06\x16\x11\xec\xfb\xa6\x03\xd2\x43\x20\xc8\x80\x43\x7f\x1e\xe8\x19\x2a\xe7\xe4\x3a\x30\x37\xf9\x72\x25\xe2\xc4\x8f\xc3\x7c\xb6\xf3\xae\x93\x3c\xd7\x3a\x1a\xc0\xd5\xc5\xf4\x9f\x69\xaf\x60\xf2\xf0\x47\x02\xf7\xfe\x2b\x86\x76\xac\x6b\x7e\x4c\xd4\x68\xf3\x0b\x45\xd0\xae\x81\x5f\x38\xdc\x4c\x0b\xe9\xd1\x6b\xcd\xf8\x1e\xd7\x28\x84\xd7\xd1\x3f\x79\x17\x0c\xf7\x78\xd3\x8d\xe6\x73\xc7\x97\x8c\x1c\x31\xc3\x96\x5b\x66\xb9\x4c\x09\x08\xeb\xfc\x10\xd6\xf9\x05\x8e\x68\x23\xa0\xb7\x41\xdd\x6f\xa0\x3f\xf6\xc4\x8c\x73\x62\x5d\x8a\xe2\xcb\x0e\xe2\xb8\x0f\x33\xca\x7e\x39\x9d\x2b\xcc\xbb\x8b\x0c\xd2\xe1\x91\xac\x14\x56\x73\x2d\x93\x7a\x5f\x24\xc7\x4c\x67\x83\xe7\xa5\x20\x89\x67\xd0\x02\x6a\xe1\x00\xf9\x72\xd6\x03\x65\x1d\xbc\xc5\x17\x5c\x2f\x1e\x51\x93\x1d\x95\x83\x77\x9d\x46\x68\xf5\x70\x84\x29\xf5\x09\xa7\xdc\xf2\x8c\xaf\xdd\x8a\xe9\xce\xf1\x96\x48\xe0\xb0\x10\x7c\x3c\x10\xc9\x1b\x95\x47\xc1\x8b\xf8\x09\x10\xe6\x34\x74\xd1\xad\x85\x36\x91\xbb\xfa\x61\x01\x92\x25\x39\x50\x69\x3f\x7e\xdc\x43\xa0\x0f\x14\x6a\x5f\xa5\xdf\x55\x8f\xcd\xc8\x41\xc7\x42\xb1\x2e\xad\x53\xe5\x01\x9b\x5f\x58\xbb\xc3\x32\xd9\xf5\x1a\xef\xb4\xc7\xc1\x02\x12\x5c\x85\x51\x4a\x1d\x2c\xc9\x72\x63\x77\x8e\x59\xaf\x71\x84\x6d\x63\xa1\xd6\x9c\x03\xe0\x83\xde\x02\x46\x43\xa6\x10\x52\x7a\xcc\x7c\xcc\x1c\xa4\x61\xd6\x87\xb2\x7b\x8a\x6f\xe0\x1a\xc3\xce\xc7\x8a\x96\x15\xbc\x27\xa1\xe6\x65\xbe\x9d\x2c\x12\x57\xda\x54\xd8\x26\x8c\xa5\x86\x66\x5a\x83\x56\x7e\xdd\xfe\x48\xab\xdf\x30\x17\x4c\xc5\xa7\x4d\x65\x5f\x6c\x1c\xfc\x24\x02\x8a\xc0\xb8\xcb\x31\x45\xa7\x24\x4f\xeb\xe0\x1f\xf3\xbb\x3a\xb1\xf8\x6e\x1d\xe3\xf0\x68\x8c\xb0\x00\x4c\x67\x6e\x79\xca\xec\x60\xbe\x3d\x63\x3e\x76\xb3\x81\x97\x71\xc3\x4f\x42\x03\xba\xd4\x6d\x70\xdb\x18\x8b\x61\xdc\x1c\x35\x1b\xdd\x63\x53\x0d\x55\x2e\x52\x3f\xdc\x77\x37\x9c\x9a\x72\x1b\x6f\x26\xed\x65\xc5\xcb\xd4\x1e\xda\xca\xbd\x98\x3a\xc9\x11\x51\xf2\xb1\x34\xc5\x18\x79\xf3\x3b\xd8\x21\x8c\x1e\xe8\xec\x9d\x30\x3c\x96\x0e\x2c\xae\x83\x1c\xa7\xc2\x6f\xf9\x76\x76\x97\xbe\xf8\x32\xc7\xb5\xd2\x0a\x98\x28\x79\xff\x47\x85\x78\x33\x0c\x66\xb4\x0f\x26\xfd\x8c\xa8\x5e\x6e\x3b\x43\x96\xdc\x76\x1c\x51\x7e\xe0\x43\x9f\x0b\xa0\xd6\xe2\xf0\x79\xe8\x35\xd0\x46\xb5\xde\x9e\xe6\xb7\x86\x47\xe5\xea\xb9\x6b\x22\x0f\x20\xcc\xa0\xe4\xfd\xa4\x5b\x7e\x9d\x80\xe6\xbb\x01\x4a\x55\x0c\xc7\xc6\xa6\x00\x7a\x44\xd2\x75\x97\x97\x2a\x63\x9c\x68\x40\x26\x7a\xb3\x40\x96\xcc\x56\xc6\x33\x89\xf7\x1d\xa1\x57\xd9\x52\x0c\xdb\x80\x92\xee\x56\x84\x6d\x40\x01\x5d\xb3\xa8\x85\xea\xf5\x87\xb6\x27\x10\xf2\x49\x13\x41\x4f\xbd\xed\x56\xa4\xc3\xca\x4a\x77\x39\xcc\xfd\xa2\xee\xcf\xa1\x35\x96\xdb\xc1\x99\x10\x9b\xf9\x2c\xb3\x30\xef\x2e\x11\xee\xe0\xb6\x50\xee\xe5\xfc\x0d\x12\x9a\xb4\x46\xfb\xfe\xb2\x4e\x4b\x88\xb0\xc4\x6f\x28\x47\x06\x18\xde\x21\x22\x69\xd3\x63\x07\xd4\x78\x3e\x85\x8d\x2f\xa6\x21\x5f\x1e\xc4\x93\xbf\x16\xc8\x35\x01\xd6\x5d\x88\x9a\x5e\x13\x31\x26\xd1\xf8\xc2\x24\x33\x38\xe3\x86\xc7\x53\xce\xcc\xa6\xbd\xf4\xe4\xea\xfa\x92\xbf\x4d\x5f\x4f\x29\x02\x09\xc9\x04\x7b\xd2\x43\xed\x3f\x79\xe5\x18\x57\x96\x48\x41\x31\x81\xb2\x59\xf2\xe9\x1a\xd8\xf3\x8a\xe3\xc4\x09\xe4\xd4\x6b\xc4\xd1\x1a\x98\x0f\x91\xce\x1d\x46\x1b\x6f\xfb\x2c\xf5\xe2\x9f\x2d\x5c\x7b\x4a\xb9\xa1\x63\x09\x3a\xdb\xd0\x63\xf2\xa4\x27\xc4\xe8\x86\xfb\x44\x30\x8e\xc1\xcc\xb6\xae\x83\xff\x17\x94\xaf\x63\x9b\x5a\x99\xaf\x84\xdc\x18\xbe\xbb\x04\x89\xd9\xf7\x34\x00\x34\x69\x08\x3a\xbf\xba\x53\x6f\xdf\x84\x90\xb3\x70\xe1\x03\x3f\xe8\x18\x89\xd3\x78\xd1\x21\xe0\x1e\x72\x0b\xa2\x7c\xfa\xa1\xa9\xa5\xab\x3f\x9f\x53\x0f\x66\x35\xc0\x29\x7c\x85\xc2\xa9\xeb\x07\x95\xd0\x39\x4e\x8e\x6e\x02\x79\xcd\x01\xe9\x8b\x94\xd5\x24\xe2\xb0\xcc\x50\xa7\x10\x8c\x9a\xc6\x2e\xd2\x03\x37\x52\x42\xd1\x87\x19\xea\x9c\x25\xc5\xf9\xfe\x25\x9a\x3d\x79\xb1\x8f\xe6\xb3\x6b\x22\x37\x15\x41\x7e\x91\xed\x3b\xed\x2b\x24\xe2\xd1\xaf\xc8\x43\xb8\x6e\xc4\xb0\x0b\x81\x9a\x86\x35\x5e\x39\xf7\x45\x17\x00\x00\x9d\x7b\x00\xc0\xfc\xca\x68\xac\xfb\x13\x2c\x55\x65\x9b\x5e\x78\x57\x7d\x20\x15\x1b\x9d\x34\x20\x47\x82\xf3\x9d\xaa\xa8\x6d\x81\x0c\xf0\xfa\x05\xde\x7d\xb5\xf1\x0d\x40\x94\xd6\xc3\x85\x87\x92\x90\x38\xb2\x79\x6c\x34\xae\x27\x09\x5d\x31\xeb\x16\xcb\xec\x78\x95\x3b\xd4\x78\xad\xcd\x00\xc2\x49\xb6\xcd\x0f\x05\x88\x10\x74\xb1\x81\xa8\xb4\xf9\xc5\xf8\x75\x9c\xa2\xf1\xd5\x9d\x5a\xa4\xdc\x79\x56\x9e\x5d\x19\x04\x10\x8e\x63\x8c\xba\x54\xbf\x62\x61\x8b\x4c\x04\xb7\x7d\x73\x35\x25\x46\x14\xa1\xb2\x5f\x88\x24\x96\x0b\x62\xeb\x4d\x7d\x00\x85\xba\x79\xb1\x99\x0d\xd5\x87\x77\xc4\x2f\x79\x72\x61\x7d\x3f\x03\x20\xa9\x79\x98\xdb\x39\x84\x5e\xb1\x2d\xfe\x00\x79\x77\x37\x5e\x47\xcc\x81\xc5\xf3\x2d\x10\x9c\x17\xb4\x86\x33\x3a\x47\x16\xfc\x1c\x4d\xbb\xdc\x79\x1e\xfb\x24\xf8\xf1\xfc\x9f\x8b\x18\x31\xaa\x31\xbf\x47\x9d\x68\x9b\x7a\x10\x06\x10\x2b\x93\x20\x8e\x0d\xfd\xf1\x18\x07\xba\xc3\x20\x18\xfe\x70\x5d\x29\x77\x20\x0a\xa6\x85\x7c\xc4\xb7\xc8\x98\xac\x8b\x7e\x67\x57\xa7\x49\x81\x40\xbb\x3d\x98\x60\xca\xe7\xc2\xc3\xcc\xbe\x3f\x8d\x77\x6e\x23\x93\xe1\x1b\xca\xe5\x99\xf6\x8b\x81\xac\x41\xb7\x48\xe1\x7d\xfb\x72\x3a\x4c\xb0\xdb\x4b\xaf\xf0\xfd\xb5\x26\x96\x90\xbb\x05\x75\x6b\xb5\x09\x60\x21\xdb\x55\xb2\xe8\x51\xea\x39\x2d\xc4\x09\xdb\x28\xe1\x91\x86\xd6\x40\x06\xc8\xb0\xa4\xaa\xab\x9c\xda\x44\x34\xfb\x9e\x43\x8e\xca\xfe\x1d\x0a\x5c\xd1\xa6\x2b\x00\xdb\x92\xb8\x32\x7b\x70\x6a\xa6\xc8\x20\x4c\xaf\xb1\x90\xaf\x6f\xbd\x0d\x3c\x6b\x02\x49\x50\x69\x1b\x7d\xf5\xd9\x7e\xe4\x01\x4f\xb1\xc9\x41\xb4\x3c\x58\x39\xce\xe3\x74\x81\x68\x67\x0c\x10\xe0\xf4\x1d\x3e\x79\x2f\x89\x1b\x45\x45\xdc\x26\x8c\x9d\xcc\x58\x11\xd9\x97\x1b\x64\x64\x28\x01\x04\x03\xea\x43\xb6\x6d\x4d\x42\xe3\x4e\x98\x8b\xdd\x19\xfc\x93\x79\x43\x9f\x95\x42\x61\x92\x4f\x32\xb7\xed\x68\x37\xaf\xb1\xf2\x07\xd5\x83\x00\x44\x7e\xa3\xa2\xcf\x2c\x81\x38\x6e\xe8\x4c\x3c\x34\xc4\xe7\xb9\x3f\x63\x61\xc3\x2f\x7e\xf0\x77\x73\x2b\x99\x25\x82\x57\x51\x03\xfb\xf0\x4e\x2a\xa9\xaf\x7d\xda\x7e\x69\xd7\xb9\xbf\x70\xe1\x81\x0b\x30\x38\x4d\x72\x5d\x22\x06\xaf\xa1\x05\xa5\xcc\x03\x2f\xdf\x6d\x2b\x43\xe0\xc3\xa6\x53\x42\x47\x64\x74\x7c\xcf\x12\x60\xb9\x7c\x05\x7a\x22\x84\xe6\xfb\xc6\xb8\x0a\x0b\x78\xc9\xc2\x6f\x51\x25\xd9\x06\xc7\x0e\xc9\xdf\xde\x39\xb4\x5d\x09\x4a\x42\x0a\x59\x19\xbc\xa7\x3a\x30\xe7\xa9\xd6\x65\xdb\x7e\xab\x6c\xae\x1d\xee\x81\x2c\x0f\x91\x74\xfa\x8c\x0f\xc8\x65\x44\x67\xe3\x00\x91\xc6\xc7\x60\x29\xf4\x2a\xe6\x58\x8f\x91\x6b\xee\x05\x8d\x58\x06\xa9\x95\xf3\x62\x9d\x38\x8c\xcb\xcf\x54\xc3\x76\xac\xbd\x59\xf0\x40\xf6\x2a\x9c\xf9\xb7\xb4\xfe\x17\x4e\xc2\x6f\x7d\xf2\x64\x17\x91\x8c\x4f\x1c\x08\x41\x3b\xa1\x13\xe6\x3c\x37\x74\x74\xc0\x77\xfd\x05\x01\xb2\xb4\x6b\xab\x09\x7b\x03\x69\x3c\x17\x6a\x29\x6d\x6e\xc1\x05\xc6\x10\xc6\x37\xc6\xd4\x84\x51\x6a\xa3\x36\xf0\x21\xaf\xb1\x69\xb0\x1b\xab\xed\x0e\x61\xea\x51\x54\x84\xba\x86\xf6\xee\x5b\x75\xd7\xc1\xd1\xc2\xec\x66\x49\x27\x48\xd4\x5f\x0c\x35\xda\xd2\x97\x94\xb4\x82\xb4\x1b\xba\x0d\x74\xee\x4f\x0d\x14\xb2\x8b\x08\x89\xb5\xd5\xf0\xba\xb0\xbd\x36\x9d\x08\x7f\x94\xac\xbb\x74\x62\x9c\xbc\xea\xac\xf7\xef\xc8\xc6\x00\x16\x14\x66\x83\xfc\x8f\xc4\x7f\xa4\xa4\x77\x9a\xd8\x09\xb1\x6d\x4f\x3b\x2c\x7a\xe8\xa9\xdb\x12\xe5\xdd\xef\x44\x7f\x8e\x6c\x31\x7b\xf5\xef\x03\x99\x59\xef\xb3\x72\xd2\xc1\x67\x9c\x58\x80\x73\x5b\xca\xb5\xb8\xbd\x0c\xef\x9f\x40\x01\xcf\x75\x20\x54\x18\x7f\x00\x03\xcc\xa2\x85\xc8\x0f\x52\x28\xda\x2c\x2a\x9a\xef\x7b\x86\x4f\x43\x85\x91\x59\xb6\x92\x13\xb4\x38\xbe\x93\xc9\xe8\x54\x17\x77\x95\x9f\x98\x67\x90\x64\x4f\xf6\xec\xca\x53\xd4\x5c\xc1\xde\x91\xd3\x56\x82\xcf\xca\x5a\x7a\x07\xcf\x73\x9d\xfb\xf0\x25\xce\x2f\x34\x09\x3f\xb1\xc2\x2c\x5d\x31\x20\x2d\x2a\x31\xd5\xb4\x17\x99\x0a\x1e\x2d\xa2\x5e\x46\x6b\xb0\x81\x9f\xbc\xdb\x74\x22\x8f\x42\x08\x3f\x1d\x70\xfd\x6e\xdf\x55\x2f\x72\xf0\x44\x4c\x85\x17\x4f\xa1\x3c\xfc\x23\x84\x6b\xd7\x73\xc9\x88\x51\x6e\xb2\xfc\x7d\xe9\x54\xc4\xc2\x29\xd7\x12\x7d\x75\xfe\xe2\x8f\xe6\x82\x31\xd6\x26\xbc\x0f\x38\x06\x3f\x77\x65\x55\xc6\xf7\x85\x42\x28\xfc\x37\xe8\x00\x92\xca\x69\x93\x0a\x29\x3d\x92\xa0\xd8\x16\x4a\x39\x6d\xec\xbe\x5e\x3e\x1c\x00\xde\x11\x48\x5f\x41\x1d\x46\x9b\x8b\xfb\x5d\xa2\xdd\xa5\xf8\xca\x63\x19\xb7\x88\xa6\xd3\x23\xb8\xad\x0b\xe8\x37\xcf\x3e\x71\xee\x48\x54\xff\xa6\xd0\xe7\xef\x14\x51\xa7\xeb\x7f\xe4\x87\xae\xd7\x75\xe3\x34\xdf\x11\x8c\xbf\x2a\x4b\xa0\xcf\xd4\x66\x7b\xda\xff\xbb\x4d\x70\x6d\x2b\x32\xe1\x0b\x67\x45\x13\x16\x6e\x36\xff\xcc\xf5\xbf\x02\x63\x4c\xdf\xba\x96\x68\xb9\x96\xbf\x45\xf8\xed\xa1\x02\x6e\x1c\xb5\x07\x5a\xd4\x94\xd3\xb2\xbf\x6f\xef\xf2\xbf\x12\x61\xff\x02\x6a\x1a\x0b\x21\x4e\x26\xe8\x93\x48\x22\x2a\x04\x64\xda\x1e\xfa\x54\x10\x22\xc3\x06\x8e\x97\x2a\x68\x9a\x0d\x5f\x63\x48\x54\x97\x72\xb9\x21\x0c\xbd\xbe\x7f\xb7\x8a\x6b\x24\xd7\xb9\xa0\xe5\xa0\x0e\x10\xc7\x5d\x50\x5e\x90\x63\xf6\x2e\x89\x00\x66\xae\x98\x57\x65\x0d\x7b\x97\x41\x55\x2e\x1e\x8d\x1c\x12\x42\xe1\x26\x88\x96\x7a\xd7\xeb\xc7\x1a\xe7\x85\xb8\x14\x50\xd9\x86\x35\x8a\xf1\xcb\xfd\x3a\xd6\x2e\x03\x66\x67\x2b\x31\xe3\xc7\xaa\xe5\x77\x06\x5d\xf4\x4f\x98\xbc\x3c\xbe\xfb\x87\xbc\xbe\xab\xc0\xa1\x15\x90\x35\x53\xc3\x97\x5c\x20\x1a\xc5\x05\xa9\xd9\xd4\x35\xbf\xa5\x1c\x92\xd2\x61\xbb\xba\xf6\xa7\x8d\x38\xa7\xbc\x50\x4a\xb9\x9c\xac\x81\x7b\x2c\x61\xa8\x7d\x7d\x55\x53\xfe\xd4\x89\xb8\xde\x1d\x1d\x0d\x7e\xab\x36\xac\xb4\x1a\x19\x8c\x43\x07\x17\x15\xd7\x20\xc5\x55\xaa\x3b\x3f\xe1\x04\xf9\x62\xb5\x81\x00\x3b\xae\x4f\x9f\xc4\x33\xf8\xc5\x15\xd2\xac\xf4\xbf\x38\x7b\xce\xda\x5d\x5b\xf6\xd9\x1f\xaf\x25\xdc\xfe\x7b\x3b\xb0\x0c\x06\x08\xae\x3e\x8c\x84\x04\x01\xc4\xca\x81\x90\x0b\x89\x63\x6d\xc8\x5b\x65\xcc\x37\xdf\x2a\x42\x1c\x48\xdd\x20\x0f\xe6\xf1\x52\x4d\x91\x79\x47\xaf\xf0\xa9\xe9\xac\xb2\xa9\xaf\xee\xc4\xb0\x69\xc0\x36\xdc\x19\x16\x39\xe4\xae\x21\x33\xe9\xe0\xa8\xee\xb7\xe1\xf0\xb8\x42\xcf\x11\xa7\x2e\xf5\xdd\x48\x80\x97\xc5\x8e\xf4\x73\xc1\x12\x6a\x65\xd6\x8a\x1a\x34\x18\xbe\x51\xeb\xfe\x4d\x24\x34\xa0\x0f\x03\x0e\x2e\xfa\xee\xa2\x03\x3b\xe6\x27\xe3\x38\x90\x3e\x0f\x65\x10\x1c\x57\x79\x0e\x10\x00\x2f\xa2\xda\x9a\x7f\xab\xdd\x7b\xff\x2e\x30\x31\x7a\xc1\xce\x63\x11\x15\x55\x2a\xfa\x91\x95\x6a\xfd\xe8\x6b\x47\xeb\x17\xc7\x9e\x7a\xe5\x7d\x14\xbe\xfd\xca\x98\x3a\xde\xae\x76\x11\x4c\x1a\x17\xfc\x59\x07\x9c\x87\x49\x2f\x59\x5f\xe5\xb3\x19\x2e\x99\x2c\x80\xb3\xf0\x22\x64\xd8\x10\xf7\xfc\x21\x58\x3b\x0d\xf3\x3a\x7e\x94\x69\xda\x9c\x13\x1c\xf0\xd9\xa3\x36\x49\xcb\x5c\xc5\x78\x48\x59\x52\xf5\x67\xd9\x73\xe6\x94\x00\x26\xcd\x02\xd2\xe7\x69\x38\xab\x72\x6c\x20\xcb\x37\x7d\x21\x5c\xbb\x8f\xd7\x82\xba\x03\xbc\x2e\x1f\x6d\xab\x06\x70\x9f\xa6\xff\xe0\xdb\x88\xca\xcf\xe5\x32\x94\x93\xb5\x51\x76\x17\xb5\xb9\x35\x54\x3b\xb9\xd9\x40\x13\x4f\x62\xfd\xc2\x02\xac\x4d\xdc\x5c\xb2\xb9\xb4\x97\x39\xf6\x3e\x7f\x21\x6f\x4c\x74\x01\x5a\xa1\xae\xb4\x8b\x7a\x45\xad\xc8\xf8\xca\x3a\x50\x9b\x3d\x8c\xf2\x20\x04\xd4\x11\xe8\x37\xe2\xbf\xc2\x8a\xbb\xd0\x63\x26\xb3\xbf\x6b\x85\xce\xbd\x70\xea\x6b\xed\xbc\x6f\xaa\x3c\xed\xe6\x9a\xd2\x56\x8d\xff\xb4\xc2\x49\xdf\x21\x01\xe7\x98\x47\x5a\xcf\xd5\xb1\x50\x00\xaf\x80\x51\xe6\x60\x8b\xb4\x80\x8d\xb4\x80\x0d\xbc\x08\xa6\x57\x38\xbd\xcc\xc1\x16\xfc\xb2\x8d\xc7\xd7\x5a\x2b\x2b\x77\x15\xa6\xb3\xb8\x1f\x3e\x6b\xed\x93\x6c\x14\xbd\x06\x16\xdb\x33\x44\x02\x53\xbd\xbf\xb3\x80\xe9\xa3\x98\x3a\x62\xa4\xa9\x3a\xb8\xb7\x97\x16\x25\xfd\x4f\x0b\x2c\x9b\x53\x2c\x9d\x86\x30\x97\xbf\x50\xd4\x28\xc3\xc4\x05\x0e\xe2\x33\x3f\xc3\xc1\xbd\xe1\x6b\x02\x72\x9d\xda\xbb\xb0\xe3\xa3\x7f\x5b\x39\x28\xb1\x4f\xa4\x8f\x80\x99\x13\xe6\xde\x12\xf5\x86\xc9\x10\x0b\xf2\x66\xe0\xe3\xd9\xf5\x06\x65\x2a\xcd\x8f\xe4\xaa\x82\x86\x67\x42\x94\xc5\x8e\x4b\xa9\x02\x47\x60\x04\xe8\xbe\x63\xa5\xfa\x31\x60\xa6\xcb\xd0\x4e\x97\x21\xd0\x2c\x81\x6c\x55\x62\xbe\xd4\x3c\x4c\xa0\xa9\xc0\xa5\x6e\x39\x0f\xee\xde\xa2\xdf\x37\xa3\x9e\x95\xf1\xcd\xa0\x13\x14\xd4\xeb\x75\x51\x11\x21\x59\xc2\x20\x09\x20\x6c\xb8\x93\x34\x7e\x14\xfc\x20\x62\x4f\xaa\x79\xa7\xe4\xe6\xf4\xc2\x21\x3e\xe1\x68\x95\xdc\x29\x90\x7d\x3b\x89\xbd\xda\x45\xff\x4b\x84\xc7\x12\xd7\xd6\xba\x4a\x6d\xb1\xc6\x42\x42\xca\x8a\xe2\x86\xae\x59\x7e\x9c\x81\x07\x12\x1b\x4e\x13\xe8\xcb\x09\xa8\x1b\x17\xd7\xcb\xa4\xec\x43\x1c\x5c\x56\xed\x8d\xac\x58\xc1\x92\xfc\x32\x69\x7b\x16\x73\x71\x7a\x3c\xbf\xe9\xda\xdd\xd7\xa2\x55\xff\x4c\x85\xcb\x74\x1a\xd4\x58\xd6\xdb\xb0\x9c\xf8\x14\xf6\xfc\x8d\x9e\xc0\x9d\x73\x0e\x1c\x60\x73\x2c\x38\xb5\x94\x93\xcd\x02\x43\x16\x5f\x37\xb1\x60\x60\xbb\x80\x3a\x5e\x8b\x66\x91\x99\x49\x77\x76\xb8\xf2\xf1\xf8\xfd\x56\x6b\xc9\x15\x85\x7f\xf1\x60\x3c\x15\x1b\x6e\x4f\x35\x67\x03\x69\x07\x6d\x3b\x8c\x4c\x2d\xdf\x7a\xff\xbe\xc3\x92\x69\xc6\x07\x04\x6c\xb4\xc1\x22\x1e\x80\x08\xfe\xc8\xf3\x40\xb3\x22\xba\x04\x2a\x06\xbe\xf4\x3e\xf6\x78\x1b\x5b\xcd\x71\x4b\xc1\x30\x76\x72\xf6\x14\xc6\xf1\xa2\xb8\xf5\x60\xa5\xc8\xb8\xb7\x9c\xc1\x4a\x5c\x9a\x16\x2a\xf4\xdb\x69\x3f\xba\xfc\x8f\xb3\xd1\xc2\xfe\xb8\x24\x6f\x91\x58\xe6\xd1\xcb\x51\x3f\x2e\x79\xf8\x98\x94\xa7\x0a\x66\xbd\xf5\xe5\x79\x12\x27\xe3\xab\x29\x6e\x99\x97\xe8\xa1\xcc\xe1\x94\xb8\x72\xfa\x43\xf4\x58\x30\x72\x4c\x04\x1c\xdc\x03\x7a\x11\xec\xfe\x97\xe5\x41\x4a\xb9\x30\x7b\xcb\xe2\xef\x8e\xa1\xfc\x7d\xff\xdb\x81\xbf\x3b\xeb\x2a\xc3\xdd\x8b\xe8\x2c\x8f\xe8\xe5\x3b\x54\xf8\x68\x6c\x08\x66\x14\xc3\x72\x37\x08\xa0\x02\x6f\x43\x1c\x5c\x30\xb9\x9d\xd4\xa2\x2c\x9c\x55\x09\xd6\x11\x78\x32\x69\x7b\x0c\x58\x1d\x96\x96\xfe\xa7\xac\xa5\xe0\x1c\x7d\x0e\x6c\x80\x3b\x31\x56\xbd\x3f\x4e\x34\x4c\xec\x8e\x68\xfd\x64\xa8\x52\xd5\x3d\xee\xb7\xa5\x7b\x6d\x12\x43\xfa\x68\xd6\xe9\x11\x33\x24\x84\x05\x2d\xdb\x6c\xa4\x47\xd5\x96\x8d\x41\x27\x63\x5c\xcf\x01\xd0\x19\x92\x71\xfa\x56\x19\xdd\x86\xf2\x16\x18\xcd\x86\xf9\x30\x3a\xc4\x1f\xa8\x6b\x63\xff\xaf\x0e\x73\x49\xb4\xba\xd6\x4d\x42\xbf\xdc\xa8\x1a\x8f\x13\x2c\xa9\x06\xda\x25\x47\x1f\xb3\xf1\x12\xd3\x61\xa6\xfb\xf3\x5a\xbe\x9b\x0f\xf3\x17\x14\x30\x8c\x85\x8e\x07\x7f\x66\x30\x8f\xfd\xf0\x0a\x9a\xcd\x4c\x38\xcc\x00\x50\x38\x17\xe4\xdd\xd5\x6e\x90\x9f\x8a\x85\xdf\xfe\x91\xb9\xf9\xc3\xf5\xbb\xd6\x7f\x7b\x79\x59\x69\x2e\x7a\x7a\x5c\xa7\x9c\x1e\x13\xc5\xfc\x5d\x9d\xd2\xf9\xdc\xe5\x42\x11\x6f\xb7\xf2\x68\xd5\xf3\x3d\x10\xf3\xe3\xa3\xcb\xc3\xb8\xce\xc1\x64\x98\xff\xd5\x54\x81\x7c\x6b\x79\xe3\x8d\x47\xc7\x98\x37\x23\xfa\xa7\x98\x1f\xc2\x6b\x86\xa6\x8c\x8d\xbc\xbc\x8b\xe6\x2c\xdf\x5e\x7b\x59\x2c\x71\xc6\x21\x51\xeb\xee\x2a\x9e\xfd\x3c\x53\xb4\xba\x27\xfe\x30\xd0\xd8\xb6\xd9\x8d\xc9\x89\xc6\x3f\xbc\x4d\x32\x21\x87\xed\xae\x10\x78\x33\xa5\xe5\x45\x60\x46\xe8\xbc\x6d\x71\xc4\xdb\x95\xc9\x17\x97\xf9\xce\xe2\x5d\x3c\x7b\x52\xee\xbd\xd2\x59\xe5\x19\xb4\xfd\x06\x32\xcd\xdb\x83\x05\x84\x98\xf3\x96\x50\x57\x39\xec\xdb\x68\x43\xf1\xdb\xda\x56\xa9\x5e\x30\x86\xd1\xea\x39\x67\x84\xa0\x94\x50\x39\x4d\x4d\xac\xc9\x6e\xa1\xd0\xb6\x6a\x11\x94\x02\x02\xaf\x75\x98\x16\x78\xa7\x9d\x7b\xd3\xa2\x59\xe8\x56\x8c\x5f\x26\x8e\xa4\xf6\xe3\xb2\x7c\xa7\x18\xa0\x42\x58\x10\xda\x14\x94\xd2\x74\xd5\x2d\x7d\x59\x67\xfa\x42\x4b\xa2\x9a\xe9\x0f\xce\x97\xb5\x63\x5d\xa0\x19\x82\x40\x92\x48\xaa\x4e\xfb\x85\x42\x2e\x4a\x1f\x05\x73\x49\x80\x33\x25\xed\xa8\xec\xfe\x7f\x04\xac\xf8\x7b\x04\x9a\x02\xb7\xe9\x69\x11\x15\x10\x6c\x82\xd0\x7c\x78\xb1\x69\x89\xe0\xe6\xdd\x9f\x3e\x10\xc2\x15\xf3\xeb\x1f\x8e\xe3\x17\xd0\xa9\x91\xec\xa5\x28\x9f\xca\x78\x27\x71\x9f\x18\x81\xa3\x95\x74\xbe\xab\x1c\xed\xdf\xe7\x04\x52\x48\x39\x20\x87\x44\x41\xb2\xab\x31\x80\x12\x49\x08\x54\x1d\x99\xa1\xe6\x0e\x67\xd7\x6f\x97\x66\x85\x7e\x94\x9c\xd1\x16\x71\xfb\x52\xbb\x86\xca\xb8\x99\x4f\xe5\x91\xd3\x11\x37\x76\x8d\xe1\xf5\xb3\x70\xa6\xc9\xb4\xc6\x0a\x16\xaa\xea\xe2\xef\xf9\xf9\xbe\x7e\xdf\xe2\x6a\x99\x7b\x57\x59\xd4\x50\xdb\x23\xd0\xd6\x6a\xb7\xba\xa6\x4a\xf5\x9a\x8c\x79\xf5\xd7\x52\xaa\x6e\x85\x09\x51\x53\xdf\x63\x44\x09\x18\x81\x8f\x5b\x13\x54\xd5\x58\xa3\xa6\x53\xd1\x47\xd8\x8d\xd3\x50\xe4\x6b\xa1\x60\xef\xc5\x65\xe9\xa3\x33\xba\x24\x66\x33\xd3\xb1\x20\x1e\x38\x53\x6e\xfc\xec\x8a\x9d\xc0\x73\x75\xbe\xd6\x6e\xb9\xe5\xd9\xe7\x90\x3b\x21\x5c\x9e\x54\xf9\x35\x2a\x79\xcf\x20\x65\x5b\x0a\x52\x6c\x2a\xf2\xa8\xe0\x3a\xfc\x88\x33\xc3\xa9\x17\x1e\xe0\xb1\x8e\x8a\x43\x57\xe8\x65\xea\xf9\xa1\x32\x80\xc3\x76\x99\x97\x52\x9d\x59\xa0\x59\xc4\x5e\x0a\xa9\x0b\x2b\xd7\xc8\xa0\x23\x94\x47\x11\xe3\x39\x01\x0e\xf2\xa5\x8d\x99\x2e\x47\xbe\x9f\xf3\x1e\xf6\x9f\x11\x4c\x3d\xe3\x5e\x93\x05\xd8\x30\x24\x0b\x9d\x27\x9f\xca\xa5\xe0\xe4\x74\x8f\xe2\x37\x11\xd3\x04\x9a\xf1\xce\x29\x6b\x1b\x97\x22\x9b\x93\x5e\x9f\x9f\x7d\x3c\xc3\xf9\x79\x5d\x93\x6d\x4d\x74\xdb\x9b\x16\x61\x4a\x0f\x1b\x66\x90\x7c\xba\xc7\xcd\x03\x01\xe8\x30\xe9\xcc\xa3\xc6\xf1\xbb\x77\x36\x88\x6f\xf7\xb4\x94\x3d\x3d\x72\x4b\xad\x7e\xda\x55\x69\x6b\xea\x95\x15\x6b\x60\x1f\xce\x88\x69\x8d\x1a\xb7\x78\x52\xd0\x58\xab\x1e\x32\x3c\xa0\xf0\x22\xf7\x94\x64\xff\x36\x3f\xf2\x9e\xd7\x7e\x70\x5b\x47\x8b\x18\xc6\xfb\xe6\xa9\x79\xff\x5e\x9b\x73\x4f\xbb\x7e\x46\x0f\xc8\x5a\xef\x5a\x2d\xb2\x98\xa6\x96\xf7\x7f\xb0\x2e\xae\xd2\x8e\x9f\x33\x91\x77\x13\xcb\xa5\xd5\x51\x1e\x3d\x6b\xe9\x2c\x47\xea\x62\xe7\x02\x37\x02\x83\x3e\x58\x80\x64\x76\x59\x1f\x81\x22\xf3\x65\xb8\xb4\xf3\x47\x33\xce\xbd\x97\x7f\xba\xce\x9f\xb1\xdf\x7b\x72\x1f\x1d\x48\x7e\x66\x88\x52\x03\x7a\x20\xd9\x60\xc8\x36\xd9\xa5\x63\x0c\x7f\xef\xbb\x8e\x04\xc5\xdf\x60\x31\x39\x23\xaa\xf4\x7b\x37\xa3\x55\xdc\x94\x58\x96\xec\x2d\x9d\x4d\x12\x63\x0a\x0f\xca\x4a\x53\xd0\x89\xb8\xeb\xa3\x11\x00\x84\x3e\x0e\xc9\xb2\x79\x40\xdc\x9f\xef\x4d\x59\xe2\xde\x98\x0c\xb1\x1f\xb2\x64\x70\x45\xb5\xc5\x50\x25\x51\x84\x0b\x8c\xb3\x3a\x22\xb8\xf8\x2c\x79\xb6\x4b\x97\xd3\xf9\xc4\x1f\x6d\x0a\x1f\x8e\x36\xd8\xcf\x41\x72\x5c\xfe\x48\xf0\xbd\x09\x82\x97\xb9\xa8\xe4\xd2\x8f\x8e\x5e\x2f\xf1\x65\x85\x98\x92\xdf\x65\x87\xca\x01\xcf\xcf\x8f\xe3\xd9\x25\xe4\xa6\x3d\x30\xe6\xd5\x7f\x41\x39\x4a\xf0\xb4\x09\x23\x17\x66\xcb\x77\x50\xca\x81\xe2\xe7\xae\xef\x3c\x84\x8e\x26\xd9\xb6\x47\x07\xf7\x69\xb5\x70\xaf\xea\x1d\x28\x80\x9a\xad\x3c\x11\xd4\x7c\xe7\xc5\x71\x39\xf9\x14\x32\x6c\x6e\x33\x3d\x52\xe0\x9a\x02\xf3\x5d\x22\xbb\x78\x66\x65\x61\xc4\x4b\x01\x6a\xcb\xa8\xaf\x75\x71\x5f\x47\xb4\x65\x37\xf2\x00\xa0\xc6\x31\x47\xf9\x90\x0c\xb8\xb0\x95\xc9\xd2\xe7\x2e\xd6\xd5\x82\x46\x2b\x0b\xd6\x2a\xba\xbf\x17\x35\xf7\xfb\x93\x58\x25\x94\xa3\x4d\x70\xed\xf8\x16\x30\x2e\x25\x6d\xdf\x25\xb5\xa0\x0f\xfe\x44\x79\x79\x4f\xf5\x6d\x08\x57\xda\x33\xe8\xfd\xd4\x53\xd1\xa0\x28\xa7\xb8\x6d\x67\x44\xb1\x4d\x5d\x25\x1b\x52\xdb\x28\xc6\x41\xa6\xe4\x5e\x74\x68\x7f\xfa\x3b\xd4\xcd\x35\x16\x7b\x79\x83\x4e\xbd\xf6\xc0\xe4\x5a\x43\x47\xfb\x57\x43\xd2\x9f\x3f\x67\x7c\x6e\xe9\x8c\x0e\x16\x92\x54\xae\x6f\x70\x71\xfc\x01\x9a\xdd\xe7\x66\xa1\x9a\x9a\xdb\x53\xde\x43\x73\xee\x31\x02\x12\x68\xab\xc2\xb3\x65\x68\x44\x22\x0f\x07\xc7\x52\x50\x63\x1b\x8f\x4c\xd3\xe5\x31\xf4\xb1\xdd\x0e\x62\x8b\x72\xfb\xfd\x80\xba\xaf\xfa\x5f\x9d\xd9\x7e\xf4\xb8\x5f\xa5\x96\x16\x9a\x63\x3b\x66\x86\xef\x75\xed\x2a\x49\xd3\x68\x5c\xd7\xa8\xcb\x62\x0f\x8f\x95\xdd\x99\xf4\x3c\x53\xd0\x61\x41\xf5\x0e\xe4\xef\xb5\x5f\xe1\xf9\xfd\xec\xe0\xf2\xbc\xec\x8d\x90\xe2\x3d\xae\xcc\xdd\x5c\x46\xeb\x49\x6d\xef\x2f\x09\x13\xb6\x12\xbf\x5f\x6a\x0f\xf6\xc8\x19\x58\x33\x66\x60\x3e\xfb\x52\x3b\xf4\xa7\x9d\x8b\x81\xeb\xe9\xf4\xc7\x1e\x8e\xbb\xc7\x91\x3e\x61\x68\xc0\x05\x98\x90\x1f\x73\xd5\x2d\xf7\x23\x90\xf3\x9e\xd0\xe3\xee\x8d\x54\x53\x5e\x83\xbb\x35\x5d\x09\x35\x40\x1e\x90\x18\xd1\x94\x5d\x61\x5d\xca\x3a\x6a\xf3\x1c\x5c\xf6\x1c\x51\xee\x00\x6f\xb7\x21\xab\x84\xe4\xc7\x05\xa6\x3d\x63\x49\x84\xb0\x90\x17\xe8\x85\x65\xb1\x70\x7f\xb7\x3a\xbe\xf9\x8d\x09\x2a\x29\xec\x8b\x5c\x64\xbf\x35\x96\xeb\x16\x9e\xad\xf3\xed\x8c\x5b\x21\xde\x74\x3e\x6f\xe9\xbd\x47\x1b\xbe\xca\x2d\xb4\x27\xc4\xe0\xda\x73\xf0\x10\xfb\xe4\x78\xd4\x9d\x39\x5c\xf5\xd6\x35\x78\x68\x80\xdc\x15\x07\x52\xd9\x53\xa0\xc9\x43\x5d\xfa\x9c\x50\x2e\x43\x9d\xb0\x5c\xa6\xfe\x7d\x5f\xa9\x51\x68\x43\xba\x9d\xed\xfd\x11\x8a\x7a\xe3\xfc\x19\x41\xad\xaa\xc3\x0b\x2d\x64\x11\x27\x85\xf2\xb7\x63\xe8\x43\xd6\xd9\x93\x42\xa0\xf6\x40\x58\x8a\xb9\x48\xae\x0e\x89\x0f\xdc\x75\x97\xdd\x0c\x70\x96\xfc\x92\xc8\xfe\x35\x20\xa1\xcd\x26\xbe\x12\x90\x8e\x66\x5f\xf9\x58\xc0\x49\x98\x2d\x6f\x60\xc5\x6c\xd7\xd7\xbd\x54\x5f\x6d\x39\x50\xfa\x93\xf2\xb4\xe5\xa0\xac\xf5\x7a\xde\x74\x69\xf5\xd8\x32\x07\x8c\xf0\xcd\xcb\x19\xf6\xdd\x50\xbf\x63\xad\xa6\xd8\xe2\xb1\x0a\xd6\x31\xab\xec\x40\x36\x78\x0f\xa9\x2b\xe5\xde\x18\x0d\x24\x68\x90\xc9\x45\xcf\x4c\xfc\xf1\x5b\x74\xb7\xe2\xdf\xc9\x49\x40\x48\x29\x63\x10\x8a\x19\x75\xc0\xc2\x1b\x04\x10\x68\x57\xb3\x77\x84\xff\xd2\x22\x9e\xa4\x60\x58\xb3\xbd\xb2\x9e\xed\xe0\xfd\x28\x8c\xe5\x43\x5f\x4c\x66\x86\x74\x80\x7d\xd3\xef\x8f\x63\x7d\x1b\xbe\x98\xf4\xc2\xcd\x81\xdc\xab\x37\x9a\xb1\xfc\x3b\x7e\xe2\x8b\x06\x6d\x45\x52\xbf\x14\x2e\x8e\xc9\xaf\xab\xad\xd7\xc6\x64\x60\x9a\x95\x8a\xe0\x44\x42\xc1\x12\xec\x17\x61\xfa\xd1\x3f\x86\xce\xf2\xd9\xcf\xe5\x87\x58\xc2\xec\x95\xd3\xd2\xf8\x37\x7f\xa5\x44\x3e\x09\x8f\x10\x48\xb4\xd0\xce\x7d\x87\x05\x54\xe2\xd5\xbd\x08\x4b\x15\x34\xd7\xd1\xce\xdd\xf2\x1e\x1a\x3e\xee\xce\x68\x66\xff\xfd\x54\x6e\xb8\x47\x9c\xe5\xc0\xf0\xd6\x37\xd7\x51\xb2\x7e\x6b\xe5\x07\x80\xf5\x2f\xee\xf2\x08\xfa\x38\xdf\x60\xec\x73\xba\x35\xd5\x95\xad\x3c\x55\x40\xfb\x24\xf8\x47\xf4\x1e\xea\x2d\x6c\x32\x45\xb9\xd5\xd7\x45\x55\x51\x9e\x9c\x79\x45\x5c\xf3\xc1\x83\xfb\x88\x9c\xce\x08\xf7\x3a\x83\x1c\x9a\x7b\x73\x13\xa9\x8e\x05\x4c\x26\xb0\x17\x9a\x78\xc4\x3d\xb4\xfc\x2b\x7e\xf8\x40\x26\x73\xee\xf4\xaa\x03\x89\xb7\x0d\x51\x34\xd8\xc4\x19\x71\x64\x81\xa5\x9f\xa0\x27\x2e\x0b\x07\x30\x56\xa2\x03\x94\x33\x89\x27\x77\xd6\x72\x60\xda\x8c\x74\xd8\xc0\x10\xcb\xa2\x33\x9f\x10\xf6\x83\xdf\x15\x45\x87\xe4\x84\x51\x46\x0c\x55\x92\x7d\x87\xbf\x71\x06\x10\x75\xb3\x4d\x4a\x18\x68\xc6\x39\x52\x54\xee\x9c\x44\xd1\xe9\x55\xa8\xff\x8f\xa0\xe5\x0d\x4f\x1f\x8b\x29\xd5\x55\x58\xb4\x28\x0c\x24\xf0\xe4\xc6\xd7\x56\xa5\x91\xe8\xbe\xf6\x28\x2b\x99\x8b\x7f\x8d\x68\x55\xad\x76\xfc\x71\xe5\x27\xa9\xc4\xb5\x21\xfa\x93\x31\x46\xee\xd1\xb0\xd6\x47\xfc\xb2\x29\xf2\x34\xd3\x61\x3d\x32\x00\xa2\xe1\xf8\x94\xa5\xbf\x26\x8b\x71\x15\x72\xd4\x98\xd2\x00\x03\x6d\x95\x9d\xe3\xa4\x5d\x93\x1d\x10\x78\xa2\xd7\x8e\xef\x66\x94\xf1\xf6\xbe\x12\x75\x18\xa1\x39\x00\x1b\x56\xfc\xf9\x45\x4e\x55\x0d\xbf\xb8\xb2\x7e\xf4\x01\x5b\x10\x92\x24\xaf\xe1\xe6\xcc\x45\x1d\x35\xa8\x9b\xc5\x54\x82\x14\x36\xf4\x2e\xf9\xa1\x86\xf6\xda\x34\xfd\xa0\xe9\x11\xa1\x01\x6e\x64\x13\x57\x5e\x53\x85\x87\xfb\x6c\x98\xef\x5d\xde\x56\x9d\x6d\x98\xe3\xfa\x91\x0c\xa9\x33\xbc\x8f\xa3\x6d\xad\x8c\x2d\xd2\xa1\xb8\xf3\x6b\x11\xb2\x2c\x95\x72\x5f\x58\xb5\xf6\xdf\xa4\xfb\x3e\xf8\xf3\x8f\x59\xe3\xc5\xaa\x83\xf0\x8b\x30\xfd\xa4\xae\x01\x5e\xba\x4f\xd6\x10\x3a\xc9\xb8\xbd\xbc\x84\x23\x33\x8a\x79\x51\xcb\xb0\x56\xc0\x52\x65\xf5\xf1\x72\xa5\x22\xf7\x93\x25\xe8\x9b\x7e\x1a\xf3\x35\xa7\xfe\xbf\x97\x51\xed\xcf\xaf\x6e\xa3\x45\xcb\xc3\xbf\x46\xb8\x8e\xb3\xd6\xbe\x3a\x35\x58\xbe\x13\x03\xcc\xf3\x1d\x41\xc4\xbf\xfd\x30\x0d\x30\xe5\x3c\x3c\x5f\xd3\x9b\x06\xf8\xb8\x79\x7f\xba\x56\x7e\x02\x00\x16\xd3\xf2\x6f\xa4\xb4\x7e\x3b\x6f\x3e\xeb\xcd\x3a\x1e\x13\x3d\x23\x3f\xcd\x50\x9e\x55\xd1\xce\x4d\xd7\x0e\x72\x98\x0f\x3c\xe4\xc5\x14\x3e\xba\xcf\x8c\xc9\x1f\x75\x3f\x24\x9b\x94\x01\x1e\x9b\x43\x54\x12\x49\x5a\x1a\x1f\x03\xb8\x9d\xa8\x81\xc9\xef\xf4\x85\xc8\xaa\xb4\x9b\x47\x25\xed\xab\xc0\xd5\x4a\xc9\xe2\x88\x6c\xd1\xd4\x99\xc7\x2d\x45\xbb\xb0\x9d\xf7\xe1\xeb\x6a\xba\x6a\x69\xef\x53\x21\xad\x2b\x5f\x7d\x8c\x6d\xae\x3d\xd9\x80\x1c\x9f\x2d\xf9\xb3\xf5\xfe\xe6\xab\x11\x0a\x68\xb6\x68\xdb\x3e\x11\x66\x87\x9a\x88\xe5\x3b\x09\x4f\x73\xc6\xd3\xa5\x7a\xe5\xb8\xca\x15\x69\xbd\x60\x9f\x91\x6e\x49\x43\x6c\x92\x8e\x20\xea\x4b\x29\x4b\x6b\x19\x10\x55\x90\xef\x42\x8b\x3f\xdc\x6c\xaa\x9b\x7d\xb8\xfd\xe9\x85\x20\x95\x34\x6f\xd6\x1b\x0f\x90\x3f\x65\x8e\xed\x3e\xdc\x54\x2f\xa6\xdc\xd0\xf9\xc1\x7d\x96\x55\xec\x2f\x2f\xd8\x5a\x40\xc6\x81\x9c\x72\x8b\x07\x64\xb0\xb8\xde\xfe\x3a\xbd\x55\xa9\x95\x40\x1d\xec\xcf\xe5\x9f\x9f\x80\x20\x9b\xc4\xfa\x92\xeb\x8c\x49\x81\xc8\x38\x1e\xf3\xbb\xf1\xfb\x3f\x92\xcc\x82\x2b\xea\xef\xeb\xe2\xdf\x19\x06\x18\x42\x19\x4a\x40\x05\x86\x2e\x09\x09\x01\xa9\x19\x69\xa4\x53\x1a\xa4\x41\x1a\x04\xc9\x01\x01\x11\x41\x60\x08\x29\xe9\xee\xee\x46\x50\xba\xbb\xa5\x41\xba\x73\x9e\xf5\xfb\x3f\x6f\xe0\xec\xbb\x3e\xf7\xec\x7b\xf6\x5d\x67\x2a\x93\x07\x51\x74\x74\xf9\xfb\xde\x5b\xcf\x9f\x28\xde\x3f\x81\x60\xe1\xed\x4d\x13\x8f\xb1\xf6\x43\x85\xe2\xe8\x98\x5a\xcb\x34\x75\xfb\xcb\x2f\x3e\x1b\x9d\xca\xff\x8c\x53\x96\x23\x4a\x60\x21\x6e\x33\x14\x81\xa9\x24\x23\x95\xc3\x38\xc1\x26\x44\xba\x18\xde\x09\x43\xcc\xce\x69\xd3\x4d\xa4\x1b\xae\x31\x95\x5b\xa9\x64\xd9\x1f\x32\xce\x21\xed\xf5\x65\x6f\x67\x4e\x67\xaa\x8b\x2d\xa8\xa7\x9d\x44\xf8\x89\x6b\xf9\xb7\xe5\xad\xe9\x6f\x49\x38\xdd\x20\x54\x22\x6f\x95\xd2\x57\x2d\xca\xbf\x07\xa6\x98\xcf\x74\x28\x32\x8a\x3c\x5f\x7c\x44\x9e\xa0\x34\x2b\xd6\x9a\xd2\xb6\x28\x60\xad\x05\x26\x04\x78\xfa\xf9\xd6\x9d\x6d\x64\x6e\x82\xfa\xf2\xf9\xff\xc5\xd0\x68\xd4\x97\xac\xd5\xdc\xa1\xef\x2a\xb2\x32\xe8\xdd\x0e\x3f\x61\xaa\x0f\x30\x2b\xcb\xee\xe1\x97\x82\x43\xdd\xdf\x06\xbd\x67\xaf\x99\x66\x74\x80\xcc\x58\x94\xf2\xf2\x29\x81\x9f\x7f\x4b\x9b\xc4\xea\xcb\x17\x07\xcb\x93\xfb\xb4\x63\x9b\x82\x2f\x6e\x0d\x0d\x5f\x14\xf0\x59\xb9\xde\x1c\xee\x3e\xfe\xb4\x2a\xb7\xbc\xff\x18\xfe\x58\x61\x8c\x7e\xb9\xb1\x9e\xfc\xd6\x6f\xa0\x43\xde\x3a\x48\x37\x7d\x92\x60\xe4\x1b\xd3\xf3\x8d\x07\x1d\x10\xc2\xdb\x94\xc1\x4f\xd8\x5e\xc1\xd1\x44\x5c\xcf\xd7\xda\xed\x8b\x81\x78\x55\x1e\x66\x5b\x51\xd9\x38\xc8\x97\x1b\x91\x8d\x9b\x9d\x66\x84\x42\xb2\xbc\xbc\x16\xd4\x38\x78\x7f\xa0\x47\x52\xa4\xfa\x6b\x10\x84\x69\xf3\x95\xce\x65\x2d\x68\x78\xf7\xe5\x48\x5e\xb9\x93\x80\x67\x53\x2a\x08\x94\xb9\xd0\xc5\x0c\x4c\x50\x22\xe3\xee\xd0\x77\x9f\x38\x95\x1c\x5c\x16\xd0\x72\xcc\xdb\x20\x1d\x64\xf0\xdf\x66\xb7\x12\x7e\x16\xb1\xa0\x0b\xbf\xcb\x0e\xf5\x79\x49\x26\x8c\xf4\xa8\x99\x50\x7b\xd9\xd1\x64\xba\x21\x31\xd4\x0b\xd2\x19\x1b\xc8\xea\xe1\x3f\xb2\x7b\xd8\x30\xe9\x48\x14\xa6\x52\x3e\x6e\x3c\x8e\x5d\xda\x28\xf4\xd1\x86\xef\xe2\x44\x53\xe9\xe6\xa7\xda\x33\x7b\x25\x4a\x85\x21\xcd\xf5\x65\xb1\x36\x52\x91\xcf\xc2\x27\x64\x40\x1b\x47\xb3\x85\x17\x1c\xb1\xad\x29\x89\x72\xda\x33\xee\xa5\x54\xbf\x31\x37\xba\xfd\xfe\x97\x46\xb7\xc7\x7f\xd8\xe4\xb1\xde\x1c\x63\x59\x5a\xff\x8e\x8e\x89\xf1\x35\x5e\x08\x12\x87\xde\x0a\x87\x1c\x0c\x3d\x07\x10\x8b\x04\xaa\xee\xbd\x9e\x4c\x60\x76\x32\x2b\xf4\x13\x79\xc9\x22\x19\x66\x34\x88\x25\x92\x27\x00\x46\x88\xe5\xd9\xab\x27\xc0\x10\x5c\xe7\xc2\xb2\x7e\x39\xe0\xc5\x6a\xf2\xe1\x44\x2f\xe4\x11\xc3\x9f\x62\xf3\x5e\xab\x86\x98\xbe\xbc\xe7\x02\x25\xcb\xe9\x60\xd8\x2b\x6c\x18\x70\xc3\xc7\x9a\x83\xab\x82\x22\xb8\x6d\x80\x22\xa5\xdb\x8d\xab\x8c\xcf\xa8\x83\xdb\xa7\x97\xd4\x02\xa7\x9e\x62\xca\xb9\xbe\xa8\x95\x44\x36\xe1\x63\x1e\x4b\xfa\xe9\x19\xac\x68\x84\xf0\xd7\x68\xaa\xb7\x31\x68\x88\xe2\x97\x62\xe0\x72\xae\xc7\x7c\x5b\x1e\xe7\x87\xdd\x1f\x52\x50\x47\x06\x28\xa3\xb9\x0a\xdc\xe9\x52\x00\x75\x73\x67\x79\xa7\xde\x17\x6b\xd4\xfd\xbc\x3b\xa4\x65\x84\xc7\x9c\x82\x7b\x58\x7b\x5d\x47\x07\x7f\xf7\x85\x14\x07\xb0\xf4\xf4\x76\x13\x7b\x3b\x0f\xdc\x2e\xd9\xea\x50\x54\x20\x60\xae\x4d\x5d\xa7\x00\x24\x66\x68\x2e\xd0\x53\x75\xaa\xc6\xca\x3c\x21\x8f\x21\x09\xc7\xc3\x3d\x03\xf3\xc7\xa1\xfe\x36\xbb\xb5\x95\xb3\xb6\x1d\xe6\xb3\x0a\xfe\x13\x08\xc7\x7a\x0e\x12\x88\xb9\x7a\x18\xb2\xd9\xa0\xd6\x97\xf4\x1e\xd1\x3b\xa4\x99\xb4\x2e\x72\x9c\x6a\x4b\x7b\x9c\x0a\x94\x81\xe1\xc5\xf8\xed\x1a\x10\x51\x8b\x76\x0d\xe8\x9d\x02\xb2\x3c\x23\xb2\xad\x22\xda\xbf\xe4\xa7\xcc\x1d\xcd\xc4\xc9\x25\xf4\xa3\x59\x1c\x80\xe8\x79\x6e\xd3\x8f\x7d\x6e\xbe\x40\xaf\x23\x53\xf3\x95\x7c\x53\x6e\x78\x6a\xdd\xf1\xe7\x72\xc4\xcf\x00\x27\xba\x99\x4d\x6c\x68\xb1\xb0\xe2\x71\x34\x08\xf1\x93\x83\x83\x9b\xd5\x2d\x1f\x2f\x92\x1a\x09\x30\x5a\x28\x70\x97\x90\x55\xf3\xc1\x68\x70\x28\x9f\x11\x01\x08\xef\x37\x5a\x7c\xb9\xb6\xf2\x03\xcf\x05\xb1\x01\xbe\xec\x6e\x7b\xde\x92\x06\x6a\x0e\x10\x24\x06\xc9\xed\x60\xca\x2d\x5f\xdc\x43\xac\xe9\xca\x71\x62\xb5\xa1\xbb\x43\xca\x9e\xb1\x5b\xae\xe2\x97\x8d\x6c\xff\x40\xed\x78\x90\x1a\xb5\x5c\x6a\xf9\xe7\x69\xb5\x5e\xa7\xe9\xbe\xc3\xfc\xee\xd2\xad\x21\xce\x24\xf2\x98\x40\x39\xf8\x8c\x05\x0f\x87\x1c\xd9\xa6\x0e\x13\x0d\x64\xf2\xeb\xe0\x95\xc5\xa8\xa6\x94\x0b\x1f\xb7\x94\x0a\x17\xe7\xb8\x8f\xe3\x4f\x51\x3f\xd7\xe7\x2a\xd4\x21\x0b\x7b\x62\xe2\x76\xf9\x22\x5b\xb5\xba\x59\x5d\xd3\x18\x8a\x87\x15\x14\x6c\x24\x52\xd2\x96\x78\xcb\x63\xac\x5d\x89\x97\x2c\xca\x67\x5b\x81\x81\x17\x7e\x53\xe6\x8c\x8d\xa3\xe0\x0d\x89\x0d\xf4\xdd\x60\x7a\x41\x64\x62\xee\x0a\xdc\x09\x3a\x78\x42\x11\xef\x43\x24\xaf\xde\xd9\xc7\x26\x7c\x26\xab\xeb\xfd\xb0\xc0\xfc\xba\x7a\x29\x7c\xd1\x41\xa1\x83\x72\xf4\x33\x05\x7c\xfb\x71\x29\x08\x31\xa9\xa5\xe6\x77\x5b\x7d\xe2\x60\x91\x64\x60\x05\x89\xd0\xf2\xeb\x27\xee\xa4\x26\xdf\x3f\x28\xf9\xd3\xc6\xf6\xa2\xcf\x18\x6c\x6b\xe7\x43\x5a\xfd\x40\xc4\x7f\x70\x61\x73\x35\x3b\xec\xd7\xd3\xe4\x89\x15\x98\x01\x52\xa1\x3a\x9b\x3e\xbb\x25\xc7\xe2\x5b\xbf\xed\xd8\x94\x31\x35\x73\x9e\x2f\x7e\x70\xe8\x94\x58\xb1\x0f\x27\x0b\xa4\x92\xec\x33\xb7\x3b\xd1\x79\x1a\xe8\x6e\xde\xf1\x7c\x27\x31\xc9\x4d\xd8\x26\x9a\xb1\x5a\xaf\x43\x2d\x55\x07\x33\x6d\x6a\xdf\x1c\x17\x17\xe8\xa5\xee\x7a\x84\xf7\x0b\x77\xe9\x72\xb3\x60\x3a\x95\xb7\xd7\x55\x43\x40\x78\x4f\xbf\x49\xe7\xd1\x08\xb3\xd9\xcd\xaa\x0d\xcd\x04\x36\x1e\xf9\x03\xd0\x4e\x18\x4c\xf5\xca\x94\x1c\x9a\xe8\xc3\xdf\x09\x1f\xec\xe6\x6b\x1c\x57\x84\xfc\x13\x60\x66\xa2\x54\xb9\x33\xac\x6f\xfe\xee\xcc\x35\xb1\xec\x4a\xa0\x27\x48\x89\x07\x30\xf2\x7d\xad\xab\x1d\x62\x6b\xeb\x98\xd0\x5e\xf3\x3e\xb0\x18\x40\x50\x5d\xd0\xcb\xe0\xc9\x4a\x5f\xb7\x58\x5c\xd7\x35\xe5\xad\xab\x50\xd9\x4c\x35\xcb\x76\x77\xde\x26\x5d\x2f\x73\x2c\xed\x09\xbe\x9a\x4a\xe7\xa5\x9c\x3a\xcd\xfa\xf1\x3c\xbd\xfc\x55\x59\xc7\xd6\xc3\xef\x3c\x43\xab\x91\x47\x5c\xa6\xdf\x63\x67\xc3\x9a\xd3\x45\xae\x5e\x84\x5f\x19\x05\x0b\xc9\xbd\xc4\x4d\x33\x66\xcb\x7f\xdb\x8d\x5d\x07\xdc\x9a\x02\x8e\x41\xa5\x18\xaf\xdb\x32\x0d\xcd\x43\xff\x4f\xb9\xec\x69\xf1\x3b\x9e\xd5\x69\x3a\x86\xcd\x29\xd5\x72\x4f\x00\x6d\x3a\x83\xeb\x1d\x0e\xdf\x63\xc0\xcd\x06\x67\x9d\x08\xc4\x23\x99\x9b\xcb\x74\xcc\x2b\x99\xf1\xb3\x5e\xe6\x49\x77\xb7\xc6\x71\xa3\xf6\xd3\x38\x28\x2b\x1a\xc4\x82\x42\x31\x41\x61\x46\x24\x94\x2f\x48\x8b\x00\x44\x4e\x3c\xf3\x9e\xbe\x55\x9c\xf1\x34\xef\x7a\x6d\x3e\xe1\xcc\x6f\x2d\xd5\x8a\x72\xd6\xb6\x3a\x57\xbd\xeb\x50\x85\x7c\x68\x49\x85\x73\x9b\x5d\xb3\x19\xc9\x82\xda\x68\x86\xb0\xa6\xbe\x1c\xa9\x5e\x0b\x56\x75\xff\xe5\x9d\xff\xbc\xf6\xec\xc8\xb7\x6e\x5a\xe4\x84\xd4\x5b\x30\xc0\xbb\x99\x9e\xfd\xc8\x26\x80\x27\x36\x68\x74\x39\x2d\x4a\xf1\xf8\x9f\x81\xae\xf0\x23\x43\x05\x90\x48\x71\x5b\x22\x06\xae\x91\xdd\x63\x5f\xa9\x38\xe3\x39\x70\xa0\xca\x9a\xda\x4f\x39\x16\xf8\x2b\xea\x07\x64\x56\x69\x49\x94\xfc\xf3\x19\xe0\x19\xc9\x59\xca\x2f\xf9\x3e\x9e\x6e\x9c\x5e\x72\xa1\xc7\xf7\x69\xc9\x27\x32\x56\x32\x25\xa6\x0f\xe8\x9e\xe7\x8c\x21\x7a\x8d\xfc\x11\xe6\x6f\x22\xd2\xb9\xaf\xe2\x00\xfc\xfd\x27\x21\xfe\x55\x74\x00\x82\x5d\xf7\xc4\xf3\xb6\xf8\xa4\xa8\xe1\xf6\xd5\x2f\xfc\xb3\x4e\xe7\x4b\x48\x3d\x7b\x1f\xc5\x93\xec\x4b\x0f\xe5\x7e\xda\x7a\xfc\xb9\xcf\x1f\x57\x0f\x69\x2f\x9f\x09\xef\x1f\xe4\x6f\xd9\x5d\x61\xda\xb8\x68\x02\x56\x3e\x49\xfb\xd2\x66\xb6\x2e\xff\xae\x09\xc6\x43\xbe\xa1\x54\x27\x79\x95\xf8\x9b\x41\xfb\x86\x02\x7b\x33\xbd\xe7\xb9\x28\xc1\x2d\x4d\x6d\x39\x0c\x21\xc8\x84\x00\x03\x24\xae\x72\x8a\xee\xce\x4f\xb0\x9e\x7e\x1b\xa6\x33\x65\x4d\xac\xce\x66\x5a\xec\xf0\xd2\xcd\xb1\x08\xdd\x86\xce\x70\xe3\x08\x10\xfe\xf1\x3e\xbb\x7c\x65\x09\xb4\x0b\x81\xf5\xd4\x6c\x3a\xe8\x9a\xd9\x2b\x46\x5f\xf4\x42\x25\xdf\xb3\x46\xf3\xf7\x56\xbf\xa9\x78\xaf\xf0\x42\x81\xe1\x99\xf5\xb2\x65\xc7\xe8\xca\x33\x1a\xd2\x29\xea\x91\x00\x27\xe9\x74\x3f\x38\x22\x87\x6a\x47\xfc\x77\xe8\xa0\x78\xf9\xfe\x2f\x9a\x96\x20\x36\xda\x9d\xfa\xbd\x74\x27\xfe\xea\x64\x63\xf4\xf2\xbc\x70\x8e\x81\x2b\x7f\x35\xd6\xed\xec\xb1\xda\xf8\x41\xe7\xdc\xc3\xe3\x9f\x30\x0b\x60\x05\x00\xb7\xce\xdb\x5d\x7c\xcd\x47\x0a\x91\x80\xa3\x04\xbe\x0c\xd0\x53\x3e\xfb\xfc\x8d\x95\x2c\x2f\xe3\x52\xef\xca\xe4\xda\xcc\xf5\x01\x39\xd0\xf3\xb2\x53\xd5\xc7\x00\xc7\x83\xee\x31\x7a\x37\x33\x5c\xb1\x02\x1f\x91\xc5\x0e\x0f\xc4\xdf\xc9\x10\xee\x7b\x8e\xca\xe5\x28\x2e\x1c\xc9\x94\x7c\xa7\x55\x66\xf7\xc9\x0c\x64\x29\xa7\xa4\x3b\x86\xde\x34\x19\x8c\x7d\x97\xe7\x07\x04\xe2\xc1\xd3\x21\x9e\x97\xe5\x12\xb4\xed\x21\x53\xde\x26\x18\x23\x04\xaa\x4f\xf7\x24\x54\x21\x4c\xe4\xb2\xbd\x16\x2d\x72\x26\xfd\xf7\xa4\x42\xed\xe3\x2d\x50\xf7\xde\xd3\xd5\x51\xda\x4f\xd0\xe3\xcd\x43\xb5\xe9\xf5\x97\x88\xa6\x47\x45\xb7\x12\xd6\xf3\xf3\x0c\x39\x92\x98\x7b\xac\x7b\x43\x09\xe8\x75\x9b\xa4\xe1\x6a\xd8\x37\xad\xb8\xcc\x17\xe1\x5f\xeb\x48\x9c\xe1\xbc\xd2\x36\x83\xdd\xb6\x66\x65\xfb\x16\xcc\x08\x6b\xf2\x20\xa9\x8a\xb0\xdd\xb0\x5f\x33\x28\x21\xf5\xd7\xc5\x0d\x25\xeb\x77\x36\x07\x25\x7e\x1c\x40\xc7\xaf\xd6\x11\x51\x54\x98\x42\xff\xab\xd5\x0d\xa4\xd1\x2f\xbf\xcf\x80\xd3\x02\x7d\x3f\xde\xb7\x5f\x04\x8d\xcf\x26\x14\x8e\x1f\xca\xce\x55\x44\x48\xc3\x09\x1f\x54\x01\x84\x27\xcb\x9f\x29\x2c\xd0\x84\x7a\x90\x63\xaa\xc6\xb2\x0b\x79\x53\xfc\x92\x8b\x31\x5a\x49\x3c\xbc\xc0\x4e\xd6\x3b\x83\xa7\x5e\x06\x2d\x3a\xa7\x1f\xbd\x3c\xcc\xad\x20\x58\x10\x8e\x3f\xa2\xf7\xec\x90\x09\x83\xdd\xff\xd0\xd9\xf8\x10\x11\x7b\x44\x64\xf6\x6b\x68\x38\xed\xd1\xb2\x26\x98\x07\xd7\x66\x82\x6f\x05\xab\x1f\x11\x94\x51\xaf\x18\xfd\x5e\x01\x77\xb7\x75\x2e\x17\xe2\xf4\x8b\x98\x96\x61\x8d\x10\x04\xff\x85\xec\x11\x75\x7b\xd2\x6e\xcd\x0c\x92\x81\x25\xf2\x6b\x8c\x59\xcf\xc6\xea\x82\x7a\x14\x55\x77\x1f\x1b\xc9\x25\xa2\xa7\x89\x79\x0a\xf9\xb1\x4d\xc2\x1d\x84\x90\xfc\x86\x21\xbf\x83\x94\xa2\xec\xec\x29\xbe\xa5\x9b\x33\x1f\xf7\x4c\x09\x9f\xff\xdc\xe7\xeb\xe3\x0e\x27\xf3\xfb\xf3\xfb\xc5\xf5\x39\x5c\x15\x6f\x52\xa1\x6a\x2c\x2f\x79\x98\x55\x62\x59\x3f\x5a\x22\x8f\xb7\xaf\xcb\x6f\x6f\x3e\xbf\xf5\x32\xba\x14\x43\x4c\x5a\x9a\xa5\xfc\x0e\x0a\x80\x80\xdc\x50\x86\xd7\xda\x97\xd4\x5b\x84\xce\xd3\xdd\xcf\xd3\xb5\x12\x77\x98\xaf\xee\x87\x89\x81\xf4\x42\x05\xea\x1f\x4e\x31\x91\x31\xc5\xc8\x41\x7f\xdc\x54\x73\xbf\xf5\x12\x14\x08\xa5\xad\xa9\x27\x60\xae\x4d\x59\x95\x81\x48\x57\x15\x15\xb3\x90\x73\xe5\x95\xc6\x72\x1c\x81\x53\x3e\x7a\x3d\xf1\xe5\xcb\x79\xf8\x65\xb1\xbe\xff\xf0\x15\x3a\x2b\x73\x71\x01\xef\xfa\x66\x93\x6f\x77\xb8\xbf\x6a\xcc\x9d\x3d\x63\xae\x7c\x7a\x52\xc5\xb3\xa5\x63\x78\x68\x09\xef\x7a\x3f\x82\x60\x97\xfb\x2d\xdf\x98\x6f\x48\x06\xb0\xda\x29\xf1\xe2\xc0\xdf\x5c\x00\x43\x8a\xbf\x7b\xf4\x5c\xad\x53\xb8\x7b\x21\xf8\x65\x43\xe9\x73\xd4\x7c\xd0\xb3\xc7\xab\xa9\xb2\xd7\xe9\xb7\xb6\xae\x12\xa5\xbd\x03\x15\xd0\xa2\xa3\x97\xd1\x02\xf1\xbf\x2e\x6a\x49\x2e\xee\x2b\x15\xee\xb3\x7a\x70\xb5\x4d\x3f\x92\x75\xa1\xe6\x9e\xda\xce\x04\xcd\x0a\x24\x6e\xfe\x2e\x61\x80\x9b\xb2\xbe\xd2\x8a\xd1\xd1\xa4\xb0\x1b\xd9\x05\x51\xbe\xcb\xc2\xe9\x38\xc2\x63\x05\x21\x23\xb5\xcb\x91\x51\x6d\x3a\xcd\x82\xfc\xb9\x7f\xa0\x7d\x3f\x2c\x73\xbc\xf7\x86\x0b\xdb\x66\xc4\x38\x31\x63\x8a\x2b\x93\x15\xdc\xe4\x52\xed\x05\xe1\xb6\x71\x36\x3b\xdf\x22\x08\xfa\x96\x1d\x7f\x6a\x2d\x09\x90\x7a\x62\xa9\xbe\xa5\xbd\x33\xf9\x6b\x5c\xe7\x87\x31\x5b\xbd\xa1\xc5\x4a\xba\x25\x96\x06\xc8\x4e\x8f\x1b\xa6\x61\x3c\xfa\xef\x05\x28\x5c\xb9\x0f\x37\x47\x70\xe2\x95\x28\x6b\xcc\xb5\x2d\xad\x45\xc5\xed\xb4\x82\x1d\x8a\x95\x13\x55\x5e\x7c\xbd\x26\x8f\xaf\x35\x22\xbe\xcf\x74\x74\xa6\x33\x1e\x8b\xf5\xc8\xa4\xb6\xb3\xe2\x60\x1f\x6c\x0a\x4a\xc6\x0f\x9e\x00\x4a\xd7\x10\xed\xcf\xb3\xb3\xa5\xb5\xf9\x29\xec\xc8\xe3\x70\xfa\x35\xa4\x78\x57\x8e\x3b\x9a\xf2\x44\xee\x9b\x95\x8e\x37\xa0\x06\x7c\x01\x3f\x4b\xaa\x14\x1a\x78\xa5\xa7\x2a\xed\x0e\x08\xbe\xa6\xdc\x16\x9b\x9f\x92\xfd\xcd\x7a\x99\xd6\xcc\x02\x73\x0a\xe9\xa8\x78\xef\x59\x54\x0f\x37\x1e\xe6\x56\x30\x9e\x7b\xbd\xb4\x56\x6f\xb3\x71\x7b\xbb\x8c\xcb\xb2\x84\xb7\xea\xff\xcb\xe9\x57\x03\x5b\x05\x09\xee\xd0\x08\xe5\x07\x95\xe7\xa8\xd9\xa0\x69\xbd\x36\x77\xf8\xb0\xea\xe9\xa5\x30\x58\x3b\xc6\xe6\xeb\x7b\x07\xf9\x0f\xd5\xfa\x20\x57\x40\x7b\x6c\xdb\x4b\x2d\x8b\xdc\x9a\xe8\xeb\x23\x29\x3c\xa1\xb0\x5f\x30\x7f\x2a\x93\x2a\x92\xf4\xcc\x31\xf4\xe7\xdf\x45\x4c\x3c\x00\x7c\xb1\xe3\xad\x8d\xa4\xc2\x61\xcf\x4f\xa5\xed\xd4\x02\xb6\x57\x95\x78\x74\xd9\xfc\xb0\x74\x43\xbc\x50\x42\xef\x80\xb2\xb8\x17\x0c\x7f\xd8\x54\xde\xc6\x47\xd3\x37\x4c\xbc\xfa\x94\x30\xeb\xc6\xbd\xc3\xe4\xa5\xe0\xe2\xf9\xbc\x82\x58\x79\xea\x4d\x3b\x95\x4c\x6d\x56\x46\x4b\x1f\x7f\x43\x8c\x71\xac\xe3\xd4\x98\x67\x0c\xb1\x66\xc0\xfd\x73\x28\x26\x2a\xa5\x1c\x29\x61\x16\x73\x2c\xb1\xc9\x7f\x28\x19\x86\xda\xf8\x3b\x74\xb3\x23\xb6\xa8\xba\xbd\x7d\x99\x53\x8e\xc7\xbd\xdf\xf3\xf3\xd1\xb6\xe1\x91\x07\xbe\xc8\xe9\x62\x7d\x95\x8d\x7c\x71\x7a\xa3\x90\xc8\xbf\x1a\xf7\x4e\xa6\x85\x99\x6f\xc2\x45\x16\x93\x25\x48\xb8\x73\xeb\xef\x3d\x27\x13\x9c\x49\xdc\x76\x63\xf1\x0d\x8a\x87\xc1\xc1\xf2\xe2\x46\x69\xfd\xbf\x39\x48\x83\x3f\xc8\xcc\x06\x4f\x2e\x33\xb9\xf1\x20\xba\xe0\xf7\x5c\xa2\xc0\xef\x50\x9a\x58\x94\xb2\xfc\xe7\x12\xc9\x60\x98\x50\x69\x60\xf1\x5d\xa5\x01\xe7\xb0\x5c\x51\xaf\xe1\xa5\x94\xd7\xbc\xef\x2b\xed\x6c\x96\xaf\x5d\x31\x09\x01\x10\x1f\xfe\x03\xa6\xef\x28\xde\xc0\x0f\xfa\xb2\x0d\x0a\xda\x8d\xfa\x06\x51\x07\x94\x6c\xcd\x4a\x78\x85\x80\xad\xde\xa5\x5f\x00\xed\xbf\x63\xda\x57\xe7\xca\x50\xcc\xc3\x68\x81\x2b\x9d\x55\x68\xd5\xcf\xa0\x2a\xfb\xb7\xc5\xf9\xaa\xe8\x40\xe2\xa5\x2c\xca\xbf\x43\x0e\x9d\xad\xce\x56\xa5\x17\xb0\xd7\x6e\x4a\xff\x5c\x38\xf5\xc4\xbd\x55\x78\xa7\x7a\x72\x38\x1b\x53\xcb\xb3\x63\x3c\x83\x8a\xe8\x14\xbf\x6e\x7c\x5c\x1b\xca\x95\xac\x7f\x34\xba\xc8\xa3\x3f\x85\xa9\x4e\x4b\xcc\x58\x07\x00\x94\xfe\xc8\x22\x9a\xad\xa2\xb3\xde\x42\x9a\x34\x0c\xcd\xa7\x75\x1d\xfb\x26\x1a\x7f\xd4\x9e\x5d\x9a\xa6\x3d\x68\x8c\x8e\x8d\x47\x48\x80\x67\x86\xbd\x3e\x91\x68\x44\xe8\x04\x50\x5d\x81\x9e\x7c\x0f\xa9\xbd\x88\xdf\xe0\x4e\x35\x98\x7a\x30\xbd\x17\xde\x3f\xc4\x27\x38\x11\x60\xf8\xaa\x63\x88\x1d\x27\x1c\xb2\xca\xe8\x48\xb7\x12\x0e\xef\x9f\x3a\x36\x12\x78\x7b\x70\x90\x8a\xf6\x3f\x5d\xaf\xbc\x48\x9b\x4a\xd3\x58\x2e\x34\xef\xc5\x62\xcf\x78\x0e\x67\x05\xf8\x89\x1c\x0d\x1f\xb2\xdb\xca\xc5\x31\xa6\xf2\xfe\x6f\xae\x24\xc4\x4c\x4b\xdf\x3f\x8e\xd8\xb4\xc3\x5e\xe4\xd4\x22\x6f\x7c\xb9\x4b\x31\xcb\xdc\x7c\x62\xdd\x77\x97\xc9\xae\x81\xf5\x9a\xe8\x2d\x3e\x3b\x24\x3a\xb5\x2e\xf3\x40\xfb\xe3\xda\x10\xd6\x8f\xf2\x68\xe5\x56\x4e\xbb\x83\x1b\xa3\x85\xd9\x60\xae\x30\xde\x33\x67\x09\xa1\x42\x19\x84\xbd\xa3\x82\x56\x46\x4d\xd8\xee\x41\xfd\xbb\x0a\xf3\xd7\xe2\xd4\xa0\x97\xb2\x0a\xb5\xcc\x69\xd3\xd4\x99\xcf\x78\xf7\xf8\x0b\x14\x78\x32\xdc\x8e\x21\x9e\x60\x11\xdb\xe2\x0f\x57\xfc\xc2\x90\xdc\x22\x38\x43\x1b\x6b\x1c\xc1\xe9\x98\x64\x49\x67\x2e\x89\xf7\x81\x8b\xa8\x8a\xce\x04\x7b\xf2\x8f\x0f\xa9\x70\x32\x4d\xa9\x06\xde\xf4\x52\xcb\x94\xb5\xc6\x1c\x15\x26\x73\xa1\xa7\xec\x94\xf2\xcd\x46\x89\xf1\xa9\x9a\x7c\xe6\xe3\x6a\x6a\x54\xaa\xfd\xd5\x22\x0c\x7f\xa1\x8d\xb7\x5d\x06\x0f\x6f\xae\x88\x70\xfc\xdb\xf0\x1f\x8b\x7f\x2e\x2a\x1c\xd1\xe3\x3a\x10\x4d\x28\xe8\xe3\x8e\xf6\x4a\xbb\x8e\xfe\xcc\x60\xa2\x15\xe7\x20\x9a\x5a\x49\xe3\x4a\xf6\xfa\xe5\x4b\x05\x20\x84\x69\xa7\xd6\x73\x51\x9b\x6f\xea\x3e\xe6\x93\xbd\x8e\xf3\xb1\xdc\x66\x8a\x2e\x09\x87\x43\xf6\x3f\x6e\xd7\x97\x2c\x44\xa3\xa4\x0c\xb7\x34\x38\xdb\x76\x7f\x47\x6b\xec\xa6\x57\x76\x27\x8b\xd4\x3e\xb3\x31\x5a\x87\xe7\x42\x00\x72\x58\x7e\x15\xb9\x85\x65\x69\xa6\x41\xd4\xef\x7c\x26\x9e\x42\x4c\x57\x2d\xfa\x42\x16\x7b\x71\xd0\x75\xe2\x93\x5f\x83\x87\x21\x24\x26\xf8\xd0\xe8\x12\x5a\x25\xf5\x7a\x03\xeb\xea\x4b\x77\x3d\x27\x2e\x78\x5e\x4b\xad\x26\x9e\x6e\x3e\x47\x77\xa7\x22\x9a\xb9\x48\x3b\xf0\x83\xf0\x53\x2e\x55\xaa\x49\x21\x50\xb2\x59\xfa\x73\x06\x7c\xa8\x73\xbe\x20\xd1\x8e\xe1\x75\x31\xcb\x71\x83\xe2\x9b\x57\x31\xd1\xab\x85\xf5\x1f\xba\x8f\x3f\x72\x2a\xd1\xfc\xb0\xca\xe1\x3e\x7d\x7b\x62\xd5\x10\x73\x92\x17\x2c\x7d\x5d\x9b\xf8\x4b\x5f\xf1\x8d\x34\x62\x90\xcb\xaf\xa3\x2b\xed\x6c\xeb\x70\x7f\x99\x73\x89\x3b\x08\xa3\x41\x52\xb9\x8c\xc3\x02\x7a\x75\xa9\x1f\x52\x1f\x28\xdc\xf9\x8d\x69\xa3\x79\xf7\xef\x40\xf9\xb0\x18\x61\x48\xc3\xa9\x67\x9f\xcf\xe1\xa6\xcf\xf9\xeb\x2e\x25\x22\xf5\x77\xb3\xd6\xaa\xb0\x10\x25\xf0\xd9\x14\x37\x16\x4a\x5d\x8d\x2d\xb9\x88\x75\xb6\x9a\xad\x04\xf6\x5d\xa6\x84\x0f\xbe\xac\x24\x24\x28\x61\x58\xda\xac\x35\xb2\x68\x6f\x9d\x86\xa6\x9a\xe2\xf8\x8c\x25\xda\xf2\x81\xca\x5c\x94\xd1\x96\xf4\x83\x83\xdf\x75\x42\x95\x1d\xa9\xf6\xd4\xcf\x63\xca\xc9\xed\x8c\x46\x4f\x87\x8c\xec\x14\x4f\x7e\x0b\x71\x93\xa0\x2f\xe7\x76\x4f\x8c\x50\x66\x88\x50\x96\x76\x0e\xfd\x13\x68\xcb\x61\x46\x8d\x3f\x0a\x1b\xd0\x5b\x53\xf5\x8d\x64\x07\x58\x15\xdf\x4c\xee\x92\xb1\x69\xe5\xfd\x79\xfa\x37\x1d\x96\xbc\xa7\x17\x97\x13\xf7\xf4\x6d\xef\x13\x15\xb9\x27\x91\xfd\xaf\xde\xc2\x70\xdd\x0c\x2e\x1f\xc3\x7e\xa1\xe0\x43\x78\x13\x62\xd8\x29\x59\x8d\x95\xaa\xfe\x90\x3e\x46\xf3\x06\xde\xc2\x46\xf6\xc2\xd7\xec\x85\x42\xec\xa5\xef\xf0\x0c\xca\xdf\xe7\x0f\x40\x4f\x88\x36\xf1\x92\x3f\x1d\xa6\x79\x1c\xfa\x9f\xe9\xdf\x99\x72\x29\xd2\xdd\xe1\xbe\x9d\x59\x08\xdb\xbc\xef\x21\x9e\xd9\xb3\xb1\x33\xe3\xb0\xf1\x8f\x2e\xcf\xde\x50\x0b\x0f\x4e\x26\x99\xf7\x16\xb5\xf0\x95\x77\x36\xff\x93\xaf\x21\x8e\x70\x3a\x50\xfc\x56\x37\x88\x7e\xb7\xdf\xe3\x73\x9e\x95\x58\xe8\x43\xa7\x1f\x33\x1c\x39\xf6\x01\xd0\x78\xdf\xcd\x42\x75\x7a\x3a\x98\xdd\x82\xbd\x9a\x96\x51\xa1\x00\x3e\x23\x65\xbb\x03\xa1\x0e\x7a\x7e\xa6\xb0\x55\xb5\xc4\xe2\xe5\x8d\x5e\x41\x95\xa4\x28\xc3\x06\xb5\xe3\x4e\x49\x24\x0f\x85\x6f\xf1\x11\xef\xb8\x50\x94\x84\xfc\xab\x41\xb1\x6d\xe0\x20\x47\x4d\xd3\x55\xa0\x8d\xde\xa4\xb3\x75\x45\xa7\xe3\x34\x76\x92\xd6\x02\x50\x15\x02\xcf\x6a\x45\x6b\xaa\xc9\x3f\xae\x94\x02\x03\xea\x14\x57\x06\xf1\x1f\x4a\x49\x28\xc8\xa4\x1a\x82\xa8\x60\xbf\x84\x90\xc5\xad\xbd\xce\x81\xac\x5d\x08\x61\x9c\x1f\xc4\xeb\x8d\xf8\x95\xf9\x41\xff\x64\x68\xc1\xf8\x3f\x25\xc9\x4c\x15\x50\x98\x23\xc7\x77\xc8\x8e\xc3\xe5\xe6\x04\xcc\xd3\xaf\xc3\x92\xc6\xc7\x2c\x46\xb8\x45\xa5\x49\x87\x05\x74\x55\x73\xf7\x36\xa7\xdf\xba\xd1\x37\xea\x9d\xf4\x6f\xbb\xc4\x6d\x24\xc8\x5c\xbd\xc5\xec\x0d\xfd\x45\x2d\xc4\x4d\x43\xbf\x08\x84\x65\x8e\x08\x13\xf3\x28\x0e\x5d\x91\xeb\xee\x1d\xc7\x36\xdc\x58\xf7\xdd\xb1\x9a\x46\x63\xbb\x4b\xbd\x01\x11\x82\x16\x95\x84\x3c\x0e\x54\x9e\x19\x8f\x79\x19\xa7\x28\xe3\x55\xf9\x1e\xc6\x0a\xff\x79\x0e\x60\x72\x29\x5f\xd8\xa4\x03\x2b\xf1\xfc\x75\x06\x5a\xdb\x5c\x5d\x0b\x34\x93\xf5\x9a\x94\xa1\x9f\x63\x79\x73\x4e\xe5\x35\x14\x28\x2b\x7f\xe2\x5a\xef\xcc\x3f\x2f\x84\x40\x99\x29\x0e\x3f\x53\x46\x53\x8c\xb4\xd0\x9b\x18\xb7\xb3\x13\x7f\xd9\xea\x3b\x5f\x48\x1a\x7c\x59\xf0\x1c\xb4\x0a\x21\xd6\x97\x5d\x6c\x54\x97\xb9\x58\x47\x99\x40\x33\xcf\x9b\xef\x14\x14\x54\xd9\x9c\xd2\xab\x56\x88\xf6\x0f\x58\x82\x30\x08\xa8\xc6\xab\x96\xcb\x71\x1c\x20\x99\xce\x41\xbc\x37\x41\x25\xd5\xbc\x3a\x32\x6d\x76\xb4\x8a\x44\x92\x81\x2f\xa7\x32\xbf\x21\xd2\xf1\x85\xa6\x44\x71\x6f\x35\xe1\x2a\x5d\x76\x79\xe3\x95\x09\x25\xbc\xfe\xe2\x09\x76\x32\x03\x4f\xdb\xbb\x62\xa3\xb4\xd2\xbe\x3c\xed\xb0\x5d\xad\xce\x10\x71\xfa\x04\x0a\xf7\xcb\xde\x1f\xae\x35\x97\xcf\xa6\xda\xda\xde\xf7\xdc\xfa\x04\x07\xc7\xc9\x8a\xe3\x8d\x88\xf4\x7e\x7f\x12\x25\x59\xaf\x35\xb1\xc0\x49\xe1\xea\x5a\x4c\x86\xf2\x92\x40\xc5\x75\x57\x56\xd6\x27\x97\x0b\x52\xe1\xdb\x43\xd7\x6f\xdd\x33\x20\xcf\x71\xdf\x30\x43\x6f\xe2\xda\x95\x4f\x21\xcd\x89\xe0\xd4\xf4\x1f\xbe\x5f\x30\x76\x6d\x60\x44\x7a\x0d\x7e\x77\x32\x15\xcd\x93\x10\x7c\x2f\xe6\x3b\x8b\x86\x0e\x51\x08\x8b\x93\xd1\xc7\x5f\xa7\xe9\x63\x2b\xfe\x83\x72\x3a\x25\xb0\x07\x2c\x96\x3e\xfc\x5a\xa0\xbd\x38\xbf\xda\xd3\x2c\xe3\x44\x6d\x0e\xde\xff\xcd\xe2\xbc\x8f\xb5\xbe\x93\xf3\x6b\xdc\xe1\x20\x25\x6d\x71\xce\x3f\xf7\xef\x73\x85\x32\x5e\xee\xc1\xb2\x9f\x92\xee\x69\x5e\x31\x50\xb8\x7e\x14\x37\x62\xc3\xc8\xe4\x08\x09\xeb\x68\x73\xfd\xa5\x7b\xb5\x52\xc8\xce\xef\xe1\x5d\x7b\x31\x54\xd2\xb0\xbb\xdf\xd3\xd8\x65\x69\x2e\x15\x87\x75\x11\xdc\xca\xbd\xf4\x83\x92\x3c\x1e\x2a\x67\xe2\xaf\xa1\x01\x20\x06\x13\xd4\x2d\x33\xb2\x8d\x34\x59\x95\x2f\x30\x24\x44\x84\x41\x40\x28\x53\x05\x2e\x51\xee\xa0\x77\x73\x2a\x35\xf5\xc0\xdc\x87\xde\x77\xe4\x5f\x51\xbf\x3f\x47\xad\x23\x24\xec\x95\x14\xe0\x7a\x94\xde\xcf\x50\xcb\xf8\x87\x4f\x22\x0f\x63\x7f\x1a\x9f\x8a\x79\xc9\x0a\x1c\x89\x16\xc6\x2f\xb7\xbd\x0c\xb6\x1f\xfa\xf9\xaa\x30\xb7\xdf\xd8\x07\xe7\x46\x05\x4e\x0c\x83\xfb\x0c\x9f\xc7\x4a\xe3\x01\xd9\x85\x9d\x06\x41\x51\x22\x86\x71\x3f\xaa\xe9\x9a\x3a\xd9\x36\x2f\xd6\xc2\xdd\xf7\xd7\xe2\xfa\x1c\x39\x9e\x2e\x06\xdf\xaf\x8f\xa5\xa2\x57\xc0\x90\x18\x3a\xfd\x1e\x7a\x6f\x59\x35\x57\x7b\xfd\xbf\x71\x1f\x94\x52\x27\xa9\x79\x05\xc2\x8f\x5c\x0d\x77\x5e\x2e\x37\x7d\xcc\xbc\x4b\x65\xab\x12\xad\x56\xe9\x3b\xeb\x84\x23\x37\x70\x81\x9b\x3c\xb9\x4b\x43\xd0\xb6\x93\xe4\x8d\xa3\x14\x77\x6b\x01\x49\xc8\x84\xc6\xa7\x7d\xf4\x41\x54\x85\x02\x44\x0a\x05\x93\x54\xf5\xe1\xb1\xf7\xb1\x7d\xbb\x80\xe2\x7a\x3a\x3f\x59\xa4\x13\x3d\x03\x44\xe2\x4e\x97\x1a\x12\xb0\x83\x4d\x2d\xde\x22\xa5\xdb\x97\x59\xfb\x9b\x22\xef\xa6\x3c\x47\xa8\x69\x73\xa1\x57\x44\x5d\x97\x94\x64\xdb\x6a\xc3\x11\xed\xcb\xd8\xc1\x7e\x82\x1d\xb4\x7a\x85\x4c\xc5\x0f\x1d\x24\xaa\x42\x5d\x85\x60\xbd\x20\xb8\x2c\xa2\x2f\xc9\xae\x90\x2b\x24\x9c\x8d\xf3\x0f\xd9\x5e\x97\x90\x63\x58\x43\x55\x7c\x6d\xa9\xb1\x88\xda\xc3\xe4\xc7\x31\xa3\x53\xad\xa4\x20\x0b\xcc\xed\x61\x15\x4f\x27\x0e\xfd\x6a\xd4\x67\x00\x6c\x30\x61\xd8\x45\xd7\x9c\xf4\x2a\xa7\x78\x13\x4d\xf6\xd4\x47\x25\x85\x39\x77\x40\xe1\xd2\x2a\xfc\xb2\xec\x27\x6b\x9b\xc6\xd8\x02\x35\x94\x36\x5e\x60\xe4\x9f\x7f\x64\x40\xbd\x04\xbd\x82\xc6\x9b\x7e\x0d\x56\x9c\x6b\x37\x23\x7f\x66\xd3\x68\x26\x88\xf5\xf6\x41\xbe\x11\x12\xa0\x04\xb5\x1b\x0d\xdc\xf3\x53\x78\xb8\xc0\xc4\xa6\x9b\xbf\xaa\x02\xdf\x29\x88\x97\x50\xca\x86\xf3\x5e\x11\x83\x75\x8c\x82\xc8\x7a\x7a\xd8\x19\x3e\x24\x0e\x8b\x61\xfd\x96\xd9\x4d\xe5\x88\x80\x63\xcf\x2c\xe0\x1c\x40\x95\xdf\x44\x86\x41\xb3\x38\x06\xb0\xe6\x35\x21\x06\x9d\xa6\xdc\x9b\xf1\x78\x5d\xca\x7d\x68\x4b\xf2\xb0\xc8\x6a\xb2\x64\xba\x03\x87\xec\xfd\x67\xb4\x29\x2f\x30\xef\x05\xcc\xc4\xfe\xe6\xb3\x41\xba\x9e\xca\x5d\x93\x2b\xa1\x86\x1c\x9c\xc8\x9c\xab\x0d\x70\x43\x00\xfc\x46\xfd\x92\xc2\x17\xb4\xae\xa1\x4f\xea\x7a\xc9\x36\xad\xd3\x57\x81\xc7\xed\x76\xf8\x83\xcb\x49\x65\x2d\xe7\xab\x5f\x4f\x9a\x22\xd0\x12\x98\xc6\xc8\x89\x1b\x5c\x4a\x9f\xc7\x08\x27\x21\x55\x7d\x1a\x84\x52\x46\x0d\x7a\xd3\x61\xe8\x07\xf9\xb3\xf1\x51\x0e\xa5\x1d\x40\x9d\x35\x55\x24\x71\x3a\xf5\xde\xa5\xf4\x23\xae\x9e\x59\x55\xe6\x73\x55\x00\xa0\x26\x85\x7c\x16\x06\x1b\xe1\x65\x2c\xbb\xcf\xee\x11\x0b\x88\x3c\x07\x63\x68\x11\xde\x57\x74\x57\xa2\xd6\xa3\xb8\xfe\xbf\x31\x94\x71\x51\x4c\xc5\x0f\xab\x2b\x8b\x1a\x4b\x2d\xeb\x44\x2c\xba\x30\x39\xfa\x92\x7c\x7e\x8f\x7d\xa9\x1d\x49\x0a\xd7\x8f\x36\x1c\x17\x32\x63\xb1\x9b\xdf\x3b\xa9\x0f\x60\x0e\x0e\xcc\x25\xfa\xb4\x3f\x59\x31\xbb\xf2\x3d\x3e\x03\x6a\xc9\x93\xb4\x4c\x80\xe4\xa9\x3c\x78\x51\xfb\xde\x54\x80\xf0\xd6\xb4\xda\xf2\xef\x87\xb5\xdb\x19\xba\xe7\xcb\xc9\x2f\x0f\x34\x35\xeb\x2e\xfe\x7a\x55\x7a\xda\xaa\x78\xab\xb9\x3a\xb9\xc0\xa6\x51\xf4\x07\xf1\x6e\x8d\x9f\xcc\x5a\x6f\x86\xb6\xbe\xc5\x0d\x13\x26\x6e\xa4\xbb\x5b\x6b\xe7\x5d\xf9\x97\xd9\x47\x11\x0d\xc0\xc5\x00\x1a\x53\x23\x54\xbc\x28\x8a\x4d\x32\x55\x8f\x95\x83\xe2\x77\x01\x9d\xaa\xaf\x29\x14\x2b\xf0\xa4\xab\xf8\xfa\x2b\x14\x0b\xfa\x9a\x98\xe4\xc9\x51\xa8\x2d\x9c\x8c\x29\x21\xeb\x29\x14\x9b\xf4\xbc\x93\xf7\x22\xab\xf2\x4a\x44\xf7\xda\x14\x1f\xf9\x7b\x69\xfd\x2f\x8d\x84\xd7\x9b\x83\x22\x56\x8e\x99\x36\x0a\x86\x1f\x4e\xb5\x31\x4e\x27\x64\x92\x02\x9b\x2b\xf5\xbb\x7f\x85\x36\xad\xe1\x21\x94\xb2\xed\xb6\xf8\x83\xcb\xc9\x2f\xc5\xaf\x56\xcc\xaf\x4b\x6a\xaa\xcf\x85\x4c\xae\x6f\x4b\x30\xe5\xec\x00\x2a\x8a\x77\x2c\x6a\x98\x1c\xff\x13\xe1\xe9\x77\x40\x16\x20\x8f\x4b\x9a\xc7\xb3\xfa\x4d\xd7\x9c\xcd\xf3\x82\x83\x2b\xcc\x14\x91\x4d\x1b\x06\x14\x95\x35\x1c\xb1\xda\xf9\x5d\x8c\x7e\x3d\x71\x3c\x18\x78\x6a\xac\x77\xfb\x12\xa3\x6c\x44\x84\x8b\xa3\x79\xb3\x65\x05\xc7\x47\x48\x7d\x61\x87\x94\x7c\x02\x06\x79\x80\x4d\x78\x5a\x9f\x1d\x85\x00\x85\x4a\x07\xa5\xee\xa0\x11\x65\x7a\xfe\xf8\xf0\x47\x52\xe5\xc7\x17\x82\xef\x47\xc9\x55\x61\x0a\x41\xf4\x30\x66\xc5\xae\x37\x58\xa6\x4c\x3e\x1d\x4e\xc8\x77\xdb\xf0\x84\x55\xda\xbb\xc5\x15\xbb\x97\xa1\x17\x60\x68\x87\x44\xa0\x14\xeb\x8f\xfc\x1f\xb2\x61\xc2\xf3\xf2\x42\xc1\x8b\x41\x55\x5f\x85\x5d\xdc\xbf\x30\x9a\x87\xc4\xfa\x05\x9b\x0b\x83\x37\x49\x1c\x36\xde\x0f\xc5\x0c\xc7\x17\x3a\xfa\xfa\x64\xfa\x94\xa4\x37\xe9\xa3\x1a\xf1\x3b\xfe\x44\xd9\x1e\x19\x7d\x83\x7e\xbe\xa2\x65\x50\x21\x02\xea\x99\x5e\x7a\x8b\xd8\x1c\x96\xe4\x95\x08\xbc\xfd\x2b\x1d\x4c\xdf\xe0\xf7\x08\x60\xf8\x3e\x82\x8c\x05\x7d\x47\x69\x0c\x18\x6a\x58\xc6\x95\x64\xfb\x62\xc6\x37\x76\xe7\xd3\x8a\x35\xc5\xe7\x94\x66\xf6\xb8\x56\xa5\x97\x93\xba\x2c\x2d\x3d\xf1\x36\x32\x64\xcc\xdb\x24\xcc\x64\x57\x5d\x0e\xe7\x08\x2d\x04\x57\xff\xc5\x69\x79\x30\x58\xa0\x35\x3c\xcf\xe6\xf8\x3f\x82\xd9\xc8\x86\x53\x59\xf3\x87\x97\x52\xca\x96\x42\xb4\x05\x49\x03\xb4\x07\xb5\xe0\xd6\x24\x7f\x5b\x09\x8b\x4e\xf7\xcd\x3b\xa4\xee\x9f\xc3\xbd\xaa\xfe\x52\xd3\x64\xa5\x7e\x11\xab\x2d\x91\xe4\x71\xb9\xea\x52\xe0\xaa\xf6\x06\xee\x2e\x09\xf3\x12\xaa\x22\x62\xcf\x31\x8e\x87\x83\xfe\x8c\xf2\x95\x22\x6d\x56\x96\x7e\xbf\x13\xa3\x75\x2c\x2c\x16\x7d\xb5\x96\xc7\x35\x16\x5d\x23\xff\x50\x5b\x37\x90\xe1\x36\x19\xa0\x9b\x18\xbb\x83\xff\x6c\x70\x4d\xf8\x87\xfb\x19\xc8\x37\x8d\x98\x50\xc0\x9e\x80\x6b\xa2\xaa\x61\x50\x24\x98\xed\x91\xb4\x73\xfc\x07\x27\xcb\x77\xe3\xe3\xe3\x8b\xe3\x56\xd4\xba\x71\x97\xc4\x1e\x41\x69\x96\xb9\xb4\xf4\xa2\xe3\x5d\x5d\x62\xdf\x8b\x07\xc2\xc3\x43\x2f\x41\x84\x07\x54\x54\xe4\x3b\x34\xe4\xa6\x87\x76\x87\x62\xde\xdc\xac\x56\x77\xbb\xae\x5f\x36\xc7\x29\x88\x8a\xa7\xdf\x72\xba\x2f\x42\xad\x95\x89\xa5\xc4\x06\x3f\x22\x91\x8c\x97\x09\x6e\xbb\x32\xe5\x98\xea\x6d\xbf\x87\x8d\xca\xfb\x59\xbf\xa9\xf9\x0d\x4d\x99\x88\x87\xf4\x1e\xb5\x3c\x36\x5a\xea\xc5\x13\xfc\xc5\x69\x39\xbd\x70\x99\x65\x86\xc7\x00\x12\x61\xe1\x94\x70\xbc\x18\xa6\xcb\x2d\x61\x50\x49\xbb\x94\x4f\x29\xa8\xf3\x6c\xb7\x26\xb8\xb6\xf1\xfd\x75\x75\xba\x4b\xa1\x06\x5e\xb8\xdc\x1b\x3c\x60\x07\xc7\x20\x1b\xae\x2e\x07\xd0\x41\x43\x51\x78\x75\x05\xa7\x7d\xc8\x9e\xe5\xb9\x17\x8d\xcf\xe6\xb1\x3d\x8a\x32\x70\xc9\x91\x5e\x1f\xe7\xa4\xfa\xad\xf2\x36\x44\x0c\xe4\xba\x8a\x5d\xf5\xed\x65\x99\x6b\xeb\xf7\x96\x01\x80\x14\x70\x01\x54\x01\x14\x36\xc0\x7a\xdf\xc2\x4d\xe1\x77\x1f\xb7\x38\xe0\x58\x98\x62\x3e\xb4\x97\x34\x84\x85\xcc\xf6\x8e\x3a\xf7\xbf\xf2\x6f\x75\x39\x2b\xdb\x93\x29\x27\xfa\xe9\x60\x6d\xaa\xc8\x52\x91\x80\xa5\x9c\x24\x47\x82\xf7\x93\xa1\x37\xea\x54\x2d\xdc\x8f\xc4\xe5\xcf\x75\x7b\x26\xc3\xd5\x75\x4b\xb3\x94\xb8\xa4\x4d\xef\xb4\x69\x83\x4d\x91\x48\x25\x10\xf5\xf5\x39\x27\x3d\x9d\xd9\xf5\x8b\x36\xed\xf1\x52\xa3\xb2\xa7\x82\x3a\x49\x73\xe7\x29\xfd\x0a\xec\x2c\x38\x71\x41\x6a\xa0\xf0\x10\x19\xd8\xeb\x5e\x7b\x04\xc0\x28\xd7\xc1\x06\x11\x27\x2d\xed\x37\x6f\x32\x85\xc8\xea\x63\x5f\x8e\x76\x49\xdf\x9a\xce\xe2\x3f\x16\x8e\xcb\xe8\xf8\xf6\xac\xa3\x9e\x2e\xdc\xb1\x48\xfc\x09\xd0\x25\xee\x8d\x75\x90\x26\x7d\x20\x71\x43\x93\xb0\xea\x2b\x1b\x82\x07\xe0\x44\x9b\xe4\x07\x26\x7d\xfa\xb2\xa1\xf3\x6c\xae\xcf\x45\xc3\x70\xa8\x51\xa1\x03\x6a\x9d\xcb\x11\x26\x87\xb0\x58\x61\xcf\xb4\x2f\xca\xb4\x28\x6a\xd6\xaa\x08\x3c\x71\x58\x9a\x2f\x7a\x8a\x2c\xd1\x9f\xe5\x4e\x72\x4b\xae\xbe\x7f\x45\x73\x1b\xe9\x15\x35\xdc\xe2\x76\x21\xed\x0d\xa8\x13\x64\xfc\xb3\x68\xc9\x1b\xe6\xab\x2a\x70\x79\xa5\x05\x46\x29\x64\x5a\x18\x5c\x2c\x9c\x17\xb6\x3e\x1c\xc7\xc1\x8b\xf1\x13\xb4\x9f\x0a\xf9\x48\xc0\xb2\x23\x89\x9b\xc1\xf2\x91\x2c\x54\x0f\x48\x79\x54\x17\x8d\x8a\x0f\xcd\xd3\xfb\x1d\xb8\x76\x38\xfb\x81\x6f\x78\x59\x60\x97\x70\x43\x99\x23\xe2\xed\xda\xd0\x8f\xfe\x8f\xf7\xab\xe8\x7b\xa1\x43\xd6\xe0\x22\x77\xdf\x9a\x19\x6d\x05\xaa\xc8\x8d\x17\x69\x9b\x84\x69\xba\x8a\x28\x7a\x3c\x39\x24\xca\x43\xfb\xb6\xd3\x9e\xb2\x59\xbd\xf6\x2e\xab\x2b\xdc\x5f\xb5\x36\x50\x41\x7f\x4d\x69\x7b\xd1\x97\x44\x00\xa5\xd6\x95\x16\x7f\x2e\xa1\x0d\x5e\x80\x5e\x12\x55\x4c\x2b\xb2\x3f\xfb\x07\xa0\xe8\xf0\x28\x69\x48\x4b\xba\xc2\xf3\x69\x2d\xef\x0c\xc1\xe9\xec\x29\xf9\x85\xe9\xec\xe4\xed\x50\xe0\x48\xd9\x93\x01\x9a\x7f\x84\xbd\x33\x5f\x12\xa3\x99\xc6\x60\xa4\xcf\xd0\x38\x79\x5c\x6d\x14\xa9\xe1\xea\x00\x86\x6b\x33\x88\xf9\x8c\x8f\xcf\x65\xe1\x78\x0b\x3b\x0e\x6b\x77\x67\x6c\x54\x6d\xf4\xab\xfe\xb4\x25\x0c\x1d\xda\xe9\xab\x29\xf4\xbb\x5c\xe3\x28\x19\x4e\xf7\x17\x04\x82\x49\x75\x9e\x5f\xe0\x20\x42\x48\x30\x1f\xb2\xa1\xe0\x50\xd1\x57\xd6\x45\xa6\x4f\x25\xd3\x3e\xa7\x8d\x26\xc2\x69\xf0\x43\xc5\x69\xca\x52\x29\x04\x0d\x42\xe0\xe9\x3a\x83\xe9\x5a\x02\x9f\xb1\x00\xd5\x7c\x88\xd6\x86\xe6\x24\x56\x61\x51\x0a\x6b\x8a\x02\xb1\x6a\x2f\x36\xf6\xd0\x57\x42\x51\x69\xcf\xca\x3a\x29\xb7\xfa\x4c\x15\x0e\x45\xf2\x45\x3f\x2f\x1a\xae\xa3\x7a\x58\xe8\x61\x88\x7c\x61\xc2\xcc\x78\x54\x91\x88\x26\x5e\xfa\x95\x22\x6f\xda\xf1\x76\x27\x97\xc3\x34\xfa\x40\xcc\x46\xc4\xa1\x39\x5f\xdb\x76\x01\x23\xda\xf6\x85\xa2\x66\xdf\xc1\x9a\x06\xb1\x08\xdd\xd5\xe2\x9b\x31\x28\x8f\xa3\x48\x48\xf1\x8c\xd8\xac\x30\x09\x5c\x7f\xa2\xbf\x5b\xf4\x96\xf3\xbc\xec\x31\x9f\xdf\xb3\xd7\xf4\xf0\x12\x7e\x9e\xc0\x70\xe9\x31\x48\x14\xbc\x74\xf8\xce\x11\x3e\x2e\xff\xe6\x87\x02\x6a\xdd\x20\x3b\x95\x52\xe8\x0c\x1f\x55\x4f\xac\x09\x42\x90\x43\x12\x8a\xa0\x9b\xec\xf4\xe2\x65\x5f\x63\xa7\x15\xf4\xf0\x7e\xef\x29\x4b\x45\x98\x88\xee\x38\x7e\x60\x10\x5a\x7f\x58\x03\xc3\x1d\xea\xb3\x22\x1a\x32\x5b\x84\x3a\x85\xc5\x5e\x97\x7d\x29\x23\x6d\xd5\x76\x53\x13\xc9\xff\xaa\xdd\xbc\xb6\x2c\x15\x2e\xd1\xde\x1d\x0c\xa0\xd1\x5c\x5e\x6f\x00\xf1\x98\x03\xd3\x1e\x7f\x97\xac\xcc\x26\xc2\xdc\xb7\x80\x2a\x9e\xed\x94\x96\x51\xbd\xab\xb5\xb8\x47\xc2\x31\x11\x9d\xe9\x30\xdb\x59\x6d\x58\x77\xef\x93\x4f\xcc\x23\x26\x0c\x9f\xe5\x6c\xb4\xa8\x99\x0a\x8e\x34\x35\x81\xb3\x12\x54\x86\xbf\xd1\xdb\xc2\x53\x92\x92\xf7\x89\xda\x0d\xbc\x25\xd9\x6e\x7a\x5a\xbd\x55\xf5\x98\x6d\x6f\x18\xc2\x4b\xe8\x75\xf3\x52\xb6\xf8\xf3\xe3\x11\x87\x33\xf7\x98\x66\x3c\xf9\x79\x97\x98\xa7\xd6\x4c\x07\xd5\x0d\xa1\x87\x57\x0d\xda\xe2\x4f\x2b\x68\xda\x8f\x3f\x22\xa4\x61\xfb\x32\xdd\x3e\x5a\x87\x67\xd8\x09\x85\x5a\x7c\x20\x55\xa6\x80\x2e\xee\xf8\xfd\x48\xa6\x1d\x57\x8b\xee\xa2\x1c\x53\x25\x00\x82\x1c\x8a\x03\xb9\xb3\xfc\x15\x11\x47\xd7\xc6\xf7\xd8\xbd\x65\xd4\x4a\x09\x6f\x3a\x8b\xb9\x51\xfc\x45\xba\x94\x59\xf1\xb0\xcd\x2e\x74\x77\xeb\x5b\x71\x3b\xfe\xb4\x93\x6e\xde\x7e\x8d\xc1\xc8\x8a\x81\x2d\x35\x4d\xd3\x99\x8f\xb3\x3a\x5a\xd3\x86\xcf\x6f\xb8\xc0\x90\x8f\x5b\x61\x25\xad\x08\xa0\x54\xcd\x44\x77\x7e\xcd\x7c\xcd\x85\xff\xab\xc0\x5c\x90\xa3\xc7\x55\x57\xa5\xc1\x25\xba\x26\x71\x38\xf0\xe0\x42\xba\x2c\xe7\x54\x25\x92\xd7\x8f\xfc\xc6\x50\xc4\x77\xbe\x48\x15\x80\x43\x5d\x52\xc3\x67\x53\xd8\x97\x64\x84\x0e\xfa\x88\x48\xd7\x71\x04\xd2\xc2\x2e\x13\xe5\x78\x03\x47\xc3\x2f\x01\x75\xed\x76\x60\xd8\x01\x8a\xbb\xe0\xaf\x67\x31\x60\x6d\x56\x9a\x0f\x0d\xab\xeb\x56\xde\xeb\x88\xd6\xd4\xf6\x8e\xea\x97\xe0\x92\xe2\x9a\x68\xf2\x18\x95\x79\x95\xea\x36\x96\xc5\x3f\x5f\x68\x4d\x6b\x11\xf8\x3b\xf0\xcf\x0a\xd5\x43\x4f\x36\x3c\x57\xc5\xd1\xa8\x6c\x9b\x1b\xd9\x36\xcf\xda\x7a\xf8\xb1\xb0\xf9\x19\x34\x50\x91\x9b\xf8\x33\x3a\xf6\x8a\xc2\x51\x9e\x7a\x70\x2a\xf2\x60\xb2\x0c\x0b\x51\x22\x52\x88\x25\x53\x72\xbb\xf0\xfa\x6c\xaa\x3e\x32\x2c\xc0\x33\xae\xed\x97\x76\x9b\x95\x05\xd4\xac\x2c\xe6\x8c\x46\xaa\x8b\x36\xe3\x8f\x73\xfa\x74\x32\x71\x89\x36\x65\x2b\x6d\xc4\x4c\xa8\xa3\x5d\xf8\x8f\x57\xdf\x4b\xef\x58\x48\x4e\x23\x5d\x0f\x5a\xa2\xcc\x76\x39\x0a\xa4\xcd\x66\xa8\x55\xb1\x80\xc1\x15\x4d\xe3\xb2\xa7\x65\xf9\xef\x1b\x77\x41\x00\xa0\x2a\xef\x06\x57\x5d\xee\xff\x94\x56\x2d\x30\x1a\x42\xe7\x40\x43\x88\x05\x87\xba\x10\x13\x6e\x2b\x53\x0d\x12\x53\x4e\xc5\xb2\x37\x92\x7c\x7f\xec\xd1\xfe\xf2\x29\x2e\x6d\xec\xd1\x94\x19\x64\xd8\xcb\xe8\x79\x06\x78\x2b\x3d\x0a\xa1\xfe\x0e\x7e\x40\x2d\xf7\xf4\x58\x21\xb9\xe0\xf2\xf9\xd2\xe5\xec\x43\x19\xd1\x16\x3d\x36\x42\xdd\x70\x77\xa9\xb2\x1d\xe2\xa6\x1c\x60\x54\xb6\xeb\xc1\x2b\xde\x14\xd5\x43\x66\x85\x07\x32\x91\x02\xcf\x24\x5d\xbd\x6f\x5a\xd9\xef\x58\xe1\x01\x00\x13\x4a\x00\x19\xf5\xcd\x34\x54\x44\x94\x0b\x82\x13\x97\xac\xcc\xeb\x47\x43\xf8\x2a\x48\xde\x22\x97\x7b\x01\xfa\x7d\x36\x83\xaf\xe4\xdf\xc7\xbb\x16\xb9\x1b\x61\xaf\xb6\x82\x83\x87\xa3\x54\x16\x0b\xdc\x21\x43\x20\x7b\x1d\xc4\xa8\x95\xaf\x0e\x42\x90\x42\x26\x72\xe2\x6b\xeb\x27\xd4\xd3\x24\x0e\x2f\xc2\xb7\x40\x71\x52\x6b\x64\x1f\x05\x15\x86\xb6\x52\x14\x88\xbc\xb4\x4c\x8c\xdb\xdc\xce\xc0\x70\xa8\x8b\x1a\x63\x71\x10\x2e\x55\x1b\x52\x86\x67\xf0\x88\x89\xaa\x63\x42\xd1\x23\xa1\x1d\xff\x8a\xea\xa9\x6b\xf7\x29\x04\xfd\xd4\x3d\xc7\x7d\x04\x92\xb0\x22\x96\xe7\x4c\x87\xf3\xaa\x9b\x00\xc6\x3d\x9a\x0f\x46\x31\xe3\x59\x7b\x21\x6a\xec\x04\xcc\x76\x1b\xb1\xc0\x6e\x9d\x80\x14\x49\x5b\xce\xe9\x30\x11\x9f\x1f\x36\x4e\xec\x47\xc2\x48\x56\x00\x06\x69\x90\x93\xf9\x20\x47\x6e\x5c\xc3\x4c\xd5\x9c\x1d\x77\xf0\xce\x90\x91\xa5\x06\x4c\x53\xf1\x52\x47\xbd\xd2\x44\xd4\x86\x57\x9e\x9f\x69\xe8\x3c\xa6\x75\x4b\x88\x82\x13\x00\xd0\x75\x58\x34\x5f\x40\x8c\x20\x2d\x12\xd5\xb2\xc9\x33\x7d\xdd\xc8\x92\xce\xd8\x60\x10\x00\x24\x30\xca\x20\x36\xc6\x59\x98\xb6\x2a\xe0\xbe\x5c\xe5\xe2\x14\x30\x2f\x10\x0c\xd2\x60\x8d\x53\x1c\x04\xc2\xf9\xfd\x7b\x0d\x87\xc7\xa6\xfb\x99\x44\x64\xdb\x41\xce\xcb\x40\x33\x2f\xc8\xd8\x52\x4c\xc0\xa5\xd7\xec\x81\xf0\x7a\x67\xb8\x5d\x1d\xab\x64\x35\xa7\x53\xc2\x9d\x15\x22\x8f\x4a\x72\xe6\x79\xbe\x39\xc4\x6d\xa3\x89\x28\xac\xed\xe1\x24\xf5\xfc\x9e\x6d\xef\x31\x25\x3d\x51\xe5\x43\x1a\x66\x70\x7f\xb7\xcd\xdb\xc0\x85\x06\xc9\x62\xc6\x3f\xb7\xf5\x9a\x0c\xfb\xb7\xb7\x11\xcb\x3e\xfe\x1b\x98\x79\xab\xbc\xb5\x0c\xf6\x88\x23\x83\x8c\x4d\x99\xc8\xf6\x56\x41\xc2\x9e\xfa\xd2\x37\x0d\xe7\xc4\xc3\xcb\x4c\x05\xd0\x6f\xf9\xb9\x30\x97\xe6\xad\x09\xb3\xb1\x25\xae\x7a\xa2\xc3\xe7\x89\xee\xe3\x2c\xdf\x62\xfc\x62\x94\x41\xbd\xc2\xff\x6a\x9e\x91\xaf\x05\xff\x66\xb2\x22\x78\xfd\xe6\xf7\xe7\xa5\x3e\x94\x69\xae\x4d\xb3\x1e\x79\x20\xfc\x4f\x30\xa9\x80\x26\xd6\x8d\x8a\x94\x3f\x4d\x43\xe5\x8e\xc5\xab\xc0\x2c\x83\x43\xa1\x40\x93\xa4\x83\xf3\x4c\x31\x60\x75\x39\x5c\x1b\x3c\xb1\x9a\xcd\x64\x46\xf3\x7a\x3f\x80\x42\xfb\xd9\x5c\xc9\xa1\x6f\xc5\x11\x6e\xd1\xa3\xfd\x08\xf9\x36\xf9\x3c\x24\x09\xf4\xa3\xcb\x01\xe6\x21\x6b\xab\x08\xe3\x27\xb8\x65\x8f\xb4\x4a\xb3\x26\x50\xbe\x08\xba\x60\xc2\x51\x1e\xc7\xc5\x45\x46\x5d\x9b\x2e\x90\xbf\x1c\xb2\x18\xef\xc8\x16\x05\x80\x5e\xec\x80\xef\xc9\xac\xfc\xe1\xe9\x7e\x09\xc7\xb4\x5c\x82\x93\x3a\xf9\x8c\x31\xcd\x43\x1a\x48\x46\x56\x69\xd9\xeb\xbe\x88\xb0\xe3\xac\xc5\x14\x0f\x80\xe5\xeb\xf7\x63\xdf\xf2\x19\x5a\x00\x19\xf5\xf6\xd1\xd3\xb3\xd9\xf5\xce\xda\xd9\x88\x7a\xea\x23\xcf\xb7\xf0\xbc\xf4\x77\xe2\x7c\xd3\xbb\x37\xdf\xc6\xeb\x9f\x01\x00\x0a\x2f\x29\x0e\xb8\xbd\x15\xc6\x04\x94\xe0\xe3\x2a\x07\x3d\x7e\x82\xf3\x06\x06\x41\x32\xf7\x31\x6a\x4f\xc9\x47\xb0\xde\x14\x2a\xe1\xd1\x2f\xde\x17\xd7\xe9\xf0\xdd\xb3\xc4\x97\x71\x2b\xdd\x44\xbc\x7e\xa4\x19\xd8\x3a\xa3\xbd\xdc\xa0\x3d\xb9\xcc\xa1\xef\x47\xae\xdc\xa8\x88\x3d\xa2\x4f\x43\xd9\x02\x40\x03\xe1\x0c\x24\x44\xf2\xe9\x5f\xfe\xba\x29\xce\xd5\xa4\x4e\xc9\x8c\x62\x01\x65\x96\x38\x71\x8b\x29\x97\xdd\x2e\x1a\xde\xd2\xc4\xbf\x12\x8e\x6a\x52\xf1\xc7\xb3\x86\x97\xd9\x9f\x5d\xbe\x52\x18\x92\x19\x84\xa2\x6d\xdf\x5c\x7a\x82\x96\x7c\x2f\x0d\x03\x69\x2d\x21\xc8\xa8\x51\x57\x22\x1c\x31\xa2\xad\x71\x37\xae\xea\xb1\x25\xa8\x29\xca\x9a\x15\x41\x90\xaf\xe9\xa6\x5c\xc3\xe1\xbe\xff\x9d\x78\xa4\x33\x7b\xb9\x78\x1c\x11\x90\x5f\x98\xee\xa5\xb1\xd5\x26\x3a\x70\x63\x21\x1f\x72\xd9\xd2\xc3\x03\x04\xc2\x4f\xfb\x9a\x0e\x5b\xdf\x1e\x2c\x36\xc9\x92\x5c\x6c\xc4\xbc\xec\x79\xb9\x6a\x67\x1a\x5a\x93\x46\xc0\x5d\x23\xf2\x46\x2d\xdd\xda\x02\xa1\xa5\xda\xab\x9d\x34\x67\x3b\xaa\xed\xa8\xac\xef\x88\x82\x49\x47\x89\xc6\xad\x3b\x35\xad\xf8\xed\xb0\x77\x06\xbb\x81\x50\x0d\x00\x34\x70\x80\x9a\x4d\x46\xc2\x48\xf8\xd5\x8e\x68\xef\x51\xde\x4f\x2c\xfc\x00\x23\x66\x6a\x30\x40\xa9\x4a\x04\x00\xcd\x49\x1d\x76\x22\xc2\x87\x1d\x7a\x4a\x98\xbe\x09\x2f\x10\xe3\x4b\xed\xa4\x5d\x0f\x87\xb8\x08\x5a\xff\xea\x29\x5b\x28\x7d\x17\x0f\x82\xd5\xf3\x0d\xf1\xff\x57\x79\x84\x57\xea\x8d\x76\x62\x64\x6b\xfb\xc6\x97\x1f\xee\x58\xbd\x14\x46\x88\x39\x68\xfe\x82\xcb\xb5\x80\xc5\xc3\x48\x08\x5b\x26\x4e\x97\x07\xb3\xc7\x48\x19\xda\x5b\x4f\xf3\xd1\xe8\xa7\x9e\x3d\xfb\xa8\x10\x4a\x2f\xf7\x1d\x4f\xdd\xaf\x71\xc5\xe7\x80\x8d\xf7\x0c\x2c\x25\x06\x02\xea\x19\x00\x64\x94\x30\x9d\xe5\xdd\x5a\xd1\xfd\x15\x94\xe2\x2d\xff\x47\x45\x2f\x9f\x84\x2f\xf0\x3b\x6f\xd7\x43\xe2\x74\xd2\xbb\x79\x1b\x25\xe6\x9b\x1b\x65\x5a\xf3\x96\xcf\x5d\xe1\x98\xfc\x79\x43\x47\xf6\x0c\x34\x65\x3f\xe7\x79\x93\xc7\xf7\x81\x64\x4d\x12\xac\xd7\x93\x20\xad\x6d\x28\x35\x0e\xd6\xfb\x77\xd0\x40\x78\x55\xe7\x7f\x78\xde\x07\xaf\x8e\xbd\xe9\x10\xd3\xef\x5a\xcd\x76\x4a\x99\x12\xdb\xad\x48\xab\x99\x81\x62\x94\x84\x7e\xcb\x60\x4b\x0f\x1b\x78\xc7\xe7\xf8\xe7\x7d\xfd\x5a\x3d\x1f\xe1\x8e\x4b\x18\x79\xfc\x38\xe0\x37\xe6\x18\x14\xf3\x62\xed\xa5\x6b\x4d\xc1\xe2\x98\xd0\xa0\xd2\x95\x98\x08\x67\x10\x1e\x5a\x0b\x52\x20\xa6\xeb\x24\xfe\xcd\x13\x84\xb6\x05\xa7\x53\x00\xc8\xa8\x44\x33\xd4\x6a\x64\xd9\x2e\xf9\x36\x05\xf0\x14\xc8\x97\x41\xb8\xf7\x9b\x85\x6c\xa8\x2d\x9e\x15\x64\x38\x17\xb2\x05\x5a\x2b\xc2\x04\x4c\x78\x77\xc9\xa1\xc6\xae\xef\x52\x01\x60\x20\x4f\xd0\x84\x1e\x0c\x7f\x82\x13\x1a\xf9\xcb\x1c\x81\xd7\xae\x9d\x3c\xe7\xb5\xa4\x56\xda\x39\x51\x1a\x85\x37\x0e\xe9\xf5\x52\xf4\xab\xfd\x71\x49\xd4\x24\x02\x1e\x9b\xb3\x00\x03\x61\x00\x04\x69\xf9\x19\xb2\x46\x6b\x7c\x7c\xf9\xe2\x2e\xbd\x09\x3d\x2c\x12\x56\x63\x34\xfe\x4d\x90\xa3\xe7\x84\xe0\xcb\xd4\x79\xd3\xed\xd4\x5b\xee\x7d\xab\x25\x9f\x87\x3f\x3e\xfb\x1f\x67\x7d\x56\x95\x67\x3d\x1f\x86\xa2\x3f\xed\x79\x4d\xbe\x33\xb2\xb1\xb1\x9c\xd2\xe2\x67\x48\x67\xcf\x43\xf8\x32\x77\x6d\xba\x7e\xe5\xf0\x97\xc3\x23\x18\xe8\x4f\x11\xd9\x61\x6c\x37\x95\x0e\x10\xdd\x26\x1b\x76\x26\xaa\x7a\x58\x45\x4e\x79\xd7\x8f\x69\x1a\x4f\x81\x93\x7e\x1e\xb9\xa7\xe1\x83\x11\x8f\xd2\x96\x7c\x56\x47\x6e\x86\x69\x39\x5f\x47\xf6\xc7\x1f\x76\xca\xd7\x33\x9c\xe1\x04\x45\x04\x6e\xbe\x16\xc6\x46\x46\xcd\x9a\x4a\xfd\xc0\x1c\xf7\x19\x13\xff\x77\x8b\xb3\x7b\x5a\xbe\x1b\x0a\x86\xfe\x05\x26\x1c\x8e\xbb\x29\x0b\xda\x10\x5d\xb3\xc0\x62\x98\x7c\x25\x04\xf5\x67\xad\x41\x1d\x1f\x99\xde\x5b\xb0\x70\x92\xe0\xf3\x97\xfd\x2f\x72\x90\x50\xfc\x93\x9e\x9b\xb8\x7f\xb9\x39\x2d\xbf\xdb\x41\xfb\x57\xc3\xaf\xda\xe6\x1b\x8b\x7b\xbb\x36\x97\x22\xdc\xe7\xef\x98\xff\x82\x00\x39\x25\x1c\x45\x0e\xa2\x62\x79\x70\x21\x7d\x68\xe5\xdc\x84\xc3\x3b\xf1\xe4\x9e\xc7\x01\x8b\xc9\x8c\x8a\x1b\xd9\x08\xd0\xab\x57\x0a\x43\xcc\x67\x2c\x58\x3d\x7c\xef\xb6\x14\xa2\xe9\xa1\xbc\xfa\xd9\xc5\x77\x31\xda\x77\xaf\x81\x6d\x41\x76\x99\x9d\xfd\xbc\x6b\x41\xe3\xc5\xc1\x3b\x0a\x41\xf6\x4d\xda\xd8\x0f\x1b\x1e\x9c\x69\xbe\x3a\x1b\x67\xd2\xcc\x7f\xc8\xd9\xe5\xbf\x03\xdb\x10\xc4\x1e\x8d\x3b\xf8\x57\x3a\x7a\x9d\x1c\x59\xba\x93\xd2\xfa\xfe\xe6\xdf\xb3\x4f\xb2\x9f\xac\x1a\x0a\x16\x8d\xca\x76\x64\x3a\xb4\x3c\xbb\x56\x4a\x8b\x42\xb7\xdd\x01\xc2\x23\xe6\xe1\xae\x66\x91\x97\x20\x60\xe4\x07\x01\x8f\x1c\x90\x0f\xa4\xcf\x15\xc2\x8a\x94\xec\x0b\xac\x39\xa6\x73\x2b\x90\xaa\x9e\x65\x8a\x24\x1a\x44\xac\x62\x7d\x57\x6d\xc5\xcf\x9a\xb1\x5b\xe8\xe1\x67\x41\x67\x3c\x7b\xb4\x52\x10\xa4\x65\x24\x9d\x03\x26\xbf\xc8\x58\xd0\x37\xe9\xd3\x96\xcd\x43\xb7\x60\x5d\x55\xdb\xa7\x9a\x52\x4c\x7f\x4a\x91\x8f\xf1\xc6\x3a\x36\xbb\xfc\x93\x9e\xb7\xef\x58\x20\x28\x35\x79\xfc\xd7\x79\x1e\x55\x34\x4d\x75\x13\xea\x69\x6d\x7a\xd3\x5a\x40\x7e\x7c\x49\x7b\x8c\x79\xb5\xf9\x9e\x2e\x05\xe8\x87\x34\x00\x10\x3a\x90\xb8\xa5\x10\x5a\x43\x34\xf5\x6d\x6c\xeb\xce\x50\x9b\x2c\x9f\xf6\x87\xc1\x20\x93\xb0\x74\xec\x88\xf1\xfb\x2f\x6f\x87\x24\xe5\x49\x08\xb0\x4c\x9d\xe1\x10\x64\x6e\x3c\x88\x03\xd3\xaa\x85\xd9\xaf\xac\x38\xd9\x97\xed\x3e\x5c\xe4\x7a\xe6\xaf\xe9\x14\xeb\x5f\x8c\xef\xf5\x39\x45\x29\x34\x49\x55\x9e\x97\x3d\x6f\x58\x97\xc6\xdb\xb7\xa0\x84\xdc\x85\xab\x68\x7f\xab\x59\xaf\xdd\xdc\xd3\x1e\x2b\x71\xa3\xc1\x23\x13\x6c\x12\x94\x04\xf8\xd2\x52\xca\xc6\xfd\x55\x90\x34\xee\x17\xf9\x10\x01\x24\x6e\x9f\x4b\x10\x68\x92\x48\xae\x49\x79\x90\x1d\xcf\x22\xa7\xca\xde\xb8\xb0\x02\x6f\x21\x0c\x50\x5e\xf7\xf0\xed\x0b\x41\xa0\xdd\xd3\x79\x59\x0f\x73\x13\x73\x77\x58\xca\x5f\x23\xf1\x0a\xec\x15\xd9\x7e\x7d\xe6\x9b\x81\x5e\x3f\x43\xb5\x6a\x3a\xc5\xee\x11\xd4\xea\x2d\xf6\x7a\xe3\x8a\xc7\x30\x74\x5f\x5b\x69\x41\x14\x17\x50\x8f\xd9\x1e\x2d\x50\xe0\x3b\x91\x23\x5d\x4b\xdf\x73\xd5\x4d\xe8\xb3\xe7\x69\xcc\x32\xd7\x7b\x67\xc5\xe2\xa1\xc7\x85\x4a\xc4\xf4\xdc\xc4\xd7\x34\x6f\x46\xec\xee\x2a\x84\x60\x81\x70\x8d\xdf\x40\x1d\xc6\x59\x99\xc2\x2d\x02\xc3\xd1\x94\xf8\xcc\x51\x62\x10\x53\xa5\xae\x7f\x2f\x26\x1d\xe5\x2e\xb4\x45\x6d\x04\x41\x4c\x0a\xb5\xa4\x9e\xcf\x44\x74\xc7\xeb\x2d\xf7\x7b\x37\x95\xd2\x67\x7e\x45\x39\x7f\xa7\x4d\xee\x6e\xf0\xf8\x0b\x36\x41\xf0\x9a\xec\xc6\x23\x54\x88\xff\xda\x2a\xb5\xa5\x9e\xc7\x5a\xf0\xce\xbe\x97\x19\x86\xc4\x49\xe9\x60\x57\x40\xdb\xb3\x4a\x32\xbd\x01\x16\xdd\x82\x7a\x4e\x18\x32\xaa\x80\xd1\xf4\x9b\x87\xdb\x63\xa2\x6f\x17\x94\x65\xfb\x96\x0e\xbe\xee\x7c\x97\x5f\x08\x6a\x4f\xe6\x15\xa3\xa4\xeb\xeb\xf7\x17\x35\x89\xcd\x05\xd6\x2a\x92\xb1\x65\x39\x25\x0c\x9d\x6a\xc1\xec\x59\x04\xa5\x13\xb7\x49\x35\xff\x89\x00\x70\x01\x2a\x9e\x5e\xfb\x6c\x00\x35\x37\x15\xf4\x62\xd6\xd6\xaf\x22\x67\x49\x13\x32\xca\xe2\x7b\x3f\x0c\xa8\x41\x7a\x77\x52\x4e\x2a\xc9\x7d\xa6\x78\xea\x1f\x49\xbe\xc6\x06\x0f\xe4\x92\x48\xc3\xcc\x6f\xbe\x96\x3c\xac\xe1\xf9\x67\x1c\x0b\x96\x4d\xd4\xe4\x38\x7e\x20\x7b\xe8\x57\xd7\xbf\xa7\x66\x96\xc3\xe3\x6a\xad\x25\x30\x0d\x7c\xa1\x27\xde\x94\xe4\x3e\x7b\x91\x25\x6d\x45\x71\xf3\xad\x62\xf0\x0e\xfc\xaf\xb2\x24\x15\x37\x0e\xe7\xb1\x1d\x58\x08\x58\x11\x67\x9f\x4d\x13\x74\x6f\x65\xc9\xf3\x69\x13\x8d\xfb\x65\x50\x1e\xe7\xd8\x5a\xf1\xf3\xde\xb2\x4e\xaa\xfc\x31\xcb\x06\xc7\x9a\x45\x20\xc8\xc4\xaf\x5f\x9b\x1e\xea\xf2\x89\xaa\x7c\x5a\x62\xf7\x66\x5a\x4b\xb9\xb8\x2e\x6d\xd3\xbf\x66\x46\xdb\x3f\xcb\xee\x8e\x05\x0c\x32\x91\x41\x18\xb7\x18\xbe\xc2\x1c\xfd\x64\xb9\xfe\x91\x41\x1a\x1f\x3a\xd4\x26\x1f\x07\xb1\x0a\x7b\xbb\x0a\xa2\xa4\x23\x1c\xf9\x41\x30\x32\x81\x6d\x6c\x6f\xfb\x8d\xa0\xd6\xeb\xa7\x7c\xa6\xf2\x0d\x4d\x6a\xb0\x32\x17\x30\x8a\x1d\xf0\xa5\xe9\x53\x19\x21\xf5\x2a\x29\x7e\x46\x83\x6a\x26\x34\x50\x51\x90\x58\xc5\xc1\x9a\xdf\xdb\xb6\x01\xf1\xbb\x5d\x6f\x79\x86\xd5\x67\x63\x28\xfa\x5a\xd6\x12\x61\x1c\x82\xf7\x6c\x72\xe8\xfb\x8b\xca\xd8\x63\xca\x7f\x56\x2d\x2a\x49\xaf\x3d\x32\xfc\x0f\x1e\x25\x36\x18\x14\xf7\xef\x82\xe4\x0a\x09\xb7\x25\xeb\xd8\xe1\x80\x50\xa0\xdc\xd6\x6a\xe6\xbd\xbc\xfe\x86\x2c\xcf\x86\x11\x00\xc0\xa9\x22\x5b\x1e\x3a\x03\xae\x5b\xe2\x72\x6b\xa1\x3f\xb9\x15\x34\x83\x87\x9a\xff\x03\xe6\xf5\xb5\xe4\x01\xa4\xbe\x80\xa9\xeb\xeb\xd9\xfd\xc9\x70\x7a\x9b\x3b\xbc\x84\x7a\xfb\xde\x3f\x9f\x31\xb1\xb9\xcb\x6f\xa3\xa4\x64\xa1\x2e\x9d\xef\x32\x64\x30\xc8\x72\x89\xc0\x89\x4d\x14\x00\xbe\x1a\x01\x28\xba\xb8\xac\xa4\x46\xa8\xf6\xb3\xb9\xf7\x1d\x89\xbb\x9d\x08\x00\x40\x30\x8d\xf2\x2b\x7f\x53\x44\x97\x44\xa0\x9b\xa8\x0a\x1e\xc1\xb4\xb2\xe8\xf8\xf2\xa4\x88\x21\x89\x46\xef\x8b\x30\xd6\x53\xfe\xf5\xd3\xcb\x00\xb0\xb7\x34\xbe\x30\x5d\x36\x75\xbe\xac\x8d\xdd\xa0\x59\xb2\x58\xc0\x48\x15\x41\x3a\xa9\xb6\x91\xf7\x45\xb7\x0d\xe4\xaa\xfe\x63\x43\x9d\xb5\x9c\xd2\xc6\x3e\x30\x8b\x33\xd0\x10\x70\x12\x65\x4e\x32\xe6\x9a\xa7\xad\x15\xf0\xe3\xdf\x6f\x00\x00\x40\x06\xe1\x68\x54\xf6\xb4\xed\x62\xac\xd5\x9d\x40\x39\x76\xbb\xdd\x93\x6c\x13\x0b\x0e\xe5\x95\x27\xd1\xc6\xc8\x4b\xfb\x9f\x71\x3c\xb2\x77\xce\x29\x68\xc9\x72\x69\x14\xdf\xb1\xfb\x2e\x09\x90\x8d\x5b\x95\x2d\x09\xf3\x2e\x87\xc4\x4c\x75\x8e\x8a\x16\x27\x9e\x81\x0d\x64\x40\x30\x92\x30\x54\x39\x42\x59\x9d\x37\xbd\xaa\x62\xe5\xc3\xbf\xcd\x66\x15\x29\x2b\xda\xfb\x6a\xc9\xd3\xc7\xde\x5b\x39\xbe\x7b\x4d\x39\xb5\x7a\x41\xc4\xd2\x40\x20\xfc\x0f\x13\x5d\xeb\xf9\xe1\x3b\x60\xe1\x35\x6f\x5a\x7f\xc3\x3f\x4e\xf6\x55\xf5\x83\x05\x75\x88\xae\x81\x6d\x81\x71\x9b\xe1\xab\x69\x13\x27\x4a\x00\xb0\x34\x3b\x76\x2f\x80\x20\xb2\x6f\xd5\x9b\xdf\x9a\xb0\x82\x33\xc1\xf0\x33\x70\x75\xeb\xbb\x5a\xff\xd1\xa9\x5f\xab\x2f\x3c\x41\x09\xf0\xe0\xc9\x90\x0b\x22\xa3\xc5\xde\xe6\x0c\xec\x89\x40\x23\x81\xa7\x8e\x76\x78\x40\xd5\x31\x52\x0a\x66\x5e\x48\x15\x5b\x5f\xb2\x61\x10\x6f\x68\x67\xed\xb8\x2d\xde\x22\xbc\x43\xa0\xd4\x02\xc2\x0b\xdb\x18\x6d\xaa\xfb\x1e\xfe\x83\xee\x93\x20\xc2\x9a\xdb\xca\xb2\xb5\x45\x13\x0c\x97\x11\x25\x84\xd5\xba\xfc\x3b\x06\xcb\x81\x2f\xc6\xb1\xb7\x76\x94\x87\xee\xa5\x54\xa9\x14\x6f\x32\x87\xc1\x5d\x79\xc3\xcb\x6c\xc9\x98\xa3\x6b\x86\x53\x9c\xf0\x84\xd8\x40\xfa\xff\xc2\x3e\xf3\xab\x43\xc6\x49\x27\x35\x10\xc2\xd0\xd6\xf6\x9b\xee\x8f\x96\x76\xc6\x5e\xc5\x9b\x24\xdc\x0c\x68\x65\xbd\x09\x07\xb7\x6d\x4a\x42\xd4\xc1\x27\xec\x04\x62\x62\xa7\x1d\x08\xa2\x18\xd7\x15\x0d\xdd\x3e\x05\xd7\x2b\xf2\x5b\xf5\x12\x20\x80\x77\x4b\x96\xcb\x5e\x16\x82\xa7\x97\x3a\x4f\xf5\xf0\xc6\x24\x41\x62\xb4\x0a\x64\x20\x68\xa0\x62\x82\xe7\x9d\x31\x08\xe0\x3c\xac\x44\x3f\x19\xe1\x88\x69\xad\x37\xe5\x41\xf2\xea\xfe\x10\xf3\xa8\xc9\xe5\xee\xea\x4d\x49\xae\x26\x25\x00\x72\xfd\x87\x5a\xdc\xc0\xf0\x37\x63\x1f\xdb\x3d\x29\xdb\x03\x4a\x29\x4c\xaa\xb6\x3f\x38\x6c\x2d\x1a\x2b\xf0\x3e\x33\x02\x98\xe5\x2d\x73\x0a\x1e\x7a\x92\xe7\x67\xcb\xa8\xc4\x07\xdb\xe5\x59\xe1\x37\x01\xbf\x44\x01\x08\x92\x0b\xeb\xf3\x1b\xc0\x76\x48\x4d\x9b\xdf\xaf\x81\x17\x33\x7e\x20\x49\xb4\x1d\xd7\x1d\xdf\x88\xff\x59\x0c\xe0\xeb\xc8\x21\x03\xb0\x9a\x01\x9b\x5e\x54\x6d\xd1\x9f\xcd\x1f\x6f\x2f\xb8\xf5\x1a\x85\x52\xce\xce\xd3\xc8\xf5\x10\x65\x8b\xf9\x94\x6d\xee\x1e\xcb\x5e\xdf\x15\xde\x77\xca\x1b\xb0\x6b\xc5\x29\x37\xd1\x4b\xc3\xcc\x77\x29\x27\x7e\x4b\x8f\x62\x15\x5a\x89\xd5\x66\x42\xd5\x13\xce\x82\xbf\x83\x63\x18\xad\xae\x8b\x21\xf7\xee\xef\x2c\xb9\x40\xb7\xea\xf8\x28\xa8\x8d\x11\x0a\x78\x6f\x0a\x20\xcd\xbd\x9b\x56\x1c\xec\xb7\x16\x23\xbb\xc3\x3d\x41\x00\xca\x5c\xf4\xa6\x87\xa3\x29\x71\xd9\xa0\xc8\xae\x3f\xca\xa8\x90\xe4\xbf\x46\x88\x61\x2c\xc9\x11\xd1\x10\x1e\xd5\x52\x76\xd1\x24\xb1\x1f\xa3\x10\xc6\xd7\x44\xd9\x5c\x55\x43\xbb\xea\x40\xca\xf7\xa2\xde\x36\xd8\xed\x94\x46\x40\x9e\xc8\xbf\xda\xbe\x3d\x63\xae\x59\xda\x57\x6e\xad\x22\x3b\x7b\x12\x1c\xf9\x8c\x3d\x81\x25\x7e\x87\x25\x83\x0b\x65\x4f\xc5\x07\xdf\xf8\xb3\xc2\xd5\x12\x33\xa1\x08\xd8\xba\xa8\x7c\x82\x19\xc9\xb3\x06\x62\x00\x9b\x31\x9f\x87\x09\x27\x46\x21\x93\x2d\xd0\x3c\x5f\xf1\xa7\x99\x55\xc8\x5b\x0e\x80\xfe\x57\x3f\xd6\x17\x30\x7c\x17\x5b\x68\x08\x7b\x86\xab\x5e\x3f\x59\xfa\x92\x22\x45\xc1\x71\x8c\xc2\x4f\x06\x16\x17\xd3\x7d\x9e\xf4\xa0\x7f\x28\x3a\xd8\x86\x0d\x30\x9f\xb1\x60\x5f\xd8\x3f\x92\x82\x41\x12\x01\xdf\x06\x40\x0a\xfd\x1d\x9a\x40\xd3\xf9\x1a\x47\x4d\xa5\x67\xa0\xe4\x01\xc4\xd5\x00\xc8\x1d\x81\x09\xf7\x48\xac\xeb\xf8\x8d\x6e\xdf\x37\xdc\x3b\x77\x13\xa6\x2a\xde\xdc\x0c\xc3\x6c\x21\x67\xd7\x14\x8f\x07\x96\xfd\xcd\x44\x6e\x45\x53\x82\xc0\xe8\x42\x2d\x6a\x02\xd0\xff\x7e\x71\x01\x51\x41\x48\x79\xc7\xb1\x93\x1c\x59\x92\xa8\x40\x39\xb6\x3f\x15\xa1\x89\xf2\x6b\x44\x4e\xbd\xd8\x88\xa0\xe8\x16\x00\x30\x39\x5c\x6f\xd9\x8f\x40\x9f\x06\xfc\x36\xf7\x1e\xa3\xf0\xd3\x86\xe1\xd9\x4e\x59\x5c\x1a\x2d\xf7\x3e\xc4\xec\x69\x99\x91\xdf\x48\x03\x53\xb8\x08\xd8\x7a\xa5\x93\x28\x11\xb6\x66\x1f\x4a\xc1\x51\xaf\xd6\x9a\x80\xde\x57\x25\xfa\xf1\x19\x8b\x20\x98\x91\x12\x63\x93\x6a\xc6\xdd\x02\x50\xfe\xc5\x0e\xbd\xc4\x2d\x07\xb5\x7f\x24\x1f\xf5\x2c\xb7\xf6\xf7\x8a\x3d\xa6\xf9\xef\x64\x24\xec\xf2\x96\x19\x25\x3e\x87\x3f\x59\x1a\x96\xff\x88\x28\x80\xbc\x4e\x41\x3c\x6c\x30\x64\xd4\xdb\x2f\x59\xa1\xe9\x39\xa7\x49\xe9\x63\x89\x67\x35\xe1\x81\xc3\xe6\x2d\xef\x6f\x64\x79\x3e\xbf\xc4\x08\xfd\x30\x02\xa4\x28\x1b\xb8\x00\x60\xc6\x5b\xd8\xf1\xd2\xb9\xf7\x3a\xb8\x24\x6c\x37\x9b\xfb\xee\x85\x1a\x44\xd7\xc0\xde\x1a\xb3\xfd\xec\xd9\xf5\xa1\xaa\xfc\x8b\xf6\x5c\x24\x34\xd0\xe0\xbd\x50\x5c\x66\xc1\x71\xa3\xac\xb4\xd9\xd8\x34\x2f\xb8\xb2\xe4\xf8\xfe\x3e\x85\xb6\x36\x31\xf2\x31\x8a\xed\xf8\x7d\x78\x9f\x26\x14\x45\xfc\x11\x22\x55\x07\x99\x03\x4c\x5c\xd9\xe7\x89\x28\xf6\xb9\x2f\xaa\x96\xb6\xd0\xa8\x84\x33\xb1\x14\x3a\x29\x82\xed\xc1\x67\xe4\x6b\x1e\xad\xad\xd1\xfe\xa4\x5e\x31\xe0\x2e\x1f\x40\x11\x5f\x0a\x66\x4e\xf2\xeb\xb6\x5e\x0e\x88\x7a\xf4\x79\x5a\x4c\x7a\x8a\xc5\xd7\xb9\x6b\x45\xb3\xd1\xfd\xe7\x21\x8d\xe5\xdd\xeb\xb3\x3a\xb0\x32\xa3\x65\x5a\x6e\x58\x01\x0c\x20\x46\x37\x03\xf2\x0d\xc0\x2b\x60\x06\x57\xd7\x1f\x33\x9a\x79\x6f\xaa\xb1\x86\x1b\xd3\x7a\x54\x15\x04\xf0\xf4\x9b\x39\xb6\x3a\x99\x3c\x0c\x71\x34\x25\xce\xa3\xe4\x03\xa0\x81\x8a\xa9\xf5\xc7\x44\x5d\x35\x99\x0e\x90\xf3\xda\x9e\x4b\x16\xdf\x80\xae\xa3\x84\x0f\xf1\x9c\xfe\xfd\x66\x9d\xdf\x0c\xda\x82\x8c\x5e\xf2\x68\x92\x29\x12\x68\x30\x00\x32\xc5\x04\x4e\x06\x94\xd0\x46\xfa\x95\xd1\xcc\x53\x13\xee\x2d\xdf\x1e\xab\x2c\xc3\xa3\x97\x9a\x81\x46\x4e\xb1\x87\xad\x15\x31\xf7\x83\xc9\xe4\x66\x8f\xfe\x07\xb1\x97\xd4\x38\x1b\x0f\x58\x91\x8d\x37\x96\xf8\x73\x45\xe4\xcb\x9c\x1c\xd3\xda\x8e\xac\x16\x68\xad\x33\x74\x4a\x7b\xf3\x3b\x37\xc8\x74\x33\x1f\x9a\xc0\x96\x2b\x03\x48\xc9\xdd\xa0\x98\x9e\xe0\x80\x81\x26\x4b\xc8\x06\x2e\x9f\xf6\x73\xd6\x20\x3c\xb4\xf1\x87\x82\x65\xff\x5b\x9b\x83\xdb\xa2\x47\xf6\x78\x68\x69\x20\x9e\x40\x06\xb6\x3e\x20\xaf\x1b\x7b\x5e\x7c\x97\x61\x27\xe5\xcb\xbc\xb8\x1f\xd8\x34\x3a\xc6\x75\x28\xfa\x5c\xd5\x86\xd6\xe2\xee\x8b\x3e\xb6\x07\xad\xb2\x68\xbf\x33\x31\x0f\x5f\x91\x3f\x8a\x8d\x14\x30\xd3\xc6\xad\x5e\x9d\x21\x30\x91\x98\x7b\xd1\x48\xfb\x49\xb1\x9a\xd9\x97\xc8\x2a\xa2\xaf\xf7\xc4\x56\xf2\xb6\xc4\x23\x75\xbd\x4d\xa7\x3a\x8e\x3e\xbb\x8e\x48\x86\x18\x05\xff\xf3\x29\xe6\x49\xe6\xa3\x8f\xa7\x4b\x0e\xb3\x27\xb4\x86\x53\xea\xfb\xdf\xd9\xd9\x93\xb1\x2f\x09\xd2\xe4\x71\x5f\xd7\x32\xb2\x83\xd1\x27\xa0\x5c\x23\xa8\x62\x1c\x10\x3a\xb2\xf5\x3e\x30\xb6\x13\x01\x98\x88\x84\xe5\xfb\x57\xce\xdd\xa4\xa7\xe0\xbd\xb2\x7c\x41\x07\x03\x80\x6a\xd4\xd2\xbb\xb2\x9d\xb6\xdb\xa1\x98\xbb\x3a\x5e\x9a\x7e\xd0\x7f\xf1\x9e\xeb\x7b\xf5\x8c\xbf\x5b\x5e\xbc\x31\x5f\xe0\xcd\x78\xe6\xad\xfc\x5b\x52\xef\x98\xd6\x15\xa1\xc0\x3f\xe9\xb6\x38\x2a\xaf\x9e\xa4\xb0\x8c\x54\xd0\xad\x3e\x39\xcd\xc7\x35\xd9\x6c\x06\x3e\x8c\x51\xf0\x70\x5d\x1e\x2e\x7f\xf1\xbe\x3c\xe8\xfe\xc6\xfb\xab\x5f\xe5\x62\x22\x13\x07\x98\xe2\xa9\x77\x84\x84\x73\xd6\x4c\xb8\x47\x68\xd8\x8d\x5d\x3a\x4f\xe5\x07\xbe\xb0\x10\xad\xcd\xc6\x6f\xac\xf9\x71\xfa\x58\x38\xce\x86\x76\x2a\x95\xe8\xa0\xc5\xfb\xf2\xcf\xfd\xed\x25\x8b\xef\x35\x34\x50\x91\x2e\xba\x81\x12\xde\x42\x5d\x0e\xfe\x69\xdf\xa7\xa7\xb1\x65\xd4\xab\x4d\x80\x2d\xab\x6b\x85\xce\x8f\x69\x7d\x88\xaa\x65\x7e\x2c\xa1\x6f\x83\x99\xec\x62\xba\x25\x00\xac\xdd\x65\x9f\xbd\x26\x90\xa7\x50\xfe\x85\x60\x85\x00\x26\x8d\x1e\x00\xa0\x98\x01\x00\xdb\xb7\x23\xc1\xd9\xe7\x59\x8f\x25\x82\x8a\x1d\x20\x17\xea\x6f\x39\x36\xa9\x37\xf0\xe3\xcc\x93\x6c\x35\x22\xc1\x6a\xc2\x86\xbd\x5e\xc5\x50\x08\x0d\xad\xf9\x7d\x52\x7a\x56\x43\x89\x2a\x04\x0e\x75\x79\x4a\x4f\x50\xd9\x4a\xd2\x3e\x22\x82\x29\x04\xd2\xbd\xc2\xb2\x53\x02\xdb\x16\xc6\xa6\x5e\x44\x72\xa2\xdf\x96\x6b\xcd\x5a\x8d\x2d\xb1\x0a\x4b\x5c\x37\x3d\x8b\xb8\xf4\x61\x2e\x72\xa2\x07\x3e\x6c\x53\xfa\x13\xa9\xbf\x01\x8d\x8b\x3b\x2a\xe7\x00\xa1\x9f\x40\x80\xba\xad\xaa\xe4\x00\xc1\x0a\x1b\xda\x89\xfd\x7e\x32\xb7\xd6\xe1\xaa\xd8\x89\x4a\xdc\xc7\x0a\x0f\x94\xce\x9e\x67\xf7\x49\xa7\xd7\x53\x51\x54\xb4\x0f\xe7\x91\xbc\x0c\xc7\xfb\x80\xff\x26\xce\x38\x8c\x18\x00\xf0\xf6\x51\x74\x9b\x78\xf9\xc9\x0b\xfd\x9e\x8a\x6c\xb3\x7d\x02\xee\x9d\x4b\xef\x90\x28\x5a\xf3\x7b\x15\x7f\x97\xac\x87\x2e\x97\x9e\xe5\xe0\xa5\x49\x7f\x03\x40\xaa\x0b\x00\x50\x60\x93\xf7\xbf\x62\xad\x62\x19\x89\x11\xab\x33\x04\xed\x2d\x29\x79\xd6\xdf\xec\xcf\x93\xe8\x43\xc5\x77\x6e\x85\xec\xa0\xa8\x4c\xdc\x75\xdb\x51\x35\x4e\x7d\xf2\xc8\x42\xed\x91\xb0\x50\x54\xc0\x01\xfb\x7f\x53\x28\xbc\x3f\xaa\xfb\xdd\x30\x3d\x21\x40\x26\x8f\xd2\x1a\x4c\xb7\xf8\xa4\xc8\x26\xd4\x17\x27\x3f\xd8\x45\x82\x78\x35\x60\x72\xbb\xb5\x17\x41\x2b\x6e\x50\x4d\x0b\x04\xe0\x00\xfc\xab\xe6\xe7\x87\xed\x5f\x8f\x23\xf1\x01\x20\xc1\xef\x52\xa2\x9d\x8c\x00\x40\xfd\x22\x32\xf2\x54\x3c\x01\xab\x02\x26\x68\xc0\x7e\x77\xc1\xc8\xde\xb6\x5f\xf7\x07\x27\x29\x7c\x3c\x09\x9a\x88\x0f\xca\xdc\x49\x31\xe2\xae\xd1\xca\xca\x39\x95\x15\x88\x99\x5f\x5c\xff\x9d\x41\xfb\xee\x7f\xaa\x92\x9d\xef\x5f\xd8\x13\x3f\x39\xef\x79\x33\x8b\x5f\xa8\x1b\x59\xf0\x49\x47\x57\x0d\x32\xca\x75\x92\xc4\x84\x2a\x4e\xec\xb8\xf8\x62\x37\x88\xb9\x8c\xe1\xd8\x8f\x14\x8e\x13\x10\x7a\xf9\xb0\x7f\x10\xda\x84\xf1\x7e\xa2\x5e\xc5\xa3\xa2\x5c\x03\x50\x9e\x74\xbc\xbd\x07\x5e\x87\x45\x41\xe0\xef\xec\xb7\x05\xf9\x95\xf9\xaa\x9e\xe0\x03\x40\x3a\xda\xfa\x75\x9e\xa0\x82\xbd\x96\xdd\xf6\x9d\xe9\x24\xfe\xbf\x83\xb2\x11\x52\x14\xfc\x4f\x22\x1a\x9d\x40\xad\xf4\xe7\x3b\x77\x4f\x7e\x11\xbe\x5a\xed\x9d\xed\x94\x46\x75\x4a\x7f\x7c\x22\x7c\x57\x7a\xa0\x1b\x8d\xca\x7f\xf7\x30\x7e\x59\x26\x80\xf9\xfb\x9f\x9a\xa8\xb4\x66\x86\xd9\x5d\x16\x18\x6e\x70\x2f\x1b\x83\xf1\xda\x1c\xd2\x4d\x60\xc8\xd3\x03\x00\x46\x66\x48\x4f\x37\xe2\x8a\x4e\xd4\x59\x92\xd8\xe4\xd1\xe7\x26\x69\xfd\x0a\x05\xfb\xf3\x39\x42\x66\x08\x18\x80\xb1\x7f\x75\x80\x9c\x59\x16\x94\x54\x26\x75\xd0\x4e\x0e\xb6\x07\x3c\x70\x8a\x7c\x4d\x87\x22\x60\xe6\x9a\x32\x29\x5f\xd6\x3e\x0b\x15\x42\xbf\xf3\x3e\x10\xc7\xfd\x1a\xf6\x52\x50\x23\x9f\x10\x55\x21\x6e\x2f\x38\x23\xe2\x7b\x58\xbb\x9d\x4e\xf6\xbf\xee\x56\xb8\xe5\x53\x89\xd6\x42\x99\x4d\xfb\x4f\xdc\xd3\x1a\xde\xe3\xc2\xf4\xef\x87\x03\x6f\x69\x4d\x70\x20\xed\xd0\x79\x30\x69\x0b\x90\x22\x37\x37\x55\xdf\x32\x36\xa1\xcd\x99\x16\xf7\xe7\x6c\x4a\x8a\x12\x92\x81\x4e\x90\x41\x38\x72\xd5\x92\xe7\xeb\x75\xac\x85\x74\x18\x52\x56\x34\x91\xff\xe7\x46\x19\xd3\x5f\x9f\x84\x9c\x85\x0a\x8f\x3c\x4e\x97\x32\x4a\x4e\x14\x7a\xcc\xa8\x18\xd2\x75\xe9\xf1\x44\xde\xd2\xc1\xa1\xa1\xb5\x3d\x45\x91\x0a\x43\xb7\x12\x2d\x6a\x98\xd1\x18\xf4\xe9\x1f\xab\x4a\x1c\xea\x35\x5a\x7c\x14\xe3\x34\x46\x91\x19\x13\xac\xd8\x02\x00\x72\x8b\x4f\xa0\x3c\x72\x10\x98\x49\x2d\xbb\x10\xe8\x48\x27\x69\xce\x3d\x62\x7c\x20\xfb\x70\xad\x39\x1d\xfd\x2e\x77\xd8\x21\x7e\xce\x56\xb5\x26\x30\x22\x64\xa8\xe5\xa0\xec\x7f\xa6\x60\x26\x4c\xf8\x02\xf2\x92\x46\xde\xbd\x5c\xd1\x3c\xc9\x52\x54\x15\x19\xf0\x6a\x0a\x63\x34\x58\x9b\x30\x41\xb3\x92\x41\x7d\x9f\xd0\xc1\x43\xd7\x4b\xe9\xe7\x71\x85\x0f\x47\x71\xf7\x06\xdb\x1e\x66\xcf\x7b\x86\xd9\xb5\xcb\x59\x58\x27\x56\x7f\x5d\xb1\xec\xdf\xaa\xf4\xdd\xa5\x15\x4c\x4a\xb4\x87\x43\x51\xb1\xf6\x01\xab\x2f\xdd\xbd\xc3\x18\x11\x76\x32\x26\x5b\x06\xb9\x3f\x3e\x9c\xab\x93\xe7\x0a\xd9\xe5\x33\x52\xf1\x99\x08\xbe\xb5\xd7\xe2\x0f\x37\xa9\x5a\x3a\x86\x00\xff\x91\x5d\x27\xa4\xe4\x21\x92\x1d\x8e\x09\x6f\x80\x00\x6c\x78\xa1\xf1\x3d\x3f\x07\x33\x9b\x7c\x13\x8e\xeb\x84\xe3\x5e\xc5\x04\xbd\x44\x52\x02\x30\xde\x4c\x4a\x98\x94\x4b\x5a\xc0\xf4\xd8\x27\x0b\xee\x2d\x89\x9b\x0f\x35\xf7\x55\x97\x65\x02\x7e\x95\x6a\x2e\x34\xb7\x8a\x53\x28\x04\xb5\xb2\xc1\xc3\x6a\xa8\xc3\x2d\x41\x3f\x20\x6b\x86\x11\xbb\x14\xe6\x18\x08\x02\x00\x39\x25\x68\xd0\x9f\x4f\xef\x79\x15\xda\x19\x6d\x76\x32\x5b\x26\xd4\x29\xaa\x4a\x2b\x45\xb3\x32\x00\x00\x30\x41\xaf\x2b\xa6\x2d\x72\xd5\x68\xcd\x4e\x5d\x59\xd6\xc4\x90\x02\xa8\x26\x2c\x18\x44\x18\x4b\xbd\xd6\x4a\x76\x6b\xbd\xe3\x51\x10\x14\xaa\x6c\xa1\xca\xf7\xb9\x27\x06\xdd\x54\xf3\xe3\xfc\xd5\x7c\x63\xbe\x50\xa1\xb5\x57\x58\x39\x16\x7e\x6a\x36\x1a\x97\x0c\x3c\x94\x4d\xa1\xba\x83\xab\x79\x43\x13\xe3\xa0\xbf\x16\x11\xd2\x11\xd9\x47\xe5\x7f\x6b\x33\x7a\xff\xaf\xab\x68\xf0\x56\xc2\xd8\xb1\xb5\x4d\xcd\x85\xa6\x56\x40\x2d\x3a\xfb\xf7\x22\xad\xca\xcd\x33\xf3\x3b\x2b\x97\x73\xa2\x91\xd9\x67\x12\x76\x41\x18\x24\xbd\x0b\x61\xba\xd9\x8c\xd8\x36\xa7\x52\x01\x18\xf5\xd1\xfc\xfa\x96\xd6\xd8\xe6\x5e\x68\xab\x72\x23\xb0\xc4\xe0\xe7\xd9\xa3\x14\x16\x76\x96\x22\x8e\x47\xfb\x97\x6d\xad\x6a\xaa\x89\x70\xcc\x71\x3f\x93\x77\xd5\x6d\x51\x76\x12\xfe\x68\x2b\xde\xc9\xa2\xc7\x32\x53\xd5\x05\x36\x02\xb6\x6e\x10\x3a\x44\xba\x2a\x4a\x62\x9c\xf2\xc8\x76\x7b\xd3\x85\xfe\xe7\x62\xf3\xf4\xd2\xa0\x77\x93\x22\x4c\x6c\xad\x62\xe0\x8d\x3e\x1b\x19\x75\x4e\x3a\xb6\x26\x2e\xa0\x60\xb1\x55\xe3\xc3\xdc\xd2\x48\xc3\x6f\x6b\xa9\xea\xb8\xdb\xbc\xc3\xde\xf9\x24\x3b\x4f\xac\x19\x8b\x25\xa4\x95\x9a\xea\xe3\xfa\xa5\xe9\x94\xbf\x26\xf0\xdc\x1b\xb0\x74\x3e\x48\xa6\x22\x02\xda\xdb\xf1\x03\x46\x4f\xc5\x1d\x11\x75\xaf\x50\x76\xd7\xe1\x71\xaf\xb1\x03\xb9\xdc\x54\x76\xa5\x25\x99\x7a\x29\xc5\x5b\x5a\x4c\x8a\x14\xda\xd7\x37\x4d\x7b\x1c\x3d\xfc\xc9\x31\xa8\xcb\x86\xf9\xff\x59\x13\x4e\xb2\xb9\x1a\x75\xf5\x38\xdb\x73\x6f\xa5\xf5\x71\xe0\x88\x7d\x1f\x03\x5e\x7d\x29\xfd\x9c\x00\x5f\xfe\xc1\x46\x73\xcb\x7e\x60\x53\x8b\xa1\x53\x5d\x5d\xd8\xc1\x94\xf6\xe8\xe2\x42\xaf\xf7\xfc\x86\x62\xf9\xf2\x94\x94\x80\x49\x25\x5d\xaf\xb3\x81\x44\xeb\x1c\x51\xa4\x69\xad\x3f\xff\x9a\xbf\x83\x01\x86\x8e\x8f\x09\x00\x70\x1a\xd3\xc7\xc2\x34\xa5\xde\x80\x16\xd8\x6a\x26\xdf\x2c\xa9\x69\x5b\x09\x93\x01\x23\x4a\x84\x84\xdb\xfb\xd8\xfa\x93\xd8\x71\xfa\xb8\xba\x12\x73\xec\xba\x9d\xa8\x77\xf3\x2d\xde\x97\x50\x7c\x10\x04\x39\x46\x49\x0f\xfe\xcb\xb0\x24\xc6\xb3\xfb\x08\x2a\x06\x5e\x75\x62\xc8\xca\xdb\x17\x49\x29\xde\xcd\xea\x91\xe0\x82\xfc\xe5\xc0\x78\xf6\x60\x0c\xea\x1f\x24\x2d\x95\x01\x20\xbc\x9a\x45\xe0\x25\x6d\xbb\x36\xf6\x0f\xc8\x5d\x4e\x7c\xa3\xed\x4d\xb1\xd0\xce\xad\x90\x63\xa3\x3e\xc4\x91\xdc\x7e\x92\x04\x52\xfb\xbd\xd2\x4f\xe3\x7b\xb4\xe3\xb7\xff\x9e\x6f\x7e\x9c\x50\x54\x14\x23\x37\xa2\x3a\xd8\x89\x9f\x11\xf6\x98\x85\x17\x1d\xee\xaf\x09\xfc\x92\xbd\x6a\x1e\x39\xfa\x6d\xf6\xe0\x6a\x71\x07\xb2\xd4\x04\xb2\x7d\x8e\xc6\x76\xb5\x64\xeb\x70\xc6\x72\x87\x0c\x19\xd2\x8b\x27\xb4\xcb\x0a\x03\x29\x63\x5a\x7f\x9c\x86\x28\xbc\xdf\x06\xb5\xd4\x58\x17\x61\x33\xff\x19\x42\x4e\x15\x11\xbc\xe6\x61\x2b\x67\xf9\xfe\xe5\x7f\xb5\x43\x42\x51\xf5\x14\xf0\x41\x2c\xa7\x14\x0a\x60\x84\x62\x9a\x28\xc2\x6b\x01\x0b\x16\x79\x2a\xab\x73\x67\xc3\x85\x69\xe0\x7d\x00\xf8\xd8\x01\x80\xe4\xad\x46\xc8\x16\x56\x0b\x28\x45\x61\x6c\x22\xd8\xd0\xe9\x5d\xee\x88\xcd\x33\xd1\xaa\x43\x35\x28\x76\xe6\x1e\xa8\xa5\xc1\x84\x43\xe7\x45\xda\xfe\xe1\x46\x33\x7e\x1e\xaf\xe2\x42\x07\x35\x18\x1a\x98\x92\x44\x46\x0c\x1b\xc4\x0d\x7d\xba\x5c\x0f\x0d\xf5\x02\xf9\xc8\x51\x80\x8e\x57\x11\x8e\x81\xc6\xd6\x67\x59\x21\x12\x07\x27\x87\x89\xa7\x96\x8b\x57\x58\x03\xe5\x00\xe5\x28\x01\x8c\xc6\xfb\x0d\xe8\x3b\x7b\x7d\x9e\x9c\x77\x46\x49\x2c\x6f\x2a\x6f\x91\x16\x78\xcd\x31\xbc\xd0\xb9\xd1\xa8\x3a\x2e\x59\x5a\xb6\xe0\xdf\x46\x0b\x56\xa4\xfc\xcb\xdd\x36\x59\x62\x14\x3c\x6f\xeb\xbf\x16\x34\x75\x18\x7c\xe1\xf7\x43\x46\x91\x30\xfc\xe9\xdf\x7a\x28\x14\x2e\x46\x01\xe7\x82\x1a\x6c\x1b\xef\x7f\x09\x59\xfe\x62\xe4\xe1\xbf\x5c\x48\x6b\x22\x1e\x2e\xd1\x4e\xf8\xaa\xe3\xeb\xe9\x41\xd3\x61\xcf\x23\xdf\x19\x52\x04\x36\x40\x0d\x10\x02\x7f\x00\xc4\x93\xff\xdf\x74\x83\xa3\x55\x7d\xec\x05\x6f\x7b\x5a\xf2\x1a\x8c\x39\xe6\xfa\x6e\xb2\x0f\xd7\x32\xa3\x80\x80\xa2\x50\xee\x5a\xfc\x03\xcc\xd9\xd2\xfe\x1c\xc6\x35\xf6\xb8\xc8\xe9\xc4\x22\x8c\x7d\xcb\x7a\xc1\x81\xab\x4d\x14\xea\xa2\x47\x7f\x3a\xa6\x6a\xb9\x73\x4b\xd6\x74\x88\x64\x9a\x5f\xfb\x2c\x9d\x4a\x7a\x2f\x48\x37\xaa\xfa\x46\x53\x2a\x34\x36\x3a\x36\x5c\xc8\xf5\xf0\x92\xc7\x72\x0a\x0b\xc6\x6b\xc9\xba\xb2\x2e\x29\x87\xd2\xe2\x6c\xb3\xbf\x89\xe5\x9c\xd9\x9d\x13\x5d\xc7\x72\x5b\x26\x2c\x84\x56\x26\x9c\xc7\x52\x68\xeb\x25\x15\x27\x76\x58\x76\x09\x71\x51\x8b\x7e\x18\xeb\x6c\x06\x20\x54\x88\xfa\xb1\x48\x51\xfe\x7c\x65\x71\x60\x60\xaa\x34\x99\xb8\x13\x24\x1f\x22\x3a\xc8\x00\x1b\x24\x86\xa6\x7b\x04\xfc\x95\x4d\x95\xb0\xee\x5e\x36\xbb\xb2\x5a\x15\xa3\xf9\x92\x48\x01\x98\x31\x43\x7a\x4e\x40\x28\x4d\xa5\x25\x83\xf2\x38\xc5\x25\x2d\xed\x99\x0f\x1f\x1f\x29\x06\xf2\xc8\xe3\xc7\xff\x36\x32\xb0\xb1\x4d\xca\xfb\x53\x52\x48\x25\x84\x27\x02\x19\xeb\xf3\xcb\x84\x22\xa2\x28\x25\xb5\xdb\x46\x27\xed\xcf\x2e\x57\xaf\x07\xa0\x01\xb7\x97\x87\x91\x0c\x10\xf4\x47\xbc\x5f\x91\x6a\x0c\xb4\xb4\x36\x45\x0f\xdb\xcb\xc9\x45\x5a\xfe\xb1\x89\x44\xa0\x20\xc6\x20\x30\x6b\x8a\x26\x64\x22\x9d\x14\xbf\x7c\x85\x91\x2c\xea\x8b\xb2\x50\x7a\xbd\xd1\xb8\xa3\xef\xad\xe9\xea\x74\x19\x7f\xf5\x8f\x4d\x3a\x36\x1e\xfc\xbc\x4a\x6d\xc1\x2b\x22\x09\x43\x9b\xfb\x2f\x44\x53\xc9\x69\xaf\xc3\xac\x91\x8e\x4f\xec\xaf\xb0\x53\x6e\x3d\x9f\x06\x32\x46\x9b\x5c\x75\x99\xe9\xed\xb8\xa0\xcc\xcd\x3c\xef\xae\x5e\xf8\xe6\xe1\x34\x4b\xc8\x1f\xea\xdc\x7d\x52\x5b\x47\x65\x29\x7a\x2e\x29\xb6\x44\xe6\x99\x3a\x84\xcf\x46\x19\x81\x56\x87\xbf\xa6\xa2\x42\x3a\x0c\xe5\xdb\xf5\x6d\x6d\x74\xce\x50\x9b\x43\x55\xc6\xe7\x16\x9f\x15\xde\x53\x82\x5a\xaa\x4c\x8a\xa6\x09\x6a\xd5\xcb\xf4\x3a\xa2\x4b\xf0\x1f\xf7\xc6\xe8\x64\xe6\x59\x3c\xd1\xe6\x84\xf2\x72\xbd\xf4\xf0\x3f\x99\x5a\x5b\x6a\xce\xf6\x5c\x10\x79\x38\xfc\x9e\x98\x73\xa8\x19\x26\x0b\xef\xf5\x64\xf9\xc9\xf2\x89\x00\x6d\x70\x27\x16\xe2\x47\xb3\x78\x2f\x3f\x10\x01\x00\x94\x45\x86\x16\x69\x50\x56\x7d\x64\xff\x19\x9b\xe1\x87\x61\x15\x71\xc4\x7a\x84\x1a\xbf\x72\x19\xc5\xf3\x8d\xeb\x9c\xf8\xa7\xf5\x61\xa2\xc5\x7a\x48\x51\x6e\x93\x74\xca\x04\xf2\x4b\xa6\xc0\xf0\x37\x61\x4d\x12\xb6\x57\x5d\x19\x41\x5b\x45\x8f\x06\x3d\x1f\x46\x06\x60\xe0\xec\x02\x57\xd4\x52\x50\x9d\xb8\xe5\xfe\x2d\x3f\x9c\x1f\x88\x5a\x92\x62\x7d\x99\x4a\x2b\x22\x81\xf3\xc8\x9f\xdb\xb5\x0a\xfd\x48\x1e\x0f\x3b\xa8\x09\xcc\xbf\xfd\x8f\xb0\x3c\xbd\x8a\x0f\x4e\x88\xbd\x0e\x4a\x8f\x3a\x9f\xe9\xf3\xa0\x21\x6b\xbb\x5c\x88\xbe\x16\x88\x23\x75\x1d\xbb\xe4\xc5\x03\xb3\x7b\xf4\xc7\x63\xfc\x7d\x2a\xe7\x1e\xc6\x23\xa7\x92\x22\x7d\x98\xe7\x9d\x2a\x25\x4d\xac\x4d\x1f\x01\x6e\x4d\x74\x55\x4a\x1f\xbe\xe3\x45\x66\xbc\x8c\x2c\xbd\x89\x8c\xdc\x13\x58\xbc\x1a\xea\xea\xd4\x71\x2d\x3d\xf1\xea\x3e\xc1\x5c\x48\xb4\x3a\x1f\xb9\x6e\x47\x5a\x0c\x1b\xe6\x34\x3a\x7f\x7c\xcb\xf8\xb2\xff\x70\x50\x97\xc7\x03\x0c\xac\x5c\x49\x92\x53\x8f\x96\x04\x7c\x3e\x01\xe1\x73\x28\xed\xcf\x79\xd0\x3c\xf1\xb3\x6f\xc9\x6d\xeb\x81\xa8\xb1\xf8\x72\xc7\x20\x60\xb3\xd6\xdb\x77\x65\x34\x5c\x73\x98\xbd\xfb\xbd\x08\xa2\xa4\xd7\x8e\x08\xff\xe8\x88\xea\xb1\x24\x56\x48\x54\xa2\x39\x02\x6d\xec\x23\xa2\x5f\x7f\xa2\x43\x86\x8c\xfd\x71\xc9\xfb\xcd\xf1\x83\x15\x66\xe9\x8d\xfe\xb5\x95\x22\xfa\xc7\x73\xe9\xbb\x9d\x2f\x3a\xc9\x98\xdd\x16\xfd\x1a\xa5\xed\x41\x2f\x22\x57\x7b\xa1\x81\x68\xa8\x1c\xc3\x8d\xdf\xf0\xda\x7d\x1a\xb6\x2b\x39\x18\x4a\x45\x82\x0f\xc8\x2d\xc7\x4b\xce\xb3\x13\xcd\x35\x5a\xc7\xea\xed\x66\x6e\x54\x05\x7f\xea\xc3\x15\xfa\xe4\x1a\x5a\xea\xea\xd5\xb4\xc2\x2a\xf8\x23\x59\x6f\x25\x3f\x73\x61\xa2\x61\x79\x91\x89\xe7\x85\xda\x56\x82\xae\xab\x29\xfd\xe9\xdb\x0f\x93\x69\xeb\x27\x91\xb5\x74\xd3\x20\xc4\x34\xd8\xd6\x6f\x5f\xfe\xa1\x7b\xfa\x63\xa5\xbf\xaa\x5b\xac\x7f\x29\xf4\x84\x17\x34\x92\x18\x24\xd0\x6f\xa6\x3c\x48\x48\xa3\x39\x08\x0f\xbd\x2f\x90\x92\x14\x8c\x5c\xce\xe1\x31\xe7\x71\xbc\xf4\x8d\x1f\xc8\x01\x28\x33\xe4\xa5\x17\x82\x29\x1a\x0f\x59\x61\xf0\x47\x9f\x9b\x40\x31\xfb\xdd\xb5\x95\xef\x6f\x8a\x79\x76\x6e\x13\x21\x10\x54\x41\x4a\xa9\x85\xd8\x46\x4e\x5c\x6e\xfc\xb8\x70\xc9\x3f\xab\x16\xcb\xba\x48\x84\xde\x7e\xf0\x91\x50\x8c\x77\x4a\xf4\x35\x03\xd3\x28\x77\xe3\xdf\xc8\xa7\x0f\x3c\xbf\xac\xc9\x3e\x30\x5d\x72\x10\x7d\x5b\xf6\x3a\x18\xb9\xa3\xd0\x55\xb9\x96\x55\x44\x5b\x08\xf9\x11\xa3\xd5\x20\x86\x83\x9e\xff\x56\x76\x02\x9b\x76\xf8\x84\xad\xdd\xbd\xef\x44\xee\x1e\xd3\xad\xf1\xfe\x00\x03\x70\x35\x08\x23\x5e\xa0\x14\x37\x8a\x11\x61\x6b\x39\x92\x8b\xbe\xca\xa9\x6d\x2c\x74\x4d\x4a\x3c\xbb\x57\x84\x76\x32\xb2\x25\x88\xfb\x66\x4c\x68\x3b\x16\xf3\x0b\xd4\xbd\xc7\x96\xb5\x57\x72\x92\x2b\x9d\x89\xbb\xa0\x19\xde\xc0\xc7\x49\x34\x92\xf9\x73\x44\x14\x73\xab\xb9\x2d\xf0\xb0\xb9\xe8\x6b\x77\xaf\x1f\x49\x80\x39\xb2\x35\xc4\x98\x75\x59\x2d\xa7\x03\xbe\xd7\x52\x8a\x68\x34\xcd\x48\x66\x4f\x6f\x4c\x04\xda\x75\xc6\xd7\x33\x3d\xf9\x59\x9b\xe4\x9f\xfa\x81\x12\x00\x90\x5b\x78\x0a\xe5\x11\x2a\xba\xf7\x84\xe2\x67\xdb\x62\x73\x46\x68\xbc\x2b\x9f\xe4\x28\x84\xdf\x64\x1f\x5a\xa9\xc3\xe0\x8d\x7d\x3b\xe7\x29\xbf\x8d\x9a\xf5\xa6\x39\x01\xa1\x85\xe1\xeb\xfd\xa0\xcb\x47\xf4\x91\xc8\x7f\x2f\xcf\x70\xe0\x1a\x1d\x28\x42\x0c\x4f\x05\xb7\xf3\xa4\x23\x84\xff\x76\x5f\x36\xb8\xce\x68\xb9\xf7\x41\xad\xa0\xe4\xa1\xb6\x67\xc7\x1e\x2d\x8e\x4b\x2a\x8d\x26\xef\xb2\x2a\x1c\x5e\xef\xfa\x5c\xbc\x1c\xb4\x9a\x78\xc8\x0a\x8e\xaa\x48\xb0\x03\x01\x3c\xea\xe2\x08\x39\xe3\xee\x52\x94\xbc\x2e\xdf\xe7\xdc\x8d\x97\x16\x1d\xda\xd3\x9b\xf9\xea\x26\x63\xc9\x92\xe4\x48\x85\x5c\x15\x63\x03\x1b\x5b\x1d\x8a\x0f\x35\xad\x3f\x4e\xfb\xc5\x63\x56\xbd\x29\x68\x34\xea\x04\x90\xbf\x9e\xa1\x48\xa9\x5c\x66\xe5\xde\x9d\xb3\x30\x5d\x32\x95\xde\x38\x6a\x87\x4f\x62\xfe\x21\x8f\x6f\x05\x39\x36\x69\xad\x44\x2f\xec\x99\xe5\x89\x43\xd6\xff\xc0\x00\x69\x52\xf3\xc1\x93\x44\xc3\xda\xbb\xdf\x4a\x3f\x9b\x78\xa4\x80\xff\x72\x99\x8c\xd5\x01\x76\x3b\xf4\x1a\x00\xb0\x14\x70\x9b\xc2\x56\x94\x3e\x0b\x9e\x3e\xae\x3a\x29\xad\xe4\x75\x8c\x03\x9b\xc1\xd8\xbf\x16\x38\x7b\x55\x6d\xb3\x72\x97\x4c\xbb\x45\x68\x7c\xf2\x8c\x3d\xa6\xde\x26\xca\x79\x8e\x49\x9e\x39\xbe\x7a\x1e\x0c\xb8\x50\x51\xae\x1c\x44\x0a\x52\xee\xe9\x9f\x17\xa5\x98\xb7\x3e\x64\x1f\xcd\xe9\x08\xba\xfa\xd7\x2f\x8c\xf9\xe9\x6c\x9d\x7d\x1a\xbb\xbe\x97\x73\x23\x70\x36\x1c\x15\x9e\x9f\xef\xf5\x9e\x17\x8f\x29\xd8\xb7\x03\x9d\x82\xa2\x5e\x26\x5a\x99\xb9\x0f\x84\x5e\x03\xa3\xbf\xbd\x99\x51\xf1\x3d\x62\xb2\xe4\x25\x99\x25\x64\xbc\xa9\x95\x42\x91\x22\x58\x99\x51\x43\x17\xb9\x71\xe1\xbf\x8d\x1a\xc6\x46\x1c\xb8\x6a\x6b\xb4\x27\x09\x6d\x6b\xd9\x21\x88\xf7\x46\xdd\xed\xa2\x20\x32\xd0\x1f\x46\xca\x0a\xb4\x31\x7f\x97\xf1\xe7\x99\x42\x4c\x13\xd1\x37\x7f\xcc\x50\xc6\x35\x77\x55\xea\x09\x87\x22\x1a\x5b\x48\xda\xee\xd8\x21\x75\x10\x0c\xf3\xac\xfe\x71\xda\x17\x78\x61\x5f\xb6\x8f\xd5\xc6\xf7\x87\x35\x1d\xd8\xe6\xfd\x45\x1a\x35\x95\xbe\x26\x34\x5a\xe2\x00\x51\x6e\xcf\x6e\x31\x29\x22\x88\x1f\xc6\x3f\xe5\x02\xa7\xaf\x3d\x2a\xe7\x57\x76\xe4\x9c\xe9\xdb\xd3\xb1\x6b\xec\x86\xb0\x4d\x0f\xb4\xe3\x29\x77\x82\xb7\x1f\x21\xb8\xa8\xb1\x5e\x5f\x74\x1b\x3e\x7c\xad\x78\xc0\xd6\x67\x6b\x3e\xe5\xc7\xdc\xe8\xeb\x37\x48\xe8\x39\xd8\xb6\x95\x39\xdf\x80\xf7\xef\x0e\xaa\x5d\xc1\x6a\xd8\x86\x43\x9e\x8a\xf6\xbb\x7f\xbf\xb9\xf4\x38\x76\x44\x0d\x7d\x04\x58\xc1\x51\xab\xe9\x40\x28\x4f\xba\xbb\xd3\x5d\xc5\xd5\x1a\x04\x1a\x55\x48\x55\x8d\x8d\x9d\x67\xcd\xf1\x2d\x64\xf8\x84\x15\xfc\x7a\x1e\x3b\x11\xce\xd4\x9f\x57\x56\xc2\x5f\xb3\x15\xaf\x57\xb8\x96\x9f\x39\x35\x06\xf9\xc1\x58\x43\xa0\x77\x06\x1d\x4d\x53\x83\xc2\xb7\xe4\xdf\x04\xd2\x06\x9f\x69\xf9\x4f\x1c\xed\x85\xa8\xf0\x71\x53\xbf\x9b\x6e\xbb\xc8\x3e\xba\xd7\xb7\x58\x6b\x1b\xf2\xfa\x27\xa2\x88\x06\x0b\x77\x17\x4a\x3c\x06\x99\x3c\xcd\xb3\x8b\xff\x3d\x87\x2b\x7c\x68\xaa\x4f\x4a\xc3\x38\xdd\x7a\x08\x6a\xe3\xf8\x03\x57\x05\xa4\x28\xe9\x68\xe1\xad\xbf\x5b\xb6\x0c\x48\x50\x2e\x3d\x8e\x24\xf0\xa5\xc0\xac\x17\x3b\xa0\xc1\x4c\x28\x00\x00\x24\x07\x64\xac\xf5\x7d\xc9\x3a\xbb\x5e\x4b\x27\xba\x83\xda\xc1\x66\x76\xf4\x3e\x2a\xb8\xc1\x58\x23\x0c\xa8\x14\x0e\xc9\xbf\x77\xa3\xff\x1e\x5a\x19\x25\x98\x43\x3f\xd5\x94\x72\xb7\x9c\xf2\x63\x6a\x74\x2e\x78\x31\xcd\x13\xda\x98\xaf\x3d\x3b\x8f\xc6\x3e\x3d\x24\xfa\x62\x0a\x18\x93\x76\xc6\x05\xc4\xd2\x45\x16\x7d\x50\x80\x57\xf2\x0a\x60\x22\x0e\xf0\xe2\xb0\x02\xef\x53\x78\xd9\x78\x44\x49\x90\xc0\x63\x3e\x3f\x49\xe2\x20\x0a\x7b\x77\xe9\xb5\x09\x29\xe2\x91\x00\x40\x95\x59\x7e\x88\x70\xa6\xe8\x1b\xe7\x79\x4e\x5c\x6e\x2e\x25\xc8\xbe\xce\xed\xc0\xab\xcf\xf9\x1d\xbc\x80\xe0\x29\x3e\x68\x7d\x00\x2f\xe2\x01\x25\xe4\x5f\x6d\xe4\x8f\x6e\x32\x36\x76\x28\x24\x70\xfc\x67\x6e\xec\xe5\x2a\x72\xab\xbf\x27\x70\x1f\xa9\x94\xd6\xa2\xc4\x54\xb1\xe2\xd3\x7a\x1a\xa4\x80\x1e\xbc\xfa\xa0\x4b\xe2\x59\xae\x71\xd4\x87\x3e\x0b\x06\xdf\xb4\x1f\xe2\xa2\x71\xf0\x51\x10\x19\x32\x90\xf3\x77\x16\x62\x24\x92\xc6\xfc\x3e\x69\xe8\xeb\x8b\xb9\xbe\xca\x9e\x1d\x83\x57\x8f\x15\x02\x60\x80\x34\xb9\x39\xe7\x5e\x65\x5d\xbc\xde\xdc\xe0\x46\x3c\x73\x22\xe3\x7e\x63\xaf\x98\xf2\x06\xab\x69\x80\x26\x1d\x2a\x86\x9a\x37\x1c\xf4\xf2\x01\x49\x7d\xfb\xa6\xab\x0c\x84\x8a\x76\xd5\xbd\xa8\x59\xfc\xf7\xb3\xae\xd6\x05\xb3\xa2\x3d\x7b\x47\x81\x2d\x7b\xed\x2e\x1d\xb5\x51\xe5\x74\x49\x14\xf8\x7f\xbc\x97\x57\x34\xdb\x0f\xfc\xf7\xbf\x89\x84\x20\xad\xad\x56\x25\x46\xd1\x58\xb1\x4a\xd5\x48\xd4\xa6\x46\xad\x1a\x35\x6a\x14\xa5\x76\x6d\x22\x54\x55\x6d\x35\x6a\xd7\xae\xd9\x2a\x4a\x6b\x6b\x51\x7b\x54\x8d\x9a\x8d\xad\x45\xad\x18\x21\xcf\xf9\xfd\x9f\xab\xe7\xe2\xb9\xfd\x9f\xf3\xb9\x7d\x9d\xcf\x7e\x9f\xf3\x06\x0c\x4c\x46\xbf\x55\xf5\x1e\x96\x0e\x2b\x8b\x5b\x82\xd6\x28\x90\x65\x94\x50\x0c\x8d\xfd\x1f\x78\x0c\x39\x0f\x00\x96\x8d\xfb\xbb\xab\x6c\x24\x42\xd5\x69\x13\xea\x14\x3c\x44\xa3\x34\x70\x06\xc8\xe8\xe1\xcd\xdc\x96\xa2\x96\xe6\xf1\x1f\xa6\x19\x16\x15\xb0\x4c\xb7\x9f\xf2\x47\x23\x04\x15\xdb\xe2\x51\x00\x08\x82\x26\x39\xe4\x8d\xed\x6d\x8f\x7a\x11\x2d\xfd\x89\x52\xdb\xc4\xbc\xb5\xb0\xd5\xd3\xbb\xdb\xed\x16\xce\xc2\x76\xd8\x7c\xda\x27\xf0\x9f\x43\x54\x0f\x86\x9a\x63\x3f\x65\x13\xdb\xea\x4d\x06\xa9\x30\x7a\x54\x34\x38\x50\x4e\x17\xd3\xa8\x7d\x31\x58\x60\xd5\xb0\xa7\xd6\x42\xc9\xe8\x20\xa1\xae\x0a\x26\xb9\x7f\xb9\x78\x1b\x6f\xa0\xe5\x1d\x84\xb1\x41\xc9\xf5\x0b\x9b\x71\x04\xbd\xfb\x61\x1a\x6a\xc9\xf2\x37\x7d\x18\x7a\xe8\x64\x5d\x44\x8f\xe9\x11\xf8\xb6\x57\x76\x83\x78\xa3\xfa\xc4\x0f\x40\x3f\x4d\x8b\x4f\xab\xf5\x60\x6e\xf3\xf2\x5f\x3c\x6b\x5d\x2d\x3d\x0e\x56\xc7\x2c\x16\x60\x74\x33\x31\x31\x89\xda\x85\x9c\x39\x35\x16\xdc\x77\x02\xea\x96\x94\x56\x8d\xd5\xef\x40\x1e\x29\x01\x92\x8c\x42\x40\x74\x52\x9d\x14\x72\x73\x7d\xc3\xbe\x57\x43\x3f\xb9\xc5\xed\x74\xb2\xaa\x6c\x23\x30\x43\x74\xe8\x09\xed\xb2\x9d\xef\x01\x05\xeb\x10\xae\xd5\xa2\x3e\xed\x5a\xed\xcf\xa3\xe7\xdf\x1a\xfb\xb3\xe5\x3d\x34\x18\xa1\xa9\x51\x1d\x48\x2c\x6e\x39\xe2\xb6\x23\x26\x44\xf9\xec\xf4\x65\xcf\x49\x51\x34\xb9\xc9\x1e\x01\xb0\xc9\xa2\x7a\xf6\x65\x6f\xed\xdb\x84\xfb\xc9\x1e\xdc\xa9\xbc\xf7\x97\x28\x92\x18\xea\xf3\x5a\x3b\x6c\x1d\xfe\x16\xef\x20\x9a\x9f\xce\xac\x75\xeb\xd6\xab\x1d\x1e\x60\x8d\x02\x49\x88\x00\xdb\xc2\xf8\x82\x40\x2a\x14\x69\x3f\xa8\x13\xe5\x2a\x60\x15\x4e\x06\x0d\x0a\xa5\x6b\x56\x8d\x31\x79\x38\xdf\x2e\x12\x30\x50\x56\x2b\x3a\xbd\x35\xbf\x2d\x13\xfa\xee\x87\x69\xe4\x67\x86\x7a\x2e\x13\xdf\x7c\x49\x03\x18\xbc\x42\x1c\x67\x1d\xc1\xfe\x58\x55\x96\x5c\x20\x1a\xda\x2b\x7c\xd9\xf0\xd9\xf4\xec\x27\xa1\x6b\xca\xfa\xd7\x77\xd2\xc4\x64\xe9\xf1\x17\x73\xfd\xd3\x1a\xde\x3e\x9a\x66\xfe\x03\xa7\x32\xd2\x2d\x51\x47\x05\x57\xb9\x8a\x93\x7d\x21\x82\xec\xff\x08\x55\xc7\x9f\x43\x06\xad\x0d\xe2\x75\x0f\x62\xa0\x15\x08\x0e\x88\x00\x7d\x60\x4c\xcd\x9d\x7d\x55\x95\xb0\x0f\xd5\xd6\xa7\x5b\x4e\x3b\x9c\xfe\x57\x87\x6a\x39\x40\x43\x7a\x67\x79\xa5\x20\xac\x43\xb7\xd1\xca\xba\x9f\x62\x80\xc7\xc7\x8d\xcb\x8d\xc8\xa3\xb5\x32\x19\x3e\x67\x0a\xdc\xe2\x75\x10\xb0\xd7\x17\x93\xae\x75\x2f\x1b\x12\x2c\xf0\x15\x41\x5a\xa2\xf2\x3e\x49\x43\x66\xa4\x4d\x2f\x84\xe2\x3a\xe3\x5b\x52\x54\x31\xd2\xdd\x36\x0f\xdd\x9d\x4f\xa7\xfc\xeb\x6a\x6b\x27\x1b\x6c\xbe\x7f\xfe\xc3\xc9\x51\xf6\xe9\x65\x94\x4e\x76\x1f\xa7\x81\xf9\xfc\x40\x20\x79\x59\xdc\xa6\x9c\x34\xf2\x82\x9d\x0c\x00\xb3\xc0\x12\x80\xa3\x15\x5c\x4c\x56\xda\x05\xc2\x76\x18\x98\x01\x7b\xb4\x2a\xe4\x50\x9a\x8c\x63\x62\x48\x82\xe2\x14\x80\x95\x98\xa8\x90\x31\x43\xd3\xc5\xd9\xc1\xd6\x8b\xae\x88\xa3\x84\xcd\x09\x52\xf1\xae\x8b\xc5\x06\x4d\x84\x38\xa7\x7c\xf8\xae\xcb\xd8\x29\x59\xc9\xea\x49\x98\xf5\x07\xbc\x40\x8e\xae\xa7\x96\x0a\x52\x0b\x8e\xe9\xfa\xc7\x96\xc3\x5c\x16\x09\x29\xa2\x4b\xb2\x2a\xe2\xdb\xba\xa9\x2d\xbc\x5c\x09\xe0\x82\xaa\x2b\xc4\x5b\x1a\xb3\x43\x7d\x4a\xde\x86\xc9\x12\x3e\x7c\x32\xd1\xf3\x30\xa2\xfe\x59\xbc\xeb\xc7\x6c\xa5\xe6\xa6\x20\x76\x9b\x7c\x2c\x6e\x5d\x4e\x7a\x53\x16\x23\x0f\x4c\x7b\xf2\x82\xbb\x76\x35\x0e\xef\x44\xe4\xfb\x41\xa0\x1d\x4d\xc5\x31\x38\xe7\x6b\xef\xcb\x61\x7d\xbe\x1a\x62\x92\xfb\x81\x1a\xe6\x97\xfd\xa6\xc7\x95\xfe\xc4\xea\x5a\x4b\x6e\xe1\xff\xa6\x05\xbb\x19\xe3\x16\xa0\xab\xf4\x74\x93\x54\x16\x6c\xbe\x5b\x1b\x1e\x58\x72\x34\xe6\x34\x56\xdd\xe1\xc9\x93\xb4\xc6\x80\x91\x40\xdf\x88\xb3\x3d\xec\xb6\x57\x58\x50\x1e\xdd\x53\x0e\x77\x16\x5b\x9c\x1f\x08\xf1\x6b\x7e\x77\x59\xb1\x39\x51\x2b\x84\xaf\x99\xd0\x69\xf9\xad\x8f\xad\x97\xbe\xbc\xec\x35\xb3\x20\xaf\xb5\xfe\x6a\x68\xa7\xc0\xb1\xe6\xc4\x00\x74\x7a\x6d\xd7\x84\xc0\x49\xf6\x06\x40\x0e\x1e\xc4\x8b\xe4\xb8\x8a\x2e\x58\x64\xf2\x14\x81\xd4\x89\x59\x06\xd9\xdf\x39\x4f\x33\x3b\x96\x5c\x1c\xfc\x5c\x25\xbd\x19\x9c\x25\x59\x8c\xb4\xf5\x41\xf9\xff\x42\x85\x93\x85\x08\xe4\x8d\x83\xb4\xe3\x8b\x17\xaf\x86\x23\x7a\xa3\xa8\x36\xdf\x46\x48\xf3\xe0\x1e\x2d\xa5\x78\xd3\x14\xe5\x9b\x7e\x6a\xef\xdd\xe3\x54\x92\xc9\xbb\x23\x69\x66\xa3\xf0\xbe\xcd\xd4\xf5\x5d\xbb\x2b\xe5\xe1\x15\x81\x3e\xc9\xe4\x82\xce\xd7\xc3\xaf\x52\x70\x96\x12\x17\xe4\x73\x41\xd9\x2d\xf2\xf1\xc4\xe4\xf1\x5d\x39\x06\xd0\x98\x01\xc6\x86\x8f\x87\xe4\x36\x22\x6e\x74\x8a\x6d\x87\x7f\x55\xc5\x34\x8d\x6b\xce\xde\xc9\x41\x81\x45\x12\x45\xdb\xda\x52\x03\x09\x0d\xf3\x7f\x64\x7d\xae\x5a\xe6\x1d\x2a\xde\xe3\xb9\xcf\xb8\x27\x97\xec\x68\xc6\xd0\x5e\xf5\xa0\xd3\x46\x11\x35\xa3\x1c\xf6\xde\xc1\x43\xc6\xf7\xa9\x0f\x8a\x60\x0d\x02\x5d\x54\x16\x7c\xf8\x06\x00\x7a\x59\xeb\x6a\xb1\x9d\x54\x6c\xf3\x1b\xbd\xad\xde\xbd\x3d\x36\xb4\xe5\xd6\xbe\xaf\x07\x0f\xa8\xd6\xe2\xb7\x4d\x08\xd9\xd0\x17\xa1\x96\x74\x1b\x0f\x51\x7d\x5d\xe6\x19\x7f\x73\x99\x73\xfa\xb7\xf4\x16\xce\x53\xc9\xbe\x65\x67\xed\x7f\x56\x5b\x42\x3b\x42\x00\x07\xc0\x88\x1c\x91\xcf\x4f\xcd\x6b\xfb\x40\x0f\xc3\x76\x55\x8e\x15\xac\x8e\xb9\x66\xfd\xeb\x7b\xdb\xe5\xd9\xb3\xb5\x5f\x81\x1a\xe6\x9d\x75\x9d\x65\x2a\xda\x80\x58\x8c\x5b\x50\x2c\xa9\xf0\x2d\x55\xf8\xc7\x54\x62\x18\xa9\x69\x45\x41\xa1\x2f\x50\x46\x83\xe1\xa9\x27\x2f\x65\x8a\x02\xb8\x28\x36\xe2\xe4\x54\x42\x2e\x22\x2f\x81\x01\x1e\x76\xa8\xe0\xfe\x49\x23\xa4\x21\xdc\xea\x53\x3e\x75\xa1\x93\x82\x53\xd5\xad\xfa\xe7\x77\x34\x7a\xe6\x27\xa3\x8f\xe7\xe3\x7a\xdb\x6a\xbc\xbd\x73\x35\x1f\x3d\x4c\x8f\xbb\xfc\xf8\xd5\xe4\x6b\x4f\x91\xda\x3a\x95\xf2\x67\xa3\x0b\x3b\x4b\x82\x49\x47\x08\xc0\x0f\x95\xbe\x35\x82\xd1\x5e\x7f\x6f\xa8\x8a\x49\x14\xc4\x10\xea\x4f\xb6\xf4\xd6\x26\x65\x9f\xd5\x2d\xa2\x66\xfb\x39\x92\xd7\x2d\xf5\x7c\x7b\x18\x52\x70\x9c\x06\xcd\x8f\x2b\x49\xeb\x2c\x52\x01\x1e\x95\x4b\x61\x4d\xe6\xbe\xfe\xa8\xf4\xc5\x3a\x93\x65\x15\x0d\x20\x2a\x75\xa9\xfc\x11\x00\x40\x3b\xa5\x7c\x68\x22\x11\xdc\x54\xec\x17\x6d\x2a\x4a\xa5\xfa\x47\xdf\x1a\xb3\x5a\x2d\x26\x6a\xad\x2a\xb7\x3c\xc4\xea\x27\x77\xb3\x94\x42\x53\xb5\xea\xa4\x87\x9e\x5e\x32\x24\xdf\xcb\x5d\x24\x3b\x57\x9f\x2e\x92\x57\xd4\x09\xeb\xf8\x3e\x01\x5f\x05\x90\x98\xad\x12\xc0\x68\x97\xde\x0e\xb9\xa6\x32\x48\x0b\xa0\xad\x20\x51\xdf\x23\x14\x79\x31\xcb\xfc\xe1\xfe\x8b\x9f\xcf\x7b\x9e\x1d\x5b\xbe\x72\x3f\x92\x67\x52\x7d\x73\xd8\x7a\xef\x36\x23\xa0\x3a\x25\xbc\x57\x50\xf2\x2f\x9f\xcb\x81\x94\xff\x94\x65\x5e\xdc\xdf\xe7\x69\xb3\x1b\x54\x54\xcf\x51\xc1\x05\xad\x05\xe3\x4f\x33\xbb\x5e\x5f\xed\xb9\xc4\x2f\xaf\x9f\xfa\x07\xb0\xa7\x43\x57\xb5\x3e\xdb\x0d\xbc\xaf\x62\xb3\xe8\x6a\x43\x5b\xde\x38\x6d\x2a\x69\xb6\x75\x36\x3e\xf9\xf9\xb8\xeb\x91\x4e\x68\xef\xfe\xb4\x99\x8c\x5e\x5e\x51\x8a\x03\x6f\xad\xc4\x81\x26\x38\x6c\x66\x9f\x5c\x8b\x58\xac\x22\x7f\x19\xc9\xf8\x95\x08\x1c\x80\x92\x20\x6b\xbf\x07\x3c\x17\xe2\x6e\x82\xe1\x1b\x47\x90\x28\x15\xa4\x0e\xff\xca\xce\xeb\xa1\x3b\x1e\xee\x6b\x6d\xad\xb3\xa3\x3b\xe5\x39\x1b\xa9\x6d\x9f\xd8\xb1\xda\x38\x9c\x51\xe0\x52\xf9\xef\xa2\xcf\x0c\xa4\x95\xbe\xfd\xf0\xc0\xa4\x23\x59\xa2\xb7\xf5\x2a\x9a\xd0\xfb\x0d\x73\xbf\xa6\x03\x3d\xd2\x81\x64\x40\xfb\xde\xcf\xfd\xf9\xd2\x3f\x26\x99\x8e\xdd\x58\xcd\x87\x99\x18\x66\xf1\xdd\xba\x07\x62\xa8\xed\xfe\xed\xf3\xf8\xe8\xb5\xa9\xad\xd9\xa1\x92\xf4\xb3\xb4\xaa\x81\x85\x9f\x14\x67\xde\xb2\x8d\x23\xb6\x7a\xeb\xb7\xf5\x1c\x43\xef\xec\x5e\x9c\xb7\xb7\x19\x5d\x2c\xf2\x9e\x02\xb7\x7c\x5b\x80\x4c\x3a\xdc\xe0\xfa\x35\x82\x02\x1b\x16\xf2\xf5\x15\xf4\xdb\x27\x6a\x6e\xda\x88\x4a\x99\x8b\xd9\xd6\xa1\x39\xd9\x5a\x93\xa3\x8c\x23\x9c\xde\x37\xa5\x95\x9b\x2a\xda\x60\x3d\xcc\x6a\x42\x51\x8c\xbe\x85\x3c\x59\xed\xdb\xa1\xf2\xcc\xc8\x99\xfe\x27\xda\x9d\x65\xbb\x1e\x0f\xff\x54\xaa\x22\xeb\x08\xc3\x6f\x1d\x72\x6f\xf1\x1f\x04\x67\x5e\xe5\x65\x6a\x48\xef\x78\xa9\xcb\x1c\x2f\x7b\x19\x17\x85\xbb\x91\xde\x20\xb7\xb4\x8d\x86\xaa\x26\x8f\x4a\x56\x4b\x83\x5a\x9d\x2b\xfd\x3f\x8a\x05\x77\xc3\x36\x9e\xc4\x22\xcd\x62\x20\xcc\xc3\x0f\x15\xd4\x14\x4e\xbd\xc7\x2e\xa7\xc2\x43\xcb\x8e\x33\x32\xe9\x70\x5f\xb1\x20\xcf\xe8\xb8\x9b\xe0\x2e\x77\xfc\x5b\x58\x4c\x34\xa4\xee\x95\xa8\xdf\xd1\x82\xd3\xce\x93\x4f\x09\x83\xb2\xba\xf9\x6b\xe8\xdb\x7b\x56\x49\xf3\x21\x11\xee\x66\x0c\xf9\x0d\xd2\x97\x86\x93\x70\x25\xc5\xfe\x13\x7d\x59\xda\x9d\x4b\xeb\xe1\x27\xea\x5f\x3b\x0a\x42\x22\xb0\x32\x94\xd1\x7f\x51\x9a\xd9\x6e\xe2\xdb\xfc\x0a\xda\x70\xe5\xb3\x83\xa6\x99\x73\x2d\xb1\xb0\x1e\x88\xa1\x19\xa7\xc5\x71\x90\x89\xcd\x43\xd7\x77\xb2\xb4\x8d\xde\x53\xfb\x33\x95\x41\x18\x1b\x03\x48\xf3\xac\xcc\xd9\xc9\xf5\x4d\x8d\x46\xe9\xcb\x8f\x74\x35\xb7\xc8\xbf\x88\xb5\x32\x4a\x7b\xe6\xae\x4a\x98\xfa\x37\xf4\xb1\xb8\xdb\xa0\x76\xf4\xe3\x41\x7a\x06\x7a\x56\x5a\x9a\xec\x78\xfe\x97\x38\x7b\x7d\xcc\x4f\xc7\x57\x36\x33\xfd\xad\x47\xbf\x23\x4e\x27\x73\x8a\x44\xde\xc2\xe4\x6c\x54\x46\x70\xbd\x5f\x29\x2c\x59\xf2\x3f\x49\x5f\xbe\x77\xa2\xe4\xa4\x32\x0f\x7f\x6c\xdf\x79\xbb\x82\x33\x82\xa2\x8c\x89\x22\x32\xaa\xe3\x3d\x29\xc2\x4b\xf0\xb7\x61\xbe\xf2\xce\xe3\x97\xf0\x40\x37\xae\x48\xe5\x94\xb1\x91\x20\xdd\x76\xf3\x5b\xac\x66\x1c\xb3\x16\x63\x86\x4f\x9d\xac\x8e\x73\x36\x27\xbe\x70\x94\x8d\x08\xe3\xab\x7e\x6b\x87\x4b\xf3\x83\xda\x1f\x9d\x85\x1f\x2f\xfc\x9d\x25\xef\x39\x8f\xcd\x2c\xa9\xaa\x1f\x80\x14\x36\xc4\x8b\x44\x0d\x81\x41\x2a\x67\x83\xe1\x88\xd7\xf3\x20\xbb\x5c\xdc\x7b\x53\xcc\x74\x00\xbf\x05\x5a\x68\x8b\xba\x0f\x8c\x31\xa5\x73\xfe\x77\x94\x3b\xf8\xa4\xf6\x8f\xd3\x82\xf9\xfb\xc9\xca\xa6\xbb\x4b\x8f\x92\x00\xa5\xb2\x3a\x2e\x83\x66\x82\xf0\xfe\x87\xea\xbd\x17\xf7\x72\x95\x85\x2c\x3b\x53\xab\xf1\x5f\x3e\x9a\xf8\x6e\x73\x33\x29\x15\xbf\x8a\x28\xa7\x67\x4b\xd7\x94\x3b\x16\xa3\x90\xb3\xa1\xeb\x2c\xef\x51\x0a\xca\x4b\x6f\xc9\x70\xd8\x63\x9a\x3f\xe7\x28\xdb\x4a\xfb\x9c\xde\x6a\x3d\x39\xa5\xed\x7e\xa4\xfe\xd3\xd1\x5f\x37\x5f\xa9\x0c\x7a\x98\xce\xdb\x67\x22\xd0\xc7\xbb\x19\xf3\xd8\x41\x81\xbf\xac\xae\x2d\xfb\xe0\xd2\x21\x2e\x0c\xb4\x01\xcd\xa4\x30\x00\x72\x98\xf8\x62\x71\xce\xbf\xc6\xca\x61\x31\x6b\x50\x07\x16\xec\xbe\xf8\x8e\xa5\x78\x4b\x5b\xea\xc5\x99\xb6\x51\x6b\xfc\x1d\x88\x58\xce\xfb\xfd\x25\x3b\xcc\x6a\x63\xef\xd7\xe8\xa2\xd8\x5e\xf7\x78\xe5\x6a\xf6\x90\x27\xca\xeb\x7f\xdd\x59\xe7\xb4\xe7\x61\x56\x9a\x23\xec\x31\xaf\x70\x84\x97\xac\x3d\x07\x8c\xfc\x17\x39\xc7\xd3\xe5\x71\x4f\xf6\x34\x24\xce\x5c\x28\xc9\xd3\x7b\xd9\x4a\x26\x53\x4f\x82\xec\xaa\x4b\x6d\x6e\xce\xf6\x07\xf5\xd8\xcb\xc6\xe1\x16\x7e\x50\x04\x19\x31\x38\xe4\x52\xd7\xa9\xde\x70\x00\xd6\xdf\x7d\xc4\x04\xe9\xba\x29\x59\xf8\x5e\x0e\xd1\xd9\x88\x90\x9b\x47\x1c\x28\xf4\x54\x31\x99\xcc\x31\x5f\xc0\x6b\x70\xd2\xa3\x5c\x3e\x6a\x5e\x64\xdb\xbe\x16\x23\x68\xcc\x1d\xdf\x1b\x49\x9d\xf2\xc5\x7a\xd2\xa3\xed\x43\x6e\xe8\xb9\xc5\xbd\xf6\x4a\xa8\xef\xac\x6b\xda\x08\x9c\x11\x99\xa4\xda\x28\xf7\x9c\x43\x70\x5f\xc8\xd6\x7b\xca\xfe\xd1\x84\xe9\x37\x75\xa3\xf5\xec\x17\xec\xe1\x3e\x95\x4b\xdc\xa6\x22\x8b\x8d\x93\xf6\xe2\x9d\x72\x6f\xf1\x76\x79\xf8\x93\xc0\xf1\x11\x02\xfa\x29\x49\x29\x88\x5b\xf6\xe4\xdf\xb3\xa1\xe5\x2d\xeb\x9b\x0d\xcc\x3e\xd5\x35\x19\xe9\x16\x5b\x69\x39\x03\x3f\x45\x13\xe7\xc7\x29\x82\xee\xfe\xad\xda\xc9\xc8\xc4\xf1\x26\xf3\xff\xaa\xee\x7f\x91\x23\xc1\x88\xfb\xc5\x41\x5e\x2a\x12\xae\x0e\x3f\x5a\xf8\x3b\x1b\x0a\x38\x77\x2d\x55\x47\x08\x01\x4e\x5c\xcc\xc0\xfa\x20\x1b\x2f\xb2\xed\x1e\xba\xcd\x04\xad\xc3\xbf\x92\x6e\xb1\xb5\xf5\xe4\xce\x8c\x6c\xfe\x1d\xc9\xf6\x14\xbf\x99\xae\xe2\x5d\x3a\x10\x6e\x67\x18\x8c\x75\x48\x65\x2a\xf7\x53\x84\x7e\xc9\xe3\x7d\x66\xa5\xf6\x67\xba\x62\xfa\xc9\x46\xc8\x2e\x72\xfb\x3a\x97\x13\x49\xfd\x1b\x0d\x57\xe2\xcb\xd1\x55\x94\x1d\xa9\x3a\x9a\x2f\x4d\x58\x2f\x30\x24\xe7\xc1\xe5\x7b\xb9\xb0\x45\xed\x7c\xea\x2e\x6f\xb1\x09\x56\xb7\x49\x0b\xf7\xf2\x57\xb4\xee\x7e\xa2\x84\x0f\x32\xdd\x65\xdb\xf2\x65\x66\x2c\x7a\xa6\x99\x51\x6a\xa8\x3e\x70\x1a\xff\x2f\xf7\xcf\x52\x3e\x93\x27\x62\xc2\x78\x9c\x91\x2c\x1e\x71\xf9\xb7\x7a\x36\x9c\xb8\xa9\x7d\xce\x70\xe8\x71\xe5\xab\x15\xee\x36\x18\xda\x01\x95\x28\x48\xf3\xbc\x2f\xd8\x59\xdc\x82\x23\x24\xfb\x99\x6f\x96\x84\x6e\xef\x08\x07\xbf\xf9\xa4\xe3\x3e\x48\xdb\x14\xa5\x49\xdd\x71\x03\x64\xc6\xb8\xa9\x09\x58\x1a\x98\x13\x20\x28\x25\xa6\x60\xee\xd4\x3b\x35\xbc\xcf\xb8\x4c\xb8\x1a\x4d\xac\xdf\x71\xb6\x58\xc9\xe2\x9d\x8c\xd6\x9f\xdd\x5d\xb7\xd6\x21\x28\x95\x49\xde\x74\x03\x92\xb8\xc5\x62\xf2\x05\x2f\x14\x5c\xed\x73\xf7\x32\xe5\x74\xf3\x51\xe6\x19\x2e\xe9\xbd\x87\x85\xd5\x0e\xd7\xdc\x1a\x5e\xfb\xcc\xd4\x2d\x4f\xdc\x88\x9f\x70\x8c\x4f\x75\x7c\x9e\xfa\xdf\xf5\xa5\x3a\x44\x68\xf7\x31\x52\x53\x26\x7f\xcd\x4c\xcb\x3a\x9f\x80\x97\xd5\x79\x67\xfe\x23\xaf\x88\x5b\x57\x91\x12\xcf\xcd\x77\xe9\xf5\x1a\x29\x1f\x89\x75\xe4\x44\xd8\x7c\xa5\xe5\xc7\x42\x8a\xfd\x18\x75\xb5\xaf\xfe\x61\x00\xc7\x22\x9b\xef\x68\xac\xe5\x4e\x7d\xfa\xb8\x5b\x35\xd9\xb0\xce\x8c\xad\xd7\x5a\x44\x48\x32\xf3\x50\x43\x18\x3b\x52\x91\xa1\x5a\x1d\xe9\x90\x59\xbc\xa6\x25\x7d\xb9\x7f\xea\xd5\x01\x50\xaa\x63\xe2\xcb\xd8\x5e\x87\x6f\xf6\x85\x9b\xa8\xc2\xcd\xf2\x42\xc7\xca\xc2\xbf\xa8\xae\x83\x37\x70\x2e\xb5\x93\x1a\x5e\xb0\x19\x83\x42\xc1\x7d\x5f\x28\x05\x80\x5b\x71\x08\x90\xc3\xa9\xa9\x16\xf5\xdf\x9c\xa0\xe8\x8a\xc3\xa1\x2c\x30\x2c\x6a\xf4\xa5\xde\x85\x15\x39\x15\xec\x89\x4e\x92\xdc\xc2\x1c\x4a\xc2\xce\x39\xcc\x26\x7a\x34\xb1\x48\xa8\x5a\x12\x2f\x53\x71\x31\xac\x4e\x53\x5e\xf8\x14\x0e\x42\xbf\x84\xa4\x01\x86\x58\xbc\xe4\x88\x5a\x80\xd8\xed\x71\xa3\xaf\xd7\xe8\x58\xff\x92\xd7\x46\x76\xd3\xc9\x34\x41\x4c\x60\x09\x38\x5a\xc3\xb6\xea\x2f\xf8\xb4\x93\x2e\x0c\xf9\x85\x17\x79\xf6\x9c\x31\xf9\x80\x9f\xe8\x51\xde\x53\xf4\x6b\x24\x00\x73\x83\xec\xfd\xee\x22\xf0\x21\x1d\x87\xcd\x4c\xff\xe4\x53\x93\x38\xb3\x2b\xf9\x6b\x02\xa1\x89\x7d\x18\xa1\xe4\x02\x06\xe0\x0a\x0e\xd0\xdc\x88\xf6\x8c\x89\xaa\x99\x02\x60\x9e\xd4\x48\xc0\x01\x49\xdd\xc4\xd8\x91\x0a\x09\x01\xf6\x6e\x68\xea\xd3\x3b\xd3\x82\x45\xb1\x8e\x3a\xf4\x33\x8c\x10\x2e\xad\x8e\x8c\xdc\x75\x2a\xa0\xe3\xce\x02\x15\xbb\x26\xd8\xca\x97\xe8\xcf\x04\xa8\x00\x6c\x9a\xb6\x10\x18\x1f\x23\x1b\xc8\x56\x15\xaf\x72\x63\xec\x1d\x24\x55\xfb\x51\xf2\x4e\xb2\x36\x9a\x1a\xa7\xc7\x3f\xf6\x12\x92\x0b\xb0\xe5\x72\x9c\xa9\xf2\xbc\x25\x56\x9c\x73\xe0\xd4\xc3\xb2\x92\x72\xfa\x83\x8c\x08\x88\xdd\x55\xd2\x5d\xb9\x99\xe7\x0c\x23\x84\x98\x11\xa3\x3e\x38\x1e\xbc\x84\x67\xe7\x05\xa7\xd4\x7d\x25\x50\x3b\xf4\x2a\xee\x40\x41\x6d\x19\x07\xf8\xf6\x66\x23\x77\xd9\xc6\x8f\x93\x19\xc7\xd5\xc1\xe6\x66\xe6\xc5\x6c\x8c\x99\xb7\x60\xbe\x70\x69\x28\x35\x8a\x1a\x21\x7f\x1a\xd5\x97\x5a\x86\x15\x62\x95\xcf\x67\x92\xac\x17\x8f\x88\x23\x5d\x89\xc9\x25\x2a\xfd\xbc\x98\x4b\xb2\xe6\xa3\x0f\xe7\x96\x2c\xd1\x04\xcf\x99\x7c\x5d\x78\xb6\x70\xf1\x31\xbf\x56\x96\xec\xf6\x65\x69\x47\x85\x4c\xf6\x63\x66\x06\x49\x5d\x15\x58\xd4\xc5\x9d\x13\x77\xbb\x5b\x83\x89\x85\x36\x4d\xf5\x0e\x35\x27\xd6\xfb\x97\x22\xde\xe0\x2e\xa3\xe2\xf6\x0c\x62\x22\x97\xda\x8f\x3a\xee\x01\x36\xd0\x90\x81\xd6\x1e\xf9\xd9\xb3\x0d\x9d\x16\xbe\xdc\xce\xcf\x77\xb5\xd8\x5d\xfb\x35\x83\xc4\xb6\xdb\x9c\xa4\x23\x95\x87\xd0\x48\x23\xca\xb2\xf1\xca\xac\xce\xc8\xc4\x29\x8b\xf0\x33\x42\xf6\x51\xfb\xed\xbe\xb3\x17\xf8\x43\x37\x90\xae\xdb\x55\xc8\xe8\x9b\xda\xa4\x19\x48\xfc\xd7\x28\x4d\x7a\x90\x61\x4a\x4a\x5b\x0a\xcd\x00\x17\x2d\x58\xef\x86\xf2\xe0\x59\x83\xb7\x80\x1c\x1a\xdc\x2f\x92\xef\xc8\xa2\x65\x5c\xc5\x1d\x83\x3c\x78\xf5\xe7\xeb\x79\xf6\x2f\xe8\x6e\x64\xfe\x82\x33\xe9\x54\xdc\xec\x57\x7e\x53\x85\x33\xc6\x43\x1f\x40\xdc\xdf\x02\x80\x02\x20\xd3\xd1\x00\xd0\x4d\xe2\xe1\x05\x90\xb7\x0f\xee\xb8\x88\x37\xe3\xf4\xf0\x6f\xdc\xd8\x5a\x5a\x1f\xee\x3d\x83\x26\x37\xae\x7e\xa8\x1a\x7e\xf7\x72\x01\x80\xbc\x51\x86\x80\x16\xa4\xf1\xdd\xe2\xe9\xbf\xc2\xcf\x09\x96\x47\xe4\xfa\xec\x83\x46\xe8\x73\x56\xdf\x94\xcb\x14\x14\x48\x5d\x07\x4c\xe1\xbb\x8e\x60\x06\x3e\xd2\x72\x44\x53\xfb\x90\x2f\x2f\xa4\x79\x92\x98\x07\xee\x31\x82\x43\xd5\x9c\x42\x04\x2e\xe6\xf1\xfe\xd3\xa3\xa7\xc9\x0c\xe8\xc9\x3d\x17\x56\x7f\x6a\x64\x1f\x69\x49\x6a\x93\xcb\xa1\xb5\xb7\xbd\x69\xf6\x6c\x9b\x38\x95\xad\xec\xb1\xd9\x02\x87\x58\x00\xbd\x7c\x5b\x20\x58\x36\x58\xed\x89\x51\x01\x95\xed\x55\x0c\xc8\x53\x8b\x4d\x82\x3f\x89\x99\x46\x53\xe4\xb6\x30\x75\x4c\x05\xbb\x34\xd1\x7b\x81\x1b\xfa\x3b\x5b\x69\xc0\x39\x27\x13\x02\x13\x80\xf1\xf6\xc5\xf1\x52\xc7\x94\x0e\x0f\x24\xb2\xfe\xa5\x0b\x0f\x2a\xba\x5c\x28\x52\x3b\xb7\xeb\x70\xb8\x2e\x6f\x42\xee\x4a\x5e\x03\x6d\xcc\x90\x11\x78\xb0\xed\x33\x2c\xc8\xf3\x25\x5b\x0a\x57\xe6\x1a\x48\x93\x48\x49\x4f\x9f\x80\x9a\xcb\xc5\xfb\x2f\x95\x17\x3a\x41\x74\xa5\x42\xd2\x1d\x19\x83\xa9\x91\x7d\x55\xcb\x52\x9b\x3b\x8f\x2f\x04\x11\xd5\x0d\x61\xa4\x8f\xdb\xf1\xf9\x26\x55\xb6\xfa\x8c\xce\x00\x86\x42\x2f\x2e\x9c\x0d\x0c\x53\x04\xc6\xf8\x3b\x3c\x77\x80\x0e\x0e\xc0\x07\x44\x83\xd3\xe9\x89\x09\x04\x15\x45\x81\x13\xa8\xca\x52\x10\x8e\x24\x8b\x99\x7d\xba\xf2\xa8\x0e\xf8\x03\x75\xc2\x8f\x0e\x08\x16\xf2\x26\x8c\x1f\x34\x36\x1e\x78\xe4\xf5\xfd\x72\xef\xf1\x14\x67\xf8\xf9\x6a\xdd\x45\x49\xaf\xc3\x15\x79\x4a\xe5\xa7\xa4\xa2\x9d\xf0\x39\x10\x7a\xbd\x00\x68\x8a\x82\xd3\x83\x5c\xb8\x23\xb0\x79\xc0\xd5\x5c\x08\x76\xec\x47\x60\xb0\xf8\x3a\xa2\xa9\xa2\xbc\x32\x07\xb5\x71\x05\x93\xb4\x29\x50\x30\xae\xdc\x77\xa6\xaf\xd4\x36\x7e\xb6\x79\x3e\x95\xb5\x8b\x70\xba\x78\xa8\x85\xf4\x3d\xa5\x93\xbc\xb4\xfb\xa3\x7c\xf3\x1c\x61\x46\xf6\x01\xd3\xe0\x74\xfa\x71\x2b\x18\xdc\x58\x2a\xf8\xfc\xec\xc7\xb9\x2e\xe5\x0b\xf3\xf6\xfb\x8d\x24\x0a\xad\x62\x7b\xc8\xe0\xb8\x5c\xc3\x28\x27\x0e\x39\x11\x09\x49\x12\xcd\x35\x43\x88\xce\x22\x2e\x49\x16\x07\x82\xf9\xe2\xbf\xf2\xbf\x54\x94\x77\xbc\x5c\xf6\xc0\xd4\xc2\x62\x38\xc9\x1b\x3f\xdb\xf3\xc6\xdb\x79\x9a\xce\xf2\x43\x0d\x00\x2b\x6f\xca\x15\xa8\x6a\x38\xb7\x06\x7c\x6f\x94\xf3\x7d\xf6\xc1\x55\x0e\x4a\x71\x61\x3c\x6e\x55\x6a\xee\x26\x0e\x69\x84\x1b\x29\xfe\x92\x4d\xe4\x0e\x6b\xfa\x49\xfa\xfe\xc2\xcc\x12\xf1\x67\xbd\xe5\xef\xd3\xaa\xff\xfa\x92\x08\xa7\xa2\xf4\x38\xef\x9e\x24\x73\xe1\xc1\xb6\x34\x6c\x52\xfc\x49\xe9\xb4\x1d\x6f\x89\xb4\x23\x14\x02\x17\xb1\xab\x53\x74\xde\x97\x6d\x95\x31\xa5\x9b\x52\x46\xeb\x3f\x0a\x19\xfd\x69\x90\x7d\x8e\x77\xe9\xe9\x65\xa4\xa6\xc9\x6e\x25\xa1\xe4\xf5\x29\x0e\xe5\xd0\x96\x0d\x85\xba\x54\xb3\x0b\xad\x9e\xc5\xe7\x61\x84\xfc\x69\x2f\xc6\x78\x32\x09\xf7\x74\xf1\x26\x5f\x49\x91\x6d\x7d\xa5\xed\xb4\x39\xda\x4d\x9c\xeb\x19\x2b\xfc\x0b\xad\xfa\x1d\xb8\xc5\xf2\xa8\xdc\x50\xf5\x64\x7d\x43\x06\x51\xb2\x76\xbe\x7c\xcb\xff\x5e\xe2\x2a\x5a\x04\x87\x4c\xd5\x00\x6b\x9a\xb1\x54\xff\x6d\x39\x5f\xca\xa8\xac\xa6\xfb\x14\xbb\x53\x5a\x1d\xcb\xe1\x6b\x75\x36\xd6\xa5\xb4\x0c\x7b\x78\xe1\xe5\x1f\x9e\x32\x80\xf8\x78\xb9\xce\x76\x08\xe8\xb2\xdf\x55\x01\x1b\x26\x76\x8c\x3a\xa9\x8c\x75\xbe\x83\x6f\xa9\x8f\xce\x0d\x05\x07\xbb\x9b\x18\x0f\xe2\xd8\x83\x30\xa2\x28\xea\xbb\x3c\x38\x64\x2a\x4f\xc1\xb8\xf8\x63\x7c\x75\xe2\x4f\x0b\xe5\x30\xb2\x05\xe1\xf1\x97\x40\x8f\x89\xdd\x91\xbd\xc4\x1a\x52\x11\x2f\xf2\xf3\x56\xa2\xc0\xf9\x37\xb3\x4b\x00\xd7\x13\xce\x8d\x05\xa1\x9f\x2b\x74\x9b\x62\xf3\x3c\xc3\x78\x21\x30\x4f\xfd\xe4\x05\xbb\x9f\xb5\x7f\xd6\x5b\xae\xeb\x95\xb8\x53\x0e\xfe\x90\x93\x78\x9f\x83\xc6\x5b\x71\xe1\x35\x17\xd0\x01\xab\x9d\x29\x07\x9d\x8b\xf3\xe5\xe4\xbf\x19\x03\xc7\x19\xee\xf7\x5e\xdf\xd8\xf4\x22\xbe\xe0\x1b\xdc\x4b\xbc\x76\xa2\x35\xbb\x36\xb5\xbe\x4f\x85\x21\x28\xd7\x2e\xf5\x3f\xed\x7f\xf9\x1c\xd2\xc5\x17\x1f\x87\xe6\xa7\xbf\x42\xbb\x31\xcf\x10\x0d\xad\xea\x1b\x03\x03\xaf\x34\xdf\x1b\x63\x3f\x3e\x91\x71\xff\xbb\x7a\x31\x58\x39\x55\x71\x76\x90\xae\x41\x2b\x04\xa1\x5f\x21\xd1\x43\xa2\x8a\xf6\xd7\x9e\x0e\x07\x93\x36\x5d\xcf\xbb\x05\xd5\x1e\x4f\x98\xa8\x3e\x4c\x21\x98\x84\xce\x4d\x22\x12\x3c\x1b\x10\x1c\x17\x76\xd1\x88\x87\x97\xb0\x20\xa0\x34\x97\x81\x09\x32\xd1\x4f\x55\xf6\x02\x0a\xf3\xd4\x2b\xb1\x91\x8a\xec\x71\xea\x9c\x77\x61\x23\x69\xb2\xbc\x76\x05\xc9\x7c\x18\x40\xe2\x73\x44\x19\x31\x9f\x63\x9d\x77\xd7\x5b\x04\x11\x0f\xdd\x2f\x56\x2e\x8f\x7a\x16\xff\xae\xb5\x54\xe3\xbe\x73\x24\x29\xf9\x87\xfb\x3e\xb1\x91\x5e\x4b\xac\x0c\x73\x10\x31\x00\x06\x81\xbb\x59\xd4\x25\x0d\x2c\x09\x2f\x28\x7e\x13\x02\xb2\x0d\x3a\x8a\xc3\x33\x8f\x2a\x7f\x41\x3d\x7e\x19\xa9\xde\x25\x18\x4f\xca\x8d\xbd\x41\xd2\xd0\x80\x20\x81\xb7\x14\x04\x72\xb5\x05\xa6\x2f\x42\x4a\x2e\x2e\xf5\x3d\xa4\xc3\x48\x9e\x63\x61\x1b\x37\x5f\x46\x2b\xbf\xcb\xf1\x18\x5f\xb8\x2c\xee\x0f\x73\x26\x25\x2b\x79\xee\xe7\x49\xf0\xf2\x80\x70\x97\x0f\xc1\xff\xde\xe3\x68\xbe\x7f\x81\xa6\xa8\x50\x08\x00\x99\x90\x0e\xab\xa7\xce\xc2\xfe\xc4\xea\x2f\xb2\xa8\x1e\x5a\xa8\x86\xb9\xe9\xed\x31\xc1\xd0\x45\x98\xa4\x3b\x44\x37\xe8\x4a\x6e\xc6\x27\x9a\x9d\x48\x7d\x33\x8b\x7c\xb7\x6b\x73\xd7\xb1\x09\xf3\xa4\xb7\x5e\x89\x5f\xce\xba\xff\x84\x89\x4b\x76\xe9\x85\x8d\xc1\xc9\x01\x29\x88\xcf\xa4\x64\xa5\x51\x0a\xb4\x7d\xdc\xf2\x95\x98\x1d\xc6\x0d\x7d\x98\xee\x3f\x4a\x00\xf0\xd8\x6c\x69\x35\xf7\x25\xba\x3a\x79\x22\xa9\x9b\x74\x19\xd5\x58\x8c\xbb\xeb\xba\x60\x92\x39\x38\xed\x76\xa7\xfd\x48\x41\xda\xe1\x32\x44\x95\x6c\xf8\x59\xe7\xe4\xda\x0b\x13\xe1\xe9\x8c\x62\x8f\x12\xc4\x25\xd7\xbd\x7d\x9d\xd9\xdf\xd7\x58\x80\xa6\x2d\x0d\x75\x4a\x45\x40\x6a\x90\xde\x03\x88\x48\xfd\x0c\xd2\x6a\xa0\xe8\xe2\xef\xe4\x4f\xec\xf8\x37\x2a\x37\x64\x55\xb9\xb5\xed\x9f\x30\xb8\xfe\x9f\x5d\x0a\xe9\xe5\xc3\xb1\x40\x19\xf8\x29\xcb\xc6\x3d\x36\x5a\xea\xb2\x89\xb7\xb8\xc5\x66\x6d\xdc\x44\xe4\xf4\x1f\xaa\x49\xbf\xf5\x7f\x8e\x40\x18\xda\x23\x6a\x4e\x52\xe3\x94\x6a\xce\x92\x3f\x60\x41\x68\x02\x7f\x0c\x6e\x4f\x93\xa7\x19\x37\x8a\xe4\xb1\x7d\x96\x68\xc8\x63\x0b\xe0\xde\x51\x49\x07\x57\x97\xda\xb4\xfa\x39\xcc\x35\x5b\x4c\x79\xb0\xb8\x39\xb2\xeb\xd0\xf2\xc1\x00\xc1\x14\xd9\x2b\xd6\x0b\xdf\x03\x39\x13\x75\x8e\x33\xf4\xb5\x77\x9c\x2c\x57\xfd\x36\xd8\x8e\xbd\xae\x84\xdf\xc7\x23\x6a\xce\x92\x8d\x22\xc0\xb6\x7a\x6c\x4b\x57\x62\xd6\xa8\x8a\xa9\x23\x36\x1a\x3b\x03\x4c\x3a\xcb\xe9\xd1\xf0\xfc\xb5\x9f\xdb\x67\xb3\x43\x75\x5e\x8f\x5b\x4b\x17\x77\x68\x40\x7e\xe3\xc4\x44\xe4\xb5\x78\x64\x8a\xac\x9f\xf5\xcc\xf7\x60\xce\x44\x9d\xe1\x0c\xfd\x57\xc3\xa6\x46\xeb\x76\xd0\xf6\xa6\x7f\xfe\x05\x8b\x7b\xbd\x9f\x8e\xd4\xba\xbd\x9c\x4f\x92\x1f\x53\x42\x3b\x72\x92\xef\xcb\x22\x6f\x6a\xa1\x45\x0d\xd1\xdf\xf9\x6c\x7b\x86\xaf\x4c\x94\x35\x57\xfa\x5d\xf4\x0f\xd5\x79\x05\xb7\x96\x2e\x62\x79\x70\x83\xb4\x39\xfd\x05\x35\x07\x45\xb9\x2d\xe7\x27\x9b\xf8\xf3\x80\x8f\x4b\x6e\xb2\x57\xac\xd3\x04\x7b\x14\x9f\x1e\x16\xbd\x21\xb9\x50\x87\xf1\x35\x9f\x83\x46\x4f\xf8\x8a\x22\xc1\xb6\x57\xb5\xfe\x51\x02\x87\x2f\xa0\x42\x87\x41\x14\xbf\xb9\x23\xa4\x25\x3c\x43\xea\x43\xd2\x2d\xdd\xcb\x85\x65\x51\x3d\xd5\x95\x32\x17\x3f\x55\x2c\xcd\x27\xe5\x64\x04\x2e\xb8\x91\x7d\xe6\x4c\x06\x9b\x26\x43\x4b\xb6\x95\x4b\x4a\x41\x75\x4b\x0a\x0b\xff\xbd\x70\xfc\x94\x7d\xb4\xf2\xe6\x86\xca\x6e\x6c\xb8\x71\x77\x62\x65\xd8\xca\x1b\x0c\x08\xdd\x1b\xc7\xc6\xaa\x59\x21\x20\x27\x64\x8e\x46\x81\x13\x5e\x70\x8f\xba\xbd\xab\x4e\xaf\x31\x3b\xda\x96\x45\xf5\xe4\x96\xa4\x07\x99\xd0\x39\x47\x6b\x92\xe0\xbc\x13\xaf\x20\x49\x4a\xa9\x4f\xbf\xed\x13\xf3\x58\xe7\xa9\x38\x6f\x3c\x26\xa0\x09\xd7\x67\x2b\x9c\x3b\xbe\xc7\x2a\x6d\xcd\x26\x7e\x39\x4d\x35\x25\x8d\x95\x2a\x6e\xec\x68\x0c\x5f\xc9\x09\x59\xcf\x01\x69\xe1\xbb\xf7\x29\x98\xe5\x18\x40\x2e\x81\x60\x43\x6c\x01\x05\xee\xad\xf7\xa3\xd5\xeb\x25\x4d\xd6\x13\xb5\x0b\x28\x4e\x7f\xd3\xac\x59\xbf\x89\xa2\x40\x14\xf5\xb7\x42\x95\xbe\x7a\x24\x0c\xa6\xcf\xf0\x97\x6f\x60\x31\xb4\x6e\x49\x61\xfa\x81\xe7\x2d\x94\xa9\xc1\xa6\xd3\xd1\x8b\x68\xc5\xef\x1b\xbd\x84\xf3\x48\xc9\xf3\xdb\x87\x66\xfb\x10\x0c\x21\x31\x87\x41\x6e\x99\x17\x40\x1b\xc3\x0c\xd8\x46\xf8\xe8\x59\xc0\x63\x79\x14\xbd\x89\x52\x58\xdd\x81\xb2\x19\x61\xbf\xd0\xa3\xe1\xe4\x7f\x73\x16\x0f\xdb\xd3\xfc\x66\xc0\xa9\xaa\xd8\x5a\xc0\x9b\x3d\x19\x48\x31\x62\xaf\x97\xb1\x5e\x1c\x39\xcb\xe6\xbc\xb1\xde\x69\xda\x39\xef\xb2\x81\x1d\x7a\x2c\x39\x1b\xd5\xab\xc5\xee\xd5\x8d\x18\xda\xd2\x17\x5e\x61\x72\x9f\x7a\x15\x8d\xb8\x6d\xe4\x59\xa8\x16\xc4\x26\xa1\x8c\xdc\x62\x60\x7b\x2d\xc2\xc6\x42\xe1\xb5\x8b\xbb\x0a\x50\xa6\xd9\x3a\x83\x1a\x4c\xb3\x66\xf7\xff\xd6\x79\x05\x57\x97\x2e\x8a\xc8\xf7\xa7\x70\xd0\x33\xb5\x82\xfb\x1c\x31\xf4\xf4\x4a\x4c\x4f\xe7\x97\x5e\xfc\x82\x12\xff\x15\xa5\x5c\x04\x28\x6f\x23\x9a\x2a\x9c\xbd\x78\xbb\xd5\x15\x5c\x7a\x94\x6f\xb6\x29\xc7\x2e\x6b\xf8\x2b\x7b\xef\x2c\xad\xc4\xf2\x4b\xf2\x2b\xdb\x72\xf1\x24\xa5\x4b\x4f\xf3\xc1\x63\x20\xb9\x5a\x8f\xd6\xb8\x6e\x84\xb7\x56\xd4\xda\xd4\x6e\x7d\x4a\xcf\x9e\x35\x19\x28\x0a\x54\x33\x88\xd7\x2e\x48\x0d\xd3\x4f\x3a\x7d\xfb\x65\x96\x78\xdd\xa4\x7e\xe0\xba\x2c\xb9\x3b\x1e\xba\xee\x32\x09\x47\x81\x52\x1b\x15\x24\xb6\xbc\xba\x11\xa1\x22\xdf\x87\x94\x2b\x2a\x11\xf3\x17\x7d\xcd\x91\x60\x40\xcb\x31\x8a\x84\x33\x8c\xc2\x64\x99\x21\x77\xd8\xe5\xc2\x72\x80\x0d\x57\x4c\xf5\x64\xe9\x67\xdf\xa2\x47\x73\x4d\x16\x13\x1e\xcc\x5c\x8e\xdf\xf7\xde\x7d\x83\x3c\xe3\x55\x1d\xa6\xd3\x73\x5c\x92\x70\x91\x3d\x2c\x08\x4a\x3a\xfa\x94\x27\x22\xc7\x69\x09\xf5\x2f\x2b\x39\x88\xfe\xf3\x70\x48\x90\x1a\x87\xad\xbc\xc0\x4e\x9e\x8f\xee\xf1\x31\x81\x04\xef\x3b\x08\x8d\x08\x41\xd4\xff\xd1\x7c\x85\x62\xe5\xa4\xc1\x05\xeb\x5c\x37\xc2\xab\x2b\x6c\x5a\xad\x27\x3d\x44\x64\x1b\x1a\xe2\x7a\x63\x39\x04\x29\x99\xa6\x83\x81\xc0\x67\x90\xe4\x39\xfb\x71\x17\x97\x16\xeb\xe1\x93\xe0\x5f\x81\xbb\x9b\x4e\x63\x33\x62\x96\xd8\xe7\x46\xec\xb2\x7f\xb4\x7a\xc2\x5f\x4f\x2a\x71\x84\xad\x8c\x47\x80\x01\xf6\x37\x46\xb0\x88\xf7\x09\x1d\xe8\x5a\x4c\x16\x72\x83\x81\x02\x25\xb8\xe6\x6d\x64\xd9\x62\x3a\x39\x65\x96\x3d\x3b\x59\x58\x2d\x62\xce\x3d\xf0\x04\x24\xf1\x86\x7f\x7a\x9a\x86\x9d\x5d\x0b\x73\xa6\xdb\xe4\x6e\x22\x5d\xe1\xe4\xf9\x3e\xe3\xa0\x51\xf6\xd5\xf0\x9a\xf5\x4f\xe5\x43\xe6\xb1\x68\xa6\xbb\x3b\x09\xe8\xe8\xea\xe3\xb1\xc9\x44\x2b\x6d\x03\x00\x69\x2f\x55\x4a\x1f\xe3\xc1\xe3\x30\x2a\x0c\x51\x67\xa0\xb0\xf8\x63\x25\x15\x9a\x65\xfe\xd4\xf5\x95\xd9\xd6\x6c\xda\x6a\xfa\xb3\x12\x67\x61\x1d\xf3\x0c\x96\x43\xbd\x7d\x64\x2c\xa8\x98\x4e\x0b\x13\xa4\x2b\xd7\x88\xe2\xf0\xe3\x13\x42\x38\x91\x5a\x73\x5b\x3e\xb5\xa6\xfa\x13\x2d\xe5\x3d\xfa\xad\xed\xf3\x1c\x56\x08\xeb\x5e\x45\x88\xea\x09\x04\xc6\xa3\xec\x9e\x34\xa9\xaf\x84\x02\x0a\x78\xbb\xea\xf1\x40\x0a\x2d\x61\x54\x81\xd0\x71\x08\xf6\x50\xe2\x8a\x3c\x0f\x78\x68\xef\x5d\xc3\xdc\x0f\x56\x33\xce\xd9\x2d\x6f\xa3\x87\xa2\xb3\xfd\xde\xc3\x26\xb1\x42\x94\xf4\xd4\x48\x45\x35\x39\xd1\xf8\x29\x57\x27\x4f\x5f\x87\xd3\xf3\xe0\xdb\xe1\x1e\xca\xdb\xd7\x6f\xc5\x15\x88\xf5\x79\xe9\xcc\xf3\x13\x10\xca\xfa\xde\xff\x04\xab\x8f\x35\xde\xcd\xbd\x88\x46\xbc\x91\x13\x02\x92\x1e\x3b\xa9\xf2\x24\x31\x73\xc7\x5c\x63\xe5\x58\x63\x8f\x79\x85\x2f\x7f\x60\x40\x8d\x73\x0a\x12\xf9\x38\x7d\x5f\xa7\xf2\x9e\x9f\xe3\xbb\x77\xd5\xcc\xee\x8e\x37\xb7\x3f\xe0\x97\x27\xe0\xc7\xbc\x99\x74\x90\xe4\x39\x93\xe2\xf9\xf1\x80\x56\x57\xca\x17\x2f\xcc\x3d\x76\x91\x04\x04\x97\xd3\x45\x51\x34\xb7\x34\x64\x53\x6a\xcd\xb0\x1b\xa1\x98\xf0\xe8\x30\xb5\xf1\xdf\xdb\x65\x8d\x52\x30\x33\xd0\xf7\x46\x02\x03\x8b\xea\x0d\x10\x8d\xc0\x9a\x50\xa6\x46\xe1\x68\x2e\xa2\x95\x5d\xca\x21\x98\x8f\x0a\xe9\x37\xa7\xb5\xdf\xfe\x30\x65\xd5\x76\xf7\xf3\xea\x34\x65\x3d\x48\xb8\xdf\xdf\x24\x52\xeb\xe5\xfa\xfb\x67\xd7\x0c\x06\xdc\x87\xd3\xaa\xad\xde\x77\xea\x5e\x4a\xab\x60\xe7\x4a\x13\x25\xbf\x77\x3b\x5d\xad\x63\x31\xce\x0a\x1a\x8d\x63\x0b\x45\x8c\x5f\x21\xbb\xc4\x5d\xbe\xff\xbf\xcb\xc5\x83\x81\xdb\x3e\x8f\x54\x80\x82\x4f\x05\x06\x3f\x38\x93\xd2\x85\xd1\x15\x8f\x31\x91\x2b\xa3\xd8\x43\x2f\x16\xc0\x38\x8d\x49\x71\xbb\xce\xaa\xd3\x70\x9f\xb6\xd1\x42\xa4\xe1\x75\xc9\x7d\xcb\x87\xc3\xcd\x6e\x9d\xfb\x0f\x58\x3f\x5d\xd3\xbb\x96\xa3\xb9\x83\x2a\x9c\xff\x11\xd8\xe0\x4a\xa9\xb1\x1a\x17\x1e\xe0\x00\xd5\xf0\xe3\x2b\x9f\x8c\x2f\x58\x2e\xef\x4a\x6f\xa5\x54\x18\x3a\xe9\x8d\xbf\x40\x17\x21\x12\xff\x0a\x7e\x23\x82\x46\xf7\xf8\x8c\x00\xbd\x80\xbe\xe6\x64\x5e\x48\x17\x41\xa8\x19\xac\x75\x0a\xd6\x5a\x88\x38\x31\xd4\x39\xcd\xa5\x01\x68\xd2\x0a\xd8\x41\x32\x52\x35\x29\xa2\x72\x22\xed\xd3\xf7\xaf\xe9\xb8\xfb\xdd\xdc\x15\xa2\x35\xcf\x60\x89\x2b\x30\xf2\x00\x14\x21\x19\x14\xd4\x48\x68\xda\x9c\x63\xd7\xd3\xcd\xc2\x85\xd1\x48\xed\x49\x78\xbf\x06\x3b\xf9\xfd\x23\xca\xc9\x68\x06\x69\x77\x93\x7a\x0a\x54\x77\x40\x58\x08\x7f\xf5\x65\xa8\xe6\xad\x33\x10\x3c\x61\x9b\x4e\x7b\x6b\x5b\xea\x0c\x70\x3e\x49\x1e\xa0\xa5\x01\x56\xe6\xd8\xff\x4b\x8b\xac\xc5\xdc\xdf\x5f\x2a\xc7\x23\xc3\xb8\xaf\xd3\x80\x0c\x58\xf4\x7c\x15\x0b\x4a\x37\x8d\xa4\xb6\x51\x33\x50\xcb\x9b\x62\xf5\x69\xf7\x3b\x0d\x59\xbd\x6b\xee\x4b\x2b\x66\x19\x41\xc7\xca\x91\xf0\x56\xc8\xfa\x2b\x48\x52\x8a\xaf\xeb\xce\x97\x58\x67\x59\x19\xeb\x4a\x4e\x6c\xc9\x23\xa8\x86\xe3\x80\xf8\x54\x7c\xc1\xd8\x4f\xd5\x01\xc3\x28\x82\xd4\x32\x6c\xfc\x71\x13\x41\xf8\x52\xfa\x6e\xfe\xeb\x56\xc4\xc3\xd5\x44\xfb\xc3\xb1\x3d\x3e\x23\x6a\x3d\xa7\xbe\xe7\x29\x29\x82\xf4\x79\x74\x07\x34\x70\x1a\xa6\xe2\xe7\xb4\xd1\xf1\xdc\x3c\x58\x80\x19\x15\x53\xea\x55\xf8\x04\x34\x29\xc5\x3d\xc0\xcc\x75\xa3\x7d\xfa\xbe\xb6\x9a\xa5\xe8\xea\xf5\x46\xdb\x53\x91\x32\xef\x42\x29\x2c\x33\xea\x4b\x21\x06\x5c\x20\xc7\x76\x9d\x1a\x19\x01\x68\x26\xe1\x8d\x60\x21\x02\x0a\x96\x0c\x43\xe9\xc3\xdb\x57\x72\xa7\xfa\xd3\xc3\x8d\x1b\xf1\xda\x4d\x9f\x89\x6f\x3c\x29\x50\xad\x35\x9d\x74\xf1\x47\x42\x3d\xca\xdf\x47\x7b\x1f\x9e\xff\x4b\x0b\xbb\x6f\x15\x3e\xca\xaa\x24\x4d\xea\x33\xc6\x33\xb1\x4a\x32\xf4\xec\xd1\xc4\xfd\x66\xd7\xdc\xbf\xca\x1f\x08\xfb\x0d\xe6\xd9\xf4\xff\x17\x3e\x90\xc9\x8f\x62\x2a\xb8\x99\xe3\x5a\xaa\x3f\x14\xd7\x5b\xd5\x32\xe0\x0d\xb5\xbc\xb9\xc6\x75\x23\xff\xe8\xc1\xf0\xbe\xb3\x35\x5d\xf9\x3b\x58\x21\x0a\x5f\xae\x0a\xe6\xc1\xc0\x34\x91\x07\x28\xb8\x5e\x9c\x82\x26\xf5\x7d\x6d\x30\xde\x88\xfd\xc4\x38\xa8\x51\x20\xeb\x5e\xfc\x54\x96\xba\x41\x6d\x26\xb6\xc4\x95\xb2\xa1\x74\x38\xbb\xb1\xdf\x3d\x51\x2b\xc3\x68\xd3\x07\xa5\x38\xe3\x51\x5e\x44\xa9\xf0\xfd\x7d\x19\xfb\x39\xb6\x92\x54\x0c\xbf\xac\x4f\x53\xe2\x08\x75\x70\xca\x1c\x78\x49\xdd\xac\x00\xa7\x07\x2f\x07\x66\x3d\x46\xba\x5b\x2e\x23\xb1\x49\xfc\xf0\x94\x04\xed\xae\x91\xde\x5a\x35\x80\x79\xd6\xc5\xb2\xca\x00\xcb\x1c\xcf\x34\x04\x2b\x4f\xf6\x31\x2f\x75\xae\x7c\xde\xd2\xbd\x6f\x6e\xf6\xfd\xb1\x42\x96\x54\x88\xeb\xbb\x9c\x2d\x6d\xc1\x32\x9c\x04\x96\x19\x8c\x71\x52\x43\x46\x89\x05\x6f\xb0\x05\xdc\x84\xc1\xb0\xfc\x74\xe5\x87\x14\x02\x8a\x1a\x0c\xee\x96\x2c\xd5\xe9\x3d\xd9\xa2\xf1\xb2\xd9\xf2\x1e\x3f\x06\x0b\x16\x46\x03\x37\x7a\x88\x90\x08\x0c\x23\xbb\x26\x0e\x93\xa2\x1a\x99\xef\x44\x9a\x80\x87\x58\xec\x2f\x14\x98\x5c\x96\x9b\x93\x9c\x4f\x92\xdf\xd8\xb9\x0a\x72\x3b\x1c\xb3\x4d\x08\xa3\x13\xfc\x91\x5a\xf4\xc5\x81\xb4\xea\xec\x63\x53\xf6\xa3\x0c\x50\x38\xc0\x96\xdc\x01\xc0\x8c\xe4\x0c\x8f\xf4\xd8\xb0\x52\xa1\xae\x0e\x8a\xe9\xdf\x9b\x06\xeb\x42\x9c\xde\x28\x35\xe8\xe6\x5b\x7c\xd6\x17\xcd\x35\xba\xbb\xaa\xba\xcd\x7f\x9d\x51\xfd\x86\xc1\xb8\x7b\xa4\xae\x8a\xd7\x28\x0b\xad\xea\xb3\x85\x17\x07\xcc\x70\x86\xa9\x96\x3f\x79\x03\xa3\x7d\xfe\x09\x29\x3e\xa8\xdb\x82\xf4\x9e\xa8\xd0\x7c\xad\x45\xfb\x2e\x2f\x16\xbb\x3b\xb1\xef\xdd\xef\xd5\x5b\x72\x78\xc8\x1c\x16\x8c\xa1\x03\x06\x4c\x9f\x13\x24\x96\x03\x75\x83\x52\x00\xaa\x24\x2b\xc6\xa5\xba\x45\x64\x6f\xfc\x11\x1a\x84\x76\x2e\xae\xde\x9b\x38\xde\xa2\xd3\x59\xbb\x5b\x94\x38\xc8\x2f\x04\x24\xe9\x68\xe0\xe9\x01\xb9\x56\x36\xcd\xfe\xeb\x9a\x4c\x94\x5e\x86\x49\x2b\x58\x5b\x8a\x84\x7f\x58\xa6\x84\xd7\xda\x5d\xc6\x7a\xc6\x6a\xf4\x6a\xbb\x2b\xec\x6c\xec\x89\x16\x41\x18\xbf\x34\x26\x13\xda\xf2\x52\x9a\xc2\xe7\x1a\x69\x4c\x26\xcb\xc6\x46\x50\xc3\x37\x48\x14\xd3\xe8\xd0\x1d\x64\x14\x30\x6a\x20\x44\xaf\x05\xc3\x04\x70\xc7\x52\xa9\xe0\x7c\xe3\x03\xbf\x26\xbd\xf8\xe7\x4f\x0d\xa4\xe0\x92\x54\x69\xb0\x18\x4f\x5e\x0a\x3d\x47\x7a\xf4\x26\x95\xf1\x59\x18\x71\xae\x6c\xfc\x80\x79\x59\x3e\xd6\xd3\xcd\x44\xae\xb1\xe7\x6f\x23\x8a\xcb\x8c\xa1\x66\xc4\x61\xc9\xdf\x94\x14\x81\x94\x9c\x13\xb8\x26\xd3\x34\x66\xff\x63\xa9\x77\x44\x83\x01\xa4\x35\x42\xb8\x69\x3f\xfa\xac\xf5\x43\x9c\x12\xc0\x11\xe6\x70\x8c\x01\xe1\xac\x5c\xf3\xb0\xf0\x38\x5e\x98\x3a\x03\x65\x37\xbc\x4d\x72\x49\x86\x92\x26\x22\x6a\xcc\x67\xc8\x18\x5c\x92\x62\x80\x82\xd9\xe7\xee\x81\x4c\x6e\x1b\x4a\xeb\x99\x08\xc8\x2f\x80\x7f\x5e\x84\x12\x9b\x57\x4e\x16\x35\x0b\x74\x7d\x15\xa8\x19\x31\x34\xbc\x77\x89\x2d\x1b\x4d\x5b\x77\x28\x6d\x46\x87\xc7\xca\x24\xf7\x98\x97\x83\x75\xcf\x72\xb4\xc5\x62\x98\x5b\x0e\x82\xb9\x3f\x1f\xbd\x5d\xc4\x5d\xe5\xf0\xe2\xcb\xb9\x85\x67\x48\x8c\x8c\x0b\x9d\x1b\x3d\x98\x96\xb9\x2a\x75\x62\xd8\x9d\x50\x19\xea\xf0\x14\x03\xc2\xe9\x5e\xb1\x8f\x8d\xd8\xb8\x1d\x9f\x5b\xb6\x4a\x1f\xc7\x0b\xef\x61\x67\x4e\x51\xeb\x40\xf2\x60\x18\x13\xba\xd5\xc7\xcf\xd1\x31\xc5\x93\x3b\x05\xc9\xf5\x41\xdc\x0e\x27\xa9\xa6\x17\x91\x51\x1d\x05\x26\x21\x59\x6f\x11\xcc\xdd\xd7\xee\xee\x08\x06\xed\xfe\xf3\x91\x3e\xeb\x9b\xc3\x81\x81\x37\xda\x3d\xf4\x14\xcb\x5e\x99\x2f\x6c\x33\xcb\x90\x5a\x5c\xf0\x20\xb7\xd1\xfe\xf0\xa4\x6b\xc8\xef\x27\x74\x4c\x60\x2d\x22\x97\x32\xd5\x86\x6c\x50\x11\x0c\x27\x4d\x40\x28\x26\x72\xda\x5f\x2d\x7a\x15\x81\x5d\x8f\x84\x5f\xc8\x89\x85\x4a\x9f\xc1\x52\x00\x1a\xc0\x61\x8b\x9d\x97\xb2\x70\x5d\x6b\x21\x82\x1f\x8b\xd6\x65\x2e\x8e\xb7\x53\x0f\x63\x26\x92\x5d\x5a\x80\x7f\xc1\xaf\x16\xc3\x5f\x4f\xd4\x5c\x4e\xc4\x91\x85\xde\xe2\xec\x54\xec\xa6\x63\xc8\x7f\x8b\x9f\x50\x68\xde\x3a\x66\x9b\xd0\x48\x62\x36\x00\x90\x52\xdf\x32\x1f\x21\xc3\xb8\xa4\x85\xe0\x44\x8e\x62\x6a\x4a\xc9\x2e\x7b\x17\xf5\xf0\x1f\x93\x64\xa1\x1e\x65\xfe\x21\xdb\x04\x5e\x20\x3a\x90\x42\x9d\x01\x16\x99\x97\x5f\x9f\x85\x78\xec\x97\xff\xb9\x9f\x0a\x53\x94\x88\x34\xfc\x0f\xd5\x89\x65\x03\x34\x65\xd3\x5d\xd4\xfd\x98\xed\xd0\x7d\x91\xe8\x0d\xb9\x9a\x4e\xc1\xbb\x35\x52\x9b\x6d\x2a\x29\x71\x84\xf2\x3c\x1c\x16\x8f\xbc\xc7\x05\x97\x4f\x60\xac\x44\xdc\xd0\x09\x2f\xe8\xfc\x1f\xd4\xa5\x00\xc0\xac\x45\x1b\xd1\xe0\x4f\xbc\x92\x84\x62\x94\x95\x62\x25\x10\x8f\x9f\x87\x5b\x74\xe7\xab\x66\x01\x31\x79\x03\xa0\x44\x3a\xa9\x05\x02\x9b\x3f\x6e\xec\x8a\x22\x47\x08\xe4\x36\x9f\x01\x80\xf4\x19\x88\xc1\x23\x2f\x0f\xde\xd3\xab\xcc\x9e\x0a\xf5\x84\x4c\x3f\x81\x9f\x9f\x47\xee\x80\x0a\x16\x6d\xaf\x6a\xd3\xe8\x06\xb9\x25\x69\xb2\xad\x7e\x30\xbc\xbc\x8a\xa9\xfb\xa0\x7f\x76\xca\x26\x7d\x06\x93\x54\x12\x02\xe8\x8b\x07\x00\x2c\x80\xce\x12\x8a\xc9\x4b\xf4\xe1\x22\x2e\xc2\xe5\xf5\xcf\x6e\xf7\xa3\x19\xe8\x95\x11\x02\x34\x3d\xa1\xc3\xef\x7b\xc7\xc3\x94\x28\xe3\x15\xf1\x39\x57\x84\x00\x7a\xfe\xe7\x3c\x78\x00\x79\x7a\x2e\x55\x63\x10\x93\x97\x78\x30\x87\x9d\x4a\x3a\xfc\x82\x55\xf7\xb1\x32\xa4\x57\x44\xac\x37\x17\x5d\xce\x51\xfc\x57\x0e\xc2\x00\x40\xf6\xb1\xc5\x21\x69\x54\xd4\x19\xa8\xb4\x12\x73\x8f\x17\xe3\xbd\xaf\x74\xc3\xdf\x29\xac\xda\x17\x71\x1c\xbe\x8d\xe6\x8a\x57\xc4\x5b\x71\x09\x01\xf4\x2b\x70\xb6\xbb\x6c\x00\x9c\xbc\xa0\xb8\xbd\x9b\xff\x7c\x22\x26\xca\x2b\x8c\x0e\x70\xde\x60\x58\x91\xc4\x81\x01\xec\xf0\x1b\x89\x6f\xd8\x9c\x81\xbd\xeb\x8a\x0d\x1f\xd4\xef\x26\x22\x33\x32\x06\xd0\xcd\xc8\x3e\xab\x83\x38\xb0\xdd\xa3\x02\x2f\x8d\xa4\x4d\x27\x94\x20\x37\x04\x2b\x9f\xf3\x3c\x00\x73\x37\x01\x09\xc3\xff\x2f\xc7\x20\x9a\xac\xec\x90\xee\x76\xfc\xd4\xf4\xa5\x31\x00\x00\x37\x7c\xd5\x1e\xf8\x3a\xd8\xf9\x3a\xca\xdb\x7b\x3b\xda\xf9\x3a\x02\x92\x68\x09\x59\x51\xb4\x94\xa8\x94\x84\x31\x1a\x2d\x2f\x2d\x25\x2f\x29\x25\x8c\x96\x94\x47\xa3\xbb\xc5\xd0\x33\xff\x0f\xe0\xee\xe1\xe0\xe2\x14\xf8\xff\x07\xea\x7c\x62\x1c\x01\x00\x30\x0b\x32\x7e\xe0\x7b\xdf\xce\x1f\xe9\xe9\xed\xe1\xe4\xe2\xe6\x88\xf4\x0d\xf4\x74\x44\xba\x78\xfa\xda\x03\x40\x40\x0e\x61\x1f\x0e\xf3\x32\x15\x12\xea\xd7\x1f\x18\xd4\x5a\xbd\x0f\x50\xf0\xd1\x8a\xd9\xd3\x32\xf1\x31\xe9\xa4\x32\x53\x30\x21\x55\x71\xd2\xdd\x0e\x14\x7c\x1f\x8d\x91\x03\xd3\x3f\xfa\xbe\x0e\x7e\xe5\xfa\x4a\x35\x80\xd3\x2c\xd0\x16\x03\xb6\xae\x31\xf8\xee\xab\xc8\xa4\x01\x00\x00\x68\xa9\xe9\xa9\xd6\xa8\xd8\xe2\xff\x4f\x00\x00\x00\xff\xff\xf1\x18\xc7\x0e\x41\xe4\x00\x00") + +func web_uiV2AssetsAndroidChrome512x512707625c5eb04f602ade1f89a8868a329PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsAndroidChrome512x512707625c5eb04f602ade1f89a8868a329Png, + "web_ui/v2/assets/android-chrome-512x512-707625c5eb04f602ade1f89a8868a329.png", + ) +} + +func web_uiV2AssetsAndroidChrome512x512707625c5eb04f602ade1f89a8868a329Png() (*asset, error) { + bytes, err := web_uiV2AssetsAndroidChrome512x512707625c5eb04f602ade1f89a8868a329PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/android-chrome-512x512-707625c5eb04f602ade1f89a8868a329.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsAppleTouchIcon114x11449e20f98710f64b0cae7545628a94496Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xd8\x3c\x27\xc3\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x72\x00\x00\x00\x72\x08\x06\x00\x00\x00\x8f\xdd\x85\x7d\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xbd\x79\x70\x1c\x57\x7a\x27\xf8\xfb\x5e\x66\x65\x9d\xa8\xc2\x7d\x11\x04\x08\x10\x04\xc1\x53\xa4\x28\x52\x14\x49\x91\x52\x5b\x52\x77\x4b\xb2\xa7\x2f\xb7\xa7\x7d\x6f\xc4\xba\x3d\x0e\x4f\x78\xc3\x31\x13\xe1\xd8\xd8\xf0\x4e\x78\x1d\xb3\xde\x0d\xaf\x63\xd7\x31\xe3\xe8\xe8\x9d\xe8\xe9\xb1\x3d\x3d\x3d\x76\x77\xbb\x65\x75\xdb\x56\x4b\x6c\x49\x2d\x91\x94\x78\x88\x27\x44\x82\x04\x08\x92\x00\x08\x80\x40\xa1\x50\xa8\xbb\xb2\xb2\xde\xb7\x7f\x54\x66\x56\x56\x22\xab\x00\x48\x6a\xcf\x7a\x63\x3f\x44\x21\x33\xdf\xf9\xbd\xef\xe5\xfb\xae\x77\x24\x01\x10\xd8\x3c\x48\x33\x9f\x75\xf5\x8a\x6b\x94\xef\x1f\xbb\xcc\x8d\xa4\xdd\x0c\x7c\x5c\x5c\x7f\x9a\x6d\xfc\xff\xe1\xff\x4b\xe0\xee\xd9\x46\xcf\x5e\x71\xc2\xe3\xde\x9d\xde\x7d\xdd\x6c\x1a\x2f\xd8\x0c\x2e\x1b\x79\xde\x08\x4e\x1b\xa5\xcd\x7a\xf9\xd7\x6b\xe3\x86\xea\x53\x1d\x81\xb2\x4e\xa2\x7a\x61\xf5\xd2\x3b\xcb\x72\x97\x5b\xaf\x2c\xeb\xd9\xc9\x7a\xdc\xe5\x79\xb1\xa4\xcd\xe0\xec\x2c\xd7\x8b\x1d\x59\xf1\xf5\xe2\x1a\x95\xeb\x55\x47\x23\xd8\x48\x67\x7a\xd1\xa2\x2e\x2e\x54\xa7\x90\x7f\xca\x50\x4f\x66\x6c\x56\x2e\xfd\xbf\x11\xbc\x5e\xe8\x0d\xb5\xe1\x93\x68\xe4\x7a\x6f\xf7\x3f\x35\xd8\x08\xb7\xda\x48\x1b\x37\x2b\x3e\x1a\x82\xea\x7a\xde\x28\x6b\x58\x2f\xad\x9b\x1d\x3a\xc1\x1d\xee\xc5\x3a\xeb\x5e\xdb\xdb\xdb\x45\x7b\x7b\x3b\xda\xdb\xdb\xd1\xda\xda\x8a\x58\x2c\x06\xbf\xdf\x2f\x88\xc8\x2a\x4b\x10\x11\x98\x19\xd6\xd5\xaa\xd7\x7c\x96\xcc\x8c\xd5\xd5\x55\x99\xcb\xe5\x10\x8f\xc7\xb1\xb2\xb2\x82\xa5\xa5\x25\xac\xae\xae\x42\x4a\xe9\xc4\xab\x11\xce\xce\xf0\x7a\xe9\xdd\xed\x76\xa7\xf3\xa2\x97\x57\x19\x8d\xe8\x02\x00\xc2\x8b\xb5\x7e\x5c\xd5\x78\x23\xc3\xbe\x51\x1d\x35\x71\xed\xed\xed\xd8\xb6\x6d\x1b\x7a\x7a\x7a\xd0\xd6\xd6\x26\x7c\x3e\x9f\x20\x22\x01\x86\x2a\x18\x5a\x48\x57\x22\x61\x5d\xe9\x8e\x16\x94\x5e\xbf\x21\x5a\x43\x25\xa5\x59\x33\x28\xa2\x30\xf9\x89\xa1\x32\xc1\x30\x04\xe7\x0b\xaa\x4c\x15\x7c\x32\x99\xf7\x95\x17\xd3\xfe\xf2\x42\xc6\x5f\x8e\x17\x7c\x32\xc3\x04\x03\x80\xc1\xcc\x32\x9f\xcf\xcb\x44\x22\x21\xef\xdf\xbf\x8f\x9b\x37\x6f\xfe\x34\xd9\xee\x47\x31\x43\x1a\x75\x2c\x68\x93\x08\x6c\x46\x98\x6f\x74\x64\xaf\x81\x96\x96\x16\xb1\x7b\xf7\x6e\x6c\xdb\xb6\x0d\xa1\x50\x48\x25\x22\x55\x91\x08\xc4\xf2\x6a\x77\x77\x5a\xdb\xdb\x9d\xf2\x1f\x6e\xcf\xfa\xf6\xb6\xe4\xd4\x11\xad\x2c\xba\x05\x23\x00\x8f\xc6\x13\x03\xf6\x78\xac\x6d\xa9\x94\x84\x4c\xc1\x27\x67\x97\x43\xa5\x3b\x4b\x11\xfd\xfa\x42\x54\xff\xe0\x51\x44\xbf\x99\xf6\x97\xe3\x2c\xa0\x33\xb3\x9e\x4e\xa7\xe5\xf8\xf8\x38\xa6\xa6\xa6\x90\x4a\xa5\xd6\x6b\xcf\x47\x6d\xf3\xc7\xa2\x95\x05\x56\xf3\xd6\xd3\x14\x37\x8a\xc0\x46\x90\xaa\x9b\x66\xf7\xee\xdd\x62\x74\x74\x14\x6d\x6d\x6d\x2a\x00\x55\x93\x22\xba\x75\xc5\x7f\x60\x68\x39\xf8\xe9\xbe\x55\xff\x89\xa6\x82\xba\x5b\x30\x42\x60\x02\x11\x1c\xbd\x64\xb6\x84\x1d\xf7\x00\x98\x01\xa2\x4a\x30\x99\x71\x8c\xda\x3e\x65\x32\x3b\x9c\x18\x65\x81\x64\x32\x58\xba\x3e\xdd\x52\x7c\xe7\x6e\x5b\xfe\x47\xf3\xd1\xe2\x78\x99\x38\xc7\xcc\xfa\xdc\xdc\x9c\xbc\x79\xf3\x26\x66\x66\x66\x50\x2e\x97\x1b\x69\x94\x1b\xa5\x5b\x23\x56\xb9\x61\x9a\x59\x71\xee\x8e\xac\xa7\xea\xaf\xcb\xa3\xd7\xc9\x07\xc7\xb3\x13\x01\x44\x22\x11\x3c\xf6\xd8\x63\x18\x1a\x1a\x12\x81\x40\x40\x55\x98\x22\x3d\x29\xff\xde\xdd\x8f\x42\x5f\x1c\x8a\x07\x5f\x0c\x18\x62\x1b\x98\x84\xd5\x4f\xe4\xe8\x05\xab\xa3\xec\xde\x31\xaf\x76\x7f\xda\x09\xac\x0c\xa8\xed\x64\x98\x1d\xe9\x2a\x8f\x2b\x25\x18\x19\x7f\x79\xfc\x4e\x47\xee\xd5\xf1\xae\xdc\xf7\xe3\xe1\xd2\x24\x13\x72\xd9\x6c\xd6\xb8\x72\xe5\x8a\xc5\x7a\x6b\xda\x52\xaf\x8d\x1e\x34\x84\xc7\x3d\x5c\x69\x37\x9a\x7f\xd3\xe6\xc7\x27\x2a\x33\xc2\xe1\x30\x0e\x1e\x3c\x88\x91\x91\x11\xa1\xaa\xaa\xe6\x2f\x51\xf3\xe8\x62\xf8\xc5\x7d\xf3\xe1\xff\xae\x35\xeb\x3b\x42\x80\x4a\xce\xde\xb1\xc1\xfd\x8c\x35\x1d\x59\x3f\x8f\x33\xdc\x2b\xcc\x8a\xe1\xca\x08\x26\x00\x20\x94\x89\x73\x0b\x51\xfd\xed\x6b\xbd\x99\x6f\xdc\x6d\xcb\x9d\x29\x2b\x48\xe9\xba\xae\x5f\xbc\x78\x11\xe3\xe3\xe3\x28\x97\xcb\x1f\x9f\x20\x1f\x13\x36\x2b\x23\x3f\x11\x38\x78\xf0\xa0\xd8\xb7\x6f\x9f\x08\x04\x02\x5a\xa0\x24\x3a\xf7\xcf\x45\xbe\xf4\xd8\xc3\xc8\x6f\x85\x4a\x62\x88\xd6\x10\xda\x7a\x62\x10\xc8\x63\x18\xc2\x95\xde\x2b\x1c\x70\x0f\xc5\x4a\x31\x55\xed\xb6\x26\xbd\xa3\x13\xed\x78\x66\x30\x41\x26\x03\xc6\xd5\x0f\xb6\xa6\xff\xdd\x78\x57\xee\x35\x43\xe1\x64\x26\x93\xd1\x2f\x5e\xbc\x88\xc9\xc9\x49\x30\x73\x3d\xe7\x87\x97\xd8\xaa\x97\xce\x2b\xbd\x05\x75\xc5\x1f\x79\x24\x76\xc3\x7a\xac\xb2\xae\x26\xe5\x4e\xd7\xd3\xd3\x83\xe3\xc7\x8f\xa3\xb5\xb5\x55\x53\xca\xd4\xbc\x6f\x3e\xfc\x85\x27\x66\xa2\xbf\x1b\xd6\xc5\x30\x00\x80\x6d\xfa\xd5\x90\xbf\x42\x57\x8b\xa8\xb5\xa1\x30\x33\xda\x72\xd0\xea\x00\xab\xe3\x2d\x46\x59\x29\xc1\xd5\xdd\x66\xbc\xcd\xb3\xd9\x4e\x45\x66\x18\xdb\x98\x38\x4b\x80\x5c\x09\x1a\x97\xdf\xdb\xb6\xfa\xbf\x4f\x76\xe4\xdf\x64\x42\x66\x7e\x7e\xde\x78\xf7\xdd\x77\x91\x4c\x26\x37\x6a\x5e\xc1\x11\xef\xa6\x67\x23\x3d\xc3\xb3\x1c\xc2\x5a\xe2\x7f\xe2\x9e\x76\xbf\xdf\x8f\xc3\x87\x0f\x63\xd7\xae\x5d\x2a\x81\x42\xdb\x12\x81\x63\x4f\x4f\x35\xff\x9b\xd6\x9c\x7a\xa4\xca\x09\xdd\xda\x0b\xd6\x0c\x32\xb7\xc8\x5b\x93\x6e\x03\xe1\xce\x0e\xac\x16\x6a\xc5\x92\x99\x86\xd7\x65\x55\x26\xa6\x72\x36\x56\xfc\xfb\x77\xb6\x27\xff\x70\x29\x52\xba\x59\x96\xe5\xc2\xf9\xf3\xe7\xe5\xcd\x9b\x37\x2d\x7b\x74\x3d\xd3\x62\xb3\x74\xaf\x2b\x3b\x15\x13\x27\x67\x44\xa3\x36\xd4\x23\x99\x55\xe0\x9a\xb8\xce\xce\x4e\xbc\xf0\xc2\x0b\xe8\xef\xef\x0f\x84\x4b\x4a\xdf\xb3\x93\x2d\xbf\x7f\xfc\x7e\xec\x8f\xc2\xba\x18\x70\x2a\x1b\x55\xed\xd1\x7c\x66\x47\x1f\x9a\x37\x6b\x38\xaa\xf3\x9e\x1c\x8f\xce\x72\xac\x68\x47\x1e\x72\xbc\x14\x6c\xe6\xb5\x4c\x15\x32\x03\xad\xf4\xd6\x48\xb7\xdf\x29\xaa\xd6\x01\x80\x62\x05\x75\x64\xd7\x62\xf8\xe7\x55\x49\xfc\x28\x66\x8c\x6f\x19\xd8\x5a\xea\xe8\xe8\x28\xcf\xcf\xcf\x53\xa9\x54\x72\x93\xc3\x49\x1f\xe9\x0a\x6b\x44\x77\x67\x1a\x77\x3a\x82\x47\xa0\x05\x8d\x54\xe2\x46\x5a\x6b\x4d\x9a\x7d\xfb\xf6\x89\x27\x9f\x7c\x52\x08\x12\x91\x81\x95\xc0\x89\x9f\xb9\xd3\xf2\xc7\x4d\x45\x65\xb4\x2a\xaf\xaa\x98\x30\x39\xee\xcd\x38\x9b\x98\xeb\x8c\x38\xeb\x05\x70\x36\x88\x1d\xf1\x40\x95\xed\x3a\x07\xb9\x9d\xdf\x55\x67\xcd\xbb\xe2\x2a\x83\x1d\x15\xd8\x2f\x82\xd9\xdb\x8b\x91\xd2\xdb\xaf\xef\x4c\xfc\xde\x72\xb8\x34\xb6\x9c\x58\x2e\x7c\xef\x7b\xdf\xdb\xa8\x49\xf7\x51\x4d\x0f\x1b\x3e\x8a\xf9\xe1\xac\xc0\x1d\x67\xa7\x79\xf6\xd9\x67\xc5\x8e\x1d\x3b\x54\x45\xa2\xf5\xc9\x07\xb1\xaf\x1e\x9a\x69\xfa\x3d\x85\x29\x54\x3b\x14\xaa\x58\xd4\xca\x38\xd4\xb5\x11\x19\x6c\x8f\x1a\x36\x4d\x05\x5d\xe5\x42\x56\x2b\x67\x32\x7e\x23\x95\xf7\xc9\x5c\x41\x95\x85\xb2\x60\x43\x12\xa4\xc2\x24\xd4\x32\x69\x01\x43\x84\x42\xba\x08\x45\x8a\x6a\x34\xac\x8b\x88\x2a\x49\xf5\xb4\x47\xed\xca\xeb\xbd\xe3\x2e\xfc\x6b\x70\x03\x74\x55\x2e\xbc\xba\x37\xfe\xf3\xb3\xb1\xc2\x85\x9f\xfc\xe4\x27\xc6\x9d\x3b\x77\xac\x8c\x9e\x66\x03\xd6\x17\x57\x1b\x31\x07\xa1\x3a\x22\xeb\x5d\xeb\x85\x79\xc6\xf9\x7c\x3e\xf1\xdc\x73\xcf\xa1\xaf\xaf\x4f\x0b\xe9\xa2\xff\x85\xf1\xd6\x3f\x1a\x58\x09\x7c\x81\xd8\x92\x3f\x54\x43\xa2\x8a\x62\xe1\xe0\x9d\xf6\xc8\x71\x2a\x1e\x66\x5e\x62\x18\x82\x8d\xe5\xb0\xbe\x38\x17\xd5\xa7\xe7\x62\xc5\xa9\xe5\x70\x69\x36\xed\x2f\x3f\x2a\x0b\x4e\x31\x90\x03\xa0\xa3\xea\x76\x03\x11\x09\x00\x02\xcc\x1a\x40\x01\x02\x42\x9a\x41\xcd\xb1\x82\xda\xd3\x99\xd6\xb6\xf5\xa4\xfc\xfd\x5b\x56\xb5\xfe\xa6\xa2\xda\x2c\x18\xa2\xa2\x54\x59\xea\x12\x6a\xf8\xb0\xcd\xf2\xb9\x06\xbb\x2a\xee\x60\x2c\x87\x4b\x8b\x8b\x11\xbd\x40\x44\x6a\x53\x53\x93\xd1\x88\x56\x0d\x68\x0a\x54\x3b\x69\x23\xb4\x87\x8a\x4f\xc0\x3d\x64\x41\x38\x1c\x16\x2f\xbf\xfc\x32\x62\xb1\x58\xa0\x39\xa7\xee\x7e\xf9\xc3\xf6\xaf\xb5\xe5\xd4\x27\xac\x2e\xb4\xd5\x0c\x8b\x30\xb6\x43\xbb\xea\xe0\xae\xc8\x9f\xda\x61\x59\x52\xa4\x31\xd3\x5c\x9c\x9a\xe8\xc8\x5d\x9f\x6d\x2e\xde\x4c\xfb\xcb\x0f\x18\x1c\x27\xa2\x24\x33\xa7\x00\xe4\x88\x48\x67\x66\x9d\x88\x0c\xd3\x0c\x90\xb0\xea\xaa\x34\x58\x25\x82\x2a\x99\xd5\xa2\x0f\xa1\x47\xaa\x1e\x7a\x14\xd1\xa3\x37\x7a\x32\xad\x0a\x53\x67\x6b\xce\xb7\x7d\x68\x39\xb0\x7f\x38\x1e\xda\xdb\x9e\xf1\x75\x13\x3b\x74\x54\x58\x72\xd1\x31\x74\x4d\xc9\x44\x96\x39\x03\x20\xab\x95\x93\xaf\x8d\x2e\xff\x87\x92\xca\x09\x66\x36\x52\xa9\x14\x5c\xf4\xdd\x2c\xad\xd7\x4b\x6f\xc7\xbb\x67\x3f\xdc\xe0\x1c\xca\x5e\x71\x76\x78\x24\x12\x11\x2f\xbd\xf4\x12\x62\xd1\x58\xa8\x2b\xa5\x3d\xf1\xb3\x1f\xb6\x7f\x23\xac\x2b\x43\x55\x85\xb0\x42\x84\x2a\x61\x9c\xda\x4b\x25\xc6\xad\x91\xae\x04\x8d\xc4\x58\x77\xf6\xd2\xed\xce\xdc\xd9\x8c\xbf\x3c\xc9\xe0\x05\x00\x71\x00\x49\x22\xca\x31\xb3\x0e\x40\x07\x20\xa5\x94\x52\xd7\x75\x00\x90\x89\x44\x02\x86\x51\x1d\x0c\x7e\xbf\x1f\xb1\x58\x0c\x44\x24\x34\x4d\xb3\x70\x57\x89\x48\x05\x10\x28\x83\x23\xf1\x48\xa9\x35\x1e\x29\xbd\x71\x71\x6b\xba\xaf\x33\xeb\xdb\xb7\x77\x3e\x72\x6c\xc7\x62\x68\xaf\xbf\x8c\xc0\x5a\x6d\xcb\xc4\x1f\xb0\x4d\x94\x32\xb1\xf1\xc6\xce\x95\xff\xb4\x1a\x30\x2e\x80\x11\x5f\x5d\x5d\x35\x26\x26\x26\xea\x79\x71\x36\xea\x9a\xf3\xa2\xb5\xa7\x3e\x62\x99\x1f\x1b\x81\xba\xbc\x3c\x1c\x0e\xc3\x1c\x89\xa1\xde\xa4\x76\xec\xe5\x9b\xed\xdf\x08\x95\x44\xdf\x9a\x84\xf5\xcc\x01\x97\xfd\x17\x0f\x97\x16\x2e\x6d\x4d\xbf\x7d\xb7\x3d\xff\x6e\x49\xc8\x29\x22\x9a\x03\x90\x00\x90\x61\xe6\x02\x11\x19\x89\x44\x42\x2e\x2c\x2c\x20\x1e\x8f\x23\x1e\x8f\x23\x9f\xcf\x23\x9b\xcd\x36\x6c\x00\x11\x21\x1a\x8d\x22\x12\x89\xa0\xa3\xa3\x03\xed\xed\xed\xe8\xea\xea\xb2\x1d\xf3\x00\x02\xcc\x1c\x05\xd0\x49\x44\x7d\xe1\xa2\xb2\x7b\xff\x5c\xf8\x67\xf6\xcf\x45\x8e\x04\x0c\x11\xaa\x3a\x24\x6a\xdb\xc2\x00\xde\xdb\x96\x7a\xf5\x42\x7f\xea\x4f\x19\x3c\x26\xa5\x4c\xfc\xe0\x07\x3f\x90\x8b\x8b\x8b\x8d\xcc\x8d\x4d\xd1\xb8\x4e\xfc\xa6\x5d\x74\x75\x2b\xf0\xf9\x7c\xf8\xc2\x17\xbe\x80\x58\x2c\x16\xea\x4a\x69\x47\x3e\x77\xa3\xfd\x5b\x41\x43\xe9\xae\x49\xe4\x6c\xb4\xd3\x16\xac\x31\x13\x18\x29\x7f\x39\x79\x7e\xdb\xea\xe9\xdb\x9d\xb9\x37\x0c\xe2\x49\x00\xb3\x30\x3b\xb0\x5c\x2e\x1b\xf3\xf3\xf3\x72\x6a\x6a\x0a\x73\x73\x73\x48\xa7\xd3\x1b\x69\xf8\xba\x40\x44\x88\xc5\x62\xd8\xbe\x7d\x3b\x06\x07\x07\xd1\xd2\xd2\xa2\x02\xd0\x00\x44\x00\x74\x12\xa8\x3f\xac\x8b\xbd\x4f\xcc\x44\x7f\x76\xef\x7c\xf8\x88\x5a\x16\xaa\xdb\x7c\xb9\xdb\x96\xbb\xfa\xf7\xbb\x97\xff\x50\x0a\x5c\x00\xb0\x78\xee\xdc\x39\x63\x6c\x6c\xec\xe3\xa0\xb5\xf9\x76\xb8\x9e\x1b\xb1\x52\x37\x08\x00\xf2\xb3\x9f\xfd\xac\xd8\xba\x75\x6b\xa0\x2d\xeb\x3b\xf0\xf9\xeb\x1d\xdf\x8a\x14\x95\x6d\x76\xc9\x6e\x6d\xd0\x5d\x9b\xd9\xc1\x06\xb1\x71\x6d\x4b\xe6\xfd\x0b\xfd\xab\xdf\x2b\xfa\x78\x0c\xc0\x7d\x54\x58\x68\x2e\x95\x4a\x19\xe3\xe3\xe3\xb8\x7a\xf5\xea\x27\x26\xcb\xd7\x83\x93\x27\x4f\x8a\xc1\xc1\x41\xe1\xf7\xfb\x35\x66\x8e\x10\x51\x37\x18\x43\xed\x59\xdf\x53\xa7\xee\x36\x7f\xa9\x2f\xe9\x1f\xb2\xe4\xfd\x4a\xb0\xb4\xf8\xd7\x07\x16\x7f\x3f\xaf\xc9\xb7\x01\xcc\xde\xb9\x73\xa7\xf0\xf6\xdb\x6f\xff\xa3\xe1\x6a\xc1\x46\xcc\x8f\xba\x7c\xfe\xc4\x89\x13\x62\xf7\xee\xdd\x5a\xb8\x28\x86\xbf\x78\xad\xf3\xdb\xad\x39\xdf\xde\x1a\xb6\xe3\xe9\x0e\xad\x06\x32\x18\x89\x90\xb1\x78\x7a\x24\xf1\x5f\xe7\xa3\xfa\x5b\x20\xdc\x01\xb0\x08\x20\x95\x48\x24\x8c\x0f\x3e\xf8\x00\xf7\xee\xdd\xdb\x88\xc9\x83\x3a\xe1\x6e\x95\xdd\x5d\x46\xa3\x32\xe5\xa1\x43\x87\xc4\xde\xbd\x7b\x85\xdf\xef\xd7\x00\x34\x03\xe8\x13\x12\xbb\xf7\xcf\x45\x3e\xff\xd4\xfd\xd8\x0b\x04\xe0\x6f\xf6\x2f\xfd\x1f\x0b\x51\xfd\x7b\x00\xa6\x12\x89\x44\xe6\xbb\xdf\xfd\x6e\x23\x8f\xce\x7a\xf8\x7a\xe5\x71\x87\x79\xb6\x81\xb0\xb6\x21\x6e\xf0\x9c\x6a\x19\x1d\x1d\xc5\xc9\x93\x27\x55\xb5\x4c\xbd\xff\x6c\xac\xfd\xeb\x7d\x49\xff\x0b\xe4\xc9\x3f\x4d\xb0\x3b\xd7\x54\xd9\x89\x71\xb3\x2b\x77\xe9\x9d\xed\x2b\x7f\x5e\x50\xe5\x65\x54\x46\x61\x32\x9f\xcf\xeb\x17\x2f\x5e\x94\x77\xee\xdc\x71\x2e\xd3\xf8\xa8\xf0\x71\x65\x12\x34\x4d\xc3\xd1\xa3\x47\xb1\x63\xc7\x0e\xa1\x28\x4a\x88\x99\x3b\x09\x34\xdc\x99\xf1\x3d\xd1\x9c\xf7\xb5\xdc\xee\xc8\x7e\x0f\xc0\xb8\xae\xeb\xa9\x57\x5e\x79\x45\xae\xae\xae\x7e\x1c\x7c\x36\x0b\x35\x32\xd2\x09\x1b\xf2\x22\x74\x76\x76\x8a\x9f\xfb\xb9\x9f\x13\x82\x44\xeb\x33\x93\xcd\xbf\xff\xd8\x5c\xe4\x5f\xda\x7e\x4b\xab\x54\xfb\xd6\xad\xc4\x33\xca\x0a\x8c\x33\x83\xc9\x1f\x5e\xdb\x92\xf9\x2b\x26\x8c\x31\xf3\x2c\x33\xe7\xc6\xc7\xc7\x8d\x33\x67\xce\x6c\x64\xa6\xe0\xe3\xc0\x47\x2a\xb3\xab\xab\x4b\x1c\x3d\x7a\x14\x9d\x9d\x9d\x1a\x80\x28\x11\xb5\x02\x00\x33\xc7\x01\x24\x7f\xfc\xe3\x1f\xcb\xa9\xa9\xa9\x8d\xcc\x7e\xd4\x40\x7b\x7b\xbb\x88\xc7\xe3\x1b\x71\x92\x37\x0c\xaf\x27\x23\x2d\xf0\x64\x6b\x5f\xfa\xd2\x97\x44\x6b\x6b\x6b\x64\xf4\x51\xe8\xcb\x2f\x8c\xb7\x7e\x4d\x78\x98\x31\x8e\x01\x58\xe3\x23\x2d\xa8\x5c\x78\x7d\xe7\xf2\x7f\x9e\x6a\x2b\x7c\x1f\x84\x9b\x00\x16\xb3\xd9\x6c\xe1\xcd\x37\xdf\xc4\xfc\xfc\xfc\xa6\x09\xb1\x89\x74\x9e\x6a\xfb\x26\xca\x15\x00\xe4\xc1\x83\x07\xc5\x81\x03\x07\x84\xcf\xe7\x53\x01\xc0\x30\x0c\xe3\xca\x95\x2b\xf2\xca\x95\x2b\x8d\xca\xae\x79\x7e\xfa\xe9\xa7\xc5\xd0\xd0\x90\xf0\xfb\xfd\x02\x00\x98\x59\x2e\x2f\x2f\xcb\x5b\xb7\x6e\xe1\xd6\xad\x5b\x1f\xe9\xc5\x6d\xc4\x5a\x3d\x5d\x42\x27\x4e\x9c\x10\xbb\x76\xed\x0a\x34\x17\x7c\x7b\x7f\xe1\x4a\xe7\xf7\x43\xba\xd2\x5b\x53\xda\x1a\x27\x27\x6c\x87\x65\x4e\x2b\x67\xfe\x6e\x77\xfc\xff\x7e\x18\xd3\xff\x8e\xc1\xe3\x00\x12\xb3\xb3\xb3\xfa\x9b\x6f\xbe\x89\x62\xb1\xb8\x51\x79\x51\x4f\xee\x35\x92\xed\xee\x72\x36\xe2\xf6\x6a\x98\x76\xf7\xee\xdd\xc2\xef\xf7\x63\x72\x72\x12\xe9\x74\xba\x91\x2c\xb6\x61\xe7\xce\x9d\x38\x71\xe2\x84\x50\x84\x12\x68\xce\xab\x7d\x7d\xab\xfe\x03\x6a\x99\x22\x2b\x21\x63\xf2\x61\xac\x38\x56\x12\x32\x13\x8f\xc7\xf5\xd7\x5f\x7f\x1d\xd9\x6c\x76\xa3\xb8\x01\x1b\x94\x91\x36\x6c\xdd\xba\x15\x9f\xf9\xcc\x67\x54\x01\xea\xfc\xdc\x8d\x8e\xff\x30\xb0\x12\xf8\x8c\x33\xbe\x2a\x1a\x9d\x0a\x4d\xe5\x2e\xaf\x96\x73\x7f\xbb\x2f\xfe\xef\x17\xa2\xfa\xdf\x01\x18\x67\xe6\xe4\xcd\x9b\x37\x8d\x73\xe7\xce\x6d\x44\x16\x36\xc2\xed\x93\x96\x3b\x1b\x81\x4d\xd7\xb9\x73\xe7\x4e\x3c\xfd\xf4\xd3\xaa\xc6\x4a\xeb\xc9\xbb\xcd\xff\x6a\xf7\x42\xf8\xab\x0a\x53\xd4\x34\xbd\x64\x32\x68\x5c\x7e\x73\xc7\xca\xff\x38\xd3\x52\x7c\x7f\x75\x75\x35\xf7\xca\x2b\xaf\xa0\x58\x2c\xae\x57\x9f\x1d\x6e\x4d\x63\x55\xdd\x2b\x0d\x7e\x9f\xfe\xf4\xa7\x29\x10\x08\x44\xf6\x2c\x44\xbe\x7c\xf0\x61\xe4\x5f\xae\xd1\x68\xc8\x79\x53\xf5\xaa\x96\x14\x59\xf8\xe1\x9e\xe5\xaf\xcf\xc5\xf4\x57\x18\x7c\x1b\x40\xf2\xcc\x99\x33\xc6\xe5\xcb\x97\xa5\xab\x0e\x32\x91\x73\x3f\x37\xc2\x0d\x0d\xf2\xff\xb4\x7e\x58\xa7\xae\x9a\xb8\x58\x2c\x46\xcf\x3f\xff\xbc\x50\x15\xb5\xe5\xf9\xdb\xad\xff\xeb\x9e\x47\xe1\xdf\x16\x0c\xbf\xc3\x53\x44\x01\x43\xf4\x0e\xc7\x43\x2f\x4e\x37\x17\xcf\x96\xa2\xea\xa3\x50\x28\x64\xdc\xbf\x7f\x5f\x3a\xea\x6b\xd8\x76\xa7\x53\xd6\x02\xa7\x93\xd6\x8e\x3b\x78\xf0\xa0\x68\x69\x69\xd1\x22\xba\x32\x74\xec\x5e\xec\xf7\x08\x24\xc8\x74\x19\x13\x33\xec\x7b\xf3\xd9\x02\x49\x2c\x4f\x8f\xac\xfc\x97\xd9\xe6\xe2\xdf\x9a\xe6\x45\xf2\xcc\x99\x33\xc6\xad\x5b\xb7\xdc\xf5\x79\xe1\x50\x2f\xbc\x1e\xde\x5e\x32\x7d\xbd\xfc\x8d\x1c\xd8\x8d\xe2\x9c\xe1\x5e\x65\xd9\xcf\x7b\xf6\xec\x81\xa6\x69\x5a\x5f\xd2\x7f\x6c\xe7\x62\xe8\x57\x09\x64\xfa\x9a\x51\xf1\xfc\x99\x7f\x9a\x21\xda\x8f\xdf\x8b\xfd\x4f\x04\x6a\xde\xbe\x7d\xbb\x08\x87\xc3\x5e\xf5\x7b\xe2\xe1\x6e\x98\x67\xe3\xc2\xe1\xb0\x78\xfc\xf1\xc7\x05\x18\xd1\x23\xd3\xb1\xdf\x0c\x95\x44\x1f\x73\x65\x89\x04\x73\x45\x27\xb5\xef\x2b\x6b\x5b\x2a\x5e\x1b\x30\x2e\xf6\xa7\x5e\xbb\xd3\x91\xfb\x0e\x08\x77\x98\xd9\xdd\x89\xc0\xc6\xd8\x94\x97\xac\x70\xc7\x3b\xcb\x71\x13\xc0\x2d\xbf\xea\xca\xb1\x06\xe1\x8d\xd8\x5b\x43\x05\x65\x60\x60\x00\x00\x22\xdb\x97\x83\x2f\x11\xa8\xa2\x18\x5a\x74\xaa\x99\xd1\x63\xf4\xa4\xb4\xa3\x11\x5d\xe9\x57\x14\x45\xdd\xb6\x6d\xdb\x46\xf0\x02\x00\x61\x11\xa0\xe1\xef\xe0\xc1\x83\x10\x42\x68\x6d\x59\xdf\xde\x3d\x0b\xe1\x5f\x24\xae\x4e\x55\x57\x98\x27\x81\xcc\x69\x9e\xca\x88\xac\x84\xdd\x6b\x2d\x8c\x5d\xe8\x4f\x7d\x13\x84\x9b\xcc\x9c\xb8\x7a\xf5\xaa\x61\x6a\x65\xee\xc6\xbb\x09\x5c\xef\xba\xd1\x30\x59\xe7\xde\x49\x8c\xcd\xe0\xe1\x8e\xf7\x8a\xab\x9b\xdf\x1c\x59\x81\xb0\xae\xf4\x5a\xb3\x28\x44\x16\x27\xb3\x38\x58\x85\x23\xab\x92\x42\xe1\xa2\xd2\x07\x40\x0d\x87\xc3\xee\xb2\x9d\xf8\xd6\x28\x71\x8d\xd8\x2a\x80\xca\xac\xc6\xc8\xc8\x88\x20\x50\xf3\xe1\xe9\xa6\xdf\x52\x24\x22\x4c\x66\x97\x11\x81\x89\x1c\x26\x64\x35\x2c\xeb\x2f\x27\xdf\xdc\xb1\xf2\x75\x29\x30\xc6\xcc\xf1\x7b\xf7\xee\xe9\x17\x2f\x5e\xf4\x22\xe8\x46\x47\xc5\x7a\xcf\x3f\x0d\xd8\x48\x1d\x6e\x6e\x56\x03\xcd\xcd\xcd\xd6\x5e\x14\x91\xd1\xca\x29\x66\x80\x89\xc0\x5c\x11\x46\xce\x2b\x00\x94\x09\x46\xc1\x57\x36\x1a\xd4\x5d\x97\xb5\x3a\x7f\x6e\xf6\x24\x1e\x7b\xec\x31\x28\x8a\xa2\xb5\x67\x7d\x7b\x87\xe3\xa1\x17\x89\xa9\x46\xcc\x92\xf5\x83\xc3\xf2\x00\xe3\x9d\xed\x2b\xff\x35\xed\x37\x2e\x30\xf3\x5c\x3a\x9d\x2e\xbc\xf3\xce\x3b\xf5\x10\xb1\xea\x5c\x0f\x17\x27\xbe\x8d\xda\xe0\x95\xde\x2b\xbe\x91\xbc\xac\x4b\x0f\x8f\x7b\xaf\x51\x62\x5f\x53\xa9\x14\xcc\xb5\x3b\xfa\x64\x47\xee\x3c\x13\x4b\x32\xb5\x7b\x4b\x37\x74\x6a\x8c\xf3\xd1\xe2\x78\x2a\x50\x5e\x00\xe0\x9c\x94\xae\xfb\xa2\x58\x71\x0d\xdf\xf2\x50\x28\x84\xd1\xd1\x51\x41\x44\xd1\x83\x0f\x23\xbf\xa6\x4a\x0a\xb9\x78\xaa\x7d\xcf\xc4\x20\xaa\xf0\xfd\xa9\xb6\xc2\xd5\x89\x8e\xfc\x0f\x88\x68\x5a\x4a\x99\x3b\x7d\xfa\x34\xcc\xb9\x42\x4f\x24\x1c\x04\xd9\x28\x38\x09\x56\x2f\x9f\xd7\x0b\xe3\xbe\x6f\x54\xb7\x97\x5d\xed\xae\x73\x3d\xae\x02\x29\x25\x12\x89\x84\x24\xa2\xcc\x5c\x54\xbf\xfc\x61\x77\xf6\x1d\xb6\xf6\x2f\x90\xa9\xf7\x9b\xbf\xa2\x2a\x0b\xef\x6e\x4f\x7e\x4b\x82\xe3\x00\x8c\x87\x0f\x1f\x3a\xeb\xf6\x92\xd1\x36\x2e\x0d\x57\x08\x8c\x8c\x8c\x08\x45\x51\xb4\x48\x41\xd9\xb6\x63\x31\xf4\xb2\x39\x4d\x5e\x35\x2e\xa8\xba\x7a\xd4\x1a\x93\x25\x21\xf5\xb3\x83\xc9\xbf\x94\xe0\x49\x02\x25\xaf\x5e\xbd\x2a\x5d\x2e\xa8\x7a\xf2\xc7\x2b\xac\x51\x5a\xd1\x20\xbe\x5e\x9b\xbc\x0c\xf7\x46\xf5\x6d\x54\x46\xba\x95\x30\xe7\x55\xdc\xb8\x71\x03\xdd\xdd\xdd\x05\x10\xee\xbf\xbd\x63\xe5\xcf\x8a\x3e\x69\xec\x9f\x8b\x9c\xf4\x95\x85\x66\xb1\xb7\x78\xb8\x34\xf7\xd6\xf0\xca\x5f\x2c\x36\x95\xde\x06\x23\x1e\x8f\xc7\x8d\x87\x0f\x1f\xae\xd7\x2e\xbb\x1e\x6b\xcd\x8e\xe7\x1b\xba\x63\xc7\x0e\x00\x08\xed\x7a\x14\xfa\xbc\x4f\x52\xd4\x59\x82\x35\x43\x6e\xed\xaf\xb0\x3c\xaa\x1f\xf6\x64\xdf\x49\x84\x8c\x0b\x00\x16\x97\x97\x97\xf5\x0f\x3e\xf8\xa0\x9e\xa6\x59\x0f\x36\x3a\x42\xdd\xf2\x76\xa3\xe5\xd7\xd3\x78\xbd\xca\x59\xef\xd9\x5d\xae\x67\xfa\x7b\xf7\xee\xe1\xee\xdd\xbb\xc6\xf6\xed\xdb\xe3\x65\x81\xcb\x67\x06\x57\xff\xe4\x6a\x6f\xe6\x8d\x9e\xb4\xb6\x47\x33\x44\x68\x25\x68\xcc\x3d\x8a\x16\xaf\x94\x05\x6e\x02\x98\x62\xe6\xcc\xd9\xb3\x67\xd7\xc3\xad\x06\x0f\x6b\x44\xae\x19\xb2\xbd\xbd\xbd\x68\x69\x69\x51\x15\x89\xd6\xd1\xc5\xf0\xcb\xce\x25\x53\x15\xfd\xca\xb9\xfc\xa1\x12\xa6\x2b\x9c\xbb\xdc\x97\xfe\x0e\x08\xd3\x60\xe4\xde\x7f\xff\x7d\x60\x2d\x1b\xdc\xa8\x6a\xdf\x48\xd1\xf0\x62\x7b\x5e\xe5\x6f\xd4\x03\xd3\xc8\x5e\xac\xc7\xce\xdc\x26\x51\x23\xbc\xf0\xd6\x5b\x6f\x41\x55\xd5\x42\x7f\x7f\xff\x1c\x11\x65\xd2\x7e\xe3\x7e\xda\x6f\xbc\x4d\x44\x2a\x33\xe7\x88\x28\x09\x20\x51\x2e\x97\x73\x6f\xbf\xfd\xb6\x7c\xf4\xe8\x51\x3d\xdc\x3c\xeb\x53\x1d\x01\xce\x4c\x72\x74\x74\x54\x30\xb3\xd6\x9d\x0a\x1c\x68\xc9\xa9\xa3\x55\x7f\x46\x65\xf4\xc1\xd6\x52\xad\x3a\x08\xe3\x9d\x99\x73\x69\x7f\xf9\x3a\x33\x27\x67\x67\x67\xbd\x58\x83\xb3\x72\x2f\x36\x51\x6f\x04\xd4\x4b\xef\xf5\xec\xee\xd4\x7a\x6f\xf4\x46\xa1\x5e\xbe\x46\x6c\x76\x4d\x3a\x29\x25\x7e\xf4\xa3\x1f\xe1\x89\x27\x9e\xd0\xf7\xef\xdf\x9f\x50\x14\x25\x65\xad\xf0\x23\x22\xc9\xcc\xc6\xc2\xc2\x82\xf1\xde\x7b\xef\x61\x9d\xd9\x10\xcf\xfa\xdc\xa7\x7a\xd8\x09\xfa\xfb\xfb\x05\x80\xc8\x70\x3c\xf8\x69\xc1\x24\x6c\xef\x29\x5b\x52\xb2\xfa\x0c\x00\x65\xc1\xc6\xf5\xde\xec\xdf\x81\xb0\x40\xa0\xc2\xe5\xcb\x97\x1b\x11\xa2\x1e\xbb\xfa\x28\x32\xb2\x51\xf9\x8d\x46\x64\xa3\xfc\xeb\x29\x51\x8d\x5e\x3a\xaf\xf4\x36\x4e\x97\x2e\x5d\xc2\xa5\x4b\x97\x0c\x00\xc6\x81\x03\x07\x44\x20\x10\x40\x2a\x95\x72\x6f\xd3\x6b\x58\x86\x57\x9c\x73\x5d\xab\x1d\xb8\x65\xcb\x16\xf8\x7c\x3e\x21\x40\xd1\xa1\xe5\xe0\x33\x4e\xa7\x9e\xcd\x4e\xd9\x19\x06\xcc\xc5\x8a\xe3\xcb\xe1\xd2\x55\x66\x4e\x3e\x7c\xf8\xd0\x30\x59\x83\x97\x56\xb7\x91\x91\x57\x8f\x85\x34\x52\x30\xdc\x8d\xf3\x1a\x91\xce\xb8\x7a\x2f\x49\xbd\x51\xdc\x48\x46\xad\xc1\xa3\xa7\xa7\x47\x6c\xdd\xba\x15\xcd\xcd\xcd\x00\x80\x72\xb9\x2c\xa6\xa7\xa7\xe1\x58\x59\x67\x2d\x5f\xb1\x69\xe3\xf7\xfb\xc5\xde\xbd\x7b\xd1\xdf\xdf\x8f\x48\x24\x22\xcc\x7c\x72\x7a\x7a\x1a\x77\xee\xdc\xc1\xe2\xe2\xa2\x17\x9e\x35\x23\xd2\xd9\x50\xf4\xf7\xf7\x83\x88\xb4\xb6\x8c\x6f\xa4\xa9\xa0\x6c\xab\x75\x8d\x3b\xa6\xa7\x50\x5d\xa6\x7b\xab\x2b\xfb\x36\x08\x73\x04\xca\x8d\x8f\x8f\xa3\x01\xd4\x33\x1d\xbc\x6c\xb9\x7a\x71\x1b\x91\x89\x1b\x29\x67\x3d\x1c\x37\x93\x5f\x00\x95\x8d\xbb\xa7\x4e\x9d\xc2\x96\x2d\x5b\x54\x30\x34\x5f\x99\x02\x0a\x93\x28\xaa\xb2\xb0\x7d\xfb\x76\xfd\xa9\xa7\x9e\x32\xde\x7f\xff\x7d\xe9\x58\x81\x0e\x00\x18\x1e\x1e\x16\xc7\x8f\x1f\x17\x7e\xbf\x5f\xd3\x0c\x8a\x76\xa5\xb5\x21\x45\x92\x96\x08\x95\x66\x23\xbb\x76\x2f\xec\xde\xbd\xbb\x70\xe3\xc6\x0d\x9c\x3f\x7f\x1e\xd5\xf3\x2a\xaa\x78\x78\x9a\x1f\x3d\x3d\x3d\x82\x99\x03\x5b\x93\xfe\xe3\x04\x88\xea\xca\x6b\xb2\x77\xf4\x52\x75\x65\x27\x4a\x0a\xe7\xee\xb5\x16\xde\x65\xe6\x64\x2e\x97\xab\x37\x53\x5e\x0f\x36\xcb\x36\xdd\xf9\xec\xf8\x58\x2c\x26\x7a\x7a\x7a\x10\x8b\xc5\x10\x8b\xc5\x00\x00\xb9\x5c\x0e\xe9\x74\x1a\xf1\x78\x1c\x75\x64\xf6\x27\x06\xed\xed\xed\xe2\xc5\x17\x5f\x14\x01\x7f\x20\xd0\xbb\xaa\xed\x7f\x62\x3a\xfa\xdb\x3d\x29\xed\x98\xc2\xa4\xa5\xfd\xe5\xfb\x1f\x76\x67\xbf\x75\x6d\x0b\xfe\xfa\xd4\xa9\x53\xa9\x70\x38\x6c\x98\x93\xd1\x62\xfb\xf6\xed\x78\xe6\x99\x67\x84\x0a\xd1\x7c\xf8\x7e\xf4\x57\x1f\x9b\x8b\xfc\x76\xb0\x24\xfa\x01\x88\x32\x21\x75\xbf\x2d\xff\xca\x5b\xc3\xc9\x7f\xbb\x77\xef\xde\xd9\x70\x38\xac\x9f\x3e\x7d\x7a\x4d\x3b\x3c\x8f\x67\x69\x6f\x6f\x17\xcc\x1c\xea\x4b\xfa\x9f\x20\x54\x8c\x7d\xa0\x3a\xc3\xe8\x5c\x2c\x0f\x00\x0f\x63\xc5\xf1\x82\x4f\x4e\x13\x51\xce\x5c\x2c\xe5\xc5\x1a\x9d\x75\xb8\xc3\x6a\xea\x6f\x40\x2b\xcf\xf8\x9d\x3b\x77\x8a\x7d\xfb\xf6\xa1\xa5\xa5\x45\x98\x5a\xa0\x4a\x30\x9d\x0d\x44\x12\x15\x2f\x89\x51\x2c\x16\xe5\xed\xdb\xb7\xe5\xfb\xef\xbf\xff\x49\x74\xe8\x1a\x5c\x9e\x7f\xfe\x79\x04\x02\x81\xd0\x9e\xf9\xf0\x97\x3e\x35\xd1\xf2\xa7\x0a\x53\xc4\x8a\x6b\xcb\x89\xde\xa7\xa7\x62\xc7\xfa\x57\xfc\xcf\xfe\xdd\xee\xe5\xdf\x3d\x7c\xf8\xf0\x62\x3a\x9d\x36\x26\x27\x27\xe5\xa9\x53\xa7\x54\x85\x44\xeb\x73\xb7\x5b\xff\x60\xd7\xa3\xd0\xbf\x70\x6e\xf6\x55\x99\x9a\xb7\xc7\x43\xbf\xde\x92\xf3\xed\xfe\xee\x63\x8b\xbf\x32\x34\x34\x74\x7f\xe7\xce\x9d\xc6\xed\xdb\xb7\xd7\x98\x1f\x35\x08\x0d\x0c\x0c\x08\x00\xaa\x2a\xa9\xb9\x23\xa3\x8d\x00\xce\x85\x6f\x15\x6d\x95\xa9\xaa\xee\x30\x18\x0f\x5a\x0a\x97\x41\x48\x30\xb3\x7e\xf7\xee\x5d\x67\x43\xdd\xf7\xf5\x3a\x74\x23\x1d\xe8\x26\xa0\xe8\xea\xea\xc2\xc9\x93\x27\xd1\xdc\xdc\xac\x11\x23\xd4\x14\x2f\x1f\x88\x2e\x19\xcf\x87\x92\xe5\xfd\x6a\x89\x3b\xc1\x50\xa5\x4a\xc9\x42\x44\xdc\x49\xb7\x29\x3f\x59\xed\xd2\xde\xd9\xbf\x6f\x5f\x62\x74\x74\x54\xbf\x7e\xfd\xba\x34\xe7\x43\x1b\xc9\xe3\xf5\x64\xbb\x8d\xcf\xc1\x83\x07\x45\x53\x53\x53\xa0\x2d\xe3\xdb\x7f\x6a\xb2\xf9\x4f\x14\x46\xa4\x42\x31\x7b\x77\x08\x08\x84\x81\x95\xc0\x97\x0e\xcf\x44\x27\xcf\x6d\x5b\xfd\xe3\xa3\x47\x8f\x26\xf7\xef\xdf\x2f\x14\x45\x09\x0c\x2e\x07\x9e\x1b\x7d\x14\xfa\xef\x2b\x0b\x2a\xac\x5d\xd4\xd5\x01\xd3\x9a\x53\x8f\x1c\x99\x8e\xfe\xf6\xdb\xdb\x57\xfe\xe0\xc9\x27\x9f\x4c\xde\xbe\x7d\xbb\x46\x7e\xbb\x59\xab\xec\xee\xee\x16\x00\xd4\xa6\xa2\xda\x1b\xd6\x95\x6e\xdb\x73\x63\x29\x37\x4e\x8b\xc3\xdc\x8e\xfd\xb0\xb9\x78\x05\x40\x4a\xd7\x75\xf9\xe8\xd1\xa3\xcd\xa8\xce\xee\xb0\xf5\xae\x36\xec\xdd\xbb\x17\xc7\x8e\x1d\x13\x60\x8e\xc4\x1e\x19\xcf\x74\x4f\xe8\xbf\x17\xc8\xc8\x23\x64\x11\xdf\xb1\x58\x28\x98\x96\xcf\x34\xcf\x97\xbe\xda\x3b\x5e\x9c\x8d\x0f\x68\x5f\x5f\x1c\xd4\xfe\xd3\xa1\x43\x87\xe2\xbd\xbd\xbd\xfa\x1b\x6f\xbc\xe1\x9e\x89\xaf\x57\x6f\x43\x33\x64\xf7\xee\xdd\x00\x23\xb4\x6f\x3e\xfc\x6b\xbe\xb2\x68\xb6\x55\x09\xd3\x19\xee\x98\x43\xc6\xde\xf9\xf0\xaf\x5e\xdc\x9a\xfa\xf3\x60\x30\x98\x09\x85\x42\x12\x8c\xc8\xe8\x62\xf8\xe7\x89\x2b\x53\x5c\x4e\x95\x84\x4c\x82\x13\x03\x23\x8b\xa1\x2f\x9c\x19\x4a\xfe\x19\x05\x02\x19\x54\xb6\x4a\xd8\x38\xac\x11\xda\x1d\x1d\x1d\x00\xa0\xb6\xe4\xd5\x21\xc1\xd0\x6c\x73\xdf\x9a\xf0\x70\x26\x26\x42\xc1\x27\x93\xc9\x80\x31\x05\xa0\xb0\x81\x4e\xdc\x2c\x78\x2a\x25\x7b\xf6\xec\x11\x4f\x3d\xf5\x94\x4a\x65\xee\xdc\x3a\x56\xfc\x83\x6d\x57\x0a\x7f\x15\xcc\x94\x8f\x12\x20\x6a\x56\xf2\x81\xad\x89\x52\x10\x08\xaa\xc1\x7d\x5d\x77\xf5\x3f\xdc\x71\x3e\xf7\x57\x81\x8c\xdc\xdd\xdb\xd3\x13\x78\xf1\xc5\x17\xa1\x69\xda\x46\x6c\xcc\x86\xf1\xe6\x54\x55\xb4\x33\xa3\x1d\x70\xaf\x68\x73\xae\xf1\x25\x00\x81\x92\xe8\x8e\x15\xd4\x61\x22\xd2\x98\x59\x00\x88\xc4\xf2\xea\x90\xed\x77\x35\x81\x5d\x79\x03\x86\xe8\x0c\x94\x44\x27\x00\x75\xef\xde\xbd\x35\xb4\x11\x0e\x62\x09\x00\xc2\x54\x12\xb4\xb6\xac\x6f\x47\x75\xa6\x83\xea\x2e\x7a\x48\x84\x4a\xb3\x25\x85\xe3\x00\xf4\xf9\xf9\x79\x77\xd9\x9b\xb9\xd6\x0b\x73\xe2\x29\x86\x87\x87\xc5\xb1\x63\xc7\x54\xc1\x68\x1f\xb8\x56\xf8\xe3\xd6\xd9\xd2\xef\x10\xa0\x55\xb5\x69\x97\x37\x9f\x08\xce\x15\x29\x04\x20\x98\x96\xc7\x86\x2f\xe6\xbf\xe3\xcf\xca\xbd\x1d\x1d\x1d\x81\x53\xa7\x4e\x55\xb7\xdf\xd5\xa9\xd7\xf5\x03\x1c\x1d\xbb\x75\xeb\x56\x2b\x5c\x23\x86\x66\xe7\xb6\x44\x92\x73\xbf\x88\x99\xd7\x10\xac\x31\xb3\x30\xeb\x55\xf3\xbe\x72\x0e\x6e\x70\x2e\x2a\x41\x45\xa9\x2c\xaa\xec\xa9\x99\xab\xae\x00\x84\x42\x21\x01\x40\x8b\x15\xd4\xbe\x9a\xf5\x8c\x9e\x57\x60\x39\x6c\x4c\x83\x90\x61\x66\x23\x1e\x8f\xd7\x94\xe5\x55\xe1\x3a\x57\xeb\xde\xd3\xc6\xd4\x34\x0d\xc7\x8f\x1f\x17\x04\x44\xba\x26\xf5\xdf\x8e\x3d\x32\x7e\xd1\x61\xdd\x56\xdd\x86\x55\x1d\x1b\xd5\xa3\x20\xe0\x48\xc7\x50\x8b\x3c\x34\x70\xb5\xf0\xef\x26\x8f\x86\xbe\x32\x38\x38\x38\x3b\x38\x38\x68\x4c\x4d\x4d\xad\xc1\x21\x16\x8b\x61\xf7\xee\xdd\xe8\xed\xed\x45\x30\x18\x14\x00\x90\xc9\x64\x30\x33\x33\x83\x1b\x37\x6e\x40\xd7\x75\x39\x33\x33\x63\xe1\x6b\x2c\x44\xf5\xc9\xee\xb4\x7f\xbf\x35\xc1\xe1\xd5\x99\x05\x9f\x4c\xa5\xfd\xe5\x38\x00\x69\x6e\x01\xd4\xef\xb5\x15\x2e\x0f\xac\x04\x8e\xda\x7b\x45\x6d\x91\x66\x17\x80\xb9\x68\xf1\x8e\x21\x38\x87\xda\x29\xae\x1a\x84\x25\x00\x69\xb2\x55\x01\x20\xd0\x54\x50\xba\x2d\x36\x65\x2d\xe7\xb0\x3d\x73\x8e\xe7\x64\xb0\x34\xcb\xcc\x05\x00\xd2\x54\xef\x3f\x89\x9f\x05\x35\x86\xfb\xd1\xa3\x47\xe1\xf7\xfb\xb5\x60\x4a\x1e\xe8\xbc\xa7\xff\x0e\xec\xe6\x92\xc3\x1c\x5a\xeb\x13\xae\xc4\xad\x9d\x7b\x0b\xa6\xe5\x91\xce\x7b\xfa\x6f\x80\x39\x72\xfc\xf8\x71\x38\xeb\x02\x80\x03\x07\x0e\xe0\x8b\x5f\xfc\xa2\xd8\xb7\x77\x5f\xa8\x3f\xd2\xd1\x3b\xa2\xb7\x3c\xbe\xbd\xd4\xbc\x7f\x6b\x4b\x77\xe7\xa1\x43\x87\x02\x5f\xf9\xca\x57\xc4\xc8\xc8\x88\x00\x00\x29\xa5\x64\x70\xee\x46\x4f\xe6\x47\x25\x45\x16\x60\x9a\x69\xf6\xa4\x3b\x99\x13\xc8\x04\x8c\x77\xe6\xce\x18\x42\x26\x89\xc8\xa0\x8a\x56\x9d\xba\xd9\x95\x7d\x23\x1e\x2e\x4d\xd7\xbc\x71\xa8\xa2\xab\x2b\x5c\x38\x3f\x90\xfa\x0e\x08\x49\x66\x96\xd3\xd3\xd3\x35\xf8\xae\x91\x41\xe6\x99\x33\x5a\x44\x57\x5a\x9d\x9c\x15\x8e\x7b\x7b\xad\x09\x01\x29\x7f\xf9\x21\x11\xe9\xa6\xc2\x50\xc3\xa6\x5d\xf7\xf5\x58\x97\xd7\xb3\xa7\x6c\x1c\x1c\x1c\x14\x60\x8e\x76\xdc\xd7\x7f\x43\x94\x11\x21\x53\xfe\x55\x1a\x6e\x1e\xa9\x62\xc9\x44\x46\xf5\x8d\x66\x86\x9d\x96\xab\x69\x89\x19\xed\x0f\xf4\x5f\x57\x0c\xf4\x06\x83\x41\x6d\xfb\xf6\xed\x76\xbd\x9f\xfa\xd4\xa7\xc4\x91\x23\x47\xb4\x08\x6b\xbd\xcf\xdf\x69\xf9\xc3\x5f\xbd\xd8\x73\xfe\x8b\xd7\x3a\xce\x7e\xf9\x6a\xe7\x7b\xbf\x7e\xb1\xfb\xec\xb1\x7b\xb1\xdf\x09\xa9\xfe\xd6\x67\x9e\x79\x46\x3d\x7a\xf4\xa8\x98\x9f\x9f\x97\x44\x94\x4a\x84\x8c\xab\x6f\x0f\x27\xff\xb3\x41\x6c\x90\xa3\x33\x2d\x59\x34\x17\xd5\xef\x9c\x1f\x58\xfd\x36\x80\xb8\x94\xd2\x58\x5a\x5a\x92\x44\x94\x2b\xa9\x7c\xe7\x87\x7b\x96\xff\xcf\x47\x11\x7d\x9a\xcd\xf9\x5d\x36\x69\x9c\x57\xcb\x99\x1f\x8d\x26\xfe\xe3\xa3\x26\xfd\x1c\x80\xc4\xd2\xd2\x92\xe1\x3e\x1b\xaf\x86\xb5\xb6\xb6\xb6\x56\xee\x19\xaa\x66\x88\xca\x9a\xcb\x1a\xbf\xb8\xf3\x35\xa9\xa0\x96\xd3\xca\x71\x00\x7a\xa1\x50\xf0\x1a\x4d\xf0\x78\xae\xe7\x8e\x83\x47\xbc\x9d\x77\x64\x64\x44\xf8\xfd\x7e\x55\xd1\xb9\x3b\xb6\x68\xbc\x50\xc1\xc7\xb1\x5a\xc1\x39\xda\x6a\xd4\x3e\xaa\x22\x6b\x3d\x3a\x8e\x12\x51\x4b\xe8\x8e\x2e\x1a\x9f\x5a\xd9\xe2\x9b\xdd\xbd\x7b\xb7\x7e\xf7\xee\x5d\x0c\x0f\x0f\x8b\xe1\xe1\x61\xd5\x5f\xa2\xde\xcf\x5f\xef\xf8\x66\x67\xc6\x77\xd2\x59\x64\xb0\x24\x86\x0e\x4f\x37\xfd\x51\x5b\xd6\xb7\xef\xef\x77\xc7\xff\xd5\xde\xbd\x7b\xe3\xd7\xae\x5d\x93\xbd\xbd\xbd\x05\x22\xba\x7f\xb3\x2b\xfb\xed\x95\x60\x29\x71\x78\x3a\xfa\x72\x77\x5a\xeb\x57\x24\xa9\xa9\x80\x91\xbc\xdd\x99\xbb\x74\x75\x4b\xe6\x3b\x86\xc2\x57\x09\x94\xbc\x75\xeb\x96\xbc\x70\xe1\x02\xbe\xf8\xc5\x2f\x16\x9a\x9a\x9a\x66\x57\x83\xc6\x9b\x7f\x7d\xf0\x51\x62\x68\x39\xf8\xec\x96\xa4\x7f\x44\x91\xa4\x2d\x45\x4a\xd3\x93\x1d\xb9\x77\x73\x9a\xbc\x04\x60\x52\x4a\x99\xfb\xe0\x83\x0f\xec\x3e\xb3\xa0\xc6\xd7\xea\xf3\xf9\xc0\xcc\xc2\x27\x45\x40\x2b\x53\x88\xcd\x06\xdb\x66\xa4\xd5\x81\xb6\xbb\x95\x65\xc1\x27\x93\xcc\x6c\x6d\x5e\xa9\xe7\xda\xaa\x17\xd7\xc8\x5d\x57\xd3\x99\x3d\x3d\x3d\x60\x66\x2d\x94\x2a\xef\x17\x06\xb7\xba\xcf\x98\x63\x9b\x91\x3a\x65\x24\xec\xb5\x30\x96\x0a\x6f\xc7\x9a\xb2\x88\x98\x10\x59\x36\x8e\x27\x7a\xd5\xef\xb6\xb5\xb5\x65\x60\xb2\x70\x00\x91\xc3\x33\xd1\xdf\xae\x74\x62\x2d\xbb\xb6\x60\x68\x39\xf0\xcf\x77\x2d\x84\xdf\xbb\xd1\x93\xf9\x8b\x2d\x5b\xb6\x64\x2e\x5c\xb8\x20\x8f\x1c\x39\x92\x04\x30\x36\x1f\xd3\x53\xaf\xee\x8d\x9f\xf7\x49\xea\x16\x12\x9a\xae\x72\x82\xc1\xb3\x0c\x4c\x13\x68\x21\x9d\x4e\x17\x2e\x5c\xb8\x00\x5d\xd7\xf1\xd6\x5b\x6f\xe1\xb3\x9f\xfd\x6c\x4e\x55\xd5\xfb\x65\x41\xa9\x3b\xed\xb9\x3b\x13\x1d\xf9\x66\x53\x19\xca\x30\xf3\x22\x18\x8b\x00\x32\xef\xbc\xf3\x8e\x9c\x99\x99\x81\x1b\xdc\x76\xa4\xa0\xca\x7a\x4b\x95\x98\xd4\xaa\xbd\x88\x9a\x9e\xb4\x6c\x22\x16\x90\x65\xc1\x05\x93\xcf\x03\x6b\x47\xe1\x66\xc1\x6b\x14\x0b\xa0\x72\x6e\x2b\x11\x69\xfe\x8c\xdc\x55\x43\x56\xfb\xc4\x2a\x0b\x51\x38\x9e\xad\x01\x69\xf7\x60\x25\x9c\x1c\xdc\x0e\x8c\x40\x56\x0e\x11\x10\x32\xcd\x10\x04\x83\x41\x55\x91\x68\xdf\xb5\x10\xfe\x32\xb9\xde\xe4\x5a\x9a\x90\xd8\xf3\x28\xfc\x95\xb1\x9e\xec\xab\x9d\x9d\x9d\xb9\x57\x5e\x79\xc5\x90\x52\x1a\x87\x0f\x1f\x4e\xa8\xaa\x9a\x63\xf0\x6c\x49\x41\x00\x0a\x84\x79\xbe\x41\x86\x80\xc2\xd2\xd2\x92\xfe\xfd\xef\x7f\xdf\x6e\xeb\xc2\xc2\x82\xf8\xe6\x37\xbf\x69\xbc\xfc\xf2\xcb\x99\xde\xde\xde\x02\x2a\x7b\x43\x55\x22\x12\xcc\x6c\x10\x91\x9e\xcb\xe5\xf4\x77\xdf\x7d\x17\x0f\x1e\x3c\xf0\xe4\x6c\xee\xd9\x0f\x30\xb3\x20\x90\x20\x86\xb0\x8f\xf2\xb2\x24\xb6\x83\x4b\x99\xb7\x52\x9a\x87\xd6\x7a\x14\x0e\xac\x65\x91\x9e\x9d\xe4\x7a\xf6\xf4\xac\x84\x42\x21\xc1\xcc\x9a\x52\xe2\x66\x06\xaa\x67\xde\x38\xcf\x8a\x73\x8f\x48\x82\xb9\x1d\x81\xec\x8e\x66\x54\x0e\x70\x60\xb2\x94\x6f\x82\x52\x42\x33\x18\x01\x06\x8b\xaf\x7e\xf5\xab\x82\x99\xd5\x90\xae\xf4\x06\x0c\xd1\x69\x2b\x9b\x8e\x13\x99\xc9\x31\x99\x1e\xcb\xab\x43\xaa\xa4\x66\x43\xe1\xc5\x2d\x5b\xb6\xc8\x1b\x37\x6e\xc8\xf9\xf9\x79\xec\xdb\xb7\x2f\xd7\xdf\xdf\x5f\xd0\x34\xcd\x32\x6d\x64\x22\x91\x90\x37\x6e\xdc\x80\xcb\xbd\x66\x73\xa5\x1f\xfe\xf0\x87\xe8\xee\xee\x36\x06\x06\x06\x8c\xee\xee\xca\xa6\xef\x74\x3a\x8d\xb9\xb9\x39\x4c\x4e\x4e\xc2\x30\x8c\x7a\x0e\x09\x51\xef\x30\x08\x01\x54\xad\x0c\x8b\x2d\x55\x55\x69\x54\x0f\xde\xd8\xb8\x6b\xcd\xae\xb4\x4e\x5c\x23\xb0\xd3\x72\x05\x33\x6f\x0d\xd5\x89\x1b\xd7\xc6\x5b\x43\xd1\x69\xce\xb1\x39\x34\x99\x20\x41\xb5\xac\x5f\x12\xab\x4c\x90\x00\x83\xad\x55\xe1\x0e\xb0\x58\xb9\x21\x58\x4a\x62\x0d\xa6\xcb\xf0\xe1\xc3\x87\x88\xc7\xe3\x78\xeb\xad\xb7\x6c\x2e\xd5\xd1\xd1\x21\x96\x96\x96\xbc\xda\xe4\xd6\x29\xc4\xc2\xc2\x02\x16\x16\x16\x1a\xf9\xa9\x9d\xdc\xcf\x7e\x76\x76\xa4\x84\xc9\x5a\x99\x20\x99\x20\x6d\x05\xc1\xb5\xef\xd1\x21\x9e\x84\xe0\x75\x4f\x06\x71\x56\xba\x99\xce\x5b\x03\x44\x84\x92\x5f\x24\xe1\x18\x15\x55\x3f\x00\xd9\xef\x19\x59\xab\xdf\xcd\x31\x5a\xeb\x8e\x72\xe2\x5f\x91\x95\xa5\x00\x25\x01\x92\x0e\x09\x28\xb3\x9a\x4c\x2d\x87\x4a\xd3\x9d\x19\xdf\x88\xed\xd9\xe2\x5a\x16\x4e\x60\xcc\xc5\x8a\xe3\x92\x50\x00\x20\x9d\x76\x74\x20\x10\x10\x3d\x3d\x3d\xf6\xbc\x62\x2c\x16\xc3\xfc\xfc\xbc\xfb\xc0\x0a\x4f\x7f\xf4\x93\x4f\x3e\x29\x22\x91\x8a\xbf\xdd\x9a\xc7\x74\xcc\x28\x79\xea\x1e\x9e\x6b\x76\x24\x20\x25\xb1\xc1\x0e\x16\x42\x16\xd5\xa8\xba\x6d\x55\x30\x84\x2a\x49\x33\x59\x87\x99\xd5\x59\xcc\x9a\x37\xc8\x8d\x40\xbd\xd1\xbc\x46\xfb\x2d\x16\x8b\x08\x06\x83\x7a\x3e\x2a\x26\x6a\xcf\x0e\x83\xcd\x3a\x6a\x94\x55\x3b\xda\xc9\x3e\x1c\xa3\xcb\x7a\x29\x01\xe4\xa3\xca\x14\x08\x05\x02\xc9\x3b\x77\xee\x60\xc7\x8e\x1d\x06\x83\x13\x17\x06\x52\xaf\xbc\x74\xb3\xed\x5f\x57\x56\x48\xb0\x43\x21\xae\xd0\x41\x17\x5c\xf8\xa0\x2f\xfd\x03\x10\x52\xcc\x6c\x98\x0a\x9f\x3c\x7a\xf4\xa8\xd8\xb5\x6b\x57\x65\x0f\x25\x9b\xb4\x25\x48\x66\x36\x1e\x3e\x7c\x28\xcf\x9d\x3b\x27\xcc\x53\x24\x6d\x3a\xb4\xb4\xb4\x88\x13\x27\x4e\xa0\xbb\xbb\x5b\x23\x90\xa6\x95\x29\x20\x24\x89\xa2\x4f\x16\x76\xec\xd8\x51\x38\x74\xe8\x90\x71\xee\xdc\x39\xe7\x54\xdc\x1a\xa7\x79\x0d\x30\xb3\x2c\x0b\xe8\x25\x85\x73\xc1\x12\xb5\xae\x35\x50\xc9\x26\x02\x08\x22\x58\x52\xa2\xcc\xf6\xe1\x79\x5e\x1d\xea\x8c\x6b\xf4\x56\xb9\xcd\x97\x9a\xb8\x78\x3c\x8e\xe6\xe6\x66\xbd\x18\x11\x53\xc5\x10\xcd\xfa\x73\xdc\x47\xae\xf1\xe1\xde\xd2\x57\xd5\x51\x1d\x1d\x00\x54\x8c\x73\x9b\x17\x03\xa9\x4e\xf5\x3c\x33\xe7\x74\x5d\x97\x6f\xbf\xfd\xb6\xec\xe9\xe9\x31\x9a\x9a\x9a\x12\x77\xdb\xf2\x3f\x3a\xb7\x6d\x75\xf8\xa9\xfb\xb1\xcf\x29\xb2\xf2\xb2\x5a\x87\x1f\x96\x54\x2e\x9c\x1e\x59\xf9\x8b\xa5\x48\xe9\x7d\x66\x4e\xce\xcf\xcf\xcb\x62\xb1\x88\x2f\x7c\xe1\x0b\xa2\xad\xad\x2d\x10\x2d\xaa\xdd\xfb\x66\x23\x5f\xe8\x4e\x69\x87\x05\x93\xb6\x1c\xd6\x6f\x7e\xd8\x9d\xfd\x0e\xb6\x6c\x99\xfc\xfc\xe7\x3f\x5f\x78\xfd\xf5\xd7\x61\xae\x5b\x95\xcd\xcd\xcd\xe2\xa5\x97\x5e\x12\xa1\x60\x28\xd0\xbf\xe2\x3f\x72\x78\x26\xfa\x5b\x1d\x19\xdf\x13\x82\x49\x5b\x09\x1a\x37\xaf\xf7\x66\xbe\x71\xb3\x9b\x5e\xfb\xcc\x67\x3e\x93\xf9\xe0\x83\x0f\xac\x95\x05\x35\x2f\xbb\xe2\x20\x2a\x75\x76\x76\x62\xeb\xd6\xad\x82\x88\x5a\x77\x2d\x84\x7f\x62\x54\x13\xfa\x00\x00\x1c\x93\x49\x44\x41\x54\x2e\x5c\x12\xed\x35\x9d\x57\xe1\x5b\x26\xd1\x2a\x6c\xeb\x41\x6b\xe1\xdc\x72\xb8\x74\xad\x58\x2c\xe6\x6f\xdf\xbe\x6d\x15\xbc\xd6\x8d\xb2\xf6\xbe\x5e\x1c\xb9\xc2\x25\x00\x21\x84\xc0\xd0\xd0\x10\x00\x68\x24\x69\x4b\xd3\x72\xf9\x31\x62\x27\x2e\xae\x52\xab\x3d\xec\xe8\xc4\xea\x19\xae\x96\xbf\x27\xd7\xac\x4c\x2e\x0c\x6b\xdf\x20\x41\xd3\xf3\xf3\xf3\x85\xc9\xc9\x49\xce\xe5\x72\x34\x34\x34\x64\x80\x50\x98\x8b\xea\xd3\xd3\xad\x85\x05\x02\xfc\x4c\x40\xc6\x6f\xac\x4e\x74\xe4\xaf\x9f\x1e\x59\xf9\xe6\xc3\x58\xf1\x87\x20\x4c\x00\x48\x9d\x3b\x77\x8e\x4f\x9d\x3a\x85\xf6\xf6\xf6\xd0\x60\x22\x78\xea\xf3\x37\x3a\xbe\x33\xb0\x12\xf8\xf9\xe6\x82\xba\x27\x5a\x54\x47\xbb\xd2\xda\xd3\x7b\x16\x22\xbf\x0c\xa2\xf4\xa3\x16\xe3\xd6\xe0\xd0\x90\x3e\x35\x35\xc5\x00\xe8\x73\x9f\xfb\x1c\xc2\xa1\x70\x78\xff\x5c\xf8\x2b\x9f\xbe\xdd\xf6\xe7\xb1\xbc\xef\x31\x1f\x8b\x66\x85\xa9\x29\xa2\x2b\x43\x43\xcb\x81\x2f\x44\x0b\x6a\xec\x41\x7b\xf1\x52\x57\x4f\x77\xfe\xe1\xc3\x87\xc8\x66\xb3\x64\x37\x0a\xd5\x63\x3e\x19\x00\x2f\x2e\x2e\xf2\xa1\x43\x87\x54\x22\x8a\x0e\x2d\x07\x3f\xdd\x92\x57\xfb\x2a\x5a\xdb\x5a\xca\x58\x67\xb6\x2d\x36\xe9\xb7\xe6\x62\xc5\x73\xaa\xaa\x66\xaf\x5d\xbb\x26\x9d\xe5\x7d\x84\x1f\x99\x1d\xe7\x0c\x03\x00\x5e\x59\x59\xe1\xfd\xfb\xf7\x43\x08\x41\x85\x26\x45\x6f\x5e\x28\x3d\xad\x18\x88\xd8\xb8\x50\x65\x23\x91\xb5\x74\xdb\x1a\x71\x44\x56\x1c\x4c\x37\x99\xa5\xf7\x10\x58\x90\x9c\xd9\x1b\xf8\xba\x1e\x51\xce\x32\x73\xfc\xf2\xe5\xcb\xe5\x44\x22\xc1\x2b\x2b\x2b\x1c\x0c\x06\xb9\xbd\xbd\xbd\x08\x60\x35\x1b\x90\xd3\x77\xdb\xf2\x97\xc7\x7a\xb2\xef\x8c\xf5\x64\x4f\x3f\x68\x2b\xbc\x9e\x57\xcb\x97\x00\x4c\x11\xd1\xea\xf9\xf3\xe7\xcb\xc1\x60\x10\x23\x23\x23\x5a\x34\xaf\x8c\x7e\xee\x46\xc7\xb7\x83\x25\xa5\xcf\x66\x5c\x26\x4e\x02\xa4\x6d\x49\xfa\x9f\x5d\x0d\x1a\x13\x89\x68\xf9\x4e\x7b\x7b\x7b\xa9\xad\xad\x0d\x3d\x3d\x3d\x5a\x7b\x4e\x3b\xf4\xd2\xcd\xb6\x6f\xa8\x2c\x9a\x80\xea\xc1\x89\x56\x09\x1d\x59\xdf\xa1\x82\x4f\x2e\x3c\x8a\x95\x6e\x74\x77\x77\xeb\xe6\x62\x2d\x9b\x3e\x35\x2c\xae\xa3\xa3\x43\x98\x36\xa1\x9e\x0a\x18\x8b\x95\xb7\xdd\x39\x1a\x2b\x84\xb2\xd7\x96\x13\xd0\x9a\xf3\x6d\x23\x22\xcd\xb2\xc1\x36\x01\x5e\xda\xab\x5b\x5e\xd7\xdc\x8f\x8f\x8f\x4b\x00\x29\xe9\xa3\x9b\x33\xfb\x02\xff\x91\x05\x74\x8b\x9b\xd6\xc8\x44\xa0\x46\x02\x98\x6d\xad\x9a\x50\x26\x8d\x96\xb6\xf9\x5e\x4f\xb7\x2b\x3f\x66\xe6\xc5\x74\x3a\xad\x4f\x4e\x4e\xda\x75\x9d\x39\x73\x46\x5e\xbb\x76\x4d\x2f\x97\xcb\x71\x66\x1e\x07\xf0\x3e\x08\x6f\x33\xf8\x4d\x66\xbe\x00\x60\x52\xd7\xf5\xe4\x99\x33\x67\x8c\xb1\xb1\x31\xec\xd9\xb3\x07\x60\x44\xf6\xcd\x47\x7e\x2d\x60\x88\x5e\x00\xf6\xcb\xc5\x0e\xf9\x2d\x00\xed\xc8\x74\xf4\x5f\x11\xa3\xbd\xbb\xbb\x5b\x1d\x1d\x1d\x15\x00\x22\xfb\xe6\xc2\xbf\xa4\x4a\x6a\xae\xa0\x6e\xd9\xae\x0c\xeb\x30\x43\x02\xc4\xa1\xd9\xa6\xdf\x52\x99\x3a\x9b\x9b\x9b\xd5\xbe\xbe\xbe\x1a\x37\x68\x8d\x1d\xb9\xbc\xbc\x6c\x9d\xcb\xad\x27\x03\xc6\x1c\x7b\x68\xab\x36\x61\xb8\xf2\xa6\xb5\x65\x7d\xdb\xc0\x08\x11\x91\xe8\xee\xee\x16\x2e\xd5\xb9\x11\xb8\x4d\x11\x4f\xfb\xd1\x71\x2f\xaf\x5d\xbb\x26\x86\x87\x87\xf5\x60\x30\x38\x97\x6d\x51\x7e\x34\xbd\x2f\xd0\xb9\x75\xac\xf0\xab\xc2\xa8\x4e\x1d\x55\x8f\x88\xa1\x9a\xc3\x77\xd9\x71\xa4\x27\x13\x61\x65\x8b\xfa\xfe\xfc\x88\xff\x1b\x20\x9a\x24\x20\x73\xe5\xca\x15\xab\xed\x76\xdd\x17\x2e\x5c\xc0\xc4\xc4\x84\xdc\xb1\x63\x47\xa1\xbf\xbf\xbf\xd0\xda\xda\x2a\x00\x60\x69\x69\x49\x3e\x78\xf0\x00\x37\x6f\xde\x44\xb1\x58\x94\xe1\x70\x58\x44\x22\x11\x01\x46\xa4\x77\xd5\x7f\xa4\x96\x99\xb3\x45\x2e\xfb\x7f\x2c\xaf\x8e\x44\x8a\x4a\x7f\x3a\x50\x5e\x24\x22\x03\x8c\x68\x57\x5a\x7b\xdc\x42\x98\x89\x6d\x73\xc7\x79\x5e\x6c\xb8\xa8\x0c\x45\x0b\xea\xb6\x95\x90\x31\xd7\xd1\xd1\x61\xcc\xce\xce\xd6\x38\x04\xaa\x94\x95\x12\x52\x4a\x08\x21\xf4\xe5\xb0\x71\xaf\x4a\x05\xe7\x1b\x6f\x53\x0c\x60\x46\x73\x5e\xdd\x16\x2c\x89\xd6\xbc\x26\xa7\x3b\x3a\x3a\x8c\x85\x85\x85\x8d\x8e\x4c\xf7\x48\xf4\x0a\xaf\x49\x9f\xcb\xe5\x70\xe6\xcc\x19\xf9\xfc\xf3\xcf\x67\x18\xb8\x93\xec\x51\xbf\x5d\x0a\x04\x53\x5b\xc7\x0a\xbf\xec\xcf\x72\x27\xb9\x90\xb4\xcf\x41\x47\xd5\xd7\x23\x55\xe8\x8f\x86\xb5\xd7\x16\xb7\x69\xdf\x62\xc2\x55\x02\xe2\x13\x13\x13\xd6\x1a\x98\x35\x75\xaf\xac\xac\xe0\xc2\x85\x0b\xf2\xc2\x85\x0b\x16\xb7\x5a\xd3\xe1\xad\xad\xad\x96\x23\x25\xa0\x4a\x8a\x58\x3e\x4c\xe7\x79\xe8\x4e\xc7\x05\x01\x42\xa9\x6c\xc1\x50\x99\x59\x12\x48\x93\x04\xe1\x3c\xda\xad\x32\x28\x4d\xcd\xca\x7a\x26\x58\x36\xab\x6a\xfa\xc5\x6d\xda\xd4\x4c\x63\x01\x90\xa6\x37\x5e\x4f\x06\x4b\xd3\x65\x82\x4e\x16\x7b\x05\xd9\x32\x07\x20\x7b\x09\x82\x56\xa6\x68\x5b\xd6\x37\x02\x40\xed\xe9\xe9\x71\x76\x8a\xd7\xd4\x54\xbd\x69\x2b\xe1\x8a\xaf\x5b\xce\xbd\x7b\xf7\xe4\xb5\x6b\xd7\x0c\x00\x09\x06\xc6\xb2\xad\xea\x77\xee\x3c\x15\xfe\x83\xb9\x51\xff\x0f\x0b\x61\x8a\xb3\xc9\x96\xc8\x41\x3c\x26\x42\x59\xa3\x5c\x7c\xab\xef\xc2\x9d\x63\xa1\xff\x6d\x71\x50\xfb\x1a\x13\x2e\x10\xd1\xdc\xec\xec\x6c\xc1\x69\xbc\xd7\xc1\x17\x40\x65\xee\xd0\xe1\xc5\xb2\xe3\x66\x66\x66\xa4\x65\xd7\xae\x84\x4a\x0b\xd6\x7d\xe5\xa8\x50\xf3\xcf\x36\xe5\x08\x69\x7f\x39\x9e\xf1\x97\x53\xcc\x2c\x89\x48\x82\x60\x2c\x44\x8b\x53\x56\xaf\x54\x3a\xdc\x31\x41\x47\x15\x7a\xc7\xc3\xa5\xa9\xd5\x40\x39\x01\xc0\x79\x30\x93\x84\x63\x44\xda\x2c\x6d\x71\x71\x11\xdd\xdd\xdd\x7a\xc6\x5f\x9e\xcb\xf8\x8d\x78\x73\xde\x57\x3d\x7e\xc5\xaa\xc8\xfa\x67\xda\x67\xfd\xc9\xc0\x93\xb3\xcd\x85\xd7\xba\xba\xba\x72\x8e\x86\xd7\x03\x2f\xfb\xd1\xcb\x36\xaa\x9b\xfe\xfc\xf9\xf3\x52\xd7\x75\xe3\xd0\xa1\x43\x09\x22\xd2\xcb\x2a\x12\x4b\xdb\x7c\x77\x96\x06\x7c\xdf\x0f\x64\xe5\x8e\x60\x4a\x6e\xf3\x15\x64\x2b\x31\x84\xa1\x51\xa6\x10\x11\x73\xf9\xa8\x72\x5b\x2a\xb8\xcf\xc0\x34\x11\xcd\x81\x39\x35\x33\x33\xa3\xbf\xfe\xfa\xeb\x35\xed\xaf\x73\xf5\x4a\x53\x83\x9b\xd9\x29\xb9\x9b\xdd\xd9\xb7\x46\x96\x42\x9f\x12\x6c\xda\xd6\x55\x37\x92\x49\x3c\xc6\x87\x3d\x99\x37\x4b\x42\xc6\xad\xb3\x65\x89\x28\x73\xbd\x37\xf3\x0f\xbb\x17\xc2\x9f\x09\x1a\x4a\xc4\xe9\x41\xb3\x09\x44\x2c\x3f\xd8\x9a\xfa\x21\x83\x13\x60\xe8\x0e\xe7\x83\x84\xa9\xb5\xda\xe6\x07\x00\x34\x35\x35\x61\x60\x60\x80\x98\x10\xee\x49\xf9\x8f\xb6\xe7\x7c\x03\xd5\x58\x67\x4a\x58\x83\x14\x6a\x99\xd4\xb1\x9e\xec\xdf\xfa\x7c\xbe\xd4\xbd\x7b\xf7\x38\x9f\xcf\x5b\xa9\xdc\xa6\x84\xa5\x95\x0a\x8f\x78\x5a\x5b\xba\x0d\xec\xce\x63\xba\xb2\xb8\xbb\xbb\xbb\x18\x08\x04\x32\x20\x8a\x83\x68\xce\xf0\x8b\xbb\x85\xa8\x72\x2d\xdb\xaa\x5e\xc8\xb6\xaa\x67\xf3\x31\xe5\xbd\x52\x50\x5c\x60\x41\x1f\x82\x68\x12\xc0\xbc\x94\x32\x73\xf1\xe2\x45\xe3\xbd\xf7\xde\x73\x7e\x7c\xc5\xc5\xd8\x6a\x9e\xdd\xb2\x9b\x5c\xe9\xa8\xaf\xaf\x8f\x23\x91\x08\x56\x03\xe5\xa2\xdf\x10\x7d\xdd\x69\x6d\x7b\xad\xa2\x58\x91\x7d\xb3\xcd\xc5\xf1\x9f\x6c\x4f\xfe\x7b\xa9\xe0\x0e\x33\x67\x0a\x85\x82\xf4\xf9\x7c\x5c\xf4\x71\x39\x11\x2e\x19\xdb\x96\x83\xfb\x55\x86\xcf\x69\xf2\x49\x62\x5c\xda\x9a\xfe\x87\x6b\x5b\x32\x7f\xc9\xc0\xdd\x5c\x2e\x97\x3b\x7b\xf6\xac\x75\xac\x0d\x01\xb5\xc7\xb3\x30\x00\x8e\xc7\xe3\x7c\xe8\xd0\x21\xc1\xcc\x81\xa0\x21\x86\x07\x13\x81\xc3\x54\x4d\x6f\xb6\xcc\xf4\x72\x98\xe1\x41\x43\xb4\x4e\x74\xe6\x5e\xcb\xab\xe5\x39\xc3\x30\x4a\xa6\xf7\xa1\x9e\x89\x81\x06\x71\x9b\xca\x93\x4e\xa7\x79\x6c\x6c\x8c\xb3\xd9\xac\x0c\x85\x42\x85\x50\x28\x94\x06\x90\x20\xa2\x45\x66\x9e\x23\xa2\x79\x66\x9e\x03\xf0\x08\x40\x22\x9f\xcf\x67\x26\x27\x27\x8d\x1f\xff\xf8\xc7\x3c\x33\x33\x23\x99\x79\x23\x75\x61\x9d\x70\x06\xc0\x52\x4a\xda\xb6\x6d\x5b\x19\x80\x3e\xd3\x5a\x9c\x4d\xfb\xcb\xdc\x9c\x57\xbb\xb4\xb2\xf0\x33\x80\xac\x56\x4e\x5f\xdb\x92\x7d\xf7\xad\xe1\x95\x3f\xd3\x15\x79\x19\xc0\xd2\xd8\xd8\x58\xe9\xec\xd9\xb3\x18\x19\x19\x29\x0b\x21\x0a\xc9\x60\x79\x69\xa2\x33\x7f\x1f\x40\xc0\x27\x49\x2b\xaa\xb2\xf0\x30\x56\xbc\xff\xce\xf0\xea\x77\xc6\x7a\xb2\xdf\x62\xf0\x2d\x00\x89\x0b\x17\x2e\x58\x67\xc1\xda\xf5\x7b\x6d\x19\x90\xd9\x6c\xd6\x08\x85\x42\x99\x99\xe6\xe2\x07\x0c\x48\x22\x08\x80\xbd\xbf\xbb\x41\x0c\x85\xa1\xed\x58\x0a\x7d\xfa\x7c\xff\xea\xe5\x91\x91\x91\xdc\xa5\x4b\x97\x84\xe3\x43\x60\xc0\xc6\x26\x92\xe1\x91\x66\x23\x2c\x0f\xe3\xe3\xe3\xd2\xdc\xa6\x20\x87\x87\x87\x65\x57\x57\x57\xcd\xf6\xe8\x74\x3a\x8d\xeb\xd7\xaf\xaf\xc7\xf2\xeb\x41\x23\x57\xa2\x0d\x13\x13\x13\x72\x60\x60\xc0\x18\x1a\x1a\x8a\x4b\xe6\xab\x1f\xf6\x64\x93\xb7\xba\xb2\x6f\x84\x4a\x4a\xaf\x60\x88\x9c\x4f\x2e\x1a\x0a\xdf\x67\xe6\x29\x22\x5a\x58\x5d\x5d\x2d\xbc\xf7\xde\x7b\x12\x00\xce\x9f\x3f\x8f\x13\x27\x4e\xa4\x00\x8c\xaf\x06\x8d\xe4\x4f\x86\x93\xd7\xc1\x68\x25\x40\x65\x42\x12\xc0\x1c\x80\x59\x02\x25\xc6\xc7\xc7\x0d\xaf\x0d\x3f\x16\x6b\x75\x28\xb9\xa0\xf6\xf6\x76\xb4\xb5\xb5\x89\x82\x2a\xb5\x9d\x4b\xa1\xe7\x82\x25\x25\x66\xfa\x50\x6a\x78\x77\x55\xcb\x22\x44\x74\xa5\x6d\xac\x37\xfb\xaa\xa2\xf9\x56\x1f\x3d\x7a\x24\x53\xa9\x94\xc5\x46\xdd\x6c\xaa\x1e\x3b\xe5\x3a\x57\x37\xab\x75\x97\x51\xc3\x76\x13\x89\x84\x9c\x99\x99\xa1\x99\x99\x19\x58\x3f\x73\x43\x91\x4b\xea\xd8\x9d\xe4\xc6\x87\x5d\xf1\xa8\x93\x66\x4d\xde\xfb\xf7\xef\x23\x16\x8b\x95\x5b\x5a\x5a\x72\x44\x94\x60\xc2\x9c\xae\xf2\x9d\x82\x22\x6f\xb1\xc0\x6d\x00\x0f\x00\xc4\x17\x17\x17\x0b\xa7\x4f\x9f\x46\xb1\x58\x24\x00\xb4\xb4\xb4\x84\x54\x2a\x25\x7b\x7b\x7b\x8b\xaa\xaa\xa6\x98\x79\x81\x88\x66\x40\xb8\x87\xca\xa9\x99\x73\x52\xca\xd5\xb1\xb1\x31\xe3\xec\xd9\xb3\xee\x41\xc0\x80\xf7\x07\x5c\x60\xbb\xc3\x08\xc1\x48\x51\xd9\xd9\xbb\xaa\xed\xb2\x3c\x23\x56\x0f\x92\xa9\x1e\x93\x69\x97\x05\x0c\xd1\xf2\xa8\x49\xbf\x9a\x08\x96\xee\x84\x42\x21\x7d\x62\x62\xc2\x49\x7c\x0b\xdc\xcf\x5e\x71\x5e\x32\xb2\x51\x19\xec\x0a\x5b\xaf\x0e\xe7\x4f\x3a\xd2\x5b\xf7\xce\x4e\xf2\x82\xba\x76\x32\x33\xe3\xde\xbd\x7b\x48\xa5\x52\x32\x12\x89\x14\xc3\xe1\x70\x86\x99\x57\x89\x68\x85\x99\x57\x53\xa9\x54\xee\xd2\xa5\x4b\xe5\xf7\xdf\x7f\x1f\xf9\x7c\xde\x59\x37\x12\x89\x84\x1c\x1f\x1f\x87\x61\x18\x86\xcf\xe7\x2b\x84\xc3\xe1\x1c\x33\x67\xb2\xd9\x6c\x76\x7a\x7a\xba\xf4\xee\xbb\xef\xb2\xe9\x02\x75\x0f\x02\xd3\x87\x55\x0b\x02\x80\x0c\x85\x42\xe2\x97\x7e\xe9\x97\x04\x80\xee\xee\xb4\xff\x4b\xbf\x70\xa5\xf3\x4f\x6c\x2d\x8c\xaa\x4e\x07\x37\x0d\xa7\x5b\x0a\x6f\x7f\x7f\xff\xd2\xaf\x49\xf0\xdc\x77\xbf\xfb\x5d\xb9\xb2\xb2\x52\x8f\x25\x35\x62\xaf\x8d\xd2\xd5\x83\x8f\x9b\xff\xa7\x06\x3d\x3d\x3d\x02\xa8\xb0\xf7\x4c\x26\xf3\x53\xc3\x45\x31\xaf\xd6\x10\x65\x00\xa2\x54\x2a\xc9\x2d\x5b\xb6\xa0\xa9\xa9\x89\xf2\xbe\xb2\x18\x4a\x04\x4f\x86\x4b\x4a\x8b\xe5\x04\xb0\xce\x16\xa9\x98\x21\xa6\x7d\x44\x40\xb4\xa0\xf4\xcd\x36\x17\xcf\xa5\x83\xe5\x07\xc1\x60\xb0\x34\x35\x35\xe5\x64\x55\xc2\x71\xef\x0e\x73\xb3\x3c\xb8\xd2\x39\xd3\x0a\xac\x4d\x4f\x75\xe2\x9c\xa3\xcb\x1d\xef\x55\x9e\x3b\xac\xde\xd5\x09\x5e\xf9\x6d\xc8\x64\x32\x94\xc9\x64\xa4\xae\xeb\x76\xf8\x73\xcf\x3d\x27\x4e\x9e\x3c\xa9\x1c\x3e\x7c\x58\x7d\xe2\x89\x27\x94\xc7\x1f\x7f\x9c\x86\x87\x87\x81\x0a\x9b\xad\x57\x5f\xc3\x30\xb7\xf9\x61\xb3\x35\x45\x51\x30\x30\x30\xc0\x4c\xf0\xa9\x92\xfa\x06\x56\x02\x07\xac\x33\xd4\xac\xc4\x8e\x7f\x56\xdf\x8a\xa6\xa2\xda\x31\xde\x95\x7b\x3d\xd6\x1c\xcb\xcc\xcf\xcf\x73\x26\x93\x71\xcb\x39\x27\x51\x9d\x61\xeb\xc9\x21\x6c\xa0\x1c\x2f\xd3\x06\x75\xf2\x36\x32\x27\xe0\x7a\x76\xa7\x75\xb3\x67\x27\x2b\xae\xab\x03\xec\xda\xb5\x4b\x7c\xee\x73\x9f\x53\x5a\x5b\x5a\x83\x5d\x85\xc0\xf0\x48\x3c\xf4\xfc\xc0\x4a\xe0\x58\xb8\xa4\x34\x1b\x31\xdf\xea\x96\x6d\x5b\x8d\x81\x81\x01\x39\x33\x33\x03\x5d\xd7\xdd\xe5\x79\xb5\xc1\x0e\x5b\x63\x7e\x58\xbf\x78\x3c\xce\xfb\xf6\xed\x83\xa2\x28\x94\x0a\x18\xbc\x6f\x3e\xf2\x59\x95\xc9\x67\xf9\x5f\xed\x3e\xb4\x3c\x48\xa6\x23\xb6\xa9\xa8\x6e\x8d\x47\x4a\x63\x2b\x21\x63\x32\x16\x8b\xe9\xa6\xeb\xcb\x5d\xbe\xc5\xf2\x36\x6d\x72\xac\x93\x66\x23\x79\x36\x9a\x17\x0d\xe2\x36\x5d\xe7\xae\x5d\xbb\xc4\xf1\xe3\xc7\x55\xbf\x54\x3a\x7e\x66\xa2\xe5\x7f\x7e\x76\xb2\xe5\xcf\x06\x97\x83\xbf\xd0\xbf\x1a\x78\x71\xc7\x52\xf0\x97\x47\x17\xc3\x9f\x4e\x84\x8c\xc9\x52\x9b\x36\x3f\x30\x30\x50\x1a\x1b\x1b\xdb\xd4\x4c\x92\xc5\x5a\x2d\xa8\x61\x0d\xe6\xf7\x31\xb8\xa4\xb0\xd2\x54\x50\x47\xba\x32\xbe\x21\xe7\xbb\x46\x80\xb9\x58\xd9\xec\x51\x73\x54\x76\x64\xb4\x91\xf1\xee\xdc\x3f\x04\xa3\x91\x74\xb1\x58\x94\x8b\x8b\x8b\x6e\x6d\xd0\x6b\xc4\xad\xc7\xc2\x1a\xc1\x47\x65\x85\x9f\x14\x34\x2c\xb3\xb9\xb9\x59\x3c\xff\xfc\xf3\xc2\xa7\xa8\x2d\x9f\xbe\xdd\xf6\xc7\xa3\x8b\xa1\xdf\x20\x86\xe6\x9c\x84\xf0\x97\x45\xd7\xf6\x78\xf0\xc5\xd9\xe6\xe2\xfb\xa5\x98\x3a\x1f\x8d\x46\xcb\xf7\xef\xdf\x6f\x84\x67\x4d\x9d\xc2\xf5\xab\x09\x3f\x73\xe6\x8c\x64\xe6\x02\x33\x2f\x5c\xdb\x92\xfe\x81\x21\x58\xb7\x97\x3f\x5b\x5a\x0f\x5b\x7b\x14\xc8\xbc\x27\xb4\xe4\xd5\xdd\x47\x1e\x44\x7f\x13\x8c\xc8\x13\x4f\x3c\x21\xa2\xd1\xa8\xbb\x3e\xb7\xe6\xd7\x48\x29\xaa\x99\xae\xf1\xb8\x5f\xcf\xf9\xee\x4e\xe3\x2e\xdf\x2b\x4d\x43\xba\x6c\xb0\x2c\xfb\xf9\xc0\x81\x03\x50\x55\x35\xb0\x75\xc5\x7f\x62\xc7\x52\xf0\x9f\x93\x73\xa9\x3e\x9b\x7e\x6b\x26\x68\x52\xb4\x3e\x3d\xd5\xfc\xfb\xc4\x68\x1d\x1a\x1a\xda\x08\xfe\x76\xdd\x4e\x83\xdd\x8d\x10\x00\x88\x85\x85\x05\x49\x44\xc9\x44\xc8\xb8\x3c\xd1\x91\xbf\xe0\x58\x8b\x6f\xb2\x54\x36\x97\x08\xb2\x19\x56\x79\x49\x0e\x3c\x6c\xfa\x6a\x5f\xd2\x7f\x42\xd3\xb4\xc0\x73\xcf\x3d\x07\x45\x51\xdc\x86\xbf\xbb\x5e\x67\xfd\x5e\x1d\xed\xa5\x81\xd6\xeb\x38\x2b\xce\x1d\x5f\xef\x85\xf0\x4a\xe3\xc6\x69\xa3\x1d\xed\x74\xaa\x0b\xa0\x72\x26\x03\x80\xd0\x90\x75\xcc\x27\x01\x20\x36\x77\x82\x3b\xae\x60\x74\xa5\xb5\x23\xb1\xbc\x3a\xac\x28\x8a\x76\xe0\xc0\x01\x77\xd9\x75\xdb\xe1\xae\x18\x8e\x7b\x09\x40\x7e\xf0\xc1\x07\x60\xe6\x02\x83\x67\x2f\x6e\x4d\x7d\xc7\x10\xac\x13\xd8\xf4\xec\x03\x80\x39\xd1\x6c\x79\xfa\xcd\x37\x4c\x65\x0a\xfd\xcc\x44\xcb\x1f\x05\x75\xb1\xad\xad\xad\x4d\x7b\xea\xa9\xa7\xd6\x94\x8d\xc6\x9d\x53\x2f\x5d\xa3\xd9\x11\x77\x3b\xdc\xf1\xff\x18\xbf\x35\xb8\xf9\xfd\x7e\x41\x44\x81\x50\x49\xe9\xb5\x78\x61\xed\xac\x48\x75\x96\x44\x30\xb4\x60\x49\xf4\x02\x50\x43\xa1\x50\xbd\xf6\xad\xf9\x79\xbd\x95\xce\xd1\x20\xe6\xe6\xe6\xe4\xfc\xfc\xbc\x41\x44\x89\x95\x90\x71\x69\xac\x27\xfb\x76\x05\x19\x86\x3d\xd3\x4c\xe6\xf8\x34\x57\xd8\x59\x8b\xd6\x9a\xf3\xea\xe8\xf3\x77\x5a\xff\x50\x61\x6a\xdf\xb5\x6b\x97\x35\x1b\xee\xae\xcf\x4d\x74\xaf\x37\xbf\xae\x11\xee\x2a\x6f\xa3\xa3\xa9\x51\xda\xcd\x3c\x37\xaa\x07\x00\x84\xf3\x98\xcf\x94\xdf\x48\x58\x52\xcd\x3e\xa4\x18\xb0\x17\x4c\x03\x40\x49\xe1\x42\x2a\x60\xa4\x80\xca\xc7\xd9\x1a\xe0\x58\xd3\x26\x2f\x16\xe3\x24\x9c\x04\x20\x5c\xa3\xf2\xaf\xb2\x9a\x4c\x5a\x13\xa7\xce\x93\x0e\xad\x83\x06\x6d\xb6\x0b\xc2\xe0\x72\xe0\x73\x27\xee\x35\xff\x2e\x81\x9a\x8f\x1f\x3f\x2e\xcc\x33\x0a\xdc\xf5\x35\x92\x85\x8d\xd2\xd6\x63\x91\xf5\xca\xa8\x97\x66\xa3\x75\xaf\x87\x83\x3b\x0f\x52\xa9\x94\x75\x32\x66\x61\xb2\x3d\x7f\x9e\x05\xcb\xda\xef\xa3\x54\xb7\x28\x02\xc0\x4c\x73\x71\x2c\xab\xc9\x05\x00\x86\x63\x3f\x8d\xf3\xe7\x29\x2e\xea\x99\x1f\x70\x5e\x33\x99\x0c\xb7\xb7\xb7\x73\x4b\x4b\x8b\xa1\x2b\xb2\x5c\x54\x39\x34\xb4\x1c\x78\xdc\x62\xa7\x16\x54\x59\x6d\xed\x7d\x57\x5a\x3b\x5c\x52\x64\xfc\x51\xcc\xb8\x39\x38\x38\xa8\x27\x12\x09\x5e\x5d\x5d\xdd\x94\x7a\xbd\x89\x1f\xd6\x89\xa7\x4d\x96\xe3\x4e\x6f\xd9\x8e\x5e\xe5\x4a\x47\x3e\x00\x60\x66\xe6\xb6\xb6\x36\xb4\xb4\xb4\x50\xd6\x2f\x65\xb0\x24\x06\xba\x32\xda\x90\x45\xaf\x2a\xfd\x08\x05\x5f\x39\xf3\xda\xae\xe5\xff\x2b\xe7\x2b\x5f\x01\xb0\x7a\xfe\xfc\x79\x99\xcb\xe5\xe0\xaa\xcf\x49\x6e\x3b\xdc\xe9\xd9\xa9\x67\x12\x00\x00\x96\x97\x97\x69\x74\x74\xb4\x4c\x44\xc6\x72\xb8\x94\xee\x49\xfb\x0f\x34\x17\x94\x0e\xb7\xe9\x6b\x2d\x26\x60\x47\x98\x20\x88\xbe\x64\xe0\x64\x5e\x2b\xcf\x2d\x45\x8d\x09\xb3\x33\xb1\xba\xba\xfa\x49\x9b\x01\x1b\x81\xcd\xd6\xe9\x36\x9d\xea\xe5\x77\x86\x0b\xe7\x33\x33\xd3\xf0\xf0\xb0\x04\xa1\x3c\xd3\x52\x98\x03\x10\xeb\xc8\x6a\x7d\x0a\x5b\x8a\x0f\xf0\x28\xaa\x4f\xff\xc3\xee\xe5\xaf\xc5\x23\xc6\x8f\x89\x68\x36\x1e\x8f\x17\x1c\x5f\x61\x58\xb7\x1d\x4e\xcf\x4e\x3d\x4d\x91\x00\x70\xa1\x50\x20\x00\xdc\xdb\xdb\x5b\x62\x82\x31\x1f\xd3\xd3\xa3\x8b\xa1\x13\x95\x33\x47\x1d\x82\x9b\xab\x63\xb1\x1a\x06\x08\x26\x75\x60\x25\xf0\x33\x45\x9f\x5c\x5c\x8c\x1a\xb7\x07\x07\x07\xf5\x4c\x26\x83\x44\x22\x51\xcf\x8e\xac\xe7\xe5\x71\xdf\xc3\x95\xcf\x6d\x3f\xba\x5f\x4c\xaf\xb4\x8d\xe2\xe4\x3a\x69\xe1\xaa\x87\x5d\x69\x29\x99\x4c\x22\x16\x8b\xc9\x96\x96\x96\x82\x24\xa4\x67\x9b\xf5\x89\x9b\xdd\xd9\x9b\x73\x31\x7d\xf6\x7e\x5b\xe1\xd6\xa5\xad\xa9\x1f\x5d\xec\x4f\xff\x97\xb4\xbf\x7c\x8e\x88\xa6\xa4\x94\x99\xd3\xa7\x4f\xb3\x7b\xed\x6a\xa3\x36\x2a\x58\xeb\xfe\x81\xc7\x33\x01\xc0\xd2\xd2\x12\xb6\x6f\xdf\x5e\x0e\x04\x02\x7a\x51\x2d\x17\x73\x9a\xd4\x86\x96\x83\x8f\xdb\x33\xe1\x56\x4a\xcb\x49\x60\xad\xcd\x37\xef\x05\x2a\x9d\x09\x20\x3f\xdf\x52\xba\xb9\x6d\x70\x50\x27\x22\xb9\xb0\xb0\x00\x66\x7b\xbd\x98\x1b\x0f\xa0\xca\xba\xbc\xf0\x72\xe7\xf3\x72\x63\x39\xd3\xbb\xb5\x60\x77\x3e\x27\x3b\xf5\x2a\x17\x54\x51\x35\x25\x00\x68\x9a\x26\xca\xe5\x32\xbb\xd2\x3b\xeb\x95\x00\xf8\xc1\x83\x07\xd4\xd6\xd6\x56\x6e\x69\x69\xc9\x83\xb0\x5c\x52\x79\x7a\x25\x64\x7c\xb8\x14\xd6\x2f\x66\x03\xf2\x03\x26\xdc\x26\xa2\x87\xe5\x72\x39\xf3\xe6\x9b\x6f\x5a\xdb\xf8\xbd\x70\x72\xbe\x60\xc0\x3a\x32\xd2\x53\x1e\x30\x33\x2f\x2f\x2f\xd3\xf6\xed\xdb\x0d\x12\x42\x8f\x47\x8c\x95\x48\x51\xd9\xd6\x99\xf1\xf5\xdb\x8e\x01\xeb\x5f\xc5\xc8\x74\xbc\xb3\xe6\x48\x65\x52\xfa\x56\xfd\xcf\x44\x0b\x6a\xf3\x4c\x73\xe1\x4a\x47\x6f\x77\xa1\xab\xab\xab\x3c\x37\x37\x47\xa5\x52\xa9\x9e\xdc\x44\x9d\xf0\x8d\xc8\xc4\x46\xf2\xdf\x42\xcc\xaa\x97\x5c\xe9\xd6\xc8\xc3\xce\xce\x4e\x7a\xee\xb9\xe7\x70\xf2\xe4\x49\xe5\xf0\xa1\x27\xd4\xd1\x5d\xa3\xc8\xe7\xf3\x58\x5e\x5e\x76\xd2\xcb\x79\x65\x98\xc4\xbb\x7b\xf7\x2e\xeb\xba\x2e\x5b\x5b\x5b\x8b\x3e\x9f\x6f\x95\x88\xe2\x00\x96\x88\x68\x89\x99\x57\xe7\xe6\xe6\x8a\xa7\x4f\x9f\xe6\xb9\xb9\x39\xe9\xaa\x1f\xce\xb2\x5c\xf8\xdb\x32\xd2\x8b\x45\x58\xbd\xee\x2c\x40\x00\xa0\x4c\x26\x23\x85\x10\xe8\xe9\xe9\x29\x01\xd0\x67\x9b\x8b\xf1\xad\xc9\xc0\x63\x11\x5d\x6d\xb1\xbf\x9b\x6c\xa9\xd5\xe6\xca\xee\x8a\xeb\xce\xdc\x40\x53\xd9\x6a\x40\xed\x59\xdf\xa1\xfe\x95\xe0\xa1\xf9\x58\xf1\xaa\xda\x16\x5e\x1d\x1d\x1d\x2d\x3b\x08\xe2\xc5\x3e\xdc\xb8\xb9\x65\x87\x57\x98\x3b\xde\x2d\xef\x2c\x42\x58\x79\xbd\x5c\x89\x04\x80\x15\x45\x11\xfb\xf6\xed\xa3\x67\x9f\x7d\x56\x34\x45\x9a\xc2\x43\x89\xe0\x53\x27\xa6\x62\xbf\xf9\xa0\xbb\xf4\xc1\xd6\x81\xfe\xe2\xea\xea\x2a\x56\x56\x56\xe0\x2a\x67\x0d\xfb\x5f\x5c\x5c\xa4\x1b\x37\x6e\x94\x2f\x5f\xbe\x5c\xce\xe5\x72\xe5\x95\x95\x95\xd2\xed\xdb\xb7\xcb\xaf\xbf\xfe\x7a\x79\x62\x62\x82\xcc\x79\x4a\x67\xfd\x5e\x9d\xb7\x06\x2c\xd6\xea\x66\x09\x0d\xd9\xec\xc2\xc2\x02\xba\xbb\xbb\xcb\x4d\x4d\x4d\xba\x54\x90\x9f\x6e\x29\xc4\x87\xe3\xc1\x23\x9a\x21\x82\xeb\xe7\xae\x6e\x46\x8d\xe8\xca\xc0\xe8\x62\xf8\xe7\x8a\xaa\x5c\x4a\xc4\xe4\xfd\x81\x6d\xdb\x4a\x5d\x5d\x5d\xbc\xba\xba\x8a\x6c\x36\xeb\x24\x84\x45\x68\x2f\xb9\x05\x8f\x30\x2f\x79\xea\x56\x1c\x9c\xb2\xd3\xfd\xd6\x3b\x3b\x56\xf6\xf5\xf5\x89\x17\x5e\x78\x01\x3b\x76\xec\xd0\x34\x56\xda\x9f\xba\x1f\xfb\x1f\x4e\xde\x6d\xf9\xd3\xb6\x9c\xef\x24\x13\x72\x0f\x9b\xf5\x6b\x5b\xb6\x6c\xd1\xef\xdf\xbf\xcf\xc5\x62\xb1\x5e\x47\xb2\xab\x0e\xc4\xe3\x71\x7a\xf8\xf0\xa1\x34\x5f\xde\x7a\xf5\xd7\x93\xf5\x4e\x10\xf5\x58\xab\x9b\x45\xac\x49\x33\x3b\x3b\x4b\x23\x23\x23\x25\x55\x55\x8b\x45\x55\x66\xe6\x63\x7a\x7a\x38\x1e\x7c\xc2\xc7\xc2\x67\xaf\xe7\xb4\xb7\x17\x38\xee\xc9\x52\x84\x2a\x22\x54\x95\x14\x19\x4c\x04\x5e\xee\x5d\xf5\xef\x5a\x8a\x94\x6e\xab\x6d\x91\xf4\x8e\x91\x1d\x46\x53\x53\x93\x73\x9b\xb5\x9b\x95\xac\x17\xe6\x36\x05\xbc\xde\x66\x37\xbb\x5d\x53\x4e\x67\x67\x27\x3d\xfb\xec\xb3\x74\xf0\xe0\x41\x35\x18\x08\x46\xb6\x26\xfd\xc7\x5e\xba\xd9\xf6\xb5\xe1\x78\xf0\x17\x05\x93\x46\x44\xd4\x9d\xf2\x3f\xb9\x10\x2d\x5e\xc9\x36\xe1\x41\x4f\x4f\x4f\xe9\xd6\xad\x5b\xf5\x58\xb8\xbb\x0e\xaf\x78\x77\xbe\x35\x2c\xb4\x5e\x99\xee\xd9\x0f\x77\x81\x5e\x9a\x21\x00\xc0\x30\x0c\x9a\x9d\x9d\xc5\xe8\xe8\x68\x49\x08\x51\xc8\x6a\xe5\xd5\xa5\x26\x3d\xbf\x3d\x1e\x7c\x5c\x30\x14\xb8\x74\x1d\x8b\xd5\x3a\xb7\xb0\x57\x16\x0f\x33\x88\x41\xd1\xa2\xba\x73\xf7\xa3\xf0\x97\xc3\xba\xd2\x94\x68\x2a\xdf\x8b\x76\xb5\x15\x0e\x1c\x3c\x20\xbb\xbb\xbb\x51\x28\x14\x28\x9d\x4e\xbb\xdf\xc4\x46\xac\xb4\x11\xdb\xad\xc7\xae\xed\xfb\xc1\xc1\x41\x71\xf2\xe4\x49\x3a\x74\xe8\x90\x1a\x6d\x8a\x86\xda\x72\xbe\x91\x67\x27\x5b\xfe\xcd\xb1\xfb\xb1\x7f\x1b\xd6\x95\x6d\x36\x65\x00\x08\x86\xaf\x6f\x35\x70\xf8\x4e\x47\xfe\xb4\xda\x14\x58\x09\x06\x83\x72\x7a\x7a\xda\x5d\xd7\x46\xea\xf7\x1a\x71\x1b\xc5\xdb\x36\x3f\xea\xa9\xb8\xce\x42\xd7\x0c\xfb\x7c\x3e\x8f\xd5\xd5\x55\x1e\x18\x18\x28\x0a\x21\x72\xc9\x80\x91\x88\x47\x4a\xf9\xc1\xe5\xe0\x7e\x1f\x0b\xd5\xc6\xcb\xb9\xf1\xc7\x1a\xa1\xd6\xb3\xc3\xd7\x28\x98\x02\xdd\x19\xed\xd8\x9e\x85\xc8\x17\x83\x25\xd1\xb4\x1a\x2a\xcf\x05\x5a\x9b\x0a\x3b\x46\x76\xc8\x1d\x3b\x76\xc8\x40\x20\x40\x86\x61\x90\xa9\x96\xc3\x83\x00\xf5\xcc\x18\x67\x5a\x37\x5b\x26\x53\x0b\xe5\xa7\x9e\x7a\x8a\x4e\x9d\x3a\x45\x3b\x77\xee\x54\x9b\x22\x4d\x91\x8e\xac\xb6\xeb\xf8\xbd\xd8\xbf\x7e\xf6\x6e\xeb\x9f\x74\x64\xb4\xa3\x82\x49\x75\xf0\x13\xfb\xea\x2f\x8b\x96\xb6\xac\xda\x7f\xa7\x23\xf7\x66\x7b\x67\x47\x7e\x75\x75\x95\x13\x89\x04\x3b\x70\x72\xca\x3d\x77\x67\x58\x61\x4e\xee\xe7\xa6\xbf\x33\x9d\x53\xcc\xd8\xe5\x90\x23\xd1\x47\x86\x3d\x7b\xf6\xe0\xd8\xb1\x63\x2a\x80\x56\x02\x8d\x6e\x59\xf5\xff\xec\x4b\x37\xdb\xbe\x1a\xd2\x95\x88\x5b\x5e\x3a\xbf\x14\xe2\x44\xb5\xe6\x3c\x1f\x33\x9d\x21\x38\x71\xaf\xad\xf0\xea\xcd\xae\xec\xb7\x67\x9b\x8b\x57\x0d\xc1\x19\x06\x1b\xb9\x5c\xce\x98\x9f\x9f\xc7\xfc\xfc\x3c\x56\x57\x57\xf1\xe8\xd1\x23\x48\x29\xad\x05\xbb\xf5\xfc\xb2\x12\x80\xe5\xf7\x94\x5d\x5d\x5d\xa2\xa3\xa3\x03\x3d\x3d\x3d\xe8\xed\xed\xad\x7c\x5d\x95\xa1\x69\x65\x8a\x0e\x24\x02\x47\xf6\x2e\x44\x7e\xa5\x2f\xe9\x7f\x41\x30\x45\xbc\xec\x21\x77\x5b\x18\x8c\xf7\x07\x52\xff\xcb\xf9\x81\xd4\x9f\x96\x8c\x52\xea\x6f\xfe\xe6\x6f\xdc\xdf\x5b\x6e\xe4\x2f\xf6\x8a\xf3\x9a\x54\xf0\xb2\xf9\x2b\xed\xaa\x53\xf0\x46\xa0\xa6\x92\x23\x47\x8e\x88\xc7\x1e\x7b\x4c\x45\xe5\xeb\xe0\x23\xed\x39\xed\xf9\x97\x3e\x6c\xfb\x17\x2d\x79\xb5\x13\x16\x37\xb5\xb4\x58\x53\xb9\xb5\x4f\xe2\x20\x73\xcd\xac\xd5\xab\xae\x33\xef\x98\x20\x33\xfe\xf2\xf8\xfd\xd6\xc2\x6b\xf7\x5a\xf3\x6f\xcc\x47\xf5\xb1\xbc\x4f\xa6\x18\x6c\xa0\x72\x2e\x9b\xcc\x64\x32\xd0\x75\x5d\x26\x93\x49\xe7\xb1\x9d\x36\x84\x42\x21\x34\x35\x35\x21\x10\x08\x88\x70\x38\x0c\xf3\x54\x46\x95\x40\x5a\x58\x17\xcd\xbd\xab\xfe\x03\x43\xcb\xc1\x4f\x0f\xac\x04\x5e\x08\x96\xc4\x90\xbd\x1b\xca\x12\x11\x8e\x0e\x23\xc0\xdc\xc2\x5e\x79\x13\xad\xa1\x51\x16\x9c\x7b\x75\xef\xd2\xaf\x4c\xb7\x16\x5f\x5f\x58\x58\xc8\xbd\xfa\xea\xab\xf5\xe6\x59\x3f\x71\x70\x77\xa4\x93\xf5\xb8\x7b\xdd\x19\xef\x05\xe2\xf1\xc7\x1f\xc7\xe3\x8f\x3f\x2e\x84\x10\xcd\xcc\x3c\x14\xd1\x95\x13\x2f\xdc\x6e\xfd\xcd\xfe\x95\xc0\x88\xb5\xe7\xaf\x22\x2b\x2b\x19\xd8\xec\xd5\x8a\x1e\x5b\xdd\xdc\x69\x1f\xbb\x02\xaa\x12\xd2\x36\x49\x59\xea\x0a\x2f\xae\x84\x4a\xd7\xe7\xa3\xfa\xe5\x78\xb8\xf4\xe1\x72\xb8\x74\x27\xed\x2f\x2f\xe6\x7d\xe5\x1c\x13\x0c\xf6\x38\x74\x8f\x00\x55\x30\xd4\x40\x49\x09\x45\x0b\x4a\x77\x6b\xce\x37\xd2\x99\xf1\xed\xeb\x4e\xf9\x1f\x6f\xc9\xa9\xfb\x7d\x92\x5a\x09\x24\xaa\x2f\x17\x6c\x8e\xc1\x26\xb2\xd5\xbd\x8e\x96\x59\x55\x99\xce\xab\x9e\x2f\x40\x48\xf9\x8d\xa9\xbf\x3e\xb8\xf8\xcf\xd2\x9a\x71\xe7\x8d\x37\xde\x30\xee\xdf\xbf\xef\x44\xc3\x4d\xdb\x7a\x23\x11\x1e\xe1\x5e\xf1\x76\xfe\x35\xe7\xec\xd4\x29\xc0\x6b\x36\xc0\x5d\xb8\xbc\x7c\xf9\xb2\x48\x26\x93\xf2\xd9\x67\x9f\x4d\x0a\x21\xee\x64\xfd\xb2\xf0\xea\xde\x78\xfc\xc9\xfb\xb1\x5f\x3b\x34\xdb\xf4\x8c\x30\x09\x05\x50\xf5\x73\xbc\x0e\x09\x56\xfb\x69\x5f\x33\xce\xfe\xa8\x28\x59\xf7\xc2\x5f\x16\xdd\x5d\x29\xad\xbb\x2b\xe5\x7f\xc1\x1c\x2e\x52\x12\x72\x86\xe0\x44\x51\x95\xc9\x82\x2a\x53\x65\xc1\x3a\x13\x0c\x62\xa8\xaa\x24\xcd\x6f\x88\xa8\xdf\x10\xad\xaa\xa4\x66\xc1\x08\x01\x10\x64\xee\xa1\xb4\x0f\x4f\xa4\xea\xb8\xf3\xd2\x10\x6c\xa1\x64\x6d\x75\xe3\x8a\xb2\x66\x49\x2c\x26\x86\xae\x48\xf8\x4b\xa2\x3b\xe3\xa7\xa9\xb6\xb6\x36\x67\x47\x7a\x0d\x00\xaf\xce\x5c\xcf\x65\xea\x09\x6b\x4e\xbe\xf2\xa8\xb4\xee\x08\xf4\x88\x93\x53\x53\x53\xc8\xe7\xf3\x78\xee\xb9\xe7\x32\xc1\x60\x70\xaa\x2c\x90\x3b\x37\xb8\x9a\x7c\xd8\x5c\xbc\xf3\xa9\x89\x96\x2f\x47\x0b\x4a\x2b\x00\x7b\xf4\xd9\x7d\xe6\xf2\x02\xd9\xcb\x80\x1c\xe1\xf6\x91\x2c\x36\x1b\xae\xa4\x05\x43\x28\x8c\x88\x22\x29\xe2\x2f\x8b\xfe\x68\x11\x35\x1d\x50\xc9\xc3\x55\x56\x80\xda\x38\x72\x86\x13\xad\x61\x53\x8e\x69\xd7\xea\x7f\x1b\x95\x4a\xfa\xb2\x60\x39\xd6\x9d\x7d\xff\xec\x50\xf2\xeb\x45\x45\xde\x27\x90\x34\xa7\xaf\x1a\x4d\x9c\xbb\xc3\xdc\x50\x2f\xef\x9a\x72\xdc\xeb\x5a\x1b\x69\x58\x6e\xa8\x1b\x97\xc9\x64\xf8\xfa\xf5\xeb\xb2\xbf\xbf\xdf\x08\x87\xc3\x59\x06\xaf\xac\x86\xca\x73\xb7\x3b\x73\x13\x01\x43\xb4\xb6\x65\x7d\x3d\xa2\x66\x5d\xa5\x09\xe4\xb8\x38\x3b\xa2\x91\x83\xc1\x1d\x66\x8d\xb0\xb5\x9b\x54\xec\x41\x5d\x13\x65\xcb\x6b\x77\xb9\x0e\x0d\xcc\x99\xc7\x21\x16\xc8\x7c\x4e\x86\x4a\xf1\xd7\x77\x26\xbe\x75\xb5\x2f\xf3\x97\x65\x05\x57\x89\x68\x21\x97\xcb\xe5\xbd\xbe\x06\x80\xf5\x3d\x50\x1f\x29\xbd\x65\x7e\x38\x3d\x1b\x6e\x8f\x48\x3d\xd3\xa4\xde\xd4\x97\xfd\x9b\x98\x98\x80\xdf\xef\x2f\x77\x74\x74\x14\x00\x24\x4b\x0a\x2f\xdd\x6b\x2b\xdc\x99\x8f\x15\x97\xdb\x33\xbe\x2d\xa1\x92\x68\xaa\x79\xff\x3d\x09\xea\x0a\x77\xc7\x7b\x76\x32\xd5\xed\x6c\x2b\xda\x2a\x67\x4d\x32\x3b\x8e\xd6\xd6\xe3\x22\x67\x49\x91\xfa\x95\xbe\xf4\xbb\xaf\xef\x4c\x7c\x2d\x1e\x2e\x9d\x26\xa2\x31\x66\x5e\x48\xa5\x52\xb9\xd7\x5e\x7b\x0d\xe6\x8c\x91\x9b\x46\x70\x94\x54\x6f\x46\xc3\xed\x26\x5d\x8f\xfe\xf8\x44\xcc\x8f\xf5\x60\x68\x68\x08\xc7\x8f\x1f\x17\xc1\x60\x50\x03\xd0\x0a\xa0\x5f\x91\xd8\xbd\x7b\x21\xfc\xd9\xc3\xd3\xd1\x4f\x35\x15\x95\x66\x27\xb3\xac\xe2\xbe\x01\xa5\xba\x4e\xb2\xda\x7e\xaf\x1a\x0a\xd5\x70\xe7\xc9\x75\x5e\xb9\x01\xaf\x37\x87\xc1\x90\x04\x39\xd9\x9e\x1f\x7b\x6f\xdb\xea\xab\xc9\xa0\x71\x1e\x84\x49\x00\x8b\xcc\x9c\x99\x9c\x9c\x34\xce\x9e\x3d\x5b\xef\x7b\x99\x3f\x35\xf8\x38\xe6\xc7\xa6\xe1\xd4\xa9\x53\x62\x64\x64\x44\x25\xa2\x10\x33\xb7\x13\xd1\x36\xbf\x41\x7b\xf7\xcc\x87\x9f\x3f\xf0\xb0\xe9\x58\x53\x51\x69\xb6\xf7\xfd\x9b\x1a\x22\x08\xa6\x66\xe8\xb4\x4a\xac\x2d\x7e\x96\x02\x64\xf1\x3f\xd8\xec\xd0\xd6\x2e\x6d\x3b\xa2\xda\x64\xab\x23\xed\x21\x69\x7e\xf3\xd8\x3a\xc4\xae\xaa\xb5\x72\x4d\xbd\x65\x01\x79\xaf\x2d\x3f\x7e\x69\x6b\xfa\xb5\x47\x4d\xfa\x79\x06\x4f\x12\xd1\x9c\xf9\xe1\x1a\xfd\xcc\x99\x33\x4e\xb7\xe2\x46\xa1\x91\x25\xb0\x61\xf0\xea\x48\xf7\x5c\x97\x5b\x1d\xae\x17\xd7\x48\xb5\xb6\xc3\xb6\x6c\xd9\x22\x8e\x1c\x39\x82\x8e\x8e\x0e\x0d\x40\x08\x40\x27\x80\x7e\xb5\x4c\x23\x3b\x96\x82\x4f\x3f\x36\x17\x39\xd6\x99\xd6\x7a\x09\x10\x55\x5a\x57\xf9\x5a\xed\xf8\x20\x47\x28\x1c\xb2\x6c\xed\x99\xe6\x56\x63\xd9\xd1\x91\x6b\x1b\xef\xb4\x15\xab\xf7\x79\x9f\xcc\x4d\x74\xe4\xc6\xae\xf5\x66\xde\x4c\x84\x8c\x2b\xa0\xca\x56\x37\x00\xc9\x72\xb9\x5c\xb8\x7e\xfd\xba\x74\x7d\x3f\x7a\xa3\xf0\x89\x74\xa2\x85\xf9\x66\x58\x6b\x23\xfb\x67\xe3\x95\x12\x61\xd7\xae\x5d\x38\x78\xf0\x20\xc2\xe1\xb0\x06\x20\xc2\xcc\xad\x00\xfa\x04\xa8\xbf\x33\xad\x3d\xb6\xeb\x51\xe8\xe8\xf6\xe5\xe0\xee\x48\x51\x89\x82\xc9\xd6\x1c\xed\xd1\x63\x6a\x2e\xd5\x05\x5f\xb5\x22\xcc\xee\x08\xdb\xcc\x31\x3b\xd0\xa9\xed\x38\x4f\xff\xa7\x6a\x37\x33\x18\x65\x01\x63\x3e\x5a\x9c\xbd\xd5\x99\xbb\x34\xd5\x9e\x3f\x5f\x50\xe5\x24\x08\xd3\xcc\xbc\x08\x20\x09\xa0\x30\x39\x39\x29\xaf\x5c\xb9\x82\x64\x32\xf9\x51\x49\xe1\x84\x7a\xe6\x86\x57\x38\xe0\x1a\x48\x9f\x14\x6b\xf5\x72\x25\x6d\xe8\x4d\xdb\xb3\x67\x8f\xd8\xbf\x7f\x3f\x9a\x9a\x9a\x54\x54\x46\x68\x14\x40\x27\x33\xf7\xaa\x4c\x7d\x3d\x29\xff\xbe\xc1\xe5\xc0\xfe\xad\xc9\xc0\x50\x6b\xce\xd7\xae\x48\xa8\xb4\xd6\x9f\x67\xda\x73\xb4\x46\x23\xb5\x2f\x84\x9a\xa3\x3a\x9d\x2c\xd3\x52\x93\x73\x3e\x99\x99\x8f\x16\x67\xef\xb7\x16\xc6\x1f\xb4\x16\xae\xa4\xfd\xe5\x29\x10\x66\x01\x2c\x00\x48\x00\xc8\x94\xcb\x65\x7d\x6a\x6a\x4a\x3a\x4e\x02\xd9\x2c\x7c\x62\xa3\xd0\x09\xeb\x75\x64\x23\xf6\x59\x2f\xec\x23\xc1\xf0\xf0\xb0\xd8\xbf\x7f\x3f\xda\xda\xda\x54\x22\xb2\xd8\x6e\x14\x40\x3b\x80\x76\x62\x74\x86\x8b\x4a\x5f\x67\xc6\xb7\xbd\x3b\xe5\x1f\x6a\xcf\xfa\xba\xdb\x72\xbe\xf6\x90\x2e\x22\x8a\x74\x9c\xf6\x0c\x97\xda\xc4\x56\x47\x56\x7b\x91\x09\x52\x57\x58\x4f\x05\x8c\x64\x3c\x5c\x5a\x7c\xd4\xa4\x4f\x2f\x34\x15\xa7\x12\x21\xe3\x5e\x49\xe1\x05\x06\x2f\x9a\xb3\xf7\x09\x66\xce\x10\x51\x41\xd7\x75\x63\x62\x62\x42\x3a\x76\x0c\x7f\xd4\x36\xff\x54\xf2\x39\x59\x6b\xbd\x0e\xa9\xe7\xb8\xb5\x60\x23\xce\x5d\xaf\x6b\xbd\xb2\xe5\x53\x4f\x3d\x25\x06\x07\x07\x11\x89\x44\x54\x00\x1a\x33\x07\x4c\x05\x29\x4a\x44\x51\x54\xfc\xb9\x51\x30\xa2\x5a\x99\x9a\xc3\xba\xd2\x16\x29\x2a\xad\x81\x92\x88\x04\x0c\x11\xd2\xca\x22\xa0\x48\x52\x89\x21\x24\xb1\x51\x16\x6c\x14\x54\x59\x28\xfa\x38\x93\xd5\xca\xc9\xac\x56\x4e\xe4\xb4\xf2\x72\x99\x90\x02\x21\x05\x20\xc9\xcc\x29\x00\x49\xf3\x0c\xf1\x1c\x11\xe9\x86\x61\x18\x0b\x0b\x0b\x72\x62\x62\xc2\xfa\xee\xe3\x7a\x9c\xa7\x51\x5b\xbd\xd2\xbb\xa1\x11\x1d\x1b\xa6\x25\xd4\x56\xea\x05\x5e\x4a\x4b\xa3\xb8\x46\x9e\xfc\x46\x65\xaf\x89\xeb\xea\xea\x12\xc3\xc3\xc3\xd8\xb2\x65\x0b\x62\xb1\x98\xfd\x25\x3a\x00\x9a\x39\x6a\x03\x00\x02\x66\x47\x6b\xcc\x6c\x85\x0b\xd4\x7e\x76\x58\xa2\xe2\x7f\xd5\xcd\x5f\x81\x99\x0b\x44\x54\x70\x84\xe9\x00\x0c\x5d\xd7\xe5\xfc\xfc\xbc\x7c\xf0\xe0\x01\xee\xdd\xbb\xe7\xe9\x80\x5f\x07\x3e\x96\xfe\xf0\x51\xeb\x71\xb3\xd6\x86\x4e\xf1\x06\x71\x9b\x85\x8f\x54\xd6\xd0\xd0\x90\xe8\xe9\xe9\x41\x47\x47\x07\x22\x91\x88\x08\x06\x83\x40\x65\x6a\x4a\x98\xb3\x19\xd6\x27\x8a\x84\xbd\x8f\xd3\x9c\xb6\x32\x8b\x90\x00\x24\x55\xbe\x69\x2c\xcb\xe5\xb2\xcc\xe7\xf3\x72\x71\x71\x11\xf1\x78\x1c\xe6\xe9\x96\xff\x24\xa1\x5e\x47\x6e\xb4\x43\x1b\xb1\x16\xa0\xfe\xe8\xf4\x2a\x6b\xa3\xf5\x57\x12\x0a\x21\xa4\xf9\x69\xd3\xc1\xc1\x41\xd1\xde\xde\x0e\x61\x6e\x2e\x6b\x6a\x6a\x82\xb9\x01\x06\x00\x90\x48\x24\x50\x2a\x55\x0e\x07\x5e\x5d\x5d\x45\xb1\x58\x84\xf9\x9d\xcb\x8f\x02\x9f\xd4\x0b\xfd\x53\x51\x7a\xac\x82\x85\xeb\xde\xed\x95\xf7\x4a\xe3\x2e\x03\x58\x9b\xaf\x5e\x9c\x57\xbd\x8d\xd2\x7a\xd5\xd5\x28\x9f\x17\xfe\x9b\xc5\x75\x33\x65\x6c\xf4\xea\x05\x5e\xf4\x74\xc7\x6f\x38\xcf\x27\xc5\xdb\xff\x31\x64\xc4\x7f\x6b\xf8\x6f\xdd\xc6\x86\xf5\x6f\xe4\x0d\xda\xc8\xdb\xf5\x8f\x0d\x1b\xe1\x0c\xf5\xd2\x6e\xa6\xdc\x9f\x36\x7c\x64\xdc\x36\x32\xb1\xec\xa5\x89\x36\xca\xb3\x9e\x8c\xf4\x4a\xe7\x7c\x6e\xe4\xe2\xf3\xba\xf7\xc2\xb5\x51\x1d\x6e\x68\x64\x2a\x01\xde\xb8\xb8\xeb\x6a\xd4\x0e\xd4\x89\x73\xd7\xef\x05\x5e\xb8\x79\xa6\xfb\x7f\x00\xaf\xaa\xf6\x12\x47\x65\x14\xb8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x18\x1c\x34\x88\xd8\x3c\x00\x00") + +func web_uiV2AssetsAppleTouchIcon114x11449e20f98710f64b0cae7545628a94496PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsAppleTouchIcon114x11449e20f98710f64b0cae7545628a94496Png, + "web_ui/v2/assets/apple-touch-icon-114x114-49e20f98710f64b0cae7545628a94496.png", + ) +} + +func web_uiV2AssetsAppleTouchIcon114x11449e20f98710f64b0cae7545628a94496Png() (*asset, error) { + bytes, err := web_uiV2AssetsAppleTouchIcon114x11449e20f98710f64b0cae7545628a94496PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-114x114-49e20f98710f64b0cae7545628a94496.png", size: 15576, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsAppleTouchIcon120x120C9cc4fc809a6cbff9b9c261c70309819Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x7b\x3f\x84\xc0\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x78\x00\x00\x00\x78\x08\x06\x00\x00\x00\x39\x64\x36\xd2\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xbd\x7b\x70\x1c\x47\x7a\x27\xf8\xfb\xb2\xaa\xab\xdf\x8d\x46\xa3\xf1\x06\x01\x10\x04\x01\xf0\x29\xbe\x44\x91\x1c\x8e\x44\x51\x8f\x95\x34\x1c\x4b\x96\x3c\x1e\xdb\xe7\x47\x78\xbc\x7b\x8e\xbb\x3d\x3b\x6e\xcf\xbb\xe1\x70\x5c\x38\x36\x1c\x0e\xc7\x86\xcf\xe1\xb8\xf0\xeb\x6e\x7c\xb3\xde\x59\xef\x7a\x66\x35\xb6\xc7\x33\x9a\xd1\xcb\x96\x34\xa2\x24\x4a\xe4\x90\xa2\xf8\x82\x40\x12\x04\x41\x10\x04\xf1\x6c\x00\xdd\x8d\x7e\x54\x57\x57\x65\xde\x1f\x5d\xd5\x5d\x5d\xa8\x6e\x00\x24\x35\xe3\xd9\xd8\x44\x34\xaa\x2a\x2b\x7f\x99\x59\x99\xf5\x3d\xf2\xfb\x32\xb3\x80\xff\x11\xfe\xbb\x0f\xcc\x71\xac\x17\xc7\x1c\x71\xce\x34\x6b\xc5\xaf\x37\xad\x5b\xb9\xb5\xc2\x83\xc2\xba\x3d\xdf\x4f\x3c\x96\x6c\x11\xdc\x3c\xe7\x2e\x09\x39\xdc\x0b\x75\xc3\xb8\x9d\xd7\xab\xb4\x3d\x0f\xb7\x32\x6b\x95\x7d\xaf\xd8\x7a\xf9\xd5\x4a\xb7\x9e\xba\xfc\x73\xc5\xd6\x0d\x6b\x51\xf5\x7a\xee\xd5\xca\xaf\x16\x7e\xbd\x6f\xf2\xfd\x62\x9d\x6f\x7f\xad\xe3\x4f\x34\x56\xae\x71\xc3\xde\xfb\xd6\x1b\xb4\x16\x35\xd6\x6a\x5c\xe7\x9b\xe4\x56\x96\x5b\xbc\x13\x53\x8b\x1a\xef\x05\xcb\xab\x93\xd7\xc4\xbb\x51\xc3\x4f\x22\xf6\xc7\x16\x36\xf2\xa2\xac\x75\xaf\xee\xfd\x48\x24\xc2\x00\x40\x92\xa4\xf5\x70\x91\x8d\x94\xf9\xcf\x1a\x6b\xc9\xe0\xb5\xe4\x2f\x1c\xf7\xe1\x12\xe7\x26\x73\x9d\x32\xa4\xd6\xfd\x7a\xa1\xae\xfc\x6f\x6a\x6a\x42\x3c\x1e\x87\xcf\xe7\x43\x73\x73\x33\x88\x08\xad\xad\xad\xe5\x32\xbc\x5e\x2f\x18\x63\x20\x22\x00\x80\xaa\xaa\xe0\x9c\x03\x00\xd7\x34\x0d\x4b\x4b\x4b\xc8\xe7\xf3\x48\xa5\x52\x58\x5e\x5e\x46\x3a\x9d\xc6\xca\xca\xca\xbd\xd4\x67\x3d\xe1\x47\x8e\xa5\x3a\xf7\x6a\x75\xcc\x83\x0e\x1b\xca\xbf\xb7\xb7\x97\x75\x74\x74\xa0\xa9\xa9\x09\xcd\xcd\xcd\x4c\x92\x24\xa0\x24\x6a\x18\x81\x18\x01\x32\x09\xc8\x32\x27\xc5\xa7\x33\x9f\x6c\x90\xc2\x04\xc9\x24\xc0\x04\x41\x37\x98\xd0\x0b\x32\x57\x35\x49\x68\x9c\x84\xc6\x09\x3a\x08\x5c\x08\xa1\x03\xe0\x42\x08\x5e\x2c\x16\xf9\xf4\xf4\x34\x12\x89\x04\x6e\xdf\xbe\x8d\xa5\xa5\xa5\x5a\x2f\xf6\x7a\x5f\xe2\x1f\x1b\x96\xdc\x22\x6d\xd7\x56\xa8\x95\x29\x5c\xd2\xb8\xc5\x39\xa9\xbc\x96\x8c\x71\xad\xe8\xae\x5d\xbb\x58\x4f\x4f\x0f\x5a\x5b\x5b\x99\xc9\x62\x65\xc6\xa1\x04\x8a\x52\x34\x96\x95\xbb\x9b\x72\x9e\xa1\x58\xce\x33\x18\x51\xe5\xde\xb0\x2a\x75\x04\x34\xa9\x45\x16\x14\x61\x1c\x01\x00\x8c\x4c\xc5\x44\x98\xba\x84\x20\x68\x9c\x44\x4e\x93\xc5\x52\x46\x31\xe6\x57\x7c\xfa\x64\xd2\xa7\x4f\x2c\x05\x8b\x57\x13\xc1\xe2\x68\xca\xa7\x4f\x17\x64\x91\x03\x41\x03\xc0\xf3\xf9\xbc\x7e\xe7\xce\x1d\xdc\xbd\x7b\x17\x37\x6e\xdc\x58\x6b\x44\x51\x2f\xfe\x47\x8e\xad\x47\xc1\xf6\xf0\x59\x53\xf1\xaa\xb0\x75\xeb\x56\xd6\xdf\xdf\x8f\xce\xce\x4e\x46\x44\x32\x81\x94\x90\x26\xc5\x3a\x52\xde\xdd\xdd\xcb\xde\xc7\xda\xd2\xca\xc1\x06\x55\x1e\x92\x39\xc5\x20\xc0\x2c\x16\x2c\x04\x40\x04\x40\x00\x02\x02\x00\xa1\x74\x29\x00\xa0\xcc\xaa\x2b\x09\x2b\x41\x94\x52\x69\x05\x99\x4f\x2d\x06\xf5\xe1\xbb\x0d\x85\x0f\xef\x44\xd5\x8f\xe6\xc2\xda\x58\x51\x16\x19\x00\x5a\x3e\x9f\xe7\x13\x13\x13\xfc\xfa\xf5\xeb\x98\x9f\x9f\xaf\x27\xb2\x36\x1a\x3e\x13\xac\xb3\x83\xeb\xc9\xd4\x8d\xa4\xb1\xdf\xdb\x50\x9e\x07\x0f\x1e\x64\xdb\xb6\x6d\x83\xd7\xeb\x95\x85\x10\xbe\x90\x26\xc5\xb7\x24\x02\xc7\xb6\x26\xfc\x5f\x6c\x5d\x51\x8e\x78\x0c\x8a\xa3\xc4\x8a\x4b\x41\xa0\xd4\x8d\x64\x5d\x10\x40\xb6\x53\x81\xf2\x75\xd5\x11\xd5\xe7\x42\x88\xd2\xab\x60\x4b\x63\x75\x78\x5e\xe1\xe3\x93\x51\xf5\x07\xa3\x2d\xb9\xef\x4f\x46\xd5\x4f\x0c\x09\x19\x21\x84\xbe\xb0\xb0\xa0\x5f\xbb\x76\x0d\xa3\xa3\xa3\x65\xb9\x8e\xda\xfa\x8b\xdb\x35\x1c\x69\x1f\x38\x76\xbd\x14\xfc\x99\x86\x68\x34\xca\xf6\xef\xdf\x8f\xbe\xbe\x3e\x46\x44\xb2\xc4\x11\xe9\x5e\xf6\xed\xdb\x3e\x1b\xfc\xf9\xde\x25\xdf\x73\x32\xa7\x38\x99\xbd\x25\x4a\x84\x68\x76\xa8\x49\x9b\xc2\xa4\x4c\xf3\x5e\x55\xa7\x11\xca\x3d\x2d\x04\x2a\x9d\xb8\x3a\x71\x39\xbf\x0a\x65\xdb\xd2\x08\x01\x41\xe0\x59\x85\x8f\x5e\x6f\xc9\xfe\xfd\x48\x5b\xf6\xef\x16\x03\xfa\x24\x08\xb9\x4c\x26\xa3\x0f\x0f\x0f\xe3\xda\xb5\x6b\xd0\x34\x6d\xa3\x54\x78\x3f\xba\xce\x9a\x58\x42\x6d\x0a\xab\x37\x6e\xdc\x48\xe1\x35\x83\xdf\xef\x67\x87\x0f\x1f\xc6\x96\x2d\x5b\x18\x00\xc5\xa7\xb3\xd8\xb6\xf9\xe0\x33\xbb\xa6\x43\xbf\x16\xcb\xc9\x07\x09\xc4\x4a\x94\x85\x2a\x66\x5b\xee\x14\x1b\x2b\x26\x22\xb3\x43\xa9\xcc\x7e\xeb\x62\x9d\xad\x60\xb1\x6c\xe1\x20\xf1\x32\x4b\xaf\x86\x18\x4c\x64\x26\x1b\xd5\x57\x2f\x74\x66\xfe\x6a\x2a\xaa\x7e\xc2\x19\x72\x2b\x2b\x2b\xda\x85\x0b\x17\x70\xe3\xc6\x0d\x18\x86\x01\xb8\x53\xe1\x7a\xe5\xe8\x03\xc1\xfe\xd8\x28\x78\xdf\xbe\x7d\x6c\xf7\xee\xdd\x4c\x51\x14\xc5\xa3\x53\x74\xd7\x4c\xe8\x85\x3d\x77\x43\xff\x4b\xb8\x20\xed\x24\x1b\x65\x56\x08\x8e\xca\x72\x14\xa8\xc4\x5b\xd4\x2b\x4a\xe4\x89\xf5\x61\x09\x64\xa3\x7c\x61\xf2\x79\xe7\x79\x25\x1f\xab\xe3\x57\x63\x39\x84\x36\xdd\xa0\xfd\xd3\xd9\xee\xf4\x9f\x4d\x36\xaa\x1f\x83\x90\x49\xa7\xd3\xfa\xa9\x53\xa7\x30\x35\x35\xb5\x1e\xc2\xf8\x4c\xe5\xb6\x5b\x07\xbb\x69\xc9\x0f\x54\xc1\x7a\xf1\xc5\x17\x59\x3c\x1e\x57\x48\x20\x34\x30\x1f\x38\x7e\x78\xa2\xe1\x77\x1a\x54\x69\x8f\xc5\x86\x2d\x39\x2a\xca\x54\x65\x29\x4e\x02\xa2\x8a\xb8\x4c\xd6\x09\x8b\xf5\xae\x03\x5b\xc5\xce\x2b\x9d\x66\xc9\x60\x81\x0a\xae\xdc\x48\x56\x7e\xa8\x8d\x15\x04\x6d\x22\xa6\xfe\xc3\x47\x9b\x53\x7f\x9c\x08\x16\x47\x05\x44\x6e\x6c\x6c\x8c\xbf\xfb\xee\xbb\x3f\x76\x2d\x7a\x3d\x06\x07\xb7\x0e\xaf\x55\xb0\xeb\x35\x63\x0c\x47\x8e\x1c\xc1\xf6\xed\xdb\x19\x04\x02\xcd\x19\xcf\xd0\x63\x37\xa3\xbf\xdb\x99\xf2\x3e\x47\xa0\xea\xb2\xdd\x38\x69\x0d\xee\xba\x2a\x3c\x00\xec\x7a\x93\xbb\x61\x75\x26\xd2\x97\x3a\x32\x7f\x7a\xb6\x3b\xfd\xb5\x82\x87\x27\x72\xb9\x9c\xfa\xe1\x87\x1f\xe2\xd6\xad\x5b\x1b\xcd\xf1\x81\x04\x09\x95\x77\x55\xb8\xfc\x08\x15\xea\x75\xbb\x76\xc3\xba\xa6\x7d\xf1\xc5\x17\xa9\xa7\xa7\x47\x91\x0d\x8a\x1f\x9c\x8c\xfc\xcb\xa7\x46\x63\xff\x4f\xa3\xea\x79\x88\x40\x24\x9c\x4d\x4a\x15\x6a\x2a\xcb\x4e\x6b\x18\x64\x0d\x77\x60\xbf\x5e\x3f\xb6\x74\xcf\xaa\xa2\x25\xc6\xad\x74\xe5\x4c\xec\xb1\xb6\xeb\xb5\xb1\x4c\x90\xb7\x3d\xad\x3c\xda\x9f\xf0\x3f\x9e\xf4\xeb\x63\xb9\x30\x2d\x6c\xd9\xb2\xa5\xa8\x28\x8a\x30\x59\xb6\xbd\x6d\xec\x47\x7b\xb0\xd2\xd9\xd3\x3a\xaf\xd7\x85\x95\xcc\x48\x66\x46\xb0\x72\xbd\x2b\x54\x58\xeb\xda\x19\x98\xe3\x1e\x01\xa0\xa1\xa1\x21\x3a\x71\xe2\x84\x14\x0e\x85\xfd\xb1\x9c\xbc\xfd\x0b\x23\xf1\x3f\x1d\x9a\x0f\xfc\xba\x24\x98\xbf\xd2\x35\xd5\x0a\x10\x39\x8e\x95\xae\xb2\x98\x31\xe1\x5e\xb1\xa8\xfa\x4f\x8e\xff\xd6\x1f\xcc\x32\xec\x79\x6d\x0c\xeb\xd3\xa5\xb6\xad\x0b\x81\x17\xbc\x06\xc9\xd3\x0d\xda\x48\xbc\xb5\x59\x95\x24\x49\x4c\x4f\x4f\x5b\x1d\x62\x75\x50\x2d\xe3\x90\xfd\xc1\xec\xbf\x0d\x61\xeb\x71\xa2\xfb\x36\x55\x1e\x3d\x7a\x94\x6d\xdb\xb6\x8d\x11\x28\x32\x38\x1f\x78\xe6\xf1\xb1\xc6\x3f\xf6\xea\xd4\x56\x6e\x24\xbb\x55\xa2\xe6\x7b\x63\xbb\x2f\x2c\x4a\xa9\xc6\x5a\x28\x9d\x09\x3d\xab\x18\xe9\xb4\xcf\x48\x67\xbd\x46\x26\x2f\xf3\x5c\x41\xe6\x39\x83\x09\x2e\x08\x9c\x71\x30\x0f\x67\x8a\xaf\xc8\x02\x81\x22\x0b\x85\x55\x39\x12\x2e\x48\x11\xaf\xce\x7c\x4c\x54\x1b\xe8\xdd\xeb\xe0\x3c\x2f\x05\xb7\x21\xb6\xfd\xde\x64\x63\xe1\x6f\xbe\xb3\x7b\xe1\x37\x0a\x85\x42\xfa\x9b\xdf\xfc\x26\x8a\xc5\x62\x2d\x0d\xb9\x9e\x2d\x1f\x2e\xe7\x6b\x62\x65\xd4\x97\xc1\xcc\x71\x74\x33\x55\xae\x3a\x97\x24\x09\x8f\x3d\xf6\x18\xfa\xfb\xfb\x65\xc9\x40\xfc\xc8\x44\xf4\x5f\xef\x9d\x0a\xfd\x5b\x12\xa4\x58\x0f\x6d\x05\x12\xd6\xb5\xa5\xf6\x56\x1b\x2b\x56\x75\xba\xa9\x88\x71\x06\xbe\xe2\xd5\xd3\xd3\x91\xc2\xe4\x4c\x43\x61\x62\x2e\xac\x4d\xa6\x7c\xfa\xdd\x82\x2c\x92\x20\xe4\x00\xa8\x00\x34\x21\x84\x4e\x44\xf6\x87\x97\x01\x28\x00\x14\x08\x11\x60\x82\x42\x41\x4d\x6a\x8e\x67\x3d\x5d\x6d\x69\xa5\xb7\x33\xe5\xed\x6d\xce\x28\x2d\x8a\x41\xbe\x52\xd1\x56\x5d\xcc\xae\x2b\x9f\x5b\x43\xb3\x8a\x92\x6d\x57\xb6\xad\xe7\x31\x98\xd0\x2e\x74\xae\x9c\x07\xe0\xf3\x7a\xbd\x19\x45\x51\x78\xb1\x58\x74\xb6\xb5\xb3\x9d\xeb\xc5\x6f\x08\x2b\xa3\xd2\xf3\xeb\xa5\x52\xb7\xf4\x55\xe7\xcf\x3f\xff\x3c\x6b\x6a\x6a\x52\xbc\x45\xea\x78\x72\x34\xf6\xfb\xfd\x09\xff\xcf\x11\x88\xa1\xaa\x01\x80\x32\xc3\xa3\x0a\xcb\x15\xc2\x64\xa9\xa2\x3a\x0d\x00\x08\x06\x9e\x08\x6a\xf3\x63\xf1\xfc\xc8\xad\x58\xfe\xf2\x52\xb0\x78\xcb\x60\x98\x17\x42\x2c\x11\x51\x5a\x08\x91\x03\x90\x83\x80\x06\x40\x37\x7f\x5c\x54\x17\x0a\x22\x92\x01\xc8\x20\x92\x39\xc1\xb7\xe2\x33\x02\x2b\x3e\x23\x34\x1e\xcb\x47\x09\x14\x0f\x14\x59\x47\x67\xca\xbb\x6d\xcb\x82\x7f\x77\xcf\xb2\xaf\xcf\xa7\xb3\x40\xb9\xae\xe5\xf7\xcf\xaa\xbb\xb3\x96\xb6\x7a\x93\xc0\x99\xde\xd4\xf7\x26\x62\xea\x27\x42\x08\xad\x50\x28\xf0\x6c\x36\x5b\xcf\xa1\xb0\x96\x2d\x1f\x8e\xb4\x6b\x62\x65\xd4\x0f\x6e\x66\xb2\x9a\x2f\x82\xcf\xe7\x63\xcf\x3d\xf7\x1c\xe2\xf1\xb8\x2f\xa0\xb1\xee\x13\x9f\xc6\xff\xa2\x3d\xad\x1c\x07\x50\x36\x20\x58\x1c\xb6\x32\xae\x2c\xfd\xa3\xca\xa8\x03\xb0\x0c\x16\x26\x4e\xf5\x08\xf5\x7a\x73\x6e\x78\xa4\x2d\x7b\x66\x21\xa4\x7d\xca\x19\xa6\x01\xcc\x03\x48\x02\x48\x13\x91\x0a\x40\x23\x22\xdd\xac\x5f\xb9\x8e\x0b\x0b\x0b\x55\xf5\x55\x14\x05\x0d\x0d\x0d\xf6\xb7\xde\xfa\xc9\x44\xe4\x03\x10\xc8\x29\x3c\x7a\xa3\x39\xff\xd1\x8d\x78\xbe\xcd\x5f\x64\xbd\x5b\x16\xfd\x0f\xef\x9c\x09\x1e\x6c\x5d\x51\x3a\x4a\x75\xb5\x0d\xa5\xca\x3d\x5b\x61\xe1\x84\xd2\x90\x6c\x2c\x9e\xff\xe4\x93\xae\x95\x6f\x81\x30\x41\xa0\xcc\xc8\xc8\x88\xbd\x0d\x6b\x51\x22\x6c\xf7\xed\xf5\xac\xe7\xe8\xa9\x89\xdd\xf0\x68\xa0\x46\x60\x5e\xaf\x17\x27\x4e\x9c\x40\x2c\x16\xf3\x85\x0b\x72\xdf\x4f\x0d\xc7\xff\xb2\x39\xeb\x39\x62\xc9\xdb\x4a\x9b\xd8\x65\x99\x8b\x74\x33\x3b\x57\x40\x20\xe7\xe1\x99\x4b\x9d\x99\x33\xc3\xed\x99\x77\x73\x1e\x3e\x26\x20\xa6\x50\xea\xd8\x34\x80\x1c\x00\x5d\x08\xa1\xa7\x52\x29\x9e\x48\x24\xb0\xb8\xb8\x88\xc5\xc5\x45\xcb\xa7\xbb\x26\x47\x6a\x6f\x6f\x67\x7e\xbf\x1f\xf1\x78\x1c\xf1\x78\x1c\x6d\x6d\x6d\x4c\x92\x24\x66\x52\xb8\x22\x84\x08\x11\x51\x0c\x42\x74\x10\xa8\xab\x2b\xe9\x7d\xe4\xc0\x9d\xc8\xf1\x4d\xcb\xde\x5e\xb2\xd9\xc3\xdd\x64\xf0\x92\xbf\x38\xfb\xb7\x7b\xe6\xff\x7d\xde\x63\xbc\x0f\x60\x6a\x7e\x7e\x3e\xf7\xca\x2b\xaf\xd4\xa3\xc4\xcf\xcc\x54\x59\x0f\x64\x85\x7a\x66\x33\xae\x28\x0a\xfb\xe2\x17\xbf\x88\xa6\xa6\x26\x5f\xb0\xc0\xfa\x5e\xb8\xd2\xfc\x57\xf1\xac\xe7\x60\x25\x73\x37\x45\xaa\x32\x94\x29\x77\xba\x69\x84\x50\x65\xae\x5e\xec\x58\xf9\xe8\x62\x67\xe6\x1f\xf3\x1e\xe3\x1a\x80\x49\x22\x4a\xa0\xd4\xb1\x9a\xa6\x69\xfa\xdd\xbb\x77\xf9\x9d\x3b\x77\x30\x39\x39\x89\x5c\x2e\x67\xaf\x67\xad\xfa\xaf\x67\xbc\x8f\x96\x96\x16\xf4\xf4\xf4\xa0\xa7\xa7\x07\x8d\x8d\x8d\x8c\x88\x14\x00\x01\x00\x51\x00\x1d\x10\xe8\xdb\x94\xf4\x1e\x3e\x3c\xd1\xf0\x4c\x7b\x5a\xe9\x76\x7b\x32\x4d\x12\xea\xb7\x1f\x9a\xff\xbf\xe6\xc3\xc5\xef\x03\x18\x53\x55\x35\xfd\xca\x2b\xaf\x20\x95\x4a\xd5\x2b\xfa\x33\x09\x0f\x84\x82\x1f\x7f\xfc\x71\xd6\xdf\xdf\xaf\xf8\x75\xa9\xfb\xf9\x2b\xf1\xbf\x6c\x5b\x51\x8e\x51\x55\xd6\xee\xfa\xa5\x73\xa8\xc3\x01\x8c\x35\xe7\x87\x3f\xdc\x9c\xfa\x6e\xca\xa7\x9f\x07\x61\x42\x08\x31\x0b\x20\x43\x44\xea\xec\xec\x2c\xbf\x7e\xfd\x3a\xae\x5f\xbf\xfe\x59\x9a\x00\xcb\xb8\x78\x3c\xce\x86\x86\x86\xd0\xdf\xdf\xcf\x14\x45\x91\x51\xea\xe8\x18\x80\x2e\xc6\x31\xb0\x6d\x2e\xf8\xd4\xe1\x89\xc8\xd3\x41\x4d\x8e\x58\x83\x32\x0e\xf0\x77\x06\x96\xff\xe6\xd3\xb6\xec\xd7\x41\x18\x31\x0c\x63\xe9\x9d\x77\xde\xe1\x13\x13\x13\x6b\xd5\xe5\xc7\xe2\x2e\xb4\x42\x4d\xc5\xe0\xd0\xa1\x43\x6c\xd7\xae\x5d\xb2\x2c\xa8\xed\x8b\xc3\xf1\x3f\xe9\x59\xf6\xbd\x60\x69\x9c\x15\xad\xb2\x22\x7f\x2b\xa6\x5d\x51\xa5\x5c\x65\x14\x3d\x7d\xb2\x3f\xf9\xdd\x9b\xf1\xfc\x5b\x82\x30\x0a\x60\x0a\x25\x8a\x55\xc7\xc6\xc6\xf8\xc5\x8b\x17\xdd\x66\x56\xd4\xab\xfb\x7a\x1b\xab\x96\xb2\x52\x85\xdf\xb6\x6d\x1b\xdb\xb7\x6f\x1f\x82\xc1\xa0\x45\xd1\x2d\x10\xe8\x0d\x6a\x6c\xdf\xa3\xe3\xd1\x2f\x0f\xcc\x07\x76\x03\xc0\x70\x5b\xf6\xd4\x0f\x06\x96\xff\x88\x43\x7c\x42\x44\xf3\xe7\xcf\x9f\xd7\xcf\x9f\x3f\xbf\x2a\xbf\xf5\x96\x5b\xe3\x59\xd6\x8d\xbd\x2f\x0a\xde\xba\x75\x2b\x3b\x76\xec\x98\x4c\xa0\xd8\xf1\x1b\x8d\xbf\xbb\x6b\x26\xf8\xbf\x12\x6c\xca\x87\x35\x6e\x2d\x73\x65\x93\x2d\x0b\x5b\x47\x03\xb8\x15\x53\xaf\xbd\x33\xb0\xfc\xd7\x59\xaf\xf1\x31\x80\x71\x00\x09\x21\x84\x7a\xe7\xce\x1d\xfd\xcc\x99\x33\x48\x26\x93\x0f\xd4\x16\x7e\x3f\x61\xfb\xf6\xed\xec\xe0\xc1\x83\x50\x14\xc5\x07\x20\x82\x12\xdb\x1e\xda\x3e\x17\xf8\x17\x43\x73\xc1\xdd\xaf\xee\x48\xfc\xb1\x26\x8b\xb3\x00\xa6\xee\xdc\xb9\xa3\xbe\xf1\xc6\x1b\x3f\xd6\xba\x13\xee\xc3\x5d\xf8\xab\xbf\xfa\xab\xb2\x47\xf6\x44\x76\x4f\x07\x7f\xf9\xd8\x58\xe3\x1f\x31\x41\xf2\x2a\x71\x6b\x57\x36\xed\x9c\x5a\x00\x06\x13\xfc\x5c\x77\xfa\xed\xb3\xdd\xe9\xff\x66\x90\x18\x26\xa2\x49\x21\x44\x3a\x9d\x4e\x6b\x3f\xfc\xe1\x0f\x61\xb2\xb5\x7a\x6e\xb4\x7a\xd6\x9c\x8d\xde\x43\x8d\xf8\x55\xfa\x87\xcf\xe7\x63\x87\x0f\x1f\x46\x5f\x5f\x1f\x63\x8c\x05\x00\xc4\x09\xd4\xc1\x04\x14\x83\xc4\x14\x80\xe9\x95\x95\x95\xdc\xcb\x2f\xbf\xfc\x93\xeb\x2e\xfc\xd2\x97\xbe\xc4\x1a\x1b\x1b\x03\xed\x29\xe5\xd1\x9f\xbe\xd2\xfc\x0d\x8f\x41\xd1\xca\x10\x02\xb0\xf7\xa4\x5d\xd6\x5a\x0a\x95\x26\x09\xf5\x9d\x81\xe5\xbf\x1d\x6d\xce\xbd\x02\xc2\x08\x80\x69\xc3\x30\x72\x23\x23\x23\xfc\xf4\xe9\xd3\x3f\x8e\xb7\x7e\xc3\x32\xb0\xad\xad\x8d\x3d\xf6\xd8\x63\x68\x68\x68\x50\x00\xf8\xcc\x3c\x54\x5d\xd7\xb5\xd7\x5f\x7f\x9d\xcf\xce\xce\x6e\x48\x57\x38\x74\xe8\x10\xf3\xfb\xfd\x68\x6c\x6c\xc4\xf2\xf2\x32\x16\x16\x16\x30\x3c\x3c\xbc\x5e\xb1\xe4\x1a\x36\xaa\x45\x03\x00\x1e\x7d\xf4\x51\x36\x34\x34\xa4\x78\x8b\xac\xf7\xcb\x17\x5a\xbe\x15\xcb\x7b\x76\x97\xdc\x76\x95\x71\x6e\xa9\x53\xcd\xff\x02\x20\xaa\xc4\xa8\xb2\x91\x7b\x75\xc7\xe2\x7f\xbc\xdb\x50\x78\x43\x40\x5c\x03\x30\x9f\xcf\xe7\xd5\xf7\xde\x7b\x0f\x77\xee\xdc\x01\xaa\x29\xad\xd6\x83\xac\x87\x4a\xdd\xb0\x1b\xa5\x60\x67\x7c\x55\x1a\x8f\xc7\x83\xdd\xbb\x77\x63\x70\x70\x10\xa1\x50\x08\x93\x93\x93\x38\x77\xee\x1c\x16\x17\x17\xd7\xc4\x02\x40\x43\x43\x03\x0e\x1d\x3a\x84\x4d\x9b\x36\x31\xc6\x98\x22\x84\xb0\xac\x8b\x3a\x11\xe9\x86\x61\xe8\x17\x2f\x5e\xe4\xe7\xcf\x9f\xbf\xa7\x3a\xdb\x59\x74\xbd\xe1\x43\xf9\x7e\x77\x77\x37\x9e\x79\xe6\x19\x06\x81\xf8\x93\xa3\x8d\x7f\xb0\x63\x36\xf8\x95\x8a\x97\xa5\x14\x9c\xfa\xb3\x3d\x3e\xab\x18\xe9\xef\xed\x48\x7c\x75\x2e\xa2\xfd\x23\x80\x6b\x00\x96\xe6\xe6\xe6\xb4\xb7\xde\x7a\xcb\x6d\xb8\xe3\xac\x03\xb0\xfa\xc5\xab\xd5\xc1\x0f\x12\xfb\x99\xc4\x45\xa3\x51\x7c\xe1\x0b\x5f\x40\x30\x10\x0c\xc4\x72\x72\xdf\xbe\xa9\xf0\xaf\xf4\x2c\xfb\x1e\xf5\x18\x2c\x92\xf6\xe9\x13\xd7\x5a\x72\xdf\xb9\xd2\x9e\xf9\x6e\x51\x16\xc9\xe9\xe9\x69\xed\xd5\x57\x5f\xdd\x70\x19\x12\xaa\x07\xa9\x1c\x95\xfe\xe1\xb6\x38\x06\x80\x7b\x3c\x1e\x7a\xf6\xd9\x67\xa1\x28\x4a\xb0\x77\xc9\xf7\xd4\xd1\xf1\xe8\xef\x11\xc0\x2c\xfd\xd8\x92\xb3\x96\xa1\x82\xec\x02\x17\x80\xea\xe1\x99\xef\xef\x48\xfc\xe5\x6c\x83\xf6\x3a\x80\xab\x00\x16\x47\x47\x47\x8b\xef\xbe\xfb\x2e\x54\x55\xe5\xa8\xed\x72\xb4\xbf\x27\x4e\xd7\xa4\x3d\xcd\xbd\x60\xed\x8d\x52\x0b\x2b\x1e\x34\xd6\xeb\xf5\xe2\x85\x17\x5e\x40\x30\x18\x0c\xf4\x2d\xfa\x9e\x7c\x7e\xb8\xf9\xe5\xf6\x15\xe5\x29\xc5\x90\x3a\x3c\x9c\x9a\x02\x1a\xdb\xd2\xb3\xec\x3b\xd1\xbd\xec\xdf\x33\xde\x94\xff\xd0\xd7\x18\xca\x44\x22\x11\x3e\x31\x31\x81\x8d\x94\xeb\xa4\x5e\xeb\xda\x19\x07\x00\xd8\xbb\x77\x2f\x42\xa1\x90\xe2\xd5\xa9\xe3\xb1\x9b\xd1\xdf\x65\x20\xd9\xee\x9e\x13\x20\x9b\x6d\xd6\xea\xf4\x52\x47\xeb\x4c\x68\x6f\x0c\x2d\xfe\xa7\x99\x88\xf6\x1a\x4c\xca\x1d\x19\x19\xd1\x4f\x9e\x3c\xc9\x35\x4d\xb3\xca\x71\xe3\x22\x6e\x66\x45\xb7\x34\x1b\xc1\x3a\x29\xd9\x6d\xc8\xb1\xd6\xf1\xbe\xb0\x87\x0e\x1d\x42\x30\x18\x54\x22\x79\x69\xe8\xe9\xeb\xb1\xbf\xf0\x1a\xac\x8d\x6c\x24\x61\x39\x1f\xdb\x32\xca\x93\x4f\xdc\x88\xfd\x01\x04\xa2\x5b\xb7\x6e\x65\x6d\x6d\x6d\x1b\x2a\xb7\x9e\xb5\xca\x1e\xc7\xa3\xd1\x28\xdb\xbd\x7b\x37\x83\x40\x64\xff\x64\xe4\xd7\xa2\x79\x79\x3b\x20\xcc\xa9\x2c\xe6\xcf\x36\x33\xd1\x6e\x92\xe4\x10\xfc\xdd\xad\xcb\x2f\x4f\x36\x16\xbe\x8f\xd2\x18\x77\x69\x64\x64\x44\x3f\x75\xea\x14\x77\x94\x55\xeb\x65\xb3\xdf\x77\x53\x2a\x36\x82\xad\x25\x92\x6a\x75\xdc\x7a\xe4\xf7\x86\xb0\x44\x84\xde\xde\x5e\x06\x20\xb4\xe7\x6e\xf8\x57\xbc\x3a\xeb\x10\xab\x18\x50\xe5\xbc\x77\xc9\xf7\x53\x2d\x19\xcf\x1e\x00\xbe\xa1\xa1\xa1\x0d\x95\x5b\xeb\xad\x5e\x95\xc1\xa1\x43\x87\x40\x44\x4a\x63\x5e\x1e\x7a\x68\x3a\xf4\x15\x32\xeb\x50\x72\x99\x91\x0b\x23\x2c\xf9\xa7\x05\x04\x2e\x76\x66\x4e\x8e\xb4\xe6\xfe\x4e\x40\xd8\x3b\xd7\xad\x7c\xb7\x37\xd1\x49\x9d\xcc\x25\x7e\x23\xd8\x7a\x1d\xe4\x86\xb5\xe7\xf1\x40\xb0\x1d\x1d\x1d\xf0\x7a\xbd\x0c\x02\x91\xce\x94\xf7\x90\xd5\x56\x80\xd9\x74\x02\x66\x9b\x96\x5c\x57\x4c\x40\xe9\x4a\xfa\x3e\x2f\x84\xf0\xf5\xf4\xf4\x6c\xa8\x5c\xcb\x9b\x54\x4b\xe3\xe4\x00\x58\x4b\x4b\x0b\xeb\xea\xea\x62\x04\x8a\x1e\xbc\x1d\xf9\x75\x45\x67\xb1\x8a\x45\xca\x4c\x69\x59\x2d\x2c\x1f\xaa\x59\xd1\xe9\x06\x6d\xec\xa3\xcd\xa9\xaf\x83\x70\x8d\x40\x89\xd9\xd9\x59\xcd\x41\xb9\xf5\x82\x9b\xf6\xfc\x20\xb0\xb5\xf2\x58\x4f\xde\xf7\x8d\x6d\x69\x69\x61\x28\x69\xb8\x01\x99\x53\xa4\xe2\x5c\x33\x45\x1c\x55\x18\x35\x04\x40\x82\xe0\x2f\xb2\x16\x00\x8a\xc7\xe3\x71\xeb\xa3\x9a\xc1\xed\x8d\x5e\xf5\xc6\xef\xdd\xbb\x17\x8c\x31\x5f\x3c\xeb\xd9\xb9\x75\x21\xf0\x02\x48\x00\x64\xb2\xe1\x55\xe7\x28\xab\x1f\x05\x8f\x91\x7b\x67\x60\xe9\xaf\x74\x49\x5c\x06\x30\xbb\xb2\xb2\xa2\xbe\xf9\xe6\x9b\x56\xbe\xb5\xca\x74\xc6\xb9\x71\x98\x07\x89\xb5\x53\x98\x3d\xce\x0d\xf3\xa0\xb0\x00\x4a\xb4\x90\xf2\xe9\xf3\xe5\x36\x24\x4b\xe4\x59\x42\xae\xd4\x9e\x82\x04\x92\x7e\x3d\x41\x44\xce\xbc\xd6\x2c\xd7\xc9\x3e\x9c\x32\x8e\x37\x37\x37\xb3\xee\xee\x6e\x06\x81\xc8\x81\x3b\xe1\x5f\x93\x04\x05\x08\x04\x12\xe6\xcf\xfa\x33\x1d\xf5\x65\x1e\x43\x02\x67\x7a\xd2\xdf\x5d\x0a\xe8\x1f\x09\x21\xa6\x0c\xc3\x50\xdf\x7e\xfb\x6d\x6b\xe6\xbf\x53\x66\xd6\x93\xab\x6e\x54\xf7\xa0\xb1\x6e\xe3\x7e\x37\x2a\x79\x20\xd8\xb9\xb9\x39\x08\x21\x38\x08\xb9\x6b\xad\xd9\x53\x96\xa5\x9e\x04\x95\xfd\xe0\x64\xf3\x91\xe7\x3d\x3c\x39\xde\x94\x3f\x8f\xd2\x0c\x95\x0d\x95\x5b\xeb\x2d\x2c\x87\xbd\x7b\xf7\x82\x88\x7c\x0d\xaa\xdc\xdf\x9f\x08\x3c\x47\x96\xf3\xc0\x7c\xeb\x4a\xc1\xa2\x62\x94\xa9\x78\x26\xa2\x8d\x5d\xee\xc8\x7c\x47\x40\x4c\x10\x51\xe6\x87\x3f\xfc\x21\x5f\x58\x58\x80\xad\x8c\xb5\x64\x56\x2d\x59\xfa\x20\xb0\xdc\x11\x6f\x7f\x7e\x27\x55\x38\xeb\x7c\xdf\xd8\x44\x22\x01\x5e\x5a\xcc\x94\xbe\xd1\x9c\x7f\xf7\x46\x3c\x7f\x56\xa0\xc2\x09\xcb\x0a\x17\x01\x06\x09\xfe\x41\x5f\xf2\xe5\xbc\xc2\xc7\x01\xe4\x6e\xdf\xbe\x6d\xcb\x76\xed\x72\x99\xcb\xcd\x32\x28\x14\x0a\xb1\x4d\x9b\x36\x31\x00\xa1\xdd\xd3\xa1\x9f\x97\x38\x42\xd5\x66\x48\xcb\xc0\x61\xf2\x65\xd3\x8b\x64\x10\xf8\xa9\xbe\xe4\xcb\x9c\x61\x94\x88\x96\x66\x67\x67\xf5\xe1\xe1\x61\x67\x85\x6a\xfd\xdc\x2a\x5f\x4b\x23\xbe\x57\x2c\x5c\xae\xdd\xd8\x5f\xad\xb4\xf7\x85\xd5\x34\x8d\x8f\x8e\x8e\x72\x00\x19\x0e\x31\xfe\xd6\xd0\xd2\x9f\x5d\xec\xcc\x9c\xd4\x98\xd0\xac\x01\x92\x00\x90\xf6\x1a\x4b\x6f\x0d\x2e\xfd\xe7\xab\xad\xb9\xef\x00\x98\x06\xa0\x5e\xbe\x7c\xd9\xfe\x7c\x6b\x96\x6b\x9f\xb2\x63\x7f\x33\x39\x00\xf4\xf7\xf7\x83\x31\x26\x7b\x8b\xd4\x36\x34\x1f\x38\x51\x5a\x02\x62\x05\xfb\xc4\xb8\x72\x0c\x84\x20\x8c\x35\xe7\x3e\x9e\x8e\x68\x1f\x00\x98\xd6\x75\x5d\x7d\xef\xbd\xf7\xac\x24\x6e\x8a\x4f\xad\xe0\x4c\x5b\x8f\x25\x6f\x04\xeb\x96\x8f\x5b\x7a\xb7\x72\x1e\x18\xf6\x83\x0f\x3e\xe0\x5d\x5d\x5d\x5a\x28\x14\x9a\xd5\x18\xff\xf8\xbd\x2d\xc9\xf4\x85\xae\x95\xb7\xda\xd2\xde\x6d\xbe\x22\x0b\xa5\xfc\xfa\xfc\x4c\xa4\x70\x49\x93\xc4\x88\x80\x18\x83\x40\xf2\xfa\xf5\xeb\xdc\xb6\x64\x75\x5d\xe5\x3a\xe7\x64\xd9\x1b\x80\x0d\x0e\x0e\x02\x40\x60\xf3\x92\xff\xd1\x80\xc6\xba\xca\xde\x5b\x6b\x95\x5f\x79\x98\x04\x58\x3d\x6d\x48\xd0\x3f\xee\x4e\x7f\x5b\x40\x4c\x10\x28\x33\x3c\x3c\xcc\x53\xa9\xd4\x7a\x3b\xb5\xdc\x00\x2e\x95\xdd\x88\x86\x5b\x0f\x5b\x4b\x66\xaf\xa7\x9c\x07\x8a\x7d\xf5\xd5\x57\x71\xe2\xc4\x89\x5c\x38\x1c\x9e\x04\x90\x4e\x79\xf5\xf1\x74\x8b\xf1\x3e\x00\x59\x08\xa1\x02\x58\x22\xa2\x25\x08\xa4\xef\xdc\xb9\xa3\xbf\xff\xfe\xfb\xb5\xca\xaa\x59\xae\x73\xda\x6c\x99\xc4\xbb\xba\xba\x10\x89\x44\x64\x02\x45\xb6\xcd\x05\x9e\x27\xfb\xb4\x51\x9b\xc5\x05\xb0\xb4\xfa\xd2\x98\xe9\x56\x2c\xff\xc9\x42\xb0\xf8\x31\x11\x25\xf2\xf9\xbc\x7e\xf6\xec\xd9\x8d\x74\x2e\x5c\xea\xf3\x59\x63\x9d\xb2\x74\xa3\x9c\xe2\x9e\xb1\x2b\x2b\x2b\x78\xf5\xd5\x57\xf1\xb9\xcf\x7d\x4e\xdd\xb4\x69\xd3\x3c\x80\xa4\xe9\x6c\xb0\xf2\xd0\x35\x4d\xd3\x2f\x5c\xb8\xc0\x2f\x5d\xba\xe4\xc6\x91\xd6\x2c\xb7\xe6\xb4\xd9\x9e\x9e\x1e\x10\x91\x1c\x2a\x48\x5d\xed\x69\xef\x01\x4b\xe8\x97\x57\x70\x59\xc1\x76\xca\x09\xfc\x52\x67\xe6\x35\x10\xa6\x84\x10\xb9\x35\x5c\x5d\xb5\x42\x2d\x2a\xfc\xac\xb0\x6b\x51\xe5\x67\x8a\x5d\x59\x59\xc1\x9b\x6f\xbe\x89\x78\x3c\x8e\x9e\x9e\x1e\x35\x12\x89\x20\x14\x0a\x61\x79\x79\x19\xa9\x54\x0a\x57\xae\x5c\x59\x6f\x19\xae\xe5\xd6\x9c\x36\xdb\xd3\xd3\x03\x21\x84\xaf\x67\xc9\x77\xc4\x63\x50\xc4\xbe\x08\xc2\x9a\x97\x6e\x9f\x38\x07\x08\x24\x42\xc5\x89\xe9\x48\xe1\x2c\x80\xa5\x42\xa1\xa0\x5f\xb8\x70\xe1\x5e\xe5\xe5\x7a\xa9\xf0\xb3\xc0\xae\x75\xef\xbe\xb0\x83\x83\x83\xcc\xe7\xf3\x01\x00\x2e\x5d\xba\xc4\xbd\x5e\x2f\x2b\x14\x0a\x3c\x91\x48\x20\x91\x48\xc0\x05\x0b\xa0\xb4\xdc\xb6\xb9\xb9\xb9\x7c\x23\x9d\x4e\x63\x6c\x6c\xcc\x3e\x2d\xd8\xb5\x5c\xd7\x95\x0d\xcd\xcd\xcd\x08\x85\x42\x0c\x02\xa1\xde\x25\xdf\xe3\x15\x6d\xb9\x62\x64\x11\x55\x4c\xba\x44\xc8\x57\x5b\xb3\xef\x9b\x73\x96\x73\xe3\xe3\xe3\x55\x79\x9a\xc1\xa9\xfd\x59\x71\xab\x8c\x00\x35\xd2\xfd\xa8\xb0\xf6\xb4\xf7\x8d\x6d\x68\x68\x60\xc7\x8e\x1d\x43\x6b\x6b\x2b\x43\x45\x2c\xe2\x91\x47\x1e\xe1\x00\xf4\xb1\xb1\x31\x9c\x3e\x7d\x1a\xf9\x7c\xbe\x0a\xab\x28\x0a\x0e\x1f\x3e\xcc\x06\x07\x07\x19\x00\x85\x71\x28\x92\x20\x85\x93\xd0\x0d\x82\xba\x6b\xd7\x2e\x6d\x66\x66\x06\x6f\xbf\xfd\xf6\x2a\xac\x55\x0f\x57\x25\xab\xbd\xbd\x1d\x00\x64\x99\x53\xac\x33\xe5\xdd\x03\xd3\x61\x5f\x19\x12\xd9\x9c\xf9\x26\xd0\x20\x68\x63\xf1\xfc\x7b\x00\x96\x00\x68\xe6\x24\x6f\x3b\x35\xd9\x55\xfa\xf5\xb0\x98\x5a\x94\xf8\xa0\xb1\xce\x7b\x6e\xd8\xb5\xb8\x41\x4d\xec\xd0\xd0\x10\x0e\x1d\x3a\xc4\x14\x8f\xe2\x6b\xcc\xca\xdd\x83\x0b\x81\xe7\x5a\x57\x94\x87\x74\x26\xd4\x99\x88\x76\xfe\x7a\x4b\xf6\xcd\xfe\x2d\xfd\xf3\x5d\x5d\x5d\xea\xeb\xaf\xbf\x8e\x44\x22\x51\xc6\x3e\xf7\xdc\x73\x68\x69\x69\x51\x02\x1a\x6b\xdb\x3b\x15\xfe\x85\x2d\x09\xff\x17\x43\x9a\xd4\x51\x90\xf9\xd2\xed\x46\xf5\xe4\xc7\x9b\x56\xfe\x0a\x6d\xed\xe3\x5f\xfa\xd2\x97\x56\x61\xad\x3a\xc8\x70\x69\xfc\x9e\x9e\x1e\x06\x40\x89\x67\x3d\x03\xfe\x22\x6b\xb1\x66\x63\xb8\x4d\xff\xb0\x62\xe7\xc2\xda\xf8\x8a\xd7\x18\x07\x90\x99\x9b\x9b\xe3\x4b\x4b\x4b\xe5\xfc\x9c\xf9\xbb\x34\x20\xb0\xfa\xed\xb3\xc7\x3b\x29\xa6\x2e\xf6\xd0\xa1\x43\xac\xa7\xa7\xa7\xa4\x24\x52\x69\x1b\x08\x00\x96\x95\x88\xe7\x72\x39\x7e\xf7\xee\x5d\x5c\xbb\x76\x0d\x33\x33\x33\xb5\xf2\x72\xd6\xd5\xad\xee\x75\xb1\xdd\xdd\xdd\xec\xe8\xd1\xa3\x8c\x11\x8b\xec\x9b\x0a\xff\xdc\xa1\xdb\x91\xdf\xf3\x18\x2c\x6e\xb5\x63\x7f\xc2\xff\x2f\xf7\xdf\x09\x8f\xbd\x3d\xb8\xf4\x6f\x6e\x35\xe1\xfd\x67\x9f\x7d\x36\xf3\xbd\xef\x7d\x8f\xa5\x52\x29\xfe\x85\x2f\x7c\x81\xb5\xb4\xb4\xf8\x62\x59\x79\xe8\xa7\x86\x9b\xbf\xde\xa0\x4a\xbb\xad\xb6\x56\x0c\xd6\xbd\x63\x36\xb4\x67\x4b\xc2\xff\xe2\xab\x3b\x16\x7f\xed\x6e\x14\x67\x8e\x1d\x3b\x96\xfb\xce\x77\xbe\xc3\x0c\xc3\xa8\xaa\xab\xb5\x7c\xb4\xec\xec\x97\x24\x89\x1e\x7e\xf8\x61\xe6\xf1\x78\xc2\x5b\x17\xfc\x3f\xdd\xbb\xec\xfb\x3c\x9c\x41\xd8\x58\xb5\x79\x7e\xa5\x23\xf3\xe6\x74\x54\xfb\x27\x00\x0b\x57\xae\x5c\x31\xe6\xe7\xe7\x6d\xa9\xab\x7e\x6e\x9d\x6b\x77\x56\x33\x47\x3a\x37\xc7\xf9\x2a\x6c\x38\x1c\xa6\x63\xc7\x8e\xd1\xe3\x8f\x3f\x2e\xb5\xb5\xb6\x7a\xfd\x8a\x37\xe2\x5f\xe1\x7d\xe1\x84\x71\x28\xbc\x64\x1c\x0d\x26\xf9\x5e\x5f\xc6\xe8\x21\x0e\x2f\x05\x95\x62\xac\x29\x86\x81\x81\x01\xa3\xb7\xb7\x17\x0b\x0b\x0b\x94\xcb\xe5\x9c\x13\x1f\xec\xe5\x5a\xe5\xd8\x27\x40\xd8\xef\x31\x37\xec\x89\x13\x27\xc8\xeb\xf5\x06\x77\xcc\x06\x7f\xe6\xd8\x58\xf4\xcf\x65\xc1\x42\x36\x61\x07\x02\xe0\x31\x28\xd6\xb7\xe4\x7f\xfa\x76\xa3\x7a\x4a\x0b\xb2\xb9\xa6\xa6\x26\xdd\xeb\xf5\xd2\xb6\x6d\xdb\x64\x0f\x67\x6d\x2f\x5c\x69\xfe\x4f\x4d\x79\x79\x7f\x65\xd2\xb1\x85\x15\x90\x0d\x6a\xe8\x59\xf6\x1d\xb9\xda\x9a\x7b\xc3\x13\xf2\xa5\x89\xc8\x98\x9e\x9e\xae\x9a\x58\x50\x96\x07\xd6\x31\x16\x8b\xc1\xe7\xf3\x31\x00\x81\xf6\xb4\x77\x77\x65\x6b\x0a\x73\x1f\x0c\xcb\xe3\x61\xa3\x0a\x01\x81\xc9\x68\xe1\xbc\x10\x22\x0d\x40\x77\x98\xd3\xac\xbc\x9d\x6c\xcc\x2d\x8d\xf3\x7c\x2d\x39\x0a\xa0\x34\x67\xf9\xf0\xe1\xc3\x4c\x96\x65\xc5\x93\xe7\x1d\xf1\x49\xed\xe7\x1a\xa7\x8b\x5f\xf2\xa8\x62\x08\x10\x8a\x95\xce\x9c\x82\xa0\x1b\x1e\x9a\x48\xb6\xc9\xdf\x5b\xe8\xf5\xfc\x75\xbc\xa9\x69\xfc\xc5\x17\x5f\x54\x2f\x5d\xba\xc4\xcf\x9d\x3b\xc7\xcc\xed\x90\x6a\xc9\x57\xb7\xba\x3b\xeb\xca\xcc\x3a\x21\x10\x08\x28\x8a\x4e\x1d\x87\x26\x22\xbf\xc3\x04\xc9\x80\x80\x30\x5d\x70\x15\x87\x11\xc1\xa3\x53\xfc\xc8\xad\xe8\xbf\xfb\xee\xae\x85\x7f\xd5\xd6\xd6\x36\xdf\xd6\xd6\xc6\x01\xf8\xb6\x2c\xfa\x9f\x8e\x67\x3d\x87\xac\x91\x8b\x1b\x36\xa8\x49\xfd\x3b\x66\x83\x3f\x73\x6e\x53\xfa\xcf\x07\x06\x06\xb4\x73\xe7\xce\x55\xd5\x6f\x95\x89\xab\xa9\xa9\x09\x44\xc4\x20\x10\x88\x67\x3c\xfd\x96\xe9\xac\x94\x1f\x95\x5d\x84\x02\x54\x9a\xe7\x2c\x4a\xc6\xf0\xa5\x40\x71\x0c\x40\x2e\x93\xc9\xf0\x74\x3a\x5d\xce\xaf\x4e\x43\xad\xe7\x07\xc7\xf9\x2a\xec\x9e\x3d\x7b\x70\xf4\xe8\x51\x59\x66\x52\xb4\xe9\xb6\xf6\x0b\x83\x1f\xe6\xde\x69\x19\x2f\xfc\xbe\x47\xe5\xbb\x01\x28\x36\xc7\x9b\xa5\x35\xc8\x72\x91\xf7\xc7\x27\xb5\xff\x63\xe0\xa3\xdc\xbb\x6d\x37\xb4\xdf\x24\x43\xc4\x77\xef\xde\x2d\x3f\xf5\xd4\x53\x6b\xd5\xcd\x79\xbf\xe6\x33\x99\xc3\x4c\xa5\x2d\xad\x1c\x08\x69\x52\x6f\xb9\x16\xa2\x2c\x2a\x4a\xc3\x11\x73\xf4\xd9\x91\x56\x8e\x06\x34\xd6\x45\x44\x0a\x11\x31\x22\x0a\x75\xa4\x94\xcf\x95\xed\x0f\xb5\xb0\x82\xd0\x95\xf4\x7e\x9e\x88\x42\xc1\x60\xd0\xd2\xb4\xcb\xf5\x58\x25\xdf\x1a\x1a\x1a\x20\x84\x90\x7d\x3a\x8b\x86\x34\xa9\x8d\x2c\x33\x33\x84\xe9\x88\x5e\xed\x22\x5c\x0c\x14\x27\x8b\x92\x48\x10\x91\x36\x3b\x3b\x6b\x65\x55\x4b\x56\x31\xdb\xcf\x1e\xe7\x0c\xae\x94\x61\x3f\xdf\xb3\x67\x0f\x7b\xf8\xe1\x87\x65\x26\x10\xeb\x1a\x29\xfc\x9f\x5d\x23\x85\xff\x57\x2e\x8a\x6e\xaa\x72\xa0\x5b\xe7\xa6\x8d\x57\x98\x3f\x22\x30\x1d\xb1\xd6\x9b\xda\xef\xf7\x5e\xc8\xff\x89\xa4\xa3\xa3\xa7\xa7\x47\x79\xf2\xc9\x27\xeb\xd5\xcf\x19\xe7\xa6\x69\x33\x00\xac\xa3\xa3\x03\x42\x08\x25\xa8\x49\xdd\x00\x31\x61\xb6\x99\xb5\xaa\xc3\x6a\x47\x32\xe3\x65\x83\x02\x5e\x9d\xb5\xc1\xd4\xb2\x85\x10\x8a\xa2\xb3\xa8\xe5\x2e\xac\x87\x95\x38\x85\x20\x4a\xd3\x76\x65\x59\xb6\xd7\x6f\x95\x8d\x96\xb7\xb6\xb6\x82\x88\xe4\xb0\x2a\x75\xc8\x06\x85\xcc\x56\x2a\xd3\x31\x91\xcd\x3d\x68\xba\x0b\x17\x43\xc5\x09\x94\x96\x99\xe8\x33\x33\x33\xb0\xe5\xe9\x16\xec\x6f\x7a\x3d\xcb\x8f\x1b\xe5\x94\xef\x75\x77\x77\xb3\x87\x1f\x7e\x98\x11\x10\x69\xbf\x5e\xf8\xad\xa6\x3b\xc5\xdf\x24\x40\xb6\x56\x53\x90\xb9\x47\x96\x75\xac\x88\x14\x6b\x9e\x58\xa9\x81\x48\x08\x16\x59\x30\x7e\xb6\xe7\x72\xfe\x0f\x89\x8b\xd8\xe6\xcd\x9b\xe5\x9d\x3b\x77\xae\x2a\xcf\xd1\x4e\x88\xc7\xe3\xe8\xec\xec\x44\x67\x67\x27\xa2\xd1\xa8\x53\x94\x70\x73\x87\x5b\xa6\x7a\xb8\x0a\xcb\x56\x60\x13\x77\xa5\xdd\x7a\x2a\x2f\x5f\x51\x12\xaa\xea\xe1\xaa\x5d\x21\x5c\x08\x15\xa7\xc5\x1a\x58\x01\xc2\x62\xb0\x38\x0d\xb3\xf3\x9d\x75\xb6\x8f\x83\x39\x00\xf8\xfd\x7e\x00\x90\xc3\x05\xa9\x83\x00\xb6\xda\x9b\x40\x15\xc7\xbe\x19\xb9\x18\x28\x4e\xa0\xb4\xaa\x9e\x9b\x83\x75\xd8\xf2\x75\x72\x09\xa7\x1c\x73\xa3\x5e\x37\x5c\x39\x5e\x96\x65\x3c\xf2\xc8\x23\x20\xa2\x40\xc3\x6c\xf1\x99\xe6\x89\xe2\xff\x0e\x73\x0b\x06\x41\x96\x1f\x95\x2a\x3b\x3e\x94\xa7\x9f\x98\x47\xab\xee\x56\xa3\x01\x88\xcc\x1b\x3f\xdb\x3c\xa1\x5d\x9a\xef\xf3\x7e\x75\xff\xfe\xfd\xe9\x89\x89\x09\x64\x32\x99\x72\x43\x01\x60\x8a\xa2\x60\xdf\xbe\x7d\x18\x18\x18\x60\x3e\x9f\xaf\xaa\xed\x32\x99\x0c\x2e\x5c\xb8\x80\xab\x57\xaf\x02\x00\x4b\xa7\xd3\x88\x46\xa3\xfa\x4c\x44\x1b\xcd\x7b\x78\x32\x50\x64\xd1\xca\x76\x15\x95\xf6\xb4\x34\xb3\xa5\x40\x71\x32\xef\xe1\x69\xa0\xb4\xe3\x2d\x11\xa9\x63\xf1\xdc\xe9\x47\x6e\x47\x7e\xd9\x6b\x20\x50\x0b\x2b\x08\x7c\xb4\x39\xff\x21\x4a\x3b\x1a\x70\x55\x55\xed\xed\x58\xed\x2e\x24\x22\x66\x2e\x8e\x96\x23\xaa\xdc\x5e\x79\x7c\x5b\xae\xab\xdc\x85\x02\x29\xbf\x7e\x07\x80\xa6\xeb\x3a\xb7\x8d\xc5\x5c\x29\xcf\x76\xac\x27\xe7\x6a\xa5\x05\x00\xbe\x6d\xdb\x36\x34\x36\x36\xca\x4c\x17\x6d\xed\xd7\x0b\xbf\x4d\x02\x72\x59\xc6\x3a\xde\xc7\x55\xdb\x90\xb8\xe9\xe2\xa6\xd4\x69\xb9\xa9\xfd\x1b\x4f\x9e\xf7\x79\xbd\x5e\x65\xef\xde\xbd\xab\xea\xfe\xd2\x4b\x2f\x61\xf7\xee\xdd\x4a\x44\xf6\xb7\x0c\xcc\xfb\x9f\x3c\x72\xab\xe1\x7f\x7b\x64\x22\xf2\x3f\xf7\x2e\xfa\x8e\x36\xf8\x43\xb1\xa3\x47\x8f\x2a\xcf\x3f\xff\x3c\x03\xc0\xcd\x89\xef\x9a\x2a\xf3\xe9\x4f\xba\x56\x5e\xaf\xa8\xe4\x4e\xd1\x01\x70\x80\x9f\xdf\xb4\xf2\x2a\x08\x4b\x44\x64\x6d\x39\x91\x4b\xfb\x8d\x6b\x67\x7a\x52\xdf\xe5\x75\xb0\xc3\x6d\xd9\x93\xd3\x0d\x85\x4f\x00\x64\x56\x56\x56\xf8\xf2\xf2\x72\x55\x9d\x57\xb9\x0b\x4d\x32\x97\xfd\x45\x16\xb7\xfc\xbb\x36\x67\x91\x2d\x94\x3a\x9b\x13\xf4\xac\x62\xcc\x0b\x21\x34\x5d\xd7\xdd\xc6\xb8\xf5\xcc\x78\xf5\x82\x5b\x3e\x00\xc0\xb7\x6f\xdf\x0e\x00\x81\x86\x79\xfd\x49\x6f\x4e\xec\xb4\xb6\x32\xac\xaa\xab\xad\x5f\xab\xde\x7d\xdb\x60\x88\x6c\xe9\x89\x00\x49\x47\xbc\xe9\x4e\xf1\xcb\x33\x5b\x95\x3f\xec\xeb\xeb\xd3\x3e\xf8\xe0\x83\x72\xf9\x5f\xf9\xca\x57\x64\x59\x92\x03\xbd\x8b\xbe\x23\x8f\x8f\x35\xfe\x87\x88\x2a\xed\x86\x20\x66\xca\x2f\x7d\x21\x54\x7c\xff\x9f\x06\x97\x7e\x07\x2d\x2d\xc3\xbf\xf4\x4b\xbf\xa4\x9e\x3f\x7f\x1e\x5b\xb6\x6c\x51\x05\xc4\xec\x27\x5d\x2b\xdf\x0a\x17\xe4\x8e\x5d\xd3\xc1\x63\xa5\xcd\xde\x4a\xe4\x27\x50\xda\x6b\xe4\x4c\x4f\xea\x7b\x63\xf1\xfc\x5b\x42\x88\x25\x5d\xd7\xf5\xeb\xd7\xaf\x63\xe7\xce\x9d\xaa\x10\x62\xea\x42\x57\xe6\x1b\x9c\x41\x3e\x34\x11\x39\xe1\x2b\x4a\x01\x0b\xab\x49\x5c\xbb\xd4\x99\x39\x79\xa6\x37\xf5\x57\x28\x2d\xb3\xcd\x99\xc6\xa5\xaa\x50\x65\xc9\x32\xa7\x83\x30\x00\xb2\x4f\x67\x11\x5b\x93\x81\xaa\x5a\xa6\xe2\x2e\xe4\x4c\xe8\xaa\xcc\xd3\x00\x74\x73\xa7\xf4\x5a\xc6\x80\xf5\x76\x6c\xad\xf4\xe5\xeb\x86\x86\x06\x06\x21\x22\xd1\x99\xe2\x17\x4b\x52\xa3\xd2\x9b\x64\x0e\x27\xec\x83\xda\xf2\x9e\x2e\x4e\x06\x64\xbb\x6f\x59\xeb\xa2\xb3\xfa\x33\x73\xfd\xca\xd7\xbc\x5e\x6f\x7a\xeb\xd6\xad\xec\xc6\x8d\x1b\xfc\x85\x17\x5e\x60\xb2\x2c\xfb\x36\x2d\x7b\x8f\x7e\x61\xa4\xe9\x1b\x1e\xce\xa2\x16\x58\x94\xc0\x72\x73\xc6\x73\xfc\xa7\x2f\x37\x7f\xeb\xef\x1f\x9a\xff\xf2\x72\x90\x86\x7b\x7b\x7b\xd5\xb9\xb9\x39\xde\xd2\xd2\x92\xe4\x0c\x23\xef\xf6\x2f\xff\xc9\xcd\xa6\xdc\xc8\x8e\xd9\xd0\xd1\x78\xd6\xd3\xc6\x49\xf0\xd9\x88\x36\x39\xdc\x96\x3d\x39\x17\xd6\xde\x03\x61\x14\x02\x99\xe1\xe1\x61\x7e\xee\xdc\x39\x1e\x8d\x46\xf5\xce\xce\xce\x25\x10\x86\x2f\x75\x64\xbe\x76\xbd\x25\x77\xba\x2b\xe9\x7d\x28\x5c\x90\xe2\x39\x0f\x4f\xdf\x8d\x16\xae\x64\x14\xe3\x32\x4a\xd3\x90\xe7\x93\xc9\xa4\x76\xf9\xf2\xe5\x55\x6d\x5c\x65\x8b\x6e\x6f\x6f\x87\x69\xf9\x91\x7d\x45\x16\xa9\x34\x82\x4d\x55\xa7\xea\x18\x9d\x71\xb5\x28\x89\x0c\x11\xf1\x6c\x36\xbb\xaa\x33\xee\x21\xd4\xb3\x76\x61\xc7\x8e\x1d\x0c\x80\xcc\x0c\xc4\x02\x29\xbe\xbb\x54\x1b\xcb\xd2\x56\x6d\x71\x5b\x7d\xed\x1e\xc8\xf6\x4f\xc9\xf3\x3e\x8f\x2a\xba\x0a\x7e\x4c\x77\x74\x74\xe8\xba\xae\xb3\xe6\xe6\x66\x99\x71\xc4\x1f\x1b\x8b\xfe\xbe\x87\x53\xa9\x73\x6d\x5c\xc0\xe2\x74\x41\x4d\xea\x3d\x7a\xab\xe1\xb7\xbf\xbf\x63\xf1\x5f\x77\x76\x76\x6a\x5f\xfb\xda\xd7\xf4\x97\x5e\x7a\x49\x8d\xc5\x62\xd3\x00\xb4\xdb\x8d\xea\xec\x64\x63\xe1\x1d\x94\x96\x9d\x72\x40\x24\x05\x30\x4d\x44\xd3\x42\x88\xa5\x44\x22\xa1\x9d\x3b\x77\x8e\x03\xc0\xeb\xaf\xbf\xce\x5f\x7a\xe9\x25\x2d\x16\x8b\xcd\x03\x50\xf3\xb2\x31\x3d\xd6\x9c\x3f\x8b\xd2\x22\x37\x4d\x08\x91\x04\x90\x20\x50\x7a\x79\x79\x59\x7d\xed\xb5\xd7\x5c\x9f\xcd\xe9\x2e\xb4\x58\x34\x63\x82\x94\xf2\x93\xdb\x37\x4c\x71\xb8\x0b\x39\x83\x26\x08\xba\x73\x27\x9b\xfb\x08\x75\x29\x3e\x1e\x8f\x03\x80\x2c\x15\x45\x5c\x2a\x8a\x58\xa5\x62\xf6\x23\x56\x5f\x0b\x97\xdb\x2e\x81\x38\x02\x4a\x9e\x77\x6b\x01\xf9\x93\x8e\x8e\x0e\x44\x22\x11\x10\x91\xd2\x9a\x56\x76\x37\xe5\x3c\x7b\xca\xda\x0d\x84\x9d\xf4\x4b\x45\x08\x81\x4d\x49\xdf\xf1\xa0\x26\x75\x67\x14\x3d\x7d\xe0\xc0\x01\xfe\xed\x6f\x7f\x9b\x3f\xff\xfc\xf3\x6a\x4b\x4b\xcb\x2c\x11\x25\x01\x4c\x08\x21\x14\x73\xa2\x84\x4a\x44\x39\x00\xda\x9d\x3b\x77\xf4\x37\xdf\x7c\xb3\xea\x99\xbf\xfd\xed\x6f\xf3\xc3\x87\x0f\x6b\x43\x43\x43\x4b\x1e\x8f\x27\x8d\xd2\xbe\x21\xcc\x94\xd1\x3a\x11\x69\x63\x63\x63\xfc\xcc\x99\x33\xc8\xe5\x72\xae\xed\x55\xcb\x5d\xc8\x98\x20\xb9\xac\xb5\x38\xf8\x9a\xc3\x5d\xc8\x85\xb9\x5d\x91\x33\x0f\x97\x38\xd7\xb2\xe0\x2e\xb3\x5d\xf1\xa6\xab\x4d\x66\xba\x88\x90\x28\xd5\x5f\xc0\xbe\x6d\xb0\xc9\x36\x4b\x27\xe5\x5d\x63\xcb\x8b\xcf\xab\x52\x56\x42\xc5\x75\x42\x30\x5f\x1c\x39\x1c\x0e\x23\x1c\x0e\x43\x08\xe1\x8b\xe6\xe5\xa1\xd2\x9e\x9a\x56\x87\x56\x2b\x9a\x64\x92\xb3\xc7\xa0\x68\x44\x95\x7a\xb3\x5e\xe3\x5a\x24\x12\x01\x00\xf6\xca\x2b\xaf\xf0\xed\xdb\xb7\xeb\x7d\x7d\x7d\x99\x8e\x8e\x8e\x5c\x79\xe6\x24\x11\xee\xde\xbd\xcb\xaf\x5c\xb9\x62\xad\xaa\x5c\xd5\x16\xa7\x4f\x9f\xe6\x97\x2f\x5f\xc6\xe6\xcd\x9b\xb5\xf6\xf6\x76\xcd\xef\xf7\x83\x73\x8e\xe9\xe9\x69\xdc\xbe\x7d\x1b\x8b\x8b\x8b\x56\x5b\xb9\xb6\xa3\x5b\x07\x3b\x86\x2d\xd6\x4e\xac\xa2\x3c\xc4\x70\x71\x3b\x70\x72\x6a\xab\x1b\x97\xb9\xce\xeb\xfa\x78\x32\xeb\x29\xec\xcc\xd9\x1c\x03\x93\x65\x23\xa7\x32\xa1\x95\xbb\xc4\xb9\x2f\xb4\xd5\xff\x40\xb9\xcf\x4c\x99\x5e\xe6\x66\x44\xc4\x74\x26\x58\x65\xeb\xe2\x0a\xd4\xaa\x83\x95\x8f\x20\xf0\xa2\x24\x98\x10\xc2\xbe\x8e\x08\x23\x23\x23\xdc\xe6\x61\x43\x34\x1a\x65\xe6\xce\x05\xf5\x08\x81\x03\x40\x36\x9b\xe5\xc3\xc3\xc3\x30\x27\x2e\x02\x70\x1d\x7a\xba\x62\x57\x75\xb0\x65\x73\xe6\x24\x74\x6b\xcc\x41\x55\x4f\xe2\x48\x2f\x88\x91\x70\x1d\xcb\x6e\x44\x63\xde\x70\x30\x3c\x94\xe3\x0c\xaa\x24\x44\xa8\xc2\x25\x2b\xe2\x83\xca\xfb\x44\xd8\x15\x44\xd8\x06\xc6\xa8\x8c\xa9\xaa\x5f\x4e\x5e\xf4\x51\x12\x95\x97\x96\x03\xe0\x33\x11\x6d\xcc\x60\x42\x93\x45\xc5\xfc\x09\x2b\x2b\x2b\x4f\x02\x32\x5e\x63\x3e\xe5\xd7\xe7\x89\x88\xdb\xd6\x08\x97\x83\xb9\x2b\x00\x00\x20\x99\x4c\x5a\xf9\xaf\x19\x06\x07\x07\xab\x1c\xfe\xa9\x54\x8a\xd5\x98\xed\x51\x15\xec\xce\x86\xf2\x03\x12\x11\x37\x98\xd0\xab\x2d\x02\xf6\xc7\xaa\x5c\x4b\x82\x14\x26\xaa\x5e\x94\x5a\x06\x0d\x67\xa8\x35\x94\x82\x23\xde\x9e\x9e\x1e\x96\x4a\xb6\x00\x00\x1f\x36\x49\x44\x41\x54\xe9\xba\x0e\x00\xba\xee\xa1\xa4\xe6\x67\x09\x7f\xc6\x08\x55\xb8\xae\xe3\x05\xac\xe2\xdb\x8e\x47\x58\xfd\x28\x00\x00\xc3\x83\x8c\xe6\x67\xb3\x00\xf4\x74\x3a\x0d\x5d\xd7\x11\x8b\xc5\xb4\x8c\xd7\x98\xba\xd6\x9a\x3d\xb5\x63\x36\x74\xbc\x8a\x7a\xab\xe0\x02\x97\x3a\x33\xff\x54\x64\x22\x01\x40\xb7\xb6\x4d\x6a\x6a\x6a\x62\x7b\xf7\xee\x45\x6f\x6f\x2f\x33\xed\xcc\x0c\x00\x8e\x1f\x3f\xce\x55\x55\xd5\xaf\x5d\xbb\x86\xf3\xe7\xcf\x5b\xbb\xc4\x57\xb5\xd1\x81\x03\x07\xd8\xce\x9d\x3b\x4b\xbb\xfc\x94\xc6\xfb\xa5\xaf\xc7\x10\xf4\x03\x07\x0e\xe8\x9f\x7e\xfa\x29\xaf\x85\x85\xe9\xf0\xaf\xb2\x1a\x99\xbb\xdf\x70\x55\xe6\x99\x4a\x0b\xd8\x8f\x16\x97\x2b\x5d\xcb\x9c\x7c\x1e\x83\xf9\x0a\x1e\xc3\xd9\xb1\x6b\xf9\x77\x6b\x85\x7a\x32\x98\x27\x12\x09\xb6\x65\xcb\x16\x1d\x44\xe9\x95\xb8\x74\xd9\x97\x31\x7a\x61\xe3\xba\x95\xa1\x9d\x8d\x6a\x2d\x05\xd0\x7a\x04\xfb\x7b\x6b\x21\x4c\x93\x66\xae\x41\x1a\x35\x3c\x48\x00\xd0\xef\xde\xbd\x8b\xe9\xe9\x69\x3c\xf1\xc4\x13\x2a\x08\xb3\x1f\xf4\x25\xff\xba\x31\xef\xe9\xee\x48\x29\xfd\xe5\x8c\xac\x21\x23\x01\xd7\x5b\x72\x67\x2e\x74\xae\x7c\x1b\x84\x04\xe7\x5c\x3b\x73\xe6\x0c\xef\xee\xee\x66\x4f\x3d\xf5\x14\x93\x98\xe4\x6b\x50\xa5\x96\x2d\x89\xc0\xb1\x68\x5e\xde\xaa\x33\x91\x9f\x69\x28\x9c\xbd\x15\xa3\x8f\xf7\xec\xd9\x93\xe9\xeb\xeb\xd3\x5e\x7b\xed\xb5\xaa\x0d\xdc\x9e\x79\xe6\x19\xd6\xdd\xdd\xad\x78\x74\x8a\xee\x9c\x0a\x9e\xe8\x5f\x08\x7c\x21\x54\x90\x3a\x72\x8a\x31\x3f\x16\xcf\xbf\x36\xdc\x9e\xf9\xde\x9e\x3d\x7b\x96\xba\xba\xba\xb4\x7f\xf8\x87\x7f\x70\x6d\x53\xc9\xde\xa0\xe1\x70\x18\xe6\xf4\x90\x70\xdb\x8a\x72\xa8\x2b\xe5\xdb\x53\x69\x91\xca\x8f\xc8\x76\x2d\x80\x6b\xad\xb9\x37\x72\x5e\x7e\x33\x95\x4a\x15\x6e\xde\xbc\xe9\xa6\xca\x5a\xad\xcd\xe0\x96\x61\x75\x1c\x1c\x47\x0b\x27\x00\xb0\x42\xa1\x80\x1d\x3b\x76\x10\x08\x1e\x5d\x21\x6f\x6c\x4a\x7f\x8a\x01\xcc\xa6\xcc\x56\xe0\x54\x83\xd4\x56\xd5\xb0\xf4\x4c\x82\x08\x33\x03\xde\xbf\x29\x84\xa5\xd3\x00\x16\xaf\x5c\xb9\xc2\x6f\xdd\xba\x85\xee\xee\x6e\x1e\x08\x04\x8a\x86\x84\xfc\x8d\xe6\xdc\x4d\x9d\x41\x09\x15\xa4\x46\x99\x93\x62\x10\xf4\xe5\xa0\xbe\x70\xba\x37\xfd\xea\xe9\xcd\xe9\xaf\x0b\x86\xcb\x00\x16\x26\x27\x27\x8b\xba\xae\x93\xd9\xb9\x91\x7d\x53\xe1\xff\xe9\xb9\x91\xa6\xff\xda\xb7\xe4\xff\x85\xd6\x8c\x72\xb4\x7d\xc5\xfb\xf8\xd6\x05\xff\x2f\xf6\x27\x02\x47\xe7\xc2\x85\xcb\x7a\xc4\xb3\xd8\xdb\xdb\xab\x8f\x8e\x8e\x92\x61\x18\xf4\xe4\x93\x4f\x52\x6f\x6f\xaf\x12\x2a\x48\xbd\x2f\x5e\x69\xfe\xfa\xf6\xb9\xe0\x6f\x46\x0a\xf2\x90\xcf\x60\x9d\x61\x4d\x1e\xe8\x4e\x7a\x4f\x6c\x49\x04\x3e\x3f\x19\x55\xcf\xb2\xa8\x2f\xb9\x69\xd3\x26\x63\x74\x74\x94\x84\x10\x55\xed\x5a\xb5\x21\x78\x26\x93\x11\xfb\xf7\xef\x27\x21\x44\xb0\x29\xef\xd9\xdb\xbb\xe4\x3b\xe4\x36\x8f\xc3\x2e\x76\x40\x60\xb7\x62\xea\x07\xc9\x80\xfe\xa9\xcf\xe7\xcb\x9b\xd3\x3b\x85\xcb\x0f\x35\xe2\xd7\xfa\xc1\x7e\x54\x55\x55\xf4\xf7\xf7\x0b\x9f\xcf\x07\xdd\x4b\xc2\x97\xe5\xdb\xfc\x19\xbe\x69\x55\x47\x92\xad\x9e\xf6\x57\xa7\xdc\xf1\x36\xcd\xcb\xb4\xaf\xe7\x1a\xa4\xb1\x99\x21\xef\x57\x41\x34\xae\xeb\x7a\xee\x9d\x77\xde\x31\x84\x10\x62\x61\x61\x81\xb6\x6c\xd9\x62\x48\x92\x94\xe3\x0c\xcb\x77\xa3\x85\x1b\xc3\xed\x99\x73\xc3\xed\xb9\x1f\x5e\xec\x5a\xf9\xc1\x85\xce\xcc\xf7\xe6\x23\xc5\x77\x51\xda\x4c\x66\x2e\x93\xc9\xe4\x4f\x9d\x3a\x85\xa7\x9e\x7a\x0a\x1e\x8f\x27\xb8\x6b\x26\xf4\xb3\x8f\xdd\x8c\xfe\x99\x2c\x58\xb8\xea\xbd\x02\x21\x50\x94\x36\xf5\x2d\xfa\x9f\x1c\x6f\xca\x9f\x14\x21\xcf\x62\x20\x10\x30\x18\x63\xd8\xbf\x7f\xbf\x4c\x1c\x4d\x27\x46\xe2\x7f\xde\x91\xf6\x3e\xe5\xec\x07\x02\xc1\xaf\x4b\x9d\x9b\x92\xbe\x87\xaf\xb5\x66\xff\xd1\x17\x0e\xae\x68\x9a\xc6\xe7\xe6\xe6\xac\xf6\x27\x98\xee\xc2\x32\x3b\xb5\x4d\x6f\xd1\xd3\x5e\x63\xc6\x9e\xa1\xb0\xb7\xb5\x30\x57\xd0\x98\x8a\x4c\x34\x2f\x6f\x12\x42\xc8\x8e\x0f\x3f\xda\xd9\x34\x73\xf9\xc1\x91\xd6\x79\xac\x85\x87\xa9\x8d\xaa\x02\x98\x9e\x1e\xf4\xfe\x57\xcd\xcb\x92\x96\x8f\xc8\xea\x35\x61\xf3\xb6\x54\xc5\x9b\xc3\x1a\x01\xd8\x5c\x87\x80\x21\x91\x76\x77\xbb\xef\xaf\x05\xa3\x09\x21\x44\xe6\xda\xb5\x6b\x65\x51\x93\x48\x24\xf0\xc6\x1b\x6f\xf0\x62\xb1\x98\x41\x69\x83\xb6\x8f\x75\x12\x3f\xc8\x7a\x8d\xef\xe5\x14\xfe\x2a\x27\x71\x12\xc0\x45\x00\xd3\x99\x4c\x26\xf7\xea\xab\xaf\xa2\xad\xad\x0d\x5e\xaf\x57\xf1\x1a\xac\xe3\xd0\xed\xc8\xef\x90\x80\x5c\x59\x75\x54\x59\x20\x2f\x84\x40\xa0\xc8\x7a\x0f\x4f\x44\x7e\x0b\x02\xd1\x81\x81\x01\xf6\xd8\x63\x8f\x41\x08\xa1\x74\x27\x7d\x47\xbb\x92\xde\xa7\x85\xa8\x20\x9c\xd8\x58\x4e\xde\xb7\x6b\x26\xf4\x73\x42\x88\xd0\x9e\x3d\x7b\x60\xca\xf7\x72\xfb\xda\x3d\x49\x4c\x08\xc1\xb3\xd9\x2c\x27\x22\x6d\xc5\xa7\xcf\x0a\x4b\x06\x9a\x43\x11\x4b\x66\x11\xd9\xdc\x85\x44\x88\x67\x95\x7e\x02\xf9\x3c\x1e\x8f\xbd\xd3\x9c\xae\x3e\x37\xa7\x82\x53\x4e\xd7\x74\x30\xd8\xaf\xaf\x5c\xb9\xc2\x73\xb9\x9c\x06\x20\x51\xf4\xd1\x27\xb7\xf7\xf8\xbe\x6a\xc8\xc8\x55\xe4\x2f\x2a\xdd\xea\xe6\x2e\x14\xe6\x7d\xd3\x75\x28\x18\xf4\xa9\x1d\xbe\xbf\xc9\x35\xb0\xf7\x01\xcc\xea\xba\xae\xd9\xd6\x00\x71\x00\x7c\x6e\x6e\x8e\xbf\xfc\xf2\xcb\xb8\x7a\xf5\xaa\xaa\x69\x5a\x92\x88\xa6\x84\x10\xe3\x00\xc6\x89\x68\x3a\x97\xcb\x25\xcf\x9e\x3d\xab\x7d\xf3\x9b\xdf\xe4\xe9\x74\xba\xec\xf0\x6f\x4f\x2b\x07\x82\x9a\xd4\x4d\xa6\x97\xcb\x14\x72\xe5\xf6\xb4\xdc\xaf\xdd\xcb\xbe\xe3\x8a\x41\x6d\x42\x08\xd9\xe3\xf1\x30\x22\x0a\xf5\x2c\xf9\x9e\x22\x90\xbc\x16\x76\x4b\xc2\xff\x2c\x81\x22\x5e\xaf\x57\x36\x3f\xcc\x59\x6e\x2b\xbb\xa9\x12\x00\x58\x36\x9b\x45\x30\x18\xd4\x57\xbc\xc6\xbc\x26\x8b\x8c\x4f\x87\x69\xb2\xb4\x6d\x1e\x5a\x9e\x36\x52\x12\x91\xcd\x59\x4f\x3f\x01\x01\x01\xc8\x83\x83\x83\xdc\xdc\x4b\xb2\xa6\xbb\x0f\xd5\xa1\x9e\xa6\x5d\x33\x9c\x3a\x75\x0a\x4f\x3e\xf9\x64\x86\x18\x9b\xc8\x36\xca\x6f\xdc\xda\x1f\x90\xbb\x2f\xe7\xbf\xa2\xe4\x11\xb3\x2b\x4f\x15\x93\x8c\xb5\xc4\x86\xaa\x86\xc1\x86\x42\xb9\xa9\x1d\xde\x6f\x26\xdb\xe4\xbf\x13\xc0\x18\x01\x99\x8f\x3f\xfe\x98\x9b\xae\xc2\x2a\xc5\x31\x9f\xcf\xe3\x83\x0f\x3e\xe0\x1f\x7d\xf4\x11\x5a\x5b\x5b\x79\x2c\x16\xc3\xf0\xf0\x30\x6f\x69\x69\x61\xb6\x39\x68\x00\xc0\x4c\x8b\x9b\x12\xd4\xe4\x5e\x54\x94\xd7\xea\xcf\xff\x50\x45\xf6\x78\x0c\x16\xf1\xea\xac\xa5\x20\xf1\x31\xb3\x3c\x9f\xbf\xc8\x5a\xca\x5f\x95\xa9\x83\xf5\x17\x59\x0b\x13\x08\x19\x54\x2a\x77\x76\x76\xb6\xdc\xf6\x4e\xa7\x00\x37\x55\x7b\x5d\x93\x44\x72\xc5\xab\xcf\x5b\x0b\xce\x9c\x1b\x79\x8b\xb2\xa7\x89\x10\xcd\xc9\xbd\xbe\x22\x8b\x09\x21\x64\xdb\x58\x6d\x3d\xd4\x78\xcf\xbf\x89\x89\x09\xfe\xe9\xa7\x9f\x72\x00\x49\x01\x31\x9a\x69\x64\xaf\xdc\x38\x14\xf8\x83\xc5\x4d\x9e\x33\x5c\x86\x66\xef\xdf\xf2\xae\xf2\x36\x59\x2c\x18\x78\xaa\x55\x1e\xbe\x71\x28\xf0\x87\xcb\x6d\xf2\xb7\x04\x30\x02\x60\xe9\xc6\x8d\x1b\xfa\xa7\x9f\x7e\x5a\xaf\xde\x30\x0c\x83\x4f\x4f\x4f\x73\x73\xe5\x06\x33\x17\x84\x95\x39\x21\x00\xee\xf1\x78\x20\x84\x60\x05\x99\x6b\xe5\x8a\x94\xb5\xfa\x8a\xe6\x0e\x51\xe2\x28\xba\x24\xb4\xa2\x24\x74\x4b\x4c\x0a\x21\x90\xf2\xeb\x4b\x15\xab\x59\x6d\xec\x6c\x58\x1b\xe7\x54\x1a\xb7\xdb\xc6\xee\x00\x2a\x13\xdf\xad\x48\x96\x48\x24\xb0\x75\xeb\x56\x1d\x84\xdc\x42\xa8\x38\xd1\x9c\x51\xfa\xad\x02\x2c\x2a\xa8\xda\xba\x41\x00\x1e\x4e\xa1\xd6\x15\x65\xfb\x44\x93\x3a\xd2\xde\xde\x9e\x83\x3b\xf5\xda\x3b\xbe\xde\x50\x69\xd5\xb8\xbc\x56\xfa\xd3\xa7\x4f\x73\x9f\xcf\xa7\xf7\xf7\xf7\x2f\x11\xd1\xb5\xa2\x17\xe9\xa9\x1d\xde\x89\xf9\xcd\xca\x43\xd1\xd9\xe2\xa1\x70\xc2\x18\xf0\x65\x78\x9c\x19\x42\x81\x00\x13\x12\x69\x85\x20\x2d\x65\x62\xf2\xf8\x72\xbb\x7c\x56\x0d\xb3\xf3\x20\x1a\x83\x10\x53\x44\x94\x1c\x1b\x1b\xd3\x4e\x9e\x3c\x69\x79\xd5\x50\xab\x5c\x47\xbc\xab\xb8\xc9\x66\xb3\x08\x87\xc3\x7c\x36\xac\x8d\x69\x92\xc8\x78\x75\x0a\x95\x37\x69\x35\xdb\xcd\xae\x38\x4d\x34\xe6\x2f\xaa\x32\x4f\xc2\x34\xfb\x12\x91\x76\xb3\x29\xff\xc3\x03\x93\x91\x5f\x90\x05\x29\xb5\xb0\x82\x04\xae\xb7\xe4\x3e\xc4\xea\x09\x17\x00\xaa\x9d\x0d\x00\xc0\xd3\xe9\x34\x03\xc0\x85\x10\x99\x99\x48\xe1\xda\xf6\xd9\xc0\x93\xa5\x8c\x2b\x9d\x8c\xb2\x90\xb7\x58\x07\xa1\x67\xd9\xf7\xb9\x5b\xb1\xfc\xab\xd1\x68\x94\x05\x02\x01\x6e\x6e\x6a\x56\xd7\x04\xb7\x81\x7b\x35\xd3\xbf\xfb\xee\xbb\x7c\x69\x69\x49\x7f\xf8\xe1\x87\x93\x44\xa4\x82\x68\xa9\x10\xc0\xc4\xfc\x16\xef\xe9\xf9\x3e\x11\x27\x81\x28\xd3\x4b\x9f\x99\xe5\x12\x72\x82\x21\x29\x4a\xab\xf6\x66\x85\x10\xf3\x54\xda\x35\x3e\x37\x32\x32\xc2\x5d\xf6\x0e\xd9\x48\xfd\xab\xe2\x12\x89\x04\x42\xa1\x90\x9a\x55\x8c\xc9\xcb\x1d\x99\xb7\x0f\xdc\x09\xbf\x00\x41\x55\x46\x33\x61\x1a\x67\x8a\x4c\xa8\xe7\xbb\x57\xbe\x23\x20\x92\x84\x92\xc3\x5f\x08\x91\x5b\x08\x15\x87\x2f\x75\xae\xbc\xbd\x6f\x2a\xfc\x5c\x2d\xec\x8d\xe6\xfc\xd9\xdb\x31\xf5\x23\x21\x44\x46\xd3\x34\xdd\x39\xcf\xdb\x1a\x07\x97\xc7\x9a\xaa\xaa\xd2\xee\xdd\xbb\xc1\x18\xf3\x0a\x42\x6c\xe7\x4c\xe8\x39\x56\x92\xe6\xb0\xf6\xc1\x12\xb6\xad\x1b\x4a\xf2\x01\xf0\x17\x59\xf0\x72\x67\xf6\xbb\x02\x48\xa5\xd3\x69\x23\x91\x48\xd8\xc7\xaf\x70\x96\x53\x23\x8e\xa1\x7a\x7c\xbc\x2e\xec\xdc\xdc\x1c\x9f\x9c\x9c\x44\x43\x43\x43\x31\x1c\x0e\xe7\x01\x24\x89\x68\x5e\x00\xd3\x82\x70\x9b\x4b\x18\xe3\x12\xae\x9b\xdb\x14\x8f\x01\xb8\x45\x44\xb3\x00\x52\xc9\x64\x52\x3d\x79\xf2\xa4\x30\xed\xbc\xf5\xca\x75\x8e\xdd\x9d\xe3\xfb\x2a\xac\xae\xeb\xb4\x75\xeb\x56\x01\x82\x98\x8e\x14\x16\xc3\x05\xb9\x27\x9e\xf5\x74\x10\xa8\x6a\x3b\xcf\x82\x2c\x72\x6f\x0f\x2c\xfd\xf5\x9d\xa8\xfa\x06\x80\xc9\x42\xa1\x90\x1f\x1b\x1b\x43\x73\x73\xb3\x01\x82\x31\x15\x2d\xcc\x31\x50\x43\x4b\xd6\xd3\xcd\x04\x24\xcb\xb0\xce\x99\xe0\xd7\x5a\x73\x3f\x7c\x67\xeb\xf2\x9f\xeb\x4c\x0c\x03\x48\x5c\xbe\x7c\xd9\x30\x3f\xdb\x53\xae\x93\x73\xa7\x3b\x32\x0c\x03\x3d\x3d\x3d\x22\x18\x0c\xb2\x82\xcc\x03\x3b\x66\x83\xcf\x28\x06\x0b\x96\x25\x2e\x99\x42\x8d\x50\x3e\x27\x10\x14\x9d\x45\x6f\xc7\xd4\xf7\xb2\x3e\x3e\xe1\xf1\x78\xb4\xd1\xd1\x51\xa7\xb1\xc2\x79\x74\xb3\x58\x59\x18\xee\x68\x44\x38\x8e\xe4\xc4\xe6\x72\x39\xba\x71\xe3\x06\xa6\xa7\xa7\x39\x11\x15\xfd\x7e\x7f\xde\xe3\xf1\x64\x88\x28\x65\x76\xf8\x32\x80\x65\x22\xca\x68\x9a\x96\x9d\x9c\x9c\x2c\x9e\x3b\x77\x8e\x7f\xf4\xd1\x47\x3c\x9d\x4e\xaf\xa7\x5c\x7b\xb0\x8f\xf5\xed\xac\xb9\x8c\x4d\xa7\xd3\xd8\xb4\x69\x13\x0f\x06\x83\x45\xc1\xa0\x8e\x37\xe5\xc7\xe7\xc2\xda\xb2\x00\x64\x43\x12\x3c\xe9\x37\x16\x47\x5b\x72\x17\xdf\xdd\xba\xfc\x9f\xa7\x1b\xb4\x37\x41\x74\x83\x88\xd2\x1f\x7e\xf8\x21\xbf\x70\xe1\x82\x85\xd5\x04\x21\x77\x27\x5a\xb8\x75\xa3\x39\x3f\x96\x0c\xe8\x2b\xcb\x01\x7d\x71\x3c\x9e\xff\xf4\xa3\xcd\xa9\xef\x5c\xee\xc8\xfe\xad\xc1\xc4\x25\x53\x8b\x57\x4f\x9e\x3c\x69\x99\x2c\xcb\x75\x76\xb2\x68\x00\xc0\xcc\xcc\x0c\x9a\x9b\x9b\x35\x83\x90\x98\x8a\x16\xae\x0d\xcd\x49\x2d\x00\xca\xde\x99\xd2\x39\x2a\x82\xb8\xf4\x52\xb1\xc1\xb9\xc0\x17\x66\xc2\x85\x8f\x3a\x3a\x3a\x72\x91\x48\x84\xa7\xd3\x69\xeb\xc1\xed\xe3\xd9\x7a\x32\xd8\x4d\xeb\x5e\x6f\xe0\x00\xd8\xec\xec\x2c\xb7\x69\x91\xbc\xbb\xbb\xbb\x4a\xa6\x4f\x4e\x4e\xba\xc9\x57\x37\x7d\xa1\x9e\xad\x7c\x4d\xac\x10\x02\x3f\xf8\xc1\x0f\xd8\x89\x13\x27\xd4\x50\x28\x34\x2d\x08\xda\x44\x93\x3a\x3d\x11\x53\xdf\x02\x10\x02\xa0\x83\x90\x44\x69\x6b\x86\x69\x00\xe9\x89\x89\x09\xdd\xda\xcd\xde\x8e\x05\x21\x97\x0c\xe8\x53\xc9\x40\xe6\x14\x4c\x87\x3f\x4a\xa2\x65\x96\x40\xc9\x6c\x36\x9b\x7b\xed\xb5\xd7\x50\x28\x14\x56\xd5\x51\xb2\x45\x94\xad\x47\x92\x24\x51\x7f\x7f\x3f\x40\x50\x24\x41\x1d\x5b\x13\xfe\xd2\xc7\x35\x2c\x77\xa1\xa5\xd9\x55\xb4\x36\x10\x08\x11\x55\x6e\xf9\xb4\x3d\xfb\x7d\x43\xc2\xb2\xa6\x69\xfa\xf4\xf4\x34\x77\xe6\x6d\xbb\x86\xcb\x39\x6a\xa4\xa9\x15\xd6\xc4\xa6\x52\x29\x61\xff\xb9\xa4\xb5\xd8\xb0\xc5\x59\xec\xf5\x5c\xab\x9c\xba\xd8\x42\xa1\x20\xae\x5c\xb9\x22\x7a\x7a\x7a\x74\xbf\xdf\x9f\x25\xa2\x25\x01\x31\x8d\xd2\x37\x28\x6e\x03\xb8\x2d\x84\x98\x15\x42\x64\x2e\x5f\xbe\x5c\xb5\x82\xdf\xc2\x36\x36\x36\x1a\x0d\x0d\x0d\x39\x22\x4a\x0a\x21\xe6\x01\xdc\x25\xa2\xbb\x00\xe6\x85\x10\xe9\xd9\xd9\xd9\xc2\xdf\xff\xfd\xdf\x73\x55\x55\x5d\xeb\x28\xc1\x25\xa4\x52\x29\xb1\x6b\xd7\x2e\x92\x24\x49\xca\x79\x0c\x65\xe7\x6c\xe8\x59\xd9\xfc\xa8\xd5\xea\x50\x11\x59\x1e\x4e\xe1\x94\xcf\x18\x9f\x0f\x17\x2f\xc7\x62\x31\xf5\xd2\xa5\x4b\xeb\xe9\xa4\x1f\x77\xd8\xc8\x0b\x75\x4f\xd8\xab\x57\xaf\x0a\x55\x55\x85\xd7\xeb\xd5\xbc\x5e\xaf\x2a\x49\x52\x06\x40\x26\x9b\xcd\xe6\xc6\xc7\xc7\xf5\xf7\xdf\x7f\x5f\xdc\xb8\x71\xc3\x95\x5b\x8d\x8f\x8f\x8b\x4f\x3e\xf9\x84\xcb\xb2\x6c\x48\x92\x54\xe0\x9c\xab\xaa\xaa\x16\x6e\xdd\xba\x55\x3c\x7f\xfe\x3c\xb7\xa6\xf8\xd4\x0a\x84\x1a\xc3\x92\x13\x27\x4e\xa0\xa3\xa3\x23\x04\x81\x9d\x27\x3e\x6d\xfa\xe3\xfe\xc5\xc0\xa1\xea\xe7\x22\xc7\x59\xe9\x3c\x11\xd4\x2e\xbe\xbc\x6f\xee\xcb\x06\xc3\xc4\xfb\xef\xbf\xaf\x5f\xbb\x76\xad\x56\xd9\xf5\x58\xa0\x3d\xbe\xaa\x5e\x2e\xe9\xee\x05\x5b\x6f\x28\xb6\xd6\xd0\xee\xbe\xb0\x5e\xaf\x17\xd6\xea\x03\xf3\x23\x59\xe5\x7b\xc1\x60\x10\xe1\x70\xb8\xbc\xc2\xdf\x36\x5b\xe3\x9e\xcb\xb5\x9c\x0d\x96\xd2\x52\x56\x60\x88\x88\x7a\x7b\x7b\x39\x08\x8a\x41\x68\x1a\x58\xf0\x7f\xae\xdc\x91\xe6\x58\xb8\x74\x51\x7d\x1e\x28\x4a\x2d\x8b\xc1\xe2\xd5\xc5\x80\x7e\xbd\x31\xd6\x58\x30\x8d\x01\x76\xf6\x65\x95\x65\x0f\xb5\x34\x57\x3b\x16\x70\xa7\x94\x8d\x62\xad\x7b\x76\xc5\xca\x9e\x0f\x39\xb0\xc2\x76\x9f\xee\x17\x6b\x18\x06\x15\x8b\x45\xfb\xf7\x0b\xa9\xa7\xa7\x87\x8e\x1f\x3f\x8e\x83\x07\x0f\xb2\xa1\xa1\x21\x69\xf3\xe6\xcd\x6c\xdb\xb6\x6d\x6c\xcf\x9e\x3d\x14\x89\x44\xc4\xe2\xe2\x22\x99\x1b\xc8\x6d\xb8\xdc\x2a\x77\xa1\xbd\xd1\x72\xb9\x1c\x76\xec\xd8\x01\xc6\x18\x65\xbc\x06\x0d\xcd\x07\x8f\x7b\x0d\x29\x68\xd9\xa2\xcb\x96\x51\xbb\xeb\xb0\x74\x4d\xd1\xbc\xdc\x35\xd2\x96\x7d\x43\xf1\x7b\x33\xba\xae\xf3\xb9\xb9\x39\xbb\xe6\x8c\x2a\xc0\x6a\xed\x18\x8e\x63\xbd\x61\xd4\xbd\x60\xed\x69\x6a\x61\xdd\xca\x82\x23\xcd\x7d\x63\x89\x88\x8e\x1e\x3d\x8a\x43\x87\x0e\xc9\xa1\x40\x30\xd0\x9a\x55\xb6\x0e\x2c\x04\x9e\xd9\xbc\xe8\x7b\x34\x52\xf0\xb4\xa8\x5e\xb1\x12\x69\x69\xd2\x06\x06\x07\x78\x36\x9b\x85\xb9\xe6\x7a\x43\xe5\xd6\xfc\x7e\xb0\xae\xeb\x14\x8d\x46\x45\x53\x53\x13\x0c\x12\xb2\x5f\x67\xbd\x9d\x29\xef\xb6\xca\xfc\xa7\x52\xca\xca\x04\xbc\x0a\x25\x07\x8a\xac\x2d\xab\xf0\xa9\xb9\x88\x76\xa5\xb9\xb9\x59\xbb\x74\xe9\x92\xe1\x56\xc6\x3a\x7f\x40\x8d\x3a\x7e\x86\x58\x27\x07\x70\xa3\x90\xfb\xc6\x1e\x3d\x7a\x94\xb6\x6f\xdf\x2e\xfb\x74\xa9\xed\xa9\xeb\x8d\xbf\xf7\xe8\x78\xe3\x9f\x6c\x5e\xf2\x7f\xa9\x2b\xe5\xfb\x17\x7d\x8b\xbe\x2f\x6f\x9f\x0d\xfe\x74\x51\x12\x4b\x8b\x51\x7e\xb3\xa7\xb7\xa7\xb8\xb4\xb4\x24\xcc\x79\x5c\xeb\x2e\xd7\xa2\x60\xb7\x01\x3b\x54\x55\xc5\xe0\xe0\xa0\x20\x22\x96\xf2\xeb\x62\xd7\x4c\xe8\x69\x49\x40\x2e\xc3\xcb\x0c\x82\x50\x5e\xf4\x85\x92\x46\xdd\xb2\xa2\x6c\xbb\xde\x92\x7d\x93\x7b\xa5\xe5\xc6\xc6\x46\x63\x7c\x7c\xdc\x49\x79\x76\x76\x5b\xcf\xe0\xe1\x76\x8d\xfb\xc0\x3a\x8d\x25\xae\xcf\xee\xa8\x2b\x1e\x34\xb6\xaf\xaf\x8f\x1e\x79\xe4\x11\x99\x71\xc4\xbf\xf8\x69\xfc\xcf\xfa\x96\xfc\xbf\x48\x80\x52\x4a\x51\x82\x79\x04\x45\x7b\x96\x7c\xcf\x66\x15\x63\x72\x21\xa2\xdf\xe8\xe8\xe8\x28\x8c\x8e\x8e\x92\xae\xeb\xeb\x2e\xd7\xa2\x60\xd7\x37\x20\x93\xc9\xf0\x2d\x5b\xb6\x08\x9f\xcf\x07\x4d\x12\x2c\x9a\x97\x87\x9a\xb3\xde\x9e\xb2\xbb\xd0\x64\xd1\x56\xa7\x96\xc6\xc6\xa5\xb2\x3d\x9c\x22\x01\x4d\x0a\xde\x8c\xe7\x4f\x45\x1b\xa3\xea\xe2\xe2\xa2\xb5\x21\x9a\x9d\xba\x98\xe3\xda\x8d\xda\xdc\xae\xef\x07\x2b\x1c\x58\xa7\x1c\xab\x45\x71\x0f\x14\xfb\xec\xb3\xcf\x92\xa2\x28\xa1\x6d\xb3\xc1\x97\xf6\xdd\x0d\xfd\x5b\xfb\x66\xa4\xa5\xf9\x08\x04\x08\x80\x88\xa4\xf6\xb4\xf2\xf0\xb5\xd6\xdc\x6b\xc2\x27\x2d\x1b\x86\x61\x4c\x4f\x4f\x63\xbd\xe5\x56\x39\x87\x6d\xd7\x65\xc3\xc4\x95\x2b\x57\x20\x84\x50\x41\x98\xfe\x78\xd3\xca\xb7\x75\xc6\xb5\xca\x1a\xe1\x4a\xbb\x0a\x73\x8e\x96\xb5\x05\x2e\x00\x0c\x2e\x04\x7e\x76\xeb\x82\xff\x19\x02\x05\x8e\x1d\x3b\x56\xb3\x8c\x7b\xfc\xdd\x0f\x96\x3b\xf2\xb1\xd7\x6d\xad\x7a\xde\x37\x36\x1e\x8f\x33\x6b\x17\xa3\xc1\x85\xc0\x4b\x30\xc5\x1e\x4c\x46\x58\xf2\x26\x59\xd7\x02\x3e\x9d\xb5\xf5\x2d\xfa\x9e\x06\x10\xd8\xba\x75\xab\xa3\xd8\xfa\xe5\x3a\x2d\x32\xab\x7e\x57\xaf\x5e\xe5\x99\x4c\x46\x03\x90\x5c\x0e\xe8\x17\x47\x5b\x72\x67\x80\x6a\x77\xa1\x00\x40\x82\xca\x86\xad\xd2\x6e\xe5\x04\x26\x48\x79\xec\x66\xe3\xbf\x8f\xa8\xd2\x80\xd7\xeb\xf5\xbd\xf0\xc2\x0b\xac\x56\x39\x3f\xe2\x9f\xf3\x79\x9d\xf5\x72\x5e\xe3\x41\x62\xad\xd5\x19\x04\x44\xc2\x05\xa9\x8b\xca\xed\x66\xf7\xb3\x03\x95\x5e\x27\x34\xe4\xe5\x41\x00\xbe\x60\x30\xc8\x6a\x94\xe3\x5a\xae\xdb\x9b\x06\x54\xbf\x09\xec\xd2\xa5\x4b\x10\x42\xe4\x04\xc4\xd4\xd9\xee\x95\xbf\x2b\x78\x78\xf9\xfb\x37\x36\x82\x85\x9d\xfd\x5b\x62\x39\xa8\x49\xdd\x4f\x5f\x6f\xfa\x0f\x92\x81\x96\xe6\xe6\x66\xe5\xd1\x47\x1f\x75\x7b\xfb\xed\xa1\x16\xa5\xae\x27\x6c\x04\x6b\x8f\xb7\x8f\x8f\x99\xe3\xfa\x81\x63\xcd\x35\xd8\x10\x80\x5c\x90\x4a\xfe\x62\x2a\xeb\x32\xa5\x44\x25\xde\x6f\x3a\x05\x49\x20\xa7\xf0\x8c\xb9\x6c\x65\x43\xe5\xda\x7b\xdd\x02\x39\xa9\x1a\x23\x23\x23\x16\x15\x2f\xa5\x7c\xfa\xc5\x4b\x1d\x2b\x6f\xc3\xdc\x9d\xbc\xb2\x67\x47\x89\xed\x97\xac\x99\xc2\xd4\xb9\x4a\xf4\xdd\x99\x52\x8e\x1f\xbb\xd9\xf8\xdb\x0c\x14\x1d\x1c\x1c\xb4\x56\xd0\xd7\x0a\xb5\xa8\x6d\x3d\x61\x23\x58\xb7\x78\xee\x88\xff\x4c\xb0\xe6\x6c\x11\x80\xa0\xdd\x69\x2c\x8c\x08\x6b\x3b\x0c\x5b\xe7\x96\x42\x29\xc2\x20\x68\x13\xb1\xfc\x25\x22\x72\x5b\x03\x56\xb7\xdc\x55\xee\x42\x54\x2b\x0e\x65\x6d\x4c\xd7\x75\xea\xe9\xe9\x31\x00\x18\xf3\xe1\x62\xb6\x3f\x11\x38\x12\x28\x4a\x21\xeb\xc5\xab\x8c\x89\xed\x55\xb4\x94\x30\x42\x4b\xc6\xb3\xcf\x20\x91\x9e\x6e\xd0\xae\x74\x6d\xea\x2a\x68\x9a\x86\xf9\xf9\xf9\xb5\xc6\xb9\x4e\x65\xcc\xa9\xc5\xde\x0b\xd6\x99\xae\x9e\xa6\x5e\x0f\x73\xcf\xd8\x42\xa1\x80\xdd\xbb\x77\x0b\x00\xf2\x52\x40\xe7\x83\xf3\xc1\xc7\x15\x83\xf9\x60\xcb\xa0\x64\x5e\x28\xb5\xe3\x68\x4b\xee\xf4\x70\x7b\xf6\x6f\x41\x98\x9a\x9b\x9b\x2b\x5c\xbf\x7e\x7d\xdd\xe5\xae\x72\x17\x5a\x1d\x6a\x8b\x03\x00\x4a\x24\x12\xbc\xbb\xbb\x5b\x84\x42\x21\x6e\x30\x18\x69\x9f\x4e\x03\x0b\x81\x47\x4a\x4a\x9f\xe9\x27\x36\xcb\x28\xbb\x11\xcd\x85\x5f\x66\x46\xd4\x99\xf2\x1d\x51\x3d\x7c\x6e\x3e\x5c\xbc\xde\xb5\xa9\x4b\xd3\x34\x4d\x98\x9d\x6c\xb7\xcc\x00\x15\xcd\xd0\x39\x04\x80\x2d\xce\xc9\x6d\xd6\x8b\x85\x2d\x9d\x7d\x04\xb1\x16\xd6\x1e\xee\x0b\x5b\x2c\x16\x45\x67\x67\x27\x82\xc1\x20\x8a\xb2\xd0\xe7\xc2\x5a\xbe\x67\xd9\xb7\x5b\x31\xc8\x6b\xeb\x57\x00\xc0\x64\xac\x30\xf2\xd6\xe0\xd2\x9f\x1a\x12\x3e\x05\xb0\x74\xf1\xe2\x45\x6e\xee\x4f\xb9\xae\x72\xed\x86\x0e\x7b\x65\xec\x15\xb7\x32\x61\xc9\x64\x12\x03\x03\x03\x3a\x11\x15\x93\x7e\x3d\x1f\x29\xc8\x9b\x9b\x57\x3c\xdd\x64\x9b\xc3\x53\xce\x84\x2c\x93\x08\xca\x72\x9a\x09\x92\xbb\x93\xbe\xc7\xf2\x8a\x71\x77\x3e\x52\x1c\xeb\xea\x2a\x77\xb2\x7d\x28\xe1\x1c\x7a\x38\x55\x7f\xfb\xd0\xc3\xfe\xe6\x6e\x04\xeb\xe4\x06\x4e\x2c\x1c\x78\x67\x7e\xf7\x8d\xcd\x64\x32\x34\x30\x30\xa0\x03\x28\xae\x78\x8d\xa5\xd1\xe6\xdc\xb8\xc1\x20\xcb\x9c\x79\x8b\x4c\x14\xe6\xc2\xda\xd4\xd9\x9e\xf4\x3f\x7e\xb4\x39\xf5\xf5\xa2\x8c\xf3\x00\x66\x53\xa9\x94\x7a\xf2\xe4\x49\xbe\x91\x72\x5d\xdd\x85\x8e\x6b\x2b\x13\x91\xc9\x64\x84\xd7\xeb\x45\x6b\x6b\xab\x0e\x82\x3e\xdd\x50\x58\xee\x5f\xf4\x1f\xf6\xeb\x52\xb0\xbc\x3a\xc0\x36\x36\xb6\xb4\xed\x8a\x7b\x11\x60\x20\x4f\xef\x92\xef\xe9\xa2\x24\x16\x66\x23\xda\x68\xd7\xa6\xae\x62\x30\x18\x14\x93\x93\x93\xf6\x72\xed\xc7\x7a\xc1\x99\xe6\x5e\xb0\x4e\xd1\x64\x6f\x83\xb5\xca\xb9\x67\xec\xca\xca\x0a\xe9\xba\x2e\x3a\x3b\x3b\x35\x22\x5a\x29\x48\x7c\x7e\x2a\x56\xb8\x32\xdc\x91\xfd\xe8\x62\xe7\xca\x3b\xd7\x5a\x73\xff\x94\x08\xeb\xef\x71\x88\x4f\x01\xcc\x16\x8b\xc5\xdc\x3b\xef\xbc\x23\x32\x99\x8c\x9b\x38\xad\x59\xae\xab\xbb\xd0\x16\xec\x2c\x10\x00\xd8\xd4\xd4\x14\x1f\x1a\x1a\xe2\x8a\xa2\x14\x75\x49\xe8\x89\x60\xb1\x30\xb0\xe0\x3f\x28\x09\x48\x76\x79\x6c\x95\x67\xed\x84\x67\x67\x3b\x04\x48\x9b\x96\x7d\x4f\x2a\x06\xb1\xbb\xd1\xc2\x95\xa6\x96\x66\xad\xa5\xa5\x85\x8f\x8d\x8d\xad\xa7\x63\x1e\x74\xd8\xc8\x4b\x51\x13\x7b\xf4\xe8\x51\x76\xe0\xc0\x01\x0a\x04\x02\x34\x33\x33\xb3\xae\x17\x6c\x6e\x6e\x4e\x18\x86\x21\xda\xda\xda\x0a\x92\x24\xa5\x00\x2c\x00\x98\x22\xa2\x49\x22\xba\x65\x9e\x2f\xaf\xac\xac\xe4\xdf\x79\xe7\x1d\x61\xfb\x5c\xed\xba\xeb\x6c\x37\x55\xba\x29\x0d\x70\xc4\x13\x4a\xf2\x18\x5b\xb7\x6e\xd5\x89\x48\x5b\xf1\x1a\x19\x83\x21\xd2\xbd\xec\xdb\x0e\x54\x28\xb7\x0a\x5e\x9e\x30\x66\x53\xbe\x40\xac\x3d\xad\x1c\x8e\x67\x95\xee\xa9\xa8\xfa\x49\x20\x16\xc9\x0d\x0d\x0d\x19\xa9\x54\x8a\x6c\x8e\x79\xa7\x12\x61\x67\x8d\xb0\xa5\x71\x7b\xd0\x7a\xd8\x5a\xcf\xbc\x96\x12\x56\x75\x9f\x88\xe8\xf0\xe1\xc3\xf4\xf4\xd3\x4f\x4b\xad\x2d\xad\xde\x2e\x44\xa2\x8d\x3d\x6d\xfa\xd0\xd0\x10\x9f\x9c\x9c\xa4\x42\xa1\xb0\xa6\x12\x39\x37\x37\x47\x37\x6f\xde\x14\x92\x24\xe9\xe1\x70\x38\x2f\xcb\x72\x16\x40\x46\x08\x91\x49\x26\x93\xea\xf0\xf0\xb0\xf1\xf6\xdb\x6f\xf3\x4c\x26\xb3\xae\x3a\x39\xef\x5b\x2d\x6e\x1f\x3c\x03\xd5\x0a\x8c\xf3\x08\x00\xec\xe0\xc1\x83\xd8\xb3\x67\x8f\x02\xa0\x85\x04\x0e\x3c\x75\x3d\xf6\xef\xb6\xcd\x05\x0e\x59\xb3\x2e\x2b\x82\xc1\x3e\x51\x1e\xd5\xae\x46\xb3\x16\x49\xbf\x7e\xf9\xed\x81\xe5\xdf\xba\xdb\x50\xf8\x58\x40\x64\x6e\xde\xbc\xc9\x3f\xf8\xe0\x03\xbb\x4b\xad\x5e\x70\x8e\x01\x9d\x75\xad\x95\xde\xfe\xac\xeb\xc1\x56\xb5\x4d\x5b\x5b\x1b\x0e\x1f\x3e\x8c\xe6\xe6\x66\x85\x71\x44\x1e\x9e\x8c\xfc\xc2\xfe\xa9\xf0\x6f\x7c\x7f\x47\xe2\x5f\xdd\x69\x2c\x9c\xcd\x64\x32\xb9\x6f\x7e\xf3\x9b\xce\xb1\xe9\x7d\x97\xbb\x51\x6c\x4d\x77\x61\x9d\x23\x01\xc0\xdd\xbb\x77\xd1\xd5\xd5\x65\x84\x42\x21\x0d\x04\x75\xb2\x51\x9d\xed\x4c\xf9\x76\x85\x0b\x72\xac\x94\xc8\x46\xc5\x54\xde\x27\xaf\xca\xbd\x28\xcc\x74\x7e\x5d\x6a\x1d\x9c\x0f\xbc\x28\x0b\x32\xe6\xc2\xda\xcd\x86\xa6\x46\x6d\xdb\xb6\x6d\x5c\x08\x81\xb9\xb9\xb9\xb5\xde\x54\xb8\x9c\x5b\x47\x37\xac\x3d\x4d\x2d\xac\x5b\x59\x00\x80\x86\x86\x06\x3a\x74\xe8\x10\x0e\x1f\x3e\xcc\x42\xc1\x50\xb0\x31\x2f\x0f\x3e\x77\xb5\xe9\xff\xde\x3e\x17\xfc\x4d\x59\xb0\xc6\x8e\x94\xf7\xe1\xd1\x96\xdc\xdb\xe4\xf7\xa4\x9a\x9a\x9a\xb8\x63\xb5\xe5\x3d\x97\x7b\xaf\xd8\x9a\xee\x42\xac\x43\x13\xbd\x7e\xfd\xba\xd8\xb6\x6d\x9b\x21\xcb\xb2\xc6\x19\xd4\xdb\x8d\xea\x7c\xcf\xb2\xf7\xa1\x40\x51\x76\xac\xa2\xab\x04\xbb\xca\x67\x9f\xf8\xcd\x40\x4a\x47\x4a\x79\x7c\xcb\x62\xe0\x73\x2b\x3e\xe3\x4e\x36\x8c\xf9\xce\xae\x4e\x7d\xcb\x96\x2d\xa2\x58\x2c\x62\x69\x69\xa9\x9e\x46\x5c\x4f\xd3\xae\xf5\x7c\x6b\x69\xd8\xab\x34\xd2\x03\x07\x0e\xd0\xf1\xe3\xc7\x59\x73\x73\xb3\xd7\x6b\xb0\xe6\xfd\x53\x91\x5f\x7d\xfa\x7a\xec\x2f\x1a\xf3\x9e\xbd\x64\xfa\x4d\xbd\x3a\x6b\x8e\xaa\x72\xcb\x8d\xe6\xfc\x07\xd1\xc6\x68\x5e\xd3\x34\xeb\x53\x38\xf7\x5c\xee\xfd\x60\xeb\xba\x0b\x51\xfd\x36\xb8\xfe\xa6\xa7\xa7\x31\x38\x38\xa8\x13\x51\xbe\x28\x8b\xec\x64\x63\x21\xb1\x79\xd1\xbf\xc7\xab\xb3\x40\xa5\xfb\x6c\x0a\x9f\xbd\x87\xe1\x60\xe8\x02\xf0\xeb\xac\x73\x60\x3e\xf0\x33\x6d\x2b\x4a\x5f\xca\x6f\x4c\x19\x0d\x4a\x7a\xf3\xe6\xcd\xc6\xf6\xed\xdb\x85\xd7\xeb\x25\x73\x3f\x64\x7b\xa8\x67\xc8\xa8\x75\xed\x94\xc5\x35\x9f\xbd\xbd\xbd\x9d\x0e\x1c\x38\x80\x27\x9e\x78\x42\xea\xe8\xe8\xf0\xc8\x60\xd1\xa1\xb9\xc0\x73\xcf\x5c\x6b\xfa\xd3\xad\x09\xff\x2f\xcb\x82\x05\x2d\xcf\x80\xb5\x28\x3e\x96\xf3\x0c\x15\x24\x3e\x3f\x13\x29\x0c\x77\x76\x76\x6a\x77\xee\xdc\x81\x6d\x3f\xea\x75\x95\x6b\xbb\xde\x70\x9d\xed\xd8\xba\xee\x42\x54\x06\xd1\xdc\x11\x57\x4e\x93\xcb\xe5\x78\x32\x99\x44\x6f\x6f\x6f\x91\x31\xa6\xe6\x65\x23\x3d\x11\x53\xe7\x7a\x96\x7d\xbb\xfc\x45\x16\x04\x50\xd9\x3f\x92\x6c\x2b\x13\x89\x6c\xb5\x32\x57\xcf\x51\x79\x42\xbd\x14\xcd\xcb\x3b\xb7\xcf\x05\x7f\xbe\x35\xa3\x6c\xc9\x2a\xc6\x82\x1a\xa2\x54\x5b\x7b\x3b\xdf\xbb\x77\x2f\x36\x6d\xda\x04\x49\x92\x68\x61\x61\x61\x2d\x4a\xad\x75\xcd\x50\xfd\x9c\xe5\x67\x23\x22\x8a\xc5\x62\xd8\xb5\x6b\x17\x8e\x1e\x3d\x8a\x5d\xbb\x76\xc9\xf1\xa6\xb8\xa2\x08\xa9\x69\xdb\x7c\xf0\x8b\x4f\x5f\x8f\xfd\xd1\xae\x99\xd0\x6f\xfa\x75\xa9\xa3\x6a\x95\x9f\xa9\x44\x9a\xcf\x46\x9d\x29\xef\x23\x77\xa3\x85\x73\x2b\x3e\x63\xba\xab\xab\x4b\xb3\xd6\x31\xd5\x2a\xd7\xa5\x6d\xd7\x5d\xe7\x7a\x58\x82\xbb\x0c\x76\x0b\x4e\x85\xcb\x1e\x8f\x9d\x3b\x77\xb2\x23\x47\x8e\xc8\x42\x88\x08\x11\xf5\x87\x55\xe9\xd1\x2f\x7e\x1a\xff\x8d\xe6\x8c\xa7\x8b\x00\xdb\x32\x17\x51\xb1\xa9\x5b\x71\x16\x65\xc3\xba\x2e\x49\xe8\xb2\xcb\x0c\xd0\xe6\xc3\xda\xa9\xab\xad\xb9\xff\x76\x33\x9e\xff\x41\x46\x31\x12\x20\x68\x42\x08\x3d\x9d\x4e\xf3\x99\x99\x19\xcc\xcc\xcc\x20\x9d\x4e\x23\x9d\x4e\x5b\x1f\xa8\x58\xf3\x59\x18\x63\xf0\x7a\xbd\x68\x68\x68\x40\x53\x53\x13\x3a\x3a\x3a\xd0\xda\xda\x8a\x40\x20\x20\x0b\x21\x64\x26\xc8\x17\xcf\x79\x7a\x07\xe6\x03\x27\x86\xe6\x02\x3f\x1f\xd2\xa4\x21\x6b\x75\x25\xa8\x22\x62\xec\x2c\xc5\x7a\x56\x40\x20\x19\xd0\x47\xfe\x6e\xcf\xfc\xcf\x67\x3d\xc6\xd8\xc4\xc4\x84\xfa\xd6\x5b\x6f\xb9\xb5\xdd\x7a\xaf\xef\x09\x6b\x17\x8f\xeb\x09\xf5\xb4\x53\x1c\x3c\x78\x90\x3d\xf4\xd0\x43\x32\x11\x45\x84\x10\x7d\xfe\xa2\x74\xe8\xe9\xeb\xb1\x5f\xdf\xbc\xe4\xdb\x6e\xc9\xa8\x8a\xad\xbc\x74\x62\x2d\x85\x01\xcc\xbd\xae\x08\x25\xd7\x63\xf9\x9e\xc9\xfe\x00\x08\x12\x28\x4a\x62\x76\x3a\x52\x78\x7f\xbc\x29\xff\xc6\x54\xb4\xf0\xf1\xb2\x5f\x9f\xe6\x24\x34\x54\xf6\xea\xb2\x36\x24\xc7\xfc\xfc\x3c\xcc\x1d\xdc\xab\x82\xdf\xef\x47\x43\x43\x03\x64\x59\x66\xc1\x60\x10\x42\x08\xcb\x23\xa3\x78\x38\xf3\xc5\xb3\x9e\xde\x9e\x25\xdf\xa3\x7d\x8b\xfe\x67\xe3\x59\xcf\x41\xc6\x11\x2a\x8f\x09\xac\x3d\x39\x40\xb6\xfa\x95\x6a\x28\xcc\xde\xad\x6c\xb5\x24\x30\x16\xcf\xff\xed\x1b\xdb\x16\x7f\xcb\x20\x31\xff\xee\xbb\xef\xea\x63\x63\x63\x55\x76\x05\x47\x7b\xd6\x6d\xdf\x35\xfa\xc2\x15\x6b\x51\x30\x50\x9b\x42\xdd\x42\xad\xe1\x13\xf6\xef\xdf\xcf\xf6\xec\xd9\xc3\x18\x63\x11\x00\xdd\x1e\xce\xf6\x1d\xb9\xd5\xf0\x2b\x7b\xee\x86\x1e\x25\x61\x5b\x9b\x0b\x87\xf2\x45\x28\x2f\xf3\xb4\x0b\x2b\x7b\x45\x61\x8f\x27\x01\x4e\xc8\xac\x78\xf5\x6b\xb3\x11\xed\xe2\x5c\x58\xbb\xb0\x14\xd0\xaf\x25\xfd\xc5\xc9\x8c\xc2\xd3\x3a\xe3\x3a\x4a\x9d\x0e\xa0\x6a\x1f\x2f\x66\x75\xa8\x62\x30\x25\x5c\x90\x62\xd1\xbc\xa7\x37\x9e\xf5\x6c\x6f\x4b\x2b\x7b\x5b\x32\xca\xbe\x80\xc6\x7a\x09\xf0\x41\xb8\x6f\x9b\xe6\xbc\xb6\x87\x55\xcf\x41\x82\x7f\xd0\x97\xfa\xed\x4f\x36\xad\xfc\x7f\x99\x4c\x26\xf3\xf2\xcb\x2f\x5b\x5f\x1e\xb5\x87\x5a\xc3\x1f\x67\x70\x8b\xaf\x8b\x5d\xb5\xba\x10\xab\x3b\xae\x56\x61\xae\x2e\xc6\xf3\xe7\xcf\xf3\xc5\xc5\x45\x3c\xf1\xc4\x13\x69\x49\x92\xc6\x8b\x8c\x6b\xef\x6f\x49\xa6\xe7\xc2\xda\xe4\xe3\x63\x8d\x2f\x7a\x75\x0a\x00\x40\x65\x60\x8c\x0a\x5f\xb3\x76\xa5\xb3\xbe\x45\x6c\xbe\x0c\x36\x9d\xac\x9c\x8e\x40\x90\x38\x42\x51\xd5\x73\xa0\x21\x2f\x1f\x18\x9c\x0f\x00\x00\x17\x80\xa6\x4b\x62\x49\x93\x78\x22\xef\xe1\x49\xd5\xc3\xd3\x06\x09\x4d\x10\x38\x09\x30\x99\x93\xcf\x57\x64\x11\x7f\x51\x8a\x29\x06\xc5\x25\x4e\x51\x02\x14\xc0\xe2\x1c\x15\x8e\x51\x09\x66\x25\x09\xab\xc7\xf1\x26\xa5\x96\xb1\xf6\x65\x9e\x28\x5d\x36\xa8\xd2\x36\x21\x44\x20\x18\x0c\xe6\x38\xe7\x3a\x56\x07\x67\xfb\x6e\xd4\x4d\x59\xf3\xda\x29\x83\xeb\xca\x59\x97\x34\x35\xe3\x3a\x3a\x3a\x70\xfc\xf8\x71\x04\x02\x81\x00\x80\x38\x84\x18\x88\xe5\x3c\x9f\x7f\xe2\x46\xec\x17\x3b\x52\x4a\x6f\x79\xad\x31\x2a\xda\x00\x09\x1b\x05\x90\xed\x9e\x40\x99\xf2\xab\x0c\x26\xf7\x80\xad\xda\xe0\xce\xf6\xf2\x38\x39\x47\x99\x72\x6d\xfa\x82\x75\x63\x5d\x58\x12\xc8\x78\x8d\xe4\x7b\x5b\x92\x2f\x8f\xc5\xf3\xdf\x12\x10\xc3\x42\x88\xe4\x37\xbe\xf1\x0d\x6e\xd3\x11\xd6\xd3\xce\xb5\xc2\xba\xb0\xeb\x76\x17\x3a\x9e\xc3\xae\xa6\xdb\xd3\x97\x0b\x58\x59\x59\xa1\x3b\x77\xee\xa0\xb5\xb5\xb5\x18\x08\x04\xf2\x20\x4a\xe5\x15\xbe\x30\xda\x9c\xbb\x61\x30\x78\x5a\x57\x94\x6e\x89\x97\x6c\xe1\xe5\xdd\x8e\xc8\x92\xc5\xa5\x9e\x22\xc0\xd4\xae\xed\x0d\x57\xcd\x1e\x37\x8c\x2d\x2b\x47\xd5\x5f\x2f\x29\x7f\x1b\x8a\x2a\xdf\x74\x2b\x63\xcd\x7c\xd6\x8b\xe5\x04\xdc\x68\xce\x5f\x7e\x7d\xfb\xe2\x57\x67\x23\xda\x5b\x20\xdc\x20\xa2\xa4\x6d\x71\x99\x7d\xe4\x62\x75\x8e\x73\x88\xe3\x26\x05\x36\x8c\xdd\x90\xbb\xd0\xe5\x58\x6e\x67\xdb\xaf\x7c\x4f\x55\x55\x5c\xbd\x7a\x95\x07\x83\x41\x1e\x8f\xc7\x0b\x42\x88\x94\x60\x58\xbe\xdb\x50\x18\x1f\x8f\xab\x53\xd1\xbc\xa7\xad\xa1\x20\xc7\x4a\x8e\x45\xdb\xb0\xc9\xb4\x76\x95\x14\x17\x6b\xd3\x11\xb3\x85\xcd\x62\x2a\xdb\x15\x6c\x0c\x4b\x55\x6d\x40\xe5\x5e\x2c\xaf\x7d\xb6\xd2\x90\xa3\xcd\xc8\xd9\x7e\x6e\x58\x20\xe5\xd7\x97\xde\x1e\x5c\xfe\xd6\xb9\xee\xf4\x7f\xd1\x64\xf1\x43\x94\xd6\x23\x2f\xcf\xcf\xcf\x6b\xaf\xbf\xfe\xba\x7d\xa8\x64\xb5\xb3\x53\xcc\x3f\x50\x37\x65\x2d\x5d\xc1\x1e\xd6\x63\xd7\x5d\x33\x6d\x7f\x7f\x3f\x3b\x72\xe4\x08\x7c\xa5\xed\x62\xa3\x00\xba\x49\x60\xa0\x2f\xe1\x7f\xe2\xc8\x44\xc3\x33\xb1\x9c\xdc\xe2\xb6\x8a\xdd\x6a\x38\xaa\xa1\xd9\xac\x12\xe1\x6b\x60\xdd\x58\x75\x29\xde\xbe\x49\x8a\x6d\x1f\x03\x7b\x7a\xd4\xc0\x42\x40\x95\x79\xee\x93\xae\x95\x53\x17\x3b\x33\xdf\x2f\xca\x62\x44\x08\x31\x01\x20\x61\x7d\x85\xf5\xcc\x99\x33\x6e\xca\xd1\x5a\x76\xf3\x5a\x61\xdd\xd8\xb5\x3a\xf8\x41\xaa\xf1\x00\x4a\xdb\xf3\x6d\xda\xb4\x49\x26\xa2\x92\x6c\x06\xba\x65\x83\x86\xb6\xcd\x05\x9e\xda\x37\x15\x3e\x1a\xcd\xcb\xf1\x9a\x95\xaa\xa7\xbe\x02\xa8\x96\x84\x6b\x60\xed\xd7\x0e\xb9\x4d\x6b\x95\x55\x19\x9f\xa3\x20\x73\xf5\xd3\xb6\xec\xc7\x9f\x74\x65\xde\xc8\x7a\x8d\xcb\x00\x26\x00\xcc\x02\xc8\x24\x93\x49\xed\xd4\xa9\x53\xb0\x2d\xa3\xfd\x91\x07\xc2\x6a\x41\x5e\x4b\xb8\xbb\xc5\x6f\x64\x20\x5e\x0e\xbd\xbd\xbd\xf8\xfc\xe7\x3f\x0f\xbf\xdf\xaf\x08\x21\x42\x44\xd4\x02\xa0\xdb\xa3\xd3\xc0\xd6\x84\xff\xf3\x0f\xdd\x0d\x1f\x69\xc9\x78\x3a\x2c\x89\xb7\x9e\x50\xd9\x0b\xda\xba\xae\xff\x2e\x54\xdd\xaf\x93\xd8\xed\x96\x80\x40\x56\x31\xd2\xc3\xed\xd9\x8f\x87\xdb\xb2\xef\x66\xbc\xc6\x08\x08\x13\x30\x17\x72\x17\x8b\x45\xed\xf2\xe5\xcb\xfc\xd2\xa5\x4b\x70\x7c\xc7\xa2\x56\xfb\xad\xd5\xe6\xf7\x8c\xb5\xea\xee\xe6\x42\xab\x37\x5c\x5a\x53\x8b\x76\x14\x64\x0f\xe5\x74\xfb\xf7\xef\x67\x0f\x3d\xf4\x10\x93\x65\x59\x41\x69\xd5\x7b\x5c\x08\xd1\x21\x09\xea\xeb\x48\x79\xf7\x6e\x9f\x0b\x1e\xda\x92\xf0\x0f\x29\x06\xf9\xd6\xee\x68\xb7\x0d\xbf\x6b\x50\xb3\x8b\xbe\x5c\xb6\xb4\xc1\x52\xb2\xaa\xd3\x08\x08\x70\x02\x9f\x89\x14\x26\x87\xdb\xb3\x67\xc7\x9b\xf2\xa7\x35\x49\x8c\x83\x30\x85\x12\xc5\xa6\x85\x10\xea\xed\xdb\xb7\xf9\xe9\xd3\xa7\xab\x36\x15\x85\x3b\x11\xd4\x6b\x3f\x67\x7b\xdd\x33\x96\x50\xff\x2d\x78\x90\xc1\xb5\x0c\xbf\xdf\x8f\x3d\x7b\xf6\x60\xdb\xb6\x6d\x56\x47\x07\x84\x10\x51\x22\x6a\x03\xd0\xe1\x2b\xb2\xbe\xde\x25\xdf\xde\xad\x0b\xfe\xdd\x1d\x29\x6f\xb7\x4f\x67\x01\xaa\xea\xcc\x52\xb0\xcc\x9b\x16\xaf\xad\x50\x5e\xf9\xce\xda\xdc\xc0\x2e\xab\xcd\xce\xd5\x99\xd0\x13\xc1\xe2\xec\xcd\x78\x7e\x64\x2c\x9e\xff\x38\xe9\xd7\xaf\x83\xca\xdb\x2e\x2c\x01\xc8\x70\xce\xd5\xc9\xc9\x49\x7e\xfe\xfc\x79\xfb\x9a\xde\x07\xd6\x46\xf7\x83\xad\xf7\xcc\xf7\x22\xfc\xef\x2b\x1c\x3e\x7c\x98\xf5\xf7\xf7\xc3\xef\xf7\x2b\x28\x7d\x9f\x20\x02\x20\x46\x44\x2d\x10\x68\xf1\xe9\xac\xab\x65\xc5\x33\xd8\xbd\xec\x1b\x68\x4f\x7b\xbb\x63\x39\xb9\xc5\xa7\x33\x5f\x15\x2b\x5f\x57\x4f\xba\x07\x01\x01\x9d\x09\x3d\xed\x33\x92\xb3\xe1\xc2\xd4\x9d\xc6\xc2\xd8\x74\x43\xe1\xda\x8a\xd7\xb8\x25\x08\xb3\x00\xe6\x01\x24\x50\xfa\xca\x9b\xca\x39\xd7\x6e\xdf\xbe\xcd\x2f\x5c\xb8\x60\xff\x76\xef\x67\x6e\x7e\xdc\x08\xd6\x2e\x83\x1f\x14\x15\x3b\xd9\x74\x3d\x19\xe1\xac\x1c\x03\xc0\x77\xee\xdc\xc9\x06\x07\x07\x11\x8b\xc5\x18\x00\x85\x88\x7c\x42\x88\x00\x11\x45\x51\xd2\xc0\x63\x10\x88\x7b\x75\x8a\x37\xa8\x72\x67\x2c\xe7\xe9\x68\xca\x7a\xda\x22\xaa\x1c\x0b\x17\xa4\x48\x50\x93\x42\x8a\x4e\x8a\xcc\x49\x21\x41\x55\x06\x77\x01\x70\x83\x09\x5e\x94\x84\x96\xf7\x18\xb9\x8c\xd7\x48\xa7\x7d\x7a\x72\xd9\xaf\xcf\x2f\x06\x8b\xd3\x4b\x01\xfd\x4e\xde\x63\xcc\x73\x42\x02\x84\x25\x21\x44\x92\x4a\x1f\xd3\xc8\x08\x21\x72\x44\xa4\xe5\xf3\x79\xfd\xea\xd5\xab\x18\x1d\x1d\x85\x69\xf7\xde\x88\x69\x77\x3d\x6d\xf3\xc0\xb0\xf6\x67\xaf\xf5\xf6\xd4\x92\xbd\xeb\xb9\x5e\x2b\xd4\x4d\x1f\x8b\xc5\x58\x7f\x7f\x3f\x36\x6f\xde\x8c\x48\x24\xc2\x88\x48\x46\xc9\xac\xe8\x43\x89\x95\x07\x88\x28\x64\x2a\x6a\x21\x08\x04\x00\x04\x08\xf0\x31\x01\x45\x36\xc8\x27\x09\x52\x18\x27\x8f\x69\xe8\xe0\x06\x89\x62\x51\x12\x2a\x27\xa1\x72\x82\x06\x20\x87\xd2\x2e\x71\x56\x07\xa6\x01\xe4\x84\x10\x19\x22\x52\x51\xfa\x84\x8d\xae\xaa\x2a\xbf\x7d\xfb\x36\x1f\x1f\x1f\xc7\xd4\xd4\x54\x2d\x19\xb8\xd6\xf3\xd7\xd3\x5d\x3e\x13\xec\x46\x64\xf0\x7a\xcc\x98\xeb\x49\x7b\x4f\x5c\xa2\xa9\xa9\x09\x9b\x36\x6d\x42\x47\x47\x07\x9a\x9b\x9b\x99\xd7\xeb\x65\xe6\x5a\x1d\x19\x80\x2c\x84\x90\x89\x48\x71\x1c\xad\x2f\x79\x32\x00\x30\x77\x90\xe3\x64\x7e\x96\xc6\xfc\x69\xe6\x4f\x17\x42\xe8\x44\xa4\x03\xd0\x8b\xc5\x22\xcf\x64\x32\xfc\xf6\xed\xdb\x38\x7b\xf6\x2c\xb7\x6d\xb5\xbc\xd6\x33\xd5\xbb\xfe\x91\x63\x37\x2a\xad\x7e\xe4\x72\xb9\x5e\xd8\xbe\x7d\x3b\x8b\xc7\xe3\xd6\x47\xad\x11\x0e\x87\x19\xcc\x87\x34\x8d\x16\xd6\x03\xb3\xb2\x11\xc3\xac\xbf\xd9\xc9\x00\xc0\x35\x4d\x43\x2e\x97\xe3\xb3\xb3\xb3\x48\xa7\xd3\x48\x24\x12\x76\x2a\x5d\x2b\xfc\xb3\x92\xb9\xce\x44\x6e\x32\xf8\x5e\xa8\x79\xad\x21\x41\x2d\x6c\xad\x8a\x6f\x24\x7d\x39\x78\xbd\x5e\xe6\xf5\x7a\xd1\xd8\xd8\x58\x8e\x8b\xc5\x62\x50\x94\xca\x0e\x50\x4b\x4b\x4b\xd0\xb4\xd2\x06\xb0\xb7\x6f\xdf\x76\x1b\xc2\x59\x65\x5a\xd7\xb5\x86\x2e\x3f\x69\xd8\x55\x00\xe7\x71\x3d\x98\x5a\xd7\xff\x23\xfc\x98\x42\xd5\xb7\x0b\x51\xfb\xed\xb0\x5f\xd7\x52\xbc\x6a\xe1\xd7\x32\x88\xac\x65\xad\x79\xd0\xd8\x7a\x5c\xa5\x1e\xb6\x56\xf8\x67\x8d\xad\xa5\x64\xad\x47\x71\x72\x2a\x00\xb0\x61\x6a\x29\x00\xf5\x8e\xf6\xf2\x3e\xeb\xe1\x83\x5b\x9d\xff\x7b\xc7\x82\xd9\x7e\xb5\xae\x9d\x47\xb7\xdf\x46\xf2\x72\x9e\xbb\x95\xb3\x56\x9d\x3f\x0b\xec\x5a\x22\xe7\x27\x06\xfb\xff\x03\x63\xf3\x13\xf9\xa3\x12\xaf\x6e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x7a\x51\x44\xbe\x7b\x3f\x00\x00") + +func web_uiV2AssetsAppleTouchIcon120x120C9cc4fc809a6cbff9b9c261c70309819PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsAppleTouchIcon120x120C9cc4fc809a6cbff9b9c261c70309819Png, + "web_ui/v2/assets/apple-touch-icon-120x120-c9cc4fc809a6cbff9b9c261c70309819.png", + ) +} + +func web_uiV2AssetsAppleTouchIcon120x120C9cc4fc809a6cbff9b9c261c70309819Png() (*asset, error) { + bytes, err := web_uiV2AssetsAppleTouchIcon120x120C9cc4fc809a6cbff9b9c261c70309819PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-120x120-c9cc4fc809a6cbff9b9c261c70309819.png", size: 16251, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsAppleTouchIcon144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x3c\x40\xc3\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x90\x00\x00\x00\x90\x08\x06\x00\x00\x00\xe7\x46\xe2\xb8\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x69\x90\x1c\x47\x76\x26\xf8\x3d\x8f\xc8\xc8\xb3\xb2\xb2\x32\x13\x75\x5f\x59\x28\x14\x0a\x27\x89\xb3\x41\x80\x40\x93\x68\x76\x83\x0d\x92\xad\x6e\xb5\x34\x23\x69\xa6\xa5\xde\x59\x8d\x64\x63\x2b\x8d\x6c\x4c\xbb\xa3\x95\xc9\xd6\xc6\x34\x63\x6b\xda\x31\x4d\x9b\x56\x1a\x69\x65\x52\x6b\xa5\xd6\x31\xad\xab\x4f\xb5\xd8\x64\xf3\x26\x01\x82\x47\x93\xe0\x01\xa0\x0a\xc4\x51\x55\x40\xdd\x57\x56\x56\xde\x19\x19\xe1\x6f\x7f\x64\x44\x66\x64\x56\x66\xa1\x00\xe2\xd2\xb6\xbc\xac\x2c\x22\x3c\xbe\x74\x7f\xee\xfe\xe2\xf9\xf3\xe7\xcf\xdd\x09\x80\x00\x20\xad\x6b\x6d\x90\xd6\x55\xd4\xc4\xd5\x3e\xd7\x62\x36\x92\xce\xad\x62\xd6\x7b\x7f\xb7\x31\xff\x1c\x1c\xe1\x76\x57\xd6\x46\xd2\xfb\xa7\x82\x11\x8e\x77\xa2\x4e\xdc\x8f\x2c\x86\x6a\xc0\x76\x70\x7e\x7d\xb5\x92\xc1\x7e\xe7\x8c\xbf\x1b\x12\xe6\x7e\x94\x3e\xf7\x1b\x4d\xf7\x1b\xe6\x9e\x86\x5a\xe2\xea\x11\x7b\xb7\x30\xf7\x83\x14\xbc\x2f\x31\xb6\x04\x92\x1b\xb8\xd6\x26\x5a\x4f\x32\xd5\xcb\xb4\x9e\x34\x5b\x0f\xe3\x7c\xae\x27\xed\xee\x05\xa6\x11\xb6\x5e\xf8\x51\xc6\xdc\x17\xe1\xbe\xf9\xba\x1c\x98\x5a\xbd\xa0\xf6\xb7\x3f\xb2\x18\x15\x6b\x25\x4c\xbd\x67\x34\xc0\xd4\x72\xe4\x7a\xa3\xb9\x9b\xc1\xd4\xe6\x71\xaf\x31\xf6\xfd\x7a\xdd\xdf\x8f\x24\x86\xea\x44\xde\xae\x50\xaf\xeb\xbb\x6f\x30\xdb\xb6\x6d\x13\x81\x40\x00\x2d\x2d\x2d\x65\x40\x30\x18\x44\x30\x18\xac\xfa\xd1\xd2\xd2\x12\xf2\xf9\x7c\xf9\x79\x75\x75\x15\xc9\x64\x12\xa3\xa3\xa3\xeb\xe5\x77\x5f\x97\xfd\x76\x62\xa8\x4e\xe4\xcd\x48\xa0\x3b\x89\xa9\x27\xe5\xea\x49\x85\xba\x57\x55\x55\x61\x18\x86\xdc\xbb\x77\xaf\x68\x69\x69\x41\x24\x12\x41\x73\x73\x33\x88\x48\x38\xf2\x72\xde\x83\x99\x05\x51\xdd\x6f\xca\xa6\x51\x32\x33\x88\x48\xda\x71\xc5\x62\x51\x66\x32\x19\xac\xac\xac\x20\x1e\x8f\xe3\xdd\x77\xdf\x5d\x4f\x57\x58\xaf\x3c\xff\x24\x31\xb5\x4a\x74\x6d\xb8\xdf\x86\x85\x0d\x31\x2e\x97\x0b\xe1\x70\x18\xb1\x58\x0c\x1d\x1d\x1d\x88\x46\xa3\x20\x22\x61\x31\x45\xa9\xab\x66\xa8\xaa\x24\xcd\x6d\x90\xcf\x53\x54\x42\xc1\xbc\x12\xf5\x18\x22\xec\x36\x44\xc8\xa7\x2b\x21\xcd\x24\xbf\xc2\xa4\x09\x49\x1a\x00\x48\x62\xc3\x14\xac\xe7\x55\xb9\x9a\x77\xc9\x64\xde\x25\x13\x39\x97\x5c\x4a\x6b\x66\x3c\xa7\x99\x89\x82\x22\xb3\xa6\x80\xce\x60\x03\x80\xe1\x60\x2c\xb9\xbc\xbc\x8c\xf1\xf1\x71\xcc\xcc\xcc\x60\x61\x61\x01\x52\xde\xe8\xe3\xfe\xa7\x19\x6e\xa6\x0b\xdb\xa8\x04\x91\x0d\xde\x6d\x14\xd3\x48\xaa\xac\xa1\x83\x88\x44\x4f\x4f\x0f\x06\x07\x07\xd1\xdd\xdd\x0d\x8f\xc7\x63\x4b\x15\x15\x0c\xcd\x25\xc9\x13\xca\xa9\xd1\xd6\x94\x36\x1c\x4d\xbb\x76\x45\xb2\xae\xe1\xe6\xbc\x3a\xe8\x29\x8a\x76\x55\x52\x50\x30\x3c\x25\x3c\x09\x80\x4b\xa9\x32\x50\x92\x42\x6c\xc7\xa0\x54\x4d\x6c\x97\x5d\x4a\x42\xde\x10\x9c\xc8\xb9\xcc\x99\x94\xc7\x9c\x58\xf4\x17\x2f\x2c\x05\x8a\xe7\x17\x02\xfa\xc5\x84\xd7\x88\x1b\x82\xf3\x20\xe8\x00\x0c\x00\x32\x93\xc9\xc8\xf9\xf9\x79\x8c\x8c\x8c\x60\x76\x76\x16\xcc\x7c\xcb\x92\xf5\x7e\xc3\x50\x0d\xb0\xb6\x11\x9d\x0d\xe6\x0c\xb5\x0c\xb0\x9e\xe4\x58\x2f\x9d\x9b\xc1\x94\x43\x38\x1c\xc6\xd0\xd0\x10\xfa\xfb\xfb\xd1\xd4\xd4\x64\x4b\x18\x55\x91\xf0\x85\xb3\xae\xce\xee\x84\xfb\xc1\xde\x15\xcf\x27\x37\xa5\xb5\xbd\xbe\xa2\x18\x24\x86\x0f\x20\x80\x19\x04\x02\x97\xf9\x81\x01\xa2\x12\x7b\x70\xe9\xbe\x1e\x86\x40\x16\x33\x55\x30\x00\x55\xd8\x0a\x5c\x4a\x9e\x90\xce\xba\xe4\x95\xf9\x26\xfd\xec\x64\x28\x7f\x6a\x3a\x54\x38\xbb\xec\x2b\xce\x98\xc4\x79\x94\x24\x94\x91\x4e\xa7\xe5\xd8\xd8\x18\x46\x46\x46\x90\x4c\x26\x37\x52\xdc\xfb\x3a\xdc\x09\x25\xfa\x46\x12\xe4\x46\x18\x27\x13\x95\xdf\x29\x8a\x22\x3a\x3b\x3b\xb1\x77\xef\x5e\x44\xa3\x51\xa1\x28\x8a\x60\x66\x4d\x61\xf2\x6d\x4a\x6b\xfd\x83\x4b\xde\xe3\x03\xcb\xde\xcf\x36\xe7\xd4\xdd\x0a\x23\x04\x26\x87\xe0\xc0\xc7\xbf\x87\xf5\x4c\x8e\x2b\xd6\xc1\x80\xa5\x49\x48\x26\x7c\xc5\xb3\x13\xe1\xfc\xf3\x97\x36\x65\x5f\x58\xf2\x17\xaf\x9b\xc4\x59\x00\xba\x94\x52\xce\xcc\xcc\xc8\x8b\x17\x2f\x62\x62\x62\xa2\xc4\xc0\xd5\x61\xbd\x7a\xb9\x6f\x30\xf7\xbd\x21\x51\x55\x55\xb1\x75\xeb\x56\x3c\xf8\xe0\x83\xf0\xfb\xfd\x76\xf7\xe4\x69\x2a\x28\xad\x43\x8b\xbe\xc7\x86\xe7\x7d\x5f\x0c\x67\x5d\x07\x05\x53\xa0\xd4\x86\xce\x56\xb6\x8b\x58\xea\x90\xa8\x2e\x27\x6c\x04\x53\xf9\xce\xaa\x31\xa8\xc1\x36\xc6\x98\xc4\xe9\x65\x7f\xf1\xed\x8f\x5a\xb3\xdf\xbc\xb4\x29\xfb\x42\xca\x6d\x2e\x80\x90\x07\x60\x2c\x2f\x2f\xcb\xf7\xde\x7b\x0f\x53\x53\x53\xd0\x75\x7d\x4d\x1d\xa0\xb1\x64\xbe\xe7\x98\xfb\x76\x18\xaf\xaa\xaa\xd8\xb6\x6d\x1b\x76\xed\xda\x85\x40\x20\x60\x4b\x9b\x40\x47\x52\x1b\x7a\x60\xa6\xe9\x5f\xf5\xc5\x3d\x9f\xd3\x4c\xea\x2c\x75\x2f\xf5\x1a\xbe\x3a\xdc\x19\x4c\xfd\xb0\x1e\x86\xc1\xd0\x15\x9e\x1a\x0f\xe7\xfe\xe1\x5c\x67\xe6\xaf\x67\x83\x85\x8b\x26\x71\x96\x88\xf4\x6c\x36\x2b\x4f\x9f\x3e\x8d\x89\x89\x89\x8f\xab\x47\xde\x35\x0c\xd5\x00\xd1\x00\xdc\xa8\xab\xd9\xa8\x42\x7d\x33\x18\xf4\xf5\xf5\x89\x03\x07\x0e\x20\x1c\x0e\x0b\x00\x1a\x49\x04\xfa\x57\x3c\x7b\xf7\x4d\x36\xfd\x62\x47\xd2\xfd\x98\xc2\x14\xa8\x53\xd0\x52\xa8\xdf\xee\x1f\x0f\xc3\x28\xf5\x88\xb5\x42\xe9\x63\x62\x4c\xe2\xf4\x4c\x73\xe1\xd9\xb3\xdd\xa9\xaf\x4e\x84\xf3\xef\x33\x21\xcd\xcc\xfa\xf2\xf2\xb2\xfc\xd6\xb7\xbe\xb5\x5e\x7d\xd7\x53\x70\xef\x09\xe6\x4e\x4a\xa0\x5b\x0a\x27\x4f\x9e\x14\x5d\x5d\x5d\x82\x88\x34\x62\xf8\x7a\x57\x3c\xfb\x0f\x5e\x0b\xfe\xbb\x8e\xa4\xf6\x19\x02\x3c\x8d\xbb\x21\x60\x2d\x57\xdc\x2e\x0c\x4a\x8a\x33\x35\xe2\x8c\x5b\xc7\x70\x69\xb4\x97\x9f\x0d\xea\xcf\xbe\xd5\xbf\xfa\x07\x93\xa1\xc2\xfb\x4c\xc8\x32\xb3\x7e\xed\xda\x35\xf9\xdc\x73\xcf\xdd\xd7\xe3\xff\xfb\xc6\x90\xb8\x6f\xdf\x3e\xb1\x73\xe7\x4e\xb8\xdd\x6e\x0d\x0c\x4f\x24\xe3\x1a\x78\x68\x22\xf8\x2b\xb1\xb8\xf7\x27\x14\x26\x5f\x09\x6e\x57\x7a\x85\xf8\x4a\x2c\x70\xa7\x30\x4e\x16\xa8\x27\xbc\x6e\x17\xc6\x24\x4e\x8f\x45\x72\x7f\xf7\x46\xff\xea\x7f\x8f\xfb\x8c\x09\x06\x67\x8b\xc5\xa2\xf1\xde\x7b\xef\xe1\x83\x0f\x3e\x70\x42\xd7\x1b\x76\xdf\x55\xcc\x3d\x37\x24\x6e\xda\xb4\x09\xc7\x8e\x1d\x43\x24\x12\x51\x99\x59\xf3\x1a\x4a\xeb\xfe\xeb\x4d\x3f\xf3\xc0\x4c\xe0\x3f\xb8\xa4\x08\xdb\xb8\x7a\x8d\xed\x7c\xbe\xdb\x18\x3b\xfe\x4e\x60\x8a\x42\x2e\xbc\xdf\x9d\xfe\x9d\x77\xbb\x53\x7f\x53\x70\xc9\x25\x00\xf9\xb9\xb9\x39\xf9\xea\xab\xaf\x62\x75\x75\x15\xf7\x53\x50\x50\x29\x17\xd7\xf9\x77\xc6\xdb\x65\x94\x35\x71\x5c\xf3\x2c\xeb\xdc\xd7\xa6\x23\x01\xf0\xd6\xad\x5b\xe9\xd1\x47\x1f\x45\x53\x53\x93\x06\x46\x53\x2c\xee\x3d\x74\x72\x24\xf2\x7b\x03\x71\xef\xbf\x56\x58\xf8\xca\xa6\x3c\xcb\xb8\x47\x55\xc6\x3d\xa0\x2a\xe6\x0e\x62\x9c\x16\x9f\x46\xe1\x76\x62\x04\xc3\xdf\xb5\xea\x3e\x3e\xb0\xec\xfd\x44\xc2\x57\x1c\x5b\xf5\x98\xcb\x81\xa6\x80\x1c\x1e\x1e\x36\x93\xc9\x24\x56\x56\x56\x24\x2a\xf5\x58\xef\x8a\x75\xde\xdd\x56\x8c\x82\x92\x64\xb0\x4b\x26\x6a\xae\x70\xbc\xb7\x7f\x58\xcf\x5a\xe2\xc4\xd8\xbf\x41\x0d\xb6\x0a\x73\xe2\xc4\x09\xf1\xc0\x03\x0f\x08\x45\x51\xbc\x1e\x53\xb4\x1f\x1b\x6b\xf9\xf7\x47\xc7\x42\xbf\xed\xd7\xc5\x00\x11\x11\xc0\xa0\x72\x63\xda\xa9\x11\x88\x4b\xcf\xb6\xb5\xf8\x6e\x60\xec\xa6\x27\x50\x09\xc3\x8e\x67\xdc\x31\x0c\xf9\x0c\xa5\x67\xcb\x82\xef\xc7\xbc\x86\x50\x67\x83\x85\x4b\x52\xa1\x42\x2c\x16\x93\xa6\x69\x62\x7e\x7e\xde\xae\xdf\x7a\xd7\xf5\xde\xdd\x56\x8c\x2d\x81\x6c\x26\xb0\x19\xc0\xf9\x99\xd4\x93\x46\xa8\xc1\xd5\x8b\x77\x32\x54\x19\xd3\xdc\xdc\x2c\x7e\xfc\xc7\x7f\x9c\x5a\x5b\x5b\x55\x30\xfc\xed\x29\xf7\xee\x27\x46\xa2\xbf\x37\xb0\xec\xf9\x19\x01\xd2\xaa\x94\x50\xb2\x74\x10\x22\x4b\xf1\xb4\x52\xbd\x4d\x18\x2e\x63\xac\x67\x00\x52\x40\x32\x81\xed\x7f\x54\x5a\xd4\xaa\x32\x2a\x25\x41\x54\x89\xb3\xee\x99\x4a\xef\xd8\xce\xfe\x36\x60\x14\x90\xbb\x3d\xa5\x1d\xe9\x4d\x78\x76\x2c\x34\x15\xcf\x65\xdd\x32\xde\xde\xde\x6e\x8c\x8d\x8d\xa1\x50\x28\x34\x92\x18\xb5\xd2\xfe\x8e\x61\x08\x0d\x0c\x78\xb8\x3d\xba\x4f\x55\x88\xc5\x62\x38\x7e\xfc\x38\x14\x45\xd1\x88\x11\xdc\x3e\xe7\x7f\xfc\xe8\x58\xe8\xb7\x3c\x86\xe8\xb4\x31\xb6\x0d\x85\xeb\x8c\x64\xc8\x7a\x5f\xba\xbf\x15\x0c\x50\x14\xac\x67\xdc\x66\x7a\xc5\x6b\xc4\x93\x1e\x23\x91\xf4\x98\x89\xac\x66\x26\x73\x2e\x99\x2d\xa8\x32\x6b\x12\x1b\x52\xc0\x00\x00\x21\xed\xc9\x57\xe1\xf1\x16\x45\xc0\xaf\x2b\xc1\x60\x5e\x0d\x35\xe7\xd4\x70\x28\xaf\x86\xfc\xba\x08\x28\x92\x54\x38\x72\xae\xba\x32\x57\x7f\xcb\x1f\x13\x33\x15\x2a\xfc\xdd\x37\x76\x2f\xfc\x32\x80\xc4\xdb\x6f\xbf\x6d\xd4\x28\xd6\xf7\x24\xa8\x68\x6c\xec\x5b\x6f\xf8\x58\x6f\x44\x55\x0f\x53\x7e\x1f\x8b\xc5\xc4\xa7\x3e\xf5\x29\x21\x84\xd0\x5c\x26\x45\x8f\x8c\x35\xff\x2f\xbb\x66\x03\xff\x5e\x30\x79\xaa\xb5\x02\xe7\x67\x0f\x7b\xda\xc9\xc1\x18\x56\xfc\x06\x30\x12\x8c\xbc\x4b\x66\x17\xfd\xc5\xb9\xe9\x50\xe1\xfa\x5c\xb0\x30\xb1\xec\x2b\xce\xe4\x5d\x72\xc5\x24\xa4\x41\xc8\x02\xc8\x03\xd0\xad\x7f\xa3\x4e\x99\x54\xc7\xbf\x07\x80\x07\x0c\x9f\x22\x11\xf0\xeb\x4a\x24\x9a\x71\x75\x77\x24\xdd\xfd\x5d\xab\xee\xde\x48\xc6\xd5\xaa\x99\xd0\xca\x24\xd8\xf3\x6c\x35\xe5\x73\x14\x60\xc3\x98\x94\xdb\x58\x78\x71\xcb\xca\xb7\xad\x79\x3f\xb8\xdd\x6e\xbb\xfe\x6f\xd5\xde\x76\x5b\x30\x6a\xcd\x4b\x38\x00\xeb\x19\x12\xeb\x11\xde\xd0\xaa\x7c\xf8\xf0\x61\xb1\x63\xc7\x0e\x41\x44\x1e\x77\x91\xda\x4f\x7c\x14\xf9\xcd\xd8\xb2\xe7\xa7\xc0\x10\x55\xee\x37\xe5\x0f\x8f\x51\x96\xe1\x70\x7c\x8b\xf6\xfc\x16\x1a\x63\x00\x20\xa3\x99\xe9\x89\x70\xee\xca\x58\x24\x37\x32\x17\xd4\xaf\x64\x5d\x72\x9e\xc1\x09\x22\x4a\x30\x73\x16\x40\x9a\x88\xca\x8c\xc3\xcc\x06\x11\x49\x66\x96\xd6\xb5\x94\x66\x89\x38\xc1\xcc\x02\x80\x20\x22\x95\x99\x35\x00\x1e\x53\x21\xcf\xaa\xc7\xf0\x25\xbd\x66\x70\x2c\x9a\x0f\x12\x23\x1c\x28\x28\x1d\xdd\x09\xf7\xd0\xc0\xb2\x77\x7b\x4f\xc2\xd3\xef\x36\x84\x07\x5c\xe9\x35\x9d\x43\x91\xaa\x61\xfc\x0d\x30\x45\x21\xf5\x17\x86\x56\xfe\x22\xe1\x35\xae\x5b\xf4\xca\x44\x22\x51\xaf\xaa\x45\x9d\xfb\x7a\x4c\x71\xdb\x30\x4e\x06\xaa\x05\xc8\x3a\xf7\xf5\xe2\xd6\x7d\x76\x30\x8f\x2f\x98\x53\x06\x4e\x8e\x46\xbe\xd2\x96\xd2\x8e\x13\x08\x20\x47\x07\xc3\x6c\x55\xa2\x83\x49\x88\xcb\xf2\x86\x9c\xf1\x16\xcc\xc6\x00\x80\xae\x48\x7d\xaa\xb9\x30\x31\xd2\x9e\x79\xe7\x7a\x4b\xfe\x82\xae\xf0\x0c\x08\x71\x00\x71\x00\x49\x02\xa5\x01\xe4\x89\x68\x8d\xb4\xb1\xfd\x78\x6c\x67\xb2\x5a\xa7\x32\xa7\x13\x9a\xf5\x4e\x05\xa0\x5a\xd2\x40\x03\xe0\x63\x42\x20\xe5\x31\x43\xa3\xed\xd9\x1f\x8e\xb6\x65\xa3\x3e\x5d\xf4\x0c\xc4\xbd\xbb\xb7\xcf\xf9\xf7\xb6\xa5\xb4\x4e\x85\x49\x38\x3f\x0e\xaa\xcb\x3d\x40\x2d\x46\x82\xf1\x56\x5f\xf2\xfb\xd7\x5b\xf2\xa7\x40\x98\x03\x90\x2d\x16\x8b\xf2\xd2\xa5\x4b\x1b\x69\x93\x7a\xf1\xb7\x15\x63\xeb\x40\x77\xc4\x48\xf8\xd0\x43\x0f\x61\xe7\xce\x9d\x82\x88\x7c\xcd\x39\x75\xf0\x73\xe7\xa3\x7f\x18\xce\xaa\x07\xcb\x5d\x8f\x05\x74\x76\x4a\xb5\xb6\x92\xaa\x2f\xb5\x06\x03\x00\x05\xd5\xcc\x8f\xb6\x65\xdf\x3f\xd7\x91\x3e\xb3\xe2\x33\x2e\x73\xa9\x92\x17\x00\x24\x00\x24\x51\xea\xa2\xf2\xb6\x94\xb1\x68\x94\xb3\xb3\xb3\x30\x0c\x03\xf6\xf5\xfc\xf9\xf3\xb2\xb5\xb5\x55\x2c\x2c\x2c\xc8\xe6\xe6\x66\xb1\xba\xba\x2a\x9b\x9b\x9b\x85\xcb\xe5\xc2\xd2\xd2\x92\xdc\xb9\x73\xa7\xf0\xf9\x7c\x88\x44\x22\xf0\xfb\xfd\x08\x87\xc3\x76\xb9\xed\x7f\x0d\x56\x17\xc7\xcc\x41\x22\x8a\x02\x88\x0a\x89\xce\xb6\x94\xb6\x63\xcf\x74\xd3\xc3\xb1\x65\xcf\x90\x4b\x0a\x75\x6d\xb9\xea\x95\xb5\xf4\x7c\x25\x9a\x3d\xfb\xec\xb6\xe5\xdf\x31\x05\xde\x07\x30\x05\x20\xfd\xf2\xcb\x2f\xcb\xcb\x97\x2f\xdb\xf5\xfd\xff\x4f\x43\xe2\xe1\xc3\x87\xb1\x63\xc7\x0e\x01\xc0\x17\xcd\xba\x76\x3e\x75\x7e\xd3\x1f\x34\xe7\xd5\x07\x6f\x54\x69\x76\x1c\xb0\xb6\x32\xed\x38\x06\x23\xe7\x92\xd9\x0b\xed\x99\x77\xde\xef\x4a\xbd\x92\x71\xcb\xab\xcc\x3c\x83\x0a\xe3\xd8\xd2\xc6\x60\x66\x99\xcb\xe5\xe4\xe4\xe4\x24\x66\x67\x67\xb1\xb2\xb2\x82\xc5\xc5\xc5\xdb\x32\x48\xe8\xea\xea\x42\x4b\x4b\x0b\x3a\x3a\x3a\xd0\xda\xda\x6a\x7b\x0b\x38\x99\x29\xc0\xcc\x61\x00\xad\x04\xea\x0e\x67\xd5\x6d\xfb\x27\x83\xc7\x07\x17\xbd\xdb\x35\x29\xb4\x7a\x75\xe0\xfc\x38\x96\x7d\xc5\x99\x6f\x3e\xb0\xf0\x5b\x39\x4d\xbe\xc9\xcc\x13\x00\x92\xa3\xa3\xa3\xc6\xe9\xd3\xa7\x6f\x40\xfa\xdd\x0b\xb5\x6d\xb7\x5e\xd8\xa8\x24\x92\x7b\xf6\xec\x11\x07\x0e\x1c\x10\x00\x7c\xc1\x9c\x32\xf8\xf9\x73\x9b\xbe\xda\x92\x73\xed\x2d\x41\xaa\x47\x45\x25\x22\xd6\x8e\x96\xea\x19\xf7\x18\x0c\x53\xc0\x18\x6d\xcb\x9c\xfd\x61\x4f\xf2\x85\xa4\xc7\x1c\x05\x61\x0a\x25\xc6\x89\x03\xc8\xc2\xd2\x69\x56\x57\x57\xe5\xf8\xf8\x38\xc6\xc6\xc6\xb0\xbc\xbc\xdc\x48\x67\xb3\xcb\x53\x6f\xb2\xf8\x46\x98\xda\x0f\x4f\x76\x76\x76\x8a\x58\x2c\x86\x58\x2c\x06\xaf\xd7\x6b\x3b\xba\x79\x00\x04\x00\x84\x01\xb4\x83\xd1\xdb\x96\xd2\x1e\x38\x74\x2d\xf8\x99\xbe\xb8\x67\x90\x6a\x98\xd4\x2e\x77\x41\xe1\xec\x77\x76\x2f\xfe\xde\x5c\x50\xff\x01\x80\x4b\x00\xe2\xf1\x78\x5c\xff\xf6\xb7\xbf\x0d\xd3\x34\x37\x44\xcf\xdd\xc0\xd0\x0d\x80\xf5\x2a\x11\x35\xef\xaa\xe2\x63\xb1\x98\x38\x7e\xfc\xb8\x50\x14\xc5\x17\xc8\x2b\x03\x3f\x76\x3e\xfa\x07\xd1\x8c\xeb\xf0\x8d\x5c\x20\xd6\x28\xd0\xe0\x8a\xb1\x84\x19\x4c\xc0\x74\xb3\x3e\x71\x7a\x20\xf1\x8f\x73\x4d\xfa\xbb\x20\x5c\xb7\xa4\x4e\x9c\x88\xb2\xcc\xac\x1b\x86\x61\x8c\x8d\x8d\x61\x74\x74\x14\x0b\x0b\x0b\xeb\xe5\x76\x47\xcc\x14\xce\x30\x30\x30\x80\xcd\x9b\x37\xa3\xbf\xbf\xdf\x96\x4a\x36\x23\x45\x01\x74\x0a\x50\xff\xe6\x25\xef\x91\x23\xe3\xcd\x8f\x87\x72\x6a\x94\xca\x2e\x90\x04\x29\x58\xbe\xb8\x65\xe5\xeb\x17\xda\x33\x7f\xcd\xe0\x11\x22\x5a\x48\xa7\xd3\xf9\xa7\x9f\x7e\xfa\xbe\x9b\xca\x70\xb6\x6a\xc3\x51\xd4\x46\x43\x6b\x6b\xab\x78\xea\xa9\xa7\xa0\x28\x8a\x4f\x33\xa8\xf3\x73\xe7\xa3\xbf\xdb\xb5\xea\x7e\xbc\x6a\xf4\xe4\x08\xb5\x23\x91\x7a\x0f\x0c\xa0\xa0\xca\xfc\xdb\xbd\xc9\x97\x3e\xec\x4c\xff\xc0\x50\xf8\x0a\x80\xeb\x00\x96\x50\xea\xaa\xf4\x74\x3a\x6d\x9c\x3b\x77\x0e\xe7\xce\x9d\xab\x47\x7f\x23\xe9\xf2\x71\x31\xeb\x49\xe4\xf2\x35\x10\x08\x60\xfb\xf6\xed\xd8\xb9\x73\x27\x54\x55\xb5\x25\x52\x10\x40\x2b\x18\xbd\x1e\x43\x0c\x1f\x1e\x6f\xfe\xb1\xed\x73\xfe\xfd\x2a\x93\xca\x60\x9c\xef\xc8\xbc\xf6\xd2\xe0\xca\x1f\x72\x49\xef\x99\x91\x52\x66\x5f\x78\xe1\x05\xe9\xf0\x13\xba\x65\x7a\x6e\x37\xe6\xb6\x19\x12\x83\xc1\x20\x9e\x78\xe2\x09\x34\x35\x35\x79\x84\x44\xf4\xd3\x1f\x85\xff\xd3\xf0\x82\xef\xdf\x50\x8d\x0a\x0c\x54\x04\x0d\x88\xcb\xdd\x53\x05\xc3\x55\xdd\xd7\x7c\x93\x7e\xfd\xa5\x2d\x2b\xdf\x98\x0f\xe8\x3f\x24\xa2\x31\x66\x9e\x03\x90\x20\xa2\x7c\x26\x93\x31\xde\x7f\xff\x7d\x7c\xf4\xd1\x47\x30\x0c\xa3\x1e\x5d\x1b\xd1\xed\x3e\x8e\xfe\xb7\xe1\xe0\xf5\x7a\xf1\xc0\x03\x0f\x60\x78\x78\x18\x2e\x97\x4b\x23\x22\x0f\x33\x87\x89\xa8\x13\x8c\xc1\x58\xdc\x73\xf4\xf8\xe5\x96\xcf\x67\x34\x33\xfe\xad\xdd\x8b\xff\xb5\xa0\xc8\xb3\x44\x34\xc1\xcc\xc9\x0f\x3f\xfc\x50\xbe\xf5\xd6\x5b\xb7\x8b\x94\xdb\x1a\xea\xf5\x2b\x1b\x91\x44\x6b\x30\x27\x4f\x9e\x14\xdd\xdd\xdd\x2a\x18\xe1\x4f\x5c\x0b\xfe\xc2\xa1\x6b\xc1\xff\x04\x50\xc3\x06\xb0\x87\xee\xa0\xfa\x5d\x1b\x13\xcb\xf3\xed\x99\xb7\x4f\x0f\x24\xfe\x5e\x57\x78\x04\x84\x09\x58\x52\x47\x4a\x69\x8c\x8c\x8c\xc8\x33\x67\xce\xd4\xb3\x59\x35\xa2\xf1\xbe\xc1\x9c\x38\x71\x42\xf4\xf5\xf5\xd9\xca\x76\x00\x25\xdd\xa8\x3b\x98\x57\xfa\x09\xd0\x57\xbd\xe6\x87\x00\x26\x00\x24\xae\x5d\xbb\x66\xfc\xe0\x07\x3f\xb8\xa1\xde\x79\xaf\xca\x55\xdb\x85\xc1\x01\xa8\xd5\x83\xea\xe9\x46\x12\x00\x8e\x1c\x39\x22\x76\xec\xd8\xa1\x02\x08\xc4\x96\x3c\x9f\x79\x62\x34\xf2\x55\xc5\xa4\x40\x95\x3d\xa5\x76\xfa\x95\x6c\xdb\x4f\x0d\x86\x4a\x86\xb3\xd7\x36\x27\xfe\xf1\x7c\x47\xe6\x69\x09\xbe\x48\x44\x53\xcc\x9c\x00\x90\x5d\x58\x58\x90\x6f\xbd\xf5\x16\xe6\xe6\xe6\x6a\xca\x7a\xdb\xf4\x9a\xf5\x30\x8d\xf4\xc3\x9b\xc6\xc4\x62\x31\x71\xf8\xf0\x61\xf8\xfd\x7e\x95\x99\x7d\x44\x14\x44\x69\xd4\x66\xa0\x24\x61\x93\xe9\x74\x5a\xff\xfa\xd7\xbf\xfe\xb1\xf3\x8a\x44\x22\xc2\x1a\x48\x7c\xac\x74\xea\x61\x6e\x66\x14\x56\x37\x74\x75\x75\x89\x93\x27\x4f\x0a\x22\xf2\x85\xb2\xea\xce\x9f\xfc\xa0\xf5\x7f\xf8\x74\xa5\xdf\xe9\xa9\x5c\x31\x12\x3a\xa6\x7e\xca\x6b\xaf\xaa\x31\x19\x97\x4c\x3e\xbf\x35\xfe\x77\x13\xe1\xfc\xf3\x20\x5c\x02\x30\x03\x20\x69\x18\x86\xfe\xce\x3b\xef\xe0\xc3\x0f\x3f\xfc\x58\x7a\xda\xfd\x16\x8e\x1d\x3b\x26\xb6\x6e\xdd\x5a\x5e\x9a\x84\x52\x03\x19\x85\x42\xc1\xf8\xf3\x3f\xff\xf3\x5b\x2e\xeb\xe1\xc3\x87\x45\x2c\x16\x83\xdb\xed\x86\xa2\x28\x42\x4a\x89\x7c\x3e\x2f\x67\x67\x67\x31\x3a\x3a\x8a\xd9\xd9\xd9\xdb\x52\x8f\x1f\xdb\x90\xf8\x73\x3f\xf7\x73\xc2\xed\x76\x7b\x54\x93\x3a\x9f\x3a\x1f\xfd\x9d\xbe\x84\xe7\x49\xa0\xb1\x91\xb0\x91\x6d\x07\x60\xa4\x35\x33\xf9\xbd\x1d\x4b\x7f\x32\xdf\x54\x3c\x65\x31\xcf\x1c\x33\xa7\x53\xa9\x94\xf1\xea\xab\xaf\xda\x85\xbe\xab\xc3\xd4\x1b\x60\x9c\xe1\x96\x31\x5d\x5d\x5d\xd8\xb6\x6d\x1b\x06\x06\x06\xc0\xcc\x18\x19\x19\xc1\xeb\xaf\xbf\x7e\xd3\xe9\x28\x8a\x82\x87\x1e\x7a\x08\x5b\xb6\x6c\x81\xcb\xe5\xb2\xad\xe4\xaa\xb5\x3a\x57\xa2\x64\x7d\x37\x00\x18\xe3\xe3\xe3\xf2\xf9\xe7\x9f\xff\xd8\xe5\xaa\x55\xa2\x37\x1c\x88\x08\x8f\x3d\xf6\x18\xfa\xfb\xfb\x55\x02\x85\x0f\x5c\x6f\xfa\xf9\xc3\x13\xcd\xbf\x49\x96\xde\x53\x6b\xf8\x73\x9a\xca\xea\x59\xa2\x13\x9e\xe2\xd2\xf7\x76\x2c\xff\xc9\x92\x5f\x3f\x45\x44\x57\x80\x92\xd9\x7e\x6c\x6c\x4c\xbe\xfe\xfa\xeb\xc8\xe5\x72\xce\xc2\xd4\x2b\x60\xa3\xe7\x3b\x81\xb9\x23\xdd\xc1\xc7\xc5\x3c\xf1\xc4\x13\xa2\xab\xab\x4b\x45\xc9\x25\xb8\x7f\xd7\x9c\xff\x8b\x7d\x71\xcf\x31\x4f\x51\x84\x75\x95\x93\x53\xcd\x85\xb7\xcf\x77\xa4\xff\x7e\x36\xa8\x5f\x64\x70\x36\x97\xcb\x19\xdf\xfb\xde\xf7\xb0\xba\xba\xfa\xb1\xbb\xb0\xba\xba\x4d\x9d\x50\xe6\xc0\xcd\x9b\x37\xe3\x53\x9f\xfa\x94\x00\x10\xd8\x94\x76\xed\xfd\xc9\xf7\x5a\xbf\xe9\x92\x14\xaa\x32\x12\x96\x9d\x5e\xb8\x26\x99\xea\xb8\xb4\xdb\x4c\x7c\x77\xe7\xd2\xff\xb3\x14\x28\x9e\x42\xc9\x68\xb6\xc4\xcc\xd9\x8b\x17\x2f\xca\x53\xa7\x4e\xd5\x53\xec\xec\x02\x35\x0a\x3f\x72\x98\xcf\x7e\xf6\xb3\xa2\xa7\xa7\x47\x05\x23\xb0\x7b\x26\xf0\xb9\xc3\x13\xcd\xff\xc5\x6d\x50\x77\xad\x7b\x88\x21\x38\xfe\x41\x67\xfa\x2b\x67\x62\xab\x7f\x2a\x05\x12\x35\x7a\xd6\x4d\xd3\xa3\x38\x80\x04\xc7\x14\x65\x83\x7f\x00\x20\x55\x55\xf1\x99\xcf\x7c\x06\x6e\xb7\xdb\xad\x98\xe8\x38\x71\x31\xf2\x5b\xe1\xbc\x6b\xbb\xed\x98\x50\xf1\xa9\xab\xf5\xb8\xb3\xfd\xee\x2a\x98\xac\x4b\x26\xbf\xb7\x63\xf9\x8f\x16\x03\xc5\x97\x41\xb8\x0c\x60\x81\x99\x73\x67\xce\x9c\x91\xef\xbc\xf3\x4e\x2d\x2d\xbc\x01\x1a\xef\x26\xa6\x76\x7a\xf7\x9e\x60\x76\xee\xdc\x49\x3b\x77\xee\x14\x00\x9a\x86\x17\x7c\x27\x8f\x5f\x6e\xf9\x43\x4d\x8a\x08\xc1\x5e\x94\x5d\xba\x12\x08\x0a\x93\xb7\x23\xa9\x3d\x4a\x40\x62\x2a\x54\xb8\xa0\xb9\x35\x3d\x18\x0c\xf2\xc4\xc4\xc4\x2d\xd1\x63\x4b\x14\x9b\xcb\xe4\x46\xfe\x0f\x1e\x3c\x88\xa6\xa6\x26\x15\x40\x60\xc7\x5c\xe0\xc9\xae\x55\xf7\x23\xa5\x9f\x3b\x16\xd4\xad\x5d\xaa\x8b\x5a\x4c\x51\x91\xf9\xe7\xb7\xc6\xff\x6a\xbe\x49\x7f\x15\x84\x2b\x28\x31\x4f\xfe\x8d\x37\xde\x90\x17\x2e\x5c\xa8\x47\x57\x23\x1a\x7f\x64\x31\x44\x84\x3d\x7b\xf6\x00\x80\xe6\xd5\x45\xf7\xe1\xf1\xe6\xdf\xb0\x57\xb1\xd8\x93\x42\x65\x87\x29\x2b\x10\x48\xec\x99\x6e\xfa\xd5\x68\xc6\xb5\x1d\x80\x67\x60\x60\x40\x34\x35\x35\xdd\x12\x3d\x02\x25\x26\x72\xf6\x79\xc2\x71\x5d\xf3\x1f\x89\x44\xc4\xd6\xad\x5b\xc1\xcc\x1e\x7f\x41\xe9\xfd\xc4\xf5\xe0\xaf\x08\x90\x5a\xf2\x7d\xb4\x74\x1b\xc7\x30\xdd\x19\x9c\x18\x49\x2c\x4f\x0d\x24\xbe\x63\x8d\xb6\xae\xa0\xd4\x6d\xe5\xcf\x9c\x39\x23\xcf\x9f\x3f\x2f\x51\x4d\xd7\xbd\xbe\xaf\xad\xa7\xfb\x06\xd3\xd5\xd5\x65\xef\x4a\xe2\x8b\xc5\x3d\xc7\x9a\x0a\xca\x10\x97\xcd\xb0\xd6\x95\xac\xba\xe7\xd2\x1b\x06\xc3\x65\x52\x78\x68\xc1\xf7\x14\x33\x07\x84\x10\xa2\xaf\xaf\xef\x96\xe8\x71\x4a\x20\x27\x87\x01\xf5\x39\x50\x1e\x38\x70\xa0\x64\x49\x05\x05\xf7\x4f\x36\xfd\x9c\x4f\x17\xbd\x65\x36\x61\xae\x0c\xd3\xd9\xa1\x28\xb3\x63\x15\x84\x55\x88\x73\xed\x99\xd3\xe7\x3b\x32\xdf\x65\xf0\x25\x00\x0b\x52\xca\xac\x43\xf2\x38\xf3\xbf\x1f\xee\x1b\x7d\x85\x8d\xfe\xef\x1a\xa6\xa3\xa3\xc3\xde\x07\xc9\xd7\x9a\xd2\xf6\x10\x43\xa0\xdc\x06\x95\xb6\xb0\x57\xc3\x12\xac\x7b\x06\xba\x92\xee\xfd\x00\x02\x44\xa4\xc6\x62\xb1\x5b\xa2\xa7\x11\x67\xa1\x4e\xbc\x68\x6d\x6d\x15\xdd\xdd\xdd\x82\x99\x3d\x91\xac\x6b\x78\xfb\x9c\xff\x67\xc8\x22\x8e\x18\x95\xee\xcb\xa2\x9e\xca\x0a\x74\x05\x03\x10\xe6\x9a\xf4\xb1\xd7\x07\x12\xff\x83\x09\x97\x88\x68\x8e\x99\xb3\x63\x63\x63\xf2\xfc\xf9\xf3\xa8\x93\xbf\xf3\xb9\x5e\xdc\xdd\xc0\x34\xfa\xcd\x3d\xc7\x74\x76\x76\x02\x96\xbb\xad\x66\x8a\x90\xad\x7b\x56\x06\x30\x80\xcd\x49\xc4\x56\xbc\x85\xf1\x14\x45\x14\xa5\xb9\x39\x21\x84\xb8\x61\x5e\xf5\xe2\x9c\x3e\xd1\xb2\x06\xb4\x26\xfe\xc1\x07\x1f\x14\x44\xa4\x12\x28\xb8\x6f\xb2\xe9\xe7\x34\x93\xc2\x65\x75\xd3\xf2\xac\x23\xdb\xc5\xd4\xf6\xee\xab\xda\x66\x85\x51\x70\x71\xf6\xc5\xa1\x95\x3f\xd7\x15\x39\x02\xd0\x0c\x33\xa7\x27\x27\x27\x8d\x97\x5e\x7a\xe9\x46\xf9\xd7\xbe\xbf\x9b\x18\xb9\x0e\xf6\x5e\x63\x00\x94\xea\x3b\xe5\x36\x12\x4e\xb5\xbf\xac\x40\x3b\x57\xab\x38\x42\x46\x33\x93\x96\xb7\xa5\x93\x41\x6e\x8a\x9e\x0d\x7f\x8d\x91\x48\x44\xf4\xf7\xf7\x0b\x22\xf2\x44\xb2\xea\xd0\xe0\xa2\xf7\x49\x62\x07\x61\x35\x44\xb2\xa3\xff\xb5\xe3\x99\x80\xb7\x7a\x57\xff\x71\xc9\x5f\x7c\x07\xa5\xe9\x89\x64\x2a\x95\x32\x9e\x7d\xf6\x59\xe9\xcc\xab\x86\x8e\x7a\xd7\xfb\x05\x53\x4f\x3f\xb8\xab\x98\x44\x22\x01\x66\x96\xcc\x6c\x4c\xb6\x14\x2e\x98\xc4\x06\x60\xd5\x7f\x59\x8d\xb0\x35\x22\x94\xaf\x0c\xc6\x58\x24\xf7\x3e\x33\x1b\xd6\x8e\x69\x70\xa4\xbb\x61\x7a\xea\x11\x58\xef\x19\x07\x0f\x1e\x04\x4a\x7b\xf3\x04\xf7\x4c\x35\x7d\xa9\x64\xf3\xa9\x30\x8a\x4d\x54\x25\x54\xd8\xdd\xc6\x4c\x37\x17\x2e\x9d\xeb\xcc\x7c\x0f\x84\x31\x00\x71\xd3\x34\xf5\xd7\x5f\x7f\xdd\x99\x9f\xb3\x10\x58\xe7\xf9\x5e\x63\x80\xb5\x5f\xea\x3d\xc1\xac\xac\xac\x80\x88\x24\x11\x65\x67\x82\x85\x91\x6b\x2d\xf9\xf7\xcb\xed\x40\x76\xcd\x57\x66\x01\xec\x16\x4a\x78\x8d\x99\x8b\x6d\xd9\x53\x44\x94\xb6\x76\x4e\xbb\x25\x7a\x04\xaa\xc5\x52\x43\xc5\xad\xab\xab\x0b\x00\x3c\x4d\x05\xa5\x7f\x70\xd1\x77\x12\x28\xeb\xc9\x40\x99\x85\x9c\x8c\xc4\x55\xca\xb3\x49\x6c\x9c\x1a\x58\xfd\x1b\xcb\x9f\x67\x09\x40\xfe\xdc\xb9\x73\x72\x72\x72\x72\x3d\x45\xad\x96\x96\xda\x42\xdc\x2b\x0c\x1a\xdc\xdf\x75\xcc\x87\x1f\x7e\x28\xa5\x94\x06\x80\xac\x14\x98\x7b\x79\xcb\xca\x5f\xae\x78\x0d\xc7\x4c\x73\x85\x6d\xec\x76\x29\xa8\x32\xfb\xc2\xd0\xca\xd7\xf2\x2e\x39\x06\x20\xcd\xcc\xc6\x8b\x2f\xbe\x78\x4b\xf4\xd4\x93\x3a\xce\x7b\x01\x40\x1c\x3e\x7c\x58\x08\x21\x54\x00\x81\x9d\xb3\xfe\xa7\xdc\xa6\x88\xda\x26\xc1\xf5\x8c\x84\xce\xa5\xc2\xa3\xed\x99\xd3\xf3\x41\xfd\x87\x28\x4d\x8e\xa6\x97\x97\x97\x8d\xf7\xdf\x7f\x1f\xa8\x2f\x79\x6a\xc5\xe8\x7a\x8a\xdc\xbd\xc4\xd4\xd2\x7e\x4f\x30\x13\x13\x13\x40\x69\xf1\xc0\x5c\xca\x63\x9e\xfd\xf6\xee\xc5\xaf\x5c\xda\x94\x3b\x6b\x08\x36\xca\x83\x18\x30\x24\x41\x4e\x35\x17\xae\x7c\x7b\xd7\xc2\xef\x4d\x87\x0a\x2f\xa3\xd2\x16\xf2\x56\xe9\x71\x2a\xd1\x4e\x69\x54\x15\x62\xb1\x98\x00\xa0\x69\x06\x45\x87\x17\xfc\x9f\xa3\x7a\x20\x00\x6b\x0c\x89\x96\x5e\x94\x73\xc9\xe4\x0f\x7b\x92\xdf\x45\xc9\x93\x30\x29\xa5\x34\x4e\x9d\x3a\x85\x62\xb1\x08\x34\xfe\xca\x9c\x05\xb8\x5f\x31\x8d\xea\xec\xae\x62\x5e\x78\xe1\x05\xf9\xa5\x2f\x7d\xc9\xf0\x7a\xbd\x49\x00\x13\x29\x8f\x89\x67\xb7\x2d\x2f\x84\xb3\xae\x1d\x1d\xab\xda\x60\x40\x57\x42\x79\x55\x66\xe7\x9b\xf4\xb1\xf9\x26\xfd\x9c\x14\x18\x43\xc9\xdf\x28\x2e\xa5\x74\x3a\xe9\xdf\x34\x3d\xf6\x51\x07\xf5\x40\x02\x28\xf9\xf6\xfa\x7c\x3e\x01\xc0\xd7\xbb\xe2\x39\xd8\x94\x57\x06\x1a\xaf\x9a\xb0\x5d\x33\x50\x36\x24\x12\x11\x46\xda\x33\xa7\x93\x1e\x73\x84\x99\x97\x88\x28\x7b\xe9\xd2\x25\xe9\xf0\x59\x6e\xd4\xc7\xd6\x93\x4c\xb2\xc1\xfd\x9d\xc6\xd4\x86\xf5\xf4\xb5\x7b\x82\xf9\xfe\xf7\xbf\x8f\x27\x9e\x78\x22\xef\x76\xbb\x97\x00\xe8\x0c\xc4\x97\x7c\xfa\xc4\x92\x4f\x0f\x12\x91\x66\x2d\x6b\x4a\x32\x73\x1c\x8c\x25\x94\x56\xaf\xe8\xa7\x4f\x9f\x6e\xd4\x16\x1b\xa2\xa7\xde\xd2\xe6\xaa\xfe\x6e\xfb\xf6\xed\x02\x25\xe5\x39\xb0\x6d\xde\xff\x94\x00\xa9\x65\xf7\x0c\x2e\xa9\x67\xec\x70\xf6\xa9\xf8\xf7\x94\xba\xb3\xbc\x6a\xa6\xdf\xef\x4c\x3f\xcd\xe0\x19\x00\xc9\x62\xb1\x68\xbc\xf6\xda\x6b\x37\x94\x7a\x68\xfc\x35\xd4\xbb\xbf\x1b\x18\x34\xc0\xd4\x0b\x77\x1d\xb3\xbc\xbc\x8c\xa7\x9f\x7e\x5a\x9c\x38\x71\x42\xf7\xfb\xfd\x09\x6b\xa1\xc1\x02\x11\x69\x28\x2d\x82\x94\xcc\xac\x13\x51\x9e\x99\xf3\xf9\x7c\xde\x78\xf3\xcd\x37\x71\xf9\xf2\xe5\x8d\xb4\x45\x43\x7a\x9c\x87\xad\x38\xbf\xbc\x32\xb8\xad\xad\x0d\x00\x3c\x7e\x5d\x74\x76\x27\xdc\x87\x9d\x63\xf3\x92\x9d\xb0\x62\xfb\xb1\xb5\xfd\xb2\x18\x22\xc2\xa5\x4d\xb9\x37\xd3\x6e\xf3\x12\x4a\x8a\xb3\x7e\xe1\xc2\x85\x5a\x42\x6a\xbf\xf8\x46\x05\xaa\xa5\xef\x6e\x62\x1a\xfd\xe6\xbe\xc2\x2c\x2f\x2f\xe3\xeb\x5f\xff\xba\x7c\xf8\xe1\x87\x8d\xbe\xbe\x3e\xc3\xe7\xf3\xe5\x1d\x58\x00\x90\x86\x61\xc8\x4b\x97\x2e\xe1\xf4\xe9\xd3\x4e\xbd\xe7\x96\xe9\x59\xd7\x90\xb8\x73\xe7\x4e\x5b\x79\xf6\xf4\xae\x78\x0e\x56\x0c\x87\x65\xb7\xc2\x2a\x23\x61\xad\x21\xb1\x28\xa4\x7e\xae\x33\xfd\x3c\x08\x73\x60\x64\x75\x5d\x37\xde\x7e\xfb\xed\x5a\x06\x71\x16\xa0\xde\xd7\xdf\x88\xbe\xbb\x89\x59\x8f\xae\xfb\x0e\x73\xfa\xf4\x69\x69\xe9\x35\x32\x16\x8b\x89\xae\xae\x2e\x4c\x4f\x4f\x43\x4a\x89\x6b\xd7\xae\xdd\x48\x0a\xdf\x54\x5e\xeb\x1e\xf7\xd4\xd9\xd9\x59\x5a\x17\xce\x08\x0c\x2e\xf9\x3e\x55\xb6\x2a\x97\xbb\x2c\x38\x26\xf6\xd7\x1a\x12\xe7\x82\xfa\xa5\x25\x7f\x71\x04\xd6\x2a\x8a\x91\x91\x91\xda\x3c\xd6\xe3\xfe\x5a\x4c\x3d\x49\x79\xaf\x31\xce\x70\x57\x31\x03\x03\x03\xc2\xea\x1d\x00\x00\x85\x42\x01\xe3\xe3\xe3\x58\x59\x59\xa9\x4a\x67\x7c\x7c\x5c\x8e\x8f\x8f\x3b\xd3\x11\x00\x10\x08\x04\xb0\x6d\xdb\x36\x74\x74\x74\xc0\xe3\xf1\x94\xd3\x49\x24\x12\x18\x1f\x1f\xc7\xf8\xf8\xb8\xbd\xd2\x65\x5d\x7a\xec\xcd\x15\xd6\x28\xd2\x8a\xa2\xa0\xa7\xa7\x07\x00\x34\x8f\x21\x5a\xdb\x93\xda\x5e\x7b\x56\x17\xa8\x28\xd0\x8d\xbc\x0d\x01\xe0\x42\x5b\xe6\x35\xa6\x92\x5b\x2a\x11\xd9\xeb\xb9\xeb\x29\xed\xb5\xe1\x7e\xc7\x00\x6b\x1b\xf6\x8e\x63\x3c\x1e\x0f\x8e\x1e\x3d\x0a\x6b\x46\xa0\x76\x00\x24\xf7\xed\xdb\x27\x13\x89\x84\x7c\xf3\xcd\x37\x31\x39\x39\x59\x37\x1d\x9f\xcf\x27\xf6\xee\xdd\x8b\x6d\xdb\xb6\x09\x00\x4e\x5f\x6c\x00\x90\xa1\x50\xc8\xe8\xeb\xeb\x33\x0e\x1d\x3a\x24\x2d\x1d\x69\x5d\x9a\x55\x54\x73\x96\x5d\x00\x69\x9a\x26\x14\x45\x51\x01\x78\x5a\xd3\xae\x61\x6f\x51\x44\x9d\x06\xf1\x92\xae\xe3\x98\xac\xab\xba\x63\xe4\x55\x99\xbc\x16\xce\xbf\x85\xd2\xca\xd1\xfc\xcc\xcc\x8c\x4c\x24\x12\xeb\x89\x47\x3b\x6c\x44\x91\xad\x8d\xbf\x23\x18\x22\xb2\x5d\x52\xd6\x13\xfb\xf5\x74\x84\xdb\x8e\x19\x18\x18\xc0\x43\x0f\x3d\x04\xbf\xdf\xaf\x82\xe1\xf1\xe9\x22\xd4\x9d\x70\xef\x0c\xe6\xd5\xf6\xbc\x2a\xd3\xf3\x4d\xfa\xc8\x52\xa0\x38\xd3\xd2\xd2\x92\x3f\x71\xe2\x84\x7e\xe9\xd2\x25\xe9\x18\xac\x94\xd3\x39\x79\xf2\x24\xc2\xe1\xb0\x0a\x86\xa7\x39\xa7\x76\x6e\x5b\xf0\x3d\xde\x9d\x70\x7f\xc2\x25\x45\x20\xa5\x19\x53\xe3\x91\xfc\xcb\x97\x36\x65\x4f\x93\xc7\x9b\xf8\xe4\x27\x3f\xa9\x77\x74\x74\xd4\x4d\xc7\xa6\xd9\xc9\xc5\x55\x5f\xc1\x91\x23\x47\x00\x6b\x96\xb7\x77\xc5\xf3\x09\x02\xa9\xc4\x28\x6d\xbf\x06\x67\xa8\x7e\xb2\x25\xd2\x54\xa8\x30\x92\x73\xc9\x29\x94\x56\x8f\x1a\xe7\xce\x9d\xab\xcd\xc3\x19\x6a\x15\xb6\x1b\xe1\x6e\x1b\xa6\xa5\xa5\x45\xf4\xf6\xf6\xa2\xb3\xb3\x13\x5e\xaf\x17\xd1\x68\xb4\x0c\x5a\x5d\x5d\x85\x75\x16\x98\x98\x9d\x9d\xc5\xf4\xf4\x34\x0a\x85\x42\x83\x24\x1b\xe6\xf5\xb1\x31\x5b\xb6\x6c\xc1\x23\x8f\x3c\x22\x88\x48\xf3\x14\x45\xeb\x27\xae\x05\x7f\x76\xc7\x9c\xff\xdf\xba\x4c\xea\x84\x75\xd2\x10\x13\xb2\x33\xc1\xc2\xf7\x4f\x0d\xac\x7e\x65\x3e\xa8\x8f\x0c\x0f\x0f\x67\x85\x10\x78\xf5\xd5\x57\xc1\xcc\xf0\x7a\xbd\x78\xe2\x89\x27\x10\x0e\x87\x35\x21\x11\xdc\x3f\x19\xfc\xa9\xfd\x93\x4d\xbf\xe6\x32\x45\xa7\xbd\x82\xa6\x0d\x2e\x6c\x5e\xf6\xfe\xc2\xde\xa9\xa6\xd3\xcf\x6f\x8d\xff\xfa\x5c\x50\x3f\x3f\x3c\x3c\x9c\xcd\x66\xb3\xb0\xbc\x43\xd7\x04\xe7\x1e\x89\x84\x52\xc5\x32\x00\x3e\x70\xe0\x00\xf9\x7c\x3e\x17\x80\xd6\x43\x13\xcd\xbf\x10\x2c\x28\xdd\x6b\x99\xa7\x36\x94\x07\xf1\x78\xa7\x27\xf5\x9d\xa5\xa6\xe2\x19\x00\x8b\xf9\x7c\xbe\x60\x71\x31\xd7\xfc\xdb\x79\x56\x12\x68\x8c\xe1\xdb\x89\x19\x1a\x1a\xa2\x47\x1f\x7d\x14\x7b\xf7\xee\x15\x3d\x3d\x3d\x4a\x73\x73\xb3\xea\xf5\x7a\xdd\x04\xb8\x51\x5a\xcd\xa0\x79\x3c\x1e\xb5\xa9\xa9\x49\x69\x6d\x6d\x15\x03\x03\x03\x3c\x3c\x3c\xcc\x3e\x9f\x0f\x53\x53\x53\xb2\x4e\x9a\x8d\xf2\xfa\x58\x98\xe6\xe6\x66\x3c\xf6\xd8\x63\x70\xb9\x5c\x6e\xaf\x2e\xba\x7f\xec\x7c\xf4\xf7\x07\x97\xbc\xff\x56\x61\x11\x24\x10\xc1\xb2\xb5\x11\xc8\xd5\x54\x50\xb7\x6f\x59\xf2\x3d\xbe\x10\xd0\xcf\xae\x7a\xcc\xc5\x48\x34\x52\x34\x0c\x83\xe7\xe7\xe7\x71\xec\xd8\x31\x58\x0e\xf7\xcd\x87\xae\x35\xff\xfc\x27\xae\x05\x7f\x4b\x65\xd1\x0c\x58\xd6\xbb\x4a\x3a\xe4\x2d\x2a\x7d\x9b\x97\xbd\x8f\x8e\x87\x73\xaf\xe6\x34\xb9\xda\xd6\xd6\x66\x5c\xbf\x7e\x9d\xb3\xd9\x2c\x6a\x69\x6e\x68\x48\x6c\x6e\x6e\x06\x33\x6b\x6e\x53\x84\x22\x19\xd7\x50\x85\x35\x2a\xa1\x91\x21\xd1\x10\x9c\x9f\x6e\x2e\x7c\xc0\xcc\x49\x22\xd2\xa7\xa6\xa6\xec\x74\xeb\x85\x9b\xd1\x0b\xea\x29\xb6\x37\x85\xe9\xe8\xe8\xc0\xb1\x63\xc7\x10\x0c\x06\x05\x00\x8d\x00\x8f\x3b\x65\xb6\x07\x56\xcc\x07\x7d\xab\x72\x87\x5a\x90\xdd\xc2\x84\x8f\x05\x74\x53\xa5\x78\xbe\x49\x7c\x94\x09\x29\xef\x67\x42\xca\x15\xb7\xdb\x9d\xde\xb5\x6b\x97\xbe\x7d\xfb\x76\xe3\xec\xd9\xb3\xb8\x70\xe1\x02\x74\x5d\xdf\x48\xb9\x6e\x19\xb3\x6f\xdf\x3e\x78\x3c\x1e\x8d\x18\xe1\x4f\x5e\x0d\xfd\x5a\x7b\x4a\x7b\xdc\x1e\xfa\xb2\x35\x0a\xb6\x9d\xf6\x40\x80\xdb\xa0\xee\x4f\x5f\x0a\xff\xee\xdf\x3e\xb8\xf0\xd3\x29\xb7\x71\x65\xdf\xbe\x7d\x59\x21\x04\x06\x06\x06\x04\x00\x5f\x67\x52\xdb\xbf\x6f\xaa\xe9\xd7\x08\x50\x2b\x33\x64\x6b\xd3\xf1\x16\xc5\xc0\x23\x57\x5a\xfe\x8f\xef\xec\x5a\xfc\x65\x26\xd2\x8f\x1e\x3d\xaa\x7f\xfb\xdb\xdf\x5e\x43\x73\x43\x43\xa2\xcb\xe5\x12\xcc\xac\x45\x32\xae\x7e\xcd\xa4\x50\xd9\x48\x68\xbb\xba\xad\x63\x48\x8c\xfb\x8c\xa9\x94\xdb\xbc\x8e\xd2\x76\x2b\x72\x7c\x7c\x1c\x75\xf2\xb1\x89\xb9\x91\x6e\xb2\x9e\x4e\xb4\x61\x8c\x10\x42\x7c\xe2\x13\x9f\x80\xb5\x5b\x9a\x46\x8c\x40\xf3\x82\x71\x70\xd3\x44\xf1\x7f\xf2\xad\x9a\x8f\x90\x44\x08\x80\x70\xce\x5b\x33\x00\xcc\x11\x00\xe4\x75\x2f\x9d\x8f\x77\xb9\xfe\x7a\xb9\xd7\xf5\x1d\x68\x62\x61\xff\xfe\xfd\x7a\x2c\x16\x33\xac\x33\x2d\x6e\xa6\x5c\x1b\xc6\x04\x83\x41\x11\x8b\xc5\x04\x33\x7b\xda\x53\xee\xdd\x83\x8b\xbe\x7f\x61\x59\x4b\x2a\x3b\xfc\x59\x5b\x05\x33\x55\x24\x49\xa0\xa0\x0c\xef\x9a\x0d\xfc\xf4\x99\xfe\xc4\xef\xa8\xaa\xaa\x1f\x38\x70\xc0\x40\x69\x7d\x58\x70\xf7\x4c\xe0\x5f\x29\x12\xc1\x8d\xa4\xd3\xb5\xea\x3e\xde\x9a\xd6\x76\xce\x36\x15\x12\xe1\x70\xd8\x08\x06\x83\x32\x99\x4c\x56\xd1\x5c\x1e\xd6\x39\xef\x77\xed\xda\x65\x1f\x15\xa9\x45\x33\xae\x41\x62\x12\x64\x33\x0f\x5b\xb9\x94\xa7\xba\xd6\x7a\x24\xce\x35\x15\x2e\xb1\x40\xd2\xb2\x7a\xca\xf1\xf1\x71\xe7\x10\xd2\x99\x67\x3d\x1a\x50\xe7\xbe\x16\x77\xd3\x98\x47\x1e\x79\x04\xbb\x76\xed\x12\x44\xe4\xf3\x64\xe4\xd0\xc0\xbb\xb9\xdf\xed\x7f\x2f\xff\xcd\xc0\x8a\xf1\xe3\x42\x72\x98\x00\x61\x7b\x4c\xda\xa1\xb2\x77\x33\x3c\xee\x1c\xef\x6f\xbf\xa2\x7f\x65\xe8\x4c\xf6\xbb\x2d\x33\xc6\x49\x02\x82\x91\x48\x44\xfb\xf2\x97\xbf\xbc\xa6\xfe\xd6\xa1\xe7\xa6\x30\x7d\x7d\x7d\x50\x14\x45\x00\xf0\xf5\xc7\x3d\x8f\x2a\xd2\x5a\x2e\x7e\x23\x6f\x43\x10\x06\x97\xbc\x9f\x21\x50\x10\x15\x53\x8d\x2a\x40\xc1\xce\x55\xf7\x7e\xe2\x8d\x79\x2d\x0a\x26\x5f\xe7\xaa\xfb\x00\x00\x8f\xa2\x28\xb6\xdf\x74\x15\x8d\xce\xaf\x40\xda\xf7\x9b\x36\x6d\xb2\xf7\x05\xf4\x44\x33\xae\x2d\x76\xe2\x95\xfa\x65\x54\x2c\x86\x76\x9a\x96\x71\x91\x18\x73\x41\xfd\x22\x80\x24\x33\x1b\xd6\xae\xea\xce\xf4\xed\xff\xda\xbc\x9d\xd7\x7a\x71\x12\x0d\xa4\xe5\x8d\x30\xc7\x8f\x1f\x17\x83\x83\x83\x2a\x98\x83\xcd\x8b\xe6\xb1\xc1\xb7\x72\xdf\x6c\x5a\x32\x7f\x8a\x18\x9a\xd3\x04\x51\x2e\x9b\xa3\x48\x76\xb4\x2d\x6d\xb5\x3c\xef\xec\x3d\x97\xff\xf3\xae\x91\xc2\xaf\x0a\x89\xa8\xa6\x69\x9e\x2f\x7f\xf9\xcb\xa2\xbd\xbd\x7d\x23\xf4\xc8\x9b\xc1\x74\x74\x74\x00\xa5\xa1\xb6\xaf\x39\xaf\x0e\x96\xdb\xba\xec\x6d\x88\x6a\x6f\xc3\xb2\x4d\x0e\xf0\xeb\x4a\xb7\x5a\xf2\xd9\xb2\x87\xe8\xaa\xcb\xa4\xa0\xcb\xa4\x10\x36\x98\x0e\x01\xf0\x14\x45\x3b\x11\x79\x00\x08\x4d\x2b\x6f\xaa\x56\xa6\xb1\xee\x17\x61\x1d\x85\xad\x82\xe1\x69\xc9\xba\xfa\x6d\x2e\x2d\x4f\x59\x90\x95\x83\xd3\x28\x64\x61\x24\xc1\x58\xf2\x17\xaf\x32\x73\x9e\x88\x0c\xc7\x26\x08\xb5\x92\xa6\x96\x89\xea\x61\x1a\x5d\x37\x8c\x39\x72\xe4\x88\x18\x1c\x1c\x14\xcc\x1c\x68\x5a\x32\x1f\xee\xfb\x20\xf7\xff\xba\x0a\x3c\x50\xb6\x7d\x3a\x96\xbc\x94\x74\x00\xbb\x3b\xa6\xaa\x06\xb1\x15\x40\x06\x40\xcc\x9e\xe8\xf5\xe2\x7f\xec\x1a\x2d\xfc\x2a\x49\x0e\x6b\x9a\xa6\x7d\xf2\x93\x9f\x84\xdb\xed\x6e\x44\xc7\x8d\x68\xae\x8b\xf1\x7a\xbd\x60\x66\xc1\xcc\x2a\x97\x75\x96\x52\xe7\xba\x9e\xb7\x21\x00\x18\x42\xea\x92\x58\xb5\x7e\x2f\x98\x19\x45\xa5\xe4\x0b\xb4\xd1\x74\x18\x40\xd2\x63\xc4\xed\xdf\x3b\x56\xd9\x94\xe9\xad\x6b\x48\x0c\x04\x02\x60\x66\xe1\x92\xc2\xd7\x54\x50\x5a\xed\xa4\x89\xea\x6d\x82\x59\x6d\x48\x2c\xa8\x32\x99\x76\x9b\x73\xd6\x36\xba\xd2\xb2\x8c\xde\xa8\x6b\xaa\x0d\xb7\x05\xd3\xdd\xdd\x2d\xec\x7d\x1a\xbd\x69\xb9\xbd\xef\xc3\xfc\x7f\x57\x0c\xb4\x56\x0e\xf5\x72\x92\x5e\xcb\x30\x0e\xc6\x2a\xef\x22\x52\x61\x2e\x22\x16\x91\xc9\xe2\x2f\xe9\x5e\x9a\x9f\x1f\xd0\xfe\x34\x18\x0c\x26\x8e\x1c\x39\x62\xbc\xf4\xd2\x4b\x4e\x12\xd6\x28\xf1\x2d\x2d\x2d\xe8\xe9\xe9\x11\x96\x83\x9e\x00\x50\xde\xec\xf3\xca\x95\x2b\xc8\xe7\xf3\x55\xe5\xb0\x24\x83\x5c\x08\xe8\x13\xdb\xe6\x7d\x15\xf9\x48\x95\xed\xd4\x2b\x5a\x9b\x45\x1e\x18\x71\x9f\x31\x23\x05\x0c\xab\x13\x96\x00\x24\x03\xf9\xeb\x2d\x85\xf3\xbb\x66\x5d\xfd\xd5\x5e\x8b\xf5\xd3\x31\x85\xcc\xcf\x05\xf5\x71\x22\xaa\xdd\x3f\xbb\xb1\x21\xb1\xa9\xa9\x49\xa8\xaa\x2a\x88\x48\xa8\x92\x02\x6e\x43\x84\xab\x8c\x87\x37\x30\x24\x66\x34\x33\x5e\x50\x65\x02\xa5\xad\x74\x9d\xcb\x74\xea\x85\x3b\x66\x48\x54\x55\x15\x07\x0e\x1c\x00\x00\x8d\x24\x47\xbb\x46\x0b\xbf\xa6\xe8\xdc\x5b\x91\x38\x35\x9f\x02\xd9\x3d\x98\x33\xde\x39\xb6\x04\x4a\xdb\x0e\xdb\xa2\x88\x40\x80\xda\x76\x55\xff\xb5\xd4\x26\xf5\xed\x5c\x50\x39\x1b\x8b\xc5\xd2\x9d\x9d\x9d\x98\x99\x99\x59\x53\xd9\xc1\x60\x10\x0f\x3f\xfc\x30\xda\xdb\xdb\x85\xaa\xaa\x02\x35\x5b\x2c\xc7\x62\x31\xb9\x7f\xff\x7e\x63\x74\x74\x14\x6f\xbd\xf5\x96\x04\x80\xd9\xd9\x59\xb4\xb5\xb5\x49\x00\xfa\x78\x24\xf7\xde\xa1\x6b\xcd\x69\xb7\x51\x3a\xda\xd3\xa6\xac\x3c\xa0\x41\xf5\xc6\x5c\xe3\xe1\xdc\xfb\x28\x39\x99\xd9\x3b\x6f\x19\x00\xd2\xe7\x3a\xd2\x2f\x0e\x2f\xf8\x1e\x73\x99\xe4\xb9\x51\x3a\x93\xa1\xc2\xf9\xb8\xaf\x38\x66\xa5\x23\xcf\x9e\x3d\xbb\xa6\x5c\x6b\x94\x68\xaf\xd7\x0b\x45\x51\x00\x40\xf5\xe9\x22\xa4\x99\xc2\x57\xf6\x37\x74\x28\x69\x8d\x3c\x12\x53\x6e\x73\x41\x96\x76\x80\x71\x33\x5a\xe4\x00\x00\x20\x00\x49\x44\x41\x54\x37\x8a\xc5\x62\xbd\xee\xa9\xde\xbf\x13\xb3\x1e\x16\x35\xd8\x86\x98\x58\x2c\x86\x4d\x9b\x36\x09\x00\xbe\xe6\x39\xe3\x91\xc0\xb2\xf9\x78\x95\x19\xa2\x2c\x51\xac\x2a\x77\x74\xcf\xb5\x18\xe7\x66\x9f\xe5\x40\xa5\x5f\x2a\x26\x42\xed\x97\x0a\xbf\x02\xc9\x21\x45\x51\x54\xcb\x77\xbc\x8a\xa6\xfe\xfe\x7e\x7c\xfe\xf3\x9f\x47\x77\x77\xb7\xa6\x2a\x6a\x60\x53\xca\x35\xfc\x89\x6b\xc1\x9f\x3d\x71\x31\xfc\x9b\x8f\x7d\xd4\xf2\xeb\x0f\x4e\x05\x7e\xa2\x39\xa7\xf6\x6b\x9a\x16\x78\xe0\x81\x07\xd4\x9f\xf8\x89\x9f\x10\x6d\x6d\x6d\xc2\x92\xde\x06\x80\xf4\xaa\xc7\xbc\xf2\x5e\x57\xea\x59\x3b\xf3\x7a\xcb\x96\xed\x37\x71\x9f\x31\x35\xda\x9e\x7d\x19\xa5\x6d\x8e\x6d\xe9\x61\x00\x48\x2e\x06\x8a\xe7\xdf\xec\x4b\x7e\x87\x01\xb9\x5e\x3a\x69\xcd\x8c\xbf\xba\x39\xf1\x97\x52\x60\x01\x40\xbe\x58\x2c\x4a\x97\xcb\xb5\xa6\xae\xd7\x78\x24\x5a\xce\x45\x02\x80\xea\x36\x44\x50\x30\x34\xbb\xf6\x36\x62\x48\x4c\xbb\xcd\x25\x50\x69\xa7\x54\xcb\xe3\xd0\x0e\xb7\x2a\x6d\x6e\x09\x63\x75\x5d\x1a\x24\x87\xa2\xd7\x8a\x5f\x22\xeb\x8b\xaf\x98\x21\xe0\x10\x3e\xce\x6e\x78\x2d\xa6\xfc\x86\xaa\xaf\x36\xae\x69\xd9\x3c\xee\x4b\xca\x9d\xd9\x90\x92\x88\x44\x22\x46\x73\x73\xb3\xb4\x76\xbc\x40\x5f\x5f\x9f\x78\xec\xb1\xc7\x84\x10\x42\x73\x17\x45\xeb\x27\xaf\x86\x7e\x79\xcb\xa2\xf7\x67\x55\x49\xd1\xca\x2e\x25\x2c\x0f\x5d\xe3\xa9\xf7\xba\x52\x5f\x79\xa7\x37\xf9\x77\xe1\x70\x38\xf1\xd9\xcf\x7e\x56\x7f\xe5\x95\x57\xa0\xeb\xba\xd4\x34\x2d\x0b\xc2\xdc\x3b\xbd\xc9\xbf\x6f\x2a\x28\xed\xdb\xe7\xfc\x87\x09\xa5\x91\xb1\xd3\xf3\x93\xc1\x48\xba\xcd\xa5\x1f\x0c\x2f\xff\x51\x5e\x95\x63\xb0\x06\x32\x57\xae\x5c\x41\x2c\x16\x33\x54\x55\x4d\x83\x70\xfd\xbd\xee\xd4\xdf\x33\xb1\x7a\xf0\x5a\xf0\xa4\xc7\x28\x09\x08\x3b\x1d\x06\x63\xbe\x49\x9f\x78\x71\x68\xe5\x2f\x12\x3e\xe3\x7d\x58\xfe\xeb\x97\x2e\x5d\xaa\xf5\x20\x15\x00\xa4\xf3\xb8\x27\x00\xe0\x9d\x3b\x77\x8a\x9e\x9e\x1e\x05\x80\x3f\x92\x75\x3d\xb0\x6d\xde\x77\x12\xd6\x31\x32\x55\x5f\x70\x55\x95\x57\x44\xe1\x44\x24\xf7\xc6\x64\x73\xfe\x34\x11\xc5\x33\x99\x8c\x71\xe1\xc2\x05\xe7\xf8\xa0\xf6\x1f\x0d\xe2\xb9\x86\xae\x7a\xf1\x0d\x31\xc1\x60\x50\x1c\x3c\x78\x50\x10\x91\xd7\x93\x92\x0f\xb6\x5f\xd5\xff\x03\x31\x5c\x25\x05\x98\xac\x8a\xb2\xe4\x27\x3b\x86\x1c\xb0\x95\xe4\x6a\x8c\x33\x8b\x6a\xb1\x6f\xa7\x01\xcd\x74\x21\x9e\x8a\x28\x3f\xb4\x1c\xb9\xe4\xd4\xd4\x14\xb9\x5c\x2e\x7a\xe2\x89\x27\xe0\x72\xb9\xdc\x1e\x43\x74\x3e\x75\x21\xfa\x3b\x03\xcb\xde\x2f\x0b\x16\xbe\x32\xc9\xa5\xe1\x1d\xa9\x92\x9a\xbb\x57\xdd\x9f\xf6\xeb\x8a\x36\x1e\xce\xbf\x27\x14\xa1\x87\xc3\x61\xf3\xea\xd5\xab\x68\x6f\x6f\x97\xcc\x6c\x4a\x82\x71\x2d\x9c\x9f\x4c\xf8\x8c\x5c\x73\x5e\x8d\xba\x8b\xc2\x2b\x00\xc1\x28\xad\xf1\x1a\x6d\xcb\xfe\xf0\xc5\xad\x2b\x7f\x16\xf7\x15\xdf\x02\x30\x0e\x60\x75\x69\x69\xc9\x78\xe6\x99\x67\x60\x9a\x26\xba\xbb\xbb\x4d\x66\x2e\x32\x50\x98\x0b\x16\x67\xae\x6c\xca\x5e\xc9\x68\x32\x57\x50\x65\x21\xe5\x31\x93\x93\x2d\x85\x2b\x3f\xec\x4d\xbd\x78\x26\x96\xfc\x9b\x94\xdb\x78\xc7\x4a\x23\x6e\x18\x86\xfe\xf2\xcb\x2f\xdb\x27\x4a\x57\x55\xc8\x1a\x43\xe2\xf9\xf3\xe7\xe5\x43\x0f\x3d\x04\x22\x52\xbd\x45\x11\x84\xdd\x2d\x6c\xc4\x90\x08\x46\xce\x25\x93\x28\xe9\x3f\xf6\x99\x56\xeb\xe9\x40\xb5\x92\xc3\x19\x6e\xd9\x90\x68\x19\xbb\x54\x30\x7c\x81\x15\x73\x3f\x49\xf8\xec\x1e\x7e\xcd\x76\x33\x95\xe1\x58\xb9\xf7\xaf\xc5\x38\x8a\x5c\x11\xf2\xec\x30\x6d\x00\x68\x5a\x36\x0f\x11\x10\x04\x51\xbc\xbd\xbd\xdd\x00\x20\x0f\x1f\x3e\x2c\xbc\x5e\xaf\xca\xcc\xc1\x4f\x5c\x6f\xfe\xc5\xae\x55\xf7\xe7\x2a\x06\xbc\xb5\x86\x3b\x06\xd4\xed\x73\xfe\x5f\x9a\x69\x2e\x9c\x1b\x69\xcf\x7e\x27\x1c\x0e\x1b\x57\xaf\x5e\x95\x33\x33\x33\xb2\xb3\xb3\x33\xcd\xcc\x53\x26\xb1\x71\xb1\x35\x1b\xbf\xbc\x29\xfb\x7a\x53\x41\xed\xf1\xea\x22\x68\x28\xac\xaf\x7a\x8c\x59\x5d\xe1\x29\x06\x5f\x07\x30\x45\x44\x09\x29\xa5\x7e\xea\xd4\x29\x00\xa5\xd5\x1b\xd6\x9c\x5f\x96\x99\x67\x18\xac\xaf\x7a\xcd\x85\x77\x7a\x52\x1f\xa2\xb4\x6b\xac\x00\x90\xb7\xce\x14\x99\x03\x97\x36\x6d\x37\x4d\x33\xff\xdc\x73\xcf\x21\x95\x4a\xd5\x1b\x35\xaf\xf5\x48\xdc\xb7\x6f\x9f\x3d\x0b\x2d\x54\x93\xfc\xe5\xc5\x83\xf6\x57\xea\x30\xb6\xd5\x7a\x24\x32\x01\x05\x55\xa6\x1d\x47\x0a\xa0\x36\xfd\x06\x8d\x0f\x07\xa6\x11\xe3\x88\x9a\xdf\x35\xc4\x58\x1f\x80\x00\xb3\xc7\xbb\x6a\xee\xaa\x30\x80\xa3\x9b\xaa\x08\x5d\xfb\xa5\x35\xf0\x5a\x8b\x71\x46\x97\x31\x54\x99\x10\x02\x00\x2d\x2b\x07\x94\x22\x42\xa6\x06\x6d\xd3\xa6\x4d\x79\x00\xe8\xed\xed\x05\x33\x6b\xfe\xa2\xd2\xb9\x63\xd6\xff\x65\x62\xaa\x5e\x0a\x45\xb6\x04\xb4\x72\x23\x80\x18\xea\x9e\xa9\xa6\x5f\xfc\x68\x53\xee\xb4\xa9\x70\x7e\x68\x68\x28\xff\xcd\x6f\x7e\x13\x8f\x3f\xfe\xb8\xd1\xd9\xd9\x69\xeb\x34\x49\x03\x3c\x95\xf0\x1a\xc1\x84\xb7\xa4\x86\x58\x87\xc8\x24\x88\x28\x01\x94\x0e\xed\x7d\xf5\xd5\x57\xb1\xb4\xb4\x54\xae\xfb\x67\x9f\x7d\x16\x8f\x3e\xfa\xa8\x11\x8b\xc5\xd2\x28\x7d\xe4\x09\x06\x4f\x59\x6e\xaf\x02\x80\x01\x46\x9e\x99\xb3\x44\x94\x37\x0c\x43\x7f\xee\xb9\xe7\x30\x3d\x3d\x8d\x9a\x50\x6e\x8b\x35\x1e\x89\x8e\x93\x69\x84\x60\x2a\xeb\x3f\x95\x43\xdb\x50\xfe\xfa\xaa\x99\xaa\xc4\x45\x92\xb8\x60\x9d\x7a\x03\x67\xba\x58\x2b\x69\xea\xd9\x82\x6e\x64\x48\xac\x0d\x75\x31\xdd\xdd\xdd\xb6\x92\xe7\x71\xe5\xb9\x1d\x55\x52\xc5\xd1\x57\x01\x8e\xf8\xc6\x98\x8a\xc9\xdf\xa1\x6f\xd8\xcf\x16\x03\x08\x13\x01\x55\x97\x51\x53\x53\x54\x00\xe2\x8b\x5f\xfc\x22\xbc\x5e\xaf\x00\xe0\xeb\x4a\xb8\x0f\x6a\x26\x45\x4b\xd5\x65\x31\x6b\x83\xe5\xc6\x20\xa0\x25\xeb\xda\x19\xca\xa9\x03\xcb\x81\xe2\x42\x20\x10\xd0\x0d\xc3\x30\xfe\xf1\x1f\xff\x11\x8f\x3c\xf2\x88\x31\x34\x34\x94\x06\x90\x25\xa2\x38\x4a\x93\xbe\x02\x80\xb4\x86\xda\x06\x00\x23\x99\x4c\x1a\xaf\xbd\xf6\x9a\x73\x34\x28\x01\xc0\x30\x0c\xf9\xfc\xf3\xcf\x63\xf3\xe6\xcd\x78\xf0\xc1\x07\xf3\x91\x48\x44\x27\xa2\x24\x2a\x4a\xb1\x24\x22\x29\xa5\x34\xa6\xa6\xa6\xf0\xcc\x33\xcf\xdc\xc8\x70\xbb\xd6\x23\xd1\xb9\x6b\xaa\x60\x88\x8a\x88\x47\xc5\x34\xd2\xd0\x23\x91\x21\x09\xe5\xa3\x93\x6a\x32\xaf\x27\x69\xd6\x93\x32\xb5\x98\x5a\x49\xd6\x10\x63\x1f\xd3\x04\x40\x53\x4c\x0e\x94\x49\x2d\xaf\xd3\x77\x68\xc6\x8e\x9d\xf1\x1b\x62\x2a\xc5\xb3\xa2\x2b\x8c\x54\x56\xa8\x19\xaa\x30\x11\xb0\x3e\x40\x84\xc3\x61\xd8\xd3\x41\x81\x82\xd2\x57\x1e\x62\x33\x59\xa7\x54\x95\x3b\x4c\x38\xd9\x96\xc1\x50\x18\xbe\x80\x2e\x3a\x97\x98\x35\x21\x04\xac\x5d\x56\xf1\xca\x2b\xaf\xe0\xca\x95\x2b\x32\x16\x8b\xc9\x58\x2c\x66\xb8\xdd\xee\xbc\x83\x42\xb9\xbc\xbc\x8c\xd1\xd1\x51\x5c\xbe\x7c\x19\x86\x61\x34\xac\xbb\xab\x57\xaf\x62\x7c\x7c\x1c\x52\x4a\x63\xef\xde\xbd\x65\xcf\x46\xd3\x34\x31\x33\x33\x83\xeb\xd7\xaf\x23\x99\x4c\xa2\xc1\xef\xab\x7a\x93\x46\x1e\x89\xb6\xd5\x51\x54\x34\x81\x8d\x18\x12\xcb\x0d\xeb\x64\xc4\x1b\x19\xfc\xee\x88\x21\x91\x99\x05\x01\x82\x89\xe4\x7a\x46\xc2\x4a\x41\x1a\x63\x1a\x18\x12\x4b\x7a\x4c\xa5\x07\x92\x25\xdd\xbb\x6a\x6f\x6c\xc1\xcc\xaa\x14\x10\x1b\x31\xdc\x39\xac\xc1\xb2\xa8\x30\x6c\xaf\xc3\xe5\xe5\x65\xc3\x2e\xdf\xd4\xd4\x14\xa6\xa6\xa6\x60\xe9\x36\x46\x77\x77\xb7\xb0\xdc\x4b\x6a\xeb\xa0\x5e\x9d\x95\x1b\x5f\xca\xd2\x4c\xc4\xd9\xb3\x67\x9d\xf1\x37\x9d\x4e\xbd\xf3\xc2\x04\x50\x62\x00\x49\x65\x23\x94\xa5\xe8\xc1\x39\x60\x29\xc7\x3b\x47\x66\x82\x4b\x27\xea\xd5\x6c\x2e\x55\x4f\x72\xd4\xbe\xdb\x08\xa6\x51\x9a\x6b\x9e\xc9\xea\x77\x0c\x8d\xd2\x4e\x69\xc3\xd6\x3b\xe6\x0a\xae\x6a\xbf\xf3\x8d\x60\x6c\x25\x98\x2a\x76\x47\x16\x30\x4c\x17\x65\xed\xb2\x5b\x7a\xa4\x24\x22\x39\xdf\xa4\x8f\x33\x20\x05\x48\x54\xce\xc9\x5b\x2b\x81\xec\xfa\xcc\xb9\xcc\x44\xc2\x6b\xc4\xed\xdf\xf7\xf6\xf6\x8a\xeb\xd7\xaf\x57\xd5\x8f\xb5\x27\x10\x66\x67\x67\x6d\x1a\x85\x25\xf5\x1b\xd5\x21\xea\xd5\x73\x7b\x7b\xbb\x70\x4e\xc1\xac\xae\xae\xc2\xf2\x1c\xdd\x50\x3a\xf5\x4e\x2c\x2c\x37\xbe\x2c\x2f\x8d\xb5\x2a\xca\xa1\x23\x70\x59\x09\xe4\x2a\x8e\x52\x24\xdc\x76\x81\xea\xa5\xdd\x80\x18\xe7\x75\x3d\x3b\xcf\x7a\xa3\xb6\x7a\x4c\xa8\x17\xfc\x62\xa6\xdc\x48\xb6\x1d\xab\x8a\x61\xec\x06\x5d\x1f\xe3\x14\x58\x65\x89\xe1\xc0\x14\x35\x8a\x1b\x1a\xa5\x01\x18\x44\x04\x5d\xd7\xa1\x69\x9a\x64\x66\x7d\xbe\x49\x1f\x5b\x0c\x14\xaf\xb4\xa6\xb4\x21\xd4\x49\xd3\xb9\x03\x9d\xb5\x6b\xc6\x3b\x59\x97\x5c\x22\x22\x9d\x99\x91\xc9\x64\x9c\xe5\xc3\x23\x8f\x3c\x22\xda\xdb\xdb\x6d\x9f\x26\xc1\xcc\x48\xa5\x52\x98\x9b\x9b\x13\xaf\xbc\xf2\x4a\xa3\x41\x48\x55\x3d\x3d\xfc\xf0\xc3\x62\x68\x68\x48\x28\x8a\x22\xec\xb6\xb2\x75\xd7\x85\x85\x05\xbc\xf7\xde\x7b\xf6\x0a\x8e\x75\xd3\x29\x3b\x53\x3b\x1b\xc0\x9e\x7f\x29\x0a\xce\x95\x2a\xad\x62\x8d\xb5\x75\x04\xe7\x01\x2a\x0e\x83\x18\xdc\x86\x08\x60\x7d\x69\xb1\x11\x09\x54\x1b\x6e\xc4\x3c\x55\x98\x78\x3c\x2e\x42\xa1\x90\x04\x91\x9e\x69\x51\x46\x01\x48\xe6\xd2\xd1\x44\x25\xce\x80\xa5\xfc\x56\xee\xcb\x8a\x72\x3d\x4c\xb9\x8c\x76\xb7\x55\x1e\x8b\x97\x31\xd9\x66\x75\x8c\x45\xc9\x7d\x17\x80\xfc\xda\xd7\xbe\x26\x7f\xfe\xe7\x7f\x1e\x42\x88\x3c\x03\x4b\xa7\x06\x12\x7f\xf7\xb9\x0b\xd1\xff\xd5\x65\x0a\x0f\x6a\x42\xa5\xb7\x27\x24\xdd\xc6\xd2\xdb\xbd\xc9\x6f\x83\x4a\xeb\xe8\xb2\xd9\xac\x8c\xc7\xe3\xd0\x34\x0d\x47\x8f\x1e\x15\xfd\xfd\xfd\x42\x51\x14\x15\x0c\x55\x48\xa8\x82\x49\x95\x04\x19\x6c\x0a\xea\xc1\x60\xd0\x18\x1a\x1a\x32\xa6\xa7\xa7\xe5\xd3\x4f\x3f\x5d\xb7\xce\xb6\x6d\xdb\x86\x43\x87\x0e\x09\x97\xcb\xa5\x82\xe1\xf1\x16\x45\xa0\x39\xaf\x46\x35\x83\x3c\x49\x8f\x19\x4f\x7a\x8c\x78\xeb\xa6\xd6\xfc\x89\x13\x27\xf4\xe9\xe9\x69\x34\x4a\xc7\x0e\x6b\x74\x20\x87\x13\xb9\xcc\xb9\xcc\x34\xec\x2a\xa4\x8a\xdd\xc2\x2a\xab\xa5\x3b\x57\x86\xba\x00\xc1\x57\x54\x82\x96\xf2\xe8\xcc\xa7\x9e\x04\x5a\xef\x5a\xdb\x17\xd7\xfb\x7d\x43\xcc\xca\xca\x0a\xac\xa5\xbc\xd9\x4c\x48\x19\x29\xba\x29\xae\x15\x38\x5a\x56\x92\xcb\xe5\x70\x2e\x8a\x74\x48\xa2\x1a\x8c\x03\x51\xc6\x94\x7f\x60\xc5\xaf\xb6\xa9\x6f\x33\x90\x46\xc9\x85\x05\x44\x24\x26\x26\x26\x10\x8b\xc5\xf2\x00\x16\xa6\x42\x85\xd7\x5f\x18\x8a\xb7\x1e\xbf\xdc\xf2\xaf\xdd\x86\xe2\x2b\xdb\x90\xac\xa3\xac\x00\x60\xd5\x63\x2c\x3d\xbb\x2d\xfe\xc7\xab\x1e\xe3\x3c\x18\x09\x22\xd2\x47\x46\x46\xa0\xaa\x2a\x1e\x7f\xfc\x71\xb4\xb5\xb5\xa9\x04\xf2\xb5\xa6\x5c\xfd\xbb\x66\x03\x5f\xec\x58\xd5\x0e\xba\x4d\x11\xd6\x15\x4e\xce\x37\xe9\x67\x2f\xb4\x67\xbe\x39\xdd\x5c\xb8\xd8\xd9\xd9\x99\xfd\xd9\x9f\xfd\x59\xe3\xe9\xa7\x9f\xc6\xf2\xf2\x72\xb9\x7e\x86\x87\x87\xf1\xf0\xc3\x0f\x0b\x00\x1e\x7f\x41\x69\x3f\x78\x3d\xf8\xa5\x2d\x8b\xde\x7f\xe1\x29\x8a\x7e\x02\x54\x93\x90\x58\x0c\xe8\x67\xde\xe9\x4d\xfd\xc1\xd5\x48\xee\x9d\xce\xce\xce\x74\xbd\x74\x9c\x6d\xe1\xf4\x89\x66\x00\xe8\xe8\xe8\xa0\xce\xce\x4e\x01\xc0\xe7\x2d\x2a\x7d\xdb\xe7\xfd\x9f\x15\xd6\xe6\xe1\xf6\x87\x57\x9e\x33\xa9\xa3\x8b\xae\x7a\x8c\x6b\x63\xd1\xfc\xcb\x20\x24\x13\x89\x84\x61\x39\x93\x39\xf3\x20\xab\xf1\xb9\xc1\x3f\x35\xc0\xd1\x46\x31\xb3\xb3\xb3\xbc\x7f\xff\x7e\x02\x20\x58\xc0\xeb\x2a\x70\xbf\x2f\x21\x87\x2a\xfc\xc0\x96\x03\x1c\xec\x02\x39\x58\x64\x2d\xa6\xe4\x2b\xcc\x65\x1b\x50\x55\x3c\x33\x74\x9f\x98\x9b\x19\xf6\x7c\x8d\x55\xba\x4a\x44\xc9\xf1\xf1\x71\xf3\xfa\xf5\xeb\x72\x6c\x6c\x8c\x1f\x7c\xf0\x41\xa9\x28\x8a\x09\x82\xb1\xec\x33\x16\xc7\x22\xb9\x29\x97\x29\x7c\x5e\x43\xf8\x04\x43\x98\x0a\xcc\x94\xc7\x5c\xb9\xd0\x9e\x79\xfb\x85\xa1\x95\x3f\x5b\xf1\x19\x6f\x12\xd1\x18\x11\xad\xe4\x72\x39\xfd\x07\x3f\xf8\x81\x7c\xf2\xc9\x27\xa9\xbd\xbd\x5d\xa5\xd2\xbe\x94\x3f\xf5\xe9\x4b\xe1\x3f\xee\x48\x6a\x27\xfd\x45\x75\xb3\x66\x8a\x4e\x5f\x51\x89\x45\x33\xda\xe1\xad\x8b\xbe\x9f\xf0\xeb\x42\x9d\x0c\x15\x46\x14\x4d\xd5\x63\xb1\x98\x69\x1d\x0d\xc1\xbd\xbd\xbd\xf4\xe8\xa3\x8f\x0a\x21\x84\x27\x9c\x75\x0d\x7d\xe1\xdc\xa6\x3f\xed\x5b\xf1\xfc\x8c\x66\x8a\x68\x49\x59\x27\xa1\x80\x7c\x4d\x05\x75\xeb\xe0\x92\xf7\x0b\x9a\xa4\xfc\x54\x4b\xe1\xa2\xea\x52\x8b\xd1\x68\xd4\xbc\x78\xf1\x62\xdd\x36\xb3\xa7\x32\xd8\xbe\xfa\x7c\x3e\xb2\xfc\x67\xbd\xaa\x49\x9d\xbb\x66\xfd\x4f\x29\x4c\x2a\xb1\x73\x2e\xac\xf2\x85\x56\x0d\x68\x98\x91\x77\xc9\xf8\xc5\xb6\xec\xb3\x20\x24\x3c\x1e\x4f\xf1\xc3\x0f\x3f\x64\x47\x1e\xf6\x8f\xab\xf4\x6e\x67\xfe\x8e\x77\xb5\xbf\x73\xfe\xe6\x86\x98\xcd\x9b\x37\x97\x76\x2f\x25\x52\x0b\x7e\x61\x86\x67\x8c\xa3\xc2\x84\xbb\x32\x44\x27\x07\x1b\x52\x75\xca\x35\x98\xd2\xe7\x62\xdb\xc1\x2a\xd7\x52\x1d\x10\xe6\x07\xdd\xdf\x4a\x45\x94\x97\x89\x68\x86\x99\xb3\xdf\xf9\xce\x77\x4c\x9b\x2e\x29\x25\x75\x77\x77\x9b\x00\x0a\x0c\xce\xe6\x35\x5e\x1a\x8b\xe4\x46\x2e\x74\x64\xce\x8e\xb4\x67\xce\x7e\xd0\x95\x3e\x75\xb6\x3b\xfd\xec\x44\x38\xff\x4a\x51\xe5\x73\x0c\x9e\x20\xa2\xb8\x94\xb2\x70\xea\xd4\x29\x1e\x1c\x1c\xa4\x2d\x5b\xb6\x08\x66\x6e\xde\x3d\x1b\xf8\xfc\xb1\xab\xa1\xff\x5b\x65\x11\x22\x54\x14\x7b\xfb\x2a\x98\x3c\x6d\x29\xed\x61\x8f\x21\xe4\xb5\x70\xfe\x7d\xd5\xe5\x2a\xb4\xb4\xb4\xf0\xd8\xd8\x18\x3f\xf9\xe4\x93\xe4\x76\xbb\xdd\x2e\x83\x3a\x9e\x1a\x89\xfe\xfe\xa6\x8c\x76\x84\xac\x6e\x64\x4d\x3a\x20\xad\x3d\xa9\x1d\xcd\xbb\xe4\xc4\x5c\x53\xe1\x4a\x20\x10\x28\x98\xa6\x89\xb9\xb9\x39\x67\x7d\x0b\x00\xbc\xc6\x88\x97\x4a\xa5\xec\x7b\x23\xe7\x32\x93\xba\xc2\xa5\xad\xab\xaa\x64\xb7\xcd\x30\xa8\xfa\x7a\x41\x84\xa6\x82\xd2\xaa\x48\xf2\xd9\xdd\x98\xb5\x7b\x63\xa3\xa9\x88\xf5\x94\xe3\x1b\xe9\x45\xeb\x62\xae\x5c\xb9\x02\x94\x8e\xbf\x4c\xe8\x5e\x1a\x99\x1b\xd4\xfe\x81\x09\xb2\xa4\xfc\x5b\xce\x51\x16\xfd\xa5\x6e\x9b\xcb\x67\x98\xd5\x62\x9c\x4a\x75\xed\x81\x8a\xd9\x90\xb8\xb2\xd4\xeb\x7a\x86\x88\x16\x98\x39\x6b\x79\x60\x96\xcb\xf3\xc1\x07\x1f\xc8\x77\xdf\x7d\x57\x5a\xd6\xdd\x39\x66\xbe\x08\xc2\xdb\x05\x45\xbe\x92\xf4\x9a\x4f\x27\xdd\xc6\x33\x86\xc2\xaf\x31\xf8\x1d\x66\xbe\x42\x44\x0b\xa6\x69\xe6\x5f\x7e\xf9\x65\x39\x33\x33\x83\x9d\x3b\x77\x82\x99\x3d\x4d\xba\xda\x7b\x68\xa2\xf9\x37\x04\xa8\xac\x43\x95\x4d\x51\x65\x05\x1c\x20\x90\xd8\x39\x1b\xf8\xa5\x9e\x15\xf7\x61\x66\xf6\xc5\x62\x31\xf1\xc5\x2f\x7e\x51\xf8\xfd\x7e\xc1\xcc\xbe\x6d\x0b\xbe\x27\xdb\x52\xda\xb1\xaa\x76\xac\x93\x8e\x00\x69\x07\xaf\x05\x7f\xbd\xa9\xa0\xf6\x33\xb3\x67\xcf\x9e\x3d\xb6\x61\xb4\x8a\x5f\x6c\x0b\x64\xbd\x20\x0d\xc1\xd9\xbc\xcb\x4c\x96\x33\x5a\xa7\x25\xed\xe0\xd3\x95\x56\x4f\x69\x0e\x4d\xf5\x7a\xbd\x42\x5a\x06\x87\x9a\xbc\xea\x29\xd9\x37\xa2\x47\xdc\x0c\xe6\xfc\xf9\xf3\xc8\xe7\xf3\x06\x11\xa5\x41\x34\xb3\xdc\xeb\x7a\x3a\xd1\xa1\xbe\x53\xe2\x18\xcb\x12\x6c\x7d\x14\x55\x56\x61\xb6\x1c\x55\x9c\x18\x38\xf4\xe9\x8a\x29\x08\x45\x0f\xc5\xaf\xef\xf4\xfc\x19\x2b\x34\xc6\xcc\x71\x00\xba\x65\x57\x71\xd2\x23\xde\x7d\xf7\x5d\x9c\x3e\x7d\x5a\xa6\xd3\xe9\x3c\x80\x84\x75\x54\xe7\x15\x66\xbe\x08\xe0\x22\x80\x31\x00\x33\x44\x94\x88\xc7\xe3\xfa\x0f\x7e\xf0\x03\x79\xf5\xea\x55\xd9\xd3\xd3\x03\xcb\x77\xc8\x17\x5b\xf6\x1c\xf7\x15\x45\x3f\x50\x1a\xac\x94\xcd\x07\x15\xdb\x51\x59\xa0\x2a\x4c\xbe\x1d\xf3\xfe\x9f\x44\x69\x8e\x4b\xb5\x8c\x9a\x2a\x80\xe0\xd0\x82\xef\x29\x94\xcf\x33\x59\x3f\x1d\x5f\x51\xf4\xc6\xe2\x9e\x63\x00\x7c\xaa\xaa\x0a\x6b\xa5\xb2\xb3\x0d\xd6\x7a\x24\x2e\x2c\x2c\xa0\x50\x28\x48\x4d\xd3\x0c\x53\x50\x36\xe9\x31\x17\xc2\x59\x0c\x60\x43\x86\x44\x86\xcb\xa4\x40\x73\x5e\xed\x4c\x7b\x4c\x0d\x28\xb9\x33\x5c\xbb\x76\xad\x5e\x23\x37\x7a\xbe\x2d\x18\x5d\xd7\xf1\xee\xbb\xef\xe2\xc8\x91\x23\x79\x00\x4b\x2c\xe8\xd2\xe4\x4e\xcf\x57\x89\xf3\x6a\xf3\x9c\xb1\xd7\x31\xf0\xb1\x48\xb7\xba\xb4\xb2\x5e\x5c\x29\x57\x3d\x43\x62\xd1\x4b\x89\x89\x3d\xde\x3f\x2e\x34\x29\x6f\x5a\x0c\x91\x8e\xc7\xe3\x72\x6c\x6c\xac\xee\x88\x73\x74\x74\x14\xe3\xe3\xe3\x18\x18\x18\x30\x62\xb1\x98\x11\x89\x44\xca\x6b\xd2\x33\x99\x0c\x16\x16\x16\x70\xf9\xf2\x65\x58\xbb\x8d\x01\x00\x5a\x5a\x5a\x6c\x63\xa2\xaf\x2d\xa5\xed\x2b\x9b\x4f\x2c\xfa\xec\x81\x4b\xad\x2d\x89\xc1\x68\x4f\xba\xf7\x12\x28\x08\x42\x1c\xa5\x91\xa1\xa6\x9a\x14\x0a\x67\x5d\xc3\x36\xe6\x46\xe9\x00\x40\x7b\xd2\xbd\xef\x5c\x67\xe6\x5b\x00\x92\x2d\x2d\x2d\x7a\x6d\xb9\xd6\x33\x24\x1a\x00\xf2\x71\x5f\x71\xaa\x3f\xee\xdd\x90\x21\xd1\xc2\x88\xd6\x94\x6b\xdb\x54\x73\xfe\x25\x22\x12\x2d\x2d\x2d\xd2\x61\x4f\xa8\xca\xbc\xe6\xf9\xb6\x1a\x12\x01\xe0\xc2\x85\x0b\x32\x16\x8b\xa1\x3c\x93\xad\x40\xbb\xb6\xcb\xf3\x47\x1d\xde\xc2\x4f\x47\xaf\x15\x1f\x26\x13\xea\xad\x18\x12\x33\x2d\xe2\xfa\xe4\x4e\xcf\x5f\xe4\x03\xe2\x14\x73\x49\x67\x31\x4d\x53\x7f\xee\xb9\xe7\x6a\x48\xac\x2e\x57\x3e\x9f\x97\x23\x23\x23\x62\x64\x64\x44\x6a\x9a\x26\x74\x5d\x97\x81\x40\x40\xa4\xd3\xe9\xba\x65\xb7\x1c\xf5\x05\x33\x7b\x5c\xa6\x08\x56\xd5\x79\xd9\x7e\x55\xdf\x20\xa9\x48\xf8\x04\xc3\x23\x09\xf6\x0a\x1b\x01\xc0\xc3\x4e\x63\xeb\x06\xd2\x21\xc0\xc3\xcc\x1a\x11\xd9\x0b\x07\xaa\xca\x55\x3b\x3c\x16\x00\xb0\xb8\xb8\x08\xcb\xaa\x99\x5f\xf2\x17\x27\x4a\xfa\x81\x3d\xdc\xb4\x45\x9d\xf5\xcc\x15\xa5\xbc\x74\x84\x25\xa3\x33\xe9\xde\x49\x20\x0f\x33\xab\xdd\xdd\xdd\x76\xda\xce\x7c\x6a\x2b\xd9\x79\xdd\x88\x21\x71\xc3\x98\x97\x5e\x7a\x09\xd9\x6c\xd6\xb0\x26\x0d\x27\x58\xa5\xb3\x33\x5b\xdd\x5f\x1d\xdb\xef\xfd\xe3\x4c\x8b\x98\x60\x82\x5c\x63\x48\x2c\x77\x6d\x15\x7d\x07\x04\xe8\x6e\x4a\xce\x6e\xd5\xbe\x7f\xf5\x80\xef\xb7\xf3\x4d\xca\xcb\x5c\x3a\x59\x68\xc1\x34\xcd\xfc\x8b\x2f\xbe\x68\xbb\x3c\x34\xa2\xab\x4a\x37\xb2\x7c\x6b\x60\xed\x8e\x5a\x17\x03\x54\xa4\x5f\x56\x33\xd3\x95\x38\x38\x85\x3e\xaa\xe2\xad\x90\xd1\x64\xc2\xa4\xf2\xc4\x38\x98\x19\x86\x60\x99\xf2\x18\x0b\x37\x93\xce\x78\x38\x37\x62\xd3\x56\xe3\x20\xd8\xd8\x90\xb8\xb2\xb2\x82\xee\xee\x6e\x9b\x81\xae\x32\x20\xc9\x96\x4c\x37\x30\x24\x02\x84\xb6\x94\xb6\xdd\x25\x29\x58\x54\xa0\x5a\x13\x75\x77\xd5\x90\xe8\x8c\xcc\x66\xb3\x78\xfa\xe9\xa7\xf1\xc4\x13\x4f\xe8\x3e\x9f\x2f\x01\xc0\x00\x51\x36\x1d\x51\xe3\x57\x0f\x2a\x17\xfc\x09\xf3\x81\x96\x99\xe2\x5e\x7f\x5c\xf6\xbb\x0a\x32\x28\x24\x54\xb6\x26\x91\xad\xe9\x89\x7c\xae\x49\xcc\x25\xda\xd5\x0f\x57\x5b\xd5\x77\x4d\x8d\x2e\x81\xe8\x3a\x33\xcf\x58\xa3\x25\xfd\xc5\x17\x5f\x84\x75\xa2\xf2\x2d\xd1\xd8\x08\x93\xcd\x66\x61\x4d\x4c\x1b\x93\xa1\xfc\x85\x07\xa6\x03\x52\x80\x44\xd9\x86\x54\x13\x9c\x4a\xf0\x48\x7b\xe6\x0c\x2a\x3e\xd1\x92\x88\x0c\x66\xce\x5e\xda\x94\x7b\xbb\x2d\xa5\xed\x2e\x8f\xc0\xd6\x49\x27\xad\x99\x4b\xd3\xa1\xc2\x05\x58\xfe\xed\x75\x8e\x19\xad\x3f\x99\xba\xbc\xbc\x0c\x00\x06\x33\xeb\x2b\x3e\x63\x2a\xef\x92\x09\x6f\x51\x09\xdb\xa3\xdb\x52\x2e\x0e\x3b\x8a\x45\xb4\x6d\x6c\xf4\xeb\x4a\x67\x24\xe3\x1a\x9c\x6d\x2a\x4c\x28\x8a\x22\x3a\x3a\x3a\xca\x73\x36\x58\x2b\x71\x6e\xbb\x21\xb1\x16\xb3\xb2\xb2\x82\xa7\x9f\x7e\x1a\x47\x8f\x1e\xd5\xdb\xda\xda\x92\xd6\x14\x41\x92\x05\xe6\xd2\x11\x75\x2c\x15\x56\x4e\x09\x46\x54\x2d\xf0\x26\x57\x81\x43\xc2\x60\x8d\x05\xa4\xa1\x89\x64\xd1\x4d\xcb\x52\xc5\x12\x97\x5c\x3b\x17\xac\xd1\x56\x9c\x88\xb2\xa6\x69\xea\x2f\xbd\xf4\x92\xad\xb7\x34\x2a\xcf\x9a\xfa\xdd\x28\x26\x1e\x8f\xa3\xbf\xbf\x5f\x12\x51\xf6\x7a\x4b\xe1\xfd\xf9\x26\xfd\x4a\x7b\x4a\x1b\xb2\x3b\x99\xda\x25\xc9\x76\xdb\x24\x3d\xe6\xc2\xe5\x4d\xd9\x53\xb0\xb6\xf0\xb5\x99\x90\x88\x92\x17\xda\xd3\x2f\x6f\x9b\xf7\x3d\x16\xcd\xb8\xfa\x6f\x94\xce\xbb\x3d\xa9\xef\x67\x4b\x1b\x64\x64\x99\xd9\xe9\xee\x5c\xa6\x71\x8d\x21\x11\x00\x2d\x2f\x2f\xcb\x7d\xfb\xf6\x09\x22\x72\x49\x81\x40\x5f\xdc\xf3\x50\x73\x5e\xed\xd8\x88\x21\xd1\x52\x35\x95\x94\xc7\x9c\x9a\x09\xe9\xef\x02\xc8\xa4\x52\x29\x69\x1d\x57\x79\x57\x0c\x89\xf5\x30\xf9\x7c\x9e\x3f\xfa\xe8\x23\x76\xbb\xdd\x1c\x8d\x46\x0d\x21\x44\xde\xea\xd6\x56\x88\x68\x11\x44\xb3\xd2\x45\xd7\x8a\x1e\x71\x49\xf7\x89\x8b\x45\xaf\xb8\x60\x6a\xf4\x11\x2b\x74\x09\x44\x57\x89\xe8\x1a\x11\xcd\x58\xf8\xec\xdc\xdc\x9c\xf1\xcc\x33\xcf\x60\x6e\x6e\x4e\x6e\xa0\x4c\x1b\x29\xf7\x1a\xcc\xec\xec\x2c\xef\xd9\xb3\x87\x84\x10\x24\x05\x5c\x0b\x01\x3d\xbd\x79\xc9\x77\xc0\x25\x85\x9b\xca\x9e\x00\x8e\xc5\x0d\x44\x28\x2a\x9c\x7f\x7e\x6b\xfc\xab\x8b\x81\xe2\x1b\x44\x34\x43\x44\x59\x5d\xd7\x59\x55\x4b\xcb\xca\x4c\x05\x98\x6e\x2e\xc4\xfb\x56\x3c\xbb\x3d\x86\xf0\xd7\x4b\x87\x09\xf2\x5c\x67\xe6\xd5\x37\xfb\x92\x7f\x01\x81\xab\x44\x14\x4f\x24\x12\xc5\x37\xdf\x7c\x73\x0d\xfd\x6b\x0c\x89\x76\xc5\x5b\xe7\x9b\x2b\x44\xe4\x0f\xe6\xd5\xad\xdd\xab\xee\x5d\xb6\x84\x59\xcf\x90\x58\xc2\x10\x5c\xa6\x50\x47\xda\x32\xcf\x32\x21\xe5\x76\xbb\x8b\xa3\xa3\xa3\xce\x01\x9c\x53\x72\xde\x11\x43\x62\x23\xcc\xd4\xd4\x14\xbf\xf7\xde\x7b\x32\x10\x08\xc8\x68\x34\xaa\xa3\x24\xe6\xd3\x28\xed\x5a\xba\x6c\xed\x24\x3b\x07\x60\xde\xfa\x5f\x64\xe6\x15\x22\x5a\x65\xe6\x7c\x3a\x9d\x2e\xbe\xf1\xc6\x1b\x7c\xe6\xcc\x19\x59\x28\x14\x9c\x0c\xdb\xa8\x3c\xb5\xe5\xba\x29\x4c\x5f\x5f\x1f\xfc\x7e\x3f\x33\xb3\xcc\xba\x65\x6e\x32\x94\x5f\x88\x64\x5c\xdd\x01\x5d\x69\x71\xce\xe1\x81\x18\xcb\x3e\x63\xe6\xb9\xe1\xf8\x5f\x5e\x6f\x29\x3c\xc7\xe0\x71\x22\x4a\xa4\x52\xa9\xe2\x5f\xfd\xd5\x5f\xc9\xde\xde\x5e\xf8\xfd\x7e\xc9\xcc\x66\x5e\xe3\xec\x95\x68\x6e\x42\x30\xf9\x9a\xf3\x6a\x58\x95\x25\xc7\x41\x26\xc8\xb8\xcf\x58\x3c\x3d\x90\xf8\x87\x77\x7b\x52\x7f\xc7\x02\xa3\xcc\x3c\x4f\x44\xd9\x37\xde\x78\x83\xe3\xf1\xf8\x1a\x9a\xeb\x99\x76\x04\x00\x69\x9d\x6d\xee\x01\xd0\xdd\xb9\xaa\x7d\xfe\x8b\x1f\xb4\xfe\x9f\x42\x92\x5a\x35\xc5\xe5\x54\xc2\x6a\xe2\x0c\xe2\xfc\xdf\xec\x9d\xff\x97\x4b\x81\xe2\x69\x66\x4e\x7e\xf5\xab\x5f\x35\xb0\x36\x6c\xd4\x90\xb8\x91\x19\xf8\x5b\xc2\x3c\xf8\xe0\x83\xa2\xb3\xb3\x13\xa1\x50\x08\x7e\xbf\xbf\x32\x42\xb1\x14\xcf\x62\xb1\x28\xf3\xf9\x7c\x79\xdb\x37\xc7\x00\x63\xbd\x70\x23\x3d\x67\xc3\x98\x70\x38\x8c\x2f\x7c\xe1\x0b\x50\x14\xc5\xc7\xcc\x51\x02\xfa\x05\xd3\x60\x7b\x52\x7b\xa0\x6b\xd5\x3d\xe4\xd7\x95\x60\xde\x25\xb3\x73\x4d\xfa\xd8\x54\xa8\xf0\x9e\x21\xf8\x0a\x83\xc7\x2c\x83\x64\xf6\x99\x67\x9e\x91\x33\x33\x33\x70\xa4\xe3\x61\xe6\x30\x80\x6e\x02\xf5\x6b\x26\x75\x47\x32\xae\x3e\x97\x49\x9e\xb4\xdb\x8c\x27\xbc\xc6\x35\x49\xb8\xce\xe0\x09\x94\x6c\x53\xe9\xc9\xc9\x49\xc3\xf2\x4e\x5c\x43\x33\xd5\x89\x14\x00\xe4\xee\xdd\xbb\xc5\xa1\x43\x87\x54\x00\x51\xcd\xa0\x43\x5f\x7a\xa7\xfd\x0f\x9b\xf2\x6a\x2b\x6e\xc4\x40\xe5\x57\x8c\x1f\xf6\xa4\x7e\xff\xcc\xc0\xea\x6f\x03\x98\x1b\x19\x19\xb1\x37\xb4\xae\x55\x9a\x6b\xf3\x6e\x84\x69\x34\xd4\xbf\x6d\x98\xe6\xe6\x66\xb1\xba\xba\x5a\x75\x2d\x14\x0a\xc8\xe7\xf3\xeb\xfd\x1e\x37\xc8\xeb\x63\x63\x36\x6f\xde\x2c\x8e\x1f\x3f\x2e\x00\x68\x44\x14\x62\xe6\x28\x80\x28\x80\x10\x4a\x6e\xad\x06\x80\x24\x11\x2d\x59\x5b\xfb\x26\x98\x39\x7f\xe1\xc2\x05\x79\xe6\xcc\x99\x7a\xe9\xa8\x44\x14\x60\xe6\x10\x80\x30\x00\x1f\x4a\xfa\xb0\x6e\xa5\x13\xb7\xb6\xe6\xc9\x4e\x4f\x4f\x1b\xcf\x3e\xfb\x2c\x4c\xd3\xac\x4b\xb3\x82\x8a\xf9\xac\xca\x8c\x26\xa5\xc4\xf0\xf0\x30\x88\x48\x31\x09\xbe\xb6\xb4\xb6\x2b\x9a\xd5\xfa\xd7\x18\x12\xab\xe6\x33\x9c\x7b\x24\x12\x9a\x74\x25\x3c\xd2\x9e\xf9\xbe\x41\x9c\x68\x6a\x6a\x2a\x8e\x8c\x8c\x40\x4a\xe9\x1c\x38\xd6\xcb\xbb\x2a\xf9\x9a\x77\xce\xcc\x6e\x3b\xc6\xea\x92\xc8\xda\x85\x8c\x0b\x85\x02\x59\x1b\x4d\xd6\xfe\x8e\xb1\xf6\xf3\xb9\x63\x98\x95\x95\x15\x4e\x24\x12\xe8\xee\xee\x36\x14\x45\xc9\x03\x48\x13\x51\x9c\x88\xe6\x2c\x3d\x67\xca\x9a\x87\x9b\x27\xa2\x94\x69\x9a\xf9\x37\xde\x78\x83\x2d\xab\x78\x55\x3a\xd3\xd3\xd3\x68\x6f\x6f\x37\xdd\x6e\x77\x01\x96\x6f\x35\x11\x2d\x13\xd1\x82\x95\xde\xb2\xc5\x3c\xf9\x91\x91\x11\xf3\x95\x57\x5e\x81\x69\x9a\x0d\x69\x56\x1c\x04\x3b\x95\x5c\x64\xb3\x59\xb9\x75\xeb\x56\x68\x9a\x26\x00\xf8\x08\x14\xd9\xb2\xe8\x3d\x52\x19\xb4\x5b\xa5\xad\x5d\xc5\xc0\x28\xdb\x8b\x34\x43\x84\x96\xfd\xc6\x85\x25\x7f\xf1\x92\xaa\xaa\x7a\xa1\x50\x90\x0b\x0b\x0b\xb6\xd2\xe9\x54\x1a\x9d\x57\x38\xee\x6b\x31\x7c\x9f\x60\x6c\x1d\x60\x3d\x9a\x6f\x2b\x66\x65\x65\x45\x4e\x4c\x4c\x90\xc7\xe3\x91\xa1\x50\x48\x27\xa2\x3c\x95\xd6\xa0\xa5\x88\x28\xcd\xcc\x39\x29\x65\x7e\x6c\x6c\xcc\x7c\xe5\x95\x57\x60\x79\x30\xae\x49\x27\x93\xc9\xc8\x8b\x17\x2f\xd2\xea\xea\x2a\xfb\x7c\x3e\xc3\xeb\xf5\xea\x42\x88\x02\x33\xe7\x00\x14\x4c\xd3\x2c\x4c\x4c\x4c\x98\xaf\xbf\xfe\x3a\x8f\x8c\x8c\xd8\xdd\x75\x43\x9a\xeb\x7a\x24\xda\xcf\xb3\xb3\xb3\xd8\xb2\x65\x8b\x01\x20\x39\x15\x2a\xbc\x97\x73\xc9\x84\xb7\x58\x3a\x15\xaf\x9e\x47\xa2\x6d\x98\xaa\x58\x38\x49\x3c\x30\x13\xf8\x97\x97\x37\x65\x9f\x33\x89\xd3\x83\x83\x83\xc6\x85\x0b\x17\x44\x65\x7a\xac\x2a\xdf\x9b\x31\x24\xd6\x0b\x77\x12\xd3\x08\x7f\x57\x31\xab\xab\xab\xf2\xa5\x97\x5e\x82\xdb\xed\x16\x85\x42\xc1\x00\x80\x83\x07\x0f\x8a\xb7\xdf\x7e\x5b\xf6\xf6\xf6\x8a\xf9\xf9\x79\x14\x0a\x85\x1b\xa6\x63\x9a\xa6\xbc\x7c\xf9\xb2\xbd\x03\xab\x04\x20\x3b\x3a\x3a\x84\x35\x52\xae\x67\x26\x69\x48\xb3\x2d\x81\x6a\xa5\x80\x04\x40\xcc\x8c\xc1\xc1\x41\x26\x22\x61\x08\xf6\x45\x33\xae\xed\xd1\xb4\xd6\x57\x5a\xbf\x54\x71\x28\x27\xb2\x57\xca\x03\x95\x91\x5a\x29\xde\x5f\x50\xda\xa7\x43\x85\xb7\x92\x5e\x73\xd2\xef\xf7\x17\x96\x96\x96\x38\x91\x48\x00\x8d\x25\x50\xed\x68\xcd\x7e\x57\xaf\x20\x77\x0b\xb3\x66\x94\x8a\xea\xae\xe6\xae\x62\x4c\xd3\x2c\x63\xa6\xa7\xa7\x09\x00\xaf\xae\xae\x92\xa3\xab\x41\x5b\x5b\x1b\xed\xda\xb5\x8b\xb6\x6c\xd9\x42\x0f\x3f\xfc\x30\x22\x91\x08\xf5\xf5\xf5\x81\x88\x90\x48\x24\xd6\xe4\x95\x4e\xa7\x6f\x89\x1e\xa7\x0e\x84\x5a\x50\x2e\x97\xc3\xf0\xf0\x30\x2b\x8a\x42\x44\xa4\x15\x15\xd9\x34\xbc\xe8\x7b\xd8\xe6\x12\x02\x50\xcf\x90\xe8\xdc\x00\x43\x10\x29\x81\x82\x12\xfa\xa8\x35\xfb\xa2\x04\x67\xc3\xe1\xb0\x61\x6d\x38\x5e\xab\x83\x38\xaf\xb5\x3a\x8b\x93\x3e\x71\x0f\x30\x8d\x68\x85\xe3\xfd\x7d\x81\xe9\xec\xec\xa4\x27\x9f\x7c\x92\x76\xed\xda\x25\xda\xda\xda\x94\x70\x38\xac\x69\x9a\xa6\x86\xc3\x61\x35\x1a\x8d\x8a\x81\x81\x01\xde\xba\x75\x2b\xb2\xd9\x2c\xad\xac\xac\x7c\x6c\x7a\xea\x1a\x12\xad\x7b\x32\x4d\x53\xb6\xb4\xb4\x50\x34\x1a\x25\x00\x6a\x46\x93\x62\x70\xc9\x77\xd8\x57\x14\xcd\xeb\x1a\x12\xc9\xba\xb3\x18\x2a\x50\x50\xba\x17\x9a\xf4\xf7\x13\x3e\x73\xc2\xe3\xf1\x14\x8a\xc5\x22\x5b\xba\x10\xd7\xf9\xaf\x95\x06\xb5\xf1\xf7\x02\x73\xdb\x8d\x84\x77\x02\xb3\x73\xe7\x4e\x3a\x7e\xfc\xb8\x70\xbb\xdd\x6e\x95\xa9\xa9\x67\xd5\xb3\x6b\xc7\x9c\xff\xc9\x6d\xf3\xfe\x27\xba\x92\xee\xdd\x6e\x43\xb8\x52\x1e\x33\xad\x7a\x35\x33\x16\x8b\xc9\x70\x38\xcc\x96\xf7\xc0\x2d\xd3\xd3\xd0\x90\x68\xc7\x4d\x4c\x4c\xc8\x7d\xfb\xf6\x81\x99\x89\x05\x3c\x9a\x49\xed\x3d\x09\xcf\x2e\xcb\x62\x59\xd7\x90\x58\xcb\x50\x82\x49\x09\xe7\x5c\x5d\x23\xed\x99\xe7\x24\x21\x1b\x8d\x46\x6d\x4f\x45\xd4\xc9\xbf\x9e\xe8\x84\xe3\x8a\x7b\x84\xa9\x47\xeb\xc7\x32\x12\xde\x4e\xcc\x8e\x1d\x3b\xe8\xf0\xe1\xc3\xa5\x33\x6d\xd3\xae\xad\x9f\x1d\x8d\xfc\x5f\x07\x26\x83\xff\xa5\x3b\xe1\xf9\x5c\x6b\x46\x7b\xb8\x63\xd5\xfd\xe9\x2d\x4b\xde\x9f\xd9\xbc\xec\x3b\xb8\xe2\x2b\x5e\x49\x7a\xcd\x78\x28\x14\x32\xc3\xe1\x30\x4f\x4c\x4c\x10\x97\xbc\xea\x6e\x9a\x1e\x05\x6b\x2b\x8d\x6a\xe3\x2c\x6b\x28\x00\xa8\xab\x1e\x83\xb7\xcf\xfb\x1f\x29\x99\xd3\x51\x23\xd0\xea\x4b\x25\x10\xe0\xd3\x45\x57\x56\x93\x93\xf3\x4d\xc5\x51\x55\x55\x0b\x3e\x9f\x8f\xaf\x5f\xbf\xbe\x9e\x5e\xe2\x54\x66\x19\xf5\xc3\xdd\xc4\x00\x95\x8a\x93\x8e\xe7\x7b\x8e\x69\x6f\x6f\xc7\x63\x8f\x3d\x26\x88\xc8\x17\xc9\xa8\xdb\xbe\x70\xae\xf5\x2f\x23\x59\xd7\x31\x01\x72\x39\xbd\x0d\x09\x24\xbc\x45\xa5\x7f\x70\xc9\x7b\x72\x3e\xa0\x9f\x4d\xfa\xcc\xb9\x50\x28\x54\xcc\x64\x32\xbc\xb4\xb4\x44\x1b\xc9\xab\x16\xe3\x94\x40\x76\x20\xac\xe5\x3c\xd8\x3b\x74\x16\x15\x76\x05\x0b\xca\x40\x5b\x4a\x1b\xa8\x28\x42\x35\xbf\x06\x60\xcf\xcc\x57\x24\x11\xa1\x35\xa5\x6d\xbb\xba\x29\xf7\x72\xc1\xc5\xcb\xd1\x68\xd4\x98\x9b\x9b\xe3\x54\x2a\xe5\xe4\xf4\x5a\xbd\xc4\x79\x75\x72\xfe\xbd\xc0\xd4\x4a\x68\xa7\x7e\x74\x4f\x31\x27\x4e\x9c\x80\xd7\xeb\x75\xa9\x4c\x9b\x3e\x3b\x1a\xf9\x6f\xd1\xac\x76\xa8\xd4\x08\xf5\x97\x51\x0b\x26\x7f\xd7\xaa\x7b\xcf\xa5\xd6\xec\x0b\x45\x85\x53\xad\xad\xad\xc5\x8b\x17\x2f\x3a\x95\xf3\x0d\xd3\xe3\x1c\x42\xdb\xff\x6b\x9e\xc7\xc7\xc7\xa1\xeb\xba\x01\x20\x0b\xc2\xc2\x7b\x5d\xe9\xef\xe9\x0a\x67\x6d\x46\xa9\x74\x8a\xb5\x7c\x58\x0a\x36\xc6\x57\x54\xba\x8f\x5d\x0d\xfd\x8a\x90\x08\x13\x91\x73\x63\x4a\x67\xde\xa8\xb9\xaf\xf7\x7c\xaf\x31\x40\x7d\x89\x79\xd7\x31\x9d\x9d\x9d\x88\x44\x22\x82\x88\x7c\x3d\x09\xcf\xa1\xce\x55\xf7\xf1\x8d\x9c\xda\x1c\x2c\x28\xdb\xb7\xcd\xf9\x3f\x47\x44\x3e\x9f\xcf\xa7\x0e\x0e\x0e\xde\x12\x3d\xa2\x26\x52\xd6\x7b\xce\xe7\xf3\x18\x1d\x1d\x05\x4a\x4e\xea\xf1\x84\xd7\xb8\x78\xa9\x35\xfb\x36\x93\xd3\xf2\x6c\xc9\x1b\xb6\x89\xb4\x48\x65\x54\x61\x62\xcb\x9e\xcf\x6f\x9f\xf3\x3f\x09\x46\x20\x10\x08\xa8\xc7\x8e\x1d\xab\x47\x78\x6d\x21\xea\xd9\x21\xee\x25\x06\x58\xdb\xed\xde\x13\x8c\xbd\x15\x30\x33\xfb\xba\x12\xee\x23\x84\xd2\xc4\x68\xd9\xaf\xdb\x62\x1b\xa7\x88\xb5\xc3\x40\xdc\xf3\x29\x66\x0e\x02\x10\x03\x03\x03\xb7\x44\x4f\xed\x57\xdf\xf0\xf9\xc3\x0f\x3f\x44\xb1\x58\x34\x00\xa4\x41\x98\x39\xdb\x9d\xfa\x6e\x41\xe5\x74\xad\x47\x62\x89\xa9\xe0\xe0\x1f\x86\x13\x43\x0c\xf5\xc8\x78\xf3\x6f\x44\x33\xae\x9d\x44\xe4\xeb\xef\xef\x17\xbb\x77\xef\x76\xd2\xb2\x11\x43\xe2\xdd\xc6\xac\x6b\x4c\xbb\x97\x98\x4d\x9b\x36\xd9\xbb\x80\x78\xfc\xba\xd2\x69\x83\x37\xe2\x6d\xe8\xd3\x95\x76\xb2\xe6\xc1\xac\x7d\x31\x6f\x9a\x9e\xda\x46\x6b\x74\x45\x2e\x97\x93\xa3\xa3\xa3\xa0\xd2\xf6\xbd\xf1\x15\xaf\x31\x72\xbe\x3d\xfd\x9a\xbd\xc3\x96\x53\xdb\x81\xf3\xae\x3c\x2a\xab\x60\x3c\x86\xd2\xfe\x99\x8f\xc2\xff\xc5\x5d\x14\xdd\x44\xe4\x39\x70\xe0\x80\xe8\xed\xed\xad\x43\x63\x39\xdc\xc8\x7a\x7c\xa7\x31\x4e\x0b\xed\x8d\x7e\x77\x57\x31\x6e\xb7\xdb\xde\x58\x41\x2d\xa8\x32\x5f\x52\x5c\x1c\xbb\x86\xd4\x04\x7b\x39\x1c\x81\x90\x75\xc9\x34\x5b\x5b\xfc\x44\x22\x91\x5b\xa2\x47\xd4\x5c\x1b\xbd\x07\x00\xf1\xc1\x07\x1f\xa0\x58\x2c\x1a\xcc\x9c\x64\xf0\xcc\xd9\x9e\xd4\x77\x33\x9a\x19\x07\x2c\x26\xaf\x31\x24\x32\x73\x15\x13\x39\x31\x9b\xd2\xae\xc3\xc7\xaf\x84\xfe\x37\x45\x22\xaa\x28\x8a\x76\xe4\xc8\x11\x04\x83\xc1\x35\x79\xd6\xa3\xe3\x1e\x60\x6a\xdf\xdd\x37\x18\x5d\xd7\xed\x4d\x11\x8c\xd9\x60\x61\x8c\xc1\x65\x9d\xb3\xac\x95\x5a\x83\xe3\xd2\x82\x81\xca\xdf\x44\x24\x77\x1e\x25\xcf\x53\x69\x79\xa1\xde\x34\x3d\xeb\x1a\x12\x51\x63\x5c\x33\x0c\x43\x6a\x9a\x46\x1d\x1d\x1d\x4c\x44\x5c\x54\x98\x8a\x0a\xfb\xfb\xe3\x9e\x5d\xa2\x62\x3e\x5c\x63\x48\x84\x23\xe1\x32\x06\x84\x48\xc6\xb5\x4b\x30\xe5\xa6\x42\x85\x73\x2e\x4d\xd3\x63\xb1\x98\x39\x31\x31\x01\x5d\xd7\xeb\xe6\x5f\xe7\xfe\x47\xde\x90\x18\x08\x04\xa8\xbb\xbb\x9b\x00\xb8\xd3\x9a\xe9\xda\xbc\xe4\x3b\xec\x35\x94\x20\x01\x68\xe4\xb5\x48\x20\xe4\x55\x99\x7c\x75\x70\xf5\x4f\x0a\x2e\xfe\x88\x88\x56\x17\x16\x16\xcc\x3a\x46\xc5\x8f\x6f\x48\x44\x0d\x63\x4d\x4f\x4f\xf3\xd6\xad\x5b\x59\xd3\x34\x66\x66\x2c\xfb\x8b\xb9\xae\xa4\x7b\x67\x73\x5e\x8d\x36\x32\x24\x3a\xb5\xb7\x6a\x0c\x51\x7b\x4a\x3b\x50\x50\xe5\xcc\x7c\xb0\x78\x55\x73\x6b\xc5\xfe\xfe\x7e\xf3\xfc\xf9\xf3\xf5\xf2\x77\x0e\xf1\x9c\x71\x77\x0b\x83\x3a\x75\x65\x5f\xef\x19\x66\x6e\x6e\x4e\xee\xd9\xb3\x87\xac\xf9\x4a\x25\xe9\x35\x79\x70\xc9\xbb\x5f\x61\x52\x4a\xbd\x00\xaa\x57\xd4\x02\x90\x60\x9c\x89\xad\xfe\xfd\xb5\x70\xfe\x45\x10\xa6\x99\x39\xf3\x8d\x6f\x7c\xc3\xbc\x51\x5e\xf5\xe8\xd9\x90\x21\xd1\x71\x2f\x00\x70\xb1\x58\xa4\xbe\xbe\x3e\x93\x88\x4c\x16\xc0\x92\xbf\x98\x1d\x9e\xf7\x1d\x56\x20\xd4\x2a\x66\x01\x6a\x6e\xb0\xc6\xd8\x28\x40\x6a\x4f\xc2\xf3\xc9\x8c\xdb\x9c\x58\x0c\x14\xc7\x35\x4d\x33\x86\x87\x87\xe5\xc4\xc4\x04\xe9\xba\xfe\xcf\x86\xc4\x0d\x60\x62\xb1\x18\x7b\xbd\x5e\x49\x44\x94\xf0\x1a\xa9\x15\x9f\x51\xe8\x58\xd5\x36\x6b\x26\x79\x6c\x77\x1b\xdb\x1e\x54\x50\x39\x7b\x26\xb6\xfa\xdd\x0f\xba\xd2\x7f\x0b\xc2\x15\x66\x5e\x2e\x14\x0a\xc5\xd1\xd1\x51\xb2\x9c\xc6\x6e\x8a\x9e\x8d\x1a\x12\xab\x0c\x6d\x2b\x2b\x2b\xd4\xdd\xdd\xcd\x7e\xbf\x5f\x02\xe0\xac\x26\x8b\x04\x0a\x75\x27\xdc\xc3\xe5\x4d\x07\x2c\x78\x5d\x5d\xae\xc6\xd8\x28\x40\xae\xde\x15\xf7\xd1\x9c\x26\xaf\x2f\x36\x15\x27\x34\x4d\x33\x1c\x92\xe8\x9f\x0d\x89\x37\xc0\xac\xae\xae\x62\x68\x68\x88\x89\xc8\x60\x70\x71\xc5\x67\x2c\x5e\xde\x94\xbb\x92\x77\x49\x83\x00\x61\x08\x2e\xae\x78\x8d\xc5\x8b\xad\xd9\xf7\x5f\x19\x5c\xf9\xdb\xf1\x48\xfe\x79\x10\x3e\x62\xe6\x79\x00\xb9\xb7\xde\x7a\x8b\xad\x25\x3b\x37\x4d\x4f\x43\x8f\xc4\x9a\x67\x38\xdf\x31\x33\xe6\xe6\xe6\x30\x3c\x3c\x6c\x12\x91\x24\x22\x9e\x6f\xd2\x93\x9d\x49\xf7\xb6\xe6\xbc\x1a\x75\xc2\xc9\xc1\x28\x36\xdb\xd4\x8e\xd8\x08\x80\x60\x78\xfa\xe3\xde\xc7\x74\x45\xce\xce\x37\xe9\x63\x9a\xdb\x5d\xdc\xb6\x6d\x9b\x4c\xa5\x52\x48\x24\x12\xce\x01\x69\xed\x70\xcf\x8e\xbb\x9b\x18\xae\x79\x7f\x4f\x31\xa9\x54\x4a\x16\x8b\x45\x74\x77\x77\x1b\x44\x54\x60\x70\x5a\x57\xe5\xd2\x4c\x48\xff\x68\xb4\x3d\xfb\xf6\x87\x5d\xe9\xd7\x46\x3a\x32\xaf\x4c\xb6\x14\x4e\xe7\x5c\xe6\x07\x44\x74\xd5\x62\x9e\xec\xf5\xeb\xd7\x4d\x6b\xb5\xc5\x2d\xd1\xd3\xd0\x23\xb1\xc1\x73\x39\xe1\x7c\x3e\x2f\xdd\x6e\x37\x59\x87\x81\x18\x92\x98\xe7\x9b\xf4\xd4\x96\x45\xdf\x01\x55\x0a\xb7\xfd\xd3\xd2\x52\xa0\x0a\x3d\xb5\x5e\x8b\x4e\x0c\x81\x5c\xbd\x09\xcf\x23\x8a\xa4\xe2\x74\x73\x61\x44\xd5\x5c\x46\x7f\x7f\xbf\xcc\xe5\x72\xbc\xb4\xb4\x84\x06\xf4\xd8\x71\xb5\xcf\x77\x12\xe3\x14\xe7\xb7\x05\x13\x89\x44\x68\xf3\xe6\xcd\xe8\xe9\xe9\x41\xa1\x50\x40\x2e\x97\xbb\xa9\x74\x16\x16\x16\xc8\x34\x4d\xee\xea\xea\x32\x2c\x6f\xc5\x94\xb5\xc2\x64\x9e\x99\xa7\x89\x68\x92\x99\xaf\x59\xae\xaf\x71\x00\xb9\xeb\xd7\xaf\x9b\x2f\xbc\xf0\x02\xac\x89\xd4\x5b\x2a\x97\x93\x81\xea\x49\x9c\x7a\x9c\x58\x7e\x5e\x58\x58\x40\x57\x57\x97\xf4\xfb\xfd\x26\x00\x23\xef\xe2\x42\xd2\x63\xf0\xc0\xb2\xf7\x81\xd2\x16\xc1\xa5\xfc\xc8\xf9\x6b\x8b\x8c\x8a\x3b\x48\x35\x86\x00\x57\x57\xd2\x7d\x34\x94\x57\x43\x53\xa1\xc2\x79\xa9\x52\xae\xb7\xb7\xd7\x0c\x85\x42\x3c\x3d\x3d\x6d\xf7\xd3\xb5\xfa\x9a\x4d\xab\xd3\x86\x73\x3b\x31\xce\xbe\xbf\x1e\xf6\x96\x31\x3e\x9f\x8f\x0e\x1d\x3a\x44\x47\x8f\x1e\x45\x6f\x6f\xaf\xda\xd1\xd1\x21\xb6\x6f\xdf\x8e\x96\x96\x16\x4c\x4e\x4e\x42\x4a\xb9\xe1\xbc\xe6\xe7\xe7\x71\xf6\xec\x59\xb3\xb3\xb3\xd3\x0c\x04\x02\x05\x00\x39\x22\x4a\x5a\x4b\x92\x56\x2c\xa6\xca\x66\xb3\xd9\xe2\xd7\xbe\xf6\x35\xf3\xea\xd5\xab\xe4\x58\x61\x72\x4b\xe5\x5a\xd7\x23\x11\xf5\x39\xb1\x7c\x35\x4d\x93\x17\x17\x17\x69\x70\x70\xd0\x54\x55\xd5\x44\x69\x5d\x51\xca\x6d\xd2\xa6\x8e\x94\xdb\x9a\x6c\xb5\x86\x90\xeb\x78\x2d\xd6\x62\x08\x44\x91\x8c\x6b\x6f\xef\x8a\x67\xd7\x5c\x50\x3f\x97\xd3\x64\x32\x1c\x09\x9b\x5b\xb6\x6c\x91\xc9\x64\x92\x56\x57\x57\xeb\x35\x7c\x23\x23\xe1\xed\xc0\xd4\xd3\x03\x9c\x9f\xc4\x2d\x61\xba\xba\xba\xe8\xe4\xc9\x93\xe8\xec\xec\x54\x09\xe4\xeb\x5e\x75\x0f\x6d\x9f\xf7\x3f\x34\x1d\xd2\xaf\x87\xc3\x61\x19\x8d\x46\xe5\x95\x2b\x57\x6e\x3a\xaf\x4b\x97\x2e\xf1\xdc\xdc\x1c\x0c\xc3\x30\x93\xc9\xa4\xe1\x72\xb9\x8a\xd3\xd3\xd3\xc6\xcc\xcc\x8c\xf9\xe1\x87\x1f\xb2\xe3\x1c\xf8\x8f\x5d\xae\x75\x3d\x12\x1d\xf1\x70\xdc\x3b\xb1\x22\x97\xcb\xa1\x58\x2c\xa2\xa7\xa7\xc7\x24\xa2\x22\x08\xe6\x4c\xb3\xbe\x35\xd6\xea\x8f\x00\x00\x0d\x00\xff\x0d\x00\xf2\xea\x49\x44\x41\x54\x14\xcd\x68\x03\x2d\x39\xb5\xcd\x66\xa2\x32\x45\x75\xbc\x16\xab\xf6\xe1\x71\xe8\x48\x7e\x5d\xed\x1f\x5a\xf4\x7e\x46\x57\xe5\xc2\xa2\xbf\x38\xe5\x72\x6b\xe6\xe6\xcd\x9b\x65\x20\x10\xc0\xb5\x6b\xd7\x6a\x69\xac\xa2\xab\x41\x39\x6e\x15\x53\xfb\xae\x9e\xa4\xde\x30\xc6\xeb\xf5\xd2\xd1\xa3\x47\x71\xf0\xe0\x41\xa1\x69\x9a\x5b\x48\x84\x76\xcf\x06\x7e\xec\xd3\x97\xc2\x7f\xd2\x93\xf0\xfc\xe4\x52\xa0\xf8\x5e\xdc\x5b\x9c\x6b\x6e\x6e\x36\x54\x55\x65\xc7\x51\x03\x1b\xce\x2b\x95\x4a\x61\x72\x72\x12\xe3\xe3\xe3\x38\x7f\xfe\x3c\xc6\xc6\xc6\x30\x39\x39\x09\xeb\x08\xa9\x9b\xa6\xb9\x11\xe6\xa6\x0c\x89\x8e\x67\x72\xfe\x6e\x71\x71\x91\x23\x91\x08\x5a\x5a\x5a\x4c\x00\x86\x14\x28\x4e\x86\xf2\x8b\x3d\x09\xcf\x0e\xbf\xae\x34\xd7\xa3\xa0\x91\xb1\xd1\xea\xdc\x60\xcb\x2b\x55\x8a\xe6\xfe\xb8\xe7\xb3\xd1\xac\xab\x63\xbe\x49\xff\x48\x57\x39\x17\xdd\x14\x35\x77\xef\xde\xcd\x00\xec\xa5\xc5\x4e\x1a\x6b\xef\xeb\x95\xe3\x66\x31\xb7\xcd\x00\xb8\x6f\xdf\x3e\x7a\xf4\xd1\x47\xd1\xda\xda\xaa\x12\xc8\xdf\x9c\x57\x62\x9f\xf9\x28\xf2\x9f\x1f\x9c\x0e\xfc\x47\xa5\xb4\x75\x9d\xbb\x33\xa9\xed\x1b\x8f\xe6\x5e\x2d\xb8\x38\xd1\xd6\xd6\x66\x2c\x2f\x2f\xb3\x75\x7c\xd4\x6d\xa7\xe7\xe3\x62\x6e\xda\x90\x58\xe7\x5e\x00\xe0\xb1\xb1\x31\xde\xb2\x65\x0b\xbb\xdd\x6e\x03\x40\xd1\x50\x58\x9f\x0a\x15\x96\x63\x71\xcf\x6e\x77\x51\xf1\x95\x1d\x9b\x6e\x60\x6c\xac\xc8\x2a\xe7\x29\x5e\xa4\x84\xb3\xae\x07\xb6\x2e\xf8\x4e\xb0\xe0\xe4\x92\xbf\x38\x4d\xaa\x30\xbb\xba\xba\xcc\x2d\x5b\xb6\xa0\x58\x2c\xd2\xf2\xf2\xb2\xf3\x23\x80\xe3\xbe\xb6\x1c\xb7\x8a\x01\xd6\xd6\xd5\x86\x0d\x6e\x43\x43\x43\x74\xe2\xc4\x09\xea\xef\xef\x57\x15\x45\xf1\xb8\xa4\x88\x3c\x30\x1d\xf8\xf1\xcf\x7c\x14\xf9\xfd\x4d\x19\xd7\x51\x01\x52\xec\xcf\x5d\x33\x45\xa4\x25\xab\xb6\x5d\x8e\xe6\x4e\x49\xe2\x5c\x5f\x5f\x9f\xf1\xd1\x47\x1f\x91\x61\x18\x1b\xca\xeb\x6e\x62\x6e\xc9\x90\xe8\xc0\x54\xe9\x0a\xe3\xe3\xe3\xb4\x79\xf3\x66\x53\xd3\x34\x83\x99\xf5\x82\x8b\x73\x53\xa1\xc2\xd2\xe6\x65\xef\x6e\xcd\xde\x1f\x79\x1d\xaf\xc5\x4a\x20\xab\x6b\xab\xbc\x22\x66\x68\x52\xb4\xf4\xad\x78\x4e\x0e\x2c\x7b\xf7\x65\x5d\x72\x7e\xd5\x6b\xac\xb8\xdc\x9a\xd9\xd7\xd7\x27\x77\xef\xde\x0d\x4d\xd3\x68\x7a\x7a\xda\x49\xb3\x5d\xf0\x7b\x66\x48\xdc\xbf\x7f\x3f\x7d\xfa\xd3\x9f\xa6\xcd\x9b\x37\x0b\xb7\xdb\xed\x16\x12\xa1\xcd\x71\xdf\xc3\x8f\x5f\x0c\xff\xb7\x6d\x0b\xfe\x7f\xa7\x49\xd1\x62\x4b\x5d\x67\x55\x34\xe7\xd5\x2d\x00\xd2\x53\x21\xfd\xbc\x10\x42\xef\xe8\xe8\x30\x2f\x5e\xbc\x58\x9b\xdf\x4d\xd3\x73\xbb\x31\xb7\x64\x48\xac\x73\x15\x00\xa8\x58\x2c\xca\xd5\xd5\x55\x8a\xc5\x62\x06\x11\x19\x44\xa4\x67\x35\x99\x9d\x0b\x16\x92\x7d\x71\xef\x0e\xcd\x14\xee\x72\x0e\x00\x1a\x1b\x1b\x2b\xdc\x53\xd6\x89\x2a\x7b\x32\x93\xbf\xa8\xf4\x6f\x59\xf2\x7e\xa1\x3b\xe1\xde\x9e\xd3\xe4\x62\xd2\x6b\x26\x14\x55\x41\x5b\x5b\x1b\xef\xdd\xbb\x97\x23\x91\x08\x09\x21\xc8\xda\x0c\xa0\x1e\xad\x65\x9a\xd7\x29\x4f\x2d\x66\xc3\xc6\xbd\x81\x81\x01\xb2\xba\x2a\xea\xea\xea\x52\x15\x45\xf1\x08\x50\xb0\x6f\xc5\x73\xf0\xb1\x4b\x2d\xff\x79\xdf\x54\xd3\xff\xee\xd7\x95\xcd\xd6\x96\xe5\x35\x99\x33\xac\xfd\x19\xa9\x3d\xe5\xde\xbb\x10\xd0\xcf\x26\xbc\xc6\x54\x20\x10\xd0\x5d\x2e\x17\xa6\xa6\xa6\x6e\x9a\x9e\x3b\x89\x21\xeb\xe1\xb6\x86\x9e\x9e\x1e\x7c\xfa\xd3\x9f\x16\xaa\xaa\x7a\x00\xb4\x32\xf3\xd0\xa6\x8c\xf6\xc9\xa7\x2e\x44\x7f\x21\x98\x57\xc2\x95\x0d\xa9\x4a\xa1\x5c\x71\x55\x55\x59\xea\xc4\x9c\xce\x98\x15\xae\xae\x60\x18\xac\x2f\x06\x8a\xaf\x7d\xd0\x95\xfe\xf3\xb1\x48\xee\x74\x5e\x95\x09\x10\xf2\xcc\x6c\x00\x90\x63\x63\x63\x98\x9d\x9d\xc5\xf4\xf4\x34\x56\x57\x57\xed\x04\xea\xb9\x28\xd4\xc6\xad\x87\xb1\xbf\x42\x01\x00\xcd\xcd\xcd\xe8\xec\xec\x44\x47\x47\x07\x62\xb1\x18\x14\x45\x11\x28\x1d\x78\xa7\x79\x0c\x11\x8e\x2d\x7b\x0e\x3d\x38\xdd\xf4\x3f\x6f\x4a\xbb\x8e\x11\xec\x23\x44\x2b\xdd\x78\x75\xb9\x9c\x81\x90\x76\x1b\x57\xbe\xf1\xc0\xc2\x97\x12\x1e\x63\x84\x88\xb2\xcf\x3f\xff\xbc\x1c\x1f\x1f\x5f\x97\x9e\x8d\xd0\x7c\xbb\x30\x4e\x06\xaa\xfd\x71\xbd\xe7\x7a\x15\x2c\xeb\x60\xe4\xfe\xfd\xfb\xc5\x9e\x3d\x7b\x04\x4a\x0e\x4b\xad\x00\x06\x23\x59\xd7\x91\xcf\x8e\x46\xfe\x4d\x34\xe3\xea\x74\x32\x8b\xfd\x19\x96\xaa\xcf\x62\x19\x46\x79\xfe\xc6\xd9\xa5\x35\xc6\xc0\xc8\x68\xe6\xa5\xab\x91\xfc\x3f\x5c\x6a\xcd\x7e\x6f\xae\x49\x1f\x33\x05\x67\x41\xa5\xdd\xb5\x98\x59\x66\x32\x19\x39\x3b\x3b\x8b\x5c\x2e\x87\xd9\xd9\x59\xa4\xd3\x69\x2c\x2f\x2f\x4b\x45\x51\x44\x9d\xcd\x03\xaa\xca\x65\x63\x5a\x5a\x5a\x44\x30\xf8\xff\xb5\x77\x75\xbd\x6d\x23\x57\xf4\xdc\x21\x45\x51\xb2\x2c\x5b\x8e\x62\xcb\xb2\xd7\x71\xec\x24\x9b\xe6\xab\x4e\xda\x8d\xf7\x61\x37\x09\x36\x41\x80\x6d\x81\xa2\x0f\x7d\xe9\xf3\xfe\x82\xfd\x0f\xfd\x0f\x7d\x2c\xfa\x10\xa0\x2d\x90\xb6\xd8\x00\x05\xda\xa4\x68\x83\x7d\x08\x62\xac\x8d\x38\x71\x16\x1b\x7f\x24\x8e\x6d\xf8\x23\x96\x65\x59\xa6\x29\x4a\xa4\x66\xfa\x40\x52\xa2\x65\x52\x91\x1c\x39\x71\x93\xbd\x80\x40\x89\x73\x34\x43\xce\x5c\xdd\x19\x1e\x52\xf7\xc4\xd1\xd9\xd9\x89\x44\x22\x81\xde\xde\x5e\xb4\xb7\xb7\x33\xc0\xc9\x45\x08\x52\x24\x81\x68\xcf\xb6\x32\x78\xea\x55\xf4\x97\xc3\x1b\x91\x5f\xc7\x8a\xd2\x69\x00\xf2\xeb\x73\x12\xfa\x9e\x17\x16\x12\xc5\x6f\xbe\x39\xbb\xfe\xb5\xc5\xc4\xaa\xae\xeb\xc6\xad\x5b\xb7\x82\x8e\xd5\x77\x2c\x0e\x12\x73\x20\x11\xc8\xad\x7c\x74\x74\x14\x17\x2e\x5c\x60\x00\x54\xd8\xd9\x24\x4e\xb4\x99\xd2\xa5\x9b\x3f\x74\x7d\x75\x6c\x53\x3d\x65\xf7\x1e\x01\xce\x73\x43\xde\x64\x33\x95\xe4\x9d\xce\x5f\xa7\xed\x8e\x75\xa7\x36\x51\x17\x23\x08\xc6\xb6\x5a\x7e\x3c\xdf\x65\xdc\x7b\x99\x28\x7c\xbb\xd6\x5e\x9a\xde\x51\x78\x4e\x40\x94\xdc\x6c\x5d\x80\xad\x2b\xe6\x12\x69\x6b\x6b\x6b\xa8\xf9\xcb\x75\xf5\x58\x88\x90\x4a\xa5\x5c\x46\x9d\x39\x79\x0b\x99\xa3\x0d\x26\x13\x48\x89\x98\x2c\xde\xb3\xad\x9c\x38\xb6\xa9\x7e\x3e\x98\x55\x6f\x74\x18\xf2\x25\x12\xa4\x56\x83\xa5\x3d\x35\xb9\x17\x0a\x15\x45\x1f\xa7\xa8\x3e\x46\x60\x6c\x20\xff\xbb\x07\x83\xf9\xdf\x83\x90\x79\xfe\xfc\xb9\x75\xef\xde\x3d\xef\x0f\xbc\x76\xc0\xbd\xfb\x0f\x14\x43\xa8\xef\x81\xaf\xf3\x44\xd7\x02\x31\xa3\xa3\xa3\xec\xfc\xf9\xf3\x8c\x31\xa6\xc2\x4e\x25\x32\x18\xb2\xe8\xc2\x67\xcf\x3b\x7e\x7b\x7e\x35\xf6\x29\x13\xc4\x04\x76\x5f\x9d\x79\xad\x9a\x62\xd7\xe9\x60\xbf\x15\x53\x00\xc6\x79\xb0\xaa\x54\x94\xc5\x72\x2e\x62\x4e\xad\xc4\x4b\x13\x6b\xed\xa5\xc9\xcd\xa8\x39\x9f\x8b\x58\x99\x32\x13\x46\x99\x50\x02\x81\x7b\xce\xa7\xd6\x8b\x98\xd3\x06\x23\x10\x63\x02\xb2\xc4\x49\x8d\x17\xe5\xae\x84\x2e\x0f\xf6\x6c\x2b\xe7\xd2\x5b\xe1\x4f\x12\x05\xf9\x9c\x6a\xb2\x01\x02\x14\x3b\x5a\xd6\x6a\x41\xef\x3e\x3a\xaf\x03\x35\x82\xb1\x18\xcf\xff\xe3\xcc\xc6\x57\x2f\x8e\x18\xf7\x84\x10\xda\x9d\x3b\x77\xb8\x43\x61\x04\x0d\x3c\x50\x7f\x2c\x5b\x82\xa9\x8d\x40\x7e\xa0\x20\x6b\x04\x03\xc0\xd6\x0e\xbd\x71\xe3\x06\x24\x49\x52\x89\xa8\x13\xc0\x00\x09\x9c\x3e\xb3\xda\xf6\xe5\xe7\x73\x9d\xbf\x52\x3d\x0a\x36\x5e\xe1\xfb\xbd\x6b\xa2\x6a\x58\xdf\x3f\x46\x40\x00\xba\x29\x89\x8c\x1e\x2a\x2f\x6b\x6a\x79\xb5\x20\xf3\x57\x46\x88\x67\x0b\xa1\xf2\x96\x25\x09\xc3\xd1\x49\xe3\x24\x20\xcb\x9c\x54\xd5\x64\x1d\xaa\xc5\x3a\x23\xa6\xd4\x1d\x2b\x4a\xa9\x58\x51\x4a\xcb\x9c\xba\x99\x40\xb4\xda\x07\x3e\xeb\xf1\x1a\x29\xac\x37\xc5\xbc\x4c\x18\x7f\xf9\xdb\xf9\xf5\xaf\x01\x64\x26\x27\x27\xad\xb1\xb1\xb1\x46\xba\xff\x40\x6d\x8f\x6a\x73\x8d\xf9\x79\xa1\xfb\xbe\xb6\xbc\x16\x53\xb1\x85\x85\x05\xdc\xbd\x7b\x97\x5d\xbf\x7e\xdd\x50\x14\x25\x0b\xc0\x12\x04\xe3\x69\x6a\x47\xcb\xb4\x99\xcb\x5f\xcc\x24\x7e\xd3\xad\x85\xfa\x5d\x0a\x11\xa8\x5e\x9b\xed\xfe\xdf\x87\x67\xda\xda\x37\x86\x40\x40\x34\x5c\xa6\x01\xa5\xcc\x06\x12\x46\xc8\x29\xaf\x6f\xde\x75\x9a\x3b\xdb\xb8\x8d\x56\xf7\x91\x83\xd9\x9d\x0a\xf0\x4d\x31\x16\x83\xf5\xa8\x6f\xfb\x5f\x63\xc7\xf2\x7f\xa4\xdd\x51\x3a\x68\xec\x7c\xc7\xe1\x20\x30\x2d\x23\x12\x7d\xf6\x7b\xcb\x58\x3e\x9f\xe7\x8f\x1e\x3d\x12\x27\x4f\x9e\xe4\xe1\x70\xb8\x04\xa0\x00\xc2\xb6\xa6\x58\xd9\x99\x6e\x7d\x4e\xe6\xac\xfd\xa8\xa6\xf4\x4a\x20\xe6\x1e\xc6\xde\xf8\x52\x6d\xa4\xd5\x18\x78\xca\xc8\xe7\x55\x09\x04\x9e\xed\xee\x7a\x5a\x8f\x01\x01\xb9\x88\x99\xb9\xfb\x71\xf6\x4f\x8f\xd3\x3b\x7f\x2d\x4b\x78\x0e\x20\x23\x84\x28\xde\xb9\x73\xc7\xef\x09\x42\x77\xeb\x3b\x06\x07\x81\x69\x29\x91\xe8\xd3\xe0\x9e\xf5\xd2\xd4\xd4\x94\xe8\xea\xea\x12\x89\x44\xa2\x24\x84\x28\x10\x91\x56\x66\xc8\xbf\x4c\x18\x2f\x56\x3b\x8a\x1b\x47\xb5\x50\x5f\xc4\x94\x62\xbb\xd2\xc7\x00\x7b\x7b\x1b\xd5\x2b\xb3\x83\xc7\x38\x65\xb4\x7b\xeb\xb7\x7e\x69\x15\xa6\x2c\x09\xeb\x69\x6a\x67\xec\x9f\xa7\xb3\x7f\xc8\xc4\xcc\x6f\x61\x3f\x00\xb6\x0a\x5b\x52\xa1\xec\x24\x2d\xad\x1d\x03\xbf\x40\x7a\xa0\x98\x96\x12\x89\xf0\x77\x32\x51\x5b\xcf\xfc\xfc\x3c\x15\x8b\x45\xd1\xdf\xdf\x5f\x26\xa2\x02\x80\x1d\x10\xb4\xad\x48\x79\xed\xd9\x51\x7d\xa6\x4c\x90\xbb\x77\x94\x3e\x49\x90\x54\x4b\x24\x7a\x97\xc8\x41\x64\x63\xab\x31\x8d\xaa\x2d\xb7\x0a\xf3\x2a\x66\x2e\xdf\xfd\x38\xfb\xe7\xc7\x7d\xda\xdf\x4b\x12\x7f\x04\x60\x96\x88\xd6\x00\xec\x6c\x6e\x6e\x5a\xb7\x6f\xdf\xf6\xb2\xe6\xb5\x63\x40\x08\x1e\x8b\xff\x0f\x22\x11\x0d\x2e\xc2\x93\xc9\x24\xbb\x79\xf3\x26\x62\xb1\x98\x2c\x84\x50\x9d\x04\x92\xfd\x04\x1a\xe8\x2c\xc8\x3f\xfd\xf4\x65\xfc\x17\x27\xd6\xa3\x67\x64\x01\xd9\x9d\x8a\x6c\xf3\x4e\x3b\xaf\x27\x1b\xdf\x1c\xe3\xb5\xea\x74\xd7\x5a\x8c\xc0\x76\xb8\x9c\xfb\x6e\x20\xff\xdf\xa7\x3d\x3b\xff\x29\x4b\x98\x05\xb0\x00\xe0\x15\x00\x8d\x73\x5e\x7a\xf6\xec\x19\x77\xd4\x9a\x2b\x7d\x88\xf7\x95\x48\x0c\xd8\xfa\x62\xae\x5e\xbd\xca\x4e\x9d\x3a\x65\x73\x2a\x44\x31\xd8\x9c\x51\x3f\x09\x0c\xf6\x6d\x85\x3f\xf9\xf9\x42\xfb\x17\x1f\xe5\xd4\x21\x26\xc0\xdc\x2e\xdf\x1f\xd9\xd8\x1a\x4c\x23\x04\x60\xe3\x18\x01\x3d\xc4\xb5\x27\x69\x6d\x6c\x32\xad\xfd\xbb\x10\xe2\xd3\x02\x62\x81\x6c\x6d\xb1\x1c\x11\x19\xba\xae\x5b\xf7\xef\xdf\xc7\xe2\xe2\x62\x50\xdf\xbf\x9f\x44\x62\x33\x98\xa3\x47\x8f\xe2\xca\x95\x2b\x38\x72\xe4\x08\x13\x42\xa8\xb0\xb5\xae\x92\x44\x94\x76\x1c\xe9\xe2\xa5\xc5\xf6\x6b\x03\xb9\xf0\x90\xc4\xed\xdc\x8e\x6f\x42\x36\x36\x85\xd9\x37\x01\x58\x07\xe3\x44\x9c\xef\x53\x3b\x13\x4f\x7a\xb5\xfb\x9a\x52\x9e\x25\x5b\x83\x63\x15\x40\x96\x88\x74\xd3\x34\x4b\xb3\xb3\xb3\x78\xf0\xe0\x01\x9c\x6c\xb1\x6f\x95\x24\x6c\x04\x43\xa8\xef\x81\x6f\x4c\x24\x36\x58\x0f\x03\xc0\x19\x63\x6c\x64\x64\x04\xe7\xce\x9d\x83\xaa\xaa\x32\x6c\x06\x3b\x0e\x3b\x22\xa5\x49\xa0\x3f\xa9\x85\x7e\x72\x61\x39\xf6\xd9\xf0\x46\xe4\x4c\xc4\x64\x51\x77\xb0\xf7\x4b\x36\x36\x8a\xa9\x44\x93\x26\x09\x40\xda\x55\x2e\xc0\x09\x3c\xd3\x66\xae\x3e\xed\xdd\xf9\x6e\x3a\xa9\x3f\x34\x42\x7c\x1e\x84\x25\x00\xab\x00\xb2\xb0\x75\x29\x4a\x2b\x2b\x2b\xfc\xe1\xc3\x87\x58\x5f\x5f\x7f\x67\x24\x61\x23\x98\xda\x08\x74\x20\x44\xe2\x3e\x8c\x5f\xbb\x76\x8d\x0d\x0f\x0f\x33\x49\x92\x64\x21\x84\x02\x20\x4e\x44\x5d\x42\x88\x6e\x02\xa5\xa3\x26\x1b\x1c\xce\x44\x7e\x76\x7a\xad\x6d\xa4\x47\x53\xd2\x12\xb7\xd7\x49\x95\xc5\x2a\xdc\xc8\x52\xbb\x4c\x45\xd3\x18\xdf\x6b\x87\x26\x49\x42\x5d\xe1\xda\x8b\xae\xc2\xf4\x0f\x3d\xfa\xc4\x72\xbc\xf8\x84\x33\x2c\x3b\x8a\x3f\x19\x21\x44\x0e\xb6\xdc\x42\x29\x9f\xcf\xf3\x89\x89\x09\xcc\xcd\xcd\x05\xde\x5a\x39\x4c\xb6\xf7\x67\x58\x3f\xca\xf8\x85\x35\xbf\xef\xd6\xb3\xd7\x61\x2a\xed\x77\x74\x74\x60\x64\x64\x04\xc3\xc3\xc3\x4c\x96\x65\x19\xf6\x9d\xec\x28\xec\x0c\xed\x49\x00\xdd\xc4\x91\x4a\x14\xe4\xe1\xe3\x1b\x91\x73\xc3\x1b\x91\xd3\xc9\x9d\x50\x2a\x54\x26\xc5\x75\x26\xd7\xea\x45\x8c\x86\x30\xd5\xe5\xd1\xae\xcf\x41\x18\x01\xc1\x75\x85\x6b\x4b\x9d\xc6\xfc\xdc\x91\xc2\xf7\x8b\x89\xe2\x53\x43\xe6\x4b\x20\xac\xc2\x56\xfe\xc9\x02\xc8\x03\xd0\x01\x94\x36\x37\x37\xf9\xe4\xe4\x24\xa6\xa7\xa7\xdf\x0a\x01\xd8\x2a\x4c\xbd\x29\xac\xb6\x82\x66\xdf\x7b\x3f\x37\x8b\xd9\x73\x02\xce\x42\x1b\x64\x4b\x40\xca\xb0\x1d\x29\x06\xdb\x99\xba\x84\x10\x49\x26\xa8\xbb\xbd\x28\x7d\xd4\x9b\x0f\x0f\x0d\x6c\xaa\x27\x52\xdb\x4a\x7f\x87\x21\x77\x4a\xdc\xb9\x13\x0e\xdf\x89\x0b\x00\xf9\xc4\xa0\xbd\x16\x44\x00\xda\xb5\x08\x14\x65\x6e\x64\xda\xcc\x57\xcb\x1d\xc5\xf9\x85\xce\xe2\xec\x7a\xcc\x9c\x2b\xca\x7c\x15\x84\x0c\x6c\x02\x30\x4b\x44\x79\x61\x0b\xf0\x1a\x42\x08\x6b\x7b\x7b\x9b\x8f\x8f\x8f\x63\x66\x66\x26\xe8\xdc\x1b\xe9\x9f\x77\x86\xa9\x17\x81\xfc\xac\x91\x86\x82\xb0\xcd\x62\x7c\xcb\x46\x46\x46\xd8\xd9\xb3\x67\xe1\xa8\x10\xbb\x51\x49\x85\xed\x4c\x71\x87\x0a\x88\x13\xa8\x8b\x09\x74\xb6\x95\xa4\x9e\xe4\x4e\xa8\x3f\xa9\x29\xe9\xa4\x2e\x77\x27\xf4\x50\x32\x5a\x92\x62\x8a\x45\x8a\xcc\x49\xa6\xca\x34\xec\x89\x58\x35\x1e\xe2\xcd\xbc\xc6\x09\xdc\x62\xc2\x32\x42\x5c\xdf\x0e\x97\xf3\x9b\x11\x33\xb3\x1e\x2b\xad\xae\xc7\xcc\xa5\x6c\xd4\x5c\x2c\xc9\x22\x2b\x80\x2c\x08\x39\xe7\x2a\x2a\x2f\x84\xc8\xc3\x96\x15\x30\x84\x10\x96\x65\x59\xd6\xda\xda\x1a\xa6\xa6\xa6\xdc\x8c\xf2\x41\x76\xa8\xa2\x8d\x1f\x86\x7c\x76\xb6\x7a\x81\xdc\x48\x3d\x4d\xb5\xc5\x18\xc3\xc0\xc0\x00\x86\x86\x86\x70\xfc\xf8\x71\x30\xc6\x18\x11\xc9\x8e\xb6\xa7\x22\x84\x88\x12\x51\x14\x76\x94\x8a\x03\x88\x09\x21\x62\x04\x8a\x12\x10\x0b\x95\x29\x16\xb6\x58\x47\x5b\x49\x8a\xab\x26\x8b\x85\x2d\x16\x55\x2d\x16\x0d\x95\x49\x91\x38\xc9\x92\xb0\x6f\xa7\x94\x09\x56\x99\x09\xab\x28\x73\xa3\x28\x73\xc3\x90\xb9\xae\x2b\x3c\x5f\x08\xf1\x7c\x51\xe6\x5b\x16\x13\x1a\x20\x74\xd8\x52\x03\x1a\xec\x29\x49\x83\x3d\x2d\xe9\x00\x0c\xb2\xc5\xed\x4a\x44\xc4\xb3\xd9\x2c\x7f\xf1\xe2\x05\xc6\xc7\xc7\xeb\xad\x35\xeb\xf5\xef\xa1\xc3\x1c\x9a\xcb\xf8\x06\x31\xbe\x27\x38\x34\x34\xc4\x86\x86\x86\x90\x4e\xa7\x11\x0e\x87\x99\x9b\x70\xc9\x33\xdd\xa9\x00\x14\x87\xac\x74\xb7\xae\x98\xac\xe2\x60\x64\x00\xb2\x93\xed\xab\x7a\x25\x55\x7d\x76\xc8\x82\xad\x66\xe3\xbe\x0c\x21\x84\xeb\x20\x06\x80\x12\x11\xb9\x65\x96\x73\xac\x3c\x93\xc9\x70\x57\x2a\xca\xc9\xd0\xef\x3d\x0f\xef\xb4\x1e\x74\xee\x87\x1a\x73\x28\x88\xc4\x56\x61\x5c\x25\xe4\x8b\x17\x2f\xb2\xde\xde\x5e\xa4\x52\x29\x57\x77\xdd\x7d\xf8\xcb\x55\x2f\x76\x1d\xc5\x75\x1c\x2f\x06\x0e\xc6\x4d\xdc\x04\x00\xae\x64\xa4\xdf\xd6\x75\x2e\xce\x39\x87\xa6\x69\x3c\x9b\xcd\x62\x61\x61\x01\x4b\x4b\x4b\x08\x50\x64\x7e\x27\xfd\x73\x10\x98\xc3\x18\x81\xbc\x8e\x1b\x74\x22\x68\x14\xe3\x8a\x88\x5c\xbe\x7c\x99\xf5\xf5\xf5\x81\x88\xe0\xa4\x73\xab\x44\x1a\xf7\xfb\xce\x67\xef\x7e\x38\x4e\x52\x79\x0f\xd8\x3c\x8f\x65\x59\x7c\x6b\x6b\x0b\xb9\x5c\x0e\x9a\xa6\x61\x65\x65\x05\x8b\x8b\x8b\xf5\x8e\xdd\xbb\xff\xbd\xc1\x1c\x2a\x22\xb1\xce\xc1\xfa\xb5\xd9\x32\x8c\x73\x1b\x05\xf1\x78\xdc\x4d\xb3\x57\xb1\x4c\x26\x03\xc3\x30\x00\x00\xd3\xd3\xd3\x15\x31\x3a\x47\x31\x07\xd8\xdb\x0f\x41\xe7\xfc\x5e\x62\x0e\x2d\x91\x18\x50\xb7\x9f\x23\xbe\x0d\xcc\x8f\xd6\x84\xb1\x9a\x6d\xed\x7e\xbf\xb2\xd7\xed\x6f\x06\xd3\x4c\xfb\x6f\x13\x53\xcf\x3e\x64\xcc\x9e\x4e\x0c\xea\xbc\x66\xdf\x37\x52\x67\x10\x26\x08\xeb\x67\xef\x02\xd3\xc8\x31\x7f\x88\x98\xfa\x05\xcd\x54\xd2\x02\xcc\xdb\x68\xa3\x19\x4c\x2d\xf6\x47\x0c\xaa\x97\xb0\xb5\x0b\x4f\xbf\x2f\x35\x8a\xa9\xad\x8f\xef\x13\xe3\xd7\x46\xd0\x22\xef\x6d\x60\x6a\x8f\xb9\xb6\x33\x3f\x48\xcc\xff\x00\xaf\x7b\x44\x0e\x96\x2e\xd3\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe1\xff\xf0\x7b\x3b\x4e\x00\x00") + +func web_uiV2AssetsAppleTouchIcon144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsAppleTouchIcon144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng, + "web_ui/v2/assets/apple-touch-icon-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png", + ) +} + +func web_uiV2AssetsAppleTouchIcon144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng() (*asset, error) { + bytes, err := web_uiV2AssetsAppleTouchIcon144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsAppleTouchIcon152x15208c9aa1c11a83650b824e3549b33a832Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x4f\x40\xb0\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x98\x00\x00\x00\x98\x08\x06\x00\x00\x00\x18\xc2\x20\x21\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x79\x78\x1c\xc9\x75\x27\xf8\x7b\x91\x59\x59\x27\x0a\x40\xe1\x06\x01\x90\x04\x49\x80\x04\xd9\x68\x36\xd9\x27\x9b\xdd\x6c\xf5\x25\xb6\xa4\x56\x6b\x24\xb9\xbd\xb2\x65\x8d\xec\x59\x79\x76\x3f\xef\xee\xac\xd7\x3b\xab\xdd\xf5\x37\xf3\xed\x8c\x77\xd7\xdf\xec\x7c\xf3\xf9\xf3\xe7\xf1\xce\x6a\x34\x5a\xd9\xb2\x65\xc9\x96\x2c\x79\xd4\x2d\xb5\xfb\x52\x77\xb3\xef\x6e\xb2\x9b\xf7\x4d\x10\x04\x40\xdc\x28\x14\x0a\x75\x66\x65\xc6\xdb\x3f\xf2\xa8\xac\x44\x16\x0e\x1e\x1e\x7b\xbc\x81\xaf\x90\x99\x71\xbc\x7c\x11\xf1\xe2\xbd\x17\x2f\x5e\x44\x12\x00\x81\xda\x20\x03\xe2\x36\x92\x7e\xb3\xe1\x76\xc3\xbf\x15\xc1\xc1\x71\xa3\x6d\x15\x94\xff\x3f\x6b\x58\xc2\x13\x29\x51\x0b\x14\x9e\xab\x37\x0f\xea\x5c\xeb\xfd\x82\xd2\xfd\xf0\xd6\x82\x5f\x2f\xce\x9f\xb6\x5a\xfc\xad\x84\x15\x94\x16\x84\xbb\xf0\xc5\xfd\xbd\x83\x45\x58\x9b\x5b\xac\x87\xa3\xf8\x5f\x54\x2f\xff\x7a\x46\xc5\xdf\x05\x0e\xe6\x84\x8d\xe2\xba\x5a\xfd\xff\x3e\xc0\x5a\x11\x6e\xa6\xa3\xfd\x65\x83\x60\xdd\x2a\x42\x5a\xcf\xbb\xfe\x53\xc0\xfa\x7b\x1f\x84\xe7\x2a\x50\xdb\x98\x41\xf7\xfe\x38\x81\x60\x18\x5e\x31\xeb\x87\x5b\x0f\xe6\x6a\xb0\xfc\xef\xf4\x97\x93\x01\xf9\x6f\x27\x2c\x6f\xdc\x6a\xb0\xfc\xef\xff\xfb\x08\xeb\xef\x44\x58\x8b\xab\x6c\xa4\x22\xb7\x12\xd6\xff\x1f\xd6\x11\x6e\x46\x94\x05\x71\x1d\xff\x7d\x50\x5a\x3d\x38\x41\xb8\x6c\x74\x34\xd4\xcb\x7f\xab\x60\xad\x56\x76\xa3\x69\xff\xd9\xc3\x52\x7d\x09\xb2\x5e\x46\x5f\x9e\xf5\x74\x50\x50\x3e\x7f\x87\xd5\x53\x08\x57\x23\xe8\xb5\xde\xb1\x5a\xfe\x55\x61\x75\x75\x75\x09\x45\x51\xdc\x88\x8e\x8e\x0e\x1c\x3b\x76\x0c\x07\x0e\x1c\x70\xf3\xcf\xcd\xcd\xa1\x58\x2c\x0a\x00\x98\x98\x98\x90\x6d\x6d\x6d\x62\x6e\x6e\xce\x0f\x77\x35\xbc\xea\xb5\x49\xbd\xf6\xfa\x3b\x0d\x8b\xea\x14\x0c\x02\x54\x6f\x4a\xea\x2f\xe3\x47\x6e\x35\xd8\xeb\x81\xb5\x5a\xd8\x68\x7e\x00\xc0\xe0\xe0\xa0\x68\x6d\x6d\x45\x3c\x1e\x47\x73\x73\x33\x1a\x1a\x1a\x00\x40\x10\x11\x88\xdc\x26\xa9\x69\x3c\x66\x76\xd3\xec\x7b\xe9\xdc\x33\xb3\x04\x80\xeb\xd7\xaf\xc3\x34\x4d\x4c\x4d\x4d\x41\xd7\x75\x5c\xb8\x70\xa1\x5e\xdd\x36\x82\x77\xbd\xf6\xfd\x3b\x01\x6b\x3d\x66\x0a\x6f\xf0\x73\xb8\xd5\xcc\x13\xb7\xd2\xd8\x77\x23\xf0\x00\x40\xf6\xf6\xf6\x8a\xae\xae\x2e\x6c\xda\xb4\x09\x0d\x0d\x0d\x88\x44\x22\x2e\x17\x65\x66\x57\x34\x13\x91\x0a\x40\x80\x21\x42\x92\xd4\x90\x49\xaa\x22\x49\x25\x86\x4a\x20\x01\x00\x0c\x96\x92\x60\x18\x0a\xeb\x15\xc1\x86\x29\x58\x82\x60\xd8\x04\x26\x89\x48\x32\xb3\xb4\x89\x4f\x02\x90\xb9\x5c\x0e\xf3\xf3\xf3\x98\x9f\x9f\xc7\x47\x1f\x7d\x14\x54\x1f\xbf\xed\x31\xa8\x4d\xd6\xca\xfb\xb7\x16\x96\x9f\x83\xad\x27\xdc\x10\xd7\xf8\x1b\x80\xe5\x86\xbd\x7b\xf7\x8a\xae\xae\x2e\x74\x76\x76\x22\x14\x0a\x55\xf5\x3b\x86\x0a\x40\x53\x25\x69\x71\x5d\x49\x34\x17\xd4\x9e\xe6\xa2\xda\x9f\x28\xab\x3d\x8d\x45\xa5\xb7\xa1\xac\x76\x87\x4c\x6a\x0a\x99\x94\x0c\x49\x4a\x10\x3b\x04\x66\x35\x18\x13\x24\x03\x86\x29\xb8\x64\x08\xce\x55\x14\xce\x96\x42\x72\x7e\x39\x6c\x4c\x67\x23\xe6\xf8\x52\xc4\x18\x5d\x8a\x18\xa3\x99\x98\x31\x5d\x08\x99\x05\x49\xd0\x01\x18\x0e\x11\x12\x91\x2c\x14\x0a\x72\x7a\x7a\x1a\x57\xaf\x5e\xc5\x95\x2b\x57\x6e\x79\xdd\xff\xb6\x05\x87\xc0\xea\x89\xc0\x20\x31\xe6\xcd\x1f\x14\x17\xc4\x65\xfc\x14\xee\x2f\xe7\xcd\xe3\xcf\x5f\x8f\xab\xb9\xd7\x68\x34\x2a\xb6\x6d\xdb\x86\xc1\xc1\x41\xb4\xb4\xb4\x00\x96\x6e\x29\x00\xa8\x42\x22\xd2\x50\x56\x52\x6d\x39\x6d\x4b\xe7\xb2\xb6\xb7\x33\xab\xed\x6f\x2e\x84\x86\x22\x86\xe8\x11\x8c\x24\x98\x04\x08\x00\x33\x00\xb2\x6e\x6b\x86\x1d\x03\x4c\x20\xb2\xb3\x78\x03\x59\xc9\x8e\x54\xb5\x92\xd9\x30\x05\xd2\xf9\x90\x39\xb2\x90\xa8\x9c\x9d\x6e\xd0\x8f\x4d\x37\x94\x4f\xce\x27\x2a\x63\xc5\x90\xcc\xb1\x43\x74\xd6\x4f\x8e\x8d\x8d\xe1\xc2\x85\x0b\xb8\x7a\xf5\xea\x7a\xb8\x9b\xb7\xcd\xd6\xc3\x59\xfe\x93\xc3\xda\x28\x07\x5b\x8d\x48\xd6\x4b\x44\x41\x71\x37\xcc\xc9\x0e\x1f\x3e\x2c\xba\xba\xba\x1c\x4e\x65\x71\x28\x93\x62\x9d\x59\xad\xbf\x2f\x13\x39\xd0\x9b\x09\x3f\x94\xca\x87\xf6\x69\x26\x75\x02\xa4\x7a\x2b\x6c\x91\xd4\xca\x50\x2f\xde\x9b\x0e\x3b\x0f\xdb\x04\xe6\x94\x09\xba\x32\xb8\x54\x0a\xc9\xd1\xb9\x44\xe5\xe8\x58\x73\xe9\xcd\x6b\xcd\xa5\xf7\x16\xe2\x95\x69\x26\x14\x00\x18\xcc\x6c\x94\xcb\x65\x79\xf9\xf2\x65\xbc\xf3\xce\x3b\x1b\xd5\x41\x81\x9b\xd3\x63\x6f\x2b\x2c\xf2\x47\xd4\x79\x61\x3d\x02\x0a\xe2\x78\xfe\xfb\x8d\x5e\x11\x50\xbe\x06\x8f\xdd\xbb\x77\x8b\xdd\xbb\x77\xa3\xa9\xa9\xc9\x21\x2a\x55\x48\x24\x3a\x97\xb5\xfe\x1d\x73\xb1\x4f\x6e\x5d\x88\x3e\xd9\x50\x56\x86\x05\x23\xe6\x54\x90\x41\x20\x87\xc7\xb8\xf7\xd5\xd4\x5a\xa2\x22\x37\xa6\x5a\xc6\x4b\x38\x56\xba\xcd\xef\x6a\xe2\x9c\x5c\xe4\xc9\x5d\xfb\x56\x86\x29\x38\xbd\x18\x35\x3e\xba\xd4\x56\x78\xee\x52\x5b\xf1\xf5\x4c\xd4\x98\x64\x42\x09\x80\x6e\x9a\xa6\x4c\xa7\xd3\xf2\xd8\xb1\x63\x18\x1b\x1b\x5b\x4d\xc7\x59\x6d\xa0\xaf\xb7\x2f\x6e\x3b\xac\x20\x25\x3f\x88\x5d\xfa\x43\x3d\x02\x41\x9d\xfb\xf5\x8a\xdf\xba\x62\x31\x12\x89\x88\x3b\xef\xbc\x13\xbb\x76\xed\x82\xa6\x69\x02\x80\x06\x46\xa4\xb1\xa4\xb4\x6f\x9f\x8f\x3d\xba\x73\x26\xf6\x85\x96\x7c\xe8\x7e\x01\x8a\x55\xfb\xd9\x2b\xbf\xec\xc8\x1a\x16\x56\x65\x3f\x8c\xea\x2c\xb1\xb6\x9c\x0f\x96\xff\xea\xe4\xf1\xf0\x35\x17\x16\xd7\xf0\xba\x15\xe5\x99\x00\x53\x20\x3d\xd5\x50\x7e\xfd\x4c\x57\xfe\xcf\x47\x53\xa5\x0f\x4a\xaa\x4c\xc3\x16\xa3\x73\x73\x73\xf2\xdc\xb9\x73\x38\x7f\xfe\xfc\x7a\x27\x53\x6b\xb5\xf3\x6a\x7d\x75\x5b\x60\xdd\x88\x92\xef\x0d\xeb\x65\xa1\x1b\x1d\x31\x35\xe1\x9e\x7b\xee\x11\x43\x43\x43\xd0\x34\x4d\x25\x22\x95\x18\xb1\xce\xac\xd6\x7f\xc7\x54\xe2\x17\xfb\x17\x22\x5f\x0c\x1b\xa2\x8f\x36\x2c\xed\x7d\x61\x2d\xb9\x18\x94\x97\x01\x90\xa7\x60\x3d\x39\xe9\x24\x32\xad\x8c\x67\x47\xe7\x63\x63\x39\x6c\x9e\xbd\xd0\x5e\xf8\xde\xe9\xae\xfc\x5f\x2d\x45\x8c\x59\xd8\x22\x74\x61\x61\x41\xfe\xe5\x5f\xfe\x65\x3d\xd1\xb5\x9e\xfb\xd5\xc2\x6d\x85\x55\x8f\x83\xad\xc6\xbd\x82\xc2\x7a\x47\xc5\x5a\x65\xbd\xcf\x72\x70\x70\x50\xdc\x75\xd7\x5d\x48\x26\x93\x02\x80\x46\x12\x89\x9e\xa5\xf0\xd0\xfe\xf1\x86\x7f\xd4\x9b\x89\x7c\x56\x30\x92\x8e\x62\x0e\xf8\x74\x23\xcf\xb5\x5e\x08\xca\xb7\x11\x58\xde\xbc\xf5\xde\xe5\x87\x5d\x0f\x1f\xaf\xb0\xd6\x15\x9e\xb8\xdc\x5a\xfc\xfe\xb1\xde\xec\x77\xd3\x31\x63\x0c\x84\x02\x33\x1b\x0b\x0b\x0b\xf2\xc3\x0f\x3f\xc4\xf8\xf8\x78\x3d\x29\xb3\x5e\xf1\xe7\x2d\x7b\x5b\x61\xdd\x2c\x07\xbb\x1d\x41\x00\x90\xcf\x3c\xf3\x8c\x68\x6f\x6f\xb7\x08\x0b\x14\xeb\xca\x6a\x43\xf7\x8e\x25\xbf\xd6\xb7\x18\xf9\xac\x22\x29\x59\xed\x11\x4f\xf7\x91\xc3\x25\xd8\xee\x75\xaa\x8a\x2f\xb2\xbb\x97\x9d\xbc\x08\xa0\xaa\x75\xc2\x42\x00\x6c\x47\xcc\xfa\x61\x3b\xf0\xbd\x22\xda\x3f\x1d\xad\x03\x4b\x57\x79\xf2\x42\x7b\xe1\x4f\x8f\xf5\x66\xff\x24\x13\x31\x26\x00\x94\x98\xd9\xb8\x72\xe5\x8a\x7c\xed\xb5\xd7\xfe\x4e\x98\x38\x1c\x0e\x56\x4f\x2f\xaa\xa7\x3f\xf9\xd3\x82\xa8\xdd\x9f\x7f\xcd\x20\x84\x10\x0f\x3c\xf0\x00\x06\x06\x06\x10\x0a\x85\x34\x00\x91\x64\x51\xe9\xbe\xff\x5a\xe3\x3f\xde\x31\x17\xfd\xb2\x2a\x29\xe5\x98\x0c\x00\x4f\x87\xba\x81\x6d\x15\x27\x78\x6e\xe8\xe6\x66\x80\xa9\x6a\x7e\xd8\x08\x2c\xc7\xa2\x5f\x55\xed\x9d\x78\x0f\x9d\xf8\xd2\x9c\x18\xe7\xce\x49\x59\x2f\xac\x62\x48\x8e\x1c\xdf\x94\xfb\x83\x13\x9b\x96\x7f\x54\x56\x39\xc3\xcc\x25\x5d\xd7\x8d\x77\xdf\x7d\x17\x17\x2f\x5e\xac\xa7\x7c\x3b\x71\xc0\xea\x5c\x68\x35\x65\xfd\xa6\x61\x6d\xd4\x92\xbf\xd1\xb0\x6e\xf1\xd8\xdd\xdd\x8d\x4f\x7c\xe2\x13\x88\xc5\x62\x2a\x00\x2d\x6c\x8a\xd4\xf0\x64\xe2\xb3\x77\x8f\x27\xff\x69\xc4\x10\x7d\xd5\xf9\x58\xb5\xdb\xfc\x6a\x93\xbf\xa3\x9c\x3c\x4e\xa8\x15\x69\x37\x06\x2b\x48\x2c\xae\x16\xe7\x85\xe7\x9f\xbb\xfa\xe1\xae\x06\x8b\xc1\xc8\x44\x8d\x0f\xde\xde\xba\xf4\xbb\x23\x2d\xc5\x77\x4c\xe2\x1c\x00\x7d\x7c\x7c\x5c\xbe\xf9\xe6\x9b\xc8\xe7\xf3\x5e\x90\xeb\x69\x77\xa0\x96\x68\xea\xe5\xbf\x29\x58\xab\x89\xc8\x8d\xd8\x40\xd6\xcb\xb1\x02\x4d\x11\x77\xdd\x75\x97\xd8\xb7\x6f\x1f\x14\x45\xd1\xc0\x48\x74\x2f\x69\x43\x0f\x8f\x34\xfd\x76\xc7\xb2\xf6\x28\xd8\x63\xbb\x0a\x50\x88\x1c\xe9\xe5\xef\x11\x66\xbb\x72\x5e\x65\xda\xf3\x78\xc3\xb0\xd6\x63\x3c\xab\x77\xef\x7f\xbc\x01\x58\xa6\xe0\xc2\x95\xd6\xe2\x9f\xbe\xd5\x9f\xf9\x83\xa5\xb0\x31\x46\x44\x25\x5d\xd7\x8d\x57\x5e\x79\x05\x13\x13\x13\x41\x1c\x05\xd8\xb8\x2d\xab\x1e\x77\xda\x30\x2c\xc5\x2e\xc8\xf6\x95\x50\xdb\x8c\xe4\x49\xab\x77\xf5\x36\x11\xd5\xf9\x39\x79\x6b\xf2\x44\xa3\x51\x3c\xfd\xf4\xd3\xb4\x7d\xfb\x76\x21\x84\x88\xaa\x26\xb5\xde\x77\x2d\xf9\x2b\x9f\xb8\xdc\xfc\xfb\xc9\x72\xe8\x0e\xcb\xca\xee\xe9\x5d\xf2\xe8\x52\x64\xeb\x33\x36\x75\x38\xa2\x86\x40\x96\xf8\xf3\xea\x3b\x8e\x98\xbb\x15\xb0\xfc\xe9\x0e\xf5\xd9\xb0\xac\x32\x55\xae\xe3\x5b\x20\xaf\xe6\xb9\x41\x58\x02\x14\x4a\x15\xd4\xfd\x3b\xe6\x62\x8f\xe4\xc3\x72\x3c\x1d\xab\xcc\x08\x45\x18\x3b\x76\xec\x60\xc3\x30\x30\x33\x33\xe3\x6f\x6f\x87\xa3\xac\xd6\x7f\xfe\x38\xd4\x89\xdb\x30\x2c\xc5\x6d\x55\xeb\xca\x01\xcf\xf0\x5c\xa9\x4e\x9e\xb5\x7e\x4e\x59\xe9\xc4\x75\x77\x77\xd3\xe7\x3e\xf7\x39\x34\x34\x34\xa8\x04\x8a\xb7\x14\x42\x3b\x3f\x75\xb6\xe5\x5f\xed\x9c\x8d\xfd\xd7\x0a\x8b\xb8\xdb\xf1\x5e\x1a\x75\xf5\x21\xcf\x90\x76\x89\xc3\x43\xe7\x6e\x1c\x6a\x89\x68\xa3\xb0\x5c\x62\xf4\xc2\x25\x0f\x57\x21\x1f\x1c\x3f\xdb\xf1\xe1\xe4\x0d\x37\x03\x0b\x04\xcd\x14\x6d\xdb\x16\xa2\x9f\x49\xe8\x8a\x36\xd5\xa8\x9f\x33\x15\x94\xda\xdb\xdb\x8d\xe3\xc7\x8f\x7b\x75\xa0\xa0\xfe\xf2\x5f\x19\xb5\x1c\xcb\x9f\xff\xa6\x60\x11\x56\x9a\x08\x10\x10\x17\x68\x46\xf0\xc5\xfb\x43\xa0\xc1\x14\x80\xd8\xbf\x7f\x3f\x86\x87\x87\xa1\xaa\xaa\x46\xa0\xe4\x8e\xb9\xe8\xc3\x8f\x5c\x69\xfe\xdd\x98\x2e\xb6\x13\x03\x2b\xe4\x86\x23\xa6\x02\xc4\xd7\x5a\xe2\xad\xa6\x09\x7c\xb0\x98\x01\x26\x86\xa1\xb0\x5e\x0c\xc9\x42\x2e\x6c\xe6\x96\xc3\x46\xa6\x18\x92\x85\x62\x48\x16\x74\x45\x96\x4c\xc1\xd2\x14\x30\x88\x01\xc1\x50\x43\xa6\xd0\x22\x06\x45\xa2\x15\x25\x16\xd3\x95\x44\xa2\xac\x24\x13\x65\x25\x11\x36\x44\x44\x61\xa8\xe4\xb5\x75\x79\xf1\x72\x50\x61\x5f\xed\xfc\x5c\xd6\x8b\xab\x9b\x5e\x1f\x16\x88\xe5\x78\x53\xf9\x8f\xfe\x72\x78\xf6\xeb\x44\x94\x3d\x7e\xfc\xb8\xf1\xc1\x07\x1f\xac\x47\x31\xbf\x11\x33\xc5\x86\x61\xa9\x9e\x04\x51\x27\xe3\x7a\x26\x01\x41\x76\xb0\x20\xa2\x14\xfb\xf7\xef\xc7\xbe\x7d\xfb\x04\x11\x69\x8a\x49\xa9\xfb\xaf\x25\xbf\x7a\xd7\x44\xc3\xd7\x55\x46\x02\xc0\x0a\x2a\xb1\xee\xec\xc5\x66\x9b\xcb\x38\x03\xde\xeb\xa3\x05\xd4\xa6\x33\xb1\xdd\x91\x55\xf1\xc7\x00\x2a\x82\xf5\xe5\x88\x99\x9d\x6e\xd0\x27\xa7\x93\xe5\xb1\xf9\x78\x65\x7a\x29\x62\xcc\x96\x43\x72\x59\x12\x0a\x0c\x6b\xc9\x06\x96\x07\x84\x61\xbb\xe0\xd8\xa8\x91\x80\xe5\xe2\xa3\x02\xa4\x02\x88\x90\xe5\x9d\x91\x88\x97\x95\xe6\xe6\xa2\xda\xd9\xbe\xac\x75\x77\x65\xb5\x9e\xd6\x7c\xa8\x3d\x5a\x51\x12\x82\x21\x18\x80\x35\x63\xe5\xea\xa2\xb9\x2b\xb5\x3d\xf8\x79\xb8\x99\x5b\x7b\x67\x30\xd8\x05\xac\xb8\x2a\x2c\x5d\xe1\xc2\xb1\xde\xe5\x0f\x01\x44\x98\x39\x97\x4c\x26\x83\xfa\x47\xf8\xee\xa5\xaf\xcf\x82\xfa\xb8\x5e\xbf\x6f\x08\x96\x8a\x95\x4a\xdb\x7a\x4c\x14\x7e\xea\x5e\x2d\xdd\x2d\xff\xe4\x93\x4f\x8a\x2d\x5b\xb6\x08\x66\x8e\x44\x2a\xa2\xfb\xb1\x8b\xcd\x5f\xdf\x3e\x1f\xfd\xaa\xe3\x6f\x65\x85\x5a\xd6\xe4\x34\xab\xd7\xa4\x00\xb7\xe1\xab\xc4\x58\xc3\x15\xd8\xee\x0e\x5b\xbf\xc9\x6b\x32\x37\xd9\x58\x1e\xbb\xd6\x5c\xba\x7c\xbd\xb1\x7c\x39\x1b\x31\xa6\x4c\xe2\x0c\x80\x1c\x11\xe5\x98\xb9\x40\x44\x25\x66\x2e\x11\x91\xc1\xcc\x3a\xc1\xf2\xe9\xb2\xdd\x6c\x1c\xc7\x42\x8b\xc8\x00\xc1\xcc\x2a\x00\x8d\x01\x4d\x17\xac\xe9\x51\x19\x5b\x8c\x56\x62\x23\xa9\x62\x82\x40\x49\xcd\xa4\x54\x5b\x4e\xdb\xdc\x9b\x09\x6f\xdf\x9c\x8e\x6c\x6f\xcd\x87\x3a\x55\x49\xaa\x33\x58\x5c\xb6\xe4\x11\xc9\xe4\x5d\x15\x80\xc7\xa6\x06\xa0\x3a\xff\xb4\xf5\x47\x10\x24\xb1\x7c\x67\xcb\xd2\x8f\xae\x35\x97\xce\x13\x91\x01\x40\x56\x2a\x15\xa7\x15\xd6\x33\x49\xab\x67\x66\xf2\xc2\xb8\x29\x58\x8e\x5b\x8b\x3f\x93\xff\x05\xfe\x7b\x3f\x12\xf5\xc4\xa1\x1b\x3e\xf3\x99\xcf\x88\xee\xee\x6e\x15\x40\xa4\xa1\xac\xf6\x3d\x75\xae\xe5\x5f\x77\x67\xb5\xc3\xb5\x53\x77\x9f\x2c\x73\xe3\xc8\x5e\x4e\x71\x78\x52\x55\xf9\xad\xe6\xa8\xa6\x33\x11\x2a\x42\xea\xe3\xcd\xa5\x91\x0b\xed\xf9\x93\x13\x4d\xe5\xf3\x85\x90\x9c\x02\x21\x0d\xc0\x22\x2c\x50\x0e\x40\x01\x40\x89\x88\x74\x00\x86\xed\x28\xe8\x5c\x5d\xaf\x55\x17\x23\x8b\x32\x84\x7d\xef\x70\x69\x9b\xa3\x41\xb3\xaf\x31\x00\x31\x5d\xe5\xc4\xf5\xa6\x72\xd3\xf5\xa6\x72\xd3\x87\x7d\xd9\xd6\xe6\x42\x68\x73\xff\x42\x74\xcf\xc0\x6c\x6c\x4f\xaa\xa0\xb6\x93\x07\xe3\x15\xf8\x63\xc5\x90\x59\x91\xc6\x00\xce\xb7\x17\x3e\x38\xd9\x9d\x7b\x11\x84\x59\xbb\x2e\x72\x64\x64\xc4\xdb\xfe\xf5\xc4\x5e\xbd\xb0\x11\x53\xc5\xba\x60\x79\x45\xa4\x13\xb9\x1e\x63\xaa\x37\x9f\xff\x5a\x13\x42\xa1\x10\x0e\x1f\x3e\x2c\x3a\x3b\x3b\x55\x30\x62\xcd\x45\x75\xe0\x33\x67\x5a\x7f\x3f\x55\x50\xef\x5f\x69\x17\xaa\x2a\xbd\xec\x11\x0d\xce\x84\x6f\x85\x1e\x06\x80\xd9\x23\x32\xc1\x58\x8a\x98\xe9\xb3\x9d\xf9\xe3\xe7\x3b\xf2\x47\xb3\x61\xf3\x2a\x80\x79\x10\xe6\x61\x13\x16\x33\xe7\x6c\x82\x72\xfc\xb2\x1c\x16\x0f\xd3\x34\x65\xb9\x5c\xb6\xe1\x32\xc6\xc7\xc7\x57\xd4\x47\x51\x14\x6c\xda\xb4\xc9\xc2\x96\x08\xd1\x68\xd4\x69\x27\xd7\x43\x96\x88\x54\x66\xd6\x00\xc4\x88\x28\x66\x10\x27\xe7\xe2\xfa\xd9\xf9\x78\xe5\xc3\x63\xbd\xd9\xce\x4d\x99\xf0\xee\x3d\xd3\x89\x7b\xb7\x2c\x44\xb6\x87\x24\x69\xde\xd1\xe2\xf2\x6f\xef\x3c\xc4\x9b\x60\xdf\xce\x26\xf4\xb1\x37\xb6\x2d\xfe\x89\x14\xb8\xcc\xcc\xf3\x00\x4a\xd7\xaf\x5f\x97\xd7\xaf\x5f\xf7\xa2\x1b\xd4\xaf\xf5\xb8\xd4\x7a\xd3\x36\x04\x4b\xf5\x25\xfa\x89\xcb\x5f\x28\xe8\x65\xce\xf3\x8a\xfb\x50\x28\x84\x4f\x7e\xf2\x93\xe8\xea\xea\x52\x99\x39\xd6\x9a\x0f\x0d\x7d\xfa\x6c\xcb\x1f\x34\x15\xd5\x7d\x16\x97\xf7\xba\xb5\xd8\xc1\x99\xa2\xdb\x62\xc9\x9a\xfc\x51\xad\xbe\xe5\xea\xd1\xec\x4e\xc4\x16\xe2\x95\xe9\x8f\x37\xe5\xde\xbb\xdc\x56\xf8\xb0\xac\xf2\x18\x80\x59\xa0\x4a\x58\xb0\x74\x2b\xc3\x16\x81\xb2\x5c\x2e\xcb\xe5\xe5\x65\x5c\xbf\x7e\x1d\x1f\x7c\xf0\x81\x6c\x6d\x6d\x15\xf3\xf3\xf3\x6b\x59\xb2\x6b\x46\xad\x10\x02\xa9\x54\x0a\x42\x08\xd9\xdb\xdb\x2b\x9b\x9b\x9b\xd1\xd8\xd8\x88\x96\x96\x16\x87\xc3\xe5\x00\xa8\x44\xa4\x01\x88\x31\x73\xc2\x14\x94\xba\xd6\x5c\xba\x3c\xd6\x5c\x7e\xbf\x35\x1f\xda\x35\x3c\x99\x38\x30\x38\x1b\xdb\x13\x36\x29\xe2\xe5\x64\xfe\x15\x06\xa6\xaa\x3e\x96\x0f\xc9\xec\x2b\x03\xe9\xef\x94\x43\x7c\x96\x99\x27\x01\x64\xf3\xf9\xbc\xf1\xf6\xdb\x6f\x43\x4a\x19\xd4\x67\x75\xeb\xe0\x7b\x5e\x8f\x2e\xb6\x21\x58\x7e\x3e\x1c\x04\xbc\x5e\x43\xaf\x19\x1c\xb1\xc8\xcc\xb1\x54\x21\xb4\xf3\x1f\x9c\x6a\xfb\x66\x43\x59\xd9\xe3\x8a\x03\xf6\xd8\x30\x6c\x42\x71\xf5\x27\x58\xa2\xce\x6b\x7b\xf2\xb2\x30\xa7\xdc\x52\xc4\x4c\x7f\xd8\x97\x3d\x72\xa9\xad\xf0\xae\xae\xf0\x18\x08\x93\xf6\x88\xce\x10\x51\x81\x99\x5d\x0f\xd2\xf9\xf9\x79\x4c\x4d\x4d\xe1\xbd\xf7\xde\x0b\xe2\xd2\x6b\xb5\xc1\x86\xd2\x77\xec\xd8\x21\x3a\x3b\x3b\xd1\xdf\xdf\xef\xb8\x17\x09\x58\x62\x34\x42\x44\x09\x00\x29\x00\x9d\x60\x74\xa7\x0a\xea\xae\xfd\xe3\xc9\x47\x06\xe7\x62\xc3\x8a\x84\xea\xd8\xc4\xac\x41\xe6\x70\x6f\xeb\xd9\x24\x96\x2f\x0f\xa6\xff\xe8\x7c\x7b\xe1\xc7\x0c\x3e\x4b\x44\xb3\xcc\x5c\xfa\xe6\x37\xbf\x69\x6c\x10\xef\x8d\xe4\xbb\x61\x58\xe4\x4b\xa8\x37\xdd\xac\xb7\xe6\x14\x14\x27\x00\xe0\xe0\xc1\x83\x18\x1a\x1a\x52\x01\xc4\x9a\x0a\xea\xc0\x67\x4f\xb7\xfe\xbb\xe6\xa2\xba\xcf\xab\x6d\xb8\xc4\xc5\xa8\xba\x29\x7b\x67\x58\x4e\x1e\x3b\x8e\x3c\xe2\xb3\xa4\x99\x85\xe3\xdd\xb9\x77\x8e\x6f\x5a\x7e\xad\x1c\xe2\xcb\x00\x26\x61\x71\xad\x0c\x2c\x7d\x44\x07\x20\xe7\xe6\xe6\xe4\x95\x2b\x57\x70\xf2\xe4\xc9\xd5\xf4\x88\x7a\x57\x7f\xdd\xfd\x5c\x3a\x88\x73\x07\x2a\xcc\x87\x0e\x1d\x12\x5b\xb7\x6e\x75\x88\x4d\x05\x10\x01\xe0\x10\x5a\x37\x18\x3d\x1d\xcb\xda\x9d\x07\x46\x1b\x0f\xf7\x2e\x86\xb7\x0b\x47\xe7\xf2\xee\x66\x02\xe3\xa3\x9e\xe5\x57\xde\xec\x5f\xfa\x26\x08\xa7\x01\x4c\x00\x28\x9c\x38\x71\x42\xbe\xff\xfe\xfb\x37\x84\x17\x56\x32\x8f\x7a\x6d\x73\x43\xb0\xfc\x04\xb6\x56\x58\x0f\x27\x13\xfb\xf7\xef\xc7\xfe\xfd\xfb\x05\x80\x58\xbc\xac\x6c\x79\xe6\x74\xeb\x1f\xb6\xe5\x42\x07\xc9\xab\x99\x03\x1e\x7d\xcb\xeb\xec\x87\x00\xbe\x6a\x53\x20\x01\x12\x2c\x47\x53\xa5\x8b\x6f\xf5\x67\x9e\x4f\xc7\x8c\x53\x20\x8c\x01\x98\x06\x90\x86\x4d\x58\xe5\x72\xd9\x18\x1f\x1f\xc7\xcf\x7f\xfe\xf3\x40\xfc\xd6\x59\xd7\x8d\xe4\x5f\xad\xd1\x6b\xc2\xce\x9d\x3b\xc5\xd0\xd0\x10\x5a\x5a\x5a\x9c\x9d\x4c\x11\x66\x4e\x12\x51\x2b\x80\x6e\x45\xa2\x7f\x70\x26\x7e\xe8\x81\x6b\xc9\xc7\x13\x65\xc5\x75\x47\x62\x30\xc6\x9b\xca\xe7\x9f\xdb\x3d\xff\x7b\x15\x95\x8f\x02\x18\x03\x90\x1d\x1d\x1d\x35\x5e\x7a\xe9\xa5\x7a\xef\x5c\x37\x5e\xeb\x08\x37\x04\xcb\x6b\x68\xad\x67\x40\x0b\x02\x5a\xaf\x8c\xd8\xb2\x65\x0b\x9e\x78\xe2\x09\x41\x44\x91\x90\x41\xdd\x4f\x9f\x69\xfd\xd7\xbd\x99\xf0\x67\xab\x2f\x74\x96\x46\xac\xe0\xb7\x2b\x3a\x7c\xab\xea\x82\x5c\x0d\xc5\x90\xcc\xbd\xbd\x75\xe9\xa5\x73\x1d\xf9\xd7\x6c\xe5\x76\x82\x88\xe6\x61\xe9\x3a\x7a\xa5\x52\x31\x4e\x9f\x3e\x8d\x53\xa7\x4e\xa1\x54\x2a\x6d\xb4\x41\xeb\x0e\x98\x75\xd4\x1d\x01\x79\xea\x8e\x6e\x22\x12\x1d\x1d\x1d\xb8\xef\xbe\xfb\xd0\xde\xde\xee\x10\x5a\xcc\x26\xb4\x4e\x30\xfa\x1a\xca\xca\x1d\x0f\x5f\x69\xfa\xdc\xb6\xf9\xe8\x10\x01\x62\x39\x6c\xce\xff\x68\x78\xee\xdf\x64\x62\xc6\x5b\xcc\x3c\x42\x44\xe9\x4c\x26\xa3\x3f\xf7\xdc\x73\x28\x16\x8b\xeb\x95\x3e\xeb\xe1\x3a\xb7\x14\x16\x61\x25\x11\x05\x29\xee\xfe\xe7\xc0\x29\x6a\x7b\x7b\x3b\x3e\xfd\xe9\x4f\x23\x14\x0a\x45\x84\x44\xfb\x63\x97\x9a\xbf\x3e\x34\x1d\xff\xaf\xbc\x3a\x57\x8d\x07\x28\x80\x95\x26\x77\x1f\xfb\xb2\x5d\x8b\x27\x9a\xca\x23\xaf\x6d\x5f\xfc\x61\x3a\x6e\x7c\x0c\x60\x14\x96\x48\xcc\x02\x28\x48\x29\x8d\x13\x27\x4e\xe0\xf4\xe9\xd3\x28\x16\x8b\x7e\xb4\x6e\x47\x58\x4b\xa4\xae\x47\xb4\xb8\x69\xcf\x3c\xf3\x8c\xe8\xe8\xe8\x70\x74\xb4\x18\x80\x56\x00\x3d\x42\x62\xfb\x9e\xe9\xf8\x27\xee\xbd\x96\x7c\xf4\x95\x81\xc5\xef\x5c\x4d\x15\x5f\x24\xa2\x8b\xcc\x3c\x6b\x18\x46\xe9\xc5\x17\x5f\xc4\xe4\xe4\xe4\xba\xdf\xb3\x51\xbc\x6e\x05\xac\xb5\x94\xfc\xb5\x42\x0d\x15\x7f\xf1\x8b\x5f\x14\xa9\x54\x4a\x03\xa3\x69\xff\x44\xc3\x57\x1e\x1c\x69\xfc\x1d\x01\xd2\xdc\xdc\x81\xe2\x6f\xf5\x20\x89\xe5\xf1\xee\xdc\x3b\xef\x6d\x59\xfa\x71\x59\x91\xe7\x89\x68\x14\xd6\xec\x30\x07\x40\x9f\x9c\x9c\x94\xcf\x3f\xff\xfc\x7a\x74\xc4\x1b\x0d\xeb\x1d\xf5\x1b\x81\xb3\xe2\x7e\xe7\xce\x9d\xe2\x81\x07\x1e\x40\x28\x14\x72\xf4\xb3\x26\x00\xed\x60\x74\x36\x94\x95\xd4\x72\xd8\x9c\xb0\xd5\x81\x59\x00\x85\x23\x47\x8e\x48\x8f\xaf\xfe\x6a\xd2\xe7\xa6\xf0\xba\x59\x58\x5e\x11\xe9\x84\x40\xee\x84\x60\xaa\x05\x60\xcd\xf0\x9e\x7c\xf2\x49\xf4\xf5\xf5\xa9\x44\x94\xec\x5b\x0c\x1f\x7c\xfa\x74\xeb\x1f\xab\x92\x92\x80\x4f\xa1\x5f\xe5\xde\x1b\x18\x80\xae\x70\xe9\xc8\xb6\xcc\x4f\xce\x76\xe6\x5f\x64\xc2\x45\x58\x4a\x6d\x1a\x40\xa9\x58\x2c\x1a\x6f\xbd\xf5\x96\x77\x3f\xe1\x5a\x5c\xb8\x5e\x67\x04\x89\xc0\x1b\x51\x70\x11\x10\xbf\x9e\x7c\x35\x79\x1e\x79\xe4\x11\xb1\x7d\xfb\x76\x41\x44\xaa\x3d\xdb\x4c\x00\x50\xed\x55\x86\x2c\x80\xc2\x85\x0b\x17\xe4\x1b\x6f\xbc\xb1\x11\x42\xb8\x69\xbc\x6e\x14\x96\xbf\x5f\xd7\x0b\xb4\x26\x0c\x0e\x0e\x8a\x43\x87\x0e\x09\x00\x89\x64\x51\x19\xf8\xc2\xc9\xf6\x3f\x6e\x2c\xa9\x3b\x1d\x3b\x44\x75\x21\xba\xba\xee\xe6\x06\x67\xfa\xe8\xc6\x5b\x64\x97\xd3\xcc\xec\xcb\x83\x8b\xdf\xbf\xd6\x5c\x7a\x0d\x04\x67\x96\x98\x01\xa0\x5f\xb9\x72\x45\xbe\xfa\xea\xab\xb7\x8a\x43\xfd\xad\x0b\x9b\x37\x6f\x16\x0f\x3e\xf8\x20\xe2\xf1\xb8\xea\x59\x31\x90\x00\x8c\xa9\xa9\x29\xf9\xdc\x73\xcf\xdd\x70\xdd\x07\x06\x06\xc4\x9e\x3d\x7b\xd0\xda\xda\x0a\x1b\x2e\x98\x19\xa5\x52\x49\x2e\x2c\x2c\xe0\xcc\x99\x33\xb8\x76\xed\xda\x2d\x6b\x5b\xbf\x0e\xe6\x84\x75\x8f\xdc\xa6\xa6\x26\xf1\x85\x2f\x7c\x01\x8a\xa2\x44\x14\x89\xce\x4f\x9d\x6d\xfd\xdd\xfe\x85\xc8\xb3\x41\x5b\x31\xd8\xf3\xbf\x7a\xf1\xba\x2a\x5b\xb3\xc5\x6c\xc4\xc8\x3c\xbf\x7b\xfe\x3f\xcc\x26\x2a\xef\x32\x2c\x13\x04\x11\xe5\xa4\x94\xfa\xbb\xef\xbe\x8b\xb3\x67\xcf\xba\xfe\x54\x3e\x9c\xbd\x61\x3d\x3a\x25\x7c\x71\xeb\x81\xb5\x1a\x07\x0c\xe2\x7e\x6b\x29\xd0\x81\xb0\x34\x4d\x13\xc3\xc3\xc3\xe8\xef\xef\x47\x53\x53\x13\x96\x97\x97\xf1\xd1\x47\x1f\x39\x07\xaa\x6c\x08\x96\x73\xff\xec\xb3\xcf\x0a\xcf\x5e\x52\x67\x69\xcb\x29\xef\x2c\xee\x1b\xd7\xaf\x5f\x97\x3f\xfd\xe9\x4f\xd7\x53\x8f\x35\xeb\xb8\x11\x11\xe9\x4f\x97\x42\x08\xf1\xcc\x33\xcf\xa0\xad\xad\x4d\x03\xa3\x69\xef\xf5\xc4\x2f\x3d\x7c\xa5\xe9\x5f\x11\x48\xad\x5d\x51\xab\xce\x1b\x7d\x2b\x3d\x9e\x54\x6b\xd6\xb8\x18\x35\x66\x9f\xdf\x3d\xff\x1f\xd2\x71\xe3\x5d\x00\x97\x61\xe9\x1c\xb9\x6c\x36\x6b\x7c\xff\xfb\xdf\x5f\x2f\x6e\x35\x78\x06\xc4\x6d\xa4\x9e\x41\xb0\x56\x13\xcb\xab\xc1\x0a\xca\x77\xdb\x61\x6d\xdb\xb6\x0d\x8f\x3e\xfa\xa8\x20\x22\x4d\x48\xc4\x36\x2f\x46\xf6\xee\x9a\x89\xff\x83\xae\x25\x6d\xaf\x2a\x29\x56\xd0\xe4\xec\x68\xaa\xf4\xc6\xd9\xce\xdc\xf3\x0b\xf6\x2e\xa6\x72\xb9\x6c\xfc\xec\x67\x3f\xc3\xdc\xdc\xdc\x4d\xe1\xe5\xe5\x60\xfe\xb0\x96\xc2\x27\xee\xba\xeb\x2e\xdc\x7d\xf7\xdd\x82\x88\x12\xa9\xbc\x3a\xfc\xec\xc7\x1d\x3f\x88\x98\xa2\xbd\x76\xd7\xb3\x77\x19\xd7\x0a\xec\xb9\xf3\xae\x47\x66\x22\xc6\xfc\x73\x7b\xe6\xfe\xfd\x42\xdc\x78\x1b\x1e\xe2\x9a\x9b\x9b\x93\x3f\xfe\xf1\x8f\xd7\x1a\xa5\x37\x1a\x6e\x16\xd6\x5a\x93\x80\xd5\xe2\x6e\x3b\xac\xed\xdb\xb7\x8b\x43\x87\x0e\x41\x51\x94\x48\x44\x17\x9d\x9f\xb8\xdc\xfc\x5b\x3b\xe6\xa2\xbf\x46\xa0\x88\xb5\xe6\x59\xdd\x78\x52\x56\x79\xec\xc3\xbe\xec\xff\xf1\x51\xcf\xf2\x5f\x31\x21\x5b\x2a\x95\xf4\xef\x7c\xe7\x3b\xf5\xda\x66\x5d\x71\x0a\x5c\x1f\x90\x9a\x1f\xfb\x9e\x81\xaa\xb7\xa2\x73\xcf\x87\x0f\x1f\x26\x55\x55\xc3\x42\xa2\xe3\x89\x8b\xa9\xff\xad\xb5\xa0\xed\x73\x14\x2e\xaf\x23\x4d\x95\xd4\xbc\xa0\x3d\xc4\xc5\x8c\x5c\x58\x66\x9f\xdb\x3d\xff\x8d\xf9\x78\xe5\x2d\x10\x5d\x66\xe6\x69\x00\xf9\xd1\xd1\x51\x2f\xbb\xf6\xcf\x0f\x7c\x0b\x99\x6e\x25\x1d\x5c\xbd\xe9\xde\xe7\x9b\x81\x25\x7c\x57\xf2\xa5\xf9\xdb\xcb\xdf\x6e\xab\xc1\xbc\xa5\xb0\x1a\x1a\x1a\xe8\x89\x27\x9e\x40\x28\x14\x8a\x84\xa4\x68\x7f\xea\x7c\xcb\xff\xbe\x6d\x21\xfa\x6b\x04\x6b\x39\xca\xed\x21\xfb\x56\x65\xd1\xd8\x9b\x09\x3f\x51\x56\xe5\xc4\x74\x83\x7e\x45\x51\x15\xbd\xb3\xb3\x93\x2f\x5d\xba\x84\x1b\xc5\xcb\xa1\x38\xff\x0f\x01\xcf\xde\x38\x1c\x3e\x7c\x58\x68\x9a\xa6\x82\x91\xd8\x35\x13\x7f\x72\x73\x3a\x72\xb8\x96\x37\x01\xc4\x54\xdd\x02\xc8\x80\xeb\x51\xc7\x6c\x39\xda\xc1\x8a\x2b\x85\x64\xe1\xc5\x9d\x0b\x7f\x34\x97\xa8\xbc\xcd\x16\xe7\x9a\x06\x50\xb8\x7a\xf5\xaa\x7c\xf9\xe5\x97\x6f\x64\xf4\xd6\xe0\x5a\xe7\xf9\x46\x61\x05\x5d\xbd\xa3\xdc\xff\xce\xd5\xca\xdf\x56\x58\x77\xdc\x71\x07\x22\x91\x88\x4a\x44\x89\x3d\x53\xf1\xcf\x6e\x49\x47\x9e\xb5\xda\xdd\xf6\xff\xaf\x3d\x46\x08\xc4\x80\x90\x14\xb9\xff\x5a\xe3\x3f\x4b\x15\xd4\x01\x00\xb1\x4d\x9b\x36\x79\x71\xd9\x30\x5e\xce\x0c\xc5\x1f\xfc\xf1\x35\x9d\xd0\xd3\xd3\x23\xfa\xfa\xfa\x04\x80\x48\xac\x22\xfa\xee\xbb\x96\xfc\x27\x96\xbd\xcb\x1a\x17\x35\x7b\x2b\x00\xdb\x0b\xa0\xca\x0c\xbd\xbe\x4e\x52\xc0\x78\x63\x5b\xe6\x87\xe3\x4d\xe5\x37\x6c\x85\x7e\x96\x99\x0b\x57\xaf\x5e\x95\xaf\xbc\xf2\xca\x6a\x8a\x6c\xbd\xe0\x94\x11\x9e\xbc\xde\xfb\x9b\x85\xe5\x87\xb9\x5a\x58\x4f\xdb\xde\x36\x58\xfd\xfd\xfd\x00\xa0\x09\x89\xd4\x1d\x53\x89\x7f\x48\x4c\xaa\xc3\x87\xc8\xd9\x7f\xe0\x4e\xe2\xab\x7d\x12\x36\xa8\x73\xd7\x4c\xfc\x19\x58\xee\x46\xe2\xe1\x87\x1f\x5e\x0d\xbf\x55\xf1\x0a\x42\xce\x4f\xb1\xfe\x1f\x1e\x78\xe0\x01\x00\x50\xc1\x48\xee\x1b\x6f\xf8\x52\x43\x59\x19\xb0\x96\x75\x2c\xca\x62\x62\xb0\xbd\xd0\xc3\x2e\xb5\x55\x07\x4c\x35\x9d\xf1\x51\xcf\xf2\xcf\xcf\x75\x14\x5e\x00\xe1\x22\x11\xcd\x12\x51\x6e\x74\x74\x54\xbe\xfa\xea\xab\xf5\xf0\x03\xea\x73\x1d\x2f\xfe\xf0\xe5\xbd\x55\xb0\xea\x35\xa8\x1f\xae\x5f\x6f\x5d\x0d\x87\xdb\x02\x2b\x1a\x8d\x0a\x22\xd2\x92\x25\xb5\xbb\xb1\xa8\xee\xac\xe9\x23\xd8\x3e\x29\x8e\x37\x81\xd3\x27\xd6\xa6\x08\xf4\x64\xc2\x07\x14\xa6\x26\x00\xda\xe6\xcd\x9b\xa1\x28\xca\x0d\xe1\x15\xe4\x32\xed\xaf\x68\xcd\x68\x1f\x18\x18\x10\xcd\xcd\xcd\x02\x40\x2c\x55\x50\xb7\xdf\x31\x95\xf8\x4a\x75\xae\x08\x77\x74\x78\x95\x99\x5a\xe5\xa2\xea\xdf\x74\xad\xb9\x74\xf6\xfd\xcd\xd9\x1f\xc0\x32\xa2\x4e\x03\xc8\xcd\xcf\xcf\x3b\x62\x31\x70\x62\x81\xda\x4e\x0e\x52\x40\x83\xca\x02\xb7\x0e\x56\x50\x83\xae\x25\x66\x83\x66\x77\xde\x70\xcb\x61\xed\xdd\xbb\x57\x10\x91\x60\x66\x2d\x56\x11\x9d\x0a\x23\x42\xb6\x58\xf1\xf4\x96\xfd\xdf\x73\x22\x90\x1d\x93\xd0\x95\x6e\xc1\x94\x34\x59\xaa\xd1\x68\x54\x98\xa6\xe9\x77\x07\x5a\x17\x5e\x7e\x97\x69\x7f\x85\x6b\xee\x15\x45\xc1\x9d\x77\xde\x09\x58\x47\x27\x25\xf7\x4d\x34\xfc\x8a\x66\x52\xab\x93\xee\xd8\x52\xc1\x8e\x23\x60\x95\x07\x7b\xb6\x6f\x00\x60\xe4\x35\x33\xf3\xfa\xf6\xcc\x77\x0d\x85\xcf\xc3\x32\xa2\xe6\xb2\xd9\xac\xf1\xa3\x1f\xfd\xc8\xdb\xe9\xfe\xce\xf7\xe3\x56\x0f\xdf\x20\x4e\x73\xab\x60\xad\x55\xc6\xff\x8e\xa0\xb0\x91\xb4\x1b\x82\x15\x0e\x87\x01\x58\x0b\xeb\xba\xc2\x92\x09\x92\xd8\x39\x6b\xb6\x4a\x66\xb4\x42\x44\x5a\x57\xdb\x04\xaf\x3a\x8e\x9f\xaa\xaa\x0a\xc3\xa8\xa1\xb1\x75\xe1\x55\x4f\x4c\x04\x2a\x6c\x5b\xb7\x6e\x75\x0e\x7d\x8b\xb4\xe6\x43\x03\x03\x73\xb1\xcf\x91\xc3\x6f\x1d\xf4\xbc\xfa\x96\x2d\x1d\xc9\xa7\x50\x4a\x82\x3c\xb2\x6d\xe9\x87\x99\xa8\xf1\x11\x80\x09\x66\xce\x9a\xa6\xa9\xdb\x62\xd1\xfb\xfe\x7a\x93\x8e\x20\xa5\x73\x3d\xf9\x6f\x25\xac\x20\x5c\xb1\x0a\xac\xa0\xf6\xbd\x6d\xb0\xde\x7f\xff\x7d\x09\x00\xcc\x2c\xb3\x11\x23\x53\x08\x99\x69\x27\xad\xc6\x64\xb4\xd2\x9d\x05\x0c\xc6\x4c\x83\x3e\x62\x08\xd6\x01\xab\x3f\x0d\xc3\xb8\x21\xbc\x82\xc4\x44\xbd\x11\x2b\xf6\xef\xdf\x0f\x22\x52\xc1\x48\xde\x75\x3d\xf1\xcb\x21\x93\x52\x5e\xa4\xd8\xc6\xbe\xe6\x9e\x19\x4c\xb5\x2e\xc0\x97\x5b\x8b\x1f\x5d\x6a\x2b\xbc\x0c\xc2\x18\x33\xa7\x01\xe8\xef\xbf\xff\x3e\x3c\xe7\xcd\x07\xea\x7e\xbe\x6b\x3d\xee\x12\x54\xe6\x56\xc3\xf2\x07\xff\x40\x0d\x12\x5b\xd2\xf7\xec\xbd\xde\x16\x58\xf6\x8e\x28\x5d\x57\x39\x7b\xb1\xad\xf8\x9e\xdf\xfd\xc9\xe5\x00\xd5\xfc\xd6\x0b\x09\xc6\xb9\x8e\xfc\x3b\xb0\x8f\x8d\x02\x20\x55\x55\xbd\x21\xbc\xbc\x8d\xeb\x1f\x49\x35\xf7\x03\x03\x03\x68\x6c\x6c\x14\x00\x22\xc9\x92\xb2\x65\xc7\x5c\xec\x33\xc4\x64\xaf\x35\x7a\x94\x45\x00\x1e\x2d\x12\x44\xb6\xb5\xcb\x7e\x2e\x84\x64\xf6\xed\xad\x4b\x3f\x60\xc2\x28\x80\x79\x22\x2a\x5d\xbd\x7a\x55\x9e\x3e\x7d\x7a\x3d\x1c\xc3\x9f\x1e\xa4\x33\xad\x97\xfb\xdc\x0c\x2c\x6f\xf9\xd5\x74\x2a\x2f\x2c\xff\x20\xf6\xe3\x70\x4b\x61\x45\xa3\x51\x21\xa5\x94\xcc\xac\x33\x73\xe6\x58\xef\xf2\x73\x99\xa8\x31\xc9\x60\xdb\x44\x01\x4b\xaa\xd8\xdb\xf1\x98\x9d\x85\x3c\xc6\xa5\xb6\xc2\x07\xd7\x9a\x4b\x1f\x32\x73\x0e\x80\x31\x3d\x3d\xed\x70\xb0\x0d\xe3\xe5\x1f\xb9\x75\x47\xc3\xf6\xed\xdb\x61\xef\x05\x4c\xde\x31\x95\x78\x26\x64\x8a\x94\x35\x63\x84\xbd\x0b\xde\xd2\xaf\xd8\x26\x34\xef\xee\x7d\x00\x8e\xac\xc4\xd1\xbe\xec\xcf\x96\x22\xc6\x49\xdb\x90\x9a\x2b\x95\x4a\x86\x6d\x8e\x08\x7c\x6f\x1d\xdc\xea\x89\xf6\x7a\x30\x6e\x25\xac\x7a\xfa\xe1\x5a\xb0\xbc\x75\xac\xc7\x4d\x6f\x19\xac\x62\xb1\x28\x27\x26\x26\x00\xcb\x75\x3c\x9d\x0f\x9b\xe7\x7f\xb6\x6b\xe1\x1b\x8b\x51\x63\xba\xc6\x3c\x61\xf7\x9b\x33\xfb\x1f\x49\x95\x4e\xfe\x7c\xc7\xe2\xb7\x4d\xe2\x31\x58\xfe\x76\xc6\xa9\x53\xa7\xfc\xef\x5a\x37\x5e\xce\x77\x53\x9c\xe9\x83\xd7\x2c\x5a\x13\x7f\xe8\xd0\x21\x45\x08\x11\x89\x54\x44\xdf\xa3\x97\x9a\xff\xb9\x66\x88\x26\x87\x88\xd8\xb3\x29\x96\x80\xaa\xfb\xb3\x2b\x16\x2d\x15\x72\x3e\x5e\x99\x78\x7d\x7b\xe6\x5b\xa6\x82\x73\x44\x34\x03\xa0\xf4\xfa\xeb\xaf\xf3\xe2\xe2\xa2\xff\xbd\xde\xe0\x4f\xf3\x5a\xdd\x85\xe7\xea\xaf\x43\x50\xb8\x15\xb0\x82\x70\x65\xd4\xe6\x17\x75\xee\xfd\x79\x6f\x2b\xac\x2b\x57\xae\xf0\xf0\xf0\x30\x2b\x8a\x62\x02\xe0\x42\x58\xe6\x2e\xb7\x16\xae\x02\xd0\xe2\xba\x92\x0c\x49\x0a\x03\x20\x43\x61\x63\x3e\x6e\x4c\xbe\xbf\x39\xfb\xd7\xef\x6d\xcd\x7e\x4f\x57\xe4\x69\x22\x9a\x00\xb0\x9c\x4e\xa7\x0d\xfb\xe4\xeb\x1b\xc2\x2b\x68\x16\xb9\x82\x4d\x3f\xf8\xe0\x83\x42\x08\x21\x00\x24\xfa\xe7\xa3\x07\x13\xba\xd2\x67\xd9\x4d\x00\xcb\x9a\xea\x91\xee\x9e\xa9\xae\x1d\x01\xc7\xf9\xf9\xc3\xbe\xec\x4f\x74\x95\x2f\xc3\x72\x18\x2c\x5d\xbd\x7a\x55\x8e\x8c\x8c\xf8\xe5\x76\xd0\xc8\xf0\x87\x20\x85\x72\xd5\x3a\xdc\x42\x58\xfe\x11\xbc\xda\x88\xf6\xe7\xf3\xdf\xdf\x76\x58\x1f\x7f\xfc\x31\xee\xbd\xf7\x5e\x9d\x88\xe6\x99\x59\xe6\xc3\xb2\xf4\x66\xff\xd2\xc4\xfb\x9b\xb3\xdd\x89\xb2\xd2\xa1\x4a\x8a\x94\x54\x99\xcb\x6b\xe6\x75\x53\x60\x12\x84\x09\x02\x4d\x02\xc8\x4a\x29\x75\xfb\x6c\xd8\x1b\xc6\xcb\x7f\x36\xc5\x8a\x8c\xaa\xaa\x8a\xcd\x9b\x37\x03\x96\x45\x38\xb9\x73\x36\xf6\x74\xed\x56\x7f\xa0\x6a\x8a\xa8\xae\x32\x56\x53\xac\xd8\xd9\x84\x3e\x72\xa5\xb5\xf8\x26\x6c\x7b\x97\xae\xeb\x86\xc7\xde\xe5\x0f\xab\x89\x39\x7f\x85\x83\xee\xbd\x75\xb8\x1d\xb0\xfc\xb3\xa8\x7a\xa2\xce\x9f\xf7\x6f\x1c\xd6\x89\x13\x27\x24\x11\xe1\x9e\x7b\xee\x29\xd8\xc7\x0b\x14\x40\x98\xd5\x55\x1e\x49\xab\x46\xcc\xce\x6f\xd8\x1b\x92\x33\xb0\x77\x65\x19\x86\xa1\xbf\xf2\xca\x2b\x41\xed\xb4\x21\xbc\x54\x5f\xe2\x0a\x45\x77\xf3\xe6\xcd\x22\x91\x48\x08\x66\xd6\x52\x05\xad\xbf\x2b\xab\xdd\x8d\x3a\xa1\x6a\x49\xe1\xea\x93\x65\x80\xc1\x47\x3d\xcb\x2f\x99\x84\x09\x66\xce\x10\x91\x7e\xee\xdc\x39\x2f\x22\xfe\xfb\xd5\xb8\x4f\xbd\x32\xf5\xca\xdd\x2e\x58\xfe\xfb\xf5\xc0\xaa\x57\xc7\xdb\x0a\xeb\xf8\xf1\xe3\x52\x4a\x89\x7d\xfb\xf6\x95\x34\x4d\xb3\x88\xcc\x92\x22\x8e\x04\x33\x6c\xe2\xd3\x01\xe8\x4b\x4b\x4b\xf2\xc8\x91\x23\x98\x9a\x9a\xba\x69\xbc\xbc\x22\xd2\x3f\x62\x01\x54\x95\x7b\x02\xc5\xfa\x17\xa2\x87\x54\x49\xc9\x95\x9f\xb7\xa8\x3e\x33\x50\xdd\x30\x6a\xc3\x58\x8c\x19\x13\x57\x5b\x8a\x6f\x33\x78\x96\x88\x0a\x86\x61\x18\x27\x4f\x9e\xf4\x23\xe5\x45\x6e\xbd\x1d\x5f\x8f\x78\xea\xb1\xf4\x5b\x05\x2b\x48\x1c\xad\x06\x2b\x88\x43\xd5\x13\x8b\xb7\x05\xd6\xc9\x93\x27\xe5\xc9\x93\x27\xf1\xd0\x43\x0f\x19\xfd\xfd\xfd\x46\x38\x1c\x2e\xf9\x9c\x36\xe5\xf2\xf2\x32\xce\x9c\x39\x83\x53\xa7\x4e\x79\x27\x1b\x37\x85\x57\xd0\x52\x51\x0d\xa0\xde\xde\x5e\x61\x9f\x4d\x9f\xec\x5f\x88\x3e\x62\x59\xeb\xc9\x25\x2a\x6b\xd3\xac\xad\x67\x39\x1f\x18\xb0\xa8\x0c\x80\x65\xc2\x38\xdb\x91\x3f\x52\x56\xe4\x04\x80\x0c\x33\xeb\x67\xce\x9c\x71\xb6\x5a\xd5\x43\xd6\xdf\x60\x41\xb8\xad\x35\x9b\x09\x2a\x7b\xab\x60\xad\xc6\x15\xfd\xb0\xfd\xf9\xeb\xd5\xf5\x6f\x04\xd6\x9b\x6f\xbe\x29\xdf\x7c\xf3\xcd\xf5\xe4\xbd\x25\x78\x79\xcf\xa6\x08\x04\x6c\x2b\xf7\x91\xa6\xa2\xda\xd7\x9a\x0b\x0d\x3b\x4a\xbb\x67\x19\xde\xb2\xd4\x7b\x4f\xe7\xa3\xea\xc8\x28\xab\x9c\xbb\xd4\x56\x78\x13\x16\x4b\x2e\xe8\xba\x6e\xd8\x56\xe6\x7a\xfa\xce\x6a\x3a\x49\x3d\xdd\xc3\x1f\xb7\x16\xa1\xdc\x0c\xac\xb5\xde\xe3\x0f\xf5\xb8\x4a\x3d\xfd\xe5\xa6\x60\x6d\xde\xbc\x59\xf4\xf6\xf6\xba\x05\xde\x7a\xeb\xad\x0d\xc3\x4a\x24\x12\x18\x1a\x1a\x42\x57\x57\x17\xe2\xf1\xb8\x5b\xa0\x52\xa9\x88\xab\x57\xaf\xe2\xe8\xd1\xa3\x41\x6d\x12\x08\x2b\x68\x16\xe9\x22\xfc\xf0\xc3\x0f\x3b\x99\x23\x7d\x8b\x91\x07\x14\x76\x0e\xe8\xf0\x19\xb9\x3c\xf7\xd5\x35\x48\x6b\x59\x7b\xac\xa9\x74\x3a\x1b\x35\x47\x08\x94\x06\xa0\xdb\xa7\xbf\xac\xa6\x78\x07\x21\x1d\x24\xbe\x83\x44\xbb\x37\x8f\x5f\xb7\xbc\x55\xb0\x56\x4b\x0f\xc2\xdf\xfb\xde\x7a\x9c\xf9\xa6\x60\x69\x9a\x86\x83\x07\x0f\x62\xfb\xf6\xed\x8e\x58\x73\x7e\x18\x1a\x1a\x92\x00\xa4\x69\x9a\xf2\xcc\x99\x33\xf8\xf8\xe3\x8f\x85\x73\x82\x90\x1f\x56\x3c\x1e\x17\x7b\xf7\xee\xc5\xee\xdd\xbb\x01\xfb\x1b\x50\x5e\x58\x00\x8c\xe6\xe6\x66\x63\xdf\xbe\x7d\xf2\xda\xb5\x6b\xf2\xf5\xd7\x5f\xaf\x0b\xcb\x29\xe3\x3f\xbe\xa9\x26\xf3\xa6\x4d\x9b\x1c\xe3\x6a\xa2\x6f\x31\x72\xaf\x95\xc4\x2e\x01\x79\x3f\x0a\x55\xfb\x39\xa9\x6a\xdc\x85\xf6\xc2\x5b\xa8\x6e\xeb\x97\x67\xcf\x9e\x0d\x7a\x9f\x3f\x6e\x35\xd6\xef\x27\x9c\xb5\xf2\xae\x06\xfb\x66\x60\xad\x96\x77\x35\x8e\xb4\x56\xdd\x37\x04\x6b\xcb\x96\x2d\xe2\xc0\x81\x03\x48\x24\x12\x2a\x00\x4d\x31\x11\x6b\xcb\x6b\x7d\xa9\x7c\xa8\xdb\x14\x6c\xa4\x63\x95\x89\x74\xbc\x32\x09\x45\x29\x0d\x0f\x0f\xeb\x5b\xb7\x6e\x35\xbe\xf7\xbd\xef\x05\xe2\xf0\xa9\x4f\x7d\x4a\x34\x37\x37\xab\x00\xb4\x48\x45\x34\xf5\x2f\x44\xee\xdf\x9c\x8e\x3c\x18\xad\x28\xad\xa5\x90\x4c\x5f\x6f\x2c\x7f\x78\xb9\xb5\xf8\x4e\x5e\x33\xe7\x37\x6f\xde\x5c\xfa\xfc\xe7\x3f\x5f\x17\x96\x73\xe3\xff\x66\xb7\x9b\xa1\xb9\xb9\x19\x89\x44\x42\x00\xd0\xa2\x86\x92\xea\x58\xd6\x86\xbd\xeb\xf0\xde\xe3\x1e\x6b\x56\x88\x3c\xfa\x57\x31\x24\x33\x13\x4d\xe5\x13\xce\xcc\x71\x61\x61\x41\xda\x3b\x91\xeb\x35\x9c\x3f\xee\x46\xc5\xc8\x5a\x0a\xf0\xaa\xb0\x76\xee\xdc\x29\x3a\x3a\x3a\x90\x4c\x26\xd1\xdc\xdc\xec\xc6\xa7\xd3\x69\x2c\x2f\x2f\x63\x69\x69\x09\x53\x53\x53\x98\x99\x99\x59\x4d\xcc\xd6\x8b\x5f\x4b\x44\xae\x1b\xd6\x8e\x1d\x3b\xc4\xa1\x43\x87\x04\x11\xa9\x42\x22\x39\x34\x13\x7f\x74\xdf\x78\xc3\x6f\x34\x96\xd4\xbd\x82\x11\x03\x20\x25\xa1\x90\x8e\x55\x3e\xf8\xa0\x2f\xfb\xfb\x97\xda\x8a\xef\x25\x12\x89\xdc\x57\xbe\xf2\x15\xfd\x85\x17\x5e\xf0\xae\xfd\xc2\xde\x71\xa4\x82\x91\x18\x98\x8b\x3e\xfc\xe0\xd5\xa6\x7f\x96\x2c\x29\xc3\x00\xa9\x56\xb7\x33\x76\xcc\x45\xe5\xbd\x63\xc9\x8b\xef\x6c\x59\xfa\x17\x67\x3a\xf3\xaf\x38\xb0\x3c\x7e\xfb\x2b\x70\x75\x4e\x99\x5e\x61\x11\x1e\x1c\x1c\xa4\x9e\x9e\x1e\x02\x90\xe8\xc8\x69\x77\x0f\x4f\x26\xbe\x24\x98\x14\xc0\xa1\x9f\xaa\x2f\x37\xc1\xd1\xc1\x6c\xaa\xb3\x19\xd9\xd5\x96\xd2\x47\xe7\x3b\x0a\x3f\x21\xa2\xeb\xcc\x9c\x3f\x7d\xfa\xb4\x9c\x9e\x9e\xae\x67\xbd\xf6\xc7\x39\xcf\xfe\x55\x05\x6f\x67\x04\xf9\xd1\x7b\xad\xf0\x41\xd6\xe5\x40\x58\x7b\xf6\xec\xa1\x87\x1e\x7a\x88\x1e\x7a\xe8\x21\xa5\xaf\xaf\x8f\x5a\x5a\x5a\x42\x89\x44\x22\x14\x0a\x85\x54\x45\x51\x54\x55\x55\xd5\x86\x86\x06\xb5\xa5\xa5\x45\x6c\xda\xb4\x89\x06\x07\x07\xb1\x73\xe7\x4e\xa8\xaa\x8a\xe9\xe9\x69\x2f\x91\xb0\x0f\x07\xff\xbb\xd7\x13\xb7\x2e\x58\x9f\xff\xfc\xe7\x89\x88\xc2\x21\x29\x5a\x1e\xbf\x98\xfa\x9f\xef\x1d\x4b\xfe\x6e\xd4\x10\x5b\x6c\xef\x62\x22\x86\x20\x46\x38\x56\x51\xfb\xb7\x2d\x44\x3f\x17\x92\x54\xb8\xde\x54\x3e\xa7\x84\xd4\x4a\x7f\x7f\xbf\x79\xe2\xc4\x09\x09\x80\x0f\x1f\x3e\x2c\xda\xdb\xdb\x55\x02\x25\xef\x98\x8a\x3f\xfd\xf8\xc5\xd4\x37\x23\x15\x65\x33\x08\xc2\x51\x87\x6c\xb5\x9a\x42\x52\xb4\x6e\x49\x47\x3e\x55\x51\xe5\xe4\x74\xb2\x72\x45\x0d\xa9\x7a\x7b\x7b\x3b\x5f\xbe\x7c\x59\x06\xd5\xc7\x7b\x4e\xbe\x37\x88\x5d\xbb\x76\xa1\xa5\xa5\x25\x04\xa0\x71\xc7\x7c\xec\x53\x5b\xd2\x91\x43\xd5\xc3\x78\xe1\x21\x2e\xeb\xc1\xeb\x0c\x6d\xc5\x31\x3e\xee\xc9\x3d\x37\x97\xd0\xdf\x05\xd1\x1c\x11\x95\x7f\xfa\xd3\x9f\x9a\xf5\xde\x07\xaf\x4f\x62\x35\xce\xbb\x84\xe3\x25\x0e\x0f\x35\x07\x12\xa5\x40\x2d\x11\xf9\x97\x83\x5c\x58\x83\x83\x83\x74\xf8\xf0\x61\xea\xef\xef\x17\xd1\x68\x34\x44\x44\x11\xc5\x40\x73\x3c\x6b\x6e\x4b\x01\xc5\x9b\xce\x00\x00\x20\x00\x49\x44\x41\x54\xce\x99\xf7\x34\xcc\x1b\x0f\x26\xe7\xcd\x03\x89\x8c\x79\x47\x34\x27\x7b\x15\x13\x11\xa9\x0a\x53\x2a\x40\x38\x1c\xa6\xee\xee\x6e\x39\x3c\x3c\x0c\x00\xf0\x0c\x1e\xff\xfb\x82\xea\xca\x75\x9e\xe1\x7b\x0e\x84\xf5\xd4\x53\x4f\x89\xc6\xc6\x46\x8d\x40\x8d\x0f\x8c\x36\xfe\x97\xc3\x53\x89\xff\x89\x98\x94\x1a\x3f\x2f\xcf\xc4\x4b\x80\x42\x9d\xcb\xda\x83\x79\xcd\xbc\x32\x93\xd0\x47\x54\x55\xad\xa4\x52\x29\xd6\x34\x8d\x86\x87\x87\x05\x80\x78\x5b\x5e\xdb\x73\xf8\x5c\xcb\xff\xa3\x99\x22\x65\x35\x72\x7d\x58\x5d\xd9\xf0\x3d\xe3\xcd\xe5\x37\x73\x9a\x31\xdf\xd8\xd8\x58\xc9\xe5\x72\x58\x58\x58\x58\x51\x27\xff\x09\x87\x4e\x90\xed\xed\xed\x82\x99\x85\xf5\x21\xaa\xf0\x1e\xcb\xc6\xe5\xd9\x19\xc4\xd5\x25\xa2\x9a\xd6\xb1\xb7\x40\x55\x04\x97\x26\x1b\xcb\xa7\x40\x94\x03\xa0\x2f\x2c\x2c\xf8\x67\x71\x40\xb0\x28\x40\x40\xbe\x15\xf8\x05\x94\xa9\x07\xd7\xb9\xaf\x81\xd5\xd8\xd8\x88\x07\x1f\x7c\x10\x9b\x36\x6d\x12\x44\xa4\x81\x39\x16\x5f\x34\x07\x5a\xc6\x2b\xbf\xd0\x30\x6f\x3e\xa9\x56\x78\x0b\x18\x91\x15\xef\x25\xe8\xa6\x8a\x89\x5c\x4a\xfd\xf9\x42\x4f\xe8\x07\xb9\x56\xe5\x64\x28\x14\xca\xdd\x7b\xef\xbd\xfa\xae\x5d\xbb\xf0\xb3\x9f\xfd\x0c\x4b\x4b\x4b\x0e\x2e\x6b\xcd\x54\x57\xab\x43\x90\xc8\x71\xef\x7b\x7a\x7a\x04\x11\x45\x5a\xf2\xa1\x81\xe1\xc9\xc4\x7f\xeb\xe6\xb7\x59\x8d\xab\xc2\xb8\x3b\xbc\x18\x42\x22\x72\xff\xb5\xc6\xaf\x5f\x6a\x2b\xbe\x57\x0e\xc9\xd2\x96\x2d\x5b\x0c\x7b\x95\x46\x25\x50\x72\xdf\x44\xc3\xaf\x86\x4d\xea\x64\xb2\x37\xe5\xac\x02\x4b\x33\xa9\x7d\xdf\x44\xe2\x57\x5f\x18\xd2\x2f\x03\x28\x0d\x0c\x0c\xe8\x17\x2e\x5c\x58\x81\x77\x5d\x97\xe9\xa6\xa6\x26\x00\x50\x15\x93\x12\x2d\xf9\x50\xbf\x65\xe2\xaa\x2a\xf7\x8e\xfe\xe5\xf5\x83\x64\x58\xff\x88\x08\xd9\x48\x65\x3a\x1b\x36\x27\xec\x13\x9c\x8d\xe9\xe9\x69\xa0\x56\xdf\xa8\x47\x30\x41\x4a\xf7\x5a\xb3\xc2\x7a\x8a\x3b\x7c\x79\x5d\x58\x4f\x3f\xfd\xb4\x88\x46\xa3\x2a\x11\xc5\x22\x59\x73\x7b\xd7\xa5\xf2\x6f\x34\xcc\x99\x5f\x14\xcc\x09\xb0\x77\xf2\xe2\x70\x6b\x06\x88\x04\x4b\x44\xd4\x0a\xb6\x37\x4e\x1b\xdb\x1b\x67\x8c\xaf\xe4\x9b\x95\xbf\x9e\x1a\xd0\x7e\x2f\xdf\xac\x9c\x6e\x68\x68\x28\x7c\xf1\x8b\x5f\xd4\x5f\x7f\xfd\x75\xff\x07\xdf\xd7\x9a\x4c\x78\x89\x6a\x2d\x3d\x53\x1e\x3c\x78\xd0\x1a\x30\x8c\xd8\xf6\xb9\xe8\x53\x9a\x49\xad\x5e\x75\xb8\x2a\x4f\xaa\x4c\x91\x6c\x39\x17\xd7\xc5\xf6\x2d\x8b\x91\x83\xe7\xdb\xf2\xb3\x00\x74\xfb\x98\x76\x4d\x93\xa2\xb5\x37\x13\x3e\x48\xd5\x02\xab\xc3\x02\xa3\x67\x29\xf2\x70\xc8\xa0\x94\xae\xc8\x4c\x7b\x7b\xbb\x1e\x8f\xc7\x45\x3e\x9f\xaf\xa9\x63\xcd\x94\xd6\x09\x5b\xb6\x6c\x71\xe2\xd4\xb0\x41\x4d\x71\x5d\xe9\xac\x0a\xe2\xaa\x4d\xa2\xba\xb5\xc3\xc5\xc9\x76\x31\x62\xcc\x27\x2a\xa3\xa6\xe0\x0c\x11\x95\x00\xc8\xa9\xa9\x29\x7f\x43\xfa\xaf\xce\xcf\xcf\xe9\x82\xe2\xfc\x41\x60\x65\x27\xad\xe0\x5a\x4e\xda\x2f\xff\xf2\x2f\x8b\x58\x2c\xa6\x11\xd0\x94\x9a\xa8\x1c\xde\xfe\x41\xe1\x07\xc9\x59\xf3\xab\x42\x22\xe1\x70\x66\xa7\xc3\xc8\xf9\x9c\x1f\x00\xeb\x78\x4f\x86\x73\xcc\x27\x01\x91\xc4\xa2\xf1\xb9\xfe\xa3\xc5\x1f\xb4\x8f\xe8\xbf\x04\xc9\x4d\x8a\xa2\x68\x8f\x3c\xf2\x08\xfa\xfb\xfb\x57\x98\x0c\x02\x70\x59\x6f\x9a\xfb\xec\x9c\x2d\x66\x9f\x29\x96\x68\xcf\x69\xc3\x8e\x62\x62\xad\x9e\x10\xfc\xa1\x6a\xb0\xb7\xd2\xda\x97\xb5\xfd\x44\x14\xb3\xcf\xbd\x00\x11\xa9\xe1\x8a\x48\x85\x2b\xa2\x1d\x1b\x80\x15\xae\x88\xd6\x68\x45\xb4\x12\x91\xaa\x28\x8a\xf0\x9d\xd1\x2f\x00\x6b\x5f\x24\xe0\x1b\x35\xb6\x3f\xb7\x00\xa0\x35\x96\xd4\xee\x90\x49\x09\x66\x87\x63\xd6\x52\x72\x90\xcb\x34\x08\x98\x6e\xd0\x2f\x82\xac\x23\x96\xa4\x94\x8e\xd7\x84\xff\x87\x9b\x88\xf3\x8e\x94\x75\xe5\x6f\x6a\x6a\xc2\xaf\xfc\xca\xaf\x88\x78\x3c\xae\x81\xb9\xa9\x63\x44\xff\x72\xcf\xe9\xd2\xb7\xd4\x0a\xb6\x38\x04\x55\xfd\x4e\xa4\x6f\xd2\xb2\xe2\xf3\x34\x56\x5b\x30\x13\x14\x13\xed\x5d\x17\xf5\x7f\xd3\x73\xae\xfc\x9b\x24\xb9\x55\x08\x11\x79\xec\xb1\xc7\xfc\x38\x78\x43\x10\xbe\x41\xf9\x57\xd4\x91\x99\x65\x4b\x4b\x8b\xd3\x3f\x91\x90\x49\x49\x07\x17\xef\xa9\xd4\xe4\xf9\xef\xa7\x13\x45\x22\x66\x9f\x82\x2d\x6c\x22\x53\x99\xa0\x55\xf3\xad\x0f\x96\x14\x2c\x4d\xc1\xaa\x6d\xca\xf2\x07\x09\xd4\x71\x99\xb6\x8f\xe9\x16\xcc\xac\x35\x15\xd5\x6e\xc1\xd0\xe0\xce\x14\xc9\xe5\x5c\xb5\x53\xb4\xaa\x9b\x34\x00\x2c\xc4\x2b\x57\x98\xb9\x04\xc0\xc8\x64\x32\x4e\x83\xac\x36\x62\x81\x80\x11\xbb\x46\x7a\x90\x5e\x13\x38\xfa\x55\x55\x15\x8f\x3c\xf2\x08\xa2\xd1\xa8\xca\xcc\xc9\x96\xf1\xca\x67\x3b\x2e\xe9\xbf\x63\x4f\xe7\xad\x3a\x38\x15\xb0\xb9\xb0\x35\x92\xed\xa5\x2f\xb6\x0d\xc8\xce\x9a\xab\x6d\x50\x76\x57\xcd\x00\xad\x65\xac\xf2\x3f\x74\x5c\xd6\xbf\x4a\x40\x12\x80\xf6\xa5\x2f\x7d\xa9\x9e\xe8\xab\xcb\x8d\x5b\x5b\x5b\xfd\x83\xbe\x86\x38\x1d\xd7\x65\x7b\x1d\x51\x14\x34\x33\x57\x8b\xbf\x7d\x4f\x80\x33\x9f\xf1\xf3\xa1\x4c\xd4\x98\x77\xb8\x97\x0d\x4b\x96\x42\x66\x61\x29\x62\x4c\x6f\x04\x56\x4e\x33\x67\x8b\x21\x59\x72\xbe\x27\xe0\x5b\x1c\x17\x40\xd5\x52\x5b\x53\x09\xcf\xe7\x59\xd4\x86\xb2\xba\xc9\x95\x12\x8e\xa2\xef\xb3\x7f\xb9\x2e\xd3\x36\xfb\x32\x04\x97\x96\xa2\xc6\x24\xac\xa3\xc3\x65\x3a\x9d\x5e\xd1\x50\x9e\xb0\x9a\x31\xb3\x5e\xde\x7a\xb6\xb4\xba\x46\xbf\x1d\x3b\x76\x88\xb6\xb6\x36\xc1\xcc\xb1\x58\x56\xee\xe9\xbe\x50\xfe\x1d\x62\xb8\x1f\x90\x5f\xf1\x1d\x78\xf2\x88\x09\x57\x1f\xf1\xcc\xa0\x81\x9a\x42\x76\x53\xa8\xed\x57\xf5\xaf\x17\x1a\x95\x8b\x4b\xed\xca\xcf\x13\x89\x44\xf6\xde\x7b\xef\x75\xbe\x1d\xe4\xe5\x44\x35\xb8\xed\xdf\xbf\x1f\xbb\x76\xed\x12\x91\x48\x44\x78\x3f\xf6\xa0\xeb\xba\x4c\xa7\xd3\x38\x7a\xf4\xa8\xdb\x79\x86\x61\xc8\x52\xa9\x24\x2c\x29\xc3\xfa\xb5\xe6\xd2\xe9\xc1\xd9\xd8\x61\x67\x75\xae\x76\x01\xdb\xc6\x8d\xaa\x5f\x73\x63\x82\x9c\x6d\xd0\xaf\x38\xbe\xf6\xf6\xcf\x30\x09\xb9\x2b\xad\xc5\xa3\xad\xf9\xd0\xc0\xba\x60\x81\x71\xb5\xa5\x78\xdc\x24\x2e\x80\x61\x00\x40\x57\x57\x97\xb0\xf1\x74\xeb\x18\xa8\xdf\xf4\xf5\xf5\x01\x16\xfb\xd4\x1a\x4a\x96\xfe\x55\xdd\x09\x4c\x16\x1d\x3b\x1d\x63\x0f\x6a\xaf\xcb\x74\x59\x95\xd9\x62\x48\xa6\xed\x0f\x1e\xc8\x5c\x2e\x07\x04\x8c\x56\xac\x24\x88\xf5\xcc\x28\xbd\xdc\x29\x88\xa0\x02\x67\x67\xf7\xdd\x77\x1f\x60\xf9\xb4\xb5\x6f\x3a\x5f\xfe\xa7\xc2\x40\xbb\xa3\xb8\x56\x9d\x41\x3c\xfa\x96\x95\x52\x95\x0c\x76\x3c\x79\xa2\x5d\xc7\x5d\xb2\xf8\xba\xb5\xf5\x9e\x13\xdd\x17\xca\xff\x8b\x5a\x41\x37\x00\xcd\xde\xe6\xe7\xc5\xd5\xe5\xb0\xc3\xc3\xc3\xe2\xab\x5f\xfd\xaa\xd8\xb7\x6f\x9f\x1a\x8d\x46\x23\x2a\x44\x22\x6a\x28\xad\x51\x43\x69\xd7\xa4\x68\x0a\x6b\xe1\x44\x67\x67\xa7\xf6\xf4\xd3\x4f\x8b\xa7\x9f\x7e\xda\xad\x97\x3d\x60\x0d\x10\x15\xae\xb6\x94\x3e\x5c\x8c\x1a\x13\xde\x6f\x38\x51\x4d\x7f\xb1\xc3\x82\x40\x04\xcc\x27\x2a\x23\xd3\x0d\xd6\xcc\x8f\x88\xa4\x4d\xd0\x3a\x08\xd9\x93\xdd\xb9\x97\x33\x51\x63\x72\x3d\xb0\x72\x61\x73\xfe\xf8\xa6\xdc\x8b\xb0\xdd\xaa\x4b\xa5\x92\xf4\x70\x30\xb7\x8e\xfe\xce\xa8\x61\x71\xcc\xac\x25\xcb\x6a\xbb\x37\x83\xd7\x08\xe5\x3c\xb3\x67\x4b\x1a\x01\x28\x68\x32\x5d\x11\x5c\x80\xfd\x25\x0d\x7b\x04\xfb\x67\x75\x41\xa1\x2e\x07\x0a\xb8\x7a\x61\xad\x4a\x74\x7b\xf7\xee\x15\xa1\x50\x48\x10\x51\x2c\x39\x67\xdc\x1f\x5f\x34\x1f\xf5\xea\x15\x04\xfb\x3b\x44\xfe\xb3\x1a\x3c\xe7\xf4\xbb\x1c\xbc\xc6\x2e\xe3\xcd\xef\xb0\x3f\x42\x38\x2f\x87\x53\xd7\x2b\x87\xed\x13\x0a\xd5\x87\x1e\x7a\xc8\x3f\x63\x96\x8f\x3f\xfe\x38\xee\xbb\xef\x3e\xa1\x69\x5a\x44\x33\x45\xeb\xde\xc9\x86\xcf\x7f\xe1\x64\xfb\x37\xbe\xf2\x61\xe7\x8b\x5f\xf9\xb0\xf3\xe5\x5f\x3a\xd6\xf1\x83\xc7\x2e\x35\xff\x56\x5b\x5e\x1b\x00\x23\xd1\xd5\xd5\xa5\x7e\xf9\xcb\x5f\x16\x00\x60\x4f\x98\x0c\x00\xb9\x52\x48\x4e\xbc\xb9\x2d\xf3\xfd\x8a\x90\xba\x43\x10\xb5\x32\x91\xec\x6f\x20\x59\x27\x46\xbe\xd9\x9f\xf9\x0b\x29\xac\x63\x38\x99\xd9\xe5\x60\x00\xb2\x05\x4d\x5e\x7e\x79\x20\xfd\x47\xf9\x90\x99\x5d\x0d\x56\x51\x35\x73\xaf\xee\x58\xfc\xd3\xe5\xb0\x79\xd1\x76\x52\xd4\x3d\x9f\xb0\x71\xeb\x08\x04\x9c\x4d\xe1\x91\xcd\x82\x40\x6a\xb8\x42\x49\x67\xab\x7f\x75\xde\xc8\x70\xb7\x9a\x03\x9e\x7b\xeb\xc0\xde\xbc\x66\xa6\x41\xd6\x97\x35\xb0\x32\xac\x36\x0d\x5f\x8d\xf8\x56\x83\xe1\x17\x3d\x35\x70\x76\xef\xde\x0d\xdb\xd6\xd5\xd4\x32\x5e\xf9\x45\x92\xd0\x5c\xc5\xca\x6b\x6e\xb1\x47\x4f\xed\x64\x86\xbc\x8c\xcc\xe6\x60\xec\x8c\x2c\xfb\x07\x0f\x2c\x06\x31\x8b\x96\xf1\xca\x97\x48\x72\x8a\x88\xb4\x6d\xdb\xb6\x21\x12\x89\xb8\x38\x1d\x38\x70\x40\xf4\xf7\xf7\x0b\x02\xc5\x52\x79\x75\xe7\x17\x4f\xb4\x7f\xeb\x91\xcb\x4d\xdf\xee\x5e\xd2\x9e\x8d\x56\xc4\x70\xac\xa2\x0c\x35\x17\xd5\x47\xf6\x4c\xc5\xff\xf9\x2f\x1c\x6f\x7f\x61\xdf\x44\xc3\x7f\x01\x46\x53\x2c\x16\xd3\x7e\xed\xd7\x7e\x4d\xcc\xcd\xcd\x39\xbb\x7c\x0a\x00\xa6\xaf\xa6\x4a\x6f\xbc\x3c\xb8\xf8\x9d\x7c\xc8\xcc\x3a\x9a\xb1\x57\x4b\x66\x00\x39\xcd\xcc\xbc\x34\x98\xfe\xa3\xf1\xa6\xf2\xdb\xb0\x77\x73\x2d\x2f\x2f\xcb\x97\x5e\x7a\x09\x86\xb5\xa3\x36\x07\x60\x72\xb2\x51\x7f\xe3\xc7\xc3\x73\xff\xf6\x5a\x73\xe9\xbc\x41\x6c\x78\x7a\x16\x26\xb1\xbc\xde\xa8\x8f\xfc\xd5\x1d\xf3\xff\xf7\x68\xaa\xf4\x32\x08\x13\xb0\x3e\xcf\x63\x9c\x39\x73\xc6\xdf\xee\xae\x0e\xe6\x74\x90\x00\x20\x3b\x3b\x3b\x11\x0a\x85\xac\x29\xb1\xf5\xed\xec\x44\xed\x61\x4c\x41\xa1\xaa\x87\x58\x1c\xcc\xcc\x00\xd0\x99\xd9\x90\x52\xca\x86\x86\x06\xb1\xbc\xbc\x5c\xf3\x1e\xac\x14\xcf\xde\xb0\x16\x97\xf3\xdb\xc1\xfc\xf7\x0e\x0c\xd9\xde\xde\x2e\xe2\xf1\xb8\x00\xa0\x85\x4a\xdc\x1d\x5f\x34\x0f\xd4\xe0\xed\xb0\x24\xc7\x97\x0d\x0e\xe7\xb2\x6b\xe4\xde\x7b\xab\xeb\x8d\xf3\xcc\x36\xb9\x9a\x1e\x2e\xc8\xa1\xe8\x92\x1c\x28\x34\x2b\xb3\x9a\xa6\x95\x4a\xa5\x92\x01\x00\xdd\xdd\xdd\x62\xcf\x9e\x3d\x02\x40\xa4\xa1\xac\xf4\x3f\x7d\xa6\xf5\x1b\x4d\xc5\xd0\xdd\xfe\x76\x75\x4c\xda\x61\x93\xba\x0f\x8e\x34\xfe\x3e\xc0\xe2\xa3\x9e\xdc\x0f\x55\x55\xcd\xec\xdb\xb7\xcf\xb8\x72\xe5\x0a\x06\x07\x07\x75\x22\x4a\x83\x70\xf9\x62\x5b\xe1\xb9\x99\x86\xf2\xf8\xf0\x64\xe2\xb1\xcd\x8b\x91\x81\x98\xae\x24\x01\x60\x39\x6c\x66\x46\x53\xc5\xf3\xa7\xbb\xf2\xaf\x2e\x47\xcc\x93\x00\x46\x60\x39\x1f\xe8\x1f\x7f\xfc\x31\x46\x47\x47\xe5\xc9\x93\x27\xc5\xbe\x7d\xfb\x4a\x44\x34\x0f\x82\x98\x4f\x54\x8c\xff\xb8\x67\xee\x6a\x4b\x3e\xb4\xab\x2b\xab\xf5\x47\x2b\x4a\xa2\x18\x92\x85\xe9\x64\x79\x64\x3e\x5e\x39\x27\x05\x46\x60\x9d\xd3\x3f\x0f\xa0\x74\xee\xdc\x39\xd8\x13\xb9\x15\x76\xcb\x15\x2e\xd3\xb6\x1c\xb5\x66\x5e\x92\xb4\x90\x29\x62\x40\xad\x12\x5c\x2f\x38\xc9\x45\x55\x66\x61\xb9\xe1\xc2\x30\x0c\x78\x88\xcb\x7f\xf5\x2a\xe9\x22\x20\x4f\x50\xa8\x57\x26\xb0\xdc\xec\xec\xac\x84\x75\x88\x6e\x24\xb6\x64\xee\x11\x26\x9a\x5c\x6b\x9e\xa3\xb1\x7b\x94\x59\xf2\x10\x0f\xdb\x0e\x95\xd5\xe0\x69\x04\x67\xe6\xe3\x5c\x5d\xd1\x69\x13\x1c\x93\x96\x58\x34\xef\x29\x34\x2b\x1f\x01\xc8\x1d\x3a\x74\x48\xbe\xf1\xc6\x1b\x78\xf0\xc1\x07\x01\x6b\x60\x37\x1d\xb8\xda\xf8\x1b\x4d\x45\xb5\x96\xb8\x1c\x47\xce\x9a\x0a\x93\x76\xef\x58\xf2\x9f\x5d\x4b\x95\x4f\x2e\xc4\x2b\x27\xdb\xdb\xdb\x0b\xa7\x4e\x9d\x92\x89\x44\x42\xf6\xf4\xf4\x14\x00\x4c\x83\x20\x97\xa2\x66\xf6\xcd\xfe\xa5\x8b\xef\xc8\xa5\x76\xcd\x14\x09\x00\xd0\x55\x99\x35\x09\xf3\x20\x4c\xc2\x3a\xa2\x61\x1e\x40\x69\x7c\x7c\x5c\xda\xc7\x71\xe2\xf8\xf1\xe3\xe8\xe8\xe8\xa8\xc2\x02\x4a\x52\x20\x3d\xd7\x50\x19\x9d\x6b\xa8\x24\x6c\x7c\x1d\x2e\x97\x46\xf5\x1b\x50\x85\x4b\x97\x2e\xc9\xb7\xdf\x7e\xdb\x2f\x3d\xdc\x7e\x0c\x74\x99\x76\xbe\x8b\x48\x0c\x55\x91\xd0\xbc\x22\xc2\xdb\x08\xd5\x46\xad\x3e\x33\x00\x5d\xe5\x9c\x47\xbe\xc3\x07\xdf\xcf\x75\xbc\x69\x7e\xee\xe6\x47\x18\xab\xdc\x7b\x83\x0b\xdf\x3e\x7a\x48\x00\x88\x44\xb3\x72\x17\xe0\xd0\x48\xb5\x46\xec\x2c\x81\x38\x2a\x87\x47\x6c\xd6\xcc\x1a\x6b\x38\x35\xb9\x4a\xaf\xf7\x23\xb7\xde\x03\x46\x22\xcb\xe6\x4e\x30\x22\x0c\x16\x9d\x9d\x9d\x00\x20\x1b\x1b\x1b\x55\x66\x8e\x34\x96\xd4\xbe\xed\xf3\xd1\x67\x6b\xbe\x90\x4b\xfe\x77\x54\x43\xd8\x10\x9d\xbb\xa7\xe2\xbf\x70\x64\x5b\x66\x94\xc1\xa5\x81\x81\x01\xf9\xe2\x8b\x2f\xe2\xc9\x27\x9f\x34\x7a\x7b\x7b\x73\xb0\x36\x6e\x64\x01\x4c\x1a\x02\x09\x43\x98\x9a\x55\x57\x2a\x31\x73\x8e\x40\x59\xe7\xbb\x98\x33\x33\x33\xf2\x85\x17\x5e\x70\xdb\xd9\x34\x4d\xf9\xe2\x8b\x2f\x8a\x07\x1f\x7c\x50\x0e\x0e\x0e\x96\xec\x1d\x48\x39\x58\xc4\xa6\x39\xf9\x88\x48\xb7\x4f\xbb\x2e\x49\x29\x8d\x2b\x57\xae\xc8\xd7\x5e\x7b\xcd\xdf\x4f\x35\xfd\xbb\x62\xa9\xa8\xab\xab\x4b\xd8\x07\x5e\x08\x62\x21\x08\x24\xd8\x6e\x7d\xe7\x0b\x69\x6b\xb9\x4c\x4b\x62\x67\x13\x41\x3d\xc5\x3c\x48\x87\x0a\x7a\x0e\xb2\x99\xf9\xd3\xea\x4d\x0c\x04\x00\xf4\xf4\xf4\xc0\xfe\xcc\x5e\x24\x54\x92\xdd\xae\xc9\xc5\x26\x0e\xc7\x9e\x5a\x6b\x7e\x80\xfd\x75\x33\x67\x71\x9f\x3d\xd4\xe7\x99\x4c\x39\x0c\xcd\x53\xde\x55\xdf\x08\xd0\x4a\xdc\x09\x70\x84\x88\x44\x63\x63\x23\x9e\x7d\xf6\x59\xc7\xb0\x19\xd9\xb4\x14\xbe\x57\x95\x94\x74\xbf\x6a\x6b\x41\xb6\xcc\x40\x1e\xa2\x73\xd7\x7f\x89\xd0\x9b\x09\x1f\x14\x8c\x6f\x48\x41\x99\x8e\x8e\x0e\xc3\x34\x4d\xf9\xc2\x0b\x2f\xe0\xc0\x81\x03\xd8\xbd\x7b\xb7\xf3\x7d\xa6\x2c\xac\x43\x4b\x54\x7b\xc7\xb6\xf3\x85\x39\xc3\x34\x4d\xe3\xf4\xe9\xd3\xf0\x7c\x72\xd9\x6d\x3b\xd3\x34\xe5\x91\x23\x47\x70\xe4\xc8\x11\xf9\xe9\x4f\x7f\x5a\x76\x77\x77\x3b\x9b\x43\x1c\x7a\x70\x8e\x22\x90\x99\x4c\x46\x7e\xf0\xc1\x07\x18\x1d\x1d\x5d\x73\xe0\xaf\xb0\xc0\x3a\x22\xd2\x32\x3b\x40\x10\xdb\x5f\x6b\xf0\x8c\xe2\xb5\x5c\xa6\x25\x59\x36\x16\x8f\x1d\x25\x88\x18\xea\xe9\x4e\x7e\x9b\x51\x90\xb1\xb2\x9e\x91\xd5\xcf\xfd\x2c\x8c\xac\x63\x8c\x54\x61\x22\x51\x55\xe2\x9d\x59\x9f\x73\x9c\x54\x6d\x3b\xb8\x42\xca\xa6\x1c\x57\xa4\x7a\x8a\xfa\xf6\x17\xdb\xf7\xec\x0e\x38\x61\x72\x0c\x0c\x8d\xc1\x02\x70\xd7\x77\x05\x80\x48\x5c\x57\x7a\xad\x59\x99\xfb\x92\x1a\xa0\x55\x33\x41\xf5\x1d\xd1\x8a\x68\x57\x25\x25\xcb\x24\x55\x4d\xd3\x84\xa2\x28\x30\x4d\x53\xbe\xf3\xce\x3b\xb8\x72\xe5\x0a\xfa\xfb\xfb\x8d\xad\x5b\xb7\x1a\xb6\x1f\x9f\xdb\x9e\xc5\x62\x11\x23\x23\x23\x38\x7d\xfa\x34\x96\x96\x96\xea\x0d\x50\xb7\xfd\x7e\xf6\xb3\x9f\x81\x99\x8d\xa1\xa1\xa1\x1a\xf7\xeb\x99\x99\x19\xd8\x1f\x9d\xf7\x96\x5f\x15\x56\xd0\x17\x6f\xbd\x05\x6c\xab\xb1\xdd\x08\xde\x4d\xb5\xde\x4f\x9f\xd9\x76\x20\x4f\xb7\x48\xab\xad\xea\x2a\x6d\xf5\x88\x0b\x75\xe2\xd7\x3b\x21\xa8\x67\x21\x17\x00\x04\x0b\x48\x2f\xa7\x72\xef\x9d\x49\x21\x5c\x1e\xe2\x95\x56\x1e\xf1\xe7\x57\xe6\xdd\x42\xd5\x5d\x54\x5e\xae\x46\x2e\xce\x8e\x01\xd5\x51\x3f\x54\x69\x67\xae\x3d\x24\xb9\xaa\xf0\x55\x49\xae\xea\x2d\x6c\x0a\x18\x92\xe0\x9c\x9d\x8f\xbe\xbe\x3e\x5c\xbd\x7a\x55\x00\x56\xe7\xcf\xcc\xcc\xc8\x77\xdf\x7d\x57\x00\x30\xfa\xfa\xfa\x84\x94\x12\xf6\xf1\x01\x41\x6d\xea\x6d\x9b\x9a\x7e\x77\x18\xc3\xd9\xb3\x67\x71\xf6\xec\xd9\x7a\x7d\x11\x14\x56\xc0\x0a\xf4\xa6\xf0\x9c\x3c\x2c\x99\x58\x5a\xa3\x9e\xdc\x1e\x59\xa1\x24\xfb\x66\x98\x82\xc9\xcf\x19\x57\x13\x89\xeb\xb1\xf0\x6f\x34\x6e\x85\xde\x46\x44\x30\x43\x94\x73\xd7\xeb\x9d\x2f\xbc\xb9\x8a\xba\xc7\x81\xb2\x46\xaf\x74\x06\x10\x50\x3b\xa0\xe0\x31\x8e\x01\x8e\x18\xa9\xc2\x24\x18\x9a\xc8\x81\x20\x7d\xc4\x05\x66\x96\x33\x0d\xfa\x35\xb6\xec\x44\xa2\xca\x4d\x1d\xdd\xae\xfa\x7e\xa7\x65\x99\x19\xf3\x71\x7d\xcc\x10\x55\xe9\x60\x7f\xe5\x24\xb0\x3d\xc6\xc6\xc6\xbc\x6d\xb3\x1e\x23\x77\x5d\x58\xed\xed\xed\xce\x64\x69\xc3\xb0\xbc\x4b\x45\x02\x00\xba\xba\xba\x60\xbb\x70\x80\x89\xa4\x24\x48\xe2\xda\x75\x46\xc0\xf3\xc1\x4c\x38\x42\xb3\x4a\x64\x8a\x24\x15\x96\xa1\xd6\xfb\xd2\xf5\x50\x7e\x3d\xe5\x7f\x2d\xc5\x7f\x2d\xf1\x29\x99\xd9\x28\xc7\xc5\x24\xdc\xfe\x77\x78\x46\x2d\xb7\xaa\xea\xda\xb5\x03\xca\xed\x77\x47\xf9\x67\x8b\xa3\xb1\xad\x2f\x79\xf9\x90\xf3\x8e\x72\x8c\xa6\x19\x30\x60\x4d\x78\x5c\x5c\x88\x48\x9f\x4e\x96\x47\x32\x51\x63\x22\x55\x0c\xf5\x55\x5d\x83\x3c\xb0\x7c\xcc\x9f\x09\xd2\x3e\x82\xa9\x00\xb6\xbe\x2b\xae\x28\x8a\x30\x4d\x53\x02\x10\xa1\x50\x08\x7b\xf6\xec\x41\x67\x67\x27\xda\xda\xda\xdc\x76\xd1\x75\x1d\x53\x53\x53\x18\x1d\x1d\x15\x63\x63\x63\xee\x1a\x66\x40\x7b\x3b\x8a\xbc\xd8\xb3\x67\x0f\x76\xef\xde\x8d\x78\x3c\x0e\x45\x51\x9c\x7e\x14\xcc\x2c\x97\x96\x96\x70\xea\xd4\x29\x71\xe1\xc2\x85\x35\x61\x01\xb5\xfe\x60\x35\x66\x0a\x22\x82\x24\x48\x49\x30\xfc\xd3\x66\x78\x3a\xa0\x3a\xea\xab\x39\xc2\xd6\x14\xd9\x51\x68\xdd\x86\xf5\x83\x08\x48\x0b\x1a\x09\xeb\x11\xa1\x75\xb9\xe0\xf2\xf2\xb2\x48\x24\x12\x20\x22\x3d\xdf\xa4\x5c\x60\x82\x24\x69\x97\xa5\x5a\xa9\x0f\xf2\x78\x11\x38\x83\x8a\x2d\xeb\xb5\xbb\xd1\xc5\x99\x25\x7a\xb8\x1d\x3b\x13\x1e\x87\xad\xd9\x44\x97\x6f\x56\xce\xc3\x5a\x92\x31\x72\xb9\x1c\xfe\xec\xcf\xfe\x4c\xfe\xfa\xaf\xff\xba\x04\x50\x30\x05\x66\xdf\xd9\xba\xf4\xa3\xc3\xe7\x5a\xfe\x1b\x95\x2d\x5d\xb8\x46\xa3\xf0\x70\x5a\x26\x60\xac\xb9\x7c\xfa\x72\x6b\xf1\x7d\xfb\x7b\x45\xc6\xfc\xfc\x3c\x6c\xe2\xc2\xbe\x7d\xfb\xb0\x7b\xf7\x6e\x44\xa3\x51\x87\x61\xa8\x60\xab\x93\x23\x91\x88\x4c\x26\x93\xc6\xe0\xe0\xa0\xcc\x66\xb3\xf2\xad\xb7\xde\x12\x13\x13\x13\x41\xed\x2d\x9d\x4f\xd8\x38\x7b\x31\x88\xa1\x85\x2b\x22\x12\x32\x49\xab\x28\xac\x97\x54\x59\x68\x6e\x6e\x36\x1e\x7e\xf8\x61\x7d\xef\xde\xbd\xf2\xf5\xd7\x5f\x17\xb6\xbb\xf8\x0a\x58\xce\xd5\xbf\xd8\x5d\x93\xc9\x14\x6c\xe8\x8a\x2c\x00\x8a\xc5\xb1\x5c\x0d\xd9\x1e\xfd\xae\xc2\xec\xd1\x5e\x88\x10\xd5\x45\x12\xb5\x1c\xac\x9e\x12\xe8\x0d\xf5\xb8\xd2\x6a\xc4\x17\x54\xae\x86\xdb\x2d\x2e\x2e\xa2\xb3\xb3\xd3\x20\xa2\x52\x29\x21\xc6\xca\x51\x9a\x8c\x14\xb8\xc7\x6b\x3c\xad\x9a\xc3\xa8\xa6\x93\x5d\x71\xe7\x8a\x4f\x9f\x49\xc1\x11\x8b\x4e\x7b\x38\x03\x8d\x00\x33\x84\x6c\xbe\x59\x39\xe7\xf8\xc3\x39\x1b\x2c\xf2\xf9\xbc\x8c\xc5\x62\x25\x22\x9a\xbf\xd2\x5a\x7c\xe3\xfd\x2d\x4b\x7d\xf7\x8d\x36\x7e\x56\x65\xa8\xec\x8a\xdf\x5a\xed\x7e\x2e\x51\x19\x7b\x75\x20\xfd\x2d\x53\xb1\x8e\x54\x62\x66\xc3\x3e\x7a\x01\x8f\x3e\xfa\xa8\xb0\xb7\xab\x69\xaa\x49\x89\xcd\xe9\xc8\x9e\xbe\x4c\xf8\x40\xa2\xac\x6e\x32\x05\xeb\x0b\xb1\xca\xb9\x91\x96\xe2\x5b\x73\x89\xca\x44\x32\x99\x2c\x3d\xf5\xd4\x53\xfa\x87\x1f\x7e\x28\x7c\xca\xba\xec\xeb\xeb\x13\x8f\x3d\xf6\x18\x54\x55\xd5\x48\x22\xb1\x6d\x21\xba\x6f\xcf\x54\xfc\x17\x5b\xf3\xda\xdd\x21\x93\x9a\x2a\x8a\xcc\xcc\x34\x54\xde\x3b\xdd\x95\xfb\xde\x68\xaa\x74\x32\x99\x4c\x16\x9e\x7a\xea\x29\xfd\xe3\x8f\x3f\x5e\x01\xcb\x7b\x1f\xe4\x32\x2d\x6d\xf1\x27\x19\x6c\x94\x55\x99\x73\x08\x85\xa9\x3a\x87\x84\x23\x22\xdc\x0e\x61\xf7\x7f\x5c\x57\x9a\x80\xaa\x32\xea\xe9\x74\x51\xe7\xde\x4f\x18\xf5\xd2\xbc\x21\x68\x86\xb9\x02\xd6\x5b\x6f\xbd\x25\x87\x86\x86\x24\x33\x97\x20\x90\xce\x74\x87\xde\xe9\xb8\xac\x3f\xeb\x11\x8e\x2e\x17\x5a\x31\x29\xf1\xda\xf7\x6a\x27\xca\xb6\xea\x56\x9d\x81\xda\xf4\x06\xdb\xa8\x81\x6c\x5b\xe8\x23\x43\xa3\x69\xdb\x65\xc9\x71\xb8\xc4\xa9\x53\xa7\x70\xdf\x7d\xf7\xe9\xcc\x9c\x06\xd1\xc8\x87\xbd\xcb\x7f\x9e\x8e\x19\xe9\xfb\x47\x93\x9f\x4a\x15\x42\x9d\x82\x21\x9c\x25\x9e\xa2\x6a\x16\xce\xb7\x17\x8e\x7e\xb0\x39\xfb\xe3\xa2\x26\x8f\xdb\x67\xaa\x15\x72\xb9\x9c\x3c\x77\xee\x9c\x7c\xec\xb1\xc7\x44\x7f\x7f\xbf\x60\xe6\x58\xe7\x72\x78\xe8\xd1\x4b\xcd\xbf\xdd\x96\x0b\x3d\x4e\x40\xc4\x19\xfd\x3b\x10\xc5\xdd\xe3\x0d\xf3\x17\xda\x0b\xff\xfe\xad\xfe\xa5\x6f\x16\x55\x73\xfe\x9e\x7b\xee\x29\x31\x33\xec\x4d\x1f\x12\x00\x9e\x78\xe2\x09\x08\x21\x22\x21\x83\x5a\x1f\xbd\xd4\xfc\x9b\x03\x73\xb1\x5f\x17\x8c\x98\xe3\xc0\xa0\x99\xd4\xd7\xbf\xa0\x0c\x6f\x49\x47\xbe\x7c\xae\x23\xff\x6f\xdf\xd8\x96\xf9\x43\x56\xd5\xf9\x7b\xee\xb9\xa7\xb4\xb0\xb0\x20\xc6\xc7\xc7\xbd\xcc\x20\x50\x44\x02\x00\xda\xda\xda\xaa\x9d\x44\x64\x94\x42\x32\xeb\x9c\x3e\xcc\xb6\x42\x1c\xe4\x32\x6d\x35\xad\xc5\xd1\x12\xba\xd2\x4a\x0c\x8d\x09\xc2\x5e\x76\xaa\x11\xc3\x01\x04\x53\x2f\x3d\x48\xaf\x0a\x22\xd0\xba\x1c\x0c\x96\x1e\x22\x43\xa1\x50\x89\x81\xf4\x42\x4f\xe8\xd5\x96\xf1\xca\xe3\x6a\x89\x53\x0e\xc2\xcc\xe4\x31\xbe\xd8\xc6\x53\x38\xca\xb5\x45\x38\xe4\xfa\x87\x79\xc5\xaa\x87\xa3\xbb\x17\x82\x54\x50\x9a\xdb\xa2\xbd\x00\xa2\x34\x98\x0b\x52\x4a\xe3\xda\xb5\x6b\x2e\x81\x6d\xdd\xba\x55\xb6\xb7\xb7\x17\x98\x79\x92\x88\xe4\xe5\x96\x42\xe1\x5a\x73\xe9\x44\x5b\x2e\x34\xd8\x52\x08\x75\xab\x26\x69\xb9\xb0\x99\x99\x4e\xea\x17\x72\x9a\x39\x02\xeb\x34\xc8\x09\x58\xd6\x73\xe3\xe8\xd1\xa3\xb8\xef\xbe\xfb\xc4\xb6\x6d\xdb\x04\x80\x44\x47\x56\xdb\xf3\xcc\xe9\xd6\x3f\x8e\x55\x94\xfe\x1a\x57\x6f\x58\x38\x86\x24\xb5\xee\x9e\x8e\xff\xaf\x4d\x45\x75\xe7\xf3\xbb\x17\xbe\x5e\x0a\xc9\xc9\xbb\xee\xba\xab\x34\x31\x31\x21\x72\xb9\x1c\x3e\xf7\xb9\xcf\x41\x51\x14\x8d\x24\x52\x8f\x5c\x6e\xfa\xad\x9d\xb3\xb1\xff\xae\xaa\x57\xc3\x86\x62\xfd\x57\x18\xb1\xdd\xd3\xf1\xff\x51\x91\x94\x78\x79\x30\xfd\xbb\x52\x60\xfe\xe0\xc1\x83\xfa\xf7\xbe\xf7\x3d\x6f\x3f\xb9\x7d\xe1\xec\x2a\x22\x3b\x81\x0b\x85\x02\xdf\x79\xe7\x9d\x50\x14\x25\x04\x20\xd9\x9d\xd5\xee\xef\x5c\x0e\x0f\x56\x07\x33\xa1\x76\x86\x45\x20\xfb\x1c\x56\xb7\x95\x09\xf2\x74\x57\xee\x3f\x1a\x82\xe7\x85\x10\xa5\x89\x89\x09\xe4\xf3\xf9\x2a\x9e\xc1\x57\x0a\x88\x67\x0f\x21\xfa\xd3\x82\xca\xfb\xe3\x18\x00\x35\x36\x36\xa2\xb5\xb5\x95\x01\x28\x52\x25\x01\x50\x53\xc3\x82\xb9\xc7\x69\x34\xf2\xe6\x76\xb9\x5a\xd5\x48\xe0\x28\x6b\xae\xc4\x27\x76\x45\xa1\x57\xc9\x77\x8a\x2f\xf4\x86\x7e\x9e\xee\x09\x3d\xc7\xf6\x77\xb5\xe7\xe6\xe6\x4c\xfb\xb0\x17\x06\xc0\x13\x13\x13\xb4\x79\xf3\x66\x19\x89\x44\x2a\xcc\x5c\x24\xa2\xac\x49\x9c\xce\x45\xe4\xf8\x6c\x43\xe5\xdc\x54\x43\xf9\x44\x3a\x56\x39\xae\x2b\xf2\x02\x11\x5d\x65\xe6\x49\x00\x8b\x00\xca\xef\xbe\xfb\xae\xbc\x76\xed\x1a\x0e\x1d\x3a\x04\x55\x55\xc3\x21\x83\x3a\x3e\x7d\xb6\xe5\xf7\x9a\x4a\xea\x5d\xb5\xba\xb0\x73\xd2\x37\x5c\x1d\xb9\xa1\xac\xec\x0a\x99\x64\x8c\xa6\x4a\xc7\x84\x22\x2a\xed\xed\xed\x66\x32\x99\x74\xce\x1f\x49\x6c\x49\x47\x0e\x3d\x38\xda\xf4\x2f\x09\x08\xad\x01\x8b\x5a\xf2\xa1\x3b\x33\x31\xe3\xfc\x5c\x5c\xbf\xaa\x69\x5a\x45\x55\x55\xb6\x77\xed\xb3\xa7\xdf\x6a\x44\x58\x4d\xb0\x97\x7a\x8c\x6c\xd8\x9c\x76\xa6\xcf\x8e\x5b\x8e\x6d\x84\x75\xaf\x4e\x27\x39\xdb\xda\xc2\x86\x68\x4a\xe8\x4a\xca\x16\x91\xc2\xde\xa0\x1a\xf4\x43\x9d\x78\x3f\x47\x5a\x2b\xaf\x5f\x4f\xab\x29\x7f\xfa\xf4\x69\x48\x29\x25\x11\xe5\x40\x34\x3d\xbf\x39\xf4\x5c\xb6\x4d\x39\xe9\x7a\x6a\x56\x19\x90\xa3\x4d\xb9\x0d\xeb\x35\x9a\x91\xdd\x76\x8e\xd9\xc0\x1e\x6e\x36\x71\x59\xf7\xc5\xa4\x18\x9d\xde\x11\xfe\x4b\x10\x4d\x38\x0a\xf9\x07\x1f\x7c\xe0\xc5\x49\xe4\xf3\x79\xf9\x93\x9f\xfc\x04\xe9\x74\xda\x20\x6b\xd7\xd5\x2c\x11\x5d\x06\x70\x12\xc0\x47\x44\x74\x94\x88\x4e\x12\xd1\x79\x00\x63\x44\x94\x36\x0c\xa3\xf4\xee\xbb\xef\xca\xd3\xa7\x4f\xcb\xc1\xc1\x41\x84\xc3\x61\x01\x20\xb6\x65\x31\xf2\x70\x5b\x4e\x3b\xe8\x9e\xee\xed\x98\x29\x1d\xcc\x6a\x0c\x7f\x84\xdd\xd3\xf1\xaf\x26\x4b\x4a\x3f\x00\xad\xb5\xb5\x55\xec\xd9\xb3\x07\x64\x1d\xec\xdc\x34\x3c\x99\xf8\x65\xc1\x88\xad\x07\x16\x31\x69\xfb\xc6\x1b\xfe\x91\xc2\x94\x02\xa0\xda\xc7\x0d\xac\xd0\xc5\xfc\x22\x07\x00\xb0\xb4\xb4\xe4\x98\x2a\xf4\xe5\x88\x31\xeb\xb8\xeb\x10\x55\x1b\xb3\xae\xcb\x34\x00\xc1\xd0\x9a\x0b\xa1\x3e\xdb\xef\x1b\xf7\xde\x7b\xaf\xf0\xbc\x23\xd0\x08\xea\xb9\xf7\x5f\x83\xf4\xb5\xa0\x32\xfe\x74\x17\xfe\xc2\xc2\x82\x63\x33\x2a\x01\x98\x97\x02\x23\xe3\x7b\x22\xdf\x2e\x26\xc5\x28\x7b\x2c\xe7\xae\xd4\xb3\x95\x77\x47\x89\x77\xc9\x8d\xa8\xc6\xce\xe5\x98\x15\x1c\xe5\xbe\x1c\xa3\xf9\x6b\x77\x46\xbe\x69\x6a\x74\x9e\x99\x67\x01\x94\xa6\xa6\xa6\xa4\xbd\xa3\xaa\xa6\xce\xc5\x62\x51\xfe\xe8\x47\x3f\xc2\x5b\x6f\xbd\x25\xb3\xd9\x6c\xc9\x5e\xfb\x4b\xdb\xe5\x9c\x5f\xa6\x52\xa9\x14\xce\x9f\x3f\x6f\x7c\xfb\xdb\xdf\x76\x0e\x4a\x16\xf6\xf2\x97\x0a\x46\x62\x73\x3a\xf2\x09\x01\xeb\x13\x31\xd5\xdd\xf6\x70\xdd\x9c\x9d\x3e\x83\x85\x32\x54\x49\xa9\xde\x4c\xe4\x00\x11\x39\x87\xcf\x09\x66\xd6\xc2\x26\xb5\x76\x2e\x6b\xfb\xc8\x53\xa7\xb5\x60\xa5\x0a\xa1\xbd\xc9\x92\xda\x4d\x44\x11\x5b\x15\xf2\xf7\xeb\x8a\x59\x24\x00\x20\x93\xc9\xa0\xb5\xb5\x55\x02\x30\x32\x51\x63\x4a\x12\x74\x85\xad\x45\x6f\x47\xd1\x5f\x19\x6a\x63\xdb\x72\xa1\x1d\x97\xdb\x48\x03\xac\x33\x2e\xfc\xef\xb0\x43\xbd\x99\xe1\x6a\x33\xc4\xf5\xa4\xc3\x9f\xfe\xde\x7b\xef\x89\xde\xde\x5e\x43\xd3\xb4\x1c\x11\x4d\x18\x61\x3a\x7e\x75\x5f\xf4\xdf\x6d\x3e\x59\xfa\x5a\x3c\x6d\x6e\xf7\x32\x2b\xab\x36\xa8\x31\xbf\x54\x2d\xf5\x55\x9d\xcb\xdd\xd1\x4e\x40\x31\x21\x26\xaf\xed\x8d\xfc\xbf\xe5\xb8\x38\x0a\x8b\xeb\x64\x2b\x95\x8a\x1e\xf0\x3d\x71\x17\x4f\x29\xa5\x3c\x7b\xf6\x2c\x2e\x5c\xb8\x20\x4c\xd3\x34\xee\xbc\xf3\x4e\xd1\xd1\xd1\x01\x00\x28\x16\x8b\x98\x9e\x9e\xc6\xd8\xd8\x18\xca\xe5\x72\x4d\x1d\x9b\x9a\x9a\x84\xcd\x75\x62\xc9\x92\xda\xe7\x62\xec\x7a\x78\x78\xbc\x40\x56\xd8\x3e\x80\x64\x49\xd9\x06\xeb\xbb\xe0\xc2\x5e\x5f\xd4\xc2\x15\x91\x0a\x99\xd4\xb4\x11\x58\x0a\x23\x96\x28\x2b\x3d\x99\x98\x71\x16\xc1\x93\x30\xf8\xdd\x75\x00\x00\xa6\x69\x02\xb6\x41\x30\x1b\x31\x67\xcb\xaa\xcc\xc5\x2a\xc2\x73\x26\x3e\xbc\xd6\x8a\x5a\x4e\x66\xc7\x77\x2e\x87\x87\x88\x11\x63\x82\x1a\x8b\xc5\xf4\x50\x28\x24\x2a\x95\xca\x6a\xb6\x30\xf8\xf0\x08\x52\xec\xfd\x69\xfe\x99\x63\x50\x39\xc0\x16\x4b\xaf\xbe\xfa\xaa\x78\xea\xa9\xa7\x74\xfb\xac\x8c\xd1\x4a\x54\x60\x64\x7f\xb4\xd0\x79\xa9\xfc\x85\x96\xf1\xca\x01\x61\x42\x73\xeb\xe5\x31\x41\x78\x97\x81\x6a\xbc\x48\x40\x90\x02\x46\xa6\x4b\x3d\x3e\x39\x18\xfe\xf3\x8a\x46\x27\x01\x5c\x26\x60\x9e\x99\xf5\xf7\xdf\x7f\x3f\xa8\x5e\x2b\x9e\xed\xf6\x76\x66\x75\xf5\x26\x2f\x16\x47\x50\x55\x11\x8b\xc5\x60\x6f\x8a\xd6\x24\x71\xb5\x63\x99\x6c\x9f\x79\xb8\xfa\x21\xc1\x63\xa7\xb3\xf9\xb4\x24\x08\x00\x1a\x33\x3b\x9f\x9b\x11\xba\xca\x30\x04\x97\x42\x12\x89\xf5\xc2\x32\x84\x2c\xe5\xc3\x66\x09\xb0\x4d\x2c\x01\x7d\x19\xb4\xdd\x08\xd7\xaf\x5f\xc7\xe0\xe0\xa0\x64\x66\xbd\xa2\xc8\x4c\x2e\x6c\xce\xc7\x2a\x4a\x0a\x70\x69\xca\x33\x4b\xb1\x42\xad\x86\x4d\x48\x15\xd4\xed\x61\x43\x34\x95\x42\x52\x8d\xc7\xe3\xa2\x52\xa9\x38\xde\xad\xab\x59\xf4\x57\xe3\x56\x41\x65\x82\x66\x95\x75\x0d\x7f\xe3\xe3\xe3\xf2\xe4\xc9\x93\xb8\xe3\x8e\x3b\x4a\xb0\x88\x40\x9a\x0a\xf4\xc9\x9d\xe1\x6c\xa6\x2b\x74\xb2\xed\xaa\xfe\x48\x72\xce\xd8\x29\x4c\x68\x8e\x8e\xe9\x2c\x29\x79\x9d\x58\x89\x00\x16\x30\x96\x53\xca\xc8\xdc\x56\xed\xf5\xe5\x16\xe5\x7d\xb6\x3e\x43\x38\x06\xfb\xa3\xf5\x1f\x7f\xfc\xb1\xf4\xac\xe3\xad\xc6\x65\xd7\xaa\x77\xcd\x60\xb2\x3d\x59\xdd\x41\x95\x89\x1a\xd3\xbc\x68\x3d\xf8\xdd\x90\xdc\xc5\x78\x97\x11\x30\x18\x90\x33\x0d\xfa\x55\xf6\xad\x2e\xe8\x8a\x2c\x2c\xc6\x8c\xc9\x68\x56\x69\xe5\x75\xc2\x5a\x88\x57\x46\x32\x51\x23\x6d\x6f\x20\x09\xac\x8f\x5f\x44\x0a\x00\x72\x61\x61\xc1\x06\x46\x86\x09\xe4\xe6\xe2\x95\xd1\xb6\x65\x6d\xa0\x6a\xe7\xa9\x99\xd4\xbb\x2f\x84\x3b\x46\x80\x98\xae\xb4\xb7\xe4\xd5\xfe\xeb\x4d\xfa\x65\x66\x2e\xec\xd9\xb3\x47\xf8\x3e\xb6\x10\x14\x56\x33\xc0\xae\x46\x98\xde\x4a\xad\x96\x5f\xbc\xf7\xde\x7b\x12\x80\x4b\x64\xf6\xc6\x94\x5c\xbe\x51\xcc\x16\xf6\x46\x4e\x69\x45\xde\xd6\x30\x67\x0c\x25\xd2\x66\x7f\x24\x27\xdb\xd5\x0a\x47\xc0\x50\x41\x90\xa6\x4a\xa5\x72\x5c\xcc\xe7\x52\xca\xe8\x72\xab\x72\xb6\x14\x17\x97\x98\x30\x41\x44\x13\x60\x9e\x25\xa2\x2c\x33\x97\x8e\x1d\x3b\x26\x8f\x1d\x3b\x56\x17\x07\x0f\xbe\xeb\x31\xc9\xac\x68\x9b\xc5\xc5\x45\x34\x37\x37\x1b\xcc\xac\x8f\xb4\x14\x3f\xbe\x63\x2a\xf1\x39\x85\xa1\xfa\x0d\x14\xae\x01\xdc\x36\x14\x13\x80\x4c\xd4\x98\x1c\x6f\x2e\x9d\x85\xbd\xe9\xc3\xf9\x1a\x88\x09\xce\x9d\xed\xcc\x1f\xe9\xcc\x6a\x7b\x04\x20\xd6\x82\x05\x00\x67\x3a\xf3\x47\x24\x38\x0b\xcb\x4d\xc8\x8f\x2b\x80\x3a\x47\x68\x2e\x2e\x2e\x4a\x00\x60\x66\x1d\x40\x61\x2a\x59\xbe\x38\x34\x13\x7b\xd2\xd2\xc1\x6c\x9d\x24\x68\xf9\xc8\x99\x4b\x31\x43\x80\xb4\xde\x4c\xe4\x9e\xeb\x8d\xfa\x11\x22\x12\xbd\xbd\xbd\x38\x7d\xfa\xf4\x5a\x86\x53\x3f\x82\xfe\xc6\x15\x1b\x8c\xf3\xc3\x01\x6c\x22\x5b\x58\x58\xc0\x43\x0f\x3d\x54\x52\x14\xc5\x80\xd5\xd8\x69\x66\x9e\x2c\x47\x69\xa4\xdc\x17\x3a\x36\xdf\x17\x4a\x12\x90\x10\x26\x62\x24\xa1\xb2\x80\x21\x15\x94\x18\xc8\xd9\x84\x94\x26\xa2\x79\x30\x67\x98\x39\x03\xa0\x54\xa9\x54\xf4\x93\x27\x4f\xc2\x43\x5c\x41\x75\xa8\x57\xff\x7a\xf8\xaf\xc8\x9b\xcd\x66\xd1\xdc\xdc\x2c\x01\xe4\x26\x9a\xca\x27\x47\x53\xa5\xe3\xfd\x0b\x91\xbb\xc9\xb6\x55\x56\x0d\xc7\x70\x57\x57\xd8\xd2\x9f\xe5\x87\x7d\xd9\xe7\x4d\x81\x59\xb0\xb5\x67\xc2\xde\xd3\x68\x00\xc8\x9c\x6f\x2f\xbc\xb1\x6d\x3e\x7a\x70\x4b\x3a\xb2\x77\x55\x58\x60\x8c\x37\x95\x4f\x9f\x6f\x2f\xbc\x46\x44\x19\x66\xd6\xed\x23\x51\x57\xd4\x51\x41\x6d\x70\x6c\x18\xe8\xeb\xeb\xa3\x58\x2c\xa6\xd8\xb3\x8d\xd4\xd0\x74\xe2\x31\x01\x52\x9c\x69\x79\x8d\x01\xca\x56\xfc\x1d\x33\x85\x63\xbe\x50\x24\xe1\x6c\x57\xfe\xaf\x41\xc8\xc6\x62\xb1\x8a\xbd\xa4\x40\x9e\xf7\x78\x7f\xf0\x5d\xeb\xa5\x7b\x7f\x4e\x85\xd6\x53\xbe\x06\x56\x3a\x9d\xe6\x8f\x3f\xfe\x98\x7b\x7a\x7a\xb8\xa1\xa1\xa1\x02\x6b\x86\xb9\x6c\xef\x92\x99\x87\x65\x3a\x98\x62\x41\x13\x52\xe0\x1a\x14\x1a\x05\xd1\x35\x00\xd7\x88\x68\x0c\xc0\x04\x11\xcd\xdb\xf9\x4b\x8b\x8b\x8b\xc6\xab\xaf\xbe\x8a\x4b\x97\x2e\xc9\x00\xbc\xfc\xb8\x39\x57\x6f\x5b\xd4\xc3\x7f\x05\x2c\x5d\xd7\x69\xfb\xf6\xed\x4c\x44\x60\x82\x3a\x95\x2c\xa7\x7b\x33\x91\xe1\x58\x45\x4d\x7a\xc5\x7a\x75\xe2\x65\xe9\x53\x27\x36\xe5\x5e\xfd\xa8\x67\xf9\x07\x4c\x96\x5f\x3e\x33\x57\xb2\xd9\x2c\xc2\xe1\xb0\x24\x22\x92\x02\x18\x6f\x2e\xcd\xb4\xe5\xb5\x6d\x8d\x25\xb5\x35\x08\x16\x03\xb8\xde\xa8\x5f\x7e\x71\x67\xfa\x1b\x25\x4d\x9e\x02\x30\x05\xa0\x78\xe2\xc4\x09\xe9\x59\x97\x74\xeb\xe1\x35\xb4\x56\x4d\x3a\x80\x68\x6e\x6e\x46\x7b\x7b\x3b\x00\x68\x15\x85\xe3\xbb\x66\xe2\x8f\x59\x1b\x40\xbc\x67\x19\xda\x4f\xee\xa2\xa4\x5d\xdc\x16\xe2\xd1\x8a\xd2\x7c\xa9\xad\xf0\x52\x31\x64\xce\x08\x21\xca\x8b\x8b\x8b\xce\xe6\x80\x15\xef\x0b\xb8\xd6\x4b\x83\x27\x5d\xd6\x29\xbb\x6e\x58\x17\x2e\x5c\xa0\xa9\xa9\x29\x4e\x26\x93\x66\x34\x1a\xd5\x85\x10\x65\xdb\x36\x95\x05\x90\x21\xa2\x05\x00\x73\xb6\x1b\xf1\x3c\x80\x05\xdb\xbe\x95\x67\xe6\xf2\xd2\xd2\x92\x71\xf4\xe8\x51\x3e\x72\xe4\x88\xcc\xe7\xf3\x7e\x42\x81\xef\xfd\xfe\x67\x3f\x7e\x4e\x7a\x10\x61\xba\x65\xb3\xd9\xac\x1c\x1c\x1c\x84\xa6\x69\x0c\x80\xf5\x10\xeb\x57\x5a\x8a\x63\x11\x43\x34\x36\x16\xd5\x56\xc5\xe3\x2e\xc5\x00\x96\xc3\x66\xfa\xed\xfe\xa5\xe7\x8e\xf6\x2e\xff\x85\x49\x7c\x9e\x88\xa6\x89\xa8\x70\xe2\xc4\x09\x7e\xe9\xa5\x97\x1c\x58\x26\x00\xc3\x50\xa1\x5f\x6e\x2d\x5e\xc9\x85\xcd\x72\x5c\x57\x9a\x34\x29\xc2\x00\xc8\x14\x5c\xc9\x44\xcd\x85\x63\xbd\xcb\xaf\x1d\xd9\x96\xf9\x93\x92\x26\x4f\x30\xf3\x18\x11\x65\x4a\xa5\x52\xe5\xd5\x57\x5f\x85\x94\x72\x45\x1d\x83\xec\x0d\x6e\xf8\xda\xd7\xbe\xa6\x02\x68\x22\xa2\xa1\xc3\xe7\x52\xbf\xb3\x73\x26\xfe\xb0\xd7\x28\x59\x33\x06\xfd\xda\x3f\x03\x4c\x8c\xb7\xb7\x2e\xfd\x5f\x47\xfb\x96\xff\x90\x99\x67\xa7\xa6\xa6\xf4\xe7\x9f\x7f\x1e\x58\xc5\x9c\x50\x27\xac\x67\xa6\x78\x4b\x60\xdd\x7d\xf7\xdd\xa2\xab\xab\x0b\x89\x44\x02\x89\x44\x02\x40\xd5\x65\x98\x88\x64\xa9\x54\x42\x2e\x97\xc3\xc4\xc4\x84\xd7\xf5\x38\xe8\x1d\x6b\xcd\x98\xd7\x1b\xea\xc2\xfa\xda\xd7\xbe\xa6\x12\x51\x84\x99\x53\x00\xfa\x08\xb4\xa5\xb1\xa4\x0c\x76\x2f\x85\x07\x1a\xca\x6a\xca\x24\x36\xd2\xf1\xca\xe4\x64\xb2\x7c\xae\xac\xf2\x65\x10\x46\xed\xe5\xa9\x4c\x3a\x9d\x36\x7e\xf8\xc3\x1f\x4a\x1f\x2c\x8d\x99\x9b\x00\x74\x13\x51\x8f\x90\xe8\x6e\x28\x2b\x9b\xc2\x86\x88\x95\x55\x2e\xe4\x34\x63\xc6\x54\x30\x69\x13\xd6\x24\x33\xa7\xa5\x94\xa5\x37\xde\x78\x03\xf6\x01\x74\x2b\x42\xe0\x2c\xd2\x09\xa6\x69\x4a\x55\x55\x75\x00\xd9\xb1\xa6\xd2\xf1\xc1\xd9\xf8\xc3\x2e\x45\x32\xc3\xbf\x59\xc2\x4b\x6f\xb0\xc5\xe6\xe0\x6c\xec\xc9\x8f\x7a\x96\xbf\x2b\x05\x65\xda\xdb\xdb\xf5\x44\x22\x01\x7b\xa7\xb7\x37\x04\xd9\xb5\xfc\xfa\x87\x97\xa0\x82\xf4\x94\x7a\xb0\x82\xf4\xbe\xba\xb0\x02\x4e\x50\x96\xce\xb1\x44\xf6\x6c\x18\xba\xae\xfb\xf1\x5f\xcf\x44\xa4\x9e\x42\xbf\x1a\xde\xab\xc2\x7a\xf7\xdd\x77\xe5\x81\x03\x07\xdc\xc9\x0a\x33\x67\x32\x11\x63\x2c\x13\x31\x3e\x04\x10\xb1\x95\xf8\x02\x9c\x9d\x40\x6c\x9d\x95\x6b\x18\x86\x97\xb8\xbc\xb0\x74\x00\x69\x1b\x56\xda\x24\x8c\x65\x22\x46\x02\x96\xe3\x82\xc1\xcc\x05\x30\x32\xb0\x8e\xa3\x2f\x00\xf0\x1f\x55\xb5\x02\x77\xbf\x88\xac\x31\x66\x6c\xdf\xbe\x9d\xa2\xd1\xa8\x60\xe6\x70\x39\xc4\xda\x1d\x53\xf1\xc3\xc2\xf6\x5d\xf2\x18\x48\x6c\x62\xb2\x9e\xad\xe8\x2a\x4b\x8b\x18\x22\x35\xd9\x58\x7e\x7f\x29\x62\x5c\x53\x14\x45\xcf\xe5\x72\x72\x76\x76\xd6\x2f\x1e\xbd\x6a\x9d\x6b\xd6\xf3\xc4\x39\xf1\x5e\xd1\x2a\x3d\xe9\x14\xf0\xf3\x96\x01\x6e\x02\x56\xa5\x52\x01\x00\xae\x54\x2a\xe4\xd8\x08\x7d\xf8\x7b\xe1\xd7\x8c\x33\x4f\xfd\x82\xde\x7b\x53\xb0\x66\x67\x67\xa9\x5c\x2e\x73\x57\x57\x97\x61\x8b\xf6\x3c\x2c\xb1\x6e\xe9\x8f\xd6\x1a\xe6\x75\xb2\x3e\x3c\xb6\x48\x44\x85\x4c\x26\x63\x7c\xf7\xbb\xdf\x95\x41\xb0\x66\x67\x67\xb9\xab\xab\xcb\x0c\x85\x42\x65\x22\x2a\xda\xb0\xd2\x44\x34\x67\xaf\x30\x38\x3a\x67\x31\x9f\xcf\xeb\x6f\xbc\xf1\x06\xdb\x2b\x24\x75\xeb\xe8\x3f\xa3\xb5\x26\xc4\x62\x31\xb2\xb7\x5b\x85\x2a\x2a\x47\x7b\x17\x23\xfb\x1b\xcb\xa1\x0e\x57\xa5\xe7\xaa\x42\x5f\x55\x28\xab\x71\xf6\x4f\x11\x4c\xc6\x48\x6b\xe9\x6d\x10\xf2\xa9\x54\xca\xb0\xbf\x24\x51\x4f\x21\xc7\x2a\xf1\xfe\x67\x87\x38\xfc\x79\x9d\xf8\x20\x38\xb7\x02\x16\xea\x94\x5b\xc1\xc8\xd7\x78\xef\x4d\xc3\x9a\x9d\x9d\xe5\xe3\xc7\x8f\x73\x47\x47\x07\x37\x36\x36\xea\x64\x6d\x53\x2b\x10\x51\x9e\x88\x72\x44\x94\x67\xe6\x52\xa9\x54\xaa\x1c\x3f\x7e\x9c\x5f\x7d\xf5\xd5\xa0\x76\x01\x00\xce\x66\xb3\x7c\xea\xd4\x29\x2e\x97\xcb\x48\x24\x12\x46\x2c\x16\x33\xec\x6d\x6a\x45\x22\x2a\x11\x91\xbe\xbc\xbc\x5c\xb9\x70\xe1\x82\x7c\xfd\xf5\xd7\x31\x3f\x3f\x5f\x17\x96\xf3\x5b\xe1\x32\x6d\x07\x09\x40\x4c\x4d\x4d\xe1\xae\xbb\xee\x92\x00\x4a\x0c\x64\xae\xb4\x16\x8f\xf6\x2c\x85\x87\x2d\x7b\x48\x7d\x97\x69\x2f\xdb\x00\x80\xad\x0b\xd1\xc7\x9b\x8a\xea\xb7\x16\x63\x46\x3a\x1e\x8f\xeb\xbd\xbd\xbd\xb0\xfd\x87\x9c\x10\x24\xce\x80\x60\x91\x06\xac\x14\x1f\x6b\x89\xd6\x5b\x09\x6b\x35\xdb\x95\x3f\xac\x55\x7e\x3d\xf8\xac\x0b\xd6\x0b\x2f\xbc\x00\x00\x72\x70\x70\x10\xbd\xbd\xbd\x6e\xf9\x6c\x36\x8b\xa9\xa9\x29\xa7\xbd\xeb\x99\x3f\x6a\x60\x9d\x39\x73\x06\x67\xce\x9c\x91\x91\x48\x04\xa5\x52\x49\x0e\x0c\x0c\x08\x00\xb8\x78\xf1\x62\x8d\x9b\xf6\x7a\x60\x39\x1c\x0c\x08\x18\xad\xcb\xcb\xcb\x3c\x3c\x3c\x0c\x45\x51\x40\x44\x5a\x29\x24\xc3\x43\xd3\xf1\x47\x54\x26\xcd\x59\xf4\xf5\xba\x4c\x57\x39\x18\xaa\x7e\x54\x20\x28\x4c\x51\x49\x58\xbe\xd6\x5c\xfa\x10\x84\x62\x2a\x95\x32\xcf\x9d\x3b\x17\x34\x53\x0a\xe2\x62\xf5\x46\xb2\xa8\x53\xc6\x9b\xdf\xdb\x51\xb7\x0a\x96\x9f\xeb\x78\xe1\xb1\xaf\x5c\x50\xbd\xd6\x8a\xbb\x29\x58\x0b\x0b\x0b\x3c\x32\x32\xe2\xfc\xe8\xfa\xf5\xeb\x32\x9b\xcd\xae\x80\xb5\x67\xcf\x1e\xb1\x75\xeb\x56\xc7\xd5\x9a\x5a\x5b\x5b\x31\x37\x37\x57\xc3\x89\x0c\xc3\x70\x61\x2e\x2c\x2c\x10\x00\xe6\xea\x9a\xd0\xba\xf0\xf2\x9f\x32\xed\x17\x93\x22\x99\x4c\xa2\xb5\xb5\x15\x00\x54\x5d\xe5\x70\xe7\x72\x78\x4f\xaa\x18\x51\x4f\x6f\x55\x00\x00\x1c\x88\x49\x44\x41\x54\xda\x04\xa0\xd6\x65\x9a\xaa\x2e\xd3\xee\x71\x0f\xb0\x9d\x00\x8a\x1c\x75\xe3\xf9\x88\xd1\x5c\x0c\x6d\xbe\xd0\x5e\x78\xb1\xac\xc8\x74\x34\x1a\xad\x7c\xf4\xd1\x47\x41\xb3\x3f\x0e\x78\xae\x87\x9b\x93\x16\x34\xad\x0f\xe2\x4a\xb7\x0a\x96\x1f\x57\xe1\xcb\xcb\xbe\xb4\x8d\xde\xdf\x56\x58\x5f\xf8\xc2\x17\xc4\xc1\x83\x07\x95\xbe\xbe\x3e\xa5\xb3\xb3\x53\x34\x36\x36\xaa\x7d\x7d\x7d\xd4\xdb\xdb\x8b\xbb\xee\xba\x0b\x2d\x2d\x2d\x34\x32\x32\xe2\x6f\x8b\x1b\xc6\x4b\xc1\x4a\x65\xbb\xa6\x81\x4d\xd3\xa4\x81\x81\x01\x00\x20\x10\x45\x98\xb8\x71\xfb\x5c\xf4\x3e\x30\x91\xeb\x32\x5d\x63\xec\xa8\xda\xc4\x1c\xc3\x2b\x40\x50\x24\xe2\x04\x2a\x5d\x4b\x95\x8f\x12\x51\x71\xcb\x96\x2d\xd2\xe6\x62\xf5\x6c\x5a\x5e\xe5\xd1\x9b\xcf\x3f\x41\x40\x40\x1e\x2f\x2c\x60\x65\xfd\x6e\x06\x96\x3f\x1f\x7b\xe0\x00\xb5\x70\xfd\x1c\xd4\x29\xef\x57\x8c\x6f\x2b\x2c\x22\xc2\xe3\x8f\x3f\x4e\x8f\x3d\xf6\x98\x12\x8d\x46\x43\x02\x14\x4b\x94\x95\x96\xce\x65\x6d\x7b\x7b\x4e\xdb\x1a\x36\x44\x83\xa1\x00\x52\x21\x34\x35\x37\xc9\xe1\xe1\x61\x36\x0c\x03\xf6\x64\xec\xa6\xf0\xf2\x8a\x48\x3f\x82\x02\xb0\x8c\x7a\xdb\xb6\x6d\x43\x34\x1a\x25\x66\x0e\xe5\xc2\x26\x06\xe6\x62\x0f\x45\x4d\x25\xe1\x12\x11\x9c\x95\xfa\xaa\xe2\x5f\xfb\x4e\x2b\x3d\x55\x08\x6d\x1b\x6d\x29\xbd\x51\xd0\xe4\x5c\x34\x1a\xd5\x2b\x95\x0a\x66\x67\x67\x81\x5a\xf1\xe3\xd7\x71\xbc\x71\xde\x19\x1f\xf9\xe2\xe0\xb9\xf7\xeb\x34\x74\x0b\x61\xf9\x95\x70\x6f\x9c\xff\xe7\x0d\xc2\x57\xce\xfb\xbb\xad\xb0\x1e\x7f\xfc\x71\xea\xef\xef\x17\x44\x14\x4b\x15\x43\x5b\x3f\x71\xb9\xf9\xb7\x1e\xbe\xd2\xf4\x7f\xee\x99\x8e\xff\xf7\x03\x73\xb1\x5f\x1d\x9a\x8e\xff\xc3\x9d\x33\xb1\x27\xc3\xa6\xe0\xf9\x86\xca\x38\xab\xa2\xd2\xd7\xd7\x27\x99\x99\xa7\xa6\xa6\x6e\x0a\xaf\x15\x2e\xd3\x9e\x42\x2e\xc1\x29\x8a\x82\x9e\x9e\x1e\x10\x11\x19\xc4\xe1\x88\xa1\x74\xf4\x2c\x45\x76\xd7\x75\x99\x06\x57\x2f\x9e\x68\x85\x29\x1a\xab\x28\xd1\xcb\x6d\xc5\x77\x40\x54\x48\xa5\x52\xc6\xd5\xab\x57\xa1\xeb\xba\x7f\xea\xee\x9d\xf2\xfa\xa7\xee\x5e\xea\xf5\x8f\x28\x7f\x1c\xe3\xd6\xc3\xf2\x8f\x5c\xf2\xfd\xbc\x62\x24\xc8\x04\x13\xc4\x41\x6f\x1b\xac\x87\x1e\x7a\x88\x76\xec\xd8\x21\x00\x24\xfa\x32\x91\x7b\x9e\x3e\xd3\xf6\xed\xce\x65\xed\xd3\x0a\x53\x33\x81\x14\x30\x48\x10\x85\xc2\xa6\xe8\xda\xb4\x14\x3e\xdc\x95\x0d\x6f\xbd\xda\x5a\x7a\xbf\x22\x64\xa9\xbb\xbb\xdb\xb4\x55\x99\x1b\xc6\x4b\xf1\x21\xe5\x0d\x2e\x95\xe6\xf3\x79\xda\xb5\x6b\x97\x14\x42\x80\x88\x42\x4b\x51\x83\x77\x4f\xc7\x1e\x09\xb1\xd0\xc8\xae\x8b\xbb\x1e\x49\xb0\x15\x7e\x9b\xa3\x79\xcc\x18\x20\x42\x53\x51\xed\x4f\xc7\x2a\x67\xd2\x71\x63\x34\x14\x0a\xe9\x0d\x0d\x0d\xce\x09\xd4\xf5\x46\xa2\xf7\xb9\xde\x28\xf2\xa6\x7b\xaf\xb7\x0b\x96\x57\x6c\x06\x8d\x68\xef\xd5\xfb\x2e\xa0\x96\x83\xe2\x76\xc2\xea\xed\xed\xa5\xfb\xef\xbf\x5f\x10\x51\xac\xa9\x14\xda\xf1\xd9\xd3\xad\xdf\x8a\xeb\xca\x20\x81\xec\xc1\xef\xf4\x11\x9c\x67\x6a\x28\x2b\xbb\x52\x05\x35\x75\xb9\xad\xf8\x2e\x04\x15\x77\xed\xda\x25\x4f\x9e\x3c\xe9\x6f\xab\x75\xe3\xe5\x88\x48\xbf\xfe\x55\x43\x9d\xba\xae\xa3\xa5\xa5\x05\xcd\xcd\xcd\x0c\x40\xe8\x0a\x87\x1a\xca\xca\xe6\x8e\x65\xad\xdf\xdd\x13\xe8\xea\x5d\x80\xbb\x5a\x49\x80\xcb\xe5\xc8\x05\xac\x76\xe4\xc2\x3b\x2e\xb4\x17\x5e\x36\x54\x2c\x37\x35\x35\x19\x4b\x4b\x4b\x58\x5c\x5c\xf4\x8f\x0a\x60\xe5\xc8\xf4\x8f\x1a\x6f\x99\x20\x0e\x75\xbb\x60\x79\x89\xd6\xdb\x5e\x41\x81\x7d\xe9\x7e\x91\x7c\xdb\x60\x3d\xfe\xf8\xe3\x14\x8f\xc7\x43\x00\x9a\x1f\x1e\x69\xfc\x27\x9b\x96\x22\x9f\xac\x6e\xd5\xab\x8a\x18\xb2\x21\x39\xa6\xa7\xa6\x92\x3a\x30\x1f\xaf\x9c\x4c\xc7\x8d\x31\x55\x55\xcb\x86\x61\x60\x66\x66\xc6\x8b\xe3\xba\xf1\x12\xa8\x52\x9b\x97\x8b\x49\xcf\x55\x02\x80\x7d\x44\xa2\x84\xfd\x51\xf1\xe3\xdd\xb9\x17\xca\x2a\x17\xaa\x45\x3c\x66\x8a\x2a\xcf\xaa\x72\x30\x86\x1b\x9b\x2c\x29\x43\x07\x46\x1b\xff\x31\x31\x9a\x88\x48\x7b\xe0\x81\x07\xea\xbe\x37\xe0\xde\x1b\xe7\x9f\xe1\x49\xdf\xcf\x5f\xb7\x5b\x09\x0b\xbe\xbc\xde\x20\xd6\x48\xf7\xe3\x70\x5b\x60\xa5\x52\x29\xc0\xfa\x34\x5f\x7b\xff\x42\xf4\x33\xae\xf7\x9e\x87\xf7\xb8\x3a\x82\xf7\x10\x3e\xa6\xc8\xd0\x4c\xfc\x17\xc0\x48\x12\x91\x6a\x4f\xf2\x6e\x08\x2f\xbf\x91\xcc\x1f\xdc\xf8\xa9\xa9\x29\x39\x35\x35\x25\xed\x8d\xa4\xf3\x8b\x31\xe3\xec\x85\xf6\xc2\x3b\x2b\x36\x7f\xb0\xc5\xc1\x1c\xa2\xaa\xa9\x09\x57\x3d\x31\x86\xa6\xe3\x5f\xdd\x31\x17\x7b\x1c\x8c\x44\x2c\x16\x53\x9f\x7e\xfa\x69\xe1\xdb\x38\xe0\xc7\xcd\x9f\x06\x4f\x7a\x50\x5a\x90\x72\x7e\x2b\x60\x05\x05\x3f\x5c\x59\x27\xde\x9f\xff\xb6\xc2\xb2\x77\x75\x69\xc9\x92\xd2\x13\xae\x88\x4e\xc0\xd9\x17\x65\x75\x8c\x73\xb2\x8f\xed\x2b\x56\xc3\x18\x5a\x73\xa1\x21\x55\x52\x0a\x80\x96\x4a\xa5\xdc\xf3\xf9\x37\x8a\xd7\x6a\x15\xf5\x06\x09\x00\xc7\x8e\x1d\x03\x59\x07\xcb\xe5\x18\x3c\xfd\x51\xcf\xf2\x4f\xcb\xaa\xcc\x39\x48\x39\x57\x97\x97\xd9\x17\xf7\xf8\x7e\x8f\x3e\xa6\x30\x45\x1e\xbe\xd2\xf8\xdb\xcd\x45\x75\x80\x99\x63\x5d\x5d\x5d\x62\xff\xfe\xfd\x2b\xde\x19\x70\xf5\x57\xc2\x5f\xd1\xa0\xfc\xb7\x12\x96\x1f\x66\x50\x3e\x3f\xd1\x06\x71\xc6\xbf\x09\x58\x82\x99\x55\x45\x52\x92\x60\xed\x18\x77\xa4\x0a\x80\x1a\x37\x68\xef\x71\x05\x0c\x40\x91\x14\xa3\xea\xc7\xc0\x1c\x57\xed\x0d\xe3\x25\x10\xdc\xb0\x81\x54\x3a\x39\x39\x29\xaf\x5f\xbf\x2e\x61\x79\x80\xce\x2f\x45\x8c\xb3\x27\xba\x73\x3f\xaf\x39\x71\x1a\x2b\xb5\x41\xf8\x9e\x9d\x6b\x5c\x57\xfa\x9f\xb8\x90\xfa\x17\x61\x53\x74\x02\x88\xdc\x71\xc7\x1d\x62\xd7\xae\x5d\xf5\x46\xe8\x5a\x83\x61\xad\x11\x75\xab\x60\xad\x37\xce\x79\x0e\x12\x2d\xfe\xfc\xb7\x05\x96\x4d\x48\x22\xaf\x99\x05\x53\xb0\xee\x2a\x93\x0c\xc0\xe5\x65\xd5\x5e\xaa\xf2\x35\xc6\x52\xd4\x98\x35\x05\x4b\x58\x44\x8a\xce\xce\xce\x1b\xc2\xab\x5e\xa2\xf4\x65\x74\xc5\xc7\x4f\x7f\xfa\x53\xc9\xcc\x06\x33\xe7\x40\x98\x3c\xbe\x29\xf7\xd3\xa5\x88\x39\xeb\xa0\xc8\x76\x0d\xc8\x79\xf6\x54\xc6\x91\xf3\xe4\xb9\xef\xca\x6a\x8f\x3e\x72\xb9\xf9\x37\x15\x89\x56\x00\xda\xfd\xf7\xdf\x8f\xee\xee\x6e\x81\x95\x8d\xe7\x17\x61\x41\xe2\x3d\x48\x14\xde\x6a\x58\xfe\x10\x94\x2f\x48\xed\xf0\x3e\xd7\x53\x4b\x6e\x19\xac\xa1\xa1\x21\xe1\x6c\x9e\xce\x85\xcd\xcc\x42\xcc\x18\x65\x54\x8f\x3e\x70\xb7\x0c\x3b\x6a\x19\x5b\x84\x65\x7f\xee\x0b\x23\xd6\x57\x3c\x9c\xa3\xe8\xa5\xe7\xa3\xab\x1b\xc2\x2b\x48\x51\xab\xc7\x82\xdd\xfb\x99\x99\x19\x49\x44\x05\x00\xe9\x62\x48\x5e\x7e\x7f\xf3\xd2\x4f\x18\x90\x5e\x33\x05\xe0\x31\x5b\x38\x7f\x9e\x1d\xc6\xce\xd6\x27\x02\x61\xe7\x4c\xec\xd7\xee\xbd\x96\xfc\x0a\x81\x9a\x42\xa1\x90\xf6\xc9\x4f\x7e\xd2\xfb\xbe\x20\x1c\x56\x53\xe2\x83\xf2\xdd\x4a\x58\x08\x48\xf7\xe7\xf3\xc3\xaa\x97\xff\xb6\xc1\x3a\x7b\xf6\xac\x73\x84\xa9\x2e\x05\xb2\xc7\x37\x2d\xbf\xc2\x60\xe9\x8a\x45\x9b\xb2\x82\xdc\xa2\x0b\x21\x99\xbe\xd8\x5e\x78\x1b\xd6\xa9\xd2\x46\x36\x9b\xf5\xc2\xde\x10\x5e\x75\x5d\xa6\x57\x79\xa6\xe9\xe9\x69\x0c\x0d\x0d\x49\xb2\x4e\xe0\xa1\x74\xdc\x28\x76\xe4\xb4\xc1\xa6\x62\xa8\xc3\xe2\x54\x40\x8d\x85\xd5\x09\xd5\x93\x13\x6b\xd2\x89\x21\xba\x96\xc3\x0f\x94\x43\x72\x62\xa6\x41\x1f\x51\x14\xa5\x32\x3c\x3c\x2c\x67\x67\x67\x69\x79\x79\xd9\x6f\x42\x80\x07\x1f\xe9\x89\x5f\xed\x1a\x64\x1c\xbc\x51\x58\xd2\x07\x13\x3e\x78\xf0\xdd\x07\xe5\xf5\xda\xd5\x6e\x1b\x2c\x67\x05\x06\x80\x92\x8e\x55\x4a\xc9\xb2\xda\xd3\x9a\x0f\xf5\x55\x9d\xa9\xe0\xf1\x8a\xb1\x40\x9a\x04\xe3\xf5\x1d\x8b\x7f\x72\xbd\x51\x7f\x13\x96\x2f\x59\xfe\xe2\xc5\x8b\x72\x62\x62\xc2\x6f\xa6\x58\x17\x5e\x41\xdf\xec\xc6\x1a\xcf\x5c\x2e\x97\x39\x1e\x8f\x53\x6b\x6b\x2b\x13\x91\x29\xc1\x62\x2e\x51\xc9\xed\x9c\x89\x1f\x08\x49\x11\x22\x7b\x37\x70\x95\x83\xa1\xba\x84\x64\x6f\x66\xad\x31\x61\x10\x20\x98\xd4\xde\xa5\xf0\xc1\xbc\x26\x47\xe7\x12\x95\x31\x45\x51\x2a\x5b\xb7\x6e\x35\x67\x67\x67\x61\x13\x99\xb7\x52\x5e\x82\x90\x01\x69\x41\xb8\x3b\xf7\x22\x20\xff\x46\x60\xf9\x61\xfa\x1b\xdb\x69\xe0\xd5\xf2\xae\xf5\x7c\x4b\x60\xd9\xfe\x7c\x92\x88\x58\x82\x31\xde\x5c\x9e\x56\xa5\x68\x6c\xcb\x6b\x3d\xc4\x24\x5c\x85\xdf\xe6\x03\xb9\xb0\x99\x79\x7d\x7b\xe6\x2f\x2e\xb4\x17\x9e\x03\xe1\x2a\x80\x05\x29\x65\xf9\xb9\xe7\x9e\x93\x37\x8a\x97\x7f\x57\xd1\x7a\x82\x00\xc0\x73\x73\x73\x34\x30\x30\x20\x43\xa1\x10\x03\xe0\x52\x88\x0d\x53\xe1\xf8\xe6\xc5\xc8\x6e\xc7\xc8\x5a\xb3\x24\xe9\xd4\x83\x60\x2d\x2b\x79\x26\x9a\xce\x19\x5b\x0a\x23\xdc\xbb\x18\x79\xb8\xa0\xc9\xab\x73\x0d\x95\x6b\x42\x08\xa3\xbf\xbf\xdf\x9c\x99\x99\x41\x2e\x97\xf3\x72\x18\x2f\xa1\xd4\x1b\x59\xf5\x38\x18\x50\xcb\xad\x6e\x04\x16\x61\xe5\x88\xf5\x72\xba\x20\xa3\xe4\x6a\xdc\xf3\xb6\xc0\x9a\x9b\x9b\xa3\xfe\xfe\x7e\x0e\x87\xc3\x12\x40\xc5\x14\x5c\x1e\x4f\x95\x47\xaf\x35\x97\xae\x57\x14\x96\x00\xb8\x1c\x92\xc5\xd9\x84\x3e\x79\xaa\x3b\xf7\xfe\x91\xff\xaf\xbd\x6b\x6b\x8e\x1b\xb9\xce\xdf\x69\x00\x33\x18\x92\x73\xe1\x68\xc4\x9b\x48\x5a\x1c\x51\x0a\x75\xf1\xca\xab\x75\x76\xd7\xd2\x6a\x57\x8e\xbd\xa9\xf2\x3a\xb5\xa9\x52\x25\x0f\xa9\xa4\x2a\x65\x3f\xe4\x2f\xa4\xfc\xe0\xca\x7b\xf2\x90\xb7\xbc\xe5\x25\xe5\x5c\x2a\x15\x57\x2a\x76\xbc\xf1\x26\xa9\xf2\x6d\x77\x63\xaf\x6d\xa9\xb4\xa6\xee\xd4\x9d\xe4\x90\x12\x87\x1c\x0e\x67\x06\x33\x18\xa0\x4f\x1e\x30\x98\x69\x80\x98\x0b\x29\xae\xd7\x76\xd2\x55\x28\x00\xdd\xa7\x3f\x74\x37\x0e\xce\x39\x68\x1c\xf4\x99\xdf\xfe\xa7\x42\xca\xfe\x21\x08\x4b\x2d\x0f\x56\xeb\xd6\xad\x5b\xf2\xf1\xe3\xc7\x51\xd2\x7c\xa0\x76\xf5\x74\x99\x8e\xa8\xd0\x7e\xca\x1d\xc7\xa1\x9d\x9d\x1d\xe4\xf3\x79\x49\x44\x12\x04\x3c\x1b\xb1\xcb\x87\x2b\xb1\xf9\x51\x4b\x1f\xef\x4c\xab\x7a\x90\x1d\x91\xa0\xa8\x46\xa8\xef\x30\x9e\x5c\xd3\x98\xcc\xa3\x9b\xe6\x9b\x0d\x5d\xae\x3c\x4d\x36\x1f\x09\x4d\x73\xf2\xf9\xbc\xc3\xcc\xb4\xbe\xbe\x0e\xa5\xad\x12\xe1\xd9\x91\xe0\x06\x74\x06\x02\xca\x5e\xcd\xdf\x2f\x96\x4f\x1f\x66\x4e\x95\x2e\x7c\xe3\xa3\xae\xfb\xb1\x62\x49\x29\xb1\xb6\xb6\x86\xb9\xb9\x39\x57\xd7\xf5\x26\x11\x59\x20\x54\xaa\x71\xb7\xf0\x70\xd4\x5a\x5c\x9c\xac\x7e\xf8\x8b\x23\xd5\x1f\xde\x1a\xaf\xfd\x70\x35\xd5\xf8\x9f\xa6\xce\x37\x18\xfc\x00\xc0\x3a\x11\x55\xb7\xb6\xb6\x9c\xef\x7e\xf7\xbb\xaa\x31\xbf\xe7\x76\xf5\x74\x99\x56\xf2\xc2\x7b\x00\xe0\x52\xa9\xc4\x53\x53\x53\x48\x26\x93\x2e\x33\xbb\x2c\x88\xd6\x93\xf6\xf6\x7c\x31\xf1\x52\xdc\x15\x09\x02\x10\x30\xe8\xdb\x6b\x69\xb5\x16\xd4\x20\x2f\xcf\x57\x99\x7e\x13\x05\x93\x31\x53\x32\x3f\xaf\x31\xaa\xab\xe9\xc6\x6d\xd2\x44\x73\x7a\x7a\x5a\x0a\x21\x78\x75\x75\x55\x15\xd7\x3e\x73\x84\xd5\xbc\x9f\x8f\x88\xb2\x6e\x66\xc0\x5e\xb0\xd0\xa5\x1e\x61\xf7\xe0\xf7\xba\x6e\x5f\xac\xb1\xb1\x31\x0a\xfd\x0e\xb7\x27\x2c\xcb\xb2\x78\x65\x65\x85\xf2\xf9\xbc\xab\xeb\xba\xcd\xcc\x55\x00\xdb\x44\x54\x24\xa2\x35\x00\x2b\xcc\xfc\x84\x88\x9e\x30\x73\x01\xde\x3a\x64\xb5\xcd\xcd\x4d\xf7\x9b\xdf\xfc\xa6\x54\xb1\xf6\xd3\x47\xd5\xe1\xb0\x9b\x61\x1f\x25\x8a\xdb\x79\x4f\x9f\x3e\xa5\x7c\x3e\x2f\x75\x5d\x97\x00\x9c\x86\x21\x9d\xed\x84\xe3\x1c\xdb\x18\x7a\x51\x80\x84\x1a\xc0\x32\x60\xf8\xfb\xf9\x81\x15\x13\x5b\xad\x23\x40\x80\x8c\xa9\xed\xf8\xeb\xa9\x86\x3e\xb2\x3c\xda\x58\x74\x88\xed\xc9\xc9\x49\x67\x72\x72\x12\xeb\xeb\xeb\xd4\x68\x34\xb8\x47\xfb\xba\x19\xe2\xbd\xfa\x33\x28\x56\x94\xaa\x08\x0f\x7a\x14\xed\x20\x79\x6d\xac\x5c\x2e\x47\x6f\xbd\xf5\x16\xbd\xf8\xe2\x8b\xe2\xdc\xb9\x73\xe2\xa5\x97\x5e\x12\x27\x4e\x9c\x40\xb5\x5a\xa5\x52\xa9\xb4\x27\x2c\xcb\xb2\xe8\xda\xb5\x6b\x72\x74\x74\x94\x33\x99\x8c\xd3\xfa\xa1\xa3\x02\x6f\xc5\xc4\x12\x11\x6d\xc1\x63\x3a\x8b\x99\x1b\x8a\xef\xfe\x73\xf7\xb1\xa7\xcb\xb4\x52\x16\xe6\xd6\xf6\xbe\x5e\xaf\xf3\xce\xce\x0e\xcd\xcd\xcd\x49\x21\x84\xcb\x80\x2c\x0d\xb9\x15\xc1\x48\x4f\x6d\xc7\x8f\x0b\x45\xf3\x90\xb2\x57\xcf\xc2\xff\xed\xb6\x5f\x0c\x00\x91\xab\x1a\x9f\x9d\x2d\x99\xa7\xd6\x52\xcd\x45\xcb\x90\x95\x64\x2a\xe9\xcc\xcf\xcf\xcb\x66\xb3\x49\xc5\x62\x11\xec\xaf\x04\xd7\x49\xea\x00\xa8\xaf\xd0\xbd\x9e\x3e\xd5\xf0\xef\x87\x15\x35\x0e\x84\xe8\xf1\x0a\x3f\xd1\xe1\x7a\xbb\xf2\x0c\xc3\xa0\x97\x5f\x7e\x99\x2e\x5d\xba\x24\x12\x89\x84\x41\x8c\xa1\xdf\x7a\x3a\x7c\xc6\xd1\xd8\xe5\x61\xc3\x9e\x9b\x9b\xe3\x72\xb9\xcc\x9b\x9b\x9b\x83\xe0\x07\xda\x71\xff\xfe\x7d\xba\x72\xe5\x8a\x3b\x3c\x3c\xcc\xb1\x58\xcc\xb1\x6d\xbb\x69\x18\x86\xbd\xb3\xb3\xd3\xdc\xdc\xdc\x74\xef\xdc\xb9\x23\xbf\xf3\x9d\xef\xc8\xd5\xd5\xd5\x03\xeb\x63\x5f\x97\x69\x74\x06\x37\xfc\xfa\xec\x97\x73\xa9\x54\xa2\x4c\x26\xc3\xd9\x6c\x56\x12\x51\x13\x04\xb9\x96\xb2\x4b\xa3\x96\x31\x93\xad\xe9\x93\x04\x80\x38\x28\xc5\x7c\x75\xe9\xfd\xf5\xc6\x9d\xc8\x66\xd4\xea\x0d\xa3\x45\x4b\x18\xb1\xb5\xfc\x7c\x71\xe8\x92\x65\xb8\xcb\xc5\xe1\xe6\x9a\x6e\xe8\xee\xcc\xcc\x8c\x1c\x1f\x1f\xe7\x42\xa1\x40\xb6\x6d\xab\xed\xf2\x19\x46\x86\xdb\xd9\xa3\x9f\xac\xd4\xeb\x87\x05\xec\x96\x72\x2a\x2d\x87\xca\x06\x3e\x9e\x99\x99\x11\x97\x2e\x5d\x42\x3e\x9f\x17\x00\x4c\xc3\xa1\xdc\x85\x07\x99\xaf\x5c\x78\x98\xfe\x9b\x51\xcb\x98\x58\x3a\x6c\xfd\x14\x82\xec\xd9\xd9\x59\xe7\xea\xd5\xab\x83\xe0\x46\xb6\xeb\xf1\xe3\xc7\x74\xfd\xfa\x75\xb9\xb8\xb8\xc8\x4b\x4b\x4b\x74\xe5\xca\x15\x79\xe7\xce\x1d\x2e\x14\x0a\x51\x2f\x1b\xcf\xd5\xc7\xbe\x2e\xd3\x08\x1a\x91\x61\xda\xf6\xeb\xfd\xc3\x87\x0f\xe9\xc4\x89\x13\x32\x1e\x8f\x7b\x33\xfd\x02\xee\x93\x4c\x63\x7d\xba\x14\x3f\x35\x62\xeb\x19\x0f\x45\x81\x69\x1f\x72\x6b\xba\xc2\x5f\xb1\x5a\x11\x63\xe8\x2c\x51\x19\x73\x29\x3b\xb7\x99\xf8\x72\xba\xae\x8f\xac\x25\x1b\x4b\x4d\x0d\x8d\x64\x2a\xe9\x9e\x3a\x75\x4a\x1a\x86\x41\x2b\x2b\x2b\x51\xed\x0a\x4b\xa9\x70\xfb\xc3\x26\x41\xaf\x3e\x86\x07\x5b\x7d\x82\xc3\x63\x44\x4a\x5d\x75\x2c\xfd\xfa\xaa\xda\x45\x3a\x9d\xa6\x57\x5f\x7d\x95\x5e\x79\xe5\x15\x31\x3c\x3c\x6c\x80\x31\x72\xb8\x62\x9c\x7e\xeb\xe6\xa1\xbf\x3a\xbe\x91\xf8\x33\x02\x86\xd2\x96\xfe\x82\xa3\xf1\xfa\x6a\xca\xbe\x4d\x44\xcd\x93\x27\x4f\xca\x1b\x37\x6e\x50\x6b\xb6\x5e\x60\xf7\x3d\x1a\xa8\x5d\xca\xc3\xb9\xab\x5d\x07\xd1\xc7\xbe\x2e\xd3\x08\x1a\xbe\xe1\x0b\x06\xa4\xc2\xe2\xe2\x22\x9f\x3d\x7b\x56\x6a\x9a\xe6\x32\xb3\xed\x6a\x70\x56\xd2\x8d\x67\x47\xb7\xcc\x4f\x9b\x8e\x36\x4c\xad\x36\x74\x1c\xde\xfc\x8b\xfa\x4a\x53\x31\xfe\xfd\x06\xb5\xc3\xe5\x11\x08\xd0\x0f\x57\x8d\x97\x8f\x3f\x1b\x7a\xc3\x32\x64\xa1\x34\xec\x3c\x83\x20\x39\x39\x39\xe9\x9e\x38\x71\x02\xcd\x66\x13\xc5\x62\x31\x3c\xa7\x15\xee\x87\x5f\x46\xca\x9e\x42\x79\x50\x8e\xc3\x58\x61\x63\x57\xcd\x0b\x6f\x6a\x0a\xdb\x7a\x0c\x80\x3f\xf7\xb9\xcf\xd1\xa5\x4b\x97\x90\xcb\xe5\x74\x22\x4a\xc4\x9b\x34\xfe\xdb\x4f\x52\x7f\xf2\x85\xbb\xd9\xbf\x4e\xd7\x8d\xcf\x10\xda\xaf\x48\x62\x62\x27\xf6\xd9\xd5\xb4\xfd\xb3\xb2\xe9\x14\x0c\xc3\x70\xb2\xd9\xac\xbc\x77\xef\x5e\xf8\x9a\x07\xd2\xae\x83\xc2\x1a\xc8\x65\x5a\xd9\x10\xba\xe0\xae\x17\x83\xad\xad\x2d\x1c\x3d\x7a\xd4\x11\x42\xb8\xcc\x6c\x37\x0c\x6e\x14\xd2\x8d\x52\xbe\x68\x9e\x31\x1c\x32\x7d\x14\xf5\xd7\x36\xdf\x15\xc9\x9f\xf3\xf3\x4f\x3c\xe3\x9f\xe1\x1b\x69\x7e\x03\xe2\xae\x36\x76\x6c\x33\xf1\x7b\x93\xdb\xf1\xb9\x72\xc2\x79\x5c\x8e\x3b\x95\x58\x2c\xc6\x47\x8f\x1e\x95\xf3\xf3\xf3\x88\xc7\xe3\x28\x95\x4a\xd4\xfa\xed\x2a\xdc\xee\x70\xdf\x10\x91\x17\x2e\x57\x6d\xb1\xf0\x93\x4b\xa1\x4d\x55\x23\x02\xbb\xc7\x8e\x93\xc9\xa4\x38\x7f\xfe\x3c\xbd\xfe\xfa\xeb\x34\x35\x35\xa5\x0b\x21\x4c\xc1\x94\x3e\xfe\x2c\x71\xf1\x77\x6f\x67\xff\xf2\xf8\xc6\xd0\x57\x34\x49\x49\xff\xf3\x0d\x00\x30\x33\x34\xa6\xc4\x64\x39\x7e\x72\x69\xcc\xfa\x7e\x53\xe3\x9d\x4c\x26\xe3\xb4\xfe\x6b\x38\x90\x76\x85\xf2\x0f\x04\x6b\x20\x97\x69\x85\x26\x6c\xc3\xa8\x65\x00\xbc\xa9\x0b\x00\x74\xe4\xc8\x11\x97\x88\x1c\x10\xec\x6a\x4c\x56\xd7\x52\xf6\x76\x7e\x33\xf1\xe9\x98\x14\x31\xcf\xd0\x6a\x49\x2d\xea\x6c\x81\xf3\x8e\x21\x16\xf8\xf7\x12\xdc\x96\x75\x7a\xba\xae\x9d\x5e\x58\x1f\xbe\x7c\xc8\x32\xb2\xe5\x84\xbb\x56\x33\xa4\x65\x9a\x26\x4f\x4d\x4d\xc9\xd3\xa7\x4f\x73\x3a\x9d\xa6\x6a\xb5\x8a\x7a\xbd\xae\xbe\x0c\x84\xfb\x13\xb5\x85\x25\x5a\x58\x72\x87\x27\x6a\xc3\x4f\x74\xd4\xf8\xf0\xd4\xd4\x94\x38\x7f\xfe\x3c\x5d\xb8\x70\x01\xb9\x5c\x4e\xd7\x75\xdd\xd4\x98\x92\x33\x5b\xf1\x97\xde\xbc\x93\xfd\x8b\x73\xcb\xc9\xaf\x0d\x35\xb5\xbc\x27\xe4\x5b\x33\x86\xbe\xa4\x6f\xf5\x3d\xe1\x88\x89\x74\x5d\xcf\xdc\xcf\x59\x3f\x66\x41\xd6\xf8\xf8\xb8\xb3\xba\xba\xea\x2f\x13\xbf\xaf\x76\xb5\xf2\x54\xc9\x7e\x60\x58\x03\xb9\x4c\xb7\xf2\xc2\xe5\xea\x53\x1d\xc0\x58\x5b\x5b\x23\xd3\x34\xf9\xf0\xe1\xc3\x5e\x30\x4c\x70\xb3\x12\x97\xe5\xb5\x94\x5d\x9a\x2d\xc5\x17\x62\x2e\x99\xe4\xeb\xc7\xce\x4f\x94\xca\x23\xd0\x89\x19\xe4\x2f\x68\xd7\x59\xe1\x06\xf0\x0b\x5b\x2a\xd5\xcc\xd5\x8c\x97\x4f\xae\x0f\xff\x7e\xb6\x66\x8c\x57\x63\xee\xb3\x6a\xdc\xb5\x84\x26\x90\xcd\x66\x79\x61\x61\x01\xf3\xf3\xf3\x9c\x4c\x26\xc9\xb6\x6d\xaa\x56\xab\x61\x06\x89\x7a\xbd\x8e\x92\x76\x6a\x9e\xda\x6f\x75\xbc\xa2\x12\x5f\xbc\x78\x51\xbc\xf6\xda\x6b\x74\xfa\xf4\x69\x91\xc9\x64\x0c\x00\x09\x9d\x29\x75\x74\xd3\x7c\xf5\xd2\xd2\xe8\xd7\x5e\x7e\x92\xfa\x7a\xa6\x6e\x9c\x05\x48\xf7\xbb\xd7\x71\x6d\xee\x00\xf9\x9f\xd6\x46\x6b\xc6\x42\x53\xe3\xb5\x42\xca\xbe\x25\x34\xd1\x9c\x9c\x9c\x74\xef\xde\xbd\x0b\xd7\x75\xf7\xd4\xae\x50\x79\xd8\x54\x38\x10\x2c\x42\xf4\x5b\x52\x38\xf5\xa2\x51\xd5\x65\xc0\x56\xf9\xe2\x17\xbf\x28\xf2\xf9\xbc\x0e\x60\x08\xc0\x04\x18\x27\xc6\x2a\xc6\xc5\x2f\xdf\xc8\x7d\x35\x55\xd7\xb2\x1d\x27\xeb\x2e\xad\xe6\xe0\x00\x47\xf7\x8b\x94\x33\x86\x4b\x28\x17\xd2\x8d\xff\xbe\x3e\x51\xfd\xfb\x87\xd9\xfa\xcf\xea\xba\x2c\x83\x60\xc3\x0b\x39\x2c\x2d\xcb\x92\xab\xab\xab\x58\x5b\x5b\xf3\x63\x21\x0e\xd2\xc7\xa8\xf2\x48\xfa\xb1\xb1\x31\x31\x39\x39\x89\x89\x89\x09\x8c\x8d\x8d\x21\x91\x48\x08\xc0\x73\xfc\x23\x90\x39\x6c\x6b\xd9\xe3\xcf\x12\x97\x4e\xad\x0d\xff\x51\xae\x6a\x9c\x27\xc0\x6c\xbf\x31\x73\xab\x4f\x11\xbf\xfd\x75\x6e\xb7\x57\x6e\x6b\x72\xf3\xdf\xce\x6c\xfc\xe9\x4a\xa6\xf1\x01\x80\xca\xbd\x7b\xf7\x1c\x65\xee\xaa\xdf\xbd\x1a\xb4\xec\xb9\xb1\xa8\x0f\x71\x14\xf3\x84\xe9\xa3\xca\xe0\xe7\x5d\xbe\x7c\x59\xe4\x72\x39\x1d\xc0\x10\x33\x8f\x11\xd1\x7c\xda\xd2\x5e\xf9\xd2\x8d\xdc\x57\xc7\x2b\xc6\x34\xa9\x83\x07\xff\x4f\xf0\x8e\x60\xf3\x64\x18\x05\x98\x4d\x11\x7a\x01\xfb\xcd\x2f\x6b\x2d\xf7\x28\x6b\x86\xbc\xf3\x30\x5b\xff\xf7\x7b\xb9\xda\x7f\x15\x52\xf6\x2d\xcb\x90\x15\x10\x6c\xf6\xc2\x0c\x4b\x00\x92\x99\x65\xb1\x58\x84\x65\x59\x58\x5e\x5e\x86\x94\x12\xd7\xaf\x5f\x97\x00\x30\x32\x32\x22\x2a\x95\x8a\xf4\xf7\xea\xc0\x2c\x2c\x2c\x08\x4d\xd3\x10\x8f\xc7\x31\x3e\x3e\x0e\xc3\x30\xd0\x5a\x82\xdc\x8f\x32\xe7\x33\x55\x6c\xc4\xd6\xb2\x47\x4a\xf1\x33\xc7\x37\x12\x5f\x9a\xd9\x32\xdf\x8a\xb9\x34\xdd\xfe\x59\xa6\x65\x0a\xa8\xe7\xfe\xb2\x95\x6d\x35\xd9\x2a\xf0\xff\x9a\xf7\xc7\xa7\x34\xd4\xfc\xe8\x5f\xce\x3e\xfb\x4a\x35\xee\x2e\x01\xa8\x7d\xf0\xc1\x07\x72\x71\x71\xb1\x3d\xf6\x03\xdc\xbf\xf0\x7d\x44\x17\xba\x7d\x63\x0d\xca\x60\x51\x69\x10\xc9\x07\x20\xc8\x64\x00\x72\x00\xf2\x43\xb6\x38\xf7\x85\x3b\xa3\x7f\x9c\x2f\x26\xce\x04\x24\x99\x2a\x98\x29\x9c\x19\x4c\x81\xf8\xd6\xbb\xca\xda\xfc\x09\x49\x5c\xaf\xc5\xe4\xd2\x5a\xb2\xf1\xe3\xc7\xa3\x8d\x1f\x15\xd2\x8d\x8f\xb6\x12\xce\x5a\x53\xc8\xb6\x43\x5d\x6b\x2d\xad\xb6\x7f\x93\xaf\x92\x5b\x65\xed\x28\xb0\x40\x60\x41\x3a\xc0\x63\x24\xd1\x1a\x0f\x1d\x80\x1e\x77\x85\x39\x5a\x33\xa6\xa6\xb7\xe3\xe7\x66\xb6\xe2\x17\xc7\x77\x62\xaf\x9a\x8e\x38\x4a\x08\x06\x6a\x8d\xee\x55\xb0\x54\x89\xbf\x1b\xd9\xff\xa5\x9c\xf5\x0f\xff\x71\xb2\xf8\x75\x97\x78\xad\x56\xab\xd5\x5b\x4b\x33\x75\x4b\xbd\x04\xc3\x5e\xd3\x40\x58\x61\x15\x39\x88\xc4\x0a\xe7\x75\xab\x0f\x3f\xdf\x34\x4d\xf1\xc6\x1b\x6f\x60\x76\x76\x56\x10\xd1\x10\x33\x67\x89\x28\xaf\xbb\xb4\xf0\xea\xa3\xd4\x1f\xbe\xb8\x9c\x7c\x5d\xe3\x56\x58\x1b\xc5\xb8\xf7\x86\x10\x5d\x07\x38\x78\x8b\x22\x6e\x57\x40\xc7\xb6\x3f\xac\x4b\x97\x50\xb6\x0c\xf7\x71\x71\xd8\x59\xdc\x18\xb6\xaf\x6f\x8c\x34\xef\x94\x4d\xe7\xf1\x4e\xdc\xdd\xb4\x0c\x59\x93\xc4\x0e\x13\x24\x63\x97\x43\x1d\x00\x08\x82\x17\xcb\x5c\x30\xc5\x12\x4d\x61\xa6\xea\xfa\x58\xaa\xae\x4d\xe7\xaa\xc6\xc2\xd8\x4e\xec\xf4\xa8\x65\x9c\x49\x34\xc5\xac\x60\x8c\x04\x5b\x47\xca\x31\xb7\x8e\x09\xd1\xab\x39\xfb\x4d\x57\xcf\x79\x17\x96\x04\x3b\x1f\xcc\x6d\xff\xf9\x4f\x67\xca\x7f\x47\x44\xa5\x0f\x3f\xfc\x50\x46\x84\xd7\xeb\xb6\x0f\xf4\xab\xb5\xef\x46\xb7\x2f\xac\xc8\x55\xa6\x43\xa0\xea\x45\xc3\x0d\xe8\x55\xa7\x7d\x5c\xaf\xd7\xe5\xbb\xef\xbe\x2b\x2e\x5c\xb8\x20\x4f\x9d\x3a\x55\x83\xa7\x9a\x9c\xa6\xe0\xfa\x7b\x73\xdb\x95\xa7\x23\xf6\xf2\x1b\xf7\x46\xdf\x1e\xb2\x45\x2a\x60\x6f\xb4\x8e\x83\x8b\xaa\x74\x54\xa6\x6f\xb7\x74\x5c\x80\xfd\xc4\xf0\x3f\xb2\x87\xb1\x00\x16\x3a\x28\x33\xd2\xd0\x33\x23\xb6\xf6\xc2\xd1\x2d\x13\x2d\xcf\x74\x5b\x12\x2a\x8e\xc6\x1b\x0d\x4d\x96\x1a\x86\x2c\xd7\x75\x59\x96\x82\x6d\xe9\x49\x39\x10\xa0\xeb\x92\x62\x71\x47\x8c\xc4\x1d\x91\x89\x37\x45\x4e\x97\x94\x69\x31\x52\xac\xd3\x2e\x28\xed\xf2\x25\x29\x7b\x4d\x68\xaf\xd8\xec\x11\xf5\x5b\x19\x3a\xdc\xc7\x30\x96\x14\x90\xc9\x46\x3b\x72\x87\x9e\xcb\xe5\xfc\xe5\x17\xc3\x0f\x7b\xf8\x3c\xea\xde\x45\x95\x3f\x17\xd6\x7e\x63\x6b\x0f\x72\x1c\x4e\xf2\xfd\xf7\xdf\x87\x6d\xdb\x78\xe1\x85\x17\x6a\x9a\xa6\x49\x78\x86\x77\xfd\xce\x61\xab\x56\x1c\x6e\xae\x7e\xfe\xee\xe8\x1f\x1c\xd9\x8e\xe7\x03\x12\x8b\xe0\x31\x4b\xc8\xf6\x25\xf5\x0d\x14\x08\x49\x81\x50\xfd\x7e\x58\x20\x10\x73\x4c\x30\x65\x75\xa6\xac\xe9\x10\xd0\x50\x86\xa6\x9b\x2e\x0b\x49\xc8\x40\xbb\x28\xd8\xae\xa0\x6b\x72\xa7\xd5\x6a\x1d\x0a\xd4\xe9\x8f\x55\x89\xbb\xa5\x1f\xcc\x97\xbe\x71\x2f\x67\xfd\x2b\x76\x4b\x5b\x19\xda\x03\xd1\xd2\x26\x4c\xb7\x4b\x03\x3d\x0f\xd6\xbe\x5c\xa6\x95\xbc\xf0\xbe\x17\x0d\x01\xa0\xd5\xd5\x55\x6c\x6e\x6e\x62\x6e\x6e\xce\x21\xa2\x26\x80\x2a\x80\xaa\x15\xe3\xcd\x3b\x87\xad\x7b\x92\xa0\x8d\x55\x62\x47\x34\x86\xae\x7a\x61\xa8\xd2\xa0\x1d\x37\xbb\x35\xd5\x11\x1c\x7e\xff\x0d\xa0\x63\xc3\x78\xa5\x07\x87\xd5\xae\x49\xc1\x70\x14\x2a\x56\x87\x1f\x7d\xe3\x3d\xe8\x9a\x1c\x9e\x09\xd8\x0b\x96\x4b\x2c\xef\xe5\xac\xeb\xef\x9c\x2a\xfe\xed\x5a\xca\x7e\x0f\x84\x47\xf0\x56\xbf\xb6\x6f\xdd\xba\xc5\x4f\x9f\x3e\xed\x36\xb5\xa0\x1e\x47\x4d\x4d\xf9\xe7\xe1\xe9\x9b\x7d\x63\xed\xcb\x65\x3a\x74\x81\x28\x1a\xea\x51\x9f\xb6\xb7\xb7\xe5\xd5\xab\x57\xf9\xf8\xf1\xe3\xd2\x34\x4d\xa7\xe5\x26\x52\x63\x81\x9d\x95\x74\xe3\xc9\xf2\x68\x63\x2d\x5b\x33\xc6\x93\x0d\x2d\x43\xed\x70\xc6\xfe\x83\xdc\x62\x01\x4f\xdd\xb5\x9f\xfa\xce\x5b\xbc\x2f\x15\x3a\xab\x2f\xfa\xef\x62\x07\x85\x45\xad\xe3\x36\xff\xb5\x9f\xa9\x8e\x3a\x0c\x63\x75\x5c\x93\x83\x18\x7b\xc5\xda\x89\x3b\xa5\x1f\x1d\x2b\x7d\xfb\xc7\x47\xcb\xff\xdc\x30\xf8\x1a\x08\xf7\x99\xf9\x19\x80\x5a\xa9\x54\x72\xbf\xf7\xbd\xef\xa9\x52\x45\x65\x02\x20\xc8\x24\x1c\x2a\x1f\xe4\x7c\xcf\x58\xfb\x76\x99\x8e\xd8\xab\x29\x4a\x8a\xa9\x65\x0c\x00\xd7\xaf\x5f\xe7\x6c\x36\xeb\xfb\x28\xd5\x01\xd4\x18\x5c\xa9\x9a\xb2\x78\x77\xac\x76\xb7\x66\x48\x67\xac\x12\x9b\x32\xa4\x88\xed\xd2\x7a\x14\x62\x92\xb6\xfa\xe8\x68\xad\xa0\xda\x44\xe7\xef\xe5\xe7\xc2\x52\x42\xe9\x84\x54\x57\xbb\xe3\xa4\xe6\x2a\x12\xc9\xe3\x18\xf8\xf2\xb4\x9d\x3f\x00\x96\x43\xec\xdc\x98\xa8\x5e\xf9\xcf\x85\xcd\x6f\xac\xa4\xed\x1f\x48\xe2\x9b\x00\x1e\x90\xb7\x8e\x7f\x65\x7b\x7b\xdb\x7d\xe7\x9d\x77\xd0\x6c\x36\xa3\xa4\x8e\x00\x94\x0e\x04\x53\xd4\x7d\x0c\x6b\xb0\x7d\x63\xed\xdb\x65\x5a\xa9\x03\xa5\x4c\x95\xfb\x50\x8e\x29\x54\xd6\x3e\xbf\x7f\xff\x3e\x59\x96\xc5\x53\x53\x53\x8e\x10\xa2\x01\xa0\x46\x44\x65\x29\x50\x5e\x4b\x36\x1e\xdf\x1a\xb7\x96\x74\x97\x12\x59\x4b\x3f\x2c\x18\x9a\xda\x48\xcf\xa8\xe6\x0e\x97\x80\x3b\xb7\xc6\x8f\xf7\xa8\x74\xa6\x73\xdb\x3a\xb9\xfb\xc3\xa2\x76\x9d\x60\x60\x0a\x95\x45\x3b\x5d\x25\xe5\x1a\xea\x11\x0f\x80\xe5\x12\xe4\x72\xa6\xf1\xe0\xdd\x93\x9b\xff\xf8\x8b\xa9\xea\xb7\x1b\xba\xbc\x46\x44\x77\x88\x68\x15\x40\x49\x4a\xd9\xb8\x7b\xf7\xae\x6c\x31\x97\x3a\x0b\x1f\xf5\x25\x22\x4a\x8d\x45\xdd\x27\x20\x38\xa3\xbf\x6f\x2c\xe5\x59\x3e\x90\xf4\x5c\x5f\x05\xde\x7e\xfb\x6d\xd1\xfa\x83\x38\x06\x60\x04\x40\x16\xc0\x34\x18\xb3\x63\x15\xe3\xec\x67\x9f\xa4\x7e\x67\xae\x68\x2e\x18\xae\xd0\x15\xad\x12\xec\xae\xb2\xdf\x65\x83\x47\xd0\xb4\x69\xf7\x82\xa5\x26\x65\xd6\x37\xb8\x30\x72\xe7\x3c\x24\x48\x83\xed\xe9\x82\x25\xc1\x58\x4f\xda\xcb\x3f\x9f\xd9\xf9\xfe\x83\x43\xd6\x4f\x1c\xe2\x87\x44\xb4\x0c\x2f\x50\x69\x99\x99\xed\x5a\xad\xe6\xbc\xf7\xde\x7b\x78\xf4\xe8\x51\xbf\x39\xcc\x5e\x53\x0a\x83\xa4\x7d\x63\x51\xa8\x82\x9f\x7a\x4d\x4b\xf4\x9b\x0f\x19\xb4\xde\xae\x0e\x08\x21\xc4\xb1\x63\xc7\x70\xe1\xc2\x05\xc4\x62\x31\x9d\x99\x4d\x22\x1a\x61\xe6\x31\x00\x53\x02\x34\x3d\xbe\x13\x3b\x7b\x6e\x39\xf9\xfa\x5c\xd1\x5c\xd0\x25\xe9\x1d\x75\xb3\x7b\x52\x32\x28\x0f\x54\xd5\xb3\x7b\x4d\xec\x8e\x24\xeb\x87\xd5\x71\x01\x57\xa7\x25\x42\xca\x33\x74\xce\x80\xff\x85\x42\xcd\x03\x76\x61\x31\xb1\x5c\x4f\xda\xab\x57\xa7\x2b\xef\xdd\x3f\x64\xfd\xc4\xd1\xf8\x31\x33\xfb\x8c\x55\x02\x50\x67\x66\x67\x69\x69\x49\xbe\xff\xfe\xfb\xbe\xd4\xea\x36\x87\x15\x95\x37\x08\xcd\x81\x61\x85\x9f\xa1\xfd\xcc\xe8\x77\x4b\xcf\x85\xf5\xe6\x9b\x6f\x8a\xd9\xd9\x59\xa1\x69\x9a\x0e\xc0\x64\xe6\x14\x11\xe5\xe0\x7d\xd3\x9c\xca\xd6\xf4\x93\x9f\x2e\x8c\x9c\x3f\xfe\x6c\xe8\xcc\xb0\x2d\x46\x3a\x9f\x5a\xba\x49\x8d\x8e\xa8\xf2\xe7\x99\x02\xa5\x1c\xf1\x6f\x40\x17\xac\xce\xa4\x67\x04\x86\x32\xcb\x1f\x2d\xf5\x42\x76\x21\x03\x20\x46\x53\x63\xfb\x49\xa6\x71\xff\xa3\xa9\xca\x07\x4f\x32\xf5\x6b\x52\x60\x19\xc0\x2a\xbc\xc0\x5c\x25\x00\x35\x66\xb6\xd7\xd7\xd7\xe5\xb7\xbe\xf5\xad\x41\xef\xc5\x20\x13\xe6\x83\xa6\x7d\x61\x51\x1f\xc2\x5e\x93\xab\xea\x45\x7a\xcd\xfc\x46\xe1\x00\xdd\xb1\x02\xe7\x97\x2f\x5f\x16\x87\x0e\x1d\x12\x44\xe4\x4b\xb4\x14\x80\x2c\x33\x4f\x10\x68\x62\xc8\x16\x73\xc7\x8a\x89\xcf\x2c\xac\x0f\x7f\x66\x7c\x27\x36\xa5\x33\xe9\x81\x5b\xd8\x11\x4d\x68\xbd\x2c\x06\x7c\xd1\x02\x64\x4a\x5e\xe7\x9b\x66\x08\x4b\x51\x85\x1e\x1d\xb7\x24\x18\x75\x95\x60\x3e\x9d\xaf\x3e\xfd\xeb\x48\x30\xca\xa6\xb3\x79\xf7\xb0\x75\xe3\xe6\x78\xf5\xc3\xad\x21\xe7\xae\x04\xaf\x12\xd1\x53\x84\x18\xab\x56\xab\xc9\x6b\xd7\xae\xc1\x8f\xdb\xdd\x63\x9c\xbb\x8d\x79\xaf\x89\xf1\x8f\x0d\x2b\x4a\x45\x76\x9b\xf6\x87\x52\x3e\x88\x18\xed\x57\xa7\x1f\x96\x27\x62\x89\x30\x3b\x3b\x8b\x73\xe7\xce\x21\x97\xcb\x09\x78\x71\x73\x4c\x00\x23\xcc\x9c\x69\x49\xb5\x31\x92\x98\xc8\xd5\x8c\x63\xc7\x36\x12\x2f\xe4\x8b\x89\x13\xd9\x9a\x31\xa6\x49\xe8\xaa\x8a\x0c\x0a\x93\x90\x49\x1d\x32\xf0\xd1\x2e\xe9\xd4\xf7\x67\xdf\x3b\x0e\x90\x9d\xaf\x0b\x3e\xa6\x3f\x33\x1f\x64\xba\xc0\xfb\xbc\xac\xc4\xdd\xf2\x93\xd1\xfa\xfd\xdb\x87\xad\x8f\x56\xd3\x8d\x9b\x8e\xe0\x55\x46\x3b\x54\xcb\x26\x33\x97\xc9\x8b\xd8\x61\x57\xab\x55\xb9\xb8\xb8\x88\xd6\x32\x96\xe1\x14\x65\xde\xf8\x63\x89\x88\xfc\x70\xf9\xc7\x8e\x45\xa1\x4c\xb5\x52\x14\xc3\x75\xe3\xd6\x6e\x69\x50\xdd\x1d\x75\x8d\x5d\xd7\x9a\x9b\x9b\x13\x67\xcf\x9e\xc5\xd8\xd8\x98\xe7\xa9\xe0\x45\x07\x33\x89\x28\xa5\x30\x5b\x4e\x48\xe4\x0e\xd5\x8c\xb9\xe9\x52\xfc\xc4\xcc\x96\x99\x1f\xaf\xc4\xa6\x12\xb6\x18\x22\x90\x08\xdb\x50\x9d\x14\xb6\xd7\x00\xa0\x13\xb7\xbb\x75\xda\xa6\x53\xed\xa6\xdd\xea\xb2\x73\xce\x60\xd8\x1a\xdb\x9b\x43\xcd\xa7\x2b\x99\xc6\xc3\x47\xa3\xf5\x3b\xeb\x49\xfb\x9e\xad\xc9\x35\xf6\x18\x6a\xa3\x15\xd0\xb4\xd4\x5a\x50\xa6\xce\xcc\x4e\xad\x56\x93\x57\xaf\x5e\x0d\xbb\x14\xf5\x1a\xa3\x41\xca\xa2\xd2\xc7\x8a\xe5\x4b\x30\x74\x01\x8f\x4a\x51\x52\x0b\x03\x9c\xef\x27\xed\xc2\x10\x42\x60\x7a\x7a\x1a\xf3\xf3\xf3\x98\x9f\x9f\x07\x33\xeb\xf0\xbc\x18\x4c\xf2\x82\xa7\x8e\x30\x73\x0a\x40\x96\x88\x32\xc4\xc8\x9a\x4d\x91\x1b\xb5\xf4\x99\xf1\x9d\xd8\xec\xe4\x76\x7c\xfa\x50\xcd\x18\x4b\x36\xb4\x94\xe1\x52\x4c\x9d\x3c\xe8\xc4\xb0\xe8\x48\x9d\xc0\xdf\x50\xbe\xb4\x62\x04\x54\xa4\xea\xea\x2d\x09\xd2\x32\xdc\x4a\x71\xc8\xd9\x78\x9a\xb4\x57\x0b\xa9\xc6\xe3\x8d\xe1\xe6\x72\x35\xee\x16\x5c\xc2\x26\x08\x25\x66\xde\x84\xc7\x50\x15\x66\xae\xf8\xd2\x8a\x88\x64\xb1\x58\x94\xb7\x6f\xdf\xc6\xed\xdb\xb7\x55\x03\x7e\x2f\x92\xa5\x57\xfe\x2f\x1d\xab\x9f\x0d\xe6\xa7\x7e\x76\xda\x41\x19\x8e\xbd\xca\x22\x69\xcf\x9d\x3b\x27\x4e\x9f\x3e\x0d\xd3\x34\x7d\x3f\x2c\x1d\xde\x87\x5f\x13\x9e\x7b\xd0\x08\x80\x14\x80\x11\x30\x52\x00\x52\xc4\x18\x89\xbb\x22\x9d\xae\xeb\x63\x69\x4b\xcb\xa5\xea\x7a\x36\x59\xd7\x53\xc9\x86\x96\x32\x1d\x61\xc6\x1c\x32\x0d\x57\xc4\x84\xe7\x31\x21\xa8\x35\x58\x4c\x90\x92\x58\x3a\x82\x1d\x5b\x63\xbb\xa1\xcb\x7a\x35\xe6\x56\x2a\x71\xb7\x54\x36\x9d\x52\x29\xe1\x6c\x6c\x9b\xce\x46\x35\x26\x8b\xae\xe0\x32\xbc\x95\x20\xcb\xe4\x05\x30\x2d\xc3\xfb\xd9\xb5\x02\x2f\xba\xae\xdd\xda\x1c\xdb\xb6\xe5\xa3\x47\x8f\x70\xf3\xe6\x4d\x28\x51\x63\xf7\x32\x26\xfd\x6c\xe5\x4f\x0c\x8b\x94\x0c\x20\xc8\x7d\x83\x70\xfa\x7e\x6c\xb0\x28\x9c\x6e\x58\x51\x18\x5d\x07\xe1\xe2\xc5\x8b\x62\x66\x66\x06\x23\x23\x23\x02\xf0\x1c\xfe\xe0\x31\x5c\x0c\x9e\x84\x33\xe1\x39\x3e\xfa\xd2\x4e\x3d\x8f\x01\x30\xc1\xd0\x09\x88\x69\x92\x74\xc1\xd0\x89\x49\x17\x0c\xcd\xfb\x46\xce\x4d\x49\x90\xae\x60\x5b\x12\x1c\x06\xdb\xe4\xc5\x56\xac\x93\x17\x5c\xbe\x0e\xa0\x06\xcf\x30\xaf\xf9\x5f\x27\x5a\xf9\xbe\xa3\xa3\xc3\xcc\x8e\x6d\xdb\x72\x65\x65\x05\x0f\x1e\x3c\xc0\xf2\xf2\x32\x1a\x8d\xc6\xa0\xa6\x47\x3f\xe3\x7b\x2f\x66\xcc\xc7\x8e\x75\x90\x12\x6c\xaf\xf6\xd9\x20\x69\x2f\x9d\x0a\xa4\xd7\x5e\x7b\x4d\x4c\x4c\x4c\x20\x93\xc9\x40\x08\x21\x5a\xb4\xba\xb2\x8f\x75\xd9\xab\x9b\x3f\x50\xea\xe0\x4b\x66\x96\xad\xb5\x6a\xfd\xcd\x8e\xda\x87\x3d\x67\x2d\xcb\x92\x85\x42\x01\x0f\x1e\x3c\x40\x2b\x36\xc0\x20\xfd\xdc\x6b\xd9\xaf\x14\x16\xf5\x21\xee\x67\x88\x47\xd5\xed\x65\xd3\xed\x85\x91\x7b\xbd\x0c\x74\x7b\xf2\x22\xdb\xfc\xa9\x4f\x7d\x4a\x1c\x39\x72\x04\xd3\xd3\xd3\x30\x4d\x13\xf1\x78\x5c\xa8\xde\xa8\x61\xcf\xd4\x96\xaa\x85\x5f\xd6\xca\x07\xd0\xf6\x6e\x95\xfe\x31\x3a\x0c\x27\xd5\x7c\xc7\x71\xa4\x65\x59\x28\x14\x0a\x28\x14\x0a\xb8\x7d\xfb\x76\xb7\xf6\xf6\xeb\x77\x98\xa6\x57\xdf\x7f\xe5\xb0\x06\x65\xb0\xa8\xb4\x5f\x29\x75\x10\xd2\x2d\x8a\xf9\xb0\x57\xdc\xb3\x67\xcf\x8a\x6c\x36\x8b\x64\x32\x09\x5d\xd7\x71\xe8\xd0\xa1\x36\xbe\xea\x26\x1d\x72\x99\xf6\xcf\x25\x11\xa1\x5c\x2e\xa3\x56\xf3\xc2\x05\xac\xac\xac\xa0\xd1\x68\x60\x65\x65\x05\x5b\x5b\x5b\x07\x25\xcd\x0f\x52\x33\x7c\x22\x58\x22\xe2\x38\x6c\x03\x45\xd9\x44\x51\xb4\x6a\x5e\x54\x7e\xbf\xb4\x9f\xeb\xf4\x2b\x1b\x08\xcb\x97\x5a\xb1\x58\xac\x5d\x36\x33\x33\x23\x00\x60\x7e\x7e\xbe\x9d\x97\x4e\xa7\x77\xd1\xf5\x68\x4f\xb7\x36\xec\xa5\xfd\xbf\xd6\x58\x51\x9f\x8a\x80\xee\x86\x9f\x7a\xdc\x8b\x26\x9c\xa2\x8c\xfc\x30\xed\xa0\x46\x7e\xb7\xbc\x7e\xf5\x0f\x12\x2b\x4a\x75\x77\xeb\x5f\x2f\x95\xff\x7f\x05\xeb\x97\x9a\x0e\xf2\xa2\x9f\x04\xd6\x20\x74\xff\x8f\x15\x22\x54\xb7\x70\x5e\x2f\x9a\xf0\xbe\x17\x4d\xb7\xad\x17\x56\x54\x59\xbf\xf2\x8f\x1b\x2b\x5c\x27\x8c\x17\x4e\x51\xb4\xfd\xce\x7f\xd3\xb0\x0e\x3c\xf5\x6b\xcc\x5e\xe8\xfd\xf2\xa8\xce\x7e\xd2\x58\xbd\xae\x71\x50\xe9\xd7\x1a\x6b\x3f\x17\xec\x25\x0d\x7a\xd1\xf5\x4a\x61\x7b\x2e\xaa\x7e\x94\x7d\x10\x85\x1f\xc6\x8a\x92\x50\xcf\x8b\xb5\x17\x26\xed\x45\xf3\x1b\x8f\xf5\xbf\x71\x3d\xfb\xd8\x8b\xb7\x8f\xd8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xce\x70\x75\x8d\xd9\x5c\x00\x00") + +func web_uiV2AssetsAppleTouchIcon152x15208c9aa1c11a83650b824e3549b33a832PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsAppleTouchIcon152x15208c9aa1c11a83650b824e3549b33a832Png, + "web_ui/v2/assets/apple-touch-icon-152x152-08c9aa1c11a83650b824e3549b33a832.png", + ) +} + +func web_uiV2AssetsAppleTouchIcon152x15208c9aa1c11a83650b824e3549b33a832Png() (*asset, error) { + bytes, err := web_uiV2AssetsAppleTouchIcon152x15208c9aa1c11a83650b824e3549b33a832PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-152x152-08c9aa1c11a83650b824e3549b33a832.png", size: 23769, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsAppleTouchIcon57x57Ae96d6d27e61e25514af459bc8b20960Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x26\x14\xd9\xeb\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x39\x00\x00\x00\x39\x08\x06\x00\x00\x00\x8c\x18\x83\x85\x00\x00\x13\xed\x49\x44\x41\x54\x68\x81\xc5\x5b\x79\x6c\x5c\xc7\x79\xff\x66\xde\xdb\xfb\xe0\x5e\x5c\x2e\x97\x2b\x8a\xf7\x25\xea\x22\x25\x9a\x92\x65\x59\xb2\x6c\x59\x91\x64\xa5\xb1\xdc\xc4\x75\x1a\x07\xad\x13\x04\x81\x9b\x06\x49\x0a\x18\x41\x11\x04\x45\x10\xa4\x40\x11\x18\x41\x9b\xa3\x6d\xdc\x20\x71\x85\x34\xb5\x5b\xc7\xb1\x22\x59\xa2\x1d\x2b\xba\x4c\x4b\x34\x4d\x89\x14\xc5\x4b\xe4\xf2\x5e\xee\x7d\xbf\x7b\xa6\x7f\x2c\x77\xb9\xbb\x5c\x51\xa4\xac\xb8\x1f\xb1\x1c\xee\xbc\x99\x6f\xe6\x37\xc7\x77\x3e\x22\x00\xc0\x00\x40\x96\xcb\x2c\xe5\x7f\x2f\x7e\xb6\x16\x6d\xa4\xed\xfd\xf6\x5b\xab\x6d\x49\x1c\xd9\x8a\xb5\x06\xd8\xc8\xa4\xef\x07\xe0\x46\x69\xc3\x73\x45\xf7\xe8\xf4\x40\x48\xa7\xd3\x01\xcb\xb2\xa0\xd3\xe9\x40\x92\x24\x10\x04\x01\x04\x41\x00\x45\x51\xfe\xd4\x43\x03\x40\x06\xe4\x03\x25\x9b\xcd\x86\xdd\x6e\x37\x38\x9d\x4e\xec\xb0\xdb\x59\xa7\xce\x62\x36\xcb\x6a\x97\x56\xc2\x36\x96\x20\x2d\x41\x54\x16\x58\x1a\x4f\xab\x14\x7f\x40\x4e\x04\x83\xb1\xb0\x18\x08\x04\x64\x9f\xcf\x07\xb3\xb3\xb3\xe4\x41\xcf\x07\xe0\x01\x81\x34\x1a\x8d\xb8\xa9\xa9\x09\x9a\x1b\x9b\xb4\x4d\xe0\xd8\xb1\x39\xac\x7d\xbc\x2a\xae\x79\xd8\x91\x54\xb5\x6b\x65\xec\x02\x00\x0c\x80\x00\x51\x0a\x00\x08\x28\xa2\x00\x00\xa0\x20\x88\x47\xf5\xd2\x98\xcf\x24\xf6\xcf\x58\x85\x77\x27\xcd\xc9\x0b\x23\x73\x93\xe1\x91\x91\x11\xb2\xb0\xb0\xf0\xc0\x00\x7f\x2c\x90\x56\xab\x15\x77\x76\x76\xe2\xad\xae\xfa\xea\xed\x4b\xe6\x17\x5a\x97\xf4\xcf\x1a\x05\xa6\x6e\x19\x43\x01\x51\x00\x40\x28\xfb\x07\x00\xa5\x85\x83\x53\x04\xa0\x20\x48\x7a\xed\xdc\xdb\x83\x95\xa9\x57\x06\xe8\xc2\x85\x8f\x6e\x0c\x88\x13\x13\x13\x1f\x1b\x6c\x31\xc8\xac\xa4\x2d\xfe\x5e\x50\xaf\x56\xab\xf1\xee\xdd\xbb\x71\x57\x6d\x7b\xcd\xde\x59\xcb\x4b\x2d\x4b\x86\xbf\x64\x08\xd2\xe6\xc1\x29\x0d\x32\xf7\x9b\x2e\xb7\xc8\x43\x9d\x57\x52\x04\x10\x34\x48\x7d\xef\xd7\xc4\xbe\x7f\x1d\xe6\xdf\xbe\x7c\xe5\xb2\xb8\xb4\xb4\x94\x65\x95\x3f\x9f\x62\x79\x52\xfc\x8c\x00\x00\x46\x6b\x74\x28\xee\x08\x00\x00\x1e\x8f\x07\x1e\xdb\x7f\x40\xff\x48\xa8\xe2\x6f\xbb\x66\xcc\x2f\xa9\x14\x6c\xbe\x4b\xbf\x8d\x51\x31\x5e\x00\xa0\x88\xc2\x8c\x55\x78\xfb\xdd\x86\xf0\xb7\x2e\x8d\xf7\x8f\x5c\xbf\x7e\x1d\x08\x21\x1b\x56\x53\xcc\x32\xdb\xb5\x8e\x6d\xee\xd9\xee\xdd\xbb\xe1\xf8\xae\x83\x2d\xcf\x8c\xba\x5f\x6f\xf5\x1b\xbe\xc8\x50\xa4\xc9\xf5\x2e\xf1\xa1\x08\x80\x60\x20\x29\xb5\x92\x8a\xe9\xe5\x70\x4c\x27\x47\x53\x1a\x25\x29\x31\x54\x61\x09\x62\x31\x00\x46\x08\x56\xce\x71\x76\x24\x84\x00\x50\x66\xb7\x2d\x3c\xdb\xb0\x65\xc9\xf8\x79\x5d\x8d\xdd\x1b\x2b\x83\x5b\x73\x73\x73\x1b\xb9\x62\x04\x00\x10\xbb\x9e\x96\x18\x63\x38\x78\xf0\x20\x3e\x60\x6b\x3b\x7c\xec\x23\xfb\x2f\xb5\x32\xe3\xb8\x3b\x57\x0a\x3e\xb3\x38\x33\x69\xe7\x06\xe6\x2c\xc2\x87\x21\xbd\x34\x2c\x31\xd4\x0f\x00\x69\x40\x20\x03\xa5\x18\x00\x69\x31\x05\x8b\x99\x67\x1b\xdc\x71\xf5\xce\x9a\xb0\xae\xa3\x26\xac\x6d\x51\x2b\x58\x5d\x62\x6d\x81\x21\x60\x4c\x6a\x14\xa3\xd5\x6a\x2d\xbe\x4e\xf7\x9c\x3a\x00\x00\xbb\x9e\x4e\x87\x0f\x1f\x66\x1f\xd7\x36\x3f\xfb\xe4\xa0\xfd\xdf\x31\x05\x2d\x85\xd5\x92\x45\xc2\x54\x1c\xaa\x4c\x5d\xbd\xe9\x4e\xbe\x16\xd5\xc9\xbd\x14\xe8\x5c\x3c\x1e\x4f\x06\xbc\x01\x31\x16\x8b\x11\x8e\xe3\x40\x14\x45\x40\x08\x81\xc1\x60\x00\x93\xc9\x84\xed\x76\xfb\x3b\xa1\x72\xbb\x7e\xb8\x22\xe5\x54\x2b\xb8\xbd\xd9\xaf\x3f\xd9\x39\x6b\x3a\x52\xc6\xb3\xb6\x7c\xde\x97\xea\xa2\xff\x39\x6f\x16\x4e\x0f\x5e\x19\x24\x1b\x04\x09\x00\xeb\x90\xae\x87\x0e\x1d\x62\x0f\x9b\xdb\x3f\x7b\xf4\xb6\xfd\x17\x98\x22\xf5\xea\xab\x43\x61\xb8\x22\x7d\xed\x6a\x6d\xf4\xc7\x29\x0d\xb9\x18\x89\x44\x7c\x23\x23\x23\xa2\xd7\xeb\x85\x44\x22\x71\xcf\x09\xb1\x2c\x8b\xab\xab\xab\xa1\xa9\xa9\x09\x7b\x3c\x1e\x0b\x0b\x78\xdb\xd6\x45\xe3\x97\xf7\x78\xcb\xfe\x4c\x23\x63\xed\x58\x79\xfa\xda\xd9\xd6\xd0\x17\x3f\x1a\xf8\x68\xec\xfa\xf5\xeb\xf7\x25\x69\xd7\x04\xd9\xd1\xd1\x81\x8f\x37\xed\x7d\xec\xe4\x8d\xf2\x37\x59\x82\xf5\x79\x32\x01\x00\x00\xd2\x6a\x25\x79\xbe\x39\xfc\x93\x69\x2b\xff\x8b\x70\x24\xec\xfd\xe0\x83\x0f\xc4\x8f\xa3\xd0\xcd\x66\x33\xde\xb5\x6b\x17\xae\xaf\xaf\x77\x98\x04\xf6\x70\xf7\xb4\xf9\xaf\x2e\xd6\x47\xff\x61\xd2\x37\x7b\xf5\xec\xd9\xb3\x32\xa5\xb4\x14\xef\xbb\x1d\xe1\x5c\x7d\xb1\x74\xcd\x95\x1e\x8f\x07\x9f\x3c\x74\xbc\xe6\xb9\xfe\x8a\x3f\x1a\x45\xd6\x53\xa0\x1a\x28\x05\xbf\x49\x9a\x7b\x6b\x4b\xf0\xdb\x31\x95\x78\xe6\xfa\xf5\xeb\xd1\xa1\xa1\xa1\x52\x92\x8f\x14\x0d\x88\x8b\xea\x4b\x4e\xcc\xed\x76\xe3\x47\x1e\x79\x44\x6d\x36\x9b\x2d\xf1\x78\x3c\xfa\xe6\x9b\x6f\x8a\x3c\xcf\x17\xcc\xd1\x66\xb3\x41\x6d\x6d\x2d\xa8\xd5\x6a\x98\x9f\x9f\x87\x99\x99\x99\x52\x63\x15\xa8\x90\x02\xd2\x68\x34\xf0\xcc\x33\xcf\x68\x9f\x9d\xda\xfc\x5a\x7d\x48\x77\x14\xa0\xf0\x88\x2e\x98\x85\xc9\x37\xb7\x06\x5e\x8c\x08\xc9\x8b\xe7\xce\x9d\xe3\x83\xc1\xe0\x7a\x54\xd0\x5a\x9e\xce\x6a\xb4\x18\x83\xc3\xe1\x80\x50\x28\x54\x6c\xe3\x92\xf6\xf6\x76\x7c\x6c\xfb\xfe\xb6\xdd\xb3\xe6\x6f\xa8\x15\x64\x1c\x72\xa5\x7e\x79\x21\x31\x72\xfe\xfc\xf9\xf3\x72\xa9\x31\x4a\x4a\xd7\xdd\xbb\x77\xe3\x9d\xa9\xf2\xe7\xea\x42\xda\xa3\x14\x68\x46\x17\xa0\x8c\x0a\x0f\x1a\xc4\x85\xdf\xb5\x07\x5e\xf4\x27\x23\x17\x4e\x9f\x3e\x2d\xa6\xd3\x69\x80\xb5\xf5\xd6\xdd\x3c\x9d\x35\x75\x1d\x21\x04\xfc\x7e\xff\xaa\x7a\x9b\xcd\x86\x0f\xec\xda\xeb\x7e\xa6\xcf\x79\x4e\x2f\x32\x6e\x00\x0a\x75\x41\xdd\xd3\xe2\xf6\xa6\xa7\xe6\xb7\xcc\x9f\xbf\x75\xeb\xd6\xaa\x31\x56\x0d\x64\xb5\x5a\x61\x5b\x53\x9b\xf3\x91\xc9\xb2\xef\x02\x5d\x56\x76\x00\x80\x00\x01\xcf\x2a\xe9\xb7\xb6\x04\x5f\x0a\xf2\xf1\x8b\x79\x00\x3f\x51\xaa\xa9\xa9\x01\x4f\x5c\xfb\x78\x06\x20\x00\x42\x08\x10\x45\x6c\x63\x50\xff\xb9\x9a\x9a\x9a\x92\x9b\xb6\x4a\x85\x74\x76\x76\xb2\xdb\x16\x4d\x5f\x31\x0a\x8c\x07\x21\x9a\xb1\x31\x51\xe6\x98\xfe\xa1\x31\xf2\x93\xb0\x4a\x38\x7d\xee\xf7\xe7\xf8\x74\x3a\xfd\x27\xf1\x18\xee\x45\x2c\xcb\xe2\xa4\x46\x49\x02\xa2\x99\x49\x2d\x4b\xc2\x94\x5a\x49\x33\x0c\x53\x52\x08\x15\xec\xa4\xd9\x6c\xc6\x0d\x9b\xeb\x1c\x3b\xe7\x8c\x5f\x02\x8a\x80\x2e\xef\x22\xa5\x08\xa6\x6c\xfc\xc0\x78\x39\xf7\xaf\xbd\xbd\xbd\xf1\x70\x38\xfc\xff\x02\x10\x00\x60\x61\x61\x01\xfc\x46\xa9\xf7\x43\x4f\xe2\x74\xf6\xa0\xcd\x5b\x84\xb1\x1b\xee\xe4\xab\x8b\x8b\x8b\x62\xa9\x3e\x05\xdb\xdb\xd2\xd2\x02\xf5\x21\xdd\x09\xa3\xc8\xb8\x57\x74\x0b\x02\x82\x28\xb9\x52\x17\x7b\xd9\xb7\xe4\x9b\x19\x1e\x1e\x7e\x10\x00\xef\x29\xf6\xef\x46\x73\x73\x73\xe4\xf6\xc8\x6d\x1f\xb4\xb4\x7e\x7d\xa0\x2a\xf9\x9a\x8a\x20\x7d\x44\x27\xf7\x86\x23\xe1\x91\x81\x81\x81\x92\x7d\xf2\x41\xe2\xc6\xc6\x46\x6d\xeb\xa4\xe1\x73\x99\x23\xb0\x22\x4f\x27\xed\x5c\x5f\x48\x2f\xbd\x73\xed\xdd\x6b\xf2\x46\x26\xb4\x4e\x5a\x8f\xe7\x53\x20\x31\x2f\x5d\xba\x44\x96\x96\x96\xbc\xb5\xb5\xb5\x73\x2c\xcb\xc2\xe2\xf0\xa2\x3c\x38\x38\x08\x92\x24\x95\xe2\x03\x6c\x96\x41\x79\x79\x39\x58\x34\x46\x57\x75\x54\xb3\x37\xdf\x46\xa0\x08\x60\xd0\x9d\xfa\x8d\x6f\xc9\x17\xf4\xf9\x7c\xc5\x03\x6e\xc4\x1b\x28\x56\x19\x6b\xf1\x59\x25\x91\x9d\x4e\x27\xec\xd8\xb1\x03\x3b\xcc\x56\x7d\x82\x4f\x8b\xb7\x86\x6f\xc9\xe7\xce\x9d\x93\x01\x00\xea\xea\xea\xe0\x33\x27\x3e\xad\xad\x52\x5b\x9d\x01\x25\x19\xbe\x71\x7b\x28\x39\x38\x38\x98\xe3\x95\xdb\xc9\xaa\xaa\x2a\x70\xc7\x35\x7b\x33\x7e\xe1\x8a\x5d\xc3\xa9\x48\x7c\xd6\xc2\x9f\x1f\xb9\x38\x92\xbf\x8b\xeb\x26\xbd\x5e\x0f\x2d\x2d\x2d\xe0\x72\xb9\xd4\x46\xa3\x11\xf3\x3c\x4f\xfc\x7e\xbf\x3c\x3a\x3a\x0a\x91\x48\x64\x5d\x3c\x36\x6d\xda\x04\x4f\x1f\x3c\x5a\x7d\x64\xcc\xf1\xe3\xaa\x19\xcd\xbe\x88\x5e\x1a\xeb\x79\xa8\xfa\x6b\x6f\x99\x2e\x5f\x4b\xa7\xd3\x70\xb2\xeb\x89\x1d\x4f\xdd\x72\xbc\x6a\xe1\xd8\x36\x4e\x45\xe6\xce\xb4\x3a\x5e\xd0\x68\x34\xef\xf4\xf5\xf5\xe5\x0c\x74\x00\x00\x70\xb9\x5c\xac\x3b\xa6\xde\x83\x00\x15\x18\x7b\xb3\x16\x7e\x40\x06\xb2\xe0\xf5\x7a\x37\x0c\xb0\xad\xad\x0d\x1e\xde\xd9\xe5\x72\xcf\xd1\xaf\x95\x4d\xca\x47\x58\x81\xb8\x14\x95\x31\x9c\x70\x58\x2e\x76\x7e\xaa\xed\x9f\xfb\xa7\x6e\x8f\xf4\xf6\xf6\x02\xa5\x25\x42\x09\x79\xb4\x67\xcf\x1e\xf5\x63\x77\x6c\x3f\xda\x1c\xd1\x1c\xa5\x80\xa0\x3c\xa5\xde\x75\x74\xd8\xfe\xea\x52\xe7\xee\xdd\x32\x55\xc4\x03\xc3\xd6\x97\xad\x9c\xaa\x0d\x00\x40\x2f\x31\x9e\x27\xc6\x6c\x3f\x9d\xd9\xb5\xa3\x73\x70\x70\x30\x2e\x08\xc2\x8a\x0a\x71\x38\x1c\xac\x63\x52\xdd\x06\x40\x0b\x7c\xfb\x85\x32\xb1\x3f\x14\x0a\xa5\x45\x51\xdc\xd0\xfd\xdb\xba\x75\x2b\x3e\xb8\xa5\xab\xab\xfe\x03\xee\x35\x15\x4f\x3c\xd9\x7a\x56\x06\x97\x66\x46\x6c\xb3\x2e\x48\xcf\xe9\xb6\xb7\xbe\xa0\x79\x54\xf3\xdb\x0b\x17\x2e\xac\x79\x4a\x2c\x65\x16\xb3\x6b\x44\xdd\x05\x90\x8d\x2e\x00\x94\xf1\x6c\x83\x9e\xb0\xd5\x9c\x0a\xfb\x2c\x1c\xdb\x90\x7f\xfa\x8c\x02\xe3\x51\x01\x63\x2b\x2b\x2b\x8b\xfb\xfd\x7e\x92\xdb\x49\x9d\x4e\xa7\xb5\x70\xac\x27\xa3\xf6\x57\x60\x86\xf4\xd2\xad\xc0\x62\x60\x43\x47\xd5\x6a\xb5\xe2\x3d\x9d\x5d\xce\xda\xab\xdc\x29\x95\x40\x3c\xab\xdc\x00\x04\xc0\x28\xd4\xbc\xf9\x06\xf7\x0a\xff\x70\xc3\x84\xb7\xc6\x7b\xd3\xeb\xf5\x12\xa3\xd1\x88\xbb\xbb\xbb\x71\x43\xf9\x26\x1b\x01\x4a\x46\x17\xa6\xa2\x37\x6f\xde\x24\x14\xa8\xbc\x68\x12\x27\x4c\x82\xce\x95\x65\x10\xd7\xca\x3e\x4e\x45\xe2\x14\xa8\x38\x69\xe7\xfa\x76\x2c\x18\x4f\x64\xd9\xcf\x5a\xf8\x21\x19\x93\x34\xcf\xf3\x99\x85\x5d\x19\x17\x69\xf5\x22\x76\xe4\x66\x01\x99\x3d\x4d\x68\x65\x6f\x2c\x16\xdb\xd0\x2e\x6e\xd9\xb2\x05\xdb\x17\x95\xe7\xd5\x1c\xa9\xbb\xfb\x41\x44\x80\x15\x6a\x76\x7a\xc5\x6f\x6c\xdf\xbe\xfd\xcb\x4b\x4b\x4b\xf2\xd3\x9f\xfe\x8c\xfe\xa9\xd9\xaa\x97\x5b\xfb\xf5\xcf\x53\x04\xf2\x0d\xb7\xf3\x67\x67\x8e\x54\x7d\x27\x1c\x0e\x27\x2f\x34\x30\x3f\xd0\x28\xf8\x87\xee\x98\xba\x21\xaa\x93\x82\xef\x36\x45\x7e\x90\x4a\xa7\xfc\x81\x40\x40\xbc\x54\x87\xbf\x2f\x63\xaa\xf6\x44\xb5\xed\x41\xa3\x38\x73\xa5\x36\xf6\xbd\xa5\xa5\xa5\x70\x3c\x1e\xcf\x49\x57\x70\x3a\x9d\x18\x53\x50\xab\x14\xac\x2d\x74\xa6\x80\xf0\x2c\x0d\x17\xd9\xa7\xc5\x62\x3a\xbf\x0e\x03\x00\xa9\xaa\xaa\x52\x9b\xee\x28\x87\x72\xac\xd0\x72\x78\xae\x04\x19\x43\xf2\xbe\xf2\xd6\x72\x63\x77\x77\x77\x74\x67\xc2\xfe\x7c\xdb\x92\xfe\x4b\x08\x00\x80\x82\x7a\xe7\xbc\xf1\x9b\xb3\x56\xc7\x07\xbf\x5f\xea\x7f\x9d\x61\x98\x3f\xbc\xb1\x95\x9c\x64\x28\x78\x14\x04\x61\x51\x12\xc7\x2e\xf4\x5c\xe0\x03\x81\x00\x30\x87\x98\x7e\xb9\xce\xf3\x02\x42\xc8\x01\x00\xd1\x40\x20\xe0\xeb\xe9\xe9\xc9\x9d\xbe\x9c\x0a\x41\x00\x2c\x02\xc0\x59\x2b\x07\x20\x13\x48\xa2\x88\x66\xad\x88\x7c\x15\x70\x37\x91\x4f\x00\x00\xeb\xf5\x7a\x96\x91\x24\x1b\x42\x79\xe7\x34\xff\xef\x95\x60\x0e\xb0\x12\x58\x30\x42\xda\x86\x86\x06\xd6\x3e\xa9\xea\x04\x8a\x0a\x96\xd9\x9e\x52\x3d\xa4\xd7\xeb\xff\xf7\x8d\x37\xde\x10\xeb\xeb\xeb\x47\xec\x76\xfb\x48\x22\x91\x80\x89\x89\x09\xc8\xda\xce\x67\xcf\x9e\x25\x76\xbb\xdd\xe7\x70\x38\x7c\x89\x44\x02\x8a\x62\xb6\x2b\x2a\x84\x02\x00\x45\x40\x50\x36\x68\x9a\x29\x30\xa6\xeb\x8b\x03\xe5\x83\x25\x84\x10\x49\x8b\xc2\x59\x21\xb6\x02\x8a\x2e\xdf\xf8\xcc\x9d\x47\x00\x20\x6a\x50\x18\x00\x64\x8e\xe3\xc8\xac\x55\x77\xa3\x73\x8e\xe6\x5a\x13\x00\x32\x6b\x11\x6e\xf0\x0b\x3c\x18\x0c\x06\x70\x38\x1c\xd8\x64\x32\x61\x86\x61\x88\xd1\x68\x24\x59\x90\x15\x15\x15\xb0\x63\xc7\x0e\xd6\x6a\x30\xab\x93\x42\x5a\xc4\x18\xcb\x73\x73\x73\xb9\x49\xe5\x00\x10\x04\xa2\x84\x09\xcf\x28\x8c\x36\xdf\x41\xd6\x4a\xd8\x82\x71\x81\xc7\x72\x4f\x03\x20\x14\x0a\x89\x4e\x67\xf9\x25\xeb\x82\x7c\xb8\x30\x56\x82\x96\x9d\x9a\x8c\xc5\x4f\x81\x42\xbc\x82\xed\xe5\x78\x3e\x7d\xf9\xf2\x65\xa2\x7f\xe2\xf0\x6f\xdf\x6b\x88\xee\xdc\x39\x6f\x3c\x4e\x10\x90\xeb\xd5\xf1\xff\xf6\x99\x84\xf3\x89\x44\x82\xfc\xc5\xf1\x93\xce\xc7\xa7\xcb\x7f\xe0\x9e\xd7\x74\x05\x8d\xe2\xf0\x7b\x4f\xb6\x7d\xfb\xcd\xab\x3d\x93\x82\x20\xc0\xc9\x83\x47\x6b\x8e\x8e\x96\xff\xb4\x72\x5a\xd3\x1d\x32\x48\x43\x6f\xef\xdf\xfc\xe2\x5b\x03\x17\x6e\x0e\x0f\x0f\xaf\x80\x4c\xa5\x52\x40\x81\x8a\x29\x8d\x12\xd6\x4a\xd8\x92\x99\x54\x66\x0f\xcc\x3c\x5b\x6d\x36\x6f\x2c\xb4\x3a\x31\x31\x21\xbb\xf7\x55\xbe\x9e\xb2\x32\x5f\x30\x86\xe5\xa6\x5c\x40\x19\xad\x08\x34\x00\x04\x92\x0e\x87\x03\x9b\xd5\xaf\x4c\x8c\x0e\xf1\x5e\xaf\x17\x06\x6e\x0c\xcc\xd1\xed\xdb\x5f\xba\xe9\x4e\xfe\x18\x00\x80\x50\xe2\xed\xbb\xde\x17\x6e\x6c\x6c\x54\x3f\x31\x5d\xfe\xa3\x66\xbf\xfe\xb3\x40\x01\xcc\x82\xae\xcd\x28\xb0\x35\xe1\x7d\x8f\x1c\x94\x64\x49\x7e\x6c\xd2\xfe\xb2\x27\xa6\x39\x0c\x00\xe0\x4c\xaa\xf6\x1e\xbb\xed\x78\x35\xf0\x50\xf7\xc3\x77\xee\xdc\x49\xe6\xf4\x64\x2a\x95\x02\x00\xe0\xa3\x3a\x79\xc1\x9e\x54\xd5\xe5\x2e\x05\x05\x28\x4f\xa9\xb6\x2c\x87\x02\xd7\xad\x46\x46\x46\x46\xa0\xad\xad\xcd\xcb\xee\xb4\x7d\xab\xe6\x23\xfe\x65\x43\x44\x69\x00\x94\xaf\x98\x10\x08\x06\x14\xf4\x76\xe8\xbe\x9d\x90\xb9\xbe\x81\x81\x01\x02\x00\xe4\xda\xb5\x6b\x30\x3e\x3e\x1e\xac\xae\xae\x0e\x12\x42\x60\x7a\x7a\x1a\xe2\xf1\x38\xe9\xda\xdd\x65\xac\x1a\xd1\xec\xcf\x05\xd1\x28\x82\xf2\xa4\xaa\xc3\x84\x35\x1e\x41\xaf\x0e\xbb\x12\xea\x2e\x04\x28\x63\x54\x20\x00\x7b\x9a\x6d\x33\x82\xda\xe3\x74\x3a\x47\x66\x67\x67\x57\xf4\x64\x24\x12\xe1\x03\x86\xb2\xb1\xfa\x80\x7e\x5f\xfe\x84\xdd\x31\xcd\xae\x8a\xda\x0a\xf5\x46\x40\x02\x00\xf4\xf4\xf4\x88\xc7\x8e\x1d\x7b\x47\xee\x32\x7d\xbe\xcc\x2f\x7f\xbe\xcc\x2f\xef\x55\xf1\xd4\x26\xab\x50\x32\xe1\x60\xfa\x23\x6e\xd5\x29\x4e\x12\x7a\xdf\x3e\xf3\x76\x9a\xe3\xb8\x9c\xa0\x88\x44\x22\xa4\x94\xb9\x17\x36\xc8\x0b\x46\x91\x75\x01\x64\xec\xe9\x88\x5e\x5e\x10\x59\xca\x03\x02\x79\xc1\x2c\x8c\x35\xf9\x59\x57\x76\x09\x7d\x26\x61\x82\x67\x49\x3c\xab\x27\x99\x2c\x93\x8a\x8a\x0a\x70\xd8\xec\xee\x56\xbf\xfe\x18\xa0\xe5\x20\x36\x02\x30\x88\x4c\xf9\xad\x5a\xe1\x57\x77\xa6\xa7\xe2\x1c\xc7\xe5\x0b\x3e\x0c\x45\xfa\x26\x9f\x44\x51\x44\x63\x63\x63\x0a\xab\x52\xf9\x74\x1e\xfb\xe5\x44\xa5\xe6\x74\xc4\xa3\x7e\x3d\xea\x62\x4f\xa5\x8c\xe8\x77\x53\xd3\xde\xd1\x9e\x9e\x1e\x31\x1a\x8d\xc2\x32\x9f\x62\x7e\xb9\xef\x9e\x4d\x1e\x39\x51\xa9\x8a\x54\xc5\x35\xdd\x7a\x09\x1b\x63\x3a\x39\x74\xae\x25\xfc\x3d\x9f\x1c\xbb\x12\x0a\x85\xd2\xd1\x4d\xea\x99\x32\x81\x6d\x37\x48\xb8\x6c\xd1\x2c\x4e\xf5\xb4\x84\xbf\xbb\x98\x08\xf5\xf7\xf5\xf5\x49\x00\x79\xd1\xba\xe6\xe6\x66\x7c\x68\xdf\x81\x1d\x5f\xb9\xea\xbe\xc2\x2a\x48\x9b\x6f\xc0\x9e\x6d\x0b\x7e\xf5\x75\xdf\x07\xff\xd6\xdb\xdb\x5b\xca\xf5\x01\x58\x3b\x09\x03\x00\x40\x5c\x2e\x17\x56\xa9\x54\xa0\x28\x0a\x84\x42\x21\x10\x04\x61\xad\x94\x7d\xc1\x33\xab\xd5\x8a\x8f\x1f\x3f\xae\xd7\x69\x75\x4d\x6a\x05\xd5\x48\x0c\x5d\x10\x24\x71\xb8\xa7\xa7\x27\x19\x89\x44\xe0\xe8\xd1\xa3\x6a\xab\xd5\xea\x41\x80\x5c\x80\x20\x9c\x4c\x26\xbd\x67\xce\x9c\xe1\xa3\xd1\x68\x61\xb4\xce\x60\x30\xc0\x73\xcf\x3d\x67\x7b\x6a\xd8\xf1\x56\x7d\x50\xd7\x9d\xaf\xd5\xe6\xca\xc4\xde\x53\xad\xb3\x4f\x9c\x3a\x75\x2a\x2d\xcb\x6b\x9e\xda\x3f\xc5\xfb\x05\x04\x00\xb0\x4e\xa7\x83\xe6\xe6\x66\x28\x2b\x2b\xc3\x89\x44\x82\x8c\x8e\x8e\x82\x20\x08\x20\xcb\x32\xc1\x18\xe3\xea\xea\x6a\x70\x38\x1c\x90\x48\x24\x60\x72\x72\x12\x24\x49\xca\x31\xc8\x26\x7c\x40\x92\x24\xa8\xae\xae\x96\xb4\x26\x83\xa3\x29\xa0\x3f\x94\x91\xf5\x19\xa8\x66\x81\xf1\x2c\xda\x95\x0f\xc2\x0c\x3f\xb6\xec\x53\xde\x8d\x36\x92\x8c\x59\x6f\x5b\x04\x00\x20\xcb\x32\xf8\x7c\x3e\x98\x9e\x9e\xa6\xb1\x58\x0c\x1e\xdd\xbf\x1f\x7f\x7a\xd7\x63\xb5\x8f\xb5\x3f\x54\xed\x6c\xdc\x14\x99\x9c\x9a\x52\xc6\xc6\xc6\x20\x14\x0a\x41\x26\xfc\xbb\x42\x39\x90\xcb\x44\x2c\xcd\x55\xd1\xb6\x25\xc3\x9f\x6b\x15\xac\xcf\xdc\x4b\x04\x08\x10\xd8\xd3\x6c\xb3\x7f\xab\xfe\x37\xe3\x13\xe3\x42\xfe\x2a\x7d\xd2\xc4\xb2\x2c\x9c\x38\x71\x42\xfd\x6c\xa2\xe5\x87\x4f\x8e\xd9\x7f\xb5\x75\xd1\xf8\xd5\x16\xde\xb6\x9f\xec\x71\x9f\x9d\x9c\xf5\xa6\x38\x8e\x5b\xd5\x87\x81\x95\x98\x17\x0d\x06\x83\x74\xcb\xd6\xf6\x14\xcb\x32\xd5\x9b\x23\xda\x4e\x44\x57\x32\x1f\x06\x91\xa9\x94\x35\x28\xc1\x6f\x36\x5c\x9d\x98\x98\x50\xf2\xfb\x7d\x92\x9f\xc6\xc6\x46\xf4\xa8\x7b\xdb\xa3\x87\xc6\xad\xff\x02\x34\xa3\x79\x4d\x02\xbb\x59\x56\x81\x18\x74\xc2\x1f\xa7\xa6\xa6\x56\xcd\x6d\xd5\x9d\x18\x1a\x1a\x4a\x0f\x56\xa6\x5e\x49\x68\x94\x70\xa6\x26\xe3\x44\x23\x8a\x60\xef\x54\xd9\xdf\x77\x5a\xea\xf6\x75\x74\x74\x7c\x12\xaf\xb2\x94\x24\xbb\xdd\x0e\x7a\x11\xd7\x21\x8a\x60\x25\xb7\x09\xa0\x97\x98\x3a\x8b\xc5\x52\xd2\x04\x5d\x35\xd9\xc1\xc1\x41\x48\x4a\xdc\xf0\xe5\xba\xd8\xcf\x29\xa2\x00\x59\x5b\x16\x51\x50\x11\xa4\x7f\xea\x96\xe3\x97\x07\xda\xbb\x9a\x5a\x5a\x5a\xee\x07\xe8\xbd\xfa\x60\x58\x6d\x3e\x16\x94\x91\x48\x04\xe6\x2d\x42\x7f\x42\x23\x87\xb3\x59\x35\x05\x53\x32\xea\x4c\xf7\xc4\xe3\xf1\xe2\x34\x01\x00\x00\x66\x96\x2b\x73\xf9\x61\x45\x51\x40\x14\x45\xc9\xd8\xea\x9e\xaa\x48\xaa\xf7\x5b\xd3\x2b\x4a\x16\x00\x81\x46\xc6\x65\x35\x11\xdd\xe3\x52\x47\xf9\xf9\xb8\x94\x8e\x04\x02\x81\xfc\xfc\x32\x2d\xe2\x97\xd5\x7b\x59\x9d\x97\xdf\xa6\x94\x8e\x5d\xb1\xe4\x57\x9e\x17\x64\x0b\x93\xc9\x24\xaa\x6f\x69\x8a\xcd\xb8\x24\x2f\x26\xc8\x19\xd1\xcb\xfe\x8b\x0d\xd1\x9f\xcd\x9b\x85\x5f\x5f\xbd\x7a\x35\x95\x48\x24\x00\x0a\x79\xd3\xac\xe0\x21\x79\x03\x40\x30\x18\x24\xee\x2a\x77\x32\xba\x49\x35\xd3\xec\x37\x1c\x57\x93\xc2\xb4\xb9\x4e\xc2\x8e\x86\x90\xfe\x18\xda\x5e\x71\x85\x98\x54\x8b\xf3\xf3\xf3\xd9\x38\x4d\xf1\x5b\x11\x59\x40\xf9\x00\xf2\xcb\xe2\xc5\xc9\x81\xad\xac\xac\x44\xbb\x76\xed\x62\x30\xc6\x34\x12\x89\xe4\xfa\xc8\xb2\x0c\x73\x73\x73\x92\xad\xda\x35\xea\xf3\xc0\xd9\x3b\xe5\xdc\x6b\x01\x94\x7e\xef\xf2\xe5\xcb\xb1\xbc\x38\x54\xfe\x42\xe2\xbb\xbd\x33\x80\x16\x17\x17\x49\x6d\x6b\xe3\x62\xd0\xa2\x70\xcd\x7e\xc3\x41\x4c\xb3\x93\x58\xf6\x4e\x64\xc6\xda\xea\xd7\x3f\x6b\xf0\xd8\x03\xc6\x76\xcf\xad\x70\x38\xac\x24\x93\xc9\x12\x81\x8e\x75\x51\xae\x9d\x46\xa3\x81\xee\xee\x6e\x7c\xac\xe3\xd1\xd6\xe7\x97\x9a\x7f\xaa\xd9\x59\x75\xd3\x9f\x8e\x06\xc3\xe1\x70\xae\x31\xc7\x71\x70\xfb\xf6\x6d\x65\x6a\x6a\x2a\x31\x3e\x3e\x1e\xef\xed\xed\x95\x82\xc1\x60\x29\x7e\x08\x60\xb5\x0a\xc9\x91\x28\x8a\x10\x89\x44\x44\xe7\x96\x9a\xb1\xb8\x4e\xd1\xd5\x87\x74\x0f\x21\xb4\x1c\xc9\x5b\x2e\x19\x8a\x34\x75\x21\xdd\x89\x5a\xa9\xac\xc3\xda\x51\x7b\x4b\xe7\xb2\x04\x38\x8e\xa3\xc9\x64\x72\x9d\xd8\x56\x48\xab\xd5\xc2\xb6\x6d\xdb\xe0\xc8\x81\xc7\x2d\xc7\xe5\xa6\xaf\x1f\x19\xb1\xff\x87\x8d\x53\x6d\x77\xc5\xd5\xbb\x93\x9d\xb6\xff\xb9\xe3\x9d\xe4\x05\x41\x28\xe8\xc3\x71\x5c\xc6\x83\xba\x47\xb4\xaf\x40\x85\x14\x7f\x62\xb1\x18\x15\x45\x91\xd3\xb5\x54\x0c\x26\xb4\x8a\xbe\x36\xac\xeb\x40\xb4\x78\x51\x10\x58\x38\xb6\x71\x9b\xcf\xf8\xd7\xf5\x6a\x67\xab\xa7\xbd\xde\x5f\xd1\x56\xe3\xd7\x1b\xf4\x32\x42\x08\x44\x51\x04\x45\x51\x48\x29\xfe\x56\xab\x15\xd5\xd6\xd6\x42\x67\x67\x27\x7e\xb2\xeb\xd1\xca\xa3\xa8\xf9\xab\xc7\xc6\x2b\x7e\x5e\x1f\xd4\x3d\xcd\x00\xd2\x00\x05\x30\x8a\x6c\x95\x96\xb2\x26\xa9\xdd\xf6\xee\xe8\xe8\xa8\xb2\x9c\x6d\xde\x90\xda\x59\xd7\x71\xea\xec\xec\xc4\x1d\x1d\x1d\xae\x9a\x88\xee\xc5\x4f\xdd\xb6\x7d\x53\x2b\x33\xda\xbb\x99\xe6\x14\x51\x88\x6b\x95\x31\xaf\x8d\x3b\x3f\x57\x26\x5c\x0a\x18\xa5\x9b\x01\x48\x2d\xc4\xd3\x49\x91\x2c\x67\xc3\x75\x1a\x2d\xb6\xa9\x8d\xe6\x72\x5e\xdb\x54\x19\x57\x77\x6f\x8e\x68\x0f\xb9\x63\x9a\xfd\x0c\x41\xda\x55\x37\x3a\xc3\x93\x9c\xde\x12\xfa\xc2\xeb\xb3\x57\xff\xeb\x7e\xde\x1b\x58\x57\x68\xe3\xc3\x0f\x3f\x84\x64\x32\xe9\x23\xfb\xf6\xbd\xfc\xeb\x0e\x79\xea\xc8\x6d\xdb\x77\x5c\x09\x75\xf5\xdd\xda\x9b\x79\xa6\x69\xdb\x82\xb1\x69\xdb\x82\xf1\x6f\x00\x00\x08\x82\xb4\xc8\x90\xa8\x8c\x29\x8f\x00\x61\xb5\x8c\xcc\x2a\x82\x2c\x50\x24\xee\x69\xf1\xfb\x6a\xcb\x80\x93\x6a\x25\x29\x32\xc4\xec\x74\x3a\xef\x2b\xff\xc2\x94\xa8\xcb\x49\x25\xc8\x13\xdf\xa1\x50\x88\xf8\x7c\x3e\xde\x51\xe3\xbe\x3d\xb1\x49\x7a\x5f\x66\xa8\xa5\x32\xa1\xa9\x67\x09\x66\x32\x92\xab\xe8\x27\x93\x1c\xcd\xb8\x39\x14\xa9\x54\x04\x9b\x34\x0a\xb6\xaa\x15\x6c\x61\x00\xe9\x10\x45\x28\xd3\x66\xc5\x74\xcc\x28\xf8\x95\x92\x02\xc0\xb0\x2b\xd5\xfb\xfb\x2d\xa1\xbf\xf3\x6b\xf8\xd3\xef\xbf\xff\x3e\x1f\x8f\xc7\x69\x89\x39\x16\x4b\xe9\x02\x97\x8d\x29\xd1\x01\xb2\xc0\x0a\xd7\x13\x50\x32\x99\x84\xf1\xf1\x71\xd9\x60\x32\xce\x73\x35\xfa\x8b\x23\xae\xf4\x2d\x96\xa0\x0a\x7b\x4a\x5d\x89\x00\xe1\x82\xe1\xb2\x3d\x73\xc2\xaa\xc4\x33\x80\x82\x28\x5e\x36\xd9\x0b\x88\xc2\xb4\x95\x1f\x39\xdb\x16\xfa\xa7\xc1\xca\xe4\x3f\x2e\x86\x03\xd7\xcf\x9d\x3b\xc7\x2d\xbf\x5f\x57\xcc\x21\x9f\x8a\xd5\x13\xcd\x8e\x70\x5f\x26\x5a\x55\x55\x15\xec\xd9\xb3\x47\x6d\xb5\x5a\xdd\x46\x91\xdd\xd7\xbe\x68\xf8\x5c\xeb\x92\x61\x6f\x19\xcf\x58\x10\xcd\x5f\xab\xfc\xf1\x69\x51\x09\xb9\x76\x14\x01\xf0\x2c\xe1\xc7\xcb\xb9\xfe\x41\x77\xf2\x8d\x80\x41\x3a\x9f\xe6\xd2\x93\xfd\xfd\xfd\xe9\x6c\x40\xea\x7e\xe9\xbe\x41\x66\xa9\xae\xae\x0e\xb6\x6d\xdb\xc6\x96\x97\x97\xdb\x10\xa0\x06\x67\x52\xb5\x6f\x73\x44\xbb\xc7\x1d\xd3\xb4\x94\x27\x55\x6e\xbd\xc8\x18\xf3\x13\xba\xcb\x41\x1a\x00\x00\x10\x58\xca\x87\xf4\x92\x7f\xd1\x2c\x4c\xcc\x58\xf9\xbe\x79\x8b\xf0\x9e\x82\x61\x24\x91\x48\xf8\x87\x86\x86\xf8\xe1\xe1\xe1\x07\xf2\x76\xf3\x46\xfc\xbf\x35\xc9\x6e\xb7\xe3\xfa\xfa\x7a\xa8\xad\xad\x55\x9b\x33\xe1\x3d\x1b\x02\xe4\x54\x2b\xc8\xa5\x17\x19\xa7\x56\xc6\x16\x86\x20\x0d\x41\x54\x12\x59\x9a\x4c\xab\x14\x3f\xa7\x22\x3e\x0a\xd4\x0f\x00\x41\x8e\xe3\xe2\x33\x33\x33\xfc\xe4\xe4\x24\x99\x9b\x9b\x7b\xa0\xe9\xfa\x07\x06\x32\x9f\x0c\x06\x03\xae\xa8\xa8\x00\xab\xd5\x0a\x66\xb3\x19\x9b\x4c\x26\xcc\xb2\x2c\xd6\x6a\xb5\x58\x92\x24\x22\x08\x02\xe1\x38\x8e\x24\x12\x09\x12\x89\x44\xc0\xef\xf7\x43\x24\x12\xf9\x7f\x7b\x0f\x61\xad\x80\xf2\xc7\xf1\x42\xee\x87\xef\x7d\xff\xc7\xc3\x3d\x5d\x9b\x75\xb4\xbd\x5b\x5d\xa9\x36\x1b\x99\x2c\x86\xd2\xbc\xee\x36\x7e\xa9\x7e\x00\x00\xf8\xff\x00\x76\x62\x7c\x14\xb0\x27\x9e\x60\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x73\xbe\x6c\xe4\x26\x14\x00\x00") + +func web_uiV2AssetsAppleTouchIcon57x57Ae96d6d27e61e25514af459bc8b20960PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsAppleTouchIcon57x57Ae96d6d27e61e25514af459bc8b20960Png, + "web_ui/v2/assets/apple-touch-icon-57x57-ae96d6d27e61e25514af459bc8b20960.png", + ) +} + +func web_uiV2AssetsAppleTouchIcon57x57Ae96d6d27e61e25514af459bc8b20960Png() (*asset, error) { + bytes, err := web_uiV2AssetsAppleTouchIcon57x57Ae96d6d27e61e25514af459bc8b20960PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-57x57-ae96d6d27e61e25514af459bc8b20960.png", size: 5158, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsAppleTouchIcon60x60522fca33a44f77c679561313def843b9Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x15\x6d\xea\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\x00\x00\x15\x59\x49\x44\x41\x54\x68\x81\xed\x3a\x69\x6c\x9b\xc7\x95\x6f\x86\x1f\x3f\xde\xf7\x21\xea\xb0\x6e\x51\xb2\x2d\x3b\xb2\x2d\xdb\x8a\xe3\x23\x8e\xaf\xc4\xb1\xdd\x38\x45\x36\x69\xbb\x8b\xa2\x7b\x60\xb7\xc0\x02\xdd\x76\x17\xdb\x2d\xda\x6c\x51\x60\x8b\x6e\x51\x14\x45\xb6\xdb\x2d\xb6\xbb\x05\x9c\x4d\x8b\xd4\x75\xb1\x75\xea\xb8\x75\xed\xc8\x4e\x64\x39\xf2\x6d\x4b\xb2\x75\x59\x96\x28\x89\xa4\x28\x92\xa2\x78\x7e\x24\x3f\x7e\xdf\xcc\xfe\xe0\xa1\x4f\x34\x29\xc9\x4e\xba\x05\x8a\x3e\xe0\xe3\x7c\x9c\x99\x37\xf3\xde\x9b\xf7\xe6\xcd\x7b\xf3\x01\xfc\x11\xfe\x08\x7f\x50\x80\x72\x25\x06\x00\x92\x2b\x21\xf7\x5e\x0c\xd2\x3e\xc5\x7d\xb1\xb4\x23\x42\x08\x6c\x36\x1b\xd8\xed\x76\xb0\xd9\x6c\xd8\x60\x30\x60\xad\x5a\xc3\xa8\x19\x05\xab\x42\x72\x16\x21\x84\x53\x62\x86\x4f\x23\x91\x8f\xc6\x63\x42\x24\x1a\x11\xc2\xe1\x30\x99\x9b\x9b\x03\x9f\xcf\x07\x99\x4c\x86\x14\xcd\x2b\x05\x52\x54\x5f\x4c\xd3\xb2\xb8\x08\xca\x43\x31\xf2\x8a\x50\x5d\x5d\x8d\x9d\x4e\x27\x6e\xa8\xa9\x55\xd7\xa6\x75\x1b\xab\x23\x8a\x1d\xf6\x38\xbb\xc5\xcc\xc9\x9d\xda\xb4\xac\x4a\x2e\x22\x3d\x02\x60\x73\xdd\x05\x11\x03\x97\x60\x45\x7f\x58\x29\x4c\x04\xb5\xfc\x80\x57\xcf\xf7\xcd\xe8\x93\x1f\xba\xe6\xbd\xe1\x07\x0f\x1e\x08\x13\x13\x13\xc5\xcc\x7f\x64\x40\xf0\xa8\x14\x1e\x0b\x18\x86\x81\xb5\x6b\xd7\x42\xfb\xba\xf5\x6c\x1b\xb5\x75\xad\x9b\x53\x7f\xa6\x31\xa8\x3a\xac\x14\x70\x15\xca\x2b\x10\x85\x45\x5d\x5a\x02\xd9\x86\x7c\x33\x05\x0a\x22\x02\xce\x6b\x48\xf7\x0c\x57\x24\xde\x1e\x32\x44\xde\xbd\xff\x70\x34\x3c\x38\x38\x08\xb1\x58\xec\xa3\x90\x59\x80\xd5\xac\xb0\x54\x20\x05\xb5\x41\x08\x61\xa7\xd3\x09\xdb\xb7\x6e\x53\x3e\x15\xb3\xbc\xd4\x39\xa3\xfb\xa2\x35\x21\xef\x44\x74\xb9\x21\x21\xcf\xd9\x12\x28\x27\x8f\xa4\x5c\xf4\x0d\x54\xc5\x7f\x74\xa3\x32\xfc\xc3\xbb\xe3\x43\xfe\x5b\xb7\x6e\x41\x3a\x9d\x5e\x91\xa9\x95\xa6\x07\x28\xad\xbe\xe5\xec\x02\x0c\x06\x03\xde\xb3\x7b\x37\xb3\x45\x55\xb7\x63\xf7\x43\xd3\xb7\xed\x71\xf9\xb6\xd2\x43\xd3\x47\xab\x9f\x00\x52\x0c\xf1\x5d\xad\x8f\x7e\xf3\x9a\x31\x70\xe2\xf2\x87\xbd\xdc\xe4\xe4\xe4\x13\xab\xb9\x2c\x57\x96\xa2\x8c\x96\x6a\x6b\x6d\x6d\xc5\x87\xf7\x1d\x32\x1e\x0d\xd6\x7d\x6b\xef\xb8\xe9\xdf\xb4\x69\xd9\x9a\xc5\xd5\x41\x8b\x45\xb9\x95\x96\xb4\xa1\xbc\x4c\x10\x00\xa2\xd2\xf6\xa5\xdd\x19\x8a\xb4\xf5\x21\xe5\xe1\xa6\xb8\x6e\xb7\x72\x53\xcd\x75\x5e\x01\x41\xaf\xd7\xfb\x44\xd2\x7c\x2c\x1b\x7e\xfa\xe9\xa7\x61\x57\xd3\xa6\xf6\x17\x87\x2c\x6f\x5a\x13\x6c\x47\x96\xec\xbc\x1d\x66\xcb\x7c\x1d\x05\x00\x01\x53\xc1\xaf\xcb\x78\xe7\x74\xbc\x2b\xa4\xca\xb8\x13\x0a\x31\xc8\xcb\x68\x9c\x22\x4a\xe4\x22\x56\xab\x79\x6c\x36\x26\x99\x2a\x5b\x9c\xad\xaf\x8c\xb2\xb5\x4a\x01\x2b\x0b\x76\x0f\x14\x68\x6e\x3c\xe9\xdb\x8c\x31\xdd\x7b\x6a\xc3\xdc\x0b\x27\x4e\x9c\xe0\x04\x41\x78\x6c\x86\x19\x28\xbf\x13\x2f\x51\xe9\x03\x07\x0e\x30\x3b\xcc\xad\xbb\x8f\xde\xb5\xbe\xad\xce\xc8\xec\x8b\xbc\xe6\x09\x44\x80\x28\x00\xc1\x94\x4c\x9a\x53\x63\xc3\x15\x89\xf7\xa7\x4d\xa9\x4b\x3c\x43\xc7\x01\x20\x08\x00\x1c\x00\xf0\x89\x44\x82\x00\x00\x51\x68\x14\x98\x61\x18\x16\x00\xd4\x00\x60\xc4\x04\xea\x2b\xa3\x8a\xa7\xdb\xfc\xea\xe7\x9c\x7e\xf5\x66\x56\x40\x6c\x6e\x58\x00\x8a\x80\x22\x80\xa4\x9c\xc4\xcf\xb7\x86\xbe\x1f\x8b\xc5\x04\x51\x14\xcb\xf1\xf4\x88\x9b\x94\xd6\x95\xd2\xbb\x47\x6c\xf6\xc0\x81\x03\xcc\x2e\x63\xdb\xc1\x63\xf7\xac\x6f\xcb\x09\xd6\x97\x9a\x85\x22\x4a\x86\xed\xdc\xcd\x1b\xb5\xd1\xb7\xc2\x2a\xa1\x87\x50\xe2\xf6\xfb\xfd\xf1\x99\x99\x19\x21\x10\x08\x40\x28\x14\x02\x8e\xe3\x96\x8c\xab\x50\x28\xb0\xc1\x60\x00\x9b\xcd\x06\xd5\xd5\xd5\xb8\xba\xba\x5a\x2d\x67\xe4\x76\x85\x80\x3b\x3b\x3c\xda\x3f\xdb\xec\xd6\x3d\xc7\x8a\x58\x99\x95\x2d\x25\xef\x6c\x08\xfe\xcb\xa4\x91\x7b\xe3\xdd\x77\xdf\x0d\xfb\x7c\xbe\x27\xb2\xe3\x15\xb6\x54\x80\xae\xae\x2e\x7c\xa0\x61\xcb\xce\x97\xfb\xed\xef\xb0\x22\x32\x4a\x7c\x48\x61\x04\xbf\x36\xe3\xed\x76\x86\x7e\xe0\xd7\x66\x4e\x27\x53\x49\xd7\xbd\x7b\xf7\x52\x63\x63\x63\x90\x5b\xcd\x55\x83\x5c\x2e\xc7\x4d\x4d\x4d\xd0\xde\xde\xce\x9a\xcd\x66\xbb\x26\x8d\x9f\xdb\xf3\xd0\xf4\x85\x96\x80\xaa\xe3\x6a\x5d\xf4\x7f\xaf\xd5\x45\xbf\xd8\x77\xb5\xcf\x3d\x38\x38\xf8\xc4\x9b\xd6\x72\x27\x2d\xdc\xda\xda\x0a\x87\xbb\xf6\x3a\x3f\x75\xbb\xe2\x82\x96\x67\x6a\xf2\xb6\x44\x25\xbb\xca\x9d\x9a\xf8\xc5\xde\x86\xf0\x37\x79\x22\xdc\xec\xef\xef\x8f\xf7\xf7\xf7\xc3\x93\xd8\x56\x11\x90\xe6\xe6\x66\xdc\xd5\xd5\xa5\x54\xab\xd4\xce\xba\x05\xe5\x91\x69\x53\xea\xf4\xf8\xc4\xc3\x91\xee\xee\xee\x95\x98\x2d\xa5\xd2\x05\x28\xbb\xc2\x46\xa3\x11\x7f\xf2\xa5\x97\xf5\xaf\x0e\x55\x9e\xa9\x89\x28\x77\x02\x48\xfd\x25\x05\x11\x01\xb9\xd8\xb2\x70\xe2\xbe\x23\xf1\x5d\x7f\xc0\x3f\x7e\xe9\xd2\x25\x21\x12\x89\x48\x8f\x7d\xc5\x47\xbc\x52\xff\x4b\x1d\x65\x0b\x6d\x2c\xcb\xc2\xf6\xed\xdb\xb1\xd3\xe9\x64\xbd\x5e\x2f\xdf\xdd\xdd\x4d\x78\x9e\x5f\xc2\x94\xcd\x66\x83\x4d\x9b\x36\x61\x93\xc9\xc4\x24\x93\x49\x32\x36\x36\x26\x8c\x8e\x8e\x02\xa5\xb4\xe4\x51\xb3\x2c\xc3\xc7\x8f\x1f\x67\x0f\x27\x1b\x5f\xdf\x31\x61\xfc\xda\xe2\xbe\x99\x65\x58\xc4\x94\x9c\x6b\x9b\xff\xf7\x31\x1b\xf7\xdd\xb1\xb1\x31\xef\x07\x1f\x7c\xf0\x91\x97\xf4\x49\xa0\xa6\xa6\x06\xbf\xf4\xdc\x0b\x8e\x03\x0f\xad\xdf\xab\x0f\x29\x9f\x0d\xab\x04\xd7\xa5\x96\x85\x2f\x5f\x9c\x1d\xe8\xed\xe9\xe9\x29\x49\x13\x2e\xf5\xac\x5b\xb7\x0e\xb7\x68\x2a\x37\x6e\x9b\xd2\x7f\x09\x21\xc8\x72\x89\xb2\x1b\x32\x45\x14\xde\x6f\x5e\x38\xf1\xc0\xc6\x7d\x77\x70\x70\xd0\xfd\xc1\x07\x1f\x90\x72\xe3\xfc\xae\x9f\xdd\xbb\x77\xb3\xfb\x26\xac\x6f\xb4\x04\xd5\x7f\x22\x27\xd8\x6e\x4b\xb0\xdb\x8e\xdc\xb7\x9e\xdc\xd0\xbc\xd6\x61\xb7\xdb\x4b\xe2\x48\x97\x9c\x00\x00\x91\xcb\xe5\xd0\xd9\xd9\xa9\xdc\x39\x61\xf8\x86\x5c\x44\x6a\xa0\x14\x0a\x0f\x50\x18\xac\x4c\x5c\x1c\xac\x4c\x7c\x7b\x78\x64\xc4\x7d\xf5\xea\x55\x28\xc2\x2f\x2e\xc9\x32\xed\x1f\x09\x2c\x16\x0b\x68\x35\x5a\x63\x4d\x58\xb1\x1b\x00\x0a\x34\xaa\x32\xd8\x6e\x8f\xb3\x5d\x55\x55\x55\x25\xf1\x1e\xb1\xa1\xf5\xeb\xd7\x43\x1d\xaf\xdb\xd1\x34\xaf\x7a\x9e\xa2\xac\xff\xcb\x3f\x21\xb5\xe0\xeb\x69\x0a\x7f\xc3\x37\xe7\x73\x5d\xbe\x7c\xf9\x71\x98\x59\x4e\x18\xc5\xcf\xaa\xfa\x51\x4a\x01\x00\x48\x58\x9d\xf1\x03\x00\xe4\x69\x25\x08\x84\xa8\x52\x08\x61\x8c\x4b\xe2\x3f\xb2\x9b\x6d\xd8\xb0\x41\xb9\xc5\xad\xff\x02\x02\x84\x81\xe6\x36\xa9\xdc\x51\xf0\x62\xf3\xc2\x1b\x9c\x98\xbe\xdd\xdd\xdd\xbd\x92\xcd\x7e\x94\x55\x5c\x95\x26\x84\x42\x21\x92\xe0\x12\xd1\x4b\xcd\xe1\x37\xa2\x0a\x21\x0c\x00\x20\x22\x10\x7a\x9a\xc2\x3f\x89\x29\xc5\x7b\x6e\xb7\xbb\x24\x1e\x03\x92\x2d\xbc\xb1\xb1\x11\xac\x58\xdb\xdc\x14\x54\x1d\xa4\x00\x00\x08\x80\x02\x02\x40\x00\x93\xe6\xd4\x5d\xb7\x31\xfd\xf3\xeb\x57\xae\x73\x89\x44\x02\xa4\x78\xbf\x2f\x78\xff\xfd\xf7\xf9\x43\x87\x0e\xfd\xe2\xcd\xad\xb3\x2e\x73\x52\xbe\x31\xce\x8a\xde\xa4\x9c\x7c\x38\x34\x34\x14\xf2\xfb\xfd\x25\x69\xcc\x1f\x2d\x31\x40\x36\x30\x68\xf5\xab\x5e\x91\xd1\xec\xb1\x4e\x1a\xa7\xde\xac\x8d\xfe\x38\x1c\x09\x7b\x87\x87\x87\x41\x8a\x23\x79\x7f\xdc\x52\x0a\x2b\xd5\x95\xc4\xf5\x78\x3c\x70\xe6\xcc\x99\x68\x47\x47\xc7\xfb\x26\x93\xa9\x37\x19\x4b\x92\xd1\xd1\x51\x61\x6c\x6c\xac\x2c\x2e\x23\xa9\x84\xaa\xaa\x2a\x6d\xd3\x80\xfa\x79\x0a\x34\x1b\xbd\xa0\xec\x5e\x10\xd0\x66\x5c\x5e\x3d\x7f\x7e\xe0\xf2\x00\x9f\xf3\x6f\x05\x9c\xa2\xf7\xc7\x2d\x01\x1e\xdd\x47\xca\x85\xa5\x04\x00\x40\x26\x93\xc1\x86\x0d\x1b\xc0\xe1\x70\x30\x00\x40\x66\x66\x66\xc8\x85\x0b\x17\x04\x00\x10\x10\x42\xb8\xbd\xbd\x1d\x5e\x3e\x7e\x5c\xc9\x32\x2c\x0e\x45\x16\xf8\x3b\x77\xee\x40\x20\x10\x28\xcc\x9b\x67\x18\xea\xea\xea\xb0\x9a\x30\x55\x8e\x18\xbb\x31\x1b\xc4\x53\xc8\xdb\xf0\xa8\x9d\xbb\xc8\x67\x78\xef\xf8\xf8\x38\x3c\x29\x58\x2c\x16\x5c\x57\x57\x07\x46\xa3\x11\x03\x00\x44\xa3\x51\x32\x3d\x3d\x0d\x7e\xbf\xbf\xd8\x56\xcb\xda\xb0\x42\xa1\xc0\xc7\x8e\x1e\x65\x76\xa6\xd7\xfc\xe9\x46\xaf\xf6\x2f\x08\xa2\xc2\x2d\x67\xeb\xf7\x2f\x37\x36\x9e\x3e\x73\xe6\x8c\xb0\x77\xef\x5e\xbc\xcf\xdc\x7e\x70\xcf\xb8\xf1\x5b\xba\xb4\xac\xc6\x65\x4e\x9d\x3f\xff\x62\xdd\x17\x4f\x5f\xf8\xb5\xdf\xe3\xf1\x10\x80\xac\x4a\x03\x00\x60\x87\xc3\x01\x15\x31\x45\xa7\x8c\x22\x76\xf1\xfc\x95\x3d\x46\xba\x2c\xc9\xdf\x4e\x4f\x4f\xa7\x72\x47\xc6\x72\xb6\x5b\xf2\x48\xa7\x56\xab\x61\xd7\xae\x5d\xd8\x69\xae\x69\x33\x7b\x85\x57\x95\x61\xb1\x1d\x01\xe0\x94\xb6\x66\x64\xe1\xb9\xa7\x4e\x3e\x8c\xcf\x0d\xf4\xf4\xf4\x90\x68\x34\xba\xa2\xd0\x3a\x3b\x3b\xf1\x36\xa1\xfa\xb5\xfd\x63\xa6\x1f\xe7\x22\x6a\x38\x3c\xc4\xee\xe0\x3a\xc4\x17\x99\xe3\xc7\xdf\xab\xd3\x57\x34\xbe\x78\xdd\xf2\x36\x4b\x90\x1e\x00\x41\x4b\x50\xfd\x5a\x9a\x31\xf3\xc1\x9d\x3b\xff\xfa\xe4\xc9\x93\xbc\x94\x78\x62\xb5\x5a\x19\x7b\x5c\xfe\x14\x64\xdd\x2d\x00\xcd\x86\x7b\x49\x39\x89\x86\xd4\xc2\x40\x4e\x42\xcb\xa9\xf3\x23\x02\xd0\x6a\xb5\x70\xec\xd8\x31\x76\x3b\xef\x78\xbd\xed\x0a\x77\xab\x62\x82\xff\x9a\x21\x20\xbe\xa4\x0f\x88\xc7\xec\x93\x99\x7f\x74\x5e\xe1\xae\x6d\x0d\x9b\xbf\x73\xfc\x13\x2f\xa9\x4d\x26\xd3\x72\xe3\x12\x00\x80\xc6\xc6\x46\xb6\x39\xa8\x7e\x15\x15\x7c\x25\x00\x06\xc4\x34\x05\x55\xaf\x5a\xad\x56\xd6\x11\x63\x77\xb2\x22\xd6\xe7\xdb\x80\x02\xac\x09\x2b\x9f\x35\xe8\xf5\x5a\x8d\x46\x03\x00\x8b\x2b\x0c\x26\x93\x89\x31\x4d\xcb\x9b\x8b\x13\x15\xf3\x9a\x8c\x8b\x02\x0d\xf9\x7c\xbe\x62\x42\x96\xb3\x61\x00\x00\xd8\xb7\x6f\x1f\xd3\x1c\x50\xfc\x43\xc5\x38\xff\xcf\xf9\x30\x7e\x69\x02\x05\x31\xd6\xa9\xcc\xdf\x51\x2c\x87\xfd\xfb\xf7\x7f\xe5\xd4\xa9\x53\xa9\xfc\x18\x4e\xa7\x13\x3b\x1c\x0e\x4c\x29\x05\xb7\xdb\x0d\x93\x93\x93\x84\x61\x18\x9c\x94\x8b\x1c\x45\x4b\x03\xb6\x04\x4b\x38\x00\xc0\x21\xb5\xe0\x23\x88\x12\x04\xa8\xa0\x69\xf3\xea\x8c\x17\x10\x82\xbc\xdf\x2e\x30\xac\x56\xab\x19\x5d\x5a\x56\x55\x18\x26\x57\x84\x95\xc2\xb4\x48\x48\x4a\x12\x18\xac\x0a\x1a\x1a\x1a\x70\xb5\xc1\xd6\xec\xb8\x9b\xf8\xca\x92\x6c\xd1\x92\xf0\x32\xbb\x49\xd8\x5c\x99\xbf\x75\xd4\xe8\x4f\xb6\xb5\xb5\x5d\x1f\x19\x19\x21\xc7\x8e\x1d\x63\x76\x30\xf5\x87\x37\x7a\xb5\x9f\x13\x31\x08\x77\x3a\x63\x3f\xfc\xb0\xf5\x41\xcf\xfc\xfc\x7c\xea\xd6\x1a\xe5\x4f\x9b\x82\xaa\xfd\xda\xb4\xcc\x08\x08\x20\xa2\x14\xfc\xc3\x15\x89\x5f\xc6\xe3\x71\x1e\xe9\x74\x77\x3f\x6c\x88\xfc\xec\x69\x97\xe1\x35\x4c\x01\x47\x95\x62\xe8\x72\x53\xf8\x07\xa1\x50\x28\x9e\x8f\xc5\x19\x00\x00\xad\x56\x8b\x01\x80\x55\x66\xb0\x11\x20\x97\xa8\x41\xd9\x20\x90\x63\xc5\x60\x22\x91\xe0\xe1\x31\xfd\x6e\x43\x43\x03\x36\xf8\x85\x97\x90\x08\xea\x25\xb9\x2e\x89\x30\x0b\xef\x14\x18\xa3\x4f\x78\xa5\xb9\xb9\xf9\xb6\x5e\xaf\x17\xb6\xb3\xf5\x47\x8e\x0c\x5a\x4f\x21\x00\x06\x01\x40\x7d\x48\x79\x24\xd3\x41\x5f\xb8\x11\x1e\xef\x09\xc9\x52\x17\x7f\xd2\x39\xf7\xd9\xc6\x79\xe5\x51\x82\x40\x98\xb0\x24\xdf\x49\x90\xf4\xf5\xb3\x67\xcf\x92\xad\x5b\xb7\xfa\xa1\xb1\xe9\xab\xc3\x15\x89\xdf\x68\x78\x99\x63\x5e\x93\xb9\x9d\x12\x33\x37\xaf\x74\x5f\x29\xd0\x5f\x58\x61\x4a\x29\x66\x08\x62\x17\x73\xc9\x59\xbd\xc9\xc8\x68\x9c\x10\xb2\x92\x3b\x79\x24\x0c\x33\x9b\xcd\x8c\x62\x8e\xac\xcd\x67\x80\x16\x15\x1a\x65\x83\x10\x4a\x01\xe5\x1a\x29\xa5\xa0\x48\x90\x36\x7b\xbd\x9d\xb1\x58\x2c\xcc\xda\x09\xf5\xe7\x10\x05\x06\x72\x87\x1e\x4c\x40\xd9\xe6\x57\x7f\x76\x50\xaf\xfc\xf0\xec\xd9\xb3\xf1\x1d\x3b\x76\x9c\x4b\x55\xd8\x7a\x10\x42\x30\x3b\x3b\xcb\xf5\xf5\xf5\x09\xd1\x68\x94\x5c\xbc\x78\x11\xbc\x5e\xef\xb4\xd3\xe9\xfc\xb9\x5a\xad\xc6\x01\x57\x40\xb8\x73\xe7\x0e\x99\x9f\x9f\x2f\xb8\x3c\x46\x4a\x64\x5e\xe0\x08\x00\x0a\x8e\x78\x11\xca\xb9\x8f\x92\x6d\x18\xe3\xdc\x49\xad\x08\x50\x2e\xc5\x87\xa4\x73\x65\xe5\x2b\x93\xc9\xb0\x4c\x26\x83\x0c\xa6\x4b\xa7\xce\x0a\x1e\x34\x1a\x0d\xf6\xfb\xfd\xe4\xf4\xe9\xd3\x7c\x45\x45\x85\x90\xc9\x64\x20\x14\x0a\x15\xe6\xa6\x94\x92\xe1\xe1\x61\x08\x87\xc3\x82\x5c\x2e\x87\x85\x85\x05\x88\xc5\x62\x4b\xe8\x94\x1e\x2d\x89\x20\xa3\x7c\x71\xca\x95\x15\xb1\x1a\x16\xc3\xab\x55\x43\x3a\x9d\x26\x9c\x5e\x33\x0a\x90\x81\xbc\x0b\x29\xfe\x5d\x9c\x09\x41\x52\x2f\x1b\x8b\xc5\x62\x42\x3a\x9d\x26\x77\x6b\xe4\xa7\x9c\x01\xf5\x41\x85\x88\x94\x00\x00\x9c\x5c\x8c\x0e\x56\xc6\x7f\x19\xf0\x05\x84\x96\x96\x16\xfc\xcc\xb6\xa7\xd5\x4d\xbc\x61\x73\x06\x53\xee\x01\x04\xef\x7d\x70\xb9\x87\xf7\x7a\xbd\x60\xb1\x58\xe0\xe0\xfe\x03\xec\xc6\x8c\xfd\x39\x5d\x9a\xa9\x9a\x34\x71\xef\x5f\x73\xdd\x73\xf5\xf5\xf5\x91\x7c\xd2\x8f\x01\x00\x22\x8a\x22\x46\x08\x09\x49\x39\x89\x16\xaf\x89\x26\x8d\xad\x2c\xcb\x96\xbd\x38\x93\x4a\x4f\xda\xe6\x76\xbb\x85\xca\xa7\xec\xe7\x05\x16\xfd\xbd\x9c\xa7\x4b\x73\x61\x45\x39\x31\x51\x06\xa9\x70\x25\x73\xd6\xfd\xd0\x2d\x4c\x4c\x4c\x10\xcb\xe1\xc3\xbf\xfe\xe9\x16\xdf\xe7\xdb\xfc\x9a\xe3\x04\x51\x61\xb8\x82\x3b\x15\x65\xf8\x9e\x70\x38\x4c\x5e\x7c\x7a\x5f\xfd\x2b\x03\xf6\x77\x4c\x49\xa6\x9d\x02\xc0\x8c\xd1\x70\x4e\x7f\x50\xf3\x99\x33\xe7\x7f\x13\xde\xbf\x6f\x9f\xf2\xe5\xc9\x9a\x1f\xb7\x04\x54\xaf\x01\x00\xec\xc2\x86\xb8\xb1\x5d\xfe\xaa\xb8\x4d\x3c\xd7\xd7\xd7\x07\x90\x27\x30\x99\x4c\x82\x28\x8a\x42\x4c\x21\x64\x43\xad\xdc\x7d\x0f\x00\x02\x63\x52\x5e\xab\x54\x2a\x59\xb9\x5c\x2e\x65\x6c\xb9\x30\x90\x00\x00\x8c\x8e\x8e\x42\x06\x91\x31\x77\xbb\xe2\x3f\x28\x02\x42\x81\x02\xa5\xd9\x8d\x30\x5b\xd2\x82\xcb\xf7\xac\x53\xfe\x37\x2f\x87\xdb\xf7\xef\xdf\x27\x5e\xaf\x17\xde\x7b\xef\xbd\xb0\x57\x8c\xfc\xec\x7a\x5d\xf4\xaf\x6e\xac\x89\x7e\xde\x93\x9c\x3f\x7d\xee\xdc\xb9\x68\x75\x75\x35\xd3\xe9\xd6\x7f\xd9\x98\x63\x16\x00\x60\x4d\x58\xf1\x7c\x7b\x50\xff\xe7\x87\x0f\x1f\xc6\x75\x19\xc3\xce\x3c\xb3\x00\x08\xe4\x04\x6b\x77\x4d\x18\xbf\xb9\x7e\xfd\x7a\x2d\xcb\xb2\x00\x12\xb7\x44\xe2\xf1\x38\x1f\x52\x1b\x27\x16\x93\xe9\x59\xb0\x26\xe4\x8d\x0c\x60\xbd\xd5\x6a\x8d\xce\xce\xce\x16\x33\x57\x0e\x48\x3c\x1e\x87\x9b\x37\x6f\x46\xb7\x6d\xdb\xf6\xc3\xc9\xcd\x2a\xa6\xe6\x7e\xea\x6f\xd8\x14\x59\x92\xe2\xcd\xb0\x88\xf3\xac\x55\x9c\x08\x57\x32\xdf\xeb\xbf\x7b\x37\xbc\xb0\xb0\x40\x00\x00\x5c\x2e\x17\xb8\x5c\xae\x14\x00\xa4\xa4\xfd\xcd\x66\x33\xab\xf3\xcb\x9a\x51\x91\xaa\xe8\x52\xcc\x5a\x84\x10\xab\xca\xe0\x5a\xc8\xa5\x19\xf3\xa0\xc8\x60\x3b\x46\x58\x6b\x34\x1a\xe3\x7e\xbf\x7f\x31\x3c\x0c\x85\x42\x42\xc0\x68\xbf\xbf\xb8\x55\x65\xd1\x58\x11\xe9\xed\x71\x76\xa3\xc3\xe1\x70\xcf\xce\xce\x3e\x96\x1d\xf7\xf7\xf7\x03\xcb\xb2\xde\x8e\x8e\x8e\xef\xc4\x76\x6b\x2e\xe9\x82\xe2\x21\x55\x4c\x74\x02\x05\x48\xe9\xf0\x44\xcc\xca\x5c\x10\x65\x70\xfd\xde\xbd\x7b\xfe\x1b\x37\x6e\x00\xac\xb0\x4f\x24\x93\x49\x61\xca\x9c\xba\xdd\x1c\x54\x3d\x97\x5f\x16\x02\x40\x1e\x5a\x93\x57\x10\x42\x82\xc7\x90\xbe\x1b\x53\x08\x41\x5d\x9a\xb1\x66\x31\x28\xdc\xaf\x4c\x5c\x24\x94\x70\xe1\x70\x18\x00\x00\xcb\xf2\xa2\xd2\xe9\x74\xd4\x52\x5f\x89\x36\xbb\x75\x9f\x45\x14\xc9\x24\xf7\x09\xc0\xb1\x24\xec\xb3\x89\x17\x46\x46\x46\x04\x28\xde\x71\xca\x03\x01\x00\xe4\xf5\x7a\xc1\xe3\xf1\x24\x55\x1a\xf5\xa4\xdc\xa1\xbf\x92\xb0\x30\xbf\x89\x9b\x65\xbf\x4a\x6a\xd0\x6f\xbd\x73\xbe\x91\x2b\x57\xae\xc4\xee\xdf\xbf\x4f\x72\xe3\x4a\x4b\xa9\x9b\x20\x00\x80\x94\x4a\xa5\x28\x6b\xb6\x4c\x13\x44\xab\xf4\x29\x59\x45\x5c\x21\x46\x7a\x9a\x22\x6f\x4e\x99\x93\x27\x6e\xdc\xbc\x19\x35\x57\x58\x23\x53\x76\x7e\x46\x21\xe0\x6a\x9e\x21\x99\xfe\xea\xc4\xf9\x5b\x6b\x62\xff\x3a\xf6\x60\xcc\x33\x31\x31\x21\x82\xe4\x9e\x04\x6c\x36\x1b\x3e\xfe\xd2\x71\xc7\x27\xfb\x6d\xbf\x5d\x13\x51\xb4\x83\x64\xc6\x88\x52\x9c\x3e\xb1\x75\x76\xeb\xc9\x5f\xfc\x3c\x18\x0e\x87\xcb\xa5\x62\xa5\x75\x65\xd3\xb4\x06\x83\x01\x03\x00\x3c\xc6\xc9\xad\x80\x2b\x93\xc9\xf0\x81\x03\x07\x70\x6d\x6d\xad\x03\x28\xd4\x00\x80\x40\x81\x4e\xdf\xbb\x77\x2f\xd8\xd7\xd7\x47\x6a\x6a\x6a\xf0\xde\xbd\x7b\x95\x2a\x95\xca\x01\xd9\x2b\x9c\xe0\xd4\xd4\x54\xb0\xbb\xbb\x9b\x08\x82\x90\x1d\x23\x3f\x2a\xc7\x71\x74\x7d\xfb\x7a\x51\x8d\xd8\x96\x86\x79\x65\xe1\xfa\x13\x01\x80\x42\xc4\x06\xbf\x2e\x33\x14\xd6\x88\xfd\xd3\xd3\xd3\x25\x6f\x15\x8b\xea\x8a\xdb\x0a\xff\xd3\xe9\x34\x4d\xa7\xd3\x8f\x73\xf3\x57\xe8\x4b\x29\xa5\xe3\xe3\xe3\x24\x10\x08\xc4\xe3\x89\xb8\xc7\xe3\xf5\xcc\x5e\xbd\x7a\x95\xcb\x05\xfc\x10\x8d\x46\xe9\xc0\xc0\x40\x66\x61\x61\x21\xe2\xf3\xf9\x02\xb7\x6f\xdf\x4e\xf4\xf7\xf7\x8b\x84\x90\xc2\x18\xb2\x9c\x04\x11\x00\x20\x83\xc1\x40\x14\x35\xc6\xf4\x53\x1e\xdd\xa7\x11\x05\xbc\xa8\x51\x08\x8c\x29\x59\xad\x77\x1d\x7b\xf2\xc1\x83\x07\x3c\xcf\xf3\x92\xe4\xed\xff\xff\x13\x89\x44\xc0\xe3\xf1\xc0\xec\xec\x2c\x38\x9d\x4e\x38\x76\xe0\x05\xc3\xd1\xb6\x9d\x1d\x9b\x37\x6f\xc6\x1a\xbb\x31\x31\x34\x34\x44\xbd\x5e\x2f\xe4\x52\x51\x4b\x70\xf3\x36\x4c\x01\x80\x26\x93\x49\x68\x5c\xe7\x4c\x58\x92\xf2\x1d\xb6\x04\x5b\x9b\xed\x9d\xdd\x1e\x34\xbc\xac\x32\xa2\x21\x53\xa9\x0a\xf6\x4e\xde\x1e\x8a\x56\x82\x14\xd5\x95\xfb\x5f\x5c\x9f\x6f\xa3\x92\x76\x2a\x79\xca\xe1\xc0\xa6\x4d\x9b\xe0\xe8\xda\x67\x76\x7c\xba\xbf\xaa\x7b\x93\x47\xf7\xa5\xa7\x66\x75\x9f\xd7\x59\x8c\x49\xbc\xd6\x7a\x63\x78\x78\x58\x28\x85\x2b\x93\x0e\x90\x48\x24\x68\x7d\x7d\x3d\x9f\x31\xb3\xa4\xdd\xa7\xf9\xc4\x52\x07\x85\xa0\x2a\xaa\xe8\xf4\xb5\xb1\xbf\x0c\x44\x43\x79\x17\x22\x25\xaa\x98\xc8\x62\x06\xa0\xa8\x94\x3e\x50\xd4\x0e\x25\xea\x96\xe0\xc8\xe5\x72\xf4\xfc\xf3\xcf\xab\x8f\x0c\xdb\x7e\x6a\xe1\xe4\x6b\xb3\xf1\x0e\x62\xd6\x44\x14\xcf\x4e\xd7\xd3\x77\xe6\x12\x0b\xfe\xbc\x9b\x93\xe2\x3d\xe2\x06\xee\xdc\xb9\x23\x04\xb4\x99\xf7\x1e\x5a\x93\xd7\x0b\xfd\x50\xb6\x54\xf3\xd8\xb1\x7f\xcc\xfc\xc6\x9e\xdd\xbb\xb5\xf9\x54\x4d\x0e\x56\x9d\xa6\xf9\xb8\xc0\x64\x32\x81\x0c\xcb\xf4\x86\x24\xd3\x08\x92\x63\x0c\xa6\xc0\xea\xd2\x4c\x9b\xc5\x62\x29\x89\x27\xbd\x86\x00\x00\xc0\x93\x93\x93\x30\x1f\x9a\xf7\xf5\x36\x46\xbe\x27\xc8\x28\x8f\xb2\x91\x22\x20\x94\x8d\x72\x1a\xe7\x95\x87\xf7\x78\x6c\xaf\x1f\x3a\x74\x88\xd5\x68\x34\xbf\x97\x2b\x16\x00\xc0\x1c\xc7\x01\x20\xe0\xa7\xcc\xa9\x81\x6c\x50\x95\xa5\x8f\x63\x49\x78\x4e\xc7\x8f\x71\x1c\x57\xcc\x1f\x06\x89\x1f\x96\xaa\x0d\x8a\x44\x22\xa4\x6e\x7d\xf3\x1c\x00\xd4\xd6\x2e\x28\x37\x50\x94\x4d\xf7\xe4\x75\xb4\x2a\xaa\xe8\xc2\x6a\x05\xc7\x6e\x70\xdc\x70\xb9\x5c\x62\x26\x93\x01\x78\xd4\x46\x8b\x55\xbe\xf8\x7f\x31\x4e\x29\x9b\x2d\xd7\x0e\x3c\xcf\x93\xaa\xaa\x2a\x21\xbc\x46\x3e\xa5\x4d\x33\x6b\x35\xbc\xcc\x10\xd0\x66\xbc\xe7\xdb\xe6\xbf\xb5\xc0\xa4\x2f\xf6\xf6\xf6\xf2\x12\xba\x0a\xb8\x4b\x6c\x38\xcf\x74\x2c\x16\xa3\x3a\x9d\x2e\x9d\x69\xd0\x4d\xd4\x84\x95\xfb\x74\x69\xc6\x9c\xdd\xe3\x50\x2e\x86\x45\xa8\x6e\x41\xb1\x5f\xa1\x50\x82\x72\xcb\x9a\xab\xde\x59\xaf\xc0\x71\x5c\xb1\xe0\x96\x8c\x59\xe2\xff\x4a\x7d\x0b\x65\x53\x53\x13\x26\x84\xa0\x9c\x3b\x2b\xe0\x7a\x3c\x1e\x5a\xd3\x50\xeb\x9d\xa9\x26\x17\x6f\xad\x89\xfd\xea\xbe\x23\xf1\x3f\x11\x19\x7f\xa9\xa7\xa7\x27\x3e\x37\x37\x47\x4a\x8d\xbd\xc4\x2d\x49\x1f\xaf\xd7\x4b\x1b\x9b\x9b\x42\x73\x15\x74\xb6\xd5\xaf\x3e\xc8\x12\xac\x58\x74\x52\x59\x15\xaa\x89\x28\x76\x3b\x32\xea\x16\xe5\xf6\xba\xcb\x02\xa6\xdc\xdc\xdc\xdc\xc7\xea\x7e\xaa\xaa\xaa\xd0\xd1\x23\x47\x15\xaf\xe8\xb7\xbc\x5a\xb9\xb9\x65\xd6\x1b\x9c\x4b\xc6\x62\xb1\x42\x7b\x26\x93\x81\x91\x91\x11\x31\x16\x8b\x85\x62\xb1\xd8\xf4\xd4\xd4\xd4\x5c\x6f\x6f\x2f\x9f\xcb\xbf\x95\x1c\xb3\x70\xb4\x84\x22\xd7\x20\x8a\x22\x0a\x04\x02\x62\xed\xda\xa6\x19\x9f\x31\xc3\xb5\xfa\xd5\x7b\x30\x85\xc2\x91\x33\x3f\xa2\x85\x93\xaf\x6f\x0d\x6a\x5f\xd6\x34\xd9\x27\xcd\xeb\xeb\x5c\xf1\x44\x5c\xcc\xa5\x5c\x57\x72\x53\x50\xae\xcd\x64\x32\xc1\xae\x5d\xbb\xf0\xc1\x8d\x3b\x5a\x8e\x4d\x54\xfe\xd7\x26\x8f\xee\x9f\x8c\x69\xb6\x21\xbd\xd9\xfa\xee\xf8\xc3\x71\x21\xa7\xaa\xd9\x25\xa3\x94\xcc\xcf\xcf\x23\xb7\xdb\x0d\x3e\x9f\x0f\x78\x9e\x5f\x76\xde\xbc\x4a\x4b\x23\xd4\x42\xa4\x9a\x48\x24\x48\x22\x91\xe0\x2d\xad\x35\xe3\x01\x6d\x86\x36\x07\x55\x5d\x98\x2e\x66\x04\xf3\xa0\x10\xb0\xa9\xd5\xaf\xfe\x54\x23\x6f\xd8\x6c\x6b\xaf\x9b\x71\xac\x6f\xf0\x31\x72\x39\x49\x24\x12\x52\x02\x4a\xf9\xd6\x82\x7a\x32\x0c\x83\x1a\x1a\x1a\xa0\xab\xab\x0b\xef\xdf\xf4\xcc\x9a\xe7\xa3\xf5\x5f\x3d\x30\x6a\xfe\x4f\x0b\xc7\xb6\x43\x56\xb0\xeb\x78\x35\x0a\xd1\x26\xe3\xcd\xd1\xd1\x51\x01\x1e\x35\x8b\x95\xdc\x61\x2e\xf9\xbc\x0a\xd8\xbc\x79\x33\xee\xec\xec\x74\xd4\x84\x15\x7f\xf9\xe2\x7d\xcb\x97\x55\x02\x56\x2f\xca\xa9\x20\xeb\xc2\xaf\x5f\x9b\xb9\x3e\x62\x4f\xbc\x3d\x69\x49\xfd\x7a\x5a\x08\x4d\xfb\xfd\x7e\x61\x61\x61\x81\x24\x12\x89\xc2\xa7\x83\x32\x99\x0c\x34\x1a\x0d\xe8\xf5\x7a\xb0\x5a\xad\x4c\x8d\xd1\x6e\xac\x8b\xaa\x77\xb6\xfa\xd5\xaf\x36\xcc\xab\x8e\x30\x54\x92\xfc\xcb\xf1\x90\xc1\x84\x3b\xd5\xe1\x7f\xe1\xdc\x83\x6b\xbd\x37\x6f\xde\x7c\x22\x97\x87\x60\x95\xa9\x9b\x8d\x1b\x37\xc2\xf6\xed\xdb\xad\xa6\xa4\xfc\xe5\x17\x87\x2c\xaf\x5b\x13\x6c\x95\x54\x9c\x92\x04\x86\x44\x04\x94\xc4\x14\xe2\xb8\x5f\xc7\x0f\x2c\xa8\x84\xf1\x38\x2b\x7a\x78\x86\x44\x29\x02\xc2\x10\xa4\x54\xf1\xd8\x6e\x48\x31\x0d\xb6\x38\xdb\x6e\x49\xc8\xdb\x65\x14\xb4\x00\xa8\xec\x78\x00\x00\x6e\x43\xaa\xf7\xe4\x06\xdf\x0b\x27\x4e\x9c\xe0\x96\xf9\x56\x6b\x59\x86\x01\x96\x46\x37\x65\x23\x9e\xc6\xc6\x46\xd8\xb3\x67\x8f\x56\x85\xd9\xae\x67\x26\x0d\x5f\x79\xca\xa3\x7d\x76\xc5\x8f\x49\x57\x98\x9c\xae\xf6\x1d\x51\x78\x60\x4b\xde\xbd\xd4\xbc\xf0\xf5\x90\x98\x38\xff\xd6\x5b\x6f\xa5\x4a\xd0\x5a\xcc\x07\x14\xb7\x97\xfa\xd6\xb2\x78\xe1\x70\xae\xa4\x0b\x0b\x0b\x74\x6a\x6a\x2a\x63\xaf\xac\x98\xf6\x57\xe3\xde\x69\x53\x2a\x68\xe5\xe4\x2d\x5a\x5e\xa6\x07\x04\x80\x96\x79\x4a\xb5\xc3\x2a\xde\x29\x02\x08\xab\x85\xe0\x85\xd6\xd0\x8f\xae\xd7\xc6\xbe\x1e\x4e\xc5\xae\x9f\x3f\x7f\x9e\x2f\xe3\x06\x8b\x8f\xa9\xd2\xbd\x03\x60\xb5\x36\x5c\x0a\xb6\x6c\xd9\x82\x3b\x3a\x3a\xf4\x0c\x96\xad\x6b\x0a\xaa\x3e\xd3\x39\xa3\x3b\x56\x11\x63\x6b\xf2\x1f\x89\x2e\x4d\xf2\x66\x2f\xe5\x90\x54\x9c\x8f\x50\x96\xff\x6e\x9a\x16\x28\x0b\xab\x84\xe0\xad\x9a\xd8\xb9\x21\x47\xe2\x4d\x01\xc8\xdd\xd1\xd1\xd1\xf0\xb5\x6b\xd7\x48\x6e\x23\x7c\x22\x58\xb5\x0d\x97\x02\x9d\x4e\x07\x5b\xb7\x6e\xc5\x4d\x4d\x4d\x7a\x04\xc8\xe9\x88\xb1\x07\xd7\xf9\x34\x2f\x34\xcd\xab\xda\xd5\x3c\xd6\x2e\x95\xa7\xf4\xa3\xb6\x32\x72\x46\x14\xd2\x0c\x4d\xb9\xcc\xc9\x91\xe1\x0a\xee\xbd\x69\x53\xea\x2c\x01\x3a\xe4\x76\xbb\x43\x37\x6e\xdc\x20\xc1\x60\xf0\x49\x49\x5d\x9c\x62\x99\xb6\xe2\xe0\xa0\xec\x2d\xbe\xc9\x64\x82\xf6\xf6\x76\xdc\xdc\xdc\xac\x64\x18\xc6\x2e\xa3\xa8\xd9\x9a\x90\x77\x56\x47\x14\x5b\xec\x31\xb6\xd1\xcc\xc9\x1d\xba\xb4\x4c\xcf\x0a\x98\xc5\x34\x7b\xdb\x41\x11\x90\x8c\x8c\xf0\x71\x85\x18\x5d\x50\x09\x41\xbf\x96\x9f\xf0\x1a\xf8\x01\x9f\x2e\x7d\x4d\xc0\x74\x8c\x10\xe2\x75\xb9\x5c\xdc\xe0\xe0\x20\xc9\xdd\x21\x2f\x97\x1e\xce\xd3\xbb\x5c\x06\x66\x55\x0c\x97\x4c\xd3\x94\xeb\xcb\x30\x0c\xae\xab\xab\x83\xfa\xfa\x7a\x5c\x55\x55\xc5\x2a\x95\x4a\x2d\x00\xe8\x11\x20\x23\x00\x18\x31\x05\xb5\x8c\x20\x35\x02\x00\x11\x53\x5e\x44\x10\x07\x80\x28\x05\x1a\x06\x80\x70\x26\x93\x89\xfb\x7c\xbe\xd4\xe4\xe4\x24\x71\xb9\x5c\x90\x4e\xa7\x3f\xf6\x68\xeb\xc9\xb7\xd8\x55\x80\xd1\x68\xc4\x16\x8b\x05\xf4\x7a\x3d\xe8\x74\x3a\xcc\x30\x0c\x68\x34\x1a\x8c\x10\x02\x8e\xe3\x88\x20\x08\x10\x8f\xc7\x49\x24\x12\x81\x50\x28\x04\x92\x3b\xa0\xdf\x19\x48\x6d\x78\x39\xb5\xf9\x83\x06\x5c\x54\x16\xd7\x4b\xff\x17\xf7\xfd\x28\xb8\xe5\xe6\xff\x58\x71\xff\x0f\x53\x0e\xb2\x7c\x11\x33\x9d\x6b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x8a\xd5\xc5\x8c\x92\x15\x00\x00") + +func web_uiV2AssetsAppleTouchIcon60x60522fca33a44f77c679561313def843b9PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsAppleTouchIcon60x60522fca33a44f77c679561313def843b9Png, + "web_ui/v2/assets/apple-touch-icon-60x60-522fca33a44f77c679561313def843b9.png", + ) +} + +func web_uiV2AssetsAppleTouchIcon60x60522fca33a44f77c679561313def843b9Png() (*asset, error) { + bytes, err := web_uiV2AssetsAppleTouchIcon60x60522fca33a44f77c679561313def843b9PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-60x60-522fca33a44f77c679561313def843b9.png", size: 5522, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsAppleTouchIcon72x72Da5dd17cb4f094262b19223464fc9541Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x79\x1c\x86\xe3\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x48\x00\x00\x00\x48\x08\x06\x00\x00\x00\x55\xed\xb3\x47\x00\x00\x1c\x40\x49\x44\x41\x54\x78\x9c\xed\x7c\x7b\x6c\x1b\x47\x9a\xe7\x57\xd5\xcd\x66\x93\xe2\x9b\x14\x45\x4a\xa4\x24\x4b\xd6\xc3\x7a\xd9\x52\x64\x2b\xc9\x38\x91\x9d\xd8\x8e\xe3\x38\xd9\x64\x32\x98\xdb\xcb\x2d\xb0\x7b\xbb\x59\x04\xb7\xb7\x87\x5d\xdc\x61\x71\x58\x2c\x16\xb3\x83\x60\xb0\x18\x1c\x82\x99\xbb\x60\x76\x2f\xb8\xc9\xe0\x66\x0f\x8b\x99\x9d\x64\x32\x4e\x72\x33\x4e\x3c\x4e\xe2\xc4\x8e\xfc\x94\x62\xcb\xb2\xac\x97\x25\x59\xa2\x24\x4a\xe2\xfb\xd1\x6c\xf6\xa3\xea\xfe\x10\x49\x91\x14\x29\xd1\x8f\xec\x2d\x0e\xf7\x09\x2d\x75\x57\xff\xfa\xfb\xaa\xaa\xab\xbe\xfa\xd5\x57\xd5\x42\x00\x80\xa1\x50\x48\x26\x8d\x14\xdd\x23\x45\x38\x9c\x97\x86\x8b\x30\xa5\x9e\xbb\x17\x4c\x39\x29\xce\xd3\xd7\x8e\x41\x15\x00\xff\xbf\xc0\xd7\x53\x49\x95\xe8\xfc\x17\x8f\x61\x2b\x78\xe8\x6b\x93\x9a\x9a\x1a\x30\x18\x0c\x98\x61\x18\xa8\xaa\xaa\x02\x00\x80\x44\x22\x01\x84\x10\x48\x26\x93\xe0\xf7\xfb\x09\xc6\x18\x08\x29\xe8\xdd\xdb\x75\xfb\x87\x8e\x61\x61\x6b\xad\xe5\xfb\x96\x72\x8a\xf2\xfd\x49\x39\x1f\x96\xd3\xa5\xd5\x6a\x71\x5d\x5d\x1d\xb8\xdd\x6e\xa8\xae\xae\xc6\x56\xab\x95\xe5\xb1\x86\xd7\xcb\x8c\x45\x27\x63\x07\x2f\x33\x16\x96\x00\x0f\x00\xa0\x60\x2a\x88\x1a\x12\x13\x34\x24\x90\xe2\xd4\x88\xa8\x48\x62\x24\x1a\x55\xfc\x7e\x3f\xf1\xfb\xfd\xb0\xb4\xb4\x04\x92\x24\x95\x2b\xf0\x4e\xbe\xe5\x9e\x31\x3b\xf9\xa0\xfb\x76\x78\x2c\xcb\x42\x63\x63\x23\xb4\xb5\xb5\x61\xb7\xcb\xcd\xd9\xd3\x5c\xbd\x37\xcc\x3f\xe9\x8e\x71\x03\xd5\x09\xae\xc7\x24\x32\x4d\x1a\x82\x4c\x00\xc0\x6e\x64\x63\xe3\x37\x05\xc8\xfe\x56\x64\x86\x46\x62\x5a\x65\x76\xdd\x28\x8f\x2d\x9b\xd2\x17\x7d\x96\xf4\x85\x00\x97\x5e\x58\xf1\xaf\x48\xd3\xd3\xd3\x64\x76\x76\x16\x54\x55\xdd\x21\x7b\x0f\x26\xe8\x61\x2b\x34\x18\x0c\xb8\xab\xab\x0b\xda\xda\xda\xb8\x1a\xb5\xaa\xb1\x7d\x4d\xff\xed\xd6\x75\xfd\x4b\x56\x81\xed\x42\xb4\xc2\x2e\x8d\x10\x00\xa5\x5b\x92\x29\x02\x25\xac\x57\x46\xa7\xaa\x85\xf7\x27\x9c\xc2\x2f\xfc\x38\x31\x3f\x39\x39\x29\xdd\xbc\x79\x13\x04\x41\x28\xd7\x4d\x1e\x48\x1e\x5a\x05\x69\xb5\x5a\xdc\xdf\xdf\x0f\xed\x6d\xed\xfc\xae\x98\xfe\xf1\x3e\x9f\xf1\x3f\xd4\x87\xf9\xe3\x08\x10\x07\x34\xcf\xd2\x4e\xe7\xf9\x7f\x4b\xe5\x36\x93\x4e\x31\x95\x16\x2c\xe2\x47\xc3\xde\xf8\x9b\x77\x4d\xc2\xd0\xe8\xcd\x9b\xe2\x95\x2b\x57\x8a\x5d\xc3\x76\xd7\x15\x61\x50\xde\x0d\x80\x42\x0e\x04\x25\xee\x95\x54\xd4\xde\xde\x8e\x07\x06\x06\xb8\x86\xb4\xb1\xff\xe0\xac\xe5\x3b\x75\x51\xee\x29\x44\x11\xa6\x08\x00\x01\x05\x0a\x28\x63\x68\xf3\x9c\x02\x05\x44\x11\x14\x63\x0a\xea\x8c\xe6\xa5\xa2\xac\x86\xc2\x8c\x53\xa0\x64\xc9\x9c\x3e\x7b\xbe\x29\xfa\xdd\xbb\x9a\xe8\xc8\x95\xab\x57\xa5\x89\x89\x89\xfc\x32\xe6\xfb\xcd\x4a\x7c\x6b\x01\x66\x3b\x1f\x54\x8e\xd0\xe5\xae\xf5\x7a\x3d\x1c\x3e\x7c\x18\x37\x3b\xbd\xae\x83\xb3\xe6\xbf\xee\xf0\x57\xfd\x21\xce\x8e\x8c\x14\x01\xa0\xfc\xe2\x94\x38\x2f\x8b\xc9\x93\x02\x4c\x19\xa1\x08\x08\xa2\xca\x2d\x57\xf2\xc7\x17\x9a\x22\xaf\xcf\xf8\x17\xd6\x3e\xfb\xec\x33\x22\x8a\x62\xb9\x27\x2a\xf6\xad\x0c\x94\xef\x66\xb4\x84\x92\x1c\xd6\xe3\xf1\xc0\x73\xcf\x3d\xc7\xed\x03\xf7\x91\x17\x6f\x56\xbf\xeb\x8d\xf2\x4f\x03\x20\x8c\x00\x01\xcd\xc2\x10\x82\x8d\xeb\x8d\x47\xb3\xe7\x85\x98\x4d\x63\xb4\xc0\x10\xca\xb8\x21\xb4\x71\x85\xb2\xcf\x6c\x1e\xf9\x18\x04\x08\xd7\x24\xb9\xfe\xb6\x35\xfd\x4b\x52\xad\x6e\xdc\xb6\xc7\x3b\x3f\x31\x31\x41\x69\x09\x5f\xb6\x4d\x99\xb7\x60\x58\x28\xcf\x01\xa0\xdc\xbd\x3d\x7b\xf6\xe0\x27\xbe\x71\x50\x7f\x60\xd1\xfc\xe7\x8f\xde\x35\xfd\x35\xa2\x88\x2b\xf9\x74\x7e\x7f\x81\x8d\x6e\x95\xd2\x10\x61\xc5\x94\x5e\x58\x35\xca\xf3\x41\xbd\xec\x8b\xf3\x8a\x5f\xd4\x90\xb0\x82\xa9\x04\x00\xc0\xaa\x88\xd7\xc9\x8c\xd5\x94\x66\x5c\xb6\xa4\xa6\xde\x15\xe7\x1a\xdd\x31\xce\xa3\x55\x30\xbf\x51\x21\x99\x02\x23\x54\xd4\xe0\x28\x50\x8a\xc0\x94\x66\x9b\x7a\x97\x8c\x7f\xb1\xd8\x29\x5e\x71\x3a\x9d\xb1\x95\x95\x95\x07\x72\xde\xd9\x51\xa5\x94\x03\xcb\x97\xdc\xfd\x03\x07\x0e\xe0\x47\xba\xf7\xd9\x8e\x4c\xda\x7e\xd0\xbe\xa6\xff\x3d\x94\xd7\x35\xb2\xe7\xb9\x3a\xc9\x94\x21\xa5\x21\xc2\xa4\x53\xb8\x3e\x55\x2d\x5c\x58\x35\x4a\xc3\x2a\xa2\x0b\x08\xa1\x10\xa5\x34\x81\x10\x12\x29\xa5\x4a\xce\xbe\x06\x70\x4c\xa7\xb2\x7e\x4a\x79\x70\x80\x01\x00\x1c\x2c\x41\xf5\xb5\x31\xed\x40\xeb\x9a\xfe\x60\x4b\x40\xdf\xc5\xcb\x88\xdf\xb4\x09\xb0\x59\x53\x14\xc2\x3a\x65\xed\x4c\x5b\xe8\x4d\x4a\xa9\x14\x8b\xc5\x4a\x96\x21\xef\x3a\x2b\x15\xf9\xa0\x1d\x9d\xd9\x81\x03\x07\xa0\xbf\xbb\xd7\xf1\xdc\xb8\xfd\xed\xc6\x10\x7f\x32\xe3\x61\x0b\x24\x9f\xcb\x44\x79\x25\x74\xcd\x1b\x3f\x33\x51\x23\x7c\xa8\x30\x74\x0c\x00\xfc\xaa\xaa\x26\x56\x57\x57\xa5\x40\x20\x40\x82\xc1\x20\xc4\x62\x31\x58\x5d\x5d\x25\x5a\xad\x16\x03\x00\xe8\x74\x3a\xe0\x79\x1e\xcc\x66\x33\xd8\x6c\x36\x70\x3a\x9d\xd8\xe1\x70\x70\x0c\xc3\x98\x00\xa0\x56\x2b\xa3\x9e\x4e\xbf\xe1\xa5\x3e\x9f\xf1\xa9\x2a\x89\x31\xe4\xea\x07\x01\x28\x98\x48\xef\xec\x5b\xfb\xcb\x35\xa3\xfc\x0f\xd7\xae\x5d\x0b\x8d\x8c\x8c\x14\x97\x2b\x7b\x5d\x8a\xdc\x96\xc4\x54\x3c\x59\xed\xee\xee\x86\x83\x03\x8f\xd9\x9e\x1b\x77\xbc\xbd\x2b\xa8\x7b\x01\xe5\x65\xac\x58\xd2\x0c\x11\x2f\x37\x44\x3f\xba\x51\x9b\xf8\x5f\x2a\x03\xd7\x09\x21\x6b\x3e\x9f\x4f\x9c\x9a\x9a\x22\x3e\x9f\x2f\xcb\x84\xb7\x1b\x31\xf3\x33\x8e\x01\x80\xb4\xb4\xb4\xe0\xb6\xb6\x36\xec\x76\xbb\x79\x84\x50\x2d\xa7\xa0\xfe\x47\x16\x8d\xbf\xdf\xe7\x33\x3e\xc5\xaa\x98\x05\x44\xe1\x6c\x6b\xf8\xc7\xb7\xdc\xc9\xef\x2d\x2e\x2e\xfa\x4e\x9f\x3e\x4d\x4a\xe9\xd9\xa6\xbc\x25\x31\x15\xf1\xa0\x86\x86\x06\xfc\xcc\xb1\x63\x86\x23\x53\xb6\xff\xda\xe9\xaf\xfa\x83\x5c\xe5\x14\x09\x45\x00\x0b\xd6\xf4\xd4\xd9\xd6\xd0\x9b\x71\x5e\x3d\xab\xaa\xaa\x6f\x72\x72\x52\xb8\x71\xe3\x06\xc4\xe3\xf1\x87\x42\xe4\x2c\x16\x0b\xee\xeb\xeb\x83\xa6\xa6\x26\x3d\x46\xb8\xc9\x26\xb0\x27\x8e\x4d\xda\xfe\x5d\xa0\x4a\x9e\x3f\xdb\x1a\xfe\xb3\x44\x32\x31\xfe\xde\x7b\xef\x29\xa2\x28\x3e\x14\x7b\xa5\x2a\xa8\xe0\xad\x9a\xcd\x66\xfc\xe2\x8b\x2f\x72\x8f\xae\xdb\xff\xfc\xc9\x3b\x96\xbf\x2d\xf2\xba\x39\x2d\x14\x28\x5c\x69\x88\xfd\xe6\x72\x43\xec\x07\x04\xe8\xf5\x95\x95\x95\xc8\x97\x5f\x7e\x49\xc2\xe1\x70\x45\xbe\xed\x5e\x31\x4e\xa7\x13\x1f\x3c\x78\x10\xdb\xed\x76\x1b\x4b\x50\x07\x00\x08\x12\xa8\x63\xef\xbf\xff\xbe\x18\x08\x04\x4a\xe9\xbc\x2f\x5b\x3b\x12\xc5\x97\x5e\x7a\x89\xed\xe1\xea\x8e\x7c\xeb\x86\xf3\x57\x0c\x41\xfc\x06\x27\xd9\x1c\x9b\x29\x02\x20\x88\x92\x33\x6d\xa1\x9f\x4c\x3a\x85\x1f\x29\xaa\x32\x75\xe9\xd2\x25\x71\x7c\x7c\x1c\xa0\x74\xf7\xd9\x89\xed\x42\x11\x6e\x5b\xcc\xde\xbd\x7b\x71\x4f\x4f\x0f\x4b\x08\x81\xa1\xa1\x21\x65\x6e\x6e\xae\x64\xa0\xaf\xb3\xb3\x13\x77\x77\x77\xb3\x46\xa3\x91\x55\x55\x95\xac\xac\xac\x28\x57\xaf\x5e\x25\x81\x40\x60\x5b\x5b\xdb\x12\xc5\xfe\xfe\x7e\x3c\xd0\xf3\x48\xed\x2b\x23\x35\x9f\x59\x53\x9a\xdd\x40\x69\xa6\x6e\x32\xae\x98\x02\x28\x18\x94\xdf\x74\x04\xfe\x6e\xd6\x21\xfe\x7d\x32\x99\x9c\xfd\xf8\xe3\x8f\x95\x8c\xd1\x52\x05\xcd\x4f\xfb\x67\x8b\x28\x0e\x0e\x0e\x42\x5f\x63\x47\xe3\xa1\x19\xcb\xeb\xf5\x61\xfe\x49\x91\x25\x91\xaf\x3c\xf1\xb7\x46\xdc\xd1\x9f\x7c\xf4\xf1\xc7\xa2\xcf\xe7\x2b\xab\xa7\x2c\x51\x34\x9b\xcd\xe8\xf0\xe1\xc3\xfc\x13\x77\xad\x7f\xd3\x14\xd2\x1f\xcf\x0d\xaa\x28\x0b\x47\x40\x11\x90\x33\xed\xa1\xff\x31\x53\x2d\xfc\xb7\x68\x2c\x36\xf7\xfe\xfb\xef\x2b\xd1\x68\xb4\x58\xd5\xb6\x84\x73\x1b\x4c\x29\xa9\x98\xe0\x65\xa5\xa9\xa9\x09\x1e\xed\x3f\x60\xfb\xd6\xa8\xf3\x94\x37\xcc\x3f\xc3\x52\x64\xd2\xaa\xd8\xd9\x18\xe6\x4f\x88\x5a\x1a\x60\xdb\x9d\xc3\xb7\x6e\xdd\x22\x25\x08\x25\x02\xd8\x6c\x52\x5b\x8e\xc7\x1e\x7b\x0c\x3b\xd3\x7c\xdf\xbe\x25\xe3\xab\x39\x34\xda\xe4\xb2\x00\x14\x2e\x37\xc4\x3e\x98\x74\x0a\x3f\x8a\xc6\x62\xf3\x1f\x7e\xf8\xa1\x92\x99\x51\x17\x1f\x50\xce\xc6\x3d\x62\xee\xeb\x68\x69\x69\xc1\xae\x18\xf7\x78\x75\x42\xd3\x8f\xd0\x06\x5f\xcf\x96\xa1\x7b\xd9\xf0\x47\x3a\x9d\xce\x54\x57\x57\x57\xd6\x7e\xc9\xb7\x56\x53\x53\x83\xbd\x5e\xaf\xfe\xf1\x39\xf3\x5f\x62\x0a\x3c\x85\x8d\x9f\x8d\x6a\xd9\x38\x5b\xb0\xa6\xc7\xaf\x34\xc4\xfe\x8b\x98\x16\x67\xce\x9c\x39\xa3\x08\x82\x50\xac\xa6\x94\xee\x52\xc1\xb9\x9d\xe4\x81\x30\x76\xbb\x1d\x6b\x08\x76\x01\x6c\x4e\x67\xb2\x65\xd0\xc9\xd8\x81\x10\xd2\xeb\x74\xba\xb2\x7a\x8a\x23\x8a\x04\x00\xf0\x23\x8f\x3c\x82\x6b\x12\xdc\xa3\x4d\x41\xdd\x31\x44\xb7\xb6\x6a\x91\x25\xc2\xd9\xd6\xd0\xf7\x09\xd0\xb1\x2f\xbe\xf8\x42\x0a\x87\xc3\xe5\x0c\x94\xe2\x1e\x95\x60\x8a\x65\x3b\x92\xb7\x2d\x26\x91\x48\x10\xbf\xdd\x38\x21\x6a\x48\x4c\x27\x31\xa6\xfc\x07\xee\xd8\xc5\x11\x4a\xa9\x94\x09\xba\xe1\x52\x7a\xb6\x64\xd6\x66\xb3\x41\x5d\x5d\x1d\xdf\xeb\x33\xbe\x86\x28\x62\xb3\xad\x27\x57\xfb\x88\xc2\xe5\x86\xe8\x7b\x71\x5e\x3d\x37\x31\x31\x91\x98\x9f\x9f\xdf\xa6\x5c\x05\x06\xef\x07\x43\x8a\xfe\x96\xc2\x6d\x8b\x99\x9f\x9f\x27\x69\x0d\x9d\x3a\xdd\x1e\xfc\x61\x92\x53\x63\x14\x6d\x94\x61\xde\x96\x1a\xff\xb2\x29\xf2\xa6\x2c\xcb\x91\x8c\x93\x2e\xa9\x87\x2d\x4a\x20\x6d\x6d\x6d\xb8\x4a\x66\x9a\x76\x07\x74\xc7\x51\x41\x94\x62\x63\xd4\x8a\xf0\xea\xda\x68\x6d\xe2\xed\x64\x32\xe9\xbf\x74\xe9\x52\xbe\xc2\x52\x85\xbe\x2f\x8e\x53\x46\x2a\xc1\x6d\xc1\x8c\x8e\x8e\x42\x43\x43\x43\x00\xdc\xee\xb7\xff\xe7\xc0\xca\x0d\x47\x42\xd3\x9b\x66\x49\x34\xa4\x57\x2e\x51\xa0\xa3\x97\x86\x2e\x49\x25\x48\x65\xee\x9a\x2d\x4e\x6c\x69\x69\xe1\x5a\xd7\xf4\x2f\xb2\x2a\xd6\x6f\x44\x12\xf2\xe2\x11\x08\x60\xd8\x1b\x7b\x4f\xc1\x74\x7c\x78\x78\x58\x91\x65\xf9\xa1\xb0\xd5\xaf\x5b\x4e\x9f\x3e\x4d\x0e\x1e\x3c\xe8\x6b\x6e\x6e\x0e\xac\x98\xe9\xa7\x94\x52\x92\x4c\x26\xc5\xcb\x97\x2f\x2b\x77\xee\xdc\xd9\xb6\x0c\xf9\xb3\x79\xf0\x78\x3c\xc0\x6b\x79\x7d\xcb\xba\xfe\x79\x04\x14\x28\xca\x8b\x04\x22\x04\x22\xab\x26\x26\x9c\xc2\x3b\xf1\x78\x3c\x32\x31\x31\xb1\x13\x09\x2c\x96\x7b\xc1\x6c\x87\xab\x08\x83\x31\x06\x87\xc3\x01\x1c\xc7\x81\xcf\xe7\x23\xe7\xce\x9d\xc3\xe7\xce\x9d\x13\x6a\x6a\x6a\xc4\x74\x3a\x0d\x91\x48\x04\x2c\x16\x0b\xec\xd9\xb3\x07\x63\x8c\x21\x12\x89\xc0\xf2\xf2\x32\x14\x0d\xf7\x85\xcb\x3e\x5e\xaf\x17\x74\x32\xae\x77\xc5\xb9\x1e\x80\xc2\x50\x02\x02\x80\xe9\xea\xd4\x90\xcc\xd2\xa9\x89\x89\x09\x05\xb6\x8f\xf1\xe2\xa2\xeb\x8a\x30\x08\xa1\xfc\x0c\x96\x72\xec\xa5\x74\x6d\xc1\xec\xda\xb5\x0b\x9e\x38\x78\x90\x75\x60\x83\xcb\x90\x66\x1c\x41\xbd\x3c\xef\x0b\xfa\x63\xe7\xce\x9d\x83\xd5\xd5\x55\x00\x00\x72\xe8\xd0\x21\xdc\xd1\xdc\x66\x6a\x08\xf3\x07\x39\x05\x19\x16\xad\xe9\x4b\x77\x13\x6b\xbe\xb3\x67\xcf\x42\x86\xcb\x11\x80\xa2\x85\x43\xaf\xd7\xcb\xd6\x45\xb5\x8f\xe3\x4c\x00\xac\x30\xca\x43\x61\xba\x5a\xf8\x98\x10\x12\x9a\x9c\x9c\x2c\x95\xc1\x7b\x49\xc3\x00\x00\xf5\xf5\xf5\xd0\xd2\xd2\x02\x4e\xa7\x93\x33\x1a\x0c\x58\x51\x55\x88\xc5\x62\x64\x65\x65\x45\xb9\x7d\xfb\x36\x84\x42\xa1\x4a\x74\x17\x48\x4b\x4b\x0b\x7e\x7a\xf0\xb0\xe9\xf0\xb4\xf5\x7b\x9d\xfe\xaa\x57\x11\x20\x2e\xcd\x12\xff\x67\xbb\x75\x7f\x61\x7c\xde\xf8\x8b\x53\xa7\x4e\x29\xfb\xf7\xef\xc7\xfd\x9e\xf6\x8e\x17\x87\xab\x7f\x66\x49\x69\xba\x10\x00\xc8\x98\x44\x3e\x6e\xe7\x5e\xe3\x4e\x9c\x38\xf5\xee\xbb\xef\x2a\xb2\x2c\x6f\x71\xd2\x60\x32\x99\xd8\xda\x39\xed\xfe\x6c\xcb\x41\x79\xa4\x54\x62\xa8\xb0\x62\x92\x86\xfc\x7e\xbf\x94\x4a\xa5\xee\xd5\xf7\x14\xe0\xcd\x66\x33\x1e\x1c\x1c\xc4\x1e\xab\xd3\x65\xf3\xc9\xbf\x6b\x1a\x57\x9f\xd6\x88\x49\x0f\x45\x48\x12\x0d\xba\xa9\x88\xab\xf5\xfd\xce\x97\x3a\x7e\x33\x3e\x79\x3b\x71\xe1\xc2\x85\x7b\xb2\x35\x30\x30\xc0\xf5\xfa\x8c\x7f\xda\xe5\xaf\xfa\x93\xec\xab\xe5\x65\xe4\x3a\x3a\x69\x7b\x6b\xad\x5f\x9a\x3a\x79\xf2\xe4\x35\xa3\xd1\x68\x38\x34\x66\x7d\xc3\x9a\x62\xbb\x20\x53\x56\x8d\x8a\x2c\x4f\x4f\x59\xdf\x5c\x18\x10\xaf\x74\x76\x76\x2e\x5c\xbf\x7e\xbd\xb0\x05\x79\x3c\x1e\x8c\x31\xd6\x57\xc7\x35\x1d\x14\xb2\x73\xae\xcd\xfe\xb8\x6a\x94\x66\x14\x86\xfa\x97\x96\x96\x2a\x1d\xb5\x4a\x76\x2f\xab\xd5\x0a\x27\x4f\x9e\xe4\xdc\x11\xf6\x9b\x9e\xf3\xc9\x37\x58\x89\xba\xf2\x01\x7c\x82\xf4\x99\x57\x95\xdf\x75\x1a\xf1\x15\xed\xbe\xb6\xd7\xec\xbf\x63\x1f\x3b\x7d\xfa\x34\x91\x24\x69\xc7\xa8\x80\xd7\xeb\xc5\x7a\xbd\xde\xb0\x3b\xa0\x7b\x79\x23\xf7\xd9\xf0\x2c\x00\x43\x41\xbf\x2b\xa8\x7b\x29\xec\x35\x8d\x22\x02\xb6\xba\xa8\xf6\xd1\xbc\x45\x4a\x00\x04\xc0\x2b\xd8\x59\x9d\xe0\xfa\xeb\xea\xea\x7c\xd9\x0a\xc2\xd9\xc3\x62\xb1\x00\xa2\xa0\xb7\xa6\xd8\x7a\x04\x08\x10\x2d\x3c\xd6\x0c\xd2\x04\xa5\x34\xe6\xf7\xfb\x0b\x9e\xcb\x3b\x8a\xd3\xa1\x38\x5d\xab\xd5\xc2\x89\x13\x27\x58\x77\x84\xfd\x76\xc3\x0d\xf1\xa7\x8c\x0c\x2e\x8a\x32\xf3\x3b\x84\x80\xa2\x8d\x65\x20\x00\x0a\xfa\x38\x39\xb0\xfb\x4a\xea\x7d\x8f\xb1\xba\xfd\x1b\xdf\xf8\xc6\x16\x5d\x66\xb3\x19\xef\xde\xbd\x1b\x37\x37\x37\x63\xa3\xd1\x08\x00\x80\xf5\x7a\x3d\x00\x00\x47\x10\xe0\xe2\xfc\x23\x8a\x40\xc1\x04\x53\x4a\x31\x45\x80\x05\x0d\x49\x14\xdf\x07\x00\x92\xe4\x54\x01\xe5\xe6\x9b\x1b\x4e\x1a\x00\x00\xcc\x66\x33\x68\x54\x64\xe1\x65\xc6\x52\x38\x6d\xdb\xb8\x0a\xeb\x95\x59\x4a\xa9\x58\xe4\x17\x2a\x99\x5d\xe7\xee\xf7\xf6\xf6\x82\x99\xd5\x35\x79\x6e\x25\xdf\x00\x42\xd9\xfc\x85\x30\xba\x65\xc1\x90\x82\x26\x4d\xeb\xbd\xb7\xc4\x37\xa4\xfe\xdd\xff\x6a\x72\x72\x32\xb6\xbc\xbc\x8c\x79\x9e\x87\xc1\xc1\x41\xdc\x5c\xd7\x60\xaa\x8b\xf1\xfb\x08\xa2\xd2\x92\x51\x1c\x1d\x9f\x99\x4c\xcc\xce\xce\x02\x00\x88\xe3\xae\xe4\xa7\xb5\x31\xae\x27\x1b\x14\x47\x00\x20\x33\x44\x9a\xb7\x89\x17\x11\x42\x0a\x00\xc4\xae\x79\x63\xa7\x9e\x9e\xb6\xfe\x49\x3e\xe6\x8e\x3d\x75\x2d\xa2\x53\x66\xc2\x73\xe1\x5c\xb9\x72\x3e\x88\xe7\x79\x96\x97\xb1\x8d\xa1\xc0\xa3\xa2\x95\x03\x8a\x00\xe2\x5a\x65\x51\x96\x65\x25\x9d\x4e\x97\x25\x55\x25\x2a\xa6\xe0\x5e\x7b\x7b\x3b\x6f\x5f\x90\xff\x2d\x2b\x83\x23\xc7\xaf\x36\x57\x88\x60\x73\x81\x70\xb3\xb6\x8c\x01\xf5\x88\x3e\x4e\xfa\x3a\x3a\x3a\xce\x2d\x2f\x2f\x93\x67\x9f\x7d\x96\xed\xe6\xea\x0e\x9e\xbc\xea\x78\xbb\x4a\xc2\x4d\x00\x00\x11\x9d\x32\xf6\x61\xa7\xe6\xf7\x2d\x16\xcb\x68\x3c\x1e\x4f\xdc\x72\xc1\x4f\x0d\x69\xa6\xa9\xcf\x67\x3c\xc6\xa9\x88\x8f\xf0\x6a\xe8\xf3\xdd\xe1\x1f\xc7\x78\xf5\xda\xc4\xc4\x84\xe2\x76\xbb\x63\x63\x6e\x78\x4b\xc5\x94\xeb\x59\x36\x1c\xd7\xa8\x98\x9b\xb7\xa7\x46\x2f\x37\xc4\xde\x20\x94\x2c\xdf\xbe\x7d\x3b\x57\xae\x5c\x0b\xd2\xe9\x74\xa0\x55\xb1\x09\x00\x80\x66\x97\x54\x28\xe4\x32\x9c\xd2\x90\x50\x5e\xd8\xf4\x5e\x18\x30\x00\x00\xb8\x5c\x2e\xcc\x69\x34\x7a\x63\x20\xf5\x54\x36\x96\x94\x2f\x9b\x61\xb8\xec\xcb\xa1\x99\x37\x4b\xb1\x21\xa0\x1e\xf5\x78\x3c\x43\x1d\x1d\x1d\x52\x8d\xbd\xda\xf1\xec\x15\xfb\xdb\x55\x12\xd3\x94\x85\x5b\x04\x4d\xd7\x33\x13\xf6\xbf\x0f\xf5\x29\xcf\x5e\xbf\x71\x3d\xb2\x67\xcf\x9e\x89\xcb\x0d\xb1\xff\x3c\xec\x8d\xff\xa3\x56\xc1\x36\x81\x53\xe7\x09\xd0\xf1\x48\x24\xe2\xbf\x78\xf1\x22\x58\x2c\x16\xe5\xf8\xf1\xe3\x13\xe3\x35\xf4\xf5\xdb\x35\xc2\x4f\x01\x80\xa5\x40\xfd\x00\xe0\xfb\xe2\xf3\x2f\x84\x50\x28\xb4\x85\x49\x63\x00\x00\x4c\x10\xbf\x39\x72\x6d\x12\x45\x0a\x00\x2a\xa6\x5b\xa6\xeb\x79\xb2\x23\x09\xb4\xd9\x6c\x00\x00\x7a\x2e\x45\x6a\x73\x95\x92\xd9\xa4\x80\x10\x02\x44\x69\x66\x91\xa4\xb0\xbf\x51\x84\x80\x4b\x91\x46\x8e\xe3\xd9\x81\x81\x01\xc5\x9e\xd4\xec\x33\xa5\x99\xa6\xbc\x5c\x02\x02\x04\xce\x84\xa6\xdf\x90\x66\x9a\x58\x96\x1d\xf9\xe0\x83\x0f\xa4\x47\x1f\x7d\x74\xa6\xae\xae\x6e\x5e\xd1\x52\x56\x96\x65\x65\x72\x72\x52\xba\x76\xed\x1a\xc8\xb2\x4c\xd6\xd7\xd7\xe1\x9d\x77\xde\x51\xba\xbb\xbb\x7d\x1e\x8f\x67\x59\xa3\xd1\xc0\xfa\xfa\x3a\xb9\x79\xf3\x26\x14\x85\x6b\xb7\xec\x0f\xc2\x05\x9e\x1d\xf2\x46\x82\xad\x93\xc1\x7b\x0a\x67\x64\x1c\x1f\x4b\x31\x90\x4c\xb0\x2d\x7b\x23\x63\x67\xeb\xda\x7b\x2e\x0d\x03\x50\x4a\x31\xcb\xb2\xa0\x60\xca\x16\xe6\x70\xe3\x9c\x20\x20\x2a\xa6\xac\xc1\x60\x80\x70\x38\x0c\xa7\x4f\x9f\x26\x0c\xc3\x48\xaa\xaa\x8a\xa5\xf2\x25\x8a\x22\x5c\xbd\x7a\x15\x26\x27\x27\x09\x42\x08\x92\xc9\x24\x28\x8a\x92\xcd\x73\x81\x0f\xca\x89\x8a\xa9\xb4\x75\x2d\x67\x23\xab\x2c\x41\x7c\x89\x0a\xa9\x58\x64\x59\x06\x00\x90\xc4\x2a\xbc\xac\x15\x54\xcf\x46\xf8\x36\xd3\x5a\xb2\x7e\xa7\xb8\xd4\x99\xbc\xa4\xab\xf0\x02\x42\x88\x04\x02\x01\x82\xec\x8e\x99\x25\x73\x7a\xbc\x2e\xca\x77\x64\x2b\x11\x01\xc0\x8c\x23\x75\x29\xa5\x21\xfe\x70\x38\x0c\x36\x9b\x0d\xf6\xef\xdf\x8f\x3d\x75\x75\x2c\x8b\x59\x1c\x4b\xc6\x95\xe9\xe9\x69\xe5\xfa\xf5\xeb\xa0\x28\x0a\x06\x00\x68\x69\x69\x81\xfd\xfb\xf7\xb3\x0e\xad\xc9\xc4\x10\xc4\x45\x50\x2a\x74\x73\x6c\x4c\x1a\x1e\x1e\x06\x4a\x69\xae\x42\xf3\x23\x8a\x90\x66\x49\xac\x28\x87\xb9\x4a\xd2\x4b\x8c\x0d\x21\x54\x36\x02\xb9\xd3\x31\x35\x35\x45\x00\xa1\x44\xd4\xa5\xf9\x22\xbb\x3e\x0f\xf9\x7f\x33\xeb\xf8\x28\x8f\x9e\x22\x40\x40\x31\x48\xb1\x6a\xf6\x7c\x34\x1a\x95\xce\x9f\x3f\x0f\x14\xa8\xef\xd7\x1d\xc1\xef\xdc\x71\x08\xa3\x32\x26\x8a\xcc\x12\xe9\x96\x2b\x79\xe9\x93\xd6\xd0\xf7\x54\xa2\xae\x85\xc3\x61\x78\xe1\x85\x17\xb8\x93\x9a\x8e\x3f\xf8\xc3\x11\xcf\xc5\xd7\x2e\xd6\xdd\xfe\xbd\xf9\x5d\x3f\x7b\xba\xfd\x40\xc7\xb3\xcf\x3e\x8b\x01\x80\x74\x74\x74\xc0\xd1\x27\x0f\xdb\x5e\x5e\xac\xff\xd1\x1f\x5f\xac\x9d\xfb\xa3\x4b\xee\xb9\x57\x6e\x79\x3e\x3c\xbc\xe7\x40\xfb\xf1\xe3\xc7\x21\x3f\xdf\xb9\x16\x94\x4c\x26\x49\xda\x49\x62\x2a\xa6\x12\x43\x80\x2b\x26\x8a\xc6\x34\x53\x67\xaa\x36\x55\xb4\xc8\x58\x54\xf9\x39\x09\x87\xc3\x02\x72\x5b\x7e\xe5\x9c\xc3\xaf\xf0\x71\x52\x9b\xf3\x35\x34\xbf\x63\xe5\xbd\x22\x44\x21\x50\xcf\x9d\x95\x75\x78\x6c\x76\x62\x56\x59\x5f\x5f\x27\xc3\xc3\xc3\x42\x7f\x7f\xff\xd9\xff\xdd\x11\x5c\xd0\x10\xd4\x44\x01\x88\x82\xc9\x14\x05\x98\xbd\x72\xe9\x8a\xd8\xdf\xdf\xcf\x76\x87\x2d\xaf\x3c\x35\x6d\x7d\x2b\x93\x07\x68\x0c\xf1\xf5\x8e\x44\x75\x9f\xd0\x4f\x0e\x1f\x3a\x74\x68\xa1\xb9\xb9\x99\x7f\x7c\xce\xf2\xdd\xf6\x35\xfd\xab\x59\x5b\xb5\x31\xee\xc8\xf3\x63\x8e\x9f\x25\x1e\x51\x8e\xb6\xb6\xb6\x06\xa6\xa6\xa6\x0a\x89\x62\x32\x99\x04\x99\xa1\xb1\x94\x86\x44\x4a\x11\x45\x7b\x52\xb3\x9b\x65\x59\xd6\x60\x30\x94\x22\x89\xdb\x11\xc7\x9c\x9d\xaf\xbe\xfa\x8a\x10\x0c\x13\xf3\x7b\xf9\xbf\x95\xb5\x28\x01\x59\x62\x98\x23\x8a\x90\x3b\x00\x01\x24\x6c\xec\xd4\x4a\x8b\xf6\x07\xb2\x2c\xfb\xc7\xc6\xc6\x00\x00\x60\x64\x64\x04\x3e\xf9\xe4\x93\xd8\xda\xfa\xda\x48\x1a\xa9\xa7\xd2\xa0\x7c\xb0\xbc\xb2\x32\x76\xfa\xf4\xe9\xc4\xda\xda\x1a\x98\x4c\x26\x7d\xf7\x4a\xd5\x1f\x23\x8a\x0a\xc8\xa2\x31\xcd\x36\x36\x07\x75\xdf\x6c\x69\x69\x61\x59\xcc\x58\xda\xd7\xf4\xdf\xda\x52\x46\x81\xed\x71\x47\xb5\x4f\xee\xde\xbd\x3b\x97\xef\x5c\x0b\x4a\x24\x12\x40\x80\x26\x42\x7a\xc5\x67\x14\x19\x67\xee\x35\x66\x5e\x6a\x4d\x9c\xeb\x40\x80\xf4\x76\xbb\x5d\x48\x24\x12\x95\xb7\xa3\x3c\x07\x39\x33\x33\x03\x4d\x4d\x4d\x91\x86\x86\x86\x53\x33\x8f\xea\xc1\x33\x26\xfe\x99\x21\xa4\xee\x2e\x18\x0a\x00\x80\x62\x44\x02\x5e\xcd\x85\x95\x56\xed\xf7\x09\x03\x57\xce\x7f\x76\x3e\x3b\xff\xc3\x00\x00\x77\xee\xdc\x81\x4c\x1c\x47\x64\x59\x16\x67\x9c\x2b\xb4\xb5\xb5\x01\x00\xf0\x9c\x8a\x2d\xf9\x9b\xae\xb2\x2d\x55\xa3\xa0\x1a\x84\x10\x0b\x14\xf4\x88\x02\xb7\x15\x03\x40\x11\xe8\xcd\x66\x73\xee\x25\xe7\x88\x62\x30\x18\xc4\x08\x21\x61\xcd\x20\xcd\x34\x84\xb4\x7d\x1b\x95\xb3\xd9\xfc\x1d\x49\x4d\xbb\x56\x41\xce\xda\xda\xda\xc0\xdd\xbb\x77\xef\x3b\x50\xf6\xe9\xa7\x9f\xe2\x23\x47\x8e\xf8\xeb\xeb\xeb\x7f\x7e\xe7\x80\x6e\x4c\x1f\x25\x4f\x1b\x03\x4a\x3f\x97\xa2\x0e\x8a\x41\x11\x0d\xd8\x17\x75\xb2\x9f\xcb\x3c\xba\x40\x01\x66\x2e\x5c\xb8\x20\xcc\xcc\xcc\x14\x87\x43\x73\xa2\x28\x4a\x2e\x2d\x95\x4a\x61\x00\x50\xee\x5a\xc5\x51\x67\x5c\xd3\x9e\xef\xf8\x15\x86\x4a\x73\xf6\xd4\x45\x00\x50\x28\x02\x61\xca\x29\x0c\xed\x5d\x32\x9c\xc8\xc7\x84\xf4\x8a\x6f\xc5\x94\x1e\x0d\x2e\x04\x73\x7e\x39\xc7\x83\x56\x57\x57\x89\xaa\xaa\xe2\x8a\x29\xfd\x15\x45\xc6\x6f\x6f\x06\xeb\x37\xfe\xb2\x04\x78\x6f\x84\x3f\xb8\x52\x57\x37\x05\x00\x9b\xdb\x55\xee\x51\x14\x45\x21\x1f\x7d\xf4\x11\xe9\xec\xec\x0c\xf5\xf6\xf6\x0e\x81\x45\x3f\x26\x58\x18\x0b\x00\xe8\x33\x3a\x63\x00\x10\x09\x06\x83\xc2\x97\x5f\x7e\x49\xfc\x7e\x7f\xc5\x76\x16\x16\x16\x48\x3a\x9d\x4e\x5c\xa9\x8f\xbd\x55\x9d\xd0\x74\x35\x84\xf9\x0e\x84\x10\x48\x98\x48\xe7\x5a\xc2\x3f\x89\xf1\xea\x88\xcf\xe7\x53\x9c\x4e\x67\xe8\x7c\x53\xf4\x0d\x8d\x8a\x1d\x6d\x6b\xfa\x7e\x0c\x80\xd7\x0c\xb2\xef\xa3\x3d\xc1\xd7\x09\x86\xf9\xfc\x60\x60\xc1\xca\xea\x8b\x2f\xbe\x88\xeb\xad\xae\x27\x5f\xbd\x54\x7b\x9a\x55\x11\x57\xbc\x4c\x37\xe5\x10\x7e\xf3\xeb\x8e\xc0\xbf\x3e\x75\xea\x54\x62\x7d\x7d\xbd\x54\x44\x11\xa0\x28\xc6\xbd\x1d\x06\x21\x84\xbd\x5e\x2f\x38\x9d\x4e\xe0\xb8\x8d\x3d\x58\x82\x20\xc0\xe2\xe2\x22\x04\x83\xc1\x52\x7a\x8a\x07\x89\x2d\x98\xd6\xd6\x56\x3c\x38\x38\x68\x40\x80\x7a\x1c\x49\xcd\x41\xbd\x84\xab\xd7\x0d\xf2\x8d\x94\x86\x0c\x25\x92\x89\x85\x77\xdf\x7d\x57\x69\x6c\x6c\x84\xc1\xc1\x41\x3d\x02\xd4\xca\x2b\xb8\x87\x25\x88\x4f\x70\xea\x04\x05\x3a\x36\x35\x35\x15\xfa\xfc\xf3\xcf\x73\xdd\xb9\x60\x65\xd5\x68\x34\xd2\xea\x5a\x17\x78\x23\xda\x23\x26\x91\xa9\xd9\x9c\x17\x6d\xd4\xa5\x45\x64\xea\xc6\x5d\xc9\x5f\x49\x0c\x5d\x5d\x58\x58\xc8\xdf\x0f\x97\x2f\xf9\x69\x3b\x62\xa2\xd1\x28\x2c\x2f\x2f\xc3\xe2\xe2\x22\x2c\x2e\x2e\x82\xdf\xef\x87\x54\x2a\x05\x50\xb8\xda\x9a\x3f\x41\xcb\x97\x2d\x98\x60\x30\x88\x62\xb1\x98\x54\xe3\xaa\x59\x91\xf4\xf8\x46\x54\xa7\x5c\x90\x19\x3a\xb6\xb0\xb0\x10\x38\x73\xe6\x8c\x2a\x8a\x22\x09\x06\x83\x68\x6d\x6d\x4d\x36\x5b\xcc\x6b\x9c\x51\x37\x21\x31\xe4\x66\x2a\x95\x9a\xff\xea\xab\xaf\x92\x97\x2f\x5f\x86\x7c\x5b\x05\x2d\xc8\xe5\x72\xc1\xf3\xcf\x3f\x6f\xea\x59\x31\xbc\xfe\xd4\x94\xed\x4f\x4b\x2d\xf4\x5e\xa9\x8f\xfe\xf0\xf3\xba\xc0\x5f\xfd\xfc\xe7\x3f\x17\xb7\xd9\x24\xf9\x7f\x5d\x10\x42\xb9\x98\x74\x28\x14\x82\x54\x2a\x05\x76\xbb\x1d\x1c\x0e\x07\xa4\xd3\x69\xf0\xfb\xfd\x20\x8a\x22\x68\xb5\x5a\xd0\x68\x34\x50\x6e\xe0\x61\x20\x6f\xc1\x31\x91\x48\xd0\xf6\xf6\x76\x22\x1a\x19\x65\xef\xb2\xe1\x5b\x0c\x45\x5b\x36\x7e\xdb\x93\x9a\xd6\x09\x8f\xf8\x4b\xa2\x41\x41\x9f\xcf\x47\xf2\x9f\xff\x97\x76\x08\x82\x40\xe3\xf1\x38\xd5\x6a\xb5\xe8\xc4\x89\x13\xf8\x89\x7d\x03\xf6\x6f\x58\xda\x0e\x74\xd5\xb7\x58\x76\xf5\xed\x89\x20\x8c\x95\xc5\xc5\x45\x22\x49\x52\x59\x1d\x4c\x71\x05\x70\x1c\x47\x9d\x5e\x77\xda\x92\xd2\xec\xaf\x4e\x6a\x1a\x8b\xef\xb3\x04\xe9\x58\x82\xb8\x44\xab\xe1\x93\xb9\xb9\x39\x55\x14\xc5\x2d\xab\xfe\x19\xc1\xb0\x65\xce\x5e\x31\x26\x3f\xfd\x81\x30\x1c\xc7\xa1\x17\x5e\x78\x81\x3d\x00\xde\xe7\x5f\x1e\x75\x7e\xd8\xe5\xaf\xfa\xf7\x5d\xfe\xaa\xd7\x1a\x62\xfa\x01\xa1\xdb\xf2\x29\xd5\xe0\xc4\xf2\xf2\x72\x59\x3d\x4c\x26\x31\xeb\x13\x68\x3c\x1e\x47\x9d\x9d\x9d\x52\x5c\xa7\xe2\xee\x15\xc3\x73\x98\x16\x4e\x02\x36\x66\xce\x5c\xf7\x82\x5d\xfa\x52\x57\x67\x9d\x9f\x9a\x9a\x02\x28\xf4\x35\xc5\x3e\x88\x16\xd9\xa8\x04\x03\x65\xce\xf3\x71\x15\x61\x7a\x7b\x7b\x61\x8f\xa7\xb9\xf1\xe5\x51\xe7\x07\xbc\x8c\xab\xb3\x65\x30\x89\x6c\x13\xaf\x60\x5b\x62\x8f\xf1\xcc\xf4\xf4\xb4\x2a\x49\x52\x49\x3d\x5b\x66\xb9\x89\x44\x02\x66\x67\x67\xc5\x40\x95\x7c\xee\x8e\x23\x75\x0d\x10\x85\x82\x8d\xdc\x88\x02\x43\x10\x77\x74\xd2\xf6\x86\xc7\xe1\x72\xed\xdf\xbf\xbf\xc4\x8b\x2b\xd4\xb9\x13\xa0\x0c\xa6\x54\x60\xae\xdc\x28\x56\x16\xe3\xf5\x7a\xb1\x2b\xc6\x1d\xe4\x65\x6c\x03\x80\x3c\x37\x4f\xa1\x29\xa4\x3b\xc6\x60\xc6\x52\x5b\x5b\x0b\x45\x92\xd3\x53\x72\xf2\x39\x32\x32\x02\x84\x92\xe5\xa1\x5d\xd1\xb7\x14\x04\xca\xe6\xcc\x3a\x4b\xaa\x28\xd8\x05\xb6\xeb\xf0\xb4\xf5\xfb\xfb\x7a\xf6\x1a\x76\xed\xda\x05\xa5\xf4\x3c\xe0\x51\xac\xb3\x94\x8d\x1d\x31\x3c\xcf\xe3\x34\x4b\x14\x8a\xb2\xf9\xdf\x7c\xe1\x49\x4e\x15\x00\x01\xab\xd5\x6a\xcb\xea\xc9\xfa\xa0\x82\xfe\x2c\x8a\x22\x31\x1a\x8d\x4a\x95\xdb\x16\xe1\x14\xd4\x52\x1b\xe3\x5b\x37\x86\xfc\x4c\x80\x1d\x36\x76\xbe\x3b\x92\x9a\x6e\x8a\x91\xac\xd9\xeb\xbe\x1c\x08\x04\xd4\x58\x2c\xb6\x93\xcf\xf9\x67\x17\xa7\xd3\x89\xb4\x2e\x33\xa9\x8f\xf0\x4f\x1b\x25\xd6\x9e\xcd\x3f\x45\x00\x43\xbb\xa2\xff\xb0\x6e\x90\xcf\xde\xb8\x71\x43\x8c\xc7\xe3\x25\xf3\x9e\xf5\x41\x00\x85\x5c\x83\xae\xaf\xaf\xa3\xf6\xf6\x76\x61\xcd\xaa\xae\xb6\xae\xeb\x9e\xe1\x15\xa6\x2a\x87\xca\xc6\x91\x29\x02\x4f\x54\xfb\x84\xa4\x81\xa8\x7e\x9f\xe7\xab\xa2\x4a\x2a\x76\x78\x05\xbe\xee\x3e\x31\xc5\xbe\x6c\x47\x8c\x24\x49\xb4\xa5\xad\x55\x98\xb5\xa7\xee\xea\x64\xa6\x51\x2f\x63\x63\x8c\x57\xc2\x43\xbb\x62\xbf\x18\x77\x09\x7f\x17\x8e\x84\x97\x2e\x5f\xbe\xac\x96\xd3\x53\xbc\x05\x2f\xe7\xa8\x64\x59\x06\x59\x96\xd5\xda\x06\x4f\x64\xdd\x28\x2b\xed\xab\x55\x87\x51\x6e\x2d\x71\xe3\x6b\x0b\x0a\x00\x80\x10\x6a\x0c\xf3\x47\x00\x63\x99\xef\xad\xbb\x96\x96\x24\x65\x7d\x7d\xbd\x62\xa2\xb8\x0d\xa6\x62\xa2\x68\x36\x9b\x41\xaf\xd7\xa3\xcc\x88\x5a\x80\x89\xc7\xe3\x44\x55\x55\xd9\xe9\x75\x2f\xde\x71\xa4\xce\x8f\x78\xe2\x1f\x8f\xd6\x26\xfe\x69\xcd\x20\x7d\x90\x4e\xa7\xe7\xcf\x9c\x39\xa3\xa6\x52\xa9\xb2\xb6\xb6\xfb\x98\x05\x02\x81\x00\xd4\xd4\xd4\xa4\x51\x75\xd5\x12\xc1\xd4\x5d\x1f\xe1\x3b\x0b\xca\xb5\xb9\x5f\x11\x79\x23\xda\xc3\x96\x34\x57\x0b\x7b\x9d\x43\x46\xab\x59\x58\x5e\x5e\x7e\xd0\xaf\x01\x4b\x55\x6a\x81\x70\x1c\x87\x06\x07\x07\xe1\xe8\x63\x83\x96\xfd\x2d\xdd\x16\xc6\xa4\x4b\x2e\x2c\x2c\x6c\xd1\xe3\xf7\xfb\x61\x75\x75\x55\xe2\x79\x3e\xc0\xb2\xec\x7c\x22\x91\x58\x9c\x9d\x9d\x0d\x7f\xf2\xc9\x27\x24\xf3\xb9\x42\x59\x5b\x05\x44\xb1\xd4\xb1\xb4\xb4\x04\x2d\xad\x2d\xf1\x80\x9d\xcc\x59\x52\x6c\xb7\x23\xc9\x79\xca\x95\xa7\x3a\xc9\xed\x6b\x0a\xe8\x8e\xca\x8d\x55\x63\xb5\x5d\xcd\x2b\x19\x5a\xff\xb5\x90\xc9\xb6\xb6\x36\x74\xec\xd8\x31\xb6\x47\xe7\x7d\xfc\x77\x6e\x55\xff\x53\x53\x50\xff\xcd\x40\xa7\xee\x03\x99\x28\xc2\xea\xea\xea\x16\x9b\xf1\x78\x9c\xce\xcc\xcc\x90\x9b\x37\x6f\xaa\xb7\x6f\xdf\x56\x17\x17\x17\xa9\xa2\x28\x3b\xda\xd9\x42\x14\x8b\x45\x96\x65\x1a\x08\x04\x68\xf3\xee\xe6\xc8\x82\x5d\xba\xe3\x8e\x71\xfb\xcd\x22\xe3\x28\x87\xd7\xcb\xd8\xd5\xe1\x37\xbc\x62\xa6\x5a\xbb\xae\xbb\xf6\x96\xa7\xb9\x21\xa9\xaa\x2a\x04\x83\xc1\x9d\xc8\x5e\xb9\xf4\x02\x4c\x6b\x6b\x2b\x3e\x74\xe8\x10\xd3\xd7\xdc\x59\x77\x78\xd1\xf1\x9d\xa7\x66\xac\x3f\xd4\x4b\xb8\xce\x20\x31\x1e\x4e\xc5\x55\x52\x97\xed\xf3\xa5\xa5\x25\x25\x99\x4c\xd2\xed\xf4\x54\x62\x0b\xa0\x04\x51\xcc\xbb\xce\x9d\xc7\xe3\x71\x10\x04\x41\xf6\x36\xd6\x07\x66\x1d\xa9\x3b\xae\xb8\xb6\xcf\x9c\xd2\xd8\x8b\x09\x64\xf6\x07\x53\xc4\xba\xe2\xda\x81\x2e\xbf\xe1\xdf\x58\xb8\x2a\xb3\x79\x8f\x67\x6e\x77\xcf\x9e\xa4\xc9\x64\xa2\xaa\xaa\xa2\x54\x2a\x85\x08\x21\x15\x11\x45\x86\x61\xc0\xed\x76\xa3\x9e\x9e\x1e\x34\x38\x38\xa8\xe9\xf5\xb6\xd7\x3f\x19\xac\xf9\x8f\xcf\x4c\xda\xff\xbb\x27\xc2\x3f\x85\x29\x62\xb3\x76\x5d\x71\xee\x91\x90\x41\x99\xd2\xb7\xd6\x8c\x4f\x4f\x4f\xd3\x4c\x20\xed\x81\x08\x67\xc1\x64\xb5\x48\xb6\x90\xae\xfe\xfe\x7e\xe8\xed\xed\x35\x69\x08\x3e\x78\x74\xd2\xf6\xdd\xd6\x75\x5d\x1f\xca\xff\x22\x30\x7b\x4e\xf3\xca\x8d\x00\x14\x04\xc2\x82\x55\x3c\x33\x5d\x2d\xfc\x72\xc1\x2a\x7e\x11\x63\xe4\x40\x28\x1c\x92\x42\xa1\x10\x49\x26\x93\x50\xf4\xd9\x12\x98\x4c\x26\xa8\xaa\xaa\x02\xb3\xd9\x8c\x1d\x0e\x07\x6b\x22\x9c\xa3\x3e\xcc\x3f\xd9\xba\xae\x7f\xb9\x3e\xc4\x1f\x63\x09\x18\x8a\xa3\x85\xd9\xa2\x89\xac\x1a\xf8\x59\xdf\xea\x33\xd7\xfd\x33\xd7\x7f\xfb\xdb\xdf\x96\x2a\x47\x39\xc2\x59\x12\x53\xd6\x41\x97\x93\x9e\x9e\x1e\x3c\x30\x30\x60\xc0\x80\xfa\x0e\xdc\x35\xfd\xa7\x81\xbb\xa6\x13\x98\x16\x19\xcc\x1f\x80\xf3\x64\xe3\xb3\x05\x10\x23\x3a\x65\x7c\xd5\x28\x8d\x86\xf4\xf2\xed\xb8\x56\xf5\xa5\x34\x24\xa0\x30\x44\xa0\x00\x44\x43\x90\x9e\x97\xb1\xc3\x28\xb2\x1e\x9b\xa0\x69\xab\x49\x68\xf6\x59\x05\x4d\x07\xa6\xa0\x47\x90\xa7\xb7\x8c\x0d\x40\x00\x8b\x96\xf4\xd9\x77\x7b\xd6\x5e\x7a\xef\xbd\xf7\x84\xbc\xb8\xd2\x7d\x49\xa9\x0f\xea\xb6\x5d\x56\x1e\x1d\x1d\x25\x89\x44\x22\x71\xe8\xd0\xa1\x2b\x97\x1b\x62\x7f\xb5\x62\x4e\x4f\x1c\x9d\xb4\xbd\x6a\x14\x59\xcb\x96\x4c\x17\x30\xab\x8d\xc6\xc5\x00\xf0\xf6\xa4\xa6\xcf\x2e\x68\xfa\xb2\xf7\x8a\xcb\x59\xf0\xd6\x8a\x07\xee\x52\xe7\x79\x7a\xfc\xa6\xf4\xc2\xa7\x2d\xe1\x7f\x44\x08\x61\x96\x7d\xf0\x7f\x2c\x51\x96\x28\xe6\x61\xb6\x90\xb7\x70\x38\x8c\x16\x17\x17\x95\xda\xba\xda\x50\xda\xc2\x8e\x8f\xd7\x08\xe3\x5a\x15\xbb\xaa\x13\x1a\xef\xc6\xb7\xa5\x19\x70\x86\x09\x50\xc8\x11\xf0\x9c\xa5\x02\x4c\x41\x79\x29\xe4\xbe\x73\xa5\x79\x9b\xb8\x32\x1f\xd1\x64\xc3\xfb\xc5\x18\x89\x25\xd2\xc5\x5d\xd1\x0f\x3f\x69\x09\xff\x8d\xa0\x51\xcf\xdd\xbd\x7b\x37\x3a\x3a\x3a\x9a\xad\xbe\x6c\x39\xee\x99\x70\x96\x25\x8a\x79\x07\x14\xdd\x47\x00\x1b\xa1\xd1\xa9\xa9\x29\x62\x30\x18\x62\x26\x87\x75\x6e\xde\x2e\x5e\x9d\xb3\xa7\xfc\xe6\x14\x5b\x67\x16\x19\xdb\x06\x4f\xca\xdf\xa5\xb6\xd9\x37\x50\xee\xba\x3c\xa6\xd0\x24\x85\x6c\xc5\x17\x67\x95\x60\x20\xb7\x5d\xc9\xab\xbf\xee\x0c\x7e\x7f\xde\x9a\xfa\xb1\x4a\xc9\xe8\xd5\xab\x57\xe3\x43\x43\x43\x59\x60\xc5\x84\xb3\x14\x66\x3b\x27\x5d\xb1\xd4\xd6\xd6\xc2\x13\x4f\x3c\xc1\x9a\x4c\x26\x0b\x02\xd4\x5e\x17\xd5\x3e\xd7\xe7\x33\x9e\x6c\x0c\xf1\xed\x0c\x45\xb8\x54\x17\xa2\x90\xf1\xe7\xa8\xb4\x3b\x41\x00\xb9\x8f\x8b\xb2\x2d\x70\x13\x43\x41\x62\xa8\x34\xe9\x14\x46\x46\x3c\xf1\x5f\x86\x75\xf2\x39\x00\x98\x59\x5a\x5a\x4a\x0c\x0d\x0d\x91\x48\x24\xf2\xa0\x45\x2a\xc8\xc7\x43\x93\xae\xae\x2e\xbc\x77\xef\x5e\xb6\xaa\xaa\xca\x06\x14\x9a\x8c\x69\xe6\x40\xfb\xaa\xfe\x68\x4b\x40\xdf\xe7\x48\x68\x5c\x9b\xcb\xcd\xb9\xa0\x40\x89\x1c\xe4\xf7\xf2\xbc\xbe\x08\x14\x54\x04\xca\x8a\x39\xed\x9b\xac\x16\x2e\x4d\x57\x0b\x1f\xa7\x35\xf4\x3a\x00\x2c\x04\x02\x81\xd8\xf0\xf0\x30\x79\x90\xe5\xa8\x72\xf2\x50\x2b\x28\x2b\x1d\x1d\x1d\xb8\xb3\xb3\x13\x5b\xad\x56\x03\x00\x38\x81\x42\xbd\x31\xcd\x74\x79\x22\xda\x47\xdc\x31\x6d\x6b\x75\x42\xe3\xb1\xa4\x58\x9b\x56\xc1\x1c\x2a\xd3\x82\x09\x02\x22\xb2\x44\x0c\xeb\xe5\xc0\x9a\x41\x5e\x58\x36\xa7\xc7\x97\xcc\xe9\xe1\x94\x86\x4c\x00\x82\x05\x42\x48\x60\x75\x75\x55\x1c\x1d\x1d\x25\x77\xef\xde\x05\x28\x3d\xb0\x54\x32\xf8\x6c\x8b\x29\xee\x62\xf9\x7c\xa0\x92\xed\x75\xdb\x8a\xcb\xe5\x82\xe6\xe6\x66\x68\x6c\x6c\x64\xf5\x7a\x3d\x0f\x00\x26\x00\xb0\x21\x40\x36\x4c\xc1\xa1\x55\xb0\x43\x27\x63\x9b\x56\xc1\x46\x86\x6c\x6c\x3d\x56\x18\x2a\xa5\x59\x12\x15\x34\x24\x20\xb1\x24\x40\x81\x86\x28\x40\x00\x00\x22\x08\xa1\x58\x28\x14\x92\x66\x67\x67\x95\xd9\xd9\x59\x28\xd3\x95\x2a\xc9\x77\xc5\x98\x7b\x22\x8a\xf7\x2b\x08\x21\xb0\x5a\xad\xe0\x76\xbb\xc1\xed\x76\x83\xc5\x62\x61\x8d\x46\x23\x66\x59\x96\x45\x08\xb1\x99\xed\x26\xb9\x17\x83\x10\x22\x00\xa0\x48\x92\xa4\x44\xa3\x51\x25\x10\x08\x90\xb5\xb5\x35\x58\x5e\x5e\x86\x78\x3c\xbe\x5d\x1e\xef\x89\x04\x56\x82\xf9\x5a\xba\xd8\xbd\x88\xdd\x6e\x2f\xf9\x1f\xa8\x1e\x94\xe0\x3d\x6c\xc1\x65\xce\x2b\xc1\xff\x3f\x2d\xf9\x5b\xf0\xb6\x73\x62\x59\x29\xf7\x56\xef\x6b\xe9\xf9\x3e\x30\x3b\x2e\x3d\x3f\x6c\xcc\xff\x01\x1e\x70\x67\x94\x89\x55\x05\x4a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x11\x5f\x41\x78\x79\x1c\x00\x00") + +func web_uiV2AssetsAppleTouchIcon72x72Da5dd17cb4f094262b19223464fc9541PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsAppleTouchIcon72x72Da5dd17cb4f094262b19223464fc9541Png, + "web_ui/v2/assets/apple-touch-icon-72x72-da5dd17cb4f094262b19223464fc9541.png", + ) +} + +func web_uiV2AssetsAppleTouchIcon72x72Da5dd17cb4f094262b19223464fc9541Png() (*asset, error) { + bytes, err := web_uiV2AssetsAppleTouchIcon72x72Da5dd17cb4f094262b19223464fc9541PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-72x72-da5dd17cb4f094262b19223464fc9541.png", size: 7289, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsAppleTouchIcon76x76C5fff53d5f3e96dbd2fe49c5cc472022Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x5f\x1f\xa0\xe0\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x4c\x00\x00\x00\x4c\x08\x06\x00\x00\x00\xc7\x97\x51\x2b\x00\x00\x1f\x26\x49\x44\x41\x54\x78\x9c\xed\x7c\x79\x70\x5b\xc7\x99\xe7\xaf\x1b\xef\x01\x0f\x07\x01\x10\x20\x48\xf0\xa6\x48\x8a\x14\x49\x89\xa2\x2e\x4b\xb6\x15\x5b\xbe\x64\x5b\x9a\xd8\x1e\x27\x93\xcd\x1e\x55\xa9\x6c\x65\x6a\xcf\xa9\xd9\x54\xca\x35\x7f\xa4\xb2\x53\x53\xbb\x99\xa9\xdd\xd4\x26\x95\x64\x77\x6a\xbc\x99\x4c\x36\x33\xc9\x78\x22\x27\x9e\xd8\x8e\x65\xc7\xd7\xc8\xb6\x4c\xdd\x12\x75\x92\xe2\x25\x8a\xa4\x48\x10\x04\x71\xe3\x01\x78\x47\xf7\xfe\x81\x83\x0f\x20\x40\x51\x87\x6b\xfe\xc9\xc7\x7a\x7c\xe8\xeb\xeb\xfe\xbe\xd7\xfd\xeb\xaf\xbf\xee\xf7\x08\x00\x8a\x55\x62\x65\xe1\x72\xba\x5d\xfa\x7a\x54\x5e\xb6\x1a\xaf\x8d\xd4\x71\x2f\xed\xb8\x27\x5e\xe4\x3e\x56\xfc\x3b\xfa\x1d\x6d\x8c\x3e\x8b\x1e\x57\x8d\x27\x05\x00\xb3\xd9\x7c\xaf\x75\xde\xcf\x36\xaf\xcb\xcb\x38\x24\x59\x85\xdf\x95\x70\xa7\x9c\x71\xb5\x3c\x6b\x2a\xa6\x94\xc2\xeb\xf5\xc2\xef\xf7\xc3\xeb\xf5\xc2\xeb\xf5\x52\x97\xcb\x45\x4d\x26\x93\x40\x41\xa8\xa0\x13\x33\xe5\x10\x00\x80\x51\x68\x1a\xe5\x0a\x03\x67\xd9\x6c\x56\x8b\xc7\xe3\x2c\x12\x89\xb0\x60\x30\x88\xa5\xa5\x25\x84\xc3\xe1\x4a\x75\x1b\xdb\x50\x2d\xbe\x62\xdb\x36\xca\xeb\x4e\x31\xec\x8e\xc1\x96\x52\x8a\xb6\xb6\x36\x74\x75\x75\xa1\xa9\xa9\x49\xa8\x31\xdb\x6c\x75\x29\xb1\xbb\x21\x61\xde\x5d\x97\x12\xb7\xb9\x65\xa1\xdb\x99\x15\x5a\x2c\x1a\x75\x0b\x3a\x71\x10\x40\x00\xc0\x38\xe1\x9a\x46\xb9\x9c\x16\x59\x28\x2e\xe9\xf3\x51\xab\x3a\xbe\x6c\x57\x2f\x2f\x39\x95\xb3\x2b\x36\x75\x26\x91\x4e\x65\xe6\xe6\xe6\xb4\xc9\xc9\x49\x2c\x2e\x2e\x82\x73\x7e\x27\xcd\xba\x6b\xfa\xcc\x40\xbf\xa6\xa6\x06\xfd\xfd\xfd\xe8\xe9\xe9\x11\xdc\x82\xcd\xd3\xb9\x62\x7d\xb2\x3b\x64\xfb\x7c\x73\xcc\xbc\xdf\xa2\xd1\x26\x02\x52\xb5\x2c\xcf\x37\xac\xfc\x9e\x4b\xe3\x4c\x16\xd9\xec\x5c\x6d\xe6\xd8\x64\x5d\xfa\xcd\x19\x4f\xe6\xe3\x88\x1c\x8f\x8f\x8d\x8d\x69\xd7\xae\x5d\x43\x36\x9b\xfd\x2c\xc4\x29\x52\xf5\x56\xdf\x25\xb9\x5c\x2e\xba\x73\xe7\x4e\x74\x75\x75\x49\x8d\x49\x69\x70\xfb\x82\xe3\x0f\xbb\x43\xd6\x17\x44\x9d\x7a\x6e\x5f\xda\xa8\x9a\x8d\xa4\x73\x64\x05\x16\x18\xab\x97\x8f\x5c\x6a\x4a\xfe\x38\x20\xca\xe3\xe3\xe3\xe3\xca\xf0\xf0\x30\xab\xc6\xe1\x5e\xa9\xbc\x75\x05\xdc\x5a\xef\xb7\x31\x2f\x8c\xf1\xfb\xf6\xed\xa3\xfd\xfd\xfd\xe6\xb6\xa4\x7d\xdf\xbe\x9b\xce\x97\x5a\xa3\x96\x67\xc8\x9a\x1e\x5c\xe8\x33\xeb\x35\x29\x97\x5e\x49\x7d\x25\x71\x86\x00\x03\x94\x69\x6f\xfa\xb5\x93\x1d\xf1\xff\xb5\x68\x91\xaf\x8c\x8c\x8c\x28\x17\x2e\x5c\xa8\xa6\xb8\x4a\xf2\x54\x4a\x5f\x93\xaf\x1a\xe8\xc3\x10\x87\x75\xf2\x30\x00\xb4\xad\xad\x0d\xfb\xf7\xef\x17\x9a\x4c\xae\xce\xcf\x4d\xbb\xff\xb4\x2b\x64\xfd\x22\x05\x11\x0a\x32\xdd\x8e\x56\x87\x1b\x2a\x75\xa2\xb5\x99\x2a\x8d\xd7\xfc\x9d\x11\x9e\xb9\xe6\x4f\xfd\xbf\xe1\x8e\xd8\x5f\xdc\x4a\x86\x16\x8e\x1d\x3b\xc6\x42\xa1\x50\x79\xdb\x37\x8a\xc5\x6b\xca\x98\x0c\x4d\xa9\x34\x16\x48\x85\xe6\x17\xc3\x94\x52\xf2\xe0\x83\x0f\xe2\xa1\x7d\x0f\x3a\xf6\x84\xbc\xff\xf6\xf0\xb5\xba\xbf\xab\x4f\x99\xf7\x10\x10\x5a\x10\x94\x80\x83\x10\x80\x20\x87\x5a\x84\x73\x10\x42\x8a\x8c\x09\x38\xc0\x09\x40\x56\x2b\xcb\xe5\xe7\x20\x9c\xe4\xee\x85\xb2\xe0\xf9\x74\x63\x3c\x5f\x0d\x13\x80\x72\x08\x0d\x09\xcb\xee\xbe\x25\xfb\x1f\xe8\x6e\xf1\x56\xdd\xce\xae\x29\x45\x51\xb4\x60\x30\x48\xf2\x42\x97\xcb\xc4\x50\x59\x76\xa3\x4e\x0a\x1d\x87\x98\xf2\x4a\xd8\xe8\x55\x50\x1a\x77\x38\x1c\xe4\xd9\x67\x9f\xa5\xfd\xcd\x5d\xad\x87\x47\xeb\xfe\xef\xd0\x2d\xc7\xd7\x4d\x9c\x58\x8b\x0f\x3b\x5f\x55\x5e\x17\x25\x1d\x85\x1b\x9a\xc7\x01\x26\x9b\x59\x3a\x6a\xd3\x56\x42\x76\x35\xb8\x62\x57\x97\xa3\x36\x6d\x25\x69\xd1\x13\xaa\xc0\x14\xc2\x89\x49\xe0\xb9\xde\x5a\xe9\xd1\x92\xfc\x3f\x4e\x56\xa7\x11\x0e\x40\xd4\x89\x73\x73\xc8\xf6\x62\x8d\x2a\xb8\x95\x41\xef\xb1\x99\x99\x19\x2d\x9d\x4e\xaf\x2b\xd3\x6d\xe4\x06\x00\x2e\x54\xd1\xec\xba\xe4\xf1\x78\xe8\xd3\x4f\x3f\x2d\x74\xc2\xb3\xfb\xf7\xce\xd7\xfd\xd4\x99\x11\xba\x0d\x0a\x00\xc0\xf3\x7d\x21\x17\x61\xac\x51\xa7\x9c\x05\x6a\x94\xf9\x9b\x9e\xcc\xd8\x82\x33\x3b\xb6\x62\x57\x27\x32\x22\x0b\x70\x20\x09\xf0\x0c\x07\x34\x00\x20\x84\x08\xe0\xb0\x11\xc0\x69\x57\x4c\x4d\xbe\x84\xd8\xdb\x12\xb3\xf4\xb7\x47\xa4\x1e\x4f\x4a\xac\x2f\xa8\x87\xaf\x56\xba\x5a\xe7\xaa\x7c\x74\xd9\xae\x6a\x94\x52\xb3\xd3\xe9\xcc\xe4\x6d\x37\x23\xdd\x0e\xcb\xd6\x90\x80\xea\x00\x57\x11\xf4\x7d\x3e\x1f\x3d\x74\xe8\x90\xb0\x39\xe5\x7c\xe6\xf0\xb5\xba\x9f\x58\x34\xea\xa9\x66\x00\x80\x10\x80\x73\x70\x02\x84\x6d\x5a\xe8\x4a\x63\x72\x78\xc2\x97\xfe\xa7\xa4\x59\xbf\x02\x82\x05\x00\x51\x00\x32\xe7\x5c\xd1\x34\x4d\xcb\x64\x32\xc8\x66\xb3\x0c\x00\x95\x24\x09\x16\x8b\x85\x8a\xa2\x48\x93\x16\x5d\x4a\x5a\x74\xdb\x8d\xba\x4c\xdd\x27\x3c\xd6\xe2\x91\x85\xa1\xbe\x25\xfb\x13\xfd\x01\xfb\x6e\x9b\x4a\x1d\xb9\x2e\x96\x1b\xb2\x3c\x3f\x4c\x39\x01\xae\x35\xc8\xc3\x97\x9a\x92\x3f\xcf\x66\xb3\x72\x20\x10\x28\x97\x8b\x56\x08\x57\x73\x10\x14\xf5\x50\xcd\x0e\xab\x08\x90\x3e\x9f\x0f\x87\x0e\x1d\x12\xfa\x12\xae\x17\x9e\x1d\xf5\xfe\x58\x64\xd4\x51\x0d\xd4\x73\xea\xe3\x58\xb6\xab\x81\x53\xed\xf1\x37\xa6\xeb\xd2\x6f\x33\xf0\x31\x00\x41\x55\x55\xe5\xc5\xc5\x45\x65\x61\x61\x01\xc1\x60\x10\xb1\x58\x0c\x99\x4c\xa6\x52\xdd\x00\xc0\x5a\x5b\x5b\xa9\xd7\xeb\x45\x73\x73\x33\x6d\x6c\x6c\x14\x28\xa5\x4e\x00\x4d\xa2\x4e\xb6\xf6\x07\xec\xbf\xbf\x67\xd6\x79\xd0\xae\xe4\x15\x97\xa7\x65\xbb\x32\xff\xea\x50\xf0\x3f\x28\x26\x76\xec\x83\x0f\x3e\x90\xa7\xa7\xa7\x0b\xbc\x51\xce\xbf\x8a\x22\x2b\xb6\xe7\x76\x86\x6b\x31\xb3\xc3\xe1\xc0\xf3\xcf\x3f\x2f\x6c\x51\x3c\xcf\x3c\x77\xa5\xee\xe7\x22\xa3\x8e\x75\xca\x21\x2d\xe8\xf2\xa7\x9d\xb1\x37\xae\x36\xa4\x5e\xe1\x14\x97\x18\x63\xc1\x5b\xb7\x6e\x29\xa3\xa3\xa3\x6c\x6e\x6e\x0e\xba\xae\xdf\x95\x8b\xc6\x62\xb1\xa0\xab\xab\x0b\xbd\xbd\xbd\xd4\xe7\xf3\xd9\x00\x34\x99\x35\xf2\xc0\x9e\x59\xe7\x57\x76\xcc\xd7\x1c\x10\x38\xa1\x19\x81\xc9\xff\xb0\x63\xe9\xa5\xa8\x4d\x3b\x72\xf9\xf2\xe5\xf0\x89\x13\x27\xee\xb4\x9a\xaa\xb4\x21\xc3\x55\x14\x45\xfa\xdc\x73\xcf\xd1\x1e\xc9\xff\xc0\x1f\x8c\xd4\xbf\x6e\xd1\x48\xdd\x7a\xf9\x67\x3c\x99\xb1\xf7\x7b\xc2\x3f\x4c\x9a\xf5\x0f\x01\xcc\x4f\x4e\x4e\xca\xe7\xcf\x9f\x47\x2c\x16\xbb\xaf\x06\x65\x63\x63\x23\xdd\xbd\x7b\x37\x6d\x6c\x6c\x74\x80\xa3\xbb\x3e\x29\x7e\xfe\xe0\x75\xcf\xd7\x4e\xb6\xc7\x8f\x4c\xfa\xd2\xdf\x0f\x04\x02\xf3\x6f\xbc\xf1\x86\x76\x3f\xeb\x2c\xf4\xb0\x4a\x82\x14\xe3\x1f\x7f\xfc\x71\x3a\xd0\xbe\xb9\xe3\xcb\x17\x1a\xde\xae\x4d\x8b\x3d\xd5\x98\x31\x70\x76\xb2\x23\x7e\xf4\x4c\x5b\xfc\x87\x9c\x60\x24\x14\x0a\x85\x87\x87\x87\x59\x20\x10\xf8\xcc\x2c\x6f\x00\xd8\xbc\x79\x33\xdd\xbb\x77\xaf\x60\xb3\xd9\xea\x4d\x0c\x1d\x3a\x41\x40\x4e\xcb\xb3\xaf\xbd\xf6\x9a\x26\xcb\xf2\x7d\xad\xbb\x92\xc2\x4a\x40\xb0\xa7\xa7\x87\x1e\x78\xf4\x80\xf3\xf0\x35\xef\x8f\x37\x87\x6c\x2f\x96\x1b\x96\x05\x98\xd5\x08\xd7\xde\xdd\xb2\xf2\x37\xe3\xbe\xf4\x8f\x38\xf8\xd8\xc8\xc8\x88\x7c\xf6\xec\x59\x70\xce\x2b\x5a\xcc\x95\xea\xaa\x10\x7f\xbb\xbc\xc5\xdf\x16\x8b\x85\xee\xdd\xbb\x17\xdd\xdd\xdd\x42\x2c\x16\x63\x1f\x7f\xfc\x31\x5b\x5e\x5e\xae\xa8\xac\xb6\xb6\x36\xba\x6b\xd7\x2e\xea\xf3\xf9\xcc\x00\x20\xcb\xb2\x36\x36\x36\xa6\x9d\x3d\x7b\xb6\x12\x9e\x55\xb5\xf4\x81\x32\x80\xab\xa9\xa9\xc1\x17\xbe\xf0\x05\xf3\xd0\x4a\xed\xd7\x9e\x1a\xaf\xfd\x21\xa9\xb2\xac\xd1\x28\xb4\xb7\xfa\x43\xff\xfb\x86\x37\xf3\x23\x45\x51\xa6\x3f\xfc\xf0\x43\x65\x76\x76\xb6\x3c\xdb\x46\x5c\xd4\xf7\x12\x77\xbb\xfa\x00\x80\xf5\xf7\xf7\xd3\x47\x1e\xda\xef\xd8\x33\xe7\xfc\x8f\x5b\x17\xec\x5f\x31\xeb\xd4\x76\xd3\x93\xf9\xf8\x93\xce\xe8\x9f\x4d\x44\x6f\xcd\xbc\xf5\xd6\x5b\x4c\xd7\xf5\xaa\xbc\x8c\x96\x3e\xca\x7e\xe3\xc0\x81\x03\x68\x73\xf8\x7a\x3f\x7f\xb5\xee\x27\x22\xa3\xb6\xd5\x2c\xab\x17\x23\x60\xef\x6c\x59\x79\x79\xaa\x2e\xf3\x97\xe9\x4c\x7a\xea\x37\xbf\xf9\x8d\x6a\x98\xc2\x8d\x54\x8e\x97\xd5\x56\x16\x77\x1b\x77\xdb\x3c\x1e\x8f\x87\x3c\xf5\xd4\x53\xd2\xe7\x66\x6a\xff\xec\x81\x59\xe7\xb7\x2c\xba\xa9\x4e\xe0\xc4\xe5\x95\xc5\xc1\xf6\x88\x74\x60\xb6\x9b\xfc\x5a\x07\x4b\x2e\x2e\x2e\x56\xe5\x55\xe8\x72\x6b\xae\xd6\xd6\x56\x74\xb4\x77\x38\x1e\xbe\xe1\xfe\xa6\xa4\xd2\x3a\x70\xe4\x7c\x4e\x85\x3b\x72\xc3\x71\xb8\x23\xf6\xda\x84\x2f\xfd\x72\x3a\x93\x9e\x7e\xeb\xad\xb7\xb4\x70\x38\x5c\x91\xdf\x7d\xbe\x70\x9b\x70\xc5\xab\xbb\xbb\x1b\x16\x08\xfe\xc1\x05\xc7\xd7\x0a\x72\x14\x2e\x8f\x2c\x0c\x6e\x0a\x4b\x87\x7a\x7b\x7b\x85\xf5\x78\x54\xea\xd6\x14\x00\x76\xef\xde\x4d\x7d\x49\xf1\x81\x2d\x4b\xb6\x2f\x16\x6c\xea\x92\x3b\x07\xa6\xbd\x99\x91\x73\xad\x89\xef\x69\xba\x36\xf9\xde\x7b\xef\x15\x94\xf5\x59\xd1\x46\x4d\x90\xaa\xf9\x1a\x1a\x1a\xa8\x45\xa3\xf5\x22\x23\xce\xd2\x71\x02\x10\x0e\x38\x33\x42\x9f\xc3\xe1\x30\xae\x7e\xd6\x7a\x8d\xcb\x22\x29\x00\xb4\xb7\xb7\x53\x5f\x9d\xcf\xb1\xf7\xa6\xf3\xeb\x84\x13\x81\xe7\x97\xba\xc6\x4b\x36\xeb\xf1\xf7\x7b\xc2\xff\x83\x13\x5c\x3b\x71\xe2\x44\x26\x3f\x0c\x8d\xfc\x68\xd9\x55\x1e\xb7\x91\x3c\xe5\x0d\x5e\x8f\x57\xb9\x80\x6b\xf2\x65\xb3\x59\x26\x9b\xf5\x64\x4c\xd2\x03\x9c\x10\x70\x52\x90\x27\xb7\xbe\x0d\xd4\x64\x27\x50\xd9\xb8\x2d\xf2\x2a\x67\x0a\x00\x18\x1a\x1a\xa2\x1e\x59\x18\xea\x5c\xb1\x1e\xcc\xad\x39\xf2\x6b\x50\xb2\x7a\x7d\xd2\x19\xfd\x99\x2c\xea\xc7\xa7\xa7\xa7\xe3\xa3\xa3\xa3\x65\x72\x55\x7c\xca\x95\x84\xaf\x94\x67\x23\xbd\xb4\xda\x8c\xbb\x6e\xdc\xe2\xe2\x22\x18\x78\xe0\x58\x77\xe4\xaf\x35\xca\x14\x00\xc5\x2e\x76\xa5\x31\x75\xec\x96\x4b\x39\x1e\x08\x04\xb4\xf5\x78\xad\x59\x7c\x7b\xbd\x5e\xd4\xd7\xd7\x4b\xdb\x27\x1d\x5f\xa5\x20\x42\x25\x0f\x41\xa0\x26\x3b\x3d\xd6\x20\xff\x3c\x93\xc9\x04\x8f\x1f\x3f\xbe\x01\xf9\xee\x88\x36\xaa\xd8\x3b\xe1\x01\x00\x18\x1d\x1d\x45\x5f\x5f\x5f\xf4\x86\x07\x3f\x7d\x65\xe7\x52\xa4\x37\x68\x7f\xda\xa2\x11\xdb\x6c\x6d\x66\xe4\x86\x37\xf3\x0a\x07\x9f\x31\x98\x16\x15\x79\x15\x00\xae\x48\xbd\xbd\xbd\xd4\xac\x53\x7f\x4f\xd0\x76\xa8\xf2\x3a\x91\xe3\x54\x7b\xfc\xef\x39\xc1\xf8\xb9\x73\xe7\xb4\x4c\x26\x73\xa7\xb8\x75\xc7\x1e\x82\xfb\x45\x9a\xa6\xe1\xe8\xd1\xa3\x38\x74\xe8\xd0\x0c\x71\xbb\xff\xf6\xc4\xa6\xd8\x51\xe4\x74\x10\xd5\x34\x2d\x74\xfc\xf8\x71\x65\x61\x61\x61\xdd\xb6\x15\xbc\x15\x00\xc0\x08\x21\xb4\xbb\xbb\x5b\x68\x8f\x48\x8f\x4b\x1a\xad\x23\x06\x57\x71\x81\x56\xec\xea\xec\x8c\x27\xf3\x66\x22\x91\x88\x5f\xbb\x76\xed\x76\x6e\xeb\x4a\x8b\xdc\xdb\xba\xba\x0d\xf1\x1b\x31\x5e\xd7\x8b\x5f\xc3\x3f\x99\x4c\xb2\x23\x47\x8e\xb0\xde\xde\xde\x70\x63\x63\x63\x58\x10\x04\x44\xa3\x51\x8c\x8e\x8e\x22\x95\x4a\x95\x7b\x2d\xd6\xf0\x2a\x99\x11\x7c\x3e\x1f\x2c\x16\x8b\xd4\x75\xc3\xfa\x2c\xe1\x24\xe7\xfc\xe3\xa5\x8e\x9b\x2b\xfe\xd4\xbb\x9c\x60\xe6\xd2\xa5\x4b\x5a\x19\xd3\x75\xdd\xd8\x15\x1a\x52\x9e\xbf\x3c\x5c\xcd\xaa\xaf\x14\xb7\x6e\x99\x81\x81\x01\xda\xd6\xd6\x26\x48\x92\x84\x6c\x36\x8b\xa9\xa9\x29\x76\xfd\xfa\x75\x76\xfd\xfa\xf5\x62\xde\x81\x81\x01\xda\xd7\xd7\x27\x38\x1c\x0e\x81\x73\xce\x6e\xdd\xba\xa5\x5d\xb8\x70\x81\xae\xac\xac\x94\xf0\x2a\xc1\xb0\xd6\xd6\x56\x98\x38\xf1\xb4\x46\xa5\x7d\x20\x39\x77\x72\x8e\x72\x3e\x26\x9d\x42\x1b\xf7\xc9\x6f\xa9\xaa\x1a\x9f\x9c\x9c\x84\x81\x51\xc9\x53\x58\x27\x4c\xab\xc5\x39\x9d\x4e\xf8\x7c\x3e\x38\x1c\x0e\xaa\xaa\x2a\x62\xb1\x18\xbd\x75\xeb\x56\xb9\xf2\xab\x96\xaf\x94\x6e\xb5\x5a\xf1\xcc\x33\xcf\x08\x1d\x4e\x7f\xcb\xf6\x05\xc7\x57\x3d\x41\xa1\x3b\x64\x57\xaf\x5e\x7c\xb0\xed\x6f\x7b\x7a\x7a\x02\xef\xbc\xf3\x0e\xd3\x75\x9d\x3e\xf5\xd4\x53\xd8\xd2\xb8\xa9\x69\xef\x4d\xe7\x37\xda\x26\xa5\x47\x32\x22\x0b\x5f\x6c\xae\xfd\x51\xfb\xf3\xed\x6f\x7c\xf0\xe1\x07\xca\xcc\xcc\x0c\xf2\x8a\xa5\x25\x18\xd6\xd2\xd2\x22\xb8\xd3\x42\x8f\x5d\xa1\xfe\xe2\x40\x24\xab\x5e\xcd\x80\x53\x19\x97\xcd\x6c\x6c\x76\x7a\x56\xc9\x3b\xfa\xee\x99\x3a\x3b\x3b\xe9\xd0\xd0\x10\xad\xf3\x78\x25\x8b\xcc\x9a\x84\x2c\xf7\x73\x4a\x32\x59\x1b\x99\x55\x04\x1e\x9d\x9a\x9a\x52\xce\x9e\x3d\x8b\x64\x32\x79\xc7\xf5\x1d\x38\x70\x40\xe8\xb6\x37\xf6\x7f\xe9\x5c\xfd\x5b\x36\x85\xb6\x00\x40\xd7\xb2\x15\x7d\x01\xfb\x57\x8e\xec\x20\x9f\x3f\x70\xe0\xc0\x64\x2c\x16\x43\x77\x4b\x87\xff\x0b\xe7\xeb\xdf\xac\x4b\x09\x43\x20\x00\x4f\x13\x34\xc6\xcd\x8f\x8b\x9b\xc9\x1f\xa9\x8f\x3c\xf2\xd7\xc1\x60\x50\x93\x65\x19\x28\xef\x61\x5e\xaf\x57\x68\x5c\xb6\xec\x2c\xd9\x64\xe5\x05\xbf\x39\xc1\xac\x3b\x73\x1e\x04\xa1\xbc\xc6\x37\x02\xde\xeb\x2e\x98\x0f\x1e\x3c\x48\x3b\x5b\xda\x3d\xbe\x19\xe5\x6b\xde\xcb\xa9\xaf\x8a\x19\xde\x0d\x70\x0a\x10\x70\x02\x39\x55\x6b\x3a\xe6\xea\xee\xfc\x5e\xe7\x97\x3a\x8f\x7f\xf2\xc9\x27\xca\xc4\xc4\xc4\x86\x95\xe6\xf3\xf9\x68\x4b\x4b\x8b\xf4\xd0\xa8\xf3\x4f\xed\xaa\xa9\xc5\xe8\x08\x76\x65\x85\x9e\x3d\xb3\x35\x2f\x25\xbb\x3b\xfe\x18\x80\xd6\x13\xb0\x7d\xd9\x2b\x0b\x43\x05\x53\x20\xff\x9f\xee\xbd\xe9\xfc\x93\xab\x8d\xa9\xd7\x36\x6f\xde\x1c\xbc\x78\xf1\x22\x00\x03\xe8\x7b\x3c\x1e\x98\x4c\x26\xc1\x9b\x12\x07\x8a\x88\x45\x56\xe1\x9e\x03\x58\x74\x66\xcf\x71\xce\x0b\xee\xde\x75\x5d\x42\xeb\x10\x13\x04\x81\x3e\xfd\xf4\xd3\xb4\xa3\xb6\xb1\xa7\xf3\xa4\xfc\x53\x29\xa1\xef\x5e\xed\xd0\x79\x47\x33\x27\x36\xc7\x8a\x76\xc8\x11\xd6\x0f\x2e\x75\x99\xff\xfc\xc0\xa3\x07\xbe\x43\x29\x95\xaf\x5f\xbf\x6e\xac\xbb\x6a\x7d\x4d\x4d\x4d\x20\x20\xce\xfa\xa4\x79\x67\xe9\xb4\x95\x53\x47\x43\xc2\xbc\x1b\x80\x03\x80\xec\x4e\x0b\x03\x64\xcd\x26\x28\x87\x4d\x35\x35\x89\x3a\xa9\x77\xbb\xdd\xc1\x42\x6c\xa1\x87\x31\x97\xcb\x45\x09\x21\x52\x6d\x5a\xe8\xe0\x15\x8c\x2f\x0e\xce\x56\xec\xea\xb5\x44\x22\xa1\x19\x66\x93\xa2\x12\x50\x19\x5f\x50\x16\xcf\x00\xd0\x3d\x7b\xf6\xa0\xb5\xa1\xc9\xdf\x79\x42\x7e\xc5\x9a\xd4\x07\x4b\x72\x93\xd5\x25\x58\xfe\x26\x34\x4c\x29\xff\x55\x17\x49\xea\xe1\x87\x1f\xfe\x41\x20\x10\x50\x62\xb1\x58\xb1\x8e\xda\xda\x5a\xda\xd5\xd5\x05\xab\xd5\x0a\x55\x55\x71\xf3\xe6\x4d\x2c\x2e\x2e\x42\x10\x04\x00\xa0\x29\xb3\x1e\x75\xa7\xc5\x72\x7d\x21\x21\xe9\x51\x42\x08\x05\x80\xa0\x43\xb9\xc1\xd7\x2c\xd5\x09\x62\x92\x1a\x50\x4c\x3c\x63\x88\x2c\xce\x92\xd4\xe5\x72\x01\x80\xe4\xcc\x08\x7e\x52\x61\xcf\x39\x23\xb0\xb8\x6c\x66\x81\x48\x20\x52\xc9\x6d\xb2\x91\x75\x1e\x2b\xd4\x33\x30\x30\x20\x35\x4c\x28\x5f\x97\x92\xfa\xe0\x1a\x6f\x11\x2f\x77\x21\x71\x10\x0e\x34\x8e\x67\xbf\x15\x6b\xb0\xbf\xbf\x6f\xdf\xbe\x91\xdf\xfe\xf6\xb7\x20\x84\x60\xcf\x9e\x3d\x18\xda\xb6\xdd\xb6\x29\x62\xdd\x5f\x9f\x34\x0f\xc6\x6b\xb5\xd9\xc9\x81\xed\xef\x4e\xcc\xdd\x88\xde\xbc\x79\x13\x20\x48\x9e\x6b\x49\xbc\xd1\x14\xb3\x0c\x51\x83\x3c\x0c\x9c\x5d\xf1\x27\x7f\x0b\x40\x06\xa0\x4c\xd5\xa5\xdf\x9d\x77\x65\xff\x75\x6b\x4c\xda\x82\x7c\xed\x8c\x70\x36\xbc\x29\xf6\xf7\x20\x08\xe7\xbd\x17\x45\x4b\x9f\x01\x80\x24\x49\x14\x1c\x66\xab\x4a\xdd\xc6\xad\xab\xc2\xf0\x94\xcd\x2c\xca\xc0\x93\x79\xf0\xbd\x5b\xc0\x67\x3d\x3d\x3d\xd4\xc4\x49\x9d\x77\x5e\xfd\x37\x64\x8d\x72\x50\x21\x9c\x83\x06\xca\xe0\xf0\xcc\xab\x5f\x69\xed\x6e\x1d\x03\x20\x6f\xdb\xb6\x8d\xee\x1a\x1c\xf2\x1c\xbe\x5a\xf7\xf2\xa6\xb0\xf4\x62\xc1\x06\xda\x33\xab\x5d\x7a\x6d\x90\xfe\x0b\x8b\xc5\x32\x9e\x4c\x26\x93\x37\xbc\xf8\xc5\x3b\x7d\xe1\xfa\x7d\x33\xce\x17\x6b\xb2\x26\x4f\x4c\xd2\xc3\xa7\xda\x63\x47\x66\x6b\xb3\xbf\x5e\x59\x59\x91\xc7\xc7\xc7\xd9\xbe\x7d\xfb\xc6\xdf\xd8\x16\x7a\x69\x68\xde\xf1\x87\x2d\x31\xa9\x3f\x2d\xea\xc9\xcb\x8d\xa9\xa3\xb7\x5c\xd9\xbf\x4b\xa5\x52\x71\xe3\x06\x4a\x11\xf4\x2d\x16\x0b\x28\x87\x24\xea\xc4\x56\xba\x6b\x96\x9b\x26\xd3\xa2\x1e\x07\xa0\x24\x93\xc9\xbb\xd4\x55\x8e\x1a\x1b\x1b\xa9\x35\xc1\x86\x4c\x0a\xaf\x2f\x2a\xc4\xa0\xaa\x8a\xdb\xec\x79\x1d\xd6\xac\x68\xfb\xe9\x66\xb3\x63\x60\x60\x20\xb3\x6b\xd7\x2e\xf3\xb6\x05\xc7\xd7\x36\x85\xa5\x17\x8b\xdb\xe6\x20\xa8\x4d\x8b\x83\x8f\x4c\xbb\xbf\x9d\xec\xd3\xbf\x7a\xf2\xd4\xc9\xe4\xd0\xd0\xd0\xe4\x75\x1f\xff\xce\x84\x4f\x7e\xdd\xc4\x88\x47\xa3\x3c\xc4\xc1\x27\x55\x55\x9d\xff\xe8\xa3\x8f\x58\x28\x14\x62\x2e\x97\x2b\xde\xd7\xd7\xf7\xf1\xe9\xb6\xf8\xf8\x69\xc4\x3d\x00\x14\x00\x81\x74\x3a\x1d\x3a\x7a\xf4\xa8\xa6\x69\x5a\xb1\x83\x18\xf7\x25\x41\x39\x11\x08\x08\x25\x46\x08\xe3\xb9\xfd\x45\x9d\x42\x21\x84\x94\x5b\xd7\x40\x29\x00\x1b\xc3\xc6\xb8\x62\xbc\xc7\xe3\xa1\x62\x98\x75\x80\x1b\x9e\x0a\x21\x30\x98\x7c\x39\x45\xe5\xff\x71\x4e\x8a\xbb\xdb\x62\x86\xfb\x01\xd8\xf6\xee\xdd\x0b\x41\x10\x6c\xed\x11\xe9\xe9\x02\x58\xe7\x6e\xb9\xff\xad\x11\xcb\x23\x94\xc3\x23\x08\x42\xf2\xf5\xd7\x5f\xd7\xf6\xed\xdb\x37\xd3\xd2\xd2\xb2\xc0\x28\xa5\x8c\x31\x76\xf3\xe6\x4d\xe5\xcc\x99\x33\x88\xc5\x62\x00\x80\xe3\xc7\x8f\xb3\xe9\xe9\xe9\xe4\x96\x2d\x5b\x26\xeb\xea\xea\xa8\xaa\xaa\x98\x9f\x9f\x67\x97\x2f\x5f\x36\x6e\xff\x01\x46\x0c\x03\x40\x4b\x07\x83\xd1\x0e\xe3\x05\x81\x2b\x2d\x79\xca\xc3\xd5\xdc\xc9\x45\xf0\xe7\x84\x80\x90\x82\x81\x67\x9c\xca\xf3\x55\x16\xaa\xe6\x86\x27\x97\x3b\x82\x91\x33\x1e\x73\x80\x2e\x68\xc5\x16\xf3\x92\x7e\xaa\x99\x38\xe3\x04\xe6\x9a\x9a\x1a\xc4\x62\x31\xe4\x31\x4f\x31\xec\x2f\x18\xdb\x05\x00\x74\x61\x61\x01\x4b\x4b\x4b\x90\x24\x89\x71\xce\x91\xdf\x3c\x59\x23\x97\xd1\x0e\x63\x9c\x70\xc6\xc0\x19\xaf\x80\xe1\x82\x4e\xcc\x9c\xf3\x7b\xf6\x1c\xe8\xba\xce\xb2\x76\xd3\xbc\xd1\x60\x21\x86\xff\xab\xa0\xbf\xaa\x82\xc2\x8e\x76\xd6\x4e\x03\x1c\x50\xa2\x91\x08\xdc\x6e\x77\xe6\x9a\x3f\xf5\x41\x77\xc8\x7a\x80\x80\xc0\xc8\x6f\xb4\x5e\xfe\x98\x81\xc7\xa3\xd1\x28\x6a\x6a\x6a\xb0\x63\xc7\x0e\xb4\xb5\xb5\x09\x66\xd1\x4c\xd3\x99\x34\x9b\x9e\x9e\xd6\x46\x46\x46\x68\xfe\xf0\x1d\xb5\x58\x2c\xd8\xb3\x67\x0f\x7a\x36\x6f\x36\x5b\x89\x59\xd2\x28\xd7\x96\xc3\xa1\xcc\xe9\xd3\xa7\xd9\xfc\xfc\x7c\x89\x0c\x46\x4b\x9f\x32\x02\x4d\x35\x71\x59\xd4\xb9\xad\x60\x0f\x15\xc8\xaa\x52\x27\x0c\x66\xc8\x6d\x94\x54\x95\x42\xa1\x10\xb3\xb6\xb4\x4c\x66\xed\x74\x5e\x4a\xb1\x96\xe2\x40\x22\xab\xfd\xa4\xe4\xdc\x84\x21\x26\x56\x2f\x9c\x04\x20\x9f\x3c\x79\x12\xfb\xf6\xed\x93\x6f\x78\xc8\xaf\x3f\xee\x8a\x0e\x3c\x38\xe3\x7a\x51\xd4\x89\x99\x11\xb0\xd1\x86\xd4\xc9\x53\x1d\xb1\xff\xa3\xeb\x7a\x34\x1c\x0e\xe3\x85\x17\x5e\x10\x7a\x32\xee\xfd\xbb\x26\x6b\xfe\x93\x33\x2b\xb4\x84\xec\xea\xb5\x53\xdd\xb5\xdf\xdb\xb4\x69\xd3\xb5\x37\xdf\x7c\x93\xa5\x52\x29\x76\xf8\xf0\x61\xa1\x57\x6a\x1c\x7c\xec\xaa\xfb\xdb\x0d\x09\xf3\x03\x59\x81\x85\x2f\x36\xd7\xbc\x5c\xf7\xb4\xf7\xaf\x86\x4f\x9d\x90\xaf\x5c\xb9\x52\x82\x61\x00\x40\xd3\xe9\x34\x38\xb8\x92\x36\xeb\x71\xbb\x62\xaa\xe3\x65\xc7\x6c\xec\x8a\xa9\xce\xc4\x89\xe4\x74\x3a\xef\x56\x57\x00\x80\xe9\xe9\x69\xd6\xd2\xd2\x12\x58\xea\x34\xff\xb2\xed\x72\xe6\xbf\x94\xaa\x69\xf5\x11\xad\x4e\xd2\x04\x9c\x70\xa8\x12\x0d\x47\x9a\xc5\xd7\x15\x45\x49\xce\xcd\xcd\x31\x45\x51\x70\xf8\xf0\xe1\xc9\xf3\xcd\x89\xff\x76\xad\x21\xf5\xb6\x3b\x2d\x76\xa5\x2c\xfa\x52\xd2\xac\x9f\xe5\xe0\x63\xe7\xcf\x9f\x57\x1e\x7e\xf8\x61\xda\x93\x71\x1f\x7c\xe1\xb2\xef\x55\xca\x88\x04\x00\xb5\x29\xf1\x81\xb6\x88\xf4\x7b\x47\x86\xf0\xec\xa3\x8f\x3e\x3a\x92\x4a\xa5\xd0\xe2\xaa\xef\xf8\xfd\xb3\xbe\x7f\xb4\x67\x4d\x6d\x84\x00\x42\x96\x7a\x1e\xba\xe1\xfa\x8e\x89\x11\x97\xf6\xc0\x03\xdf\x9e\x9b\x9b\x53\x0a\x9b\xd0\x45\x2f\x82\x2c\xcb\x20\x84\x64\xe2\x16\x3d\xc8\x0b\x47\x6e\x0c\xc0\x62\xd6\x89\xc3\xae\x98\xfc\x4e\xa7\xb3\x92\x97\xb6\xa2\xe7\xd6\x10\x2e\xa6\x4f\x4d\x4d\x21\x9d\x4e\x47\x23\xcd\xc2\xcf\xa3\x8d\xc2\xe9\x55\xaf\x3a\x87\xe1\x14\xd9\xea\x2f\x02\x70\x4a\xb4\xd9\x41\xe9\xfb\x4c\x20\x57\xae\x5c\xb9\xa2\x01\xa0\x4b\x4b\x4b\xec\xe8\xd1\xa3\x4a\x38\x1c\x1e\xcf\x8a\xfc\xb5\x25\xa7\xf2\xfd\xa4\x45\xff\x59\x4a\x4e\x8d\x7c\xf4\xd1\x47\xc9\x48\x24\x02\x67\x8d\xd3\xb1\x67\xd6\xf9\x52\x41\x59\xc8\xd7\x64\x51\x69\xdd\xae\xf9\x9a\x6f\xb4\xb4\xb4\x48\xbd\xbd\xbd\xe6\xde\xa0\xed\x4b\x76\x85\xb6\x01\x58\x9d\x8b\x40\xb0\x63\xbe\xe6\x3f\x4b\x44\xf4\xf7\xf5\xf5\x15\xe5\x29\xf6\xb0\x64\x32\x09\xce\x79\x26\x6c\x53\x67\x37\x85\xa5\x7d\x25\xcf\x39\xa7\x38\xea\x4b\x9a\xfb\x97\xbd\xde\x93\x84\x10\x6a\x38\xb5\x7c\x3b\x0f\x42\x49\x9c\xa6\x69\x18\x1e\x1e\xd6\x9e\x78\xe2\x89\xf1\xd9\x6d\xd2\xb7\x74\x31\xfb\x4d\xef\xac\xfa\x88\xf1\x50\x5d\xd1\x0e\x24\x04\x9a\x85\xc4\x67\x07\xa5\xbf\x4a\x7a\x4c\xff\x10\x89\x44\x42\x97\x2e\x5d\x02\xf2\x80\x1d\x08\x04\xf0\xab\x5f\xfd\x8a\xd5\xd6\xd6\xca\x1e\x8f\x47\x4e\xa5\x52\x58\x5a\x5a\x02\xe7\x9c\xed\xdc\xb9\x93\x02\x70\x38\x33\x42\x47\x71\x16\x29\x1e\x5c\xe3\x70\xa5\x85\x6e\xce\xb9\x0d\x80\x6c\xcf\x9a\xba\x0c\x53\x33\x0a\x99\x45\x9d\x38\x2d\x1a\xf1\x7b\xbd\xde\xf9\x82\x10\x45\x0c\x5b\x59\x59\xa1\x00\x94\x90\x43\x9d\x04\x48\xbe\x6c\xe9\x22\xbc\x39\x66\xde\x33\x5d\x27\xfd\xcc\xe5\x72\x69\xd1\x68\xf4\xae\x71\x6c\x7a\x7a\x1a\x5e\xaf\x37\x39\x34\x34\x74\x72\xbe\xdf\xf2\x52\xb8\x49\xfc\xbc\x77\x4e\x39\xe4\x08\xeb\x9d\x82\xc2\x6d\x9c\x80\x65\xed\x34\x14\xf3\x0b\x23\x2b\x2d\xe6\x57\x75\x33\x39\x9e\x48\x24\xe6\xdf\x79\xe7\x1d\xa6\xaa\xea\x1a\x47\x64\x24\x12\x41\x24\x12\x29\xa9\x83\xb1\x5c\x72\xc4\xa6\x06\xdc\x19\xa1\x0d\x80\xc1\x8a\x21\x08\xd4\x28\xd3\xc8\x39\x4d\xd9\xa2\x2b\x3b\x0a\x52\x93\x9b\x95\x8b\x22\x13\x04\x1d\xca\x74\xca\xcc\xc2\xe9\x74\xba\x68\x21\x14\x67\xc9\x44\x22\xc1\x54\x55\x55\x02\x35\xca\x05\x80\x83\x17\x94\x65\x98\xd9\xdb\x22\xd2\x43\xe0\x31\x47\x73\x73\xb3\x1c\x8d\x46\xef\x56\x5f\x00\x80\x33\x67\xce\xb0\x68\x34\x9a\x7c\xf8\xe1\x87\x47\xb8\x5b\x9c\x95\x6b\xad\xaf\x83\x73\x3f\x61\x70\x72\x02\x0d\x94\x84\x00\x2c\x00\x08\x2c\x2c\x2c\x24\x8f\x1d\x3b\xc6\xee\xc4\xc5\xb3\xb4\xb4\x04\x0e\x1e\x3f\xd9\x1e\xff\x79\x73\xd4\x32\x24\x32\x6a\x2e\xc8\x91\xb4\x68\xe1\x0b\x2d\x89\x57\x00\xc8\x9a\xa6\x29\x33\x9e\xcc\xfb\xa3\x0d\xf2\x70\xdf\x92\xed\xa1\x82\xc0\x8a\x89\x65\x8e\x75\x47\x5e\x06\x41\xe8\xe6\xcd\x9b\x45\xbe\x26\xe4\x86\x0a\x07\x80\xc6\xc6\x46\x22\x79\x6b\x84\xfe\x80\xfd\x45\x8b\x4e\xec\xe5\x8d\xb0\xa9\x26\xcf\x78\xbd\x7c\x54\xb7\x0b\x73\xd7\xaf\x5f\xaf\xe6\xad\xe0\x15\xc2\xe5\xf1\x00\x80\x70\x38\xcc\xaf\x5d\xbb\xc6\x15\x45\x49\x59\xad\xd6\x25\xb3\xd9\x3c\x43\x05\xd3\x75\x10\x32\x9e\xcd\x66\x67\xe6\xe6\xe6\x96\xcf\x9c\x39\x93\x3d\x7d\xfa\xb4\xae\x28\x4a\xb5\xa3\x68\x15\x29\x99\x4c\xf2\xb6\xb6\x36\x1d\x1e\x69\xf1\x86\x37\x13\x30\x71\xb8\xb3\x02\xcb\x4e\x7b\xd3\x17\xdf\xef\x8d\xfc\xcf\x94\x85\x1d\x1b\x1b\x1b\x8b\x8d\x8c\x8c\xf0\xce\xae\xae\xc4\x8d\xba\xcc\x95\xa0\x43\x91\xd3\x66\xa6\xcc\x78\x33\x57\x3e\xdc\x1c\xf9\xc1\x8a\x43\x7b\x23\x14\x0a\x2d\x0f\x0f\x0f\x17\xcf\x0e\x18\xcf\x56\xb0\x1d\x3b\x76\xd0\xdd\xbb\x77\xfb\x9f\x1a\xf7\xfc\x74\x6b\xc0\xf1\x24\xb0\x56\xcc\xd3\xed\xf1\xbf\xfc\xb4\x23\xfa\xd2\x2f\x7e\xf1\x8b\x4c\x3c\x1e\xaf\x66\xc8\x56\xf3\xe9\x57\xf2\xf1\x97\xac\x10\x44\x51\x2c\x62\x5d\xd9\xdb\x1d\x95\x16\xfd\x95\xd2\x8b\x77\xbb\xdd\x4e\x0f\x1f\x3e\x4c\x5d\x2e\x97\x07\x40\x13\x00\x1b\x80\x38\x80\x85\x85\x85\x85\xf8\x7b\xef\xbd\xc7\x14\x45\xc1\xd6\xad\x5b\xb1\x77\xef\x5e\x33\xa5\xb4\x0e\x80\x93\x10\xa2\x71\xce\x43\xa1\x50\x28\xfe\xf6\xdb\x6f\x33\xc3\x46\x4f\xe9\x29\x6a\x4d\xd3\xd0\xd7\xd7\x07\x10\xd4\xf7\x06\x6d\x4f\x90\xf2\x67\x4a\x08\x5c\x69\xa1\xf9\x72\x53\xea\x55\x9d\xf0\xe8\xfc\xfc\x3c\x41\xc9\x5c\xba\x9a\xb3\x42\x7c\xa5\x70\xf9\xb9\x0e\xc2\x72\x64\x8c\x67\x55\xf8\x31\xac\x2d\x6f\xbc\x73\x55\x55\xc9\xf8\xf8\x38\x57\x14\x45\x36\x99\x4c\xcb\x9a\xa6\xdd\x5a\x5e\x5e\x0e\x9d\x3f\x7f\x3e\x7d\xfa\xf4\x69\x5e\x38\x74\x12\x0c\x06\xd9\xc4\xc4\x04\xcb\x66\xb3\x09\x55\x55\x43\xc1\x60\x30\x7c\xf9\xf2\xe5\xcc\x89\x13\x27\xb8\xaa\xaa\xc0\xea\x28\x29\xdd\x97\x0c\x85\x42\x48\xa5\x52\x99\x39\x37\xfd\x58\x16\x59\xd4\xa6\x52\x37\x0a\xd9\xf3\xab\x60\xbb\x42\x9b\xfa\x96\x6c\x5f\x4c\x6f\xd9\xf2\x83\xf3\xe7\xcf\x2b\x9f\xc1\xab\x2a\x1b\x75\x1d\x6d\x68\x85\xa1\xaa\x2a\x2e\x5e\xbc\x88\x8b\x17\x2f\x16\x21\x44\x92\x24\xec\xd8\xb1\x03\x8d\x8d\x8d\xb4\xb0\x6b\x74\xf5\xea\x55\x5c\xb8\x70\xe1\xb6\x6d\x5a\x73\xec\xdc\x6a\xb5\xf2\xfa\x26\xbf\xee\xc8\x9a\x06\x9b\xe2\x96\x9e\xdc\x19\x78\x82\xe2\x9d\x13\xd4\xa5\xc4\xde\xd1\x96\xf4\x2f\xa9\x59\x88\xcd\xcd\xcd\xb1\x72\x1e\xb7\xb9\x08\x72\xbd\xe3\x4e\xca\xdc\xb7\xcb\xe3\xf1\x90\x17\x5e\x78\x41\x78\xa0\xb6\x7b\xe8\xf1\x68\xf3\x1f\xef\x92\xeb\x5f\x6c\x74\xfb\xec\xbe\x9d\x5d\x37\x18\xb8\x9a\x3f\xfc\x57\xb5\x7c\x01\xf4\x8b\xe6\x4f\x22\x91\x20\x03\x03\x03\x6a\xdc\xaa\x63\x70\xd1\xf1\x3c\x59\x5d\xa9\xe4\x88\x00\x66\x9d\xba\x18\x81\x96\xee\x72\x1c\x9f\x9b\x9b\xd3\x65\x59\x2e\x0c\xde\x8d\x80\x7e\x25\xf0\xae\x56\xae\x12\x19\xd3\xd6\xcb\xb7\x86\x2c\x16\x0b\x7d\xfe\xf9\xe7\x85\xc1\x94\xf7\xc5\x17\xae\xf8\xfe\xb1\x29\x61\x7e\xd4\x97\x32\xef\xea\x5a\xb1\x7e\xd1\x95\x15\xfd\x99\x41\xcf\x3f\xad\x84\x57\xd4\x68\x34\x5a\x95\x67\x01\xc3\x0a\x40\xc9\xb3\xd9\x2c\xf1\xfb\xfd\xcc\xec\x71\xa4\xbd\x29\x71\xaf\x47\x16\x9b\xcb\xdf\x3c\x23\x00\xfc\x09\xcb\xd0\x0d\x5f\xf6\x03\x47\xb3\xf7\xd6\xe8\xe8\xa8\x11\x90\x0b\xca\x37\x86\x51\x45\x48\x8a\x52\xec\x21\x55\xc2\xd5\xd2\x8c\xbf\xb9\x81\x5f\xc5\xb8\xc1\xc1\x41\x74\xb6\x75\xd4\x3d\x7f\xc5\xf7\x8a\x55\xa3\x3e\xa3\x3c\x75\x29\x71\xfb\x2d\x57\xf6\x0c\x6d\xac\x99\x30\xc8\xb3\x86\x57\xa5\xa5\x0d\x46\x46\x46\x18\x08\x16\x4e\xb7\xc7\x7f\xc2\x72\x2e\x95\xbc\x84\xb9\xb2\x1c\x80\xc0\x88\xed\xe9\x31\xcf\xf7\xfd\xb5\xbe\xfa\xfd\xfb\xf7\x6f\x04\x77\x2a\x2d\xa5\xee\x27\xdd\xd6\x93\xd2\xd0\xd0\x40\xad\xaa\xa9\xad\x26\x6b\xea\x28\x9c\x42\x2a\xc8\x44\x40\xa8\x3f\x61\xfe\x9c\xd7\xeb\x35\x0b\x82\x50\x95\x97\x71\xe7\xb8\x78\x2d\x2c\x2c\xb0\x85\x85\x05\x39\x64\x57\x8f\x8d\x36\xa4\x3e\x46\xfe\x20\x5d\xe1\x4e\xf2\x6b\x17\x5f\x52\xdc\x79\x60\xd2\xfd\xed\xfe\xbe\x7e\x47\x7e\xbd\x55\xf5\x20\x5a\x85\xeb\x4e\xf3\xdf\xf3\x65\x32\x99\x90\x15\x98\xa6\x98\x78\x92\x70\x83\x0f\x8d\x73\x70\x70\x44\x6c\xda\x12\x00\xe4\x3d\xac\x95\x79\x54\xd1\x24\x8f\xc5\x62\xe8\xed\xed\x4d\x07\x6b\x94\x58\xff\x92\xfd\x59\x91\x51\xb3\x71\x37\x89\x90\xdc\x93\xa9\x4f\x8a\x43\x8c\xf0\x8c\x69\x6b\xfd\xd9\x44\x22\xa1\x85\xc3\xe1\xf2\xf1\x5f\x82\x91\xa8\x8c\x57\xe5\xce\xfd\x6a\xd8\x54\x8d\xd7\xba\x06\x72\x81\x9c\x4e\x27\xfc\xcd\x8d\x54\x60\xa4\xb3\x39\x66\x19\x28\xbe\x08\x05\x82\xe5\x1a\x75\xe6\xd3\xce\xe8\x77\x23\xb1\xe8\xdc\xd5\xab\x57\x59\x35\x5e\xe5\xa0\x5f\xc4\x9d\x54\x2a\x05\xb7\xdb\xad\xd6\xd4\xd7\xc6\x33\x22\xab\xed\x0c\x4b\xbb\x40\x72\xeb\xb0\xdc\x56\xd8\xea\x1b\x65\xad\x51\xcb\xa3\x59\x91\x87\x2d\xdb\x1a\x47\x12\x89\x84\x6e\x50\x5a\xa1\x07\x1b\x85\x2c\xc7\x17\xa3\x9d\x65\xf4\x1e\x12\xac\x55\x4e\x25\x5e\xdc\x10\xae\xa4\xb4\x22\x16\xa5\x52\x29\x6c\xd9\xb2\x25\xbb\x58\xab\xce\x64\x04\xe6\x74\x66\x05\x9f\x4e\xb9\x3e\xe1\x93\x2f\xbc\xd7\x1b\xfe\x0b\x45\xe0\xa7\xce\x9f\x3f\x9f\x0e\x06\x83\xbc\x1a\xaf\x75\x5f\xff\x5b\x5c\x5c\xc4\x96\x2d\x5b\xe4\xb0\x8b\x2d\xfa\x92\xe2\x2e\x4f\x5a\x6c\x34\x66\x34\x48\x46\xda\x23\xd2\x53\xa0\x24\x2b\x0e\x36\x9e\x03\xa0\x05\x02\x81\x0a\xd9\x2a\x1a\x9a\x65\x8e\xa4\x8a\x61\x5a\x96\x56\x3e\xa9\x14\x95\xeb\xf1\x78\x08\xe7\x9c\x68\x9a\x66\xcc\x03\x00\xc8\x66\xb3\x2c\x1a\x8d\xb2\x8e\x4d\x9b\x56\x96\x5c\xea\xb9\x4b\xcd\xc9\x0f\x2e\xb4\x24\x7f\x3d\x5d\x97\x39\xa2\x9a\xf8\xd9\x1b\x37\x6e\x44\x4f\x9f\x3e\x0d\xce\x79\xf9\x83\x2b\xf2\x2a\x3f\x45\x5d\x42\x9a\xa6\x21\x99\x4c\xb2\x4d\x9b\x36\xc5\xe7\x3c\xd9\xc5\x9e\x65\xdb\xe3\x16\xcd\x64\x33\x00\xa5\x11\x38\x49\x6b\xd4\xf2\xb8\x33\x2b\xfa\xf5\x01\xcf\x89\x5a\x9f\x57\x0e\x04\x02\x50\x55\xb5\x2a\xff\x32\xc5\x6d\x24\x5c\xf5\xe1\xba\x5c\x2e\x1c\x3c\x78\xd0\xf4\xd8\x8e\x07\x6b\xfb\xb7\x0e\xf0\xb4\x92\xd5\x97\x97\x97\xd7\xd4\x15\x8d\x46\x31\x37\x37\xa7\x59\xad\xd6\xb0\x24\x49\x73\x9c\xf3\x99\x48\x24\xb2\x78\xee\xdc\xb9\xf4\xa9\x53\xa7\x8c\xcb\xb1\x4a\xf5\xae\x35\x5c\xcb\xaf\x48\x24\xc2\x9d\x4e\xa7\xea\xf4\xd5\xae\xdc\x72\x65\x13\xbd\x41\xdb\x23\x26\x96\x5b\x21\x14\xce\xed\x17\x54\x07\x00\xbe\x94\xb8\x63\xd3\x8a\xf5\x31\xb9\xcd\x7a\xa9\x75\x5b\xf7\x92\xa2\x28\x2c\x14\x0a\x7d\x66\x86\xaa\xc9\x64\x22\xdb\xb7\x6f\xc7\x63\x8f\x3d\x66\xde\xca\x1b\x0e\x3c\x7f\xc5\xf7\x4b\x87\x26\xf8\xf9\xf6\xfa\x13\xc1\x60\x50\xcd\xaf\x77\x4b\xca\xc8\xb2\xcc\xa7\xa6\xa6\xf8\xc5\x8b\x17\xf5\x91\x91\x11\x6d\x74\x74\x94\x85\x42\xa1\x8d\xd5\x97\x57\x5c\x25\x80\x2b\xc6\xcd\xcf\xcf\x93\xf6\xf6\xf6\x34\x77\x5b\x16\x56\xec\x2a\xd9\x1c\xb2\xed\xa1\x9c\xd0\x7c\xc7\xca\xab\xbf\xb0\x13\x44\x60\x53\x4c\x4d\x03\x01\xfb\xbf\x92\x88\x28\x49\x5b\xfd\x57\x5b\x3b\x3b\x32\x8a\xa2\x20\x12\x89\x6c\xd8\xc8\x5c\x87\x8a\xed\xea\xeb\xeb\xa3\x4f\x3e\xf9\x24\xed\x6f\xee\x6a\x7e\x7c\xc6\xfb\xdf\x1f\x9d\x72\x7f\x47\xd2\x4c\xf5\xfe\x84\x79\xef\x72\x8d\x7a\xd5\xd1\xe3\xbf\x3e\x35\x35\xc5\x55\x55\xbd\x6f\x46\x70\x01\xf4\x8d\x9e\x03\x23\xd6\x70\x00\x94\x31\x86\xb9\xb9\x39\xde\xd9\xd9\x99\x4c\x39\xe9\xcd\x98\x4d\x13\x37\xad\x58\x87\x08\x27\x55\xed\x29\xca\x89\xd8\x1c\x37\x7f\x6e\x60\xc9\xf1\x25\xab\xd5\x0a\xd7\xd6\xd6\xe9\xcd\xfd\x5b\x14\x49\x92\x78\x36\x9b\x25\xf9\xb7\x63\x8d\x0d\x2f\x07\xf8\x4a\x33\x27\xa9\xaf\xaf\xc7\xd6\xad\x5b\xc9\x13\x4f\x3c\x21\x6e\x6d\xdd\xdc\xf4\xe0\x92\xf7\x8f\x9e\x19\xf3\xfe\xa8\x29\x6e\x7e\x94\xe4\xde\x30\x06\x05\xa1\x6d\x51\x69\xff\x8d\x26\xf5\xdd\x1a\xbf\x67\x79\x62\x62\x02\x95\x78\xc1\x60\xb0\xa3\x14\x0b\x8d\xb8\x55\x52\xce\xe8\xde\xa9\x44\x25\x2e\x15\xaf\xd7\x8b\xe7\x9e\x7b\xce\x2c\x0a\x62\xe7\xa6\x15\xe9\xdf\x3d\x3b\xe6\xfd\xf7\xa2\x46\xcc\xf9\xf7\x48\x8b\x53\x34\x90\xb7\xdb\xc8\xaa\xcc\x19\x81\x05\xc6\xeb\xe5\x23\xd7\xeb\xe5\x5f\x04\x6a\x94\x2b\x71\x39\x99\x59\x5c\x5c\xd4\x56\x56\x56\x10\x89\x44\x20\xcb\x32\x12\x89\x04\x14\x45\x61\x85\x4f\xcb\x38\x9d\x4e\xd8\x6c\x36\xb8\x5c\x2e\x34\x34\x34\xc0\xef\xf7\x0b\x35\x92\xcd\xd6\x14\xb3\xec\xdc\xb2\x64\xff\x97\x9b\x43\xd6\x17\x45\x9d\x78\xca\x17\x13\x84\xe7\xb6\x53\x16\xdc\xca\xf1\x5f\x0d\x06\xbf\x70\xee\xe2\x85\xd0\x99\x33\x67\x0a\xf2\x00\xa5\x32\x6f\xd4\x6d\x84\x82\x74\x77\x44\x7e\xbf\x9f\x1e\x3c\x78\x50\x90\x24\xa9\xa3\x21\x21\x7e\xf9\xf0\xd5\xba\xaf\x3b\xb3\x82\x7b\xa3\xe5\x39\x38\x4b\x99\xf5\xe9\x39\x77\xf6\xf8\xa2\x53\x39\xb5\xec\x50\x2e\x45\xad\xda\x4c\x46\x60\xc9\xfc\x46\x6d\x51\x28\xc2\x41\xad\x1a\x75\xba\xd2\x42\x5b\x7d\xd2\x3c\xd4\x14\xb3\x3c\xd8\x12\xb5\xec\xb7\xa9\xb4\x83\x18\x8f\xdb\x94\x4b\x91\xef\x13\x9c\x70\x9c\x6b\x4d\x7c\xf7\xa3\xf6\xf0\x37\x5f\x7d\xf5\x55\xc5\xe0\xbf\xbb\x6b\xba\x63\x85\x01\xb9\x8f\x79\x1c\x3a\x74\x88\xd6\xd4\xd4\x34\x59\x15\xfa\xe4\xc1\xeb\x9e\x6f\x74\x84\xa5\xfe\x92\x27\x5d\xe2\x1f\xcf\xc7\x15\xab\x2c\x85\x0a\x0e\x28\x9a\x89\x47\xb3\x02\x8b\x6a\x94\x2b\x00\x20\x30\x62\xce\x7f\x5e\xc6\x4d\x00\x73\x65\xad\x54\xd1\x14\x08\xc0\x01\x9d\x72\xed\x64\x47\xec\x6f\xce\xb6\x25\xfe\xe4\xfd\xf7\xdf\x8f\x4f\x4f\x4f\xdf\xb3\xc2\x4a\x5c\xd4\x58\x6b\xc4\x56\x04\xc4\x6c\x36\xcb\x27\x26\x26\xd0\xd0\xd0\x90\x94\xdc\x8e\x9b\xe3\xf5\xf2\x88\x2c\x32\x73\x73\xcc\xd2\x6d\xca\x7f\x6c\xa8\xfa\xa3\x58\x9b\x40\x00\x93\x89\x13\xbb\x59\xa7\x5e\x49\xa3\xf5\x92\x46\xeb\xcd\x3a\xf5\x9a\x38\xb5\x13\xc0\x54\x49\xc9\xeb\x13\xc1\xb2\x43\x59\x78\x73\x6b\xe8\xbb\x13\xbe\xf4\x4f\x54\x4d\x5d\x3a\x73\xe6\x0c\xbb\x53\x37\x77\x25\x2a\xd8\x61\x46\x8b\xb9\x1c\xf4\x81\xb5\x40\x48\x74\x5d\xc7\xf8\xf8\xb8\x4e\x29\xcd\xd4\x37\x34\x2c\x06\x5d\xea\xa5\xeb\xf5\xf2\xa4\x5d\x31\x35\x79\x64\xd1\x4f\x79\x61\x6f\x31\xef\x4b\xe3\x85\x3b\x40\xca\xff\x0a\xe9\x6b\xfe\xb0\x7a\x37\xf2\x40\x59\x7e\x43\x5c\x56\x64\x99\x13\x1d\xf1\xdf\x7c\xd0\x1b\xfe\xf3\x84\x45\x7f\x4b\x96\xe5\xb9\x77\xdf\x7d\x57\xcb\x7f\x51\x60\x3d\xcf\x46\x35\xc0\x2f\xe9\x38\xb7\x03\xfd\x0d\x91\xdf\xef\xc7\xfe\xfd\xfb\x69\x6d\x6d\xad\x9b\x80\x6c\xf1\x27\xcc\xcf\xee\xbd\xe9\xfc\x62\x7b\x58\xea\xa1\xc8\xcf\x08\x25\x33\x83\x21\x5c\xbc\x17\x1e\x91\x31\xbd\xf0\xcc\x2a\x95\x59\xad\x9f\x93\xdc\x2e\xcf\xe5\xa6\xe4\xc9\x73\x2d\x89\x57\xd2\x66\x36\xcc\x39\x9f\x99\x9c\x9c\x94\x87\x87\x87\x8d\x1f\x30\xaa\x06\xf0\x1b\x06\xfe\xfb\xa2\x30\x00\xa0\x94\x62\xdb\xb6\x6d\xd8\xb9\x73\xa7\x59\x14\x45\x0f\x38\x7a\xea\x52\xe2\x23\xdb\x17\x1c\x87\x37\x2f\xdb\x06\x2d\xda\xea\xee\x73\x55\x32\xf6\xe7\x92\xb8\x82\xc2\xca\xe2\x09\x10\xb1\x6a\xa1\xab\x8d\xa9\xe1\xab\xfe\xd4\x9b\x19\x91\x9d\xe5\x9c\xcf\x46\x22\x91\xf8\xa7\x9f\x7e\xca\x2a\xbc\xf7\x78\xcf\x54\x09\x69\x8c\x76\xd9\x7a\x54\x31\x9f\x24\x49\x74\x70\x70\x10\xfd\xfd\xfd\x66\xb3\xd9\xec\x04\xd0\x26\x6a\xa4\xbf\x23\x22\x3d\xda\x15\xb2\xee\x6e\x89\x4a\x9d\x76\x85\x3a\xd6\xfb\x1c\xd6\x1a\x32\xe0\x3b\x03\x67\x11\x9b\x16\x9a\xf1\xa4\xc7\x26\xeb\xd2\xc3\x01\xa7\x72\x82\x13\x8c\x03\x08\x84\xc3\xe1\xe4\x85\x0b\x17\xd8\xd4\xd4\xd4\x3d\x83\x7b\x35\x32\xf6\x30\xa3\x8d\x62\xdc\xb2\x42\x85\xdf\xc6\xfc\x46\x2a\x51\xe2\xe0\xe0\x20\xed\xeb\xeb\xa3\x4e\xa7\xd3\x06\xc0\x0d\xa0\xc9\xc4\x49\x5b\x6d\x5a\xe8\x69\x48\x58\x06\xea\x52\x62\x8b\x5b\x16\xea\x9d\x59\x93\x5b\x52\x4d\x36\x51\x27\x66\x92\x3b\x6b\xc5\x18\x05\x53\x4d\x4c\x49\x99\xf5\x64\x5c\xd2\xa3\x11\xab\x1a\x08\x3a\xd4\xe9\x25\xa7\x72\x35\x69\xd6\xc7\x39\xf8\x3c\x80\x20\xe7\x3c\x5e\xf8\xbc\xc3\xcc\xcc\xcc\x9d\x2a\xaa\x9a\x8c\x55\x89\x60\xad\x82\x8c\xf7\x02\x55\x8b\x2f\xa4\xa1\x4a\x7e\x00\x40\x7d\x7d\x3d\x36\x6d\xda\x84\x8e\x8e\x0e\xea\x74\x3a\xcd\x84\x10\x1b\x72\x47\xbe\x9d\xf9\xcb\x01\x0e\x1b\xe5\x90\x68\xfe\x3b\x3b\x8c\x70\x85\x11\x64\x40\x90\x04\x90\x44\x6e\x3f\x31\x0e\x20\xa9\xeb\x7a\x66\x69\x69\x49\x9b\x9e\x9e\x66\x33\x33\x33\x28\xbc\x74\x50\xa5\x6d\x77\x03\x39\x55\x79\xdd\x29\x86\xdd\x6d\x03\x8a\x64\xb3\xd9\xd0\xd4\xd4\x04\xaf\xd7\x8b\xda\xda\x5a\xea\x74\x3a\x61\xb7\xdb\x69\x7e\x03\xd7\xe8\xc6\x66\xc8\x9d\x2a\x62\xe9\x74\x9a\x45\x22\x11\x16\x89\x44\x10\x08\x04\xb0\xb2\xb2\x02\x45\x51\xee\xa5\x19\xbf\xa3\x7f\x4e\xba\x97\x1e\x74\xbb\xcd\x8f\x4a\x79\xca\xd3\xd7\x6b\x43\x35\x5e\x77\xb3\xb9\x72\x57\xbc\xca\x87\x01\xbd\x4d\x7c\x35\xe6\xeb\x35\xaa\xda\xe4\x50\x9e\x5e\x49\x80\xf2\x70\x35\x50\x36\x6e\xaa\x54\x7b\x20\xf7\x85\xd7\xff\x07\x1e\x96\xad\x0b\x2f\xb5\x25\x63\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe4\xb2\x09\xb9\x5f\x1f\x00\x00") + +func web_uiV2AssetsAppleTouchIcon76x76C5fff53d5f3e96dbd2fe49c5cc472022PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsAppleTouchIcon76x76C5fff53d5f3e96dbd2fe49c5cc472022Png, + "web_ui/v2/assets/apple-touch-icon-76x76-c5fff53d5f3e96dbd2fe49c5cc472022.png", + ) +} + +func web_uiV2AssetsAppleTouchIcon76x76C5fff53d5f3e96dbd2fe49c5cc472022Png() (*asset, error) { + bytes, err := web_uiV2AssetsAppleTouchIcon76x76C5fff53d5f3e96dbd2fe49c5cc472022PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-76x76-c5fff53d5f3e96dbd2fe49c5cc472022.png", size: 8031, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsAppleTouchIconD2b583b1104a1e6810fb3984f8f132aePng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x99\x55\x50\xd4\x8f\xf7\xfe\xdf\xb0\x94\xc4\x4a\x0a\xea\x82\x4b\xc9\x52\xee\xd2\x0b\x48\x37\x88\xec\xd2\x08\xd2\x88\x0b\x12\x4b\x4a\x23\x8a\x48\x48\xb7\x20\x2d\x0d\xd2\x88\xb4\x20\x20\x25\xdd\xb5\x74\x4b\xf7\xf2\x9f\xcf\xe5\xff\xe2\x77\xf7\x9d\x33\x67\xe6\xdc\xbc\xe6\xcc\x9c\x8b\xf3\x3c\x33\x4f\x28\xea\xb9\x0a\x15\xf9\x03\x72\x00\x00\xa8\xd4\x54\x15\xb5\x01\x00\xa8\xfe\xaf\xc9\x08\x01\x00\xa8\x2c\x8f\xb1\x01\x00\x80\xc8\x56\x4e\x53\x0e\x00\x2a\xa2\x28\xae\x2d\x88\x01\x00\x80\x5a\xa9\x6a\x6b\x02\x80\xf7\x63\x00\x08\xfc\x00\x00\x97\x00\x00\x04\x6e\x00\x80\x3b\x02\x00\xb6\xcc\x01\x40\x22\x19\x00\x18\x9d\xd3\x1a\xd0\x4f\x01\x00\x20\xb1\xd4\x50\x51\x04\x6e\xff\xab\xcc\xa6\xfc\x38\x00\x00\x48\xdd\xd4\x34\x95\x48\x97\x40\x8f\x00\x5e\x1a\xf9\xf1\x20\x62\x00\x60\xc1\xab\x29\xca\xe9\xbe\x9d\xde\x4d\xf7\x7c\x0b\x59\xf7\x5b\x5f\x4f\x6f\x6e\xb2\x18\xba\xa7\xc8\x2a\x1b\x48\xa4\x1a\x0d\x7c\x21\xab\x08\xed\x4c\x84\xa1\xb5\xad\x55\xf4\xad\x35\x42\x39\x3b\xb9\xa5\x25\x23\xd3\x25\xd7\x59\xd6\x21\xc6\xcd\xe7\x43\x17\x15\x36\xab\x6f\x34\x12\x99\xb9\xb8\xb8\x62\x4d\x38\x8c\xf5\xb3\x5e\x8b\x68\x13\x49\xb2\xc6\x42\x09\x82\xa8\x80\xa1\xde\x53\x41\x49\xbf\xf9\xab\xf7\x3c\xf4\xef\x5e\xf6\x81\x5f\x09\x50\x38\x4b\x07\x10\xee\xef\x34\x0a\x5d\xcd\xd5\x5d\xcf\x9b\x11\x50\xcb\x77\x74\x58\x4b\xa0\x72\x24\xcd\xb5\xeb\x93\x71\x88\x9e\x4f\xdc\xe0\xb8\x88\xff\xd5\xb0\xa8\xec\x69\x5e\x16\x9d\xd5\x1e\x4e\xce\xde\x7d\xe7\x79\x68\x95\x20\x3b\x4c\xcd\x54\x0d\x4b\x0e\x57\x40\x7f\xcc\x8e\x80\x51\x2f\xc2\x5a\x05\x64\x2d\x0a\x3e\xcb\x3b\x70\xac\x65\xa2\x92\x88\x5d\x51\x05\xe9\xf2\xa5\x1c\xad\x02\x44\x4c\x37\xf4\xae\xbd\x41\x0c\xa4\xf4\x36\xe2\xbf\xc3\x72\xb0\x58\xe4\x63\x93\x50\x32\x10\x0d\xf6\x29\xab\xca\xb0\x4b\x90\xce\x30\x61\xbc\xb5\xa2\x6e\x66\x36\x74\xa4\xc1\xc0\x0a\xc8\x84\x41\x11\xb2\xcb\x05\x9f\xdb\xe7\xee\x35\x76\xc8\xc5\x8b\xf7\xd8\x3d\x32\xda\xe5\x24\x74\x9c\x75\x52\x29\x5d\x09\x9a\x20\x37\x54\x9d\x5f\x47\xe9\xaf\x50\xff\x32\x03\x57\xbe\xb4\xf2\x1d\x44\x2e\x30\x26\xfe\xa6\x23\x67\x97\x35\x1a\x5a\x27\x01\xe4\xb8\x09\x8f\x0c\x43\x95\x1c\x1b\x9a\x93\x4d\x4d\x95\xc5\x12\x69\x09\xce\xe4\x19\xfe\xc8\x53\x93\xd2\x5b\x63\x91\x89\xd2\xe2\xf1\xd2\x02\xad\xee\x51\xe1\xec\x02\xc1\x0c\xeb\x8b\xcd\x80\x82\x40\x54\x42\x09\x7f\x65\xad\xbe\xe1\x84\xde\x10\x15\x67\x72\x57\x43\xb4\xae\x60\x46\x27\xab\x02\x56\xf8\x37\xe4\xa1\xf9\xb4\xcf\x94\x50\xce\xb0\xb5\x76\x1d\x0d\x9b\x27\xea\xa1\xda\xf8\xf9\x1b\x07\x91\x53\xcd\x9a\xe3\x4a\xed\xd1\xe7\xf7\x6f\x3c\xdc\xcc\x4d\xc3\x14\x2c\x88\x6a\x5d\x91\x17\xe3\x4a\x6b\xa8\x0c\x24\x44\x08\x45\xa7\xd3\x96\x26\x3c\xa7\xbb\x36\x39\x64\x3e\xa3\xab\x41\x32\x4b\x26\x1a\xa5\x12\xeb\xf5\x18\xcc\xdd\x87\x20\xbd\xa2\x2d\xf7\xc8\xd3\xa2\xe2\xe5\x9e\xdf\xd8\xb3\x26\x01\x59\x07\x77\x35\x97\xce\xbb\xfb\xd0\x8d\xa1\x28\xc9\xfa\x36\xc0\x18\x8b\xf9\x4f\x0a\xe4\x79\xb1\x4e\x69\x51\x2d\x6e\x1f\xb7\x53\x02\xb3\xdf\xb8\x79\x8e\x06\x31\x4e\xed\x1a\x6f\xcf\x9e\x95\xe4\x1a\xc4\x0f\x4a\x86\xf6\x81\xb0\xdd\x43\x6e\xb8\x28\xa9\x03\x46\xc9\x1f\x5f\xb1\x30\x86\xbf\x94\xd9\x2c\x7d\xf6\xee\x6f\x9c\x9c\x17\x66\x2c\x31\x7c\x5f\x54\xe8\x34\xe5\xc2\x15\x96\x14\xbf\x35\xc1\x0f\x33\xba\xa6\x74\x7e\x1d\xbd\xae\xee\x26\x32\xdd\x71\x9e\xfb\x31\xeb\xe7\x44\x61\xb4\x29\xd2\x00\x2f\x82\xe9\x62\x61\xd1\xdb\xf7\xef\xde\x76\x55\x8c\x4a\x32\x26\x54\x9b\xbb\x39\x1d\x83\xa0\xba\x0e\x31\x67\x6d\xee\x03\x33\xa9\x28\x95\xac\xfd\xd7\xe4\x68\x88\x4b\xc4\xe7\x9b\x32\xa1\xcb\x37\x21\x48\x5a\xa1\x06\xb8\x17\x41\x74\xb2\x9f\x55\xe9\x3e\x85\x43\xe2\x1a\x10\x74\x6f\x8f\x4f\xc7\x1c\x17\x48\x36\x23\x0e\xb9\x54\x93\x74\xcd\x0d\xf8\xfa\x04\x3e\xaa\x10\x2f\xde\x74\xb7\xcc\xd5\xcf\x8e\x61\x2d\xf7\xf3\x5e\xef\x31\x7d\x34\x92\x5e\xf9\xd3\x4d\xb3\xd0\x61\x78\x0e\xce\x70\x76\xa3\xb9\x8f\x26\xb0\x75\xc7\x38\xe9\xbc\xa5\x3a\xa5\x08\x2e\xda\x00\x1f\x71\x2f\x97\xed\x60\x05\x77\x05\xc9\x48\x47\x4f\x8e\x50\x05\x3f\x7d\xf2\x94\x20\x32\x5b\x9f\xb6\x06\x9d\xfc\x45\x79\x97\xde\x2e\x1f\xf5\x30\x38\x96\x29\xc8\x0a\x20\x46\xc5\x66\xc1\x78\x31\x4b\x37\xbf\x66\x88\xe0\xf9\xc8\x60\x9a\x4c\x28\xeb\x85\xaf\x9a\xae\x03\xba\x47\x4c\x1a\x63\x5f\xdc\xb3\x2c\x25\x8c\x06\xf2\x2b\xa9\xd5\x3c\x29\x9f\xe3\x17\x99\x6b\x5d\x0d\xcf\xf6\x81\x45\xd8\x5a\x2d\x2d\x01\xa3\x9e\xb1\xdb\xc9\x33\x06\x38\xd6\x9c\x85\xe2\x55\x3e\x41\x30\x88\x10\xc4\x14\x06\x10\x11\x00\x04\x64\x84\x34\x8a\xef\xa8\xe5\x61\x3d\xd1\x49\xf1\xd5\x50\x15\x23\xee\x64\xda\x10\x2b\x5f\x33\xc3\x8d\xbb\x14\xef\x69\xb8\xe3\x83\xd2\x72\x9d\xb8\x56\x39\xee\x92\xbb\x04\xd8\xff\xeb\x26\xb0\xe1\x3c\xb0\xf3\xfc\x17\x7a\xe3\xfd\x9c\x13\x68\x83\x08\x1b\xed\xe6\x19\x10\x95\x94\x32\xe8\xa6\x3f\x82\xbb\x5a\x8a\xda\xe9\x93\x90\x7c\x82\xa5\xc1\x88\x75\xe4\x03\x92\xa5\x84\xda\xbf\xb2\x2c\xc1\x9f\xa9\xd3\x90\xa0\x5f\x5d\x9d\xa2\x52\x61\xf8\x4b\xf0\xa0\x5f\x31\xc5\xbf\x8e\x01\x55\x2c\x2c\x8d\xc9\xaf\x96\xfd\xfa\x98\x55\xbc\x6d\xf3\xf0\x5d\xc1\xe7\xdc\x07\xea\x6f\x1c\x44\x6a\x4f\xc6\x46\x69\x65\xd6\x72\x8f\xaa\x19\x51\x86\x68\xa6\x4f\xdf\xf7\xa9\xf2\xc0\xa7\x2e\xb6\xca\x79\x64\x39\xd8\x3e\xd0\xa7\x75\xbc\x08\xe7\xad\x1f\x69\x26\x85\x39\x59\xc6\xb4\x64\x4e\x07\x2b\x57\xfd\x5f\x1d\xd2\x9c\x41\xcf\x0d\x84\x7a\x4e\x20\x59\xfd\xee\x43\x46\xc9\xda\x89\x91\x7e\x82\x3e\xb9\xc1\xa9\x72\xd4\x92\x62\x96\x58\xbc\xf7\x99\xcb\xe1\x6e\xf8\x75\x5e\x8f\x09\xe3\xb3\xda\xda\xd4\xc3\xae\xbd\x8e\x70\x66\xd7\xd1\x39\x88\x80\x32\xc4\x25\x82\x4a\xba\x42\xe6\xb4\xbd\xd0\x68\xcf\x80\x20\x52\xfb\xa4\x73\x60\xe6\x01\xb3\xe4\x83\x6e\xf5\x72\x8b\x44\xcc\x27\xd5\x25\x7a\xd7\x7a\x19\xbc\x0b\xe3\xd5\x7c\xa6\xba\x13\x6d\xe5\xb0\x31\xfe\xe6\x27\x7f\xff\xea\xef\x63\x23\x62\x92\x4f\x0a\xe4\x42\x71\x0b\x01\x5c\xf8\xc3\xfb\x8a\xe3\xfe\xf6\x81\x59\xa3\xc3\xb4\x67\x52\xfd\x91\xe9\x1a\xd8\x96\x1c\xd9\xc7\x6f\x38\x3b\x85\x54\xca\x3b\x4c\x91\x09\xd2\x12\x99\xce\x53\x1c\x41\x12\x05\x95\x01\xcd\xfd\x5e\x5d\x2e\x39\x3f\xd3\x3e\xff\xb8\x17\x02\xb1\xe5\x62\xf1\xe1\xc5\x87\x08\x4d\x27\xb9\x00\xac\xc5\x8d\x7b\x3e\xc6\x2f\xeb\xc4\x96\x38\x83\x91\x50\x5e\x6e\x69\xf7\x4c\xb1\x4b\x13\x52\x1f\xef\xb7\xd3\x59\x34\xe6\x05\xfb\xf0\x99\x30\xfc\xcc\xab\x40\xc6\xea\xb3\xdb\xb4\x30\x05\xb5\x83\xb8\xa8\xfd\x70\xfc\xa5\x54\xbf\x15\xc9\x5a\x65\xbd\x07\xfc\x6c\xb6\xe5\x63\xc9\x01\x43\xf7\xeb\x98\x3b\xdc\x7d\x1c\xa6\x9b\x61\xd2\x13\xac\x94\xca\xe5\x57\x49\x56\xb6\x0a\x53\x9e\x7b\xad\xb3\xf7\x72\xae\x90\x20\x57\x2e\x70\xb7\x5a\xdb\xa3\x96\x87\x17\x01\x5d\xc2\x65\x42\x08\x73\x87\x97\x2b\x3e\xb9\xfd\xe3\xfa\x42\x4e\x10\x76\x68\xbb\x59\x2a\xe5\xed\xd5\xd0\xca\xfc\xd7\xbb\xb6\xf7\x8b\xb2\x90\xff\xde\xfb\x14\x34\xb0\xe5\x48\x8a\x09\xb9\x72\x82\xef\x2b\xe3\xb7\x15\xff\x85\x5c\x55\x0e\x76\xa4\xb4\xa6\x55\x5f\x35\xeb\xef\x83\xb6\x9d\x5b\xfc\x22\xcd\xfe\xee\xa0\x0d\x05\x2a\xf2\x25\xaf\x8f\x7e\xb5\x27\x90\xed\x55\x25\xdc\xf4\x32\x9f\x96\x6a\x44\xec\xc5\xf3\xac\xa9\x42\x42\xa5\xd6\x7f\x3f\xf2\x7b\x19\x59\xf1\xa0\x2c\xef\x41\xd8\x8d\xd9\xb4\xe5\x42\x43\x6e\xab\xed\xc6\x8e\xb3\x14\x5d\x16\xd7\x4c\x69\x29\xc3\x3c\xe9\xc4\x20\x63\x40\xc6\x0f\x6a\x52\x1f\xbb\xb7\xc7\xdb\x01\xc9\x12\x27\x03\x94\x24\x10\xe3\xa4\xf3\x5b\xfc\xbd\xa2\x01\xa7\xee\x99\x21\xc6\x60\x1a\x20\x92\xb0\x88\x7a\xf7\xe5\x48\xec\x59\x64\x98\x55\x68\x4f\xd7\x19\x06\x45\x92\x89\x1d\xb4\x7d\x11\x8e\xb7\x63\x5f\xab\x79\x70\xe4\x78\x4c\x52\x13\xa3\xec\xc9\x2a\x76\xc8\x0b\x0e\x66\x50\xd0\xaa\xc9\xd7\xa2\x5c\xf1\x66\x5d\xcb\xf5\x0b\x70\xaf\x5a\xaf\xb2\x47\xa5\x22\x76\xe6\x66\xff\xad\x18\x40\x0e\x92\x06\x7f\x9b\x49\x7f\xd9\xd6\x4b\x9e\x78\x71\x5d\xe3\x50\xf6\xf3\x0b\x81\x68\x14\xe3\x7d\x8a\xc0\xa7\x61\xef\xa5\x24\x1f\xe0\xeb\xd8\x7f\xb0\xa4\x2f\xfa\xfb\xf4\x4c\x78\x22\x3d\x45\x18\x2a\x6f\xd3\x58\x65\xd1\x6b\x70\xe2\x11\xae\x90\x8e\x25\xa6\x20\xa8\xe2\x8f\xde\x61\x6d\xb9\x09\xc6\x75\x27\x9a\xb8\xf2\xc1\x04\x3a\x93\xf3\xc2\xf7\x38\x94\xa3\x06\xd5\xac\x2d\xef\x45\x57\xfa\xc0\x4b\x4d\x62\xc7\xc5\x54\x9f\x8e\x8a\xb7\x2b\x8c\x2a\x74\x3e\x3e\xb9\xce\x5b\x37\x74\xe6\x81\xe6\x2c\xc5\x56\x2a\xef\xf7\x97\xa8\xac\xf5\x4c\x67\xa7\x8e\x6a\x8c\x43\xaf\x0f\xcf\x57\xce\xe6\xff\xf4\xcc\x07\xff\xe0\xe7\x34\x5b\x58\x6a\x28\x9e\x82\x08\x95\x29\x40\xc2\x22\x6f\x8e\xb6\xfb\x62\x9a\x31\xcc\x20\x3e\x7e\x06\x9b\xa8\xf9\xe7\xfc\x43\x01\x0a\x49\x49\x6a\xe9\xdb\x29\x9f\xf0\x13\xa1\x69\xf1\xef\x5e\x7c\xca\x86\x3b\x7a\xcc\x61\x78\x96\xbd\xe9\x9f\x53\xe2\x73\xd3\xc5\x67\x93\x7a\x6c\x3e\x48\x89\x40\x7c\x2d\x33\x4c\xa5\x05\x26\xb2\x5b\x90\x50\x2e\xa5\xaf\xe2\x89\x23\xf3\x0c\x8b\x05\xeb\xef\xdc\xbf\xfa\x18\xaf\x85\xbb\xbf\x7e\xa2\x96\xc1\xf4\xac\xd9\x9d\xd5\xe7\xcb\x68\x9b\xf4\x9a\x79\xc6\x5e\xdd\xb8\x19\xa4\x50\xc1\x4f\x48\xba\xcf\x1d\xe9\x64\x7f\x2c\x55\x69\xc1\x62\x14\xb2\x46\xfb\xad\xc9\xf3\x77\x34\xb6\x5b\xa3\xf0\x74\x7e\xaa\x5e\xf6\x59\xf8\x00\x2e\xda\xea\xcd\xf1\x14\x9d\x78\x67\x8b\xb1\x3e\x49\x58\x73\x75\x9e\xb9\x95\x58\x04\xb1\x4b\xec\xdf\x47\xfa\x23\xda\x1b\x54\x7f\x22\x06\x30\xa4\x6e\xf7\x54\x0e\x3f\x1f\x6d\xd2\xbd\xdf\x9a\x59\xf6\xff\x79\xcb\x6b\xdc\xa3\x1e\xd5\x3c\x67\x88\x90\x55\x42\x8f\x4e\x11\xd2\x2b\x07\xa6\x82\x45\xaa\x32\xf3\x91\xb9\x28\x9e\x53\x1c\xe6\x84\x66\x10\x50\x69\x0a\x68\x9e\xaf\x6d\x7e\xb1\xa0\xf2\x42\x15\xa0\xed\xf2\x2b\x7a\x7e\x17\x45\x4a\x75\x5c\xfb\x78\x9b\x3b\x72\xe5\x0b\x63\x7d\x99\xc0\xc9\xee\xae\x71\x52\xfd\xbe\x83\x40\x1d\x97\x11\x80\xb4\x33\xba\x8f\x1a\x19\xae\xe4\x09\x14\x77\xfb\x9a\xea\x4e\x17\x42\xff\x0a\x07\x4f\x47\x67\xbc\x0b\x85\xb9\x5f\xb2\x4c\x99\x3f\x11\x79\xd5\xd1\xec\x7e\xc7\x68\xb9\x77\x9e\xe4\x6c\x26\xbd\xee\xc9\xc8\x9c\x4b\xc1\x17\x64\xf2\xa9\xe9\xde\x6c\xfd\xd6\x0c\xe1\x99\x5f\x69\x62\x02\x83\x84\x4c\xbf\xfc\x87\x92\x83\x0b\x96\xf9\xe8\x55\x45\xc6\xe8\xe4\x75\x57\x7b\x7e\x5e\x5d\x2a\x84\x78\xd6\xe0\x1e\x5a\xed\x20\x74\xa2\x61\xac\x5c\x94\x8f\xf7\xcf\xdc\x59\x89\xb0\xc3\x0a\x0f\x76\xae\x86\xf0\xd0\x72\x23\x3f\x24\xd7\x7c\xab\x21\xc0\xe2\xf9\xf4\xd1\xa2\xc4\x3e\xc8\xfe\xc8\x82\x6d\x58\x05\xb2\xa9\xf3\x6b\x33\x4e\x81\xe7\x21\xe8\xc1\xd9\x6c\xcb\x37\x73\x76\x2f\x72\x6a\x59\xf3\xaf\x57\xe3\x7f\x7b\xd5\xad\xe0\xe9\x16\x5a\x60\xb5\x18\x61\x42\x9a\x3e\x25\xe3\x54\x50\xd9\x4f\x03\xc3\x09\xfd\xd5\x9e\x42\xfd\xbb\xd8\x6e\xc4\xc5\x1a\x71\x30\xfa\x4b\x40\x57\x6d\xed\x9f\x8a\x52\xe9\x47\x77\xab\xa2\xdb\x02\xf3\xdc\x69\x9a\x04\xa1\x21\x4c\xdc\xb1\xca\xd0\x8e\xa7\xfa\x8d\xdd\x89\x06\x66\xf6\xcc\x1d\xac\x94\x2a\x23\x2a\x57\x7a\xa2\xca\x98\xf6\x93\x4d\xbd\xe0\x8c\x83\x02\x04\x01\x53\x58\x12\x72\x8d\xef\x85\x4a\x08\x31\xb7\x6b\xbd\x19\x53\x64\xe1\x9b\x37\x46\x3a\x18\x27\xe3\xa7\x62\x83\xaf\x04\x35\x5e\xf1\x82\xbb\xd5\x0a\x41\x49\x7a\x1f\xcb\x09\x08\x5d\x77\x4d\x1d\xc1\x0f\x8f\x82\xa7\xc2\x14\x98\x3e\x39\xcf\xd9\x79\x7e\xd7\x55\xa8\xd8\x5d\x0b\xea\x35\xb3\x8a\x0d\x9d\x0a\x63\x9f\x13\x80\x12\xc7\xf1\x3c\x94\xf4\x10\x5e\x54\x3a\x82\xf3\x6c\x7e\xb4\xd1\xc7\x05\x06\xf5\x41\x1e\xa2\x52\xea\x88\xe0\x95\x33\x62\x13\xf7\x6f\x1a\x1f\x8b\x23\x8a\xe7\xc2\x84\x53\x56\x06\xb5\x8a\xde\xbc\xc1\x14\x66\xda\xad\xcb\x05\x16\x1c\xc8\x12\x91\xd3\x12\x02\xad\x43\x69\xe0\xaf\x50\x78\x28\x9d\x9a\x78\x2a\x09\xd1\xc7\xab\xdd\xfa\x09\x51\x8d\xde\xc9\x92\x8e\xb6\x97\xc9\xf4\x5c\xb4\x45\xa9\xd9\xad\xb5\xd8\x8a\xcd\x81\x38\x66\xce\x9e\x7c\x49\x92\x94\x5f\x7e\xed\x28\x7a\x39\x00\xbd\x55\x5d\x56\x5a\xed\x50\x90\x22\x50\x42\xe1\xa2\x5d\xd4\x24\x86\x3f\x34\x2a\xb3\x35\x51\x73\x26\xfb\x88\x53\x12\x9d\xd1\x1c\xdb\xd3\xaa\x43\x9d\x74\xa6\xf2\x0f\x55\x5d\xd6\x4e\x0e\xd0\x74\x17\x1f\x8a\xb6\xde\x78\x6c\x6f\x29\x79\x79\xe5\x50\x10\x97\xf9\xf0\x1d\x5b\x4b\xba\x16\xdc\x4e\x1b\x1e\x4d\x86\xe7\xf3\xf3\x33\xe0\xe1\x8e\x95\x65\xc5\x03\xc7\xcc\xbd\x43\x6e\x1b\x3d\xa7\x93\xe1\xe9\x13\x6b\x04\x49\x39\x18\xbc\x36\xc2\x3d\x73\xe2\x76\xcc\x38\x4d\x32\xc9\x4e\xf2\x72\xfc\x09\xb8\x5b\xed\xda\xab\xe6\x8a\xde\xdb\xe8\x8e\x11\x3a\x93\x45\x2a\x8c\x43\x41\x49\x8e\x9a\xa8\x13\x91\xd3\x5e\x30\x39\x10\x53\x11\xe0\x9d\xd0\x42\xdf\xb8\xb7\x8f\x8a\x1f\xe9\x22\x55\x0e\xb1\xca\x5b\x98\xb7\x59\xd0\x95\xd4\x5c\x17\x17\x38\x5f\x3e\xdd\x28\x97\xf8\x76\x42\x43\x4f\xc2\x46\xb7\xe0\x07\x72\x45\x89\x6a\xd6\x72\xee\xe2\xa2\xdb\xb9\x97\xc2\x5e\xc0\x2d\x7b\x8b\xc2\x82\xd4\x93\xb9\xbe\xd5\x1b\x2e\xbc\xfe\xbe\xad\xbe\x73\x08\x13\xba\xcf\x70\x1f\x0c\xc8\x22\xf9\x4e\xb5\xcb\xeb\xb2\xda\x27\x0c\x77\x8b\x9e\xb4\x6d\x8a\x93\x3b\x24\xb4\x3f\xfb\x17\x7a\xa3\x93\x70\x80\x76\x52\x59\x6e\x7b\xb4\x97\x63\xe7\xab\x18\x7c\xd5\x10\x90\x37\xdf\x04\xb9\xf5\xb3\xbd\xb7\x8f\xc6\xb0\xdd\xc7\x4f\x59\x34\x54\x3c\x53\x28\x63\xda\x35\x4b\x46\x30\x25\xc8\x73\x8b\xf0\xa3\x79\x31\x98\xf1\x5b\x59\xa3\x87\x6f\x60\xfe\xab\xfd\x71\x4d\xe5\xcc\x14\x1e\x27\x47\x15\xf4\x69\x96\xcd\x0a\xd8\x3e\x9c\x6b\x62\xf5\xf8\xd8\xdc\x58\xed\xeb\x11\xf2\xe1\x98\x33\xc4\xde\xa8\x24\xa3\x2d\x25\xd7\x9a\xf7\x6f\x3a\x9f\x06\x3f\xb3\xfa\x8b\x69\x19\x79\x53\xf5\xc6\x69\x11\x2b\xbd\xd0\xe3\xcd\x25\xb7\xae\x4c\x2b\x15\x85\x32\xe6\x2f\xc1\x48\x12\x36\xf2\xe2\xad\xef\x54\xf0\xda\x38\x91\xdf\x06\x4c\x68\x45\xcc\xe2\xae\x4e\x7e\xc0\xe9\xf4\xca\xa6\xa9\xd2\x9f\x8d\x97\x99\xaa\x82\x42\x34\xbb\x3e\x37\x1d\x8b\xcd\x03\xad\xfd\x9a\xc5\x78\x6f\xcf\xa9\x69\x92\x68\x31\x4f\x11\xd8\x9f\xbe\xb6\xe6\x14\x2b\x5f\x68\xac\xdd\xfe\xd1\xf5\x54\xaa\xfd\x6e\xaf\x36\xa2\xb3\x70\x92\x5f\xfe\xb9\xa5\x16\xd5\x60\x29\xb2\x4c\x51\xf7\x05\xb2\x9b\x07\xbe\x57\x81\x69\x8e\x79\xf2\x2f\xd4\x6d\x7d\xa4\xdc\x43\xea\x88\x24\x43\xb5\xb8\x51\x11\xf7\xe1\x5d\x9d\x56\x70\x43\x59\xb5\xff\x41\x99\x4d\x80\x07\x85\xf2\x2a\xe7\xbc\x99\xda\x41\x50\x43\x26\x1a\x2b\xfc\xa4\x6b\xca\xbe\x93\x95\x0b\x99\x10\x89\x1f\xb6\xa6\x8d\xb1\x28\x93\x34\xfe\x8c\x0b\x0c\xe2\x2b\x02\x1b\x67\x27\x9e\x7f\x7e\xe9\xfc\xaf\x62\x74\xa8\xcb\xdf\x1d\x2f\xb6\xff\xea\x3e\x42\xb0\xed\x99\x62\x94\xf4\xe9\x53\x46\x8d\x9a\xeb\xfe\x3d\xdf\x0d\x10\x0f\xaa\x34\x6e\x34\xde\xe9\xf4\x66\x76\x97\x47\x36\xbd\x9a\xe4\x4b\xc8\xef\xce\x1f\xed\xff\x70\xf5\x2f\x28\x48\x8d\x76\x75\xc6\x04\x65\x54\xd3\xfe\x1e\x74\xec\x7b\xfb\x37\x99\xbd\x17\x2c\x63\xfb\x76\xa1\xa3\xd5\x34\x7c\x92\xe1\xb4\x96\xa3\xcc\xad\x4e\x97\x6c\x3c\x56\x49\x72\x36\xf5\x37\xea\xe7\x2c\xae\xf3\xb4\x50\x63\x14\x03\x90\xd5\x18\x86\x5f\xa0\x73\x90\x2b\x1c\xf0\x2e\x3d\x62\xdb\x6c\x61\xb9\x27\xda\x07\x80\xd7\x32\x6e\x1f\xfc\xd5\xc7\x7f\x81\xaf\xc5\x20\x74\x55\xeb\x66\x65\x35\xeb\x34\xcd\xf5\x73\x1f\x99\x1d\x7b\x69\x69\x91\x2f\xa6\x70\x9a\xad\xef\xb4\x02\xe4\xd0\x67\x53\xe1\x90\xe6\x15\xa5\x1e\x8f\xe4\x4f\x8d\x78\xf6\xa2\x93\xc6\x2a\x21\x57\x02\x8b\x84\xcd\x3a\x25\xab\x98\x1f\x1f\xaa\xae\x0f\x9a\xc5\x19\x32\xcb\xb7\x4d\x3a\xe3\x46\xe3\xe0\x55\x16\xee\xcb\x9c\x41\x50\xea\x77\xd9\x94\x5e\x18\xe5\x00\x92\x2e\xae\x44\x5a\x9b\x81\x1d\x07\x14\x2f\x66\x41\x5f\xc6\xdd\xce\x79\xd7\xf4\x39\x9c\xbf\xc7\x83\x53\x36\xad\x4e\x0c\x13\xde\x36\x51\x4f\x1f\xcd\x8e\x51\x4a\x77\xa0\x77\x1d\x2e\x18\x81\x92\x82\xc9\xe0\xd7\xa7\xb2\x25\x62\x21\xa8\xd4\x9d\x08\x4f\x93\x1d\x9f\x9b\xb7\x23\xeb\x1e\x7d\xce\xc6\xa6\x96\x83\x11\x88\x90\xcb\x8b\x5e\x39\x18\x77\xfd\xe0\x2b\x23\x23\xc7\x9f\x5e\x02\x34\xce\x5a\x33\x5f\x4d\xf5\xb7\xbc\xcc\x5f\xfe\x33\x3b\xb3\x15\x16\x03\x75\x78\xf9\x8c\x54\xbf\x27\x32\x5a\x3d\xb9\xbd\xe1\x5f\x8e\xda\x4b\x6f\x66\x61\x91\x85\x48\x26\x7a\xdf\x5a\x36\x89\x2e\x7f\xd5\xc7\x72\x88\x17\x38\x92\x77\x3d\xd5\x1f\xb5\x7b\x96\x5d\xdd\xb1\x68\xbd\x30\x4f\x27\xe1\x9f\xc9\xd6\x93\x74\xeb\x5c\xef\x78\x46\xf2\x27\x01\x7b\xc4\x19\xd9\x21\xaf\xf5\x48\x7d\x6f\xf7\x87\x28\x97\xfc\x4e\xde\xf3\xa2\xf1\x7d\x9f\xb7\xef\x5d\x0d\x96\x85\x4d\x33\x60\xff\x66\x5b\x1e\x54\x5a\xae\xa4\x58\xe9\x08\x71\x03\xb4\xae\x7b\x76\x87\x01\x5e\x1a\xdf\x8e\x5f\x9f\xf6\xbb\xaf\x46\xed\x82\xa5\xdc\x11\x7e\x2e\x1b\x39\x4f\xd5\x81\x36\x3f\x8f\xf5\xbd\xc7\x0b\x0a\x0f\x85\xb9\x9c\xc6\x60\x60\xce\xb6\xc2\x88\xcd\xdf\x26\xd5\xe8\x3b\x21\x2a\x51\xa7\x1c\x24\x63\x2c\x0f\x8a\x39\x46\xa5\xa8\xb7\x58\xc8\xaa\x45\x9e\x5f\x99\x61\x39\x44\x4f\xfb\xa5\xfa\xb2\xb8\xa7\xa8\xad\xbb\xcd\xd2\x20\xb7\x03\xa6\xe2\x03\xde\x32\x92\x9a\x4c\x04\xea\x74\xcd\xf0\xea\xa1\xde\x5e\x4b\x78\xda\x5a\x83\xf2\x2a\x32\x04\x46\xed\x8e\xd2\xf5\xab\xd8\x8e\x7c\xdc\x35\x90\x57\x20\x75\xb4\x41\x41\xbd\x3d\x5d\x24\xeb\x87\x6d\xb0\xfa\x24\x25\xc5\x47\xac\x13\xd8\x51\x90\xca\xb6\xdd\xa0\x5e\xe4\xaf\x9f\x30\x5c\x13\x05\xe1\x31\xce\xf6\x98\x8e\x06\x51\xc0\x78\xad\xb8\x9e\x6c\x34\xb7\x50\x6b\xef\x74\xf4\x68\x8c\x84\x81\xc8\x5d\x36\x36\x7f\x8d\xc0\x96\x41\xf1\xf4\x8f\xfc\x2f\xa9\xf5\xd6\x33\x6a\xd3\x1e\x42\x11\x57\x89\x12\x33\x97\x76\x58\xbe\x27\xc4\x3a\x28\xfd\x7f\x6c\x92\x34\xce\x85\x10\x4f\x81\xa4\xce\x8a\xa6\xf9\x8a\x26\x16\xf4\xe2\x95\x5e\xcf\xab\xcf\xe3\x31\xec\xa5\xa2\x99\x0f\x5d\x51\x1f\x15\x7f\x91\x73\x8b\x7a\x7b\x71\x3c\xca\x80\x48\xcb\x14\xa8\x0a\x86\x99\xdd\x86\x5b\x4b\xaa\xc4\x3a\x1d\x5b\xb7\xe8\x93\x0b\x55\x98\x65\x54\x97\x99\xc6\xf7\xf8\x10\xfc\x45\x1a\x2d\x7f\x11\xc0\x0b\x3c\xbc\x6c\x72\x28\x6d\xc1\x8c\x89\x82\x72\x7c\x91\xe7\x8a\xa9\x54\x85\xf3\x46\x2b\x84\x42\xf7\x52\x3c\xae\x7e\x41\x36\x0d\xe2\x5a\x24\xfd\xbc\x0d\xf3\xd4\x46\x9d\x85\xc3\x14\x6e\x9c\x1d\x74\xdb\x5d\xb8\xfb\xd5\xb6\x22\xfd\x5d\x94\x54\x2b\x04\x03\x6e\x5a\xef\x70\x2a\xd9\x24\x32\x88\xa7\xde\x0b\xb1\xfc\xd8\x18\x67\x32\x74\xd9\x5f\x38\x88\xb0\x46\x7d\x24\x86\xf1\x1a\x34\x09\x1f\x1e\xf5\xe8\xb0\x98\xe9\xeb\xea\xef\xcb\x5b\x17\x0c\x93\x9b\x23\x5f\x74\x66\xcd\xa3\xca\x3d\xb3\x79\x6a\x98\x73\xc9\xe2\xbb\x7b\x23\x3e\xc6\x74\x8c\x12\x93\x42\x11\x26\x2f\x23\x3d\x64\x97\x79\x8c\x1f\x44\x2a\x63\x0b\x16\x02\x57\x96\x9f\xca\x53\x7d\x98\x93\x97\x38\xd4\x26\x0f\x3d\x15\x77\xee\x8d\x67\x26\x22\xe7\xe3\x67\xb0\xf3\x17\x5a\x61\x1b\x2c\x19\xff\xe2\xfa\x69\x3c\x06\x64\xf0\xd3\x67\x5c\x0a\x9d\xa0\x0e\xcb\x1f\xa3\xe9\x0e\xaf\xfa\x59\xdc\xe0\xf6\x82\x4b\x60\xa6\x3f\x7c\x93\x53\x28\x21\x97\xf4\x93\xd5\xfa\xf0\x85\xb6\xb6\x6a\x0e\x72\xd4\x20\x24\x3a\xee\x7a\xa7\x57\xd4\x1e\xa8\x43\xe1\x19\x2e\x55\x26\x08\x28\x4f\xc4\xe0\xca\xad\xc2\xec\x44\xe8\xbd\x43\x69\x37\x9d\x53\x13\xa5\xda\x93\xb1\x3d\xad\xf2\xd4\x25\x16\xf2\x0f\x41\x94\xc4\xe2\x13\xf2\xbf\xa3\xe3\x3a\xb2\x60\x13\x22\xbf\xd3\x33\xa2\x73\x36\xa7\x5a\x3c\x3e\x57\x09\x7e\x93\x98\xd7\x53\x73\x41\x69\x03\x98\xc0\x98\xea\xc6\xd2\x83\x9d\x80\x6b\xb4\x2a\x86\xfb\x6e\xc2\x1d\x9f\x94\xf2\x6a\x11\xab\xd7\x89\xae\x06\x71\xb1\x2b\x0a\x5a\xb5\x1a\x16\x6b\x97\xb7\x59\xad\xb5\xcd\x0d\x2b\x01\x7b\x7d\xb4\xec\xf0\x60\xed\xbe\x2c\xfc\xb1\x8f\xc2\xb0\x35\x6d\x66\x20\xcc\xd3\x68\xc2\xc0\x78\x42\xcf\xb2\xec\xfe\x9a\x4a\x30\x9d\xce\xbe\xe9\xf3\xc6\xe1\xce\xf4\x0c\x54\xec\xd3\x56\x74\xf6\xac\xcd\x8c\xc9\x76\x83\x3d\xb1\x51\xe1\x1c\xa9\x56\x31\x32\x4d\xb8\x15\x25\xb2\x7d\x47\x7c\x40\x4e\x4e\x50\x11\xd2\xd9\x1f\x1e\x6e\xbc\xf5\xd1\x5d\xca\xd6\xac\xda\x2b\xb8\x8a\x67\x99\x1b\xd6\x8a\x1e\xf4\x2b\x2e\xe4\xc4\x6f\x94\xcf\x5b\x69\x81\x35\x2a\x84\xd9\x14\x64\x97\x57\xd8\xa2\x96\xe9\x34\xe6\xce\x4a\xfa\x92\x2b\x49\xd8\xfa\xb2\xe6\x17\xb5\xa6\x7f\x54\xe5\x4c\x34\x50\x2a\x07\xf8\xfc\x69\xa8\x2d\xda\x70\x12\x7d\x75\x67\x27\xda\xea\xcd\x46\x17\xa9\x25\xfc\x6b\xb3\xc7\x4f\x8e\xe0\xfb\xb5\xf6\xc2\x27\xa7\x4a\xb7\x06\x75\x53\x62\x13\x6c\xa9\x7f\x61\xe0\x51\x39\x76\x64\x58\x01\x75\x08\xbd\x05\xbd\x72\xb7\x87\x70\xb4\x98\x6a\x88\xfb\x66\x93\xf1\x6f\x2d\x93\x68\xa4\x1f\x25\xcb\xbd\x8c\x2a\xbc\xce\x97\xbf\x3b\xdb\xfc\x94\x86\x13\x7a\x46\xfa\x24\x1d\x31\xf5\xc8\x07\x3a\xc8\x3b\x67\x2f\x42\xff\xfb\xd9\xaf\xa6\xc6\xf2\x4f\xcd\x1e\xdc\x9e\x6e\xeb\xdc\xe4\x43\xe1\x02\xa4\x3e\x9d\x6d\xaa\x9b\x75\x1e\x9a\xf6\x6e\x21\x8d\xf4\xde\x45\x52\x87\xd7\x6e\x59\x77\xa8\x97\x06\xb4\x22\x02\xae\x4e\x0e\xf7\xe7\x2d\xc6\xe2\x07\x75\x96\x53\x41\x47\x2f\xf4\xc6\x51\xda\xb8\x34\xc8\x84\xab\xf9\x60\xe8\xd6\x6e\xa9\xde\x8c\xf1\xf1\x05\x1f\xf0\x00\xef\xe6\xaa\x16\x5e\xe4\x6c\x26\xbb\xb4\x62\x99\xe1\x60\x55\x6a\xa5\xf2\x3e\xcf\x9d\x66\xaf\xca\x06\xfd\x11\x09\xa1\xc0\x6f\xcc\xf1\x7d\x75\x6f\x37\x17\x3e\xff\xe5\x87\x7b\xed\xbb\xd5\x92\xfc\xeb\xa6\x82\xb1\x2a\xf8\xf1\x27\xf6\x8a\xc5\x38\xd2\xfc\x94\x35\xdd\x4c\x34\xa4\xbe\xab\x48\xb0\xff\x63\xdf\x3f\x5c\xfd\x34\xc2\x77\x8e\x75\xe7\x78\x0b\x3e\xb7\x5b\x3a\xc1\xea\x60\x61\xae\x60\x75\xa4\x50\x97\x5d\x54\x87\xd9\x52\x6b\xf6\x7a\xb7\x9d\xc2\xfa\x34\x62\xf7\x81\xe6\x4e\x13\x7e\x91\x24\xcc\xe5\x7a\xac\xec\xbe\x5f\xc4\x54\x9c\x82\x51\x24\xa8\x2a\xd3\xbd\xce\x32\x5f\x97\xa4\x47\xf6\x39\x2d\x09\xfb\xf4\x5e\x36\x45\xf3\xef\x22\xaa\x85\xfa\x05\xe9\x9f\x0e\x0e\x68\x1d\xf7\x99\xdb\xcb\x92\x52\xdd\x5b\x80\xa2\x5b\xad\xaf\x82\x57\xc8\xe9\x19\xb4\x1d\xb2\xd7\x32\x40\xc6\x4b\xac\x63\x57\x49\xa8\x80\x7e\xfe\xa8\x29\xdb\xe2\x28\xdb\x8f\x57\x32\xc7\x76\x26\x84\xcc\x6f\xc9\xc4\xd3\xe6\x52\xfb\x87\xfb\xea\x5a\xc0\x45\xa3\x0f\x36\xa5\xb6\x57\x43\x1f\x3e\x75\x38\xf9\x4b\x49\x73\xec\x62\xe3\x4b\xdf\x3f\x9c\xa1\x89\xa6\x06\xe6\xa9\xff\x1c\x94\xb5\xcb\x30\x41\xa7\x16\x41\x3b\x81\xda\x33\x5a\x0e\xa2\xa7\x4e\xbe\x94\xa2\x0d\xc0\x68\x5b\xbc\x55\x18\xcf\x7d\xe4\xc6\xa8\xeb\x60\x5f\x71\xef\x47\xa4\x0c\xbe\xdd\xd9\x27\x89\xad\x48\x6a\x1a\x5a\x32\x8a\x7b\xb9\x6d\x10\x70\xa1\x65\x32\xc6\xc9\x03\xef\xb9\x4f\xa6\xf7\x15\x21\x4b\x6c\x7a\xb6\x4d\x4a\x44\x32\xaa\xe9\x9a\x9c\x3e\xba\xa8\x97\x73\x73\xfc\xae\xe4\x90\x0d\x40\x0b\x71\x7c\x52\x10\xc0\xb2\xa9\xdd\x87\x81\x89\xe4\xa8\x3b\x16\x1a\xdf\x76\xd1\x05\xf8\x6c\xae\xb2\xaf\x07\x1c\x39\xd6\xdb\x22\x7e\x2a\x3a\x53\xe8\x0d\x6b\xcf\xbc\xbd\x3d\x2d\x62\x2e\xfd\x20\x12\x25\xa5\xc2\xcf\xb1\x86\x76\x1f\x95\x8f\x97\x28\xbf\x7a\xb7\x24\xfd\xd0\x14\x87\xa2\x8b\xb7\x7b\xa9\x93\xd7\xe6\x69\x79\x0f\x57\x70\x90\xad\xaf\xad\x79\x89\xe6\xee\xfb\x97\x14\x14\x1c\xfd\x23\xd8\x65\x26\x49\xa6\xde\xf5\xa0\xd4\x5e\x25\x32\xed\xa1\xb4\xf3\x63\x37\xc7\xc0\xfb\x51\x61\x18\xbc\x9d\x2a\x85\xb2\xf9\x87\x39\x4b\xf8\x19\x43\x79\x49\xe9\x6c\x43\xa5\x9b\xa6\xdf\x3d\x33\x74\x93\xac\x43\x6e\x1e\x27\xc2\x75\xf3\x65\xe0\xa4\x53\x61\xcb\x00\xe2\xb3\x57\x49\x6d\xed\x83\x32\x9f\x8f\x36\xa4\xa6\xb8\xef\x65\xe5\xc3\x7f\xc5\x76\x71\x50\x9e\xa7\x6f\x2b\x14\x3e\xd3\x81\xe8\x6d\x4e\x47\xa3\x8f\xc6\x6d\x52\xf7\xf3\xe0\xe3\x96\x67\xb1\x3f\xa7\xed\x9c\xcc\x06\xbb\x52\x8e\x15\xe3\xa9\xb8\x3a\x84\xa3\x00\xd9\x69\x8c\x46\x4c\xef\x96\xa7\xce\x13\x63\x7c\x90\x55\x3e\xee\x7a\xa5\xb2\x83\xf7\x25\xce\x50\x74\x82\xa3\x68\xc0\x69\x41\xd0\x86\x91\x8a\x7a\x62\xae\xbf\xd0\x8f\xf1\xa2\x37\x2b\xc2\x80\xb0\xa3\xc6\x47\x7c\x0c\x31\x92\x35\xe8\xf6\x9a\x91\x74\xaf\x26\x76\xcc\x34\x81\xe5\xc9\x9b\xf5\x02\x88\xad\xad\x30\x68\x90\xd3\x20\x67\x93\x5f\xba\xa6\x77\xeb\x5a\x0e\xce\x7b\xe2\x8f\xff\xb6\xb8\x7c\x25\x58\x7a\x5f\x80\x6b\xf7\xaa\xbd\x7f\x24\x91\x2f\xdb\x2e\x3c\xac\xa5\xd6\xef\x7a\xa8\x69\xa4\xdc\x0e\xbd\x38\x39\xb4\x78\x73\xad\x39\x3d\xfb\xb6\xe6\x27\x86\x80\x3c\x3f\x29\xa1\xe8\x0d\xdf\x71\xf0\x79\xb8\x5c\xc2\x67\x27\x24\x6a\xf1\xe2\x59\xf1\x2d\xaf\x71\xbe\x48\x19\x1d\xc3\x1e\x2e\x60\x76\x73\x76\x2c\x79\xd3\xee\x6a\x9c\x73\x75\xe1\xe7\x88\xc7\x11\x2e\x2a\x85\x93\x20\xe8\xea\xcd\xbc\x8c\x99\xc1\x65\xbf\x31\x36\xe3\x77\x0f\x56\x7f\x0f\x91\xb8\x06\x64\x62\x45\x44\xf2\x57\x89\xba\x20\xbb\x75\x65\xa5\xa3\x9b\xee\x4f\x84\x81\x60\x9f\x47\x86\xb6\x98\x42\xd5\x9d\xcd\x57\x5a\x51\xaa\x16\x24\x04\x00\xbc\xd2\x68\x42\x5f\xc2\x53\x64\x88\x8a\x73\xaa\xb1\xa7\xfc\xe3\x63\xe1\xf8\xef\x5c\x21\x23\x5c\xa4\x9d\x43\x44\xea\xcb\xd6\x35\x83\x0d\xcd\x61\xa6\xfa\x12\x0f\xc5\xfa\x8d\x18\x98\xef\xa9\x2c\xbf\xbf\x2b\xc5\x6b\x82\xb6\x59\xae\x2c\x29\x32\x3c\x1e\x19\x7c\xdd\x0d\x77\xb5\xca\x92\x15\xef\xe4\x55\x03\x13\x00\x35\x3a\xc9\x52\x9e\x0b\x7e\xf7\xd9\x64\x1f\xed\xf7\x19\x79\xdd\xe2\xfc\x7f\x5e\xa6\x04\xb7\x20\xda\xbe\x0e\x68\x94\xb4\x06\x11\x12\x27\xc7\x3d\x26\x74\xcc\x9e\x0d\x16\xc7\xf0\x2f\x08\x90\x1c\x1f\xce\xa4\x27\x20\x81\x77\x46\x13\x06\x85\x3b\x61\xed\x61\x3d\x75\x27\x51\x82\x82\x3d\x8f\xaa\x3e\x3f\xfc\x5e\x56\xc6\xa1\x9b\x34\x66\x01\x3e\x25\x6f\x62\x4d\xf8\xac\x49\x69\x5b\x8b\x83\xf2\x4a\x1d\xbb\xd4\xd8\xde\xc3\x19\xb2\x1d\xfc\xf6\xca\x79\x34\xa5\xc8\x5f\xc5\x40\x9a\xe9\x7c\xb5\xf6\xe2\x24\x86\xbc\xa7\x69\x5d\x71\xac\xd3\xe8\x59\x84\x52\x88\xb3\xf0\xb6\xa6\x88\xb5\xac\x03\xe1\x8b\x66\xb1\xf8\x49\xd7\x81\x8d\x7c\x51\x74\x30\x18\x07\x05\x39\xce\x7c\xb4\xab\x29\x65\xa5\x0d\xb8\x88\xc8\x94\x98\x4a\xeb\xa9\x91\x35\x8a\x79\x1c\x6b\x32\x48\xe4\xe9\x68\x02\xd1\x28\x80\x77\x15\x52\x49\x59\xb6\x23\x16\x27\xa7\xa8\x03\x4a\x8d\x6d\xa6\x15\xf0\x2e\x30\x3c\x0e\x73\xbb\xe0\x20\x62\x8f\x5e\x0f\xa4\x9c\x1a\x58\xda\x2c\x52\x10\x35\x9e\xd0\x5b\xe5\x86\x7a\xe9\x2b\x7f\xbf\x8b\xd6\xbe\xfe\x67\xe0\xdf\x05\xd9\xd1\x9b\xfa\x0a\x73\x27\xf1\x3f\xc6\xf4\x86\x1d\xfa\x3e\x1d\x6e\x07\x85\xb9\xec\x88\x71\xe5\x97\xf3\x6e\xd7\x9e\xb3\x4c\x2f\xfa\x39\xbf\x94\x8e\xf5\xda\xca\x41\x8e\x3e\xff\xe1\xe8\xa4\x5b\x6e\x86\x7d\x4a\x73\xb3\x8a\xad\x89\xe9\x12\x7b\x7a\x20\x93\x96\xee\xeb\xbb\xa0\x6b\x03\x25\x63\xeb\x9a\x5c\x8c\x23\xcd\x1e\x6c\x49\x8a\xea\x16\x98\xfb\xc8\x3e\xf3\xfb\xc5\xc9\xb8\x36\x91\x5c\xac\x93\xa9\x2a\xbe\x42\xc5\xef\xea\xe1\xbd\x2c\x19\x08\xbe\x33\x86\xcf\x5f\x28\x3a\x8e\x6d\x10\x62\x65\x7b\xb8\xf5\x37\xd0\x11\xd7\x7a\xe3\x31\x31\xc7\x3b\xba\x8f\x61\x78\x4e\x79\x7b\x85\x4e\xe0\xc2\x8b\x09\x16\xde\x24\xbd\xf2\xd5\xc0\xbd\x65\xab\x58\x4f\xdb\x8b\x6c\xf0\x7e\x62\x0d\x91\x4c\x1c\xd6\x70\x65\x7a\x7a\x1e\x1e\x97\x95\x7f\x37\x25\x4e\xe3\x5e\x66\xee\xf7\xf4\x22\x70\xee\xa4\xce\xaf\x2d\xba\x9a\x42\x45\x2d\xec\x22\x27\xf8\x4c\x8a\xd7\xf5\x90\x57\x6d\x47\x8a\xf1\xd6\x2f\xbf\xa2\x79\x33\x98\x92\x9e\x83\xbb\x84\x27\xae\x05\xa2\x51\x5c\xce\x54\x4e\x9b\x5e\x27\x1b\x69\x9c\x64\x34\xca\x69\xef\x7f\xbb\x24\xce\x7d\x5d\xf5\xab\xaf\x82\xf7\xd2\xc3\xaa\x0d\x40\xd1\xeb\xd5\x51\xc9\x95\x72\x14\x79\x5e\x8a\xa4\x77\xbe\xbb\x7a\xf3\xf5\x6a\x22\x33\x11\x52\x44\xf1\x69\x39\x74\x71\x79\x9f\x0c\xa4\x4c\x22\xcd\xc0\x67\x10\x47\x51\x84\x51\x83\xf3\x8e\xcd\x51\xe8\x04\x2c\x87\xfa\x69\xcc\x09\x97\x7d\x37\xb2\x18\x8c\x78\xee\x7f\xeb\xe0\x70\x90\x46\xc1\x32\xf3\x6d\xfa\xbe\x82\x3f\xf0\x79\xa6\x6e\xbc\xbf\x12\xb5\xa1\x7b\xcc\x48\x6a\xc7\xd9\x94\xd1\x12\x0a\xeb\xef\xc7\x8a\x5d\x9c\x76\xfe\x8d\x02\x6f\x48\xdb\x3f\x01\x4a\xec\x79\x6d\xf9\x2a\xad\x17\x0c\x8b\xf9\x23\xa5\x25\xbd\x04\x7e\xbe\xd0\x8f\xff\x29\x33\x92\xfa\xc5\xdd\xe4\x5d\x05\xa3\x56\x88\xbf\x37\x4a\x61\x74\xbe\x9d\x24\xef\xce\x2d\xa3\xd8\xd4\xf4\x3d\x5b\x17\xf6\x9a\x6a\xdd\xf3\x5b\x47\xfb\xd3\x08\xf9\xe9\xd6\xe6\x93\x52\xa7\xcd\x5b\x59\x20\x5a\xc4\xb4\xcc\xde\xf7\x52\x17\x9f\x82\x82\x4e\x48\x7d\x04\xcc\x1d\xc0\x4c\x09\x4d\xd5\x88\x36\x93\x7b\xdb\x0d\xea\x8a\x41\xb8\xd7\xb8\x9c\x06\x6f\xa0\xad\x51\x7f\x62\x6f\x95\xf3\xd6\x2a\xa4\xf6\x85\xa4\x50\xf6\xe0\xd4\x9f\x6a\x84\x4a\x79\x04\xfe\x97\x06\x0f\xaf\xaa\x3f\x99\x3a\xdd\xbc\x8a\xe8\x39\xcb\x54\xa6\xe0\x6d\xd7\x67\x10\xbd\x0d\x5e\xfb\x3f\xb7\x59\xa4\x40\x89\xde\xab\xac\xd6\xfd\x7b\xd2\x79\xd1\x4b\x93\xae\x82\x85\x92\x53\xde\x5c\x3b\x6f\xdc\x36\x7f\x29\x5e\x80\x65\x3a\xef\x83\xec\xc3\xf1\xde\x39\x31\x15\x13\x8f\xbd\x5e\xb8\xfa\xfe\x9b\x6a\x75\x35\x2b\xf6\x33\xf6\x2b\x9b\x90\x33\x0d\x7b\xea\xea\x8b\xf3\x71\x5a\x95\xd8\x4a\xde\xd0\xf0\xcf\xf7\xe8\xb3\x39\x08\xf0\xa2\xd0\xcb\x70\xcd\x7c\x4c\xbf\x3a\x49\x91\xdf\xd5\xf2\x43\x65\x43\xe8\xae\x19\x25\xfb\xfe\xb6\xb4\x5d\xe8\xc2\xed\x2a\x3f\x4f\x15\xa5\x2f\x25\xf1\xe3\x85\x1f\xc8\xc3\xbb\x2d\xb6\xe0\xd3\x07\xb1\x3d\xba\x9e\xb9\x28\x3b\xff\x8b\xc1\x35\xdb\xba\x43\x6c\x01\xcf\xa3\xd6\x8a\x63\x9f\xf7\xdd\x11\xee\x49\xf9\x50\x62\x9d\xbe\x18\x5e\x40\xa1\x50\x42\x06\xfa\x99\xef\xb9\x24\x2f\xb4\xfd\x2b\x73\xfa\xf9\xc0\xfc\x28\xbe\xb7\x96\x6a\xac\xc0\xc1\xbf\x24\x6f\x4d\x1e\x42\x46\x5e\x60\xc3\xa9\x1e\x64\xfb\x53\x59\x24\xad\x82\x1b\xc3\xea\xe7\x2b\xcb\xf4\x09\x25\x22\x3d\x6b\x3f\x92\x47\x32\x64\x92\x8d\x90\xdf\xe9\x1c\xa1\x8b\x6a\xea\x71\x8f\x0a\xff\x85\x56\xfc\x58\xdb\x28\x7e\xba\xd9\x9b\xf6\x09\x24\x07\x44\x1a\x25\x26\x85\xfe\xc2\xe2\x2b\xbf\x19\xfa\xdc\x3f\x4c\x0a\xea\x8b\xf1\x0f\xcc\xd1\xad\x19\x2c\x20\x94\x11\xcf\x91\x2d\xb3\xb5\x3c\x3c\xf0\x64\x6b\x79\xfa\x44\x65\x41\xc6\x64\x15\x4e\x7c\xa0\x4d\x3a\x97\xfc\xde\xe9\x3d\x7a\xc5\x95\x57\x92\x18\xcb\x27\x8d\xef\x97\x2a\xf4\xa8\x29\xfb\x36\xe2\x96\xd4\xf1\x46\x0c\x7e\x7a\xd3\xe9\xad\xb1\xcd\x96\xb3\x45\x5e\xa4\x48\xfe\x0d\x07\x4f\x0f\xc5\x6f\xad\xe8\x6a\x40\xd1\x4b\x60\xdf\x5b\xc7\x5e\x1e\x66\x5a\xf3\xb5\x04\x71\x06\xd2\x20\x68\x7b\x42\xf7\xa4\x4c\x53\xea\x1e\x53\x5a\x7f\x88\xb9\x63\xf8\x51\xad\xf2\x59\x53\xa9\x6e\xd3\x42\xf4\x56\xd0\x54\x0c\x9d\x89\xdd\x42\xde\x86\x2b\xb3\xc9\x84\xe1\xe3\x87\x51\x0e\x0a\x9a\x17\xb7\x3f\xe8\x0c\x98\xd5\xec\xc8\x5c\xf9\xc1\x44\x72\xe7\x1a\x6d\x07\x2a\x67\x03\x69\xc4\xf6\x8f\x3f\x69\xe7\x2f\xc7\x69\xbc\xf4\x14\xd1\x39\xe9\x24\x16\x0c\xee\x15\x48\x14\x1f\x65\xf4\x59\x72\xbb\x5c\xa1\xee\x33\x8d\xbc\x03\x9d\x27\x1d\x67\x08\x70\x30\x66\xd5\x8a\x21\xf9\x04\x92\xa3\xb6\x80\x0a\x1e\xb4\xdc\x22\xbf\x5c\xac\xbe\xdf\x63\xaf\x5f\xb0\x58\xd0\x5e\x9f\x1d\x7b\x8d\x01\x17\xc0\x8f\xb3\x84\xc8\xe9\xbb\x70\x85\xa0\xa6\x50\x83\x9f\x93\x65\x02\x05\x65\xea\x8c\x76\x9c\x1a\xcd\x07\x77\xce\xf2\xf5\xef\x8f\xd8\x32\x30\xb1\x83\x89\xe4\x3a\x86\xce\x57\xce\xe6\xd5\x1b\xbd\x4c\x93\x24\xcc\x0a\xde\x57\x0a\x93\x42\x66\xb6\x1c\x1c\x44\x14\x83\x7d\x06\x12\xd9\x5d\x82\x96\x07\x3e\xe7\x9f\x9a\xa9\x33\xd7\xf3\x81\x15\x5d\xa5\x60\x50\x9e\xd9\x77\x8f\xae\x43\x6d\x6c\xcc\x1d\xbd\xbf\xf0\x7e\x0c\x05\xc9\x51\x8b\xa7\x82\xa5\xa6\x58\x6e\xfa\xb9\x13\x64\x6a\x52\xda\x00\x34\xae\xba\x84\x7c\x52\x74\xd4\x50\x5f\x8f\x9a\x80\xd1\x8e\xf5\x64\xe1\xf2\x0f\x2a\x2c\x2f\xb8\x57\x6e\xed\x5c\xf6\x72\x83\x61\xaf\x3d\xf7\x0f\xaa\x05\xc3\xbd\xd2\x19\x12\x83\x93\xa5\x56\xb4\xe8\xdc\xa8\x62\x5e\x0a\x90\x2c\xf9\xc6\x66\x0f\x36\x07\xce\xa6\x0b\x24\x64\x9a\xb2\xd3\x1c\x79\xf2\xec\x7c\xdf\x86\x82\x6a\xd0\x0f\x92\x1e\x53\xbf\x0b\xe2\xe8\x32\xc2\x0a\x0f\x98\xa5\x59\x0f\x46\xb8\xcc\x59\xb5\xa3\xde\x88\xa6\x9e\x7f\x22\x34\xf5\x65\xe2\x03\x13\xc9\x65\x96\xe4\xce\xff\x60\xf2\xb5\x94\xc9\xc8\x68\x7c\x12\xd8\x8a\x48\x0a\x86\xb9\xd2\x32\x38\x56\x0e\x2b\x10\x99\xbc\xad\x00\x1d\x19\xa2\x25\x83\x5f\x90\xc9\x2e\x01\x0a\x32\x87\x1a\xda\x50\x7a\x1b\x98\xaa\xfa\x8b\xf8\xe5\x12\x88\x5a\xb8\xd5\x1d\x2c\xc7\x63\x4a\xe5\x8e\xa5\x64\xe1\x94\x58\x9d\x4b\x03\x4e\x85\x52\xeb\x29\x4f\x4f\xc6\xe7\x5f\xc7\xa3\x4c\xd3\x97\x70\xf5\xe4\x13\x42\x34\xd7\x13\x7e\xcf\x7c\xcc\xe6\x8f\xe4\x09\x88\xa8\x99\xd4\xe9\x02\x1f\xa3\x1e\x90\x0a\x13\x90\x51\x9a\x03\x04\x00\x1a\x1a\xcf\x00\xeb\x26\xe7\x92\xd7\xd7\x45\xd2\x1c\xd2\xf6\xcd\xad\x64\x18\x7b\x22\x46\x6b\x0b\x6b\xcf\x8b\xeb\x5e\x23\xbf\xf6\x89\x05\xb3\x81\x89\xe4\x56\x54\x25\x0e\x4d\x54\x8e\xa7\x22\xef\x7e\x0e\xa5\x60\xe9\xb3\x3a\x99\x6d\x99\xbe\xfa\x51\xf3\x02\xfc\xf8\x48\x8b\xe0\xbf\x33\xc2\x78\xfb\xb2\xf0\x7f\x75\x76\xdf\xac\x77\xb7\x23\x43\xfb\xc9\xc8\xf9\x78\x41\x4a\x01\x3f\x7b\xc6\xf5\x75\x02\x3d\x1a\x8b\xe9\x13\x91\x65\x6c\x9a\x1c\x39\x83\x2d\x8c\x57\xbb\x85\xc1\x0f\x4a\x02\xaf\xde\x94\x69\x95\x1e\xce\xb6\x48\x18\x3c\xba\x11\xff\x46\xdd\xf9\x0e\x4a\x16\xcf\x70\xba\x82\x3a\x67\x54\x49\x61\xbf\x69\x70\x70\xa3\x00\x64\x97\x6a\xa9\x44\x9a\x43\x9c\x2a\xab\x9f\xf0\x4c\x12\x2c\xe7\xcc\xdf\xfb\x86\x2c\xcb\xe6\xb8\x58\x99\x61\xcc\x1e\x74\xff\x3e\x67\xd5\x30\xf9\x27\x82\x08\x94\xf8\x5b\x70\xd0\x76\x02\x59\x2b\x56\xc0\x17\x65\x8b\x24\xe6\x8f\x2c\x56\xa5\xeb\x39\xb7\x9f\x3b\x48\x1a\xf8\xd7\xd4\xe6\xc5\x4d\x43\x8f\xaa\x51\xda\xf3\xf9\x4f\xb4\x6d\x0a\x91\x26\x81\x7d\x20\x2c\x94\x2c\x48\x56\x11\x12\xce\x75\x9a\x16\xde\xe2\xa2\x5f\x0f\x49\x85\x63\xa2\x09\x3e\xc6\xba\x2b\x95\xcd\x24\x49\x3a\x39\x71\xfc\x99\x3b\x1a\xd0\xc4\x7c\xfd\xb4\xcc\x43\x4d\xd3\x45\x57\x08\x4a\xa2\x2b\xf7\x70\xb5\x55\xa1\x10\x17\x05\xd7\x50\xbb\xe9\xa4\xb8\x1a\xe4\xf8\x19\x4b\xa1\x71\x69\x9e\x95\xf5\x7f\x1a\x69\xbb\x48\xbb\xef\x44\xfa\x39\xc1\x2e\xd6\xbc\xd6\x26\x03\x91\x2c\xf0\xcc\x1f\x24\xc4\x8a\xa1\x23\x0d\x65\xc3\x5e\xf6\x39\x79\x35\xd9\x99\x61\x77\x31\xe6\xa6\x61\xcb\x3c\x28\xed\x8e\x36\x98\x6b\x2e\xdc\xfd\x7b\xd4\x36\x4b\x92\x3c\xf7\xaf\x67\xec\xb0\x56\x29\xfd\x86\xc2\xd1\xe6\xbc\x01\x6f\x1d\x2a\xa3\x4d\x6e\x67\xb8\x48\x42\x9f\x15\xd6\x97\x6c\x85\xc3\x02\x1a\xbb\xc7\xf4\xcc\x93\xd2\x45\x6a\x19\xf7\x56\x5e\xd3\x2f\x73\x0a\x04\x4b\x83\x61\x51\x54\x9c\xe3\x27\x7a\xe3\x63\x09\xd6\x35\x62\xf9\x1d\x1c\xc1\x83\xf2\xd4\x5d\x21\xb2\xe8\x44\x79\x6e\xbc\x7c\xf4\xf6\x83\xd5\x01\x2d\xb2\x1b\x0b\xac\x60\x61\x2e\xf1\xdc\x1a\x33\x7d\xa6\x3e\xed\xd9\x54\xf7\x83\x47\x4d\x25\x1f\x4c\x4d\x9f\x8b\xd1\x2f\x77\x82\x65\x9f\x7c\xc0\x5a\xf2\x50\xa8\x43\x26\x08\x89\x8d\x22\xbf\x75\xc6\x24\x23\xe8\xe9\x48\xd8\xda\x65\x15\x53\x9f\xfd\x19\xaa\x86\xac\xd3\xeb\x7f\xc8\x8e\x50\x25\xd7\x8d\xdf\x54\xe0\x44\x00\x88\xe3\xad\x0b\x88\x5d\x3e\xa2\x3c\x01\xe6\x4e\x4b\xc0\x68\xb4\xcc\x5e\xdc\xa8\xf8\x83\xe2\x6c\x8a\xfc\xdf\x87\x97\x9e\xf7\x4a\x90\x65\xa0\x3f\xe4\x2b\x1c\xc1\x4b\xab\x44\xf0\x2e\xa3\x60\x9a\x78\x8e\x7c\x44\x63\xbb\x1a\x4a\x3b\x13\xc6\x4e\x4d\x48\x49\x8c\x24\xe1\x43\xda\xe5\xa0\x1e\x86\x8a\xc3\xfa\x6c\xe4\x98\x85\x5f\xe5\x07\x26\xc0\x7c\xdf\x7f\xdb\x9b\x85\xe1\x10\x43\xad\x54\x67\xf6\x08\x74\xd4\xff\x32\x24\xbe\x0e\x20\x6a\xb5\x56\xb2\x6e\xa7\x30\x04\x00\x80\xd3\x4d\xc9\xd0\xcd\xda\xc2\xcd\x46\xc2\xca\xc5\xc6\xc2\xcd\x06\x10\x44\x08\x88\xf1\x23\x84\xf8\x85\x04\x74\x11\x08\x09\x61\x21\x09\x01\x31\x5e\x84\xa0\x04\x02\xf1\x63\x8f\x8e\xfb\xff\x03\x1c\x9c\xac\x31\xaf\xbc\xfe\x6f\xa0\xbb\xaa\x38\x01\x00\x00\x03\x6f\x5d\x43\x37\x6d\x0b\x4f\xa8\xb3\x8b\xd3\x2b\xcc\x1b\x1b\xa8\x9b\x97\xb3\x0d\x14\xe3\xec\x66\x05\x00\x6f\xd3\x96\x0f\x29\xc9\xb0\xfa\x30\xd8\x1f\xad\xde\x3e\xb5\x55\x6d\x00\xc4\x4e\xf1\xc4\x8a\x82\x8e\x9d\x4e\x23\x8e\x1e\x44\x07\x55\x0c\x14\xfe\x65\x0d\x62\xaf\xd2\x85\xf6\x4e\x8e\x76\x77\xf4\x75\x40\x3a\x48\x7b\x03\x55\x33\xd5\x9f\x00\x5b\x8c\x34\x6e\x87\xf2\x22\xff\xad\x00\xd4\x94\x9e\x2b\x96\xc9\x9b\x07\xfd\xbf\x00\x00\x00\xff\xff\x4b\xad\xcc\x72\x5d\x20\x00\x00") + +func web_uiV2AssetsAppleTouchIconD2b583b1104a1e6810fb3984f8f132aePngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsAppleTouchIconD2b583b1104a1e6810fb3984f8f132aePng, + "web_ui/v2/assets/apple-touch-icon-d2b583b1104a1e6810fb3984f8f132ae.png", + ) +} + +func web_uiV2AssetsAppleTouchIconD2b583b1104a1e6810fb3984f8f132aePng() (*asset, error) { + bytes, err := web_uiV2AssetsAppleTouchIconD2b583b1104a1e6810fb3984f8f132aePngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-d2b583b1104a1e6810fb3984f8f132ae.png", size: 8285, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsConsulLogo707625c5eb04f602ade1f89a8868a329Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xba\xf7\x57\x13\xdf\xf7\xc6\x3b\xc1\x20\xa1\x08\xa1\x09\x0a\x52\xa4\x83\x74\xa5\x48\x49\x68\xd2\x7b\x97\x0e\x02\x22\xd2\xa4\xd7\x04\x08\x5d\x45\x69\x52\xa4\x4a\x15\x10\x90\x0e\x42\xa4\xaa\x14\xe1\x8d\x74\xe9\x4a\xe8\x84\x1e\x4a\xca\x5d\x7e\xbe\xf7\xfe\x11\x77\xcd\x9a\x35\xbf\xcc\xec\x39\x67\x9f\xd7\x7e\x9e\x73\x66\x4e\x92\x91\x81\xe6\x0d\xaa\xdb\x54\x00\x00\xdc\xd0\xd6\x52\x37\x01\x00\x32\xe0\xdf\x09\xb9\x0e\x00\xc0\x49\xc8\xe4\x25\x00\x00\x60\x77\x15\x7d\x15\x00\x68\x48\xa5\xc6\x3b\x91\x03\x00\xc0\xe5\xa2\x65\xa2\x0f\x00\x61\xfc\x00\x80\x44\x01\xc0\xbf\x5b\x90\x9b\x00\x10\x28\x01\x00\xdb\x8e\x00\xf0\x30\x1b\x00\x58\x7c\xdf\x77\x18\x2b\x02\x00\x70\xdd\x59\x57\x53\x1d\x20\xfd\x3b\x8a\xba\x2a\xd2\x01\x00\xa0\x08\xd0\xd6\xd7\xa0\x58\xbd\xc6\x09\x88\xb0\x54\x37\x0b\x48\x00\x00\x12\xd0\x56\x57\x31\x0b\x99\xdf\x25\xe0\xd2\x79\x2c\x0b\x56\x28\xa3\x96\xc3\xc5\x8a\xaf\x15\x6b\x6c\x3f\x49\xcb\xd1\xe3\xff\xa1\xf3\x19\xfc\x63\xc2\xce\xee\x41\x6d\x79\x85\x7b\x47\x75\x79\x85\xa7\x5b\x87\x7b\xde\xaf\x4e\x05\xcf\x16\x77\x17\xf7\xe0\x16\x77\xdc\x31\xe1\x86\xa5\x4b\x90\x7b\x70\x4b\x90\x9b\xc0\xf4\xae\x1b\x0e\xf3\x58\x6f\x34\xf3\x6e\x8a\x94\x50\xda\x13\x37\xa9\x66\xc8\x9d\x68\x64\xfc\x30\x6e\x89\x00\xc8\xf5\xae\xfa\x52\x40\xdf\xc2\xe1\xfd\x57\xd9\xa1\x64\xc5\x6f\x88\xec\xaf\x71\x53\xcb\xe2\x48\x38\x17\x14\x02\x26\x8b\xfe\xff\xc7\x85\x07\x7c\xfb\x8c\x12\x02\x8e\xe9\x3b\xc6\xe4\xf9\x28\x9f\xba\x9f\xbb\xc3\xae\x6e\x71\x9e\x3d\x04\x93\xf5\xfc\xc7\xc3\x04\x44\x3b\x82\x37\x13\xb8\x38\xaf\xab\x86\x42\x21\x83\xef\x1a\x16\x02\xc0\x31\x7e\x6b\x42\x71\x57\x95\x11\x8f\xe8\xf8\x36\xe3\x62\xb8\xa0\x2f\xc5\x3e\x7c\x6e\x87\x80\x5d\x46\x41\x71\x11\xad\xcb\x91\xf3\x85\x30\xd1\x45\x94\x0c\x22\x19\xed\x75\x37\xe3\x5a\xb4\x63\x1b\x84\x1c\xce\x25\xc7\xa5\x44\x15\x1e\xf0\x1d\x7b\xe7\x0c\x1b\x26\x9f\xd0\x07\x39\xb3\xef\x9e\xd9\x59\x3e\x7d\x41\xab\x2a\x09\x85\xbc\x86\x14\x03\x10\xf0\x9d\x4d\x95\xd9\x60\xc6\x95\x4d\x60\x8c\xee\xa8\xd3\xd8\x21\xf8\xd2\xba\x4e\x35\x87\xf3\x48\x1e\xd6\xef\x19\xa4\x20\x0b\x40\x75\xa2\xe1\x12\x10\x14\x19\x17\xf4\xfe\xe6\xdd\xdd\x4e\xeb\xd5\xca\x04\x6c\x71\x22\xf6\xf4\x52\x61\xb1\x7b\x66\xcb\x96\x70\x72\xf7\x3d\xdd\x51\x48\x36\x3a\x5a\x6c\xac\xaf\xdb\xfb\x2e\x13\x59\xf4\xca\x16\x3d\x15\x72\x65\xf6\x05\x10\xbd\xac\x5f\x49\xc1\x19\x3b\xd6\xd7\xbd\x7f\x1a\xee\x54\x37\xb7\x45\x7f\xb7\xfb\x2c\x91\xe1\xf3\x22\x38\xfc\xe0\x42\xa5\x9b\xe5\xf4\x01\xdc\x9d\xbc\xe4\xd7\x45\x0b\x77\x06\x59\xf4\x8a\x23\x84\x1c\xee\xfb\x7c\x93\xeb\xe0\x03\xca\x5d\x96\x9b\x93\xaf\xbf\x8f\x36\x62\xbc\x90\x31\xde\x68\x81\xff\xf3\xb6\x73\x89\x91\xba\x19\xcb\xb0\x24\x9b\x88\x64\xc2\xa6\x94\x86\x14\x26\x11\x1a\xcf\x3b\xa2\xf2\x4c\x91\x61\x64\x27\x35\x91\x27\x46\x5e\x2b\x9b\x67\x24\xda\x3f\x1e\xf9\x02\x9c\xc1\xf3\x93\x95\x6c\x08\x1a\xcc\xb6\xec\xc2\xe4\x37\xc3\xb7\x20\xf3\xc4\x6d\xf2\xc9\xb3\xc7\x0c\xfe\xb6\xbd\x55\xfa\x6d\x9e\x8c\x8f\x44\x93\xda\xe3\x47\x04\x07\xde\xab\x74\xd6\xe3\x38\x17\xa3\x96\xf6\x90\x62\x63\xc5\xc3\xc7\xfc\xaa\xb7\xa0\x90\x0e\x1e\x26\xa0\x47\x9d\x91\xfb\x24\x9c\xfe\x3c\x81\x79\xdf\x69\xcc\x86\x83\x99\x25\xbd\x54\x23\xa3\x54\xa3\xa9\x4d\xbf\xe9\x25\x77\x59\x7a\xd6\xfd\xb2\x36\x41\x6e\x53\x26\x01\x9a\x01\x3e\x7b\x04\x2f\x0d\x9f\x44\x82\x1c\x46\xf0\xf5\xad\x64\x17\xe0\x8e\x9f\x11\x80\xe4\x02\x68\xd8\x21\x40\x2f\x80\x34\x26\x9c\x76\x61\x5d\x96\x49\xd4\x46\x2c\x3f\x5f\x7e\x28\x7f\xf3\x09\x71\xe3\x2b\x20\x77\x0d\x2c\x46\x51\x2f\x4f\x96\x70\xcd\x8a\xc6\x2f\x96\x5b\x82\x75\xed\x41\xfc\x57\xc7\xec\x19\xdb\x91\x61\x31\x0c\x9f\x8d\x33\x9f\xa9\x73\x5c\x6e\xaf\x0e\xdf\xa8\xe8\xd4\x13\xb7\x5c\xa9\x46\x91\x64\x4f\x4b\x66\xcc\x2c\xc3\x07\x40\x94\x64\x38\xeb\x92\xd1\x0b\xc5\x73\xc0\xdd\xb1\xd1\x24\xc9\xf3\x2f\x49\x46\x10\x70\x4c\x10\x8a\x8c\x2b\x5b\x30\xac\xe9\x48\xc1\xfa\x64\x09\xd7\x7b\xef\x4c\x22\x7a\x29\x42\x4c\x52\x1d\xa2\x96\xed\xcb\xf5\x31\xb6\xec\xa5\xd0\x96\xb6\x69\xf2\x80\x57\x9a\x56\xce\x93\xc7\xc1\x5a\x16\x81\x87\x2f\x55\xff\x6b\x52\xff\xaf\xa9\x7f\xfc\xbe\x93\x60\x8a\xbc\x8e\x23\xad\x24\x60\x04\x45\xbe\x94\xd3\x3a\x9d\xd1\x00\x87\x92\x28\x28\x62\xce\x48\x63\x2b\x61\x97\x1a\xa6\x45\x2f\x80\xeb\x57\x43\x64\xeb\x00\x3b\xd2\x94\x76\x85\x8c\x2c\x8f\x5b\x42\x1e\x39\xb0\x43\xa5\x9a\xe3\x6c\x5f\x9a\xc8\xc2\xde\xeb\xdf\xd2\x1f\x44\x93\xe3\xf5\xce\xbc\xc3\x74\x72\x31\x42\xa3\xb8\x39\x66\x7f\x92\x26\x47\x9e\x06\x54\x96\x2d\x9d\x2c\x1f\x28\x59\xb1\x62\xfa\x68\xc5\x31\xb9\xd7\x49\x0d\xf2\x2f\xbb\xb7\x21\xe4\x70\x89\xb3\x13\xc7\xf5\x60\xc6\xf3\x7c\x70\xe4\x41\xbb\xc0\x66\x92\xea\xdb\xd2\x36\x2b\x9d\x59\x75\xdd\x5b\x26\x8a\x2e\x3a\x39\x2f\xb9\x45\x07\xbc\x3e\xd7\x74\x84\x68\xfb\xfd\xc7\xe0\xf4\xf4\xb5\x6f\xc6\x23\xf6\x00\x70\x11\xcf\x6b\x33\xf0\x0d\xd0\x58\x0f\xe3\x01\x64\xf0\xb8\x71\x93\xd2\x04\x63\xca\x2a\x48\xb1\xef\x0b\xbe\xa9\x66\xe4\x9a\xf8\x4e\x10\xd3\x49\x8b\xb1\x11\x5b\x55\xc8\xea\x6f\xf9\x48\xb5\xf8\x7d\x67\xff\x91\x4a\x70\xca\x45\xb6\x4d\x95\xd0\x64\x90\x44\xb0\x57\x52\xfb\x8d\x32\xa4\x4a\xa7\xc9\x78\x8a\x33\x30\xde\x59\x51\xf4\x2f\x73\xdf\x32\xfd\xfe\x15\x55\x2c\x15\xa1\x8f\x2a\x9c\x0c\xb0\x0a\x6c\x28\x95\xb7\x7a\xad\xa0\xae\xcf\x66\x12\xf1\x91\xdf\xd5\x24\xeb\x7e\x9e\xc4\x8f\xcf\xfb\x6b\xcc\x03\x03\xba\x52\x6a\xc3\xa8\x62\xeb\x11\xee\x24\xb9\x64\x6e\x40\x88\x6b\x25\x76\x23\x98\x7d\xe5\x15\x62\x3b\x4b\x99\x6c\x08\xc4\x6e\x4f\x27\xce\x64\x3b\x22\xfb\xbc\xd7\x42\x34\xa9\xd6\xc2\xfc\xb2\xad\xf2\xbf\xd3\x34\x0c\x86\xba\xc3\xe6\x63\xe5\xe4\xfd\x27\xcf\xd8\xa4\xfc\x55\x33\x62\x24\xc8\xb9\x87\x4c\x01\xe8\x27\x26\x70\xe1\x35\xa4\xd1\x75\xf0\xb7\x94\x3f\x2d\xdc\x94\x83\xd9\x62\xaa\x68\x16\x11\xf4\x68\x2e\x9d\xbc\xd6\x08\xff\x8b\x5e\xfe\x67\x13\xbc\x0d\xcf\xf5\x0d\x2a\xf4\x3d\xf8\xbd\xb4\x2a\xd6\x64\x94\x2b\xda\xcf\x6b\xd4\x0f\x29\x7b\xb9\x53\xe4\x92\xb9\x69\x9f\x25\x32\x8b\x2b\x5b\xe6\x53\xc6\xdf\xb6\xa5\x5d\x78\x02\xd1\x11\xc3\xd8\xd0\xae\x56\x67\xf5\x73\x64\x3d\xc0\x79\x1b\xfb\xcf\x1c\x49\xca\x5a\x8e\x2f\xbe\xb0\x2e\x7b\xa4\xed\x2f\x5a\xa8\x0a\x2d\x63\x3d\x49\x7b\xb3\x09\x4b\x5d\xf1\x2f\x86\x40\x5e\x93\x3b\x7f\x60\x78\xa9\xc8\x1d\x83\x7e\x57\xda\x55\x19\x12\x99\x12\x48\x07\xf0\x62\xa0\xae\xe5\x77\xbf\x49\xc5\x67\x8c\xb0\x9a\xc8\xb8\xea\x50\x53\xa6\xbc\xff\xef\x4e\x84\x41\xd9\x79\x86\xfa\x7f\x54\x18\xc1\x58\xb9\xa7\x95\xc4\x60\x22\xc9\x66\x1c\x96\xab\xda\x5a\xf0\xf2\xfb\x8d\x64\xa7\x6f\xdc\xbb\x6f\xf9\x0e\x13\xcc\xe3\x96\x44\xaa\xf7\xff\x94\x3c\x6a\xa5\xee\x30\x9d\x4d\xe9\xcc\xec\xca\x76\x69\xcb\xee\x1c\xff\x04\x0d\x18\x12\xdf\xfc\xcb\x0d\x40\x87\x90\x2b\xd9\x5c\x32\x92\x3d\x5a\x2f\xe0\xc5\x9c\x99\xa1\xcb\xfc\xbb\x20\x24\x34\xfe\x7b\x80\xfe\xeb\xd1\x77\x99\x01\x2d\xfc\xa3\x06\x53\x7f\xd3\x29\x53\x6c\xc7\x6d\x23\x2c\xca\x37\x4b\xfb\xc7\xef\x62\x04\xe7\xbe\xb7\xb0\x14\xbe\xfd\x0f\xf9\xe0\x23\x03\x95\xd8\x6a\xb5\x8c\x13\x9d\x27\x55\xa7\xdd\xc4\xc2\x55\x78\x47\x67\x41\x8a\x42\xfb\x5e\xa9\x9d\xd8\xb3\x4f\xe4\x81\xab\xd8\x3b\x51\x71\x45\x36\xdf\x01\xb8\xe0\xb5\x18\x17\xd4\xec\x02\x98\x47\x8d\xa2\x18\xab\x84\xa3\x26\x09\x16\x1b\xaa\x72\x24\xed\x3b\xba\x56\x55\x96\x6f\x08\x0f\xe9\xb5\xf0\xd7\xf2\x8a\x6e\xe9\x8d\x0c\x8e\x7d\x14\x53\x16\x97\x0c\x60\x90\xce\x78\xc6\xbb\x41\x39\x78\xed\x27\xbd\x15\xd3\xa1\x5d\xc2\x41\x42\x79\xff\xfe\x34\x53\x58\x45\x69\x3b\x1d\xce\x79\x1f\xe3\x36\xb4\x64\x67\x68\xed\xfa\x18\x47\x7b\x9e\x19\x5d\x5f\xaf\x22\x8b\x45\x92\xe8\x01\xd4\x5d\xae\x6c\x1a\x14\x19\x17\xeb\x43\x8a\xfa\xb3\xce\x81\xc3\x24\x52\xf6\xa7\xa1\x06\xd3\x50\xaf\xa0\x72\x61\xf1\x32\xbd\x2d\xbd\x05\xfe\x0d\x73\x96\xfc\x77\x42\xca\x7c\x92\xf7\x53\xe5\x9e\xf6\xd9\x77\x16\xf9\x48\xc4\x87\x0c\x0c\x44\xf4\x71\xe3\xdf\x0a\x35\x86\x9b\xc7\x2d\x2d\xa6\xb4\xe3\x66\x7e\x4d\xcf\xf7\x09\x49\xfb\xe8\x8e\xc4\x07\x61\xe1\x66\x53\xd1\x46\xd7\xc1\x8c\xa9\x46\x00\x58\x6d\x15\xa9\x0a\xd3\x3b\x68\xb5\x3a\x37\x6a\x5d\xd2\x1e\x7c\x73\x72\xdc\x79\xd9\x1b\x61\xad\x94\x27\x59\xaa\xdb\x11\x5b\x98\x29\xf4\x50\xd4\xb8\x49\x5d\x4e\xa7\x27\x8a\xc6\x41\xa2\xc7\x17\x78\xe7\xd4\xbd\x01\x25\xce\xa6\xcd\xee\x25\xab\xfa\xdc\x0c\xc0\xed\x3f\x1e\x0c\x3b\xe7\xf2\xfc\x4b\xd3\x5e\x45\x13\xc2\x11\x63\xb0\x14\x6d\x9f\x06\x89\xbb\xcb\xc5\xaa\x80\x22\xe3\x92\x33\xe9\x80\x10\x2b\x47\x08\x82\x22\x0e\x64\x40\x9a\x14\xdf\x1e\xfe\x53\x77\x9b\xad\x59\xa1\x76\xce\x44\x59\xf6\x2b\x71\x21\xa6\x42\x3e\x1a\x51\x67\xda\x87\x89\x57\xf8\xb6\x3e\x41\x0c\x39\xcb\xb1\xb9\xae\x33\xee\x99\x54\xa7\xf5\xe4\xa2\xb8\xa5\xf4\x74\x57\xa7\x74\xf3\x1d\x35\x37\xfb\x25\x78\x85\xaf\x4a\xc5\x7b\x10\x89\x07\x80\xb8\xc2\x25\x38\x12\x5f\x19\xfb\xf2\x82\xc1\x24\x15\x5b\xbc\x53\x56\x37\x53\x6b\xd2\xe5\x6e\xd0\x73\x8f\xf6\x4a\x7b\x2d\xb6\x09\xd7\xc5\x1e\x16\xe6\xe4\x31\x68\x3c\x86\xcd\xee\xb4\xbf\x4b\x14\x12\x2b\xd9\xaf\x2b\x86\xb1\x69\xe9\xe7\x9c\x7c\x72\x79\x61\xbf\x40\x38\x59\x6a\xf2\xbb\x22\x36\x35\x68\x4a\x06\x3b\x3a\xd0\x1f\x84\x53\x84\x1d\xd2\x00\x10\x0d\xb8\xc4\xa3\x44\x7d\x13\x09\x89\xb0\xfa\x33\xd0\x7c\xfa\xc5\xdd\x38\x65\x27\xad\xee\x7a\xc6\x3c\xa5\xd6\x6a\x18\xcc\x55\x4b\x7c\x87\xb6\x9b\xd7\x34\x22\x57\xe2\x7e\xac\x7c\xbf\xca\xc2\x58\x4c\x6c\x0f\xeb\x9a\x2b\xcb\xf1\x0d\xdd\xb5\x56\x91\x8f\x57\x3f\x2c\x26\x2e\x4e\xce\x9e\xef\x11\xc3\xe6\x85\x55\xec\x40\x07\xaf\x1d\xcd\x55\x32\xa4\x00\xee\x54\x55\x7a\xe8\x4b\x5e\xe7\x3e\xa6\x93\xfc\x6b\x1d\x17\x0a\x1d\x38\x10\xbc\xa0\x5a\x30\x29\xc5\xa6\xa1\x31\x85\xef\x34\xb3\x54\xdb\xde\x5c\xb0\x9b\x0b\xd5\x5d\x54\x78\xff\xc5\xf5\x64\x31\xcc\x4e\x56\xbf\x37\xf3\x83\x30\xaf\x07\x2e\x51\x47\xeb\xb6\x7b\xda\x2a\xc1\x9e\xe3\xfb\xcc\x9b\x0f\x1c\x00\xb8\x20\x59\x0c\xbd\xc6\xf3\x82\x98\x6e\x3f\xa0\x87\x93\x79\xe6\x9d\xe3\xf2\x40\x5d\xfe\xe8\x96\xbf\xfb\x8b\xf9\xcc\xad\x5c\x7c\x2e\x66\x45\x84\x41\x43\x37\xfb\x43\xa9\xe0\x0c\x23\x0d\xf4\x27\xfd\x2c\xcd\x61\x5a\xec\x05\xa3\x9a\x53\xe1\x6e\xff\x5e\x2b\x76\xe4\xb6\x83\xe2\x50\x6e\xb8\x8c\x93\x0c\x20\x07\xcd\x87\xcf\xea\x32\x47\x1b\x81\xc1\x3c\xd1\x46\x00\xd8\x50\x1f\xb5\x82\x9d\xcc\x19\xc3\xae\xbd\x03\x90\x5a\x34\x3f\xa4\x34\xb6\x6d\x35\xb4\xf3\x7f\x4f\x8d\x89\x66\x64\xd4\xf1\x89\x6e\x79\x4a\x69\x6c\x40\x34\x4d\x4b\x84\x52\x1d\x21\x07\x8f\x8e\x8b\xdf\x0b\x35\x8a\x53\x75\x5c\x4d\xff\x11\x3a\xee\xeb\x94\x1e\x7c\x66\xec\x7f\x23\xb9\xfd\x46\x6d\x41\x74\xe5\x67\xd5\xb7\x02\x5c\xac\xda\xfd\xf1\xc2\x72\xf7\x95\x20\xc4\xca\x4f\x11\xa2\x7e\x84\x52\x8d\x93\xf4\x50\xaf\xfd\xe7\x06\x88\xd0\x0e\x7e\x84\xae\xff\x41\xca\xab\x27\xca\x37\xd4\xe7\x0a\x1c\xcf\x7d\x69\xe1\xf2\x6b\xcc\x79\x07\x14\xe6\x99\xdd\x9d\x39\x4d\xcb\xdd\x30\xaf\x85\x39\x9d\xf9\xb8\x64\x1d\xfd\xa7\x63\x2c\x9b\x18\x66\x00\x9a\x8c\x74\xfc\xfe\xcf\xa9\x1d\xff\xc1\x54\xda\x7d\xb3\xa7\xae\xcd\x6a\x74\xba\xf4\xbc\xea\x4b\x4b\x84\x70\x5d\xa4\xa8\x8b\xd6\xb2\xb9\x1d\x5e\xd1\x4d\x70\x71\xb3\x55\x7c\x5f\xbf\x47\xb0\x57\x8e\xec\xdb\x40\xc4\x70\xc6\xec\xb7\x70\xc9\x0d\x59\xba\x46\xcc\xb7\xea\x5b\xfe\x9e\xe2\x18\x8b\x48\x73\x70\x17\x86\x0a\x48\x1c\x47\x3a\x6a\x25\xea\x5b\x8c\x4b\xdf\x01\x23\xac\x6e\x39\x8c\x8f\x8a\x83\x90\xa5\x0a\x56\x36\xf7\xaa\x72\x4c\xc3\xe7\x73\x06\xd2\x8e\x1e\x0f\x65\x74\x57\x19\x45\xf4\x58\x76\x08\xec\x6b\xf7\xc8\x7d\x05\x21\x8d\xfb\x75\xb3\x46\x94\xc5\x37\xf7\xff\x81\x79\x45\x57\x31\x22\x60\xa3\xdd\xb9\x4b\x4d\x77\xce\x1c\x6d\xb0\x0a\x02\xfe\x49\x1d\x6b\xc3\x1c\x55\xc7\xc4\x87\x81\x65\xc9\x2a\x71\x57\x9d\x06\x46\xf2\x40\x8c\x99\x7d\xb8\x77\xcb\x5d\x34\x7d\xeb\x77\xd9\x27\xf1\x86\x49\xb3\xdd\x8e\x64\x2b\x34\x2a\x53\x59\xb3\xef\xf8\x46\x09\x53\x61\x43\x51\x38\xa7\xe9\x90\xfa\x82\xcf\x5d\x67\x7d\xc4\x25\xb2\x7f\xac\xd0\x38\xff\x61\x0e\xe0\x2d\x8d\x36\x94\x18\x5c\xd6\x3e\x18\x16\x32\x9d\x28\x9c\xfb\xcf\xd2\x80\xa9\x49\x64\x2e\xf7\x64\x34\x5b\xdf\xfe\x2d\xeb\x63\x30\xfd\x6f\x16\x3d\x2e\xf6\x68\x57\xc6\xa0\xba\x92\x89\xd6\x56\xc6\x33\x1f\x4e\xb7\x51\x71\x4e\xc3\x9c\xce\xf8\x91\xde\x23\x30\xea\x2e\x17\xab\xb0\x2a\x08\x8a\x9a\x28\xf6\x77\xb0\x7a\x84\xc8\x5b\x49\xfd\xad\x8e\x6e\x63\x56\xf0\x93\xaa\xb3\x1b\x9d\xfe\x8b\xdd\xa6\x25\x52\x39\x3d\xbd\xdd\xaf\x24\x20\x77\xdd\x17\x98\xe1\xc6\x1b\xeb\x17\x63\xf7\x06\xf3\x5b\xf7\xc7\x58\x67\xb0\x3f\x59\x7f\xcb\x38\xdd\xdc\x0d\xff\xbf\x38\xce\xd2\x37\x9b\x0e\x9a\x62\x1c\x82\xeb\xcf\xf0\x6e\xf8\xbf\x55\x4a\x7b\x53\x42\x6a\xc4\xac\xfd\x95\x6a\xd5\x03\xea\xd7\x22\xec\x5f\x03\x29\x1d\xaa\x85\x4f\xf2\x17\xdb\x8e\x77\x14\x1a\x9b\x0d\xff\x3d\xfe\x8a\x3d\x3a\x56\x90\xac\xc4\x19\x3e\x1e\xdc\x5f\x7e\x0f\x40\x7e\x8a\x81\xdd\x1b\x14\xbf\xa0\xb5\x2e\xb6\x8a\x74\xe2\x89\xda\x0e\x30\xb8\xda\xce\xe0\x46\x98\x06\x1f\xfc\x73\x39\x28\x2e\x1b\xbe\x22\x44\x66\xf8\x31\x30\xf5\x6b\x9d\xcf\xa8\x25\x2c\xea\xcd\x83\xe0\xc8\x64\xb8\x84\x61\x91\x4d\xb0\x4a\x31\x18\x52\x70\xbb\x41\x9e\xba\x64\x0d\xaf\xb2\xca\xd9\x74\xee\x0a\xbc\xa1\x54\x1b\x4a\xd9\x49\x32\x75\x7f\x71\x39\x53\x4e\xb3\x65\x93\x1b\xeb\x90\xc1\x9a\x7b\xcd\xcf\x87\x12\xec\xe5\x0b\x7c\xe3\xc6\xfb\xe9\x17\x73\xee\xf2\xee\x3a\x2c\x66\xd7\x45\x9e\x38\xce\x7f\x07\x7d\x55\x51\x24\x03\x54\xe9\xa1\x27\xa0\x06\x6d\x4e\x97\x87\x56\x04\x27\xc6\x8b\xc7\x60\x18\x20\x38\xe6\x33\xf8\xae\xe0\x77\x32\x5a\xd2\x55\x6b\xf9\x3f\x76\xbc\xaa\xda\xc1\x1f\xa7\x3a\x5d\x2e\xd6\x40\x39\xb2\xe1\x1e\xbc\xb6\x7e\x31\xa7\x37\xff\x5e\x21\xa2\xc3\x96\xf8\x94\xc7\x95\xa5\xb8\xf1\x2e\xf4\xb9\x20\x98\x8b\x09\xd4\x63\xca\xc5\x84\x74\x49\x36\x3c\xd7\x1c\xb8\xe8\x7a\x48\xc4\x18\x15\x0c\x16\xd7\x30\x4d\x56\xbd\x9b\x4e\x73\xc8\x13\x17\x21\x69\x05\x1f\x58\xde\x8e\x71\x78\x72\x4a\x0d\xa6\x40\xf1\xd4\xb3\xf7\x72\x64\x31\x5f\xfe\x2b\x17\x2c\x4c\xd1\x9a\x58\xf2\xd1\xe8\xda\x63\x66\x10\xa2\x7a\xf5\xf5\x05\x48\x95\x12\xca\x0e\x2e\x06\xd8\xa5\x3b\xda\xae\xfa\x1e\xe2\x42\x63\x1c\x0a\x3e\x6a\xff\x78\x37\x93\xf6\xce\xf0\x6f\xf3\xb2\xee\xec\xdf\xc0\xa4\x12\x57\x33\x52\x0e\x9c\x4b\x4e\xf1\x3d\xb7\x7d\x33\x25\xda\x66\x72\x91\xf4\xc2\xbd\xe5\xec\x78\x47\x37\x93\x42\x66\xf5\x66\x93\x08\x99\x31\xc7\xff\x10\xa4\x4d\x34\x02\x5e\x53\x2a\x75\x5c\xc5\xc6\x38\x90\x01\x7c\xde\xe9\xb3\xc7\x79\x87\xd2\x1b\xc1\x27\x9c\xe5\xfa\x5b\x57\x54\x03\xee\x46\x5d\x86\xe8\x36\x04\x38\x86\xd8\x23\xb4\xa6\xa1\xeb\xe6\xb0\x3b\x98\x8f\xee\x92\x74\x20\x9c\x12\x6e\xf9\x0f\xf3\x8f\xa0\x0e\xd4\x55\xa8\xee\xf4\x92\xa9\x52\x42\x03\xd4\x9e\xaf\x7c\x43\xd2\x5a\xa0\x97\x17\x97\x6f\x6e\xcc\xdc\xa9\x29\xfc\xb1\x45\xcd\xd2\xba\xb6\x9c\x5b\x35\x84\xae\xeb\xd8\x64\xc0\x08\x82\xd6\xba\xe9\x21\xd7\xaf\x53\x14\xd1\x1c\x77\xe5\x8e\x28\x2f\xe8\x59\x93\x86\xdd\x53\xa6\xe8\x66\x26\xa6\xed\x3f\x38\x73\xd5\x0c\xd4\x43\xa8\x21\xb4\x71\xb3\xdf\x05\xb2\x39\x16\x09\xf6\xef\x97\x15\x98\x7a\xdf\x7c\xb6\x35\x6b\x7c\x27\xbb\x56\x77\x2f\x73\x12\x36\x71\x07\x6f\xde\x6b\x74\x5d\x3d\xa6\x10\xee\xfb\xc4\x17\x78\xc7\xd0\x6d\x6d\xb2\x58\xb8\x9c\x27\x49\xdc\x60\x3b\x6e\xee\xbc\xc8\x36\x8d\x26\xd4\x23\xaf\xad\xee\xc5\xc5\xc9\xc2\xc7\x19\x55\x41\xd9\x46\x1d\x56\x04\xa7\x53\x3c\x15\xf0\xdd\xf4\x81\x7c\xa8\x87\xc8\xd9\x48\xbb\x1d\x81\xce\xb4\xfc\xe4\x5a\xef\xb8\xe2\x47\x92\x2d\x17\x94\x5d\xe9\x3d\x4f\xbd\x68\xd2\xe2\x6c\x92\x02\xe9\x70\x3a\xe2\x74\x06\x57\xf1\x2a\x50\xcd\xed\x7a\x53\x3c\x39\xde\x25\xf1\xff\x8b\x23\x41\x9b\xfd\x77\xe6\xe5\xb1\x08\x93\xe7\x46\xf0\x49\xd9\x46\x8b\x4b\xdd\x98\x79\x06\xcc\xd8\x0e\xff\x85\x75\x92\x07\xfa\x92\xe6\xbd\x73\x41\x9d\xf0\x49\xed\xd4\xcb\x53\xd8\x72\x76\x5d\x54\x47\x6e\xc3\x59\xd1\x14\xdb\xb8\xd0\x3d\x80\xeb\x0b\x28\x06\x70\xf6\x2f\xe4\x0a\xab\xbf\x8c\xad\x0d\x67\x06\x8c\x6e\xea\xea\x60\x26\xdc\xf0\x71\x8c\xe4\x7b\x74\xe9\x37\x2f\x68\x9d\x04\xa9\xd7\x96\xa0\x90\x47\xb4\xb4\xf0\x3b\xbd\x9c\x37\x03\x36\x7c\xb0\x86\x79\xa4\x0b\x4c\xc4\x69\x94\x71\x70\x67\x1c\x39\x4a\x16\x0e\x4d\xae\x5c\x2c\x80\x92\x05\x12\x8c\x19\x2f\x73\x9b\xf1\x40\x91\x07\xed\x6b\x74\x5b\x81\x1c\xee\xe8\xf1\x11\x9d\x65\xf2\xbc\xc3\xa0\xd7\x51\x87\xd6\x11\x23\xe4\x11\x0b\x18\x49\xa9\x69\xbd\xc8\xfd\xae\xc2\x73\x62\xae\x3d\xb9\xf7\x56\xbc\xaa\xd8\xfe\xec\xf8\xc7\x93\x6b\x01\x17\xec\x0e\x5d\x61\xcc\x76\x9d\x41\x5e\xb3\xba\x0c\x34\xf4\x0d\xff\xa5\xca\x53\x34\x5d\x2a\x91\xc3\x95\x32\x67\xdc\xc4\x7c\xfa\x1d\xec\x04\xab\xd0\x9c\xad\x87\x9e\xd9\x1f\x26\xeb\x67\xee\x42\x21\xb4\xe0\x60\xc9\xe5\x7b\x1e\xfb\x30\xc5\x6c\x19\xd2\x2f\x81\xe1\xf5\x3c\xd7\x4c\x8e\x59\x36\x2e\x45\xd0\x37\x96\x62\xe0\xa5\x24\xfd\x22\xbe\x24\x0d\xff\x04\x30\xfa\x23\x93\xd4\xd5\x56\xd0\xe6\xcb\x5f\x41\x92\xf0\x7a\xc3\xf9\x9d\xa9\xf0\x51\x2f\x23\x2f\xf4\xa5\x28\x7b\xb4\xc7\xf7\x93\x3f\x7b\xa8\x63\x4e\x98\xdd\x47\x3c\xa6\xa7\xa9\xe1\x06\x60\xac\x8f\x2a\x79\x44\x4b\xad\xb1\xc2\x7a\x97\x09\x29\x59\xaa\x5b\x52\x88\x8e\xab\x83\x4d\xd7\x89\x65\x4e\x56\xd5\x29\x6a\x77\x77\x5b\x99\x10\x93\xf6\xdf\x58\x4a\x24\x9c\xff\xaf\x15\x97\x64\xc1\x10\x07\x11\x8f\xfd\x31\xac\x21\x1b\xa9\x30\xf5\x9d\x48\xeb\x33\xaa\x5a\xd5\x90\x34\xc7\x49\x24\x77\x31\x98\x5d\x1a\xb5\x2e\xeb\x16\xe0\x77\x71\x75\x75\x26\xf2\x4a\xcd\x54\x30\xd9\x61\x4e\xab\x20\xfc\x54\xfb\xc8\x70\x63\x78\xc8\xe1\xa9\x58\x7b\x0c\x68\xd2\xa9\x4e\x83\x0b\x7a\x72\x43\x5d\x4e\xc7\x43\x2c\x94\xdf\x53\xcb\x1d\x33\x2c\xcc\x4a\x35\xcc\x1c\x28\x7b\x4f\xb6\x68\x1d\x8b\x4f\xbd\x2b\xbe\x12\xc2\xcd\x84\x94\xbc\xbb\x72\x44\x37\x78\x41\xf8\x44\x2c\x3f\x30\xcc\x31\xb9\x7c\x45\x91\xe3\xa3\xd8\x7a\x87\x34\xdc\x24\x44\x28\x18\x39\xb8\xcb\x70\x23\x12\x1c\x93\x04\x06\x09\x32\x0c\x0c\x53\xe6\x29\xb6\x5a\x59\x94\x07\x50\x60\xf7\x78\xf7\xa4\x06\x96\x52\x6d\x38\x40\xdb\xd3\xb0\x23\x25\x2a\xbe\x15\x56\xee\xdb\x5f\x5e\x82\x28\xb4\x4e\x3c\xdd\x2e\x18\xe3\x9b\xa4\xc3\xe7\x7b\x87\xab\x7f\x20\xee\x9b\x66\x92\xb4\x8a\xcf\x23\x3e\x7c\x72\xe0\x82\xea\x49\x40\x90\xdf\x99\xf2\xdf\x7f\xd4\x46\x04\xb9\x2a\xf9\x89\xd9\xa4\x93\xb0\xd8\x02\x31\xa2\x4c\x5d\xa7\x6b\x25\x96\x25\x68\xc5\xd0\x6a\xc5\xd8\x57\x0f\xca\x81\xa4\xaf\x48\x39\xf0\x19\xde\xa7\x00\xf4\xfd\xfd\xd6\x76\x52\x27\xc4\xbb\x9b\xb2\xf0\xd5\xcf\xf5\x89\x02\x54\x03\x15\xea\xb2\xb0\xe8\x95\x90\x68\x40\x48\xaa\x6f\x58\x28\x45\xb1\xd5\xca\x8c\x4f\xd7\x8d\x4d\xe3\xd5\xe3\x2f\x0f\xa0\xe3\x32\xda\x50\x78\x08\xe8\x35\xb5\x2a\x88\xd5\x49\xd5\x96\xa8\xd2\x83\x0d\xbe\xa8\x46\x71\x47\x56\x95\xfe\x8c\xd8\x59\x9a\x4c\xfd\xb9\xbb\xe5\x33\xe8\x75\x74\x7b\x55\xf0\xc6\xdd\x39\x53\x2e\xb9\x2c\x2e\x40\x95\x75\x68\x90\xfd\x68\x41\xd5\x3a\x3f\x45\x3e\x24\x5c\x64\x9d\x49\x10\xd3\x23\x8c\x6c\xf9\x0b\x2b\x06\xeb\x29\xab\x82\x58\x8d\xef\xae\x11\x8a\xf3\xf1\x00\x9c\x87\x66\x40\xcc\x6b\xc0\x10\xb1\x67\x7c\x29\x8e\x11\x1e\x72\x10\x14\x53\x4e\x55\x69\xc3\x0b\x30\xef\x2f\xd7\xdb\xec\xc0\xdb\x48\x2b\xaf\x78\x0e\x08\xe3\x19\x12\xbc\x4c\x03\xda\xe4\x4e\xaf\x9d\x85\x07\xdc\x1b\x1f\x5c\x2c\x44\x58\x57\x65\x3c\xe8\xf0\x1a\x1a\x71\x12\x34\xa3\x7c\xba\x64\xa3\x0a\xca\x7e\x8e\xb2\x09\xe9\xdf\xe4\x5e\x5a\xb6\x58\xaa\x68\x97\x3b\x1b\xfa\x33\xb9\x4e\xad\x70\x69\xc8\x78\xf3\x22\x6b\x13\x23\x5b\xe0\x5b\x49\xed\x4e\xfb\x55\xfe\xa0\x03\xa8\xa3\x8b\x75\xa2\xf1\x1b\x84\x1a\x61\xff\x1b\x58\x08\xa4\x6c\xbd\xb5\x96\xc1\xfd\x73\x1b\x7d\xed\x25\xf7\x4f\xf9\xfb\x51\x9c\xd7\xfe\x00\xec\x20\x60\x0d\x29\xa9\xc9\xea\xff\x35\xf1\x9a\x2a\xbb\x13\x0d\x92\x52\x4d\xdd\x59\x8b\xff\x34\xd6\x91\x16\x3c\x45\x7e\x7d\x90\x1d\xe2\x96\x58\x14\xff\x38\x1a\x28\x1e\xf4\x2f\xbe\xf7\x92\x3b\x31\xf6\x93\xfc\xf9\x54\x3a\xb9\x97\xb2\xab\xb6\x08\xa7\xf8\x3b\x92\x83\xec\xcd\x8f\x6c\xf5\x0e\x0c\x89\x3d\xef\x68\x20\xdc\xf6\xa0\x9e\x27\xdc\xca\xfd\x3c\xea\xa8\x03\x3a\xb6\xdf\xbf\x03\xae\xc6\xcc\x33\xaa\x2c\x39\x04\x1c\x1c\x84\x9e\x92\x54\x83\x0f\x53\xee\xfe\xe7\xd3\xe4\x01\x09\xf8\x49\xef\xce\x8e\x94\xee\x17\x1a\x58\x31\x19\xb1\x63\xf1\xff\x96\x96\xed\xa1\x53\xe3\x36\x54\xe3\xa6\x33\xd2\xc4\xe7\xa6\x80\xfa\x9d\xd5\x7f\x2f\x45\xe2\x77\x46\x8e\xab\xf6\x42\x90\xa4\xbf\x90\xb7\x30\x98\x7d\xbb\xce\x1c\xe1\x55\x89\x56\xae\x86\xe1\xbc\x79\x51\x72\x5c\x23\xf4\x64\x00\x8a\xad\x1b\xe8\xa5\x1f\x64\xa7\xef\x05\x74\x69\xb4\xa9\x06\x3e\xaf\x39\x5b\x17\x6b\x19\xdb\xd5\x6c\xd3\x4e\x9b\xb1\x78\xe6\xc6\x06\x4e\x0d\xe4\xea\x34\x94\xb7\x69\x65\xb2\x9a\xf0\xc6\x3f\x49\xe2\x9e\x33\x65\x80\x6a\x06\xae\xab\xee\x8a\xf0\xa4\xaa\x9d\xef\x7d\x33\xc5\x90\x56\x11\xa1\x51\x38\x12\x05\x70\xbd\x49\xe6\xc6\x11\x0e\x02\xed\x02\xf1\xb3\xae\x82\x58\xe9\x3b\x02\x4e\x3d\xfd\xaf\x18\xe3\x9b\xfc\x3b\x2f\x27\x52\x76\x92\x38\x47\x2d\xfe\xc2\xcc\x05\x95\x6f\x94\x7c\xf1\x29\x5d\x01\xde\x3b\x19\xdc\x22\xd3\x91\xac\xa0\xc5\xb4\xa8\x65\x7b\x7c\xaf\x79\x6c\xfe\xb4\xac\xbc\xfe\x23\xf7\xaf\xc7\xe6\xc5\xcd\x1f\x7b\x3f\x32\x67\x4e\xdf\x4b\x9a\xa3\x75\x7a\xad\xd6\xd6\x07\xad\xa8\xe7\xac\x70\x65\xdf\x93\xf5\x5e\xbd\xba\xf5\x3b\xdf\xb9\x9d\xb8\x21\xf8\x37\x54\x77\xf9\xfc\x51\xe8\xd3\x5f\x3b\xa8\x90\x63\xa2\x1a\x8a\x5b\xdb\x59\x2b\x4d\x28\x8d\x37\x7e\x3d\xfb\x55\x73\x29\x1f\x1f\xc3\xcd\xa4\x6f\x5e\x69\x89\xbf\xe5\x3e\x29\xf0\x7e\x92\x97\x2b\x37\x2a\xfd\xc1\x24\xc2\xa0\x26\x85\x81\x4b\x68\x82\xfd\x8a\x99\x5e\x52\xd1\x1c\x3e\xd3\x28\xe3\x5c\xce\xad\x56\x42\x12\x22\x07\xe2\x36\xed\x41\x31\x94\x1a\x82\x00\x0f\x5c\xfd\x73\xe1\xcc\x94\xb8\x20\xde\x7c\x74\xa0\x81\x65\x9a\x91\xa5\xe0\xf7\x6b\xc2\xaf\x97\xdc\x04\x9e\xde\xf1\x93\xfa\x19\xdf\x85\x43\x54\x97\x4d\xeb\x5f\x51\x5d\xe7\x72\x3e\xbf\x0f\xe5\xe3\x2f\xac\xcb\xca\x3e\x6f\x67\xe9\xde\x16\x65\x0e\x6c\xb5\x35\xaf\x74\xd2\x1e\x29\xc9\xee\xbc\xa1\xc2\xb1\xfb\xf3\xe6\xee\xe4\xcd\x88\x13\x18\x05\xc4\x63\x87\xea\xbf\xfd\xdf\x46\xab\x74\x40\x22\x56\x24\xff\xb4\xce\xf8\x58\xde\x0d\xe5\x92\xe0\xfb\xfc\x3b\x12\x24\xb8\x94\x02\xba\x5e\x2f\x01\x38\x82\xe1\xbc\xc9\x4f\x72\x9c\xad\xfd\x1b\xb2\xa4\xb4\x15\xbd\xb4\xaa\x9a\x84\xca\xd2\x6f\x6a\x7f\x13\x4d\x9b\xb4\x65\x37\xb5\xab\x09\x2d\x88\x75\x7b\xaa\xe2\x5b\xea\x0b\xf6\xd6\x28\x9b\x81\x59\x8b\x91\x2a\x14\x1a\x9b\xa5\x26\x71\x99\xe5\x25\x2c\x72\xa8\x75\xd8\x2a\x84\xdc\xf1\x7b\xc0\xf7\x13\xba\xc0\x0b\x77\x1a\xa1\xd3\xa1\xf4\x49\x91\x8a\xb3\x26\xce\x99\x0a\x5c\xb4\xf2\xee\x03\x76\xcd\x90\x48\xe5\xce\x1d\xa8\xf7\xef\xc0\xea\x6e\x13\x63\x8f\x86\xca\xce\xb8\xae\xec\x74\xf1\x4d\xef\x86\x9a\x89\x64\x21\xd3\x5f\xfc\x0b\xf1\x91\xdc\x9c\xec\x3f\x19\x22\x14\x13\x19\xa0\x32\x98\x07\x52\xd5\x6c\xf3\x5d\x80\x0a\xdf\x57\x71\xb0\x44\x53\x42\x51\x2f\x6d\x2f\xa8\x5e\x4d\xce\x0f\xc2\xf7\x20\x6e\xad\x2b\xfb\x8f\xd0\x27\xf5\xf2\xca\x62\x26\xad\xa4\x97\xdc\x65\xbf\xe2\x33\x7e\x66\x4f\x98\x4d\xf0\x7a\x2c\x72\x53\x0e\x0c\x74\x2c\x18\x51\xa1\xde\x39\xd6\xfb\x02\x16\xe9\x5b\xe9\x79\xc7\xcd\xe8\xab\x80\xaa\xcf\xb4\xb5\x58\xbf\xec\x53\xf1\x0c\x24\xa5\xa6\x20\xa0\x56\xaa\x9b\xe3\xa0\xeb\xc2\x09\x8c\x5b\x50\x6d\x8f\x4c\x09\x54\x61\xc5\xb3\x32\x61\xa6\x77\xf0\x5f\x58\xd7\xfc\x9b\x8c\x46\xec\x74\x9d\xe3\xb9\x1b\x9e\xe9\x17\xaf\x7f\x7e\x44\x4d\x3e\x2a\xfa\xd7\xc5\x3b\x4a\x1c\xc3\x34\x24\x5c\xfb\x90\xa1\x31\x64\xe7\x80\x99\x74\x5c\xff\x21\x8f\xe1\x6b\x71\x97\x4f\xf8\xe4\x4b\x9c\x41\xef\x32\xcf\xbd\x49\x26\x45\x89\x93\x72\x30\xf4\x69\x97\x03\xc1\x41\x17\x80\x2b\x0e\x14\xd5\x98\x7c\xce\x6a\xe1\xad\x14\x21\xd7\x59\xe0\x3f\x7c\xae\x6f\x60\x38\x55\x5a\x25\xa4\x56\xa0\x93\xcb\x9b\x5e\xaf\xad\x13\xec\xab\x5a\x15\x4e\xf5\xd7\x09\xbd\x9c\x1e\x2f\xda\xb0\x46\xf0\xf8\xc3\x32\x63\x31\xe4\xa0\xba\x71\xf6\x35\xc6\x25\xc6\x08\x88\x57\x4f\x68\xe9\x2e\x58\x5f\x7e\xbe\xaf\xc6\x3a\x31\xb6\x7e\x52\xf6\xce\x92\x11\x21\x67\x6a\x4e\xcc\xd1\xfb\x2f\xc9\xa9\x90\xe4\x87\xe4\x59\x91\x71\x2a\x17\x6a\x7c\xa6\x51\x3c\x50\xb2\xbf\xbf\xee\x6c\x20\xc6\x12\xfc\xe2\x22\xdb\xa6\x46\xb0\x49\x47\x12\xc7\x50\xf1\x25\x36\x5e\x31\xd5\xe4\x7a\xd8\x21\x70\xe2\x4c\xb8\x16\x30\x06\x02\x36\xdf\x53\x8c\xeb\xd3\xcb\x25\x32\xac\xc0\x4a\x57\x3e\xa8\xb5\x99\x8d\x2f\x3a\xab\x04\xb7\x3a\xde\xe6\x1d\x79\xfb\xbe\x5e\x2b\x62\xe8\xcd\xc4\x2f\x73\xf9\xbc\xda\x1f\xd2\xb7\xd4\x86\x06\x45\xd3\xa6\xef\xb0\x5b\x0a\x4e\x4b\xb0\x5c\x88\x1a\xc6\xa6\xb4\xb7\xe7\x36\x2c\xa1\x83\x4a\xf0\x0d\xa2\x92\x14\x25\x99\x5a\xb0\xde\xcb\x42\x5f\x14\x99\x6f\x7f\xc0\x8f\x13\x9f\x14\x1c\x63\xfc\xc9\x70\xde\x61\xa3\x78\x8d\x00\xf1\xbe\x8b\x16\x5a\x5c\xf2\xbe\xc2\xee\x03\x3d\x29\x26\xff\x99\x0c\xab\xe6\x8f\x13\x26\xc6\xfe\xc7\xa1\x8b\x8b\xa3\x03\xf9\x0b\xf6\x23\x3f\x58\x02\x5b\x9f\x33\x7a\xab\x56\x7f\x0d\x76\x82\x85\x77\xb0\xf0\x71\xe9\x80\x36\x5b\x7f\xa3\x6d\x68\x91\xb8\x2f\x85\xc9\x70\x71\x1d\xf8\xef\x1e\xe8\x3b\x9d\x5c\x1b\x61\x8f\xfd\xfd\x0f\x42\xc7\x6f\xf5\xde\xe6\x4a\x95\x3d\x69\xe1\x77\x2f\xf7\x9c\x38\x31\xd3\x2f\x30\x60\x9b\x08\x98\xb8\x7b\x6b\xb4\xc7\xaf\xf7\xed\x41\xc4\x1d\x20\x1e\xe9\x2d\xb0\x6b\x33\x63\x31\x84\xbd\xf9\xa0\x95\x66\x15\xe7\x34\xd9\xc5\x97\xed\x88\x22\xf3\x45\x9d\x08\xe2\xf3\xc4\x10\xbd\x6f\x88\xdb\xe9\x7f\xcb\x36\x5a\xd6\x48\x77\x3d\xd2\xb0\xf4\xaf\x4d\xfa\xec\xfb\x78\x55\xe9\x2b\xe2\x7b\x85\x35\x46\x47\xd7\xd7\x7e\x4e\x7b\x2f\xcc\xfd\xf8\xf6\x3e\xc2\x3e\x38\xe5\x41\x9c\xc5\xad\x67\xb7\x2a\x6e\x9f\xb2\x2a\x76\xb4\x93\x0a\xf9\x97\xe8\x7c\x7d\x67\x10\xd0\xc9\xd5\x06\x4b\x0d\xae\x10\xd2\xa3\x50\x30\x2f\xc4\x12\xfc\xf7\xcd\xc6\x67\xb5\xb6\x8c\x14\x85\x01\xdb\x85\xb9\x0e\x6a\xae\x1d\x99\xa4\xd0\xa5\xe8\xb9\x64\xc5\x77\xb5\x3f\xfc\x3d\x4c\x87\xb6\x69\x0d\xa0\xf1\xfd\x1c\xd3\x71\x25\xfb\x35\x51\x1d\xb6\xa1\x9e\xd2\xae\x3e\xfe\xe0\x9b\x4d\xaf\x21\xb4\x4b\xa9\xaa\x07\x9c\x3c\xfd\x09\x1b\x89\x10\xa1\xe3\x63\x19\x23\x12\xff\x1c\x13\x51\x4a\xa3\x41\x96\xe3\x89\xbd\x52\x67\x35\xe9\xbe\x77\x7a\x5d\xca\x13\x34\xb1\x17\x5a\x11\x3f\xf2\x51\x63\x71\x71\x31\x49\x21\x4f\x81\x32\x3c\x5c\x76\xf5\x2f\x55\x87\x4d\x13\xaf\xdb\x01\xe1\x86\xd4\xae\xef\xb5\xb1\x3e\x14\xda\x01\xb4\xf9\xe0\x27\x27\xf3\x9f\x04\xda\x31\x50\x58\x23\x9e\x50\x94\x58\xc7\x23\x02\x5e\x59\x91\x27\x33\x2e\x06\x19\xae\x5c\x61\x43\xd1\x0c\x5c\x57\xdd\x02\xfe\x40\x7b\xf9\xf8\x0b\xfd\xe2\xf0\x1d\x0f\x4f\xf3\xc0\x86\x02\xc9\xd2\x80\x16\x61\x77\xf7\xea\xa3\x05\x3d\x8d\x82\x31\xd6\x23\xbd\x91\x41\xa1\xd5\x5b\x4f\x2b\x3e\x8e\x77\xb1\x1d\x37\x2f\x2f\x15\xca\x70\x48\xf5\x7b\x02\x8e\x32\xb4\xd4\xf3\x99\x48\x99\x1d\x87\x13\x20\xfb\x39\x8a\xcc\x17\xac\x0e\x41\x90\x1e\xcd\xa5\xed\xbe\xab\xd7\x3a\xca\xc3\x49\x2f\x2b\xbf\xb5\x44\x7c\xec\xfc\x4b\xfe\xdf\x42\x05\xcc\x17\x3c\x92\x61\xf5\x80\xd3\x3f\x28\x68\xed\x27\xc6\x62\x62\x69\x64\x20\xbf\x2b\x0d\x73\x53\x3f\xe7\x56\xc4\xb2\xd4\x91\x8d\x56\x7e\x06\x52\xb0\x67\x39\xa5\x79\x79\xb4\x19\xc1\x2a\x4b\x52\x91\xdd\xb1\x67\x02\x61\x25\xf5\x84\x36\x9b\x9f\x15\xe5\x59\x16\x0d\x5c\x03\xf6\x86\x90\x64\x37\x5c\xbf\x66\x58\xb9\x4a\x7b\xb0\xb4\xa6\x9d\x0d\x2a\xb1\x2c\x1b\xe6\xf0\x66\xd6\xfe\x98\x1b\x48\xfb\x2c\xe1\x60\x91\x25\x1d\xaf\x58\xdd\x2e\x17\xaf\xfe\x13\x98\x45\xcd\xec\x1b\xb2\x71\x2e\xbd\xaf\x5b\xf2\x85\x88\xab\x75\xad\xa6\x82\xae\xa8\x90\x37\xae\x70\xde\x12\xff\x99\x41\x88\x2e\x48\x23\xe0\xba\x5e\xaa\x6b\xd4\x68\x01\xb1\x91\x59\xfe\xea\x32\x76\x24\xf5\xa6\xee\x10\xcc\xd2\x16\xff\xf2\xfb\x09\xe2\xa1\x1c\x10\x4c\x19\xac\xf3\x31\xef\xb7\xc1\xbc\x67\xf5\xad\x9d\x1f\x06\xbd\x73\xa2\xd5\xde\x3f\x32\xac\x45\xd5\x37\x83\x4d\xc9\xc2\xe8\xf1\x4e\x59\x51\x68\xdb\x2b\x43\x91\x93\x3e\xf8\x9d\x6e\xe5\xca\xe0\x22\x16\xd7\xaf\xa6\x10\xde\xa7\x38\x9a\x00\x33\x32\x47\x87\x5b\x46\xf7\x92\xcc\x83\x18\x6a\xda\xf2\x7c\x5b\x38\xf4\x73\x52\x27\xca\x33\x72\x6b\xbf\x37\xea\x6a\x04\x86\x7e\x2a\xb9\x57\xa1\x97\x96\x29\x64\x91\xea\x82\x06\xc5\xb7\x75\x66\xc9\xa0\xcf\x9f\x57\x5d\x1a\x6b\x94\x85\x02\x95\x20\x38\xf3\x3c\x33\x30\x76\x8d\x4b\x15\xf8\xf6\xc6\x05\xd7\x23\xa7\x43\x6b\x84\xa9\x20\x43\x06\x3d\x33\xb4\x39\xdf\xfe\x33\x09\x2b\xa8\x16\x44\xf0\x9b\x36\x91\xad\x11\xe4\x99\x5e\xdd\xec\x1c\xc9\xb0\xe6\x63\x09\x96\xb1\xfc\x35\xfd\xa1\xf9\x65\xb3\xfd\xf8\x62\x8c\x50\xa3\xb0\xc6\xc2\x6f\x7c\x8c\x66\x06\x19\xf4\xe5\xa9\xa6\xeb\xc9\x15\x39\x49\x25\xfd\xbc\x17\x85\x57\x41\x11\x9c\x64\xbc\x03\x90\x85\x81\x7b\xbc\x10\x0a\x53\x48\x47\x1c\xa4\xb7\x97\x4c\x45\x83\x2b\xe4\x3b\x8a\x47\x3f\xd0\xf7\x9e\x8b\xce\x56\x5c\xda\x67\xdf\x92\xa2\x82\xdc\x5a\xc1\xe1\x8e\x57\xe9\xd9\x3c\x11\xec\x19\x20\xda\xaf\xc1\x0c\x67\x5d\xc1\x86\xef\x88\x44\x95\xe9\xb6\x3e\x7a\x26\x50\xae\xe6\x2d\x40\xd8\xc8\xf2\x3a\xbe\x18\xe9\xa8\x5a\xe4\x4b\xe2\xbc\x86\xa2\x70\x84\x9f\x08\xe2\x99\x9f\x42\x48\xc7\x9d\x97\x47\xd5\xa9\xa6\x88\x87\x76\x99\xa4\xaa\xfe\xf1\x85\xfa\x31\x04\xfb\x2a\x24\x3b\x36\xc7\x6e\xe2\xa9\xb7\xb4\x2b\x2c\x54\xd1\x55\x79\x5e\x67\x56\xe1\x41\x9c\x05\x7b\x6f\x57\xd4\xc6\x12\xbd\x19\x59\x49\x0d\xb1\xb2\xbf\xdb\xfb\x16\x5e\xa5\x87\x6e\x3c\x6f\x9c\x4e\x39\x81\xa3\x1b\xb1\xa9\x3b\xbd\xbe\x51\x39\x8c\xa3\xfd\xc8\xa4\xbe\x4e\x1b\x40\x45\x8f\x5a\x87\xa8\x0b\x83\x98\xfc\x9a\xcb\xc7\x75\xf4\x8b\xe3\xf6\x50\x5d\x81\xc1\x83\x6d\xb2\x96\x6f\xdd\x0d\xb1\x5b\x15\x2c\xba\x43\x55\x19\x42\xae\x6c\xfa\x09\xfc\x32\xea\x46\xd3\x0b\x7b\x6c\xd4\x53\xc1\x9c\xfa\x39\x74\xf2\x31\xc2\xf0\xe3\xca\x9e\x6e\x0a\xb8\x15\x29\xe6\xc7\x4c\x7c\x82\x0a\xcb\x2a\x76\xf9\xfb\x7d\x60\xbc\x60\xf1\x75\x7e\x5b\x47\x2e\xfe\x30\xc0\x9c\x28\x50\x52\x8b\xed\x71\x4a\x34\xd5\x5d\x1b\xb4\x1f\x99\x8b\xc8\x78\x80\x55\x7a\x2f\x55\xc8\x14\xd0\xba\xc2\xe0\x26\x31\xb9\xb0\x7b\x0f\xc2\x82\x8f\x22\xe7\xd2\x3b\xa0\xa8\x25\x18\x64\x75\xe3\xd8\x8b\x82\x45\x60\xdb\x3b\xde\xcb\x30\x9d\xb0\x53\xa6\x80\x1d\xe9\x15\xd2\x65\xd1\x10\xdc\x2a\x84\xab\x12\x52\xc9\x3d\x66\x3e\xa2\x92\x29\xf4\x5a\xff\x96\x09\x66\xb2\x20\xe8\x48\x5d\x45\x21\xbd\x56\x9b\xfa\x63\xac\x4b\x7a\x96\xdc\x53\x9d\x9a\x08\xff\xe2\xcb\x3c\x9c\x61\x56\x94\xe7\xf7\xe7\x2c\x67\xa2\x24\x86\x5d\x1b\x62\x14\xdf\xd7\xba\x71\xaa\x1d\x52\x36\x37\x13\x52\xf9\xd7\x87\x03\x9c\x8c\x20\x61\xc2\x0d\x7f\x32\xec\xf9\x83\xd3\xdd\x73\x82\x93\x31\x5e\xaa\x4f\x99\xe4\xd7\x3b\xb0\x20\xe9\x6a\x31\x97\xa4\xb0\x43\x57\xfe\xaa\x33\xb5\x7c\x44\x80\xf9\x55\x16\xab\x6f\xb5\xf1\xfe\x5f\x58\x8c\x0e\xd2\xfd\xf0\xaa\xa2\x88\x9c\x1c\x51\xa1\xde\xed\x7d\xe7\x22\xac\x76\x14\x76\xf2\xe8\x37\x56\xff\xa1\x51\x79\x18\x34\xec\x94\xe9\x64\xfb\xce\xe6\xa4\x03\xd7\x3d\x45\x68\x19\xa4\xb2\x5b\x4d\x85\xfd\xfe\xc8\xdb\x9b\xad\xda\x6b\xea\x2a\x76\xca\x79\xbf\xc6\xc6\x32\x33\x99\x17\x7b\x7e\x68\x6f\x2a\x6e\x3a\x7b\xc3\x46\x72\x67\x96\xe4\x4d\xf1\x1a\x62\x98\x1a\xb5\xea\x03\x9c\x2d\x49\x85\x0e\x99\x4d\x0c\x7e\x49\x4f\x05\xe7\x94\x47\x1e\xcc\x40\xd4\x2e\xcb\x6a\xcf\xe7\x58\x66\x18\x60\x39\x52\xa5\xb0\xbb\x7a\x93\xe7\x38\x55\x9e\xaa\xb1\x4f\xc2\x4d\x6d\x99\x4d\x85\x0b\x85\x32\xfb\x4a\x3f\xac\x3c\xe3\x55\x45\xd8\xe7\x51\xdd\xcb\x97\x74\xfe\x17\x9a\xed\x17\x74\x22\x27\x7d\x1c\xdc\x6b\x3b\x46\x83\x4e\xc7\x4a\xc8\x12\xdf\x6c\xe1\x58\xfb\xcc\xe8\x4a\x45\x10\x42\x8b\x4b\x8f\xde\x08\x04\x57\x03\x3e\x62\x56\xce\x93\x62\x5a\x02\x82\x2c\x61\x68\x23\x0b\x83\x41\xaf\xb4\x2c\x41\x93\x41\x49\x43\x24\xb7\xa3\x8d\xf6\xd5\x99\x42\x45\x0a\x82\x14\x32\xf4\x85\x6e\xb5\x77\x99\x1a\xa4\x4e\x89\x28\x06\xd8\xa5\x07\xf7\x1f\x71\x9a\x87\x31\x11\x85\x27\x3b\xaf\x06\x3e\x3d\xe7\xfd\xe9\x60\x9f\x4a\x4a\x11\x52\xbb\x54\x1a\x31\x76\x9e\xdd\x80\x6d\xfb\x02\xfb\x50\xb7\xcc\xfb\x1d\x9d\x05\x2d\x1c\x8b\x85\x32\xfb\x75\x15\xb5\xfa\x79\xf7\x3d\xf3\x08\xaa\xb0\x91\x4b\x2c\xef\xb9\x82\xf5\x55\x7e\x39\x16\x74\xe2\xbd\x25\x9b\xf3\xf7\x46\x0b\xc5\x7a\x91\xe9\xf7\x22\x9b\x1c\x27\xd9\x3a\xb8\x80\x46\x91\x06\xe8\x00\x51\x6b\xc4\xe4\x20\xfc\x91\x7a\xe3\xc5\x65\xfb\x40\x49\x98\xb0\xc7\xdb\x9a\x35\x67\x2f\x5b\x26\x10\xed\xd7\x94\x8e\xce\xa8\x3d\xf5\x8b\x8d\x42\x51\x0b\xe5\xb8\x8e\x71\x9c\x00\x21\xd3\xc9\xe1\x3c\x7c\x49\x1c\xbd\xe3\x00\x21\xb9\x0c\x59\x2d\xac\x7c\xf8\xa9\x82\x42\xeb\x19\xe3\x87\xc2\xd6\x7a\xd7\x47\xfb\x0d\x7f\xc5\x9f\xa8\x8d\x70\xcb\xec\x1e\x73\x06\x3e\xef\x1d\x29\x31\x08\x9e\xf9\x35\x1d\xab\x20\xdd\xdc\xc9\x26\x14\x9e\xe2\xbc\xef\xe5\x56\x8e\x95\x14\xc4\xc7\xfa\x11\x0d\xbc\x89\x7d\x8f\x2f\x7b\x36\x44\x13\x6f\x34\x57\x9b\x8c\xeb\xfe\x70\xb2\xa2\xf4\x12\xb7\x07\x21\x9e\x72\xe9\x50\x8e\x7f\xd9\x40\x71\x47\x36\x94\x8e\x14\xfe\x9e\x1a\xab\x65\x9a\x92\xf6\x50\xcb\x35\x17\x9c\x8e\x8f\x24\x74\x18\xa7\x7b\xac\xa6\x0c\x6c\xd7\x2d\xc1\xac\xc3\xbe\x71\x2b\xd2\xed\xf5\x2e\xa7\x5c\x5d\x79\x92\x34\x16\x1c\xb8\x98\x90\x15\xeb\x40\xaf\x43\xba\x50\x72\xd7\x97\xac\x2f\x01\x1e\xd2\x44\x71\xd3\xf2\x13\x85\xec\xbe\xef\x3e\x62\x7d\xfd\xfc\x0b\xf7\xb6\xf7\xf7\xc3\x86\xc2\x42\x7c\x06\xdb\x3a\x0b\x5a\x64\xec\x46\x3c\xc7\x85\x0f\xfa\xc0\x68\x87\x73\x0a\x51\xa2\x7d\x0d\xc1\x20\x06\x76\xfe\x25\x69\x16\x1e\x5e\x11\x6b\xe2\xfb\x26\x5a\xc3\xc9\x35\xce\xc9\xee\x7a\xec\x14\x99\x13\x15\xfc\xd8\xb3\xf7\x6d\xb7\x99\x19\xcb\xcf\xbd\xed\x8d\x77\x29\xdb\x5b\x1d\x77\x91\x8f\x8e\x1a\xb7\xa1\xde\x0b\x79\x32\xca\x21\x57\xcf\x57\x59\x5c\x33\xbd\x7b\xba\x7f\x2f\xfb\x13\xc2\xe7\x48\xc4\x52\x18\x3d\x8e\x05\x40\x1a\x01\x05\xc9\xb1\x10\x44\xaf\xf1\xee\xd4\xb7\x1f\xc3\xef\x64\xfe\x20\x32\x9b\x4a\x7d\xb8\xb9\xf1\x3c\x7e\x90\x56\xea\x8e\xce\xae\x82\xcf\x1c\xca\xd9\x32\xfb\xb5\x65\xb5\x37\x12\x9a\x9a\x24\x6f\x30\x12\x89\x21\x68\x74\x69\x5d\x7a\x1e\x7a\x86\x32\xbc\x67\x03\xe0\x92\x19\x8d\x62\x28\x86\x9e\x7c\xa4\x39\xf7\xbf\xde\xcb\x14\x5d\xa4\xf9\xb5\x90\xad\x48\xe3\x0e\x83\x5a\xc3\x7a\x49\x87\xaf\x4c\x45\xa1\x8d\xf0\x47\x77\xa9\xf8\xfb\x02\xa6\xf7\xa5\xec\xe4\x6f\xad\xed\x87\xcd\x77\x5f\x4c\xe7\xf4\x2e\xfb\x94\xef\x7e\x83\xde\xc1\xe1\x94\x79\x88\x63\xaa\xc3\x5d\x62\xfb\xeb\x7f\x92\x8c\x00\xda\x1f\x2a\x28\x18\xb0\x59\xa7\xa8\x6d\x17\xe1\xa4\x44\x9c\x11\xd2\xbd\xa4\x5d\x2b\xa2\xbd\xc2\x6b\xd2\x27\xb7\xdb\x4c\x2e\xe4\x0b\xdc\xda\x59\x8a\xf5\xf8\x43\x7c\x34\xb4\x54\xcf\x8b\x79\x70\xef\xf0\xf3\xbb\x0f\xf7\x48\x82\x96\x24\x95\x9a\x48\xe4\x26\xaf\x32\x00\x65\x5b\x37\xfe\x4f\x83\x7b\xf3\x81\x3a\x34\x53\x00\x9a\xc5\x09\x2d\x07\x6f\x02\x45\x0f\x5e\x80\x6f\x8e\x61\x4e\xfc\x45\xc8\x4f\x6d\xe7\x33\xdc\xe2\x95\x50\x89\x3c\x8e\xa1\x8b\xd6\x91\xb8\x80\x2d\xac\xf7\xd8\xb4\xb7\x6a\xdb\x01\x9d\xcc\x15\xbd\x1f\x42\x85\x5a\x15\x24\x07\xa6\x48\xba\xb8\x06\xdf\x2d\x6b\xee\x97\x16\xaf\xe5\x23\x55\x67\x08\x45\x3a\xd0\x9c\x7a\x24\xf0\xac\x30\xc7\x61\x66\xa4\xfe\xf7\xc5\xff\x77\xb5\x87\xe7\x62\x86\xf5\xad\xb3\xb8\x2f\xa0\x3d\x1d\xe4\xf2\xe2\xf2\xe8\x1a\x96\xf7\x1c\xf4\x10\x12\xd9\x20\x4f\x5b\xa8\x26\x7c\xcd\x78\x35\xba\x9e\xa1\xd7\xd1\x1b\x9e\x42\xb6\xa2\xf4\x8c\xd6\xa0\x40\xf0\xe9\xf0\xc6\x8b\x4b\xe9\x61\xf2\x53\xdb\x5e\xfe\x1c\xa7\xfb\x4c\x6b\xc0\x97\xf2\xf1\x2e\xc3\x2c\x11\x18\xe9\x69\x59\xc4\x2b\x67\x7b\xe4\x4f\x3f\x52\x91\xd4\x3d\x14\x1a\x00\x50\x64\xbe\x8e\x0f\x69\xce\x3c\x44\x4e\xaf\x01\x84\x8b\xd1\xf3\xb9\x6a\xc3\x34\x44\xa6\x64\x29\xa7\xf3\xeb\xb5\x3e\x65\x92\x71\x5f\x86\x75\xa0\xb4\x07\xac\x4d\xc1\xf4\xea\xe8\xbf\x8c\x8b\xb6\x9a\xff\xc8\x76\xa9\xaf\x24\x7a\xb0\x58\x17\x8e\x9a\x3f\xa9\x0c\xf8\xae\x27\x87\xb2\xf4\x79\x6b\x9b\x13\xb1\x52\x2b\x08\x8e\xa9\x27\x95\x79\x77\xa1\x65\xff\x92\xc1\xa7\x9f\x26\x9f\x39\x63\xf0\x7e\x78\x6b\x4c\x2c\x63\x52\x3a\x37\xf6\x8f\xa6\xb5\xa4\x23\xa3\x45\xe7\x03\x87\xf0\x9d\x45\xd3\xb2\xd6\x67\x54\x8b\xd1\xbe\xab\xd8\xf5\x21\xf5\x20\x3c\x23\xae\x1d\xde\x44\x16\xf5\x30\xe6\xd3\x23\xf1\x55\xad\x6b\x00\x61\x6e\x6f\xb6\xea\x9d\x65\x3a\xe2\xad\x4c\xd9\x32\x7d\x2f\x9a\x39\xc1\xd7\x53\x76\xbf\x66\x31\xaf\x6a\x31\xe2\xcd\x03\xce\xbf\x2e\x06\xaf\x8b\xcb\xc7\x53\x19\x88\x4e\x94\x51\xc6\x31\x68\x53\x7e\x18\xb8\x20\x65\xd4\x57\xef\x00\x6d\xa8\xec\xca\xb5\x1b\xa9\xf1\x6a\x03\xb2\x8d\x03\xc5\x5f\x76\xad\x2a\x75\x18\x91\x46\x1e\x1a\x91\x16\x2e\x6d\xd4\xc3\xe5\xf9\x1e\xff\x31\x4e\x20\x84\x1b\x89\x7b\x4e\x76\x34\x18\x89\xd6\x56\xec\x8d\x4a\xcb\xef\xfd\xd7\xfe\x9e\xb8\xf0\x5c\x43\x9e\xdb\xf4\xfe\xc1\x38\x87\xc6\x82\xdd\xb0\x95\xac\xb2\xf5\xa7\x08\x2b\xd3\xa7\x1c\x8f\x7f\xe3\xe3\x9b\x2f\xbd\x74\xcf\x19\x21\x8a\x28\x8a\x15\x00\x5c\x83\x40\xa7\x34\x8c\x1e\xc1\xde\xfd\xb2\xec\x3e\x93\x38\xfd\xb5\x95\x8b\xd7\x2c\xe9\x5b\x56\xa6\xf1\x7b\x3c\xb9\xf5\x93\xe0\xf1\x07\xb3\x98\x33\x9f\xbf\xd8\xd6\xf8\x07\xba\xdf\x2e\xd2\xc7\x84\x94\xa8\x86\xd5\x84\x8e\xa9\xac\x5d\x01\x5c\x28\x22\x2f\xfd\xda\x2d\x39\xad\x02\xb8\xd5\x85\xe3\x38\x4f\x51\xc2\x1d\x06\xb5\xc3\x9c\x64\xc5\x70\x27\x81\xb3\x91\xb9\xf7\x51\x42\xae\x69\xb7\x14\x8b\xce\x7a\x97\xde\x14\xb6\x8e\xdd\x24\x9d\xf9\x0d\x7e\xd9\x60\x3b\xfa\xe3\x4a\x08\x1f\x82\x4b\xec\x8b\xe7\x12\x20\xaa\xf4\x54\xf0\x54\x54\x3f\x81\x67\x91\x58\x71\x34\xbf\x26\xcb\x51\x4a\xba\xd0\x8b\xac\x37\x0c\x9a\xdd\x50\xa6\xf2\x05\xbc\x7f\xd4\x74\xe4\xb6\xec\x2f\x58\x55\x46\x75\x67\xb5\x4c\x7b\xf5\x0e\x45\x2c\x6f\xe3\x6a\x58\xd0\xeb\x9c\xf7\x76\xa8\x45\x36\x8e\x2f\x8f\x34\x6f\x2c\x1f\xc2\xc8\x90\xb3\x78\xfe\x1c\xb1\x64\x24\x6e\x93\x8e\x0e\xec\x4e\x17\x30\x44\x07\x89\xbf\xe6\xbc\xe4\x3f\xda\xf3\x23\xb3\xa4\x23\xc2\x4f\x84\xd8\xfb\xc2\x58\xa9\x82\x96\xeb\x9e\xd1\xc4\x42\x2d\x9d\x41\x16\x69\x1f\x13\x71\xea\xcf\x22\xbb\x43\x50\x5a\xc5\x62\x4f\x58\x2c\xb0\xe2\x28\x74\xd1\x8d\x62\xe0\x04\x4e\xb1\x8a\x2d\xdc\xae\x00\x21\xbb\x6d\xcd\x36\x1c\xc2\xdf\x10\xdd\x8f\x5d\xd7\x05\x18\xd4\x1a\xfb\x94\x71\xc6\x5f\x07\x16\x7e\x7c\x5b\x18\x15\xdf\x78\x36\x83\x1d\x99\xde\xcf\x30\x93\x1d\x33\x4e\xf9\x4a\x47\x85\xc0\x42\x86\x77\xb1\x03\x53\x74\x5c\x28\x62\x43\x85\x66\x1d\xbc\x1e\x25\x51\x09\x39\x17\xb9\x1e\xd3\x0e\x12\xd5\x01\x30\x50\x5d\xab\x89\x49\x69\x85\xcb\x0b\xf7\x56\x17\xcb\xcf\x0f\x42\x1b\x1c\xa4\xaf\xeb\x25\x65\xc2\x1c\x6a\x88\x6b\xf3\x49\x13\x57\xce\xdf\x53\x8b\x1c\x20\xe4\x45\xd4\xf4\xbd\xcb\x85\x5a\x93\x4d\xb4\x98\xe1\xa1\x91\x1d\xba\x09\xc4\x17\x2b\x13\x92\x6a\xf9\x53\xbf\xd9\x0d\xe5\xe7\x72\x64\x16\xe9\x1e\x5b\x3f\x32\x02\xaf\x8e\xe3\x86\x4e\x47\x33\xba\xb6\x9c\xf7\x6f\xf0\x56\xa9\xb4\x1d\xd0\xb9\xe1\x12\x06\x2e\xc2\x7f\x6c\x52\x00\x0d\xab\x94\xb4\x4c\x1c\x90\xe1\xad\xc3\x70\x70\xcc\x14\x99\x0a\x1f\xd7\xf5\xd3\x7a\xb8\xf3\xa7\x9a\x11\x18\xfa\x16\x3a\x42\xb8\x4e\x89\xa5\x55\xfb\xd2\xe3\x23\xb9\x20\xe6\xac\xcb\xe3\x0f\xa1\x75\x8c\x09\x61\x3c\xb9\xa8\xff\x94\x85\xe8\xa4\x16\x15\x73\x8b\x64\x1b\x71\x13\xac\xa2\xce\xe0\x48\xf1\x10\x82\x40\xf4\x16\x92\x01\x8f\xe7\x33\x26\xea\x94\x0d\x22\x11\xc5\xa5\xf8\x1c\x28\xf1\x54\x2c\xaa\xbd\xad\xf1\x6c\xdd\xf6\xf4\x72\x4f\xfe\x8f\xb7\x7e\xb9\xc6\x53\xe6\xcb\xa8\x1e\x4e\x26\xa2\xf1\xe2\x55\x18\x03\xde\xf9\x03\xe3\x39\xa5\x36\x3b\x0d\xff\x8d\xb0\x42\x9f\xb1\xbc\xbf\x71\x99\x5f\x9e\xa8\x90\x9c\x34\xd9\x47\xd9\x99\x59\xfc\xc3\x95\xbc\x72\xc2\x25\x05\xd0\xcd\x8c\x36\xe8\x36\x66\x84\x47\xb9\x70\x1d\x3b\xbf\xf6\x9b\x99\x04\xfc\x42\x7b\xb7\xd9\x45\x51\x65\x67\x27\xb4\xe0\x64\x83\xb4\x80\x6a\x27\x0c\x6c\xa8\x40\x93\x0f\x00\x75\xa8\xf1\x0e\xe7\xc8\x99\x25\x08\x3e\x73\xe7\x7d\x18\x41\x05\x73\xea\xdf\x79\x89\x9e\xba\x83\xc7\xd7\x8f\x45\x66\xfb\x82\x6b\x4a\xc6\xf1\x1f\x6a\x42\x77\x1a\x07\x86\xdc\x7f\x6b\x87\xa7\xb7\x52\x47\x61\x21\x83\x97\x84\x7d\xa2\xa3\x1b\xc2\xd2\x12\x0d\xc5\xc7\xd8\x53\x86\x90\x3f\x8c\xbb\xde\x9b\x4b\x49\x9e\x0e\xee\x5a\x00\xd0\x02\x5c\xd7\x01\x49\x30\x34\x4f\x5c\x88\xda\x52\x86\x41\xbc\x60\xc4\x73\x6c\x90\x6e\x56\x81\x8b\xd3\xdf\x12\x26\x67\x7c\x99\x60\x73\xdc\x2c\xce\xfa\x6c\xfa\x4a\x73\x80\xa0\xd1\xc8\xd9\x13\x0d\xe5\x40\x2e\x41\x3a\x88\x79\x7e\x88\x9c\x92\x73\x4b\x8b\x74\x4b\x03\xac\x07\xe2\x93\xc2\xf9\x44\xbd\x61\x40\xb6\x1c\xca\xa6\x3d\xbb\x31\xca\xb3\xfb\xf2\xc7\xe8\xc5\xbc\x97\xae\x33\xdf\x53\x96\x4b\x63\x31\x92\x44\x30\xc2\xcc\x0d\x86\x84\xe2\x63\x2a\xbe\x76\xba\x3f\x0c\x01\xe3\x53\xa3\x52\x91\xcb\xd2\x2b\x38\xb3\xb9\xee\x6f\x6e\xcd\x54\x14\xbe\x32\xa6\x2d\xa6\x93\xd4\x03\xee\xad\x7f\xf2\xc6\xbc\xbe\xd9\xbf\xff\x34\x34\xdc\x15\x72\xed\x19\xd5\xe8\x72\x41\x6d\x57\xb0\xcf\x60\x5b\x1f\x14\x17\x8c\x3b\xfe\x76\xd5\xf9\x98\xb8\x76\xcc\x9d\xa8\x1a\x02\xa8\x26\x0a\xe2\xa8\x83\x2e\x7e\x51\x6a\x36\x88\x78\x26\x6d\xd8\xdb\x1a\xe2\x03\xe7\xdf\x74\x27\xbc\x6e\x50\x35\x37\x7d\xea\xf7\xc0\x65\xb1\xbb\xdb\xea\xe2\xc9\x03\x97\x5a\x15\xbb\xf1\x2b\xbb\xcc\x9e\x87\xae\x08\x0f\x87\x3a\xbf\x28\x80\xfb\x9c\xfc\x5a\x91\x66\x2a\xdc\x2c\x0a\xee\xfb\x09\x9e\xc2\x02\x9c\x75\x81\x0e\xcb\x4a\x3a\x02\x42\x79\xa2\xd6\xd5\x55\xc2\x65\xbc\xdf\xea\x99\x95\x21\xf5\x43\xf6\x96\xf4\xf6\x16\x83\x0d\xde\x45\xd9\x4d\x2c\x88\xce\x72\x1e\xee\x70\x1e\x31\xea\x5d\x32\xaa\x45\x81\x29\xd6\x66\xa9\x6a\x04\xc3\x9e\x1e\x57\x03\x48\x1d\xb9\x89\x31\xec\xa6\x40\xe1\xf2\x4b\x92\xf5\x50\x46\x77\xa8\x6d\x1c\x6c\x60\x61\x74\x67\x1f\xb3\x38\x37\x7f\xca\x76\xdc\x9c\xc7\x37\xba\x18\x6b\xb1\x8a\x55\x0a\x6a\xbc\x54\x68\xde\x23\x87\xc6\x38\x48\xc0\xc3\x4e\x20\x21\x9a\x12\x86\x5f\x0b\x45\xa0\x27\x54\xf7\x87\x2d\xe5\x91\x8d\x59\x2d\xbb\x31\xfb\x37\xc5\xbc\x3a\x6c\x58\x82\x9c\xc5\x5d\x3d\x27\x18\x28\xcd\xa8\x24\xfa\x17\x6b\x4b\x03\x77\x2e\x4d\xd6\x63\xd3\x30\xfb\x5f\xa3\x4a\x0a\x11\x9f\x1d\x8c\x42\xcf\x6c\x48\x64\x2a\x86\x10\x3a\x64\x2a\xc7\x10\x41\x51\x14\xd6\x62\x62\xc4\x62\x8f\x78\x73\xb1\xe1\xcf\x7c\x31\x06\x51\xdb\x72\x2a\xbc\x92\xa8\xe7\xb5\xb0\x33\xb4\xc1\x79\x8f\xcc\x28\x77\xc1\xbc\x14\x4b\xb3\xdf\x71\x3f\x3e\x4f\xb0\x26\xe4\x0f\x5d\x02\x64\x94\x7a\xaa\x07\xd4\xaf\x93\xa1\xa9\x48\xf4\x69\xb0\xd5\x9c\xa3\x15\x16\x40\x64\xc2\x69\x80\xb5\x57\x9a\xf9\x12\x4c\xb0\xc6\x8a\xfc\x88\x28\x9e\xc3\x09\x13\xed\x50\x8b\x40\x3f\xb2\xa2\x25\x71\x17\xf1\xfd\x85\xab\x95\x27\x5b\x58\xef\xd1\x29\x6f\x95\xc5\x79\x5c\x4d\x14\x09\x05\xbb\x76\xc6\xfc\x72\x65\x43\xd3\x8a\x14\x53\x00\xa5\x82\xc7\x5e\xcb\xb8\x1a\xf8\xfc\x40\xfe\x2a\xbf\x33\x07\x66\x7d\xaf\x8a\x64\x52\xfe\xf4\xe6\xeb\xb9\xc0\xbf\xc0\x97\x9a\xf6\xce\x60\xf7\x97\x63\xde\xf7\xcc\xd0\xdf\x07\xde\x7b\xbd\xce\x6d\xd0\x46\x1f\xe0\xdc\x2f\x70\xce\xa7\x09\x2d\x7b\xcc\x6c\x39\x8e\x56\xea\x82\x64\xf9\xbd\x64\x3d\x69\x3d\x95\x6f\x90\xaf\xe5\x9e\x4a\x9b\xbb\x62\x8e\x1e\xe1\x2f\x1a\xe5\x09\x22\xda\x29\xf7\xcc\x98\x3b\x02\x23\xab\x8e\x5a\x39\x0b\x04\x11\xea\x92\x38\x06\x42\x2f\x0a\x4d\x6a\xe4\x45\xa1\x57\x8c\x68\x4a\x5d\xd7\xe5\x5e\x9c\x6e\x4f\xad\x24\x28\x08\xff\x81\x5d\xd4\x5e\xe5\x70\xd6\x30\x4d\x15\x0a\x33\x89\xf7\x48\x32\x12\x69\xfc\x3a\xf2\x7c\x39\x1c\x1c\x3e\x7e\xc1\x6d\x99\xac\x87\x69\x7f\x50\x40\x3e\x96\x11\xf2\xf9\x70\xd4\x79\x8f\xd0\xa0\x83\xf8\x22\xd5\xa4\x2f\x04\x59\x15\x67\xa5\xff\x64\xd7\x89\xd9\xbb\x11\x15\x83\xab\x22\x11\x4f\xc3\x1b\x62\x34\x3d\xef\x72\x93\xb5\x96\x8f\x0f\x05\x0d\xd9\x6f\x40\x82\x28\x35\xa7\xdd\x86\x88\xbb\xf3\x49\x47\xe1\x59\xfd\x54\xf5\x24\xf9\x23\xea\xa8\xb1\x14\x0c\x09\x9f\x58\x0a\xeb\x29\x96\xb3\xe8\x15\x49\x16\xd3\x46\xe8\xaf\xd2\x01\x87\xd8\x85\xd1\x2f\x67\xbb\x41\xf8\xe5\x2d\xda\xee\xd9\xf3\x2e\x97\x58\xb5\xb6\xf6\xac\x96\xfd\x88\x16\xb3\xf6\xb3\xa7\x43\x11\x7f\xa7\xed\x88\x2a\xc3\xcb\x0e\x6b\x2c\xcc\xd5\x34\x3b\x6b\x14\x5c\x60\xb4\x23\x6a\xeb\x8d\x20\xeb\xcd\x9b\x10\x7e\xc8\x65\x17\x68\xe9\x03\x2e\x52\xbb\x58\xeb\xa7\xc5\x7a\x9b\xa8\x9f\xbf\x38\xe6\x6f\x31\x71\x8e\x92\x7f\xe2\xf2\x37\x3e\xd9\x0d\x16\x53\x81\xb1\xe2\xff\x74\xb1\x95\x76\x32\x33\x81\xc1\x0d\x34\xf7\x4b\xbb\xfb\x5f\x1a\xde\x67\x71\x40\xba\xf0\xe3\x3d\xa5\x44\x17\x0b\x25\xeb\x1c\x1c\x3e\x46\x7c\x66\x6b\x95\xb5\x5e\x5c\xc7\x8a\xeb\x52\x51\x91\x8a\x86\x61\xf7\xa6\xc5\x17\x08\x31\x0d\xc5\x6a\x25\x5c\xb1\xd3\xea\x3d\x12\xc3\xcb\x85\xbc\x9b\xa1\xbd\x66\x95\x58\xc9\x34\x7d\xb9\x25\xbd\xb9\xce\xee\xe5\x06\xae\x2f\xc6\x16\x66\xa9\x88\xc3\x76\x7a\xf6\x6c\x97\x3d\xd0\x66\xda\xc9\xc6\x83\xab\x71\x10\x57\x90\x54\x9d\x68\xe4\x8e\x3d\xa6\xae\xf1\xc1\x16\x2e\xf5\xd7\x53\x87\xd7\x48\xe6\x07\xc1\x1b\x98\x88\xd3\x3e\x36\xea\x29\x36\xd7\x4c\x8c\xa3\xc3\xe6\xd5\x22\x5e\x85\xc5\xd5\xaa\xa4\xd0\x17\x47\xcd\x1f\x23\xe6\x1a\x6b\xdc\x0e\x22\xb6\x93\x3d\xfb\x63\xec\x8d\x5f\x08\xbf\x61\x68\x5d\xef\x44\x6a\xfc\x4b\x57\x48\x0e\x33\xec\x3d\x15\x97\xbb\xff\xcd\x02\xb4\x39\xbe\x35\x56\x78\x52\x01\x82\xdf\x73\xd5\x31\x45\xfb\x87\x6f\x1b\xbe\x4b\xde\x36\xe4\x8b\x77\x8b\x8f\xdc\xd7\x24\x1f\x58\x58\x4c\x52\x48\x55\xb6\xfb\xf4\xe5\x9f\x06\xb8\x33\x62\x38\x15\xd7\x84\x00\x27\x31\x52\xa5\x3a\xcc\xe9\x94\x9a\x3f\xf9\x1a\x2f\xe5\xf5\x0d\xaa\xf3\x38\xb4\xec\xdb\xf1\xe5\x80\xca\xda\x2a\x68\x93\xec\x0f\x86\x5e\x87\x03\x33\xf6\x2b\x28\x3c\xb6\x92\x12\x21\x8c\xd1\x22\x5d\x7e\x98\x64\x3b\x76\x5d\x4f\xe5\x8d\x2f\x4f\x88\x2c\xd1\x8c\x53\x6b\x6b\x2e\xf8\xbc\x1f\x11\xf2\x19\xff\xbb\xb9\xa9\x7d\xc8\x48\x57\xd5\x64\x7c\x8f\xf3\xfd\x12\xcb\xf4\x68\xdd\xe8\x36\x4b\x5e\x96\xe3\x42\x12\x84\x1a\x75\x4a\x0b\x39\xa3\xf3\x2d\x36\x3f\x0f\xe7\xd6\x40\x7c\x2e\x12\x38\xd1\xa8\x80\xf5\xc0\xe5\xb2\xa8\xe0\x09\xa5\xe8\x9b\xab\x74\xc0\xa5\x25\xa7\x40\xdd\xfb\x11\x4f\x92\x99\xdf\xa1\x87\x1c\x3f\x07\xa3\xae\xf3\x94\xa6\x29\xe6\x15\x9d\x61\xd6\xf2\x62\xd2\xef\xbc\x2f\x9d\x07\xd8\xbf\x47\x2c\x16\x68\xc7\xb5\x8b\xb9\xb1\xa8\x41\xb5\x17\xd7\x80\x79\x11\x30\x9e\x0a\xe9\x70\x1e\x1e\xae\x6b\xb6\xb3\x5a\xcf\x6f\xfd\xed\x36\x1a\xa7\xb1\x2b\x90\xf0\xc7\x0a\x72\x1f\x76\x67\x8d\x28\xea\x15\x05\xe2\x3a\x5b\x08\xda\xdd\xb5\xe4\x2c\x23\x56\xbf\xe4\x26\x89\x61\x8a\x6e\x5c\x2d\x50\xdc\xa0\x58\x89\x57\xd5\xc5\xb9\xbd\x34\x54\xb6\x15\x42\x18\x4d\x2c\x2c\xd2\xf6\xc2\xee\x2d\x71\x4e\xf5\x71\xc2\xad\x44\x62\x5c\x54\x1d\x53\x0f\x39\x08\x83\x8f\x0e\x0e\x64\x6f\x53\x99\xde\xc4\x17\xf2\x21\xd2\x6b\x92\x48\x8a\x71\x2f\x5f\x28\x43\xd3\xa3\x22\x0b\xb2\xfe\x7c\x04\x50\x03\x04\xa5\x61\x07\x0a\xe4\xac\xb3\x76\x0e\x09\x43\x18\x31\xc4\x0c\x0f\xa5\x52\xaa\xe5\x38\x15\xe2\x8a\x56\x21\x56\xd6\x81\xfe\xad\x98\x67\x9c\x51\x9f\x6d\x2f\x4a\xcb\xc7\x95\x2a\xa9\xc3\xeb\x26\xc5\xad\x66\xb0\x85\x2b\x33\x3f\xd6\xc5\x6b\xa2\x7a\x1a\x3e\xe8\x7a\xc3\x7d\xd7\x1c\xb3\xc9\xa0\xef\xa3\x6e\xd1\x7c\xd0\xdf\xdd\xa8\x8a\x1d\x87\x25\x7e\xa1\xea\x92\x49\x0f\x1b\xa5\x1d\x6e\x30\x01\xee\xda\x92\x88\xf4\x85\xb7\x81\x7e\x67\x19\x6d\xc4\x86\x37\x46\xb3\xe2\x78\xde\x41\x44\x4c\x59\x72\xf7\x98\xe3\x3e\x0d\x48\x74\xf3\xe7\xa0\x7b\xca\x14\xae\xdb\xaa\x26\xca\x89\xd1\x02\xbc\xf9\xf4\x42\x33\xf3\x3c\xae\x03\x3f\x90\x60\xe0\x6b\xbb\x55\x04\x41\x45\xee\xad\xe2\x72\xef\xe4\x41\x1f\x27\xae\x68\x2a\x29\xd2\xf5\x86\x87\x28\xbf\x9d\xc1\x4a\xb0\xb3\x91\x73\xf5\x9e\x62\x59\x88\xa3\x6e\xb0\x3a\x25\x2d\xf4\x11\xde\x0d\x8f\x4e\xfa\xfd\x77\xbb\x7e\x2c\x7c\x5c\xa2\x7f\x31\x1f\x75\x7c\x9e\xbe\x3e\xa4\x10\xec\xe6\x19\x6c\x3b\x12\xdb\xbb\x5c\xb8\xc5\xf9\x5c\x7d\xcd\x47\xed\x76\xd6\xae\x80\xf2\xd3\x18\x17\xc3\x84\x34\x15\x92\x0b\x94\xe3\x50\xce\xaf\xb0\x8a\xa3\xce\xd0\xc8\x98\xaa\xd3\xfb\x4b\x9f\x4b\xa5\x94\x84\xc7\xcc\x51\x11\x3b\x35\x79\x51\x42\x18\xc9\x6d\x81\x84\xff\x14\xb5\xbd\x43\xf7\x8b\xe4\xd6\xc1\x4f\x02\xad\x15\xd1\x5c\x2d\x50\x50\x0e\x2c\x2c\xea\xcc\xe3\x94\x1f\x0b\x91\xce\x54\xa6\xbf\x2c\xb3\x62\xfe\xf8\xac\xb3\x59\x60\x58\x98\xb1\xb0\x9b\x16\xc9\x70\x5f\xab\x0e\xab\x36\x63\xbd\xdd\x8d\xaa\x04\xfa\x11\x27\x0a\x94\xe2\xf5\xb8\xf0\x49\x10\xf7\x18\xc8\xf1\xe8\x93\x57\x1d\xbb\x2c\xf9\xd7\x94\xf6\x38\x83\xf3\xbc\x8f\xda\xbf\x96\xbb\x65\x4f\xbf\x89\x90\x9f\x8a\x0b\x74\xfd\x4d\x75\xde\x7f\x5e\xba\xab\xc0\x59\x9b\x81\xb8\x92\xf0\x54\x74\x84\x74\x50\x92\xea\x6f\x96\x8a\x7a\x69\xa9\xb4\xe1\xc9\x63\x3e\xb1\xdf\x6f\xf0\x9a\x50\x36\x54\x82\x44\xb1\x1f\xb2\x96\xd3\x9c\x53\x0e\x17\x42\x94\x39\xaa\xeb\x75\x64\xf9\xed\x41\x9b\x46\x47\x1b\xe2\xb8\x94\x2a\x31\x83\xc8\x3d\xe3\x6d\x4f\x96\xd6\x35\x52\xfe\xfe\xca\x46\x7c\xe4\x52\x6c\xff\xc0\x82\xbd\xa1\x8d\x43\x54\x93\x49\xd4\xc6\x61\xc6\xc5\xb8\x00\x5e\x89\xfc\x6b\xca\x45\x42\x33\xd7\x8d\x46\x3c\x08\x75\xc0\x02\xa1\xd5\x13\x70\x75\x64\x80\xe9\x2a\xc9\x18\x50\x29\x40\xd4\x05\x0c\xc8\x50\xd4\x44\xc7\x10\xa9\x7b\x66\xa1\x35\xcc\xd1\x49\x16\x40\x47\x06\xbe\xb9\x9f\x20\xee\x3d\x30\x86\xd8\x33\xde\x46\x1b\xb0\x4d\xe0\xc6\xc1\x86\xda\x01\x92\xad\x96\xd2\xd3\xa3\x74\x86\x19\x4b\xf6\xba\x36\xa9\xf2\xcf\xa8\x22\xd1\xa7\x9c\x16\x18\x96\xf7\x4b\x02\x6b\x04\xb2\xe8\x22\xf7\xbb\x1d\x75\xd7\xc9\x61\x94\x0a\x69\x37\x8d\x2d\xa8\x9e\x85\x55\x95\x8a\x95\xd2\x78\x18\x3b\x0b\xbe\x06\x24\xd6\xe0\x00\xf4\x85\x64\x9d\x85\x79\x47\x66\x8a\xbc\x4d\x9e\x50\x67\x7d\x7e\x7d\x75\x56\x7f\xcc\xd2\x50\x7d\x14\xd5\xb7\x87\x11\xa1\xb6\xb7\x41\x71\x42\xc0\xe8\x08\x29\xe7\xe3\xfb\xc8\x28\x69\x62\xa7\x76\x4a\x84\x4b\x5a\x1c\x5a\xad\xed\x94\xd7\x25\xea\x70\x35\xe9\xc8\x67\xe6\xd7\x34\x23\xf2\x1a\x25\xa9\x52\x8f\xe4\x72\xec\x44\x0f\x01\x27\x7c\xe8\x1b\x6f\x76\xec\xfc\xeb\x66\x1d\x34\xd2\x33\x94\x79\xda\x9f\xc4\x18\xba\xb7\xde\xa6\x5f\x60\x2a\xf8\x90\xcf\xb8\x09\x29\x3f\x54\xd2\x41\xc1\xe2\x88\x8e\x2d\xe9\x83\x66\x18\xf0\xd4\xc2\x25\x97\xa5\x9e\x04\x79\x2a\x78\x20\x42\x3c\x3f\x05\x5d\x1d\x66\x58\xc7\x4c\xd3\xff\x25\x12\x68\x54\xb4\x52\xe3\x64\x97\x23\x18\xef\x24\x44\x7a\x39\x2b\x01\x4a\x6d\xc4\x07\x40\xa2\x07\xad\x01\xfa\x90\x8b\xb0\xe7\x1e\xe4\x4c\xca\xdf\x5e\x4b\xef\x53\xc6\xaa\xac\x42\xbd\x95\x72\xa5\x60\xff\xfc\x70\xaf\xb6\xb4\xeb\xfa\x55\x0c\x3a\xfd\x00\x87\xe3\xa4\x9b\xca\x4a\xed\x4b\x50\xe7\x82\xb2\x17\x40\x0c\x9f\xcf\xbe\x07\x6b\x3b\x6b\xfd\x98\xfe\x7b\x3e\x30\x3a\xdb\x9e\x59\x72\x36\x5a\xaa\xb1\xf4\x46\xe8\x61\x82\xbc\xce\x5d\x5a\xe1\x00\xd9\x71\x39\x0a\x5f\xf9\x35\xf3\x64\xa7\x5f\x19\xb3\x1b\x1a\x8b\x84\xbd\xc5\x9c\xf9\x2b\xd9\x0d\x4f\xb6\xac\xfe\x98\xab\xc7\x93\x45\x9f\x5d\x1a\xd0\xfa\xa5\x64\xe3\x1f\x76\x60\xf1\xf2\x3a\xb6\x4b\x89\x30\xdc\xf6\x9f\x49\x92\xb0\xd3\x5b\x4b\xfe\xa9\xcb\x60\xc9\x56\x0e\xc3\x9c\x42\xb4\x7f\xc7\x79\x5e\x3e\xaa\x91\x76\xfc\xe6\x31\x96\x17\x4f\xf8\x11\xf5\xed\x23\x75\x0e\x9c\x2b\xe4\xe1\xbf\x79\xeb\xdd\x16\x30\x90\xbc\xef\x48\x38\x7a\xb4\xf6\xd7\xff\x77\x03\xe2\x7d\xd3\xf7\x60\xbe\x64\x03\xc7\xd7\x0c\xbe\xe7\x91\x39\xfe\x40\x82\x93\xbd\x04\xdf\xd9\x7f\x8f\x86\x88\x85\xca\x8f\x85\x10\xf5\x99\x4d\x29\x4c\xc7\xf5\xed\x7c\xdf\x7e\xf6\xc9\xbf\x25\xc3\x6e\x4f\x55\x3b\x59\x93\x88\xde\x88\xdb\xc0\x66\x23\xb3\xeb\x99\x67\xaa\x29\x49\xd1\x45\x6b\xb9\x07\xc9\xff\xf9\xef\xd8\xc0\x82\xfd\xb0\x55\xeb\x92\x92\xdd\xe5\x69\xd0\x67\xfd\xf3\x70\x3b\x22\x9e\x12\xd1\xf3\xc3\xe5\xee\x92\x38\x14\x42\xab\xc7\xb2\x8a\x95\x1d\x6c\xca\xf9\xf8\x3e\x94\xa0\x82\xd9\x19\xdb\xef\x27\xfe\x2e\xe5\x23\x44\xf7\x8f\x4b\x91\x95\xf6\x74\xa7\x90\x24\xb8\xc0\x70\x09\x4d\xbf\x9c\xb5\x5f\x42\xba\x61\x1e\xed\x95\x6e\xf7\x93\xfd\xc9\x17\x6b\xe7\x19\xb0\x1e\x74\x9d\x61\xa7\xc2\x1d\x41\x7b\xf3\xf5\xe2\x1b\xf0\x6c\x39\xf2\xa2\xd8\x1d\x74\xd9\x0c\x7a\x6d\xed\xaf\x2c\x47\x59\x77\x97\xed\x64\xd4\xdd\x29\x1b\x82\xc1\x7b\xd9\x52\xe3\xed\xe0\xab\x45\xd3\x32\x07\x2f\xbe\x3d\xf3\x4a\x01\x7c\x66\x51\xf0\xb0\x03\x04\x11\x0d\xf7\x75\x7c\x08\x41\xa0\xb9\xcb\xc9\x90\x67\xbb\x41\xcf\xb7\x9a\x13\x72\x60\xd6\xc2\x1f\x49\x16\x81\x87\xba\x6d\xde\x45\xa7\x81\xb0\x47\x40\xb6\x6f\xc6\xb4\xdd\x11\x3e\x40\x5f\xf9\x5d\x7d\xe9\x5e\x57\x5b\xba\xac\xeb\x60\xd8\x05\x9a\xdf\x9c\x32\xbb\x92\xf7\x2b\x6d\x12\xbf\x0a\x39\xbc\xab\x9e\x51\xa1\xd1\x64\x9c\xa8\x55\xf2\xf4\x26\xbf\xe9\x79\x67\x9e\xf6\xd5\xfe\x55\x45\x32\x7a\x5e\xcf\xba\xfa\x8b\xf9\x79\x70\x23\x5e\x2d\x0e\x0d\xc5\x93\x45\x17\xb1\xd9\xa1\xd0\xee\x17\x22\x40\x91\x52\x23\xa3\x4d\xc4\xa9\xdf\xb6\x78\x39\xcd\x56\x61\x5a\x18\x36\x53\x65\x7f\x00\xe2\x97\xb8\x25\x13\xba\xf7\xdc\x20\x95\xfe\x35\xb1\x2f\x5c\x20\x05\x8b\x71\xf1\x16\x5a\xc3\x09\x44\x6d\xaf\xfd\x6a\xb3\x7c\x94\xaf\x55\x2b\xed\xa5\xb3\xa5\x6b\xd3\xc0\x39\xf8\x3c\x22\x94\xe1\x0f\x91\xc6\x2f\x58\x61\x75\x01\x41\x7a\xb2\x65\xe9\xe9\xb1\x23\xa9\x66\x44\xc6\x8d\x27\x27\xeb\xf9\xef\xbf\x1f\x10\x53\x00\x0e\xeb\xaa\x10\xfd\x72\xc4\x7b\x91\x2e\xa4\x76\xe9\x8e\x2a\xbe\x25\x77\x57\x8d\x06\xa4\xd5\x11\x8b\x7e\xf1\xb0\x82\xd0\x39\xc3\x51\x8e\xce\x97\x29\x63\x9a\xec\xa2\xa5\xda\xdd\xe0\x6d\x7a\xf5\x2c\x6a\xfe\x07\xea\xc3\xf7\x7e\x08\x1a\x5a\xfb\xab\xf0\xc9\x84\x14\x06\xd7\x9c\xb0\x35\x63\x80\x69\x2e\xfc\x4e\x63\xf8\xfe\x74\x0c\x3a\x9e\x8f\x3a\x3e\x88\x4d\x2f\x73\x50\x1e\xca\xa5\xbb\xdd\x8b\x36\x4d\xe7\xfc\xf7\x3e\x15\x87\x4d\x93\x48\x3e\x35\xbb\xf1\x67\xba\x1a\x81\x67\x6c\xa9\x13\xa4\x80\x96\x12\xbc\xba\xf3\xd3\x20\x48\x45\x32\x6f\xbc\xdb\x1f\x19\xf9\xaa\xf6\xf3\x1f\x7f\x84\x3c\x53\x3e\xfc\xcc\x27\x03\xf1\x8b\x33\x49\x78\x70\x20\x0d\x72\xca\x0b\x86\xb7\xfa\xab\x94\xf6\x70\xcc\xc9\xef\x9c\x7a\x51\x30\x8a\x95\x70\x49\xf7\xd3\x0f\x99\x47\x3e\x1c\x6e\xa3\x57\xdc\xbd\xcb\xa6\x00\xbe\x17\x6d\x9a\x8f\x86\x12\xc9\xa2\x8b\x04\xc2\x20\x3d\xc2\x40\xd1\x10\xd3\x40\xdd\x27\x7e\xb4\xb4\x8d\x31\xd1\xcc\xf9\x69\x54\x62\xc5\x4b\xf3\xe4\x42\xa5\xcc\x99\xa8\x08\x0f\x91\xa8\xeb\x25\x5d\x80\x71\x6d\xc2\xb7\x82\x24\x23\xe0\xee\xbc\x6e\x4b\x33\xfe\x95\xbc\x9c\x5f\x28\x0f\xb1\x0b\xa5\xd1\x1d\x13\xd2\xf8\xb6\xbf\xdf\x68\x62\xb1\x76\x47\x37\xb3\x15\x6b\xc8\x16\x2c\x84\x21\x3e\x81\x61\xff\x2b\x3c\x60\xe1\xc7\xa7\xea\x5f\xa4\xc0\xb9\x58\x59\xf3\x8f\xea\x9a\xde\x4d\xa7\x8d\xfd\x7c\x97\x09\xcb\x10\x7a\x7c\xeb\x32\xe9\xc5\x9b\x3f\x37\x2f\x2e\x8f\xd9\x0e\x61\xb9\xb5\x82\xd6\xb3\x96\x64\x31\x4e\x80\x8f\x1d\x23\x33\x15\x6b\x38\x79\xd1\xb7\x7e\x18\x39\xd0\xf4\xce\x22\xdd\xd2\xad\xfa\x08\xc7\x66\x4d\x62\xd4\xd0\x28\x6b\x67\x3b\x9e\x0a\x46\xbf\xaf\x5e\x7c\x01\x11\x57\x0d\xaf\x2a\x44\xd4\xa7\xfe\xaf\x0b\x3e\xe0\x33\x27\x64\x62\x1a\xba\xfd\x73\x9a\x52\xde\x2f\x44\x91\xc2\x39\x39\x2b\xfd\x85\x9a\x9c\x8e\xdb\x8d\xad\xe0\x7f\xbd\x02\x2d\xfa\x83\xf8\x1f\x9d\x5f\x7b\xf9\x9d\x6d\x5c\xe0\x21\x15\xc9\x34\xd4\x6b\xf5\xb9\x01\xa9\x18\xf3\xc6\x5f\xc2\xc9\xa7\x84\xbb\x71\x22\x3f\x67\x3e\xa1\x50\xdc\xa2\xce\x86\x61\x58\xad\x73\x78\xb9\x11\x1f\xcb\x48\x78\xed\x8a\x13\x89\x86\x4b\x48\xe0\xe3\xad\x24\xc0\xd5\xf6\x4b\x2f\xd1\x8a\xe6\xe9\xdd\xfa\xac\x3a\xb4\x57\xea\x84\xef\x4c\xe2\xe2\x19\x19\xd8\xc2\xef\x9e\xfe\xd0\x7d\xf2\xa7\xf4\xc4\xf4\x35\x72\x56\x4f\xf2\xa2\x84\x47\x8c\x52\x40\x25\x83\xda\xe5\xfa\xab\xf3\x1d\x21\xd3\xcb\x87\xff\xe6\x0f\x5f\xae\x92\xf4\xad\xf6\x9c\xa6\xcf\xff\xfe\x5a\x1f\x6a\xfe\xa8\xea\x5f\x2f\x7e\x4e\x98\x23\x12\xdf\x76\x3b\xdd\x21\xfe\xf3\x03\xb0\xa1\xee\xf8\xa5\x4f\xd5\xd7\xc7\x82\x22\xbf\x8e\x5d\xd7\x3d\x85\x07\x2a\x12\x22\x4b\xbc\x04\x7e\xaa\x4c\xdf\x89\xd8\xea\x7d\x1d\x45\xbe\x5d\x9c\x5c\x2f\x81\x3c\x00\x5e\x72\xd9\x79\x12\x0b\x97\x13\x0b\x0b\xc5\x45\x96\x4d\x37\x8d\x18\x0d\x2e\x0d\x5c\x3e\x2f\xbf\x4a\xb5\x14\xc6\xb2\x04\x04\x53\x3c\xfe\x43\x20\x3e\x47\xa0\xd7\xc5\x51\x68\x38\xd7\x26\x9b\xdd\x8b\xfa\xdc\x7d\x52\x66\x4c\x90\xb0\xd3\xdb\xe1\xc4\x3e\xad\x20\xbb\x4c\xa1\xdc\xbc\x6a\xc1\x3a\x37\x1a\x21\xf2\x3d\x27\x00\x7d\x50\xc8\xca\xe7\xf8\x9c\x19\xc9\xe1\xfd\xf0\x16\x90\xd1\x24\x54\x36\xb6\x7e\x22\xbb\x26\x13\xca\xc1\xbf\xf9\xca\x25\xb1\xd3\x46\xfb\x6a\xff\x9b\x48\x66\x70\x0b\xe3\xd9\xf5\x80\x9f\x67\x74\x3b\x07\x02\xff\x0b\xcc\x92\x4f\x23\x69\xed\xef\xf7\xbc\xb8\xd4\xd6\xc4\x2e\xe2\xd9\xac\xc0\x6d\x72\x8c\x56\xea\xef\xbf\x6b\x39\x4a\x84\xfb\x4d\xc2\x40\x31\x07\x52\x1b\x72\xed\x65\x19\x99\x2f\xf2\x35\x62\xbe\x6c\xf4\x7c\x60\xeb\x23\xfe\xba\x93\xe0\x83\xdd\xe3\x7d\x16\x76\xe4\x86\xcb\xfe\xfc\x69\xd9\x90\x82\xa1\x14\xc6\x25\xf1\xf5\xc5\xd5\x0e\xfe\xc3\x1a\x51\xf5\x9c\x1a\x1c\x13\x05\xb5\x26\xca\x3a\x98\xb8\x49\xc5\x9f\xe0\x2b\x05\x1c\x45\xc4\x72\x0b\x6b\xbf\xbb\x17\xfb\xcb\xaf\xf4\xa3\xc8\x06\x4d\x40\x90\x15\xf4\xdc\x63\x06\x83\x9b\xba\xdb\x23\x3f\xbe\x9c\xe9\x2f\x72\xb3\xc4\x47\xa6\x11\x4a\x3f\x4e\x74\xd9\xf8\x37\xe3\xb0\x23\xd3\xfb\x5f\xbb\x57\x70\x9d\x04\xc2\x1c\xb1\xe4\x47\x2a\x9c\x8b\x15\xc2\x6d\xe1\xfb\xf4\x5a\x51\x93\x90\xbe\xa7\x18\x47\xd8\x9c\x83\x2c\x6f\xbc\x94\x87\xda\x43\x96\x46\x6d\xf6\xc7\xc7\x00\x5e\xe7\x6b\xbf\x44\x10\x15\x3c\x35\x09\x41\x85\xd1\xea\xac\xaf\x45\x4b\x98\xa7\xdb\xf7\x9d\xca\x4f\x30\x46\xf3\x35\x6c\xc7\xd6\x1c\x1e\xba\xa7\x64\x8e\xb1\x3e\x6b\xc4\xc7\x7a\x93\x0c\x6e\x91\xfe\xaf\x91\xf4\x4d\xaf\x95\x8a\x85\x40\xc8\xf7\xf5\xdf\x9b\xd4\xff\x9b\xac\x37\xfc\xcc\x96\xcd\x63\xee\x7f\x70\xf4\xdc\xfc\x67\x2f\x71\x37\x46\x82\x0e\x00\x5e\x22\x58\x1d\x77\x99\x00\x4e\xa7\xfd\xf2\xf2\x53\x44\x98\xa1\xcd\x43\xe3\xf1\xee\xda\x8e\xf3\xbf\xf5\x86\x4d\x0e\x6d\xd9\xbf\xd9\x84\xae\xa6\xbf\x89\x64\xd2\xe9\xe5\x30\x73\xcd\x1f\xd1\x0d\x9f\xb1\xf4\x3a\x70\x41\x69\x62\x0c\x1e\xdd\x7a\xcb\x6a\xe2\x4c\x9b\x93\xc5\xaa\x43\x77\xa5\x1e\x6e\x9d\xd2\xeb\x2b\xe3\xaa\x63\x5d\x39\xcc\x88\x3e\x85\xf9\x65\x02\x2e\x65\xc0\xc9\xf8\x73\xd5\xeb\x00\x1f\x66\xa5\xff\xe2\x0e\xa1\xac\x49\x28\x32\xd0\x24\x9e\x20\x01\x7e\x2e\x8e\x51\x24\x86\x94\xe1\x7f\x77\x65\x37\xde\xd8\xfb\x44\x2a\x3a\xc0\xd9\x10\xef\xae\x1a\x72\x41\xd9\xc9\xbd\xe4\x81\xdc\xd8\xc0\xc5\x1e\x69\x14\x4f\xe4\xac\xc0\x0c\x35\xaa\xc4\x6c\x61\xf0\x56\xe2\x19\x00\xe8\x25\x32\x48\x58\x50\xc1\x63\x5f\x7f\x42\x00\x46\x86\x7b\x1e\x22\xba\x7c\xa7\x9d\x47\xa8\x0c\x82\x1f\x60\x6f\xbc\xb8\x37\x96\xf5\x11\x1d\xf9\x5e\x92\x53\xc5\x7d\x78\x19\x7b\x46\xd7\x41\x8c\xfb\x07\x6c\x24\x77\x09\xc3\x30\x5a\xd6\xa5\x32\x1c\x78\xd2\xfb\x86\xd6\xe5\xee\x7d\x4a\x0a\xfd\x40\x3f\x86\x79\x17\x92\xca\x2a\xec\xe6\xce\x56\xff\xac\x20\xd0\x95\x45\x28\xd3\x13\x0a\x8c\x92\x3d\x6b\x2e\xd5\xb0\xe7\x38\x93\xc7\x51\xeb\x3a\x67\x8a\x6f\x3c\xc3\x2e\xe7\x56\x2f\xfd\x15\x34\x39\xbf\x4a\x27\xc6\x78\x23\xa2\xe1\x5c\x72\x54\xf3\x4c\xa0\x78\x40\xfa\xbe\xc5\xef\x37\xea\xac\x13\x45\x53\xa7\x30\xbf\x7d\x04\x52\xd2\x04\xb8\x8d\xf2\xc8\x19\x9d\x85\x61\xb4\x14\xba\x2a\xf2\xdf\x8b\x8b\x2c\xe7\x65\x7c\x86\x25\xb7\x37\xe6\x36\x28\x93\x9e\x37\x5c\x56\xa9\xb5\xa1\x3b\x1d\x32\x0e\x58\x9a\x89\x64\xd1\x8e\xac\x28\x0c\x99\x6f\x3f\xbd\xda\x1f\x97\x44\xae\xd7\x10\x27\xad\x68\xdf\x55\x98\xe4\x34\xec\x6b\xb6\x20\xd0\xf5\x98\x44\x99\xc2\x3b\x86\x39\xf1\xe9\x7f\x8e\xdf\xad\x1f\x6b\xe7\xf4\x05\x0a\x52\xe4\x53\x3f\x89\x9b\x2f\x89\x57\x7f\x42\x8f\xfa\x98\xd5\xfe\x4f\x12\x1d\xb3\x9b\x4e\x9f\x3a\x41\xa0\x6a\xef\x5f\x8d\x5d\xef\x0f\xed\x73\xa1\x37\xbf\x82\xd1\xf7\x2e\xdb\xac\xb4\x41\xdd\x08\xad\x19\x84\xfc\xa5\x5f\x06\xa3\x16\x7f\x7d\x9c\x5e\xf3\x97\x2c\x23\xf4\x8b\xc3\x65\x37\x3c\xb1\xb5\x15\xb5\x53\xf1\x3b\xcb\x3e\x17\x14\x7f\x88\x25\xd3\x0e\x5c\xd0\x97\xec\xb4\x4e\x93\x69\xd9\x3d\xf4\xc1\xf1\x91\x62\x5d\x70\x49\xab\x07\x71\xe6\x8e\x64\x76\x44\x95\x47\xf6\xa0\x4d\x47\x42\xf8\xad\xdc\xd3\x11\x04\x9b\xc0\xcf\xbd\xed\xba\x2d\xda\x82\x44\x0f\x04\xed\x2a\x26\xd6\xe3\xf8\xc3\x6f\xff\x66\x1b\x31\x4c\x4f\x8f\xb2\xf1\x7a\x54\xef\x11\x0b\x04\xcc\x13\xa7\x2f\x27\xea\x11\x30\xc6\xff\xe5\xfe\xae\xff\x16\x79\x42\xbd\x8e\x75\xe0\x70\x9f\x72\xea\x07\xc7\xbf\xcc\xc8\xeb\x4e\x0f\x48\xa3\x32\xe9\xd9\x3c\x7b\xcf\x0d\x60\x4a\x36\x99\x68\x79\xca\x69\x98\xe6\xd7\x96\xb4\xb3\xbd\x31\x16\xe1\x42\x33\xe6\xdc\x84\x83\x36\xf4\xf7\x73\x16\x08\xf8\x43\xf2\x32\x74\x95\x6f\x54\xf4\x31\x83\x08\xcd\x55\x69\x98\xbc\x8f\x9a\x5b\xbb\xed\xc2\x8f\xab\x9f\x08\xe7\x5b\x1e\xe4\x45\xdf\x84\x4c\x93\xf7\x57\xce\x2f\xec\x08\x81\xa3\x3d\xee\x8e\x64\x35\xa4\x12\x8c\xf7\x52\x76\x5d\x54\x7d\x7e\xc0\xf4\xbf\x85\x98\x24\x42\x7c\x9f\x73\x7a\x53\x93\x0b\x0a\x89\x07\xd1\xc9\xb3\x02\xf5\x69\x8f\x86\xe3\xf5\x82\x13\x22\x63\x16\x7d\x25\x65\x75\x73\x3b\xbb\xd9\x82\x75\xea\xd1\x15\x2d\x28\x33\xa7\x98\xb3\xb9\xb7\x16\xc0\x6d\x75\x6b\xd2\x8b\x3f\x46\x85\x73\xff\x8d\xfd\x34\x5b\x97\x85\x6a\xba\x2c\x1f\xcd\xa4\x59\xad\x13\x9b\xfc\xf6\x88\x4d\x7e\xa9\xdc\x1c\x4d\x78\x8d\x89\x42\x38\x17\xab\xeb\x3c\x0a\x06\xd4\xc7\xec\x67\x50\x75\x74\x6e\x3b\x7b\xd3\x5e\x81\x15\x9c\x74\x6b\x9a\xd2\x7d\x39\x14\x50\xbf\xc7\x0b\x0c\x1f\xf8\xe9\x7c\xfd\x2e\x0c\x28\xb9\x11\xab\x3b\x62\xff\x6c\x04\xb9\xf8\x3c\xa5\x55\x8e\x7b\x14\xa2\xd4\xf5\x95\xbe\x7e\xb4\x34\xf2\x6a\x3a\x62\xef\xf8\x51\xf5\xb2\xc4\x2a\xe7\x4d\x1c\x8b\x36\x82\x2c\x7a\x45\x8b\x72\xce\x3d\xa6\x77\xf9\xd8\xa0\x23\x7e\x64\x64\xea\x65\x60\x5d\xf9\xf8\xa8\x53\x61\x30\x13\x3b\x48\xa4\x3a\xe0\xf4\x30\xe3\x62\x56\xc1\x07\xb2\xec\x22\xe0\x86\xb8\x13\x18\x3d\x37\x7a\x69\x59\xf0\x3b\xb9\xb0\xf0\x93\x76\x5d\x31\x65\x22\xe1\x9d\x59\xf0\xce\xcf\xe7\x7b\x7f\xf6\x50\x5d\x94\x81\xc5\x9c\x7c\xf8\xbe\x5c\x02\x64\x55\x1c\x0a\x89\x8f\x5b\x96\x72\xeb\xee\x63\x2c\xfd\xf9\x6c\xf0\xf1\xef\x57\x0a\xc1\xb3\x89\x16\xd7\xe4\x50\xe6\xad\x69\x67\x7b\xb5\xa8\xfc\x58\xb1\x46\x33\x32\x4f\x0e\x9b\x47\x26\xff\x06\xb9\x35\x83\x58\x25\xf6\xba\x70\x78\xcb\xa7\x92\x56\x59\x7e\x7f\x1a\xad\xd6\x76\xf8\x64\xe8\x72\x97\xd8\x14\x4a\x37\x1f\x87\x06\xad\x6a\x23\x18\xcb\x5e\x51\x81\x63\x1a\xfa\xc5\xf1\xb1\x1c\x40\xab\x9f\x9c\xc6\xa8\x68\xad\x5b\x8d\xb8\xa7\xd4\xf0\x8d\x2b\xd4\xef\x9b\x48\x64\xa6\xd9\xe5\xdf\xfd\x97\x7e\xe9\x1f\x6e\x8a\xef\xa8\x87\x83\x1e\xd9\x3d\x8d\xa7\x24\x95\x5f\x91\xda\xf7\x66\xe7\xaa\x72\x4f\xa6\xfc\x6e\x49\xd1\x93\x53\xac\x74\xfa\x6d\xf4\xd4\xb6\x6f\x9f\xe6\xaa\x52\x8f\x3f\xde\xdf\xa0\x44\xac\x5e\xfe\x1b\x73\x1d\xab\x5d\xb4\x07\x41\x6d\x31\xa4\x81\xc3\x75\x94\xa2\x93\x72\x43\x37\xb9\x5d\x69\x97\xf1\xcc\x85\xd1\x22\x4a\xca\x35\xea\x92\xd7\xe5\x93\xec\xcf\x66\xd3\x82\xa9\x7e\x89\x17\x54\x70\xc7\x35\x87\x8c\x2b\x87\x1e\xf6\x26\x69\x79\x82\xf9\xe8\x80\x80\xe3\x88\x34\xc9\x93\x6a\x74\x31\x4f\x52\xd9\x7a\xd4\xca\xd0\xd1\xe1\x20\x38\xe5\x2a\xa5\x14\x16\x0d\x97\x78\x86\xb2\x26\x15\xc0\x9b\x5f\x48\x0a\x04\xfb\x77\x5f\xaa\xa8\x04\x73\x1e\xd2\xd3\x97\x33\xf9\xbb\x0b\xac\x2e\x10\x9d\x8b\x2f\x6f\x69\x7a\xf1\x4d\xab\xc4\x0e\xdb\xf0\x00\x2f\x49\xdd\x0a\x2f\xa8\x90\xa9\x95\x05\x24\x29\x40\x70\x23\xc8\x45\x64\x2e\xf7\x84\xca\x4d\x50\x72\x97\x31\xf2\xb6\xed\x48\xed\x69\x53\xe0\xf1\x70\xfb\xb6\xfe\x26\x3b\x8e\xae\x11\x0f\x72\xc4\xfb\xa8\x46\xc3\x25\x0a\xc0\x67\x05\xf5\x50\xe4\xbb\xc6\x27\x6a\x91\xe2\xd2\xd8\x91\xdb\x38\xec\x08\x2b\x76\x8a\xe9\xe1\x89\x11\xa0\xf9\x55\xe7\xb6\x5d\x67\xb7\x55\x68\xb8\xec\xfe\x2e\xa0\x2e\x0c\xf4\xbc\xd9\x51\xdf\x6d\xe7\x29\x03\xc0\x35\x08\x2c\x7d\x4f\x14\x06\x6d\x79\x55\x57\xb0\x3c\xe5\x30\x7d\xe7\x45\xd0\x7b\x17\x12\x3b\x92\x25\x30\x78\x0f\x13\xb1\xf7\xe7\xb3\x0e\xae\x68\xea\x88\x6e\x90\xc0\x53\xfb\x4f\x77\x58\xa5\xf2\x55\x01\xfd\x55\x3a\x80\x5f\xed\xcb\xd9\x9c\xc9\x7a\xa3\xc0\xad\x1d\x46\x1b\xe7\x29\xee\x02\x89\x3a\xe1\x00\xdc\xb4\xed\xe9\x5e\x67\x63\xfc\xbb\xf0\x75\xd9\x2f\x0f\x5b\xac\x0a\xc1\x8f\xac\x43\x2e\xe3\x10\xba\x7f\x0a\x33\x63\x1e\xca\xda\xbc\x75\x78\xcb\x3a\x44\x73\xc5\x5b\x78\x5d\xd7\x39\x33\xc1\xfa\xf8\xb2\xaf\xe6\x02\xda\x1b\x87\xf6\x25\x50\x83\x63\xfc\x7a\x7f\xe7\xe5\xf2\x21\x8d\x96\xfb\x14\xc9\xbf\x02\xc8\xc7\xe6\xc5\x17\xa9\x16\x43\x58\xc5\x9f\x56\x9c\x74\x6a\x94\x2b\xff\xfb\x85\x24\xbe\xf1\xcc\x07\xd1\x61\x7b\x81\xe2\xb6\x8f\x3e\x7b\xe4\x79\xc7\x1f\xe0\x77\xc2\xde\xd1\x20\xe7\x7a\xf6\xd7\x47\xfa\x02\x9b\x93\x3f\xfb\x6f\x2d\xa5\xc1\x5e\xea\x54\xb8\xeb\xe4\x04\xd9\xb4\x5f\x08\x0d\xf1\xfc\x74\x19\xfa\x61\xd5\x50\xdc\x0f\xf1\xf6\x44\x00\x0a\x79\x44\xb5\xac\xcc\x74\x8f\x9c\xc6\x14\xf8\x12\xf9\xa9\x23\xbf\x49\x76\x49\xc9\x0e\x3f\x45\xa8\xb9\x28\x16\x6a\xe0\xd9\xe9\x1a\x03\x85\x68\x94\x29\xb4\x62\x9e\xf9\x38\xd8\x08\x21\x1c\x75\x6a\x20\x7b\xda\x33\x2a\xe4\x5c\x35\xb7\xc6\x67\xa5\xa5\xc8\xee\x97\x9e\x88\xeb\x9d\x8b\x34\x32\xbb\x3e\x2b\xae\xf9\x72\xd7\x54\x51\x76\xd7\x3f\xea\xb6\x5e\xce\x4d\xac\x21\x5b\xe1\x3e\xef\x7b\x51\x08\x0b\xf1\xdb\x5d\x6a\x73\x2e\xa8\x1e\x53\xc1\x81\xe6\xf8\x47\x00\x5a\x89\xf5\x5a\xb2\x17\x03\x01\x73\xaf\x14\xd8\xb0\xf9\xc2\xc4\x41\xbe\x05\xf9\xf4\x5f\xf6\xaf\xe7\x78\x53\xae\x67\x4f\x8e\x42\x2b\x2e\xb2\x3b\xc3\x3c\x3f\x9d\xed\xbb\xa7\x64\xee\x94\x8f\x9c\x71\x85\xf5\x5f\xf6\x6f\xd8\xbd\xca\xa5\xe0\x92\x0b\x6f\xaf\xc5\x92\x2e\xec\x08\xaa\x13\x77\xc7\x5c\x68\x87\xea\x0d\xcf\xea\x8d\x46\xf2\xf7\x50\xfe\x1b\xc3\xed\xf3\xa2\xb3\xc1\x17\x57\x8b\x86\xbd\xa7\xe2\x50\xc8\x60\x3c\x54\x1c\x09\xa3\x2b\xe2\xa3\x84\x6e\xf7\xb6\xac\xdd\xb9\xc8\xee\x3c\x5d\xaa\x5a\xfb\xcd\x59\x97\x41\x1a\x76\x1b\xea\xd8\x7b\xd3\xd3\x44\x2d\xe3\x6a\x11\x95\xf1\x00\x16\x49\x7a\xb2\x05\x43\x7c\xb6\x25\xf6\x0b\xe0\x63\xa9\x90\x96\xcd\x12\x87\xa1\x96\x3c\xab\xa0\xcd\x86\xbd\xba\xf7\xf7\xb5\x5f\xb4\x57\x46\x69\x04\x1e\x1e\xd5\x8f\x5d\xd4\xfb\x02\xf6\xe9\xd6\xfb\xc3\xed\xf3\x9a\xdc\x49\x88\xbb\x3b\xff\x64\x5a\x21\x8a\x0f\xa9\x1a\x29\x8e\xfb\x02\xc8\xf9\x02\xc0\xc1\x67\x9d\x8b\x6f\xc3\xcc\xfe\x3c\xae\x3e\x0e\xb3\xaf\xed\x1e\x66\xce\x88\xf1\x8b\x4a\xe9\xb2\x86\x09\xdf\x1a\x00\xb5\x89\x36\xcc\xdb\x8f\xd8\x21\xee\xbb\x2e\x7d\x51\xb0\xe9\xec\x62\xf1\x6f\x61\x8d\x91\x9a\x24\x47\xe3\x36\x6f\xd8\x1c\xbf\xa8\xc3\xeb\x23\xf9\xc5\xce\xb0\x92\x0c\xff\x60\x7f\x8b\x96\x02\x2a\x37\x5e\x34\xfc\xf2\x50\x0b\x7b\x2b\xc1\xc4\x76\x96\xc4\x71\x33\xb9\xbd\x31\xab\xa1\x3b\x44\xc2\x4b\x11\x19\xb4\xe3\xf0\xe4\x1f\x25\x0d\x7f\xdd\x61\x57\xb7\x7c\x58\xfd\x7b\x6c\x01\x96\xed\xab\x8e\x1b\x57\x57\x9d\xad\x33\xb2\x22\x14\x82\x98\x00\x51\x2f\xf9\xd0\x45\xd1\x1a\xb7\x1a\x4d\x11\x8d\xd3\x93\x08\x6d\xf9\x4c\xc9\x52\xf9\xcc\x35\xd6\xb5\xae\xf0\x9a\x5b\x64\xcf\xbe\x37\x7d\x66\x0b\x2e\xa8\x71\xab\xb9\xaa\xbe\xb5\x73\xe8\xbd\xb0\x14\x04\x11\x57\xfb\x7a\x0d\x54\x3b\x8d\x98\x59\xa8\xd6\x76\xce\x60\x02\x10\x5b\x0e\xf5\xc7\x85\x77\x25\x4b\xc5\x58\x32\x87\x3b\x62\x0d\x6f\x5c\xa9\xd3\x51\xd7\x8d\x0d\xd8\xa3\xe5\x1d\x08\xb3\x19\x56\x94\xf3\xff\x2f\xac\x0d\x03\x15\x60\xa0\x09\x73\x2d\x44\x07\x19\x8c\xc4\x06\x3f\xbe\xbc\x3e\xc9\xf4\x6c\x39\xbf\xca\xdc\x42\x1a\xf3\x78\xfe\x8d\xb7\x58\x46\x66\x5c\xdc\xe7\x8e\xf7\x52\xda\x16\xc1\x5a\x26\xfe\xbe\xb6\xce\x5a\x2a\x5f\x88\x0f\xd9\x41\x1b\xc0\xc2\xc0\xc8\x27\xa1\x1a\x33\x63\x8f\xe2\xca\xce\xf6\x3d\x54\x57\x43\x4e\x93\x6c\x4a\x47\x5e\xb0\x24\x4e\xd6\xea\xf8\xb2\x16\x9c\x50\x4b\x7e\xa3\x3e\x69\x19\x91\xf0\x09\x08\xf0\x23\xc9\xe6\x91\xde\x7f\xf7\xa4\x36\x7d\x70\xf1\xb9\xdf\x28\x6c\x76\x23\xc2\xca\xb6\x77\x54\xd3\xfa\xf8\xd7\x69\x46\x33\xed\xab\x17\xac\x9b\xb5\xbf\x39\x01\xbd\xa5\x51\x01\x28\x84\xff\x26\xc9\x7e\x3d\x70\x5c\x8d\x1b\xcd\x38\x2f\x93\xcd\x53\x4f\x93\x73\x2b\xfe\xf9\xbb\x20\xc6\x9f\xd3\xf9\xd6\x7f\x5e\x6f\x3b\xdb\x05\xd7\x17\xd4\x6b\xdd\xf5\x4e\x97\x73\xd2\x5a\x4b\xf4\x4f\x46\x4a\x8d\xd8\xa9\xb9\x3d\xd2\x0e\x14\x79\x10\x67\xee\xd5\xab\x97\x70\x70\xbb\x36\x95\xb3\xa5\x68\xea\xf7\xed\xdd\x96\xdb\xf7\x3a\x95\x65\x8a\x67\x8a\x45\x80\x1b\x1d\x99\x44\xa1\x61\x8d\xd3\xe7\xbd\xfc\x63\x5f\xb3\x5b\x08\xeb\xc0\x97\xca\x76\xcf\x56\xf7\x57\x6c\x62\x18\xfb\x2f\x3f\x0a\x4f\x04\x6c\x49\x64\xd1\x8e\xbb\x94\x94\xe4\x21\x54\xc0\x29\xe1\x71\xbd\x9f\xd1\xf0\x08\x50\x89\x4d\xb9\x0d\x54\x8a\x61\x1e\x58\x16\x97\x7d\x54\x75\x05\xde\x48\x50\x50\xfa\xab\x17\x71\x4b\xcb\x01\xd7\xc0\xef\xaf\x55\xd0\xec\xd1\x71\x1e\x75\x65\xa1\x29\xa2\x57\xc3\x97\x3c\x48\x37\xb2\x88\xfa\xbc\x6a\xe6\x40\x58\xfe\xa5\xac\x79\xfa\x84\x3f\xf3\x45\xda\xda\x5a\x9c\x53\x01\xf6\xd7\x0a\x83\xb7\x72\xae\x54\xdd\xc6\xda\x4f\x19\x4d\xd1\xdc\x8a\xca\x0b\x16\x08\x98\x51\x83\x82\xef\xab\xe1\xe6\x24\xbc\x12\x9b\x70\x1b\xa8\x7c\xa5\x16\x4d\x90\x39\x60\x50\x83\xb3\xae\xd9\x73\x80\xce\xed\x61\xcf\x01\x63\x23\x4a\x89\xc8\xb1\xae\xc2\xc0\xdb\x0d\xca\xff\x5d\x61\x2b\x43\x01\xfc\x34\xc2\xff\x60\xcc\x44\xdb\x4e\x8f\x6d\xe2\x38\x3b\xf6\xe1\x2e\xa3\x12\xcd\xab\x2c\x74\x35\xce\xed\xa5\x0d\xad\x9b\xfd\xb7\xaa\xa2\x03\x3a\x7f\x25\xfd\xbf\xfa\xff\x52\x59\x48\xab\x03\xaf\xaf\x32\xb0\xfa\xc5\x45\x7d\xbb\x6c\xf9\x55\x9f\x34\x44\x69\x0e\x6a\x06\xc4\x2c\x52\xc4\xea\x20\x05\x76\x09\xaa\xcb\x67\x84\x4f\x2c\xc7\x30\x8b\xc1\x19\x41\x41\xc0\xf8\x07\x42\x0a\xf8\x2e\xa5\x31\xef\xac\x1d\xc9\x8f\x79\xd3\xd8\xa7\xfc\x5f\xdf\x5a\x23\x31\x58\xee\x61\xc8\x34\x89\x77\x19\x49\x16\xed\xf8\x62\x6b\x8d\x12\x82\x01\xc0\xee\x14\xdf\xa3\xfb\xa8\xa9\xc3\x5f\xdc\x1d\xb9\xb6\x12\xc7\x88\xd7\x41\x22\xb8\xde\xe2\x16\x48\x0a\x4e\xf1\x33\x0d\xb3\xe1\x09\xd3\x10\xc1\x5e\x02\xe7\x2e\x41\x7c\xec\x5d\xe6\xd6\x5c\x32\x3e\x46\xef\xbf\x49\xa3\xba\x49\x53\xa3\xf1\x45\x01\x5c\xc5\x2b\xf1\xda\xb0\xce\xe1\xfa\xa8\x5f\x4e\xfb\x02\x40\x36\x9e\xcd\x88\x0b\xaa\x27\x13\xcd\xaf\x12\x95\x02\xdb\xfc\xe4\xf3\x93\x0a\x49\x30\xe9\x92\x02\x32\x80\x22\x00\xd0\x00\xbe\x6b\xb2\x93\x2f\x1b\x3f\x67\xe7\x7b\x5a\x7b\x5c\x17\x2d\xf1\xe5\x31\x6b\x90\xc0\x57\xc7\x0d\xb4\xe3\x1e\xfa\xb3\x95\x89\x65\x5a\x79\x00\xe5\xe0\xfd\x8b\x31\xee\x85\x10\x45\xd7\xa8\x16\xb6\xe0\x16\xee\x87\x87\xbc\x52\x67\xbc\x50\x08\xf8\x8f\x41\x22\x03\x14\x73\x89\x13\x00\xae\x33\x47\x53\x4d\x92\x77\x04\x33\xa9\xd1\x62\xdd\x5d\x13\x3f\x1d\xd2\x89\x9c\x2a\x58\x78\x23\x60\x6a\xc6\x40\x07\x2f\xe9\x01\x33\xb2\x49\x88\x8f\x65\x68\x88\x6f\x54\xc3\xe5\xf7\x45\x5d\x91\x42\x2a\xe7\x93\x57\xbf\xb3\xfa\x85\xc7\xc5\xf0\x1f\xe6\xf5\xc9\xbe\x1e\xb6\x53\x92\x93\xf5\xfc\x65\x5c\xa5\x4c\x3c\xba\x0e\x96\xc6\x11\x4e\xaf\x32\x69\x35\xeb\x5b\xd0\x79\x3d\x81\xf7\x44\x11\xa9\xc6\xdf\x41\x40\x62\x25\xa1\xb0\xea\xbb\xf4\xdc\xc7\x08\x72\xff\xd2\x1b\x57\x60\xba\xff\xdb\xf8\xe9\x1d\x50\x4f\x8c\x95\x14\x74\xfa\x57\x70\x49\x7c\xbc\x02\x80\x23\x62\x4c\xcd\x68\x99\xa2\xeb\x3c\xea\xe0\xbf\x70\xda\xf1\x79\x23\xc1\x91\xce\x15\x21\x56\xa7\xd4\x9e\xc8\xb3\x59\xca\xa8\x54\x27\x61\xe0\x8e\x27\x89\x2f\xbe\x69\x20\xed\x85\xb0\xf7\x9f\xe3\xbe\x6e\xad\x84\xb2\xd2\xf6\x1d\x43\xa9\x69\x25\x53\x37\xd7\xcd\x2e\x0c\x27\xf0\x7a\x63\x54\x10\x0a\xe1\xe7\xf4\xf1\x49\x31\x02\x43\x9b\x84\xaf\xf5\x48\x48\xa2\x14\xc9\xfe\x1f\x12\xce\x2a\x2a\xea\xf7\xeb\xe2\xdf\x19\xba\x07\x04\x06\x74\x90\x6e\x49\x05\x06\x90\x16\x91\xee\xee\x10\x41\x90\x54\x69\x18\xe9\x90\xee\x6e\x45\x5a\x42\x9a\xa1\x1b\xe9\xee\x46\xba\x7b\x98\x77\xfd\xfe\xef\xc5\x73\xf7\x5c\x9c\x75\xd6\x3e\xeb\xb3\xf6\xc5\xde\x6f\x38\x41\xaf\xd7\x3f\x3c\x22\x85\xff\xdc\x1f\xc6\x72\x02\x62\x9f\x1f\xe3\x01\x49\x15\x3d\x26\x71\x43\xf5\xac\x78\xea\xbf\xc4\xf7\x0c\x34\xd8\xe1\x0d\xd5\x89\x35\xc7\xf6\xac\x07\xca\xb3\xd0\x47\xf3\x69\xbf\xa2\x67\x0a\x74\x10\x5c\x96\xd4\x98\x3f\xed\xab\x5e\x47\xd0\xb3\x4c\x4c\x09\xcc\xc7\x23\xba\xe8\x5e\x9d\x13\xaf\xef\xfe\x38\x6d\xc7\xdb\xb6\x8d\xe8\x6a\x01\xe1\x74\xbe\x42\xc5\xd0\x68\xa5\x94\x75\x49\x2d\x8a\xc6\xea\xb4\xdf\x47\x5a\x5a\x06\x81\x36\xfb\x12\x35\xdb\xe8\xfa\x95\x04\xf0\xb7\x55\x77\xc8\x09\x36\x50\x83\x6f\x8b\x0c\xa1\xb3\x81\xbf\x6d\xf7\x72\xe7\xbe\x9a\xc5\xee\x24\x2b\x6f\x17\x9a\x70\x44\x29\xf2\xcb\xce\x4b\xcb\x0b\xff\x5a\xd8\xbc\x88\xa9\x18\xc9\x5d\xc5\xb5\xe1\x3e\x5a\x34\x55\x35\x2c\x19\x6d\x59\x2a\xa8\x7c\xc4\x02\xb7\xff\xee\xe1\x89\xf1\x3a\xc1\xbf\xa8\x52\x0d\x7e\x8c\x82\x3c\x94\xc1\x7e\x81\x21\xeb\x8f\xd7\x23\x41\x0e\x8d\xe8\x2f\x21\x5d\xdb\x9c\x03\xcc\xa9\x91\x1f\x0e\x91\xf4\x13\x1d\x06\xf3\x8d\x99\x33\x4b\x62\x36\x99\x17\xac\x16\x68\xf0\x37\xc9\xd1\x6f\xb8\xef\x81\xd5\x18\xec\xb8\x59\xcd\x7c\xea\x1f\x38\x74\xa5\xd7\x48\x4c\xe0\x2c\x81\xfe\x3d\x7f\xf0\x67\x3c\x67\xba\xce\x56\xc9\x10\xc4\xce\x97\xeb\xb1\xf8\xef\x97\xb8\x06\x5e\x6a\x04\xff\x21\x00\x97\x58\x32\xe1\x84\x98\x0d\x5b\xba\x8f\x36\xce\x9c\x0d\x30\x37\x41\x58\xdf\x66\x77\xc5\x34\x6a\x69\xa9\xee\x09\x8a\x0b\x1c\x44\xb8\x52\xbd\x08\x4b\x14\xd2\xbc\x5a\x3a\x0c\x6c\x21\x2a\xa3\x41\x07\xfe\x47\x28\x4c\x1f\xc9\x83\x44\xd4\x5a\xdf\x53\xd0\xe5\xec\x83\x9c\x86\x71\x29\x4f\x42\xe2\x0e\x73\xf0\x04\x6f\xf0\x12\x7a\x80\x63\xc9\x33\x8e\xef\xd8\x75\xb2\x7a\xdf\x54\xef\xbf\xb1\xe8\xe0\x2e\xc1\xa9\xe6\xb4\x43\x8f\xc9\x80\x64\x56\xf9\x80\x66\xea\xbc\xbb\x35\x5a\x73\xe8\xb0\x25\xe5\xdc\xe6\xe5\x9c\xc6\x1d\xf4\x3d\x2a\x22\xeb\xbf\x8f\xbc\x1d\x98\x32\x44\x38\xe6\xb0\xab\x8b\x7c\xca\xaa\xf6\x1f\xc4\x5c\xd3\xc8\xae\x98\x46\x23\x2d\xd5\x7f\xc4\xe2\x41\x3d\xa3\x77\x42\xcc\x3a\xb3\x4a\x73\xd7\xca\xa9\xda\x39\x5f\x2e\x0a\x76\xef\x58\x21\xb8\x3d\x49\x9d\xf8\x1d\xce\x10\x7f\xb1\xf2\x73\xba\x7d\x92\x24\xc1\xa8\x83\x2f\x54\x3a\xc4\x92\x7a\x18\x74\xa9\xbc\x05\x43\xc9\x89\x11\x64\x32\xec\x54\x2f\xb1\x10\x8c\x66\xcc\x91\x0e\xa5\xd6\xa5\xbd\xa3\x69\xb7\xc7\xb4\x62\xec\x7b\xff\xad\xba\x6f\x42\x76\xf5\xda\x20\x44\x82\x52\x9a\xd7\xa2\x25\xf3\x8e\x38\xb0\x2c\x1b\xc7\x77\x59\xa3\x03\x5e\x3c\xb3\xf6\x8e\x1c\x11\x1a\xf1\xec\xe0\x91\xb5\x50\x29\x4e\x21\x75\x93\x1a\xd3\xe6\x60\x11\x4d\x6c\xdd\xa3\xd2\xd1\x8a\xcc\xac\x74\xcb\x11\xb8\xa2\x85\x49\x92\xce\x87\x6b\xfc\xe7\x08\xe4\x03\x47\x8f\x6b\x41\xaa\x27\x6e\xf3\x69\x27\xdf\xf3\x20\x84\xfd\xca\xa2\x7d\x96\x83\x77\xe0\x91\xce\xe6\x26\xae\x19\x73\xf2\xf2\x76\x75\xfc\xf9\xca\x71\x64\xd2\x0d\xda\x42\xde\x78\x94\xa6\xca\xff\x66\xb4\x97\x9c\x96\x4a\xc6\xda\xcb\xce\x76\xff\x79\x0d\x01\x3a\x67\x1f\x39\x8c\x41\x07\xc1\xc5\xec\xcc\x0b\xb8\x5c\x90\x3f\xf9\x52\xed\x9f\x2f\x72\x17\x19\x08\x39\xa0\xbb\x09\x18\x11\x1d\x66\xc0\x35\x14\x3d\x76\xaa\x31\x0a\x31\x37\xc5\x40\xac\x05\x03\xf3\x3f\xd0\x5c\x09\x89\xae\xfc\xb2\x9a\xbc\xd6\x47\x7e\xe1\x0d\x9a\xa3\x4b\xbd\xaa\xfc\xd3\x1c\x35\x86\x8f\xed\xa7\xf1\x1d\x28\x1e\x08\xee\x5b\x7f\x6e\x7f\x5e\x05\xaa\x3b\xbf\x19\xd5\x94\x4b\x51\x0d\xe9\xca\x90\xcb\x60\x65\x5a\x42\x5f\x9e\x7a\x5f\xb4\x41\x27\x0b\xc9\xd7\x0c\xe9\x9b\xed\x74\xc7\x3c\xf3\xfe\x6f\xdf\x0c\xe7\x49\xb7\xfc\x3e\xe1\x21\x1a\x03\x2e\x7f\xa5\x7d\xf6\x85\xc9\xa1\x45\x02\x75\x85\x34\xae\x96\xd2\xa4\x5b\x36\x25\xd4\xff\xdb\xf4\xdb\x24\xa1\x15\xef\x27\xb7\x57\xdb\x0e\xcb\xfa\x78\x4f\xdf\x1a\x6c\xa8\x89\xc0\x1e\x57\xce\x1f\x93\x6e\x88\x8f\x6b\x51\x1d\x17\xbf\xaa\x0e\x49\xaa\xac\x57\x92\xcd\x0b\x77\xdb\x2f\x39\x80\x1c\x30\x62\x5b\xf4\x33\x10\x2a\xf0\x1c\x15\x82\x76\x9b\xec\x59\x33\x26\x41\x0b\xe0\x96\xd3\xd2\x4c\xdd\x75\x52\x7d\xc5\xcd\xf1\x68\xdf\xe1\x18\xf8\xbc\xc8\xf2\xa1\xa7\xf2\x21\x7a\xc6\xaa\xf1\xde\x6a\xc0\x1b\xf7\x70\xda\x4f\x6b\x46\x02\x80\x4c\x23\x25\xe9\xe0\x9e\x60\xff\x15\x2f\x42\x83\xa6\x76\x0c\xa9\xc0\x93\x8f\x90\x57\x0e\x7a\x5d\xa4\x35\x71\x62\xd1\x6d\x92\x2d\x20\x52\x3b\xe2\xf2\x88\x37\xb0\x9b\x37\x52\xca\x59\xcb\x13\x3b\x9a\x2c\xa9\xda\xc6\x19\x2c\x84\xb6\x29\x01\x6f\xf8\xf4\x92\xba\xc2\x05\x52\xb7\x23\x44\x86\x1d\x0b\x4a\x1f\x74\xc6\xcb\x1b\x52\xee\xaf\x7d\xd1\xed\x4f\xa3\x97\xeb\x37\x72\x83\x31\xa3\x14\x66\xbf\xee\x3d\xb2\x82\x10\xcd\x5a\x5a\xaa\x45\xdc\x59\x32\x72\xb3\x19\x45\xb4\xaf\x16\xd1\xaa\x4f\x33\xd1\xcd\x55\x12\x23\x97\xb4\x35\x8f\xfa\x1b\x23\x81\xab\x50\x5c\x4c\x39\x05\x1c\x47\xfb\x94\xad\x15\x16\x08\x73\x70\x9f\xb7\x7e\xd8\x70\x62\xa2\xd6\x7c\xc2\x78\x5a\x84\x25\x0c\x3e\x1b\x98\x9e\xd4\xa5\x24\x63\xfe\x56\xca\xb5\x64\xdf\xb6\xc4\x42\x7e\xa8\xc4\x13\xff\x89\x6f\x16\xff\x2a\x9e\x54\xf4\xb7\xfa\x2e\xaf\x8b\xcf\x35\xee\x80\x16\x94\xf3\x83\xeb\xdd\xc5\x2f\xb1\xc3\xc5\x04\x7a\xe3\xef\x73\x9b\x79\xd2\x63\xec\x43\x63\xe4\xeb\x39\xf9\x8d\xef\xa3\x01\x04\x3f\x26\x36\x8e\x89\x39\xd5\x00\xb1\x4a\xa9\x36\x85\xa7\x0f\xa7\xad\x29\xda\xa5\xfc\xca\x4c\xd4\x56\xd7\x68\x08\x95\x68\x56\x73\xea\x77\x97\x88\x48\xb2\x73\x4a\xa0\xff\x66\xee\x0e\x48\x3f\x01\x3e\x14\x9f\x09\x87\xe5\x6e\x92\x66\xa9\x9a\x3a\xf1\x56\x7c\x62\x3e\xc4\x21\x5e\xc3\x7e\xe3\x05\x3c\x38\x56\xfd\xe7\xe0\x57\xdf\xfd\xb3\x00\xe1\x60\xb5\xee\x54\x5d\x61\x9a\x5f\xd9\xab\x78\x09\x1a\xc6\x57\x14\x71\x8b\xb3\x6a\xd6\x84\xc2\x99\x20\x74\x14\x00\x02\x03\x0e\x73\x7e\x06\xd8\x87\x7b\xfc\x4d\x98\xcd\xac\x52\x70\xfc\x54\x78\x20\x1a\xfd\x63\x68\xb8\xb6\x46\x3b\xf8\x4e\x7c\x17\xea\xbf\xbc\x56\x17\x98\x2e\x87\x0c\x34\xc3\x59\x5b\x61\xb9\x00\x49\xea\x18\x95\x8a\x23\xa9\x4d\x1b\x2b\x9f\xdc\xeb\xcc\x33\xad\xc4\xb1\x8b\x2b\x52\x59\x91\xca\xe1\x65\x8f\x3a\x7e\x73\xe7\x51\xfd\x56\x02\xa8\x0c\xb5\xaf\x8c\x4c\x17\x44\x56\x0b\xa3\xb6\x4d\x16\x6f\xb7\x3e\x44\x24\x5e\x3f\xb7\x1a\x16\x0b\x6f\x48\x26\x3f\x7a\x65\x12\x72\x67\x52\xd1\xcd\xe8\xa2\xa5\xd0\x26\xb9\x41\xfc\x2d\xe2\xd8\xf8\x33\xf5\xde\x29\x29\x0d\x40\x06\xc4\x0c\x50\x8d\x77\xd0\x7a\xf3\x9d\xaf\xa8\xce\x6c\x0a\x41\x70\x3c\x46\x23\x8e\xa0\x30\x04\xf4\xf3\x75\xfb\x48\xf6\xd2\x3d\xf2\x15\x07\x70\xf5\xff\x04\x2c\x02\x10\x3f\xc9\xdd\x07\x24\xcf\xdf\x42\x8f\xfc\xa4\x90\x70\xa5\x07\xb5\x45\xbf\xde\x10\xc8\x1a\xed\x41\xc7\x1e\xd4\x3f\xae\x2b\x86\x5f\x57\x87\x2c\xf9\xcf\x3a\x74\x7b\xf0\xac\xc4\x39\xbd\x39\xaf\xfe\x86\x7a\x68\xec\xd5\x7a\x4e\xde\xdd\x31\x96\x58\x6d\xf3\x69\xf4\x20\xa9\x1e\xec\x14\xff\x7f\xf9\xe5\x0f\xa2\x78\x3b\x48\xef\x56\xbd\xdb\x4d\xe7\x1e\x8e\x9b\x40\x33\x35\x6a\x5c\x9d\x77\xce\x88\x9f\x4d\xaa\x32\x81\x7e\x7a\xcd\xa6\xd8\x80\xfe\x97\xdf\x77\x43\x51\xad\x27\x8b\x5f\x1f\x22\xed\xb5\x1f\x63\x15\xc6\x28\x86\xd4\x9e\xd2\x2c\xbf\xdb\x86\x7d\x53\x26\x5d\x29\x63\xff\x5f\x86\x91\x56\xc2\x84\xdb\x74\xa4\x77\x31\xdc\x10\x89\x6d\x6e\xb2\xde\x5a\x8e\x84\x46\x29\x80\x4e\x4c\xdd\x79\x7e\x33\x60\x7f\xc1\xa2\x43\x3d\x58\x3f\x04\xcd\x3c\x2f\x40\xfb\x2c\xb2\xec\xe0\xf8\xa8\xa0\x02\x19\x8e\x5e\x67\x55\xf9\xde\xd7\x41\x5d\xd1\x24\x86\x16\x0b\x40\x4c\x48\x23\x58\x0d\x1b\xc1\x31\x49\x01\xf8\xd1\x22\xac\x87\xe4\xec\xdb\xfc\x03\x5c\xb4\xc2\xa4\xd7\x97\x33\x60\x8d\xf5\xc8\x85\xb8\x07\x8d\x1f\xe4\x4d\x55\x59\x70\x3f\xee\x9f\x68\xa9\x0e\x86\x15\x46\x42\x2e\x7a\xe2\x79\x7a\x2c\xfa\x1d\xdc\x17\xe1\x37\x7f\x72\x2b\xdd\xea\xc8\xae\x56\xfc\x5a\xf5\x6e\xdd\x05\x2c\xb7\x8c\x87\x02\x94\xc7\x19\x58\x0b\x9e\x6f\xfb\x1e\x30\x3c\xa0\xe4\x23\x15\x7a\x62\xc8\x2a\xc4\x55\x5a\xdc\x39\x2a\x50\x0d\x47\xab\x15\x96\xc1\xfc\xaa\xf4\x37\x0b\x3c\x60\xf0\x60\xfb\x83\xba\xba\x1b\x1a\x69\xfa\x42\xeb\x71\x23\xf2\x76\xbe\x98\x8b\x0f\x69\xbf\x7b\x7f\xe7\xb5\xc5\x26\x0d\xa8\xcb\x43\x87\x85\x2c\x5a\x4b\x33\xe2\xd8\xff\x76\x50\xe1\xf9\x01\x80\x42\x7d\x43\x66\xcd\xf1\x02\x59\x89\x94\xdd\x9c\xa9\xd6\x82\x29\x00\x79\x56\x9a\x23\x94\x95\xf7\xcc\x70\x76\xa4\x69\xc9\x55\xfd\xe5\x6c\x37\x4a\xe4\xc7\xc5\xea\xa3\x83\x75\x13\x27\xf7\x74\xd6\xdc\x14\x94\xfb\x53\x0f\xf2\xa5\x71\x22\x5a\xaf\xf0\x86\x6c\x3d\xa7\x73\xe2\xb0\x1f\xd7\x79\x94\x29\x4a\x85\x49\xa9\xaa\x68\x61\x5e\xa8\x4a\xe0\xdf\x71\x6b\x46\x09\x4a\x95\xb6\x42\xeb\x68\x21\x90\xba\xf2\x98\xf8\x3a\xdb\x4e\xb1\xef\x22\xe7\xe8\x84\xbb\x63\xc5\xb4\x3f\xa7\x9c\x7c\xf2\x80\x53\x55\x63\x45\xff\x05\xbb\x84\xb6\xd1\x83\xb7\x04\x96\xdf\x39\x83\x93\x1a\x45\x78\x56\x6a\xb9\x82\xdf\x65\xe2\xd4\x26\xfb\x12\x3d\x7a\xc7\x8e\x75\xc0\x74\x3e\xf0\x36\x9e\x03\x55\x33\x14\x46\xcd\x64\xa5\xc6\x03\x5b\x7f\xbc\x26\xf0\x19\x21\xc8\xb1\x24\x3e\x85\xce\xc4\xaf\xfc\x4d\x19\x27\x48\xc9\xff\xed\x82\xd6\xa5\x68\xbc\x3d\x55\xb8\x4d\x66\x8e\x3c\x92\x5c\x5a\xbf\x2e\xf5\x75\xc4\x55\x2b\x22\x73\x3a\x9c\xaf\x35\xcf\x6e\x35\x7b\xe3\x71\x3e\x2c\x34\x36\x55\xa2\xfb\xdf\x6b\x62\xb6\x0f\x12\x93\xd8\xbd\x16\x11\x90\xb4\x5d\xcf\x1c\x99\x2a\xd1\x8d\xad\x77\xeb\x0d\xe0\xee\x58\x79\xf2\xc0\x01\x14\xe1\x77\xff\xae\x10\x53\x31\x6e\xad\xca\x72\x7f\x69\xd7\xe7\x57\xae\xe6\x4d\x39\x75\xbd\xeb\x4b\x6d\x85\x0b\x82\x0c\xa9\x1b\x7c\xe9\x77\x9d\x10\xb8\xed\xd2\x52\xe6\x20\xff\x52\xa7\xa6\x49\x75\x89\xce\x3a\xf6\x88\x00\x0e\x2e\x97\xf7\xd5\x6f\x4a\x02\xe9\x51\xa9\x4b\xb3\xeb\x33\xcf\x0b\xd1\x9f\x5b\xf3\x1e\x9e\x05\xad\x7f\x18\x05\xb6\xcc\x51\x4f\xe9\xb4\x73\x6f\x86\xb4\x94\x0d\x14\x66\xad\xec\x5e\xda\x1e\x37\x04\xd6\x31\x4b\x61\x53\x6f\xee\x38\x50\x75\x22\x0c\x12\xbe\xd5\xb0\x33\xaf\x53\xea\xf7\x34\x67\xa9\xf1\x73\x3b\x75\xd9\xd2\x6f\x8b\xff\xed\xce\x84\xd5\x08\x3d\xe2\xed\xdf\xf3\x94\xb2\x49\xb1\x19\x1b\x54\x7e\xdd\xd7\xa3\xbc\x6c\x52\x7f\xf3\xc5\x8e\x40\x3c\xaf\x72\x85\x26\xe8\xe8\xbd\x3f\xc6\x13\x96\x07\x8a\xff\xe5\x4f\xfd\x0e\xd5\xf7\xb6\x5c\x9b\xee\x4c\xbb\x61\x67\x22\xeb\xbc\xa3\x3e\x54\xae\xa1\xbd\x9f\xce\x5a\x5c\x85\x7d\xf8\x1c\xe2\xd1\xa7\x2d\x9a\x85\xd9\x15\x3f\xcb\x60\x81\x6c\x59\x6a\x42\x59\xaf\x89\xd7\xf1\x76\x7f\x5c\xd8\x70\x62\x7d\x39\x4a\x64\xed\xa7\x55\xd5\xdd\x42\xd2\x11\xbe\x5f\x0d\x6d\x1e\x09\x0d\xa0\xac\xee\xaf\xcb\x9a\x1b\xb3\x4c\x69\x47\x9f\x26\xef\x10\x1c\xab\x0f\x75\x36\x7f\x59\xfe\x70\x92\x63\x27\x01\x91\xa3\x00\x87\x7e\x17\x1b\x4e\x4e\xd4\x9f\xea\x76\x0d\x25\xd1\xba\xdf\x13\x25\x0f\x68\xc9\xac\xa4\xd5\x23\xab\x68\x6f\x5d\xbd\x76\x43\x9d\x5f\xa3\xfe\x3b\xe5\x67\x62\x7f\xcc\x0e\xa7\x23\xb9\xc6\x5d\x42\xbe\xd2\x13\x43\xb8\x0f\x3a\x45\x12\xbe\xa4\xe9\xf3\x55\x75\x2a\x63\xd2\xb4\x54\x64\x51\x94\x02\x88\xb4\x9a\x77\x67\xb5\x38\xff\x1c\x33\xe6\x27\xd0\x0a\x6e\x27\x9c\x01\x4e\x7e\x72\x92\x5a\x50\x53\x13\x8e\x5f\x7e\xe7\x53\xbd\xec\x0f\xd3\x73\x1d\x2b\xc7\x3d\x99\xcd\xc7\x3b\xed\xbe\x60\xb1\x25\x53\xfa\xf7\x51\xcb\xf3\x28\x85\x68\x41\x53\x9d\x1f\xa6\x3e\x71\x77\x9d\xf6\xda\x8f\xa7\xea\xf8\x7e\x2b\x61\xfd\x8d\x32\x26\xc2\x2d\x3f\x75\x91\x55\x0a\x11\xb4\x19\x2f\x96\x02\xaf\x46\x72\xeb\xb6\xbf\xe9\x44\x13\x29\xed\x0a\x1a\xa5\xa8\x7f\xf2\x6b\x39\x52\xf8\xfd\xa1\xce\x32\x19\xaa\xb8\xf7\xcc\x52\x07\xdc\x47\x94\x7a\xe8\xd3\xaa\x87\x7a\x2f\xbe\x6d\x0f\xf6\xc7\x07\x26\x25\xeb\xd1\x58\x62\xab\x0d\xb7\xcf\x4c\xaf\xc6\x03\x99\xf5\xaa\x26\xe3\x6a\x69\x5c\xfa\x48\x57\xae\xd1\x3e\x86\xd5\xf1\x31\x8c\x1c\x56\xc0\xe3\x0e\xc3\x6b\x5e\x91\x37\xf5\x6d\x01\x49\x48\x16\x4d\x72\xbf\x43\xa9\xbb\x92\x0f\xae\xbf\x91\x61\xc2\x37\x53\xa0\x26\xa4\x0c\x3d\xec\xfd\x67\x9c\x0a\x26\xae\xaa\xea\xc4\xcf\x82\x5c\x61\x58\x21\x85\xb5\xa4\x5f\xb2\xbf\xe8\xb9\x4d\x1c\x92\x00\x9e\x1d\x0c\xbf\x1c\x97\x47\x1e\x8e\x2c\xe4\x51\x8a\xa9\xb9\xcc\x54\x1a\xcb\xd4\x60\x3a\x7e\x99\x73\xbc\x74\x88\x8c\xf5\xf5\xd5\xba\x0a\x51\x5e\x22\xb0\x6c\x7b\xa8\xda\xa9\xfe\x6a\x09\x8f\x13\xcb\xde\xc1\xcc\x56\xc6\x80\x01\xc6\x1c\xb5\xfa\xfa\x0e\x5b\xae\xad\x84\x63\x69\x51\x19\xde\x04\x93\x1a\x61\xa6\xf1\xdf\x50\x26\x39\xd4\x95\xb1\x8b\x37\x47\x0e\x17\xcf\x58\x4c\xae\x24\x4d\xda\x29\x3f\xc5\x40\x50\x59\x43\x58\xb9\x55\xdf\x09\xaa\x0e\xb0\xa8\xf6\xb3\xa8\x92\x26\xb3\xf2\x06\xc0\x2f\xa6\x3b\x6a\x34\x15\x67\x2a\xff\x3a\xb1\x59\xf8\xf8\xaf\x8d\x0d\x63\x95\x9b\xea\xab\xbe\x76\xe5\xa8\x40\xe9\xb9\x9e\x28\xf2\x76\x6d\xda\x4d\x75\x43\x75\xf0\xe7\x91\x9e\x97\xce\x67\x14\xc3\xdd\xce\xb3\x48\x1c\x31\xd9\xcb\x9c\x4f\xae\xa2\x4f\x33\x79\xca\x59\xb9\x79\x92\x26\xb3\xd9\xc8\x33\xa9\xb6\x1b\x41\x00\xaf\xdc\x69\x0d\x3d\x6a\x75\xc0\x73\x3d\x64\x42\x40\xf8\x49\xd5\x57\x97\xb6\x5a\xda\x94\x6f\xf5\xde\x0c\x46\xe9\x9f\xe8\x11\x29\xca\x17\x81\xb2\x49\x78\xcf\x2a\x1e\xd1\x30\xf8\x70\xef\x22\x6b\xb0\x52\xc9\xe8\xde\x63\xf4\xde\x3d\x09\xd0\xa1\xed\x69\x24\xbc\x0a\xc4\xf1\xee\x23\xb7\x62\xeb\x8d\xc2\x29\x6c\x94\x4a\x2a\x13\x2c\x4e\x6a\xac\xce\xc9\x9d\xdd\xb1\x35\x9f\xcb\x11\x6a\x75\x49\xc9\x66\x70\x86\x06\x74\x80\xa8\xe8\xac\x5c\x09\x29\xe5\xcc\x5c\x09\xb1\x13\xd5\x52\x07\x8a\x56\x8b\x8a\xac\xba\x9d\xfa\xdf\xc5\xc7\xc5\x76\xb1\xd4\x7c\xfd\x78\xce\x59\x25\x55\x28\x38\x3b\x57\x35\xf7\x77\xca\xb0\xa2\x7e\x26\x3a\x0b\x17\xea\x3e\x7a\x59\x91\xb9\x3c\x41\x99\xb5\x14\x85\x52\xef\x60\x70\x84\xe5\x2e\x48\xe0\x17\x08\xdf\x04\x69\x7a\x1c\xf6\x3e\x6b\xba\xba\x4b\x76\xad\xc5\x21\x3f\xaf\xbc\x6a\x8f\x0d\xd6\x22\x09\xf3\xc3\x07\x8a\x5c\x29\xde\xdf\x29\xa9\xa0\xc5\xa6\xba\xa1\x66\x6f\x44\xfe\x2a\x10\x0e\xff\xd5\xda\xa2\x35\x59\xfc\xbe\xe2\xbd\x6f\xbf\x86\x61\x73\x1c\x81\xa0\x17\x21\xbf\xbe\x40\xa3\x11\x33\xd0\x3f\xfd\x02\x65\x19\x73\xc5\x19\x53\x34\xfc\xd1\xbd\x45\xb7\x24\x00\x42\xa6\xfe\x77\x66\x25\x6d\x13\xbc\xe6\xd0\xd1\xa9\x1a\x13\xf2\x1c\x61\xa9\x18\xd2\xba\x2f\x56\x67\xc6\xcc\x9d\xfc\x44\x38\x4d\xe5\x60\x4c\xb6\xb6\x47\xc7\x2a\x3e\x9b\x85\xdb\xf4\x6d\x82\x2a\x23\xb6\x7e\x17\x7d\x24\x5c\xf5\x15\x59\xbd\x55\xd1\xce\x44\x1f\x51\x1d\xf7\xce\xa5\xd7\x38\x08\x93\x1b\xa7\x12\x44\x1f\x60\xc9\xe6\x8a\x89\x15\x65\x1e\x4d\x5a\x73\xc8\xb1\x1b\x56\xb6\x16\x62\x4d\x56\x41\xb1\x53\xc0\xf5\x32\x8c\x68\x77\x71\x70\x71\xa5\xb7\x45\x99\x14\xd2\xef\x2f\xc3\x78\xb0\xfc\xd1\x00\x2d\x1f\xc1\xc4\xe3\xc8\xb4\x9c\xc2\xbf\xb9\xd2\x09\xeb\x0e\xf1\xa9\x8a\x7c\xc2\xe2\x1c\xe1\x7d\xb8\xae\x73\xe0\x55\x42\xbd\x8f\xd6\x1f\x37\xf2\x23\xfb\x92\x02\x1e\x55\x0a\x17\x95\xac\x0d\xb8\x1a\x37\x58\x2f\x61\x8f\x68\x8e\x12\xfe\x9e\xd0\xfe\xab\xf1\x26\x75\x2b\xef\xae\xc7\x5b\xbf\x01\x99\x58\x93\x7f\xc7\xe0\x6e\x8c\x71\x9f\x06\x81\xbf\xc3\xa2\xe3\xa0\xcf\xbf\xdd\x1e\xd2\xd9\xf4\x08\xca\xb3\xa5\xaa\xe2\xdc\x46\x38\x69\x5a\x37\x1c\x06\xb6\xf4\xd3\xd7\xe4\x6b\x16\xe0\x48\x3a\x79\xef\x8e\xbb\x89\x0d\x1c\xae\x7c\x1f\x63\xc4\x76\xf1\x1c\xcc\x54\x71\x6c\x82\xd6\xe0\x7b\x65\xc1\x1f\x5e\x7f\xbd\x95\x1f\x32\x23\xe6\xcb\x92\x85\xad\x8f\x6e\xec\xd4\x79\x30\x2c\x7a\xfd\x45\xdd\x4e\xc1\x20\x75\x14\x18\x0a\x06\xa9\x87\x2c\xae\x95\xb1\xc6\x5f\x9e\x8b\x3c\x6d\xd4\x56\x8c\x1f\x39\x57\x3c\x63\x64\x0c\xb2\x1b\x9d\x5f\xe8\x38\xfe\xf7\xd1\x41\x69\x74\x7e\x02\x26\xc9\x06\x96\x7b\x5b\x81\xe7\xc4\x7a\x3e\x3f\xe0\xad\x7f\x9b\xab\x34\xd6\x51\x39\x32\x47\xb2\xc6\xc6\x67\xa8\xed\x7b\x7c\x3b\x7c\xf3\xe1\x38\x93\xc3\x67\x08\x42\xb2\xfc\x21\xab\x03\x0f\x52\xf4\x0e\xaf\x54\xf4\xd5\xf1\xda\x50\xd6\x9f\x7a\x2d\x2d\x3f\x3a\xcd\x66\xf8\x41\x2d\x76\x3b\xec\xe2\x3b\xbd\xcf\xc6\x43\xf9\xe3\xb2\xce\x38\xb7\xa4\x1d\x0f\x35\x7a\xbe\xf7\x2f\x06\x30\x6a\x8e\xe9\xd4\x13\x03\xb5\x0a\xd6\x90\x73\x22\xf6\x09\xc0\x90\x94\xff\x32\x13\x91\x66\x78\xd2\x8d\x16\xd5\x47\x03\x74\x82\x6d\x1b\x6f\x92\x6d\xed\x68\x36\x50\xbf\x19\x94\xad\x74\x33\xcf\x7f\x93\x79\xc9\x0b\xce\x0d\x76\x05\x11\x84\x9e\x62\x75\xd1\x81\x02\x6e\x9b\x19\x56\x73\x18\x88\xab\x03\x4f\xf5\x01\x77\x15\x97\x7a\xe6\xf4\x98\x99\xc1\x03\x79\xcf\x05\x54\x47\xf8\x5a\xf4\xc0\xcb\x4d\x4f\x5f\xf9\x65\x27\x8a\xcd\xe3\x55\xca\x0b\x62\xcc\xfb\x46\x8c\xd0\xca\x36\x75\x32\x2d\x7e\xc3\x40\xb3\x0e\x86\xfe\x97\xc2\xa8\xa9\x94\x80\x0a\xc2\xfb\x37\x9d\x7f\x8d\xbf\x9c\xce\x55\x0b\xa3\xe4\xdc\xac\xed\x48\xbe\x6e\xa8\x24\xa8\x6f\xe9\xc2\x03\xec\xae\x9f\x2f\x78\xfe\xcd\xe8\xff\x97\xfc\x19\xc7\x14\x36\xa5\x73\x5e\x1c\x31\xc2\x0d\x9d\xaa\x18\x4e\x4c\x14\x5d\x90\x17\xb5\xd1\xb2\xc0\x55\x47\xdc\x49\xad\x08\x25\x10\x27\xa9\x0e\xf6\xb0\x6a\x16\x30\x71\x55\xbd\x9b\xb5\xa9\xcf\xf5\x0c\x32\x3f\xda\x5c\x3f\x7a\x62\xb8\x6e\x02\x2d\x51\xc9\x44\x77\x05\xbb\x7d\xdf\x35\x9f\x4f\x5b\xe9\x5e\x19\xf7\x17\xf8\x2d\x37\x31\xa1\x9a\xc1\xf9\x9b\x01\x55\x6e\x75\x5a\x61\xd6\x93\x4c\x1a\xf0\x8a\x30\x5f\x17\x07\x87\xc8\x55\x0f\xb3\x07\x5a\x39\x68\x1a\xa3\x7c\x15\xa0\x17\xbb\x9c\x6e\xe0\xb6\xc2\x3d\x1c\xb7\xb2\xa9\xc2\x41\x02\xa3\x48\x1d\xf5\x3c\xc6\x69\x01\x4b\x45\xb7\xc5\xaa\x08\x8b\xaa\x7c\x4e\x71\x5d\x59\xc7\x36\xe5\x2e\x26\x70\xa5\xd8\x6a\xb2\x7a\xc3\x59\x0e\xc1\x61\x7e\x1f\x57\x91\xd5\xff\x0f\x5d\x09\x75\x55\x24\x3c\xad\xcc\xfd\x98\x19\x88\x34\x6d\x5f\x3e\x76\x79\xa7\x6e\xdf\xc8\x81\xa4\xe3\x7b\x25\x76\x20\xf0\xf6\x9b\x70\x11\x5e\xc4\x6b\x09\xdd\x58\xe8\x9f\xf8\xaf\xad\xce\x47\x52\xcc\x39\xc7\x1e\x82\x72\x5b\x20\x9b\x6a\x6f\xfe\xe0\x84\xc9\x4f\xaf\x43\xe6\xdc\x05\x80\x2a\x3c\x9e\x63\xa6\x03\xed\x10\x27\x82\x0e\x21\x64\xce\x2a\xf4\xd9\x32\x5f\x4e\x27\xcb\x81\xbe\x85\xb9\x4f\xdf\xd6\x66\x79\x7a\xa6\xef\x7a\x33\x8c\xf3\xf7\x4a\xec\x0b\x5f\x0a\xbe\xd6\xc9\x10\xca\x52\x14\x98\x9e\x58\x24\xaf\xd2\x9f\xdd\x94\x89\xbb\x25\x6f\x72\x96\x64\x7c\xe1\x62\xa6\x90\xfa\x6c\x70\x51\xfe\x36\xab\xcc\xd2\x8f\x96\xf0\xb8\x7a\xd5\x03\xfc\xf0\x1c\x04\x90\x92\x51\xbd\x52\x3f\xf4\xa5\x18\x6e\xff\x3d\xe1\x35\x9f\x98\x12\xc9\xd3\x6e\xb3\x68\x98\xbb\xc3\xa3\xf9\x0a\x69\xa4\x65\x7a\xe7\x5e\xe8\x1d\x4f\x8f\xeb\x99\xde\x21\x0d\x52\xdf\xf2\x1b\xc6\x6c\x9b\xf0\xba\xd3\x18\x67\x18\x21\x0d\xb6\xe8\x34\x31\x63\x7d\x05\xcd\xce\x28\xef\x67\x05\x56\x9f\x1f\xe8\xae\x04\x6a\x4b\x7f\x2f\xc7\x69\x93\xd3\x8b\x27\x73\xe4\xd3\xf8\xc3\xa2\xca\x4e\xfe\x61\x2c\xd4\xca\xf2\x2a\x9c\x7e\xc2\x48\xca\xed\x5a\xba\x46\x53\xfd\xd1\x4d\x29\xec\xdd\x1b\x7c\x2e\xaf\xa0\x9e\x1f\x05\xda\x7a\x16\x57\xb1\x3e\xc2\x0d\x8a\xe8\x77\x55\x37\xfb\xa1\xa7\x1e\x5d\xf7\xf3\xbe\xb5\x2b\x90\x2e\x33\x05\x8b\x07\x0e\xe7\x7f\xd5\xe1\xed\xad\xd9\x43\x63\xc8\x05\xc3\x24\x34\x3d\xf2\x45\x99\x06\x9e\x47\x7e\x25\x5f\x8d\x2f\x0b\x60\xd0\x02\x62\x60\xe2\xa5\xea\x48\x43\xbb\x5f\x67\xe4\x35\xc2\xb3\xca\xfa\x47\xa2\x8b\x2f\x91\x48\xdc\x02\x6b\xc2\x7f\x85\xb7\x55\x67\x24\x76\xb6\x83\xcf\x52\x36\x96\x74\xa5\xe8\x67\xb9\x40\x6a\x60\xc0\xe3\x57\x51\x96\xb6\x71\x33\x61\xfe\xfd\x1c\x18\x00\xc2\xd6\xff\xfd\x4a\xf3\x16\xfc\xa4\x30\x13\x9e\x66\x27\x59\x0f\x5e\x2d\xab\xe3\xc9\xce\x94\xc2\x5b\x29\xaf\xfd\x8b\x17\x61\x65\x15\x3e\x8e\x71\x87\xc6\x79\xab\x6d\x2e\x4a\x11\x94\x44\xbf\x78\xc9\x33\x80\x8e\xa2\x16\xb3\xa6\x17\xfa\x60\xfa\x4e\x50\xf5\xaf\x78\xcd\x48\x76\xb3\xc3\x63\xc9\x50\xe3\x3d\x32\x99\xe8\x8a\x35\xe5\xec\x49\x24\xe1\x63\xec\x72\xce\x53\xb3\x2e\x7a\x59\x98\xaf\x2c\xcf\x04\x32\x15\xf9\x01\x75\xac\x62\x22\xe4\x17\xb3\x58\xe8\x1a\x2a\x45\x78\x75\x8f\xf7\x79\x8f\x96\x37\x26\x6d\x7b\xe3\x5d\x48\x65\xfc\x0a\x7e\x52\xb5\x80\xf0\xb3\xea\xfe\x5b\x75\xa1\x7a\x08\x4e\x9e\xe8\xcd\xe2\x3f\xb1\xc3\xd7\x07\x33\x5d\xf7\x58\xe6\x6a\x54\x7f\x1e\x84\x6b\x84\x40\x1a\xeb\x82\xfa\x4c\xde\x35\x14\xb4\x00\x30\x24\x25\x6f\xb0\xe9\xdd\x13\xc3\x3f\x7a\x04\xb2\x31\x74\x93\x10\x97\x90\x9b\xc2\x2d\x2a\xc3\x91\xec\x60\xd1\x1c\xaf\xef\x46\x93\xba\x29\xa6\x35\xd9\x2a\x0e\x05\x36\xae\x1e\x27\xa0\x78\x52\x9c\x88\xe9\x1e\x04\x80\xd1\x0d\x0f\x91\xea\xb3\xa0\xdb\x96\x86\xfb\x2b\x74\x4e\xf2\x2e\x92\x99\x1b\x09\x7f\xeb\x2f\x81\xfb\x96\x90\xbf\xaa\x1b\x99\xb9\xf8\x05\x1d\xb2\x95\xbe\xed\x57\xed\x34\xd3\xf8\x42\xf8\x35\x5e\x99\x72\x90\x88\x83\x95\x34\xde\xee\xb3\x58\xae\x19\xe6\xe0\xc9\x86\xf0\xe6\x82\x46\x1b\x8f\x59\xd6\xb9\x41\x11\xa6\xe0\xf1\x09\xed\x39\x4d\xc0\xca\xe6\x50\x67\x4e\xf1\x8b\xf2\xc4\x3e\x8b\x66\x41\x31\xf7\x80\x60\xb3\x1d\x63\xf4\xfa\x7a\x43\xbd\xec\x78\xeb\x17\x39\x65\xc2\x03\x02\x1f\x6d\xc0\x53\x19\xe8\x82\x15\xd4\xcb\x5a\xf7\x70\x81\x62\x2c\x78\xcf\xf9\x3e\x4c\xd0\x2f\x2a\x22\xf0\xa7\xe5\x70\xc4\x00\x69\xd2\x14\xb5\xc6\x1a\xa3\x4b\xd5\xe6\x49\x48\xc0\xec\x45\xb1\xab\xe7\x6d\xd2\x65\xfc\x24\x31\xca\x74\x90\x12\x2d\xb8\x1e\x13\x78\x4a\xfe\x20\xc5\xa4\x64\xae\x5f\x56\x95\x6d\xa5\x9b\xe9\x87\x7c\x08\xba\xcd\xd4\x8b\x55\x91\x69\x19\x34\x53\xc3\xc3\xb5\xe3\x7b\x91\x80\xf8\xf9\x53\x13\x2f\x27\x10\xce\x36\xa1\x7d\xab\xd4\x89\xff\xfc\xd6\x2e\x12\xde\xd7\x28\x43\x29\x80\x63\x37\x7a\x24\x8b\x6f\xa7\x48\x04\xa1\xb7\xd3\x82\xda\xf1\x77\x53\x0f\x8d\xe9\xb1\x01\x81\x32\x46\x65\x6e\x6f\x08\xed\x26\x68\x6a\xaf\x64\x5e\x92\x93\x20\x8e\x20\xca\x6e\xa7\xaf\xd6\x36\xa6\x40\xa3\x09\x7a\xb9\x45\x63\x62\x50\xd7\x8a\x19\x64\xe5\x63\x34\xbd\xb1\x48\xb4\x47\x07\x72\xd9\x75\x69\xbd\xbf\x7b\x61\x7a\xd0\xf5\xfa\x10\x39\xa6\x78\x51\xc1\xb7\xf5\xc1\xac\x6b\xa9\x32\x04\xe4\x3c\xfa\x3e\x02\x19\x3b\x9f\x8b\xf6\xbd\xfd\x71\xf9\x61\x4e\x60\x87\xa9\xb8\x8e\x36\xea\x0c\x13\x97\x39\x07\x1d\x18\x04\x30\x0d\xc5\x96\x6a\x64\xc8\x5a\xf2\x3b\xd0\x80\x18\x8a\x23\xac\xbf\x84\x74\xe5\xd4\x72\x39\x24\xdc\x4b\x0c\x10\xd0\x31\xdb\x93\xc5\x53\x29\x44\x0d\x56\x0a\x77\xa8\x19\xfd\xe8\x43\x1e\x15\x55\xca\x99\x8a\xf3\x04\x0c\x81\x42\x2f\x00\x2b\x42\xf6\x5f\x22\x70\x51\x6e\xc7\xf0\x90\xdc\xd1\xa5\xb8\x6d\xca\x5c\xd7\x2b\x64\x28\x5a\x95\xb7\xe5\x0f\x0d\x16\x60\x5c\x56\x35\xb4\x9e\x3c\xfd\x6c\xee\xcb\x0e\x52\xd7\xee\x20\x9b\x0e\x3b\xd5\x3c\x1b\x8d\x68\xef\xda\xda\xb1\x94\xbd\xdb\x5e\xf4\xb9\xaf\xb0\xa6\x9d\x1b\x79\x95\x00\x10\x05\x92\x8d\xba\x79\x9e\xd4\x5b\x00\x74\xb8\x92\x1d\x84\xff\x2c\x5d\x9d\x85\xcd\x86\xd4\x95\x8a\x75\x43\x83\xf0\xd0\xab\xa4\x1e\x44\xe4\x50\x3b\x77\xa5\x45\x34\x00\xa4\x30\xa6\x3a\x15\x58\x2c\x3b\x2f\xa1\xee\xd1\xd8\x95\xc1\x2a\x34\x00\x1f\x10\x93\xc0\x5e\xa8\x1d\xfe\xf3\xae\x25\x45\xaa\x03\xe4\x2e\x9b\xbb\xf0\x63\xc8\xdf\x78\xac\x63\x11\xed\x8f\x57\x10\x70\x72\x9d\x7c\xf5\x0b\xc8\xf9\xf7\x5e\xb0\xf6\xa2\xf0\x52\xf4\xdf\xa7\xeb\x15\x79\x4a\xb4\xc8\x77\x1b\x8c\x38\x29\x04\x95\xd5\x14\xc7\x7d\xfc\xbf\xde\xbf\xff\x89\x5f\x2c\xda\xf8\x88\x1d\xf4\xb8\x29\x99\x8b\x49\x18\x2c\xa8\x48\xe5\x1c\xd3\xb7\x9b\x90\x74\xf5\x07\x97\x98\x7f\x7b\xec\x5a\x9e\x64\xbf\x07\x40\xb0\x6f\xb7\xf5\xda\xa8\x5a\x87\x6a\x86\x0b\x1f\x3b\x0f\xab\x0e\xd3\x19\xc7\xc6\xf6\x53\xe3\x45\x14\x30\x89\xdc\xe9\xa7\xfa\x52\x6d\x7f\x95\x72\x13\x52\x0e\xa3\x1e\x35\xbe\x21\x90\x35\xeb\xd8\x65\x78\x30\xf4\x8c\xea\x25\xf8\x6c\x7d\xaa\xb8\x7f\xfd\x44\xf8\xce\x31\xac\x93\xa7\x93\xea\x53\x33\x0a\xec\xfc\x8e\x0d\xfb\xbe\xe5\x20\xed\x7e\x86\xe0\xfa\x20\x39\xb4\xf3\x09\xdd\x6b\x50\x00\x8b\x16\xee\x00\x39\x67\xa4\x2f\xa7\xa5\xab\xb1\x30\x58\x81\x8f\xe4\x69\x4c\xe6\x0b\xf4\xaa\x2b\x26\xd0\x97\x90\xa2\xc8\xe7\xd6\x23\x8b\x57\x89\xc7\xa3\x4d\x6e\xf0\xbe\xe8\x53\x26\x86\xc7\x31\xf6\x14\x4e\x8e\x25\xc1\xa4\x7b\x0b\xd8\xac\x94\x1c\xc0\x39\x37\x90\x77\x75\x15\x34\x7f\xc4\x96\xcc\xbb\x46\xf3\xe5\x84\xa4\xf8\xb9\x0e\x15\xeb\x58\xa7\x06\x2d\x4c\xd3\xf6\x44\x1c\xfc\x9c\xdd\x62\x35\xff\x2e\xb8\xe4\x1b\x00\xb7\x09\xef\x6f\x15\xaa\x3d\xb2\x01\x4e\x68\x05\x47\x38\xb3\xf9\xc9\x3c\x84\xe7\xe7\x3f\x10\x10\xbf\x29\xe0\xcc\xa0\x8f\x82\x3f\xcd\xb7\x8b\x40\x08\x07\x3e\x53\xf1\xe1\x58\x35\x7f\xb1\xb6\xbd\x53\x5b\xac\xd6\xcb\x52\x3a\x40\xaa\xd6\x25\x27\x71\xdd\x13\xa7\xd7\x5a\x3a\x66\xe0\x44\xf3\xad\xb7\x75\xac\x8e\x60\xdc\x9c\x57\x26\x02\x47\xf2\xc7\xbb\xa8\x39\x77\xcf\x45\x05\xe0\x53\x18\x45\x09\x3e\xa7\x33\x79\x1a\xea\x98\x36\x76\xfe\x4d\x17\xba\x37\x3b\x40\xe9\x99\x26\x61\x92\x41\xe3\x27\x14\xaf\x8e\x15\x7a\xbd\x9e\x00\xcd\x02\x23\x9f\x5b\xaf\x78\x2f\xb8\xe8\x27\x76\xdf\xe7\xf1\x77\x86\x93\x0e\x7e\xde\x52\xb8\x28\xef\x0e\x22\x7e\x23\x57\x57\x2f\x03\x77\xc5\x7d\xd9\xd3\x8d\xbf\xdd\x96\xca\x3e\x26\xad\x9c\x7b\x94\x6b\x9a\x77\x6a\x33\x30\xf4\xab\xd8\x3e\xda\xc2\x81\xd8\xcb\xb8\xc5\xac\xaf\xd4\x4c\x61\x92\xb8\x9c\xf1\x64\x56\x08\x9b\x06\x7c\xf2\x18\xfd\xe3\xde\xd4\x2d\xf4\x47\xc3\x86\x66\xd2\x9a\xb9\x7c\xa9\x96\xa6\x0d\xd6\xfc\xcf\xdc\xb0\x31\x64\x6f\x48\x65\x3d\x12\x0c\x3c\x75\x76\xb7\x38\x55\xdc\x6f\x3a\x7d\x8d\x62\x77\xbe\x65\x87\x74\xf8\xd1\x12\x87\xdb\x57\x39\x5a\x67\xc3\xd1\x1f\x3d\xa7\x84\x43\xf4\xac\xc2\x72\x70\xb1\x08\x81\x28\xb8\x90\x95\x0e\xe6\xea\xc5\x3f\xd3\x4f\x27\xbc\x98\x0e\xb2\x85\xc2\x21\xb0\x3d\xef\x00\x73\xbd\x56\xa8\xab\x20\xac\x83\xa3\xd3\x44\x77\xe6\x89\xdc\xea\x34\x79\xa3\xae\x66\x0a\xd6\xe1\xf3\xad\x6f\x7d\x89\x52\xcc\xa0\xb7\xc1\xc0\xba\x60\x14\x3b\xf9\xcf\x9e\x76\x9a\x8d\xde\x18\xfd\xe5\xbd\xe7\x68\xa8\x42\x1b\xe6\x98\x65\x19\x12\x1b\xb8\x5b\xff\xb4\xbf\xdf\x0f\x43\x11\xac\x9f\x9c\xf3\x7e\x7b\xef\xab\xaa\xc8\x08\x3b\x59\x4a\x95\xbb\xca\xfe\xf9\x75\x91\x39\x54\x05\x9f\x3c\xd2\xff\x8e\xe0\x27\xae\x9e\x94\x9b\x1b\x1b\xf6\xfd\x3f\x53\x87\x13\xde\xa1\xc3\xb8\xb7\xae\xa3\xf7\x59\x4f\xff\xa0\x05\xc5\xaa\xd3\xe5\xbd\x26\x62\xe6\x8e\x2a\x67\xa6\x88\xa0\xae\xf9\x05\x0d\x4d\x3f\xba\x5e\xc0\xf3\x2a\xcf\xd4\x87\xc0\xb8\x57\xc0\xe8\x7b\x91\xe7\x44\xec\xaf\xa9\xc0\x06\x9a\x7a\x7f\x63\x52\x41\x65\x1d\x2b\xe9\x9e\x2c\x71\x68\x96\xef\xcf\xed\x50\xda\xc0\xa8\x35\xed\x3c\x54\x43\xf4\xa2\x37\xae\x33\xdb\xf1\xc1\x08\x02\xb6\x88\x51\xb3\x3b\x70\xfb\x40\x3b\xbf\x60\x0d\x46\xaf\x94\xc2\xaf\x1c\x27\x1f\xf3\x2b\x30\x54\xb1\xdb\xcd\x29\xe2\x41\x41\x58\x9d\xd8\x31\x02\x24\xc1\xf0\x05\xf9\xd9\x05\x41\x73\xac\xd4\x38\xcc\xef\x37\xcb\xfb\x16\x26\x0b\x11\xc2\xc2\x36\x24\x15\x57\xfc\x56\xc3\xf7\x3e\x8e\x7e\x3f\x0c\xe5\xbd\x2a\x4a\xc7\x23\xbf\xd3\x1b\xd3\x31\xbe\xf6\x2e\xff\x31\x7a\xb8\x54\x5f\x2d\xcf\x77\x3c\x69\xd2\x5a\x71\xad\x8a\xa4\x40\x54\x16\x60\x1d\x78\x75\x15\x47\x7c\x09\x8b\xd2\x7d\xc8\xa6\x77\xd0\x26\x77\x1b\x29\xb6\xb3\xce\x6c\x44\xe3\xb1\x44\xab\x5c\x3e\x1a\xf0\xcb\xed\x54\xdb\x1d\xd1\x0e\x52\x7a\x5d\xc2\x13\xef\x68\x28\xbb\xcc\x14\x78\x7e\x4b\x18\xd5\xdb\x49\x78\x5c\xe4\x5d\x65\xe7\x7e\x89\x27\x21\x28\x8c\xec\xa2\x5a\x23\x06\x23\xa1\xe6\x03\xf9\x26\x3f\x47\xf6\xf1\xf1\xf1\xb1\x81\xef\x8c\x39\xa2\x78\x1f\x2a\x72\x9a\x48\x2c\x05\xf5\xdf\x32\x96\x02\x4e\x80\xc3\x13\x13\x8e\x5d\x07\xd2\x3c\x2c\x33\x35\x52\x49\x88\xde\xcb\x1b\x72\x40\xd1\x62\x5b\xa5\xc3\xb7\x5e\x4d\xc3\x84\x5a\x1b\x0b\x81\x71\xe2\x7f\x24\xbe\x28\x0f\x6f\x1a\x35\x0c\xf3\x30\x3d\x4a\x67\xbc\x06\x6c\x88\xa3\xa2\x0d\xc1\x39\x32\xee\xb5\xc5\x95\x71\x15\x18\x66\xbd\xdb\x12\x00\x03\xc8\x29\xe3\x5f\xee\x32\x72\x6e\xcb\xf1\x2a\x17\xe5\x53\x3b\xe0\x8b\xc3\xf7\x8e\xf0\xbe\xb9\x17\xf3\x8d\x91\x2f\xff\xef\x9d\xc7\xea\x5b\xaf\xab\xbb\x69\xe1\x2d\x91\x37\xba\x13\x35\x4a\x10\x18\x36\x69\xff\xb0\xf9\x88\x68\xb9\xb0\x15\xcd\xf0\xaf\x50\xc0\x67\x89\x47\x1a\xcb\x5c\xf9\x47\x8f\xf5\x40\xab\x98\xa9\x7a\xb9\xc2\xe7\xcf\xbd\xeb\x67\x77\xcd\x89\x53\xfe\x47\x49\x74\x77\xad\xb8\x8a\x51\x04\xcb\x42\xcb\x2b\x22\xc0\xaa\x78\x5f\x9a\x9b\xea\xb1\x6d\xc9\x47\xed\xfe\xef\x16\x37\x73\x49\x7a\xce\xa2\xe6\x12\x36\xa5\xa2\x4a\xa0\x13\x3f\xca\xbb\x2b\x0f\x2a\x2b\xc6\x9c\xd1\x34\xad\xa5\x6e\xbc\x0e\xb9\x6b\x6c\xc2\xce\x24\xbd\x5f\xc5\x1a\x68\xa2\xb9\x5f\x8f\xa6\xbc\xd4\x9f\x87\xef\xb2\x7d\x6c\x4c\xc3\x28\xfe\xd1\x9a\x0d\x40\x43\x7c\xaa\x2c\xb1\x63\x5f\x3c\x4a\x5b\x77\xde\xf6\x86\x89\x89\xe0\x94\xdd\x02\xb9\x18\x6a\x51\xfc\xd0\xd5\x61\xa1\x95\x37\xcb\x63\x37\x49\x68\x71\xdc\x4f\x0e\xd3\x5b\xb8\x8f\xad\xe8\xda\x18\x34\xfa\x75\x9f\x47\x30\x1b\x51\x3b\x15\x3c\xe0\x6d\x7f\x55\x44\x43\x4b\x1a\x1f\xed\xb4\x55\xa3\x8f\xd6\xcc\x29\x6f\x7d\xca\xb3\x74\xf9\x7b\x87\xfc\x45\x91\xd2\xf9\xe2\x09\x93\x67\x35\x8f\x2d\x2e\x9f\xbc\xc4\x3e\x7d\x92\xe8\xd7\x9b\xf9\xd4\x31\xd0\x69\x62\x49\x85\xb5\xe4\x73\x03\xb7\x14\x3b\x89\x4c\xbd\xd6\x4d\x27\x7a\x01\xcd\xe1\xc1\x97\x4c\x26\x6b\xdb\x8e\x8c\x16\x86\x4c\xb5\xe3\x75\xc4\x88\x57\x72\x0a\x03\x2f\x3a\x06\xfe\x33\x8f\xe5\xb1\x61\x90\xb6\x40\xd2\x71\x13\x81\xa1\x3b\xdd\xf8\xa6\x23\x6f\x97\xe4\x47\xe2\xdf\xb7\xae\x9d\xe2\x3b\xce\x98\xce\xa1\xbf\xb0\xfd\x7c\xb6\x7f\xa3\x44\x6a\x54\x49\x60\x06\x01\x39\xcf\x17\xf6\xff\x28\x65\x10\xc0\x5c\x56\xed\xc0\x87\xa8\x83\xfc\xb4\x05\x98\x02\xa9\xcd\xea\xa1\xc4\x27\x6e\x27\xc0\x49\x18\xec\xc5\x7a\x74\x70\xd4\x95\xb9\x40\xd8\xfe\x4e\x07\xc3\x09\x30\xd1\x9c\xbd\xda\x60\x3f\x37\xcf\x5f\x14\x29\x9e\xe7\xe0\x5f\x01\x19\x04\x21\x37\x44\x0f\x78\x76\x3e\x0a\xe1\x37\xde\x87\x46\xcf\xde\x29\xa7\x6e\xd1\xaa\xa6\xce\xcc\xf0\x4f\x63\x03\xee\xf8\x88\x9f\xcd\x84\x9f\x87\x1e\xe8\x64\x00\xe0\x1b\x49\x4c\x57\x65\x41\x23\x5c\x9e\xea\xfb\x14\x84\xce\x70\xfd\xbd\xe2\x3a\xcb\xe7\x91\x47\x1c\x48\x78\xdb\xec\xb8\xdd\xb0\x84\xb3\xc7\xeb\xa6\xed\xd6\xe2\xc9\xd9\x67\x91\xce\xad\xfe\x32\x08\xe3\x56\x08\x67\xe5\x4a\xaa\xef\xfa\xe2\x50\x66\x0c\x32\xf0\xea\xf6\x29\x55\x54\x5f\x13\x25\xc3\x4d\x4b\xef\x6a\x0b\xa4\x66\x59\xf4\xd2\x96\x24\xc2\xb8\x3a\x74\x87\xcb\xab\x0f\x24\x83\xd1\x0e\x77\x2f\xa2\x2b\x65\x2f\x75\x71\xec\xa9\x17\xd7\x55\xcf\x52\x35\xb0\xda\x7c\x8b\xa1\x39\x54\x16\x99\x70\x39\xf7\x75\x7c\xf9\x9b\x4f\xfb\xa1\x5b\x88\xdb\x20\x16\x2e\x0b\xd0\xa8\x06\x2d\xa2\x04\xf4\x0c\xe5\xbd\xee\xcd\xa7\x1f\xe0\xef\x15\x38\x1b\x03\xaa\x3b\x4d\x78\x24\xc5\xda\xbd\x85\x8e\x16\x1b\x84\x2c\xbd\xfb\x21\x42\xcf\x76\xf6\x74\xc1\xfe\x67\x3f\x2a\x08\xab\x08\x2b\x95\xbd\xa6\x69\x4a\x8b\xb9\x55\xe8\x25\x2d\xe3\xd9\x87\x49\x79\x15\x2d\xde\x2b\x5a\xb0\xd4\x7c\x9c\xb2\x78\x38\xb6\x7a\x32\x7d\xa4\x0b\x02\x04\xaa\xd7\xb2\xc2\x29\x76\x8f\x21\xc9\xd1\x8b\x2c\x22\xd6\x90\x39\x0b\x5d\xfe\x67\x7f\xdd\xc8\x03\x0a\xcd\x56\x08\x20\x2f\x08\x30\xa9\x72\xa0\x39\x01\xeb\x50\xad\xc7\xd7\x24\x31\xba\xa0\x3c\xe9\x7c\xc2\x1a\x67\xcc\xec\x7b\x92\xa9\xeb\x3a\x73\x13\xff\x9f\x34\x89\x8b\xc3\xf8\x7f\xa8\xd7\xa7\x3b\x4b\x6f\x77\x4f\x13\x3c\x86\x69\x5a\x7a\xe0\xcd\xa5\x63\x53\x3c\x3b\x1f\x67\x68\x16\x61\x75\x47\xb4\x8d\xd3\xf2\xb8\xd8\xd7\x66\xe8\x79\x31\xac\x36\x4c\xe0\xbc\xba\x7b\xe0\x92\x55\x73\x5b\x8e\x78\xad\xa7\x12\x4a\x08\xa8\x8d\x2f\xd6\x2e\x54\xd7\x92\x08\xc5\x5f\xe9\x6c\xbc\xce\x27\x47\x7c\xeb\x4b\x95\xd2\x06\xb9\x8f\x18\x6e\xa0\x05\xa7\xb5\xc3\x7b\x8a\x71\x00\x1c\x15\xae\x0e\x8e\x6d\x5f\x2c\x84\x13\x4a\x95\xae\x25\xea\x46\x9b\x30\x49\xe1\x53\x93\xa9\xb6\xd2\x15\x05\xd5\x9a\xfd\x9e\x33\x88\xaf\xcf\x86\xe2\x6a\xf8\xa0\xf8\xbc\x7f\xfb\xe5\x5e\x08\xa4\xe5\x94\xa8\x0b\x1c\x0e\x79\xfc\x74\x38\x48\xcf\x34\x2d\x61\x9c\x58\xbb\x95\x97\xa6\x62\xc0\x94\x2b\xca\x44\xaf\x59\x60\x1e\x65\x15\x05\xaf\xc5\x2d\x99\x23\x13\xfa\xd4\x31\x54\xa5\x50\xb2\x6f\x5b\xa2\x35\x6a\x5c\xd1\x9a\x2e\xed\x2e\xae\x6e\x63\x32\x06\x2a\xa1\xeb\x28\x35\xc3\x79\x2a\x5d\xf9\x63\x74\xbc\xec\x76\xfe\x67\xb5\xf6\xed\xa2\x91\xbe\x87\x6f\x9b\xa3\xe3\xc8\x6c\xa0\x2e\xad\x72\x2a\x6d\x59\x61\x19\x51\x54\x5b\x60\x23\xe4\x82\xd5\xd8\x8d\x2c\xf0\x91\x69\xb0\xb2\x76\x41\x4d\x17\xf8\x1e\xae\x40\x30\xa3\x33\x80\x8c\x9c\x63\x6a\xd2\xd2\x2a\x37\x8b\xc2\x3e\xc4\x8a\x2e\xf8\x31\xda\xd2\xf4\xb2\xa7\x49\x68\xa7\xa4\x0e\x68\xb3\xc9\xc8\x37\x05\x85\xc2\x04\x56\x2a\x0a\xc6\xf2\xd3\xb0\x10\x00\x60\xc7\xad\x43\x01\x8d\xd6\x26\x01\xc2\xdb\xff\x58\xe9\xfc\xc6\xab\xa6\x6f\x3c\x46\x16\x01\x29\x2f\x18\x96\xd0\xfd\x30\xe3\xb1\xc1\x03\xa2\x2e\x3a\xb1\x83\xf8\x0c\x72\xa6\x90\x6c\xc5\x83\xb1\x0a\x0e\xec\xa6\x4f\xfb\xf0\x01\xd4\xbf\x16\x56\x1f\x76\x82\x03\xfa\x69\x5a\xa5\xcd\x78\x40\x72\x60\xda\x0a\xa5\xa4\x92\x9e\x5e\xc2\xc6\xca\x1f\x7c\x61\x3f\x44\x0f\x65\x0a\xa7\xc4\x0d\x61\xef\x8a\x25\xbe\xbc\x0f\xe4\xef\x2a\x81\x49\x25\xd2\x9b\x7c\xe5\x5d\xe1\x27\xff\xfa\xb3\xa8\xc1\xad\x2e\xee\x6a\xaf\xb3\xb4\xa1\x1a\xea\xda\xfc\xc3\x62\x59\x44\x8c\x73\x06\x69\x1d\xdd\x17\xd3\x36\xe2\x7b\xf5\xf2\xc8\x50\x31\x05\xa7\xcd\x35\x40\x88\x6b\x6d\xb8\xa0\xd6\xc3\x6b\xda\x5d\xc2\x3a\x7e\x2e\x50\x76\x3b\x18\xf5\xf8\xb2\x2b\xf3\x3f\x81\xee\x44\x24\xaa\xc2\x3a\x4a\x2a\x1d\xf1\xdc\xaa\xfc\x51\x98\xf1\xb4\x28\x0a\xc0\x97\x04\x01\x02\xf6\xbe\x76\x2c\x3f\xb8\x37\x3c\xd8\x4d\x29\xb3\xfe\x2c\x39\xd3\x7f\x1d\xf8\xfb\x22\xa9\x6b\x20\xfa\xc7\x90\x5d\x36\x77\xb2\xc4\x57\xdc\x8a\x57\x7f\x87\x11\x3e\x58\x39\xd0\x91\x5e\xcd\x09\x55\xac\x1c\x3b\x86\x9c\xae\x18\x7e\x07\x3c\x04\xb9\xf3\x60\xdc\x5e\x27\x13\x9d\x91\x22\x94\x02\x88\x97\x61\xbd\xae\x60\x30\x7c\x9d\xba\xe8\x6c\x1a\xf7\xe2\xab\xed\x2c\xab\x88\x3c\x1d\xb6\x73\x6d\x8f\x49\xbf\x7d\xfd\xb1\x43\xb6\xf6\xc0\xe8\x73\xf4\xa5\x0b\xe8\x6e\x9c\x8e\x4d\xfa\xe6\x9e\xcb\xd7\xef\x2c\x8b\x10\x18\x37\x92\x95\x37\xd2\x57\x7d\x2d\xa4\x9b\x54\xd1\x03\x3b\xf3\x5f\x5f\x27\x20\x93\xe1\x4c\x91\x81\x49\x13\xa5\x25\x39\xfe\x2e\xe8\x1e\x9c\x2b\xae\x69\x34\xd2\x3a\x16\xaf\xa3\x69\x6a\x8d\xad\x5a\x41\x5b\xfd\xf2\x66\xa5\x75\xb5\x8b\xac\x8d\xeb\xf1\x54\xb7\x1c\xc6\x9d\x1f\x44\xe6\x04\x9c\x3d\x79\x11\x76\x8e\x69\x9e\x0e\xf9\x8c\xcb\xb3\x92\x51\xb1\x1c\xba\xe0\xbe\xd7\x50\x76\x53\xf7\x05\x47\x95\xe8\xd1\x98\x38\x04\xe3\xc4\x68\xb1\x05\xfd\xcf\x65\xeb\xb0\x25\xa5\x89\x60\x2d\xc9\xa9\xc2\x9f\x57\x09\x74\x36\xbd\x4c\xb8\xe2\x84\x79\xd6\x59\x7a\xab\xf6\xe5\x94\xc7\xc4\x48\xb5\x32\xb5\xd8\x3b\x89\xf7\xb3\x95\xd8\x6b\xa5\xd4\xc4\xe7\x56\x91\x24\xe2\xaf\xd5\x1f\x3f\xe9\x17\x7a\x01\x6a\x58\x88\xa7\x17\xdb\x20\xaa\x7f\x6f\x25\x01\x1a\x23\x5b\x32\x59\x7c\xea\xea\x02\xf6\x64\xa7\xce\x18\x3d\x0a\x91\x0f\x68\x82\x35\x89\x9e\xcf\x10\x5c\xae\x69\x3f\x8b\x68\xee\x5d\xe6\xab\xa7\x94\xd3\x7e\x2b\xb1\xf6\xbe\xe2\xbf\xe5\x4c\xff\xf2\x9c\x36\x45\x05\x77\x2c\x22\x7d\x2b\xd6\x73\x25\x1c\x41\xc9\x12\x6d\xbe\x8b\x62\x36\x87\x83\x40\x0e\xd3\x8b\x3c\x64\x7d\x16\xdc\xeb\xa3\xea\xbd\xca\x40\x42\x6b\x89\x9a\x37\xa9\x2b\xdc\x46\x48\xec\xbb\xb0\x02\x27\x79\x21\x05\xfe\x48\xaf\xfd\x43\x66\x01\xbb\xcf\x1f\x35\x0d\xdf\x5b\x9b\x01\xef\xfd\xce\x27\x5b\x5e\x5f\xc5\x7a\xfb\x6c\x33\xa2\x3f\xa0\xb0\x8c\x17\x96\x12\x80\x63\xb7\xce\x33\xe0\x35\x96\x24\x08\xa8\x2d\x1e\x7d\xe8\x1d\x4c\x24\x79\x1f\x7e\xf9\xe1\xeb\xc5\xcc\x64\xe3\x87\xab\x77\x6b\xc0\x6b\x5a\xd7\xe7\xbe\x7f\xf4\x6e\x2f\x37\xd8\xcf\x49\x65\x9a\xf1\xef\xf1\xdb\xa4\x36\x56\xcd\x4d\x00\xf4\xbc\x21\xc7\x2b\xb6\xed\xcd\xc1\x86\x79\x2e\x45\x8b\xbf\x8a\x76\x61\x42\x94\x8a\x7b\xae\xe3\x88\x74\xcc\xa9\x12\x98\xcd\xe3\xf2\xf7\xd3\x76\x39\xce\xad\x6b\xfc\xc6\x26\x2c\x80\xa2\x88\xc0\x0f\x89\x43\xf7\x71\x09\x18\x35\x25\x39\xcf\x09\x01\xd5\xb2\x81\xf1\xbb\x39\xb6\xf3\xe7\xc2\xd8\xf1\xc3\x1b\xcc\x07\x4a\xb1\x97\xaa\xd1\xa0\x40\x06\xde\xbf\x9f\x07\x1e\x74\x43\x3b\x2d\xc3\x32\xbc\xd4\xff\xdc\x6c\x99\x67\xef\x32\xf9\x53\x31\xd5\xe2\x7b\x31\xd7\x6e\x64\x21\xa6\xdf\x34\x98\xc9\xd3\x01\x30\x6e\x6a\xde\x4d\xc7\x0e\x85\xbb\xb4\x73\x9a\xbf\xc7\x7b\x04\x12\x8d\x02\x28\xd6\x11\xc7\x1e\x74\xdd\x4b\xed\x5b\xe5\xe1\x6e\xd3\x6e\x58\x96\x48\x60\x98\xb0\xc2\x3e\xb1\xaf\xcf\x0f\x0e\xf4\x4c\xb2\xd0\x06\x3a\x5d\xe2\xc1\xe2\x2e\x5a\x75\xb3\x56\x78\x56\xf5\xf9\x45\xb2\xcc\xd7\xc3\x88\xd5\x27\xb8\xed\x1a\x6d\xbc\x58\x6d\x88\xc6\x6e\x7d\x2e\xdb\xa3\xa3\xff\x06\x3e\x1a\xa6\x3a\x9e\x09\xc1\xa2\xa1\x81\x81\x06\xbb\x33\x43\xb2\x5f\xe8\xfa\x3a\xbb\xb6\x7a\x4e\x74\x37\x13\xde\xfb\x8f\x3a\xe2\x85\x6c\x01\xaf\xc2\x76\x83\x20\x5b\x58\xbc\x4f\xd1\x72\x58\x00\x07\xf9\xf9\x78\x80\xed\xf9\x63\xd3\x4f\x45\x64\xbd\xc4\x27\xa3\x12\xf6\x9a\x36\x9c\x9a\x10\xcd\xa1\xa5\xa5\xc0\xf3\x93\x3b\x8d\xad\xe4\xe3\xec\x17\x2d\x9a\xa3\x4b\x87\x3d\x1e\x5a\xb9\x4b\x18\xa3\x76\xbb\x1b\xbf\xfe\xd5\x81\x21\xd3\xf8\xf5\xfa\x82\x8c\x7c\x05\x66\xc4\x96\x02\x58\xa3\xed\x8b\x95\xd7\x9c\x40\xe0\xa5\x84\xf9\xe7\x30\x2c\xa1\x20\x7f\x03\x4b\xdb\x96\xae\x56\x7f\xf6\x11\xc2\xfb\x0c\x56\x8a\xfe\xed\x1d\x0b\x59\xcf\xe7\xa7\x7f\x9c\xdb\x73\x7d\x40\x59\xfe\xbc\xc9\x7e\xd5\xed\x4f\xcc\xd9\xae\x3a\xde\xae\x5f\xcc\xd0\xfe\x40\xbb\xe4\x16\x3c\xd4\xf1\xa5\x7b\x3f\x71\x9d\x74\x14\x12\x66\x20\x54\xee\xb5\x3f\x3b\x0c\xaa\xba\x3b\x6e\xfd\x22\x71\x5e\xc1\xed\xd8\xa5\x2a\xd5\x44\xb6\xaa\xac\x70\x50\x2b\xac\xa1\x27\x20\xa9\xc8\x00\x9b\x0c\x52\xa6\x00\x8a\xbd\xf8\x3e\xec\xa3\xe2\x0b\xeb\x90\x7a\x45\x8f\x8d\x45\x4d\xcf\x60\xb5\x9b\xcf\x09\x31\xa1\xae\x76\x62\xef\x97\x9a\xbf\xe6\x3d\x98\x3a\xfc\xd5\x75\x14\x09\x4c\x36\x33\xc5\xbd\xa3\x00\x90\xf7\xc8\xe1\xbb\xeb\x40\x3f\x49\xd0\xde\x26\xe8\xb4\xa2\x05\x0c\xbc\x0f\x76\x77\x16\x7b\x2f\xe6\xb9\xa3\x74\xaa\x4b\xcb\xa3\xfb\x38\xf8\x76\xbe\xf1\x30\xe6\x51\xfb\x9d\x13\x66\x69\xf1\xe8\x43\x8b\xed\x46\xa7\x9b\x0a\x14\x7d\x2e\xc7\xb9\x45\xc2\xc9\xb1\x04\x42\x90\x01\x09\xe6\xa6\x78\x27\xbd\x68\x14\x7e\x5b\x5b\xa9\x1f\x42\x9c\x88\xbb\xc1\xf3\xf2\x63\xca\x20\x72\x4b\x06\x0b\xf8\x1d\xef\x71\xb8\xa8\xa1\x8e\xda\x83\xd7\x82\xb9\xff\x5d\xac\xa1\x6c\xcf\xe3\xab\xde\x5e\xe7\xa0\xb6\x09\xcb\xc6\x9a\xbf\x1e\xce\x57\xaa\x1a\x8e\x32\x46\x7a\x41\xe9\x5e\x1f\x55\x80\x11\xc1\xf0\xae\x89\x85\x0b\x6f\xcf\x41\x14\x6b\x4a\xc7\x50\xe5\x88\x87\x86\x14\xec\x73\xd4\x58\x79\x6c\x97\xa9\xc8\xd3\x72\x29\x2f\x53\x04\xa5\xe2\xf5\xde\x54\x49\xd1\xcc\x88\x41\x74\x3c\x8d\x76\x50\xde\x0d\xa7\xaa\x06\xd4\x74\xf1\xdd\x43\x7a\x0d\x3d\xca\x32\x2c\x5f\x98\xca\x7e\x9c\x9f\x01\x56\x28\x00\x95\x78\xa9\xa9\x6d\xfd\x39\xc4\xbe\xdc\xba\xd4\xff\x78\x87\x06\x27\xd2\x63\x1f\xf9\xf5\x30\x0d\x6d\xe2\xd0\xfa\x95\x04\x27\x85\xdf\xb5\xee\xc9\x55\x16\xf3\x79\xdc\x11\xc4\xd8\xcd\x89\xec\xfc\x31\xf9\xa3\x17\xf7\xc9\xfd\xcb\x1e\x39\xda\x8a\x04\xbf\x7b\x36\xbb\x65\x37\x3c\x1e\xe9\x4e\x86\x10\x1d\x37\xf7\x4a\xf2\xca\xf7\xd1\x44\xf8\x1d\x6d\x77\x01\xd1\x8f\x76\xa4\x67\xc4\x80\xd0\x7b\xeb\x4f\xac\x87\x2d\x46\x43\x4b\x5f\xf1\x2a\xde\x11\xc6\xbf\xfd\x9b\xf6\x39\x65\x0e\x8f\xd0\xd9\x60\xda\xc6\x41\xc0\x72\xa9\xf1\xb7\x1a\x6a\xf5\xbc\x7b\x8f\x35\x5d\xde\x2b\x71\x9d\xb2\xfd\xf8\x1a\xc0\xa4\x40\x8c\x3a\x54\xa3\x92\xb8\x54\x33\x31\x20\xb9\x41\x7f\x96\x6c\x52\x30\x92\xd8\x35\xfa\x53\x82\x00\xa3\x21\xe5\x9f\x26\x20\xc8\x7b\x14\x01\x49\xdb\xcd\x84\x3c\x9c\x2d\x6e\xd8\xf2\x54\xec\x3a\xaf\xe8\x9e\x16\xae\xc7\x37\xd7\xed\x1e\xcb\x3d\xc5\x6f\x85\xd3\x21\x87\x45\x0b\xa7\xae\x0c\x38\x71\x74\xbe\xe7\x24\xef\x36\xf1\x88\x6b\xfc\x6c\xfb\xf2\x51\x88\x2f\xbd\x39\x4a\x18\xa6\x3d\xe8\xf2\x86\x2a\x4d\x25\x75\x9c\xd6\x68\xfe\x3b\x2b\x69\x9b\xdf\xcd\xe1\xbf\x75\xe8\xb7\x95\xd3\x8a\xba\x54\xaa\x59\x66\xf6\xd1\x6a\xff\xfc\x81\xa7\xe9\x5e\x75\xec\x2f\x7d\x5d\x5b\xef\x64\x4d\xdc\xf0\xa1\x5f\x2d\x92\x55\xc8\x27\x77\x34\x7e\xbc\x5a\x88\xde\x84\x13\xb7\x29\xa7\x6a\x7f\x25\xbb\xea\xbc\x9f\xe8\x89\xbc\x9f\xd8\x5e\x8a\xdb\x3e\x92\xee\xc4\x0f\xf1\xf9\xb6\x8b\x87\xfe\xf9\x25\xe0\x5e\x86\x1e\xf7\xea\x9c\x3d\xef\xa9\x80\x7a\x51\x9d\xe2\xd7\x99\x89\xa4\x5a\xa8\xdb\xd5\x91\xea\xb3\xeb\x6d\xce\x81\x75\x6f\x79\xfd\xd4\x5f\x03\x8a\xce\xe9\x56\xb8\x32\xfc\xdb\xa1\x74\xc4\x7d\x15\xe4\x4e\xc0\x5f\xd2\x0f\xdc\x6b\x7f\xe8\xab\x15\xf4\x0b\xbd\x1a\x52\xaa\x1b\x92\x7e\x3f\x77\x64\x3e\x18\xae\xda\xde\xa6\xfe\xe8\xf9\xbc\x19\x12\xb8\x13\x74\x52\xd1\x60\x79\xbb\x42\x57\x3c\x18\x95\xf7\x84\x0e\x1b\xf8\x0e\xef\x20\xeb\xc4\x7f\x9e\x1f\x66\x0b\x43\x34\xa4\xa4\xff\xe9\x42\xe1\x23\x20\x8f\x4f\xa4\x93\xed\x4f\xac\xcf\xa1\x73\x66\xec\x2d\x1d\x26\x6f\x2c\xa7\xdb\x5d\x60\xf4\xc4\x12\xb9\xd0\x39\xe1\xf5\x93\x05\xad\xb7\xd8\x35\xc1\xa0\x07\x2e\x23\x92\x34\xc2\x59\xdb\xe2\x7c\x05\xaa\x71\x1e\xfb\x5e\x15\xb1\x26\x8a\xfb\x19\xe7\x74\xef\x6a\xd2\x60\xb8\x06\x6f\x88\xde\x22\xcb\x4a\x43\x25\xcd\xcb\x01\x7c\x14\x49\x36\x97\xf6\xd1\xbd\x2f\x8c\x72\x07\xe7\x84\x1d\xd4\x1a\xd7\x56\x19\x08\x67\x75\x22\x7a\x00\xc7\xca\xf8\x54\xe4\x97\x50\x0f\xfe\xed\xce\x7c\x68\xa9\x72\x39\xb6\x57\xf1\xdb\x7e\x23\xe5\xc3\x62\x2b\x3f\x41\x26\x83\x8f\x89\x69\x4a\x0e\x43\x60\x80\x55\x48\xdd\x88\x52\x13\xdd\x36\xfe\x63\xb0\xc7\x7d\x7f\xc2\x65\x7d\x41\x83\x57\xa4\x3b\x92\x15\x40\x25\x39\x69\x81\xcd\x54\x1d\x4e\x62\x2e\xef\x3b\xa9\x1f\x2f\xb1\xe3\x39\x0d\x15\x58\x94\xc3\xf4\x4b\xa8\x4b\xaa\x52\xab\x84\x6a\xf5\xbd\x45\x2d\xdf\xa5\x7e\xa7\x57\x66\x7e\xc1\x4e\xed\xea\x24\xed\xe6\x64\xe4\xfc\x3b\x1c\x80\x74\x2f\xd6\xe2\x09\x95\xe0\x97\x25\xbc\xaa\x8b\x89\x6e\xb8\xad\x52\x18\x14\x48\xd5\x79\x3a\x65\x69\x32\xdb\x4d\x20\x71\x43\xf1\xad\x28\x46\xce\xa6\xb5\x93\x0e\x1e\xce\x01\x60\x5e\xde\x20\x99\x34\x0b\xe8\xc5\x9d\x0a\xf3\xb3\x39\xd7\xc8\x5d\x07\xe9\x87\xbe\x5d\xe9\xc4\xe7\xe1\xb4\x6d\x42\x28\xef\x59\x01\x3a\x7a\xe2\x70\x13\xeb\xea\xb8\xee\x91\x76\xaa\xcb\x0a\x2a\x5d\xde\xa0\x02\x03\xcb\x1d\x8a\x80\x42\xc2\xd4\x04\xfa\x46\x4d\x13\x1e\xea\x53\x75\x05\x93\xf4\x4b\xa4\x96\xd6\x8e\x89\x91\xea\x23\xdc\x36\xf6\x98\x58\xe6\x46\x68\x66\x44\x4a\xd5\x60\xf3\x9e\xc7\xbe\xeb\xba\x98\x03\x45\x7b\xac\xfa\x6c\x1f\xb2\x2c\x58\x0f\xc5\xea\xbb\x17\xad\xa8\x19\xad\xc0\xbc\xf1\xfb\x29\x0b\x79\xca\xef\xfa\x5c\x35\x75\xea\xb0\xa0\xe5\x4b\x13\xcb\x8a\xc1\x8b\x5f\x8a\xd5\x14\x1e\xce\xc5\x2c\xc3\xcc\xf6\x71\xb1\x6c\x1a\x7c\x72\x54\xa0\x1c\x4f\x4d\x21\x4c\x98\xf3\x5f\x88\x1a\xd4\x75\x21\x41\xbf\x30\x47\xb4\xc9\x10\xef\xc3\xa7\x97\xef\xcb\x76\x2c\x8f\x4c\xb4\x73\x65\xa1\xae\xaa\xbb\x02\xae\x90\x1c\x01\xbc\xbf\x88\x2b\x6c\x49\x9c\x8f\x8d\xd3\xb2\x78\xf8\x26\xe9\x45\x46\x20\x02\x40\x09\x7a\x6e\x20\x5b\xb8\x15\xae\x70\x2d\xa8\xf1\xc7\x5f\xb8\x2f\x90\x3e\xd5\xe9\x4d\xf3\x32\x08\x86\x78\x89\x99\x60\x71\xa4\x31\xf4\x29\xbc\xbe\x53\xdd\x95\xc8\x64\x59\x56\x0d\xef\x24\x2b\x7d\xd4\x72\x24\x40\xaa\x3f\x31\x7f\x17\x73\x97\x1d\x78\x63\xf1\x0e\x47\x72\x63\x12\x2b\xa6\x21\xc5\x90\x78\xdb\x5c\x86\x1a\x60\x48\x00\xda\xf5\xc6\x6c\x6f\xa2\x03\xd9\x74\x2f\xf9\xc5\xc2\x8c\xc5\x89\xa4\x41\x70\xfc\x4a\xab\xd3\xf8\xf0\xf6\x89\xb7\xf8\x7f\x72\x5b\xc8\x00\x8c\x8b\xa4\xa2\xe9\xf7\x7f\x64\x26\xee\xa2\x17\x98\x6e\xf7\xe2\x37\x25\xd2\x8a\xe5\x91\xd1\xb7\x27\xe7\xf1\xb8\x32\xff\xec\x95\x1f\x3b\xa1\x33\x64\x86\x0d\x29\xe7\x68\xee\x3d\x07\xa7\xe3\xd3\x2c\x21\xae\x39\x62\x13\x00\xf1\x55\x91\x0a\x2c\x61\xb7\x9f\xd1\x4b\xaa\x17\x3c\xf4\xfd\x32\x41\x7b\x59\x61\xfe\x19\x99\xac\xe7\x22\xcb\x29\xbb\xcc\x40\x81\x12\x7b\x59\xbd\x5e\x22\x75\xdc\xfb\x70\xab\x2e\x90\x70\xa0\x68\xf0\xd0\x47\xac\x25\xae\x24\x81\x3a\x2d\x1d\xdb\xee\x38\xbd\x48\x06\x07\x97\x49\x8d\x6f\xab\x75\x81\x76\xad\x15\x9d\xfc\xe8\x7b\x7a\xdc\xfc\xa3\x44\xb3\x09\x3a\xbf\x5a\x04\xde\x37\x90\x36\xb9\x6b\x2a\xf8\x1d\xf1\x5a\xfb\x49\x98\xc4\x77\xc8\xb4\x7f\xfd\x5c\x30\xdc\xe9\x66\xe1\xf1\x6d\xed\xeb\xe7\x45\x27\x38\x54\x46\x8c\x39\x7f\x48\xb2\x94\x62\x99\x34\x0b\x68\x59\x72\x2d\xf4\x78\x31\xcb\x23\x1a\xba\x9d\x46\x36\xd8\xb0\x36\xe4\xb5\xa0\xf0\x54\xb5\xd1\x49\x0e\xd1\x90\x28\xee\xe7\xde\x07\xb1\xb0\xd6\x52\xed\x59\x6f\x5b\xe2\xe7\xce\x93\xb5\x64\x39\xc9\x23\xe6\x56\x8e\x38\xc0\x68\x79\x29\x2b\xf7\xb0\x76\x82\x44\x1c\x55\xda\x37\xd2\xb9\x6c\xa6\xe0\xed\x0f\x25\x67\xd1\xdc\x9f\xba\x1d\x5b\x5c\x1b\x6f\xf8\x6a\xf0\xf7\xa2\xbc\xd4\x49\xca\x9d\x4e\x50\xc6\x3f\xa7\x1b\x9e\xca\xe5\x34\x84\x72\x72\x6f\x87\xb3\xbf\x14\xa6\x75\xfd\x03\xa1\xc3\xdb\xa3\xac\x94\x60\x6a\x13\x06\x0f\x7c\x6b\x6a\x16\xf7\x19\xfd\x16\x63\xf2\x50\x59\x81\x49\x35\xca\x0d\x41\x75\x54\x72\xb5\x37\xea\x4a\x51\xe9\x21\xaf\x67\xc7\xd5\xd8\x2d\x0e\x1f\x5d\x89\xfe\x3a\xe0\x26\xbd\xbf\xab\xb0\x9c\x14\xb8\x70\x33\xbb\xa0\x5d\xbe\x46\xc9\x47\xe5\x2e\x47\x49\x79\x25\xe0\x08\x10\xb2\xdd\x84\x32\x07\x33\x85\xd1\x7f\xca\xd8\x06\x78\x31\xa3\x14\xeb\x65\x49\x8f\x05\xc3\x14\x78\xad\x3f\x53\x99\x2f\xc5\xd1\x70\xa7\xbf\xc8\xa5\x7a\x18\x82\x2f\xd5\x6d\x10\xff\x78\x5d\xa2\x33\xc7\xef\xdc\x80\x7f\xaf\x7f\xd7\x0e\x91\x94\x63\x78\xfa\x58\xc3\x0e\xd8\xca\x28\x64\xcf\x4d\xf8\xe6\xd4\xef\x12\x12\xfe\xe1\x19\xf8\x36\x06\xf3\x3e\xb5\x32\x41\x4d\x7b\xeb\xa7\x06\x37\x4a\x9e\x11\xe4\x45\x05\xc4\x49\x2b\x6c\xbc\x5e\x23\x13\x64\xea\x55\x54\xe2\xc4\x90\x24\x05\xf0\x23\x19\x49\x00\xaf\xd6\x5e\xb1\x60\x3a\x39\xd2\x95\xc2\x7a\xdf\xfa\xfb\x5e\x62\x59\xef\x64\xfa\xd9\x8d\xa2\xc7\xa6\x56\xc6\x15\x38\x7e\xe4\xcc\x75\x32\xd2\x63\xda\x4f\x6b\x23\x5b\x66\x2c\xf7\x15\xaf\x3b\x91\x81\x27\xe3\xab\xbf\x65\x9b\x4d\xc4\xcb\x0d\xc7\xb2\xb0\x86\xb6\xfc\x3a\x13\xc7\xb2\xee\x9e\x7d\xac\x73\xd8\xeb\x3a\x3f\xab\x1e\xb4\x7a\x60\x3c\x8e\x4f\xe7\x7d\x31\x00\x11\x1e\xf8\x1a\x81\x42\x30\x1e\x89\xa4\x18\x42\xb8\x1e\x82\x18\x78\x1f\x03\xbf\x94\x33\x01\x92\x10\x1c\xfd\xb2\x2a\xf6\xf5\x13\x66\x2a\xd2\xc1\x13\x38\x82\xaa\x28\xbc\x5d\x45\x81\x32\x5a\x26\xd9\xd6\x03\x30\x4e\x07\xdf\xfa\x21\xcb\x0e\x8e\xbb\x2f\xbb\x22\xd8\x65\x3c\x89\xce\xc7\xec\xd4\xa3\x84\xc3\x95\xa9\xcf\xea\xb8\x0f\xba\xb8\xa5\xef\x0b\xde\x90\x7d\xe5\x7a\xf8\xac\x06\x16\x11\xec\xfb\xa6\x03\xd2\x43\x20\xc8\x80\x43\x7f\x1e\xe8\x19\x2a\xe7\xe4\x3a\x30\x37\xf9\x72\x25\xe2\xc4\x8f\xc3\x7c\xb6\xf3\xae\x93\x3c\xd7\x3a\x1a\xc0\xd5\xc5\xf4\x9f\x69\xaf\x60\xf2\xf0\x47\x02\xf7\xfe\x2b\x86\x76\xac\x6b\x7e\x4c\xd4\x68\xf3\x0b\x45\xd0\xae\x81\x5f\x38\xdc\x4c\x0b\xe9\xd1\x6b\xcd\xf8\x1e\xd7\x28\x84\xd7\xd1\x3f\x79\x17\x0c\xf7\x78\xd3\x8d\xe6\x73\xc7\x97\x8c\x1c\x31\xc3\x96\x5b\x66\xb9\x4c\x09\x08\xeb\xfc\x10\xd6\xf9\x05\x8e\x68\x23\xa0\xb7\x41\xdd\x6f\xa0\x3f\xf6\xc4\x8c\x73\x62\x5d\x8a\xe2\xcb\x0e\xe2\xb8\x0f\x33\xca\x7e\x39\x9d\x2b\xcc\xbb\x8b\x0c\xd2\xe1\x91\xac\x14\x56\x73\x2d\x93\x7a\x5f\x24\xc7\x4c\x67\x83\xe7\xa5\x20\x89\x67\xd0\x02\x6a\xe1\x00\xf9\x72\xd6\x03\x65\x1d\xbc\xc5\x17\x5c\x2f\x1e\x51\x93\x1d\x95\x83\x77\x9d\x46\x68\xf5\x70\x84\x29\xf5\x09\xa7\xdc\xf2\x8c\xaf\xdd\x8a\xe9\xce\xf1\x96\x48\xe0\xb0\x10\x7c\x3c\x10\xc9\x1b\x95\x47\xc1\x8b\xf8\x09\x10\xe6\x34\x74\xd1\xad\x85\x36\x91\xbb\xfa\x61\x01\x92\x25\x39\x50\x69\x3f\x7e\xdc\x43\xa0\x0f\x14\x6a\x5f\xa5\xdf\x55\x8f\xcd\xc8\x41\xc7\x42\xb1\x2e\xad\x53\xe5\x01\x9b\x5f\x58\xbb\xc3\x32\xd9\xf5\x1a\xef\xb4\xc7\xc1\x02\x12\x5c\x85\x51\x4a\x1d\x2c\xc9\x72\x63\x77\x8e\x59\xaf\x71\x84\x6d\x63\xa1\xd6\x9c\x03\xe0\x83\xde\x02\x46\x43\xa6\x10\x52\x7a\xcc\x7c\xcc\x1c\xa4\x61\xd6\x87\xb2\x7b\x8a\x6f\xe0\x1a\xc3\xce\xc7\x8a\x96\x15\xbc\x27\xa1\xe6\x65\xbe\x9d\x2c\x12\x57\xda\x54\xd8\x26\x8c\xa5\x86\x66\x5a\x83\x56\x7e\xdd\xfe\x48\xab\xdf\x30\x17\x4c\xc5\xa7\x4d\x65\x5f\x6c\x1c\xfc\x24\x02\x8a\xc0\xb8\xcb\x31\x45\xa7\x24\x4f\xeb\xe0\x1f\xf3\xbb\x3a\xb1\xf8\x6e\x1d\xe3\xf0\x68\x8c\xb0\x00\x4c\x67\x6e\x79\xca\xec\x60\xbe\x3d\x63\x3e\x76\xb3\x81\x97\x71\xc3\x4f\x42\x03\xba\xd4\x6d\x70\xdb\x18\x8b\x61\xdc\x1c\x35\x1b\xdd\x63\x53\x0d\x55\x2e\x52\x3f\xdc\x77\x37\x9c\x9a\x72\x1b\x6f\x26\xed\x65\xc5\xcb\xd4\x1e\xda\xca\xbd\x98\x3a\xc9\x11\x51\xf2\xb1\x34\xc5\x18\x79\xf3\x3b\xd8\x21\x8c\x1e\xe8\xec\x9d\x30\x3c\x96\x0e\x2c\xae\x83\x1c\xa7\xc2\x6f\xf9\x76\x76\x97\xbe\xf8\x32\xc7\xb5\xd2\x0a\x98\x28\x79\xff\x47\x85\x78\x33\x0c\x66\xb4\x0f\x26\xfd\x8c\xa8\x5e\x6e\x3b\x43\x96\xdc\x76\x1c\x51\x7e\xe0\x43\x9f\x0b\xa0\xd6\xe2\xf0\x79\xe8\x35\xd0\x46\xb5\xde\x9e\xe6\xb7\x86\x47\xe5\xea\xb9\x6b\x22\x0f\x20\xcc\xa0\xe4\xfd\xa4\x5b\x7e\x9d\x80\xe6\xbb\x01\x4a\x55\x0c\xc7\xc6\xa6\x00\x7a\x44\xd2\x75\x97\x97\x2a\x63\x9c\x68\x40\x26\x7a\xb3\x40\x96\xcc\x56\xc6\x33\x89\xf7\x1d\xa1\x57\xd9\x52\x0c\xdb\x80\x92\xee\x56\x84\x6d\x40\x01\x5d\xb3\xa8\x85\xea\xf5\x87\xb6\x27\x10\xf2\x49\x13\x41\x4f\xbd\xed\x56\xa4\xc3\xca\x4a\x77\x39\xcc\xfd\xa2\xee\xcf\xa1\x35\x96\xdb\xc1\x99\x10\x9b\xf9\x2c\xb3\x30\xef\x2e\x11\xee\xe0\xb6\x50\xee\xe5\xfc\x0d\x12\x9a\xb4\x46\xfb\xfe\xb2\x4e\x4b\x88\xb0\xc4\x6f\x28\x47\x06\x18\xde\x21\x22\x69\xd3\x63\x07\xd4\x78\x3e\x85\x8d\x2f\xa6\x21\x5f\x1e\xc4\x93\xbf\x16\xc8\x35\x01\xd6\x5d\x88\x9a\x5e\x13\x31\x26\xd1\xf8\xc2\x24\x33\x38\xe3\x86\xc7\x53\xce\xcc\xa6\xbd\xf4\xe4\xea\xfa\x92\xbf\x4d\x5f\x4f\x29\x02\x09\xc9\x04\x7b\xd2\x43\xed\x3f\x79\xe5\x18\x57\x96\x48\x41\x31\x81\xb2\x59\xf2\xe9\x1a\xd8\xf3\x8a\xe3\xc4\x09\xe4\xd4\x6b\xc4\xd1\x1a\x98\x0f\x91\xce\x1d\x46\x1b\x6f\xfb\x2c\xf5\xe2\x9f\x2d\x5c\x7b\x4a\xb9\xa1\x63\x09\x3a\xdb\xd0\x63\xf2\xa4\x27\xc4\xe8\x86\xfb\x44\x30\x8e\xc1\xcc\xb6\xae\x83\xff\x17\x94\xaf\x63\x9b\x5a\x99\xaf\x84\xdc\x18\xbe\xbb\x04\x89\xd9\xf7\x34\x00\x34\x69\x08\x3a\xbf\xba\x53\x6f\xdf\x84\x90\xb3\x70\xe1\x03\x3f\xe8\x18\x89\xd3\x78\xd1\x21\xe0\x1e\x72\x0b\xa2\x7c\xfa\xa1\xa9\xa5\xab\x3f\x9f\x53\x0f\x66\x35\xc0\x29\x7c\x85\xc2\xa9\xeb\x07\x95\xd0\x39\x4e\x8e\x6e\x02\x79\xcd\x01\xe9\x8b\x94\xd5\x24\xe2\xb0\xcc\x50\xa7\x10\x8c\x9a\xc6\x2e\xd2\x03\x37\x52\x42\xd1\x87\x19\xea\x9c\x25\xc5\xf9\xfe\x25\x9a\x3d\x79\xb1\x8f\xe6\xb3\x6b\x22\x37\x15\x41\x7e\x91\xed\x3b\xed\x2b\x24\xe2\xd1\xaf\xc8\x43\xb8\x6e\xc4\xb0\x0b\x81\x9a\x86\x35\x5e\x39\xf7\x45\x17\x00\x00\x9d\x7b\x00\xc0\xfc\xca\x68\xac\xfb\x13\x2c\x55\x65\x9b\x5e\x78\x57\x7d\x20\x15\x1b\x9d\x34\x20\x47\x82\xf3\x9d\xaa\xa8\x6d\x81\x0c\xf0\xfa\x05\xde\x7d\xb5\xf1\x0d\x40\x94\xd6\xc3\x85\x87\x92\x90\x38\xb2\x79\x6c\x34\xae\x27\x09\x5d\x31\xeb\x16\xcb\xec\x78\x95\x3b\xd4\x78\xad\xcd\x00\xc2\x49\xb6\xcd\x0f\x05\x88\x10\x74\xb1\x81\xa8\xb4\xf9\xc5\xf8\x75\x9c\xa2\xf1\xd5\x9d\x5a\xa4\xdc\x79\x56\x9e\x5d\x19\x04\x10\x8e\x63\x8c\xba\x54\xbf\x62\x61\x8b\x4c\x04\xb7\x7d\x73\x35\x25\x46\x14\xa1\xb2\x5f\x88\x24\x96\x0b\x62\xeb\x4d\x7d\x00\x85\xba\x79\xb1\x99\x0d\xd5\x87\x77\xc4\x2f\x79\x72\x61\x7d\x3f\x03\x20\xa9\x79\x98\xdb\x39\x84\x5e\xb1\x2d\xfe\x00\x79\x77\x37\x5e\x47\xcc\x81\xc5\xf3\x2d\x10\x9c\x17\xb4\x86\x33\x3a\x47\x16\xfc\x1c\x4d\xbb\xdc\x79\x1e\xfb\x24\xf8\xf1\xfc\x9f\x8b\x18\x31\xaa\x31\xbf\x47\x9d\x68\x9b\x7a\x10\x06\x10\x2b\x93\x20\x8e\x0d\xfd\xf1\x18\x07\xba\xc3\x20\x18\xfe\x70\x5d\x29\x77\x20\x0a\xa6\x85\x7c\xc4\xb7\xc8\x98\xac\x8b\x7e\x67\x57\xa7\x49\x81\x40\xbb\x3d\x98\x60\xca\xe7\xc2\xc3\xcc\xbe\x3f\x8d\x77\x6e\x23\x93\xe1\x1b\xca\xe5\x99\xf6\x8b\x81\xac\x41\xb7\x48\xe1\x7d\xfb\x72\x3a\x4c\xb0\xdb\x4b\xaf\xf0\xfd\xb5\x26\x96\x90\xbb\x05\x75\x6b\xb5\x09\x60\x21\xdb\x55\xb2\xe8\x51\xea\x39\x2d\xc4\x09\xdb\x28\xe1\x91\x86\xd6\x40\x06\xc8\xb0\xa4\xaa\xab\x9c\xda\x44\x34\xfb\x9e\x43\x8e\xca\xfe\x1d\x0a\x5c\xd1\xa6\x2b\x00\xdb\x92\xb8\x32\x7b\x70\x6a\xa6\xc8\x20\x4c\xaf\xb1\x90\xaf\x6f\xbd\x0d\x3c\x6b\x02\x49\x50\x69\x1b\x7d\xf5\xd9\x7e\xe4\x01\x4f\xb1\xc9\x41\xb4\x3c\x58\x39\xce\xe3\x74\x81\x68\x67\x0c\x10\xe0\xf4\x1d\x3e\x79\x2f\x89\x1b\x45\x45\xdc\x26\x8c\x9d\xcc\x58\x11\xd9\x97\x1b\x64\x64\x28\x01\x04\x03\xea\x43\xb6\x6d\x4d\x42\xe3\x4e\x98\x8b\xdd\x19\xfc\x93\x79\x43\x9f\x95\x42\x61\x92\x4f\x32\xb7\xed\x68\x37\xaf\xb1\xf2\x07\xd5\x83\x00\x44\x7e\xa3\xa2\xcf\x2c\x81\x38\x6e\xe8\x4c\x3c\x34\xc4\xe7\xb9\x3f\x63\x61\xc3\x2f\x7e\xf0\x77\x73\x2b\x99\x25\x82\x57\x51\x03\xfb\xf0\x4e\x2a\xa9\xaf\x7d\xda\x7e\x69\xd7\xb9\xbf\x70\xe1\x81\x0b\x30\x38\x4d\x72\x5d\x22\x06\xaf\xa1\x05\xa5\xcc\x03\x2f\xdf\x6d\x2b\x43\xe0\xc3\xa6\x53\x42\x47\x64\x74\x7c\xcf\x12\x60\xb9\x7c\x05\x7a\x22\x84\xe6\xfb\xc6\xb8\x0a\x0b\x78\xc9\xc2\x6f\x51\x25\xd9\x06\xc7\x0e\xc9\xdf\xde\x39\xb4\x5d\x09\x4a\x42\x0a\x59\x19\xbc\xa7\x3a\x30\xe7\xa9\xd6\x65\xdb\x7e\xab\x6c\xae\x1d\xee\x81\x2c\x0f\x91\x74\xfa\x8c\x0f\xc8\x65\x44\x67\xe3\x00\x91\xc6\xc7\x60\x29\xf4\x2a\xe6\x58\x8f\x91\x6b\xee\x05\x8d\x58\x06\xa9\x95\xf3\x62\x9d\x38\x8c\xcb\xcf\x54\xc3\x76\xac\xbd\x59\xf0\x40\xf6\x2a\x9c\xf9\xb7\xb4\xfe\x17\x4e\xc2\x6f\x7d\xf2\x64\x17\x91\x8c\x4f\x1c\x08\x41\x3b\xa1\x13\xe6\x3c\x37\x74\x74\xc0\x77\xfd\x05\x01\xb2\xb4\x6b\xab\x09\x7b\x03\x69\x3c\x17\x6a\x29\x6d\x6e\xc1\x05\xc6\x10\xc6\x37\xc6\xd4\x84\x51\x6a\xa3\x36\xf0\x21\xaf\xb1\x69\xb0\x1b\xab\xed\x0e\x61\xea\x51\x54\x84\xba\x86\xf6\xee\x5b\x75\xd7\xc1\xd1\xc2\xec\x66\x49\x27\x48\xd4\x5f\x0c\x35\xda\xd2\x97\x94\xb4\x82\xb4\x1b\xba\x0d\x74\xee\x4f\x0d\x14\xb2\x8b\x08\x89\xb5\xd5\xf0\xba\xb0\xbd\x36\x9d\x08\x7f\x94\xac\xbb\x74\x62\x9c\xbc\xea\xac\xf7\xef\xc8\xc6\x00\x16\x14\x66\x83\xfc\x8f\xc4\x7f\xa4\xa4\x77\x9a\xd8\x09\xb1\x6d\x4f\x3b\x2c\x7a\xe8\xa9\xdb\x12\xe5\xdd\xef\x44\x7f\x8e\x6c\x31\x7b\xf5\xef\x03\x99\x59\xef\xb3\x72\xd2\xc1\x67\x9c\x58\x80\x73\x5b\xca\xb5\xb8\xbd\x0c\xef\x9f\x40\x01\xcf\x75\x20\x54\x18\x7f\x00\x03\xcc\xa2\x85\xc8\x0f\x52\x28\xda\x2c\x2a\x9a\xef\x7b\x86\x4f\x43\x85\x91\x59\xb6\x92\x13\xb4\x38\xbe\x93\xc9\xe8\x54\x17\x77\x95\x9f\x98\x67\x90\x64\x4f\xf6\xec\xca\x53\xd4\x5c\xc1\xde\x91\xd3\x56\x82\xcf\xca\x5a\x7a\x07\xcf\x73\x9d\xfb\xf0\x25\xce\x2f\x34\x09\x3f\xb1\xc2\x2c\x5d\x31\x20\x2d\x2a\x31\xd5\xb4\x17\x99\x0a\x1e\x2d\xa2\x5e\x46\x6b\xb0\x81\x9f\xbc\xdb\x74\x22\x8f\x42\x08\x3f\x1d\x70\xfd\x6e\xdf\x55\x2f\x72\xf0\x44\x4c\x85\x17\x4f\xa1\x3c\xfc\x23\x84\x6b\xd7\x73\xc9\x88\x51\x6e\xb2\xfc\x7d\xe9\x54\xc4\xc2\x29\xd7\x12\x7d\x75\xfe\xe2\x8f\xe6\x82\x31\xd6\x26\xbc\x0f\x38\x06\x3f\x77\x65\x55\xc6\xf7\x85\x42\x28\xfc\x37\xe8\x00\x92\xca\x69\x93\x0a\x29\x3d\x92\xa0\xd8\x16\x4a\x39\x6d\xec\xbe\x5e\x3e\x1c\x00\xde\x11\x48\x5f\x41\x1d\x46\x9b\x8b\xfb\x5d\xa2\xdd\xa5\xf8\xca\x63\x19\xb7\x88\xa6\xd3\x23\xb8\xad\x0b\xe8\x37\xcf\x3e\x71\xee\x48\x54\xff\xa6\xd0\xe7\xef\x14\x51\xa7\xeb\x7f\xe4\x87\xae\xd7\x75\xe3\x34\xdf\x11\x8c\xbf\x2a\x4b\xa0\xcf\xd4\x66\x7b\xda\xff\xbb\x4d\x70\x6d\x2b\x32\xe1\x0b\x67\x45\x13\x16\x6e\x36\xff\xcc\xf5\xbf\x02\x63\x4c\xdf\xba\x96\x68\xb9\x96\xbf\x45\xf8\xed\xa1\x02\x6e\x1c\xb5\x07\x5a\xd4\x94\xd3\xb2\xbf\x6f\xef\xf2\xbf\x12\x61\xff\x02\x6a\x1a\x0b\x21\x4e\x26\xe8\x93\x48\x22\x2a\x04\x64\xda\x1e\xfa\x54\x10\x22\xc3\x06\x8e\x97\x2a\x68\x9a\x0d\x5f\x63\x48\x54\x97\x72\xb9\x21\x0c\xbd\xbe\x7f\xb7\x8a\x6b\x24\xd7\xb9\xa0\xe5\xa0\x0e\x10\xc7\x5d\x50\x5e\x90\x63\xf6\x2e\x89\x00\x66\xae\x98\x57\x65\x0d\x7b\x97\x41\x55\x2e\x1e\x8d\x1c\x12\x42\xe1\x26\x88\x96\x7a\xd7\xeb\xc7\x1a\xe7\x85\xb8\x14\x50\xd9\x86\x35\x8a\xf1\xcb\xfd\x3a\xd6\x2e\x03\x66\x67\x2b\x31\xe3\xc7\xaa\xe5\x77\x06\x5d\xf4\x4f\x98\xbc\x3c\xbe\xfb\x87\xbc\xbe\xab\xc0\xa1\x15\x90\x35\x53\xc3\x97\x5c\x20\x1a\xc5\x05\xa9\xd9\xd4\x35\xbf\xa5\x1c\x92\xd2\x61\xbb\xba\xf6\xa7\x8d\x38\xa7\xbc\x50\x4a\xb9\x9c\xac\x81\x7b\x2c\x61\xa8\x7d\x7d\x55\x53\xfe\xd4\x89\xb8\xde\x1d\x1d\x0d\x7e\xab\x36\xac\xb4\x1a\x19\x8c\x43\x07\x17\x15\xd7\x20\xc5\x55\xaa\x3b\x3f\xe1\x04\xf9\x62\xb5\x81\x00\x3b\xae\x4f\x9f\xc4\x33\xf8\xc5\x15\xd2\xac\xf4\xbf\x38\x7b\xce\xda\x5d\x5b\xf6\xd9\x1f\xaf\x25\xdc\xfe\x7b\x3b\xb0\x0c\x06\x08\xae\x3e\x8c\x84\x04\x01\xc4\xca\x81\x90\x0b\x89\x63\x6d\xc8\x5b\x65\xcc\x37\xdf\x2a\x42\x1c\x48\xdd\x20\x0f\xe6\xf1\x52\x4d\x91\x79\x47\xaf\xf0\xa9\xe9\xac\xb2\xa9\xaf\xee\xc4\xb0\x69\xc0\x36\xdc\x19\x16\x39\xe4\xae\x21\x33\xe9\xe0\xa8\xee\xb7\xe1\xf0\xb8\x42\xcf\x11\xa7\x2e\xf5\xdd\x48\x80\x97\xc5\x8e\xf4\x73\xc1\x12\x6a\x65\xd6\x8a\x1a\x34\x18\xbe\x51\xeb\xfe\x4d\x24\x34\xa0\x0f\x03\x0e\x2e\xfa\xee\xa2\x03\x3b\xe6\x27\xe3\x38\x90\x3e\x0f\x65\x10\x1c\x57\x79\x0e\x10\x00\x2f\xa2\xda\x9a\x7f\xab\xdd\x7b\xff\x2e\x30\x31\x7a\xc1\xce\x63\x11\x15\x55\x2a\xfa\x91\x95\x6a\xfd\xe8\x6b\x47\xeb\x17\xc7\x9e\x7a\xe5\x7d\x14\xbe\xfd\xca\x98\x3a\xde\xae\x76\x11\x4c\x1a\x17\xfc\x59\x07\x9c\x87\x49\x2f\x59\x5f\xe5\xb3\x19\x2e\x99\x2c\x80\xb3\xf0\x22\x64\xd8\x10\xf7\xfc\x21\x58\x3b\x0d\xf3\x3a\x7e\x94\x69\xda\x9c\x13\x1c\xf0\xd9\xa3\x36\x49\xcb\x5c\xc5\x78\x48\x59\x52\xf5\x67\xd9\x73\xe6\x94\x00\x26\xcd\x02\xd2\xe7\x69\x38\xab\x72\x6c\x20\xcb\x37\x7d\x21\x5c\xbb\x8f\xd7\x82\xba\x03\xbc\x2e\x1f\x6d\xab\x06\x70\x9f\xa6\xff\xe0\xdb\x88\xca\xcf\xe5\x32\x94\x93\xb5\x51\x76\x17\xb5\xb9\x35\x54\x3b\xb9\xd9\x40\x13\x4f\x62\xfd\xc2\x02\xac\x4d\xdc\x5c\xb2\xb9\xb4\x97\x39\xf6\x3e\x7f\x21\x6f\x4c\x74\x01\x5a\xa1\xae\xb4\x8b\x7a\x45\xad\xc8\xf8\xca\x3a\x50\x9b\x3d\x8c\xf2\x20\x04\xd4\x11\xe8\x37\xe2\xbf\xc2\x8a\xbb\xd0\x63\x26\xb3\xbf\x6b\x85\xce\xbd\x70\xea\x6b\xed\xbc\x6f\xaa\x3c\xed\xe6\x9a\xd2\x56\x8d\xff\xb4\xc2\x49\xdf\x21\x01\xe7\x98\x47\x5a\xcf\xd5\xb1\x50\x00\xaf\x80\x51\xe6\x60\x8b\xb4\x80\x8d\xb4\x80\x0d\xbc\x08\xa6\x57\x38\xbd\xcc\xc1\x16\xfc\xb2\x8d\xc7\xd7\x5a\x2b\x2b\x77\x15\xa6\xb3\xb8\x1f\x3e\x6b\xed\x93\x6c\x14\xbd\x06\x16\xdb\x33\x44\x02\x53\xbd\xbf\xb3\x80\xe9\xa3\x98\x3a\x62\xa4\xa9\x3a\xb8\xb7\x97\x16\x25\xfd\x4f\x0b\x2c\x9b\x53\x2c\x9d\x86\x30\x97\xbf\x50\xd4\x28\xc3\xc4\x05\x0e\xe2\x33\x3f\xc3\xc1\xbd\xe1\x6b\x02\x72\x9d\xda\xbb\xb0\xe3\xa3\x7f\x5b\x39\x28\xb1\x4f\xa4\x8f\x80\x99\x13\xe6\xde\x12\xf5\x86\xc9\x10\x0b\xf2\x66\xe0\xe3\xd9\xf5\x06\x65\x2a\xcd\x8f\xe4\xaa\x82\x86\x67\x42\x94\xc5\x8e\x4b\xa9\x02\x47\x60\x04\xe8\xbe\x63\xa5\xfa\x31\x60\xa6\xcb\xd0\x4e\x97\x21\xd0\x2c\x81\x6c\x55\x62\xbe\xd4\x3c\x4c\xa0\xa9\xc0\xa5\x6e\x39\x0f\xee\xde\xa2\xdf\x37\xa3\x9e\x95\xf1\xcd\xa0\x13\x14\xd4\xeb\x75\x51\x11\x21\x59\xc2\x20\x09\x20\x6c\xb8\x93\x34\x7e\x14\xfc\x20\x62\x4f\xaa\x79\xa7\xe4\xe6\xf4\xc2\x21\x3e\xe1\x68\x95\xdc\x29\x90\x7d\x3b\x89\xbd\xda\x45\xff\x4b\x84\xc7\x12\xd7\xd6\xba\x4a\x6d\xb1\xc6\x42\x42\xca\x8a\xe2\x86\xae\x59\x7e\x9c\x81\x07\x12\x1b\x4e\x13\xe8\xcb\x09\xa8\x1b\x17\xd7\xcb\xa4\xec\x43\x1c\x5c\x56\xed\x8d\xac\x58\xc1\x92\xfc\x32\x69\x7b\x16\x73\x71\x7a\x3c\xbf\xe9\xda\xdd\xd7\xa2\x55\xff\x4c\x85\xcb\x74\x1a\xd4\x58\xd6\xdb\xb0\x9c\xf8\x14\xf6\xfc\x8d\x9e\xc0\x9d\x73\x0e\x1c\x60\x73\x2c\x38\xb5\x94\x93\xcd\x02\x43\x16\x5f\x37\xb1\x60\x60\xbb\x80\x3a\x5e\x8b\x66\x91\x99\x49\x77\x76\xb8\xf2\xf1\xf8\xfd\x56\x6b\xc9\x15\x85\x7f\xf1\x60\x3c\x15\x1b\x6e\x4f\x35\x67\x03\x69\x07\x6d\x3b\x8c\x4c\x2d\xdf\x7a\xff\xbe\xc3\x92\x69\xc6\x07\x04\x6c\xb4\xc1\x22\x1e\x80\x08\xfe\xc8\xf3\x40\xb3\x22\xba\x04\x2a\x06\xbe\xf4\x3e\xf6\x78\x1b\x5b\xcd\x71\x4b\xc1\x30\x76\x72\xf6\x14\xc6\xf1\xa2\xb8\xf5\x60\xa5\xc8\xb8\xb7\x9c\xc1\x4a\x5c\x9a\x16\x2a\xf4\xdb\x69\x3f\xba\xfc\x8f\xb3\xd1\xc2\xfe\xb8\x24\x6f\x91\x58\xe6\xd1\xcb\x51\x3f\x2e\x79\xf8\x98\x94\xa7\x0a\x66\xbd\xf5\xe5\x79\x12\x27\xe3\xab\x29\x6e\x99\x97\xe8\xa1\xcc\xe1\x94\xb8\x72\xfa\x43\xf4\x58\x30\x72\x4c\x04\x1c\xdc\x03\x7a\x11\xec\xfe\x97\xe5\x41\x4a\xb9\x30\x7b\xcb\xe2\xef\x8e\xa1\xfc\x7d\xff\xdb\x81\xbf\x3b\xeb\x2a\xc3\xdd\x8b\xe8\x2c\x8f\xe8\xe5\x3b\x54\xf8\x68\x6c\x08\x66\x14\xc3\x72\x37\x08\xa0\x02\x6f\x43\x1c\x5c\x30\xb9\x9d\xd4\xa2\x2c\x9c\x55\x09\xd6\x11\x78\x32\x69\x7b\x0c\x58\x1d\x96\x96\xfe\xa7\xac\xa5\xe0\x1c\x7d\x0e\x6c\x80\x3b\x31\x56\xbd\x3f\x4e\x34\x4c\xec\x8e\x68\xfd\x64\xa8\x52\xd5\x3d\xee\xb7\xa5\x7b\x6d\x12\x43\xfa\x68\xd6\xe9\x11\x33\x24\x84\x05\x2d\xdb\x6c\xa4\x47\xd5\x96\x8d\x41\x27\x63\x5c\xcf\x01\xd0\x19\x92\x71\xfa\x56\x19\xdd\x86\xf2\x16\x18\xcd\x86\xf9\x30\x3a\xc4\x1f\xa8\x6b\x63\xff\xaf\x0e\x73\x49\xb4\xba\xd6\x4d\x42\xbf\xdc\xa8\x1a\x8f\x13\x2c\xa9\x06\xda\x25\x47\x1f\xb3\xf1\x12\xd3\x61\xa6\xfb\xf3\x5a\xbe\x9b\x0f\xf3\x17\x14\x30\x8c\x85\x8e\x07\x7f\x66\x30\x8f\xfd\xf0\x0a\x9a\xcd\x4c\x38\xcc\x00\x50\x38\x17\xe4\xdd\xd5\x6e\x90\x9f\x8a\x85\xdf\xfe\x91\xb9\xf9\xc3\xf5\xbb\xd6\x7f\x7b\x79\x59\x69\x2e\x7a\x7a\x5c\xa7\x9c\x1e\x13\xc5\xfc\x5d\x9d\xd2\xf9\xdc\xe5\x42\x11\x6f\xb7\xf2\x68\xd5\xf3\x3d\x10\xf3\xe3\xa3\xcb\xc3\xb8\xce\xc1\x64\x98\xff\xd5\x54\x81\x7c\x6b\x79\xe3\x8d\x47\xc7\x98\x37\x23\xfa\xa7\x98\x1f\xc2\x6b\x86\xa6\x8c\x8d\xbc\xbc\x8b\xe6\x2c\xdf\x5e\x7b\x59\x2c\x71\xc6\x21\x51\xeb\xee\x2a\x9e\xfd\x3c\x53\xb4\xba\x27\xfe\x30\xd0\xd8\xb6\xd9\x8d\xc9\x89\xc6\x3f\xbc\x4d\x32\x21\x87\xed\xae\x10\x78\x33\xa5\xe5\x45\x60\x46\xe8\xbc\x6d\x71\xc4\xdb\x95\xc9\x17\x97\xf9\xce\xe2\x5d\x3c\x7b\x52\xee\xbd\xd2\x59\xe5\x19\xb4\xfd\x06\x32\xcd\xdb\x83\x05\x84\x98\xf3\x96\x50\x57\x39\xec\xdb\x68\x43\xf1\xdb\xda\x56\xa9\x5e\x30\x86\xd1\xea\x39\x67\x84\xa0\x94\x50\x39\x4d\x4d\xac\xc9\x6e\xa1\xd0\xb6\x6a\x11\x94\x02\x02\xaf\x75\x98\x16\x78\xa7\x9d\x7b\xd3\xa2\x59\xe8\x56\x8c\x5f\x26\x8e\xa4\xf6\xe3\xb2\x7c\xa7\x18\xa0\x42\x58\x10\xda\x14\x94\xd2\x74\xd5\x2d\x7d\x59\x67\xfa\x42\x4b\xa2\x9a\xe9\x0f\xce\x97\xb5\x63\x5d\xa0\x19\x82\x40\x92\x48\xaa\x4e\xfb\x85\x42\x2e\x4a\x1f\x05\x73\x49\x80\x33\x25\xed\xa8\xec\xfe\x7f\x04\xac\xf8\x7b\x04\x9a\x02\xb7\xe9\x69\x11\x15\x10\x6c\x82\xd0\x7c\x78\xb1\x69\x89\xe0\xe6\xdd\x9f\x3e\x10\xc2\x15\xf3\xeb\x1f\x8e\xe3\x17\xd0\xa9\x91\xec\xa5\x28\x9f\xca\x78\x27\x71\x9f\x18\x81\xa3\x95\x74\xbe\xab\x1c\xed\xdf\xe7\x04\x52\x48\x39\x20\x87\x44\x41\xb2\xab\x31\x80\x12\x49\x08\x54\x1d\x99\xa1\xe6\x0e\x67\xd7\x6f\x97\x66\x85\x7e\x94\x9c\xd1\x16\x71\xfb\x52\xbb\x86\xca\xb8\x99\x4f\xe5\x91\xd3\x11\x37\x76\x8d\xe1\xf5\xb3\x70\xa6\xc9\xb4\xc6\x0a\x16\xaa\xea\xe2\xef\xf9\xf9\xbe\x7e\xdf\xe2\x6a\x99\x7b\x57\x59\xd4\x50\xdb\x23\xd0\xd6\x6a\xb7\xba\xa6\x4a\xf5\x9a\x8c\x79\xf5\xd7\x52\xaa\x6e\x85\x09\x51\x53\xdf\x63\x44\x09\x18\x81\x8f\x5b\x13\x54\xd5\x58\xa3\xa6\x53\xd1\x47\xd8\x8d\xd3\x50\xe4\x6b\xa1\x60\xef\xc5\x65\xe9\xa3\x33\xba\x24\x66\x33\xd3\xb1\x20\x1e\x38\x53\x6e\xfc\xec\x8a\x9d\xc0\x73\x75\xbe\xd6\x6e\xb9\xe5\xd9\xe7\x90\x3b\x21\x5c\x9e\x54\xf9\x35\x2a\x79\xcf\x20\x65\x5b\x0a\x52\x6c\x2a\xf2\xa8\xe0\x3a\xfc\x88\x33\xc3\xa9\x17\x1e\xe0\xb1\x8e\x8a\x43\x57\xe8\x65\xea\xf9\xa1\x32\x80\xc3\x76\x99\x97\x52\x9d\x59\xa0\x59\xc4\x5e\x0a\xa9\x0b\x2b\xd7\xc8\xa0\x23\x94\x47\x11\xe3\x39\x01\x0e\xf2\xa5\x8d\x99\x2e\x47\xbe\x9f\xf3\x1e\xf6\x9f\x11\x4c\x3d\xe3\x5e\x93\x05\xd8\x30\x24\x0b\x9d\x27\x9f\xca\xa5\xe0\xe4\x74\x8f\xe2\x37\x11\xd3\x04\x9a\xf1\xce\x29\x6b\x1b\x97\x22\x9b\x93\x5e\x9f\x9f\x7d\x3c\xc3\xf9\x79\x5d\x93\x6d\x4d\x74\xdb\x9b\x16\x61\x4a\x0f\x1b\x66\x90\x7c\xba\xc7\xcd\x03\x01\xe8\x30\xe9\xcc\xa3\xc6\xf1\xbb\x77\x36\x88\x6f\xf7\xb4\x94\x3d\x3d\x72\x4b\xad\x7e\xda\x55\x69\x6b\xea\x95\x15\x6b\x60\x1f\xce\x88\x69\x8d\x1a\xb7\x78\x52\xd0\x58\xab\x1e\x32\x3c\xa0\xf0\x22\xf7\x94\x64\xff\x36\x3f\xf2\x9e\xd7\x7e\x70\x5b\x47\x8b\x18\xc6\xfb\xe6\xa9\x79\xff\x5e\x9b\x73\x4f\xbb\x7e\x46\x0f\xc8\x5a\xef\x5a\x2d\xb2\x98\xa6\x96\xf7\x7f\xb0\x2e\xae\xd2\x8e\x9f\x33\x91\x77\x13\xcb\xa5\xd5\x51\x1e\x3d\x6b\xe9\x2c\x47\xea\x62\xe7\x02\x37\x02\x83\x3e\x58\x80\x64\x76\x59\x1f\x81\x22\xf3\x65\xb8\xb4\xf3\x47\x33\xce\xbd\x97\x7f\xba\xce\x9f\xb1\xdf\x7b\x72\x1f\x1d\x48\x7e\x66\x88\x52\x03\x7a\x20\xd9\x60\xc8\x36\xd9\xa5\x63\x0c\x7f\xef\xbb\x8e\x04\xc5\xdf\x60\x31\x39\x23\xaa\xf4\x7b\x37\xa3\x55\xdc\x94\x58\x96\xec\x2d\x9d\x4d\x12\x63\x0a\x0f\xca\x4a\x53\xd0\x89\xb8\xeb\xa3\x11\x00\x84\x3e\x0e\xc9\xb2\x79\x40\xdc\x9f\xef\x4d\x59\xe2\xde\x98\x0c\xb1\x1f\xb2\x64\x70\x45\xb5\xc5\x50\x25\x51\x84\x0b\x8c\xb3\x3a\x22\xb8\xf8\x2c\x79\xb6\x4b\x97\xd3\xf9\xc4\x1f\x6d\x0a\x1f\x8e\x36\xd8\xcf\x41\x72\x5c\xfe\x48\xf0\xbd\x09\x82\x97\xb9\xa8\xe4\xd2\x8f\x8e\x5e\x2f\xf1\x65\x85\x98\x92\xdf\x65\x87\xca\x01\xcf\xcf\x8f\xe3\xd9\x25\xe4\xa6\x3d\x30\xe6\xd5\x7f\x41\x39\x4a\xf0\xb4\x09\x23\x17\x66\xcb\x77\x50\xca\x81\xe2\xe7\xae\xef\x3c\x84\x8e\x26\xd9\xb6\x47\x07\xf7\x69\xb5\x70\xaf\xea\x1d\x28\x80\x9a\xad\x3c\x11\xd4\x7c\xe7\xc5\x71\x39\xf9\x14\x32\x6c\x6e\x33\x3d\x52\xe0\x9a\x02\xf3\x5d\x22\xbb\x78\x66\x65\x61\xc4\x4b\x01\x6a\xcb\xa8\xaf\x75\x71\x5f\x47\xb4\x65\x37\xf2\x00\xa0\xc6\x31\x47\xf9\x90\x0c\xb8\xb0\x95\xc9\xd2\xe7\x2e\xd6\xd5\x82\x46\x2b\x0b\xd6\x2a\xba\xbf\x17\x35\xf7\xfb\x93\x58\x25\x94\xa3\x4d\x70\xed\xf8\x16\x30\x2e\x25\x6d\xdf\x25\xb5\xa0\x0f\xfe\x44\x79\x79\x4f\xf5\x6d\x08\x57\xda\x33\xe8\xfd\xd4\x53\xd1\xa0\x28\xa7\xb8\x6d\x67\x44\xb1\x4d\x5d\x25\x1b\x52\xdb\x28\xc6\x41\xa6\xe4\x5e\x74\x68\x7f\xfa\x3b\xd4\xcd\x35\x16\x7b\x79\x83\x4e\xbd\xf6\xc0\xe4\x5a\x43\x47\xfb\x57\x43\xd2\x9f\x3f\x67\x7c\x6e\xe9\x8c\x0e\x16\x92\x54\xae\x6f\x70\x71\xfc\x01\x9a\xdd\xe7\x66\xa1\x9a\x9a\xdb\x53\xde\x43\x73\xee\x31\x02\x12\x68\xab\xc2\xb3\x65\x68\x44\x22\x0f\x07\xc7\x52\x50\x63\x1b\x8f\x4c\xd3\xe5\x31\xf4\xb1\xdd\x0e\x62\x8b\x72\xfb\xfd\x80\xba\xaf\xfa\x5f\x9d\xd9\x7e\xf4\xb8\x5f\xa5\x96\x16\x9a\x63\x3b\x66\x86\xef\x75\xed\x2a\x49\xd3\x68\x5c\xd7\xa8\xcb\x62\x0f\x8f\x95\xdd\x99\xf4\x3c\x53\xd0\x61\x41\xf5\x0e\xe4\xef\xb5\x5f\xe1\xf9\xfd\xec\xe0\xf2\xbc\xec\x8d\x90\xe2\x3d\xae\xcc\xdd\x5c\x46\xeb\x49\x6d\xef\x2f\x09\x13\xb6\x12\xbf\x5f\x6a\x0f\xf6\xc8\x19\x58\x33\x66\x60\x3e\xfb\x52\x3b\xf4\xa7\x9d\x8b\x81\xeb\xe9\xf4\xc7\x1e\x8e\xbb\xc7\x91\x3e\x61\x68\xc0\x05\x98\x90\x1f\x73\xd5\x2d\xf7\x23\x90\xf3\x9e\xd0\xe3\xee\x8d\x54\x53\x5e\x83\xbb\x35\x5d\x09\x35\x40\x1e\x90\x18\xd1\x94\x5d\x61\x5d\xca\x3a\x6a\xf3\x1c\x5c\xf6\x1c\x51\xee\x00\x6f\xb7\x21\xab\x84\xe4\xc7\x05\xa6\x3d\x63\x49\x84\xb0\x90\x17\xe8\x85\x65\xb1\x70\x7f\xb7\x3a\xbe\xf9\x8d\x09\x2a\x29\xec\x8b\x5c\x64\xbf\x35\x96\xeb\x16\x9e\xad\xf3\xed\x8c\x5b\x21\xde\x74\x3e\x6f\xe9\xbd\x47\x1b\xbe\xca\x2d\xb4\x27\xc4\xe0\xda\x73\xf0\x10\xfb\xe4\x78\xd4\x9d\x39\x5c\xf5\xd6\x35\x78\x68\x80\xdc\x15\x07\x52\xd9\x53\xa0\xc9\x43\x5d\xfa\x9c\x50\x2e\x43\x9d\xb0\x5c\xa6\xfe\x7d\x5f\xa9\x51\x68\x43\xba\x9d\xed\xfd\x11\x8a\x7a\xe3\xfc\x19\x41\xad\xaa\xc3\x0b\x2d\x64\x11\x27\x85\xf2\xb7\x63\xe8\x43\xd6\xd9\x93\x42\xa0\xf6\x40\x58\x8a\xb9\x48\xae\x0e\x89\x0f\xdc\x75\x97\xdd\x0c\x70\x96\xfc\x92\xc8\xfe\x35\x20\xa1\xcd\x26\xbe\x12\x90\x8e\x66\x5f\xf9\x58\xc0\x49\x98\x2d\x6f\x60\xc5\x6c\xd7\xd7\xbd\x54\x5f\x6d\x39\x50\xfa\x93\xf2\xb4\xe5\xa0\xac\xf5\x7a\xde\x74\x69\xf5\xd8\x32\x07\x8c\xf0\xcd\xcb\x19\xf6\xdd\x50\xbf\x63\xad\xa6\xd8\xe2\xb1\x0a\xd6\x31\xab\xec\x40\x36\x78\x0f\xa9\x2b\xe5\xde\x18\x0d\x24\x68\x90\xc9\x45\xcf\x4c\xfc\xf1\x5b\x74\xb7\xe2\xdf\xc9\x49\x40\x48\x29\x63\x10\x8a\x19\x75\xc0\xc2\x1b\x04\x10\x68\x57\xb3\x77\x84\xff\xd2\x22\x9e\xa4\x60\x58\xb3\xbd\xb2\x9e\xed\xe0\xfd\x28\x8c\xe5\x43\x5f\x4c\x66\x86\x74\x80\x7d\xd3\xef\x8f\x63\x7d\x1b\xbe\x98\xf4\xc2\xcd\x81\xdc\xab\x37\x9a\xb1\xfc\x3b\x7e\xe2\x8b\x06\x6d\x45\x52\xbf\x14\x2e\x8e\xc9\xaf\xab\xad\xd7\xc6\x64\x60\x9a\x95\x8a\xe0\x44\x42\xc1\x12\xec\x17\x61\xfa\xd1\x3f\x86\xce\xf2\xd9\xcf\xe5\x87\x58\xc2\xec\x95\xd3\xd2\xf8\x37\x7f\xa5\x44\x3e\x09\x8f\x10\x48\xb4\xd0\xce\x7d\x87\x05\x54\xe2\xd5\xbd\x08\x4b\x15\x34\xd7\xd1\xce\xdd\xf2\x1e\x1a\x3e\xee\xce\x68\x66\xff\xfd\x54\x6e\xb8\x47\x9c\xe5\xc0\xf0\xd6\x37\xd7\x51\xb2\x7e\x6b\xe5\x07\x80\xf5\x2f\xee\xf2\x08\xfa\x38\xdf\x60\xec\x73\xba\x35\xd5\x95\xad\x3c\x55\x40\xfb\x24\xf8\x47\xf4\x1e\xea\x2d\x6c\x32\x45\xb9\xd5\xd7\x45\x55\x51\x9e\x9c\x79\x45\x5c\xf3\xc1\x83\xfb\x88\x9c\xce\x08\xf7\x3a\x83\x1c\x9a\x7b\x73\x13\xa9\x8e\x05\x4c\x26\xb0\x17\x9a\x78\xc4\x3d\xb4\xfc\x2b\x7e\xf8\x40\x26\x73\xee\xf4\xaa\x03\x89\xb7\x0d\x51\x34\xd8\xc4\x19\x71\x64\x81\xa5\x9f\xa0\x27\x2e\x0b\x07\x30\x56\xa2\x03\x94\x33\x89\x27\x77\xd6\x72\x60\xda\x8c\x74\xd8\xc0\x10\xcb\xa2\x33\x9f\x10\xf6\x83\xdf\x15\x45\x87\xe4\x84\x51\x46\x0c\x55\x92\x7d\x87\xbf\x71\x06\x10\x75\xb3\x4d\x4a\x18\x68\xc6\x39\x52\x54\xee\x9c\x44\xd1\xe9\x55\xa8\xff\x8f\xa0\xe5\x0d\x4f\x1f\x8b\x29\xd5\x55\x58\xb4\x28\x0c\x24\xf0\xe4\xc6\xd7\x56\xa5\x91\xe8\xbe\xf6\x28\x2b\x99\x8b\x7f\x8d\x68\x55\xad\x76\xfc\x71\xe5\x27\xa9\xc4\xb5\x21\xfa\x93\x31\x46\xee\xd1\xb0\xd6\x47\xfc\xb2\x29\xf2\x34\xd3\x61\x3d\x32\x00\xa2\xe1\xf8\x94\xa5\xbf\x26\x8b\x71\x15\x72\xd4\x98\xd2\x00\x03\x6d\x95\x9d\xe3\xa4\x5d\x93\x1d\x10\x78\xa2\xd7\x8e\xef\x66\x94\xf1\xf6\xbe\x12\x75\x18\xa1\x39\x00\x1b\x56\xfc\xf9\x45\x4e\x55\x0d\xbf\xb8\xb2\x7e\xf4\x01\x5b\x10\x92\x24\xaf\xe1\xe6\xcc\x45\x1d\x35\xa8\x9b\xc5\x54\x82\x14\x36\xf4\x2e\xf9\xa1\x86\xf6\xda\x34\xfd\xa0\xe9\x11\xa1\x01\x6e\x64\x13\x57\x5e\x53\x85\x87\xfb\x6c\x98\xef\x5d\xde\x56\x9d\x6d\x98\xe3\xfa\x91\x0c\xa9\x33\xbc\x8f\xa3\x6d\xad\x8c\x2d\xd2\xa1\xb8\xf3\x6b\x11\xb2\x2c\x95\x72\x5f\x58\xb5\xf6\xdf\xa4\xfb\x3e\xf8\xf3\x8f\x59\xe3\xc5\xaa\x83\xf0\x8b\x30\xfd\xa4\xae\x01\x5e\xba\x4f\xd6\x10\x3a\xc9\xb8\xbd\xbc\x84\x23\x33\x8a\x79\x51\xcb\xb0\x56\xc0\x52\x65\xf5\xf1\x72\xa5\x22\xf7\x93\x25\xe8\x9b\x7e\x1a\xf3\x35\xa7\xfe\xbf\x97\x51\xed\xcf\xaf\x6e\xa3\x45\xcb\xc3\xbf\x46\xb8\x8e\xb3\xd6\xbe\x3a\x35\x58\xbe\x13\x03\xcc\xf3\x1d\x41\xc4\xbf\xfd\x30\x0d\x30\xe5\x3c\x3c\x5f\xd3\x9b\x06\xf8\xb8\x79\x7f\xba\x56\x7e\x02\x00\x16\xd3\xf2\x6f\xa4\xb4\x7e\x3b\x6f\x3e\xeb\xcd\x3a\x1e\x13\x3d\x23\x3f\xcd\x50\x9e\x55\xd1\xce\x4d\xd7\x0e\x72\x98\x0f\x3c\xe4\xc5\x14\x3e\xba\xcf\x8c\xc9\x1f\x75\x3f\x24\x9b\x94\x01\x1e\x9b\x43\x54\x12\x49\x5a\x1a\x1f\x03\xb8\x9d\xa8\x81\xc9\xef\xf4\x85\xc8\xaa\xb4\x9b\x47\x25\xed\xab\xc0\xd5\x4a\xc9\xe2\x88\x6c\xd1\xd4\x99\xc7\x2d\x45\xbb\xb0\x9d\xf7\xe1\xeb\x6a\xba\x6a\x69\xef\x53\x21\xad\x2b\x5f\x7d\x8c\x6d\xae\x3d\xd9\x80\x1c\x9f\x2d\xf9\xb3\xf5\xfe\xe6\xab\x11\x0a\x68\xb6\x68\xdb\x3e\x11\x66\x87\x9a\x88\xe5\x3b\x09\x4f\x73\xc6\xd3\xa5\x7a\xe5\xb8\xca\x15\x69\xbd\x60\x9f\x91\x6e\x49\x43\x6c\x92\x8e\x20\xea\x4b\x29\x4b\x6b\x19\x10\x55\x90\xef\x42\x8b\x3f\xdc\x6c\xaa\x9b\x7d\xb8\xfd\xe9\x85\x20\x95\x34\x6f\xd6\x1b\x0f\x90\x3f\x65\x8e\xed\x3e\xdc\x54\x2f\xa6\xdc\xd0\xf9\xc1\x7d\x96\x55\xec\x2f\x2f\xd8\x5a\x40\xc6\x81\x9c\x72\x8b\x07\x64\xb0\xb8\xde\xfe\x3a\xbd\x55\xa9\x95\x40\x1d\xec\xcf\xe5\x9f\x9f\x80\x20\x9b\xc4\xfa\x92\xeb\x8c\x49\x81\xc8\x38\x1e\xf3\xbb\xf1\xfb\x3f\x92\xcc\x82\x2b\xea\xef\xeb\xe2\xdf\x19\x06\x18\x42\x19\x4a\x40\x05\x86\x2e\x09\x09\x01\xa9\x19\x69\xa4\x53\x1a\xa4\x41\x1a\x04\xc9\x01\x01\x11\x41\x60\x08\x29\xe9\xee\xee\x46\x50\xba\xbb\xa5\x41\xba\x73\x9e\xf5\xfb\x3f\x6f\xe0\xec\xbb\x3e\xf7\xec\x7b\xf6\x5d\x67\x2a\x93\x07\x51\x74\x74\xf9\xfb\xde\x5b\xcf\x9f\x28\xde\x3f\x81\x60\xe1\xed\x4d\x13\x8f\xb1\xf6\x43\x85\xe2\xe8\x98\x5a\xcb\x34\x75\xfb\xcb\x2f\x3e\x1b\x9d\xca\xff\x8c\x53\x96\x23\x4a\x60\x21\x6e\x33\x14\x81\xa9\x24\x23\x95\xc3\x38\xc1\x26\x44\xba\x18\xde\x09\x43\xcc\xce\x69\xd3\x4d\xa4\x1b\xae\x31\x95\x5b\xa9\x64\xd9\x1f\x32\xce\x21\xed\xf5\x65\x6f\x67\x4e\x67\xaa\x8b\x2d\xa8\xa7\x9d\x44\xf8\x89\x6b\xf9\xb7\xe5\xad\xe9\x6f\x49\x38\xdd\x20\x54\x22\x6f\x95\xd2\x57\x2d\xca\xbf\x07\xa6\x98\xcf\x74\x28\x32\x8a\x3c\x5f\x7c\x44\x9e\xa0\x34\x2b\xd6\x9a\xd2\xb6\x28\x60\xad\x05\x26\x04\x78\xfa\xf9\xd6\x9d\x6d\x64\x6e\x82\xfa\xf2\xf9\xff\xc5\xd0\x68\xd4\x97\xac\xd5\xdc\xa1\xef\x2a\xb2\x32\xe8\xdd\x0e\x3f\x61\xaa\x0f\x30\x2b\xcb\xee\xe1\x97\x82\x43\xdd\xdf\x06\xbd\x67\xaf\x99\x66\x74\x80\xcc\x58\x94\xf2\xf2\x29\x81\x9f\x7f\x4b\x9b\xc4\xea\xcb\x17\x07\xcb\x93\xfb\xb4\x63\x9b\x82\x2f\x6e\x0d\x0d\x5f\x14\xf0\x59\xb9\xde\x1c\xee\x3e\xfe\xb4\x2a\xb7\xbc\xff\x18\xfe\x58\x61\x8c\x7e\xb9\xb1\x9e\xfc\xd6\x6f\xa0\x43\xde\x3a\x48\x37\x7d\x92\x60\xe4\x1b\xd3\xf3\x8d\x07\x1d\x10\xc2\xdb\x94\xc1\x4f\xd8\x5e\xc1\xd1\x44\x5c\xcf\xd7\xda\xed\x8b\x81\x78\x55\x1e\x66\x5b\x51\xd9\x38\xc8\x97\x1b\x91\x8d\x9b\x9d\x66\x84\x42\xb2\xbc\xbc\x16\xd4\x38\x78\x7f\xa0\x47\x52\xa4\xfa\x6b\x10\x84\x69\xf3\x95\xce\x65\x2d\x68\x78\xf7\xe5\x48\x5e\xb9\x93\x80\x67\x53\x2a\x08\x94\xb9\xd0\xc5\x0c\x4c\x50\x22\xe3\xee\xd0\x77\x9f\x38\x95\x1c\x5c\x16\xd0\x72\xcc\xdb\x20\x1d\x64\xf0\xdf\x66\xb7\x12\x7e\x16\xb1\xa0\x0b\xbf\xcb\x0e\xf5\x79\x49\x26\x8c\xf4\xa8\x99\x50\x7b\xd9\xd1\x64\xba\x21\x31\xd4\x0b\xd2\x19\x1b\xc8\xea\xe1\x3f\xb2\x7b\xd8\x30\xe9\x48\x14\xa6\x52\x3e\x6e\x3c\x8e\x5d\xda\x28\xf4\xd1\x86\xef\xe2\x44\x53\xe9\xe6\xa7\xda\x33\x7b\x25\x4a\x85\x21\xcd\xf5\x65\xb1\x36\x52\x91\xcf\xc2\x27\x64\x40\x1b\x47\xb3\x85\x17\x1c\xb1\xad\x29\x89\x72\xda\x33\xee\xa5\x54\xbf\x31\x37\xba\xfd\xfe\x97\x46\xb7\xc7\x7f\xd8\xe4\xb1\xde\x1c\x63\x59\x5a\xff\x8e\x8e\x89\xf1\x35\x5e\x08\x12\x87\xde\x0a\x87\x1c\x0c\x3d\x07\x10\x8b\x04\xaa\xee\xbd\x9e\x4c\x60\x76\x32\x2b\xf4\x13\x79\xc9\x22\x19\x66\x34\x88\x25\x92\x27\x00\x46\x88\xe5\xd9\xab\x27\xc0\x10\x5c\xe7\xc2\xb2\x7e\x39\xe0\xc5\x6a\xf2\xe1\x44\x2f\xe4\x11\xc3\x9f\x62\xf3\x5e\xab\x86\x98\xbe\xbc\xe7\x02\x25\xcb\xe9\x60\xd8\x2b\x6c\x18\x70\xc3\xc7\x9a\x83\xab\x82\x22\xb8\x6d\x80\x22\xa5\xdb\x8d\xab\x8c\xcf\xa8\x83\xdb\xa7\x97\xd4\x02\xa7\x9e\x62\xca\xb9\xbe\xa8\x95\x44\x36\xe1\x63\x1e\x4b\xfa\xe9\x19\xac\x68\x84\xf0\xd7\x68\xaa\xb7\x31\x68\x88\xe2\x97\x62\xe0\x72\xae\xc7\x7c\x5b\x1e\xe7\x87\xdd\x1f\x52\x50\x47\x06\x28\xa3\xb9\x0a\xdc\xe9\x52\x00\x75\x73\x67\x79\xa7\xde\x17\x6b\xd4\xfd\xbc\x3b\xa4\x65\x84\xc7\x9c\x82\x7b\x58\x7b\x5d\x47\x07\x7f\xf7\x85\x14\x07\xb0\xf4\xf4\x76\x13\x7b\x3b\x0f\xdc\x2e\xd9\xea\x50\x54\x20\x60\xae\x4d\x5d\xa7\x00\x24\x66\x68\x2e\xd0\x53\x75\xaa\xc6\xca\x3c\x21\x8f\x21\x09\xc7\xc3\x3d\x03\xf3\xc7\xa1\xfe\x36\xbb\xb5\x95\xb3\xb6\x1d\xe6\xb3\x0a\xfe\x13\x08\xc7\x7a\x0e\x12\x88\xb9\x7a\x18\xb2\xd9\xa0\xd6\x97\xf4\x1e\xd1\x3b\xa4\x99\xb4\x2e\x72\x9c\x6a\x4b\x7b\x9c\x0a\x94\x81\xe1\xc5\xf8\xed\x1a\x10\x51\x8b\x76\x0d\xe8\x9d\x02\xb2\x3c\x23\xb2\xad\x22\xda\xbf\xe4\xa7\xcc\x1d\xcd\xc4\xc9\x25\xf4\xa3\x59\x1c\x80\xe8\x79\x6e\xd3\x8f\x7d\x6e\xbe\x40\xaf\x23\x53\xf3\x95\x7c\x53\x6e\x78\x6a\xdd\xf1\xe7\x72\xc4\xcf\x00\x27\xba\x99\x4d\x6c\x68\xb1\xb0\xe2\x71\x34\x08\xf1\x93\x83\x83\x9b\xd5\x2d\x1f\x2f\x92\x1a\x09\x30\x5a\x28\x70\x97\x90\x55\xf3\xc1\x68\x70\x28\x9f\x11\x01\x08\xef\x37\x5a\x7c\xb9\xb6\xf2\x03\xcf\x05\xb1\x01\xbe\xec\x6e\x7b\xde\x92\x06\x6a\x0e\x10\x24\x06\xc9\xed\x60\xca\x2d\x5f\xdc\x43\xac\xe9\xca\x71\x62\xb5\xa1\xbb\x43\xca\x9e\xb1\x5b\xae\xe2\x97\x8d\x6c\xff\x40\xed\x78\x90\x1a\xb5\x5c\x6a\xf9\xe7\x69\xb5\x5e\xa7\xe9\xbe\xc3\xfc\xee\xd2\xad\x21\xce\x24\xf2\x98\x40\x39\xf8\x8c\x05\x0f\x87\x1c\xd9\xa6\x0e\x13\x0d\x64\xf2\xeb\xe0\x95\xc5\xa8\xa6\x94\x0b\x1f\xb7\x94\x0a\x17\xe7\xb8\x8f\xe3\x4f\x51\x3f\xd7\xe7\x2a\xd4\x21\x0b\x7b\x62\xe2\x76\xf9\x22\x5b\xb5\xba\x59\x5d\xd3\x18\x8a\x87\x15\x14\x6c\x24\x52\xd2\x96\x78\xcb\x63\xac\x5d\x89\x97\x2c\xca\x67\x5b\x81\x81\x17\x7e\x53\xe6\x8c\x8d\xa3\xe0\x0d\x89\x0d\xf4\xdd\x60\x7a\x41\x64\x62\xee\x0a\xdc\x09\x3a\x78\x42\x11\xef\x43\x24\xaf\xde\xd9\xc7\x26\x7c\x26\xab\xeb\xfd\xb0\xc0\xfc\xba\x7a\x29\x7c\xd1\x41\xa1\x83\x72\xf4\x33\x05\x7c\xfb\x71\x29\x08\x31\xa9\xa5\xe6\x77\x5b\x7d\xe2\x60\x91\x64\x60\x05\x89\xd0\xf2\xeb\x27\xee\xa4\x26\xdf\x3f\x28\xf9\xd3\xc6\xf6\xa2\xcf\x18\x6c\x6b\xe7\x43\x5a\xfd\x40\xc4\x7f\x70\x61\x73\x35\x3b\xec\xd7\xd3\xe4\x89\x15\x98\x01\x52\xa1\x3a\x9b\x3e\xbb\x25\xc7\xe2\x5b\xbf\xed\xd8\x94\x31\x35\x73\x9e\x2f\x7e\x70\xe8\x94\x58\xb1\x0f\x27\x0b\xa4\x92\xec\x33\xb7\x3b\xd1\x79\x1a\xe8\x6e\xde\xf1\x7c\x27\x31\xc9\x4d\xd8\x26\x9a\xb1\x5a\xaf\x43\x2d\x55\x07\x33\x6d\x6a\xdf\x1c\x17\x17\xe8\xa5\xee\x7a\x84\xf7\x0b\x77\xe9\x72\xb3\x60\x3a\x95\xb7\xd7\x55\x43\x40\x78\x4f\xbf\x49\xe7\xd1\x08\xb3\xd9\xcd\xaa\x0d\xcd\x04\x36\x1e\xf9\x03\xd0\x4e\x18\x4c\xf5\xca\x94\x1c\x9a\xe8\xc3\xdf\x09\x1f\xec\xe6\x6b\x1c\x57\x84\xfc\x13\x60\x66\xa2\x54\xb9\x33\xac\x6f\xfe\xee\xcc\x35\xb1\xec\x4a\xa0\x27\x48\x89\x07\x30\xf2\x7d\xad\xab\x1d\x62\x6b\xeb\x98\xd0\x5e\xf3\x3e\xb0\x18\x40\x50\x5d\xd0\xcb\xe0\xc9\x4a\x5f\xb7\x58\x5c\xd7\x35\xe5\xad\xab\x50\xd9\x4c\x35\xcb\x76\x77\xde\x26\x5d\x2f\x73\x2c\xed\x09\xbe\x9a\x4a\xe7\xa5\x9c\x3a\xcd\xfa\xf1\x3c\xbd\xfc\x55\x59\xc7\xd6\xc3\xef\x3c\x43\xab\x91\x47\x5c\xa6\xdf\x63\x67\xc3\x9a\xd3\x45\xae\x5e\x84\x5f\x19\x05\x0b\xc9\xbd\xc4\x4d\x33\x66\xcb\x7f\xdb\x8d\x5d\x07\xdc\x9a\x02\x8e\x41\xa5\x18\xaf\xdb\x32\x0d\xcd\x43\xff\x4f\xb9\xec\x69\xf1\x3b\x9e\xd5\x69\x3a\x86\xcd\x29\xd5\x72\x4f\x00\x6d\x3a\x83\xeb\x1d\x0e\xdf\x63\xc0\xcd\x06\x67\x9d\x08\xc4\x23\x99\x9b\xcb\x74\xcc\x2b\x99\xf1\xb3\x5e\xe6\x49\x77\xb7\xc6\x71\xa3\xf6\xd3\x38\x28\x2b\x1a\xc4\x82\x42\x31\x41\x61\x46\x24\x94\x2f\x48\x8b\x00\x44\x4e\x3c\xf3\x9e\xbe\x55\x9c\xf1\x34\xef\x7a\x6d\x3e\xe1\xcc\x6f\x2d\xd5\x8a\x72\xd6\xb6\x3a\x57\xbd\xeb\x50\x85\x7c\x68\x49\x85\x73\x9b\x5d\xb3\x19\xc9\x82\xda\x68\x86\xb0\xa6\xbe\x1c\xa9\x5e\x0b\x56\x75\xff\xe5\x9d\xff\xbc\xf6\xec\xc8\xb7\x6e\x5a\xe4\x84\xd4\x5b\x30\xc0\xbb\x99\x9e\xfd\xc8\x26\x80\x27\x36\x68\x74\x39\x2d\x4a\xf1\xf8\x9f\x81\xae\xf0\x23\x43\x05\x90\x48\x71\x5b\x22\x06\xae\x91\xdd\x63\x5f\xa9\x38\xe3\x39\x70\xa0\xca\x9a\xda\x4f\x39\x16\xf8\x2b\xea\x07\x64\x56\x69\x49\x94\xfc\xf3\x19\xe0\x19\xc9\x59\xca\x2f\xf9\x3e\x9e\x6e\x9c\x5e\x72\xa1\xc7\xf7\x69\xc9\x27\x32\x56\x32\x25\xa6\x0f\xe8\x9e\xe7\x8c\x21\x7a\x8d\xfc\x11\xe6\x6f\x22\xd2\xb9\xaf\xe2\x00\xfc\xfd\x27\x21\xfe\x55\x74\x00\x82\x5d\xf7\xc4\xf3\xb6\xf8\xa4\xa8\xe1\xf6\xd5\x2f\xfc\xb3\x4e\xe7\x4b\x48\x3d\x7b\x1f\xc5\x93\xec\x4b\x0f\xe5\x7e\xda\x7a\xfc\xb9\xcf\x1f\x57\x0f\x69\x2f\x9f\x09\xef\x1f\xe4\x6f\xd9\x5d\x61\xda\xb8\x68\x02\x56\x3e\x49\xfb\xd2\x66\xb6\x2e\xff\xae\x09\xc6\x43\xbe\xa1\x54\x27\x79\x95\xf8\x9b\x41\xfb\x86\x02\x7b\x33\xbd\xe7\xb9\x28\xc1\x2d\x4d\x6d\x39\x0c\x21\xc8\x84\x00\x03\x24\xae\x72\x8a\xee\xce\x4f\xb0\x9e\x7e\x1b\xa6\x33\x65\x4d\xac\xce\x66\x5a\xec\xf0\xd2\xcd\xb1\x08\xdd\x86\xce\x70\xe3\x08\x10\xfe\xf1\x3e\xbb\x7c\x65\x09\xb4\x0b\x81\xf5\xd4\x6c\x3a\xe8\x9a\xd9\x2b\x46\x5f\xf4\x42\x25\xdf\xb3\x46\xf3\xf7\x56\xbf\xa9\x78\xaf\xf0\x42\x81\xe1\x99\xf5\xb2\x65\xc7\xe8\xca\x33\x1a\xd2\x29\xea\x91\x00\x27\xe9\x74\x3f\x38\x22\x87\x6a\x47\xfc\x77\xe8\xa0\x78\xf9\xfe\x2f\x9a\x96\x20\x36\xda\x9d\xfa\xbd\x74\x27\xfe\xea\x64\x63\xf4\xf2\xbc\x70\x8e\x81\x2b\x7f\x35\xd6\xed\xec\xb1\xda\xf8\x41\xe7\xdc\xc3\xe3\x9f\x30\x0b\x60\x05\x00\xb7\xce\xdb\x5d\x7c\xcd\x47\x0a\x91\x80\xa3\x04\xbe\x0c\xd0\x53\x3e\xfb\xfc\x8d\x95\x2c\x2f\xe3\x52\xef\xca\xe4\xda\xcc\xf5\x01\x39\xd0\xf3\xb2\x53\xd5\xc7\x00\xc7\x83\xee\x31\x7a\x37\x33\x5c\xb1\x02\x1f\x91\xc5\x0e\x0f\xc4\xdf\xc9\x10\xee\x7b\x8e\xca\xe5\x28\x2e\x1c\xc9\x94\x7c\xa7\x55\x66\xf7\xc9\x0c\x64\x29\xa7\xa4\x3b\x86\xde\x34\x19\x8c\x7d\x97\xe7\x07\x04\xe2\xc1\xd3\x21\x9e\x97\xe5\x12\xb4\xed\x21\x53\xde\x26\x18\x23\x04\xaa\x4f\xf7\x24\x54\x21\x4c\xe4\xb2\xbd\x16\x2d\x72\x26\xfd\xf7\xa4\x42\xed\xe3\x2d\x50\xf7\xde\xd3\xd5\x51\xda\x4f\xd0\xe3\xcd\x43\xb5\xe9\xf5\x97\x88\xa6\x47\x45\xb7\x12\xd6\xf3\xf3\x0c\x39\x92\x98\x7b\xac\x7b\x43\x09\xe8\x75\x9b\xa4\xe1\x6a\xd8\x37\xad\xb8\xcc\x17\xe1\x5f\xeb\x48\x9c\xe1\xbc\xd2\x36\x83\xdd\xb6\x66\x65\xfb\x16\xcc\x08\x6b\xf2\x20\xa9\x8a\xb0\xdd\xb0\x5f\x33\x28\x21\xf5\xd7\xc5\x0d\x25\xeb\x77\x36\x07\x25\x7e\x1c\x40\xc7\xaf\xd6\x11\x51\x54\x98\x42\xff\xab\xd5\x0d\xa4\xd1\x2f\xbf\xcf\x80\xd3\x02\x7d\x3f\xde\xb7\x5f\x04\x8d\xcf\x26\x14\x8e\x1f\xca\xce\x55\x44\x48\xc3\x09\x1f\x54\x01\x84\x27\xcb\x9f\x29\x2c\xd0\x84\x7a\x90\x63\xaa\xc6\xb2\x0b\x79\x53\xfc\x92\x8b\x31\x5a\x49\x3c\xbc\xc0\x4e\xd6\x3b\x83\xa7\x5e\x06\x2d\x3a\xa7\x1f\xbd\x3c\xcc\xad\x20\x58\x10\x8e\x3f\xa2\xf7\xec\x90\x09\x83\xdd\xff\xd0\xd9\xf8\x10\x11\x7b\x44\x64\xf6\x6b\x68\x38\xed\xd1\xb2\x26\x98\x07\xd7\x66\x82\x6f\x05\xab\x1f\x11\x94\x51\xaf\x18\xfd\x5e\x01\x77\xb7\x75\x2e\x17\xe2\xf4\x8b\x98\x96\x61\x8d\x10\x04\xff\x85\xec\x11\x75\x7b\xd2\x6e\xcd\x0c\x92\x81\x25\xf2\x6b\x8c\x59\xcf\xc6\xea\x82\x7a\x14\x55\x77\x1f\x1b\xc9\x25\xa2\xa7\x89\x79\x0a\xf9\xb1\x4d\xc2\x1d\x84\x90\xfc\x86\x21\xbf\x83\x94\xa2\xec\xec\x29\xbe\xa5\x9b\x33\x1f\xf7\x4c\x09\x9f\xff\xdc\xe7\xeb\xe3\x0e\x27\xf3\xfb\xf3\xfb\xc5\xf5\x39\x5c\x15\x6f\x52\xa1\x6a\x2c\x2f\x79\x98\x55\x62\x59\x3f\x5a\x22\x8f\xb7\xaf\xcb\x6f\x6f\x3e\xbf\xf5\x32\xba\x14\x43\x4c\x5a\x9a\xa5\xfc\x0e\x0a\x80\x80\xdc\x50\x86\xd7\xda\x97\xd4\x5b\x84\xce\xd3\xdd\xcf\xd3\xb5\x12\x77\x98\xaf\xee\x87\x89\x81\xf4\x42\x05\xea\x1f\x4e\x31\x91\x31\xc5\xc8\x41\x7f\xdc\x54\x73\xbf\xf5\x12\x14\x08\xa5\xad\xa9\x27\x60\xae\x4d\x59\x95\x81\x48\x57\x15\x15\xb3\x90\x73\xe5\x95\xc6\x72\x1c\x81\x53\x3e\x7a\x3d\xf1\xe5\xcb\x79\xf8\x65\xb1\xbe\xff\xf0\x15\x3a\x2b\x73\x71\x01\xef\xfa\x66\x93\x6f\x77\xb8\xbf\x6a\xcc\x9d\x3d\x63\xae\x7c\x7a\x52\xc5\xb3\xa5\x63\x78\x68\x09\xef\x7a\x3f\x82\x60\x97\xfb\x2d\xdf\x98\x6f\x48\x06\xb0\xda\x29\xf1\xe2\xc0\xdf\x5c\x00\x43\x8a\xbf\x7b\xf4\x5c\xad\x53\xb8\x7b\x21\xf8\x65\x43\xe9\x73\xd4\x7c\xd0\xb3\xc7\xab\xa9\xb2\xd7\xe9\xb7\xb6\xae\x12\xa5\xbd\x03\x15\xd0\xa2\xa3\x97\xd1\x02\xf1\xbf\x2e\x6a\x49\x2e\xee\x2b\x15\xee\xb3\x7a\x70\xb5\x4d\x3f\x92\x75\xa1\xe6\x9e\xda\xce\x04\xcd\x0a\x24\x6e\xfe\x2e\x61\x80\x9b\xb2\xbe\xd2\x8a\xd1\xd1\xa4\xb0\x1b\xd9\x05\x51\xbe\xcb\xc2\xe9\x38\xc2\x63\x05\x21\x23\xb5\xcb\x91\x51\x6d\x3a\xcd\x82\xfc\xb9\x7f\xa0\x7d\x3f\x2c\x73\xbc\xf7\x86\x0b\xdb\x66\xc4\x38\x31\x63\x8a\x2b\x93\x15\xdc\xe4\x52\xed\x05\xe1\xb6\x71\x36\x3b\xdf\x22\x08\xfa\x96\x1d\x7f\x6a\x2d\x09\x90\x7a\x62\xa9\xbe\xa5\xbd\x33\xf9\x6b\x5c\xe7\x87\x31\x5b\xbd\xa1\xc5\x4a\xba\x25\x96\x06\xc8\x4e\x8f\x1b\xa6\x61\x3c\xfa\xef\x05\x28\x5c\xb9\x0f\x37\x47\x70\xe2\x95\x28\x6b\xcc\xb5\x2d\xad\x45\xc5\xed\xb4\x82\x1d\x8a\x95\x13\x55\x5e\x7c\xbd\x26\x8f\xaf\x35\x22\xbe\xcf\x74\x74\xa6\x33\x1e\x8b\xf5\xc8\xa4\xb6\xb3\xe2\x60\x1f\x6c\x0a\x4a\xc6\x0f\x9e\x00\x4a\xd7\x10\xed\xcf\xb3\xb3\xa5\xb5\xf9\x29\xec\xc8\xe3\x70\xfa\x35\xa4\x78\x57\x8e\x3b\x9a\xf2\x44\xee\x9b\x95\x8e\x37\xa0\x06\x7c\x01\x3f\x4b\xaa\x14\x1a\x78\xa5\xa7\x2a\xed\x0e\x08\xbe\xa6\xdc\x16\x9b\x9f\x92\xfd\xcd\x7a\x99\xd6\xcc\x02\x73\x0a\xe9\xa8\x78\xef\x59\x54\x0f\x37\x1e\xe6\x56\x30\x9e\x7b\xbd\xb4\x56\x6f\xb3\x71\x7b\xbb\x8c\xcb\xb2\x84\xb7\xea\xff\xcb\xe9\x57\x03\x5b\x05\x09\xee\xd0\x08\xe5\x07\x95\xe7\xa8\xd9\xa0\x69\xbd\x36\x77\xf8\xb0\xea\xe9\xa5\x30\x58\x3b\xc6\xe6\xeb\x7b\x07\xf9\x0f\xd5\xfa\x20\x57\x40\x7b\x6c\xdb\x4b\x2d\x8b\xdc\x9a\xe8\xeb\x23\x29\x3c\xa1\xb0\x5f\x30\x7f\x2a\x93\x2a\x92\xf4\xcc\x31\xf4\xe7\xdf\x45\x4c\x3c\x00\x7c\xb1\xe3\xad\x8d\xa4\xc2\x61\xcf\x4f\xa5\xed\xd4\x02\xb6\x57\x95\x78\x74\xd9\xfc\xb0\x74\x43\xbc\x50\x42\xef\x80\xb2\xb8\x17\x0c\x7f\xd8\x54\xde\xc6\x47\xd3\x37\x4c\xbc\xfa\x94\x30\xeb\xc6\xbd\xc3\xe4\xa5\xe0\xe2\xf9\xbc\x82\x58\x79\xea\x4d\x3b\x95\x4c\x6d\x56\x46\x4b\x1f\x7f\x43\x8c\x71\xac\xe3\xd4\x98\x67\x0c\xb1\x66\xc0\xfd\x73\x28\x26\x2a\xa5\x1c\x29\x61\x16\x73\x2c\xb1\xc9\x7f\x28\x19\x86\xda\xf8\x3b\x74\xb3\x23\xb6\xa8\xba\xbd\x7d\x99\x53\x8e\xc7\xbd\xdf\xf3\xf3\xd1\xb6\xe1\x91\x07\xbe\xc8\xe9\x62\x7d\x95\x8d\x7c\x71\x7a\xa3\x90\xc8\xbf\x1a\xf7\x4e\xa6\x85\x99\x6f\xc2\x45\x16\x93\x25\x48\xb8\x73\xeb\xef\x3d\x27\x13\x9c\x49\xdc\x76\x63\xf1\x0d\x8a\x87\xc1\xc1\xf2\xe2\x46\x69\xfd\xbf\x39\x48\x83\x3f\xc8\xcc\x06\x4f\x2e\x33\xb9\xf1\x20\xba\xe0\xf7\x5c\xa2\xc0\xef\x50\x9a\x58\x94\xb2\xfc\xe7\x12\xc9\x60\x98\x50\x69\x60\xf1\x5d\xa5\x01\xe7\xb0\x5c\x51\xaf\xe1\xa5\x94\xd7\xbc\xef\x2b\xed\x6c\x96\xaf\x5d\x31\x09\x01\x10\x1f\xfe\x03\xa6\xef\x28\xde\xc0\x0f\xfa\xb2\x0d\x0a\xda\x8d\xfa\x06\x51\x07\x94\x6c\xcd\x4a\x78\x85\x80\xad\xde\xa5\x5f\x00\xed\xbf\x63\xda\x57\xe7\xca\x50\xcc\xc3\x68\x81\x2b\x9d\x55\x68\xd5\xcf\xa0\x2a\xfb\xb7\xc5\xf9\xaa\xe8\x40\xe2\xa5\x2c\xca\xbf\x43\x0e\x9d\xad\xce\x56\xa5\x17\xb0\xd7\x6e\x4a\xff\x5c\x38\xf5\xc4\xbd\x55\x78\xa7\x7a\x72\x38\x1b\x53\xcb\xb3\x63\x3c\x83\x8a\xe8\x14\xbf\x6e\x7c\x5c\x1b\xca\x95\xac\x7f\x34\xba\xc8\xa3\x3f\x85\xa9\x4e\x4b\xcc\x58\x07\x00\x94\xfe\xc8\x22\x9a\xad\xa2\xb3\xde\x42\x9a\x34\x0c\xcd\xa7\x75\x1d\xfb\x26\x1a\x7f\xd4\x9e\x5d\x9a\xa6\x3d\x68\x8c\x8e\x8d\x47\x48\x80\x67\x86\xbd\x3e\x91\x68\x44\xe8\x04\x50\x5d\x81\x9e\x7c\x0f\xa9\xbd\x88\xdf\xe0\x4e\x35\x98\x7a\x30\xbd\x17\xde\x3f\xc4\x27\x38\x11\x60\xf8\xaa\x63\x88\x1d\x27\x1c\xb2\xca\xe8\x48\xb7\x12\x0e\xef\x9f\x3a\x36\x12\x78\x7b\x70\x90\x8a\xf6\x3f\x5d\xaf\xbc\x48\x9b\x4a\xd3\x58\x2e\x34\xef\xc5\x62\xcf\x78\x0e\x67\x05\xf8\x89\x1c\x0d\x1f\xb2\xdb\xca\xc5\x31\xa6\xf2\xfe\x6f\xae\x24\xc4\x4c\x4b\xdf\x3f\x8e\xd8\xb4\xc3\x5e\xe4\xd4\x22\x6f\x7c\xb9\x4b\x31\xcb\xdc\x7c\x62\xdd\x77\x97\xc9\xae\x81\xf5\x9a\xe8\x2d\x3e\x3b\x24\x3a\xb5\x2e\xf3\x40\xfb\xe3\xda\x10\xd6\x8f\xf2\x68\xe5\x56\x4e\xbb\x83\x1b\xa3\x85\xd9\x60\xae\x30\xde\x33\x67\x09\xa1\x42\x19\x84\xbd\xa3\x82\x56\x46\x4d\xd8\xee\x41\xfd\xbb\x0a\xf3\xd7\xe2\xd4\xa0\x97\xb2\x0a\xb5\xcc\x69\xd3\xd4\x99\xcf\x78\xf7\xf8\x0b\x14\x78\x32\xdc\x8e\x21\x9e\x60\x11\xdb\xe2\x0f\x57\xfc\xc2\x90\xdc\x22\x38\x43\x1b\x6b\x1c\xc1\xe9\x98\x64\x49\x67\x2e\x89\xf7\x81\x8b\xa8\x8a\xce\x04\x7b\xf2\x8f\x0f\xa9\x70\x32\x4d\xa9\x06\xde\xf4\x52\xcb\x94\xb5\xc6\x1c\x15\x26\x73\xa1\xa7\xec\x94\xf2\xcd\x46\x89\xf1\xa9\x9a\x7c\xe6\xe3\x6a\x6a\x54\xaa\xfd\xd5\x22\x0c\x7f\xa1\x8d\xb7\x5d\x06\x0f\x6f\xae\x88\x70\xfc\xdb\xf0\x1f\x8b\x7f\x2e\x2a\x1c\xd1\xe3\x3a\x10\x4d\x28\xe8\xe3\x8e\xf6\x4a\xbb\x8e\xfe\xcc\x60\xa2\x15\xe7\x20\x9a\x5a\x49\xe3\x4a\xf6\xfa\xe5\x4b\x05\x20\x84\x69\xa7\xd6\x73\x51\x9b\x6f\xea\x3e\xe6\x93\xbd\x8e\xf3\xb1\xdc\x66\x8a\x2e\x09\x87\x43\xf6\x3f\x6e\xd7\x97\x2c\x44\xa3\xa4\x0c\xb7\x34\x38\xdb\x76\x7f\x47\x6b\xec\xa6\x57\x76\x27\x8b\xd4\x3e\xb3\x31\x5a\x87\xe7\x42\x00\x72\x58\x7e\x15\xb9\x85\x65\x69\xa6\x41\xd4\xef\x7c\x26\x9e\x42\x4c\x57\x2d\xfa\x42\x16\x7b\x71\xd0\x75\xe2\x93\x5f\x83\x87\x21\x24\x26\xf8\xd0\xe8\x12\x5a\x25\xf5\x7a\x03\xeb\xea\x4b\x77\x3d\x27\x2e\x78\x5e\x4b\xad\x26\x9e\x6e\x3e\x47\x77\xa7\x22\x9a\xb9\x48\x3b\xf0\x83\xf0\x53\x2e\x55\xaa\x49\x21\x50\xb2\x59\xfa\x73\x06\x7c\xa8\x73\xbe\x20\xd1\x8e\xe1\x75\x31\xcb\x71\x83\xe2\x9b\x57\x31\xd1\xab\x85\xf5\x1f\xba\x8f\x3f\x72\x2a\xd1\xfc\xb0\xca\xe1\x3e\x7d\x7b\x62\xd5\x10\x73\x92\x17\x2c\x7d\x5d\x9b\xf8\x4b\x5f\xf1\x8d\x34\x62\x90\xcb\xaf\xa3\x2b\xed\x6c\xeb\x70\x7f\x99\x73\x89\x3b\x08\xa3\x41\x52\xb9\x8c\xc3\x02\x7a\x75\xa9\x1f\x52\x1f\x28\xdc\xf9\x8d\x69\xa3\x79\xf7\xef\x40\xf9\xb0\x18\x61\x48\xc3\xa9\x67\x9f\xcf\xe1\xa6\xcf\xf9\xeb\x2e\x25\x22\xf5\x77\xb3\xd6\xaa\xb0\x10\x25\xf0\xd9\x14\x37\x16\x4a\x5d\x8d\x2d\xb9\x88\x75\xb6\x9a\xad\x04\xf6\x5d\xa6\x84\x0f\xbe\xac\x24\x24\x28\x61\x58\xda\xac\x35\xb2\x68\x6f\x9d\x86\xa6\x9a\xe2\xf8\x8c\x25\xda\xf2\x81\xca\x5c\x94\xd1\x96\xf4\x83\x83\xdf\x75\x42\x95\x1d\xa9\xf6\xd4\xcf\x63\xca\xc9\xed\x8c\x46\x4f\x87\x8c\xec\x14\x4f\x7e\x0b\x71\x93\xa0\x2f\xe7\x76\x4f\x8c\x50\x66\x88\x50\x96\x76\x0e\xfd\x13\x68\xcb\x61\x46\x8d\x3f\x0a\x1b\xd0\x5b\x53\xf5\x8d\x64\x07\x58\x15\xdf\x4c\xee\x92\xb1\x69\xe5\xfd\x79\xfa\x37\x1d\x96\xbc\xa7\x17\x97\x13\xf7\xf4\x6d\xef\x13\x15\xb9\x27\x91\xfd\xaf\xde\xc2\x70\xdd\x0c\x2e\x1f\xc3\x7e\xa1\xe0\x43\x78\x13\x62\xd8\x29\x59\x8d\x95\xaa\xfe\x90\x3e\x46\xf3\x06\xde\xc2\x46\xf6\xc2\xd7\xec\x85\x42\xec\xa5\xef\xf0\x0c\xca\xdf\xe7\x0f\x40\x4f\x88\x36\xf1\x92\x3f\x1d\xa6\x79\x1c\xfa\x9f\xe9\xdf\x99\x72\x29\xd2\xdd\xe1\xbe\x9d\x59\x08\xdb\xbc\xef\x21\x9e\xd9\xb3\xb1\x33\xe3\xb0\xf1\x8f\x2e\xcf\xde\x50\x0b\x0f\x4e\x26\x99\xf7\x16\xb5\xf0\x95\x77\x36\xff\x93\xaf\x21\x8e\x70\x3a\x50\xfc\x56\x37\x88\x7e\xb7\xdf\xe3\x73\x9e\x95\x58\xe8\x43\xa7\x1f\x33\x1c\x39\xf6\x01\xd0\x78\xdf\xcd\x42\x75\x7a\x3a\x98\xdd\x82\xbd\x9a\x96\x51\xa1\x00\x3e\x23\x65\xbb\x03\xa1\x0e\x7a\x7e\xa6\xb0\x55\xb5\xc4\xe2\xe5\x8d\x5e\x41\x95\xa4\x28\xc3\x06\xb5\xe3\x4e\x49\x24\x0f\x85\x6f\xf1\x11\xef\xb8\x50\x94\x84\xfc\xab\x41\xb1\x6d\xe0\x20\x47\x4d\xd3\x55\xa0\x8d\xde\xa4\xb3\x75\x45\xa7\xe3\x34\x76\x92\xd6\x02\x50\x15\x02\xcf\x6a\x45\x6b\xaa\xc9\x3f\xae\x94\x02\x03\xea\x14\x57\x06\xf1\x1f\x4a\x49\x28\xc8\xa4\x1a\x82\xa8\x60\xbf\x84\x90\xc5\xad\xbd\xce\x81\xac\x5d\x08\x61\x9c\x1f\xc4\xeb\x8d\xf8\x95\xf9\x41\xff\x64\x68\xc1\xf8\x3f\x25\xc9\x4c\x15\x50\x98\x23\xc7\x77\xc8\x8e\xc3\xe5\xe6\x04\xcc\xd3\xaf\xc3\x92\xc6\xc7\x2c\x46\xb8\x45\xa5\x49\x87\x05\x74\x55\x73\xf7\x36\xa7\xdf\xba\xd1\x37\xea\x9d\xf4\x6f\xbb\xc4\x6d\x24\xc8\x5c\xbd\xc5\xec\x0d\xfd\x45\x2d\xc4\x4d\x43\xbf\x08\x84\x65\x8e\x08\x13\xf3\x28\x0e\x5d\x91\xeb\xee\x1d\xc7\x36\xdc\x58\xf7\xdd\xb1\x9a\x46\x63\xbb\x4b\xbd\x01\x11\x82\x16\x95\x84\x3c\x0e\x54\x9e\x19\x8f\x79\x19\xa7\x28\xe3\x55\xf9\x1e\xc6\x0a\xff\x79\x0e\x60\x72\x29\x5f\xd8\xa4\x03\x2b\xf1\xfc\x75\x06\x5a\xdb\x5c\x5d\x0b\x34\x93\xf5\x9a\x94\xa1\x9f\x63\x79\x73\x4e\xe5\x35\x14\x28\x2b\x7f\xe2\x5a\xef\xcc\x3f\x2f\x84\x40\x99\x29\x0e\x3f\x53\x46\x53\x8c\xb4\xd0\x9b\x18\xb7\xb3\x13\x7f\xd9\xea\x3b\x5f\x48\x1a\x7c\x59\xf0\x1c\xb4\x0a\x21\xd6\x97\x5d\x6c\x54\x97\xb9\x58\x47\x99\x40\x33\xcf\x9b\xef\x14\x14\x54\xd9\x9c\xd2\xab\x56\x88\xf6\x0f\x58\x82\x30\x08\xa8\xc6\xab\x96\xcb\x71\x1c\x20\x99\xce\x41\xbc\x37\x41\x25\xd5\xbc\x3a\x32\x6d\x76\xb4\x8a\x44\x92\x81\x2f\xa7\x32\xbf\x21\xd2\xf1\x85\xa6\x44\x71\x6f\x35\xe1\x2a\x5d\x76\x79\xe3\x95\x09\x25\xbc\xfe\xe2\x09\x76\x32\x03\x4f\xdb\xbb\x62\xa3\xb4\xd2\xbe\x3c\xed\xb0\x5d\xad\xce\x10\x71\xfa\x04\x0a\xf7\xcb\xde\x1f\xae\x35\x97\xcf\xa6\xda\xda\xde\xf7\xdc\xfa\x04\x07\xc7\xc9\x8a\xe3\x8d\x88\xf4\x7e\x7f\x12\x25\x59\xaf\x35\xb1\xc0\x49\xe1\xea\x5a\x4c\x86\xf2\x92\x40\xc5\x75\x57\x56\xd6\x27\x97\x0b\x52\xe1\xdb\x43\xd7\x6f\xdd\x33\x20\xcf\x71\xdf\x30\x43\x6f\xe2\xda\x95\x4f\x21\xcd\x89\xe0\xd4\xf4\x1f\xbe\x5f\x30\x76\x6d\x60\x44\x7a\x0d\x7e\x77\x32\x15\xcd\x93\x10\x7c\x2f\xe6\x3b\x8b\x86\x0e\x51\x08\x8b\x93\xd1\xc7\x5f\xa7\xe9\x63\x2b\xfe\x83\x72\x3a\x25\xb0\x07\x2c\x96\x3e\xfc\x5a\xa0\xbd\x38\xbf\xda\xd3\x2c\xe3\x44\x6d\x0e\xde\xff\xcd\xe2\xbc\x8f\xb5\xbe\x93\xf3\x6b\xdc\xe1\x20\x25\x6d\x71\xce\x3f\xf7\xef\x73\x85\x32\x5e\xee\xc1\xb2\x9f\x92\xee\x69\x5e\x31\x50\xb8\x7e\x14\x37\x62\xc3\xc8\xe4\x08\x09\xeb\x68\x73\xfd\xa5\x7b\xb5\x52\xc8\xce\xef\xe1\x5d\x7b\x31\x54\xd2\xb0\xbb\xdf\xd3\xd8\x65\x69\x2e\x15\x87\x75\x11\xdc\xca\xbd\xf4\x83\x92\x3c\x1e\x2a\x67\xe2\xaf\xa1\x01\x20\x06\x13\xd4\x2d\x33\xb2\x8d\x34\x59\x95\x2f\x30\x24\x44\x84\x41\x40\x28\x53\x05\x2e\x51\xee\xa0\x77\x73\x2a\x35\xf5\xc0\xdc\x87\xde\x77\xe4\x5f\x51\xbf\x3f\x47\xad\x23\x24\xec\x95\x14\xe0\x7a\x94\xde\xcf\x50\xcb\xf8\x87\x4f\x22\x0f\x63\x7f\x1a\x9f\x8a\x79\xc9\x0a\x1c\x89\x16\xc6\x2f\xb7\xbd\x0c\xb6\x1f\xfa\xf9\xaa\x30\xb7\xdf\xd8\x07\xe7\x46\x05\x4e\x0c\x83\xfb\x0c\x9f\xc7\x4a\xe3\x01\xd9\x85\x9d\x06\x41\x51\x22\x86\x71\x3f\xaa\xe9\x9a\x3a\xd9\x36\x2f\xd6\xc2\xdd\xf7\xd7\xe2\xfa\x1c\x39\x9e\x2e\x06\xdf\xaf\x8f\xa5\xa2\x57\xc0\x90\x18\x3a\xfd\x1e\x7a\x6f\x59\x35\x57\x7b\xfd\xbf\x71\x1f\x94\x52\x27\xa9\x79\x05\xc2\x8f\x5c\x0d\x77\x5e\x2e\x37\x7d\xcc\xbc\x4b\x65\xab\x12\xad\x56\xe9\x3b\xeb\x84\x23\x37\x70\x81\x9b\x3c\xb9\x4b\x43\xd0\xb6\x93\xe4\x8d\xa3\x14\x77\x6b\x01\x49\xc8\x84\xc6\xa7\x7d\xf4\x41\x54\x85\x02\x44\x0a\x05\x93\x54\xf5\xe1\xb1\xf7\xb1\x7d\xbb\x80\xe2\x7a\x3a\x3f\x59\xa4\x13\x3d\x03\x44\xe2\x4e\x97\x1a\x12\xb0\x83\x4d\x2d\xde\x22\xa5\xdb\x97\x59\xfb\x9b\x22\xef\xa6\x3c\x47\xa8\x69\x73\xa1\x57\x44\x5d\x97\x94\x64\xdb\x6a\xc3\x11\xed\xcb\xd8\xc1\x7e\x82\x1d\xb4\x7a\x85\x4c\xc5\x0f\x1d\x24\xaa\x42\x5d\x85\x60\xbd\x20\xb8\x2c\xa2\x2f\xc9\xae\x90\x2b\x24\x9c\x8d\xf3\x0f\xd9\x5e\x97\x90\x63\x58\x43\x55\x7c\x6d\xa9\xb1\x88\xda\xc3\xe4\xc7\x31\xa3\x53\xad\xa4\x20\x0b\xcc\xed\x61\x15\x4f\x27\x0e\xfd\x6a\xd4\x67\x00\x6c\x30\x61\xd8\x45\xd7\x9c\xf4\x2a\xa7\x78\x13\x4d\xf6\xd4\x47\x25\x85\x39\x77\x40\xe1\xd2\x2a\xfc\xb2\xec\x27\x6b\x9b\xc6\xd8\x02\x35\x94\x36\x5e\x60\xe4\x9f\x7f\x64\x40\xbd\x04\xbd\x82\xc6\x9b\x7e\x0d\x56\x9c\x6b\x37\x23\x7f\x66\xd3\x68\x26\x88\xf5\xf6\x41\xbe\x11\x12\xa0\x04\xb5\x1b\x0d\xdc\xf3\x53\x78\xb8\xc0\xc4\xa6\x9b\xbf\xaa\x02\xdf\x29\x88\x97\x50\xca\x86\xf3\x5e\x11\x83\x75\x8c\x82\xc8\x7a\x7a\xd8\x19\x3e\x24\x0e\x8b\x61\xfd\x96\xd9\x4d\xe5\x88\x80\x63\xcf\x2c\xe0\x1c\x40\x95\xdf\x44\x86\x41\xb3\x38\x06\xb0\xe6\x35\x21\x06\x9d\xa6\xdc\x9b\xf1\x78\x5d\xca\x7d\x68\x4b\xf2\xb0\xc8\x6a\xb2\x64\xba\x03\x87\xec\xfd\x67\xb4\x29\x2f\x30\xef\x05\xcc\xc4\xfe\xe6\xb3\x41\xba\x9e\xca\x5d\x93\x2b\xa1\x86\x1c\x9c\xc8\x9c\xab\x0d\x70\x43\x00\xfc\x46\xfd\x92\xc2\x17\xb4\xae\xa1\x4f\xea\x7a\xc9\x36\xad\xd3\x57\x81\xc7\xed\x76\xf8\x83\xcb\x49\x65\x2d\xe7\xab\x5f\x4f\x9a\x22\xd0\x12\x98\xc6\xc8\x89\x1b\x5c\x4a\x9f\xc7\x08\x27\x21\x55\x7d\x1a\x84\x52\x46\x0d\x7a\xd3\x61\xe8\x07\xf9\xb3\xf1\x51\x0e\xa5\x1d\x40\x9d\x35\x55\x24\x71\x3a\xf5\xde\xa5\xf4\x23\xae\x9e\x59\x55\xe6\x73\x55\x00\xa0\x26\x85\x7c\x16\x06\x1b\xe1\x65\x2c\xbb\xcf\xee\x11\x0b\x88\x3c\x07\x63\x68\x11\xde\x57\x74\x57\xa2\xd6\xa3\xb8\xfe\xbf\x31\x94\x71\x51\x4c\xc5\x0f\xab\x2b\x8b\x1a\x4b\x2d\xeb\x44\x2c\xba\x30\x39\xfa\x92\x7c\x7e\x8f\x7d\xa9\x1d\x49\x0a\xd7\x8f\x36\x1c\x17\x32\x63\xb1\x9b\xdf\x3b\xa9\x0f\x60\x0e\x0e\xcc\x25\xfa\xb4\x3f\x59\x31\xbb\xf2\x3d\x3e\x03\x6a\xc9\x93\xb4\x4c\x80\xe4\xa9\x3c\x78\x51\xfb\xde\x54\x80\xf0\xd6\xb4\xda\xf2\xef\x87\xb5\xdb\x19\xba\xe7\xcb\xc9\x2f\x0f\x34\x35\xeb\x2e\xfe\x7a\x55\x7a\xda\xaa\x78\xab\xb9\x3a\xb9\xc0\xa6\x51\xf4\x07\xf1\x6e\x8d\x9f\xcc\x5a\x6f\x86\xb6\xbe\xc5\x0d\x13\x26\x6e\xa4\xbb\x5b\x6b\xe7\x5d\xf9\x97\xd9\x47\x11\x0d\xc0\xc5\x00\x1a\x53\x23\x54\xbc\x28\x8a\x4d\x32\x55\x8f\x95\x83\xe2\x77\x01\x9d\xaa\xaf\x29\x14\x2b\xf0\xa4\xab\xf8\xfa\x2b\x14\x0b\xfa\x9a\x98\xe4\xc9\x51\xa8\x2d\x9c\x8c\x29\x21\xeb\x29\x14\x9b\xf4\xbc\x93\xf7\x22\xab\xf2\x4a\x44\xf7\xda\x14\x1f\xf9\x7b\x69\xfd\x2f\x8d\x84\xd7\x9b\x83\x22\x56\x8e\x99\x36\x0a\x86\x1f\x4e\xb5\x31\x4e\x27\x64\x92\x02\x9b\x2b\xf5\xbb\x7f\x85\x36\xad\xe1\x21\x94\xb2\xed\xb6\xf8\x83\xcb\xc9\x2f\xc5\xaf\x56\xcc\xaf\x4b\x6a\xaa\xcf\x85\x4c\xae\x6f\x4b\x30\xe5\xec\x00\x2a\x8a\x77\x2c\x6a\x98\x1c\xff\x13\xe1\xe9\x77\x40\x16\x20\x8f\x4b\x9a\xc7\xb3\xfa\x4d\xd7\x9c\xcd\xf3\x82\x83\x2b\xcc\x14\x91\x4d\x1b\x06\x14\x95\x35\x1c\xb1\xda\xf9\x5d\x8c\x7e\x3d\x71\x3c\x18\x78\x6a\xac\x77\xfb\x12\xa3\x6c\x44\x84\x8b\xa3\x79\xb3\x65\x05\xc7\x47\x48\x7d\x61\x87\x94\x7c\x02\x06\x79\x80\x4d\x78\x5a\x9f\x1d\x85\x00\x85\x4a\x07\xa5\xee\xa0\x11\x65\x7a\xfe\xf8\xf0\x47\x52\xe5\xc7\x17\x82\xef\x47\xc9\x55\x61\x0a\x41\xf4\x30\x66\xc5\xae\x37\x58\xa6\x4c\x3e\x1d\x4e\xc8\x77\xdb\xf0\x84\x55\xda\xbb\xc5\x15\xbb\x97\xa1\x17\x60\x68\x87\x44\xa0\x14\xeb\x8f\xfc\x1f\xb2\x61\xc2\xf3\xf2\x42\xc1\x8b\x41\x55\x5f\x85\x5d\xdc\xbf\x30\x9a\x87\xc4\xfa\x05\x9b\x0b\x83\x37\x49\x1c\x36\xde\x0f\xc5\x0c\xc7\x17\x3a\xfa\xfa\x64\xfa\x94\xa4\x37\xe9\xa3\x1a\xf1\x3b\xfe\x44\xd9\x1e\x19\x7d\x83\x7e\xbe\xa2\x65\x50\x21\x02\xea\x99\x5e\x7a\x8b\xd8\x1c\x96\xe4\x95\x08\xbc\xfd\x2b\x1d\x4c\xdf\xe0\xf7\x08\x60\xf8\x3e\x82\x8c\x05\x7d\x47\x69\x0c\x18\x6a\x58\xc6\x95\x64\xfb\x62\xc6\x37\x76\xe7\xd3\x8a\x35\xc5\xe7\x94\x66\xf6\xb8\x56\xa5\x97\x93\xba\x2c\x2d\x3d\xf1\x36\x32\x64\xcc\xdb\x24\xcc\x64\x57\x5d\x0e\xe7\x08\x2d\x04\x57\xff\xc5\x69\x79\x30\x58\xa0\x35\x3c\xcf\xe6\xf8\x3f\x82\xd9\xc8\x86\x53\x59\xf3\x87\x97\x52\xca\x96\x42\xb4\x05\x49\x03\xb4\x07\xb5\xe0\xd6\x24\x7f\x5b\x09\x8b\x4e\xf7\xcd\x3b\xa4\xee\x9f\xc3\xbd\xaa\xfe\x52\xd3\x64\xa5\x7e\x11\xab\x2d\x91\xe4\x71\xb9\xea\x52\xe0\xaa\xf6\x06\xee\x2e\x09\xf3\x12\xaa\x22\x62\xcf\x31\x8e\x87\x83\xfe\x8c\xf2\x95\x22\x6d\x56\x96\x7e\xbf\x13\xa3\x75\x2c\x2c\x16\x7d\xb5\x96\xc7\x35\x16\x5d\x23\xff\x50\x5b\x37\x90\xe1\x36\x19\xa0\x9b\x18\xbb\x83\xff\x6c\x70\x4d\xf8\x87\xfb\x19\xc8\x37\x8d\x98\x50\xc0\x9e\x80\x6b\xa2\xaa\x61\x50\x24\x98\xed\x91\xb4\x73\xfc\x07\x27\xcb\x77\xe3\xe3\xe3\x8b\xe3\x56\xd4\xba\x71\x97\xc4\x1e\x41\x69\x96\xb9\xb4\xf4\xa2\xe3\x5d\x5d\x62\xdf\x8b\x07\xc2\xc3\x43\x2f\x41\x84\x07\x54\x54\xe4\x3b\x34\xe4\xa6\x87\x76\x87\x62\xde\xdc\xac\x56\x77\xbb\xae\x5f\x36\xc7\x29\x88\x8a\xa7\xdf\x72\xba\x2f\x42\xad\x95\x89\xa5\xc4\x06\x3f\x22\x91\x8c\x97\x09\x6e\xbb\x32\xe5\x98\xea\x6d\xbf\x87\x8d\xca\xfb\x59\xbf\xa9\xf9\x0d\x4d\x99\x88\x87\xf4\x1e\xb5\x3c\x36\x5a\xea\xc5\x13\xfc\xc5\x69\x39\xbd\x70\x99\x65\x86\xc7\x00\x12\x61\xe1\x94\x70\xbc\x18\xa6\xcb\x2d\x61\x50\x49\xbb\x94\x4f\x29\xa8\xf3\x6c\xb7\x26\xb8\xb6\xf1\xfd\x75\x75\xba\x4b\xa1\x06\x5e\xb8\xdc\x1b\x3c\x60\x07\xc7\x20\x1b\xae\x2e\x07\xd0\x41\x43\x51\x78\x75\x05\xa7\x7d\xc8\x9e\xe5\xb9\x17\x8d\xcf\xe6\xb1\x3d\x8a\x32\x70\xc9\x91\x5e\x1f\xe7\xa4\xfa\xad\xf2\x36\x44\x0c\xe4\xba\x8a\x5d\xf5\xed\x65\x99\x6b\xeb\xf7\x96\x01\x80\x14\x70\x01\x54\x01\x14\x36\xc0\x7a\xdf\xc2\x4d\xe1\x77\x1f\xb7\x38\xe0\x58\x98\x62\x3e\xb4\x97\x34\x84\x85\xcc\xf6\x8e\x3a\xf7\xbf\xf2\x6f\x75\x39\x2b\xdb\x93\x29\x27\xfa\xe9\x60\x6d\xaa\xc8\x52\x91\x80\xa5\x9c\x24\x47\x82\xf7\x93\xa1\x37\xea\x54\x2d\xdc\x8f\xc4\xe5\xcf\x75\x7b\x26\xc3\xd5\x75\x4b\xb3\x94\xb8\xa4\x4d\xef\xb4\x69\x83\x4d\x91\x48\x25\x10\xf5\xf5\x39\x27\x3d\x9d\xd9\xf5\x8b\x36\xed\xf1\x52\xa3\xb2\xa7\x82\x3a\x49\x73\xe7\x29\xfd\x0a\xec\x2c\x38\x71\x41\x6a\xa0\xf0\x10\x19\xd8\xeb\x5e\x7b\x04\xc0\x28\xd7\xc1\x06\x11\x27\x2d\xed\x37\x6f\x32\x85\xc8\xea\x63\x5f\x8e\x76\x49\xdf\x9a\xce\xe2\x3f\x16\x8e\xcb\xe8\xf8\xf6\xac\xa3\x9e\x2e\xdc\xb1\x48\xfc\x09\xd0\x25\xee\x8d\x75\x90\x26\x7d\x20\x71\x43\x93\xb0\xea\x2b\x1b\x82\x07\xe0\x44\x9b\xe4\x07\x26\x7d\xfa\xb2\xa1\xf3\x6c\xae\xcf\x45\xc3\x70\xa8\x51\xa1\x03\x6a\x9d\xcb\x11\x26\x87\xb0\x58\x61\xcf\xb4\x2f\xca\xb4\x28\x6a\xd6\xaa\x08\x3c\x71\x58\x9a\x2f\x7a\x8a\x2c\xd1\x9f\xe5\x4e\x72\x4b\xae\xbe\x7f\x45\x73\x1b\xe9\x15\x35\xdc\xe2\x76\x21\xed\x0d\xa8\x13\x64\xfc\xb3\x68\xc9\x1b\xe6\xab\x2a\x70\x79\xa5\x05\x46\x29\x64\x5a\x18\x5c\x2c\x9c\x17\xb6\x3e\x1c\xc7\xc1\x8b\xf1\x13\xb4\x9f\x0a\xf9\x48\xc0\xb2\x23\x89\x9b\xc1\xf2\x91\x2c\x54\x0f\x48\x79\x54\x17\x8d\x8a\x0f\xcd\xd3\xfb\x1d\xb8\x76\x38\xfb\x81\x6f\x78\x59\x60\x97\x70\x43\x99\x23\xe2\xed\xda\xd0\x8f\xfe\x8f\xf7\xab\xe8\x7b\xa1\x43\xd6\xe0\x22\x77\xdf\x9a\x19\x6d\x05\xaa\xc8\x8d\x17\x69\x9b\x84\x69\xba\x8a\x28\x7a\x3c\x39\x24\xca\x43\xfb\xb6\xd3\x9e\xb2\x59\xbd\xf6\x2e\xab\x2b\xdc\x5f\xb5\x36\x50\x41\x7f\x4d\x69\x7b\xd1\x97\x44\x00\xa5\xd6\x95\x16\x7f\x2e\xa1\x0d\x5e\x80\x5e\x12\x55\x4c\x2b\xb2\x3f\xfb\x07\xa0\xe8\xf0\x28\x69\x48\x4b\xba\xc2\xf3\x69\x2d\xef\x0c\xc1\xe9\xec\x29\xf9\x85\xe9\xec\xe4\xed\x50\xe0\x48\xd9\x93\x01\x9a\x7f\x84\xbd\x33\x5f\x12\xa3\x99\xc6\x60\xa4\xcf\xd0\x38\x79\x5c\x6d\x14\xa9\xe1\xea\x00\x86\x6b\x33\x88\xf9\x8c\x8f\xcf\x65\xe1\x78\x0b\x3b\x0e\x6b\x77\x67\x6c\x54\x6d\xf4\xab\xfe\xb4\x25\x0c\x1d\xda\xe9\xab\x29\xf4\xbb\x5c\xe3\x28\x19\x4e\xf7\x17\x04\x82\x49\x75\x9e\x5f\xe0\x20\x42\x48\x30\x1f\xb2\xa1\xe0\x50\xd1\x57\xd6\x45\xa6\x4f\x25\xd3\x3e\xa7\x8d\x26\xc2\x69\xf0\x43\xc5\x69\xca\x52\x29\x04\x0d\x42\xe0\xe9\x3a\x83\xe9\x5a\x02\x9f\xb1\x00\xd5\x7c\x88\xd6\x86\xe6\x24\x56\x61\x51\x0a\x6b\x8a\x02\xb1\x6a\x2f\x36\xf6\xd0\x57\x42\x51\x69\xcf\xca\x3a\x29\xb7\xfa\x4c\x15\x0e\x45\xf2\x45\x3f\x2f\x1a\xae\xa3\x7a\x58\xe8\x61\x88\x7c\x61\xc2\xcc\x78\x54\x91\x88\x26\x5e\xfa\x95\x22\x6f\xda\xf1\x76\x27\x97\xc3\x34\xfa\x40\xcc\x46\xc4\xa1\x39\x5f\xdb\x76\x01\x23\xda\xf6\x85\xa2\x66\xdf\xc1\x9a\x06\xb1\x08\xdd\xd5\xe2\x9b\x31\x28\x8f\xa3\x48\x48\xf1\x8c\xd8\xac\x30\x09\x5c\x7f\xa2\xbf\x5b\xf4\x96\xf3\xbc\xec\x31\x9f\xdf\xb3\xd7\xf4\xf0\x12\x7e\x9e\xc0\x70\xe9\x31\x48\x14\xbc\x74\xf8\xce\x11\x3e\x2e\xff\xe6\x87\x02\x6a\xdd\x20\x3b\x95\x52\xe8\x0c\x1f\x55\x4f\xac\x09\x42\x90\x43\x12\x8a\xa0\x9b\xec\xf4\xe2\x65\x5f\x63\xa7\x15\xf4\xf0\x7e\xef\x29\x4b\x45\x98\x88\xee\x38\x7e\x60\x10\x5a\x7f\x58\x03\xc3\x1d\xea\xb3\x22\x1a\x32\x5b\x84\x3a\x85\xc5\x5e\x97\x7d\x29\x23\x6d\xd5\x76\x53\x13\xc9\xff\xaa\xdd\xbc\xb6\x2c\x15\x2e\xd1\xde\x1d\x0c\xa0\xd1\x5c\x5e\x6f\x00\xf1\x98\x03\xd3\x1e\x7f\x97\xac\xcc\x26\xc2\xdc\xb7\x80\x2a\x9e\xed\x94\x96\x51\xbd\xab\xb5\xb8\x47\xc2\x31\x11\x9d\xe9\x30\xdb\x59\x6d\x58\x77\xef\x93\x4f\xcc\x23\x26\x0c\x9f\xe5\x6c\xb4\xa8\x99\x0a\x8e\x34\x35\x81\xb3\x12\x54\x86\xbf\xd1\xdb\xc2\x53\x92\x92\xf7\x89\xda\x0d\xbc\x25\xd9\x6e\x7a\x5a\xbd\x55\xf5\x98\x6d\x6f\x18\xc2\x4b\xe8\x75\xf3\x52\xb6\xf8\xf3\xe3\x11\x87\x33\xf7\x98\x66\x3c\xf9\x79\x97\x98\xa7\xd6\x4c\x07\xd5\x0d\xa1\x87\x57\x0d\xda\xe2\x4f\x2b\x68\xda\x8f\x3f\x22\xa4\x61\xfb\x32\xdd\x3e\x5a\x87\x67\xd8\x09\x85\x5a\x7c\x20\x55\xa6\x80\x2e\xee\xf8\xfd\x48\xa6\x1d\x57\x8b\xee\xa2\x1c\x53\x25\x00\x82\x1c\x8a\x03\xb9\xb3\xfc\x15\x11\x47\xd7\xc6\xf7\xd8\xbd\x65\xd4\x4a\x09\x6f\x3a\x8b\xb9\x51\xfc\x45\xba\x94\x59\xf1\xb0\xcd\x2e\x74\x77\xeb\x5b\x71\x3b\xfe\xb4\x93\x6e\xde\x7e\x8d\xc1\xc8\x8a\x81\x2d\x35\x4d\xd3\x99\x8f\xb3\x3a\x5a\xd3\x86\xcf\x6f\xb8\xc0\x90\x8f\x5b\x61\x25\xad\x08\xa0\x54\xcd\x44\x77\x7e\xcd\x7c\xcd\x85\xff\xab\xc0\x5c\x90\xa3\xc7\x55\x57\xa5\xc1\x25\xba\x26\x71\x38\xf0\xe0\x42\xba\x2c\xe7\x54\x25\x92\xd7\x8f\xfc\xc6\x50\xc4\x77\xbe\x48\x15\x80\x43\x5d\x52\xc3\x67\x53\xd8\x97\x64\x84\x0e\xfa\x88\x48\xd7\x71\x04\xd2\xc2\x2e\x13\xe5\x78\x03\x47\xc3\x2f\x01\x75\xed\x76\x60\xd8\x01\x8a\xbb\xe0\xaf\x67\x31\x60\x6d\x56\x9a\x0f\x0d\xab\xeb\x56\xde\xeb\x88\xd6\xd4\xf6\x8e\xea\x97\xe0\x92\xe2\x9a\x68\xf2\x18\x95\x79\x95\xea\x36\x96\xc5\x3f\x5f\x68\x4d\x6b\x11\xf8\x3b\xf0\xcf\x0a\xd5\x43\x4f\x36\x3c\x57\xc5\xd1\xa8\x6c\x9b\x1b\xd9\x36\xcf\xda\x7a\xf8\xb1\xb0\xf9\x19\x34\x50\x91\x9b\xf8\x33\x3a\xf6\x8a\xc2\x51\x9e\x7a\x70\x2a\xf2\x60\xb2\x0c\x0b\x51\x22\x52\x88\x25\x53\x72\xbb\xf0\xfa\x6c\xaa\x3e\x32\x2c\xc0\x33\xae\xed\x97\x76\x9b\x95\x05\xd4\xac\x2c\xe6\x8c\x46\xaa\x8b\x36\xe3\x8f\x73\xfa\x74\x32\x71\x89\x36\x65\x2b\x6d\xc4\x4c\xa8\xa3\x5d\xf8\x8f\x57\xdf\x4b\xef\x58\x48\x4e\x23\x5d\x0f\x5a\xa2\xcc\x76\x39\x0a\xa4\xcd\x66\xa8\x55\xb1\x80\xc1\x15\x4d\xe3\xb2\xa7\x65\xf9\xef\x1b\x77\x41\x00\xa0\x2a\xef\x06\x57\x5d\xee\xff\x94\x56\x2d\x30\x1a\x42\xe7\x40\x43\x88\x05\x87\xba\x10\x13\x6e\x2b\x53\x0d\x12\x53\x4e\xc5\xb2\x37\x92\x7c\x7f\xec\xd1\xfe\xf2\x29\x2e\x6d\xec\xd1\x94\x19\x64\xd8\xcb\xe8\x79\x06\x78\x2b\x3d\x0a\xa1\xfe\x0e\x7e\x40\x2d\xf7\xf4\x58\x21\xb9\xe0\xf2\xf9\xd2\xe5\xec\x43\x19\xd1\x16\x3d\x36\x42\xdd\x70\x77\xa9\xb2\x1d\xe2\xa6\x1c\x60\x54\xb6\xeb\xc1\x2b\xde\x14\xd5\x43\x66\x85\x07\x32\x91\x02\xcf\x24\x5d\xbd\x6f\x5a\xd9\xef\x58\xe1\x01\x00\x13\x4a\x00\x19\xf5\xcd\x34\x54\x44\x94\x0b\x82\x13\x97\xac\xcc\xeb\x47\x43\xf8\x2a\x48\xde\x22\x97\x7b\x01\xfa\x7d\x36\x83\xaf\xe4\xdf\xc7\xbb\x16\xb9\x1b\x61\xaf\xb6\x82\x83\x87\xa3\x54\x16\x0b\xdc\x21\x43\x20\x7b\x1d\xc4\xa8\x95\xaf\x0e\x42\x90\x42\x26\x72\xe2\x6b\xeb\x27\xd4\xd3\x24\x0e\x2f\xc2\xb7\x40\x71\x52\x6b\x64\x1f\x05\x15\x86\xb6\x52\x14\x88\xbc\xb4\x4c\x8c\xdb\xdc\xce\xc0\x70\xa8\x8b\x1a\x63\x71\x10\x2e\x55\x1b\x52\x86\x67\xf0\x88\x89\xaa\x63\x42\xd1\x23\xa1\x1d\xff\x8a\xea\xa9\x6b\xf7\x29\x04\xfd\xd4\x3d\xc7\x7d\x04\x92\xb0\x22\x96\xe7\x4c\x87\xf3\xaa\x9b\x00\xc6\x3d\x9a\x0f\x46\x31\xe3\x59\x7b\x21\x6a\xec\x04\xcc\x76\x1b\xb1\xc0\x6e\x9d\x80\x14\x49\x5b\xce\xe9\x30\x11\x9f\x1f\x36\x4e\xec\x47\xc2\x48\x56\x00\x06\x69\x90\x93\xf9\x20\x47\x6e\x5c\xc3\x4c\xd5\x9c\x1d\x77\xf0\xce\x90\x91\xa5\x06\x4c\x53\xf1\x52\x47\xbd\xd2\x44\xd4\x86\x57\x9e\x9f\x69\xe8\x3c\xa6\x75\x4b\x88\x82\x13\x00\xd0\x75\x58\x34\x5f\x40\x8c\x20\x2d\x12\xd5\xb2\xc9\x33\x7d\xdd\xc8\x92\xce\xd8\x60\x10\x00\x24\x30\xca\x20\x36\xc6\x59\x98\xb6\x2a\xe0\xbe\x5c\xe5\xe2\x14\x30\x2f\x10\x0c\xd2\x60\x8d\x53\x1c\x04\xc2\xf9\xfd\x7b\x0d\x87\xc7\xa6\xfb\x99\x44\x64\xdb\x41\xce\xcb\x40\x33\x2f\xc8\xd8\x52\x4c\xc0\xa5\xd7\xec\x81\xf0\x7a\x67\xb8\x5d\x1d\xab\x64\x35\xa7\x53\xc2\x9d\x15\x22\x8f\x4a\x72\xe6\x79\xbe\x39\xc4\x6d\xa3\x89\x28\xac\xed\xe1\x24\xf5\xfc\x9e\x6d\xef\x31\x25\x3d\x51\xe5\x43\x1a\x66\x70\x7f\xb7\xcd\xdb\xc0\x85\x06\xc9\x62\xc6\x3f\xb7\xf5\x9a\x0c\xfb\xb7\xb7\x11\xcb\x3e\xfe\x1b\x98\x79\xab\xbc\xb5\x0c\xf6\x88\x23\x83\x8c\x4d\x99\xc8\xf6\x56\x41\xc2\x9e\xfa\xd2\x37\x0d\xe7\xc4\xc3\xcb\x4c\x05\xd0\x6f\xf9\xb9\x30\x97\xe6\xad\x09\xb3\xb1\x25\xae\x7a\xa2\xc3\xe7\x89\xee\xe3\x2c\xdf\x62\xfc\x62\x94\x41\xbd\xc2\xff\x6a\x9e\x91\xaf\x05\xff\x66\xb2\x22\x78\xfd\xe6\xf7\xe7\xa5\x3e\x94\x69\xae\x4d\xb3\x1e\x79\x20\xfc\x4f\x30\xa9\x80\x26\xd6\x8d\x8a\x94\x3f\x4d\x43\xe5\x8e\xc5\xab\xc0\x2c\x83\x43\xa1\x40\x93\xa4\x83\xf3\x4c\x31\x60\x75\x39\x5c\x1b\x3c\xb1\x9a\xcd\x64\x46\xf3\x7a\x3f\x80\x42\xfb\xd9\x5c\xc9\xa1\x6f\xc5\x11\x6e\xd1\xa3\xfd\x08\xf9\x36\xf9\x3c\x24\x09\xf4\xa3\xcb\x01\xe6\x21\x6b\xab\x08\xe3\x27\xb8\x65\x8f\xb4\x4a\xb3\x26\x50\xbe\x08\xba\x60\xc2\x51\x1e\xc7\xc5\x45\x46\x5d\x9b\x2e\x90\xbf\x1c\xb2\x18\xef\xc8\x16\x05\x80\x5e\xec\x80\xef\xc9\xac\xfc\xe1\xe9\x7e\x09\xc7\xb4\x5c\x82\x93\x3a\xf9\x8c\x31\xcd\x43\x1a\x48\x46\x56\x69\xd9\xeb\xbe\x88\xb0\xe3\xac\xc5\x14\x0f\x80\xe5\xeb\xf7\x63\xdf\xf2\x19\x5a\x00\x19\xf5\xf6\xd1\xd3\xb3\xd9\xf5\xce\xda\xd9\x88\x7a\xea\x23\xcf\xb7\xf0\xbc\xf4\x77\xe2\x7c\xd3\xbb\x37\xdf\xc6\xeb\x9f\x01\x00\x0a\x2f\x29\x0e\xb8\xbd\x15\xc6\x04\x94\xe0\xe3\x2a\x07\x3d\x7e\x82\xf3\x06\x06\x41\x32\xf7\x31\x6a\x4f\xc9\x47\xb0\xde\x14\x2a\xe1\xd1\x2f\xde\x17\xd7\xe9\xf0\xdd\xb3\xc4\x97\x71\x2b\xdd\x44\xbc\x7e\xa4\x19\xd8\x3a\xa3\xbd\xdc\xa0\x3d\xb9\xcc\xa1\xef\x47\xae\xdc\xa8\x88\x3d\xa2\x4f\x43\xd9\x02\x40\x03\xe1\x0c\x24\x44\xf2\xe9\x5f\xfe\xba\x29\xce\xd5\xa4\x4e\xc9\x8c\x62\x01\x65\x96\x38\x71\x8b\x29\x97\xdd\x2e\x1a\xde\xd2\xc4\xbf\x12\x8e\x6a\x52\xf1\xc7\xb3\x86\x97\xd9\x9f\x5d\xbe\x52\x18\x92\x19\x84\xa2\x6d\xdf\x5c\x7a\x82\x96\x7c\x2f\x0d\x03\x69\x2d\x21\xc8\xa8\x51\x57\x22\x1c\x31\xa2\xad\x71\x37\xae\xea\xb1\x25\xa8\x29\xca\x9a\x15\x41\x90\xaf\xe9\xa6\x5c\xc3\xe1\xbe\xff\x9d\x78\xa4\x33\x7b\xb9\x78\x1c\x11\x90\x5f\x98\xee\xa5\xb1\xd5\x26\x3a\x70\x63\x21\x1f\x72\xd9\xd2\xc3\x03\x04\xc2\x4f\xfb\x9a\x0e\x5b\xdf\x1e\x2c\x36\xc9\x92\x5c\x6c\xc4\xbc\xec\x79\xb9\x6a\x67\x1a\x5a\x93\x46\xc0\x5d\x23\xf2\x46\x2d\xdd\xda\x02\xa1\xa5\xda\xab\x9d\x34\x67\x3b\xaa\xed\xa8\xac\xef\x88\x82\x49\x47\x89\xc6\xad\x3b\x35\xad\xf8\xed\xb0\x77\x06\xbb\x81\x50\x0d\x00\x34\x70\x80\x9a\x4d\x46\xc2\x48\xf8\xd5\x8e\x68\xef\x51\xde\x4f\x2c\xfc\x00\x23\x66\x6a\x30\x40\xa9\x4a\x04\x00\xcd\x49\x1d\x76\x22\xc2\x87\x1d\x7a\x4a\x98\xbe\x09\x2f\x10\xe3\x4b\xed\xa4\x5d\x0f\x87\xb8\x08\x5a\xff\xea\x29\x5b\x28\x7d\x17\x0f\x82\xd5\xf3\x0d\xf1\xff\x57\x79\x84\x57\xea\x8d\x76\x62\x64\x6b\xfb\xc6\x97\x1f\xee\x58\xbd\x14\x46\x88\x39\x68\xfe\x82\xcb\xb5\x80\xc5\xc3\x48\x08\x5b\x26\x4e\x97\x07\xb3\xc7\x48\x19\xda\x5b\x4f\xf3\xd1\xe8\xa7\x9e\x3d\xfb\xa8\x10\x4a\x2f\xf7\x1d\x4f\xdd\xaf\x71\xc5\xe7\x80\x8d\xf7\x0c\x2c\x25\x06\x02\xea\x19\x00\x64\x94\x30\x9d\xe5\xdd\x5a\xd1\xfd\x15\x94\xe2\x2d\xff\x47\x45\x2f\x9f\x84\x2f\xf0\x3b\x6f\xd7\x43\xe2\x74\xd2\xbb\x79\x1b\x25\xe6\x9b\x1b\x65\x5a\xf3\x96\xcf\x5d\xe1\x98\xfc\x79\x43\x47\xf6\x0c\x34\x65\x3f\xe7\x79\x93\xc7\xf7\x81\x64\x4d\x12\xac\xd7\x93\x20\xad\x6d\x28\x35\x0e\xd6\xfb\x77\xd0\x40\x78\x55\xe7\x7f\x78\xde\x07\xaf\x8e\xbd\xe9\x10\xd3\xef\x5a\xcd\x76\x4a\x99\x12\xdb\xad\x48\xab\x99\x81\x62\x94\x84\x7e\xcb\x60\x4b\x0f\x1b\x78\xc7\xe7\xf8\xe7\x7d\xfd\x5a\x3d\x1f\xe1\x8e\x4b\x18\x79\xfc\x38\xe0\x37\xe6\x18\x14\xf3\x62\xed\xa5\x6b\x4d\xc1\xe2\x98\xd0\xa0\xd2\x95\x98\x08\x67\x10\x1e\x5a\x0b\x52\x20\xa6\xeb\x24\xfe\xcd\x13\x84\xb6\x05\xa7\x53\x00\xc8\xa8\x44\x33\xd4\x6a\x64\xd9\x2e\xf9\x36\x05\xf0\x14\xc8\x97\x41\xb8\xf7\x9b\x85\x6c\xa8\x2d\x9e\x15\x64\x38\x17\xb2\x05\x5a\x2b\xc2\x04\x4c\x78\x77\xc9\xa1\xc6\xae\xef\x52\x01\x60\x20\x4f\xd0\x84\x1e\x0c\x7f\x82\x13\x1a\xf9\xcb\x1c\x81\xd7\xae\x9d\x3c\xe7\xb5\xa4\x56\xda\x39\x51\x1a\x85\x37\x0e\xe9\xf5\x52\xf4\xab\xfd\x71\x49\xd4\x24\x02\x1e\x9b\xb3\x00\x03\x61\x00\x04\x69\xf9\x19\xb2\x46\x6b\x7c\x7c\xf9\xe2\x2e\xbd\x09\x3d\x2c\x12\x56\x63\x34\xfe\x4d\x90\xa3\xe7\x84\xe0\xcb\xd4\x79\xd3\xed\xd4\x5b\xee\x7d\xab\x25\x9f\x87\x3f\x3e\xfb\x1f\x67\x7d\x56\x95\x67\x3d\x1f\x86\xa2\x3f\xed\x79\x4d\xbe\x33\xb2\xb1\xb1\x9c\xd2\xe2\x67\x48\x67\xcf\x43\xf8\x32\x77\x6d\xba\x7e\xe5\xf0\x97\xc3\x23\x18\xe8\x4f\x11\xd9\x61\x6c\x37\x95\x0e\x10\xdd\x26\x1b\x76\x26\xaa\x7a\x58\x45\x4e\x79\xd7\x8f\x69\x1a\x4f\x81\x93\x7e\x1e\xb9\xa7\xe1\x83\x11\x8f\xd2\x96\x7c\x56\x47\x6e\x86\x69\x39\x5f\x47\xf6\xc7\x1f\x76\xca\xd7\x33\x9c\xe1\x04\x45\x04\x6e\xbe\x16\xc6\x46\x46\xcd\x9a\x4a\xfd\xc0\x1c\xf7\x19\x13\xff\x77\x8b\xb3\x7b\x5a\xbe\x1b\x0a\x86\xfe\x05\x26\x1c\x8e\xbb\x29\x0b\xda\x10\x5d\xb3\xc0\x62\x98\x7c\x25\x04\xf5\x67\xad\x41\x1d\x1f\x99\xde\x5b\xb0\x70\x92\xe0\xf3\x97\xfd\x2f\x72\x90\x50\xfc\x93\x9e\x9b\xb8\x7f\xb9\x39\x2d\xbf\xdb\x41\xfb\x57\xc3\xaf\xda\xe6\x1b\x8b\x7b\xbb\x36\x97\x22\xdc\xe7\xef\x98\xff\x82\x00\x39\x25\x1c\x45\x0e\xa2\x62\x79\x70\x21\x7d\x68\xe5\xdc\x84\xc3\x3b\xf1\xe4\x9e\xc7\x01\x8b\xc9\x8c\x8a\x1b\xd9\x08\xd0\xab\x57\x0a\x43\xcc\x67\x2c\x58\x3d\x7c\xef\xb6\x14\xa2\xe9\xa1\xbc\xfa\xd9\xc5\x77\x31\xda\x77\xaf\x81\x6d\x41\x76\x99\x9d\xfd\xbc\x6b\x41\xe3\xc5\xc1\x3b\x0a\x41\xf6\x4d\xda\xd8\x0f\x1b\x1e\x9c\x69\xbe\x3a\x1b\x67\xd2\xcc\x7f\xc8\xd9\xe5\xbf\x03\xdb\x10\xc4\x1e\x8d\x3b\xf8\x57\x3a\x7a\x9d\x1c\x59\xba\x93\xd2\xfa\xfe\xe6\xdf\xb3\x4f\xb2\x9f\xac\x1a\x0a\x16\x8d\xca\x76\x64\x3a\xb4\x3c\xbb\x56\x4a\x8b\x42\xb7\xdd\x01\xc2\x23\xe6\xe1\xae\x66\x91\x97\x20\x60\xe4\x07\x01\x8f\x1c\x90\x0f\xa4\xcf\x15\xc2\x8a\x94\xec\x0b\xac\x39\xa6\x73\x2b\x90\xaa\x9e\x65\x8a\x24\x1a\x44\xac\x62\x7d\x57\x6d\xc5\xcf\x9a\xb1\x5b\xe8\xe1\x67\x41\x67\x3c\x7b\xb4\x52\x10\xa4\x65\x24\x9d\x03\x26\xbf\xc8\x58\xd0\x37\xe9\xd3\x96\xcd\x43\xb7\x60\x5d\x55\xdb\xa7\x9a\x52\x4c\x7f\x4a\x91\x8f\xf1\xc6\x3a\x36\xbb\xfc\x93\x9e\xb7\xef\x58\x20\x28\x35\x79\xfc\xd7\x79\x1e\x55\x34\x4d\x75\x13\xea\x69\x6d\x7a\xd3\x5a\x40\x7e\x7c\x49\x7b\x8c\x79\xb5\xf9\x9e\x2e\x05\xe8\x87\x34\x00\x10\x3a\x90\xb8\xa5\x10\x5a\x43\x34\xf5\x6d\x6c\xeb\xce\x50\x9b\x2c\x9f\xf6\x87\xc1\x20\x93\xb0\x74\xec\x88\xf1\xfb\x2f\x6f\x87\x24\xe5\x49\x08\xb0\x4c\x9d\xe1\x10\x64\x6e\x3c\x88\x03\xd3\xaa\x85\xd9\xaf\xac\x38\xd9\x97\xed\x3e\x5c\xe4\x7a\xe6\xaf\xe9\x14\xeb\x5f\x8c\xef\xf5\x39\x45\x29\x34\x49\x55\x9e\x97\x3d\x6f\x58\x97\xc6\xdb\xb7\xa0\x84\xdc\x85\xab\x68\x7f\xab\x59\xaf\xdd\xdc\xd3\x1e\x2b\x71\xa3\xc1\x23\x13\x6c\x12\x94\x04\xf8\xd2\x52\xca\xc6\xfd\x55\x90\x34\xee\x17\xf9\x10\x01\x24\x6e\x9f\x4b\x10\x68\x92\x48\xae\x49\x79\x90\x1d\xcf\x22\xa7\xca\xde\xb8\xb0\x02\x6f\x21\x0c\x50\x5e\xf7\xf0\xed\x0b\x41\xa0\xdd\xd3\x79\x59\x0f\x73\x13\x73\x77\x58\xca\x5f\x23\xf1\x0a\xec\x15\xd9\x7e\x7d\xe6\x9b\x81\x5e\x3f\x43\xb5\x6a\x3a\xc5\xee\x11\xd4\xea\x2d\xf6\x7a\xe3\x8a\xc7\x30\x74\x5f\x5b\x69\x41\x14\x17\x50\x8f\xd9\x1e\x2d\x50\xe0\x3b\x91\x23\x5d\x4b\xdf\x73\xd5\x4d\xe8\xb3\xe7\x69\xcc\x32\xd7\x7b\x67\xc5\xe2\xa1\xc7\x85\x4a\xc4\xf4\xdc\xc4\xd7\x34\x6f\x46\xec\xee\x2a\x84\x60\x81\x70\x8d\xdf\x40\x1d\xc6\x59\x99\xc2\x2d\x02\xc3\xd1\x94\xf8\xcc\x51\x62\x10\x53\xa5\xae\x7f\x2f\x26\x1d\xe5\x2e\xb4\x45\x6d\x04\x41\x4c\x0a\xb5\xa4\x9e\xcf\x44\x74\xc7\xeb\x2d\xf7\x7b\x37\x95\xd2\x67\x7e\x45\x39\x7f\xa7\x4d\xee\x6e\xf0\xf8\x0b\x36\x41\xf0\x9a\xec\xc6\x23\x54\x88\xff\xda\x2a\xb5\xa5\x9e\xc7\x5a\xf0\xce\xbe\x97\x19\x86\xc4\x49\xe9\x60\x57\x40\xdb\xb3\x4a\x32\xbd\x01\x16\xdd\x82\x7a\x4e\x18\x32\xaa\x80\xd1\xf4\x9b\x87\xdb\x63\xa2\x6f\x17\x94\x65\xfb\x96\x0e\xbe\xee\x7c\x97\x5f\x08\x6a\x4f\xe6\x15\xa3\xa4\xeb\xeb\xf7\x17\x35\x89\xcd\x05\xd6\x2a\x92\xb1\x65\x39\x25\x0c\x9d\x6a\xc1\xec\x59\x04\xa5\x13\xb7\x49\x35\xff\x89\x00\x70\x01\x2a\x9e\x5e\xfb\x6c\x00\x35\x37\x15\xf4\x62\xd6\xd6\xaf\x22\x67\x49\x13\x32\xca\xe2\x7b\x3f\x0c\xa8\x41\x7a\x77\x52\x4e\x2a\xc9\x7d\xa6\x78\xea\x1f\x49\xbe\xc6\x06\x0f\xe4\x92\x48\xc3\xcc\x6f\xbe\x96\x3c\xac\xe1\xf9\x67\x1c\x0b\x96\x4d\xd4\xe4\x38\x7e\x20\x7b\xe8\x57\xd7\xbf\xa7\x66\x96\xc3\xe3\x6a\xad\x25\x30\x0d\x7c\xa1\x27\xde\x94\xe4\x3e\x7b\x91\x25\x6d\x45\x71\xf3\xad\x62\xf0\x0e\xfc\xaf\xb2\x24\x15\x37\x0e\xe7\xb1\x1d\x58\x08\x58\x11\x67\x9f\x4d\x13\x74\x6f\x65\xc9\xf3\x69\x13\x8d\xfb\x65\x50\x1e\xe7\xd8\x5a\xf1\xf3\xde\xb2\x4e\xaa\xfc\x31\xcb\x06\xc7\x9a\x45\x20\xc8\xc4\xaf\x5f\x9b\x1e\xea\xf2\x89\xaa\x7c\x5a\x62\xf7\x66\x5a\x4b\xb9\xb8\x2e\x6d\xd3\xbf\x66\x46\xdb\x3f\xcb\xee\x8e\x05\x0c\x32\x91\x41\x18\xb7\x18\xbe\xc2\x1c\xfd\x64\xb9\xfe\x91\x41\x1a\x1f\x3a\xd4\x26\x1f\x07\xb1\x0a\x7b\xbb\x0a\xa2\xa4\x23\x1c\xf9\x41\x30\x32\x81\x6d\x6c\x6f\xfb\x8d\xa0\xd6\xeb\xa7\x7c\xa6\xf2\x0d\x4d\x6a\xb0\x32\x17\x30\x8a\x1d\xf0\xa5\xe9\x53\x19\x21\xf5\x2a\x29\x7e\x46\x83\x6a\x26\x34\x50\x51\x90\x58\xc5\xc1\x9a\xdf\xdb\xb6\x01\xf1\xbb\x5d\x6f\x79\x86\xd5\x67\x63\x28\xfa\x5a\xd6\x12\x61\x1c\x82\xf7\x6c\x72\xe8\xfb\x8b\xca\xd8\x63\xca\x7f\x56\x2d\x2a\x49\xaf\x3d\x32\xfc\x0f\x1e\x25\x36\x18\x14\xf7\xef\x82\xe4\x0a\x09\xb7\x25\xeb\xd8\xe1\x80\x50\xa0\xdc\xd6\x6a\xe6\xbd\xbc\xfe\x86\x2c\xcf\x86\x11\x00\xc0\xa9\x22\x5b\x1e\x3a\x03\xae\x5b\xe2\x72\x6b\xa1\x3f\xb9\x15\x34\x83\x87\x9a\xff\x03\xe6\xf5\xb5\xe4\x01\xa4\xbe\x80\xa9\xeb\xeb\xd9\xfd\xc9\x70\x7a\x9b\x3b\xbc\x84\x7a\xfb\xde\x3f\x9f\x31\xb1\xb9\xcb\x6f\xa3\xa4\x64\xa1\x2e\x9d\xef\x32\x64\x30\xc8\x72\x89\xc0\x89\x4d\x14\x00\xbe\x1a\x01\x28\xba\xb8\xac\xa4\x46\xa8\xf6\xb3\xb9\xf7\x1d\x89\xbb\x9d\x08\x00\x40\x30\x8d\xf2\x2b\x7f\x53\x44\x97\x44\xa0\x9b\xa8\x0a\x1e\xc1\xb4\xb2\xe8\xf8\xf2\xa4\x88\x21\x89\x46\xef\x8b\x30\xd6\x53\xfe\xf5\xd3\xcb\x00\xb0\xb7\x34\xbe\x30\x5d\x36\x75\xbe\xac\x8d\xdd\xa0\x59\xb2\x58\xc0\x48\x15\x41\x3a\xa9\xb6\x91\xf7\x45\xb7\x0d\xe4\xaa\xfe\x63\x43\x9d\xb5\x9c\xd2\xc6\x3e\x30\x8b\x33\xd0\x10\x70\x12\x65\x4e\x32\xe6\x9a\xa7\xad\x15\xf0\xe3\xdf\x6f\x00\x00\x40\x06\xe1\x68\x54\xf6\xb4\xed\x62\xac\xd5\x9d\x40\x39\x76\xbb\xdd\x93\x6c\x13\x0b\x0e\xe5\x95\x27\xd1\xc6\xc8\x4b\xfb\x9f\x71\x3c\xb2\x77\xce\x29\x68\xc9\x72\x69\x14\xdf\xb1\xfb\x2e\x09\x90\x8d\x5b\x95\x2d\x09\xf3\x2e\x87\xc4\x4c\x75\x8e\x8a\x16\x27\x9e\x81\x0d\x64\x40\x30\x92\x30\x54\x39\x42\x59\x9d\x37\xbd\xaa\x62\xe5\xc3\xbf\xcd\x66\x15\x29\x2b\xda\xfb\x6a\xc9\xd3\xc7\xde\x5b\x39\xbe\x7b\x4d\x39\xb5\x7a\x41\xc4\xd2\x40\x20\xfc\x0f\x13\x5d\xeb\xf9\xe1\x3b\x60\xe1\x35\x6f\x5a\x7f\xc3\x3f\x4e\xf6\x55\xf5\x83\x05\x75\x88\xae\x81\x6d\x81\x71\x9b\xe1\xab\x69\x13\x27\x4a\x00\xb0\x34\x3b\x76\x2f\x80\x20\xb2\x6f\xd5\x9b\xdf\x9a\xb0\x82\x33\xc1\xf0\x33\x70\x75\xeb\xbb\x5a\xff\xd1\xa9\x5f\xab\x2f\x3c\x41\x09\xf0\xe0\xc9\x90\x0b\x22\xa3\xc5\xde\xe6\x0c\xec\x89\x40\x23\x81\xa7\x8e\x76\x78\x40\xd5\x31\x52\x0a\x66\x5e\x48\x15\x5b\x5f\xb2\x61\x10\x6f\x68\x67\xed\xb8\x2d\xde\x22\xbc\x43\xa0\xd4\x02\xc2\x0b\xdb\x18\x6d\xaa\xfb\x1e\xfe\x83\xee\x93\x20\xc2\x9a\xdb\xca\xb2\xb5\x45\x13\x0c\x97\x11\x25\x84\xd5\xba\xfc\x3b\x06\xcb\x81\x2f\xc6\xb1\xb7\x76\x94\x87\xee\xa5\x54\xa9\x14\x6f\x32\x87\xc1\x5d\x79\xc3\xcb\x6c\xc9\x98\xa3\x6b\x86\x53\x9c\xf0\x84\xd8\x40\xfa\xff\xc2\x3e\xf3\xab\x43\xc6\x49\x27\x35\x10\xc2\xd0\xd6\xf6\x9b\xee\x8f\x96\x76\xc6\x5e\xc5\x9b\x24\xdc\x0c\x68\x65\xbd\x09\x07\xb7\x6d\x4a\x42\xd4\xc1\x27\xec\x04\x62\x62\xa7\x1d\x08\xa2\x18\xd7\x15\x0d\xdd\x3e\x05\xd7\x2b\xf2\x5b\xf5\x12\x20\x80\x77\x4b\x96\xcb\x5e\x16\x82\xa7\x97\x3a\x4f\xf5\xf0\xc6\x24\x41\x62\xb4\x0a\x64\x20\x68\xa0\x62\x82\xe7\x9d\x31\x08\xe0\x3c\xac\x44\x3f\x19\xe1\x88\x69\xad\x37\xe5\x41\xf2\xea\xfe\x10\xf3\xa8\xc9\xe5\xee\xea\x4d\x49\xae\x26\x25\x00\x72\xfd\x87\x5a\xdc\xc0\xf0\x37\x63\x1f\xdb\x3d\x29\xdb\x03\x4a\x29\x4c\xaa\xb6\x3f\x38\x6c\x2d\x1a\x2b\xf0\x3e\x33\x02\x98\xe5\x2d\x73\x0a\x1e\x7a\x92\xe7\x67\xcb\xa8\xc4\x07\xdb\xe5\x59\xe1\x37\x01\xbf\x44\x01\x08\x92\x0b\xeb\xf3\x1b\xc0\x76\x48\x4d\x9b\xdf\xaf\x81\x17\x33\x7e\x20\x49\xb4\x1d\xd7\x1d\xdf\x88\xff\x59\x0c\xe0\xeb\xc8\x21\x03\xb0\x9a\x01\x9b\x5e\x54\x6d\xd1\x9f\xcd\x1f\x6f\x2f\xb8\xf5\x1a\x85\x52\xce\xce\xd3\xc8\xf5\x10\x65\x8b\xf9\x94\x6d\xee\x1e\xcb\x5e\xdf\x15\xde\x77\xca\x1b\xb0\x6b\xc5\x29\x37\xd1\x4b\xc3\xcc\x77\x29\x27\x7e\x4b\x8f\x62\x15\x5a\x89\xd5\x66\x42\xd5\x13\xce\x82\xbf\x83\x63\x18\xad\xae\x8b\x21\xf7\xee\xef\x2c\xb9\x40\xb7\xea\xf8\x28\xa8\x8d\x11\x0a\x78\x6f\x0a\x20\xcd\xbd\x9b\x56\x1c\xec\xb7\x16\x23\xbb\xc3\x3d\x41\x00\xca\x5c\xf4\xa6\x87\xa3\x29\x71\xd9\xa0\xc8\xae\x3f\xca\xa8\x90\xe4\xbf\x46\x88\x61\x2c\xc9\x11\xd1\x10\x1e\xd5\x52\x76\xd1\x24\xb1\x1f\xa3\x10\xc6\xd7\x44\xd9\x5c\x55\x43\xbb\xea\x40\xca\xf7\xa2\xde\x36\xd8\xed\x94\x46\x40\x9e\xc8\xbf\xda\xbe\x3d\x63\xae\x59\xda\x57\x6e\xad\x22\x3b\x7b\x12\x1c\xf9\x8c\x3d\x81\x25\x7e\x87\x25\x83\x0b\x65\x4f\xc5\x07\xdf\xf8\xb3\xc2\xd5\x12\x33\xa1\x08\xd8\xba\xa8\x7c\x82\x19\xc9\xb3\x06\x62\x00\x9b\x31\x9f\x87\x09\x27\x46\x21\x93\x2d\xd0\x3c\x5f\xf1\xa7\x99\x55\xc8\x5b\x0e\x80\xfe\x57\x3f\xd6\x17\x30\x7c\x17\x5b\x68\x08\x7b\x86\xab\x5e\x3f\x59\xfa\x92\x22\x45\xc1\x71\x8c\xc2\x4f\x06\x16\x17\xd3\x7d\x9e\xf4\xa0\x7f\x28\x3a\xd8\x86\x0d\x30\x9f\xb1\x60\x5f\xd8\x3f\x92\x82\x41\x12\x01\xdf\x06\x40\x0a\xfd\x1d\x9a\x40\xd3\xf9\x1a\x47\x4d\xa5\x67\xa0\xe4\x01\xc4\xd5\x00\xc8\x1d\x81\x09\xf7\x48\xac\xeb\xf8\x8d\x6e\xdf\x37\xdc\x3b\x77\x13\xa6\x2a\xde\xdc\x0c\xc3\x6c\x21\x67\xd7\x14\x8f\x07\x96\xfd\xcd\x44\x6e\x45\x53\x82\xc0\xe8\x42\x2d\x6a\x02\xd0\xff\x7e\x71\x01\x51\x41\x48\x79\xc7\xb1\x93\x1c\x59\x92\xa8\x40\x39\xb6\x3f\x15\xa1\x89\xf2\x6b\x44\x4e\xbd\xd8\x88\xa0\xe8\x16\x00\x30\x39\x5c\x6f\xd9\x8f\x40\x9f\x06\xfc\x36\xf7\x1e\xa3\xf0\xd3\x86\xe1\xd9\x4e\x59\x5c\x1a\x2d\xf7\x3e\xc4\xec\x69\x99\x91\xdf\x48\x03\x53\xb8\x08\xd8\x7a\xa5\x93\x28\x11\xb6\x66\x1f\x4a\xc1\x51\xaf\xd6\x9a\x80\xde\x57\x25\xfa\xf1\x19\x8b\x20\x98\x91\x12\x63\x93\x6a\xc6\xdd\x02\x50\xfe\xc5\x0e\xbd\xc4\x2d\x07\xb5\x7f\x24\x1f\xf5\x2c\xb7\xf6\xf7\x8a\x3d\xa6\xf9\xef\x64\x24\xec\xf2\x96\x19\x25\x3e\x87\x3f\x59\x1a\x96\xff\x88\x28\x80\xbc\x4e\x41\x3c\x6c\x30\x64\xd4\xdb\x2f\x59\xa1\xe9\x39\xa7\x49\xe9\x63\x89\x67\x35\xe1\x81\xc3\xe6\x2d\xef\x6f\x64\x79\x3e\xbf\xc4\x08\xfd\x30\x02\xa4\x28\x1b\xb8\x00\x60\xc6\x5b\xd8\xf1\xd2\xb9\xf7\x3a\xb8\x24\x6c\x37\x9b\xfb\xee\x85\x1a\x44\xd7\xc0\xde\x1a\xb3\xfd\xec\xd9\xf5\xa1\xaa\xfc\x8b\xf6\x5c\x24\x34\xd0\xe0\xbd\x50\x5c\x66\xc1\x71\xa3\xac\xb4\xd9\xd8\x34\x2f\xb8\xb2\xe4\xf8\xfe\x3e\x85\xb6\x36\x31\xf2\x31\x8a\xed\xf8\x7d\x78\x9f\x26\x14\x45\xfc\x11\x22\x55\x07\x99\x03\x4c\x5c\xd9\xe7\x89\x28\xf6\xb9\x2f\xaa\x96\xb6\xd0\xa8\x84\x33\xb1\x14\x3a\x29\x82\xed\xc1\x67\xe4\x6b\x1e\xad\xad\xd1\xfe\xa4\x5e\x31\xe0\x2e\x1f\x40\x11\x5f\x0a\x66\x4e\xf2\xeb\xb6\x5e\x0e\x88\x7a\xf4\x79\x5a\x4c\x7a\x8a\xc5\xd7\xb9\x6b\x45\xb3\xd1\xfd\xe7\x21\x8d\xe5\xdd\xeb\xb3\x3a\xb0\x32\xa3\x65\x5a\x6e\x58\x01\x0c\x20\x46\x37\x03\xf2\x0d\xc0\x2b\x60\x06\x57\xd7\x1f\x33\x9a\x79\x6f\xaa\xb1\x86\x1b\xd3\x7a\x54\x15\x04\xf0\xf4\x9b\x39\xb6\x3a\x99\x3c\x0c\x71\x34\x25\xce\xa3\xe4\x03\xa0\x81\x8a\xa9\xf5\xc7\x44\x5d\x35\x99\x0e\x90\xf3\xda\x9e\x4b\x16\xdf\x80\xae\xa3\x84\x0f\xf1\x9c\xfe\xfd\x66\x9d\xdf\x0c\xda\x82\x8c\x5e\xf2\x68\x92\x29\x12\x68\x30\x00\x32\xc5\x04\x4e\x06\x94\xd0\x46\xfa\x95\xd1\xcc\x53\x13\xee\x2d\xdf\x1e\xab\x2c\xc3\xa3\x97\x9a\x81\x46\x4e\xb1\x87\xad\x15\x31\xf7\x83\xc9\xe4\x66\x8f\xfe\x07\xb1\x97\xd4\x38\x1b\x0f\x58\x91\x8d\x37\x96\xf8\x73\x45\xe4\xcb\x9c\x1c\xd3\xda\x8e\xac\x16\x68\xad\x33\x74\x4a\x7b\xf3\x3b\x37\xc8\x74\x33\x1f\x9a\xc0\x96\x2b\x03\x48\xc9\xdd\xa0\x98\x9e\xe0\x80\x81\x26\x4b\xc8\x06\x2e\x9f\xf6\x73\xd6\x20\x3c\xb4\xf1\x87\x82\x65\xff\x5b\x9b\x83\xdb\xa2\x47\xf6\x78\x68\x69\x20\x9e\x40\x06\xb6\x3e\x20\xaf\x1b\x7b\x5e\x7c\x97\x61\x27\xe5\xcb\xbc\xb8\x1f\xd8\x34\x3a\xc6\x75\x28\xfa\x5c\xd5\x86\xd6\xe2\xee\x8b\x3e\xb6\x07\xad\xb2\x68\xbf\x33\x31\x0f\x5f\x91\x3f\x8a\x8d\x14\x30\xd3\xc6\xad\x5e\x9d\x21\x30\x91\x98\x7b\xd1\x48\xfb\x49\xb1\x9a\xd9\x97\xc8\x2a\xa2\xaf\xf7\xc4\x56\xf2\xb6\xc4\x23\x75\xbd\x4d\xa7\x3a\x8e\x3e\xbb\x8e\x48\x86\x18\x05\xff\xf3\x29\xe6\x49\xe6\xa3\x8f\xa7\x4b\x0e\xb3\x27\xb4\x86\x53\xea\xfb\xdf\xd9\xd9\x93\xb1\x2f\x09\xd2\xe4\x71\x5f\xd7\x32\xb2\x83\xd1\x27\xa0\x5c\x23\xa8\x62\x1c\x10\x3a\xb2\xf5\x3e\x30\xb6\x13\x01\x98\x88\x84\xe5\xfb\x57\xce\xdd\xa4\xa7\xe0\xbd\xb2\x7c\x41\x07\x03\x80\x6a\xd4\xd2\xbb\xb2\x9d\xb6\xdb\xa1\x98\xbb\x3a\x5e\x9a\x7e\xd0\x7f\xf1\x9e\xeb\x7b\xf5\x8c\xbf\x5b\x5e\xbc\x31\x5f\xe0\xcd\x78\xe6\xad\xfc\x5b\x52\xef\x98\xd6\x15\xa1\xc0\x3f\xe9\xb6\x38\x2a\xaf\x9e\xa4\xb0\x8c\x54\xd0\xad\x3e\x39\xcd\xc7\x35\xd9\x6c\x06\x3e\x8c\x51\xf0\x70\x5d\x1e\x2e\x7f\xf1\xbe\x3c\xe8\xfe\xc6\xfb\xab\x5f\xe5\x62\x22\x13\x07\x98\xe2\xa9\x77\x84\x84\x73\xd6\x4c\xb8\x47\x68\xd8\x8d\x5d\x3a\x4f\xe5\x07\xbe\xb0\x10\xad\xcd\xc6\x6f\xac\xf9\x71\xfa\x58\x38\xce\x86\x76\x2a\x95\xe8\xa0\xc5\xfb\xf2\xcf\xfd\xed\x25\x8b\xef\x35\x34\x50\x91\x2e\xba\x81\x12\xde\x42\x5d\x0e\xfe\x69\xdf\xa7\xa7\xb1\x65\xd4\xab\x4d\x80\x2d\xab\x6b\x85\xce\x8f\x69\x7d\x88\xaa\x65\x7e\x2c\xa1\x6f\x83\x99\xec\x62\xba\x25\x00\xac\xdd\x65\x9f\xbd\x26\x90\xa7\x50\xfe\x85\x60\x85\x00\x26\x8d\x1e\x00\xa0\x98\x01\x00\xdb\xb7\x23\xc1\xd9\xe7\x59\x8f\x25\x82\x8a\x1d\x20\x17\xea\x6f\x39\x36\xa9\x37\xf0\xe3\xcc\x93\x6c\x35\x22\xc1\x6a\xc2\x86\xbd\x5e\xc5\x50\x08\x0d\xad\xf9\x7d\x52\x7a\x56\x43\x89\x2a\x04\x0e\x75\x79\x4a\x4f\x50\xd9\x4a\xd2\x3e\x22\x82\x29\x04\xd2\xbd\xc2\xb2\x53\x02\xdb\x16\xc6\xa6\x5e\x44\x72\xa2\xdf\x96\x6b\xcd\x5a\x8d\x2d\xb1\x0a\x4b\x5c\x37\x3d\x8b\xb8\xf4\x61\x2e\x72\xa2\x07\x3e\x6c\x53\xfa\x13\xa9\xbf\x01\x8d\x8b\x3b\x2a\xe7\x00\xa1\x9f\x40\x80\xba\xad\xaa\xe4\x00\xc1\x0a\x1b\xda\x89\xfd\x7e\x32\xb7\xd6\xe1\xaa\xd8\x89\x4a\xdc\xc7\x0a\x0f\x94\xce\x9e\x67\xf7\x49\xa7\xd7\x53\x51\x54\xb4\x0f\xe7\x91\xbc\x0c\xc7\xfb\x80\xff\x26\xce\x38\x8c\x18\x00\xf0\xf6\x51\x74\x9b\x78\xf9\xc9\x0b\xfd\x9e\x8a\x6c\xb3\x7d\x02\xee\x9d\x4b\xef\x90\x28\x5a\xf3\x7b\x15\x7f\x97\xac\x87\x2e\x97\x9e\xe5\xe0\xa5\x49\x7f\x03\x40\xaa\x0b\x00\x50\x60\x93\xf7\xbf\x62\xad\x62\x19\x89\x11\xab\x33\x04\xed\x2d\x29\x79\xd6\xdf\xec\xcf\x93\xe8\x43\xc5\x77\x6e\x85\xec\xa0\xa8\x4c\xdc\x75\xdb\x51\x35\x4e\x7d\xf2\xc8\x42\xed\x91\xb0\x50\x54\xc0\x01\xfb\x7f\x53\x28\xbc\x3f\xaa\xfb\xdd\x30\x3d\x21\x40\x26\x8f\xd2\x1a\x4c\xb7\xf8\xa4\xc8\x26\xd4\x17\x27\x3f\xd8\x45\x82\x78\x35\x60\x72\xbb\xb5\x17\x41\x2b\x6e\x50\x4d\x0b\x04\xe0\x00\xfc\xab\xe6\xe7\x87\xed\x5f\x8f\x23\xf1\x01\x20\xc1\xef\x52\xa2\x9d\x8c\x00\x40\xfd\x22\x32\xf2\x54\x3c\x01\xab\x02\x26\x68\xc0\x7e\x77\xc1\xc8\xde\xb6\x5f\xf7\x07\x27\x29\x7c\x3c\x09\x9a\x88\x0f\xca\xdc\x49\x31\xe2\xae\xd1\xca\xca\x39\x95\x15\x88\x99\x5f\x5c\xff\x9d\x41\xfb\xee\x7f\xaa\x92\x9d\xef\x5f\xd8\x13\x3f\x39\xef\x79\x33\x8b\x5f\xa8\x1b\x59\xf0\x49\x47\x57\x0d\x32\xca\x75\x92\xc4\x84\x2a\x4e\xec\xb8\xf8\x62\x37\x88\xb9\x8c\xe1\xd8\x8f\x14\x8e\x13\x10\x7a\xf9\xb0\x7f\x10\xda\x84\xf1\x7e\xa2\x5e\xc5\xa3\xa2\x5c\x03\x50\x9e\x74\xbc\xbd\x07\x5e\x87\x45\x41\xe0\xef\xec\xb7\x05\xf9\x95\xf9\xaa\x9e\xe0\x03\x40\x3a\xda\xfa\x75\x9e\xa0\x82\xbd\x96\xdd\xf6\x9d\xe9\x24\xfe\xbf\x83\xb2\x11\x52\x14\xfc\x4f\x22\x1a\x9d\x40\xad\xf4\xe7\x3b\x77\x4f\x7e\x11\xbe\x5a\xed\x9d\xed\x94\x46\x75\x4a\x7f\x7c\x22\x7c\x57\x7a\xa0\x1b\x8d\xca\x7f\xf7\x30\x7e\x59\x26\x80\xf9\xfb\x9f\x9a\xa8\xb4\x66\x86\xd9\x5d\x16\x18\x6e\x70\x2f\x1b\x83\xf1\xda\x1c\xd2\x4d\x60\xc8\xd3\x03\x00\x46\x66\x48\x4f\x37\xe2\x8a\x4e\xd4\x59\x92\xd8\xe4\xd1\xe7\x26\x69\xfd\x0a\x05\xfb\xf3\x39\x42\x66\x08\x18\x80\xb1\x7f\x75\x80\x9c\x59\x16\x94\x54\x26\x75\xd0\x4e\x0e\xb6\x07\x3c\x70\x8a\x7c\x4d\x87\x22\x60\xe6\x9a\x32\x29\x5f\xd6\x3e\x0b\x15\x42\xbf\xf3\x3e\x10\xc7\xfd\x1a\xf6\x52\x50\x23\x9f\x10\x55\x21\x6e\x2f\x38\x23\xe2\x7b\x58\xbb\x9d\x4e\xf6\xbf\xee\x56\xb8\xe5\x53\x89\xd6\x42\x99\x4d\xfb\x4f\xdc\xd3\x1a\xde\xe3\xc2\xf4\xef\x87\x03\x6f\x69\x4d\x70\x20\xed\xd0\x79\x30\x69\x0b\x90\x22\x37\x37\x55\xdf\x32\x36\xa1\xcd\x99\x16\xf7\xe7\x6c\x4a\x8a\x12\x92\x81\x4e\x90\x41\x38\x72\xd5\x92\xe7\xeb\x75\xac\x85\x74\x18\x52\x56\x34\x91\xff\xe7\x46\x19\xd3\x5f\x9f\x84\x9c\x85\x0a\x8f\x3c\x4e\x97\x32\x4a\x4e\x14\x7a\xcc\xa8\x18\xd2\x75\xe9\xf1\x44\xde\xd2\xc1\xa1\xa1\xb5\x3d\x45\x91\x0a\x43\xb7\x12\x2d\x6a\x98\xd1\x18\xf4\xe9\x1f\xab\x4a\x1c\xea\x35\x5a\x7c\x14\xe3\x34\x46\x91\x19\x13\xac\xd8\x02\x00\x72\x8b\x4f\xa0\x3c\x72\x10\x98\x49\x2d\xbb\x10\xe8\x48\x27\x69\xce\x3d\x62\x7c\x20\xfb\x70\xad\x39\x1d\xfd\x2e\x77\xd8\x21\x7e\xce\x56\xb5\x26\x30\x22\x64\xa8\xe5\xa0\xec\x7f\xa6\x60\x26\x4c\xf8\x02\xf2\x92\x46\xde\xbd\x5c\xd1\x3c\xc9\x52\x54\x15\x19\xf0\x6a\x0a\x63\x34\x58\x9b\x30\x41\xb3\x92\x41\x7d\x9f\xd0\xc1\x43\xd7\x4b\xe9\xe7\x71\x85\x0f\x47\x71\xf7\x06\xdb\x1e\x66\xcf\x7b\x86\xd9\xb5\xcb\x59\x58\x27\x56\x7f\x5d\xb1\xec\xdf\xaa\xf4\xdd\xa5\x15\x4c\x4a\xb4\x87\x43\x51\xb1\xf6\x01\xab\x2f\xdd\xbd\xc3\x18\x11\x76\x32\x26\x5b\x06\xb9\x3f\x3e\x9c\xab\x93\xe7\x0a\xd9\xe5\x33\x52\xf1\x99\x08\xbe\xb5\xd7\xe2\x0f\x37\xa9\x5a\x3a\x86\x00\xff\x91\x5d\x27\xa4\xe4\x21\x92\x1d\x8e\x09\x6f\x80\x00\x6c\x78\xa1\xf1\x3d\x3f\x07\x33\x9b\x7c\x13\x8e\xeb\x84\xe3\x5e\xc5\x04\xbd\x44\x52\x02\x30\xde\x4c\x4a\x98\x94\x4b\x5a\xc0\xf4\xd8\x27\x0b\xee\x2d\x89\x9b\x0f\x35\xf7\x55\x97\x65\x02\x7e\x95\x6a\x2e\x34\xb7\x8a\x53\x28\x04\xb5\xb2\xc1\xc3\x6a\xa8\xc3\x2d\x41\x3f\x20\x6b\x86\x11\xbb\x14\xe6\x18\x08\x02\x00\x39\x25\x68\xd0\x9f\x4f\xef\x79\x15\xda\x19\x6d\x76\x32\x5b\x26\xd4\x29\xaa\x4a\x2b\x45\xb3\x32\x00\x00\x30\x41\xaf\x2b\xa6\x2d\x72\xd5\x68\xcd\x4e\x5d\x59\xd6\xc4\x90\x02\xa8\x26\x2c\x18\x44\x18\x4b\xbd\xd6\x4a\x76\x6b\xbd\xe3\x51\x10\x14\xaa\x6c\xa1\xca\xf7\xb9\x27\x06\xdd\x54\xf3\xe3\xfc\xd5\x7c\x63\xbe\x50\xa1\xb5\x57\x58\x39\x16\x7e\x6a\x36\x1a\x97\x0c\x3c\x94\x4d\xa1\xba\x83\xab\x79\x43\x13\xe3\xa0\xbf\x16\x11\xd2\x11\xd9\x47\xe5\x7f\x6b\x33\x7a\xff\xaf\xab\x68\xf0\x56\xc2\xd8\xb1\xb5\x4d\xcd\x85\xa6\x56\x40\x2d\x3a\xfb\xf7\x22\xad\xca\xcd\x33\xf3\x3b\x2b\x97\x73\xa2\x91\xd9\x67\x12\x76\x41\x18\x24\xbd\x0b\x61\xba\xd9\x8c\xd8\x36\xa7\x52\x01\x18\xf5\xd1\xfc\xfa\x96\xd6\xd8\xe6\x5e\x68\xab\x72\x23\xb0\xc4\xe0\xe7\xd9\xa3\x14\x16\x76\x96\x22\x8e\x47\xfb\x97\x6d\xad\x6a\xaa\x89\x70\xcc\x71\x3f\x93\x77\xd5\x6d\x51\x76\x12\xfe\x68\x2b\xde\xc9\xa2\xc7\x32\x53\xd5\x05\x36\x02\xb6\x6e\x10\x3a\x44\xba\x2a\x4a\x62\x9c\xf2\xc8\x76\x7b\xd3\x85\xfe\xe7\x62\xf3\xf4\xd2\xa0\x77\x93\x22\x4c\x6c\xad\x62\xe0\x8d\x3e\x1b\x19\x75\x4e\x3a\xb6\x26\x2e\xa0\x60\xb1\x55\xe3\xc3\xdc\xd2\x48\xc3\x6f\x6b\xa9\xea\xb8\xdb\xbc\xc3\xde\xf9\x24\x3b\x4f\xac\x19\x8b\x25\xa4\x95\x9a\xea\xe3\xfa\xa5\xe9\x94\xbf\x26\xf0\xdc\x1b\xb0\x74\x3e\x48\xa6\x22\x02\xda\xdb\xf1\x03\x46\x4f\xc5\x1d\x11\x75\xaf\x50\x76\xd7\xe1\x71\xaf\xb1\x03\xb9\xdc\x54\x76\xa5\x25\x99\x7a\x29\xc5\x5b\x5a\x4c\x8a\x14\xda\xd7\x37\x4d\x7b\x1c\x3d\xfc\xc9\x31\xa8\xcb\x86\xf9\xff\x59\x13\x4e\xb2\xb9\x1a\x75\xf5\x38\xdb\x73\x6f\xa5\xf5\x71\xe0\x88\x7d\x1f\x03\x5e\x7d\x29\xfd\x9c\x00\x5f\xfe\xc1\x46\x73\xcb\x7e\x60\x53\x8b\xa1\x53\x5d\x5d\xd8\xc1\x94\xf6\xe8\xe2\x42\xaf\xf7\xfc\x86\x62\xf9\xf2\x94\x94\x80\x49\x25\x5d\xaf\xb3\x81\x44\xeb\x1c\x51\xa4\x69\xad\x3f\xff\x9a\xbf\x83\x01\x86\x8e\x8f\x09\x00\x70\x1a\xd3\xc7\xc2\x34\xa5\xde\x80\x16\xd8\x6a\x26\xdf\x2c\xa9\x69\x5b\x09\x93\x01\x23\x4a\x84\x84\xdb\xfb\xd8\xfa\x93\xd8\x71\xfa\xb8\xba\x12\x73\xec\xba\x9d\xa8\x77\xf3\x2d\xde\x97\x50\x7c\x10\x04\x39\x46\x49\x0f\xfe\xcb\xb0\x24\xc6\xb3\xfb\x08\x2a\x06\x5e\x75\x62\xc8\xca\xdb\x17\x49\x29\xde\xcd\xea\x91\xe0\x82\xfc\xe5\xc0\x78\xf6\x60\x0c\xea\x1f\x24\x2d\x95\x01\x20\xbc\x9a\x45\xe0\x25\x6d\xbb\x36\xf6\x0f\xc8\x5d\x4e\x7c\xa3\xed\x4d\xb1\xd0\xce\xad\x90\x63\xa3\x3e\xc4\x91\xdc\x7e\x92\x04\x52\xfb\xbd\xd2\x4f\xe3\x7b\xb4\xe3\xb7\xff\x9e\x6f\x7e\x9c\x50\x54\x14\x23\x37\xa2\x3a\xd8\x89\x9f\x11\xf6\x98\x85\x17\x1d\xee\xaf\x09\xfc\x92\xbd\x6a\x1e\x39\xfa\x6d\xf6\xe0\x6a\x71\x07\xb2\xd4\x04\xb2\x7d\x8e\xc6\x76\xb5\x64\xeb\x70\xc6\x72\x87\x0c\x19\xd2\x8b\x27\xb4\xcb\x0a\x03\x29\x63\x5a\x7f\x9c\x86\x28\xbc\xdf\x06\xb5\xd4\x58\x17\x61\x33\xff\x19\x42\x4e\x15\x11\xbc\xe6\x61\x2b\x67\xf9\xfe\xe5\x7f\xb5\x43\x42\x51\xf5\x14\xf0\x41\x2c\xa7\x14\x0a\x60\x84\x62\x9a\x28\xc2\x6b\x01\x0b\x16\x79\x2a\xab\x73\x67\xc3\x85\x69\xe0\x7d\x00\xf8\xd8\x01\x80\xe4\xad\x46\xc8\x16\x56\x0b\x28\x45\x61\x6c\x22\xd8\xd0\xe9\x5d\xee\x88\xcd\x33\xd1\xaa\x43\x35\x28\x76\xe6\x1e\xa8\xa5\xc1\x84\x43\xe7\x45\xda\xfe\xe1\x46\x33\x7e\x1e\xaf\xe2\x42\x07\x35\x18\x1a\x98\x92\x44\x46\x0c\x1b\xc4\x0d\x7d\xba\x5c\x0f\x0d\xf5\x02\xf9\xc8\x51\x80\x8e\x57\x11\x8e\x81\xc6\xd6\x67\x59\x21\x12\x07\x27\x87\x89\xa7\x96\x8b\x57\x58\x03\xe5\x00\xe5\x28\x01\x8c\xc6\xfb\x0d\xe8\x3b\x7b\x7d\x9e\x9c\x77\x46\x49\x2c\x6f\x2a\x6f\x91\x16\x78\xcd\x31\xbc\xd0\xb9\xd1\xa8\x3a\x2e\x59\x5a\xb6\xe0\xdf\x46\x0b\x56\xa4\xfc\xcb\xdd\x36\x59\x62\x14\x3c\x6f\xeb\xbf\x16\x34\x75\x18\x7c\xe1\xf7\x43\x46\x91\x30\xfc\xe9\xdf\x7a\x28\x14\x2e\x46\x01\xe7\x82\x1a\x6c\x1b\xef\x7f\x09\x59\xfe\x62\xe4\xe1\xbf\x5c\x48\x6b\x22\x1e\x2e\xd1\x4e\xf8\xaa\xe3\xeb\xe9\x41\xd3\x61\xcf\x23\xdf\x19\x52\x04\x36\x40\x0d\x10\x02\x7f\x00\xc4\x93\xff\xdf\x74\x83\xa3\x55\x7d\xec\x05\x6f\x7b\x5a\xf2\x1a\x8c\x39\xe6\xfa\x6e\xb2\x0f\xd7\x32\xa3\x80\x80\xa2\x50\xee\x5a\xfc\x03\xcc\xd9\xd2\xfe\x1c\xc6\x35\xf6\xb8\xc8\xe9\xc4\x22\x8c\x7d\xcb\x7a\xc1\x81\xab\x4d\x14\xea\xa2\x47\x7f\x3a\xa6\x6a\xb9\x73\x4b\xd6\x74\x88\x64\x9a\x5f\xfb\x2c\x9d\x4a\x7a\x2f\x48\x37\xaa\xfa\x46\x53\x2a\x34\x36\x3a\x36\x5c\xc8\xf5\xf0\x92\xc7\x72\x0a\x0b\xc6\x6b\xc9\xba\xb2\x2e\x29\x87\xd2\xe2\x6c\xb3\xbf\x89\xe5\x9c\xd9\x9d\x13\x5d\xc7\x72\x5b\x26\x2c\x84\x56\x26\x9c\xc7\x52\x68\xeb\x25\x15\x27\x76\x58\x76\x09\x71\x51\x8b\x7e\x18\xeb\x6c\x06\x20\x54\x88\xfa\xb1\x48\x51\xfe\x7c\x65\x71\x60\x60\xaa\x34\x99\xb8\x13\x24\x1f\x22\x3a\xc8\x00\x1b\x24\x86\xa6\x7b\x04\xfc\x95\x4d\x95\xb0\xee\x5e\x36\xbb\xb2\x5a\x15\xa3\xf9\x92\x48\x01\x98\x31\x43\x7a\x4e\x40\x28\x4d\xa5\x25\x83\xf2\x38\xc5\x25\x2d\xed\x99\x0f\x1f\x1f\x29\x06\xf2\xc8\xe3\xc7\xff\x36\x32\xb0\xb1\x4d\xca\xfb\x53\x52\x48\x25\x84\x27\x02\x19\xeb\xf3\xcb\x84\x22\xa2\x28\x25\xb5\xdb\x46\x27\xed\xcf\x2e\x57\xaf\x07\xa0\x01\xb7\x97\x87\x91\x0c\x10\xf4\x47\xbc\x5f\x91\x6a\x0c\xb4\xb4\x36\x45\x0f\xdb\xcb\xc9\x45\x5a\xfe\xb1\x89\x44\xa0\x20\xc6\x20\x30\x6b\x8a\x26\x64\x22\x9d\x14\xbf\x7c\x85\x91\x2c\xea\x8b\xb2\x50\x7a\xbd\xd1\xb8\xa3\xef\xad\xe9\xea\x74\x19\x7f\xf5\x8f\x4d\x3a\x36\x1e\xfc\xbc\x4a\x6d\xc1\x2b\x22\x09\x43\x9b\xfb\x2f\x44\x53\xc9\x69\xaf\xc3\xac\x91\x8e\x4f\xec\xaf\xb0\x53\x6e\x3d\x9f\x06\x32\x46\x9b\x5c\x75\x99\xe9\xed\xb8\xa0\xcc\xcd\x3c\xef\xae\x5e\xf8\xe6\xe1\x34\x4b\xc8\x1f\xea\xdc\x7d\x52\x5b\x47\x65\x29\x7a\x2e\x29\xb6\x44\xe6\x99\x3a\x84\xcf\x46\x19\x81\x56\x87\xbf\xa6\xa2\x42\x3a\x0c\xe5\xdb\xf5\x6d\x6d\x74\xce\x50\x9b\x43\x55\xc6\xe7\x16\x9f\x15\xde\x53\x82\x5a\xaa\x4c\x8a\xa6\x09\x6a\xd5\xcb\xf4\x3a\xa2\x4b\xf0\x1f\xf7\xc6\xe8\x64\xe6\x59\x3c\xd1\xe6\x84\xf2\x72\xbd\xf4\xf0\x3f\x99\x5a\x5b\x6a\xce\xf6\x5c\x10\x79\x38\xfc\x9e\x98\x73\xa8\x19\x26\x0b\xef\xf5\x64\xf9\xc9\xf2\x89\x00\x6d\x70\x27\x16\xe2\x47\xb3\x78\x2f\x3f\x10\x01\x00\x94\x45\x86\x16\x69\x50\x56\x7d\x64\xff\x19\x9b\xe1\x87\x61\x15\x71\xc4\x7a\x84\x1a\xbf\x72\x19\xc5\xf3\x8d\xeb\x9c\xf8\xa7\xf5\x61\xa2\xc5\x7a\x48\x51\x6e\x93\x74\xca\x04\xf2\x4b\xa6\xc0\xf0\x37\x61\x4d\x12\xb6\x57\x5d\x19\x41\x5b\x45\x8f\x06\x3d\x1f\x46\x06\x60\xe0\xec\x02\x57\xd4\x52\x50\x9d\xb8\xe5\xfe\x2d\x3f\x9c\x1f\x88\x5a\x92\x62\x7d\x99\x4a\x2b\x22\x81\xf3\xc8\x9f\xdb\xb5\x0a\xfd\x48\x1e\x0f\x3b\xa8\x09\xcc\xbf\xfd\x8f\xb0\x3c\xbd\x8a\x0f\x4e\x88\xbd\x0e\x4a\x8f\x3a\x9f\xe9\xf3\xa0\x21\x6b\xbb\x5c\x88\xbe\x16\x88\x23\x75\x1d\xbb\xe4\xc5\x03\xb3\x7b\xf4\xc7\x63\xfc\x7d\x2a\xe7\x1e\xc6\x23\xa7\x92\x22\x7d\x98\xe7\x9d\x2a\x25\x4d\xac\x4d\x1f\x01\x6e\x4d\x74\x55\x4a\x1f\xbe\xe3\x45\x66\xbc\x8c\x2c\xbd\x89\x8c\xdc\x13\x58\xbc\x1a\xea\xea\xd4\x71\x2d\x3d\xf1\xea\x3e\xc1\x5c\x48\xb4\x3a\x1f\xb9\x6e\x47\x5a\x0c\x1b\xe6\x34\x3a\x7f\x7c\xcb\xf8\xb2\xff\x70\x50\x97\xc7\x03\x0c\xac\x5c\x49\x92\x53\x8f\x96\x04\x7c\x3e\x01\xe1\x73\x28\xed\xcf\x79\xd0\x3c\xf1\xb3\x6f\xc9\x6d\xeb\x81\xa8\xb1\xf8\x72\xc7\x20\x60\xb3\xd6\xdb\x77\x65\x34\x5c\x73\x98\xbd\xfb\xbd\x08\xa2\xa4\xd7\x8e\x08\xff\xe8\x88\xea\xb1\x24\x56\x48\x54\xa2\x39\x02\x6d\xec\x23\xa2\x5f\x7f\xa2\x43\x86\x8c\xfd\x71\xc9\xfb\xcd\xf1\x83\x15\x66\xe9\x8d\xfe\xb5\x95\x22\xfa\xc7\x73\xe9\xbb\x9d\x2f\x3a\xc9\x98\xdd\x16\xfd\x1a\xa5\xed\x41\x2f\x22\x57\x7b\xa1\x81\x68\xa8\x1c\xc3\x8d\xdf\xf0\xda\x7d\x1a\xb6\x2b\x39\x18\x4a\x45\x82\x0f\xc8\x2d\xc7\x4b\xce\xb3\x13\xcd\x35\x5a\xc7\xea\xed\x66\x6e\x54\x05\x7f\xea\xc3\x15\xfa\xe4\x1a\x5a\xea\xea\xd5\xb4\xc2\x2a\xf8\x23\x59\x6f\x25\x3f\x73\x61\xa2\x61\x79\x91\x89\xe7\x85\xda\x56\x82\xae\xab\x29\xfd\xe9\xdb\x0f\x93\x69\xeb\x27\x91\xb5\x74\xd3\x20\xc4\x34\xd8\xd6\x6f\x5f\xfe\xa1\x7b\xfa\x63\xa5\xbf\xaa\x5b\xac\x7f\x29\xf4\x84\x17\x34\x92\x18\x24\xd0\x6f\xa6\x3c\x48\x48\xa3\x39\x08\x0f\xbd\x2f\x90\x92\x14\x8c\x5c\xce\xe1\x31\xe7\x71\xbc\xf4\x8d\x1f\xc8\x01\x28\x33\xe4\xa5\x17\x82\x29\x1a\x0f\x59\x61\xf0\x47\x9f\x9b\x40\x31\xfb\xdd\xb5\x95\xef\x6f\x8a\x79\x76\x6e\x13\x21\x10\x54\x41\x4a\xa9\x85\xd8\x46\x4e\x5c\x6e\xfc\xb8\x70\xc9\x3f\xab\x16\xcb\xba\x48\x84\xde\x7e\xf0\x91\x50\x8c\x77\x4a\xf4\x35\x03\xd3\x28\x77\xe3\xdf\xc8\xa7\x0f\x3c\xbf\xac\xc9\x3e\x30\x5d\x72\x10\x7d\x5b\xf6\x3a\x18\xb9\xa3\xd0\x55\xb9\x96\x55\x44\x5b\x08\xf9\x11\xa3\xd5\x20\x86\x83\x9e\xff\x56\x76\x02\x9b\x76\xf8\x84\xad\xdd\xbd\xef\x44\xee\x1e\xd3\xad\xf1\xfe\x00\x03\x70\x35\x08\x23\x5e\xa0\x14\x37\x8a\x11\x61\x6b\x39\x92\x8b\xbe\xca\xa9\x6d\x2c\x74\x4d\x4a\x3c\xbb\x57\x84\x76\x32\xb2\x25\x88\xfb\x66\x4c\x68\x3b\x16\xf3\x0b\xd4\xbd\xc7\x96\xb5\x57\x72\x92\x2b\x9d\x89\xbb\xa0\x19\xde\xc0\xc7\x49\x34\x92\xf9\x73\x44\x14\x73\xab\xb9\x2d\xf0\xb0\xb9\xe8\x6b\x77\xaf\x1f\x49\x80\x39\xb2\x35\xc4\x98\x75\x59\x2d\xa7\x03\xbe\xd7\x52\x8a\x68\x34\xcd\x48\x66\x4f\x6f\x4c\x04\xda\x75\xc6\xd7\x33\x3d\xf9\x59\x9b\xe4\x9f\xfa\x81\x12\x00\x90\x5b\x78\x0a\xe5\x11\x2a\xba\xf7\x84\xe2\x67\xdb\x62\x73\x46\x68\xbc\x2b\x9f\xe4\x28\x84\xdf\x64\x1f\x5a\xa9\xc3\xe0\x8d\x7d\x3b\xe7\x29\xbf\x8d\x9a\xf5\xa6\x39\x01\xa1\x85\xe1\xeb\xfd\xa0\xcb\x47\xf4\x91\xc8\x7f\x2f\xcf\x70\xe0\x1a\x1d\x28\x42\x0c\x4f\x05\xb7\xf3\xa4\x23\x84\xff\x76\x5f\x36\xb8\xce\x68\xb9\xf7\x41\xad\xa0\xe4\xa1\xb6\x67\xc7\x1e\x2d\x8e\x4b\x2a\x8d\x26\xef\xb2\x2a\x1c\x5e\xef\xfa\x5c\xbc\x1c\xb4\x9a\x78\xc8\x0a\x8e\xaa\x48\xb0\x03\x01\x3c\xea\xe2\x08\x39\xe3\xee\x52\x94\xbc\x2e\xdf\xe7\xdc\x8d\x97\x16\x1d\xda\xd3\x9b\xf9\xea\x26\x63\xc9\x92\xe4\x48\x85\x5c\x15\x63\x03\x1b\x5b\x1d\x8a\x0f\x35\xad\x3f\x4e\xfb\xc5\x63\x56\xbd\x29\x68\x34\xea\x04\x90\xbf\x9e\xa1\x48\xa9\x5c\x66\xe5\xde\x9d\xb3\x30\x5d\x32\x95\xde\x38\x6a\x87\x4f\x62\xfe\x21\x8f\x6f\x05\x39\x36\x69\xad\x44\x2f\xec\x99\xe5\x89\x43\xd6\xff\xc0\x00\x69\x52\xf3\xc1\x93\x44\xc3\xda\xbb\xdf\x4a\x3f\x9b\x78\xa4\x80\xff\x72\x99\x8c\xd5\x01\x76\x3b\xf4\x1a\x00\xb0\x14\x70\x9b\xc2\x56\x94\x3e\x0b\x9e\x3e\xae\x3a\x29\xad\xe4\x75\x8c\x03\x9b\xc1\xd8\xbf\x16\x38\x7b\x55\x6d\xb3\x72\x97\x4c\xbb\x45\x68\x7c\xf2\x8c\x3d\xa6\xde\x26\xca\x79\x8e\x49\x9e\x39\xbe\x7a\x1e\x0c\xb8\x50\x51\xae\x1c\x44\x0a\x52\xee\xe9\x9f\x17\xa5\x98\xb7\x3e\x64\x1f\xcd\xe9\x08\xba\xfa\xd7\x2f\x8c\xf9\xe9\x6c\x9d\x7d\x1a\xbb\xbe\x97\x73\x23\x70\x36\x1c\x15\x9e\x9f\xef\xf5\x9e\x17\x8f\x29\xd8\xb7\x03\x9d\x82\xa2\x5e\x26\x5a\x99\xb9\x0f\x84\x5e\x03\xa3\xbf\xbd\x99\x51\xf1\x3d\x62\xb2\xe4\x25\x99\x25\x64\xbc\xa9\x95\x42\x91\x22\x58\x99\x51\x43\x17\xb9\x71\xe1\xbf\x8d\x1a\xc6\x46\x1c\xb8\x6a\x6b\xb4\x27\x09\x6d\x6b\xd9\x21\x88\xf7\x46\xdd\xed\xa2\x20\x32\xd0\x1f\x46\xca\x0a\xb4\x31\x7f\x97\xf1\xe7\x99\x42\x4c\x13\xd1\x37\x7f\xcc\x50\xc6\x35\x77\x55\xea\x09\x87\x22\x1a\x5b\x48\xda\xee\xd8\x21\x75\x10\x0c\xf3\xac\xfe\x71\xda\x17\x78\x61\x5f\xb6\x8f\xd5\xc6\xf7\x87\x35\x1d\xd8\xe6\xfd\x45\x1a\x35\x95\xbe\x26\x34\x5a\xe2\x00\x51\x6e\xcf\x6e\x31\x29\x22\x88\x1f\xc6\x3f\xe5\x02\xa7\xaf\x3d\x2a\xe7\x57\x76\xe4\x9c\xe9\xdb\xd3\xb1\x6b\xec\x86\xb0\x4d\x0f\xb4\xe3\x29\x77\x82\xb7\x1f\x21\xb8\xa8\xb1\x5e\x5f\x74\x1b\x3e\x7c\xad\x78\xc0\xd6\x67\x6b\x3e\xe5\xc7\xdc\xe8\xeb\x37\x48\xe8\x39\xd8\xb6\x95\x39\xdf\x80\xf7\xef\x0e\xaa\x5d\xc1\x6a\xd8\x86\x43\x9e\x8a\xf6\xbb\x7f\xbf\xb9\xf4\x38\x76\x44\x0d\x7d\x04\x58\xc1\x51\xab\xe9\x40\x28\x4f\xba\xbb\xd3\x5d\xc5\xd5\x1a\x04\x1a\x55\x48\x55\x8d\x8d\x9d\x67\xcd\xf1\x2d\x64\xf8\x84\x15\xfc\x7a\x1e\x3b\x11\xce\xd4\x9f\x57\x56\xc2\x5f\xb3\x15\xaf\x57\xb8\x96\x9f\x39\x35\x06\xf9\xc1\x58\x43\xa0\x77\x06\x1d\x4d\x53\x83\xc2\xb7\xe4\xdf\x04\xd2\x06\x9f\x69\xf9\x4f\x1c\xed\x85\xa8\xf0\x71\x53\xbf\x9b\x6e\xbb\xc8\x3e\xba\xd7\xb7\x58\x6b\x1b\xf2\xfa\x27\xa2\x88\x06\x0b\x77\x17\x4a\x3c\x06\x99\x3c\xcd\xb3\x8b\xff\x3d\x87\x2b\x7c\x68\xaa\x4f\x4a\xc3\x38\xdd\x7a\x08\x6a\xe3\xf8\x03\x57\x05\xa4\x28\xe9\x68\xe1\xad\xbf\x5b\xb6\x0c\x48\x50\x2e\x3d\x8e\x24\xf0\xa5\xc0\xac\x17\x3b\xa0\xc1\x4c\x28\x00\x00\x24\x07\x64\xac\xf5\x7d\xc9\x3a\xbb\x5e\x4b\x27\xba\x83\xda\xc1\x66\x76\xf4\x3e\x2a\xb8\xc1\x58\x23\x0c\xa8\x14\x0e\xc9\xbf\x77\xa3\xff\x1e\x5a\x19\x25\x98\x43\x3f\xd5\x94\x72\xb7\x9c\xf2\x63\x6a\x74\x2e\x78\x31\xcd\x13\xda\x98\xaf\x3d\x3b\x8f\xc6\x3e\x3d\x24\xfa\x62\x0a\x18\x93\x76\xc6\x05\xc4\xd2\x45\x16\x7d\x50\x80\x57\xf2\x0a\x60\x22\x0e\xf0\xe2\xb0\x02\xef\x53\x78\xd9\x78\x44\x49\x90\xc0\x63\x3e\x3f\x49\xe2\x20\x0a\x7b\x77\xe9\xb5\x09\x29\xe2\x91\x00\x40\x95\x59\x7e\x88\x70\xa6\xe8\x1b\xe7\x79\x4e\x5c\x6e\x2e\x25\xc8\xbe\xce\xed\xc0\xab\xcf\xf9\x1d\xbc\x80\xe0\x29\x3e\x68\x7d\x00\x2f\xe2\x01\x25\xe4\x5f\x6d\xe4\x8f\x6e\x32\x36\x76\x28\x24\x70\xfc\x67\x6e\xec\xe5\x2a\x72\xab\xbf\x27\x70\x1f\xa9\x94\xd6\xa2\xc4\x54\xb1\xe2\xd3\x7a\x1a\xa4\x80\x1e\xbc\xfa\xa0\x4b\xe2\x59\xae\x71\xd4\x87\x3e\x0b\x06\xdf\xb4\x1f\xe2\xa2\x71\xf0\x51\x10\x19\x32\x90\xf3\x77\x16\x62\x24\x92\xc6\xfc\x3e\x69\xe8\xeb\x8b\xb9\xbe\xca\x9e\x1d\x83\x57\x8f\x15\x02\x60\x80\x34\xb9\x39\xe7\x5e\x65\x5d\xbc\xde\xdc\xe0\x46\x3c\x73\x22\xe3\x7e\x63\xaf\x98\xf2\x06\xab\x69\x80\x26\x1d\x2a\x86\x9a\x37\x1c\xf4\xf2\x01\x49\x7d\xfb\xa6\xab\x0c\x84\x8a\x76\xd5\xbd\xa8\x59\xfc\xf7\xb3\xae\xd6\x05\xb3\xa2\x3d\x7b\x47\x81\x2d\x7b\xed\x2e\x1d\xb5\x51\xe5\x74\x49\x14\xf8\x7f\xbc\x97\x57\x34\xdb\x0f\xfc\xf7\xbf\x89\x84\x20\xad\xad\x56\x25\x46\xd1\x58\xb1\x4a\xd5\x48\xd4\xa6\x46\xad\x1a\x35\x6a\x14\xa5\x76\x6d\x22\x54\x55\x6d\x35\x6a\xd7\xae\xd9\x2a\x4a\x6b\x6b\x51\x7b\x54\x8d\x9a\x8d\xad\x45\xad\x18\x21\xcf\xf9\xfd\x9f\xab\xe7\xe2\xb9\xfd\x9f\xf3\xb9\x7d\x9d\xcf\x7e\x9f\xf3\x06\x0c\x4c\x46\xbf\x55\xf5\x1e\x96\x0e\x2b\x8b\x5b\x82\xd6\x28\x90\x65\x94\x50\x0c\x8d\xfd\x1f\x78\x0c\x39\x0f\x00\x96\x8d\xfb\xbb\xab\x6c\x24\x42\xd5\x69\x13\xea\x14\x3c\x44\xa3\x34\x70\x06\xc8\xe8\xe1\xcd\xdc\x96\xa2\x96\xe6\xf1\x1f\xa6\x19\x16\x15\xb0\x4c\xb7\x9f\xf2\x47\x23\x04\x15\xdb\xe2\x51\x00\x08\x82\x26\x39\xe4\x8d\xed\x6d\x8f\x7a\x11\x2d\xfd\x89\x52\xdb\xc4\xbc\xb5\xb0\xd5\xd3\xbb\xdb\xed\x16\xce\xc2\x76\xd8\x7c\xda\x27\xf0\x9f\x43\x54\x0f\x86\x9a\x63\x3f\x65\x13\xdb\xea\x4d\x06\xa9\x30\x7a\x54\x34\x38\x50\x4e\x17\xd3\xa8\x7d\x31\x58\x60\xd5\xb0\xa7\xd6\x42\xc9\xe8\x20\xa1\xae\x0a\x26\xb9\x7f\xb9\x78\x1b\x6f\xa0\xe5\x1d\x84\xb1\x41\xc9\xf5\x0b\x9b\x71\x04\xbd\xfb\x61\x1a\x6a\xc9\xf2\x37\x7d\x18\x7a\xe8\x64\x5d\x44\x8f\xe9\x11\xf8\xb6\x57\x76\x83\x78\xa3\xfa\xc4\x0f\x40\x3f\x4d\x8b\x4f\xab\xf5\x60\x6e\xf3\xf2\x5f\x3c\x6b\x5d\x2d\x3d\x0e\x56\xc7\x2c\x16\x60\x74\x33\x31\x31\x89\xda\x85\x9c\x39\x35\x16\xdc\x77\x02\xea\x96\x94\x56\x8d\xd5\xef\x40\x1e\x29\x01\x92\x8c\x42\x40\x74\x52\x9d\x14\x72\x73\x7d\xc3\xbe\x57\x43\x3f\xb9\xc5\xed\x74\xb2\xaa\x6c\x23\x30\x43\x74\xe8\x09\xed\xb2\x9d\xef\x01\x05\xeb\x10\xae\xd5\xa2\x3e\xed\x5a\xed\xcf\xa3\xe7\xdf\x1a\xfb\xb3\xe5\x3d\x34\x18\xa1\xa9\x51\x1d\x48\x2c\x6e\x39\xe2\xb6\x23\x26\x44\xf9\xec\xf4\x65\xcf\x49\x51\x34\xb9\xc9\x1e\x01\xb0\xc9\xa2\x7a\xf6\x65\x6f\xed\xdb\x84\xfb\xc9\x1e\xdc\xa9\xbc\xf7\x97\x28\x92\x18\xea\xf3\x5a\x3b\x6c\x1d\xfe\x16\xef\x20\x9a\x9f\xce\xac\x75\xeb\xd6\xab\x1d\x1e\x60\x8d\x02\x49\x88\x00\xdb\xc2\xf8\x82\x40\x2a\x14\x69\x3f\xa8\x13\xe5\x2a\x60\x15\x4e\x06\x0d\x0a\xa5\x6b\x56\x8d\x31\x79\x38\xdf\x2e\x12\x30\x50\x56\x2b\x3a\xbd\x35\xbf\x2d\x13\xfa\xee\x87\x69\xe4\x67\x86\x7a\x2e\x13\xdf\x7c\x49\x03\x18\xbc\x42\x1c\x67\x1d\xc1\xfe\x58\x55\x96\x5c\x20\x1a\xda\x2b\x7c\xd9\xf0\xd9\xf4\xec\x27\xa1\x6b\xca\xfa\xd7\x77\xd2\xc4\x64\xe9\xf1\x17\x73\xfd\xd3\x1a\xde\x3e\x9a\x66\xfe\x03\xa7\x32\xd2\x2d\x51\x47\x05\x57\xb9\x8a\x93\x7d\x21\x82\xec\xff\x08\x55\xc7\x9f\x43\x06\xad\x0d\xe2\x75\x0f\x62\xa0\x15\x08\x0e\x88\x00\x7d\x60\x4c\xcd\x9d\x7d\x55\x95\xb0\x0f\xd5\xd6\xa7\x5b\x4e\x3b\x9c\xfe\x57\x87\x6a\x39\x40\x43\x7a\x67\x79\xa5\x20\xac\x43\xb7\xd1\xca\xba\x9f\x62\x80\xc7\xc7\x8d\xcb\x8d\xc8\xa3\xb5\x32\x19\x3e\x67\x0a\xdc\xe2\x75\x10\xb0\xd7\x17\x93\xae\x75\x2f\x1b\x12\x2c\xf0\x15\x41\x5a\xa2\xf2\x3e\x49\x43\x66\xa4\x4d\x2f\x84\xe2\x3a\xe3\x5b\x52\x54\x31\xd2\xdd\x36\x0f\xdd\x9d\x4f\xa7\xfc\xeb\x6a\x6b\x27\x1b\x6c\xbe\x7f\xfe\xc3\xc9\x51\xf6\xe9\x65\x94\x4e\x76\x1f\xa7\x81\xf9\xfc\x40\x20\x79\x59\xdc\xa6\x9c\x34\xf2\x82\x9d\x0c\x00\xb3\xc0\x12\x80\xa3\x15\x5c\x4c\x56\xda\x05\xc2\x76\x18\x98\x01\x7b\xb4\x2a\xe4\x50\x9a\x8c\x63\x62\x48\x82\xe2\x14\x80\x95\x98\xa8\x90\x31\x43\xd3\xc5\xd9\xc1\xd6\x8b\xae\x88\xa3\x84\xcd\x09\x52\xf1\xae\x8b\xc5\x06\x4d\x84\x38\xa7\x7c\xf8\xae\xcb\xd8\x29\x59\xc9\xea\x49\x98\xf5\x07\xbc\x40\x8e\xae\xa7\x96\x0a\x52\x0b\x8e\xe9\xfa\xc7\x96\xc3\x5c\x16\x09\x29\xa2\x4b\xb2\x2a\xe2\xdb\xba\xa9\x2d\xbc\x5c\x09\xe0\x82\xaa\x2b\xc4\x5b\x1a\xb3\x43\x7d\x4a\xde\x86\xc9\x12\x3e\x7c\x32\xd1\xf3\x30\xa2\xfe\x59\xbc\xeb\xc7\x6c\xa5\xe6\xa6\x20\x76\x9b\x7c\x2c\x6e\x5d\x4e\x7a\x53\x16\x23\x0f\x4c\x7b\xf2\x82\xbb\x76\x35\x0e\xef\x44\xe4\xfb\x41\xa0\x1d\x4d\xc5\x31\x38\xe7\x6b\xef\xcb\x61\x7d\xbe\x1a\x62\x92\xfb\x81\x1a\xe6\x97\xfd\xa6\xc7\x95\xfe\xc4\xea\x5a\x4b\x6e\xe1\xff\xa6\x05\xbb\x19\xe3\x16\xa0\xab\xf4\x74\x93\x54\x16\x6c\xbe\x5b\x1b\x1e\x58\x72\x34\xe6\x34\x56\xdd\xe1\xc9\x93\xb4\xc6\x80\x91\x40\xdf\x88\xb3\x3d\xec\xb6\x57\x58\x50\x1e\xdd\x53\x0e\x77\x16\x5b\x9c\x1f\x08\xf1\x6b\x7e\x77\x59\xb1\x39\x51\x2b\x84\xaf\x99\xd0\x69\xf9\xad\x8f\xad\x97\xbe\xbc\xec\x35\xb3\x20\xaf\xb5\xfe\x6a\x68\xa7\xc0\xb1\xe6\xc4\x00\x74\x7a\x6d\xd7\x84\xc0\x49\xf6\x06\x40\x0e\x1e\xc4\x8b\xe4\xb8\x8a\x2e\x58\x64\xf2\x14\x81\xd4\x89\x59\x06\xd9\xdf\x39\x4f\x33\x3b\x96\x5c\x1c\xfc\x5c\x25\xbd\x19\x9c\x25\x59\x8c\xb4\xf5\x41\xf9\xff\x42\x85\x93\x85\x08\xe4\x8d\x83\xb4\xe3\x8b\x17\xaf\x86\x23\x7a\xa3\xa8\x36\xdf\x46\x48\xf3\xe0\x1e\x2d\xa5\x78\xd3\x14\xe5\x9b\x7e\x6a\xef\xdd\xe3\x54\x92\xc9\xbb\x23\x69\x66\xa3\xf0\xbe\xcd\xd4\xf5\x5d\xbb\x2b\xe5\xe1\x15\x81\x3e\xc9\xe4\x82\xce\xd7\xc3\xaf\x52\x70\x96\x12\x17\xe4\x73\x41\xd9\x2d\xf2\xf1\xc4\xe4\xf1\x5d\x39\x06\xd0\x98\x01\xc6\x86\x8f\x87\xe4\x36\x22\x6e\x74\x8a\x6d\x87\x7f\x55\xc5\x34\x8d\x6b\xce\xde\xc9\x41\x81\x45\x12\x45\xdb\xda\x52\x03\x09\x0d\xf3\x7f\x64\x7d\xae\x5a\xe6\x1d\x2a\xde\xe3\xb9\xcf\xb8\x27\x97\xec\x68\xc6\xd0\x5e\xf5\xa0\xd3\x46\x11\x35\xa3\x1c\xf6\xde\xc1\x43\xc6\xf7\xa9\x0f\x8a\x60\x0d\x02\x5d\x54\x16\x7c\xf8\x06\x00\x7a\x59\xeb\x6a\xb1\x9d\x54\x6c\xf3\x1b\xbd\xad\xde\xbd\x3d\x36\xb4\xe5\xd6\xbe\xaf\x07\x0f\xa8\xd6\xe2\xb7\x4d\x08\xd9\xd0\x17\xa1\x96\x74\x1b\x0f\x51\x7d\x5d\xe6\x19\x7f\x73\x99\x73\xfa\xb7\xf4\x16\xce\x53\xc9\xbe\x65\x67\xed\x7f\x56\x5b\x42\x3b\x42\x00\x07\xc0\x88\x1c\x91\xcf\x4f\xcd\x6b\xfb\x40\x0f\xc3\x76\x55\x8e\x15\xac\x8e\xb9\x66\xfd\xeb\x7b\xdb\xe5\xd9\xb3\xb5\x5f\x81\x1a\xe6\x9d\x75\x9d\x65\x2a\xda\x80\x58\x8c\x5b\x50\x2c\xa9\xf0\x2d\x55\xf8\xc7\x54\x62\x18\xa9\x69\x45\x41\xa1\x2f\x50\x46\x83\xe1\xa9\x27\x2f\x65\x8a\x02\xb8\x28\x36\xe2\xe4\x54\x42\x2e\x22\x2f\x81\x01\x1e\x76\xa8\xe0\xfe\x49\x23\xa4\x21\xdc\xea\x53\x3e\x75\xa1\x93\x82\x53\xd5\xad\xfa\xe7\x77\x34\x7a\xe6\x27\xa3\x8f\xe7\xe3\x7a\xdb\x6a\xbc\xbd\x73\x35\x1f\x3d\x4c\x8f\xbb\xfc\xf8\xd5\xe4\x6b\x4f\x91\xda\x3a\x95\xf2\x67\xa3\x0b\x3b\x4b\x82\x49\x47\x08\xc0\x0f\x95\xbe\x35\x82\xd1\x5e\x7f\x6f\xa8\x8a\x49\x14\xc4\x10\xea\x4f\xb6\xf4\xd6\x26\x65\x9f\xd5\x2d\xa2\x66\xfb\x39\x92\xd7\x2d\xf5\x7c\x7b\x18\x52\x70\x9c\x06\xcd\x8f\x2b\x49\xeb\x2c\x52\x01\x1e\x95\x4b\x61\x4d\xe6\xbe\xfe\xa8\xf4\xc5\x3a\x93\x65\x15\x0d\x20\x2a\x75\xa9\xfc\x11\x00\x40\x3b\xa5\x7c\x68\x22\x11\xdc\x54\xec\x17\x6d\x2a\x4a\xa5\xfa\x47\xdf\x1a\xb3\x5a\x2d\x26\x6a\xad\x2a\xb7\x3c\xc4\xea\x27\x77\xb3\x94\x42\x53\xb5\xea\xa4\x87\x9e\x5e\x32\x24\xdf\xcb\x5d\x24\x3b\x57\x9f\x2e\x92\x57\xd4\x09\xeb\xf8\x3e\x01\x5f\x05\x90\x98\xad\x12\xc0\x68\x97\xde\x0e\xb9\xa6\x32\x48\x0b\xa0\xad\x20\x51\xdf\x23\x14\x79\x31\xcb\xfc\xe1\xfe\x8b\x9f\xcf\x7b\x9e\x1d\x5b\xbe\x72\x3f\x92\x67\x52\x7d\x73\xd8\x7a\xef\x36\x23\xa0\x3a\x25\xbc\x57\x50\xf2\x2f\x9f\xcb\x81\x94\xff\x94\x65\x5e\xdc\xdf\xe7\x69\xb3\x1b\x54\x54\xcf\x51\xc1\x05\xad\x05\xe3\x4f\x33\xbb\x5e\x5f\xed\xb9\xc4\x2f\xaf\x9f\xfa\x07\xb0\xa7\x43\x57\xb5\x3e\xdb\x0d\xbc\xaf\x62\xb3\xe8\x6a\x43\x5b\xde\x38\x6d\x2a\x69\xb6\x75\x36\x3e\xf9\xf9\xb8\xeb\x91\x4e\x68\xef\xfe\xb4\x99\x8c\x5e\x5e\x51\x8a\x03\x6f\xad\xc4\x81\x26\x38\x6c\x66\x9f\x5c\x8b\x58\xac\x22\x7f\x19\xc9\xf8\x95\x08\x1c\x80\x92\x20\x6b\xbf\x07\x3c\x17\xe2\x6e\x82\xe1\x1b\x47\x90\x28\x15\xa4\x0e\xff\xca\xce\xeb\xa1\x3b\x1e\xee\x6b\x6d\xad\xb3\xa3\x3b\xe5\x39\x1b\xa9\x6d\x9f\xd8\xb1\xda\x38\x9c\x51\xe0\x52\xf9\xef\xa2\xcf\x0c\xa4\x95\xbe\xfd\xf0\xc0\xa4\x23\x59\xa2\xb7\xf5\x2a\x9a\xd0\xfb\x0d\x73\xbf\xa6\x03\x3d\xd2\x81\x64\x40\xfb\xde\xcf\xfd\xf9\xd2\x3f\x26\x99\x8e\xdd\x58\xcd\x87\x99\x18\x66\xf1\xdd\xba\x07\x62\xa8\xed\xfe\xed\xf3\xf8\xe8\xb5\xa9\xad\xd9\xa1\x92\xf4\xb3\xb4\xaa\x81\x85\x9f\x14\x67\xde\xb2\x8d\x23\xb6\x7a\xeb\xb7\xf5\x1c\x43\xef\xec\x5e\x9c\xb7\xb7\x19\x5d\x2c\xf2\x9e\x02\xb7\x7c\x5b\x80\x4c\x3a\xdc\xe0\xfa\x35\x82\x02\x1b\x16\xf2\xf5\x15\xf4\xdb\x27\x6a\x6e\xda\x88\x4a\x99\x8b\xd9\xd6\xa1\x39\xd9\x5a\x93\xa3\x8c\x23\x9c\xde\x37\xa5\x95\x9b\x2a\xda\x60\x3d\xcc\x6a\x42\x51\x8c\xbe\x85\x3c\x59\xed\xdb\xa1\xf2\xcc\xc8\x99\xfe\x27\xda\x9d\x65\xbb\x1e\x0f\xff\x54\xaa\x22\xeb\x08\xc3\x6f\x1d\x72\x6f\xf1\x1f\x04\x67\x5e\xe5\x65\x6a\x48\xef\x78\xa9\xcb\x1c\x2f\x7b\x19\x17\x85\xbb\x91\xde\x20\xb7\xb4\x8d\x86\xaa\x26\x8f\x4a\x56\x4b\x83\x5a\x9d\x2b\xfd\x3f\x8a\x05\x77\xc3\x36\x9e\xc4\x22\xcd\x62\x20\xcc\xc3\x0f\x15\xd4\x14\x4e\xbd\xc7\x2e\xa7\xc2\x43\xcb\x8e\x33\x32\xe9\x70\x5f\xb1\x20\xcf\xe8\xb8\x9b\xe0\x2e\x77\xfc\x5b\x58\x4c\x34\xa4\xee\x95\xa8\xdf\xd1\x82\xd3\xce\x93\x4f\x09\x83\xb2\xba\xf9\x6b\xe8\xdb\x7b\x56\x49\xf3\x21\x11\xee\x66\x0c\xf9\x0d\xd2\x97\x86\x93\x70\x25\xc5\xfe\x13\x7d\x59\xda\x9d\x4b\xeb\xe1\x27\xea\x5f\x3b\x0a\x42\x22\xb0\x32\x94\xd1\x7f\x51\x9a\xd9\x6e\xe2\xdb\xfc\x0a\xda\x70\xe5\xb3\x83\xa6\x99\x73\x2d\xb1\xb0\x1e\x88\xa1\x19\xa7\xc5\x71\x90\x89\xcd\x43\xd7\x77\xb2\xb4\x8d\xde\x53\xfb\x33\x95\x41\x18\x1b\x03\x48\xf3\xac\xcc\xd9\xc9\xf5\x4d\x8d\x46\xe9\xcb\x8f\x74\x35\xb7\xc8\xbf\x88\xb5\x32\x4a\x7b\xe6\xae\x4a\x98\xfa\x37\xf4\xb1\xb8\xdb\xa0\x76\xf4\xe3\x41\x7a\x06\x7a\x56\x5a\x9a\xec\x78\xfe\x97\x38\x7b\x7d\xcc\x4f\xc7\x57\x36\x33\xfd\xad\x47\xbf\x23\x4e\x27\x73\x8a\x44\xde\xc2\xe4\x6c\x54\x46\x70\xbd\x5f\x29\x2c\x59\xf2\x3f\x49\x5f\xbe\x77\xa2\xe4\xa4\x32\x0f\x7f\x6c\xdf\x79\xbb\x82\x33\x82\xa2\x8c\x89\x22\x32\xaa\xe3\x3d\x29\xc2\x4b\xf0\xb7\x61\xbe\xf2\xce\xe3\x97\xf0\x40\x37\xae\x48\xe5\x94\xb1\x91\x20\xdd\x76\xf3\x5b\xac\x66\x1c\xb3\x16\x63\x86\x4f\x9d\xac\x8e\x73\x36\x27\xbe\x70\x94\x8d\x08\xe3\xab\x7e\x6b\x87\x4b\xf3\x83\xda\x1f\x9d\x85\x1f\x2f\xfc\x9d\x25\xef\x39\x8f\xcd\x2c\xa9\xaa\x1f\x80\x14\x36\xc4\x8b\x44\x0d\x81\x41\x2a\x67\x83\xe1\x88\xd7\xf3\x20\xbb\x5c\xdc\x7b\x53\xcc\x74\x00\xbf\x05\x5a\x68\x8b\xba\x0f\x8c\x31\xa5\x73\xfe\x77\x94\x3b\xf8\xa4\xf6\x8f\xd3\x82\xf9\xfb\xc9\xca\xa6\xbb\x4b\x8f\x92\x00\xa5\xb2\x3a\x2e\x83\x66\x82\xf0\xfe\x87\xea\xbd\x17\xf7\x72\x95\x85\x2c\x3b\x53\xab\xf1\x5f\x3e\x9a\xf8\x6e\x73\x33\x29\x15\xbf\x8a\x28\xa7\x67\x4b\xd7\x94\x3b\x16\xa3\x90\xb3\xa1\xeb\x2c\xef\x51\x0a\xca\x4b\x6f\xc9\x70\xd8\x63\x9a\x3f\xe7\x28\xdb\x4a\xfb\x9c\xde\x6a\x3d\x39\xa5\xed\x7e\xa4\xfe\xd3\xd1\x5f\x37\x5f\xa9\x0c\x7a\x98\xce\xdb\x67\x22\xd0\xc7\xbb\x19\xf3\xd8\x41\x81\xbf\xac\xae\x2d\xfb\xe0\xd2\x21\x2e\x0c\xb4\x01\xcd\xa4\x30\x00\x72\x98\xf8\x62\x71\xce\xbf\xc6\xca\x61\x31\x6b\x50\x07\x16\xec\xbe\xf8\x8e\xa5\x78\x4b\x5b\xea\xc5\x99\xb6\x51\x6b\xfc\x1d\x88\x58\xce\xfb\xfd\x25\x3b\xcc\x6a\x63\xef\xd7\xe8\xa2\xd8\x5e\xf7\x78\xe5\x6a\xf6\x90\x27\xca\xeb\x7f\xdd\x59\xe7\xb4\xe7\x61\x56\x9a\x23\xec\x31\xaf\x70\x84\x97\xac\x3d\x07\x8c\xfc\x17\x39\xc7\xd3\xe5\x71\x4f\xf6\x34\x24\xce\x5c\x28\xc9\xd3\x7b\xd9\x4a\x26\x53\x4f\x82\xec\xaa\x4b\x6d\x6e\xce\xf6\x07\xf5\xd8\xcb\xc6\xe1\x16\x7e\x50\x04\x19\x31\x38\xe4\x52\xd7\xa9\xde\x70\x00\xd6\xdf\x7d\xc4\x04\xe9\xba\x29\x59\xf8\x5e\x0e\xd1\xd9\x88\x90\x9b\x47\x1c\x28\xf4\x54\x31\x99\xcc\x31\x5f\xc0\x6b\x70\xd2\xa3\x5c\x3e\x6a\x5e\x64\xdb\xbe\x16\x23\x68\xcc\x1d\xdf\x1b\x49\x9d\xf2\xc5\x7a\xd2\xa3\xed\x43\x6e\xe8\xb9\xc5\xbd\xf6\x4a\xa8\xef\xac\x6b\xda\x08\x9c\x11\x99\xa4\xda\x28\xf7\x9c\x43\x70\x5f\xc8\xd6\x7b\xca\xfe\xd1\x84\xe9\x37\x75\xa3\xf5\xec\x17\xec\xe1\x3e\x95\x4b\xdc\xa6\x22\x8b\x8d\x93\xf6\xe2\x9d\x72\x6f\xf1\x76\x79\xf8\x93\xc0\xf1\x11\x02\xfa\x29\x49\x29\x88\x5b\xf6\xe4\xdf\xb3\xa1\xe5\x2d\xeb\x9b\x0d\xcc\x3e\xd5\x35\x19\xe9\x16\x5b\x69\x39\x03\x3f\x45\x13\xe7\xc7\x29\x82\xee\xfe\xad\xda\xc9\xc8\xc4\xf1\x26\xf3\xff\xaa\xee\x7f\x91\x23\xc1\x88\xfb\xc5\x41\x5e\x2a\x12\xae\x0e\x3f\x5a\xf8\x3b\x1b\x0a\x38\x77\x2d\x55\x47\x08\x01\x4e\x5c\xcc\xc0\xfa\x20\x1b\x2f\xb2\xed\x1e\xba\xcd\x04\xad\xc3\xbf\x92\x6e\xb1\xb5\xf5\xe4\xce\x8c\x6c\xfe\x1d\xc9\xf6\x14\xbf\x99\xae\xe2\x5d\x3a\x10\x6e\x67\x18\x8c\x75\x48\x65\x2a\xf7\x53\x84\x7e\xc9\xe3\x7d\x66\xa5\xf6\x67\xba\x62\xfa\xc9\x46\xc8\x2e\x72\xfb\x3a\x97\x13\x49\xfd\x1b\x0d\x57\xe2\xcb\xd1\x55\x94\x1d\xa9\x3a\x9a\x2f\x4d\x58\x2f\x30\x24\xe7\xc1\xe5\x7b\xb9\xb0\x45\xed\x7c\xea\x2e\x6f\xb1\x09\x56\xb7\x49\x0b\xf7\xf2\x57\xb4\xee\x7e\xa2\x84\x0f\x32\xdd\x65\xdb\xf2\x65\x66\x2c\x7a\xa6\x99\x51\x6a\xa8\x3e\x70\x1a\xff\x2f\xf7\xcf\x52\x3e\x93\x27\x62\xc2\x78\x9c\x91\x2c\x1e\x71\xf9\xb7\x7a\x36\x9c\xb8\xa9\x7d\xce\x70\xe8\x71\xe5\xab\x15\xee\x36\x18\xda\x01\x95\x28\x48\xf3\xbc\x2f\xd8\x59\xdc\x82\x23\x24\xfb\x99\x6f\x96\x84\x6e\xef\x08\x07\xbf\xf9\xa4\xe3\x3e\x48\xdb\x14\xa5\x49\xdd\x71\x03\x64\xc6\xb8\xa9\x09\x58\x1a\x98\x13\x20\x28\x25\xa6\x60\xee\xd4\x3b\x35\xbc\xcf\xb8\x4c\xb8\x1a\x4d\xac\xdf\x71\xb6\x58\xc9\xe2\x9d\x8c\xd6\x9f\xdd\x5d\xb7\xd6\x21\x28\x95\x49\xde\x74\x03\x92\xb8\xc5\x62\xf2\x05\x2f\x14\x5c\xed\x73\xf7\x32\xe5\x74\xf3\x51\xe6\x19\x2e\xe9\xbd\x87\x85\xd5\x0e\xd7\xdc\x1a\x5e\xfb\xcc\xd4\x2d\x4f\xdc\x88\x9f\x70\x8c\x4f\x75\x7c\x9e\xfa\xdf\xf5\xa5\x3a\x44\x68\xf7\x31\x52\x53\x26\x7f\xcd\x4c\xcb\x3a\x9f\x80\x97\xd5\x79\x67\xfe\x23\xaf\x88\x5b\x57\x91\x12\xcf\xcd\x77\xe9\xf5\x1a\x29\x1f\x89\x75\xe4\x44\xd8\x7c\xa5\xe5\xc7\x42\x8a\xfd\x18\x75\xb5\xaf\xfe\x61\x00\xc7\x22\x9b\xef\x68\xac\xe5\x4e\x7d\xfa\xb8\x5b\x35\xd9\xb0\xce\x8c\xad\xd7\x5a\x44\x48\x32\xf3\x50\x43\x18\x3b\x52\x91\xa1\x5a\x1d\xe9\x90\x59\xbc\xa6\x25\x7d\xb9\x7f\xea\xd5\x01\x50\xaa\x63\xe2\xcb\xd8\x5e\x87\x6f\xf6\x85\x9b\xa8\xc2\xcd\xf2\x42\xc7\xca\xc2\xbf\xa8\xae\x83\x37\x70\x2e\xb5\x93\x1a\x5e\xb0\x19\x83\x42\xc1\x7d\x5f\x28\x05\x80\x5b\x71\x08\x90\xc3\xa9\xa9\x16\xf5\xdf\x9c\xa0\xe8\x8a\xc3\xa1\x2c\x30\x2c\x6a\xf4\xa5\xde\x85\x15\x39\x15\xec\x89\x4e\x92\xdc\xc2\x1c\x4a\xc2\xce\x39\xcc\x26\x7a\x34\xb1\x48\xa8\x5a\x12\x2f\x53\x71\x31\xac\x4e\x53\x5e\xf8\x14\x0e\x42\xbf\x84\xa4\x01\x86\x58\xbc\xe4\x88\x5a\x80\xd8\xed\x71\xa3\xaf\xd7\xe8\x58\xff\x92\xd7\x46\x76\xd3\xc9\x34\x41\x4c\x60\x09\x38\x5a\xc3\xb6\xea\x2f\xf8\xb4\x93\x2e\x0c\xf9\x85\x17\x79\xf6\x9c\x31\xf9\x80\x9f\xe8\x51\xde\x53\xf4\x6b\x24\x00\x73\x83\xec\xfd\xee\x22\xf0\x21\x1d\x87\xcd\x4c\xff\xe4\x53\x93\x38\xb3\x2b\xf9\x6b\x02\xa1\x89\x7d\x18\xa1\xe4\x02\x06\xe0\x0a\x0e\xd0\xdc\x88\xf6\x8c\x89\xaa\x99\x02\x60\x9e\xd4\x48\xc0\x01\x49\xdd\xc4\xd8\x91\x0a\x09\x01\xf6\x6e\x68\xea\xd3\x3b\xd3\x82\x45\xb1\x8e\x3a\xf4\x33\x8c\x10\x2e\xad\x8e\x8c\xdc\x75\x2a\xa0\xe3\xce\x02\x15\xbb\x26\xd8\xca\x97\xe8\xcf\x04\xa8\x00\x6c\x9a\xb6\x10\x18\x1f\x23\x1b\xc8\x56\x15\xaf\x72\x63\xec\x1d\x24\x55\xfb\x51\xf2\x4e\xb2\x36\x9a\x1a\xa7\xc7\x3f\xf6\x12\x92\x0b\xb0\xe5\x72\x9c\xa9\xf2\xbc\x25\x56\x9c\x73\xe0\xd4\xc3\xb2\x92\x72\xfa\x83\x8c\x08\x88\xdd\x55\xd2\x5d\xb9\x99\xe7\x0c\x23\x84\x98\x11\xa3\x3e\x38\x1e\xbc\x84\x67\xe7\x05\xa7\xd4\x7d\x25\x50\x3b\xf4\x2a\xee\x40\x41\x6d\x19\x07\xf8\xf6\x66\x23\x77\xd9\xc6\x8f\x93\x19\xc7\xd5\xc1\xe6\x66\xe6\xc5\x6c\x8c\x99\xb7\x60\xbe\x70\x69\x28\x35\x8a\x1a\x21\x7f\x1a\xd5\x97\x5a\x86\x15\x62\x95\xcf\x67\x92\xac\x17\x8f\x88\x23\x5d\x89\xc9\x25\x2a\xfd\xbc\x98\x4b\xb2\xe6\xa3\x0f\xe7\x96\x2c\xd1\x04\xcf\x99\x7c\x5d\x78\xb6\x70\xf1\x31\xbf\x56\x96\xec\xf6\x65\x69\x47\x85\x4c\xf6\x63\x66\x06\x49\x5d\x15\x58\xd4\xc5\x9d\x13\x77\xbb\x5b\x83\x89\x85\x36\x4d\xf5\x0e\x35\x27\xd6\xfb\x97\x22\xde\xe0\x2e\xa3\xe2\xf6\x0c\x62\x22\x97\xda\x8f\x3a\xee\x01\x36\xd0\x90\x81\xd6\x1e\xf9\xd9\xb3\x0d\x9d\x16\xbe\xdc\xce\xcf\x77\xb5\xd8\x5d\xfb\x35\x83\xc4\xb6\xdb\x9c\xa4\x23\x95\x87\xd0\x48\x23\xca\xb2\xf1\xca\xac\xce\xc8\xc4\x29\x8b\xf0\x33\x42\xf6\x51\xfb\xed\xbe\xb3\x17\xf8\x43\x37\x90\xae\xdb\x55\xc8\xe8\x9b\xda\xa4\x19\x48\xfc\xd7\x28\x4d\x7a\x90\x61\x4a\x4a\x5b\x0a\xcd\x00\x17\x2d\x58\xef\x86\xf2\xe0\x59\x83\xb7\x80\x1c\x1a\xdc\x2f\x92\xef\xc8\xa2\x65\x5c\xc5\x1d\x83\x3c\x78\xf5\xe7\xeb\x79\xf6\x2f\xe8\x6e\x64\xfe\x82\x33\xe9\x54\xdc\xec\x57\x7e\x53\x85\x33\xc6\x43\x1f\x40\xdc\xdf\x02\x80\x02\x20\xd3\xd1\x00\xd0\x4d\xe2\xe1\x05\x90\xb7\x0f\xee\xb8\x88\x37\xe3\xf4\xf0\x6f\xdc\xd8\x5a\x5a\x1f\xee\x3d\x83\x26\x37\xae\x7e\xa8\x1a\x7e\xf7\x72\x01\x80\xbc\x51\x86\x80\x16\xa4\xf1\xdd\xe2\xe9\xbf\xc2\xcf\x09\x96\x47\xe4\xfa\xec\x83\x46\xe8\x73\x56\xdf\x94\xcb\x14\x14\x48\x5d\x07\x4c\xe1\xbb\x8e\x60\x06\x3e\xd2\x72\x44\x53\xfb\x90\x2f\x2f\xa4\x79\x92\x98\x07\xee\x31\x82\x43\xd5\x9c\x42\x04\x2e\xe6\xf1\xfe\xd3\xa3\xa7\xc9\x0c\xe8\xc9\x3d\x17\x56\x7f\x6a\x64\x1f\x69\x49\x6a\x93\xcb\xa1\xb5\xb7\xbd\x69\xf6\x6c\x9b\x38\x95\xad\xec\xb1\xd9\x02\x87\x58\x00\xbd\x7c\x5b\x20\x58\x36\x58\xed\x89\x51\x01\x95\xed\x55\x0c\xc8\x53\x8b\x4d\x82\x3f\x89\x99\x46\x53\xe4\xb6\x30\x75\x4c\x05\xbb\x34\xd1\x7b\x81\x1b\xfa\x3b\x5b\x69\xc0\x39\x27\x13\x02\x13\x80\xf1\xf6\xc5\xf1\x52\xc7\x94\x0e\x0f\x24\xb2\xfe\xa5\x0b\x0f\x2a\xba\x5c\x28\x52\x3b\xb7\xeb\x70\xb8\x2e\x6f\x42\xee\x4a\x5e\x03\x6d\xcc\x90\x11\x78\xb0\xed\x33\x2c\xc8\xf3\x25\x5b\x0a\x57\xe6\x1a\x48\x93\x48\x49\x4f\x9f\x80\x9a\xcb\xc5\xfb\x2f\x95\x17\x3a\x41\x74\xa5\x42\xd2\x1d\x19\x83\xa9\x91\x7d\x55\xcb\x52\x9b\x3b\x8f\x2f\x04\x11\xd5\x0d\x61\xa4\x8f\xdb\xf1\xf9\x26\x55\xb6\xfa\x8c\xce\x00\x86\x42\x2f\x2e\x9c\x0d\x0c\x53\x04\xc6\xf8\x3b\x3c\x77\x80\x0e\x0e\xc0\x07\x44\x83\xd3\xe9\x89\x09\x04\x15\x45\x81\x13\xa8\xca\x52\x10\x8e\x24\x8b\x99\x7d\xba\xf2\xa8\x0e\xf8\x03\x75\xc2\x8f\x0e\x08\x16\xf2\x26\x8c\x1f\x34\x36\x1e\x78\xe4\xf5\xfd\x72\xef\xf1\x14\x67\xf8\xf9\x6a\xdd\x45\x49\xaf\xc3\x15\x79\x4a\xe5\xa7\xa4\xa2\x9d\xf0\x39\x10\x7a\xbd\x00\x68\x8a\x82\xd3\x83\x5c\xb8\x23\xb0\x79\xc0\xd5\x5c\x08\x76\xec\x47\x60\xb0\xf8\x3a\xa2\xa9\xa2\xbc\x32\x07\xb5\x71\x05\x93\xb4\x29\x50\x30\xae\xdc\x77\xa6\xaf\xd4\x36\x7e\xb6\x79\x3e\x95\xb5\x8b\x70\xba\x78\xa8\x85\xf4\x3d\xa5\x93\xbc\xb4\xfb\xa3\x7c\xf3\x1c\x61\x46\xf6\x01\xd3\xe0\x74\xfa\x71\x2b\x18\xdc\x58\x2a\xf8\xfc\xec\xc7\xb9\x2e\xe5\x0b\xf3\xf6\xfb\x8d\x24\x0a\xad\x62\x7b\xc8\xe0\xb8\x5c\xc3\x28\x27\x0e\x39\x11\x09\x49\x12\xcd\x35\x43\x88\xce\x22\x2e\x49\x16\x07\x82\xf9\xe2\xbf\xf2\xbf\x54\x94\x77\xbc\x5c\xf6\xc0\xd4\xc2\x62\x38\xc9\x1b\x3f\xdb\xf3\xc6\xdb\x79\x9a\xce\xf2\x43\x0d\x00\x2b\x6f\xca\x15\xa8\x6a\x38\xb7\x06\x7c\x6f\x94\xf3\x7d\xf6\xc1\x55\x0e\x4a\x71\x61\x3c\x6e\x55\x6a\xee\x26\x0e\x69\x84\x1b\x29\xfe\x92\x4d\xe4\x0e\x6b\xfa\x49\xfa\xfe\xc2\xcc\x12\xf1\x67\xbd\xe5\xef\xd3\xaa\xff\xfa\x92\x08\xa7\xa2\xf4\x38\xef\x9e\x24\x73\xe1\xc1\xb6\x34\x6c\x52\xfc\x49\xe9\xb4\x1d\x6f\x89\xb4\x23\x14\x02\x17\xb1\xab\x53\x74\xde\x97\x6d\x95\x31\xa5\x9b\x52\x46\xeb\x3f\x0a\x19\xfd\x69\x90\x7d\x8e\x77\xe9\xe9\x65\xa4\xa6\xc9\x6e\x25\xa1\xe4\xf5\x29\x0e\xe5\xd0\x96\x0d\x85\xba\x54\xb3\x0b\xad\x9e\xc5\xe7\x61\x84\xfc\x69\x2f\xc6\x78\x32\x09\xf7\x74\xf1\x26\x5f\x49\x91\x6d\x7d\xa5\xed\xb4\x39\xda\x4d\x9c\xeb\x19\x2b\xfc\x0b\xad\xfa\x1d\xb8\xc5\xf2\xa8\xdc\x50\xf5\x64\x7d\x43\x06\x51\xb2\x76\xbe\x7c\xcb\xff\x5e\xe2\x2a\x5a\x04\x87\x4c\xd5\x00\x6b\x9a\xb1\x54\xff\x6d\x39\x5f\xca\xa8\xac\xa6\xfb\x14\xbb\x53\x5a\x1d\xcb\xe1\x6b\x75\x36\xd6\xa5\xb4\x0c\x7b\x78\xe1\xe5\x1f\x9e\x32\x80\xf8\x78\xb9\xce\x76\x08\xe8\xb2\xdf\x55\x01\x1b\x26\x76\x8c\x3a\xa9\x8c\x75\xbe\x83\x6f\xa9\x8f\xce\x0d\x05\x07\xbb\x9b\x18\x0f\xe2\xd8\x83\x30\xa2\x28\xea\xbb\x3c\x38\x64\x2a\x4f\xc1\xb8\xf8\x63\x7c\x75\xe2\x4f\x0b\xe5\x30\xb2\x05\xe1\xf1\x97\x40\x8f\x89\xdd\x91\xbd\xc4\x1a\x52\x11\x2f\xf2\xf3\x56\xa2\xc0\xf9\x37\xb3\x4b\x00\xd7\x13\xce\x8d\x05\xa1\x9f\x2b\x74\x9b\x62\xf3\x3c\xc3\x78\x21\x30\x4f\xfd\xe4\x05\xbb\x9f\xb5\x7f\xd6\x5b\xae\xeb\x95\xb8\x53\x0e\xfe\x90\x93\x78\x9f\x83\xc6\x5b\x71\xe1\x35\x17\xd0\x01\xab\x9d\x29\x07\x9d\x8b\xf3\xe5\xe4\xbf\x19\x03\xc7\x19\xee\xf7\x5e\xdf\xd8\xf4\x22\xbe\xe0\x1b\xdc\x4b\xbc\x76\xa2\x35\xbb\x36\xb5\xbe\x4f\x85\x21\x28\xd7\x2e\xf5\x3f\xed\x7f\xf9\x1c\xd2\xc5\x17\x1f\x87\xe6\xa7\xbf\x42\xbb\x31\xcf\x10\x0d\xad\xea\x1b\x03\x03\xaf\x34\xdf\x1b\x63\x3f\x3e\x91\x71\xff\xbb\x7a\x31\x58\x39\x55\x71\x76\x90\xae\x41\x2b\x04\xa1\x5f\x21\xd1\x43\xa2\x8a\xf6\xd7\x9e\x0e\x07\x93\x36\x5d\xcf\xbb\x05\xd5\x1e\x4f\x98\xa8\x3e\x4c\x21\x98\x84\xce\x4d\x22\x12\x3c\x1b\x10\x1c\x17\x76\xd1\x88\x87\x97\xb0\x20\xa0\x34\x97\x81\x09\x32\xd1\x4f\x55\xf6\x02\x0a\xf3\xd4\x2b\xb1\x91\x8a\xec\x71\xea\x9c\x77\x61\x23\x69\xb2\xbc\x76\x05\xc9\x7c\x18\x40\xe2\x73\x44\x19\x31\x9f\x63\x9d\x77\xd7\x5b\x04\x11\x0f\xdd\x2f\x56\x2e\x8f\x7a\x16\xff\xae\xb5\x54\xe3\xbe\x73\x24\x29\xf9\x87\xfb\x3e\xb1\x91\x5e\x4b\xac\x0c\x73\x10\x31\x00\x06\x81\xbb\x59\xd4\x25\x0d\x2c\x09\x2f\x28\x7e\x13\x02\xb2\x0d\x3a\x8a\xc3\x33\x8f\x2a\x7f\x41\x3d\x7e\x19\xa9\xde\x25\x18\x4f\xca\x8d\xbd\x41\xd2\xd0\x80\x20\x81\xb7\x14\x04\x72\xb5\x05\xa6\x2f\x42\x4a\x2e\x2e\xf5\x3d\xa4\xc3\x48\x9e\x63\x61\x1b\x37\x5f\x46\x2b\xbf\xcb\xf1\x18\x5f\xb8\x2c\xee\x0f\x73\x26\x25\x2b\x79\xee\xe7\x49\xf0\xf2\x80\x70\x97\x0f\xc1\xff\xde\xe3\x68\xbe\x7f\x81\xa6\xa8\x50\x08\x00\x99\x90\x0e\xab\xa7\xce\xc2\xfe\xc4\xea\x2f\xb2\xa8\x1e\x5a\xa8\x86\xb9\xe9\xed\x31\xc1\xd0\x45\x98\xa4\x3b\x44\x37\xe8\x4a\x6e\xc6\x27\x9a\x9d\x48\x7d\x33\x8b\x7c\xb7\x6b\x73\xd7\xb1\x09\xf3\xa4\xb7\x5e\x89\x5f\xce\xba\xff\x84\x89\x4b\x76\xe9\x85\x8d\xc1\xc9\x01\x29\x88\xcf\xa4\x64\xa5\x51\x0a\xb4\x7d\xdc\xf2\x95\x98\x1d\xc6\x0d\x7d\x98\xee\x3f\x4a\x00\xf0\xd8\x6c\x69\x35\xf7\x25\xba\x3a\x79\x22\xa9\x9b\x74\x19\xd5\x58\x8c\xbb\xeb\xba\x60\x92\x39\x38\xed\x76\xa7\xfd\x48\x41\xda\xe1\x32\x44\x95\x6c\xf8\x59\xe7\xe4\xda\x0b\x13\xe1\xe9\x8c\x62\x8f\x12\xc4\x25\xd7\xbd\x7d\x9d\xd9\xdf\xd7\x58\x80\xa6\x2d\x0d\x75\x4a\x45\x40\x6a\x90\xde\x03\x88\x48\xfd\x0c\xd2\x6a\xa0\xe8\xe2\xef\xe4\x4f\xec\xf8\x37\x2a\x37\x64\x55\xb9\xb5\xed\x9f\x30\xb8\xfe\x9f\x5d\x0a\xe9\xe5\xc3\xb1\x40\x19\xf8\x29\xcb\xc6\x3d\x36\x5a\xea\xb2\x89\xb7\xb8\xc5\x66\x6d\xdc\x44\xe4\xf4\x1f\xaa\x49\xbf\xf5\x7f\x8e\x40\x18\xda\x23\x6a\x4e\x52\xe3\x94\x6a\xce\x92\x3f\x60\x41\x68\x02\x7f\x0c\x6e\x4f\x93\xa7\x19\x37\x8a\xe4\xb1\x7d\x96\x68\xc8\x63\x0b\xe0\xde\x51\x49\x07\x57\x97\xda\xb4\xfa\x39\xcc\x35\x5b\x4c\x79\xb0\xb8\x39\xb2\xeb\xd0\xf2\xc1\x00\xc1\x14\xd9\x2b\xd6\x0b\xdf\x03\x39\x13\x75\x8e\x33\xf4\xb5\x77\x9c\x2c\x57\xfd\x36\xd8\x8e\xbd\xae\x84\xdf\xc7\x23\x6a\xce\x92\x8d\x22\xc0\xb6\x7a\x6c\x4b\x57\x62\xd6\xa8\x8a\xa9\x23\x36\x1a\x3b\x03\x4c\x3a\xcb\xe9\xd1\xf0\xfc\xb5\x9f\xdb\x67\xb3\x43\x75\x5e\x8f\x5b\x4b\x17\x77\x68\x40\x7e\xe3\xc4\x44\xe4\xb5\x78\x64\x8a\xac\x9f\xf5\xcc\xf7\x60\xce\x44\x9d\xe1\x0c\xfd\x57\xc3\xa6\x46\xeb\x76\xd0\xf6\xa6\x7f\xfe\x05\x8b\x7b\xbd\x9f\x8e\xd4\xba\xbd\x9c\x4f\x92\x1f\x53\x42\x3b\x72\x92\xef\xcb\x22\x6f\x6a\xa1\x45\x0d\xd1\xdf\xf9\x6c\x7b\x86\xaf\x4c\x94\x35\x57\xfa\x5d\xf4\x0f\xd5\x79\x05\xb7\x96\x2e\x62\x79\x70\x83\xb4\x39\xfd\x05\x35\x07\x45\xb9\x2d\xe7\x27\x9b\xf8\xf3\x80\x8f\x4b\x6e\xb2\x57\xac\xd3\x04\x7b\x14\x9f\x1e\x16\xbd\x21\xb9\x50\x87\xf1\x35\x9f\x83\x46\x4f\xf8\x8a\x22\xc1\xb6\x57\xb5\xfe\x51\x02\x87\x2f\xa0\x42\x87\x41\x14\xbf\xb9\x23\xa4\x25\x3c\x43\xea\x43\xd2\x2d\xdd\xcb\x85\x65\x51\x3d\xd5\x95\x32\x17\x3f\x55\x2c\xcd\x27\xe5\x64\x04\x2e\xb8\x91\x7d\xe6\x4c\x06\x9b\x26\x43\x4b\xb6\x95\x4b\x4a\x41\x75\x4b\x0a\x0b\xff\xbd\x70\xfc\x94\x7d\xb4\xf2\xe6\x86\xca\x6e\x6c\xb8\x71\x77\x62\x65\xd8\xca\x1b\x0c\x08\xdd\x1b\xc7\xc6\xaa\x59\x21\x20\x27\x64\x8e\x46\x81\x13\x5e\x70\x8f\xba\xbd\xab\x4e\xaf\x31\x3b\xda\x96\x45\xf5\xe4\x96\xa4\x07\x99\xd0\x39\x47\x6b\x92\xe0\xbc\x13\xaf\x20\x49\x4a\xa9\x4f\xbf\xed\x13\xf3\x58\xe7\xa9\x38\x6f\x3c\x26\xa0\x09\xd7\x67\x2b\x9c\x3b\xbe\xc7\x2a\x6d\xcd\x26\x7e\x39\x4d\x35\x25\x8d\x95\x2a\x6e\xec\x68\x0c\x5f\xc9\x09\x59\xcf\x01\x69\xe1\xbb\xf7\x29\x98\xe5\x18\x40\x2e\x81\x60\x43\x6c\x01\x05\xee\xad\xf7\xa3\xd5\xeb\x25\x4d\xd6\x13\xb5\x0b\x28\x4e\x7f\xd3\xac\x59\xbf\x89\xa2\x40\x14\xf5\xb7\x42\x95\xbe\x7a\x24\x0c\xa6\xcf\xf0\x97\x6f\x60\x31\xb4\x6e\x49\x61\xfa\x81\xe7\x2d\x94\xa9\xc1\xa6\xd3\xd1\x8b\x68\xc5\xef\x1b\xbd\x84\xf3\x48\xc9\xf3\xdb\x87\x66\xfb\x10\x0c\x21\x31\x87\x41\x6e\x99\x17\x40\x1b\xc3\x0c\xd8\x46\xf8\xe8\x59\xc0\x63\x79\x14\xbd\x89\x52\x58\xdd\x81\xb2\x19\x61\xbf\xd0\xa3\xe1\xe4\x7f\x73\x16\x0f\xdb\xd3\xfc\x66\xc0\xa9\xaa\xd8\x5a\xc0\x9b\x3d\x19\x48\x31\x62\xaf\x97\xb1\x5e\x1c\x39\xcb\xe6\xbc\xb1\xde\x69\xda\x39\xef\xb2\x81\x1d\x7a\x2c\x39\x1b\xd5\xab\xc5\xee\xd5\x8d\x18\xda\xd2\x17\x5e\x61\x72\x9f\x7a\x15\x8d\xb8\x6d\xe4\x59\xa8\x16\xc4\x26\xa1\x8c\xdc\x62\x60\x7b\x2d\xc2\xc6\x42\xe1\xb5\x8b\xbb\x0a\x50\xa6\xd9\x3a\x83\x1a\x4c\xb3\x66\xf7\xff\xd6\x79\x05\x57\x97\x2e\x8a\xc8\xf7\xa7\x70\xd0\x33\xb5\x82\xfb\x1c\x31\xf4\xf4\x4a\x4c\x4f\xe7\x97\x5e\xfc\x82\x12\xff\x15\xa5\x5c\x04\x28\x6f\x23\x9a\x2a\x9c\xbd\x78\xbb\xd5\x15\x5c\x7a\x94\x6f\xb6\x29\xc7\x2e\x6b\xf8\x2b\x7b\xef\x2c\xad\xc4\xf2\x4b\xf2\x2b\xdb\x72\xf1\x24\xa5\x4b\x4f\xf3\xc1\x63\x20\xb9\x5a\x8f\xd6\xb8\x6e\x84\xb7\x56\xd4\xda\xd4\x6e\x7d\x4a\xcf\x9e\x35\x19\x28\x0a\x54\x33\x88\xd7\x2e\x48\x0d\xd3\x4f\x3a\x7d\xfb\x65\x96\x78\xdd\xa4\x7e\xe0\xba\x2c\xb9\x3b\x1e\xba\xee\x32\x09\x47\x81\x52\x1b\x15\x24\xb6\xbc\xba\x11\xa1\x22\xdf\x87\x94\x2b\x2a\x11\xf3\x17\x7d\xcd\x91\x60\x40\xcb\x31\x8a\x84\x33\x8c\xc2\x64\x99\x21\x77\xd8\xe5\xc2\x72\x80\x0d\x57\x4c\xf5\x64\xe9\x67\xdf\xa2\x47\x73\x4d\x16\x13\x1e\xcc\x5c\x8e\xdf\xf7\xde\x7d\x83\x3c\xe3\x55\x1d\xa6\xd3\x73\x5c\x92\x70\x91\x3d\x2c\x08\x4a\x3a\xfa\x94\x27\x22\xc7\x69\x09\xf5\x2f\x2b\x39\x88\xfe\xf3\x70\x48\x90\x1a\x87\xad\xbc\xc0\x4e\x9e\x8f\xee\xf1\x31\x81\x04\xef\x3b\x08\x8d\x08\x41\xd4\xff\xd1\x7c\x85\x62\xe5\xa4\xc1\x05\xeb\x5c\x37\xc2\xab\x2b\x6c\x5a\xad\x27\x3d\x44\x64\x1b\x1a\xe2\x7a\x63\x39\x04\x29\x99\xa6\x83\x81\xc0\x67\x90\xe4\x39\xfb\x71\x17\x97\x16\xeb\xe1\x93\xe0\x5f\x81\xbb\x9b\x4e\x63\x33\x62\x96\xd8\xe7\x46\xec\xb2\x7f\xb4\x7a\xc2\x5f\x4f\x2a\x71\x84\xad\x8c\x47\x80\x01\xf6\x37\x46\xb0\x88\xf7\x09\x1d\xe8\x5a\x4c\x16\x72\x83\x81\x02\x25\xb8\xe6\x6d\x64\xd9\x62\x3a\x39\x65\x96\x3d\x3b\x59\x58\x2d\x62\xce\x3d\xf0\x04\x24\xf1\x86\x7f\x7a\x9a\x86\x9d\x5d\x0b\x73\xa6\xdb\xe4\x6e\x22\x5d\xe1\xe4\xf9\x3e\xe3\xa0\x51\xf6\xd5\xf0\x9a\xf5\x4f\xe5\x43\xe6\xb1\x68\xa6\xbb\x3b\x09\xe8\xe8\xea\xe3\xb1\xc9\x44\x2b\x6d\x03\x00\x69\x2f\x55\x4a\x1f\xe3\xc1\xe3\x30\x2a\x0c\x51\x67\xa0\xb0\xf8\x63\x25\x15\x9a\x65\xfe\xd4\xf5\x95\xd9\xd6\x6c\xda\x6a\xfa\xb3\x12\x67\x61\x1d\xf3\x0c\x96\x43\xbd\x7d\x64\x2c\xa8\x98\x4e\x0b\x13\xa4\x2b\xd7\x88\xe2\xf0\xe3\x13\x42\x38\x91\x5a\x73\x5b\x3e\xb5\xa6\xfa\x13\x2d\xe5\x3d\xfa\xad\xed\xf3\x1c\x56\x08\xeb\x5e\x45\x88\xea\x09\x04\xc6\xa3\xec\x9e\x34\xa9\xaf\x84\x02\x0a\x78\xbb\xea\xf1\x40\x0a\x2d\x61\x54\x81\xd0\x71\x08\xf6\x50\xe2\x8a\x3c\x0f\x78\x68\xef\x5d\xc3\xdc\x0f\x56\x33\xce\xd9\x2d\x6f\xa3\x87\xa2\xb3\xfd\xde\xc3\x26\xb1\x42\x94\xf4\xd4\x48\x45\x35\x39\xd1\xf8\x29\x57\x27\x4f\x5f\x87\xd3\xf3\xe0\xdb\xe1\x1e\xca\xdb\xd7\x6f\xc5\x15\x88\xf5\x79\xe9\xcc\xf3\x13\x10\xca\xfa\xde\xff\x04\xab\x8f\x35\xde\xcd\xbd\x88\x46\xbc\x91\x13\x02\x92\x1e\x3b\xa9\xf2\x24\x31\x73\xc7\x5c\x63\xe5\x58\x63\x8f\x79\x85\x2f\x7f\x60\x40\x8d\x73\x0a\x12\xf9\x38\x7d\x5f\xa7\xf2\x9e\x9f\xe3\xbb\x77\xd5\xcc\xee\x8e\x37\xb7\x3f\xe0\x97\x27\xe0\xc7\xbc\x99\x74\x90\xe4\x39\x93\xe2\xf9\xf1\x80\x56\x57\xca\x17\x2f\xcc\x3d\x76\x91\x04\x04\x97\xd3\x45\x51\x34\xb7\x34\x64\x53\x6a\xcd\xb0\x1b\xa1\x98\xf0\xe8\x30\xb5\xf1\xdf\xdb\x65\x8d\x52\x30\x33\xd0\xf7\x46\x02\x03\x8b\xea\x0d\x10\x8d\xc0\x9a\x50\xa6\x46\xe1\x68\x2e\xa2\x95\x5d\xca\x21\x98\x8f\x0a\xe9\x37\xa7\xb5\xdf\xfe\x30\x65\xd5\x76\xf7\xf3\xea\x34\x65\x3d\x48\xb8\xdf\xdf\x24\x52\xeb\xe5\xfa\xfb\x67\xd7\x0c\x06\xdc\x87\xd3\xaa\xad\xde\x77\xea\x5e\x4a\xab\x60\xe7\x4a\x13\x25\xbf\x77\x3b\x5d\xad\x63\x31\xce\x0a\x1a\x8d\x63\x0b\x45\x8c\x5f\x21\xbb\xc4\x5d\xbe\xff\xbf\xcb\xc5\x83\x81\xdb\x3e\x8f\x54\x80\x82\x4f\x05\x06\x3f\x38\x93\xd2\x85\xd1\x15\x8f\x31\x91\x2b\xa3\xd8\x43\x2f\x16\xc0\x38\x8d\x49\x71\xbb\xce\xaa\xd3\x70\x9f\xb6\xd1\x42\xa4\xe1\x75\xc9\x7d\xcb\x87\xc3\xcd\x6e\x9d\xfb\x0f\x58\x3f\x5d\xd3\xbb\x96\xa3\xb9\x83\x2a\x9c\xff\x11\xd8\xe0\x4a\xa9\xb1\x1a\x17\x1e\xe0\x00\xd5\xf0\xe3\x2b\x9f\x8c\x2f\x58\x2e\xef\x4a\x6f\xa5\x54\x18\x3a\xe9\x8d\xbf\x40\x17\x21\x12\xff\x0a\x7e\x23\x82\x46\xf7\xf8\x8c\x00\xbd\x80\xbe\xe6\x64\x5e\x48\x17\x41\xa8\x19\xac\x75\x0a\xd6\x5a\x88\x38\x31\xd4\x39\xcd\xa5\x01\x68\xd2\x0a\xd8\x41\x32\x52\x35\x29\xa2\x72\x22\xed\xd3\xf7\xaf\xe9\xb8\xfb\xdd\xdc\x15\xa2\x35\xcf\x60\x89\x2b\x30\xf2\x00\x14\x21\x19\x14\xd4\x48\x68\xda\x9c\x63\xd7\xd3\xcd\xc2\x85\xd1\x48\xed\x49\x78\xbf\x06\x3b\xf9\xfd\x23\xca\xc9\x68\x06\x69\x77\x93\x7a\x0a\x54\x77\x40\x58\x08\x7f\xf5\x65\xa8\xe6\xad\x33\x10\x3c\x61\x9b\x4e\x7b\x6b\x5b\xea\x0c\x70\x3e\x49\x1e\xa0\xa5\x01\x56\xe6\xd8\xff\x4b\x8b\xac\xc5\xdc\xdf\x5f\x2a\xc7\x23\xc3\xb8\xaf\xd3\x80\x0c\x58\xf4\x7c\x15\x0b\x4a\x37\x8d\xa4\xb6\x51\x33\x50\xcb\x9b\x62\xf5\x69\xf7\x3b\x0d\x59\xbd\x6b\xee\x4b\x2b\x66\x19\x41\xc7\xca\x91\xf0\x56\xc8\xfa\x2b\x48\x52\x8a\xaf\xeb\xce\x97\x58\x67\x59\x19\xeb\x4a\x4e\x6c\xc9\x23\xa8\x86\xe3\x80\xf8\x54\x7c\xc1\xd8\x4f\xd5\x01\xc3\x28\x82\xd4\x32\x6c\xfc\x71\x13\x41\xf8\x52\xfa\x6e\xfe\xeb\x56\xc4\xc3\xd5\x44\xfb\xc3\xb1\x3d\x3e\x23\x6a\x3d\xa7\xbe\xe7\x29\x29\x82\xf4\x79\x74\x07\x34\x70\x1a\xa6\xe2\xe7\xb4\xd1\xf1\xdc\x3c\x58\x80\x19\x15\x53\xea\x55\xf8\x04\x34\x29\xc5\x3d\xc0\xcc\x75\xa3\x7d\xfa\xbe\xb6\x9a\xa5\xe8\xea\xf5\x46\xdb\x53\x91\x32\xef\x42\x29\x2c\x33\xea\x4b\x21\x06\x5c\x20\xc7\x76\x9d\x1a\x19\x01\x68\x26\xe1\x8d\x60\x21\x02\x0a\x96\x0c\x43\xe9\xc3\xdb\x57\x72\xa7\xfa\xd3\xc3\x8d\x1b\xf1\xda\x4d\x9f\x89\x6f\x3c\x29\x50\xad\x35\x9d\x74\xf1\x47\x42\x3d\xca\xdf\x47\x7b\x1f\x9e\xff\x4b\x0b\xbb\x6f\x15\x3e\xca\xaa\x24\x4d\xea\x33\xc6\x33\xb1\x4a\x32\xf4\xec\xd1\xc4\xfd\x66\xd7\xdc\xbf\xca\x1f\x08\xfb\x0d\xe6\xd9\xf4\xff\x17\x3e\x90\xc9\x8f\x62\x2a\xb8\x99\xe3\x5a\xaa\x3f\x14\xd7\x5b\xd5\x32\xe0\x0d\xb5\xbc\xb9\xc6\x75\x23\xff\xe8\xc1\xf0\xbe\xb3\x35\x5d\xf9\x3b\x58\x21\x0a\x5f\xae\x0a\xe6\xc1\xc0\x34\x91\x07\x28\xb8\x5e\x9c\x82\x26\xf5\x7d\x6d\x30\xde\x88\xfd\xc4\x38\xa8\x51\x20\xeb\x5e\xfc\x54\x96\xba\x41\x6d\x26\xb6\xc4\x95\xb2\xa1\x74\x38\xbb\xb1\xdf\x3d\x51\x2b\xc3\x68\xd3\x07\xa5\x38\xe3\x51\x5e\x44\xa9\xf0\xfd\x7d\x19\xfb\x39\xb6\x92\x54\x0c\xbf\xac\x4f\x53\xe2\x08\x75\x70\xca\x1c\x78\x49\xdd\xac\x00\xa7\x07\x2f\x07\x66\x3d\x46\xba\x5b\x2e\x23\xb1\x49\xfc\xf0\x94\x04\xed\xae\x91\xde\x5a\x35\x80\x79\xd6\xc5\xb2\xca\x00\xcb\x1c\xcf\x34\x04\x2b\x4f\xf6\x31\x2f\x75\xae\x7c\xde\xd2\xbd\x6f\x6e\xf6\xfd\xb1\x42\x96\x54\x88\xeb\xbb\x9c\x2d\x6d\xc1\x32\x9c\x04\x96\x19\x8c\x71\x52\x43\x46\x89\x05\x6f\xb0\x05\xdc\x84\xc1\xb0\xfc\x74\xe5\x87\x14\x02\x8a\x1a\x0c\xee\x96\x2c\xd5\xe9\x3d\xd9\xa2\xf1\xb2\xd9\xf2\x1e\x3f\x06\x0b\x16\x46\x03\x37\x7a\x88\x90\x08\x0c\x23\xbb\x26\x0e\x93\xa2\x1a\x99\xef\x44\x9a\x80\x87\x58\xec\x2f\x14\x98\x5c\x96\x9b\x93\x9c\x4f\x92\xdf\xd8\xb9\x0a\x72\x3b\x1c\xb3\x4d\x08\xa3\x13\xfc\x91\x5a\xf4\xc5\x81\xb4\xea\xec\x63\x53\xf6\xa3\x0c\x50\x38\xc0\x96\xdc\x01\xc0\x8c\xe4\x0c\x8f\xf4\xd8\xb0\x52\xa1\xae\x0e\x8a\xe9\xdf\x9b\x06\xeb\x42\x9c\xde\x28\x35\xe8\xe6\x5b\x7c\xd6\x17\xcd\x35\xba\xbb\xaa\xba\xcd\x7f\x9d\x51\xfd\x86\xc1\xb8\x7b\xa4\xae\x8a\xd7\x28\x0b\xad\xea\xb3\x85\x17\x07\xcc\x70\x86\xa9\x96\x3f\x79\x03\xa3\x7d\xfe\x09\x29\x3e\xa8\xdb\x82\xf4\x9e\xa8\xd0\x7c\xad\x45\xfb\x2e\x2f\x16\xbb\x3b\xb1\xef\xdd\xef\xd5\x5b\x72\x78\xc8\x1c\x16\x8c\xa1\x03\x06\x4c\x9f\x13\x24\x96\x03\x75\x83\x52\x00\xaa\x24\x2b\xc6\xa5\xba\x45\x64\x6f\xfc\x11\x1a\x84\x76\x2e\xae\xde\x9b\x38\xde\xa2\xd3\x59\xbb\x5b\x94\x38\xc8\x2f\x04\x24\xe9\x68\xe0\xe9\x01\xb9\x56\x36\xcd\xfe\xeb\x9a\x4c\x94\x5e\x86\x49\x2b\x58\x5b\x8a\x84\x7f\x58\xa6\x84\xd7\xda\x5d\xc6\x7a\xc6\x6a\xf4\x6a\xbb\x2b\xec\x6c\xec\x89\x16\x41\x18\xbf\x34\x26\x13\xda\xf2\x52\x9a\xc2\xe7\x1a\x69\x4c\x26\xcb\xc6\x46\x50\xc3\x37\x48\x14\xd3\xe8\xd0\x1d\x64\x14\x30\x6a\x20\x44\xaf\x05\xc3\x04\x70\xc7\x52\xa9\xe0\x7c\xe3\x03\xbf\x26\xbd\xf8\xe7\x4f\x0d\xa4\xe0\x92\x54\x69\xb0\x18\x4f\x5e\x0a\x3d\x47\x7a\xf4\x26\x95\xf1\x59\x18\x71\xae\x6c\xfc\x80\x79\x59\x3e\xd6\xd3\xcd\x44\xae\xb1\xe7\x6f\x23\x8a\xcb\x8c\xa1\x66\xc4\x61\xc9\xdf\x94\x14\x81\x94\x9c\x13\xb8\x26\xd3\x34\x66\xff\x63\xa9\x77\x44\x83\x01\xa4\x35\x42\xb8\x69\x3f\xfa\xac\xf5\x43\x9c\x12\xc0\x11\xe6\x70\x8c\x01\xe1\xac\x5c\xf3\xb0\xf0\x38\x5e\x98\x3a\x03\x65\x37\xbc\x4d\x72\x49\x86\x92\x26\x22\x6a\xcc\x67\xc8\x18\x5c\x92\x62\x80\x82\xd9\xe7\xee\x81\x4c\x6e\x1b\x4a\xeb\x99\x08\xc8\x2f\x80\x7f\x5e\x84\x12\x9b\x57\x4e\x16\x35\x0b\x74\x7d\x15\xa8\x19\x31\x34\xbc\x77\x89\x2d\x1b\x4d\x5b\x77\x28\x6d\x46\x87\xc7\xca\x24\xf7\x98\x97\x83\x75\xcf\x72\xb4\xc5\x62\x98\x5b\x0e\x82\xb9\x3f\x1f\xbd\x5d\xc4\x5d\xe5\xf0\xe2\xcb\xb9\x85\x67\x48\x8c\x8c\x0b\x9d\x1b\x3d\x98\x96\xb9\x2a\x75\x62\xd8\x9d\x50\x19\xea\xf0\x14\x03\xc2\xe9\x5e\xb1\x8f\x8d\xd8\xb8\x1d\x9f\x5b\xb6\x4a\x1f\xc7\x0b\xef\x61\x67\x4e\x51\xeb\x40\xf2\x60\x18\x13\xba\xd5\xc7\xcf\xd1\x31\xc5\x93\x3b\x05\xc9\xf5\x41\xdc\x0e\x27\xa9\xa6\x17\x91\x51\x1d\x05\x26\x21\x59\x6f\x11\xcc\xdd\xd7\xee\xee\x08\x06\xed\xfe\xf3\x91\x3e\xeb\x9b\xc3\x81\x81\x37\xda\x3d\xf4\x14\xcb\x5e\x99\x2f\x6c\x33\xcb\x90\x5a\x5c\xf0\x20\xb7\xd1\xfe\xf0\xa4\x6b\xc8\xef\x27\x74\x4c\x60\x2d\x22\x97\x32\xd5\x86\x6c\x50\x11\x0c\x27\x4d\x40\x28\x26\x72\xda\x5f\x2d\x7a\x15\x81\x5d\x8f\x84\x5f\xc8\x89\x85\x4a\x9f\xc1\x52\x00\x1a\xc0\x61\x8b\x9d\x97\xb2\x70\x5d\x6b\x21\x82\x1f\x8b\xd6\x65\x2e\x8e\xb7\x53\x0f\x63\x26\x92\x5d\x5a\x80\x7f\xc1\xaf\x16\xc3\x5f\x4f\xd4\x5c\x4e\xc4\x91\x85\xde\xe2\xec\x54\xec\xa6\x63\xc8\x7f\x8b\x9f\x50\x68\xde\x3a\x66\x9b\xd0\x48\x62\x36\x00\x90\x52\xdf\x32\x1f\x21\xc3\xb8\xa4\x85\xe0\x44\x8e\x62\x6a\x4a\xc9\x2e\x7b\x17\xf5\xf0\x1f\x93\x64\xa1\x1e\x65\xfe\x21\xdb\x04\x5e\x20\x3a\x90\x42\x9d\x01\x16\x99\x97\x5f\x9f\x85\x78\xec\x97\xff\xb9\x9f\x0a\x53\x94\x88\x34\xfc\x0f\xd5\x89\x65\x03\x34\x65\xd3\x5d\xd4\xfd\x98\xed\xd0\x7d\x91\xe8\x0d\xb9\x9a\x4e\xc1\xbb\x35\x52\x9b\x6d\x2a\x29\x71\x84\xf2\x3c\x1c\x16\x8f\xbc\xc7\x05\x97\x4f\x60\xac\x44\xdc\xd0\x09\x2f\xe8\xfc\x1f\xd4\xa5\x00\xc0\xac\x45\x1b\xd1\xe0\x4f\xbc\x92\x84\x62\x94\x95\x62\x25\x10\x8f\x9f\x87\x5b\x74\xe7\xab\x66\x01\x31\x79\x03\xa0\x44\x3a\xa9\x05\x02\x9b\x3f\x6e\xec\x8a\x22\x47\x08\xe4\x36\x9f\x01\x80\xf4\x19\x88\xc1\x23\x2f\x0f\xde\xd3\xab\xcc\x9e\x0a\xf5\x84\x4c\x3f\x81\x9f\x9f\x47\xee\x80\x0a\x16\x6d\xaf\x6a\xd3\xe8\x06\xb9\x25\x69\xb2\xad\x7e\x30\xbc\xbc\x8a\xa9\xfb\xa0\x7f\x76\xca\x26\x7d\x06\x93\x54\x12\x02\xe8\x8b\x07\x00\x2c\x80\xce\x12\x8a\xc9\x4b\xf4\xe1\x22\x2e\xc2\xe5\xf5\xcf\x6e\xf7\xa3\x19\xe8\x95\x11\x02\x34\x3d\xa1\xc3\xef\x7b\xc7\xc3\x94\x28\xe3\x15\xf1\x39\x57\x84\x00\x7a\xfe\xe7\x3c\x78\x00\x79\x7a\x2e\x55\x63\x10\x93\x97\x78\x30\x87\x9d\x4a\x3a\xfc\x82\x55\xf7\xb1\x32\xa4\x57\x44\xac\x37\x17\x5d\xce\x51\xfc\x57\x0e\xc2\x00\x40\xf6\xb1\xc5\x21\x69\x54\xd4\x19\xa8\xb4\x12\x73\x8f\x17\xe3\xbd\xaf\x74\xc3\xdf\x29\xac\xda\x17\x71\x1c\xbe\x8d\xe6\x8a\x57\xc4\x5b\x71\x09\x01\xf4\x2b\x70\xb6\xbb\x6c\x00\x9c\xbc\xa0\xb8\xbd\x9b\xff\x7c\x22\x26\xca\x2b\x8c\x0e\x70\xde\x60\x58\x91\xc4\x81\x01\xec\xf0\x1b\x89\x6f\xd8\x9c\x81\xbd\xeb\x8a\x0d\x1f\xd4\xef\x26\x22\x33\x32\x06\xd0\xcd\xc8\x3e\xab\x83\x38\xb0\xdd\xa3\x02\x2f\x8d\xa4\x4d\x27\x94\x20\x37\x04\x2b\x9f\xf3\x3c\x00\x73\x37\x01\x09\xc3\xff\x2f\xc7\x20\x9a\xac\xec\x90\xee\x76\xfc\xd4\xf4\xa5\x31\x00\x00\x37\x7c\xd5\x1e\xf8\x3a\xd8\xf9\x3a\xca\xdb\x7b\x3b\xda\xf9\x3a\x02\x92\x68\x09\x59\x51\xb4\x94\xa8\x94\x84\x31\x1a\x2d\x2f\x2d\x25\x2f\x29\x25\x8c\x96\x94\x47\xa3\xbb\xc5\xd0\x33\xff\x0f\xe0\xee\xe1\xe0\xe2\x14\xf8\xff\x07\xea\x7c\x62\x1c\x01\x00\x30\x0b\x32\x7e\xe0\x7b\xdf\xce\x1f\xe9\xe9\xed\xe1\xe4\xe2\xe6\x88\xf4\x0d\xf4\x74\x44\xba\x78\xfa\xda\x03\x40\x40\x0e\x61\x1f\x0e\xf3\x32\x15\x12\xea\xd7\x1f\x18\xd4\x5a\xbd\x0f\x50\xf0\xd1\x8a\xd9\xd3\x32\xf1\x31\xe9\xa4\x32\x53\x30\x21\x55\x71\xd2\xdd\x0e\x14\x7c\x1f\x8d\x91\x03\xd3\x3f\xfa\xbe\x0e\x7e\xe5\xfa\x4a\x35\x80\xd3\x2c\xd0\x16\x03\xb6\xae\x31\xf8\xee\xab\xc8\xa4\x01\x00\x00\x68\xa9\xe9\xa9\xd6\xa8\xd8\xe2\xff\x4f\x00\x00\x00\xff\xff\xf1\x18\xc7\x0e\x41\xe4\x00\x00") + +func web_uiV2AssetsConsulLogo707625c5eb04f602ade1f89a8868a329PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsConsulLogo707625c5eb04f602ade1f89a8868a329Png, + "web_ui/v2/assets/consul-logo-707625c5eb04f602ade1f89a8868a329.png", + ) +} + +func web_uiV2AssetsConsulLogo707625c5eb04f602ade1f89a8868a329Png() (*asset, error) { + bytes, err := web_uiV2AssetsConsulLogo707625c5eb04f602ade1f89a8868a329PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/consul-logo-707625c5eb04f602ade1f89a8868a329.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsConsulUi5b92b4b084738a6c8d4662cd5dd81e58Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xe9\x76\xdb\x48\x92\x30\xfa\x5f\x4f\x01\x61\xce\xd5\x00\xed\x24\x44\x52\xf2\x22\x56\xb3\x7d\x5d\x5e\xaa\xdc\xe5\xb2\x3d\xb6\x5c\x33\x3d\x1a\x1d\x7f\x29\x20\x45\xa2\x05\x66\xb2\x32\x93\x92\x58\x12\x1f\xe8\xbe\xc6\x7d\xb2\xef\xe4\x86\x7d\xa5\x28\xd9\xec\xa9\x3e\x33\x65\x11\xc8\x2d\x02\x91\xb1\x65\x44\xa4\xbd\x60\xc8\x62\x9c\x86\x3e\xb7\x77\x02\x74\x1e\x62\xe4\xd8\x3e\xc1\x6c\x11\xf5\x16\xe1\x3e\x0c\xe0\x9c\x23\xca\xf6\xa1\x1f\xd9\xe0\xc4\x46\xd7\x73\x42\x39\xb3\x41\x69\x9b\xf9\x3c\x0a\x7d\xc8\x43\x82\x33\x0d\x66\x24\x40\x91\x1e\xa2\xf8\x38\xf0\x33\x4f\x17\x3c\x8c\xd8\xfe\x94\xf3\xf9\xfe\x0c\xf1\x29\x09\xaa\xde\x32\x0e\xf9\x82\x95\xbc\x9d\xc1\x0b\xf4\x82\x73\x0a\xcf\x22\x64\x9f\x82\xf3\x05\xf6\xc5\x92\x1c\x04\x38\xc0\x80\x82\x08\x30\x40\xdc\x9b\x0f\x67\xff\x44\x3e\xf7\x14\xcc\x1f\x29\x99\x23\xca\x97\x0e\x02\xf6\xd7\xaf\x88\xfd\x4a\x82\x45\x84\x6c\x70\x73\x09\xa3\x05\x1a\xed\xf6\x57\xee\xce\x25\xa4\x16\x1c\xeb\x6e\x90\xb1\x70\x82\x6f\x6f\x93\xd1\xdd\x9b\x73\x42\x1d\xd1\x88\x8f\x07\x3f\xf0\xbf\x42\x3a\x59\xcc\x10\xe6\xcc\x8b\x10\x9e\xf0\xe9\x0f\xfc\xd1\x23\xf7\x46\xbc\xc7\xe3\xf8\xdd\x09\x3f\xdd\x31\xdd\xa8\x15\x62\x0b\xbb\x7a\x82\x39\x25\x9c\xf0\xe5\x1c\x79\x53\xc8\x3e\x5c\x61\xb3\x42\xcf\x87\x51\xe4\x60\x40\xdd\xbd\x3d\x07\x9d\xd0\xd3\x31\x3e\xa1\xa7\xee\x8a\x22\xbe\xa0\xd8\x42\xab\x1d\xb3\x24\x2b\x54\x20\xbb\x37\xfa\x1d\x17\x13\xa0\xe7\x55\x80\x73\x03\x2d\x06\x08\x2f\x66\x48\x22\x70\xb4\xdb\x07\x3e\xc1\xe7\xe1\x64\x11\xff\xbe\xa2\x21\xd7\x7f\xaf\xdc\x11\x3a\xe1\xa7\x63\x0c\xd0\x0a\x89\x21\xe1\x22\xe2\x63\x6e\xfe\xf2\xd0\x35\x47\x38\x70\x6e\x16\x34\x7a\x43\xe8\x7f\x2c\x10\x5d\x8e\xd2\x28\x33\x2b\x9b\x86\xcc\x83\xf3\x39\xc2\xc1\x97\x4f\xef\x1c\x1b\xfa\xd1\x7e\x14\x32\x6e\x83\x93\x53\x20\x5f\xfa\x11\x82\x58\xf6\x77\x90\xeb\xae\x40\x6a\xc0\x4f\xc8\x27\x34\x68\x3b\x6c\x88\xcf\x89\x0d\x4e\x90\x17\x06\xb5\x43\xbf\xa4\x08\x72\x54\x18\x3b\x8d\xce\x92\xd1\x7d\xd9\x4b\x2e\x3b\x74\x6e\x56\x80\x7b\xaf\x5e\x1c\xbf\x78\xf9\xfa\xfd\xf1\xeb\x4f\x5f\x7f\x79\xfd\x0f\x80\x3d\xc8\x39\x75\xa8\xf7\xe6\xc3\xa7\xd7\x6f\x7f\x7a\x2f\x1e\xba\xc9\xac\x5f\xe6\x41\xf9\xac\x20\xaa\x9d\x77\x21\xfb\xd5\xcc\x1b\xd5\xcf\xfb\x0a\x45\xa8\x6c\xde\x08\xb0\xda\x79\x03\xc4\x38\x25\x4b\x1b\x9c\x30\x35\x01\xf6\x3e\xbf\xfb\xf2\x93\x1c\xbd\x6a\x29\xac\x7e\x29\x2f\x23\x82\xcb\x56\x52\x8f\x77\xd1\xc9\x06\x27\x51\xeb\x55\x34\x20\xe4\x13\xfa\x7d\x81\x18\xcf\x50\x95\xda\xdb\xc8\x13\xbb\x12\xe0\x31\xf2\x18\x86\x73\x36\x25\x7c\x87\x5d\x85\xdc\x9f\x3a\xc8\xa3\xaa\xdb\xf1\x72\x8e\xdc\x1b\x1f\x32\x64\xfb\x09\x38\xf6\x28\x0d\x41\x01\x5a\x87\x7b\x92\x25\xbe\x87\x33\x41\x66\xab\x74\xe3\xaf\x6c\x31\x47\x54\x40\x1d\x2d\x1d\xf1\x04\xc4\x2c\xc4\x5d\x01\x39\xc7\x28\xcf\xe8\xd4\x82\xa3\xf1\x0d\xe3\x84\xa2\x11\x02\x62\xdd\x23\x0e\xc2\x60\x84\x81\x59\xfa\x88\x82\xd4\x9a\x47\x99\xe5\xae\x00\x1b\xdf\x28\x26\x3c\x92\xab\x50\x7f\x27\xd8\x71\x22\x57\xa0\x6b\x94\x82\x27\xf5\x66\x8a\x60\x80\x28\x53\x6f\xf5\x8f\x6c\x8b\x00\x72\xa8\x5e\x8b\xbf\x32\xef\x56\x3b\x19\xf0\x05\x4f\x37\x2f\x05\xc4\xd9\xf6\x85\xaf\x84\xc7\x8d\x58\xab\xf9\x66\x16\xf7\x3e\xbd\xfe\x8f\x2f\xaf\x3f\x1f\x7f\xfd\xf2\xf1\xd5\x8b\xe3\xd7\xa3\xdc\xd3\x97\x9f\x5e\x8b\xa7\x7a\x85\xd8\x83\x7e\x64\xbe\x16\x5e\x81\x3c\x96\x32\xab\x6b\x35\xeb\xab\xd7\xef\x5e\x57\xce\x5a\x49\x55\x91\xf7\xf1\xcb\x71\x07\xaa\x09\x59\x05\x8f\x8b\x77\x1a\xf2\xe6\x90\x4f\x31\x9c\xa1\xf1\x58\x61\x74\x0e\x29\x43\x62\xd7\xa5\x49\x38\x35\x8a\xdc\x8d\x36\x70\xfa\x80\x18\x19\xe0\x3a\x72\x03\x66\x36\x1a\xb0\x6d\xd7\x75\xdd\x78\x78\xb9\x98\xd2\x7d\xaf\x77\xdd\x4e\xb7\x15\xa5\x36\x55\xd9\x82\x1c\x3e\xbe\x59\x81\xd0\xe1\x20\x61\x14\x4a\x16\xb0\x68\x31\x79\x43\xc9\x4c\x0c\x88\x5c\x57\xb6\x29\xac\x1c\xf0\xc2\xe2\x2b\xf8\x76\x47\x4c\xa6\x47\x71\xf0\x22\x8a\xc0\xba\xe8\x9c\x42\x1c\x44\xe8\x13\x62\x73\x82\x59\x8e\x35\x50\xc1\x4b\x05\x56\x89\x5c\x09\x58\x8c\xe9\x4e\x78\xee\x88\x95\x31\xef\xc3\x2f\xea\x9d\x9f\x5b\x65\x24\x96\x18\x6f\x9a\xdd\xbe\xa2\xd9\xdd\xfe\x78\x3c\x5e\x8c\x16\x63\xb9\x26\xec\x7d\xfc\xf4\xf6\xd7\x17\x9f\xfe\x91\xe0\x73\x11\x8a\x8d\x20\x06\xf0\x5d\x77\xe7\x8c\x22\x78\xb1\xa3\xc8\x5a\xbc\x0d\x59\x4a\x80\x3b\xbe\x3b\x5a\x8c\xa1\x18\x68\x71\xd2\xd7\x6c\xbb\x69\xc8\xb2\x31\x33\x58\xf4\xdd\x51\xfa\x5d\x86\x56\xf3\xef\x52\x54\x93\x5a\x4b\x9b\x85\x80\xc5\x49\x42\x49\xa7\xc9\xb2\xf4\x37\x1b\x2d\xc6\x0b\x6f\x06\xe7\x4e\x09\x65\xc8\x49\x50\xd9\x24\x24\x33\x03\xca\xcd\xb0\x72\x57\x2b\x14\x31\x64\xc5\x9f\xee\xcb\xfb\x17\x5f\x8e\x7f\xfe\xf0\xe9\xed\x7f\xbf\x7e\xa5\x3e\x62\x30\xc6\xe8\xca\x7a\x3d\x3b\x43\xd4\x7b\x4d\x29\xa1\x3b\x7c\x4a\xc9\x95\x15\x78\x3e\x09\xd0\x18\x81\xc0\x9b\x21\xc6\xe0\x04\x8d\x29\x08\x4a\x58\x87\xa4\x97\x05\x88\xdc\xd5\xca\x5d\xb9\xa0\xce\x3e\x48\xeb\xfe\x69\x3b\x01\x89\xd9\x7b\x82\x5f\x27\x8d\x29\x12\xaa\x9d\xbd\xa0\x51\x89\xfa\xae\x54\xa8\x2f\x9f\xde\x95\xe8\xee\xdd\xb5\x76\x80\x72\x82\x7f\x8c\x72\x6c\x36\xf5\x40\x71\xfb\xd4\x83\x4f\xaf\x5f\xbc\x4a\xfd\x54\x1c\x78\x7c\x49\xc2\xc0\xea\xef\x28\xe9\xfa\xdd\xdb\x03\x80\x8d\x9d\x02\x08\xb6\x9f\xda\x08\x36\xc8\x41\x6c\xff\x9e\x6c\xcb\xf4\x4b\x8d\x1f\x7b\x91\xda\x61\xe9\xf7\x1a\xa1\x76\x90\xd2\x26\xed\xe2\x17\xb0\x03\xdf\x76\x77\xea\xcc\x05\xc1\xc4\xd8\x1c\xfa\x68\x64\x5f\x0e\x6c\x40\xd1\x9c\x8c\x14\x19\x87\x58\x62\x83\x21\x7a\x19\xfa\xc8\xb1\x19\xe2\x3c\xc4\x13\x66\xc7\xfa\x46\x99\xe0\x8d\x77\x5b\x24\x75\x41\x41\xe0\x13\xc4\x1d\x5b\x0c\x6c\xbb\xde\x79\x88\x83\x9f\x55\x6f\xc7\x05\x8d\xa2\x53\x6a\x5c\xc6\x66\xc8\x70\x7b\x05\xb8\x25\x8c\x8b\x1d\xf5\xe5\xe5\x84\xc8\x35\xf2\xcb\x34\x38\x61\xa7\x80\x0b\xc1\xd1\x60\xc1\x24\x72\xc3\x63\xf3\x28\xe4\x8e\xbd\x6f\xbb\x1e\x8b\x04\xec\x7d\xd0\x1b\xb8\x9e\x4f\xb0\x0f\xb9\x73\x62\xdb\xa7\xae\xf7\x4f\x12\x62\xd9\xa4\x4e\xca\xa4\x79\xee\x4d\x18\x8c\x6c\x7b\x95\x91\x1d\x13\xc4\x7f\x26\xa5\xd8\x53\x9a\x1c\x61\xfc\xf6\x36\x22\x6a\xb3\x2b\xba\xf4\x49\xf4\xc8\xde\xdf\xb7\x1f\xc5\x8f\x45\xab\x15\x48\x89\xd3\x32\xe8\x02\x24\xf8\xd0\x97\x4f\x6f\x5f\x92\xd9\x9c\x60\x84\xb9\x53\x0e\xf0\x9c\xcc\x1d\x81\x76\x03\x4e\xd9\x60\x82\xd5\x61\x43\x49\x82\x61\xe8\xaf\x2c\x60\x91\x9d\x63\x6e\x5a\xa2\xd4\xe7\x37\xe7\xdf\x06\x7b\x7b\x6a\x9b\xef\x8e\x53\xbb\x73\x70\xfa\x3c\xfd\x63\x64\xdb\xca\x0e\x40\x90\xfa\xd3\x8f\x90\xc2\x99\x22\x2c\xe6\xde\xde\xda\x36\xa0\x63\xdb\x16\x5f\xe2\x79\x89\x6e\x31\xe2\x42\xe8\x62\x3d\xdf\x5f\x07\xae\x62\xcd\x92\x61\x0b\x56\xed\xd8\x5f\xb0\x30\xb2\x2d\x4e\x2c\xb5\x59\xad\x05\x0e\x7f\x5f\x20\x2b\x0c\x80\x35\x0b\x19\x0b\xf1\xc4\x12\x7c\xd5\x47\x98\x23\x6a\xbb\x62\x3c\x7a\xc7\xf1\xc4\x1a\xed\x98\x5a\xff\xfe\xf9\xc3\x7b\x8f\x71\x1a\xe2\x49\x78\xbe\x74\x4e\x30\x10\x9c\x05\xc4\xb6\xd7\xe6\x10\x79\x72\x0a\x70\xb1\xef\xb0\xb4\xef\x30\xdd\x77\x78\x3a\xba\x31\xb6\x82\xd3\x07\x34\x51\x93\x4e\x24\xd2\xcf\x16\x61\x24\xcd\x44\x17\xa0\x53\xe9\x0d\x69\x14\x65\x3e\x21\x34\x08\xb1\xb2\xa7\xef\xe4\xf1\x4a\x8f\x54\xeb\xc4\xda\x84\xa4\xdb\x16\x79\x54\xcb\xf8\x3b\xfa\x89\x12\x04\xef\x63\x12\x20\x56\xed\x2f\xaa\x53\x88\xa5\x3b\x50\x79\xf7\x24\xa7\x0f\xc7\xcc\x28\xc4\x34\x56\x88\x17\x39\x86\x4a\x94\x42\x1c\x8e\xc3\x2a\xcd\x4e\xb1\x7e\xa0\x8c\x0d\x3a\xce\x2a\x77\x6c\x0c\x53\xea\xdd\x22\xa7\xde\x01\x89\x6b\x5e\xe1\xaa\x13\x2a\xbc\xfe\xf0\xac\x93\xab\x8e\x8b\xcf\xc1\x84\xf9\xa2\xa4\x13\xa0\x80\xad\xca\x1c\x0d\x12\x2d\x21\x20\xcd\x9b\x25\xf0\x3b\x6d\x92\x2c\xa1\xaf\xa5\xce\x35\x11\xcf\x9b\x10\x07\x2f\xa2\xa8\x4a\x7c\xa5\xa9\x07\x72\x18\x91\xc9\x7e\xc2\x44\x99\xdd\x0c\xf1\xc5\xe5\xda\x6c\x41\x6d\xfc\x90\xbd\x21\x51\x80\x68\xd9\x2b\xa9\xdd\x88\x0f\xa6\x55\x98\x63\xf2\x77\x49\xc4\x2f\xfe\x09\xaf\x7f\x86\x6c\x5a\xd2\xe7\x02\x2d\x8f\xc9\x0b\x4a\xe1\xb2\x8c\x05\x89\xd5\x6e\xdc\xe7\x5e\xe5\x54\x07\x10\x84\xee\x4d\xec\x7f\x5e\x3c\xac\xff\x79\x2d\x86\xe9\x6f\x39\xc3\xfc\x4a\xcb\x09\x65\x94\x15\x86\x37\xb1\x14\x2f\x61\xab\xb6\x7a\x29\x54\x15\xa5\x64\x8b\x55\x7e\x38\x77\x90\xfb\x1c\x8d\x72\x3a\x00\x12\x1b\x04\x28\xc5\x8d\x56\xe8\xe4\x90\x93\x33\xdb\x05\x1d\x79\xb9\xa0\x54\xa7\x0f\xa2\x64\xd1\x42\x8d\x76\x81\xef\x2c\x04\x23\xb5\x2f\xd0\x92\xd9\x00\x2f\xa2\xc8\x2d\x63\xf1\xeb\x9e\x09\x54\x4d\xbb\xd1\xa3\x81\xe2\x24\xfa\x1c\x80\x25\x8e\x6a\x17\x2c\xea\x4e\x0c\x48\xe7\x13\x03\xda\x61\x39\xb4\xf5\x72\x68\xfd\x72\xaa\x0e\x12\x28\x80\x6a\xaf\x84\xe3\xf2\x71\x61\xe9\xb8\x89\x66\x87\x93\xc5\xc2\xe2\x62\xf7\xf6\x9c\xd0\xa3\xc8\x5f\x50\x86\xc6\x29\x1a\xa9\x05\xba\x64\x1c\x10\xba\x9b\xb3\x5a\xc4\x9f\x3e\x72\x0e\x52\x76\x99\xdb\x6c\xf3\xed\xe6\xec\x89\x29\x64\x8e\x22\xfe\x06\x35\x26\xe5\xf2\x97\x6a\x0c\x19\x63\xa3\xc6\x84\xb1\x1a\x03\x73\x6a\x0c\xad\xf6\xeb\x91\x11\x51\xdf\x8a\xd5\xf9\xbe\x60\xa3\x5f\x0f\xba\x23\x32\xf6\xc5\x40\xe4\xa4\x7f\x0a\x5a\x0d\x99\x77\xa0\x91\x31\x29\xa8\x59\x19\xc7\xf0\x42\xa9\x59\xd9\x71\xa3\xf4\xa0\x00\x49\x9a\xe6\x20\xf9\xde\x00\xb9\x80\xaf\xdc\x55\x95\x06\x44\x00\xdd\xc8\x59\x83\x34\x04\x37\x76\xe0\x90\xb0\x6b\xc1\xa7\xc9\xb9\x23\x74\xcb\x8b\x4b\xef\x37\x21\xd9\xdc\xe7\x8a\x27\x0b\x2b\x54\xae\xc2\xd6\xbc\xda\x76\x3d\x74\x8d\xfc\x05\x47\x0e\x75\x47\x62\x8b\xac\x36\x78\x54\x61\x9c\x99\x9e\xfa\xbd\x53\x7b\x60\x02\xbb\x1d\x54\x34\x29\x64\x42\xf3\xbf\xab\xa5\xa6\xc6\xe8\x6c\xa3\xc5\xaa\x4e\xb4\x05\xaa\x0e\xdb\x72\x55\xa7\xa3\x3e\x11\x0a\x85\x1e\xc3\x68\x7f\x11\x36\x19\x87\x6b\x29\x0e\xf9\xf1\xeb\x83\x0a\xea\x18\x37\x49\x64\xa3\x3e\x90\x21\x45\xfb\x33\x7f\x20\x03\x4b\x19\x77\xe5\xb9\x0a\x53\x67\x19\x51\x97\x43\x95\x16\xa7\x17\x4c\xd9\xb8\x25\xc3\x86\x8d\xa7\x17\x95\xc7\x0d\xb0\x79\xcf\x6b\x5d\xf3\xae\xdb\x3e\x1e\xe6\x4f\xef\x4c\x21\x7a\x88\x6d\x6d\xf4\x50\x7a\x67\xea\x2f\xbc\xe9\xcd\x3f\x45\x30\xe2\xd3\x14\x19\xde\x79\xeb\x03\xe5\x60\x02\x7e\xd9\xe6\x0f\xd6\xde\xfc\x81\x3b\x62\x4e\x38\x6e\xda\xf5\x81\xeb\x02\xe6\x84\xc0\x7e\xaf\x38\xa5\xef\x02\x7f\x1c\xe6\xf8\x80\x3f\xf6\x1b\x7c\x5d\xac\xc8\x07\x16\xe9\x59\x00\xf2\xde\xc3\x19\xaa\x67\x00\x7e\x3b\x06\xc0\x58\xe1\xac\xb1\x3b\x03\xc8\x39\x42\x62\xb6\xa0\x07\xdf\xb8\x8f\x64\x4d\xc6\x41\xb6\x89\x71\xc0\xad\x65\x1c\xfa\xbb\xb7\x10\xe7\x6b\x31\x0d\x33\x7c\xdb\x10\xc4\xda\xa0\x3c\x45\x16\xb0\x2e\xc2\x0e\x97\xda\xd2\x95\xcb\x2a\xc4\xf2\xd1\x74\x14\x1d\x71\x37\x6f\x2e\x74\x8d\x58\xaa\xb7\x7e\xa3\x9c\x12\x85\xef\x1c\xd5\x02\x55\xa4\xcd\xdd\xa3\x5a\x48\x1c\xd5\xd2\x6a\xc8\x0e\x0a\x18\x51\x8c\xb7\x64\xd8\xbc\x02\x46\xdb\x2b\x60\x35\xf1\x1e\xf3\x79\x15\xcb\xa5\x88\x91\xe8\x52\xba\xb5\x55\xcc\x47\x44\x60\xd0\x0b\x71\xc8\x43\x18\x85\x7f\x20\x9a\x6d\xae\x76\xf7\x3e\xc2\x97\x21\x25\x58\x7c\xe1\x4d\xea\x59\xca\x08\x7e\x91\x30\xff\x98\x25\xcc\x64\x9f\x8f\x14\x9d\x87\xd7\xa3\xd8\x43\xea\xa5\x1f\x83\x39\x09\x7e\x2d\x6f\x96\x7b\x03\x3e\x69\xa0\x47\x31\xef\x59\xb9\x3f\x64\xbd\x55\x11\x28\x9f\x25\x7d\x96\x11\x95\x22\xdb\x37\xfe\x25\x19\x3b\xdf\x3b\x0f\x23\x2e\xd0\x9b\xa0\x3f\x8d\xb0\x3b\x9d\xa5\x28\x74\xc5\xfe\xac\x18\x59\x1c\x4e\x84\xbc\x1e\xd9\xe7\x84\xce\x6c\xe0\x47\x90\x31\xf1\x80\x8d\x4e\x6c\xb5\x9c\xde\x19\xa4\xf6\x29\x20\xd8\x9f\x42\x3c\x41\xe9\x53\x97\x2a\x1a\xca\x80\x25\xda\xf6\x26\x94\x2c\xe6\x0f\x0a\x58\x06\x92\xcc\x2a\xd6\x87\x65\x3e\xef\x5d\x86\xe8\xaa\x2c\xfc\xe9\x2c\x22\xfe\x45\x8f\x45\x84\xe7\x15\x83\x94\x0f\x41\xc2\x1a\x9e\x3b\xf2\x2c\xc7\x0b\x99\xfc\x57\xc8\x83\x94\x84\xef\x03\x3c\xd6\xcf\xb5\x7c\x77\x7f\xe0\x7f\x45\x69\x59\x8f\x85\x60\x14\xd2\x71\x27\x0e\x49\xd5\x7f\xa8\x81\xcf\x29\x99\x39\xc8\x5d\xcf\x87\x40\xc7\x01\xf1\x25\x3f\xf6\xcc\x1f\xaf\x23\x24\xfe\x01\xd1\xb8\x70\xe2\xe6\x14\x4e\xf4\xfb\xa5\x27\xfa\xfd\xf4\x89\x7e\xff\x74\x74\x72\xea\x56\xf0\x3b\x9b\xa3\xd9\x3c\x82\x1c\xf5\xec\x47\x68\xe5\xa6\x1d\x06\x15\x9f\x3a\xde\x98\xe0\x46\x30\xa4\x10\x4f\x46\xbb\x83\x2c\x25\xc7\x5f\xee\x14\x04\x61\xf0\x09\xf9\x28\xbc\x94\x19\x24\x2c\x4d\x02\x02\x7c\x79\x5a\x3c\xce\x7b\xd8\xe4\x60\xb6\x0c\xf9\xd8\xc9\xbf\xd3\x73\xda\xee\x73\xf6\x68\x6c\x5b\xe6\xe7\xc8\x41\x63\xea\xc9\x8e\xef\x42\xc6\x5d\x8f\xa2\x19\xb9\x44\x5a\xf0\x21\x80\x9d\xc8\x39\x89\x3b\xcb\x88\x42\xb6\xb7\xe7\xf0\x6c\x27\x18\x04\x46\x54\xca\x1e\xcc\x78\x9f\x2d\x19\x0f\xba\x12\xe0\xbc\xc5\x0c\x51\xf3\x91\xd2\xf0\xa8\xb8\xeb\x2c\xbc\x8e\xea\xf3\x4a\x69\x02\x25\x9d\x34\x12\xaa\x50\xf0\x28\x81\x70\x87\x0b\x45\xb1\x11\x48\x9e\x5b\x72\xf3\x3e\x4b\xf6\x52\xc3\x4e\xab\xe8\x74\xe7\x23\xe8\xca\x0e\x9a\xd0\x6c\x70\x93\x55\x64\x27\xa8\x34\x98\x2a\x96\x18\xcd\x30\xeb\x93\xea\x7f\x45\x11\xe0\x93\x00\xf5\x50\x10\x72\xf2\xb0\x70\x09\x53\x6f\x64\xa7\xcc\xc3\xfd\x7f\x32\x61\xf2\x11\x7c\x81\x96\x8b\x79\x67\x28\xf0\x79\x48\x67\x72\xa0\x5e\x10\x8a\x8f\xd5\x55\x0e\xac\xc5\x8f\xf1\x38\xbf\xa3\x19\xc2\xc1\x0b\xf9\x24\xad\x45\x1b\x21\x27\xbe\x9c\x7d\x6a\x82\x06\xd3\x28\x7e\x38\xc1\xe3\xe4\x99\x47\xcc\xfb\x15\x0b\xe8\xc4\xd3\x63\x7a\xfc\x31\xc4\x82\xef\x08\xb2\xd4\x1f\x43\x72\x4e\xa0\x7f\x54\x1c\x55\xeb\xb7\xb6\x0b\x10\xa5\xa4\xea\x40\x5b\xbe\xb3\xdd\x2c\xf1\x5f\x85\x7c\xda\x4b\x7f\x77\xfb\x14\xe8\x68\xea\x91\xfd\x82\x22\x6b\x49\x16\x16\x5b\x50\xf4\xdc\x06\xc9\x8a\x84\xf0\x99\x23\x3a\x83\x02\x1e\xf1\x43\x28\xc8\x05\xb6\x5c\x7b\x98\xa4\x2c\x46\x88\x7d\x94\x11\xb9\x6a\xe9\x2c\x61\xc9\x09\x16\xc0\xee\xc0\x5d\x79\x67\xa1\x40\xdd\x34\x34\x43\xe8\xe3\xa0\x31\x2e\xbc\xd1\x5d\xc7\x79\xc6\xaf\x2c\x2b\xae\x08\x21\xe5\x2a\x90\xf1\xa8\xca\x43\x90\x5a\x27\x1e\x73\x61\xf1\xd0\x31\xd7\x01\xab\x03\x77\x27\xbf\xc8\x14\x55\x02\xec\x82\xc2\xeb\x98\x32\x00\x35\x81\xb9\x21\xfb\x84\x26\x21\xe3\x88\xa2\xc0\xb1\xf5\x5e\x33\xc7\x5e\x15\xe0\xf7\xdd\x51\x41\x62\x99\x2f\x1f\x1f\x8b\xe5\x5b\xe8\x8f\x69\xbb\xae\xc7\xa7\x08\x27\xbb\x85\xbb\x37\x7c\x6f\x0f\xc5\x1d\xdd\x95\xeb\xf9\x50\x58\x90\x79\x84\x99\xe3\x6b\x54\x10\x98\x9a\xa4\xe2\xd9\x63\xa1\x98\xb2\x77\x33\xdf\xac\x15\x13\x9a\x2f\x7b\x67\x0b\xce\xcb\x63\xf0\xfd\x28\x14\xff\x3f\x3f\x23\x90\x06\x55\xfd\xb6\x51\x3a\x26\xf1\x5b\xbd\x79\xe8\x5f\x64\x05\x64\xc6\xbd\x17\x5e\x87\x98\xed\xfb\x51\xe8\x5f\xf4\xc8\x82\xb3\x30\xc8\x67\x08\xdf\x87\xac\x49\xb1\xab\x58\x9a\x2e\x22\x7b\x5d\x89\xa9\xbf\x26\x89\x22\xe4\x57\xe5\x5b\x24\x6f\x6b\x7b\x6e\xe3\xd7\x56\x40\x60\xc8\xc3\x4b\xd4\x63\x3e\x25\x51\x24\x33\xbd\x3b\x62\xa1\x38\xc0\x36\x22\xe3\x1c\xa1\xe0\x0c\xfa\x17\x0f\xa5\x73\x74\xa1\xf5\x2b\x18\xf2\x0a\x81\xca\xc3\x19\x22\x0b\x6e\xbb\x40\x9e\xd5\x5c\xc2\x48\x46\x24\x94\x08\x58\x03\xa0\x7d\x0a\x18\x87\x1c\x8d\x6c\x8a\x60\xb0\xb4\xd3\x42\xb4\xbf\xae\x10\x65\x0b\xdf\x47\x8c\xc5\x01\x1c\xf2\x57\x51\x4e\x0a\x56\xad\xdb\xc8\xbf\xd3\x5c\x19\x98\x6e\x05\x2b\x49\xf6\x28\x08\x3c\x09\x84\x0d\x6c\xdd\xcb\x36\x32\x2f\x91\x0c\x02\x6d\x29\xa9\x74\x80\x0e\x40\x5a\xf2\xf8\x11\x82\xf4\xad\xc6\x5a\x4a\x66\x21\x60\x1b\x5c\xda\x6e\x5a\x92\xa6\x5f\x00\x2e\x64\x55\x56\x9a\xa5\x35\x07\x94\x2c\x50\xa1\x59\x08\x21\xa0\xa0\xee\x08\xa0\xd1\x99\xbe\x7b\xf0\x5a\x6c\xb2\x08\xb2\x69\xcf\xa8\x03\x15\x92\x55\x36\xaa\xee\xb5\x95\xcc\x85\x22\xc4\xd1\x35\xff\xb6\x66\x67\x88\xa2\x80\x21\x9e\x37\x3d\x73\x6b\x5b\xdb\xfe\x9c\x42\x36\x0d\x7d\x42\xe7\x3d\xf5\x7a\x73\x50\xea\x0c\xb0\x4a\x87\x19\x4e\x5e\x9d\x91\x60\xd9\xcc\x5b\x6f\x42\xf6\x8a\x92\x79\x40\xae\xf0\x6f\x21\x0b\xe5\x77\x1e\xd4\xfb\x78\x12\xef\x8b\x76\xbe\x38\x89\x07\x4d\xf2\xd7\x4b\x44\x79\xe8\xc3\xa8\x37\x43\x78\x61\xbb\x2b\xa0\x34\x72\x36\xba\x09\xf4\x54\xa3\xc2\x56\x4a\xc5\x96\xf9\xc6\xb3\x67\xbb\x7f\xeb\xef\xed\xe5\x99\x41\x61\xc1\x36\xd8\xcd\x8f\x51\x6c\x23\x13\xec\x72\xdf\x12\xb9\x37\xc8\xe3\x90\x4e\x10\xf7\xfc\x29\xf2\x2f\x50\xf0\xdc\x49\x83\x07\x83\xa0\x01\x36\x80\x3d\xc6\x97\x11\xf2\xa6\x28\x9c\x4c\xb9\x30\x4b\xd2\x3f\xaf\x42\x1c\x90\x2b\x2f\xc4\x18\xd1\x9f\xe5\xa3\x47\xf6\xfc\xda\x76\x47\x4e\x67\x2c\x36\xcc\x24\xe3\x53\x57\x6d\x68\x53\x46\x19\x48\x70\x7b\xa6\xdc\xcd\xb7\x72\x92\x97\xac\xe5\xb4\x13\x04\x28\xe8\x51\xc4\xc8\x82\xe6\xc3\x76\x8c\xae\x36\x9b\x2f\x38\x0a\x7a\x12\x55\x0f\xa0\x95\x57\x82\x97\x5e\xe8\x29\x80\x9c\xd3\xf0\x6c\xc1\xd3\x0e\x06\xb3\x44\xf9\xef\xc8\xe9\x03\x9e\x1c\xf7\xd8\x13\x1a\x06\x9f\xc8\xd5\x6b\x1c\xd8\x2e\x58\x60\x35\xf0\x52\x2b\x42\x06\x4a\x4f\xb1\x2d\xc7\x96\x33\x32\xef\xff\x45\xd0\x9f\x7a\x9f\xf5\x37\x2e\xa6\xd5\x65\x04\xa1\x6e\x66\x0e\x74\x6d\x9f\x86\x92\xfa\x64\xae\xe1\xed\xad\x7d\x05\x29\xd6\xf1\xfc\x7c\x25\xf3\x62\xef\xb4\x02\x3d\xcb\x1c\xca\x14\xc1\x24\x4b\x20\xb7\x9a\x95\x0b\x12\xd0\x73\x93\x39\xf6\x17\x83\x88\x97\x72\xba\xd4\x0c\x46\x9b\x38\x30\x6e\xa3\x3c\x83\xd0\x1d\x33\x8c\x06\x3d\x7a\x04\x6e\xf4\x74\x23\x1b\x2e\x38\xb1\xf6\x2d\x36\x87\xd8\xb2\x1f\x39\xe8\x51\xc1\x96\x8f\xbf\x43\x3c\xca\xed\x6d\x5f\xbb\x9b\x9b\x68\x38\xbc\x5c\xf6\x7c\x12\xa0\x59\x28\x55\x9a\x0c\xed\x66\xdf\xd5\xf4\xda\x46\xf9\x1f\x85\x8c\x7f\x27\x76\x66\x5d\x90\x47\xac\x2a\x04\xe1\x65\x4e\x4b\xc8\x43\xd0\x82\x63\x51\x18\x84\xe4\x1b\x9c\x48\x16\x15\x9e\xe6\xb5\x72\x78\xd6\xc3\xf0\xf2\x41\xd7\x89\xe5\x22\x39\x3c\xb3\x41\xbc\x64\xb1\x06\xb1\xda\x92\x02\x72\xb9\xd5\xb2\x22\x29\x3d\xac\x18\x4b\x2f\xe2\x14\xa4\x80\x59\x53\x7d\xe4\xf0\x6c\x11\xc1\x0d\xb9\x63\x4a\x9a\xab\xc0\x32\x8c\x50\xc0\x7a\x14\x5d\xc2\x28\x0c\xb4\x7d\x95\x6f\x19\xc1\x25\x59\x70\xb6\x2f\xb8\x62\xa9\xf1\xdf\x4a\xd2\x26\x81\x6a\xf1\xb9\x34\xd9\x82\x73\x69\x98\xf6\x55\xc7\x2b\x47\xfa\x84\x5d\x2f\x13\x8f\xfb\x3f\xe0\xbf\x72\xb3\x28\x6c\x02\xe3\xe8\x98\x9f\xe0\xd3\x1d\xea\x25\x0c\x74\x9c\xfe\x71\x7b\xbb\x3b\x00\xd4\x4b\xc7\xa3\x8d\x77\xfb\xc0\x96\x6b\xb0\x43\x6c\xd1\xbd\x3d\x87\x7a\x26\x3e\x6d\xbc\xdb\xaf\x66\xd7\xd4\xbb\x40\x4b\x40\x93\xe8\x9b\xc4\xf8\xcd\xa4\x6c\xe1\xbd\x3d\xe4\xa4\xc2\xf1\x00\x76\x01\x95\xcf\xa4\x27\x7c\xb5\x72\x14\xe0\x61\x62\x44\xc8\xa2\x1d\x9f\x91\xa0\x07\x42\x5f\x44\x91\x72\x53\x98\xd7\x2e\x58\x54\xe0\x28\x9e\x33\xcb\xa3\xc3\x73\x67\xd7\x41\x56\x88\x19\x87\xd8\x47\xe4\xdc\xe2\x6e\xaa\xa8\xc0\xf1\x72\x8e\x74\x61\x81\x97\x10\x63\xc2\x2d\x1f\x46\x91\x05\x2d\xb9\xdd\x2c\xc8\x2c\x18\x0f\x68\xbb\x2b\x25\x87\x91\x0b\x8a\x93\xa0\xd4\xa8\x9f\xd0\x39\xa2\x08\xfb\x66\x68\xd1\xcb\x9a\x42\x86\xff\x9d\x5b\x67\x08\x61\xcb\xc4\x13\x31\x14\x58\x3d\x4b\x05\x2d\xb9\x99\x16\x62\x19\x28\x88\xb5\xa3\x5d\xa1\x11\x11\xf9\x35\xec\x5d\x9d\x31\x63\xf1\xbd\x3d\x3b\x5e\x5c\xf2\xf4\x39\x1a\x71\xbd\x52\x07\x79\x5f\xbf\x4a\xec\x7f\xfd\x7a\x7b\xab\xbf\xe6\x04\xf1\x8f\xe6\x83\xc8\xfc\x48\xb7\xaa\x40\x48\x15\x46\xcb\x66\xdd\xdb\x13\x06\xc1\xee\x78\xcc\xcb\xd1\xfb\x59\x00\x69\xa1\xeb\x39\x55\x81\x7a\xd6\x6c\xc1\xb8\x85\x42\x3e\x45\xd4\x3a\x43\x96\xe8\x6d\x11\x9a\xc2\x37\xb0\xc4\xf7\xb0\x1f\x99\x19\xdc\x1d\x94\x50\x92\x09\x25\x55\x45\x20\x1c\xbe\xb7\x97\x26\xb3\x1b\xc1\xe5\x38\x5d\x08\x1a\x1a\xe9\x5d\x86\x32\x81\x99\x83\x74\x20\x66\x3e\x48\x73\xb5\x72\x01\xdf\xdb\x73\xf4\x1c\x2c\x83\xb0\xe7\xa5\x4f\x25\x6e\x46\x29\x74\x8f\xb9\xbb\x92\x3b\xc5\xe8\xd4\x00\x3a\x08\x9c\xdc\x5c\xa0\xa5\x3a\x85\x86\xfc\x2d\x47\xb3\xcf\x92\x7b\x01\xb5\xc4\xb4\x0b\x29\x7b\x2e\x6a\x21\xb3\xb3\x04\x9e\x84\x4a\x2c\xe3\x28\xde\xe8\xd7\x09\xe8\xb9\x10\xfd\x09\xe2\xa9\xf0\xd7\x57\x88\xf9\x34\x9c\x73\x42\xc5\x68\xb2\xd4\x86\x8a\x63\x19\x8f\xc7\x3a\xee\x90\x8d\xcb\xa9\x84\xc7\x81\x97\x7a\x01\xec\xb9\xea\x3a\x42\x0e\x93\x2b\x5b\x09\xc2\x88\x99\x49\xe4\xc6\xd1\x91\xf2\x99\x0e\x00\x8e\xc4\xb8\x66\xa4\x38\x86\x86\x3c\x27\xea\xdc\x8d\xba\x23\xf5\x70\xe5\xa4\xbe\x75\x0b\x1a\x4e\x21\x00\x14\xb1\x2b\x9d\x9c\x15\x05\xf4\x0c\x54\x8f\xc6\xf6\x1f\xbd\x10\x07\xe8\x7a\x24\xb4\xef\x01\x3a\xec\x71\x77\xb5\x3a\x75\x01\x12\x5c\xaa\x46\x75\x8b\x4a\x0e\x46\xb8\x72\xe6\xd7\x99\x5d\x57\x61\xc0\xa7\xa3\xc1\xe0\x71\x1f\x28\x8b\x7a\xf4\xb8\xdf\x4f\x8c\x31\x96\x36\xc6\x10\x57\x90\xb8\x40\xdb\x76\xca\xd1\x9c\x77\x18\xa7\x1c\x9a\x6d\x0f\x60\xa5\xb6\x30\xce\x1d\xa1\xe7\x38\xe6\xaf\x64\xc1\xd0\xeb\x4b\xc1\x7e\xdd\xf0\x3c\xfb\x4e\x3d\x8e\x8b\x4a\xfa\x0b\x4a\x11\xe6\xc7\xca\xc5\xa1\xbe\x3c\xdf\x2d\x06\xda\x28\x28\xca\x0e\x3c\xf5\x1b\xb1\x9b\x2a\xdf\x29\xd7\x43\x5c\x37\xcc\x0b\x10\x87\x61\xb4\xb7\x67\xfe\xf2\xe4\x77\x74\x53\xef\xbc\xe4\x20\xd5\x4d\x1f\x0e\x87\x78\xe2\xcd\x17\x6c\xea\xe4\xba\xee\x88\xc1\xd3\x89\x91\xa9\xf6\xb2\xc5\x87\xf3\x7c\x97\x1f\x7a\x83\xdd\xf1\x18\xef\xed\xe5\xdb\xeb\x04\x5a\x0c\x06\xee\xaa\x78\x7e\x9d\x34\x1c\xeb\xdc\x8e\x13\xdb\x47\x51\xd4\x53\x9a\x90\x7d\x2a\xab\x9f\x2d\x0a\xb6\xa0\x24\x1f\xdb\x05\x8f\xfb\x7a\x20\x15\x56\x4c\xd3\xe2\x11\x79\x14\xb1\xf0\x0f\xe4\xdc\xa8\x95\x8e\x6e\x14\xd1\xa5\x9d\x44\xff\x29\x9e\x18\x0a\x2c\x7a\x8f\x84\xf2\x28\x8b\x29\x49\x02\x2c\x18\xc4\xaa\x5f\xc6\x0e\x56\x1b\xea\x46\x8f\x58\x34\x83\x65\x07\x99\x7f\x7f\x15\x46\xd1\x27\x84\x03\x44\xd7\x39\xf5\x40\xdc\xb1\xa7\x90\xa9\x28\x11\x66\x97\x9e\xab\x6b\x37\xa0\xdd\x2a\x8a\xac\x76\x4e\x8d\x19\x18\x04\x92\xe2\xdf\x89\x29\x30\xa2\x8e\xad\x30\x6c\x67\xbe\x41\xf6\x8b\x38\xee\x4a\x82\x5a\x1d\x8f\xa6\x07\x57\x5e\xb9\x36\xe3\xaf\x80\x7a\x5c\x52\xba\xe8\x24\x8e\x8b\x21\x4e\xe8\xd8\xff\x76\x45\xe1\x5c\x48\xde\xbf\x59\xe7\x84\xc8\x0a\x4b\xae\x7b\xd2\x3f\x05\x38\xdf\x72\x06\x43\x6c\xfd\xcd\x12\xe6\xa7\x6a\xb2\x83\x85\x8c\x49\x70\xad\x3f\xf5\xaf\x90\x4f\xbd\x19\xbc\x76\xfa\x40\x50\xe6\xfb\x85\xf8\xc2\xc9\x66\x50\xcd\x7a\xd2\xdd\x18\x22\xcc\xb5\x13\x72\x38\x78\xe6\xba\xae\x5b\x43\xe0\x58\x77\x50\x04\x19\x93\xb5\xaa\xd2\x26\x98\x79\x5c\xd5\x4c\x3d\xfa\x2c\xcf\x3c\x3f\x12\x16\x2a\x2c\xba\x2b\xf0\x55\x5a\x18\x9f\x62\x03\xa3\xf0\x89\x43\xa6\x3f\x02\x0a\x6e\x6f\xb3\x4f\x42\x3c\xb9\xbd\x75\x0c\x11\xfd\x14\x85\xb3\x19\xa2\x43\xc7\x55\x55\xaf\xa8\xd0\xe7\x02\xf1\x2d\x47\xd9\xb8\x68\xb9\x93\xd3\x0e\x67\x79\x2c\x5f\x9e\x52\xa0\x1d\xbf\x98\x04\x48\x48\x09\x8f\x93\x77\xe4\x0a\xd1\x97\x90\x21\xc7\xd5\x85\x76\x43\x3c\x5f\x70\x5b\x95\x47\x8d\xe0\x19\x8a\xf4\xdf\x50\xff\xab\x03\x1c\x74\xee\xc1\x4a\x7d\xf3\xac\x82\xc6\xe9\x32\xf1\x93\xf8\x11\x61\x88\x71\x61\x92\xa8\xe0\x8e\xd8\x15\xb6\x5a\x39\x36\xa7\x36\x30\xeb\x72\xb3\xaa\xb7\x63\x43\x55\x8c\x2b\xd6\x45\xc4\x67\x4a\x44\x81\x63\x4b\x48\x6d\x70\x73\xb6\x38\x3b\x8b\x10\x93\x7a\x94\x8c\xe7\x31\x5a\xd5\x65\x88\xae\x34\x4b\x59\xb9\x3b\xdc\x0b\x42\x36\x17\x6b\x50\xfd\xb1\xbb\x6a\xe3\x3d\xe6\x64\x46\x26\x14\xce\xa7\xcb\x9e\xfc\x67\xe3\x27\x1b\x25\xe9\x08\x83\x27\xfd\xbf\xa0\x15\xc0\x39\xc4\x1a\xa4\xfe\xad\xff\x5c\xe6\x5e\xbc\xc5\xdc\xe1\x7f\x41\xee\xfe\xa0\xdf\x1f\xf5\x5b\x44\x7c\xdd\xc8\x3d\x7b\x70\xf0\x04\x24\x50\x8d\xfa\x60\x06\xaf\x47\xbd\x23\xf3\xbf\xb5\x63\xa9\x42\xea\x47\x68\x7c\xc2\x9d\x81\x0b\xb8\xe3\x0d\x1f\xcb\x7f\xd4\x7f\x9f\xca\x7f\x06\xae\xce\xd4\x91\x94\xc5\x44\xdb\x9e\x6e\xd7\xf3\xf4\x3f\xaa\x65\x6f\xe0\x9e\xae\xc0\x2c\x8c\x84\x8d\xe2\x13\x1c\xb0\x02\xeb\x0f\x42\xa5\x04\x08\x93\x7c\x06\xaf\x4b\x7c\xa1\x85\x50\x24\x78\x1d\x1b\x34\x27\xd8\x19\x3e\x16\x96\x14\x76\x1e\xf7\xd5\xbf\x4f\xf5\xef\x41\x5f\x3c\x38\x15\x84\x61\xa6\x28\x4c\x9e\xe0\xaf\x64\x5e\x1d\xdf\xc5\xe3\x02\x89\xa9\xd6\x32\xa0\xcb\x8b\x07\xbe\xbd\x3d\x39\x55\x15\xec\xce\x09\x7d\x0d\xd3\xc1\x4f\x62\x27\xc5\x0d\xff\x96\x71\x16\x4b\x40\xd2\xe7\x44\xfa\x19\x48\x3a\x08\xba\xe6\x1e\xfe\xdb\xc1\x93\xbe\x31\xcf\x4d\x95\x3c\x10\x8d\x0f\x9e\xf4\xf7\xb9\x87\x77\xf0\x18\x1b\x0f\x76\x29\xa9\xf5\xa5\x2b\x9c\x8f\xc7\xb4\x37\xb8\xbd\x95\x9c\x97\x42\x1c\x90\x99\xe3\xfe\x35\x4a\x6a\x5e\xe1\x6c\x9c\x39\x4f\x2c\xf0\x1b\x4a\x64\xbc\xc1\xc1\x93\xfe\x5f\xe8\x7e\xbc\x82\xe5\x70\x94\x2c\x75\xbf\x08\xdb\x5f\x7a\x83\x27\x7d\x20\x18\xd5\x48\xf1\xab\xf8\x53\xa4\xfa\x01\x86\x26\x52\x92\x09\x5b\x48\xfe\xa5\x1d\xd1\x4d\x5b\x7a\x19\xa2\x28\xe8\x1a\xfb\x9c\xea\xb4\x45\x5e\x68\xcc\x85\x90\x2a\x96\x18\xdb\xb8\xbb\xd0\x4c\x14\xb3\x9a\x56\x4b\xda\x87\x7e\x5c\xab\xb6\x2a\xdc\xac\xac\x07\x0a\xc2\x0d\x7c\x86\x1a\x9b\xaa\xfd\xe2\xe5\x52\xca\x9c\x95\xd2\xb2\x91\x47\xee\xa9\x11\xb4\x66\x20\x44\xb5\xbe\xc9\x23\xd7\xba\x97\x6a\xf1\xbf\x2b\x65\xbe\x05\x4d\x29\x97\x87\x18\x2f\x44\x2c\xa3\xe3\xa4\x8c\x49\x86\xb8\x54\x15\x78\x52\xc5\xd4\x0b\x39\x9a\x81\x6c\x2d\xaf\x44\x87\x4a\xa9\x53\xe9\xaa\xb5\x8e\xce\xc6\xbe\x11\x9d\x47\xd9\x09\x56\x59\x95\xab\x78\xca\x1e\x5f\x72\x20\x55\x9b\xdb\x5b\xed\xf0\xff\xb4\x88\x84\xbc\xd2\x0e\xa1\x95\x49\x99\xe4\x9e\x78\xad\x35\xb0\xe3\xe5\x1c\xd9\x39\xdb\x33\x99\x19\xa8\xb6\x40\x1b\xb7\xe9\xbc\x49\x3d\x7a\xc1\x6c\x15\xeb\xf7\xf4\xcc\xa6\x5b\x9d\xea\x53\xa4\x71\x69\x60\x36\x84\x83\xaa\x38\x33\x29\x4b\x64\xb4\x70\x21\xad\x7b\xe1\x9f\x87\x54\x56\xac\x56\xac\x2d\xda\x0c\x79\x37\x93\x4d\x2a\x98\x4e\x6a\x98\xaa\x22\xd4\xe8\x46\x5e\xe4\x70\x03\xd9\xc8\x16\x7f\xd9\x2b\xc0\xd4\x2f\x13\xa7\x43\xd1\x3c\x82\xbe\xf2\xc7\xc9\x5b\x1f\xde\xc8\x17\x45\x65\x40\x20\xb8\xec\x2c\xb6\x10\xa3\x21\xdb\xc5\x1a\x88\x2d\x15\x17\x0c\x27\xd2\x1e\x13\x18\x93\xf6\x87\x7d\x9a\x93\xa6\xb1\x2c\x95\x5a\xd3\xc8\xd1\xd5\x70\xed\x17\x51\x64\xe7\xad\x01\xd7\x7d\x64\x5b\x8e\xfd\x28\x4b\xeb\x65\xb2\x5d\x8f\x92\x91\xbd\xe6\x54\x77\x84\xb4\x56\xf0\xe3\xd2\x51\xf4\x08\xb8\xab\xf9\xc1\x4a\x0e\xe2\x7a\xca\xc9\xe5\xb8\x8f\x6c\xd7\x10\xb4\x96\x43\xaa\xeb\x28\x3b\xa9\x76\x65\x78\x0c\xd0\x71\xec\xf3\xc3\xcf\x6d\x7b\x84\x41\x34\xe6\xea\x36\x10\x96\xbc\x8a\xc4\xab\x48\xa3\x4a\x7a\x36\x32\x2b\x95\xb1\xee\x6e\xd6\x82\x89\x1d\x23\x34\x67\xd9\xec\xed\x29\x9c\xb1\xdb\xdb\xcc\x20\x12\x32\x57\xbc\x48\xef\x66\x86\x70\xf0\x32\x77\x15\x48\x2a\x2b\xc4\xb1\xf5\x2d\x29\xa8\x2e\xf8\x24\xb3\x87\x2e\x2e\xbb\x89\xb8\x8b\xcb\xef\x44\xc0\x99\x85\xac\x25\xde\x64\xcd\xcc\x3f\xa5\x5b\x7b\xe9\xf6\x4f\x46\xf0\x68\x77\x00\x10\xae\x2b\x0b\x79\xc6\x09\xb4\x5d\x50\x2d\x0a\xf3\xec\x5f\x25\x64\xed\x0e\x32\x1e\xd7\xef\x47\x48\xca\xd2\xdf\x39\x31\xa9\xbc\xf8\x05\x31\x89\xd3\x62\x12\x06\x81\x74\xbc\xc0\xc8\x1e\x15\x33\x29\xe7\x90\x0a\xbb\xf7\x17\xb4\xb4\xf3\xf9\x30\x29\x59\x6a\x8b\xf7\xc0\xb6\x1f\x39\xf6\xbe\xbd\x2b\x4b\x8c\x8f\x6c\xdb\x7d\x84\x4b\x84\xab\x44\x63\x41\xb6\x6a\xe4\xe6\xa7\x97\x8f\x33\x45\x0d\x34\x4c\xe5\xc2\xf9\x37\x05\x6f\x21\xbb\x05\xe7\x6b\xce\x99\x85\xb5\x97\xdf\x17\x97\xfb\x94\x10\xde\xeb\xca\x80\x74\xfb\x6f\xce\x82\x64\xcd\xb1\xf6\x0a\x88\x8a\x4f\x4a\xe9\x21\xf7\x10\x01\x57\xa3\x5f\xac\xeb\x3a\x21\xd1\x62\x86\xd9\xf8\x64\xf8\x18\x98\xff\x3b\x5d\x55\x86\xbd\x39\x5a\x45\x41\x41\x89\xe3\xbb\x10\xf8\x15\xb7\x75\x8b\xa6\x7e\x49\x27\x04\xec\x90\xc5\x71\x66\xb6\x32\xa7\xbf\xd5\x3a\x7e\xce\xac\x62\x2d\xc5\x42\x45\x59\x76\x51\x2d\x48\xd0\x45\xb5\x90\xa2\x40\x45\xef\x39\x75\xf9\x65\x25\x54\xcd\xa6\xe4\xaa\x9b\x56\xfd\xb0\xd4\x9c\xd1\x96\xeb\x94\xe3\x0a\x61\xd4\x86\xfe\x0b\x89\x0f\xd2\xfd\x8b\x82\x63\x78\x66\x9b\xa0\xc5\x9e\x0a\xae\xb4\xdd\x55\x67\x12\xa8\xfc\xca\x9f\x75\xcd\xb1\xb6\x1f\x3a\xad\x20\x12\xca\x55\xfc\xe5\x8f\xcb\xb7\x33\xf1\xe9\xa4\x63\xaa\x6c\x4d\xa5\x21\x9e\x80\xa6\xc5\x55\x2a\x10\xd5\x88\x39\x2d\xe1\x4c\xa8\xe8\xa8\x18\x3a\x4a\x9f\xf7\x47\x03\x25\x57\xe2\xb0\xd5\x51\x49\x1c\xab\x68\xd7\xd3\x0d\x4d\x3c\xeb\x48\x4f\x43\xcb\xa7\xe9\x55\x8c\x6b\x0d\xe2\x42\x3a\xc6\x39\x18\x47\xdf\xf4\xdb\x4a\x23\x53\x47\xee\x1b\x32\xf4\x7c\xc2\x77\xda\xdd\x89\x3c\x8a\x82\x85\x8f\xd2\x06\x53\x52\x81\x2b\x3e\x78\x42\x29\x49\x8d\x85\x31\xb4\x02\x7d\x77\x05\xe8\xb8\xd4\x03\x40\x3e\xcb\x42\xb3\x8e\xf2\xfc\x2a\xb5\xd3\x9c\xfa\x1f\xfe\x25\x67\x9b\x25\x41\x56\x72\x36\x1f\x85\x51\x1c\x0b\xb6\xcf\x05\xe9\x08\xad\x4d\xc5\x88\x61\x17\x44\xe3\x3e\x60\xe3\xfe\x0f\xd1\x5f\xf1\x0f\x8f\x1e\x45\x80\x3d\x1a\x73\x97\x9e\x44\xa7\x63\xe4\xb1\xc5\x19\xe3\xd4\x61\x20\x09\x9d\xa0\x2b\x87\x83\x03\x63\xc9\xf5\x06\xee\xa3\x41\xff\x2f\x78\x95\x2e\x3a\x92\x67\xc5\x6a\xf1\xde\x94\xcf\xa2\xcf\xf0\x1c\x39\xea\xdc\x77\x64\xd9\x8f\x90\x0a\xec\x6f\xa3\xda\xa6\x78\xca\x03\xf1\xf0\x6e\xe6\x61\x8e\x87\x03\x4e\x38\x8c\xe4\x39\x60\x41\xe2\xdd\xcc\xe0\xf5\x47\xb5\x63\xc0\x0c\x5e\xff\xa7\xda\x54\xe2\xcf\x97\x7a\xc3\xac\x2a\x4e\x04\x62\xb3\x3f\x19\x41\x9d\x5c\xe8\x31\xd4\x0f\x33\x8a\x7d\x5a\xa0\xc5\x4c\x35\xb8\x47\x34\x93\xd6\x85\x05\x11\x0e\xfa\x47\xd2\xed\x3f\x2d\x5f\x7a\x02\x55\x99\xb8\x8e\x0a\x27\xfc\xa9\xf6\xae\x18\x97\xa2\x19\x0c\xc5\x4a\xd7\x19\xbe\x9e\x9a\x7c\x18\xf9\xce\xe3\xfe\xff\x63\xf5\x2c\xfb\x91\x3a\x66\x20\x0b\x1c\xd4\x2e\x69\x7f\xe8\x0a\x0a\x74\x65\xcc\x7c\x82\xd3\x16\xde\x19\x73\x6a\x51\x18\x5e\x3b\x68\x80\xad\xd8\xbb\xf9\x4a\x7a\x02\xfd\x9d\x36\x38\x81\xf9\xf2\x7a\x02\xf3\xed\x37\x38\x43\x4c\x4e\x62\x0a\xcd\xe9\xcb\x3f\x5f\x9a\x2a\xcb\xa8\x83\x16\x33\xfb\x93\x1e\xb2\x14\x1a\xd0\x12\xa6\x72\xfc\x98\xd0\x5b\x8f\x1f\x23\x48\x8e\x6f\x44\x52\xe5\x04\x31\xb4\xed\x67\x48\x10\xe4\xd6\x9d\x1d\x95\x4b\xb1\x3a\x05\x4e\x39\x3d\xd9\x62\xf6\xe1\x3c\xd1\xa6\x4b\x8a\x5d\x1a\xc6\xb3\xae\x04\x5c\xfb\x42\xbf\x26\xa6\x4d\xb7\xdf\xac\xc9\xe6\x14\x21\x4f\xed\x09\xf7\x6f\xfd\x87\x35\x6a\x84\xc0\xaa\x58\x4a\xbd\x5d\x23\x8b\x7e\x80\x28\x11\x7b\x54\x88\x3d\x0a\x58\x22\x13\x49\xf2\x92\x89\x97\xac\xd6\xae\xf1\x6a\x8d\x9b\xa8\xe8\x37\xcd\x78\x97\x33\xc3\xe9\x0c\x24\xb7\xe6\x7a\x23\x95\xcc\xab\xa3\x86\x6b\x13\x7e\x33\x2d\xb7\xe6\x78\x75\x8a\xa2\xb9\xac\x8e\x7b\xc6\xca\xc0\x9b\x41\xb9\x7b\x55\x9b\x74\xdb\xef\x11\xc0\xea\x31\x25\x74\x2d\xc7\x83\x67\xac\x11\x59\x3e\xe9\x80\x2d\xd1\x78\xcb\xd0\x25\xe1\x6b\x8b\x2f\x9f\xb4\x42\xd8\xb4\x13\xc6\xa6\x5b\x88\xb2\x69\x27\x9c\x4d\x1b\x91\x16\x04\xed\x51\x16\x04\xdb\x86\x30\x01\x5d\x5b\x74\x05\x41\x23\xb2\x70\x29\xb2\x38\x5d\x94\x61\x0b\x6f\x1d\xb6\x70\x07\x6c\xe1\x66\x6c\xcd\xe7\xbd\x4b\x44\xeb\xea\xa6\x97\x54\xe5\x4d\xcb\xbc\xd4\x08\x5a\x0b\xa4\x68\x82\xae\xe7\x05\xcd\x6e\x2d\xbd\x0e\xce\xe7\xbf\xa9\xc1\xc7\xd1\x8e\xd1\x22\x8c\xeb\xfd\xc5\xc7\x8f\x9e\x9e\x3a\x29\x35\x1e\xc5\x76\xea\x9a\xf7\x8e\xc6\x77\x87\x5a\xc8\x9b\x86\x01\xfa\x3c\x85\xcf\xa9\x37\x83\xea\xd0\x46\xcf\xf7\x09\x4d\x5e\x5f\xcf\xdd\x93\xfe\xe9\x48\xb5\xd2\xab\x4c\xb5\x64\x53\x98\x6a\x45\x57\x79\x25\xf5\x67\xf9\x09\x3c\xf5\x25\x9c\xa8\xf1\x3b\xa1\x72\xc2\x96\x51\x5d\x4c\x90\x42\x91\xba\x55\xa7\x2d\x23\x70\x0d\x69\x5b\x1a\x97\xcd\x1b\xc9\x5c\xdd\x85\xd8\x0d\x7b\xb2\xcf\x96\x21\x4f\xc1\xd9\x16\x77\xa2\x75\x23\xea\x58\x58\x9a\xbf\x5a\x2e\x7d\x44\xe3\x2d\x43\x99\x84\xaf\x2d\xc6\x58\x88\xdb\x20\xac\x83\x8a\x23\x5b\x6f\x1f\xca\x3a\xa8\x38\xa2\x75\x23\xd2\x38\xec\x40\x65\xa2\xf1\x96\xa1\x4c\xc2\xd7\x16\x63\x1c\x36\x53\x19\x87\x78\xd8\x09\x63\xc3\x2d\x44\xd9\xb0\x13\xce\x86\x6d\x90\xd6\x61\x6b\xca\xd6\xdb\x87\xb4\x0e\x5b\x53\xb4\x6e\x46\x1a\x39\xab\xf7\x0b\xca\x16\x9b\xaf\x5d\x5c\x95\x30\x5d\x28\x3a\x60\xd4\xb5\x9d\xf0\xdc\xf9\xbc\x9c\x9d\x91\xc8\x0b\x39\xa2\x90\x13\x19\xf0\xa4\x56\x92\x6a\x58\x76\x5e\x73\x72\x0a\xe8\x78\xb7\x0f\xa2\xf1\xee\x20\x3e\x9b\xd9\xe1\x74\x19\x9f\x62\x11\x00\xc7\xe8\x24\x37\xfe\xa9\xe3\xfe\xb0\xeb\xd0\xb1\x43\xc6\xd0\xc3\xe8\x9a\x3b\xae\xeb\x05\x04\x23\x77\x6f\xcf\xc1\x2a\x1b\x92\xe8\x38\x17\xb0\xcb\x6f\x6f\x4d\xd6\x80\xcc\xed\xfe\x41\x4c\xe9\xfe\x90\x24\x13\x45\x62\x09\x6c\x8c\x56\xe7\x21\x86\x51\xb4\x94\xe9\x47\xbb\x74\x6f\x0f\x7a\x6a\xed\xc9\x5f\x8e\x1b\x37\x0a\xcf\x9d\x48\xe7\x89\xb3\xf8\x18\x13\xab\xd8\xc6\x9d\xd2\xfc\xf1\xb7\x58\xc6\xae\x59\x90\x73\x34\x9b\x73\x8b\x13\x4b\x5e\xf5\xb2\xf0\xf9\x82\x22\x0b\x13\xdc\x93\x10\x9e\x45\x49\x7e\xaa\xed\xae\xb2\xb9\xbb\x65\x6a\x6c\xfe\xd0\x90\x8e\x05\x96\x07\x32\x49\xae\xe0\xfa\xdb\x29\x73\x6c\x46\x6e\x45\xd9\x10\x43\x8f\x2a\xa5\x61\x2e\x4f\xf2\x9b\x52\x1e\x4a\xfb\x6c\xd7\x8e\x96\x4b\xff\xa8\xa1\x6d\x39\x6e\xaa\x4f\xd3\xee\xf6\xcf\x68\xa9\x3b\xb3\x94\x23\xca\xc6\xdb\x85\x3e\x05\x5f\xcb\x01\x45\xe3\x46\x84\xa1\x30\x6a\x8f\x30\xd1\x78\xcb\x10\x26\xe1\x6b\x8b\x30\x14\x46\x8d\x08\x4b\x82\x6b\x6b\x22\x6f\xd3\xc1\xb4\x25\x5d\xb7\x0c\x87\x09\xc8\x6d\x11\x19\xc7\x99\x36\x62\x73\x81\x2f\x3a\x5a\xb2\xaa\xcf\xb6\xa1\x50\xc2\xd9\x1a\x7d\x0b\x7c\xd1\x88\xba\xe8\x8f\x83\xf6\x2a\xb3\x6a\xbd\x65\x48\x53\x10\xb6\x45\x9a\x68\xdd\x88\x34\x32\x9b\xc3\x8a\x13\xaf\x1a\x8a\xd3\xbd\xb6\x0c\x7d\x06\xd6\xb6\x08\x54\xed\xdb\xa0\x70\x91\x0f\x57\x6e\x85\xc2\xc5\x26\x82\x96\x1f\x1c\x85\x12\xd6\x0e\x28\x5c\x70\xd4\x8c\x42\xcc\x61\x88\x4b\xf5\xbd\x5a\x1c\xea\x6e\xdb\x86\x44\x03\x6d\x6b\x2c\xaa\x0e\xcd\x68\x6c\x7f\x5a\xb9\x7d\x87\x95\x5d\xce\x2a\x5b\x1c\x55\x76\x3a\xa9\xdc\xc2\x83\xca\x4e\xe7\x94\x6d\x8e\x29\x03\xe4\x77\xdc\x9f\xa2\xc7\x76\x21\x4d\xc2\xd8\x7a\x3c\xbf\x11\x65\xe1\x65\x6b\x12\x13\x6d\xb7\x0c\x59\x02\xba\xb6\xe3\x85\x97\x8d\xc8\xa2\x64\xde\x95\xc0\x44\x97\x2d\x43\x9a\x84\xb2\xed\x80\x94\xcc\x9b\xd0\x86\xf0\x65\x87\xa3\xdd\x0d\x24\x65\x20\x7c\x39\xa6\x7f\xba\xf3\xb6\xc3\x9d\x17\x9f\x9b\xd3\xac\xcb\x6e\xe8\x82\x68\x4c\x4f\xfa\xa7\x80\x8d\xe9\xc9\xe0\xb4\x32\x36\xcf\x52\x95\x2a\x63\xe2\x3e\x89\x4e\x9f\xa7\x7f\x8c\x48\xc3\xc9\x37\x6d\x20\xdf\xdf\xdb\x87\x73\xa0\xdf\x17\x85\x4c\xfc\xef\x7d\xbf\xab\x35\xb7\x1d\x51\xb6\x6e\xdc\xf1\xd7\xa5\x7c\xb2\x54\xaa\x14\x23\x35\xbe\x7b\x84\x5d\xb7\xe7\x8f\xe8\xba\x99\x3d\x5e\xcf\x67\x83\x2e\xe8\x9a\x0d\xb6\x0f\x61\x02\xc2\xf6\x28\x9b\x0d\x9a\x90\x66\x6e\xf9\xec\x1a\x53\x91\xf4\xdb\x2e\x14\x9a\x02\x12\xad\x07\x35\x1d\xda\x21\x72\x2d\x2c\x6e\x25\x0a\x3b\x22\xb0\x19\x7d\x38\x58\x87\x0a\x55\xaf\x6d\x43\x20\x0e\x3a\x51\xa0\x68\xde\x8c\xc0\x6b\x14\xf4\x26\x34\x0c\x4c\x05\xc9\xfa\x52\xf5\x99\x8a\xf2\x1b\x4f\xe0\xad\x3e\x4b\x34\xba\x46\xb6\xca\x83\x50\x4f\xd0\xc9\xe0\xb4\x2a\xd5\x25\x86\x32\x12\x9a\x51\x45\x19\xfe\x6a\x32\xd1\xbd\xb6\x8c\x4c\x0c\xac\x6d\xe9\x44\xb5\x6f\x24\x94\x88\xe4\x2f\x3a\xa9\x11\x93\xaa\xf5\xb6\x21\x4e\x42\xd8\x1a\x6d\x84\x34\xb3\x27\x59\x56\xa8\x87\x65\x55\xd7\xca\xa4\x91\x74\xa3\x8a\xae\x5b\x86\x49\xb9\xf6\xf7\x1a\xea\xb6\x08\x4d\x75\x6a\xc4\xab\x4c\xa8\x6c\x4f\x8d\xaa\xf9\x96\x21\x51\xc3\xd8\x16\x7d\xb2\x79\x13\xe2\xe4\x1d\x36\xdd\x05\x66\xdc\x6d\xbb\x50\x28\x97\xdd\x41\x64\xea\xf6\x8d\x48\x2c\x15\x92\xe5\x16\xe9\x64\xdb\xce\xc0\x26\xed\x87\x9b\x34\x9e\x7c\x4d\xca\x4f\xbd\xaa\x50\xb5\x6d\x87\x5d\x93\x0e\x07\x5d\x93\xe6\x43\xae\x29\x64\x3d\x8c\xae\xbb\x9e\xb5\xc6\xdd\xb6\x0b\x79\x53\xc8\xde\x4b\x60\x5b\x8e\xa9\xdb\xaf\x1a\xa2\xc3\x04\x36\xe6\x14\x5d\x86\x64\xd1\xf5\xb4\x30\xd3\x75\xeb\x90\xf9\x31\x06\xba\x3d\x42\x4d\x9f\x46\xca\xa4\xe8\xbc\xc7\x49\x19\x3e\xf5\xab\x42\xd3\x2d\xc3\x1f\x45\xe7\xc7\xa4\x3d\xea\x64\xf3\x46\xac\x2d\xe7\xe5\x45\x99\x4b\x95\x14\xd5\x7a\xcb\xd0\xa6\x20\x6c\x8b\x35\xd1\xba\x09\x69\xe1\x6c\xd1\x3e\xbc\x4e\x36\xde\x2e\x94\x29\xf8\x5a\x0e\x28\x1a\x37\x22\x0c\x77\x3d\x75\x15\x3d\xb6\x0c\x69\xb8\xfd\xa9\x6b\x88\x1b\x4f\x5d\xe5\xe5\xe0\xac\x2a\x8f\xbf\x0e\x71\xa6\xdf\xb6\xa1\x2f\x86\xb7\x35\x12\x75\x8f\x66\x54\x5e\x92\x8b\xae\xa1\x4d\xba\xd3\xb6\x21\x51\x41\xda\x1a\x83\xa2\x79\x23\xfa\x58\xaf\x32\x35\xb1\x5c\x4b\x8e\x7b\x6c\x19\xf6\xd4\xf1\x6e\x7b\xf4\xa9\xf6\x2d\xf0\xe7\x47\xe1\xfc\x8c\x40\x1a\xf4\xd8\x62\x2e\x30\x88\xca\xd3\x64\xa3\x30\x69\xda\xd4\x7f\xdb\x70\xfb\xd2\xc0\xf0\x39\x41\x41\x6b\x44\x17\x3b\xb7\xc0\xba\x3e\xb5\xec\x40\xb5\xdb\x78\x36\x1b\xb2\xd7\x9d\x4e\x67\x75\xfb\x16\xf8\x13\x1a\xe4\x3d\x5e\x61\xa1\x1d\xe9\xa6\x18\x33\x25\x0b\x5e\x59\x83\x59\xbd\xb4\x5d\xa0\x63\x31\x8b\x55\x8d\x4d\x9e\x4e\xfa\x16\x18\xd3\xcb\x15\x5b\xd5\xe7\xe1\x25\x32\xc5\x93\x32\x90\x3c\xdc\x1d\xb1\x62\xe4\x15\x20\xf8\xcb\xa7\x77\x2f\x55\x75\x66\x05\x2e\x39\x13\x90\xca\xcb\xbf\xe4\x92\xcd\xad\x7a\x5f\x3e\xbd\xcb\xd4\x44\xd2\x37\x53\x69\x24\x38\xd5\xf5\xb3\xcc\x57\xfc\x27\x29\x4f\x8c\xae\x11\x7c\xb2\xcb\x76\x6d\x01\x05\x65\xcb\x01\x45\xe3\x26\xe2\x8f\x20\xe3\x1b\xa5\x7c\x31\xe0\x18\xe7\xef\x9f\xfa\x33\xde\xe8\x3b\x8f\x37\x8a\xd9\x0b\x1e\xf3\x38\x45\xb0\x58\xf2\x56\xd7\x77\xdd\xed\xeb\x02\xaf\x4c\x16\x5d\xb4\xc7\xe6\xaa\x5c\x6a\x0a\xb8\x52\x53\x23\xb4\x37\x70\x57\x0d\x21\x47\xb8\x81\x44\xd1\x39\xef\x71\x1a\xce\x36\x4b\xa7\xe8\x9c\x1f\xd3\x70\xf6\x27\xad\x6e\x3b\xad\x0e\x65\xe9\xda\xd2\x94\x56\xc0\xc6\xb8\x36\x5a\x4e\xd6\x7b\x8d\x8b\xd4\x11\xf7\x79\x64\xe8\x96\x18\x09\x38\x8a\xee\x48\xbe\x64\xd2\x2b\x35\xc9\x4a\x7d\x28\xaa\xf5\x76\x09\xa5\x88\x4c\x5e\xb7\x1e\x50\x34\x6e\x14\x4a\x64\x32\xe8\x77\x41\xd9\xa0\xbf\x7d\x28\x13\x10\xb6\xc7\xd9\xa0\xdf\x06\x69\xed\x03\x0d\x55\xeb\xed\x43\x5a\xfb\x60\x43\xd9\xba\x05\xd2\xda\xe7\x20\xca\xc6\x5b\x87\xb2\xf6\x19\x88\xa2\x71\x23\xc2\x3a\x9c\xb6\x46\xdb\xe6\x99\xeb\x30\x5c\x73\xe5\xce\xa8\xcb\x69\x6b\xb4\x75\xa7\xad\x51\x87\xd3\xd6\xa8\xf9\xb4\x75\x06\xd7\x08\x84\xd0\x9d\xb6\x0b\x71\x33\xd8\x25\x08\x42\xb6\x6e\x81\xbc\xee\x98\xdb\x3e\xb4\x75\x41\x5a\x33\xca\xae\x5b\xf3\x7d\xd1\x76\xdb\x90\x75\xdd\x01\x59\xd7\x8d\xc8\xea\x50\x73\x6e\xb6\x75\x3e\x95\x59\x07\x97\xca\xac\xd9\xa3\x32\x5b\x33\x86\x37\xe9\xf7\x5d\x44\xf2\x36\xf9\xdb\x66\xa4\x7d\xc4\x9f\x68\xbb\x65\x34\x41\xda\xfb\xec\x67\xa4\xd1\x45\x3f\x5b\x94\xeb\x4d\xe5\xd8\x5a\x6c\x9d\xe2\x34\xeb\x32\xe0\xac\x45\xd9\xf3\x35\x02\xaf\xb6\x30\xe8\x0a\x77\x89\xb8\xc2\x26\xdc\xaa\x0e\x6d\x84\xf7\xba\x64\xe8\xa9\xf6\xdb\x77\x12\x84\x09\x7f\xfd\x7b\x7b\xcc\x89\xd6\x2d\x50\xd7\x09\x6f\xdb\x87\xb1\x2e\xf8\x6a\x8a\xeb\x53\xd7\x29\xf4\x60\xd7\x4d\x9a\xf4\xdb\x2e\xf4\xa9\x75\xbf\x68\x3f\xa8\xe9\xd0\x44\x76\x64\xce\xd5\x45\xa3\x1d\xf1\x68\xba\x6d\x19\x1a\x63\x68\xdb\xa2\x51\x77\x68\x44\x63\x69\x3e\x47\xf9\xe6\xdd\xba\x54\x98\x0e\x79\x30\xcd\x49\x30\x73\x44\x7d\x84\x39\x9c\xa0\x9e\xbe\x43\xa7\x9b\x9a\x5a\xec\xff\x5d\xa8\xab\x32\xf1\x0c\xa0\x93\x61\xa3\xe2\x3a\x0f\xe7\xa8\xa7\x2e\x5c\xec\xb8\xe9\xd2\x3d\xbf\x47\x0a\x6a\x04\x7b\x0d\x78\xbf\x4b\x40\xab\xc7\x54\x50\xb6\x1c\x50\x34\x6e\x44\x5b\xb4\xa0\x30\x0a\xff\x40\xbd\x2b\x42\x4b\x2d\x9e\xb8\x45\xb1\xcf\x7d\xef\x8c\x18\x27\x2d\x61\x28\x5b\x7e\x88\xcf\xc5\x16\x27\x74\x3f\x0a\xcf\xee\x17\x84\xe4\x13\xd6\xae\x36\x7f\xef\x59\x8d\xa9\x24\xda\x6e\x19\x81\x0a\xe8\xda\xd2\x27\xb9\x6a\x24\xcf\xf5\x72\x2b\xb6\x34\xaf\x62\xde\x35\xa9\x62\xde\x32\xa3\xe2\xf7\x05\x5a\x74\xe5\x8e\xaa\xcf\x76\x21\x50\xc3\xd9\x72\x44\xd9\xba\x09\x75\x14\xe2\x80\xcc\x5a\xef\x58\xdd\x7c\xbb\xd0\x66\x60\x6c\x39\xa4\x6a\xde\x02\x71\x93\xae\x34\xa7\xfa\x6c\x1d\xf2\x26\xed\x69\x4e\xb6\x6e\x44\x9d\xbc\xbd\xb6\x2b\xee\x54\xa7\x2d\x43\x9e\x86\xb4\x2d\xf6\x64\xf3\x66\xf4\x49\x23\xbc\xf3\x71\x5b\xd2\x6f\xdb\x90\x28\x5e\x74\x38\x74\x33\x1d\x9a\x11\x39\x47\x9d\x5d\x20\xba\xd3\xb6\xa1\x50\x41\xda\x1a\x81\xa2\x79\x33\xfa\x2e\x11\x65\xdd\xf7\xb1\xea\xb5\x6d\x08\xd4\xb0\xb6\xc6\xa0\x6c\xdf\x88\xc2\x70\x32\xbd\x87\xe0\x48\x39\xec\x9f\xd1\x91\xff\x5b\xa3\x23\x01\x1c\x47\xe6\x22\x7f\x13\x07\x69\x22\x26\xd3\xd1\x92\xe3\xf1\x18\x26\x11\x93\x7d\x00\xef\x1c\x2c\xd9\xad\x92\xc8\x36\x16\x12\xe9\x56\x47\xa4\x55\x19\x11\x36\x5d\x9c\x9f\x47\x5d\xf9\xa8\xe9\xb5\x5d\xe8\x8b\x61\x6d\x39\xa6\x6e\xdf\x88\xc2\x70\xd2\x3e\xc4\x41\x36\xde\x32\xb4\x49\xf8\xda\xe2\x2c\x9c\x34\x46\x39\x74\xb9\x86\x70\xfb\x6e\x21\xec\x72\x09\x61\x8b\x3b\x08\x59\x88\x27\x8b\x08\xd2\x4e\x2e\xb8\x74\xa7\x07\x77\xc2\xb1\x28\xec\x6c\x60\xa9\x3e\x5b\xf6\xa1\x15\x9c\x6d\x3f\xb5\x68\xdd\xf8\xb1\xa3\xc5\x24\x3c\x5f\x6e\x54\x1f\xd3\x63\xfe\xa9\x8d\x6d\xbb\x36\x26\xf3\xaa\x4c\x02\x67\x2e\xb9\xca\x15\x66\x53\x04\x7d\xe4\xec\x5b\xfb\x13\x60\xf7\x6c\xd7\xe3\xe4\x1d\xb9\x42\xf4\x25\x64\xc8\x71\xef\xa6\x5a\x31\x42\xd7\xb0\xf9\x4d\xaf\x2d\xdb\xd6\x84\x76\xb1\xf7\x55\xf3\xc6\x8d\x3d\x8f\xc2\xcd\xe6\x4a\xca\x11\xff\xdc\xd4\xdb\xbe\xa9\x2b\x4c\xac\x93\xd3\x2a\x13\x0b\xa4\x32\xd0\x22\x45\x05\x0e\xb9\xeb\xf6\xfe\xbd\xc3\xcd\x81\xb2\xf1\x96\x6d\xe9\xdf\x3b\xdc\x1c\x28\x1a\x37\x6e\xe7\xc5\x59\x7b\x7c\x2d\xee\x7e\xa3\xea\x03\xa3\x4b\x40\xd7\x16\x5b\x8b\xb3\x26\x64\x71\xd8\xb9\xac\x8c\xec\xb2\x5d\x48\x53\x50\xb6\x1c\x50\x34\x6e\x0a\x93\xeb\x72\x8d\xf6\xf6\xdd\xa2\xdd\xe5\x12\xed\x16\x77\x68\x77\xba\x0d\x7a\x0b\x2f\x83\xee\x74\x17\x74\x9b\xab\xa0\x39\x99\x4c\xa2\x35\x63\x99\xb2\x7d\xbf\x47\x44\xb6\x00\x7d\x2d\x98\xbf\x4b\x60\x6b\xa8\x46\x43\xda\x96\x6e\x64\xf3\x46\xf4\xd1\x45\x79\x9d\xba\xf2\xbd\x26\x5b\x6f\x19\xda\x14\x84\x6d\xb1\x26\x5a\x37\x21\x6d\x81\xbb\x6f\x33\xd5\x67\xbb\x50\xa7\xe1\x6c\x39\xa2\x6c\xdd\x84\xba\xab\x90\x4f\x2b\x43\x4c\x2b\x91\x67\x7a\x6d\x17\xfa\x62\x58\x5b\x8e\xa9\xdb\x37\xa1\xf0\xba\x4b\x88\xf3\xf5\xd6\xc5\x38\x5f\x77\x08\x72\xbe\xae\x8e\x72\x0e\x71\xc8\x43\x19\xb8\x48\xd9\x3e\x9c\xcf\x7b\x97\x88\xb2\xaa\x6d\x1b\x85\xbd\x54\x93\x74\xdf\xde\x39\xf4\x39\xa1\xcb\x6e\xd7\xb3\x01\xdc\x1d\xcb\x3b\xea\x8e\x2f\x65\x1d\xc6\xf6\xe3\x0e\x36\x48\xf3\x5e\x7c\xfc\xb8\xb7\xe7\xd0\x71\xe6\x89\x87\xe1\x0c\x81\x28\xf7\x50\x03\x92\xf6\xf6\xde\x88\x86\x23\xfb\xc5\x7c\x6e\xfd\x66\x30\x91\xc0\x39\xca\xde\xf5\x4f\x41\xe4\xae\x9a\xd1\x2a\x77\x2c\x46\x98\xf7\xe6\x94\xcc\x7b\x7c\x39\x47\xa5\xf1\x87\xc9\xdb\x16\xfd\xb7\x8b\x5a\x13\x78\x3a\x54\xa0\x34\x5d\x5a\xd1\xae\xbe\x43\x16\xd1\x5e\x80\xce\x16\x93\x1e\x0c\xe0\xbc\xe2\x6a\x22\x8a\x18\x89\x2e\x11\xdd\x37\x7f\xb0\x7d\x3f\x82\x8c\x85\x7e\xe5\x28\x1b\x3c\x4f\xd0\x14\x56\xb9\xde\x14\xb5\xa5\xd0\x22\xa8\x1e\x8d\x21\x9d\x2c\xc4\x3e\x62\x27\x83\xd3\xdb\xdb\xe4\x57\xff\x74\x07\x79\x14\x4d\x42\xc6\x11\x75\xaa\xc6\x1e\xcd\x60\x88\xed\x14\x01\x03\xa4\xab\xe9\x35\x75\xb1\xc5\x9a\xd9\x1c\xfa\xc8\x06\x36\x9c\xcf\xa3\xd0\x97\x57\xdd\xab\xd7\xee\xaa\xc5\x26\x50\xa8\x0f\x20\x87\x65\x9f\x44\x3c\xdf\x67\x88\x2f\xe6\xbd\x78\x25\x99\x97\xf7\xf0\x05\xd2\x2b\x4a\x21\x3d\x43\xd0\x4d\x40\x49\x30\x7a\x29\x8c\xf4\x26\x11\x39\xcb\x67\x27\x75\xba\xb1\x32\xe5\x34\x6b\xf1\xd9\xc3\x73\x67\x77\xb0\x3b\x4e\x4e\xa9\x3c\x35\xed\x8b\x64\x49\x3f\xc9\x15\x69\xff\x9b\xe8\x60\x2f\xb0\x82\x2b\xb0\x77\x4d\x1d\xb2\xab\x10\x07\xe4\xca\xc5\x63\xf5\xc7\x0e\x8a\x18\xb2\x2a\xda\x2a\x10\x5d\x3c\x56\x7f\xc8\xb6\x37\xd9\xb6\x71\x7d\x33\x86\xa2\x73\xed\x4b\xdd\xc1\x63\xf1\x6b\x25\x19\x38\x88\x9a\x97\xbc\x43\xc7\x85\x7a\x69\xd1\xf3\x48\x17\x46\xfc\x2c\xdf\x78\x6a\xe7\x9e\x2f\x93\xd8\x7e\x6f\x26\xbf\xfe\x47\x8a\xce\xc3\x6b\x17\xe0\x13\x7a\x7a\x7b\xeb\x88\x7f\xc6\x08\x88\x6d\x42\xe6\x08\x3b\x37\x57\x61\x14\xbd\x42\x8c\x53\xb2\x4c\x6f\x34\x59\x47\xf1\x2b\x5b\xcc\x11\x35\x15\x21\xa7\x21\x03\x31\xd2\x05\x4d\x44\x88\x23\x4b\x0c\xb8\x5a\xb9\xee\x6a\xb5\x06\x29\x26\x54\x34\xc6\x25\x94\x59\x4d\x56\x29\x42\xc5\x2d\x08\xf4\x3c\x82\x6c\xda\x9b\x21\xc6\xe0\x24\x2f\x74\xee\xfb\x1e\xd5\x14\x8c\x44\x5f\xa7\xaa\xbe\x5c\x80\xe6\x14\xf9\x90\x23\x40\xf5\x13\xf1\x09\x27\xf8\xf6\x56\xfd\x9a\x21\x3a\x11\xc2\xda\x3e\x49\xdd\x32\x24\x00\x39\xb5\xde\x2c\xa4\xd3\x59\x0b\x6e\x66\x91\x73\x2b\xd7\xc6\x12\xdf\xd5\xc2\xc4\x8a\x08\x9e\x20\x6a\x29\x06\x67\xf1\x29\xb2\x74\xc9\x50\x0b\x2e\x38\x99\x41\x1e\xfa\x30\x8a\x96\x9e\xf5\x16\x33\x8e\x60\x00\xac\x25\x59\x58\x6c\x4a\x16\x51\x60\xa1\x6b\x81\xfa\x90\x47\x4b\x33\x40\xc8\xad\x10\x73\x22\x1a\x51\xeb\x13\x59\x70\x04\xac\x97\x04\x73\x4a\xa2\x08\x51\x8b\x50\xeb\xa5\x11\xd3\x96\xd0\x50\xad\xff\x53\x56\xae\xf4\xff\x78\x36\x60\xe3\x1b\x1e\xce\x10\x59\xf0\xd1\x01\x3a\x00\xaa\xc8\x29\x0a\x8e\xf5\xb3\x3e\x98\xd3\x90\xd0\x90\x2f\x47\x83\x7e\x1f\x30\x1e\xfa\x17\xcb\xd1\xee\x00\xb0\x29\xb9\xfa\x48\xc9\x84\x22\xc6\xc4\x6f\xb1\x23\x46\x76\x88\xcf\x89\x2d\xff\x66\xa3\x13\x9b\x2d\x7c\x1f\x31\xf1\x75\xd5\x73\xfb\x0a\x52\x2c\x36\x10\xb0\x03\x28\xf0\x21\xf8\x77\x84\x28\xb7\x81\xcd\x90\x4f\x70\x00\xe9\xd2\x3e\x05\x6a\x95\x21\xc1\x6f\xa4\x1e\x17\xca\xc1\x64\xc1\x51\x45\x28\x1a\x4c\x1b\xd8\x97\x21\xba\xb2\xd5\x45\xf9\x12\x58\xfb\x14\xcc\x29\xba\x44\x98\xbf\x5a\x28\x72\x45\x62\x75\xab\xc4\xf9\x4f\x5a\xf0\x31\x40\xc6\xc9\x06\xbe\xbd\xbd\x59\xb9\x9e\xfc\x9a\xbf\x2a\xca\x7d\xa5\x5e\x30\x00\xc7\x0e\xb9\xbd\x3d\x39\x75\xbd\xe2\x8a\x41\x38\xa6\x0e\x03\xc4\x05\x8b\xf1\xae\x03\xf7\xf6\xa0\xa9\x48\x97\x17\x8e\xe7\xe1\x64\x94\xdf\x19\x21\xb8\x51\xa7\x17\x3c\x84\x1c\x09\x08\xd2\xe2\x51\x7f\xbe\x42\x2f\xbb\x6c\x95\x0a\x65\x25\x93\xb8\x00\x3b\x11\x58\x80\x9b\x30\x18\xd9\x39\xba\x4d\x76\x45\x2f\x06\x4d\x6b\xd5\xa1\x98\x69\x81\x79\x18\x8d\xec\xa1\xd7\xf7\xfa\xf6\xca\x05\x61\x09\x06\xbc\x73\x42\x5f\x43\x7f\x9a\x64\x00\x72\xf7\x26\x06\x82\x67\x57\xcb\x24\x09\x94\x82\xe5\xae\xd2\x67\x2b\x9a\x29\x15\x10\x96\x70\x22\x52\xc5\x89\xd4\x69\x50\xaf\xab\x22\x90\xb4\xef\x31\x4e\x28\xea\xe9\x75\x7e\x47\x4a\x40\x35\x64\x6d\x2e\x1b\xd9\xd4\x25\x23\x15\xe0\xc4\x4b\x28\xd3\x25\x55\x55\xe3\x32\x59\xfd\x06\x32\xfe\x23\x21\xf1\x39\x67\xdc\x05\x9b\x9b\x95\xed\x17\xf6\x78\x3c\xc6\x1e\x87\x74\x82\xb8\xc7\xe1\xe4\x3d\x9c\xa1\xe7\xe6\x41\x7e\x12\xe4\xf9\x11\x61\x88\xf1\xf8\xd8\xd5\x3c\x70\x6c\x68\xbb\x3b\xe7\x84\x3a\x68\x8c\xbc\x39\xa4\x08\xf3\xd7\x11\x12\xec\xe0\x07\xb4\xb7\x67\xbf\xb0\x77\xc7\x63\x64\x26\xf8\xc1\x2d\xb4\x32\xa7\x81\x68\xe5\x98\xd9\xdd\x1d\xba\xb7\x97\x4b\x74\x05\x18\x50\xd7\x9b\xc1\xe5\x19\xfa\x19\xe2\x20\x42\x8e\xbb\xda\x09\x88\x2f\x19\x8f\x77\x46\x82\xa5\x07\x83\xe0\xb5\x60\x5f\xef\x04\x7f\xc0\x92\x43\x44\xa1\x7f\x61\x03\x69\x17\x36\x68\x0b\x7a\x15\xd9\x11\x29\x9a\x91\x4b\x54\x39\x68\xa3\x86\x21\xec\x9d\x0a\x95\x7a\x16\x5e\x87\x98\xed\x43\x3f\x92\xce\x1e\xed\x8e\xae\x14\xec\xba\xb9\x6c\x7a\x8e\x50\x70\x06\xfd\x8b\xcd\xe7\x58\xfe\x2a\x66\xf1\x7c\x8a\x20\x47\x09\x17\x07\x37\x0c\x71\x1e\xe2\x09\xab\x28\xdc\x6d\x5e\xdb\x2e\xd0\x60\x8c\x6e\xd4\x20\xc5\x12\xde\xb2\x72\xf7\x8e\x1a\x67\x82\xb8\xc2\x98\x1d\x83\xe4\x7a\xe8\x1a\xf9\x0b\x8e\x9c\xe2\xb7\x49\x75\x92\x61\xf9\xc4\x76\xbd\xb9\xd0\x1f\x18\x77\x90\xeb\xf1\x29\xc2\x25\xbd\xb8\xc7\x29\xc4\x2c\x14\x4f\x8f\x89\x63\x07\xbe\x07\xfd\x48\xb1\x46\x60\xff\x43\x28\x01\x2f\x5e\xbe\xb3\x38\xb9\x40\xd8\x9a\x42\x66\x9d\x21\x84\x2d\x18\x04\x28\xf0\x6c\x60\x1f\x4f\x11\x45\xd6\x15\x64\x16\xc4\x16\xa2\x94\x50\xf1\x2e\xc4\x13\xa5\x3f\xc4\x5d\x3d\xdb\x5d\x81\xc5\x3c\xd8\x42\xa0\x05\x70\x0c\x5e\x56\xc2\xcb\xe0\x65\x05\xbc\x4a\x81\xbe\x77\x78\xd5\x36\x2c\x03\x57\x17\x65\x96\xd1\xc2\x1c\x09\x0e\xa3\xab\x33\x6b\x80\x55\xc4\xb6\x3d\x4a\x25\x17\x9c\x53\xc4\xa6\x8e\x3c\xba\x14\xc4\x3d\x6a\xc4\x58\x15\xca\x14\xf0\x55\x48\x93\x6f\x2b\xd0\xe6\x0b\x89\x13\x15\x6c\x95\xaa\x05\x80\x05\xbb\x47\x1c\x27\x9b\x37\xa6\xab\x1b\xb9\xd4\x51\xd2\x0c\x01\xfb\xed\x2b\x41\x3c\x85\x0f\x50\x82\x36\xcd\x16\x0c\xb1\xbd\x27\x57\xd6\x82\x09\x4c\x08\x8e\x1e\x23\xa2\x1c\x6b\xaa\x21\x9f\x42\x9e\x6a\x29\x30\x16\x11\x7c\xff\x74\x26\x67\xf9\xde\xc8\x4c\x2e\xaa\x8a\xca\xc4\xcb\x72\x22\xab\x72\xb5\x69\x41\x22\x85\x58\x8f\x2c\x38\x0b\x03\xb4\xb9\xc8\xae\x7c\x3c\x17\x72\x6f\x9c\xb2\xc0\xab\x5d\xae\x45\xfd\xed\xed\x6e\x2c\x72\xb5\xbf\x88\x39\xe6\xa5\x0b\xe8\x18\x8d\xc7\xe3\xa4\x31\x2a\x69\xa4\x15\x88\x5d\xbc\xb7\xb7\x4b\x57\xae\x93\x27\x07\xa4\xf4\x0c\xdb\x05\xc8\xdd\xdb\x93\x3b\x8d\xe0\xb3\x68\x41\x1d\xe4\xae\x76\x6a\x45\xe0\x8d\x50\xbb\xba\xf9\x14\x64\x8b\xa9\xd4\x50\xe8\x98\x7b\x67\x21\x0e\x64\x1b\x79\x25\x84\xaf\xee\x83\x48\x0d\x28\x9e\x8a\xb5\x64\x9f\x05\x61\xf0\x16\x33\x44\x8d\x8e\x54\xf4\x1f\x4a\xc2\x6f\x5e\x8d\x82\x89\x2e\xb0\x0a\x53\x93\xaf\x53\x63\xc5\xa8\xaf\x54\x9d\x90\x81\x45\x6e\xe6\x94\xee\x54\xb2\xb2\x16\x0e\x17\x33\x5f\x9d\x62\x95\xc6\xa0\xdb\x40\xc6\x17\x97\xdf\x4e\x7b\xda\xc9\xe9\xd6\x05\xdb\x58\x1b\xad\x7f\xeb\xef\xed\xa9\xb3\x8d\xdd\xf1\x38\x6d\x2a\x3f\x4f\xff\x18\xd9\xfb\x36\xe0\x19\xc3\x5a\x13\xb6\xbd\x2f\x54\x75\xf4\x9c\x4b\x6e\x71\x71\xa9\x99\x8d\x3b\x8a\x1f\x9c\x93\x28\x10\x26\x7d\x23\x3d\xa7\x54\xba\x6a\x45\xcd\xec\x52\xba\x11\xee\x4a\x3b\x68\x2d\xd8\xc9\x70\xe5\x5f\xd0\xd2\x76\x01\xcd\x70\x4c\xb5\xa1\xa8\x9b\x52\x64\x2e\xd0\xb2\xbb\xde\x76\x81\x96\xe5\x1a\xdb\x56\x43\xdf\x56\x8b\x33\xd0\x17\xf4\xb7\xfb\x82\xbe\x51\x83\xa3\x65\xa2\x35\x21\xed\x51\xea\x51\x56\xd6\xd2\x6a\x59\xdb\x09\xa1\x59\x8c\x76\xd5\xef\x0c\x42\xf3\x9a\x9d\x44\x68\xdd\x72\x0a\x8a\x5f\x4a\x62\xb8\x2b\x10\xaa\x90\x5d\xc8\xd1\x67\xc4\x58\x48\x70\x85\x0e\xe4\x25\x9e\x3d\x60\x9c\xb3\xc9\x67\x63\xaa\xef\x27\xf9\x2d\xd6\xfb\xa8\xb8\xe6\x13\x2a\xb6\x97\x01\x2e\xe4\x68\x16\x4f\xc5\x94\x06\xa9\x21\xb0\x01\x5e\x44\x51\xec\x7c\x47\x9e\x7e\x0e\x92\xc6\x3c\x5e\xb2\x6e\x2c\x3f\xce\xb1\x74\xfc\xca\xc7\xf2\x53\x24\xb8\xa9\xfa\x46\x71\x0b\xa5\x54\xc6\xdd\x5b\xe8\x47\x59\x51\x71\x7f\xf7\x63\x65\xd5\x0d\x33\x61\x85\x9d\x9d\x7c\x29\xd0\x5d\x31\x49\xa1\x37\xfb\xd9\xc1\x8d\xfe\xec\xa3\x66\xca\x48\xeb\x33\x4d\xb2\x59\xa1\x30\x8c\x38\x92\x07\x3f\x9b\xd6\x31\x75\x37\x73\xe0\x90\x1e\x31\xb9\xd6\x6b\xf0\x03\xff\x6b\x5e\x1e\xcb\xcb\xbc\xb4\x1e\x9a\x88\x5b\x7e\xba\x63\xba\xc9\xfc\x01\xec\xea\x09\xe6\x94\x70\xc2\x97\x73\xa1\x09\xb1\x0f\x57\xd8\xac\xd0\xf3\x61\x14\x39\x18\x50\x77\x6f\xcf\x41\x27\xf4\x74\x8c\x4f\xe8\xa9\xbb\x8a\xdd\x59\x79\xfd\x20\xde\xb0\x48\xc5\x30\xe0\xb1\x6d\x9b\x5b\x85\x90\x27\x66\xd0\x9c\x8f\xc2\x20\x24\x9a\xe5\x31\x04\xa9\x3f\xd5\x3f\x38\xba\xe6\xf6\x08\x8f\x91\xca\x2d\x58\x95\x64\x36\x00\x9c\xf8\x00\x04\x18\xe8\x79\x15\x7a\xb9\xc1\x29\x06\xd9\x63\x7c\xe5\xf1\x5e\xc4\xbf\xaf\x68\xc8\xf5\xdf\x2b\x77\x84\x4e\xf8\xe9\x18\x03\xb4\x72\x6e\x56\x72\xba\x26\x15\x5a\x51\x00\x1b\xdd\xac\x80\xfa\x13\x05\x9a\xd0\xf4\x0d\x67\x81\x23\xd9\x85\xf4\xc1\xab\xb6\x99\xeb\xd0\x12\x7d\x17\xf0\x02\x67\x33\x1d\x8c\x11\x60\xe5\x1b\xa8\x91\x5d\x4f\x35\x74\xd2\x8e\xd0\xd8\x93\xa9\xdf\x61\xc0\x55\x01\x3d\x86\xb8\xc6\x53\x88\xd8\x1d\x55\xef\x64\x25\xbf\x2f\x10\x5d\x7e\x84\x14\xaa\xf5\x94\xf8\xf7\xd3\x27\x6b\xda\xea\x4e\xe0\xd3\x9f\xf1\x02\x2d\x99\xc3\xcb\xfb\x27\x3b\x1c\x03\x0e\xd2\xe3\x70\xa1\x31\x80\x0c\x37\x8e\x51\x8d\x25\x77\x8d\xd5\x41\xf5\xbc\x20\x66\x94\x42\x00\xa2\x31\x16\xb4\xaa\x0d\xaf\xf4\x9a\xa2\x92\x35\xa1\xf4\x9a\x28\x40\xc0\xb6\x77\xc7\xd1\x09\x3a\x7d\x2e\xfe\x33\xd2\xac\xbd\xc8\x99\xcc\xd2\xb8\xa4\xb1\xf8\xa6\xbf\x18\x19\x20\x72\xdb\x31\xf0\x29\x82\x51\x15\x13\xaa\xb4\x0f\x92\xc6\xa9\x16\x0b\x1e\x46\x6c\x7f\xe1\x9f\x87\x94\x71\x1b\xd8\x6a\xc7\xe4\x8b\x90\x4a\x27\x75\x77\x86\xd6\x56\x67\x4f\x91\xd0\xe8\x86\x71\xc8\x17\x6c\x74\x03\xd9\xc8\x56\x7f\xdb\x2b\xa0\x7f\x2b\x18\xec\xd5\x0a\x28\x0c\xbc\xd1\x7b\xb0\x62\xdf\xd5\xc9\xf2\xf4\x2e\x02\x7c\x7c\x62\xdb\xc0\x9e\x0b\xa6\x2b\x11\x94\x1c\x4a\xfa\x34\x94\xe7\xb0\xf6\xa9\x37\x83\xf3\x02\x5d\x47\xe3\x42\x46\x97\x2d\xcc\x9a\xf8\x40\x21\x43\xf6\x8a\x51\xdb\x26\x44\xcc\x7e\x39\x45\xfe\x05\xb3\x1f\x39\x7d\x80\x93\xa0\xad\xd8\xf4\xb7\x90\x2e\xff\x93\xf6\x35\x60\x33\x71\x32\xb2\xf8\x3a\x71\x97\x47\x4e\x6c\x94\x25\xa1\x08\xaa\x95\x99\xaf\xc8\x36\x50\x8a\x6d\x7c\x96\x48\x17\x30\xac\x5c\x73\x3e\x79\x7b\xdb\x5f\x81\xbe\xab\xb3\xb0\x54\xd3\x1b\x9f\x2c\x30\x1f\x45\x20\x82\x67\x28\x1a\x69\xb8\x9f\xdb\x2f\xa2\xc8\x1e\xe5\x21\x72\x1f\xd9\x96\x23\x01\xa5\xc9\x63\xb5\xb7\x66\x90\x3b\xee\x23\xdb\xb5\x81\x22\x1d\xbe\x5a\xc5\xd0\xf0\x93\xfe\xa9\x27\xc7\x1f\x8b\x71\x8b\x43\xe8\x0c\x5e\x67\xe0\x96\xa0\x2a\xd1\x51\xd1\x23\xee\xc9\xe5\x0a\x28\x72\xb3\xf2\xca\x8b\x28\x67\x24\x40\x91\x3c\xcb\xa8\x3c\x08\x94\x4d\xb2\x8f\x20\xe7\xf9\x70\x2c\xf3\xd1\x68\x72\xe6\x1c\x3d\xac\x54\x5b\x43\xa1\xfb\xfc\xee\xcb\x4f\x5f\x7f\x79\xfd\x8f\x31\xf2\x3e\x7e\x7a\xfb\xeb\x8b\x4f\xff\x90\xbf\x74\x38\xa3\x00\x87\xe5\x5e\xd9\x8b\x30\xb0\x01\x19\xa7\xfa\xda\x6f\x5f\xd9\x3b\x25\xa9\xea\xe6\xe6\x54\x27\x72\xe8\xf8\x66\x05\x18\xc8\x52\x8c\x09\xab\x71\x5d\x10\x39\x14\x90\xfa\xd7\xb6\xb0\xaf\xec\x86\x36\xc7\xcb\x79\x63\x9b\x4f\x8b\x08\xb1\xa6\x46\x2f\x25\x03\x7b\x2b\xcd\xb5\x7c\x53\xbc\x10\x84\x10\x37\xfd\x95\x04\xe1\xf9\xb2\x55\xd3\x57\x90\x43\x1f\x61\x19\x61\x57\x39\xbf\x34\x91\xab\x29\xd5\x27\x84\x06\x21\x86\xe5\xf7\x14\xfd\x49\xb0\x6d\x08\xf6\x3d\x09\xd0\x43\x90\xec\x4b\x22\xab\xcf\x66\x1b\x99\x97\x9f\xd1\x44\xfa\x76\xd7\xa6\x84\xa0\x34\x17\xa4\x96\x02\x32\x4f\x28\x8a\x64\x58\x17\x9b\x86\xf3\x7c\x28\xaf\xd2\x06\xa4\x10\x4a\xc8\x83\x6d\x13\x79\xbc\xf9\xf0\xe9\xf5\xdb\x9f\xde\xd7\x13\x0b\x29\x25\x16\x38\x76\xb2\xfd\x33\x1b\x37\x43\x48\x82\x27\xb9\xb5\x94\xc4\x9c\x48\x50\x52\x0d\xa9\x30\x27\x02\xb0\xfe\xb5\xfd\xd9\x1c\x4c\x01\x29\x1b\xa7\x90\xfd\x0a\xf1\xd2\x8d\x63\x82\xe2\x86\x82\xb4\x8b\xad\xb0\x20\x78\x57\x29\x9f\x35\x14\x75\x71\xb9\x06\x45\xe5\x15\xcd\x90\xbd\x51\x8e\xaf\x7f\x35\x8a\xea\x48\x43\x69\x3a\xf9\x05\x2d\xeb\xf9\xcd\x66\xa8\xe4\x1d\xf1\x2f\x9a\x04\x91\x6c\xf8\x26\x82\x93\xa2\x0c\xcc\x35\xfa\x4d\xe0\xa1\x86\x3d\xc9\x46\x75\x82\x32\xd7\xb4\x4e\x50\x16\xc8\x5d\xbb\xd0\xea\x9b\xb5\x92\xa7\xb2\x65\x4c\x94\x20\x6f\x47\x88\x4f\x03\x0a\x4e\xc3\xac\x06\x9a\xb7\x29\xa4\xff\xf3\xf6\xd6\xb6\xdd\x55\xf3\xa6\x92\x7b\xef\xee\xdb\x8a\x2d\x66\x1f\xce\xbf\x60\x65\x14\x2d\x4b\x1a\x4c\x21\x53\x6a\x7d\xc9\xc6\x03\x3a\xf2\x9a\xa5\x03\x22\xb7\x7f\xeb\xc1\xd2\xad\x17\x76\x52\x4e\x89\xc3\xc4\xce\xab\xd9\x5a\xc4\x61\x20\xac\x7f\x6d\xbf\x08\x02\x2a\x43\x5e\xeb\x9b\x49\xc5\xa3\xa1\xcd\xaf\x88\xc3\x12\x9d\x41\xbe\xcb\x88\x81\x92\xf7\xda\xf8\xab\x7a\xdb\x4a\xa9\x55\x8b\x68\xa5\xd4\xca\xa6\xc7\x70\x32\x41\x81\x46\x40\xf5\xd2\x5a\xed\x55\x0d\x64\xa9\x62\x14\x43\x51\xa1\x54\xc9\x97\xc9\x26\x00\x45\xc3\xd7\xe9\x83\xa8\x7a\x53\x1b\xc3\x19\x20\xb1\x9d\xe5\x68\x21\xfb\xd9\x6c\xb7\x3c\xdb\x30\x98\x2e\x1e\x37\xf4\xc7\xe3\x71\x3d\xfb\x30\x33\x49\xee\xa1\x27\x4a\xed\xec\xd6\x53\xb5\x9c\xe5\x6f\x7d\x31\x0f\xab\xe7\x52\x46\x8f\xf8\xd3\xa6\x58\xd7\xa6\x10\xaa\xe0\x03\xd8\x14\xc7\x25\x92\xfb\x46\xff\x25\x25\x76\x31\x32\xf4\x44\xa6\x88\xa8\xee\xcd\x8c\x4a\x36\xfb\x48\x68\xd1\x32\xc9\x59\xb3\xaf\xb1\xc0\xff\x31\x9c\x7c\xb8\x44\x94\x86\x25\x9c\xed\x8c\x90\x08\x41\x7c\xcf\x56\xb5\x22\xf4\x8f\xc6\xb1\x57\x6e\x6d\xa9\x46\x2f\x8d\xa7\xaf\xb6\xd5\x7f\x1a\xcf\x60\x79\xa3\x44\xc5\x2e\x79\xd9\x8a\xcd\xc5\xc3\x54\xdb\x86\x7a\x37\xd6\x2d\xb3\xea\x6d\xec\xe2\x2c\x67\x24\x31\xa2\xaa\x19\xcb\x8d\x72\x09\x8e\x62\x2f\x63\x39\x6f\x31\x23\xb9\xcf\x1b\xde\xa7\x3c\x94\x55\x5c\x4a\xbb\x2b\x7f\x5c\x3a\xb6\x61\xe0\x31\x20\x6e\xe2\x55\x4d\x08\xb9\x82\xd3\xab\x63\xaa\x7e\x7c\x38\xa5\xcf\xa5\xcc\x50\xa3\xe2\x39\x4c\x6e\xad\x3b\x67\x14\xc1\x8b\x1d\xd9\x2b\x76\x0c\x57\x76\x8b\x09\x2a\xd3\xcf\xb8\x96\x2b\xbb\x19\x0a\xcb\xf4\x12\xcd\x07\xe6\x60\x8c\x0b\xae\xdd\xe4\x01\x88\x4f\x9a\xff\x64\xda\xdb\xee\xb9\x6c\xd0\x0c\xef\x91\x7d\x0a\xa3\xf1\x15\x8a\xe0\xb2\xa9\xe1\x8f\x68\x0a\x2f\x43\xd2\xc8\xd8\x8e\x8f\xdf\xb5\x63\xd9\x77\x10\x63\x77\xf2\xa4\x9a\x8c\xeb\xba\xb4\xec\x7b\x2a\xde\x5a\x52\x75\x4a\x06\x0f\xd1\x07\xcc\x8a\xcc\xa4\x41\xca\x24\x42\x6a\x08\xfe\x26\x22\x3a\xa7\x3a\xd9\x0b\xe6\xd1\xf1\x72\x8e\x00\x25\x84\x7f\xf9\xf4\x2e\xf5\x5a\x3f\x59\xb9\x3b\x38\x7b\x7a\xa6\x03\x3b\x24\x78\x8e\x1d\xf8\x36\xb8\x99\x43\x3e\x1d\xd9\xfb\xa3\xc0\xb7\x57\xa0\xa2\x61\x1c\x82\x1d\x37\x8f\x9f\x54\xf7\x99\xca\xfb\x99\x74\xfb\xbf\x60\xb1\xdf\xe4\x79\x4f\xba\x11\x56\x62\xdb\xb4\x52\x3f\x5b\x0e\x39\x2a\x1f\xf2\xe2\x32\x69\x72\x71\x59\x3d\x98\x09\x72\x8c\x57\x78\x81\x96\x76\x6e\x2c\x14\x84\x3c\xdb\x62\x5f\x3e\xca\x35\x53\x27\xab\xb9\x86\xfa\x61\xae\xa9\xf8\x32\xbd\x7c\xfb\xb8\x69\xae\xb1\x8c\xe4\x8e\x5b\xc9\x5f\x95\xe0\x64\x97\x3a\x0a\x83\xa6\x45\xa6\x26\xcd\xb5\x54\x01\x71\x71\xc3\xfc\x40\x71\x80\x7f\x8a\x18\xf4\x93\xc2\xd7\xe5\xe7\xba\x46\xbb\xc1\x8c\xf8\x57\x01\x9a\x6c\x45\x5c\xce\x10\xc4\x18\xb2\xf2\x88\x49\x75\xde\x78\xc8\x4f\x1c\x3e\x6c\xfe\x30\x29\x64\xf9\x03\x74\xb9\x21\xe3\xfd\xd8\x39\x56\x6a\x05\x28\x9a\x93\x8a\x20\xac\xc0\x4f\xa7\x39\x45\x04\x06\x21\x9e\x8c\x8a\x07\xcf\x49\xc4\xc4\x22\x8a\x64\xb2\x7e\xe0\xdb\xbb\xe3\x31\x4e\x47\x3a\x2a\x19\x2b\x17\x24\xf5\x8c\x37\x84\xaa\x19\x6e\x6f\x6f\x02\x9f\xc9\x10\x09\x10\xf8\xa3\x1b\xd1\x5c\xfe\x5a\xad\x76\xa2\x82\x42\xa4\xa3\x2c\x27\x88\xbf\xf0\x79\x78\x89\x1c\xe6\x05\xbe\x27\xfa\x00\xf1\x17\x8b\xa3\x92\x34\x7a\x3e\xff\xf6\xd1\x9b\x42\x36\x75\xe2\xf5\xef\x72\x95\x7f\xff\x2e\x64\xa9\x40\x7c\xcd\xcf\x75\x23\xdb\x15\x4b\x89\x0a\x59\x20\xd8\x84\x79\xc4\x71\xe6\xb9\x80\x82\x68\x4c\x53\x01\x8a\x12\xc6\x34\x99\xb8\x3b\x91\x97\x89\xb9\x71\x64\xc2\xde\x9c\x92\x59\xc8\x90\xa7\x0b\x9e\x66\xb3\x4e\x92\xc5\xea\xb8\xc4\xc2\x52\xf3\x63\x26\xa0\x0e\x04\x18\xd8\x0b\x7c\xb5\x97\x56\x2e\xd8\xed\xaf\x80\x0c\x19\xac\x08\xaf\x04\x78\x6c\xe2\x2d\x90\xe7\x93\x00\xdd\xde\xda\x36\xd0\x19\xb4\x23\xe4\xe9\xbf\x6e\x6f\x05\x21\x72\x18\x46\xb7\xb7\xb6\x2c\xba\x6a\xaf\x92\x10\x05\x39\x01\xdb\xdb\x33\x7f\x9d\xf4\x4f\xf7\xf6\x1c\x3c\x4e\xfd\x06\xd8\x0c\x35\xc6\x1e\x0f\x79\x84\x6e\x6f\x71\x7e\x48\x17\xd8\x2a\x77\x53\xad\x48\x96\x9c\x35\xbd\xe2\x26\x85\x0f\xad\xc0\xc3\x02\xf4\xfe\x6e\xd2\xdb\xe3\x44\x95\x5f\x70\xdc\xf8\x76\x0b\xfb\x71\x89\x35\x52\x20\x31\x57\x91\x63\x9e\x18\x50\x1d\x31\xf0\x3c\x19\x20\xb5\xdc\xdc\xa7\x42\xf2\xab\x78\xaa\x40\x6e\xaa\xfb\x9d\x07\x36\x58\x48\x3e\x7b\x55\x14\x91\xe6\x66\xd9\xe3\xc1\xff\x25\x71\x8b\xf5\xdc\xb4\x89\x35\xb6\xcf\x15\x95\x1c\xaf\xb0\xe3\x8a\xe1\xcb\x8a\xf4\x76\xaa\x58\x98\xe4\x93\x82\x4b\x04\x2f\xa2\xc8\x29\x26\xa9\xd1\x5c\x64\x7a\xd2\x55\xc6\x97\x51\x70\x23\xd9\x81\x18\xe0\xc7\xe5\xe7\x68\x31\x71\x90\x17\xf8\x80\x2a\xc6\xa9\x62\xed\x65\x41\x9b\xa4\x48\x44\x2e\xc0\xbb\x39\x18\x10\xe5\x08\x91\x57\x06\xcf\xc6\x84\x27\xf5\x07\x23\xf5\xeb\xe3\xd6\x0a\x49\xc4\x1b\x4f\x0c\xce\x90\x40\x2a\x22\x8d\xa3\xd9\x3c\x82\x4a\x9a\x8d\x6c\xb3\x68\xa5\xdb\xd4\x10\x8a\x4a\x79\x03\x67\xe8\x9c\x50\xf4\x6b\x96\x0c\xcc\x36\x2f\xb0\x9e\x24\xde\xdb\x71\x57\x79\xe2\x49\xac\x6c\xf1\x2d\x42\x8e\x66\x55\x42\x52\x87\xd5\xe5\xc3\x0e\x65\x9f\xac\x4d\x54\x22\x96\x8d\x58\x2d\x61\xb0\x3a\x8f\x66\xb7\x0f\x42\xf6\x2e\x11\x35\x62\xd8\x51\x32\x81\x29\xef\x31\x83\x18\x4e\x54\x5e\x1a\xb0\xfd\x28\x94\x36\xc9\x3d\x51\x1a\x08\x90\x20\x8c\xcb\x4c\xa2\x4b\x1e\xcd\x1a\xfe\x90\xbd\x47\x57\xb6\xc9\x93\x13\xcf\xbc\x40\x25\x7c\x7d\x42\x3e\xa1\x81\xd3\x96\x70\x15\x0d\x7c\xa7\x64\xdb\x4c\x9a\x77\xe1\x62\x55\x8c\xaa\x48\x17\x15\x24\x9a\x61\x45\x61\x50\x4f\x88\xdf\x82\xa2\xda\x91\x80\xb6\x4b\xb6\x96\x06\xb2\xe1\xb6\x99\xc8\x5a\xa0\xef\xab\x10\x53\x56\xf3\xa2\x66\x0a\x60\x75\x24\xf0\x22\x8a\x7e\x5c\x26\x0c\xc9\xa9\x23\x83\x6f\xf5\xa1\x2f\x2e\xdb\x89\xa8\x7c\xa2\xe6\xb7\x93\x50\x17\x97\xcd\xf2\xe9\xe2\x72\xb3\xd2\x29\x95\xfa\x71\x81\x96\xb7\xb7\xf6\xbe\x5d\x92\xa6\xa5\x46\x02\xb4\xcc\x1e\x34\x1f\x7a\xa7\x20\xe6\x70\x07\x89\x46\xd7\x96\x5b\xaa\x64\x4b\x56\x4d\xe2\x80\xde\x17\xdd\x3d\xb4\xc8\x8a\x89\xa2\x13\x11\x17\xe3\x47\x20\xf3\x51\xe1\x5e\xbe\x3b\x14\x47\xdd\x72\x63\xa1\x1d\xbb\x95\xbb\x2d\x95\xa3\x58\x29\x73\xd5\x41\x4d\x95\xe1\xc0\x8d\xc3\x45\x6e\x32\x50\xea\x56\x89\xdd\x22\xa4\xab\x95\x91\xd9\x1c\x7a\x37\x90\xf4\x6e\xc8\x7a\xd0\x23\x30\x70\xd5\x3e\x67\xae\xda\x4b\x99\xc6\x11\x60\x45\x43\xa5\xc4\x00\x42\x9a\xc6\x4d\x2c\x57\xbc\x3e\xfc\x3c\xbf\x42\x2a\x8c\x19\x04\x6e\x34\x9a\x46\xb9\x22\x1f\xa9\x0c\x50\xbd\x90\x5f\xd0\xd2\xc1\x72\x1d\xee\x08\x7d\x43\xf9\x61\x1c\xbb\xe5\x5b\x2f\xd3\x54\x69\x14\xf7\x71\xaa\x10\x9b\xb7\x65\xf2\x42\x2b\x32\x15\x02\xa1\x11\x31\x3b\x49\xde\x98\x37\x97\xea\x84\xa6\xc7\x54\x82\xb3\x2b\x3d\x84\x2a\xd3\x5f\xc9\x08\xbc\x88\x22\xfd\xc3\x4d\x33\xfd\x42\xfd\x90\xa4\x22\x40\x2b\x74\xb7\xd1\xca\x36\x2d\xad\xf5\x69\xc9\xff\x1e\x6e\x56\xcb\xa1\x68\x5a\x0d\x88\x6a\xd9\x14\xdb\x04\x9b\x62\x69\xce\x23\x2b\x5d\x97\x70\x9e\x8a\x01\xb1\xe6\x2a\x4a\x59\x65\x89\x5e\x2a\x07\x4b\x33\x2a\x35\x99\xc9\x6b\x8f\x4a\xdc\x77\xd5\x25\x70\x52\x24\x6c\x3c\x2e\xb1\x87\xbd\xe8\x97\x95\xf5\xe8\x4a\xbd\xa9\xf6\x61\xff\xd0\x1e\xa7\x3d\xaa\xda\xcd\xd9\x76\x07\xe9\x8b\xb3\xd0\xea\x9b\x71\xc3\xcc\x81\x53\x0b\x96\xa8\x9b\xde\x27\x4f\x6c\x5a\xb5\x3c\x05\x2c\xf2\x95\x0d\x67\xca\xb7\xf6\x42\xaa\x43\xc9\x7b\x31\xdf\xfe\x15\x2c\x36\xf5\xb5\xd4\xd1\x6c\x39\x7d\x29\x55\x36\x08\xf5\x0d\x70\xc5\x57\x9c\xcc\xc8\x84\xc2\x79\x2e\x84\xba\x45\x95\x9d\x35\x13\x64\xd5\x21\xd2\x77\x2f\x3e\x00\x1b\xe7\xf2\x39\xe3\x3f\xeb\x25\x0b\x6d\x25\x59\x0c\x61\x77\x51\x95\xd7\xdd\x04\xd9\xea\x22\x15\xd2\xa9\xc6\x84\xad\x2f\x41\x52\xb7\xc1\xf2\xae\x78\x59\x2b\x81\x17\x65\x96\x3e\x66\x4d\x2b\xf2\x58\x6b\xcb\x2f\xe3\xf4\xbe\x42\x65\x80\x64\xb2\x48\x48\x36\x0c\x6e\x12\x62\x4e\xed\x6c\x92\x44\xcb\xfd\x6d\xf0\x9c\x99\x65\x90\x6c\x74\x46\x5e\x6c\xea\xec\x65\x59\x83\x56\xaa\xd5\xf2\xf8\x36\xcf\x35\x70\xac\xd3\x9b\x3a\x79\xe6\x8b\xb2\x11\xd5\xb0\xbf\x27\x01\x72\x8a\x5d\x64\x80\x93\x2b\xb1\x71\x6f\x96\x77\x2c\x78\x5b\xd7\x9e\xa9\xa4\x8e\x7c\x65\x9a\x26\xb2\xe8\x56\x99\x26\x9f\xdd\x8d\x0c\x7e\x76\x52\xa5\x81\xaa\x6a\xd6\xc4\x4d\x52\xf8\x8e\x00\xaf\x3c\xcd\x54\x55\x15\xcc\x7a\x99\xac\xb5\xf5\x90\x65\x69\x12\xfe\x6d\x22\x79\xbe\x1f\x81\x9b\x14\x7c\xbc\x83\xcc\x2d\x2f\x3c\xd0\xa4\xed\xca\xad\x85\xb6\x46\xf6\xc6\xdf\x2e\x2f\x7e\xff\x3c\x59\xbe\x77\x12\x5b\xf7\x78\xb9\x5a\x26\xd5\x12\x58\xa5\x85\xc5\x33\x16\x95\x72\xf0\x78\x32\x1c\x7e\xf5\x6d\xe8\xf2\xbb\xe1\x23\x32\x7c\xa0\x93\x32\x5e\xa5\x8b\xa7\xa2\x54\xa4\x2d\x79\xce\x11\xfd\xb5\xd2\x25\x2f\x46\xda\x29\xb7\x0c\x93\x40\xca\x8c\x3b\x4d\xa5\x2c\x37\x21\x36\x09\xa7\x7b\x20\xdc\x56\x38\xa8\x14\x6b\xc5\xe8\x4a\x23\x51\x5f\x07\xfd\x11\x4e\x90\x85\x09\xb7\xd4\x22\x63\xdb\x57\x06\x38\x8d\x0f\xfb\x87\xa0\xf2\xbe\x26\x0d\x60\x12\x59\xf8\xf0\x65\x37\xb7\x9c\xd9\xa5\x7c\x49\x81\x5f\xa3\xc9\xcb\x3d\x51\xcb\x18\xab\x0e\xa2\x33\xe5\xaa\xd6\xd9\x44\x71\x44\x0d\x08\xfc\xa2\xd5\xab\x56\x9d\x6e\x56\xe0\x79\xbc\xde\xab\x24\x41\xcf\x16\x99\x8e\x07\x4d\x36\xb0\x54\xa1\xf9\x3d\xc7\xe2\x24\x4a\xef\x83\x57\x70\x37\x55\x27\xcd\x87\xb4\xae\x84\xbe\xd8\xb6\x90\xa7\xe9\xf5\x4d\xaa\xb1\xab\xa5\x27\x2b\x9f\xc2\x4b\xa4\xea\x90\x52\xc4\x10\xaf\x58\xbe\x7c\xc7\x4b\x21\xa8\x62\x37\x0c\xd1\xe4\x66\xc3\x7c\x91\xa1\x8a\x66\xe9\x30\xe4\xf2\x52\x45\x77\x3f\xa4\xab\x3d\x48\x98\xd3\x70\x06\xe9\xf2\x17\xb4\x1c\xe1\x74\x0e\x4d\x1b\x18\xcb\x63\xa8\x73\x57\xac\x25\xed\x29\x62\x1b\xb9\xe7\xa9\x1a\x18\x4c\xe8\x4c\xce\xf6\x09\xb1\x39\xc1\x2c\x5b\x33\xd6\x64\xc7\xa7\x9d\xac\x6a\x0b\xca\xb7\x2a\x39\x9c\x8c\xb9\xd2\x96\xa4\x71\x08\x95\x71\x18\x8f\xfb\x11\x2e\x23\x02\x03\x47\x8d\x04\x88\xe0\xc1\xac\x22\x57\x8a\x01\x62\x16\x0e\x3b\xe5\x4a\xb1\x13\x72\x3a\x86\x80\xb9\x72\x12\x95\xe0\x04\x08\x80\x2b\x90\x5f\x47\x59\x3c\x4f\xa5\x34\x4c\x7f\x8a\xaa\xca\x42\x6b\x51\x69\x6a\xb0\xef\x97\x58\xf3\x15\x74\x9a\x21\xbd\x57\x4a\x4d\x41\xa2\x73\xc6\x6a\xbe\x6d\x2a\x6f\x4f\x31\x49\x9d\xf1\x88\x75\xc6\xa3\x96\x6d\x71\xb1\x61\x54\xe5\xff\xe1\x82\xc2\xd3\xa6\x05\x05\x76\xb2\x12\xdb\x05\xd1\x18\x01\x2c\x88\x9a\x57\x10\xb5\xd8\x44\x1a\xc6\xa8\x13\x51\xf3\x13\x7c\x3a\x8e\x00\x57\x46\x20\xc0\x20\x5a\xa5\xb4\x90\x16\x1f\x30\x5f\xb0\x66\x2d\x52\xbd\xb8\xfc\x8e\x49\xb4\x58\x3d\x64\x2d\x18\xe5\x30\xdf\x2f\x94\xa5\xd5\x07\xd6\x02\xb4\xfc\x92\xae\xef\x0b\xd6\x92\xa4\xdd\x35\x61\x55\x23\x7d\x77\xb0\x2a\x47\x91\x4a\x29\xab\x30\xaf\xaa\x74\x99\x0d\x18\x96\xda\x39\x1d\xaf\x5f\xde\xde\x56\x65\x83\x88\x77\xb6\x5b\x72\x49\x4b\x45\x51\x5e\xdd\x41\xdf\xb7\x62\x4b\x95\x2e\x6d\x07\xf0\x34\x86\x5c\x77\x05\x4a\xfc\x7b\x5d\xe6\x91\x2e\x23\x3d\x8f\xb0\x39\x50\x8d\xa9\xc2\x1b\x4a\xeb\xf2\x6c\x44\x9d\x71\x03\x27\xee\xa1\xf2\xe2\xef\xb5\x4b\xd3\x71\x6a\x7a\x81\x61\x30\x42\x20\xf0\x47\xbc\xf1\x98\x5e\x97\xf2\xcd\xc4\xac\xbb\x40\xc6\xf2\xe4\x6f\x75\x68\xfe\x16\xb2\x43\x7a\x25\xee\x0a\x68\x33\xa5\x54\x1b\xf2\x84\x8d\xe2\xc8\x5c\x39\x61\x0f\x94\x38\xda\x4c\xb0\x83\xb1\x3e\x55\x5e\xb9\x8c\x70\xc9\x04\xe8\xc9\x4b\xbe\x91\xaa\xf1\xab\xce\x4e\x5c\x60\x13\x49\xc1\xf6\xd8\xd4\x4d\x10\x26\xf8\x87\x73\x47\x9a\xdb\x25\xe7\x08\x1a\x8a\x39\x42\x17\x19\x6c\xd2\x93\x0c\x31\x9d\xba\xae\x2c\xf7\x92\x09\x0f\x6c\xc0\xb2\xae\x09\x6b\xa6\x58\x60\xa1\x44\xe8\xbe\xca\x95\x9c\xb8\xfc\xeb\x02\x45\xb3\x03\x08\x93\x59\xa3\xb9\x91\x07\xfc\x13\x5e\x97\xd9\x01\xe2\x79\xae\xd5\xf7\x78\x97\x78\x03\x70\x9c\x9c\xd5\x1f\x44\xcb\x16\xf7\xce\xe0\x4c\x0d\xfc\x1a\x58\xb4\x3f\x41\x5f\x58\x9f\xbd\xe5\xaf\x16\xc6\x33\x4e\x60\x3d\x8c\xb2\xc5\x77\x0f\x63\x49\xe2\x7d\x0c\xa3\x4f\x02\xd4\x9b\x85\x32\xed\x2e\x03\x6a\x78\xb9\xec\x89\x97\xea\x5d\x79\x87\xed\x23\x5b\xa9\x93\xd3\x59\xfd\x57\x35\x8d\x1e\xfe\xc3\xa6\xcb\x75\x25\x41\x08\x82\x5d\x35\x03\x96\x9c\x9d\xdf\x9f\xdf\x7a\x1d\xf5\x62\x33\x4a\x40\xda\x40\xd7\xba\x40\x23\x4e\xee\x21\x0b\xb4\x48\x7b\x59\x12\x09\xcf\x9d\x17\x94\xc2\xa5\x17\x32\xf9\xaf\x83\xdc\xf8\xea\xd5\x9d\xf0\xdc\xf9\xbc\x9c\x9d\x91\xc8\x0b\x39\xa2\x90\xcb\x33\x65\x4b\xad\x24\xd5\x30\x3b\xa2\x92\xc9\x27\xa7\x80\x8e\x77\xfb\x20\x1a\xef\x0e\x00\x33\xa5\x5e\x38\x5d\xc6\x5e\x73\x02\xe0\x18\x9d\xe4\xc6\x3f\x75\xdc\x1f\x76\x1d\x3a\x76\xc8\x18\xaa\xe4\x5b\xd7\xf5\x02\x82\x91\x2b\xd3\x8f\xe7\x0b\x36\x75\x88\xba\x95\xc2\x05\xbb\xfc\xf6\x16\x6b\x6f\xfb\xee\x78\xcc\xdd\x1f\xc4\x94\xee\x0f\x2b\x15\x11\x88\xdc\x9b\x48\x2c\x81\x8d\xd1\x4a\xe7\x76\xdf\x88\x05\xec\xd2\xbd\x3d\xe8\xa9\xb5\x27\x7f\x39\x6e\xdc\x28\x3c\x77\x22\x57\x1d\x52\xb0\x95\x31\x71\xb1\xae\xb5\xae\x9e\x63\x74\x65\x1d\x2f\xe7\x48\x1f\x71\xbc\x55\x82\xd9\x82\x9c\xa3\xd9\x9c\x5b\x9c\x58\x52\xf6\x2f\x7c\x79\xf9\x38\x26\xb8\x27\x21\x3c\x8b\x90\x65\x6e\x02\x16\x02\xd9\x29\xc6\xeb\xac\x43\xb1\xed\x93\xc8\x2a\xd5\xc7\xf0\x5c\x7a\xc0\x77\xc7\x89\x56\xa5\x8f\x22\x1d\xed\xde\x40\x32\x74\x18\x17\xeb\xe8\x9b\x08\x8b\xe2\xf5\x8e\x19\xb7\x3b\x36\xc7\x59\x25\xb7\x3b\xea\x4a\x56\x32\x16\xba\xac\xc7\xca\x5d\x29\xe7\x49\xee\x70\x29\x89\xc0\x50\xe1\x97\x63\x19\x98\x29\x35\x2f\x0e\xc3\x68\x9c\x3f\x7b\x02\x1f\x75\xae\x3f\x45\x92\x86\x55\xd0\x27\x1b\x9d\x50\x99\xc1\x16\x9f\x06\xd4\x95\x59\xa8\x06\xdc\xac\xc6\x4c\x02\xa3\xc8\x39\x41\xb7\xb7\x51\xfa\x50\x57\x9d\xb4\xe0\xdb\x5b\xe9\x97\x8c\x0f\x35\x4e\x2b\x83\xf4\x85\xea\x3d\x74\x01\x1b\x63\x75\xeb\x39\x4e\x6e\x6c\x8b\xc3\x4a\xe4\xc8\x0c\x90\x92\x60\xd8\x7c\xbc\x03\x01\xb6\xbc\x5b\x42\xed\xe2\x64\xd1\x51\xc5\x67\x43\xc9\x67\x93\x1a\x7f\x62\x25\x75\x50\xfa\x0d\x98\xea\xf0\xba\x4a\x0d\x46\x1e\x23\x94\xc7\x14\x57\x73\xf3\x4f\xcc\x31\x51\x51\x0f\xc8\x0b\x47\xb4\x19\xc9\xff\x80\xa2\xf1\x01\xae\x83\xca\xaf\x3e\x73\xcd\x7b\xd5\xad\x50\x99\xab\xe0\x5d\x50\x84\x38\xef\xe6\x34\x41\xe7\x49\x68\x56\x42\x6d\xc2\xa6\xb4\xe3\x28\x72\x1b\xec\xf6\x5d\x80\x0a\x36\x52\xda\xba\xa1\xf9\xdb\xe8\x5d\x0f\x06\x81\x73\x23\x2c\xb6\x91\xcd\x16\xbe\x2f\x6b\x25\x9a\x6a\x19\xbc\xac\xb6\x03\x72\x6f\xec\xe3\xf8\xf0\xfd\xc5\x19\xa1\x5c\xde\x67\xae\xef\x4a\x7a\x7e\x97\xd9\x46\x6d\x3b\x6b\xa2\x35\x5d\x65\x95\x88\xb2\xea\x23\x25\x48\x1a\xb4\xd9\x14\xf9\x7b\xf7\x8b\x16\x9d\x1f\x85\x3d\xd9\xaa\xb2\xd3\xf6\x69\xca\xd5\xee\xe5\x5c\xa9\xf3\x07\xf0\x2a\xdf\x4d\xf9\x2c\x0a\x68\x2c\x05\x74\x9e\x91\x98\xad\xf6\xf7\xcf\x1f\xde\x7b\xaa\x92\x5a\x78\xbe\x74\x4e\x30\x40\xa7\x6e\x99\xa4\x2a\x71\x5e\x08\xac\x25\x97\xd5\x44\xb7\xb7\x8e\xd9\xb3\xc5\x64\xcf\x48\x25\x5d\x00\x94\x7b\x98\xf6\x0b\x61\x37\x93\xfa\x99\xc8\x5b\x59\xa9\xcd\x89\x72\x15\x82\x1a\x1c\x55\xb2\x66\x97\xf1\x53\xe1\x75\xfc\x54\x58\xfb\xa9\x32\xf9\x24\x25\x17\x51\xe2\x74\xfc\x82\xce\x8f\xda\xdb\x73\xd0\xd8\x36\x97\x27\x4a\xb7\x51\x4e\xc9\xcf\xac\x8f\x03\x86\xe6\x50\xaa\xb1\xaa\x3a\x56\x31\x90\x38\xbe\xe4\x30\x7f\xdf\x4f\xea\x66\x9c\x6c\x05\x4f\x9d\xe7\xb2\x72\xeb\x23\x82\xab\x3d\x74\x05\x16\x48\x25\x2d\xd1\x38\xb1\x85\x96\x24\xb6\xd0\x62\x62\x8b\x0e\x83\xcd\xd3\x1a\x97\xb4\xc6\xc6\xa5\x2e\xac\x3c\xa1\x45\xee\x0e\xdb\xdb\x63\x85\xb4\x59\xa5\x53\xd3\x0d\xf8\x13\x2f\x2e\xef\xea\x4e\xe4\xdf\xda\x9d\x28\x77\xe4\x09\xde\x84\x37\x91\xaf\xe1\x4d\x6c\x40\x77\xca\xa9\x28\x71\xdd\xc4\x95\x75\x21\xbf\xef\xca\xc0\x4f\xb9\x1e\x2a\x5a\xa6\x9d\x13\x9b\x72\x08\xa8\xc3\x41\xe3\x0a\xa8\xb6\xc4\x0a\xdc\xa8\x1d\xab\xd4\xc3\xb7\x77\xea\xeb\xbd\x9a\x01\xb5\x3c\xc0\xb9\xfa\x10\x03\x79\xa9\x14\x88\x31\xd7\x06\x42\x13\x4d\x24\xc1\x8e\xdf\x15\x59\x6c\xe6\x33\xc7\xa7\xa3\xdf\xf3\x01\x50\xb2\xc8\x5a\x7a\x51\xfc\xb0\x90\xf9\x20\xf6\x04\xce\x0a\xa9\x52\x93\x32\x93\xd1\xa0\x0b\x71\x73\x17\xe0\x56\x24\x52\x38\x77\xfd\x4e\x28\x44\xe5\x70\xac\x81\xfb\x24\x5b\xaa\xdd\x2e\xad\x8c\x01\x69\x94\xf8\x86\x48\x7e\x41\xcb\x3b\xd1\x48\x97\xd5\x36\x1e\x14\xd6\x8a\xdb\xa4\x78\xe1\x86\x85\x5c\x33\x9d\x15\x23\x8b\x1f\x80\xd0\x84\xd9\x77\x15\xe2\x80\x5c\xc9\x8a\xbd\xd1\x67\xf5\x4c\x7e\xb7\x9f\x11\x0c\x10\x65\x45\x99\x7c\x63\xff\x57\xef\xa5\x02\xe1\x98\x5c\x20\x6c\x17\x62\x65\xf5\xd0\x2a\xae\xf5\x2d\x47\x33\xc7\xe6\xb2\xa5\xbb\x6a\xf6\xda\x94\xea\xeb\x37\xb2\x7f\x97\x89\xaa\x58\x54\x9b\xd9\x9a\xa7\x41\x6e\x85\x7a\x97\x67\x55\xb9\x01\x0c\x81\xa5\x6f\x92\x45\x25\x37\xc9\x62\xf7\x46\xec\x7b\x35\x19\x06\xe8\x04\x9f\x26\x37\xc7\x96\xae\x19\x95\x04\xc4\xde\x0d\x56\xb5\x53\x32\x58\x6d\x41\xc8\x72\x0b\x54\x06\x71\xca\xb7\xf7\x1a\x0f\x97\x0f\xca\x48\xb1\x1b\x69\x3e\xc1\x00\xce\xb9\x2a\x9a\x89\x4c\x44\x86\x84\xfc\x26\x0e\xd6\x1c\xa1\x15\xe0\xca\xd8\xfa\x1a\x0a\xee\x81\x61\xf4\xab\xce\x7b\x79\x1b\xc8\x21\xb5\xba\xff\x19\xc3\x39\x9b\x12\xee\xdc\xac\x5a\xe0\x86\x87\x33\x44\x16\x95\x45\x77\x94\x7b\x40\x57\x81\x0d\x8e\x75\xe3\x0d\xa5\x0f\x64\x6d\xf6\x22\x3d\x34\x1f\x00\x94\xb9\xd9\x52\x77\xfd\xcb\x9c\xd5\x0a\x0c\x98\x1a\x23\x6c\xbf\xa7\x1f\x9a\xb2\xb5\xf7\xc7\xee\x7e\x3e\xfe\xf5\xdd\x8f\x90\x32\xcf\x4c\xee\x08\xf9\x61\xff\xf7\xe0\xa7\x69\x34\xec\xff\x62\x83\xb3\x88\xf8\x17\xa3\x7f\xbf\xb1\x99\x3c\xfa\x61\xf6\xe8\xe4\x14\xc8\x9b\x85\x65\x51\x39\xf1\xfb\xe4\x09\xb0\xd9\xe5\xc4\x3e\x05\x27\x47\xc0\xbe\x9e\x45\xb2\x06\xd2\x94\xf3\xf9\x68\x7f\xff\xea\xea\xca\xbb\x3a\xf0\x08\x9d\xec\x0f\xfb\xfd\xfe\xbe\x68\x58\xf9\x52\xf6\xdd\x4f\x0f\x34\xba\x8e\x42\x7c\x51\xda\x63\x70\x74\x74\xb4\x5f\xfd\xba\x38\xe0\x55\x18\xf0\xa9\x0d\xec\xc3\xc3\xf9\xb5\x7e\x34\x45\xe1\x64\xca\xb3\xcf\x2e\x43\x74\xf5\x23\xb9\xb6\x81\xdd\xb7\xfa\xd6\xe1\xa1\x75\x78\x68\xde\x08\x4e\x26\xe3\xc5\x06\xde\x40\x3c\x7b\x7a\x0a\x4e\xfa\xc0\xfe\x9f\xff\xc1\x96\x65\x59\xe2\xc9\x13\x60\x4f\x8a\x6f\x52\x6f\xfd\x90\xfa\x11\xd2\x03\x52\x31\x94\xfe\xdb\x17\x33\x0e\x9f\x9a\x5f\x4b\xf1\x4b\xff\x60\x7c\x29\xbe\xa3\x2d\xf3\x90\xce\x09\x9d\xf5\x08\x0d\x27\x21\x1e\x59\xc3\xa7\xf3\x6b\x6b\xa8\x96\x2e\xa6\x7c\xb6\xde\xb4\x83\x8e\xd3\x0e\x36\x33\x6d\x16\xda\xc3\x96\xe0\x1e\x6e\x1a\xde\x16\x13\x0f\x36\x34\xf1\x30\x3d\x6f\xbc\x8a\x1a\x80\xe7\xd7\x72\xee\x4d\x4e\x3b\x6c\x37\xed\xf0\xee\xd3\x1e\x76\x05\xf7\x70\x43\xf0\x1e\x76\x05\xf8\x70\x43\x10\x1f\x1c\x64\x08\xab\x71\xde\x83\x03\x41\x57\x77\xa7\xe7\x41\xb7\x69\x07\x83\x8d\x4c\x9b\x83\xb6\xdf\x12\xdc\xfe\xa6\xe1\x6d\x9e\x58\x01\x7c\xf7\x89\xe3\xa9\x14\x45\x0f\x9a\x09\xab\x2f\x28\x7a\x70\xf7\x89\xd3\xf3\xc6\x78\xaf\x99\x77\x7e\x2d\xb1\xbd\x51\x78\xdb\xcc\xdb\xdf\xd0\xc4\x5d\xf1\x5c\x8b\x66\xbb\xf4\x49\x77\x59\x3d\xcc\x30\xd5\x61\xb7\x4d\x37\x1c\xae\xbb\xe9\xea\xa6\x6d\xa6\x7d\x35\xef\x5a\xb4\x3f\xac\xfc\x24\xc3\x66\x99\x29\x3e\xc9\x70\x2d\x91\x39\xac\x26\xc1\x36\xf3\xf6\x37\x33\xf1\x51\x7a\xde\xa3\xc6\x69\x8f\xe6\xd7\xe2\xff\xef\x38\xe9\xc1\xe3\xcc\x86\x7b\xdc\xcc\x52\x1f\x8b\x0d\xf7\x78\xc3\x13\x37\x83\x2b\xe7\xbd\x3b\xbc\x47\x1d\xc1\x3d\xaa\x85\xf6\x7e\xf6\xf9\xb3\xf4\x1a\x9f\x35\xef\xb7\x67\xf3\x6b\xeb\xd9\x9d\x31\x33\x78\xd2\x6d\xda\xc1\x93\x8d\x4c\x9b\x85\xf6\xe0\x49\x3b\x70\x0f\x9e\x6c\x18\xde\x16\x13\x4b\x80\x37\x30\x71\x06\xe0\x61\x33\xa2\x05\xbc\xc3\xbb\x23\x3a\x33\xed\xa0\x19\x5c\x31\xed\xe0\xee\xd0\x1e\x3c\xe9\x08\xae\xc0\xf0\x26\xe0\xcd\x4e\xdc\x02\x60\x39\x71\x35\xc4\x9b\xda\xeb\x8f\xab\x85\xeb\xa0\x85\x45\x2a\x2d\x96\xb5\x84\x4d\xcd\xc4\x07\x2d\x27\x3e\xb8\xfb\xc4\x83\x61\x47\xf1\x3a\x18\xae\x2d\x5e\x33\x13\x1f\x74\x9d\xf8\x60\x43\x13\x0f\x32\x92\x6e\xd0\x2c\x73\x06\x42\xd4\x0d\xd6\x12\xb1\xd9\x6f\x9c\x11\x76\xc3\x66\x19\x3b\x14\xd2\x6e\xb8\x96\x90\xad\x99\xb8\x05\xc4\x72\xe2\x0d\x40\x9c\x45\x75\x0b\x88\x25\xaa\xab\x21\xde\xd4\x9e\x3f\xaa\xde\x7a\x2d\x08\x71\x58\x4f\x88\xd9\x45\x66\x7f\xc9\x07\xa7\xf2\x86\xdd\xd7\x97\x30\xb2\x47\xe7\x30\x62\x68\xf5\xef\x60\x86\x38\x1c\xdd\xcc\xa4\xc7\x56\xd5\x98\x6e\xe1\x17\xf6\xa6\x67\xcc\x6e\xf6\x26\xdf\xcb\xdd\x7b\x6d\x3d\xc9\xe1\x97\x37\x87\xd3\x4f\x87\x6f\xda\x79\x92\x0f\x81\x1d\x9e\xdb\xe0\xe4\x64\xf8\x18\xd8\x98\x70\xf9\x67\x1f\x9c\xd8\xc6\x13\x7e\x7a\x7a\x0a\xf0\x22\x8a\xf4\x3f\xe0\x26\x37\x40\x1f\xd8\xe6\x1b\x0c\xc0\xc9\xe0\x19\xb0\xc9\x82\x47\x48\x1e\x10\x08\x54\xa7\xbe\xcb\x29\xb0\x65\xd9\x6d\xc4\x11\x95\x8b\x59\x15\x46\x3b\x94\x5f\x6a\x1a\xfa\x84\xce\x35\xee\x6d\x35\xef\xc9\x89\x1d\x06\x36\xb0\x03\x5f\x4c\x65\x5f\x51\x38\x9f\xcb\x6a\xe5\x72\xb5\xe2\xa9\x58\x69\xc9\x78\x70\x3e\xef\x5d\x86\xe8\x2a\x19\x47\xde\x59\x27\x47\xd1\x40\x5a\xb2\x0c\x5c\x79\x77\x89\xc4\x1e\x8b\x24\x6a\xc4\xd7\xe6\xea\xda\xd2\x3a\x64\xa4\x77\xc3\x60\x18\x9f\xa5\x24\x87\x0b\xa7\xf5\x58\xd1\xf8\xbe\xeb\xf3\x0c\xdd\x73\xba\x68\x4f\xf6\x29\x02\x6e\x49\xf2\x3e\x99\xcd\x09\x16\x78\xd8\x87\x7e\xd4\x33\x85\xe0\x1e\x9a\xf8\x7f\x3f\x78\xf1\x65\xfa\xf1\xe5\xb0\x1d\xf1\x67\x69\x57\xec\x80\x73\x8a\x10\x47\xd7\x3c\x06\xc0\xd0\x0c\xc1\xfe\x14\xe2\x89\xe0\x4f\x72\x55\x36\xb0\x65\x89\xbb\xa9\x8a\x99\x3d\xd5\x3b\x48\xd5\x2f\x12\x9b\x68\x70\x04\xfa\xea\x43\x4b\x02\x8d\xfb\xc7\xfb\x49\xbf\x60\x08\x52\x7f\x2a\xc9\xe0\xb3\xfc\xd3\x3a\x5b\x5a\xf2\x86\x56\xd1\x32\xbb\x85\x72\x8b\xa5\x30\x08\x49\x6f\x42\xc9\x62\x9e\x2c\x54\x76\x4d\x16\x29\xab\xdb\xd9\x20\x35\x3f\x38\xb1\xf9\x72\x8e\xcc\xce\x91\x7f\xc7\xcb\x54\x60\x33\xf5\xa0\x1b\x3c\xc5\xe5\xde\x85\xf1\x96\xd2\xd3\x3a\xb4\x28\xd6\x6f\x70\xf4\xd0\xd4\x38\x09\x7f\x9f\xff\xfe\xe9\xd5\xac\x94\x1a\xed\x3d\x13\xe9\x5d\x76\xbc\x17\xe2\xb9\x3c\x64\x15\x82\x51\x7d\x2e\xf5\xb9\xf5\x23\xfd\x95\x93\x7b\x01\x4e\x06\x7d\x20\x19\xe4\xc9\xf0\x09\x38\x31\x2f\xbe\xda\x8a\x25\xeb\xfb\x1a\xc4\x27\x92\x0d\xfd\x29\xf2\x2f\x90\x6c\xfd\x38\x2d\x00\xd0\xef\x31\xff\x37\x4d\xc4\x37\x8c\xff\xd6\x94\x5b\x78\xa0\x09\x5a\x0c\x9d\x6c\x94\xce\x1b\x22\x35\x8a\x26\xdf\xf4\xe2\xcd\xeb\xa7\x05\x69\xff\x04\xd8\x11\x3c\x43\x91\x41\xc3\xb9\x4c\x79\x69\xc2\x43\xe9\x51\x22\x9b\x43\x9c\xd2\x6c\x3e\xcc\x11\xae\xd3\x2e\xf2\xb3\x1f\xe9\xc9\xe3\x79\xfd\x88\x30\x54\x54\x95\xca\x67\x7b\x69\x1a\xd7\x4d\x37\x18\x80\xc1\xe6\x77\x58\xb2\x4b\xd6\xd8\x63\xb1\x80\x7d\xe8\xfd\xf5\xe2\xbf\xd1\xd1\x6f\x7f\xff\xf5\x63\xf9\xfe\x92\x19\x1b\x32\x92\x41\x2f\xd5\x06\xf1\xb3\xea\xbd\x37\x18\x80\xc3\x0c\xc2\xef\xac\x21\x3d\x01\xf6\x54\xc6\x2c\x65\xe9\x40\x8f\x8d\xa0\x3f\x8d\x87\xcc\x26\xc5\x00\xfb\xf7\x05\x5a\x24\x3b\xa4\x4c\x3d\xc9\xa4\xa5\x24\x52\x40\xc1\x79\xaa\xb6\xdd\x40\x6c\xbb\x12\xed\x26\xa5\xad\x68\x82\x9c\x9b\x2d\xa4\x54\xa4\x72\xf6\x30\x38\x02\x43\xb3\xd6\x63\x2d\x3d\xec\xcf\x3a\xe1\x27\x66\x11\x71\x06\x90\x6d\x12\xcc\x32\x9b\xfc\xa9\xde\x01\x9c\x12\x1c\xdb\x12\x83\xbb\x4c\xa8\x1f\xec\xda\x40\x5d\xbe\xbb\x1b\xbf\x32\x52\x49\x6f\xa4\x58\x57\x3d\x02\x07\xe0\xc4\x36\xb8\x3b\x2d\x34\x2c\x55\xcf\x86\xe0\xa0\x4a\xe3\x1a\x98\x17\x20\xad\x59\x3c\x01\x76\x10\x5e\xd6\x9a\x4b\xfa\xfd\x51\x8c\xf7\x34\x63\x2f\xf6\x32\x3d\x0f\x81\xbd\x0c\x51\x14\xc4\xda\x69\xd2\xab\x94\x5c\x24\x69\x57\xa9\x8f\x65\x4b\xab\x34\x42\x2b\x01\x4a\xb5\xc1\xd0\x00\x05\x69\x08\x7b\x8a\x47\x02\xfb\x47\x8a\x60\xe0\xd3\xc5\xec\xac\x7a\x84\x4a\x00\xcf\xe2\xce\x9b\x01\xb2\x1a\xd0\xca\x25\xc4\x5b\xf9\x3e\x50\x5c\xfe\xa4\xb0\x06\x4e\x48\x74\x06\xef\xb6\x88\xbc\x64\xa9\x6e\x5f\xf6\xbd\xb3\x8c\xb1\x8c\x1b\x36\x71\x9b\x75\xec\xa2\x86\x21\x0b\x78\x6a\xb0\xd6\x5a\xe2\xa9\xc4\xb0\x2a\xa0\x6e\x3d\x33\xab\x44\x88\x76\x17\xbf\x3e\xe4\x30\x22\x93\x6f\x66\x72\x1d\x51\xf8\xdf\x47\x83\xc1\x7f\x6c\xdc\xe4\x2a\xb3\xb3\xb2\x86\x4c\x93\x05\xb5\x01\x1b\x66\x53\x26\x97\xca\x12\x33\x46\x97\xfe\xf5\x5d\x9b\x5d\x59\xba\x5a\x83\x2e\x49\x80\x7a\x28\x08\x39\xf9\x06\x44\x79\x81\x5e\xff\xf1\xe4\x12\x5f\xb5\x23\x4a\xa3\x77\x64\x2a\xe4\x14\x09\x51\x08\x1f\x82\xa3\xa5\x1d\xdb\x5f\x46\x5c\x93\x39\xd7\x17\x51\xca\xb6\x5f\x64\xf1\xe2\x20\x21\x51\x35\x42\xfc\x15\xe3\x81\xe2\x27\xda\xe0\xd7\xbf\xb4\x83\x4a\x13\xc3\x54\xaa\xac\x66\x31\x51\x88\xd1\xfb\x85\x80\x5d\x4c\x37\x93\x59\x4d\x36\x9f\xa2\x99\xa4\x33\xc1\x7e\xf4\x20\xf2\x95\x26\x85\x69\x28\x09\xa6\x89\xb6\x2e\xd0\x72\x31\x7f\x08\xd2\x4a\x48\x63\x1d\xba\x92\xc5\x7c\xa4\x73\xaa\x17\x84\x82\x46\x1f\x9e\xbe\x3e\x1c\x9f\xff\x74\xf6\xee\x09\xe9\x6a\xd9\xe7\xac\xb7\x9c\x75\x21\x77\x8a\xfa\x18\x73\x44\x67\x50\x1a\x2d\xe6\xbb\xa5\x4d\x0f\x8d\x83\x12\xeb\xa3\xc6\x54\x28\xd3\x15\x35\x8b\x54\x4e\x4e\x75\x27\x62\x7e\x92\x14\x59\x42\xec\x0b\x3b\xb7\x83\x47\xb8\x60\xac\x76\x72\x69\xe6\x75\x8c\x12\xb0\x9b\x01\x8d\x49\xa4\x12\x50\x1d\x41\x5e\x02\xa8\xd9\x4a\x89\x89\xa0\x1e\x28\xe4\xbd\x37\x5e\xba\x87\xc1\xc6\x86\xb6\x5e\x61\xf7\x74\xdf\x82\x41\x9c\xbf\xd4\x9b\x87\xfe\xc5\xb7\xd0\x3a\x50\xf8\xfb\x7f\xf5\x2f\x7e\x42\xe5\x1b\x50\x88\xe0\xe2\xe6\xcb\x5b\xdb\x4a\x50\xb7\x55\x58\x9f\x00\x3b\x0a\xdb\xd8\xc7\x5a\x29\x89\x90\x2f\x64\x80\x2e\x0f\x23\x3d\x6f\xd2\x14\xb7\xb3\x64\x03\xec\x90\xc9\xfb\x3d\x2f\x51\x99\x8d\x5c\x69\x5e\x41\x3b\x71\xb8\x45\xa1\x2c\x86\x72\x07\x7f\xdb\x94\xa2\x73\x3d\x82\xf8\xb3\xc7\x89\xdc\x3a\xe9\x8b\x37\x2a\x96\x9f\x5a\xeb\x20\xdf\xa6\xc4\xa0\x2e\xb7\x7d\x8a\x9b\x61\xb0\x51\xaa\x2f\x10\x6c\x77\x9a\x37\x45\x67\xbe\x9d\xc8\x41\x1f\xde\xf7\xf7\xdf\x5d\x6c\x56\xe4\xa4\x49\x96\x43\xc5\x04\x63\xdf\x4d\x6b\xce\x56\x60\xba\xd9\x11\xca\x2c\xaf\xc1\x5a\x96\x57\x19\xbb\x6f\x00\x26\xe3\x7e\x5a\x03\x94\x74\xff\x0d\x02\x52\x75\x66\xd7\x45\x25\x28\x85\x57\x28\x97\x4b\xbb\x95\x52\x50\x07\x76\xb3\x7e\x10\x7f\x63\xc3\x62\x34\xa6\x1a\x26\xd5\xf4\xa8\x0f\x8b\x63\xd1\xaa\x79\xc5\x9d\x70\x79\x77\x46\x91\xdb\xe5\x6b\xb0\x89\xbc\x35\xfb\xe0\x89\x64\xff\xf8\xef\xe9\x87\x21\x3b\xea\x6c\x8e\xe7\xce\x31\x8c\x69\xc3\x97\x73\xd4\x33\x26\x76\x8d\x0f\x33\x77\x96\xf1\x39\xee\x51\xe9\x44\x2c\x39\xe2\x4a\xe6\x51\x92\x4d\xff\xbe\x93\x68\x33\x66\xcd\xda\x83\x24\xc7\x6d\xf1\x41\x9b\x39\x9e\x1a\x3e\x11\x03\x3d\x03\xb1\x81\x67\x0e\xd8\x32\x3e\x8b\xa4\x59\xe6\xc8\x58\x36\x3e\x02\x36\x5c\x70\x72\x4e\xfc\x85\xf4\xfb\xc6\x7f\xb7\x8a\x74\xd9\x0c\xcd\x67\x49\xb6\x3b\xcd\x17\x23\x36\x1e\x3c\xe6\xe5\xfc\x3d\x7c\x73\x74\x35\xe8\x2a\x1b\xb3\xe4\x9f\x9c\xd2\x1c\x01\x9b\x12\x19\x8c\x74\x06\x31\xce\x9f\xdc\x54\x69\x62\xe5\x4a\x54\xf6\xf8\x32\x77\xfc\x11\x27\x71\x9a\x54\xc9\x38\x3e\x34\x4e\x94\x8c\x93\xa9\x36\x93\xe7\xa9\x67\x9e\x43\x3e\xd5\xe3\x0a\x1d\xf5\xd7\xc1\x81\x37\x7c\x76\x68\x0d\x9e\x78\x83\xa7\xcf\xe0\xd0\x7b\xf6\xf4\x89\xa5\xfe\xdb\xb7\x06\xd6\xa0\xe7\xf5\xfb\xcf\x7a\x8f\xbd\xa7\x8f\x07\x56\xf6\xa5\x78\x2d\x5e\x5a\xe2\xe5\x1f\xb3\xc7\xde\xe3\xa3\x27\xbd\x81\xf7\xf8\xf0\x29\x1c\x78\x07\x07\x07\x96\xfa\xaf\x1c\xc5\xea\xf7\x86\xde\x93\x27\x4f\xad\xec\x1b\xf1\xae\x6f\xc9\x37\x7f\xcc\x0e\xbd\x67\x8f\xc5\xab\xe1\xe1\x11\x1c\x78\xc3\xa7\x03\x4b\xfd\x57\x0d\xe0\xf5\x87\x4f\x7b\xde\xa0\xff\xd4\xef\x5b\x5e\xff\x40\x3c\xf6\xfa\x4f\x9e\xf6\xc4\x73\xf1\xf8\x8f\x59\xcf\x3b\x3a\x78\xda\x3b\xf0\x0e\x0f\x9e\x94\x2c\xc0\x3b\x7a\x26\x57\x77\xf4\xd8\xf7\xfa\x07\x07\xde\xe0\xe9\x50\xfe\x7b\x70\xf8\x4c\x0c\xf5\x78\xd8\xf3\xfa\x4f\xbd\xc7\x07\x3d\xef\xf0\xc9\x63\xef\xe8\x49\x4f\x74\xb0\x06\x5e\x5f\xc0\x76\xe8\x3d\x1d\x5a\x07\xde\xf0\xa8\x38\x70\x4f\x34\x91\x23\x1f\x3c\x2b\x81\x6e\xe0\x0d\x06\x62\x98\xc3\xc1\x53\xef\xe0\x70\x28\xfe\x5f\xbe\xe9\xeb\x85\x0f\xa7\x3d\xaf\x3f\x38\xf8\x63\x26\xc6\x79\xd6\x3b\xf0\x0e\x0e\x4a\x16\x2f\xde\x3d\x13\x73\x0c\x0f\x7d\xaf\x3f\x38\xf4\x06\x83\x43\xf9\xef\x70\x78\x24\x56\x7f\x70\x38\x84\x85\xb9\x7b\x03\x6f\xd0\x1f\x8a\x15\x3c\x1b\x4e\x45\x6b\x89\xa2\xe1\x63\xeb\xa9\xf8\x6f\x19\x8a\x06\x4f\x1e\xf7\xc4\xf7\xf3\xc5\x9a\xbc\xc1\xd1\x41\x4f\xa0\xd8\x3b\x78\xd6\x13\xaf\xc4\x1b\x31\xc4\xe1\xb3\xde\x60\xe8\x0d\x8e\x06\x65\x43\x3c\xee\x3f\xed\x0d\xbc\x67\x83\x43\xdf\x13\xcb\x3b\x78\xea\x0d\x8e\x9e\x79\x8f\xc5\x92\x9f\x1c\x7a\x4f\x9f\x89\x0f\x76\xf0\xcc\x3b\x14\x63\x0e\x9f\x1d\x79\xcf\x86\xcf\x7a\x9e\xa4\x8b\xfe\xe1\xe3\x4b\x31\xef\xb3\x3f\x04\x49\x8a\x21\x87\x4f\x04\x61\xbc\x7c\xec\x1d\x3d\xd5\x7f\x0b\x62\xe9\x7b\x4f\x8e\xc4\x1f\xba\x51\xdf\x92\xef\xe5\x7f\x92\x87\xfe\xd0\x3b\x1a\x1e\x89\xe1\x04\x75\x3e\x7d\xe6\x1d\x3d\x7e\x6c\x3d\xf3\xfa\x47\xcf\xac\xa1\xf7\xf4\x70\xf8\x6e\x70\xe4\x3d\xb3\x0e\xbd\x67\x47\x70\xd0\x57\x84\xd9\xd7\x13\x88\x6f\x33\x78\xea\x0d\x0e\x0e\xac\x67\xde\xe1\xe1\xa1\x55\xd2\xc0\x92\x0d\x9e\x8a\x06\x4f\x07\xd1\xc0\x7b\x32\x7c\x6a\x0d\xbd\xc1\x01\x14\x9b\x69\xf0\xcc\xd2\xff\xa8\xcf\x10\x4f\x7b\x70\xf0\x87\x09\x15\x08\xa3\xc8\x06\xf6\xbf\xbd\x79\xf3\x26\xcd\xee\x9f\x75\x14\x9a\x32\x18\xe3\x8c\x5c\x67\x43\x43\x66\x08\x2f\xf4\x13\x19\x37\x37\x83\x21\xee\x61\x78\xd9\xe3\x64\x32\x51\xb1\x99\xed\xc2\x35\xec\xd8\x8b\x5d\xe0\x60\x95\xab\x2c\x06\x44\x94\x4c\x5f\x6b\xde\xe6\xd4\x89\x63\xd9\xcb\xfa\x55\x03\xd5\x64\x4f\xe6\x06\x6b\x73\x5c\x79\x87\x25\x57\x2f\xbb\x24\xa2\x23\xdf\xa9\xfa\x4d\x72\x86\x5a\x77\xee\xa6\x22\x1f\x5b\x85\x23\xa6\x06\x5e\x44\xf5\xe0\x58\x2d\x9d\x1e\xd2\x8d\xc2\x5e\x51\x32\x0f\xc8\x15\xfe\x2d\x64\xe1\x59\xa4\xcc\x90\x16\x5e\x8d\x82\x31\x3a\xe1\x29\xb0\x84\xa8\xd3\x77\x7f\x9f\x9e\x82\x7e\x2b\x4b\xa6\x06\x0c\x29\xa5\x0f\xca\x29\x3c\xd0\xeb\xb7\x4f\x53\x81\x08\x1a\xb9\xa0\xc6\x99\xd1\xf5\x90\xb2\x6e\x69\x6d\xbd\x30\x85\x75\x95\x3b\x62\xd6\x5d\x7e\x81\xbe\xca\xbe\xee\x7a\x1f\x41\x9f\xb2\x94\x38\x0f\xe3\x00\x5f\x7d\x72\x96\x72\x9e\xa5\xe2\x2e\x09\x3e\x8b\x16\x34\x39\x54\x11\x24\x12\xab\xef\x72\x1b\x54\xf3\xb0\xe4\x0b\xc7\xc1\x97\x2d\x5b\x56\x1c\x82\x54\x1b\xa9\x55\xe0\x97\x6f\xf4\x2e\x9b\xed\xb1\xdc\x55\x9a\x48\xda\x92\x45\x57\xf7\xe2\x43\xd0\x67\x3f\x75\xe9\x7e\x2b\xcc\xdc\x03\xee\x4c\xe1\xc5\x6f\x8b\xb8\xc6\x55\x64\xa7\x54\x45\xe2\xbe\x15\xca\x64\x05\xe1\x6f\x8b\xaf\xfa\x25\x64\xe7\xfb\x05\x2d\xf7\x7f\x53\x76\xf9\x83\x21\x4c\xbb\xeb\x0a\xa8\xd3\xd7\x87\x55\xae\xbc\xa2\x4b\x10\x32\x78\x16\xa5\x02\x6d\x4b\xda\x2d\x30\x5c\xf0\x29\xa1\xe1\x1f\x49\xbb\x07\xfd\x26\x4d\xb0\x65\x67\x7c\xf1\xf2\xdd\x5d\xbf\x47\xfb\xd0\xa5\x92\x7c\x8c\x6e\xfa\x56\x05\x52\x3a\xab\x4f\xeb\xa3\xfb\x89\xf1\x6d\x63\x59\xbf\xfb\xe5\x87\xf7\x9f\xbf\xbc\xfb\xfa\xea\xc3\xcb\x2f\xbf\xbe\x7e\x7f\xfc\xe2\xf8\xed\x87\xf7\x5f\xbf\x7c\x7a\x97\xc4\x41\xaa\x7b\xe4\xbd\x29\x9f\xa9\xa3\x5a\xe9\xcc\x90\xa1\x77\x53\x14\xcd\x2d\x4c\xc8\x1c\x61\x44\x2d\x4c\x28\x3a\x47\x94\xc6\x1e\x0f\x0e\xe9\x04\x71\x1b\xd8\x5f\xcf\x22\x88\x2f\x52\xcb\x7e\x45\x7c\x79\xfd\x90\xb9\x36\xf4\x1b\xb0\x9f\xb8\x10\xe1\xc3\x91\x76\x61\xca\xbc\x04\x8b\x5f\x6f\x90\x9a\x9b\xdf\x14\x9f\x96\x3f\x79\xa2\x2c\x98\xa2\xfd\x90\x39\x10\xaa\xed\x7f\x4e\x08\xef\xea\xfc\x2a\xa7\xd7\x97\x1f\x3e\xfe\xe3\xd3\xdb\x9f\x7e\x3e\xce\xd1\x6a\x8e\x42\xd7\x21\xce\xff\xff\xff\x4b\x6b\x97\x55\xd3\xfe\xe3\xf5\x8b\x4f\x85\x80\x60\xc1\x1e\x7e\x86\x6c\x1a\xbe\x24\x74\x5e\x6b\x41\xce\xd3\x46\x9d\x74\x72\x56\x4f\xfa\xdb\xeb\x4f\x9f\xdf\x7e\x78\x5f\x15\x7e\xbc\x36\x0e\xbf\xbb\x3d\x9f\xc2\x80\x4f\xb0\x0f\xe5\xb9\xd1\xff\x5c\x1f\xf8\xbb\xbd\x9e\x65\x97\xa1\xe6\xa7\xb7\xc7\x5f\x3f\xff\xfc\x22\x59\x78\xaf\xf7\x3f\xd7\x07\xc9\x0e\xe6\x74\x51\x0c\xbd\x7b\xb6\x19\x37\x77\xde\x4b\xbd\x86\x9f\x1b\xc1\x88\x4f\xa5\xbb\xa5\x17\xc7\xf3\x3d\x74\xb4\xe5\xbb\x4f\xff\x71\xf4\x77\xce\xcb\x3d\xdd\xc5\xa0\xfb\x92\x8c\x81\xfc\x41\xb6\xb1\xbe\x54\x26\x98\xf4\x58\x47\x21\x46\xad\xf2\x21\xb5\x05\x55\x1d\x8b\xe3\x93\xf9\xb2\x77\xb6\xe0\x5c\xd8\x59\x66\xa6\xfc\x32\x05\xff\x0f\xe7\x67\x04\xd2\xe0\x18\x5d\x0b\x72\xe4\x21\x8f\x74\x88\x67\xc5\xa1\x4d\x9c\xd7\xd0\x60\xd0\xe9\xec\x81\x7c\xda\x1d\x59\x70\xe9\x48\x3b\x55\x4b\xb4\xd4\x6f\x8b\x13\x2b\x5e\x4a\x19\x02\x72\x0a\xc5\x4b\xd1\xf5\x83\xec\xda\xe9\x9c\x77\x00\x86\x99\x18\xa7\x2c\x52\x1b\x0e\xcf\x2b\xd2\x36\xca\xc5\xde\x4b\x32\x0f\x51\xa0\xc1\xdb\xed\x10\x80\x51\xb3\xbe\xda\x13\xf1\x4e\xab\xfb\x4c\x28\x5d\x02\x8b\x91\x19\xe2\xd3\x10\x4f\xac\x2b\x84\xb9\x75\x45\x09\x9e\xac\xb3\xd6\xfa\x18\xf6\x12\x9d\xcd\xf8\x07\xb9\x9d\x0a\x61\x79\xa6\x7d\xa8\x55\x9c\xdb\x74\x0a\xf2\x9d\x08\x57\x17\xc3\xd4\xf6\xe2\xa9\x55\x7c\xd0\x44\xd8\x38\x43\xb9\x4c\xa2\xb1\x4f\xf2\x89\xa0\xe2\x00\xe5\x16\x64\x68\x3c\xb3\xa2\xe6\xd4\xf9\xcd\x70\xdb\x02\xaf\xbc\x13\xbf\x45\x41\x8f\x22\x46\x16\x34\x7b\xaf\xf6\xc3\xf0\xdc\xfe\xd5\xf0\x8c\xfe\x1c\x7d\x29\xe7\xb9\x72\x7d\xed\x8f\x16\xab\x0f\xd0\xf3\xa9\x50\xe2\x13\xc2\x20\xa0\x8a\x15\x74\xd6\x22\x44\x77\xf9\x67\xbb\x78\xb2\xb4\xe7\xba\xcd\x2e\xe8\xa8\x8a\xe6\x2d\xa6\xa2\x23\x3b\x8e\x89\xbf\x43\x38\x9e\x58\xb5\x19\xa7\x5b\x14\x5d\x47\xa4\x35\x7d\xb7\x78\x11\xd5\xc8\x2b\x47\x57\x4b\x76\x57\x22\x69\x33\xa1\x8d\x0b\xac\x36\xcf\xf2\x8e\xf8\x54\xe1\x7c\x9f\xe3\x74\x85\x6f\x86\xd3\xfc\x42\xea\xf1\x5a\x43\xd7\x6d\x03\x14\xd7\xff\x3c\x83\xb2\xf0\xe5\xec\xe9\x86\xf9\x38\xeb\x9d\x70\x64\x3e\x57\x2a\x54\x67\x0e\x19\x0b\x71\x45\x65\x96\x7b\xfe\x40\x95\x60\xad\xf5\xa1\xfa\xc0\x26\x7c\x8a\xa8\xa5\x41\x4a\x9b\x1a\xf3\x68\x41\x61\x14\xfe\x81\x7a\x57\x84\x06\xb5\x28\x8d\x79\xf3\xc9\x89\x4d\x66\x21\x7f\x49\x16\x32\x1b\x4c\xa6\x49\x9c\xde\xd3\xe7\xaf\x8d\xed\x4b\x49\x85\xcd\x0b\xda\x94\x90\xec\x2e\x6c\xa3\x90\xf1\x9e\x4f\xa2\x08\xf9\xdf\xa6\x6e\xcd\x6f\xbf\x5c\xfe\xe7\x2b\xfc\xe9\xb7\x0a\x29\x8b\xe4\x59\x79\x75\x28\xcf\xa1\x29\xe8\x8f\x21\x0f\x2f\x51\x8f\xf9\x94\x44\x11\x3c\x8b\x52\x59\xd1\x1c\x4e\xde\xeb\xc4\x1d\x95\x19\xd8\x63\xe1\x1f\x32\xb0\x4b\x36\xee\x45\xe8\x9c\x27\xbf\x38\x99\xc7\x3f\x5e\x9a\x43\x28\x3f\x0a\x11\xe6\x9f\xc3\x3f\xd0\xcb\x24\xb9\x4b\x86\x3c\x49\x2a\xfc\xaa\x07\x16\x0d\x92\xc3\xa9\xaf\x6a\x90\x77\x62\xf8\xfc\xc3\x63\x32\xaf\x3d\xb9\xca\xcc\xdf\x78\x7a\x55\xb2\x3c\x7d\x8a\x55\x17\xfc\x99\x71\x53\x3e\x2b\xc9\x4b\xff\x2a\xd0\x5f\x23\x9b\x13\xe1\xf1\x38\xae\xe3\x64\x58\xad\xfa\x19\x97\x5c\x18\x0c\x84\x39\x66\x5e\xaa\x40\xfd\x24\x36\x3e\x5d\xa0\xe1\x59\x6d\x50\xf8\xfd\xc5\x80\xe6\x76\x42\xf7\xad\x94\x49\x12\x7c\xf0\x9a\x08\xaf\xfe\xf8\xe9\xf0\xfd\x8b\x57\x5d\x12\x23\x4a\xb3\xd5\x93\x18\x38\x09\x8f\x02\xa7\x50\x68\x24\x79\x67\x6a\x6c\x98\xda\x35\x8d\xc5\x0e\xba\xa7\x5f\xa4\x8b\x7c\xc4\x1e\xe3\x27\xba\x88\x4d\x4f\x2e\xc5\x92\x18\xeb\x25\xe4\x97\x44\x66\x26\x0b\x92\x03\x56\x8a\xc7\xba\xd2\x2b\x62\x66\x9d\x5a\x9a\xd2\x90\x71\x49\xe1\x92\xec\xec\xe9\x26\x0d\xc5\x57\xd2\xde\xb4\x6c\xf6\x60\x32\x4a\x0e\x34\xe3\x4d\xbb\xd7\xb2\x2c\xe5\x01\x3f\x8d\x9a\x96\xfe\x68\x1b\xc9\x05\xc9\xc9\xcf\x0d\xc7\xc1\xa6\xb6\x6d\xb2\xe7\x77\x5a\xee\x79\x0e\xcf\x7a\x18\x5e\x3e\xfc\x7e\xff\xc7\x3f\x5f\x85\xd7\x6f\xc9\x1f\xeb\xef\xf7\x0a\xd3\xec\xe1\x53\xa5\x8c\x18\x64\xd1\x62\x12\x9e\x2f\xed\x74\xf5\x92\xdc\xb9\x66\xd2\xa7\x43\xca\x54\x55\x91\xa0\x2a\x1e\x06\xec\xaf\x76\xe3\x8a\x4e\x33\xac\x92\xc3\x33\x33\x81\xac\x7a\xa1\x6f\x76\x66\x9b\x98\x0a\xd8\x5f\xe7\x10\xeb\x04\xcc\x66\x15\x1d\x16\xf6\xe2\xfd\xdb\x3b\xf7\xb9\x3d\xf5\x0e\xeb\x2e\x8e\x45\x47\xf6\xad\xb4\x5a\x34\x98\xf9\xff\xf8\xf2\xe3\x7f\xdd\xa5\x04\xd8\x66\xf8\x77\xbd\x34\x6b\x16\xe6\xed\xe4\x7e\x29\x21\x2b\x16\x12\x64\x33\xcb\xcb\x13\x29\x54\xab\x3a\x49\x99\x67\x19\x55\x52\xaf\xb4\x4e\x58\x41\xb7\xe1\xf0\x4c\x6f\xaa\x6e\x10\x9a\xb5\xd6\x6d\xca\xc2\x61\xeb\x06\xcd\xbe\x14\x51\xaf\xb5\x23\x16\x11\xa4\xdf\xd4\xdc\x3b\x3e\xff\xe9\xe3\x7f\x1c\x7d\xd8\x5f\xd3\xdc\x13\x66\x44\x99\x9f\x91\x4f\x11\xac\x77\x9b\xf3\x0a\x37\xac\xb5\x76\xc5\x9f\x61\xab\x62\x3b\x59\x6f\xe7\x14\xb2\x17\xa6\x5a\x53\xcb\x78\xca\x18\x42\xbb\xa9\x56\xd4\x8b\xe4\xc9\x3a\xa5\x04\x4d\xc8\x78\xa1\x88\x5d\x17\x46\x54\xc3\x86\x4c\x3d\x0d\x3b\x17\xf4\xde\x29\x9e\xa7\xc9\xf7\x6c\xb4\x98\x6f\xe5\x13\xe0\x67\x24\x58\x6e\xaf\x5b\xa0\x74\xc3\xac\xe9\x1a\x50\x03\xd4\xbb\x06\x5a\x65\xb2\xdb\xea\x7d\x6b\x9d\xaf\xb0\x95\x29\xb9\xaa\xdb\xc7\x6d\xfc\x12\x0f\xba\xd5\x83\xc6\xad\xde\xb6\x72\x9a\xe9\x59\x91\xcf\x9b\x31\x3a\xf3\x30\x67\x0e\xce\xe3\x7d\x0d\xf2\x75\x42\x1b\xd3\x7e\x37\x82\xdf\x6a\x7d\xb5\x13\xe3\xf8\x36\xae\xa5\xa2\xe0\x5d\x43\x78\x93\x19\x99\x50\x38\x9f\x2e\x7b\xf2\x9f\x87\x17\xdd\xd7\x7c\x30\x18\x2c\x3e\x7d\xea\x62\x72\x26\xc9\x8e\x62\xa7\xeb\x6c\xc7\x44\xed\x63\x8a\x31\x1a\x4e\x60\x92\x1f\x4b\x1b\x94\x1e\xe1\x4f\x72\x3b\x25\xc1\x92\x99\x33\x2e\x2b\x1f\x3b\x8d\xc4\x03\x09\x95\xde\x15\x42\x39\x8c\x35\x4c\xcd\xa9\x87\xb1\xf1\x05\xac\x56\xcd\xdc\x2a\xf3\xcc\xae\x2d\x9c\x9f\x6a\x91\x29\x9e\x6f\xe0\x39\x83\xfe\x85\x50\x46\x71\x60\xe0\x89\x13\x8b\xd5\x36\x54\x9d\x80\xdd\x4f\xfb\xba\x6a\xfd\x35\xa5\xf3\xc0\xeb\x90\x35\xcc\x30\xb8\xf7\x19\x86\xf7\x3e\xc3\xc1\xdd\x66\x38\x23\x54\x1f\xe7\xd7\xcc\x71\x58\x3f\x47\xb5\xb1\x5d\x42\xce\x51\x88\x11\x6b\x76\xd3\x04\x21\xe3\x10\xcb\xb4\x8a\x2e\xae\x1a\x8c\x2a\x37\x09\x25\x5c\xef\x10\xcd\xa9\xd5\x03\xc9\x6b\xdd\x44\x74\x2f\x87\xf1\x66\x55\xcd\x96\xf1\x37\x14\xaf\x03\xc8\x61\x0f\xcb\x5a\x65\x99\x56\x41\xa1\x91\x81\x20\xdf\xd0\x3c\xce\xb7\x67\x68\x32\x93\xa5\x7d\x33\xcd\xcd\xd3\xd2\x0f\xd0\xc6\x83\xd1\xfd\x03\xc1\x33\x14\x35\xd4\x6b\xad\xa2\xa6\x39\x09\xb1\x51\xd0\xe3\x1b\x3d\x1a\x09\xb3\xc0\xf1\x94\x6a\xd4\xc4\xeb\xfa\x8a\x8f\xf5\x8d\x6b\x96\x69\x9e\x51\xc3\xb9\x2a\xe8\xe5\x08\xd8\xd7\x43\x1b\xd8\x4f\xfb\xf5\xeb\x4d\x75\xe5\xe8\xda\x00\x7a\x2d\x7a\x9a\xdb\x4a\x96\x6a\x11\x2a\x1d\x5d\xfc\xf0\x0e\x86\x52\x8a\xa4\xcb\x02\x0b\x78\x20\xef\x61\x59\xfc\x2e\x26\xf9\x59\x18\x45\x21\x43\x3e\xc1\x81\x01\x45\x9e\xf7\xaa\xd6\x52\x15\xef\x83\x7e\xbf\xef\xf5\xfb\xf9\x8a\xfa\xb3\x9a\xd8\xed\xfa\x37\x9b\x45\xff\xe0\x5f\x07\xfd\x83\x2d\x44\xff\xf0\x5f\x07\xfd\xc3\x2d\x44\xff\xc1\xbf\x0e\xfa\x0f\xee\x15\xfd\x6d\x3c\x1e\x9b\xf7\xba\xe7\xac\x8d\x96\xf6\x4a\xe0\x3f\xbc\x59\xc2\xcf\xdf\x9e\xfd\xf6\x8a\x3f\x6e\x7d\xf1\x51\xe3\x4d\x43\xac\xe6\xbe\xa1\x7c\xee\x71\x7d\x84\xc5\x1a\x57\x23\xdd\xd1\xea\x0c\xfc\xd6\x9f\x6a\x1f\xfa\x11\xdb\xef\xe9\x2d\xfb\xc0\x5f\xed\xef\x6f\x9f\x52\xfe\xe1\x6d\x45\x21\x47\x53\x9a\x13\x98\x9a\x9c\x49\xc5\x30\x10\x17\x28\x05\x26\x75\xa1\x68\x73\x4a\x98\xaa\x6c\xc6\xf3\x10\x45\x01\x43\xbc\xd6\x5d\xdc\x10\x74\x20\x99\x4a\xb1\x24\x82\xb0\x81\x93\xec\x06\x13\x6d\x68\x5b\x53\xc8\x7a\xd9\x82\x74\xd5\x5c\xcf\x2e\x8d\x8b\x53\x63\xd5\x71\x0e\x53\xcd\x58\xba\x7d\x63\x92\x36\x4e\x57\xe3\xee\x4d\x17\x9a\xca\x2c\x3a\x5e\x6c\xb1\x65\x69\x75\xec\x7a\x86\xd5\x2e\x9e\xa4\xaa\xb2\x44\x16\x8d\xf1\xdd\x0f\x45\x34\x16\x7d\x81\x65\xe6\x91\xf8\x62\xed\x9d\x70\x65\x44\xd0\x2a\xe5\xb3\x18\x08\xf1\xb8\xc5\xe1\x6b\x6e\x90\x76\x5e\xfb\x63\x9d\xb3\x53\x3c\x4b\xd3\x93\x76\xb9\xf2\x47\xa3\xdb\xa0\x39\x19\x63\x23\xf1\x25\x9d\xea\xc8\x94\x13\x56\x91\x4f\x3e\xee\x6e\xb9\x55\x16\xb9\x33\xfa\x41\x97\xdd\xf8\x91\x44\xa1\xbf\xdc\x60\x22\xdf\x64\x11\x06\x48\xde\x79\x25\xb3\xf9\xfe\x8d\x2e\x22\xd4\x63\x73\xe4\x87\xe7\xe6\x46\xc1\x0d\x25\xf8\x39\x3f\xbf\x7c\x67\xbd\x91\x8a\x8a\x6b\x57\x96\x1d\xb2\xf2\x79\x7e\xa9\xa2\xee\x38\x73\x9f\x1e\xc8\xd7\xc1\x8f\xeb\x89\x9b\x6c\xde\xca\x8d\xfd\x69\x11\xc9\x7d\x99\xbf\x2b\x46\xbf\x00\x99\x4e\x71\xe3\x96\x84\xd6\x96\x6b\xd9\xc5\x72\xd3\x14\x29\x57\x47\xf7\x08\xb5\x4d\xd0\xd6\xdb\x57\xeb\xf3\xf9\x3c\x53\x17\x63\xd5\x60\x22\xb5\x08\x94\x96\x97\xff\x89\xfe\xe7\xdf\xa3\xc8\x9a\x08\xda\x82\x1c\x59\xd0\xfa\xf2\xe5\xed\x2b\x2b\x3c\xb7\xf8\x34\x64\x96\x14\xa0\x56\xc8\xac\x08\x9d\x73\x0b\xcd\xe6\x7c\xe9\xb5\xd1\x5d\x5b\x78\xea\xcb\x95\xdd\x76\x57\x91\x74\xff\x6e\x3a\x41\x31\x5b\x8b\x72\x71\x36\x0b\xe3\xf8\x8b\xb8\x12\x43\x95\x90\x0a\xd9\x5b\x7c\x09\xa3\x50\xc5\x24\x14\x0a\x37\x68\xe8\x2a\x0a\x10\xe9\x15\xa7\x09\x3d\xa3\x19\x7c\x86\x97\x85\x8b\xc1\xba\xdf\x8f\xf2\x1d\x00\xba\x90\x37\x23\xdc\x15\xd0\x22\xb7\xaf\x00\x8d\x22\xad\xde\x55\xe1\x5d\x2b\x95\x55\xcb\x79\xa9\x0b\xc1\x57\xf3\x09\xc1\x82\x70\x90\xc7\x91\xdc\x6e\x71\xd9\xfe\x5e\x51\xc6\xaa\x06\x36\xc4\x04\x2f\x67\x64\xc1\xda\xd5\xeb\x3d\x8c\x75\xde\xec\xed\x07\x66\xef\x27\xc5\x74\x4f\xec\x17\x14\x59\x4b\xb2\xb0\xd8\x42\xff\x71\x05\xb1\xcc\x6f\x0d\x50\x84\x38\x52\x1b\xf8\xc5\xcb\x77\x16\x27\x17\x08\x3f\xdf\x40\xb6\x6f\xb5\xfa\x54\xf6\x69\x32\xcf\x32\xbc\x52\x2d\xb0\xfa\xab\x89\xbf\x0e\x75\xb1\x26\xd5\x34\xfb\xfd\xf4\xaf\x39\xa4\xc6\x05\x9c\x24\xb5\xc7\x43\xd7\x11\xd8\x61\x4d\xee\xab\x46\x79\x67\x14\xd4\x24\xc1\xe6\x78\xba\xba\x96\xac\x96\x55\x97\x33\xc8\x07\x41\xbc\xb9\x4b\x2e\x55\x0c\x41\xd0\xa3\x55\x86\xd9\x8d\x2c\xca\x8f\xb7\x60\xf5\xa2\x86\xf9\x45\x95\x6e\xdb\x92\x24\xec\xea\xbb\xdc\x9a\x53\x8a\x2b\x62\x1d\xd3\xbf\xee\xe8\x86\xc9\x58\xe6\x1d\xad\x79\xa1\xa3\x3d\xbc\x31\xff\xeb\x1f\x4f\xae\xfe\x8b\xfd\x58\x71\x2d\x4a\x4b\x63\xbe\x4d\x11\x83\xaa\x4b\x9d\x41\x72\x0f\x99\xe4\x57\x91\xa5\x11\xa1\x6b\xd9\xbd\x4b\x6e\x29\x6b\xc1\xef\x5a\x5c\x37\x57\x94\x43\xa4\xc6\x50\xb4\xf3\xc9\x36\xed\x0b\x2c\x55\x54\x53\x8a\x22\xeb\x58\x30\x70\x56\xad\xc2\xb7\xd7\xbd\x0a\x08\xa8\x0f\x7d\x2b\xc2\x3e\x1d\x34\xe9\x66\x59\x27\x43\xfb\x68\x98\x01\x28\x75\x52\xac\x71\xc5\x78\x6e\xf0\xf7\xe8\x4a\x89\xc0\xd6\xba\xc6\x9a\xb8\x6c\xb8\x9c\xb1\xf2\x9a\xd1\x9c\x36\x5b\x77\x17\xe8\xbf\x4c\x65\x8f\xc7\x6d\x2b\x7b\x3c\x29\x56\xf6\xc8\x6a\x58\xb2\xb8\x87\xfc\xbe\xd6\xdb\x57\x5d\xcb\x7b\x98\xff\xbd\x4c\x0f\xd2\x29\xe9\xf3\x31\x78\xb2\x91\x42\x1f\xb9\x7d\xd6\x42\x9b\xd0\x85\x3f\xcc\xaa\x77\xef\x54\x47\x6d\xed\x12\x20\xdd\xd7\xdd\xb2\x24\x48\x57\x18\x5a\x87\x86\x35\x2a\x28\x55\xa6\x44\x44\x70\x8d\x61\xf3\x52\xbc\x56\x5f\xa3\xd4\x9c\xb8\xbb\x5e\xbf\x60\xdf\x93\x52\xdf\xa8\xba\x2f\x58\x0d\xb6\xbe\xb0\x0a\x5c\xfd\xa9\xaa\xdf\x5d\x55\xff\x52\x57\x92\x7a\xed\x15\x7d\xa7\x7a\x7a\x07\x9e\xd6\x70\x5b\x6c\xc9\xfd\xb5\x46\xd9\xd6\x27\x67\x0d\xb7\xd7\xb6\x0e\x2f\xed\x74\x87\x6c\x5a\xe1\xef\x68\x23\xa8\xa0\xdb\x07\x37\x12\x9e\xbc\x7e\xfa\x8f\xd9\xf1\xd1\x59\x4d\xf8\xa8\xb9\xa9\x3f\xf9\x37\xae\x02\x1d\x9f\x63\xd4\x9b\x13\x38\x8e\xe9\x57\x77\x18\xde\xc9\x86\x88\x42\xb6\xb6\x0d\x71\x57\x15\x3a\xbd\x31\x05\x67\x57\xda\xfe\x66\xd4\xfb\x06\x95\xb4\xb8\xb8\xca\x03\x8e\xa2\xc1\xe2\x19\xbd\x35\x9b\x27\x99\xe5\x19\xa6\x49\xcc\x10\xe2\x07\x6b\x42\xd4\x70\x33\x76\x55\x3d\x16\x53\x78\x7c\xdd\x6a\x2c\x03\xa3\xa4\x46\x85\x5b\x8c\xcd\xd5\xbe\xf1\xe5\x46\x31\x2f\x2d\xde\x64\x2c\x5e\xbc\x49\x5f\x05\x9c\xbe\x1b\x58\x5e\x3f\x54\x7c\xc8\xcd\x69\x5d\xd5\x69\x88\x5e\x50\xe5\x69\xc8\x9a\xd7\x72\x76\xe2\x9d\x55\x78\x57\x6b\x93\xbb\xb9\x35\xea\x0f\x65\xd2\x5e\x21\x7f\x0d\x67\x6a\xc8\x9f\x16\x66\xd8\xf0\x6e\xcd\x6d\x0c\x9e\xbe\x1c\xab\xfe\x88\xbe\xaa\x97\x39\xca\x5d\x93\xf2\x6b\x52\x5b\x6a\x96\x5d\x91\x2a\x57\xd2\xb4\x9d\x9b\xc2\xd3\xee\x16\x1d\x87\xab\x8e\x9d\x8a\x9e\x8b\xae\x85\x98\x8a\x7c\xae\x25\x40\x05\x67\xbd\x72\xc5\xeb\xc9\xe3\x80\x82\x19\xc4\x70\x82\x66\x09\x05\xaf\x7f\xcf\x44\x55\xe9\x2a\x33\xd7\xbd\xdd\x22\x51\x5e\x7e\xa1\xdb\xb4\x59\x73\xa8\x1c\xf3\x1b\x76\x7a\xd4\x1a\x3e\xa9\x0b\x7f\x41\x7c\x91\xd6\x89\x84\x25\xd1\xbe\x37\xe2\xcd\x50\x0d\xf2\x37\xbb\x1b\xed\x23\x75\x0b\x45\x12\x03\x71\x92\xe8\xff\x75\x2e\x8a\xc3\x82\x2f\xa3\x84\x1a\x1f\xc7\xcd\x0f\xea\x22\x2e\xda\xbb\x2c\x72\xc4\xd1\xa6\x60\x79\x49\xb7\xb6\xc5\xcb\x4b\xba\x6e\x94\x5f\xf4\x81\xfd\x3a\x08\x4b\x2a\x65\x36\x2d\xa4\x5b\xeb\x0d\x41\x9c\xcd\x63\xfc\x7d\x81\x64\x58\x4e\x6d\x25\xdb\x7e\xda\x28\xee\x52\xda\xf6\xb0\xa4\x3a\x46\x16\x71\x8d\xe6\xde\x77\x8a\xb7\xd2\xac\x57\x84\x83\x97\xda\xd1\x92\xc7\x52\x16\x6a\xd5\xea\x5f\x04\xee\x34\x89\xc4\x47\x9e\xf5\xf0\xb7\x39\x8f\x5b\x1f\x01\xeb\x7a\xdd\x06\xfd\x4d\xfa\x6b\x72\xf8\x9c\xb7\x15\xfd\x47\x19\x4c\xae\x2d\xf0\xcd\xff\x3a\x9e\xb4\xdf\xe1\x66\xe3\x64\xed\x0b\x76\x9f\x0b\x2f\x71\x25\x36\x12\xc4\x3a\x65\x10\x9b\x49\xab\xe1\x93\x6f\xde\x69\xf6\x24\xe7\xa2\x7a\x48\x42\xca\x9e\xa5\x7f\x3f\x74\x92\x72\x1c\xfe\x2b\x90\x41\x1b\x4f\xe5\xd3\xb5\x3c\x95\x4f\xc0\x53\xf0\x0c\x1c\x75\xf5\x49\x1e\x80\x43\xf0\xb8\x45\xa9\xf8\xf6\x66\x42\xbd\x27\xfb\x78\x8a\x28\xb2\x20\x45\x16\x26\x62\x8b\x33\xaf\x22\x9f\xa4\xe4\xa3\xdd\xc5\xaf\xb9\x5e\xf4\x83\xbe\xda\xa2\xad\x67\xf3\xe2\xf2\x5b\x65\x32\x5c\xa3\xb3\xff\x82\x87\x1f\x26\x77\x08\x7e\xd8\x50\x0a\x43\xf1\xd8\xfd\x0e\xa1\xac\x77\xc8\x7b\xf8\x05\x2d\x37\x95\xf6\xf0\x0b\x5a\x5a\x84\x5a\xe7\xfa\xee\xec\x86\xf4\xb4\x74\xf0\x7c\xe5\xf5\xda\x09\xaf\x30\xd1\xb9\x99\x28\xfa\xc7\xc0\x8e\xd0\x39\xef\x71\x1a\xce\xf2\x00\x6a\xc0\x32\x81\x66\xe6\x69\xb1\xde\x8d\x49\xa4\x08\x82\x50\xd0\x20\x8c\x12\xc5\xaf\xe1\x6a\xf2\x8a\x98\xf9\xa3\xdc\x05\xe3\x45\xec\x34\x66\x0f\x67\xc2\x7c\x8f\x89\xa5\x08\xc4\x82\x7a\x0c\x60\x21\x1c\x58\xd0\xba\x40\x4b\xeb\x2a\xe4\xd3\x38\x7f\x39\x75\xcb\x40\x5f\xde\xdf\xb3\x91\xa8\x93\xb2\x0b\xd4\x92\x72\x98\x77\xfa\x0c\x76\xb6\x3a\x4e\x2a\x1c\x53\x8c\x0c\x19\x2f\x1f\x34\x89\xc8\x6f\x17\x9a\x59\xdc\x40\x5d\x2f\x9d\xcd\xc6\x8b\xb7\xbf\x72\xb6\xf5\x8d\xc0\xff\x64\x4a\x1e\xd6\x56\x56\x53\x8d\xbe\x59\xae\x47\x71\xe3\xff\xfd\xb3\xbc\x4a\x69\xdd\x44\xd5\x4d\xb0\xb1\xdf\x4c\x11\xd7\x6e\x8c\xac\x1a\xa6\x92\x5b\x09\x8b\x2c\x5b\x7f\x89\x6e\x3e\xdd\xba\x34\x8d\xaa\xbc\x0c\xc8\xc9\x59\x1e\xf4\xdf\xf2\x25\x67\xd7\xcd\xb5\x58\xd7\xb9\x99\x27\x6e\x59\x51\x33\xe1\xe4\x8d\x51\x52\x29\x56\x99\x63\xf2\x47\xb9\x44\x95\x12\xbe\xdf\x06\x23\x99\xfd\xb0\x1e\x1b\x6f\x2a\x4b\x51\xa6\x23\x97\x13\x7c\x7b\x66\x5b\x19\xb5\xba\x96\xbe\x50\xa3\x7f\x7f\xf3\xf4\x89\x9a\x30\xf0\xbb\xa5\x53\x7c\x27\x40\x97\xa6\x52\x74\x02\xba\x01\x98\xb5\x92\x27\x6a\x16\xa0\x6c\x28\x4b\xed\x05\x56\x4a\x81\x9b\xcd\x6e\xb8\x40\xcb\x7b\x08\x81\xba\x37\xd7\xc3\x76\xe4\x34\xd4\x9b\x96\x39\x59\xd4\x22\x40\xaa\x51\x82\x7f\x3f\x39\x0c\xf7\xe6\x6d\x78\xd0\xb8\xa8\x0d\x67\x28\x18\x7b\xbb\x93\x85\xfe\x6d\xb2\x13\x06\x7f\x9f\xb1\xd7\xf8\xec\xfa\x4e\xd9\x09\x49\x4e\x40\xea\x48\x72\xdd\xe0\xa2\x8b\xcb\x7f\x85\xfc\x84\x8b\x4b\xcf\x20\xa2\xec\x28\x42\x18\xa7\xfb\x96\xd4\x9f\x4a\xb2\x14\x0a\xde\xd5\x5c\xc2\x5c\xce\xac\x2b\x18\x64\xb5\x57\x61\xc9\x32\xd4\xa1\xac\x26\xd6\x07\x3d\xad\x1c\xb3\x79\x14\xf2\xd6\xe3\x77\xab\xd8\xd9\x1d\x73\xda\x66\x57\x6f\xff\x49\x42\x59\x8a\x79\xdf\xe8\x92\xf3\x39\xd2\xd9\x85\x19\x50\xd4\xcb\x20\xd0\x9c\x44\x3a\xad\xc1\x20\xa3\xac\x77\x84\x32\xb1\x93\xab\x0f\x13\xab\x6a\x19\xd4\x26\xe8\x27\x01\xf0\x6b\x94\xf5\xfd\x3e\x92\x55\xd2\x1e\x81\xb6\xb9\x2a\x77\x75\x5b\x6c\x26\xb1\x25\xb5\xf5\xee\x3b\xbd\xa5\x75\x04\x98\xaa\xdf\xce\x58\xd8\xc1\xbc\x4d\x2b\x1d\x29\x01\x8b\x09\x0f\x7d\x64\x5d\x41\x8a\x53\xf7\x9e\x15\x82\x70\xfa\xc0\xfe\x4f\xd5\x24\x9d\x9d\x6e\x1d\x0b\x1d\xf1\x97\xdf\x84\x4d\x6f\x41\x4b\x00\x63\xe9\x75\x79\xd6\x3f\xc8\xc2\xf2\x21\x96\xdc\xd9\xfa\xe5\xb7\xff\xf9\x77\xa6\xdc\x60\xe9\x56\x0c\x58\x67\x0b\x6e\x5d\x21\x8b\x22\x9f\xcc\x66\x08\x07\x56\x40\x42\x3c\xb1\x18\x51\xad\x7d\x48\x11\xb0\x08\xb5\x30\xe1\xc9\x2b\xc8\x2d\x18\x45\x9e\xf5\x96\x5b\x33\xb8\xb4\x30\x9a\xc8\xea\xd4\xd1\xd2\x0a\x67\x73\xe8\x73\x8b\x4f\x91\xa5\xae\x36\xb7\x30\x09\x90\x15\x72\x31\x3f\x64\x8c\xf8\x21\xe4\x28\x90\x83\x7b\xd6\x67\x84\xac\x33\x14\x91\x2b\xeb\x9c\x50\x6b\x46\x28\xb2\x02\xc4\x61\x18\x31\x8b\x60\x39\xc8\x3b\xb1\xda\xcf\x6a\xb5\x16\xc4\x81\xc5\x10\xda\x60\xad\x8a\x10\x73\x44\x31\x8c\xd8\xbe\xc1\x48\xf6\x06\xea\x92\xda\x13\x4d\x37\x7d\x9b\xcb\xdf\x16\xd4\x0a\x2a\x2e\xa0\x4e\xa0\x0d\xb1\xaa\xb3\x25\xbe\x58\x67\x0b\xd8\xca\xc6\x71\x5f\x5c\x96\x45\x71\x17\xee\xa8\x5c\x8f\x6e\x6b\x5d\x81\x69\x8e\x34\xac\x93\x1e\x1b\xfb\x40\xff\xa6\x7f\xf5\x02\xc4\xc2\xc9\xc6\x0a\x8a\xa4\xa9\xad\xda\x2f\x9c\x47\x4d\xfb\xb2\x3a\x99\xab\x73\x9b\x63\x2c\xd3\x3d\xd3\x57\xf5\x66\x3e\x64\x31\x93\xb0\xdd\x80\xe9\xa5\xbc\x98\x28\xbe\xd7\x75\x2d\xad\x8e\x36\x9b\x75\x08\xc1\x22\x98\xc7\xa6\xe4\xca\x2e\x02\x27\xdd\xf5\x15\xb2\xbc\xbc\x6d\x07\x44\x74\x47\x55\x5d\x49\x93\x0e\xdf\x4c\xe5\xf6\xad\xff\xc5\x7e\x44\x53\x78\x19\x92\x9a\x73\xa4\x0e\x8b\x49\x06\x2b\x8f\xb2\xac\xe2\x21\xd2\x72\x87\xed\x35\x8b\x3a\x80\xf4\x48\x1b\x80\x46\x6c\x62\xb3\xae\xb6\xb1\xaa\x85\x73\x9c\xec\x90\xc7\xc7\xef\x36\x02\xa4\x1c\x67\x03\x20\xaa\xf5\xac\x0d\x5c\x36\x82\x3d\x19\xf6\xe5\x14\xf9\x17\xeb\x26\x11\x34\xc1\xfe\xb3\xbc\xe5\xd3\xd2\x73\xdc\x07\xaf\x19\x64\x2d\x90\xa4\x50\x67\x01\xc2\x2a\x25\xb5\x6a\xe4\xce\x62\xb9\xaa\xf3\x86\x5c\x84\xa1\xf2\xb9\x42\xe3\x26\xd4\x00\xde\x53\xb6\x64\xee\x93\xdc\x9b\xdb\x30\x81\xca\x88\x60\x50\xd0\x59\x52\x8c\x38\xc1\x41\x4e\x62\x3f\x48\xa6\x65\x0e\x29\x2d\x32\x2e\x73\xa4\xda\x32\xf3\xb2\x9c\x92\x1e\xfc\x13\x55\x39\x1c\xe3\xaf\x50\xc0\xff\x46\x97\xf8\x8d\x5d\x90\x0d\x67\x58\x6b\xe5\x4a\x6e\x3c\x87\x52\x3b\x25\x3b\x79\x31\xbf\x51\xfe\x24\xfc\xaf\xcb\x3f\xf6\x9f\x5e\xd2\x7b\xcd\x9f\xbc\x3f\x87\xe7\x5d\x92\x29\x37\xe2\xf0\xdc\xb8\xc7\x71\x43\xae\xc0\x35\xdd\xa7\xb5\x3a\x4b\x85\x27\x74\xf8\xaf\xea\x09\x1d\x0c\x1e\xd2\x15\xaa\x63\xf2\xdb\xfa\x42\x07\x7d\x30\x68\x73\xd5\xc4\x37\xf4\x7a\x66\x0b\xc2\xde\x75\x27\x88\xff\x35\xbb\x20\x3b\xc6\xb6\x70\x78\x21\xd3\x1f\xf4\x65\x3c\x94\xcc\x93\x5f\x14\x5d\x22\xca\xe2\x6c\x9b\xb5\xe8\xbb\x83\x0b\x76\x63\x1f\xb1\x63\x6d\xa0\x4d\x71\xab\x26\x57\x60\x61\x8b\x66\x03\x2d\xca\x5d\xd7\x1b\xce\xf4\xde\xe4\xf2\x29\x21\xbc\x77\x9f\x79\xe9\x0f\x90\x32\xdd\x39\x55\xbd\x7d\xbe\xb4\xd8\x31\x84\xf2\xde\xd9\xd2\x96\xb2\xf9\x8d\x64\xc8\xa3\x00\x31\x3f\x1d\x8e\xc0\xd2\xdf\xfa\x9b\xa5\x54\x3f\x54\x72\x74\x79\x79\xf2\xff\xcb\xde\xb3\x36\xb7\x8d\x23\xf9\xdd\xbf\x82\x61\xd5\x39\xe4\x98\xa2\x65\x27\xb3\x9b\x68\x96\x71\x79\x1c\xef\xd8\xb3\x19\xc7\x1b\xcb\xc9\xdd\xb8\x5c\x53\x90\x04\x49\x8c\x29\x40\x01\x40\xd9\x8a\xe3\xff\x72\xbf\xe5\x7e\xd9\x15\x00\x82\x2f\x41\x7c\xc8\x7a\x24\xd9\xcc\x87\x89\x45\x12\x8f\x6e\x34\xd0\xdd\xe8\x97\x2a\x5b\x17\xe1\x48\x4c\x46\xf1\x2f\xb3\xef\x07\x5a\x5f\xaf\x47\xc6\x58\x97\x0c\x9f\x65\xa2\xd1\x4f\x28\xa3\x26\x95\xb3\x9a\x6c\xa6\xf5\x53\x4e\xd5\xba\x20\xfe\x60\x98\xb2\x5c\xe5\x4d\x59\x99\x5e\x4a\x9c\x6f\xe3\xc3\xa8\x76\x80\xf7\x86\xc3\x8c\x9d\xf4\x5d\x42\x2e\xe0\xd8\x59\xab\xfb\xd1\x8f\xe0\xe4\x39\xcd\x56\x16\x9c\xbc\xb6\x8d\x36\x7f\x8c\xf7\x42\x93\x52\x41\xcf\x55\x77\x50\xf1\x8e\x5a\x23\x5a\x2b\x45\xb4\xbe\xfc\x0e\x02\x5a\x5f\x7e\x6d\xb7\x62\x2f\xbe\x9d\x5b\xb1\x7c\xa8\x65\x9d\x54\xc2\x8f\x9a\xdc\x8a\x03\x00\x37\x1f\xfe\x37\x87\x88\x32\x71\x7f\x29\xbd\xcc\x18\x03\x9f\xd0\x0a\x26\xf4\xf5\x46\xff\xa9\x1b\xb6\xea\x77\x72\xc2\x14\xba\xdb\x18\x0a\x63\x49\x37\xb2\xc7\xac\xfb\x7a\x6e\xdc\x7f\xf3\xeb\x67\xd8\x79\x3f\xa7\xb0\x3d\x9f\x95\x36\xce\x2f\xcf\x05\x4d\xcd\x0d\x4e\x2c\x9d\xcf\xcf\x90\x80\x09\x93\x76\x9a\x5f\xa7\xa7\x23\x0e\xb7\x2c\x9b\x19\xb3\xf8\x94\x1f\x52\xde\x9e\x53\xee\xeb\x1f\xf1\xad\x14\x82\x1b\xfc\xdb\x90\xea\xea\xa9\xab\x14\x6c\xd1\xd6\x53\x1f\x72\x05\x16\xf2\x7f\x71\xc8\xa2\xe0\x0e\xce\x73\x66\x32\x02\xa9\xdf\x17\xb2\x5d\xe1\x93\x33\xd1\x65\xea\xc1\xdb\xa8\xef\x4a\x11\x29\xa9\x3b\x99\x65\x7a\xc6\x6a\xa8\xb1\x36\x29\x13\xb6\x01\x3f\xd9\x93\x3f\x9f\x1d\x82\xd1\xf3\x49\xb5\x42\x6a\x73\x9c\x38\x74\x56\xcc\xd4\x41\xfe\x87\x8f\xfc\x51\x38\xd2\x06\x1e\x1b\xe5\x16\x4c\xb3\xac\x32\x5f\xaa\xfe\xb3\x63\x8e\x7c\x54\xab\x32\x5f\xe9\xac\xe6\x01\x05\x7b\x3e\x40\x6b\x82\x49\x8c\xb5\x1e\xb0\xc0\xdd\x1a\xd7\x0a\xdc\x3d\x1e\xa8\xd9\x5f\xea\xf2\x70\xa6\x78\x7a\x7c\x6e\x65\x0a\x86\xcf\x4c\x4c\x77\x92\x2c\xed\x88\x20\xac\x86\xe1\x29\x6a\x43\x21\x99\xf8\x5d\xb8\x01\x06\xf7\xe1\x65\xf0\xcf\xb7\xc3\x77\xa0\x82\xfd\x49\x67\x28\x5a\x6a\x02\xc6\x88\xf4\x54\x8c\x7c\x4a\xd2\x93\x89\xff\x1a\x32\x19\x64\x09\x55\x12\x08\x19\xbc\x63\x33\xb9\x1b\x53\x9a\xb5\x0a\x9e\x4c\xc7\x5d\x17\x24\x31\xcf\x65\x5d\xcc\x64\x6d\x54\x99\x1c\xcd\x0b\x91\x10\xd2\xe8\x4c\x0d\xa4\xd2\xe1\xcf\x0a\xee\xb5\x6e\x45\xbe\xc3\x24\x8b\xba\xdb\xc0\x0b\x49\xfb\xf3\x55\x04\x5d\xa3\x73\x4c\x0a\xbc\xf4\x74\x2d\xda\x60\x30\x13\xa6\xb6\x92\x4b\x47\xb3\x5a\x36\xc6\x4a\x97\x17\x66\xaf\xeb\xaa\xb3\x41\x79\x05\x2a\xb9\x49\xa1\xad\x38\x25\x63\xf2\x59\xc9\x95\x43\x39\x36\x2b\x00\x94\x8c\x2b\x17\xe8\x51\xb1\x62\xa5\xe9\x1f\xe5\xb6\x50\xb9\x11\xf9\xfa\x2e\xc7\x5f\x4b\xe7\x3d\x95\x1e\xa5\x96\x63\xff\x72\xbd\x26\x56\x9d\x40\x26\x26\xb6\x5a\x49\x64\x1e\xcd\x33\xe3\x61\xeb\x33\x4e\xe9\x0a\xbd\x7e\xc6\x79\x73\x7c\xf2\xfe\xf5\xcd\xd9\x9b\x4a\x8e\x1b\x8b\xe5\x8b\x29\x71\x53\x5c\xa6\xe1\x48\x31\xda\x98\x17\xa4\x06\xc9\x0d\xba\x26\xb6\x50\x5e\x1a\x37\xdf\xa2\xac\xc4\x62\xfe\xfb\x12\x3f\x5b\x2d\x13\x29\xf2\x5a\xd5\x35\x28\x77\x4e\xd6\xb5\x2a\xf3\x0c\xd5\xb5\xf9\xbf\xff\xdd\x8c\x49\xad\x6a\x6d\x05\x5d\x7e\xe0\x2a\xa6\xa3\xa5\x0d\x9e\xf5\x33\x5f\xeb\xd0\x5a\x3f\xec\xb5\xce\x20\xe7\x26\xbd\xd6\xb1\x75\x3e\xf5\x4b\x9c\x40\xb1\x58\xb0\x54\x47\xee\x02\xc1\xa0\xc4\x9d\xfa\x51\xce\xd2\xf5\x10\xf1\xad\xfa\x54\x1b\x2b\x37\x4f\xe8\xfd\xaa\x35\x2e\xbd\x89\x43\x75\xa9\x8d\x60\x15\x26\x23\x63\x21\xb3\x91\x91\xd9\x78\x3f\xd7\x30\x1d\x95\x53\xdc\x5a\xd6\xe8\x59\x99\x63\x75\x0d\x83\xe1\x42\x93\xac\x62\x4a\x7a\xbe\x90\x29\xa9\xd0\x2a\x54\x2b\x6c\xe2\x6b\x51\x14\xd2\xf1\x81\x54\x44\x71\x8a\xa3\xe2\x0c\xf7\xa0\x6b\xfc\x53\x13\xd4\xe9\x18\x13\x1f\xde\xae\x31\x60\xf5\x91\x01\x90\x45\x51\xab\xd5\x95\xa3\xcc\xcb\x25\xa8\x49\x0a\xd0\x7a\x6a\xd2\x86\x7c\xdb\xcf\x3f\xf7\x47\xc7\x27\x93\x3f\xab\xf9\xb6\x8b\xdc\x38\x35\x7c\xd1\x39\x0b\x13\x11\xd5\xc2\x07\x7d\xdd\xd5\x7b\x38\xa1\x2f\xa9\x70\xcf\x66\xcb\xdc\x74\x01\xe3\x6c\xaa\x4a\xa9\x9b\xd8\xe8\x37\x5b\xec\x46\xda\xc5\xea\x96\xbb\xa1\x89\xed\xef\x5b\x2c\x78\x13\x22\x09\xf6\xf4\x11\xab\x90\x04\x94\xa7\xb8\x51\xd2\x71\x59\x72\x97\x24\xc8\xbc\xe9\x98\x97\xaa\x99\xa4\xce\x52\xfd\x51\x5b\x7d\x7f\xbe\xbe\x37\x27\xf4\x22\xb6\x69\x67\x51\xb2\x48\x90\xe8\xac\x45\x1a\xf6\x1a\x04\x52\x1c\x92\x2e\xd4\x59\xa5\x25\xf7\x48\xe5\x64\x25\xb2\x5e\x69\x37\x56\xa0\xa5\x35\xba\x24\xd0\x5a\x0a\x1f\xf9\x00\xeb\xdc\xe3\xf8\xf7\x61\x34\x4c\xea\x51\x22\xfd\x57\x20\xd0\x67\x0b\x8a\xfe\xfa\x37\xb5\x0e\x1e\x2d\x19\xaf\x88\x88\x17\x22\xe1\x93\xf9\x04\x1c\x91\x1b\x3f\xed\x0b\xcc\x18\x8e\xd9\x85\x41\xd0\x08\xc0\x14\x4b\x77\x84\x2c\x8c\xea\xa8\x19\x43\xd2\xe5\x8c\x7d\x00\x79\x5f\xe1\x08\x51\xd5\xa4\x08\x2b\x51\x3a\x45\xd9\x80\x3f\xd8\x6b\x36\x6b\xf9\x4b\xd6\x20\xf2\x79\xa4\xad\xce\x4c\xad\x5b\x7c\x9e\xaa\xf7\xf4\x54\xbd\x97\xa3\xea\xbd\x59\xaa\xce\xe8\xce\x4d\xd3\x49\xfc\x34\x2a\x39\x61\x24\xd2\xa7\x93\x27\x96\x05\x88\x15\x24\xc1\x42\xa9\x60\x89\x22\xba\x75\xf2\x1f\x57\x39\xab\xab\x99\x27\xab\x48\xc7\x72\x1d\x6a\x1a\xfd\xd6\xea\x8f\x95\x12\x0c\xeb\x4a\x93\x11\x79\xad\x59\x98\xdc\xdd\xff\x34\x9e\xbc\x1c\x4f\xf5\xc2\xe4\x18\x20\x21\xee\x3f\xa6\xdc\x7c\x2c\x50\x0a\x00\xbf\xa1\x94\x6d\x28\x3a\x2c\x75\x9e\xb6\x87\x41\x90\x3d\x4c\x1f\xc9\x41\x56\x27\x51\x9b\x9a\xc2\xf0\xb9\x2c\x26\x45\xf3\xd6\x1c\xb1\x0c\x74\x1a\x08\x4c\x66\x59\x04\x85\x9c\x7b\x44\xae\xf5\x32\xc5\xb2\x48\xd6\x14\x9f\x37\x84\x00\x11\x36\x93\xcd\xd4\x10\xdb\xaa\xe9\x6c\x12\xd8\x8c\x77\x89\x63\xbe\xc3\x21\xea\x19\x6d\xe2\x8f\x8d\xb6\x2f\x4e\xf0\x44\x73\xcd\xa8\xce\xf9\x70\xc5\x7c\xbf\x6a\xaa\x6d\xd0\x49\x38\x50\xee\x61\x74\x12\x36\x62\xa9\xa7\xb6\xac\xbc\x50\x14\xc6\xf7\x53\xa1\x7e\xbf\x6a\x81\xae\x67\x73\x2b\xd4\xa7\xd8\xa7\x2c\x53\x7f\x7a\x6e\x44\x4c\x7b\xd1\x42\xf5\x9a\x0d\x91\x1a\x65\x51\x35\x28\x15\xe3\xbf\x99\x22\xf6\xa7\xe7\x46\x04\xc6\x8f\x32\xf6\x6b\xd0\x5c\xd3\x2e\xc7\x73\x8e\x39\xc9\x52\x00\x4d\x39\xd0\xf9\x3d\x53\x4c\x82\xf9\xb2\xc0\x45\x14\xa8\x1d\x0e\xfc\xbe\xe6\x60\x8c\x8f\xb6\x58\x46\xc8\x78\x6d\x5f\x2b\xa9\xbb\xde\x18\xf1\x61\x3b\xdb\x7d\xec\x2f\x17\x77\x3d\xf7\x28\x5e\x60\xe0\xfc\xe1\x3d\x3b\x3e\x61\xc2\x1d\x39\x5f\x8f\xa2\xde\x30\x5a\x3e\x90\x01\x32\x6d\x71\xaf\x20\xa7\x4a\x1b\x7f\x83\xce\x68\x46\xbd\x34\xcf\xcb\x5d\xdf\xa8\x80\xa5\x5e\x8c\xac\xa4\xa2\xc6\x52\xf8\x90\x93\x19\xa2\xf4\x94\xe5\xcf\x47\x21\x9b\x33\x70\x8c\x80\xb8\x04\x02\xe7\x33\xf2\x16\xd7\x9d\xa8\xac\xfe\x35\x94\xb1\xfd\x78\x7a\xf1\x4a\xf1\xc7\x8b\x54\x7f\xdf\xdb\x44\xaa\x93\x44\x24\xaf\x2e\xc6\xab\xdd\xb3\xa9\x7b\xe1\xbf\x7f\xf8\x79\xfa\xe6\x1c\xfd\xb1\xa0\xcf\x69\x91\xfc\x1e\x81\xb6\x99\x3b\x61\x75\x60\xfd\xb8\x16\xfe\x8f\xbe\x16\x5e\x81\x8b\x2e\xc1\xd2\x7b\xec\x06\x4e\x33\x4e\x5a\xb3\xee\xa1\xd2\xc7\xc6\xd9\x40\xbd\x74\xae\xa2\x52\x36\x0d\x44\xf4\xe7\x0b\xc7\x24\x70\x04\x7c\xe4\xa3\xc1\x07\xbf\x27\xbe\xc8\x2a\xa6\xa5\x6e\xbf\xa5\x03\xb0\xa1\xbe\x67\xae\x35\x1a\x52\x40\x79\x44\xef\x25\xd3\x5f\x9b\x3b\xb1\xa1\xcb\x61\x50\x63\xa2\x8f\x49\x52\x50\xe0\x7e\x7c\xa6\x9c\xdc\x0b\x7c\x8f\x57\x5c\x0e\xbe\x00\xac\x2a\x89\x68\x8d\x7c\xac\xcc\x4b\xa5\x2d\x3a\xe6\x39\xa0\x34\xca\x72\x35\x53\x6a\x6a\x1c\xbd\xcb\x47\xd8\x07\xb3\x6e\x47\x71\x37\xa9\x24\x46\xa6\xf1\x19\x12\xac\xab\x38\x75\x92\x92\x99\x8d\xd4\x0c\x2a\x07\xce\xca\x98\x9d\x0a\x60\x2c\x34\xef\xf4\xb4\x63\xc9\x2e\x47\x8b\x11\x6e\x34\x94\x98\x89\x19\xfa\x2b\x89\x19\x9a\x33\x6e\xfd\x30\xf9\x79\x4b\xf9\x21\xc9\x27\x3e\xb3\x94\x2a\xd7\x78\x05\x94\xc4\xdd\xd4\x5f\xca\xd4\x0c\x16\x5f\xca\x79\x60\x2c\x34\xef\x2a\x4b\x19\xe1\x66\xd1\xa5\x4c\xc6\x5d\xde\x52\x1e\x11\x9f\xf9\x5d\xa0\xaf\x00\xd7\x55\x2f\x2b\x20\x25\xe9\xa8\xfe\x6a\xa6\x27\xb1\xf8\x72\xce\x05\x65\xb1\xa9\x57\x59\x50\x85\xa0\x45\x57\x34\x35\x72\xbd\x25\x2d\x3f\xdc\x2b\x1e\xfd\xf5\x39\x9f\xf9\x1d\x85\x8c\xcc\x22\x6b\xc5\xde\x60\x46\xa5\x3b\xb2\xc2\xf0\x91\x6a\x73\x5e\x40\x56\x5f\x8a\x57\x55\x56\x0f\x5e\x40\x7f\xde\x8c\x25\xec\xb7\x53\xb6\x7b\xd3\x1f\xdc\xac\xce\xad\x4a\x69\xd1\xdf\x9a\x21\x8c\xe6\x6f\x0c\x67\x6d\x61\xa9\x4b\xc5\x6f\xce\x1c\xa6\x54\x26\x47\x17\xd5\xb7\x34\x20\x7e\xdc\x3b\x7c\xa3\xf7\x0e\x33\x54\xf2\x08\xfe\x56\x41\x8f\x32\x75\x59\xfd\x67\xb4\x62\x5d\x8b\x6a\x81\xa4\xfa\x04\xf6\x7a\x20\xab\x64\xb1\x5f\x95\xfb\xd4\x77\xe7\x05\xa8\x5b\x8f\x0a\x29\x6d\xbe\x0f\xf7\xbf\x99\x32\x2b\xfa\xb7\xf9\xc7\x3f\x7c\x02\x7f\xf8\x04\x6e\xce\x27\x50\x65\xc7\x5a\xd0\x39\x50\x4b\xf3\xb3\x6f\xf3\x8f\xe7\x7b\x0c\x7e\x15\x3e\x84\x6b\x75\xa7\xcb\xa8\x04\x15\x35\x89\xc8\x65\x65\xdd\xea\xc3\xef\xf4\xec\xc3\xed\xd1\xd9\xdb\x6a\x09\xa1\x9e\x4b\xab\xb6\xdf\xc5\x64\xdc\x90\x50\xe4\x0c\xcb\xbd\x2e\x15\xff\x17\xc7\xed\x2d\x01\xe3\xb1\xcc\xfb\xde\x14\x54\x97\x12\xb4\xf8\x27\x73\xec\x10\x45\xca\x88\x40\x53\x75\x55\x64\x91\xc0\xf3\xf2\xe2\x91\xca\xbd\x28\x16\x11\xeb\x5d\xde\x2b\x41\x7e\xa6\x9b\xf4\x2e\x30\x2c\xdd\xa7\x71\xc4\x66\xe6\x5b\x7b\x09\xe9\xd7\xcb\x47\x59\xb0\x90\x7d\x2d\x75\xa3\x44\xd8\x5d\xa8\x60\xf5\x91\xa0\x53\x83\x40\x16\x12\x04\x7b\x06\x40\x86\x00\xd4\xd5\x7c\xfb\x3f\x38\x14\x95\x1b\x87\x60\x02\x8d\x89\x4f\x7d\xc6\x1b\x18\x97\xef\xde\x18\x6c\x08\x98\xe1\x53\x23\xaa\x79\xc1\xbb\x09\xd1\x0d\xc2\xb7\xc8\x50\x67\xb3\x63\x50\x2c\x62\x67\xbb\x00\x19\x8c\x4c\x8d\x81\x28\x0c\xd9\x01\xdd\x1b\x83\x61\x51\xb7\x91\x60\xcc\x74\x03\x9f\xf6\x79\x43\x62\x1c\x1e\xbd\x31\x18\xbe\x81\xc8\xb8\x05\x54\x14\x97\xec\x0b\xff\x13\xd5\xab\xa8\xdc\x6e\xf8\xcc\x11\x45\x1f\xd9\x10\x22\x19\xac\xeb\x07\x81\xd1\x81\x06\x81\x3d\x9f\x08\x0f\x09\x35\x20\x85\x8c\xf9\x68\x40\x8d\x31\x18\x40\xfe\x10\x22\x06\x89\x01\x0c\x04\x6f\x93\xd1\x74\x53\x6a\x93\xa9\x11\x60\x7c\xc3\x41\xf0\x91\xc1\x67\x37\xcf\x4e\xb4\x48\xbc\x9e\xb8\x64\x29\xa9\x29\x19\x2d\x6a\x49\xe4\x9d\x9e\xee\x34\x84\x52\x72\x67\xa0\x50\x35\xe7\xc2\xe0\x9d\x40\x7d\x8c\xb2\x6a\xa3\x25\xa1\x87\x58\x66\xb0\x98\x3f\x7c\x51\xa1\xe5\xdf\x70\x4c\x45\x9c\x82\xbe\x3e\xae\x27\x77\x54\x35\x56\xa7\xaa\xc6\xac\x9d\xd9\x0d\x6e\x3e\x35\x5f\xbe\xbe\x85\x95\x98\xdd\xe2\xb8\x88\xe0\xab\x88\x0d\x84\x99\xd8\xe2\x1b\x70\xa2\x3f\xfa\xbd\x79\x37\xe8\xf6\x56\x8c\x0e\x05\x60\x45\x7c\xc4\xbb\x70\xed\xf8\xf8\x77\xb3\x09\xde\x7e\x6e\x9f\x7f\x2b\xb2\x50\x7c\xb4\xaf\x55\x1c\xca\xb3\x89\x8b\x68\x16\x85\x87\xf1\xc6\x85\x80\xf6\x10\xd2\x14\x33\x04\x41\x80\x6f\x05\xe7\x64\xd8\x10\x39\x32\x06\x51\xde\x0b\x62\x74\x08\xbe\xa5\x90\x44\x61\xec\x50\xc9\x0f\x1f\x60\xc7\xb8\x3c\x75\x8d\xe3\x09\x24\x53\xe9\xf8\xeb\x53\x83\x82\x89\xe4\xb5\x01\xee\x82\x80\x32\x4c\xc0\x00\x4a\xe6\x3c\x86\x84\xfa\x94\x51\x83\x0d\x09\x0e\x07\x43\x29\x4f\x50\xf1\x4e\x8d\x11\x72\x39\x2b\xcf\x7c\x4b\x39\x8b\xca\x89\x58\x7a\x4b\xd3\xf7\x61\xd0\xa3\x70\x4e\xf2\x4f\x4d\x83\x00\x74\x64\xfe\x82\x7c\x36\x04\x06\xef\x2a\xf4\x92\xea\x89\x8e\x01\x4a\x35\xe0\x6c\xb3\x5d\xcc\x36\xf3\x9d\xa8\x4c\xfa\x68\xcc\x95\x6e\x94\x0e\x27\x70\x52\xee\x9e\x63\x40\xe9\x2d\x26\xbd\xdc\x9d\x60\xc4\xa3\x35\xca\x65\xc9\xc4\x61\x1a\xb5\xed\x21\x8c\xc4\x31\x91\xf9\x04\x31\x59\xfd\x9b\xc0\x4f\x21\xe4\x4b\x0b\xa8\x20\x91\xa8\x69\x57\xa8\xc6\x71\xe3\xff\x6e\x48\xd2\x69\xe4\x01\x37\x4e\xda\xed\x73\x43\x6e\x46\x23\xde\x15\xae\x2c\x5b\xee\x53\x23\xa4\x92\xa6\xf8\x46\x20\x38\x10\x43\x70\x04\x2a\x8a\xbc\x95\xa4\x58\x8e\xca\x25\x18\x5b\x75\x49\x33\x68\xd8\x19\x89\xea\x05\x73\x52\x63\x98\xe1\xb8\x97\x2a\x26\x24\xad\x4e\x69\x1b\xfa\x05\x98\x94\xa4\xf3\xfa\xba\xa4\x1b\x75\x6e\x14\xb2\xb0\x90\xf9\x01\xdd\x05\xb4\x0b\x57\xc4\xcc\x93\x6e\x1c\x66\xdf\x4f\x00\x31\x90\x07\x5d\x51\x09\xcb\x32\x77\x4d\x7b\x4b\xaa\x38\x06\x72\xe5\x85\xd4\x2b\x76\x80\x5c\x51\x4f\xcd\x6a\x3a\x0d\x66\xbb\x5d\x8c\xba\x80\x59\xa6\x69\xbb\x1f\xb1\x8f\x44\xa3\x96\xc9\x01\x9a\x0f\x0e\xc3\x9d\x34\x30\x8e\x89\xc6\xa3\x96\x48\xa9\x0a\x11\xa7\x77\xd2\x08\x7c\xe1\x8d\xc8\x9f\x77\x00\x85\x7f\x7b\xde\xf8\x98\x05\xda\x61\x0e\x5a\x12\xe0\x12\x6c\xe2\x01\x32\x10\x1a\x01\x55\xa0\xee\x6d\x6f\x4f\xb0\xdf\x33\x9a\x4f\xbc\xe4\xe5\xd5\xde\xf5\x41\xfa\x47\xcb\x0c\x59\xbf\xf1\xc2\x74\x02\x0f\xa9\xce\x5d\x86\x7f\x9d\x32\x78\x48\x08\x98\x5a\x30\xc1\x21\xbc\xb5\xda\xf0\x8e\xbd\x86\x02\xc8\x2f\x5f\x98\x6a\x60\x5b\xc4\x76\x7b\xe2\xb1\x15\xd8\x45\xb8\xeb\x30\x0c\xbe\x4b\xdc\x45\xb8\x39\x46\x5a\xdc\x48\xd8\xd2\xb8\x8c\x71\xdd\x27\x78\x94\x60\xbb\x18\x7b\x71\x99\xca\x95\xee\x24\x89\x14\xb6\x28\x52\xa2\x49\x2a\x48\xa5\x78\xf9\xee\xe2\xfd\xb9\x7b\x4e\xf0\xc8\xa7\xd0\x25\x90\xe2\x60\x02\x2d\x66\x41\xbb\x18\x5e\x51\x88\x8c\x6b\xc9\xeb\x3a\x3b\x66\x60\xde\xd7\xc2\xbc\x9f\x86\x79\xff\xba\x75\xff\xe0\x68\x88\xe8\x99\xb6\xed\xb3\x74\xdb\x67\xd7\x2d\x49\x1b\x97\xef\x4e\x8f\xf0\x68\x8c\x11\x44\x2c\x42\xdd\x15\x54\xa7\x13\x4b\x1d\x4e\x4e\x04\xf1\x0d\x9c\x52\x0b\xd9\xee\x08\x8c\xad\x34\x42\x14\x81\x85\x41\xf0\xc4\x43\x57\xf0\xfa\x80\x58\xd0\xde\x31\x3d\x73\x87\x58\xfc\xb7\xdd\x82\x0f\xaa\xbf\x6d\xd3\xbe\x76\xa5\xc9\x56\xd3\x89\x69\x3e\xf1\xbc\xe4\xe3\x03\xb3\x70\xb1\x7a\x3e\x95\xd5\x17\x56\xbf\x56\xd0\x83\xee\x11\xc6\xa4\xe7\x30\x8f\xc9\xbf\xb6\xfa\x98\x58\x72\x0d\x9b\x0e\xf1\x9a\xbf\x90\x7f\x40\xf7\x3d\xec\x46\x6b\xf1\x0b\xd9\xd9\x91\x6b\x1c\x78\xe2\xf9\x15\xb9\x6e\xb0\xe8\x8f\x2d\xb4\xe3\x05\x3f\x05\x0f\xfc\x35\xf5\xfe\x00\x6c\xe8\xd2\x4f\x84\x59\xc8\xde\x81\xee\x09\xf4\x07\x43\xb6\xc3\xa2\x3f\x1c\xec\xd1\x1d\xe8\x1e\xf6\x3e\x86\x94\xf1\x35\xdc\x61\xa9\x1f\x8a\xe8\xf1\xab\xe6\xf6\xb6\x45\x3d\x6c\x3b\xa2\x3b\xc2\x95\x3d\x6b\x0f\xfe\xfc\x13\xb5\x77\xf7\x9a\xcd\x22\x3c\xae\xee\xd6\x3b\xdd\x0d\x1f\x15\x07\xd0\x15\xa3\x59\x90\xaf\xec\xd6\xbc\x19\x0d\x01\x8d\x0c\x13\xeb\xda\x86\xcd\x2d\x7a\xeb\xb3\xee\xd0\x62\xf6\x7d\x17\x50\x18\xfb\x14\xb7\xc4\xaf\xd8\x95\x51\xfe\x54\x5e\xaa\x2d\x14\x29\xb3\x03\xc8\x2c\x18\xd1\xf5\xaf\x53\x4b\x99\x55\x1c\x66\xc7\x86\x29\x7b\xab\x43\x20\xb8\xd9\x12\x1d\xf0\x96\x7b\x0f\x6a\xe7\xbc\x2a\x5c\x9e\x21\x63\xe3\xdd\x11\x64\x43\xbc\x44\x89\x66\x0b\xba\xe7\x97\x6d\xcf\x3c\xbf\x6c\x9b\x0e\x74\x5f\x1f\xbf\x39\x6e\x1f\x7b\xa6\xfc\xd7\x2c\x9b\x0d\x5d\xf2\xe2\x6c\x41\xf7\xed\xbf\xbc\xfd\x66\xd3\x81\xee\xe5\xd9\xe1\x65\xfb\xe4\xed\xbb\xd3\x3f\x8f\x5f\x7b\xcf\x9b\x7b\x05\x73\xf1\x11\x1f\x06\x74\x02\xf8\x4e\xea\x02\x6d\xfc\xfb\xbf\x43\x48\xa6\x87\x1f\xc1\xdd\x89\x88\xfc\x5b\x31\x51\xcb\x15\xbc\xff\x8b\xe8\xc7\x6f\xc5\xdf\xc6\x84\x76\xff\xb0\x85\x5c\x2e\xc2\x7b\xcc\x95\x8b\xea\x20\x37\x24\x81\xc7\xf8\xff\x1d\xe4\xf6\x00\x03\x6d\xfe\xde\xfc\x48\x85\xe1\xd4\x15\xaa\xf8\x1d\xf3\xd8\xd0\xa7\x0e\x13\x1f\x6c\x6f\x5b\xe6\x6f\xc7\x6d\x7e\x5c\xaa\x6e\x0e\xac\xe8\x4b\xc4\x64\x73\x30\x1e\x07\x7e\x57\x5c\xd7\xee\xf2\xae\x7e\x31\xba\x43\x40\x28\x64\x5e\x24\x44\xc8\xb1\xb8\xf4\xca\x88\x8f\x06\x7e\x7f\x6a\xc9\xde\x6d\xbb\x15\xbd\x8b\x7e\x6f\x49\xa1\x85\xb9\x52\x5d\xa2\xea\xd4\x89\x99\x0d\xd9\xde\xb6\x90\xdb\x81\x7d\x4c\xe0\x05\x44\x3d\x4f\x83\x6b\xc1\x3f\x88\xed\xf6\x31\x39\x06\xdd\xa1\x95\xc6\x4d\xd4\x1f\x74\x29\x64\xd1\x5a\x9e\x88\xa1\x2c\xe6\x90\x2b\x76\x6d\x0b\x71\x1f\x3d\x3c\xb8\xf3\x50\x5d\xb4\x83\xe2\xd2\x6f\x2b\x25\x87\x98\x89\xed\x9a\x9e\xe7\x59\x33\xcc\xb9\xa9\x65\xce\xcd\x34\x73\x6e\x5e\xb7\xb8\x5e\x20\xd5\x85\xc6\x5e\x21\xf7\xbb\x81\xd3\x36\x3e\x54\x69\x11\xbe\x5e\xe9\xcc\xdc\x35\x23\x72\xb1\xa0\xe7\x79\xec\xc0\x34\x5b\xd0\x8e\x34\x26\x56\x08\xe2\x08\xdc\xc0\x43\xc6\x08\xdf\xe1\xeb\xda\xca\x80\x31\xd2\xd2\x91\xe6\x15\xbb\x7e\x78\x28\x9a\xed\x58\x0a\x9b\xbd\xb6\x3f\x82\xd2\x45\x61\xa5\xc4\xc6\x17\x05\xce\x2e\x4a\x35\x2a\x8b\x04\x63\x67\xe1\x55\xa5\x90\x45\x70\xaa\xb3\x20\x9e\x1a\x72\x48\x22\x14\xc2\x5b\x03\x66\x05\x3d\x8b\x59\x29\x28\xa0\x85\xec\x07\x07\xd9\x7c\x83\x17\x21\x97\x86\xa3\xb7\xfd\xcb\xc4\xaf\x6b\x2d\xc4\x60\x70\xcd\xa1\x17\x76\xd3\x10\x24\x22\x43\xc2\xf9\x59\xec\x47\xa1\xd4\xad\x44\x60\xf0\x3c\x0f\x7d\xf9\x12\x4b\x0c\xfc\xe7\x01\xdc\xd9\x6b\xc1\x07\xa7\x59\x48\xfc\xe9\xaa\x3d\xeb\x81\x36\xa1\x7a\xae\xee\xca\x23\xff\xa5\xfa\xcf\x09\xbc\x46\xf2\x83\x7a\x57\xd7\x5b\x68\xf6\x28\xc7\xf6\xbd\xdf\xb7\x98\xe7\x61\xf7\x0c\xf7\xa2\xa3\x03\x78\xd8\xbd\x80\x03\x21\xae\x6a\xda\x30\xd1\x46\x36\x78\xe2\x31\xf1\xef\xf6\x36\x53\x4d\x3c\x0f\xc4\xf7\x2c\x16\x76\x98\xbd\x45\xdd\x71\x48\x87\xd6\x3d\xc2\x3d\xd8\x92\xdf\x3b\x4a\x17\x68\x21\x87\xca\x76\x2d\xc0\x39\xc6\x3f\x38\x67\x22\x1e\xb2\x1d\xf4\x2a\xd8\xde\xb6\x02\x0f\x09\xac\x53\x97\x62\xc2\x72\xeb\x1a\xaf\xba\xea\xad\xc1\xe2\x3f\x1f\x84\xc0\xca\xe7\x81\x1d\xe0\xa9\xdd\xe2\xf8\x52\x7a\xef\x07\x18\x13\x0b\xec\xee\xc7\xfa\x36\x78\xd5\x3c\xc0\x1e\xf8\xaf\xfd\x03\x7a\xe5\x5f\xc7\xdd\xb4\x2c\x7a\xe5\x37\xf6\x92\x07\x3b\x99\xd7\xf6\xee\x7e\xcb\xc2\x52\xa1\x70\x02\xaf\x69\x3b\xf7\xea\x15\x6d\x51\x07\xb5\xe2\x81\x47\x3e\x6a\x8d\x39\x3b\x3f\x45\xcc\xda\x6b\x36\x7f\x22\x42\xce\x77\x64\xdd\xaa\xec\x2b\x1c\xbd\x02\x77\xd9\xe7\x41\xa4\x1a\x14\x91\x61\xd8\xed\xfb\x84\xae\xf8\x34\x4b\x29\x80\x3b\xd0\xa5\x61\x87\x32\x62\x35\x9d\x3d\xdb\x65\xf8\x72\x3c\x86\xe4\x08\x50\x68\xd9\xc9\xbb\x79\xac\x31\x4a\x4b\xec\x63\x44\x77\x41\x37\xc8\x5e\xfc\x40\xbe\x61\x1b\xd2\x31\x99\x42\xd6\x48\x7f\x1c\xfd\x8d\x49\xfe\xe6\xe7\x51\x00\xde\x8b\xdb\xcc\x2b\xab\xe9\x88\x54\x08\x22\x63\xf2\x39\x81\x14\xf2\xa5\xb6\x9e\x34\x6d\x27\xf3\xea\x8d\x58\x5a\xdb\xba\xe7\x8b\xbb\xf7\x60\x5f\x3b\x5c\x92\x6b\x15\x34\x3f\x7d\xdd\x2a\xec\xa1\x1c\x4b\x37\x93\x8d\x23\xe9\x5f\x70\xfa\x18\x1c\x89\x1a\x9b\x05\x48\xd2\xe3\x40\xda\x9b\x76\x21\x9a\xf8\x04\xa3\x91\xa8\xae\x7d\x95\x82\xca\xbe\x67\x64\x1a\x31\xd9\x92\x66\xcc\x53\xbe\x11\xee\x27\x2e\x92\x5e\x88\xfc\x18\x98\x58\x4f\x47\x90\x81\x2b\x04\x46\xd0\x33\x9f\xee\xc0\x9d\xa7\xe6\xf5\x53\x9b\x73\x0c\x2e\xd4\xf8\x9d\x90\xc9\x19\x09\x3b\x9b\xed\x20\xef\x3e\x42\x49\xeb\xf7\x8b\xb7\x67\xae\xd8\xaa\x56\x88\x20\xed\x82\x31\xb4\x98\x6d\x3f\xa8\xc3\x45\x8f\x6d\x34\x1f\xdb\xe8\xa1\x0b\x22\xed\x96\x0d\x09\xbe\x15\x8c\xf9\x58\x68\xe2\x4f\x8f\x70\x18\xf4\x84\x97\x0b\x81\xa0\x17\x19\xe2\x8c\x3e\xc1\x23\x83\xcf\xdf\x60\x60\x20\x0d\x2e\x1c\x10\x23\x02\xc4\x7d\x2a\xf0\x4a\x42\xc4\xd9\x5a\x1b\x52\x46\xbf\x7c\xe1\xa2\xb9\x4f\x32\x68\x06\xe3\xb1\x69\xc7\x57\x8f\xf2\x7a\xcd\xba\x47\xd9\x4b\x7e\xd3\x99\x40\x42\x7d\x8c\x5a\xe6\xbe\xdb\x74\x9b\x3b\xa0\xfb\xb7\x17\xf0\xf9\xdf\x5f\x98\x0f\xf6\xd6\xff\x07\x00\x00\xff\xff\xfa\x3f\xa7\xdc\x1d\x0d\x03\x00") + +func web_uiV2AssetsConsulUi5b92b4b084738a6c8d4662cd5dd81e58JsBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsConsulUi5b92b4b084738a6c8d4662cd5dd81e58Js, + "web_ui/v2/assets/consul-ui-5b92b4b084738a6c8d4662cd5dd81e58.js", + ) +} + +func web_uiV2AssetsConsulUi5b92b4b084738a6c8d4662cd5dd81e58Js() (*asset, error) { + bytes, err := web_uiV2AssetsConsulUi5b92b4b084738a6c8d4662cd5dd81e58JsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/consul-ui-5b92b4b084738a6c8d4662cd5dd81e58.js", size: 199965, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsConsulUiFd032aa6d4c81cb6714bde7019fca516Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x69\x8f\xe3\x38\x92\xe8\x5f\xe1\x66\xa3\x30\x95\xd5\x12\x4b\xf7\x61\x4f\x25\x66\xa7\x07\x8d\x5a\xa0\xe7\x3d\xe0\xcd\x4e\x7d\x69\xd4\x07\x5a\xa2\x6d\x4d\xe9\x5a\x49\x76\x1e\x5e\xef\x6f\x7f\x20\xa9\x83\xa4\xa8\xc3\x59\xd9\x33\x3b\xd8\x45\x56\x65\xda\x64\x30\x48\x06\x83\xc1\x60\x30\x18\xdc\x15\xf1\xb3\x16\x15\x31\xbe\xec\x8b\xbc\xd1\x1f\x71\x72\x38\x36\x1b\xc7\x30\xae\xa8\x6a\x92\x28\xc5\x1a\xaa\x93\x18\x6b\xfb\xe4\x70\xaa\xb0\xb6\x2f\x8a\x06\x57\xda\x11\xa3\x98\xfc\x39\x54\xc5\xa9\xd4\x8e\x95\x56\xe3\xa8\x49\x8a\xfc\x12\x27\x75\x99\xa2\xe7\xcd\x2e\x2d\xa2\x6f\x57\x74\x8a\x93\x42\xc3\xd9\x0e\xc7\x5a\x92\x1d\xb4\x62\xf7\x37\x1c\x35\xda\x39\x89\x71\x71\xc9\xd0\x93\xfe\x98\xc4\xcd\x71\x63\x1a\xc6\xbb\x2b\xda\x1c\x8b\x33\xae\xb4\xba\xa9\x8a\xfc\xa0\x35\x68\x97\x62\xd0\x1c\x2f\x51\x91\x16\xd5\xe6\x07\xdb\x23\x3f\x57\xd2\x52\xad\xac\xf0\x65\x87\xa2\x6f\xa4\xf6\x3c\xd6\x5b\x88\xbd\x4b\x7e\xae\xb4\x43\x04\xa2\x4d\xb6\x02\xf2\x73\x3d\x36\x59\x4a\x92\x01\xed\xeb\xa8\x74\x53\xa1\xbc\x2e\x51\x85\xf3\xe6\x8a\x40\xdb\x86\x1e\x9c\xc1\x44\xa7\x8a\xe4\xff\x44\xbe\x5c\xf7\x09\x4e\xe3\x1a\x37\x5a\xb2\xaf\x50\x86\x2f\xbb\xa2\x8a\x71\xb5\x31\xae\x30\xa9\xf5\x3a\x79\xc1\x7a\xc0\x28\x4a\x3e\x6f\xa0\xef\x56\x38\xbb\x7e\xfc\xf0\x2f\x20\x4b\xf2\xa4\xc2\x35\x6e\x60\x54\xd7\xe0\x6c\x40\x03\x5a\xe0\x3f\xc1\x9f\xff\xed\xdf\xc1\x2f\x49\x84\xf3\x1a\x83\xff\x04\x87\xa4\x39\x9e\x76\x30\x2a\xb2\x8f\x7f\x3b\x34\xc7\xac\xfe\x28\x16\xfb\xf0\x91\x12\xf8\x3f\x4e\x45\x83\x35\xda\xe3\x38\xd6\xe2\x54\x8b\x1b\xad\x6f\x58\x3b\x62\x47\x53\x3b\x5a\xda\xd1\xd6\x8e\x8e\x76\x74\xb5\xa3\x47\x86\x8b\x52\x83\xb5\x5c\x4b\xf1\x01\xe7\xb1\x96\x26\x5a\x91\x6a\x25\xe9\xb4\xd6\xe0\xa7\x06\x55\x18\x69\xa7\xf4\x92\xa1\xea\x90\xe4\x1b\x63\x5b\xa2\x38\x4e\xf2\xc3\xc6\xb8\x8e\x50\x72\x3d\x25\x63\xb9\x95\x59\xe9\x94\x5e\xd2\xa4\x6e\xf4\xba\x79\x4e\xf1\x26\x2f\x72\x7c\xdd\x9d\x9a\xa6\xc8\xb5\x24\x2f\x4f\x8d\x56\xe3\x94\xf0\x45\x57\x6d\x5f\x27\x1d\xb5\x8b\xfe\x88\x77\xdf\x92\x46\xdf\x15\x4f\xa4\x0e\xd2\x06\x46\x6d\x92\xb2\x55\xa7\x72\x0d\xf2\xca\xa7\xad\x9e\x15\x2f\x7a\x51\x3f\xe9\x2c\x3d\x2b\x8a\xe6\x48\x4a\x1c\x2a\xf4\x5c\x47\x28\xc5\xdb\xae\x12\x09\x00\xe5\x4d\x82\xd2\x04\xd5\x38\xde\x66\x49\xde\x32\xac\x6d\x18\xe5\xd3\x96\xb0\xeb\x3e\x2d\x1e\xf5\xa7\xcd\x31\x89\x63\x9c\x0f\x29\xcf\x9b\x3a\xaa\x8a\x34\xdd\x92\x2e\xe9\x15\xce\x63\x5c\x11\x74\x45\xd9\x24\x59\xf2\x82\x7f\xc1\x87\x64\x97\xa4\x49\xf3\xdc\x57\x4c\x21\x29\xe3\xa0\xf8\x6f\xa7\xba\x61\x94\xa4\x0d\x9f\xca\xaa\x27\x72\x94\xa9\xfd\xd4\xd1\xea\x0c\xa5\x29\xcf\x9c\x81\xef\xe2\xec\xfa\x41\xdb\xa0\x3d\x99\xdc\x9b\x1d\xde\x17\x15\x56\xd1\x3d\xc9\x8f\xb8\x4a\x9a\xed\x38\xe9\x4a\x27\x6c\x3b\x0d\xc8\xa4\x4a\x51\x59\xe3\x4d\xf7\x61\xdb\x66\xd4\x25\x8a\x18\x13\x35\xb1\xd6\x1c\x2f\x3d\x53\xb1\x46\xa3\x34\x39\xe4\x9b\x14\xef\x1b\x36\x8f\x67\xb9\x84\xf6\x60\x8f\xb2\x24\x7d\xde\xfc\x31\x4d\xf2\x6f\x7f\x46\xd1\x5f\x9e\xeb\x06\x67\x3f\x17\x79\xa3\xe9\xa8\x2c\x53\xac\xd7\x34\x45\xbb\xfb\x0b\x3e\x14\x18\xfc\xf5\xdf\xee\xb4\xff\x57\xec\x8a\xa6\xd0\xfe\xef\xd3\xf3\x01\xe7\xda\x5f\x77\xa7\xbc\x39\x69\x3f\xa1\x9c\x60\x4d\x53\xed\xee\xe7\xa4\x42\xe0\x2f\x28\xaf\xef\xb4\xbb\x3f\x55\x45\x12\x77\x5f\x3e\xe3\xf4\x8c\x9b\x24\x42\xe0\xff\xe0\x13\xbe\xd3\xfa\xef\xda\xbf\x56\x09\x4a\xb5\x1a\xe5\xb5\x5e\xe3\x2a\xd9\x0f\x72\x6a\x8a\xf3\xd0\xa9\x29\x26\x99\x8e\xe4\xf1\xbd\xcb\x8a\xbc\x20\x94\xc3\x94\x2a\x97\x34\xc9\xb1\x7e\x64\xd3\xcb\x84\xee\x15\x75\xb2\xce\x30\xbc\x60\xbf\xdf\x46\xa7\xaa\x2e\xaa\x4d\x59\x24\x79\x83\x2b\x46\xd9\x18\x47\x45\x85\x88\x8c\x66\xf3\x8f\x93\x6b\x3f\xc4\xbe\xed\x38\x6e\x3f\xc1\xa1\xe5\xe2\x0c\x40\xc2\x13\xc7\x4a\x21\x68\xe3\x1d\xf9\x69\x47\x94\x62\xdb\x76\x8d\x29\x9f\xb6\xed\xdc\x35\x21\x91\x78\xc0\xb8\x26\xd9\xe1\xd2\x66\x93\x7e\x5d\xe9\x58\xfe\xda\x3c\x97\xf8\x53\x74\xc4\xd1\xb7\x5d\xf1\xf4\x55\xe3\x12\x2b\x14\x27\xc5\xd7\xcb\x19\x93\xe5\x07\xa5\x2d\x4b\xec\x50\x8d\x49\xb7\xaf\x75\x89\xf2\x96\x77\xa9\x30\xe9\x38\x92\x17\x39\x1d\x4b\xfe\x5a\x15\x29\xfe\xb4\x43\x79\x8e\xab\xaf\x20\x47\xe7\xcd\x3e\xa9\xea\x46\x2f\xf6\x3a\xa9\x0a\x9c\x52\xf2\x8f\x08\x6c\x14\x35\xc9\x99\xca\x4a\x26\xfa\x85\xc5\xd0\x37\x8c\x6b\xc9\xcd\x87\x7e\x96\xb3\x39\x4e\x48\xd6\x14\xa7\xe8\xc8\x0b\x04\x3a\x84\x1d\x41\x4d\x68\x51\x62\x30\x9a\x6c\x1f\x8f\x49\x83\xe9\x4c\xc0\x9b\xb2\xc2\xdb\xc7\xa2\x8a\xf5\xc7\x0a\x95\x9b\xbc\xa8\x32\x94\x5e\xfb\x75\x67\x10\xb9\xed\x72\x18\x0f\xeb\xa2\x34\x5f\xb6\x12\xc1\x9a\xa2\xbc\xa2\x5f\x2b\x9c\x7e\x22\x03\xf8\xb5\x9b\x49\x44\xa0\xc2\x06\x67\x65\x8a\x1a\xac\xe3\xaa\x2a\x2a\x10\x27\xe7\x07\xa4\xa5\x68\x87\x53\x40\xc8\xab\x65\x28\xc9\x01\x5b\xe2\x01\x44\x74\x61\xaf\x01\x52\x27\x33\xbc\x3d\x6d\x28\x21\xf4\x08\xa5\x69\x71\x6a\x18\x6f\x74\x59\xa7\x9a\xcc\x7f\x3a\x87\xdb\x0c\x32\x35\x14\xa9\xf5\x38\x51\x4e\xe8\x97\xdf\x0b\xaf\x41\xdc\xd2\xdd\x57\xf4\xf1\xbf\xb1\xbc\xd9\xca\x22\x81\xf4\xe3\x81\xf4\x34\x4e\xce\x80\xcd\x03\x3a\xb1\xa8\xc2\xf6\x15\xd0\xc1\x96\xe4\x88\xe5\x5e\x8f\xe6\x25\xc5\x4d\xc3\xc9\x69\x32\xa3\xb9\xb5\x94\x32\xf0\xd2\xbc\xd2\xc6\xf9\x29\xe2\xb2\x79\x1a\xf7\x99\xd1\x31\x49\x63\xb9\x76\x68\xd8\x38\xbb\xc2\x23\x46\x69\x73\xa4\xd2\x42\xaf\x1b\xd4\x9c\x6a\x10\x37\x1a\x9f\x8c\x63\xbd\xc2\x75\x71\xaa\x22\xdc\x61\xa6\x9c\xfc\x9d\x2d\x65\x03\x0f\xa3\xa2\x7c\xd6\x77\x4d\x4e\xb4\x1e\x81\xb0\x90\x40\xd1\x45\xf8\xa1\x9f\x38\x72\x66\x71\x38\xa4\x58\x91\x3d\x31\x28\x0a\x48\xfa\x37\x7d\x88\x1b\xad\x89\x01\x12\x44\x93\x47\xf4\xf4\xbf\x07\xdb\x0f\xf5\xfd\x4b\x92\x95\x45\xd5\xa0\xbc\xb9\xb6\x90\x3a\x6d\xbf\x84\x65\xa0\x35\x1d\x59\x45\xee\x30\xec\x44\x11\xe0\x6b\x71\x0d\xe3\x3a\x35\xba\xad\x6a\xde\x76\x94\xe2\x64\x92\x8b\x92\xe1\xc3\xa7\x23\x4e\xcb\xaf\x84\x50\xdd\x3e\xe2\x38\xda\xd8\xfc\x5d\x86\x90\xc9\x67\xba\xad\xd8\x17\x55\xb6\x39\x95\x25\xae\x22\x54\xe3\xd9\xea\x1f\x3e\x2c\x34\x40\x06\x98\x6b\xc2\xc3\x07\xb9\x11\x54\x74\xde\xbe\x2a\x5a\xbc\x7e\x0f\x4d\xba\x98\x31\xfd\x8c\x29\x66\xdd\x7a\xa5\x35\xb1\xa4\x56\x12\xc0\x1f\xc8\xd2\x56\xe2\xea\xa1\xdd\x3b\x2e\x8c\x6c\x37\x60\x2d\x8e\xb6\x36\x9e\x10\x80\xd3\x01\x78\x20\x9e\x33\x1f\x93\xe6\xa8\x47\x45\xbe\x4f\xaa\x8c\x6a\x3d\xa0\xd4\x6e\x9f\x28\x0c\xcd\x1e\xe3\x98\x94\x02\xe5\x2b\xa6\xcf\xa4\xc0\xc0\xd9\x6b\x65\xc9\x44\xc9\x5b\xb9\x54\x46\x33\xcb\xcd\xa3\xad\xec\x58\x42\x11\xf1\xc4\x4f\xf9\x91\x0e\x25\x12\x9b\x92\xb6\x57\x5a\x32\x9c\x9f\xb4\x25\x00\x40\xb5\xdf\x4e\xcb\x6a\x37\x5d\x3d\x7f\xf5\xbb\x46\xc0\x94\xaf\xa2\x4e\xa8\xba\x4b\x56\x8c\x24\xda\x72\xe6\x06\xcb\x23\xdb\xb7\x5e\xb9\x02\x26\x0c\x0d\xc7\xf7\xcc\xfe\x77\x78\x7e\xdc\x32\x58\x8a\xaa\x33\x6a\x70\x1b\xa2\x21\x2d\xab\xf5\x7d\x8a\x9f\xf8\x34\xf2\x9d\xee\x16\xbb\xb5\xd5\x30\xce\xc7\x2d\xbf\x9d\x2a\xaa\x04\xe7\xcd\xa6\xeb\x9d\x90\x17\x27\x15\x33\xa6\xb4\xea\xe0\xb6\xab\x82\xcb\x89\x8a\xf4\x94\xe5\x5b\x75\xaa\x62\xdf\x16\x15\x79\x83\xf3\x46\xde\x30\x73\xc9\xd7\x3f\x64\x38\x4e\x10\x78\x3f\xd0\xc9\x23\xbb\xdc\xfb\x4b\x4f\x5f\x8e\x60\x46\xf9\x34\x9a\xd7\x84\x23\x38\x18\xdb\x2e\x9f\xae\x03\xd6\x7e\xef\xcc\xa8\xaf\x44\x6b\x39\x6b\xd1\xd2\x44\x6e\x44\x4d\x97\x8c\x28\xdf\x71\x42\x9a\x8d\xd9\xd3\x6e\x63\x6e\xd9\x9f\x25\xfc\x2a\x5e\x60\xcc\xfe\xe1\x35\x86\x08\x5a\x14\x94\x2d\x6f\xea\xbb\xa2\x69\x8a\x6c\x63\x92\xad\x55\x93\xa5\x94\xa1\x1f\xea\xf3\xa1\xb7\x9b\x51\x6d\xb7\x67\x5d\xb4\xab\x8b\xf4\xd4\xe0\x6d\x53\x94\x1b\xd7\x78\xd7\x6e\xae\x74\xf2\x55\xb7\xbc\xf2\x69\x4b\x54\x7f\x3e\x87\x7e\xd7\x03\x42\x48\x3a\x9b\x70\xb6\xc3\x95\x9e\x16\x88\x74\x6f\x5c\x1d\x33\xd3\x89\xf3\xae\x03\xee\x66\xf8\xe5\x55\xec\xcf\xd3\x8a\xed\x48\x22\x4c\x77\xa3\x3d\x37\x0b\xa9\xf4\x8b\x9e\x34\x38\xab\x7b\x40\x0e\x43\x89\xa2\x6f\x23\x04\x7c\xe2\xdf\x4e\x75\x93\xec\x9f\xf5\x96\xa3\xbb\xe4\x76\x02\x46\x28\x8d\xde\xd3\x59\x08\x74\x10\x1a\xe5\x13\xd0\x81\x13\xd0\x3f\x84\x71\xee\x17\x28\x00\xa2\xa4\x8a\xd2\x61\x03\x88\xf2\x84\x2d\x2a\x1b\x02\x89\xab\x21\x81\x6c\xf1\x6a\x90\xe4\xfb\x24\x4f\x1a\x0c\x30\xaa\xb1\x9e\xe4\x7a\x71\x6a\xb6\xaf\x2a\xd4\x6f\xab\xba\x25\x9c\x48\x0e\x22\xe4\x5c\xe3\x1d\x20\xc3\x3e\x99\xb1\x4f\xd2\x74\xf3\x03\xde\x47\x4e\x1c\x2c\x75\xef\xb0\xc9\x9b\xa3\x3e\xe8\x63\xef\xad\xfb\xc9\x2e\xeb\x31\x26\x63\x0c\xad\x7a\xab\x48\xbb\xb9\x26\x7b\xb9\x26\x5b\x51\x93\x7d\x7b\x4d\xce\x72\x4d\x8e\xa2\x26\xe7\xf6\x9a\xdc\xe5\x9a\x5c\x45\x4d\x6e\xdd\x99\x54\xcc\xf2\x09\xd4\x45\x9a\xc4\xa0\xc2\xf1\xf5\x0f\x1d\x96\x6f\xf8\x99\x5a\x6c\x6b\x20\x73\xd0\xc5\x78\xa7\x91\x2d\xf0\x65\xc4\x2f\x1b\x6a\xdd\xb4\xff\xf4\xde\xd4\x4c\xcd\xbc\xdf\x4e\x65\x5c\x6d\x7b\xae\xb4\xa1\x19\xea\xd2\x2c\xe3\x7a\xfd\xc3\x7f\xe7\xc6\x89\x1a\x2f\xd5\x6a\x7e\xdd\x17\xd5\x27\x32\x84\x7a\x8e\xce\xad\xee\xf4\x95\x29\x96\xe7\xa4\x6e\x6d\xb3\x9d\x86\x71\x53\xf9\x4d\x6b\x3e\xd5\xd6\x96\xda\xb4\x66\xd7\xf5\xf0\xad\x7d\xb6\x6a\x95\x8b\x6e\x19\x20\xba\xca\xa0\x03\xd3\x35\xc3\xb2\xcb\x27\x4e\x2d\xbe\xb9\x0a\x7e\xbd\xf1\xca\xa7\x1b\x10\xd0\x3e\xf1\xe5\x47\xc5\x1f\xe8\xe6\x41\x58\xf9\x56\xe3\xbf\x10\x8c\xc6\x78\xa1\x54\x68\x31\x81\x13\x12\x75\x43\xac\x9a\x2c\x6b\x63\xc3\x66\x88\x2d\xd3\x0d\xaf\x23\x50\x30\xd8\xc6\x78\xee\xa0\x1f\x53\xcc\x91\xbc\xeb\x4b\x92\x53\xd3\x0a\x5d\x5d\x3b\x3d\x53\x67\xc3\xe5\xf8\x83\xea\x49\xe9\x62\xda\x37\xd0\xf5\x32\x56\x0d\x18\x5a\x63\xdb\x1b\xc2\xca\xa7\x6e\xd9\x73\xc8\xe7\x17\x3d\xc9\x63\xfc\xb4\xb1\x24\xb3\xf0\xb8\x9b\xe2\x14\xa3\xd5\xe8\x4d\x92\x91\x86\xee\x4f\x79\xab\x62\x9e\x76\x49\xa4\xef\xf0\x4b\x82\xab\xf7\xd0\xd4\xc8\x3f\xcb\xd5\x60\xd8\xce\xbf\x9b\x4b\x29\xea\x8c\x4f\xad\xa1\x9a\x2c\x32\x53\xe9\x8a\x72\x65\x55\x94\xb8\x6a\x9e\x37\x94\x14\x80\x12\x66\xbb\x94\xff\x9a\xc3\x25\xce\xf4\xca\x90\x30\xda\x1b\xef\x7a\x0b\x30\xdb\x37\x0c\xea\xff\xbb\x09\x9d\xce\xe8\x87\xc7\x1e\xac\xc5\x6e\xf9\x04\x0c\x60\xb4\x23\xab\x53\xdb\xa6\x62\xe6\x6c\xda\x1d\xf4\x7f\x91\xa1\x63\x2d\xb0\xa8\x1a\xdc\x71\x84\x80\xd0\x76\xd5\xf3\xaf\xc3\xf2\x23\x33\x09\x8e\x26\x45\x75\xd8\x21\x2a\x48\x0d\x0d\x3a\xf7\x03\x97\x9d\x1f\x85\xee\x51\x01\x64\xb0\x3e\x2d\x59\x18\x78\xa9\xe0\xb8\xea\x5d\x42\x40\xf5\x32\xc5\xac\xfd\x6e\x65\x94\x6a\x8d\xad\xba\x28\xe9\x92\x5d\xaa\xac\x4c\x52\x53\xbd\xbe\xc3\xcd\x23\xc6\xf9\xdc\x2e\x43\x67\xa3\x7c\xc6\xed\x76\x43\x3f\x54\xc5\xe3\xc6\x5c\x3f\xbd\x05\x61\xb8\xd2\x52\x83\x20\x33\x8c\xe3\x78\xc9\xdc\xd9\x15\xd8\xb4\x86\x9d\xb5\xe0\xfb\x22\x3a\xd5\xab\xa1\xe9\x31\xbe\xea\x7c\x3e\x24\x3f\xab\x69\xb1\x58\x1f\x5a\xb0\xde\x82\xfe\x58\x6c\x1f\xe2\xdd\xde\x5a\x24\xe7\x0a\x84\xc2\xbe\xa9\x9f\x60\x76\xf9\x04\x4c\xab\x7c\xea\x0e\x39\x2b\x14\x27\xa7\x7a\xe3\x94\x4f\xc2\x59\x4f\x5e\x90\xad\xe7\xca\x25\x6a\x5c\x7b\x9a\x08\xd6\x95\x99\x75\x73\x62\x6c\xba\xb3\x92\xc0\x18\xad\x38\xa3\x12\x0f\xa7\xf4\x21\x4d\x1e\x96\x48\xd2\x81\x5d\x84\x15\xcd\xe5\x96\xb8\x6e\xc7\x4b\xd2\xc4\x5d\xe7\xaa\x16\x0c\x66\xc8\x07\x34\x32\x28\xdd\x8e\x62\x89\xa9\xba\xfe\xac\x9c\x21\x3d\xf8\xaa\x19\xd2\x43\x33\x47\x97\x35\x94\x5d\x68\xbb\x6a\x28\xa6\x9b\xae\x84\x9e\x6a\xb9\x12\x98\x4d\xed\x6e\x56\xed\xf7\x2b\x05\xf7\x14\x29\x36\x79\xd1\xbc\xe7\x99\xfa\xfe\xe6\xfe\xce\xa3\x50\x48\x21\x17\x99\x8e\xed\xac\x98\x30\x4b\xc2\xe0\x94\xbe\x6a\x2d\x5a\x39\x55\x07\x82\x5a\x1e\xd1\x9c\x57\x16\x1b\x6d\x20\x7f\xd8\xed\x22\x27\x36\xb7\x0a\x71\xbc\xdf\x8b\xca\xcf\x11\xc5\xc5\xe3\xc6\x00\x56\xf9\x04\x7c\xaa\x82\xf0\x6b\xbf\x65\xde\x6f\x57\x82\x49\x42\x72\xa4\xf8\x74\x2a\x8f\x69\x2c\xaa\x0a\xdd\xa2\x22\x3a\x73\xf1\x9b\x1c\xe9\x14\xbc\xaf\xad\xc2\x29\x22\x4c\x30\x68\x41\xa4\xc1\xd6\x48\x0b\x5a\x71\x00\x02\x50\xb7\x9d\x19\x76\x5c\x2b\x91\xa4\xc9\xa5\xd7\x1b\x99\x1c\xec\x46\x66\x3b\x78\xca\x90\x8e\xb1\x61\x12\xb1\xf6\xbb\xb0\xa9\x9d\xca\xb6\x53\x50\x7e\xf7\xbb\x19\x32\xeb\x66\xa7\x9d\x29\x94\x37\x27\x90\xfb\xf2\x8f\x32\xf7\x4d\x36\xe8\x41\x5e\x76\x5b\xf5\xb1\x1d\x0c\xb2\xee\xf2\x07\xd9\x06\x77\x5e\x6d\xc8\xd6\x5e\xf9\x80\x59\x87\x86\x8b\xb3\x6e\x2c\xe8\xe2\x35\x35\x40\x61\x64\x46\xfe\xc4\x3c\x1a\x59\xa2\xdf\x46\x4b\x7d\x85\xc1\x73\xcc\xff\xfd\x6c\xeb\x67\x02\x9d\x04\x12\x61\x1e\x3e\x70\x47\x3c\x9d\x4f\x4d\xc7\x6c\x56\x18\xa3\x9d\x3c\xad\xbb\x69\x65\x96\xad\x91\x3b\xee\x0f\x79\xc9\xa7\x6e\x19\x1a\x12\xd8\x4a\x33\x7c\x67\xab\xe0\x8a\x33\xe3\x92\xfb\x20\xa0\x2d\x45\xac\x25\x90\x56\x28\xe6\x0e\x75\x9d\xa9\x42\xb1\x9f\xa6\xb6\x0e\xba\x5b\x9a\x6b\x5a\xc1\x7b\x34\xd2\x19\xcf\x4c\xf7\xaf\x5a\x12\xe6\x2a\x4a\x93\x8b\xc0\xef\x2e\x4f\xee\x39\x9a\x4e\x12\x47\x76\x07\x3b\xe5\x31\xae\xa8\x6f\xd5\x6f\xed\x49\x30\x56\x86\x47\x16\x4f\x49\x85\xb6\xa4\x53\x9d\x7e\xf5\xa1\x2a\xf7\x68\xf5\x31\x2d\x69\x91\x9a\x06\x93\x8c\x21\x88\x1d\xa2\x46\x15\x46\x0d\xe6\xc8\x80\x98\x53\x5a\x7d\xda\x65\x49\xf3\x75\x44\x1f\xbe\x54\x9b\x24\x14\x98\xa6\x9f\x50\x72\x12\x4a\x44\xa6\x26\xb9\x80\x49\x0d\xb2\x02\x8d\xa2\x3f\x33\x70\x02\xc2\xc1\xf7\x59\xf2\x97\xe9\x33\xb8\x05\x5b\x31\x9a\x64\xe2\x70\x10\x93\x39\x57\x44\xb5\x3d\xa1\xee\x7b\x61\xac\xe4\xe1\x51\xc0\x4f\xd3\x5a\x05\xac\x26\xe7\x6a\xc8\xc9\x56\x5c\x84\xc5\x45\x70\x2c\xff\xad\x27\x61\x27\xd4\xcd\x70\x8f\x82\x91\xbc\xea\x2c\x97\x92\xd8\x6a\x93\x65\xe9\xc5\x25\xf3\x9a\xd8\x1b\x1e\xe0\x7d\xbf\x5e\xd1\x2d\x54\xf4\x0c\x10\xda\xbe\x8b\x33\xa0\x13\xa1\x70\x0f\x68\x92\x05\xad\x3e\xa5\x53\x42\x2c\xea\xfc\xda\x2d\x36\x3c\x8b\x31\x91\x2a\xa4\x50\xa9\x3a\x66\xbd\x76\xa1\x6a\xbf\x31\x49\xdc\x7e\x61\x52\x7a\x9a\x11\x3b\xbf\x9b\x49\x00\x86\x6d\x3a\x7f\xbc\xb4\x72\xcc\xcb\xaf\xa0\xe3\x5c\x6e\xc9\x18\x67\xce\xe0\x15\x7b\x3d\x07\x32\x53\x03\x4f\x9f\x8e\x51\xdd\xd8\xf3\xbc\xdd\x48\xb4\x08\x4b\x3c\x2f\x3d\xe6\x6e\x76\x48\x48\x84\x51\x19\x52\x27\x0d\x58\xee\xde\xdb\xfb\x23\x24\xac\xcb\x0a\x78\x6c\x62\x07\xfb\xff\xbb\xb4\x7c\xd7\xd2\x32\xa2\xaa\xe9\x7a\xf6\x7e\xbf\x1d\xb4\x6f\x7e\x81\xe0\x2b\x19\x4f\x55\x21\x57\x9e\xb6\xdd\xd4\x9e\x18\x94\x6e\x9e\xaf\x1e\x33\x91\xb9\x46\x35\x0b\x82\x41\x24\x22\x3f\x0b\x5e\x31\xe4\x4b\xd2\x41\xd1\x96\x05\x49\xb3\xb2\x11\xaa\x16\x2f\xf3\xd5\xac\xc4\x51\xb4\x75\x4e\x6e\xad\xa9\x7b\x75\x2b\x27\x87\x74\x2d\xf4\xb2\xb4\x5c\xdb\xe8\x49\x8e\x50\xcc\x0f\x03\x3b\x06\xb2\xa5\xa9\x10\x27\x35\xda\xa5\x38\x16\x18\xba\x4f\x5c\xcf\xd3\x5d\x91\x8e\x47\x95\x28\x56\xb2\x5e\x8f\x6b\x9a\xa1\xd4\xe8\x57\xb0\x4a\x8f\x7b\x82\x07\x6e\x40\x3c\x47\x85\xb9\xc1\x52\x56\x71\xe1\x0e\xd5\x2c\xd7\xd5\xba\xff\xd0\xbd\x1f\xaf\x5c\x14\xca\x74\x34\xcf\xd1\x4c\xcf\xa6\x30\x13\xda\xb3\xac\x33\x4b\xa3\xaf\x50\x63\xda\xa4\xf5\x23\x2f\xaa\x33\x8a\xe2\x2b\x47\x7d\x51\xb7\x51\xa1\x5e\x31\xe2\xf3\x5a\xcd\x6a\xa4\xd3\x3d\x5f\xd6\x7a\x16\x67\xa6\x67\xee\x1c\xaf\x1b\x9b\x18\xa7\x58\xd0\x07\xf8\xaa\x59\xe6\x12\x49\x5b\xa8\x39\xea\xcc\x81\x8c\x2b\xbc\xf4\xc6\x2e\x07\xd9\x91\xd8\xd2\xa9\xe5\xb4\xcd\x55\x6b\xc1\x63\x04\xaa\x8c\x85\x45\x48\x81\x64\x1d\xec\xdc\x82\xa1\x40\xba\x02\x70\x51\xa4\xaf\x45\x3b\x45\x05\x05\xdb\x44\xec\x76\x1e\x67\x6e\x14\x2d\x93\x2c\x5f\x1a\x2c\x85\xc0\x57\x54\xb9\x2c\x82\xd5\xe0\x2b\x28\xb5\x46\x46\x2a\x0b\xf0\x22\xd2\x0c\x43\xcd\xb5\x34\x2f\x64\x02\x92\xef\xb6\x2a\x7f\xed\x19\xc7\x9c\xc8\x6c\x5b\x33\x12\x99\x8a\x16\x2f\x89\x32\x15\xf0\x0a\xca\x2d\xcb\x1b\x05\xb8\x82\x6f\xfc\xbd\x65\x59\xd1\x34\xdf\xb0\xfc\xd6\xa8\xc2\xdd\xc6\xb9\x57\x9b\x51\x78\x88\x05\x23\x8a\x00\x3a\x63\x42\x59\x86\x9b\xa8\x5f\x34\x89\xfa\x0a\x5b\xed\x00\xdc\xde\x75\x93\xec\x7d\x33\xf0\xc3\x31\x9a\x31\x07\x86\xa4\x93\x1d\x5b\x7d\x70\xc0\x6d\x3f\xbb\xa1\xf0\xfd\xc0\x0e\x90\xc2\x35\x40\x6d\x62\x67\xc7\x12\x96\xe2\x4c\xdd\x9a\xef\x78\xef\x17\x32\x7b\xf9\x4a\x6d\x11\x18\xc1\x8c\x65\xd9\x08\xa4\x15\x60\x02\x93\xf5\x07\x55\xbc\x83\xdd\xf8\xd4\xd8\x33\xdd\xf2\x89\x0c\xeb\xdc\xa8\xfc\x63\x0e\xa6\xe6\x59\x05\xa8\x8e\xa0\x2f\xbc\x33\xbe\xbd\xc0\x9e\x83\xef\x04\xf3\xe5\xe7\xc6\x79\xb0\xf8\xab\x6e\x67\x98\xce\x02\xc9\xd2\x84\xbf\x1d\x7b\x85\x0d\xda\xe9\x6d\x9c\x8e\x87\xd1\x85\x6b\x6d\x3e\xfb\xc7\x0f\x73\x63\x3f\xbe\xbe\x2d\x78\xa7\xcc\xa3\xee\x3d\xd0\x3e\x48\xd7\x12\x14\xf7\x3e\x47\x07\xdc\xc3\xa1\x96\x51\x3e\xd1\x0b\x24\xc0\xf2\xca\x27\xe0\xfa\xfd\x55\xf4\x6e\xba\x90\xcc\xf1\xf9\x98\xaa\x16\x4d\x75\xe3\x94\x06\x1d\x91\x0f\x27\xd4\x77\x53\x63\xc9\xdf\x4d\x38\x47\x53\x16\x51\x47\x34\x31\x0c\x83\x17\xdf\xfc\x49\xb6\x0a\x8b\xea\xbc\x98\x9e\xe7\xb9\xee\xbb\x6d\xe7\x20\xc8\xfb\x03\xf7\xe6\x4e\x31\x95\xf2\xa1\x49\x08\x48\x5d\x88\x0d\x21\x93\xf3\xdd\x13\xae\x82\x96\xa8\xae\x93\xfc\x30\x3d\x66\xd2\x49\xf7\x4c\x81\x99\x73\x6f\x0b\xef\x0c\x3b\xe4\xeb\x8d\xaa\x84\x5e\xa1\x5a\xae\xb8\x8d\x72\xa0\xde\x66\x59\xa6\xdb\x69\x12\xe6\xfd\x2c\xd6\x99\xd6\xb1\x1a\x84\x6b\x88\xa8\xca\x57\x51\x65\x8f\x82\xbd\xad\x38\x5e\x6e\x77\x8a\x86\x66\x3a\xb6\x46\x36\x8a\xa4\x75\xd3\x58\x27\x59\x80\x8a\x00\x15\xe7\x89\x57\x1c\x2f\xfb\xb4\x40\x0d\xf3\x6a\x9d\xb8\x77\x2d\x5d\x65\x82\xd6\xd4\x0d\x6d\x79\x16\x48\xe5\x3c\xa9\x1c\x77\x15\x74\x3c\xcb\x95\x67\x80\x64\xb2\x07\xa3\xc3\x3d\xc3\x95\xce\x00\xa7\xc1\xc6\x87\xe5\xf3\x13\x9c\x6b\x62\xbb\x1e\x4e\xe5\xb2\xa5\x50\xd9\x6a\xd2\x14\xd3\x18\x9f\x49\x4a\xad\x9e\x04\x9b\xbc\x19\x3d\xf8\x9a\x08\x7e\x0c\x93\xf0\xfc\x3d\xf9\x69\x9c\x23\xdd\x8b\xb9\xc1\x4b\x97\x30\xd5\x9e\xef\x0a\x0d\x87\x9e\x12\xf5\x85\x71\x9a\x26\x65\x9d\xd4\x5b\x29\x16\xd4\x4c\x73\x86\x96\xb0\x96\x15\x79\xfa\xdc\x2d\xbb\x72\xa3\x14\xce\x97\x13\x98\x67\x08\x30\x21\xbe\x66\x89\x2a\xf1\xba\x85\xb3\x85\x85\x47\x35\x2e\x2c\x10\xc9\xd8\x41\xa1\x45\xaa\x93\x19\xd4\xca\x6a\x77\x9a\x51\x01\x5a\x0a\x94\x80\x1e\xe6\x16\xde\x45\x6e\x60\xb7\xb6\xdb\x22\xcf\x60\xba\xac\xc0\x69\x73\x80\xdc\x98\x76\x54\x10\xd5\x89\xe9\xb1\x5a\x4f\xe5\x34\xe9\x65\x25\xa3\xa1\xd9\xae\x77\xf2\x35\x4b\xe8\x84\xe2\xd5\xf2\x49\x84\xdd\x92\x76\x11\x16\xab\xb9\x02\xad\x20\xbf\x08\x8b\xc0\x5c\x81\x6e\x5d\x12\x23\xf7\x5c\x17\x89\xca\xcd\xf5\x8b\xa8\x5d\x92\xe5\x7d\xb9\x3c\x4f\x5a\xc1\x53\x26\xe8\xef\x1b\xd0\x38\x5b\x5c\x4c\xa0\x35\x48\xc5\x21\x30\xd6\x14\x91\xf5\xe5\xe9\x48\x11\x1d\x7b\x5f\x04\x0f\xc0\xd9\xb9\xc2\xa3\xdf\x38\x2d\x34\x75\x22\xb1\xc3\xe1\x5a\x8d\x6d\x12\x14\xfb\x24\x6d\xc8\xee\x0f\x55\x8a\x9b\xf3\x33\x4a\xae\x76\x6b\x49\xba\xd2\xbc\xa2\x1c\x5d\x83\x24\xbd\x7d\x5f\x54\xd9\x8d\xcd\x7d\x55\xf1\xae\xcd\xaf\x2a\xdc\x36\x5c\x75\x02\x3b\xe5\xb3\xfa\xbd\xaa\xc0\xfc\x70\x2e\x90\x9e\x1a\x18\x56\x74\x75\x0d\x35\x98\xb1\x82\xbb\x59\x33\xbd\x59\x9e\x6f\xf2\x72\x5d\xaf\x73\x5f\x7e\x1b\x52\xb4\xfd\x7c\xc5\x55\x1a\xbe\x7e\x8a\x64\xde\x92\x44\xab\x57\xc3\xf5\xbb\xb9\x2e\x74\x59\xab\x2f\xbd\x6d\x17\x45\x93\x8e\xe8\x51\x29\xc5\x69\x13\xc3\x31\xf9\x4a\xf5\x65\xb9\x69\xe3\x10\x5e\x73\xed\x63\x4b\x82\xd8\x48\xe1\xda\x5a\x2b\x0c\x89\x1c\x34\x9d\xdb\xe5\xde\xab\x24\x80\xb4\xdc\x0f\x35\x3e\x8c\x25\xca\xc3\x87\xf1\x6e\x61\xac\xc5\x4f\x9a\x4f\xde\x9e\x9d\x64\x47\x6f\x81\x9f\xb4\xf9\xce\x28\x7b\x37\x75\x91\x6a\x45\xd3\xe7\x6b\x5b\xdb\xe1\x9e\xc4\xa2\x0e\xcc\xeb\x44\x5c\x0f\xe5\xd2\xc3\xf2\xeb\x8c\xae\x00\x4d\x5e\x1f\x99\x45\xf8\xdd\x76\xc0\x36\xfa\xca\xb1\xa8\x92\x97\x22\x6f\x26\xe3\xaf\x54\xf8\x8c\xab\x1a\xab\x02\xb0\x54\xc5\xa3\xde\x65\xcf\x64\xbd\xe5\xc5\x43\x61\x22\xf0\xf6\xc6\xf1\x80\x09\x2e\xce\xbc\x31\x92\x99\x8e\x38\xc6\xe9\xa3\xc5\x8e\x98\x43\x8a\xb0\x47\x63\x37\x4e\xdf\x5d\xfb\xbe\xb6\xf1\x06\xed\xd5\x32\xae\xbf\x68\x7f\x93\xac\x5b\xab\xf5\xbb\x38\x13\x5a\x02\xcf\x28\x3d\x61\xbd\x53\xc0\xdb\xcd\xcc\x18\xa0\xdd\x03\x4c\xe6\xb7\x2a\xff\x84\x94\x56\xd6\x32\x05\x25\x54\x35\x05\xc4\xd7\x37\xde\x1e\xb1\xfd\x78\x92\xc7\x84\xdb\x2c\x5b\x62\x0e\x05\x8a\x2e\x58\xc1\x9a\xea\xba\x5b\x33\x94\xd2\xd0\xc7\x99\x92\xd2\xc1\x70\x6f\x72\x5a\xbe\x49\xd8\xc5\x9b\xcb\xb7\xb4\x6b\xb2\xa4\x6c\x8f\xdb\xef\x85\x98\x63\xbc\x61\x4c\xb2\x2b\xf3\xde\xcd\xe3\xfd\x67\xf6\x77\x09\x36\xa7\xd4\x32\xd8\x39\xd3\x55\x58\x59\x15\xc7\x60\x8a\xd6\x81\x3e\x00\xf4\x64\x0b\x27\x40\xa6\xa6\x5e\x1f\xb4\x57\xbe\xca\xc3\xdb\x7d\xb8\x08\xcb\x82\xf2\x01\x3d\xcb\xc5\xd9\xb6\xc2\xd4\x94\xd9\x05\xcd\x9a\x6c\x3c\xeb\x30\xf9\xf8\x75\x2a\xc4\x5a\x0b\x43\x66\xd0\x63\x51\xc5\x6a\x38\xd6\xcf\x25\x6c\x3c\xd4\x04\xbe\x29\xa2\x4c\xa2\x9e\x2f\xd0\xd7\x22\x85\x50\xdf\x72\x1f\xdf\xce\xaf\x7b\xb4\x84\xd5\x0d\xaa\x1a\x69\x01\x63\x69\xf2\xf2\x45\xf3\x59\x56\xef\x58\x4d\x47\x52\x8a\x56\x3a\xbe\x05\x42\x43\xc3\xa2\xb2\xc4\xa8\x42\x79\x84\xc5\x40\xb2\x53\xe9\x0b\x27\xfc\x8a\xab\x25\xed\x44\xf1\x7c\x3f\xf0\xfd\x2b\x3c\xa2\x9a\x9d\x65\xb7\xa1\x49\xe4\x66\xfd\xe6\x1c\xb7\x72\xea\xbd\x01\x4b\x7e\xc7\x54\xfe\x5e\xae\xbd\x51\x60\x4c\xf9\x61\x8f\xef\xe7\x39\xb1\xb5\x66\x84\x38\x27\x9e\x15\xe3\xb4\x00\xdd\x35\x73\x06\x6c\x34\x66\x2b\x61\xd7\x34\x41\x1c\x3f\x15\xe0\x8a\x51\xbc\xbd\xd8\x6c\xd3\x96\x46\x54\xe9\x27\xc0\x5d\xd5\x5b\x1a\xbe\xc1\x13\x61\xcd\xf0\xcd\x43\xf7\x6d\x9a\x06\x1b\x0f\xdf\x3a\xd8\x35\x4d\x90\x86\x4f\x01\xb8\x66\xf8\x6e\x2e\x36\xdb\xb4\xc5\xe1\xa3\x65\x2e\xc5\xa9\x21\x52\x7c\x63\xdc\x2a\x7e\xdb\x01\x0f\xe2\x70\x8f\xe2\x29\x99\xab\x0b\x8e\x88\xfc\x4e\x93\x27\x9c\x4a\x99\x5b\x38\x3a\x56\x04\x92\x15\xdf\x09\x99\xd2\xd7\x66\x83\xae\xae\x0d\xa5\x8a\x33\x3e\x74\x7d\x1b\xde\x53\xb4\x09\xf1\xbb\xb5\x60\xf0\x61\xa0\x47\x7a\xd4\x54\x2f\xb7\x5f\xd2\x5f\xdb\xd5\x8d\x2a\x01\x4a\x03\xea\x54\x0f\xa7\xe6\xc8\x6c\xcf\xbf\x9f\x26\xab\x09\x27\x5a\x0e\x6e\xe9\x84\xa2\xa5\x6a\x7b\xe9\x52\x33\xe4\xed\x2a\x74\x5d\x39\x12\xee\x6f\xa6\xe1\x4b\xa7\xe7\x8e\x70\x26\x35\x8f\x66\x74\x2e\x2a\x1c\xa0\x74\xf7\xb7\x17\x3b\xcf\x76\x40\xf4\x6d\x8e\x35\xf0\x0b\x4e\x7b\x96\xbb\xb2\x5e\xa1\xfb\xac\xc5\x38\xe3\xa7\x05\xb4\x70\xb6\xe5\xfd\x16\xde\x8e\xed\x14\x94\x37\xa6\xc8\xfe\x3f\x72\x03\xd2\xdb\xf6\xfc\xfe\x68\x6d\x24\xa0\x65\x5f\x30\x59\xfe\xce\x06\xcd\xa3\x03\x6e\x8d\x10\xf3\x5b\x7e\x45\x46\xbb\x08\x8c\x8f\x2c\xe5\x7d\x72\x1f\x3e\xa3\xb3\x4c\x28\xf6\xc7\x22\x65\x58\x30\x7e\xd5\x41\xf3\x64\x33\xc6\x62\xb8\x0b\xca\x22\x88\x6c\xbf\x8b\xe3\xd8\x05\xea\xb0\xb8\x50\x7e\xd4\xff\x53\x32\x9b\x4c\xaf\x05\x8c\x6a\x52\x09\xaf\x7c\x6a\x11\x07\x03\xde\x11\x9a\x69\x03\x09\x9b\x7b\x46\xef\xcd\x68\xf1\xc6\x16\x42\x1b\x21\x3e\xce\xba\xb8\x27\xcc\x8b\x3b\x08\x35\x33\xf4\x34\xcb\x08\x34\xe8\xde\x2b\x42\x8b\xa7\x0f\x71\xe7\x17\xfe\x43\x60\x05\xbb\x10\x75\x11\xa0\xfb\xee\xb9\x86\xe8\x66\xf9\x23\x29\xa8\xb2\x35\xd2\x95\x94\x6e\x43\xbb\x7e\x5c\x24\xbf\x5a\x2a\x50\x64\x51\x6f\xf6\xf0\xea\xfe\xd2\x04\xbe\xba\x57\x9c\x6d\xa9\x5c\xa0\x05\xc3\xd3\x1b\x79\xc0\x4a\x3b\x78\x3e\x91\xf7\x7f\x1d\xb6\xef\xca\x96\x3d\xdc\xe8\x96\xbd\xf2\x7e\xfa\xeb\xee\x6b\xd3\xf1\x94\x3c\xd2\xc9\x90\xb4\x51\x9c\x1a\xb4\x2b\x51\x8e\xd3\xaf\x0f\x25\xe7\x5d\xd2\xcf\x6c\xd8\x5d\x3e\xa0\x45\x78\xfe\x13\xe0\x27\xcf\x62\xb6\xe2\xa5\x7a\x39\x58\xbe\xe0\x34\x39\x1c\xa9\x91\xe9\x3d\xba\x35\x7f\x95\x1b\xbc\xc0\xc3\xc2\xe1\x12\xe7\x67\xab\x3e\x5b\x1a\x75\xf6\x32\xe1\xcf\x29\xcc\xc1\xf6\xed\x08\xf5\x60\x77\x3e\x4e\xd4\x11\x50\x39\x75\xfb\x47\x7a\xa8\x40\x1b\xc7\x6c\x85\x34\x92\x4a\x54\xa4\x69\xdb\x74\xfa\xc6\x91\xd6\xc4\x3d\x4b\xcc\x5b\x55\x07\x11\x21\x2a\x36\x96\x21\xab\x18\x2d\xe4\x87\x0b\x1f\x9c\x7f\x34\xd9\xa1\x8d\x33\xf6\xe0\x12\xed\x34\xac\x71\x5d\x13\x0e\xbd\x07\x4d\x25\x1b\x50\xdb\xe7\x98\xe8\xc3\x04\x9c\xf9\x8d\x3f\x42\xa5\x4e\xb4\xa1\x10\x87\xb7\x2d\x55\xbd\xee\x08\xbe\x2b\x2d\x45\xa4\x1f\x45\xbc\x07\xed\x4b\x08\xc2\x37\xc5\x99\x5b\xc8\xe2\xfc\x8b\x77\x3a\xf2\x22\xc6\xc3\xb7\xfa\x58\x3c\xd2\x88\xd7\x80\x56\xde\x93\x84\xb5\x82\xa1\x61\x41\xd6\x1d\x68\x05\xae\xff\xae\x8d\xac\x0e\x74\x60\x29\x02\xac\xaf\x47\x4e\x63\x6b\x77\x41\xc9\x2f\xdc\xeb\x7b\xdf\x87\x91\x8b\xd6\x6d\xde\xf3\xec\xa9\x3c\xe2\x0a\xc3\x37\xa3\x8f\x6b\x10\xd2\x98\x2d\x6d\xbc\x7f\x2e\xda\xbc\x41\x43\x6d\xf9\xee\xd0\xab\xb0\x38\x6f\x82\xc5\x7d\x13\x2c\xde\xbd\x14\xb5\x95\x0c\x39\x88\x85\xfd\x92\x58\xcd\xb7\x33\x17\x4d\x3e\xa9\x1b\xae\x12\x8a\x9b\x17\xf8\xfc\xd4\x32\x28\xef\xa8\x78\x66\x09\x23\xf7\xc2\x56\xf7\xb4\xc7\x6d\xc3\xc9\xf3\xb1\x6d\xbf\x93\x8a\xa2\x28\x9d\xad\x5f\x31\x03\x6c\x45\x2f\x96\xd0\xac\xea\x46\x8d\xab\x73\x12\xe1\x55\xed\xa1\xf2\x50\x5e\x7d\x3a\xe7\x2b\xd7\xe0\x3d\x23\x1f\x86\x20\xcb\xc3\x60\xfc\x08\x2c\x9b\x74\x83\x07\xd2\xe0\x29\xe7\xcb\x48\xab\xa4\x8c\xf3\xa1\x48\x35\xe1\xfb\x29\x95\x30\x50\x08\x31\xe5\xb4\x14\x7c\x2c\xab\xf5\x43\x95\xc4\x7d\x02\xfd\x42\x7e\xe9\x07\x54\xb6\x57\x65\xd8\x03\xa2\x34\x91\xbd\x1b\x53\x6f\xc8\x9a\x90\xa1\xa7\xf7\x16\x81\xd0\xcc\x7d\x75\x7f\xff\x2b\xa1\x91\xbe\x4f\xd2\xf4\x2b\x43\xd0\xd3\xb5\x2b\x54\xe1\x12\xa3\xe6\x7d\x0f\xa7\x8d\x91\xb0\x92\x14\xa2\x2a\x1e\x6b\xe1\x02\x4b\xd7\xa3\x87\x34\x91\x3d\x53\xed\xf1\x95\x37\x4a\x3f\xf6\x72\xe8\x94\xbb\xcd\xf0\x64\x30\xdb\x29\x08\x91\xa5\x78\xdb\x22\x72\x77\xc6\xce\xbf\x36\xb1\x64\x73\x8c\xe2\xd8\x8e\xfd\xf6\x3d\x53\xce\x29\x7d\xd0\x47\xfa\x70\xf8\xcd\xb1\xd7\x5e\x15\x5b\xdd\x21\xf7\x22\x47\x0c\xbf\x36\x71\x5f\x72\xfc\x56\x15\x6c\xbf\x24\x4a\xff\xef\x36\xbc\xf7\xb5\x7f\x09\x52\xde\xbe\x78\x9d\xfa\xc2\xbd\x17\xc9\xdd\x33\xdb\xc0\x90\x3e\xcc\x39\xe4\xf4\x40\x4c\xdf\x69\x1b\x76\xaf\x8d\x6a\x60\x55\x93\xf2\x13\xfa\x91\xf8\x00\xd4\xf8\xf9\x4a\x39\x84\xf2\xb5\x11\x9e\x74\xd2\x9f\xc6\x41\xf5\xaf\xcd\xc8\x0b\x5c\xb0\x14\x28\x2e\x4c\xd3\x01\x1c\xae\x4b\x95\x4f\xc0\x1d\x05\x67\xb6\x28\x23\xc9\x1d\x96\x12\x08\x69\x8e\xaa\xb0\x75\x13\xd7\x18\xe4\xa7\xa9\x9a\x98\x2c\x04\xbc\x32\xf8\x3a\x85\x8f\xa0\x19\x79\xe9\x93\xd4\x06\xbe\xe0\xaa\x90\xd8\x2e\x06\x71\xcc\xd2\xc7\x4f\x59\xd0\x42\x17\xde\xeb\x43\x0f\x0d\x83\xcd\x2a\x82\xae\xf5\x29\xd1\x84\x6f\x3f\x0e\xbb\xef\xd6\x8a\xce\xb2\x5b\xa7\x0a\x4d\xf8\xc6\x01\xb7\xfe\xec\x2c\xbb\xf3\x69\xd1\xc4\xaf\x1c\x78\xeb\xcc\x2e\x60\x1b\x6c\x97\x2d\x63\x88\xd9\x82\x6d\x42\xb7\x5a\x67\x1e\xdd\x6c\xfb\x13\xab\x9e\x6c\x5a\x7e\x0b\x4b\x30\xc2\x5b\xd6\xe8\x46\xa6\xea\xf9\xab\x07\xc4\xb3\x7e\xef\x9b\xb4\xe6\x26\x99\xca\x4d\x48\xf0\x00\x9a\x03\xe4\x9d\x80\xe6\xe0\x44\xc7\x9c\x1e\x2e\x45\xf5\x51\xcf\x70\x5d\xa3\x03\x06\x25\x64\x37\xb9\xd9\x74\x9b\x86\xaa\x4f\x51\x84\xeb\x7a\x0c\x57\x61\x4c\x59\x8b\x55\x2f\x5a\xe9\xd4\x99\x5d\xd1\xe5\x2b\x0f\x6b\x60\x5b\x62\xac\x01\xed\x19\xa8\x03\xcd\x8b\x26\x89\xf0\xf0\x7d\xf9\x7e\xa2\xb6\xe2\x22\xde\xca\xa8\xf9\x8a\x60\xc3\xa3\xb0\x64\x82\xbb\x1b\xff\xda\xe5\x92\xef\x93\x9a\x97\xd6\x78\x95\x2d\x02\x2b\xb9\x2a\x9b\x09\x67\x8a\x7a\x28\x51\x0c\x48\xc9\xf2\x40\x4a\x93\xbe\x4f\x85\xfb\x22\x8d\x71\xd5\x9b\x5a\xdb\xe5\x1a\x67\x5b\x6e\x77\xbf\xee\x39\x35\x7a\x9d\x6a\xd2\x3e\xcc\xad\x32\x4c\xe1\xd9\xe4\x45\xfb\x89\xcf\xeb\xab\x62\xc6\x1c\xd0\xde\x2a\x1f\xad\x51\x7c\xc4\xc7\xed\xf8\x49\x19\xe9\x65\x55\x76\x9e\xd2\x4d\x24\x55\x56\xc7\x90\x7c\xde\xcd\x0f\x11\xfd\x9d\x9f\x2f\xe2\xa8\xbb\x14\x31\x5c\x71\xb6\xd9\xee\x45\xb8\x5b\x39\x64\x89\xbf\x91\xce\x3d\x23\xf4\xcf\xe8\xb5\x76\x1d\x1d\x9f\x71\xde\xd4\x6c\x41\x9d\x95\xf4\x6a\xc1\x36\x7a\x39\x78\x76\x4e\x0c\x8c\xac\x30\x75\x0d\x79\xfc\xaa\x6d\x1b\x0b\x01\x8a\xa5\x6b\x52\x26\x1f\x95\x9a\xd7\x9f\xd6\xad\x63\xbc\xe5\x33\xc9\xd0\x01\x6f\x4e\x55\xfa\xfe\x77\x31\x6a\xd0\x86\x7e\xff\x58\x9f\x0f\x3f\x3e\x65\xe9\x36\x3a\xa2\xaa\xc6\xcd\xa7\xbf\xfe\xfb\xcf\x7a\xa0\xfd\xbe\x3e\x1f\x00\x1d\xaa\x4f\x77\x96\x7d\x07\xd8\x58\x7d\xba\xb3\xac\x3b\xf0\x94\xa5\x79\xfd\xe9\xee\xd8\x34\xe5\xe6\xe3\xc7\xc7\xc7\x47\xf8\x68\xc3\xa2\x3a\x7c\xb4\x0c\xc3\x20\xf8\xee\x1e\x7e\x7f\x00\x64\x4b\xf1\xe9\xee\x9d\x65\x33\x75\xfd\xee\xe1\xf7\x25\x6a\x8e\x20\xfe\x74\xf7\xe7\x10\xfa\xae\x0d\xcc\x5f\x4c\xe0\x42\xd7\x31\xcf\xa6\x01\x43\xd3\x4c\x6d\x68\x05\x01\x30\xa1\x6f\xf8\x5f\x7c\x68\xb9\xa9\x0b\x1d\xcf\xd5\x2d\x18\xd8\xfe\xcb\xdd\x47\x0e\x81\x69\x43\xcb\xf1\x81\x79\x0e\xa0\x17\x04\x9f\x29\xbe\x2f\x1e\x74\x1c\x2f\xd5\x6d\x68\x85\x14\x49\x70\x36\x4d\x68\xda\x14\x2f\x4d\x31\xcd\xb3\x1e\x40\xcf\xb3\x8f\x36\x74\x42\xe7\x6c\x43\xcb\x62\x95\xea\xac\x52\x8b\x94\x52\xd6\x64\x99\xbf\x58\x16\x30\x3d\xe8\xb8\xe1\x17\xd2\xe8\x80\x55\xc4\x0a\xb2\x0e\xa4\x3a\x69\xaf\x0d\x86\xf6\x7e\x3c\x3c\xfc\x9e\xd0\xe3\xe1\x77\xdd\xfb\x3b\x16\xc7\xf7\x54\x3f\x69\xf5\x1f\x57\x3a\xf2\xa1\xee\xcd\xb7\x44\xc4\x14\x99\xc6\x0e\x04\xab\xe5\xc4\x82\xf4\x16\xbc\x61\x7a\x03\x6f\x98\xfe\xcd\xbc\x61\xba\x9e\xfd\xf3\xcf\x3c\x6f\x98\xd0\x05\xa6\x01\xbd\x33\x34\x5d\x2f\x32\x74\x68\x9a\xbe\x0e\x0d\xc7\xd6\x49\x82\x0e\x0d\x9b\x7d\xfa\x6c\x42\xf7\x25\x33\x80\xf1\xc5\x84\xee\x31\x38\x5b\x30\xf4\x3f\x9b\xe6\x17\x13\xda\x8e\xf3\x93\x69\x02\xe8\x19\x16\xc1\x64\x3b\x36\x30\x40\x08\x5d\xdb\x06\xc6\x67\x13\x3a\x9e\xff\x13\xf4\x5c\x1f\x18\xc0\x60\x40\x06\xa0\x85\xce\x21\x74\x4c\x2b\x32\x00\xf4\x1d\x8b\x42\xd0\x64\x40\x8b\xb0\xcf\x47\x0b\x86\xa1\x7b\xd6\x4d\xe8\xb2\xfa\x59\x7b\x42\x68\x46\x3a\x34\x4c\x82\x90\xb6\xcf\x70\xfa\x76\xd2\xe6\x51\xb0\x97\x2c\x20\x7f\x80\x71\xd6\x59\xdf\x00\xe9\x1b\xe9\x1a\xf9\x4a\xb2\x68\xbf\xc2\xb6\x5f\x2b\xa1\xfe\x11\xfd\x66\x24\x7f\xc9\xf4\x00\x18\xac\x6f\xb3\xdd\x27\x0d\x0d\xa1\xb5\x38\x9c\x74\xc8\x5f\xee\x28\x77\xe8\xd5\x29\xc5\x9f\xee\xf2\x22\x27\xfb\x21\x71\x4a\x3a\xd0\x01\x0e\x74\x3f\xbb\xd0\x23\xf5\x06\x36\x20\x78\xa1\x61\x7a\x3a\x34\x29\x4a\x32\x21\x2d\x8f\xd6\x67\x38\x21\x34\x68\x9d\x84\x72\xf4\xcf\x31\x80\x41\xc4\xca\x01\x9a\x64\x7a\xa4\xb8\x6d\x7f\x71\x48\x97\x09\x25\x0c\x27\x24\xe9\x7e\xdb\x3e\x36\x7c\x06\xe9\x7f\x04\x83\xc0\xa1\xa4\xf3\x5a\x5a\x79\x8c\x52\x7d\x9d\x00\x06\xa6\x0e\x7d\xb3\x4d\xd7\x7b\x88\xb6\xc1\xb4\x3c\x49\xd5\x09\x02\xfa\x81\x66\xb3\xda\x7f\x72\x80\x4d\x11\x3b\x14\x85\x0d\x5c\xe8\x01\xda\xe4\x65\xca\x58\xd0\x05\x01\xb4\xdc\xcf\xa6\x71\x36\xa1\xe9\x3a\x9f\x2d\xe8\x4a\xf2\xcc\x80\xa1\x63\x81\x00\xfa\x86\x9b\x42\xc3\x30\xc9\x7f\x22\x62\x2d\x9f\x08\x2e\x2b\xd0\x61\x60\xf8\xe4\x57\x00\x2c\x68\x58\xba\xf8\xcb\xe4\x73\xbb\x32\xfe\x99\x20\x99\x90\x78\xf4\x76\x71\xa7\xd3\xf5\x27\xe5\xaa\x53\xf1\x79\x79\xb7\x4a\x37\x7d\x0b\x89\xc6\x09\xb4\x70\x9d\x3c\xa3\xc4\xed\x45\x9a\x61\x78\xc1\xcf\x3f\xdf\x51\x6a\xbb\xd0\xf7\x4d\x10\x7e\xb6\xa1\x6b\xf9\xbf\x40\xdb\x26\x8c\x1b\xd8\x64\x88\x5d\xcb\x87\x9e\x4f\x66\x96\xe5\x38\x64\x31\x31\x43\x1b\x38\xd0\x24\x13\xa0\x28\x51\x94\x34\xcf\x9f\xee\xa0\x6d\x53\xaa\x0a\x14\xe5\x08\x1a\x0e\x9e\x07\x3c\x31\x9d\x25\x62\x4e\xea\xdf\x96\xe4\xb8\xa0\xd2\xb7\xfb\xd7\x8b\x2d\xb1\x9a\x57\x2f\x21\x0e\xb7\x84\xd8\x37\x90\x9c\x50\xd8\x81\xbe\x1f\x02\xf3\xb3\x09\x83\x48\x87\x8e\x1d\x12\x59\x10\x40\x9b\x30\x29\x0c\x6c\xfb\x1c\x12\xaa\x93\x49\xe9\x78\x36\xb4\x3d\x93\x24\xb2\xac\xa3\x69\x40\x27\x62\x65\x00\x0c\x74\x68\xfb\xe4\x77\x60\xdb\x5f\x6c\xf2\xfb\x27\xd3\x06\x36\xb4\x7d\x60\x5a\xd0\xb3\x43\x60\x93\x0f\x16\xb0\x3f\x7b\xd0\x76\x11\x74\xa1\x4b\x45\xa9\xa9\x43\xc7\xd2\xa1\x65\x05\xbf\x38\xd0\x0f\x80\xf9\x72\x47\xf7\xd7\xdf\x30\x65\x87\x3f\xfe\xf1\x27\xe7\x4f\xd6\x5d\xcb\x1f\x44\x2d\xe5\x47\x74\x76\x94\x94\x0a\xea\xd8\x34\xb4\x95\x02\x5c\xcc\xed\xd7\xa5\x53\xd0\xb1\x1a\x2d\xbc\x46\xcd\xfb\x53\xb0\xad\x16\xf5\xd8\xea\x0f\xc9\x6d\x9c\xb5\x3c\x09\x6d\x77\xd8\xba\xb1\x2f\xad\x0f\x3e\x7d\xa7\xa5\x7d\xd3\x48\x50\xea\xc5\xad\x41\x5b\xe6\x66\x72\x74\x76\x24\xb1\x51\x53\xdd\xa2\x5e\x67\xa6\x3d\xf4\x8a\xdd\x70\x32\xfc\xe1\x29\x99\xf6\x45\xc8\xae\x5f\x66\xc0\xf5\x8b\x3e\x39\x33\x7e\xce\xb6\x2a\x1a\xd4\xe0\xf7\x8e\x1b\xe3\x03\xff\x9a\xad\x90\x7e\x1d\xed\xfe\x15\x97\xba\xc6\x76\xf4\x71\x31\xf1\x49\x23\xe3\x4d\x66\x20\xaf\xc4\x79\xeb\x66\x20\x7b\x28\x79\xc4\xe9\xe6\xdd\x20\x09\x7f\x26\x62\x30\x7a\xfa\x74\xe7\xdf\x81\xe8\x99\xfe\xa9\xc8\xef\x8f\xb2\xc8\xf4\xfe\xd5\xf7\x03\x8f\x89\x4c\x0f\x9a\x2e\x70\xa0\xe7\xfb\x5f\x6c\x68\x91\x59\x0a\x5d\xef\x6c\x42\xc7\x71\x5e\x58\xa6\x69\x42\xdb\x77\xbe\x90\x59\xc8\x32\x5d\x68\x58\xf6\xcb\xda\x69\xa5\x5a\x97\x3c\xf5\xfd\xb9\x09\x13\xdd\x4a\xa3\xda\x0d\xd6\xae\x15\x26\xab\x9b\xac\x3e\x4a\x5b\xcc\x9b\xa8\xfb\xc6\xc0\x29\xc1\x8d\xa2\x3a\x80\xa1\x0b\x8c\x5f\x4c\x03\xc0\x30\x70\x81\x0d\x7d\xdb\x01\x01\x30\x88\xa6\x63\xfb\x29\x0c\x2d\x47\x37\xa1\x69\x02\x8b\x6c\xea\x80\x05\x6d\x27\x7c\x91\xd8\x89\x1f\xe3\x91\x69\xe1\x3b\xde\x07\x9b\x65\x98\x7f\x6a\xba\x01\xcb\x66\x2f\xe7\xf1\xb4\xeb\x76\xa0\x62\x84\xb8\x61\x62\xac\x8c\xd3\xf6\x1a\x3b\xf8\x2a\xbb\xf5\x0d\x46\xe5\xdb\x6c\xa7\x6a\xdb\xe5\x5b\xcc\x8c\xe0\xf5\x03\xec\x00\x17\x1a\x9e\xf3\x8b\x49\x7e\xd3\x91\xf5\x60\x68\x7b\xc0\xa2\xbf\xd9\x66\x83\xe4\xb0\xdf\x06\x70\xda\x1c\x06\x65\x80\xa0\xcd\xa1\x58\x00\xc1\xe0\x71\xf9\x01\x68\x73\x56\xcf\x25\xcb\x78\xb7\x7c\x9b\xf8\x0d\x0c\xf5\x2b\x8c\xf0\x37\x99\xaf\x95\xb6\xe6\x37\x91\x7a\xbc\x86\xea\xdc\x38\xba\xa6\x0d\x3d\x87\xda\x34\x8c\xd0\x8a\xa0\xe5\x40\xc7\x08\xa1\xed\xb9\x30\x08\xc8\x1f\xb2\xc3\xf6\xd9\x5e\x3c\xb4\x74\x13\x1a\x74\x57\xe5\x5a\xbe\x6e\x41\x2b\x24\x63\xed\xda\xc1\x67\x0b\xda\x96\x45\x36\x8f\x16\xdb\x3c\xba\xa1\xa5\x43\x27\x20\x40\x86\x41\xe6\xbf\xe5\x23\x0b\xfa\x1e\x91\x02\xe4\x37\xd5\x4c\x81\xa1\xd3\xd2\xa9\x03\xbd\xc0\xd3\x03\x18\x1a\xce\x4f\x2e\x74\x4c\x0f\xba\x86\x0b\x3c\x68\x06\x0e\x34\xcc\x00\xf8\xd0\x30\x02\xf2\x29\x62\x15\x00\x5a\x01\xc1\x0f\x28\x7e\x40\xf0\x13\x2c\xb6\x0d\x02\x18\x18\xce\x4b\xa6\xbb\x30\x0c\x42\x92\xe1\x39\x5f\x42\xe8\x19\x3e\xd1\x8b\x1d\xe7\x6c\x42\xdf\x09\x8f\x26\xb4\x4d\x8b\x6c\x99\x6d\x68\x38\xc1\x59\x77\xa0\xdd\x01\x90\x8f\x6d\x3e\xc7\x91\xec\xc8\xf1\x06\xdd\x78\x1d\x7f\xde\xc2\x40\xff\xcb\x2a\xff\x1c\xac\x12\x3a\x61\x8c\x10\xc7\x2a\xa3\xad\x81\xbc\xcd\x51\xdf\xa7\x1a\x6d\x28\x98\x2b\xc8\xd4\x6d\x65\x2e\x44\xda\x76\x22\x02\x91\x1a\xe3\xf8\xa4\x81\xf9\xea\x73\x77\xbc\xcb\x53\xa3\x97\x29\x8a\xf0\x91\x9d\x18\x48\x81\x67\x6f\x42\xcb\xae\x87\xbf\x25\xc6\xdf\x02\xe5\x0d\x88\x54\xf1\x98\xba\xb3\x23\x16\xf9\x42\x39\x8e\x82\x73\x10\x19\xa3\xee\xf6\xc6\xd8\x35\xcf\x82\x3e\xce\xee\x95\xf1\x93\xba\x70\x9e\x13\xbb\xf1\xd6\xac\x4f\x83\x64\xf0\xc5\x85\x70\xac\x4d\x91\x15\x87\x0a\x95\xc7\x67\x00\x07\x56\xbc\x10\x86\x1e\x82\x66\xf0\x40\xe8\x29\xa9\x59\x36\xe5\x36\xb6\xc9\xea\x6f\x9f\xb0\xaf\x7a\x8c\xea\x23\xaa\x2a\xf4\xbc\x71\x80\x23\x55\x42\xbb\x3e\x89\x41\x04\xa6\x93\xe4\xd2\x41\xb4\xb7\x19\x59\xdb\xda\xb0\xdf\x02\x78\x9a\xe4\xb8\x06\xe4\xf7\x50\x66\x16\xac\xbd\x36\xac\xee\x44\x4b\x3f\x7a\x99\x85\x2b\xdd\x24\xd1\x37\xb1\x0e\x55\xcb\x29\x14\x19\x12\x6e\xfb\x0f\x03\xe6\xb9\xcf\x1c\xb7\xf2\xe8\x58\x54\xed\x0d\x09\xf1\xba\xa8\xe2\x34\x76\x1c\x25\x5a\xbe\x55\x24\x16\x9a\x0e\xbe\xc7\x0e\x77\x85\xcd\x87\xf2\xf8\x57\x80\x98\x7e\x47\x82\xf9\xb5\x29\x10\x88\xf7\xb0\xd8\x35\x2d\xd5\x49\xb2\x70\x0b\x8f\x3a\xd9\x4c\x9f\x53\x0b\xb0\xee\x14\xa8\x0a\xaf\x3f\x02\x56\x3c\x6c\xbd\xf6\x9d\xd0\xee\x95\xea\x55\x4f\x59\x4b\x40\xa3\x56\x0c\x2b\xfc\xcc\x7b\xc1\xdd\xa5\xca\x4e\x96\x8b\xdd\x4e\x86\x38\xf9\x8a\x70\xdf\x5e\x20\xbc\x6c\x36\x6a\x80\xb6\xd4\x22\x11\xd3\xc4\x7a\xc5\xe3\xe8\xdd\xc6\xb9\x83\x74\xe5\x2d\x0d\x39\xda\xe7\xc4\x90\x4e\x87\x92\x9b\xa4\x26\x53\xae\xc4\x38\xd4\xa0\xec\xd8\x88\xf3\x12\xe8\x91\x71\x83\x7d\xab\xf9\x4c\xc5\x85\xc2\xb5\xb5\x71\xc7\xb9\x6b\x1d\xdc\x93\xda\xf4\xc2\xcc\x98\x4f\xa7\xdc\x35\x75\xda\x6a\x52\xc8\xe6\x22\xfc\x6f\xc6\x73\x88\x1b\xd3\x29\x5c\x66\xd0\xf9\xb9\x79\x72\x44\xb5\xbe\xb1\xe3\xd1\x51\x04\xc7\x1d\xde\x86\x56\xb0\x69\x67\xcb\xf7\x0d\xbe\xbd\x63\xc4\x8a\x97\x04\xe6\xf3\xff\x6b\xec\xf0\xfa\x30\x62\xed\x71\x29\xee\x01\x88\xb1\x84\x9a\x16\xa2\xaf\xab\xad\x2f\x7d\x4a\xe5\xd8\xc8\x2b\x0b\x2a\x58\x8b\xa3\xf6\x84\xf1\x4f\x9a\xc6\xcc\xd9\x72\x22\x28\xbc\xe3\x69\xa6\xef\x69\xae\xcf\x82\x82\x4b\x18\xe5\x18\xc4\x4a\x83\xc9\xab\x03\xe4\x6f\xa5\xf0\xc3\x02\xf6\xd7\xc5\xe7\x1b\x33\xe7\x1b\x3c\x1f\x3b\x26\xcb\x78\xd9\x50\xac\x2c\x2c\xbe\xb6\xa9\x96\x83\xdd\x54\x08\xfb\x1b\xcf\x52\x1d\x9d\xb7\x32\xa3\x51\xf7\x96\xfa\xb8\x7f\x2b\xee\x3d\x1b\xd3\xe8\x47\xa1\x93\x7f\x2a\x62\xfc\xe7\x84\x0c\xab\x9e\x26\x79\xa3\x37\x45\x91\x36\x49\x39\x75\x67\x11\x8d\x3a\x0e\x7e\x40\x0e\xf9\x91\x96\xd6\xfe\x09\x0a\xcb\x24\x3f\xec\xdc\x66\x8f\xb2\x24\x7d\xde\x64\x45\x5e\x50\xbf\x68\xee\x34\xc7\xe4\xdc\xf6\x37\x7e\x1b\x70\x37\x24\x1d\x89\x32\xbd\xd6\x8f\xa8\x3e\x26\x5c\x63\xf9\x5b\x73\xca\x17\x30\x38\xcb\x62\xa7\xc8\xec\x63\x8b\x0f\x3f\x29\x6c\xa9\xd4\xcd\xeb\x78\x89\x35\x33\x2b\x8a\xe6\x48\x9a\x47\xaf\xc7\x89\xc1\xa8\x1c\xbe\x9d\x80\xa7\xea\xe1\xd4\x34\xb8\xaa\xbb\x99\xe5\x07\x81\x15\x1a\x8a\x36\x5b\xc8\xda\xdb\x9e\x18\x0a\x7b\x02\x25\xd3\x0b\x2f\xbc\xe6\xc0\x86\x82\x34\x0f\xfc\xb0\x0f\xf6\xc1\xde\x98\x2c\x4d\x1a\x9e\x9f\xb2\xdd\xb0\xf5\xf1\xe2\x00\x05\xc1\x04\xa5\x75\x1a\xb8\x05\xc7\x20\x4e\xce\x7c\x72\xf7\x4a\x10\xc7\x29\x8a\x07\x0a\xe9\xab\x18\xd3\xed\x20\x9b\xbb\xe2\xa5\xc5\x95\x14\xb9\x36\x07\xfc\xc0\xcc\x25\xb7\x96\x50\x16\xfb\xce\x56\xdf\xd4\xe0\xdb\xdb\xfa\x56\xcd\xfc\x67\x20\x2e\x41\x40\xbe\x47\x45\x96\xe1\xbc\xe9\xbd\xfa\x63\x6c\x63\x5f\x09\x59\x37\x55\x92\x1f\xb4\xe9\x2c\xdd\xea\xb0\x98\x71\xbc\x43\xb6\x12\x8b\x38\x05\xe2\xd8\xc1\x6e\xa0\x04\x3c\xa3\x2a\xa1\x37\x8b\xe7\x32\x87\x2a\x43\x1c\x38\x91\xab\xc4\x14\xe3\xfd\x8a\x86\x15\x25\xae\x50\x53\xf4\x4d\xc3\x36\xf9\x51\x82\x7e\xc3\xcf\x8f\x45\x35\x5c\x9c\xd8\xc7\xb1\xab\xa6\x19\x6a\x8a\x6c\x45\x5f\x33\xdc\x20\x65\x3f\x1b\x74\x58\xd1\x74\xd4\x34\x55\xb2\x3b\x35\x6a\x5a\xfd\xc7\x09\xa5\xc9\x3e\xe1\x4c\x2e\xfb\x08\xb9\x9e\x12\x53\x59\x11\x32\x34\xcf\x2b\xa8\xba\x3b\x25\x69\x93\xe4\xf3\xc3\x63\xcf\xd4\xc9\x33\x36\x3b\x9a\x63\x2b\xeb\x60\x2b\xe1\xf8\xf9\x07\xd3\x30\x2d\xd3\x9e\x44\x90\xa1\x26\x22\x8b\xc4\xae\x42\xd1\x37\xdc\xde\x99\x89\x71\x54\x54\x54\x89\xdc\x9c\xf2\x18\x57\x04\xbf\xfa\x29\x6a\x58\x61\x14\xb3\xd0\x01\x45\x8c\x33\x8a\x53\x21\xfb\x6b\x49\xa9\x55\x96\x92\xe8\x21\xcf\xac\x35\x65\xf8\xe9\x76\x1b\xfc\x30\x21\x30\x22\x3f\xeb\xeb\x13\x27\x26\xb2\x51\xb4\x8b\xd6\x97\x96\x19\x87\x6e\x5d\xd7\x16\x1e\xcf\x66\x2f\xf2\x77\x81\xd9\x5e\x44\x23\x2b\xe0\xec\xad\x3b\xf5\xd3\x03\xd3\x77\xf1\x94\x08\x07\x2d\x5c\x8c\xed\x55\x4d\xc4\x1d\x98\x40\xf3\x5b\x44\x00\xb9\xf1\x0d\x3c\x51\x47\xba\x2a\x37\xec\x4b\xdb\xf8\xe1\x15\xca\x11\x6d\x1d\xcb\x09\x9d\x58\x85\x56\xb1\x67\xfd\x6e\x0a\xbc\x76\x2f\x31\xdb\xbf\xa5\x1b\x0c\x6a\xcf\x28\x76\x2d\x91\x6d\x37\xdc\x3e\x3c\xcf\x10\x63\x47\xae\xed\xc2\xef\xc3\x95\xf7\x24\xd8\x65\x58\x1a\x76\x42\x8e\x2c\xa2\x7c\x4f\x40\x3c\x4c\xbd\xf4\xdb\x0e\x6a\x5f\x30\xa5\x00\x74\x46\x07\xbf\xc6\x1c\x37\xe9\x96\x44\x38\x1f\x74\xff\x1d\xba\x83\xea\x8e\x70\x3b\xec\xe3\xd9\x87\xf7\x21\x0e\xe4\x38\xd1\xec\x7a\xe1\xc2\xfd\xef\xe1\x26\x7b\xfc\xca\x27\x24\xe5\x50\x40\x0e\xce\x6e\xa8\xb4\x19\x59\xb2\x36\xbf\x53\xef\xfd\x04\xf1\x40\xc3\xa9\x4c\xdf\xf2\xc7\x71\xd2\xd0\x70\x26\x93\xf2\x82\xee\x86\x84\x78\x31\x7e\x17\xc2\x08\x29\x62\x1e\xb6\x96\x60\xc1\xb3\x4c\x3c\x50\x99\x8b\xa4\x03\x14\x9e\x65\x5d\x7f\xe9\xc2\xf6\xff\x03\x00\x00\xff\xff\x05\x17\xe5\x92\x67\xb6\x00\x00") + +func web_uiV2AssetsConsulUiFd032aa6d4c81cb6714bde7019fca516CssBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsConsulUiFd032aa6d4c81cb6714bde7019fca516Css, + "web_ui/v2/assets/consul-ui-fd032aa6d4c81cb6714bde7019fca516.css", + ) +} + +func web_uiV2AssetsConsulUiFd032aa6d4c81cb6714bde7019fca516Css() (*asset, error) { + bytes, err := web_uiV2AssetsConsulUiFd032aa6d4c81cb6714bde7019fca516CssBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/consul-ui-fd032aa6d4c81cb6714bde7019fca516.css", size: 46695, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsFavicon12808e1368e84f412f6ad30279d849b1df9Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x2b\x6d\xd4\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x7b\x70\x1b\xd7\x79\xef\xef\x9c\x5d\xec\x02\x20\x16\x04\x01\x10\x24\x20\x3e\xa0\x17\x29\xcb\x90\x2c\x1b\x7e\x51\x71\x43\xc5\xb1\xe5\xc4\x95\xe3\x1b\xc5\x49\xa3\xb6\xa9\xfa\x98\xea\xf6\xde\x3e\x72\xd3\xde\x4e\xa6\xcd\x74\x32\x99\xde\x4e\x26\x93\xe9\x6d\xd3\xdb\x34\x13\xb5\x79\x28\x69\xea\x3c\x5a\x25\x8e\xed\xc4\xaf\xd8\x96\xe3\x48\x7e\x88\xb2\x1e\xb4\x2c\xc2\xa4\x44\x52\x14\x48\x42\x20\x08\xe2\xb9\xbb\xd8\x3d\xe7\xfe\xb1\x80\x44\x51\x7c\x80\x14\x5f\x4a\xf8\x9b\x59\x13\x23\x63\x1f\x38\xdf\x6f\xbf\xf3\x9d\xef\xfb\xce\xf7\x01\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\x6b\x58\xc3\x1a\x7e\xb5\x40\x56\xfa\x01\x96\x0b\xd1\x68\x94\x02\x40\x30\x18\xbc\xe6\xdf\xc7\xc6\xc6\xa0\xeb\x3a\x00\xa0\xab\xab\x8b\x2d\xff\x93\xad\x2c\x7e\x69\x08\x10\x8d\x46\xa9\xcf\xe7\x83\xcf\xe7\x83\xa2\x28\x00\x40\xcb\xc7\xd4\xcf\x98\xf2\x99\x4d\xf3\x97\x01\x80\xa6\x69\x6c\x6c\x6c\x0c\x63\x63\x63\x38\x76\xec\xd8\x2f\x25\x39\x6e\x5a\x02\x74\x74\x74\xd0\x60\x30\x08\xbf\xdf\x5f\x11\x2e\x05\x20\x82\x43\x14\x19\x91\x6a\x74\xc1\xed\xd2\x84\x40\xad\x2a\x36\xc9\x06\xf1\x3b\x4a\x82\xd7\xa1\xd3\x5a\x91\x11\x3b\xe5\x44\x22\x1c\x94\x51\xae\x9b\x04\xba\x6a\x63\x19\xd5\x66\x4e\xa8\x22\x4b\xe6\x64\x73\x24\x2b\x9b\xf1\xac\x6c\xa4\x74\x91\xab\x9c\xc0\x00\xae\x1c\x4c\xd3\x34\xd6\xdf\xdf\x8f\x23\x47\x8e\xfc\x52\x10\xe2\xa6\x22\x40\x67\x67\x27\x0d\x87\xc3\x90\x65\xd9\x12\x36\x20\xd9\x4c\x62\xf7\xe5\x6d\x4d\x8d\x19\x69\x47\x63\x56\x8a\x7a\xf3\xb6\x2d\x1e\x55\xdc\x24\x9a\x24\x40\x40\xec\xf3\xfd\x81\xdc\xfa\xaf\x61\x12\xa4\x8b\x92\x39\x98\xac\x29\x9d\xbb\xec\x2a\x9d\x19\x51\xb4\xe3\x09\xa5\x14\xcb\x49\x66\x06\x04\x3a\xca\x84\x48\x26\x93\xac\xbb\xbb\x1b\xb1\x58\xec\xa6\x24\xc4\xaa\x27\x40\x34\x1a\xa5\x6d\x6d\x6d\x50\x14\x85\x02\x90\x00\x48\xb5\x45\x31\xb0\x3e\x65\xdf\xd9\x9a\xb2\xbf\x2f\x98\x91\xef\x93\x0d\xd2\x42\x40\xc4\xa5\x7c\x0e\x0e\xc0\x24\x3c\x35\xee\x2c\x9d\x18\xac\x53\x7f\x7e\xc1\xab\xbe\x38\x5c\xab\xc5\x4c\x8a\x02\x00\x1d\x00\xeb\xe9\xe9\x61\x37\x9b\x66\x58\xb5\x04\xe8\xec\xec\xa4\xed\xed\xed\x57\xde\xf4\x1a\x8d\xfa\xdb\x13\x35\xbb\x37\x5f\x76\x3c\x1a\xc8\x49\x3b\x05\x4e\xdc\x2b\xf9\x7c\x1c\xdc\x28\xd8\x58\xac\xcf\x5f\xfc\xc9\xb9\x40\xe1\x87\xc3\xb5\x5a\x8c\x13\x8b\x0c\xd9\x6c\x96\x75\x75\x75\xdd\x14\x5a\x61\xd5\x11\x60\xcf\x9e\x3d\x34\x14\x0a\x51\x00\x12\x61\x70\xb6\xa4\xed\x3b\xb6\x0d\xd7\x7c\x22\x9c\xb2\x3f\x2c\x30\xea\x5f\x75\x0f\x0c\x8b\x0c\xe3\x4e\xe3\x8d\xee\xc6\xfc\x77\xce\x35\xe4\x7f\x52\x90\x58\x0a\x80\x9a\xcd\x66\x8d\x58\x2c\xb6\xaa\x57\x17\xab\x66\x3c\x27\x0b\x5e\x30\x89\x7b\x4b\xc2\x79\xff\xed\x97\x5c\xff\xdd\x97\xb7\xed\x5c\x6a\xf5\xbe\x98\xd0\x04\x16\x3f\xd7\x90\xff\xd6\x5b\xeb\x72\xdf\x4e\x3b\x8d\x21\x94\x89\xb0\x5a\x35\xc2\x8a\x13\xa0\xa3\xa3\x83\x6e\xdb\xb6\x8d\x02\x90\x28\x83\xeb\x96\xd1\x9a\xdd\x77\x0d\x2a\x9f\xac\x55\xc5\x3b\xc9\xca\x3f\xde\x82\x61\x50\x9e\x7a\x27\x90\xff\xe6\x9b\xad\x99\x7f\xcd\xd8\xcd\x38\x00\x35\x99\x4c\x1a\x87\x0f\x1f\x5e\x55\x24\x58\xd1\x11\xde\xb7\x6f\x1f\x55\x14\x45\x02\x87\xb3\x75\xdc\x7e\xf7\x7d\xe7\x6b\x3f\xe3\xcf\xdb\xee\xbb\x99\x05\x3f\x15\x3a\x65\x89\xb7\x9a\xb2\x5f\x3a\xd1\x9c\xfd\x77\x4d\xe4\x49\x00\xfa\x99\x33\x67\xd8\x6a\xf1\x2b\xac\xc8\x48\xef\xde\xbd\x9b\x86\xc3\x61\x0a\xc0\xe9\x2e\x0a\x4d\x9d\x7d\x75\x9f\xde\x30\x66\xff\x38\x01\x91\x56\xe2\x79\x96\x1a\x1c\x40\x56\x36\xba\x5f\xdd\x90\xfe\x6c\xac\xbe\xf8\x0a\x08\x72\xd9\x6c\x56\x7f\xfc\xf1\xc7\x57\x9c\x04\xc2\x72\xdf\x70\xdf\xbe\x7d\xb4\xa1\xa1\x41\x22\x1c\x9e\x1d\x97\x5c\x8f\x3d\xfc\x8e\xff\x6b\xf5\x79\xe9\x3e\x02\xb2\xec\xcf\xb2\x5c\x20\x00\x64\x93\x06\x36\x25\x1d\x1f\x09\xe4\xa4\xa6\x78\xad\x76\x86\x38\x6d\xc5\x68\x34\xca\x00\x60\x78\x78\x98\xaf\xd4\xb3\x2d\xdb\xa0\x47\xa3\x51\xfa\xc8\x23\x8f\x08\xb2\x2c\x3b\x5c\xaa\x10\x7e\xf8\x1d\xdf\x17\x6f\x8b\xbb\xfe\x52\xe4\x74\x45\x97\x73\xcb\x09\x02\x42\xbd\x45\xdb\xf6\x2d\xa3\xce\x87\x27\xec\xc6\xf9\x94\xd3\xb8\x14\x0a\x85\x4a\xc0\xca\x91\x60\x59\xa6\x80\xb2\xca\x17\x01\x38\xc3\x63\xf6\xfb\x76\xf7\x78\xff\x9f\xb3\x24\x84\x97\xfa\xbe\x1c\x1c\x8c\x80\x69\x22\x53\x55\x91\xa9\xaa\x8d\x15\x74\x81\xeb\x8c\x72\xc6\x00\x26\x70\x88\x36\x93\x88\xb2\x41\xed\x8e\x92\xe0\x94\x0d\x62\x17\x19\x11\x81\xa5\xb7\x42\x18\xb8\x7e\x3a\x94\xfb\xbb\x97\x37\xa7\xff\x11\x40\xee\xe0\xc1\x83\x2b\x32\x1d\x2c\xf9\xf2\x6a\xef\xde\xbd\xd4\xef\xf7\x4b\x84\xc3\x7d\xf7\x80\xfb\x77\xef\x1e\x74\x7f\x56\xe0\xc4\xb9\xd8\xf7\xe1\xe0\xd0\x05\xae\x26\x6b\x4a\xc9\x11\xb7\x36\x74\xd9\x55\x8a\xa7\x9c\xa5\x78\x56\x36\x53\xaa\x8d\x4d\x70\x40\x2d\xbb\x70\xaf\x04\x7b\xca\x10\xc1\x21\x12\xc0\x6e\x33\x89\xd3\xa5\x09\xf5\x9e\xa2\x2d\x50\x9f\xb3\x85\x1a\xb2\x52\x53\x43\x4e\x6a\x74\xea\xd4\xb5\xd8\x94\x20\x80\x94\x93\xcd\x1a\x00\x4e\x00\x85\x29\xcf\xb4\x6c\x58\x52\x02\x54\xac\x7c\xd1\x24\x81\xdd\x3d\xde\xcf\x6e\xbe\xec\xf8\xfd\xc5\x1c\x48\x0e\x8e\xb4\xc3\x48\x9e\xf7\x15\x7b\x07\xbc\xea\xd9\x11\x45\xef\xd3\x45\x9e\x00\x90\x29\x1f\x85\xf2\xa1\x97\x0f\x03\xd7\x12\xc0\x0a\x22\x11\x50\x0e\x48\xba\xc8\xa5\x94\x68\xd8\x53\x35\x86\xf3\xbc\xbf\xe8\x06\xe0\xa6\x0c\x5e\x7f\xde\xb6\xbe\x65\xdc\xbe\x65\xc3\x98\x63\x4b\x43\x56\x0a\x09\x9c\xd0\xeb\x9f\x66\x7e\x38\x17\x28\x1c\xed\x6a\xce\x3e\x8f\x15\x12\x7c\x05\x4b\x46\x80\xfd\xfb\xf7\x53\x59\x96\xed\x0e\x9d\x36\xed\x79\xdb\xff\xa5\x50\x46\xfe\xc0\x62\x88\x9e\x03\x28\xda\xcc\x5c\x4f\x7d\xe1\xec\xb9\x86\xc2\x1b\x97\x5d\x7a\x0f\xa3\x48\x00\x48\x02\x48\x03\xc8\xc1\x12\xba\x8a\x49\x51\x3c\x5c\xff\xe6\x4f\xc6\xe4\xb0\xb1\x58\x3e\x24\x00\x4e\x46\xe1\x4a\x28\x25\x4f\x42\x29\x79\x8f\x37\x67\x03\xb5\xaa\xb0\x7e\xf3\x65\xe7\x9d\x5b\x47\x6b\x76\xd4\x15\x44\xff\x42\x08\x7d\xb9\x46\x1f\x7a\x69\xf3\xf8\xd7\x38\xc1\x10\x80\x5c\x36\x9b\x5d\x31\x12\x2c\xc9\x54\x57\x11\xbe\x4b\x13\x36\x3c\x7a\xc6\xff\xd5\xfa\xbc\xb4\xf3\x46\xaf\xc9\xc1\x31\x56\x53\x4a\xbc\xb5\x2e\x77\x34\x56\x5f\x38\x56\x12\xf9\x20\x80\x11\x5c\x15\x7c\xe5\x4d\xbf\x22\xf4\x64\x32\x09\x5d\xd7\x31\x3c\x3c\x3c\xa7\x3b\xb6\x92\x4f\x20\x49\x12\x42\xa1\x10\x30\x39\xc4\x5c\x26\x03\x00\x17\x00\x3f\x80\x00\x65\x68\x6a\x4e\xdb\xa3\x77\x0c\x29\xf7\x35\x8f\xcb\x1b\x28\xaa\xd3\x0a\xaa\xc8\x0a\xdf\xdf\x31\xfa\xf9\x54\x8d\xf1\x0c\x80\xf3\x00\x32\x07\x0f\x1e\x34\x16\x30\x24\x8b\x82\x45\x27\x40\x45\xf8\x8a\x2a\x6c\xfa\xf0\xe9\xfa\x6f\x78\x8b\xb6\x3b\x6e\xe4\x7a\x1c\x1c\xc9\x9a\xd2\xc8\x1b\x2d\x99\x17\x7b\xfd\xc5\x5f\x70\x8a\x41\x00\x71\x58\x82\xcf\x61\xd2\x9b\xde\xdf\xdf\x8f\x78\x3c\x8e\xee\xee\xee\x45\x7b\xa3\x3a\x3b\x3b\x69\x28\x14\xaa\x44\x23\x45\x00\x76\x58\x64\xf0\x02\x68\x04\x47\x4b\x63\x56\xba\xfd\x9e\x01\xf7\xee\xd6\x94\xbd\x8d\xce\x32\xa4\x0c\x9c\x3d\x73\xcb\xd8\xd7\x63\x81\xe2\x77\x00\x9c\x03\x90\xea\xea\xea\x32\x56\x32\x56\xb0\xa8\x04\xa8\x08\xdf\xa9\xd3\xf0\xde\x53\xf5\x87\xfc\x05\xe9\xce\x1b\xb9\x5e\x4e\x32\x33\xaf\xb5\x4e\xbc\x70\xb6\x31\xff\x12\xa3\xe8\x05\x30\x84\xab\x82\xd7\x35\x4d\x33\x96\x33\x39\xa3\xa3\xa3\x83\x86\xc3\xe1\xc9\xa1\xe9\x0a\x11\x42\xe0\xd8\xd0\x9c\x96\xef\xb9\xef\xbc\x67\x4f\x20\x67\x0b\x4d\x9d\x1a\x38\x80\xb7\xd6\x65\x5f\x7c\x65\x63\xfa\x4b\x20\x38\x09\x20\x11\x8f\xc7\xf5\xa7\x9e\x7a\x6a\x45\x6d\x80\x45\x23\x40\xc5\xda\x97\x0d\xd2\xf4\xe1\xd3\xf5\x5f\x6b\xcc\xca\xef\x5d\xe8\xb5\x18\xe1\xac\xbb\x31\x7f\xfc\xe8\xfa\x89\x1f\xaa\x36\xd6\x0d\x60\x10\x40\xc5\xb8\xd3\x57\x43\x12\xc6\x24\x6f\xa6\x88\xab\x53\x43\x13\x65\x68\xdb\x1e\x77\x7d\xb0\xa3\xbf\xf6\x01\xd9\xa4\xf6\xca\xf7\x87\x6a\xd5\xde\x1f\x6e\xbf\xfc\x39\x93\xe2\x38\x80\xa1\x6c\x36\x5b\x58\x0d\x9e\xc0\x45\x21\x40\x79\x30\x24\xca\x10\xd8\x73\xd6\xff\xf7\x1b\xc6\x1c\x8f\x2d\xf4\x5a\x13\x76\x23\xf5\x42\x5b\xea\x3f\x2f\xd6\x69\x47\x00\xf4\xc2\x52\xf7\x69\x00\x6a\x3c\x1e\x67\x2b\xfd\xc6\x4c\xc5\xa4\xbc\x05\x09\x16\x11\x1a\x01\x6c\xa8\x2d\x8a\xd1\x07\x62\x75\x1f\x6f\x4a\xcb\x9b\x0a\x12\x4b\x7f\xf7\xf6\xd1\xbf\xcd\xda\xcd\x97\x61\xcd\xfb\xb9\x95\x9c\xf7\x27\xe3\x86\x09\x10\x8d\x46\x69\x34\x1a\x15\x01\x78\x3a\x7b\x3d\x9f\xde\x71\xc9\xf5\xe7\x0b\xb1\x8c\x39\x38\xde\xf5\x17\x4f\xbf\xd8\x36\xfe\x1d\xd5\xc6\x4e\xc2\x1a\xa8\x24\x80\x42\x36\x9b\x35\x56\xc3\xdb\x32\x1b\x26\x85\xb3\xed\xb0\xa6\x85\x16\xca\xd0\x76\xd7\xa0\xfb\x83\x23\x6e\x3d\x36\xe0\x55\x9f\x06\x10\x03\x90\x7e\xf9\xe5\x97\xd9\x6a\x09\x0d\xdf\x30\x01\x0e\x1c\x38\x20\x02\x70\xdf\x32\xe2\x7c\xec\xc1\x1e\xef\x97\xe9\x02\x62\xf7\x26\xe1\xec\x58\x78\xe2\x99\xae\xe6\xec\x0f\x38\xc1\x59\x58\x2a\x3f\xa3\x69\x9a\xda\xdd\xdd\xbd\xaa\x13\x2a\xa6\xa2\xec\xfb\x10\x01\xb8\x61\x4d\x0b\x1e\x58\x86\xea\x08\x80\x54\x4f\x4f\x8f\xb1\x9a\xd2\xc6\x6e\x88\x00\x65\xa3\xcf\x55\x9f\xb3\xdd\xf1\xd1\x93\x81\xff\x92\x4c\xea\x9d\xef\x35\x34\x81\xa9\xcf\xb5\xa7\xbe\xdb\xe7\x2f\x3e\x0d\x4b\xf8\x23\x00\x72\xf1\x78\xdc\x58\x6d\xea\xbe\x5a\x4c\xce\x71\x28\x1f\x0c\x37\x90\x0f\x10\x89\x44\x68\x38\x1c\x86\x24\x49\x90\x65\x19\xd9\x6c\xb6\xaa\xa5\x6d\x35\x58\x30\x01\xca\x2a\x4f\xb2\x19\xa4\xe9\x37\x4e\x06\x1e\xf7\xe7\xe7\x6f\xf1\x17\x6c\x66\xee\xc9\x5b\x93\xff\x36\x5c\xab\x3f\x0f\x4b\x3d\x8e\x00\x50\xbb\xba\xba\xd8\xcd\xf4\xd6\xcf\x84\xb2\x6d\x04\x4d\xd3\xb0\x10\x4d\x16\x8d\x46\x69\x24\x12\x81\x2c\xcb\x15\x5f\x44\x45\xbb\x5e\x49\x55\xbf\xd1\xdc\x82\x05\x11\x20\x12\x89\xd0\x9d\x3b\x77\x8a\xe0\xf0\x76\xf6\x79\xfe\x6a\xc7\x25\xe5\xcf\xe6\x7b\xa1\xbc\x64\x66\x7e\x14\xb9\xfc\x2f\x97\x95\xd2\xcf\x60\x09\x3f\xa9\x69\x9a\x7a\xe8\xd0\xa1\x9b\x5e\xf0\x8b\x81\xb2\x71\x29\x82\xc3\xb9\x61\xcc\x7e\xef\xb6\x61\xd7\x6f\x35\x64\xa5\xed\x84\x83\x8e\xd5\x94\xce\xbd\xdd\x98\xff\xde\xb9\x40\xe1\x65\x4e\x91\xb9\x91\x4c\xa3\x05\x85\x83\x3f\xf8\xc1\x0f\x12\x51\x14\x9d\x4d\x13\xf2\xaf\xbd\xaf\xb7\xee\x0b\x74\x9e\xb1\xfc\xa2\x68\xe6\x7e\xb4\xed\xf2\x97\x2f\x2b\xa5\xe7\x01\xf4\x00\xb8\x9c\x4c\x26\xb5\xef\x7e\xf7\xbb\x6b\xc2\x87\x35\x85\x6c\xdd\xba\x55\xa4\x0c\x9e\xf7\xbf\x5b\xf7\xd7\xf7\x5d\xf0\x7c\xa9\xae\x68\xdb\x61\x63\xb4\xc1\xc6\x68\xc0\xad\x89\x5b\x37\x8e\x39\x1e\x0b\x66\xe5\xd6\xf3\xbe\xe2\x6b\xb2\xcb\xa9\x06\x83\x41\x16\x8b\xc5\xe6\x1d\x52\x9e\x37\x01\x76\xef\xde\x4d\xfd\x7e\xbf\x24\x9a\x64\xdd\x23\x6f\xfb\xff\xb9\xa6\x24\xac\x9b\xcf\xf9\xba\xc0\xf4\x1f\x47\x92\x5f\x19\xa9\x2d\x3d\x03\xcb\x1b\x36\x96\x4c\x26\xf5\xd5\x96\x2b\xb7\x92\x78\xf8\xe1\x87\x05\x00\xca\x3d\x03\xee\x3f\xba\xfd\x92\xf2\x19\x32\x8d\x9b\x99\x80\x10\x8f\x2a\x46\x14\x4d\xa8\xed\xad\x2f\x1e\x55\x14\xa5\x98\xcd\x66\x31\x36\x36\x36\x2f\x12\xcc\x3b\xaa\x55\x76\x7e\xb8\xa3\x43\xca\x27\xbc\x05\xdb\x8e\xf9\x9c\x6b\x12\xce\x5e\x68\x4b\xfd\x7b\xdc\xa3\x3f\x0b\x4b\xed\xa7\xd6\x84\x7f\x2d\x3a\x3b\x3b\x29\x00\xc9\xa9\xd3\x96\x3b\x86\x94\x4f\xce\xb5\xa4\x6e\x4b\x38\x7f\xbb\x3e\x6b\x8b\x00\xb0\x47\x22\x91\x79\xdf\x6f\x5e\x04\xd8\xb7\x6f\x1f\x05\x60\x57\x54\x61\xc3\x1d\x17\x95\x3f\x9a\xcf\xbc\xcf\xc1\xf1\x66\x4b\xe6\x99\x58\xa0\xf8\x04\xca\x73\xfe\x9a\xf0\xaf\x47\x38\x1c\x06\x00\x7b\x53\x5a\xbe\x57\x32\xa9\x7f\xae\xef\x53\x10\x69\x7d\xca\xf1\x20\x00\x67\x79\x9f\xe4\xbc\x50\xf5\x09\x6d\x6d\x6d\xd6\xfa\x96\xc3\x7d\x6f\x7f\xed\xff\x90\xab\x78\xb8\xc9\xe8\xf7\xaa\xdd\x6f\xb4\x64\xbe\x0d\x4b\xed\x27\x35\x4d\x5b\x13\xfe\x34\x28\xef\x7b\x94\x5c\x9a\xb8\xbe\xda\x73\x3c\x45\x71\x13\xac\xb8\xc4\xd2\x11\x20\x1a\x8d\x02\x80\xdd\x57\xb0\x6d\xd9\x92\x70\xce\xcb\xd5\x9b\x93\xcc\xf4\x0b\x6d\xe3\xff\xca\xa8\xb5\xce\xd7\x34\xad\xb0\x66\xed\xcf\x0a\x5a\xb4\x99\x6a\xb5\x5f\xd6\x05\x66\x60\x01\xc2\x47\xb5\x27\x5d\x79\xfb\x01\xf7\x5d\x83\xca\x1f\xce\x27\xa5\x8b\x83\xe3\xa5\x4d\xe3\xff\x91\x97\xcd\x13\xb0\xfc\xfa\x85\x63\xc7\x8e\x2d\xe4\x59\x7f\x95\xc0\xe2\xb5\x7a\x8f\x41\xb8\x3e\xd7\x17\x39\x38\xfa\xbd\xea\x29\x58\x7e\x81\x79\xa3\x2a\x02\x94\xdf\x7e\xc9\x53\x10\x37\x6d\xbe\xec\xfc\xd0\x7c\x6e\xf0\xae\xbf\x78\xbc\xcf\x5f\x7c\x16\x65\xf7\x6e\x4f\x4f\xcf\xaa\xf1\x83\xaf\x46\x68\x9a\xc6\x00\xa8\x13\x0e\xa3\xff\x5c\x43\xfe\xd5\xb9\xbe\x3f\xec\xd6\x63\x03\x75\xea\x09\x58\xee\xe6\x79\x8f\x6b\x55\x04\x28\xc7\xbf\xdd\x3b\x2e\xb9\x7e\x6b\x3e\x6f\xbf\x26\xb0\xc2\xcf\x37\xa6\xbf\x0d\x82\xf3\x00\x52\xd9\x6c\x76\x55\xf9\xc1\x57\x23\xfa\xfb\xfb\x81\x72\xec\xe0\x95\x8d\xe9\x6f\x5c\xac\x55\x67\x5c\xdc\x8f\x3b\x4a\x89\x67\xb6\x8c\x7d\xb9\x9c\x24\x53\x88\xc7\xe3\xf3\x1e\xdb\x39\xfd\x00\xbb\x77\xef\xa6\x1e\x8f\x47\xb6\x97\xe8\x86\x07\x62\xde\xff\x23\xb2\xea\x08\xc0\x01\xbc\xd1\x9a\x79\xfa\x82\x5f\xfd\x11\x80\x0b\x00\x72\x87\x0e\x1d\x32\xe7\xfb\x80\xbf\x6a\x18\x18\x18\xe0\x91\x48\x84\x89\xa2\xc8\x4c\x0a\xfd\xdd\xfa\x62\x6f\x49\x60\xa2\x5b\x15\xbc\x36\x2b\xbf\x80\xe7\x25\x96\x3d\x13\xcc\xbf\xfe\x7c\x7b\xea\x2b\x79\x3b\x7b\x1d\x96\x76\xcd\x3f\xfe\xf8\xe3\xf3\x1e\xdf\x39\x23\x77\x95\x2d\x5c\x6d\x09\xe7\x6e\xbb\x51\xbd\xe5\x9f\x97\xcc\xd4\xc9\x75\xd9\x1f\xc2\xca\xe2\xc9\xf5\xf4\xf4\xac\xbd\xf9\x55\xe2\xd8\xb1\x63\xd8\xb5\x6b\x57\x0e\x40\xbf\x21\x70\xfd\x78\x4b\x36\x71\xa2\x29\xfb\xa4\xa3\x44\xfd\x04\x84\x16\x6d\x66\xca\xa4\x88\x03\xe8\x47\x79\x7c\xcf\x9c\x39\xb3\xa0\xf1\x9d\x95\x00\xe5\xca\x5a\x22\x38\x3c\x5b\x47\x6a\x1e\x9d\xcf\x85\x4f\x34\x65\x9f\xd3\x45\x1e\x03\x90\xd2\x34\x4d\x5f\x53\xfd\xd5\xa3\x62\x23\x95\x49\x30\x08\x20\xc5\x28\x7a\xf3\x32\xab\x68\x5f\x15\x56\x76\x54\x0e\x40\xa1\xa7\xa7\x67\xc1\x01\xa1\x59\x09\xd0\xd6\xd6\x06\x00\x92\x3f\x6f\x6b\x0b\xe4\xaa\x4f\xee\x2c\xd8\xcc\xcc\xdb\x8d\xb9\xa7\x51\x8e\xee\x75\x77\x77\x2f\xe4\xd9\x7e\xa5\x11\x8b\xc5\x58\x2c\x16\x63\xfb\xf6\xed\x2b\x28\x8a\xa2\xc2\xca\x8a\xaa\xd8\x6c\x0c\x80\x91\xcd\x66\xd9\xd1\xa3\x47\x31\x30\x30\xb0\xe0\x97\x6b\x56\x02\x94\x8d\x3f\xe7\xc6\xa4\xe3\xc1\xf9\x24\x7a\x9c\x6d\xc8\xbf\xa2\xd9\xf8\x79\x00\x69\x4d\xd3\xf4\x5f\x86\xd0\xee\x4a\xa1\x9c\x09\xc5\xa2\xd1\x28\x73\xb9\x5c\x00\x80\x5c\x2e\xb7\x68\x49\x32\x33\x0a\x75\x92\xfa\x77\x6f\x4a\x3a\xee\xaf\xf6\x82\x26\xe1\xc6\xdb\xc1\xfc\xb3\xb0\x92\x38\xd7\xde\xfe\x79\xa0\x52\xcc\x72\x3a\xe1\xce\x26\xf0\x68\x34\x4a\x27\x17\xc0\xd4\x75\x1d\xfd\xfd\xfd\x55\x25\xcd\xce\x48\x80\xd6\xd6\x56\x00\x90\xdc\xaa\xd0\xe4\x2d\xd8\xb6\xcc\x75\xa1\x0a\xe2\x6e\xed\xdc\xb8\xd3\x38\x07\x4b\x65\xad\x68\xce\xfb\xcd\x80\x49\xb9\x84\x57\x8e\xf2\xb6\x71\x23\x9b\xcd\xb2\xd9\x72\x21\xa7\x14\xd2\xaa\x1c\x00\x60\x84\xc3\x61\xbd\xa3\xa3\xc3\x38\x76\xec\xd8\xac\x44\x98\x91\x00\xe5\xc0\x82\xbd\x39\x6d\xbf\x97\xf2\xea\x0a\x37\x70\x00\x3d\x0d\x85\x57\x61\xbd\xfd\x85\xfe\xfe\xfe\x35\xe1\xcf\x80\xb6\xb6\x36\xda\xd1\xd1\x01\x59\x96\xed\x92\x41\xdc\xeb\xc7\x1c\xf7\x36\x4d\xc8\xf7\x50\x46\xc4\xb1\x9a\xd2\xbb\xbd\xfe\xc2\x8b\x50\x94\x91\x03\x07\x0e\xa8\xd3\x95\x9f\xab\xa4\xe1\x0b\x0c\xae\x2d\xa3\x35\x0f\x6c\x19\x75\x7e\xc4\x9f\xb7\x6d\x31\x29\x57\x2f\xd5\xea\xc7\x4f\xad\xcb\x7e\x3b\xee\x46\xf7\xae\x5d\xbb\x0a\xc1\x60\x70\xc6\xbd\x13\xb3\xcd\xeb\x14\x80\xb3\x65\xdc\xde\x51\x6d\xd4\xcf\xa4\x5c\xbf\xe0\x2d\x1e\x03\x90\x02\x60\x3c\xf7\xdc\x73\xab\x82\x00\x93\xaa\x8a\x02\xd7\x3b\xbf\x58\x32\x99\xc4\xf0\xf0\xf0\xb2\x96\x83\xdd\xb5\x6b\x17\x05\xe0\x6c\x4d\xd9\xef\x7d\x7f\xac\xee\x8b\x8a\x26\x6e\x9f\x3c\xce\x3b\xfb\x6b\x53\xc7\x9b\x33\x7f\xf7\x7a\x6b\xe6\x5b\xed\xed\xed\x19\x00\x57\x9c\x68\x15\xe1\x3b\x75\xda\xf4\xeb\x6f\xfb\xff\x21\x94\x91\xf6\x4c\x0e\x1b\xb7\x5f\x16\xef\xdc\x9c\x74\xfc\xce\xeb\x2d\x99\xbf\x79\xbd\x35\xf3\xcd\xf6\xf6\xf6\xdc\xd8\xd8\x98\x31\xdd\x8e\xa9\x69\x09\xd0\xd1\xd1\x51\x99\xff\x5d\xc1\x8c\xb4\xb5\xda\x1f\x95\x70\xe9\xbd\x79\x89\x0d\x02\x28\x68\x9a\xb6\xe2\x79\xef\x93\xd4\xab\x08\x40\xa2\x06\xb7\x4b\x45\xe6\xa1\x26\x5c\x00\x98\x29\x22\xa7\x3b\x68\xda\xef\xf7\xeb\x7e\xbf\x5f\xdf\xb6\x6d\x9b\xb1\x1c\x7b\x0f\xf6\xef\xdf\x4f\x01\x38\x9b\xc7\xe5\x9d\x8f\xbc\xed\x7f\x5c\x64\xc4\x33\xf5\x3b\x22\x23\xde\x7b\x06\xdc\x5f\x14\x18\x71\xfd\x62\xfd\xc4\xbf\xb4\xb7\xb7\xa7\x8f\x1c\x39\xc2\xa2\xd1\x28\xf5\xfb\xfd\x22\xe1\xf0\x7e\xf0\x1d\xdf\x3f\xac\xcb\xc8\x7b\xa6\xbb\x07\xe5\xc4\x79\xef\x80\xfb\x0b\x19\xbb\x91\x7a\xa7\xb1\xf0\xa3\x68\x34\x9a\x99\xce\x1e\x9b\x96\x00\x65\x83\x42\x74\xab\x42\xa8\x46\x17\x9a\xaa\xfd\x61\x03\x75\xea\x69\x10\xa4\x00\xa8\x65\x97\xe6\x8a\xe0\x9a\xca\x63\x25\xee\xa9\x8b\x97\x1e\xa8\x1b\x36\x1e\x75\x64\xcc\x3b\xa9\x89\x00\xac\x04\x4b\x80\x40\x65\x02\x46\xf2\xb5\xc2\x1b\xe3\x21\xdb\x0f\xd3\x41\xf1\x95\x50\x28\x94\x39\x70\xe0\xc0\x92\x15\x72\x8a\x46\xa3\x54\x96\x65\x49\x60\xf0\xbf\xef\xdd\xba\xcf\x4f\x27\xfc\x0a\x08\x08\xbd\x63\x48\xf9\x74\xac\xbe\xf0\xea\x65\xa5\xf4\xc6\xfe\xfd\xfb\x0b\xb2\x2c\x03\x80\x73\xc3\x98\xe3\x81\xa6\xb4\xfc\xf0\x6c\xf7\x22\x20\x62\x47\x7f\xed\xa7\xdf\xad\x2f\xbe\x0a\x59\x56\x3b\x3a\x3a\xf4\xa9\xbf\x69\xda\x58\x40\x59\x55\x4a\xf5\x79\xa9\xad\xfa\xf9\x9f\x63\xc8\xa3\xbd\x05\xcb\x41\xb1\x62\x3e\xff\xbd\x7b\xf7\xd2\x6d\xdb\xb6\x89\x60\xdc\xe3\x1b\xd4\x3f\x76\xcb\x2b\xf9\x97\x9a\xce\x6a\x87\x5c\xe3\xe6\x5e\xc1\x44\x0b\x01\xec\x04\xa0\x04\xa0\x84\xc3\x29\x18\xd8\xe0\x1e\x33\x3f\xde\x72\x46\xfd\xde\x2d\xaf\xe4\x9f\xad\x8b\x97\x1e\x06\xe7\xee\x6d\xdb\xb6\x89\x7b\xf7\xee\xbd\xe1\x3a\x00\x53\x51\xf1\xad\xac\x9b\x90\xef\xac\x2b\x8a\x73\x66\x54\x09\x9c\x38\x6f\x19\xad\xf9\x28\x00\xd7\xa4\x1a\xc9\xae\x8d\x49\xc7\xaf\x4f\x97\x2a\x36\x15\x8a\x26\x6c\x09\xe4\x6c\xdb\x01\x48\xe5\x64\x93\x6b\x30\xd3\x05\x28\x00\xc9\x97\xb7\x6d\xae\x76\xfe\x37\x28\x57\xc7\x6a\x4a\xbd\x58\xc1\x6a\x17\x57\x0c\xa3\x12\x0f\xad\x7f\x4b\xfd\x87\xa6\xb7\xb5\xaf\xd9\x74\xde\x56\xcd\x6f\x20\x00\x24\x95\x6f\x6f\x39\xa5\x3e\xde\x72\x46\xfd\x1c\x31\xb9\xdf\xef\xf7\x4b\x8b\x4d\x82\xb2\x6f\xc5\xee\xcb\xdb\x6e\xaf\x76\x07\x55\xbd\x25\x40\x17\x2c\xe1\x5b\xd5\xd5\xd4\xea\x34\x33\x01\x81\xa2\x8a\x1b\x00\x48\xe5\x7b\x5f\x83\xd9\x08\x60\xf7\x16\xc4\x0d\x55\x3d\x21\x80\x09\x87\x11\x57\x45\x96\x44\xb9\x56\x6e\xb5\xe7\x2d\x16\x2a\xc2\xa7\x06\x0f\xad\x3f\x5e\xfc\x6a\x6d\xc2\xf8\x6d\xb2\x80\x24\x09\x02\x88\x75\x97\x8c\x3f\x09\x9f\x2c\x7e\xb1\x42\x82\xdd\xbb\x77\x2f\xb6\x26\x90\x08\x27\xf6\xb9\xbf\x66\xc1\x10\x38\x43\x65\xda\xb2\x40\x8b\x36\x56\x55\xc2\x08\x07\x90\x97\xcd\x1c\x66\x18\x8b\xeb\x6c\x80\xb2\x33\x82\x02\xb0\xd7\x15\x6c\x55\xcf\xff\x63\x4e\x63\x10\x04\x39\x00\xc6\xd8\xd8\x58\xb5\xa7\x2d\x0a\x2a\x86\x11\x38\xf7\x36\x77\xab\x9f\x75\xa5\xcd\xdd\x37\x72\x3d\x02\xc0\x9d\x30\x7f\x33\x18\xd3\xe2\xf1\x5b\xec\x5f\x0c\x87\xc3\xa9\xb6\xb6\xb6\x39\x1d\x2b\x9d\x9d\x9d\xb4\xdc\xac\x02\x00\x66\xdb\xbd\xc3\x2e\xbb\xf4\x01\x0e\x5e\x55\x39\xaa\x64\x4d\x69\x08\xd7\x26\x7c\x18\x03\x5e\xf5\xf4\xa6\xa4\xf3\xfe\xb9\xce\xd6\x45\x96\xb9\x6c\x9d\x3f\x6d\x85\x94\xeb\x08\xe0\xf3\xf9\x00\x6b\x7e\xb4\xd7\xe8\x42\xd5\xd1\xbf\x71\x67\x69\x08\x96\xfa\x5f\x76\x02\x94\xb3\x61\x9d\x9e\x61\x63\xb7\x67\xd8\xf8\xed\xc5\xb8\x26\x01\x50\x3f\x50\xfa\xb3\x4c\x40\xfc\x79\xce\x27\xbe\xdc\xd1\xd1\x91\x8b\xc5\x62\xd7\x7d\xaf\xb5\xb5\x95\xee\xda\xb5\xab\xb2\x7b\xa7\x72\x50\x00\x46\x28\x14\x32\xa2\xd1\xa8\x31\xcd\x3a\x5e\x8f\xd7\x6a\x67\xc7\x1d\xc6\x90\xb7\x38\xfb\x4b\xc6\xc0\x59\x9f\xaf\xf8\x3a\xae\x26\x7c\x30\x00\xb9\x9e\x40\xe1\xe7\x77\x0d\xba\x3f\x5e\xab\x8a\x8d\xb3\x9d\xdf\xdd\x98\x7b\x59\xb3\xb1\x04\xac\x6d\xf5\xd7\xfd\xff\xeb\xd4\x82\x24\x49\x00\x20\xca\x06\x75\xc9\xc6\xcc\x16\xea\x54\x4c\xd8\x8d\x78\xe5\x21\x97\xd3\xfb\xd7\xd1\xd1\x41\x65\x59\x96\x08\xe3\xfe\xc6\x5e\xed\x53\x0b\x51\xfb\x33\x81\x70\x48\x8d\x31\xed\x53\xe0\xdc\x2b\xcb\xb2\x18\x89\x44\xae\xb9\x76\x47\x47\x07\x7d\xe8\xa1\x87\xa8\x2c\xcb\xae\x40\xd6\xb6\xf5\x81\x9e\xba\xcf\xfd\xde\xeb\xc1\x27\xff\xe0\xb5\xe0\xb3\x1f\x3d\x59\xff\xb5\xdb\x2e\xb9\x1e\x13\x4d\xe2\x6d\x6f\x6f\x97\xca\x19\xd5\x48\x26\x93\x0c\x80\x6a\x52\x8c\xbc\xb4\x79\xfc\x5b\x06\x9d\x39\xed\x8b\x03\x38\xdb\x98\x7f\x65\xc4\xad\x9f\x84\x15\xf9\xab\x10\xa0\x50\x12\x78\xff\x4f\x6f\x19\x3b\x58\x14\xcd\xdc\x4c\xe7\x0e\x7a\xd4\x73\xc7\xc2\x99\xc7\x51\x76\xcb\x4f\x47\xe0\x99\x08\x40\x6d\x26\x71\x56\xbb\x02\x00\x80\xbc\x6c\x8e\xe2\x6a\x41\xa6\x65\x43\xd9\xaa\xb6\x2b\x49\x73\xa7\x9c\xe7\xdb\x17\xfb\xfa\x35\x69\x76\x9f\x73\x82\x6d\x05\x60\xdf\xb6\x6d\xdb\x95\x7f\x8f\x44\x22\xd6\x52\x93\xc3\x1d\xbd\xa8\xfc\xce\x6f\xbc\xd5\x70\x24\x32\xe2\xfa\xdf\xb5\xaa\xf8\x5e\x45\x13\xef\x5e\x37\x61\xff\xd8\xae\x5e\xcf\xb7\x3f\x76\x32\xf0\xb8\xa2\x0a\x1b\x14\x45\xb1\xef\xdf\xbf\x9f\x96\x33\xa1\x55\x00\x89\x8b\x75\xda\xcf\x9e\xde\x9a\x3c\x98\x93\xcc\xcc\xd4\xfb\x9a\x84\xb3\x53\xa1\xec\x2b\x2f\x6d\x1e\xff\x2a\xac\x62\x52\x85\xfe\xfe\x7e\x76\xf4\xe8\x51\x94\xcf\x1f\x1a\x71\xeb\x3f\xfb\xfe\xed\x89\x2f\xf4\xf9\x8a\xdd\x25\xca\x0c\x0e\x6b\x35\x96\x93\xcc\xcc\xeb\xad\x13\xcf\xfc\x38\x92\xfc\x82\x21\xf0\xb3\xb0\x42\xf2\xd5\x39\x82\x2a\xde\x32\xd9\xa0\x6e\xca\x51\xf5\x12\xb0\x60\x63\x29\x2c\x30\x31\xf1\x46\x50\x5e\x1a\xb9\x6a\x47\x4b\x0f\x2d\x45\xc5\x2b\x02\x88\xee\x84\xf1\x50\xc1\x23\x9c\x50\x14\xe5\xca\x0a\xa7\x9c\x27\xe9\xda\x92\x70\xee\x79\xcf\xf9\xda\xbf\xa7\xd3\xd4\x39\x26\x20\x08\xe4\xa4\xfb\x1f\x79\xdb\xff\xd5\xef\xef\x48\x7c\x02\xb2\x3c\xd2\xd9\xd9\xa9\x27\x93\x49\xe6\xf7\xfb\xd3\x00\x62\x17\x7c\xea\x0f\xbf\x7d\xe7\xf0\xbb\x9b\x92\xce\x5f\x6b\xcc\x48\x61\x91\x11\x29\x55\x53\x1a\xe9\xf3\x15\x8f\xa7\x9c\x46\x17\x08\xce\x01\x48\x68\x9a\xa6\x57\x3c\xab\xe1\x70\xd8\x08\x85\x42\x19\x00\xb1\x71\xa7\xa1\x3e\x79\x6b\xb2\xd7\x51\xa2\x2d\x2e\x4d\x68\x30\x29\xd7\x27\xec\xc6\x45\x53\xc0\x20\xac\x1a\x0b\xb3\x26\xe2\xce\xe4\x0a\xa6\x92\x41\xaa\x2e\x8e\xc8\x09\x0c\x5d\x60\x39\x2c\xb3\x06\x98\x14\xb1\x74\xd5\xa4\xd9\xbc\x76\x29\xcd\x07\x35\x69\x73\x07\xac\x65\x58\x0a\xb8\x3a\xed\x88\x26\x09\xec\xbc\x50\xfb\x99\xe9\x84\x3f\x19\xf5\x39\xdb\x7d\xb7\x8e\xd4\xec\x3d\xb5\x2e\xf7\xcd\xf6\xf6\x76\xfd\xe0\xc1\x83\x6c\xef\xde\xbd\xba\xdf\xef\x4f\x02\x30\x34\x1b\x4f\xbe\x1d\xcc\x9f\x7d\x3b\x98\x77\xc3\xd2\xca\x05\x58\xc5\x31\x46\x50\xae\x80\x36\x59\x80\x4f\x3d\xf5\x54\xe5\xfc\x14\xac\x02\x98\x89\xa2\xc4\xce\x16\x25\x66\x47\x79\x8a\x28\x9f\x97\x01\xa0\xce\x56\x90\x62\x3a\x02\x50\x00\x74\x3e\xea\x9f\x03\xcc\xa4\x57\xaa\x70\x2e\x1b\xca\x06\xab\x48\x18\x77\xd9\x54\x36\xab\x31\x74\x23\x90\x0a\xac\x09\x9c\x3b\x41\x88\xb8\x67\xcf\x1e\xa3\x7c\x5f\x7b\x30\x23\xdd\xa1\x68\x42\xdb\x5c\xe7\x13\x10\x6c\xbe\xec\x78\xe4\xd4\xba\xdc\x61\x94\x0b\x5c\x1d\x3e\x7c\x98\xed\xd9\xb3\x47\x0f\x85\x42\x49\x58\x82\x8a\xe3\xea\x52\xcf\x80\xa5\xe6\x75\x4d\xd3\xf4\xe9\xf6\x50\x1c\x3e\x7c\x98\x45\xa3\x51\x23\x12\x89\x64\x64\x59\x2e\xc0\x9a\xe7\xe9\xa4\xf3\xe7\x8c\x26\x02\xb3\x04\x83\x28\xaf\x3e\x01\x84\x13\x30\x4e\xf8\xb2\xab\xff\x8a\xbd\x42\x18\x9c\x84\x61\xd1\xcb\xcf\x56\x20\x98\x70\x11\x0e\x3b\x27\xa0\x93\x6a\x08\x4a\xb5\xaa\xb8\xa9\x5a\x2d\x59\x5b\x14\xc3\x84\xc3\xc5\x09\xc4\x68\x34\x6a\x74\x75\x75\x55\x62\x0e\x6c\xf7\xee\xdd\x2c\x1c\x0e\xab\x98\x64\x93\x65\xb3\x59\x36\x57\xbb\x99\x72\x1d\x05\x00\xd0\x3b\x3b\x3b\x8d\xca\x12\x74\x3e\x7d\x0e\x67\x9c\x02\x00\x3e\x3f\x6b\xda\xca\x5d\x5e\x99\xe8\x1f\x01\x5d\xca\x7b\x73\x02\x86\xeb\x0d\x66\xd1\x24\xd5\x8f\x91\x21\x70\xc6\xcb\x6f\xf8\xd4\xee\xa5\x93\xa2\xa6\x0b\xfe\x0d\x0b\x75\xbd\xcf\xf8\x96\x33\x52\xbd\x41\x47\x38\x68\xb5\x95\x32\x97\x02\x4c\x80\x61\x8a\x24\x47\x75\xbe\x24\x5a\xc0\x90\x48\x86\x13\x32\x75\x80\xd9\xb0\x5b\x3f\x6f\x12\x6e\x08\x55\x68\xcb\x78\xad\x16\x43\x79\x4c\x97\xc2\x4f\x52\xc9\x26\x02\xe6\xd7\x02\x77\xa6\x07\x67\x8c\x72\x83\xa3\xba\x12\x22\x04\xa0\x02\x23\x15\x07\xc8\x72\x83\x01\x44\x55\x5d\x74\xc8\x96\x32\x03\x4b\x71\x83\xa2\x8b\x0e\x82\x58\x3e\x8e\x64\x32\x09\xbf\xdf\xcf\x00\xa8\x69\x87\xd1\xdf\xef\x2d\x9e\xd8\x38\xe6\xbc\x7b\xb6\xf3\x4d\xc2\x8d\xd3\xc1\xfc\xf3\xb0\xe6\x7f\x63\xb2\x7a\x9e\x54\x06\x66\x72\x7b\xdb\xaa\x3a\x94\xb6\xb5\xb5\xd1\x68\x34\x3a\xb9\x8a\x29\x2d\x5f\xd3\x40\x95\x7d\x0c\x67\x64\xae\x26\xf2\x9c\xa5\xd7\xe7\xa6\x00\xe1\x10\x65\x83\xb8\xb0\xcc\x04\x18\x1e\x1e\x46\x28\x14\x32\x40\x50\xc8\xfa\x85\x6e\x25\x65\xde\x50\x59\xda\x99\x90\xf3\x8b\xa7\x51\x0e\x72\x1d\x3e\x7c\x98\x95\x53\xb1\x54\x10\x24\x5e\xda\x9c\xfe\x86\x2f\x2f\x85\x3d\xaa\x38\x2d\xf9\x38\x38\x5e\x6b\x9d\xf8\xd1\xa8\x5b\x3f\x01\xcb\xd8\xbb\x22\x90\x72\x91\x2d\x89\x70\xd8\x7d\x39\x5b\xa3\x2f\x6f\xdb\x40\x00\x3a\xee\x30\xfa\x13\x0a\x86\xda\xdb\xdb\xd5\x70\x38\xac\x4f\x97\xd6\x35\x29\x1d\xcc\xe9\xcf\xd9\x5a\x36\x5f\x76\xee\xf6\x16\xc4\xcd\x25\x81\x17\x2e\x7a\xd4\x9f\xf7\xd6\x17\x8f\xb6\xb7\xb7\x67\xc2\xe1\xf0\xb4\x46\x64\x05\xd3\x11\x80\x01\x60\x9a\xc8\x0a\x8c\xc0\x10\xf8\xdc\x9b\x47\x08\x08\x9c\xba\xe0\x01\x4a\x15\x16\x2f\x8b\x2d\xd0\xd5\xd5\xc5\xca\xf9\x73\xb9\x74\xa3\xed\xe7\x8d\xbd\xfa\xc7\x29\xab\xce\x77\x51\x2d\x0c\x11\xb9\x89\x80\xf8\x3a\xca\x6e\x6e\xc0\x9a\x6f\xdb\xdb\xdb\x0d\x00\xc9\x9c\x6c\x9e\xf8\xcf\x1d\x89\x2f\xbc\xef\xdd\xba\xdf\x5b\x9f\xb2\x6f\xa5\xe5\x52\xf2\x1c\x1c\x79\xc9\xcc\x1c\x5d\x3f\xf1\xe3\xb3\x0d\x85\x1f\xc0\xda\xc4\x71\x65\x83\x4c\x59\xf8\x4e\x7f\xce\xd6\x76\xff\xbb\x75\x7f\xd3\x98\x91\x3e\x40\x61\x05\x88\x38\xb8\x9e\xac\x29\xbd\x72\x64\x63\xfa\x6f\x87\xea\x70\x72\xd7\xae\x5d\x05\xe0\xea\x7e\x81\x4a\xfd\x20\xca\xe0\x79\xcf\x05\xcf\x81\x1d\x97\x5c\x7f\x39\xb9\x91\xe6\x2d\xa3\x35\x7f\x7e\xef\x80\x71\xfc\xd9\x2d\x63\x7f\x11\xaf\xc5\xc9\x03\x07\x0e\x14\x66\x2a\x4c\x79\x9d\x70\x35\x4d\x83\x2c\xcb\xac\x44\x59\xc1\xa4\x5c\x15\x4c\xe2\xaa\x66\xa0\x14\x4d\x08\x4e\x77\xbd\xa5\x86\xa6\x69\x86\x2c\xcb\x39\xdd\x49\x63\xe9\x46\xf1\x35\x6f\xdc\x58\x70\x89\xda\xe9\x30\xd6\x6c\x7b\xd1\x94\xc8\x20\xa6\x94\x75\x2f\x93\x2f\x07\xa0\x3f\x27\x9b\xec\xc9\x5b\x93\xf1\xba\xa2\xb8\xad\x31\x23\x6d\xb2\x99\xd4\x3e\xe1\x30\x46\xe2\x6e\xed\x4c\xc9\xda\x1c\xd3\x8b\x72\x4d\x84\x23\x47\x8e\xb0\x8a\xf0\x03\x59\xdb\xf6\xbd\xa7\x03\xdf\xb3\x1b\xf4\x9a\x78\x00\x01\x91\xea\xf3\xd2\x03\xff\xad\xbb\xfe\xce\x67\xb6\x8c\xfd\x41\x6f\x7d\xf1\x85\xc9\xb1\x88\xf2\x9b\xef\x7e\xcf\x05\xcf\x27\xef\x18\x72\xfd\xf5\xd4\x95\x08\x01\x50\xab\x8a\x77\x3e\x7a\xa6\xfe\x07\x87\x6f\xbb\xfc\xd1\x51\x45\x3f\xb1\x6f\xdf\xbe\x69\x4b\xd3\x5e\xb7\x37\xb0\xb9\xb9\x99\x28\x8a\x22\x32\x0a\xef\xb6\x61\xd7\x87\x64\x93\x2a\x53\xbf\x33\x1d\x52\xce\x52\xdf\xa0\x57\x7b\x05\x40\xbe\xab\xab\x6b\xd9\xf6\x00\x7a\x3c\x1e\xe2\xf7\xfb\x19\x08\x84\x42\xad\x50\xf4\x5e\x32\x3a\x17\x4b\x0b\x68\x0e\x92\x1c\xdc\xee\xf8\x47\x2e\x90\x77\x00\xa4\xbb\xbb\xbb\xcd\x4a\x6f\x9f\xe1\xe1\x61\xee\x72\xb9\xb8\xdf\xef\xd7\x01\x64\x41\x90\x52\x6d\x6c\x20\xe9\x2a\x75\x8f\xba\xf5\x37\x27\x1c\xc6\x09\x46\x71\x0e\xd6\xbe\xc8\x31\x4d\xd3\x8a\x87\x0e\x1d\x62\xd1\x68\x94\x36\x37\x37\x8b\x84\xa1\xfe\x43\x6f\xd7\x7f\xc5\xa3\x8a\x33\xd6\x75\xa1\x9c\xd8\x9b\xc7\xe5\xf7\xbc\xd3\x98\x7f\x8a\xcb\x42\xb6\xb5\xb5\xd5\xdc\xb1\x63\x07\x91\x65\xd9\x51\x9f\xb3\xdd\xf1\x40\xcc\xfb\xcf\xb3\xed\xd7\x10\x39\xa9\x09\x64\xa5\xcd\x6f\x07\xf3\x3f\x95\x2c\x5f\x01\x9f\xda\x9b\x68\xa6\x39\x9b\x71\x02\x35\x27\x9b\xd7\x87\x8f\x66\x80\xaf\x60\x0b\xc3\x2a\x93\xba\xac\x76\x40\xd9\xc8\x31\x00\x24\x4b\x0e\x7a\xf2\x62\x44\xfe\xd6\x7c\x56\x30\x33\xc1\x14\xa0\x0f\x6e\xb7\xff\x9b\x29\x91\x73\x28\x6f\x6f\x9b\x6a\x5d\x1f\x39\x72\x84\x75\x75\x75\x19\x9a\xa6\x65\x60\xed\xd1\x3b\x07\xe0\x24\x80\x13\x00\xba\x51\x2e\x77\x1b\x8f\xc7\xaf\x94\xbf\xab\xc4\x2e\x82\x59\xe9\x8e\x40\xce\x36\x67\x1f\x05\x87\x21\x34\x6d\x19\xad\xd9\x8b\x72\x09\x98\xb2\xc1\xe7\x6a\x1f\x75\x7e\x58\xa8\x22\xa7\x20\x90\xb3\xed\x0c\x4e\x48\x3b\x00\xd8\xcb\xf7\xbe\x06\xd7\x09\x6b\x78\x78\x18\xb0\xe6\x70\x3d\xed\x30\x46\xe6\xba\x41\x05\xde\x82\x2d\x4c\xb8\x55\xa6\xa4\x5c\xe8\x68\xd9\x50\xde\x18\x99\x03\x30\x38\xd1\x68\x7b\x72\xe8\x56\xf9\xbb\x8c\x2e\x9c\x04\xa6\x00\x7d\xe0\x36\xc7\xd7\xf3\x5e\xf1\x67\xb0\xf6\xe6\x15\x66\xda\xe0\xd2\xd5\xd5\xc5\x0e\x1d\x3a\xc4\x8e\x1e\x3d\x6a\xc4\xe3\xf1\x8a\x0b\x36\x9d\xcd\x66\x33\x3d\x3d\x3d\xea\xc1\x83\x07\xaf\xa9\x78\x5a\xc9\x08\x6a\xc8\x4a\xd1\x6a\x52\xba\x00\xa0\x31\x2b\xdd\x85\xab\x25\x60\x28\x00\x67\x20\x27\x55\x15\xf8\x22\x20\xb4\x21\x27\xdf\x05\xc0\x3e\x5d\x46\xd0\x75\xea\x63\x92\x61\xa5\x26\x6b\x4a\x83\xd5\xdc\x04\x00\x5c\x9a\x10\x72\x69\x82\x3f\x6b\x37\xcf\x97\x5d\xa5\xcb\x86\x63\xc7\x8e\xb1\x60\x30\x68\x94\x7d\xe3\xb1\x54\x93\xf4\xbd\x92\x83\x66\x9a\xcf\xa8\xbf\x29\xa9\xbc\xea\x90\x36\x00\xa8\x35\x34\x31\xb8\xdd\xfe\xad\x82\x47\xa8\x54\x2f\x4d\xc7\xe3\xf1\x39\x37\xb8\x74\x77\x77\xb3\x79\xec\x82\x92\x04\x56\x7d\xf7\x73\x81\x11\x17\xae\xd5\xae\x92\x49\xe7\xe1\x84\xa2\xac\xb2\x4c\xbc\x0e\x33\x4e\x01\x00\xd4\xb1\x9a\x52\x5f\xb5\x45\xe7\x04\x4e\xa4\x86\xac\x14\x01\x20\x2d\xa4\x5a\xd5\x8d\xe2\xf0\xe1\xc3\x4c\xd3\x34\xab\x28\x33\x41\x77\xd6\x2f\xfe\x57\xcf\x7d\x35\x9f\x1b\xd9\x28\xbd\x58\x92\x48\x6e\xb6\xdf\xc1\x01\xe8\x76\x92\x8e\xb7\xcb\x3f\x89\xed\x74\x7e\xae\xe0\x11\x9e\x04\x70\x16\x40\x22\x99\x4c\x2e\x49\x53\x87\x09\x87\x71\xb9\xda\xb1\x4d\xd6\xe8\x83\xb8\x76\x65\xc5\x12\x2e\xbd\xbf\x9a\x73\x4d\xc2\xf5\x81\x3a\xf5\x6d\xcc\xb0\x32\x9b\xd1\x11\x04\x4b\x03\x9c\x37\x09\xd7\xc5\x2a\x03\x43\x2d\xe3\xf6\x7b\x7a\xeb\x8b\x87\x61\xad\x77\x97\x1d\x87\x0e\x1d\x62\xfb\xf7\xef\x57\x65\x59\x1e\x01\xa0\x9a\x36\x92\x1a\x69\x93\xfb\x47\x37\x4a\x61\xd7\x98\x79\x9b\x6b\xdc\xdc\x64\xcf\x31\xbf\xa0\x73\x27\x08\x60\x48\xa4\xa0\xba\xe8\x48\xce\x2b\xc4\xf2\x75\xc2\x19\x2e\x90\x7e\x58\x2a\x7f\x04\x40\x66\x09\xcb\xd8\xe9\x17\x3d\x5a\xb7\x2a\x9a\x69\x87\x21\xcc\xaa\xa1\x0c\xca\xf5\xb3\x8d\x85\x23\xb8\xb6\x04\x4c\xe1\x6c\x63\xe1\xa5\xdb\x87\x94\xc7\x24\x46\x67\xb5\x03\x2e\x78\x8b\x27\x32\x76\x73\x10\x80\x5a\x2e\x3f\x73\x0d\xa6\xad\x10\x12\x89\x44\x20\x8a\xa2\x58\x12\xb8\xb2\x25\xe1\x7c\xd0\x61\x08\xb5\xd5\xfc\x2a\xd9\xa0\xf6\x53\xeb\x72\x3f\x02\xc1\x84\x24\x49\xe6\xd0\xd0\xd0\xb2\x77\xc3\x3c\x75\xea\x14\x0f\x06\x83\x4c\x51\x14\x0d\x40\x16\xc0\x18\x28\x19\xd1\x6b\x68\x2c\xe7\x17\xdf\x4a\x87\x6c\xaf\xa7\x9a\x6d\xaf\xa6\x9a\x6c\x2f\xa5\x83\xb6\x97\x72\x3e\xf1\x15\xdd\x49\xdf\x04\x25\xef\xc0\x32\xda\x46\x00\x64\xfb\xfb\xfb\x97\xa4\x5a\x79\x5b\x5b\x1b\x64\x59\xa6\x86\xc0\x6d\x25\x81\xbb\xc2\x29\xfb\x8c\xd9\xc1\x1c\x1c\x27\x9a\xb2\x4f\xbf\x5b\x5f\x7c\xb2\x9c\x14\x52\x84\x45\x02\xa2\xd9\x18\x51\x6d\x4c\x0e\xa7\xec\xdb\x09\xc8\xb4\x17\xc8\xca\x46\xea\x27\x5b\xc7\xfe\x51\xb7\xf1\x33\x00\xc6\xfa\xfa\xfa\xcc\x81\x81\x81\x6b\x64\x32\x2d\x01\x1a\x1a\x1a\x88\xc7\xe3\x11\x40\xe0\x0a\xe4\xa4\x3b\x02\x39\xa9\xaa\xec\x60\xc9\x20\x9e\xf3\xbe\xe2\x0b\x05\x99\x5d\x74\x3a\x9d\x5a\x77\x77\xf7\x8a\xb4\x43\x8d\xc5\x62\x3c\x9b\xcd\x72\x9f\xcf\xa7\xcb\xb2\x5c\x84\x65\x98\x8d\x01\x18\x86\x65\xad\x0f\x02\x18\x80\xe5\x9c\x19\x04\x70\x09\x56\xfc\x3d\x93\xcd\x66\xf5\x43\x87\x0e\x99\x7d\x7d\x55\xcf\x7e\xf3\x05\x69\x6e\x6e\x66\x00\xf8\xa8\xa2\xa7\x4d\xca\x9d\xa1\x8c\xbc\x89\x4e\xe9\x45\xc8\x08\x67\x27\xd7\xe5\x5e\x3a\xba\x7e\xe2\x6b\xdc\x5a\x4e\xa6\xfb\xfb\xfb\xcd\xd1\xd1\x51\xf8\xfd\x7e\x0e\xc0\x4c\xb8\x4a\xc9\x71\xa7\xa1\x37\x64\xa5\xf5\x92\x49\xec\x15\x22\x95\xf7\x68\xf4\x3e\x75\xeb\xd8\x3f\x65\x1c\xe6\xd1\xf2\x6f\x2e\x1e\x3e\x7c\xf8\xba\xe5\xf9\xb4\x53\x40\x3c\x1e\x47\x38\x1c\x36\x00\xe4\x06\x3d\xea\xc9\xad\x23\x35\x0f\x54\x13\x13\xa0\x20\x74\x73\xd2\xf9\xe0\x65\x65\xe2\x0d\x45\x51\x2a\x39\x6c\x2b\x82\x72\x81\x05\x00\xd0\x77\xef\xde\x6d\x04\x83\x41\x75\x8a\xbf\x1d\x28\x3f\x5f\x35\x7e\xf7\xc5\x42\x77\x77\x37\xdb\xb6\x6d\x9b\xa1\x28\x4a\x0a\x04\xe7\x8e\x37\x67\xbf\xd6\xe7\x2f\x9e\xde\x32\xea\xbc\xaf\x3e\x27\x35\x11\x00\x29\x67\x29\xd1\x13\x28\xbc\x96\x70\x95\x7e\x51\xce\x08\x4a\x4e\xce\x08\x0a\x85\x42\xba\xa2\x28\x49\x10\x9c\x8d\x05\x0a\xfa\x79\x5f\xb1\x6b\xdd\x84\x7c\xbb\x3f\x6f\x0b\x95\x28\xd7\x47\xdc\xda\xf9\xcb\xae\xd2\x5b\x9c\x20\x86\xb2\x07\x72\xa6\x12\x32\x33\xca\xb5\xdc\x09\x24\x50\xa3\xd1\x5d\xbf\xff\x7a\xe8\x1b\x42\x95\x76\xc0\x84\xdd\xe8\x3d\x74\xd7\xf0\xa3\x8c\xa2\xbf\xa7\xa7\x47\x5d\x2b\x0d\x33\x3d\x2a\x1d\xd6\x50\xe9\x3a\x06\x04\x60\x65\x1d\x51\x58\x4b\xda\x04\xae\xf6\x45\x54\xa7\xba\x72\x27\x9d\xef\x2e\x5f\xc3\x0b\x6b\xa9\x58\x59\x12\x27\xcb\x47\x61\xb6\x2e\x25\x33\x56\x09\x2b\xdb\x01\xb4\x24\x70\xc7\xfa\x71\xfb\x7d\x8a\x26\x56\x95\x22\x2e\x1b\xc4\x3b\xe2\xd6\x8f\xa7\x9d\x46\x9f\xa2\x28\xea\xa9\x53\xa7\x56\xac\x35\xfa\x6a\xc6\xa9\x53\xa7\x78\x5b\x5b\x9b\x39\x69\x8a\x1a\x85\x35\x15\x5d\xc4\x55\x43\x34\xad\x69\x9a\xfa\xf5\xaf\x7f\xfd\x3a\xd5\x5d\xb6\x75\x4c\x45\x51\x8a\xa8\xd8\x3a\xd6\x35\xe2\xe5\xbf\xe3\xb0\x9a\x6f\x98\xb3\x25\x87\xcc\x48\x80\xb2\x8b\x95\x80\xc0\x29\x1b\xb4\xb5\x75\xdc\x7e\x5b\x35\x3f\x8c\x80\x40\x36\xa8\xbd\xa7\xa1\xf0\x82\x28\x8a\x79\x4d\xd3\x78\x22\x91\x58\x23\xc1\x34\x28\xdb\x48\x5c\x51\x14\x5d\x96\x65\x15\xd6\x9b\x9b\x85\xd5\x28\x4b\xed\xee\xee\x36\x7f\xfa\xd3\x9f\xce\x28\xbc\x58\x2c\xc6\xbb\xba\xba\x98\xcb\xe5\x32\x65\x59\xd6\xca\x64\x52\x93\xc9\xa4\xde\xd7\xd7\x67\x3e\xf1\xc4\x13\xe6\x5c\x6d\xe9\x67\x9d\xda\x0f\x1c\x38\x20\x01\x68\xf4\x14\xc4\x0f\x7c\xe2\x78\xe3\x97\xab\x49\x7c\x00\x00\x93\x70\xf5\xf1\x3b\x46\x3f\x9c\x74\x95\x8e\x66\xb3\xd9\xdc\x6a\xef\xf8\xf5\xab\x8c\xb9\x04\x6a\x00\xc8\xa5\x1d\x46\xef\xb0\x5b\x3b\xd7\x34\x61\xaf\xaa\x20\xbd\xc0\x89\x3d\x7a\x51\xd9\xff\xec\x96\x54\xb7\xa2\x28\x6a\x5b\x5b\x9b\xb1\x56\x1e\x76\xe1\xa8\xf4\x1e\xc2\xa4\x84\x91\x64\x32\x89\xc5\x68\x9e\x39\x6b\xa5\x50\x9f\xcf\x47\x3c\x1e\x0f\x40\x20\x01\xf0\xcf\x95\xf9\x32\x19\xde\x82\x6d\x43\x5f\x7d\xf1\x85\xa2\xc4\x46\x7d\x3e\x9f\xbe\x52\x4b\xc2\x9b\x19\x7b\xf6\xec\xa1\xbb\x76\xed\x12\x3c\x1e\x8f\x2c\x19\xc4\xed\x2d\xd8\x42\x8a\x26\xfa\x4c\xca\x05\x49\x71\xf0\x70\x38\xcc\x5b\x5b\x5b\xf9\x3b\xef\xbc\xb3\xe0\xb1\x9d\x95\x00\x7d\x7d\x7d\x3c\x1a\x8d\x12\x00\xc2\x84\xdd\xe0\xb7\x8e\xd4\x3c\x68\x9b\xc3\xf3\x54\x01\x05\xb1\xb9\x34\xc1\x13\xab\x2f\xbc\x24\xcf\x10\x8a\x5c\xc3\xcc\xd8\xbb\x77\x2f\x6d\x68\x68\x90\xe4\x12\x09\xdc\x77\xc1\xf3\xc7\xbb\x7b\xbc\xff\x74\xfb\x25\xe5\x33\x91\xe1\x9a\xff\xb9\xe3\x92\xeb\x37\x7d\x05\x5b\xd3\xa8\xa2\x9f\x13\xdd\x8e\x62\x24\x12\x31\x17\x6a\x6c\xcf\x59\x2b\xb8\xad\xad\x8d\xcb\xb2\x4c\x4c\x0a\x9b\xa3\x44\xc3\xa1\x8c\x3c\x67\x1e\x7c\x05\x9e\xa2\xb8\x71\x44\xd1\x4f\x4c\x38\x8d\x7e\x9f\xcf\xa7\xad\xad\x08\xaa\xc3\x9e\x3d\x7b\x68\x43\x43\x83\xe4\xd0\x69\xcb\x47\x4e\x07\xbe\xb9\x71\xcc\xf9\xbb\x22\xa3\x5e\x02\x42\x09\x08\x15\x38\x71\xfb\xf3\xd2\xdd\x9b\x93\x8e\x07\x2e\x78\xd5\x9f\x1b\x0e\x9a\x6e\x6b\x6b\x33\x17\xa2\x65\xe7\x24\x80\x2c\xcb\x24\x14\x0a\x71\x00\x34\x6d\x37\xd8\xb6\x61\xd7\x6e\xca\xab\xeb\x12\x46\x40\x68\x63\x56\x6a\x10\x39\x0b\xf4\x00\x00\x0b\x4d\x49\x44\x41\x54\x3f\xdb\x90\xff\x29\x91\x84\x7c\x30\x18\x34\x17\xd2\xd9\xea\x57\x0d\xbb\x76\xed\x12\x00\x78\x1f\x3a\xe7\xfd\x3f\xcd\x13\xf6\x47\x66\xfa\x9e\x6c\xd2\xfa\x60\x46\xbe\xf5\x6c\x63\xfe\x19\xc9\xbe\x30\x2d\x3b\xa7\x20\x87\x87\x87\x79\x79\x1f\x1c\xd7\x6c\x5c\x70\xab\xc2\xe6\x40\x4e\x6a\xad\xf6\x06\x0e\x43\x08\x08\x9c\x18\x83\x5e\xf5\xb8\xa2\x28\xda\xda\xb2\x70\x76\xec\xdd\xbb\x97\x3a\x9d\x4e\x87\x37\x2f\x46\x3a\xfb\xea\x3e\x3f\x57\x85\xd6\x1a\x9d\xb6\x5c\x56\x4a\x27\xc7\x9d\xc6\xf9\x85\x68\xd9\xaa\xc2\xb6\xe5\x44\xc6\x02\x80\xf8\xf1\xe6\xec\x7f\xcd\xb6\xa5\x79\x3a\xec\xb8\xe4\xfa\xa3\xe6\x71\x79\x27\x00\xe7\xce\x9d\x3b\x57\x6c\xff\xc0\xcd\x80\x4a\x7d\xc6\x60\x46\xbe\xb7\x9a\x8c\x1f\x02\x82\xd6\x94\xfd\xfd\x00\x9c\x65\x57\xf7\xbc\x50\xd5\x09\x93\xd2\xae\x52\x69\x87\x71\xfa\x6c\x15\x9d\x2c\x26\x43\xe0\xc4\xfe\x60\x8f\xf7\xf3\x4e\x9d\x86\x01\x5c\xd9\x2b\xbf\x86\x19\x21\xc9\x06\xad\xaf\xfa\xcb\x26\xf1\x62\x81\xe9\x78\x55\x9f\x50\xd6\x02\x39\x10\xc4\xdf\x68\xcd\xfc\x40\x15\xd9\xb4\x85\x09\x66\x82\x5b\x13\xdb\x1e\x3a\xe7\xfb\x3b\xca\x10\x50\x14\x45\xda\xb3\x67\xcf\x1a\x09\x66\xc1\x84\xc3\xa8\x7a\xfb\x50\xb2\xa6\x14\x5f\xe8\x7d\xaa\x16\xc2\xe4\xe4\xcb\x9c\x6c\x76\x77\x35\x65\x9e\x99\xef\x44\xde\x32\x2e\x3f\xfc\xde\x3e\xcf\xa7\xc0\xe1\x09\x85\x42\xe2\x72\xe7\x0e\xde\x44\x30\x86\x6a\xb5\xb3\x45\xd1\x4c\xcf\xf5\x45\x93\x70\xa3\xd7\x5f\x7c\x1d\x58\xd8\xee\xec\x79\xb5\x8e\x95\x24\x09\x0d\x0d\x0d\x0c\x00\x4b\x28\xa5\xec\xc6\xa4\xfd\x5e\x67\x49\xa8\x3a\xb7\x8d\x80\xa0\x21\x2b\xdd\x65\x50\x9e\x1c\x76\xeb\xe7\xfc\x7e\xbf\xee\x72\xb9\xf8\xd4\x24\x85\x5f\x65\xb4\xb6\xb6\xc2\xe9\x74\x52\x53\xe0\x92\x49\xb9\xa7\x75\xdc\x7e\xdb\xcc\x09\x23\xc0\x99\x50\xfe\x85\x73\x8d\x85\x1f\x02\x88\x6b\x9a\x56\x9c\xaf\x11\x38\x2f\x02\x0c\x0d\x0d\x55\xfa\xd9\x98\x8c\x82\xa7\x9c\x86\xb9\x25\xe1\xdc\x39\x53\x46\xca\x74\x20\x20\xa4\x39\x2d\x77\x16\x24\xf3\x62\x42\x29\xf5\xfa\xfd\xfe\xd2\x1a\x09\xae\x42\x10\x84\x2b\x09\x23\x23\x8a\x9e\x16\x18\xa9\x0b\x66\xa5\x0d\x53\xc7\x98\x83\xe3\x5c\xa0\xf0\xc6\xcb\x9b\xd2\x5f\x29\xef\x3f\x48\x4d\x97\xf1\x33\xe7\xfd\xe6\xfb\x80\xa6\x69\x56\x1e\xd0\xc8\xd8\x4d\xcd\x6e\xd0\x60\x30\x2b\x57\x5d\x4f\x10\x00\x08\x88\xd0\x3a\x6e\x7f\x7f\x41\x32\x07\x12\x4a\xe9\xfc\x1a\x09\xae\x22\x91\x48\xf0\xb2\xf3\xcd\x04\x81\x76\xd1\xa3\x0d\x0e\xd6\xa9\xc3\x84\x13\x99\x72\x42\x8a\x36\x56\xb8\xe8\xd1\xfa\x5e\xdd\x30\xf1\x44\x57\x73\xf6\x3b\x8c\xe2\x0c\xac\x66\x9c\xc5\x27\x9e\x78\x62\x69\xa7\x80\xca\x03\x06\x83\x41\xae\x28\x8a\x09\x02\x33\xee\xd6\xd2\x1b\xc7\x1c\x77\x3b\x4b\x42\x55\x3b\x88\x2a\xa0\x20\x62\x38\x65\x7f\x50\x17\xd8\xe8\x88\xa2\xc7\xfc\x7e\x7f\x29\x18\x0c\xf2\x35\x47\x91\x15\x26\x8e\x44\x22\x86\x28\x8a\x2a\x08\x32\x39\xbb\x39\x74\xde\x5f\x7c\xeb\xf4\xba\xdc\xd1\xd3\xeb\x72\x3f\xeb\xad\x2f\xfe\x2c\xed\x34\x8e\xc1\xca\xf8\x19\x06\x50\x78\xf5\xd5\x57\xf9\x7c\x3b\x87\x03\x0b\x20\x00\x60\xc5\xa1\xa3\xd1\x28\x07\x50\x62\x14\xc6\xa8\x5b\xcb\x6f\x19\x75\x76\x08\x55\x7a\x08\x2b\x20\x20\x62\xcb\xb8\xfd\x41\xc9\x24\xec\x62\x9d\x76\x46\x71\x2b\xa5\xd6\xd6\x56\x76\x23\xc1\x8d\xd5\x86\xce\xce\x4e\x1a\x0e\x87\xc9\x7c\xb5\xdb\xa9\x53\xa7\x2a\x24\x28\xc2\x4a\xee\x18\x85\x95\xdb\xd7\x5f\x3e\x2e\xa1\xbc\xe5\xec\xd5\x57\x5f\xe5\x0b\x8d\x0a\x2e\x88\x00\x80\xb5\x89\xb4\xb9\xb9\xd9\x04\x50\xca\xcb\x4c\x55\x6d\x4c\x5e\x9f\xb2\x6f\xab\xb6\x64\x4a\x05\x04\x84\x06\x33\xd2\xaf\xf9\x73\xb6\xd0\x60\x9d\x76\x42\x52\x1c\xc5\x48\x24\xc2\x4d\xd3\xc4\xcd\xec\x31\xac\x44\xf2\xea\x7d\x7e\x5b\x43\x5d\xbd\xed\xf6\xbb\xa2\xdc\xe5\x72\x61\x3e\x44\x28\x1b\x74\xcc\xe7\xf3\x69\xa2\x28\x16\x60\x25\x8b\x64\xca\x7f\x8b\x3d\x3d\x3d\xe6\x13\x4f\x3c\xc1\x16\xf2\xe6\x57\x70\x43\x95\xd5\xca\xf5\xf8\x25\x00\x8d\xe0\xb8\xe3\x81\x58\xdd\x5f\x44\x46\x5c\x73\xee\x77\x9b\x09\x29\x47\xe9\xc4\xb3\x5b\x52\x9f\x1a\x75\xeb\xa7\x61\x75\xc2\x5c\x92\xd4\xec\xa5\x44\x24\x12\xa1\xd1\x68\x14\xb2\x2c\xdb\x6d\x06\xf1\x3e\x10\xf3\xfe\x29\xe5\x10\x9f\xde\x3a\xf6\x77\x20\xc8\x9d\x39\x73\xc6\x58\xce\xc6\x14\x73\x61\xc1\x1a\x00\xb0\xa6\x82\xf2\xaa\xa0\x04\x82\xd2\x60\x9d\x36\x1c\xcc\x48\xb7\xd6\xaa\xe2\x82\xf6\x86\x39\x0c\x21\x78\x4b\xa2\xe6\xc3\x8c\xf0\xec\x88\xa2\xf7\xba\xdc\x8a\x19\x89\x44\x4c\x51\x14\xc9\xcd\x10\x4a\xde\xbb\x77\x2f\x6d\x6f\x6f\x17\x45\x51\x74\x35\x66\xa4\xdb\x1f\xed\xae\x3f\xd8\x34\x61\xff\x0d\x6f\x41\xbc\x27\x2f\x99\x17\x12\x4a\xa9\xb7\xa1\xa1\x61\x55\x75\x51\xbb\x21\x02\x00\x96\x9a\x2a\xef\x25\xd4\x18\x45\x69\xc0\xab\x8e\x86\x53\x8e\xdb\x9d\x25\xa1\xaa\xba\x02\x53\x41\x39\xb1\x37\xa7\xe5\x87\xc2\xe3\xf6\x3b\x92\x35\xa5\x1e\xb5\x86\x4c\x84\x42\x21\xb3\xad\xad\x8d\xeb\xba\x4e\x6e\x44\xdd\x2d\x15\x2a\xea\xde\xe9\x74\xca\x92\x41\x02\x3b\x2f\xd4\xfe\xc9\xfd\xef\x7a\xbf\xe4\x2a\x09\x1b\x09\xac\xa5\x6f\xd3\x84\xfc\x9e\x0b\x5e\xf5\x48\x41\x62\xc9\x48\x24\x52\x5a\x2d\xa1\xf1\x1b\x26\x00\x00\x64\xb3\x59\x84\xc3\xe1\x12\x00\xad\x24\xf0\x62\xbf\xb7\x38\xba\x31\xe9\xb8\x43\x36\xa9\x63\x21\xd7\x23\x20\x70\xe9\xe2\xfa\x5b\x46\x6b\x3e\x56\x5b\x14\x3d\x97\x5d\x7a\x1f\x6a\x6c\x5a\x38\x1c\x66\x95\xfc\x84\xd5\xa0\x11\x2a\x82\x57\x14\x45\xa6\x0c\xb5\xb7\x8c\x3a\x1f\x7e\xf8\xac\xff\x2b\xe1\x71\xc7\x63\x02\x88\x3c\xf9\xbb\x02\x27\x8e\xd0\x84\xb4\xfd\x5c\x43\xe1\x59\x22\x09\x85\xd6\xd6\x56\x73\x35\x18\xbb\x8b\x42\x80\xb1\xb1\x31\xee\x72\xb9\xe0\xf7\xfb\x4b\x00\x8a\x9a\x8d\xe7\x07\xeb\xd4\xb1\x0d\x63\x8e\xdb\x64\xb3\xba\x0c\xa2\xe9\x40\x41\xa4\x40\x5e\xba\x27\x32\x52\xf3\x98\xa3\x44\x1d\xc9\x1a\x63\x90\x38\x6d\x7a\x28\x14\x62\xd1\x68\x94\xbb\x5c\xae\x79\x5b\xd7\x37\x8a\x48\x24\x42\xdf\xff\xfe\xf7\x93\x9d\x3b\x77\x0a\x8a\xa2\xc8\x84\xa3\x76\x53\xd2\xb1\xeb\x03\xe7\x7c\xff\x77\xdb\xb0\xeb\x7f\xd9\x4d\xa1\x61\x26\xc3\xca\x51\x12\x82\x2e\x5d\xa8\xe9\xf3\x15\x8f\x39\x6b\x9c\xaa\x24\x49\x7c\x25\xb6\xcf\x4d\xc6\xa2\x96\xd7\xad\xd4\xae\x81\xb5\x49\xa1\xcd\x53\x10\xdf\xfb\x68\xb7\xff\x93\x75\x45\x5b\xd5\x65\xe7\x67\x43\x89\xb2\x44\x4f\xa0\xf0\xfd\xd3\xa1\xdc\xa1\xcb\xae\xd2\x79\x6e\x55\xee\x32\x34\x4d\x33\x96\x72\x67\x4f\x34\x1a\xa5\xad\xad\xad\x95\x50\xad\x08\x40\xb2\x97\xa8\xa7\x2d\xe1\xd8\x7d\x5b\x5c\xf9\x03\x6f\x41\xbc\xbb\xda\xbd\xfe\x1c\x9c\xfd\xac\x6d\xfc\x4f\xbb\x83\xf9\xef\x02\xc8\xcc\x54\xbb\x67\xb9\xb0\xe8\xf5\x95\x2b\x9d\x3b\x00\x78\x00\x6c\x72\xa9\xc2\xce\x3d\x67\x7d\x7f\xdc\x98\x95\x5b\x16\xeb\x1e\x0c\x5c\x4f\xba\x4a\xaf\xbc\xd3\x90\xff\xc1\x05\xaf\xfa\x72\xda\x61\x24\x40\xa0\xa3\x5c\xab\x38\x9b\xcd\xb2\x6c\x36\x3b\x5b\xc3\x86\x59\xd1\xd1\xd1\x41\x7d\x3e\x1f\x26\x55\x05\x15\x01\x48\xa2\x49\x9c\xeb\x26\xe4\xad\x5b\x12\xce\x0f\xaf\x1f\x73\x7c\x48\x36\x68\xcb\x42\x06\x50\x17\x58\xea\xfb\x3b\x12\x1f\x49\xba\x4a\x27\x34\x4d\xcb\xcd\x56\xc5\x6b\xa9\xb1\x14\x05\xb6\xa7\x92\x20\x2c\x19\xe4\xce\x07\x7b\xbc\x7f\xb8\x29\xe9\xd8\x3e\x5f\x3f\xc1\x5c\x30\x09\xcf\x24\x6b\x4a\xaf\x0d\x78\xd5\x97\x2e\x7a\xd4\xa3\x09\x57\xe9\xbc\x66\xbb\x52\xb8\xba\x52\xbc\xfa\xba\x22\x8f\x93\x3e\xd3\x29\x9f\x2b\x87\x08\x0e\xc9\x53\x14\xfd\xa1\x8c\xbc\xa3\x35\x65\x7f\x5f\x73\x5a\xde\xe5\x28\xd1\x4d\xd5\xbe\xed\xb3\x21\xe9\xd4\x4f\x7c\xff\xf6\xc4\x3e\x5d\xe4\x83\xfd\xfd\xfd\xfa\x4a\xf5\x58\x5c\x12\x02\x00\x57\x72\xd9\x45\x58\x7b\xd7\x5a\x28\xc3\xf6\xbb\x07\xdd\xfb\xee\x1a\x74\x3f\x20\xf0\xa5\xa9\x2a\xca\xc1\x99\x41\x79\x72\xdc\x61\x74\x8f\xd5\x94\xce\x25\x5d\xa5\x9e\x8c\x6c\xf4\x67\x1c\x66\x5c\x15\x59\x5a\x13\x59\x41\x17\x98\xc1\x01\x06\x02\x80\x03\x02\x27\xa2\x64\x12\xd1\x5e\xa2\x6e\x47\x49\xf0\x7a\x8a\x62\xd8\x53\x14\xc3\xbe\xbc\xed\xd6\x40\x4e\xda\xea\x2c\xd1\x4d\x84\x13\xe7\x62\x0f\x14\x07\x70\xae\x21\x7f\xf0\xd9\x2d\xa9\xbf\xc2\x0a\x4e\x05\x4b\x56\xd6\xed\xb9\xe7\x9e\x63\x9d\x9d\x9d\x46\xb9\xeb\xe5\x79\x46\xa1\xbf\xd6\x9a\xc9\x8d\x2a\xfa\xe0\x03\x3d\xde\x8f\xd7\x2c\x70\x99\x38\x1b\x08\x08\xb5\x31\x12\x08\xe4\xa5\xfb\x03\x79\xe9\x7e\x24\x2a\x25\x8c\x39\xe3\x80\xce\x09\x0a\x8c\x70\x95\x13\x18\x1c\x60\x04\x10\x29\x27\x22\xe1\x70\x52\x0e\x3b\x40\xa4\x25\x7b\x23\xa6\x40\x15\xcd\xcc\x40\x9d\x7a\x01\x56\x26\xcf\x8a\x14\xd4\x00\x16\x69\x15\x30\x13\x06\x06\x06\xb8\xa6\x69\xbc\xb9\xb9\xb9\x04\xa0\x00\x82\x89\xb4\xd3\x18\x89\x05\x0a\xe7\xeb\x0a\xe2\x3a\x4f\x51\xf4\x2f\xf6\x94\x30\x15\x95\x75\x38\x01\x11\x29\x88\x43\xe0\x44\x11\x38\xa9\x15\x39\xf1\x08\x9c\xb8\x29\x27\x2e\x0a\x22\x13\x10\x61\x39\x84\xcf\xc1\x71\xd1\xa3\xf5\xfe\x38\x92\xfc\xa7\x4b\x1e\xfd\x65\x58\x3e\x7e\x6d\xa5\x9c\x43\x4b\x4a\x00\xc0\x8a\x1e\x76\x75\x75\xb1\x48\x24\x52\x12\x45\x51\x05\x90\xd1\x45\x9e\x8a\x05\x0a\xef\xe6\x25\xd3\x0c\x66\xa4\x56\x1b\xa3\xb6\xa5\x7e\x8e\xd5\x00\x4d\x60\xea\xab\x1b\x26\x7e\x72\x64\x53\xfa\xdf\x54\x89\xbf\x09\x2b\xa8\x93\x8d\xc7\xe3\xc6\x4a\x45\x41\x97\x9c\x00\x15\x9c\x3a\x75\x8a\xb7\xb6\xb6\x9a\x4e\xa7\x53\x85\x55\x58\x31\x9d\x50\x4a\x03\x3d\x81\x42\xaf\x4b\x17\xfc\x75\x05\xb1\x61\xa9\xb5\xc1\x4a\x81\x83\xa3\xcf\x5f\x3c\xfb\xd4\xad\xc9\x7f\x1d\xf0\x69\x4f\x73\x82\xd3\xb0\x2a\x94\x4c\x24\x93\xc9\xd2\x42\xe2\xf8\x8b\x85\x65\x23\x00\x00\xbc\xf3\xce\x3b\x5c\x92\x24\xde\xd0\xd0\xa0\x03\xc8\x03\x48\xeb\x22\x4f\xbe\xeb\x2f\x9e\xbb\x54\xab\x25\xbc\x05\x5b\x63\x8d\x4e\xdd\xbf\x2c\x44\xe0\xe0\xb8\xec\x2a\xc5\x9f\x6b\x1f\xff\xde\x9b\x2d\xd9\xff\xd0\x6c\xfc\x4d\x58\xa5\xe7\x46\x00\xe4\xcf\x9c\x39\x63\x3e\xff\xfc\xf3\x2b\x1a\x17\x58\xb1\x91\xde\xb7\x6f\x1f\x55\x14\x45\x84\x55\xd5\xc2\x0f\x6b\xa5\xd0\xb6\x29\xe9\xec\xbc\x7b\x50\xd9\xe5\xcb\xdb\x1a\x6f\x56\x22\x70\x70\x8c\x3b\x8d\xe4\x1b\x2d\x99\x17\x63\xf5\x85\x97\x18\x45\x2f\xac\xa2\x0f\x49\x58\x35\x87\x8d\xd5\xb2\x65\x7e\x45\x47\x38\x1a\x8d\xd2\x2b\x8d\x9f\xac\xe5\x62\x85\x08\x1b\x36\x26\x1d\xef\xb9\xfd\x92\x72\x5f\x30\x23\xb5\xdc\x2c\x44\xe0\xe0\x48\xb8\x4a\xf1\x13\x4d\xd9\x57\x7a\xeb\x0b\xbf\x30\x29\xce\xc3\x12\x7c\x02\xe5\x5e\x41\xe5\x36\x2f\xab\x42\xf8\xc0\x0a\x13\xa0\x82\xb2\xcf\x80\xc2\x6a\xa9\x52\x21\x42\x88\x70\x84\x83\x19\xe9\xb6\xc8\xb0\x6b\xe7\xc6\xa4\x63\x8b\x64\x52\xfb\xaa\x78\xe0\x29\xd0\x29\xd3\x2f\xf8\x8a\xb1\xd3\xa1\xfc\xd1\x78\xad\xd6\xc5\x09\x06\x61\x95\x6a\xa9\x08\x5e\x8d\xc7\xe3\x6c\x35\xe6\x36\xac\xaa\xf1\x2c\x27\x98\x54\x88\xe0\x82\x15\x53\x68\x04\x10\xb2\x97\x68\x78\x53\xd2\x71\xd7\xe6\xcb\xce\xed\xa1\x09\xa9\xc5\xc6\xe8\xb2\x97\xa6\x9f\x0c\x83\x72\x63\x44\xd1\x86\x7a\x02\x85\xd3\xbd\xfe\xe2\x9b\x45\x89\xf5\xc3\x4a\xd9\x1a\x81\xd5\x5e\xae\x80\x55\x2c\xf8\x0a\x56\x15\x01\x2a\x98\x44\x84\x8a\x8d\x50\xd1\x0a\x01\x00\x01\xa7\x46\x5b\x5a\xd2\xf6\x6d\x2d\xe3\xf6\xb6\xa6\xb4\xdc\xe2\xd2\x04\x0f\x5d\xe2\x9f\x52\x69\x00\x71\xa9\x56\x1f\x1c\xf0\xaa\xb1\xc1\x3a\xb5\x3b\x27\x99\x03\x20\x18\x81\xf5\xa6\xa7\x60\x15\x7b\x52\x01\xe8\xab\x5d\xf0\x15\xac\x4a\x02\x54\x50\x8e\x2e\x02\xe5\x60\x0c\xae\x92\xc1\x03\x8b\x10\x5e\xca\xe0\x77\xab\xe2\xba\xc6\xac\xb4\xa1\x21\x2b\xb5\xf8\xf2\xb6\x80\xb7\x20\x7a\x1d\x25\xc1\x45\x39\x28\xaa\xea\xcf\x7d\x15\x1c\x1c\x8c\x80\xa9\x22\x2b\xa4\x1d\x46\x3a\xe9\xd2\x47\x12\xae\xd2\xd0\xb0\x5b\x3b\x3f\xe1\x30\x2e\x9a\xf4\x4a\xf9\xb5\x54\xf9\xc8\xa1\xfc\xb6\xa3\xca\x3e\x3d\xab\x09\xab\x9a\x00\x15\x44\x22\x11\xda\xd6\xd6\x36\x39\x1c\x2b\xc2\x72\xa1\x3a\x61\x4d\x15\xee\xc9\x07\xe1\x70\xc9\x06\x75\xd7\x68\x82\xcf\xad\x09\x5e\x7b\x89\xba\xed\x06\x75\xda\x4b\xd4\x2e\x30\x22\x0a\x96\xfb\x97\x32\x0a\xc3\xa0\xdc\xd0\x44\xa6\x6a\x22\x2b\x14\x6c\x66\x26\x27\x9b\xe9\x9c\x6c\xa6\x8a\x36\x36\xce\xad\xbd\x90\x19\xe0\x9a\x63\xb2\xc0\x75\x00\x46\x32\x99\x64\xb1\x58\x0c\xd3\xf5\xe6\x5d\xed\xb8\x29\x08\x30\x19\x53\xc8\x50\x39\xa4\x49\x87\x7d\x9a\x43\xc2\x55\xe2\x54\x6c\x87\x4a\x6f\xa3\xca\x9e\x47\x7d\xd2\xa1\x4e\x73\x54\xc2\xcd\x06\xac\x22\x4d\x37\xad\xd0\x27\xe3\xa6\x23\xc0\x54\x74\x74\x74\xd0\x60\x30\x78\xa5\xe9\x35\x26\x87\x73\xa7\xff\x3c\x35\x12\xc9\xa6\x1c\xc6\x94\xbf\x0c\xb0\xda\xbe\x0f\x0f\x0f\x57\xdd\x91\xf3\x66\xc1\x4d\x4f\x80\xe9\x10\x8d\x46\xa9\xcf\xe7\x83\x24\x49\xf0\xf9\x7c\x90\x65\x19\x98\x7b\x27\x34\xd3\x34\xed\x4a\x53\xc7\x85\x26\x93\xac\x61\x0d\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\xab\x1e\xff\x1f\x26\xf5\xd6\xf1\x64\x30\x2a\xac\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x81\x22\x7c\x0b\x92\x2b\x00\x00") + +func web_uiV2AssetsFavicon12808e1368e84f412f6ad30279d849b1df9PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsFavicon12808e1368e84f412f6ad30279d849b1df9Png, + "web_ui/v2/assets/favicon-128-08e1368e84f412f6ad30279d849b1df9.png", + ) +} + +func web_uiV2AssetsFavicon12808e1368e84f412f6ad30279d849b1df9Png() (*asset, error) { + bytes, err := web_uiV2AssetsFavicon12808e1368e84f412f6ad30279d849b1df9PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-128-08e1368e84f412f6ad30279d849b1df9.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsFavicon16x16672c31374646b24b235b9511857cdadePng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x35\x03\xca\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x02\xfc\x49\x44\x41\x54\x38\x8d\x7d\x53\x5d\x48\x53\x61\x18\x7e\xbf\xef\x7c\x3b\x3b\x3f\xcb\x2d\x97\x67\xb6\x8d\xb9\x74\xce\xf2\x27\xeb\xc6\x56\xf6\x43\x41\xd1\x2f\x15\x89\x20\x44\x48\x17\xdd\x94\x37\x51\x14\x12\x51\x89\x57\xde\x45\x42\x05\x11\x44\x3f\xf4\x43\x44\x57\x41\x65\x7f\x0a\x2a\x46\x62\x69\x66\x53\xf2\x87\xe9\x6c\xe7\xcc\xa9\xdb\xce\xce\xce\xce\xd7\x45\x28\x0a\xea\x7b\xf7\xc2\xf3\x3c\xf0\x3e\xef\xf3\x30\xb0\xcc\xf0\x3c\x8f\x6d\x36\x1b\x62\x59\x16\x69\x9a\x86\x28\xa5\x74\x29\x1c\x5a\xb4\x20\x84\x2b\xd7\x95\xfb\x6b\xac\x15\x67\x37\x42\xee\x1e\x4b\x8a\x71\x67\x30\x55\xc3\x9c\xfa\xe3\x5d\xb2\xff\xe9\xa3\xf1\xd6\x07\x93\x4a\x44\x5d\x52\x40\x10\x04\x7c\x65\x43\xd5\xe5\x23\x71\xdf\x75\x8d\x31\xd4\x41\x7b\xf2\x73\x18\xc7\x83\x3c\x32\x09\x9e\xb8\x10\x70\xc5\xcc\xa5\xc3\xd6\x64\xeb\xc9\xe0\x9d\x5d\x8a\xa2\x18\x73\x3c\x02\x00\x40\x08\xc1\x0d\xc5\x35\x0d\xfb\x67\xf2\xea\x3b\x24\xe5\xe1\x2d\xe5\xc3\xa5\xbe\xce\x5f\x13\xaa\xaa\x1a\x00\x00\x92\x24\x91\x03\x85\x81\xfd\x40\x41\x8b\x46\xa3\x60\xb7\xdb\xb1\x2c\xcb\x00\x00\xff\x85\x8e\x97\xec\xda\xde\x5b\x74\x83\x36\xef\x38\xdb\x6c\xb5\x5a\xc9\x72\xbe\x00\x00\x6c\x29\x2c\xf7\x7e\x2d\xb9\xf6\xb7\xb2\x70\xb3\x0f\x00\x80\x61\x59\x16\x37\x7a\xaa\x6e\x23\x06\x93\x0b\xe3\xcf\x8f\x85\x27\xc3\xa9\x95\x04\x80\x23\x2a\x38\x2d\x72\x87\x32\xd0\x36\x15\x8b\xa5\xb1\xc7\xe9\x16\xf2\xa7\x2d\x7b\xda\xf9\xd0\xc3\x3f\x23\xc3\x89\x39\x9c\xd7\xe1\x92\x4e\xaf\xdf\x5b\x7f\xd0\x1f\x38\x4c\x08\xc1\x00\x00\x65\x1e\xbf\xf3\xbe\xab\xf6\x6d\x8c\xd1\xfa\xef\xe7\x9c\xfa\x52\x96\xe7\xcf\x25\x6e\x2e\xdb\x43\x28\x62\x7f\x26\x42\xdf\xe6\xc8\x0c\xc3\xe0\x5a\xe7\x8e\x66\x29\x82\xaa\x28\xac\x01\xa6\x42\xdc\x5c\x93\x2e\xbb\xf8\x29\x2b\x74\x67\x94\x26\xfb\xc2\xfa\xec\x44\x4f\x96\xd2\x32\x3d\x91\x4c\x10\x84\x30\x06\x0a\xb0\xf0\xcd\x08\x21\xc0\x26\x06\x03\x18\x00\x08\x0c\x5e\x14\x08\xa4\x59\x56\x87\x8c\x11\x8a\x84\x47\x65\x3d\x92\x50\x89\x43\x4d\xab\x9a\xc1\x70\x36\x51\x3b\x41\x36\x9e\x8f\xf2\xe9\xe0\xbb\x50\xf7\x47\x00\x00\xc3\x30\xe8\x24\x9f\x6e\x5d\xe5\xb4\x27\x7b\x2d\xb1\x9b\xaf\x3b\x5b\x3e\xbc\x1a\x6d\x7f\xc1\x10\x82\x6a\xf9\x8a\xa6\x84\x57\xe8\xaa\x4c\xb9\xeb\x3a\xd1\xd8\x4b\x10\x45\x11\xbf\xde\x7a\xf9\x7d\xdb\xa6\xab\x83\xb9\x39\x12\xb7\x92\x7f\x08\x21\xbc\xde\x5f\xc4\x9d\x29\x39\x58\xed\x2f\xf0\x71\x00\x80\x71\x3c\x1e\x37\x9e\x65\x7a\x9a\x6c\x49\x92\x5f\x9f\x77\xb4\xd1\x6c\x36\xe3\xe5\x04\x28\xa5\xc6\x1a\x62\x71\x9f\x41\x15\xf7\x9c\xe6\x6c\x2f\x00\x18\x0c\x00\xc0\xe0\x54\x68\xa8\xa8\xb0\xc8\xb1\x5b\x59\x5b\x57\xec\xf2\x39\xfa\x60\xb2\x2d\x3a\x1b\x9b\x8f\xac\xd9\x6c\xc6\x87\x7c\x81\xad\xa5\x52\x7e\x41\x4b\xb0\xab\xbb\x25\x6b\xec\xe6\xf7\xa1\xfe\x89\x4c\x26\x43\xe7\xa3\x2c\xe5\xe4\xb0\x57\x8a\xab\x9b\x76\x87\x1d\xe7\x74\x4c\xa7\xfb\x78\xe5\xcd\xb0\x26\x07\x79\x6c\x12\x4a\xc8\xda\x80\x6b\x96\xdb\x36\xb2\x3a\xd5\x7e\xf2\xf7\xed\x4a\x59\x96\xe7\xa3\xbc\xa8\x4c\x3c\xcf\xe3\x7d\xa5\xdb\x02\x27\x84\x4d\x75\xde\x19\x61\xa7\x25\x45\xb2\x75\x4c\xf5\x88\xa8\x0d\x74\xb0\xe3\x4f\x1e\x8f\x7d\xbe\xfb\x7b\x68\x70\x7a\x91\x2f\x4b\xdd\x6a\x32\x99\xb0\xc3\xe1\x20\xa2\x28\x72\xba\xae\xeb\xd1\x68\x54\x5d\x58\xa0\x85\xf3\x0f\x37\x93\x32\x03\xb1\xf9\x4d\x7e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xb0\x22\x7d\xd3\x35\x03\x00\x00") + +func web_uiV2AssetsFavicon16x16672c31374646b24b235b9511857cdadePngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsFavicon16x16672c31374646b24b235b9511857cdadePng, + "web_ui/v2/assets/favicon-16x16-672c31374646b24b235b9511857cdade.png", + ) +} + +func web_uiV2AssetsFavicon16x16672c31374646b24b235b9511857cdadePng() (*asset, error) { + bytes, err := web_uiV2AssetsFavicon16x16672c31374646b24b235b9511857cdadePngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-16x16-672c31374646b24b235b9511857cdade.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsFavicon196x19657be5a82d3da06c261f9e4eb972a8a3aPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x33\x40\xcc\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\xc4\x00\x00\x00\xc4\x08\x06\x00\x00\x00\xc0\xa6\x8e\x6b\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xdc\xbd\x79\x70\x1c\xc9\x79\x2f\xf8\xfb\xb2\xab\xab\x0f\x34\x1a\x0d\x10\x00\x41\x00\x3c\x40\x82\xe7\xf0\x1e\x0e\x87\xa4\x24\x8a\xe6\x68\x34\x1a\xcd\xe8\xb2\xa5\x99\xb1\xf6\xf9\x59\xf2\xc1\x75\xec\x0b\xaf\xd7\xe1\xb5\x23\x14\x2f\x1c\x1b\x1b\xbb\x2f\x76\xbd\x11\xf6\x86\xe3\xc5\x5b\xbf\x08\xaf\xec\x90\xe4\xd0\x61\xeb\xd6\xe8\x9e\xd1\x9c\x1a\x6a\x0e\xce\x90\x43\x72\x86\x37\x41\x10\x04\x01\x10\x67\xa3\xd1\xe8\xae\xae\xca\xdc\x3f\xaa\xb2\x2a\x2b\xbb\xaa\xbb\xc1\xa1\xe2\xd9\x9b\x11\x40\x57\xe5\xfd\x65\x7e\x77\x1e\x05\x44\x07\xe6\xfd\x21\xe2\x37\x2a\xaf\xfe\xac\xc7\xe9\x65\xe3\xea\x6a\x25\x44\xb5\xd7\x28\xcf\xbd\xac\xbf\x95\xb6\x9b\xd5\xad\x8f\x47\x23\x18\x9a\x8d\x67\x54\x59\xbd\x8d\x38\x18\xa2\xe6\xa5\x51\x3f\xa3\xfa\x11\xd7\x87\x66\x7d\xfd\x37\x03\xc3\x7b\x41\xa4\x7b\x5d\xe7\xdd\x20\x7b\xdc\xe0\xae\xb4\xbd\xbb\xa9\x67\xa5\xc8\xf2\xaf\x3d\xbc\x97\xb1\xfc\xd7\x12\x56\x0c\x83\x11\x93\x51\x7d\xe6\x31\x71\x4c\xf9\xd5\xe3\xa0\x3d\xc7\xd5\xab\x77\x8e\x47\x3c\x47\xb5\x13\x55\x5f\xb3\xbe\xeb\x7d\x51\xf3\x46\xd5\x19\xd5\xb7\x66\xfd\x95\xed\x70\x2d\x5d\x1f\xa3\x46\x75\xea\xf1\xcd\xc6\x3a\xae\xee\x46\xf5\x37\x0b\x2b\x19\xe3\x56\xda\xfe\xb7\x0a\xc3\x8a\x42\x1c\x01\x35\x6b\x3c\x4a\x15\x6b\x24\xda\x5a\xa5\xf2\x28\x31\x1a\xf7\xdb\xa8\x2f\x71\x7d\x6b\xa5\xde\x95\xd4\xdf\x4a\xde\x46\x6d\xc6\x85\xa8\x72\x71\xf5\xb4\x22\x85\x5b\xed\x4f\xa3\x36\xfe\x2d\xc1\xb0\xa2\x4e\xb5\xda\x70\x2b\xf5\xc6\xd5\x11\xd7\xc1\x56\xcb\x34\xcb\x13\x17\xd7\x0c\xa9\xf5\x7e\x35\x22\xf2\xa8\xb8\x56\xe0\x8e\x8b\x6b\x16\x5a\x19\xaf\x46\x79\xef\x45\xdb\xf7\xaa\x9e\x7f\x2d\x30\x34\xcd\xd8\x0a\x35\x35\xaa\xb8\x55\xee\xd0\x4a\x5d\x51\x79\xee\x25\xc1\x36\xeb\xc7\xdd\xc0\x10\x57\x4f\x2b\xed\xb5\x1a\x56\x52\x76\xa5\xed\xb4\x32\xbe\x77\x5b\xf7\xdd\x96\xfd\xb5\xc0\xb0\x12\x04\xd7\x27\x58\xe7\xae\x7a\x3c\x22\x9e\xf5\xb8\xb8\xf7\xb8\xf6\xa2\xea\x69\x45\x34\xc7\x95\x69\x96\x3f\xae\x4f\x51\x30\x36\xaa\xbb\x51\x1d\xcd\x60\x8b\x6a\xaf\x51\x5f\xa2\xca\xc7\xf5\x21\xea\xf9\x6e\xc6\xb3\x19\x7c\xff\x26\x60\x30\xd0\xd8\xf0\x6d\x14\xdf\xc8\x60\x6d\x64\x1c\xab\xf1\x32\x4e\x35\x68\xd4\x7c\x51\xf5\x46\xd5\x13\x17\xe2\xf2\x45\x19\xbb\x8d\xf2\xc7\xf5\x29\xca\x78\x6e\x34\x16\x51\xfd\x63\xa8\x37\xe8\xf4\x7e\xb5\x12\xa2\xc6\x46\x0d\x6a\x5a\x2b\x9c\x55\xd6\xa7\xcf\x4b\x54\x3d\x51\x06\xe9\xbf\x59\x18\xa2\x28\x07\x11\x71\xad\x74\x20\x2e\x34\xe3\xbc\x8d\xb8\x68\x5c\x5c\xb3\x76\x5a\x69\xbb\xd5\x32\x71\x93\xfd\xeb\x6e\xbb\xd5\xb4\x56\xea\xb9\x5b\x18\x64\x7c\xdc\x1c\xfc\xff\x15\x86\xd8\x4a\x5a\x6d\x2c\xaa\xe1\xa8\xb4\x56\xda\x59\x49\x5b\xad\xd4\xd3\x6a\xbb\x51\xe2\x5b\x7f\x6f\x65\xc0\x01\x00\x86\x61\xd4\xe5\xbd\xef\xbe\xfb\x58\xa3\xf7\xa8\x32\x31\x6d\x35\x7a\x6f\x25\xcf\xdd\x94\x69\xa5\x2f\x77\x5b\xee\x5f\x05\x0c\x84\x7a\xf1\xd1\x48\x6c\xb5\x9a\x37\x2a\x5f\xa3\xce\xb4\xba\x86\xd1\xca\xba\x47\xab\xed\x35\xeb\x67\xb3\x7a\xea\xc2\xb1\x63\xc7\x58\x22\x91\x00\x00\x74\x76\x76\xa2\xab\xab\x6b\x25\xc5\x23\xc3\xe8\xe8\x28\x6a\xb5\x1a\x9e\x7d\xf6\x59\x3e\x3c\x3c\xcc\xae\x5c\xb9\x12\xd5\xc7\x66\xbf\x7a\x58\x69\xb9\x56\xe6\xba\xd9\xbc\xe8\xf9\xff\x55\xc2\x40\x0d\x32\xeb\xcf\x32\x34\x5b\x4c\x6a\x86\x6c\xea\xc0\x45\xd5\xad\xc7\xe9\xf1\x71\x3a\x60\x54\x3f\xe2\xb8\x43\xb3\x81\x54\xdb\xd4\xfb\x8f\x03\x07\x0e\xb0\x9e\x9e\x1e\x74\x75\x75\xc1\x34\x4d\x24\x93\x49\x08\x21\x02\x2e\x43\xc4\x84\x10\x00\xc0\x88\xc8\xef\xa3\x10\x02\x44\x24\x7f\x99\xf7\xcb\x65\xbc\xda\x3f\x2d\x2d\x64\xb7\x70\xce\xb1\xbc\xbc\x0c\x00\xb8\x7e\xfd\x3a\x2c\xcb\xc2\x1b\x6f\xbc\xc1\xd3\xe9\x34\xab\x54\x2a\x8d\x16\xbf\x9a\x31\x91\x46\x63\x11\x85\x03\xad\x94\x69\x34\x1f\xef\xa5\x9e\x5f\x0b\x0c\xa1\x59\x68\xd2\x70\x2b\x79\x5a\x91\x16\x7a\x67\xe2\xf2\x35\xe3\xce\x51\x84\xd5\xa8\xed\xb8\xf6\x1b\xf6\x6f\xf3\xe6\xcd\x6c\xe3\xc6\x8d\xc8\xe7\xf3\xe8\xec\xec\x54\xf3\x48\x84\x66\x5e\x1c\xf3\xe2\x98\x12\x67\x90\x00\x4b\xd9\xcc\x48\xd9\xcc\x34\x6d\x32\x13\x82\x0c\x26\x60\x30\x41\x06\x04\x20\x08\x9c\x93\xb0\x39\xc1\xb6\x0c\x6e\x59\x09\x6e\x59\x86\xb0\x6b\x4c\xd8\x20\x70\xaf\x2f\xb6\xd7\xa6\xad\xf4\x95\x2b\x7f\x00\xc0\xcb\xe5\x32\xe6\xe7\xe7\xf1\xf4\xd3\x4f\x37\xe2\xa8\x8d\x42\x33\xee\xda\xa8\x9e\x28\x46\xb2\xd2\xf2\xad\xf6\xaf\x95\x3c\x77\x05\x83\x4a\x10\x71\x54\x87\x88\xc2\xad\x8a\xb3\x86\x8d\xc7\xc4\xb7\x9a\x7e\xb7\x65\x9a\xc1\x84\x0f\x7c\xe0\x03\xac\xb7\xb7\x57\xaa\x3c\xcc\xe3\xea\x12\xd1\x0d\x21\x04\x23\x90\x91\x10\x30\x4c\x9b\xa5\xdb\xac\x44\x21\x5f\x49\xf4\xe6\x2b\x46\x5f\xd6\x4a\xf4\x15\x2a\xc6\xda\x8e\x65\xa3\x3f\x5d\x63\xdd\x06\xa7\xbc\xc1\x29\xcf\x04\x72\x24\xc8\x00\x60\x50\x40\x40\x7e\x3f\x04\x60\xc3\x25\x8c\xb2\x43\x28\x3b\x8c\x17\x2b\x86\x98\x2e\xa5\x9c\x89\xc5\x94\x3d\x55\x4c\xdb\x37\x17\xd3\xce\xf8\x42\xda\x9e\x5a\x4e\xf2\xd9\x25\xd3\x29\xd9\x09\x61\x09\x82\x8d\x80\x50\xfc\x3f\x21\x04\x17\x42\xe0\xc6\x8d\x1b\xf8\xf9\xcf\x7f\xde\xea\x38\xb6\xaa\xae\xbc\x97\xf0\x5e\x08\x62\x25\xf5\xdf\x15\x0c\xba\xca\xd4\x4a\x43\xad\x76\x68\x25\xe9\x8d\x38\xf9\xdd\xf4\x21\xae\x4c\x5d\x79\xc6\x18\xe3\x9c\xf3\x0f\x7c\xe0\x03\x6c\x70\x70\x10\xb9\x5c\x4e\xe6\xf3\x09\x00\x02\x06\x13\x30\x4d\x87\xa5\xf3\x95\x44\x57\xef\xa2\xb9\x61\x75\xc9\xdc\xd9\x59\x4e\x6e\x6f\xaf\x26\x36\xa6\x6b\xac\xdf\xe0\xd4\xc5\x04\xd2\x00\x0c\x80\x00\x11\xb4\xe1\x6b\x43\x42\xf9\x21\x84\xf2\x80\x00\x12\xf0\x67\x44\xd4\x65\x11\x5c\x00\x16\x67\x28\x59\x09\x3e\xbd\x64\x3a\xa3\xf3\x19\xfb\xc2\x4c\x5b\xed\xfc\x64\xbb\x75\x61\x26\x5b\x9b\x28\x9b\xbc\x68\x33\x61\x09\x08\x9b\x88\x54\x42\x01\xe7\x9c\x2f\x2c\x2c\xe0\xed\xb7\xdf\xc6\xc5\x8b\x17\x7f\x1d\x8c\xe6\x5f\x7b\x68\x09\x06\x5d\x42\x00\x8d\x55\x25\x44\xe4\x69\x45\x0d\x89\xcb\xf7\x9e\x01\x88\xc8\xd7\xaa\x5a\x86\xbd\x7b\xf7\xb2\xf5\xeb\xd7\x63\xf5\xea\xd5\xba\x04\x30\x88\xc8\x48\xda\x94\x5d\x55\x4e\xf6\x0e\x2c\xa4\x76\x0c\xcc\xa7\x0e\xaf\x5a\x4a\xee\xce\xd6\xd8\xb0\xc1\xa9\x1b\x20\x43\xd7\x37\x05\x04\x08\x7a\xac\x9f\x58\x87\xec\x0d\xb2\x34\x4d\xf5\xed\x11\x08\x08\x42\xb9\x9a\x10\xa3\xc5\xb4\x7d\xe1\x76\xbe\xfa\xea\x78\x87\xf5\xe6\x64\xbb\x35\xb2\x90\xb6\xe7\x05\x84\x05\x97\x30\x6c\xcf\x16\xe1\x9c\x73\x3e\x3a\x3a\x8a\x0b\x17\x2e\x60\x74\x74\xb4\x55\xf5\xb7\xd9\xbb\x1e\xdf\x48\x85\x8a\xaa\xa3\x15\x1b\x40\x2d\xa7\x86\x7b\x06\x43\x94\xca\xd4\x6a\x63\xcd\x1a\x68\xc5\x00\x42\x4c\xd9\xa8\xf8\x46\xba\x7e\x4b\xfd\x34\x0c\x83\x6d\xd8\xb0\x01\x43\x43\x43\x58\xbb\x76\xad\x74\x71\x32\x49\x00\x10\x30\x33\x35\x96\x5f\x53\x34\x37\x6e\x9a\xc9\x1e\xe9\x2b\x9a\xef\x6b\xaf\x26\x76\x27\x1d\xea\x06\x60\x10\x08\x10\x02\x08\x0c\x63\xf7\x1d\xe4\x0a\x05\x3f\x0e\xde\xc8\x7a\x0f\xf2\x47\x48\x69\xa1\x23\x37\x40\x24\x94\x67\x99\x42\x0a\x91\xb9\x65\x84\x52\xd4\x8d\xf5\xd2\x85\x80\x70\xe3\x39\x27\x94\xab\x06\x1f\x9d\x69\xab\xbd\x36\xd2\x55\x79\xe1\x46\x67\xe5\xf4\x7c\xc6\x9e\xb2\x13\xa2\x02\xc0\x12\xc2\x95\x20\x9c\x73\x6e\x59\x16\x4e\x9f\x3e\x8d\x91\x91\x11\x14\x8b\xc5\x28\x04\x6c\x84\xa8\xad\xe2\x4b\x23\x24\x6f\x68\xc3\xbd\x87\xb8\xbb\x82\x81\x22\x12\xa1\x55\x82\x06\x71\x77\x53\xe6\x6e\xcb\xb5\xaa\x56\x45\xd6\xb7\x7d\xfb\x76\xb6\x73\xe7\x4e\x14\x0a\x05\x84\x24\x01\xc8\x4c\x08\x64\x07\xe7\xd3\x1b\xb7\xdc\xc9\x3c\x3c\x30\x9f\x3e\xd6\x5e\x4d\xec\x64\x02\x05\x1d\x11\x55\x47\x50\xd8\x33\x14\x46\xfc\xc8\xa0\x56\xa0\x3c\xab\x84\x25\x88\x40\xaa\x5e\x45\x8a\x48\xf1\xe2\xdd\x3c\x41\x94\x24\x24\x99\x4f\x10\x81\xd4\xfa\x21\x2c\x2b\x21\xc6\xa7\xdb\x6a\xaf\x5d\xeb\x5e\xfe\xf1\x95\xee\xf2\xaf\x16\xd2\xce\x2c\x08\x15\x21\x84\xaf\x56\x09\x21\xf8\xb5\x6b\xd7\x70\xfa\xf4\x69\xcc\xce\xce\xea\xe3\x1a\xa5\x1d\xa8\xef\x51\x79\x64\x5c\x54\x7a\x54\x3d\xcd\xea\x6e\xa5\x5d\xbd\x9e\x15\xc3\x10\x2f\xa1\x7f\x7d\xe1\xd7\xad\x8f\xd6\xd5\xff\x07\x7f\xf0\x07\x8c\x31\x26\x3d\x40\x86\x10\xc2\x48\x08\xca\x76\x95\x93\xfd\xc3\xd3\x99\xa3\xdb\x26\xb3\x9f\x68\xaf\x1a\x07\x12\x82\x72\x6e\x89\x28\x0e\xae\xd6\x28\x20\x04\x69\x71\x01\xb7\x16\x1e\x1b\xd7\xd3\xd5\xba\xfd\x3a\x7d\x5a\x0a\x38\xbd\x94\x38\x01\x91\xc0\x43\x76\x59\xbf\x5b\x36\x24\x91\x80\xb0\x11\xe2\xb9\xb0\x24\x5d\xb9\xd5\x0a\x5e\x4b\x88\xb1\xf1\xbc\xf5\xcc\xbb\xab\x97\x7e\x70\xa3\xab\xf2\x76\xc5\xe0\x45\x10\x2a\x00\x6c\x8f\x40\xf8\xe8\xe8\x28\xce\x9c\x39\x83\x89\x89\x89\x58\xdb\x2b\x66\xdc\x11\x91\xaf\x55\x26\xda\xd0\xd6\xbb\xcb\xb0\xd2\x3a\x99\x2e\x21\xb0\xc2\x8e\xdc\x4d\x19\x59\xae\x15\x7d\xf4\xae\xc3\x91\x23\x47\xd8\xf0\xf0\x30\x52\xa9\x94\x6a\x1c\xa7\x4d\x87\x72\x83\xf3\xa9\x2d\xbb\x6e\xe7\x9e\x5c\x53\x4c\x7d\x28\x65\xd3\x20\x40\x86\xc4\x25\xe1\x21\x17\x79\xff\x02\x24\x0f\x10\x58\x20\x8c\xf0\xc2\x47\x48\x0f\x27\x51\x2f\x2c\x24\x32\x87\x6c\x09\x8f\xcd\x93\x24\x00\xd9\x5a\x9d\xa4\x89\x10\x3d\x61\x29\x00\x12\x14\xca\x12\xb6\x67\xc2\x3a\x9b\x80\x00\x27\x94\x16\xd2\xf6\xe9\xab\xdd\xcb\xdf\x7a\x77\xf5\xd2\x2f\xe6\x33\xf6\x04\x67\x50\x55\x2a\x3e\x37\x37\x87\xe7\x9e\x7b\x0e\xd3\xd3\xd3\xad\x20\x55\x33\xe4\x6b\x45\x5d\x6a\x45\x9d\x6e\x15\xc9\x9b\xb5\x13\x59\x46\x12\x84\x0c\x8d\xf4\x2c\xbd\x91\xa8\xce\x36\x02\xa0\x91\x8d\xa0\xd7\x19\x15\xdf\x12\x27\x79\xe0\x81\x07\xd8\x8e\x1d\x3b\x90\x4a\xa5\x98\x97\x6e\x02\x30\x33\x16\x2b\x6c\xb9\x93\x3d\xb4\x63\x22\xfb\x64\xf7\x92\x79\x8c\x09\xca\x43\x78\x8c\xd8\x43\xf4\x10\x47\x77\x19\xac\xc7\xa8\xe5\x82\x5a\x90\xac\x72\xf7\xba\x5f\xa5\x3c\x44\x7d\x5e\xe9\x65\xf2\xcd\x09\x59\x84\x02\xab\x01\x8a\xd1\x2c\x09\x49\x20\x58\xd8\x53\x2b\x95\x2a\x92\x2f\x39\x20\x3c\xa2\x0a\xca\x8b\x20\xd1\x6b\x5b\xf8\x7d\xac\x18\xfc\xd2\xf5\x55\x95\xef\x9e\xeb\x2b\x7d\x67\x22\x6f\x8d\x38\x24\xca\x44\xe4\x13\xc6\x95\x2b\x57\xf0\x8b\x5f\xfc\xa2\x91\xa1\x1a\x35\x7f\xfa\x5c\xde\x8d\xa1\xdb\x8a\xee\xff\x5e\xea\xad\x83\x41\xdf\xba\xd1\x08\x90\x7b\x15\xdf\x8c\x7b\xb4\x42\x00\x75\x69\xc3\xc3\xc3\x6c\xef\xde\xbd\xe8\xec\xec\x94\x12\xc1\x84\x40\x3a\x5b\x63\x85\xed\x13\x6d\x47\x77\x4e\xb4\xfd\x6e\xc7\xb2\x71\x88\x00\x53\x72\x53\xdd\xf6\xad\x37\x7e\xdd\xa0\x1b\xcb\xba\xba\x53\xaf\xf6\x84\xf3\xc5\xd8\xd8\x01\x71\x00\x81\x96\xa4\x54\xe9\xb5\x0e\x69\x59\x84\x89\xd3\xad\x9c\x34\xc2\x0b\x10\x3f\x20\x28\xa8\x04\xa6\xe5\x23\x4f\x2d\x03\x04\x6a\x4c\x4c\x8c\x75\x56\xbf\xfd\xd6\xc0\xe2\xbf\xdc\xea\xa8\x5e\xe2\x0c\x25\x00\x16\x00\xdb\x71\x1c\x7e\xf3\xe6\x4d\x9c\x3c\x79\x12\x8b\x8b\x8b\x2b\x51\x8b\xe2\x0c\xe0\x46\x08\xdd\x2a\x93\x6e\xc5\x6e\x69\xd6\x6e\xa8\xcf\x8d\x6c\x88\x56\xd5\x98\x95\x18\xbf\xad\x4a\x89\xb8\x0e\x03\x11\x6d\x3d\xf2\xc8\x23\x6c\xdd\xba\x75\x80\xbb\x9d\xdd\x20\x50\xda\x74\x28\xbf\x63\xa2\xed\xe8\xae\xdb\xb9\xcf\x77\x96\x8d\x43\x0c\x94\x06\xa2\xed\x5e\x45\xe3\x71\xdf\x15\x35\x3e\xc8\x13\x94\x54\x91\x50\xcd\xa7\xd7\xe3\xb7\x27\xd5\x2c\x85\xca\x02\xbb\x00\xe1\x38\xbd\x6c\xc4\x73\x54\x7a\xa3\xd0\x2c\x5f\xb8\x1d\x81\x5a\x42\x8c\x8f\x74\x55\xbe\x79\x6a\x70\xf1\x6b\x93\xed\xd6\x08\x08\x65\x78\x84\xb1\xb4\xb4\xc4\x2f\x5e\xbc\x88\x37\xde\x78\xe3\x5e\xdb\x81\xad\x3a\x64\xe2\xd2\x5b\x41\xfa\xa6\x61\xa5\x46\xf5\xdd\x34\xd2\xaa\x41\xb6\xd2\xc1\xc0\x9e\x3d\x7b\xd8\xee\xdd\xbb\x91\xc9\x64\x5c\x1b\x01\x48\x27\x38\x72\x43\x33\x99\xfd\x87\x6e\x74\xfc\x87\xae\x25\xe3\x18\x13\x64\x0a\x45\xb7\x07\x10\x76\x91\x42\xe3\xe0\x5e\xf0\xd5\x25\x84\xdd\x9b\x0a\x03\xd6\x54\xac\x40\x3f\xf7\x75\x77\xcd\x61\xe4\xf9\x89\x10\x5a\xab\x50\x6d\x0a\x28\x6d\xea\x52\xc7\xcb\x20\xd5\x2a\x5f\xd4\x20\x78\xf4\x6b\xd5\x3c\x5a\xc2\xb3\x77\xe2\x24\x16\x94\x36\xd5\xbe\xd6\x12\x7c\xec\x62\x6f\xf9\xcb\x6f\xac\x2d\x7e\x63\x21\xed\x8c\x7b\x9e\x29\x8b\x88\xec\xa9\xa9\x29\x7c\xf7\xbb\xdf\xfd\x75\x3a\x47\xfe\x9b\x04\xd5\x86\x68\x64\x2f\xdc\xad\x7b\xac\x15\xf5\x49\x0f\x51\xed\x85\xda\x19\x18\x18\x60\x07\x0f\x1e\x44\x77\x77\xb7\xaf\x1e\x91\x40\xae\xaf\x68\x6e\x3c\x38\x9a\xff\xc3\xb5\xf3\xa9\x4f\x26\x38\x2b\xe8\xfa\xbb\x8f\x68\x12\x72\xe9\xf1\x51\xe2\x7d\xe2\x89\x32\x6a\xa3\x0c\x6f\x04\x48\x54\x87\x61\x4a\xa6\x48\xa9\xa3\xab\x5e\xf2\x51\x08\xdf\xaa\x6f\x45\x32\xc4\xe7\x89\x97\x31\x31\x66\x4f\xdd\xb3\x80\xe0\x25\xd3\x39\xf7\x76\x7f\xe9\xef\xde\xee\x5f\xfa\x59\xd5\xe0\xf3\x9e\x57\xca\xb2\x2c\x8b\x9f\x3d\x7b\x16\x6f\xbf\xfd\x36\x6a\xb5\x5a\x94\xc1\x2c\x9f\x65\x68\x66\x83\x36\x2b\x13\x87\x5f\xef\x49\xc3\x50\x9f\x13\xda\x18\x68\x7c\x34\xd4\x09\x75\xbc\x64\x9a\x9a\x47\x1d\x63\xf9\xc7\xb4\x3a\xa1\xc5\x0b\xa5\x8e\xa8\xf2\x7a\x1a\x01\x10\x9f\xfe\xf4\xa7\xa9\xbd\xbd\x9d\x11\x91\x09\x20\x9b\xb1\x58\xcf\xc1\xd1\xfc\x13\x47\xaf\x75\xfe\x9f\xdd\x4b\xc9\x63\x09\xc1\xd2\x32\x73\x50\xca\x43\x3e\x15\x73\x14\x3f\xbf\xcc\x5b\x27\x32\x09\x81\xb8\xd0\x93\x28\xc8\x12\x58\xe7\x4a\x9b\x9a\x5a\x15\xe4\xd3\xca\x29\xbf\x24\xff\x13\xa9\xd1\xc1\xc8\x79\xd4\x4a\x4a\x1c\x29\x75\xfa\xc5\xf5\xd2\x9a\xdd\xe4\x37\xab\x49\xb1\x50\x9d\x6e\x4b\x94\xb2\x69\xf5\xe0\x42\xfa\xc3\x6b\xe7\x53\x1b\x4b\x69\x67\xb4\x98\xb6\x4b\x20\x38\x8c\x31\xd1\xdf\xdf\x8f\xc1\xc1\x41\x31\x3b\x3b\x4b\x4b\x4b\x4b\x72\xae\xa2\x10\x54\xc5\x19\x1d\x07\x64\xba\x02\x41\x08\x17\x08\xd1\xf8\xa1\xd7\x4b\xca\x3b\xd3\xda\x51\xe3\x43\x43\xa0\xa6\x49\x09\xd1\x8a\xbb\x2b\x2a\xc4\x95\x6d\xe6\x89\x68\xc6\x15\xa2\xf2\xf0\x47\x1f\x7d\x94\x0d\x0e\x0e\x32\x00\x06\x11\x99\x8c\x23\xb7\x61\x36\xbd\xf7\x7d\xd7\x0b\x7f\xd6\x55\x36\x8e\x42\x90\x21\x39\xbf\xbf\xc4\xa5\xa8\x38\x01\xe9\x7b\x06\x25\x02\x35\x26\xd0\x15\x14\xa3\x14\x14\xd2\xf1\x65\x25\x61\xe3\xd5\x2b\xef\x63\xa1\xa6\x77\xf8\x7d\x51\xea\x95\xdc\x3f\xbc\x1d\xdc\xeb\x49\x90\x5f\x22\xb5\x1a\x27\x71\x42\x4f\x53\x7a\x11\xfa\x85\x16\x17\x6e\xa3\x71\x5c\x50\xa7\xfc\x2f\x60\x33\x31\x75\xb1\xb7\xfc\xff\x9e\xdc\x50\xfc\x4a\xc9\xb4\xa7\x88\xa8\x02\xc0\xe2\x9c\xf3\xe7\x9e\x7b\x0e\x57\xaf\x5e\x8d\xe3\xe4\xad\x78\x1e\xe3\xb4\x8e\xa8\xb8\xa6\xf8\x12\xd3\x4e\xa3\xbe\x35\x5d\x98\x6b\xc5\xbd\xd5\x4a\x58\x89\x71\x54\x17\xb7\x7d\xfb\x76\x76\xff\xfd\xf7\x23\x93\xc9\x30\x6f\x8b\x45\x36\x53\x63\xdd\x87\x6e\xe4\xff\xbb\xed\x93\x6d\x27\x92\x0e\xeb\xf3\xc4\x7b\x9d\x3f\xde\xd7\xa1\x01\x8f\x43\x7a\x79\xbc\x77\x20\x40\x86\x10\x05\x21\xac\xcb\xfb\xb9\x14\xb5\x29\xb0\x21\x84\xf7\xae\xaa\x4b\x52\x0c\xa8\x6a\x8a\x6b\x04\xa8\x9c\xd8\xaf\x3e\x52\x07\xaa\x57\x86\xfc\x35\x90\x28\x3d\x29\xaa\x0a\xe8\x7d\x55\xba\xd8\xb0\x8a\xb0\x9a\xa8\xd6\x29\x20\xec\xe9\xb6\xda\xf3\xaf\x0c\x2d\xfc\xf5\x48\x57\xe5\xb4\xa0\xc0\x1b\x75\xe9\xd2\x25\x3c\xff\xfc\xf3\xad\xe0\xca\xdd\xd8\x96\xcd\xde\xef\xb6\x1d\x3f\x24\x94\x42\xaa\x08\x92\xcf\xb2\x22\x55\x20\xeb\x2a\x90\x2c\xaf\x8a\x39\x55\x55\xd2\x89\x89\xb4\xb4\x28\xf5\xca\x2f\x73\xf4\xe8\x51\x76\xff\xfd\xf7\x23\x99\x4c\x1a\x00\x52\x04\xca\x0f\x2c\xa4\x76\x7d\xe4\xc2\xaa\xff\xb4\x71\x26\xf3\xef\x0d\xce\xf2\xe1\x1d\x3f\x04\x90\x8b\xf4\x42\x9d\x76\x92\x84\xa0\x2c\x57\xf9\x3d\xf1\xd2\x7d\x5e\x18\x70\x74\x5d\xcd\x51\x51\x48\xad\xc7\xd5\x98\x02\x45\x25\xd8\x62\x11\x56\x5e\x02\xa9\xa3\x72\x7b\x2f\x4e\x4a\x0f\x0a\xfa\x1e\x96\x0c\x32\x26\xd0\xce\xdc\x6e\x0a\x4f\x78\x49\x09\xa4\x2e\xc9\xd5\x4b\x43\xf2\xea\xf0\x9a\xf4\x1f\x54\x27\x83\xde\x8e\x9b\xdf\x27\x12\x96\xad\x19\x1b\x37\x4d\x67\x3e\x6c\xda\xac\x32\x99\xb7\x46\x1c\x06\x1b\x80\xb3\x6a\xd5\x2a\x7e\xea\xd4\x29\xe1\x37\x1f\x9e\x67\xf5\xb9\x51\x9a\x7c\xe6\x4d\xca\x44\xe1\xcd\x4a\xdb\x51\x03\x4b\xa0\x1e\xf1\x55\x3d\x4d\xd7\xc3\xa2\x2a\x55\x45\x8f\x2e\xb1\x65\x9a\x1a\xaf\xea\x77\x6a\x5d\x50\xde\x05\x00\x3c\xf6\xd8\x63\x6c\xe3\xc6\x8d\x4c\x08\x91\x24\xa2\x8c\xc1\x59\xe1\x81\x9b\xf9\x4f\x7d\xf0\x6a\xe7\xff\xd5\x51\x49\xec\x87\x00\xf3\xf5\x6d\x0f\xa1\xbd\x47\x2f\x8e\x94\xc9\xf7\x90\x4e\x61\x89\x44\xaa\x02\x1e\xfc\xba\x45\xa5\x8f\x1e\x5e\xe9\xa0\x1e\x7f\xff\x90\xa4\x16\x52\xe3\x55\x0c\xf2\x3a\x43\x2e\x62\x09\x06\xce\x19\x1c\x4e\x82\x3b\x0c\x36\x67\xc2\x11\x04\x87\x33\xb9\xd9\x03\xbe\x39\xad\x34\x00\xd9\x03\x77\x64\x02\x76\x4f\x1e\x0c\x02\x14\xea\x8b\xa4\x50\x85\x3c\xfd\xda\x7d\x75\x4d\x99\x6d\x9f\x38\x28\x20\x50\x3f\xf8\xeb\x19\x32\x3f\x49\xfe\x01\x06\xd6\xb6\xa6\x68\x1e\x5d\x53\x4c\xf5\xcf\xb4\xd5\xde\x5d\x4a\xf1\xa2\x10\x82\xef\xdd\xbb\x57\xbc\xf5\xd6\x5b\xba\xfe\xae\xe3\x43\x2b\xb8\xa2\x3f\xab\x33\xa8\x96\x51\x19\xb8\x6a\x8f\xe8\x65\xa2\xca\xab\x82\x20\x74\x0d\x4d\x9c\x87\xa0\x91\xc7\xa7\x99\x2a\xa5\xe7\xd1\x7f\x63\xc3\xef\xfe\xee\xef\x32\x6f\xb5\xd9\x00\x90\xcd\x56\x59\xdf\x07\xae\x15\xfe\x70\xcb\x9d\xec\x09\x26\x28\x0b\x28\xb8\xec\x4d\x94\xbf\x3d\x22\xa4\xba\xc0\x1f\x02\x75\x74\xfd\x7f\xea\xbe\x23\x45\xdd\x72\xab\x0c\xf8\x33\xfc\x06\x11\xec\x63\xf2\xa7\xd3\x6d\x9b\x13\xb8\x95\x70\x2a\x4b\x26\x2f\x95\x52\x76\x71\x21\xed\x14\x4b\x29\xbb\x58\x4d\xf2\xca\x72\x92\x97\xab\x06\xaf\xd8\x24\x2c\xce\xc0\x39\x09\x2e\x00\xce\x04\x31\x26\x60\x18\x9c\x0c\xd3\x21\x33\x65\xb3\x6c\xa6\x96\xc8\xb6\x55\x13\xb9\x5c\x35\x91\xef\xa8\x18\xf9\x36\x2b\x91\x4f\xdb\x94\x4e\x70\x32\x74\x9b\x23\x40\x7b\xe5\x9d\x74\xd0\xc9\x87\x27\xa4\x69\x91\x82\xfc\x14\xae\xc7\x05\x4f\x84\xcb\x50\x20\x41\x7d\x82\x13\x30\x07\x17\x52\x4f\x1c\xbd\x5a\x28\x7d\x73\xef\x9d\xbf\x24\x22\xdb\x30\x0c\x79\xc2\x4f\x86\x46\xf3\x1e\x97\xc6\x63\x9e\x9b\xe5\xb9\x1b\x57\xb0\x5f\xc6\x88\x8a\x6c\xf1\xb9\x59\x5a\xb3\x78\x3d\x8f\x4f\x78\x9f\xfb\xdc\xe7\x98\x69\x9a\x4c\x08\x91\x26\x50\xb6\xbf\x98\xda\x71\xfc\x72\xe7\x7f\xec\x5e\x4a\x1e\x27\x10\x53\x0d\xc0\x30\x3f\x0d\x44\x7e\x80\xf4\xaa\x59\xe8\x67\x0c\xd4\x07\xc9\xfd\xb4\x78\xf8\x75\x29\x6a\x13\xa4\x86\x25\x60\x13\xec\x65\xd3\x29\xcf\x65\xed\xd9\x3b\x39\x6b\x62\x2a\x57\x1b\x9f\xcb\xd6\xa6\x8b\x69\x67\xb6\x6a\xf0\x45\xe1\xea\xd4\xf2\xcf\x06\xd5\x9d\x6a\x83\x10\x82\x7b\x6e\x63\x78\xf0\x1b\x10\xc2\x00\xdc\x93\x75\xf0\xb6\x9d\x24\x39\xb5\xe5\xaa\x89\x42\xa1\x6c\x74\xf7\x96\xcc\xbe\x9e\xa5\x64\x5f\xd7\x52\xb2\x3b\x57\x4d\xe4\x93\x9c\xcc\xc0\x08\xaf\x37\x94\x75\x39\xe1\xa1\xb9\x3f\x5e\x8a\x5d\x80\x28\xf5\x0c\xde\xe8\x09\xa5\x56\x28\xed\x81\x08\x8b\x29\x7b\xec\x85\x4d\xf3\x3f\xf5\xfa\xcb\x84\x10\x6c\xd7\xae\x5d\x38\x7b\xf6\x6c\x94\xbe\xdf\xc8\xe0\xd5\xf3\x46\xc5\x35\x33\x94\x9b\x19\xd6\x51\x0c\xda\x0f\x86\x1e\x11\x53\xe9\x4a\xc2\xdd\x94\x01\x00\xbe\x75\xeb\x56\x76\xf8\xf0\x61\x98\xa6\x69\x00\x30\x19\x28\x3f\x3c\x9d\x39\xf8\xc1\x2b\x9d\xff\x47\x9b\xc5\xb6\x05\x06\x73\xd8\x83\x04\xef\x59\x25\x0e\x40\x51\x9d\xb4\xf4\xc0\x66\x0d\x71\x3a\xe5\x39\x90\x14\xee\xaa\xb4\x8b\x26\x55\x83\x97\xe7\xb2\xf6\xf4\x58\xa1\x32\x3a\xd6\x51\x1d\x99\x6d\xb3\x27\x96\x0d\x67\xc6\x61\x28\xc3\x5d\xcd\xad\x28\x7f\x01\x31\x20\x7c\xcc\xd3\x23\x04\x85\xcb\xbb\x48\x04\x28\xa7\xf4\x14\x82\xb0\x18\x4f\xcf\x65\x85\x39\x97\xb5\xb3\xd7\xbb\x2b\x69\xe2\xc8\xa5\x1c\xd6\x51\x58\x36\x7a\xd7\x14\xcd\x75\x6b\xe7\xd2\x1b\x7a\x4a\xc9\xbe\x6c\x2d\x91\x63\x52\x8d\xf4\x17\x3e\x84\x07\x43\xb0\x4d\x83\x84\x0b\x8f\xf0\xb6\x7e\x00\x81\xa6\xe5\x8f\x89\x97\xc7\xd7\xe3\xc8\x23\x30\xa1\x48\x0e\x21\x50\x33\x44\xf9\xc5\x4d\xf3\x5f\xbf\x93\xab\x4d\x7b\x17\x2b\xa8\x70\x01\xf5\xf8\x10\xe5\x85\x6a\x25\x34\xd2\x32\xa2\x08\x4b\xad\x3f\xaa\x9d\x48\xef\xa6\x11\x91\xb9\x99\xca\xd4\xcc\x75\x16\xeb\xd2\xd2\xca\x86\xea\x3c\x74\xe8\x10\xdb\xbd\x7b\xb7\xec\x53\x9a\x04\xf2\x7b\x6e\xe5\x3e\x7a\x78\xa4\xe3\x7f\x31\x6d\xd6\xaf\xae\x21\xf8\x34\xa0\xeb\xec\xd0\x1e\xeb\x69\x21\x44\x33\x02\x08\xce\x0e\x84\x26\x3e\xe0\x9a\x95\x24\x2f\x4f\xe4\xad\xf1\xeb\x5d\xcb\x97\x6e\x76\x56\xaf\x14\xd3\xf6\xa4\xc3\x50\x04\x50\x04\x50\x06\x50\xf2\x7e\x55\x22\x88\x24\x04\x09\xab\x86\x30\x6e\xbf\xdc\x38\xa6\xfd\xc9\xd3\x7b\x26\x3c\xe2\x00\x90\x16\x0c\xd9\x0a\xe3\xd9\x89\xa4\x95\x9b\xc8\x5b\xb9\xd3\x03\xa5\x5c\x9b\x95\x58\xbd\xa6\x68\xae\x1b\x9a\xc9\x6c\x1b\x9c\x4f\xad\x6b\xaf\x26\x0a\x81\x6c\x08\x54\x1e\xff\x57\x59\x5d\x94\x6a\x90\x2a\x09\xfd\xbc\x0a\xd3\x21\x4d\xa5\x14\x04\xfe\xc6\xda\xe2\xcf\xae\x76\x2f\xbf\x05\x42\x91\x40\x15\x09\xaf\x27\x1d\x74\xc4\x6f\x84\x6b\x51\x44\x12\xe7\x22\x8d\x7a\x6e\xa5\x8c\xee\xc2\xd5\xfb\xc3\xf4\xab\x2c\x1b\x35\xdc\x0a\xd7\x8f\xea\x60\x53\x5b\xe3\xd0\xa1\x43\x6c\xd7\xae\x5d\x80\x67\x2f\x18\x0e\x75\x1d\x1a\xc9\x7f\x76\xef\xad\xf6\x3f\x4f\x08\xca\xc7\x0a\x01\x51\x8f\x58\xfe\x04\x8b\xb0\x35\xe6\x17\x51\xec\x68\xd7\x29\x13\xb8\x30\x25\x11\xd8\x09\x61\x4f\xb7\xd5\x26\x2e\xf7\x2c\xbf\x73\x6d\xd5\xf2\x3b\xc5\xb4\x7d\x9b\x13\xe6\x41\x3e\x21\x94\x84\x10\x65\x00\x65\xe9\x87\x97\x5b\x1a\x3c\xd8\x6c\x29\x05\xbc\x5f\xa9\x22\xe9\xdc\x13\x0d\xb8\xaa\xfc\x95\xd2\xc3\x80\x2b\x41\x4c\x21\x84\x09\x20\x4d\x44\x69\x00\x59\x0e\x91\x2b\xa5\x9c\xfc\xe5\xee\xe5\x77\xaf\x74\x2f\xbf\x9a\xb5\x58\xcf\xe0\x7c\x7a\x78\xcb\x9d\xec\xee\xfe\x05\x73\x5d\xda\x66\x69\x5d\x5a\xfa\xe7\x2c\xea\xc6\x54\x1b\x6b\x6d\x88\xe5\xd8\x82\x04\xae\x74\x2f\xbf\xf9\xe6\x60\xe9\xa7\x82\x30\x0e\x60\x16\x2e\x63\xb0\xbd\x03\x46\x6a\x88\x43\x5e\x3d\x2d\xaa\x9c\xfe\x1c\x55\x57\x1d\x62\x23\x1a\xdf\x9a\x4a\x24\xa9\x32\xc9\x42\x71\xdc\x7f\x25\xbe\xe4\x56\xf4\x41\x3f\x1c\x3c\x78\x30\x90\x0c\x02\x59\x83\x53\xf7\x07\xae\x75\x7c\x7e\xe7\xed\xdc\xff\x24\x8d\x67\xc9\x98\xa4\xfa\xa2\x7a\x3b\x54\xdf\x59\x30\x77\xaa\x2e\xa5\x19\x98\x14\xd8\x14\x32\x52\x9a\xcd\x96\x21\x2a\x23\x5d\x95\x2b\xe7\xd6\x94\xde\x9c\x68\xb7\x2e\xd7\x12\x62\x1a\x84\x79\x00\xf3\xf0\x08\x01\x9e\x34\xf0\x08\xc1\x96\x5b\xa4\xe5\x79\x65\x09\x2b\x11\x71\xce\x5d\xb0\x25\xd2\x4f\x4f\x4f\x63\x66\x66\x26\x6e\x28\x30\x34\x34\x04\xd3\x34\x83\x81\x63\x4c\x8e\x1f\x54\x5b\x83\x88\xa4\x64\x37\x01\x98\x92\x30\x40\xc8\x72\x21\xf2\x4b\x29\x5e\xb8\xb8\xba\x7c\xf5\x4a\x4f\xf9\xf5\xae\x72\x72\xfd\xd6\xc9\xec\xde\xad\x53\xd9\x9d\x39\x2b\x91\x57\x07\x2a\x7c\x38\xd5\x1b\x07\x45\x1a\x08\xa9\x3a\x85\x96\xe4\xdd\xf9\x98\x6e\xab\x8d\xbd\xbc\x71\xfe\x3b\x76\x42\x8c\x00\x98\xf2\xc6\xc7\xb2\x6d\x9b\xbf\xf2\xca\x2b\x12\x84\x66\x08\xdb\xcc\x79\x13\x67\x13\x44\xa5\xab\x21\x8e\xa1\xcb\xe7\x28\x22\xe1\x0a\x88\x0d\x91\xf6\xbd\x48\x87\xa8\x3a\xfc\xe7\xc3\x87\x0f\xb3\x9d\x3b\x77\xc2\x3b\xc5\x96\x4d\x39\xac\xf7\xf8\xe5\xce\x3f\xde\x32\x95\x3d\xc1\x40\xa6\x2f\xd5\xa3\xb8\x94\xf7\xa0\x22\xb6\x2e\x2f\x42\x06\xa6\xef\x37\x44\xb0\x0d\x1a\x2e\x81\x95\x4c\xa7\x78\xb9\x67\xf9\xdc\xd9\xfe\xd2\x6b\x73\x19\xfb\x86\x80\x98\x05\x30\x4b\x44\x21\x42\x10\x42\xa8\xea\x90\xca\xf9\x79\xb5\x5a\xc5\xec\xec\x6c\xe8\x4e\xa4\x6c\x36\xcb\xca\xe5\x72\xa3\xb1\x6b\x38\xee\x9b\x37\x6f\x06\x00\x5c\xbe\x7c\x99\x3f\xfe\xf8\xe3\xac\xad\xad\x0d\xf9\x7c\x1e\x9a\x21\x1e\x9c\x09\x77\x09\x24\x0b\x20\x2b\x84\xc8\x13\x51\x01\x40\x01\x40\x77\xd6\x62\x6b\xb6\x4c\x65\xf7\xef\xbc\xdd\xb6\xbf\xab\x9c\xec\x66\xf0\x6c\x8d\xa8\x10\x61\x8f\xa9\x61\xd9\x70\x4a\xdf\xdf\x39\xfd\x5f\xc7\xf3\xd5\x5f\x12\xd1\x35\x00\x13\x00\x8a\x42\x08\xeb\xfc\xf9\xf3\x78\xe5\x95\x57\xa2\x08\xa1\x19\x0e\xc5\xd9\x15\x77\x3b\x7e\x77\x55\xa6\x01\xd8\x4d\xad\x74\xbd\xe2\x15\x79\x01\x0e\x1e\x3c\xc8\xf6\xec\xd9\x03\xb8\xdb\x30\xb2\xa9\x1a\xeb\x3b\x7e\xa5\xf0\xc7\x9b\xa7\xb2\x27\x98\x20\x43\xf7\x0a\x01\x08\x6d\x97\x90\xc8\x4c\xea\x0a\x95\x42\x15\xa1\xd5\x59\x9f\x6a\x84\xef\x3a\x04\x04\x96\x4c\x5e\xbc\xd8\x5b\x7e\xfb\xec\x9a\xd2\x6b\xf3\x19\xfb\x06\x08\x53\x42\x88\x59\x22\x9a\x45\x60\x23\x94\x35\x75\x88\x03\xee\xa5\x60\xa3\xa3\xa3\x98\x99\x99\xc1\xf9\xf3\xe7\x79\x26\x93\x61\xcb\xcb\xcb\x8d\x6c\xa5\xf7\xca\x70\x90\x4c\x26\x99\xb7\x89\x0e\x07\x0e\x1c\x60\x5b\xb7\x6e\x45\x32\x99\x84\x69\x9a\x51\x76\x47\x1a\x40\xce\xfb\x2b\x08\x21\xba\x09\xd4\x9d\xa9\xb1\x81\x2d\x77\xb2\x7b\x77\x8f\xe7\x0e\x76\x96\x8d\x5e\x16\x96\xab\xf5\x36\x96\xd6\x07\x9b\x09\xfb\xa5\x8d\xf3\xdf\x3e\xd3\x5f\xfa\x1e\x08\x57\x00\x8c\xc3\x95\xa0\x95\xdb\xb7\x6f\xf3\x1f\xfc\xe0\x07\xad\x22\x7e\x2b\xe1\xbd\x20\xfc\x5d\x95\x25\xc4\x1b\xc0\x7a\x1c\x10\x3f\xc1\x51\xc4\x80\xb8\xe7\x07\x1f\x7c\x10\x7b\xf6\xec\x81\x10\xc2\x00\x90\x4d\x72\xd6\xfd\xd0\xa5\xce\x3f\xd9\x3a\x95\xfd\x23\x06\x18\xc2\xd7\x85\xd4\x45\xa8\xe0\x1c\x73\x70\xe8\x45\xe9\x01\x41\xf1\xac\x20\xbc\xe4\x03\xa5\x2e\x01\xd4\x0c\x6e\x5d\xe8\x2d\x9f\x3e\x3d\xb0\xf8\xca\x6c\xd6\xbe\x0a\xc2\x14\x80\x69\xb8\x7a\x70\x51\xda\x07\x50\xae\x6f\x11\x42\xf0\xe9\xe9\x69\xdc\xb8\x71\x03\x53\x53\x53\x18\x1b\x1b\x6b\x45\x2f\xd5\x39\x5e\xb3\x32\x51\x63\xaa\xbe\x47\x96\xd9\xb6\x6d\x1b\x1b\x1a\x1a\xc2\xe0\xe0\x20\xbc\x2b\x32\x83\x43\x52\x81\xd4\xc8\x0b\x21\x0a\x44\xd4\x0d\x81\xde\x6c\x8d\xad\xbf\xef\x76\xdb\xc1\xdd\xe3\xb9\x83\x39\x2b\x91\x0f\xf6\x7e\x69\xa7\xf2\x02\xa3\x01\x80\xc0\xb9\xbe\xa5\x97\x9f\xdf\x3c\xf7\x25\x87\xe1\x12\x80\x51\x6f\xcc\x2a\xc5\x62\xd1\xfe\xfe\xf7\xbf\x0f\x4d\x22\xb6\x0c\x03\x9a\x33\xd2\x46\x65\xf4\xd0\xac\x5c\x6c\xff\xe2\x24\x44\x33\xc4\x8f\x6a\xbc\xd5\x77\x7c\xfe\xf3\x9f\x67\xc9\x64\xd2\x10\x42\x64\x93\x9c\x75\x7f\xf0\x6a\xe1\xbf\xbf\xef\x76\xdb\xff\x48\x20\x13\x90\xb8\x1d\x5e\x14\xf2\x0d\xe5\x10\xd7\x57\xfc\xec\x8a\x6e\x24\xa4\x14\x91\x9e\x23\xb8\xe5\x38\x09\x7e\xa3\xb3\x72\xe9\x8d\x75\xc5\x17\x6f\xe7\xad\xf3\xc2\x95\x08\x53\x44\x34\x8d\x40\x35\x92\x9e\x12\x1b\x00\x5f\x5c\x5c\xc4\xbb\xef\xbe\x8b\xd3\xa7\x4f\xaf\xc8\x36\x8a\x09\xad\x8c\x9f\x9e\x06\xb4\xe6\xb9\x03\xe0\xde\x26\x3e\x3c\x3c\x8c\xd5\xab\x57\xcb\xf2\x52\xa5\x4a\x0b\x21\xb2\x44\x94\x07\xd0\x05\xa0\x17\x02\xbd\xf9\x4a\x62\xe8\xc0\xcd\xfc\xb1\xad\x53\xd9\xdd\xa6\xcd\xd2\xc1\x9e\x44\xe9\x00\x08\xd6\x1d\x6e\x75\x54\xaf\xfc\x70\xc7\xcc\xdf\x2d\x9b\xfc\x1c\x80\x6b\x70\x99\x48\xd9\x71\x1c\xfb\x8b\x5f\xfc\xe2\x3d\x83\x41\xcb\xd7\x28\x4e\xc6\xc7\x31\x67\x19\x5a\x71\x12\x31\x20\x7c\x62\x6e\xa5\x93\xb5\xe2\xd0\xdb\xdb\xcb\x1e\x7d\xf4\x51\xb9\xce\x90\x4e\x08\xea\x3e\x3c\xd2\xf1\xef\xf6\x8f\xb5\x7f\x21\xc1\x29\x5d\xef\xee\x20\xcf\x23\xd2\x40\x94\xab\x16\xb3\x4f\x3d\x81\x6a\x24\x8d\xc5\x52\xca\x99\x7f\x75\x7d\xf1\xf9\x8b\x3d\xe5\x57\x6b\x09\x3e\x06\xa2\x09\xb8\xdc\x6d\x56\x08\x51\x82\x6b\x28\x5b\x00\xb8\xe3\x38\x7c\x72\x72\x12\x4f\x3f\xfd\x34\x4f\xa5\x52\xac\x5a\xad\xca\xd6\x9a\x31\x07\x3d\xac\x98\x59\xa0\x1e\x51\x56\x32\x2f\xee\xa4\xba\x52\x82\x7f\xf0\x83\x1f\x64\x9b\x36\x6d\xf2\xef\x9f\x82\xe7\xd2\x86\xab\x46\xe5\x01\x74\x03\xe8\x65\x1c\xfd\x83\x0b\xa9\x5d\x87\xaf\x77\x7c\x68\xf5\xa2\xb9\x8e\x69\x8a\x92\x00\xb0\x64\x3a\xf3\xdf\xdb\x79\xe7\xff\xb9\x93\xab\xbd\x0a\x82\xb4\x1b\x4a\x00\xac\xe7\x9f\x7f\x1e\x97\x2e\x5d\x6a\x55\x7d\x6e\x09\x86\x98\xb2\x77\x83\xa3\x0d\x55\x77\x3d\x4f\x23\x1b\xe2\x9e\x07\x6f\x3b\x86\xe1\xad\x40\x17\xee\x1f\x6b\xff\xe4\xe1\xeb\x1d\xff\xc9\xf0\xaf\x7f\x51\xb5\x20\x65\x35\x5a\x76\xd4\xa7\x11\xf5\x72\xae\xc0\xcf\x1e\xba\xca\xc5\x8b\x77\x48\xf0\x8b\xbd\xe5\xd3\xaf\xae\x5f\x78\x66\x21\xe3\x5c\x86\x3b\x91\x13\xf0\x08\x81\x88\xca\x70\xdd\xa6\xdc\xb2\x2c\x7e\xe1\xc2\x05\xbc\xfa\xea\xab\xf7\x8c\x09\xfc\x1a\xc2\x5d\xe9\xe0\x4f\x3d\xf5\x14\xf3\xce\x90\xa8\x12\x23\x47\x44\x05\x21\x44\x1f\x80\xde\x94\xc3\xd6\xed\x1f\x6b\x7f\x68\xcf\xad\xf6\x43\x99\x1a\xcb\x4a\xad\xb4\xc6\x78\xe5\xd9\x2d\x73\x5f\xbf\xb8\xba\xfc\x63\x21\xc4\x15\x22\x1a\x17\x42\x14\x01\x58\xa3\xa3\xa3\xfc\xa7\x3f\xfd\xe9\x3d\x35\x6c\x9b\xe4\x5d\x89\x8d\xd0\x4a\xde\x50\x9a\xba\xdb\x55\xf2\x58\x86\x00\x2f\x99\x16\xa7\xff\xc6\x95\xad\x8b\x7b\xec\xb1\xc7\x58\x67\x67\x27\x83\xbb\x63\xb5\x63\x78\x3a\x73\xf8\x83\x57\x0b\x7f\x95\xe4\xac\xa0\xf6\x8e\x02\x5c\x0e\x16\x8b\x10\xf6\x89\xfb\x5b\x0e\x28\xd8\xb5\x29\xe3\xdd\x07\xf2\xa5\xc2\xcb\x1b\x17\x7e\xfc\xda\xfa\xe2\x0f\x97\x4d\x71\x11\xc0\x75\x00\x63\x70\xdd\x84\x0b\x92\x18\xaa\xd5\xaa\x73\xe1\xc2\x05\xf1\xf4\xd3\x4f\xf3\x5b\xb7\x6e\xc9\x2a\x75\xf8\xa2\xe2\xa2\xc6\x29\x64\xb9\x68\x03\xdf\x6c\x8c\xf5\xb2\x6a\xdb\x2a\xa8\x02\xf5\xfd\x8a\xcb\x4b\x00\xe8\xe2\xc5\x8b\x28\x16\x8b\xa2\xbb\xbb\x9b\xa7\x52\x29\x0e\xa0\x06\xc0\x22\xa2\xaa\x37\x0e\x65\x9e\x40\xf9\x56\x47\xf5\xd6\x78\x47\x75\x62\xd5\x92\xd9\x9b\xb5\x58\x07\x00\xfe\xd6\x60\xe9\xe7\x67\x06\x4a\x3f\x12\x84\xeb\xe4\x4a\xd6\x05\x22\xaa\x96\xcb\x65\xfe\x9d\xef\x7c\x87\x47\xb4\xfd\x6b\x81\x41\x7b\x8f\xaa\x23\xae\x9d\xb8\xf4\xba\x7a\xa4\x51\xdd\x2a\x05\xb6\xaa\xc7\xa9\x79\x71\xec\xd8\x31\x6c\xde\xbc\x59\x9e\x70\xcb\xf7\x15\xcd\xdd\x8f\x9d\x5f\xf5\x9f\x73\x56\x62\x4b\xdd\xf9\x05\xd9\xbd\xa8\xa0\xeb\x4d\x31\x79\x04\x04\xc6\x0a\xd5\x2b\x2f\x6e\x9c\xff\xd1\x9d\x5c\xed\x2c\x08\x63\x08\x4b\x05\xb9\xaa\xcc\x2f\x5d\xba\x84\x37\xde\x78\x03\xa5\x52\xa9\x15\x83\xae\xa9\xf7\x2c\x22\xae\xd5\x34\xbc\x87\xf2\x2b\xaa\x67\xd7\xae\x5d\xec\xf0\xe1\xc3\x32\x8f\x74\xd7\xe6\x10\xd8\x16\xfd\x6d\x16\x5b\x77\x78\xa4\xe3\xe1\x5c\x35\x91\xfd\xd1\x8e\x99\x2f\x5a\x86\xb8\x04\x97\x99\x4c\x03\x28\x57\x2a\x15\xfb\xcb\x5f\xfe\x72\x33\xae\xfb\x6b\x83\x41\x49\x47\x44\xb9\xa8\xb2\x2d\xa5\x45\x11\x44\x54\x41\xfd\xb9\xe5\x70\xdf\x7d\xf7\xb1\x23\x47\x8e\xc0\x23\x86\x5c\x7b\x25\xb1\xf1\x93\x67\xbb\xff\xb6\xab\x9c\x3c\xe4\x33\x06\x95\x28\x94\xf3\xc4\x81\xda\x14\x5a\x51\x80\x5c\x4e\x0a\x68\x22\xd8\xa6\x56\x63\xdc\x3e\xdf\xb7\xf4\xda\x2b\x43\x0b\x3f\xb0\x12\x62\x04\xee\x2a\xea\x04\x5c\xd7\xa0\xef\x42\x9d\x9a\x9a\xc2\xc9\x93\x27\x31\x39\x39\x89\xbb\x81\x2b\x22\x34\x9b\xac\x56\xc7\x6f\x25\xf3\x21\xeb\x5f\xb1\x6e\xdd\xde\xde\xce\xee\xbf\xff\x7e\x6c\xd9\xb2\x05\x08\xbb\x6a\x0b\x42\x88\x2e\x22\xea\x66\x1c\x39\x83\x13\xac\x84\x98\x02\x61\x02\x1e\x31\x00\xb0\x9e\x79\xe6\x19\x5c\xbb\x76\xed\x6e\xda\xbe\x67\x30\x34\x29\xa3\xd7\x8d\x88\xbc\x75\xf5\x34\xb3\x21\x5a\x31\x02\x1b\x86\xdf\xff\xfd\xdf\x67\x8c\x31\x77\x4b\x06\x67\x7d\x1f\xb9\xd0\xf5\x85\xe1\xe9\xcc\xbf\x53\x77\xad\xaa\xb6\x01\x14\x74\x97\xb7\x5c\x48\x4f\xaa\x9f\x2f\x74\x8d\x9e\x54\x93\x04\xaa\x86\x28\xbf\x3c\x34\xff\x93\x77\xfb\x96\x5e\x70\x18\x46\xe0\xfa\xc8\xa7\x85\x10\x45\x4f\x2d\xb0\x97\x97\x97\xf9\xa9\x53\xa7\xf0\xce\x3b\xef\xac\x74\xa0\x9b\x85\xa8\x41\xbf\x2b\x26\x12\x53\xbe\x55\xdd\x79\xc5\xe9\x9f\xfa\xd4\xa7\x98\xbc\xb0\x41\x08\x91\x26\x22\xb9\xb0\x97\x06\xc0\x3d\xa7\x83\x5c\x97\xb1\xce\x9c\x39\x83\xd7\x5e\x7b\xed\x6e\x6c\x80\x96\x60\x30\x4d\x93\x59\x96\x75\x2f\xe6\x67\x25\x12\x05\xc0\xca\x16\xe6\xe2\x3a\x12\xab\x52\x7c\xf6\xb3\x9f\x65\xb9\x5c\x8e\x09\x21\xb2\x0c\xd4\x75\xf0\x46\xfe\xa9\x07\x6f\xe4\xff\x57\x72\x2f\x11\x0b\x8c\x85\xba\x5b\xea\x82\x9d\x96\xe1\x7c\x41\x9c\x7a\xad\x0b\x40\x58\x4c\xd9\xf3\xbf\xd8\x3c\xf7\xed\x91\xae\xca\x49\x10\x46\x01\x8c\x7b\x8b\x6c\x25\x21\x44\x85\x88\xec\x91\x91\x11\xfc\xec\x67\x3f\x8b\x13\xaf\x2a\x0c\xad\xc0\xaa\x86\x56\xd5\xac\x56\x25\x6e\xab\xc8\x1f\x55\xa6\xd5\x10\xca\xff\xc0\x03\x0f\xb0\x7d\xfb\xf6\xc9\xcf\x02\x98\xca\xea\x37\xe0\x6e\x51\xb1\x88\xc8\xbe\x73\xe7\x8e\xb4\x1b\x5a\xad\xbf\xe5\x7e\x3d\xfc\xf0\xc3\x0c\x70\xb7\xb0\xdc\xbc\x79\x13\xb6\x6d\x37\xfb\xd8\xcb\x4a\xd4\x7d\x99\x8e\x46\xfd\x51\x55\xa6\x56\x2b\x89\xd2\xeb\x42\xe9\x8c\x31\xbc\xff\xfd\xef\xc7\xd6\xad\x5b\xe5\xe0\x16\x36\xcd\x64\xde\xff\xc8\x85\x55\xff\x39\x65\x53\xaf\x90\x4d\x4b\x17\xa9\xff\x2e\xd5\x27\xf7\x57\xd1\x9c\x02\x89\x11\xca\xe3\xa6\xdf\xc9\xd5\xc6\x9e\xdd\x32\xf7\xcd\xc9\x9c\xf5\x16\x08\xa3\x42\x88\x09\x22\x92\xf6\x82\xe5\x38\x0e\x7f\xe9\xa5\x97\xa4\x6b\x50\x47\xea\x48\x18\x62\xd2\xf5\xb8\xa8\x71\x88\x0b\x71\x63\xd6\xca\xf8\xb6\x52\x26\xae\xbf\x51\xef\x6a\x19\x3f\xbd\xbb\xbb\x1b\xc7\x8f\x1f\x47\xa1\x50\xd0\xbf\x91\xc7\x85\x10\xfc\xf6\xed\xdb\x78\xe6\x99\x67\xa0\x7c\xc7\xee\x6e\xec\x04\x00\xe0\x8c\x31\x36\x30\x30\x80\xbd\x7b\xf7\x62\xf5\xea\xd5\x50\x2e\xa3\xd6\xc7\x0c\x42\x08\x3e\x33\x33\x83\xd3\xa7\x4f\x63\x74\x74\x14\xb6\x6d\xc7\xc2\x10\x13\x5a\xb5\x5f\x62\xbf\x31\xa7\x37\xa6\xa7\x45\xe5\x0f\x95\x39\x71\xe2\x04\x83\x67\xac\xb5\x55\xd9\xba\xdf\x3a\xd3\xfb\x77\x9d\xcb\xc9\x83\xa1\xdb\xdb\x15\x6e\x0f\x11\xde\x8a\x11\xba\x4d\x22\xa4\x32\xb9\x2b\xd6\x32\xe2\x4e\xae\x36\xf6\xa3\xed\x33\xff\x34\x9f\xb1\xcf\x0a\x88\x51\x00\x13\xde\xd6\x8b\x32\x00\xbb\x58\x2c\xf2\xaf\x7f\xfd\xeb\xcd\xd4\x98\xbb\xb1\x95\x5a\x91\x9c\x2b\x8d\xbb\x97\x76\x47\x33\x04\x05\xe2\x11\x19\x1f\xf9\xc8\x47\xe4\x6d\x88\x98\x9c\x9c\xc4\xf7\xbe\xf7\xbd\xb8\x31\xbc\x2b\xdb\xe9\x63\x1f\xfb\x18\x5b\xb3\x66\x8d\x4c\x37\xb4\x3f\x59\xc6\xdf\x42\xef\xed\x1a\x56\xa5\x7c\x53\x18\x22\xe0\x6e\x36\x3e\xb1\x2a\x53\x9c\x68\x69\x69\x92\xe5\x4a\x34\x80\x6c\x82\xa3\xf7\xa1\x4b\x5d\x7f\xb6\x7d\x32\x7b\x22\x74\xfb\x75\xd8\x4e\x96\x6b\x70\xf0\x3b\xa5\x7b\x91\x94\xbc\xae\x3a\x25\x30\xd6\x51\xbd\xf2\xb3\x6d\xb3\x5f\x5d\x4c\x3b\x67\xe1\x6e\x23\x98\x82\xb7\xaf\x06\x80\xf5\xee\xbb\xef\xe2\xa5\x97\x5e\x7a\x2f\x3a\xfc\x7f\xeb\x70\x2f\x0c\xcd\xf7\x6c\x07\xbe\xc7\x50\xd7\xde\x53\x4f\x3d\xc5\xf2\xf9\xbc\x4b\x08\x02\xe9\x4c\x8d\x15\x36\xce\x64\xf6\x6f\x98\x4d\x7f\xa0\x77\xd1\xdc\x61\x08\x4a\xd7\x98\x28\x4d\xe5\xac\x0b\xd7\xba\x97\x9f\x1b\xe9\xac\xbc\x5d\x31\x79\x11\xde\x2e\x82\x4a\xa5\xc2\x1b\x78\xb8\xde\x53\x68\xd5\xcb\xd4\x54\xf7\x92\xe1\xe1\x87\x1f\x66\x43\x43\x43\x0c\x40\x1a\x02\x85\xed\x93\xd9\x8f\x3c\x74\xb9\xeb\xff\x36\x38\xe5\xf4\x85\x35\x6d\x9b\x8c\xe6\x69\x0a\x68\x55\x3f\x47\x20\x20\x30\x9e\xb7\xae\xfd\x64\xfb\xcc\x3f\x15\x53\xf6\x59\x00\x23\x44\x34\x25\x84\x98\x27\xa2\x8a\x10\xc2\x56\x76\x5d\x36\x13\xed\x2d\xc1\xd5\x42\x68\xa4\x72\xae\xc4\x7e\x68\x54\x77\x33\x9d\xb9\x99\x04\x68\x56\x6f\xb3\x76\xd4\x77\x35\xb4\x62\x2b\x30\x00\xfc\x89\x27\x9e\x60\x85\x42\x81\xc1\x3d\x04\x96\xdd\x34\x9d\xd9\x7f\x68\xa4\xe3\xcf\xba\x96\x8d\x23\x24\x90\x0d\x96\x59\xdd\x79\xe6\x84\xd2\x6c\xb6\xf6\xf2\xc9\x0d\x0b\x7f\x7d\xbd\xab\x72\x4e\xb8\x17\x30\x57\x96\x97\x97\xf9\x57\xbe\xf2\x95\x86\xea\xcf\xdd\xc0\x90\x40\xf4\x82\x9a\xfc\x93\x15\xa8\x0b\x22\x3a\xef\x66\x6a\xdc\x43\x0f\x3d\x44\x00\x92\x44\x94\xcd\x57\x13\x1b\x1f\xbe\xb8\xea\x7f\xcf\xd6\x12\x83\x61\x6f\x11\xc9\xe3\x0c\x7e\xcd\x42\x79\x0e\x21\xbf\x5f\x8e\x7c\xb5\x6a\x2a\x57\x1b\xfd\xf1\xf6\x99\x2f\x2f\xa6\x9d\x33\x44\x74\x83\x88\x26\x84\x10\x0b\x44\x54\xb1\x2c\xcb\x7e\xe9\xa5\x97\x70\xe6\xcc\x19\xd9\x77\x09\x97\xfe\x2e\x49\xb0\xd9\x24\xc6\x2d\x48\xea\x21\x2e\x9f\xda\xbe\xda\x6e\xab\x8b\x71\xea\xc2\x12\xb4\x34\x65\xd4\x20\x94\x7a\xf4\x45\xa9\xb8\x39\x56\xf3\x44\xd5\xc3\xb4\x74\x9d\x75\x01\xe1\x71\x6d\x08\xc3\x13\x4f\x3c\x41\x9e\x7d\x92\x66\xa0\xfc\x9e\x5b\xb9\x8f\xfc\xc6\x95\xce\xff\x92\xb3\x12\xbb\x98\xa0\xa4\xbc\x5a\xd1\x35\x2d\x5d\x26\xc8\x40\x66\xb6\xc6\x86\x37\xce\x66\x3e\x54\x4b\x88\xd1\xc9\x76\x6b\x4c\x40\xd4\x92\xc9\x24\x5f\xb7\x6e\x1d\x2e\x5f\xbe\x0c\xe1\x5f\x5a\xf2\xde\x61\x88\x32\x44\xb8\xf2\xc7\x22\xe2\x54\xa0\xfd\xca\x0c\xc3\x60\x4f\x3e\xf9\x24\x23\x22\x83\x88\xd2\x24\xd0\xf5\xe0\x8d\x8e\xdf\xed\xa8\x24\x76\x00\xf0\x6f\x64\x11\xd2\x0e\xf0\xfa\xed\x8f\xa2\x97\x2e\x23\x84\x80\xbf\x26\xa1\x5e\x28\x30\xc3\x35\x52\xff\x00\x00\x20\x00\x49\x44\x41\x54\xdd\x56\x1b\xff\xe9\xb6\x99\x7f\x2a\xa6\x9d\x33\x9e\x37\x69\x02\xc0\xbc\x24\x86\x9f\xfe\xf4\xa7\xb8\x7c\xf9\xb2\xda\xc7\x66\x12\x41\x1f\x03\xa6\xe5\x6b\x64\x90\x46\x95\x51\xcb\xb5\xc2\xa9\xe3\x0c\xe3\x46\xe5\x38\xe2\xe7\x24\xaa\x4d\xbd\x6e\xbd\x9c\xde\x0f\x7d\xdc\x74\xb8\xf4\xfe\xe9\x6d\x47\xc2\xd0\xd1\xd1\xc1\xe0\x1e\x68\xca\x6d\xbe\x93\x7d\xff\x91\x91\x8e\xbf\x32\x38\xf5\xaa\x37\x15\xfa\xab\x4e\x52\x85\xf6\x70\x3d\x69\xb3\xfe\x23\x23\x1d\x7f\xb5\x69\x3a\x73\x84\x40\x79\x00\x66\x4f\x4f\x0f\xf6\xed\xdb\x77\x4f\x61\x88\x2b\xa4\x02\xd7\x0c\x60\x06\x80\x1d\x38\x70\x00\x8a\x5e\x98\x5d\x3f\x9b\xde\xbd\x65\x2a\xf3\x04\x40\x41\x19\x85\x3e\x7d\xd1\xa8\xf2\x51\x12\xc1\xb6\x0d\x72\xff\x05\x46\xb8\xc0\x92\xe9\x14\x9f\xdd\x32\xf7\xf5\xd9\xac\x7d\x46\x40\xc8\xd5\xe7\x79\x00\x56\xad\x56\xb3\x7f\xf6\xb3\x9f\xe1\xf6\xed\xdb\x6a\xdf\x54\x78\x5a\x79\x67\x2b\xc8\xa3\x8f\x07\x9a\xc4\xab\xe9\x3a\x22\x01\xe1\x09\x8a\xfb\x8d\x83\x4b\xcf\x13\x57\x47\xa3\x72\x7a\xf9\x46\x46\xaa\xcc\xab\xbf\xc7\xf6\xfd\x73\x9f\xfb\x9c\x1c\x97\x74\xd6\x62\x7d\x0f\xde\xc8\xff\x89\xe9\xb0\x5e\x39\xff\x3e\xbb\x16\x52\x42\x90\xaf\x3a\x4b\x4d\x22\xe9\x50\xef\x91\xeb\x1d\x7f\x96\xb2\xa9\x1b\xee\x26\x45\x63\xfb\xf6\xed\xd0\xdb\x7a\x2f\x30\xe8\xc4\xd0\x0a\x70\x7a\xe0\x00\xf8\xee\xdd\xbb\xe1\xf9\xad\xb3\x69\x9b\xf5\x1d\x1e\xe9\xf8\xe3\x24\xa7\x82\x34\x90\xfd\xb3\xc3\xf0\x54\x22\x6d\x20\xe4\x05\x5a\x80\xe2\x89\x55\x8c\xed\x8a\xc1\xcb\xcf\x6e\x9e\xfd\xfa\x44\xbb\xf5\x3a\x08\xa3\x44\x34\x0e\xef\xd8\x62\xb5\x5a\xb5\xff\xf1\x1f\xff\x91\x8f\x8f\x8f\x37\x93\x6c\xcd\x90\x2c\x6a\x30\x5b\x41\x9a\xa8\xe7\xa8\xba\xa3\x10\x28\x8e\x19\xc5\x11\x64\xd4\x7c\xe9\x79\x1a\x11\x76\xa3\x72\x51\xa1\x11\x41\xea\xd2\x47\xad\xcf\x87\x61\x78\x78\x98\x25\x93\x49\x9f\x59\x0e\xdf\xc9\x1e\xed\x2c\x1b\x07\xfc\xdb\x06\xa1\xfe\x06\xaf\xaa\xea\x2c\x95\xa9\xc2\xb2\x71\x60\xd3\x4c\xf6\x08\xdc\x33\x1e\x46\x26\x93\xb9\xa7\x30\x34\xe3\x9c\x51\xa1\x2e\xcf\xe3\x8f\x3f\x2e\x81\x37\x20\x90\xbb\x6f\xa2\xed\x43\x3d\x4b\x72\x6b\x86\xb4\x0f\xc2\xc8\x2e\x10\x56\xf4\xd4\x78\xdd\xf7\xc5\x49\xd8\xaf\xae\x2f\xfe\xe8\xda\x2a\x77\xd1\x4d\x08\x31\xe1\xed\xb6\xac\xd4\x6a\x35\xfb\x4b\x5f\xfa\x52\x23\x95\xa8\x95\xb0\xd2\xfc\xad\xd4\xf3\x5e\x10\x51\x25\xec\x38\x35\x2f\x0a\xe9\xa3\x54\xac\xb8\x3e\xa9\xc4\xa3\xb7\x15\x17\xa2\xf0\xa5\x21\xa3\x04\xc0\x86\x86\x86\x40\x44\x8c\x88\x4c\x02\xf2\x43\x33\xe9\xdf\x20\xc0\x84\xa7\x26\x09\x6f\x9d\x29\x50\x97\x83\x25\x57\x19\x84\xb7\x58\x4b\x02\xc6\xd0\x4c\xfa\x37\x48\x20\x0f\xef\x1e\xa8\x87\x1e\x7a\xe8\x9e\xc1\x10\xa7\xfb\xaa\x19\xa3\xd4\xa4\x50\xc5\xfd\xfd\xfd\x80\x77\x63\x46\x7b\x35\xd1\xbf\xe7\x56\xee\xf3\xc4\xc9\x84\xa2\xee\x28\xa0\xf9\x4f\xaa\x15\x14\x95\xc7\x25\x18\x81\x0b\xab\x97\x5e\x3b\xbb\xa6\xf4\x2c\x08\x23\x70\xd7\x19\xe6\x01\xf8\x36\x83\xd6\x9f\x38\xfd\x5e\xe7\xbc\x51\xef\xad\xd4\xa5\xff\xb6\xa2\x42\x35\xfb\x8d\x93\x0a\x51\x36\x82\x9a\x16\x57\x46\x6f\x5f\x27\x98\xa8\xfc\x51\xed\xc4\x8d\x43\x54\x88\x85\xa1\xbb\xbb\x5b\x22\xb9\x69\x38\x94\x2f\x54\x8c\x61\x80\x82\x03\x60\x52\x3b\x08\xab\x0b\x61\xab\x5f\xc6\x11\xa1\xab\x9c\xdc\x96\xb2\x59\x01\x1e\x41\x6c\xda\xb4\x49\x87\xe5\xae\x61\x88\xd2\x67\x9b\xa9\x4a\xa1\x46\x3f\xf6\xb1\x8f\xc9\x41\x30\x49\x20\xbf\x6f\xac\xfd\xb7\xda\xab\x89\x2d\x3e\x44\x1e\xcb\xf7\x17\xa5\xe5\x31\x36\xcf\x78\x72\x6d\x67\x65\xdf\x92\x80\x7b\xe3\x83\xc7\x0e\x26\xda\xad\x6b\x2f\x6d\x5c\xf8\x96\x93\xc0\x35\x78\xe7\x77\xe5\x56\x8c\x57\x5f\x7d\x15\x9e\x9a\xa4\xf7\xb7\x95\x49\x8f\xd3\x23\x7d\xd8\x62\xde\xd5\x31\x8b\x12\xc1\x6a\xfd\x51\x08\x1c\x55\x56\x17\xe9\x71\x84\x1a\xd7\x8e\x2e\x21\xe3\xec\x13\x15\x16\x7d\xde\xa3\xfa\x1c\xd5\x56\x14\xae\x44\xf5\xc7\x87\x21\x97\xcb\xc9\xfc\x86\xc1\x29\x9b\x74\x58\xae\x91\xdb\x52\x25\x04\x29\x45\xd4\x78\xd3\xa6\x42\x82\x23\x87\xf0\xbd\x62\xf7\x04\x06\x43\xc9\x04\x2d\xb1\x91\x38\xf4\xf3\xae\x5e\xbd\x5a\x1e\x38\xc9\x76\x96\x93\x1b\xb6\x4d\x65\x3f\x4d\x82\x98\x0a\x85\xf4\x1e\xa9\x1a\xa1\x7f\x5c\x57\xb1\x1d\x42\x9a\x92\x00\x96\x93\xbc\xf8\xd2\xa6\xf9\x6f\x2f\x1b\xce\x35\x02\xc9\xc3\xec\x65\x00\xd6\xf9\xf3\xe7\x71\xe1\xc2\x85\xc8\x3e\x21\x1e\xf1\x9b\xa5\xe9\xf1\x8d\xe2\x5a\xd1\xa7\xe3\xca\x34\xaa\x9f\x45\x3c\xab\x04\x14\x25\xb1\xf5\x74\x9d\xc8\xa3\x10\x20\x2e\x5f\x1c\xf1\x34\x2b\x13\x89\x3b\xfd\xfd\xfd\x72\x3b\x06\x03\xc0\x1c\x26\x98\xc3\x84\x9b\x57\x71\x0a\xab\x3b\x36\xc2\x3e\xd4\x40\xd5\xf6\x4d\x4f\xf2\xd4\x73\xaf\x4e\x4f\xfa\xdc\x13\x18\xe2\xb8\xa0\xda\x40\x6c\xf8\xc4\x27\x3e\xc1\x18\x63\xee\xcd\x72\x02\xf9\x3d\xe3\x6d\x9f\xca\xd4\xd8\x3a\x55\x53\xf2\xed\x04\xd5\x03\xec\x05\xe9\x6f\x56\x75\x47\x29\x31\x04\x09\xfe\xda\xba\xe2\x4f\xc6\xf3\xd6\x5b\x44\x34\x06\xf7\xb8\x67\x09\x80\x3d\x32\x32\x82\x5f\xfe\xf2\x97\x5c\x08\x11\x35\xe1\x71\x6a\x4b\x33\xd5\xa8\x91\x3a\xa4\x97\x8b\xab\x27\xee\xbd\x51\x99\x46\xf6\x8f\x4e\x40\x71\xed\x70\xd4\x97\x8f\x2a\xd3\x28\x9f\x5e\xa6\x15\x35\x4b\xef\x4b\x1d\x0c\x8a\x04\x07\x00\xd4\x98\xb0\xe7\x33\xf6\x04\xe0\x6e\xc9\x51\xed\x6a\x89\x08\x2a\x9a\xf8\x0b\x2b\x14\x10\xca\x42\xda\x9e\xaa\x1a\xc2\x82\x9f\x16\x62\xa5\xef\x09\x06\x7d\xf2\x75\x71\x12\xab\xf7\x0e\x0c\x0c\x30\x79\x90\x5d\x08\x91\x5d\x55\x4e\x6e\xdc\x7c\x27\xfb\x71\xff\x83\x20\xca\x42\x9c\xe2\x54\xf2\x09\x43\x2a\x4d\x44\xca\x57\x7a\x14\x17\xdb\x48\x57\xe5\xdc\xb9\x35\x4b\xcf\x82\x30\x26\x84\x98\xf6\xb6\x20\x5b\x73\x73\x73\xdc\xdb\x01\x19\x05\x70\x1c\xe2\x34\xd2\xc5\xf5\x01\xd2\x11\xa4\x55\x64\x8f\x0a\x2b\x21\x0c\xf9\xac\xeb\xe2\x71\xaa\x53\x2b\xc4\xdc\xac\x4c\xd4\x7b\x2b\xaa\x62\x5c\xbb\x91\x75\x55\xab\x55\x08\x21\xb8\x10\xc2\x16\x04\x6b\xb4\xb3\x72\x8e\x43\x70\x5f\x29\x12\x61\x02\x70\x55\x68\xe9\x89\x17\x5a\x9c\xc0\x8d\xae\xca\xdb\x36\x13\x15\xaf\x3f\x5c\x6e\x44\xbc\x17\x30\xa8\x08\xb5\x12\x75\x83\xef\xdd\xbb\x57\x96\x37\x09\x94\xdb\x35\xde\xf6\xb1\x4c\x8d\xf5\x4b\x37\xab\xee\x29\xd2\x5e\x41\x42\xd9\xbe\xa1\xe4\x11\x9e\xaa\xf4\xab\x0d\x0b\x4f\xdb\x09\x31\x0a\x60\x8a\x88\x8a\xde\x29\x37\xfd\x56\xb8\xb8\xbe\x36\x53\xf5\x5a\x55\x91\x5a\xe1\xda\x71\x6d\xc4\xc5\xeb\x2a\x46\xa3\xdf\x28\xf1\x1e\x55\x3f\x57\xfe\xa2\xfa\xac\xbf\xeb\x76\x47\xdc\xdc\x37\xb2\x3d\xa2\xfa\x1b\x09\x83\x65\x59\xf0\x6e\x37\xb4\x41\x28\x5f\xee\x29\x9f\x2a\xa5\x9c\x29\xd7\x5e\x74\x59\x63\x9d\xd2\xac\x10\x85\x1f\x05\xa0\x6c\xf2\xe9\x0b\xbd\xe5\x57\xe1\x7d\x2a\x58\x5e\x19\x7a\xaf\x60\x68\xc4\xed\x1a\xaa\x4c\xaa\x67\x29\x57\x4d\xf4\x6f\x9d\xca\x7e\x3c\x64\x3b\x28\x90\x84\x9c\x4d\xbe\x7b\xd5\x1b\x02\x6d\x75\x5a\x90\xe0\x6f\x0d\x2c\x3e\x33\x95\xab\x9d\x81\x72\xd2\x0d\x00\x7f\xf9\xe5\x97\x71\xeb\xd6\xad\x46\xfd\x6a\xc6\xcd\x57\xc2\xdd\x81\x16\xd4\xc6\x15\xe6\xd3\xf3\x46\x49\xb2\x28\x1d\xb8\x19\x93\x8a\x83\x2b\x8a\x69\xc4\xd5\xdd\xac\xed\x58\x84\x8f\x68\x23\x14\x37\x31\x31\x01\x4f\xbd\xb5\x84\x10\xa5\x62\xca\x19\x7d\x75\x7d\xf1\xfb\x4e\x42\x58\xd2\xdb\x24\xfd\xee\xee\x99\xfa\x40\x6b\x08\xce\xcd\x13\x1c\x26\xac\x57\xd7\x17\x9f\x5e\x4c\x39\xa3\x70\xef\xd7\xb5\x88\x88\x5f\xba\x74\x29\xb6\xed\x95\xc2\xd0\x48\x2c\xc7\xea\xe2\xc7\x8e\x1d\x93\xa7\xab\x4c\x08\xe4\xb6\x4f\x66\x1f\x4a\xdb\x6c\xd0\x5f\x78\x26\xf8\x00\x85\x3c\x08\x8a\xba\x24\xd5\xa8\xd0\x57\x7d\x48\x60\xaa\xdd\x1a\x39\xdb\xbf\xf4\x9c\x80\x90\xd7\xc4\x94\x84\x10\xf6\xcd\x9b\x37\x79\x93\x53\x6e\x51\xfd\xd6\x91\xa5\x11\xa2\xc5\xa9\x00\xad\x22\x7b\xd4\x44\x34\xea\x5f\xab\xf9\xd5\xd0\x68\xa2\xd5\xba\x5b\x91\x80\x32\x3e\x0a\x56\x7d\x5c\xa2\xb8\x6c\xb3\xba\xfd\xf0\xdc\x73\xcf\xc9\x6b\x3f\x2d\x00\x25\x10\xa6\x2f\xac\x5e\x7a\xe9\xd4\x60\xe9\x67\x36\x13\xb6\xba\x40\x27\xef\xee\x55\xbf\x62\xe4\x7d\xec\xd1\x3e\xd3\xbf\xf8\x8b\xf3\x7d\xa5\xe7\x40\x98\x96\x67\x5d\x38\xe7\xfc\xea\xd5\xab\x51\xb0\xde\x15\x0c\x86\x96\x21\x8e\xc2\x42\x95\x0e\x0f\x0f\xfb\x57\x99\x64\x2c\xd6\xbb\x7d\xaa\xed\xe3\xf2\x9b\x6e\x92\xda\x29\xc2\x97\xac\x3f\x04\x9f\x77\x72\x15\x27\x4e\xb0\x5f\x5f\xb7\xf8\xa3\x65\xc3\x19\x21\xa2\x29\x78\xf7\xfe\x54\x2a\x15\xfe\xda\x6b\xaf\x45\x01\xa1\xeb\x84\x71\xaa\x4f\x14\x1c\x51\x36\x47\x1c\xe7\x8b\x1b\xd0\x66\xd2\x2a\x4a\x1a\xb4\xda\x1f\xde\x20\x3e\xaa\x8d\x28\x7b\x2a\x2e\x4e\xaf\x4f\xcf\xa7\x97\x69\xd4\x4f\x3d\xd4\xc1\x90\x48\x24\xd8\xf4\xf4\x34\xba\xbb\xbb\x6d\xef\x28\xef\xb4\xc3\x30\xfa\xab\xf5\x0b\xdf\x59\x32\x9d\xf2\xfd\x37\xdb\x3f\x94\xaf\x26\xba\x7c\x4e\x49\xf0\x71\x02\x10\x28\x99\xce\xfc\xeb\xeb\x8a\x3f\x3b\xbf\x66\xe9\xe7\x0e\x73\x6f\x0b\x24\xa2\x12\x00\xfb\xf6\xed\xdb\xb8\x79\xf3\xe6\x3d\x83\xc1\x68\x94\x18\x03\xa8\x3c\xdd\x64\x08\x21\xb2\x43\x33\x99\x03\x1d\xcb\xc6\x8e\x90\xae\x47\xd1\xe7\xa2\x21\x8d\x68\xef\xcb\xa0\xd2\xdd\x26\x37\x77\x8d\x76\x56\xce\x5d\xef\x5a\x7e\xdd\x23\x86\x79\x00\x15\x21\x84\xfd\xf6\xdb\x6f\x63\x66\x66\xa6\x11\x72\xc5\x01\x1c\x47\x40\x51\x65\xd0\xe0\x3d\xaa\x6e\x44\xe4\xd1\x43\x23\x82\x8d\xeb\x0f\x50\xdf\xf7\xa8\xc9\xd6\xdf\xe5\x73\x9c\x64\x8f\x83\x41\x8d\x8b\x1a\xb7\x28\xfc\x68\xaa\x26\xa9\xf5\x38\x8e\x83\x17\x5e\x78\x01\x9f\xfc\xe4\x27\x79\x22\x91\xa8\xc0\xbd\x2e\x74\x02\x8c\xf0\x76\x7f\xc9\x1e\xe9\x5a\xbe\xb0\xf9\x4e\xf6\xc0\x86\xb9\xf4\xb6\x7c\xc5\x28\x24\x38\x19\x0e\x09\xbb\x98\xb6\xe7\x6f\x74\x55\x2e\x5c\xea\x29\xbf\x59\x4c\x3b\x97\xbd\xcd\x9c\xfe\x5d\xb2\xb5\x5a\x8d\xbf\xf5\xd6\x5b\xf7\x14\x06\xfd\x1b\x73\x8d\xb8\x20\x03\xdc\xfd\xec\x80\xfb\x9d\x02\xc6\x91\xdf\x7a\x27\xfb\x48\x42\x90\x09\xf2\x36\x64\x41\xdd\x5f\xab\x7f\xf7\x98\xfc\x2d\x1a\xc1\x71\x6a\x97\x48\x6a\x09\x51\x39\x35\xb8\xf8\x0c\x67\x98\xf0\xce\x42\x97\x01\xd8\x33\x33\x33\x72\x2b\x77\xa3\xc9\xd4\x07\xa5\x91\x8e\xab\x0e\x4a\xa3\x10\x35\xb9\xfa\x60\x37\x23\x26\xbd\x7c\x54\x3f\x1b\x95\x69\xd6\x2f\xbd\xee\x56\x55\xa5\xa8\xf4\xa8\x7a\xf4\xf4\xa8\xf2\x2d\x49\x67\x6f\x1e\xd9\xbe\x7d\xfb\x6c\x22\x2a\x7b\xd7\x87\xda\x20\x58\xc5\x8c\x33\x7f\x6a\xed\xe2\x8d\xd3\x83\x8b\x85\x94\xcd\x3a\x12\x9c\x0c\x87\x09\xbb\x6a\xf0\x05\xc7\xfd\x2e\xc7\x34\x10\xba\x7f\xb7\x2c\x84\xe0\x17\x2e\x5c\xd0\xdd\xba\xef\x19\x06\xfd\x1b\x73\x51\xc8\x14\x9a\xb0\x42\xa1\x00\xb8\xd7\x96\xa4\xbb\x97\xcc\x0d\x7d\x45\xf3\x90\x5f\x03\x05\xab\xce\xfe\x6a\xbc\xf0\x37\xb2\x2a\x21\x70\x2a\x4b\x5d\x71\xa4\xab\xf2\xf6\x78\x47\xf5\x0c\x3c\xaf\x12\xbc\x1d\xac\xdf\xfe\xf6\xb7\x75\xc0\xe2\x00\x6c\xc4\x15\xa2\x06\x41\xcd\xa7\xa7\x45\x71\xee\x46\xc8\xd6\x90\x43\xc6\x94\x8b\x23\x86\x66\x48\x1c\x15\x56\x5a\xa6\x55\x62\xbb\xdb\xba\x22\xeb\x79\xe3\x8d\x37\xb8\xe3\x38\xec\x81\x07\x1e\xb0\xbc\x3c\x36\xdc\x53\x70\xf3\x20\x4c\x38\x84\x5c\xd9\xe4\xf2\x82\x03\x99\x56\x06\x82\x0f\xd5\xc0\xfb\x42\xd3\xc5\x8b\x17\x71\xf2\xe4\xc9\x95\x30\x92\x96\x60\x50\x55\xa6\x46\x93\x07\x00\xfc\x91\x47\x1e\x91\x04\x62\x10\x28\x37\x3c\x9d\xfd\x80\xe9\x50\x21\xfc\x2d\x2a\x65\x65\x11\x08\x56\xaa\x7d\x1f\x9a\xb2\x40\xe1\x85\x1a\xe3\x95\x33\xfd\x25\x29\x1d\xfc\x53\x6f\xd7\xaf\x5f\xbf\x6b\xc0\xd0\x98\x80\x9a\x49\x91\x56\x38\x6b\x23\xb5\x41\xb5\x01\x1a\xd5\x19\x15\xd7\x48\x52\xaf\x44\x37\x8e\xaa\xaf\x99\x5d\xa4\x96\x69\xd4\x4e\x5c\x99\xa6\xda\xc6\x5b\x6f\xbd\x05\xc6\x18\xf6\xef\xdf\x6f\xcb\x8f\xce\xc0\x45\xfa\x79\x00\x92\x18\x64\x79\x1b\x2e\x01\x54\xe4\xad\x1f\xb6\x6d\xdb\x97\x2f\x5f\x96\x47\x83\xef\x39\x0c\x71\x1f\x5d\x94\x15\x85\x2a\xe8\xeb\xeb\x93\xef\x69\xd3\xa1\xc2\xc6\xe9\xf4\x71\x08\x62\xee\xe7\x70\x55\x35\x48\x79\x56\xfe\xfb\xdf\x76\x90\x5e\x36\xef\x1b\xce\x63\x85\xea\x3b\x13\xf9\xea\x79\x04\xab\xd1\x16\x00\x7e\xfa\xf4\x69\xbd\x5f\xf7\x62\x10\x5a\xe1\xca\x51\x63\xa0\xe7\x6d\xa4\x86\xe9\xe5\x5a\xe9\x47\x14\x11\x45\xf5\xaf\x91\xba\xd5\xa8\x4f\x8d\x88\x55\xcf\x13\xd5\x4e\x54\xfd\x7a\x99\x96\x60\x38\x75\xea\x14\x9f\x9e\x9e\x66\x47\x8f\x1e\xb5\x33\x99\x8c\xbc\x48\xa0\x02\xf8\x1f\x9d\x94\xaa\xb4\xdc\x8d\xc0\x89\xc8\x9e\x9b\x9b\xc3\xbf\xfc\xcb\xbf\xac\xa4\x3f\x2b\x86\x41\xb5\x21\xf4\xc9\xa9\x03\x2e\x95\x4a\xc9\x32\xe9\xde\x92\x39\x5c\x58\x4e\x6e\x53\xf7\x22\xc9\xa0\x2e\xb3\x93\x17\x11\x08\x09\x75\xdf\x3b\xc1\x21\x61\x9f\x5b\xb3\xf4\xa2\xe3\x7e\xa3\x61\x5e\x72\x8d\x8b\x17\x2f\x62\x7e\x7e\x3e\x6a\x02\xa3\x90\x48\x7d\x8e\x22\x8a\x66\x5c\xad\x15\x09\xd1\x88\xf3\xaa\xed\x35\xea\x5b\xa3\x3e\xc4\x21\x7a\x23\x09\x1e\xd5\xb7\x28\xc2\x8c\xca\xdb\x0a\x91\x37\xea\xaf\xde\xb7\x56\xe3\x00\x00\x37\x6e\xdc\xc0\x57\xbe\xf2\x15\xbe\x73\xe7\x4e\x36\x34\x34\x64\xaf\x5a\xb5\x4a\x7e\x4e\x8c\x01\xfe\x76\x0c\xee\x38\x0e\xe6\xe7\xe7\x71\xfa\xf4\x69\x8c\x8c\x8c\xfc\xda\x61\xd0\xbd\x4c\x7a\xe5\x7e\xf8\xd0\x87\x3e\xe4\xab\x4b\x10\xc8\x6e\x98\x4d\x3f\x98\x90\xdf\x80\x83\xb6\x55\x17\x3a\x89\xd4\xed\xec\xf5\xdf\x67\xdb\x6a\xa3\x37\x0b\x95\x33\x02\x62\x9e\xe0\xba\xd2\x6a\xb5\x1a\x7f\xf1\xc5\x17\x5b\x01\xb0\x19\x92\x36\x2b\xd3\x88\xdb\x47\x0d\x7a\xb3\x76\xe2\x88\xaa\x11\x2c\xcd\x10\x29\x2a\x5f\x54\x1b\x6a\x9a\x8a\x7c\xad\x10\x52\x23\xe2\x6e\xa6\x52\xb7\xa2\xce\xc5\xc2\x70\xee\xdc\x39\x7e\xee\xdc\x39\x3f\xc3\xa6\x4d\x9b\xd0\xd7\xd7\x87\x5f\xfe\xf2\x97\xbc\xbb\xbb\x9b\x4d\x4f\x4f\xb7\xca\x0c\xee\x09\x0c\xba\x97\x29\xaa\xd3\xdc\x30\x0c\xb6\x71\xe3\x46\xc0\x93\x0e\x29\x87\x0a\xeb\x67\xd3\xef\x07\xc2\xeb\x0b\xf2\x5e\xa5\x60\xdf\x52\x70\x55\xa5\x6f\x5e\x78\x3e\x58\xe1\xa5\x5f\xe8\x2d\xbf\x62\x19\x62\x82\x40\xf2\xfa\x18\xfb\xc6\x8d\x1b\x51\xfd\x89\x02\x3a\x0a\x38\x35\xaf\x5e\x4f\x9c\x9a\xd2\x0a\xd2\x37\x13\xc5\x7a\x1f\x9a\xa9\x50\x51\xfd\xd1\x61\x88\x82\x27\x6a\xa2\xf5\xf2\x71\x08\xd4\x4a\xfb\x6a\xbd\x51\x30\x36\x65\x9e\x88\x81\x61\x60\x60\x80\x4d\x4d\x4d\xc1\xfb\x2c\x58\x24\x0c\x57\xaf\x5e\xc5\xd5\xab\x57\x39\x00\x36\x3d\x3d\x1d\x09\x43\x7f\x7f\x3f\xc6\xc7\xc7\xf9\xf1\xe3\xc7\x55\x98\x00\x80\xfd\xe2\x17\xbf\x88\x63\x30\x2d\xc1\x10\xe5\x65\xaa\x7b\xef\xee\xee\x06\x00\xff\x9a\xc3\xae\xa5\xe4\x86\x8e\x65\x63\x38\xbc\x96\xe8\xb9\x59\x29\xb8\x60\xcc\x3f\x02\xaa\xda\xd0\xca\xce\xc4\x72\x92\xcf\x5f\x5f\xb5\xfc\x16\xdc\x33\x0e\x25\xf9\xc1\x12\x0f\xa8\x38\x75\xa6\x11\x77\xd6\x91\x56\xe6\xd7\x01\x6f\xa4\x86\x45\x95\x89\x52\x85\xa2\xda\x69\x34\x19\x51\xaa\x5b\x33\x35\xad\x99\x4a\x17\x47\x0c\x51\x79\x1b\x11\x4f\x5c\xbf\xe2\x60\x8c\xea\x17\x07\xdc\x9b\xc5\x87\x86\x86\x90\xcf\xe7\x91\xc9\x64\xa0\xd8\x04\x9c\x88\x50\x2e\x97\x31\x36\x36\xc6\x9e\x7f\xfe\xf9\x15\xc3\xb0\x7e\xfd\x7a\xb6\x77\xef\x5e\xf4\xf6\xf6\xca\xe3\xca\x00\xdc\xed\xdf\x52\xc5\x1a\x1e\x1e\x66\xd5\x6a\x95\xdf\xb9\x73\x07\x3f\xfa\xd1\x8f\x56\x0c\x43\x94\xca\x54\xc7\x99\x87\x86\x86\x00\xb8\x9f\x83\x15\x42\x64\xfb\x8b\xa9\x3d\x49\x4e\x39\xf7\xd8\x5f\x70\x92\x29\x38\x00\x14\x6c\xe1\x88\xd8\xda\xe4\xbf\xdc\xea\xa8\xbe\xb3\x90\xb6\x47\x00\x14\x3d\xcf\x12\x9f\x9d\x9d\x45\x22\x91\x60\x8e\xe3\xa8\x7d\xd1\xfb\xd5\x0a\x77\xd6\xb9\xb9\x9e\x37\x4a\x22\xea\x65\x5a\x09\xba\x0d\xa0\x97\x8f\x93\x3e\x71\xed\xc4\xf5\x47\x8f\x8b\x1b\x8f\x38\x35\x26\xae\xed\x46\x84\xd8\xa8\x4c\xa8\x2f\x03\x03\x03\x38\x76\xec\x18\xda\xda\xda\x64\x7e\xc3\xfb\xbe\x36\x03\x00\x6f\xeb\x06\xcf\x64\x32\x7c\xcb\x96\x2d\x7c\xcb\x96\x2d\xb8\x73\xe7\x0e\x9e\x7d\xf6\x59\x14\x8b\xc5\x86\x30\x14\x0a\x05\x1c\x3f\x7e\x1c\xab\x56\xad\x92\x84\xa0\x7e\x79\x95\x21\x3c\x07\xb6\x69\x9a\xf6\xc0\xc0\x80\x7d\xe2\xc4\x09\x9c\x39\x73\x46\x7e\x00\xa7\x29\x0c\x40\xfd\xd6\x0d\x7d\xf0\x00\x00\xf2\xca\x41\x21\x84\x49\x44\xd9\xf5\xb3\xe9\x03\x00\x31\xdd\x9e\xa6\xba\x67\x75\x49\x2e\x08\x02\x02\x82\xc0\x2f\xf5\x96\x5f\x73\x48\xcc\x7a\xb6\x83\x45\x44\xfc\x5b\xdf\xfa\x56\x2b\xaa\x44\x5c\x5c\x54\xb9\x28\xce\x1d\x95\x1e\x27\x3d\xf4\xb6\x1a\x71\xb4\x46\x7d\x6e\x86\xe0\x51\x21\x4a\xc2\xc4\xa9\x6e\x51\x21\x8e\xe0\x9a\xa9\x88\x71\x2a\x46\xa4\xc4\x3a\x7a\xf4\x28\xb6\x6e\xdd\x2a\x91\xd5\x00\x60\x9a\x36\x65\x3b\xcb\x66\x5f\x4f\x29\x39\x98\x10\x64\x2c\x27\x79\x69\xba\xcd\x1a\x2b\xa6\x9d\x69\x3b\x21\x2a\x00\xac\x9e\x9e\x1e\xfb\x89\x27\x9e\xe0\xaf\xbf\xfe\x3a\x53\xee\xd1\xaa\x83\xe1\xf1\xc7\x1f\x67\xd9\x6c\x96\xc1\xfb\x88\x64\xba\xc6\xf2\xeb\x67\xd3\x3b\xd7\xcf\xa5\xdf\xb7\x7a\xd1\xdc\x61\x70\xca\x56\x0c\x3e\x3d\x91\xb7\xce\x5f\x5b\xb5\xfc\xf2\xad\x8e\xea\x25\x3b\x21\xca\x00\xac\xdd\xbb\x77\xdb\xeb\xd6\xad\x93\xde\xa9\x58\x18\x64\x5c\x9c\x97\x29\x14\xbc\xc5\x38\x46\x44\x66\xc6\x62\x85\x9e\x52\x72\x67\xc8\x2e\xf0\x55\xa4\xc0\xdf\xaa\x7d\xe6\x21\xfc\x0b\x42\x25\xe9\x14\x6f\x75\x54\xcf\x7b\x8b\x70\x15\x00\xb6\x72\x89\x6d\xdc\x44\xc7\x21\x6f\xb3\x10\x87\x50\x51\x6d\xc5\x21\x71\x2c\xc3\x68\xb5\xde\x9d\x3b\x77\xb2\xb5\x6b\xd7\x22\x9b\xcd\x86\xfa\x36\x3a\x3a\x8a\xe5\xe5\x65\x9c\x3b\x77\xae\x15\x22\x6c\xd4\xdf\xa8\xf1\x5b\x49\x7f\x5b\xcd\xe3\xc7\x3d\xfe\xf8\xe3\xac\xbf\xbf\x9f\xc1\xbb\x96\x32\x65\x53\x7e\xd7\xed\xdc\xb1\xad\x53\xd9\xdf\x2e\x2c\x1b\x7b\x13\x9c\x0a\x5e\x3d\x76\x2d\x21\x26\xa6\xdb\x6a\xaf\x9d\x1e\x58\xfc\xd2\xb5\xee\xe5\xb7\x1d\x86\x12\x63\xac\xf2\xc0\x03\x0f\xd8\x8e\xe3\x30\x0f\x7e\xbf\x8d\x42\xa1\xc0\x1e\x7b\xec\x31\x78\xc4\x90\x26\x8e\xdc\xf0\x74\x66\xef\xc1\xd1\xfc\x9f\x74\x95\x93\xef\x67\x02\x39\xb9\xb4\xdb\x01\xa0\xb7\x94\xe4\xf7\x4d\xb4\xcd\xde\x2c\x54\xbe\x7d\x72\xc3\xc2\xdf\x4f\xe5\x6a\xd7\x88\xa8\x52\x28\x14\xac\x4f\x7f\xfa\xd3\xf8\xe6\x37\xbf\xc9\xa3\x60\x50\xe1\xf3\xf5\x30\x65\x00\xea\x06\xc3\xfb\x68\x9f\x01\xc0\xec\x2d\x25\x87\x53\x0e\xeb\xf6\x57\xdb\x3c\x63\x3a\x1c\x82\xc5\xb7\xd0\x9a\x9c\x9f\x24\x70\xab\xa3\xfa\xce\x72\x92\xcb\x0f\xf7\x55\x00\x70\xed\x82\xb1\x56\x27\x32\xaa\x4c\x23\x2e\x18\x57\x2e\xca\x6e\x88\x23\x12\x35\x2e\x92\x50\xd6\xac\x59\xc3\x6e\xdf\xbe\xcd\x9f\x7c\xf2\x49\xd6\xd1\xd1\x01\xc0\xb7\xc1\xea\xfa\xb1\x6a\xd5\x2a\x0e\x00\x47\x8e\x1c\x01\xe0\x6e\x73\xf0\x24\xa5\x0e\x57\x23\x86\xd0\xec\x39\xea\x7d\xa5\x65\x42\xcf\x8f\x3c\xf2\x48\x40\x0c\x40\xb6\xb7\x94\x1c\x3e\x7e\xb9\xf3\x0b\xab\x17\xcd\x8f\x12\xc8\x94\xd7\xd0\x79\x7b\xd5\x4c\xd3\x61\x1b\xfb\x8b\xa9\x8d\x7d\x8b\xe6\x47\x2f\xf5\x94\xff\xeb\x4b\x1b\xe7\xbf\x58\x4e\xf1\x29\x22\x2a\x1f\x39\x72\xc4\x26\x22\x76\xf6\xec\x59\x0e\xb8\xdf\x88\x78\xfc\xf1\xc7\x7d\x62\x60\x1c\x85\x83\xa3\xf9\xdf\xbc\xff\x66\xfb\x5f\x1a\x9c\xba\x43\xbb\x61\x03\x24\x63\x06\xa7\xee\x0d\xb3\xe9\x13\x3d\x25\xf3\xd0\x4f\xb7\xcd\xfc\xe9\xcd\x42\xf5\x1c\x11\x95\xba\xba\xba\xac\xc3\x87\x0f\xcb\xd5\xed\x58\x1c\x4a\x68\x89\x2a\xfe\x0a\x00\xec\xc8\x91\x23\xd4\xd3\xd3\x43\xde\x47\xfa\x0a\xdb\xa7\xda\x1e\x1d\x9c\x4f\x1d\x81\xbf\x6f\x3d\x00\xda\xdd\xdb\x8e\xa0\x0a\xf5\xfe\x25\xff\xf4\x9c\x80\x00\xf8\x9b\x83\xa5\xa7\xef\xe4\x6a\x6f\x0a\x88\x29\x00\x4b\x00\x6a\xca\x77\x07\x54\x0a\x63\xb2\x2f\x4a\xbf\x64\x50\x69\x4d\x2f\xc3\xbd\x74\x8e\x30\x4c\x51\xf9\xe4\xaf\x2e\xcb\x84\x92\xcf\x3f\xcd\xa8\x94\x11\x6a\x5e\xc6\x18\x1b\x1c\x1c\xa4\x63\xc7\x8e\xd1\xbe\x7d\xfb\x70\xe0\xc0\x81\x44\x2a\x95\x4a\x78\xaa\x44\x0a\xae\xc8\x4f\x91\xfb\x9c\x06\x90\x04\x60\x0a\xf7\xea\x4f\x43\x7e\x5f\x3a\x9b\xcd\xd2\xfe\xfd\xfb\x69\xd7\xae\x5d\xe8\xef\xef\xc7\x95\x2b\x57\x24\xfc\xb2\x7d\xbd\x8f\x6a\x9a\x88\xc8\xa3\xfe\x41\x2b\x23\x9f\x25\x4c\xa4\xd4\x45\x11\xef\x00\x20\xb6\x6e\xdd\xca\x76\xed\xda\x05\x22\x4a\x0a\x21\x72\x3d\x4b\xe6\xa6\xc7\xcf\x77\xff\x97\x55\xe5\xe4\x71\x80\x12\x04\xb9\x43\x41\x55\x9b\x3d\x7b\x53\x20\xd5\x5d\x4e\x3e\xb8\xaa\x9c\xec\xb8\xbe\x6a\xf9\x94\xc3\x44\x8d\x88\x9c\x9e\x9e\x1e\x3e\x3a\x3a\x4a\x95\x4a\x45\x1c\x3d\x7a\x94\xfa\xfa\xfa\x5c\x35\x1d\xd4\xb1\x77\x3c\xf7\xd8\xa1\x1b\x1d\xff\xc9\x70\xa8\x2b\xd8\x25\x1d\x40\xe8\x03\xec\xb5\x67\x3a\xb4\x7a\x60\x21\xbd\x6b\xac\x50\x7d\x75\x29\xe9\x14\x89\xc8\xee\xe9\xe9\x71\x6e\xdd\xba\x45\x4b\x4b\x4b\x2a\xdc\xf2\x97\x00\xf7\xa3\x8b\xea\xa4\xab\x93\x4d\x00\xf8\xfb\xde\xf7\x3e\xf2\x26\x35\x93\x10\xd4\xbd\xf7\x56\xfb\x93\x9d\xcb\xc6\x70\xb0\xbd\x9b\x82\xff\xca\x1a\x43\x70\xb0\x43\x19\x13\x6f\x03\xa0\x95\xe4\x8b\xaf\xae\x2f\x7e\x6b\xd9\xe4\x97\x89\x68\x8e\x88\xca\xa5\x52\x89\x9f\x3b\x77\x4e\x17\x35\x2a\xb1\x86\x04\x8d\x32\x99\x32\x9f\x0a\x60\x88\xa8\x11\xcd\x0d\xd4\xf2\x14\x91\x57\x27\x36\x9d\x20\x43\x1b\x7c\xdb\xda\xda\xd8\x47\x3e\xf2\x11\xec\xdb\xb7\x0f\xb9\x5c\x8e\x11\x51\x12\xee\xb5\x8d\x19\x56\x13\x1d\x6d\x73\xce\x70\xe7\xa4\xfd\x60\xd7\x2d\xfb\xe1\xae\x71\xfb\xd1\xce\x5b\xb5\x8f\x74\x4e\x38\xc7\x3b\xa6\xec\x07\x73\xb3\xce\x66\xb3\xc2\x0b\x04\xa2\x9a\x49\x0e\x88\x12\x44\x44\x86\x61\x88\x8e\x8e\x0e\xdc\x7f\xff\xfd\x30\x0c\x43\x1e\x8e\x8a\xea\x83\x4e\xec\x51\xcf\xcd\xf2\xc4\xe5\x8d\x2c\xff\xc8\x23\x8f\x90\xf7\x45\xd9\x4c\xda\x66\x7d\x8f\x5c\xec\xfa\xcb\x9e\x25\xf3\x21\x1f\xe9\x01\xf8\x47\x82\x21\xa5\x44\x80\x1b\x10\x60\x85\x8a\xb1\x13\x84\xc9\x5b\x05\xeb\x12\x08\x96\x61\x18\x4e\x67\x67\xa7\xb8\x74\xe9\x92\x38\x7e\xfc\x38\x31\xc6\x92\x44\xd4\x56\xa8\x18\x43\x1f\xbe\xd8\xf5\x37\xa6\xc3\xd6\xb8\x57\xd7\x28\xf2\x41\xf5\x6a\x2a\x38\x49\x20\xa4\x6c\x5a\x93\xb3\x8c\xe4\x95\x9e\xe5\xd7\x04\xa1\x42\x44\x76\x6f\x6f\xaf\x50\xce\xd5\xe8\x8c\x52\xe8\x6e\xd7\xba\xe7\x6c\x36\x2b\x5d\x67\x66\xca\x66\x85\xee\xa5\xe4\x46\x55\x5c\xf9\xc0\x6b\xbc\x55\x31\x17\xea\xf2\xce\x65\xec\xf1\x62\xda\x19\x13\x42\x94\xa5\xab\x75\x6c\x6c\x0c\x11\xa1\x91\x8e\x0b\xd4\x8b\xf6\x46\x7a\x75\xa3\xd0\x4a\xb9\xd8\x7a\x76\xee\xdc\xc9\x0e\x1f\x3e\x2c\xc7\xc9\x10\x42\xa4\x19\x47\xb6\x7d\xc6\xd9\xd6\x39\x5e\x7b\x34\x37\xe3\x1c\x4f\xd4\xc4\xb0\x77\xb9\x16\xc2\x74\x18\xd4\x2f\x18\x66\x6b\x29\x7a\x7b\xbe\x2f\xf9\xe3\xf9\x35\xc6\xf3\xcb\x79\x36\x0a\xef\x03\x91\x7b\xf6\xec\xb1\x77\xee\xdc\x89\x06\x1f\x48\xd7\x43\xab\x06\xfb\x4a\xeb\x62\x00\x78\x5b\x5b\x1b\x03\x60\x10\x51\x6e\xeb\x54\xdb\xb1\xfe\x85\xd4\xe3\xca\x32\x93\x1b\xea\xb7\xad\xf9\x66\xa6\x77\x27\x93\xb1\x6b\x3c\xf7\x1f\x2e\xf7\x2c\xbf\x76\x27\x57\x3b\x07\xc0\x5e\xb3\x66\x8d\xf5\x87\x7f\xf8\x87\xfe\x01\x34\x02\xe5\xf7\x8e\xe5\x3e\x93\xa9\xb1\x8d\x21\x33\x14\xf0\xbe\xab\x13\x76\xf1\x87\x82\x20\xac\x9d\x4b\x3d\xde\xbf\x90\xfa\xce\x58\x67\xf5\x57\x00\xac\xae\xae\x2e\x4b\x59\xf0\xab\x83\x5f\xb7\x21\xea\x82\x61\x18\x32\xdd\x68\xaf\x26\x7a\x33\x16\xeb\x0b\x37\x0a\x5f\x5e\x09\x2f\x82\xfc\xf3\x7f\xd0\x16\xe5\xdc\xb8\x89\xbc\x75\xc9\x66\x42\x9e\x93\xb6\x01\x60\x76\x76\x56\xad\xb5\x91\x01\xab\xe6\x89\xd3\xed\x5b\x75\x27\xb6\x12\xe2\xbc\x12\x00\x80\x8f\x7e\xf4\xa3\x6c\x70\x70\x10\x70\x09\xc1\x24\x81\x5c\x7e\xda\xd9\xd9\x7b\xdd\xfa\xfd\xb6\x79\xe7\x43\xc4\xd1\xad\x6f\x82\x17\xc2\xe7\x92\x8a\x3f\x42\x30\xc6\xd1\x6d\x96\xc5\xf1\xde\xeb\xd6\xb1\x55\x37\xad\xd1\x62\xaf\xf1\xcf\x53\x1b\xcd\xaf\x55\x72\x6c\x0c\x44\x95\x44\x22\x61\x7d\xfe\xf3\x9f\xb7\x2f\x5f\xbe\x8c\x97\x5f\x7e\x59\xed\x53\x94\x0d\x18\x35\x2e\x51\x63\x10\xe7\x8e\x54\xcb\x84\xe2\x3e\xf6\xb1\x8f\xc9\x3d\x47\x66\xc2\x41\x61\xfb\x64\xf6\xb7\x98\x20\x13\x08\xcf\x73\xc8\x86\x94\xfe\x16\x52\x9e\x05\x90\xb6\x59\xff\xa6\xe9\xcc\x6f\x4c\xb5\x59\xd7\xe4\x96\x7f\xa5\x3d\x33\x6d\xb3\xee\xb5\xf3\xe9\x63\xfe\x62\x96\xc6\x4b\x42\xcc\x18\x70\xcf\x68\x2b\xaa\x7a\x92\x53\x61\xfd\x5c\xfa\x7d\x63\x85\xea\xdb\x02\xa2\x0c\xc0\x1e\x1a\x1a\xe2\xd3\xd3\xd3\x91\xf8\xa2\x1b\x99\x4c\xf9\x65\x7b\xf6\xec\x61\x42\x08\xe6\xf9\x93\xcd\xc2\xb2\xd1\x6f\x70\x6f\xbb\x86\xbc\x6e\x90\x44\xe8\x2e\x56\xff\x36\x36\x59\xa3\x42\xc0\xee\x9f\xc0\x44\xbb\x75\x05\xe4\x1b\xd3\x36\x00\x7e\xfe\xfc\xf9\x38\x2f\x47\x54\x68\x86\xd8\xb2\xac\x5a\x3e\x04\x5b\xc4\x33\x9a\xc4\xa9\x75\x32\x00\x78\xf4\xd1\x47\xd9\xe0\xe0\xa0\x7b\x94\x16\xc8\x99\x55\x31\xb8\xf6\x7c\xe5\x8f\x87\xde\x5a\xfe\x5a\x6e\xd6\x7e\x8a\x71\x78\x2b\x9a\xca\x20\x00\x8a\x6e\xa9\x8c\x9d\x6f\x83\x11\x48\x80\x19\x36\x36\x74\x8e\xdb\x7f\xb1\xe9\xb5\xe5\xaf\xf5\x5e\xb7\x3e\x49\x8e\x28\x00\x48\x27\x93\x49\x73\xc7\x8e\x1d\xec\xd8\xb1\x63\x51\x63\xa3\x1a\xcb\x51\xe3\x11\x15\x17\x37\x8e\x6a\x19\x1f\x79\x72\xb9\x1c\x53\xdc\xf0\xe9\x7c\xd5\xe8\xeb\x5c\x36\x76\x0a\xd7\x99\xee\x83\x2b\xdf\x08\x02\xd2\xe5\x28\xaf\x19\x02\x84\x4a\x14\x6c\xc3\x6c\xfa\x98\xbc\xd1\xdb\xbb\xf2\x52\x8e\xb1\x99\xae\xb1\xde\x36\x2b\x31\x18\x6c\xa6\x56\xdb\x09\xbe\x45\xe8\xdb\x13\x90\x43\x2d\x40\x24\x40\x02\x6c\xf5\xa2\xb9\x9b\x84\x7b\xb1\x19\x11\xb1\xe1\xe1\x61\x09\x9f\x84\xcd\x7f\x66\x40\x1d\x57\xf0\xd5\x90\x81\x81\x01\x00\x80\x67\xf0\xa5\xbb\xca\xc9\xf5\x04\x18\x0a\xa8\x6e\x08\x75\xcc\x03\xde\xef\xa4\xbc\xe6\xdc\xfd\x57\x4b\x88\xf2\x74\x5b\xed\x3a\x3c\x62\x50\x17\xe3\x9a\x4c\x86\x8a\x8c\x3a\x72\xea\x22\x5d\x0d\x2a\x82\xeb\x9c\x51\xf7\xa4\xe8\x03\xa5\x7b\x64\xfc\xfe\x3d\xfa\xe8\xa3\x6c\xed\xda\xb5\x0c\x80\x49\x40\x3e\x3b\xef\x6c\xdb\xf8\xc6\xf2\xdf\x76\x8d\xd9\x7f\xc1\x38\xba\x15\x03\x32\xcc\x14\x44\xf0\xac\x5e\xd9\xa3\x5c\x68\x18\x9a\x60\xc3\x12\xdb\xd6\x5c\xb2\xfe\x76\xdd\xdb\x95\x3f\x37\x2a\x7c\x50\x08\x91\x06\x60\x6c\xd9\xb2\x85\x1d\x3d\x7a\xd4\xfd\xa0\x5f\x63\xb8\x74\x2e\x1f\xe7\x4d\x64\x0d\xf2\xfa\x63\xd2\xdb\xdb\xeb\xb7\x43\x44\x66\xd6\x4a\xf4\x1b\x0e\xcb\x13\x51\x98\x19\x0a\x95\xa1\x93\x0f\xb8\xaf\xee\x78\x04\x02\x22\x64\xad\x44\x7f\xd2\xa1\x9c\xc7\x58\x64\xdf\x0c\x22\x32\xb3\x35\xd6\x95\xe0\xc8\x4a\x8c\x13\x20\x04\x9b\x45\x95\x6f\x49\xc8\xb6\xfc\x1d\xd5\xe4\xbf\xa7\x6d\xd6\x45\xde\xe5\xc8\x11\xe3\xa4\x86\xba\x5b\x37\xd4\xc9\x57\x11\xd1\x20\x90\xd9\xb5\x94\x5c\x17\x98\x2c\x1e\x4f\x13\x80\xbc\xc2\x5c\x9a\xd7\xea\x80\xf8\xeb\x12\x2e\x28\x58\x32\x9d\xe9\xa5\x94\x33\x0d\xf7\xd4\x93\x4d\x44\x7c\x61\x61\x01\x8e\xe3\xc4\x4d\xaa\xae\xd7\x73\xed\x59\x77\x21\xc6\xd9\x03\x51\xe5\x64\x5b\x88\x79\xaf\x23\x04\x84\x89\xc1\x80\x10\xb9\xb6\x79\x67\xc7\xfa\xd3\xcb\x7f\x9b\x5e\xe4\x1f\x76\xed\x32\xa1\x48\x83\xe0\x99\xbc\xeb\xfe\xdd\x5d\xef\x01\xc6\x04\x9e\x3a\xf8\x71\xee\xed\x13\x5e\xbc\x10\xd9\xc2\x84\xfd\x3f\xac\x7f\xbb\xf2\x1f\x93\x96\xe8\x87\x70\x27\x77\xdb\xb6\x6d\xd8\xb5\x6b\x97\xda\xe7\x28\x38\xa2\x42\x23\xa2\xd0\xeb\x09\x8d\xa3\xf2\x6d\x6a\x57\x65\xe2\xc8\x52\xa8\x9c\xd7\x67\x05\x69\x05\x49\x27\x4b\xa0\xe7\x08\x04\x8e\x17\x59\x97\x22\x19\x7c\xdc\xab\x31\xd7\x2b\xe9\xdb\x27\x50\x3c\x4a\xf2\x02\x64\xff\x1c\xbf\x24\x0a\x99\xcf\xed\xc3\xb2\xc1\xcb\x4a\xbd\x0d\xd5\xf1\x28\xae\x20\x9f\xf9\xc0\xc0\x80\x6f\x28\x26\x38\xd2\x1d\x15\x63\x9d\x7a\x6d\x8c\xdf\xac\x2a\xb2\xbc\x3f\x97\x28\xa4\x80\x84\x3f\x18\x0b\x19\x7b\xdc\x4a\xf0\x22\xdc\x95\x69\x1b\x00\x94\x8b\xc7\xf4\xbe\xa9\xa1\x91\x0a\xd5\x28\xbd\x19\x82\xc4\x11\x82\x5e\x2f\x07\x80\x83\x07\x0f\x06\xc4\x00\xe4\xd2\x8b\x7c\xdb\xba\x33\x95\xbf\x4e\x95\xc5\x01\x5f\x12\x7a\xbc\xcc\x1f\x0f\xb9\x4e\xa3\xea\xbf\xfe\x18\x8a\xe0\x34\x21\x69\x33\x0e\xf8\x56\x2a\x01\x46\x6e\xc6\x79\x6a\xdd\xd9\xca\x17\x12\x35\xd1\x0b\xef\xfb\x08\x07\x0e\x1c\x88\x83\x51\x9f\x70\x9d\x23\x46\x21\x44\x9c\xfa\x14\xab\x5a\x55\x0d\x61\x71\x12\xb6\x7c\x27\x05\x38\xc5\xb9\x18\x3c\x08\x85\x69\x7a\x61\xc9\x74\x66\x6b\x09\xa1\xf7\x1f\x00\x50\x4a\x39\xc5\xb2\xe9\xcc\x02\x21\x02\x42\xdd\xbb\x76\xa9\x45\x10\x04\x66\xdb\x6a\xe3\x9c\x20\xef\x6f\xd2\x43\x08\x2e\xfd\x80\x90\x9f\xd8\xd6\xd6\xa6\x7e\x22\xd5\x48\x39\x2c\x97\x76\x6f\x5c\xf6\x55\x23\x75\x13\x5f\xc8\x72\x50\xc4\x61\x68\x6e\x21\x30\x97\xb1\xc7\xb9\x77\xc9\x14\x00\xf5\x3a\x4a\xbd\x1f\x4d\xa9\x19\xd1\x13\x15\x27\xfa\xeb\xc4\x3f\xe2\x11\x24\x2a\x8d\xf5\xf4\xf4\xa8\x1c\x39\x9b\xa8\x89\xbe\xb5\xe7\x2a\x5f\x30\x97\xc5\x7e\xdf\xa5\x10\x32\x1e\x83\x0f\xc0\xf8\xdf\xc7\xf0\xdd\x2c\xf0\x75\x61\xf2\x2d\x43\x19\x02\xab\x34\xb4\x1d\x06\x60\xed\x77\x9c\xa7\x56\x5f\xad\x8e\x8e\x6f\x4b\xfd\x3d\x88\x78\x22\x91\x28\x7f\xe6\x33\x9f\x91\x5b\x13\x9a\xc1\x10\x0a\x07\x0f\x1e\x94\xbb\x98\x65\x7e\x00\xee\x59\x05\xed\x78\x66\xac\x9d\xb1\x90\xb1\x67\x97\x4c\x3e\x5d\xa8\xb0\x75\xa1\x9e\x2a\x90\x84\x62\x34\xa7\x90\x80\xc0\x4c\x5b\x6d\x0c\xe4\x1b\xd3\x1c\x1e\x5e\x10\x91\x5d\x49\xf2\xd2\xed\xbc\x75\xa9\xa3\x92\xdc\x10\xae\x39\xda\x57\xa7\x3b\x9b\x38\xc1\xbe\xd5\x51\xbd\x02\x17\xdf\x64\x1b\x71\x81\xa9\xb7\x27\x87\x44\x67\x7b\x7b\xbb\x9c\x44\x46\x44\x86\x69\xb3\x9c\x69\x53\x3e\xb0\x1e\x14\xc3\xd0\xa3\x79\xb9\xeb\x50\x6e\xf2\x93\x9f\x94\x56\xbb\x3f\x97\xad\x8d\x81\x02\xfb\xa1\x5a\xad\x42\xe9\x43\x9c\x1d\xa1\xc7\x45\x79\x49\xa0\xc5\x45\x49\x3e\x3d\x7f\x23\xdb\xa2\xae\xde\xfb\xef\xbf\x5f\xda\x3a\x69\x08\x91\x5f\x7d\xb5\xfa\x64\x76\x81\x7f\x38\xf8\x64\xb6\x6a\x3c\x7b\xeb\xb3\x82\x5c\x55\xc9\xb7\xb9\x02\x69\x21\x6f\x1b\x71\xd5\x26\x95\xc3\x29\x07\xaa\x14\xfb\xc2\xab\xdd\x58\x75\xb3\xf6\x47\x4b\x5d\x89\xb3\x0b\xab\x93\x2f\x02\xb0\x3b\x3b\x3b\xad\x7d\xfb\xf6\xc1\xbb\x81\x22\x8a\x41\xf8\xe1\xd0\xa1\x43\x58\xbb\x76\x2d\x0a\x85\x82\x94\xfe\xa1\xef\x43\x0b\x21\xf8\xae\x5d\xbb\xf8\xce\x9d\x3b\xb1\xb8\xb8\x88\xf3\xe7\xcf\xe3\xdc\xb9\x73\x12\x17\x74\xb5\xd3\xae\x18\xbc\x78\xa3\x6b\xf9\x74\xc7\x78\xfb\x3a\xd9\x73\xc9\x2a\x43\x7a\xbf\x0f\xb9\x87\x14\xd2\xc8\x26\xd8\xa3\x85\xca\x3b\xf0\x10\x56\xdd\xb9\x0a\xc0\x12\x84\xd2\xb9\x35\x4b\x2f\x6c\x9e\xce\x1e\x4b\x70\x32\x83\x6f\x0e\x06\x38\x28\xeb\xf5\x3f\xe3\x2c\x82\xdb\x5d\x66\xdb\x6a\x23\x63\x85\xea\xbb\x12\xe7\x00\x60\x71\x71\x51\x9f\xeb\xba\xc9\xaf\xd3\x17\xfb\xfb\xfb\xa1\x5a\xfc\xd9\x5a\xa2\x60\x70\xca\xba\x93\x43\x0a\x43\x53\x0c\x26\xff\x0e\xff\xf0\x8c\xb8\x0c\xd0\xbd\x77\xa9\x98\x72\x26\x85\x10\x3a\xb5\xc6\xe9\xf7\x8d\x74\x7d\x44\x94\x89\xb2\x3b\x1a\xd5\x1b\x97\x37\xb2\xcc\xda\xb5\x6b\x01\x6f\x9b\x42\xdb\x9c\xb3\xa3\xeb\x66\xed\xf7\x00\xc1\x7c\xbd\xd5\xd7\xfb\x85\x5c\x91\x0f\x8f\x85\x2e\xb1\x15\x9d\x42\xda\x63\xf2\xdb\x7a\x52\xe5\xf4\xeb\x93\x59\x09\x60\x0e\xba\xfa\x2e\x59\x7f\x9c\xa8\x09\xf9\x69\x29\xb6\x7b\xf7\x6e\xd9\x67\xdd\xc9\xc0\x01\x20\x9f\xcf\xe3\x89\x27\x9e\xc0\xae\x5d\xbb\x58\x67\x67\xa7\x41\x44\x69\x00\x59\xc3\xa1\x42\xbb\x65\xf4\xb6\x57\x12\xfd\x6d\x55\xd6\x9d\xe4\xac\x00\x20\x07\x20\x9d\xcf\xe7\x8d\xc3\x87\x0f\xb3\xdf\xfe\xed\xdf\x46\x57\x57\x17\x00\x20\x97\xcb\xa9\xf3\x60\x81\x50\x3a\xbb\x66\xe9\x05\xa9\xd6\x28\x1c\x10\x1e\x08\x21\xd5\x89\x20\x19\x84\x1b\xa6\x73\xb5\x91\xd1\xce\xea\x79\x78\xdf\x15\x97\xbb\x62\xd5\x8b\xcd\xc6\x3b\xaa\x17\x2e\xf4\x2e\xbd\x1c\xe8\xa0\xc1\xe0\x05\xaa\x39\x05\xea\xba\x67\xbf\xd8\x09\x51\x79\x7d\xdd\xe2\x8f\x2a\x06\x9f\x82\x67\xb3\xc2\xb5\x83\x64\xf7\xea\x18\x61\x9c\xd5\xcd\x01\x7f\x9f\x39\x03\x60\xe4\xaa\xac\xab\xce\xd7\xec\x19\x0e\xd2\xa7\xae\x9e\x7b\x08\xfd\x7a\xf1\x0e\x09\xab\x94\x72\x66\xa1\xdc\xc9\x19\x71\x2c\x30\xaa\x3f\x51\xe9\x8d\xca\xc4\xe9\xbc\x2b\x8d\x97\x69\x78\xec\xb1\xc7\x7c\xdf\x3b\xb8\xc8\x77\xdf\xa8\x7d\x26\x61\xa3\x9f\x7c\x1b\x81\x14\x60\x7d\x73\xd2\xad\x41\x26\x7b\xec\x5e\x55\xa5\x48\x0e\xa6\x57\x4f\x20\x65\x54\xd1\xa0\x5c\x02\xe7\x56\x85\x74\x89\x1f\x2c\xdc\xae\x1d\x9d\x59\x9b\xfc\x3e\x88\xac\x54\x2a\xc5\x0f\x1e\x3c\x88\xd7\x5e\x7b\x4d\x95\x6e\x0c\x00\xdf\xba\x75\x2b\x1e\x78\xe0\x01\xf8\x3b\x46\x05\xd2\xf9\x6a\xa2\x6b\xdb\x64\xdb\x91\xf5\x73\xe9\x87\x3a\x96\x13\x5b\x98\xa0\xac\xcd\x44\xa9\x94\x72\xae\xdd\x2c\x54\x5e\x78\xa7\x6f\xe9\xc5\x85\xb4\x33\x0d\x42\x25\x97\xcb\x59\x8f\x3d\xf6\x18\xff\xca\x57\xbe\x82\x72\xb9\x8c\xa9\xa9\x29\xf4\xf6\xf6\x72\xb8\x9e\xc2\xe2\x4c\x5b\xed\xca\xa9\xc1\xc5\x9f\xbc\xef\x7a\xc7\x53\x09\xb9\x0b\x1a\x8a\x7a\x58\x17\x7c\x84\xb5\x7e\xb5\xbe\xf8\xfd\x4a\xb0\xa7\x4d\xbf\xab\xd5\x12\x42\x14\x41\x34\xf5\xca\xd0\xc2\x77\xf2\x15\xa3\x6f\xed\x7c\x6a\x47\x1d\x8e\x29\xae\x3a\x89\x9a\x9c\x04\x7f\x73\x70\xf1\x99\x2b\xdd\xe5\x93\x20\xf7\xea\x1a\x00\x36\xe7\x9c\x2b\x38\x57\x37\xff\x72\x2f\x13\x21\x40\x24\x02\x20\xd6\xac\x59\x43\x03\x03\x03\x04\x77\xdf\x4d\x47\xff\x42\xea\xc0\xd0\x4c\xe6\x28\x85\x65\xbb\x37\xc1\x61\xc4\x77\xe7\x33\xfc\x6d\x69\x00\xa8\x1a\x7c\xe1\xf4\x40\xe9\x7b\x56\x52\xdc\x22\xa2\x05\x00\xd6\xd8\xd8\x98\xb8\x75\xeb\x96\xef\x38\x50\xb2\x87\x4c\x77\xaf\x6f\x42\xed\xa3\x12\x17\x02\x4a\xab\x4b\xcd\x13\x57\xa7\xde\xb6\x1a\x04\x00\x71\xec\xd8\x31\xf2\xb6\x63\xb4\x67\x8a\x7c\x7b\xdf\xe5\xea\x5f\x24\x38\xda\x5c\xa4\x55\x01\x07\x14\x6c\x0f\x7e\x35\x71\x11\xa8\x28\xde\xb3\x27\x79\xd5\x7d\x3a\xae\x2d\x12\x96\xc0\x72\x5c\x09\x60\xc9\xaa\xc8\xcf\xad\x49\xbe\x28\x12\xb4\x28\x84\xa8\x65\xb3\x59\x7e\xfe\xfc\x79\x15\x1e\x31\x38\x38\xc8\x1e\x7e\xf8\x61\x24\x93\x49\x03\x40\x8a\x71\x74\xec\xbe\x9d\xfb\xd0\x87\x2f\x76\xfd\xcd\xc6\x99\xcc\x1f\xe5\xab\xc6\xde\xa4\x4d\x83\x49\xce\x56\xa7\x1c\xb6\x36\x5f\x4d\xec\x1e\x58\x48\x3d\xbe\x65\xaa\xed\x28\x11\x8a\x53\xed\xd6\xb8\x20\xf0\x64\x32\xc9\xf7\xef\xdf\x2f\x6c\xdb\xc6\xe2\xe2\x22\xd6\xac\x59\xc3\xc9\x05\x82\x04\x84\x31\xd9\x6e\xcd\x1a\x9c\xda\x7a\x4b\xc9\x75\x4c\xb8\x7b\x99\x24\xec\xc1\xb9\x99\x00\x69\xab\x09\x5e\x7e\x65\xe3\xc2\xb7\x2f\xac\x2e\xff\x1c\x84\x31\x00\xb3\x42\x88\x65\x00\xf6\xdf\xff\xfd\xdf\xf3\x3d\x7b\xf6\x80\x31\x26\x3c\x98\x85\x6d\x40\x8c\x74\x55\xc6\x32\x35\xd6\xd1\xb9\x6c\xf4\x25\x04\x98\xaf\x9d\xa8\x67\x71\x00\x94\x93\x4e\xf1\xd5\xf5\xc5\x1f\x9d\x5a\xbb\xf8\x5d\xce\x30\x02\x60\x12\xc0\x02\x11\x59\x97\x2e\x5d\x12\x57\xae\x5c\x91\x38\x22\xff\x7c\xdc\x4f\x28\x11\x50\x13\x77\xed\xda\x85\x42\xa1\x90\x00\x90\x82\x40\x61\xdd\x7c\xfa\xc1\x75\xf3\xe9\xc3\x21\x43\x4f\x55\x13\x94\xd5\x41\x39\x10\xd2\x68\x22\x0f\x61\xca\x26\x9f\x3e\x3d\xb0\xf8\x03\x9b\x89\x09\x22\x5a\x14\x42\xd8\x93\x93\x93\x42\xd9\xa3\xa3\x22\x6a\x14\x81\x48\xa4\x57\x01\xd1\xd3\x75\x04\x57\x89\x4d\x27\x20\x15\x66\xbd\x6d\xbf\xcc\x83\x0f\x3e\x48\x7d\x7d\x7d\xd2\x76\xe8\x5c\x75\xb3\xf6\xa9\xfc\xb4\xf3\x70\x48\x95\x95\xc2\x80\x02\x63\x51\xbe\xb8\x38\x2e\x7c\x84\xa7\x60\xe0\xe4\x50\x85\x04\x82\xe4\x2e\xd2\x1e\x93\x2e\x4b\x77\xce\xc9\xcf\x9b\xa8\x89\x42\xa9\x2b\x71\xd2\xca\xb2\xdb\x00\xaa\xa9\x54\xca\x9e\x9f\x9f\xa7\xb9\xb9\x39\x00\xa0\x4c\x26\x43\x0f\x3f\xfc\x30\xd2\xe9\x34\x03\x90\x61\x1c\x9d\xef\xbf\x56\xf8\xf7\x07\x6f\xb6\xff\x6f\xe9\x1a\xdb\xe8\x76\x84\xfc\x86\xfd\xba\x01\x32\x39\xeb\x1b\x9c\x4f\xfd\x46\x9b\x95\x70\x46\x0b\x95\x0b\x82\xa1\xe6\x6d\x90\x13\x3f\xf9\xc9\x4f\xf8\xce\x9d\x3b\xc9\xdb\xc5\x00\x22\xe2\x02\x42\xdc\x2a\x54\xa7\x16\xd3\xce\x52\xe7\x72\xb2\x37\x5d\x63\x59\x57\x3b\x52\x76\x37\x11\xc0\x09\x7c\xb2\xdd\xba\xf1\xc2\xf0\xfc\xb7\x2e\xf5\x96\x9f\x17\x10\x37\x00\x4c\x7a\xc7\x00\xac\x0b\x17\x2e\x88\xd1\xd1\x51\xe2\x9c\x63\x60\x60\x80\x93\x7b\x6b\xb8\x00\xe0\xd8\x4c\xd4\x6e\xac\xaa\x8c\xdc\xc9\xd5\xa6\x99\xa0\x84\x69\x53\x86\x88\x48\x90\x10\xb5\x04\xac\x62\xc6\x9e\xbd\xd8\x53\x7e\xeb\xc5\xe1\xf9\xef\x5c\xeb\x5e\xfe\xa5\x60\x18\x11\x42\x8c\x93\xfb\x09\xb6\x65\xc7\x71\x9c\xe7\x9f\x7f\x1e\x95\x4a\x05\x0a\x1e\xa9\x1a\x05\x45\xdd\xdc\xc7\x00\xf0\x55\xab\x56\x31\x00\xee\x96\x65\x10\x4b\xd9\x2c\x2f\xb1\x27\xd0\x04\xbc\x41\xf4\x26\xd8\xff\xde\x30\x05\x06\xa4\xba\xa9\x00\x39\x40\xc6\xbf\xab\x96\xcd\x9e\xcf\x18\x00\x00\x20\x00\x49\x44\x41\x54\xe0\x15\xef\x70\x88\xed\x0d\xa4\x14\xf1\x6a\xfb\x40\x7d\x9f\xa0\xc4\xeb\x4e\x00\xf5\xb9\x4e\x5d\x88\x48\xd7\xeb\xd2\x0d\xe8\x3a\x17\xa6\xf7\x0d\x33\xd7\x57\xce\x91\xcf\x4f\xdb\x47\x48\x80\x85\x06\x43\x35\xf3\xa4\xab\x54\x12\x8a\x8a\xff\x7e\xf6\x80\xdb\x4b\xd5\x33\x60\x36\x11\xaa\x46\x94\x3a\xca\x91\x6f\x9f\x71\x1e\x58\x5c\x95\x78\x93\x88\x8a\x42\x08\x76\xed\xda\x35\xdf\x05\x7a\xe0\xc0\x01\x26\xbf\x0d\x0d\x81\xdc\xce\xdb\xb9\x0f\xef\x19\xcf\x7d\x21\x21\x28\x17\x3a\xd6\xeb\xf5\xc7\xfd\x09\x62\x99\xa0\xfc\x7d\x13\x6d\xff\xf3\x62\xca\x99\x79\x7d\x5d\xf1\x9b\x82\xc0\x4d\xd3\xac\x7c\xfc\xe3\x1f\xc7\x97\xbf\xfc\x65\x7e\xe2\xc4\x89\xe0\xa2\x31\x80\x71\x06\xf6\xee\xea\x72\xe5\x46\x57\xe5\xe2\xd0\x4c\x66\xcf\xda\xf9\xd4\x70\x67\x39\xd9\x9d\x74\xc8\xac\x1a\xbc\x32\xd5\x6e\x8d\xdf\xe8\xac\x5c\x1a\x2b\x54\xcf\x5b\x09\x31\x0a\xc2\x18\x81\x26\xe0\x5e\x6d\x69\xd5\x6a\x35\x7e\xe6\xcc\x19\x00\xe0\x67\xce\x9c\xc1\xd0\xd0\x10\xeb\xed\xed\xb5\xe1\xaa\x53\x00\x81\x3b\x84\xf2\xd5\x55\xcb\xf3\xd7\xbb\x2a\x6f\x65\x6b\x89\xd5\x59\x8b\x15\x0c\x4e\x86\x65\x88\x72\xc9\xb4\x67\xaa\x86\x98\x86\x7b\x83\xcb\x14\xdc\x4b\xef\xe4\x4d\x7f\xf6\xb9\x73\xe7\x30\x37\x37\x17\xa5\x86\xfb\x71\xea\x11\xd2\x48\x04\x21\x22\x06\x01\x23\x53\x63\x79\x75\x56\x54\x11\xa5\x72\x00\x95\xa7\xab\x2e\x48\x00\xb0\x12\xa2\xe4\x50\x60\x38\x21\x1e\xf1\xd5\xb8\x46\xae\x52\x1d\x28\x3d\xaf\x5e\x97\x1a\xaf\xc2\x1c\x1a\x14\xbd\xed\x54\x2a\xe5\x2f\x44\x19\x96\xe8\x4e\x95\xf8\x36\x3f\x67\x48\x0d\xf2\x9f\xea\xa4\x68\xa0\x36\x41\xc9\x1f\xc4\x91\x22\xfe\x55\xfd\x2b\xac\x76\xfa\xc6\x08\xa4\x9c\x69\x9b\x73\xf6\x33\x81\x9c\x20\x98\x44\x54\xf9\xcd\xdf\xfc\x4d\x26\x6f\x3b\xdc\xb2\x65\x8b\x84\x25\x5b\x58\x36\x36\x3c\x38\x9a\xff\x73\xf7\x50\x0d\xea\xfa\xa2\xb6\xe0\x7a\xc0\xa4\xef\x90\xd2\xfb\xc6\x72\x7f\x7a\xa3\xb3\x72\x6e\xa2\xbd\xfa\x36\x11\xd9\x7d\x7d\x7d\x16\x00\xbc\xf5\xd6\x5b\xd8\xb7\x6f\x9f\xa5\x7a\x86\x04\x44\xa9\x6c\xf2\xd9\xf3\x7d\x4b\x23\xe7\xfb\x96\xf2\x4c\x20\x4d\x80\x21\x00\xdb\x73\xb7\xcf\x7b\x3a\xfd\xb4\xf7\x57\x04\x50\x26\x22\xfb\xe4\xc9\x93\xa1\xe3\xa4\xdf\xfd\xee\x77\xf9\x67\x3f\xfb\x59\xe4\x72\x39\x0b\xde\x2d\xf0\xe4\x5e\x83\x39\x2f\x08\xf9\xa5\x94\x93\x5b\x4a\x39\x69\x79\x87\x13\x3c\x9b\x06\xee\x19\xfd\x22\x80\x92\xb7\x5f\xce\x7a\xf3\xcd\x37\x71\xea\xd4\x29\x1d\xc7\xeb\x70\x29\xee\x6e\x57\x1f\x51\x84\x10\x60\x20\x66\x70\x32\x09\xc1\x9c\x91\x3e\xaa\xf2\x51\xaa\xcd\x08\x1c\x0e\xd2\xe6\xb4\x12\xbc\x2c\x20\x6c\x02\x71\xc5\x78\x8a\x0a\x71\x1c\x3b\x0a\x69\xe3\x42\x14\x27\x68\x44\x50\xb1\x75\x78\xdf\x58\x66\x00\xcc\xd4\x12\xef\x4f\x38\xe8\xf2\xa5\x83\x0f\xb7\x62\x44\x28\xa2\x40\xdd\xc8\xe6\x1b\xc7\x3e\xf2\x03\x21\x31\xa2\xd2\x04\x00\x80\x82\xf5\x0b\x45\x55\x52\x33\x9a\xcb\x7c\x03\xab\x89\xbc\x6d\xba\xfb\x74\xe4\x85\x10\xfb\xf7\xef\x67\xde\xb6\x0e\x13\x40\xee\xbe\x89\xb6\xc7\xb2\x16\x1b\x56\x57\x8b\x65\x77\xa3\x08\xc3\xcf\x23\x80\xb4\xcd\xd6\xed\x9c\x68\xfb\xc4\x64\xbb\x75\x0d\xde\x96\x9b\x47\x1f\x7d\x14\x3f\xfe\xf1\x8f\x39\x63\x8c\xed\xde\xbd\xdb\xbf\x9a\xd2\xdb\xa0\x57\x04\x21\x07\x20\xcb\xc9\xf5\x82\x79\xc8\xac\x5e\x4d\x59\xf2\x3e\x9e\x59\x11\x42\xd8\x67\xcf\x9e\xc5\xc5\x8b\x17\xeb\x98\xe2\x57\xbf\xfa\x55\xfe\xe4\x93\x4f\xa2\xa3\xa3\xc3\x52\x3d\x4f\x00\xd2\x42\x88\x34\x11\xf9\x37\xfd\x79\xb7\xfb\x55\x00\x54\x88\xc8\x12\x42\x58\x42\x08\xfb\xcc\x99\x33\x92\x18\xe2\xe6\xdb\xc7\x8b\xa8\xed\xdf\x3a\x67\x65\x00\x18\x13\xa4\xe4\x0d\xb0\x3f\xb8\x6f\x43\x8e\x21\xf9\x7b\x4b\x7c\xc3\x11\xee\x6a\xac\xc3\x84\xa5\x48\x87\xa8\xd0\x4c\x6d\x6a\x65\x25\x36\x2a\x7f\x9c\x84\x68\x54\x56\x2f\xe7\x9e\x15\xae\xf0\x7e\x08\x18\xc1\xa5\xcd\x81\xd7\x28\x40\xd8\xc0\x0d\x18\xe0\xbb\xf0\xf5\xf4\x20\xa8\x5e\x7b\x59\x1f\x42\x54\xa1\x7a\xa1\xc2\x3b\x64\xdd\xf4\x84\x2d\x0a\x86\x25\x0a\x4e\x8a\xa9\xfb\x80\xb0\x63\xc7\x0e\xe9\x21\x34\x0d\x87\x0a\xeb\xe7\xd2\xc7\x08\xc4\x74\x55\xd6\x17\xec\x8a\x11\xe3\xc2\xe4\x7b\xf5\x41\x20\xac\x9d\x4b\x1d\x4b\x39\xf4\xa5\xaa\xe1\x7e\x1f\xbc\xbd\xbd\x9d\x03\xf0\x0f\xf0\xef\xd9\xb3\x47\x5e\x49\x69\x79\xbf\xa6\xf7\x67\xc0\x5d\xcb\x92\xc8\x2c\xaf\xa7\xb4\x00\xd8\xd5\x6a\x95\x9f\x3b\x77\x4e\xe7\xde\xa1\xf0\xcf\xff\xfc\xcf\x38\x74\xe8\x10\xdf\xbe\x7d\xbb\x65\x18\x86\x2c\x5f\xd6\xb6\x7a\x48\xbc\xf2\x17\xf8\xaa\xd5\x2a\xff\xf2\x97\xbf\x1c\x87\x6b\x91\x0c\x53\xbf\xdb\x55\x57\x63\x64\x60\x4c\x48\xe2\x11\xa1\x5b\xbe\x25\x01\x48\x9d\x58\x8a\x7c\x49\x04\x90\x79\x5c\x83\xca\x5f\x7b\x90\x88\xd4\xd1\xd1\xc1\x16\x16\x16\x64\x7b\x3a\x32\xc6\x01\xd2\x6c\x21\x4f\x57\x03\xd5\x38\xbd\x6c\x23\x09\x84\xe3\xc7\x8f\xab\xf9\xcd\x84\x85\x55\xf0\x20\x0c\xc1\xec\xdb\x03\xe4\x19\xd0\x92\x48\x28\xf8\xf5\xc6\x2f\x6c\x6f\x90\xa4\x1d\x05\x49\xbd\xf1\xf5\x9d\x33\xaa\x71\x1e\x1e\x0c\xe2\x48\x1b\x36\xf2\x95\xe0\x4e\x54\xf6\x7b\xbf\xf7\x7b\xea\xb6\xfd\x74\x9b\xc5\x7a\x73\xd5\xc4\x86\x80\x20\x83\x8d\x99\xbe\x2c\x53\x54\x3c\xe1\x35\x2e\xa4\x61\x0f\xa0\xcd\x4a\xac\xcb\x55\x8c\xde\x6a\xae\x36\x0e\xc0\xe8\xe8\xe8\x90\xb6\x0a\x7b\xf5\xd5\x57\xf9\xc8\xc8\x08\x7b\xe8\xa1\x87\x78\x2e\x97\xb3\xa4\x34\x90\x27\x00\xb5\x39\xe2\x00\xb8\xe3\x38\xfc\xd6\xad\x5b\xf8\xc9\x4f\x7e\x12\xc7\xbc\xfc\x77\x21\x04\x3f\x79\xf2\x24\x3b\x7b\xf6\x2c\xf6\xed\xdb\xc7\x07\x07\x07\x79\x7b\x7b\xbb\x8d\x08\x1c\x11\x42\xf0\x62\xb1\x88\x91\x91\x11\x68\x57\xe5\xeb\x75\x47\xaa\x4f\xfa\x25\x03\x21\xa4\x50\x8d\x3e\x92\x12\x42\xee\x1f\xf1\x1d\x99\x8a\x7f\x5c\x4a\x04\xa9\x13\xfb\x15\x79\xe6\xbc\xbb\xe7\xc5\x57\x97\x88\x08\x0b\x0b\x0b\xb1\xfa\x9c\x0e\xac\xd6\x57\x3d\xae\x91\x1d\x12\x57\x4f\x54\x5c\x14\x61\xc8\xd5\x5c\xc6\x1c\x91\x0e\x2e\x6f\x16\x21\x75\xc8\x07\x16\xd2\x26\x08\x50\x8f\xa4\xee\xef\x4b\x16\x04\x1e\x3a\x85\xfb\xeb\xaa\x68\x14\x11\x84\xd4\x1c\x01\x46\x8e\xc8\x2a\xdc\x12\xff\xf0\x0f\xff\xc0\x4f\x9c\x38\x21\xdf\x0d\xc3\x61\xf9\x04\xa7\xac\x4f\x88\x42\xeb\xae\x32\x5f\x01\x7d\x87\x9d\x02\x4c\x50\x3a\x65\x93\xff\xb1\x74\x0a\x2e\x24\x06\x00\x4c\x4e\x4e\xf2\xaf\x7e\xf5\xab\x18\x18\x18\x60\x9b\x36\x6d\xe2\x9b\x37\x6f\xe6\x89\x44\xa2\xce\xfd\xce\x39\xc7\xa5\x4b\x97\xa0\xdc\xcc\x18\x35\x07\xf2\x39\xd4\x46\xa9\x54\xe2\x2f\xbd\xf4\x12\x03\xc0\x57\xaf\x5e\xcd\x06\x06\x06\xf8\x9b\x6f\xbe\xc9\x8f\x1e\x3d\xca\x64\x7d\xab\x57\xaf\x66\x93\x93\x93\x71\x04\xd0\xc8\xc9\x02\x20\xbc\x30\xa7\x06\x9d\xf2\x98\x1c\x3c\x7f\x1c\xe5\xfc\x12\x85\x17\x60\x22\x06\x5b\xf7\x68\x44\xd8\x0e\x7a\x07\xa3\x10\xbb\x59\x68\x44\x18\x2b\x09\x91\x52\xca\xeb\x33\x13\x0c\xdc\xc5\xf5\x00\x61\x42\x6a\x8f\xbf\xf6\x20\x35\x25\xe5\x5d\x4a\x09\x05\xd1\x82\xb5\x87\x90\x7e\xe5\x96\x51\x9d\xce\x8a\x1a\xa6\x96\x07\x01\x82\xd5\x79\xca\xa0\x70\x67\x26\x48\x18\x82\xc0\xfd\x79\xd0\x6d\x95\x90\x1d\x21\x99\x5b\x50\x97\x2b\xa4\x04\xb7\xdd\x0d\x78\xb1\xfb\xdf\x00\xe0\xd6\xad\x5b\xfc\xd6\xad\x5b\x78\xf1\xc5\x17\x01\x00\x5b\xb7\x6e\x65\x8a\x6d\xd0\xcc\x13\x08\x2d\x3e\x4e\x55\x66\x93\x93\x93\x7c\x72\x72\x12\x00\x42\xc4\xa5\x10\x43\x54\x1f\x9b\x32\x48\x1d\xd1\x42\x9d\x53\x10\x97\x73\x12\xb6\x6f\x34\x87\xed\x40\x08\x04\x6e\x56\xff\x2c\x4c\xa0\x13\xf8\x63\xcd\x44\x70\xb3\xb3\xfa\x1b\xd1\xe9\x56\x43\x23\x3b\x22\xca\xa5\x1a\xd7\x4e\x54\x3d\xfe\xe0\x09\x21\xfc\xbe\x3a\x49\xaa\xa8\xea\xa0\xeb\x09\x82\x3b\x1e\x42\x40\x1e\x6a\x90\x76\x94\x97\x10\x5a\x9d\x0e\x90\x5a\xf8\x12\xc2\x77\xef\xc8\x05\x2c\x69\x74\xfb\x2e\x59\xf8\x71\x42\x3d\x70\x43\xb0\xb9\x41\xfe\x37\x9b\x65\x50\x99\xce\x72\x92\x97\x97\x0d\xa7\x18\xb6\x5e\x82\x7a\x7c\x48\xfc\x2d\xd4\xb2\x3d\xf8\x34\x58\x35\xc4\x7c\x29\xe5\x94\xd5\x31\x89\x18\xc7\x3a\xfb\xf3\xe2\xc5\x8b\xea\xbb\x3e\x1f\x51\xf3\xd3\x4c\x5b\x88\xc3\x0f\x5d\x15\x8e\x66\xea\xf1\x36\x24\x80\xc0\xed\x1a\x1b\xe4\x07\x50\x38\xb9\xdf\x03\x0e\x1b\x76\xde\xe0\xf9\x8b\x70\xca\xe6\x5f\x3f\x3d\x58\xa0\x93\x86\x79\x8c\x77\x49\xe7\x0a\x7a\x9c\xaf\x12\xc4\x00\xa3\xdb\x0c\x51\x06\x76\x2b\xc6\x7c\x9d\x01\xae\x32\x86\x5a\x9a\xcd\x00\x14\xb4\xe3\x8d\x87\x94\x98\xea\x62\x9b\x1b\x94\x77\x85\x49\x04\x46\x01\x42\x8a\xbc\x7b\x3f\xae\xda\xb5\xb0\x48\x90\xf3\x21\x09\x8e\x1b\x54\xae\x99\x54\x42\xfd\xd8\xf9\x46\xe6\x72\x92\x97\x6e\x77\x58\x17\x0a\x15\x63\x83\x47\x87\x81\x44\x13\x41\xbd\xc1\xa4\x51\xc0\xf8\xbc\x3c\xb7\xdb\xab\x97\xca\x49\x5e\xf2\xd4\x5d\x0e\x80\x77\x76\x76\x32\xcf\xaf\x5f\x37\xb6\x5d\x5d\x5d\xc8\xe7\xdd\x23\xe4\xde\x56\x09\xde\xdf\xdf\xcf\xc6\xc7\xc7\xf5\x71\x57\xc7\xbc\x11\x2e\x86\x60\xdb\xb7\x6f\x9f\x7a\x58\xc9\xaf\xef\xd6\xad\x5b\xf0\x2e\x4f\x8e\xc3\x91\x28\x02\xf6\x61\x30\x50\x8f\x38\xa1\xcc\x92\x00\x38\x09\x3b\x0a\x91\xeb\x74\x4f\x28\xf3\xab\x24\x10\x08\x86\x43\xd2\x13\x12\x05\x78\x14\x42\x46\xd9\x0a\x71\xe5\xa2\xde\x1b\x95\x6f\x25\x9f\x3f\x36\xde\x36\x75\xbb\x9a\xa5\x29\x9e\x40\x25\xe1\x20\xab\x22\x76\x24\x89\xfb\x3a\xa6\x54\x9b\x14\x3d\x47\x0f\x51\x6b\x3a\x50\xd5\x4d\x52\xe9\xc2\x1f\xf7\x5a\x8a\xa6\x9c\xa4\x7f\x16\x59\x0f\x1c\x80\x25\x20\xca\xe7\xfb\x96\x7e\x39\x3c\x9d\x39\x6a\x3a\x2c\x4b\x9e\x24\xf7\x17\x4d\xa5\x4b\x58\x04\x76\x63\x60\x4b\x08\xd8\x09\x51\x79\xa7\xaf\xfc\x32\x08\x65\x08\xf7\x0e\x2d\x05\x17\x42\xf3\x75\xf0\xe0\x41\xb6\x7d\xfb\x76\x18\x86\x81\x44\x22\x01\x04\xf6\x17\x38\xe7\xbc\x56\xab\x61\x7c\x7c\x1c\x3f\xff\xf9\xcf\x61\x18\x06\xbc\xcb\xe9\x18\x1a\x33\x25\x6e\x18\x06\x1b\x1a\x1a\xc2\xde\xbd\x7b\x51\x28\x14\x02\x75\x30\x6c\xa3\xf0\xf5\xeb\xd7\xe3\xe0\xc1\x83\xb8\x76\xed\x1a\x4e\x9d\x3a\x85\xc5\xc5\x45\x1d\x97\x74\x9b\x22\xd4\x76\xd4\x47\x17\xeb\xf5\x51\x80\xdb\x09\x61\x05\x1e\x3f\xa1\xcc\x94\xe7\x1f\x21\xc5\x08\x57\x83\xf2\x6e\x3a\x94\x83\xbf\xc2\x1b\xe2\xbc\x51\x56\xbf\x0a\x04\x22\xe2\xe2\xde\x1b\xc5\xc5\xb5\x83\x88\x77\x00\xe0\xf3\xf3\xf3\xb2\xaf\x1c\x80\x5d\x4b\xb3\xd9\x5a\x86\x4d\x24\x16\xf9\x46\x1d\x49\x43\xcf\x00\x94\x7d\x1c\x52\x11\x57\x8d\xe1\xc0\xf6\x50\xa5\x86\x46\x2c\xfa\x66\x3f\x52\x2a\x10\x20\x2c\xe7\x13\xd7\x04\x0b\x1d\xce\xe7\x00\x50\x2a\x95\x90\xcb\xe5\x38\xdc\x83\x58\xa5\xdb\xf9\xea\x3b\x97\x7a\xca\xbf\xba\x6f\xa2\xed\x38\x79\x5e\x31\xdf\x0e\xf2\x43\x98\x18\xbc\x0e\xe0\xda\xaa\xca\x9b\xa3\x9d\x95\xb3\x70\xef\xe0\xb5\x00\xf0\xb9\xb9\x39\x14\x8b\x45\x7f\xac\x0f\x1d\x3a\xc4\x36\x6f\xde\x8c\x4c\x26\x23\x11\xcc\xfd\x13\x60\xfe\xe6\x0d\x22\x9e\x4a\xa5\xec\xa1\xa1\x21\x7e\xe2\xc4\x09\xcc\xcd\xcd\xe1\xd9\x67\x9f\x65\xb3\xb3\xb3\x0d\x99\xd5\xaa\x55\xab\xd8\x43\x0f\x3d\xa4\x7e\xce\xcd\x80\xeb\xf5\x34\x0c\x4e\x06\x13\x04\x87\x09\xce\x09\x36\x08\xb6\x61\x18\xf6\x96\x2d\x5b\xec\x0d\x1b\x36\xf0\x8b\x17\x2f\xb2\x93\x27\x4f\xca\xba\xa2\xf0\x2a\xf4\x1e\xbb\x75\x03\x61\x2a\xe2\xcb\x49\x5e\x92\xba\x81\xd0\xb0\xc0\x5f\x8b\xd0\x3c\x2d\xfe\x74\x0a\x40\x90\x80\xe9\xb0\xac\xc1\xc9\xb0\x13\xa2\xa1\xed\x12\xd1\x27\x35\x5f\x9c\xc1\x15\xd7\xf7\xa6\xae\xb6\x06\x03\xc5\xde\x7c\xf3\x4d\xee\x9d\x4a\xb3\x01\x58\x3c\x81\x52\xa9\x2b\xf1\x4e\xaa\xc4\x37\xd6\x5d\x58\xa8\x22\xab\x77\x0e\xc2\xf7\x40\xf9\x36\x01\xf9\x59\x49\x25\x18\x9d\xb8\xfc\x21\xd4\xea\xf0\x2c\x62\xe1\xae\x8e\xda\x8b\xdd\x89\x73\x08\xf6\xfa\xf3\x6a\xb5\x8a\x6c\x36\xcb\xbe\xfa\xd5\xaf\xf2\x13\x27\x4e\x70\xb8\x3e\xfb\x79\xce\x30\xf5\xd2\xc6\x85\x7f\xf1\x77\x8c\x86\x16\x12\x3d\x4b\x8f\x82\xb5\x09\x69\x49\x4c\xb4\x5b\x57\x5e\xd8\x34\xf7\x0d\x3b\x21\xc6\xe1\x2e\xa8\x59\x00\xf8\xe8\xe8\xa8\x7f\xec\xf7\x53\x9f\xfa\x14\xeb\xe9\xe9\x91\x44\x60\x92\x40\xba\x63\xd9\xc8\x77\x2f\x25\x07\xdb\xab\x89\xbe\x04\x27\x73\xc9\x74\xa6\xe7\xb2\xf6\xf8\x4c\x5b\x6d\xaa\xe6\xdd\xbb\xda\xd9\xd9\x69\x7f\xfa\xd3\x9f\xe6\xa7\x4e\x9d\x62\xa7\x4e\x9d\x52\xe7\x58\xce\x09\xef\xe9\xe9\x61\x8f\x3e\xfa\xa8\xdc\x8f\x65\x02\x48\x77\x54\x8c\xae\xa1\xd9\xcc\xde\x0d\xb3\xe9\x0f\xe6\x2b\xc6\x86\xa4\x43\xb9\xe5\x24\x9f\x9a\xc8\x57\x5f\xbf\xba\x6a\xf9\xe5\x5b\x85\xea\x88\xc3\x50\x36\x4d\xb3\xb2\x6b\xd7\x2e\xde\xd5\xd5\xc5\x7f\xf8\xc3\x1f\xea\x75\x47\xb5\x57\x27\x21\xe2\x02\xaf\x18\xbc\x04\x28\x4c\x4f\xd9\xf7\x2e\x45\xaf\x34\xac\xfd\xaf\xd1\x43\xdd\xcb\x44\x30\x1d\xca\x26\x1d\x32\x6b\x8c\xfb\xfe\x69\x65\x1d\xa2\x6e\x30\x1a\xf4\x47\xb7\x1b\xf4\xb4\x28\xc2\xa9\x83\xa9\x41\x9d\xa1\x60\x59\x16\x92\xc9\x24\x77\x57\x41\xa9\x34\xbf\xda\x78\xbd\x6b\xac\xf6\x61\x38\xc2\x84\xbf\xce\x00\x10\x79\x88\x2a\xdd\xad\x42\xee\xf4\x0c\x0e\xac\x00\x81\x2a\x22\x5d\xb3\x02\x22\xc4\x91\xe5\x86\xbe\x60\x17\xb1\x2f\x52\xfd\x4c\x24\x04\xaa\x59\x36\xb1\xd4\x99\xb8\x88\x60\x41\x8c\xcf\xce\xce\xa2\x5c\x2e\x73\x00\x28\x97\xcb\x3c\x9b\xcd\xca\x05\xb3\xe9\x8a\xe1\x8c\xfc\x74\xdb\xcc\x3f\xbe\xff\x5a\xe1\x33\x9b\xa7\xb3\xfb\x13\x1c\x86\xec\x7f\xb0\xe6\xe1\x36\x6a\x13\xec\x91\x55\xcb\xe7\x5e\xd8\x34\xff\x8d\xb2\xc9\xaf\xc0\xdd\x66\x51\x12\x42\x58\xb6\x6d\x73\x6f\x41\x0e\x9f\xfc\xe4\x27\x25\x31\x98\x10\x48\x77\x2f\x25\x07\xf7\x8f\xb5\xff\xd6\xfa\xd9\xf4\x27\xd3\x36\xdb\xc0\x84\xb7\x52\x0d\x58\xb5\x84\x98\x9e\x6d\xab\xbd\x72\xba\xbf\xf4\x95\xab\xdd\xcb\xa7\x6b\x8c\x97\x88\xa8\xb2\x7f\xff\x7e\x5b\x08\x81\x37\xdf\x7c\xb3\x6e\x7e\x14\x62\x48\x27\x38\xf2\xdb\x27\xda\x8e\x1c\xb8\x99\xff\xd3\x7c\x25\xb1\x9f\x80\xb4\x6b\x4f\x01\xf9\x2a\xd0\x5b\x4a\x7e\x7a\xc7\x44\xdb\xd4\x68\x67\xe5\x9b\x27\x37\x14\xbf\x38\x9d\xab\x8d\x02\x28\x0f\x0c\x0c\xd8\x4f\x3e\xf9\x24\xbe\xf1\x8d\x6f\x44\xa9\xe2\xa1\xf6\xe4\x6e\xd7\x00\x9f\xbd\xdf\x5d\xbb\x76\x91\x69\x9a\x8c\x88\x4c\x10\xf2\x5d\xe5\xe4\x96\xa1\x99\xcc\x61\x26\x37\x0f\xe8\x9a\x91\x27\x66\x03\x37\x23\x05\x1c\xd0\x33\xbc\x39\x09\xe7\xdd\xbe\xf2\x4f\xaa\x49\x31\x01\x60\x59\x08\xe1\xbc\xf2\xca\x2b\x8e\xd7\x87\x28\x62\x10\x5a\x9c\xfc\xad\x33\x55\x50\x8f\xd0\xc2\x8b\x93\x7a\x48\x9c\xad\x24\xf3\x52\x44\x1a\x01\x10\x83\x83\x83\x94\xcf\xe7\x09\x40\x02\x84\x94\x6d\x52\x22\x37\x63\xef\x4a\x55\x44\x8f\x1c\x0c\x52\xce\x40\xa8\xdb\x23\x48\xea\xfb\xe4\x22\x79\x18\xb7\x5d\x10\xe4\x62\x99\x77\x1a\x5f\x59\xd7\x91\x79\x94\x1e\xfa\x3d\x23\xcc\xac\x35\x9f\x59\x58\x6d\xbc\x0c\xa2\x09\x00\x8b\x00\xac\xaf\x7d\xed\x6b\x8e\xcc\xe2\x38\x0e\xad\x5b\xb7\xce\x97\xf2\x44\xe4\xd4\x0c\x61\x8d\x74\x2d\xdf\x98\x69\xab\xcd\x65\x6a\x89\x4c\xca\xa1\x4c\x82\x53\x02\xee\x01\x47\x6e\x25\x45\x75\xb2\xbd\x36\xfa\xca\xd0\xfc\x8f\x5f\x5f\xb7\xf8\xc3\x8a\xc9\x2f\x82\x70\x13\x2e\x41\x2c\x11\x91\x7d\xfa\xf4\x69\x71\xfb\xf6\x6d\xf1\x89\x4f\x7c\x82\xad\x5e\xbd\x5a\x72\xee\xdc\xb6\xa9\xec\xfb\x1f\xbe\xd8\xf5\x37\x03\xc5\xd4\x53\x26\x67\xab\x19\x28\x45\xa0\x04\x04\x31\x46\x94\x34\x38\x75\xe4\x2c\x63\xe7\xd0\x4c\xe6\xb1\xce\x65\x23\x75\xab\x60\x5d\xb0\x13\xee\x35\x96\xfd\xfd\xfd\x7c\x61\x61\x01\xb3\xb3\xb3\xfe\x9c\xfe\xce\xef\xfc\x0e\xf3\x54\xb0\x74\x82\xa3\xeb\xd0\x48\xc7\x53\x87\x47\x3a\xfe\x2a\x53\x4b\x6c\x61\x44\x46\xa0\x8a\xc9\xe1\x26\x4a\x08\xca\x75\x2e\x1b\x07\x87\x66\x33\x07\x26\x73\xd6\xe9\xc5\xb4\xb3\x08\xc0\x49\xa7\xd3\x76\x36\x9b\xa5\xd1\xd1\xd1\x28\xbc\x91\xb8\x22\x12\xea\x8b\xfa\xbb\x79\xf3\x66\x78\xb7\xb3\x25\x85\x10\xb9\x7c\xc5\x18\xda\x3c\x9d\xfd\x20\x03\x31\xdd\xf0\x0a\xa1\x0f\xa0\x1c\x87\x94\x54\x22\xcf\x56\x13\x5d\xe9\x29\x3f\x53\x4a\x39\x63\xc2\xfd\x40\x8a\xcd\x18\x83\xe7\x79\x50\x09\x53\xed\x4f\x14\x32\xab\x04\x22\xc2\xad\x87\xca\xcb\xb2\x3a\x51\xa8\x84\x26\x50\x5f\xb7\x8c\x03\x00\x91\x4c\x26\x69\xdd\xba\x75\x10\x42\x10\x11\x19\x9c\x90\x16\xc6\xff\xd7\xdd\xbb\x06\xd9\x71\xdd\x77\x62\xbf\xff\xe9\xbe\xcf\xb9\x73\xe7\x89\x99\xc1\x00\x98\x19\xbc\x08\x3e\x20\x90\x20\x48\x9a\x14\x29\x93\xa2\x2c\x52\xb2\x2d\x59\x96\x14\x3b\xce\x87\x38\x4e\x45\xae\x24\x9b\x7c\x70\xaa\x92\xad\x64\x3f\x6c\x55\xb6\x52\xa9\xdd\x24\x55\xa9\xad\xda\xa4\xe2\x8a\x2c\x31\x8e\x37\x72\xed\xca\x2b\x4b\x36\x6d\x8b\x22\x25\xe8\x45\x8b\x14\x49\x90\x04\x21\x02\x18\x60\x06\x83\x01\x30\xef\xc7\x9d\x3b\xf7\xd1\xb7\xfb\xfc\xf3\xa1\xfb\x74\x9f\x7b\xe6\xf4\xbd\x77\x40\x38\x65\xa7\xab\x66\x6e\xf7\x79\xff\xcf\xf9\xbf\xcf\x8b\x32\xe5\xd5\xe0\x2c\x31\x39\x6d\xf6\x41\x3c\xf3\xac\xf4\xfd\x84\x38\x74\x77\xab\x52\x4f\x12\xaf\x5d\x6c\xc5\x46\x73\x3b\x5a\x9e\x18\xba\xc4\x76\x6b\xe5\x68\x63\xf1\xa1\xfc\xd7\x82\xac\xb8\x86\x70\x65\xe7\x2e\x33\xfb\x6f\xbf\xfd\x76\x3c\xd8\xab\xab\xab\x3c\x3e\x3e\x4e\xe5\x72\x99\x99\x39\x20\xa2\x16\x33\x7b\x2c\xa8\xb6\x51\xf4\x57\x2e\x8f\xd5\x3e\xb8\x32\x56\xbb\x74\x7d\xb4\x71\xf9\xfa\x68\xe3\xd2\xc5\xc9\xdd\x37\xdf\x3e\xbc\xf3\x83\x0b\x87\x76\x5e\x5d\xeb\xf3\xdf\x0d\x88\xaf\x13\xd1\x2d\x66\x5e\x25\xa2\x2a\x33\x37\x2b\x95\x8a\x7c\xe5\x95\x57\xe4\xf3\xcf\x3f\x2f\xa6\xa6\xa6\x94\x64\x28\x9f\x58\x2b\xfc\xd2\xaf\x5c\x19\xfe\xdf\x0a\xbe\xb8\x0f\xba\x17\x4b\xd7\x04\x23\x49\x44\x4c\xf9\x91\x5a\xe6\x89\xb1\x6a\x76\xf4\xfa\x48\xfd\xad\xc0\x81\x07\x20\x98\x98\x98\x90\x73\x73\x73\xe4\x79\x1e\x7f\xfa\xd3\x9f\x16\xa3\xa3\xa3\x82\x88\xf2\x60\x94\x1f\xb9\x5d\xfa\xf5\x27\x6e\x0c\xfc\x0f\x2e\xd3\x40\x58\x1e\x47\x6a\x27\x62\x24\x8c\x25\x70\xa8\x8d\x4c\x4e\x6d\xe5\x1f\x5e\x1c\x68\xbe\x59\xcb\xc9\x6d\x66\x0e\x46\x46\x46\x82\xe5\xe5\x65\xec\xec\xec\x98\x8c\x56\xe1\x0d\x1c\xad\xbb\x75\x29\x41\xc5\x62\x11\x93\x93\x93\x40\x78\x10\x6f\x5f\x2e\x10\xe3\x0f\x2c\x17\x3f\x2d\x24\xb9\xca\x28\x6b\x5b\xab\x64\x79\x57\xde\x10\x6d\x70\xc5\xcd\xa1\xc6\x4f\xd7\x8a\xad\x59\x22\xaa\x02\x68\x45\xfb\x21\x00\xbb\x84\x20\xe3\xbd\x4d\x8a\x59\x50\xc6\x94\x2c\x3a\x5c\xed\x86\x8f\x01\xaf\x11\xa6\x4b\x22\xb1\xba\xba\x2a\xcf\x9e\x3d\x0b\x21\x04\x01\x10\x44\x94\xf1\x0a\x22\x28\xec\x04\x33\xb9\x1a\x4f\xc6\x3c\x21\x42\x6a\xb6\xf6\x8d\x66\xc4\x2a\xce\x1f\x0f\x68\xf8\xad\x6d\xfe\x81\x76\x14\x47\x9c\x28\x56\xa5\x08\x72\xf9\x68\xf6\x2f\x2a\x63\xee\x8f\x41\x74\x87\x99\x37\x01\x78\x9b\x9b\x9b\xf2\xd2\xa5\x4b\xa4\xc1\xc0\x8b\x8b\x8b\x74\xe4\xc8\x11\x2e\x16\x8b\x12\x40\x10\x19\xc5\x0d\x10\xaa\x4c\xa8\x34\x5c\xb9\xb2\x53\x08\x16\x37\x8b\xfe\xb5\xed\x9c\x7f\xbd\x99\xe5\x79\x26\x2c\x82\x70\x8b\xc2\xb2\xd7\xa3\xb1\x6a\xee\xec\xec\xc8\x97\x5f\x7e\x19\x85\x42\x81\x9e\x79\xe6\x19\x10\x91\x03\xa0\x58\x6e\x38\xd3\x2f\x5e\x1e\xfe\x17\x7d\x9e\x7b\x0a\x51\x1b\xd5\xd3\xb6\x8b\x52\xe7\x0f\x44\xa2\xdc\x70\x1e\x04\x68\x6d\x71\xb0\xf9\x21\x83\x3d\xd7\x75\x83\x72\xb9\xcc\xd5\x6a\x95\x1e\x7f\xfc\x71\x08\x21\x1c\x00\x7d\x03\x0d\xe7\xe8\x0b\x97\x47\xfe\x97\x6c\x20\xc6\x11\x17\xa1\xfa\x92\xd4\xfe\x29\x20\x66\x42\x61\x1b\xb2\x01\x1d\xec\x6f\xba\xf9\x6b\xa3\xf5\x37\x58\xa0\x4e\x44\x72\x6c\x6c\x4c\x5e\xbe\x7c\x99\xa4\x94\xa6\x46\x20\x00\xb0\xae\x66\xd8\x0c\x0d\x44\xee\x46\x59\xcb\x04\xd5\x96\xc3\xd5\x84\x3a\x75\xaa\x54\x83\x1f\x29\x0d\xac\x30\x2c\x72\xe5\x25\x98\x28\x06\xea\xee\x21\x42\x7c\xb1\x86\x88\x6e\x9c\x51\x0d\xb2\x4d\xaa\xa4\x79\x93\xd2\x26\x5a\x74\x2f\x87\x59\xae\xf9\xd8\xe2\x6c\x75\x23\x3a\xaa\xdf\x47\x78\x67\xf2\x56\xe0\x60\xf1\xf6\x7d\xf9\x7f\xe7\xe7\x68\x0b\x0a\x46\x6d\x8d\x57\xc8\xe9\x11\xdb\x09\xc9\xa1\x64\x11\x97\x67\x44\x33\xfc\x50\x73\x79\x9a\x9d\xa1\x14\xfa\x84\x90\xe2\x78\x00\x3b\x23\xce\xa5\xb5\xe9\xec\xab\x20\x52\x37\xb7\x7a\x00\xfc\xe8\x1a\x63\x7d\x2c\x45\xbd\x5e\xc7\x5f\xfe\xe5\x5f\x62\x7d\x7d\x3d\x74\xc1\x32\x57\x11\xaa\x3f\x8b\x00\x66\x89\xe8\x43\x00\x17\x99\xf9\x22\x11\x5d\x04\x70\x09\xc0\x2c\x33\x2f\x30\xf3\x5a\x44\x0c\x5e\xa5\x52\x91\xdf\xf9\xce\x77\xb0\xb3\xb3\x23\xb7\xb7\xb7\x65\xbc\x92\x96\x51\xfe\xd8\x9d\xd2\x6f\x0c\xd4\xdd\x47\x93\xf5\x5b\xac\x44\x01\x42\x2b\x2a\x7c\xd7\x6d\xa8\x08\x29\xdc\x87\xee\xf4\x7d\x65\x78\x37\x73\x82\x88\x8a\x00\xdc\xe9\xe9\x69\xfc\xc6\x6f\xfc\x86\x3a\xcc\x21\xcb\xcc\xe5\x33\xb7\x4b\xbf\x59\x68\x89\x63\xca\x36\x8b\x85\x82\xea\xc7\x98\xe2\x38\xf9\x8d\xe6\x69\x8e\x6c\xe5\x3f\x3f\xb5\x99\x7b\x14\xe1\x3e\x71\x77\x60\x60\x40\xb9\x7a\x75\x97\x6b\x3c\xce\xa9\x13\x21\x6f\xbf\xfd\xb6\x0c\x1b\x1f\xba\x1b\x3d\x97\xab\x4d\x57\x56\xdb\xf6\x90\x6b\xdc\x40\x9f\x58\x4d\x1c\x18\x1c\x73\x05\xd5\xd6\xe1\x5a\x66\x8a\xa2\xf5\x30\x00\x10\x6d\xdc\x4f\xf3\x32\xd9\x8c\xe2\xb4\xb4\x7a\x7c\x37\x27\x81\x99\x56\xcf\x63\x35\xec\xcf\x9f\x3f\x2f\xa5\x94\xca\x8d\x59\x01\xb0\xd6\x2c\x89\x0f\x6f\xdd\x9f\xfb\xb7\x41\x06\x35\x00\xa0\x36\xae\xae\x2d\xd3\x20\x0d\xf1\x63\xbd\x01\x31\x77\x23\x95\x46\x9f\xcd\xa6\x98\x4a\x62\x89\xc1\x00\x9a\x7d\xb4\x74\xeb\xfe\xdc\x9f\xca\x0c\x2d\x20\x44\xec\x1a\x00\x7f\x7d\x7d\x1d\xb3\xb3\xb3\xd6\xfe\xab\xd7\xeb\xf2\x9b\xdf\xfc\xa6\xbc\x7c\xf9\xb2\x6c\xb5\x5a\x6a\x35\x6a\x05\xc0\x1a\x33\x2f\x01\x58\x24\xa2\x45\x00\x8b\xcc\xbc\xc4\xcc\x2b\x44\x54\x21\xa2\x5a\xab\xd5\xf2\x66\x67\x67\xe5\x37\xbe\xf1\x0d\x19\x1d\x23\x8f\xdf\xf9\x9d\xdf\x89\x3d\x4a\xd9\x80\x86\x8f\xad\x17\x7e\x95\x98\x42\xf7\x6a\x64\x07\x29\x9b\x48\xdf\xf1\xa7\x2f\x6f\x54\xfd\x54\xf0\xc5\xe1\xe3\xeb\x85\x67\x01\x14\x29\xb9\x22\x4b\xf5\x7f\x3e\x17\x88\xe1\x23\x9b\xf9\xe7\x48\xdb\x5e\xab\xb4\x4c\xc5\x33\xe2\x2d\x09\xb1\x13\x23\x8c\x60\x10\x1c\x89\xd2\x7d\xab\xc5\x17\xd5\x51\x96\x00\xc4\x0b\x2f\xbc\xa0\xcf\x3d\xb4\x8d\x7f\xaa\xfb\x69\x74\x74\x54\xe7\xbc\xbe\xe7\xc8\x5a\x3d\x23\xb7\x34\x1e\xd8\xf6\x13\x2f\x62\x6b\x53\x62\xb4\xd4\xd1\x0d\xa5\x83\x75\xf7\xb0\x23\xa9\xc8\xcc\xe6\x2c\xb9\x0d\x21\xd1\xe1\xbd\x9b\x27\xca\x04\xb6\x93\xcb\x56\x7f\xd2\xbc\x53\x22\xba\x1d\xd5\x47\xb8\xde\x7e\x83\xc1\xb7\xb7\x0e\xba\x3f\xba\x73\x32\xf7\x17\xec\xc0\x6b\xef\x17\xd6\x46\x5e\x89\x71\x40\xf3\x6b\xb6\x73\x37\x85\x48\xb1\x64\xd0\x46\x3b\x2a\xa3\x95\xa3\xad\x9b\x1f\xcb\xff\xdf\xcd\x92\xb8\x04\x60\x89\x99\x2b\xcc\xe1\x0e\x44\xc3\x43\xa3\xdb\x58\x31\x8c\xe7\xcf\x9f\xc7\xcb\x2f\xbf\xac\x08\xc7\x8b\xf6\x23\xd4\x10\x12\x48\x15\xe1\x92\xea\x9a\xda\x54\x73\xf5\xea\x55\xf9\xb5\xaf\x7d\x4d\xbe\xf6\xda\x6b\x7a\x9f\xa2\xbf\xbf\x1f\x88\x4e\x39\x2f\x37\xdc\xc9\xfe\xa6\x73\x2c\xd6\x3f\x35\x15\x49\x39\x12\x34\x10\x22\x0f\x9c\x8a\x03\xc0\x24\x8e\x6c\xe5\x9e\x44\xc8\xc1\xf5\x89\x5b\x01\x20\xdb\xe7\x39\x13\xe5\xa6\x3b\xa3\xfb\x16\xe2\xed\x05\xea\x9d\xb4\xfa\xb4\x06\x28\x2d\xe5\x40\x35\x7b\xc6\x95\xc9\xd9\xb1\x23\x23\x23\x31\x2c\xc6\x23\x6c\x13\x73\x00\x80\xb5\xb5\x35\xa9\xe9\xc2\xbe\x24\x6e\x6c\x15\xfc\xdb\x93\x95\xdc\x23\xaa\x61\xf1\xf8\xb2\xe6\x59\x81\xae\x37\x72\x24\xfd\x29\x6e\x68\xb9\xe1\x1e\x2e\xb4\x44\xb9\x95\x0b\x2f\x7c\xcc\xe5\x72\x98\x9a\x9a\x12\x0b\x0b\x0b\x7a\xa7\xdb\xe6\x29\xd2\xc2\x3a\xcd\x25\xa4\xce\x2f\x60\x2f\x61\xb4\xa9\x1a\xb6\x72\x5e\x79\xe5\x15\x7d\x07\x57\x05\xc0\x12\x88\xb2\x6b\xd3\x99\xbf\x92\x0e\xf9\x93\x97\x1b\x9f\x77\x5b\x28\x29\xae\xa8\x75\x89\xc6\xc6\x90\xd8\x18\xfa\x7b\x9b\xe3\x83\xda\xbc\x4a\x0c\x46\xa3\xe4\xdc\xbe\x79\x3a\xff\x8d\xda\xa0\x78\x13\x44\xba\x3a\xe3\x2f\x2e\x2e\xe2\xe6\xcd\x9b\x26\x6c\x3a\xdc\x71\x3f\xac\xac\xac\xe0\xb5\xd7\x5e\xc3\x6b\xaf\xbd\x86\x13\x27\x4e\x88\x91\x91\x11\x39\x31\x31\x11\xc3\xba\xba\xba\x8a\x8d\x8d\x0d\x5c\xbe\x7c\x59\xa9\xcb\xd6\xfe\x8b\x66\x9f\xb3\x45\x4f\x4c\x38\x92\x8a\x31\x5d\x43\xa9\x82\x3a\x0c\x1a\x30\xaa\x2b\x62\x05\x1b\x28\x7a\xce\x04\x31\x8a\x4c\xc9\x34\x80\x2a\xbf\xe0\x85\x67\xbb\x86\xf9\xda\x97\xaf\x93\x5a\x2f\x16\x75\x5d\x88\x77\xed\x2a\x3c\xc0\xc8\xb7\xc4\x58\xc6\xa7\xb2\x27\x64\x96\x88\x44\x2e\x97\xb3\xf5\x95\x00\xda\x77\xcc\xd9\x00\x57\x61\x3e\x88\xbc\xf5\xbe\xd6\xa2\x9a\x84\xd3\x1c\x1e\x26\xd3\xd3\x40\xd7\x0c\xc7\xe8\x33\xef\x8b\xe1\xc1\xba\x3b\x51\xc9\xf9\x1f\x22\x34\x50\xc5\xc2\xc2\x82\x5a\xdb\xde\xd5\x4f\xdc\x21\xcc\x44\x60\x1b\xc2\x77\x72\xbd\xda\xea\xd8\x93\xf6\xa7\x3f\xfd\x29\x3e\xf5\xa9\x4f\xf9\x8e\xe3\x78\x08\xf7\x12\xbb\x20\x12\x1b\x87\xdd\x57\x5a\xf9\x42\x65\xf2\x72\xf3\xf3\xf9\x1d\x39\xb9\xa7\x64\x6d\x31\x13\x69\xa3\x98\x38\x20\x0c\xe9\x12\xb1\x51\x29\x48\xee\x1c\x70\x3f\xbc\x75\x7f\xee\xcf\xbc\x22\xbd\x0f\xa2\x79\x84\x7b\x85\x2b\x00\xbc\x7a\xbd\x2e\x5f\x79\xe5\x15\xf3\x6c\x5c\x5b\xdb\xf7\x10\xff\xec\xec\xac\x9c\x9d\x9d\xb5\x79\xef\xd4\xbb\x59\x5e\x5c\x4e\x34\x8f\xe4\x22\xe4\xea\x86\xd2\x10\x21\x24\x25\x5c\x1a\x0a\x64\xc5\x27\xda\x96\x40\xb3\x4b\x8c\x6c\x44\x10\x40\x84\x17\xcc\x2c\x3c\x97\xa5\xa4\xb8\xce\x36\x29\x64\x28\x22\x51\x97\x25\x1f\xaa\x9e\x96\xc3\x9e\x14\xf1\x92\x75\x91\xcd\x66\xd3\xfa\x64\x8f\xe1\x19\x8b\x58\xc7\x71\xc4\xfa\xfa\xba\xca\xe4\x03\x68\x6c\x14\x5a\xb7\x24\xc1\x57\x2a\x50\x64\x5e\x47\xf4\x11\xad\xe8\x54\x36\xa1\xc6\xf1\x62\x5d\x0f\x80\x60\xca\x8f\xef\x64\x4f\x51\x78\x50\x96\x0b\x00\x91\x4e\x67\xb6\xc7\xd6\xbe\x6e\xef\x6d\xc0\x69\xf1\x9d\x54\x24\x05\xe3\x9e\x3e\xd0\xc2\xd5\x23\xe6\xe7\xe7\x65\x74\x69\x89\xda\x12\xb9\xc1\xcc\x8b\x20\x9a\xdd\x19\x75\x7f\x74\xed\xf1\xc2\xff\xbe\x3a\x93\xf9\xa1\x9f\x41\x8d\xdb\xb8\x7e\xdc\x51\x88\x95\xcc\x3d\x87\x7a\x45\x3c\x8d\x01\x06\xa1\x59\xa4\xb5\x5b\x0f\xe6\xbe\x75\xe3\xe1\xfc\x57\xbd\x3e\xf1\x56\x44\x0c\x4b\xcc\xbc\x05\xa0\xd1\x6c\x36\xe5\x77\xbf\xfb\x5d\xfd\x22\x74\xb3\x0f\x6c\x0e\x07\x9b\x9d\x21\xba\xe4\xd1\xbf\xf5\xf6\x8a\x66\x46\x36\xf4\xb3\x5d\xf5\x95\xb8\x60\x05\x8b\x32\x76\x55\xa2\x28\x2c\x0a\xae\x65\x64\x45\x1d\xbb\xad\xaf\x84\x26\x22\xd4\x33\x41\xad\xe9\xca\x8a\x72\xce\x28\xf3\x2b\xb1\x4d\x6c\xfd\xc7\x91\x6a\x05\x30\x31\x6e\x0e\x35\x2e\x36\x5c\xa9\xb6\xb9\x4a\x63\x95\x75\x9b\x7a\xa9\x28\x72\x8f\x7a\x10\x04\x81\x6c\x34\x1a\x22\x5a\xdd\xe8\x03\xf0\xb6\x0b\xfe\x52\xcb\xe1\x9a\xe3\x53\x19\xa0\x36\x97\x61\x0c\x24\xc5\x0e\xc6\xb8\xc0\x84\x37\x86\x8d\x9d\xa8\x64\x4f\x93\x44\x5e\x52\xb8\xcb\x6b\x68\x68\x28\xcd\x10\xb6\x49\x8c\x4e\xef\x36\xee\xdf\xed\x3b\x4d\x9a\xa4\xd6\x27\x84\x10\xb3\xb3\xb3\xf2\xc4\x89\x13\x3e\x42\xbd\x3b\x92\xa2\xf0\xfc\xac\xa8\xde\xbe\x3f\xb7\xb6\x7e\x38\xf3\xf3\x91\x5b\xad\x27\xca\xcb\xfe\xfd\xd9\x06\x0f\x92\x84\x6b\x1e\xdc\xd5\x7e\x86\x4d\xa8\x54\x07\x0e\xbc\x46\xc9\x59\xd9\x9c\xcc\x5c\xd8\x3a\xe8\xbe\xe9\x67\x69\x01\x44\xb7\x01\x2c\x21\x34\x82\xab\x44\xd4\xf0\x3c\xcf\xff\xab\xbf\xfa\x2b\xac\xac\xac\x98\x6d\xee\x64\x63\xd9\x90\xdc\xb4\x37\x3a\x32\x8f\x73\xe7\xce\xc5\x79\x89\xc8\xdf\xca\x07\x6d\x67\xbb\xc6\xea\x1f\x25\x26\x34\xa3\x9d\xf0\xa1\x9d\xdc\x27\xc1\xf2\xf2\x58\xed\x0d\x84\x4c\x57\x2d\x20\x55\xe3\xe1\xd7\xb2\xb2\x72\xa7\xec\x5d\x29\x37\x9d\xc3\xba\x81\x92\x08\x5c\xad\x3f\xd5\xea\x88\x58\x4a\x30\x02\x82\x7f\x63\xa8\x71\x11\xd1\xc5\x9e\x00\xb0\xbb\xbb\x0b\x21\x84\x88\x9c\x24\x6d\x7d\xd5\xe9\xbc\x7c\x71\xe3\xc6\x0d\x1c\x3e\x7c\x58\xe9\x92\xde\x6e\x36\xd8\xd8\xcd\x06\x6b\xb9\x88\x20\xda\xf4\xc3\xa8\x81\xca\x93\x62\xaa\x91\x89\xa1\x45\x38\xb0\x9b\xbd\xbf\xd8\x12\xc3\xbb\x39\xb9\xc4\xcc\xf1\x2d\x9d\x68\x47\x4e\x9b\x1e\x6f\x0e\x20\xb0\x17\x91\xd3\x7e\xf5\x72\xf4\xc7\x56\xa6\xfe\xec\x29\x47\x4a\x29\xcf\x9f\x3f\x2f\x88\x48\x1e\x3b\x76\x2c\xde\x27\xce\xe1\x11\x9d\x55\x22\xaa\x34\xfb\x9d\xb5\xdb\xa7\xc4\xd5\x95\xa3\xd9\x43\xc5\x6d\x39\xd3\xb7\x19\xcc\x14\xb7\x83\x89\x6c\x5d\x0e\x0a\x1f\x79\x62\x76\x01\x92\x2c\xc8\xf7\x33\xa2\xe1\x15\xc5\xda\xee\x90\x58\xdc\x1d\x72\xe7\xeb\xfd\xe2\x86\x74\x68\x05\xe1\x71\x2a\xea\x74\x8a\x2d\x84\xc4\xe7\x79\x9e\xe7\x7f\xfd\xeb\x5f\xef\xe6\x50\xe8\xf6\xec\x97\x71\x00\x80\x7c\xeb\xad\xb7\x70\xee\xdc\x39\x15\xef\x37\x5d\x59\x99\x1f\xae\x5f\x78\xf8\x76\x69\x2a\xf6\x3a\xb6\xd1\x7d\xc2\x38\x15\x63\xd6\xe7\x29\x76\x73\xc1\xda\x8d\xe1\xc6\xfb\xd0\x2e\xcf\x89\xd2\x84\x86\x3f\xa1\x76\x69\x62\xf7\xc7\xc7\xd7\x0b\xcf\xb8\x01\xb2\xb1\x57\x29\x2c\x3a\x46\xb0\xc4\xd3\xa4\xd5\x45\x84\xb5\x3e\xef\xfa\xcd\xc1\xc6\x2f\x18\x5c\x23\x84\x0b\x13\xa5\x94\x48\x68\xa1\x7d\xdc\x6d\x87\x1d\xc7\x8f\x3a\xd0\x49\x49\x08\xcf\xe5\xca\x6a\xc9\x9b\x1f\xae\xb9\xc7\xe2\xd9\x56\x06\x92\x73\x4c\x09\xb1\xac\x22\xcd\xbc\x69\xb3\xc0\x81\xbe\xa6\x33\x39\xba\x9b\x3d\xb6\x9b\xad\xcf\x46\x6d\xf0\xcf\x9c\x39\x83\xf7\xde\x7b\xcf\x1c\x80\x5e\xf4\x7d\x93\x88\xcc\xfc\x69\x79\x3b\x11\x98\xfe\x6e\x1a\xdb\x00\x42\x09\xfa\xea\xab\xaf\x62\x75\x75\x55\x3c\xf6\xd8\x63\xbe\xeb\xba\xb5\xa8\x9f\x1a\x08\x3d\x36\x6b\x20\x1a\xf4\x73\xb4\x58\x19\x13\x97\x2b\x63\x6e\x09\x8c\x22\x31\xe7\x85\x8f\x02\xc9\xf0\x7e\x3f\x76\xc8\x0b\x5c\xd4\xd1\xee\xed\xd9\xd2\xfe\x2a\x51\x78\x03\xd1\xa6\xfc\x97\x5e\x7a\x29\x8d\xd3\xeb\xfd\xa2\xf7\x4d\xa7\x38\xdb\x3b\x2c\xe9\x01\xec\x39\xdb\xb5\x01\x42\xf5\xbd\xc9\xea\xf7\x8f\xaf\x17\x3e\x5e\x6a\xb8\xa3\x8a\x1a\xda\x6d\xc9\xf0\x89\xe7\x28\x34\xd9\xf1\xde\xc1\xea\xf7\x76\x72\xc1\xed\x08\xee\xb6\x13\xc0\x11\xae\xcf\xaa\x2c\x0c\x35\xde\xfd\x70\x6c\xf7\xc7\x0f\x2e\xf5\x3d\x2f\x94\xdb\x55\xa9\xe7\x7b\x6c\xaf\xa4\x56\xcf\x91\xb5\x9f\x4d\x57\xfe\xa2\x99\xe1\x25\x42\x38\x9f\x02\x40\x5e\xb9\x72\x45\x87\xad\x0d\x76\xb5\x74\x43\x77\x8c\xa9\x48\x26\x22\xba\xff\xfe\xfb\x95\x01\x95\x65\x70\x69\xa0\xe1\x4e\x4f\x6f\xe6\x1f\x0d\x0f\x0e\xd0\xcf\x1b\xd5\x36\xae\x53\xe2\x05\x50\x9e\x95\xb8\x74\x02\x04\xe0\x56\x73\xc1\xcd\x9b\x43\xcd\x0b\x44\xb4\x0b\xc0\xab\xd5\x6a\x3c\x3f\x3f\xaf\x0f\x80\xde\x16\x68\x6d\xe4\x08\x08\x36\xc2\xf7\xb4\xdf\x80\x0d\xc6\xb7\xe1\x0c\x8c\xff\x54\x07\x99\xf9\x48\x0b\x8f\xc9\x7b\x79\x79\x99\xd7\xd7\xd7\x69\x68\x68\x48\xcd\x06\xb7\x90\x9c\x3c\xb1\x8b\x10\xa1\x37\x01\x6c\x80\xb0\x01\xa2\x55\x76\x68\x49\xba\x74\x5b\xba\x74\x8b\x1d\xba\x0d\xa2\x5b\x00\x6e\x01\xb8\x1d\xfd\x2d\x23\x94\x0a\x9b\x08\x97\x64\x34\x99\xb9\xb5\xb8\xb8\xc8\x2f\xbf\xfc\x32\x5a\xad\x96\xad\x9d\x26\xac\x66\x9f\x75\xea\x07\x5b\x9c\x82\x51\xef\x6b\x78\x9e\xc7\x13\x13\x13\x6a\x6d\x97\x00\x90\xa9\x67\x24\x3c\x97\x31\xbd\x95\x3b\x2d\x58\x38\xaa\x53\xe3\x27\x51\xfa\xdb\x66\xf0\x6f\x0e\x36\x2f\xfe\xf8\xd8\xd6\xbf\x0e\x1c\xcc\x03\x58\x8d\xfa\x4b\xdf\xd7\xc1\x08\xd7\x8f\xb9\x77\xca\xde\xd6\x68\x2d\x73\x78\xa0\xee\x8e\x13\xa2\x72\xda\xd4\xcf\xe4\x3f\x33\x10\x38\xec\xfd\x6c\xba\xf2\x17\xbf\x18\xdf\xfd\x2e\xc2\xb5\x58\x1b\x08\x4f\xef\xf3\x5f\x7e\xf9\x65\x1b\x5e\x01\x08\xd7\x32\x29\x80\x75\x6e\x42\x00\xa8\x5e\xaf\xe3\x91\x47\x1e\x81\x10\x82\x98\x39\x4b\x44\x7d\x04\x0c\x3c\xb0\xdc\xf7\x49\x42\xb8\xce\x3d\xf2\x95\x44\x9e\xa4\x58\x26\x42\xa7\x56\xcd\xe1\x06\x35\x41\x93\xf3\x45\xe6\xe2\xc1\xea\x5f\x73\x78\xd7\x5c\x33\x97\xcb\xc9\xf7\xdf\x7f\x5f\x35\x4e\x71\x21\xdd\x99\x10\xb7\x4b\x03\x44\x0f\x33\xc8\x6e\x0f\x72\xe8\x70\x9a\x08\x60\x23\x30\x33\x9d\x5e\x8f\xd4\xe3\xb7\xb7\xb7\x79\x7e\x7e\x9e\x5a\xad\x16\x0f\x0f\x0f\x4b\xd7\x75\x03\x84\x84\xd1\x44\x42\x18\x3b\x50\x84\x11\xfe\xad\x03\xf1\x09\x73\x6b\xd1\x12\x89\x75\x66\xde\xa4\xf0\xdc\xdb\x5d\x84\x52\xa1\xb5\xbb\xbb\x2b\x5f\x7a\xe9\x25\x39\x3b\x3b\x4b\x9a\x01\xdd\xd6\x06\x4b\x7b\x6d\x30\xdb\xd2\xa4\xa5\xb5\x31\x1c\x00\xc0\xd5\xab\x57\xf9\xdc\xb9\x73\x11\xcf\x63\x22\x22\x67\xad\xd4\xaa\x78\x0e\x63\xa2\x92\x3b\xea\x4a\x64\x58\x5b\xde\x63\x2e\xed\x61\x00\x37\x86\x1a\x17\xbf\x77\x6a\xf3\xa5\x7a\xb8\x78\xf0\x0e\x42\x69\xd8\xac\x54\x2a\xfc\xd2\x4b\x2f\xc9\x33\x67\xce\xa8\x0d\x46\x00\x40\xbe\xc3\xf2\xc6\x50\x63\x31\x23\xa9\x38\xb2\x9b\x39\x18\x9e\x1f\xab\xf4\x23\x24\x2a\x3b\x01\xbb\x39\x7f\xeb\x27\x47\xb7\xbf\xf3\xee\xa1\xea\x5f\x4a\xe2\x05\x22\x5a\x62\xe6\x0a\x11\x79\x97\x2f\x5f\xe6\x85\x85\x85\xb4\x3e\x68\xbb\xa7\xda\xe4\x94\x04\x40\x96\x4a\x25\x3a\x70\xe0\x00\x00\x38\x44\x94\x6f\xba\x32\xff\xe0\x52\xdf\x2f\xe7\x02\x51\x62\x84\xcb\x90\x95\x4f\x3d\x9e\x91\x8c\x15\xbc\x44\x4a\xc4\x4b\xc1\xa3\xf4\x39\x5f\x0c\xde\x18\x6e\x9c\xaf\xe6\x82\x25\x00\x8d\x4c\x26\xa3\x16\xa6\xe9\x9c\x4f\x1f\x6c\x89\x04\x19\x55\x3a\x18\x69\x75\x4e\x6e\x0e\xb6\x0a\x33\x89\xcc\xc6\x59\x6d\xaa\x9a\x5e\x37\xcc\x3c\xbe\xef\xf3\x9d\x3b\x77\xe8\xdd\x77\xdf\x95\x8e\xe3\x20\x97\xcb\xc9\x42\xa1\xe0\x23\x39\x87\xa8\xc1\xcc\x75\x22\xaa\x31\xf3\x2e\x11\xed\x20\x5c\x4e\xbd\x1b\xcd\x27\xec\x12\x51\x1d\x40\x33\x5a\x84\xe7\x6f\x6c\x6c\xf0\xbb\xef\xbe\x8b\x57\x5f\x7d\xd5\xb4\x85\x6c\xc4\xab\xab\x00\x0c\x3b\xcc\x7a\x9b\xd3\x18\x43\x9a\x8a\xda\x46\x30\x0f\x3c\xf0\x00\x65\x32\x19\x89\x50\x93\x90\x0c\xe6\x95\x72\x6b\xed\xd6\x60\xf3\x76\x5f\xcb\x29\x17\x5a\x4e\xbf\xd3\x76\x96\x17\x10\x10\xfc\xed\x82\xbf\xf6\xf3\xa9\x9d\x57\x7e\x7a\x6c\xfb\x9b\xf5\x8c\xbc\x0c\xc2\x2d\x84\x0c\xa1\x2e\xa5\xf4\xff\xf8\x8f\xff\x58\x02\x10\xad\x56\x0b\x47\x8e\x1c\x91\x44\xf1\xa1\x76\x81\xef\xb0\x77\x63\xa8\xb1\x70\x73\xa8\xb9\x08\x00\x6e\x20\x72\x82\x49\x30\xb1\x6c\xba\xb2\xbe\x55\xf0\xd7\x2e\x4d\xec\xbe\xf5\x83\x93\x5b\xff\x76\x61\xa8\xf9\x3a\x08\x37\x28\x94\xbe\x5b\x00\x1a\x52\xca\xe0\x5b\xdf\xfa\x96\xc9\x48\x14\x6c\x84\x90\x9e\xba\x1b\xa3\xbf\xff\xfb\xbf\xef\x22\xbc\x87\x60\x0c\xc0\x7d\xbf\xf6\xc1\xc8\x3f\x39\xb1\x56\x78\x26\xd9\x3e\x6a\x2c\x66\xdb\xa3\x3d\x26\x98\xaa\xde\x18\x8c\x37\xa7\x76\xfe\xd7\x9f\xce\x6c\xff\x1f\x20\x2c\x31\x73\x75\x69\x69\x49\x7e\xe7\x3b\xdf\x49\xf3\xf6\xa4\xe9\xbc\x7a\x3c\x2c\x79\xf4\xb0\xb4\x7c\x69\x86\x79\xb7\xb0\x4e\x75\xe3\xe8\xd1\xa3\x62\x72\x72\x12\x33\x33\x33\xc8\xe5\x72\x70\x1c\x47\xa9\x9f\xe6\x23\x99\x19\x41\x10\xa0\x5a\xad\x62\x6e\x6e\x0e\x6f\xbe\xf9\x66\x2f\x76\x4e\x27\x7b\xc1\x06\xb7\xcd\x56\x48\xeb\x8f\x4e\x7d\x20\x00\xc8\xe8\x3e\x69\x17\xe1\x85\x86\xc3\x00\x26\xc0\x98\x74\x18\x93\xc3\xb5\xcc\xf1\xf1\x9d\xec\xd4\x40\xdd\x1d\x15\x4c\xa2\xe1\x06\xb5\xd5\x52\x6b\x71\xb9\xdf\xbb\x56\xcf\xc8\x45\x06\xdf\x06\x70\x9b\x88\xd6\x10\x9d\xed\x3a\x37\x37\x27\xbf\xf7\xbd\xef\x49\x00\x82\x88\xf0\xeb\xbf\xfe\xeb\x98\x98\x98\x10\x44\x94\x65\xe6\x12\x11\x0d\x33\xf3\x18\x11\x4d\x80\x31\x9c\xf7\xc5\x68\x9f\x27\x46\x1c\x49\x6e\xd3\x95\x8d\x7a\x46\xae\x7b\x0e\xaf\x81\xb0\x86\xd0\x2b\xb7\xc2\xcc\x5b\x11\x13\xf2\xde\x7a\xeb\x2d\xb5\xe7\xc2\xd6\x7f\x00\x42\xb7\x6b\xa7\x8e\xd7\x3b\x36\x36\x18\x17\x86\x1a\x17\x8f\xaf\x15\x3e\x4e\x40\x74\x59\x88\x9d\x18\xda\x0c\xab\x50\xc0\xc6\x21\x04\xc2\xb1\xb5\xc2\x73\x6f\x1d\xde\xf9\x66\x33\x23\x37\x88\xc8\x1d\x1f\x1f\xf7\x0a\x85\x82\xa8\xd7\xeb\xca\xa8\x32\x07\x49\x6f\x4f\x27\xf7\xa8\x39\x88\xdd\xf2\x99\xc8\xa1\xa7\x93\x46\x9c\x19\x9f\x4a\x28\x73\x73\x73\x72\x6e\x6e\x0e\x3f\xf9\xc9\x4f\x00\x00\xd3\xd3\xd3\xe2\xc6\x8d\x1b\xb6\xbd\xcf\x69\x70\xaa\x30\xfd\xd7\xf6\x9e\xe6\x54\x30\xd3\xea\x8f\xcd\x59\x90\xe6\x44\xb0\x22\xd0\x9b\x6f\xbe\x89\x27\x9e\x78\x42\x6d\x40\x02\x42\xd7\x73\x35\x20\xac\xad\x96\x5a\x0b\xab\xa5\x56\x39\x52\xb5\x05\x42\xfc\x09\xcf\x76\x05\x36\x08\xb4\x11\xbd\xd7\x00\x78\x8d\x46\x23\x26\x06\x20\x64\xb2\xaf\xbd\xf6\x1a\x3e\xf7\xb9\xcf\xc9\x72\xb9\xac\x8e\xaf\x4c\xca\x20\x94\x1b\x19\x59\x6a\x64\x64\x3e\xca\xa3\xf0\xb3\x12\x11\x81\x7e\xb6\xab\xff\xc6\x1b\x6f\x40\x1d\xa4\x9c\xd2\x3f\x12\x48\x96\x7f\x77\x32\x30\xf9\xd8\xb1\x63\x54\x28\x14\x88\xc3\xd3\xe1\x8a\x92\x50\xba\x7f\xb5\xef\x13\xea\xbc\xd7\xf0\xea\x28\xcd\x0f\xbc\x47\x5d\x42\x9b\x1a\xa5\x2a\xcc\xf9\x62\x70\xa5\xdf\x7b\x6b\xb3\xcf\x5f\x60\xe6\x86\x10\x22\xf8\xd9\xcf\x7e\xa6\x36\xb8\xd8\x76\x16\xb9\xd2\x00\x00\x20\x00\x49\x44\x41\x54\x44\x7f\x2c\xda\xb0\x57\xcd\xd1\xf3\x98\x30\x91\x11\x6e\x53\x17\x4c\x11\xaa\x97\xa1\xd7\x9b\xa6\x63\xa7\xa9\x2d\xf1\xef\xf6\xf6\x76\xaa\xee\x6a\x94\xa5\x1e\xa5\xa6\xe9\xea\x9a\xe9\x2c\xe8\x64\xfc\xeb\xb0\xd9\x88\xad\x93\x13\xc1\x56\x8f\x82\x87\x00\xf0\xd2\xd2\x12\x31\x33\x26\x26\x26\x24\x11\x05\x08\x55\xc3\x3a\x42\xe4\xdd\x61\xe6\x0d\x22\x5a\x45\xc8\xa9\xef\x50\xb8\x91\x69\x19\xa1\x01\xad\xbc\x67\xad\x9d\x9d\x1d\xf9\x27\x7f\xf2\x27\xba\x3a\x48\x00\x64\xab\xd5\xe2\x8b\x17\x2f\xf2\xf4\xf4\x34\xfa\xfa\xfa\x24\x33\xb7\xa2\x95\xbd\xaa\x8e\x2d\x00\xeb\xd1\x32\x96\x55\x44\xf6\x98\x22\x06\x44\x6a\xd2\x9b\x6f\xbe\x89\x77\xdf\x7d\x57\xda\x60\x40\xbb\x8a\xcd\xb1\xd5\x62\xe9\xdc\xf8\xfb\xd0\xa1\x43\x34\x34\x34\x84\x48\x3c\xe6\x3c\x87\xf3\x33\x1b\xf9\x47\xfa\x9b\xee\xd8\x9e\xcd\xef\xd1\x84\x4c\xbc\x9e\x27\x2a\x45\x9f\x47\xd1\x9c\x4f\xae\xc3\xd4\xbc\x72\xa0\xfe\x7a\x24\xd6\x5a\xc7\x8f\x1f\xe7\x4b\x97\x2e\xd9\x06\xc2\x1c\x68\x1d\x49\xd5\xb7\x89\x90\xfa\xe0\x9a\x70\xa5\x19\xa4\x26\x82\xd8\xbc\x39\xe6\x93\x26\x25\xd2\xf2\x74\xaa\xdb\x06\x4f\x37\x43\xd8\xd6\x0e\x33\x4d\x9a\xf1\xdd\x8d\xb1\xd8\xca\x8e\x09\xe9\xce\x9d\x3b\xdc\x6a\xb5\x68\x74\x74\x54\x66\x32\x19\x45\x14\x1e\x42\x9b\x68\x07\xc0\x36\xc2\xcb\x4a\x94\x1b\x79\x07\xa1\xc3\xc0\x03\xd0\xba\x71\xe3\x06\x47\x7a\x7d\x2a\x0c\xbf\xf8\xc5\x2f\x88\x88\xf8\xc0\x81\x03\xd2\x71\x1c\x55\x47\xec\xb0\x88\x3c\x95\xaa\xdc\x5a\x14\xe7\xd7\xeb\x75\xf9\xf5\xaf\x7f\x5d\x2e\x2d\x2d\xa5\xf5\xe9\x1e\x9c\x31\xbd\x4c\x26\x17\x14\x08\x8d\x26\x3a\x76\xec\x18\x47\x1e\x85\x8c\x24\xf4\x15\x5b\x62\xe2\xc8\x56\xee\x4c\x48\x00\xd1\x2e\x2f\xe8\x13\x70\x40\xec\x05\x88\xdc\xb3\x9a\x97\x2c\x8a\x27\x14\x3d\x67\xf4\xc6\x50\xe3\x87\xb5\x9c\x5c\x25\x22\x2f\x9f\xcf\xeb\xc6\xb5\x8e\x50\x36\xe4\x4f\xf3\xfc\xec\x81\xc1\xe8\x70\xd3\xf0\xd6\xa5\x48\x1a\x91\xc5\x9d\x66\xbc\x9b\xd2\x24\xad\x6e\x55\xaf\xe9\x25\xd3\xeb\x4f\x73\x07\xa6\x3d\xbd\x10\x83\xcd\x39\xd0\x8d\x40\x6d\x86\xb5\x4d\x7a\x31\x00\xac\xac\xac\xf0\x7b\xef\xbd\xc7\x03\x03\x03\x28\x97\xcb\x52\x08\xa1\x13\x46\x03\x21\x47\x6f\xa8\x30\x0e\x2f\xca\x91\xe7\xcf\x9f\xc7\x3b\xef\xbc\xd3\x91\x18\x54\xd8\xed\xdb\xb7\xf9\xc2\x85\x0b\xec\xba\xae\xee\xb0\x50\xde\x3c\x2f\xfa\xf5\x01\xf8\x6b\x6b\x6b\xf2\xd2\xa5\x4b\xfc\x37\x7f\xf3\x37\x36\x89\x98\xd6\x17\xac\x02\x3a\x3d\xba\x61\x2d\x22\x7d\xb0\x0c\x60\x66\x6c\x27\xf3\xcb\xff\xde\x85\xb1\x7f\x96\x09\x44\x1e\x1a\xd7\x67\xad\x5a\xa5\x25\x59\x6d\x0b\x4e\xe2\xde\x3e\xbc\xf3\x2f\x7f\x74\x6c\xfb\x5f\x81\xb0\x04\xa0\x36\x37\x37\x27\x5f\x79\xe5\x15\x60\x2f\xd7\xed\x66\x4c\xf7\x6a\x6c\x03\x7b\xb9\x43\x9a\x5d\x60\x4b\xdf\x4b\x19\xbd\xe4\x49\x0b\x4b\x43\xca\x6e\x75\xef\x27\x7f\xb7\x7c\x77\x5b\x06\x00\xe0\xb9\xe7\x9e\x13\x33\x33\x33\x6d\x61\xcb\xcb\xcb\xd8\xd8\xd8\x50\x27\x86\x77\xab\xaf\xa7\xfa\x9f\x7a\xea\x29\xa1\x5f\x21\x3c\x3c\x3c\xac\x1f\x6b\xb3\x6f\x18\xd2\xce\x65\x52\x4f\x3c\xc0\x4b\x4b\x4b\x88\x96\x09\x7b\xcc\x5c\xdb\x28\xfa\x0b\x6b\x7d\xad\xeb\x07\x77\x72\x0f\x26\x6b\x98\x80\x88\xf5\xc7\x4f\x88\xf7\xed\xa7\x4d\xab\x17\xb5\xe8\xeb\xbe\x95\xe2\xaf\x5e\x38\x54\xfd\x77\x3b\xf9\xa0\x02\xc0\x3b\x72\xe4\x88\x37\x32\x32\x82\xf5\xf5\x75\xd3\x60\xb4\x21\x1f\xb0\xb7\x23\x91\x92\x47\x7f\x6c\x1d\xd5\x09\xa1\x3b\xc5\xf5\x8a\x58\x66\xbb\xd3\x1e\x13\x36\xdb\xc0\xda\x1c\x0a\x66\x7f\x74\x22\x70\xb3\x8c\x5e\xda\x66\xeb\x77\x6b\xf9\x3f\xf8\xc1\x0f\xee\x0a\x86\xbe\xbe\x3e\x31\x3c\x3c\x8c\x9b\x37\x6f\xf6\x04\x83\x71\x9f\xb6\x22\x86\xbb\x86\x21\xed\xb0\x63\x95\x31\x6e\xe8\x8d\x1b\x37\x30\x31\x31\x21\x39\x3c\xea\xbc\xea\x0b\xde\xb8\x7a\xa0\xfe\xf3\x89\x9d\xec\x83\xca\x6f\xa4\xaf\x31\x51\x7a\x8b\x3e\x5b\x06\x24\x12\x44\x3f\x39\xae\xe4\x39\xc7\x1e\x58\xee\xfb\xd4\x1b\x53\x95\x45\x06\xd7\x5c\xd7\xf5\xcf\x9e\x3d\xab\xbc\x0e\xd0\xda\xa1\x13\x88\x1e\xbe\xa7\xbd\x5d\xde\x3b\x3d\x69\x75\x76\xe2\x36\xbd\xd6\x29\x2d\xe1\x69\xc4\x94\x36\xb0\xdd\xda\x21\x3a\x7c\x77\xab\xcf\xd6\xe6\xb4\xa7\x13\x9c\xfb\x82\xe1\xcc\x99\x33\xe2\xd8\xb1\x63\x28\x95\x4a\x70\x5d\x17\xd9\x6c\x16\xf5\x7a\x5d\x30\x33\x9a\xcd\x26\xe6\xe6\xe6\xc4\xa5\x4b\x97\x50\xab\xd5\xac\xf9\xef\x25\x0c\xfa\xc4\x9c\x59\x49\x9b\x2e\xbe\xbc\xbc\xcc\x0f\x3f\xfc\x30\x1c\xc7\x21\x00\x2e\x08\xf9\x46\x46\x3a\xf7\xad\x14\x9f\x76\xa5\xc8\x11\x90\xec\x1c\x8c\x08\x43\xdb\x02\x80\x98\x0a\xa2\xf0\xf8\xf0\xbf\x50\x73\xa3\x72\xd3\x1d\xbb\x36\x5a\x3f\xdf\x74\xe5\x16\x11\xb5\x86\x86\x86\x82\xf9\xf9\x79\xaa\xd7\xeb\xba\x7d\x03\xad\x4d\xba\xdd\x60\x33\xb8\xbb\x19\xce\xfa\x3b\x3a\xa4\x37\xbd\x5a\x66\xdd\x69\x76\x8a\xad\x2d\x36\x1b\x4d\x87\xc1\x84\xc9\x1c\x07\x5b\xbd\x66\x99\xa6\x0d\x04\xb4\x8f\x2b\x19\x79\x6c\x61\x64\x09\xe3\x94\x3c\xb6\xbf\xae\x30\x64\x32\x19\x21\xa5\xe4\xaf\x7c\xe5\x2b\xe2\xc8\x91\x23\xa2\xaf\xaf\xcf\xc9\x64\x32\xc2\x71\x1c\x17\x80\x93\xc9\x64\x9c\x4c\x26\x43\x85\x42\x41\x1c\x3c\x78\x10\xa7\x4e\x9d\xe2\x62\xb1\x48\x8b\x8b\x8b\x6c\x69\xdb\x3d\x83\x41\xf7\x32\xd9\x8c\x41\x7d\xc0\xf8\xe8\xd1\xa3\x54\x2c\x16\x55\x78\xa6\xe9\xca\xdc\xc4\x4e\xf6\xc4\x48\x2d\x73\x44\x2b\x27\xde\x09\xa9\x4b\x8b\x78\x6b\x9f\x16\x4e\x40\xbc\x73\x32\xe7\xd3\x70\xcb\xe1\x95\xc5\x41\xef\x22\x28\xf4\x12\xf4\xf5\xf5\xf1\x8d\x1b\x37\x28\x5a\xa6\xab\x1b\x9d\x7a\xa7\x2b\x42\xd0\x91\xd0\xe6\x41\x30\x91\xc2\x66\xb0\xdb\x3a\xce\xc6\x89\xcc\x38\xd3\x50\xb5\xb9\x79\x6d\xf9\xcc\x38\xbd\x1d\x26\x72\x53\x87\x7c\x30\xd2\xe9\x61\xb6\xf1\x34\x61\x97\xb0\xd7\x6d\xd6\x67\xc6\xb1\xe5\xaf\x27\x18\x7e\xf7\x77\x7f\x97\x9e\x78\xe2\x09\x87\xc2\x93\x3b\x72\x60\x14\x0a\x2d\x51\x1e\xac\xbb\x07\x06\xea\xee\x81\xbc\x2f\xca\x0c\x38\x81\x60\x01\x02\xb9\xae\x4b\xe3\xe3\xe3\x7c\xe2\xc4\x09\xd4\xeb\x75\xfd\xf2\xc4\x7b\x0a\x43\x9a\xdb\xd5\xfa\xdb\x6c\x36\xdb\xbc\x4d\x20\xe4\x99\xd0\x77\x7c\xad\xf0\xb8\x40\x34\x03\x1b\x55\x65\x38\x94\xac\xef\x6d\xdf\x4c\x34\x54\xcf\x1c\xbe\x76\xa0\xf6\x83\x66\x86\xb7\x01\x78\x03\x03\x03\x81\x76\x78\x55\x37\x64\x35\x39\x74\x5a\x5c\xb7\xef\xb4\xf7\xbb\x4d\x77\xb7\x65\x9a\x92\x4b\x27\x6e\x1b\x97\x4c\x4b\x07\x2d\x5d\x1a\xc7\x84\x11\x06\x23\x5d\x9a\x07\xcc\x94\x8c\x5d\x61\x38\x78\xf0\xa0\xf8\xf2\x97\xbf\x4c\xd9\x6c\xd6\x05\x90\x23\x46\xdf\xc1\x4a\xf6\xd8\x93\x37\xca\xff\xfe\x53\x37\x06\xfe\xeb\x87\x6f\xf7\xff\xa3\x87\x96\xfa\x7e\xef\xc1\xe5\xbe\xdf\xbe\x6f\xb5\xf8\x2b\x07\x76\x33\xc3\xf5\x8c\xdc\xdc\xcd\x05\x75\x10\x64\x2e\x97\xc3\xf4\xf4\xb4\xdc\xd9\xd9\xa1\x8d\x8d\x0d\x53\x7a\x7f\x64\x18\xf4\x8b\xdb\xbb\x89\x1c\x34\x1a\x0d\x3a\x75\xea\x14\x32\x99\x8c\x2a\x28\xbb\x9b\x0d\xc4\xf4\x66\xe1\x4c\xc9\x73\x86\x4d\x4f\x93\x36\x0d\x61\xfa\x98\xe2\xf7\xf8\xee\x66\x02\x32\x92\x06\xdd\x40\x78\xf3\xc3\x8d\xb7\x23\x29\x11\x0c\x0d\x0d\xa9\xcb\xc8\x4d\x00\x75\xb1\x9c\x26\xd5\x4c\xf5\xc1\x1c\x2c\x13\x56\xb6\xe4\x4b\x4b\x9b\xd6\x57\x69\xa2\xda\xda\xa7\x96\xfa\x55\x98\xc9\xc9\xcd\x41\xb5\x49\x36\x18\xef\x66\xbc\x4d\xa2\xe8\x6d\xb0\x49\x54\x93\xcb\xc3\x92\x26\x4d\x45\x6d\xab\x6f\x72\x72\x52\xbc\xf8\xe2\x8b\x88\x88\x21\xef\x06\x34\xf0\xf4\xdc\xc0\x7f\xf0\x89\x6b\x43\xff\xd3\xc1\x9d\xdc\x97\xf3\x2d\x67\xc6\x95\x18\x72\x40\xfd\x8e\x14\x43\xf9\x96\x98\x39\xb0\x9b\xfd\xd4\xc9\xd5\xe2\x67\x5d\x29\x2a\x4b\x65\xef\x26\x0b\xf8\x42\x08\x39\x3d\x3d\x2d\xd5\xc9\x30\xf7\x12\x06\x7d\xf9\xb7\x49\x69\xed\x98\x8b\x70\x01\x5b\x3e\x9f\xa7\x89\x89\x09\x30\xb3\x00\x90\x09\x04\xb2\xae\xa4\xf2\xf4\x66\xfe\x91\x50\x05\xa2\xe4\x10\x3a\x55\x80\x4e\x1c\xf1\xbb\x76\xe8\x63\xcc\xbf\x08\x83\x75\x77\xfa\x4e\xd9\xfb\xf9\x76\xde\x5f\x01\xd0\xcc\xe7\xf3\xd2\x71\x1c\xdc\xbe\x7d\xdb\x54\x99\x6c\x22\x51\x8f\xb3\x89\x6b\x7d\xd0\xd2\x44\xbb\xc9\x49\xcc\x32\xd3\xd2\x9b\xa2\x98\xb0\xb7\x1e\x3d\xad\xb0\x84\xd9\x06\xc9\xac\xdb\x0c\xd3\xf3\xe8\xc4\x00\x03\x0e\x1b\x91\xa7\x95\x6d\x22\xba\x8d\x39\xd8\xda\xdb\x11\x86\x2f\x7e\xf1\x8b\x94\xcd\x66\x5d\x22\xca\x67\x7c\x1a\x7d\x7e\x76\xe8\x3f\xff\xd8\x9d\xd2\x7f\x97\x61\x71\x80\x80\x88\x31\x86\xbc\x21\xfc\x0e\x27\x7c\x1d\xa6\x81\xc9\x4a\xf6\xb9\x62\xcb\x91\x0b\x83\x8d\x4b\xd1\x25\xf2\xf2\xe4\xc9\x93\x3c\x37\x37\x47\xd1\x72\xf8\x7b\x02\x83\x39\x31\x67\x72\x2d\xf5\xc4\x15\xb5\x5a\x2d\x9c\x3a\x75\x8a\xa3\x59\x68\x01\x20\xbf\x53\x08\x82\x07\x56\xfa\x3e\x9e\x0d\xa8\x80\x08\x28\x9d\x9a\x74\xa4\x8f\x37\x11\x45\x16\xb7\xbe\x7b\x0a\xc4\x70\x98\x8a\x03\x0d\x77\x70\xf6\x40\xfd\xc7\xd2\x41\x8d\x88\x5a\xc3\xc3\xc3\x72\x79\x79\x19\xd5\x6a\xd5\xc6\x11\x4d\xae\x6b\x12\x81\xfa\x83\xe5\x57\xef\x40\x58\xf2\xeb\x9d\x65\xf6\x93\x59\x5f\x5a\xb8\x1e\x0f\xec\x6d\x1b\x8c\x34\x12\x7b\x89\x45\x7f\xcc\xb0\xb4\x3c\xe6\x98\xda\x60\x32\x39\xa6\x09\xbf\x19\x9f\x56\x8e\x4d\x32\xb4\xb5\xe7\xf9\xe7\x9f\x17\x63\x63\x63\x82\x88\x32\x60\x0c\x3e\x7a\xab\xff\x37\x1f\xb9\xd5\xff\xdf\x3a\xa0\x82\xda\x34\x44\x51\xf1\x4c\xda\x01\xd2\x50\xa8\x42\x99\xd1\xdd\xcc\x23\x2d\x97\x6f\xdd\x29\x7b\xd7\x41\x68\xe5\x72\xb9\x20\x9f\xcf\xf3\xfc\xfc\xbc\xde\xa6\x8f\x04\x83\xee\x65\xb2\x71\x2d\xd2\x12\x03\x80\xdc\xdd\xdd\xe5\x83\x07\x0f\x52\xb9\x5c\x66\x00\x82\x88\xdc\x96\x60\xb7\xd0\x12\x07\x26\x2b\xb9\x53\x31\x60\x11\x30\xea\x80\x01\x52\x01\x0a\x07\xf4\xbd\x12\xac\x61\x09\x11\x4a\x4d\xe7\x88\xef\xf2\x9d\xdb\x65\xef\x0a\x08\x2d\xc7\x71\xfc\xc1\xc1\x41\x36\xee\x31\xb6\x71\x66\x9d\x58\x4c\xe4\x30\x61\xb2\x49\x43\xb3\x33\xf5\xce\xd2\xd3\xaa\xfa\x75\x84\xee\x24\xa9\x34\xc0\xdb\x88\x43\x6f\xbf\xcd\xd8\xd6\xeb\x31\xc3\xcc\x3c\x7a\x7b\x6c\x0c\xc1\x64\x0e\x26\xf3\xeb\x96\x47\xef\x57\x9d\x0b\x9b\x2a\xea\x1e\x18\x46\x47\x47\xe9\xe9\xa7\x9f\x06\xc2\x73\x82\xfb\x46\x6b\x99\x13\x9f\xba\x3a\xfc\xcf\x73\x81\x38\xc0\x00\xa0\x56\x31\xc4\xb8\x12\xe1\x06\x21\x39\xb9\x83\x00\x01\xca\x8e\xed\x64\x1e\xb8\x76\xa0\xfe\x6a\x23\x23\xb7\x01\xf8\xfd\xfd\xfd\xc1\xdc\xdc\x1c\x35\x9b\xcd\x7b\x02\x43\x37\xa3\xda\xaa\x7e\x5c\xbd\x7a\x95\x1f\x7d\xf4\xd1\xb0\xcd\x44\x0e\x08\xd9\x9d\x5c\xc0\x27\xd7\x0a\x8f\xe5\x7c\x2a\x28\x00\xdb\x6e\x66\x4a\x28\x03\xc9\xd6\xd3\x48\x6d\xa2\x44\x44\x86\x95\x92\x33\xba\x9b\x39\xbe\x30\xd4\xf8\x49\x2d\x27\x37\x89\xc8\x2f\x95\x4a\x32\x08\x02\x44\xeb\x52\x4c\xc4\xd0\xdb\x6c\xb6\xdf\x26\x21\xd2\xc4\xa7\x39\xb8\x2a\x8f\xcd\xa5\xdb\x89\x1b\xc3\x12\x66\x12\x6d\x27\xc9\xa6\xa7\xb7\x11\xaf\x39\x3e\x7a\x9c\x2d\xcc\xf6\x07\xad\x0c\x9d\xa3\xdb\xfe\x6c\xc4\x6d\xce\xcd\xa4\xc2\x70\xfa\xf4\x69\x4c\x4c\x4c\x08\x00\x59\x02\x0d\x3e\x7c\xbb\xf4\xa5\x99\x8d\xfc\xe7\xd4\xfe\xb9\xd0\x05\xaf\x14\xe8\xf6\x83\xcd\xd4\x11\x46\x1c\x7d\xbb\x92\x06\x5b\x0e\xdf\xb9\x39\xd8\xfc\x00\x84\x46\xb4\x4c\x84\xa3\x89\xbc\x8f\x0c\x83\xae\x6f\x9a\x8f\x2d\x4e\x00\x40\x36\x9b\x15\xd5\x6a\x15\x44\xe4\x33\x73\x0d\xc0\xd6\x56\xc1\xbf\xfe\xe1\x58\xed\x6f\xd5\x1d\x03\xea\x78\x4f\x00\xea\x72\x40\xa8\x99\x69\xfd\xb4\x35\x25\x26\x63\x19\xc9\x61\x7c\xc1\x73\x66\x3e\x71\x7d\xf0\xbf\xcc\xb5\x68\x8c\x99\xf3\x00\xc4\xe3\x8f\x3f\x8e\xe8\xc4\x69\xa9\xfd\x75\x6a\xaf\x3e\x51\x63\x4e\xda\xe8\xe9\x75\x8e\x2d\x52\xd2\x03\xed\x9d\xd7\xe9\xdd\xd6\x1e\x3d\x8d\xd9\x36\xb3\x1e\x33\x8d\xad\xad\xe6\xf7\x7e\xd3\xd8\xbe\x6d\xe1\x36\xd8\xd2\xda\x6c\x85\xe1\xf8\xf1\xe3\x2a\x6f\x56\x30\xca\x47\x36\xf3\x1f\x87\xba\x80\x13\x80\x3a\xd5\x31\x79\x38\xd9\x79\xac\x18\x6b\x84\xce\xc4\xe1\x25\xf2\x99\x80\x86\x11\x9d\xf4\x77\xf4\xe8\xd1\x7b\x06\x43\xa7\x4e\x4c\x7d\x3c\xcf\x53\x97\x62\x47\x97\x88\xa0\xc2\xe0\x95\x8b\x07\x77\x5f\xdd\xcd\xca\x8d\x44\x42\x24\x87\x0f\xe8\x12\x40\x2d\x09\x0f\x41\x8f\xa0\x06\xd4\xad\x38\xd1\x0e\x3c\xc6\xe1\xad\xdc\x67\xce\x2d\x96\xbf\x44\xa0\x41\x00\x79\x22\x72\x9f\x79\xe6\x99\x5e\x9b\xd9\x0d\x26\x1b\x72\x9a\xf9\x74\x75\x29\x0d\xa1\x6d\x79\x7a\x7d\xd2\xca\xe8\x94\xce\x7c\xb7\x11\x56\x1a\xa2\xda\xc2\x3b\x11\x62\xa7\x77\xfd\xe9\x88\x47\xe1\xb9\xc8\x10\xcc\x9c\xcd\x04\x54\xee\x6f\x3a\x53\xba\x8d\x10\x6b\x0e\xea\xa1\xf6\xfc\x21\x8f\x55\x37\xa4\x02\xfd\x4d\xe7\x70\x36\x10\xc3\x88\x8e\xa6\xd4\x0e\xcc\xfe\xc8\x30\x08\x0b\x00\xe6\xc0\x5a\x39\xef\x87\x1f\x7e\x28\x2b\x95\x8a\x44\xb2\x69\x63\x63\xbb\xe0\xcf\x5f\x1a\xdf\xfd\xb1\xda\x37\x6b\xee\x9c\x33\xe5\xb4\x19\x47\xc6\xbb\x00\x65\x1f\xbe\x55\xfa\x4f\xa7\x37\xf3\x8f\x20\x3a\xac\xb6\x54\x2a\x89\xcf\x7e\xf6\xb3\x69\x1c\x4f\x0f\x33\x11\x58\x8f\x37\x3d\x31\x66\x1e\x89\x74\xe4\xd4\xd3\x76\x2b\xa7\x5b\x7e\xfd\xd7\x2c\xa3\x97\xbc\xbd\x96\xdd\x8b\x84\xe8\x45\x1a\xa5\xd5\xd9\x66\x67\x9a\xf9\x14\xc2\x12\x91\x2b\x98\xf2\x82\x91\x57\x4a\x41\xc2\x19\x13\xdd\x28\x3e\x31\x1d\x89\x56\x11\xab\xd3\x04\x08\xa6\x6c\x74\x33\x51\xda\xf9\xc0\x77\x0d\x83\xad\xb0\x5e\xb8\x91\x00\x20\xbe\xf1\x8d\x6f\xa8\xb0\x06\x11\x55\x24\x78\xe5\xdd\x43\xd5\x57\xb7\xf3\xfe\x92\x02\xd0\xbc\x87\x8d\x81\x18\xf8\x70\x15\x6c\xac\x48\x69\x61\x80\x5a\xe6\x91\x0d\x68\xec\x93\x57\x87\xfe\xe9\x50\xdd\x3d\x81\xe8\x48\xf3\xc3\x87\x0f\x8b\xe7\x9f\x7f\x3e\x3a\x91\xbd\xad\x7d\xc2\xf8\xb5\x3d\xbd\x72\xd0\x4e\xf9\xd3\xca\x01\xf6\x22\x88\x2d\x7f\xa7\xf6\xe9\xe5\xa8\x5f\x61\x7c\xf7\x2a\x59\xcc\xf4\x69\x2a\xa6\x8d\x50\x3a\x85\xe9\xef\xbd\x30\x0f\x30\xb3\x60\x66\xb4\x1c\x46\xd3\xe5\x9a\xe2\x7e\x6c\x22\x48\xf4\xcd\x91\xb7\x25\xa4\x19\x1d\x43\x80\x7a\x46\x56\x5b\x0e\xb7\xd5\x7b\xea\xd4\xa9\x7b\x02\x43\xa7\xc1\x13\xd8\xdb\xf9\x7a\x01\x12\x00\xaa\xd5\x6a\x9b\x94\xd8\xcd\x06\xf3\xef\x1c\xae\x7e\x4f\x0a\x48\x65\x08\xc5\xb0\xc2\x22\x19\x39\xbe\x5d\x28\x0a\x53\xf7\xd5\x71\xfc\x3d\xd0\x70\xce\x7c\xf2\xea\xd0\x1f\xe4\x5b\x62\x02\xe1\xfe\x5d\xf7\xc4\x89\x13\x98\x9e\x9e\xb6\x34\x3b\x6e\x9f\xed\xdd\xf6\x74\xe3\xa2\x66\xff\x74\xe2\xec\x69\xb6\xc7\x7e\xda\xa7\xe7\xb7\x31\xac\x4e\xe5\x99\xc4\xa6\x4b\x3b\x1b\x5c\x36\xe2\x4c\xb3\xb7\xd2\x74\x70\x33\x4f\x5b\x7b\x26\x27\x27\x05\x00\x10\x91\x24\x22\x04\x82\xbd\x8d\x62\x78\x46\x30\x47\x36\x81\xb2\x98\xd5\x88\x33\x22\xba\xe0\xf0\xb8\x4f\x95\x46\xa5\x58\xea\xf7\x66\x1b\xae\x6c\xbb\x44\xde\xf0\x40\xde\x35\x0c\x9d\xa8\x3c\x8d\x03\xb6\x3d\x6a\xd3\x76\x74\xb4\xfa\x16\x08\x6b\x97\xc7\x6a\x3f\x59\x29\x79\xd7\xf7\xde\xd2\x19\x3e\xc9\xdc\x03\xed\xd1\x9d\x62\xf7\x4b\xdb\x99\x3b\x84\xc3\x5b\xb9\x5f\xff\xc4\xf5\x81\xaf\x38\x12\xc3\x44\x94\x67\x66\xf7\x93\x9f\xfc\xa4\x59\x74\x27\x35\x4f\x8f\x57\x8f\x8d\x7b\xa6\xe9\xd4\x69\xe9\xba\xf5\xa1\xed\xbd\x13\x03\x32\xdf\xd3\x08\xc6\x46\xc8\x36\x06\x66\x53\x81\xbb\x71\xce\x4e\x8f\xad\x1c\x61\xfc\xc5\x61\x6b\x6b\x6b\xfa\x2a\x55\x9f\x01\xef\xda\x68\xfd\x82\x24\xf8\x89\xab\x95\xdb\x54\xe6\x3d\xc6\x34\x25\x81\x01\xb1\x3f\x7b\xa0\xf6\x73\x68\x37\xaf\x6a\x73\x62\x1f\x19\x86\x34\xd1\x97\xd6\xd9\xe6\x23\x2c\xb6\xc4\x5a\xc3\x95\x0b\xaf\x1f\xdd\xfe\x56\xcb\x91\x1e\x60\xf7\x87\xee\xf1\x0b\x72\xd2\x19\x7b\xfd\xa8\x0c\x01\x72\x1f\x58\xea\xfb\xfd\x27\x6e\x0c\xfc\x96\x88\x88\xc2\x75\x5d\xf7\x2b\x5f\xf9\x8a\x8d\x7b\x9b\xb0\x98\x69\xcc\x74\x69\xba\x75\x5a\x3e\xb3\x2e\xf5\xdd\x09\x59\x91\x92\xae\x17\x8e\x8b\x94\x34\xe6\xaf\x4d\xaa\x74\x52\x11\x3b\x95\xdb\x29\xbd\xd9\x46\x5b\x3d\x12\x80\xf4\x3c\x0f\xbb\xbb\xbb\xf1\x71\xa8\x0c\xae\xce\x0d\xd7\xdf\x59\xee\xf7\xae\x24\xe3\x9b\x5c\x82\x02\xa0\xcd\x9e\xd0\x7f\x19\x8c\x95\x92\x77\xe5\xe6\x60\xf3\x03\x84\x7b\xa6\x3d\x00\x72\x79\x79\xf9\x9e\xc1\x60\x5e\xba\xd8\x69\x1e\xc2\xf4\x5f\xc7\xe9\xb6\xb7\xb7\xe9\xe4\xc9\x93\x52\xad\xfa\x03\xc1\xa9\xe4\x83\x56\xb9\xe1\x4e\x1c\xa8\x66\xa6\x93\xeb\xa4\x90\xb8\x5b\xb5\x85\x4f\xc6\x21\x6c\xf1\x6e\x3a\x52\x35\x68\xf3\x13\xe3\x3b\x99\xb3\xcd\x0c\xdf\x58\xe9\xf7\x6e\x32\xd8\x27\x22\x79\xe6\xcc\x19\xde\xda\xda\xa2\xad\xad\x2d\x1d\x68\xb3\xed\x7a\x9b\xd3\xbe\xd3\xfa\x21\x2d\x9f\xc0\xde\xbe\x42\x87\x5f\x5b\x3a\xdb\x84\x92\x59\xa6\xe9\xdf\x17\x5a\x98\x48\xc9\xa3\xc3\xa3\xff\x4a\x23\xce\xac\x43\x0f\x37\xeb\xb5\xb5\x47\x58\xd2\xb4\xb5\x27\x97\xcb\xe1\xd0\xa1\x43\xa0\xf0\x71\x03\x07\xb9\x4a\xde\x6f\xcd\x6c\xe4\xcf\xb8\x92\x72\xea\xb6\xda\x36\x65\x81\x12\x9c\x51\xf6\x44\x3d\x23\x2b\xaf\xde\xb7\xf9\x7f\x6d\x17\xfc\x0f\x40\x58\x46\xb8\x8f\xba\x75\xf1\xe2\x45\x5e\x5e\x5e\xbe\x27\x30\xa8\xa5\x1b\x3a\x20\xfa\x9f\x84\xbd\x53\xdb\x0a\xab\x54\x2a\x38\x78\xf0\x20\xa2\xdb\x2e\x11\x11\x85\x58\xeb\x6b\xd5\x8e\xad\x17\x1f\x2e\xf8\xd4\x07\x22\xed\x42\x8b\x04\xe8\xb6\xe6\xa9\x82\x13\x4a\x88\x3b\x4a\x25\x71\x98\x0a\x87\xb6\x73\x4f\xee\x66\xe5\xec\x5a\xa9\x75\x0b\xe1\x4c\x36\xcf\xcc\xcc\xc8\x77\xde\x79\xc7\x24\x6e\xb3\xcd\xb6\x3f\xb3\x03\xcd\x7c\x26\x22\xea\x9d\x68\x4a\x07\x13\x51\xcd\xfe\x32\xd3\xe9\x5a\x82\x4e\xbc\x36\xc2\x14\xc6\xb7\xf9\x6e\xe6\x81\x91\x06\x46\x1c\x19\xe9\x4d\x44\x49\x65\x80\x06\x5c\x66\xb9\x7b\xda\xb3\xbc\xbc\xcc\x8f\x3d\xf6\x18\xb4\xf4\xa2\x92\x0f\xbc\xed\x82\xbf\x7b\x64\x33\x7f\xbf\xcb\x94\x8d\xef\x26\x24\xc5\x03\x75\x0e\xca\xa8\x65\x64\xe5\xfb\x27\x37\xff\xf5\x8d\xe1\xc6\x8f\x19\xbc\x18\x9d\x72\xd8\xf0\x7d\xdf\xd7\xf6\x4e\x7f\x64\x18\x6c\x8b\xfb\xcc\x82\xcc\x8e\xb3\x72\xd8\x2b\x57\xae\x70\x74\xec\xa5\x32\x74\x84\xe7\x32\x37\x5d\x49\x33\x1b\x85\x8f\x09\x90\x20\x36\x58\x92\x3a\xee\x50\x99\xd4\xb1\x54\x08\x3b\x22\xbe\x43\x4f\x6b\x08\x88\x21\x98\x8a\x47\xb6\xf2\x4f\xee\xe4\x83\xab\x1b\x7d\xad\x25\x10\x5a\x44\xc4\x67\xcf\x9e\xe5\xcd\xcd\x4d\x6c\x6d\x6d\xe9\x6d\x56\x48\x48\x29\xbf\x30\xd2\xa9\xaa\xf4\x78\xa0\x1d\x99\x4d\xe2\xd1\x8d\x53\xb3\x6e\x18\xf5\xe8\x7d\xa8\xca\x31\xb9\xb6\x49\x00\x66\xdd\xb0\xbc\xeb\x70\xa4\x11\xb6\x49\x54\x7a\x5a\xbd\xbd\x26\x57\xd5\xfb\xc0\x06\x83\xad\x5d\x6d\xe1\x23\x23\x23\x34\x38\x38\x98\xe4\x25\x60\xa3\xe8\x6f\xdf\x1a\x68\x2e\x95\x1b\xee\x48\x9f\x27\xfa\x05\xe0\xc4\xfb\x66\xd4\xf5\xc3\x82\xbd\xc5\xc1\xe6\xd5\xef\x9d\xda\xf8\x7f\x6e\x0e\xc6\xa7\xf1\xad\x20\x3c\x73\xc9\x9b\x9b\x9b\xe3\xb9\xb9\xb9\x7b\x06\x83\x93\x92\x50\x7d\x9b\x83\x65\x76\x74\x5b\x45\xf9\x7c\x1e\xe3\xe3\xe3\x40\x68\xe8\x10\x08\x62\xb3\xd0\x6a\x0c\x36\xdc\x83\xa3\xbb\x99\xc3\xa4\x0e\xbb\xd5\x0e\xbd\x55\xc7\x60\x2a\xfd\x28\x3e\xc8\x16\x9a\x2a\xa5\x1b\x57\x51\x62\x97\xa9\x74\x78\x2b\xf7\x44\x2d\x1b\x5c\x5b\x2d\xb5\x6e\x53\x78\xe7\x35\x4f\x4d\x4d\xc9\x0b\x17\x2e\x98\xba\xbc\x49\x1c\x2a\x4c\x87\xdb\x44\xae\x34\xd5\xc2\x56\x8e\x59\x4f\xa7\x72\xda\xfa\x0c\xed\x44\xa7\x23\xa9\x19\xae\xff\x9a\xef\x3a\x97\x33\x11\xc3\x64\x66\x66\xdd\xb6\x72\xd2\x9c\x29\x69\x08\x66\xb6\x71\x0f\x0c\xd7\xae\x5d\xe3\x87\x1f\x7e\x18\x42\x08\x46\x78\x5a\x46\x00\x82\x5f\xcd\x05\x95\xd9\x03\xf5\x2b\x77\xca\xcd\x3b\xb5\xac\xac\xf9\x82\xbd\x5a\x56\x56\x37\xfa\x5a\xcb\xb3\x07\xea\x1f\xfc\x6c\xa6\xf2\xbd\x77\x0e\x57\xff\x7a\x27\x1f\x7c\x80\xf0\xd0\xe2\x65\x44\xe7\xc0\x56\xab\xd5\xe0\xdb\xdf\xfe\xf6\x3d\x85\xa1\xd3\x8e\x39\x5b\x45\x36\x37\x5d\x0c\xfc\xe2\xe2\x22\xcf\xcc\xcc\xa0\x58\x2c\x02\x40\xc0\xcc\xc4\x82\x68\xb9\xdf\xdb\x3c\xb6\x51\x38\x53\xf0\x9d\x92\xad\x65\x89\xee\x18\xe2\x9c\x76\xca\x53\x92\xb0\x2d\x20\x54\xbd\x32\x52\x94\xa7\x36\xf3\xcf\x35\x32\x72\x6e\xb5\xd4\xba\x03\x0a\xd7\xca\x9f\x3b\x77\x8e\xdf\x7e\xfb\x6d\x8e\x0e\x69\xb6\x21\x9c\x89\x58\x69\xea\x88\x8d\xa0\x6c\x5c\x31\x4d\x34\x77\xaa\xc7\xc6\xf5\x6d\xf5\x9b\xef\x69\xdc\xde\x46\xe0\xa6\x14\x30\xe3\xcd\x27\xad\xee\xb4\xb6\xd8\xe0\x4c\x2d\x67\x7d\x7d\x9d\xa6\xa7\xa7\xa5\xe3\x38\x12\xea\x30\x68\x42\x43\x0a\x54\xb6\x0b\xc1\xd2\xc2\x70\xf3\xc3\x5f\x4c\xd4\xde\xfa\xe0\xe0\xee\x1b\x1f\x8e\xd7\xfe\x76\x61\xb0\xf1\xf6\x4e\x21\xb8\x24\x05\xe6\x11\x5e\x23\xac\x88\xa1\x21\xa5\xf4\xb5\x6b\x01\xee\x19\x0c\xdd\x16\xf7\xd9\xe2\x4c\x51\xd4\xd6\x21\xad\x56\x8b\x66\x66\x66\x64\x24\x0d\x24\x00\xe1\x39\xcc\xb5\x6c\x20\x67\x36\xf3\x0f\x39\x4c\xae\x7e\x16\x2c\x58\x33\xb4\x81\x68\x4d\x0b\xb7\x89\x4d\x8e\x6f\x9c\x51\x0a\x66\x54\x23\x11\x1c\x49\x85\xc3\xdb\xb9\xa7\x01\xac\x2d\x95\xbd\x1b\x10\xd4\x02\x80\xc7\x1e\x7b\x4c\xf6\xf7\xf7\x63\x61\x61\x81\xb8\xfd\x0e\xa5\xb4\x0e\xd1\x1f\x9d\xc3\xa5\x21\x70\x5a\x1e\x5b\xdf\xe9\x75\xa7\x19\xee\xe6\x60\x91\x91\x47\xf7\x20\xd9\x88\x52\x6f\xa3\x59\xa7\x2e\xd9\x01\x7b\xdb\x4d\x62\x33\xdb\x06\xb4\x4b\x49\x33\x6f\x57\x18\xb6\xb7\xb7\xe5\xc6\xc6\x06\x1d\x3d\x7a\x54\x46\xf3\x12\x2d\x75\x13\x6a\x74\x3a\xb7\x3a\x1d\x5d\x9d\xf4\x77\x07\xc9\xf5\x00\xeb\xd1\xed\x49\x4d\x29\xa5\xff\xfa\xeb\xaf\x63\x75\x75\xd5\xd6\x8e\x8f\x04\x83\x6d\xc7\x9c\x69\x70\xc2\x48\x93\x66\x3c\x02\x08\x8f\x01\x19\x1e\x1e\xa6\xa1\xa1\x21\x8e\x4e\x6d\x06\x08\xd8\x2c\xf8\xf5\x4c\x20\xfa\x27\x2b\xd9\x13\xea\x74\x3f\x40\x3f\x24\x59\xa3\x81\x48\x3f\x4a\xd6\x7b\x85\x32\x83\x15\x38\x00\xe2\x13\x02\x09\x70\x18\xc5\x43\xdb\xf9\x67\x8a\x2d\x21\x6f\x0d\x34\xaf\x48\x27\xf4\x4f\x8f\x8c\x8c\xf0\xa1\x43\x87\xf8\xf2\xe5\xcb\x36\xe4\xb1\x71\x4d\xf5\xae\x08\xc1\xa6\x63\xdb\x54\x20\x5d\x3d\xea\xc5\x10\xb7\x71\x6d\x68\xdf\xba\x3c\x34\x55\x20\x18\xdf\xdd\x90\xdd\x2c\xd7\xe6\x28\xd1\x0d\x7c\x06\xc0\x2f\xbe\xf8\x22\x9d\x3b\x77\x8e\x9e\x7e\xfa\x69\x1a\x1b\x1b\x53\x57\xf9\xda\x70\xc2\x66\x57\xa5\xc2\x10\x6d\x09\x46\xc4\x34\x03\x00\x2d\x22\xaa\x6b\xa7\xef\x6d\x01\xd8\x24\x22\x75\x6d\x80\x3a\xed\xaf\x41\x44\x5e\xb5\x5a\x0d\x5e\x7a\xe9\x25\xb9\xba\xba\x6a\x73\x88\xd8\x54\x47\xd5\x56\xa0\xdd\xc6\xb3\xc2\xe0\x68\x85\x49\xa3\x20\x93\x9b\x99\x46\xa8\x8d\xbb\x32\x00\x5c\xbf\x7e\x3d\x56\x9d\x98\x39\x88\x88\x42\x2c\xf7\x7b\x1b\x63\xd5\xec\xf4\x60\xc3\x1d\x53\x6a\x51\xb2\xe8\x37\x29\xa1\x4d\x62\x68\x71\xe6\x77\x12\x46\x20\x50\x76\x6c\x27\xfb\xe4\x68\x2d\x3b\xb8\xdc\xdf\xbc\xd2\xcc\x70\x1d\x80\x2c\x95\x4a\xf2\xd4\xa9\x53\x68\x36\x9b\x58\x5f\x5f\xb7\x49\x8a\x6e\xef\x36\xae\x9e\x96\xce\x0c\x4f\x2b\xdb\x56\x96\x4e\x80\x12\xf6\xba\xdb\xe4\x23\x92\x01\xd6\xf3\xa4\xa9\x59\x3a\xb2\x58\x9d\x0e\xa5\x52\x09\x4f\x3c\xf1\x04\xbd\xf0\xc2\x0b\x34\x34\x34\x24\xf2\xf9\xbc\xa3\xae\x3c\x7b\xf4\xd1\x47\xc5\xb1\x63\xc7\x78\x61\x61\x81\x3c\xcf\xd3\xdb\x62\x73\x4e\x74\x84\x61\x7b\x7b\x9b\xde\x79\xe7\x1d\x59\x28\x14\x30\x30\x30\x10\x58\xee\xd3\xa8\x47\xd7\x04\x34\xa2\xb0\x56\xab\xd5\xf2\xaf\x5d\xbb\xc6\xe7\xcf\x9f\x47\xb3\xd9\x4c\x85\x21\x6a\x87\x8d\x58\xcc\x36\x5a\x61\x70\xb4\xc2\xd2\x3a\x90\x8c\x8c\x9d\x54\x85\x78\x30\xd4\xdc\x04\x00\x44\x9c\x00\x81\x00\x96\xfb\xbd\xad\x99\x8d\xc2\x43\x39\x9f\xfa\xd4\x22\xae\xe4\xbc\x57\x63\x07\x9d\x3e\x7c\xda\xa7\x1e\xa6\xa7\x16\x0c\x31\x54\x77\xcf\x1c\xd9\x2c\x3c\xb8\xd6\xe7\x5d\xda\xc9\x05\x3b\x20\xc8\x6c\x36\xcb\x53\x53\x53\x72\x64\x64\x84\xae\x5f\xbf\x6e\x8a\x55\x1d\x2e\x53\x5a\xa6\x71\x62\x5b\x9a\x5e\xa4\x6c\xa7\xba\x15\x64\x9d\x08\x4a\x6f\x87\x8e\x08\xdd\x88\xdb\x44\x0a\xb3\x4e\x8c\x8f\x8f\xd3\xe7\x3f\xff\x79\x1c\x3c\x78\x50\x10\x91\x03\x46\xae\xd0\x12\xfd\x1f\x5b\x2a\xdd\xb7\x52\xf2\xaa\x4c\x90\xc5\x62\x91\x8f\x1c\x39\xc2\xc6\x1e\x77\x9b\x8a\xd6\x13\x0c\x37\x6f\xde\xe4\x6b\xd7\xae\x51\x10\x04\x5c\x28\x14\x64\x26\x93\x09\x98\x39\x10\x42\xf8\x52\xca\x80\x99\x83\xe5\xe5\x65\xb9\xb0\xb0\xc0\xdf\xfe\xf6\xb7\xe5\xfc\xfc\x3c\x35\x9b\xcd\x54\x18\xb4\xba\xcd\x70\x73\x9c\xcc\xf9\x2a\xa9\x7f\xa8\x47\x17\xe7\x69\xc6\x33\xd0\x4e\x3c\xb6\x74\x71\xda\x27\x9f\x7c\x12\x67\xce\x9c\x11\xd1\xa9\xe1\x65\x00\x93\x00\x8e\x4d\x6d\xe4\x3f\xf9\xd9\x0f\x87\xff\xa3\x42\xcb\x29\xb5\xdf\x2d\x11\xb5\x5c\x11\x89\x01\xb5\x29\x83\x93\x0b\xe3\x75\xaa\x0a\xe3\x9a\xae\x9c\x7f\x63\xaa\xf2\x3f\xbe\x37\xb9\xfb\x5d\xdf\xe1\xad\x48\x57\xf5\x5b\xad\x96\xfc\xda\xd7\xbe\x66\xb6\xdb\x06\x43\x2f\x7d\x62\xa6\xb3\x95\x65\xcb\xdb\xa9\x5c\x5d\x35\x32\x67\x9e\x61\xc9\x67\xc6\x99\xe5\xdb\xe2\xe3\xb6\x15\x0a\x05\x9c\x3d\x7b\x16\xa7\x4f\x9f\x06\xd4\xbd\xd3\x8c\xfc\x58\x35\x33\xf5\xfc\xd5\xe1\x3f\x18\xab\x66\x3e\xf3\xe3\xa3\xdb\xff\xe8\xed\xc3\x3b\x3f\x40\x78\xdb\x93\x57\xa9\x54\xe4\x9f\xfe\xe9\x9f\xea\x17\xbb\xdb\x70\xe3\x23\xc1\x90\xc9\x64\x84\x76\x5b\x52\x47\x18\x2c\x71\x77\x9d\x47\xdf\x53\x4d\x29\xbf\xea\x49\x53\x19\x4c\xe9\x10\x77\xce\x9d\x3b\x77\x68\x74\x74\x94\x07\x06\x06\x98\x88\x18\x80\x64\x66\xde\x29\x04\x8d\x7a\x46\xfa\xd3\x9b\xf9\x07\x05\x93\xd0\x4f\x04\x57\xa5\x86\x5b\x22\xc2\x66\xc4\xf3\x77\x8a\x78\xd4\x06\x23\x02\x62\x6b\x24\xb6\x4b\x42\xb7\xad\x2b\xc5\xe0\xe1\xad\xfc\x27\x47\x77\x33\xc3\xcb\xfd\xde\xd5\xa6\xcb\x1e\x08\x2c\x84\xe0\xc7\x1e\x7b\x8c\xcb\xe5\x32\xb4\xbd\xb8\x36\x8e\xae\xc3\x66\xc2\xaa\x3a\xd0\x54\x19\x60\xc4\xdb\x44\xbb\xae\xb3\xa6\xf5\xab\x4d\x3d\xb5\x71\x3e\x9b\x2a\x95\x16\x6f\x72\x69\x9c\x3c\x79\x92\x5e\x7c\xf1\x45\x44\x0b\xf0\x32\x00\x72\x8e\xc4\xd0\x03\x2b\xc5\x67\x3f\x75\x65\xf8\x7f\x1e\xae\xbb\x9f\x12\xa0\xbe\xd1\x6a\xe6\x63\x77\x06\x9a\x3f\xaf\xe6\x83\x2d\x66\x0e\xf2\xf9\xbc\xcc\xe5\x72\x7c\xf3\xe6\xcd\x4e\x2a\xe0\x47\x82\x41\x4a\xd9\x13\x0c\x29\x71\x77\x9d\xc7\xc1\xde\x41\x37\x7f\xbb\x3d\xb6\x7c\x11\xfe\x32\xcf\xce\xce\xf2\x83\x0f\x3e\x88\x4c\x26\xc3\x00\x02\x22\x92\x20\x60\xad\xd4\xaa\x64\x03\xea\x3f\xb8\x93\x9d\x81\x42\x6d\xcd\x40\x08\xdf\x43\x4a\xd0\x4f\xea\xa0\xe8\x48\x8f\xd8\x39\x1b\xa5\x23\x4e\x36\xa7\xab\x66\x10\x53\x76\xb8\xee\x3e\x7a\x74\xbd\xf8\x58\xd3\x95\x4b\x1b\xc5\xd6\x0a\x13\x98\x88\x78\x64\x64\x84\xcf\x9e\x3d\x8b\xe8\xa4\x71\x73\x00\xd5\x93\x46\x20\xa6\xce\x9a\xd6\xe9\x66\x9c\xd9\xcf\x66\xf9\x69\x1e\x2c\x58\xd2\xf4\x9a\xc7\x9a\xfe\x8b\x5f\xfc\xa2\x78\xe8\xa1\x87\xe0\xba\xae\x0b\x20\x07\xa0\xd8\xdf\x70\x0e\x3d\x37\x3b\xf4\x5f\x9c\xbb\x59\xfe\x27\x85\xc0\x99\x56\xbd\x99\x91\x34\x3a\xba\x9b\x39\x38\x3b\x5a\x7f\x3d\x70\x50\x03\x10\x8c\x8d\x8d\x05\xab\xab\xab\x14\xdd\x79\x61\xb3\x5b\xfe\xce\x61\xe8\x21\x9d\x2d\x3c\xad\xac\x36\xa3\x3a\x4d\xbf\x35\x0b\x49\x33\xd8\x4c\xae\x09\x3d\xec\xbd\xf7\xde\x93\x8f\x3e\xfa\x68\x78\x17\x59\x68\x64\x07\x0c\xe6\xa5\x01\x6f\xa3\xcf\x73\x86\x0e\x54\xb3\x47\x84\x76\x52\x47\xdb\x11\x36\x48\x8c\x6c\x28\xa2\x30\xd4\xac\x30\x4d\x42\x39\xea\xba\x56\x95\x2f\xef\x8b\xc9\xa3\x1b\x85\xcf\x8c\xed\x64\x47\x37\x8b\xfe\x8d\x5a\x56\x36\x19\x8c\x68\xce\x82\x1e\x78\xe0\x01\x04\x41\xa0\xdc\x78\xa6\xa4\x33\x09\x42\x6f\x8d\x69\xc8\x76\x32\x68\x6d\xe9\x4c\x3b\xc4\x54\xb5\x6c\x83\x68\x93\xdc\xb6\x3c\x7a\x9b\xe3\xb0\x2f\x7c\xe1\x0b\xf4\x89\x4f\x7c\x82\x8a\xc5\xa2\x20\xa2\x1c\x80\x7c\xd6\xa7\xe1\x07\x97\xfa\x7e\xe5\x85\xcb\xc3\xff\x62\xb2\x92\xfb\x9c\xc3\xe1\xe9\x29\x60\x75\x6e\x3b\xa1\xcf\x73\x8e\xe6\x7c\xe1\x2d\x0c\x35\x2e\x32\xc1\x03\x10\x4c\x4f\x4f\xcb\x0b\x17\x2e\xe8\x88\xfc\xff\x09\x0c\x96\x6f\x5b\xdd\x69\xf9\x4d\xbc\x6e\x9b\xa8\x75\x8c\x44\x7a\x26\x95\xc8\xcc\x64\x52\xb3\x19\xa6\x73\xda\x58\x4f\x64\x66\x4c\x4e\x4e\x4a\x22\x52\xee\xd8\x40\x0a\xc8\x5b\x03\xcd\xb5\xe1\x5a\xe6\xe0\x50\x74\xdd\x2a\xb0\xb7\x11\x3a\x54\xa4\x06\x89\x10\xab\x50\x61\xe3\x23\x62\xd0\x13\x47\xcd\x21\x10\x04\x53\x76\xa8\xe1\x3e\x7a\x7c\xbd\xf8\x89\x7c\x4b\xb4\x36\xfa\x5a\xb7\x5b\x0e\x4b\x10\xa4\xeb\xba\x98\x9a\x9a\xc2\xa9\x53\xa7\xe0\xba\x2e\x1a\x8d\x06\x35\x1a\x0d\x1b\xb2\x4b\x24\x30\xa6\xf5\x8f\xd9\xd1\x36\x63\xd6\x26\x25\xcc\x01\xd6\x89\x49\xff\x36\xfb\x7c\x4f\x17\xe9\xf1\x44\x44\x53\x53\x53\xf4\xec\xb3\xcf\xd2\x53\x4f\x3d\x45\xe5\x72\x59\x10\x51\x86\x88\xf2\x42\xa2\x7c\x68\x3b\xf7\xc0\x27\xaf\x0e\xfd\x37\x67\xee\x94\xfe\xab\x7c\xcb\x99\xa2\xa8\x13\xf5\x9b\x43\x43\x26\x45\x34\x52\x73\x1f\xdc\xc9\x07\x57\x56\xfb\x5a\x0b\x08\xd7\x90\x05\x93\x93\x93\x98\x9b\x9b\xa3\x48\xc5\xf9\x3b\x81\xc1\x12\x66\x73\x02\xa5\xd9\x76\xa6\x24\xd6\xd5\xe3\x3d\xc4\xab\x5f\xa9\xa5\x37\x2e\x0d\xe1\x53\x0d\xe8\x94\xf8\xb8\x8c\xa5\xa5\x25\xce\xe5\x72\x34\x36\x36\xc6\x00\xfc\x68\xd2\x2e\x08\x1c\x04\x37\x07\x9b\x4b\x63\xd5\xec\x91\x72\xc3\x19\x8d\x75\x24\xd5\xf4\x18\xfd\xa8\x0d\x2a\x50\x22\x15\x42\x81\x90\xe4\x8b\xce\xf1\x49\x44\x0d\x54\x38\x21\x1b\xd0\xe8\x64\x25\xf7\xe9\xe3\x6b\x85\x47\x41\xd8\xd9\x2a\xb4\x36\x02\x27\x44\xf4\x6c\x36\x8b\x43\x87\x0e\xe1\xa1\x87\x1e\xe2\xbe\xbe\x3e\xf2\x7d\x9f\x76\x76\x76\x80\xbd\x83\xa2\x0f\x30\x19\x7f\xaa\xef\xcc\xc1\xd4\x6d\x07\xb3\xac\x34\x69\x6c\xba\x12\x75\x37\xab\xde\xbf\xfa\x38\x48\x44\xc6\xf2\xf4\xf4\x34\x3d\xfb\xec\xb3\x78\xf8\xe1\x87\x51\x2a\x95\x84\xe3\x38\x19\x66\xce\x13\xa8\xef\x40\x35\x73\xec\x99\xb9\xc1\xff\xe4\xa9\xf9\x81\x7f\x36\x54\x77\x9f\xa2\xf0\x44\x0c\x20\x5a\x70\x96\x08\x5c\x8a\x4f\xc4\x10\x8c\xdc\xf8\x4e\xee\xc1\x5b\x03\xcd\x37\x77\x73\xc1\x26\x00\xbf\x54\x2a\xc9\x4c\x26\xa3\xdb\x13\xf7\x0c\x06\x2d\x0f\xb4\xb4\x69\xb6\x92\xcd\xfb\x67\x22\xbe\x5e\xbe\x99\x07\x40\xfb\xd2\x8d\x34\x31\x64\xe3\x62\x7b\x0c\x68\xa3\x81\x56\x3d\x6d\x71\x71\x91\x8f\x1c\x39\x82\xbe\xbe\x3e\x8e\x5c\xb1\x01\x33\xfb\xbe\x0b\xff\xd6\x60\x73\x65\x74\x37\x3b\x39\xd0\x70\x46\xe3\xf5\x4e\x88\x0f\x2a\xd1\xd4\x27\x75\x6c\x4d\x62\x6c\xe8\x87\x17\x90\x76\xfe\x0d\x47\x50\x91\x9e\x26\x2a\x35\xef\x3b\x53\x53\x9b\xf9\x17\x8f\x6d\x14\x1e\x91\x40\xb5\x92\x0f\x2a\xbe\xc3\x81\xea\xa0\xd1\xd1\x51\x3e\x79\xf2\x24\x4f\x4f\x4f\x23\x9f\xcf\xd3\xd2\xd2\x92\xee\xde\x34\x19\x86\x29\x19\x61\x89\x37\xa5\x8c\xad\xff\xcc\x7c\x3a\x42\xd9\x0c\x54\x18\xf9\x18\x00\x9e\x7c\xf2\x49\x7a\xf6\xd9\x67\x71\xf2\xe4\x49\xd1\xd7\xd7\xe7\x20\xf4\x1e\xe5\x89\xd1\x3f\xba\x9b\x3d\xfa\xe4\x8d\x81\xff\xf0\x99\xb9\x81\xff\x7e\x62\x27\xfb\x59\x47\x8a\x7e\xa2\x70\x57\x5a\x72\xb1\x0d\x45\xf6\x58\x72\x5c\x90\xaa\x2d\x23\x69\x78\x74\x37\x73\xf0\xda\x68\xfd\x75\xdf\xe1\x3a\x11\xf9\xa3\xa3\xa3\x41\x64\x8b\xdd\x33\x18\x8c\x3e\x35\xc3\xd5\x63\x63\xe2\xb6\xb1\xd1\xcb\x37\x25\x4d\x5b\x1e\x73\x2d\x93\x5e\x89\x4d\x15\xb0\x01\x6c\x6b\xa0\x4d\x47\x14\x00\xf8\xf2\xe5\xcb\x3c\x35\x35\x85\x62\xb1\x28\x95\x94\x20\x22\xbf\x19\xde\x41\x7c\x67\x74\x37\x73\x68\xa0\xe1\x8e\x42\x0d\x44\xf4\xc4\x24\xac\xf3\xe7\xf6\xd7\xe4\x3b\x31\x27\x92\x78\x4b\x3e\x62\xca\xf4\xb5\x9c\x63\x33\x9b\xf9\xcf\x1e\xdd\xc8\x9f\x75\x24\xb5\x2a\x79\x7f\x5d\xed\xd7\x25\x22\x14\x8b\x45\x3a\x7c\xf8\x30\xce\x9d\x3b\x87\xc9\xc9\x49\xba\x72\xe5\x8a\xd9\x17\x0a\xee\x6e\xb3\xd4\x80\xbd\x1f\xd3\x98\x88\x9e\xbe\x23\xa3\x01\x80\x8f\x7f\xfc\xe3\xe2\xa9\xa7\x9e\xa2\xa7\x9f\x7e\x9a\xc6\xc7\xc7\x85\xeb\xba\x0e\x33\x67\x88\x28\x0f\x46\x69\x7c\x27\x7b\xfc\xa9\xf9\x81\xff\xf8\x99\xb9\x81\x7f\x3a\x59\xc9\x7d\x2e\x23\xc5\x30\xa2\x95\xfa\xaa\x43\x62\x27\x05\x12\xbb\xad\xcd\x03\x18\x11\x4e\xc9\x73\x66\xb2\x01\xd5\x23\x7b\xa2\x41\x44\xf2\x81\x07\x1e\xe0\x68\x9e\xe0\xae\x61\xb0\xbc\xa7\xcd\xea\xdb\x24\xb1\xf9\x74\x33\xdc\xad\x79\x08\xed\x88\x6f\xe3\x58\x69\x8f\xe9\x47\xee\xe4\x6b\x87\x19\xfe\xdb\xbf\xfd\xdb\x62\x60\x60\x40\x20\xbc\xff\xba\x0c\x60\x0c\x8c\xa9\xbc\x2f\xee\xff\xe4\xd5\xa1\xdf\x3e\xb9\x5a\x78\x54\x68\x18\x1c\xcf\x4d\xc4\x97\x3c\x26\x50\x51\xdb\x8b\xf1\x6e\x52\x42\x6a\x10\x03\x80\x5f\xcb\xc8\x0f\x67\x0f\xd4\xfe\xcd\xe5\x03\xb5\xef\xad\x96\x5a\x0b\x2d\x97\x6b\xcc\xec\x11\x91\x8f\xd0\x6d\x2c\x99\x59\x7a\x9e\x87\xb9\xb9\x39\xfc\xe8\x47\x3f\x92\xa3\xa3\xa3\x62\x6d\x6d\xcd\x36\x67\xb3\x07\xee\x2e\xef\xe6\x63\x33\x52\xe3\xef\x4f\x7f\xfa\xd3\x62\x7a\x7a\x5a\x49\x40\x11\xc5\xbb\xcc\xec\x12\x28\xdb\xe7\x39\x83\x47\x36\x73\x67\x1e\x5a\xea\xfb\xd2\xc4\x4e\xf6\x05\x57\xd2\xa8\x02\x9c\xf4\xd3\xc0\x10\x09\x55\x6d\x02\x48\xdf\x93\xd2\xbe\x15\x38\x4c\xe3\x0b\xae\x9c\x3f\xbe\xf9\x8f\xdf\x3f\xb8\xfb\x32\x83\x37\x88\xa8\xb1\xb6\xb6\x26\xff\xec\xcf\xfe\xcc\xa6\x52\xa7\xc2\x90\x92\xb6\x93\x6a\xde\x0b\x6e\xf6\x52\x97\x19\x2f\x00\x48\x93\xc1\x76\xcd\xb0\x8f\xc6\x98\xe5\x40\xcf\x7f\xe8\xd0\x21\xf1\xe2\x8b\x2f\x2a\xb7\x5f\x16\x8a\x28\x80\xa9\x5c\x8b\xee\x7b\x7a\x6e\xf0\x37\x1f\x5a\xea\x7b\xd2\x91\x24\x62\xa5\x56\x7b\xda\x16\x08\xaa\xb0\x48\xe4\x5b\x89\x24\x4e\xb3\x97\x56\x54\x59\x09\x3e\xb0\x6c\x39\xbc\xb2\xd6\xd7\xfa\xe9\xec\x68\xed\xcf\x6f\x0c\x35\x2f\x6c\x15\x5a\x6b\x81\x40\x0d\x14\x5e\xec\x87\x88\x38\x88\x08\x52\x4a\xb9\xbd\xbd\x0d\x20\xbc\x69\xe9\x8d\x37\xde\xb8\xdb\x7e\x82\x10\x42\x44\xa7\xab\x43\xcd\xca\x9e\x39\x73\x46\xe4\x72\x39\xcc\xcc\xcc\xc0\x75\x5d\xf4\xf7\xf7\xeb\x7d\x2a\x10\xaa\x44\x2e\x18\xd9\x9c\x4f\xc5\xf1\x6a\x76\xea\xc4\x6a\xe1\xb9\xa9\xcd\xfc\xaf\xf5\x37\xdd\xd3\x82\xa9\x64\x5a\x95\x1c\xdb\x5b\x1d\x50\xc0\xd2\x7f\x49\x9f\x01\xbb\xb9\x60\xf6\xdb\xa7\xd7\xfe\xb3\x95\x92\x77\x11\x84\x0a\x00\xef\xea\xd5\xab\xf2\xfb\xdf\xff\xbe\x9e\xa3\xdb\x44\xa6\x2d\xcc\x46\x18\x9d\xe2\x7b\x65\x36\x69\x44\x15\xa7\x23\x23\xa1\x0e\x84\xc9\xe5\x6c\xdf\xdd\x66\x26\x6d\xf9\xda\x9e\xdf\xfb\xbd\xdf\x13\x99\x4c\xc6\x8d\x2e\x74\x2c\x01\x18\x63\xe6\xc3\x0e\xd3\xb1\x73\x37\xfb\x7f\xed\xf1\x9b\xe5\xe7\xb3\x81\xc8\x02\x6a\x40\xa3\x81\xb4\xbd\x31\xc2\xc3\xce\x12\xc4\x8e\x09\x24\x8c\x67\xed\x2a\xaf\x64\x96\x9b\xa3\x11\x0e\x89\x22\xca\x93\x50\x8d\xf4\x1c\x5e\x58\xeb\x6b\xfd\xed\xfc\x48\xfd\xd5\xc5\x81\xe6\x7b\xeb\x7d\xad\xdb\x9e\xcb\x6a\x93\xbb\x1f\x5d\x33\xa6\x60\x93\x08\x89\x25\xac\x33\x24\x18\x2c\x2c\x2c\xb4\xc1\xfd\xdd\xef\x7e\x57\x02\xc0\x0b\x2f\xbc\xd0\xd6\xf7\xc5\x62\x11\x63\x63\x63\xf1\x77\x44\xac\x3a\xf2\x0b\x66\x16\x51\x58\x16\x0c\xb7\xe4\x39\xa5\xb1\x9d\xcc\xcc\xf4\x66\xfe\xc9\xa9\xcd\xfc\xa7\xfa\x1b\xee\x23\x0e\xd3\x70\xdc\x0f\x11\x12\x93\x86\xcc\xa1\xe3\x21\x61\x34\xac\xc1\x9f\xf8\xbd\xa3\x13\xf5\x54\x1e\xd5\x5b\xb1\xcb\x9b\x71\xa7\xdf\xfb\xee\x77\x4e\xaf\xfd\xe3\x7a\x56\x2e\x02\xa8\x04\x41\xe0\x7f\xf5\xab\x5f\x4d\x43\x56\xf3\xb1\x21\xb6\xfe\xd8\xf2\x77\xf2\x28\xf5\x92\x27\x2d\x4e\x00\x7b\xe9\xbf\x53\x85\xbd\xa4\xe9\x45\xac\xb5\x35\xee\xd0\xa1\x43\x78\xe1\x85\x17\x90\xc9\x64\xf4\x5b\x4e\x47\x01\x4c\x12\xe3\xd8\x7d\x2b\xc5\xa7\x7f\xf9\xda\xe0\xe7\x8b\x2d\x51\x6e\xe7\xfe\x89\xfb\x15\x88\xc7\xaf\x0d\x22\x53\x8a\x30\x18\xa6\x6d\x12\x9f\x3c\x4d\xe9\x79\x12\xa2\x62\xdf\x17\xbc\x51\xcd\x05\x97\x96\xfb\xbd\x37\x6e\x0f\x78\xef\x2e\xf7\x7b\xb3\x95\x9c\xbf\xd6\x70\x65\x95\x45\x28\x39\x80\xf8\x57\xf5\x85\x34\xca\xed\xd4\x77\xfa\x7b\xbb\x14\x60\xb8\x8e\xa4\x6c\xc1\x17\xa5\xe1\x5d\x77\x62\xbc\x9a\xbd\xff\xf0\x56\xfe\xf1\x91\xdd\xcc\x63\x85\x96\x38\x26\x18\x25\x8a\xf3\xe8\x27\xb0\xf7\xae\x36\xb6\x2b\xa3\x2a\x9d\x55\x17\x55\x79\xe4\xfb\x07\x77\xff\xe5\x0f\x4e\x6c\xfe\x2b\x29\xb0\x02\xa0\xb6\xbe\xbe\x2e\xbf\xf9\xcd\x6f\x76\x52\xc3\x3b\x31\x50\x5b\xbc\xed\xb1\x11\x40\x2f\xe5\x74\xac\x5b\x87\x2e\x8d\x5a\x6d\x80\xa5\xd9\x1d\xdd\xc4\x9e\x59\x17\x00\x88\xc3\x87\x0f\xe3\x97\x7e\xe9\x97\x30\x32\x32\x12\x72\x3d\xa0\xc4\xcc\xc3\x00\x26\x09\x34\x75\x68\x3b\xfb\xf8\x73\xb3\x43\x5f\x18\xdd\xcd\x4c\x86\x59\x74\xde\x9e\x70\x2b\xdb\x49\x81\xba\xea\xd4\x76\x9e\x60\xac\x27\x47\x25\x1a\xea\x53\x5b\x19\xba\x9b\x20\x76\xb8\x30\x18\xf0\x02\xc1\x1b\xf5\x8c\x5c\xd8\x2c\xfa\x57\x2a\x79\xff\xea\x4a\xc9\xbb\xb2\x9d\xf7\x17\xab\xb9\x60\xad\x9a\x0b\x6a\x9e\xc3\x5e\x04\x6b\x1b\x81\x60\xef\xa3\x6c\x00\xf5\xee\xe6\x7d\xca\xf6\x37\xdc\x52\xc9\xf6\x5e\x6e\x19\x00\x00\x10\xcd\x49\x44\x41\x54\x73\xc6\x86\x6a\x99\xa9\xd1\xdd\xcc\xa9\xc1\xba\x7b\xff\x40\xdd\x3d\x96\xf3\x00\xca\x10\x35\xef\xc5\x61\x87\x51\x06\xc8\x55\xba\x7f\xdb\xf2\x97\x98\xc0\xdb\xc3\xf4\x8b\x31\xdb\xc2\x34\x89\xa1\x09\x8e\xa8\x0c\x4e\x0c\x6e\x93\x26\xc2\xc3\xc7\xb6\xce\x9f\xd8\xfa\x83\x8b\x07\x77\x5f\x06\x42\xd5\xe9\x0f\xff\xf0\x0f\xef\x5a\x6d\xc4\xfe\x99\xf2\xdd\xa8\xf3\xd6\xfc\xca\xa8\x06\x3a\xab\x3a\xfa\x93\x96\xae\x93\x88\x4a\x4b\x1b\x13\x4d\x36\x9b\xc5\x67\x3e\xf3\x19\x75\x4a\xb4\x8b\xf0\x40\xb2\x61\x00\x13\xcc\x3c\x55\xf2\x9c\x13\x9f\xb8\x3e\xf8\x1b\xf7\xad\x16\x1f\x21\x09\xa1\x7b\x44\xda\x45\x3f\xda\xb9\x3d\x10\x0e\xb2\x86\xcd\xc9\xf4\x44\xb2\x36\x2a\xe6\xa8\x11\x62\x70\xd4\x3b\x6a\xf3\x7b\xa2\xa0\x25\xe9\x54\xf9\x6a\x1d\x55\xa8\x6e\x40\x32\xe0\x49\x42\x2d\x10\xbc\xe6\xb9\x72\xad\xe9\xca\x8d\xba\x2b\x37\xea\x19\x59\x69\x66\x64\x55\x12\xfb\x92\xd0\xe2\xd0\x88\x13\x82\x91\x71\x24\x65\xf3\x2d\x51\xca\xf9\xa2\x5c\x6c\x39\xc3\xf9\x96\x18\xcb\x48\x1a\x76\x24\x0d\x13\xa3\x48\xa1\x7a\x64\xd1\xf9\x35\x2a\xa5\xbd\xc1\xf1\x67\x4a\xbf\x24\x49\x35\x79\x62\x12\x44\x0a\xe3\x51\x12\x57\x0a\x78\xb3\xa3\xb5\xff\xf3\xaf\x1e\xdc\xf8\xe7\x08\xf7\x30\x34\x5e\x7f\xfd\x75\xf9\xfe\xfb\xef\x77\x63\x9a\xb6\x38\x58\xe2\x7b\x61\xd0\xb6\x38\xb3\x2c\xb3\xcc\x3d\xef\x66\xef\x76\xd3\xd7\xf6\xfb\x6d\x7b\x3a\xe6\xf9\xc2\x17\xbe\x20\xc6\xc6\xc6\x14\x51\xe4\x01\x0c\x22\xf4\x40\x1d\x76\x25\xcd\x9c\x5d\x2c\x7d\xfa\xd1\xc5\xfe\x5f\xce\xfb\xa2\x08\x40\x1b\x1c\xbb\xfe\xa7\x3f\xed\x7e\x15\x7b\x58\x17\xbc\xea\x29\x4f\x5a\x39\xe9\xad\x4a\x52\x5a\x61\x30\x31\x34\xad\xd6\xd4\xc6\x1b\x22\xae\xd3\xd3\xc9\x23\x61\x84\x31\xc2\xa3\x61\xde\x9c\xaa\x7c\xe3\xe2\xc4\xee\xbf\x69\xb9\x7c\x05\x76\x82\x30\x9f\x5e\xec\x8b\x7b\xf1\xec\xbb\x1e\xf3\x06\x21\x95\x99\x90\x40\x4e\x5a\xbc\xfe\x0d\x2d\x5c\x85\xb1\x91\x5f\x7d\xeb\xe1\x52\x0b\xdb\x53\xc6\x87\x1f\x7e\xc8\x00\x30\x39\x39\x19\x6e\x44\x0f\x37\x8e\x78\x20\x34\xa5\x40\xfd\xf6\x80\x77\xe7\x4e\xb9\xb9\x32\xba\x9b\x99\x28\x79\x4e\x39\x76\x23\x42\x1b\x76\x65\x20\x1a\x8d\x4d\x00\xea\x80\x18\x89\x7f\x37\x46\xc2\x76\x05\x2a\x24\x42\x3d\x77\xbb\x06\x61\x43\x5e\x3d\xbf\x0d\xf9\x13\x0e\xaf\x16\x29\xc6\x46\xbe\x61\xc4\x86\x12\x4b\x33\x80\x91\x48\x8d\xf8\x9a\xe3\x68\xb6\x99\xa3\x38\x75\x8f\x9f\xb6\x58\x3e\xe9\x83\x3d\xb4\x92\xcc\xfc\x27\x52\x95\x63\x69\xa9\xfa\x45\x82\xb1\x54\xf6\xe6\xbf\x7b\xff\xc6\x9f\xcc\x8e\xd6\x7f\x14\x08\xbe\x83\x70\xa7\x5b\x83\x99\x5b\x8b\x8b\x8b\x58\x59\x59\x31\x71\x00\xb0\xab\xe6\x7a\x9c\xc9\x3b\x04\xf6\xe2\x51\x1a\x7f\x31\xd3\xe8\x38\xd6\xd3\xa3\xdf\x20\xa4\x23\xb5\xea\x1e\x69\x74\x97\xfe\x0d\x2d\x9f\x4e\x7d\x7a\x19\xea\x5b\x01\x6f\x36\x50\x58\xd2\x8b\x3b\x77\xee\xc8\x56\xab\x45\x87\x0e\x1d\x92\x14\xde\x41\xe1\xc7\xbb\xa7\x08\xcd\x9d\x5c\xb0\x79\x6d\xb4\x7e\x5d\x30\x65\x47\x6a\x99\x31\x97\xc9\x35\xd5\x9f\x78\xf9\xb8\xee\x75\x32\x54\x85\xb0\x25\xea\x2e\x82\x08\xf9\x29\xf9\x25\x20\x59\x3b\x15\xe7\xd3\x11\x52\x15\x95\x20\x3a\x69\x75\xab\x32\xc2\xfa\x39\xba\x7b\x2f\xf4\xeb\x2b\x3d\x3e\x0e\x43\xa2\xca\xc5\xb3\xf3\xa4\xf2\x26\x75\xb6\xb5\x11\xd4\xd6\x8e\xb0\x4c\x5d\xfd\x53\xf9\x10\x13\x45\xd2\x17\x68\xab\x23\xc1\xf5\xbd\x75\xeb\x7d\xc3\x04\x34\x5d\xae\xbd\x75\x64\xe7\xfc\x0f\x4e\x6c\x7e\x73\xbb\xe0\xbf\x0f\xa2\x05\x00\x2b\x00\x2a\x44\xe4\xb5\x5a\x2d\x79\xfe\xfc\x79\x04\x41\xa0\xf0\x42\x27\x0c\x15\x66\xc3\x05\x5d\x8d\x31\xd3\xeb\xf8\x09\x23\x5d\x3c\x9a\xe8\x2c\x0d\xd2\x88\x2a\x66\xc8\xb6\xfd\x10\xe6\xb7\x0d\xb1\xf5\x82\x6c\x06\xb3\x59\x99\xce\x09\x4c\xe9\x60\xe6\x63\x00\x58\x5e\x5e\xa6\xb7\xdf\x7e\x5b\x3e\xf0\xc0\x03\xc8\x66\xb3\x89\xa4\x00\x9a\x0c\x6e\xf8\x2e\xea\x37\x07\x1b\x37\x57\xfa\x5b\x6b\x23\xb5\xcc\x78\xb1\xe5\xf4\x03\x94\x20\x61\x84\x61\x21\x62\x84\x15\xa8\x25\x21\xba\x56\x10\x72\x42\x63\x1b\xab\x06\x7c\x98\x25\x71\xc3\x52\x5c\x9e\xee\xe1\x8a\x10\x46\x19\xa5\x50\xe5\x42\x43\x74\x7d\xf9\x08\x12\xe6\xac\x7b\x70\x34\x99\xac\xd6\x15\xe9\x2e\xe0\xf0\x9d\x11\x9f\x84\x08\xc5\xb9\xd1\xe6\x6e\x56\x07\x48\xb3\x3e\x0b\x4d\xb1\xa7\x2c\x21\xc0\x28\x73\xd8\x0e\xdd\x1e\x4a\x28\x36\x6e\x5e\x24\x31\x96\xca\xde\xfc\x6b\x27\x37\xff\xfc\x17\x13\xb5\xef\xfb\x0e\x66\x23\x62\x58\x22\xa2\x6d\x22\xaa\x33\xb3\xff\x47\x7f\xf4\x47\x32\x08\x02\x93\x08\x4c\x0d\xc4\x86\x0b\x3a\xee\x69\x1d\xd3\x36\x24\xc2\x08\x33\x19\x74\x9a\x34\xe9\x24\x99\x62\xed\x46\x5f\xfe\x6d\xf3\x30\x99\xa2\xa6\x53\xe5\x69\x61\xea\xbb\xad\xe2\x94\x74\x80\x41\x18\xef\xbd\xf7\x1e\x0f\x0d\x0d\x61\x68\x68\x88\x11\x11\x45\x24\x96\xeb\x10\x54\xdb\x2e\xf8\xeb\x57\x0e\xd4\x67\x5b\x0e\xfb\xa3\xbb\x99\x71\x57\x52\xd6\xdc\x81\xd7\xf6\xa6\x7b\x91\xda\x7f\xa2\x94\xc9\x09\x1f\x0a\xa5\xd5\x7f\x5d\xe1\x30\x3b\x45\x97\x3c\xb6\x54\x6d\xaa\x8a\x45\x15\xe3\x36\xe4\x53\xdc\x3d\x6a\x87\xe6\x4f\x0e\x89\x5a\x11\x8a\x22\x02\x05\x88\x0a\x4f\xa4\x64\x1b\x65\x9b\x2a\x56\x9c\x46\x79\x91\x12\x95\xa8\x9d\x20\x19\xbb\x59\x59\xf9\xd9\xf4\xf6\xab\x3f\x3c\xbe\xf5\xad\x8d\x62\xeb\x3d\x10\x5d\x03\xe2\x73\x92\xb6\x81\xf0\xf0\xe1\x8b\x17\x2f\x62\x71\x71\x51\x67\xa4\x3a\x72\x9b\x5d\xa2\x06\x47\x1f\x73\xd3\x99\x63\xe2\x8f\x8e\x83\x26\x23\xd7\x99\xb8\xae\xe2\x2b\x2d\xc6\x26\x71\xf4\x7c\xa4\xaf\x76\x85\x51\x60\x1a\xb2\x9b\x8f\x49\xb9\x69\x52\xc4\x04\x5c\x2f\xaf\x13\x61\x88\xeb\xd7\xaf\x4b\x00\x18\x1b\x1b\x53\xc7\x97\x78\x44\xd4\x44\xb4\x29\x3d\x70\x78\xf7\xf6\x40\xf3\xd6\xc2\x50\x63\x31\xef\x3b\x7d\xe5\x86\x33\x28\x98\x9c\x04\x09\x93\x71\xd0\x39\x37\x42\x66\xdb\x36\x32\x64\x1b\xbf\x08\xa1\xf6\xa2\xb1\x91\x57\x97\x10\x46\x7c\x92\x33\x41\x3a\x3d\x26\xe6\xec\x4a\x65\xe1\xa4\xbd\x4a\x22\xc4\x6a\x9f\x22\x04\x0d\x9e\xa8\x94\x64\x49\x7c\x9b\x0a\xa4\x62\x11\xe7\x45\x9c\x26\x29\x4f\x49\x2c\x75\xc2\x22\x08\x68\x39\xec\x5d\x19\xab\xbf\xfb\xda\x7d\x9b\xdf\xba\x3e\xd2\xf8\x71\xe0\x60\x16\xc0\x02\x85\x47\xc4\x6c\x00\xa8\x32\x73\xd3\xf7\xfd\xe0\xab\x5f\xfd\xaa\x8c\x88\x41\x7f\x14\x32\xaa\x5f\x36\xfe\xa0\xfd\xea\xdd\x6a\xaa\xd8\x36\xdc\x82\x11\x6e\x96\x63\xab\xc7\xd4\x80\x54\x5d\x08\x47\xe0\xde\x3e\x36\xf7\x5a\x37\x9d\x2e\x6d\xfe\xc2\x5a\xae\x5a\x03\x15\xed\xd3\xce\x22\xbc\x44\x65\x18\xe1\x64\xde\x84\x90\x98\x9c\xda\xcc\x3f\xfc\x4b\x37\xca\xcf\x8d\xef\x64\x0f\x0b\xa8\x59\xde\x88\x3f\x6b\x58\x1a\x23\xb3\x8e\x9f\x51\x7c\xd2\x63\xed\x24\xb5\xc7\xe6\x36\xf6\x67\x28\xc2\xb1\xd9\x17\x89\xb1\xaf\xcf\x00\xb7\x3b\x00\x10\x37\x63\xaf\x44\x6a\x77\x79\x6a\xe9\xe3\xc6\x9a\x84\xa6\x97\x97\x30\x01\x74\x19\x75\x06\x20\x89\xe5\xed\x72\x73\xfe\xcd\xe9\xca\x0f\x6e\x0e\x34\xdf\x67\x81\xdb\x00\x96\x00\xac\x21\x3c\x1a\xa6\x8a\x50\x2a\x48\x63\x0d\xd3\x7e\xe7\x07\x7a\x55\xc3\x3f\xaa\x37\xb3\x5b\x39\x02\xa1\x1b\xdc\xea\xe7\x4d\x43\xe6\x34\x04\x86\x51\x46\xaf\xe5\xc0\xc8\x03\xa4\x77\x66\xfc\xfd\xcc\x33\xcf\x88\x07\x1f\x7c\x50\x85\x65\x91\x2c\x10\x54\x2e\xda\x89\x4c\x40\x93\x27\xd6\x0a\xe7\x1e\xbe\x5d\x7a\xf2\x40\x35\x3b\xe9\x68\x97\xfc\x91\x81\x38\xba\x78\x54\x52\x03\x40\xdb\xcc\xf7\x1e\x84\x8d\x02\x92\x5b\x32\xf7\x22\xb6\x6d\x22\xb0\xfd\xc6\xcd\x76\x96\xd6\x86\xa7\x5a\xa3\xf4\xc9\x35\xa5\xfd\x98\x0d\x6a\x9b\x3c\xeb\x14\x66\xd6\x63\x3c\x01\xb1\x5c\xee\xf7\x16\xdf\x3e\xbc\xf3\xe3\xf9\xe1\xc6\xbb\xbe\x90\xb7\x41\xa4\x08\x61\x03\x09\x21\x78\x52\x4a\xf9\xde\x7b\xef\xe9\x6b\xb7\x3e\xaa\x1b\xb5\x17\x24\xee\x25\xac\xd7\x76\xec\x49\xd7\x4d\x42\xdc\x0d\x65\xa6\x95\x61\x2b\x0b\x1d\xca\xb3\x01\xd8\x56\xc6\xe7\x3f\xff\x79\x11\x4d\xe4\x09\x84\x44\xa1\x08\x63\x18\x21\x61\x8c\xe5\x7c\x71\xf8\xe4\x5a\xe1\xec\xc7\x6e\x97\x9e\x38\xb0\x9b\x99\x20\x86\x20\xa5\x0f\x18\x88\xb5\x87\xc1\x86\xd4\x03\x44\x7b\x05\x12\xb5\x29\x89\x42\x54\x54\xbb\x2b\x54\x43\xf7\x36\xc2\x63\x24\x06\x31\x10\x6f\x6e\x32\x90\xb6\x2d\x7d\x9b\xc2\x17\xd7\xdc\x4e\x78\x6c\x27\x12\x13\x8c\xf8\xdd\x20\x72\x06\x43\x12\xe4\x6a\xc9\xbb\x7d\x61\xb2\xfa\xb7\x73\x23\xf5\x77\x9b\x19\x5e\x44\xe8\x39\x5a\x41\x42\x08\x35\x44\x77\x32\x54\x2a\x15\x19\x5d\xa9\x96\x86\x13\xfb\xe5\xe2\x77\x8b\x6b\x5d\xb9\xfe\x7e\xca\xd0\x25\x44\x5a\x01\xdd\x54\x9f\x34\x09\x03\xf4\x06\x6c\xa7\xf7\xb4\x32\x04\x00\xe9\xba\xae\x38\x7d\xfa\x34\x9e\x78\xe2\x09\x15\xe6\x02\xc8\x32\x73\x91\x88\x06\x99\x79\x90\x88\x46\x01\x8c\x65\x7d\x9a\x9c\xd9\x28\x7c\xec\xf4\x9d\xbe\x47\x0f\x56\xb2\x33\xae\x24\xb7\x9d\x4b\xab\x35\x4b\xc9\xaf\x89\x8c\x7a\x98\x29\x09\x94\x7d\xb0\x57\xf5\x41\x14\x63\x10\x8d\x52\xad\x74\x35\x88\x91\xb4\x80\x38\xd9\xb1\xa6\xb9\x79\x01\xd6\xec\x00\x5d\x85\xe3\xb6\xb4\x40\xa2\xc2\xa1\x4d\x2d\x63\x6d\x5e\x02\xf0\x05\xfb\x8b\x03\x8d\xeb\x17\x0f\xee\xfe\xfc\xc6\x70\xe3\x03\xdf\xe1\x25\x84\x44\xb0\x06\x60\x23\x3a\x62\x52\x11\x82\xef\xfb\xbe\xfc\xd9\xcf\x7e\x86\x0f\x3e\xf8\xa0\xd3\xf8\xea\xe3\xac\xd2\xed\x07\x39\x6d\x65\xef\x87\xc0\x4c\x4d\xa5\x53\x9a\x54\x95\x09\x96\xf7\x6e\x0d\xeb\xd6\xc8\x7d\xab\x43\x5d\x9e\xd4\x7c\xcf\x3f\xff\xbc\x98\x9e\x9e\x46\x26\x93\x51\x6a\x54\x16\xe1\xf2\x8f\x32\x33\x0f\x13\xd1\x30\x18\xa3\xae\xa4\x89\xf1\x9d\xcc\xf1\xd3\x77\x4a\x4f\x1c\xd9\xca\x1f\x2b\x7a\xa2\xa4\x4f\xb4\x75\x5a\xb6\x90\x84\xa1\x8d\x22\xc8\xcc\xa8\xab\x5d\x46\x5a\xbd\x92\x98\x73\xc7\x12\x2a\x22\xb8\x58\x3d\x6a\x5f\x81\xab\x08\x40\xd9\x0b\xf1\xbc\x4b\x9a\x14\xda\xa3\xce\xc5\x24\x81\xdd\x6c\x50\x99\x1f\x69\x5c\xf9\xc5\x78\xed\xc2\x72\xa9\x79\x35\x10\x58\x01\x61\x0d\x91\x8d\xa0\x11\x42\x03\xe1\x8a\x5e\x79\xf9\xf2\x65\xfc\xf0\x87\x3f\xec\x05\x39\xbb\x49\xf7\xfd\xe4\x57\xdf\xe8\x90\x7f\x3f\x9a\x4b\x47\x02\x23\x4b\xc2\x5e\x1a\xd7\x4d\x7f\x03\xec\x1d\x02\x2d\x2e\x8d\x7b\xa4\x75\x66\xa7\xbc\x71\x7d\x5f\xfe\xf2\x97\xc5\xd0\xd0\x10\x88\x28\xdc\x23\x10\x11\x06\x33\x97\x23\xa9\x31\x0c\x60\x58\x80\x46\xcb\x0d\xe7\xc8\xd1\xf5\xc2\x83\xf7\x2f\xf7\x9d\x1e\xdd\xcd\x4c\xb8\x4c\x2e\x60\xda\x14\x11\xff\xa7\x04\xb9\xf7\xe8\xf1\x11\x66\xb3\xa6\x0e\xb5\xa9\x31\x0a\x11\xc9\x94\x14\x9a\x81\x1e\x55\x68\x72\xfa\x36\x09\x10\x13\x85\x29\x25\xda\xbf\xdb\x56\x02\xc7\xc4\xc7\x08\x88\xfd\x95\x52\xeb\xf6\xd5\xb1\xda\xa5\x6b\x23\xf5\x8b\x3b\xf9\xe0\x26\x13\x36\x90\xd8\x07\xca\x58\xae\x01\xf0\xa2\x09\x51\x7f\x65\x65\x05\xdf\xfa\xd6\xb7\xd2\x6c\x3e\xdb\x93\xc6\xa5\xd3\xec\x54\x5b\x58\x1a\x3e\xd9\xca\xe9\x54\xb7\x59\x76\x47\x18\x4c\x8d\xd3\x6c\x50\x2f\xe2\xaa\x57\x95\xab\xd7\xb0\x5e\x0d\xf9\x54\x42\x9a\x99\x99\x11\x8f\x3d\xf6\x18\x86\x87\x87\x01\xb5\x79\x26\x31\xbe\x4b\x48\x0c\xf0\x61\x30\x86\x05\x63\xf8\x40\x35\x3b\x7d\x62\xad\x70\x7a\x6a\x33\x7f\x6c\xa8\xe6\x8e\x66\x64\x74\xab\x0d\xf6\x76\x92\x4d\x2d\xda\x23\x25\x3a\x3c\x86\x30\x89\x1d\x44\x40\xbb\xe7\xca\x34\x73\xf4\x34\xb1\x7a\x45\xed\xd2\x4d\x37\x47\x18\x8c\x96\xc3\xde\x66\xc1\x5f\xbb\x31\xdc\x98\x9d\x1d\xad\x5d\x5a\xed\x6b\xcd\x31\x61\x03\x84\x0d\x66\xde\x22\xa2\x2d\x84\x84\x50\x43\x62\x23\xf8\x00\xe4\x9d\x3b\x77\xf0\xd6\x5b\x6f\xe1\xf6\xed\xdb\xfb\xe1\xf0\xfb\xd1\xe9\xf7\x63\x7f\x74\xc2\xc5\x6e\xb8\xd3\x4b\x5b\x00\x74\x37\xaa\x7b\x79\x7a\x15\x7f\x77\x6d\xf9\xa7\xc4\x75\x4d\x77\xfc\xf8\x71\xf1\xc8\x23\x8f\x60\x78\x78\x58\x6d\xa8\x51\xea\x54\x1e\xa1\x3a\xa5\x13\xc7\x20\x18\xc3\xd9\x80\x86\x47\x77\x33\x47\xa6\x37\xf2\xf7\x1d\xda\xce\x4d\x8d\xec\x66\xc6\x72\xbe\xc8\x13\x20\x48\x9f\xb4\x30\x1e\x53\xfd\x69\x8f\x30\x82\x14\xd7\x87\x8e\xbc\x86\x7a\xd5\xa6\x32\x45\xd6\x49\x5c\x8e\x3e\xf7\x90\xe4\xe1\x50\x29\x92\x4d\x57\x36\x36\xfa\xfc\xb5\x85\xc1\xc6\xf5\x85\xa1\xc6\xec\x7a\x5f\xeb\xa6\xe7\xf0\x1a\x23\x21\x80\x48\x25\x52\xd2\xa0\x81\x50\x22\x48\x66\xf6\x57\x56\x56\x70\xe1\xc2\x05\x2c\x2c\x2c\xd8\x74\xed\x3d\xfd\x6c\xef\x91\x38\x5e\xe5\xed\x24\xf9\x3b\x49\x87\x5e\xf2\xa4\xb5\x29\xcd\x5e\x48\x85\x81\xb4\xc4\xea\x49\x13\x39\x69\x95\xd9\x0a\x4f\x53\x69\xd2\xc4\x68\x2f\x9d\x63\xa6\xed\x96\xa7\xad\x13\xbe\xf4\xa5\x2f\x89\x91\x91\x11\x55\x86\x8b\x70\xef\x71\x96\x88\xf2\x08\x55\xaa\x12\x11\x95\x23\xd5\xaa\x0c\xa0\x2c\x24\x06\xfb\x9b\xce\x81\x89\x9d\xdc\xd4\xe4\x56\x6e\x66\xbc\x9a\x9d\x1c\xa8\x3b\x83\x39\x5f\x14\x95\xdd\x61\x6c\x20\x82\xb6\xc2\x2e\xac\xdd\x70\x01\x99\x92\x44\x5f\x96\x1e\x65\x68\x33\xa0\x93\x79\x0d\xbb\x91\xcf\x04\x78\x2e\x37\xb6\x0a\xad\x8d\x95\x52\xeb\xf6\xad\x81\xc6\xfc\x52\xb9\xb5\x58\xcd\xf9\xcb\x81\xc0\x16\xc2\xfd\x09\x95\x88\x00\x2a\x48\x54\xa2\x06\x22\x69\xa0\x76\xfc\x2d\x2f\x2f\xe3\xcf\xff\xfc\xcf\x7b\xe1\xb4\x66\x58\xaf\x76\x42\x9a\xfa\x93\xa6\x52\xc1\x48\xdf\x8d\x09\x76\x4a\xdb\x13\x0c\xbd\xb8\x5d\xf5\x4a\xf4\x42\x7a\x55\x65\x52\x2b\x87\x1d\xa1\xd3\xca\xf9\x28\xf5\xc0\x71\x1c\x11\x04\x81\x7c\x3e\x32\xbe\x5d\xd7\x15\x00\xe2\xad\x98\x06\x71\x14\xa3\xed\xac\x25\x66\x2e\x11\xa8\x04\xa0\xec\x4a\x2a\x17\x5a\x62\x68\x64\x37\x33\x36\x56\xcd\x4e\x8e\xec\xba\x63\x03\x0d\x77\xb8\xd4\x74\xca\x39\x5f\x64\x1d\x49\x2e\x29\x98\x22\x43\x83\x14\x8d\x20\x22\x1e\xd6\xd6\x26\x69\xa2\x22\x4d\xf8\x70\x42\x6a\x32\x10\x2c\x3d\x87\x1b\xbb\xd9\xa0\xba\x55\xf0\x37\x56\x4b\xde\xd2\x5a\xa9\xb5\xb4\x5e\x6c\x2d\xd5\xb2\x72\xd3\x17\x5c\x01\x50\x01\xa1\x1a\x5d\x2e\x52\x45\x48\x00\x6a\xee\x40\x11\x81\x17\xed\x07\x97\xcd\x66\x53\x5e\xbf\x7e\x1d\x3f\xfa\xd1\x8f\xa4\x10\x42\x48\x29\xd5\x78\x98\x7d\x69\xeb\xdf\x5e\xd2\x74\xb3\x01\x3a\xe5\xe9\x94\xa6\xd7\xb2\xf7\x05\x83\xee\x65\xea\x64\x74\x74\xa2\xd8\xb4\xef\x6e\xdc\x7b\x3f\x92\xa0\x53\x5d\xb6\x76\x76\x4a\x83\xc1\xc1\x41\x1c\x39\x72\x04\x67\xcf\x9e\x45\x2e\x97\x03\x12\xc2\x70\xb5\x19\xf0\x2c\x80\x3c\x33\x17\x11\xaa\x57\x45\x22\x52\xef\x25\x70\xa8\x76\xb9\x92\x8a\x79\x5f\x0c\xf4\x35\x9d\xc1\x52\xd3\x29\x97\x3c\x67\xb0\xdc\x70\xca\xe5\x86\x5b\x2e\xb4\x44\x31\xe7\x8b\x7c\x36\x10\xd9\x4c\x40\x59\xc1\x70\xc3\x1b\x92\xc2\xb9\x10\x42\x48\x08\x1c\xfe\x4a\x49\x2c\x7d\xc1\x5e\xcb\x61\xaf\xe9\xca\xc6\x6e\x36\xa8\x55\x73\x41\xa5\x9a\x0b\x2a\x95\x9c\xbf\xb5\x93\x0f\xb6\x76\xb3\x41\xa5\xe1\xca\x6d\xdf\xe1\x1a\x03\x55\x10\x1a\xcc\x5c\xd3\xd4\x1f\xfd\x4f\x27\x00\x9f\xb4\x93\x43\xaa\xd5\x2a\xde\x79\xe7\x1d\x7c\xf8\xe1\x87\xdd\x90\xa5\xd3\xd3\x0b\x53\xdc\x0f\x42\xf6\x2a\x69\xba\xb5\xf3\xae\x61\xd8\x8f\x51\x0d\xa4\x23\x27\x2c\xe1\xbd\x22\x73\x5a\xf9\xfb\xe1\x42\xe6\xf7\x7e\xa5\x17\x7e\xeb\xb7\x7e\x4b\x0c\x0e\x0e\xaa\x74\xea\x4f\x37\xc8\x63\x22\xd1\xff\x98\x39\x1f\x11\x50\x5e\x8b\x57\x79\x5c\x30\x5c\xc1\xc8\xba\x92\x32\x8e\x24\xd7\x61\x72\x05\x43\x08\x19\xda\x34\x4c\x2c\x65\x48\x0c\x7e\xcb\x61\x2f\x10\xdc\x0a\x08\x3e\x92\xd3\x3d\x3c\x24\x48\xed\x45\xcb\xe0\xd3\xfe\x3c\xed\x2f\x3e\x1d\x44\xfd\xad\xaf\xaf\x63\x61\x61\x01\xf3\xf3\xf3\x58\x5d\x5d\xdd\x0f\xa3\x51\xf1\xdd\x54\x55\xbd\x1c\x5b\x59\x36\xc6\xda\x4d\x32\xa4\xb5\xc7\x96\xe6\x23\xc3\xb0\x9f\x99\xea\x5e\x90\x54\x8f\x83\x25\xbe\x93\xda\xa4\x37\x3a\xad\x7c\x5b\x9e\x4e\x9c\xa0\x53\xc7\xec\x69\xd3\xf8\xf8\xb8\x38\x7a\xf4\x28\x8e\x1f\x3f\x8e\x62\xb1\x08\x75\xda\x45\x24\x35\xda\x88\x84\x99\x5d\x00\xd9\xc8\xbd\xab\x54\x2e\x65\x97\x64\x91\x48\x1b\x57\xe5\xd3\x4e\xcb\x88\xdb\x15\xb9\x4c\x63\xa4\x8d\xfe\x7c\xe3\xcf\x43\x3b\x71\x98\x61\x3a\xf2\xfb\xfa\xf1\x38\xb5\x5a\x0d\x57\xae\x5c\xc1\xcf\x7f\xfe\xf3\x6e\xdc\x74\x3f\x1c\xb7\x9b\x64\xef\x94\xb7\x5b\xd9\xbd\xe4\x49\x2b\xe3\x23\xc3\xd0\x89\x20\xba\xa9\x43\x9d\x74\x7b\xdb\xbb\x59\x56\x27\x31\xd8\x29\xfd\x7e\x45\x68\xb7\xf6\xa5\xd6\x75\xfa\xf4\x69\x31\x3e\x3e\x8e\xa9\xa9\x29\x44\x67\x25\x09\x2d\x8d\xf9\xe7\x02\xf1\x11\x31\x2e\x33\x0b\x00\x2e\x11\x09\x83\x10\xf4\x32\xf4\x7a\x4d\xa2\xd0\x89\xc3\xf6\x2b\x81\xe4\x6c\x28\x2d\x0c\x0b\x0b\x0b\xf8\xeb\xbf\xfe\xeb\x5e\x11\x18\x96\xb8\x5e\xde\xf7\xfb\xf4\x82\x1b\xdd\xa4\xcd\xdf\x39\x0c\x9d\x26\xe6\xba\x11\x84\xad\xc1\x30\xc2\xef\x86\x72\x6d\x75\x77\x4a\xbb\x9f\x72\x7a\x55\xbd\xf6\xe4\x19\x1e\x1e\x16\x07\x0f\x1e\xc4\xcc\xcc\x0c\x72\xb9\x1c\x86\x87\x87\x21\x84\x88\xd3\x47\x48\xaf\x97\x61\x22\xbe\xde\x3f\x69\x52\x51\xff\xd6\x09\x05\x06\xe2\x83\x99\xa5\xef\xfb\xd8\xde\xde\x46\xb5\x5a\xc5\xad\x5b\xb7\xf0\xc1\x07\x1f\xdc\x2d\xb2\xc6\x70\xde\x83\xbc\x1f\xa5\x9c\x8f\xfa\x7c\x64\x18\x6c\x46\x75\x27\xea\x05\xd2\x11\x6a\x3f\xd4\x99\x86\xa8\x69\xd4\x6e\x96\x63\x0b\x4b\x83\xc3\x06\x8f\x09\x47\x27\x18\xac\xbf\xd1\xdc\x06\xd6\xd7\xd7\xe5\xc7\x3f\xfe\x71\x01\x00\x27\x4f\x9e\x84\xe3\x84\x5b\x4c\xd4\x6f\x84\xc4\x6d\x04\x60\x3d\x75\xd0\x72\x6e\x93\x94\x12\x91\xd7\x07\x00\x30\x3f\x3f\x8f\x46\xa3\x81\xb5\xb5\x35\x5c\xb9\x72\xa5\x9b\x84\xed\xd6\x17\xb0\x7c\x9b\x61\xbd\x20\x58\xb7\xf1\xef\x25\xfd\xdf\x27\x18\xf6\x70\x2b\x5b\x62\x5b\x58\xaf\xf9\x3a\xa5\xed\xa4\x82\x98\x1c\xd5\xf6\x6d\x96\xdb\x8d\x1b\x77\x6b\x73\xb7\x36\xf6\x92\x46\x00\xc0\xd4\xd4\x94\x38\x7e\xfc\x78\x9c\x47\x7f\xff\xd5\x5f\xfd\x55\xeb\xbb\x9e\x4e\x4b\xdf\xa9\x5f\xd2\xda\xd8\x6b\xdf\xa7\xf5\x57\xb7\x31\xe8\x65\x7c\x6c\xed\xf8\x07\x03\x43\xaf\x48\x7f\x37\xc4\x63\x8b\xef\x54\x6e\x27\x04\xec\x86\x9c\x77\x4b\xdc\xbd\xd4\xdb\x2d\x5d\xa7\xb2\x7b\x69\x9b\xed\x31\x07\x75\x3f\x8c\xc8\x56\x4e\xaf\xe9\xcd\x70\x1b\x62\xf7\xfa\xfc\x83\x85\xa1\x17\x20\xf7\x3b\xa8\xdd\x10\xa2\xd7\x30\x5b\x7c\x2f\x1c\xbb\xdb\x73\x37\x48\xda\xa9\x8c\x8f\x52\xaf\x0d\x69\x3a\x11\x61\x2f\x9c\xb4\x1b\x97\xfc\xa8\x75\xa5\x49\x80\x7f\xc8\x30\x74\xcd\x94\xd6\xa8\x4e\x15\xef\x97\x9b\xf6\x2a\x0d\xf6\x53\x4e\x5a\x27\x77\xfb\xee\x54\x77\xaf\x6d\xe9\x65\x60\xf6\x53\xe6\x7e\x39\xf2\x7e\xe2\x7b\x1d\xa3\x5e\xdb\xf3\xff\x07\x18\x52\x23\xef\x86\x83\x76\xe3\x7e\x1f\xa5\xec\x4e\x75\xdd\x8b\xf2\xf7\x9b\xe7\x5e\x48\x87\x5e\x08\x24\x8d\x6b\x76\xca\x63\xcb\xdf\x2b\xf3\xb3\x95\xdb\xad\x1c\x5b\xdb\xd2\xf2\x98\xe9\xfe\x5e\xc1\x20\x3a\xfc\xf5\x52\x89\x4d\x7a\xa4\x95\x65\x6d\x40\x8f\x75\x75\xe2\xfe\xfb\x4d\xd7\x0b\x8c\x9d\xda\xd9\xad\x9e\x5e\xc3\x7a\xed\x9f\xb4\xb0\xfd\xc4\x77\x4b\xbf\x5f\x4e\x9e\xd6\xf6\x4e\xed\xf9\x87\x06\x43\x4f\x95\xf6\x5a\x89\xad\x8c\x5e\x10\xad\x97\x72\xba\x7d\xef\x87\x8b\xd8\xca\xda\x0f\x0c\xdd\x38\xd8\x7e\x90\xa0\x57\x2e\xd9\xa9\x9e\x5e\x08\x3d\xad\x7d\x77\x83\xe4\xdd\xda\x65\xbe\xff\x43\x80\x61\x5f\x15\xa5\x15\xda\x2b\xb7\xeb\x85\x73\xdc\x2d\x31\xf4\x02\xc3\x7e\xeb\xee\x36\x90\xf7\xb2\xee\xb4\xb2\xba\x3d\xbd\xd4\xff\xf7\xa9\xee\x7b\x55\xce\x3d\x87\xe1\xff\x05\xa3\x5d\x9f\x39\x4a\xbc\xd5\x80\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x19\xa0\xdd\x2c\x36\x91\x00\x00") + +func web_uiV2AssetsFavicon196x19657be5a82d3da06c261f9e4eb972a8a3aPngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsFavicon196x19657be5a82d3da06c261f9e4eb972a8a3aPng, + "web_ui/v2/assets/favicon-196x196-57be5a82d3da06c261f9e4eb972a8a3a.png", + ) +} + +func web_uiV2AssetsFavicon196x19657be5a82d3da06c261f9e4eb972a8a3aPng() (*asset, error) { + bytes, err := web_uiV2AssetsFavicon196x19657be5a82d3da06c261f9e4eb972a8a3aPngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-196x196-57be5a82d3da06c261f9e4eb972a8a3a.png", size: 37174, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsFavicon32x32646753a205c6a6db7f93d0d1ba30bd93Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x1b\x08\xe4\xf7\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x07\xe2\x49\x44\x41\x54\x58\x85\xc5\x57\x7d\x6c\x53\xd7\x15\x3f\xf7\xbe\xe7\xe7\xef\x60\x3b\x01\xc7\xd8\xc4\x49\xec\x1a\xc7\x01\x4a\x02\x49\xa1\x59\x4b\x80\xb6\x34\x10\x4d\x81\xa9\x15\x43\xeb\x90\xd6\xb5\x9d\xa6\x6a\x12\x74\x0c\xa1\xa9\x63\x52\xa5\x69\x1d\xab\xb4\xae\x45\xa2\xea\xb4\xb5\xf4\x03\x28\xd0\x0f\x0a\xac\x45\x0d\xe4\x83\x26\x5d\xf9\x70\x4a\x82\xb3\x38\xae\xed\x24\x4e\x1c\xc7\x4e\xec\x38\xef\x39\x2f\xcf\xef\xbd\xbb\x3f\x5a\x67\x21\x24\x05\x86\xb6\xfd\xfe\xba\xba\xe7\xbe\xf3\xfb\xdd\x73\xcf\x3d\xe7\x3e\x80\xff\x33\xd0\x9d\x7e\xa0\x56\xab\xb1\xc9\x64\x02\x8d\x46\x03\x4a\xa5\x12\x0b\x82\x00\x99\x4c\x46\x4e\x26\x93\xc0\x71\x9c\xfc\x5f\x11\xa0\xd3\xe9\xf0\x32\x57\x99\x66\xbd\xc1\xf3\xd0\x72\x62\xde\xb8\x90\x63\x56\xe8\xa6\x28\x9b\x42\x42\x2a\x11\x13\x81\x55\x4a\x43\xa3\xda\x6c\x57\x37\x95\xb8\x70\x3e\xdd\xfd\xc9\x57\xfe\xeb\xe9\xf1\xf1\xf1\xdb\x12\xf3\x9d\x02\x94\x4a\x25\x7e\xb0\x72\x4d\xc1\x0e\xf5\xea\xe7\xee\x8d\xe5\xfd\x54\x25\x62\xd3\xad\x1c\x0a\x58\x66\x7d\x66\xee\xf0\x51\xb1\xe3\xc5\x46\xef\xe7\x91\x5b\x45\x65\x5e\x01\x36\x9b\x0d\x3f\x53\xbe\x65\xfb\xe6\x88\xe5\x65\xb5\x48\x15\xcc\xb4\x11\x20\x20\x21\x90\xb3\x94\x2c\x28\x64\x44\x53\x32\xa2\xd1\x2c\x57\x02\x25\xb3\xe7\x6d\xf1\xbd\x07\x3a\x4f\x1e\x8a\x46\xa3\xf3\x8a\xa0\xe7\x9a\x2c\x73\xbb\x99\x7d\x96\xfa\x03\xab\xc2\x79\xbf\xc8\x39\x96\x81\x40\x28\x9f\xbf\xe6\x5f\x98\x39\x1b\xc9\xe3\x5b\x47\xa4\x74\x78\x92\xe7\x79\x25\xa3\x64\xcc\x8a\xbc\x22\xeb\x84\xaa\xe6\x9e\xb8\xa6\xde\x31\xaa\x5e\x49\x11\x84\x19\x09\xeb\xcc\xa2\x66\xbd\xd9\x6c\xfe\x4b\x34\x1a\x15\x6e\x3b\x02\x4e\xa7\x93\x7e\xc1\xb6\xed\xe0\xbd\x51\xfd\xd3\xb9\xb9\x3e\x23\xef\xbb\x50\x3a\xb6\xff\xf2\x70\xcf\xb9\xde\xde\x5e\x36\x1a\x8d\x82\x28\x8a\x37\xec\xca\x6a\xb5\x62\xa7\xd3\xa9\x59\x65\x73\x6f\x58\x1f\xca\xdf\xaf\xce\x62\xdd\x21\xab\x6f\xe3\x07\x1f\x7f\x34\x24\x49\xd2\xbc\x11\xb8\x41\x40\x7e\x7e\x3e\xfe\xed\xea\x1f\xed\xde\x10\xce\x3f\x80\x00\x01\x01\x02\x6d\x25\xe3\x87\x4f\x33\xbd\x7b\x9a\x5b\x5a\x12\xa9\x54\xea\x96\x89\xa5\xd7\xeb\xf1\xf7\x6a\x6a\x0c\x66\x43\x81\xe1\xe4\x99\x8f\xc2\x13\x13\x13\x32\x45\x51\xd8\xe1\x70\x60\x84\x10\x04\x02\x01\x79\xa6\xa0\x1b\x04\x3c\x5d\xb7\xbd\xf2\xd9\x90\xa7\x9d\x26\x88\x21\x40\xa0\xc9\x99\x7a\xf5\x68\xfa\xd2\xde\xd6\xd6\xd6\xcc\xad\x88\xbf\x0b\x5b\x6b\xeb\x8a\x9e\x4b\x55\xfd\x1d\x13\xa0\xff\x5c\xd0\xb1\xe5\x68\xe3\xa9\x40\xce\x86\x73\x83\xb2\xb2\x32\xba\x21\x59\x7a\x80\x26\x88\x01\x00\xe8\xb4\x70\x67\x4f\x64\xbc\xfb\xee\x96\x1c\x00\x60\xad\xc1\xf5\x90\x69\x52\xe1\x31\xf0\x0a\xd7\x7d\xda\xd2\xcd\x33\x6d\xd3\x49\xf8\xb0\xa3\x6a\x8d\xbd\x57\xb5\x01\x00\x80\x65\xa4\xd4\x99\x82\xfe\x5d\xad\x1f\xde\x3d\x39\x00\xc0\x15\x18\xfc\xcc\xb1\x48\x7d\x11\x13\x44\x5f\xa1\x87\xcf\xde\x24\xc0\x62\xb1\xe0\xb5\x5c\xe1\x93\xb9\x8c\xbf\xb2\x24\xfd\x46\xcb\xa5\xb6\xc0\xec\x44\xfb\x4f\xc0\x30\x0c\x3e\xd7\xdc\x18\x19\x28\x1b\xda\x84\x10\x82\x60\x7b\x90\xd7\x6a\xb5\x38\x57\x1f\x68\x00\x00\xbb\xdd\xce\x94\x8c\xaa\x1f\x01\x00\x90\x11\x91\xbf\x54\xc7\xfe\xd6\xd7\xd7\x37\x2f\x39\xc3\x30\xd8\xe1\x70\x60\xa3\x36\x4f\x95\xe4\xd2\x7c\x20\x10\x90\xb3\xd9\xec\x4d\xeb\x97\x79\xca\x55\xbb\x16\x3f\xba\x8f\x26\x48\x75\x70\xf4\xc2\x0b\x2a\x85\x92\x79\xd9\xf5\xe3\x57\x44\x4c\x32\x7f\x1c\x3d\xb7\xf7\xea\xb5\x8e\x0c\x0d\x00\x50\x6a\x5c\x5c\xa4\x4f\x52\x8b\x01\x00\x46\x74\x42\xe0\x9f\x43\xc1\xc0\x6c\x67\x39\x18\x8d\x46\xbc\x63\xf5\x23\x0d\xf7\x84\xa9\x97\x14\x31\x52\x2c\xa8\x51\xd0\xbf\x7e\xc5\xae\x23\x5f\x7e\x7a\x7a\xf6\x2d\xf9\xa1\xb3\x76\xdb\xda\x1e\xc3\x6f\x00\x00\x76\xb8\x1e\x18\xc4\x04\xe1\x65\xbd\xba\x9f\x00\x00\x6c\x75\xd7\xb4\x5e\xbd\xd6\xf1\x1e\x0d\x00\x50\xa4\x30\xb9\x72\xe1\x4f\x68\xb3\xbe\xf8\x60\x9c\x9f\x4f\x40\x5d\x75\xed\x8a\xb2\x6e\x7c\x04\x13\xc2\x00\x00\x28\x27\x49\x69\x79\x0f\x3e\xbe\xa9\x7a\xdd\xaa\x33\x6d\x8d\xbe\xed\x55\x9b\x56\x7b\x90\xb9\xfa\xd4\xc4\x57\xef\x26\xd4\x42\x44\xa0\x64\x1e\xcb\x88\x8e\xab\x85\xfe\x29\x2c\xa5\x27\x15\x0b\x58\x11\x13\x61\x40\x91\xf6\x4f\x1f\x81\x81\xd6\x4c\xd7\xf8\x49\x85\x3c\xc2\x71\xdc\x9c\xe4\x7a\xbd\x1e\x97\x8a\x79\x8f\x61\x22\x30\x33\xe7\xb1\x0c\x8c\x93\x18\x1b\xb6\x6c\xdc\x34\xfc\x6c\xef\x8a\x46\x46\xc2\xba\x25\x66\xfd\xda\x83\xb1\x7f\xec\xcc\x54\x88\x0f\xd0\x88\x62\x9a\xbc\xed\x97\x39\x8e\x93\x07\xab\xd7\x54\xc8\x44\x16\x5b\x2e\xb6\xf6\x4f\x0b\x80\x19\xd7\x11\x00\xe6\xaf\xdb\x34\x0d\x04\xcf\xdd\x3e\x08\x06\xac\xd5\xeb\x18\x11\x13\x99\x91\x00\x04\x9a\xd0\xa3\xf1\x51\xb9\x63\x9c\xf5\x21\x84\x20\x18\x0c\x8a\x14\x45\xc1\x48\x30\x92\xce\x12\x49\x4c\x26\x93\x30\x2d\x80\x45\xd9\xb1\x9c\x23\x8d\x40\x2d\x62\x18\x66\x4e\x92\x64\x32\x29\x0f\x1b\xc4\x8f\x0b\x29\xf8\x25\x25\xc1\xf4\x22\x89\x06\x7e\x48\x2f\x9c\xfd\xac\xa9\x65\x38\xef\xc1\xba\xad\x16\x5e\x53\x7d\x99\x44\xde\xbe\x4f\x5d\xee\xfe\x79\xd8\xdd\x8c\x08\xa2\x5f\xab\x75\x6e\x54\x62\x85\xea\xc9\xaf\x9d\x8d\x12\x26\xfc\x9f\xd6\x59\x6b\xde\xfc\xf4\x84\x0f\x03\x00\x0c\x88\x63\x41\x02\x04\x00\x00\x16\x72\x0a\x8f\xc9\x64\x9a\xb3\x49\x01\x00\x34\x7b\xbf\xb8\xfc\x75\x95\xfa\x19\xd6\x40\x05\x45\x05\xf0\xac\x91\x0a\xf4\xae\x56\x3f\xd5\x7c\xa5\xbd\x23\x12\x89\xc8\x87\xde\x7f\xab\xe9\xa5\x8b\x47\xfe\x70\xfc\x83\x93\x11\x17\x63\xbe\x5f\x25\x52\x05\x4a\x09\x1b\x96\x2a\xcc\x0f\x96\x50\xa6\x35\x34\x41\x2a\xa5\x84\x0d\x4b\x75\x8b\x2b\xa7\x23\xd0\x9f\x1e\xe9\x4f\xab\xdc\xc3\x0b\x78\xba\xb0\x80\x55\xb8\xdc\x25\xc5\xc5\x5e\xf0\xfa\xe7\x12\x10\x08\x04\xc4\x63\x1c\x77\x78\xf9\xf2\xe5\xa7\x74\x3a\x9d\x81\x65\xd9\x54\xe7\xc5\xce\x54\xae\xe5\xf2\x3c\x2f\xf3\xfc\x37\x39\xdc\x2e\x86\xcf\x5a\x6c\xcc\x29\x4c\x10\x6e\xc7\x03\x27\x24\x22\xcb\x7a\x3b\xbd\x4a\xc4\x84\x6f\x4a\x77\x9f\x06\xf8\xb6\x17\xb8\x5c\x2e\x7a\xbf\xad\xe1\x9d\x8a\x41\xfd\xe3\x00\x00\x6d\xf6\xd4\xef\xf7\x5c\xfa\xeb\xaf\x93\xc9\xe4\x5d\x15\x22\xa5\x52\x89\x3d\x1e\x0f\x0d\x00\x10\x8f\xc7\x45\x59\x96\xc1\x68\x34\x62\x59\x96\xc1\xef\xf7\xcb\x92\x24\xc9\x18\x00\x20\x1c\x0e\xcb\xd7\x0a\xc6\xdf\xca\x1d\x43\xc5\xa0\xfe\x67\xeb\x2a\xd7\x14\xde\x0d\x39\x00\xc0\xd4\xd4\x94\xec\xf5\x7a\x05\x1d\xad\xd2\xbc\x5a\xfc\xc4\x91\x43\x25\x3b\x8f\x17\xe6\xe5\x1b\xba\xbb\xbb\xc5\x5c\x47\xc4\x00\x00\x82\x20\xc8\x9f\x0f\x5d\x3f\x1f\x36\xf1\x97\x01\x00\xd4\x22\x65\xd8\x39\xb5\xf2\x15\xb7\xdb\x3d\x6f\x2e\xdc\x09\xea\x17\x57\x35\xb8\xe2\x9a\xc7\x9d\x09\xcd\xb6\xfa\x82\xca\xed\x33\x6d\xd3\xd7\xcf\xeb\xf5\xf2\x17\x8a\x12\xcf\x8b\x88\x88\x00\x00\xae\xb8\x7a\xdb\x6e\x5b\xdd\xf3\x76\xbb\x1d\xcf\x76\x78\xa7\xe8\x55\x24\xaf\x26\xb4\xc2\xd0\xa8\x26\x3b\xec\x57\xa7\xbe\x98\x69\xa3\x72\x83\x6c\x36\x4b\x26\xb0\xd0\x5f\x58\x6c\xcd\x2f\x4e\xaa\xab\x11\x20\x58\x92\x56\xad\x73\xd9\x9d\xfa\x90\x96\x6d\x8a\x8d\xc4\xa4\xdb\x25\x74\x3a\x9d\x74\x45\xa9\xc7\xd4\x1f\x1b\xe4\x09\x21\x64\x20\x1e\x8d\xf7\x95\x51\xef\xb4\x1b\x62\xaf\x35\xb6\x35\x07\x58\x96\x25\x37\x09\x00\x00\x18\x19\x19\x91\xc4\xd2\xbc\x76\x9b\xca\x54\xb9\x88\x65\x1c\x08\x10\x58\x27\x54\x6b\x6b\x74\xce\x87\x35\x1e\xcb\xf5\x84\xcc\x0d\xa5\x52\x29\x72\x33\xe5\x37\xb0\x5a\xad\xb8\xa1\x6a\x63\xf9\xaf\x14\xb5\x6f\x6e\xca\x3a\x76\x85\x4a\xc8\xdb\xa1\x81\x3e\x3e\x93\xc9\x10\xbf\xdf\xcf\xf6\xf4\xf4\xb0\x33\xc9\x01\xe6\x78\x13\xd2\x34\x8d\xeb\x37\x6f\x29\x78\x8c\x5d\xfa\xfa\xca\x41\xdd\xf7\x73\x3d\x82\x00\x81\xc1\x05\x53\x2d\x5d\x79\xa9\x63\x57\xf9\xfe\xb6\xbe\xa9\x44\x30\x23\x09\xbc\x12\xd3\x8c\x8d\x31\xd9\x2a\x34\x45\xf7\xaf\xe0\xf2\x7f\x60\x1f\x53\x3d\x8a\x01\x61\x00\x00\x9f\x99\x7b\x77\xcf\xc0\xb1\x27\x42\xa1\xd0\xed\xbd\x09\xa7\xc3\x42\x51\xb8\xb6\xb6\x56\x57\xa7\x5f\xb6\xa7\x36\x60\xdc\xad\xc9\x52\x9a\xd9\x6b\x08\x10\x20\x00\x02\x02\xa0\xd1\xb7\x84\x33\x31\x49\x4b\x99\x26\x67\xea\xc5\x37\x82\x8d\xbf\xeb\xec\xec\x14\xe7\x13\x40\xcd\x35\x49\x08\x21\xa1\x50\x68\xaa\x8f\xa4\x5a\x13\x15\xfa\x4f\x28\x05\x6d\x32\x71\x74\xb1\x42\xc6\x8a\x7f\x2b\x47\x80\x00\x51\x08\xd0\x0d\x9b\x98\xa4\x25\xde\x6b\x65\x4f\x7d\xe8\x18\x7a\xea\xfd\xce\x0b\xef\xf9\x7c\xbe\x79\xc9\xe7\x8d\xc0\x4c\x30\x0c\x83\xcb\xcb\xcb\xe9\xe5\xee\x72\x67\x99\x60\xaa\x5f\x92\x54\xad\x5b\xc8\x29\x5c\xba\x29\xca\x44\x4b\x88\x11\x29\x22\xb0\x8c\x34\x96\xd0\x65\x03\x03\x06\xbe\xd9\xa7\x1c\x3b\xdd\xd5\xe3\xf3\x77\x75\x75\x89\x82\x20\xdc\xb2\x90\xdd\xd1\xcf\xa9\xd9\x6c\xc6\x16\x8b\x85\x36\x1a\x8d\x2a\xad\x56\xab\x61\x18\x86\x16\x04\x41\xcc\x64\x32\xfc\xd8\xd8\x58\x26\x1a\x8d\x8a\xb1\x58\xec\xae\x9f\x71\xff\x53\xfc\x0b\x22\x7e\x8f\x92\x6b\x8a\xba\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x1b\xb0\xd0\x40\x1b\x08\x00\x00") + +func web_uiV2AssetsFavicon32x32646753a205c6a6db7f93d0d1ba30bd93PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsFavicon32x32646753a205c6a6db7f93d0d1ba30bd93Png, + "web_ui/v2/assets/favicon-32x32-646753a205c6a6db7f93d0d1ba30bd93.png", + ) +} + +func web_uiV2AssetsFavicon32x32646753a205c6a6db7f93d0d1ba30bd93Png() (*asset, error) { + bytes, err := web_uiV2AssetsFavicon32x32646753a205c6a6db7f93d0d1ba30bd93PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-32x32-646753a205c6a6db7f93d0d1ba30bd93.png", size: 2075, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsFavicon672c31374646b24b235b9511857cdadePng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x35\x03\xca\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x02\xfc\x49\x44\x41\x54\x38\x8d\x7d\x53\x5d\x48\x53\x61\x18\x7e\xbf\xef\x7c\x3b\x3b\x3f\xcb\x2d\x97\x67\xb6\x8d\xb9\x74\xce\xf2\x27\xeb\xc6\x56\xf6\x43\x41\xd1\x2f\x15\x89\x20\x44\x48\x17\xdd\x94\x37\x51\x14\x12\x51\x89\x57\xde\x45\x42\x05\x11\x44\x3f\xf4\x43\x44\x57\x41\x65\x7f\x0a\x2a\x46\x62\x69\x66\x53\xf2\x87\xe9\x6c\xe7\xcc\xa9\xdb\xce\xce\xce\xce\xd7\x45\x28\x0a\xea\x7b\xf7\xc2\xf3\x3c\xf0\x3e\xef\xf3\x30\xb0\xcc\xf0\x3c\x8f\x6d\x36\x1b\x62\x59\x16\x69\x9a\x86\x28\xa5\x74\x29\x1c\x5a\xb4\x20\x84\x2b\xd7\x95\xfb\x6b\xac\x15\x67\x37\x42\xee\x1e\x4b\x8a\x71\x67\x30\x55\xc3\x9c\xfa\xe3\x5d\xb2\xff\xe9\xa3\xf1\xd6\x07\x93\x4a\x44\x5d\x52\x40\x10\x04\x7c\x65\x43\xd5\xe5\x23\x71\xdf\x75\x8d\x31\xd4\x41\x7b\xf2\x73\x18\xc7\x83\x3c\x32\x09\x9e\xb8\x10\x70\xc5\xcc\xa5\xc3\xd6\x64\xeb\xc9\xe0\x9d\x5d\x8a\xa2\x18\x73\x3c\x02\x00\x40\x08\xc1\x0d\xc5\x35\x0d\xfb\x67\xf2\xea\x3b\x24\xe5\xe1\x2d\xe5\xc3\xa5\xbe\xce\x5f\x13\xaa\xaa\x1a\x00\x00\x92\x24\x91\x03\x85\x81\xfd\x40\x41\x8b\x46\xa3\x60\xb7\xdb\xb1\x2c\xcb\x00\x00\xff\x85\x8e\x97\xec\xda\xde\x5b\x74\x83\x36\xef\x38\xdb\x6c\xb5\x5a\xc9\x72\xbe\x00\x00\x6c\x29\x2c\xf7\x7e\x2d\xb9\xf6\xb7\xb2\x70\xb3\x0f\x00\x80\x61\x59\x16\x37\x7a\xaa\x6e\x23\x06\x93\x0b\xe3\xcf\x8f\x85\x27\xc3\xa9\x95\x04\x80\x23\x2a\x38\x2d\x72\x87\x32\xd0\x36\x15\x8b\xa5\xb1\xc7\xe9\x16\xf2\xa7\x2d\x7b\xda\xf9\xd0\xc3\x3f\x23\xc3\x89\x39\x9c\xd7\xe1\x92\x4e\xaf\xdf\x5b\x7f\xd0\x1f\x38\x4c\x08\xc1\x00\x00\x65\x1e\xbf\xf3\xbe\xab\xf6\x6d\x8c\xd1\xfa\xef\xe7\x9c\xfa\x52\x96\xe7\xcf\x25\x6e\x2e\xdb\x43\x28\x62\x7f\x26\x42\xdf\xe6\xc8\x0c\xc3\xe0\x5a\xe7\x8e\x66\x29\x82\xaa\x28\xac\x01\xa6\x42\xdc\x5c\x93\x2e\xbb\xf8\x29\x2b\x74\x67\x94\x26\xfb\xc2\xfa\xec\x44\x4f\x96\xd2\x32\x3d\x91\x4c\x10\x84\x30\x06\x0a\xb0\xf0\xcd\x08\x21\xc0\x26\x06\x03\x18\x00\x08\x0c\x5e\x14\x08\xa4\x59\x56\x87\x8c\x11\x8a\x84\x47\x65\x3d\x92\x50\x89\x43\x4d\xab\x9a\xc1\x70\x36\x51\x3b\x41\x36\x9e\x8f\xf2\xe9\xe0\xbb\x50\xf7\x47\x00\x00\xc3\x30\xe8\x24\x9f\x6e\x5d\xe5\xb4\x27\x7b\x2d\xb1\x9b\xaf\x3b\x5b\x3e\xbc\x1a\x6d\x7f\xc1\x10\x82\x6a\xf9\x8a\xa6\x84\x57\xe8\xaa\x4c\xb9\xeb\x3a\xd1\xd8\x4b\x10\x45\x11\xbf\xde\x7a\xf9\x7d\xdb\xa6\xab\x83\xb9\x39\x12\xb7\x92\x7f\x08\x21\xbc\xde\x5f\xc4\x9d\x29\x39\x58\xed\x2f\xf0\x71\x00\x80\x71\x3c\x1e\x37\x9e\x65\x7a\x9a\x6c\x49\x92\x5f\x9f\x77\xb4\xd1\x6c\x36\xe3\xe5\x04\x28\xa5\xc6\x1a\x62\x71\x9f\x41\x15\xf7\x9c\xe6\x6c\x2f\x00\x18\x0c\x00\xc0\xe0\x54\x68\xa8\xa8\xb0\xc8\xb1\x5b\x59\x5b\x57\xec\xf2\x39\xfa\x60\xb2\x2d\x3a\x1b\x9b\x8f\xac\xd9\x6c\xc6\x87\x7c\x81\xad\xa5\x52\x7e\x41\x4b\xb0\xab\xbb\x25\x6b\xec\xe6\xf7\xa1\xfe\x89\x4c\x26\x43\xe7\xa3\x2c\xe5\xe4\xb0\x57\x8a\xab\x9b\x76\x87\x1d\xe7\x74\x4c\xa7\xfb\x78\xe5\xcd\xb0\x26\x07\x79\x6c\x12\x4a\xc8\xda\x80\x6b\x96\xdb\x36\xb2\x3a\xd5\x7e\xf2\xf7\xed\x4a\x59\x96\xe7\xa3\xbc\xa8\x4c\x3c\xcf\xe3\x7d\xa5\xdb\x02\x27\x84\x4d\x75\xde\x19\x61\xa7\x25\x45\xb2\x75\x4c\xf5\x88\xa8\x0d\x74\xb0\xe3\x4f\x1e\x8f\x7d\xbe\xfb\x7b\x68\x70\x7a\x91\x2f\x4b\xdd\x6a\x32\x99\xb0\xc3\xe1\x20\xa2\x28\x72\xba\xae\xeb\xd1\x68\x54\x5d\x58\xa0\x85\xf3\x0f\x37\x93\x32\x03\xb1\xf9\x4d\x7e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xb0\x22\x7d\xd3\x35\x03\x00\x00") + +func web_uiV2AssetsFavicon672c31374646b24b235b9511857cdadePngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsFavicon672c31374646b24b235b9511857cdadePng, + "web_ui/v2/assets/favicon-672c31374646b24b235b9511857cdade.png", + ) +} + +func web_uiV2AssetsFavicon672c31374646b24b235b9511857cdadePng() (*asset, error) { + bytes, err := web_uiV2AssetsFavicon672c31374646b24b235b9511857cdadePngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-672c31374646b24b235b9511857cdade.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsFavicon96x966f8f8393df02b51582417746da41b274Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xbb\x27\x44\xd8\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x60\x00\x00\x00\x60\x08\x06\x00\x00\x00\xe2\x98\x77\x38\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x79\x70\x1c\xd7\x99\xdf\xef\xbd\xee\x99\xe9\xb9\x0f\xcc\x00\x83\xc1\x00\x18\xe2\x22\x00\xf1\x00\x6f\x52\x92\x25\x48\xa6\x68\x51\xa2\x69\x59\xd6\xae\xb5\x8e\x77\x1d\xbb\xca\x49\x65\x8f\x6c\x5c\xa9\x4d\xe2\x4a\x25\xae\xad\xc4\xe5\x4a\x39\xc9\x46\xbb\xde\xec\xa6\x9c\x2d\x5f\x6b\xaf\xe5\x95\x25\xaf\x24\xeb\xa4\x64\x91\x92\x45\x90\x22\x41\x88\x24\x48\x10\x04\x71\x0c\x0e\x0e\x06\x83\x99\x9e\xbb\xbb\xa7\xe7\xbd\xfc\x81\x19\x60\x00\x02\x24\x40\x02\x94\x76\xe3\xaf\xaa\xd1\xbf\x19\xbc\xf9\xde\xfd\xeb\xef\x7d\xef\x68\xe0\x37\xf2\xb1\x10\xba\x02\xde\x68\xfd\xeb\x85\xff\xd1\x0b\xad\xb8\xb0\x4a\x8c\x35\xe2\xb5\xea\xff\xff\x02\x8b\xb8\x51\x36\xba\xb5\xfe\xa6\x07\xfc\x46\x3e\x3e\x42\x4a\x77\x0a\x80\x2d\xb9\xa3\x84\x2b\xff\xbf\x34\x2c\xd6\x1b\x4b\x92\x04\xaf\xd7\x0b\x9f\xcf\x07\xaf\xd7\x0b\xbb\xdd\x0e\xbb\xdd\x4e\x45\x51\xa4\x82\x20\x80\x73\x4e\x01\x80\x10\x42\x39\xe7\x20\x84\xb0\xf2\x5d\x55\x55\x96\xcf\xe7\x91\x4a\xa5\x98\x2c\xcb\x98\x99\x99\xc1\xb5\x6b\xd7\x2a\xf3\xb5\x52\x5e\x3e\x32\x5c\x59\x01\x1f\x89\x50\x4a\xe1\xf7\xfb\x11\x0c\x06\xd1\xd8\xd8\x48\xdd\x6e\x37\x05\x87\x28\x32\x22\xd9\x54\xc1\xeb\xce\x8b\x4d\x76\x45\x6c\x70\x28\x42\xa3\xa4\x53\x8f\xb9\x20\xb8\xc4\x22\x91\x28\x87\x91\x13\xe8\x45\xca\x15\x45\x64\xa9\xbc\x81\xc5\xb3\xa6\xe2\xf5\x94\xa4\x8f\xca\x92\x3e\x9a\x34\xeb\x53\x9a\xc0\x73\x20\xd0\xf2\xf9\x3c\x0b\x87\xc3\x2c\x1c\x0e\xe3\xfa\xf5\xeb\x50\x14\x65\xc3\x1a\xd0\x5a\xf1\xd2\x1e\x70\xd7\xc4\xe3\xf1\xd0\x96\x96\x16\xb4\xb5\xb5\x51\xb3\xd9\x2c\x1a\x18\xb5\xd5\xa4\x8d\xed\x0d\x09\xd3\x03\x81\x94\x69\x5f\x55\xd6\xb0\x4d\x2a\xd0\x00\x01\x31\x92\x5b\xe8\x2a\xf5\x80\x79\x0c\x02\x56\x10\x78\x4c\x36\xeb\x03\xd7\xed\xda\x99\x09\xb7\x72\x7c\xd2\xa9\xf6\xe6\x0c\x2c\xae\x17\x75\x6d\x74\x74\x94\x5d\xbd\x7a\x15\xe3\xe3\xe3\x77\x35\xcf\xcb\xc9\x72\x3d\x60\xa3\xa8\x06\x84\x10\xba\x69\xd3\x26\x6c\xd9\xb2\x05\xd5\xd5\xd5\xa2\x08\x6a\x6b\x48\x48\x7b\xdb\x66\x2c\x9f\x0d\xc5\xa5\x43\xe6\x02\x6d\x20\x20\x94\x57\x24\x6c\x55\x78\x49\x05\x2c\xc5\x1c\x1c\x3a\xe5\xf1\x88\x43\x7b\xef\x8a\x2f\xf7\x0f\x43\xbe\xfc\x1b\x8a\x81\xc5\x53\xa9\x94\x76\xf9\xf2\x65\xd6\xdf\xdf\x0f\x5d\xd7\xd7\x23\x8f\x77\xd4\x03\x36\x4c\x08\x21\x68\x6d\x6d\xc5\x8e\x1d\x3b\xa8\xd3\xe1\x34\xda\x55\x21\xb0\xe5\xba\xf5\xe9\xce\x69\xeb\x3f\xb3\xa9\x42\x3b\xe1\xb7\x6a\xe3\xeb\x27\x9c\x00\x3a\x65\xf1\x21\x6f\xfe\xf9\xf3\x81\xcc\xf7\x22\x0e\xed\x62\x5e\x55\x72\x03\x03\x03\xec\xf4\xe9\xd3\xff\xf4\x28\xa8\xae\xae\x8e\xee\xdd\xbb\x17\x5e\xaf\x57\x72\x29\x86\xd0\x9e\xb0\xfd\x5f\x6d\x8e\x5a\xbe\x60\x60\xd4\xb3\x5e\x71\xdc\xaa\x07\xac\x84\x19\xb8\x36\xe5\x54\x8f\x7d\xd0\x90\x7e\x66\xcc\xad\xf4\xe4\x95\x7c\xae\xaf\xaf\x8f\x5d\xb8\x70\xe1\xae\x51\xd3\x86\x52\xd0\x83\x0f\x3e\x48\x5b\x5b\x5b\x8d\x96\xa2\x58\xbd\x77\xcc\xf1\x07\x5b\xaf\x5b\xff\x85\xc8\xa8\x6b\x4d\xf4\xb2\x1a\x7c\x9b\x15\x50\xc6\x20\xd0\xc3\x6e\xf5\x95\xf7\x36\xc9\xdf\x9c\xb1\x15\x2e\xce\xc6\x67\x95\x13\x27\x4e\x60\x66\x66\xa6\xb2\x4c\x36\xa4\x07\x08\xa5\x0f\x95\x1c\x40\x2a\x3e\x2f\xfd\x7e\x55\xb8\xb1\xb1\x11\x47\x8f\x1e\x15\x6a\x6b\xfc\xf6\x2d\xd3\xb6\xa7\x3e\xdd\xef\xfd\x61\x7d\x42\x7a\x8c\x72\x22\x81\x60\xae\xf4\xca\xa1\xef\x10\x2f\x24\xf6\xf6\xff\x12\x10\xea\xca\x8b\x9b\xef\x99\xb6\xfe\xae\xa5\x40\xed\xc9\x1a\xf1\x72\x53\x7b\x6b\xce\x60\x30\xb0\xa9\xa9\x29\x60\x1d\xdb\xca\x52\xbc\xee\xe4\x7b\xdf\x7d\xf7\xd1\xce\xce\x4e\xa3\x43\x15\x9b\x3e\x39\xe8\xfe\x66\x63\x42\x3a\x0a\x80\x92\x52\xbc\x1c\x1c\xeb\x8d\xd7\xbb\x78\x92\x92\x7e\xe9\xed\xd6\xc4\x9f\x8c\xb9\x95\x13\xd7\x23\xd7\x73\x2f\xbd\xf4\xd2\x86\x51\x52\xb9\x07\x50\x2c\x34\x26\x5e\xf1\xf9\x66\xb8\xfc\x3b\x0e\x00\x76\xbb\x9d\x1e\x3e\x7c\x98\x6c\xda\xb4\xc9\xd2\x32\x6b\x79\xec\xe8\x45\xef\xdf\x7a\xb3\xc6\xbd\x04\x84\x60\xa1\xa8\x70\x3b\x18\xe0\x60\x04\x4c\x31\xb0\x7c\x4a\x2a\x26\x53\x92\x2e\xa7\xa4\x62\x32\x6b\x2c\x66\x54\x03\x53\x19\xe1\x8c\x70\x50\xca\x4b\x15\x7d\x5b\xfd\x76\x01\x4b\x3a\xf5\xb5\xcd\x58\x3e\x67\x60\xa4\x90\x68\x30\x7c\x50\x2c\x16\x8b\x91\x48\x64\xad\xe5\xb3\x2a\xbc\x2e\xbe\x20\xa7\xd3\x89\x23\x47\x8e\x50\xbb\xd9\xea\xda\x3f\xe2\xfc\xa3\xdd\x61\xfb\x7f\xa0\x9c\x18\x79\x29\x16\x10\x80\x57\x50\xc7\x4d\x31\xe1\xd0\x29\xd7\x63\xd6\x42\x64\xca\xa9\x86\xa7\xed\xda\xe8\xac\xb5\x10\x4e\x99\x8a\xd3\x05\x81\xa7\x00\xae\x70\x40\xaf\x18\x01\x8b\xe0\x90\x04\x06\x9b\x4d\x13\x7d\x9e\x9c\xd8\x50\x9d\x36\x36\x04\x52\xa6\x50\x4d\xca\x18\x30\x15\x89\x34\x67\x65\xf1\x39\x13\x08\x58\x15\xa6\x80\xa4\x53\x5e\x07\xc0\x52\x5d\x5d\xad\x2c\x53\x4e\xeb\x22\xe5\x0a\xb8\xed\x2e\x16\x08\x04\xe8\xa7\x3e\xf5\x29\x6a\x21\xc6\xea\x83\x03\x9e\xff\xd6\x36\x63\xfe\x62\xb9\x15\x2e\x64\xab\xe2\xa1\xb7\x0c\xe6\x00\x74\xca\xf4\xb0\x5b\x1d\xbe\xea\xcb\xf5\x86\xdd\xca\xb9\x9c\x81\x8d\x72\xf0\x28\x21\x44\xe6\x9c\x67\x00\x28\x84\x10\x8d\x73\xe8\x4b\xd2\x4b\x39\xb8\x58\x14\x88\x98\x34\xeb\x92\x2c\x15\x6c\x23\x55\x8a\x03\x1c\x5e\x63\x91\x34\xd4\x25\x4d\xdb\x5b\x67\x2c\x3b\x37\xcd\x4a\xed\x92\x4e\x25\x02\x32\x57\xc8\xf3\x89\xbb\x11\x73\x00\xd7\xbc\xf9\xde\xd3\x0d\xa9\xbf\x07\xa0\xc9\xb2\xbc\xb4\x8c\xd6\x0d\x97\x2b\x60\xa9\x15\xb4\xaa\x81\x55\xb9\xf0\xad\xc4\x18\xf8\xf4\x45\xef\x77\x83\x49\xd3\x21\x70\x32\xff\x74\xe1\xbc\xfc\x94\x59\xb9\xbf\x67\x8c\xc5\xcc\xf9\x40\xa6\xe7\x52\x4d\xf6\xad\x8c\xa9\x78\x89\x83\x4f\x10\x42\xe2\x9c\xf3\x14\x00\x05\x80\x9e\xcb\xe5\x58\x3a\x9d\x66\xc9\x64\x12\xc5\x62\x11\xa5\x02\x01\x00\x48\x92\x04\xab\xd5\x0a\xab\xd5\x0a\xbb\xdd\x4e\x1d\x0e\x07\x05\x20\x82\xc0\xa8\x0a\xcc\x36\x52\xa5\xbc\x33\xe2\x51\x02\x26\x9d\xb4\xb5\xcd\x58\x1e\xec\x9a\xb4\x3f\xe0\xc9\x89\x5e\xb2\x28\x1d\x8b\x45\x36\x17\xa2\xc7\xda\x12\xcf\x70\x8a\x01\x45\x51\x72\x1b\x39\x3e\xb8\xed\x81\x58\x20\x10\xc0\xa3\x8f\x3e\x2a\x5a\xb9\x21\xf8\xc4\x45\xdf\xf7\xfc\x49\xd3\x03\x2b\x19\x2c\xcb\x59\x2f\x59\x53\x31\x73\xb6\x3e\xf5\xf6\x85\xda\xec\xab\x05\xca\x2e\x11\x42\x26\x38\xe7\x71\x00\x4a\x32\x99\xd4\x27\x26\x26\xd8\xf8\xf8\x38\x62\xb1\x18\xf2\xf9\xfc\xad\x92\xb3\x28\x63\x81\x40\x80\xfa\xfd\x7e\x34\x34\x34\xc0\xeb\xf5\x8a\x94\x52\x89\x73\xee\x20\x84\x04\x09\x43\x5b\x6b\xcc\xfc\xc8\xbe\x31\xe7\x21\x4f\x4e\xac\x26\x65\x8e\x04\x00\x70\x68\x02\xd7\xfe\xbe\x2b\xfa\xa7\x51\x9b\xf6\x1c\xe7\x7c\xf4\xb5\xd7\x5e\xd3\x27\x26\x26\x36\xbc\x02\xd6\x24\x0e\x87\x83\x1e\x3d\x7a\x94\x3a\x8d\xd6\xc0\xd1\x7e\xef\x77\x83\xb2\xe9\xd0\xcd\x5a\x54\xa5\xc5\xa2\x13\xae\x9f\x0f\x64\x7a\x4e\x37\xa6\x9e\x55\x0c\xac\x8f\x73\x3e\x0a\x20\xae\x28\x8a\x36\x38\x38\xc8\x4e\x9d\x3a\xb5\xee\x16\x47\x57\x57\x17\xdd\xbc\x79\x33\x75\x3a\x9d\x22\x00\x17\xe7\x3c\x28\x32\xb2\x65\xdb\x94\xed\xb3\xfb\xc2\xce\x43\x92\x4e\xa5\x72\x3a\x8f\xb5\x25\xbe\xdf\x5f\x9b\xfd\x0b\xce\xf9\x40\x6f\x6f\xaf\x72\xf6\xec\xd9\x0d\x1d\x94\xad\x34\x10\x5b\xb1\xc6\x0c\x06\x03\x3e\xf7\xb9\xcf\x51\xa7\xdd\xe1\x39\x7c\xa9\xea\x99\xd6\x98\xf9\xe9\xf2\x83\xab\x4c\x3b\x95\x98\x90\x05\x4b\x2f\x66\xd1\xa2\xc7\x36\x27\x7e\x18\xb1\x6b\x6f\x72\xf0\x41\x42\x48\x2c\x99\x4c\x2a\xe7\xce\x9d\x63\x83\x83\x83\x1b\x3e\xf4\xaf\xab\xab\xa3\x7b\xf6\xec\x81\xcf\xe7\x33\x12\x42\x3c\xe0\x68\x71\x28\xc2\xbd\x0f\x5f\xf5\x7c\xb9\x31\x61\x6a\xeb\xf7\x67\xdf\x3b\xd6\x96\xf8\x06\x08\x7a\x27\x26\x26\x52\xaf\xbe\xfa\xea\xdc\x40\xed\xe3\xe2\x0b\x22\x84\xe0\xd1\x47\x1f\x45\x7d\xb0\xde\x71\xef\x88\xf3\xeb\x7b\xc6\xed\xff\x8e\x94\x38\x1f\x58\x79\xcc\x04\xc2\x71\xd1\x9f\xed\x39\xde\x22\x7f\x57\x17\xf8\x69\xce\xf9\x84\xaa\xaa\x99\xde\xde\x5e\xd6\xdf\xdf\x5f\xce\xe4\x9d\xc8\x9a\x32\x1f\x0a\x85\xb0\x7f\xff\x7e\xea\x70\x38\x24\xce\x79\x80\x82\x6c\xe9\x8c\x58\x3f\x39\x58\x9d\x7b\xbd\x20\xf0\x9e\x54\x2a\x15\xff\xe9\x4f\x7f\xaa\xaf\x45\xe7\xed\xe2\x35\x51\xd0\xae\x5d\xbb\xe8\xce\x9d\x3b\xa5\xd6\x98\xe5\xa9\xc7\x2e\x55\x7d\x97\x82\x18\x6f\xf5\x1b\x9d\x70\xfd\x44\xb3\xfc\xfc\xf9\x40\xe6\x47\x1c\xfc\x3c\x21\x24\x3a\x38\x38\xa8\xbd\xf3\xce\x3b\x1f\xb9\x2b\x78\xcf\x9e\x3d\x74\xfb\xf6\xed\x22\xa5\xd4\x01\xc0\xc6\x39\xcf\x30\xc6\x52\x2f\xbe\xf8\xa2\x3e\x33\x33\xb3\xaa\xf4\x35\x37\x37\x53\x51\x14\x91\x48\x24\x10\x8d\x46\xd7\x9c\xa7\x55\x53\x50\x4d\x4d\x0d\x8e\x1c\x39\x22\x7a\x34\xe3\xb6\xa7\x7b\x6b\x7e\x29\x15\x84\x6a\x60\x79\xda\x29\x63\x8d\x32\xed\xd5\xce\xd9\xff\x3b\xe2\x51\x9e\xe5\xe0\x97\x0a\x85\x82\xfc\xee\xbb\xef\xb2\x6b\xd7\xae\xdd\x34\xae\xbb\x89\x7d\x3e\x1f\x76\xef\xde\x8d\xfa\xfa\x7a\x1a\x8b\xc5\x58\x4f\x4f\x0f\x4a\xee\x87\x15\x7f\x1b\x0c\x06\xe9\x9e\x3d\x7b\xe0\xf5\x7a\x8d\x84\x10\x11\x00\x38\xe7\x7a\x36\x9b\xd5\x4f\x9d\x3a\xc5\x2a\x66\xe1\x6e\x99\x86\x55\x51\x90\x20\x08\x78\xea\xa9\xa7\xa8\xcb\xee\xf4\x3e\x79\xde\xf7\xe3\xfa\xa4\xf4\xf0\xcd\xc2\x03\x80\x2a\x30\xe5\xa5\x2d\xb1\xff\x3d\xee\x54\x9e\x25\x84\x0c\x26\x93\xc9\xcc\xab\xaf\xbe\xca\x52\xa9\xd4\xad\x7e\x7a\x3b\x72\xd7\x2a\xac\xa5\xa5\x05\xdd\xdd\xdd\xa2\x47\x31\xb6\xec\x1f\x73\x7c\xad\x21\x21\x3d\x40\x38\xe8\xa4\x53\xed\x39\xd5\x98\x7a\x66\xc6\x5e\xb8\xd8\xd7\xd7\xa7\x9d\x3e\x7d\x7a\x55\x69\x5b\xd5\x40\x6c\xd7\xae\x5d\xd4\xe9\x74\x4a\x5b\x27\x6d\x5f\x0c\x26\x4d\x0f\xf3\xf2\x88\x91\x00\x58\x06\xeb\x02\xd3\x5e\xe9\x9c\xfd\xeb\x09\xa7\xfa\x77\x84\x90\xc1\xc9\xc9\xc9\xcc\x2f\x7f\xf9\xcb\x8d\xa6\x9c\x0d\x19\x28\x55\x62\x9f\xcf\x47\xbb\xbb\xbb\xc5\xaa\xbc\x71\xdb\x6f\x7d\x58\xfd\x82\x59\x13\x82\x00\x00\x02\x34\xc7\x2c\x2d\x0d\xb2\xf4\xd8\x2f\xb6\xce\x7c\x1e\x5d\x5d\xef\x4d\x4f\x4f\x6b\x63\x63\x63\xec\x56\x3a\xcb\xb5\xb1\xdc\x7d\xbe\x57\x6c\xdb\xb6\x4d\xb4\x29\x42\xdb\x81\x51\xc7\x9f\x80\x13\xcc\xfb\x5b\x38\x6e\xc0\x9c\x70\xbc\xd5\x96\xf8\xdb\x31\xb7\xf2\x2c\x08\x2a\x0b\x9f\xae\xa0\x7f\xbd\x30\x36\x1a\x77\x75\x75\x81\x12\xea\x78\x60\xd8\xf5\xa7\x96\x82\x10\x04\x78\xc9\xd3\x05\x00\x1c\xc6\x22\xf5\x74\x5f\x75\x7f\x8b\x70\x78\x76\xee\xdc\xb9\x2a\x9d\xcb\x7d\xb9\xe8\xbb\xc7\x1e\x7b\x8c\x52\x42\x6d\x07\x46\x9d\x5f\x33\xeb\x42\x75\xd9\x7f\x4a\xb0\xe0\x4b\x2d\x63\x0e\x8e\x33\xf5\xe9\xd7\x2e\x57\x67\x7f\xc0\xc1\x07\x26\x27\x27\x33\xaf\xbd\xf6\xda\x86\x14\xc6\x12\xbc\xe1\x71\x10\x42\x68\x7d\x7d\x3d\x35\xe9\x34\x10\x94\x4d\xf7\xcf\x7d\xb7\x10\xb0\x8c\xbd\x59\x43\x97\x2b\x2f\xb6\xf9\x7c\x3e\xd1\x6a\xb5\xde\x52\xff\x4d\x29\xa8\xa6\xa6\x86\xd6\xd5\xd5\x19\x7d\x19\xc3\xce\xf6\xa8\xe5\x29\x3e\xef\xba\x5d\x9e\x82\x26\x5c\xea\x60\x4f\x28\xf9\x57\x84\x90\x4b\xc9\x64\xf2\x6e\xd0\x4e\xa5\x6c\x28\x05\x71\xce\x99\x28\x8a\xa2\xa0\xc2\x45\x39\x91\x38\xb0\xe0\xc4\x23\x0b\x98\x10\x88\x26\x9d\xfa\x01\x88\xd9\x6c\x56\xbb\x95\xfe\x9b\x52\xd0\x8e\x1d\x3b\x40\x08\xb1\xed\x09\x3b\xfe\x80\x72\x22\x91\x15\x68\x07\x04\x50\x45\x96\x3b\xd6\x96\xf8\x0b\x46\xd1\xa7\x69\x9a\xfc\xc6\x1b\x6f\xdc\x0d\xda\xb9\xab\x14\x04\x00\x8a\x81\x65\x52\x92\x1e\x2d\xd3\x4e\x25\x05\x11\x02\x68\x02\xcf\xc8\x66\x3d\x0a\x80\x55\x55\x55\xdd\x3e\x05\xd5\xd4\xd4\xa0\xbe\xbe\xde\xe8\xc9\x8a\xdb\x5a\x62\xe6\x23\xe5\xde\xb6\x1c\x05\x01\x1c\x27\x43\xc9\xe7\x65\xa9\x70\x82\x73\x1e\x3d\x79\xf2\x24\x4b\x24\x12\x95\xe9\xfe\x47\x4f\x41\x00\x68\x3e\x9f\x67\x45\xc2\xe3\xa7\x1b\x52\xbf\xe0\xa5\x02\x2f\x4b\x99\x82\xcf\x05\xd3\xaf\xe5\xc5\xe2\x14\x63\x8c\x65\x32\x99\x5b\xea\xac\x34\x89\x16\x5d\xed\xed\xed\x20\x84\x58\xba\x26\xed\x5f\x22\x20\x22\xe7\x73\x36\xfe\x9c\x8f\x9f\x2f\xc2\x33\xb6\x42\xf8\x42\x6d\xe6\xc7\x84\x90\xf0\xe8\xe8\xa8\x76\xe5\xca\x95\x1b\xf4\x6d\xf0\x85\xbb\x81\xaf\x5c\xb9\xc2\x08\x21\xb1\xcb\x35\xb9\x67\x4f\x34\xcb\x3f\x53\x04\xae\x94\xe7\x3c\x0a\x94\x6b\x67\x83\xe9\x37\x4e\x35\xa4\xbe\x4b\x08\x89\x5c\xbd\x7a\x55\x57\x55\xf5\x96\x3a\x2b\xdd\xd1\x65\xca\x60\x26\x93\x89\x36\x35\x35\x51\xa9\x40\x83\x6d\x33\x96\x23\x65\x8a\x23\x28\xfb\x77\x08\xca\x73\x1c\x20\xc0\xfb\xa1\xe4\x4f\x8a\x84\x0f\xe8\x05\x3d\xf3\xde\x7b\xef\x2d\xd5\x87\xbb\x84\x2b\xe3\xdd\x10\x7c\xf6\xec\x59\x34\x34\x34\xe4\x3c\x1e\xcf\xa5\x73\x75\x99\x3f\x1b\xa8\xce\x1d\xaf\x49\x1b\xb7\x52\x0e\x1a\xb5\x17\xae\x64\x8c\xc5\x33\x20\x18\xc8\xe7\xf3\x99\xd2\x38\xe0\x96\x3a\x2b\x67\xc4\xe6\x29\xa8\xa5\xa5\x05\x06\x83\x41\x6a\x99\x32\x3f\x66\xd2\x89\x07\x58\x18\x32\x57\x52\x10\x08\x30\xe9\xd0\x06\xc7\x3c\xca\xeb\x00\x62\x67\xce\x9c\x61\x15\xae\xe3\xbb\xca\xcd\x77\x23\xbe\x62\xb1\x88\xe7\x9e\x7b\x8e\x3d\xf9\xe4\x93\xb2\xd7\xeb\x3d\x9f\x33\x14\xc3\xa3\x55\xca\x31\x00\x94\x73\x9e\x21\x84\xc8\xa9\x54\x4a\x79\xfd\xf5\xd7\xd9\x12\x17\xfa\xda\xac\xa0\xd6\xd6\x56\x0a\x0e\xc7\xe6\xa8\xe5\x71\xf0\x8a\xd6\x0e\x2c\xb1\x7c\x38\xce\x05\xd3\x2f\x72\x82\xe1\x5c\x36\xa7\xdc\xcd\xf5\x34\xcb\xc8\x86\x0f\xc4\xca\xe0\xf9\xe7\x9f\x67\x5b\xb7\x6e\x55\x9a\x9a\x9a\x22\x4e\xa7\x93\x02\x40\x36\x9b\x65\xd7\xae\x5d\x43\x5f\x5f\xdf\x72\x65\xb0\xa2\xce\x65\x29\xc8\xeb\xf5\x8a\x36\x4d\x68\xa8\x4d\x9b\x76\x96\x5b\xfc\x72\x14\x94\x92\x8a\xd1\x91\xaa\xfc\x9b\x00\xe2\x1f\x7e\xf8\x61\x65\xf7\x02\xee\x9c\x52\x3e\x56\x14\xd4\xd6\xd6\x46\x01\xa0\xe4\x36\xc7\x85\x0b\x17\x50\x6a\x70\x8c\x52\x4a\x19\x63\x0c\x00\x5c\x2e\x17\x6d\x6c\x6c\x84\xc5\x62\x01\x00\xc8\xb2\x8c\xcb\x97\x2f\xb3\x95\xf4\xdf\x40\x41\xed\xed\xed\x94\x10\x62\xac\x4f\x98\xee\x17\x18\xb1\x94\xff\xb9\x1c\x05\x0d\x54\x67\xdf\xd3\x09\x1f\xd5\x0b\xba\x72\xf5\xea\xd5\x79\x1d\x95\xfa\xee\x12\xde\x10\xbd\x35\x35\x35\xb4\xbb\xbb\x1b\x0e\x87\x43\x12\xf8\xdc\x22\xe1\xee\x07\xbb\x75\x45\x55\xb4\x33\x67\xce\xb0\x4b\x97\x2e\x01\x00\x2d\x95\x3d\xba\xbb\xbb\x69\x5b\x5b\x9b\x28\x14\x89\xcd\x9d\x17\xfd\x45\xca\x75\x59\xd2\x23\x07\x0e\x1c\xc8\x7d\xf0\xc1\x07\xec\xc2\x85\x0b\x37\xc4\x75\x03\x05\x05\x02\x01\x4a\x08\xb1\x34\x26\xa4\x4f\x80\x2f\xac\x6a\xb8\x81\x82\x00\x5c\xf5\xe5\xdf\x24\x84\xc4\x87\x87\x87\x59\xc5\x13\x7f\xc3\xa4\xb6\xb6\x96\xfa\xfd\x7e\xb8\xdd\x6e\x88\xa2\x08\x45\x51\x90\x4e\xa7\x11\x89\x44\xe8\xf5\xeb\xd7\xd7\x95\x6a\x3a\x3b\x3b\xe9\x7d\xf7\xdd\x27\x3a\x15\x31\xb4\xef\x8a\xf3\x8f\x1b\x13\xd2\xc3\x02\x87\x71\xda\xa6\xf5\x9d\x6e\x48\x3d\x23\xdd\x7f\xff\x19\xb7\xdb\xad\xfc\xfa\xd7\xbf\x66\x00\xf0\xf8\xe3\x8f\xd3\xba\x40\x9d\xad\x6b\xc2\xf6\x85\x3d\xe3\x8e\x7f\x6b\xd1\x68\x88\x03\x2c\x6e\xd1\x7b\x8f\xb7\x24\xfe\x93\x78\xe0\xc0\xfb\x66\xb3\x59\x29\xcd\x2f\xcf\xc7\xb5\x88\x82\x08\x21\xb4\xb6\xb6\x96\x82\xc3\x11\x48\x9a\xba\x16\xad\x6c\x58\x42\x41\xb2\xb9\x30\x15\xb3\x16\xce\x03\xc8\x55\xb4\xfe\x0d\xa1\x97\x5d\xbb\x76\xd1\xce\xce\x4e\x6a\x36\x9b\x45\xc2\xb8\x64\x50\xb8\x8b\x16\xb9\xc4\x04\xa2\x68\x12\x91\x39\x81\x92\xcd\x66\xf5\x2b\x57\xae\xb0\x8a\x29\xc4\xdb\xa6\x9d\xaa\xaa\x2a\xba\x7f\xff\x7e\xd1\x9d\x37\x74\x3e\xf5\x61\xf5\x0b\x56\x95\x86\xca\x2b\x39\x1a\xe3\x52\x53\x50\x96\x0e\xbd\xd2\x19\xfb\x12\xef\xec\x7c\x2d\x91\x48\x28\x36\x9b\x0d\x81\x40\xc0\xb2\x7b\xdc\xfe\xfb\xf7\x8d\x38\xbf\x09\x0e\x4a\xc8\xdc\x24\x6c\x55\x56\xdc\x7f\xf4\xa2\xf7\xe7\xcf\x6d\x9f\xf9\xcc\xf6\xed\xdb\xdf\x1f\x1b\x1b\xd3\xa7\xa7\xa7\xe7\x2b\x7a\x11\x05\xd9\xed\x76\x58\x2c\x16\x6a\x57\x85\xa0\x4d\x15\x02\xcb\xad\x65\x28\x53\x50\xd8\xa5\x9e\xe7\xe0\x51\x55\x51\xb5\x48\x24\x32\xaf\xa3\x52\xdf\x9d\xe2\x40\x20\x80\xee\xee\x6e\xd1\x66\xb5\x5a\xec\x33\xc5\x7b\xbd\x97\xf2\x5f\xb2\xcd\xea\xf7\xd3\x22\xaa\x01\x18\x01\x68\x45\x11\x53\x69\xaf\x78\x62\xb6\x41\xfa\x81\x6d\xe7\xce\xd3\x9b\x37\x6f\x56\xde\x7a\xeb\x2d\x56\xca\xe4\x6d\xc5\xbd\x63\xc7\x0e\x88\x82\xe8\x78\xf0\x9a\xeb\x9b\x36\x4d\x08\x81\x2c\xcc\xd8\x11\x02\x88\x9c\xd8\x1e\x1a\x72\x7f\x3b\xec\x56\xfb\xf6\xef\xdf\x1f\x16\x45\x11\x66\x8d\x86\xf6\x86\x1d\x7f\x42\x40\xe8\xd2\xf0\x06\x46\x1d\xf7\x8e\x3a\xbf\xfe\xc2\xd6\x99\xdf\xdd\xb1\x63\x47\xac\xe4\x1f\x03\x96\x0e\xc4\x7c\x3e\x1f\x00\x18\xbd\x59\x43\xfb\x0d\x83\xaf\x25\x03\xb1\x49\xa7\x7a\x9e\x10\x92\x8a\x44\x22\xac\xf4\x00\x5a\xd7\xab\xb1\xb1\x11\x87\x0f\x1f\x16\xdd\xa2\xa5\xa9\xe9\x6c\xfe\x7b\x4d\x67\xf3\xbf\x74\x4c\xeb\x4f\x0b\x45\x04\x09\x60\x2c\xad\x0b\x35\x8a\x05\x84\x5c\x11\xfd\xf7\x9a\x4f\xe7\x5f\x6f\xec\x53\xfe\xd2\x69\xb0\x04\x8f\x1c\x39\x22\x36\x36\x36\xa2\x32\x6f\x6b\xc1\x8d\x8d\x8d\x65\xa7\xdb\x03\x73\x79\x27\x15\xe5\x30\x87\x6d\xaa\xd0\xe4\x4f\x19\xf7\x8a\xa2\x28\x02\x30\x56\x67\x8c\xbb\x0d\x45\xe2\x59\x29\x7c\x4d\xca\xb8\xdb\xc0\x88\xb7\xae\xae\xae\xb2\xd7\x2d\xf6\x05\xb9\x5c\x2e\x00\x10\xab\xb2\x86\xcd\x65\x3b\x7f\xde\xd7\x51\xc2\xa5\xe7\x02\x8b\xda\xb5\x0b\x9c\x73\x65\x72\x72\xb2\xfc\xfb\x4a\x5d\x77\x84\xeb\xea\xea\xe8\xc1\x83\x07\x45\xb3\x4a\xda\x5b\x4e\xe5\x5e\x70\xcc\xe8\x4f\x12\x70\x5a\xf6\xb9\x00\x1c\x0b\x78\xee\x4e\x38\x44\x57\x44\xff\xbd\x96\x0f\xf2\xcf\x9a\x74\x12\x3a\x78\xf0\xa0\xe8\xf5\x7a\x17\xe5\x6f\xb5\x58\x10\x04\x6a\x60\xc4\x43\x39\x91\x56\xf2\xf9\x00\x80\xc8\x88\x17\x73\x2c\x42\x39\xb8\x54\x2a\xa6\x65\xc3\x73\xc2\xc1\x01\x49\x10\x84\xca\xfc\xde\x48\x41\x00\x8c\xae\xbc\xd8\xb0\xa0\x6c\x4e\x2a\x29\x48\x11\x59\x26\x6d\x2a\x86\x01\x68\xb1\x58\x0c\x95\x3a\xee\x14\x0b\x82\x80\xee\xee\x6e\x2a\x82\x56\x87\xce\xe5\xbe\x6b\xca\xf1\xce\x1b\x12\xb1\x28\x41\x7c\xfe\x4e\x00\x48\xe9\xe2\xde\xc6\x3e\xe5\x2f\xaf\xed\x31\xff\xee\x43\x0f\x3d\x14\xfd\xf9\xcf\x7f\x3e\x6f\xa5\x00\xa0\x94\x52\x34\x37\x37\xd3\x4d\x9b\x36\xc1\x66\xb3\x51\x00\x34\x95\x4a\xb1\xcb\x97\x2f\x63\x72\x72\x12\xa5\x85\x5d\xc8\x19\x8a\x99\x8c\xb1\x18\x73\xaa\xa2\x7f\x39\xb7\x33\x23\xd0\x13\x96\xc2\x54\xe9\x6b\x36\x6d\xd7\x86\x14\x91\xa5\xcc\xba\xe0\x58\x2e\xfc\x75\x87\x36\xa8\x53\x9e\x63\x15\x89\xc1\x52\x0a\xf2\x78\x3c\x00\x20\xd9\x55\xd1\x7f\x03\xed\x54\xe0\x8c\xa9\x18\xd3\x29\x4f\x71\xce\xd9\xf4\xf4\xf4\xba\x52\x4f\x57\x57\x17\xac\x56\xab\xe4\x1b\xd3\xbe\x62\x4e\xb1\xbd\x7c\xde\x0c\x23\x58\x16\xf3\xf2\xe7\x05\x6c\x8b\x17\x0f\x7a\x26\x0b\xbf\xed\x76\xbb\x2d\x9d\x9d\x9d\xe5\xfc\x01\x00\xfb\xcc\x67\x3e\x83\x87\xba\x1f\x92\x76\x7b\x5b\x3b\x1f\xd2\x1a\x9f\x7e\xa0\xd0\xf8\xe4\x8e\xda\xb6\xa6\xc7\x1f\x7f\xdc\xf8\xe8\xa3\x8f\xd2\x54\x2a\xc5\x34\x4d\x63\x8c\x22\x7e\x2e\x98\x7e\x65\xce\xef\x75\x23\xa5\x8c\xb9\x95\xbe\xa4\x54\x1c\x06\xa0\x01\xd0\x55\x03\x0f\xf7\x84\x52\xcf\x2f\x17\x5e\x13\x98\x72\x32\x94\x7c\x16\x04\xf2\xe4\xe4\xe4\x22\xba\x5b\x64\x05\x89\xa2\x48\x09\x60\xb4\x68\xd4\x53\xe9\xff\x41\x05\xe6\x7c\xae\x02\x40\x90\x2b\x68\x85\x75\x1f\x7c\x75\x74\x74\x50\x52\xe4\xd5\xde\xb1\xc2\x97\xc9\xfc\x8a\xa2\xb9\x56\x4e\x96\xc5\x73\xf7\x85\x85\x61\x1c\x84\x13\xf8\x46\x0b\x5f\x8d\xd7\x19\x7e\xd1\xd1\xd1\xa1\x5c\xbc\x78\x11\x00\xd8\x17\xbf\xf8\x45\xd1\x61\xb2\x7a\x1e\xbe\xe2\xfe\x46\x7b\xd4\xf2\x95\x39\xbf\x3e\x47\x91\x20\x75\x2e\x98\xfe\x1f\x64\x53\xc3\x9f\x7f\xfe\xf3\x9f\x4f\x8d\x8e\x8e\xb2\xd6\xd6\xd6\xd8\x87\x75\x99\x1f\xdb\x55\xa1\x61\xc7\xa4\xfd\x61\xca\x09\x9d\x2b\x07\x8e\x49\xa7\x3a\xf4\xe6\xe6\xf8\x33\x1c\x3c\x92\x88\x27\xf4\x64\x32\x89\x50\x28\x14\xf9\x30\x90\xf9\x5e\x91\x70\x71\xff\x98\xe3\xa8\x55\x13\x1c\x1c\xc0\x8c\xbd\x30\x71\xbc\x25\xf1\xc3\x19\x7b\xe1\x6d\xce\xb9\x5c\x1e\x3b\x94\x2b\x61\x11\x05\x39\x9d\x4e\x10\x10\xa3\x49\xa7\xb6\x72\x5b\x2b\x4b\x25\x05\xe5\x0d\x4c\xe6\x9c\x6b\xc9\x64\xb2\xb2\x00\x71\xa7\xb8\xa6\xa6\x06\x66\xb3\x59\xb4\x24\x8a\xbb\x0d\x0a\x0f\x2d\x8a\x78\xc5\x04\xf1\xc5\xf7\x12\x96\x32\xac\x53\xca\xb0\x76\xb7\xdb\x1d\x75\xb9\x5c\x5a\x57\x57\x17\xb5\x58\x2c\xb6\x4f\x0c\xba\xbe\xd1\x31\x6d\xf9\xfd\x72\x85\x11\x00\x22\x27\x8e\xdd\xe3\xf6\x3f\x55\x45\xa6\x9d\x69\xc0\x77\xa2\xd1\x68\x2e\x9b\xcd\xe6\x6c\x36\xdb\xc5\x77\x9b\x92\xdf\xec\xf7\x67\x8f\x37\x24\xa4\x5d\x02\x23\xc6\x88\x43\x1b\x98\x72\xaa\xef\x72\x82\x3e\x70\xc4\xdf\x7d\xf7\x5d\xc8\xb2\x0c\x9f\xcf\x97\xb3\xd9\x6c\x17\x2f\x06\xb2\xcf\x5c\xf2\x67\x5f\xb7\xa9\x42\xb0\x48\xa1\x65\x8d\xc5\x61\x10\x0c\x02\x08\x0f\x0d\x0d\x69\xe1\x70\xb8\x22\x13\x4b\x06\x62\x84\x10\x91\x32\x88\x02\x2b\xcf\xf8\x54\x64\xb6\x02\xab\x22\x4b\x11\x42\xf4\x8a\x9d\x85\xeb\x22\x3e\x9f\x8f\x12\x42\x8c\xe6\x14\xdb\x51\x2e\x9e\xf2\xb8\x03\xc0\xf2\xb8\xd4\x09\xe6\x76\x1a\x2d\xc2\xd4\x9c\x66\xdb\x14\x87\xf0\x7e\x5b\x5b\x9b\xd6\xd4\xd4\x24\x5a\x55\xa1\x69\x4b\xc4\xfa\xcf\xcb\x0b\x88\x2b\x67\xb2\x40\x08\x76\x4c\xd8\xff\xe8\xc3\xba\xcc\x73\xf5\xf5\xf5\xa3\x2f\xbe\xf8\x22\x7b\xec\xb1\xc7\xe2\x36\x9b\xad\x37\x6e\xd5\xc3\x71\x6b\xe6\x65\xcc\x35\x98\x0c\x80\xb8\xae\xeb\xa9\x9e\x9e\x1e\xbd\x44\xc1\x78\xf9\xe5\x97\xd1\xdd\xdd\x2d\xfb\xfd\xfe\x4b\x8c\x62\x34\x65\x2e\x5a\x4a\x65\x93\x03\x90\xe9\xef\xef\xd7\xcb\x83\xb6\x0a\xb9\xc1\x17\x04\x70\x88\x73\x1b\x1d\x56\xa6\x20\x46\xb8\x0e\x40\xaf\x50\xb4\x2e\x14\x54\x36\x02\x44\x8d\x57\xdf\x9c\x76\x6e\x41\x41\x25\x2c\xaa\xbc\x16\x80\xb8\x6d\xdb\x36\x10\x42\x44\x6f\xd2\xd0\x25\x70\x62\x59\x69\xb9\xbc\xa5\x40\xfd\x0e\x45\x68\x2a\x58\xa5\x09\x59\x96\x95\x9f\xfc\xe4\x27\xec\xc0\x81\x03\x99\xe6\xe6\xe6\x9c\xc5\x62\xa1\x00\x50\x2c\x16\xd9\xd8\xd8\x18\x3b\x77\xee\x1c\x66\x67\x67\xe7\x29\x38\x95\x4a\xb1\x17\x5f\x7c\x11\x0d\x0d\x0d\xca\xa6\x4d\x9b\x94\xaa\xaa\xaa\x38\xe7\x1c\x91\x48\x04\xc3\xc3\xc3\xa8\x18\x97\x2c\x2a\xef\xe5\xdc\xd1\xf3\x72\x93\x81\xd8\xa2\x27\xf9\x3a\x63\xca\x2b\x5b\x26\x6e\x8d\x57\xda\x5b\x33\x77\xa8\xc1\x9c\xe5\x03\x80\x16\x05\x4e\x2b\x0b\x7c\x2e\x3f\x15\xe1\x01\x14\x28\x17\x01\xa0\xa1\xa1\x81\x86\xc3\x61\x9c\x3c\x79\x12\x27\x4f\x9e\x64\x16\x8b\x85\x89\xa2\x88\x25\xeb\x9a\x6e\x48\x7f\x38\x1c\xc6\x12\x9a\xb9\x69\xf8\x45\x14\xc4\x39\x07\x27\x04\x8c\x2c\x7c\x2e\xcf\xf9\xce\x63\x00\x02\x23\xc6\x8a\xf5\x9c\xeb\xe9\x03\xa2\x9c\x73\x56\x30\xd3\x28\x27\x0b\x2d\x9d\x63\x65\x3c\xdf\x0f\xca\x5e\x5b\x94\xa7\x07\x09\x34\x33\x9d\x06\xc0\x8a\xc5\x22\x28\xa5\x2c\x62\xd7\x86\x72\x46\x16\xb7\xa8\xd4\xb3\xdc\x8e\xc9\x19\x5b\x61\x38\x2d\x15\xa3\x00\x58\x38\x1c\x9e\x77\x4b\xb4\xb6\xb6\xc2\xe1\x70\x00\x00\x52\xa9\x14\xc6\xc6\xc6\xb0\xc4\xf7\x34\x2f\x5d\x5d\x5d\x65\x6f\x28\x05\x00\x59\x96\xd9\xc5\x8b\x17\x57\xdc\x95\xbf\x68\x83\x46\x69\xb7\x8a\xae\x53\x3e\x37\x9b\xbf\x8c\x41\xcb\x39\x60\xd2\xa9\x8d\x10\xb2\x5c\xeb\xbd\x19\xd5\x94\xc3\xad\x88\x53\xa9\x14\x08\x21\x5a\xd6\x45\xfb\x41\x08\x23\x9c\x53\xf0\x8a\x64\x2c\x87\x2b\xee\xf3\xc9\xe4\x00\x17\xa0\xe5\x9d\x74\x00\x80\x7e\xea\xd4\x29\xec\xd9\xb3\x47\x23\x06\xc3\xc4\x89\x66\xf9\x27\x9f\x1a\xf0\xfc\x3e\xe1\x8b\x7b\x7c\x81\x32\xed\x44\xb3\xfc\x03\x4e\x10\x49\xa5\x52\x0c\x00\x1e\x7a\xe8\x21\xda\xdc\xdc\x2c\x4a\x4c\x70\xf8\x32\xc6\x26\xc2\x41\x63\x75\x85\xe1\x6d\xdb\xb6\xa5\x26\x26\x26\xb4\x57\x5e\x79\x65\x3e\x8f\x6e\xb7\x1b\x8f\x3f\xfe\x38\xb5\x9a\x2d\x96\xfa\x84\xa9\xcb\x1f\x37\xed\x2c\x08\x2c\x37\x52\xe5\x7e\xa7\xfe\x70\x7d\x78\x74\x74\x54\xab\x58\xa8\x30\x5f\x3e\x4b\xf7\x88\x31\x0e\xe8\xaa\x81\x65\xa0\xae\x4c\x41\x16\x4d\x70\x81\x43\x2c\xb5\x9c\x75\xa3\xa0\xd2\x9a\x4c\x4d\xb5\xd2\x81\xac\x8b\x0e\xda\xe2\xac\x7d\xae\xb0\x57\x41\x47\x4b\x24\x5d\x25\x9c\x2f\x98\x48\x18\x80\x36\x3c\x3c\x0c\x49\x92\xd8\xce\x9d\x3b\x23\x57\x7c\xb9\x1f\xab\x02\x63\x07\x46\x9d\x4f\x7a\x72\xa2\x7f\x6e\x54\xaf\x4e\xbc\xd7\x94\xfc\x49\xc4\xa1\xbd\x0c\x20\x7e\xe1\xc2\x05\x76\xe8\xd0\x21\x1a\x6a\x0c\xd9\xba\x26\x6d\x5f\xd8\x3f\xe6\xfc\x8f\x26\x9d\x04\x01\x82\x82\xc0\xa2\xbd\xc1\xf4\x9f\x9d\x6a\x0c\xfe\xf5\x53\x4f\x3d\x95\x7a\xe1\x85\x17\x60\xb1\x58\x70\xe4\xc8\x11\xea\x12\xad\x81\xc7\xcf\x57\x3d\x53\x2f\x9b\x9e\x28\xb3\xc5\xfd\xc3\x3c\x73\xba\x21\xf5\x5f\xd0\x18\xfa\xeb\xa3\x47\x8f\x66\x5e\x7a\xe9\xa5\xf2\x6a\xf0\x1b\x29\x28\x95\x4a\x51\xbb\xdd\xae\xe5\x0c\x45\x19\x58\x99\x82\xec\xaa\x50\x4d\x00\xc9\xe3\xf1\x50\x2c\x7e\x18\xdf\x91\x24\x12\x09\xc8\xb2\xac\xbb\x5c\xae\xc8\x74\xb3\xe9\x67\xd6\x44\xfe\x3f\xcf\x35\xe8\xb5\x51\x10\x28\x61\xd3\x2d\xa6\x67\x39\x10\x8d\x4e\x4f\xeb\xb9\x5c\x8e\x9d\x39\x73\x06\x75\x75\x75\xb9\x9a\x9a\x9a\x81\x11\x4f\xfe\x6f\x46\x3d\xca\x71\x49\xa7\x01\x0e\xce\x54\x91\x87\x41\x30\xc4\x39\x9f\x18\x1b\x1b\x53\x44\x51\x44\x63\x63\xa3\xd4\x19\xb1\x3e\xfd\xe0\x35\xd7\x5f\x96\xbd\x9b\x00\x60\xd0\x49\xf5\xbe\x31\xc7\xb7\x08\x87\xf5\x64\x08\xdf\x3e\x70\xe0\x40\xc6\x6e\xb7\xc3\x2c\x99\x1d\x0f\x5f\x76\xff\xb7\x06\x59\x7a\x82\xcf\x9b\x64\x00\x65\xb0\xed\x1f\x73\x7c\x2b\x63\x2a\xa6\xb8\xbf\xe6\x87\x1d\x1d\x1d\xca\xa5\x4b\x97\x16\x86\xe6\x15\x77\xaa\x69\x1a\x03\xa0\xa5\xe6\x78\xb0\xc2\x11\xb4\x80\x39\x00\x9b\x26\x78\x0d\x45\xe2\x30\x18\x0c\x6b\xf1\xf3\x60\x35\xf8\xe2\xc5\x8b\x0c\x80\x9c\xf6\x0a\xaf\xc6\x1a\x0d\xc7\xca\x76\x0e\x29\x95\xee\x52\x5c\x79\x2f\xdb\x96\x91\x66\xe3\x8b\x39\xa7\xf0\x0e\x00\xb9\xaf\xaf\x6f\x5e\xff\x2b\xaf\xbc\x82\x91\x91\x91\x14\x80\x41\x10\xbc\xad\x18\xd8\x73\x8a\xc8\x9e\x07\xc1\x7b\x8c\xb1\xe1\x81\x81\x81\xdc\xb1\x63\xc7\xd0\xd1\xd1\x41\x05\x4e\xbc\x7b\xc6\xed\x5f\x23\x58\x44\xb5\xf3\x95\xbf\x63\xd2\xfe\x87\xe6\x02\x0d\x75\x76\x76\xd2\xfa\xfa\x7a\xd1\xa9\x88\xed\x2d\x31\xf3\x13\x4b\xc3\x96\xc2\xd3\xdd\x61\xfb\x1f\x0b\x9c\x78\xb7\x6d\xdb\xb6\xa8\x7c\x16\x51\xd0\xec\xec\x2c\xbc\x5e\xaf\x26\x9b\x0b\x13\xc0\xca\x14\x64\x28\x12\x87\x2b\x2f\x36\x44\xed\xfc\xa2\xdf\xef\xa7\xeb\xe9\x8e\x1e\x18\x18\x40\x67\x67\x67\xce\xe3\xf1\x0c\x4d\xb5\x9b\x9e\xa1\x45\x58\x3c\x13\x85\x7b\xe7\xc7\x59\x37\xa1\x20\x4e\x80\x99\x4d\x86\x63\xd3\x2d\xc6\xbf\x02\xc1\x70\xe4\x7a\x44\xa9\xb0\x48\x68\xa1\x50\xc0\x9b\x6f\xbe\x89\xea\xea\x6a\xad\xa1\xa1\x41\xf3\xfb\xfd\x29\xc6\x18\x22\x91\x08\x86\x86\x86\x90\x4a\xa5\x20\x49\x12\x1c\x0e\x07\x35\xab\x42\xd0\xa1\x88\x4d\x73\x79\xbe\xd1\x6a\x32\x14\x89\xcb\x9b\x35\x74\x8d\x1b\xd5\x21\x00\xa8\xca\x8a\xdb\x28\x87\xb4\x52\x78\x87\x2a\x36\x59\x34\x21\xc8\x1c\x8e\x88\x24\x49\x4c\x51\x94\x1b\x29\x28\x9f\xcf\x53\xce\xb9\x12\xb3\xea\x57\x81\x95\x29\x88\x10\x02\x7f\xda\xb8\x7d\xda\xa6\x1d\xf3\xf9\x7c\x5a\x24\x12\x59\x37\x4b\x88\x31\x86\xb7\xde\x7a\x8b\x3e\xf1\xc4\x13\xb2\x28\x8a\xbd\xe3\x5b\x4c\xdf\xcc\xba\x85\xdf\xf1\x0f\xaa\x47\x0d\x2a\x77\x60\x59\x0a\x22\xd0\x2c\x24\x7e\x7d\xb3\xe9\x17\xb2\x5f\x7c\x16\x84\xf4\x65\x32\x99\xd4\xaf\x7e\xf5\x2b\x70\xce\x6f\x48\x5b\x34\x1a\x45\x34\x1a\x5d\x36\x7e\x45\x51\x00\x80\x72\xc2\x8d\xf3\x75\xbe\xc2\x39\x13\x3a\xe5\xf3\xad\x39\x6f\x60\xf3\x7b\x89\x97\x0b\xaf\x18\x58\x4a\x31\x30\xbd\x14\xc7\x7c\x9a\x16\x59\x41\xa5\xc3\x29\xf4\x59\xab\x36\xc4\x08\xd7\x09\xc8\x42\x0f\xa9\x1c\x81\x02\xa8\x93\xa5\xdd\xe7\x03\x59\x4b\x5d\x5d\x5d\xe6\xc2\x85\x0b\xeb\x62\x05\x95\x71\x22\x91\x60\xaf\xbf\xfe\x3a\x1e\x7d\xf4\xd1\xa8\x28\x8a\xa7\xe3\x41\x43\x4c\xf6\x8b\xc7\x1d\x51\xfd\x41\x7b\x4c\xef\x94\xb2\xac\x9a\xea\x30\x16\x45\xa2\xa9\x36\x1a\x49\xf9\x84\x8b\x29\x9f\x78\x9c\x0b\xe4\x3c\xe7\x7c\x34\x97\xcd\xa6\x5e\x7e\xf9\x65\x96\xc9\x64\xd6\x3c\x18\x94\x24\x89\x02\x60\x39\x03\x93\x63\x36\x6d\xd8\x9f\x36\xb5\x63\x19\x91\xcd\xfa\xd4\xb4\x5d\x1b\xc4\xdc\x33\x90\x46\xed\xda\x50\xc2\xac\x4f\x78\xf2\x86\xe0\x72\xe1\xaf\x7a\x73\xa7\x0b\x94\xc9\x45\xbd\x58\x8e\xef\x46\x2b\x48\x96\x65\x10\x42\xf4\xac\x91\x4d\x25\x25\x3d\xe2\xae\x50\xb6\x64\x20\x86\x7a\xd9\xb4\x9b\x32\xb8\xaa\xab\xab\x63\x15\x8b\x02\xd6\xd5\x22\x7a\xee\xb9\xe7\xd8\xc3\x0f\x3f\x1c\xaf\xae\xae\xce\x31\x91\x4c\xc8\x01\xc3\x69\x39\x60\xf0\x02\x70\xa0\x34\x23\x06\x20\x05\x20\x0a\x20\x06\x40\x9e\x9c\x9c\xd4\xde\x7d\xf7\x5d\xa4\xd3\xe9\xdb\x8a\x57\x51\x14\x24\x12\x09\xe6\x76\xbb\x63\x27\x9a\xe5\x1f\x7d\xf6\xbc\xef\x1b\x06\x46\xe7\xb7\x62\x11\x42\x50\x24\x9c\xbd\xdb\x24\xff\x2d\xa3\x98\x62\x6c\xae\x55\x83\xd2\x89\x37\x37\xc7\xff\xcf\x67\x2e\xfa\xbe\x2e\xe9\x74\x7e\x31\x03\x08\x10\xb5\x69\xe1\x93\xa1\xe4\xf7\x08\x21\xb1\xd1\xd1\xd1\x45\x0e\xcc\xf2\x59\x11\x1c\x00\x57\x14\x85\x77\x76\x76\x42\x14\x45\xc9\x97\x35\xee\xf7\xa5\x0d\x4d\xcb\x51\x10\x08\x20\x32\x62\x9d\x74\xa9\xa7\xb2\x36\x0c\x46\xa3\x51\xbd\x64\x3b\xf3\xf5\xbc\x54\x55\xe5\x03\x03\x03\x3c\x91\x48\x14\xad\x56\x6b\xc6\x66\xb3\xc5\x39\xe7\x11\x00\x61\x42\xc8\x08\xe7\x7c\x84\x10\x32\xc6\x18\x9b\x99\x9e\x9e\x4e\xf7\xf4\xf4\x14\x4f\x9f\x3e\xcd\x34\x4d\xbb\xd3\xb8\x51\x5f\x5f\x5f\xc8\x48\x2c\x3e\xe1\x52\x93\xce\xbc\x58\x67\x2e\x50\x2b\x23\x9c\x47\x6d\xda\xc4\x5b\x6d\x89\xef\x8f\x7a\x94\x9f\x72\xf0\x70\x6f\x6f\xaf\x36\x36\x36\xc6\x83\xc1\xa0\x9a\x91\xd8\xcc\x90\x37\x3f\x4e\x39\x71\x08\x1c\x62\x4a\xd2\xe5\x8b\xb5\xd9\xf7\x7f\xd5\x96\xf8\x5f\xaa\x81\xf7\x30\xc6\x66\xdf\x7e\xfb\x6d\x56\xa2\x20\x0e\x80\x2f\xdd\x29\xcf\xa6\xa6\xa6\x58\x73\x73\x73\x2a\xec\x56\xce\xdc\x13\xb1\x1d\x5c\xa8\xc9\xc5\x14\x44\x40\xd0\x3e\x6d\xfd\xf4\xb8\x5b\x7d\xad\xbd\xbd\x5d\x19\x1f\x1f\x9f\xef\x56\x65\x5d\xb8\x4d\x0a\x5a\x8a\x87\x87\x87\xd9\xf0\xf0\x30\x05\xa0\x85\x42\x21\xdd\x66\xb3\xcd\x27\x2b\x93\xc9\xa0\xd4\xaa\xd6\x3a\x30\x5c\x11\x5f\xbe\x7c\x19\xc1\x60\x50\x09\x85\x42\x43\xd7\x9d\xda\x8f\x7e\xbe\x7d\xe6\xa4\xb1\x48\x82\x00\xa0\x09\x3c\x02\x82\x21\x00\xe1\xd8\x4c\x2c\xd7\xd7\xd7\x07\xce\x39\x02\x81\x80\x12\x0a\x85\x86\x64\x8b\x9e\x79\xab\x35\x7e\x86\x80\x78\x00\xe8\xa5\xe3\x16\xc2\x8c\xb1\xd8\x3b\xef\xbc\xa3\x97\x16\x2d\xcf\x97\xd5\xd2\xf3\x82\x88\xd9\x6c\x46\x43\x43\x03\x72\x06\x66\xda\x3e\x65\x7b\x42\xe0\x73\xcf\x81\xa5\x14\x04\x00\x4e\x45\xac\xed\xf7\x67\x7f\x21\xb9\x6c\xb3\x03\x03\x03\x4c\xd7\xf5\x9b\x39\x8f\xc9\x7a\x60\x59\x96\xe7\x1f\xa2\xd1\x68\xb4\x7c\x6c\xc1\xcd\xe2\xbd\x2d\x3c\x32\x32\x02\x8b\xc5\x52\xf0\x78\x3c\x49\x42\xc9\xf5\x22\xc5\x60\x91\xe2\x0a\x08\x86\x18\x63\x91\xa1\xa1\x21\xe5\xd8\xb1\x63\x28\x16\x8b\xf3\xe1\x0b\x85\x82\xee\xf5\x7a\x53\x06\x83\x21\x02\x82\x30\x08\x46\x08\x21\x93\x99\x4c\x26\xfd\xd6\x5b\x6f\x15\x47\x47\x47\xb1\x34\xae\x65\x87\x92\x5f\xfd\xea\x57\x8d\x04\xa4\xf3\x89\x0b\xde\xbf\x09\xc5\xcd\x3b\x97\xa3\xa0\xb9\xd5\x89\x1c\xef\x36\x25\xff\xeb\xd9\x60\xea\xdb\x67\xcf\x9e\xcd\xf4\xf6\xf6\xae\xa7\x5f\xe8\x63\x21\x1e\x8f\x87\x86\x42\x21\x78\xbd\x5e\x00\x73\xa6\xfa\xc8\xc8\x08\xe2\xf1\xf8\x8a\x79\x6d\x6c\x6c\xa4\x5e\xaf\x17\x65\x13\x77\x25\xbf\x11\xb0\xc4\x0a\x42\xa9\xeb\x27\x12\x09\xdd\xe3\xf1\xc4\xae\x54\xe7\x4e\x34\x26\xa4\x9d\x73\xcf\x81\xc5\x14\x54\xf6\xa5\x6f\x9f\xb2\x7d\xe1\x42\x20\xf3\xa3\x7b\xee\xb9\x67\xb8\x54\x01\xeb\x4e\x41\xab\xc4\xeb\xe2\x12\x5f\x8a\xe3\xf1\x78\xb9\xb0\x17\x7d\x1f\x0a\x85\x68\x53\x53\x13\xdc\x6e\x37\x05\x80\x74\x3a\xcd\xae\x5d\xbb\x86\x6b\xd7\xae\x61\x6c\x6c\x8c\x8d\x8d\x8d\xad\x4a\xff\x0d\x14\x04\x80\x18\x0c\x06\x04\x83\x41\x9e\x92\x74\xb6\x35\x62\x3b\x62\x60\xd4\xb4\x1c\x05\x11\x02\x98\x74\xe2\xce\x19\x58\x74\xb6\x8a\xf7\x52\x4a\x0b\x25\x7f\x4e\xa5\xce\x79\xbd\x1b\x8c\x57\x8a\x77\x5d\xb1\x28\x8a\xe4\xd0\xa1\x43\xd8\xb9\x63\xa7\x31\x64\xf1\xd5\x6f\xc9\x79\x1e\x6c\x2c\xba\xee\xb1\x7b\x9c\x7a\x6d\x5b\x28\x5b\xdf\x50\xaf\x8f\x8f\x8f\x93\x42\xa1\xb0\x2a\x9d\x8b\xac\xa0\xf2\x35\x3d\x3d\xcd\xbb\xba\xba\x38\x13\x40\x6c\x9a\xd8\x59\x9b\x36\xb5\x2c\x47\x41\xc0\x9c\x59\x56\x9d\x31\x76\xf6\xfb\xb3\x2f\xba\x6b\xbc\x89\xab\x57\xaf\xb2\x92\x4b\x63\x5d\x2d\xa2\x8f\xcb\x75\xf8\xf0\x61\xd2\x10\xac\x77\x1c\x18\x75\xfc\xeb\xc3\x03\x55\x3f\x68\x8b\x59\xbf\xd4\x3c\x6b\xfe\xad\x2d\xd7\x6d\x5f\xb1\x69\x82\x23\x16\x14\xce\x36\x84\x1a\xd5\xfe\xfe\xfe\xe2\x6a\xf4\x2d\x3d\xb2\xac\x3c\xf8\x43\x55\x55\x15\x77\xbb\xdd\x2c\x69\x2e\x92\xad\xd7\x6d\x8f\x13\x90\x85\x19\xc0\x52\xdb\x2b\x63\x03\xa3\x36\xa3\x4e\xa5\x31\xaf\x76\xdc\xe5\x76\x29\x43\x43\x43\x65\x5d\x4b\xf5\xd2\x0d\xc4\x95\x71\x6d\x08\xde\xba\x75\x2b\xe9\xe8\xe8\x90\xb6\x4d\xd9\xbf\x7c\xff\x88\xf3\xdb\x94\x11\xa9\x3c\xe2\x25\x1c\x86\x9a\x8c\xf1\x00\xe5\x84\x45\xfd\xfc\x94\xc9\x64\x2a\x4c\x4c\x4c\xdc\x52\xe7\xb2\x14\x04\x80\xa8\xaa\x8a\xd6\xd6\xd6\xa2\x6a\xe4\x05\x4f\x4e\xdc\xe6\xcb\x1a\xeb\x51\x2e\xfc\x72\xe0\x0a\xec\xcd\x1a\xee\x89\x38\xd4\x73\xf0\x5b\x47\x54\x55\xd5\xa3\xd1\xe8\x3f\x39\x0a\x7a\xe4\x91\x47\xa8\x24\x1a\x6b\x0f\x0f\x54\x7d\x47\xd2\x05\xcf\x52\x9f\x0f\x01\x81\x2f\x6b\xd8\xd2\x5f\x9b\x7d\xde\x51\xed\x99\xbd\x70\xe1\x02\x67\x8c\xdd\x54\x67\xe5\x03\x61\xd1\x35\x39\x39\xc9\xa6\xa7\xa7\x35\xce\xf9\xd4\x07\xf5\xe9\xbf\xd3\x09\xd7\x17\x86\x29\xc0\x52\x2c\x30\x62\xfc\xe4\x55\xcf\xb7\xcc\x1a\x0d\xed\xd9\xb3\x47\x2c\x59\x0d\x77\xb4\x46\xe8\xe3\x76\x59\xad\x56\x6a\x2e\x50\xbf\x4d\x15\x1a\x00\x2c\x3a\xe5\xa5\x8c\x0d\x45\xe2\x72\xe5\xc5\x4e\x51\x14\x45\x5d\xd7\x6f\xa9\x73\x25\xb7\x31\x00\xd0\x73\xe7\xce\x81\x10\x22\xcf\x5a\x0b\x3d\x97\xfd\xd9\xf7\xca\xb4\x53\xae\xbf\xa5\xd8\xa1\x88\x2d\x8f\x5c\xf1\x7c\xcb\x28\x1a\x5c\x87\x0e\x1d\xa2\x26\x93\x69\xcd\xee\xe8\x3b\xc0\xab\x71\x89\xdf\x36\x2e\x6d\x39\xa5\x3a\xe5\xb4\x58\x9e\x31\x5c\x46\x38\x81\x9e\x37\x30\x0d\x00\xad\xaf\xaf\xbf\xa5\xfe\x1b\x0a\xbd\x32\xc0\xf8\xf8\x38\x22\x91\x88\x06\x82\x70\x4f\x63\xea\x07\x79\xb1\x98\x59\x89\x82\xca\x53\x07\x9b\xe2\xd2\xd1\xfb\x87\x9d\xff\xde\x66\xb5\x39\x0e\x1f\x3e\x0c\x83\xc1\xb0\xe1\x85\x53\x71\xdf\x30\x2c\xcb\x32\x18\x63\x4c\x15\xb9\x1c\x76\x2b\xe7\xe7\xf2\xbc\x98\x82\x00\x20\x62\xd7\x86\x64\xb3\x1e\x06\xa0\x27\x93\xc9\x5b\xea\x5f\xd6\x0a\xaa\xbc\xe2\xf1\x38\xe9\xe8\xe8\xd0\x35\x81\x29\x05\x01\xae\x50\x5c\xea\x22\x95\xcd\xbf\xf2\x11\x4b\x00\xc2\x09\xfc\x69\xe3\x9e\x82\xc0\xe4\x54\xad\xe1\x7c\x20\x10\x28\x6f\x5b\xfd\xc8\x2d\x98\x3b\xb9\x38\xe7\xbc\xa6\xa6\x86\x3b\x1c\x0e\x4c\xdb\xb5\x7c\x73\xcc\x7c\xbf\x51\x27\xe6\x4a\xb7\xb3\x62\x60\xb9\xd7\x3a\x66\xff\x7b\xc6\x58\x3c\x9d\x4c\x26\xd3\xbd\xbd\xbd\xb7\xb4\x84\x56\xb4\x82\x4a\xdf\xf1\x5c\x2e\x47\x9c\x4e\x67\xd1\xe3\xf1\xa8\x33\xb6\x42\xa2\x2e\x69\xda\xe7\x54\xc5\xaa\x4a\x2b\x68\x29\x06\x27\xb4\x41\x96\x1e\xcc\x1b\xd8\x4c\xb6\xd6\x78\x29\x18\x0c\x16\xae\x5c\xb9\x52\xb6\x00\xfe\xd1\x5a\x41\xf9\x7c\x1e\xad\xad\xad\xba\x66\xe0\xf2\xa0\x2f\x3f\x26\x70\xe2\x34\xea\xd4\xa2\x8a\x4c\x19\xf6\xe5\xfb\xdf\xd8\x9c\xf8\xce\xac\x4d\x7f\x1d\xc0\xd4\xa9\x53\xa7\x0a\xb3\xb3\xb3\xb7\x6f\x05\x55\x7e\x3f\x35\x35\x85\x8e\x8e\x8e\x82\x60\x10\xf3\x53\x4e\x2d\xd5\x31\x6d\xe9\x16\x19\x35\xdc\x9c\x8e\x88\xd0\x18\x97\x1e\x29\x52\x9e\x49\x05\x0c\x17\x5a\x5a\x5b\xf4\xf1\xf1\x71\xae\xaa\xea\xc7\xd2\x0a\x2a\xbd\x1e\xe5\xa6\x61\xd2\xe9\x34\x8a\xc5\x62\xb1\xae\xae\x2e\x53\x10\xf9\xe4\x68\x95\xd2\xfb\x61\x5d\xe6\x9d\xbe\x60\xe6\xe5\x61\xaf\xf2\x0f\x8a\x81\xf5\x00\x18\x1f\x1a\x1a\x52\x7a\x7b\x7b\x57\x17\x6f\xe9\xc3\x4d\xbb\x49\xb1\x58\xe4\xd9\x6c\x16\xa1\x50\x48\x55\x44\x96\xc9\x48\xcc\xd8\x1c\x33\xef\x24\x9c\x54\x2e\x56\x5b\x8e\x8e\x68\xbd\x6c\x7a\xd8\x52\xa0\xf6\x68\x0d\xce\xb6\x6c\x6e\xcd\x27\x93\x49\x2e\xcb\xf2\xc7\x86\x92\x1c\x0e\x07\xe9\xee\xee\xc6\xfd\xf7\xdf\x4f\x5b\x5a\x5a\x78\x36\x9b\x45\x69\xcd\xeb\xb2\xe1\xa7\xa7\xa7\x79\x2e\x97\x63\x5e\xaf\x37\x63\x30\x18\xa6\x09\x21\x63\x00\x46\x39\xe7\xe3\xba\xae\xcf\x9e\x3d\x7b\xb6\xd0\x5f\x59\x6d\x67\x00\x00\x07\x76\x49\x44\x41\x54\xd3\xd3\xb3\xea\xfc\xdd\x92\x82\xca\xff\x8b\xc7\xe3\xcc\xe5\x72\xb1\xaa\xaa\xaa\xdc\xac\xa5\x10\x33\xe9\xb4\xc1\x9f\x32\x35\x2d\x47\x41\x95\x98\x70\x42\x6a\x32\xc6\xbd\x75\x49\x53\xd7\x75\xaf\xfe\x41\xb0\x6d\x53\xca\xe5\x72\xb1\xa9\xa9\x29\x52\x2c\x16\x3f\x52\x0a\x6a\x6f\x6f\x27\x87\x0e\x1d\xa2\x3e\x97\xc7\xfd\xd0\x68\xd5\x1f\xc2\x6e\xca\x56\x77\x34\xc6\xe2\xf1\x38\x97\x65\x79\xc5\xdf\xc6\x62\x31\x72\xe9\xd2\x25\x9e\x48\x24\xf4\x58\x2c\xa6\x46\x22\x11\xe5\xf2\xe5\xcb\x85\xf7\xdf\x7f\x9f\x4f\x4c\x4c\x60\x2d\x69\x58\x15\x05\x95\x71\x38\x1c\x46\x73\x73\xb3\x2e\x49\x52\x76\xdc\xa5\x4c\xd5\x64\x8c\x5b\x5d\x79\x43\x35\x29\x17\x78\x39\xe0\x0d\x1d\x8d\xc0\xa9\x8a\x4d\x1d\xd3\x96\xcf\x66\x4c\x2c\x82\x7a\xfb\x68\x6b\x5b\x5b\x41\xd7\x75\xc4\x62\xb1\xbb\x4e\x41\xb5\xb5\xb5\xe4\xe0\xc1\x83\xe8\xec\xe8\x94\x6a\xf2\xd2\x8e\x4f\xf7\xfb\xfe\xa6\x39\x66\xf9\x4a\x20\x65\xda\x77\xc5\x9f\x7b\x2d\xd0\x58\x9f\xba\x76\xed\x1a\x34\x4d\x5b\x51\x0f\xe7\x1c\x89\x44\xa2\xec\xed\x44\x22\x91\x28\xbf\x06\x65\x4d\xe9\x59\x15\x05\x95\x2f\xce\x39\x8f\x44\x22\x68\x6e\x6e\x56\xa8\x28\xa4\x47\x3d\xca\xf5\xa0\x6c\xda\x61\x57\x45\xd7\xbc\xca\x25\x74\xc4\xc1\x51\x3e\xcd\x4f\x64\xc4\xde\x32\x6b\xfe\x4c\x4d\xca\xd8\x91\x74\xe1\x8a\xaf\x25\x28\x37\x35\x35\xb1\x42\xa1\xc0\x4b\x1e\xc7\x0d\xa5\x9b\x40\x20\x40\xf6\xed\xdb\x87\x7d\xfb\xf6\x19\xab\x4c\xf6\x9a\xfd\x63\xce\x7f\x73\x70\xd0\xfd\x1d\xa7\x2a\xb6\x12\x00\xe6\x02\xf5\xdb\x34\xd1\x3d\x5a\xad\x9d\xf0\xfb\xfd\xf9\x81\x81\x81\x0d\x4f\xd3\xaa\x29\xa8\x8c\xf3\xf9\x3c\x64\x59\xe6\x4d\x4d\x4d\x79\x26\x12\x79\xc4\x93\x8f\x34\xc8\xd2\x4e\x8b\x26\xd8\x97\xa5\xa0\xb9\x3f\x20\x28\x1f\x75\x46\x88\x3b\x6f\x68\xbf\x67\xda\xfa\x3b\x76\x45\xa8\xce\x56\x09\x23\x81\xd6\xc6\x4c\x7b\x7b\x3b\x37\x9b\xcd\xc8\xe5\x72\x44\x51\x94\x75\xa3\x20\x93\xc9\x44\x5b\x5a\x5a\xc8\x27\x3e\xf1\x09\xd2\xd5\xd5\x65\xac\x76\x56\x55\x6d\x9f\xb2\x7d\xf1\xd1\x81\xaa\xbf\x0a\x25\xa4\x27\x28\x23\xa6\x79\x7b\x9e\x03\xbe\xac\x61\x6b\xda\x54\x0c\x67\xab\xc5\x4b\x26\x93\x49\x5f\x8d\x3f\xe7\x4e\x70\xb9\x4b\x2c\x1d\x90\xdd\x52\x36\x6f\xde\x8c\x07\x1f\x7c\xd0\x08\x20\x68\xd6\xe8\xc3\x47\x2f\x7a\xbf\xee\x4f\x1b\x43\xcb\x1d\x61\xcc\xb1\xd0\xf7\x96\x62\x46\x78\x66\xc8\x9b\x7b\xfe\x42\x6d\xf6\x7b\x53\x4e\xf5\x3c\xa3\xc8\xc9\xb2\xac\x87\xc3\x61\x16\x89\x44\x10\x89\x44\xa0\xaa\xea\xaa\x0f\x77\x15\x45\x11\x2e\x97\x0b\xf5\xf5\xf5\xf0\xfb\xfd\xa8\xab\xab\x13\x29\xa1\x46\xa7\x22\x06\x3b\x22\x96\xdf\xde\x7a\xdd\xf6\x65\x4b\x41\x08\xdd\x98\xca\x05\xd1\x04\x26\xff\xac\x2b\xfa\xd9\x98\xad\xd0\xf3\xe6\x9b\x6f\x6a\x23\x23\x23\xab\x2e\x97\xb5\xca\xcd\xd2\x71\x4b\xd9\xbb\x77\x2f\xdd\xbe\x7d\xbb\x11\x40\xd0\x54\xa4\xf7\x1f\xba\xe2\xf9\x5a\x73\xcc\xbc\x8d\xcc\x6f\x26\x58\x4c\x41\x73\x31\xae\x84\xc1\x64\xb3\x7e\x7e\xb8\x2a\xff\xca\x48\x95\xf2\xfa\xb4\x5d\x1b\xd0\x28\xcb\x10\x42\xf4\x5c\x2e\xc7\x92\xc9\x24\x53\x55\x15\xf1\x78\x1c\x8b\xf7\xb9\x01\x0e\x87\x03\x46\xa3\x11\x55\x55\x55\xd4\x6c\x36\x53\x51\x14\x29\xe1\x90\x5c\x79\x31\xd0\x18\x97\x1e\x68\x89\x99\x3f\x5d\x9b\x32\x3d\x20\x70\x62\x03\xb0\xaa\x77\xcb\xc4\xac\x5a\xdf\xcf\xba\xa2\x9f\xcb\x30\x35\xfc\xfd\xef\x7f\x7f\xdd\x96\x5f\x2e\x95\xa5\x3d\xa0\x32\x67\x14\xab\x98\x39\xea\xea\xea\xc2\xee\xdd\xbb\x45\x4a\x69\x80\x32\xec\x3e\x30\xea\xfc\x97\xbb\xc6\xed\x07\x29\x16\xba\x75\xe9\x60\x95\xb9\x8f\xab\xc2\x9c\xa9\x22\x9b\x9a\xb1\x15\xfa\xa6\xed\xda\xf9\x59\x4b\xa1\x3f\x69\xd6\x47\x33\xc6\x62\x44\x15\x59\xa6\x20\x70\x9d\x97\x96\xd0\x0b\x8c\x88\x46\x9d\x48\xe6\x02\xf5\x38\x15\xb1\xc1\x9d\x33\xb4\x55\x67\x0c\x5b\xfd\x69\xd3\x4e\xbb\x2a\xb4\x11\x0e\x89\x80\xac\xfd\xe5\x3e\xe0\xb8\x5c\x93\xfb\xfe\x1b\xed\xf1\x3f\x3e\x7f\xfe\x7c\xa6\xa7\xa7\xa7\x5c\x2e\xeb\x3a\xe3\xb6\x74\x75\xf4\x72\xbe\xa1\x9b\xe2\xbe\xbe\x3e\xa4\xd3\x69\xbd\xbb\xbb\x7b\x0a\x82\xf0\xde\xaf\x37\x25\xe5\x88\x5d\x1b\xfd\xe4\x55\xf7\xd3\x96\x82\x60\xbb\x3d\x3b\x85\x50\x49\x17\x82\xf5\xb2\x10\x0c\xca\xd2\x91\x85\x87\x13\xd7\x39\xa0\x30\x0a\x85\x83\xeb\x00\x28\xe5\xc4\x48\x38\x2c\x04\x30\xde\xec\x04\xf7\x95\x36\x65\xac\x84\x15\x91\x65\xc2\x6e\x25\x0c\xc0\x58\xde\x1b\x70\xb3\x72\xb8\x5d\xbc\x26\x2b\x68\xa5\x2b\x91\x48\xf0\xc9\xc9\x49\xde\xd8\xd8\x98\x17\x45\x31\x1e\xb7\x14\x86\xaf\x56\xe7\xc7\xdc\x79\xb1\xc1\x95\x17\xbd\x73\x4f\xe6\x5b\x51\xd0\xaa\x30\x25\x1c\x46\xca\x61\xa1\xa0\x36\xca\x60\xa5\x20\x12\x38\x84\x3b\x79\x8d\xd5\x92\x57\x5a\x61\xcc\xad\x0c\xbe\xb4\x25\xf6\x3f\x27\x5d\xda\x2b\x00\x22\xd7\xae\x5d\xd3\x4b\x13\xeb\x1f\xbd\x15\xb4\x12\xce\x66\xb3\xb8\x76\xed\x1a\xf7\x7a\xbd\x8a\xc3\xe1\x48\x6a\x22\x9f\x18\xac\xce\xf5\xcb\x92\x5e\x08\xa4\x4d\x4d\xc6\x22\x35\xde\x68\x11\xdd\x39\x2e\x37\xfa\xb5\xb6\xf0\xe5\x70\xce\xc8\x32\xc7\x5b\xe4\xe7\xdf\x6b\x4e\x7e\x47\x11\xd9\x09\x42\xc8\xd8\xe4\xe4\x64\xfe\xf8\xf1\xe3\x65\xea\x58\x77\x2b\x68\x4d\x03\xb1\x5b\xe1\x42\xa1\x80\xc1\xc1\x41\x10\x42\x0a\x35\x35\x35\x69\x42\x49\x24\x66\x2b\x5c\xed\xf7\x67\x2e\x81\xc0\xea\xcb\x1a\x02\x02\x27\x02\xa9\x88\xe1\x8e\xf1\x2a\x0a\xf6\x56\x58\xa3\x4c\xeb\xab\x4b\xff\xfa\xd5\xce\xf8\x9f\x5f\x77\x6a\x2f\x80\xa0\x8f\x73\x1e\x39\x77\xee\x9c\x7a\xfc\xf8\xf1\x35\x97\xc3\x5a\xf0\x1d\x59\x41\x37\x13\xaf\xd7\x4b\xef\xbd\xf7\x5e\xd4\xd4\xd4\x48\x84\x10\x2f\xe7\xbc\xc5\xa1\x8a\x7b\x77\x4e\xd8\x3f\xdd\x19\xb1\xee\x34\xea\x44\xba\x43\x3a\x02\xca\x2f\xeb\xbc\x4d\xda\x51\x05\xa6\x0d\xd4\x64\x7b\xcf\x06\xd3\x2f\xa5\xcc\xc5\x1e\xce\xf9\x30\x21\x24\x1a\x8b\xc5\x94\x13\x27\x4e\x20\x16\x8b\x6d\xf8\x3a\xa7\x3b\xb6\x82\x6e\x86\x09\x21\xb4\xa3\xa3\x03\xbb\x76\xed\xa2\x66\xb3\xd9\x02\xc0\x0b\x8e\x26\x4b\x81\x6e\xeb\x8c\x58\x1f\xb9\x27\x62\xdd\xeb\xca\x8b\x1e\x52\x3a\x97\x6e\x6d\x96\x52\x09\x93\xb5\x15\x3a\x07\x47\x4a\x2a\xca\xfd\xfe\xec\xe9\x7e\x7f\xe6\xcd\xac\x91\xf5\x81\x60\x14\x40\x54\xd3\xb4\xdc\x07\x1f\x7c\xc0\x2e\x5d\xba\x54\x5e\xd6\xbe\x6e\xd6\xce\x4a\x78\x69\x05\x6c\x88\x18\x0c\x06\x6c\xdb\xb6\x0d\xf7\xdc\x73\x0f\x95\x24\xc9\x02\xc0\x05\x20\x48\x38\x9a\x02\x49\xd3\xbe\xb6\xa8\x65\xef\xa6\xb8\xd4\x6e\x57\x05\xc7\xdc\xba\xff\x95\x07\x6e\xcb\xe1\x5b\x09\x07\x47\xc6\x58\x4c\x8d\x7a\x94\xc1\xc1\xea\xdc\xe9\x09\xa7\x7a\x8a\x53\x0c\x03\x98\xc0\xdc\xfb\x6b\x72\xfd\xfd\xfd\xec\xfc\xf9\xf3\xa8\x58\xcf\x73\x57\x64\xc3\x28\x68\x25\xd9\xb5\x6b\x17\x6d\x6b\x6b\xa3\x36\x9b\xcd\x48\x08\xb1\x71\xce\xbd\x00\x02\x22\x27\x0d\x55\x59\x43\x47\xbd\x2c\x75\xd6\x26\x8d\x4d\xd5\x19\x63\xc0\xaa\x09\x36\xca\x41\xe7\x4d\x83\xd5\x50\x10\x38\x38\x01\xcb\x1a\x8b\x99\x99\xb9\x97\xc1\x8d\x8e\xbb\xd4\x8b\x31\xab\xd6\x5f\x14\x30\x01\x60\x8a\x73\x1e\x23\x84\xa4\x72\xb9\x9c\x76\xf9\xf2\x65\xb6\xd1\x2f\xea\xb9\x99\x6c\x28\x05\x2d\xa3\xb7\xac\x13\xcd\xcd\xcd\xb4\xad\xad\x6d\xce\x55\x40\xa9\x11\x40\xb9\x67\x78\xc0\xe1\xa5\x1c\x5e\xa9\x40\xab\x5d\x8a\x58\xef\x50\xc4\x6a\x87\x22\x78\xa4\x82\x60\x33\xe9\x54\x12\x19\x31\x0a\x1c\x94\x01\xac\x28\x70\x5d\x11\x99\x52\x3a\x42\x27\x9e\x32\xeb\x51\x59\xd2\x27\x73\xc6\x62\x84\x11\xc4\x40\x10\x03\x10\xe3\x9c\xa7\x08\x21\x19\xc6\x98\x36\x39\x39\xa9\x0f\x0e\x0e\x62\x64\x64\x04\xa5\x8d\x0d\x1b\x4e\x35\x2b\xe1\xbb\x42\x41\x37\x13\x93\xc9\x84\x50\x28\x84\xc6\xc6\x46\xd4\xd6\xd6\x52\x93\xc9\x24\x62\x6e\xf3\x45\xb9\x52\xa4\x8a\xbb\x84\xb9\xf5\xac\x62\x45\x9a\x75\xcc\x6d\xd4\xd0\x30\xf7\xe2\xb7\x5c\xe9\x52\x4a\x97\xa6\x69\x9a\x3e\x35\x35\xc5\xc6\xc6\xc6\x30\x3a\x3a\x0a\x55\x55\xef\x62\x0e\x6f\x2e\x77\x9d\x82\x6e\x25\x3e\x9f\x8f\xfa\xfd\x7e\x78\xbd\x5e\xb8\xdd\x6e\x58\xad\x56\x5a\xda\x36\x44\x09\x21\x94\xf3\xb9\x03\x08\x4a\x98\x95\x28\x88\x11\x42\x18\x00\xa6\xaa\x2a\x4b\xa7\xd3\x2c\x91\x48\x20\x16\x8b\x21\x12\x89\x60\xb5\x2f\xe4\xf9\x28\xe4\x23\xa3\xa0\xb5\x62\x9f\xcf\x47\xe7\x8e\x67\x03\xaa\xaa\xaa\xe6\x13\x99\x4c\x26\xa1\xeb\x3a\x74\x5d\x47\x32\x99\x44\x69\x5d\xea\x47\x46\x29\x6b\xc5\x1f\x39\x05\xfd\x46\x7e\x23\x1f\x0b\xa1\x58\xd9\x13\x4a\xd7\x09\x63\x83\xf1\x7a\xa5\xf3\xae\xe2\xff\x07\x59\x1a\x81\xc4\xe6\xd3\xe7\x74\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x57\x79\xe4\xe3\xbb\x27\x00\x00") + +func web_uiV2AssetsFavicon96x966f8f8393df02b51582417746da41b274PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsFavicon96x966f8f8393df02b51582417746da41b274Png, + "web_ui/v2/assets/favicon-96x96-6f8f8393df02b51582417746da41b274.png", + ) +} + +func web_uiV2AssetsFavicon96x966f8f8393df02b51582417746da41b274Png() (*asset, error) { + bytes, err := web_uiV2AssetsFavicon96x966f8f8393df02b51582417746da41b274PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-96x96-6f8f8393df02b51582417746da41b274.png", size: 10171, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsFaviconIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x0b\x50\x93\xd7\xba\x3f\xfc\x1a\xd3\x48\x29\x07\xa8\xa5\xd4\x5a\x04\x44\x84\x00\xe1\x16\x62\x08\x21\x24\x10\x20\xdc\x62\x80\x00\x81\x04\x08\x49\x48\x56\x20\xdc\x21\x84\x10\xee\xd1\x5a\x6b\xbd\x15\x2f\x6d\xad\xf5\xd2\x6d\x6d\x6b\xdd\xd6\x5a\xab\x6e\xb7\x5a\x8e\xb5\x6a\xbb\xad\x5a\x4b\x9d\x4e\xbf\x4e\x87\xd3\xd3\xe9\xde\xd3\xe9\x78\x3c\x4e\x8f\xc3\xf1\x30\xbe\xdf\x3c\x6f\xf2\x62\x08\x09\x06\xd4\xb6\xfb\x3f\xfb\x99\x59\xb3\xde\x24\xef\xba\x3c\xcf\x7a\xd6\xef\x79\x9e\xb5\xd6\xfb\x06\xc3\xe6\x61\x8f\x61\xfe\xfe\x90\x87\x62\x75\x54\x0c\x93\x61\x18\xb6\x68\x91\xed\xf3\xda\xc7\x31\xec\x0c\x15\xc3\x42\x43\x6d\x9f\xdf\xf1\xc7\x30\x91\x2f\x86\x25\x24\xd8\x3f\x2f\xc7\xb0\x1b\xc1\x18\x96\x9e\x6e\xfb\x4c\x17\x62\xd8\xf6\x2c\x0c\xa3\x63\x18\xe6\x8f\x61\x58\x28\x66\xfb\x7e\x36\xf4\xd8\x63\x8f\x51\x82\x82\x82\x68\x91\x91\x91\xbe\xcb\x96\x2d\xf3\x5e\xb8\x70\x21\xc5\x93\x72\x8f\x3f\xfe\x38\x25\x73\x45\x21\xb7\x43\xf0\xe6\xfe\x3e\xe6\xd9\x1f\x87\x62\x2e\xdf\x1e\x8c\xfd\xfc\x96\x85\x73\xec\x92\x9a\x3f\x60\x5c\x16\xb6\xdc\xd7\x5d\xd9\xa7\x9f\x0e\xa4\x35\x08\x86\x37\x5b\xe9\x5f\x4d\x0c\x45\x5f\xb9\xd1\x92\xf4\xd6\xfe\xaa\xd8\x35\x56\x75\xfc\xa6\xf5\x96\xa4\x93\xe7\xac\x91\x5f\xe3\x3d\x9c\xe3\xe7\x9f\x7a\xea\xa9\x69\x7d\x79\xe2\x89\x27\x28\x4d\xfc\x57\xb6\xc3\x3d\x75\xcc\x57\xb7\x07\x3f\x1b\xe6\xef\xf8\xfb\x82\x05\x0b\x28\xa9\x91\x12\xae\x20\xaa\x24\x1d\x78\x8b\x88\x88\xf0\xa1\xd1\x68\x93\xf5\xe4\xb3\xab\x72\xa1\xac\x8e\x35\xbc\x1e\xee\x9d\x89\xc7\xa4\x68\x5e\xf8\x20\xe3\xd2\x2d\x76\x74\x3a\x9d\x6c\xdb\x9c\x72\xe4\x54\x7f\xc2\xa7\xdf\x05\x3e\xbd\xc8\x6b\xa6\xb2\xf3\xe6\xcd\xa3\x44\x46\xd0\xbd\xf2\x63\x90\x2c\x7c\x59\x04\xdc\x4b\x89\x08\xa7\xfb\x5b\xa3\xae\x8d\xab\x56\xac\x1d\x74\xbc\x97\x1e\x1e\xb3\xb8\x84\xdb\x64\xcd\xe1\xc8\xa4\x5e\x5e\x5e\x14\xe8\x57\x62\x14\x27\xb4\x97\x75\xfa\x1b\x75\x61\xbb\xa8\x27\xf9\xc4\xd5\xd8\x88\xa4\x20\x76\x54\x06\x63\x55\xe4\x75\x3c\x2f\x5e\x2d\x25\xcb\x52\xa9\x54\x4a\x25\xdb\x7a\x50\xbe\x64\x3b\x2e\x0f\xde\x36\xb1\x32\x5b\xc6\x32\xa5\xef\x3f\x50\x92\x59\xcb\xab\x8c\x5b\xd5\x9b\x14\x9d\x1a\xa4\x8c\x7b\xd1\xfa\xcc\x53\x8b\x7d\x58\xf4\xf4\x68\x28\x9f\x9f\xa0\x99\x2c\x3f\x7f\xfe\x7c\x4a\x45\xe2\xe0\x01\xa2\xfc\x92\x6d\x78\x26\x77\x65\x42\xeb\x8a\xfd\xfb\x64\x99\x7a\x7e\xbb\xf0\x8d\x57\x73\xf8\x92\x88\x86\x8c\x97\xd7\x2d\x79\x2e\xc4\x37\x2c\x34\xdc\xc7\x4a\xbf\x36\xae\xe5\xbe\x64\x75\xec\xff\x73\xcf\x84\x06\x66\xd3\x35\x16\x4e\x44\xbe\x18\xfa\x03\xdf\x45\x04\xc7\x2e\xee\x59\x71\xf2\x6c\x89\x40\xc7\xef\x4b\xfa\xf8\x52\x44\x48\xec\x22\x18\x07\x13\xfb\xf0\xb1\xfe\xc4\x4f\xbe\x0f\x09\x0e\xf5\x9e\x49\x7e\x44\xbd\x8b\x9f\xf3\x92\xf3\x8c\xc8\xf1\x5e\x41\x4c\x31\x0f\xc6\xaf\x21\x6d\xdb\x56\x3f\x3f\x3f\xea\x4c\xe5\xe3\x97\x27\x87\x0e\xc6\x7c\xf1\x73\xe2\xf2\xd4\x70\x47\x79\xd5\xb2\x36\xac\x86\x3a\x5a\xd3\x76\xbd\x19\x1f\xc3\x5c\x0c\x32\x27\x7f\x0f\x0c\x0c\xa4\x4a\x52\x6b\xc4\x12\x6e\x8d\x08\xc6\xd0\xae\x83\x53\xf4\xc4\xdb\xdb\x9b\xa2\x4c\x5a\x63\xb1\xd2\xbf\xba\x33\x18\xf3\xc5\xad\x2e\xfe\x81\xa3\x8d\xe9\x5b\x36\xb7\x65\xec\xdc\xd1\xc3\x3e\x79\x0d\xea\xee\x66\x1f\x3b\x3b\xd3\x5c\x82\xba\x13\xc2\x78\x74\x94\xb8\x6d\xb8\x3f\xf1\x93\xd1\xa1\xe8\x2b\x37\x07\x19\x97\xfe\x61\x66\x7d\x74\xaa\x28\xa6\x0d\x05\x2c\x0c\x9c\x51\xbf\x1c\x09\xe6\x62\x40\x40\x00\xc5\xdf\xdf\x9f\x02\xe4\xee\x3e\x1c\xc7\xb0\x71\x01\x86\x8d\xf9\x61\xd8\x05\x1c\xc3\xae\xfc\x1f\x86\xed\xc6\x31\x6c\xd7\xff\x60\xd8\xa9\x6a\x0c\x3b\x55\x86\x61\xbb\xff\xc7\xf6\x1d\xfc\x06\xf7\xdc\xf4\xb3\x95\x81\xb2\x30\x09\x16\x61\x18\x96\xe0\x19\xce\x50\x5c\x5c\x3b\xe6\x14\xd0\x3d\xe8\x3b\xcc\x53\xc7\xef\x3d\xb8\x76\x57\x3f\x16\x14\x14\x44\x4d\x17\x64\x04\xd5\xac\x6c\x91\xb6\x14\xae\xb7\xb4\x17\x6c\x5d\xd7\x26\xd9\x3c\xa8\x93\x58\x54\x79\xd9\x62\x7a\x44\x44\x04\x0d\xda\xf5\xa0\xef\x53\x52\x60\x60\x20\xa5\xb4\xa0\x9a\x63\x12\xee\x3b\x38\xc8\xb8\xf4\xeb\xaa\x88\xaf\x71\x98\x4b\xb6\xdc\x76\x6d\x8d\xba\x76\xa7\x3b\xf5\xf0\x79\x75\x61\x87\x6c\xf9\xf2\xe5\x34\x57\xf5\xb8\xea\x3f\x83\x11\xeb\xdd\x9a\x3f\xbc\x6e\x28\xea\xea\xb8\xd5\x5e\xa7\x95\xfe\xd5\x78\x7f\xe2\xd9\x6b\x3d\xec\xbf\x9c\xe9\x65\x9d\xb9\x38\x14\x73\xf9\x17\x6b\xa4\xad\x2d\xc8\x4d\x19\xfb\x0f\x2c\x5b\xb6\x8c\x7a\x3f\xf9\xc4\xc5\xc5\xfb\x98\x32\xde\x3e\x44\x94\x8d\xf8\x1a\xef\x4f\x3c\x77\xbd\x32\xc5\xa2\x8c\xa5\x27\xfa\x03\x4f\x3e\x3e\x3e\x94\x27\x9f\x7c\x92\x12\xb6\x74\x19\x2d\x2f\xa9\x9a\xdf\x95\x72\x98\xb8\xb7\x2e\x7d\x83\xd1\x71\x5e\xb8\x92\xcf\xb3\xcf\x3e\x4b\xed\x10\xbd\xbe\x9d\xec\x53\x0b\xef\x8d\xcd\x61\xa1\xe1\x5e\x33\xf0\x4d\xf1\xf3\xf3\xa3\xe4\xaf\xa8\xe6\x3e\xf3\xcc\x33\xd0\x77\x4a\x64\x64\xa4\x57\x6a\x6a\x6a\xc0\xbf\xfd\xdb\xbf\x4d\x91\x0f\xcc\x8f\xaa\xfc\xc6\x5c\x6b\xe4\xe8\x04\xd4\xdf\xc8\xdf\xbe\x1a\xfa\x39\x1b\x3d\x81\x39\xd1\x99\xb5\x67\xd7\x60\xec\xe7\x37\x25\x42\x39\xd3\x51\x2e\xe1\xe1\xe1\x34\x0b\xe7\xd8\xc5\x55\x11\xd7\x71\x4b\xf2\xf1\x33\x41\xcf\x05\xcd\x88\x25\xae\x08\x78\x31\xa5\xbd\xfb\x26\x60\x62\x5e\x4a\x39\xd3\x51\x3e\x85\x42\x05\xdb\x6a\x97\x4b\x41\xaa\x82\x3d\x93\x4c\x5c\x25\xc0\x29\xd0\xd5\x58\x46\x1c\x2d\x3e\x9a\xe5\x1b\x19\x19\x49\x85\xf6\xc8\x79\xd3\x92\xbb\xa5\x1f\x74\xae\x97\x75\xfa\xf2\x92\x25\x4b\xa8\xce\x63\x0f\x63\x27\xe0\x67\x04\x95\xe6\xd5\x14\xe5\x66\x8b\xa3\xed\x58\x34\x29\x9f\x8c\xd4\x9c\xd0\x6e\xee\x91\x8b\xad\xe2\xcd\x83\x52\x71\x45\x98\x39\xed\xd0\x88\x41\xb2\xda\x00\x36\x0e\xee\x35\xf3\x0f\x1e\xb2\x46\x5c\xc7\x8d\x59\x7b\x86\x49\x4c\x77\x24\x71\x76\x09\x53\x11\xb1\xe9\xe7\x8a\xa0\x6d\xb8\x3c\x74\xcb\xb8\x22\xdf\xa0\x04\x5d\xe2\x72\x53\x03\x52\x38\x29\x0b\x4b\x33\x10\x9f\xb0\xe3\xec\x93\xe7\xeb\x8b\x06\x24\xa0\x7b\x96\x94\x8f\x4e\x82\xce\x3d\xfb\xec\xb3\x14\x0b\xe7\xf8\x39\x18\xd7\x06\xd1\x06\xa3\x33\xef\x04\xbe\xa6\x0d\xee\x04\x9b\x54\x11\x64\x4b\x95\x8c\x97\x46\xe5\x15\x95\x0b\xfb\x13\x3f\xf9\xa1\x2f\x69\xe4\xbb\x74\x41\x86\x4f\x1e\xb3\x9a\xcf\x8c\xe2\x2e\x0e\x08\x08\xa0\x16\x32\xeb\x24\x49\x51\xa9\x41\x50\x7e\xd1\xa2\x45\x94\x1e\xa2\xfe\xeb\x78\x63\xce\x46\xa3\xf3\x9c\x00\xfb\x5a\x9d\x3a\xb8\xc3\x56\xff\x36\x5b\xfd\x31\xeb\xaf\xad\x2c\x28\xf4\x1d\x88\xfb\xec\x87\x81\xf8\x0b\xdf\x49\xc4\x85\xfe\x86\x22\x6b\x5d\x45\x81\x86\x1b\x1d\x1d\xed\x55\x2b\xe9\x94\xe5\x0a\x57\x86\x03\xbe\xfa\xfa\xfa\x82\x7c\x0e\x40\xfd\xc6\xec\xdd\x5b\x01\xc3\x9c\xe5\x93\xc6\x12\x31\x14\xcb\x86\x7f\xb6\xd9\xe5\xad\xe3\x45\x69\x5a\x19\x8c\xdb\xf2\x30\xba\xf7\xb2\xd0\x08\xef\xb2\x0c\x7d\x16\xc8\xa7\x77\xc5\xa9\xab\x4d\xb2\xa1\x22\xc2\x66\xa4\x7e\x70\xf2\x99\x67\x9e\x21\x64\xd0\x90\xb9\xd9\x6c\x8d\xf8\x1a\xef\x65\x9f\xbc\x6a\xc7\x12\x47\xfd\xa6\xc0\xfc\x88\x5a\x1e\xbb\x50\x10\x57\x28\x62\xc6\xa4\x84\xda\x7d\x99\xc9\x14\xbd\x3c\x7e\xa1\x39\xf5\xd0\x7e\x6d\xfa\x6a\x2d\x7f\x85\x28\xa8\x27\xf9\xf8\xc9\xda\x0c\xab\x86\xf4\x85\xb2\x39\xc5\x71\xa4\x7e\x96\xe5\x68\xf8\xb3\xc0\xde\xc9\x6b\xa8\x8b\xc5\x5a\xe1\x9b\x9b\x25\x8e\x08\x09\x09\xa1\xd8\x71\x95\xf8\x1d\xc6\xc0\xc2\x39\x7e\x06\xf0\xcc\xc2\xfd\xf0\x5c\x6c\x6c\xec\x7d\xed\xbd\x33\x81\x2c\xba\x04\xef\x1e\xb2\xd2\xaf\xdd\x29\x16\xaa\x78\x8e\xf3\x0b\xd2\xca\xd4\x6a\x8e\x95\x3e\x7a\x07\x78\x68\xcb\x79\x65\x78\xd9\xb2\x65\x33\x61\xee\xb4\x04\xba\xde\x26\x78\x63\xfd\x20\xe3\xd2\x4f\xc2\x15\x2b\xe9\xce\xfc\x81\x1e\x36\x08\x86\xfb\x49\x39\x19\xb3\x77\xed\xe1\xa5\xa6\x05\xd8\x71\x71\x9a\x4c\x88\x31\x89\x8a\xf2\xaa\x95\xb6\x8b\x01\xd7\xe0\x7b\xd0\x95\x90\x90\x10\xaa\x83\x5d\x76\xb6\x2b\xd4\x36\xde\x9e\xad\x24\x3e\xf7\x25\x8d\x8c\x35\x48\xd6\x18\x45\x99\xb9\xe1\xf1\xf1\xf1\xde\x30\xf6\xa0\x7f\x69\xbc\xb4\x40\x4d\x61\x87\xac\x9b\xf7\xfe\x59\xb8\xb7\x29\x7f\x43\xbf\xd3\x9c\x76\xb6\x2f\x93\x04\x3e\x4c\x2d\x7f\x4d\xe3\x50\xd4\x97\xbf\x92\x36\x6b\x28\xea\xea\x9d\x5e\xd6\xe9\xef\x2d\xdc\xa3\x97\x7b\x92\x4f\x5c\x1f\x8c\xfd\xdb\x2d\x47\xfb\x62\xe4\xbd\xbd\x0b\xe6\xe9\x0c\xc3\x33\xc5\xfe\x02\x46\x70\xe2\x32\x82\x5b\x79\xbb\x87\xc1\xe7\xb2\xda\xed\xa3\x95\xb4\x8f\x11\xd7\x09\x9b\xd6\xcd\x39\x7a\x54\xcc\x56\xa7\x93\x58\x36\x83\x8e\xb9\xc5\xc5\x65\x61\xcb\x69\xc2\xf8\x52\xb6\x8c\xd5\xa9\xac\xe1\xac\x6a\x56\xac\xe8\x41\xf9\x89\x6a\x51\x1c\x3d\x69\x21\x60\x90\x07\x63\x3f\x13\x2f\x0f\x4c\x38\x8e\x63\xf8\xdf\x71\xec\x2e\x86\x63\xe3\x98\x00\xbb\x79\x77\x00\xfb\x0f\x1c\xc7\xfe\x13\xff\x3b\x76\x01\xff\x3b\x76\x05\xc7\xb1\x2b\xf8\xdf\xb0\x4d\x17\x3e\xc3\x76\x5b\x07\x88\x04\xd7\x57\xf0\xff\x8f\xf8\x0d\xee\x81\x7b\xff\x1b\xc7\x89\xb2\x13\x98\x80\xa8\x8b\xa8\x17\xc7\x09\x3f\x0c\xbc\xaf\xf4\x39\xc4\x7b\x7f\x54\x82\xb9\x9e\x90\x90\x40\xcb\xc8\xc8\xf0\x15\x8b\xc5\x8b\xa4\x52\x69\x10\xe4\x42\xa1\xd0\x1f\xbe\xb7\xe3\xe2\x43\x25\xc0\xaf\xc4\xc4\x44\x5a\x95\x5c\x19\xdd\x5c\xf2\x82\xc9\x24\xdc\x77\xb4\x27\xf9\x2f\xdf\xf6\x27\x7c\xfa\xcb\x40\xec\x67\xb7\x20\xef\x61\xff\xe5\x5b\x93\xf0\xad\x63\xcd\xd2\xb5\xe6\x2a\xb9\x92\xc1\x64\x32\x69\x8e\xf1\xe4\x5c\x09\xec\xb9\x4a\xa1\x63\x75\x66\xef\x39\x30\x18\xf3\x85\x6d\x5e\xde\x27\x0d\xc6\x7c\x71\xbb\x33\x6b\xcf\x41\x95\x02\xb1\xa1\xfc\x5c\xda\x05\x8c\xce\xcc\xcc\xf4\x6d\x29\x5a\x6f\x25\xfc\x58\x17\xed\xd8\xf0\x6e\x74\xdc\x1a\xf9\xf5\x84\x9b\x7e\xfc\xda\x5a\xb8\xa1\x3f\x36\x36\x76\x56\x7d\x80\xb9\x5b\x28\x29\x0a\x34\x09\xdf\x3a\x6c\xb5\xfb\xcc\x64\x7b\x3d\xec\x93\x23\x0d\x59\x1b\x0d\x2b\x79\x55\x09\x29\x2b\xd2\x7c\x93\x98\x49\xb4\x64\x16\xd7\x27\x8f\x2b\xa3\xeb\xb3\x5e\xd0\x58\x52\x3e\x3a\x6a\xf3\x05\x6d\x65\xcc\xfc\x83\xfb\x96\x2e\x5d\x3a\xab\x71\xc8\xc9\xc9\xf1\xef\x12\x1c\x38\xe1\xc8\x4b\xef\x8a\xd3\xe7\xcb\xb3\xea\x38\xa1\xa1\xa1\x60\x53\xdd\x96\x7d\xee\xb9\xe7\x28\x45\xc2\x6a\x86\x85\x73\xec\x44\x7f\xe2\x27\xd7\x05\xa9\x42\xff\xd9\xb4\x1d\x1b\x1b\x4b\x6b\xcf\x7f\x65\xd8\x91\x67\xa3\x70\xcf\xfa\x38\x46\x3c\x6d\x36\xf5\x84\x87\x87\x53\x79\xac\xcc\x00\x32\x86\x79\xfa\xe9\xa7\x29\x30\x4f\x24\x12\xc9\x22\xb0\xb9\xae\xca\x80\x9d\x43\xe5\xc6\x5c\xb0\xa3\x64\xdb\x6d\x59\x3b\x06\xc1\x66\xcf\xa6\x6d\x57\x54\x5d\xaa\x8d\xeb\x63\x9e\xfd\xb1\x3f\xf1\x93\x9f\x54\xb2\x7a\x96\x2b\x19\xf2\x78\x3c\x6f\x4b\xca\x47\x9f\x93\xbc\x77\xf3\xde\x3f\x48\xa7\xd3\xe7\xa4\xbf\x8e\x34\x7f\xfe\x7c\xac\xb9\xf0\x45\x15\x59\x6f\xeb\xca\x4d\x8d\x8f\x3d\xf6\xd8\x94\x7b\x60\xae\xea\x65\x5d\x62\x52\xdf\x06\x63\xbe\xb8\x91\x97\x59\xb4\xf8\x41\xdb\x26\x29\x65\x45\x9a\x7f\x37\xef\xf0\x3b\xdd\xa9\x47\x0e\xf2\x53\x32\x03\x9c\x7f\x8f\x88\x88\xa0\x9a\x84\x6f\xbd\x43\xf6\xb1\x43\xb4\x73\x8d\x43\x1c\x33\x67\x22\xd6\x88\x12\x13\x69\x90\x82\x82\x82\x28\x8b\x17\x2f\xa6\xc4\xc4\xc4\x50\xa3\xa2\xa2\xa8\x8e\xf1\x2d\xe0\xe9\x40\xfc\x85\x9f\x6c\xe3\x3e\x3a\x51\x9c\x2b\x8f\x98\xa9\x5e\xb0\xf9\x22\x91\x68\xa1\x54\x2a\x0d\x83\xdc\x9d\x0f\x50\xb8\xb2\x78\x71\x67\xe6\x9f\x0e\x9b\x84\x6f\x1d\x29\x29\x92\x05\x15\x17\x96\x2c\x36\x8a\xde\xd8\xd7\x91\xfb\xda\xce\xec\x6c\xd1\xe4\xdc\x28\x2f\xac\x61\x90\xb2\xef\x4b\x1a\xb9\x0e\xfd\x75\xd7\x36\xe8\xb6\xa6\xac\x55\x55\x15\xbb\xee\x3b\x79\xd8\xf0\xed\xaa\xb8\x75\xdf\x6a\xca\x9a\xab\x96\x2e\x5d\x4a\xe8\x0a\xf8\x5d\x10\x3f\xc0\x18\xb7\x14\xaf\xd3\x4e\x8e\xbb\x64\x53\x6b\xab\x64\x73\x3b\xf9\xb9\xb9\x64\x4d\x15\xe9\x6e\xd5\x97\xf4\x4a\xee\x61\xc6\x7b\x07\xdd\xe9\x3c\xe8\x6d\x55\x59\x2d\x07\x62\x19\xdb\x5a\x98\x3d\x2d\xdd\x72\x5b\x51\xaa\x62\x81\x8c\x75\x8a\x56\x61\x8b\xf4\x45\x73\x49\x71\x59\x50\x45\x81\x36\x7a\x30\xe6\xf2\xcf\x43\xd1\x57\x6e\xc8\xf3\xea\x98\xca\x82\x16\xae\x95\x7e\xed\x36\x7c\x2e\xcd\xa9\x89\x26\xeb\x6d\x96\xae\x9d\xd4\xcf\xce\xac\xbd\xdb\xdd\xc9\x13\x74\x42\x95\xdd\xb3\x7a\x4a\xdb\xf6\xa4\xca\xb1\xf4\xd7\x54\x69\x16\x0f\x32\x2e\xdd\x84\x7a\x40\x9f\x62\x63\x63\x29\xac\xc4\x64\xef\x15\x4c\x8e\x37\xc4\x1f\xe0\xf7\xf0\x58\x99\x81\x29\x49\xfc\x85\x8e\x71\x7b\xb3\x74\xad\xd2\xa1\xfd\x57\xdd\xb5\x0f\xf1\x77\x4d\x66\xaf\xeb\xf6\xb3\x7b\x7a\x4b\x0a\xcb\x03\x86\xa2\xaf\xde\x82\x7a\xba\xf8\xef\xed\x4b\x4f\x4f\xa7\xaa\x2b\xf5\x2c\x6d\x55\x03\x37\x26\x26\x86\x16\x1a\x1a\x4a\xad\x90\xc9\xc3\x65\x65\xe5\xa1\x8e\x6d\x68\x25\x66\x31\xd9\x7e\x97\xe0\xc0\xa1\xf0\xf0\x70\xb7\xba\x5f\x9c\xa3\x48\x80\x58\x69\x4a\xfb\x21\x5b\xc7\x0b\x45\xe5\x0c\xe0\xaf\x24\x43\xcb\x36\x08\x37\x36\xa6\xae\x48\x5f\xa8\x2b\x6f\xe3\x0f\x45\x5f\xbd\x0d\x98\x66\x90\xf5\x14\xe9\x2b\x8c\xc2\x41\xc6\x17\xb7\x06\xe2\x3e\xfb\xa5\xba\x14\x25\x90\x75\x4a\xf3\x14\x11\xa4\xfe\xf5\xb2\xce\x7c\x93\x92\x92\xe2\x36\x0e\x81\x31\x28\xcf\x6e\x90\x2a\x96\x6f\xfe\x5e\xbe\x64\x1b\xae\x88\xd8\xf4\x5d\xb9\xa8\x5e\xe2\xef\xef\x3f\xa5\xcf\xa0\x5b\x0d\x92\xe7\x15\xf7\x70\x67\x73\x73\x9b\x78\xb8\x95\xfc\xdc\x50\xb8\x4a\x46\xde\xcb\xe1\x70\xbc\x06\xe2\x2e\xfe\x48\xcc\x3f\xfa\xe8\x44\x65\x89\x3a\xce\x5d\xfb\x98\x1d\xaf\x60\x0e\x83\xed\x83\xdc\x61\x6d\x6c\x0a\xc5\x44\x33\xbc\x3a\xb2\xde\x18\x34\x66\xee\x5d\x9b\x94\xc0\xf6\xe1\xae\xe0\x2f\xec\x12\x1c\xd8\x69\xca\xd8\x3f\x9c\x10\xc7\x9c\xe4\x11\xc6\xc2\x94\xf1\xf6\x2e\xb2\x6f\xed\xf9\xaf\x6c\x7c\x18\xb8\x4f\xf6\x15\x64\xc6\xe5\x72\xbd\x53\x53\x53\xbd\xa1\x2d\xb0\x35\xce\xf7\x29\xc5\xcd\xbc\x49\xfc\x8d\xfd\xfc\x86\xbc\xb4\x3a\xc2\xd5\x9a\xc2\x5c\xa8\xb4\xa8\x3c\xd8\x9c\xf6\xe7\xb3\xdd\xbc\xf7\xcf\x57\x48\xab\xc2\x5d\xdd\x03\x72\xb4\x70\x8e\x9d\x9a\xd4\xc3\xf4\x77\x8e\x66\x64\x64\xf8\x3c\x68\xdb\x60\x7f\x5a\x8a\xd6\x69\x1c\x70\xa8\xd9\xd9\xfe\x60\x76\x6c\xa9\xc8\x43\x4c\x2b\xfd\xda\x38\x69\x7f\xdb\x0b\xb6\x0d\xa7\xa5\xa5\x79\xcf\xe4\x73\x78\x42\x79\xe9\xc5\xc1\xfd\x09\xe7\x46\xfb\xe3\xcf\x7f\x23\xc9\xac\x70\xc9\x3f\x66\x8f\x01\x5b\x72\xb6\x18\xc9\x71\x80\xbc\x23\xf7\xf5\x3d\x12\x49\x61\xa0\xb3\x7e\xbb\x23\xc0\x88\xdc\xdc\xbc\x85\x55\x15\xaa\x30\xfb\x7a\x1d\xe1\x4f\x82\x8d\x03\x7f\xf4\x7e\xeb\xaa\x80\xef\xa6\xf4\xb7\x5f\x75\xf4\xbf\x7a\x38\xc7\x47\xeb\x15\xa6\x52\xa1\x50\xe8\xbb\x64\xc9\x12\x8a\xb3\x5e\x80\x8c\xc1\xf7\x12\x08\x04\x3e\xfa\xca\x76\x89\x85\xfb\xe1\xa5\xde\x15\xa7\xbe\x91\x16\x95\x06\x79\xb0\x8e\x3b\x8d\xe8\xf4\x28\x9a\x31\xe3\xcd\xcd\x53\xfd\xcf\x51\xdc\xc2\xfd\xf0\x6a\x6b\xe1\x86\x35\x75\xd5\x6d\xf9\x0a\x45\x65\x34\xd8\x3f\x79\x85\x9c\xae\xaf\x6e\x15\xb5\x14\xbd\x34\xd8\x9d\x7a\xf8\x92\x95\xfe\xd5\xa4\xff\x69\x12\xbe\x75\x00\xe2\x92\xd9\xb6\x8f\xd9\xd6\xa8\x29\xfa\x9c\x55\x0a\x88\x93\x5d\xfa\xde\xf4\x6b\x13\xe0\xeb\x0f\x45\x5d\xbb\xe3\xd8\x4f\x32\x01\x0e\x37\x8a\x36\x1a\xee\x13\x9f\xcf\x48\xe0\x3f\x08\x52\xb2\x03\x3b\x84\xbb\xd7\x0e\xc5\x5c\xfe\xc5\x93\xf8\x63\x28\xea\xea\x2d\x53\xfa\xfe\xad\x22\x9e\x24\xd8\xd5\x3c\x9f\x0b\x01\xae\xaf\x60\x72\x7c\x6a\x84\xdd\x45\x80\x5d\xbd\xec\xbf\x8e\x0c\xc4\x5f\xf8\x6e\x90\x71\xe9\xc7\x81\xb8\x8b\xdf\xf7\xae\x38\x75\xae\x2b\xfd\xdd\x57\x6b\x33\x07\x2b\xb8\x2b\xf8\xfe\xf6\x75\x83\x47\x42\x60\x47\x41\xd7\x96\x2f\x5f\x4e\x61\x30\x18\x54\xd0\x6b\x18\xab\x87\xc5\xeb\x6f\x4d\x38\x49\x37\x43\x70\x7c\x70\x3e\x7e\x17\x9b\x87\x4f\xf8\x8d\xe1\xe3\x82\xff\xc5\x6f\x0e\xe0\xf8\x4d\x1c\xbf\xf2\x1f\x38\x7e\xe5\x3f\x71\xfc\xca\x27\x38\x8e\x5f\xc0\xf1\xa4\x0b\x13\x03\x49\x17\xc6\x05\x49\x17\x6e\x26\xe2\x44\x82\x6b\xf8\x0e\xc7\x93\xe0\x9e\xff\xb4\x97\x81\xb2\xe3\x03\x38\x51\xd7\xc4\x82\x11\x1c\xc7\xe6\x11\x6d\x10\x6d\xd9\x89\x6e\xdf\x2b\x52\xdd\x7f\x9d\x82\xe2\x26\xff\x67\xb9\xf6\x68\xed\xca\xd3\x04\x04\x3a\x07\xb6\x15\xfc\x5d\xc0\x5a\xe7\xf5\xdd\x87\x9c\x1e\x88\xa0\xaf\xd1\xd1\xd1\x94\xcc\xcc\x4c\x5a\x79\x79\xb9\x6f\x6d\x6d\xed\x22\x9d\x4e\x17\x86\x10\x8a\xd6\xe9\x74\x0c\x9d\x4e\x17\x81\x10\x0a\xae\xa9\xa9\x09\x90\x48\x24\xde\x1c\x0e\x87\x0a\xf3\xec\x41\x6d\x9f\x03\xcd\x5a\x7f\xe6\xcd\x9b\x47\x59\xb6\x6c\x19\x45\x22\x91\x78\xe9\x74\xba\x50\xbd\xa6\x31\xbf\xb9\xf4\xf9\xd5\x46\xd1\x1b\x87\xcd\x69\x87\x2e\xf7\xb2\xff\x3a\xd6\xc7\xfc\xf7\x7f\xf4\x27\x7e\xf2\x73\x5f\xd2\xc7\x3f\x59\x38\xc7\xbe\xed\xca\x78\xfb\x6c\x9b\x78\xcb\x2e\x43\x65\x77\x1d\xd2\x21\x96\x52\xa9\x5c\xc8\xe5\x72\xa9\xbe\xbe\xbe\x0f\xaa\xb7\xb3\xd2\x1f\xe8\x37\xc8\x19\x69\xeb\x38\x2d\x45\x2f\x6d\xb4\xa4\x7c\x74\x9d\x88\xed\x23\xbe\xb6\xad\xb7\xda\x93\xe3\xb5\x63\x02\x9b\x32\x10\x77\xe1\x46\x67\xd6\x9b\x27\x0c\x55\x26\x8d\x56\xab\x0d\x16\x08\x04\x34\x3b\xce\x3d\x32\xfd\x01\x3d\x2e\x28\x28\xf0\x42\x5a\x3d\xb3\x4d\xbc\x65\xe7\x40\xdc\xc5\x1b\x9e\xd8\x1d\xdb\x9a\xb5\xeb\x6b\xb0\xdd\xdd\xa9\x87\x2f\x1b\xaa\xba\xb4\x6a\xb5\x3a\x30\x26\x26\x66\x2e\xfa\x7c\x5f\xfd\x01\x9f\x19\xf4\xb7\xb1\xa2\xaf\xb5\x8f\xf9\xef\x3f\x3a\xef\xfd\xce\x7c\xed\x90\xbb\xb9\x06\xdf\xa2\x33\x6b\xef\x51\x54\x5b\xcf\x02\x9d\x7a\x98\xfa\x13\x17\x17\x47\xd1\xe9\x50\x78\x47\xde\x6b\xfb\x09\x1f\xc6\x8d\x9e\x80\x5e\x80\xdd\xed\xe1\x1c\x3f\xd1\x95\xfe\xf6\x76\x63\xf6\x2e\xab\x31\x67\x67\x6f\x67\xd6\x9e\x35\x5d\xfc\xf7\x76\xf5\xb2\x4e\x9f\x1b\x8a\xfa\xf2\x16\xb9\x57\xe1\x2a\xf5\x70\x8e\x9f\x93\x4a\xa5\xde\x0f\x4b\x7f\x12\x12\x12\x28\x48\x5b\x17\x67\xe6\x1f\x3c\xe7\xca\x17\x22\x62\x0a\xc6\xdf\x7e\xec\xcc\xda\xbb\x46\x5f\x66\x66\xe6\xe5\xe6\x7b\x25\x25\x25\x51\x21\xce\x04\xff\x08\x12\xd8\xf0\xc8\xc8\x48\x0a\xe0\x8e\xb4\x50\xe6\xdf\x5c\xb2\x46\x6c\xe6\xbd\x0f\xb2\xb8\xed\xa4\x4b\x77\x9a\xca\x56\x49\xc2\xc2\xc2\x66\xab\x43\x2e\xf5\x07\xfa\x80\xb4\x7a\x7a\x77\xea\x07\x9f\x4f\xb6\x43\xe4\x93\x6b\x51\x3f\xb7\xe7\x6f\x6f\x95\x16\x96\xf9\x82\xcf\x41\xa5\x52\x3d\x19\x6b\x02\x6f\x81\x47\xb5\xcc\x10\x66\xe6\xbf\xb7\x8b\xdc\x23\x37\x8a\x76\xad\x49\x4b\x4b\x73\xde\x0b\xf6\xe4\x7a\x9a\xfe\x80\xed\xd1\x68\x34\x8b\x4d\x19\xfb\x8f\xad\x22\xc7\x3b\xf2\x9e\x9e\x58\x52\x8e\x1e\xa9\x29\xd7\x07\x03\x16\xcd\xd5\xee\x40\xfc\x98\x9c\x9c\x4c\x6d\x2c\x1b\xca\x32\xf3\xde\xdf\x55\x52\x5c\xea\xe3\xb0\x87\x48\x24\xf0\xc9\x60\x0c\xbd\xbd\xbd\x3d\xd6\x1f\xb0\x2b\x25\x25\x25\xde\xad\x85\x1b\xd6\x3a\xeb\x8c\x6d\x1f\x6f\xf7\x9a\x82\xfc\x02\xaf\x19\xce\x37\xcc\x8a\x9e\x7e\xfa\x69\x62\x8e\x39\x9f\x27\x8b\x8f\x8f\xa7\xd4\xd6\xd6\x2e\x46\x08\x31\xb5\x5a\x6d\x10\x9b\xcd\x76\xb7\xe6\x39\x65\x1c\xa0\x5c\x7d\x4d\x7b\xee\x50\xf4\xe5\x5f\x27\x75\x26\x82\x8c\xd9\x5e\xb3\x08\x85\x42\x2a\xd8\x2f\x17\xe5\x1f\xda\x35\xc8\x1c\xd5\xd6\x47\x9b\xd3\xfe\x7c\x7e\x30\xe6\x8b\x5f\xbb\x53\x3f\xb8\xa4\xd7\x34\x24\x38\xad\x1d\x4c\xd3\x1f\x90\x81\x4a\xa5\x0a\xec\xe6\xbd\x7f\xce\x51\x67\x20\x37\x09\xdf\xda\x2a\xca\x16\xd1\xec\x7d\x7f\xa4\x09\xe6\x7a\x7b\xc1\xb6\x35\x8e\xd8\xd4\x91\xf3\xfa\x56\x3e\x9f\x4f\x9d\x49\x7f\x58\x2c\x16\xb5\x41\xde\xa7\x74\xd6\x9b\x5e\xd6\xe9\xcf\xcb\xcb\x2a\x7c\xdd\xad\xc7\x3c\x6c\x62\x32\x99\x14\xa3\xe8\x8d\x75\x8e\xf6\xce\x24\x7c\x6b\x27\xf0\xe5\xe2\x76\xa2\x4f\xe0\x37\x56\x57\x57\x2f\xec\x4e\xfd\xe0\xbc\xd5\xa1\x9c\x95\xfe\xd5\x78\xbd\xa2\x8b\x03\x7a\xea\x5c\xe6\x51\x5d\x03\x46\x69\x2a\x1a\xc2\x06\xe2\x2f\x7c\x03\xb2\x1f\x88\xfd\x6c\x0c\xc9\xdb\xa2\x9d\xe2\xb7\x29\xfa\xb3\x74\xe9\x52\x4a\x7d\x4d\x5b\x3a\xd8\x28\xab\x83\xde\x74\x65\xbc\xbd\x4b\x20\x10\xb8\x1a\xb7\x47\x9a\x9e\x7a\xea\x29\x8a\x38\xaf\xd0\x47\x53\xdc\xc6\x90\xe4\x4b\x7d\xc9\xb3\x19\xee\xf4\x27\x3d\x3d\x9d\xd6\x9e\xff\xca\x66\x6b\xc4\x94\xb5\x85\x3b\x75\x55\x1d\x4c\x07\x1f\xf1\x91\x92\xbf\xbf\x3f\x25\x2b\x2b\x8b\x26\x93\xc9\x7c\x20\x27\xf7\x1a\x6c\x67\x73\xb8\x54\xb1\x58\xec\x05\x98\xeb\x84\x55\xc4\x75\x65\x65\xa5\x7f\x4f\xf2\x89\xab\x36\x8c\xb7\xe9\x8f\x85\x73\x6c\x04\x7c\x36\xa7\xf1\x9a\xf1\x1a\x70\x15\xec\xb6\x48\x24\xf2\xca\xcb\xcb\xf3\x02\x9b\x04\x36\xf8\x7e\x65\x89\x73\x3f\x4a\xe5\xc2\x26\xd9\x90\xc9\x28\xda\x75\xb8\xa9\x6c\x95\x45\xa5\x52\x05\x2c\x5a\xb4\x88\xf8\xbe\x41\x61\x41\x6d\xe2\x2d\x3b\x0c\xd5\x9d\x8a\xd2\xd2\x52\x1f\x87\xb5\x22\x62\xfd\x1b\x69\xeb\x22\x86\xa2\xbe\xbc\x4d\xda\x28\xc8\xdb\xc4\xc3\x66\x88\x4d\x3c\x1d\x73\xb0\xfd\x80\x5f\x5a\xa5\xa1\x54\x2d\x36\x6d\x56\xe5\x76\xef\xac\x2d\x6b\x33\xe9\x74\x88\x21\x12\x89\x68\xce\xf6\xc9\x31\x01\xcf\x4d\x65\x56\x04\x3e\x29\xd9\x87\xe6\x92\x17\xda\x75\x3a\x1d\xad\xb9\xf4\xf9\x66\x2b\x7d\x94\xf0\xbd\x86\xa2\xaf\x8e\x1b\x2a\xcd\x45\x51\x51\x51\x93\xfa\xb3\x64\xc9\x12\x4a\x83\xc2\x22\xb6\x4e\x9e\x99\xb0\xe1\xbd\xa1\xaa\x8b\xeb\xe9\x7e\x11\x60\xb6\x56\xab\x0b\xad\xc9\xe8\x3b\x28\x0f\xd9\x3a\x71\x6f\x1d\x7d\x1b\x5e\x19\xb3\xfe\x07\x6d\x65\xa3\x0c\x78\x20\xef\x07\x2c\x0b\x0d\x0d\xa5\xd8\xcf\xee\x60\x29\x29\x29\xd4\xce\xac\x37\x77\x38\x62\x4e\x17\xff\xbd\x43\x08\x21\x1f\x33\xff\xe0\x11\xc7\xef\x8d\xd9\xbb\xb6\xc2\xfd\xa4\xfc\x41\xc6\x2d\xc5\xeb\x9a\x49\x9f\xd6\x6a\x5f\xa7\xd2\x6a\xd0\x22\x87\x23\xa9\x33\xea\x40\x49\x49\x89\x8f\x2a\xab\x77\x67\xc5\x92\x6d\xc4\xb9\x2c\xf2\x7c\x16\x99\x2b\x22\x36\xfd\xac\xd3\xd4\x31\x21\x76\x84\xb8\x18\xb0\x0e\x69\xeb\xb8\x48\xab\xe7\x80\xee\xb2\x58\x2c\x4a\x8b\xf4\xc5\x0a\xab\x83\x9f\xd2\xb6\xf2\x65\x43\x69\x69\x29\xb5\x3d\xff\x15\xcb\xbd\xbe\x7d\x8d\xb7\x48\x5f\x54\x00\xef\x64\xfb\x49\x49\x49\x94\xf6\x82\x6d\xab\x1d\xcb\xf6\x27\x9c\xfb\x5e\x2e\x97\xfb\x7b\xa2\x37\x80\x6b\x3a\x4d\x5d\xb4\x7c\xe9\xf0\xaf\xb6\x33\x65\x0e\x69\xc9\xbd\x5c\x95\xdd\xb3\x19\x70\xa2\xa2\xa2\xc2\xb7\x4d\xbc\x65\xfb\x50\xf4\x95\xdb\xf6\xfd\xf4\x75\xa5\xa5\xa5\xde\x3c\x1e\x8f\xda\x5a\xb8\x41\x61\xe6\x1f\xdc\xd1\xb6\x72\xb3\x32\x53\x98\x49\x03\x3d\x17\x17\x48\xbc\x8d\xa2\x5d\xfd\x3d\xc9\x27\x8e\xb5\x89\xb7\xa0\xf4\xf4\x74\x47\x3c\xc4\xc0\x1f\xec\xc8\xdd\xb1\xd1\x51\x7f\x7a\x59\xa7\x47\xe5\x72\xb9\xdb\x73\xf8\x8e\x04\xf3\xb3\xb6\xac\x55\xea\x6a\xff\x87\x48\x41\xb6\xbc\x9a\xb5\x66\x44\xa7\xd3\x79\xd7\xa9\x9b\xe3\xac\xf4\xaf\xee\x90\xfa\x30\x14\x7d\xe5\x57\x7d\xad\x21\xdc\xdb\xdb\x9b\x58\x6b\x06\xdd\x0e\x08\x08\x98\x1c\x63\xf0\xc9\x40\xde\x0c\x06\x83\xe2\x62\xdd\x92\x42\xf6\xdf\x31\x26\x72\xd1\x7f\xb7\xfa\x03\x75\x6a\x4a\xdb\x8a\x1c\xcf\x0c\x92\xd7\x8e\x7a\x54\xc5\x7c\x61\x44\x2e\x97\x7b\xe9\x95\x2d\x74\xe2\x7c\xc3\xbd\xf8\x6b\x5c\xa7\x32\x04\xc3\x5c\x80\xb1\x41\x08\x05\x55\x57\x57\xfb\xd3\xe9\x74\x42\xc6\x80\xfd\xf9\xf9\xf9\x5e\x55\x55\x55\xfe\x39\x39\x39\x34\xe7\xf3\x4b\xe0\xb3\xb5\x17\x6c\xb3\xda\x7c\x35\x88\xa9\xae\xe3\xfd\x89\x9f\x8c\x01\x6e\x79\xa2\x3f\x30\x17\x35\x4a\x14\x26\x0f\xd9\x7a\x5b\x0e\x7d\x25\xfa\x3b\x3d\xaf\xc9\xe8\x5f\x0f\xb2\x12\x0a\x85\x34\x93\xf0\xad\xcd\xc0\x03\x24\xa3\x68\x97\xb5\xa8\xa8\x88\x5a\xab\xa9\x5d\xdc\x5e\xb0\x6d\xa7\x85\x73\xfc\x1b\xa3\x68\xd7\x21\xc0\x44\xf0\x4d\x6b\x6b\x6b\x17\xb5\x14\xaf\x5b\x6b\x12\xee\x3b\xd9\x54\xb6\xca\x0c\x7c\x38\x9e\x63\x83\x58\xa5\xa5\xe8\x25\x03\x81\xfb\x76\xdf\x67\x28\xfa\xf2\x2d\x9d\x16\x85\x7a\x79\x79\x76\x14\x1d\x7c\x2b\x25\x6f\xe8\x55\x52\xfe\x93\x89\x1c\x87\xa5\xc3\x37\x54\x0a\x14\x0e\xbe\x01\xe0\x0d\x27\x99\x43\xad\x2e\xaa\x0f\xaf\x2a\xd2\x87\x32\x99\x4c\x2a\xd8\xa5\x96\xa2\x97\x4c\xe4\x39\x34\x62\xbf\x3c\xef\xd5\x61\x9d\x4e\xe7\xd5\x5a\xb8\xa1\xff\xde\xf9\xb4\xd1\x89\xc6\xf2\x01\xa5\x43\xac\x4f\x01\xdf\xa6\x41\xde\x93\x35\x25\xa6\x8e\xfc\x1a\xaf\xaf\x36\x0a\x1d\x6c\xcf\x8c\xf8\x03\xf1\x88\xb4\xa8\xd4\xb7\x7a\xc5\x9a\x77\x08\x99\x3b\xe8\x8f\x62\xd9\xcb\x3f\x69\x4a\xda\xb2\x20\x4e\x73\x57\x0f\xf4\xbf\x33\x6b\xef\x76\xc7\x3e\x98\xd3\xfe\x7c\x98\xc0\xcf\xb4\x3f\x1f\x71\xfc\xde\x98\xb3\x73\x23\xf0\x4c\xd6\x01\xf2\xd0\xaa\x51\x90\x35\xea\xda\x6d\x52\x7f\x20\xb5\x16\x6e\xec\xb7\xfb\x7c\x1e\xd9\x2f\xe0\x81\xcf\xe7\xd3\x54\xc5\x2d\xfc\x1a\xc1\xc0\x6a\x25\x6f\x08\x6c\x18\x2a\x2b\x96\x07\xd8\xe5\xe0\x36\x11\x32\x2c\xef\x03\xff\xeb\xb6\xd5\x86\x81\x13\xcd\xd2\xb5\xb2\xfc\xfc\x7c\x4a\xab\x64\x73\x1d\xb1\x37\x11\x61\x97\xbf\x6c\x50\x64\x3f\x6f\x32\xc9\xff\xca\x95\x2b\xbd\x7b\xd8\x27\x2f\x4e\xae\x7d\xd8\xce\xb4\x9e\x03\x6c\x9e\xed\x5a\x1f\xf8\x27\x60\x13\xc1\x27\xf4\xf4\x99\x24\xcc\xb6\xd7\x47\xd1\xcb\xba\x98\x1d\xb9\x3b\x8c\x0d\x65\x03\x7c\x98\x2b\xd0\x36\xf8\x20\x2d\x45\xeb\x65\xa6\x8c\xb7\x37\x37\x95\xac\xce\x75\x90\xfd\xe4\x18\xc2\x1c\xee\xc8\x7b\xcd\x7a\x6f\xcd\xc6\x76\xa6\xbf\x4e\xd5\xc2\xb7\xaf\x09\x78\xe4\xff\x3c\xe8\x35\x95\x4a\x25\x30\x14\xe6\x1d\xe0\x11\xf8\x15\x80\x9d\xe0\x07\xc0\x18\xda\xcf\x38\x62\xce\xfe\x33\x7c\x5f\x57\xdd\x1e\x47\x9c\x89\xb5\xeb\x0f\xf0\x62\xcc\xde\xbd\x1f\xfc\x41\xfb\x19\xd4\xdf\x2c\x65\x67\x67\xd3\x90\xb6\x8e\x69\xa8\x32\xa9\x90\xb6\x9e\x0d\x7e\xa4\x9b\x3e\x4c\x52\x6e\x6e\xae\x57\x37\xf7\xc8\xb1\x55\x93\x38\x64\xf3\x97\xea\x95\xed\xf9\x10\x9b\x79\xa8\x06\x0f\x4c\x80\x87\x75\xaa\x56\x7e\x7f\xc2\xb9\x9f\x56\xd9\xd6\x4b\x7f\xa9\xaf\x36\xe6\xdb\x7d\x49\x67\x9a\x1c\x07\xb0\x13\x8d\x15\x7d\x59\x36\xdb\x72\x7d\xf2\xec\xab\x25\xe5\xe8\x65\xad\x56\x17\xe6\x29\x16\x3d\xe8\x35\xf8\xfa\xc6\x9c\x9d\xc3\x8e\x98\x63\x12\xee\x7b\x93\xc7\xe3\xd1\x5c\xf5\xdb\x21\xa7\xe4\xe6\xe6\xd2\xba\x79\x87\x0f\x91\xfa\x73\x6f\xed\x61\xc7\xbe\x9a\x9a\x9a\x40\xbb\x5d\x7f\xa4\x09\xe4\xdc\x9e\xbf\xdd\x42\xb4\x6d\xef\x83\x31\x67\xe7\x5a\x98\x0b\x33\xe9\x0f\x10\xc4\x5a\xba\xca\x66\xfa\x50\xcc\xe5\x1b\xab\x26\x6d\x09\x81\x5b\x78\xab\x64\xd3\x30\xf0\x00\x3e\xa4\x8b\x71\x7c\x68\x04\xf6\x5c\x26\x95\xfb\x77\xa7\x7e\xf0\xce\x50\xd4\x97\xbf\x58\x52\x3e\x3a\x5c\x29\x53\x05\xba\x79\xe6\x70\xda\x38\x80\x6d\x6b\x2d\x5a\xaf\xb1\xda\xf5\x87\xd4\x25\xe0\xa1\xbd\x60\xdb\x2e\xad\x56\x4b\xd8\x4c\xbb\x6f\x3d\x67\x3d\x01\x59\x81\x5f\xa3\x56\xab\xfd\x9d\xce\xe6\x10\x6b\x39\x80\x9f\x30\x8f\xd9\x6c\x36\xd5\xe9\xdc\xbb\xcb\x7e\x3b\xa6\xcc\xcc\x4c\x9a\x29\xf3\x4f\x0e\x7b\xed\xf7\xec\x72\x97\xe0\xbd\x73\x7a\x4d\x63\x56\x59\x59\x99\x8f\x7d\x4d\x69\x56\x09\xfa\xb6\x62\xc5\x0a\xaa\x46\xa3\x59\xdc\x58\xd1\xdf\x6e\xcc\xde\xfd\x8e\x46\xa3\x09\xb2\xaf\x71\xcc\x36\xb9\x24\x88\xf5\x8a\x0a\x8b\xbd\xcd\x69\x87\xf6\x4f\x59\xbf\xb5\xdb\xe7\x81\xb8\x8b\x37\x5a\x0b\x37\x0c\x23\x9d\x9e\x09\x3e\x23\xc8\x0a\xe2\x12\x77\x8f\xe0\x01\x9e\x03\x8e\x83\xef\xa6\xd1\x68\x16\xd5\xa9\x5a\xa5\xa6\x8c\xfd\x67\x20\x2e\xb4\xc7\x2a\x9b\xc1\xdf\xbd\xdf\x73\xa9\x2e\xc8\xa5\x3d\xc0\xec\x3e\x4d\x71\x91\xd4\xbb\x4b\x70\x60\xd7\x3d\x5d\x72\xd8\x93\x88\x20\xe2\x9c\x9f\xdb\xf3\x5f\xd9\x5f\xaf\x6c\xaf\x42\x3a\xc4\x00\x5f\x51\x26\x93\xf9\x82\x3d\x87\xf8\xbd\xa8\xa8\xc8\x1b\x6c\xb8\x4e\xa7\x0b\x46\x3a\x3d\xb7\xb1\x7c\xc0\xdc\x95\xfe\xee\xb9\xa1\xa8\x2f\xef\x38\xee\x65\xc0\xe7\x06\x79\x8f\x26\x23\x23\xe3\xa1\xee\x5f\xc0\x38\xe4\xe4\xe4\xd2\x3a\xf2\x5e\x33\x81\x9f\xbe\x6a\x8a\x3e\xdd\xbb\x86\xb9\xd1\x9f\xf8\xc9\xcf\x66\xfe\xc1\xcf\x8d\x39\x3b\x0f\xb7\x89\xb7\xec\x69\x5b\xf9\xf2\xce\xf6\xfc\xed\xfb\x3a\xb3\xf6\x9e\xb4\xa4\x1c\xbd\x3e\xc8\xb8\xf4\xeb\xd4\xb5\xbd\xa9\xd7\x3d\xec\x93\x67\x8b\x8a\x8a\x66\x7c\x86\xcd\x53\xfd\x71\x26\xc0\x2e\x83\xac\x87\xd7\xc7\x3c\x7b\xf5\x1e\xb6\x7e\x8d\xdf\xff\xda\x31\x77\x7d\x0d\xf6\xc6\xcc\x3f\xb8\xa7\xb2\x4c\xbd\xc8\x31\xee\x7a\x50\xfd\x71\xbe\x06\x1f\x44\x22\x2e\xf4\x6e\x2f\xd8\x6a\x18\x88\xfd\x6c\xcc\xdd\x58\xac\x72\x9a\xf3\xee\xf6\xbf\xec\x67\xbf\xcf\x18\xca\xfa\xf8\x60\xb3\x9c\x9e\x05\x75\xd9\x87\xfb\xf4\xdb\xa3\x04\x98\x53\xb4\x52\xea\xd3\x52\xb8\x41\xd1\xc3\x39\x7e\xcc\xb6\x17\xe4\x7e\x5f\xcb\x79\xff\x74\x30\xe6\x8b\x9f\xba\x04\x07\x76\xd4\x95\x5a\x38\xe0\x6f\xdb\xd7\xf7\xe6\x9a\xe6\x4c\xe0\x1b\x43\xdc\x51\x5e\xac\x0c\x6c\x91\xbe\x28\xe9\xcc\xde\xb3\xba\x3b\xf5\x83\x03\xbd\xac\x33\xe7\xfb\x13\x3e\x1d\x1d\x88\xbf\xf0\x4d\x7f\xe2\x27\x57\x41\xc6\x66\xfe\xc1\x5d\x1d\x79\xaf\xb5\x1b\xca\xfa\xb8\xe2\x3c\x89\x37\xd8\x98\x39\x60\x8d\x2b\xf2\x58\x7f\x66\xba\x7e\xfc\xf1\xc7\x09\x9f\x9f\xc1\x60\x10\x3c\x41\x3c\x09\x58\x09\x7a\x01\xbe\x5f\x64\x64\x24\xe1\x5f\x39\x01\xec\xc3\xba\xfe\x67\xa6\x07\xd1\xbd\xdf\x3d\xd9\x4e\x0b\x91\xe7\x95\x1c\xf3\x11\x3f\x22\xbf\x8b\xcd\x23\xf2\x71\x0c\x1b\x80\xfc\x26\x86\x85\x40\x3e\x32\x0f\xf3\x83\x7c\x50\x30\x4e\x7c\x9e\x87\xdf\x85\xfc\xee\x7c\x1c\xff\x18\xc7\xb0\x89\x05\xb6\x7a\x26\x42\x70\xfc\xae\x00\xc3\xc6\x43\x70\x7c\x22\x04\xc3\xc6\x05\xb6\xfc\xe6\x80\xed\x7b\xc8\xe1\xbe\x31\xfc\x5e\xfe\x7f\xff\x85\x61\xff\x81\x4f\xe0\xff\x7d\x01\xf2\x9b\x82\xb1\x55\x90\x8f\x85\xc0\xe7\x7f\xc7\xc7\x7c\x52\xff\xcb\x96\x0b\xf0\xa9\x79\xe2\x15\xdb\x7d\x37\xa7\x94\xb3\xd5\x43\xd4\xff\x5f\xf7\xda\x21\xdb\x25\xfb\x41\xf6\x0b\xfa\x79\x37\x04\xc3\x26\xfc\x6c\xdf\xdf\xb5\xf3\x41\xf2\x85\x63\x36\x3e\x27\xf9\x1e\xc3\x6c\x72\x20\xe5\x32\x61\x97\x13\x6e\x97\x1b\x3e\x16\xe2\x5a\xbe\xb6\x9c\x6e\x7f\x96\x6c\xf0\xff\xa1\xe7\xc9\xfe\x45\xff\x9c\x44\xa3\xd1\x30\xf0\xa1\x21\x16\x49\x4c\x4c\x24\xd6\xe5\x05\x02\x01\x91\x58\x2c\x16\xf1\x5d\x44\x44\x04\xb1\xfe\x0f\xf7\xfe\xb3\xd3\xfc\xf9\xf3\x89\x35\x1e\x1e\x8f\x47\x91\xc9\x64\x34\x84\x90\x2f\x42\x28\x10\x21\x14\x86\x10\x62\x20\x84\x98\x08\x21\x8e\x3d\xb1\xec\xdf\xc1\x6f\x8b\xe0\x5e\x28\xc3\xe7\xf3\x27\xf7\x70\xfe\x59\x08\x7c\x54\x18\x53\xb5\x5a\xed\x8d\x10\x5a\x8c\x10\x62\xeb\x6b\x0d\xb2\xc6\xf2\x01\x6b\x9b\x78\xcb\x3b\xa6\xcc\x7d\x67\xbb\x53\x0f\x5f\xeb\x49\x3e\xf1\x7d\x2f\xeb\xf4\x0f\xbd\xac\xd3\x3f\xf6\x24\xff\xe5\xfb\xee\xd4\x0f\x46\x4d\xc2\xb7\xce\xb5\x17\x6c\x3b\xd0\x24\x1b\x5a\xa3\xd7\x34\x54\x40\x59\x84\x50\x10\xd4\x25\x10\x08\x88\x18\xec\xf7\xe6\xcf\x1d\x3d\xfb\xec\xb3\x14\xb1\x58\x4c\x45\x08\x2d\x84\xb1\xad\x57\x76\x18\xda\xf3\x5e\x39\xd4\xc3\xfe\xcb\xf7\xd6\x28\xdb\xf3\x79\xb3\x49\x56\xfa\xb5\x89\x5e\xf6\x5f\xc7\x3a\xf2\x5e\x3b\x0c\x75\xd9\x75\x24\x00\xda\x78\x90\xf3\xe1\x0f\x9b\x7c\x7c\x7c\x28\x39\x39\x39\xc0\x77\x00\xd2\x21\x7e\x73\xe9\xf3\xeb\x2d\x9c\x8f\xbe\x71\x7c\xa6\xf3\x41\x13\xc4\x7f\x3d\x9c\xe3\xdf\x36\x97\xac\xd9\x08\x6d\x40\x5b\x79\x79\x79\xd4\xdf\x6a\xef\xdd\x1d\xc5\xc5\xc5\x51\x34\x1a\x8d\x0f\xd2\x21\x66\x53\xd9\xaa\xb5\xbd\xac\x33\x3f\xb8\x3b\xcb\xf6\x70\xe4\xf0\x35\xde\x97\xf4\xf1\x8f\xcd\xa5\xab\xd7\x21\x1d\x62\x41\xdb\xd0\x87\xdf\x9a\xef\x05\x0b\x16\x60\x20\x7f\x98\xdf\xf5\x35\x6d\x9a\xee\xd4\x0f\xae\x3e\x4a\xbe\x5d\xc9\xa1\x9b\x7b\xe4\x5a\xbd\xb2\x5d\x03\x7d\x10\x0a\x85\xbf\x99\x0c\xfc\xfc\xfc\x28\xe5\xe5\xe5\x34\xa4\x43\x8c\x96\xe2\x75\x5b\x3d\x7d\xc6\xdb\xb9\xff\xc4\x73\xd8\xf4\xaf\x6e\x12\x29\x72\xf4\xf6\x5c\xe4\x37\x14\x73\xf9\x76\x6b\xe1\x86\x35\x60\x2f\x9e\x78\xe2\x89\x47\xce\x3b\xc4\x68\x4a\xa5\xd2\x1b\xe9\xf4\xdc\xce\xcc\x3f\x9d\xf4\xb4\xcf\x43\xd1\x57\x7e\xb6\x70\x3f\x3c\xd8\x91\xf7\x9a\xb1\xa9\x74\xb5\xa8\xbe\xba\x33\x5c\xaf\x69\x5c\x88\x74\x7a\x98\x3b\x3e\xa8\xb6\xde\xb7\xae\xa6\x2d\xa8\xb1\x7c\x80\xdb\x26\xde\x82\xcc\xfc\x83\x3b\x07\x62\x3f\xff\xce\x93\xfa\xcd\xfc\x83\x6f\x2a\x95\x4a\xaf\x47\x6d\x23\x9f\x7c\xf2\x49\xc2\xa6\xe9\x6b\x0d\x59\x16\xee\x87\x57\x3d\xc0\xac\x3b\x96\x94\xa3\x87\x5b\xa4\x2f\x16\xe9\x34\x75\xfe\x80\xdb\xe0\xf3\x80\x3d\xf7\xf3\xf3\xc3\xec\x67\x42\x09\x9a\x37\x6f\x1e\xe0\x28\xf1\x3c\x14\xc4\xc8\x22\x91\x88\xaa\x56\x69\xbc\x41\x1e\x5d\x82\x77\x5f\x1d\x8a\xfa\xf2\xa6\xab\x36\xfa\x13\x3f\x19\xd5\xd7\x36\x2c\xb6\x9f\xd5\x7c\x64\x04\xf1\x7b\x55\x55\x95\x17\xaa\xad\x4f\xef\x49\x3e\x71\xfd\x3e\xba\x3d\xd1\x9d\xfa\xc1\x3b\x86\x4a\x73\x1c\xf8\x30\xf6\xb5\x88\x59\xb7\x09\xe3\xb9\x74\xe9\x52\xc2\xa6\xd6\xa9\x5a\x82\x3a\x33\xff\xb4\xce\x4a\xbf\x36\x39\xd7\x86\xa2\xbe\xbc\xd5\x50\xd9\xcd\x05\xff\xea\x91\x30\x6d\x27\x18\x9b\xe2\xe2\x62\x2a\xd2\xe9\x99\xdd\xa9\x87\x3f\x9f\x89\xf7\xfe\xf8\xf3\xdf\x34\x95\x59\x45\x80\x0f\xb3\x7d\x87\xc1\x4c\x04\x7e\x8f\x44\x22\xa1\x1a\xaa\x4c\x71\x3d\xec\x93\xa7\xc8\xf3\x2f\x52\xa9\x94\xf6\xa8\xf5\x3e\x39\x39\x99\x02\x7e\xa9\x51\xb4\xeb\xd0\x4c\x78\x66\xe6\xbd\xbf\x4f\xa7\x36\x04\xc2\xfd\x8f\xaa\x4f\x91\x91\x91\x14\x95\x52\xed\xdd\x5a\xb4\x3e\x1f\xf4\xd1\x95\xfd\x87\xf1\x82\x18\x23\x23\x23\x83\x2a\x14\x0a\xa9\x51\x51\x51\x73\xee\x0f\xe0\x1d\x42\xc8\xbf\xa9\x74\x75\x3f\x71\xf6\xcb\x8d\xbe\x1b\x45\x6f\x0c\xd6\xd4\xa8\xbc\x1f\xf5\xde\x13\x66\x9b\x8b\x44\x5c\xe1\x2a\x46\x02\x4c\x01\x3d\x01\x9f\x19\x21\xc4\x43\x88\xf0\x95\x82\x4b\x4b\x4b\x69\xae\xde\x65\x35\x13\x81\x1c\x61\xfe\xea\xd5\x4d\xa2\x81\xb8\xcf\x5c\x3e\xcf\x41\x3c\xef\x9a\xff\x8a\x09\xc6\xe2\x51\x3e\xbf\xe7\x29\x01\x16\x20\x1d\x8a\x68\xcf\xdf\xbe\x6f\x20\xfe\xfc\x2f\x03\x71\x17\x6e\x74\xe4\xbc\x7e\x10\xe9\xf4\x8c\xac\xac\xac\x59\xed\x31\x03\x6e\x81\xec\x4c\x19\x6f\x9f\x74\xc7\xbb\x31\x7b\xf7\x9a\x3f\x0a\xef\x30\x5e\x60\x9f\x5a\x0b\x37\xae\x76\xde\x07\x69\x2f\xd8\xb6\x55\xab\xd5\xfa\x7a\x1a\x57\xc3\x7c\x01\xbe\x1a\x14\xdd\x1a\xe2\x6c\xa3\x0b\xfe\xbb\x53\x3f\x38\xa4\xd1\xd4\xfa\xce\x61\x4f\xe2\x91\x10\xd8\x4f\x98\xab\x16\xee\x87\x23\xce\x7d\xed\x65\x9d\xbe\x06\x31\xc3\x93\x4f\x3e\xe9\x51\x5d\x60\x83\x11\x42\xa1\xdd\xdc\x23\x2e\xf1\x7e\x20\xee\xe2\x98\x5e\xdd\x14\x6a\x3f\xe7\xf9\x87\x21\x18\x7f\x33\xff\xcf\x07\x9c\xfb\xdb\xc3\x39\x7e\x46\xab\xd5\xfa\x78\x3a\xfe\x30\xef\x0d\x95\xe6\x69\x67\xe5\x49\xbd\x6f\x2e\x79\x41\x01\x31\xdf\x23\x67\x68\x96\xc4\x66\xb3\x29\x0d\x8a\x1e\xee\x50\xd4\xd5\x49\x7f\x09\x7c\x86\x26\xd9\x50\x2e\x9f\xcf\xf7\x68\xac\x88\xe7\x23\x10\x0a\xec\x4a\x7f\xfb\x98\xab\xb1\xb7\xa4\x7c\x74\x12\xe2\xae\xdf\x3b\xf6\x74\x45\x80\x01\x60\xf3\x0c\x95\x5d\xd1\x9d\x99\x6f\xae\x36\x09\xf7\xad\x6d\x90\xf7\x30\xf3\xf3\xf3\xa9\x8e\xfe\xe6\x4c\x04\x72\xd2\xd7\x1a\xd8\x43\x31\x97\x6f\xb9\xb2\x75\x0d\xf2\x3e\x51\x4a\x4a\xca\x1f\x8e\x77\xb0\x8b\x90\x30\xfb\x3b\x9d\x40\x17\x20\x05\x07\x07\xcf\xaa\xaf\x0a\x85\xc2\xab\x45\xba\xd6\xec\x6a\xec\x7b\xd8\x7f\x39\x07\x38\xea\x70\x4e\xeb\x77\xa7\xa0\xa0\x20\xc7\xf5\x45\x7f\xb8\x76\x7c\x96\x07\x7c\x47\x88\xd5\x35\x1a\x8d\x37\xe0\x03\xd8\x41\x77\xfd\x07\x3b\x86\x10\x5a\xd8\x25\x78\xf7\x84\x2b\xfe\x5b\x0b\x37\x34\x42\x5d\x0f\xda\x67\x98\x63\x2c\x16\x8b\x22\x10\x08\xa8\x90\xe0\x7a\x2e\xef\x81\x03\xde\x61\x3c\xf4\xb5\x86\xdc\x66\xe9\x0b\x1b\x5b\xa4\x2f\x6e\xd6\x6b\x1a\xc4\xc0\x03\xf8\xdf\xe4\xef\x48\xa7\xe7\x35\x28\x2c\x46\x43\x55\x57\x33\xd2\x21\xa6\x3b\xdf\x11\xf0\x1c\xe9\x50\x38\xf9\x5e\xa5\x29\x31\x6c\xd4\x97\xbf\xea\x35\x0d\x11\x33\xbd\xe7\xe6\x7e\x04\xb6\x12\x7c\x76\xfb\x3a\x70\x1c\x42\x28\xdd\xee\xa3\xc1\x75\x00\xc4\x19\xae\xde\x8d\xee\x8e\xc0\xaf\xab\xaf\x69\x93\xf4\x27\x7c\xfa\x8f\x7b\xb6\xe9\xb3\x1b\xf5\xd5\x9d\x15\x10\x13\x57\x55\x55\xd1\xea\x6a\xda\x8a\xfa\x92\x3e\xfe\x81\x7c\xd7\xa5\x85\xfb\xe1\x65\xa4\xad\x67\x43\x8c\xe9\x5c\x1f\x97\xcb\xa5\xd4\xd5\xb4\xa6\xbb\xc2\xfd\x9e\xe4\xe3\xe7\x40\xc7\xc8\x39\x36\x5b\x82\xf1\x80\xb1\xd0\x69\x11\x5f\x5d\xd0\xb5\xb3\x8a\xf9\xc2\x37\x8a\x88\x4d\x37\x14\x91\x9b\x7e\xa9\x4e\x7a\xe1\xba\x7a\xa5\x69\xbb\x4e\x87\x78\x6a\xb5\xda\xc7\x13\x5d\x80\x98\x12\xfa\x63\xca\x78\x7b\x5a\x5c\x62\xe6\xbd\x7f\x86\x58\x8f\x44\x28\xc0\x9c\x76\xe8\x8c\xf3\xef\x1d\x79\xaf\x6e\x07\x7b\xe8\x1c\x17\x40\xac\xd9\x54\xb6\xda\xe0\x4a\xf7\x8d\xa2\x37\x86\x21\xae\x9b\x0b\xef\x30\xaf\x80\x2f\xad\xd2\x20\xab\x64\xbc\xf4\xbd\xbb\xb3\xf8\x55\xf1\xeb\xbe\xd5\xa9\xea\x8b\x6a\x6a\x6a\xbc\x1d\xe7\x28\xf4\x13\x70\x2c\x29\x29\x89\xd8\x23\x01\x3b\x4e\xf2\x4f\xbe\x0f\x77\xea\xba\xc0\xb9\xef\xec\xfc\x07\x0e\xc4\x9f\x1f\x73\x61\xc3\xce\x42\x59\xe7\xb8\x5c\x2e\x97\x7b\xb5\x15\x6c\x5d\xe7\x8a\xff\x16\xe9\x8b\x75\xae\x74\xc6\x13\x82\x72\xba\x5a\x3d\xbb\x32\x66\xfd\x98\xdb\xe7\x10\x48\x19\xc4\xae\xfb\x56\xa7\x45\x4c\xfb\x73\x61\xf7\xd6\xdb\x6c\x7b\x09\xd1\xe0\x97\x81\x7c\x40\x9f\x00\xeb\x8c\xd9\xbb\xa7\xf5\xb7\x4b\xf0\xde\x3e\xb5\x5a\xed\x05\x98\xd7\x9d\xfa\xc1\x91\x69\x63\x99\xbd\x7b\x1d\x94\x75\xee\xa7\x56\xab\xf5\xee\xcc\xda\xb3\xc7\x15\xff\x0d\x95\xdd\xb9\x10\xdb\xce\x96\x77\x90\x31\xe8\xbd\x4a\x64\xd9\x7e\x3f\xde\x27\xdf\xcb\x95\x67\x5e\x0f\x3e\x06\x94\x95\xcb\xe5\x34\xa4\xad\xe7\x75\xe4\xbd\x76\xc0\xc2\x3d\x7a\xdd\x24\xdc\x77\xaa\xae\xa6\x55\x06\x75\x26\x26\x26\x52\x74\xea\xfa\x40\x0b\xe7\xd8\x61\xfb\xf3\x02\x78\x2f\xfb\xe4\xc9\x3a\x55\x4b\x10\xb9\xcf\x66\xa8\x32\xc5\x0d\xc4\x5d\xfc\x96\x8c\x05\x7a\xd9\x7f\x3d\xa5\xd7\x34\x04\xba\xb2\x8b\x08\x21\x9f\xae\xf4\x77\x0f\xbb\xf2\xf9\xea\x54\x2d\x2c\xd0\xbf\xd9\xf2\x0f\xb6\x08\xe9\x50\x50\x65\xcc\xfa\x6f\x3d\xe5\xbf\x2a\x6e\x1d\xf8\xeb\x8b\xf3\xf2\xf2\xa0\x6c\x70\x37\xef\xf0\xf9\x29\xfe\x77\xfc\xf9\x7f\xe8\x35\x0d\x5c\x88\xf1\x81\x0f\xd0\x8f\xfa\xea\xce\x60\x43\xb5\x29\x54\xa1\xa8\xa4\x39\x62\x34\xf4\x59\x5b\x53\xe7\xdf\x5c\xf2\x82\xa8\x49\x66\xe5\x56\x55\x56\x7b\xbb\x5b\x2f\x83\x39\x61\xe6\x1f\x9c\xe6\xf7\x59\x23\x47\xef\xe8\x35\x0d\x71\x73\xe1\x1f\xe6\xab\x4e\x8b\x22\x88\xe7\x3f\x3c\xe4\x5f\x1e\x36\x7c\x43\xa7\x23\xf6\x02\x29\xf5\xd5\x46\xa1\x2b\x3c\x6e\x95\x6c\xea\x05\xfc\x27\xdb\xf1\xf3\xf3\xc3\xdc\xc5\x37\x80\x17\x60\x73\x01\x57\x67\x5a\x0b\xb1\xf3\x7f\xd4\x0d\xff\x09\x73\xe1\x1f\xc6\x42\xa7\xd5\x87\x4f\x7b\xff\xdb\x4c\x29\x74\xcb\x4d\x9d\x0e\x05\x2b\x95\x4a\x8a\xa1\xd2\xcc\x77\xc5\x7f\x7b\xc1\x56\x0b\xf8\x22\x60\x53\xed\x6b\x1e\x3e\xe4\xbe\xa9\xe3\xda\x1b\xf1\xfe\x3c\xfb\x1e\x2c\xc8\x0b\xe6\xb0\xbb\x38\x08\x21\xe4\xdd\x25\x78\x77\x9a\x3d\x21\xf4\x5f\xdd\xcc\x01\x3f\x65\xb6\xfc\x83\x3d\x47\x3a\x14\xa0\x88\xdc\xe4\x16\xf7\x9d\x53\x65\xf4\x86\x51\xd2\x87\xd1\xd6\xea\xfc\xfb\x92\x46\x2e\x4d\xf1\x45\xa2\xaf\xde\xac\x57\xb6\x47\x0b\x85\x42\xc2\xae\x20\xad\x9e\xdf\x24\x1b\xb2\x36\x97\x3e\xbf\x56\x5f\x6b\xc8\x87\xb2\x20\x77\x90\x0d\xb1\x0f\xab\x43\x09\x7a\x75\x93\x42\xaf\x69\x28\x45\x08\x45\x80\x2c\x5c\xad\x07\x81\xef\xdb\x99\xb5\x77\xa7\x2b\xfc\x33\x54\x76\x49\xec\xe7\x3f\x67\x4d\x80\x61\x4a\xfe\xe0\x56\x4f\xf9\xaf\xc9\xe8\x5b\x4b\xea\x36\xe8\x5c\xbd\xb2\x3d\xdc\xc2\x3d\x7a\x60\x28\xfa\xca\x0f\x7d\x49\x1f\x8f\x34\xca\x06\x85\x60\xab\xa5\x52\x29\x55\xaf\x6e\x12\xf6\xb2\xce\x7c\x3f\x89\x0d\xb1\x9f\xdd\x80\xd8\x15\xfc\x1f\xc0\x05\xbd\xa6\x51\x68\xe1\x7e\x78\xd5\x1a\x39\x4a\xbc\x8b\xc3\x24\x7c\xeb\x24\xd2\xe9\x19\xae\xe2\xc1\xe2\xe2\x62\x5a\x7b\xc1\xb6\xd5\xae\xf8\x6f\x2e\x59\xd3\x0c\xbf\xcf\x85\xff\xc8\xc8\x48\x8a\xb6\xc6\x10\xae\x58\xf6\xf2\x4f\xf7\xe3\x5d\xb1\x7c\xf3\x98\x4e\x5d\x1f\xec\x88\x51\x80\xa1\xc0\x2f\xd8\x67\xf0\x1f\x19\x0c\x06\x85\xb4\xff\x9d\x59\x7b\xf7\x3b\xf7\xb5\x9b\x7b\xe4\x9c\xdd\xfe\x2f\x34\x65\xec\x9f\x66\xff\xda\x56\xbe\xbc\x16\xf4\xc2\xb9\x9f\x10\x3b\x36\x97\x3e\xaf\x72\xc5\x7f\x47\xee\x8e\x57\xc1\x26\xcd\x75\x2d\x15\xe2\x8e\xda\xb2\xd6\x74\x45\xd8\xf0\x3f\xdc\xf2\xbe\xec\xe5\x1f\x6a\x2b\x5a\x38\x19\x19\x19\xf7\x9d\x67\xe0\x87\xba\xf3\x7f\xc0\xe7\xb1\x9f\xa3\x58\xd4\x9f\xf0\xe9\x34\xff\xc7\xcc\x3b\x74\x0c\xf0\xc2\xb9\xce\xb8\xb8\x38\xd0\x35\x96\x2b\xbc\xe9\xe6\x1e\x39\x0f\xf5\xcd\x75\xef\x1d\x62\x73\xd0\x39\xad\xb2\x21\x4c\xc9\xb5\x6e\x95\x87\x0d\xff\x20\x5f\xb2\x6d\x02\x92\x62\xd9\xf0\x98\x92\x37\xb4\x51\x5b\x63\x08\x06\xac\xf2\xf4\x99\x2a\x98\xc7\x9d\x59\x7b\x37\x4f\xeb\x6b\xea\x91\x23\xe0\xcb\x00\x8f\x3d\xc9\x27\xa6\xad\x87\x75\x66\xbd\xe9\xd2\x97\x25\xd6\xbb\x75\x28\x90\x7c\xaf\xe5\x14\xcc\x89\xb9\x7c\x0b\x69\xeb\x58\x0f\x1a\xfb\xdb\xdf\x43\x4b\x55\xab\xd4\xde\x5a\xa5\x61\x91\xb6\xc6\xb0\x08\xae\x41\x3f\x66\x1b\x03\x02\x3e\xea\xd5\x4d\x8b\x7b\x59\xa7\x47\xc8\xf3\xc8\x03\xf1\x17\xae\xd7\x57\x77\x46\x83\xef\x03\xf1\x4c\x63\x45\x1f\x7f\x28\xfa\xca\x2f\xf7\x74\xe3\xc2\x37\x75\xaa\xd6\x30\xb0\xcb\xce\xf5\x91\x6b\xa8\x66\xfe\x7b\x07\xa7\xcf\x81\xaf\xf1\xe6\x92\xe7\x4d\x0f\x73\xaf\xf1\x89\x27\x9e\xc0\xe6\x1a\x4f\x91\x04\x38\xaf\x52\xaa\xbd\x1b\xcb\x07\xb9\x4d\x65\xab\xd3\x6b\x55\x88\xf0\x0b\x49\x7e\x04\x02\x01\xa5\xbe\xa6\x2d\xb8\xbd\x60\x2b\x6a\x5b\xf9\xb2\x12\xa9\x1a\x02\x66\xb2\xe3\x30\x0e\x2d\xc5\x2f\x21\x57\x18\xd0\x9d\x7a\x18\xe6\x40\xb0\x2b\xd9\xfd\x9e\x04\xe3\x41\xfe\xff\x08\x95\x4a\x25\xf6\x41\x20\xf6\x87\x04\x38\x09\x31\x04\xf4\x19\x64\x75\xbf\x77\xfe\x01\xee\xea\x6b\x1b\x42\x87\xa2\xaf\x4c\xdb\x73\x05\xfb\x51\x5f\x6d\x94\xc1\xdc\x79\x88\xef\x38\x7b\xa8\x14\x15\x15\x45\x81\xb8\xc7\x1e\x2f\x2d\x06\xcc\x26\xf5\xc1\x13\x02\x59\x2a\x95\x4a\xef\x2e\xc1\x81\x69\x76\xc5\x16\x5b\x1d\x80\xd8\x3a\x34\x3e\x3e\xfe\x0f\xa5\x03\x18\xf9\x5e\x26\x84\x02\xea\x95\x46\x8d\x31\x67\xe7\x11\xa3\x68\xd7\x51\x43\x55\x97\x01\xe4\x30\x9b\x73\x32\xe0\x23\x36\x28\x2c\xe9\xae\xde\x93\x6f\x8d\x1c\x9d\x68\x90\xf7\x36\x82\x5c\x1f\xc6\xfb\xbe\x1f\x26\x29\x14\x0a\x62\xdd\x7e\x28\xfa\xf2\xed\x55\xf7\xd6\xad\xee\x34\x96\x0f\x34\x43\xcc\xec\x29\x6e\x81\x6f\x08\xfc\x59\xb8\x47\x5d\xae\x03\xf6\x25\x7d\x3c\x86\xb4\x75\x3c\xf0\xd1\x3c\x5d\x57\x7e\xd4\x44\xfa\x03\x5d\xfc\xf7\xa6\xc5\x2f\x16\xce\xb1\x8b\xa0\x17\x3e\x3e\x9e\xbf\x1a\x18\xec\x9c\x4d\x07\x46\x5d\x9e\xdd\x33\x09\xf7\x9d\x40\x08\xd1\x73\x72\x72\xa8\x7f\x04\x2c\x80\x71\xd0\x6a\xb5\x30\x66\xa7\x9c\xfb\xda\xcb\x3a\x7d\x09\x21\xe4\x3f\x1b\x5b\x03\x31\x12\xd8\xba\xae\xf4\x77\x5c\xc6\x03\xb6\x33\x08\x9b\x77\x00\x16\x80\xcd\xf8\x23\xc8\x00\xe2\xc1\xb6\x95\x2f\x1b\x9c\xfd\xb7\x8e\xbc\xd7\x7a\xe7\xe2\xbb\x83\xcd\xd0\xab\x9b\x82\x07\xe2\x3e\xfb\xc1\xa5\x0c\xe8\x5f\x4d\xb4\x14\xaf\xdb\x8c\x10\x0a\xcb\xcf\xcf\xa7\xfe\xde\xe7\x96\x7d\x7d\x7d\x89\x73\x3a\x1d\x39\xaf\x9b\x07\x19\x7f\xfb\x6e\x90\x71\xe9\xfb\xce\xac\xbd\x56\xb5\x4a\xe3\x33\xd7\x7d\x5a\xf0\xd5\x9a\xca\x56\x15\xb9\x9b\x07\x20\x83\x56\xc9\xa6\x9d\x48\x87\x18\x10\xe7\x3d\xca\x33\xba\xc4\x7f\xcc\xe5\xe7\x53\xb5\x5a\xad\x97\x3b\x3f\x19\xe2\x7d\xf0\xb3\x21\x96\x05\x59\x40\x4c\xf3\x20\xfb\xf3\xf6\x35\x38\x90\xe9\xa0\xbb\xf3\x68\xf0\x7d\x67\xd6\x9b\x27\x90\xb6\x4e\xa8\xd5\x6a\xfd\xa1\x6f\x0f\x53\x17\x00\xb7\x59\x2c\x16\x79\xd6\x94\xdd\x20\xef\x41\x08\xa1\xa0\xb9\xac\xc7\xcc\x85\x9e\x7a\xea\x29\x8a\x5a\xa5\xf6\x31\xa7\xfd\x79\x9f\x2b\xfe\x1d\x70\x66\xcc\x50\x69\x36\x02\x2e\x82\xbd\x81\x3e\x3f\xc8\x3b\x96\x41\xf6\x60\xb7\x89\xb3\x67\x08\x85\xd5\x2b\xdb\x91\x25\xe5\xa3\x51\x2b\xfd\x2b\xb0\x69\x26\x88\x6f\x9d\xde\x3f\xf5\xc8\x28\x38\x38\x98\xa2\xd3\x20\x7f\x0b\xf7\xe8\xb4\xf5\x51\xe7\xf9\x60\x12\xee\x1b\xa9\x53\xb5\xa8\x40\x0e\x5a\xad\xd6\x17\x74\x36\x26\x26\x86\xe2\x89\xbf\xe0\xeb\xeb\x4b\xe0\x0e\xcc\x3b\x62\xbc\x11\x0a\xd7\x6b\x1a\x65\xc6\x9c\x37\x8e\x0e\x45\x5f\x1d\x9f\x8c\x63\xe2\x3e\xbb\x51\xa7\x6a\x91\x3a\xef\x15\x3c\x4a\x82\x78\x4b\xa7\xd1\x13\xff\x8b\xb2\xea\x3e\x67\x33\x87\xa2\xae\x8e\x77\xa5\xbf\x7d\xbe\x41\xde\xd3\x8b\x74\x48\x08\x7c\x80\x0d\x86\xf8\x4a\x2a\x95\xd2\x40\x26\xe4\xfe\x1f\xd8\x50\xc0\x67\xe0\xc5\x7e\x7e\x3e\x0c\xe9\x10\xdf\x50\x65\x6a\xef\xcc\xda\x7b\x6a\x30\xe6\x8b\xdb\xae\xda\xe8\x49\x3e\x3e\x8a\x74\x7a\x56\x61\x61\xe1\x6f\xe6\x84\x80\xbe\x01\x9e\x76\x66\xbe\xb9\xce\xdd\xff\x28\x39\x63\x43\x7f\xc2\xa7\xbf\x98\x84\x6f\x9d\x6d\x29\x5e\xf7\xaa\xa1\xba\xb3\x1d\x69\xeb\x4a\x91\x0e\x89\xec\xfb\x7f\xe9\xc4\xb5\x56\x2f\xad\x57\x76\x34\x36\x97\xbc\x30\xdc\x99\xb5\xf7\x4c\x1f\x73\xe4\x27\x4f\xce\xbf\x76\x66\xed\xdd\xf7\x5b\x9d\xff\x25\x09\xf0\x00\xb0\xbe\xa5\x78\x5d\xc5\x60\xcc\xe5\x69\xef\xba\xbf\x9f\x3c\x88\xf7\xe0\xc7\xfe\x8d\xf8\x1f\x2e\xdb\x7f\x72\x7d\x7e\xcb\xdd\x3b\xf1\xef\x33\xd7\x6e\x77\xe4\xbe\x6e\x82\xbe\xfc\xd6\xfe\x07\xe0\x3b\xd8\x16\xdb\xda\xe4\x87\x07\x7f\xcb\xf3\xef\xab\x88\xe7\x00\x46\x2e\x36\xc8\x7b\x39\xa0\xfb\xbf\xe7\x79\x84\x90\x90\x10\xc2\xd6\x36\x97\x3e\x9f\xdf\xc7\x1c\xb9\xf8\xa8\xe5\x30\x10\xfb\xd9\xf7\x6d\xe2\x61\xa4\x56\xd5\x12\xcf\x3e\xfc\x11\xfc\x4e\xb0\xcf\x60\x8b\x6b\x6a\x54\xde\xcd\xd2\xb5\x92\x9e\xe4\x13\x27\xdc\xf9\x4b\x73\x49\xc4\x73\x1f\xcc\xb3\x9f\xb7\x89\xb7\xa0\x5a\x95\x9e\xf0\x2f\x66\x7b\x9e\xf3\xb7\x20\x98\x13\x0c\x06\x83\xd8\x6b\xa9\xaf\xee\x8c\xe8\xc8\x7d\xdd\xdc\xcb\x3a\x3d\x62\xa5\x7f\x35\x97\x67\x24\xee\xf4\x27\x9c\xbb\xdc\x99\xf9\xa7\xb5\x8d\x15\x7d\x6c\xf0\x01\xd8\x6c\xf6\x1f\x92\x6f\x57\x04\x7e\x70\x72\x72\x32\xc5\x7e\x86\x36\xa0\xa9\x6c\xb5\xb0\x23\xef\xd5\xd6\xae\xf4\x77\xb6\x5a\x52\x3e\x3a\x0c\x72\x81\x31\xed\x4f\x3c\x7b\xa9\x8f\x75\xe6\x9c\x85\x73\xec\x68\x97\xe0\xbd\x1d\xc6\x9c\x9d\xe6\x66\xe9\x5a\x71\x7d\x4d\x5b\x10\xcc\x2b\xf0\x65\xc1\xf7\xf8\x23\xe8\xf9\x5c\x09\xfc\x38\xe0\x21\x3e\x3e\x9e\xf0\xcd\x21\x4e\x13\x8b\xc5\x34\xc0\x6d\x48\x12\x89\x84\x26\x16\x8b\x09\x5f\x20\x31\x31\x91\x78\x37\xd8\x6c\x62\xf5\x7f\xd1\xbf\xe8\x5f\x34\x77\xc2\xef\x4f\x83\xc4\xab\x0a\xf0\x09\xfb\xcd\x63\x18\x46\xfc\x1d\xcc\x20\x86\xd9\xdf\x61\x80\xcd\xb7\xfd\x4c\xdc\x30\x8e\x09\x6e\x42\x7e\x73\x1e\x7e\x77\x1e\xdc\xbe\x00\xc7\x57\xe1\x38\x3e\x12\x82\xe3\x7f\x87\x62\x02\x7b\xad\x03\xb6\x7c\x1e\xf1\x67\x36\xb6\x7b\xf1\xb1\x81\xbb\xf3\x6d\xb9\xed\x3d\x0f\x63\x03\x13\x7e\xb6\xdf\xc7\x89\xfc\x7f\xf1\x71\xfb\x5f\xd1\x90\xf9\x4d\xa2\xba\xdd\xf6\xdc\xcf\xef\xa6\x00\xbf\x29\xb8\x4b\x5b\x70\x53\x80\x8f\x85\xdc\xa5\x2d\x18\x1b\xc0\x47\xfc\x6c\xf9\xe0\x82\x4d\x7e\x7e\x44\xbe\x00\x6a\x76\x95\xef\xc6\x1d\xee\x23\xca\x91\xf5\x38\xd4\x4b\xb6\x33\xa5\x1f\x93\xb9\xbd\x9f\x64\xbf\x49\x3e\x48\xbe\xee\xda\xf9\x25\xfe\xf5\x17\x1f\xbf\x27\x07\x52\x2e\xa4\x9c\x48\xb9\x91\x72\x1c\xc7\x42\xc6\xa0\xcc\x5d\x0c\xc3\xe6\x39\xc8\x1d\x1f\xc1\x30\x5b\x5b\x18\x46\x54\x71\x97\x1c\xd4\xb1\x10\x0f\x06\xf7\xff\x0f\x00\x00\xff\xff\x9f\xf0\xbc\x2c\xbe\x86\x00\x00") + +func web_uiV2AssetsFaviconIcoBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsFaviconIco, + "web_ui/v2/assets/favicon.ico", + ) +} + +func web_uiV2AssetsFaviconIco() (*asset, error) { + bytes, err := web_uiV2AssetsFaviconIcoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/favicon.ico", size: 34494, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsLoadingCylonPinkSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xd3\xcf\x6b\xdb\x30\x14\x07\xf0\x7b\xfe\x8a\xc7\xdb\x65\xbb\xd8\xb2\xe2\x05\xb3\x58\x81\x6d\x97\x5d\xb2\xc3\x56\x72\x57\xec\x17\x5b\xd4\x96\x84\xf4\x6c\x27\xfd\xeb\x8b\xdd\x1f\x94\x52\xe8\x2d\xed\x41\x42\x42\x7c\xbf\x48\x1f\x50\x19\xc7\x06\xce\x7d\x67\xa3\xc2\x96\xd9\xff\x48\xd3\x69\x9a\x92\x69\x9d\xb8\xd0\xa4\x52\x08\x91\xc6\xb1\x41\x18\x0d\x4d\xbf\xdc\x59\xa1\x80\x2c\x87\xb5\x84\xac\x40\x98\x4c\xcd\xad\xc2\xb5\x44\x68\xc9\x34\x2d\x2b\xcc\x11\x4e\xa6\xeb\x14\x7e\xa9\x37\x85\x3e\x4a\x04\x1f\x28\x52\x18\xe9\x67\xf4\x54\xf1\x3f\xcd\xc6\x29\xb4\xce\x12\xee\x56\x00\xa5\xd7\xdc\x82\xf3\xba\x32\x7c\x51\x28\x92\x02\x81\x83\xb6\xf1\xe4\x42\xaf\x70\x59\x76\x9a\xe9\xab\x00\xf1\x0d\xa1\x56\xb8\x97\xf3\x0d\x0e\x59\x01\x7f\x36\x70\xc8\xf2\xbb\xa5\x07\xa0\xd4\xd6\xf4\x9a\xe9\xe6\x29\x0d\x9a\x39\x98\xe3\xc0\xf4\x57\xf7\xf4\xd8\x35\x1f\x20\xf0\xc5\xd3\x8b\x72\x84\x51\x77\x03\xc5\xf9\x75\x62\x0b\x32\x9f\x67\x01\x02\xa1\x1e\x82\x42\x19\x11\x8e\xd4\x18\xab\x50\x20\x04\xf2\xa4\xf9\xb7\x1b\x2c\x2b\x34\xb6\xa6\x93\xb1\x66\xee\xb8\xa5\xcb\x7f\xdf\x19\xbb\xf4\x24\x12\x1e\x46\x0e\x22\x29\xb6\xaf\xf6\x08\x95\xee\xaa\xbd\xab\x49\x61\x5c\x32\x08\xe9\xc2\x91\xce\x1e\x6f\xc2\x7c\x7f\x17\x46\x3c\xc3\x14\xd7\x87\x49\xb2\xf8\x71\x36\xf2\xb3\xe3\xc8\x6b\xe1\x94\xf3\x77\xdd\xad\xee\x03\x00\x00\xff\xff\x70\xd5\x10\x78\xd7\x03\x00\x00") + +func web_uiV2AssetsLoadingCylonPinkSvgBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsLoadingCylonPinkSvg, + "web_ui/v2/assets/loading-cylon-pink.svg", + ) +} + +func web_uiV2AssetsLoadingCylonPinkSvg() (*asset, error) { + bytes, err := web_uiV2AssetsLoadingCylonPinkSvgBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/loading-cylon-pink.svg", size: 983, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsMstile144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x3c\x40\xc3\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x90\x00\x00\x00\x90\x08\x06\x00\x00\x00\xe7\x46\xe2\xb8\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x69\x90\x1c\x47\x76\x26\xf8\x3d\x8f\xc8\xc8\xb3\xb2\xb2\x32\x13\x75\x5f\x59\x28\x14\x0a\x27\x89\xb3\x41\x80\x40\x93\x68\x76\x83\x0d\x92\xad\x6e\xb5\x34\x23\x69\xa6\xa5\xde\x59\x8d\x64\x63\x2b\x8d\x6c\x4c\xbb\xa3\x95\xc9\xd6\xc6\x34\x63\x6b\xda\x31\x4d\x9b\x56\x1a\x69\x65\x52\x6b\xa5\xd6\x31\xad\xab\x4f\xb5\xd8\x64\xf3\x26\x01\x82\x47\x93\xe0\x01\xa0\x0a\xc4\x51\x55\x40\xdd\x57\x56\x56\xde\x19\x19\xe1\x6f\x7f\x64\x44\x66\x64\x56\x66\xa1\x00\xe2\xd2\xb6\xbc\xac\x2c\x22\x3c\xbe\x74\x7f\xee\xfe\xe2\xf9\xf3\xe7\xcf\xdd\x09\x80\x00\x20\xad\x6b\x6d\x90\xd6\x55\xd4\xc4\xd5\x3e\xd7\x62\x36\x92\xce\xad\x62\xd6\x7b\x7f\xb7\x31\xff\x1c\x1c\xe1\x76\x57\xd6\x46\xd2\xfb\xa7\x82\x11\x8e\x77\xa2\x4e\xdc\x8f\x2c\x86\x6a\xc0\x76\x70\x7e\x7d\xb5\x92\xc1\x7e\xe7\x8c\xbf\x1b\x12\xe6\x7e\x94\x3e\xf7\x1b\x4d\xf7\x1b\xe6\x9e\x86\x5a\xe2\xea\x11\x7b\xb7\x30\xf7\x83\x14\xbc\x2f\x31\xb6\x04\x92\x1b\xb8\xd6\x26\x5a\x4f\x32\xd5\xcb\xb4\x9e\x34\x5b\x0f\xe3\x7c\xae\x27\xed\xee\x05\xa6\x11\xb6\x5e\xf8\x51\xc6\xdc\x17\xe1\xbe\xf9\xba\x1c\x98\x5a\xbd\xa0\xf6\xb7\x3f\xb2\x18\x15\x6b\x25\x4c\xbd\x67\x34\xc0\xd4\x72\xe4\x7a\xa3\xb9\x9b\xc1\xd4\xe6\x71\xaf\x31\xf6\xfd\x7a\xdd\xdf\x8f\x24\x86\xea\x44\xde\xae\x50\xaf\xeb\xbb\x6f\x30\xdb\xb6\x6d\x13\x81\x40\x00\x2d\x2d\x2d\x65\x40\x30\x18\x44\x30\x18\xac\xfa\xd1\xd2\xd2\x12\xf2\xf9\x7c\xf9\x79\x75\x75\x15\xc9\x64\x12\xa3\xa3\xa3\xeb\xe5\x77\x5f\x97\xfd\x76\x62\xa8\x4e\xe4\xcd\x48\xa0\x3b\x89\xa9\x27\xe5\xea\x49\x85\xba\x57\x55\x55\x61\x18\x86\xdc\xbb\x77\xaf\x68\x69\x69\x41\x24\x12\x41\x73\x73\x33\x88\x48\x38\xf2\x72\xde\x83\x99\x05\x51\xdd\x6f\xca\xa6\x51\x32\x33\x88\x48\xda\x71\xc5\x62\x51\x66\x32\x19\xac\xac\xac\x20\x1e\x8f\xe3\xdd\x77\xdf\x5d\x4f\x57\x58\xaf\x3c\xff\x24\x31\xb5\x4a\x74\x6d\xb8\xdf\x86\x85\x0d\x31\x2e\x97\x0b\xe1\x70\x18\xb1\x58\x0c\x1d\x1d\x1d\x88\x46\xa3\x20\x22\x61\x31\x45\xa9\xab\x66\xa8\xaa\x24\xcd\x6d\x90\xcf\x53\x54\x42\xc1\xbc\x12\xf5\x18\x22\xec\x36\x44\xc8\xa7\x2b\x21\xcd\x24\xbf\xc2\xa4\x09\x49\x1a\x00\x48\x62\xc3\x14\xac\xe7\x55\xb9\x9a\x77\xc9\x64\xde\x25\x13\x39\x97\x5c\x4a\x6b\x66\x3c\xa7\x99\x89\x82\x22\xb3\xa6\x80\xce\x60\x03\x80\xe1\x60\x2c\xb9\xbc\xbc\x8c\xf1\xf1\x71\xcc\xcc\xcc\x60\x61\x61\x01\x52\xde\xe8\xe3\xfe\xa7\x19\x6e\xa6\x0b\xdb\xa8\x04\x91\x0d\xde\x6d\x14\xd3\x48\xaa\xac\xa1\x83\x88\x44\x4f\x4f\x0f\x06\x07\x07\xd1\xdd\xdd\x0d\x8f\xc7\x63\x4b\x15\x15\x0c\xcd\x25\xc9\x13\xca\xa9\xd1\xd6\x94\x36\x1c\x4d\xbb\x76\x45\xb2\xae\xe1\xe6\xbc\x3a\xe8\x29\x8a\x76\x55\x52\x50\x30\x3c\x25\x3c\x09\x80\x4b\xa9\x32\x50\x92\x42\x6c\xc7\xa0\x54\x4d\x6c\x97\x5d\x4a\x42\xde\x10\x9c\xc8\xb9\xcc\x99\x94\xc7\x9c\x58\xf4\x17\x2f\x2c\x05\x8a\xe7\x17\x02\xfa\xc5\x84\xd7\x88\x1b\x82\xf3\x20\xe8\x00\x0c\x00\x32\x93\xc9\xc8\xf9\xf9\x79\x8c\x8c\x8c\x60\x76\x76\x16\xcc\x7c\xcb\x92\xf5\x7e\xc3\x50\x0d\xb0\xb6\x11\x9d\x0d\xe6\x0c\xb5\x0c\xb0\x9e\xe4\x58\x2f\x9d\x9b\xc1\x94\x43\x38\x1c\xc6\xd0\xd0\x10\xfa\xfb\xfb\xd1\xd4\xd4\x64\x4b\x18\x55\x91\xf0\x85\xb3\xae\xce\xee\x84\xfb\xc1\xde\x15\xcf\x27\x37\xa5\xb5\xbd\xbe\xa2\x18\x24\x86\x0f\x20\x80\x19\x04\x02\x97\xf9\x81\x01\xa2\x12\x7b\x70\xe9\xbe\x1e\x86\x40\x16\x33\x55\x30\x00\x55\xd8\x0a\x5c\x4a\x9e\x90\xce\xba\xe4\x95\xf9\x26\xfd\xec\x64\x28\x7f\x6a\x3a\x54\x38\xbb\xec\x2b\xce\x98\xc4\x79\x94\x24\x94\x91\x4e\xa7\xe5\xd8\xd8\x18\x46\x46\x46\x90\x4c\x26\x37\x52\xdc\xfb\x3a\xdc\x09\x25\xfa\x46\x12\xe4\x46\x18\x27\x13\x95\xdf\x29\x8a\x22\x3a\x3b\x3b\xb1\x77\xef\x5e\x44\xa3\x51\xa1\x28\x8a\x60\x66\x4d\x61\xf2\x6d\x4a\x6b\xfd\x83\x4b\xde\xe3\x03\xcb\xde\xcf\x36\xe7\xd4\xdd\x0a\x23\x04\x26\x87\xe0\xc0\xc7\xbf\x87\xf5\x4c\x8e\x2b\xd6\xc1\x80\xa5\x49\x48\x26\x7c\xc5\xb3\x13\xe1\xfc\xf3\x97\x36\x65\x5f\x58\xf2\x17\xaf\x9b\xc4\x59\x00\xba\x94\x52\xce\xcc\xcc\xc8\x8b\x17\x2f\x62\x62\x62\xa2\xc4\xc0\xd5\x61\xbd\x7a\xb9\x6f\x30\xf7\xbd\x21\x51\x55\x55\xb1\x75\xeb\x56\x3c\xf8\xe0\x83\xf0\xfb\xfd\x76\xf7\xe4\x69\x2a\x28\xad\x43\x8b\xbe\xc7\x86\xe7\x7d\x5f\x0c\x67\x5d\x07\x05\x53\xa0\xd4\x86\xce\x56\xb6\x8b\x58\xea\x90\xa8\x2e\x27\x6c\x04\x53\xf9\xce\xaa\x31\xa8\xc1\x36\xc6\x98\xc4\xe9\x65\x7f\xf1\xed\x8f\x5a\xb3\xdf\xbc\xb4\x29\xfb\x42\xca\x6d\x2e\x80\x90\x07\x60\x2c\x2f\x2f\xcb\xf7\xde\x7b\x0f\x53\x53\x53\xd0\x75\x7d\x4d\x1d\xa0\xb1\x64\xbe\xe7\x98\xfb\x76\x18\xaf\xaa\xaa\xd8\xb6\x6d\x1b\x76\xed\xda\x85\x40\x20\x60\x4b\x9b\x40\x47\x52\x1b\x7a\x60\xa6\xe9\x5f\xf5\xc5\x3d\x9f\xd3\x4c\xea\x2c\x75\x2f\xf5\x1a\xbe\x3a\xdc\x19\x4c\xfd\xb0\x1e\x86\xc1\xd0\x15\x9e\x1a\x0f\xe7\xfe\xe1\x5c\x67\xe6\xaf\x67\x83\x85\x8b\x26\x71\x96\x88\xf4\x6c\x36\x2b\x4f\x9f\x3e\x8d\x89\x89\x89\x8f\xab\x47\xde\x35\x0c\xd5\x00\xd1\x00\xdc\xa8\xab\xd9\xa8\x42\x7d\x33\x18\xf4\xf5\xf5\x89\x03\x07\x0e\x20\x1c\x0e\x0b\x00\x1a\x49\x04\xfa\x57\x3c\x7b\xf7\x4d\x36\xfd\x62\x47\xd2\xfd\x98\xc2\x14\xa8\x53\xd0\x52\xa8\xdf\xee\x1f\x0f\xc3\x28\xf5\x88\xb5\x42\xe9\x63\x62\x4c\xe2\xf4\x4c\x73\xe1\xd9\xb3\xdd\xa9\xaf\x4e\x84\xf3\xef\x33\x21\xcd\xcc\xfa\xf2\xf2\xb2\xfc\xd6\xb7\xbe\xb5\x5e\x7d\xd7\x53\x70\xef\x09\xe6\x4e\x4a\xa0\x5b\x0a\x27\x4f\x9e\x14\x5d\x5d\x5d\x82\x88\x34\x62\xf8\x7a\x57\x3c\xfb\x0f\x5e\x0b\xfe\xbb\x8e\xa4\xf6\x19\x02\x3c\x8d\xbb\x21\x60\x2d\x57\xdc\x2e\x0c\x4a\x8a\x33\x35\xe2\x8c\x5b\xc7\x70\x69\xb4\x97\x9f\x0d\xea\xcf\xbe\xd5\xbf\xfa\x07\x93\xa1\xc2\xfb\x4c\xc8\x32\xb3\x7e\xed\xda\x35\xf9\xdc\x73\xcf\xdd\xd7\xe3\xff\xfb\xc6\x90\xb8\x6f\xdf\x3e\xb1\x73\xe7\x4e\xb8\xdd\x6e\x0d\x0c\x4f\x24\xe3\x1a\x78\x68\x22\xf8\x2b\xb1\xb8\xf7\x27\x14\x26\x5f\x09\x6e\x57\x7a\x85\xf8\x4a\x2c\x70\xa7\x30\x4e\x16\xa8\x27\xbc\x6e\x17\xc6\x24\x4e\x8f\x45\x72\x7f\xf7\x46\xff\xea\x7f\x8f\xfb\x8c\x09\x06\x67\x8b\xc5\xa2\xf1\xde\x7b\xef\xe1\x83\x0f\x3e\x70\x42\xd7\x1b\x76\xdf\x55\xcc\x3d\x37\x24\x6e\xda\xb4\x09\xc7\x8e\x1d\x43\x24\x12\x51\x99\x59\xf3\x1a\x4a\xeb\xfe\xeb\x4d\x3f\xf3\xc0\x4c\xe0\x3f\xb8\xa4\x08\xdb\xb8\x7a\x8d\xed\x7c\xbe\xdb\x18\x3b\xfe\x4e\x60\x8a\x42\x2e\xbc\xdf\x9d\xfe\x9d\x77\xbb\x53\x7f\x53\x70\xc9\x25\x00\xf9\xb9\xb9\x39\xf9\xea\xab\xaf\x62\x75\x75\x15\xf7\x53\x50\x50\x29\x17\xd7\xf9\x77\xc6\xdb\x65\x94\x35\x71\x5c\xf3\x2c\xeb\xdc\xd7\xa6\x23\x01\xf0\xd6\xad\x5b\xe9\xd1\x47\x1f\x45\x53\x53\x93\x06\x46\x53\x2c\xee\x3d\x74\x72\x24\xf2\x7b\x03\x71\xef\xbf\x56\x58\xf8\xca\xa6\x3c\xcb\xb8\x47\x55\xc6\x3d\xa0\x2a\xe6\x0e\x62\x9c\x16\x9f\x46\xe1\x76\x62\x04\xc3\xdf\xb5\xea\x3e\x3e\xb0\xec\xfd\x44\xc2\x57\x1c\x5b\xf5\x98\xcb\x81\xa6\x80\x1c\x1e\x1e\x36\x93\xc9\x24\x56\x56\x56\x24\x2a\xf5\x58\xef\x8a\x75\xde\xdd\x56\x8c\x82\x92\x64\xb0\x4b\x26\x6a\xae\x70\xbc\xb7\x7f\x58\xcf\x5a\xe2\xc4\xd8\xbf\x41\x0d\xb6\x0a\x73\xe2\xc4\x09\xf1\xc0\x03\x0f\x08\x45\x51\xbc\x1e\x53\xb4\x1f\x1b\x6b\xf9\xf7\x47\xc7\x42\xbf\xed\xd7\xc5\x00\x11\x11\xc0\xa0\x72\x63\xda\xa9\x11\x88\x4b\xcf\xb6\xb5\xf8\x6e\x60\xec\xa6\x27\x50\x09\xc3\x8e\x67\xdc\x31\x0c\xf9\x0c\xa5\x67\xcb\x82\xef\xc7\xbc\x86\x50\x67\x83\x85\x4b\x52\xa1\x42\x2c\x16\x93\xa6\x69\x62\x7e\x7e\xde\xae\xdf\x7a\xd7\xf5\xde\xdd\x56\x8c\x2d\x81\x6c\x26\xb0\x19\xc0\xf9\x99\xd4\x93\x46\xa8\xc1\xd5\x8b\x77\x32\x54\x19\xd3\xdc\xdc\x2c\x7e\xfc\xc7\x7f\x9c\x5a\x5b\x5b\x55\x30\xfc\xed\x29\xf7\xee\x27\x46\xa2\xbf\x37\xb0\xec\xf9\x19\x01\xd2\xaa\x94\x50\xb2\x74\x10\x22\x4b\xf1\xb4\x52\xbd\x4d\x18\x2e\x63\xac\x67\x00\x52\x40\x32\x81\xed\x7f\x54\x5a\xd4\xaa\x32\x2a\x25\x41\x54\x89\xb3\xee\x99\x4a\xef\xd8\xce\xfe\x36\x60\x14\x90\xbb\x3d\xa5\x1d\xe9\x4d\x78\x76\x2c\x34\x15\xcf\x65\xdd\x32\xde\xde\xde\x6e\x8c\x8d\x8d\xa1\x50\x28\x34\x92\x18\xb5\xd2\xfe\x8e\x61\x08\x0d\x0c\x78\xb8\x3d\xba\x4f\x55\x88\xc5\x62\x38\x7e\xfc\x38\x14\x45\xd1\x88\x11\xdc\x3e\xe7\x7f\xfc\xe8\x58\xe8\xb7\x3c\x86\xe8\xb4\x31\xb6\x0d\x85\xeb\x8c\x64\xc8\x7a\x5f\xba\xbf\x15\x0c\x50\x14\xac\x67\xdc\x66\x7a\xc5\x6b\xc4\x93\x1e\x23\x91\xf4\x98\x89\xac\x66\x26\x73\x2e\x99\x2d\xa8\x32\x6b\x12\x1b\x52\xc0\x00\x00\x21\xed\xc9\x57\xe1\xf1\x16\x45\xc0\xaf\x2b\xc1\x60\x5e\x0d\x35\xe7\xd4\x70\x28\xaf\x86\xfc\xba\x08\x28\x92\x54\x38\x72\xae\xba\x32\x57\x7f\xcb\x1f\x13\x33\x15\x2a\xfc\xdd\x37\x76\x2f\xfc\x32\x80\xc4\xdb\x6f\xbf\x6d\xd4\x28\xd6\xf7\x24\xa8\x68\x6c\xec\x5b\x6f\xf8\x58\x6f\x44\x55\x0f\x53\x7e\x1f\x8b\xc5\xc4\xa7\x3e\xf5\x29\x21\x84\xd0\x5c\x26\x45\x8f\x8c\x35\xff\x2f\xbb\x66\x03\xff\x5e\x30\x79\xaa\xb5\x02\xe7\x67\x0f\x7b\xda\xc9\xc1\x18\x56\xfc\x06\x30\x12\x8c\xbc\x4b\x66\x17\xfd\xc5\xb9\xe9\x50\xe1\xfa\x5c\xb0\x30\xb1\xec\x2b\xce\xe4\x5d\x72\xc5\x24\xa4\x41\xc8\x02\xc8\x03\xd0\xad\x7f\xa3\x4e\x99\x54\xc7\xbf\x07\x80\x07\x0c\x9f\x22\x11\xf0\xeb\x4a\x24\x9a\x71\x75\x77\x24\xdd\xfd\x5d\xab\xee\xde\x48\xc6\xd5\xaa\x99\xd0\xca\x24\xd8\xf3\x6c\x35\xe5\x73\x14\x60\xc3\x98\x94\xdb\x58\x78\x71\xcb\xca\xb7\xad\x79\x3f\xb8\xdd\x6e\xbb\xfe\x6f\xd5\xde\x76\x5b\x30\x6a\xcd\x4b\x38\x00\xeb\x19\x12\xeb\x11\xde\xd0\xaa\x7c\xf8\xf0\x61\xb1\x63\xc7\x0e\x41\x44\x1e\x77\x91\xda\x4f\x7c\x14\xf9\xcd\xd8\xb2\xe7\xa7\xc0\x10\x55\xee\x37\xe5\x0f\x8f\x51\x96\xe1\x70\x7c\x8b\xf6\xfc\x16\x1a\x63\x00\x20\xa3\x99\xe9\x89\x70\xee\xca\x58\x24\x37\x32\x17\xd4\xaf\x64\x5d\x72\x9e\xc1\x09\x22\x4a\x30\x73\x16\x40\x9a\x88\xca\x8c\xc3\xcc\x06\x11\x49\x66\x96\xd6\xb5\x94\x66\x89\x38\xc1\xcc\x02\x80\x20\x22\x95\x99\x35\x00\x1e\x53\x21\xcf\xaa\xc7\xf0\x25\xbd\x66\x70\x2c\x9a\x0f\x12\x23\x1c\x28\x28\x1d\xdd\x09\xf7\xd0\xc0\xb2\x77\x7b\x4f\xc2\xd3\xef\x36\x84\x07\x5c\xe9\x35\x9d\x43\x91\xaa\x61\xfc\x0d\x30\x45\x21\xf5\x17\x86\x56\xfe\x22\xe1\x35\xae\x5b\xf4\xca\x44\x22\x51\xaf\xaa\x45\x9d\xfb\x7a\x4c\x71\xdb\x30\x4e\x06\xaa\x05\xc8\x3a\xf7\xf5\xe2\xd6\x7d\x76\x30\x8f\x2f\x98\x53\x06\x4e\x8e\x46\xbe\xd2\x96\xd2\x8e\x13\x08\x20\x47\x07\xc3\x6c\x55\xa2\x83\x49\x88\xcb\xf2\x86\x9c\xf1\x16\xcc\xc6\x00\x80\xae\x48\x7d\xaa\xb9\x30\x31\xd2\x9e\x79\xe7\x7a\x4b\xfe\x82\xae\xf0\x0c\x08\x71\x00\x71\x00\x49\x02\xa5\x01\xe4\x89\x68\x8d\xb4\xb1\xfd\x78\x6c\x67\xb2\x5a\xa7\x32\xa7\x13\x9a\xf5\x4e\x05\xa0\x5a\xd2\x40\x03\xe0\x63\x42\x20\xe5\x31\x43\xa3\xed\xd9\x1f\x8e\xb6\x65\xa3\x3e\x5d\xf4\x0c\xc4\xbd\xbb\xb7\xcf\xf9\xf7\xb6\xa5\xb4\x4e\x85\x49\x38\x3f\x0e\xaa\xcb\x3d\x40\x2d\x46\x82\xf1\x56\x5f\xf2\xfb\xd7\x5b\xf2\xa7\x40\x98\x03\x90\x2d\x16\x8b\xf2\xd2\xa5\x4b\x1b\x69\x93\x7a\xf1\xb7\x15\x63\xeb\x40\x77\xc4\x48\xf8\xd0\x43\x0f\x61\xe7\xce\x9d\x82\x88\x7c\xcd\x39\x75\xf0\x73\xe7\xa3\x7f\x18\xce\xaa\x07\xcb\x5d\x8f\x05\x74\x76\x4a\xb5\xb6\x92\xaa\x2f\xb5\x06\x03\x00\x05\xd5\xcc\x8f\xb6\x65\xdf\x3f\xd7\x91\x3e\xb3\xe2\x33\x2e\x73\xa9\x92\x17\x00\x24\x00\x24\x51\xea\xa2\xf2\xb6\x94\xb1\x68\x94\xb3\xb3\xb3\x30\x0c\x03\xf6\xf5\xfc\xf9\xf3\xb2\xb5\xb5\x55\x2c\x2c\x2c\xc8\xe6\xe6\x66\xb1\xba\xba\x2a\x9b\x9b\x9b\x85\xcb\xe5\xc2\xd2\xd2\x92\xdc\xb9\x73\xa7\xf0\xf9\x7c\x88\x44\x22\xf0\xfb\xfd\x08\x87\xc3\x76\xb9\xed\x7f\x0d\x56\x17\xc7\xcc\x41\x22\x8a\x02\x88\x0a\x89\xce\xb6\x94\xb6\x63\xcf\x74\xd3\xc3\xb1\x65\xcf\x90\x4b\x0a\x75\x6d\xb9\xea\x95\xb5\xf4\x7c\x25\x9a\x3d\xfb\xec\xb6\xe5\xdf\x31\x05\xde\x07\x30\x05\x20\xfd\xf2\xcb\x2f\xcb\xcb\x97\x2f\xdb\xf5\xfd\xff\x4f\x43\xe2\xe1\xc3\x87\xb1\x63\xc7\x0e\x01\xc0\x17\xcd\xba\x76\x3e\x75\x7e\xd3\x1f\x34\xe7\xd5\x07\x6f\x54\x69\x76\x1c\xb0\xb6\x32\xed\x38\x06\x23\xe7\x92\xd9\x0b\xed\x99\x77\xde\xef\x4a\xbd\x92\x71\xcb\xab\xcc\x3c\x83\x0a\xe3\xd8\xd2\xc6\x60\x66\x99\xcb\xe5\xe4\xe4\xe4\x24\x66\x67\x67\xb1\xb2\xb2\x82\xc5\xc5\xc5\xdb\x32\x48\xe8\xea\xea\x42\x4b\x4b\x0b\x3a\x3a\x3a\xd0\xda\xda\x6a\x7b\x0b\x38\x99\x29\xc0\xcc\x61\x00\xad\x04\xea\x0e\x67\xd5\x6d\xfb\x27\x83\xc7\x07\x17\xbd\xdb\x35\x29\xb4\x7a\x75\xe0\xfc\x38\x96\x7d\xc5\x99\x6f\x3e\xb0\xf0\x5b\x39\x4d\xbe\xc9\xcc\x13\x00\x92\xa3\xa3\xa3\xc6\xe9\xd3\xa7\x6f\x40\xfa\xdd\x0b\xb5\x6d\xb7\x5e\xd8\xa8\x24\x92\x7b\xf6\xec\x11\x07\x0e\x1c\x10\x00\x7c\xc1\x9c\x32\xf8\xf9\x73\x9b\xbe\xda\x92\x73\xed\x2d\x41\xaa\x47\x45\x25\x22\xd6\x8e\x96\xea\x19\xf7\x18\x0c\x53\xc0\x18\x6d\xcb\x9c\xfd\x61\x4f\xf2\x85\xa4\xc7\x1c\x05\x61\x0a\x25\xc6\x89\x03\xc8\xc2\xd2\x69\x56\x57\x57\xe5\xf8\xf8\x38\xc6\xc6\xc6\xb0\xbc\xbc\xdc\x48\x67\xb3\xcb\x53\x6f\xb2\xf8\x46\x98\xda\x0f\x4f\x76\x76\x76\x8a\x58\x2c\x86\x58\x2c\x06\xaf\xd7\x6b\x3b\xba\x79\x00\x04\x00\x84\x01\xb4\x83\xd1\xdb\x96\xd2\x1e\x38\x74\x2d\xf8\x99\xbe\xb8\x67\x90\x6a\x98\xd4\x2e\x77\x41\xe1\xec\x77\x76\x2f\xfe\xde\x5c\x50\xff\x01\x80\x4b\x00\xe2\xf1\x78\x5c\xff\xf6\xb7\xbf\x0d\xd3\x34\x37\x44\xcf\xdd\xc0\xd0\x0d\x80\xf5\x2a\x11\x35\xef\xaa\xe2\x63\xb1\x98\x38\x7e\xfc\xb8\x50\x14\xc5\x17\xc8\x2b\x03\x3f\x76\x3e\xfa\x07\xd1\x8c\xeb\xf0\x8d\x5c\x20\xd6\x28\xd0\xe0\x8a\xb1\x84\x19\x4c\xc0\x74\xb3\x3e\x71\x7a\x20\xf1\x8f\x73\x4d\xfa\xbb\x20\x5c\xb7\xa4\x4e\x9c\x88\xb2\xcc\xac\x1b\x86\x61\x8c\x8d\x8d\x61\x74\x74\x14\x0b\x0b\x0b\xeb\xe5\x76\x47\xcc\x14\xce\x30\x30\x30\x80\xcd\x9b\x37\xa3\xbf\xbf\xdf\x96\x4a\x36\x23\x45\x01\x74\x0a\x50\xff\xe6\x25\xef\x91\x23\xe3\xcd\x8f\x87\x72\x6a\x94\xca\x2e\x90\x04\x29\x58\xbe\xb8\x65\xe5\xeb\x17\xda\x33\x7f\xcd\xe0\x11\x22\x5a\x48\xa7\xd3\xf9\xa7\x9f\x7e\xfa\xbe\x9b\xca\x70\xb6\x6a\xc3\x51\xd4\x46\x43\x6b\x6b\xab\x78\xea\xa9\xa7\xa0\x28\x8a\x4f\x33\xa8\xf3\x73\xe7\xa3\xbf\xdb\xb5\xea\x7e\xbc\x6a\xf4\xe4\x08\xb5\x23\x91\x7a\x0f\x0c\xa0\xa0\xca\xfc\xdb\xbd\xc9\x97\x3e\xec\x4c\xff\xc0\x50\xf8\x0a\x80\xeb\x00\x96\x50\xea\xaa\xf4\x74\x3a\x6d\x9c\x3b\x77\x0e\xe7\xce\x9d\xab\x47\x7f\x23\xe9\xf2\x71\x31\xeb\x49\xe4\xf2\x35\x10\x08\x60\xfb\xf6\xed\xd8\xb9\x73\x27\x54\x55\xb5\x25\x52\x10\x40\x2b\x18\xbd\x1e\x43\x0c\x1f\x1e\x6f\xfe\xb1\xed\x73\xfe\xfd\x2a\x93\xca\x60\x9c\xef\xc8\xbc\xf6\xd2\xe0\xca\x1f\x72\x49\xef\x99\x91\x52\x66\x5f\x78\xe1\x05\xe9\xf0\x13\xba\x65\x7a\x6e\x37\xe6\xb6\x19\x12\x83\xc1\x20\x9e\x78\xe2\x09\x34\x35\x35\x79\x84\x44\xf4\xd3\x1f\x85\xff\xd3\xf0\x82\xef\xdf\x50\x8d\x0a\x0c\x54\x04\x0d\x88\xcb\xdd\x53\x05\xc3\x55\xdd\xd7\x7c\x93\x7e\xfd\xa5\x2d\x2b\xdf\x98\x0f\xe8\x3f\x24\xa2\x31\x66\x9e\x03\x90\x20\xa2\x7c\x26\x93\x31\xde\x7f\xff\x7d\x7c\xf4\xd1\x47\x30\x0c\xa3\x1e\x5d\x1b\xd1\xed\x3e\x8e\xfe\xb7\xe1\xe0\xf5\x7a\xf1\xc0\x03\x0f\x60\x78\x78\x18\x2e\x97\x4b\x23\x22\x0f\x33\x87\x89\xa8\x13\x8c\xc1\x58\xdc\x73\xf4\xf8\xe5\x96\xcf\x67\x34\x33\xfe\xad\xdd\x8b\xff\xb5\xa0\xc8\xb3\x44\x34\xc1\xcc\xc9\x0f\x3f\xfc\x50\xbe\xf5\xd6\x5b\xb7\x8b\x94\xdb\x1a\xea\xf5\x2b\x1b\x91\x44\x6b\x30\x27\x4f\x9e\x14\xdd\xdd\xdd\x2a\x18\xe1\x4f\x5c\x0b\xfe\xc2\xa1\x6b\xc1\xff\x04\x50\xc3\x06\xb0\x87\xee\xa0\xfa\x5d\x1b\x13\xcb\xf3\xed\x99\xb7\x4f\x0f\x24\xfe\x5e\x57\x78\x04\x84\x09\x58\x52\x47\x4a\x69\x8c\x8c\x8c\xc8\x33\x67\xce\xd4\xb3\x59\x35\xa2\xf1\xbe\xc1\x9c\x38\x71\x42\xf4\xf5\xf5\xd9\xca\x76\x00\x25\xdd\xa8\x3b\x98\x57\xfa\x09\xd0\x57\xbd\xe6\x87\x00\x26\x00\x24\xae\x5d\xbb\x66\xfc\xe0\x07\x3f\xb8\xa1\xde\x79\xaf\xca\x55\xdb\x85\xc1\x01\xa8\xd5\x83\xea\xe9\x46\x12\x00\x8e\x1c\x39\x22\x76\xec\xd8\xa1\x02\x08\xc4\x96\x3c\x9f\x79\x62\x34\xf2\x55\xc5\xa4\x40\x95\x3d\xa5\x76\xfa\x95\x6c\xdb\x4f\x0d\x86\x4a\x86\xb3\xd7\x36\x27\xfe\xf1\x7c\x47\xe6\x69\x09\xbe\x48\x44\x53\xcc\x9c\x00\x90\x5d\x58\x58\x90\x6f\xbd\xf5\x16\xe6\xe6\xe6\x6a\xca\x7a\xdb\xf4\x9a\xf5\x30\x8d\xf4\xc3\x9b\xc6\xc4\x62\x31\x71\xf8\xf0\x61\xf8\xfd\x7e\x95\x99\x7d\x44\x14\x44\x69\xd4\x66\xa0\x24\x61\x93\xe9\x74\x5a\xff\xfa\xd7\xbf\xfe\xb1\xf3\x8a\x44\x22\xc2\x1a\x48\x7c\xac\x74\xea\x61\x6e\x66\x14\x56\x37\x74\x75\x75\x89\x93\x27\x4f\x0a\x22\xf2\x85\xb2\xea\xce\x9f\xfc\xa0\xf5\x7f\xf8\x74\xa5\xdf\xe9\xa9\x5c\x31\x12\x3a\xa6\x7e\xca\x6b\xaf\xaa\x31\x19\x97\x4c\x3e\xbf\x35\xfe\x77\x13\xe1\xfc\xf3\x20\x5c\x02\x30\x03\x20\x69\x18\x86\xfe\xce\x3b\xef\xe0\xc3\x0f\x3f\xfc\x58\x7a\xda\xfd\x16\x8e\x1d\x3b\x26\xb6\x6e\xdd\x5a\x5e\x9a\x84\x52\x03\x19\x85\x42\xc1\xf8\xf3\x3f\xff\xf3\x5b\x2e\xeb\xe1\xc3\x87\x45\x2c\x16\x83\xdb\xed\x86\xa2\x28\x42\x4a\x89\x7c\x3e\x2f\x67\x67\x67\x31\x3a\x3a\x8a\xd9\xd9\xd9\xdb\x52\x8f\x1f\xdb\x90\xf8\x73\x3f\xf7\x73\xc2\xed\x76\x7b\x54\x93\x3a\x9f\x3a\x1f\xfd\x9d\xbe\x84\xe7\x49\xa0\xb1\x91\xb0\x91\x6d\x07\x60\xa4\x35\x33\xf9\xbd\x1d\x4b\x7f\x32\xdf\x54\x3c\x65\x31\xcf\x1c\x33\xa7\x53\xa9\x94\xf1\xea\xab\xaf\xda\x85\xbe\xab\xc3\xd4\x1b\x60\x9c\xe1\x96\x31\x5d\x5d\x5d\xd8\xb6\x6d\x1b\x06\x06\x06\xc0\xcc\x18\x19\x19\xc1\xeb\xaf\xbf\x7e\xd3\xe9\x28\x8a\x82\x87\x1e\x7a\x08\x5b\xb6\x6c\x81\xcb\xe5\xb2\xad\xe4\xaa\xb5\x3a\x57\xa2\x64\x7d\x37\x00\x18\xe3\xe3\xe3\xf2\xf9\xe7\x9f\xff\xd8\xe5\xaa\x55\xa2\x37\x1c\x88\x08\x8f\x3d\xf6\x18\xfa\xfb\xfb\x55\x02\x85\x0f\x5c\x6f\xfa\xf9\xc3\x13\xcd\xbf\x49\x96\xde\x53\x6b\xf8\x73\x9a\xca\xea\x59\xa2\x13\x9e\xe2\xd2\xf7\x76\x2c\xff\xc9\x92\x5f\x3f\x45\x44\x57\x80\x92\xd9\x7e\x6c\x6c\x4c\xbe\xfe\xfa\xeb\xc8\xe5\x72\xce\xc2\xd4\x2b\x60\xa3\xe7\x3b\x81\xb9\x23\xdd\xc1\xc7\xc5\x3c\xf1\xc4\x13\xa2\xab\xab\x4b\x45\xc9\x25\xb8\x7f\xd7\x9c\xff\x8b\x7d\x71\xcf\x31\x4f\x51\x84\x75\x95\x93\x53\xcd\x85\xb7\xcf\x77\xa4\xff\x7e\x36\xa8\x5f\x64\x70\x36\x97\xcb\x19\xdf\xfb\xde\xf7\xb0\xba\xba\xfa\xb1\xbb\xb0\xba\xba\x4d\x9d\x50\xe6\xc0\xcd\x9b\x37\xe3\x53\x9f\xfa\x94\x00\x10\xd8\x94\x76\xed\xfd\xc9\xf7\x5a\xbf\xe9\x92\x14\xaa\x32\x12\x96\x9d\x5e\xb8\x26\x99\xea\xb8\xb4\xdb\x4c\x7c\x77\xe7\xd2\xff\xb3\x14\x28\x9e\x42\xc9\x68\xb6\xc4\xcc\xd9\x8b\x17\x2f\xca\x53\xa7\x4e\xd5\x53\xec\xec\x02\x35\x0a\x3f\x72\x98\xcf\x7e\xf6\xb3\xa2\xa7\xa7\x47\x05\x23\xb0\x7b\x26\xf0\xb9\xc3\x13\xcd\xff\xc5\x6d\x50\x77\xad\x7b\x88\x21\x38\xfe\x41\x67\xfa\x2b\x67\x62\xab\x7f\x2a\x05\x12\x35\x7a\xd6\x4d\xd3\xa3\x38\x80\x04\xc7\x14\x65\x83\x7f\x00\x20\x55\x55\xf1\x99\xcf\x7c\x06\x6e\xb7\xdb\xad\x98\xe8\x38\x71\x31\xf2\x5b\xe1\xbc\x6b\xbb\xed\x98\x50\xf1\xa9\xab\xf5\xb8\xb3\xfd\xee\x2a\x98\xac\x4b\x26\xbf\xb7\x63\xf9\x8f\x16\x03\xc5\x97\x41\xb8\x0c\x60\x81\x99\x73\x67\xce\x9c\x91\xef\xbc\xf3\x4e\x2d\x2d\xbc\x01\x1a\xef\x26\xa6\x76\x7a\xf7\x9e\x60\x76\xee\xdc\x49\x3b\x77\xee\x14\x00\x9a\x86\x17\x7c\x27\x8f\x5f\x6e\xf9\x43\x4d\x8a\x08\xc1\x5e\x94\x5d\xba\x12\x08\x0a\x93\xb7\x23\xa9\x3d\x4a\x40\x62\x2a\x54\xb8\xa0\xb9\x35\x3d\x18\x0c\xf2\xc4\xc4\xc4\x2d\xd1\x63\x4b\x14\x9b\xcb\xe4\x46\xfe\x0f\x1e\x3c\x88\xa6\xa6\x26\x15\x40\x60\xc7\x5c\xe0\xc9\xae\x55\xf7\x23\xa5\x9f\x3b\x16\xd4\xad\x5d\xaa\x8b\x5a\x4c\x51\x91\xf9\xe7\xb7\xc6\xff\x6a\xbe\x49\x7f\x15\x84\x2b\x28\x31\x4f\xfe\x8d\x37\xde\x90\x17\x2e\x5c\xa8\x47\x57\x23\x1a\x7f\x64\x31\x44\x84\x3d\x7b\xf6\x00\x80\xe6\xd5\x45\xf7\xe1\xf1\xe6\xdf\xb0\x57\xb1\xd8\x93\x42\x65\x87\x29\x2b\x10\x48\xec\x99\x6e\xfa\xd5\x68\xc6\xb5\x1d\x80\x67\x60\x60\x40\x34\x35\x35\xdd\x12\x3d\x02\x25\x26\x72\xf6\x79\xc2\x71\x5d\xf3\x1f\x89\x44\xc4\xd6\xad\x5b\xc1\xcc\x1e\x7f\x41\xe9\xfd\xc4\xf5\xe0\xaf\x08\x90\x5a\xf2\x7d\xb4\x74\x1b\xc7\x30\xdd\x19\x9c\x18\x49\x2c\x4f\x0d\x24\xbe\x63\x8d\xb6\xae\xa0\xd4\x6d\xe5\xcf\x9c\x39\x23\xcf\x9f\x3f\x2f\x51\x4d\xd7\xbd\xbe\xaf\xad\xa7\xfb\x06\xd3\xd5\xd5\x65\xef\x4a\xe2\x8b\xc5\x3d\xc7\x9a\x0a\xca\x10\x97\xcd\xb0\xd6\x95\xac\xba\xe7\xd2\x1b\x06\xc3\x65\x52\x78\x68\xc1\xf7\x14\x33\x07\x84\x10\xa2\xaf\xaf\xef\x96\xe8\x71\x4a\x20\x27\x87\x01\xf5\x39\x50\x1e\x38\x70\xa0\x64\x49\x05\x05\xf7\x4f\x36\xfd\x9c\x4f\x17\xbd\x65\x36\x61\xae\x0c\xd3\xd9\xa1\x28\xb3\x63\x15\x84\x55\x88\x73\xed\x99\xd3\xe7\x3b\x32\xdf\x65\xf0\x25\x00\x0b\x52\xca\xac\x43\xf2\x38\xf3\xbf\x1f\xee\x1b\x7d\x85\x8d\xfe\xef\x1a\xa6\xa3\xa3\xc3\xde\x07\xc9\xd7\x9a\xd2\xf6\x10\x43\xa0\xdc\x06\x95\xb6\xb0\x57\xc3\x12\xac\x7b\x06\xba\x92\xee\xfd\x00\x02\x44\xa4\xc6\x62\xb1\x5b\xa2\xa7\x11\x67\xa1\x4e\xbc\x68\x6d\x6d\x15\xdd\xdd\xdd\x82\x99\x3d\x91\xac\x6b\x78\xfb\x9c\xff\x67\xc8\x22\x8e\x18\x95\xee\xcb\xa2\x9e\xca\x0a\x74\x05\x03\x10\xe6\x9a\xf4\xb1\xd7\x07\x12\xff\x83\x09\x97\x88\x68\x8e\x99\xb3\x63\x63\x63\xf2\xfc\xf9\xf3\xa8\x93\xbf\xf3\xb9\x5e\xdc\xdd\xc0\x34\xfa\xcd\x3d\xc7\x74\x76\x76\x02\x96\xbb\xad\x66\x8a\x90\xad\x7b\x56\x06\x30\x80\xcd\x49\xc4\x56\xbc\x85\xf1\x14\x45\x14\xa5\xb9\x39\x21\x84\xb8\x61\x5e\xf5\xe2\x9c\x3e\xd1\xb2\x06\xb4\x26\xfe\xc1\x07\x1f\x14\x44\xa4\x12\x28\xb8\x6f\xb2\xe9\xe7\x34\x93\xc2\x65\x75\xd3\xf2\xac\x23\xdb\xc5\xd4\xf6\xee\xab\xda\x66\x85\x51\x70\x71\xf6\xc5\xa1\x95\x3f\xd7\x15\x39\x02\xd0\x0c\x33\xa7\x27\x27\x27\x8d\x97\x5e\x7a\xe9\x46\xf9\xd7\xbe\xbf\x9b\x18\xb9\x0e\xf6\x5e\x63\x00\x94\xea\x3b\xe5\x36\x12\x4e\xb5\xbf\xac\x40\x3b\x57\xab\x38\x42\x46\x33\x93\x96\xb7\xa5\x93\x41\x6e\x8a\x9e\x0d\x7f\x8d\x91\x48\x44\xf4\xf7\xf7\x0b\x22\xf2\x44\xb2\xea\xd0\xe0\xa2\xf7\x49\x62\x07\x61\x35\x44\xb2\xa3\xff\xb5\xe3\x99\x80\xb7\x7a\x57\xff\x71\xc9\x5f\x7c\x07\xa5\xe9\x89\x64\x2a\x95\x32\x9e\x7d\xf6\x59\xe9\xcc\xab\x86\x8e\x7a\xd7\xfb\x05\x53\x4f\x3f\xb8\xab\x98\x44\x22\x01\x66\x96\xcc\x6c\x4c\xb6\x14\x2e\x98\xc4\x06\x60\xd5\x7f\x59\x8d\xb0\x35\x22\x94\xaf\x0c\xc6\x58\x24\xf7\x3e\x33\x1b\xd6\x8e\x69\x70\xa4\xbb\x61\x7a\xea\x11\x58\xef\x19\x07\x0f\x1e\x04\x4a\x7b\xf3\x04\xf7\x4c\x35\x7d\xa9\x64\xf3\xa9\x30\x8a\x4d\x54\x25\x54\xd8\xdd\xc6\x4c\x37\x17\x2e\x9d\xeb\xcc\x7c\x0f\x84\x31\x00\x71\xd3\x34\xf5\xd7\x5f\x7f\xdd\x99\x9f\xb3\x10\x58\xe7\xf9\x5e\x63\x80\xb5\x5f\xea\x3d\xc1\xac\xac\xac\x80\x88\x24\x11\x65\x67\x82\x85\x91\x6b\x2d\xf9\xf7\xcb\xed\x40\x76\xcd\x57\x66\x01\xec\x16\x4a\x78\x8d\x99\x8b\x6d\xd9\x53\x44\x94\xb6\x76\x4e\xbb\x25\x7a\x04\xaa\xc5\x52\x43\xc5\xad\xab\xab\x0b\x00\x3c\x4d\x05\xa5\x7f\x70\xd1\x77\x12\x28\xeb\xc9\x40\x99\x85\x9c\x8c\xc4\x55\xca\xb3\x49\x6c\x9c\x1a\x58\xfd\x1b\xcb\x9f\x67\x09\x40\xfe\xdc\xb9\x73\x72\x72\x72\x72\x3d\x45\xad\x96\x96\xda\x42\xdc\x2b\x0c\x1a\xdc\xdf\x75\xcc\x87\x1f\x7e\x28\xa5\x94\x06\x80\xac\x14\x98\x7b\x79\xcb\xca\x5f\xae\x78\x0d\xc7\x4c\x73\x85\x6d\xec\x76\x29\xa8\x32\xfb\xc2\xd0\xca\xd7\xf2\x2e\x39\x06\x20\xcd\xcc\xc6\x8b\x2f\xbe\x78\x4b\xf4\xd4\x93\x3a\xce\x7b\x01\x40\x1c\x3e\x7c\x58\x08\x21\x54\x00\x81\x9d\xb3\xfe\xa7\xdc\xa6\x88\xda\x26\xc1\xf5\x8c\x84\xce\xa5\xc2\xa3\xed\x99\xd3\xf3\x41\xfd\x87\x28\x4d\x8e\xa6\x97\x97\x97\x8d\xf7\xdf\x7f\x1f\xa8\x2f\x79\x6a\xc5\xe8\x7a\x8a\xdc\xbd\xc4\xd4\xd2\x7e\x4f\x30\x13\x13\x13\x40\x69\xf1\xc0\x5c\xca\x63\x9e\xfd\xf6\xee\xc5\xaf\x5c\xda\x94\x3b\x6b\x08\x36\xca\x83\x18\x30\x24\x41\x4e\x35\x17\xae\x7c\x7b\xd7\xc2\xef\x4d\x87\x0a\x2f\xa3\xd2\x16\xf2\x56\xe9\x71\x2a\xd1\x4e\x69\x54\x15\x62\xb1\x98\x00\xa0\x69\x06\x45\x87\x17\xfc\x9f\xa3\x7a\x20\x00\x6b\x0c\x89\x96\x5e\x94\x73\xc9\xe4\x0f\x7b\x92\xdf\x45\xc9\x93\x30\x29\xa5\x34\x4e\x9d\x3a\x85\x62\xb1\x08\x34\xfe\xca\x9c\x05\xb8\x5f\x31\x8d\xea\xec\xae\x62\x5e\x78\xe1\x05\xf9\xa5\x2f\x7d\xc9\xf0\x7a\xbd\x49\x00\x13\x29\x8f\x89\x67\xb7\x2d\x2f\x84\xb3\xae\x1d\x1d\xab\xda\x60\x40\x57\x42\x79\x55\x66\xe7\x9b\xf4\xb1\xf9\x26\xfd\x9c\x14\x18\x43\xc9\xdf\x28\x2e\xa5\x74\x3a\xe9\xdf\x34\x3d\xf6\x51\x07\xf5\x40\x02\x28\xf9\xf6\xfa\x7c\x3e\x01\xc0\xd7\xbb\xe2\x39\xd8\x94\x57\x06\x1a\xaf\x9a\xb0\x5d\x33\x50\x36\x24\x12\x11\x46\xda\x33\xa7\x93\x1e\x73\x84\x99\x97\x88\x28\x7b\xe9\xd2\x25\xe9\xf0\x59\x6e\xd4\xc7\xd6\x93\x4c\xb2\xc1\xfd\x9d\xc6\xd4\x86\xf5\xf4\xb5\x7b\x82\xf9\xfe\xf7\xbf\x8f\x27\x9e\x78\x22\xef\x76\xbb\x97\x00\xe8\x0c\xc4\x97\x7c\xfa\xc4\x92\x4f\x0f\x12\x91\x66\x2d\x6b\x4a\x32\x73\x1c\x8c\x25\x94\x56\xaf\xe8\xa7\x4f\x9f\x6e\xd4\x16\x1b\xa2\xa7\xde\xd2\xe6\xaa\xfe\x6e\xfb\xf6\xed\x02\x25\xe5\x39\xb0\x6d\xde\xff\x94\x00\xa9\x65\xf7\x0c\x2e\xa9\x67\xec\x70\xf6\xa9\xf8\xf7\x94\xba\xb3\xbc\x6a\xa6\xdf\xef\x4c\x3f\xcd\xe0\x19\x00\xc9\x62\xb1\x68\xbc\xf6\xda\x6b\x37\x94\x7a\x68\xfc\x35\xd4\xbb\xbf\x1b\x18\x34\xc0\xd4\x0b\x77\x1d\xb3\xbc\xbc\x8c\xa7\x9f\x7e\x5a\x9c\x38\x71\x42\xf7\xfb\xfd\x09\x6b\xa1\xc1\x02\x11\x69\x28\x2d\x82\x94\xcc\xac\x13\x51\x9e\x99\xf3\xf9\x7c\xde\x78\xf3\xcd\x37\x71\xf9\xf2\xe5\x8d\xb4\x45\x43\x7a\x9c\x87\xad\x38\xbf\xbc\x32\xb8\xad\xad\x0d\x00\x3c\x7e\x5d\x74\x76\x27\xdc\x87\x9d\x63\xf3\x92\x9d\xb0\x62\xfb\xb1\xb5\xfd\xb2\x18\x22\xc2\xa5\x4d\xb9\x37\xd3\x6e\xf3\x12\x4a\x8a\xb3\x7e\xe1\xc2\x85\x5a\x42\x6a\xbf\xf8\x46\x05\xaa\xa5\xef\x6e\x62\x1a\xfd\xe6\xbe\xc2\x2c\x2f\x2f\xe3\xeb\x5f\xff\xba\x7c\xf8\xe1\x87\x8d\xbe\xbe\x3e\xc3\xe7\xf3\xe5\x1d\x58\x00\x90\x86\x61\xc8\x4b\x97\x2e\xe1\xf4\xe9\xd3\x4e\xbd\xe7\x96\xe9\x59\xd7\x90\xb8\x73\xe7\x4e\x5b\x79\xf6\xf4\xae\x78\x0e\x56\x0c\x87\x65\xb7\xc2\x2a\x23\x61\xad\x21\xb1\x28\xa4\x7e\xae\x33\xfd\x3c\x08\x73\x60\x64\x75\x5d\x37\xde\x7e\xfb\xed\x5a\x06\x71\x16\xa0\xde\xd7\xdf\x88\xbe\xbb\x89\x59\x8f\xae\xfb\x0e\x73\xfa\xf4\x69\x69\xe9\x35\x32\x16\x8b\x89\xae\xae\x2e\x4c\x4f\x4f\x43\x4a\x89\x6b\xd7\xae\xdd\x48\x0a\xdf\x54\x5e\xeb\x1e\xf7\xd4\xd9\xd9\x59\x5a\x17\xce\x08\x0c\x2e\xf9\x3e\x55\xb6\x2a\x97\xbb\x2c\x38\x26\xf6\xd7\x1a\x12\xe7\x82\xfa\xa5\x25\x7f\x71\x04\xd6\x2a\x8a\x91\x91\x91\xda\x3c\xd6\xe3\xfe\x5a\x4c\x3d\x49\x79\xaf\x31\xce\x70\x57\x31\x03\x03\x03\xc2\xea\x1d\x00\x00\x85\x42\x01\xe3\xe3\xe3\x58\x59\x59\xa9\x4a\x67\x7c\x7c\x5c\x8e\x8f\x8f\x3b\xd3\x11\x00\x10\x08\x04\xb0\x6d\xdb\x36\x74\x74\x74\xc0\xe3\xf1\x94\xd3\x49\x24\x12\x18\x1f\x1f\xc7\xf8\xf8\xb8\xbd\xd2\x65\x5d\x7a\xec\xcd\x15\xd6\x28\xd2\x8a\xa2\xa0\xa7\xa7\x07\x00\x34\x8f\x21\x5a\xdb\x93\xda\x5e\x7b\x56\x17\xa8\x28\xd0\x8d\xbc\x0d\x01\xe0\x42\x5b\xe6\x35\xa6\x92\x5b\x2a\x11\xd9\xeb\xb9\xeb\x29\xed\xb5\xe1\x7e\xc7\x00\x6b\x1b\xf6\x8e\x63\x3c\x1e\x0f\x8e\x1e\x3d\x0a\x6b\x46\xa0\x76\x00\x24\xf7\xed\xdb\x27\x13\x89\x84\x7c\xf3\xcd\x37\x31\x39\x39\x59\x37\x1d\x9f\xcf\x27\xf6\xee\xdd\x8b\x6d\xdb\xb6\x09\x00\x4e\x5f\x6c\x00\x90\xa1\x50\xc8\xe8\xeb\xeb\x33\x0e\x1d\x3a\x24\x2d\x1d\x69\x5d\x9a\x55\x54\x73\x96\x5d\x00\x69\x9a\x26\x14\x45\x51\x01\x78\x5a\xd3\xae\x61\x6f\x51\x44\x9d\x06\xf1\x92\xae\xe3\x98\xac\xab\xba\x63\xe4\x55\x99\xbc\x16\xce\xbf\x85\xd2\xca\xd1\xfc\xcc\xcc\x8c\x4c\x24\x12\xeb\x89\x47\x3b\x6c\x44\x91\xad\x8d\xbf\x23\x18\x22\xb2\x5d\x52\xd6\x13\xfb\xf5\x74\x84\xdb\x8e\x19\x18\x18\xc0\x43\x0f\x3d\x04\xbf\xdf\xaf\x82\xe1\xf1\xe9\x22\xd4\x9d\x70\xef\x0c\xe6\xd5\xf6\xbc\x2a\xd3\xf3\x4d\xfa\xc8\x52\xa0\x38\xd3\xd2\xd2\x92\x3f\x71\xe2\x84\x7e\xe9\xd2\x25\xe9\x18\xac\x94\xd3\x39\x79\xf2\x24\xc2\xe1\xb0\x0a\x86\xa7\x39\xa7\x76\x6e\x5b\xf0\x3d\xde\x9d\x70\x7f\xc2\x25\x45\x20\xa5\x19\x53\xe3\x91\xfc\xcb\x97\x36\x65\x4f\x93\xc7\x9b\xf8\xe4\x27\x3f\xa9\x77\x74\x74\xd4\x4d\xc7\xa6\xd9\xc9\xc5\x55\x5f\xc1\x91\x23\x47\x00\x6b\x96\xb7\x77\xc5\xf3\x09\x02\xa9\xc4\x28\x6d\xbf\x06\x67\xa8\x7e\xb2\x25\xd2\x54\xa8\x30\x92\x73\xc9\x29\x94\x56\x8f\x1a\xe7\xce\x9d\xab\xcd\xc3\x19\x6a\x15\xb6\x1b\xe1\x6e\x1b\xa6\xa5\xa5\x45\xf4\xf6\xf6\xa2\xb3\xb3\x13\x5e\xaf\x17\xd1\x68\xb4\x0c\x5a\x5d\x5d\x85\x75\x16\x98\x98\x9d\x9d\xc5\xf4\xf4\x34\x0a\x85\x42\x83\x24\x1b\xe6\xf5\xb1\x31\x5b\xb6\x6c\xc1\x23\x8f\x3c\x22\x88\x48\xf3\x14\x45\xeb\x27\xae\x05\x7f\x76\xc7\x9c\xff\xdf\xba\x4c\xea\x84\x75\xd2\x10\x13\xb2\x33\xc1\xc2\xf7\x4f\x0d\xac\x7e\x65\x3e\xa8\x8f\x0c\x0f\x0f\x67\x85\x10\x78\xf5\xd5\x57\xc1\xcc\xf0\x7a\xbd\x78\xe2\x89\x27\x10\x0e\x87\x35\x21\x11\xdc\x3f\x19\xfc\xa9\xfd\x93\x4d\xbf\xe6\x32\x45\xa7\xbd\x82\xa6\x0d\x2e\x6c\x5e\xf6\xfe\xc2\xde\xa9\xa6\xd3\xcf\x6f\x8d\xff\xfa\x5c\x50\x3f\x3f\x3c\x3c\x9c\xcd\x66\xb3\xb0\xbc\x43\xd7\x04\xe7\x1e\x89\x84\x52\xc5\x32\x00\x3e\x70\xe0\x00\xf9\x7c\x3e\x17\x80\xd6\x43\x13\xcd\xbf\x10\x2c\x28\xdd\x6b\x99\xa7\x36\x94\x07\xf1\x78\xa7\x27\xf5\x9d\xa5\xa6\xe2\x19\x00\x8b\xf9\x7c\xbe\x60\x71\x31\xd7\xfc\xdb\x79\x56\x12\x68\x8c\xe1\xdb\x89\x19\x1a\x1a\xa2\x47\x1f\x7d\x14\x7b\xf7\xee\x15\x3d\x3d\x3d\x4a\x73\x73\xb3\xea\xf5\x7a\xdd\x04\xb8\x51\x5a\xcd\xa0\x79\x3c\x1e\xb5\xa9\xa9\x49\x69\x6d\x6d\x15\x03\x03\x03\x3c\x3c\x3c\xcc\x3e\x9f\x0f\x53\x53\x53\xb2\x4e\x9a\x8d\xf2\xfa\x58\x98\xe6\xe6\x66\x3c\xf6\xd8\x63\x70\xb9\x5c\x6e\xaf\x2e\xba\x7f\xec\x7c\xf4\xf7\x07\x97\xbc\xff\x56\x61\x11\x24\x10\xc1\xb2\xb5\x11\xc8\xd5\x54\x50\xb7\x6f\x59\xf2\x3d\xbe\x10\xd0\xcf\xae\x7a\xcc\xc5\x48\x34\x52\x34\x0c\x83\xe7\xe7\xe7\x71\xec\xd8\x31\x58\x0e\xf7\xcd\x87\xae\x35\xff\xfc\x27\xae\x05\x7f\x4b\x65\xd1\x0c\x58\xd6\xbb\x4a\x3a\xe4\x2d\x2a\x7d\x9b\x97\xbd\x8f\x8e\x87\x73\xaf\xe6\x34\xb9\xda\xd6\xd6\x66\x5c\xbf\x7e\x9d\xb3\xd9\x2c\x6a\x69\x6e\x68\x48\x6c\x6e\x6e\x06\x33\x6b\x6e\x53\x84\x22\x19\xd7\x50\x85\x35\x2a\xa1\x91\x21\xd1\x10\x9c\x9f\x6e\x2e\x7c\xc0\xcc\x49\x22\xd2\xa7\xa6\xa6\xec\x74\xeb\x85\x9b\xd1\x0b\xea\x29\xb6\x37\x85\xe9\xe8\xe8\xc0\xb1\x63\xc7\x10\x0c\x06\x05\x00\x8d\x00\x8f\x3b\x65\xb6\x07\x56\xcc\x07\x7d\xab\x72\x87\x5a\x90\xdd\xc2\x84\x8f\x05\x74\x53\xa5\x78\xbe\x49\x7c\x94\x09\x29\xef\x67\x42\xca\x15\xb7\xdb\x9d\xde\xb5\x6b\x97\xbe\x7d\xfb\x76\xe3\xec\xd9\xb3\xb8\x70\xe1\x02\x74\x5d\xdf\x48\xb9\x6e\x19\xb3\x6f\xdf\x3e\x78\x3c\x1e\x8d\x18\xe1\x4f\x5e\x0d\xfd\x5a\x7b\x4a\x7b\xdc\x1e\xfa\xb2\x35\x0a\xb6\x9d\xf6\x40\x80\xdb\xa0\xee\x4f\x5f\x0a\xff\xee\xdf\x3e\xb8\xf0\xd3\x29\xb7\x71\x65\xdf\xbe\x7d\x59\x21\x04\x06\x06\x06\x04\x00\x5f\x67\x52\xdb\xbf\x6f\xaa\xe9\xd7\x08\x50\x2b\x33\x64\x6b\xd3\xf1\x16\xc5\xc0\x23\x57\x5a\xfe\x8f\xef\xec\x5a\xfc\x65\x26\xd2\x8f\x1e\x3d\xaa\x7f\xfb\xdb\xdf\x5e\x43\x73\x43\x43\xa2\xcb\xe5\x12\xcc\xac\x45\x32\xae\x7e\xcd\xa4\x50\xd9\x48\x68\xbb\xba\xad\x63\x48\x8c\xfb\x8c\xa9\x94\xdb\xbc\x8e\xd2\x76\x2b\x72\x7c\x7c\x1c\x75\xf2\xb1\x89\xb9\x91\x6e\xb2\x9e\x4e\xb4\x61\x8c\x10\x42\x7c\xe2\x13\x9f\x80\xb5\x5b\x9a\x46\x8c\x40\xf3\x82\x71\x70\xd3\x44\xf1\x7f\xf2\xad\x9a\x8f\x90\x44\x08\x80\x70\xce\x5b\x33\x00\xcc\x11\x00\xe4\x75\x2f\x9d\x8f\x77\xb9\xfe\x7a\xb9\xd7\xf5\x1d\x68\x62\x61\xff\xfe\xfd\x7a\x2c\x16\x33\xac\x33\x2d\x6e\xa6\x5c\x1b\xc6\x04\x83\x41\x11\x8b\xc5\x04\x33\x7b\xda\x53\xee\xdd\x83\x8b\xbe\x7f\x61\x59\x4b\x2a\x3b\xfc\x59\x5b\x05\x33\x55\x24\x49\xa0\xa0\x0c\xef\x9a\x0d\xfc\xf4\x99\xfe\xc4\xef\xa8\xaa\xaa\x1f\x38\x70\xc0\x40\x69\x7d\x58\x70\xf7\x4c\xe0\x5f\x29\x12\xc1\x8d\xa4\xd3\xb5\xea\x3e\xde\x9a\xd6\x76\xce\x36\x15\x12\xe1\x70\xd8\x08\x06\x83\x32\x99\x4c\x56\xd1\x5c\x1e\xd6\x39\xef\x77\xed\xda\x65\x1f\x15\xa9\x45\x33\xae\x41\x62\x12\x64\x33\x0f\x5b\xb9\x94\xa7\xba\xd6\x7a\x24\xce\x35\x15\x2e\xb1\x40\xd2\xb2\x7a\xca\xf1\xf1\x71\xe7\x10\xd2\x99\x67\x3d\x1a\x50\xe7\xbe\x16\x77\xd3\x98\x47\x1e\x79\x04\xbb\x76\xed\x12\x44\xe4\xf3\x64\xe4\xd0\xc0\xbb\xb9\xdf\xed\x7f\x2f\xff\xcd\xc0\x8a\xf1\xe3\x42\x72\x98\x00\x61\x7b\x4c\xda\xa1\xb2\x77\x33\x3c\xee\x1c\xef\x6f\xbf\xa2\x7f\x65\xe8\x4c\xf6\xbb\x2d\x33\xc6\x49\x02\x82\x91\x48\x44\xfb\xf2\x97\xbf\xbc\xa6\xfe\xd6\xa1\xe7\xa6\x30\x7d\x7d\x7d\x50\x14\x45\x00\xf0\xf5\xc7\x3d\x8f\x2a\xd2\x5a\x2e\x7e\x23\x6f\x43\x10\x06\x97\xbc\x9f\x21\x50\x10\x15\x53\x8d\x2a\x40\xc1\xce\x55\xf7\x7e\xe2\x8d\x79\x2d\x0a\x26\x5f\xe7\xaa\xfb\x00\x00\x8f\xa2\x28\xb6\xdf\x74\x15\x8d\xce\xaf\x40\xda\xf7\x9b\x36\x6d\xb2\xf7\x05\xf4\x44\x33\xae\x2d\x76\xe2\x95\xfa\x65\x54\x2c\x86\x76\x9a\x96\x71\x91\x18\x73\x41\xfd\x22\x80\x24\x33\x1b\xd6\xae\xea\xce\xf4\xed\xff\xda\xbc\x9d\xd7\x7a\x71\x12\x0d\xa4\xe5\x8d\x30\xc7\x8f\x1f\x17\x83\x83\x83\x2a\x98\x83\xcd\x8b\xe6\xb1\xc1\xb7\x72\xdf\x6c\x5a\x32\x7f\x8a\x18\x9a\xd3\x04\x51\x2e\x9b\xa3\x48\x76\xb4\x2d\x6d\xb5\x3c\xef\xec\x3d\x97\xff\xf3\xae\x91\xc2\xaf\x0a\x89\xa8\xa6\x69\x9e\x2f\x7f\xf9\xcb\xa2\xbd\xbd\x7d\x23\xf4\xc8\x9b\xc1\x74\x74\x74\x00\xa5\xa1\xb6\xaf\x39\xaf\x0e\x96\xdb\xba\xec\x6d\x88\x6a\x6f\xc3\xb2\x4d\x0e\xf0\xeb\x4a\xb7\x5a\xf2\xd9\xb2\x87\xe8\xaa\xcb\xa4\xa0\xcb\xa4\x10\x36\x98\x0e\x01\xf0\x14\x45\x3b\x11\x79\x00\x08\x4d\x2b\x6f\xaa\x56\xa6\xb1\xee\x17\x61\x1d\x85\xad\x82\xe1\x69\xc9\xba\xfa\x6d\x2e\x2d\x4f\x59\x90\x95\x83\xd3\x28\x64\x61\x24\xc1\x58\xf2\x17\xaf\x32\x73\x9e\x88\x0c\xc7\x26\x08\xb5\x92\xa6\x96\x89\xea\x61\x1a\x5d\x37\x8c\x39\x72\xe4\x88\x18\x1c\x1c\x14\xcc\x1c\x68\x5a\x32\x1f\xee\xfb\x20\xf7\xff\xba\x0a\x3c\x50\xb6\x7d\x3a\x96\xbc\x94\x74\x00\xbb\x3b\xa6\xaa\x06\xb1\x15\x40\x06\x40\xcc\x9e\xe8\xf5\xe2\x7f\xec\x1a\x2d\xfc\x2a\x49\x0e\x6b\x9a\xa6\x7d\xf2\x93\x9f\x84\xdb\xed\x6e\x44\xc7\x8d\x68\xae\x8b\xf1\x7a\xbd\x60\x66\xc1\xcc\x2a\x97\x75\x96\x52\xe7\xba\x9e\xb7\x21\x00\x18\x42\xea\x92\x58\xb5\x7e\x2f\x98\x19\x45\xa5\xe4\x0b\xb4\xd1\x74\x18\x40\xd2\x63\xc4\xed\xdf\x3b\x56\xd9\x94\xe9\xad\x6b\x48\x0c\x04\x02\x60\x66\xe1\x92\xc2\xd7\x54\x50\x5a\xed\xa4\x89\xea\x6d\x82\x59\x6d\x48\x2c\xa8\x32\x99\x76\x9b\x73\xd6\x36\xba\xd2\xb2\x8c\xde\xa8\x6b\xaa\x0d\xb7\x05\xd3\xdd\xdd\x2d\xec\x7d\x1a\xbd\x69\xb9\xbd\xef\xc3\xfc\x7f\x57\x0c\xb4\x56\x0e\xf5\x72\x92\x5e\xcb\x30\x0e\xc6\x2a\xef\x22\x52\x61\x2e\x22\x16\x91\xc9\xe2\x2f\xe9\x5e\x9a\x9f\x1f\xd0\xfe\x34\x18\x0c\x26\x8e\x1c\x39\x62\xbc\xf4\xd2\x4b\x4e\x12\xd6\x28\xf1\x2d\x2d\x2d\xe8\xe9\xe9\x11\x96\x83\x9e\x00\x50\xde\xec\xf3\xca\x95\x2b\xc8\xe7\xf3\x55\xe5\xb0\x24\x83\x5c\x08\xe8\x13\xdb\xe6\x7d\x15\xf9\x48\x95\xed\xd4\x2b\x5a\x9b\x45\x1e\x18\x71\x9f\x31\x23\x05\x0c\xab\x13\x96\x00\x24\x03\xf9\xeb\x2d\x85\xf3\xbb\x66\x5d\xfd\xd5\x5e\x8b\xf5\xd3\x31\x85\xcc\xcf\x05\xf5\x71\x22\xaa\xdd\x3f\xbb\xb1\x21\xb1\xa9\xa9\x49\xa8\xaa\x2a\x88\x48\xa8\x92\x02\x6e\x43\x84\xab\x8c\x87\x37\x30\x24\x66\x34\x33\x5e\x50\x65\x02\xa5\xad\x74\x9d\xcb\x74\xea\x85\x3b\x66\x48\x54\x55\x15\x07\x0e\x1c\x00\x00\x8d\x24\x47\xbb\x46\x0b\xbf\xa6\xe8\xdc\x5b\x91\x38\x35\x9f\x02\xd9\x3d\x98\x33\xde\x39\xb6\x04\x4a\xdb\x0e\xdb\xa2\x88\x40\x80\xda\x76\x55\xff\xb5\xd4\x26\xf5\xed\x5c\x50\x39\x1b\x8b\xc5\xd2\x9d\x9d\x9d\x98\x99\x99\x59\x53\xd9\xc1\x60\x10\x0f\x3f\xfc\x30\xda\xdb\xdb\x85\xaa\xaa\x02\x35\x5b\x2c\xc7\x62\x31\xb9\x7f\xff\x7e\x63\x74\x74\x14\x6f\xbd\xf5\x96\x04\x80\xd9\xd9\x59\xb4\xb5\xb5\x49\x00\xfa\x78\x24\xf7\xde\xa1\x6b\xcd\x69\xb7\x51\x3a\xda\xd3\xa6\xac\x3c\xa0\x41\xf5\xc6\x5c\xe3\xe1\xdc\xfb\x28\x39\x99\xd9\x3b\x6f\x19\x00\xd2\xe7\x3a\xd2\x2f\x0e\x2f\xf8\x1e\x73\x99\xe4\xb9\x51\x3a\x93\xa1\xc2\xf9\xb8\xaf\x38\x66\xa5\x23\xcf\x9e\x3d\xbb\xa6\x5c\x6b\x94\x68\xaf\xd7\x0b\x45\x51\x00\x40\xf5\xe9\x22\xa4\x99\xc2\x57\xf6\x37\x74\x28\x69\x8d\x3c\x12\x53\x6e\x73\x41\x96\x76\x80\x71\x33\x5a\xe4\x00\x00\x20\x00\x49\x44\x41\x54\x37\x8a\xc5\x62\xbd\xee\xa9\xde\xbf\x13\xb3\x1e\x16\x35\xd8\x86\x98\x58\x2c\x86\x4d\x9b\x36\x09\x00\xbe\xe6\x39\xe3\x91\xc0\xb2\xf9\x78\x95\x19\xa2\x2c\x51\xac\x2a\x77\x74\xcf\xb5\x18\xe7\x66\x9f\xe5\x40\xa5\x5f\x2a\x26\x42\xed\x97\x0a\xbf\x02\xc9\x21\x45\x51\x54\xcb\x77\xbc\x8a\xa6\xfe\xfe\x7e\x7c\xfe\xf3\x9f\x47\x77\x77\xb7\xa6\x2a\x6a\x60\x53\xca\x35\xfc\x89\x6b\xc1\x9f\x3d\x71\x31\xfc\x9b\x8f\x7d\xd4\xf2\xeb\x0f\x4e\x05\x7e\xa2\x39\xa7\xf6\x6b\x9a\x16\x78\xe0\x81\x07\xd4\x9f\xf8\x89\x9f\x10\x6d\x6d\x6d\xc2\x92\xde\x06\x80\xf4\xaa\xc7\xbc\xf2\x5e\x57\xea\x59\x3b\xf3\x7a\xcb\x96\xed\x37\x71\x9f\x31\x35\xda\x9e\x7d\x19\xa5\x6d\x8e\x6d\xe9\x61\x00\x48\x2e\x06\x8a\xe7\xdf\xec\x4b\x7e\x87\x01\xb9\x5e\x3a\x69\xcd\x8c\xbf\xba\x39\xf1\x97\x52\x60\x01\x40\xbe\x58\x2c\x4a\x97\xcb\xb5\xa6\xae\xd7\x78\x24\x5a\xce\x45\x02\x80\xea\x36\x44\x50\x30\x34\xbb\xf6\x36\x62\x48\x4c\xbb\xcd\x25\x50\x69\xa7\x54\xcb\xe3\xd0\x0e\xb7\x2a\x6d\x6e\x09\x63\x75\x5d\x1a\x24\x87\xa2\xd7\x8a\x5f\x22\xeb\x8b\xaf\x98\x21\xe0\x10\x3e\xce\x6e\x78\x2d\xa6\xfc\x86\xaa\xaf\x36\xae\x69\xd9\x3c\xee\x4b\xca\x9d\xd9\x90\x92\x88\x44\x22\x46\x73\x73\xb3\xb4\x76\xbc\x40\x5f\x5f\x9f\x78\xec\xb1\xc7\x84\x10\x42\x73\x17\x45\xeb\x27\xaf\x86\x7e\x79\xcb\xa2\xf7\x67\x55\x49\xd1\xca\x2e\x25\x2c\x0f\x5d\xe3\xa9\xf7\xba\x52\x5f\x79\xa7\x37\xf9\x77\xe1\x70\x38\xf1\xd9\xcf\x7e\x56\x7f\xe5\x95\x57\xa0\xeb\xba\xd4\x34\x2d\x0b\xc2\xdc\x3b\xbd\xc9\xbf\x6f\x2a\x28\xed\xdb\xe7\xfc\x87\x09\xa5\x91\xb1\xd3\xf3\x93\xc1\x48\xba\xcd\xa5\x1f\x0c\x2f\xff\x51\x5e\x95\x63\xb0\x06\x32\x57\xae\x5c\x41\x2c\x16\x33\x54\x55\x4d\x83\x70\xfd\xbd\xee\xd4\xdf\x33\xb1\x7a\xf0\x5a\xf0\xa4\xc7\x28\x09\x08\x3b\x1d\x06\x63\xbe\x49\x9f\x78\x71\x68\xe5\x2f\x12\x3e\xe3\x7d\x58\xfe\xeb\x97\x2e\x5d\xaa\xf5\x20\x15\x00\xa4\xf3\xb8\x27\x00\xe0\x9d\x3b\x77\x8a\x9e\x9e\x1e\x05\x80\x3f\x92\x75\x3d\xb0\x6d\xde\x77\x12\xd6\x31\x32\x55\x5f\x70\x55\x95\x57\x44\xe1\x44\x24\xf7\xc6\x64\x73\xfe\x34\x11\xc5\x33\x99\x8c\x71\xe1\xc2\x05\xe7\xf8\xa0\xf6\x1f\x0d\xe2\xb9\x86\xae\x7a\xf1\x0d\x31\xc1\x60\x50\x1c\x3c\x78\x50\x10\x91\xd7\x93\x92\x0f\xb6\x5f\xd5\xff\x03\x31\x5c\x25\x05\x98\xac\x8a\xb2\xe4\x27\x3b\x86\x1c\xb0\x95\xe4\x6a\x8c\x33\x8b\x6a\xb1\x6f\xa7\x01\xcd\x74\x21\x9e\x8a\x28\x3f\xb4\x1c\xb9\xe4\xd4\xd4\x14\xb9\x5c\x2e\x7a\xe2\x89\x27\xe0\x72\xb9\xdc\x1e\x43\x74\x3e\x75\x21\xfa\x3b\x03\xcb\xde\x2f\x0b\x16\xbe\x32\xc9\xa5\xe1\x1d\xa9\x92\x9a\xbb\x57\xdd\x9f\xf6\xeb\x8a\x36\x1e\xce\xbf\x27\x14\xa1\x87\xc3\x61\xf3\xea\xd5\xab\x68\x6f\x6f\x97\xcc\x6c\x4a\x82\x71\x2d\x9c\x9f\x4c\xf8\x8c\x5c\x73\x5e\x8d\xba\x8b\xc2\x2b\x00\xc1\x28\xad\xf1\x1a\x6d\xcb\xfe\xf0\xc5\xad\x2b\x7f\x16\xf7\x15\xdf\x02\x30\x0e\x60\x75\x69\x69\xc9\x78\xe6\x99\x67\x60\x9a\x26\xba\xbb\xbb\x4d\x66\x2e\x32\x50\x98\x0b\x16\x67\xae\x6c\xca\x5e\xc9\x68\x32\x57\x50\x65\x21\xe5\x31\x93\x93\x2d\x85\x2b\x3f\xec\x4d\xbd\x78\x26\x96\xfc\x9b\x94\xdb\x78\xc7\x4a\x23\x6e\x18\x86\xfe\xf2\xcb\x2f\xdb\x27\x4a\x57\x55\xc8\x1a\x43\xe2\xf9\xf3\xe7\xe5\x43\x0f\x3d\x04\x22\x52\xbd\x45\x11\x84\xdd\x2d\x6c\xc4\x90\x08\x46\xce\x25\x93\x28\xe9\x3f\xf6\x99\x56\xeb\xe9\x40\xb5\x92\xc3\x19\x6e\xd9\x90\x68\x19\xbb\x54\x30\x7c\x81\x15\x73\x3f\x49\xf8\xec\x1e\x7e\xcd\x76\x33\x95\xe1\x58\xb9\xf7\xaf\xc5\x38\x8a\x5c\x11\xf2\xec\x30\x6d\x00\x68\x5a\x36\x0f\x11\x10\x04\x51\xbc\xbd\xbd\xdd\x00\x20\x0f\x1f\x3e\x2c\xbc\x5e\xaf\xca\xcc\xc1\x4f\x5c\x6f\xfe\xc5\xae\x55\xf7\xe7\x2a\x06\xbc\xb5\x86\x3b\x06\xd4\xed\x73\xfe\x5f\x9a\x69\x2e\x9c\x1b\x69\xcf\x7e\x27\x1c\x0e\x1b\x57\xaf\x5e\x95\x33\x33\x33\xb2\xb3\xb3\x33\xcd\xcc\x53\x26\xb1\x71\xb1\x35\x1b\xbf\xbc\x29\xfb\x7a\x53\x41\xed\xf1\xea\x22\x68\x28\xac\xaf\x7a\x8c\x59\x5d\xe1\x29\x06\x5f\x07\x30\x45\x44\x09\x29\xa5\x7e\xea\xd4\x29\x00\xa5\xd5\x1b\xd6\x9c\x5f\x96\x99\x67\x18\xac\xaf\x7a\xcd\x85\x77\x7a\x52\x1f\xa2\xb4\x6b\xac\x00\x90\xb7\xce\x14\x99\x03\x97\x36\x6d\x37\x4d\x33\xff\xdc\x73\xcf\x21\x95\x4a\xd5\x1b\x35\xaf\xf5\x48\xdc\xb7\x6f\x9f\x3d\x0b\x2d\x54\x93\xfc\xe5\xc5\x83\xf6\x57\xea\x30\xb6\xd5\x7a\x24\x32\x01\x05\x55\xa6\x1d\x47\x0a\xa0\x36\xfd\x06\x8d\x0f\x07\xa6\x11\xe3\x88\x9a\xdf\x35\xc4\x58\x1f\x80\x00\xb3\xc7\xbb\x6a\xee\xaa\x30\x80\xa3\x9b\xaa\x08\x5d\xfb\xa5\x35\xf0\x5a\x8b\x71\x46\x97\x31\x54\x99\x10\x02\x00\x2d\x2b\x07\x94\x22\x42\xa6\x06\x6d\xd3\xa6\x4d\x79\x00\xe8\xed\xed\x05\x33\x6b\xfe\xa2\xd2\xb9\x63\xd6\xff\x65\x62\xaa\x5e\x0a\x45\xb6\x04\xb4\x72\x23\x80\x18\xea\x9e\xa9\xa6\x5f\xfc\x68\x53\xee\xb4\xa9\x70\x7e\x68\x68\x28\xff\xcd\x6f\x7e\x13\x8f\x3f\xfe\xb8\xd1\xd9\xd9\x69\xeb\x34\x49\x03\x3c\x95\xf0\x1a\xc1\x84\xb7\xa4\x86\x58\x87\xc8\x24\x88\x28\x01\x94\x0e\xed\x7d\xf5\xd5\x57\xb1\xb4\xb4\x54\xae\xfb\x67\x9f\x7d\x16\x8f\x3e\xfa\xa8\x11\x8b\xc5\xd2\x28\x7d\xe4\x09\x06\x4f\x59\x6e\xaf\x02\x80\x01\x46\x9e\x99\xb3\x44\x94\x37\x0c\x43\x7f\xee\xb9\xe7\x30\x3d\x3d\x8d\x9a\x50\x6e\x8b\x35\x1e\x89\x8e\x93\x69\x84\x60\x2a\xeb\x3f\x95\x43\xdb\x50\xfe\xfa\xaa\x99\xaa\xc4\x45\x92\xb8\x60\x9d\x7a\x03\x67\xba\x58\x2b\x69\xea\xd9\x82\x6e\x64\x48\xac\x0d\x75\x31\xdd\xdd\xdd\xb6\x92\xe7\x71\xe5\xb9\x1d\x55\x52\xc5\xd1\x57\x01\x8e\xf8\xc6\x98\x8a\xc9\xdf\xa1\x6f\xd8\xcf\x16\x03\x08\x13\x01\x55\x97\x51\x53\x53\x54\x00\xe2\x8b\x5f\xfc\x22\xbc\x5e\xaf\x00\xe0\xeb\x4a\xb8\x0f\x6a\x26\x45\x4b\xd5\x65\x31\x6b\x83\xe5\xc6\x20\xa0\x25\xeb\xda\x19\xca\xa9\x03\xcb\x81\xe2\x42\x20\x10\xd0\x0d\xc3\x30\xfe\xf1\x1f\xff\x11\x8f\x3c\xf2\x88\x31\x34\x34\x94\x06\x90\x25\xa2\x38\x4a\x93\xbe\x02\x80\xb4\x86\xda\x06\x00\x23\x99\x4c\x1a\xaf\xbd\xf6\x9a\x73\x34\x28\x01\xc0\x30\x0c\xf9\xfc\xf3\xcf\x63\xf3\xe6\xcd\x78\xf0\xc1\x07\xf3\x91\x48\x44\x27\xa2\x24\x2a\x4a\xb1\x24\x22\x29\xa5\x34\xa6\xa6\xa6\xf0\xcc\x33\xcf\xdc\xc8\x70\xbb\xd6\x23\xd1\xb9\x6b\xaa\x60\x88\x8a\x88\x47\xc5\x34\xd2\xd0\x23\x91\x21\x09\xe5\xa3\x93\x6a\x32\xaf\x27\x69\xd6\x93\x32\xb5\x98\x5a\x49\xd6\x10\x63\x1f\xd3\x04\x40\x53\x4c\x0e\x94\x49\x2d\xaf\xd3\x77\x68\xc6\x8e\x9d\xf1\x1b\x62\x2a\xc5\xb3\xa2\x2b\x8c\x54\x56\xa8\x19\xaa\x30\x11\xb0\x3e\x40\x84\xc3\x61\xd8\xd3\x41\x81\x82\xd2\x57\x1e\x62\x33\x59\xa7\x54\x95\x3b\x4c\x38\xd9\x96\xc1\x50\x18\xbe\x80\x2e\x3a\x97\x98\x35\x21\x04\xac\x5d\x56\xf1\xca\x2b\xaf\xe0\xca\x95\x2b\x32\x16\x8b\xc9\x58\x2c\x66\xb8\xdd\xee\xbc\x83\x42\xb9\xbc\xbc\x8c\xd1\xd1\x51\x5c\xbe\x7c\x19\x86\x61\x34\xac\xbb\xab\x57\xaf\x62\x7c\x7c\x1c\x52\x4a\x63\xef\xde\xbd\x65\xcf\x46\xd3\x34\x31\x33\x33\x83\xeb\xd7\xaf\x23\x99\x4c\xa2\xc1\xef\xab\x7a\x93\x46\x1e\x89\xb6\xd5\x51\x54\x34\x81\x8d\x18\x12\xcb\x0d\xeb\x64\xc4\x1b\x19\xfc\xee\x88\x21\x91\x99\x05\x01\x82\x89\xe4\x7a\x46\xc2\x4a\x41\x1a\x63\x1a\x18\x12\x4b\x7a\x4c\xa5\x07\x92\x25\xdd\xbb\x6a\x6f\x6c\xc1\xcc\xaa\x14\x10\x1b\x31\xdc\x39\xac\xc1\xb2\xa8\x30\x6c\xaf\xc3\xe5\xe5\x65\xc3\x2e\xdf\xd4\xd4\x14\xa6\xa6\xa6\x60\xe9\x36\x46\x77\x77\xb7\xb0\xdc\x4b\x6a\xeb\xa0\x5e\x9d\x95\x1b\x5f\xca\xd2\x4c\xc4\xd9\xb3\x67\x9d\xf1\x37\x9d\x4e\xbd\xf3\xc2\x04\x50\x62\x00\x49\x65\x23\x94\xa5\xe8\xc1\x39\x60\x29\xc7\x3b\x47\x66\x82\x4b\x27\xea\xd5\x6c\x2e\x55\x4f\x72\xd4\xbe\xdb\x08\xa6\x51\x9a\x6b\x9e\xc9\xea\x77\x0c\x8d\xd2\x4e\x69\xc3\xd6\x3b\xe6\x0a\xae\x6a\xbf\xf3\x8d\x60\x6c\x25\x98\x2a\x76\x47\x16\x30\x4c\x17\x65\xed\xb2\x5b\x7a\xa4\x24\x22\x39\xdf\xa4\x8f\x33\x20\x05\x48\x54\xce\xc9\x5b\x2b\x81\xec\xfa\xcc\xb9\xcc\x44\xc2\x6b\xc4\xed\xdf\xf7\xf6\xf6\x8a\xeb\xd7\xaf\x57\xd5\x8f\xb5\x27\x10\x66\x67\x67\x6d\x1a\x85\x25\xf5\x1b\xd5\x21\xea\xd5\x73\x7b\x7b\xbb\x70\x4e\xc1\xac\xae\xae\xc2\xf2\x1c\xdd\x50\x3a\xf5\x4e\x2c\x2c\x37\xbe\x2c\x2f\x8d\xb5\x2a\xca\xa1\x23\x70\x59\x09\xe4\x2a\x8e\x52\x24\xdc\x76\x81\xea\xa5\xdd\x80\x18\xe7\x75\x3d\x3b\xcf\x7a\xa3\xb6\x7a\x4c\xa8\x17\xfc\x62\xa6\xdc\x48\xb6\x1d\xab\x8a\x61\xec\x06\x5d\x1f\xe3\x14\x58\x65\x89\xe1\xc0\x14\x35\x8a\x1b\x1a\xa5\x01\x18\x44\x04\x5d\xd7\xa1\x69\x9a\x64\x66\x7d\xbe\x49\x1f\x5b\x0c\x14\xaf\xb4\xa6\xb4\x21\xd4\x49\xd3\xb9\x03\x9d\xb5\x6b\xc6\x3b\x59\x97\x5c\x22\x22\x9d\x99\x91\xc9\x64\x9c\xe5\xc3\x23\x8f\x3c\x22\xda\xdb\xdb\x6d\x9f\x26\xc1\xcc\x48\xa5\x52\x98\x9b\x9b\x13\xaf\xbc\xf2\x4a\xa3\x41\x48\x55\x3d\x3d\xfc\xf0\xc3\x62\x68\x68\x48\x28\x8a\x22\xec\xb6\xb2\x75\xd7\x85\x85\x05\xbc\xf7\xde\x7b\xf6\x0a\x8e\x75\xd3\x29\x3b\x53\x3b\x1b\xc0\x9e\x7f\x29\x0a\xce\x95\x2a\xad\x62\x8d\xb5\x75\x04\xe7\x01\x2a\x0e\x83\x18\xdc\x86\x08\x60\x7d\x69\xb1\x11\x09\x54\x1b\x6e\xc4\x3c\x55\x98\x78\x3c\x2e\x42\xa1\x90\x04\x91\x9e\x69\x51\x46\x01\x48\xe6\xd2\xd1\x44\x25\xce\x80\xa5\xfc\x56\xee\xcb\x8a\x72\x3d\x4c\xb9\x8c\x76\xb7\x55\x1e\x8b\x97\x31\xd9\x66\x75\x8c\x45\xc9\x7d\x17\x80\xfc\xda\xd7\xbe\x26\x7f\xfe\xe7\x7f\x1e\x42\x88\x3c\x03\x4b\xa7\x06\x12\x7f\xf7\xb9\x0b\xd1\xff\xd5\x65\x0a\x0f\x6a\x42\xa5\xb7\x27\x24\xdd\xc6\xd2\xdb\xbd\xc9\x6f\x83\x4a\xeb\xe8\xb2\xd9\xac\x8c\xc7\xe3\xd0\x34\x0d\x47\x8f\x1e\x15\xfd\xfd\xfd\x42\x51\x14\x15\x0c\x55\x48\xa8\x82\x49\x95\x04\x19\x6c\x0a\xea\xc1\x60\xd0\x18\x1a\x1a\x32\xa6\xa7\xa7\xe5\xd3\x4f\x3f\x5d\xb7\xce\xb6\x6d\xdb\x86\x43\x87\x0e\x09\x97\xcb\xa5\x82\xe1\xf1\x16\x45\xa0\x39\xaf\x46\x35\x83\x3c\x49\x8f\x19\x4f\x7a\x8c\x78\xeb\xa6\xd6\xfc\x89\x13\x27\xf4\xe9\xe9\x69\x34\x4a\xc7\x0e\x6b\x74\x20\x87\x13\xb9\xcc\xb9\xcc\x34\xec\x2a\xa4\x8a\xdd\xc2\x2a\xab\xa5\x3b\x57\x86\xba\x00\xc1\x57\x54\x82\x96\xf2\xe8\xcc\xa7\x9e\x04\x5a\xef\x5a\xdb\x17\xd7\xfb\x7d\x43\xcc\xca\xca\x0a\xac\xa5\xbc\xd9\x4c\x48\x19\x29\xba\x29\xae\x15\x38\x5a\x56\x92\xcb\xe5\x70\x2e\x8a\x74\x48\xa2\x1a\x8c\x03\x51\xc6\x94\x7f\x60\xc5\xaf\xb6\xa9\x6f\x33\x90\x46\xc9\x85\x05\x44\x24\x26\x26\x26\x10\x8b\xc5\xf2\x00\x16\xa6\x42\x85\xd7\x5f\x18\x8a\xb7\x1e\xbf\xdc\xf2\xaf\xdd\x86\xe2\x2b\xdb\x90\xac\xa3\xac\x00\x60\xd5\x63\x2c\x3d\xbb\x2d\xfe\xc7\xab\x1e\xe3\x3c\x18\x09\x22\xd2\x47\x46\x46\xa0\xaa\x2a\x1e\x7f\xfc\x71\xb4\xb5\xb5\xa9\x04\xf2\xb5\xa6\x5c\xfd\xbb\x66\x03\x5f\xec\x58\xd5\x0e\xba\x4d\x11\xd6\x15\x4e\xce\x37\xe9\x67\x2f\xb4\x67\xbe\x39\xdd\x5c\xb8\xd8\xd9\xd9\x99\xfd\xd9\x9f\xfd\x59\xe3\xe9\xa7\x9f\xc6\xf2\xf2\x72\xb9\x7e\x86\x87\x87\xf1\xf0\xc3\x0f\x0b\x00\x1e\x7f\x41\x69\x3f\x78\x3d\xf8\xa5\x2d\x8b\xde\x7f\xe1\x29\x8a\x7e\x02\x54\x93\x90\x58\x0c\xe8\x67\xde\xe9\x4d\xfd\xc1\xd5\x48\xee\x9d\xce\xce\xce\x74\xbd\x74\x9c\x6d\xe1\xf4\x89\x66\x00\xe8\xe8\xe8\xa0\xce\xce\x4e\x01\xc0\xe7\x2d\x2a\x7d\xdb\xe7\xfd\x9f\x15\xd6\xe6\xe1\xf6\x87\x57\x9e\x33\xa9\xa3\x8b\xae\x7a\x8c\x6b\x63\xd1\xfc\xcb\x20\x24\x13\x89\x84\x61\x39\x93\x39\xf3\x20\xab\xf1\xb9\xc1\x3f\x35\xc0\xd1\x46\x31\xb3\xb3\xb3\xbc\x7f\xff\x7e\x02\x20\x58\xc0\xeb\x2a\x70\xbf\x2f\x21\x87\x2a\xfc\xc0\x96\x03\x1c\xec\x02\x39\x58\x64\x2d\xa6\xe4\x2b\xcc\x65\x1b\x50\x55\x3c\x33\x74\x9f\x98\x9b\x19\xf6\x7c\x8d\x55\xba\x4a\x44\xc9\xf1\xf1\x71\xf3\xfa\xf5\xeb\x72\x6c\x6c\x8c\x1f\x7c\xf0\x41\xa9\x28\x8a\x09\x82\xb1\xec\x33\x16\xc7\x22\xb9\x29\x97\x29\x7c\x5e\x43\xf8\x04\x43\x98\x0a\xcc\x94\xc7\x5c\xb9\xd0\x9e\x79\xfb\x85\xa1\x95\x3f\x5b\xf1\x19\x6f\x12\xd1\x18\x11\xad\xe4\x72\x39\xfd\x07\x3f\xf8\x81\x7c\xf2\xc9\x27\xa9\xbd\xbd\x5d\xa5\xd2\xbe\x94\x3f\xf5\xe9\x4b\xe1\x3f\xee\x48\x6a\x27\xfd\x45\x75\xb3\x66\x8a\x4e\x5f\x51\x89\x45\x33\xda\xe1\xad\x8b\xbe\x9f\xf0\xeb\x42\x9d\x0c\x15\x46\x14\x4d\xd5\x63\xb1\x98\x69\x1d\x0d\xc1\xbd\xbd\xbd\xf4\xe8\xa3\x8f\x0a\x21\x84\x27\x9c\x75\x0d\x7d\xe1\xdc\xa6\x3f\xed\x5b\xf1\xfc\x8c\x66\x8a\x68\x49\x59\x27\xa1\x80\x7c\x4d\x05\x75\xeb\xe0\x92\xf7\x0b\x9a\xa4\xfc\x54\x4b\xe1\xa2\xea\x52\x8b\xd1\x68\xd4\xbc\x78\xf1\x62\xdd\x36\xb3\xa7\x32\xd8\xbe\xfa\x7c\x3e\xb2\xfc\x67\xbd\xaa\x49\x9d\xbb\x66\xfd\x4f\x29\x4c\x2a\xb1\x73\x2e\xac\xf2\x85\x56\x0d\x68\x98\x91\x77\xc9\xf8\xc5\xb6\xec\xb3\x20\x24\x3c\x1e\x4f\xf1\xc3\x0f\x3f\x64\x47\x1e\xf6\x8f\xab\xf4\x6e\x67\xfe\x8e\x77\xb5\xbf\x73\xfe\xe6\x86\x98\xcd\x9b\x37\x97\x76\x2f\x25\x52\x0b\x7e\x61\x86\x67\x8c\xa3\xc2\x84\xbb\x32\x44\x27\x07\x1b\x52\x75\xca\x35\x98\xd2\xe7\x62\xdb\xc1\x2a\xd7\x52\x1d\x10\xe6\x07\xdd\xdf\x4a\x45\x94\x97\x89\x68\x86\x99\xb3\xdf\xf9\xce\x77\x4c\x9b\x2e\x29\x25\x75\x77\x77\x9b\x00\x0a\x0c\xce\xe6\x35\x5e\x1a\x8b\xe4\x46\x2e\x74\x64\xce\x8e\xb4\x67\xce\x7e\xd0\x95\x3e\x75\xb6\x3b\xfd\xec\x44\x38\xff\x4a\x51\xe5\x73\x0c\x9e\x20\xa2\xb8\x94\xb2\x70\xea\xd4\x29\x1e\x1c\x1c\xa4\x2d\x5b\xb6\x08\x66\x6e\xde\x3d\x1b\xf8\xfc\xb1\xab\xa1\xff\x5b\x65\x11\x22\x54\x14\x7b\xfb\x2a\x98\x3c\x6d\x29\xed\x61\x8f\x21\xe4\xb5\x70\xfe\x7d\xd5\xe5\x2a\xb4\xb4\xb4\xf0\xd8\xd8\x18\x3f\xf9\xe4\x93\xe4\x76\xbb\xdd\x2e\x83\x3a\x9e\x1a\x89\xfe\xfe\xa6\x8c\x76\x84\xac\x6e\x64\x4d\x3a\x20\xad\x3d\xa9\x1d\xcd\xbb\xe4\xc4\x5c\x53\xe1\x4a\x20\x10\x28\x98\xa6\x89\xb9\xb9\x39\x67\x7d\x0b\x00\xbc\xc6\x88\x97\x4a\xa5\xec\x7b\x23\xe7\x32\x93\xba\xc2\xa5\xad\xab\xaa\x64\xb7\xcd\x30\xa8\xfa\x7a\x41\x84\xa6\x82\xd2\xaa\x48\xf2\xd9\xdd\x98\xb5\x7b\x63\xa3\xa9\x88\xf5\x94\xe3\x1b\xe9\x45\xeb\x62\xae\x5c\xb9\x02\x94\x8e\xbf\x4c\xe8\x5e\x1a\x99\x1b\xd4\xfe\x81\x09\xb2\xa4\xfc\x5b\xce\x51\x16\xfd\xa5\x6e\x9b\xcb\x67\x98\xd5\x62\x9c\x4a\x75\xed\x81\x8a\xd9\x90\xb8\xb2\xd4\xeb\x7a\x86\x88\x16\x98\x39\x6b\x79\x60\x96\xcb\xf3\xc1\x07\x1f\xc8\x77\xdf\x7d\x57\x5a\xd6\xdd\x39\x66\xbe\x08\xc2\xdb\x05\x45\xbe\x92\xf4\x9a\x4f\x27\xdd\xc6\x33\x86\xc2\xaf\x31\xf8\x1d\x66\xbe\x42\x44\x0b\xa6\x69\xe6\x5f\x7e\xf9\x65\x39\x33\x33\x83\x9d\x3b\x77\x82\x99\x3d\x4d\xba\xda\x7b\x68\xa2\xf9\x37\x04\xa8\xac\x43\x95\x4d\x51\x65\x05\x1c\x20\x90\xd8\x39\x1b\xf8\xa5\x9e\x15\xf7\x61\x66\xf6\xc5\x62\x31\xf1\xc5\x2f\x7e\x51\xf8\xfd\x7e\xc1\xcc\xbe\x6d\x0b\xbe\x27\xdb\x52\xda\xb1\xaa\x76\xac\x93\x8e\x00\x69\x07\xaf\x05\x7f\xbd\xa9\xa0\xf6\x33\xb3\x67\xcf\x9e\x3d\xb6\x61\xb4\x8a\x5f\x6c\x0b\x64\xbd\x20\x0d\xc1\xd9\xbc\xcb\x4c\x96\x33\x5a\xa7\x25\xed\xe0\xd3\x95\x56\x4f\x69\x0e\x4d\xf5\x7a\xbd\x42\x5a\x06\x87\x9a\xbc\xea\x29\xd9\x37\xa2\x47\xdc\x0c\xe6\xfc\xf9\xf3\xc8\xe7\xf3\x06\x11\xa5\x41\x34\xb3\xdc\xeb\x7a\x3a\xd1\xa1\xbe\x53\xe2\x18\xcb\x12\x6c\x7d\x14\x55\x56\x61\xb6\x1c\x55\x9c\x18\x38\xf4\xe9\x8a\x29\x08\x45\x0f\xc5\xaf\xef\xf4\xfc\x19\x2b\x34\xc6\xcc\x71\x00\xba\x65\x57\x71\xd2\x23\xde\x7d\xf7\x5d\x9c\x3e\x7d\x5a\xa6\xd3\xe9\x3c\x80\x84\x75\x54\xe7\x15\x66\xbe\x08\xe0\x22\x80\x31\x00\x33\x44\x94\x88\xc7\xe3\xfa\x0f\x7e\xf0\x03\x79\xf5\xea\x55\xd9\xd3\xd3\x03\xcb\x77\xc8\x17\x5b\xf6\x1c\xf7\x15\x45\x3f\x50\x1a\xac\x94\xcd\x07\x15\xdb\x51\x59\xa0\x2a\x4c\xbe\x1d\xf3\xfe\x9f\x44\x69\x8e\x4b\xb5\x8c\x9a\x2a\x80\xe0\xd0\x82\xef\x29\x94\xcf\x33\x59\x3f\x1d\x5f\x51\xf4\xc6\xe2\x9e\x63\x00\x7c\xaa\xaa\x0a\x6b\xa5\xb2\xb3\x0d\xd6\x7a\x24\x2e\x2c\x2c\xa0\x50\x28\x48\x4d\xd3\x0c\x53\x50\x36\xe9\x31\x17\xc2\x59\x0c\x60\x43\x86\x44\x86\xcb\xa4\x40\x73\x5e\xed\x4c\x7b\x4c\x0d\x28\xb9\x33\x5c\xbb\x76\xad\x5e\x23\x37\x7a\xbe\x2d\x18\x5d\xd7\xf1\xee\xbb\xef\xe2\xc8\x91\x23\x79\x00\x4b\x2c\xe8\xd2\xe4\x4e\xcf\x57\x89\xf3\x6a\xf3\x9c\xb1\xd7\x31\xf0\xb1\x48\xb7\xba\xb4\xb2\x5e\x5c\x29\x57\x3d\x43\x62\xd1\x4b\x89\x89\x3d\xde\x3f\x2e\x34\x29\x6f\x5a\x0c\x91\x8e\xc7\xe3\x72\x6c\x6c\xac\xee\x88\x73\x74\x74\x14\xe3\xe3\xe3\x18\x18\x18\x30\x62\xb1\x98\x11\x89\x44\xca\x6b\xd2\x33\x99\x0c\x16\x16\x16\x70\xf9\xf2\x65\x58\xbb\x8d\x01\x00\x5a\x5a\x5a\x6c\x63\xa2\xaf\x2d\xa5\xed\x2b\x9b\x4f\x2c\xfa\xec\x81\x4b\xad\x2d\x89\xc1\x68\x4f\xba\xf7\x12\x28\x08\x42\x1c\xa5\x91\xa1\xa6\x9a\x14\x0a\x67\x5d\xc3\x36\xe6\x46\xe9\x00\x40\x7b\xd2\xbd\xef\x5c\x67\xe6\x5b\x00\x92\x2d\x2d\x2d\x7a\x6d\xb9\xd6\x33\x24\x1a\x00\xf2\x71\x5f\x71\xaa\x3f\xee\xdd\x90\x21\xd1\xc2\x88\xd6\x94\x6b\xdb\x54\x73\xfe\x25\x22\x12\x2d\x2d\x2d\xd2\x61\x4f\xa8\xca\xbc\xe6\xf9\xb6\x1a\x12\x01\xe0\xc2\x85\x0b\x32\x16\x8b\xa1\x3c\x93\xad\x40\xbb\xb6\xcb\xf3\x47\x1d\xde\xc2\x4f\x47\xaf\x15\x1f\x26\x13\xea\xad\x18\x12\x33\x2d\xe2\xfa\xe4\x4e\xcf\x5f\xe4\x03\xe2\x14\x73\x49\x67\x31\x4d\x53\x7f\xee\xb9\xe7\x6a\x48\xac\x2e\x57\x3e\x9f\x97\x23\x23\x23\x62\x64\x64\x44\x6a\x9a\x26\x74\x5d\x97\x81\x40\x40\xa4\xd3\xe9\xba\x65\xb7\x1c\xf5\x05\x33\x7b\x5c\xa6\x08\x56\xd5\x79\xd9\x7e\x55\xdf\x20\xa9\x48\xf8\x04\xc3\x23\x09\xf6\x0a\x1b\x01\xc0\xc3\x4e\x63\xeb\x06\xd2\x21\xc0\xc3\xcc\x1a\x11\xd9\x0b\x07\xaa\xca\x55\x3b\x3c\x16\x00\xb0\xb8\xb8\x08\xcb\xaa\x99\x5f\xf2\x17\x27\x4a\xfa\x81\x3d\xdc\xb4\x45\x9d\xf5\xcc\x15\xa5\xbc\x74\x84\x25\xa3\x33\xe9\xde\x49\x20\x0f\x33\xab\xdd\xdd\xdd\x76\xda\xce\x7c\x6a\x2b\xd9\x79\xdd\x88\x21\x71\xc3\x98\x97\x5e\x7a\x09\xd9\x6c\xd6\xb0\x26\x0d\x27\x58\xa5\xb3\x33\x5b\xdd\x5f\x1d\xdb\xef\xfd\xe3\x4c\x8b\x98\x60\x82\x5c\x63\x48\x2c\x77\x6d\x15\x7d\x07\x04\xe8\x6e\x4a\xce\x6e\xd5\xbe\x7f\xf5\x80\xef\xb7\xf3\x4d\xca\xcb\x5c\x3a\x59\x68\xc1\x34\xcd\xfc\x8b\x2f\xbe\x68\xbb\x3c\x34\xa2\xab\x4a\x37\xb2\x7c\x6b\x60\xed\x8e\x5a\x17\x03\x54\xa4\x5f\x56\x33\xd3\x95\x38\x38\x85\x3e\xaa\xe2\xad\x90\xd1\x64\xc2\xa4\xf2\xc4\x38\x98\x19\x86\x60\x99\xf2\x18\x0b\x37\x93\xce\x78\x38\x37\x62\xd3\x56\xe3\x20\xd8\xd8\x90\xb8\xb2\xb2\x82\xee\xee\x6e\x9b\x81\xae\x32\x20\xc9\x96\x4c\x37\x30\x24\x02\x84\xb6\x94\xb6\xdd\x25\x29\x58\x54\xa0\x5a\x13\x75\x77\xd5\x90\xe8\x8c\xcc\x66\xb3\x78\xfa\xe9\xa7\xf1\xc4\x13\x4f\xe8\x3e\x9f\x2f\x01\xc0\x00\x51\x36\x1d\x51\xe3\x57\x0f\x2a\x17\xfc\x09\xf3\x81\x96\x99\xe2\x5e\x7f\x5c\xf6\xbb\x0a\x32\x28\x24\x54\xb6\x26\x91\xad\xe9\x89\x7c\xae\x49\xcc\x25\xda\xd5\x0f\x57\x5b\xd5\x77\x4d\x8d\x2e\x81\xe8\x3a\x33\xcf\x58\xa3\x25\xfd\xc5\x17\x5f\x84\x75\xa2\xf2\x2d\xd1\xd8\x08\x93\xcd\x66\x61\x4d\x4c\x1b\x93\xa1\xfc\x85\x07\xa6\x03\x52\x80\x44\xd9\x86\x54\x13\x9c\x4a\xf0\x48\x7b\xe6\x0c\x2a\x3e\xd1\x92\x88\x0c\x66\xce\x5e\xda\x94\x7b\xbb\x2d\xa5\xed\x2e\x8f\xc0\xd6\x49\x27\xad\x99\x4b\xd3\xa1\xc2\x05\x58\xfe\xed\x75\x8e\x19\xad\x3f\x99\xba\xbc\xbc\x0c\x00\x06\x33\xeb\x2b\x3e\x63\x2a\xef\x92\x09\x6f\x51\x09\xdb\xa3\xdb\x52\x2e\x0e\x3b\x8a\x45\xb4\x6d\x6c\xf4\xeb\x4a\x67\x24\xe3\x1a\x9c\x6d\x2a\x4c\x28\x8a\x22\x3a\x3a\x3a\xca\x73\x36\x58\x2b\x71\x6e\xbb\x21\xb1\x16\xb3\xb2\xb2\x82\xa7\x9f\x7e\x1a\x47\x8f\x1e\xd5\xdb\xda\xda\x92\xd6\x14\x41\x92\x05\xe6\xd2\x11\x75\x2c\x15\x56\x4e\x09\x46\x54\x2d\xf0\x26\x57\x81\x43\xc2\x60\x8d\x05\xa4\xa1\x89\x64\xd1\x4d\xcb\x52\xc5\x12\x97\x5c\x3b\x17\xac\xd1\x56\x9c\x88\xb2\xa6\x69\xea\x2f\xbd\xf4\x92\xad\xb7\x34\x2a\xcf\x9a\xfa\xdd\x28\x26\x1e\x8f\xa3\xbf\xbf\x5f\x12\x51\xf6\x7a\x4b\xe1\xfd\xf9\x26\xfd\x4a\x7b\x4a\x1b\xb2\x3b\x99\xda\x25\xc9\x76\xdb\x24\x3d\xe6\xc2\xe5\x4d\xd9\x53\xb0\xb6\xf0\xb5\x99\x90\x88\x92\x17\xda\xd3\x2f\x6f\x9b\xf7\x3d\x16\xcd\xb8\xfa\x6f\x94\xce\xbb\x3d\xa9\xef\x67\x4b\x1b\x64\x64\x99\xd9\xe9\xee\x5c\xa6\x71\x8d\x21\x11\x00\x2d\x2f\x2f\xcb\x7d\xfb\xf6\x09\x22\x72\x49\x81\x40\x5f\xdc\xf3\x50\x73\x5e\xed\xd8\x88\x21\xd1\x52\x35\x95\x94\xc7\x9c\x9a\x09\xe9\xef\x02\xc8\xa4\x52\x29\x69\x1d\x57\x79\x57\x0c\x89\xf5\x30\xf9\x7c\x9e\x3f\xfa\xe8\x23\x76\xbb\xdd\x1c\x8d\x46\x0d\x21\x44\xde\xea\xd6\x56\x88\x68\x11\x44\xb3\xd2\x45\xd7\x8a\x1e\x71\x49\xf7\x89\x8b\x45\xaf\xb8\x60\x6a\xf4\x11\x2b\x74\x09\x44\x57\x89\xe8\x1a\x11\xcd\x58\xf8\xec\xdc\xdc\x9c\xf1\xcc\x33\xcf\x60\x6e\x6e\x4e\x6e\xa0\x4c\x1b\x29\xf7\x1a\xcc\xec\xec\x2c\xef\xd9\xb3\x87\x84\x10\x24\x05\x5c\x0b\x01\x3d\xbd\x79\xc9\x77\xc0\x25\x85\x9b\xca\x9e\x00\x8e\xc5\x0d\x44\x28\x2a\x9c\x7f\x7e\x6b\xfc\xab\x8b\x81\xe2\x1b\x44\x34\x43\x44\x59\x5d\xd7\x59\x55\x4b\xcb\xca\x4c\x05\x98\x6e\x2e\xc4\xfb\x56\x3c\xbb\x3d\x86\xf0\xd7\x4b\x87\x09\xf2\x5c\x67\xe6\xd5\x37\xfb\x92\x7f\x01\x81\xab\x44\x14\x4f\x24\x12\xc5\x37\xdf\x7c\x73\x0d\xfd\x6b\x0c\x89\x76\xc5\x5b\xe7\x9b\x2b\x44\xe4\x0f\xe6\xd5\xad\xdd\xab\xee\x5d\xb6\x84\x59\xcf\x90\x58\xc2\x10\x5c\xa6\x50\x47\xda\x32\xcf\x32\x21\xe5\x76\xbb\x8b\xa3\xa3\xa3\xce\x01\x9c\x53\x72\xde\x11\x43\x62\x23\xcc\xd4\xd4\x14\xbf\xf7\xde\x7b\x32\x10\x08\xc8\x68\x34\xaa\xa3\x24\xe6\xd3\x28\xed\x5a\xba\x6c\xed\x24\x3b\x07\x60\xde\xfa\x5f\x64\xe6\x15\x22\x5a\x65\xe6\x7c\x3a\x9d\x2e\xbe\xf1\xc6\x1b\x7c\xe6\xcc\x19\x59\x28\x14\x9c\x0c\xdb\xa8\x3c\xb5\xe5\xba\x29\x4c\x5f\x5f\x1f\xfc\x7e\x3f\x33\xb3\xcc\xba\x65\x6e\x32\x94\x5f\x88\x64\x5c\xdd\x01\x5d\x69\x71\xce\xe1\x81\x18\xcb\x3e\x63\xe6\xb9\xe1\xf8\x5f\x5e\x6f\x29\x3c\xc7\xe0\x71\x22\x4a\xa4\x52\xa9\xe2\x5f\xfd\xd5\x5f\xc9\xde\xde\x5e\xf8\xfd\x7e\xc9\xcc\x66\x5e\xe3\xec\x95\x68\x6e\x42\x30\xf9\x9a\xf3\x6a\x58\x95\x25\xc7\x41\x26\xc8\xb8\xcf\x58\x3c\x3d\x90\xf8\x87\x77\x7b\x52\x7f\xc7\x02\xa3\xcc\x3c\x4f\x44\xd9\x37\xde\x78\x83\xe3\xf1\xf8\x1a\x9a\xeb\x99\x76\x04\x00\x69\x9d\x6d\xee\x01\xd0\xdd\xb9\xaa\x7d\xfe\x8b\x1f\xb4\xfe\x9f\x42\x92\x5a\x35\xc5\xe5\x54\xc2\x6a\xe2\x0c\xe2\xfc\xdf\xec\x9d\xff\x97\x4b\x81\xe2\x69\x66\x4e\x7e\xf5\xab\x5f\x35\xb0\x36\x6c\xd4\x90\xb8\x91\x19\xf8\x5b\xc2\x3c\xf8\xe0\x83\xa2\xb3\xb3\x13\xa1\x50\x08\x7e\xbf\xbf\x32\x42\xb1\x14\xcf\x62\xb1\x28\xf3\xf9\x7c\x79\xdb\x37\xc7\x00\x63\xbd\x70\x23\x3d\x67\xc3\x98\x70\x38\x8c\x2f\x7c\xe1\x0b\x50\x14\xc5\xc7\xcc\x51\x02\xfa\x05\xd3\x60\x7b\x52\x7b\xa0\x6b\xd5\x3d\xe4\xd7\x95\x60\xde\x25\xb3\x73\x4d\xfa\xd8\x54\xa8\xf0\x9e\x21\xf8\x0a\x83\xc7\x2c\x83\x64\xf6\x99\x67\x9e\x91\x33\x33\x33\x70\xa4\xe3\x61\xe6\x30\x80\x6e\x02\xf5\x6b\x26\x75\x47\x32\xae\x3e\x97\x49\x9e\xb4\xdb\x8c\x27\xbc\xc6\x35\x49\xb8\xce\xe0\x09\x94\x6c\x53\xe9\xc9\xc9\x49\xc3\xf2\x4e\x5c\x43\x33\xd5\x89\x14\x00\xe4\xee\xdd\xbb\xc5\xa1\x43\x87\x54\x00\x51\xcd\xa0\x43\x5f\x7a\xa7\xfd\x0f\x9b\xf2\x6a\x2b\x6e\xc4\x40\xe5\x57\x8c\x1f\xf6\xa4\x7e\xff\xcc\xc0\xea\x6f\x03\x98\x1b\x19\x19\xb1\x37\xb4\xae\x55\x9a\x6b\xf3\x6e\x84\x69\x34\xd4\xbf\x6d\x98\xe6\xe6\x66\xb1\xba\xba\x5a\x75\x2d\x14\x0a\xc8\xe7\xf3\xeb\xfd\x1e\x37\xc8\xeb\x63\x63\x36\x6f\xde\x2c\x8e\x1f\x3f\x2e\x00\x68\x44\x14\x62\xe6\x28\x80\x28\x80\x10\x4a\x6e\xad\x06\x80\x24\x11\x2d\x59\x5b\xfb\x26\x98\x39\x7f\xe1\xc2\x05\x79\xe6\xcc\x99\x7a\xe9\xa8\x44\x14\x60\xe6\x10\x80\x30\x00\x1f\x4a\xfa\xb0\x6e\xa5\x13\xb7\xb6\xe6\xc9\x4e\x4f\x4f\x1b\xcf\x3e\xfb\x2c\x4c\xd3\xac\x4b\xb3\x82\x8a\xf9\xac\xca\x8c\x26\xa5\xc4\xf0\xf0\x30\x88\x48\x31\x09\xbe\xb6\xb4\xb6\x2b\x9a\xd5\xfa\xd7\x18\x12\xab\xe6\x33\x9c\x7b\x24\x12\x9a\x74\x25\x3c\xd2\x9e\xf9\xbe\x41\x9c\x68\x6a\x6a\x2a\x8e\x8c\x8c\x40\x4a\xe9\x1c\x38\xd6\xcb\xbb\x2a\xf9\x9a\x77\xce\xcc\x6e\x3b\xc6\xea\x92\xc8\xda\x85\x8c\x0b\x85\x02\x59\x1b\x4d\xd6\xfe\x8e\xb1\xf6\xf3\xb9\x63\x98\x95\x95\x15\x4e\x24\x12\xe8\xee\xee\x36\x14\x45\xc9\x03\x48\x13\x51\x9c\x88\xe6\x2c\x3d\x67\xca\x9a\x87\x9b\x27\xa2\x94\x69\x9a\xf9\x37\xde\x78\x83\x2d\xab\x78\x55\x3a\xd3\xd3\xd3\x68\x6f\x6f\x37\xdd\x6e\x77\x01\x96\x6f\x35\x11\x2d\x13\xd1\x82\x95\xde\xb2\xc5\x3c\xf9\x91\x91\x11\xf3\x95\x57\x5e\x81\x69\x9a\x0d\x69\x56\x1c\x04\x3b\x95\x5c\x64\xb3\x59\xb9\x75\xeb\x56\x68\x9a\x26\x00\xf8\x08\x14\xd9\xb2\xe8\x3d\x52\x19\xb4\x5b\xa5\xad\x5d\xc5\xc0\x28\xdb\x8b\x34\x43\x84\x96\xfd\xc6\x85\x25\x7f\xf1\x92\xaa\xaa\x7a\xa1\x50\x90\x0b\x0b\x0b\xb6\xd2\xe9\x54\x1a\x9d\x57\x38\xee\x6b\x31\x7c\x9f\x60\x6c\x1d\x60\x3d\x9a\x6f\x2b\x66\x65\x65\x45\x4e\x4c\x4c\x90\xc7\xe3\x91\xa1\x50\x48\x27\xa2\x3c\x95\xd6\xa0\xa5\x88\x28\xcd\xcc\x39\x29\x65\x7e\x6c\x6c\xcc\x7c\xe5\x95\x57\x60\x79\x30\xae\x49\x27\x93\xc9\xc8\x8b\x17\x2f\xd2\xea\xea\x2a\xfb\x7c\x3e\xc3\xeb\xf5\xea\x42\x88\x02\x33\xe7\x00\x14\x4c\xd3\x2c\x4c\x4c\x4c\x98\xaf\xbf\xfe\x3a\x8f\x8c\x8c\xd8\xdd\x75\x43\x9a\xeb\x7a\x24\xda\xcf\xb3\xb3\xb3\xd8\xb2\x65\x8b\x01\x20\x39\x15\x2a\xbc\x97\x73\xc9\x84\xb7\x58\x3a\x15\xaf\x9e\x47\xa2\x6d\x98\xaa\x58\x38\x49\x3c\x30\x13\xf8\x97\x97\x37\x65\x9f\x33\x89\xd3\x83\x83\x83\xc6\x85\x0b\x17\x44\x65\x7a\xac\x2a\xdf\x9b\x31\x24\xd6\x0b\x77\x12\xd3\x08\x7f\x57\x31\xab\xab\xab\xf2\xa5\x97\x5e\x82\xdb\xed\x16\x85\x42\xc1\x00\x80\x83\x07\x0f\x8a\xb7\xdf\x7e\x5b\xf6\xf6\xf6\x8a\xf9\xf9\x79\x14\x0a\x85\x1b\xa6\x63\x9a\xa6\xbc\x7c\xf9\xb2\xbd\x03\xab\x04\x20\x3b\x3a\x3a\x84\x35\x52\xae\x67\x26\x69\x48\xb3\x2d\x81\x6a\xa5\x80\x04\x40\xcc\x8c\xc1\xc1\x41\x26\x22\x61\x08\xf6\x45\x33\xae\xed\xd1\xb4\xd6\x57\x5a\xbf\x54\x71\x28\x27\xb2\x57\xca\x03\x95\x91\x5a\x29\xde\x5f\x50\xda\xa7\x43\x85\xb7\x92\x5e\x73\xd2\xef\xf7\x17\x96\x96\x96\x38\x91\x48\x00\x8d\x25\x50\xed\x68\xcd\x7e\x57\xaf\x20\x77\x0b\xb3\x66\x94\x8a\xea\xae\xe6\xae\x62\x4c\xd3\x2c\x63\xa6\xa7\xa7\x09\x00\xaf\xae\xae\x92\xa3\xab\x41\x5b\x5b\x1b\xed\xda\xb5\x8b\xb6\x6c\xd9\x42\x0f\x3f\xfc\x30\x22\x91\x08\xf5\xf5\xf5\x81\x88\x90\x48\x24\xd6\xe4\x95\x4e\xa7\x6f\x89\x1e\xa7\x0e\x84\x5a\x50\x2e\x97\xc3\xf0\xf0\x30\x2b\x8a\x42\x44\xa4\x15\x15\xd9\x34\xbc\xe8\x7b\xd8\xe6\x12\x02\x50\xcf\x90\xe8\xdc\x00\x43\x10\x29\x81\x82\x12\xfa\xa8\x35\xfb\xa2\x04\x67\xc3\xe1\xb0\x61\x6d\x38\x5e\xab\x83\x38\xaf\xb5\x3a\x8b\x93\x3e\x71\x0f\x30\x8d\x68\x85\xe3\xfd\x7d\x81\xe9\xec\xec\xa4\x27\x9f\x7c\x92\x76\xed\xda\x25\xda\xda\xda\x94\x70\x38\xac\x69\x9a\xa6\x86\xc3\x61\x35\x1a\x8d\x8a\x81\x81\x01\xde\xba\x75\x2b\xb2\xd9\x2c\xad\xac\xac\x7c\x6c\x7a\xea\x1a\x12\xad\x7b\x32\x4d\x53\xb6\xb4\xb4\x50\x34\x1a\x25\x00\x6a\x46\x93\x62\x70\xc9\x77\xd8\x57\x14\xcd\xeb\x1a\x12\xc9\xba\xb3\x18\x2a\x50\x50\xba\x17\x9a\xf4\xf7\x13\x3e\x73\xc2\xe3\xf1\x14\x8a\xc5\x22\x5b\xba\x10\xd7\xf9\xaf\x95\x06\xb5\xf1\xf7\x02\x73\xdb\x8d\x84\x77\x02\xb3\x73\xe7\x4e\x3a\x7e\xfc\xb8\x70\xbb\xdd\x6e\x95\xa9\xa9\x67\xd5\xb3\x6b\xc7\x9c\xff\xc9\x6d\xf3\xfe\x27\xba\x92\xee\xdd\x6e\x43\xb8\x52\x1e\x33\xad\x7a\x35\x33\x16\x8b\xc9\x70\x38\xcc\x96\xf7\xc0\x2d\xd3\xd3\xd0\x90\x68\xc7\x4d\x4c\x4c\xc8\x7d\xfb\xf6\x81\x99\x89\x05\x3c\x9a\x49\xed\x3d\x09\xcf\x2e\xcb\x62\x59\xd7\x90\x58\xcb\x50\x82\x49\x09\xe7\x5c\x5d\x23\xed\x99\xe7\x24\x21\x1b\x8d\x46\x6d\x4f\x45\xd4\xc9\xbf\x9e\xe8\x84\xe3\x8a\x7b\x84\xa9\x47\xeb\xc7\x32\x12\xde\x4e\xcc\x8e\x1d\x3b\xe8\xf0\xe1\xc3\xa5\x33\x6d\xd3\xae\xad\x9f\x1d\x8d\xfc\x5f\x07\x26\x83\xff\xa5\x3b\xe1\xf9\x5c\x6b\x46\x7b\xb8\x63\xd5\xfd\xe9\x2d\x4b\xde\x9f\xd9\xbc\xec\x3b\xb8\xe2\x2b\x5e\x49\x7a\xcd\x78\x28\x14\x32\xc3\xe1\x30\x4f\x4c\x4c\x10\x97\xbc\xea\x6e\x9a\x1e\x05\x6b\x2b\x8d\x6a\xe3\x2c\x6b\x28\x00\xa8\xab\x1e\x83\xb7\xcf\xfb\x1f\x29\x99\xd3\x51\x23\xd0\xea\x4b\x25\x10\xe0\xd3\x45\x57\x56\x93\x93\xf3\x4d\xc5\x51\x55\x55\x0b\x3e\x9f\x8f\xaf\x5f\xbf\xbe\x9e\x5e\xe2\x54\x66\x19\xf5\xc3\xdd\xc4\x00\x95\x8a\x93\x8e\xe7\x7b\x8e\x69\x6f\x6f\xc7\x63\x8f\x3d\x26\x88\xc8\x17\xc9\xa8\xdb\xbe\x70\xae\xf5\x2f\x23\x59\xd7\x31\x01\x72\x39\xbd\x0d\x09\x24\xbc\x45\xa5\x7f\x70\xc9\x7b\x72\x3e\xa0\x9f\x4d\xfa\xcc\xb9\x50\x28\x54\xcc\x64\x32\xbc\xb4\xb4\x44\x1b\xc9\xab\x16\xe3\x94\x40\x76\x20\xac\xe5\x3c\xd8\x3b\x74\x16\x15\x76\x05\x0b\xca\x40\x5b\x4a\x1b\xa8\x28\x42\x35\xbf\x06\x60\xcf\xcc\x57\x24\x11\xa1\x35\xa5\x6d\xbb\xba\x29\xf7\x72\xc1\xc5\xcb\xd1\x68\xd4\x98\x9b\x9b\xe3\x54\x2a\xe5\xe4\xf4\x5a\xbd\xc4\x79\x75\x72\xfe\xbd\xc0\xd4\x4a\x68\xa7\x7e\x74\x4f\x31\x27\x4e\x9c\x80\xd7\xeb\x75\xa9\x4c\x9b\x3e\x3b\x1a\xf9\x6f\xd1\xac\x76\xa8\xd4\x08\xf5\x97\x51\x0b\x26\x7f\xd7\xaa\x7b\xcf\xa5\xd6\xec\x0b\x45\x85\x53\xad\xad\xad\xc5\x8b\x17\x2f\x3a\x95\xf3\x0d\xd3\xe3\x1c\x42\xdb\xff\x6b\x9e\xc7\xc7\xc7\xa1\xeb\xba\x01\x20\x0b\xc2\xc2\x7b\x5d\xe9\xef\xe9\x0a\x67\x6d\x46\xa9\x74\x8a\xb5\x7c\x58\x0a\x36\xc6\x57\x54\xba\x8f\x5d\x0d\xfd\x8a\x90\x08\x13\x91\x73\x63\x4a\x67\xde\xa8\xb9\xaf\xf7\x7c\xaf\x31\x40\x7d\x89\x79\xd7\x31\x9d\x9d\x9d\x88\x44\x22\x82\x88\x7c\x3d\x09\xcf\xa1\xce\x55\xf7\xf1\x8d\x9c\xda\x1c\x2c\x28\xdb\xb7\xcd\xf9\x3f\x47\x44\x3e\x9f\xcf\xa7\x0e\x0e\x0e\xde\x12\x3d\xa2\x26\x52\xd6\x7b\xce\xe7\xf3\x18\x1d\x1d\x05\x4a\x4e\xea\xf1\x84\xd7\xb8\x78\xa9\x35\xfb\x36\x93\xd3\xf2\x6c\xc9\x1b\xb6\x89\xb4\x48\x65\x54\x61\x62\xcb\x9e\xcf\x6f\x9f\xf3\x3f\x09\x46\x20\x10\x08\xa8\xc7\x8e\x1d\xab\x47\x78\x6d\x21\xea\xd9\x21\xee\x25\x06\x58\xdb\xed\xde\x13\x8c\xbd\x15\x30\x33\xfb\xba\x12\xee\x23\x84\xd2\xc4\x68\xd9\xaf\xdb\x62\x1b\xa7\x88\xb5\xc3\x40\xdc\xf3\x29\x66\x0e\x02\x10\x03\x03\x03\xb7\x44\x4f\xed\x57\xdf\xf0\xf9\xc3\x0f\x3f\x44\xb1\x58\x34\x00\xa4\x41\x98\x39\xdb\x9d\xfa\x6e\x41\xe5\x74\xad\x47\x62\x89\xa9\xe0\xe0\x1f\x86\x13\x43\x0c\xf5\xc8\x78\xf3\x6f\x44\x33\xae\x9d\x44\xe4\xeb\xef\xef\x17\xbb\x77\xef\x76\xd2\xb2\x11\x43\xe2\xdd\xc6\xac\x6b\x4c\xbb\x97\x98\x4d\x9b\x36\xd9\xbb\x80\x78\xfc\xba\xd2\x69\x83\x37\xe2\x6d\xe8\xd3\x95\x76\xb2\xe6\xc1\xac\x7d\x31\x6f\x9a\x9e\xda\x46\x6b\x74\x45\x2e\x97\x93\xa3\xa3\xa3\xa0\xd2\xf6\xbd\xf1\x15\xaf\x31\x72\xbe\x3d\xfd\x9a\xbd\xc3\x96\x53\xdb\x81\xf3\xae\x3c\x2a\xab\x60\x3c\x86\xd2\xfe\x99\x8f\xc2\xff\xc5\x5d\x14\xdd\x44\xe4\x39\x70\xe0\x80\xe8\xed\xed\xad\x43\x63\x39\xdc\xc8\x7a\x7c\xa7\x31\x4e\x0b\xed\x8d\x7e\x77\x57\x31\x6e\xb7\xdb\xde\x58\x41\x2d\xa8\x32\x5f\x52\x5c\x1c\xbb\x86\xd4\x04\x7b\x39\x1c\x81\x90\x75\xc9\x34\x5b\x5b\xfc\x44\x22\x91\x5b\xa2\x47\xd4\x5c\x1b\xbd\x07\x00\xf1\xc1\x07\x1f\xa0\x58\x2c\x1a\xcc\x9c\x64\xf0\xcc\xd9\x9e\xd4\x77\x33\x9a\x19\x07\x2c\x26\xaf\x31\x24\x32\x73\x15\x13\x39\x31\x9b\xd2\xae\xc3\xc7\xaf\x84\xfe\x37\x45\x22\xaa\x28\x8a\x76\xe4\xc8\x11\x04\x83\xc1\x35\x79\xd6\xa3\xe3\x1e\x60\x6a\xdf\xdd\x37\x18\x5d\xd7\xed\x4d\x11\x8c\xd9\x60\x61\x8c\xc1\x65\x9d\xb3\xac\x95\x5a\x83\xe3\xd2\x82\x81\xca\xdf\x44\x24\x77\x1e\x25\xcf\x53\x69\x79\xa1\xde\x34\x3d\xeb\x1a\x12\x51\x63\x5c\x33\x0c\x43\x6a\x9a\x46\x1d\x1d\x1d\x4c\x44\x5c\x54\x98\x8a\x0a\xfb\xfb\xe3\x9e\x5d\xa2\x62\x3e\x5c\x63\x48\x84\x23\xe1\x32\x06\x84\x48\xc6\xb5\x4b\x30\xe5\xa6\x42\x85\x73\x2e\x4d\xd3\x63\xb1\x98\x39\x31\x31\x01\x5d\xd7\xeb\xe6\x5f\xe7\xfe\x47\xde\x90\x18\x08\x04\xa8\xbb\xbb\x9b\x00\xb8\xd3\x9a\xe9\xda\xbc\xe4\x3b\xec\x35\x94\x20\x01\x68\xe4\xb5\x48\x20\xe4\x55\x99\x7c\x75\x70\xf5\x4f\x0a\x2e\xfe\x88\x88\x56\x17\x16\x16\xcc\x3a\x46\xc5\x8f\x6f\x48\x44\x0d\x63\x4d\x4f\x4f\xf3\xd6\xad\x5b\x59\xd3\x34\x66\x66\x2c\xfb\x8b\xb9\xae\xa4\x7b\x67\x73\x5e\x8d\x36\x32\x24\x3a\xb5\xb7\x6a\x0c\x51\x7b\x4a\x3b\x50\x50\xe5\xcc\x7c\xb0\x78\x55\x73\x6b\xc5\xfe\xfe\x7e\xf3\xfc\xf9\xf3\xf5\xf2\x77\x0e\xf1\x9c\x71\x77\x0b\x83\x3a\x75\x65\x5f\xef\x19\x66\x6e\x6e\x4e\xee\xd9\xb3\x87\xac\xf9\x4a\x25\xe9\x35\x79\x70\xc9\xbb\x5f\x61\x52\x4a\xbd\x00\xaa\x57\xd4\x02\x90\x60\x9c\x89\xad\xfe\xfd\xb5\x70\xfe\x45\x10\xa6\x99\x39\xf3\x8d\x6f\x7c\xc3\xbc\x51\x5e\xf5\xe8\xd9\x90\x21\xd1\x71\x2f\x00\x70\xb1\x58\xa4\xbe\xbe\x3e\x93\x88\x4c\x16\xc0\x92\xbf\x98\x1d\x9e\xf7\x1d\x56\x20\xd4\x2a\x66\x01\x6a\x6e\xb0\xc6\xd8\x28\x40\x6a\x4f\xc2\xf3\xc9\x8c\xdb\x9c\x58\x0c\x14\xc7\x35\x4d\x33\x86\x87\x87\xe5\xc4\xc4\x04\xe9\xba\xfe\xcf\x86\xc4\x0d\x60\x62\xb1\x18\x7b\xbd\x5e\x49\x44\x94\xf0\x1a\xa9\x15\x9f\x51\xe8\x58\xd5\x36\x6b\x26\x79\x6c\x77\x1b\xdb\x1e\x54\x50\x39\x7b\x26\xb6\xfa\xdd\x0f\xba\xd2\x7f\x0b\xc2\x15\x66\x5e\x2e\x14\x0a\xc5\xd1\xd1\x51\xb2\x9c\xc6\x6e\x8a\x9e\x8d\x1a\x12\xab\x0c\x6d\x2b\x2b\x2b\xd4\xdd\xdd\xcd\x7e\xbf\x5f\x02\xe0\xac\x26\x8b\x04\x0a\x75\x27\xdc\xc3\xe5\x4d\x07\x2c\x78\x5d\x5d\xae\xc6\xd8\x28\x40\xae\xde\x15\xf7\xd1\x9c\x26\xaf\x2f\x36\x15\x27\x34\x4d\x33\x1c\x92\xe8\x9f\x0d\x89\x37\xc0\xac\xae\xae\x62\x68\x68\x88\x89\xc8\x60\x70\x71\xc5\x67\x2c\x5e\xde\x94\xbb\x92\x77\x49\x83\x00\x61\x08\x2e\xae\x78\x8d\xc5\x8b\xad\xd9\xf7\x5f\x19\x5c\xf9\xdb\xf1\x48\xfe\x79\x10\x3e\x62\xe6\x79\x00\xb9\xb7\xde\x7a\x8b\xad\x25\x3b\x37\x4d\x4f\x43\x8f\xc4\x9a\x67\x38\xdf\x31\x33\xe6\xe6\xe6\x30\x3c\x3c\x6c\x12\x91\x24\x22\x9e\x6f\xd2\x93\x9d\x49\xf7\xb6\xe6\xbc\x1a\x75\xc2\xc9\xc1\x28\x36\xdb\xd4\x8e\xd8\x08\x80\x60\x78\xfa\xe3\xde\xc7\x74\x45\xce\xce\x37\xe9\x63\x9a\xdb\x5d\xdc\xb6\x6d\x9b\x4c\xa5\x52\x48\x24\x12\xce\x01\x69\xed\x70\xcf\x8e\xbb\x9b\x18\xae\x79\x7f\x4f\x31\xa9\x54\x4a\x16\x8b\x45\x74\x77\x77\x1b\x44\x54\x60\x70\x5a\x57\xe5\xd2\x4c\x48\xff\x68\xb4\x3d\xfb\xf6\x87\x5d\xe9\xd7\x46\x3a\x32\xaf\x4c\xb6\x14\x4e\xe7\x5c\xe6\x07\x44\x74\xd5\x62\x9e\xec\xf5\xeb\xd7\x4d\x6b\xb5\xc5\x2d\xd1\xd3\xd0\x23\xb1\xc1\x73\x39\xe1\x7c\x3e\x2f\xdd\x6e\x37\x59\x87\x81\x18\x92\x98\xe7\x9b\xf4\xd4\x96\x45\xdf\x01\x55\x0a\xb7\xfd\xd3\xd2\x52\xa0\x0a\x3d\xb5\x5e\x8b\x4e\x0c\x81\x5c\xbd\x09\xcf\x23\x8a\xa4\xe2\x74\x73\x61\x44\xd5\x5c\x46\x7f\x7f\xbf\xcc\xe5\x72\xbc\xb4\xb4\x84\x06\xf4\xd8\x71\xb5\xcf\x77\x12\xe3\x14\xe7\xb7\x05\x13\x89\x44\x68\xf3\xe6\xcd\xe8\xe9\xe9\x41\xa1\x50\x40\x2e\x97\xbb\xa9\x74\x16\x16\x16\xc8\x34\x4d\xee\xea\xea\x32\x2c\x6f\xc5\x94\xb5\xc2\x64\x9e\x99\xa7\x89\x68\x92\x99\xaf\x59\xae\xaf\x71\x00\xb9\xeb\xd7\xaf\x9b\x2f\xbc\xf0\x02\xac\x89\xd4\x5b\x2a\x97\x93\x81\xea\x49\x9c\x7a\x9c\x58\x7e\x5e\x58\x58\x40\x57\x57\x97\xf4\xfb\xfd\x26\x00\x23\xef\xe2\x42\xd2\x63\xf0\xc0\xb2\xf7\x81\xd2\x16\xc1\xa5\xfc\xc8\xf9\x6b\x8b\x8c\x8a\x3b\x48\x35\x86\x00\x57\x57\xd2\x7d\x34\x94\x57\x43\x53\xa1\xc2\x79\xa9\x52\xae\xb7\xb7\xd7\x0c\x85\x42\x3c\x3d\x3d\x6d\xf7\xd3\xb5\xfa\x9a\x4d\xab\xd3\x86\x73\x3b\x31\xce\xbe\xbf\x1e\xf6\x96\x31\x3e\x9f\x8f\x0e\x1d\x3a\x44\x47\x8f\x1e\x45\x6f\x6f\xaf\xda\xd1\xd1\x21\xb6\x6f\xdf\x8e\x96\x96\x16\x4c\x4e\x4e\x42\x4a\xb9\xe1\xbc\xe6\xe7\xe7\x71\xf6\xec\x59\xb3\xb3\xb3\xd3\x0c\x04\x02\x05\x00\x39\x22\x4a\x5a\x4b\x92\x56\x2c\xa6\xca\x66\xb3\xd9\xe2\xd7\xbe\xf6\x35\xf3\xea\xd5\xab\xe4\x58\x61\x72\x4b\xe5\x5a\xd7\x23\x11\xf5\x39\xb1\x7c\x35\x4d\x93\x17\x17\x17\x69\x70\x70\xd0\x54\x55\xd5\x44\x69\x5d\x51\xca\x6d\xd2\xa6\x8e\x94\xdb\x9a\x6c\xb5\x86\x90\xeb\x78\x2d\xd6\x62\x08\x44\x91\x8c\x6b\x6f\xef\x8a\x67\xd7\x5c\x50\x3f\x97\xd3\x64\x32\x1c\x09\x9b\x5b\xb6\x6c\x91\xc9\x64\x92\x56\x57\x57\xeb\x35\x7c\x23\x23\xe1\xed\xc0\xd4\xd3\x03\x9c\x9f\xc4\x2d\x61\xba\xba\xba\xe8\xe4\xc9\x93\xe8\xec\xec\x54\x09\xe4\xeb\x5e\x75\x0f\x6d\x9f\xf7\x3f\x34\x1d\xd2\xaf\x87\xc3\x61\x19\x8d\x46\xe5\x95\x2b\x57\x6e\x3a\xaf\x4b\x97\x2e\xf1\xdc\xdc\x1c\x0c\xc3\x30\x93\xc9\xa4\xe1\x72\xb9\x8a\xd3\xd3\xd3\xc6\xcc\xcc\x8c\xf9\xe1\x87\x1f\xb2\xe3\x1c\xf8\x8f\x5d\xae\x75\x3d\x12\x1d\xf1\x70\xdc\x3b\xb1\x22\x97\xcb\xa1\x58\x2c\xa2\xa7\xa7\xc7\x24\xa2\x22\x08\xe6\x4c\xb3\xbe\x35\xd6\xea\x8f\x00\x00\x0d\x00\xff\x0d\x00\xf2\xea\x49\x44\x41\x54\x14\xcd\x68\x03\x2d\x39\xb5\xcd\x66\xa2\x32\x45\x75\xbc\x16\xab\xf6\xe1\x71\xe8\x48\x7e\x5d\xed\x1f\x5a\xf4\x7e\x46\x57\xe5\xc2\xa2\xbf\x38\xe5\x72\x6b\xe6\xe6\xcd\x9b\x65\x20\x10\xc0\xb5\x6b\xd7\x6a\x69\xac\xa2\xab\x41\x39\x6e\x15\x53\xfb\xae\x9e\xa4\xde\x30\xc6\xeb\xf5\xd2\xd1\xa3\x47\x71\xf0\xe0\x41\xa1\x69\x9a\x5b\x48\x84\x76\xcf\x06\x7e\xec\xd3\x97\xc2\x7f\xd2\x93\xf0\xfc\xe4\x52\xa0\xf8\x5e\xdc\x5b\x9c\x6b\x6e\x6e\x36\x54\x55\x65\xc7\x51\x03\x1b\xce\x2b\x95\x4a\x61\x72\x72\x12\xe3\xe3\xe3\x38\x7f\xfe\x3c\xc6\xc6\xc6\x30\x39\x39\x09\xeb\x08\xa9\x9b\xa6\xb9\x11\xe6\xa6\x0c\x89\x8e\x67\x72\xfe\x6e\x71\x71\x91\x23\x91\x08\x5a\x5a\x5a\x4c\x00\x86\x14\x28\x4e\x86\xf2\x8b\x3d\x09\xcf\x0e\xbf\xae\x34\xd7\xa3\xa0\x91\xb1\xd1\xea\xdc\x60\xcb\x2b\x55\x8a\xe6\xfe\xb8\xe7\xb3\xd1\xac\xab\x63\xbe\x49\xff\x48\x57\x39\x17\xdd\x14\x35\x77\xef\xde\xcd\x00\xec\xa5\xc5\x4e\x1a\x6b\xef\xeb\x95\xe3\x66\x31\xb7\xcd\x00\xb8\x6f\xdf\x3e\x7a\xf4\xd1\x47\xd1\xda\xda\xaa\x12\xc8\xdf\x9c\x57\x62\x9f\xf9\x28\xf2\x9f\x1f\x9c\x0e\xfc\x47\xa5\xb4\x75\x9d\xbb\x33\xa9\xed\x1b\x8f\xe6\x5e\x2d\xb8\x38\xd1\xd6\xd6\x66\x2c\x2f\x2f\xb3\x75\x7c\xd4\x6d\xa7\xe7\xe3\x62\x6e\xda\x90\x58\xe7\x5e\x00\xe0\xb1\xb1\x31\xde\xb2\x65\x0b\xbb\xdd\x6e\x03\x40\xd1\x50\x58\x9f\x0a\x15\x96\x63\x71\xcf\x6e\x77\x51\xf1\x95\x1d\x9b\x6e\x60\x6c\xac\xc8\x2a\xe7\x29\x5e\xa4\x84\xb3\xae\x07\xb6\x2e\xf8\x4e\xb0\xe0\xe4\x92\xbf\x38\x4d\xaa\x30\xbb\xba\xba\xcc\x2d\x5b\xb6\xa0\x58\x2c\xd2\xf2\xf2\xb2\xf3\x23\x80\xe3\xbe\xb6\x1c\xb7\x8a\x01\xd6\xd6\xd5\x86\x0d\x6e\x43\x43\x43\x74\xe2\xc4\x09\xea\xef\xef\x57\x15\x45\xf1\xb8\xa4\x88\x3c\x30\x1d\xf8\xf1\xcf\x7c\x14\xf9\xfd\x4d\x19\xd7\x51\x01\x52\xec\xcf\x5d\x33\x45\xa4\x25\xab\xb6\x5d\x8e\xe6\x4e\x49\xe2\x5c\x5f\x5f\x9f\xf1\xd1\x47\x1f\x91\x61\x18\x1b\xca\xeb\x6e\x62\x6e\xc9\x90\xe8\xc0\x54\xe9\x0a\xe3\xe3\xe3\xb4\x79\xf3\x66\x53\xd3\x34\x83\x99\xf5\x82\x8b\x73\x53\xa1\xc2\xd2\xe6\x65\xef\x6e\xcd\xde\x1f\x79\x1d\xaf\xc5\x4a\x20\xab\x6b\xab\xbc\x22\x66\x68\x52\xb4\xf4\xad\x78\x4e\x0e\x2c\x7b\xf7\x65\x5d\x72\x7e\xd5\x6b\xac\xb8\xdc\x9a\xd9\xd7\xd7\x27\x77\xef\xde\x0d\x4d\xd3\x68\x7a\x7a\xda\x49\xb3\x5d\xf0\x7b\x66\x48\xdc\xbf\x7f\x3f\x7d\xfa\xd3\x9f\xa6\xcd\x9b\x37\x0b\xb7\xdb\xed\x16\x12\xa1\xcd\x71\xdf\xc3\x8f\x5f\x0c\xff\xb7\x6d\x0b\xfe\x7f\xa7\x49\xd1\x62\x4b\x5d\x67\x55\x34\xe7\xd5\x2d\x00\xd2\x53\x21\xfd\xbc\x10\x42\xef\xe8\xe8\x30\x2f\x5e\xbc\x58\x9b\xdf\x4d\xd3\x73\xbb\x31\xb7\x64\x48\xac\x73\x15\x00\xa8\x58\x2c\xca\xd5\xd5\x55\x8a\xc5\x62\x06\x11\x19\x44\xa4\x67\x35\x99\x9d\x0b\x16\x92\x7d\x71\xef\x0e\xcd\x14\xee\x72\x0e\x00\x1a\x1b\x1b\x2b\xdc\x53\xd6\x89\x2a\x7b\x32\x93\xbf\xa8\xf4\x6f\x59\xf2\x7e\xa1\x3b\xe1\xde\x9e\xd3\xe4\x62\xd2\x6b\x26\x14\x55\x41\x5b\x5b\x1b\xef\xdd\xbb\x97\x23\x91\x08\x09\x21\xc8\xda\x0c\xa0\x1e\xad\x65\x9a\xd7\x29\x4f\x2d\x66\xc3\xc6\xbd\x81\x81\x01\xb2\xba\x2a\xea\xea\xea\x52\x15\x45\xf1\x08\x50\xb0\x6f\xc5\x73\xf0\xb1\x4b\x2d\xff\x79\xdf\x54\xd3\xff\xee\xd7\x95\xcd\xd6\x96\xe5\x35\x99\x33\xac\xfd\x19\xa9\x3d\xe5\xde\xbb\x10\xd0\xcf\x26\xbc\xc6\x54\x20\x10\xd0\x5d\x2e\x17\xa6\xa6\xa6\x6e\x9a\x9e\x3b\x89\x21\xeb\xe1\xb6\x86\x9e\x9e\x1e\x7c\xfa\xd3\x9f\x16\xaa\xaa\x7a\x00\xb4\x32\xf3\xd0\xa6\x8c\xf6\xc9\xa7\x2e\x44\x7f\x21\x98\x57\xc2\x95\x0d\xa9\x4a\xa1\x5c\x71\x55\x55\x59\xea\xc4\x9c\xce\x98\x15\xae\xae\x60\x18\xac\x2f\x06\x8a\xaf\x7d\xd0\x95\xfe\xf3\xb1\x48\xee\x74\x5e\x95\x09\x10\xf2\xcc\x6c\x00\x90\x63\x63\x63\x98\x9d\x9d\xc5\xf4\xf4\x34\x56\x57\x57\xed\x04\xea\xb9\x28\xd4\xc6\xad\x87\xb1\xbf\x42\x01\x00\xcd\xcd\xcd\xe8\xec\xec\x44\x47\x47\x07\x62\xb1\x18\x14\x45\x11\x28\x1d\x78\xa7\x79\x0c\x11\x8e\x2d\x7b\x0e\x3d\x38\xdd\xf4\x3f\x6f\x4a\xbb\x8e\x11\xec\x23\x44\x2b\xdd\x78\x75\xb9\x9c\x81\x90\x76\x1b\x57\xbe\xf1\xc0\xc2\x97\x12\x1e\x63\x84\x88\xb2\xcf\x3f\xff\xbc\x1c\x1f\x1f\x5f\x97\x9e\x8d\xd0\x7c\xbb\x30\x4e\x06\xaa\xfd\x71\xbd\xe7\x7a\x15\x2c\xeb\x60\xe4\xfe\xfd\xfb\xc5\x9e\x3d\x7b\x04\x4a\x0e\x4b\xad\x00\x06\x23\x59\xd7\x91\xcf\x8e\x46\xfe\x4d\x34\xe3\xea\x74\x32\x8b\xfd\x19\x96\xaa\xcf\x62\x19\x46\x79\xfe\xc6\xd9\xa5\x35\xc6\xc0\xc8\x68\xe6\xa5\xab\x91\xfc\x3f\x5c\x6a\xcd\x7e\x6f\xae\x49\x1f\x33\x05\x67\x41\xa5\xdd\xb5\x98\x59\x66\x32\x19\x39\x3b\x3b\x8b\x5c\x2e\x87\xd9\xd9\x59\xa4\xd3\x69\x2c\x2f\x2f\x4b\x45\x51\x44\x9d\xcd\x03\xaa\xca\x65\x63\x5a\x5a\x5a\x44\x30\xf8\xff\xb5\x77\x75\xbd\x6d\x23\x57\xf4\xdc\x21\x45\x51\xb2\x2c\x5b\x8e\x62\xcb\xb2\xd7\x71\xec\x24\x9b\xe6\xab\x4e\xda\x8d\xf7\x61\x37\x09\x36\x41\x80\x6d\x81\xa2\x0f\x7d\xe9\xf3\xfe\x82\xfd\x0f\xfd\x0f\x7d\x2c\xfa\x10\xa0\x2d\x90\xb6\xd8\x00\x05\xda\xa4\x68\x83\x7d\x08\x62\xac\x8d\x38\x71\x16\x1b\x7f\x24\x8e\x6d\xf8\x23\x96\x65\x59\xa6\x29\x4a\xa4\x66\xfa\x40\x52\xa2\x65\x52\x91\x1c\x39\x71\x93\xbd\x80\x40\x89\x73\x34\x43\xce\x5c\xdd\x19\x1e\x52\xf7\xc4\xd1\xd9\xd9\x89\x44\x22\x81\xde\xde\x5e\xb4\xb7\xb7\x33\xc0\xc9\x45\x08\x52\x24\x81\x68\xcf\xb6\x32\x78\xea\x55\xf4\x97\xc3\x1b\x91\x5f\xc7\x8a\xd2\x69\x00\xf2\xeb\x73\x12\xfa\x9e\x17\x16\x12\xc5\x6f\xbe\x39\xbb\xfe\xb5\xc5\xc4\xaa\xae\xeb\xc6\xad\x5b\xb7\x82\x8e\xd5\x77\x2c\x0e\x12\x73\x20\x11\xc8\xad\x7c\x74\x74\x14\x17\x2e\x5c\x60\x00\x54\xd8\xd9\x24\x4e\xb4\x99\xd2\xa5\x9b\x3f\x74\x7d\x75\x6c\x53\x3d\x65\xf7\x1e\x01\xce\x73\x43\xde\x64\x33\x95\xe4\x9d\xce\x5f\xa7\xed\x8e\x75\xa7\x36\x51\x17\x23\x08\xc6\xb6\x5a\x7e\x3c\xdf\x65\xdc\x7b\x99\x28\x7c\xbb\xd6\x5e\x9a\xde\x51\x78\x4e\x40\x94\xdc\x6c\x5d\x80\xad\x2b\xe6\x12\x69\x6b\x6b\x6b\xa8\xf9\xcb\x75\xf5\x58\x88\x90\x4a\xa5\x5c\x46\x9d\x39\x79\x0b\x99\xa3\x0d\x26\x13\x48\x89\x98\x2c\xde\xb3\xad\x9c\x38\xb6\xa9\x7e\x3e\x98\x55\x6f\x74\x18\xf2\x25\x12\xa4\x56\x83\xa5\x3d\x35\xb9\x17\x0a\x15\x45\x1f\xa7\xa8\x3e\x46\x60\x6c\x20\xff\xbb\x07\x83\xf9\xdf\x83\x90\x79\xfe\xfc\xb9\x75\xef\xde\x3d\xef\x0f\xbc\x76\xc0\xbd\xfb\x0f\x14\x43\xa8\xef\x81\xaf\xf3\x44\xd7\x02\x31\xa3\xa3\xa3\xec\xfc\xf9\xf3\x8c\x31\xa6\xc2\x4e\x25\x32\x18\xb2\xe8\xc2\x67\xcf\x3b\x7e\x7b\x7e\x35\xf6\x29\x13\xc4\x04\x76\x5f\x9d\x79\xad\x9a\x62\xd7\xe9\x60\xbf\x15\x53\x00\xc6\x79\xb0\xaa\x54\x94\xc5\x72\x2e\x62\x4e\xad\xc4\x4b\x13\x6b\xed\xa5\xc9\xcd\xa8\x39\x9f\x8b\x58\x99\x32\x13\x46\x99\x50\x02\x81\x7b\xce\xa7\xd6\x8b\x98\xd3\x06\x23\x10\x63\x02\xb2\xc4\x49\x8d\x17\xe5\xae\x84\x2e\x0f\xf6\x6c\x2b\xe7\xd2\x5b\xe1\x4f\x12\x05\xf9\x9c\x6a\xb2\x01\x02\x14\x3b\x5a\xd6\x6a\x41\xef\x3e\x3a\xaf\x03\x35\x82\xb1\x18\xcf\xff\xe3\xcc\xc6\x57\x2f\x8e\x18\xf7\x84\x10\xda\x9d\x3b\x77\xb8\x43\x61\x04\x0d\x3c\x50\x7f\x2c\x5b\x82\xa9\x8d\x40\x7e\xa0\x20\x6b\x04\x03\xc0\xd6\x0e\xbd\x71\xe3\x06\x24\x49\x52\x89\xa8\x13\xc0\x00\x09\x9c\x3e\xb3\xda\xf6\xe5\xe7\x73\x9d\xbf\x52\x3d\x0a\x36\x5e\xe1\xfb\xbd\x6b\xa2\x6a\x58\xdf\x3f\x46\x40\x00\xba\x29\x89\x8c\x1e\x2a\x2f\x6b\x6a\x79\xb5\x20\xf3\x57\x46\x88\x67\x0b\xa1\xf2\x96\x25\x09\xc3\xd1\x49\xe3\x24\x20\xcb\x9c\x54\xd5\x64\x1d\xaa\xc5\x3a\x23\xa6\xd4\x1d\x2b\x4a\xa9\x58\x51\x4a\xcb\x9c\xba\x99\x40\xb4\xda\x07\x3e\xeb\xf1\x1a\x29\xac\x37\xc5\xbc\x4c\x18\x7f\xf9\xdb\xf9\xf5\xaf\x01\x64\x26\x27\x27\xad\xb1\xb1\xb1\x46\xba\xff\x40\x6d\x8f\x6a\x73\x8d\xf9\x79\xa1\xfb\xbe\xb6\xbc\x16\x53\xb1\x85\x85\x05\xdc\xbd\x7b\x97\x5d\xbf\x7e\xdd\x50\x14\x25\x0b\xc0\x12\x04\xe3\x69\x6a\x47\xcb\xb4\x99\xcb\x5f\xcc\x24\x7e\xd3\xad\x85\xfa\x5d\x0a\x11\xa8\x5e\x9b\xed\xfe\xdf\x87\x67\xda\xda\x37\x86\x40\x40\x34\x5c\xa6\x01\xa5\xcc\x06\x12\x46\xc8\x29\xaf\x6f\xde\x75\x9a\x3b\xdb\xb8\x8d\x56\xf7\x91\x83\xd9\x9d\x0a\xf0\x4d\x31\x16\x83\xf5\xa8\x6f\xfb\x5f\x63\xc7\xf2\x7f\xa4\xdd\x51\x3a\x68\xec\x7c\xc7\xe1\x20\x30\x2d\x23\x12\x7d\xf6\x7b\xcb\x58\x3e\x9f\xe7\x8f\x1e\x3d\x12\x27\x4f\x9e\xe4\xe1\x70\xb8\x04\xa0\x00\xc2\xb6\xa6\x58\xd9\x99\x6e\x7d\x4e\xe6\xac\xfd\xa8\xa6\xf4\x4a\x20\xe6\x1e\xc6\xde\xf8\x52\x6d\xa4\xd5\x18\x78\xca\xc8\xe7\x55\x09\x04\x9e\xed\xee\x7a\x5a\x8f\x01\x01\xb9\x88\x99\xb9\xfb\x71\xf6\x4f\x8f\xd3\x3b\x7f\x2d\x4b\x78\x0e\x20\x23\x84\x28\xde\xb9\x73\xc7\xef\x09\x42\x77\xeb\x3b\x06\x07\x81\x69\x29\x91\xe8\xd3\xe0\x9e\xf5\xd2\xd4\xd4\x94\xe8\xea\xea\x12\x89\x44\xa2\x24\x84\x28\x10\x91\x56\x66\xc8\xbf\x4c\x18\x2f\x56\x3b\x8a\x1b\x47\xb5\x50\x5f\xc4\x94\x62\xbb\xd2\xc7\x00\x7b\x7b\x1b\xd5\x2b\xb3\x83\xc7\x38\x65\xb4\x7b\xeb\xb7\x7e\x69\x15\xa6\x2c\x09\xeb\x69\x6a\x67\xec\x9f\xa7\xb3\x7f\xc8\xc4\xcc\x6f\x61\x3f\x00\xb6\x0a\x5b\x52\xa1\xec\x24\x2d\xad\x1d\x03\xbf\x40\x7a\xa0\x98\x96\x12\x89\xf0\x77\x32\x51\x5b\xcf\xfc\xfc\x3c\x15\x8b\x45\xd1\xdf\xdf\x5f\x26\xa2\x02\x80\x1d\x10\xb4\xad\x48\x79\xed\xd9\x51\x7d\xa6\x4c\x90\xbb\x77\x94\x3e\x49\x90\x54\x4b\x24\x7a\x97\xc8\x41\x64\x63\xab\x31\x8d\xaa\x2d\xb7\x0a\xf3\x2a\x66\x2e\xdf\xfd\x38\xfb\xe7\xc7\x7d\xda\xdf\x4b\x12\x7f\x04\x60\x96\x88\xd6\x00\xec\x6c\x6e\x6e\x5a\xb7\x6f\xdf\xf6\xb2\xe6\xb5\x63\x40\x08\x1e\x8b\xff\x0f\x22\x11\x0d\x2e\xc2\x93\xc9\x24\xbb\x79\xf3\x26\x62\xb1\x98\x2c\x84\x50\x9d\x04\x92\xfd\x04\x1a\xe8\x2c\xc8\x3f\xfd\xf4\x65\xfc\x17\x27\xd6\xa3\x67\x64\x01\xd9\x9d\x8a\x6c\xf3\x4e\x3b\xaf\x27\x1b\xdf\x1c\xe3\xb5\xea\x74\xd7\x5a\x8c\xc0\x76\xb8\x9c\xfb\x6e\x20\xff\xdf\xa7\x3d\x3b\xff\x29\x4b\x98\x05\xb0\x00\xe0\x15\x00\x8d\x73\x5e\x7a\xf6\xec\x19\x77\xd4\x9a\x2b\x7d\x88\xf7\x95\x48\x0c\xd8\xfa\x62\xae\x5e\xbd\xca\x4e\x9d\x3a\x65\x73\x2a\x44\x31\xd8\x9c\x51\x3f\x09\x0c\xf6\x6d\x85\x3f\xf9\xf9\x42\xfb\x17\x1f\xe5\xd4\x21\x26\xc0\xdc\x2e\xdf\x1f\xd9\xd8\x1a\x4c\x23\x04\x60\xe3\x18\x01\x3d\xc4\xb5\x27\x69\x6d\x6c\x32\xad\xfd\xbb\x10\xe2\xd3\x02\x62\x81\x6c\x6d\xb1\x1c\x11\x19\xba\xae\x5b\xf7\xef\xdf\xc7\xe2\xe2\x62\x50\xdf\xbf\x9f\x44\x62\x33\x98\xa3\x47\x8f\xe2\xca\x95\x2b\x38\x72\xe4\x08\x13\x42\xa8\xb0\xb5\xae\x92\x44\x94\x76\x1c\xe9\xe2\xa5\xc5\xf6\x6b\x03\xb9\xf0\x90\xc4\xed\xdc\x8e\x6f\x42\x36\x36\x85\xd9\x37\x01\x58\x07\xe3\x44\x9c\xef\x53\x3b\x13\x4f\x7a\xb5\xfb\x9a\x52\x9e\x25\x5b\x83\x63\x15\x40\x96\x88\x74\xd3\x34\x4b\xb3\xb3\xb3\x78\xf0\xe0\x01\x9c\x6c\xb1\x6f\x95\x24\x6c\x04\x43\xa8\xef\x81\x6f\x4c\x24\x36\x58\x0f\x03\xc0\x19\x63\x6c\x64\x64\x04\xe7\xce\x9d\x83\xaa\xaa\x32\x6c\x06\x3b\x0e\x3b\x22\xa5\x49\xa0\x3f\xa9\x85\x7e\x72\x61\x39\xf6\xd9\xf0\x46\xe4\x4c\xc4\x64\x51\x77\xb0\xf7\x4b\x36\x36\x8a\xa9\x44\x93\x26\x09\x40\xda\x55\x2e\xc0\x09\x3c\xd3\x66\xae\x3e\xed\xdd\xf9\x6e\x3a\xa9\x3f\x34\x42\x7c\x1e\x84\x25\x00\xab\x00\xb2\xb0\x75\x29\x4a\x2b\x2b\x2b\xfc\xe1\xc3\x87\x58\x5f\x5f\x7f\x67\x24\x61\x23\x98\xda\x08\x74\x20\x44\xe2\x3e\x8c\x5f\xbb\x76\x8d\x0d\x0f\x0f\x33\x49\x92\x64\x21\x84\x02\x20\x4e\x44\x5d\x42\x88\x6e\x02\xa5\xa3\x26\x1b\x1c\xce\x44\x7e\x76\x7a\xad\x6d\xa4\x47\x53\xd2\x12\xb7\xd7\x49\x95\xc5\x2a\xdc\xc8\x52\xbb\x4c\x45\xd3\x18\xdf\x6b\x87\x26\x49\x42\x5d\xe1\xda\x8b\xae\xc2\xf4\x0f\x3d\xfa\xc4\x72\xbc\xf8\x84\x33\x2c\x3b\x8a\x3f\x19\x21\x44\x0e\xb6\xdc\x42\x29\x9f\xcf\xf3\x89\x89\x09\xcc\xcd\xcd\x05\xde\x5a\x39\x4c\xb6\xf7\x67\x58\x3f\xca\xf8\x85\x35\xbf\xef\xd6\xb3\xd7\x61\x2a\xed\x77\x74\x74\x60\x64\x64\x04\xc3\xc3\xc3\x4c\x96\x65\x19\xf6\x9d\xec\x28\xec\x0c\xed\x49\x00\xdd\xc4\x91\x4a\x14\xe4\xe1\xe3\x1b\x91\x73\xc3\x1b\x91\xd3\xc9\x9d\x50\x2a\x54\x26\xc5\x75\x26\xd7\xea\x45\x8c\x86\x30\xd5\xe5\xd1\xae\xcf\x41\x18\x01\xc1\x75\x85\x6b\x4b\x9d\xc6\xfc\xdc\x91\xc2\xf7\x8b\x89\xe2\x53\x43\xe6\x4b\x20\xac\xc2\x56\xfe\xc9\x02\xc8\x03\xd0\x01\x94\x36\x37\x37\xf9\xe4\xe4\x24\xa6\xa7\xa7\xdf\x0a\x01\xd8\x2a\x4c\xbd\x29\xac\xb6\x82\x66\xdf\x7b\x3f\x37\x8b\xd9\x73\x02\xce\x42\x1b\x64\x4b\x40\xca\xb0\x1d\x29\x06\xdb\x99\xba\x84\x10\x49\x26\xa8\xbb\xbd\x28\x7d\xd4\x9b\x0f\x0f\x0d\x6c\xaa\x27\x52\xdb\x4a\x7f\x87\x21\x77\x4a\xdc\xb9\x13\x0e\xdf\x89\x0b\x00\xf9\xc4\xa0\xbd\x16\x44\x00\xda\xb5\x08\x14\x65\x6e\x64\xda\xcc\x57\xcb\x1d\xc5\xf9\x85\xce\xe2\xec\x7a\xcc\x9c\x2b\xca\x7c\x15\x84\x0c\x6c\x02\x30\x4b\x44\x79\x61\x0b\xf0\x1a\x42\x08\x6b\x7b\x7b\x9b\x8f\x8f\x8f\x63\x66\x66\x26\xe8\xdc\x1b\xe9\x9f\x77\x86\xa9\x17\x81\xfc\xac\x91\x86\x82\xb0\xcd\x62\x7c\xcb\x46\x46\x46\xd8\xd9\xb3\x67\xe1\xa8\x10\xbb\x51\x49\x85\xed\x4c\x71\x87\x0a\x88\x13\xa8\x8b\x09\x74\xb6\x95\xa4\x9e\xe4\x4e\xa8\x3f\xa9\x29\xe9\xa4\x2e\x77\x27\xf4\x50\x32\x5a\x92\x62\x8a\x45\x8a\xcc\x49\xa6\xca\x34\xec\x89\x58\x35\x1e\xe2\xcd\xbc\xc6\x09\xdc\x62\xc2\x32\x42\x5c\xdf\x0e\x97\xf3\x9b\x11\x33\xb3\x1e\x2b\xad\xae\xc7\xcc\xa5\x6c\xd4\x5c\x2c\xc9\x22\x2b\x80\x2c\x08\x39\xe7\x2a\x2a\x2f\x84\xc8\xc3\x96\x15\x30\x84\x10\x96\x65\x59\xd6\xda\xda\x1a\xa6\xa6\xa6\xdc\x8c\xf2\x41\x76\xa8\xa2\x8d\x1f\x86\x7c\x76\xb6\x7a\x81\xdc\x48\x3d\x4d\xb5\xc5\x18\xc3\xc0\xc0\x00\x86\x86\x86\x70\xfc\xf8\x71\x30\xc6\x18\x11\xc9\x8e\xb6\xa7\x22\x84\x88\x12\x51\x14\x76\x94\x8a\x03\x88\x09\x21\x62\x04\x8a\x12\x10\x0b\x95\x29\x16\xb6\x58\x47\x5b\x49\x8a\xab\x26\x8b\x85\x2d\x16\x55\x2d\x16\x0d\x95\x49\x91\x38\xc9\x92\xb0\x6f\xa7\x94\x09\x56\x99\x09\xab\x28\x73\xa3\x28\x73\xc3\x90\xb9\xae\x2b\x3c\x5f\x08\xf1\x7c\x51\xe6\x5b\x16\x13\x1a\x20\x74\xd8\x52\x03\x1a\xec\x29\x49\x83\x3d\x2d\xe9\x00\x0c\xb2\xc5\xed\x4a\x44\xc4\xb3\xd9\x2c\x7f\xf1\xe2\x05\xc6\xc7\xc7\xeb\xad\x35\xeb\xf5\xef\xa1\xc3\x1c\x9a\xcb\xf8\x06\x31\xbe\x27\x38\x34\x34\xc4\x86\x86\x86\x90\x4e\xa7\x11\x0e\x87\x99\x9b\x70\xc9\x33\xdd\xa9\x00\x14\x87\xac\x74\xb7\xae\x98\xac\xe2\x60\x64\x00\xb2\x93\xed\xab\x7a\x25\x55\x7d\x76\xc8\x82\xad\x66\xe3\xbe\x0c\x21\x84\xeb\x20\x06\x80\x12\x11\xb9\x65\x96\x73\xac\x3c\x93\xc9\x70\x57\x2a\xca\xc9\xd0\xef\x3d\x0f\xef\xb4\x1e\x74\xee\x87\x1a\x73\x28\x88\xc4\x56\x61\x5c\x25\xe4\x8b\x17\x2f\xb2\xde\xde\x5e\xa4\x52\x29\x57\x77\xdd\x7d\xf8\xcb\x55\x2f\x76\x1d\xc5\x75\x1c\x2f\x06\x0e\xc6\x4d\xdc\x04\x00\xae\x64\xa4\xdf\xd6\x75\x2e\xce\x39\x87\xa6\x69\x3c\x9b\xcd\x62\x61\x61\x01\x4b\x4b\x4b\x08\x50\x64\x7e\x27\xfd\x73\x10\x98\xc3\x18\x81\xbc\x8e\x1b\x74\x22\x68\x14\xe3\x8a\x88\x5c\xbe\x7c\x99\xf5\xf5\xf5\x81\x88\xe0\xa4\x73\xab\x44\x1a\xf7\xfb\xce\x67\xef\x7e\x38\x4e\x52\x79\x0f\xd8\x3c\x8f\x65\x59\x7c\x6b\x6b\x0b\xb9\x5c\x0e\x9a\xa6\x61\x65\x65\x05\x8b\x8b\x8b\xf5\x8e\xdd\xbb\xff\xbd\xc1\x1c\x2a\x22\xb1\xce\xc1\xfa\xb5\xd9\x32\x8c\x73\x1b\x05\xf1\x78\xdc\x4d\xb3\x57\xb1\x4c\x26\x03\xc3\x30\x00\x00\xd3\xd3\xd3\x15\x31\x3a\x47\x31\x07\xd8\xdb\x0f\x41\xe7\xfc\x5e\x62\x0e\x2d\x91\x18\x50\xb7\x9f\x23\xbe\x0d\xcc\x8f\xd6\x84\xb1\x9a\x6d\xed\x7e\xbf\xb2\xd7\xed\x6f\x06\xd3\x4c\xfb\x6f\x13\x53\xcf\x3e\x64\xcc\x9e\x4e\x0c\xea\xbc\x66\xdf\x37\x52\x67\x10\x26\x08\xeb\x67\xef\x02\xd3\xc8\x31\x7f\x88\x98\xfa\x05\xcd\x54\xd2\x02\xcc\xdb\x68\xa3\x19\x4c\x2d\xf6\x47\x0c\xaa\x97\xb0\xb5\x0b\x4f\xbf\x2f\x35\x8a\xa9\xad\x8f\xef\x13\xe3\xd7\x46\xd0\x22\xef\x6d\x60\x6a\x8f\xb9\xb6\x33\x3f\x48\xcc\xff\x00\xaf\x7b\x44\x0e\x96\x2e\xd3\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe1\xff\xf0\x7b\x3b\x4e\x00\x00") + +func web_uiV2AssetsMstile144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsMstile144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng, + "web_ui/v2/assets/mstile-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png", + ) +} + +func web_uiV2AssetsMstile144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng() (*asset, error) { + bytes, err := web_uiV2AssetsMstile144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/mstile-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsMstile150x1506b13ab220a09a9e72328a3b05d5b9eecPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x2b\x40\xd4\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x01\x0e\x00\x00\x01\x0e\x08\x06\x00\x00\x00\x78\xb1\xf9\xa5\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xd4\xbd\x69\x90\x24\xc7\x75\x26\xf8\xb9\x67\x64\x64\x56\x56\x56\x76\x76\xdd\x7d\x1f\xec\x1b\x40\xa3\x01\x36\x71\x11\x60\x13\x4d\x11\xa4\x00\x88\x12\x48\xd1\x48\x89\x43\xea\x22\x60\xab\x5d\x1b\x1b\x1b\xb3\x5d\x93\xc9\xd6\xc6\xf4\x63\x77\x6c\x6d\x7f\xec\xef\xb5\x05\x45\xdd\xd4\x90\x5a\x91\x14\x25\x82\x04\x41\x02\x24\x0e\x02\x20\xae\x06\x40\xa0\x81\xbe\x0b\x8d\x3e\xaa\xeb\x3e\xb2\xb2\xb2\x32\x23\xdc\xf7\x47\x84\x47\x7a\xbc\x74\xf7\x88\x6a\x60\x66\x77\xdd\xac\x2a\x23\xdc\x9f\x3f\x7f\xfe\xc2\xfd\x5d\xee\xe1\x01\x00\x3c\xfe\xd3\x93\x9e\xc7\x49\x3e\x85\x31\xd5\xa7\xc9\x56\x6e\x6a\xc7\xd4\xae\x0b\x5f\x56\xfb\x26\xbc\x94\x6e\x5b\x1f\x5d\xf4\xe6\xa1\x8b\xd6\x33\xfd\xe5\xc5\x9d\x45\x9f\xeb\x39\xae\xe7\x59\xe5\x69\xdf\x46\xff\x07\xf9\xa5\xf8\xf3\xb4\x49\x61\xb2\xf0\xe7\x19\x5b\xb6\x36\x5d\xf8\x5d\x30\x36\xba\xf3\xe2\xcb\x83\xe3\x7a\xe9\x36\xb5\x6b\x2a\x33\xa6\xeb\x1d\x5c\x79\x1e\x38\xc5\x9f\x37\xb9\x26\x60\x1e\x5a\xfe\x6b\x25\x13\x93\x5d\x70\xa6\xeb\xf5\x0a\xac\xac\x01\x90\x55\xdf\x05\x93\x97\x9f\x79\xda\xcc\x3b\xa1\xaf\xa7\x9d\xac\x3a\x59\x7d\xcf\x3b\xe9\x6c\x6d\xad\x77\xe2\xe6\x4d\xd7\xc3\x4f\x13\x7c\x16\xdf\x6c\x63\xee\x7a\xf1\xf6\xe0\x58\x8f\xc4\xf9\x30\x06\xae\xad\x6c\xbd\x82\x66\xbd\xed\xba\x04\xdc\xf5\xe0\x33\x95\xad\x97\x1f\x79\x06\xbf\x0d\xf6\xc3\xa2\xdd\x06\x9b\x45\xa7\xa9\xdc\x25\x14\xae\x47\xc8\xb8\xda\xb4\x95\xe7\x6d\xd3\xa5\xf4\x5c\x6d\xaf\xe7\x39\x5c\xcf\x7c\x59\x2f\x8e\xeb\x15\xaa\xb6\x7c\x6b\x3f\x3d\x02\x28\x2c\xc0\xea\x5a\x60\xfd\x0c\x16\x96\x3c\xbd\x8e\xb0\x94\x9b\xf0\x9a\xea\xda\xda\x57\x65\xfa\x2f\x6d\x2f\x6f\x9b\x80\x99\x27\xae\x94\x87\x7e\x13\x6f\x29\xdd\x59\xb0\xfa\xaf\xa9\x5d\x1b\x1e\xbd\xde\xf5\x3c\x63\xfa\x7c\x6d\x03\x59\x10\x38\x53\xff\x28\x1d\x9c\xe4\xb9\x78\x92\x05\xa7\x3f\x5b\x3a\x16\x40\x60\x6d\xf4\x50\x38\xda\x47\x57\x3b\xae\x71\x60\x2a\xa7\x34\xaa\xeb\x0f\xc2\x03\xda\xb7\xac\x3a\xa6\xf9\x90\xa2\x93\x93\x3f\x53\x5a\x8f\x86\x75\x49\xf9\xf5\x68\x89\x3c\xf9\x59\x34\xe5\x69\x33\x0f\x0e\x13\x2d\xb6\x36\xb2\x26\xdd\xf5\xf0\x38\x4f\x5a\x8f\x66\x31\x5d\x67\xe5\xb9\xda\x70\xf1\x24\x8f\x10\xba\x1e\xad\xe8\x1a\x67\x79\x68\xb0\xc1\xe4\x79\xae\xeb\xe9\x5b\x5e\x5c\x59\xf4\x5d\x0f\x6c\xde\x31\xb5\x5e\xfe\x71\xa6\x15\x98\xa4\x0f\x60\x97\x98\xae\x32\x57\x3e\x25\xc4\x94\x97\x27\x5f\x4f\x79\x24\xbc\x29\xad\x47\x4b\xbb\xca\x6c\x6d\xdb\xfa\x60\xab\x93\xa5\x85\x5c\x74\x9a\x2c\x07\x7a\x9f\xa5\x3d\x6d\x70\x7a\xca\x83\xcf\xf5\x9c\x4d\x78\x4c\xf9\x79\xeb\xb8\xc6\x87\xab\xbf\x36\xbe\x51\x5c\xb6\xe7\x6a\xe2\x43\x16\x2e\x64\xc0\x9a\xac\xa1\xf5\xf0\xc3\x35\x0e\x68\x3d\x17\xad\x2e\xfa\x8c\x84\xe5\x91\xbe\x59\xbf\xea\x3a\x8f\x56\xe3\x86\x32\x9a\x77\xbd\x52\x33\x8f\x96\xc9\x5b\x96\xb7\xcf\xf4\xd7\xa5\x65\x4c\x5a\xda\xd5\xa6\x0d\x26\x4f\x3b\x59\x34\xdb\xda\xb4\xe1\xb7\x3d\x2b\x13\x6d\x36\x7c\xae\xe7\xe5\xea\x53\x9e\x76\x5d\xed\xbb\xf0\xe4\xa5\xd9\x35\x46\x5d\xcf\x24\xcf\x33\x30\xd1\x66\x82\x75\xf1\xcb\x86\xcb\x35\xaf\xd6\xd5\x37\x0f\x66\x69\xe5\xf2\xf9\x60\xb8\xd7\x61\x75\x5f\x8c\x4a\xb6\xbc\xfe\xb4\xcd\xff\xcc\xab\xc9\x04\x7a\xdb\xb5\xf5\x8f\x5e\xbb\x7c\x4e\xda\x0f\x4a\x8b\x0e\x6b\xab\x63\x6a\xd7\xd6\x1f\x8a\x47\x2f\xa7\xfd\xb2\xf1\xd4\xe6\x97\xbb\x9e\xbb\x89\x4f\x34\x51\x3e\xd8\x68\x31\xf5\xc5\xa6\xed\x4c\xcf\xd9\xf6\x7c\xf3\x26\x13\xfd\xb6\xf1\xe4\x6a\x57\x95\xbb\x9e\xa5\x80\xb9\xcf\xb4\x6d\x93\x65\x41\xcb\xb3\x78\x60\xba\xa6\x34\x51\xba\xe9\xbd\x69\x5c\x65\x59\x22\x00\x20\x6c\x12\x90\x4e\x24\x1b\x41\xb6\x4e\x51\x01\x42\xcb\xf5\x32\x4a\xb0\x0e\x67\x6b\xc3\x04\x6f\xa2\xc1\x44\xa7\x4b\x3a\xbb\xfa\xee\x62\x6c\xd6\x64\xb7\xb5\xb5\xde\x32\xd3\x03\xd7\xdb\xb4\x09\x41\x93\xd0\xcf\x9a\x94\x2e\x61\x45\xfb\xeb\x9a\x40\x26\x21\x45\x71\x0b\xf4\xe2\xa5\x89\xb6\x91\xa5\x65\x75\xba\x4d\xf7\x79\x04\x1c\xa5\xd1\x25\xf4\x4c\xb4\xd2\x76\x6d\xfd\xb3\x09\x7a\x97\x90\xd4\x71\x52\xfa\x6c\x34\xd2\xfe\xeb\xf5\x75\x5a\xb2\x04\xab\xb1\x03\x26\x69\x96\x67\x12\x64\x31\xd2\x36\xe0\x4d\x38\xb2\xda\xb3\xb5\x49\xeb\xdb\xb4\x8d\x4d\x60\x5e\x4f\x9b\xb4\x3d\x5b\x9f\x4c\xed\x98\xca\x6c\x7d\xa0\x65\xae\x36\x5d\xf5\xb2\x68\xc9\xe2\xa9\x09\xc6\xd6\x9e\xa9\x9e\x8d\x47\xb4\x2c\x2f\xcd\x36\x9c\x26\x5a\x5c\xf4\xb9\xc6\x68\x9e\xbe\x99\x52\x9e\xf1\x92\x05\xef\x7a\xee\x59\xf4\xd9\x68\xa2\xb8\x6d\x75\x5c\xbc\x37\x16\x64\x0d\x28\x17\x33\x74\x82\x6c\x65\x59\x75\x4d\x38\xb2\xe8\xb4\xa5\xeb\x81\xf9\xb0\xf0\xfe\xb7\x86\xcb\x33\xf1\x68\x5e\xd6\x24\x5b\x4f\xbb\xae\xb6\xd7\xc3\xd3\xac\xdf\xf5\xe2\xb3\xe1\x77\xc1\x66\xd5\xcb\x23\x74\xaf\x17\xdf\x7a\xd3\x7a\x84\x53\x9e\xb6\x32\xfb\xc6\xe2\x0c\x97\xaf\xe5\xca\xd3\xef\x75\xc4\xa6\x18\x40\x96\xa9\xe7\x8a\x3b\x98\xe0\x5d\x65\x59\xbe\xaa\x0d\x9e\xd2\xfb\x41\xda\xb5\xd1\x92\x67\x80\xe4\x31\x35\xf3\xb4\x6d\x2b\x33\xc5\x23\x4c\x75\x6c\x63\xc0\x54\xce\x73\xd4\x31\xd1\x63\xaa\x93\x67\x1c\xd0\x3e\x98\x7e\x4d\xed\xaf\xc7\x85\x32\xb5\x6d\xa3\xdd\x34\xb6\xb3\xfa\x96\xa7\x6d\x13\x1e\x53\xdb\x26\x9a\x4d\xd7\x79\xca\x6c\x7d\x48\xf2\x5c\x12\xd9\x36\x10\x75\xed\xe2\xf2\x05\x75\x3c\xa6\x01\x4a\x7d\x2c\xca\x60\x93\x80\xb2\xf9\xc1\x7a\xbe\xee\x03\x53\x5a\x4c\x0c\xca\x33\xd9\x29\x3d\x94\x26\xbd\x5d\x4a\x0f\x1d\x28\xb6\xf6\xe9\x35\xad\x47\xfb\x62\x82\xbf\x1e\x7a\x4d\xbe\xae\xa9\x2e\xc5\x9f\x57\x6b\xda\x14\x84\x6d\xac\x65\x69\x7e\x3a\x5e\x5c\x02\x8b\xb6\x4f\xc7\x46\x9e\xe4\xc2\x99\x25\xa0\x4c\xbc\xa1\x63\xc3\x36\x71\x5d\x4a\xc2\x95\xe7\x52\x20\xa6\xba\x74\x0c\xd8\x9e\x41\xcf\x5c\x36\x01\xd2\x07\x6b\xfa\x35\x5d\xbb\x1a\xa5\xd7\xb6\x8e\xd9\x60\x6d\x34\x65\xd1\x70\x3d\xfd\xb0\xe1\x73\xd1\xe0\x82\x35\xc1\xe5\xc5\x4f\xeb\xd3\x3c\x13\x9e\x24\x6d\xdb\xb6\x8d\xeb\xd7\xea\xef\x63\x1f\xfb\x58\x0a\xf6\x0b\x5f\xf8\x02\xff\xc2\x17\xbe\xc0\xe9\xb5\xaa\xaf\xea\x51\xfc\x19\x34\x53\x98\x3c\x7d\xb0\xd5\xa7\x78\x68\x7b\x59\xcf\xdd\x06\xe7\xa2\xfb\x83\xc2\xb8\xfa\xe6\xa2\xdd\x56\x3f\x8b\xbf\x36\x1a\xf2\xf0\xde\x45\x67\x4f\xbe\x69\x03\x18\x0c\x79\x26\xc9\x08\xf4\x4a\x7c\xa0\x57\xe2\x65\x69\x07\x57\x99\x2d\x51\x98\x2c\x5a\xf3\x9a\x9d\x79\xdb\x70\xc1\x7d\x58\xc9\x89\xd7\xf7\x7d\xde\x6e\xb7\x93\xf2\xdb\x6e\xbb\x8d\xbf\xf4\xd2\x4b\xe2\xb7\x7e\xeb\xb7\x92\x7e\x0f\x0f\x0f\xa3\x58\x2c\xae\xab\x51\x29\x25\x18\x63\xc6\x3c\x29\x25\x00\x24\xe5\x4b\x4b\x4b\x58\x59\x59\x01\x00\xfc\xdb\xbf\xfd\x5b\x8a\xd6\xb1\xb1\x31\x7e\xed\xda\x35\x17\xbf\x6c\xe3\xc6\x05\x6b\xab\x6f\x73\x09\x6c\x16\x9c\x69\x6c\xd8\xda\xc9\xa2\x9b\x26\x17\x6d\x79\xf0\x9b\xee\x6d\xf4\x9a\xd2\x7a\x60\xf5\x76\x4c\xcf\xc1\x4a\x13\x15\x1c\x59\x1d\x05\xcc\x1d\xcf\x73\x6d\x23\x26\xab\x6c\xbd\x0c\x76\x3d\xec\xf5\xd0\x60\x12\x92\x80\xf9\xc1\xd8\xae\xb3\x04\xab\xcd\x4c\xed\xa1\x7b\x70\x70\x90\xcf\xcd\xcd\x89\xe3\xc7\x8f\x73\xdf\xf7\x51\x2a\x95\x30\x3a\x3a\x0a\x00\xa9\x89\x2e\xa5\xe4\xfa\x24\x07\xc0\x0d\x82\x20\x81\xd1\x7f\x09\x8c\x9e\x27\x68\xbe\x94\x52\x90\x76\x05\x15\x2e\x33\x33\x33\x68\x36\x9b\x00\x80\xc7\x1f\x7f\x5c\xa8\x3e\x70\xce\xb9\x10\xc2\x35\x91\x5c\x7c\x34\xa5\x3c\x42\x04\x86\xbc\xbc\xca\xcc\x56\xc7\x46\x83\x4a\x59\x02\x32\x8f\xd2\x74\xcd\x4d\x8a\x6f\x3d\x78\x5d\x74\xeb\x78\x8d\xcf\x82\x19\x0a\x68\x25\x97\xa4\x07\xa9\xeb\x9a\x3c\xb4\x0d\xbd\x1d\x58\xf2\x4d\x52\xdd\xd6\x49\xd7\x04\x34\x5d\xbb\xe0\x6c\xc9\xf5\x00\x6d\xe5\x14\xa7\x53\x6b\x15\x0a\x05\xf4\xf5\xf5\xa1\xaf\xaf\x0f\x37\xdd\x74\x13\x00\x60\x68\x68\x08\x1b\x37\x6e\xa4\x13\x3d\xa9\xab\x04\x81\xc2\x47\xef\x69\xbe\xa9\x3e\x90\x12\x40\x82\xb4\x25\x68\xbe\xea\x5b\x2c\x30\x52\xf9\xb1\xf0\x10\x86\xfa\x90\x52\xe2\xe2\xc5\x8b\xe8\x74\x3a\x78\xea\xa9\xa7\x44\xb5\x5a\xe5\x52\x4a\xac\xac\xac\x5c\xcf\xb3\xb1\xf1\x9f\x26\xd7\x98\xc9\xaa\x93\x25\x40\x5c\xf0\x59\x4a\x66\x3d\xf3\x89\xe6\x03\xf9\xf9\x71\xbd\x7d\xb1\xde\xd3\x55\x15\x97\x74\xcb\x92\xca\x1f\x44\x7a\xc2\x01\x4f\x09\xb7\x49\x58\x90\xf2\xbc\x0c\xb2\x95\xe7\x65\x76\x96\x96\x72\xc1\x27\x34\x6c\xd9\xb2\x85\xef\xda\xb5\x0b\xd5\x6a\x15\xdb\xb7\x6f\xb7\xf5\x4f\xff\xa5\xd7\xd1\x9f\x04\x67\x00\xe7\x12\x1e\x97\xcc\x8b\xef\x3d\x3f\xe0\x5e\x39\xe0\x7e\x39\xe0\x7e\x5f\x87\x57\x0a\x82\x79\x5c\x30\xaf\x10\xc3\x31\x09\x8f\x01\x5c\x00\x81\x64\x32\x10\x0c\x81\x60\x10\x9d\x82\x68\xad\x16\x45\xab\xed\x89\x76\xbb\x20\xdb\x6b\x9e\x08\x42\x2e\x03\xc9\x10\x08\x48\x21\x23\xb8\x00\x00\x24\xa4\x40\x24\x30\x44\xdc\x2f\xf5\x07\x74\x85\x4e\x72\xaf\x3a\xd7\xe9\x74\x70\xe6\xcc\x19\x5c\xba\x74\x09\x13\x13\x13\xc2\xf3\x3c\x1e\x04\x41\xde\x67\x41\x79\x99\xf7\x39\xe6\x79\x5e\x26\xb8\x3c\xca\xf4\x7a\xe0\xfe\x5b\xd4\x75\xf5\xc7\xa5\xe8\x7a\xf2\x5c\xae\x8a\x9e\xf2\x4a\x65\x1b\xbc\x0d\x27\x25\xc8\x85\xd3\x96\xb2\x34\x95\x69\x60\x50\x78\x97\x80\xca\x4b\x37\x85\xb1\x95\x0b\x00\x28\x16\x8b\xfc\xd6\x5b\x6f\x05\x00\xdc\x74\xd3\x4d\xe0\x3c\x01\xe7\x40\x8f\xd5\x90\x12\x0c\x00\x3c\xc4\xc2\xc1\x13\xcc\xab\xb4\x0b\xe5\x81\xb5\x42\xad\xba\x56\x18\xec\xeb\x14\x86\x6b\xad\xc2\x78\xad\xe5\x6d\x19\x58\x2b\x8c\x17\x43\x56\xf7\x04\xab\x16\x04\xaf\x72\x89\x2a\x97\xac\xca\x24\x7c\xd6\xa5\xcf\x63\x11\xde\x24\x49\x96\x9a\xf0\x81\x64\x68\x0b\xc8\x96\xe0\x68\x0a\x26\x9b\x01\x97\x0b\x6b\x9e\x98\x6b\xfa\x62\x66\xc5\x0f\xaf\x2d\x97\x82\xa9\x46\x29\x9c\x6a\x94\xc2\xc9\xa5\x52\xb8\xb4\xe2\x87\xcd\xb0\x20\x83\x80\xcb\x40\x02\x01\x00\x21\x21\x03\x25\x50\x94\x95\x42\xf8\x29\xe2\x7e\x63\x76\x76\x16\x97\x2f\x5f\xc6\xaf\x7e\xf5\x2b\xc1\x18\xe3\x9a\xdb\x95\xc5\x57\xd7\xa4\xb0\xd5\xcf\x7a\x9e\x59\xd6\x41\x1e\x5c\x2e\x1a\xf2\xe2\xcd\xb2\x24\x68\xbb\x79\x85\x8d\xab\x2d\x2b\xdd\xba\xe0\x50\x85\x7a\x72\x21\x70\x11\x6b\xeb\x9c\x6d\x12\x23\x03\xd6\xa6\xf1\x4d\xf5\x5c\xf4\x67\x09\x19\x13\x7e\x17\x8d\xb4\x1d\x3d\xf5\xb4\x59\xad\x56\xd1\x68\x34\x04\x00\x3c\xf2\xc8\x23\x3d\x02\x42\x73\x21\x12\xe1\x80\x68\x52\x7b\xc5\x90\xf9\x95\x4e\xa1\xb2\xb1\xe9\xd5\xeb\xab\xde\xe6\xfa\xaa\xb7\x7d\xb0\x59\xdc\xbb\xa1\xe5\xed\x29\x75\xf8\x56\x4f\xb0\x51\x0e\x54\x98\x44\x19\x60\x91\xe5\xa1\x87\x2d\xa4\x04\x1c\x71\x0c\x29\xe3\xc1\xc0\xf4\x32\x40\x82\x21\x5d\x2b\x9d\xe2\x29\x2d\x24\x64\x5b\x32\x34\x43\x2e\xe7\x3a\x05\x39\xd9\x2c\x86\x17\xe7\x2a\xc1\xd9\xd9\xfe\xce\x99\xf9\xbe\xce\xc5\xf9\x4a\x30\xb5\x52\x0a\x9b\x2d\x4f\xb4\x05\x64\x80\xc8\x32\x09\x90\xb6\x4c\x4c\x16\x0a\x1e\x7d\xf4\xd1\xac\x31\xb3\xde\x7c\x97\xa2\x30\xe1\x70\x09\x8e\xeb\x19\x87\xa6\xf6\x5c\x6d\xeb\x6d\xb9\x2c\x24\x97\xc0\x34\xd1\x91\x27\xdf\xd8\xa6\x49\x70\xe4\xd5\xd0\xeb\x9d\x74\xb6\xf2\x3c\x42\x81\x76\x02\x70\x3f\x1c\x17\x1d\x59\xc2\x4b\x25\x1b\x53\x69\x72\xf1\x2a\x81\xf9\xf2\x97\xbf\xcc\x2b\x95\x0a\x3c\xcf\xd3\xcb\x39\xf9\xf3\x00\x78\x90\xf0\xfa\xdb\x85\x72\xad\x55\xa8\x0f\xaf\xf8\x9b\x47\x1b\xc5\x7d\xc3\x8d\xe2\x4d\x03\x6b\x85\x43\xa5\x80\x6f\xe7\x92\xd5\xb9\x84\x1f\xc3\x03\x3d\x93\x5b\x02\x60\xc9\x4f\x66\x4a\xe0\xd4\x45\xb7\xbe\x24\xa2\x43\xc6\x65\x2c\x46\x0f\xd9\x2d\x57\x65\x60\x5d\x0b\x41\x02\x81\x60\x68\x74\x0a\x62\x72\xd5\x17\x67\xe7\xfa\x3a\x6f\x4d\x0f\x74\xde\x9e\xaa\xb6\x27\x16\xfa\x82\x99\xa5\x52\xd8\x08\x0b\x32\x90\x52\x06\x8c\xb1\x20\xb6\x46\x02\xdd\x2a\x91\x52\x0a\x00\x68\xb5\x5a\xf8\xfb\xbf\xff\x7b\x31\x32\x32\xc2\xa7\xa7\xa7\x5d\x3d\xca\xd2\xac\x79\xac\xc6\x2c\xdc\xeb\x29\xcb\x52\xb2\x14\xc6\x45\x5f\x96\x05\x61\xb3\x4e\xb2\x92\x4b\xd0\xf4\xe4\x99\x86\x55\x96\x75\xb0\x5e\xcd\x6e\xd2\xcc\x59\x82\xc1\x24\x48\xb2\x98\x0c\xf4\x32\xc8\x56\x66\x62\x66\x16\x1e\x97\xd6\xa1\x30\xd8\xb7\x6f\x1f\xdf\xb4\x69\x13\xb6\x6d\xdb\x86\x72\xb9\x0c\xce\x39\xb5\x28\xba\x82\x02\xf0\xfc\x80\x95\x37\x36\x8b\x83\x63\x0d\x7f\xfb\xe6\x45\xff\xc6\xa1\x95\xe2\x47\xfb\xdb\x85\x7d\x7e\xc8\x37\x73\x81\x2a\x03\xfc\x5e\x01\x61\x48\x06\xcb\x22\x12\x00\xe9\xec\x68\x8a\xf7\x4a\x96\x54\x4e\x8f\x40\xd1\xf2\x13\x21\x81\xc4\xec\x30\xc2\xea\x34\x44\x02\x25\x10\x0c\xad\x80\xcb\xb9\x56\x51\x9c\x5f\xe8\x0b\xde\xbc\x56\x6d\x9f\xb8\xb2\x61\xed\xec\x7c\x25\x98\x5a\x2c\x07\x4b\xb1\x5b\x13\x20\x76\x73\xe2\x5f\x20\xb2\x42\x44\x10\x04\xe8\x74\x3a\xf8\x87\x7f\xf8\x87\x3c\xda\x1e\x06\x18\x95\xd6\x6b\xc9\xb8\xe0\xf2\xce\x17\x93\xe2\xcb\x43\xff\x7a\x60\x3f\x2c\x3c\x56\x58\xe6\x28\xb4\x4d\x34\xd7\xa4\xb7\x5d\xbb\x24\xb4\xde\x3e\xcd\xcf\x32\xad\x4c\xf4\x51\xf8\x2c\x29\x9f\xf7\xde\xd5\xa7\xa4\xbd\x7d\xfb\xf6\xf1\x5b\x6e\xb9\x05\xb5\x5a\x0d\x00\xa8\xa0\xe0\x52\x4a\x8f\x31\xe6\x41\xc2\xef\x6f\xf3\xca\xf0\x8a\xbf\x75\xe7\x5c\xf9\xc6\x91\x46\xf1\x96\x0d\x2d\xef\xc6\x72\x87\xef\x2e\x08\x56\x67\x80\xef\x12\x13\xca\xed\x67\x29\xd7\xa2\x2b\x0a\x94\xfc\xd0\xe5\x08\x95\x29\x46\x19\x63\x58\x9a\xbd\xfe\x44\x2c\x18\x43\x29\x20\x85\xb2\x48\x56\x7c\x71\x7a\xa6\xbf\xf3\xda\xc5\x8d\xad\x57\xaf\x0d\xb4\x27\xe6\xfb\x3a\x73\x61\x01\x6d\x29\x65\x5b\x73\x6b\x94\x35\x02\x00\x62\x69\x69\x09\xdf\xfe\xf6\xb7\xc5\xa6\x4d\x9b\xf8\xd5\xab\x57\x6d\x13\xd4\xa6\xa1\x6d\x65\x7a\x72\x29\xb7\xac\x36\x6c\x38\xd6\x43\x4b\x96\x70\xca\xc2\x97\x35\x37\xb2\x94\xb5\xf1\xd7\xf4\xae\x8a\xcb\x34\xcf\x63\x1a\x51\x78\x8a\x53\xbf\xa7\x79\x59\x78\xb3\xac\x17\x57\xdb\x2e\x9c\x59\xe6\x21\x4d\x29\x3e\x8c\x8c\x8c\xe0\xa6\x9b\x6e\xc2\xb6\x6d\xdb\xe0\xfb\x7e\x22\x2c\xe2\xf8\x05\x07\xe0\x49\x29\x3d\x06\xe6\xf7\xb7\x0b\xd5\xe1\x95\xe2\xd6\x5d\x73\xe5\x23\xe3\x4b\xfe\x9d\xf5\xd5\xe2\x91\x62\xc8\x36\x73\x89\x0a\x03\xd3\xda\x96\x80\x64\xdd\xf9\xd6\x33\x07\x35\x35\x2f\x35\xed\xaf\xf2\x65\x5c\xb1\xeb\x36\x24\xb0\x91\xf5\xa1\x21\x4e\xcc\x11\x7d\x82\xa7\xdb\x4f\x5c\x16\xa9\xc1\xb0\x58\xd0\x28\x57\x85\xe9\x6e\x8d\x8c\xe3\x26\x2c\xaa\x9b\x48\xaf\x2e\x29\x9a\xe3\x13\xd1\xc5\x18\x24\x64\x3b\xe4\x72\x6e\xc5\x0f\xdf\x9d\xe9\xef\xbc\x72\xa9\xbe\xf6\xf2\xa5\xfa\xda\xe9\xf9\xbe\x60\x26\xe0\xa2\x85\xc8\xfa\x48\xac\x11\x15\x70\xed\x74\x3a\x58\x58\x58\xc0\xb9\x73\xe7\x70\xee\xdc\x39\xb5\x31\xcd\x36\xf1\xb2\x7e\xa1\xc1\xeb\x78\xa0\xdd\x53\x7c\xb6\xfc\x2c\x81\xe4\x82\xcd\xa3\x4c\x69\x3f\x3f\xec\x36\x8d\x42\xc7\x75\x74\xa0\xa9\x31\x53\x07\x60\x80\x37\xe5\xbb\x08\x37\xc1\x98\xe0\x69\xca\x92\xc6\xa6\xe4\x1a\x00\x36\xfc\x56\x3a\x1e\x78\xe0\x01\x3e\x32\x32\x02\xdf\xf7\x15\xbc\xfa\x53\x6e\x88\x5f\xea\xb0\xca\x50\xb3\xb8\xf9\x23\x33\x95\xa3\x5b\x16\xfd\x8f\xd7\x57\x8b\x47\xfc\x90\x6d\x65\x92\x55\xd4\x44\x64\x44\x40\xf4\x06\x2b\x01\xd3\x5c\xa7\x96\x47\x02\x9b\xaa\x9b\x0e\x82\x52\xf8\x04\x06\x2c\xd5\x9e\x76\xdb\x4b\x83\x2d\xe5\x88\xab\x58\xbc\xa9\x9e\x6a\x12\x32\x08\xb9\x5c\x58\x29\x8a\x77\x27\x6b\x6b\xcf\x4f\x0c\xb6\x7e\x79\x79\xc3\xda\xd9\xe5\x72\xb8\x20\x20\x5b\xba\x3b\x13\xc7\x48\x00\x40\x2c\x2c\x2c\xe0\x9f\xfe\xe9\x9f\x5c\x1a\xdf\x35\x4e\xf2\xc0\xda\x2c\x88\x2c\x1c\x79\xc7\xa8\xa9\x3d\xbd\x8d\xbc\xf3\x26\x4f\xfb\x79\x68\xea\x69\xdf\x26\x38\x28\x91\x7a\x72\x49\x3a\x0a\x67\xc3\x4d\x61\x74\x38\x9b\x44\xa5\x1d\xb1\x49\xca\xeb\x31\x2b\x4d\x7d\xb1\x4a\xdb\x43\x87\x0e\xf1\x83\x07\x0f\x62\x68\x68\x48\xa7\xa7\x2b\x2c\x24\xbc\x82\x44\xb9\x7f\xad\x30\xb8\x73\xbe\xef\xd0\xae\xd9\xf2\xbd\x63\xcb\xfe\xdd\xe5\x80\xef\x66\x92\x55\x58\xac\x8d\xa3\x89\x69\x9a\x65\xe9\x69\x94\xed\x62\x74\xe1\x69\x30\xb3\x47\xe2\x50\x8b\xc0\x52\x96\x04\x47\x55\xac\xb3\xb7\x08\x4c\x12\xc3\xa6\x67\xe6\x47\x6d\x93\xde\x74\xef\xd2\x4b\xc0\x3d\x86\x94\x5e\x03\x90\x41\xc0\xe5\xcc\x72\x29\x7c\xf3\xe2\xc6\xd6\x93\x67\x46\x56\x9f\x9b\xae\xb6\xaf\xb4\x0b\xb2\x09\x86\x36\x34\x2b\x04\x91\x20\x11\x8b\x8b\x8b\x38\x75\xea\x14\xde\x7b\xef\x3d\x2c\x2d\x2d\x21\xda\xac\x9a\x6b\x5c\xe9\xd7\x79\xcc\x78\x13\x5e\x9b\x40\xc9\x03\x9b\x75\x6f\xc3\xe7\xea\x9b\xa9\x9e\x89\x3e\x57\x1b\x49\x32\xb9\x2a\x3a\x82\x3c\xda\xd9\x39\xc9\x0c\x30\xeb\xb1\x34\x4c\xf8\x5d\x02\x23\x8f\xc9\xe9\xca\xb3\xd2\xa2\xde\x0d\xf9\xdd\xdf\xfd\x5d\x3e\x38\x38\xa8\xb6\x56\x73\xc6\x98\x17\xbb\x24\x3e\x24\x3c\x3f\x64\xd5\xb1\x65\x7f\xf3\xde\xe9\xca\xdd\x3b\xe6\xcb\xbf\x59\x5d\x2b\x1c\xe6\x12\x75\x48\xc6\x7b\x83\x93\xda\xbc\xd6\x3d\x0f\x10\x4d\x0f\xbb\x12\xa7\x93\x52\x4d\xe8\xb4\x64\x31\x4d\x5d\xf5\x5f\x76\xdd\x09\xad\x71\x6a\x81\xf4\x34\xaa\x92\xab\xdc\x52\x96\xa2\xc6\x66\xf9\xe8\x89\xf0\x4d\x42\xb6\xdb\x9e\x3c\x3f\x59\x5b\x7b\xea\xec\xd0\xea\x4f\x2f\x6e\x6c\x9d\x6e\x94\xc2\x05\xc1\xd0\x92\x88\xe2\x21\xda\xaa\x8c\x00\x80\x89\x89\x09\x3c\xf1\xc4\x13\x79\xc6\xf0\xf5\x98\xf7\x26\x58\x95\x6c\x13\x38\xef\xf8\x33\xe5\xe5\x11\x66\x79\xac\x8f\x2c\xfa\xac\xb0\xba\xe0\x70\x49\x1b\x18\x60\xf2\x08\x97\xf5\x6a\x7b\x13\x1e\x53\xfb\x59\x16\x4f\x1e\x6b\xc9\x04\xd7\x63\x39\x15\x0a\x05\xec\xdf\xbf\x1f\x37\xde\x78\x23\xea\xf5\xba\x0e\x9b\xac\x88\x40\xc2\xef\xeb\xf0\xda\xf6\xf9\xf2\xee\x7d\xd3\x7d\x9f\xd9\xb2\x58\xbe\xbf\x14\xb0\x3d\x90\xcc\xd3\x03\x94\x34\x80\xa9\x54\x7a\x2a\x94\x61\x70\x11\xa0\x60\xc1\x8c\xc1\xce\x1e\x57\x44\xb3\x12\x4c\x0b\x23\xdd\xed\xe4\xd1\x7d\x37\xbc\x21\x21\x15\x31\x0a\x77\xdc\xba\xd1\x62\xe8\xb9\xcb\x4e\x66\x97\xa4\x37\x94\x93\x17\x57\xc8\xe4\xdc\x52\x39\x78\xe9\xdc\xf0\xea\xf7\x4f\x8f\x34\x5f\x9a\xed\xef\xcc\x08\x86\x16\x58\x12\x54\x55\xc2\x43\x34\x1a\x0d\xbc\xfd\xf6\xdb\x78\xe3\x8d\x37\x4c\x0a\x84\xa6\x3c\x0a\xc8\xa5\xc0\x6c\x70\x26\x58\x9b\xd6\xcf\x12\x04\x34\xd9\xac\xfb\x3c\x8a\x9c\xc2\xd9\x3c\x09\x00\xdd\x18\x87\xa9\x61\x17\x51\x7a\x9e\xad\xc1\xf5\xd4\xa1\x65\x80\x9d\x0e\x13\x5d\x7a\x1d\xdb\x43\xcb\x23\x20\x53\x8c\xda\xb0\x61\x03\x1e\x78\xe0\x01\xf4\xf7\xf7\xab\xf7\x36\x94\x85\xe1\x31\xc6\x7c\x00\x7e\xb5\x55\xa8\xed\x9b\xae\x1c\xde\x37\xdd\xf7\xd0\xd0\x4a\xf1\xb8\x27\xf8\xb8\xcb\x5a\x48\x62\x8b\x64\x82\xf7\x24\xf3\x92\x47\x3a\x88\x29\xb5\xd9\x9d\xf2\x4e\xf4\x60\xa4\x2d\xa8\x91\xfa\xe9\x01\xe9\x5a\x22\x71\x99\xde\x99\x2c\x93\x48\xa2\x1b\x10\xb5\xc1\x52\x09\xa7\xf5\x51\xc6\x92\x93\xa5\x84\x9d\x06\x9e\x48\xb5\xae\x94\x15\x90\xad\xa6\x2f\xde\x9c\x18\x5c\xfd\xee\x3b\x63\xcd\xa7\xae\xd6\xd6\x26\x05\x47\x4b\x4a\xd9\x06\x90\x12\x20\xad\x56\x0b\x7f\xf7\x77\x7f\x97\xd7\x2d\xc8\x3b\xa9\xf2\xb8\x27\x7a\x9e\x6b\xce\xd0\xf6\x40\xea\x52\x7c\xb4\x3c\x4b\x60\x01\xf9\xfb\x67\xec\x8b\x69\xc8\xae\x57\xba\x5d\x8f\xc4\xd4\x93\x0b\x96\xe6\xc3\x50\x66\xc3\xa5\xee\xaf\xc7\x8c\xc3\xbd\xf7\xde\xcb\xf7\xec\xd9\xa3\x26\x20\x87\x16\xec\x44\x24\x30\xea\x07\xaf\x55\x8e\x1e\xbc\xd6\xff\x7b\x1b\x5a\xde\x27\xb8\x44\x95\xe9\xa6\x03\x4d\x44\x10\xb8\x17\x2a\x53\x15\x7b\x20\x52\x39\x4e\x75\xed\xf2\x19\x7a\x83\xa8\xeb\xa1\x4b\x17\x2c\x2e\xf8\x5e\xfb\xc4\x4e\x8f\xbd\xad\xfc\x34\x01\x10\x6b\x9e\x3c\x7d\x79\xc3\xda\xf7\x4e\x6c\x59\xfe\xb7\xcb\xf5\xb5\x2b\x92\xa1\x09\xa4\x2d\x10\x29\xa5\x10\x42\xe0\x95\x57\x5e\xd1\x2d\x10\xa3\x76\x45\xfe\x31\x64\xbb\x37\xe1\x02\x81\x59\xaf\x3b\x91\xc7\xd2\x37\xb5\x71\x3d\xee\x4a\x8f\x62\xb5\x3d\x87\xeb\xe9\x5c\x0a\x31\xb2\x19\x9d\x65\x19\xd0\x8e\xe5\xc1\x4b\x53\x5e\xab\x26\x81\xb9\xf7\xde\x7b\xf9\xae\x5d\xbb\xe0\x79\x5e\xb2\x61\x2b\xb1\x30\x24\xca\xfd\xed\x42\xfd\xe0\xb5\xca\x6d\x07\xaf\xf5\x7f\xa9\xbe\xea\xdd\xc5\x25\xea\x0c\xac\x37\x26\x20\xbb\x61\xca\x64\x05\x04\xd6\x10\xa6\xd9\x34\x49\x09\x9a\x64\xe1\x32\xe5\x6a\x24\x36\x41\xdc\x40\x0f\x66\xa6\x63\x60\xe8\x15\x5d\x26\x21\x20\xc1\xa4\x43\x58\x01\xda\x4c\x8e\xdc\x1b\x96\xca\x23\x95\xa8\x65\x24\xd3\xf5\xd3\xc1\x52\x03\x6f\x74\x58\x15\xad\xd5\x7e\xa9\xbc\x8e\x05\x48\xd0\xf2\xc4\xe9\x8b\x1b\xd7\xbe\xf7\xeb\xcd\x8d\x1f\x5f\xa9\xad\x5d\x14\x1c\x2d\x68\x02\x44\xc5\x41\xde\x7b\xef\x3d\xbc\xf1\xc6\x1b\x98\x9c\x9c\x04\xdc\x26\xbc\x9e\xf2\x98\xfa\xff\x5f\xc0\x67\x2a\xbf\xde\x79\x6a\xb5\x38\x5c\x44\xba\x92\xcb\x4a\xc8\x92\xc6\x79\x05\x54\x9e\x94\x25\x41\x6d\x70\x1c\x80\xf8\xfd\xdf\xff\x7d\x1e\xbb\x25\x1c\x5d\x2b\xc3\x07\xe0\x97\x3b\xbc\xb6\x7f\xaa\x72\xf4\xc6\xab\xfd\xbf\xb7\xb1\x59\xbc\xbb\x20\x31\x98\x63\x1f\x67\x9c\x72\xd8\x15\xeb\xda\x78\x95\x2f\x2a\x90\x6b\xf9\xd4\x05\x98\x9a\xac\xe9\x29\x9d\xcc\x79\x57\x22\x82\xc4\x20\x12\xd2\x3d\xd0\x05\x4a\x52\x9f\xd0\x46\x81\x55\xb0\x95\xc6\x73\xe2\x1f\xc9\x64\x7b\xd5\x17\xef\x4e\x6c\x5c\xfd\xee\x1b\x5b\x1a\x8f\x4f\x57\x3b\x97\x24\x8b\x5c\x18\x6d\x39\x17\x9d\x4e\x47\xfc\xf5\x5f\xff\xb5\xcb\x5d\x71\x8d\x53\x53\xde\x7a\xc6\xae\xcb\x4a\xcf\xb2\x3a\xd6\xeb\xb2\xe4\xed\x0b\x2d\x57\x49\x00\xdd\xe0\xa8\xca\x70\x11\xed\x62\xa6\x0b\x4e\x87\xcd\x92\x80\x79\xad\x08\x8a\x77\xbd\x34\xa4\xda\x39\x76\xec\x18\xdf\xb1\x63\x07\xca\xe5\xb2\x12\x18\x1c\x91\xc0\x28\x17\x03\x56\xd9\x3e\x5f\x3e\x74\xf3\x95\xea\x17\xc7\x97\xfc\xcf\x16\x05\x1b\x45\xbc\x51\x4b\x8f\x00\x18\x0d\x06\x18\x7c\x81\x54\xca\xb3\x5e\x62\x0f\x27\x9a\x6d\x88\x1c\xee\x40\xa6\x44\x59\x47\xb8\xb2\x07\x57\x8f\x78\x21\xb4\x51\x9b\xcb\x21\xf8\x52\x98\x7a\x85\x0e\xc5\x6e\xaa\x9d\x5c\x33\x34\x97\x4a\xc1\xeb\xa7\x47\x9b\xff\xe5\xed\xf1\x95\x67\x16\xcb\xe1\x14\x58\x62\x81\x24\xcb\xb8\x4b\x4b\x4b\xf8\xce\x77\xbe\x63\x1b\x8f\x30\xe4\x9b\xc6\xa8\x9e\xb2\xb4\x7b\x5e\x3c\x36\xdc\x2e\xba\xf2\xe2\x77\xcd\x55\x63\x52\x9c\x35\x99\xef\x14\x11\x4d\x79\xac\x07\x53\x1d\xbd\x8d\xf5\x48\xbf\x3c\xb0\xb9\xa5\xbc\x5a\x5e\xfd\xda\xd7\xbe\xc6\xcb\xe5\xb2\xaa\x9b\xc4\x31\xb8\x40\x65\x7c\xc9\xdf\x7e\xd3\xd5\xea\x6f\xed\x9c\x2b\x7f\xbe\x1c\xf0\xdd\x0c\xcc\x03\xf2\x45\xfe\x9d\x30\xeb\x5d\x8a\x40\x3e\xeb\x41\x6a\xbb\x3a\x7b\x60\xb3\x08\x32\xed\x52\x35\xdd\x1a\xf0\xa4\x02\xac\x6e\x12\x4d\x2d\x1b\x63\xa7\xd7\x03\x67\x30\x46\x7a\x5c\x98\x90\x61\x61\xae\xbf\xf3\xdc\xdb\xe3\x2b\xdf\x3a\x3d\xd2\x7c\xa5\x59\x0c\x97\x00\xa4\x36\x93\xb5\xdb\x6d\x71\xe9\xd2\x25\xfc\xec\x67\x3f\x5b\xcf\xd8\xb2\x2a\x26\xad\x1c\x16\x18\x97\x45\x70\x3d\x56\x7b\x1e\x7a\x5d\x29\xb3\x4d\x2a\x38\x5c\x9a\x5e\x4f\x79\xac\x13\x9b\xb4\x33\xb5\x91\xe5\xa3\x65\xb5\x6d\xa2\xd9\xfa\x10\xeb\xf5\x3a\x3f\x7a\xf4\x28\x76\xef\xde\xad\xea\x71\x29\xa5\x87\xe8\xfd\x90\x72\xad\x55\x18\xbe\x61\xb2\xff\x13\x07\xaf\xf5\x7f\xb5\xba\x56\x38\xc2\x24\x2b\xa7\x96\x55\x55\x4c\x80\xdc\x03\xe8\x31\x14\x68\xfc\x20\x05\x44\xcc\x78\x48\xa4\x57\x43\x18\x5d\x7e\xd5\x62\x1b\x29\x7a\x7a\xad\x7a\xa9\x84\x01\x08\x6c\xec\x63\xa4\xe8\xb7\xe1\x8b\x75\x36\xd9\x48\x0e\xd6\x43\x7b\xf4\x2f\xb2\xb0\x14\x5e\x19\x97\xe9\x75\x2d\x82\x25\x8e\xcd\x80\xb1\xa4\x5d\xe8\x71\x13\x0a\x4c\xe3\x31\xd4\x12\xa1\xcf\x89\xd8\x40\x80\x44\xa7\x20\xaf\x5c\xda\xb0\xf6\x2f\x27\xb6\x2e\x7f\xe7\xca\x86\xb5\x89\x80\xc9\x26\x80\x16\x00\xf5\x82\x9d\x98\x9d\x9d\xc5\x77\xbf\xfb\xdd\x3c\xda\xdb\x35\xd6\xf3\xc4\x19\x6c\x78\xf2\x08\x22\x57\xb2\xc1\xdb\xe2\x18\x2e\xba\x52\x78\x94\xab\xb2\x5e\x3f\x89\x96\xbb\x98\x63\x23\x90\x12\xe6\x72\x5d\xf2\xc2\xe8\x6d\x02\x16\x06\xfc\xe1\x1f\xfe\x21\xf7\x7d\x3f\xbd\xbc\x0a\x56\xf6\x04\xab\xee\x9c\x2b\x1f\xb8\xe5\xd2\xc0\x57\xc7\x96\xfd\xfb\x0b\x92\xd5\x4d\xc1\x44\x3d\x07\x88\x9d\x06\xc9\x7a\xe2\x7f\xba\xa7\x62\x84\x8d\x27\x98\x04\x03\xd3\x66\xad\xed\x15\x15\x75\x47\xe3\x89\xc9\x9e\x8d\x94\x55\x42\x26\x58\x4c\x40\x32\xa1\x24\x11\x66\x44\x00\x29\xd8\x6e\x67\x75\x7c\x29\x09\x15\xfd\x30\x2d\xe6\xa1\x6f\x29\xa5\xdc\xa3\x31\x0c\xc8\x6e\x7b\x20\x1d\x87\x0e\x17\x67\x6a\xfb\x4c\x12\x9a\xb5\x98\x46\xba\xff\xe8\xd2\x41\xf0\xca\x88\xce\x60\xc5\x17\x6f\xbd\x33\xb6\xf2\xcd\xb7\x36\x35\x52\xee\x0b\x62\xeb\x23\x0c\x43\x71\xe1\xc2\x05\x3c\xf5\xd4\x53\x79\x2c\x04\x97\x95\xa1\x97\xbb\xf0\xb8\xdc\x6c\x13\x8e\x3c\x78\x69\x72\x85\x1b\x5c\xe5\x09\x7d\x8c\x66\x90\xca\x2e\xc4\x79\x4c\x31\xbd\xcc\xc6\x14\x18\xe0\x68\x1e\xc5\xeb\x62\x90\xf5\xc1\x7e\xfc\xe3\x1f\xe7\xfb\xf6\xed\x43\xb1\x58\xe4\x71\xbe\x27\xa5\xf4\x19\x58\xa5\xbe\xea\x0d\xdf\x7a\x69\xe0\xfe\x7d\xd3\x7d\x7f\x52\x8a\xb6\x86\x73\x63\x70\x4e\x4b\x34\x9a\x90\xac\x46\xf4\xd8\xf5\xf1\x74\xd3\x51\x19\x62\x03\xfa\xec\x77\xb9\x07\xa9\x17\xce\x52\x6f\xc4\xa6\x2d\x12\x53\xbc\xa1\x6b\xce\x93\xba\xaa\x2f\x24\xbc\x61\x5a\x61\x96\xf1\x3a\x2e\x8d\x64\xd8\xdc\x07\xf4\xd0\x45\x2c\x97\x34\x13\x7b\x85\x18\x23\x56\x85\xc5\x95\x52\x6d\x81\x31\x6d\x03\x9c\xc6\x81\xd4\xfe\x16\x24\x2f\xe5\x85\x4c\x36\xa6\xab\xed\x1f\xbd\xbc\x7d\xf9\xaf\x27\x36\xae\xbe\x1b\x16\xd0\x00\xd0\x8a\x63\x1f\x89\xf5\xf1\xf8\xe3\x8f\xa3\xd9\x6c\xe6\x19\xd7\x59\x8a\x54\x4f\x2e\x6b\xdf\x25\x54\x6c\x02\x26\x4f\x1e\xa5\xdf\x74\x6d\xa3\x01\x80\xf9\x5d\x15\x4a\xa8\xcb\x5c\x72\xc1\xda\x08\xfb\x20\x3e\x9c\x4b\xb0\xd0\x8e\x26\x69\xc7\x8e\x1d\xfc\xf0\xe1\xc3\xd8\xb4\x69\x93\x82\x57\x3b\x3e\xcb\x05\x89\xea\x47\x66\x2a\x87\x6e\x7f\xaf\xf6\xa7\x1b\x9b\xde\x7d\x0c\xcc\xa7\x56\x46\x62\x3d\xa4\xb4\x96\x5b\xa0\xa4\xa6\xbe\x69\xa3\x96\x3e\x29\x53\xf9\xf1\x8d\xc5\x82\xb0\x5d\xa5\x69\xd2\x66\x1f\xd0\x33\x9b\x7b\xdc\xa6\x64\xd5\x44\x17\x56\x64\x76\x1a\xfc\x8d\x64\x89\x58\xb7\x0e\x14\x2c\x95\x22\xa4\xef\x29\x38\xf4\x0a\xa8\x1e\xf7\x0f\x66\x1e\x26\xc2\x21\x65\x89\x18\x38\x64\x90\x6e\x29\x6b\x85\x01\x2d\x2f\x7c\xf7\x9d\xf1\xe6\xff\xf5\xda\xd6\xe5\x27\x1a\x7e\x38\x27\xa3\x17\xe9\xf4\xf7\x60\xf0\xf4\xd3\x4f\xe3\xd4\xa9\x53\x79\x27\xf1\xf5\x58\x29\xb6\x94\xc7\xd2\x30\xc1\x67\xb5\x91\xd7\x70\x48\xe1\x29\x58\x90\x4a\xcb\x2f\x43\x5a\x41\xb9\x60\x6d\xd7\x74\x98\xd9\xee\x39\xba\x8f\x59\xfd\x09\x2d\x5f\x87\x57\x65\x14\x17\x07\x20\xbf\xf4\xa5\x2f\xb1\x81\x81\x01\x75\xef\x03\x28\x01\xa8\xf4\xb7\xf9\xf0\x5d\x13\xf5\x87\x6e\xbb\x58\xfb\x8b\xea\x9a\x77\x1b\x07\x2b\x28\x33\x9b\x69\x0e\xb6\x6a\x5c\x9f\x30\xe9\x4f\x03\x44\xbf\x2a\x8b\x69\xff\x69\x81\x3e\xae\x75\x37\x21\x05\x1b\x73\x58\xc9\x00\xa9\x69\xf7\x08\x5c\x65\xea\x33\x40\x6b\x07\x29\x42\x7a\x04\x47\x6a\xde\x69\x33\x36\x65\x6d\xc4\x74\xe8\xcd\x50\x61\xc9\x62\xaa\x12\x18\x86\x74\x9b\x16\x53\x44\x32\xc2\x3f\x86\x9e\x0d\xa4\x29\x6b\x86\x69\x3c\x20\xb2\xb8\x4b\xb7\xde\x67\x9d\x46\x72\x91\xf0\x54\x8b\x7f\xc4\xb1\x95\x62\xc8\x87\x47\x1b\xfe\x27\xb6\x2e\x96\x37\x37\x4a\xe1\xa5\xa5\xbe\xb0\x21\x91\x3e\xc5\x7d\xc7\x8e\x1d\xf2\xb5\xd7\x5e\xd3\xc7\x1c\xc8\xb5\x1a\x9f\x12\xe9\xb9\xa5\xee\xa9\xf8\xa4\x63\x56\x25\x7d\x9c\x9b\xf0\xe8\xdc\xd5\xf3\x68\xfb\x12\xf6\x36\x28\x1d\x7a\xbf\xa8\xe0\x49\xe1\x2c\x10\xa4\xb4\x71\xdb\x24\xa5\x65\xf4\x5a\x1f\x46\x26\x3c\xb4\xbd\xbc\x1d\x72\x31\x89\xb6\x2d\x01\xc8\xaf\x7f\xfd\xeb\xea\x4c\x8c\x02\x22\x81\x51\x62\x12\x03\x3b\xe6\xcb\x07\x8f\x9f\xd9\xf8\x3f\xee\x9a\xeb\x7b\xd8\x13\x6c\x84\xc5\x13\x85\xc5\xc3\x49\x0d\xc4\xee\xb2\x6a\xd7\x04\x20\xdf\x13\x89\x06\x9e\x39\xd0\xd0\xd5\x8a\xb2\x2b\x13\xec\xfb\xcc\xa3\x06\x25\xb4\x78\x49\x8f\x99\xae\x21\x4a\xae\x55\xdc\xc4\x80\x57\x69\x64\x7d\xc6\x29\xb2\x12\x82\xba\xc4\xaa\xb6\xb5\xea\x5a\x69\x3a\x78\xa9\xe6\x71\x3a\xe6\x12\x2f\x82\x2a\x2b\x26\xde\x18\xd7\x95\x4f\x24\xb8\x4a\x85\x86\xc5\xd0\x49\x2d\xcb\xca\x34\x8d\xc9\xb3\x8a\xcb\xd2\xde\xa2\x2e\xa5\x15\xdd\x5d\x57\x8f\x91\xce\x32\xc9\x8a\xd5\x36\x3f\xb8\x63\xbe\xfc\xb1\xa2\x60\xf3\x33\x03\x9d\xab\x21\x47\xc8\x22\xe6\x0a\x00\x62\xd7\xae\x5d\xec\x9d\x77\xde\x51\x93\x4b\x9f\x68\x54\x80\xe8\x8a\x4e\xb7\x4a\x74\x21\x42\xc7\x33\x15\xb9\x8a\x0d\x3a\xac\x6e\x21\x98\x14\x37\x15\x2c\x34\x99\xe6\x2e\x15\x6a\x7a\x5e\x4f\x9f\x0a\x04\x19\x95\x6a\xb4\xe3\xfa\x24\x35\x75\x4c\x35\xa2\x08\x70\x99\x51\x8c\xd4\xb5\x09\x18\x0a\xab\x77\x0a\x48\x33\x00\x00\x44\xb9\x5c\x66\xf7\xdf\x7f\x3f\x3b\x76\xec\x18\xd3\x0e\xd2\x29\x31\xc6\xfa\x4a\x1d\x3e\xf8\xd1\xf7\x07\xee\xbb\x73\x62\xc3\x7f\x1a\x5c\xf5\x3e\xc1\x24\xf3\x55\x34\x3f\x49\xba\x56\xd5\x35\x39\x79\x3f\x22\xca\x22\x2a\x35\x19\xc4\x48\x60\x19\xd5\xda\x06\xa1\x91\xf8\xdf\xac\x3b\x29\x98\xf6\x5f\x27\x48\x87\x55\x90\xba\x85\xd4\x45\xda\x6b\x1d\x45\x71\x8d\x34\xad\xdd\x32\x92\x17\x75\x22\xd1\xf4\x4c\x99\x4b\xc4\x2d\xd0\xd7\x4d\x22\xb1\x9b\x32\x05\x22\x18\xa9\xf3\x30\xd2\xf8\xfa\x0c\x4f\xd8\x18\xf3\x27\xb1\x34\x64\x72\x97\xb4\xad\x89\xed\x6e\x9f\x99\x12\x2e\xda\x0e\x5e\xdd\x12\x89\x61\x22\xb9\xa1\x0f\x27\x45\x0b\x12\x3e\x31\x30\xe6\x09\x36\x32\xbe\xec\xdf\x31\xd2\xf0\xab\xb3\xfd\x9d\x73\xcd\xa2\x68\x82\x21\x64\x8c\xa1\xaf\xaf\x4f\x68\x56\x07\x21\xa4\x67\x22\x93\x01\x92\x1a\xc3\x74\xfe\x08\x52\xae\x3f\x19\xe1\x80\x05\xd2\xf3\x54\x87\x35\x95\xdb\xe8\x04\xa9\x67\x13\x84\x09\x70\x96\x8f\xa4\xee\x55\x72\xad\x5c\xa8\x72\x57\x50\x33\x0b\x9f\xc9\xe7\xa2\xb8\x8d\xbf\x07\x0f\x1e\xc4\xad\xb7\xde\x8a\xfe\xfe\x7e\x00\xe0\x52\x4a\x3f\x7e\x21\xad\xb2\x61\xd5\x1b\xbd\x73\xa2\xf6\x95\xdd\x33\x7d\x5f\x2b\x0a\x36\x6a\x0a\x9a\x25\xd7\x5d\xe5\xa4\x69\xd3\x1e\x05\x6d\x9a\xab\x44\x4b\xdb\x36\x2e\x75\x21\xf3\xed\xd1\xd0\x27\x57\x8c\xc5\x12\x37\x91\x90\x90\x0c\x42\x30\x29\x02\x2e\x83\x76\x41\xb6\x3a\x05\xd1\xee\x78\xb2\xbd\x56\x10\xed\x35\x2f\xba\x0f\xb9\x0c\xc2\x18\x2e\xe4\x91\x0f\xcf\x25\x78\x41\x82\x73\xc1\x3c\x4f\x30\xaf\x18\x72\xdf\x0f\x99\x5f\x0c\x99\x5f\x0a\xb8\xef\x87\xbc\x5c\x0c\x99\xef\x85\xcc\x2b\x44\xdf\x63\xe1\xc9\x74\xeb\x99\x3f\xcc\xc8\xa3\xde\xbe\x39\x5e\xe1\x27\xfd\xef\x79\x81\x8f\xba\x6b\x52\x26\x6e\x4d\xaa\x69\xa2\x8e\x92\x67\x40\xac\x15\x03\x2f\x5b\x0b\x95\xe0\x67\x4f\xec\x9f\xfb\x9f\xaf\x0e\xac\x5d\x64\x8c\xb5\x00\x04\xb3\xb3\xb3\xe2\xb1\xc7\x1e\x43\xab\xd5\xca\x5a\x1d\x01\x7a\xc7\x2a\xcd\x83\x21\xdf\x54\xcf\x86\xd7\xd6\x86\x0d\xc6\x46\x97\x2d\x76\xd2\xf3\xeb\x69\x08\x4c\xc9\x46\x80\x4e\x88\x2b\xf2\x0b\x72\xed\x62\xae\xca\xa3\xb0\x7a\x99\x0d\x9f\x00\x80\x83\x07\x0f\xe2\xce\x3b\xef\x84\xe7\x79\x3c\xae\xe3\x31\xc6\xca\x4c\xa2\xba\x6d\xbe\xbc\xe7\x8e\xf7\x6a\x7f\x3a\xb6\xec\xdf\xcf\x25\xab\xa4\x2d\x0c\xed\x52\x53\xf7\x54\x89\x27\x63\x4a\x8d\x37\xc3\x40\xa7\x59\xcc\x10\x78\xa4\x96\x44\xcf\x84\x48\x52\xb7\x56\xd7\x75\x89\x5d\x85\x58\x29\x84\x1c\x22\xe0\xb2\xbd\x56\x14\xad\x15\x3f\x6c\x2c\x97\x82\x85\xc5\xbe\x70\x69\xc5\x0f\x97\x1a\xf1\x37\x4e\x5a\x9e\x68\x06\x05\xd1\x16\x0c\x41\x2c\x2c\xda\x92\xc9\x50\xc6\x7c\x93\x80\x48\xf5\x53\x26\x5a\x85\x33\xc9\x0a\xea\xe3\x4e\x9e\x80\xef\x85\xdc\x2f\x85\xac\x5c\xee\x14\x2a\x03\xad\x42\x6d\x60\xad\x50\x1b\x58\xf3\x6a\xb5\x56\xa1\xd6\xdf\x2e\xd4\xfa\x3a\xbc\xe2\x85\xdc\xe3\x12\x1e\x93\x89\x68\x44\xfa\x9d\x92\xd8\xa1\x49\xdc\x3c\xd2\x6b\x89\xc4\xed\xa2\x82\xb7\xc7\x7a\x52\x56\x5d\xe2\x66\x69\xcb\xd5\xb1\x10\x81\x44\x0a\x47\xd7\x4a\x62\xda\x5b\xb7\xba\x95\xa2\xf2\x00\x30\xf8\x82\xc9\x4a\xcb\x13\xea\xf5\x83\x36\x00\x0c\x0e\x0e\x2a\xa1\xa1\x92\x2d\x00\x49\xe7\x8d\x6d\xae\xb9\xe6\x86\x0d\xa7\x4b\xb9\xc2\x50\xee\x9a\x9b\x14\xc6\x29\xf8\x3c\x0d\xc8\xd6\x98\x89\x60\x9b\xc5\xe1\xaa\x4b\xdb\x71\x95\xbb\x24\xb8\x51\x4a\x1e\x3c\x78\x90\x2b\xa1\xa1\x0e\xd6\x91\x52\x96\x8b\x82\xd7\x0e\x5c\xab\xdc\xf6\xb1\x8b\xb5\xff\x58\x5b\x2b\x1c\x65\x00\xa7\xaf\xa7\xd3\x0d\x4d\x49\xa2\xaf\xb1\xc7\x79\x89\x36\xa3\x3b\xa7\x22\x80\x08\x96\xc4\x22\x98\xae\xd9\x7a\xac\x57\xd3\x2b\xe8\xbd\x04\x49\x48\x74\xb8\x6c\xb7\x8a\xa2\xb5\x5c\x0a\x17\xe6\x2b\x9d\x99\xd9\xfe\xce\xcc\x5c\x25\x98\x59\x2e\x05\x4b\x2d\x4f\x34\xda\x9e\x6c\x06\x5c\xae\x21\x7d\x2a\x56\xea\xc4\x70\xfd\x90\x1b\xf5\x75\x35\x5d\x70\x09\xe8\xdf\x7a\x11\x71\x8c\x48\x72\x00\x1e\x20\xd4\xc1\x45\xd1\x44\x8a\x4e\x3b\xeb\x2b\x06\xbc\x5c\x0e\x78\x75\x60\xad\x50\xdb\xd8\x2c\x0e\x0e\x35\xbd\xd1\xc1\x66\x71\x78\xa0\xe5\xd5\x2a\x1d\x5e\xf5\x42\xf8\x89\xc0\x54\x31\x8a\xa4\x7b\x31\x3f\x54\xdc\x44\x49\x6c\x35\xe1\x59\x2f\x7b\xbb\x35\x23\x91\x61\x0c\xcc\x28\xcb\x23\x76\x45\xa2\xfc\x34\x02\x43\x56\xe2\x82\x49\x06\x2c\x95\xc2\x8b\xcf\xec\x5e\xf8\x2f\xf3\x7d\x9d\x20\xee\xb3\x69\x32\xea\x13\x99\x4e\xca\xbc\x73\x4b\x2f\xb7\xcd\x13\x17\x7e\x93\x12\xa6\x29\x4b\x20\xb9\x70\xa6\xee\x4d\x16\x87\xcd\x44\xa1\x16\x81\x09\x1e\x04\x36\xcb\x3c\x33\x49\x3e\x9b\xe5\xe2\x94\xb2\x77\xdd\x75\x17\x0a\x85\x82\xb2\x32\x7c\x48\x94\x2b\x9d\xc2\xf0\x2d\x97\x06\xee\x3b\x7c\xb5\xfa\x1f\x4a\x01\xdb\x99\x4c\xf8\xee\x4e\xa5\xe8\xc7\x14\x3e\x02\x52\xae\x40\x32\xb6\x98\xae\x05\x53\x66\x40\xd7\x44\xd1\xdd\xf7\xc4\x74\x56\x2d\xc6\xb0\x29\xd3\x3c\x7d\xa0\x6f\x37\xa0\x28\x11\x32\x04\x6b\x9e\x68\x2d\xf6\x05\x73\xd3\xd5\xf6\xe4\xe4\x40\x7b\x72\xb6\xbf\x33\xd5\xf0\xc3\x85\x56\x51\x2c\xc7\x67\x4e\xa8\x4d\x4b\xed\x78\xf9\xb0\x8d\x48\x40\xb4\x63\xbe\x25\xbb\x21\xe3\x6b\xa1\xbe\x55\xa2\x7f\xd7\xb5\xdb\x6d\xa6\x9e\x03\xe8\xe7\x1c\xe2\x37\x85\xd5\x4e\x5b\x8f\x31\xe6\x87\x0c\x7e\xe8\x0b\x6f\xb5\x18\xfa\xf3\x7d\x9d\xf2\xc5\x7a\xcb\xe7\x60\xe5\x52\xc0\x07\xfa\xdb\x85\xda\xd0\x4a\x71\x74\x7c\xc9\xdf\x3c\xda\xf0\xc7\x37\xac\x16\x06\xcb\x41\xa1\xe2\x09\x78\xa9\xf9\x2e\x59\xea\xb0\xe3\x6e\x8c\xa3\x6b\x5d\xe9\xae\x84\x3a\x12\x40\xaa\x7f\x3d\xee\x9e\xf6\x50\x35\x9f\x53\xea\x81\xd5\x38\xd6\x42\xad\x91\xe8\x79\x30\xb4\xbc\x70\xe9\x95\xed\x4b\x3f\xbc\xb8\x71\xed\x8a\xfe\xbd\x5c\x4b\xa2\xe3\x37\x8f\x82\xb4\xe1\x30\xe1\xb1\x4d\x7a\x57\x1c\x31\x8f\xa0\xd0\xdb\xb1\xb5\xd9\x23\x1f\x3c\xf4\x4e\x7a\x97\x10\xa1\x44\xd8\x7c\x24\x13\xe1\x36\x57\xc7\xd6\x41\xda\x66\x8f\x00\x29\x95\x4a\x78\xf0\xc1\x07\x79\x7c\xf6\xa7\x1a\xd8\x3e\x03\xab\xf4\xb7\x0b\xa3\x77\x4e\xd4\xbe\xb8\x7f\xaa\xf2\xdf\x15\x05\x1f\x4e\x19\xf8\xdd\xb1\xd8\xe3\x8e\x00\x24\x2e\xc1\xd2\xca\x4a\x4d\xf0\xee\xae\xcf\xae\x56\x8c\x2b\xa7\x4d\x5f\x7d\x33\x52\x12\xd4\x54\x83\x58\xe1\xea\xfa\xf8\x32\x72\x3f\x82\x15\x3f\x68\xcc\x54\xdb\x93\x57\x36\xb4\x2f\x5d\x1d\x58\xbb\xb4\xd0\x17\xcc\xac\xfa\x62\x51\x32\x34\xa5\x94\x2d\xc6\x58\x4b\x4a\xd9\x62\x60\x2d\x4d\x58\xb4\x11\xbf\xb4\xc5\x18\x4b\x7d\x9b\x84\x1c\xa5\x27\x00\x08\xd7\x64\x50\x1f\xa2\x06\xc0\xb5\xcf\x30\xea\x2e\xa0\x27\xa5\x54\x31\x24\x2f\xd9\xb2\xcf\x58\x19\x80\x2f\x01\x7f\xd5\x0b\xcb\xab\x5e\x58\x9e\xed\xef\x94\x4f\x8f\x34\x2b\x7d\x1d\xbe\xa1\xd6\xf2\x06\xc7\x97\xfd\xad\x5b\x16\x4a\xdb\x47\x1b\xc5\xf1\xfe\x76\xa1\xe6\x09\xe6\x31\x20\xb5\x22\xc2\x68\x60\x57\x05\x34\xb5\x80\x6d\x3a\x24\xa1\x59\x72\x92\x41\xaa\x80\x77\x22\x50\x4c\xfc\x56\xab\x30\xda\x86\xba\xf8\x39\x84\x5c\xb4\xdf\x1e\x5f\x79\xe6\x9d\xb1\xe6\x09\x74\x77\x93\x2a\x3e\x22\x0c\x43\x7d\x9c\xaa\x44\x2d\x06\xdb\xdc\xd0\x61\xf5\x6b\x6a\x99\x98\xe6\x84\xad\x9c\x5a\x07\xa6\xe4\x0a\x0d\xb8\xe6\x66\x4f\xb9\x67\x69\x84\x4a\x1f\x13\x51\x26\x7f\x89\x96\xdb\xac\x87\x2c\x53\xca\x24\x6c\x7a\x60\x1f\x78\xe0\x01\x25\x34\x94\x00\x2c\xc7\xbb\x40\xb7\xde\x73\xbe\xfe\x47\x3b\xe7\xca\xff\x8e\x0b\x56\x05\xd0\x15\x05\x64\xb0\x41\xdf\xd1\x18\x2b\xa9\xd4\xfb\x0d\xfa\x7a\xbf\x72\x6b\xd0\x8d\x53\x30\x29\xb5\x81\xd7\x1d\xdf\xe9\xe5\x42\x24\xee\x4a\xea\xdd\x15\x2d\x9e\x22\x98\x14\xcd\x62\xd8\xb8\x36\xd0\xbe\x72\x71\xe3\xda\xf9\xcb\x1b\xd6\x2e\x2e\xf6\x05\x33\x9d\x82\x5c\x96\x52\x36\x19\x63\x4d\x29\x65\x13\x12\x2d\x44\xbb\x1a\x53\x02\x23\xb6\x2e\x12\xb7\x84\xb8\x23\x6a\x2f\x42\xf2\x05\x79\xc5\x7f\xd7\xeb\xfc\x5a\x3e\xb5\x3e\xf4\xed\xfa\x89\x20\x01\x39\xec\x28\x0e\x4a\x97\x01\x94\xc1\x50\x59\xf5\x45\x79\xd5\x6f\x12\xa5\xc8\x58\x00\x00\x20\x00\x49\x44\x41\x54\x57\xae\xd5\xda\xa7\xde\x1e\x5f\x19\xa8\xb5\x0a\x83\xe3\x4b\xfe\xf6\x1d\xf3\xe5\xdd\x9b\x96\x4a\x5b\xfb\xdb\x85\x1a\x97\xe0\x6a\x49\x98\xa9\xb5\x85\x94\x5b\x83\xae\x4b\xa3\xc7\x23\xd2\xfe\x49\xda\x0b\x22\xfd\xe9\x2e\x4d\xb3\xde\xba\x00\x04\xa4\x98\xd8\xd8\x7a\xeb\xb5\x6d\xcb\x4f\x07\x05\x39\x07\x60\x29\x7e\x06\xc9\x56\xf4\xab\x57\xaf\x2a\xbe\xd8\xac\x66\xc0\x3e\x37\xf4\x7b\x9b\xc2\x5d\x0f\x1e\x13\x2d\xb4\x0d\x53\x9b\x2e\xe5\xee\xa2\x37\x15\xe3\x30\x75\xc4\x66\x76\x99\xa4\x53\x56\x07\x6c\x0c\x32\x59\x22\x14\x67\xaa\x5e\xa9\x54\xc2\x03\x0f\x3c\xc0\x87\x87\x87\x55\x1f\x94\xbf\x5d\x1d\x5f\xf6\x77\x1f\x3b\x5b\xff\x0f\x63\xcb\xfe\x83\x5c\x32\x5f\x1a\xf7\x36\xa4\x67\x37\x0d\x63\x40\xea\x93\x26\x3d\x20\x55\x39\xf5\xb3\xd3\x20\xda\x8a\x09\x12\x43\x1b\x2c\x65\x4e\x47\xd6\x4a\xc0\x65\x30\xd3\xdf\x99\x3c\x3b\xbc\xfa\xee\x7b\x43\xad\xb3\x0b\xe5\x60\x2a\x28\xc8\x65\x00\x0d\x00\x4d\x00\x4d\xc6\x58\x33\xbe\x56\xc2\x42\x7f\x9f\xa2\x8d\xc8\x7a\x48\x3e\x9f\x88\xae\x50\x10\x51\xf0\xb1\x2b\x34\xba\x2c\x50\x7d\xef\x75\x55\xb4\x03\x8c\x74\xb8\x24\x5f\x3d\x07\x44\xd6\x88\xb2\x4e\xf4\x83\x9b\x93\x67\x22\xa5\xf4\x11\x1f\x51\xa0\xfe\x18\x63\x95\xa0\x20\x2b\xb3\x95\x4e\x65\xae\x3f\xb8\x70\x6a\xac\xf9\x7a\xad\xe5\x0d\x6f\x9f\x2f\xef\xdc\x33\xdd\x77\x60\xac\xe1\x6f\x2d\x86\xcc\x4f\x09\x80\x38\xee\x40\xb7\x98\xea\xa7\x98\xa5\xc3\x18\xe4\x21\xe9\xab\x64\xd0\x5d\xc9\xf8\x59\xb0\x6e\xe1\x4c\x7f\xe7\xd2\x8b\x3b\x97\x1e\x5f\x29\x86\x57\x20\x31\xc7\x18\x5b\x8a\x05\xb7\x3a\x41\x0c\xef\xbf\xff\xbe\xce\x32\x3a\x6e\x4d\x0a\x8f\x93\x72\x5a\x66\xb3\xc8\x6d\x38\x4c\x6d\xda\x68\xa2\xc9\x14\x2a\x30\xe1\xb7\xcd\x41\x98\x82\x3d\x79\xfc\xa2\x3c\xd2\xca\x46\xa0\xcb\x5c\xa2\xc9\x48\xbc\xe6\x9e\xa8\x01\x5a\x96\x52\x56\xb7\x2f\x94\xf7\xdd\x7b\x76\xe3\x9f\x6f\x6c\x7a\x9f\x54\xef\x9a\x74\x03\x91\x40\x6f\xfc\x01\x89\xcb\xd2\x0d\x77\xd0\xf7\x19\x7a\xc4\x8e\x29\xbc\x46\x52\x6f\xa9\xee\xcb\x0b\x26\xd1\xf4\xc5\xd2\x85\xc1\xd5\xb3\xa7\x47\x9b\x6f\x4d\x0e\xb4\x2f\x75\x0a\x72\x1e\x91\x1b\xb2\xc4\xc0\x9a\x52\xca\x46\x2c\x30\xa8\x85\x11\x20\xb2\x30\xe8\x37\x56\x95\x35\x91\xda\xe9\xa8\xf8\x46\x85\x46\xca\x6c\x37\x6c\x68\xa3\x82\x86\xd4\xe3\x24\x3f\xe5\xd6\x00\xd1\xc7\xa8\xd0\x1d\x5f\x5e\x1c\xac\x4e\x5c\x19\x00\x15\xc6\x58\x05\x40\x25\xe4\xa8\xcc\x57\x82\xab\xf3\x95\xc6\x85\xb7\xc7\x57\x5e\x1b\x6d\x14\x37\xef\x9f\xaa\xdc\xb8\x6b\xae\x6f\x5f\xb5\x55\xa8\x73\x25\x41\xe8\xc3\xd0\x04\x41\xef\x93\x60\xe9\xe7\xaa\xc3\x6a\xcf\x5f\xed\xeb\x50\xc2\x7d\xc5\x0f\x16\x5e\xdc\xb9\xf8\xa3\x99\xfe\xce\x19\xc6\xd8\x14\x80\xb9\xf8\x59\x24\x5f\x93\x9b\x9f\x9f\xc7\x5b\x6f\xbd\x65\xb3\x9e\x6d\x31\x3c\x97\x5b\x61\x53\xc0\x14\xa7\x0d\xd6\x44\x87\x8e\xdb\x25\x20\x60\xb8\x36\xa5\x54\x1d\x46\x0a\x28\x33\x5c\xf1\x0f\x17\x21\x59\xb0\xae\x76\x5c\x84\x8b\xcf\x7f\xfe\xf3\xd4\xd2\x28\x43\xa2\xba\x6b\xae\x7c\xe3\x27\xce\xd5\xff\xbc\xbe\xea\xdd\xc5\xc0\xa8\x00\x33\x0a\x89\x54\xbe\x2d\xf5\x2a\xae\x5e\xf0\x5c\x7b\x15\x00\xc1\xa5\x58\xe8\x0b\x66\x4e\x8f\x34\x4f\x9e\x1e\x69\xbe\xb5\xd8\x17\x5c\x13\x0c\x4b\x00\x96\xc0\xd0\x00\x92\xbf\x44\x60\xa0\x1b\xbb\x48\x7d\x37\x84\xfc\xa9\xd4\xc3\xc3\xf3\xe7\xcf\xa3\xd9\x6c\x02\x00\x9e\x7f\xfe\x79\x27\x8f\x3d\xcf\xe3\x41\x10\xa4\x60\x36\x6f\xde\xcc\xaf\x5c\xb9\x22\x00\xe0\xae\xbb\xee\xe2\x00\xe0\xfb\x3e\xf6\xee\xdd\xdb\xe3\xe2\xc4\xd6\x86\xba\xd5\x5d\xce\x44\x80\x40\x73\x65\xe2\xbf\x8a\xf6\x57\x05\x50\x85\x44\x8d\x4b\xd4\xaa\x6b\x85\xb1\x3d\x33\x95\x7d\xfb\xa7\x2a\x87\x87\x56\x8a\xa3\x05\x19\x9d\x87\xc2\x54\x50\xb3\x47\xaa\xab\xd5\x93\xac\x07\x46\x52\x0c\xd3\xe6\xa2\xfd\xab\x9d\x4b\x3f\x7c\x7d\xcb\xf2\x4f\x43\x8e\x8b\x00\x26\x01\xcc\x00\x58\x42\xfc\xca\x3d\x00\xf1\xe8\xa3\x8f\xe6\x1a\xab\xeb\x80\x59\x2f\xfc\x7f\x6d\x18\x17\x1c\x07\xd2\x47\x07\xda\x24\x67\x5e\x89\x65\x13\x36\x80\x99\x41\xeb\x11\x4a\xa2\x52\xa9\xf0\xcf\x7c\xe6\x33\x18\x19\x19\x01\xd2\x42\xa3\xb6\x77\xba\xef\xc8\xc7\x2f\xd4\xff\x7c\x43\xab\x70\xd4\x28\x34\x3e\xe4\xb4\xde\x63\xfe\x3a\x91\x3b\x72\xe5\x9d\xb1\xe6\x5b\x17\x86\x56\xdf\x6d\xf8\xe1\xb4\xe4\x58\x00\x62\xa1\x01\x34\x54\x1c\x03\x91\xd0\xd0\x83\x9d\x3d\xc2\x42\x2d\xa1\xaa\x16\x82\x20\xc0\xb9\x73\xe7\x00\x00\x4f\x3f\xfd\x74\x92\xdf\xd7\xd7\xc7\x57\x57\x57\xaf\x47\x48\xe7\x4a\x04\xbf\x7e\x92\x9a\xce\xa3\xd4\xc7\xb6\x75\xb7\x06\x91\xe0\xf0\xa4\x94\x89\x0b\x03\x25\x3c\x80\x2a\xa4\xac\x31\xb0\x5a\xa5\xcd\xc7\x76\xce\xf5\xed\x3b\x70\xad\x72\xe3\xf8\xb2\xbf\xb5\x28\xb8\xaf\xf3\x57\x33\x17\x93\x00\xb3\xed\x7c\x14\x5b\x12\x90\xe2\xe4\xf8\xca\xf3\xcf\xee\x5e\xf8\xfe\x5a\x51\x9e\x97\x52\x4e\xc6\x16\xc7\x02\xba\x02\x5c\xbc\xf0\xc2\x0b\xf8\xf5\xaf\x7f\xfd\x41\xf8\xb7\xde\x39\x60\x9b\x7f\xeb\x99\x53\x59\x38\xb2\x68\xed\x81\xa5\x82\x03\x04\xd0\x65\x52\xd9\x04\x84\xcd\xa2\xd0\xf1\xd0\x3a\xb6\x0e\x71\x00\xe8\xef\xef\xc7\xa7\x3f\xfd\x69\x8c\x8e\x8e\x02\x44\x68\xec\x9f\xaa\xdc\xfa\xf1\x0b\x1b\xfe\xd3\xc0\x5a\xe1\x30\x03\xeb\xee\xd1\x20\x31\x0b\xc3\x7a\x5d\x92\xd2\x82\x80\xec\xc3\x80\x96\xad\x82\xa9\x40\x77\x0f\x87\x2d\x49\x89\xa0\x80\x60\xba\xbf\x7d\xe5\x9d\xb1\xe6\x9b\xe7\x87\x56\xdf\x5d\x29\x85\xd7\x24\x4b\x0b\x0c\x68\x16\x46\xbc\xac\x1a\xc4\x2e\x49\x8f\x65\xa1\xe8\xbc\x74\xe9\x12\x3a\x9d\x0e\x4e\x9d\x3a\x85\x8b\x17\x2f\xe6\x15\xde\x30\xe4\x65\xf9\xc5\x36\x57\xd4\xaa\x50\xaa\xd5\x2a\x0a\x85\x02\x16\x17\x17\xc5\xa7\x3f\xfd\x69\xce\x39\xc7\xf6\xed\xdb\xa9\x9b\x93\x7c\x57\x57\x0b\xb2\x26\xb1\x10\x25\x40\xa4\x94\x55\xc6\x58\x4d\x4a\x59\x67\x60\xb5\x4a\x87\x8f\xec\x9c\xeb\x3b\x70\x68\xb2\xff\xf0\xd8\x72\x71\xab\x27\x98\x9f\xec\xe3\x48\xce\x38\xd1\x96\x74\xb5\xa0\x74\xfc\x48\x62\xf7\x46\x05\xc5\xbb\x51\xf1\x2b\x1b\xda\xa7\x9f\xd8\x3f\xfb\xad\xc5\x72\x78\x1a\x0c\x57\x00\x4c\x4a\x29\x17\x10\xc5\x98\xda\x00\x82\x53\xa7\x4e\xe1\x99\x67\x9e\x41\xbc\x94\x6d\x1a\xdb\x94\x4f\x94\x57\x79\xe6\x93\x8b\xdf\x26\xfc\xa6\xfa\x26\x97\x27\x0f\x5d\xae\xb1\x94\x82\x65\x19\x95\xf5\xe4\xb2\x48\x6c\x1d\xb2\x11\x68\x2a\x37\x5e\x57\x2a\x15\xdc\x77\xdf\x7d\x18\x19\x19\x81\x0a\xba\x49\x29\xcb\x0c\xac\xf6\x91\xd9\xbe\xc3\xf7\x9e\xa9\xff\x2f\xfd\xed\xc2\x61\xb5\xc2\x91\xde\x90\x95\xde\xaf\x91\xde\x5f\xd5\x9d\xf8\xc9\xbe\x09\xa8\xac\xee\x61\x3b\x29\xf3\x57\x8f\xc4\xf5\x48\x26\xd5\x86\x84\x60\x10\xb3\xfd\x9d\xc9\x93\x63\x2b\xaf\x9f\x1f\x5e\x3d\xb9\x5c\x0a\xaf\x0a\xc8\x05\xc6\xd8\x52\x3c\x18\x1b\x8c\xb1\x06\x90\x2c\xad\xea\x7b\x2f\x04\xa2\x98\x44\x12\xd0\x5c\x5c\x5c\xc4\xf2\xf2\x32\xa6\xa6\xa6\xf0\xca\x2b\xaf\x88\x42\xa1\xc0\xc3\x30\x34\x3d\xb3\xac\x41\xec\xca\xcf\xab\x18\xa0\xe5\x59\x07\x96\xba\x56\xf1\x12\x00\xf8\xec\x67\x3f\xcb\x07\x06\x06\xb0\x71\xe3\xc6\x04\x87\xec\x7e\x98\x9b\xba\x32\x15\x29\x65\x85\x31\x56\x91\x52\xd6\x74\x01\xd2\xdf\xe6\x9b\x76\xcf\xf6\x1d\x38\x34\xd9\x7f\x64\x64\xc5\xdf\x5c\x88\x97\x73\x7b\x52\x8f\x0e\x30\x07\x4c\x97\x4b\xc1\xcc\x4f\x0e\xcc\xfd\xc3\xe5\x0d\x6b\x27\xc0\x70\x09\x91\x8b\xb2\x80\x48\xa8\xb7\x00\x04\x4b\x4b\x4b\xf8\xf6\xb7\xbf\x9d\x65\x49\xdb\x7e\x29\xcf\x5c\xd7\x59\xf8\x01\xf3\x1c\xcd\xf2\x0c\xb2\x04\x13\xc5\xe3\xa4\x89\xc1\x3e\xb0\xf2\x10\x95\xa5\xc1\x6c\xb0\x79\x5c\x14\x00\xe0\xbf\xfd\xdb\xbf\x8d\xb1\xb1\x31\x80\x58\x1a\x3b\xe6\xcb\x87\xee\x3d\x53\xff\x8b\x0d\xad\xe2\x6d\x5a\x68\x0f\x76\x7b\x34\x8f\xb3\x9b\x2f\xd9\x8c\x0d\x01\x89\xe5\x72\x38\x77\x7a\xa4\xf9\xd6\xc9\xf1\x95\xd7\x17\xfa\x82\xf7\x25\xc3\x1c\xd0\x63\x65\xa8\x18\x86\xc9\x1d\x01\x00\xb1\xb8\xb8\xa8\x0e\xcd\x45\xb5\x5a\xe5\x8d\x46\x03\xc8\xe7\x0a\xc2\x90\x67\xb5\x10\x2c\xb0\x36\x98\xf5\x98\xb7\x26\x7c\x1c\x80\xd8\xbc\x79\x33\xbf\xe1\x86\x1b\x50\xaf\xd7\x51\xaf\xd7\x95\x35\x92\xb2\x40\xa0\xf6\xe4\x30\x56\x8e\x05\x48\x55\x13\x20\x83\x0c\xac\xbe\xa1\xe5\x6d\xd9\x3f\x55\x39\xbc\x7f\xaa\x72\xb8\xbe\xea\x0d\x17\x64\xd7\x4d\x35\xbd\xff\xd2\xd5\x27\xca\x72\x94\xe8\x14\x64\xeb\xe9\x8f\x2c\xfc\xf3\xc9\xf1\x95\xa7\x65\x57\x68\xcc\xc4\x01\xd1\x96\x94\x32\x10\x42\x88\x6f\x7e\xf3\x9b\x2e\x2d\xee\x12\x16\x2e\xbe\x66\xf1\x74\xbd\x38\x29\x6d\x36\xd8\x3c\xcf\xd1\xd4\x7e\xf2\xab\x0b\x8e\x2c\xc2\xb2\x24\x11\xb4\x72\x1b\xe1\x79\x3a\x90\xe4\xed\xdf\xbf\x9f\xdf\x7d\xf7\xdd\x28\x14\x0a\xdd\x97\xd5\x24\x6a\x5b\x16\x4b\x87\x8e\x9f\xd9\xf8\x67\x83\x4d\xef\x13\x49\x4c\x23\xbd\x70\xa2\x2e\xbb\x45\x9a\x07\x93\x94\xe9\xbb\x42\xe9\x0e\x51\xcd\xea\x30\xae\xee\xa5\xcd\x17\xb4\x3c\xd1\xbc\x30\xd4\x7a\xf7\xd7\x9b\x1a\xaf\x5c\x1b\x68\x5f\x10\x1c\x73\x40\x5a\x68\xc4\x71\x0c\x75\x34\x7f\x8f\x3b\xd2\x6e\xb7\x71\xf5\xea\x55\x9c\x3a\x75\x0a\x13\x13\x13\x59\xe6\xa6\x6d\xb0\xba\x06\x72\xd6\x80\x47\x4e\x3c\x59\x29\x8b\x86\x24\x6f\xe7\xce\x9d\x7c\xf7\xee\xdd\xd8\xb6\x6d\x1b\x4a\xa5\x12\x74\x0b\x44\xbd\x3a\x80\xee\x72\xae\x8a\x81\xd4\x00\xd4\xa5\x94\x83\x05\xc9\x06\x87\x57\x8a\x3b\x6e\xbc\x5a\x3d\xba\x67\xa6\xef\x50\x5f\x87\x57\xe9\x4b\x85\x34\xa9\x18\x48\xc8\xa4\xf8\xf5\xa6\xc6\x2f\x9e\xdd\xbd\xf0\xfd\xb0\x80\x8b\x5a\x5c\x43\x3d\xab\x40\x08\x21\xfe\xf2\x2f\xff\x72\x3d\x1a\x3e\xf7\xf8\x76\xe4\x67\xcd\xbd\xf5\x28\x5f\x53\x1b\x1f\xf8\x99\xea\xae\x8a\x09\x71\x1e\x44\xeb\xa9\x97\x5b\x1a\xef\xdd\xbb\x17\x9f\xfc\xe4\x27\x95\x4f\x9c\x58\x1a\xe3\xcb\xfe\x9e\xe3\x67\x36\xfe\xd9\x48\xa3\xf8\x1b\xeb\x0e\x84\x9a\x8c\x0e\xb3\xc7\xe1\x46\xa3\x09\x21\xc1\xa4\x98\xae\x76\xae\x9c\xd8\xb2\xfc\xfc\xf9\xa1\xd5\xb7\x3b\x05\x39\x03\x96\x08\x8d\x25\x29\xe5\x92\x0a\x7a\x6a\x02\x23\xd9\x6b\x01\x40\xac\xac\xac\xe0\xc4\x89\x13\x38\x79\xf2\x64\x96\xb9\xaa\xee\xf3\x08\xef\x3c\x66\xb0\xab\x0d\x9a\xd6\x63\x61\xba\xea\xd2\x7c\x00\x10\x23\x23\x23\xbc\x5e\xaf\xe3\xb6\xdb\x6e\x43\xa5\x52\x49\xac\x10\x00\xfa\xbe\x90\x32\xe2\xa5\xf7\xd8\x02\xa9\x03\xa8\x03\x18\x2c\x0a\x3e\xbc\x7d\xbe\x7c\xf0\xd6\x4b\xd5\x3b\xc6\x97\x4a\xdb\x0b\x32\x76\x5f\x68\x70\x54\x0b\xa0\x5e\xac\xaf\x9d\x7c\xe2\xc0\xec\xdf\xaf\xf8\xe2\x6c\x1c\xd7\x50\xc1\xd0\xa6\x94\x32\x90\x52\x06\xb1\xd0\xf8\x30\xb4\xf8\xf5\x0a\xe8\x3c\x0a\x3c\x8f\xd0\xc9\x43\x57\xee\xfe\xd1\x0d\x60\x2e\xa4\x2a\xb9\xcc\x2a\xd3\xb5\x4d\xeb\x99\x70\x71\x00\x62\xcf\x9e\x3d\xb8\xf7\xde\x7b\xd5\xbd\xda\x46\x5e\x1d\x6c\x7a\x5b\x3f\x71\xae\xfe\xef\x47\x1a\xc5\xdf\x80\x04\x4f\xbf\x67\xa0\xb6\x71\x9b\xdd\x88\x64\x7f\x42\x12\xb3\x80\xb6\xd1\xab\xbb\xd5\x58\xea\xe7\x69\x5a\x90\xa9\x37\x54\x57\x8b\xa2\xf1\xee\x58\xf3\xf5\xd7\xb7\x2c\xbf\xb8\x54\x0a\xdf\x57\x02\x23\x8e\x63\xe8\x6e\x89\x7a\x8f\x24\x11\x18\x61\x18\x8a\x89\x89\x09\x4c\x4e\x4e\xe2\xed\xb7\xdf\x56\x3c\xb2\x59\x01\xa6\x44\xcb\x74\x1c\x7a\xb9\xcd\xaa\xb0\x3d\x2f\xd3\xbd\xa9\x8e\x8b\x4e\x1b\x2c\xad\x97\xdc\x4f\x4f\x4f\x8b\xe9\xe9\x69\x9c\x39\x73\x06\x07\x0e\x1c\xe0\xa3\xa3\xa3\xd8\xb3\x67\x8f\x28\x14\x0a\xea\xbd\x1a\xb5\x85\xbe\x8d\x28\x90\xdc\x64\x8c\x35\xa4\x94\x4b\x00\x1a\x41\x41\x2e\x9d\x1f\x5a\x5d\x9a\xac\xad\x5d\xbc\xe9\x4a\xf5\xe8\xe1\xab\xd5\x3b\x2a\x6d\x5e\x85\xda\x7a\x9e\x6c\xa8\x89\x9e\xdd\x42\x5f\x30\xf9\xfc\xae\x85\x1f\x35\xfc\xf0\x12\x63\x6c\x06\xc0\x82\x72\x4f\x10\x2f\x7d\x2f\x2e\x2e\xea\xf4\x03\xf6\xc9\x44\x79\xe9\xb2\xe4\x4c\xf8\x28\xac\x89\xff\xb6\x3c\x65\xb1\x52\xfa\x5c\x56\x2a\xa5\xc3\x86\xd7\x86\xc7\xba\x8f\xc3\x54\x79\xbd\xe6\x9a\x4d\xb2\x3a\x61\xcb\xe5\x32\xff\xea\x57\xbf\xaa\x6f\x6f\x2e\x03\xa8\xf6\xaf\xf1\xf1\xe3\x67\x06\xff\x74\xd7\x6c\xf9\x0f\x79\xfc\x7d\x93\x75\xef\xc9\xc8\x01\x97\xb8\x25\xea\x3a\x96\x2b\xfa\xb5\x60\x12\x53\x03\xed\x8b\xcf\xef\x5c\x7a\xea\xfd\x8d\xad\x53\x92\x61\x06\x91\xc0\x98\x63\x8c\x2d\x40\x73\x4b\xd0\x7d\x77\x24\x79\xc0\x8f\x3e\xfa\xa8\x18\x1a\x1a\xe2\xb3\xb3\xb3\x7a\xd3\x79\x2c\x3c\x0a\x67\x9b\xe0\xd7\x93\x6c\x83\x4b\xc7\x79\xbd\xda\x31\xeb\xde\x69\xb1\x3e\xf2\xc8\x23\xfa\x84\x52\x16\x28\x75\x5f\xea\x52\xca\x3a\x63\x6c\x90\x49\x0c\x6f\x5a\xf2\xf7\x7f\xfc\x42\xfd\xf8\xa6\x25\x7f\x27\x97\x8c\xeb\xcf\x7c\xd5\x0b\x1b\x4f\xef\x59\xf8\xe7\x77\x47\x9b\xcf\x6a\xc1\xd0\xb9\xd8\x3a\x6c\x03\x08\x56\x56\x56\xc4\xb7\xbe\xf5\x2d\x97\x05\x08\x43\x99\x89\x57\x14\x6e\x3d\xcf\x79\x3d\x38\xae\xc7\xda\xd7\xf3\xd7\xe3\x6d\x40\x3f\x01\x4c\xc6\x95\x58\xfc\x27\xb4\x7b\xca\x40\x05\xeb\xea\x94\x09\x87\x5e\x57\xd3\x01\x80\xaa\xf7\xe0\x83\x0f\xb2\x6a\xb5\xaa\x68\xf3\xa5\x94\xfd\xe5\xb0\x30\x74\xf7\x85\xfa\xbf\xdb\x33\xd3\xf7\xc7\x1c\xac\xd4\x8d\x6f\xe9\xab\x1f\x71\x17\x92\x99\xce\x12\xed\x82\x14\x8c\xea\x2a\xdd\x3c\xa4\x11\x13\xdb\xb8\x4c\xad\xa4\x80\x25\x56\x46\xc7\x93\xad\xb7\x36\xaf\xbc\xf8\xd4\xde\xf9\xc7\x66\xfa\x3b\xa7\x24\xe4\x15\xc6\xd8\x24\x80\xc9\x58\x73\xcd\x23\xb2\x34\x56\xe3\x41\xd8\x01\xa2\xa3\xe7\xce\x9c\x39\x83\x27\x9f\x7c\x12\xad\x56\x8b\xad\xae\xae\xd2\xa6\x15\x5f\x74\xfe\xe8\x79\x94\x9f\xea\x5e\xfd\x4a\x74\x43\x38\x3a\x8c\xfe\xa7\x97\x9b\x9e\xb7\x6d\xc7\x83\xc1\xd8\x4f\x87\x90\x08\x1c\x27\xf0\xa6\x7b\xfa\xfc\x75\x7c\x0a\x1e\x00\xf0\xea\xab\xaf\xca\x4a\xa5\xc2\x86\x87\x87\x65\x4c\xa7\xda\x5a\x1f\xc6\xfc\x6d\x23\xda\x8e\xbf\x26\xa5\xec\x48\xa0\xdd\x28\x89\xa5\x73\xc3\xcd\x09\xc9\xd0\x19\x6c\x16\x47\xd5\xd2\x6d\x87\x8b\xf6\xeb\x5b\x1a\x4f\xbe\xb9\xb9\xf1\x73\xc9\x71\x15\xc0\xb5\x58\xe0\x2f\x33\xc6\xd6\x10\xbb\x91\x4f\x3e\xf9\x24\x96\x96\x96\x74\xde\xe9\x7d\xa4\x7f\x2a\x09\x02\xa7\xf3\x46\x09\x04\xca\x77\x1b\x2e\xd3\x9c\xd1\x9f\xb1\x8e\x57\xc2\x8e\x4f\xd5\x85\x21\x4f\x7f\x26\x0a\xaf\x69\x1c\xd2\xe7\x96\x6b\x17\x53\x5e\x49\x75\xbd\x29\xa9\xff\xb9\xcf\x7d\x8e\x8f\x8f\x8f\xab\xbc\x32\x80\x0a\x17\xa8\xdf\xfe\xde\x86\xdf\xb9\xe5\x72\xf5\x7f\x2a\x86\x7c\x58\x97\x11\x1f\xca\x22\x49\x9e\xe3\xb7\x10\x09\x8d\xb9\x4a\x30\xf9\xd2\xf6\xa5\x67\xce\x8e\x34\x4f\x84\x0c\x53\x88\x2d\x0d\x74\x03\xa0\xfa\xe6\x2d\x81\xf8\x64\xec\x33\x67\xce\xe0\xe7\x3f\xff\xf9\x7a\x78\xb4\x5e\x9e\x5e\xcf\x33\xf8\x30\xb4\xd9\x07\x7d\xf6\xeb\x4e\xf7\xdc\x73\x0f\x3f\x78\xf0\xa0\x7a\x51\xcf\x8b\x2d\x53\x7d\x17\x6a\x15\x71\xdc\x03\xc0\x30\x17\x18\xde\x35\xd7\x77\xf0\xb6\xf7\x6a\xc7\x87\x57\x8a\x5b\xcf\x0f\xad\xbe\xf4\xd4\xde\xf9\xff\x7b\xd5\x17\x13\x88\xf6\x6a\xcc\xc4\x56\x62\xf2\x2e\xca\x9b\x6f\xbe\x89\x17\x5f\x7c\xf1\xc3\xe0\xe7\x7f\x0b\xb8\x3c\xb0\x1f\x56\x9b\x89\x35\xe4\x91\x4c\x93\x5f\x63\x33\xbd\x5c\xbe\x9d\x5e\x9e\x3b\x30\x13\x2f\xbb\xaa\x81\x50\x06\x50\xbd\x61\xb2\xff\xee\xc3\x57\xfa\xff\x87\x62\xc8\x86\xa3\x37\x51\xb5\x13\x1b\xf4\x8f\xfe\xb8\x5c\x16\x2a\xa3\x53\x72\x5d\x8b\x65\x10\x97\x44\xc9\xd9\x80\xcb\xe0\xe2\xc6\xd6\xe9\x17\x76\x2e\x3e\x35\x53\xed\x9c\x89\x5d\x13\x5d\x68\xa8\xef\x70\xe8\x71\x0c\x31\x3f\x3f\x8f\x93\x27\x4f\xe2\xe4\xc9\x93\xaa\x5f\x7a\xca\x32\xff\x4d\xcf\x83\xd6\xa7\xf9\x59\x71\x05\xda\xb6\x09\xb7\xcb\x45\xcd\x72\x51\x4c\x75\x6d\x7e\xbc\xcd\xff\x77\xc2\x3f\xfb\xec\xb3\x62\x6a\x6a\x8a\xdf\x70\xc3\x0d\x18\x1a\x1a\x0a\x00\x70\xed\xe5\x3e\x75\x06\x49\x2b\x76\x13\x9b\x21\x93\x8d\x73\x43\xab\x0b\x8b\xe5\xe0\xc2\xbe\xe9\xca\xfe\xd3\x23\xcd\x37\x56\x8b\x62\x42\x4a\x39\xc5\x18\x9b\x83\xb6\x9d\x9c\x31\x26\xde\x78\xe3\x0d\xbc\xfc\xf2\xcb\x36\xde\xe8\x74\xe7\xe9\x9b\x89\xef\x59\xbc\xd0\xf9\x61\x7a\x9e\x26\xfe\x9a\xee\x5d\xf4\xd8\x70\xe5\xa1\x49\x00\xdd\xe5\xd8\x3c\x7e\x67\x96\x85\x91\x67\xf0\xc0\x76\xfd\x47\x7f\xf4\x47\x3c\xfe\x50\x92\x8a\x9e\xd7\xb7\xce\x97\x0e\x7d\xfa\xd4\xe0\x7f\xae\xad\x15\x8e\xa4\xb7\x10\x53\xab\xd9\x9e\x92\x5d\xa1\xda\xe9\xe1\x56\x58\xf4\xca\x9b\x35\x2f\x6c\xbe\x3d\xde\x7c\xe5\xc4\x96\xe5\xe7\x1a\xa5\xf0\x3d\xa4\x85\x86\xda\xf9\x99\x04\xd4\x00\x08\x21\x04\x5e\x78\xe1\x05\x3d\xe8\x09\x03\x1f\x6c\xbc\xc8\xf3\x6b\xc3\x47\xf1\xe6\x19\xc8\x26\x81\xe6\x6a\x13\x8e\x7b\x64\xe4\x9b\xda\x74\xc1\xda\xda\xe4\xa5\x52\x09\x6b\x6b\x6b\x22\x1e\x37\xfa\x3e\x10\xf5\x22\x9d\xda\x7d\x5a\x63\x8c\x55\x21\x51\x29\x48\xf0\x90\xa1\x89\xe8\xfd\xa0\x05\x29\xe5\x42\xbc\x11\xaf\x0d\x40\xac\xac\xac\x88\x1f\xfc\xe0\x07\x68\x34\x1a\xb6\xb1\x6a\xe3\x8f\xab\xaf\xd0\xca\x5d\x02\x81\xe2\x36\xe1\x74\x4d\x6c\xda\xa6\x6b\x5e\xdb\x70\x66\xdd\x27\xd7\x2e\xc1\x41\x09\x37\x69\x29\x97\xe6\x72\x11\x9d\xea\x5c\xfc\x49\x46\x8e\xee\x0a\x4a\xad\xba\x56\xd8\xfc\xc0\xc9\xa1\xbf\x18\x5f\xf6\x3f\x0b\xc9\xb8\xf6\xc2\x2a\x14\xe1\xa6\x83\x80\xf5\xe5\xb6\xd4\x69\x52\x70\x27\xba\xbb\x50\x42\x62\xa9\x1c\xce\xbd\xba\x6d\xf9\x99\x77\x47\x57\x5e\x6e\x7b\x52\x2d\xd7\xa9\x20\xa8\x7a\xbf\x24\xd9\xf1\x19\x86\xa1\xb8\x7c\xf9\x32\x7e\xf2\x93\x9f\xd8\x1e\xaa\x89\x2f\xb4\x2c\x6b\xb0\x02\xf6\x41\x40\x61\xb3\x06\x64\x9e\x81\xa4\xd3\xec\xd2\x80\x34\xe5\x15\x3e\x34\x2f\x8f\x55\xa2\xc3\xe2\xf8\xf1\xe3\x7c\xdb\xb6\x6d\xf0\x7d\x5f\xed\x01\x49\x05\x4f\xa5\x94\xe5\x78\x3f\x08\x47\x24\x24\x9a\xda\xbb\x41\x49\x30\xf4\x89\x27\x9e\xc0\xf4\xf4\x74\x16\x0f\x74\xda\xf3\x5a\x5f\xb4\x1e\xad\x9b\x57\x29\x64\x59\x13\x36\x1a\x5c\x0a\x24\x8f\x11\xd0\x33\x76\x4c\x07\xf9\xac\xa7\xd3\xae\x0e\xe9\x04\x50\x62\x38\x00\x51\x2a\x95\x70\xfc\xf8\x71\xee\xfb\xbe\x2a\xf7\x00\x54\x8a\x21\xab\xdf\x35\xb1\xe1\xf7\xc6\x96\xfd\x64\xaf\x86\xfa\x5e\x47\xf2\x6e\x02\x98\x76\xe4\x7e\xf4\x93\x9c\xce\x05\xb5\x9c\xaa\x7b\x1c\xfa\x41\x3a\x48\xc1\x80\x75\xc3\x1c\xea\x93\x83\x33\xfd\x9d\x2b\x2f\xec\x5c\xfc\xd9\xc4\x60\xeb\x8d\x90\xc9\x49\x86\xe8\x15\x6b\xa4\xb7\x22\x27\x42\x63\x69\x69\x09\x6f\xbe\xf9\x26\xde\x79\xe7\x1d\x17\x3f\x28\x1f\xf5\xa4\xc3\xba\xea\xd8\x60\x74\xde\xda\xda\xb1\xe1\xb5\x69\x99\xac\x49\x6e\xc3\xa5\xe7\xe9\xf7\xb6\x76\x6c\x63\xc9\x55\x2f\x81\x7d\xea\xa9\xa7\x00\x40\x7c\xf1\x8b\x5f\x44\xbd\x5e\x17\x71\x79\x10\x1f\x3b\xd0\x46\x24\x44\xd4\x0b\x76\x41\x5c\x96\xfa\xc4\x63\xbc\x82\xa2\xf3\x2e\xeb\xd9\xb9\x14\xa3\xa9\x3e\xed\x0f\x4a\xa5\x12\xaa\xd5\x2a\x9f\x9d\x9d\x15\x00\x70\xe7\x9d\x77\xe2\x85\x17\x5e\x10\x43\x43\x43\x1c\x00\xe2\x55\xb7\xbc\xd6\x00\x85\x75\x29\x97\xac\xe7\x0e\xc7\xaf\x00\xba\xfb\x38\x68\x12\xda\x6f\x96\xe6\x30\xd5\xc9\xca\xe3\x00\xb0\xb6\xb6\x26\xb6\x6d\xdb\xa6\x6f\x33\xae\x14\x24\xab\xdd\x7c\xa5\xfa\xc9\xbd\xd3\x7d\x5f\x63\x60\x7e\x77\x01\xa4\x6b\x33\xa4\x5e\xa7\xd6\x62\xd7\xea\x65\xa6\x04\x32\x05\xc6\xb4\x7d\x1b\x36\x0b\x24\xfa\xac\xc0\xd5\x0d\x6b\x13\xcf\xed\x5a\x7c\x7c\xb2\xd6\x7e\x47\x32\x4c\x32\x30\xe5\x9e\xa8\xbd\x19\x6a\x5f\x86\xe8\x74\x3a\x62\x72\x72\x12\xbf\xf8\xc5\x2f\x10\xbf\x29\x6a\x1b\x34\x2e\xed\x8c\x1c\xe5\x2e\x5c\x79\x26\xbd\x49\x80\xdb\xb4\xbb\x69\xc2\x9b\xe8\xc8\x73\xaf\x70\x99\xc6\x82\x0d\xb7\xad\xdc\x49\xd3\x0f\x7e\xf0\x03\x1c\x3b\x76\x0c\x5b\xb6\x6c\x11\xb1\x32\xd2\xcf\x2f\x49\xfa\x19\x2f\x8d\x27\x67\xaf\x9e\x3e\x7d\x5a\xc7\x99\xd7\x8a\x03\x7a\x79\x6b\xd3\xd2\x29\x9a\x07\x06\x06\xf8\xf2\xf2\xb2\xb8\xff\xfe\xfb\xd5\xdb\xde\x91\x72\x94\x12\x37\xdd\x74\x53\x72\xcd\x18\xe3\xe7\xcf\x9f\x87\x94\x12\x4f\x3e\xf9\x24\xe5\x9f\x6b\xbe\xf5\xb4\xf9\x01\xee\x8d\x49\xb9\x2a\xaa\x82\x4d\x4a\xd9\x06\x98\x29\xb9\x84\x4d\x92\xb6\x6f\xdf\x8e\x4f\x7d\xea\x53\xd0\xe2\x1a\x15\x44\xef\xa0\x1c\xb9\xef\xdd\xc1\xff\xad\xbf\x5d\x38\x20\x01\x80\x75\x23\x96\x9a\x27\x91\x6c\xe4\x4a\x9f\xf7\x99\x48\x10\xed\x0b\x6c\x00\xe2\x2f\xb3\x77\x7b\xdd\x7d\xa9\x2d\xf9\x17\xc9\x15\x31\x31\xd4\x3a\xf9\xcc\xee\x85\xc7\x17\xfa\x82\x73\x12\x52\x2d\xb1\x2a\xa1\xd1\x44\x7c\x4c\x1f\x63\x4c\x04\x41\x80\xa7\x9f\x7e\x5a\xbd\xd2\xee\xd2\x30\x30\x94\xad\xe7\x1e\x1f\x42\x59\x16\x6c\x9e\xba\x79\xeb\xd8\x2c\x15\xdb\x58\x73\x8d\x2f\x93\xb2\x72\x4e\xee\x2d\x5b\xb6\xf0\xe3\xc7\x8f\xa3\x5c\x2e\x03\x40\x72\x62\x3b\x80\xd4\xb1\x89\x41\x10\x88\x89\x89\x09\x7d\xc5\xcb\xe6\x0a\xd0\x32\x68\x79\x2e\x81\x9c\x94\xa9\x97\xfd\x8e\x1d\x3b\xc6\xf7\xed\xdb\x97\x3a\x72\x40\x2b\x37\xf5\x29\xf9\x9d\x98\x98\xc0\x4f\x7f\xfa\x53\xc1\x39\xe7\x42\x88\xf5\xcc\xc9\x14\x7f\x1c\xf5\x9c\x96\x9d\x5e\xce\xb4\x02\x17\x43\x40\xca\x69\xb2\xc1\x98\xa4\x2e\x07\xba\x71\x0d\x19\x9d\x9a\xed\x43\xa2\x56\x6b\x15\xb6\x7e\xf6\xdd\xa1\x3f\xdf\xb4\x54\xfa\x9c\x2b\x26\x61\x3a\x0f\xa3\x27\x8e\x91\xf8\x28\xd9\xcb\xad\xea\x03\x46\x67\x87\x57\x5f\x7f\xfa\x23\xf3\x3f\x5a\xf1\xc5\x7b\x60\xc9\x21\x2e\x2a\xf2\x9e\xf8\xc3\x52\x4a\x71\xf5\xea\x55\xbc\xfe\xfa\xeb\xb8\x74\xe9\x92\xea\x77\x5e\xa1\x41\x93\xcd\x72\xb0\xc1\x1a\x07\xa6\x05\x06\x06\x78\xd7\x04\x30\xd5\xfb\xff\x7d\xfa\xfa\xd7\xbf\xce\x39\xef\xb2\x48\x08\x01\xcb\xfb\x27\xb6\xf4\x81\x79\x71\xec\xd8\x31\xbe\x7f\xff\x7e\xfd\x58\x46\x8e\xee\x72\xb2\x12\x6a\xfa\x41\x48\x02\xda\xcb\x8f\xda\x89\x6c\xe2\x9d\x77\xde\xc1\xb3\xcf\x3e\xfb\xff\xea\xb3\xb1\x7d\x90\xc9\x64\xfe\xb8\x98\xe7\x12\x18\x46\xb3\x97\xc6\x35\x3c\xc1\xea\xb7\x5e\x1a\xf8\xad\xf1\x25\xff\x3e\x65\x59\x24\x4b\xa3\x34\xb1\xde\xad\xe5\xa9\x85\x16\x20\xe5\xaf\x44\x59\xb2\x27\x26\x82\x38\x5f\x30\x88\xd3\x23\xcd\x57\x9e\xfe\xc8\xc2\x63\xad\x62\x78\x11\xd1\x86\x2e\x7d\xe5\x44\x09\x0d\x01\x40\x7c\xe3\x1b\xdf\xc8\x32\x09\x5d\x13\xd7\xc5\x9f\x3c\x82\x57\xe5\x9b\xda\x77\x69\x4c\x5b\x1b\x26\xdc\xb6\x36\x6d\xcf\xd4\x35\x36\x6c\x6e\x95\xc9\x9c\xcf\x6a\x7b\xbd\xe5\x1c\x80\xf8\xfe\xf7\xbf\x0f\x15\x47\xf8\xe8\x47\x3f\xca\x5f\x7d\xf5\xd5\xf5\xf2\xc0\xf6\x5c\xb2\xe8\xc2\xc0\xc0\x00\x7f\xe0\x81\x07\x50\xab\xd5\xf4\x95\x1f\x75\x94\xa2\xc7\x05\xfc\xa1\x95\x62\x6d\xb0\x59\x1c\x2d\x08\x94\x19\x18\x6f\x7b\x62\x69\xae\x2f\x98\x9a\xab\x74\x9a\x92\x47\xca\x4a\x7b\x29\x32\x38\x78\xf0\xa0\x78\xf6\xd9\x67\x5d\xf4\x66\xf5\x27\xab\x8e\x8b\x9f\x00\x3e\xd8\x4b\x6e\xb4\x71\xd7\x04\x49\xe1\x7b\xf8\xe1\x87\xf5\xa5\xb3\x0a\x24\xea\x07\xa6\x2a\x77\x7d\xf2\x6c\xfd\x3f\x97\x82\xc2\xd6\x3c\x0b\xad\xa9\xcf\x13\x98\x3e\x77\x8e\x5e\x24\xe4\xb3\xaf\x00\xa2\x3d\x1a\x27\xc7\x56\x5e\xfa\xe5\xae\xc5\xc7\xd6\x3c\x71\x09\x2c\xd9\x14\xa4\x84\x46\x72\xfa\x53\x18\x86\xe2\x9b\xdf\xfc\xa6\x88\x69\x77\x32\xd6\x50\x66\xe2\x87\xcd\x2c\xcc\x63\xd6\xdb\x2c\x42\x97\xeb\x99\xc7\x45\xc8\x63\xa6\xe7\x99\x38\x59\x34\xbb\x06\xad\x9e\x4c\x56\x95\xa9\xdc\xd6\x66\x1e\x98\x2c\xa1\xaf\xb7\xbf\x1e\xfe\xe3\xcb\x5f\xfe\x32\xaf\xd5\x6a\x40\xf7\x9b\x34\x3e\x24\xfc\xc1\xa6\x37\xb8\x6f\xba\x72\xc7\xde\xe9\xca\x6f\xf6\xb7\xf9\x8d\x5e\xc8\x47\x59\x7c\xc4\xa2\x04\x5a\x01\x97\x33\xcb\xe5\xe0\x95\x77\xc6\x9a\x3f\x3e\x37\xbc\xfa\xda\x62\x39\x58\x00\x4b\x1f\xc3\xd0\xe9\x74\xc4\x0f\x7f\xf8\x43\x4c\x4f\x4f\xe7\x11\x00\x94\x5f\xb6\x67\x66\xed\x8b\x7e\xaf\xbe\x56\xcf\xd1\xdd\xe2\x0a\xf4\x6e\x5d\xee\x71\xbe\x34\x38\x8e\xee\x96\x55\xae\xe5\x43\xab\x1b\x6d\xf3\xf3\x3c\x2e\x84\x90\x47\x8f\x1e\x2d\x20\x32\xd3\x4a\x00\xaa\xc3\x2b\xc5\x5d\xf7\x9c\xaf\xff\xc7\xda\x9a\x77\x93\xbe\x5f\xc3\x68\x6d\xa4\x56\x41\x98\x0a\x61\xf4\x2e\xcb\xaa\xd6\xf5\x5b\x2a\x34\x98\x0c\x4e\x8e\xaf\xbc\xf4\xcb\x5d\x0b\x8f\xad\x15\xe5\x45\x30\x5c\x05\x30\xcd\x18\x9b\x05\xb0\x0c\x60\x15\xd1\x96\xe6\xa0\xd3\xe9\xc8\xbf\xfa\xab\xbf\x12\x1a\x66\xbd\xcf\xd4\xce\xa1\xf6\x0f\x27\x65\x92\x5c\x33\x92\xa7\x97\xe9\x0f\x98\xde\xab\x6b\x49\xee\x4d\xdb\x88\xc9\xb6\xb6\x14\xcd\xf4\xb9\xd3\xed\xeb\x7a\x1b\x26\x3a\x74\x58\xba\x75\x99\xf2\x4c\x87\xa7\x75\xf4\xb6\xe9\xf6\x6a\x9d\x57\x02\x69\xfe\xb8\xda\x54\x13\x87\x3e\x33\x13\x5d\x74\x32\xd1\xf6\x29\xef\x60\xb8\x4f\xf8\xf9\xa5\x2f\x7d\x89\x6f\xd8\xb0\x01\x88\x97\x87\x19\x63\x7d\xc5\x80\xd5\x6e\xb9\x32\xf0\xf1\x4f\x9e\xdd\xf8\xbf\xee\x9c\xeb\xfb\xe3\x4a\x87\xdf\xe2\x09\x3e\xc2\xc1\x2a\x1c\xac\x1c\xbd\x52\xc1\xfa\x3d\x89\x91\x4a\xa7\x70\xd3\xb6\x85\xf2\x67\x76\xce\x95\x0f\x09\x2e\x67\x17\xcb\xc1\x7c\x58\x48\xda\x13\x9c\x73\xec\xd9\xb3\x47\xbe\xfe\xfa\xeb\x36\x7e\x52\x1d\x6c\xeb\x9b\x3e\x87\x73\xf5\x8d\xae\xaa\xd8\x4c\xb4\xbc\xe6\x2b\x2d\x4b\xc1\x7d\xe2\x13\x9f\xc0\x9e\x3d\x7b\x94\x4f\xe7\x01\x28\x17\x03\x56\xbf\xe5\xd2\xc0\x43\x43\xcd\xe2\x1d\xe9\x6f\x84\x46\x74\x27\xcb\xa6\x3a\xe9\xd0\x43\x17\x5a\xa9\xce\x22\x69\x82\xed\xa6\x80\xc9\xe0\xd4\xe8\xca\x2b\x2f\xee\x58\xfc\x71\xcb\x13\x17\x19\xd8\x24\xba\xaf\x55\xeb\x3b\x41\xc5\xe4\xe4\x24\xfe\xf5\x5f\xff\x55\xd7\x34\xf4\xda\xd4\xff\xac\xe4\xd2\xe2\x20\x65\x7a\x39\xbd\x36\xdd\xdb\xf0\x99\xca\x29\xec\x7a\xb4\xb0\xad\x7d\x13\x6f\x6c\xf5\xf3\x98\xd8\x7a\x1d\x0a\x4f\xf1\x9a\xf0\x99\xf8\x6a\xe3\xbf\xad\xed\x2c\x9e\xa7\xda\xff\xd2\x97\xbe\xa4\x5b\x1a\x3e\x63\xac\xd2\xbf\x56\x18\xbc\xfb\xfc\x86\xdf\xfb\xc8\x4c\xdf\x23\x45\xc1\xc6\x53\x9f\x1e\xd5\xc6\x2b\x4b\x7c\x74\xc9\x0b\x92\xd5\x36\xae\x7a\xf7\xdf\x7d\xbe\x7e\xe3\x48\xc3\xff\x3f\x7f\xb5\x63\xf1\x5f\x1a\x7e\x38\xc7\xa2\xcf\x5e\xb4\x3d\xcf\xa3\x3c\xa1\xd7\x79\x9e\xb3\x8b\x07\x14\x27\x47\x6c\x71\x00\x5d\x49\x62\xb3\x2e\xa8\x64\xd7\xf3\x55\xd2\x35\x81\x2a\x4b\x24\xdf\xa6\x4d\x9b\xd8\x9d\x77\xde\xa9\x1a\x2e\x02\xe8\x03\x50\xdb\x3b\x53\xb9\xfd\x96\x4b\xd5\xff\xbe\x28\xf8\xc6\xee\x96\x72\xc5\x45\x06\xfd\x5b\x06\x4c\xbf\x06\xb4\x2f\xfb\xa9\x55\x94\xb8\x8a\x7e\xfa\x53\xea\x3a\x2a\x0f\x99\x14\x67\x47\x9a\x27\x9e\xdf\xb5\xf4\xd8\x4a\x29\xbc\x10\xbf\xa4\xa6\xf6\x69\xac\x20\x76\x4f\x18\x63\xe2\xfc\xf9\xf3\xf8\xd9\xcf\x7e\x06\x21\x84\x46\x54\xea\x71\x73\xa4\x45\x16\xb4\x6b\xa6\x5d\x0b\x52\x9f\x5a\x69\x54\x4b\xea\xed\xe8\xf8\x14\x2c\x15\x0c\x54\x23\x32\xa4\x9f\x89\x8e\x87\xde\x9b\xea\xeb\xf9\xb4\x9f\x94\x17\xd4\xda\xa4\x16\x08\xb5\x36\x38\xa9\xcf\xd1\xcb\x4f\xa0\x97\x1e\x5a\x4f\xcf\x83\x56\x46\x9f\x11\xc8\x35\xe5\x81\xc9\x42\xb4\xf1\x56\xaf\xaf\xa7\x04\xd7\x5d\x77\xdd\xc5\xb7\x6f\xdf\x0e\xc4\x9f\x85\x60\x8c\x55\x2a\x6d\x3e\x7c\xf7\x85\xfa\xd7\xf6\x4f\x57\xfe\x7d\x51\xf2\xa1\xd4\x71\x10\xea\x9b\x2e\x3d\xdb\x0c\xa2\x1b\xc6\x18\x0a\x82\x6d\x18\x6a\x7a\x47\xfa\x3a\x85\xf6\xd5\x0d\xed\xb3\x41\x41\x26\x81\xd3\xa3\x47\x8f\xca\xbe\xbe\x3e\x76\xf9\xf2\x65\x26\xd3\x4b\x33\x7a\x3f\xa8\x05\xca\xb5\x96\x4c\x63\x9a\xce\x67\x68\x79\x5a\xa8\xd9\x9c\x6c\x52\x5a\x2f\xa7\xbe\x9f\x09\xa7\x38\x72\xe4\x88\x82\x4f\x0e\x65\xa9\xad\x16\xc6\x8f\x5c\xaa\x7e\xa5\x1c\xf0\xcd\xd1\xa4\x8f\x5d\x0f\xed\x1d\x14\xe5\x5e\xa4\x26\x7f\x92\x93\x76\x6b\xba\x5f\x51\x63\xdd\xd7\x58\x58\xfa\x61\x08\x48\x4c\x0c\xb6\xde\x7a\x61\xe7\xe2\xe3\x8d\x52\x38\x01\xc6\x26\xa5\x94\x29\x4b\x03\x71\x4c\x23\x16\x1a\xa2\xd3\xe9\xe8\x3c\x70\x69\x3e\x5a\x66\xd2\x80\x3a\x1f\xb3\xb4\x24\xbd\x76\x69\x13\x53\x7d\xaa\x59\x6d\xda\xda\xe6\xeb\xba\x60\x5d\xf8\xb2\xf0\xd3\xfa\x36\xbe\x9a\x2c\x05\x5b\xbb\x79\x70\xe9\x89\xf2\xde\xc5\x47\x9b\x26\x36\xd2\x70\xe8\xd0\x21\x00\xc9\x01\x44\xe5\x82\x40\xed\xe6\xcb\xd5\xcf\xee\x9b\xae\x3c\x52\x90\xac\xa6\xa6\xa2\x94\x88\x3e\x04\x95\x8c\x69\x00\x12\xda\xd8\xed\x66\x33\x00\x45\xc1\x87\xf7\x4d\x57\xbe\x7e\xe3\xd5\xfe\xe3\x4c\xa2\x8a\xe8\x60\x67\x0f\x00\x3f\x74\xe8\x10\xe2\x73\x68\x75\xfa\x6c\x5e\x82\x4e\x6f\xde\x71\x9b\x2a\xcf\x1b\x88\x52\x02\xc1\xc6\x5c\x93\xc0\x48\x26\xc7\xc7\x3e\xf6\x31\xbe\x6d\xdb\x36\x00\x80\x8c\xbe\x31\x5a\xe6\x02\xb5\x9b\xaf\x54\x7f\x73\xa4\xe1\xdf\x81\x64\x77\x68\xe4\x9c\xa4\x0e\x1c\x87\x72\x58\xe2\x0c\x8d\xa9\xc9\x57\xca\x35\xe6\x26\x5b\x39\xf4\xfa\x1a\x9e\xab\xb5\xf6\xd9\x17\x76\x2e\x3e\xbe\x58\x0e\xcf\x49\xc8\x49\x00\x33\x8c\xb1\x85\xf8\x40\x18\x75\x7e\x46\x22\x34\x0c\x7d\xa4\x2e\x98\x2b\xb9\x60\x69\x99\x49\x00\x53\xcd\x67\xc3\x67\xa2\x13\x19\xbf\x2e\x17\xc1\x54\xc7\x96\xef\xe2\x81\x8d\x6e\xaa\x64\xb8\xe3\xcf\x36\x61\x69\xb9\x8d\x9f\x26\x9e\xd9\xdc\x2d\x95\x4c\xe6\x3c\xad\x6b\x1d\x0f\xf1\xb2\xa9\x3a\xb9\xbd\xb2\x69\xb1\xb4\xef\xe0\xb5\xfe\x3f\x28\x08\x36\x08\x20\x51\x80\xda\xc7\xe3\x90\x98\xcc\x71\x46\xca\x6e\x48\xcc\x69\x89\x62\xc8\xc6\x6f\xba\x5a\xfd\x93\xb1\x65\x7f\xb7\x94\xb2\x1c\xb7\xc1\xa5\x94\xfc\xbe\xfb\xee\xe3\xf1\xba\xb3\x4d\x89\xdb\x78\x6f\x4a\xae\xe7\xce\x4d\x83\xd3\x84\xc0\xf4\xf0\x4c\xcc\xa7\x5a\x8e\x03\x10\x7b\xf7\xee\x55\xd7\x5e\xfc\xce\x40\x75\xcb\x62\xe9\xc0\xfe\xa9\xfe\xdf\x2d\x48\x56\x8d\x26\xbc\x8c\x3e\x91\x18\x73\x35\x11\xc2\x29\x06\xa6\x25\x4a\xfa\xf4\x2f\x24\x0f\x43\x37\xd6\x23\xb7\x25\xc2\x38\x57\x09\xae\xfc\x72\xd7\xc2\x8f\x66\xfa\x3b\xa7\xc0\xa0\xce\x97\x9c\x43\x74\xea\x78\x12\xad\x7e\xef\xbd\xf7\x74\xa1\x91\x87\xb1\x59\x0f\xc1\xe6\x1b\x53\xbe\xdb\x2c\x36\x57\xdb\x7a\x3d\x97\x0f\xee\xc2\xe1\x6a\xd7\x36\x31\x6d\xd6\x85\x6d\x02\xda\xf0\x9a\xf2\x4c\x56\x80\x4d\xc9\xe9\xf4\x50\xbf\xdd\x34\xb6\x6d\x42\xc3\xa6\xad\xe9\xb3\xa2\x56\x4c\xea\x3e\x3e\x74\x28\x39\x2f\xd5\x0b\x59\xed\xd0\xb5\xfe\xdf\xac\xae\x15\x0e\x45\x73\x5f\xd7\x6c\xfa\x6f\xd7\xf2\x60\x40\x5a\x79\xaa\xb2\x78\x7e\x0c\xac\x15\x6e\x3c\x34\xd9\xff\x19\x06\x56\x8d\xe7\x93\x07\x00\x3b\x76\xec\x40\x1c\x57\xd1\xe9\xb6\x8d\x37\xda\x3f\x2a\xc4\x5d\x63\xd6\xf8\x90\x4d\x9a\xcc\x26\x7d\x29\x9c\x8e\x53\x00\x10\xb7\xdf\x7e\x3b\x8f\x0f\xe6\xe1\x88\x5f\x3c\x2a\x86\xac\xfe\xd1\xf7\x07\xbe\xd8\xdf\xe6\x7b\xba\xfc\xd3\x5c\x8a\x9e\x60\xa8\x6e\x52\x68\xf7\x89\x58\x8e\xdf\x5f\xa1\x0f\x23\xc6\x2b\x19\xd0\x2c\x8a\x85\x5f\xee\x5a\xfc\xd1\xd5\x0d\xed\xb7\x11\x6d\xee\x4a\xdc\x93\xf8\x7b\x26\x6d\xc4\x42\xe3\x89\x27\x9e\x58\x8f\xf9\x6f\xfa\xa5\x49\x1f\xcc\x26\xed\x45\xeb\xba\x5c\x00\x6a\x4e\xe6\xb1\x6a\xf2\x4c\x72\x9a\x4c\x13\x89\x4e\x4a\x0a\xe7\x1a\x70\x36\x5a\x68\x9e\xcd\x7a\xd2\xdb\xb5\xf1\xdf\x85\x97\xd2\x4a\xf1\xdb\xea\xd8\xea\xf7\x58\x1d\xb7\xdd\x76\x5b\xf2\xf1\xa9\x78\x42\x97\xeb\xab\xde\xe6\xcd\x8b\xa5\xbb\x93\x53\xeb\x34\x97\x04\x40\xf7\xd0\x6b\xa5\xe8\x52\x85\xe9\xb2\xe4\x5b\xc7\x12\xfe\xd6\x85\xd2\x27\x37\xb4\x0a\xa3\xb1\xd5\xe1\xc5\x6d\x62\xe7\xce\x9d\x7a\xff\x4c\x3c\x53\xc9\x26\x4c\x6d\x0a\x20\x55\x4f\x3f\x73\xd4\x26\xa5\x6d\x12\xdb\xa5\xa1\x38\x00\x6c\xd9\xb2\x85\xdf\x7c\xf3\xcd\xc9\x97\xcd\x11\x7d\x18\xba\xb2\x67\xba\x72\x78\xf3\x52\xe9\x3e\x48\xf0\xee\x64\x4f\x9f\xe6\xa5\xdc\x0e\xe5\x89\x28\xcb\x41\x7d\x48\x87\x31\x06\x7d\xa9\x84\x81\xa5\x82\xa2\x2a\xce\x24\x99\x44\xc8\x11\xbc\xb4\x63\xe9\x89\x0b\x43\xab\x27\x24\x4b\x1d\xde\x92\x08\x0d\x29\xa5\xf8\xc6\x37\xbe\x21\xf4\x9d\x7c\xe8\x9d\x24\x40\x36\x5f\x28\x0c\xad\x07\x03\x9c\xa9\xbe\xe9\xda\x94\x6c\xcf\xc2\x25\x1c\x6c\x93\xc5\xd4\x37\xd3\x64\x31\xe5\x9b\xf0\xdb\xea\xaa\x32\xaa\xc5\xa9\x82\xa2\xb4\xba\x84\x8f\xcb\x92\xa0\x82\xc9\x66\x69\xdb\x04\x9f\x89\x2e\x1d\x17\x00\x60\xd3\xa6\x4d\xfa\xe1\xda\x9e\x94\xb2\xb2\x69\xc9\xdf\xd7\xdf\xe6\xbb\x4d\xa1\xd8\xd4\x22\x60\xfc\x49\x4b\xb5\x52\x98\x5a\x09\x24\x21\x6c\xc6\x18\xaa\xed\xc2\xce\xe1\x15\x7f\xf7\x62\x5f\x38\x19\xb7\xc5\x01\xf0\xd1\xd1\x51\xbd\xbf\x26\xc3\x00\xe8\xe5\xb7\xad\x8f\xa6\x6b\x01\x80\xd3\x8a\x26\xc6\xd0\x5f\x53\x23\x54\x02\x0b\x00\xb8\x7c\xf9\xb2\x00\x90\x3a\xa9\xbc\xaf\xc3\x07\x6f\xb9\x54\xfd\x6a\x31\x64\x83\xea\x4d\x56\xc5\x1d\xfd\x1b\x4a\x91\x70\xe8\x12\xa2\x04\x45\xea\xa3\xd0\x09\x2f\x65\xd7\xa4\x83\xe6\x12\x02\x90\x0c\xe2\x9d\xb1\x95\xe7\x7f\xbd\xa9\xf1\xcb\x58\x68\xe8\x07\xb8\x34\x59\xf4\x31\x61\x11\x6f\x1d\xd7\xdf\x17\xb0\xf1\x44\x2f\x03\xcc\x03\xcd\x05\x93\xc5\x6b\x4e\x7e\xf5\x6b\xd3\x40\xb7\x69\x06\x1b\x2e\xfa\x2c\x69\xb2\xe1\xb3\x4d\xe8\x2c\x8b\x89\xf2\xc4\x26\xd0\x6c\xf4\x98\xda\xca\x2b\x4c\xa8\x35\x64\x6b\x2b\x8f\x20\x32\x59\x89\xc9\xfc\xf1\x7d\x9f\xc7\x07\x51\xa9\xe4\x31\xb0\x72\x7d\xd5\xdb\x55\x10\xac\x12\xb9\xcd\x71\x09\xd3\x7f\x34\xb7\x3b\x19\xb4\xe9\xb1\x9f\x4a\xb1\xfb\xed\x09\x56\x1b\x5f\xf2\x0f\x22\x3a\x3a\xc0\x07\xa0\x5b\x1c\x3a\xbd\x74\xce\xba\xf8\x9f\xa5\xa4\x92\x71\x6b\xb3\x1a\x6c\xd2\x58\x2f\x33\x35\x96\x6a\xf4\xe1\x87\x1f\x56\x0d\x79\x00\xca\x4c\x46\x27\x7a\x0d\x35\x8b\x77\x81\xb8\x7a\x49\x52\x92\xd8\xc0\x39\x99\xc4\x40\x68\x95\x48\xe2\x28\xaf\xa6\x7b\x76\x87\xc4\xe5\x0d\x6b\xa7\x5f\xd8\xb9\xf8\x13\x11\xbb\x27\xf4\xd4\x27\x20\x72\x4f\x7e\xfc\xe3\x1f\xdb\x4c\x35\x53\x5f\x6d\x13\xd9\x06\xeb\xb2\x08\x54\x72\x4d\x00\x5b\xd2\x07\x82\x4b\x5b\xe4\xa1\xcb\x25\x08\x28\x9d\xb6\x32\x57\x1d\x2a\xc4\x28\x4d\xb4\x5c\x17\xae\x74\x92\xbb\xea\xd8\x04\x88\x4d\x88\xd8\xe8\xa7\x02\xde\x24\xd8\x92\xfb\xb1\xb1\x31\x48\x29\xd5\x27\x1d\x3c\x00\xbe\x27\x58\xb9\xbf\xed\x8d\x33\x65\xd9\xab\x88\x7d\x6a\x81\x53\x0b\x66\xd0\xf8\x87\x96\xa4\x5e\x2f\x8a\x79\x78\xb5\x56\x61\x33\x22\xc1\xa1\x3e\xea\x6d\xb3\x6a\x4d\xcf\x9c\xf6\xc7\xa6\x90\x28\xbc\xa0\xc0\x36\xc6\xb8\x84\x8b\xa9\x21\x00\xc0\x43\x0f\x3d\x94\x3e\x54\x45\x46\xfe\xde\x0d\x93\xfd\xbf\xc7\x25\xca\x3d\x56\x83\xe6\xf3\x31\x92\xa7\x5d\xf4\xe4\x25\xb7\x9a\xb0\x50\xbf\x0b\x7d\xc1\xd4\x73\xbb\x16\x7f\xd8\x2c\x8a\x8b\x60\xa9\x17\xd6\x5a\xf1\x39\x0d\xa2\xdd\x6e\xe3\xcd\x37\xdf\xb4\xf5\x4b\x67\x76\x96\x30\xb5\xf2\x42\xc3\x45\x93\xad\x2d\x7d\x72\x98\xe0\x29\x5d\x26\x5a\x6c\x16\x42\x9e\xc4\x0d\x7f\x94\x4e\x4a\x83\x89\x16\x05\xaf\xe3\xb5\x0d\x56\x97\x15\x47\x69\xca\xc2\x4d\x69\xb1\xf5\x01\x86\x3a\x2e\x58\x3a\x06\x12\xd8\x1d\x3b\x76\x20\xde\x94\x95\x7c\x0f\x06\x80\x07\x48\x3f\x36\x13\xe2\x71\xad\x7d\xa2\x43\xff\x8b\xfd\x18\x99\xc0\x44\x49\xca\xee\x9a\xa2\x1e\xec\x67\x00\x8a\x21\xaf\xa1\xbb\xbd\x81\x2b\x78\x4b\x72\x8d\x1d\x1b\x1c\xcd\x4b\x7e\x6d\x03\x53\x4f\x94\x51\x7a\x3e\xbd\x4e\x1e\xde\xe0\xe0\xa0\xba\xf7\x00\xf8\x5c\xa2\x76\xe0\x5a\xff\xdd\x1b\x56\xbd\x23\x4c\xdb\xa7\x11\x75\xb4\x6b\x9a\xa5\xdd\x93\xf4\x05\x63\x9a\xbd\x41\xce\xd5\xe8\x6e\x1b\x8b\x7e\xd7\x0a\xb2\xf9\xda\xd6\xe5\x9f\x4d\x0d\xb4\x4f\xa1\x7b\xdc\x9f\xb2\x34\x5a\x8c\x31\xb1\xb6\xb6\x26\xfe\xe6\x6f\xfe\x46\x5c\xbd\x7a\x95\xf6\x97\xf6\xcf\x96\x9f\x65\xf6\xd3\x64\xd5\x58\x70\x0b\x1b\x93\x76\x30\x59\x13\xfa\x9f\x4d\x90\x50\xfc\x26\x13\xd5\xd4\x1f\xdb\xe4\xa1\xc9\x34\xa6\xa8\x75\x41\xf1\x99\xe8\xb4\x29\x32\xd7\xf3\xc9\x1a\xcf\xeb\x11\xf4\x59\x74\xf6\xf0\x35\xb6\x38\x10\x5f\x73\xc9\xa4\x17\x70\x19\xc4\x9b\x0c\x62\x01\xa1\xac\x0a\xb5\x72\x28\x93\x8f\x63\x4b\xc4\xfb\xc0\x12\xeb\x42\xc6\x31\x3e\x19\xaf\xd2\xaa\x79\x12\xb7\xc1\x24\xa4\x94\x49\x7c\x43\xb5\x3d\x32\x32\x62\xb3\x2c\x6c\xee\x48\x1e\x0b\x2c\xf5\xdc\x6d\x8c\x34\x99\x39\xa6\xc1\x6b\x1a\x88\xfc\xa1\x87\x1e\xe2\xf1\x67\x1b\x23\xc1\x21\x51\xa9\xaf\x7a\x9b\xf7\x4f\xf5\x3d\xc4\xc1\xbc\xb4\x29\xa6\x47\x8c\x4c\xa9\x9b\x2f\x35\x73\x44\xea\xf0\xa4\xaa\x88\x76\x86\xbe\x76\x6a\xb4\xf9\xb2\x64\x98\x42\xfa\x3c\x8d\x16\x00\xb1\xb6\xb6\x26\x9e\x7e\xfa\x69\xbd\x9a\x8b\x17\x36\xad\x6d\x1b\x80\x36\xeb\xc2\x24\xf5\xa1\xe5\xe9\xbf\x79\x27\xa0\xad\x1d\x13\x3e\x1b\x5d\x36\x4b\x4a\xd5\xcf\x23\xb8\x28\xbc\x7e\x4f\x85\x0e\x0c\xbf\xb4\x6d\x17\x2f\x4d\x89\xf6\x23\x8f\x80\xa7\xb0\x74\x92\x99\x70\x64\x95\x25\x96\x47\xc8\x20\x96\xca\xe1\x9c\x60\x68\xc7\x7b\x0d\xb4\x55\x14\xa6\xa4\x84\xbe\xc5\x3c\xaa\x9f\x38\xe4\x5d\xb5\x28\x93\xd5\xc5\xc4\x32\x11\x8b\x7d\xc1\x8c\xde\x9e\xba\x26\x34\xd9\xc6\x83\xed\x3a\xd7\x73\x76\x69\x39\x53\xe3\xae\x01\x00\x00\x7c\xe7\xce\x9d\x89\xb5\xc1\x18\xf3\xa4\x94\x65\x2e\x51\xdd\x3f\x55\xb9\xa7\xd6\xf2\x0e\x01\x48\xcc\x33\x00\x48\x40\xb7\xbf\xdd\x2d\x51\xf9\x91\x60\xd5\x36\x7c\xc9\x9f\x8b\x46\xf4\x00\x00\x20\x00\x49\x44\x41\x54\xee\xc6\x0c\xa6\x7d\xfc\x95\x75\x7d\x93\x98\xa9\x12\x4c\x4a\x48\x48\x4c\x55\xdb\x13\xaf\x6d\x5d\x7e\xaa\xed\xc9\x2b\x52\x4a\xf5\x65\x35\xb5\x82\x12\x48\x29\xc5\xc5\x8b\x17\x31\x31\x31\x41\xfb\x42\xfb\x6c\x9a\xe0\x26\x49\x4e\xf9\xa0\xc3\x66\x0d\x7c\x9b\xc0\xa2\x79\x59\xf5\x4d\xd7\x36\x81\xb0\x1e\xfc\xb4\xae\x89\x3f\xd0\xca\x5c\xda\xdc\x04\x4f\xaf\x5d\xca\xc9\x66\x1d\xe8\xe5\xd4\x8a\x32\xd1\xe4\x12\xd2\x36\x58\x5b\x1f\x38\x00\x3c\xf7\xdc\x73\x42\x77\xbf\xa5\x94\x42\x42\x06\xb3\x95\xce\xd5\x4e\x41\x36\x21\x59\xb2\x22\xc2\xba\x4b\x7e\x51\xc0\x9f\xd1\x00\xa9\x4c\x1d\xe0\xaf\xf6\x6f\x24\x5e\x8d\x8c\x3e\x96\x7d\xb9\xb6\x76\x01\x80\xfa\xd2\x9d\x8d\x17\xb4\x9f\xae\xe7\x68\xb3\x80\xf5\x79\x20\x28\x22\x53\x03\xb6\x87\x6c\x4b\xe2\xc8\x91\x23\x28\x14\x0a\xaa\xae\xc7\x18\x2b\xd7\x57\xbd\xad\xfb\xa6\x2a\x0f\x32\x30\x1f\x40\x22\x38\x99\x12\xa0\x2a\x53\x99\x61\xac\xeb\xeb\x21\x25\x69\x91\x92\x34\x32\x25\x79\x22\x84\xab\x45\xb1\x74\x62\x6b\xe3\xa9\xb9\x4a\x70\x01\xd1\xae\xd0\xb9\xf8\x24\xeb\x96\xfa\x74\xc1\xfb\xef\xbf\x8f\xe7\x9f\x7f\x5e\xf5\xc9\x36\x88\x6c\x12\xda\x65\x81\x98\xe0\x4d\x65\x26\x8d\x6e\x83\x37\x3d\x4c\x9b\xf0\xb2\xd1\x41\x07\x91\xcd\x0d\xd0\x93\x4d\x58\x66\x4d\x2c\x3d\x3f\xcb\xea\xb1\xe1\xa5\x34\x65\x4d\x76\x3d\x9f\xd2\x91\x27\xe5\x19\xdb\x4e\x25\x30\x36\x36\xc6\x35\x37\x45\x20\x3e\xdb\x74\x7a\xa0\x7d\x69\xbe\xaf\x73\x31\xb2\x38\xba\x6e\x4a\x6a\xb3\x62\x9c\x64\xb2\x8d\x54\x2f\xe8\xae\xbd\x28\x77\x45\x32\x60\xb1\x2f\xb8\x74\xad\xd6\xb9\x14\xb7\x93\x08\x0f\xc3\xaa\x60\xcf\xa4\x27\x7d\xb2\xdd\xbb\xc6\xb8\xd3\x14\x77\x99\x7a\x56\xa2\x86\x87\x87\x55\x1d\x4f\x4a\x59\x66\x12\xd5\xfd\x53\xfd\xf7\xd4\xd6\xbc\x43\xa9\x08\xa8\x4a\x92\xfe\x76\x8d\x34\x7b\x9c\x07\xdd\x0d\x31\xb2\xcb\x66\x01\x29\xce\x0d\xad\xbe\x76\x61\x70\xf5\x0d\xb0\xe4\xa5\xb5\xd4\x0a\x4a\x10\x04\x78\xe1\x85\x17\xb0\xb6\xb6\x96\xd7\x12\xc8\x53\xae\xf3\xc0\xe6\x8e\xd8\xcc\x68\x9b\xcb\x67\x6b\xcb\xa6\x15\x5c\x1a\xc2\xd6\x9e\x4b\xc3\xd0\x64\x72\x31\x6c\x74\xd2\xb1\x93\x35\x68\x6d\xc2\xda\x24\x80\x6c\xfc\xd2\x85\xaa\xc9\xda\xc8\x12\x4e\xa6\x72\xda\x57\xab\xfb\x74\xed\xda\xb5\xe4\x84\x2e\xed\x4c\xd3\xf6\x72\x29\x9c\x3b\x37\xbc\xfa\x5a\xc8\xd0\x46\x62\x35\xb0\xee\x66\x2f\x65\x79\x40\x59\x15\x74\x57\x34\x10\x1d\x75\x89\x58\x8f\x32\x84\x1c\xed\x73\x43\xab\xaf\x34\xfc\x60\x8e\x31\xd6\x52\x87\xfc\xc4\xed\x9a\xe8\x37\xf5\x33\x8f\x35\xa5\x52\x4f\xbf\x6d\x26\xab\xe9\xc1\x67\x99\x9d\x1c\x48\x7c\x2c\x0f\xb1\xb5\x51\x6b\x15\xc6\xf7\x4e\xf7\xdd\x57\x90\xcc\x67\x7a\x04\x54\x6a\x8c\x53\xbf\xb1\x14\xd6\x57\xa5\x7a\x16\x56\xd0\xcd\x60\xe9\x0d\xfd\x98\xab\x04\x57\x5e\xdf\xd2\x78\xa6\x5d\x10\x93\x52\xca\xd4\x91\x7f\x52\xca\x40\x08\x21\x7e\xf1\x8b\x5f\x20\xfe\x98\x30\x75\xbd\x6c\x83\xc2\x24\x95\x4d\xfc\x32\x0d\x5e\xbd\x3c\xcb\x3d\xc8\x03\xe3\x6a\x53\xe5\xd1\xfa\xa6\x72\xdb\x04\x34\x25\x7d\x80\x51\x01\x69\x1a\x80\x14\xb7\x6b\xcc\xc0\x50\x66\x9b\xf8\x79\x71\xb9\xcc\x72\x9a\x5c\x16\x1c\x1d\xf3\xb4\xdf\x3d\x29\x0c\x43\xb5\xaa\xa2\x4e\x4f\x6f\x09\xc8\xc6\x99\x91\xd5\x13\x53\x03\xed\xb3\xdd\x93\xfa\x35\x37\x5d\xed\xd9\x48\xc6\x3c\x5d\x38\x20\x9e\x3b\x24\xa6\xfb\xdb\xe7\x4f\x8e\xaf\xfc\x4a\x46\x9f\x79\x68\xc5\xdf\x26\x0e\xa4\x94\x98\x9b\x9b\x43\xa3\xd1\xa0\x7d\xb3\x59\x9f\xa6\xbe\x41\xbb\xb6\x0a\x4e\x13\x63\xf4\x64\x32\xd3\x6d\x29\xd9\xa7\x1f\xff\xf9\x00\x2a\x7b\x66\x2a\x47\x93\xd8\x46\x2a\xc9\x48\xbe\xa6\xc2\x19\x89\x83\x12\x25\x96\x78\x75\x3d\x66\x1d\xd4\xce\xd1\x38\x3f\xe0\xb2\xfd\xc6\x96\xe5\x5f\xcc\xf5\x77\x2e\x00\x50\x1f\x7f\x4e\x9d\x48\xfe\xee\xbb\xef\xe2\xfc\xf9\xf3\xb4\x2f\x2e\xab\x0b\xb0\x0f\x44\x97\x8b\xe0\xd2\x54\xa6\x7b\x9d\x0e\x3a\x69\xb2\x84\x35\x15\x06\xae\x67\x48\x07\x88\x09\x0f\x90\xa6\x4f\xdd\x9b\x04\x84\xe9\xd7\x64\x25\x98\xb4\xb5\xc9\x92\x30\xd1\x6c\xd2\x90\x26\xe1\xee\xb2\x0a\x6c\xcf\xcd\x26\xac\x6d\x7d\xa2\x29\xf5\xfc\x7e\xfd\xeb\x5f\x27\x79\xf1\x44\x6e\x01\x68\x2c\x96\x83\x4b\x2f\xee\x58\xfa\xd1\x8a\x1f\xce\x01\xe8\x5d\x07\x48\x6d\x21\x45\x37\xfe\xc7\x34\x4b\x24\x8e\xe5\x35\x7c\x31\xf3\xab\x1d\x4b\x8f\x2f\x97\xc3\x49\xc6\xd8\x52\x6c\x71\x04\xf1\x99\xa4\xe2\xbb\xdf\xfd\xae\x88\xbf\x4b\x6c\x52\x12\x26\x01\x41\xc7\xbd\x6b\x3c\x25\xb8\x4c\xa6\xac\x42\x62\xd3\x28\x26\xe6\xe1\xf6\xdb\x6f\x4f\xf6\xe9\x23\x16\x1a\xd5\xb5\xc2\xf0\x9e\xe9\xbe\x4f\x17\x24\x2a\x5d\x26\x29\xd1\xda\xbb\xad\x96\xa9\x40\xa8\x1e\xb7\x48\x09\x0b\xc3\xda\x4b\xcc\xd0\x8b\x1b\xd7\xde\x3a\x3d\xb2\xfa\xb2\x64\xa9\xb3\x42\xd5\x76\x72\x4c\x4d\x4d\xe1\xb9\xe7\x9e\xb3\x4d\x48\xa0\x97\x99\xb6\x89\x0b\x4b\x9e\x8e\xc7\x66\x91\xa8\x72\x13\x7e\xd3\x40\x37\xe1\x77\x69\x0b\xd7\x64\xce\x52\x10\xb6\x72\xdb\x64\xd5\x93\xab\x1f\x74\x0c\xb9\xc6\x93\x69\x20\x9b\x04\x91\x6d\x90\xeb\x79\x2e\x2b\x42\xa7\xcf\x35\xc1\x74\xba\x4c\xd7\x3a\x1e\x5c\xbd\x7a\x55\x3f\x45\xbd\xcd\x18\x6b\x32\xc6\x96\xc0\xb0\xf0\x7e\xbd\xf5\xeb\xe7\x76\x2f\x7e\xaf\xe1\x87\x0b\x49\x2d\xb5\x9a\x12\xef\xcf\xd0\x07\x77\x4a\x51\xc6\x66\xca\x8a\x1f\x2e\x3c\xbf\x6b\xe1\x5f\xdf\x1b\x6c\xbd\x81\xd8\x0d\x97\x52\x36\xd5\x9e\x24\x00\xa8\xd7\xeb\x36\x25\x60\xea\x47\x1e\x65\x68\xb4\xb0\x5c\x03\x94\x22\x33\x49\x66\x00\xd1\xc1\xc3\x37\xdc\x70\x03\xdd\xa7\x5f\xde\x31\x57\x3e\x3c\xd4\x2c\xa6\xf7\x6d\xe8\xef\x97\x98\x4f\x22\xb6\xec\xac\x8b\x6f\x69\x7c\x84\x01\x2d\x2f\x5c\x7a\x7d\xcb\xf2\x2f\xd6\x3c\x31\x85\xc8\xda\x50\x27\x78\x05\x88\xa4\xbf\x78\xfd\xf5\xd7\x15\xed\xa6\x49\x6d\x32\x43\x5d\x70\x59\x93\x83\x6a\x3f\x9b\xb9\x6b\x13\x52\x26\x0d\x6c\xd2\xbc\x3a\x0d\xae\xc9\x61\xc2\xa3\xe7\xd1\x7e\xba\x70\xdb\x84\x8a\x0d\xb7\x4b\x48\x99\x92\x49\x28\xe4\x49\xae\xc9\x6d\x9a\x1c\xa6\x3e\x09\xf4\xd2\xec\x52\x20\xa9\xfb\xf7\xdf\x7f\x1f\xf1\xfb\x4e\x02\xb1\xab\x22\xa5\x6c\x00\x98\x93\x1c\x53\xa7\x47\x9a\xbf\x7a\x6a\xef\xdc\x3f\x4d\x57\xdb\x97\x24\x4b\x2f\x29\xb2\xee\xc1\x33\x69\xf7\x1d\x80\x80\xc4\x74\xb5\x7d\xf1\xe7\x7b\xe6\xff\xe9\xd4\x68\xf3\x57\x92\x61\x2a\x5e\x2d\x4c\x82\xfe\x8c\x31\x71\xee\xdc\x39\x2c\x2c\x2c\xd0\xb1\x69\xeb\x93\xe9\x97\x26\x9b\x30\x11\xf4\xe8\x40\xbd\x31\x75\x6d\x6a\x2c\x35\xc0\x8f\x1c\x39\x02\xcf\xf3\xf4\x97\xd9\xca\xe5\x80\xd7\xf7\xcc\xf4\xdd\x5b\x0c\x59\x5d\x37\xc3\xba\x3b\x6c\x15\xe3\x34\xcb\x83\xf5\x00\x75\x7d\xbe\x58\x48\xc8\xc4\x7c\x8b\xef\x21\x71\x76\x64\xf5\x95\xab\xb5\xf6\x29\xb0\x24\x18\x9a\x5a\x45\x79\xe3\x8d\x37\x30\x31\x31\x91\x35\x60\xf5\x3e\x66\x09\x54\x13\x8c\x4d\x9b\xd9\x5c\x0d\xd3\x03\xce\x12\x6a\x54\x78\x98\xb4\x8b\x29\xdf\x65\x51\x98\xda\xb7\xe1\x31\x95\xb9\xb4\xb3\xcb\xc4\x77\xc1\x98\xc6\x20\x15\xdc\x54\x88\x53\x7a\x6c\xda\xd3\x84\x37\xab\x4d\xda\xbe\x09\x6f\x82\x4b\x08\x01\xce\xb9\x40\x14\x20\x6d\x4a\x29\x97\x18\x63\x9e\xe0\xf0\x2e\x0c\xb5\x5e\x9e\xab\x04\x73\x87\xaf\x54\xef\xd8\x3d\xdb\x77\xe3\xc0\x5a\x61\x90\x4b\xc6\x99\x7e\x92\x76\x6c\x45\x0b\x26\xc5\x52\x39\x98\x39\x37\xb4\xfa\xd6\xc9\xf1\x95\x97\xe6\x2b\xc1\x39\xd9\x7d\x75\x62\x09\x51\x8c\xa3\x0d\x40\x48\x29\xf1\xda\x6b\xaf\x51\xba\x5c\x34\x5f\x2f\x8c\x00\xc0\x3d\xf4\x0e\x1a\xdb\xe4\xb1\x0d\x46\x31\x34\x34\xa4\xce\x1f\x50\x47\xbf\x57\xc6\x96\xfd\xdd\x63\xcb\xfe\x51\x06\xc6\x53\xc7\xfa\x25\xc2\x40\xdb\xf0\x92\xec\x9c\x63\xd0\x5f\xf6\xd1\x3e\x22\x0f\x16\x9f\x62\xae\x7f\x06\x41\x32\x89\xe5\x52\x38\xf3\xc6\xe6\xc6\x73\x01\x97\x33\x6a\xbf\x06\x8b\xbe\x54\x1e\x00\x10\x33\x33\x33\x78\xe3\x8d\x37\x5c\x0c\xd1\x93\x6d\x10\x53\x58\x9b\x65\x40\xf3\x4c\x96\x4c\x16\x6e\x3d\xdf\x96\x5c\x34\x9a\xac\x0d\x8a\xcf\xd5\xa7\xbc\x34\x28\x18\x3a\x36\x4c\x79\xae\x49\x4c\x15\x92\x8d\xa7\x36\x3c\x3a\x8c\x4b\x50\xd9\x9e\x53\x96\x70\xb3\x59\x5b\xd6\xbc\xbf\xfc\xcb\xbf\x14\x8f\x3c\xf2\x08\xe2\xa0\x65\x0b\x91\x4b\xc1\x19\x63\x10\x90\xc1\x42\x25\x68\x3d\xbf\x6b\x71\xfa\xe4\xf8\xca\xeb\x5b\x17\x4a\xbb\x47\x1b\xfe\xd6\x0d\x2d\x6f\xd0\x0f\x58\x59\x02\xa2\x53\x90\xed\x85\xbe\x60\x6e\xba\xda\xbe\xf4\xfe\xc6\xd6\xd9\x85\x72\x70\x39\xe4\x98\x91\x90\x53\xf1\x57\x05\x17\x62\x61\xd4\x8a\xdb\x17\xaf\xbe\xfa\x2a\xe6\xe7\xe7\x6d\x63\xd4\x94\x4c\xbc\xce\x52\x48\x49\xa2\xaf\xd5\xbb\x18\x62\x14\x1a\x9b\x36\x6d\x4a\x9d\xee\xc5\x18\x2b\x33\x89\xca\x47\x66\x2b\xb7\x97\x03\x3e\xde\xf3\xfd\x13\x68\xaf\xc5\xab\x35\x6a\xb5\x31\x06\xe9\x38\x11\xd3\xad\x0b\xba\x8f\x23\x16\x28\xa7\x46\x9b\x2f\xce\x55\x3a\x17\xc0\xb0\xc0\xc0\x52\x1f\x4e\x0a\xc3\x50\x7c\xef\x7b\xdf\xb3\x3d\x78\x97\x60\x34\x4d\x02\x13\x0f\x68\x32\x4d\x02\x5b\x1b\xa6\x76\xd6\xf3\xe0\x4d\xed\xae\xb7\x4d\xda\x8e\x4b\x79\xd0\xfa\xeb\xe1\x8b\x4e\x5b\x96\x40\xb2\x59\xbc\x26\x3a\xf2\xf0\xc8\x65\x81\xe4\xed\x83\x6d\x7e\x58\x85\xd5\xf4\xf4\x34\x46\x46\x46\x02\x00\x60\xd1\x77\x6a\x17\x10\xef\xed\x00\xd0\xea\x70\xd1\x98\xee\x6f\xcf\xcd\xf6\x77\xce\x15\x04\xab\xfa\x21\xeb\xf7\x04\xf3\x25\x80\x90\xcb\x76\xbb\x20\x57\x42\x2e\x1b\x12\x68\x48\xc8\x05\xc6\xd8\x02\x24\x16\x10\x59\xd4\x4b\x9a\x72\x0c\x1a\x8d\x06\x5e\x7b\xed\x35\x9b\x25\x65\xeb\x83\xab\xbf\xb6\xfb\x04\x87\xfa\xe8\xb4\xed\x01\x65\x4d\x1c\x7e\xf0\xe0\x41\x25\x08\x3c\xe5\xa6\xd4\x5a\xde\xe8\xe6\x45\xff\x0e\x26\x99\x9f\x3e\xc9\x48\x59\x0f\xfa\x2e\xae\xae\x60\xa1\xc1\x65\x53\x04\xa4\x5b\x4d\x62\xa5\x14\xce\x9c\x1c\x5b\x79\x41\x44\x2e\xca\x82\x94\x32\x65\x6d\xcc\xcd\xcd\xe9\xfd\xb0\xf5\xcb\xa5\xbd\x4d\x83\xc5\xe5\xca\xd9\x84\x91\xcb\xbc\xa5\xb0\x36\x7a\x5d\x78\xe9\x40\x06\xb2\xdb\xd4\xeb\x99\xca\x4c\x30\xd4\x2a\x70\x09\x1b\x13\x2c\x08\x2c\x2c\x30\xa6\xfe\x98\x60\xa9\x75\x67\xa2\xdb\xc6\x5b\x1b\x7d\x79\x60\x4d\x29\x05\xfb\xfd\xef\x7f\x5f\xfc\xce\xef\xfc\x0e\x1f\x1d\x1d\x0d\xb4\x80\xa9\x40\x2c\x38\x10\x59\xc6\x0b\x12\xa8\x76\xb8\x28\x07\x05\xe6\x2b\x1c\xf1\x66\xae\x36\x63\xac\x09\xa0\xc9\xc0\x1a\x31\x7c\x43\x4a\xd9\x64\xda\x07\xb3\x9b\xcd\x26\xfe\xf1\x1f\xff\xd1\x35\xf1\x5d\xd6\x60\x1e\x8b\xd1\xf8\x9b\xbc\x55\x67\x60\x00\x25\xc4\xf8\x60\xc6\xc6\xc6\xd4\x5b\xb0\x1c\x80\x2f\xa5\x2c\x6f\x5b\x28\x1d\xd8\xb0\xea\x1d\x48\x9b\x0f\x32\x3e\x84\x58\xc6\x71\x8a\xe8\xe0\x92\x64\x47\x1c\x93\xa9\x3d\xfb\x6a\x5b\xae\xfa\xf0\x92\xda\x3c\xa3\x2a\x48\x40\x9c\x1e\x59\x7d\x71\xa1\x12\x5c\x92\x90\x0b\x90\x91\x8b\x12\x9b\x87\x62\x65\x65\x05\x3f\xfd\xe9\x4f\x4d\xfd\xc9\x62\x96\x2d\x99\x06\xb1\x2b\xb9\xf8\x4a\xdb\x33\x4d\xc2\x3c\xb4\x64\x69\xd1\x3c\x38\xf2\x08\x0c\x3d\xcf\x56\x66\x6a\xdf\x04\x9b\xd7\xea\x33\xe1\x73\x59\x64\x36\x8d\x4b\xfb\x67\xeb\x93\x0d\xd6\x54\x9e\xc7\x52\xe1\x4f\x3c\xf1\x04\xee\xbb\xef\x3e\x8c\x8c\x8c\x04\xb1\xb2\x54\x71\xb7\x36\xa2\xf8\xc4\x12\xba\xe7\x69\xe8\xaf\xc6\x0b\xc6\x58\x3b\x8e\x5f\xb4\x62\x65\xd8\x92\x52\x26\x9b\xbd\x00\x04\x2b\x2b\x2b\x4a\x68\x64\x29\xc0\x2c\x4b\xd4\xa5\x08\x60\x82\xcd\xfa\xae\x8a\x9e\x7a\x1a\xbb\xf5\xd6\x5b\xf9\xc0\xc0\x80\xaa\xe7\x01\xf0\x8b\x82\x57\x77\xcd\xf6\x7d\xbc\x28\x58\x95\xe9\xb1\x0a\x68\xa7\x1b\xa1\x7b\x52\x57\xf7\x03\x6c\xdd\x65\x29\xc6\xc8\xb5\x16\xf4\x50\x87\xff\x34\x22\x6b\xe3\x57\xb2\xeb\xa2\x34\x10\x49\xe9\x00\x80\xf8\xd6\xb7\xbe\x65\x1b\xa0\xa6\x7e\x52\x06\xda\xea\x50\x18\xd7\xe4\x33\x69\x30\x5a\x66\x83\x73\x4d\x78\xd7\xc4\xc8\x6b\x6d\xb8\x06\x91\x0b\x87\x89\x5e\xd3\x00\x73\x69\x71\x0a\xeb\xaa\x67\xa2\xd7\x96\x97\x35\x76\x5d\xb0\xb6\x6b\x75\x6f\x52\x2c\x59\x5a\x1d\xcd\x66\x93\xff\xcb\xbf\xfc\x8b\x78\xe8\xa1\x87\xf8\xc8\xc8\x88\xda\x6b\x91\xb8\x2b\xe8\x7e\xa8\xc9\x53\x31\x42\x00\x88\x57\x65\x04\xba\x9f\x7e\x0c\xe2\xeb\x00\x80\x10\x42\x88\xe5\xe5\x65\x7c\xe7\x3b\xdf\xc9\x52\x80\x26\xa1\x6a\x1b\x1b\x36\x58\xa3\x22\xf0\x48\x86\x0d\x99\xb1\xc1\xd1\xd1\x51\x1d\xd6\x03\x50\x1e\x6c\x7a\xe3\x63\xcb\xc5\xdb\x10\x9f\x5c\x1e\x31\x22\xfa\x95\x7a\x94\x34\xca\xd0\x0b\x53\x1b\xba\xa2\x57\x4f\xf4\x78\x48\xca\xa5\x11\x17\x86\x56\x5f\x9b\xab\x74\x2e\xa2\xfb\x59\x83\xe4\xb0\xe1\x78\xe7\x9c\x89\x6e\x9d\xb1\x2e\x09\x6b\xd3\x6c\xae\x7a\xa6\xc9\x6e\xd2\xa8\x94\x2e\xd7\x80\x37\xd1\x6f\x4a\x74\x70\xbb\x34\xb7\xfe\xeb\xb2\x0e\x5c\xbc\xb3\x4d\x72\xca\x8b\x3c\xb0\x59\x7d\x73\xc1\xb8\x9e\x5d\x9e\xb6\x5d\xfd\x33\x69\x64\x18\xca\x4c\x6d\xea\xf9\xfc\xf1\xc7\x1f\xc7\xea\xea\xaa\x78\xf8\xe1\x87\xa1\x36\x6a\x21\x12\x04\x1c\x91\x25\x91\x58\xed\xf1\x78\x57\x74\xf7\xfc\x69\x1f\xcc\x76\x3d\x37\x4a\xa7\x4d\x19\xb8\x14\x86\x4b\x18\x71\x3d\xc6\xe1\x1a\xa0\x46\x64\xf1\x47\x67\xd4\x40\xf5\x01\x94\xb7\xcd\x97\x0f\xf7\x75\x0a\x9b\x63\xa7\x04\xc9\xd7\xaa\x80\xe4\x3a\x79\xb1\xd5\x78\xbe\x46\x77\x55\x25\xca\xd6\x23\x1d\xd1\x75\xd3\x0f\x17\x4e\x8d\x36\x5f\x91\x3c\x0a\x16\x49\x29\x9b\xd0\xac\x8d\x33\x67\xce\xe8\x7d\xb0\x69\x09\xca\x94\x3c\x03\x37\x8f\xe6\x32\xb5\x97\x67\xd0\x51\x38\xda\xae\x69\x40\xeb\xb0\x26\xe1\x41\xf1\xba\x12\xe5\x97\xcd\xb2\xb0\x59\x05\x26\x7a\x69\x9e\x8e\x2f\xaf\x55\x95\x25\xd8\xb3\xac\x1b\x9b\x40\x77\xf5\xc3\x25\xa0\xf5\x5f\xdb\x64\x4b\xb5\x13\xef\xe4\xe4\x3f\xfd\xe9\x4f\x31\x31\x31\x21\x1e\x79\xe4\x11\x30\xc6\x44\x7c\xec\x44\x72\xf8\x8f\x76\x10\x10\x18\x63\x42\xbf\x06\x80\x77\xde\x79\x07\x27\x4e\x9c\x70\xd1\xe9\x1a\x37\xb6\x44\x79\xe7\x52\x2e\x49\x3f\x4d\x16\x87\x4d\x13\xa4\x1e\xf6\xcd\x37\xdf\xac\x0f\xb4\xe8\xa8\xb4\x90\x55\x77\xcc\x97\xef\xe4\x12\x3e\xd0\xdd\x2a\x4b\xf7\x79\xc5\x6b\x29\xa9\x3b\x3d\xa5\x96\x61\x13\xd8\xee\x57\xe7\xaf\x6c\x68\x9f\x9c\xaa\xb6\x2f\x40\x3b\x37\x14\xf1\xeb\xf2\x2b\x2b\x2b\x78\xf9\xe5\x97\x5d\x56\x80\x9e\x6c\x8c\xd6\xfb\x9e\x35\xc8\x4d\x75\x8d\xcc\x26\x65\xfa\x64\xb4\x69\x3b\xd3\xaf\x9e\x6c\x13\x26\x8b\x16\x1d\xde\xd5\x8e\x4b\xc3\xdb\x26\xa8\x4b\x38\xdb\x60\x8d\x63\xcc\xd0\xbe\x49\x30\x67\x69\x55\x9a\x47\xad\x21\x9b\xe6\x76\xd1\xa9\xf2\xf2\xc2\x02\x80\x88\x8f\x71\xc0\xa3\x8f\x3e\x2a\xee\xb8\xe3\x0e\x3e\x34\x34\x24\xb6\x6c\xd9\x92\x94\xab\x77\x53\x94\xc0\x00\x80\xd9\xd9\x59\x5c\xb9\x72\x05\x2f\xbe\xf8\xa2\x6b\x72\x53\x45\x61\xa2\xc1\xd4\x5f\xd3\x78\x00\xc9\x33\xc2\xd2\x7d\x1c\xae\x01\x97\x42\xbc\x7d\xfb\x76\x45\x6c\x24\x38\x24\xfc\xfa\xaa\x37\x3a\xbc\x52\x3c\xac\x26\x39\x43\x5a\x68\xa4\x56\x4a\xe2\x13\x9d\xd3\x79\x88\x5d\x14\xcd\x8b\x51\x01\xd3\xf8\xbe\xe5\xc9\xc6\xe9\x91\xe6\x6b\x41\x01\x73\xf1\x2a\x4a\xb2\xfc\xca\x18\x13\x67\xcf\x9e\x75\x31\x42\xcf\xe7\x04\xc6\x65\xa2\xd9\x18\x6e\x62\xbc\x6d\x60\xc3\x92\x6f\x1a\xc8\x36\xed\x4e\x07\x49\xa6\x66\x20\xf5\xb3\x04\x01\xa5\x8f\xf6\x91\xe2\x31\xd1\x9c\xa5\xe1\x69\x1b\x26\x61\x07\x03\x1c\x6d\xd7\x54\xae\x97\xb9\x04\xae\x89\x2e\x13\x6f\x4d\xf8\x6d\xcf\xcc\x84\xd7\x7a\xff\xe2\x8b\x2f\x8a\x42\xa1\xc0\x8b\xc5\x22\x00\x60\x60\x60\x00\x07\x0f\x1e\xc4\x33\xcf\x3c\x23\xca\xe5\x32\x6f\xb5\x5a\xa2\x5c\x2e\xf3\x20\x08\x10\x04\x81\xa9\x5f\x59\xfd\x35\x8d\x39\x13\x1c\xa5\xdb\x95\x92\xb1\xa6\x5c\x15\xda\x80\x6d\x92\x24\x04\x8d\x8c\x8c\xe8\xc8\x7c\x00\x95\xad\x0b\xa5\x43\xa5\x80\x8f\xda\x96\x51\x99\xe1\x26\xb5\x77\x23\xe5\xa2\x90\x4a\xf1\xe6\xb1\x99\xfe\xf6\xc4\xe5\x0d\x6b\xa7\x10\x2f\x4f\x41\x7b\x65\x7e\x65\x65\x05\x2f\xbd\xf4\x52\x5e\x0b\x41\xef\x9b\xde\x17\x97\x85\x60\x9b\x28\xc2\x52\xcf\x84\xd7\xd6\x4e\xd6\xe0\x33\xd1\x9e\x57\x28\x01\xf9\xfa\x60\x82\xcd\xcb\xcb\x3c\x1a\x4f\xa7\x8f\x4e\x3e\xbd\xcc\x84\xd7\x35\xf9\x5d\xf9\x2e\x21\xa3\xb7\x9f\xb7\xdd\xbc\x42\xcc\x26\x24\x93\xf2\x30\x0c\x11\x86\x21\x00\xa0\xd5\x6a\x61\x7a\x7a\x5a\x00\xe0\xad\x56\x4b\xa8\x3c\x47\xbf\x00\x00\x1b\x37\x6e\x44\xbd\x5e\xb7\xd2\x75\xe1\xc2\x05\xdb\x7c\xc8\x12\xaa\x4e\x78\xdd\x55\xa1\xda\x0b\xe8\x1d\x4c\x00\x80\x6d\xdb\xb6\xf1\xf8\x2b\xd9\x3c\xc6\xe1\x17\x24\x2a\xbb\xe6\x62\x37\x25\xd9\xdd\x29\x53\x2f\xb3\xa5\xf7\x66\x74\xef\x6c\x82\x26\xed\xe6\x48\x84\x0c\xed\x8b\x1b\xd7\xde\x5a\x2d\x8a\xe4\xfc\xd0\xf8\x8b\xf2\x7a\x6c\x43\xef\xcf\x7a\x92\xcd\x54\xcb\xd2\xa4\xa6\x7b\x9b\x25\xb0\x1e\xe1\x90\xa5\xf1\x28\xce\x3c\x1a\xdf\x94\xef\x6a\x9b\x5e\x9b\x84\x0f\xad\x47\x85\x8d\x4d\x43\x52\xdc\x2e\x3a\x29\x8c\x09\xb7\xed\xda\x45\x17\xb4\x7c\x97\xa0\x4f\xa5\xbe\xbe\x3e\xbe\xba\xba\x2a\x0e\x1c\x38\xc0\xe3\xef\xc4\x9a\x68\xc3\x9b\x6f\xbe\x89\x85\x85\x05\xcc\xcc\xcc\xd8\xf0\x99\x68\xb6\xc1\xf5\xa4\xcf\x7f\xfe\xf3\xa8\x54\x2a\xe8\xeb\xeb\x33\xb5\x2f\x18\x63\x58\x5e\x5e\xe6\xcd\x66\x13\xaf\xbe\xfa\x2a\x96\x97\x97\xd5\x91\x12\x14\x9e\x8e\x9d\x2c\x85\xca\xe9\xce\xd1\x2c\x4d\x04\x00\x38\x70\xe0\x80\x2a\x4b\x04\x47\xa5\x5d\xa8\x0f\x37\xfc\xc3\x80\x16\x14\x4d\x56\x43\xba\x1b\xcd\x55\x92\x60\xd1\x0b\x6b\xe9\xe3\xd6\x92\xc3\x4c\xa2\x25\x59\x99\xb8\x2a\x12\xc0\x8a\x1f\xce\x4d\x0c\xae\xbe\x0d\xd6\x3d\x3f\x54\x09\x0d\x00\x38\x75\xea\x94\x4e\x73\xd6\x20\x37\xf5\x1b\x70\x0f\x4c\x10\x38\x97\x50\xa0\x93\x2f\x4b\x33\xb9\xb4\xae\xcb\x8c\x57\x38\xf2\x68\x52\x97\xa0\xc8\xa3\x99\x4d\xf7\x79\x84\x8f\xad\xcc\x66\xfd\x50\x3a\x6c\xb8\xf2\x6a\xcb\x3c\x34\x65\xf2\x6b\x74\x74\x14\xb7\xde\x7a\x2b\x06\x06\x06\xd4\x5b\xa8\x00\x80\xf8\x55\x0b\x75\x0d\x20\x8a\x57\xdc\x7b\xef\xbd\x68\xb7\xdb\x98\x9d\x9d\xc5\x99\x33\x67\xf8\xa9\x53\xa7\xb2\x84\x47\x4f\x9b\x34\x1d\x3b\x76\x8c\xef\xd8\xb1\x03\xe5\x72\x39\x09\xa8\xd2\x5f\x85\x57\x4a\x89\x6a\xb5\x2a\xaa\xd5\x2a\xee\xbf\xff\x7e\xd1\x68\x34\x70\xf6\xec\x59\xbc\xfb\xee\xbb\x58\x5a\x5a\x72\x59\xa4\x2e\xeb\x51\x00\x69\x8b\xc3\x26\xad\x53\x48\x8a\xc5\x22\xdf\xb8\x71\xa3\x5e\xe6\x41\xa2\x3c\xb6\xec\xef\x2c\x07\x7c\x3c\xf9\x92\x1a\x74\x37\x44\x7d\x85\x5e\x2d\xad\x46\x4b\x2b\xc9\x46\xb0\x18\x52\x3f\x7f\x40\x9d\xcf\xa8\xbf\x2c\x3b\x59\x6b\x9f\x9d\xaf\x04\x17\x11\x2d\xbf\xaa\xd8\x86\x00\x80\xcb\x97\x2f\x63\x65\x65\x45\xef\xa8\xce\x0c\x9a\x4f\xfb\x69\x13\x32\x2e\xe1\x60\xc2\x47\x61\x4c\x83\xde\xa4\xcd\xa9\xd6\xcb\x12\x14\xa6\x64\x12\x72\xb4\x9e\xcb\x34\xcd\xab\x11\x29\x4f\x6c\x82\x0e\xc8\xee\x93\xd1\xa2\x25\x79\x2e\x0d\x6c\x52\x72\x26\x1a\x4d\xe3\xd9\xa5\x14\x7a\xf8\x77\xe3\x8d\x37\xf2\x3b\xef\xbc\x33\xc1\x41\x3e\x83\xc0\x81\xd4\x0a\xa0\x5a\x11\x11\xa5\x52\x49\x6c\xde\xbc\x59\x6c\xda\xb4\x09\x37\xdc\x70\x03\x7f\xfb\xed\xb7\x95\x82\xcb\x12\x9e\x09\x0d\xbe\xef\xf3\x76\xbb\x2d\xfe\xe0\x0f\xfe\x80\x97\x4a\xa5\x54\xbb\xea\xf3\x8f\x3a\x1d\xf1\x92\xaf\x5a\xb9\x09\xd4\xf2\x6e\x7f\x7f\xbf\x38\x72\xe4\x88\xd8\xbb\x77\x2f\xbe\xf5\xad\x6f\x99\xfa\x9d\x47\x90\x03\xe8\xee\x56\x33\x69\x9c\x84\x49\x5a\x39\xdf\xbe\x7d\xbb\xee\x53\x71\x00\x3e\x93\x28\x6f\x59\x2c\xdd\xcc\x25\x2b\xcb\x78\x7b\x27\x15\x06\x89\x20\x00\x5d\x35\xa1\xc1\x8c\x04\x58\x3b\x46\x0d\xe8\x70\xd9\x9a\x18\x5c\x7d\xb3\x53\x90\xc9\x5b\x81\xda\x2e\x3a\xf1\xe6\x9b\x6f\xaa\x20\x92\xde\x07\xdb\x24\x36\x69\x79\x5a\xc7\xc9\x38\x52\xe6\xd2\x56\xa6\x89\x67\xa2\xc9\x64\x25\xd1\xf6\x69\x1d\x1b\x8e\x2c\x01\x08\x02\x4f\x69\xb6\x59\x9c\xa6\xc1\x6e\xc2\x43\x61\x6c\x7c\x35\x59\x65\x79\x27\x94\x0d\x6f\x1e\xeb\xc9\xd4\x27\x0a\x9b\xb4\xf5\xc5\x2f\x7e\x91\xd7\xeb\x75\x90\x09\x1a\xbd\x62\x21\xe1\x79\x21\xf3\x0a\x82\x7b\xd1\xae\x68\x88\x80\xcb\x40\x30\xa8\x53\xb9\x82\x78\x69\x55\x0c\x0d\x0d\x05\xf7\xdc\x73\x0f\x36\x6f\xde\x8c\x9f\xff\xfc\xe7\xb4\x3f\xd6\x7e\xff\xc6\x6f\xfc\x06\xb6\x6e\xdd\x9a\x6a\x5b\x4a\xe9\x31\x30\xdf\x0f\x59\xb9\x7f\xad\x50\xdf\xb6\x58\xda\xda\xd7\x2e\x0c\x72\x09\xaf\x53\x90\x8d\xa5\x72\x38\x73\x6d\xa0\x3d\xb5\xe2\x87\x4b\x01\x97\x2d\x30\x24\x2b\x8f\xfd\xfd\xfd\xe2\x2b\x5f\xf9\x0a\x4e\x9d\x3a\x85\x13\x27\x4e\x20\x0c\x43\x9b\x65\x67\x7a\x06\x00\x7a\xdf\x55\x31\x31\x3d\xf5\xf0\xcf\x9d\x3b\x27\x3e\xf5\xa9\x4f\x71\xad\xbe\xef\x09\x56\xdd\xb2\x58\x3a\x9c\x04\x38\x93\x53\x9c\x23\x20\x1a\xab\xd0\x63\x1b\x89\x10\x49\xc1\xb0\xee\x2e\xd1\xee\x5b\xb0\x53\x57\x6b\xed\x73\x88\x4e\x2b\x57\xfb\xf5\x05\x63\x4c\x84\x61\x88\xf7\xdf\x7f\x9f\x4e\x4c\x4a\xbb\xce\x0c\x13\x63\xe0\x80\x33\xc1\xd2\x64\x13\xc0\x2e\x81\xac\xd7\x33\xe5\x53\x1c\x36\x81\x62\xa3\xdf\xa9\x75\x8b\xc5\x22\x07\x80\x4e\xa7\x83\xf8\x1e\x9d\x4e\xc7\x65\x21\x28\x9c\x59\xda\xdc\x25\x10\x5d\xfd\xd5\x61\x4d\xfd\xb6\x3d\x2b\x3a\xe9\x4c\x16\x97\x4d\x60\xd3\x3e\x00\x88\x94\xdc\xe1\xc3\x87\xf9\xed\xb7\xdf\x0e\x20\x7a\x81\x13\x91\x86\xf7\x19\x98\xef\x09\x56\x19\x5b\xf6\x47\xb7\x2d\x94\x6e\x1c\x5d\xf6\x0f\x0e\xac\x15\xc6\x25\x80\xb6\x27\x96\xe6\xfb\x82\xf7\xa7\x06\xda\x6f\x5d\xaa\xaf\x9d\x5f\x2c\x07\x0b\x02\x68\x4b\xc8\x76\x2c\x78\x82\xbd\x7b\xf7\x8a\x8d\x1b\x37\xf2\xc7\x1e\x7b\x0c\x6b\x6b\x6b\xb4\xe9\x84\x2e\xce\x39\xbf\xff\xfe\xfb\xb1\x69\xd3\x26\xc4\x6d\x47\x3b\x4d\xc1\xfc\x72\x87\xd7\xf6\x4d\x57\x0e\xef\x9f\xaa\xfc\xe6\x60\xd3\x3b\xea\x87\x7c\x3b\x8b\x0e\xcc\xe2\x60\x68\x0b\x86\x46\xcb\x13\xe7\xaf\xd6\xd6\x9e\x79\x77\xac\xf9\x93\x89\xc1\xd5\xf3\x21\x63\xcd\x58\x80\xb4\x2b\x95\x0a\x6e\xbd\xf5\x56\x51\xa9\x54\xf0\xdc\x73\xcf\x71\x21\x44\x96\x1c\x48\xf1\x97\x06\x47\xf5\x4a\x46\x73\xf3\xcb\x5f\xfe\x72\x4a\xf2\x01\xf0\x37\xae\x7a\xa3\xb5\x96\xb7\xa7\xcb\x75\x10\xb3\x22\xf5\xd2\x0a\x7a\x85\x47\xd7\x32\x51\xd1\x90\xe4\xe5\xfb\x18\xc5\xe4\x40\xfb\xfc\x72\x29\x9c\x84\xf6\xda\xbc\x8a\x6f\x9c\x3c\x79\x52\xd1\xa9\xd3\x6f\x1a\x6c\x20\x30\x26\xc6\xd0\x3c\x53\xbe\x49\x9b\x52\xcd\x01\x52\x6e\x1a\xf0\x26\x5a\x68\x1b\x34\x9f\xe2\xa5\x65\x36\x2d\xcf\x3d\xcf\x43\x10\x04\xe2\xb6\xdb\x6e\xe3\x00\x70\xc3\x0d\x37\xa0\x58\x2c\x52\xdf\x98\x87\x61\x88\xf8\x18\x3c\x00\xe0\xf1\x4a\x95\x9e\x5c\x83\xca\x24\xf8\x4c\x7d\xc8\xea\x57\x8f\xd2\x42\xef\xf3\xcc\x12\x06\x79\xac\x1b\xa3\x15\x73\xf3\xcd\x37\xe3\xb6\xdb\x6e\x03\xa2\x09\x1b\x7d\x7d\x5e\xc2\xf7\x24\xab\xec\x9d\xae\x1c\xb8\xf9\x4a\xf5\x4b\x43\x2b\xc5\x4f\x7a\x21\xdb\x1e\xbd\xcc\xd9\x8d\xe3\x6d\x59\x84\x90\xd7\x64\x63\xd5\x13\x27\xcf\x0d\xaf\x7e\xe7\xcd\xcd\x8d\x9f\xcd\xf4\x77\x66\x10\x9f\x48\x07\x20\x18\x1a\x1a\x0a\x1e\x78\xe0\x01\x7c\xef\x7b\xdf\x33\xf1\x8a\x03\x10\x0f\x3c\xf0\x00\x1f\x1f\x1f\x57\x31\x14\x9f\x31\x56\xe6\x02\x95\xdd\xb3\x7d\xfb\x3e\x76\xb1\xf6\x27\xc3\x2b\xc5\xfb\xb9\x64\x75\x62\xab\x83\x09\x94\x39\x43\xad\xba\x56\xd8\xbc\x67\xa6\xef\xae\x1d\xf3\xe5\xdf\xbf\x30\xd8\xfa\xeb\x17\x76\x2e\xfe\xf3\x42\x5f\x30\x23\x21\x79\xfc\x2e\x4c\x70\xe0\xc0\x01\xf1\xcc\x33\xcf\x98\x84\x86\x73\x5c\xaa\x36\x6d\x13\x46\x7f\x08\x18\x1a\x1a\xc2\x83\x0f\x3e\x88\x52\xa9\xc4\x11\xbd\x9c\x53\x85\xc4\xe8\xe1\xab\xfd\x0f\x1e\x3b\xbb\xf1\x2f\x0a\x92\xf9\x89\xab\xa2\x99\x11\x89\x98\xd0\x0f\xef\x81\xd4\x45\x47\xda\x4a\x21\xcb\x2c\x01\x17\xed\x27\xf7\xce\x3f\xfa\xce\x78\xf3\x27\x52\xca\x4b\x8c\xb1\x49\xf5\x26\xac\x8c\xbf\x32\x6f\xe8\x38\x7d\x10\xb4\x6f\x36\x78\x9b\x59\xeb\xc2\x6f\x2b\xa7\xf5\x5d\x66\xb6\x71\xf0\x10\xdc\x34\x65\x4d\x68\xbe\x77\xef\x5e\x9c\x39\x73\x46\x9d\x07\x9b\x24\xb2\x6b\x31\xc9\x27\xa7\xb2\x09\x0d\x1e\x31\x9f\x69\x5b\x36\x1a\x4c\x93\xd2\x94\xef\xc2\x05\x0b\xac\xed\x19\x98\x60\x5c\x8a\xd0\x2a\x6c\x1e\x7e\xf8\x61\xfd\x7c\x19\x1f\x40\x79\xc3\xaa\x37\x7a\xcf\xb9\x0d\x5f\xd9\x31\x5f\xfe\x9a\x27\xf8\xe6\xe4\xad\x4b\xfd\xc5\x4c\xa8\x3c\xa8\x61\x1d\x2c\x97\xc2\x17\x5f\xde\xbe\xf4\x7f\x9c\x1c\x5f\x79\x2d\x60\xa9\x37\xb8\x83\xd9\xd9\x59\x3c\xf6\xd8\x63\x50\x4b\xb0\x2a\x7d\xee\x73\x9f\xe3\xe3\xe3\xe3\x8a\x26\x5f\x4a\x59\xf1\x43\x5e\xbb\xf5\xd2\xc0\x27\x6f\xb9\x3c\xf0\x67\xa5\x80\xef\x63\x71\x53\xa9\x57\xca\x55\x22\x73\x49\x42\x8a\xd9\xfe\xce\xbf\x3e\xb9\x6f\xfe\x7f\xbf\x3a\xd0\xbe\x28\x21\x1b\x4a\x78\xb4\xdb\x6d\xf1\xb7\x7f\xfb\xb7\x36\x6b\xda\xf8\xbc\x0a\x5a\x33\x82\x34\xad\x88\x56\x65\x6c\x75\x75\x55\xdc\x7e\xfb\xed\x0c\x40\x01\x40\x51\x4a\xd9\xef\x49\x36\x78\xe3\xd5\xea\x7d\x63\x0d\xff\xa3\x6a\x53\x57\x32\xf8\xb4\x8d\x5b\xdd\x7b\xfd\x8b\xf3\xc9\xde\xf3\xb4\x41\x42\xd2\x52\x29\xb8\xfa\xea\xf6\xe5\x1f\xaf\x7a\xe1\xfb\x8c\xb1\x59\x00\x2b\xea\x10\x93\x6f\x7c\xe3\x1b\x21\xa9\x69\xea\x8b\xca\xeb\xe9\x93\xc6\x5e\x61\xa8\xaf\xca\x75\x86\x4a\x43\x99\xe9\x44\x00\x1d\xbf\xc2\xcb\x60\x6e\x4b\xc7\xaf\xd3\x44\xdb\xd6\x93\xaa\x67\x82\x13\xf7\xdc\x73\x0f\x3f\x7e\xfc\x38\x76\xef\xde\x8d\xa3\x47\x8f\x32\x0d\xb6\x80\xc8\x3f\x4f\xbe\xed\xcb\x18\x2b\xa8\xbf\xb8\xbc\xa0\x60\xa5\x94\x4c\xbd\x7c\x75\xf4\xe8\x51\xfe\xd1\x8f\x7e\x14\x37\xdf\x7c\x33\x3b\x71\xe2\x84\x38\x78\xf0\x20\x9b\x99\x99\x61\x84\x06\x41\xae\xa1\x5d\xeb\xfd\xe7\x04\x4e\xe7\x15\x48\x3d\x0a\x4b\x79\xc7\x60\xe7\x2f\x7d\xf6\x3a\x3e\xfa\x0c\x65\xb5\x5a\xe5\x9f\xff\xfc\xe7\x59\xb9\x5c\x56\xbc\xf1\x21\x51\x19\x5e\x29\x6e\xfb\xcc\xa9\xc1\x3f\xdb\xba\x50\xfe\xe3\x82\x64\x75\x26\xd5\x71\x54\x5a\x2c\x2f\x19\xd2\x5d\x52\x18\x18\xf7\x43\xb6\x7d\xcb\x62\xf9\x8e\x62\xc8\x67\xae\xd4\xd7\x2e\x0a\xc8\x50\xd1\xd4\xd7\xd7\x27\x6a\xb5\x1a\xce\x9f\x3f\xaf\xd3\x2f\x8f\x1d\x3b\xf6\xff\x70\xf6\xae\x41\x76\x1c\xd7\x99\xe0\x77\xb2\xea\xd6\xbd\x7d\xfb\xf6\xed\x46\x77\xe3\xd5\x00\x1a\x0d\x12\x00\x1f\x06\x41\x12\xa0\x1e\xa6\x48\x91\xb2\x48\x8b\x92\x28\x5b\x23\x2b\x64\xf9\x21\xd1\x94\x25\x44\xcc\xce\x4c\x6c\x4c\x6c\x4c\xcc\x6e\x38\x66\x62\x37\xf6\xd7\xc4\xc6\xc6\xc4\xc4\xc6\xfe\x18\x8a\x72\x58\xa4\x45\x69\x2c\xcb\x61\x3b\x68\xeb\xcd\x87\x4d\x51\x12\x09\x80\x00\x08\x3e\xf0\x20\x1e\x0d\xa0\xd1\x68\x34\xfa\x71\xfb\xf6\x7d\xd4\xad\xca\xb3\x3f\x2a\x33\x2b\x2b\x6f\xd5\x05\xbc\x19\xd1\x7d\xab\x32\xb3\xf2\x71\xf2\xe4\xc9\x73\x4e\x9e\x3c\x49\x9a\xd3\x61\xe6\x8a\xcf\x34\x7a\xf0\x52\xfd\xb7\x0f\x5e\x1e\xf9\xdf\x83\x98\x66\xdc\xcb\xd7\xcd\xc1\x72\x27\xb0\x69\x16\xd1\x50\x4f\xec\xdd\xda\x28\xef\x9c\xaf\x77\x8f\xb7\xca\xb2\xc5\xcc\x31\x11\xc5\xbe\xef\xe3\xce\x3b\xef\xb4\xb9\x4c\xe4\x8c\x63\x66\x0c\x6c\xc2\xa1\x23\xed\x01\x64\x64\x11\x9f\x0f\x1e\x3c\x48\x48\x44\x94\x12\x11\x0d\x07\x11\x6d\x3e\x78\x79\xe4\x0b\x23\xa1\x3f\x4d\xd0\x37\x50\xd9\x67\x50\x90\x55\x60\x18\x9a\x92\x3d\x25\x0b\x27\x9b\x16\x5a\x00\xe0\xca\x58\xf7\xe4\xfb\x9b\x5b\xaf\xc6\x82\xaf\x11\xd1\x2a\x92\x5d\x95\x1e\x80\x98\x88\x68\x6e\x6e\xce\x9e\xa8\x79\xfd\xb1\x47\x53\x03\xc5\x8e\x73\x57\x45\x7b\xf2\xba\x84\xc4\x2e\xc7\x25\x56\x45\x69\xee\x90\xba\xe5\xbb\xc1\x26\x42\x2e\x0f\x66\x0f\xa8\x7e\x17\x00\xe4\xc4\xc4\x04\xb5\xdb\x6d\xf9\xd4\x53\x4f\x89\x2d\x5b\xb6\xe8\x8b\xb1\x3c\xe5\x27\xc5\x67\xe6\x12\x11\x95\x00\x94\x01\x94\x99\xb9\x42\xa0\x0a\x31\x97\x49\x62\x88\x80\x00\xa0\x32\x08\x25\x00\x25\x68\x05\x20\xa0\x89\x07\x01\x20\x21\x04\x0e\x1e\x3c\x88\xe9\xe9\x69\xdc\x75\xd7\x5d\xe8\x76\xbb\xb8\x71\xe3\x46\x11\x7c\xf2\xfa\x59\x34\xb9\x6d\x22\xe0\xc2\x5f\xc3\x43\xe4\x7c\x6f\x8f\x8f\xbd\x32\x16\x8d\xad\x5b\xb7\x79\x7e\xe2\x89\x27\x30\x31\x31\x01\x24\xc4\xb3\x0c\xa0\x3a\xd2\xf5\xb6\x7c\xea\xfd\xf1\xff\xb0\x65\x2d\xf8\x22\x31\x95\xa0\x70\x36\xc5\x71\x0b\xdf\xd9\x1a\x30\x55\x3a\x81\xe0\x31\xc6\x26\x5a\xc1\x3d\x52\x60\x76\xbe\x1e\xce\x81\x28\xd6\x4a\xd3\x91\x91\x11\x6e\xb7\xdb\x58\x5c\x5c\x04\x00\xf9\xf4\xd3\x4f\x0b\x35\x76\x3e\x11\x95\x01\x8c\xdc\xb9\x30\xfc\xd1\x0f\xcf\xd6\xff\xac\x1c\x89\x9d\xc6\xe5\x04\x00\x73\x63\xb2\x05\x31\x06\x4c\xfb\x92\x76\xb0\xb2\xd4\x26\xaa\xf4\xc4\xce\x7a\xa7\x54\xba\x3c\xda\x3d\xd9\x2b\x71\x17\x40\x0c\x40\x96\x4a\x25\xa9\x9c\x01\xd9\x04\xd5\x1d\x1f\x33\x06\xae\x3f\x8e\x9b\xc9\xe3\x00\xcc\x09\x3e\x1f\x40\x30\x1c\x7a\x63\xb5\x8e\xbf\x9d\x15\x00\x33\x1c\x86\x05\xd8\xa4\x46\xdb\xa6\xdc\x21\x1e\x56\x30\xbb\x2d\x89\x62\x54\xce\x8f\x84\x67\x7b\x5e\xe2\x2a\x4d\xed\xa6\x48\x20\x39\x29\x78\xf8\xf0\xe1\x22\xf9\x38\x4f\x47\xf0\x2f\x11\x43\x8a\xfa\x6f\xa7\xdd\x8a\xf8\x31\xa8\x2d\x45\x6d\xb7\xdb\x54\x14\x97\xa9\xe3\xe3\x1f\xff\xb8\x98\x99\x99\x81\x5a\x29\xf5\x9f\xde\xaa\xf3\xc1\x1c\xf8\x3d\x54\x82\x76\x3c\x5e\x5e\x97\x9b\x86\x1a\xf1\xf6\x52\x87\x37\x79\x11\x4f\x08\x89\x2a\x49\xae\x30\x51\xc4\x02\x2d\xe9\x51\x23\x2a\xd3\xb5\x4e\x4d\xcc\xb5\xeb\xde\x5c\x58\xa1\xc5\x5e\x85\x5a\xb0\x8e\x78\x03\xc9\x15\x00\xc3\xc3\xc3\xf2\xd1\x47\x1f\xc5\xb6\x6d\xdb\xc4\xdb\x6f\xbf\x8d\xc5\xc5\x45\x17\x86\x83\x60\x84\x9b\xa4\x01\xfd\x30\x2d\x82\xa1\x1b\x77\xb3\xf1\xe8\x2b\x7b\x7a\x7a\x5a\x28\x8b\xe8\x04\x66\x40\xa5\x14\xd1\xd8\x47\x2e\xd6\x7f\x6f\xf3\x5a\xf0\x79\x80\x7c\x42\xff\x22\x08\xe6\xf4\xc0\x26\xf5\xcf\x3a\x8d\xeb\xe5\x08\xd3\xf7\x5f\xae\xfd\xfb\xab\x23\xe1\x85\xb9\xd1\xee\x69\x50\x02\x47\xdf\xf7\xc3\x7b\xee\xb9\x07\xef\xbf\xff\xbe\x7c\xfc\xf1\xc7\x8d\x71\xa5\x9a\x63\xd5\x91\xae\xbf\xe5\xbe\x2b\x23\x4f\x0d\xf5\xc4\x6d\xfd\x7e\xf2\xd0\xcf\xa3\xea\x36\x18\xe2\x46\x36\xe7\xe1\x6f\x5f\x2d\x7f\xfe\xae\x85\xe1\xb7\x0e\xef\x68\xfc\x23\x93\x39\xae\x21\xbe\xfe\xf5\xaf\xe3\xaf\xff\xfa\xaf\x5d\x87\xc7\x36\x5c\x4d\x28\xf2\xc7\x91\x87\xc8\xf2\xab\x5f\xfd\xaa\x96\x8b\x35\x60\x83\x8d\xcd\x60\x7b\x39\xa6\xc9\x0c\x87\x01\x97\x7b\xd0\x49\x4e\x67\x9d\x38\x7b\x3c\xf4\xf7\xa1\xc7\xad\xf9\x91\xf0\x03\x4e\x0d\xbe\x8c\xed\x86\x3a\x5e\x6c\x77\x6a\xd0\x44\x85\x13\x97\xd7\xd7\x41\xf2\xb4\xcc\x29\xc3\x7d\x76\x11\xdc\xfd\x2d\x82\x6f\x5e\xd9\x45\x75\xf4\xc5\x7d\xe1\x0b\x5f\x10\xea\x06\x3d\x43\x30\xa0\x2d\x7a\x7b\x5c\xad\xac\xc9\xa9\xfa\x42\x74\xdf\xf0\x4a\xfc\x91\xa0\x25\xef\xf4\x7b\x3c\x4d\x8c\x1a\x18\x01\xc0\x3e\x40\x76\xdf\x93\x3f\x42\xc8\x84\x8e\xf4\x68\xbe\x57\xa1\xd3\xad\xba\x38\xd2\xd8\xe8\x1f\x6e\x8d\x79\x17\x7a\x15\x5a\x41\x7a\xb0\x30\x22\xa2\x68\xcf\x9e\x3d\x72\xc7\x8e\x1d\x78\xee\xb9\xe7\x06\xf5\xb7\x88\x10\x0f\x82\x6f\xde\x58\xca\x9c\xf4\x41\x22\x5d\x5e\x1d\x7d\xc4\xc8\xba\xbe\xd4\x07\x10\x80\x51\xdd\xb6\x5a\xbe\x73\xf7\x62\xf5\xab\x02\x54\x01\x90\x2f\x0f\x90\xbb\xf4\x39\x6c\xa4\x85\xeb\xc3\xa1\x77\xf7\x03\x97\x47\xfe\xe0\x1f\x46\xc2\xff\x16\x7b\xac\x09\xb1\xd8\xb0\x61\x83\x04\x80\x5d\xbb\x76\xe9\xb6\xfa\x48\xf4\x88\xd5\xbb\xaf\x55\x1f\x9a\x68\x95\x1e\x24\xed\xaa\x42\xdb\x3b\xd9\xf2\x89\xc5\x37\xb9\x2c\xaf\x79\x56\x9b\x10\x9e\xa4\xb1\x3d\xd7\x87\x7e\xf7\xcc\x64\xeb\xe8\x4a\x35\x32\xce\xaf\x84\x10\xb2\xc0\x4b\x7a\x1f\xc1\xcd\xdb\x8e\xcd\x00\x53\x87\x5d\xbb\x76\xe9\x03\x39\x5a\xcb\xec\x13\x23\x18\x6f\xf9\xbb\x3c\x99\xd8\x6f\x64\x1d\xf7\x58\xc1\x56\xd2\x98\x6d\x56\x47\x81\x6a\xde\x91\x32\x25\x0c\x34\x2a\xd1\xfc\xca\x50\x34\xcf\xe0\x0e\x21\x83\xac\xf2\xde\x7b\xef\x15\xca\x11\xf1\x20\xce\x21\x0f\xf9\xf2\x08\x8d\x5b\x4e\x1e\xa2\xdf\x94\x12\xe7\xc4\xbb\x6d\xb3\xe3\xf2\xda\x74\x4b\x2b\xb6\xde\x3a\xfd\xca\x57\xbe\x22\x86\x86\x86\xfa\x09\x46\x28\xeb\x23\x37\xe2\x3b\x37\x5c\xe9\x7d\x6a\x78\x55\x3e\xea\xf5\x78\x06\x09\xb1\x10\xa9\x69\x4d\x9f\x3d\xaf\x00\x48\x70\xa2\xe8\x0b\x88\x51\xa3\x98\x27\xfd\x9e\xdc\x57\x59\x93\x9f\x19\x9b\x8f\xe6\xbb\xc3\xe2\xf0\xca\x66\xff\x1f\x56\xb6\x96\x0e\x87\x55\xca\xec\x14\x94\xcb\x65\x79\xe8\xd0\x21\x9c\x3b\x77\x0e\x87\x0f\x1f\xc6\xca\xca\x4a\x51\xfb\x6f\x05\xae\x36\x4c\x5c\x18\xdf\x0c\x96\x79\x61\x10\x71\x11\x00\xa4\x7b\x7d\x69\x39\x16\xf5\xbb\xae\x0d\x7f\xba\x1c\xd1\x74\x06\x5f\x6d\xb6\x82\x90\xb5\x80\xce\x51\x56\x26\x3a\x3d\xe8\x04\xb1\x7d\xb9\xfc\x3b\x5b\xd7\x82\xbf\xbb\x3c\xda\x6d\xaa\x6d\x5a\xc9\xcc\xa1\x56\x60\x5b\x8e\xbf\x83\x92\x14\xf5\x99\xa5\xa1\x4f\x7a\x12\x75\xa3\x8c\xb5\xe4\x10\x6d\x6d\x0d\x5d\xbc\xae\x93\x52\x5b\xaa\x8c\xfc\xc2\x00\x11\x63\x43\xcb\xbf\x6f\xfb\x4a\x79\xdf\x4a\x35\x5a\x40\x3a\x86\x83\xb8\xe0\xcc\x02\xab\x39\x8e\x22\x04\x36\x05\x8c\x8c\x8c\xc0\xf3\xb4\x4a\x24\x41\xd0\x52\x4c\xd5\x89\x56\x69\x9a\x00\xdf\x86\x9b\x0b\x38\x58\x5b\x55\xda\x72\x54\xb3\x70\x29\xc5\x74\x28\xa7\x7a\xbc\x5e\xeb\x5d\xe8\x94\xe4\x8a\xd5\x39\x49\x44\x90\x52\xba\x7b\xe0\x79\x93\xcd\x16\xbb\x8a\xb8\x10\x37\xe4\x89\x03\x6e\x99\xc8\x79\x76\xdb\xe0\x96\x99\x47\x10\xec\x6f\xed\xe0\x72\x40\x99\xef\x7c\xdf\xc7\x43\x0f\x3d\x84\x3d\x7b\xf6\x08\xc0\xda\x2e\x04\x02\x8a\xb9\x36\x72\x23\xde\x3d\x79\x31\xfc\xfd\xe1\xe5\xf8\x09\x11\x63\x2a\xe1\x2a\x60\x2c\xf8\xd3\x3b\xb1\xc8\x50\xf9\x74\xc3\x2b\x49\x64\x75\x35\xa1\xe5\x91\xbe\xe2\xc5\x34\x33\xd4\x88\x67\x2a\x6b\xf2\xb1\xf1\xb9\xe8\x57\x37\xb6\x97\xbe\xb3\xbc\xcd\x7f\x23\x0a\xb0\x82\xf4\x0e\xd3\x68\xd7\xae\x5d\x72\xfb\xf6\xed\xf8\x8b\xbf\xf8\x0b\xbb\xed\x79\x93\xff\x66\xab\x5b\xde\x82\x70\xb3\xfc\x45\xa2\x49\x1e\xe7\x96\x29\x57\x89\x08\x9a\xf8\x56\x46\x3a\xfe\xd4\xb6\xd5\xf2\xc7\xf5\x4d\xf1\x36\xbe\xda\x26\x04\xfd\x4b\xbb\xab\xd6\xb3\x4e\x8b\x83\x50\x92\x98\xdc\x75\xa3\xf2\xb1\x2b\xa3\xdd\x0b\x48\xae\x4f\xd0\x36\x1e\xf6\xb8\xfb\x00\x2a\x1b\x9b\xa5\xe9\xb1\xb6\xbf\xcf\x10\x01\x87\xe3\x21\x7b\xb5\xb6\xb9\x77\xd3\x90\xec\x84\xd2\xe3\xec\x4b\x1a\xdb\xb2\x16\xdc\xfb\x9e\x5c\xff\x55\x2c\xa8\x89\x84\x58\x46\x87\x0e\x1d\x12\xdf\xf9\xce\x77\xb0\xbe\xbe\x3e\x90\xb8\xdb\x13\x4b\xbf\xe7\xae\x0e\xfa\xf8\x2f\x12\xd9\x4b\x00\xf0\xfd\x98\xaa\x23\x1d\x6f\x4b\xb6\xc1\xf6\x5b\xba\xfd\xaa\x59\x25\x9d\x4b\x5f\xbc\x0b\x3b\xaf\xfd\x9b\xe8\x37\x70\x63\xb8\x37\x1b\x0b\x36\x3e\x37\xa0\xac\xdf\x7a\xbd\x1e\xde\x7f\xff\x7d\x97\xcd\x2f\x12\x11\x8a\x10\x70\x10\x82\xe6\x95\x9d\x27\x7f\xe7\x95\x7b\xb3\xf6\xe4\x7d\x3f\x88\xa8\x99\xef\x3d\xcf\xc3\xc7\x3f\xfe\x71\xec\xd9\xb3\x47\x7f\xe7\x13\x51\x05\xcc\xd5\x52\x5b\x6e\xd9\xf6\x5e\xf7\xcb\xd3\x27\xda\xff\xef\xc8\x62\xfc\x75\x2f\xc6\x34\x25\x47\x02\xa0\xcf\x0e\x25\x2e\x1c\x35\x5a\xa5\xac\x21\x65\xf1\x2b\x5d\x21\x75\xba\x26\x36\x20\x08\xc6\x58\x79\x3d\x7e\x62\xeb\x99\xee\x7f\xdb\x79\xac\xf3\x1f\x6b\x4b\xf1\x5e\x48\xae\xc3\xf2\x9f\x59\x2a\x95\xc4\xd3\x4f\x3f\x2d\x94\xb3\x27\xbb\x1f\xae\x48\xe8\x12\xc8\x22\x91\xa5\x88\xab\x74\xc7\x25\x6f\xac\xf2\x70\xc4\x8e\x17\x4f\x3d\xf5\x94\xd0\x5b\xd4\x00\x7c\x02\x55\x36\xae\x97\x66\x2a\x3d\xb1\xdd\x2c\xda\x96\x4e\xc3\x18\x18\x19\x88\x59\xe8\x0d\x05\x3f\xe6\x74\xed\x04\xcc\xb6\x37\x31\x89\xe9\xe5\xca\x83\xbe\xa4\x1a\x2c\xd7\x81\x56\xfd\xc6\x6e\xa3\x16\x7a\x53\xa5\x98\xc6\x00\x80\x49\x13\x30\xa5\x33\xb7\xa6\x0c\x2b\x63\x49\xfb\xda\xd4\x3e\x75\xbe\xa5\xb5\x25\x90\x18\x6f\x95\xee\xac\xf4\x44\x1d\xc9\x98\x19\xd7\x85\x0e\xd1\xc8\x23\xd6\x03\xe5\xfb\xcc\x8a\x7d\xff\xfd\xf7\xeb\xfc\xba\x63\x7e\x25\x12\xf5\x6a\xcf\xdb\xa4\x1b\xca\x86\x2c\x6b\x02\x48\xb0\x60\x69\x29\x49\x75\x07\xec\x54\x47\x32\x23\x20\x12\xdc\x59\x1c\xee\x5d\xe4\x94\xdb\xc8\x70\x1c\xc8\x12\x3e\x97\x08\xba\xfd\x70\x91\x2f\x8f\x78\xb8\xc8\x6c\xff\xc1\xca\x93\x57\x4e\x5e\xfd\x2e\x51\x76\x91\xf9\x66\xe2\x49\x86\x98\x10\x91\xf8\xc4\x27\x3e\x81\xdd\xbb\x77\x6b\x3b\x8c\x00\x40\x05\xcc\xf5\xe1\x65\xb9\x7b\xe6\x58\xfb\x7f\x9b\xb8\xd4\xfb\x3f\xbc\x90\xef\x44\x8a\x84\x29\x7d\x66\x06\xbb\x30\xd7\x38\xc6\x4a\x3e\x54\x58\xd6\x77\xc9\x37\xd9\x93\x23\xd1\xd2\x0b\x89\xf1\xda\x52\xfc\xb5\xe9\xe3\x9d\xff\x3a\x39\xdb\x7b\x48\x44\x3c\x8e\xc4\x7a\x31\x20\x22\x51\x2a\x95\xc4\x63\x8f\x3d\x56\x04\x0f\x3b\xe4\x11\xf0\x3c\x4e\x65\x10\x2b\x9d\x57\xc7\xa0\xb1\x31\x65\x98\x33\x52\xc9\xaf\xb2\xce\x44\x65\xbc\x55\xba\xdd\xbe\xbe\x94\x2c\x42\x61\x6e\x14\xd4\x2c\x9c\x25\x9e\x73\xca\xd2\xa5\xf3\x58\x13\x6f\x95\x56\x0d\xbd\xed\x95\x9e\x18\x03\x50\xd1\xe7\x4d\x2c\x11\x28\xe9\x9c\xd5\x00\x00\x20\x00\x49\x44\x41\x54\xde\x88\x2a\xb5\xae\x37\x29\x98\x2a\xba\x7c\xad\xec\xcc\xc8\x25\xaa\x21\xc9\x94\xca\x2e\xdd\xb0\xea\x4f\xc4\xaa\xb4\x7d\xe5\x48\x8c\xfb\x92\x6a\xca\x22\xd5\xd7\xf1\xbf\xf9\x9b\xbf\x99\xc7\x19\x67\xe0\xec\x4e\x0a\x38\xcf\x7d\xc8\xab\x10\xd6\x27\xa2\x60\xac\x5d\x9a\x0c\x22\x31\x66\x58\xb1\x54\x8e\xcb\x4a\x1e\x0e\x12\x92\x01\xb6\x8b\x8c\xf6\x2f\xd0\x29\xc9\xa5\xd5\x4a\xb4\x08\x4a\xc5\x14\xfd\xf7\xfc\xf3\xcf\x0f\x62\xf1\xdd\x4e\xbb\x7d\x1d\xf4\x2e\xd1\x4f\x20\x5c\x96\xdb\x25\xb4\x79\xdf\xfc\x4b\x58\xed\x22\xa4\xce\x3c\x3f\xfe\xf8\xe3\xb8\xed\xb6\xdb\x60\x89\x26\x15\x30\xd7\x47\xe7\xa3\xfd\x3b\x8f\xb7\xff\xef\xe1\x15\xf9\xc7\x60\xae\xd8\x85\x30\x52\x51\x24\x73\x12\x59\xc9\xc7\x6a\x0d\x54\x39\xd9\xfc\x92\x89\x4b\x4a\x81\xf9\x55\x5f\x58\xe3\x1b\x74\xe5\x03\x5b\x4f\x77\xff\xeb\x96\x33\xdd\xcf\x8b\x88\xc7\x89\xa8\xca\xcc\x01\x12\xb1\x4a\x7c\xe3\x1b\xdf\x10\x53\x53\x53\xba\xea\x3c\x18\xe5\x71\x5c\x79\x1c\x9e\x0d\x97\x41\x62\x90\x9d\x5e\x34\x09\x4c\xdd\xfb\xf7\xef\x87\x7b\x78\x0c\x89\x47\xbb\x3a\x40\x22\xd5\x63\xc0\x5a\xc5\xc9\x9e\xc9\x29\x30\x60\x89\x09\x3a\xce\xca\xc7\xea\x3b\x4f\x52\xad\x14\x53\xd5\x32\x65\x77\xdb\xe8\x13\x91\x1f\x44\x62\x84\x18\xc2\x16\xff\x53\xfa\x65\x71\xfa\xe9\xb6\x09\xd8\x6e\xa7\xd5\x0e\xed\xf3\x57\xb7\x4f\x30\x02\xc1\x14\x20\x21\x1a\x9a\x58\xd9\x30\x2c\xe2\x00\x33\x13\x25\x6f\xe5\xee\xfb\xb5\x76\x54\xfc\x7a\xc7\xdb\xec\x49\xaa\x82\x35\xb5\x33\xcb\x97\x22\xc4\x9a\xf2\xea\x77\x0b\x98\xd6\x6f\xaa\xef\x50\x6f\xaa\xe3\xab\x95\x68\xbe\x95\x5c\xd2\xdb\x61\xeb\x62\xdd\x9c\x50\xb4\xd2\xe7\xb1\xac\xb9\xab\xb9\x03\x87\xbc\xfe\x0f\x42\xec\x9b\x11\x24\x9d\x3f\xaf\xad\x79\x04\x2a\x8f\xc0\xc8\x9d\x3b\x77\x02\xc9\x18\x24\x44\x43\x72\x7d\xfc\x72\xef\xa3\xdb\xdf\xed\xfe\x5f\xa5\x0e\x7f\x54\xcb\xdd\xb6\x11\x1e\x29\xf6\x2e\xe1\xac\x2d\xc5\xb4\x82\xb3\xad\x62\x32\xc3\x62\x2b\xe1\xd4\xf7\xac\xcb\x81\xe2\x4e\x32\x08\x46\x10\x31\xb6\x4c\xce\xf6\xfe\xd3\xb6\xf7\x3b\x7f\xe4\x85\x72\xd2\x26\x1e\x00\xc4\xdc\xdc\x9c\xb4\x74\x64\x79\x30\x70\x17\xb1\x42\x38\xe4\x7c\xeb\x7e\x73\xab\x9c\x4d\x6e\x60\x66\x9f\x18\xbe\x27\x29\x25\xc2\x46\x34\xe1\x94\x7e\xda\xa2\x8a\x12\x4d\x5c\x89\xdb\xfd\xd5\x1c\x08\x0b\x8e\x62\x91\x6c\xb9\x52\xea\xa8\xd8\x3e\x75\x0b\x00\xa2\x15\xc4\x1d\x26\x48\x7b\xf1\x35\x7c\xbc\xcb\xb0\x6b\xce\xc6\x26\x1a\x16\xc1\x31\xfe\x7f\x55\xde\x56\x49\xae\x74\x7d\xa9\x4f\xd2\xaa\x6e\x66\xf4\x07\x79\x38\x2e\xec\x17\x37\xf4\x0d\x98\x46\x38\x4d\x95\x49\x22\xa8\x77\xfc\x2d\x1e\x23\x48\x1b\x99\x62\x21\x59\xaf\x86\xc6\xd9\x84\xd8\x11\xaa\x9d\x06\x03\x04\xac\x0c\x45\x73\x91\xe0\x16\xac\x73\x29\x40\xe2\xc5\x5c\x08\xe1\x22\xd2\xcd\x10\x26\x8f\x9d\x75\x11\x68\xd0\xa4\x1e\xc4\x99\xe9\x74\x97\x63\xc9\x23\x1a\x45\xed\x2d\x7c\x3f\x70\xe0\x80\x38\x74\xe8\x90\x26\xda\x9a\xd3\xa8\x8d\x5d\x8b\x0e\x6c\x39\x13\xfe\x99\x1f\xf2\xdd\x09\xbc\x6d\x6c\x31\xfc\xb1\x79\x4e\x87\x49\x33\xbc\xae\xf0\xab\x75\x4f\x64\x0f\x9e\xfa\x26\xf9\x65\x45\x84\xfa\xd2\x01\x90\xe4\xb1\x0d\x73\xd1\xbf\xdd\x72\x36\xfc\x82\xe8\x25\x9c\x87\x6a\xaf\x38\x74\xe8\x90\x78\xec\xb1\xc7\xf4\x76\xa7\x1d\x5c\xee\x4d\xc7\xe5\xfd\xba\x71\xb7\xf2\x4d\xde\x18\x66\xda\x70\xfc\xf8\x71\x57\x24\x04\x13\x44\xd7\x97\x9d\x0c\xa1\xc8\xf4\xdb\x92\x4d\xc8\xca\xe0\x70\x18\x99\x5f\x0b\x64\x1d\x5f\x36\x3a\x7e\x6c\x8e\x73\xe7\x4d\x5e\x66\xc6\xca\x50\x74\xa3\xe7\x71\xcb\x19\xa6\x24\x3d\x55\x3c\x59\x69\x9a\x72\xa4\x74\xce\xe4\xcd\x7c\x0b\xac\x55\xa2\xc5\x9e\xc7\x11\xf7\xc9\xa5\x7d\xa1\x8f\xf3\x70\x07\xc1\x1d\x0c\x09\x40\x1e\x3c\x78\xd0\x78\x60\xd6\x1c\x47\x49\x52\xa5\x16\x7a\x9b\x00\x12\x06\x25\x6d\xbd\x0c\x5b\xa4\x4d\x07\x97\x0a\x43\x11\xe9\x9c\x76\x33\x12\xc2\xc1\x4a\x4c\xe1\xe4\x76\x2b\xa9\xcb\x76\x4e\xf3\x01\x83\x27\xa1\x9b\x3e\x28\xae\x48\x2e\x76\x75\x41\x45\x22\x4b\x11\xfb\x9c\xc7\xd1\x0d\xaa\x47\x3f\xcb\xfd\xfb\xf7\xeb\x7c\x89\x7d\x01\x50\x1b\x5e\x8e\xef\xdc\x72\xa6\xfb\xbf\x94\xba\xbc\xcf\x08\x1a\x16\x20\xb9\x0f\x7b\x13\xa2\x90\xcd\x93\x59\x36\xd3\xf8\xcc\xd9\x15\x1d\x97\x7d\xcf\x0d\x0c\x90\xc4\xf8\xf8\x95\xde\xbf\x9e\xbc\x18\x3e\xa6\x15\xa6\xca\x90\x49\xec\xdc\xb9\x53\x1f\xe1\xb6\x43\x91\xc8\x99\xf7\xdb\x97\x5f\xf9\xbe\x95\x00\xe4\xed\xb7\xdf\xae\xd3\x25\x00\x39\x3e\x3e\xae\xb3\x15\x89\x95\x19\x7c\xb7\x27\x2c\x03\x72\xa5\x1a\x2d\xc8\xc4\x40\xca\xa2\xc5\x16\x20\x0c\xf8\x94\x7c\x60\x60\xe3\xe0\xbc\xe6\x44\x2c\x4e\x60\xb5\x12\x2d\x44\xd6\xa4\x75\x26\xaf\x44\xb2\x58\x47\x4b\xd5\xde\x42\xb3\x1c\x2d\x18\xdd\x94\xae\x0f\x16\x07\x61\xb7\x0f\x94\x70\x84\x3a\x57\x9e\xf8\x04\x40\x12\x47\x37\x86\x7b\x97\x7b\xc2\x18\x54\x16\x85\x5c\x2e\xcf\xb6\x1c\x2d\x62\x0d\x71\xe4\xc8\x11\x79\xf0\xe0\x41\x7b\xa2\xf8\x9e\xa4\xca\x50\x28\xc6\x32\x62\x86\xc3\x51\x64\xb6\xac\xd8\x42\xba\x4c\x3e\x64\x81\xaa\x00\x21\x05\x47\xcb\xd5\x68\x9e\x13\xa2\xa1\x7d\x1b\x48\x00\xda\x3e\xc0\xed\x5c\x91\x78\x02\xe4\x4f\xe6\x41\x72\x71\xde\xb7\x83\xc2\xcd\x58\xe4\x22\x02\x34\x28\xaf\x00\x20\x9f\x78\xe2\x09\x11\x04\x81\xd1\x6b\x30\x73\xb5\xdc\xe1\x2d\x5b\xce\x86\x7f\x5a\x5e\xe7\x0f\x93\xca\x9f\xbd\x56\x42\xe9\x8f\x88\xad\x6d\xc1\x7e\x0b\xdd\x14\xd9\xd3\x01\x20\xd8\xbc\x49\x72\xfb\x5e\xba\xc8\x2a\xdb\x5f\x33\xb6\x80\xbe\xf7\x57\x07\x62\x86\x88\x30\x35\x39\xdb\xfb\xd7\x9d\xba\x77\xb9\xb1\xc9\x3f\x66\x39\x93\x89\x9e\x7a\xea\x29\xfc\xe0\x07\x3f\x40\xb3\xd9\x2c\xc4\xb7\x9c\x38\x77\xdc\x24\x00\xf9\x7b\xbf\xf7\x7b\x62\x6c\x6c\x2c\xc3\xc5\x58\x2e\x1f\xd0\x6e\xb7\xd1\x6a\xb5\xc4\xe2\xe2\x22\x5e\x7d\xf5\xd5\xc2\x32\x2d\x8f\xfd\x49\x1f\x88\x24\x98\xe5\xb5\x91\xee\x95\xf5\x20\x5e\xac\x77\xfd\xa9\xd4\xfd\x43\x4a\x49\x6d\x42\x93\xb1\x82\x66\xb2\x69\x84\x43\x53\x92\x63\x19\x8b\xb5\xde\xac\xa4\xf4\x4a\x0f\x4a\xef\x52\xd1\x8e\x78\x24\x80\x68\x3d\x90\x8d\xab\xf5\xf0\xdd\xf1\xf5\xd2\x6e\x10\x84\x61\x2e\x14\x2d\x32\xa6\x25\xfa\x19\x59\xe2\x9e\x31\xc4\xb4\xa4\xcf\x76\x49\x2e\xcd\xd5\xc3\x0f\x40\xfd\xf3\x2b\x67\x0c\x74\x30\xc4\x36\xef\x58\xbd\x0d\x5c\xf3\x6c\x1d\xbd\x16\x00\x84\x2f\xa9\x52\x89\xc4\x78\xd2\x9e\x14\x29\x6d\x62\xe1\x8a\x23\x09\x22\x5a\xc4\xc2\x32\xf8\xb2\x55\x1c\x00\xa3\xe7\xc9\xe6\x5a\x39\xba\x01\x42\x48\x48\xc5\x14\x22\x92\xa7\x4f\x9f\xb6\x3b\x54\x84\x80\x79\xf2\xf2\xad\x70\x1d\xee\x4a\x54\xc4\x41\xe4\xe5\xcd\x13\x37\xdc\xba\xf2\xca\x2e\xa4\xf8\xd6\xdd\x35\x3e\x33\x57\x04\xa3\x3e\x79\x31\x7c\x62\x78\x39\x7e\x02\xcc\xbe\x3d\x91\x13\x25\x9e\x86\xa5\x56\x62\x2a\x7e\x84\x09\x44\xa9\xb2\x33\xa3\xfc\x54\x93\xdf\x56\x6d\xe8\xf1\xc9\x9a\xd9\x58\x6e\x97\x4c\x82\x35\xa6\x56\x9e\x52\x97\xef\xdc\xfc\x41\xf7\x4f\xdb\x23\xe2\xff\x0c\x2b\x14\xea\xc9\x50\x2e\x97\xe5\x03\x0f\x3c\x80\x57\x5e\x79\x25\x4f\x7c\xcb\x83\x9d\x00\x20\x3d\xcf\x13\x1f\xfe\xf0\x87\xc5\xc6\x8d\x1b\xa1\xae\x1d\x05\x94\x5e\x40\xad\xd6\x66\x57\x02\x4a\xb4\x1e\x1a\x1a\x42\xa5\x52\x91\x13\x13\x13\x72\xe7\xce\x9d\xe2\xe2\xc5\x8b\x78\xf5\xd5\x57\xfb\x60\x7d\xf6\xec\x59\x1c\x38\x70\x40\x9b\x1c\x48\x00\x11\x03\x61\xa3\x1c\x2f\xce\x8d\x76\xdf\x1d\x59\xf0\xa6\x52\x9c\xce\xae\x92\xae\x57\x3b\x77\x01\x35\xba\x05\xa4\x5c\x78\x2c\x64\xe7\xf2\x68\xf7\x94\xb5\x28\x4a\xc7\x30\x52\x7b\xee\x0a\x41\xe8\xbc\xb7\x79\xfd\xcd\x99\xa5\xca\x83\xb5\xae\xbf\x09\x29\x98\x91\x39\xa7\xa2\xc7\xc5\xaa\x57\x4b\x9d\xc9\xf8\x64\x29\xc8\x95\xd1\xee\xc9\xc5\xe1\x70\x0e\x96\xb3\x6f\x5d\xff\x2f\x7f\xf9\xcb\x3c\x31\xdb\x1e\x2b\xe1\x4e\xba\xdc\x41\x53\x47\x8c\xf5\xbb\x60\x66\xbf\x1c\x89\x6a\x39\x12\xf5\xbe\x15\x47\xb7\xd4\x88\x25\x59\x0d\x4e\x6a\x7c\x47\xa6\x7f\x99\x0e\x23\x41\xeb\xd0\xe3\x66\xbb\x24\x9b\xc8\x9e\x8d\x00\x00\x7c\xf0\xc1\x07\x36\xbb\x59\xc4\xd6\x16\xb1\xb7\xee\x37\x45\xfa\x0f\xf7\xdb\x42\x16\xd7\xfa\x6e\x10\xd1\xb8\x59\x7c\x46\x3c\xa9\xd5\x6a\xf8\xa3\x3f\xfa\x23\xc3\xe1\x11\x51\x40\x44\xd5\xe1\xa5\x78\xef\xd8\xd5\xe8\xf7\x49\xa2\x4e\x4a\xa3\x69\x94\xa2\x0a\x53\xa8\x4f\x47\x91\x5e\xbf\x49\x16\xf2\xe8\x6f\x8c\xe2\x14\x48\x95\xa4\x86\x51\x64\x6b\x08\xd3\x67\xb3\x23\xa3\x38\x1b\x5d\x4f\x92\x0b\x20\x66\x31\xd4\x90\x8f\x4e\x5c\xea\x3d\x46\x40\x5d\x29\x74\x7d\x66\x16\x7b\xf6\xec\xb1\xaf\xd7\xc8\x83\x4d\x06\x71\xb7\x6c\xd9\x22\x3e\xfd\xe9\x4f\x63\xdf\xbe\x7d\xd8\xb2\x65\x8b\xfe\x2e\x50\xb6\x0e\x89\xce\xc7\xfa\x53\x8a\x59\xfb\x4e\x56\xbf\x52\xa9\x88\xbd\x7b\xf7\xe2\xa9\xa7\x9e\x12\x8f\x3e\xfa\x68\x86\x58\xad\xaf\xaf\x2b\xc9\x17\x52\xad\xba\xc9\x8d\xf2\x1e\x37\x4f\x6f\x6c\x1f\xee\x7a\xdc\x4c\x45\x05\x4b\x2c\x07\xcc\xe2\x67\x16\x3e\xbd\xfa\xb3\x22\xcb\x6a\x7c\x34\x71\x06\x31\x16\x87\x7b\x67\xe7\x46\xbb\x17\x40\x66\xd2\x46\xaa\x6e\x4d\x3c\xa4\xe2\x00\x3a\x00\x5a\xf3\x23\xe1\x85\x0f\x26\xda\x87\x25\x71\x64\xea\x66\x9b\x33\x54\xef\x7a\xbb\x5d\xd7\xad\x56\x02\x82\xe2\x94\xd4\x77\xcd\x40\x2e\xbe\xb3\xa5\xf9\xab\xae\xcf\x2b\xaa\x8e\x50\xf7\x9d\x88\x6c\x0e\xce\x15\xc9\xa1\x7f\x3d\x2b\xc2\x15\x76\x93\x0c\x9e\x47\x87\x0f\x1f\xd6\xa2\x8a\xa7\x06\xa6\xb6\xb1\x19\xec\xbe\x63\xa1\xfa\x84\xcf\xa2\x6a\xb3\x6d\x0a\x6c\x6a\xd5\x4a\xa8\x5c\x46\x64\xc9\x20\xaf\x25\x43\xc3\x46\x3b\xa0\x31\x14\xcf\xbe\x3d\xd5\xfc\x59\x2c\x70\x1d\xc9\x6d\x6d\x1d\x22\x8a\xe3\x38\x96\x4b\x4b\x4b\xb4\xba\xba\xca\xaa\x8d\xf6\xaf\x25\xec\x98\x3e\xd8\xe9\x59\x2a\x96\x4d\xb3\xcb\x70\xd3\xdd\xf7\xbc\xd5\xd2\xfd\xd6\x6d\x0b\x0a\xde\xed\x35\xca\x10\x95\xfd\xfb\xf7\x93\xda\x45\xf1\x90\x9c\x54\xad\x8a\x88\xc7\xb7\x9e\x0e\x9f\xaa\xae\xca\xdf\x22\x40\xd8\x5c\x9a\xb1\x11\x20\xeb\xd7\xd4\xe0\x5c\xa5\x69\x20\x9d\x3a\x8c\x4e\xe7\xbe\x5e\x1d\x93\x55\x2a\x21\x2c\x9a\x87\xd1\xcf\x69\xc5\x44\x69\x79\x69\xe7\x59\xf5\x9e\x82\x72\x5b\x6e\x6c\x8e\xfb\xbf\x8a\x2a\xa2\x01\x75\xf7\x0d\x11\xc5\xb5\x5a\x0d\x67\xcf\x9e\x85\x9a\xa8\xc2\x81\x03\x01\x90\xbe\xef\x0b\x29\x25\x7f\xfe\xf3\x9f\xa7\xf1\xf1\x71\x01\x80\xd4\x2e\x44\x00\x20\xf0\xa5\x18\xae\x85\xde\xf8\xf4\x4a\x65\xe7\xce\xe5\xca\xde\xed\x2b\xe5\x3d\x5b\x9a\xc1\xb6\x89\xf5\xd2\x78\x49\xd2\x50\xe8\x31\xa4\x48\xba\xa0\xdc\x03\xc0\xf7\x7d\x4c\x4c\x4c\xf0\xe6\xcd\x9b\xe9\xea\xd5\xab\x08\xc3\x50\x02\xc0\xf1\xe3\xc7\x59\xe9\xf2\x88\x99\x3d\x22\x0a\x18\x1c\xac\x57\xe2\xb8\xde\xf5\x26\x36\x35\x83\xdb\xcc\xc2\x87\x7e\x11\xdc\xf8\xe2\x30\x3d\xb0\x4d\xc1\x35\x35\x66\xf4\x3c\x6e\xfd\x72\xa6\xf1\x83\x6b\x23\xbd\xf7\x41\xb8\x41\x44\x0d\x24\x67\xb0\x7a\x48\x16\x47\xd6\x8b\xb4\xd2\x27\x96\x24\x38\x58\xae\x46\x6b\x1b\xd7\x83\x6d\x23\x1d\x6f\x73\x52\xa4\x36\xaa\x4c\x21\x97\x2e\x1e\x50\x0b\x48\xd6\xeb\x0d\x08\xe8\x79\xb2\xf3\xd6\xf6\xe6\x8f\x4e\x6d\x6e\xfd\x82\x05\xae\x01\x58\xa6\xe4\x9a\x91\x2e\x11\xc9\x67\x9e\x79\x26\xd6\xf0\x47\xff\x42\xa8\xe3\xc9\x35\x39\xef\x53\x92\xc6\x71\x8c\x43\x87\x0e\xe9\x13\xb1\x66\x05\x1c\xea\x89\xba\x27\x29\xc8\x4c\x17\xd3\x89\x54\x16\xce\xe8\x36\xb4\x58\x62\xef\x27\x6b\xc4\xcd\x14\xc0\x68\x97\xe2\x95\x9e\xc7\x19\xdb\x0d\x00\x72\x75\x75\x15\x17\x2f\x5e\xd4\x6d\x75\xdb\x9c\xd7\x87\x22\xd1\x25\xb7\xbf\xb7\x18\x8a\x88\x47\x9e\x98\x93\xc7\x86\xbb\x21\x93\x9f\x88\xcc\x29\x4d\x7d\x2e\x88\x99\xab\xc3\xcb\xf1\xee\xda\x52\xf4\xdb\x04\xf8\xf6\x0a\xa7\xb9\x3c\xed\xfc\x59\x07\xed\x31\x5e\x8f\x41\xb2\x00\x71\x66\x5c\xf4\xa9\x4e\x4e\xff\x59\x5c\x04\x65\x44\xca\xe4\x47\xed\xc5\x30\x43\x1f\xd7\xee\x1b\x7f\x2b\xae\xd4\xe5\x3b\xc7\xaf\xf4\x3e\x79\xa5\x2e\xe6\x90\x9c\x6e\x8e\x88\x28\xda\xbc\x79\xb3\xdc\xbc\x79\x33\xe6\xe6\xe6\x72\x61\x00\x00\x0f\x3d\xf4\x10\xf6\xee\xdd\xab\x2d\x2a\x93\xd3\xa2\x8c\x8a\x48\x7c\xdc\x6e\xbf\x63\xa1\xfa\xd0\xd4\x6a\xf9\xe1\x5a\xe8\xed\xf3\x24\x8d\x11\x10\x30\x10\x31\x71\xa7\x27\x78\x7e\x65\x28\x3a\x7c\x7e\xa2\xf3\xf2\x7b\x9b\xd7\x8f\xae\x95\xe3\x15\xb5\xf8\x44\xcc\x1c\x6e\xdf\xbe\x5d\x7e\xf9\xcb\x5f\xc6\xb3\xcf\x3e\x0b\x00\xe2\xae\xbb\xee\x32\xba\x05\x4a\x1c\xdc\xb4\x88\xa8\xd9\x13\xbc\x74\x78\xc7\xda\x4f\x37\xae\x07\x33\x9b\xd6\x4a\xbb\x6d\x78\xf7\x6b\x8a\x15\x81\x75\xce\x61\x91\x1a\x1b\x49\x88\x4e\x6d\x6c\xbd\x7e\x76\xb2\xfd\x16\x83\x1b\x84\xc4\xdc\x1c\x0e\xee\xa9\xef\x23\x65\x8a\xde\x24\xa2\x95\x46\x25\xbe\xfc\xfa\xcc\xea\x8b\x8f\x7c\x30\x56\xdd\xbc\x16\xec\xce\x6c\xb9\x66\x60\x9f\xfc\xea\x03\x70\x66\x18\x19\x88\x85\x0c\xdf\xdd\xb2\xfe\xda\xf1\xa9\xb5\x7f\x8e\x05\x16\x99\xb9\x41\x89\xc9\xbb\x16\x97\x8c\x8e\x05\xfd\xf3\x25\x43\x44\xf2\x94\x4e\xb9\xc1\x96\x29\x01\xf8\x41\x44\xc3\x42\x9d\x51\x21\xa4\xc4\x40\xe5\x86\x4d\x0a\x4c\x82\xa1\xc6\x2a\x3d\x23\xb2\x58\x88\x0a\x60\x3d\x90\x4b\x8c\xd4\xc1\x6a\x8e\xe6\xd7\x15\x31\xf2\xde\xff\x25\xf9\xdd\x50\x44\x50\xf2\x08\x81\x0b\xd8\x22\x45\x6d\x9e\x68\x64\x7f\x23\x91\xc0\x58\xee\xd8\xb1\x43\x23\x90\x0f\xa0\x42\x8c\xda\xf8\x95\xde\xa7\xbc\x1e\xa6\x00\x8b\x2d\xb6\x44\xbe\x64\xe1\xa1\x14\x69\xa1\x56\x21\x35\x99\x09\x29\x31\xcf\x70\x24\x8a\x58\xa4\xdc\x83\xad\x03\xc9\x32\x49\x36\x67\xc2\x7d\x98\xcb\x99\x23\x13\x6a\x97\x32\x18\xbd\x16\x7d\x26\x68\xf1\x26\x30\x2a\x50\x0e\xb2\x89\x08\x3b\x76\xec\x70\xe1\xa8\x61\x04\x00\x19\xb3\x7a\x66\xae\x80\x51\xab\x75\xbd\xc9\x4f\x9c\xdd\xf0\xe5\xcf\xbc\x3b\xf1\xcd\xdf\x98\x1f\xfe\x2f\xe3\xad\xd2\xe7\x83\x58\xec\xf6\x98\x26\x89\xa9\x2e\x18\xe3\x5e\x2c\xa6\x86\x22\xef\xc0\xd6\x46\xf9\xd0\x47\x2e\xd6\xff\xfb\xbf\x7a\x7b\xe3\x7f\xf9\x8d\xf9\xe1\x8f\xfa\x32\xb1\xd4\x54\x4a\x66\x9f\x88\xa0\x0e\x96\xc9\xf7\xde\x7b\x4f\x86\x61\xa8\xeb\xd7\xb7\xc9\x37\x41\x58\x59\x19\x8a\x66\x5f\xda\xbd\xfc\x57\x4b\xd5\xe8\xb2\xe1\xf8\x35\x31\xb5\x7a\x6f\x13\x58\x9b\xe0\x32\x01\x92\x58\x7e\x30\xd1\x3e\xfa\xab\x99\xd5\x1f\x46\x1e\x2f\x29\x4e\xc3\xdc\x79\x4c\x44\xf2\x9b\xdf\xfc\xa6\x7c\xe6\x99\x67\x6c\x45\x69\xa8\xf2\xac\x80\xb0\x38\x5f\x0f\xdf\xfb\xf9\xde\xe5\xbf\x9e\xdd\xd0\x39\x19\x0b\x8e\xb4\x28\xe4\x12\x0d\x7b\x2a\xb1\xe2\x90\xba\x25\xd9\x3a\xb2\x7d\xed\x67\xbf\xd8\xb5\xfa\x0f\x1d\x5f\xce\x01\x58\xa1\xf4\x42\xb3\x10\x80\x54\x97\x43\xdd\x4c\x0f\x27\x80\xc4\x03\x98\xd1\x46\x38\x58\x60\x82\x72\xde\xa3\x3d\x47\x0d\x01\xa8\x6f\x5f\xa9\xdc\x3b\xbd\x52\xf9\x4d\xc1\xe4\x69\xcd\x58\x66\xc1\x23\x38\x22\x8a\x2d\x8b\xa7\x79\x52\x8e\x23\x4b\x5c\x2e\x8e\x77\x7e\x7d\x69\x43\xf7\x38\x08\xcb\x44\xb4\xae\x29\xf3\x5f\xfe\xe5\x5f\xc6\x56\x2d\xb6\x98\xa5\xd9\xdd\x41\x4a\x5e\x76\xf2\xdb\xc2\xb9\x6e\x3d\x5b\xe9\x36\xf1\xb0\xf3\xe8\x7a\xec\x67\x72\x9e\xed\xb2\xd9\xf9\xde\x1e\x0c\x77\xc8\xf9\xc9\x27\x9f\x14\x23\x23\x23\xa0\xc4\xe9\x4e\x00\x46\xad\xdc\xe6\x1d\x9b\x3f\x08\xff\x8d\xd7\xc3\xa4\x51\xd0\x59\x30\xa6\x0c\x50\xd5\x93\xd6\xf4\x1b\x71\x25\xe9\x7a\xca\x66\x5b\x86\x60\xa6\xa5\xe4\xac\xa8\x9a\x3d\x47\x56\xc1\xa6\x44\x19\x6b\x79\x33\xec\xb1\xbd\x50\x10\x00\x11\x63\x43\xb7\x26\x8e\xb5\x47\xc5\x15\x22\xea\x42\xc9\xf4\xb5\x5a\x8d\xdf\x7e\xfb\x6d\x17\xb6\x98\x9c\x9c\x14\x5f\xfa\xd2\x97\xc8\xf7\xfd\x54\xbf\x03\xaa\x6d\x6a\x96\xa6\x7f\xfb\xd4\xf8\x7f\xd8\x75\x63\xe8\x7f\x0e\xa4\x98\x22\xa6\x94\xe8\x68\x0e\x5d\xb5\x47\x8b\x0e\x82\x51\x1e\x8a\xbc\x3b\x77\xac\x94\x1f\xae\xf6\x44\xf3\x6a\xbd\x7b\x29\x12\x1c\x01\x60\x4a\x1a\x2b\x0f\x1e\x3c\x48\x47\x8e\x1c\x61\x25\xae\x18\x20\x5a\xca\x4a\x5a\x2f\xc7\xbd\x2b\xa3\xdd\x2b\xf5\xae\x3f\x5a\xef\xf8\x13\x82\x13\x8b\x52\x50\x2a\xba\xa4\xa2\x63\xca\x71\x31\x01\x5d\x5f\xb6\x4e\x6e\x5d\xff\xa7\x5f\xdc\xb6\xfa\x62\xab\x2c\x2f\x00\xb8\xc6\xcc\x4b\x8a\x9b\xe8\x02\x88\xd6\xd6\xd6\x78\x76\x76\x96\x98\x99\xb6\x6f\xdf\x8e\x6a\xb5\x6a\xc6\x50\xe3\x05\x83\xb9\x1d\xc8\xf6\xc5\xf1\xce\xa5\x56\x10\xaf\x8f\x76\xfc\xb1\x72\x24\xaa\x94\xca\xa0\x0e\x0a\x30\x7a\x1e\x77\xae\x8c\x85\xa7\xff\xf9\xf6\x95\x17\xdf\xd9\xba\xfe\x8b\xd8\xc3\x1c\x11\x5d\x03\xa0\x2f\x35\x6b\x21\x71\x8a\x25\xbf\xf5\xad\x6f\xd9\x38\xad\x4b\x71\x71\x34\x23\xaa\xe4\x6e\xb9\x00\xc0\x47\x3e\xf2\x11\x93\x66\xc4\x15\x86\x28\xc7\xa2\x4a\x0c\x5f\x2f\x7d\x19\x02\xa1\x07\xd1\x5d\x0d\xad\x5d\x14\x13\xdf\xc7\xee\x01\x0c\xc8\x76\x49\x36\x60\x71\x1b\x4e\x3e\x57\x3c\xb0\xdb\x7d\x33\xf1\x23\x8f\x82\x62\x40\xde\x41\xca\xe3\xbc\x7c\xee\x2e\x4c\xd1\xf7\x6e\x5b\x01\x40\xd4\x6a\x35\x0c\x0f\x0f\x03\x29\x77\x17\x10\x50\x1d\x59\x8c\xf6\xfb\x5d\x9e\xd6\x4a\x4e\x13\xcc\x24\xcf\x72\xcf\xb6\x3e\x83\xd5\xd2\x4f\x8a\x10\xa4\x96\xa3\xd9\x31\x53\x1f\xa4\xc8\xef\x88\x3d\x36\xfe\x68\xe9\x39\x6f\x47\xcd\x48\xd6\xa9\x1f\xd9\x60\xf4\x5a\xf4\xc8\xd2\xb6\xd2\x1b\x52\x70\x43\x71\x51\x51\xad\x56\xd3\xbb\x1d\x19\x18\x7c\xe6\x33\x9f\x41\x10\x04\x56\xff\xa9\xb6\xa9\x59\x9a\xf9\xed\x53\xe3\x7f\x36\xb1\x5e\x7a\x02\x20\x91\x48\x60\xf6\x96\x28\x0c\x0d\xd3\x4a\x63\x7b\xf9\x2b\xc5\xb4\x7d\xdf\xd5\xda\x9f\x95\xa4\x18\x79\xf5\xf6\xe5\xef\x84\x3e\x2f\x29\xd8\x4b\x66\x96\x4f\x3e\xf9\xa4\x38\x72\xe4\x08\x3a\x9d\x0e\x2a\x95\x8a\xe1\x3a\x14\x67\xe0\x33\xb3\x7f\x63\xb8\x27\x7f\x7c\xc7\xd2\xfa\x1d\xd7\xab\x07\xef\x9e\x1f\x7e\x60\x62\xbd\x34\xe5\x31\xf9\x19\xfd\x86\x66\xf6\x88\xd1\xf1\x65\xeb\xca\x68\xf7\xec\xc9\xad\xeb\x6f\x5c\x1a\xeb\xbe\x13\x0b\x9e\x63\xe6\x05\x22\x5a\x22\xe7\xfa\xd2\xb3\x67\xcf\x9a\x4b\x92\x4e\x9e\x3c\x89\x47\x1e\x79\x44\x52\xb2\x55\xdb\xd1\xe6\xe0\xaa\xaf\xb2\x5d\x92\xe1\xb1\x6d\xcd\xc6\x07\x93\xed\x77\xa7\x56\xcb\xb7\xed\x5c\xaa\xec\x1d\x6b\xfb\x93\x95\x9e\xa8\x7a\x4c\xa2\xe7\x71\xb4\x56\x8e\x56\x16\x46\x7a\x97\x2f\x8d\x75\xce\x5d\x1b\x09\xcf\x87\x1e\x2f\x00\xbc\x08\xd0\x02\x80\x25\xa8\x9b\x10\x91\xe8\x9d\xec\xeb\x26\x8b\xe6\x87\x8e\x13\x40\xea\xc8\xa7\x88\x1d\xc7\xaf\x7f\xfd\x6b\xa9\xf7\xb9\xb5\x8e\x43\x30\xfc\x20\xa2\x1a\x99\x42\x2d\xb9\x8e\x12\xb4\x4a\xe2\x32\xb8\x99\x06\x05\xd8\xcc\x04\x30\x6b\x2e\x03\x02\x68\x97\xe2\x26\x1c\x8b\xd1\x9c\x76\xea\x8e\xb9\x22\xc1\x20\xe2\x51\xa4\xe3\x18\x54\x66\xde\x7b\x5e\x3b\x06\xd5\xe1\xc6\xe7\xbd\x63\x6c\x6c\x0c\xa3\xa3\xa3\x40\xaa\x1c\x0b\x20\xb9\x5a\xbb\x11\x1f\x24\x46\x45\xdb\x4f\xa4\x93\xd7\x5e\x66\xf4\x4e\x47\x2a\xa6\xc0\xa4\xba\x94\xc5\x7e\xa5\x54\xf7\xa1\x42\x76\xb7\x8c\x53\x1a\xe0\xfa\x95\xcd\x84\x94\x58\xa5\xe5\x24\x44\xad\xb2\x26\xf7\x07\x6d\x39\xde\xad\x79\x8b\x48\x75\x37\xe2\xe2\xc5\x8b\x11\x9c\xf1\x52\xce\xb0\x8d\xdd\xca\x70\xe8\x6d\x7a\xf0\xfc\xe8\x37\x26\xd6\x4b\xbf\x4d\x4c\x42\xb3\xe0\x76\x3d\x7d\x0c\x97\xad\xa2\x51\x09\x1e\x63\x6c\xcf\xf5\xa1\x43\x6b\xe5\xe8\xc6\x1b\xd3\x8d\x17\x63\x62\xbd\x20\x85\x53\x53\x53\xf2\xc5\x17\x5f\x94\x17\x2f\x5e\x14\x77\xdc\x71\x87\xde\xd5\x08\x01\xb4\xd4\x38\x00\x84\xa8\x13\xc8\xe8\xc4\x54\xb3\xf1\xc1\x44\xfb\xfd\xad\x8d\x60\x66\x6b\xa3\x3c\x33\xb9\x5e\xda\x54\x89\x44\xc5\x93\xe4\x47\x82\xa3\xd5\x4a\xb4\x72\xad\x1e\x5e\xbe\x52\xef\x9e\x5b\x1a\xee\x5d\x09\x3d\x5e\x00\x61\x09\xc0\x02\x18\x4b\x5a\xb7\x00\xb5\x30\xae\xaf\xaf\xdb\xb7\x10\xe2\xf4\xe9\xd3\xd8\xb4\x69\x13\xee\xba\xeb\x2e\x8d\xf3\x66\x56\x2b\xfd\x43\x08\xa2\x56\xa3\x1c\xaf\x34\x36\xb5\xae\x9c\x99\x6c\xbf\x55\x8a\x69\xc4\x97\x14\x10\x20\x24\x21\xea\x79\x72\x3d\x12\xdc\x92\x94\x88\x5b\x00\x56\x00\xd2\x75\x9b\x9b\x10\x39\x39\x69\x2e\x9f\x7b\xee\xb9\x3c\x7d\x60\xe1\xbb\x7b\x93\x5b\xdf\x4a\xaa\x6f\xaf\xb2\x95\xa3\x82\xc9\x2f\x47\xa2\xe6\xb2\xc5\x7d\x08\x44\xf6\x9b\x96\x03\x91\x9e\x9f\xb0\x06\x38\xc5\x7f\x82\x04\x47\xa1\xcf\xeb\x28\x26\x16\xae\xae\xa2\x48\x09\x79\x33\xce\xc3\xe5\x5a\xf2\x42\x1e\x51\x71\xdb\x91\xc7\x5d\xb8\x75\xe7\xb5\xa5\xaf\xac\x0d\x1b\x36\xd8\x71\x89\x53\x9e\x08\xb5\xa1\xb5\x78\x1f\x90\x9d\xcc\x19\xad\xbd\x9d\x96\xcb\x2d\x58\xf1\x94\x1d\x9f\x6c\xb9\x76\x91\x96\x03\x1a\x23\x8d\xa4\x53\x91\x9d\x05\x20\x95\x80\xd2\x2b\x3c\xf5\x5a\xe0\xf7\x78\x7b\xa5\xc9\xdb\xbb\xc3\x3c\xcb\xc9\x36\x69\x08\x24\x97\x1d\x7d\xff\xfb\xdf\x07\x00\xb1\x61\xc3\x06\x7c\xf1\x8b\x5f\xd4\x9c\x98\x60\xe6\x8a\x00\xd5\xee\x9e\xaf\x3e\xba\x7d\xa5\xf2\x79\x52\x1c\xb2\x45\x96\x4c\xdb\x32\xcb\x50\x66\xc5\xa2\x54\x17\x41\x40\x29\xa6\x2d\x77\xcf\x0f\x3f\x3d\xbb\xa1\xf3\xee\x95\x7a\xf7\x34\xac\xed\xd0\xcf\x7d\xee\x73\xe2\xe7\x3f\xff\x39\x88\x08\x7b\xf6\xec\x91\x94\xb8\x72\x30\xb6\x15\x6a\x8c\x42\x26\x34\x9b\xe5\x68\xe9\xcc\xc6\xf8\xd2\x07\x93\xed\xb7\x82\x58\x54\x05\xa3\x4c\x0c\x9f\x09\x51\x4f\xf0\x7a\xe4\x71\x8b\x81\x26\x83\x1b\x44\xa4\x26\x2e\x1a\x44\xd4\x60\xe6\x26\x5b\x77\x1e\xbf\xf0\xc2\x0b\x7d\x8a\xe1\xd7\x5e\x7b\x0d\x5b\xb7\x6e\x15\x1b\x36\x6c\x88\xd4\x51\x8f\x8e\xe2\xbc\x35\x17\xd2\x54\xe5\xd5\x22\x21\x2b\xb1\x47\x15\xa8\x13\xae\x4a\xd1\xa9\x39\xa6\x26\x27\x37\x02\xe8\xdf\x16\xd4\x85\x66\x00\xa4\xe5\xe1\x3c\x2f\xe4\xe1\x6a\x86\xe3\xc8\xcb\x94\x29\xcc\x46\x2c\xc1\x89\xc9\x79\x86\x69\xb0\xa5\x74\x00\x19\xd3\xb6\x74\x08\xb3\x83\x6a\x3d\xdb\xd1\x52\x70\x18\x7a\xb2\xc3\x60\x7d\xb8\x47\xba\x6d\xc8\x09\x83\x76\x2d\xdc\x7c\xff\x7f\x39\x14\xa0\x9f\x58\x0c\xe2\x46\xf2\x76\x57\x06\xb5\x55\xec\xd9\xb3\x47\x5b\x89\x0a\x28\x5f\xa1\x41\x5b\x4e\xfa\x5d\x9e\xb6\x44\x57\x0b\xae\xb6\x3a\xca\x81\x8f\x65\x6d\x97\x92\x19\x77\x07\x2b\xcd\x97\xe5\x01\xad\xf1\xcb\xec\x12\xa4\xf9\xfb\xbe\x60\xcb\xd0\xdd\x6c\x0d\xab\x26\x48\xae\x0e\xad\xc5\xb7\xaf\x6e\xf2\x8e\x92\x20\x6d\xb1\x2c\x46\x46\x46\xe4\x8e\x1d\x3b\x70\xe9\xd2\x25\xec\xde\xbd\xdb\x28\xe1\x91\x1c\xcd\xaf\x8c\xb5\xfc\xa9\x3b\x16\xaa\xbf\xe7\x31\xc6\x32\x5d\xb4\xf4\x36\x96\x4a\xa1\x2f\xd8\x92\x1d\xab\xde\xd7\xba\xde\xdd\xfb\xae\xd6\x3e\x37\x3f\x12\xfe\x77\x99\xda\x52\xc8\xad\x5b\xb7\xca\x56\xab\x25\x5f\x79\xe5\x15\x00\x10\x7b\xf7\xee\x95\x48\x94\x97\x40\xba\x88\x29\xa5\x29\xd5\x98\xb9\x26\x05\x55\xdb\x14\x07\x4a\xfc\xd2\xf9\x22\x35\xd1\x5b\x04\x6a\x22\xb9\x44\x4c\x4f\xda\x8e\x2a\x33\x02\x20\xdf\x79\xe7\x1d\xb7\xc9\x06\x9f\xbe\xff\xfd\xef\xcb\x2f\x7e\xf1\x8b\x62\x7c\x7c\x5c\xdb\x79\x68\xc5\x69\x48\xc9\x0e\x55\x13\x89\xb2\x57\x13\x0d\x5f\xb7\x55\x95\xaf\x89\x47\x4b\xb5\xc7\x78\x6b\x43\x3e\xd1\x18\x24\x82\x67\x38\x12\xf7\xd2\x69\xfd\xdb\xc7\x5a\xbb\x96\xa3\xc4\xe4\xdb\xac\x60\x06\x85\xf4\x68\x51\x56\x41\x6a\xd8\x5f\xbd\x50\x58\x8a\x52\xb2\x0a\x91\x84\x28\x12\x09\x85\x75\x3b\x33\x3d\x3d\x2d\x66\x67\x67\x07\x4d\xee\x9b\x51\xcf\xa2\xf4\x5b\x15\x6b\x6e\xe5\xdb\x5b\x25\x3e\xf6\xf7\x66\x0c\x2c\x38\xfb\x00\x82\xa0\x25\x37\x09\x89\x5a\x92\x95\x33\xb3\x41\x8b\x0e\x89\x55\xa2\xe3\x96\x31\x33\x61\xd4\x33\x3b\x8a\x3c\x40\x4d\xc0\xfe\x4b\xb1\x6c\xc5\x9f\xce\x97\x1d\x70\x57\x1c\xd5\x63\x9e\x72\x2c\xa0\x54\xa4\x0a\x5a\x72\x9a\x18\x15\xa9\x8e\x92\x13\x11\x3c\xcf\x43\xa5\x52\x01\x00\xb9\x7b\xf7\x6e\x61\x11\xcd\x80\x99\xab\x33\x4b\x95\x03\x63\x1d\x7f\xbf\x4d\xa6\x4c\x9b\xb8\x80\x60\xd8\xc8\x64\xa9\xa8\x8d\x09\x0a\x51\xb0\x6d\xb5\xfc\x5b\x1b\xda\xa5\xbf\xbb\x31\xdc\x33\xba\x06\x66\x96\x9f\xfa\xd4\xa7\xc4\x8f\x7f\xfc\x63\xf9\xda\x6b\xaf\x01\x80\xcd\x79\x68\x82\x10\xaa\x89\xd8\x44\xea\xb8\x28\x00\x8c\x13\x6f\xa8\xd5\x3e\xd4\x93\xd5\x9a\xb4\xfa\x7b\xc9\xcc\xf2\xdd\x77\xdf\xc5\xeb\xaf\xbf\x3e\x90\x33\xfd\xe1\x0f\x7f\x88\xf5\xf5\x75\xf9\xb5\xaf\x7d\x0d\x9e\xe7\x69\x02\x12\xa9\x36\xb5\x14\xb1\x08\xac\x6d\x7b\xcd\x71\x68\x3d\x4d\x44\x44\x21\xa5\xd7\x51\x46\xcc\x2c\xc3\x30\xcc\x33\xc3\x47\x4e\x1b\x72\x7f\x5d\x67\xc5\x76\xc8\xac\x8a\x59\xa2\x91\xe8\x39\xc0\x59\x5c\xea\x0f\x59\x44\xd6\xe3\xc9\x9a\x0d\xb6\xd6\x3e\xc3\x0a\x03\x60\xb0\x64\x82\x4d\x65\x93\x7c\xd9\x83\x40\x79\x4a\xc8\x3c\x85\x63\x1e\x60\x06\x7d\x5b\x14\x6e\xa6\x4c\x2d\xd2\x7b\xe4\xe9\x50\x0a\xbf\x19\x19\x19\x01\x2c\x1d\x00\x00\x3f\xe8\xf0\x56\x30\x84\xad\x77\xd0\x2a\x4a\xc3\x45\x50\x02\x51\x76\x46\x43\xaf\xb2\x86\x4b\xb0\x95\x97\xd0\xf3\x2a\xab\xdf\x20\xab\x7c\x3b\x24\x12\xa6\xfa\xd6\x10\x93\x74\x3a\xa7\x04\x26\x5b\x92\xce\x52\xea\xf0\x16\x92\xa8\x90\x97\x78\xbc\xd2\xb9\xce\x9c\x39\x23\xef\xbe\xfb\x6e\x31\x32\x32\xa2\xc7\xd8\x07\x10\x94\x24\xd5\xa6\x56\xcb\x1f\xf2\x12\x4f\x59\x7d\x38\xa6\xcd\x4d\xfa\x44\x26\x28\x82\x6a\x7f\x64\x11\x3c\x02\x50\x0d\xbd\x99\xad\xab\xc1\x9d\x37\x86\x7b\x73\x48\xe4\xfd\x88\x88\x64\xa9\x54\x92\x9e\xe7\x89\x28\x8a\xf0\xca\x2b\xaf\x48\x22\x12\x7b\xf6\xec\x31\x97\x37\xab\x95\xdc\x47\xb2\x92\xeb\x55\x3e\x73\x5b\x80\xb5\xda\xbb\x7f\x92\x88\xa2\x76\xbb\x0d\xcb\x9f\x4c\xde\x82\x62\xd2\xd4\x45\xea\x78\xe3\x8d\x37\x70\xcf\x3d\xf7\xc8\x91\x91\x11\xbd\x98\x46\x94\xf8\xcf\x30\xa2\x9d\x5b\x96\xb5\xf0\x46\x76\xd9\xe7\xcf\x9f\xc7\x89\x13\x27\xb0\xb0\xb0\x50\x44\x18\xe0\x3c\xf7\xcd\x1f\xdf\x89\x74\x59\x6b\xcd\x6d\x20\x3b\x79\x05\x32\xce\x45\x00\x4b\x47\x91\x55\x48\x29\x40\xaa\x6f\x6d\xb6\x32\x2d\xcf\x5e\x1d\xb5\x68\x22\x29\x39\x0d\x6b\xb1\x89\x20\x22\x58\xdc\x46\x91\x18\x00\x2b\xfd\x5f\x92\x96\x07\x3c\x0c\x78\x1f\x24\xbe\xe4\xd5\xe7\xa6\xe7\x12\x20\xe5\x50\x46\xa7\x27\x77\xf3\x86\x3c\x0e\xa4\x4e\x86\x53\xa2\x4b\x16\xbc\x2d\xfb\x4d\x9b\x05\x4c\xb7\xb4\x4c\x1d\xc4\x94\x7b\xac\x22\x29\x99\xad\xb2\xac\x22\xf4\xa1\x36\x43\xec\x55\xbe\xcc\x1d\x1f\xba\x10\x5b\xf4\xd1\x63\xcb\xf0\x7b\x3c\x26\x62\xae\xc8\x52\xea\x83\x42\xfd\xca\x7d\xfb\xf6\x25\xf5\xa5\xfe\x5e\x2a\xc3\xa1\x37\xbe\xa1\xe5\xef\x25\xb5\x8b\x62\xda\x6f\xf0\x4a\x8b\x4c\x40\xa6\x27\xae\x52\xde\x2c\x56\x69\xbc\x27\x51\xdd\xdc\x0c\x7e\xe3\x24\xaf\xbf\x8e\xf4\xf2\x75\x4c\x4d\x4d\x61\x72\x72\x12\xd7\xae\x5d\x93\x00\xf0\xf2\xcb\x2f\xcb\x2b\x57\xae\x88\x07\x1f\x7c\x50\x06\x41\x60\x70\x44\x11\x07\xdd\xfe\x22\x45\xb8\x9e\xb4\x00\x20\xa5\x94\xf2\xd9\x67\x9f\x95\x8e\x1e\x2b\x4f\x45\xe0\x72\xfe\x38\x79\xf2\xa4\x3c\x77\xee\x9c\x68\xb5\x5a\xf2\x8f\xff\xf8\x8f\x51\xad\x56\x33\xdc\xa9\xd9\x45\xcb\xfe\x4a\x6b\xee\xca\x56\xab\x85\xef\x7c\xe7\x3b\x45\x2a\x89\x9b\xcd\xab\x0c\xbe\xfa\x83\x12\x75\xc8\xac\x46\xc9\x40\x09\xc1\x64\x58\x33\x17\xf9\xc8\xc1\x5a\x83\x64\x9a\xa5\x26\x18\x84\xcb\xae\xa0\x50\x22\x0c\x24\xab\x36\x58\x1c\x87\xb4\x38\x8e\x41\x0a\xd0\xa2\x49\x3a\x48\xcc\xd0\xdf\xdd\x4c\x9c\x41\x4e\xfa\xad\x22\x41\x51\x39\x7d\xf9\x2c\x78\x0b\x00\xbe\x88\xb9\x6a\xa6\xab\xb6\xb3\x30\xcf\xc8\x1a\x79\x9a\x49\x6b\x89\x1b\x7a\xd2\xeb\x93\xae\x19\xc2\xe2\xe4\x57\xf5\x68\xb2\xa2\x4d\xcf\x93\x54\x36\xac\xbf\x19\x35\x7b\xdb\x17\xe9\x18\xa6\x9c\x86\xc5\xed\x48\xae\x10\x1b\xb6\xde\x1c\x4a\xb3\xae\xa7\x34\x96\xb2\x00\x7c\x3f\x16\xf5\x20\x16\x75\xd8\x75\x69\xee\xc2\x3a\x33\x62\x38\xa1\xcc\x69\x5f\xca\xfe\x30\x92\x6d\x69\x26\xe5\x01\x1c\xa2\xd6\xf5\xb6\x0b\x46\x45\x0a\xb2\xdb\xd4\x37\x86\xa7\x4f\x9f\xc6\xf2\xf2\x32\xee\xb9\xe7\x1e\x4c\x4f\x4f\xcb\x52\xa9\x64\x4f\x5a\x23\xc6\x3b\x3a\x38\x69\x89\x0d\x58\x5b\x5b\xc3\xd1\xa3\x47\x01\x00\xcb\xcb\xcb\xb7\xba\x38\x65\x42\xab\xd5\x02\x12\xdd\x07\xba\xdd\xae\x04\x20\xff\xe4\x4f\xfe\x44\x78\x9e\x67\x9c\x24\x59\xe2\x12\xe2\x38\x86\x94\x12\x17\x2f\x5e\xc4\xcb\x2f\xbf\x5c\xb4\xe0\x15\x71\xc5\x83\xda\xd4\xa7\xe3\xb8\xd9\x2a\x9e\xa4\x31\x04\x25\x0e\x5d\x93\xc6\xa6\x6b\x8b\x0a\xe9\xa0\x26\xb8\x4b\x36\x2e\x9a\xf4\x8c\x81\x98\xd9\x88\x4f\xb2\x32\xa5\x62\x8a\x6b\x48\xd6\xd7\x9e\xfe\xdf\x3e\x1d\x8d\x13\x7f\x33\x0e\x02\xe8\x87\xc5\xcd\x58\xba\x3c\xe0\xe7\xd5\x69\xc3\x3a\x03\xe7\x5d\xbb\x76\xb9\xc4\x2e\x81\xb5\xe4\x4a\xba\x73\xa0\xfe\xb3\x45\xa0\x35\x71\x80\x7d\x59\xb7\x9a\xd0\x66\xf2\xaa\xfc\xfa\xc8\x37\xd9\xf0\x67\x67\xac\x32\xd4\x01\x5a\x14\xb2\x79\xfd\x54\xb7\x62\xad\xee\x46\x21\x6a\xb3\x33\x96\x87\x7b\x89\x80\xd8\xac\xee\x06\xe6\xcf\x3c\xf3\x8c\x7b\xb7\xad\x00\xe0\xfb\x12\x55\x4f\x92\xb6\x84\xca\x96\x6f\x35\xd0\xd0\x0a\x13\x28\x7d\xb7\xf4\x20\xb6\x7a\x98\xc1\xf0\x63\xaa\x0a\x46\x10\xa7\x62\x21\x00\x68\x6e\x23\x83\x47\xd7\xaf\x5f\x17\x2f\xbd\xf4\x92\xce\x22\x1f\x79\xe4\x11\xdc\x71\xc7\x1d\xaa\x69\x59\xab\x66\x0d\xd7\x9c\xbb\x76\x8b\x74\x5d\x79\xab\xbb\x8b\x63\x26\x4d\x11\x0d\x00\x10\xca\x93\x3c\xee\xbb\xef\x3e\x71\xec\xd8\x31\x93\xef\xbe\xfb\xee\x13\xe7\xcf\x9f\xc7\xea\xea\xea\xad\xe8\xdb\x6e\x36\x37\xfa\xde\x8b\xec\x38\xdc\xc6\xe7\xb3\xe0\x9a\xfd\xb3\x29\xbd\xf6\x23\x4a\xe9\x2a\x94\x19\x3c\xeb\x1c\x43\x86\x57\x31\x04\xc4\x24\xbb\x4e\x64\x41\x44\x5a\x39\xea\x76\xea\x66\x3a\x0d\x37\xb8\xfa\x10\xa0\x38\xbf\x4b\x7c\xdc\x50\x44\x70\x06\xe5\x71\xf3\x16\x8a\x86\x20\x80\x05\x45\x66\x52\xab\x60\x6f\xcb\x26\x13\x3b\x99\xd4\xda\x54\x3c\x9d\xe4\x69\x39\x3a\x2e\x65\xf5\x53\xa2\x61\x9e\x13\x36\x50\x15\xed\x28\xb1\x8c\x0d\x89\xce\xa2\x97\x74\x4e\xb9\x47\x9b\x18\x29\xf6\xd1\x14\x27\x10\x69\x83\x4e\x7b\x4c\x73\x88\x06\x00\xf8\x92\x20\x94\xc8\x6a\x57\x0a\x8b\x16\x5a\x7a\xd0\x2c\xc7\x53\x68\x43\x64\xc5\x45\x1e\x47\x92\x12\x22\x65\x29\xff\xf1\xe4\x93\x4f\x8a\x17\x5f\x7c\xd1\x6e\x0b\xe0\xe0\xd8\xab\xaf\xbe\x2a\xb5\x72\xf1\xb6\xdb\x6e\x13\xe7\xce\x9d\x93\x1f\xfa\xd0\x87\xc4\x9b\x6f\xbe\x29\x85\x10\x42\x1f\xb7\x2d\x08\x83\x26\x73\x51\x9a\x1b\x9f\x89\xb3\x89\x06\x00\x4d\x44\x8a\x16\xab\xbc\x72\x8a\x74\x1b\x76\x9b\x4c\x5e\x97\x28\xb8\x93\xc9\x20\xb2\xfe\x03\x00\x58\xa2\x44\xf2\x6e\xab\xae\xd3\x1f\x15\x63\xad\x3e\xf6\xc2\x90\x55\x89\x93\xf3\x40\x9c\xb6\xcb\xae\xbf\x60\x47\x45\xff\xba\x5c\x93\x9b\xc7\x8e\x97\x28\x26\x16\x45\x80\x73\x83\x5b\x86\x5d\x77\x5e\xfd\x79\x83\x9f\x41\x80\x7e\x7d\x12\x84\xf4\xa0\xec\x09\x34\x33\x90\xfa\x70\xd5\x8e\x65\x98\x93\x95\xdd\x8e\x4b\x05\x8a\xe4\x43\x56\xac\x5c\x92\x87\xad\xf2\x9c\x05\x5b\xa7\x69\x31\x34\x33\x76\xe9\x60\x1a\xae\xc3\xce\x64\x4d\x6e\xd8\xdf\x32\x83\x05\x85\x2c\xfa\x61\xf9\xcc\x33\xcf\x98\x38\x9b\xb3\xec\x79\x1c\x86\x3e\xb7\x9c\xa6\x65\x69\xa1\x79\xc8\x9e\x9c\xd1\x84\xc5\x7c\xe7\x56\x0a\xc8\xb5\x72\xbc\x22\x15\xc1\xb3\xeb\x7d\xf1\xc5\x17\x5d\xb1\x35\xef\xd9\x8c\xef\xb9\x73\xe7\x00\x00\x6f\xbe\xf9\xa6\x04\x80\xc1\x34\x23\x5f\x0c\xc9\xa9\xa7\x88\x73\x2e\xc2\x21\xb7\x2c\x37\xb8\x78\x7f\x2b\x62\x79\x11\x7e\x17\xb2\x28\x7d\x19\x6d\xc0\x32\x00\x49\x1c\xf5\x61\x87\x4e\xd4\x8f\x96\x7c\x99\x96\x63\x3d\xb8\xa3\xa9\xe9\x12\x27\x3a\x14\xbb\x6e\x67\x70\x8b\x00\x63\x03\x71\x10\x40\xdc\xbc\x6e\x3c\x9c\xdf\x3c\x56\x32\x2f\x7f\x1e\xe1\xcd\x2b\x33\xf7\xf9\xfc\xf9\xf3\x19\xd3\x7a\xad\xdb\x89\x02\xd1\xd4\xab\xab\x3d\x69\x88\x6c\x0e\x40\x09\x2a\x56\x9c\xb1\x20\x55\x94\x9c\x48\x73\x06\xfa\xcf\x3e\x6a\x6f\xa9\x37\x75\x9a\x33\x3e\x94\x52\x01\x55\xa7\x15\x6f\x44\x03\xce\xcf\x0b\x42\x54\xa2\x16\x0b\x32\x7e\x36\x75\xb0\x6e\x30\x33\x71\xcc\x2c\xd7\x83\xb8\xb5\x3c\xd4\x9b\xb3\x0f\xda\xe5\x31\x11\x7d\x29\xae\xa4\x95\xf3\x5d\x2c\x38\x5c\x18\x09\x2f\x80\xfa\x26\x92\x7b\x3d\x00\x90\x3f\x8e\x79\x5c\xae\x9d\xe6\xc6\xdb\xe5\xd8\x1c\x6f\x5e\x5d\x79\xef\xb7\x22\xca\x0c\x5a\xf0\x06\xb5\xd7\xce\xe3\xe6\xcd\x95\x38\x5c\x03\x30\xe1\xfc\x02\xc8\x8a\x0a\x49\x60\x48\x82\x84\x8d\xa0\x7d\xcb\x40\x3f\x17\x91\x09\x9c\x13\x9f\x16\x21\x08\xa9\xcb\xf8\x01\xfa\x0d\xbb\xad\xb9\x6c\x3f\xfa\x29\xeb\xad\xb2\x85\x79\x44\x75\x90\x48\x87\x01\x79\xf3\xca\x2c\x62\x41\x6d\xae\x43\x02\x90\x61\x85\xae\x83\x20\xc1\x2c\xd2\x15\xdf\xf6\xa6\xa6\x1f\x6c\xb1\x02\x19\xf6\x3d\xf1\xbd\x91\x4d\x83\xf9\xd4\x7e\x06\xec\x81\xc8\x04\x9b\xe8\x67\xda\x69\x69\xb9\xcc\x37\x8e\xd8\x43\x8c\xde\x10\x2d\x4a\x81\xbe\x23\x04\x5a\xc7\x61\xf7\x99\x88\xa2\x9e\xc7\xad\x2b\x63\xdd\xf7\x67\x96\x87\x1e\xf2\x24\x02\xbb\x69\x59\x80\x39\xf1\x85\x79\xd2\x8c\xeb\x81\x5c\x9c\xab\x77\x2f\xc2\xda\x2a\xd5\x59\x95\x07\x2c\xa0\x1f\x77\x50\x10\x2f\x77\xee\xdc\x29\x00\xe8\x73\x37\x6e\xde\xbc\x71\xbe\xd9\x64\xcf\xc3\x13\xb7\x1c\xf9\xd0\x43\x0f\x89\xad\x5b\xb7\xe6\x12\x84\xef\x7f\xff\xfb\x12\x48\xbc\xc8\x29\xf1\x7e\x50\x1f\xdc\x36\xb8\xf5\x67\xd2\xf2\xb6\x63\x07\x72\x1e\x00\xa4\x3e\x26\x0c\x68\x1c\x4c\x09\x4a\x1f\xe5\x77\x07\x31\xa3\x24\xcd\x4f\x23\x26\xe1\x49\x73\xd3\x7a\x91\x7e\xc0\x6d\x9b\x2b\xc7\x15\xc9\x84\x79\xab\x85\x1b\x06\x51\x74\xf7\x5b\x37\xcd\x2e\xc3\xce\x93\x37\xb8\xb9\x44\xcc\x9e\x40\x00\x45\x61\x55\x2c\x49\x81\x8e\x17\xab\xcb\x81\x8c\x4d\x46\x86\x06\xa8\x8f\xad\x5f\xeb\x5c\x4b\x66\xd2\xb9\x66\xe2\x56\x79\x99\x41\xb3\x74\x1c\xa9\xd1\x95\x5e\xce\xb5\x6b\x04\xeb\x5b\xb6\xeb\x26\xeb\x7c\x4b\x92\x27\x1c\x12\xf3\xfa\x76\x74\xc0\xd1\xe5\x24\xef\x9a\xe3\xd2\x86\x52\xe1\xc5\x0d\x9d\x53\xfb\xae\x46\x73\xe3\xad\xd2\x8c\x69\x92\xd9\x61\x51\xb7\xc4\xab\x3e\xd8\x06\x85\x69\x50\xca\x64\x4a\xb9\x20\x09\x96\x57\x46\xbb\x27\x57\x2b\xb1\xbe\xfb\xd6\x1c\xa6\x74\x76\xee\xfa\xf0\x65\xf3\xe6\xcd\xb8\x76\xed\x9a\xfc\xdd\xdf\xfd\x5d\xb1\x61\xc3\x06\x94\x4a\x25\xb3\x8b\xa1\x7e\x05\x11\xa1\xdd\x6e\xa3\xd1\x68\xa0\xd1\x68\xe8\x1d\x0d\xbb\x4c\xfd\x0c\xdc\x1c\x37\xfa\x44\x85\x47\x1e\x79\x04\xd3\xd3\xd3\x62\x68\x68\xc8\xce\xaf\xdb\x20\x34\x1c\x95\xe7\x3e\xc9\xcc\x58\x58\x58\x10\x6f\xbe\xf9\x26\xae\x5e\xbd\x2a\x38\xf5\xb7\x51\xb4\xf0\x16\xf5\xdf\xb4\xc5\x47\xfe\xc4\x73\x3b\x61\x37\x0c\x0c\x48\x49\x88\x5c\xdd\x99\xbd\xe2\xe5\x5a\x96\xdb\x84\x24\xef\x99\x4c\xa5\xbe\x2f\x45\xe0\x10\x1e\x01\x40\x16\x58\x8e\xe6\x01\xa1\x08\x30\x79\x5c\xc3\xcd\xb8\x95\x3c\xd8\x14\x11\x2c\x20\x87\x18\xe4\xb4\x35\xf7\xd9\xe5\x36\x00\x8e\xc2\x21\xb1\x12\x05\xb4\x20\xda\x3c\xe3\x82\xd1\x3e\x32\x9f\x8c\x45\xd6\xb0\x4e\xef\x20\xa4\xa2\x03\x1c\x4e\xc4\xe5\xe8\x9c\xe3\xe1\x49\x54\x76\x42\x6a\x8e\x43\x4d\xc6\x2c\xc3\x93\xd6\x9e\x2a\x61\x01\x29\x10\xb6\x47\xbc\x4b\x70\x0c\xfb\x14\x12\xe3\xc2\x85\x0b\x98\x99\x99\xd1\xc4\xc3\x38\xd3\x59\x19\x8a\xe6\x4e\x6d\x5a\x7f\xfd\xc3\x17\x47\xa7\x7c\xa6\x20\xcb\x11\xa5\x5e\x43\x88\x28\xbd\x34\xc9\xea\xb3\x6d\x3b\xa4\x4d\x01\xd6\xca\xf1\xc2\xc9\xad\xeb\xbf\x88\x84\x6c\x12\x8c\x73\x21\x09\x00\xca\x27\x87\x3d\x56\x3a\xc8\x27\x9e\x78\x42\x6c\xdb\xb6\x0d\x9e\xe7\x99\xed\x64\x20\x63\x31\x6a\x7e\x87\x86\x86\x64\xa5\x52\xc1\xe6\xcd\x9b\xe5\xee\xdd\xbb\xc5\xd2\xd2\x12\x7e\xf0\x83\x1f\xc8\x4a\xa5\x22\xd4\x49\xd4\x22\xce\xc4\x7e\xce\x4c\xd8\x47\x1e\x79\x44\xcc\xcc\xcc\x20\x08\x02\x50\xce\x5d\x2c\x8a\x68\xe8\x36\x18\x03\x30\x22\x92\x9b\x37\x6f\xc6\x67\x3f\xfb\x59\x79\xf5\xea\x55\xbc\xf5\xd6\x5b\x62\x7e\x7e\x1e\xca\xff\x86\xdd\xd7\xa2\x85\xb7\xef\xdd\x47\xfe\xa4\xe8\x0b\x19\xa5\x1d\x41\x46\x1e\x77\x32\x6c\xa9\x31\x04\xca\xda\x6c\x68\x3b\x0f\x57\xcb\xcd\xea\xbf\x61\x6f\xd9\x22\x3f\x92\x82\x20\xa6\x8a\x06\xa4\x3d\x20\x8a\x68\x0c\x12\x27\xdc\x67\xb7\xf3\x83\xd2\xec\x6f\x6f\x55\xf6\xcc\x4b\x73\xd9\xbb\xbc\xb4\xdc\xb2\xd6\xd6\xd6\x50\xaf\xd7\x13\x6e\x4e\x99\x0d\xc7\x3e\x5a\xed\xba\x77\x2e\x68\xf3\x0c\xc0\x16\x6c\xe1\x88\x0f\x7a\x1c\x52\x1d\x44\x0a\x55\xbd\xf2\xea\x23\xef\xd6\x37\x49\x6e\x18\xbf\xa3\x56\xc3\x52\x0e\x5f\x4d\x51\x6b\x12\x92\x26\x40\x96\x32\x84\xb4\x52\xd5\x2c\x1e\x49\xa9\x51\x89\x96\x3a\x35\x31\xcf\x40\x48\xca\x4a\x53\xc1\x02\x7b\xf6\xec\x11\xc7\x8e\x1d\xc3\xcc\xcc\x8c\x86\x4f\x84\xe4\x3c\x46\x4b\x12\x1a\xef\x6d\x6e\xfd\x7a\xdb\x6a\xe5\xee\xe9\xe5\xf2\x7d\x5a\x9f\x92\xf1\x1c\x6e\x11\x12\x43\x28\x1c\x3b\x21\x0d\x88\x9e\xe0\xce\xbb\x5b\xd6\xff\x69\x7e\xa4\x7b\x0e\xe9\xd1\x72\xe3\x73\x73\x7e\x7e\x3e\x33\x1e\x00\xe4\xe3\x8f\x3f\x2e\x66\x66\xec\xb8\x5a\x31\x00\x00\x20\x00\x49\x44\x41\x54\x66\x0c\x47\x61\x8d\x6d\x6a\x31\xca\x10\xd6\x6e\x95\x11\xb7\x54\x7f\xe4\xc4\xc4\x84\x3c\x74\xe8\x90\x58\x00\x31\x40\xce\xbf\x58\x58\xc0\x4b\x2f\xbd\x84\x46\xa3\x31\x88\x23\xed\x0b\x4f\x3f\xfd\xb4\xf0\x7d\x5f\x73\x14\xba\x6e\x9f\x40\xbe\x1f\x93\xef\x4b\x11\x04\x11\xf9\x82\x49\x44\x1e\x47\xa1\x27\xc3\x9e\xc7\x91\x84\xb9\xfe\x20\x22\xa2\x68\x6a\x6a\x0a\x5b\xb7\x6e\x95\xef\xbc\xf3\x0e\x5e\x7f\xfd\x75\x5d\x7c\xde\x82\x97\xd7\x3e\xf3\x7b\xb3\xd3\xb1\x12\x30\x7e\x21\x34\x22\xcb\x98\x10\x75\x7c\xd9\xd2\x23\x98\x9a\x31\x27\x68\x97\x21\x18\xb0\x28\x3e\x58\x59\x2d\xea\xd5\x20\xbb\x94\xe9\x95\x43\x00\x7e\xa5\x27\x86\x75\xdd\x36\x25\xcd\x6b\x1f\xb2\x93\x3e\x6f\x45\x2f\x1a\xa4\x3c\x56\x70\x90\x18\x52\x94\x56\x54\x6e\x1e\x07\x53\x44\xc0\x24\x00\xa1\x57\x3c\x4e\x1d\xd6\x86\x20\x74\x9a\x13\xde\xfb\xf5\x85\xe8\xe3\x90\xe4\xc3\x12\x1b\xd8\xa2\x0e\x86\xcb\x66\xb2\x56\x61\x45\x1a\x8c\xe8\xe2\xdc\x0b\x6b\x3f\x9b\x34\xc5\xab\xe8\xe1\xb1\x76\xcd\xec\x15\x3e\xbb\xaa\x6b\xf2\xe4\x9a\xc1\x27\xa1\x33\x22\xce\x85\x43\xb4\x82\xf4\x90\x95\x11\x57\xe2\x38\xc6\xc2\xc2\x82\xbc\x78\xf1\xa2\x50\x7e\x56\x25\x2c\xef\x57\x6b\xe5\xf8\xf2\x2f\x76\xad\xbc\x38\x14\x8e\x8f\x6d\x5c\x2f\xcd\x64\x8d\x0e\x1d\xc3\xb5\x2c\xb5\x4c\x73\x11\x10\x13\xa2\x53\x9b\x5a\xbf\x3a\xb6\xad\xf9\xcf\x52\x60\x89\x40\x4d\x4e\x5c\x04\x1a\x67\xd8\xe7\xcf\x9f\xd7\xf5\x03\x00\xbe\xf4\xa5\x2f\x89\xb1\xb1\x31\x3d\xa6\x9a\x50\xf8\x82\x29\x28\x47\xa2\x52\xef\x78\xf5\x91\x8e\x5f\x2f\xc7\x54\x11\x92\x44\x2b\x90\xad\xf5\x20\x6e\x34\x2a\x51\xb3\xe3\xcb\x16\x13\xf4\xb9\x92\x08\x80\xdc\xb4\x69\x93\xfc\xf2\x97\xbf\x8c\x57\x5e\x79\x05\xa7\x4f\x9f\xbe\x19\x97\x21\x00\xc8\xaf\x7d\xed\x6b\x42\x39\x35\x12\x50\x57\x43\x12\xa3\x32\xd2\xf1\xea\xdb\x56\xcb\xd3\xd3\x2b\x95\x07\xea\x6d\x7f\x4f\xb5\x27\x36\x09\x49\x41\xcf\x97\xcd\xd5\x4a\x74\xf6\x6a\x3d\x7c\xf3\xf2\x58\xf7\xec\xe2\x70\x6f\x31\xf2\x8c\x53\xe2\x88\x88\xa2\x7d\xfb\xf6\xc9\x7a\xbd\x2e\xde\x7a\xeb\x2d\x63\x25\x5b\x10\x5c\x35\x86\x04\x52\x51\x65\xa0\x3c\xa3\x80\x9a\x5a\xc2\x01\x32\xf4\x65\x8b\x01\x99\xcc\xf3\x14\x71\x12\x7c\xb6\x58\x5c\x4b\x3e\xce\x2a\xcf\xac\x31\x56\xd4\x45\xaf\x84\x04\x60\xa8\xe7\xd5\x34\x50\x6d\x8e\xc3\xe9\x8c\x1d\xf2\x06\xc0\xed\xd3\xcd\xa8\x7c\x11\x95\x45\x4e\x7c\x9e\x38\x93\xd7\x36\x97\x33\x19\xc8\xf5\xfc\xcd\xdf\xfc\x0d\xbe\xf1\x8d\x6f\xe8\x72\x12\xa4\x63\xee\xac\x4d\x78\xef\x45\x65\x5a\x2a\x75\x78\x93\x3d\x59\x13\x75\x82\xc5\xb9\x21\x6b\x5d\xaa\xf7\x4b\xb3\xe7\x4e\x2c\xdd\x87\x3d\x1e\xda\x8a\x54\x5d\xa5\x00\x20\xdd\x72\x85\x4d\xfc\xe1\x8c\x2d\x52\x5d\x47\x52\x3c\xcc\xb5\x09\x20\xb0\x80\x6c\x6c\xf2\x8f\xb1\x40\x93\xd2\x13\x9a\x92\x99\xe5\xea\xea\x2a\xce\x9d\x3b\x27\x01\xe0\xd8\xb1\x63\x98\x9e\x9e\xb6\x4f\x76\xb6\x00\x34\x40\x58\x5a\xa8\xf5\x4e\xbd\xb4\x77\xf9\xaf\x1e\xf9\x60\xec\x0b\x9b\x1b\xc1\x6e\x32\xed\xc9\xda\xbb\xda\xc1\x6e\x73\xcf\xe3\xce\x7b\x9b\x5b\xbf\xfa\xf5\xce\xd5\x7f\xe8\x96\x12\xd7\x79\x9c\x9c\x58\x35\xee\x29\x17\x17\x17\x8d\x3f\xdb\x5a\xad\x86\xcf\x7e\xf6\xb3\xda\x37\x8a\x39\x93\x42\xa0\xca\x86\x75\x7f\x7c\xef\xf5\xea\xfe\x99\xa5\xca\xe3\xa3\x1d\x7f\x7f\x10\xd3\x14\x71\x72\x42\x55\x12\x37\x23\xc1\x0b\xab\x95\xe8\xd8\xc5\xf1\xce\xcf\xcf\x6c\x6c\x9f\xb8\x31\xdc\x5b\x94\xe0\x8e\x4d\x40\x1e\x7d\xf4\x51\x09\x40\x58\x57\x7d\xb8\xe2\x2e\x00\xc8\xaf\x7f\xfd\xeb\x42\xdd\x5a\xe8\x03\xf0\xc1\xa8\x54\x22\x51\xbf\xeb\x5a\x75\xff\x3d\x57\x6b\x4f\xd5\xdb\xfe\x83\x1e\xd3\x24\x01\x42\x2f\xe4\x4c\xc0\xc4\x7a\x80\x5d\x37\x86\x9a\xed\x92\x7c\xf7\xc2\x44\xfb\x7f\x1c\x9b\x6a\xfe\xec\x7a\xad\xb7\x80\xe4\x34\x70\x07\x40\x34\x3d\x3d\x2d\x37\x6e\xdc\x88\xe7\x9f\x7f\x3e\x0f\x37\xf3\xf0\xda\xa4\xeb\xcb\x3c\xd9\xfa\x15\x76\xdc\x8e\x1d\x3b\x68\xf3\xe6\xcd\x00\x8c\x63\x95\x21\x22\x1a\xd9\xb8\x16\xec\x9e\x5e\xa9\x1c\x10\x20\x73\x21\xa8\x51\x55\x18\x1b\x68\xc5\x2e\x42\x8b\x31\x36\x91\x48\x57\x35\xcd\x9a\x98\x0b\xd3\x01\x5a\xaa\xf6\xde\xbd\x30\xde\x39\x4e\x44\x6b\x44\xd4\x65\xe6\x1e\x00\x79\xf4\xe8\x51\xdd\x46\xbb\xcd\xfa\x57\xa7\xd9\x93\xd7\x4d\x37\xcc\xbd\xd3\x6c\x76\xfe\xe0\xc4\xe7\x01\x96\x9c\x34\xb7\x6d\xf6\xba\x27\x9d\xbc\x64\xb5\xd3\xae\x13\x0f\x3c\xf0\x40\x02\x46\xe5\xe5\x1a\x44\x65\xe9\x53\xb9\xda\x90\x3b\x2a\x4d\xb9\x0b\xc6\x4a\x34\xf9\x34\xcb\x8e\x5b\x06\x57\xa6\x44\xb2\xf2\xa7\xcf\xc9\xb8\x64\x39\x10\xb2\xfe\x1b\xae\x41\x73\x14\x9a\x80\x6b\x02\x41\x9a\x40\x69\x91\x25\xfd\x35\x9c\x28\x31\x7a\x15\x71\xed\xea\x9e\xf2\xdf\xc4\x81\xb8\x82\xc4\x2f\x85\xf6\x47\x21\x9f\x7f\xfe\xf9\x58\xc3\x6c\x7d\x7d\x9d\x8e\x1e\x3d\xaa\x3d\xea\xdb\xb0\x21\x10\xb8\x19\xc4\x9d\x8b\x1b\x3a\xb3\xe5\x58\x94\x47\x3b\xa5\x09\x4f\x52\xc9\x35\x28\xcc\xa8\x40\xc0\x90\x00\x56\x86\xa2\xf9\x37\xa6\xd7\x7e\x72\x64\xc7\xda\xcf\xba\x25\xbe\xcc\xcc\xf3\x44\xb4\x48\xca\xa1\x0d\x33\xc7\x00\xe2\xef\x7c\xe7\x3b\x32\x8e\x63\xd2\x44\xa3\x5e\xaf\x03\xe9\xd5\x14\x65\x3f\xa6\xfa\xfd\x57\x46\x1e\x7c\xe4\xec\x86\xff\x74\xdb\xd2\xd0\xbf\xa9\x77\xbc\x8f\x96\xa4\xd8\x26\x18\x75\x01\xaa\x12\xa3\xe2\x41\xd4\x4b\x92\xb6\xd6\x42\xff\xfe\xa9\xd5\xf2\x67\x6f\x5b\x1a\xba\xaf\x1c\x79\x8d\xa5\xe1\xde\x8d\x9e\xc7\x31\x33\xb3\xd6\xa7\xec\xdc\xb9\x93\x8f\x1e\x3d\xaa\xf1\x02\x16\x6e\x61\xc7\x8e\x1d\xf4\xe5\x2f\x7f\x59\xe3\x80\x8f\xe4\xb4\xf0\xf0\x44\xab\x34\xf5\xc9\xd3\x1b\x0e\xed\xbb\x5a\xfb\xcf\xc3\x3d\xef\x7e\x01\x1a\x26\x5b\x70\x23\x6d\x3f\x0c\x10\x28\x08\xa4\xd8\xb6\xb1\x59\xfa\xe4\xae\xa5\xa1\x7b\x42\x9f\xcf\x2d\xd6\x7a\xcb\xe6\x62\x0b\x22\x94\x4a\x25\xb9\x67\xcf\x1e\x3a\x79\xf2\x64\x16\xde\xfd\x73\x42\xb7\x4f\x02\xd6\xa4\x57\x91\x1a\x99\x8d\xf0\x6b\x13\x0e\x05\xc4\x0a\x80\x91\x89\x56\x69\x66\xe7\x72\xe5\x43\x1e\x53\x29\x83\x74\x9a\x2f\xb6\xa6\xa7\x7b\xa0\x2a\x59\xc1\x5c\x4d\xbf\x55\x29\x80\x66\x39\xbe\x74\x76\x63\xfb\x0d\x10\x9a\x48\xbc\x30\xc5\x44\xc4\xd7\xaf\x5f\xc7\xea\xea\xaa\xfe\xd2\x9e\xb8\x46\x32\x72\xe2\xdc\x7c\x40\x76\xe2\xda\x84\x52\x38\x79\x75\x7a\x1e\x71\xc9\xe3\xd2\xec\x7c\xb0\xea\xe0\x9c\x74\x3b\x9f\x21\x36\xa3\xa3\xa3\x62\x66\x66\x46\x1f\x76\x23\x4a\xce\x6d\x94\x00\xaa\x48\x9f\x44\xfd\x7a\x74\xaf\x27\xa9\x0c\xd2\x27\x8e\x1d\x16\x0e\xf6\xab\xb6\x7f\x81\x91\xf7\xcd\xc1\x30\x4a\xc7\x28\x63\x27\xa3\xf2\x6b\xbb\x90\x94\x38\xa4\x4a\xaa\x8c\x6a\xd5\x10\x2b\x23\xdf\x3b\x96\xaf\x24\x97\xb7\x95\x5e\x5e\x99\xf2\x7f\xc5\xc0\x75\x24\x4e\x72\x5b\x94\x5c\x07\x10\x1f\x39\x72\x24\x03\x93\xa9\xa9\x29\xba\xfd\xf6\xdb\x39\x59\x64\x1d\x62\x4e\x88\x43\x8f\xbb\xe7\xc7\x3b\x17\xaf\x8e\x86\x57\x98\x48\xfa\x92\x4a\x1e\x93\x47\xe9\xd8\x41\x12\xa2\xae\x2f\x3b\xd7\x87\x7b\x57\xde\x9e\x6a\xbe\xfe\xda\xed\xab\x3f\xbc\xb4\xa1\x7b\x5c\x0a\xcc\x01\x98\x27\xa2\x45\x00\xab\x00\xda\x50\xbe\x31\x96\x96\x96\xf0\xde\x7b\xef\xf1\xc8\xc8\x08\x3d\xf9\xe4\x93\x18\x1d\x1d\x05\xa5\x57\x31\x54\x87\x42\x31\xfe\xf8\xe9\xf1\xa7\xf7\x5d\x1d\xfe\xcf\x43\x91\xb8\x47\x80\x02\x7b\xb2\xea\xbe\x27\x98\x64\x16\x4c\x3f\x88\x69\xe7\xd6\x46\xf9\x93\x9b\xd7\x82\x91\x6b\x23\xe1\x99\x4e\xc0\x21\x00\x66\xe6\x98\x88\x70\xe0\xc0\x01\x9c\x3f\x7f\x9e\x3a\x9d\x8e\xbd\xa8\xc9\xdf\xff\xfd\xdf\x37\x44\x83\x93\xfb\x63\x6a\x5b\xd7\xca\x3b\x3f\x79\x66\xc3\x7f\x9c\x5a\x2d\xff\xb1\x07\xaa\xd9\xdb\xe7\xb6\xb8\x68\x56\x60\xcd\x19\x82\x44\x10\xd3\xce\x1d\x2b\x95\x87\x05\xd3\xdc\xd5\xd1\xf0\x2a\x13\x24\x11\xc5\x00\x64\x10\x04\x5c\xaf\xd7\xe9\xc2\x85\x0b\x7a\xae\xb8\xc4\xcc\xc5\x59\xce\x73\xe4\xd3\xa7\x1c\x74\xac\x19\x25\x80\x28\xf4\x64\x5b\x1d\x7d\x57\x99\xac\x6e\x5b\x21\xa1\x6d\x29\xd2\x19\xce\x83\xb2\x79\x2c\xff\xbb\x60\x00\xb5\xd0\x9b\x14\x0c\x3f\xa6\xec\x81\xa8\x03\x07\x0e\x20\xc7\xe4\x5c\x87\x22\xdd\x05\x9c\xbc\x45\x0a\xd0\xa2\xf4\x9b\x29\x4c\x07\x95\x37\xa8\xde\xbe\xb4\xd5\xd5\x55\x34\x1a\x0d\xed\x77\x54\xcb\xfa\x1d\x10\x9a\xeb\x1b\xbc\x33\xcd\x71\xff\xe4\xe8\xb5\xe8\xc1\xbc\x8d\xc7\x41\x41\x2b\x2a\x6f\x92\xcb\x7a\xb6\x88\x7f\x1e\xff\x64\xe2\x53\x6e\xc7\x28\x5e\xd5\x7f\x06\xd0\x2b\xd3\xe2\xd2\xb6\xd2\xaf\x41\xd4\x20\xe5\xd5\x1b\x8a\x5d\x6f\xb7\xdb\x98\x98\x98\x10\x37\x6e\xdc\x30\x45\xce\xcd\xcd\xe1\xcd\x37\xdf\xc4\x47\x3f\xfa\x51\xdb\xef\x44\x53\x25\x4b\x10\x22\x26\x74\xae\x8c\x76\x9b\x57\xeb\xdd\x0f\x86\x43\x6f\xe3\x86\x56\x69\x72\x38\x14\x63\x43\x91\x57\x89\x89\x65\xbb\x14\x37\xd7\xca\xf1\xca\x52\xb5\x77\x35\xf4\x79\x85\x81\x25\x10\x56\x98\x79\x91\x12\x6f\x5c\xc6\xc3\x38\x14\x9e\xbc\xfd\xf6\xdb\x00\x20\xd6\xd6\xd6\x64\xbd\x5e\x37\xab\x3c\x80\x6a\xb9\x27\xc6\x1e\x3d\xbb\xe1\xe9\xdb\x6e\x0c\xfd\x5b\xc1\xa8\x91\x75\xde\x47\xf7\xb3\x6f\x34\x12\xc4\x4f\x74\x76\x8c\xfa\xf6\x95\xf2\x9f\x3c\x7e\x6a\x7c\xfc\xa7\x77\x2c\xfd\x97\xa5\xe1\x68\x4e\xcd\xa7\x0e\x11\xc9\x8f\x7f\xfc\xe3\xf8\xc9\x4f\x7e\x22\xda\xed\x36\x00\xc8\x4f\x7f\xfa\xd3\x19\x9f\x2c\x44\x54\xad\x75\xbd\x4d\x1f\x3b\x3f\xfa\xef\x36\xad\x05\xbf\x23\x40\x81\x5b\xa7\xa3\xe7\xd6\xa7\x00\xac\xf6\x11\x4a\x31\x4d\xdf\x7f\x65\xe4\xcf\xba\xbe\x8c\x4e\x4c\x35\x5f\x91\x89\xf1\x1b\x88\x28\xdc\xb5\x6b\x97\x3c\x71\xe2\x04\x96\x96\x96\x0a\xf5\x6f\xd6\xbb\x28\xf2\xc7\x61\x26\xdd\xf1\xe3\xc7\xc5\x3d\xf7\xdc\x93\x34\x80\xcd\x51\x77\xd9\x0e\x64\x23\x12\x1c\x06\x31\x0c\x61\x60\xbd\x42\x59\xd0\xcb\x20\xb8\x45\x1c\x52\xd9\xc4\x46\xb3\x34\x6f\xa5\x27\xc6\xcb\x91\xa8\xac\x97\xe2\x8c\x6e\xe2\x6f\xff\xf6\x6f\xf3\x08\x5c\xd1\x0e\x4b\x91\xce\x66\x90\xf2\xb2\x28\xdd\x4d\xbb\xd5\xba\x6f\x96\xaf\xaf\xdc\xe3\xc7\x8f\x8b\xad\x5b\xb7\x6a\x99\x52\x7b\x93\x6a\xc6\x1e\x56\x16\xa7\x4b\xaf\x55\x57\xe3\xbd\x41\x9b\x27\x33\x04\x98\xb5\xe0\xa2\x44\x10\x68\x7d\x45\x0a\xd7\x84\x40\x67\x09\x42\x72\x95\x4a\xaa\x34\xd5\x3a\x2a\xcd\x6d\x64\x1c\xf9\xa4\x9f\x19\x51\x45\xbf\xb1\xad\x40\xd5\x17\x38\x09\x44\xcb\x53\xfe\xeb\xed\xba\x98\x45\x32\xf9\x5b\x6c\x39\xb2\x59\x5b\x5b\x83\x22\x1a\x19\x58\x9f\x38\x71\x42\x6e\xdb\xb6\x4d\x6c\xdf\xbe\x5d\x22\x71\x88\x93\x94\x9c\x7c\x97\x38\xd2\x01\x37\x62\x42\x7d\xad\x12\x2f\xac\x55\xe2\x0a\x18\x01\x21\xb9\xa4\x0a\x40\xc4\xe0\x0e\x52\xd7\x79\x0d\x02\x19\xb7\x7d\x94\x78\xe2\x32\xd7\x2f\xbe\xf6\xda\x6b\x38\x7d\xfa\xb4\xdc\xb9\x73\xa7\x78\xec\xb1\xc7\x04\x90\xdc\x56\x48\x44\x81\x90\xa8\x1f\xb8\x5c\x7b\xe2\xf6\xc5\xa1\xff\x29\x21\x1a\x50\x38\x6b\xe3\xab\xea\xaf\x5e\x60\x0d\xb8\x52\x32\x4a\xa0\xca\xe6\xb5\xe0\x77\x1e\x3a\x37\xb6\xf4\x93\x3b\x97\xfe\x9f\x8e\x2f\x13\x22\xc8\x8c\xcd\x9b\x37\x47\x33\x33\x33\x78\xef\xbd\xf7\x00\x00\xdb\xb7\x6f\xd7\xf8\xa0\xae\xfd\xa4\xfa\x87\x66\x47\xfe\xd5\xd6\xd5\xf2\xef\x08\x50\x00\xbb\x1e\xdb\xd6\x21\x45\x06\x25\x2e\xa6\xad\xd0\x4a\xeb\x72\x44\x33\x07\x2e\x8f\xfc\xbb\xc5\x5a\x6f\xfe\xd2\x68\xe7\xa4\x82\x69\xe4\xfb\xbe\x54\x44\xc3\x0e\x45\xfa\x3d\xa9\x6f\x72\xb3\xe9\x95\xcd\x56\x8b\x5e\xaf\x27\xd5\xf5\x08\x9a\xfa\x05\x00\x6a\x5e\x4c\x1b\xf6\x2c\x0e\x3d\x58\x8e\xbc\x51\xcd\x2e\x01\xa9\x75\xa2\x91\x79\x6d\x16\x2a\x83\x7f\x04\xdb\x10\xc9\x56\xc1\x27\xb2\x31\xc2\xd3\x1b\x5b\x2f\x75\x02\xbe\xa1\x06\xba\x47\x44\xf1\xae\x5d\xbb\xf0\xee\xbb\xef\xba\xfa\x0a\x57\x2e\xb3\xc5\x0a\x57\x94\xd0\x13\x56\xb3\x64\x40\xb6\xff\x76\xba\xfd\xeb\x96\x65\xa7\xbb\x71\x76\x7b\xf2\xca\x19\x94\x87\x84\x10\xb8\xfd\xf6\xdb\xf5\x5d\xa6\x44\x09\x00\x3d\x22\x2a\xf5\xca\x14\x95\xba\x5c\x1f\x5a\x93\xb7\x09\x7b\x15\x30\x62\x86\x42\x28\x05\x4f\x2d\xaa\x90\x71\xc0\x63\x35\x85\xac\xca\x2d\x7d\x05\x99\xef\x33\x64\x28\xcd\xc7\x48\xf5\x1c\x8a\xeb\x48\x3b\xa0\x74\x29\x44\x68\x8f\x8a\xb3\x57\xf7\x56\xfe\x36\x2a\xd1\x2c\x11\x5d\x87\x5a\xe9\x29\xeb\x6b\xd3\x2e\xde\x14\x33\x3b\x3b\x8b\x89\x89\x09\x8c\x8e\x8e\x32\x92\xc5\x2a\x56\x13\xbd\xa7\x88\x47\x47\xe1\xc5\x1a\x80\x35\x06\x37\x40\xb4\x02\xc2\x0d\x06\x2f\x01\xb8\x41\x44\x8b\x8a\xcb\x58\x42\xea\xf3\xb3\x8d\xe4\x3a\x80\x88\x99\xe5\x37\xbf\xf9\x4d\x79\xfd\xfa\x75\x02\xc0\x9f\xf8\xc4\x27\x48\x39\x52\xf2\x88\xa8\x02\xc6\xf0\x96\xb5\x60\xf7\x83\xe7\x47\xff\xd7\x4a\xe4\x4d\xf7\xe9\x86\x74\xa3\x6d\x71\x8d\x2d\x04\xb4\x69\x48\x92\xc7\xaf\x77\xbd\xdd\x6d\x5f\x9e\x9e\xaf\x87\x97\x41\xc6\x19\x37\x4f\x4d\x4d\xf1\xb1\x63\xc7\xe4\xe7\x3e\xf7\x39\xed\xd0\xc8\x43\xe2\x3e\x71\x64\x6b\x23\xd8\xfb\xe1\xd9\xfa\xbf\xaf\x44\x62\x5b\xb2\x2b\x49\xe6\x92\xa7\x74\x3c\x52\xd8\x93\x5b\xb1\xa5\x73\x22\x26\x94\x62\xda\x58\x89\xbc\x68\x76\xbc\x7b\x52\xed\xb6\xc4\x44\xc4\x07\x0e\x1c\xe0\x4e\xa7\x43\xd7\xaf\x5f\xd7\xe3\xa2\xc7\xa6\x6f\x4e\xd8\xda\x5c\x3b\x98\x2d\x18\x65\xec\xa2\xe3\x24\x33\x4b\x66\x8e\x7a\x3e\x77\xba\xbe\x5c\xd1\x44\x2f\x51\xd8\x59\x6d\x85\x8a\xcb\x9b\x2e\x26\x5f\x3f\x37\xa2\x0b\x29\xc5\x54\x1f\x0e\xbd\x31\xa8\x63\xd8\x7a\x4b\xd8\xf7\x0d\x93\x74\x33\x2e\xc0\xee\x8b\x1d\x37\xa8\xbf\x79\xcf\x79\xe5\xe6\x95\x95\xb7\x6d\xe5\xfe\xe5\x05\xb7\x0c\xb9\xb2\xb2\x82\x0f\x3e\xf8\x00\x48\xe0\x1d\x21\xdd\x9a\x6c\xb0\x47\x4b\x8b\x3b\x83\x7f\x5e\xdf\xe0\xbd\xaf\xc0\x0e\xfb\x00\xa2\x1e\x8b\x24\xa4\x71\xe6\xf0\x1b\x93\x39\xe0\x66\xf2\x53\xf6\xe0\x9b\x1d\xaf\xc5\x1b\x43\x4c\xe0\xf0\x86\x8a\x2b\xd1\x0b\x85\x1e\xc3\x5e\x99\x96\x16\x6e\x0b\x7e\x16\x0e\x89\xcb\x4a\x09\xd9\x44\xc2\x01\x44\x00\xe4\xe2\xe2\xa2\x0b\xef\x0c\xdc\xc3\x30\x94\x3f\xfa\xd1\x8f\xe4\xec\xec\x2c\x28\xb5\x43\xe8\x00\x68\x2a\x71\x63\x11\xc0\x02\x80\x39\x00\x97\x89\x68\x16\xc0\x05\x00\xb3\x44\x34\x4b\x44\x97\x01\xcc\x11\xf5\x5d\x07\x10\x02\x88\xe2\x38\x96\xcf\x3e\xfb\x6c\xa6\xee\x89\x89\x09\xa8\xb1\x4b\x9c\x44\x4b\xaa\xdf\x75\x6d\xf8\x53\xb5\xd0\xdb\x97\x9e\xf3\x49\x27\xa5\x21\x9c\x19\x3d\x13\x60\xf2\x3a\x03\x4d\x00\x3c\x49\x63\xf7\x5c\xad\x7d\xa5\xda\x13\x93\x48\x5d\x0f\x8a\x52\xa9\x84\x43\x87\x0e\x89\xad\x5b\xb7\x02\xc9\x46\x84\xd6\x27\xd6\xee\xbe\x36\xfc\xf8\x70\xd7\xdb\xad\x69\xbe\x21\xe0\x80\x31\x7a\x33\x36\x24\xa6\x36\x4e\x17\x10\x33\x21\x93\x0c\x02\xe4\x4f\xad\x06\x8f\x6d\x5b\x2d\xdf\x09\xa0\xaa\x98\x01\x41\x44\x78\xf7\xdd\x77\x8b\xe6\x4e\x06\x47\xf3\x64\x76\xe1\x3e\x6b\xfd\x02\x94\x98\x42\x44\x32\x12\xdc\x69\x97\x64\x23\xb5\x1a\xb4\xa0\x69\xd6\x10\x32\x7d\x30\xdd\xb1\xa1\x59\xf4\x9c\x00\xb8\x3a\xd6\xf6\x37\xc1\x72\xc2\xca\xcc\xa2\x5e\xaf\xe3\xf6\xdb\x6f\x77\x59\xff\xbc\x67\x3b\xf4\xc9\x68\x28\x0e\xb6\x08\x21\x0a\xde\x8b\xf4\x16\x79\xe2\x4f\xd1\x37\xee\x7b\x86\x40\x9d\x3c\x79\x12\xdd\x6e\xd7\x4c\x1a\x4e\x2e\x07\x6e\x30\xf3\x52\x38\x24\x66\xaf\xdd\x16\xfc\xa4\x5b\x15\xf3\x1a\x99\xb5\x02\xd3\xec\x52\x01\x8a\xf3\xd3\x07\xdf\x48\x2f\x3c\x86\x03\x01\xac\x61\xa3\xf4\x2f\x79\x4f\x18\x36\x6d\x6b\xa3\x4f\xde\x1a\xb1\x54\xc9\xf0\x29\x57\xa3\xc7\x9a\x21\x3d\xea\xdc\x98\x2e\xfd\x53\x63\xa3\xff\x16\x92\x6b\x01\x56\x90\xd5\x29\x48\xa5\x53\xc8\x83\x7b\x26\xee\x47\x3f\xfa\x91\x3c\x77\xee\x9c\x71\x5c\x83\x94\x88\x36\x55\xb9\x4b\x48\x89\x88\xfe\x5b\x54\x7f\xb6\x3e\xc3\x10\x8d\xb5\xb5\x35\xf9\xe6\x9b\x6f\xf6\xd5\xab\x9c\xe1\x18\x11\xa1\x16\x7a\x5b\x76\xac\x94\x1f\x25\x90\x60\x76\x10\x54\x13\xe5\x4c\x14\x67\xf4\x3e\x0a\x82\x99\xaf\x88\x09\xa3\x1d\xff\xc0\xf4\x72\xe5\x6e\x30\xaa\x40\xc6\x3f\x89\xdd\x26\x1f\x40\x65\x28\x14\x63\x5b\x1b\xc1\x83\x04\x04\x9a\x95\x67\xcd\x4b\x03\x29\xa7\x6e\xea\x86\x12\x1b\xb3\x93\x8b\x9c\xef\xca\x91\x98\xda\x75\xa3\xf2\x31\x3f\xa6\x1a\x14\xf1\x02\x20\x0e\x1d\x3a\x24\x46\x46\x46\xf2\x70\x18\x56\x5c\xdf\xb1\xfa\xdc\x55\x5b\x1f\x7b\x56\x93\x57\x32\x73\x14\x09\xee\xb4\x02\xb9\x62\x78\x32\x17\xa4\xc4\x59\xa8\x3a\x9c\x87\xbd\x05\xc8\x7d\x0f\x80\x60\x12\xe3\xad\xd2\x0e\xc1\x08\xc8\x39\xb3\xa2\x6e\xab\xcf\xd3\x4f\xb8\x7a\x03\xb7\xd3\x76\x70\x09\x03\x72\xf2\xb9\x9c\x82\xcb\x41\x14\xe9\x50\xec\x72\x5c\x8e\xa3\x88\xcb\xcb\xb4\xb3\xd1\x68\xe0\xcc\x99\x33\x46\x19\x8d\x04\xf1\xcd\x75\x80\xcd\x71\xef\x9d\xf9\x3d\xc1\x3f\xf6\xca\xb4\x64\x6b\x37\x52\x9f\xa3\x36\xf2\x10\xb2\x5c\x48\x2a\x16\xa6\x88\xad\xe5\x74\xa4\xdf\x68\xb1\x45\x97\xa4\x88\x92\x3e\x85\x6b\xd4\x27\xd6\x60\x4a\x8f\xc2\xa5\xed\xa5\xd7\x17\x77\x06\xaf\xb2\x48\x56\x7b\x66\x36\x97\xff\x00\x90\x0b\x0b\x0b\x38\x7b\xf6\xac\x8b\x98\x45\x1c\x19\x7e\xf6\xb3\x9f\xc9\x6f\x7f\xfb\xdb\xf2\xfc\xf9\xf3\x36\x2c\x43\x0d\x13\x4e\x1c\x07\x67\xfe\x98\xb9\x85\x94\x58\x85\x00\xa2\xf5\xf5\x75\xf9\xcc\x33\xcf\xc8\xef\x7e\xf7\xbb\xf2\xc4\x89\x13\x99\x3a\x9e\x7a\xea\x29\x9b\xc0\x07\x04\xaa\x6c\x6c\x96\x66\x46\xba\xde\x5e\xc0\x66\x2a\x52\x5d\x4e\x12\xcf\x69\x74\x46\xbf\xa1\xe0\x94\x61\x4f\x92\x5f\xc1\x54\x9d\x5e\xae\xfc\xa6\x60\xe8\x49\xab\xb9\x6a\x0d\x0b\x43\x38\x26\xd7\x4b\xd3\xb5\xae\x3f\x63\x97\x93\x59\x1c\x74\xe5\x44\x30\x16\xc3\x6e\x53\x73\xbe\x13\x20\x7f\xb2\x19\xec\xaf\xf4\xc4\x98\x6e\x83\xe6\xea\x95\x1b\xc7\x41\x74\x41\xba\x1e\xc0\xfa\x42\x1c\xc7\x50\xb7\x78\xeb\x02\x24\x11\x45\xb1\xe0\x70\xad\x1c\x2d\x31\x58\x12\x51\x7a\x73\x3a\x6b\x63\xa4\x2c\xfb\x66\xe4\xe5\xd4\xd5\x74\xa2\x4c\xd2\xc8\x69\x56\x30\xcd\x5a\x11\xc6\xda\xfe\x76\xc1\x54\x89\x59\x66\x0e\xbc\xdd\x71\xc7\x1d\xe2\xd4\xa9\x53\x79\x14\xd1\x7e\xce\xe3\x32\xf2\x90\x35\x8f\xab\x28\xca\x8f\x5b\xc8\x37\x28\x6f\xde\xbb\x1d\x32\xf1\xc7\x8e\x1d\xc3\x5d\x77\xdd\x05\xcf\xf3\x34\xf1\x68\x41\x6f\xcf\x09\xaa\xac\x6c\xf1\xdf\x14\x31\x57\xb6\x9e\x0e\x9f\xf4\x43\xd4\x13\xf8\x27\x08\xc4\xea\xd7\xdd\x7d\xc9\x68\x2c\x2c\x51\xd2\x3e\x6f\xa2\x39\x8d\x84\x58\xa4\x04\xc8\xfe\x9f\x5a\x0a\xb3\x91\xf7\x95\x32\xf4\x8d\x6b\xb7\x07\x3f\x8e\x4b\x74\x19\x6a\xd5\x77\x95\x91\x96\x82\xdb\x86\x9f\x0b\x9f\x3e\x7c\x7c\xe9\xa5\x97\x10\xc7\xb1\x04\x20\xbf\xfa\xd5\xaf\x8a\x72\xb9\xac\x17\xb4\x3e\x78\x6a\x7c\x8d\xa2\x08\x51\x14\xe1\xb9\xe7\x9e\x93\x95\x4a\x25\x8f\x50\xb9\xf5\x28\x53\x6e\x54\xc6\x5b\xfe\x4e\x21\xa9\x9a\x3d\x40\xe7\xa8\x45\x6d\x77\x8c\x56\x48\xb5\x43\x36\xac\x52\x72\xbe\xb1\x59\xba\x5b\x30\xd5\x24\x58\x7b\x28\xb7\xfb\xa1\xb9\x9e\x60\xb4\xe3\x6f\xf7\x63\x1a\x73\xfb\x97\x3d\x02\xe2\x08\x2a\xda\x3a\x9b\xac\xb8\x9c\x50\x0b\xbd\xe9\x91\xae\xb7\xa9\x59\x89\xe7\x80\xcc\xa1\x52\x17\x36\xee\x62\x27\x6c\xcb\x51\x3b\x43\x06\xd1\x8f\x1c\x39\x82\x03\x07\x0e\x68\x96\x34\x71\xbd\x4e\x14\x35\x2a\xf1\x42\x2c\x38\x24\x89\x4a\x4a\x11\x13\x84\x4c\x4d\x94\xf4\xea\x96\x52\x44\x1d\x97\xd5\xd6\xab\x73\x10\xd6\xd6\xed\x68\xdb\x9f\xae\x44\xa2\x1a\x95\xd9\xe7\xc4\xa5\x3e\x98\x59\x9c\x3a\x75\x4a\xdf\xfe\x65\xda\x88\xfc\xc9\x9f\xc7\x85\x14\x4d\xdc\x3c\x2e\xc6\x8d\x47\x4e\x5a\x1e\xdc\x06\xe9\x50\xf2\xea\xca\x9b\x2c\xa2\xd5\x6a\xc9\x9f\xfe\xf4\xa7\xe2\x89\x27\x9e\x30\xe6\xe7\x94\x5c\x1d\xe8\x03\xf0\x99\xe0\x2f\x6d\x2b\xfd\x42\x7a\x14\x4d\x9d\xea\x3e\x59\xea\xf0\xb8\x41\x4d\x82\xb1\xec\x4c\x50\x98\xcc\x21\x2f\x32\xc4\x05\x66\xb1\xb2\x68\x80\x2a\xc2\x1a\x3b\x43\x5c\x52\x6d\x7d\x3a\x59\x94\x8e\x43\x50\x74\x63\x47\xe9\xb5\xf9\xdd\xe5\x1f\xc7\x01\xcd\x32\xb3\x26\x1a\x4d\xb5\x2b\x14\x11\x91\x5c\x58\x58\x30\xfd\x2b\x80\x61\x11\xdc\x84\x22\x1a\x00\x20\x9e\x7b\xee\x39\x93\xfe\x87\x7f\xf8\x87\x78\xe1\x85\x17\xe4\xd7\xbf\xfe\x75\xf1\xec\xb3\xcf\x9a\x5f\xfb\x5b\x00\xe8\x74\x3a\x85\x44\xc9\xf7\x7d\x73\x0e\x85\x94\x49\x77\x35\xf4\xa6\x08\x64\xae\x39\x4d\x01\x91\x3e\x66\x39\x91\x14\x9f\x53\xc2\x92\x75\x8f\xa9\x9f\x83\x58\x8c\x7b\x92\xaa\x3d\x21\x0d\xc7\x01\x98\x43\x8e\x42\xe1\x7b\x30\xdc\xf5\x26\x04\xc3\xef\x2b\xdf\xde\x41\xd1\x1c\x25\xd9\xf5\xe7\x11\xad\xec\x42\xe2\xc7\x54\xab\x44\x62\x4c\xd9\x89\xe8\xab\x15\xb0\x65\xcb\x16\xf8\xbe\x8f\x28\x8a\x0c\xec\x5c\x58\xe6\xb1\xea\x6e\x30\x7a\x0e\xa4\x54\x27\x02\x10\x36\x2a\xd1\xf5\x48\x70\xcb\x20\x65\x5f\xb3\x35\x45\x64\x83\x64\x29\xc4\xd9\x6c\x7b\xe8\xee\x27\xdc\x86\x26\x34\x8c\x6a\xe8\x6d\x19\xe9\x78\xe3\x40\x56\x5c\xf9\x83\x3f\xf8\x83\x81\xac\xad\xdd\xee\x01\xf1\x79\x48\x94\xc7\x39\xe4\xc9\x79\x76\xde\xa2\xf4\x3c\x80\xdb\x7f\x83\xb8\x1f\xf3\x7e\xe5\xca\x15\xcc\xcf\xcf\xeb\xb3\x2b\x21\x92\x95\xbb\x09\x60\x89\x88\xe6\x21\x68\x6e\x65\xab\xff\xcb\x8b\xf7\x56\xbe\xd7\x1e\x15\x17\xcc\x6e\x0a\x34\xf7\xec\x18\x80\x19\x71\x46\xeb\x34\x28\x55\x6c\x1b\x76\x9a\x60\xaf\x90\x59\xa1\x1a\x29\xc1\x50\x4a\xd9\x28\x10\x8d\xab\x7b\xcb\x2f\x5e\xdd\x5b\xfe\x87\x38\xa0\x0b\x48\x8c\xac\x16\x94\x12\xb3\xa5\xda\x2d\x17\x16\x16\x60\xb9\xe4\xcb\x1b\xbf\x3c\xae\xad\x88\xc8\x1b\x78\xbd\xf0\xc2\x0b\x00\x60\x88\xc5\xb3\xcf\x3e\x9b\xf3\x49\xae\xae\x0a\x00\x70\xef\xbd\xf7\x0a\xed\xec\x57\xe1\xb9\x0f\xc0\xf7\x12\x33\x72\xd5\x65\x7b\xd2\x66\x54\x0a\x1a\x9a\xfd\x35\xea\xc5\x51\xeb\x17\xac\x89\x2d\x24\x2a\xbe\x44\xa0\x94\xa0\xa6\x2d\x8a\x68\x18\xef\xe9\x91\xc7\x42\x3b\xc4\xca\xd6\xa7\x9e\x5d\xf7\xed\x4e\x53\x6c\x83\x7c\x67\x99\x06\x01\x82\x12\x55\x80\xbe\xe7\x46\x00\xc0\xc6\x8d\x1b\x11\x45\x51\x9e\x62\xd4\xc0\x30\x6f\xe2\xe8\xdf\xdc\xc1\xd5\x87\xaf\x00\x44\xab\x95\x78\xa9\xe3\xcb\x86\xea\x70\xda\x21\x8b\xc9\xb0\x1b\xcf\xe6\x9f\x5e\x03\xad\x3e\x2a\xe9\x26\xfd\x8e\x10\x48\x1a\xdb\xd8\x2c\x6d\x57\x9e\xb1\x7d\x52\x17\xef\x06\x41\x60\xb7\xb7\x88\x80\xdc\x2c\x3e\xaf\x7f\x79\xc4\xc1\xae\xc7\x46\xe6\xa2\xbc\x79\x04\xc4\x8e\x73\xf5\x23\x76\xdd\x7d\xec\x73\x1c\xc7\xf2\xc5\x17\x5f\xc4\xb5\x6b\xd7\x80\x64\x45\x0a\x15\xeb\xdf\x00\xb0\xc8\xcc\xf3\x20\x9a\x5b\xdf\xe0\xbd\x75\xfe\xfe\xa1\x17\x96\x76\x94\x5e\x8f\x4b\xe8\x64\xd7\xa7\x6c\xb0\xb7\xcf\xa1\x1f\x73\x73\xb3\xc9\xa6\xb7\xd5\xd9\x26\x22\x82\xe4\xfa\xb8\x7f\xee\xe2\x7d\x95\x17\xae\xef\x2c\xbd\x2c\x3d\x9a\x05\x30\x8f\x54\x31\xd9\x84\xa5\x10\x3d\x71\xe2\x84\x46\x48\x37\x14\x89\x79\x79\x21\x8f\xe3\xb3\xd3\x8a\x44\x4b\x37\xbd\xef\x5d\x1b\x5d\x31\x33\x98\x20\x7a\x1e\x47\x46\x0b\xa4\xba\xcd\x86\x62\xa4\x13\x31\x65\x3a\xac\xa9\xcd\x16\xbe\xe7\x18\xde\x45\x1e\x77\x7a\x1e\x6b\x2e\x27\xd3\x37\x8b\x13\x17\x8d\x4a\xb4\x2a\x89\x43\x62\xb5\x05\xcb\x6e\x7d\x7a\x4f\xcb\x52\xd6\x32\xb2\x94\x46\xb5\x92\xed\x79\x08\x42\xa3\x12\xcd\x2d\x55\xa3\x95\xbe\xc6\x01\x18\x1a\x1a\x1a\x24\xaa\x0b\x17\xd0\x79\xab\xa4\xf4\x7d\x5f\x48\x29\x35\xd1\x30\x5b\x84\xa1\x27\x5b\xeb\xe5\x78\x11\x39\xa1\x50\xb2\x2a\x48\xa0\x9c\x74\x62\xf2\x27\xd7\x83\x3d\x82\x51\x81\xa5\x7d\x2e\x97\xcb\x76\xfb\x74\xb0\x89\x48\x1e\x31\x44\x41\x5e\x3b\x4f\x5e\x19\x83\xf2\xb9\x04\x20\x8f\x90\xc9\x01\xf1\xb7\xd4\x76\x29\xa5\xfc\xfb\xbf\xff\x7b\x29\xa5\xd4\xbb\x2c\xfa\x16\xaf\x06\x25\xe6\xd3\xf3\x20\x9a\xeb\x55\xc4\xa9\xcb\x77\x95\xff\xee\xe2\xfe\xca\x5f\x35\xc7\xbd\xb3\xb1\x4f\x61\x3f\xca\x02\x16\x23\xed\xbc\xa3\x0f\xd9\xb4\x7a\x4a\x23\x73\x62\x63\x43\xb2\x33\x4c\x0b\x57\xf7\x04\x3f\xb9\x70\x5f\xe5\x85\xe6\xb8\xf7\x16\x04\x5d\x06\x61\x0e\xc9\xae\xc6\x12\x2c\x2b\x51\x66\x96\xcf\x3c\xf3\x8c\xd4\x87\xd9\x54\x28\x82\x5b\x1e\xac\x8a\xe4\x6e\xe4\xc4\xbb\x63\x63\x87\x3c\x98\xcb\xe3\xc7\x8f\xdb\x0e\x7c\xcc\x22\xd8\x2a\xc5\x0d\x06\xa4\xd1\xf5\xe8\xc5\x8d\xb2\x0b\xbc\xf5\xa1\xf5\x0c\xb3\x2d\x6b\x27\xe9\x6a\x5a\x25\xb9\x22\xc9\x5c\x9a\xe4\xb6\x4f\xb7\x47\x36\x83\x78\xa5\xe7\x71\x2b\x21\xe0\x9a\x8f\x4c\xeb\x23\x8b\x3b\x54\xd5\xa6\xc4\xde\x21\x58\xe9\x69\xa5\x84\xaa\x5c\x1b\x09\xcf\x35\xcb\x71\x03\xf9\x30\xb7\xdb\xd4\x37\x56\x79\x8e\x7c\xfa\xe4\x7b\x25\xeb\x98\x38\x4d\x3c\x22\x8f\x5b\xab\x95\x78\x61\xdb\x2a\x90\xca\x5a\xc8\xe0\xa5\xed\x00\xdd\x51\x69\xa4\x97\xe4\xa4\x51\x26\xaf\x3e\xf1\x39\xb9\x5e\xda\x1d\x44\xa2\xd6\x2a\x99\xfb\x39\x6f\x49\xb1\x98\xd3\xe1\xa2\xfe\x15\xa5\xb9\x61\x50\x7a\x51\xdd\xb7\x12\x8a\x74\x2b\x7d\xe5\xbc\xfa\xea\xab\x78\xf8\xe1\x87\xa5\x92\xc7\x43\x67\x9b\x3c\x02\x21\x64\x8f\x3a\x8d\x4d\x7e\xb3\x35\xe6\xcd\x8e\x2c\xc6\x7b\x37\xcc\xf5\xf6\x57\x1b\xf1\xb4\xd7\x43\x05\xd2\xbe\xd4\xc9\x16\x8b\x53\x02\x92\xda\x0e\xa9\x15\x4c\x9d\x94\x65\x00\xd2\x43\xd8\x1d\x16\x8b\xab\x9b\xfd\x77\x57\xb7\xf8\x27\x3b\x55\x71\x09\x82\xf4\xd6\xe7\x92\xfa\xd3\x3b\x1b\x21\x33\x47\x52\x4a\xf9\xad\x6f\x7d\x2b\x4f\xff\x33\xa8\xdf\x45\x22\x9c\x0d\x17\x3b\x1d\x4e\xfa\xbf\xa8\xbc\x7b\xef\xbd\xd7\x70\x53\xd6\x44\x96\x0b\xb5\xf0\x52\xe4\x71\x2b\x88\xa8\x66\xc9\x7e\x0a\x47\x2d\xe4\xb5\xf4\x0b\xac\xd2\x92\x09\x6c\xe9\x44\x54\x5e\x22\x40\x82\xe5\xe9\x4d\xad\xc3\x91\x60\xc3\x8d\x39\xc7\x3a\x8c\x2e\xf1\xc6\x70\x6f\x71\x65\x28\x9a\x1d\x4a\xec\x3e\x8c\xe8\xd3\xbf\x00\x3b\x11\x79\x6e\x28\x2c\xb1\x26\x12\xb2\x75\xb5\x1e\x9e\x8d\x04\xdb\x8e\x8c\x24\x00\x9c\x3a\x75\x0a\xca\xd9\x50\x21\x7c\x6d\xcb\x51\x5d\xbb\x44\xff\x5c\x96\x47\x8f\x1e\xe5\x07\x1e\x78\x40\xe7\xf5\x01\x0c\x31\x61\x68\xac\xe3\x6f\xdf\xb1\x52\xbe\x57\x30\x89\xac\x25\x68\x3a\xf9\x75\x31\xa9\xf2\x33\x1d\x00\xb2\x6a\x21\xcd\x67\x51\x0a\x7c\x8f\x49\x9c\x9f\x68\xbf\xde\x0a\xe2\xeb\xac\xae\xea\x03\x20\xef\xb9\xe7\x1e\x1c\x3f\x7e\xdc\x1e\x16\x76\xfe\x74\x7f\x6c\x89\x28\xaf\x7f\x3a\xde\x1e\x0e\x69\xe5\x65\x2b\x7d\x90\x04\xe0\xe6\xa5\x82\x34\xe9\xa4\xeb\x38\xb7\x0f\xe4\x96\xb1\xb4\xb4\x44\xeb\xeb\xeb\xd8\xb6\x6d\x9b\x3e\x04\x26\x91\xbd\x62\xb0\x0b\xb5\xfd\x28\x3d\x5a\xef\x8c\x88\x85\xc6\xc6\xd2\x85\xf5\x71\x6f\x36\x2a\x53\x53\x6d\x69\x09\x92\xfa\x54\x74\x82\x85\xe6\x3c\x65\x86\x0f\x26\xb0\xa0\x48\x96\xd0\xe9\x0e\x7b\xd7\x1b\x1b\xbd\x33\xd7\x67\x82\xd7\x17\x76\x05\xaf\x35\x36\xfa\x6f\x45\x65\x31\x0b\xa2\x79\x24\xa2\xc9\x75\xa4\x46\x56\x86\xd3\x88\xe3\x58\xbe\xfe\xfa\xeb\x58\x5c\x5c\xb4\xfb\x6e\xc3\x3b\x6f\xec\x74\x3a\x90\x0f\x17\xf7\x1b\x1b\x86\x36\xec\xf3\xde\x19\xe9\x64\x30\x79\x86\x87\x87\x31\x33\x33\x03\xeb\xf8\x7a\x09\x84\xe1\x98\x30\xbc\x73\xb9\xb2\x7f\xb8\xe7\x4d\x26\x08\x6a\x8d\x46\x06\xab\xb2\x1c\x9b\x99\xdb\x36\x51\x31\x34\x84\xb1\x5e\x8e\xaf\xbd\x76\xdb\xea\x5f\x85\x3e\x5f\x03\x41\xeb\x81\xb4\xd3\x1f\x56\xba\x06\x9f\x88\x2a\xb1\xc0\xd0\x70\xe8\x4d\x4e\x35\xca\x77\x7b\xac\x0e\xa5\x16\xb2\xf3\x76\xfb\xb2\x99\xd2\xa3\x03\x49\x7b\x6e\x0c\xf7\xce\xbf\xb5\x7d\xed\x87\x9d\x40\x5e\x51\xba\x28\x63\x51\x7b\xf5\xea\x55\x5c\xba\x74\x49\xc3\xcb\x85\x3f\x80\xe4\x90\x5b\x91\x3e\xa3\x50\xcf\x81\x64\x85\x0b\x01\x84\x4b\xd5\xde\x95\x48\x70\x27\xb9\xdf\x93\x32\x28\xa1\x59\x3e\x5b\x55\x6a\xbf\xa7\x9d\x44\x3a\xbc\x8a\x6b\xd1\xfd\x2e\x47\x62\xd3\x96\x46\x30\xb3\x50\xeb\xbd\x4b\x84\x00\x40\x47\x53\xe7\x6a\xb5\xaa\x6f\xb7\x02\xf2\x57\x6b\x97\x35\xce\xcb\x97\xd7\xe7\x9b\xad\x84\x45\xdf\x15\xb1\x7b\x37\x2b\xc7\x55\xdc\xe5\x95\x2b\x00\xc8\xd3\xa7\x4f\x0b\x00\xf8\xd8\xc7\x3e\xa6\x6f\x14\xb3\x57\x70\x6d\xb3\xa0\x75\x20\x2b\x71\x80\x95\xb5\x71\xef\x6a\x73\x83\x77\xca\xef\xf1\x86\x52\x87\xc7\x87\x1a\xf1\xa6\xa0\xcd\x63\x41\x47\x8e\x79\x21\x57\x85\x84\x4f\x92\x7d\x26\x92\x2c\x10\xc6\x3e\x85\xbd\x0a\x35\xc2\x21\xb1\xd2\x19\x11\x0b\xdd\x21\xb1\x14\x95\xe9\x06\x0b\x6a\x20\x39\xad\xdc\xd0\x7f\x4a\x5c\x6a\xc2\xb2\x99\x60\x66\x19\xc7\xb1\xfc\xe5\x2f\x7f\x89\xf7\xdf\x7f\xff\x66\xfd\xee\xeb\xe3\x2d\xe4\xb1\x43\x91\x58\x92\x2b\x9b\xe7\xb5\xe3\xdc\xb9\x73\xf2\xe1\x87\x1f\xd6\xdb\xbb\x9a\x18\x77\x5a\x41\xbc\x74\x66\xb2\xf5\xab\xc9\x66\x69\xaf\x40\xff\x96\xaf\x4d\xff\x0d\x7d\x70\x15\x1f\x36\xd7\xa1\x1e\x67\x37\x74\x8e\x35\xcb\xf1\x12\x28\x35\x8a\x63\xeb\x8e\x64\xf5\x6e\x2e\x96\x7e\x7f\xd3\xfa\x91\xdb\x6e\x0c\x3d\xb8\x79\xad\xb4\xd7\xdd\xd6\xcd\x0b\xce\x06\x4b\x76\xce\x11\x21\x12\x1c\x9e\xda\xd8\xfa\xd5\x6a\x25\x9a\x87\x65\x18\xa7\xfa\x8e\x66\x53\x9f\x29\x2c\x1c\x1f\xe1\xb2\xfe\x83\xb4\xdd\xd2\xd1\x71\x44\x44\x14\x2e\x55\x7b\x0b\x9d\x92\x5c\x2a\xc7\xa2\xc6\xaa\xd5\x8a\x61\x48\x88\xb2\xc5\xd2\xa5\x8a\x65\xd5\x6d\xb3\xc2\x59\xd4\x3c\x23\xea\x30\x04\x10\x6c\x59\x2b\xff\xc6\xbb\xb2\xf5\x4a\x4f\x48\xa3\xfd\x0d\x82\x40\xb6\x5a\xad\x3c\x64\xcb\x93\xa3\x5d\x36\x19\x28\x26\x02\x76\xb0\xbf\xcd\x13\x7b\xf4\xf3\x20\x31\x28\xaf\x2d\x45\x72\x7a\x51\x5a\x46\xc6\x3c\x7d\xfa\x34\x4e\x9f\x3e\x8d\xcf\x7c\xe6\x33\x62\xdb\xb6\x6d\x99\xdb\xd4\x91\x4c\xdc\x16\x12\xd3\xec\x06\x12\x25\x65\x8d\x09\xd5\xa8\x2c\x6a\xbd\x80\x2b\xad\xba\xa8\x10\x10\x10\xa3\x42\x31\x4a\xc4\xec\xeb\x7b\x6c\x58\x50\x24\x05\xba\x2c\x10\x22\xf1\xfb\xa9\x6f\x5c\x6f\x11\x25\xc6\x56\x16\xa1\x68\x52\x72\x73\x7b\xe6\x36\xf4\x38\x8e\xf1\xe7\x7f\xfe\xe7\x45\xfd\xc8\xeb\x53\x1e\xbc\x6f\x26\x73\x0f\x82\xdb\xad\x3c\x67\xc2\xb7\xbf\xfd\x6d\x79\xe8\xd0\x21\xa1\xfb\x00\x20\x94\x84\xe6\x99\x8d\xed\xb7\xf6\x5e\xaf\x3e\x34\xb9\x5e\xda\x4d\x70\x89\x40\x2a\x36\x90\x83\xbf\x94\x61\x86\x00\xbd\x8b\xb8\x56\x8e\x17\x8e\x4f\x35\x5f\x65\x65\x82\x6f\xd5\x67\x16\x01\x4e\xbd\xbf\x75\x88\xa8\xd5\xa8\x44\x73\x27\xa6\xd6\x5e\x7a\xe8\xdc\xd8\x96\xa1\x9e\xa8\x67\xb5\x1a\xd6\x84\xd1\xce\x94\x48\x71\x18\xd6\x82\x9d\xe6\x66\x5c\x1e\xed\x9e\x3c\xbd\xa9\x75\x44\x0a\x68\x7f\x24\x7a\xfc\xa4\x32\x3b\x77\xe1\x65\xbf\x27\x7a\x4f\x67\x00\x8a\x82\xbc\xeb\xae\xbb\x84\xea\x14\x2c\xe2\x11\x76\x4a\x72\x65\xa5\x12\xcd\x8f\x76\xfc\x69\x23\xd7\xb1\x25\xa2\x58\xad\xb6\xaf\x23\xd4\xe2\x8a\xad\xd7\xe8\xeb\x25\x25\x94\x72\xf3\x5a\x70\xf7\x50\x4f\x8c\x45\x15\x5e\x50\xfb\xdb\xf6\x64\x1d\x44\x18\xf2\x56\xaa\x3c\x82\x51\xa4\xeb\x28\x92\xab\xf3\xd2\x6e\xa5\x1e\x38\x79\xdc\xf7\x5b\xe1\x72\x4c\xde\x9f\xff\xfc\xe7\xe8\x76\xbb\xf2\xe9\xa7\x9f\x46\xa9\x54\x32\xc8\xa7\x11\x1f\x8a\xf3\x50\x67\x1e\xaa\x00\x2a\xea\xb9\x02\x20\x60\x82\xcf\x02\x3e\x33\xec\x2b\x10\x6d\xf1\x47\x5b\x67\xea\x9d\x9c\x0e\x25\xe7\x45\x6c\x8b\xcc\x90\x52\xd7\x7b\xda\x19\xae\xdb\x5f\xb7\x1f\xb7\xc2\xd1\xdd\x8c\x53\x28\x22\x44\xb7\x52\x6e\x5f\x9e\x87\x1f\x7e\x58\xe8\x3e\x40\x5b\xea\x12\x9a\xab\x43\xd1\xdc\x1b\xd3\x8d\x1f\x7d\xf2\xcc\xf8\x9f\x94\x23\xd4\x8c\xfe\xe2\xa6\x21\xf5\xe1\x0a\x24\xe8\xdd\xf3\xb8\x73\x62\xaa\xf9\xd2\xf5\x5a\x6f\x96\xc1\x0d\x02\x69\x53\xf8\xcc\x7d\x3a\xb0\xb8\x1e\x00\x4d\x10\x35\x4e\x6f\x6c\x1d\xa9\x77\xfc\x2d\xf7\x5f\x1e\x79\x22\x88\xa9\x42\x2e\x5b\xa1\xeb\x34\x92\x91\x4d\x5a\xd8\xcc\xb9\x1b\xd5\x68\xf6\x57\x33\xab\xff\xb8\x56\x8e\x2f\x23\x3d\x74\x18\xea\x36\x5c\xb8\x70\x41\x1b\xd9\xd9\x73\x4c\xb7\xc9\xc0\xce\x43\x56\x8f\x6e\xcb\x9e\x19\x0a\xbd\xb8\xb8\x28\xf7\xed\xdb\x47\xea\xc4\xa6\x00\x50\x22\xa2\x0a\x03\xc3\x13\xad\xd2\xf4\xd6\x46\xf0\x1b\xa9\x72\x54\x53\x40\xad\xd7\x40\x2a\x13\x1a\x85\x69\xca\x75\x24\x9a\xfa\x94\x88\xa7\x44\x24\x29\xcf\x67\xaa\xcc\x8d\x76\x0f\x2f\x0f\xf5\xe6\x88\xa8\xcd\xcc\x3d\x22\x8a\xef\xbf\xff\x7e\x28\x8f\x60\x76\x9b\x6d\xb9\xcc\xee\x83\xab\xa7\x90\x56\x7e\xe1\xc4\xd9\xbf\x4e\xeb\x73\xf5\x14\x76\xfd\xc8\xc9\x67\xcb\x87\x28\xf8\x36\xaf\x7d\x6e\xd9\x19\xd9\x3d\x8e\x63\x06\x80\x63\xc7\x8e\xf1\xfe\xfd\xfb\xb5\x85\xa9\x54\x4e\x62\x7a\x0a\x4e\x3d\x24\x2b\x5b\x5b\x71\x07\xeb\x48\xb9\x11\xfd\xb7\xac\xe4\xdc\x65\x24\xba\x8a\x65\x66\x5e\x22\xa2\x65\x22\x5a\x56\xf1\xab\x48\x44\x93\x35\x4a\x4e\x98\x76\x00\x74\xd5\x02\x12\x4b\x29\xf9\xc8\x91\x23\x78\xf5\xd5\x57\x65\xa3\xd1\xb0\xe1\xe5\xb6\xdb\xd6\x3d\xb8\xba\x1e\x38\xf9\x8a\x74\x45\xae\x6e\x43\x3f\xdb\x63\xa0\xcb\xc9\xd3\x6f\x08\xe7\x7b\x31\x3b\x3b\x2b\xf7\xed\xdb\x47\x9e\xe7\x69\xa5\x22\x01\xf0\x19\x5c\x5a\xa9\x46\x6d\x00\xb4\x79\xad\x7c\x9b\xc7\xf0\xed\x49\x6e\x5c\x27\x1a\x0e\x3a\xe5\x4a\x12\x51\x3d\x69\x6a\x24\x38\x3c\x39\xb5\xfe\xf2\xe1\x1d\x6b\x3f\x8e\x04\x5f\x05\x70\x9d\x88\x56\x91\x1e\xfc\x8b\x9f\x79\xe6\x19\x79\xff\xfd\xf7\x93\x10\x89\x77\x00\x45\xcc\x09\x00\xc5\xc4\xde\xf5\x91\xde\x12\x01\x62\x72\xbd\x94\x78\x7c\x57\xdd\x4b\xdd\x39\xa6\xee\x10\xfa\x02\x01\x8b\xc3\xbd\xd9\x57\xf6\xac\xfc\xf5\xd5\x7a\x78\x92\xc1\xd7\x90\x9c\x20\x6e\x28\xdc\xe8\x49\x29\xe5\x2b\xaf\xbc\x82\x56\xab\xe5\xce\x29\x97\x43\x64\xed\x01\x4c\x4f\x20\x7b\xda\xb2\x13\x4f\xc7\x8f\x1f\x97\x07\x0e\x1c\x10\x94\x04\x1f\x40\x99\x09\xc3\x43\x91\x37\xb9\xeb\xc6\xd0\x03\x02\xf0\x32\x3c\x9b\xd6\x40\xf7\x71\x11\x1a\xd0\x48\xb7\xf9\x54\xad\x66\xab\xcb\x9a\xa6\xc4\x08\xba\xbe\xbc\x32\x3b\xde\x7d\x1b\x84\xb6\x9a\x0c\x31\x00\x79\xed\xda\x35\x5a\x5b\x5b\x23\xab\x16\x97\x10\xda\x13\xde\x46\xb8\x3c\x65\x9c\x4b\x3c\x74\xc8\x23\x0c\x79\x5c\x8e\x5b\xa6\x5d\xa7\xb0\xde\x75\xf9\x76\x1e\x3b\x5f\xde\xf7\x2e\x71\xb1\x89\x1e\x1f\x3b\x76\x8c\xe3\x38\xa6\xa9\xa9\x29\xed\x9a\x8e\x91\x72\x1f\x3d\x24\x6e\x09\x3a\xea\x6f\x1d\x4a\xd4\x50\x84\xc0\xd6\x5b\xac\x21\xe1\x52\x56\xd5\xf3\x3a\x80\xf5\x44\x54\xa1\xb6\x5a\x9d\x7a\x48\x56\xc4\x98\x88\x78\x7e\x7e\x1e\xdf\xfb\xde\xf7\xe4\xfc\xfc\x7c\x1e\x3c\x6d\x18\xd9\x70\x73\x27\x75\x11\x11\x70\x89\x85\x0d\x47\x3b\xce\xe5\x22\x5c\x82\x5c\x54\x67\x06\xbf\x1f\x78\xe0\x01\xbb\x0e\x22\x22\x62\x82\x98\xaf\x87\xcb\x3d\x8f\xbb\x9b\x9a\xc1\x8e\x92\xa4\xb2\x11\x03\x6c\x7b\x73\x6d\xec\x45\xf6\x8e\x06\xa1\xe3\xcb\xe6\xb1\x6d\xcd\x97\xdf\x9c\x6e\xfc\xa4\xe7\xf3\x65\x65\x1c\xb7\x8c\x84\x80\x87\x00\xe2\xb5\xb5\x35\x3e\x79\xf2\x24\x1f\x3d\x7a\x94\x0f\x1c\x38\x40\x0e\x07\x42\x44\xc4\x11\x31\xe6\x47\xc3\x85\xd5\xa1\x78\x65\xbc\x5d\x9a\xac\xf4\x44\x4d\x6f\xc8\x9a\x79\xd7\xa7\x14\x4d\x88\xd6\xf9\xf1\xce\xdb\x2f\xed\x59\xfe\xc1\xc2\x48\xef\x3d\x50\xa2\xd0\x26\xa2\x55\x66\x5e\xd7\x1c\xe3\x37\xbf\xf9\xcd\xb8\xd5\x6a\xb9\x38\xeb\x8e\x1d\x01\x89\xeb\xc0\xbc\x55\x59\x23\x65\x1f\x65\x57\x3b\x2b\x00\xe0\x31\x73\x00\xa0\x1a\x0b\x54\xee\x58\xa8\x7e\x24\x90\x62\xd8\xea\x6b\x5a\x5d\x1e\x15\xd4\x27\xa4\x6c\x14\xb3\x5e\x33\x81\x40\xbe\x24\x9c\x9f\xe8\xfc\x32\xf4\x79\x15\xa9\x32\x27\x7e\xe5\x95\x57\xf4\x04\xb4\x61\x65\x77\xba\x08\xc9\xb2\x35\xf4\xaf\x4a\x3a\xaf\xcb\x29\xb8\x44\xc3\xcd\x93\x97\xd7\x5d\x69\x5d\xee\x25\xef\x3b\x97\x2b\x82\x53\x1e\xdc\xef\xe7\xe7\xe7\xf9\xe8\xd1\xa3\xc4\xcc\x98\x9c\x9c\x64\xdf\xf7\x25\x33\x33\x25\x6e\x17\xb5\x0f\x8a\x9e\xe2\x46\x42\x24\xab\x5d\x97\x99\xdb\x48\xb4\xea\x6d\xc5\xd1\x69\xbd\x86\x76\xb0\x1b\x22\x21\x3c\x5a\x0e\x8e\x99\x99\xe7\xe6\xe6\xf0\xbd\xef\x7d\x4f\x9e\x3e\x7d\x5a\xcf\x1e\x9b\x80\xdb\xe3\xe2\x12\x45\x9b\xab\xd0\xf1\x76\x5f\xf3\x88\x7d\x1e\x5c\xf3\xb8\x4a\x7b\x1c\x5d\x18\x16\x2d\x8e\x12\x00\xed\xde\xbd\x9b\x66\x66\x66\x00\x24\xfe\x38\xed\xfa\x98\x20\xe7\x47\xc2\x1b\x57\xc6\xba\x97\x86\x22\x51\x19\xee\x7a\x75\x8f\x51\xea\x57\xf4\xb3\xa9\xa5\xe7\x71\x38\x37\xda\x3d\xf3\xcf\xb7\xaf\xbe\xf8\xce\xd6\xf5\x5f\xc4\x82\x2f\x83\xe8\x1a\x92\x83\x7f\x6b\x0a\xde\x3d\x66\x96\xef\xbc\xf3\x0e\xe6\xe6\xe6\x18\x80\x18\x1e\x1e\xc6\xe4\xe4\x24\xab\x2d\x62\x56\xaa\x01\x06\x20\x59\x50\x7c\xa3\xda\x5b\x3e\xbb\xb1\xf5\x41\xb3\x1c\xaf\x94\x63\x51\x29\xc5\xa2\x42\x0c\xa1\xa7\x4f\xb2\x62\x20\x6a\x07\xb2\x79\x69\xac\x7b\xe6\x97\xbb\x1a\x3f\x3d\x3c\xdd\xf8\x59\x2b\x90\x17\x18\x3c\x0f\x60\x81\x88\x96\x15\xd1\xe8\x30\x73\x14\xc7\xb1\xbc\x7a\xf5\x2a\x29\xc5\xa8\x4b\xe0\xfb\x38\x39\xdb\x8e\x43\x47\xe6\x29\x03\xed\x20\x95\xb5\x9b\x5e\xcd\x3a\xcd\x72\xbc\x78\x63\xb8\x37\x3b\xbc\xe2\x6d\xea\xcb\x4d\x48\x0f\x4c\x59\x23\x97\x9a\x89\xe6\x07\xc5\x79\x25\x34\x07\x84\x7a\xc7\xbf\x6d\xd3\x5a\x70\xdb\x5a\xa5\x7d\x59\x1d\xb3\x17\x44\x24\xfe\xf4\x4f\xff\x14\xdf\xfe\xf6\xb7\xf3\x2c\x12\xa5\xf3\xaa\xc4\x76\xe9\x00\x00\x20\x00\x49\x44\x41\x54\x5b\xa4\xec\x41\x4e\x9c\x2b\x2f\xdf\x8a\x52\xb5\xa8\xbc\x41\x6d\xba\x99\x22\xd4\x8d\xcb\xfb\xed\x53\x00\x1e\x3d\x7a\x54\x1c\x3d\x7a\x54\x6e\xdc\xb8\x51\xdc\x77\xdf\x7d\x72\xd7\xae\x5d\xa6\x2c\xad\xcb\xb0\x26\x86\xfb\x6e\x6c\x19\x72\x6c\x1b\x30\x3b\x3b\x8b\x1f\xff\xf8\xc7\xb2\x54\x2a\x09\xe7\x42\x9f\xa2\x76\xb9\x6d\x84\x93\x06\xf4\xe3\x9d\x1b\x8a\xe0\x93\xc7\x46\x0f\x1a\xaf\xbc\x7a\x4d\x38\x77\xee\x1c\xb6\x6d\xdb\x86\x3b\xee\xb8\xc3\xe8\x18\x38\x7b\x8f\x8a\xbc\x36\x12\x86\x3f\xbe\x63\xe9\xda\xc6\x66\x69\xe7\xcc\xf2\xd0\x9d\x53\xab\xc1\xf4\x70\xe8\xd5\xcb\x91\xa8\x30\x80\x58\x70\xd4\x2c\xc7\x2b\x0b\xb5\x70\xee\xc2\x78\xe7\xf4\xdc\x68\xf7\x4c\xe8\xf1\x02\x08\x8b\x00\x2d\x28\x11\x30\xe3\xd0\xe8\xf2\xe5\xcb\x38\x7c\xf8\xb0\xe9\xc7\x1b\x6f\xbc\x21\x36\x6d\xda\x84\x89\x89\x09\x3d\xc7\x5a\x96\x0e\x2a\x62\x70\xa7\x55\x92\xad\x63\xdb\x9a\xd7\xdf\xd9\xb2\xfe\xd6\x58\xdb\xdf\xb8\xa9\x19\x4c\xd5\x42\xaf\x2e\x24\xfc\x4e\x49\xb6\x9a\x41\xdc\xb8\x31\xdc\x9b\x5f\xad\x44\xd7\x62\x81\x25\x10\x96\x54\xdd\xb6\xbd\x8d\x39\xb1\xac\x94\xd9\x45\xb8\xd7\x37\x96\xee\xe9\xd8\x3c\x80\x66\x06\xb2\xd9\x6c\xa2\x56\xab\x69\xc0\x86\xcc\x1c\xc6\x02\xad\x2b\xa3\xdd\xf7\x77\xac\x94\x1f\x70\x29\xb0\x4d\x00\x0a\x39\x0a\x9d\xd1\xca\xef\x2a\x7f\x4a\x31\xd5\x67\x96\x2b\x07\xcf\x4f\xb4\x0f\x4b\x41\xfa\x60\x50\xe4\x79\x9e\xbc\xef\xbe\xfb\x70\xf8\xf0\x61\xb7\x1f\x79\x84\xc4\x45\xce\x41\x93\x7d\x10\x02\xdb\xe5\x0d\xfa\x05\x8a\x91\xfc\x66\x44\x20\x8f\x68\x17\xb5\xc5\x9d\x38\x00\x20\xae\x5f\xbf\x2e\x7f\xfa\xd3\x9f\x62\x78\x78\x58\xac\xaf\xaf\xcb\x4f\x7c\xe2\x13\x02\x80\x1c\x1f\x1f\xd7\x4e\x6b\x00\xf4\x29\xe6\x32\xe1\xdc\xb9\x73\x90\x52\xe2\xe5\x97\x5f\x96\xba\x1c\x20\xf1\x0c\x87\x7e\x18\xe5\xb5\x7d\xd0\x38\x14\x4d\x76\x37\xaf\x5b\x57\x11\x21\xc9\xab\x77\x10\xbc\x33\xed\x91\x52\xe2\xd5\x57\x5f\x95\xea\x7a\x45\x89\x44\xf1\x6b\xb7\x27\x02\xd0\xe9\xf9\xdc\x98\x1b\x0d\x17\xe7\xeb\xe1\x19\x5f\x52\xad\x14\x8b\xe1\x72\x44\x15\xa6\x44\x2c\x08\x7d\xd9\xea\x09\x5e\x93\x84\x06\x08\x0d\xc0\xf8\x24\x59\xd2\x3b\x52\x8a\x20\x44\x6b\x6b\x6b\xf8\xe1\x0f\x7f\x68\xb7\x5f\x74\xbb\x5d\x1c\x3f\x7e\x1c\xbf\xf5\x5b\xbf\xa5\xe7\x19\x90\x4c\x74\x09\x98\x7b\x5a\x5a\x00\x56\x7a\x3e\x2f\x5e\x1f\xe9\xcd\x5d\xaf\xf5\xde\xa3\xe4\x78\x3c\x38\xc9\x17\x82\x8c\x2b\x86\x06\x92\x03\x87\xfa\x18\x80\x56\x74\x87\x00\x64\xce\xbd\xb2\x45\xb0\x32\x70\x75\x77\x55\x8a\x90\xc1\x20\xa3\x94\x49\x56\xeb\xcc\x4a\x87\x81\xd6\xdc\x68\xf7\x4c\x2c\xb8\xe3\xcb\xe4\x60\x90\x56\xd8\x18\xc0\x5b\x2c\x47\xe6\x1e\x90\x3c\xf5\x18\x60\xc9\x6c\xfa\x87\xfc\xa9\x95\xf2\x03\xa3\x1d\xff\xef\x96\x86\x7a\x4b\x4a\xc7\x22\x98\x59\x4c\x4c\x4c\x48\xcf\xf3\xec\xd3\x93\x45\x93\xae\x88\xa8\x64\x80\x52\x10\x8a\x88\xd1\xa0\xf2\x07\x71\x2f\x83\x90\xbe\xa8\x5d\x79\x79\x07\x11\x4b\x01\x40\xaa\xc9\xae\xef\x30\x2d\xec\xff\x86\x0d\x1b\xc4\xf2\xf2\x72\x21\xd7\xb4\xbe\xbe\xee\xb6\xc7\x4e\xbf\x15\x62\x70\x33\xb8\xe7\x72\x02\x4e\x5d\x79\x69\x45\x75\x0f\x82\x4d\x61\xfd\xcf\x3f\xff\xbc\xfc\xca\x57\xbe\x82\xa1\xa1\x21\xdb\x42\xd7\x5c\x4b\x49\x44\x4d\x06\xaf\x48\x41\xd5\x50\x70\xb5\xeb\x45\xc1\x7a\x99\xf4\xe9\x6d\x7d\x0b\x9d\x9e\xb4\x4d\xc7\xd6\x45\x1b\x31\x46\x00\xf0\xdd\xef\x7e\x37\x97\x0b\x3e\x7b\xf6\xac\x38\x7b\xf6\xac\x54\x77\xec\x44\x6a\x1e\xb5\x90\xde\xab\xdb\x44\xa2\xac\xae\x26\x9b\x14\x1c\x20\xb5\xac\x4e\xce\x34\xc1\x10\x98\x96\xf6\x4f\xa2\xda\x15\x2a\x51\x55\x5e\xbc\x78\x11\x3f\xf9\xc9\x4f\xf2\xe6\xbd\x0d\x97\xbe\x36\xba\xca\x51\x20\x2b\x3f\xc2\x8a\x03\x00\x3e\x79\xf2\x24\x1f\x3c\x78\x30\xd1\xd6\x30\x7b\x44\x14\x30\x78\xa8\xe7\x71\xe9\x8e\xeb\xc3\x1f\x29\x47\xa4\xf6\x99\x9d\xbb\x36\x74\x49\x94\x88\x1e\xa6\x54\x8b\x68\xd8\x66\x1d\x89\x0f\x04\x58\x76\x20\x8c\x92\xa4\xea\xea\x50\x7c\x7a\x7e\x24\x3c\x4f\x44\xda\x4a\x32\x1e\x1b\x1b\xe3\x77\xde\x79\x07\x51\x14\xd9\x72\xb6\x2d\xe7\xf6\x29\x7a\xad\x78\xdc\xe4\x1b\x5b\xa1\x26\x72\xe2\xed\x34\x47\x63\x93\x79\xcf\xab\xbb\xa8\xbd\xee\xdf\xa0\x34\x20\xbf\x5e\x2e\xf8\x1e\x45\xe5\x29\x33\xe3\xbc\x7e\xe7\xe9\x58\xec\x34\x5b\x87\x63\xa7\xa1\xa0\xdd\x45\x69\x76\x5d\x6e\x7b\x07\x29\x48\x6d\xdd\x85\xb0\xbe\x21\xf4\xf7\x59\xd7\x9d\x07\x63\x83\x27\x8b\x8b\x8b\xb4\x63\xc7\x0e\x56\xd7\x2e\xea\xab\x04\x22\xa4\x4a\x66\x7b\x87\x6a\x15\xc0\x2a\x33\xeb\x5d\xa8\x1b\x96\x48\xb0\xa2\xd2\x35\xd1\x30\x8a\xfd\x13\x27\x4e\x60\x6e\x6e\x8e\x98\xd9\xee\x7f\x06\x4f\x8f\x1e\x3d\x2a\xef\xbf\xff\x7e\x08\x21\xf4\x9d\x2c\xda\x86\xaa\x87\x84\x6b\x68\x29\x5d\x45\xe2\x7b\x95\x79\x45\xed\x86\xad\x22\xdd\x0d\x5b\x53\x0a\xf1\xb6\x22\x1c\x11\x11\xc9\x0b\x17\x2e\xfc\x7f\xc4\xbd\x6b\x90\x1c\xc7\x75\x2e\xf8\x9d\xac\xea\xc7\xf4\xf4\xf4\xbc\x30\x83\xc1\x00\x83\x37\x41\x90\x00\x41\x10\x00\x45\x52\x12\xaf\x64\x4a\x21\xdb\x94\x64\xf9\x86\x63\xef\x2a\xa4\x30\x69\xaf\x6d\xde\xdd\x88\xfd\xe1\xdd\x1b\x7b\x7f\x6c\xc4\xc6\x8d\x8d\x7b\xf7\xc7\xc6\xc6\xee\xbf\x8d\x8d\x90\x65\x87\xf5\x0a\xcb\xf2\xda\x6b\xaf\xbc\x96\xac\x2b\x5f\x5b\xb6\x44\xbd\x0c\x80\x0f\x50\x20\x41\x12\xc4\x73\x66\x30\x33\x98\x47\x4f\x4f\x4f\x3f\xaa\x32\xf7\x47\x55\x56\x9f\x3a\x9d\x55\xdd\xa0\xb4\xb1\x19\x18\x74\x55\x3e\x4f\x9e\x3c\xf9\x9d\x93\x8f\xca\xc4\xf7\xbe\xf7\x3d\x84\x61\xc8\xe7\xa5\x5c\xed\x2c\x27\xe8\x49\x5e\xc8\x64\x1b\x45\x23\x43\x50\x8f\x1d\x3b\x46\xf1\x98\x59\x11\x91\x87\x64\x6b\xac\x19\xd9\xbb\x5d\x3c\xbc\x67\xa7\x70\xd4\x2e\xcb\x5a\xab\x82\xe4\x44\x28\x77\x49\xb3\x1a\x3b\x46\x81\x5d\x66\x4a\x7f\xbc\x43\x50\x40\x81\x0c\xda\x37\xa6\x5b\x3f\x0d\x3d\xec\xc4\xa8\x19\x12\x91\x6e\xb7\xdb\x88\xef\xfd\xb4\x0c\xb0\xf5\x90\x8d\xa2\xd9\xbb\x75\x5c\x68\x64\x1a\x29\xbc\x36\x8e\x71\x84\xc9\x1a\xf2\xb2\xfa\xcc\x3d\x16\x9f\xd3\x26\xf3\x71\xd1\x6d\x1c\xcf\xbc\x3c\x08\x7f\x99\x9f\x0c\xe7\x8e\xd7\x9b\xcb\x81\xab\xee\xdc\x4f\x86\xb9\x3a\xb6\x75\x52\x10\x79\xd9\xae\x30\x17\xd0\xf3\x7c\x38\x20\x70\xda\x5c\x3c\x90\xed\x2c\xcb\x26\x00\x66\x7b\x7b\x9b\xd6\xd6\xd6\x70\xe8\xd0\x21\xe3\xfb\xbe\xb5\x18\xf9\x1e\x99\x4e\xbc\xca\x64\x57\x9d\xb6\xe3\xb9\x0b\xdb\x51\xb7\xd0\xfb\x6e\xa7\x65\x8c\x69\xc7\x93\xca\x41\xb3\xd9\x34\x7f\xfc\xc7\x7f\xac\xef\xde\xbd\x4b\xe9\xe3\x28\x52\x72\x99\xd0\x7d\xf9\xf2\x65\x7d\xf0\xe0\x41\x1a\x1d\x1d\xd5\x88\x26\x6e\x43\xc4\x2b\x65\x31\x2d\xbb\x94\x6c\xd2\xa3\x1d\x56\x6e\xd3\xae\x86\x81\xed\xb7\x69\xb7\xdb\xfa\xc6\x8d\x1b\xf8\xa7\x7f\xfa\x27\x74\x3a\x1d\x57\x7b\x4a\xf9\xe2\x86\x04\x01\xbd\x53\xce\x9d\xd6\x85\x23\x03\xea\x74\x3a\x38\x72\xe4\x88\xfd\xb4\x9d\x62\xf0\x28\x01\xa8\x78\x9a\x46\x8f\xdc\x1f\x39\xaf\x40\x5e\x0a\xeb\x39\x68\x18\x20\x75\x89\x4a\xe2\xd7\x83\x8b\xe4\x83\x1f\xb2\xc1\xc9\x15\x92\x54\x08\x55\x79\x69\xbc\x73\x79\xab\x1c\xdc\x8b\x99\xd1\x35\xc6\x98\xf1\xf1\x71\x73\xfd\xfa\x75\xc4\x63\x6f\x2e\x08\xbc\xc3\xa7\x1a\x04\x69\x61\xe4\x7e\x40\x7f\x67\x37\xe2\x57\x86\x49\x60\x90\x80\xc5\xc3\x78\x79\x3c\xdc\x95\x8f\xcb\xec\x96\xda\x49\xd6\xd1\xe6\xe5\x02\x14\xa9\x99\x65\xb8\xa4\xc7\xc5\x3f\x09\xa2\x3c\x3e\x4f\x67\x1d\x1f\x4a\xc8\x29\x71\x2e\x5f\x5c\x48\x95\xf0\xe7\x61\xd2\x5a\x93\xd6\xa0\x4b\x29\x70\x9a\xa4\x85\xc3\xc3\x92\xba\x6e\x6f\x6f\xeb\xbb\x77\xef\x92\xe7\x79\x98\x9e\x9e\x36\x88\x2c\x05\x6b\x79\x58\x00\x69\x23\xd6\xfc\x88\x2c\x8a\xdd\xf8\xb9\x15\x87\x75\x11\x69\xf8\x50\x6b\x1d\x7e\xf1\x8b\x5f\xd4\xaf\xbf\xfe\xba\xe4\x93\x54\x42\x32\x0c\x6f\xbe\xf9\xa6\x09\xc3\x90\xc6\xc7\xc7\x4d\xb1\x58\xb4\x74\x5b\xeb\xc3\x5a\x42\xed\x18\xa0\x2c\x5d\x76\x1f\x8f\xdd\x1c\x18\xd6\xeb\x75\xf3\xb5\xaf\x7d\x4d\xbf\xf7\xde\x7b\xc4\x86\xf6\x92\x27\xf6\x5d\xb6\x71\x02\x30\x1e\xd2\x9d\x87\x33\xdf\xd5\x51\x74\xb7\xdb\xa5\x2b\x57\xae\xe8\x0b\x17\x2e\xd8\x0d\x2a\x9e\x31\xa6\x40\xa0\x91\x8e\xaf\xfd\x13\xab\x95\x0f\x14\x43\xaa\xf2\x53\x89\x62\x5c\xe8\x91\x63\xc3\x2c\x78\x50\x1a\xf2\x52\x13\xac\x84\x04\x54\x60\x00\x5f\xd3\xa8\x21\xac\xdd\x98\x6a\x5d\x31\xf1\x9e\x0e\x22\xd2\xc5\x62\x51\xff\xf8\xc7\x3f\x96\x9d\xc9\xd2\x2d\xb5\x28\xff\x95\xc0\x01\xc6\x3c\x29\xa4\x12\x60\xa5\x36\xe3\x79\x66\x59\x28\x2e\xa0\x72\xa5\x73\x69\x73\x5e\xae\xb4\x9a\x20\xd2\x72\xba\xa4\x75\xe2\x12\x56\x59\x26\xef\x98\x59\x1a\x48\x02\x2d\x90\x6d\xe2\x9a\x8c\x30\xa9\xe9\x5c\xc2\xca\xeb\xc7\x87\x30\x9c\x1e\x5e\x4f\x9e\xce\x25\xd3\x59\xf1\xfa\xda\xa3\xd9\x6c\x9a\x9b\x37\x6f\x52\xa3\xd1\xc0\xcc\xcc\x0c\x0a\x85\x82\x5d\x1e\xb5\xdb\xc2\x93\xcd\x76\x88\x3b\x6a\xbc\x8d\xdc\x5e\xe7\x10\x68\xad\xf5\xe6\xe6\xa6\xf9\xea\x57\xbf\x9a\x47\x1b\xaf\xa3\x8b\x8f\x6a\x79\x79\x19\xaf\xbf\xfe\xba\x0e\xc3\x90\xa6\xa6\xa6\x0c\x11\x19\xa5\x94\x06\x60\x62\x3a\x42\x44\x16\x78\x08\x24\x9f\x88\x84\xdd\x6e\xd7\xfc\xe1\x1f\xfe\x61\x78\xf1\xe2\x45\x73\xe5\xca\x15\x09\x9e\x52\x1e\xb2\xe4\x8e\xcb\x01\x79\x70\x37\x1a\x84\x7f\x4a\x03\x2d\x2c\x2c\xa8\xe3\xc7\x8f\xdb\x79\x0e\x45\x44\x05\x10\x4a\x81\x32\xe5\xb9\xed\xd2\xe1\xe9\x66\xe1\x70\xf2\xed\x2b\xf5\x40\x83\x4b\x2a\xf8\x6e\x51\x08\x23\xc4\x82\x09\x21\x9e\x60\xed\x91\x4e\x20\x55\x0a\x54\xe5\xf6\x64\xfb\xc7\xbb\x25\xbd\x81\x1e\xa2\x9b\xe9\xe9\x69\x7e\x90\xb1\x14\x78\xd7\xf8\x96\x0b\xbb\x0b\x24\xa4\x90\x4a\xb3\x1d\x2c\x2c\x65\xea\xb2\x7c\x25\xaa\xbb\xf2\x05\xb2\x05\x98\xd3\x2b\x81\xc8\xd5\x11\x79\x7d\x78\x67\xb7\xfe\x10\xf9\x48\x9a\x78\x99\x1c\x40\x64\x3a\xfb\x2e\xf9\x28\x87\x2b\x12\x24\x24\xf8\xb8\x64\x8e\xc7\xe5\xf5\x91\x65\x4a\x8b\x4b\xd2\x27\x2d\x27\x69\xad\xb9\x78\xe1\xd4\xb8\xf7\xef\xdf\xa7\xd7\x5f\x7f\x5d\xef\xee\xee\xd2\xdf\xfe\xed\xdf\xea\xb3\x67\xcf\xc2\x18\x63\x3b\x6e\x72\xfa\x7f\x9c\x5e\xc7\xce\x5c\xb9\x72\x05\x6f\xbc\xf1\x06\xbe\xff\xfd\xef\xbb\xda\x32\xab\x6c\x97\x5f\x22\x5b\xcb\xcb\xcb\xe6\xb5\xd7\x5e\xa3\xcb\x97\x2f\xeb\x4e\xa7\x43\xdf\xfa\xd6\xb7\xc2\xb3\x67\xcf\x42\x6b\x6d\x8c\x31\xe6\x8b\x5f\xfc\x62\xf8\xf8\xe3\x8f\xc3\x82\xc5\xed\xdb\xb7\x69\x77\x77\x57\xca\x17\x72\xda\x42\xce\x75\xc8\x76\xd2\x4c\xb5\xa7\x08\x76\x31\x3f\x55\xa9\xf8\x83\x20\x45\xf1\xdd\x0f\xc6\x98\x3d\x44\x74\xf8\xd1\xa5\xca\x2f\x3f\xf7\xce\xe4\x4b\xbe\x56\xc5\x1e\x52\x30\xc8\x48\xae\x0b\x43\xca\xd2\xe8\x1d\x99\xcd\xaa\x25\x92\xda\xe7\x90\x4c\xeb\xe2\xc2\xf6\xff\xf6\xf2\x91\xad\x3f\x31\xd1\xd9\x96\xf6\xce\x0e\x1d\x9f\xc8\x3e\x88\x7e\xfe\x2e\xeb\x9e\xc7\x0f\x17\x7f\x86\xcd\x83\xbf\x73\x27\x85\xc5\x45\x5f\x56\xbe\x32\x8f\x3c\x7a\x5c\x74\x64\xd5\xc1\x45\x5f\x1e\x8d\x79\xfc\x1e\x54\xd6\xa0\xfc\xf3\xe2\x0c\x6a\xaf\xac\x30\x17\xed\x59\xb2\x9f\xd7\xde\x38\x77\xee\x9c\x8a\x2f\x8e\x4e\xde\x81\xe8\x4a\xc9\x6e\xb7\x0b\x64\xb7\xbd\x2c\x53\xc6\xcd\x72\x79\xfc\xcd\x6b\xe3\x07\x09\x73\x95\x93\x6a\x13\x79\xe9\x34\x90\x46\x17\x89\xe4\x09\xea\xed\xdf\xbf\x9f\xc6\xc6\xc6\x6c\x97\xb6\x37\xbc\x8d\x74\x7d\xe3\x1f\x5d\x1b\x39\x5b\x0a\xbc\x5a\x6f\xf7\x39\x03\x04\xbe\xcc\xca\xad\x09\x01\x1a\xfc\x60\x13\x4b\x54\xef\xab\x3f\xf8\x23\x5d\x6f\xe4\xbd\xe9\xdd\x1f\x76\x0a\x66\x1b\xd1\x5c\x87\x06\x10\xce\xce\xce\x12\x3b\x7a\x5f\x0e\x27\xa4\x16\x95\x96\x81\xcb\xa2\x90\xa8\x9f\x65\x91\x71\x78\x73\xf1\xd4\x65\x05\xc8\xb4\x72\xd8\x22\xd1\x5e\xd2\x26\x87\x5b\xdc\x02\x71\x69\x30\x9e\x87\x34\xdf\xad\xe3\x34\x64\xa5\xb1\x65\xf3\x34\xae\x61\x0b\x2f\x9b\xbf\xf3\xfc\xb8\x93\xf9\xf3\x36\xe8\xb3\x7c\x45\x7d\xb9\x95\x93\x65\xa9\x64\xd1\xce\x69\x71\x95\xe5\xb2\x9e\x14\x00\x5a\x5a\x5a\xe2\x79\x9b\xa5\xa5\x25\x5a\x5a\x5a\x42\xbc\x6d\x41\x0e\xdf\xac\x9f\x2c\x8b\x00\xe8\xc7\x1e\x7b\x4c\xad\xac\xac\xb8\xea\x25\x79\xe6\xb2\xe4\x5c\x72\xd2\xd7\x6f\x59\xbd\x5d\x56\xa8\x8b\x56\x17\x0e\x80\x03\x87\x6c\x48\x9e\x11\x2f\x98\x00\x98\xb7\xde\x7a\xcb\xc4\x27\x9f\xdb\x4a\xf8\xc6\x98\x72\xd7\x33\x85\xe9\x66\xe1\xc0\x4c\xa3\x70\x84\x4c\x32\xe3\xd9\x67\x35\x08\xc3\xa3\x57\x7d\x00\xbd\x2b\x16\x7a\x7e\xbd\x33\x48\x22\xcf\x62\xa0\x26\x5a\x05\xfd\xee\x62\xad\x73\x3d\x9e\x00\xea\x00\xd0\xd5\x6a\xd5\x5c\xbe\x7c\x59\x0a\x02\xef\xa8\xbc\x24\x39\xbc\x70\x75\x60\x1e\x2f\x4b\xa8\x5d\x71\x39\x4f\x65\x5c\x0e\x38\x3c\x6d\x96\x75\x23\xc3\x91\x91\x9f\xab\xd3\x73\x41\xb3\x8e\x97\xcd\x69\xe1\xbc\xc8\x1a\xce\xc8\xa1\x0f\xe7\x5b\x56\x98\x04\x41\xd9\x11\x5d\x1d\x43\xe6\x0b\x11\xc6\xdf\x39\xbf\x5c\x1d\x4a\xf2\xcb\x3a\xa9\x75\x5d\x72\x23\xcb\x91\x79\x49\xe0\xc9\x8b\x2b\x79\x63\x5e\x78\xe1\x05\xf5\xf8\xe3\x8f\xe3\xec\xd9\xb3\x74\xf8\xf0\x61\x3c\xf1\xc4\x13\x74\xfa\xf4\x69\x3c\xfe\xf8\xe3\x78\xf5\xd5\x57\xf5\x27\x3e\xf1\x09\x15\x0f\xbf\x65\x3d\x78\xfd\xa4\x02\x94\xef\x2e\x5e\x48\x40\xe0\xf1\x5d\xca\x92\xcb\x31\x5c\xab\x2a\x36\x03\x89\xde\xa9\xc6\xd8\xbb\x77\xaf\x3a\x79\xf2\xa4\xb5\x0c\x08\xb1\xd5\xa1\x61\x4a\x0a\x54\x39\xbc\x3e\xf2\xb8\xaf\xa9\x98\x1e\x8e\xd8\x1c\xc4\x31\xfb\x40\xfa\x9e\x4d\xbb\xa2\xe2\xd2\x85\x3d\xc2\x0a\xd5\xb6\x5f\xbb\x3e\xb3\xfb\x83\x8e\x67\x76\x0c\x4c\x17\x80\x56\x4a\x99\xd9\xd9\x59\xbc\xf3\xce\x3b\x2e\x0d\x92\xd5\xb8\x52\x68\xb9\x3f\xc4\xbb\x14\x52\xd7\xbb\xe5\xa1\xec\x6c\xb2\xc3\xba\x68\xe1\x71\x80\x34\x5d\xae\x4e\xea\x12\x0e\x97\x16\x95\xf4\x65\x69\x69\x09\x12\x40\x9a\x6f\xbc\x6e\xbc\x1c\x97\xf5\xc0\x7f\x5d\x80\xea\xea\xa4\x32\x6d\x56\x99\x59\xe5\x0c\xa3\x65\xe1\x88\x9b\x45\xbf\x2d\x9b\x83\xac\xab\xdc\x61\xe2\x02\x00\x3e\xfb\xd9\xcf\xd2\x33\xcf\x3c\x43\x17\x2e\x5c\x20\xdf\xf7\x95\xef\xfb\xe4\xfb\xbe\x07\x44\xc7\x1b\xc4\x7e\x38\x7f\xfe\xbc\x9a\x98\x98\xa0\xf3\xe7\xcf\xe3\xe1\x87\x1f\xa6\x8c\xd5\x18\xee\xf2\xea\x9b\x55\xbf\xbc\x3a\x65\x81\xa9\x91\x93\xa3\xbc\xe2\x1c\xd5\xfa\xcc\xb7\x76\xbb\x4d\x73\x73\x73\x18\x1b\x1b\xa3\x68\x5f\x4a\x74\xdc\x19\x80\x91\x8e\xaf\xbd\x85\xad\xf2\xc9\x6a\xc7\x9b\x01\xd8\x1a\x49\xa2\xf7\x18\x02\xb0\x20\x18\xf4\x76\x95\x4a\xbd\xc4\xac\x94\x28\x3e\xa1\x14\xaa\x99\xdd\xa2\x7e\x7b\xb9\xd6\x79\x0f\x44\xed\x78\x46\x3b\xac\x54\x2a\x66\x65\x65\x85\xb6\xb7\xb7\x65\xa5\xa5\x50\xc9\x8e\x06\x47\x1c\x17\x43\x79\x67\x73\x75\x30\x5e\x9e\xe4\x9f\x04\x21\x17\x8f\xa5\xe0\x49\x90\x81\x23\xae\xb0\xe9\x52\x9a\xdc\x35\x76\x97\xf9\xb9\xc0\x46\xf2\x2c\xcb\x2a\xc9\xb2\x1e\xb8\xcb\x8b\x23\x05\x55\x0e\xb9\x24\x70\x4a\x9a\x86\x89\x2b\x9f\x1f\x24\x3f\x97\x0c\xf1\x70\x4e\xbb\x33\xdf\x87\x1e\x7a\x48\x7d\xea\x53\x9f\xa2\xa7\x9e\x7a\x8a\x4a\xa5\x92\x22\x22\x2f\xfe\xe6\x2a\x3a\xaa\x30\x52\xe2\x05\xa4\xaf\x84\xf4\xe2\x4d\x5f\xaa\x58\x2c\xe2\xfc\xf9\xf3\x38\x7e\xfc\x38\xbd\xf1\xc6\x1b\x2e\x7e\x49\x59\xe3\x4e\xd6\x9f\xd7\x01\x19\xfe\x8e\x1e\xd8\x8b\x6b\x2d\x0e\x9e\x98\x0b\x99\x14\xd4\x84\x21\x5a\x6b\xba\x76\xed\x9a\xb6\xbb\x48\x01\x28\x63\x4c\x81\x88\x4a\x5d\xcf\x14\xc6\xda\xde\xcc\x7c\xbd\xf4\x70\xfa\xc8\x35\x9e\x9d\xf5\x4a\xa1\x41\x1a\x34\x78\x1a\x76\x19\x50\x2f\x2e\xbc\x6a\xdb\x1b\xbf\x3e\xdd\xfa\x61\xc7\x33\x3b\x20\x74\x89\x48\x2b\xa5\xcc\xd8\xd8\x98\xb9\x75\xeb\x16\x05\x41\x20\x1b\xdd\xa5\xe5\x5c\x0c\xcb\x42\x75\xce\x9b\xac\x4e\x9e\x57\x0e\x98\x7f\x5e\x9c\xbc\x70\x09\x42\xa9\xb6\x61\xe9\x5c\x9d\x5c\xd6\xcb\xc6\x71\x69\x49\x29\x30\x59\x40\x2b\xcb\x71\x75\x58\x29\x47\x2e\x61\x95\x43\x03\x20\xdf\x9a\x92\x96\x5e\x4a\xb9\x65\xf0\x8f\x5b\x5f\xbc\xde\x92\x17\x52\x69\x70\x1a\x24\xcf\x38\xf8\xf6\x59\xb1\x1f\xff\xf8\xc7\xd5\xb9\x73\xe7\xe0\x79\x9e\x05\x0c\x8f\x88\x0a\x44\x54\xf4\x43\x1a\x19\xe9\xaa\xb1\xf1\x96\x3f\x3d\xd5\x2c\xcc\x54\x5b\xde\x78\xb9\xab\x46\x09\x28\x18\x82\x32\x04\x05\x82\xdd\x28\x46\xe5\x72\x19\x67\xce\x9c\xc1\xde\xbd\x7b\x29\xe7\x2a\x54\xeb\x5c\x0a\x90\xd7\xdb\x49\xaf\xe0\x35\xe7\x85\x8d\x07\x0f\xfd\x8d\xc1\x33\x91\x9d\x24\xa5\xbd\xc6\xc7\xc7\xd5\x43\x0f\x3d\x64\x6f\xc1\x22\x8a\x2e\x93\x29\x12\x51\x39\x50\xc6\x3f\xbc\x5e\x3e\x53\x0a\xd5\x68\xea\x7e\x41\xb6\xaf\xbc\x77\x80\x6a\x5c\xab\x98\x92\xf4\x17\xcd\xd1\x8b\xb1\xa0\x42\x60\x87\x20\x13\x4a\x81\x9a\xe9\x78\xe6\xd6\xd2\x78\xfb\x5d\x43\xc9\xe7\xf6\x41\xad\x56\x33\xad\x56\x0b\xf7\xee\xdd\x1b\x88\x9e\x2e\xc6\x38\xe2\x93\x23\xcc\x3e\xbb\x04\xc8\x15\x9f\xf3\x95\xf3\x59\x86\x65\x95\xe3\xd2\x82\x79\x1a\x42\xfa\xf1\x32\x79\x5a\xd9\x79\xc0\xde\xc1\xfc\xb9\xd0\x65\x95\x2d\x01\x47\x0a\xb5\x6b\x18\xec\xaa\xa3\x86\x9b\x76\x5e\x07\xc9\x4b\x59\xa6\x04\x07\x59\x57\xa0\xbf\xb3\xf0\x3c\xe5\xe4\xb0\x4b\x7e\xb8\xec\xa4\xca\x29\x14\x0a\xea\xb9\xe7\x9e\xa3\xa3\x47\x8f\x02\xd1\x30\xc4\x8f\x95\x6b\x79\xa4\xa3\x26\x0f\xaf\x97\x4f\x9c\xbd\x5b\xfd\xc4\x13\x77\xc7\x3e\x77\x7a\xa9\xfa\x9b\x27\x57\x2a\xff\xf9\x89\xd5\xca\x67\x4e\xac\x55\x7e\xf9\xf0\xfa\xc8\xd9\xb9\xed\xd2\x9c\x21\xd3\x6e\x15\x74\x37\x54\x51\xbb\x10\x11\x94\x52\x66\x62\x62\xc2\x1c\x3c\x78\x90\x6e\xdc\xb8\x61\x3f\xb5\xb0\xe5\xf3\x76\x71\xcd\x89\xf1\x7a\x67\xc9\xa9\xb4\x84\x6d\xde\x49\x7a\x97\xc5\xe1\x42\x21\x5e\x50\x52\x60\xbb\xdd\xd6\xd3\xd3\xd3\x76\x33\x8a\x8a\xc1\xc3\x07\x50\x6a\x7b\x5a\xcd\x34\x0a\x07\xa7\x9b\x85\x43\xc9\xc9\x44\x09\x08\x50\xef\x03\x38\xc3\x32\x27\x7b\xd4\x1a\xf5\x3c\x01\x98\x04\x4d\xe2\xbb\x66\xe3\x38\x04\x40\x19\xf2\xc6\x5b\xfe\xcc\xad\xc9\xf6\x4f\x9b\x05\xbd\x01\x8a\xce\xe9\x00\x60\xa6\xa6\xa6\xcc\x6b\xaf\xbd\xe6\xd2\x34\x52\xe3\x70\x2d\xc8\x19\x25\xfd\x25\xfa\xda\x78\x72\x78\x27\xad\x35\x39\xf4\xe3\xe1\x2e\xd0\xe2\x79\xcb\xb2\xa5\x30\x4b\xed\x2b\xb5\xa1\xac\x33\x44\x5a\xde\xa6\x70\xbc\xcb\x09\xc0\x2c\xcb\x85\xcb\x4d\x9e\x85\x21\xe7\x7b\x24\x3f\x64\x79\xae\x76\xe3\xd6\x91\x2b\x0e\x84\x7f\x16\x7d\x12\x50\x80\x7e\xcd\x3d\x88\xbf\x60\xfe\xc9\xbb\xef\xfb\xea\x97\x7e\xe9\x97\x60\x41\x23\x56\xa8\x25\xcf\x50\x75\xff\x66\xe9\xe8\x47\xae\x4f\xfc\xce\xe3\x8b\x63\xff\x66\xdf\x76\xf1\x3f\x1b\xeb\xf8\xe7\x4a\xa1\x3a\x54\xd0\x6a\xae\xa0\xd5\xbe\x52\xa8\x0e\x55\x3b\xfe\xd9\x99\x9d\xc2\xc7\x0e\x6f\x94\x3f\x34\xdb\x28\x4e\x35\x8b\xe1\x5a\xa3\x14\xee\xea\xf8\x66\x16\x8a\x0e\xeb\xd6\x07\x0e\x1c\xc0\xbb\xef\xbe\x0b\x7e\x3d\xa6\x83\x7e\x97\x9c\xcb\xb6\xe0\x71\xac\x93\x7e\x09\x9f\xa5\xc5\x21\x1b\xc5\xa5\x05\x53\x85\xbf\xf7\xde\x7b\x3a\x3e\xb1\xc8\x1e\xeb\xee\x19\x63\x4a\xda\x43\x11\x40\xf9\xd0\x46\xf9\xd1\x82\x56\xa5\x1e\x68\x44\xe5\xc7\x47\x93\x8a\x83\x8b\xd2\x4a\x2b\x59\x94\xa1\x34\x58\xc8\xab\x94\x0b\x21\xed\x51\x86\x36\x6f\x4f\xb6\xaf\x6a\x95\x6c\xf3\xd5\xc5\x62\x51\x07\x41\x40\xf7\xee\xdd\x93\x75\x94\x82\xcd\x4d\x66\x08\x7f\xa9\xe1\x65\xe7\x76\x69\x4e\x57\x5e\xbc\x11\x64\xc7\x93\x9d\x87\xa7\xe3\xf9\xb9\xb4\xb7\x8c\x23\xb5\xa1\x8b\x3e\x97\x85\xc4\x9d\xcb\xbc\xe5\x74\xcb\x77\xa9\x7c\xa4\x80\x4a\x2d\x2d\x01\xc3\x35\x3f\x90\xa7\xfd\x24\x0d\xb2\xbe\x79\x16\x82\x9c\x0f\xb0\x4e\x82\x15\xcf\x07\x70\xe7\x6b\x79\x09\x46\x07\x94\x52\xf4\xb1\x8f\x7d\x0c\x87\x0f\x1f\xb6\xbb\xab\x8b\x44\x54\xf6\x43\x1a\x3f\xbb\x38\xf6\xec\x47\xde\x9d\xf8\x0f\x7b\x76\x0a\x9f\xf1\xb5\xda\x03\x90\x97\x3e\x91\x9c\x1f\x32\x4c\xca\xd7\x6a\x66\x62\xd7\x7f\xfa\xc0\x66\xf9\xd1\xae\x67\xee\xde\xaf\x76\xd7\xec\x45\x4e\x1c\x3c\xae\x5e\xbd\x2a\xc1\x60\x18\x4b\xd4\xc5\x8f\xbc\x76\x4e\xd2\x72\x8b\x43\xa2\xa8\x8b\x41\x96\x89\x29\x73\x6c\x7e\x7e\x1e\xd5\x6a\x95\xc0\x26\x75\x00\x94\x5b\x05\x8d\xf9\x7a\xe9\x58\xad\xe5\xcd\x25\xcc\xb0\xb7\xa8\x9b\x18\x06\xe2\x12\xec\xbe\x8d\xe4\xd6\xb0\xb8\x24\x8a\x11\xc6\x5a\x29\x96\xf4\xe4\xce\x0a\x44\xdf\xb0\xd4\xda\xde\xdc\xca\x58\xf7\x95\xad\x72\xb0\x4a\xd1\x05\xc7\x5d\x00\x66\xdf\xbe\x7d\x26\x3e\x5e\xd0\xd6\x89\x77\x34\xfe\xcc\xfd\xf2\x1a\xc1\x85\xe0\x10\xe9\xa5\x76\x72\xc5\x4b\xf1\xd1\x91\x07\x6f\x30\xdb\x3e\x2e\x8d\x9c\x45\x9b\x4d\x03\x47\x78\x96\x96\x87\x23\x6d\x16\xe8\x66\x81\xb0\xab\x6e\xc6\x11\xdf\xa5\xa0\xf2\xe4\x4d\x5a\x2a\x2e\x8b\xc0\xa6\x93\xf9\x70\x3e\x64\xcd\xa3\x48\xb0\x92\x34\x66\x69\xea\x3e\xab\xe9\xd4\xa9\x53\x78\xec\xb1\xc7\x12\xd0\x00\x50\xf6\x42\x4c\x5c\xb8\x5d\xfb\xd8\x93\xb7\x6b\xff\xa1\x1c\x78\x0f\xdb\x6b\xae\x7a\x32\x9f\xc8\x72\x8f\xf9\x31\x85\x64\x40\xa5\xd0\x5b\x98\xaf\x97\xce\x05\x9e\xb9\x75\xaf\xd6\x5d\x06\x45\x5f\xd8\x02\xc0\xc8\xc8\x88\xde\xdc\xdc\xa4\x8d\x8d\x0d\x08\x1a\x49\xd0\x2e\x79\x25\xfb\xc0\x30\xed\x9c\x00\x87\xab\xe1\xb3\x84\xbf\xcf\x44\xd5\x5a\xf3\x3d\x1d\x76\xae\xc3\x27\xa2\x62\xe0\x19\xcf\xd7\x34\xba\xb0\x59\x3e\xed\xe9\xde\x87\x6f\xc9\x19\x89\x3d\x7c\x48\x40\xa4\xb7\xbd\x9c\x5d\x20\x83\xde\xc5\xc9\xc9\xbc\x88\x01\xf8\xa4\xaa\xaf\x69\xbc\xda\xf6\x8a\x37\xa7\x5b\xaf\x74\x3d\xb3\x83\xde\x99\x98\x18\x1d\x1d\x35\x6f\xbf\xfd\xb6\x6d\x0f\x17\xfa\x2a\x87\x3f\x8f\xaf\x45\x5c\x39\x01\xc5\x35\x93\x6b\xcc\xed\x2a\xc3\xa5\xdd\x5c\x5a\x8e\x3f\xdb\x5f\xd9\xe9\x64\x79\xb2\x43\x4b\x93\x9c\xd7\x05\x0e\x7f\x5e\x5e\x16\xc0\xf2\x7a\xf1\x32\x5c\xf4\x72\xbe\xb9\x14\x93\x1c\x8b\x73\xfe\xf2\xf2\xf8\x3b\xe7\x67\x5e\xc7\xe6\x65\x01\x69\x3e\xf3\xb2\x24\xa0\xf1\x5f\xee\xa4\xdc\x48\xbe\x99\x4f\x7f\xfa\xd3\xa4\x94\x52\xf1\xaa\xc9\x08\x0c\x6a\x27\x57\x2a\x4f\x3d\x73\x63\xfc\xdf\x97\x02\xb5\x60\x51\x81\xf8\x91\x13\xf2\xf8\x09\x83\x64\x8b\x82\x3d\x5e\xc2\x33\x98\x9a\x6d\x14\x4f\x6d\x97\xc3\x9f\xdd\x1f\xed\xae\x01\xbd\x61\xf9\xb1\x63\xc7\xcc\xc5\x8b\x17\x79\x5d\x24\xdf\xa4\xe5\x67\xeb\x22\xfb\x35\xd0\x2f\x4b\xfc\x37\x01\x0e\x39\x79\x22\x1b\xd9\xc5\xcc\x54\x81\x23\x23\x23\xea\xf1\xc7\x1f\x4f\xf2\x88\xe7\x3b\x7c\x00\xe5\xdd\xa2\xc6\xc2\x66\xf9\xe1\x6a\xd7\x9b\x4a\xb1\xdf\xde\x01\x91\x30\x0e\xe9\xe6\x35\xb1\x27\x03\x18\x39\x2f\xd2\xab\x92\x01\x19\xc2\x68\xd7\xdb\x1f\x2a\x73\x67\xb1\xd6\x7e\x4f\xc3\x74\x62\x73\x2e\xa8\xd5\x6a\x86\x88\xb0\xb8\xb8\x08\x87\x93\xda\x57\x3a\x2e\xd4\x2e\x20\x80\xf0\x93\x69\x65\x63\xb9\x26\xfd\xb8\x3f\xd0\xdf\x70\x2e\xcd\xc8\x69\x97\x74\xbb\x26\xc5\xe4\x38\x5c\xa6\xe1\xda\x38\x6b\xc8\xc6\x3b\x08\x0f\x97\x40\x22\x35\x1c\xc4\x2f\x6f\x41\x17\x68\xf4\xc9\x98\x83\x06\x17\xd8\xc9\x49\x67\x08\x7f\xc9\x2b\xa9\x00\x24\x58\xb8\x68\x90\xf3\x63\x3c\x9d\x01\x80\x27\x9f\x7c\xd2\x9e\x55\x53\x32\xc6\x54\x66\x1b\xc5\x23\x1f\x79\x77\xf2\xdf\x56\x3b\xde\x19\xae\x0c\xa3\x02\x4c\x32\xf1\x9f\x12\x26\xe2\x8d\x1c\xa5\x21\x22\xf8\x9a\xa6\x27\x77\xa3\x39\xbd\x96\x1f\x36\xd9\x87\x6d\x7a\x74\x74\x94\x6e\xde\xbc\xc9\x79\xc5\x79\xc0\x65\x40\x02\xa9\x0b\x1c\x5d\xbc\x4a\xda\xcd\x5a\x1c\x12\x6d\x65\x62\x97\xa0\x26\x05\x06\x41\x60\xca\xe5\x32\xcd\xce\xce\xda\x43\x5e\x15\x11\x79\x44\x54\xe8\x7a\xc6\x2f\x06\xaa\x7a\x60\xab\xf4\x48\x7a\x69\x96\x52\x3f\x7d\x64\x8b\xe3\xec\x48\x3e\x10\x20\x97\x61\x08\x28\xd6\x5a\xfe\xde\x95\xb1\xee\x2b\xdb\x23\xe1\x3a\x18\x22\xef\xd9\xb3\xc7\xbc\xf2\xca\x2b\xae\x89\x42\xce\xb4\x41\x1d\x70\x90\x9f\x64\x76\x96\x39\xec\xea\xec\x32\x9e\x7c\x96\xf4\x71\x20\x18\x14\x4f\x76\x38\x57\xde\x1c\x34\x5c\x13\x8d\x2e\xcb\x33\xcb\xda\x92\x71\x78\xb8\x04\x5d\x2e\x7b\xd2\x62\x90\xd6\x89\x34\xbf\x6d\x5d\x5d\x7c\xe5\x65\xba\xf2\xe6\xe9\xa4\x39\xee\x2a\x43\xc6\x71\x5a\x26\x2f\xbd\xf4\x92\x42\x24\xff\x05\x00\x15\xcf\xd0\xc4\xf9\xbb\x63\xbf\x76\x68\x63\xe4\x5f\x11\xc8\xb7\xb7\xad\x44\x19\xd9\xc9\x7e\x82\x38\x29\xd3\x1a\x25\xec\xda\x10\x2b\xe3\x84\x72\xa0\x66\x0c\xe1\xde\xad\xa9\xf6\x35\x44\x9f\x5b\x84\x00\xf4\xc4\xc4\x84\xdd\x35\xcd\xe9\x73\x59\xc9\x40\x9a\xe7\xdc\x49\xe0\x94\x16\x2a\x01\xbd\xf3\x38\x24\x30\x70\x06\x4a\xe7\x2c\x70\x64\x64\x84\x0e\x1f\x3e\x6c\xe7\x2a\xec\x5c\x47\x11\x84\x42\xb3\xa8\xf5\xc2\x66\xe9\x64\xa5\xeb\x4d\xf4\x65\x98\x21\xee\xa9\x6b\x12\x08\xe8\x7d\x3e\x6b\x92\x49\x53\xcb\x4c\xbb\x3c\x4b\x44\x28\x86\x34\x35\x12\x78\xe6\xce\x44\xeb\xf5\xae\x67\xda\x88\x8e\x5a\x0b\x3d\xcf\xc3\xec\xec\x2c\xde\x7b\xef\x3d\xc4\x27\x46\x73\xd3\x96\x0b\x8a\x4b\x30\x5c\x80\xe9\x02\x08\xc9\x3f\x39\x1c\x01\xcb\x57\x3a\x57\xfe\xb2\xc3\xc8\x8e\x21\x05\x77\x10\xb0\xb8\x34\x4d\x56\x7e\xdc\x8f\x44\x3c\x69\x5d\x65\x75\x28\x9e\x87\xe4\x91\x54\x54\x12\x28\x6c\xbe\xb2\x4c\xd9\x21\xb8\x93\xfc\x96\x20\xc2\x3b\x80\x9c\xa7\xe0\xe5\x71\x10\xcd\x02\x89\xbe\xb9\xc1\x0f\x7c\xe0\x03\x34\x37\x37\x07\x44\x73\x7c\x45\x00\xd5\x89\x5d\x7f\xe1\xc9\x5b\xb5\xdf\x1b\xed\xfa\x47\xa2\xc8\x71\x11\xc9\xbe\xa4\x18\x31\x92\x39\x8e\x1e\xa0\xc4\xff\x7a\xdf\x7f\xda\xa8\x40\xb1\x1c\xa8\xd1\x1b\x53\xad\x1f\xb6\xfc\x70\x3b\x9e\xcf\x4b\xac\x8e\x5b\xb7\x6e\x65\x0d\xb7\xa4\xac\xbb\x14\x80\xe4\x91\x93\x37\xdc\x84\xe3\x8e\xfb\x6b\x16\x6e\x9f\x15\x8b\xa3\x00\xa8\x6b\xd7\xae\xe9\x7a\xbd\x6e\xf7\x65\x04\xf1\xe9\x5c\x0d\x63\x4c\x7d\xbb\x14\x2c\xbe\x35\xdb\xfc\x91\x26\x93\x94\x63\xa2\xd9\x51\xfb\x96\x2e\x3d\x9e\x3c\x85\x3d\x1d\xc9\x80\x43\xaf\x43\x1a\x28\xc9\x4b\x01\xfe\xc2\x46\xe9\xf9\xd3\x4b\xd5\xe7\x94\x46\x15\xd1\xed\x65\x45\x00\x58\x58\x58\xc0\xb3\xcf\x3e\x0b\xdf\xf7\xa5\x69\x2c\x4d\xf4\xac\xf1\xad\x8b\x17\x60\x71\xb5\x88\x9b\xc5\xdf\x2c\x9e\xca\x67\x25\xe2\x49\x9a\x64\x18\xf7\xe3\x75\x94\x42\xa0\xc5\xbb\xa4\x39\xab\x0c\x57\x7d\x5d\x75\xe6\xf1\x64\x5d\x78\xb9\xc3\xf2\x4d\xbe\xcb\xfc\x64\xbe\x79\xfe\x92\x3e\x99\x2f\x06\x84\x65\xb5\xab\x3e\x71\xe2\x44\x52\xe7\xf8\xea\x90\xf2\x5c\xbd\x78\xa2\xd6\xf6\x4f\x24\xba\x0f\xd6\xa0\x8e\x05\x36\x06\x0f\x3e\x54\x49\xce\xb2\x41\x2f\x0a\xc5\xbf\x30\x51\x78\xb5\xe5\x9d\x98\xab\x17\x4f\x12\x51\x25\x2e\x4b\x11\x91\x9a\x9c\x9c\x84\x70\xb2\xcd\x64\x58\x5e\x7b\x67\xf1\x26\xd5\x80\x32\x92\xab\x81\x65\x87\x4b\x11\xf6\xf5\xaf\x7f\x5d\x1b\x63\x34\x90\x5c\x4a\xdd\x04\xd0\xd0\x84\xcd\xb7\x67\x76\x2f\x6f\x8e\x04\x77\x12\x66\x18\x4a\x70\x2f\xb9\x28\x2f\xe1\x55\x0f\x24\xc0\x7e\xa4\x23\x8e\x37\xc6\xfe\x47\x28\x68\x9a\x3a\xbd\x34\xfa\xe2\x81\xcd\xf2\x49\x18\x54\x11\xa1\xbf\x0f\x40\x9d\x38\x71\x02\xb1\x56\xc8\xd2\xfa\xb2\xbe\x29\x80\x64\x71\x5d\xe3\x72\xf9\xe7\xca\xdb\xe5\xa4\x30\x4b\xde\xcb\x38\x3c\x5d\x1e\x38\x49\xfa\xb2\x3a\x86\x4b\xb8\x5c\xc2\x24\xf3\x73\x75\x70\x99\x2e\xaf\xc3\x0d\xea\xc0\x59\x75\x76\xd1\x24\x5d\x56\xfb\x64\xa5\x1b\xa6\xde\xb9\xfe\x95\x4a\x25\x29\x9b\x88\x7c\x18\x94\x27\x9b\x85\x63\x9e\xa6\x1a\x80\xb4\x45\xcd\x8f\x0c\x8c\xaf\xa1\x48\xb9\xac\x93\xe7\x29\x4a\xeb\x6b\xaa\xee\xdf\x2a\x9d\x42\xa4\x18\xfd\xf8\x1a\x07\x2b\xdb\x09\x1d\x0e\x9a\xf3\xc0\x23\x4f\xbe\x53\x6e\x90\x06\xca\x73\x2e\x81\x56\x8d\x46\x03\x31\x78\xf4\x4e\x63\x26\xd4\xb7\x4b\xc1\x9d\xab\x7b\x77\x5e\xd6\xb0\x56\x87\x49\x8c\xc9\x14\x8b\xe4\xc8\x57\x8e\xc0\x20\xfc\x52\x71\xe2\x71\xa0\x21\x8c\xb5\xbd\x93\x1f\xb8\x35\xf6\xdb\xd5\x8e\x37\x0b\xa0\x62\x8c\x29\xda\x7b\x67\x3f\xfa\xd1\x8f\xda\x3a\x67\x31\xca\xba\x41\x16\xc6\xa0\xb8\x79\xe0\xeb\xb2\x2a\xe0\x78\xce\x13\x68\x97\xb6\x76\xc5\x75\x99\xd9\x2e\xcb\x24\xcb\x0d\x02\x4c\xeb\x9f\x05\x78\x92\xbe\xbc\x67\x9e\xc6\xc5\x1f\x19\x2f\x8b\x7e\x97\x3c\xe7\x81\xab\xcb\x42\x73\x95\xe1\x2c\xaf\x56\xab\x29\x00\x60\xf7\xb0\xf8\x9e\x41\xb9\xda\xf1\xe6\x94\x89\xae\x2d\x00\x33\xa0\xed\x32\x6c\x9c\x86\xad\x20\xb2\x88\x89\x33\xf1\xff\xd1\x6f\x6c\x81\xa8\xb1\xb6\x77\x00\x06\x65\xfb\xcd\x8b\x31\x46\x19\x63\x30\x33\x33\x23\x2d\xb9\x3c\xfa\xb3\x14\x8a\xac\x7b\x2a\x9d\xcb\x84\x95\x9a\xc4\xa5\x85\xb2\xb4\x23\x2e\x5d\xba\x64\xc3\x35\xe2\x4b\x8b\x8d\x31\x75\x4d\xd8\xbc\x36\xd3\xbc\xb8\x5e\xe9\xde\x32\x31\x68\x24\x46\x82\xfc\x65\x23\x71\x63\xad\x36\xe2\xec\x34\xc9\xe8\x05\x88\xc3\x48\xb0\xdb\x40\xed\xab\x97\x3e\x7e\xfe\xd6\xd8\x67\x94\xc6\x04\x80\x8a\x65\x6e\xa5\x52\xc1\x67\x3e\xf3\x19\x69\x55\x48\x26\x4b\xcb\x41\x89\xb8\x2e\xa6\x66\x35\x8a\x0b\x64\xa5\xbf\xcb\x5a\x71\xf9\xe7\x95\x9b\x95\x7e\x50\x87\xce\xcb\x43\xba\xa1\x4c\x59\x96\x97\xe4\x95\x2b\x4e\x56\x19\xfc\xd9\x65\x69\x70\x70\x76\x69\xcd\xbc\x7c\x86\x2d\xd3\xa5\x30\xfa\xfa\xc4\x99\x33\x67\x00\x24\x43\x10\x05\xc0\x27\x43\x45\xa5\x51\x96\x96\x73\x32\x99\x10\xcf\x80\xf6\x40\xc4\x0a\x31\x21\x6d\x80\xf4\x26\x46\xd9\xbb\xf2\x35\x55\x11\x6d\x2e\xf3\x11\x59\x39\x20\x22\xac\xae\xae\xe6\x59\x88\x59\x7c\xe0\x75\x95\x06\x85\x7c\xce\x6c\xd0\x2c\x21\x70\xc5\x4f\x31\xf1\xad\xb7\xde\x82\xb5\x3a\xe2\x33\x19\xe3\x1b\xb7\xb1\x59\x2f\x87\x8b\xaf\xed\xdf\xf9\x07\x4d\x08\xe4\xf8\xc3\xce\x79\xf0\xb9\x8f\x04\x61\xe3\x67\xb2\x43\x1b\x4a\x8c\x95\x5e\x1c\x63\x22\x84\x31\x48\x26\x9a\x94\xa1\xca\xa9\x7b\xa3\xff\xc5\xa3\xcb\xa3\x1f\x20\x50\x15\xd1\x2d\xed\xbe\x31\xc6\xdf\xbb\x77\x2f\x3e\xfc\xe1\x0f\xab\xb8\xa1\x25\x63\x5d\xcc\x92\x56\x84\xd4\xf6\x9c\x6f\xb2\x91\x78\xfa\x3c\x7e\xeb\x9c\x3f\xe9\xb2\xac\x08\x49\x23\x90\x4d\x0b\x90\x5d\x07\x97\xb0\xd9\xbc\x24\x1d\x79\x75\x92\x4a\x08\xe2\x37\x4f\xdb\xb9\xca\xcb\xa2\x43\xa6\x19\x64\x25\x0c\x02\xd0\x41\xef\xa9\x5f\x7b\x34\x60\x3c\xe4\x50\x00\x94\x01\x7c\x13\x83\x43\xda\x86\x30\x4c\xfa\xed\x37\x5b\xc6\x62\x46\x14\x4e\xd2\xea\x88\xf2\xb6\xb6\x07\x00\x74\x95\x09\x0c\x12\x0b\xa7\x7f\xb8\xd3\xcf\x67\x09\x0a\xae\x3a\xca\x70\x17\x2f\x95\x6c\x38\x57\xa1\xd6\x49\x21\x96\x02\x96\x10\x15\x5f\x32\xa3\x81\x68\xae\x83\xa2\xbb\x1c\x1a\x20\xac\xbf\x35\xd3\xbc\xb8\x52\xed\xbc\x63\x2c\xf3\xc8\x1a\x18\x0c\x55\x8d\x9d\x59\x66\x8b\x29\xe8\xa1\x45\x72\xd7\x0a\x4b\x87\x18\x6d\xa3\xe4\x94\xdc\x06\x57\x08\x69\xf6\x99\x1b\xe3\xff\xdd\xde\xed\xe2\x51\x18\x54\x89\xa8\x1c\xef\x33\x51\x8f\x3c\xf2\x88\x1d\x56\x49\xc6\x66\x69\xca\x3c\x61\xcc\x02\xd5\x2c\xed\xef\xea\xd8\x83\x2c\x97\xbc\xb6\xca\xd2\xec\x79\xda\x87\x97\xe5\x1a\x2e\x48\x61\xcb\x02\x88\x3c\x8d\xe6\x02\x4c\x29\xb4\x2e\x70\x71\x81\xac\x8b\x8e\x2c\xfa\x25\x8d\xfc\xd9\x65\x9d\x00\x69\xfa\x5d\x74\xba\x80\x5c\x03\xc0\x87\x3f\xfc\xe1\x24\x2f\xdb\x81\x43\x65\x74\xbd\x1c\x6c\x1a\x42\x90\x1e\x75\xa7\x95\x66\xef\x7c\x7f\xf4\x2c\x0f\x31\x41\x0a\xa0\xf7\xe9\x45\xa4\x3c\x83\xb5\x6a\xf7\x0e\xff\x48\x34\xde\x80\x89\x4f\x7e\xf2\x93\x52\x0e\xf2\xea\x64\xfd\x5c\x3c\x92\xef\x89\x5f\x56\x03\x48\x53\x4c\x89\x3f\x20\x9b\xf9\x00\x80\xad\xad\x2d\x9b\x36\x88\x6f\x91\x6a\x00\xd8\x6c\xfb\x7a\xe5\xe2\xc2\xf6\x77\x3b\x9e\x69\xa6\x60\x58\xcc\x5b\xf0\xc3\x8e\x93\xf0\xac\x45\x3a\xf1\x4c\xd6\xf2\x88\xe7\xaa\x2b\x5d\x75\xf2\x63\x6f\x4f\xfe\x37\xb5\x96\x37\x8f\x68\xbe\xa3\x8c\x78\xb2\xf4\x85\x17\x5e\xc8\x13\x16\xa9\xc1\x91\x13\x4f\xc6\xcf\xf2\xcf\x02\xe4\x2c\xf0\x70\x81\xbb\xab\x0c\x57\x3d\x24\x58\xb9\x34\x4e\x1e\xe0\x0c\xa3\xed\xf3\x34\x74\x16\x60\x48\xeb\x2e\x0b\xb0\xb3\xac\x96\x2c\x10\xcd\x12\x7e\x29\xbf\xae\xb6\xcb\x02\xa5\x41\x6d\xd2\xc7\xbb\xc4\x8a\x25\xe8\x8d\x4a\xb0\x12\x28\xd3\x4a\x0d\xcb\x93\xc9\x0e\x2e\xc0\x88\x97\x68\x79\x46\x48\x85\x25\x49\x89\xd0\xf6\x74\xe3\xf6\x44\xeb\x5d\x08\x5e\x10\x11\x7e\xfa\xd3\x9f\x42\x38\x97\xa2\x70\x29\xcb\x2c\x59\xe9\x93\x41\x17\xe2\xb8\x98\x2d\x3b\x00\x77\x2e\xc1\x55\xdf\xf8\xc6\x37\x34\x00\xbb\xca\x12\x20\x5e\x61\x01\x61\xf3\xe6\x54\xeb\x8d\xdb\x13\xed\x2b\x26\x36\xcf\x52\xab\xb2\x82\x97\x89\x4b\x2d\xdf\x5a\x3f\x96\xd8\x82\x34\x00\x43\x1c\x70\xa2\xa5\xae\x3d\x8d\xc2\xc7\xff\xc5\xf5\x89\xdf\xae\xb4\xd5\x1c\x11\x55\x10\x8d\x0d\x55\xb9\x5c\x56\xbf\xf9\x9b\xbf\xe9\xea\x20\x2e\x4b\xc1\xe5\x9f\xe5\xc7\x79\x22\x41\x17\x0e\xff\x3c\xad\xec\xca\x3b\xab\xbc\xbc\x67\x97\x36\x97\x42\xe1\x52\x1a\x59\xfe\x79\x61\xdc\x3f\x0b\x10\x24\x9d\xd6\x65\x59\x29\x2e\x10\x95\x65\x02\xfd\xb4\x64\x01\xaa\xcb\xb9\xda\xd9\x05\xfc\x29\x00\x5e\x59\x59\x01\x90\x68\x7d\x2b\xfb\xc1\xf2\x58\xe7\x66\xbd\x1c\x2c\xda\xe5\x54\x3b\xf8\x8e\xf4\x1a\xa5\x15\x9f\x58\x49\x31\xd6\xb2\xe6\xe7\x6c\x22\xb2\xc6\x37\x47\x82\x3b\x6b\xa3\xdd\x45\x44\xd7\x39\xda\x7e\x86\x98\x16\x57\x5b\xe4\x29\xa7\xbc\x7a\xcb\x7c\x00\x40\xe7\x35\x1a\x7f\xce\xb5\x2e\xd0\xdf\x98\x1a\x00\xee\xdf\xbf\x6f\xaf\xcf\x4b\xe6\x3a\x8c\x31\x9b\x1d\xa5\xd7\x5e\x39\xb0\xfd\x0f\x8d\x52\xb8\xd6\x4b\x92\x98\x0b\xbd\xd7\x14\x90\xb0\x25\xab\xc4\xa2\x60\x23\xbe\x38\x5e\x32\xbc\xe1\x13\xac\x06\x20\x03\xff\xf0\xfd\x91\xcf\x3e\x75\x73\xfc\x37\x4a\x5d\xb5\xc7\xae\x7f\x1b\x63\xf2\xc0\xc3\x55\x37\x57\x58\x9e\x06\x74\x69\x78\x97\x93\x9a\x34\xab\x6d\x06\x85\xb9\x2c\xc6\xac\x32\xb3\xac\xa6\x3c\xc1\xca\x7a\x1f\x46\xe0\x5c\x7e\x92\x5e\x09\xa6\x59\x16\x41\x56\xbe\x12\x18\x64\x79\x59\xe0\x2d\xdf\x5d\xe0\x96\x95\x56\xdf\xb8\x71\x03\x00\xec\xdc\x9e\x8e\xef\x54\x69\x6d\x97\x83\xf5\x5b\x13\xed\xd7\x34\x8c\xe6\x0b\x85\xc9\xd0\x25\xfe\x46\xa5\xe7\x8c\xcd\x27\x99\x3c\xed\x1d\xce\x1b\x09\x78\x48\xe8\xbc\x37\xdd\xba\xb4\x5b\xd0\xf5\x78\xbf\x94\x3d\xac\x5b\x03\xb0\xab\x2a\x96\xde\x41\x80\x20\xeb\x98\x09\x16\x3c\xae\x3c\xe5\x5c\xee\x1a\xe3\x05\xf1\x5f\x6e\x17\xd8\x77\xae\xff\x0d\x00\xd5\xed\x76\x71\xe4\xc8\x11\x63\xec\xf1\x45\x91\x53\x44\xe4\x6f\x17\xc3\x70\xa4\xeb\x8d\xed\xdd\x2e\x1e\x55\x20\x95\xec\x72\x61\x73\x19\x46\x64\xd8\xdb\x57\x67\xe7\x3c\xa8\xc7\x57\xea\x01\x76\x54\x58\x64\x69\xf0\x0b\x25\x15\xa8\x38\xb5\xeb\x9f\x04\x61\xf9\xde\x58\xe7\x56\x48\xc6\xde\x70\xa5\x7d\xdf\xc7\xa9\x53\xa7\x70\xe7\xce\x1d\xda\xdd\xdd\xd5\xac\x3e\x94\xc1\xc4\xbe\xfa\xb2\x70\x23\xd2\x4a\xdb\xc8\x95\x9f\xcd\xc3\x95\x46\xf2\x37\xab\x51\xb3\xca\x49\x19\x76\x22\x8e\xa4\xdf\x45\x7b\x56\xbb\xf3\x70\x23\xe2\x6a\x11\xc7\x20\x2d\x5b\x52\xd6\x5c\xf9\xf1\x32\xf3\xf2\x87\x78\x36\x8e\xfc\x79\x7a\x99\x8f\x7c\x97\x74\x0e\x8a\x8b\x30\x0c\xcd\xf1\xe3\xc7\xa9\x5c\x2e\xdb\xbb\x86\x7c\x44\xa7\x78\x95\x9a\x85\xd0\xec\xaf\x97\x4f\x54\xba\xde\x04\xac\x44\xb2\x25\xd8\x48\x96\x39\xdb\xf9\x01\x57\xac\x23\x18\x82\x21\x83\xfb\xa3\xdd\xf7\x7e\x7c\xa8\xfe\x7f\xb7\x8a\xfa\x36\x80\x0d\x22\x6a\x18\x63\x5a\x44\xa4\xef\xde\xbd\x2b\x3f\xad\x70\xd5\x5f\xf6\x65\xc9\x73\x57\xdb\xf1\x7c\x0c\x07\x0e\x99\xa9\x6d\x0c\xdb\x10\x7c\x86\x41\x36\x2a\x47\xab\x44\xe8\xd6\xd7\xd7\xcd\xe4\xe4\x24\x4d\x4e\x4e\x26\xa0\x1a\x1f\x33\x58\x00\xc1\xdb\x2a\x07\xad\x7d\xdb\xa5\xc3\xd5\xb6\x37\x0d\x43\x3d\x4b\xcd\x4e\x88\xb2\x6e\x90\x3a\xd4\x98\x5f\xb1\x10\xff\xa6\x3e\xb9\x4f\xfc\xd8\x57\xb5\xf1\x64\xa9\xd2\xaa\x32\xdd\x2c\x9c\xe8\xf8\xe6\xf6\x5a\xb5\xbb\xac\x09\xdd\xb8\x44\x5d\x28\x14\x70\xe8\xd0\x21\xb3\xb8\xb8\xc8\xc1\x83\xf3\x46\x76\x7a\xd9\xc1\x39\xa3\x65\xa7\x07\x8b\xe3\x12\x42\x72\xa4\xcf\x7a\xe7\xcf\xc8\x88\xc3\xe9\x74\x85\xb9\x80\x44\xd2\xeb\xca\x47\x09\xff\x2c\x59\xc9\xeb\xdc\x36\xae\x2b\x7f\x57\x19\xbc\xce\x9c\x0e\xc9\x3b\xae\xfc\xf2\xe2\xe4\xd1\x20\x95\xc5\xa0\xdf\x84\xde\xd1\xd1\x51\xcc\xcd\xcd\x25\xdf\x6b\x21\x9a\x47\x2b\xee\x16\x34\x19\x32\x6a\xbe\x5e\x7a\xa8\x90\xdc\x37\x64\x01\x41\x60\x78\x2a\x0c\xa9\x61\x8a\x21\x60\xb7\xa0\xeb\x3f\x3e\x54\xff\xab\xdb\x93\xed\x57\x41\x58\xa5\xf8\x8e\x5a\xbb\xed\xfc\xeb\x5f\xff\x7a\x56\xdd\xf2\xda\xa5\x87\x58\xfd\x71\x64\xbb\x18\xa0\x77\xe6\xa8\x71\x24\x94\x08\x25\x2d\x11\x1b\x9f\xd5\xba\x6f\x96\x42\x5d\xbf\x7e\x5d\x3f\xf6\xd8\x63\xe4\x79\x9e\xbd\xf9\x8d\xe2\x71\x60\xa1\xe3\x1b\x13\x28\xa3\x0e\x6c\x96\x8e\xfb\x46\x95\xc8\x66\x91\x8c\xe7\x4c\x8f\xb1\xb1\x99\x66\xad\x8e\xd4\xf8\x90\x53\x10\xb3\x80\xaf\xbc\x20\x06\x8d\x68\xe5\xc5\xc0\xd7\x34\x31\xd3\x28\x3c\xd4\x2a\x98\x1b\xf7\x47\xbb\xab\x86\x92\x4f\xf0\x4d\xa1\x50\xc0\xc1\x83\x07\xcd\xd2\xd2\x12\x35\x9b\x4d\x17\x78\xb8\x9e\xe1\x68\x04\x89\xe0\xca\xf6\xcf\x8e\x00\x00\x20\x00\x49\x44\x41\x54\x52\x93\x73\x1e\xca\x06\x93\xf9\x48\x6d\x3a\x6c\xbe\xb2\x5d\xa4\x20\x48\x6d\x8e\x01\xef\xb2\x5e\x36\x5c\xf2\x44\xd6\x0d\xe8\x17\x58\x57\x3d\x6c\x3c\x9e\x87\xac\x23\xa1\x9f\x1e\x09\x9c\xd2\x3a\x92\x8a\x4f\x00\xe2\x3b\x1d\xc4\xe6\x9b\xc5\x07\xc2\x60\x1e\x26\xf4\x37\x1a\x0d\x3a\x75\xea\x14\xdf\xcb\x11\x81\x07\xc1\xdf\x18\x09\x76\x94\x41\x61\xb6\x51\x3c\xa4\x0c\xf9\x29\x59\xb7\x2e\x01\x09\xeb\xdf\xfb\x72\xd6\x10\xd0\xf2\x75\xe3\xd5\xfd\x8d\xff\x78\x65\xdf\xce\x3f\x6a\x85\x65\x63\xcc\x7d\x8a\x6e\xa9\xdf\x45\xb4\x08\x61\xae\x5f\xbf\x4e\xad\x56\x4b\xf2\xd7\xd5\x1e\xbc\xff\x4a\x0b\x4d\xf2\xde\x02\x6f\x12\xd7\x13\x19\xba\xac\x08\x17\x22\xcb\x86\xe4\x8d\x07\x99\xcf\xf8\xf8\x38\x66\x66\x66\x0c\x80\xe4\x1e\x16\x22\x52\x20\xf8\xf5\x72\xd0\x1e\x6f\x15\xf6\xec\xd9\x29\x2c\x90\xb1\x9f\x00\x72\x53\xc2\xe6\x4c\x09\x33\x53\x0a\x92\x35\x2d\x3f\x3d\xa9\x77\x2e\xa9\x0d\xef\x01\x0e\x81\x50\x08\x69\xcf\x6c\xa3\xf8\xd0\x4e\x51\xbf\xbb\x3e\x1a\xac\x21\xbe\xd0\x89\x88\x4c\xb1\x58\xc4\xc2\xc2\x82\x89\x8f\xa3\x97\xf5\x93\x9a\x09\x48\x0b\xab\xd4\x7e\xae\xb8\x9c\x7a\xa9\x61\x2d\xff\x78\xdc\x14\xda\x8b\x32\x64\xc7\x96\x82\x2f\xcb\x83\xc8\xc7\x05\x32\x72\xd8\x25\x4d\x78\x57\x9b\xf3\xbc\xf2\x2c\x14\x20\x2d\x27\xf2\xdd\x65\x0d\x65\x59\x60\xbc\x9e\x2e\xb9\x95\x34\xf1\x3c\xa4\x1c\xbb\x94\x20\xef\x3c\x9c\x5e\xc9\x27\x03\x00\xed\x76\x9b\x4e\x9f\x3e\x0d\xdf\xf7\x89\x5d\x28\xa6\x8c\x31\xa4\x3d\xd0\xca\x58\x67\xc3\x00\x34\xd5\x2c\xcc\x15\x34\x95\x00\x4a\xe3\x86\x55\x8c\x76\x43\x18\x11\x28\x1e\x9e\xec\x14\xc3\xcd\x8b\x0b\xdb\xdf\x7d\x75\x7f\xe3\xef\x03\xdf\xdc\x01\xb0\x42\x44\x9b\x00\x76\xe2\x8b\xa6\xc3\xe5\xe5\x65\x5c\xbd\x7a\x15\x5a\x6b\x57\x7d\xa4\x45\x96\xd5\x5e\x2e\x19\xe6\x6d\xd2\x07\x1c\xb2\xb1\xb9\x59\xcb\x33\x95\x1a\x26\x0b\xc1\x12\x7e\x6c\x6c\x6c\xd0\xc9\x93\x27\xa1\x94\x4a\x0a\x8e\x19\xeb\x6b\x32\x54\x1f\x09\x5b\xf3\xf5\xd2\xd1\x4a\x57\x8d\xa7\x86\x21\x1c\x7c\xc9\xd6\x48\x80\x46\xca\x89\x0f\x85\x88\x01\x48\x04\x57\x09\x79\x04\x42\x31\xa4\xd9\xbd\xdb\xc5\xe3\xdb\xe5\xf0\xda\x46\x25\xd8\x00\x21\x88\x27\xb7\x4c\xa1\x50\xc0\xc9\x93\x27\xf1\xfa\xeb\xaf\xf3\xfa\x4b\x3e\xb8\x84\xd6\xa5\x55\xa5\x55\xc1\xf3\x92\x9d\x52\xe6\xcb\x6b\xeb\x2a\x13\x2c\x2f\x09\x22\x3c\x9d\x7d\xce\xd3\xfa\x2e\xed\x2b\xcb\x21\x47\x5e\x52\xd8\x20\xca\xc9\x02\x27\x57\x27\xe6\xf1\xe4\xd0\x2c\x8b\x0f\xae\x8e\xc2\xd3\x4b\xfe\x73\xfa\xf8\xb3\xd4\xb2\x1c\x74\x9d\xc3\x71\x16\x97\x00\xe8\x57\x5f\x7d\xd5\x1e\x6a\x65\x62\x19\x37\x40\xb4\xab\x33\x54\xd0\x4b\xb5\xf6\xca\x7a\xa5\x7b\x7f\xbc\xe5\x4f\x94\x42\x35\xaa\x4c\x74\x29\x9a\xfd\xbc\x3e\xe2\x8e\x49\x6a\xd1\xf5\x4d\xeb\xce\x44\xfb\xda\xf7\x8f\x6e\xfd\x3f\x6f\xcf\x36\x7f\x14\x78\xb8\x6b\x8c\x59\x21\xa2\x0d\x63\xcc\x76\xbc\x47\x2a\x20\x22\xf3\xf2\xcb\x2f\x63\x7d\x7d\x9d\xd7\x47\x2a\x8f\xac\x36\xb2\xce\x25\xc3\xb2\xae\x00\xd2\x97\x4e\x4b\x10\x90\x82\xc1\x05\xde\xc6\xe1\xfe\x12\xc1\x92\xb8\xed\x76\x9b\xb6\xb6\xb6\x70\xf4\xe8\x51\x13\xdf\x13\x61\xac\xe5\x61\x00\x6f\xb7\xa8\x75\xe0\x19\x7d\x60\xab\xfc\xb0\x17\x52\x21\x31\x10\x90\x36\x32\x12\xa9\x33\x40\xb4\xdf\x0e\xc9\x04\x53\xea\x8c\x83\xe4\xe8\xa4\x1e\x94\xa4\x2c\x10\xf6\x5b\x0a\x69\x6e\x5f\xbd\xf4\x70\xa3\x1c\xbe\xb9\x5e\x09\x36\x28\xba\x65\x5c\x03\x30\xa5\x52\xc9\x82\x87\xd4\xf8\x5c\x58\x38\xbf\x78\xe6\x2e\xad\xee\x1a\x1b\xcb\x06\x03\xf3\x77\x59\x11\xce\xf1\xb5\x78\xe6\x66\xb8\x4d\xe7\xa2\xd3\x65\xa1\x64\x95\xe9\xea\x98\x2e\x90\xca\xea\xec\xae\x30\x39\x2c\x71\xe5\x81\x0c\xbe\xb8\xc0\x5a\x6a\x47\x09\x9e\x12\xa4\x81\xfe\x4e\x92\x67\x31\x49\x6b\x8c\x03\x57\xd2\x26\x93\x93\x93\x34\x35\x35\x45\x31\x68\x18\x00\x26\x91\x2b\x45\xe1\xe6\x48\x77\xe3\xdd\x99\xd6\x3b\xf7\x47\x83\x55\x65\x60\x14\xc8\x23\x00\x9a\x10\x86\xca\xe8\xb6\x67\xda\x8d\x52\xb8\x71\x6b\xaa\xf5\xd6\x8f\x0f\x6d\xff\xfd\xa5\x85\xed\xbf\x5f\xaf\x04\xef\x68\x32\x4b\x00\xee\x11\xd1\x3a\x80\x2d\x44\x43\x94\x2e\x11\x85\x8b\x8b\x8b\xb8\x7c\xf9\xb2\xbd\x7a\x52\x2a\x08\xce\x3b\x97\x72\x91\x6d\x20\xc3\x79\x1e\x31\xa9\xf9\x08\xcc\x13\xd9\x84\xae\xb0\x2c\x74\x4e\xe2\x14\x0a\x05\xf5\xc9\x4f\x7e\x12\x33\x33\x33\x88\x67\x9c\xcb\x00\x6a\x00\xf6\x18\x63\xe6\x8b\xa1\x3a\xfc\xe1\xf7\xc6\x7f\xe3\xb1\xc5\xea\x73\x8a\xd7\x27\x39\x6f\xd4\x9a\x1e\x91\x5f\x82\x24\xbc\x7b\xd8\x3a\xf3\xbb\x6a\x5d\x4e\x9c\x9a\x62\x60\xb0\x5b\xd0\x6f\xfe\xd3\xd1\xcd\xff\xe1\xea\xde\xe6\x25\x10\xea\x00\x9a\xf1\x92\x9a\xde\xdd\xdd\xd5\x5f\xf9\xca\x57\x5c\x7c\xc8\x7a\xce\x0a\x77\xc5\xe7\x2e\x2b\x9e\x74\xae\xb0\x61\xe3\x67\xb5\x61\x96\x73\x75\xb0\x61\xca\x94\x71\xb2\x68\xe6\x34\xe4\xc5\x75\xe5\x07\x0c\x90\xbb\x21\x68\x95\x69\x86\x69\xbb\xbc\x36\x57\x00\xf4\x6f\xfd\xd6\x6f\xa9\x62\xb1\xa8\xe2\xf7\xa2\x31\xa6\x0a\xa0\x4a\x44\x53\xc6\x98\x29\x22\x9a\x02\x50\x83\x41\xad\x1c\xa8\xf1\x5a\xcb\xab\xf9\xa1\x2a\x13\x0c\xda\xbe\x69\x6d\x97\x82\xcd\xb6\x6f\xb6\x0c\x4c\x9d\x88\xea\xc6\x98\xf5\x18\x30\x36\x11\x6d\xa6\x6c\xc4\x1f\x91\xea\x2f\x7c\xe1\x0b\x41\xa1\x50\x50\xdd\x6e\x37\x8f\x26\x17\x4f\xf2\xea\x04\xe4\xf0\x81\x9f\x00\x06\xa4\x51\x5c\x16\xc4\x13\x4b\xb3\xdb\xa5\xa9\x52\x08\xae\xb5\xd6\x6f\xbe\xf9\xa6\xb9\x70\xe1\x82\x1d\xa6\x24\xdd\x9e\x88\x94\x26\x78\x1b\x95\x6e\x63\xbe\x5e\x3a\x58\xed\xf8\x53\x3d\x33\x23\xb6\x24\x88\x0f\x52\x18\x30\xf6\x7d\x7e\x4c\x69\x1d\xcf\xa3\xf7\x0a\x4c\xa7\x30\x04\x5f\xd3\x9e\xfd\x5b\xa5\x0b\x6d\x5f\xbf\xbd\x36\xda\xbd\x6f\x28\x9a\xef\x00\xa2\xd5\x96\x27\x9e\x78\x02\xb5\x5a\x8d\x6e\xdc\xb8\x91\xa7\xfd\xa5\xa6\xb5\xf1\x04\x81\x7d\x3c\x76\x59\x01\x3c\x5f\xeb\xf8\x50\x86\xfb\x65\x59\x39\x1c\x5a\x49\xa4\x95\x74\xe6\x59\x54\x52\x08\x79\x1e\x59\x96\x95\x1c\x46\xb8\xac\x36\x4e\x0f\xb7\x26\x00\x77\xbd\x65\x47\x90\x34\x70\x4b\x4b\x5a\x4a\x2e\xeb\x8c\x6b\x5f\x17\x4f\x24\xcd\x3c\x0e\x4f\x2f\xe9\x32\x8b\x8b\x8b\x74\xf8\xf0\x61\xe3\xfb\x3e\x00\x68\x22\x0a\x89\x28\x40\x64\x21\xb4\x10\x59\x0b\xbb\x20\x6c\x07\x9e\xd9\xda\x29\xe9\xd5\xed\x72\xb8\xbc\x5d\x0e\x17\x9b\x45\xbd\x18\x7a\x58\x31\x30\x2b\x44\xb4\x02\x60\x95\x88\xd6\x8c\x31\x9b\x44\x54\x47\xb4\x99\xb2\x13\xef\x17\xd1\x6b\x6b\x6b\xae\x83\x8a\x39\x6f\x5c\xd6\xa3\x94\xa5\xac\x76\x71\xa5\x4b\x9d\x00\x26\x81\x80\xa3\x8d\xcc\xc8\xfa\x73\x20\xe1\xe6\x9c\x14\xac\x24\xed\xc5\x8b\x17\xcd\x85\x0b\x17\x78\x3e\xc6\x5e\xe6\xd4\xf1\x8d\x6e\x16\x75\x67\x61\xb3\xf4\x70\x74\xa5\x02\x93\x7a\x2e\x0e\x49\xb7\xc8\x32\x29\x58\xe9\xc2\xb0\xe6\x7b\x3d\xc8\x3e\x00\xf6\x3c\xc7\xc9\xf9\x7a\xe9\x09\x22\x2c\xaf\x56\xbb\xcb\x5a\x45\x27\x49\x1b\x63\xa0\x94\x32\x53\x53\x53\xe6\xd2\xa5\x4b\x83\xc6\xdd\x92\x4f\xd2\xb9\x86\x86\x3c\x6d\x96\x99\xe9\x02\x13\x6e\x62\x67\xb5\x85\x2c\x8b\xb7\xb1\x14\x0e\xf9\x2b\x05\x8b\xff\x4a\xd3\x37\x4f\x01\x65\xe5\xc1\x9d\xac\xbf\x0c\xcb\xa2\xcd\x95\x67\x56\x39\x83\x3a\x4a\x16\x5d\x9c\x87\x59\xe5\xf1\xb6\xa0\x9d\x9d\x1d\xfd\xea\xab\xaf\x9a\x47\x1f\x7d\x14\x85\x42\x01\x71\x58\x18\xff\xb5\xe3\xbf\x5d\x00\x3b\x88\x2c\x88\xad\xf8\xef\x3e\x80\x75\x00\x6b\x44\xb4\x16\x3f\x6f\x02\xd8\x22\xa2\x06\x80\x16\xe2\xeb\x3f\xc2\x30\xd4\x7f\xf7\x77\x7f\x87\x9b\x37\x6f\x4a\x59\x92\x7c\x90\xf2\x91\x65\x7d\xb9\xc0\x5a\x86\x19\x20\x3a\xe2\x2c\x2b\x53\x97\x35\xe1\xd2\x0e\x7d\xdd\x19\xe9\x2e\x9b\xd2\x44\xa5\x52\x89\x16\x16\x16\x30\x32\x32\xa2\xe3\xe5\x59\x13\xff\x2a\x10\xa9\x7a\x29\xe8\x28\x90\xb7\x6f\xab\x74\x3c\x3a\xa3\xd4\xf4\x96\x56\x09\xfd\x77\xcb\x26\x64\x47\x7e\xbd\x23\xe7\xe5\xaa\x4a\x3a\x6d\xb4\xea\x15\xc7\x65\xf3\x1f\xbe\x56\x93\x7b\xb7\x8b\xe7\x4a\x81\xda\x5d\xa9\x76\x6e\x07\x5e\x34\x5c\xb1\xc7\x0d\x9e\x3f\x7f\x1e\x97\x2e\x5d\xd2\xd3\xd3\xd3\xb4\xbb\xbb\x9b\x57\x77\x97\x06\x96\xd6\x44\x1e\xcf\x78\x7b\x88\x8a\x3a\xe3\x66\x59\x2b\x59\xd6\x07\xcf\x3f\xab\x8d\xa5\xd6\x06\xd2\x20\x26\xb5\x38\xc4\x3b\x2f\xcf\xa5\xed\x64\xde\x70\x84\x4b\xba\x80\x7e\xf0\x74\x75\xf8\x14\x5d\xe7\xcf\x9f\x57\x4b\x4b\x4b\x49\xbc\x6a\xb5\xaa\x3a\x9d\x8e\xcb\xe2\x72\xb9\xac\x7a\xf2\xf8\xce\x3a\xbf\xf6\xda\x6b\xe6\x91\x47\x1e\x41\xa1\x50\xd0\xe8\x81\x47\x00\xa0\x6b\x8c\xd9\x25\xa2\x5d\x44\x16\xc4\x36\x80\x7a\xfc\x67\x41\x64\x3b\xfe\xb3\x80\xd1\x41\x04\x1a\x61\x10\x04\xe6\x7b\xdf\xfb\x1e\xae\x5f\xbf\xce\xcb\xce\xe2\xaf\x6c\x1b\xa9\x90\xb2\xda\x4e\x86\x27\xce\x02\x07\x0f\x74\x99\x98\x52\x43\x49\xad\x66\xd3\x59\xa7\x33\xd2\x9a\x30\x0c\x4d\xbb\xdd\xa6\x23\x47\x8e\xc0\x4e\x92\xda\x09\x53\x00\xca\x10\x68\x6d\xb4\xb3\x3d\xb5\x5b\x98\x99\x6c\xfa\xf3\xc9\x26\x2e\xc4\x13\xa0\x76\x9d\x1b\x71\x87\xe7\x5b\x46\xa3\x63\xd0\x41\x60\x3b\xef\xac\xa9\x62\x90\xf8\x45\x73\xa7\x26\x26\x9a\x04\xd0\x18\x78\x86\xc6\x66\x76\x8a\x67\xc7\xda\x9e\xb7\x56\xed\xde\x6c\xfb\xba\x1d\xd3\x0a\x22\xd2\xe7\xcf\x9f\xc7\x91\x23\x47\x70\xef\xde\x3d\xec\xec\xec\x58\x3e\xf0\x5f\xce\x07\x39\x24\x91\xa6\x36\xf7\xe7\x7c\xe5\x1d\x9c\x0f\xfb\x24\xef\x65\x9c\x94\xc9\x2c\xe8\xc9\xca\x1f\x22\x8e\xcb\xdc\x05\xf3\xe7\x42\xa5\x45\x1c\x29\x98\xd2\xf2\xe1\x79\x4a\x81\x74\x99\xff\x52\xf6\xb2\xac\x18\x69\x39\x6b\x00\xe6\x73\x9f\xfb\x9c\x7a\xe6\x99\x67\x68\x7e\x7e\x1e\xe7\xce\x9d\xf3\x2e\x5c\xb8\x80\x73\xe7\xce\xd1\x91\x23\x47\x50\x2a\x95\x88\x81\x49\x16\x2d\xd2\x0a\x97\x16\x9b\xcb\x1a\x4c\xd1\xbc\xba\xba\x4a\xb5\x5a\x0d\x63\x63\x63\x36\x4c\x23\x5a\x09\xe9\x22\x02\x82\x56\xfc\xd7\x8c\xff\x76\xe3\xbf\x26\x90\x5c\x30\x66\x0f\xde\xd6\xb7\x6f\xdf\xc6\x9f\xfd\xd9\x9f\xe9\x8d\x8d\x8d\xbe\xfe\x95\xc1\x67\x09\xf6\xd6\x49\xde\xe6\xb5\x5d\x0a\x30\xe5\x4d\x6e\x40\xba\x70\xd7\xf8\x8e\xbf\xbb\x04\xc8\xc6\x73\x81\x91\x02\x40\x1b\x1b\x1b\xe8\x76\xbb\x98\x9f\x9f\x4f\x3a\xa3\x4d\x6b\x60\xbc\x50\x01\xf7\x47\xbb\xf5\xfd\x5b\xa5\xc3\x95\xae\x1a\xb7\xe0\xd0\xdb\xde\xd1\x2b\x86\xc0\x4a\x4d\xec\x06\x6e\x69\xa4\xad\x0e\x18\x4e\x24\x45\x98\x62\x7a\xcf\x14\xef\xf3\xf0\x0c\x8d\x4c\x35\x0b\x67\xf6\xec\x14\x26\xb7\xca\xc1\xed\x46\x29\xdc\x01\xf5\x18\x6f\x37\x8a\x8d\x8d\x8d\x61\x69\x69\x89\x74\x34\x9d\xcd\x01\x21\x45\x59\x9a\x82\x3e\x7f\x6e\x81\x70\xbf\x2c\x0b\x81\x3f\x4b\x10\xc8\x02\x06\x2e\x4c\x2e\xb0\x91\xf4\x49\x61\x94\xd6\x8b\xab\x5c\xd9\xa1\xb2\x3a\x1a\x44\xbe\x32\x7f\xa9\x25\x65\xfe\x52\x36\x13\x7a\x94\x52\xb4\x6f\xdf\x3e\x7c\xf4\xa3\x1f\xa5\x8f\x7e\xf4\xa3\x14\x4f\x50\xda\xeb\x0a\x3c\x20\x9a\x53\x2b\x16\x8b\x98\x9f\x9f\x37\x0f\x3d\xf4\x10\x5d\xb9\x72\x25\xcf\x2a\xcc\xfb\xb5\x74\xc1\x41\x57\x52\xdf\x46\xa3\x81\x6b\xd7\xae\xe9\xd5\xd5\x55\x1a\x1b\x1b\x33\xd5\x6a\xd5\xb6\xad\x1d\xba\x58\x60\xe8\x22\xb2\x44\xba\x14\x1d\xbd\x69\xad\x13\x0d\x20\xbc\x7f\xff\xbe\xf9\xc9\x4f\x7e\x82\x1f\xff\xf8\xc7\xae\x09\xe1\x2c\x9e\x4b\x70\x77\xf1\x5c\xf6\x71\x97\x4c\xa6\x40\xc9\x63\x91\x5d\x99\x49\x2d\x07\xf6\x2e\x51\x4a\x6a\x51\xa9\xa5\x38\x93\xf5\xca\xca\x8a\x39\x7c\xf8\x30\x55\x2a\x15\x9d\x68\xfc\x64\xff\x17\xa9\xdd\xa2\x0e\x9b\x45\xdd\x3e\xb0\x59\x3e\x56\xd0\x54\x4e\xed\xdf\x88\xa9\x91\xbb\x75\x79\x58\xea\x5d\xc6\x21\x20\xfa\xb8\x28\x2a\xb3\xb7\xb5\x3d\x9d\x58\x19\x2a\xd4\xda\xde\x23\xf3\xf5\xd2\xb1\xae\x6f\x96\xd6\x47\x82\x75\x4d\xd1\x3e\x0f\xc4\x93\xa6\x33\x33\x33\x66\xdf\xbe\x7d\xb8\x76\xed\x9a\xd4\xfe\x52\xbb\xf3\xc6\xcb\xb3\x4a\xb2\x3a\xa8\xab\x16\xae\x1a\xdb\x30\x49\x03\x80\x3e\x60\x73\xb5\xb1\x8b\x7b\x5c\xb0\xa4\x05\x21\x35\x99\xec\xf8\x2e\x2d\x28\x41\x4c\x8b\xfc\x24\x68\xc8\x32\xe5\x6f\x92\xcf\x53\x4f\x3d\x45\xcf\x3e\xfb\x2c\xaa\xd5\x2a\xe2\x73\x57\x7c\x22\x2a\x2a\x50\x61\xbe\x5e\x9c\xac\xb6\xbd\x91\xed\x52\x10\xc4\xb2\x46\xa5\x52\x49\x1f\x3f\x7e\x9c\xde\x78\xe3\x0d\x59\x97\x41\xa0\x21\xad\x8b\xbc\xb8\x06\x80\xda\xda\xda\xd2\xd7\xae\x5d\xa3\x8b\x17\x2f\xea\xf8\x46\x00\x53\x28\x14\x74\xac\x38\xad\x25\xa2\x11\x4f\xa6\x1a\x63\xf4\xe6\xe6\xa6\xd9\xdd\xdd\x35\x5f\xf9\xca\x57\xf4\xd5\xab\x57\xcd\xfd\xfb\xf7\x5d\x4a\x59\x4e\x35\xd8\xe7\x3c\x6b\xc4\x15\xd7\x38\xe2\x4a\x00\x4a\x0a\x95\x13\x25\xbc\xb1\xa4\xa0\xb9\x00\x42\xbe\x67\xe5\x23\x27\x63\x14\x00\xfd\xb9\xcf\x7d\x4e\x55\xab\xd5\xe4\x02\x27\x22\xaa\x22\x5e\xa2\x55\xa0\x83\x17\x6e\x8d\xfd\xf2\x93\xb7\x6b\xbf\x52\x08\x55\xd9\xd5\xeb\xb8\x4b\xc2\x24\x58\x48\xd8\x4b\xbc\x0c\x5c\x13\xac\xbd\xd5\x5a\x1b\xcb\xa0\xe5\xeb\x77\xae\xec\xdb\xf9\xdf\x2f\x1d\xd8\xfe\xce\x6e\x41\xaf\x1b\x98\x26\x22\x73\xb3\x63\x8c\xd1\xed\x76\x1b\x5f\xfe\xf2\x97\x5d\x13\x4e\xd2\xe5\x09\xa2\xe5\x57\x56\x5c\xee\x0f\xb8\xf3\x71\xa5\x95\x71\x5d\xf4\x64\xd1\xca\x69\xca\xa3\xd9\x45\x47\x56\xd9\x83\xf2\x01\x7b\x77\xd5\xc7\x59\x87\x5f\xf9\x95\x5f\x51\x07\x0f\x1e\xb4\xef\x7e\xfc\x57\xf4\x42\x94\x1f\x5e\x1d\x3d\xfe\x81\x9b\x63\xbf\xb3\x5b\xd0\xcb\xdf\x7e\xe4\xfe\xff\xb1\x59\x0e\x36\x63\xad\x1e\x18\x63\x82\x7a\xbd\x8e\x6f\x7d\xeb\x5b\xa8\xd7\xeb\x3c\x5f\x17\xe0\x66\x81\xf0\xa0\xfa\x38\x79\x74\xfc\xf8\x71\xf5\xce\x3b\xef\x68\x00\x78\xfe\xf9\xe7\xd5\xdf\xfc\xcd\xdf\x68\xee\x17\x83\x5f\x9e\x0c\x0c\x55\xce\x03\xd2\x26\xc3\xfb\xea\x2d\x77\x8e\x4a\xcd\x28\xad\x0d\xa9\xc9\xa4\x56\xe5\x7f\xbc\x30\x59\x46\xd2\x8d\x8b\xc5\x22\xcd\xcd\xcd\x19\xa5\x94\x89\x2d\x0f\x13\x7f\x45\x0b\x10\x68\xb5\xda\xdd\xaa\x74\xbc\xea\x9e\x9d\xc2\x01\x05\x52\x64\x04\x0a\xf0\x13\x90\xc0\x28\x62\x73\x1b\x36\xba\x01\x12\xeb\x22\x56\x38\xfd\x36\x00\xcf\x32\xde\x48\x46\x20\xf8\x5a\x4d\xed\x6d\x14\x9f\x9e\xdd\x29\x8c\xae\x57\xba\x37\x9b\x45\xdd\x06\x60\x69\x35\x9e\xe7\xe1\xc2\x85\x0b\x98\x9b\x9b\xa3\xb7\xdf\x7e\x9b\xd7\x55\x9a\x87\x96\x14\x97\x56\x23\x91\x46\xc6\xe5\x5a\x9c\x53\x2e\x4d\x4b\xa9\xd5\x21\xe2\x72\xfa\x80\xfe\xb6\x91\x56\x88\xcb\x6a\x90\xd6\x8c\xd4\x6c\x2e\x4d\x8c\x21\xf3\xd1\x70\xd7\xd9\x35\xcc\xc1\xb9\x73\xe7\xe8\xb9\xe7\x9e\xa3\xf8\x73\x72\xb2\x56\x06\x80\x91\x62\x97\x26\x9e\xbc\x3d\xfe\xb1\x0f\xdc\x1a\xfb\x1f\xab\x1d\xef\xe3\x95\xae\xf7\xa8\xaf\xd5\xca\xed\xa9\xd6\x0d\x13\x4d\x74\x85\x44\x84\x72\xb9\xac\x2b\x95\x0a\xae\x5f\xbf\xae\x05\x3d\x5c\xf3\xf2\x72\x39\xdd\xae\xb6\x94\x5a\x1b\x8e\x78\x66\x7d\x7d\x3d\xc9\x33\x96\x1b\x70\x3f\x57\x1a\x91\xaf\xab\xad\x5c\x6d\x21\xad\xc4\xbc\xf6\x93\xe1\x7d\x6d\xca\x27\x47\x81\x7e\xe4\xc9\x02\x07\x17\x91\xbc\x10\x29\xa4\x94\x11\x6e\x96\x96\x96\xcc\xa5\x4b\x97\x92\xbb\x67\xa9\x77\xae\x00\x19\x63\x28\x54\x06\x2b\x63\x9d\xf5\xc9\xdd\xc2\xec\xc4\xae\x3f\xd7\xff\x65\x2c\xb3\x18\xd8\xc6\xb0\xe8\x29\x0d\x0c\x3d\x6b\x24\x46\x87\x04\x50\xd8\xb6\xf4\x38\x8c\x5f\x04\x6c\x0f\x03\x52\xa0\xf2\xf8\xae\x7f\xee\xf0\xfa\xc8\xa9\xae\x6f\xee\xdc\x1f\xed\x6e\x18\xc0\x1e\x20\x69\x00\x98\x5a\xad\x46\x67\xcf\x9e\x45\xa1\x50\xc0\xdd\xbb\x77\x65\xa7\xe1\xfc\x92\x8d\xe5\x12\x38\x1e\x57\x02\x10\xcf\x53\xa6\xb7\x69\x5c\x82\x2b\xdb\xc2\xd5\x36\x52\x91\xc8\xf2\x65\xdb\x03\xe9\xf6\x76\x75\x24\xa0\xbf\x03\x48\x3e\x48\xd9\xe3\x71\x25\xff\x08\x80\x79\xf1\xc5\x17\xd5\xc1\x83\x07\x51\x28\x14\x14\x45\x17\x81\x15\x00\x8c\x10\xa8\x32\xd5\xf4\x0f\x7c\xfc\xda\xd4\xbf\x3e\xb9\x32\xfa\x6f\x8a\x21\x1d\x8e\x3f\x90\x1a\x19\x6f\xf9\x27\x1a\xa5\xf0\x67\x6b\xa3\xdd\x35\x03\x13\x5a\x99\x9b\x9c\x9c\x34\xdd\x6e\x97\xee\xdd\xbb\x97\x45\xaf\x8b\xfe\xbc\xba\xf0\x77\x99\x9f\x2b\x1f\x97\x6c\xb8\x86\x17\x59\x3c\x92\xed\x92\x55\x4e\x96\x65\x68\xc4\xaf\x4b\xfe\x34\x90\xde\x00\xe6\xd2\x54\x5a\x64\x94\x55\xb8\x0b\x6c\x24\x33\x79\xe1\x52\xb8\xcd\x89\x13\x27\xa8\x54\x2a\xa5\xca\x8e\x81\x04\x1d\x4f\xeb\xb5\xb1\xee\xc6\x6c\xa3\x38\x3f\xd6\xf6\xa6\x7a\xe0\x61\x7b\xac\x89\x3f\x06\xa2\x1e\xe7\x92\xb0\xb8\x70\x6e\x33\xc5\x87\xa7\xf0\xf3\x4c\x93\x65\xdc\x38\x72\xf4\xf1\x2d\xbb\x31\x2e\xce\x98\x40\x54\x0a\xd5\xc2\xc2\x46\xe9\xa3\x93\xbb\x05\x75\x7f\xb4\x7b\xa7\x55\xd0\x41\x14\x8d\x08\x80\x56\x4a\x61\x6e\x6e\xce\x9c\x3b\x77\x8e\xe2\x7d\x1f\xb6\x9e\xd2\x32\x70\x69\x61\x2e\x70\x2e\x2b\x42\x6a\x5d\x0e\xfc\x52\x00\xa5\x05\xe1\x02\x24\x49\x87\x4b\x1b\x81\xc5\x75\xc9\x0a\x67\xb5\x14\x3a\x29\x7c\x80\x9b\x26\x19\xae\x1d\x71\x01\x80\xe6\xe6\xe6\xa8\xd1\x68\xe8\x97\x5e\x7a\x49\xc5\x97\x6b\xd9\x89\xcf\x92\x31\xa6\xe2\x1b\x9a\x78\x6c\x79\xf4\x99\x8f\x5f\x9b\xfe\x9f\x66\x76\x0a\xbf\xa6\x40\x15\xbe\xe9\xcf\xd3\x98\x9c\xde\x29\x1c\x5c\x1a\x6f\x5f\xdc\x29\x86\x3b\xf1\xc6\x2c\x6d\x8c\x31\x0b\x0b\x0b\xe6\xe2\xc5\x8b\x92\x2e\xce\xe3\xbc\x76\xe3\x72\x2d\xfb\x80\xab\x9e\xb2\x3f\x64\x01\x36\x77\x52\x49\x70\x3f\x5e\x6e\x96\xc5\x9a\x05\xf4\x3c\x0e\x58\x1c\x4e\x7f\x52\x7f\xf9\x59\xbd\x24\x8c\x3b\x89\xfc\x32\xae\x4b\x28\x25\x53\x24\x23\x92\x72\xae\x5c\xb9\x62\x0f\x42\xb1\x71\x12\xcb\x83\x88\xd0\xf2\x75\xb8\x59\xe9\xd6\xf7\xd5\x4b\x07\x47\xba\xde\x18\xb3\x33\x92\x6f\x53\x12\x20\x60\x35\xa1\x78\x89\x56\xd6\x90\x84\x28\x24\x13\xb3\x20\x7e\xdb\xa4\xbb\x0b\x02\x50\x86\x46\xa7\x77\x0a\x1f\x38\xbc\x51\x3e\x0d\x60\x6d\x73\x24\x58\x0f\x94\xd1\x94\x8c\x81\x22\x77\xfe\xfc\x79\x1c\x38\x70\x80\x76\x77\x77\xb1\xb5\xb5\xe5\xb2\x12\x78\xee\xbc\xc3\x66\xbd\xbb\x00\x99\x5b\x83\x32\x2e\x07\x1c\x97\xb6\x93\x1d\xdb\xa5\xa9\x12\x56\xa3\x5f\x56\x80\x7e\xa1\xe4\x71\x65\x7b\x4b\x50\x72\x85\x4b\xde\x24\xb2\xf8\xab\xbf\xfa\xab\x74\xfe\xfc\x79\x3c\xf9\xe4\x93\xd6\x5a\xf6\x11\x59\x19\x65\x32\xa8\xee\x6d\x14\x0f\x7d\xe4\xdd\xc9\xdf\x3e\xb3\x58\xfd\xb7\xe5\x40\x3d\x44\x7d\xfb\x84\xa3\x36\x2e\x07\x6a\x6e\xa2\x55\x28\xdf\x98\x6a\x5d\x0e\x3c\xd3\x31\xc6\x84\xf1\xce\x80\xf0\xd8\xb1\x63\x74\xeb\xd6\x2d\x74\x3a\x1d\x17\x08\xc8\x3a\xba\xea\xc9\xeb\xe2\x8a\xcb\xe3\xb8\xac\x2a\x57\x27\x76\x59\x3d\x12\x7c\x79\x7c\x97\xe5\xc1\xf3\x91\x6d\xef\xa2\xd1\x95\xbf\x01\xb3\x38\x14\x4b\xec\xca\x30\xcb\xec\xe2\x42\x0f\xa4\x05\xca\xc5\x94\x2c\x66\x12\x00\xf3\xc6\x1b\x6f\x98\xf3\xe7\xcf\xdb\xf4\xe9\x3f\x82\x6a\x94\xc2\x56\xbd\x1c\xec\xec\xab\x97\x0e\x95\xba\xaa\xd2\xb7\xaa\x22\x25\x04\xe8\xa1\x08\xb1\xca\xb9\xe2\xa5\xd2\xe4\xe4\x9b\x58\x29\x00\x81\xbc\x72\xa0\x0e\xed\xdf\x2c\x7d\x68\xb6\x51\x9c\x6a\x16\xf5\x72\xa3\x14\xb6\xe2\xfd\x6a\x14\xef\xfd\x30\xd5\x6a\x95\x0e\x1f\x3e\x6c\x16\x16\x16\xe8\xad\xb7\xde\x92\x9d\x22\xaf\x73\xdb\x12\xfb\x78\xc5\xe2\xb8\xb4\x86\xcb\x04\x95\x16\x80\xcb\x52\x71\x29\x02\xee\xcf\xf3\xc2\x80\x3c\x6c\x38\xd7\xa2\x92\xab\xb2\x3e\xdc\x3f\x65\x5d\x3d\xf6\xd8\x63\xea\x93\x9f\xfc\x24\x4d\x4e\x4e\x42\x29\xa5\xe2\x53\xb6\x4a\x00\x8a\x30\xa8\x54\xdb\xde\xcc\x13\x77\xc7\x3e\xf6\xc1\x1b\x13\xff\xfd\x5c\xbd\xf8\x69\x4f\xab\x1a\xa5\x0e\xc4\x61\x6d\x1f\x3d\xa8\x6a\xdb\x3b\xa2\x0c\x56\xef\x4c\xb4\xdf\x85\xa2\xae\x31\x26\x04\x60\xca\xe5\xb2\xfe\xd1\x8f\x7e\xe4\x02\x4e\x5e\x3f\xc9\x87\x2c\x1e\xba\xda\xd8\x65\xc1\x70\x7f\x0e\x44\x9c\x77\x06\xfd\xed\xed\xe2\xa5\x4d\x07\xa4\xe5\x42\x96\x05\xa4\xe9\x76\xa8\x48\x67\x7b\x25\x16\x87\x86\x9b\x38\xb0\x44\xae\x49\x12\xa9\x11\x73\x27\x82\x1c\xf9\xf6\x69\x14\x00\xb4\x6f\xdf\x3e\xbb\x21\x0c\x88\x4d\x48\x22\x32\x20\xa0\x5e\x0e\x9a\x3b\xa5\xb0\x39\x5f\x2f\x1d\x2e\x86\xaa\x2c\x33\x4a\xa9\x62\x59\x23\xfb\x63\xd0\xbb\x8a\x16\x40\xdf\x55\xe1\x82\x40\x6b\xa1\x70\x49\x41\xf2\x4e\x50\x06\xd5\x89\x5d\xff\xcc\xc1\xcd\xf2\xb9\xb1\x96\x6f\x76\x4a\xe1\x7a\xb3\xa0\x3b\xa0\x5e\x03\x28\xa5\x4c\xb5\x5a\xa5\xb3\x67\xcf\x62\x61\x61\x01\x31\x80\xb8\x78\xc5\xdf\x65\xa3\xf2\x86\xcd\x8a\x2b\xf9\x0d\x96\x16\xe2\xd7\x05\xfc\x12\x34\x38\x27\xf9\x33\x9f\x23\x91\x69\x6d\x38\x89\xb4\xdc\xb9\x64\x8e\x3b\x02\xa0\x9f\x7f\xfe\x79\xba\x70\xe1\x02\x1d\x3b\x76\x0c\x4a\x29\x15\x0f\x49\x0a\x88\x3e\x92\x2c\x97\x03\x35\xf9\xd0\x5a\xe5\xec\x07\x6f\x8c\xff\x57\x27\x56\x2b\xff\xe5\x48\x57\x1d\xa7\x68\xe8\x92\x9c\xdb\x69\xac\x45\x4a\x40\xef\xca\x01\x82\x02\x8a\xd3\x3b\xc5\x93\x5b\x23\xc1\x6b\xf7\x2b\xc1\x7d\xb0\xb3\x3b\xcf\x9e\x3d\x8b\x20\x08\xb0\xb2\xb2\xe2\x02\x36\x4e\xb3\xce\x08\x77\xa8\x9b\x54\x3d\xb5\x23\xae\x9c\x47\xe4\x0a\x5d\x96\x0d\xa4\x01\x80\xc7\xe1\x7d\x92\x77\x09\xde\x3e\x9c\x36\x09\xee\x92\x3e\xfb\x9e\xc8\x8b\xeb\xb3\xfa\x2c\xb3\x46\x76\x7e\x97\x16\x92\xc8\xe7\x8a\x2b\xe3\x81\x85\xd3\xf2\xf2\x32\x88\x28\x39\x82\xcd\x9e\x8f\x81\x18\x40\xa0\xc8\x6c\x8c\x04\x8d\x76\x41\x77\xf7\x6d\x15\x0f\x17\xb4\x2a\xa6\xf6\x80\xc0\x9e\x35\xea\x68\x39\x46\x55\xaa\x15\xf9\x97\xb2\x0c\x43\x92\x4a\x71\xd0\x60\x99\xf6\x36\xa7\x12\x88\xc8\x2b\x86\xb4\x6f\xb6\x51\xfc\xe0\xc2\x66\xf9\x91\x52\x48\xcd\x7a\x39\xdc\xe8\x78\x46\x47\x32\x1a\x9d\x41\x62\x01\xe4\xdc\xb9\x73\x38\x79\xf2\x24\x95\xcb\x65\x6a\x34\x1a\xd4\x6e\xb7\x5d\xda\xdd\x85\xf6\xb6\x11\x5d\x9a\xcb\xf5\x2b\xe7\x2f\x5c\xfc\x77\x75\x62\x97\x42\x90\xca\xa1\xcf\x84\x45\x7f\x47\xca\xca\x83\x2b\xac\xbe\xf0\xe7\x9f\x7f\x9e\x9e\x7d\xf6\x59\x9a\x98\x98\x40\xa9\x54\x52\xf1\x06\xae\x02\xa2\x7b\x80\xcb\xbe\xa6\xda\x81\xad\xf2\x43\xcf\xdc\x18\xff\xfc\x99\xc5\xea\xef\x4f\xed\x16\x3e\xec\x19\x55\xe1\xe7\x5a\x50\x32\xc9\x6d\x1b\xd0\xce\x63\x51\x32\x6d\xe5\x19\x35\xb6\xa7\x59\x98\xbf\x3b\xde\xbe\xb4\x5b\xd4\x0d\x10\x02\x22\xd2\x4a\x29\x33\x3f\x3f\x6f\x2e\x5f\xbe\x2c\x69\xe5\x3c\xe5\x1d\x33\x4b\x89\xca\x3e\x25\xc1\x9c\xa7\x71\x29\x5f\x19\x4f\x5a\x0f\xb2\x2c\x17\x90\x4b\x9e\x4b\x85\xcd\xc1\x84\x97\x2f\xbb\x50\x92\xaf\x27\x3c\xed\xb3\xcb\x94\xc9\x1a\x1f\xbb\x50\xcc\x35\x6b\xeb\x42\x30\xc9\x44\x03\x80\x16\x17\x17\x75\xbc\xd2\x92\x2c\xd1\xc6\x61\x9a\x88\x48\xc3\x60\x7d\xb4\x5b\x0f\x15\xc2\xb9\x7a\xf1\x88\x67\xc8\x27\x8b\x0c\x26\xaa\x5b\xba\x93\xf3\xb3\x38\x80\x68\x22\x14\x3d\xbf\x84\xdd\x26\x2d\x64\x86\xe2\xd8\x5c\xf8\x10\x7f\xdb\x62\xcb\xb3\x48\x13\xc5\x57\x86\x8a\x23\x81\x3a\x3a\x5f\x2f\x7f\x78\x7e\xab\x74\x40\x19\xb4\x76\x8a\x61\xa3\xeb\x19\xde\x88\x00\x7a\x4b\xd1\x47\x8e\x1c\xc1\xc2\xc2\x02\xbd\xfd\xf6\xdb\xdc\x8a\xe0\x82\xe1\xe2\x97\xd4\x34\x3a\x23\x8d\xb4\x3e\xac\x3f\x17\x34\x69\x9d\x48\x41\x03\xfa\x81\x9f\x5b\x31\x59\x66\x30\x84\xbf\xec\x48\x89\x20\x57\xab\x55\x75\xea\xd4\x29\x3a\x77\xee\x1c\x3e\xf2\x91\x8f\x50\xad\x56\x83\xe7\x79\x0a\xd1\x96\x81\x02\xa2\xeb\x2c\xca\x9e\xc6\xd8\xde\x7a\xf1\xc8\x53\xb7\x6a\xff\xf2\xc2\xed\xb1\xdf\xdf\xbb\x5d\xfc\x64\x51\xd3\x1e\xca\x30\x19\x6d\xbb\xf5\xe6\xb7\x7b\x97\x1a\xd9\x76\x1b\xe9\xaa\x7d\x63\x6d\x9f\x6e\x4f\xb6\x7e\xd6\x51\xba\x45\x44\x21\x10\x9d\xa1\x71\xe8\xd0\x21\xba\x79\xf3\x26\x82\x20\x90\x7c\x91\x9a\x5a\x02\xae\xb4\x02\x81\x7e\xb0\x94\x9d\x9c\x44\x9e\x2e\x25\x9c\x35\xad\xe0\x02\x13\x9b\xb7\x6c\x07\xd7\x33\x4f\x03\x91\x56\xb6\x2b\xf1\xc9\x51\xee\xa4\x50\x65\x99\xd4\x52\xe8\xa4\x79\xca\x51\x4a\x36\xac\x14\xd6\xbe\xe1\xcc\xa3\x8f\x3e\x4a\xf1\xce\x3a\x43\xd1\x35\x0b\x88\x27\xb1\xb4\x86\xc1\x5a\xb5\xb3\xa9\x15\xf4\x6c\xa3\xb8\xe0\x1b\x2a\x24\xc7\xae\x01\x29\x9b\xc3\xae\x97\x5a\xbf\x48\x98\xa8\x9f\xfa\x24\x7e\xac\x99\x80\x64\x0b\x7a\x0f\x63\xac\x75\x13\x7d\x2b\x13\xe5\x07\x80\x9d\x71\x1a\x0d\x5f\xa8\x52\xed\x78\x8f\x2d\x6c\x96\x9f\x9d\xdf\x2a\x1d\x54\xa0\xd6\x4e\x29\x6c\x04\x1e\x34\x45\x27\xbd\x53\xbc\x6a\x44\xc5\x62\x11\xb5\x5a\xcd\x9c\x3f\x7f\x9e\xe6\xe6\xe6\x68\xcf\x9e\x3d\xb4\xbd\xbd\x8d\x76\xbb\xcd\x01\xd5\x25\x30\x5c\x7b\xc8\x61\x47\x5e\x1b\x01\xee\xb1\x33\x7f\x96\x6d\x63\xd3\xca\x8e\x01\x47\x5a\x1b\x57\xe6\x95\xca\x77\x74\x74\x94\xa6\xa7\xa7\xe9\x99\x67\x9e\xa1\xb3\x67\xcf\xe2\xe8\xd1\xa3\xa8\xd5\x6a\x96\x37\x05\xc4\x1b\xb8\x8c\x31\x65\x5f\xd3\xd8\xcc\x4e\xe1\xd0\x85\xdb\xb5\x4f\x3f\x7d\xb3\xf6\xdf\xce\x6f\x95\x7e\xa3\x18\x7a\x07\x14\xc8\x33\xf1\xf7\x4c\xc6\x02\x3e\x28\x3d\xfa\x14\xed\x6b\x95\x4a\xef\xf8\x27\x52\xb5\x96\x7f\xd4\x10\x96\x97\x6b\x9d\x1b\x5a\xa1\x83\xf8\x18\xc9\xd1\xd1\x51\x1d\x6f\xf1\x96\xc3\xb7\x3c\x0b\x8b\xd7\x35\x6b\xbe\x49\xf2\x48\xb6\xb3\xcb\x62\x71\x0d\x03\xa5\xbf\xa4\xcf\x15\x3f\x65\x3d\x08\x7a\x5d\x20\xd4\xd7\xc7\xf9\x50\x85\x6b\x0f\x39\x0c\xe1\x8e\x90\x2e\x58\x0a\xa4\x0b\x10\xa4\x79\x24\x89\x71\x09\xad\x79\xed\xb5\xd7\xcc\xc9\x93\x27\xa9\x58\x2c\x26\xf3\x1c\x76\x7b\x2e\x11\x69\x4d\x46\xdf\xab\x75\xd6\xbb\x9e\xe9\xee\x6d\x14\xf7\xfb\x9a\x4a\xc9\x69\xe9\x56\xc5\x10\x12\x61\xea\xdb\xbb\xc1\xde\x23\xcf\x48\xda\x7a\xdf\xad\x20\xb5\x15\x3e\xf2\xeb\x09\x65\x62\x14\x13\x53\x60\xec\x2f\xfe\xe6\xa5\x3a\xd6\xf6\x1e\x3b\xb8\x51\x7e\xf6\xc0\x56\xf9\x70\x21\xa4\xb0\x51\x0c\x77\xba\xca\x68\x50\xb4\x01\xcf\x1e\xe0\x0c\x00\xb5\x5a\x8d\xf6\xee\xdd\x6b\x4e\x9d\x3a\x85\xfd\xfb\xf7\xd3\xb5\x6b\xd7\xcc\xc8\xc8\x88\x22\x22\x7b\xba\x93\x9c\x7b\x90\x9d\x93\xb7\x13\xe7\x6b\x8a\xb7\x8e\x76\x92\x1a\xd3\x25\x94\xb2\x4d\xb3\x2c\x4f\xd9\x59\x52\xed\xbf\x7f\xff\x7e\x3a\x77\xee\x1c\x3d\xf5\xd4\x53\x38\x7d\xfa\x34\x26\x27\x27\x51\x2a\x95\xac\x75\xe1\x21\xba\xdf\xb7\x44\xa0\x11\x5f\x53\x6d\xbe\x5e\x3a\xfa\xe4\xed\xda\xbf\x7c\xea\xe6\xf8\xef\x1f\xd8\x2c\xfd\xab\x52\xe8\x1d\x24\xd8\x03\x7f\xe3\xca\xda\xe6\xb6\x16\x06\xd2\xba\xc1\x5e\x47\x90\x4a\xc3\x00\x46\x81\x4a\x53\x3b\xfe\xb1\x7a\x39\x7c\xf3\xfe\x68\x77\x15\xd1\x31\x92\x21\x11\xe9\x27\x9e\x78\x02\xf5\x7a\xdd\x6e\xcc\xe2\x8a\x94\xf7\x05\x69\x81\x64\xf1\x01\x2c\x9c\xb7\x9f\x0b\x7c\x78\x07\x86\xe3\x99\xfb\xc9\x76\x75\x59\x8e\xd2\x9a\x91\x96\x84\x2c\x47\x02\x56\x52\x4f\x9b\xc0\x35\x14\xc9\xfb\xe5\xce\x15\x96\x97\x4e\x8e\xa7\xf2\xd2\x03\x00\x3e\xff\xf9\xcf\xab\x4a\xa5\xa2\x00\xd8\x1d\x81\x15\x00\x13\xc6\x98\x3d\x00\xe6\x3c\x43\xf3\x8f\xdc\x1b\xfd\xd0\x33\x37\xc6\x7f\x65\xb4\xa3\x6a\xbd\xa3\x03\xed\xe9\x61\x71\x7d\xc5\x2c\x7b\xcf\x2f\x2f\x8c\xf3\x8b\x01\x0d\x87\xd3\x14\xf8\x20\x2d\x4e\xec\xd9\x10\xa0\xc9\x6c\xd6\x4b\xc1\x3f\xbf\x33\xb3\xfb\x57\x6f\xcd\x36\x5f\x5e\xaf\x74\xd7\x34\xa1\x09\x20\x30\x30\x01\xa2\x6d\xec\xda\xd6\xdf\xde\xd0\xb5\xb6\xb6\x86\x7b\xf7\xee\xe1\xe5\x97\x5f\xd6\xbe\xef\xab\x20\x08\xb2\xda\x81\xbf\x03\xfd\xed\x95\x15\xd7\xc5\xfb\x41\xed\x98\x97\x47\x52\x76\xa1\x50\x50\x4f\x3e\xf9\x24\x00\xe0\xe1\x87\x1f\xb6\xe7\x53\x00\x80\x5d\x1d\x51\x71\x1a\x1f\x26\xb2\x32\x46\xba\xaa\x76\x60\xb3\x74\xf4\xe1\x95\xca\x2f\x1f\xd8\x2a\x3f\x5f\x0a\xe8\x28\x81\xfc\x88\x91\xdc\x9c\x00\x2c\xd3\x5d\xe3\x37\xb7\xeb\x8f\x69\x9b\x6b\xbd\xd2\xf9\xc7\xef\x3c\xbc\xfe\xef\xef\x8d\x75\xaf\x81\x50\x8f\xef\x2b\x09\x8c\x31\xfa\x0f\xfe\xe0\x0f\x64\x27\x72\xf1\xd6\xc5\x0f\xee\x27\x5d\x16\xe0\x66\xf1\x36\x2b\xbf\x41\xed\xe4\xfa\xcd\xab\x43\x9e\x4c\x40\xce\x71\x48\x24\xca\x32\xbb\x6c\x06\xd2\x94\xb2\xce\x64\xfc\x4a\x0d\x94\x37\x77\x92\xa0\xf0\xce\xce\x0e\x8e\x1e\x3d\x6a\x57\x5a\x4c\x1c\x37\x8c\x87\x2f\xda\x10\xcc\x5a\xb5\xbb\xd9\x28\x85\x8d\xb9\xed\xe2\x81\x62\xa8\x46\x92\x61\x89\x05\x00\xdb\xe9\x53\x46\x73\xda\xf0\x89\xee\x5e\xe1\x61\x22\xee\x20\x9d\x2e\xf2\x4f\x59\x21\xf1\xb3\x32\x54\x2e\x07\xde\xd1\x7d\xf5\xe2\xc7\x4f\xac\x56\xfe\xc5\xdc\x76\x71\x5a\x81\x76\x77\x0b\x61\xbb\xeb\x01\x14\x1d\xab\x48\x88\xdb\xc6\x0e\x69\x46\x47\x47\x69\x66\x66\xc6\x5c\xb8\x70\x81\x9e\x78\xe2\x09\x7b\x20\x92\x9a\x9a\x9a\xa2\x95\x95\x15\xa9\xed\x5c\x1a\x8f\xfa\x29\x74\xb6\xab\xf4\x77\xb5\x91\xcc\xc3\xc8\x74\x17\x2e\x5c\xa0\xc5\xc5\x45\xf3\xd2\x4b\x2f\xa9\x27\x9e\x78\x02\xb3\xb3\xb3\x98\x9d\x9d\x8d\x17\x46\xc8\x43\xfc\x2d\x49\x5c\xdf\x22\x80\x11\xa5\x51\xd9\xd3\x2c\xec\x3d\xb3\x54\x7d\xf6\xc3\xef\x8d\xff\xd7\xa7\x97\x47\x7f\x7f\xba\x59\x78\xae\xa0\xd5\x34\x81\xd2\x9d\x2e\x05\x1c\x94\xd6\x01\xa9\x78\x06\x76\x28\x93\x3a\xf9\x3a\xa3\x29\xcb\x5d\xb5\xbf\xda\xf5\xd5\xed\xc9\xd6\x1b\x5d\xcf\xd8\xf9\x8e\x90\x88\x70\xe0\xc0\x01\xbc\xfb\xee\xbb\xd2\xf2\xe3\x2a\x44\x0e\xdf\x52\x72\x8c\xf4\xf0\x83\x5b\x2e\xfc\x59\xf6\x05\xb0\x3c\xa4\xe3\x56\x85\x7d\x77\xb5\x93\x6b\x38\xcb\xfb\xa0\x94\x9d\x1c\xf5\x17\xa5\x25\x0c\x46\x24\xeb\xb2\xfc\xac\xcb\x42\x45\x1e\xce\xd3\x0c\x42\xbc\x54\x9e\x1f\xfc\xe0\x07\xd5\xe9\xd3\xa7\xc1\x6e\xc9\x2a\x22\xba\x40\x7a\x82\xa2\x73\x1c\xe7\x08\x34\x77\x70\xa3\xf4\xf8\xb3\xd7\x27\x3e\xb5\x67\xa7\x30\xcf\x27\x3f\xfb\x74\x8c\x64\x05\xd8\x7b\x9e\x75\x91\xa4\x65\x71\x5c\xd6\x87\xe9\xfd\x24\xf8\x84\x74\x1a\x13\xaf\x38\x6b\xc2\xe6\x76\x29\xfc\xc9\xad\xc9\xd6\xb7\xae\x4f\xef\xfe\xf3\x6a\xb5\xb3\xbc\x13\xcf\xf0\xc7\x57\xfc\xf1\x6b\x05\x39\xcf\xb4\x31\x26\xb9\x1a\xf3\x8b\x5f\xfc\xa2\x06\x80\xc7\x1f\x7f\x5c\xbd\xfa\xea\xab\xba\x5c\x2e\xab\x56\xab\xc5\x29\x77\xb5\x57\x9e\x76\x02\xfa\xdb\x35\xb7\x9d\x7f\xf7\x77\x7f\x57\xd9\x1d\xbf\x71\x5c\x3b\xdc\xb3\x56\x85\xe2\x6d\xa8\x34\x8a\x13\xbb\x7e\x6d\x61\xb3\x7c\xe2\xe8\xfd\xf2\x2f\xcd\x6e\x17\x3f\x5e\x0a\xd4\x71\x8a\xda\x17\xc9\x61\xd3\xd2\xc8\x18\xca\xb9\x2d\x8b\xbc\x6c\x0c\x80\x50\x99\xc6\x2b\xf3\xdb\xff\xcb\x0f\x0f\x6f\x7d\x23\x50\x66\x9d\x88\x9a\x88\xce\xcb\xd0\xf7\xee\xdd\xc3\x5f\xfd\xd5\x5f\x3d\xa8\x15\x37\x6c\x9c\xac\x3e\x02\x0c\xd9\x4f\x7e\xce\x72\xf2\xe4\x20\x95\x4f\x16\x0f\x5d\x9d\x7a\x90\xa0\x41\xa4\xc9\x32\x5d\xb3\x4c\xa5\xac\x32\x01\x44\x63\xd7\xa7\x9f\x7e\x1a\x8f\x3d\xf6\x98\xf5\x4f\xc0\x03\x40\xcd\x18\xb3\x87\x88\x66\x61\x30\x37\xdb\x28\x3c\xfc\xe1\xeb\x13\xcf\x1f\xd8\xb4\xa7\x88\xd9\x7e\x9c\x5e\x5d\x49\x5c\x2c\x4d\x26\x2b\x7c\x18\x37\xbc\x9d\x9c\x91\xdc\xc0\x00\x9d\xae\x67\x16\xb7\xcb\xe1\x2b\x4b\x63\xed\x1f\xdc\x9c\x6a\x5d\x5a\xa9\x76\xee\xd4\xcb\x61\x03\x14\x5d\x2e\x6c\xcd\x66\xbb\x4d\x1a\x80\x5d\xb2\xb6\x59\x59\x3f\x74\xbb\xdd\xde\x7d\xbb\x00\xbe\xf4\xa5\x2f\x69\x00\x78\xe4\x91\x47\x12\xbe\x5e\xbd\x7a\x35\xe5\xc7\xdf\xaf\x5e\xbd\xaa\xed\x2f\x00\xbc\xf8\xe2\x8b\xea\x4b\x5f\xfa\x92\x7e\xf1\xc5\x17\x15\x00\xf8\xbe\x0f\xcf\x4b\x2e\x03\x94\x20\x61\xfd\xf8\x9f\x0f\xc0\xf7\x43\x2a\x4f\x35\xfd\xa9\xf9\xad\xd2\xf1\x83\x1b\xe5\xa7\xf6\xec\x14\x3e\x58\xe9\x7a\x8f\x7a\x1a\x35\x00\x6a\x50\x1b\x0c\xc3\xea\xe1\x80\xc6\x9d\x93\x81\x41\xab\xa0\x6f\xfc\xe3\xd1\xcd\x7f\x77\x75\x6f\xf3\x65\x10\x36\x8d\x31\x4d\x8a\xbe\xa6\xd5\x5f\xf8\xc2\x17\xf2\x86\x0d\xc3\x76\xf0\xbc\xe1\xc7\x83\x00\x53\x1e\x90\x0f\x52\xe6\xef\x27\x8e\x82\xb0\x38\x78\x24\xeb\xb2\x50\x27\x2b\x7c\x10\x72\xe5\xe5\x95\x57\x5e\xe2\xff\xf4\xd3\x4f\xab\x33\x67\xce\x00\x91\xe6\xf2\x11\x2f\xd3\x01\x98\x00\x30\x05\x60\x0f\x0c\xe6\xc6\x5b\xfe\xb1\xa7\x6f\xd4\x3e\xf1\xd0\x6a\xe5\x8c\xaf\xe1\xdb\xf9\x0a\x7b\x15\x64\x7a\x73\x46\x82\x1c\x88\xde\xec\xb2\xac\x9c\x03\x91\x96\x48\x7f\x78\x72\xa8\x72\x6a\xea\x51\xc4\xe3\xe1\x8e\x78\x31\x88\xb4\xba\x9e\x59\x6e\x94\xc2\x9f\xad\x57\xba\xaf\x2d\x8e\xb7\x2f\x2f\x8f\x75\x6e\x6c\x8e\x04\x6b\xbb\x05\xdd\xe2\x40\x12\xf3\x27\x99\x17\xe1\xfc\xb3\xa0\x92\x1c\x93\xd8\x9b\xec\x4d\x09\x8b\x23\x9c\xbb\xbe\xb1\x79\x0c\x48\x8a\xc5\x95\x20\x91\x80\x05\x19\x14\x6b\x2d\xbf\x32\xb1\xeb\xcf\x2f\x6c\x94\x4e\xcc\x36\x8a\x4f\x4c\xee\xfa\x67\x47\xba\xde\x89\x08\x2c\xc8\x87\xbb\xdc\x5c\x97\xa2\xf5\xfd\x99\x24\x99\xf9\x19\x18\xac\x57\x82\x97\xbf\xf3\xf0\xfa\xbf\xbb\x57\xeb\x5c\x43\x74\xa4\x5f\x0b\x40\x70\xef\xde\x3d\x3d\xa4\xd5\xf1\x20\x6e\x90\xe5\x37\x28\xcd\xcf\x43\x43\x9e\x45\xe2\xcc\x6f\x18\x4e\x0f\x6b\xbe\xf2\x82\xc0\xde\x65\xfc\xac\x70\x49\xa8\x13\x84\x3c\xcf\x53\x61\x18\xea\x97\x5e\x7a\x89\x0b\x67\x62\x79\x20\x02\x90\x59\x18\xcc\x55\xba\xea\xc0\xf9\xdb\x63\x1f\x39\xbd\x54\xfd\x60\x31\xa4\x32\x39\xaa\x9c\x1c\x19\xd8\xd7\xdb\x6d\x84\xf8\x57\x76\x72\xe9\x86\x52\x83\xec\xd9\x95\x9f\x14\xfe\x78\x38\x63\x80\x8e\x26\x34\xda\xbe\xbe\x55\x2f\x07\x6f\x6e\x8e\x04\x57\x57\xab\xdd\x77\xee\x8d\x75\x6e\xed\x14\xc3\xb5\x46\x29\x6c\x04\x5e\x34\xb1\x8a\x34\x88\x48\x20\x91\x02\x30\x8c\x80\x49\xd0\x90\xd6\x04\x7f\xf6\x61\xa0\x4a\x01\x95\xab\x1d\xbf\x56\x6d\x7b\x7b\xe6\xb7\x4a\x47\xa7\x77\xfc\x47\x26\x77\x0b\x8f\x8e\x76\xbc\xe3\x85\x90\xe6\x94\x41\x05\xcc\xb2\x70\xce\x4d\xdb\x67\x3b\x67\x91\x6a\x1f\x7e\x8f\x0e\x8b\x97\x66\x5d\x2a\xa6\x41\x4f\x61\xf4\xe9\x8d\xbe\x34\x76\x12\xc0\x04\xb7\x26\x5b\x5f\xff\xf6\xc9\xf5\xff\xb5\x55\xd4\xcb\x88\xce\xfe\xec\x00\x08\x62\xab\xc3\x25\xab\x83\x64\x39\x6f\x6a\x60\x98\xce\x3b\xec\xd0\x72\x50\xd9\x59\xf4\x72\x97\x0b\x1c\x59\x1d\x95\x57\x60\xa0\x25\xe0\x48\x3f\x08\x68\xf2\x90\x72\x28\xd4\xfc\xdc\xe7\x3e\xa7\x46\x47\x47\xc1\xe6\x3c\xec\x5d\x2d\x13\x88\x2c\x8f\xd9\x42\x48\xf3\x27\x57\x2a\x4f\x3d\x79\xab\xf6\xd1\xb1\xb6\x37\xd5\x67\x06\x5b\x2b\x24\x7e\x4e\x1e\xd2\x7b\xd2\xd1\x9b\xed\xcc\x20\x26\xc7\x82\x48\x85\xa7\xd2\xc4\x5d\x24\x23\x4e\x24\xec\x3c\xbf\x34\x90\x04\x9e\x5e\x69\x16\xf4\xad\xad\x72\x70\x63\xa7\x14\xde\xdc\x1a\x09\x6e\xad\x54\xbb\x8b\x3b\xc5\x70\xb3\xeb\xe9\x66\xc7\x33\xad\x8e\xaf\x3b\x21\x41\x1b\x18\x7b\xd2\x14\xe0\x1e\xe2\x64\x59\x1d\xaa\xef\xd7\x40\xf9\x1a\x7e\x21\x54\xc5\x72\xa0\xca\x7e\x48\xd5\x5a\xdb\x9f\x98\x69\x14\x0e\x8c\xb7\xfc\x23\x63\x2d\xff\xf0\x58\xdb\x3b\x5c\xee\xaa\x79\x5f\xd3\x9e\x08\x28\xd2\xcb\xa7\xbc\x3c\x37\x23\xff\xff\x70\xe9\xb2\xe3\xf9\x8e\xfa\x6b\xfb\x1a\xff\xf3\xf7\x8f\x6e\x7e\x5d\x2b\xac\x23\xb6\x3a\x56\x56\x56\xf4\x5f\xfe\xe5\x5f\xfe\x3c\x43\x85\xbc\x3e\x30\xac\xb2\xce\x2a\xff\x41\xad\x8e\x41\x7d\xbc\x2f\x4f\x72\x79\x0e\x41\x78\x1e\x6a\x5a\x37\xc8\x22\x19\x76\x18\x94\xf9\x3c\x31\x31\x81\x4f\x7d\xea\x53\xa8\x54\x2a\x40\xb4\xf6\xef\x03\xa8\x10\x51\xc5\x18\x33\x85\x68\xe8\x32\xab\x0c\xcd\x2d\x6c\x96\x4e\x3d\x73\x63\xfc\xe3\x7b\x1b\xc5\x83\xca\xd8\x31\xb8\xe8\x95\xa0\xa4\x73\x92\x61\xcb\x7b\x76\x66\x1e\xbd\x61\x8c\xd5\x84\x7c\xf2\x33\x59\x95\x89\x53\xda\xb0\x5e\x5c\x66\xdd\xf4\x0d\x8b\x7a\x54\x00\xe8\x8d\x88\x2c\x3d\x89\xd6\x04\x9b\x5c\xb5\x45\x19\x6d\x80\xc0\x10\x5a\xa1\x32\x9b\x5d\x65\xd6\x3b\xbe\x5e\x6b\x16\xf4\x5a\xb3\x18\x2e\xef\x16\xf4\x6a\xdb\xd7\xeb\x6d\x5f\xd7\x77\x0b\xba\xd1\xf6\x75\xab\xe5\xeb\x56\xd7\x33\x1d\x43\x46\xeb\xe8\x2c\x55\xcd\x34\xbd\x52\x06\x8a\x0c\xa9\x72\x40\xc5\x62\xa0\xca\xc5\x50\x95\xcb\x5d\x55\xad\x74\xd5\x54\x31\x50\x53\x23\x5d\x35\x53\xe9\x78\xb3\xa3\x1d\x6f\xae\x18\xd2\x1e\x5f\xd3\x84\x32\x54\x53\x06\x65\x00\xbe\x6b\x9e\xe2\x81\x20\x21\x07\xab\xe5\x5c\xd4\xfb\x8d\xd3\x0b\xcc\x1e\xe6\xc4\x97\x75\xfd\xec\xaf\x4f\xad\xfd\xeb\xc5\xf1\xce\x35\xf4\xac\x0e\xfd\xcd\x6f\x7e\x13\x4b\x4b\x4b\xc0\xf0\x7d\xc4\x15\x37\x4f\xe1\xc2\xe1\x37\x48\xc1\x66\x4d\x1d\x0c\x63\x59\x0c\x43\x1f\x00\x28\x7f\x08\x42\x38\x01\xb2\xa0\x61\x4d\x2f\xd7\x30\x85\xe7\xed\x02\x9d\x41\x95\x53\x9b\x9b\x9b\xf8\xea\x57\xbf\xaa\xe3\x7d\x1e\xf6\x4c\x8c\x66\xac\x49\xb5\x31\x91\xf9\xae\xc9\x74\x6e\x4d\xb6\x3a\xdb\xa5\x70\xf3\xe9\x5b\xb5\xe7\x8e\xac\x8d\x9c\x2e\x68\x2a\x12\xb7\x2a\xe2\xe7\x48\xc0\xa2\x67\x4a\x0c\x0f\xbe\x33\x31\x1e\xf0\xd8\xb8\x46\x68\x4e\xea\xe5\x45\x06\x02\x3c\xa8\x67\x3a\x13\xd2\xd6\x44\x8c\x12\xd1\xb9\x22\xd2\x20\x67\xe0\xc6\xc6\xe0\x49\x3e\x20\x05\x63\x8a\x04\x2a\xaa\x80\x6a\x45\xc2\xc1\xd1\xae\xc2\xc4\xae\x9d\xcb\x88\x80\x05\x04\x6d\x80\x8e\x21\xb4\x34\x99\x16\xf3\x0b\x0c\x8c\x1d\xda\xa8\x78\xe9\x53\x91\x89\xe6\x27\x94\xa1\x32\x01\x45\x8a\xbe\x44\xf5\x09\xf0\x63\x9a\x94\x6b\xf7\x44\xef\x90\xb6\x74\x18\xc9\x48\x44\xfd\x43\x0c\x3b\x8c\x88\x79\x90\xda\x83\x23\x9c\x6b\x8a\xaa\x67\xf4\xa5\x5f\x00\x4c\xe3\x00\x00\x1b\xf9\x49\x44\x41\x54\x15\x42\x2e\x60\xc9\xbc\xd9\x64\xf9\x6e\x41\xaf\x5c\xdd\xbb\xf3\xed\x8d\x91\xa0\x15\x9f\x2c\xa6\x84\xa5\x34\x6c\x27\x46\x4e\xb8\x4b\xf6\x07\x29\xd6\x41\x56\x7c\x16\x88\x65\xd1\x92\x57\x8f\xbe\x7c\xfd\x8c\xc8\x83\x88\xcf\x22\x48\x82\x45\x1e\xc1\x59\x04\xe6\x8d\x07\x39\x0d\x89\xfb\xda\xd7\xbe\xa6\x3f\xff\xf9\xcf\xab\xd1\xd1\x51\xbb\xe2\xa0\x01\x70\xf0\xe8\x80\x28\xd8\x18\x0d\x5a\xff\xe9\xf8\xc6\xf6\xe3\x95\xee\xca\x99\xc5\xea\xd3\xa3\x1d\x6f\x02\x86\xed\xf5\xb0\xf3\x1d\xc6\x24\xe2\xd6\x9b\x48\xed\x85\xd9\x2e\x60\xef\xaf\x05\x10\xc9\x36\xec\xe4\x66\x3c\x9e\x46\x6f\xf3\x19\x3f\x2c\xc8\xe6\x95\x00\x83\xb1\x4f\xd6\x94\x88\x72\xe7\x13\x7f\x5c\xfc\x93\x67\x66\xdd\x58\xab\xc5\xb0\xf4\xf1\xf7\x36\x0a\xd1\xfd\x34\x7e\xfc\xed\x4d\x25\xb1\x86\x2c\x3c\xb1\x4d\x72\xbc\x76\xf6\x27\x7d\x1a\x1a\x7a\xbd\x35\x3e\x7d\x3e\xb1\xa8\xc8\xd6\x82\xcf\x52\x24\x55\x60\x7c\xee\x91\x4e\x6c\x9f\x05\xb3\xd3\x52\x98\x93\xc2\x8e\xa4\x2c\x01\xbc\x60\x60\xcb\xef\xe1\x31\x96\x0f\x88\x69\x4d\xcf\x69\x25\x7b\x3c\x12\x22\xc9\x6e\xd4\xd3\xab\xd5\xce\x3b\x3f\x39\x58\xff\x3f\x6f\x4c\xb5\x7e\xa0\x15\x3a\xd1\x4e\xd3\xbe\xe1\x55\x96\x56\x77\x29\x3f\xa7\xf6\xce\x88\xeb\x0a\xb7\xbf\x72\xf8\x08\x0c\xee\x27\xc3\x5a\xf3\x79\x4a\x3c\xe9\xbb\xf6\x30\x14\xc0\xce\x07\xa5\x0b\xb1\x4d\xc3\xff\xb4\x88\x6f\x89\xe5\x10\xcf\x2b\xcc\xe3\x32\x23\x3d\x95\xa7\xc9\xf0\x07\xdc\xf4\xd9\xf8\x36\xad\xba\x73\xe7\x0e\x7c\xdf\xc7\xf4\xf4\xb4\xa1\xe8\x40\x16\x7b\xed\x5e\x17\xbd\x23\xe8\xbb\xa1\x87\xce\xe2\x78\xe7\xde\x6a\xb5\x7b\x7f\x7c\xb7\x30\x3e\xda\xf5\xc6\x23\xf1\x8f\x8b\x24\x80\x6f\x3b\x37\xb1\x94\xda\xed\xe9\x91\xfc\x51\x42\x61\xb2\x67\xa1\x77\x9c\x18\xfb\x46\x22\x9d\xa6\xf7\xa1\x1c\x25\x69\x6d\x3c\x12\xf1\xf8\x96\xf8\xe4\x37\xc9\xdf\xa4\xf2\x48\x86\x56\x09\xd7\xec\xd7\x9f\x69\x3a\x23\x5a\x7a\x5f\x86\x46\x9d\x24\x7d\x6a\x1a\xa7\xc9\x06\x50\x9c\x67\x6f\xe8\x86\x1e\xaf\xe2\xa8\x09\x7d\xb0\x65\x24\x88\xc3\xe2\xf4\x00\x81\x88\x92\x7c\x53\x51\xb9\x45\x67\xab\x49\x22\x0e\x28\x29\x33\xc9\x9b\x49\x03\x09\xda\x93\xcf\x0d\x78\xdb\x25\x4d\x94\x7a\x81\x81\x41\xd7\x33\xad\x6b\xb3\xcd\x9f\xfe\xc3\xf1\xcd\xff\x6b\xb9\xd6\x7d\xcb\x28\xd8\xeb\x17\x9b\x44\xd4\x8e\xe5\xc9\x7c\xef\x7b\xdf\xd3\x48\xf7\x11\xfb\x6e\x9d\xec\x0b\xae\xb8\x9c\x7a\x30\x7f\xd9\x59\x79\x3f\x31\x2c\x0f\xde\xef\x6c\x3a\x99\x3f\x90\xee\x7f\x1c\x18\x8c\xc8\x83\xe7\x25\x69\xb7\x74\x68\x7e\x93\x9b\xcd\xd0\x88\x84\x3c\x5c\x12\x06\xe6\xc7\x33\xe7\xe8\xc8\x01\xc6\xc5\x00\x9e\xa7\x64\x8a\x64\x10\xcf\x9f\xa7\xd5\xad\x56\x8b\x6e\xde\xbc\xa9\x7d\xdf\xa7\xf8\x93\x7c\x13\x1f\xcc\x62\x97\x2c\x3b\xf1\x6f\xd7\xc0\x74\xeb\xe5\x60\xf3\xe6\x54\xeb\x36\x01\x98\x6a\x16\x67\x7c\x4d\x05\x4e\x9d\x89\xc7\x29\x76\x98\x92\x38\xbb\xdc\x6a\x23\xf3\xdd\x88\x29\x45\x24\x80\x26\x59\xca\xb5\x9a\x9a\x45\x4d\xbe\x91\xe1\x1d\x8d\x78\x50\x4f\x8b\xc6\x34\xa4\x4a\x32\xbd\x76\xef\x75\xc8\xf4\x90\x21\x6d\xf1\x44\xf4\x45\xa0\xc8\xad\x04\x0b\x96\xc4\x86\x59\xc2\x06\x91\x62\x2e\x9c\x73\x3e\x98\x7a\xa0\x63\xa4\xf6\x4f\x80\xb9\x97\xd8\x58\x6b\x4d\x94\xd5\x03\xe4\xec\x42\x7b\x40\x60\x2f\xf0\x4a\xe7\x9b\xb6\x16\x6c\xfb\x45\x1c\x02\x0c\xd6\x2b\xc1\xf2\x0f\x8e\x6e\x7d\xe7\xd2\x81\xed\xbf\x6f\x16\xf4\x2d\x22\xba\x07\x60\x83\x88\xb6\x8c\x31\xf6\x98\xc1\x60\x6b\x6b\x0b\x37\x6f\xde\xa4\x4e\xa7\xe3\x02\x0c\x2b\xcf\x1c\x24\x64\x87\xb6\xef\xbc\x46\x5a\xf8\x5b\x36\xf2\xdf\x3e\xd9\x47\xaf\x55\x6c\x5e\x9a\xc5\xcb\xeb\xab\xb2\x2f\x2a\xa4\x69\x93\x00\x92\xbc\xf3\x53\xce\x6d\xa1\x24\x32\x91\x1d\x56\x23\xcd\x14\x12\x69\x25\x50\xc8\x67\x4e\x18\x8f\xcf\xcb\x71\xa1\x36\xa7\xcd\x55\x36\x00\x98\xbb\x77\xef\x1a\x22\xb2\x87\x01\xd9\xf2\x92\x6b\xf7\x10\x5d\xfa\xdb\x01\x51\xd0\xf5\x4c\xeb\xee\x44\x7b\x71\x7d\x34\x58\x9b\x68\xf9\x93\x95\x8e\x1a\xb7\x82\x9e\x00\x06\x81\x15\xe9\xe8\x2f\x19\xe3\xe3\x44\xd8\x79\x3c\xd6\x09\xed\xae\x51\xae\x0d\x5d\xeb\x89\x24\x6b\x0c\xdb\x09\xfa\x3b\x92\x5c\xa1\x88\x94\x2b\x9b\x24\x4c\xf2\x61\xb4\x58\xa0\x91\x16\x46\x42\x16\xa5\x84\xa0\x77\x7e\xb3\x7b\xdf\x07\xef\xa8\x49\xdd\x18\xad\x94\x44\xb2\xf4\xb2\x00\x3b\x8c\x63\xe0\xd7\x27\x9d\xe8\x95\x9d\xaa\x0f\x3b\xde\x20\x46\xbf\xb4\xe5\x67\xb9\x2d\x1b\x90\xa2\xb8\x5d\x5f\x77\xde\x9a\x6d\x5e\xfe\xde\xf1\xcd\xbf\xbe\x3d\xd1\x7e\x5d\x2b\x2c\x02\x58\xa1\xf8\xb2\x67\xc4\x93\xa2\xb1\x05\x6b\x5e\x7f\xfd\x75\xdc\xba\x75\x0b\xe8\x1f\x1a\xb8\x60\x55\xca\x38\xef\x0f\x12\x78\x78\x5a\x3e\x02\xe0\xe9\x38\x00\x0c\x52\xd2\x3c\x0f\xfe\x6e\xf3\xe1\xb4\x5b\x3f\xde\xe4\x32\xdf\x14\x70\x70\xf1\x94\x63\x25\x57\x27\x96\x26\x93\x74\xb2\x70\xd9\xd9\xa5\x35\xc1\x99\x21\x09\x96\x48\x2a\xf3\x07\x04\x98\x2d\x2d\x2d\xe1\xe2\xc5\x8b\x3a\x3e\xc3\x54\xdb\x6f\x5a\x10\x0f\x59\xc8\x5e\xbd\x47\xe8\x6a\x98\xee\x46\x25\xd8\xbc\x35\xd5\xba\xad\x09\xe1\xc4\x6e\x61\xda\xd7\x54\x94\x73\x08\x89\xe3\x7d\xdb\x24\x30\xd0\x0b\xb0\xaa\x3a\x26\x3d\xf5\x91\x1d\xeb\x24\xd1\xfc\x49\x2f\x53\x63\xff\x67\x1a\x33\x0a\x62\x4d\x13\x77\x92\xde\xea\x4c\x6c\xbd\xf0\xf0\x24\x29\x67\xb9\xd5\xe0\xf1\x80\xcc\x5a\x52\xd6\x12\xb1\x49\x79\x55\xc5\xac\x65\xd2\xc5\x13\x70\x61\x9d\x9f\xc5\xed\x1d\x3b\x10\xf3\x22\xa9\x43\x42\x05\xe4\x8a\x47\x4a\x82\xb8\xb9\x94\x42\x9b\x18\x30\x93\x28\x8c\xe8\xe4\x1a\x50\x0b\x1a\x22\xcf\x38\x0e\xb1\x4a\xda\x79\x1b\x0d\x60\xad\xda\x5d\xfc\xd1\xe1\xad\xef\x5e\x3e\xd0\xf8\x5e\xa3\xa4\x6f\x18\x98\x25\x22\x5a\xa6\xe8\xd2\xe7\x4d\x00\xdb\x44\xd4\x8a\xad\x8d\xb0\x5e\xaf\xe3\x87\x3f\xfc\x21\xba\xdd\x2e\xe3\x48\x5f\x9f\xe1\x60\xc1\x6b\xe9\xea\x67\x49\x87\x14\xe9\xc8\x11\x97\xf7\x55\xa1\xa6\x52\xf9\x73\xee\xf2\x7e\x22\x95\xb6\xec\x93\x40\x3f\x28\xf1\x3c\x0c\xd8\x1c\x07\x47\x29\x89\x36\xd2\x54\x71\x75\x68\xe9\x38\x3a\x4a\xc2\x5c\x66\x9a\x04\x18\x17\xea\x01\xfd\x74\x71\x30\x91\x20\x62\xde\x78\xe3\x0d\x33\x35\x35\x45\x93\x93\x93\x06\x80\xfd\x2c\x3f\xb9\x76\x2f\xb9\x6a\x8f\xd0\x69\x7b\x66\xf7\xee\x78\xfb\xee\xea\x58\x77\xb5\xd2\xf5\x2a\xd5\x8e\x1a\x27\x90\xe2\xf3\x19\xb2\xa6\x89\xc2\xe4\x71\xac\x96\x4d\x34\xa1\x8d\x47\xfd\x79\x50\x2f\x2e\x1f\xdf\xa7\xc2\xc0\xd2\x26\x15\x25\x56\x16\x4b\x97\xe2\x28\xa7\x9b\x58\x8b\xf5\xfb\x13\x58\xba\xa4\x55\xd3\xa0\xd1\xb7\xfc\xc1\xfb\xa7\x18\x1b\xf5\xfa\x70\xba\xc2\xbd\x43\xa0\xa3\x42\x9d\xfb\x38\xec\x44\xb1\xf4\x4f\x59\x2e\xbd\x30\xd3\x57\x1e\x1c\x40\x28\x2b\x19\x11\xb3\x5b\xd0\x8d\x37\xe6\x76\xfe\xf9\xfb\xc7\xb6\xbe\x7d\x67\xa2\x7d\x25\xf4\x70\x07\x84\x7b\x44\xb4\x82\xe8\xd6\xf8\x2d\x00\x8d\x78\x5e\x23\x00\x10\xd4\xeb\x75\x7c\xfb\xdb\xdf\xc6\xf6\xf6\x36\xb7\x16\x5c\x13\xfd\xbc\x63\x73\xd9\x97\x61\xdc\x1f\xc2\x8f\x87\xc9\x5f\x57\x3c\x59\xa6\x04\xaf\x41\x61\xca\x11\xd7\x49\x0b\xc1\x6d\xf2\x0c\x5a\xba\x01\xfa\x99\x35\xcc\xea\x4b\x5e\xfa\x07\xcd\x27\x2f\xcf\xbe\xb0\xdf\xfb\xbd\xdf\x53\xf1\x52\x9a\x42\xfc\x79\xbe\x31\xa6\x42\xd1\xcd\x71\x35\xfb\xb1\x1c\x0c\xf6\x8c\x76\xd4\xfe\x93\xf7\x46\xcf\x9d\x5a\x1e\x3d\x37\xb1\xeb\xef\x51\x20\xc5\xd9\x98\x9a\xd1\x4f\x69\xe9\xf8\x97\x90\x74\x22\xbb\xd2\x90\x09\xb3\xb1\xbf\x9c\xf6\x48\xc2\x1c\xfa\xa5\xb7\x1a\xc3\xcb\xcb\xa0\x03\x39\x61\x96\x46\x6e\x25\xa4\xea\xc9\x57\x7f\x1c\x19\x26\x9d\xdc\xf1\x95\x8f\xb5\x7a\x52\xd6\x06\x2b\x2f\xd5\xf9\x59\x39\x86\x1d\x90\x24\xaa\x8e\xfe\x52\x52\xf9\xf2\x2d\xfb\x36\x1f\x69\xe1\x18\x18\x04\xca\x04\x8b\xb5\xce\x8d\x57\xf6\x6f\xbf\x7c\x7b\xb2\x7d\x35\x50\x66\xcd\xc0\xac\x01\x58\x27\xa2\x4d\x00\x75\x63\x4c\x13\x40\x8b\x7a\xb7\xbd\xe9\x46\xa3\x81\x3f\xf9\x93\x3f\xc9\xea\x2b\x2e\x59\xb4\x6e\x90\xfc\xca\x3e\x97\xd7\xaf\xf2\xca\x18\xd4\x3f\xf2\xd2\xe4\xf5\x77\xe7\xaa\x0a\xd7\xe8\x12\xe1\xf8\xbb\xb4\x34\xa4\xbf\x34\x83\x90\x11\x97\x8b\xae\xfd\xe3\xe1\x32\xbe\x7d\x97\x8c\x90\x16\x91\xcd\x53\x22\xb8\x02\x60\x96\x96\x96\x68\x76\x76\xd6\x8c\x8c\x8c\xd8\x65\x5a\x1d\x5b\x1f\x1d\xf4\xc6\xae\x6d\x03\xd3\xe9\xfa\x68\xde\x1b\xeb\x2c\x2f\x8e\xb7\x17\x0d\x91\xa9\xb6\xbd\x5a\x41\x53\xc9\x0a\x5f\x3c\x2c\x76\xce\x73\xa6\x34\x1b\x45\xe2\x9f\xda\x36\xdd\x67\x46\xa7\x94\x65\xda\x51\x2f\x8c\xc7\xe1\x7b\x3d\x52\x71\x4c\xbf\x5f\x8a\x26\x6e\xd5\xa3\xa7\xad\xed\x86\x36\x50\x3a\x4d\xef\xda\x09\xee\x89\x5e\xa5\x93\xb9\x08\xd6\x9d\x99\xf1\x9c\x58\x03\x09\xd0\xf5\x78\x92\xaa\x26\x2f\x27\x0e\xe7\xa4\x1b\x44\xbc\xee\xfb\x2e\x25\x99\xeb\xe8\xd1\x63\x58\xbc\xe4\x37\x86\x16\x4d\x46\xdf\x1f\xed\x2e\x5d\x5a\xd8\xfe\xc1\x4f\x0e\x6d\xff\xfd\xca\x58\xf7\x4d\xad\xb0\x68\x60\x96\x89\x68\x95\x0d\x4d\x76\xe2\x15\x94\x0e\x80\xd0\x18\xa3\x2f\x5f\xbe\x8c\xef\x7c\xe7\x3b\xb2\x73\x72\x79\xcb\x1a\x5a\xf3\xb0\xac\xf9\x05\x69\x29\xb8\xe6\x34\x80\xb4\xbc\xcb\xe5\x5b\x97\x35\x9f\xd5\xef\xe4\x9c\x8a\xcb\x2a\xe2\xe9\xfa\xd4\x0e\xb1\x08\x2e\x94\x93\xc4\x01\x6e\x64\xcc\xb3\x5a\xf2\x10\x39\x2b\xcc\x86\xcb\x32\x87\xb5\x70\x78\xfa\x24\x6d\xb5\x5a\x55\x8d\x46\x43\xff\xce\xef\xfc\x8e\x8a\xcf\xb3\x54\x88\x76\x9c\xda\x0f\xe5\xaa\xe8\x6d\x59\x9f\x02\x30\xe5\x87\xb4\x67\x7e\xab\xf4\xd0\x99\xc5\xd1\x0f\x1c\xd8\x2c\x1f\x2d\x85\x54\x8e\xc6\xcb\xd2\x0c\x88\xb5\x9d\x9c\xb8\x03\x8b\x92\x68\xbe\x58\x4f\x5a\x85\x6c\xf7\x69\x64\x8c\xd3\xa3\x8e\x63\x3b\x0b\x7a\xe6\x4e\x02\x5c\x19\xa6\x09\x73\x3d\xba\xac\x56\x76\x18\x24\x59\x61\xfd\x24\x01\x30\xac\x93\xca\xf2\xd2\x3c\x49\x57\xc6\xc0\x8d\x92\x80\x93\xee\x84\x36\x5b\x35\x9e\xde\xc4\x3c\x70\xd8\x43\xec\x83\x44\x0d\xa3\xb7\x4b\xe1\xe6\xdb\x33\xcd\x2b\x3f\x9b\xdb\xb9\xb4\x51\x09\x6e\x1b\xc2\xba\x31\x66\x9d\x88\xd6\x01\x6c\x1a\x63\x1a\xf1\xe6\x41\x6b\x65\x68\x63\x4c\xd0\x6c\x36\xf1\xb5\xaf\x7d\x6d\x90\x55\x91\x67\xb1\x67\xf5\xab\x3c\x6b\x3b\xaf\xff\x64\xf5\xcd\x5c\xd9\xcf\xa0\x2b\x2b\xdf\x81\x61\x9e\x23\x02\x47\x2e\x4e\x14\x89\xc4\xdc\x5a\xe0\x56\x86\x94\x47\x23\xe2\x4a\x0b\x45\xce\xfa\xba\x24\x51\x2a\x20\x69\x89\xf0\x70\x72\xa4\xd5\x00\x54\xa7\xd3\x01\x00\x0a\xc3\x10\xd3\xd3\xd3\xa6\x50\x28\x68\x00\x76\xe2\x34\x40\x64\x92\xb6\x89\xa8\x6d\x05\x28\x24\xb3\x5b\x1f\x09\x36\x6e\x4e\xb5\x6e\x6d\x8d\x04\x1b\x23\x81\x57\xae\x74\xd5\xa8\x32\xe4\x59\x71\xe5\xa6\x7e\x6f\xe2\x8e\x19\xd1\x76\x05\x25\xd9\xc6\x4e\x09\x65\xbd\x65\xcf\xf4\xa6\xac\x5e\x07\xe6\x1b\x96\xa2\x04\xc9\xc0\x21\xe9\x51\x40\x5a\x4f\xc7\x3a\xde\xf0\x86\xb0\x69\x39\x83\xa2\xb2\x6c\xe7\x37\x89\x16\x07\xb3\x0e\x00\xc8\x25\x59\x5b\x9e\x5c\xda\x64\xa5\x59\x93\xa7\xb7\xfa\x82\x64\x1e\xc7\x05\x73\xe0\x16\x05\xfa\x85\xca\xe2\x10\x88\x43\x2f\x25\x93\xcf\x3d\x4c\xec\x99\x81\x86\x80\x9d\xa2\xae\xbf\xb3\xa7\x79\xe5\xe5\x23\x5b\x7f\xf7\xe6\xde\xe6\x4f\x77\x8a\xe1\x4d\x10\x2d\x01\xa9\xb9\x8c\x3a\x11\x6d\x03\xd8\xb5\x56\x46\x18\x86\xe1\xc6\xc6\x06\xfe\xf4\x4f\xff\x34\x6b\x12\xd3\x35\x59\x29\xe5\x9a\x5b\xc5\xc3\xcc\x21\x66\x75\x5c\x69\xc9\x70\xeb\xc4\x95\x1f\x6f\x0c\x59\x36\x8f\x2f\xd3\x48\xfa\x39\x1e\xa4\xca\xa6\x0c\x42\x5d\x96\x86\x75\x83\xc6\x65\x2e\x24\xcc\x1a\x47\x0d\x83\x7e\xc3\x86\x43\xc4\x01\xf3\xeb\xa3\xbd\x52\xa9\xe0\x13\x9f\xf8\x04\xa6\xa7\xa7\xa1\x94\x52\x00\xec\xe1\x32\xbe\x31\xa6\x1c\x7f\xef\x52\x43\xcf\x02\x99\x20\xd0\x54\x39\x50\x7b\x8f\xad\x8d\x3c\x7a\x6a\x79\xf4\xec\x4c\xa3\x70\xc0\xd7\xe4\xcb\xa3\x0a\x01\x03\x12\x63\x18\x2b\xd4\xa9\x5d\x92\xc6\xc4\x43\x1e\x8b\x20\xfd\xf9\x24\xd6\x0d\x1b\xb3\x47\x19\x22\xe9\x9f\x76\x8c\x92\xde\x42\x1f\xff\x32\x23\xc5\x24\x65\xf4\xe6\x48\xd2\xe7\x72\xa2\x07\x66\x49\x56\xa9\x97\x54\xd9\xfc\xc5\xbd\x75\x5c\xe0\xbf\xb4\x68\x64\x39\xe0\xd6\x4e\x86\xe5\xe5\x8a\xcb\x0c\x1c\x8b\x96\x2d\x5f\x37\x6f\x4e\xb6\xae\xbd\x3e\xbf\x73\x69\xb9\xd6\x7e\x37\x8c\x3e\x50\xb3\xd6\xc5\x26\x11\xd5\x01\x34\x01\x58\x2b\x23\x39\xe7\xa4\xdb\xed\xe2\x95\x57\x5e\x81\xb8\x1a\x21\x6f\x2e\x20\x4f\xbe\xb3\x64\x73\x58\x6b\x22\xaf\x6f\xe6\x59\x08\x59\xf4\xe5\x59\x26\x32\x5f\x57\x19\x00\xa2\xf3\x38\x86\xad\x94\xcb\x65\x75\xec\x61\xf2\x19\x86\x49\x59\x65\x3c\x48\xe3\x0d\xca\x43\xff\xfa\xaf\xff\xba\x9a\x99\x99\x81\x9d\x3c\x8d\x27\x4e\x7d\x44\x9f\xea\x57\x10\x0f\x61\x88\xc8\x0e\x61\x26\xca\x1d\x35\x73\xec\xfe\xc8\xa3\xa7\x96\x47\xcf\xcd\x6e\x17\xe7\x3d\x03\x3f\xb2\x28\xd8\x99\x0e\x62\xd5\x80\x0f\x63\xec\x2a\x6a\xf4\xea\x9e\xc4\x23\xd6\x71\x7a\x5d\x05\xc8\x36\xe7\x7b\xe6\xb9\xec\xa4\xf6\x43\x5c\xa0\x67\x01\x65\x4c\x79\xf6\x0f\x07\x44\x79\xfd\x4e\xda\x10\xae\x28\x79\x43\x94\x61\x4b\x72\xd9\x2a\x96\x2b\x3d\xc0\xb8\x3d\xd9\x7e\xe7\xf5\x7d\x8d\x4b\x77\xc7\xdb\xef\xc6\x5f\xb4\x5a\xb0\xd8\x44\x74\xae\x46\x03\x0c\x30\x10\x1f\x47\x60\xcf\x15\xad\x54\x2a\xaa\xd9\x6c\x0e\xea\xa8\x80\x43\x96\x90\xdf\x67\x86\x01\x12\x99\xef\x20\xa5\x38\x68\x58\x91\xe5\xe7\x2a\x37\x8f\xde\x94\x1f\x07\x0e\xe9\xf2\x18\xe7\x7a\x1f\xa6\xa2\x79\xc4\xb8\xca\xcf\x6a\x18\x57\x3c\x4e\x33\x1c\x7e\x99\xe8\x6a\x0f\xff\x8d\xcf\xf8\xb0\x71\xad\xf5\x91\xcc\x7f\x18\x63\xaa\x44\x94\x58\x20\x00\x26\xca\x5d\x35\x73\x70\xa3\x74\xfc\xe4\xbd\xd1\x33\xfb\xb7\xec\xed\x72\x0e\x8b\x23\xfe\x8d\x3a\x71\xfa\x8b\xd8\x3c\x6d\x6e\x58\x07\x49\xa5\x85\x23\xcd\x10\x7d\xdc\x35\x55\xd2\x57\xac\x2b\x9d\x88\xdf\xbf\xe1\xca\x91\x81\x30\x9a\x53\x87\x28\x21\x0b\x4b\x2c\xaa\xc6\xcf\x22\x02\x07\x42\x1b\xa4\x61\xb0\x53\x0a\x37\xdf\x9d\xde\x7d\xf3\xea\xde\xe6\x6b\xab\xd5\xce\xed\x0c\xc0\xe0\x16\x46\x07\xec\xfc\x92\xb5\xb5\x35\xfc\xc5\x5f\xfc\xc5\xb0\xca\x33\x4f\x71\x65\x3d\x0f\xdb\x79\xdf\x4f\x3c\xc0\x5d\xc6\x20\x9a\xb2\xea\xc4\x9d\x13\x54\x5c\x16\xc7\x30\xc3\x04\x38\xe2\x0f\x72\x0f\x02\x24\xc3\xe6\xfb\x7e\x69\xc9\x74\xbf\xf6\x6b\xbf\xa6\xe6\xe6\xe6\x00\xc0\x7e\x05\x69\xcf\xfa\x28\xda\x21\x0c\x62\x0b\x24\x5e\xc2\xad\xc1\x60\xa2\x18\xd2\xf4\xec\x76\xf1\xe0\xc3\x2b\x95\xd3\x87\xd7\xcb\x27\x46\x3b\x5e\x2d\x3d\xeb\x10\xbb\xa1\x7a\xe8\xcf\x53\x83\x9f\xc3\xe5\x95\xed\xea\xb1\x36\x48\x4c\xbc\xf6\xa7\x4d\x4d\x42\xfc\xc2\x48\x0d\xc9\xe8\x8d\x4a\x77\xe5\x9d\x3d\xbb\x3f\x7b\x67\x4f\xf3\x67\x1b\x95\x60\x49\x13\x36\x41\xd8\x44\xb4\x3a\x52\x47\xbc\xb4\x1a\x4f\x7c\x36\x99\x85\x91\x1c\xbd\xf8\xc6\x1b\x6f\xe0\x07\x3f\xf8\x41\x96\x02\x42\x86\xff\x30\x9a\x7d\x98\x61\x8e\x2c\x83\x87\x0d\x33\x2c\xc9\xa2\x67\x98\x7e\x3c\x08\x78\x32\xf3\xcd\x1a\xaa\xb8\xdc\xb0\xc3\x0d\x20\xbf\x50\x38\x9e\x01\x37\x93\xf2\xdc\x83\xc4\x19\x3a\xae\xef\xfb\xd8\xbf\x7f\x3f\xce\x9c\x39\x83\x7d\xfb\xf6\x59\xba\x12\x0b\x04\xf1\x81\x41\x76\x0f\x88\x31\xa6\x16\x5b\x21\x35\x18\x4c\xf8\x1a\x13\x13\xbb\x85\x7d\xc7\xd6\x46\x4e\x1e\xbd\x3f\x72\x62\xb2\xe9\xcf\x16\x52\x3b\x51\xad\x42\x1d\xf2\x7c\xd3\x94\x55\xe0\x18\xca\x0c\xe3\x1c\x73\x12\xd9\x71\xd9\x70\xe7\xc1\x88\xeb\xcd\x9a\xc9\x62\x86\x05\x0c\x39\x05\x67\x9f\x59\xb0\x81\x41\xdb\xd7\xcd\xa5\xf1\xce\xad\xb7\x67\x9a\x3f\xbb\x3d\xde\xbe\xde\x2c\x86\xab\x31\x60\xd4\x11\x01\x46\x03\xcc\xc2\x40\x74\xf8\x4e\xca\xc2\x00\xa0\x97\x96\x96\xf0\xcd\x6f\x7e\xf3\x41\x86\xcb\x3c\x0e\xd0\xdf\xc1\x78\x7a\xd7\x33\x77\x79\xf1\xb3\x00\xea\xe7\x29\x7b\x18\x9a\x86\xcd\x17\xe4\x08\xcc\xcb\x6c\x18\xb3\x28\xab\xa2\x59\x84\x0d\x62\x5c\x56\x5a\x59\x31\x99\xdf\xb0\xc8\xec\xca\x07\x85\x42\x41\x75\xbb\x5d\xfd\xc2\x0b\x2f\xa8\x52\xa9\x04\x00\x76\x03\x99\x4f\x44\xbe\x31\xc6\x9e\x38\x66\x01\xc4\x2e\xe5\x56\x09\x54\x23\x60\xa2\xd2\x51\xd3\xfb\xea\xa5\xc3\x47\xef\x8f\x9c\xd8\xbf\x55\x3a\x38\xda\xf6\x6a\x9e\x89\x0f\xb9\xe1\x5a\x18\xe8\x8d\x1f\x6c\x8f\x21\xf4\x4c\xf6\x64\x92\x22\x35\x31\x92\x8e\x0b\x96\x97\xcd\x2f\x76\x7d\x4b\xc4\x7c\x26\x34\x49\x1f\xf7\x7c\xde\x6b\xdf\x87\x75\x90\x06\xb4\x07\x30\x9f\x06\x1c\xa6\xd3\xf5\x4c\x67\x73\x24\x58\xbb\x3d\xd1\xba\x71\x7d\xba\x75\x6d\xb5\xda\xb9\xd5\xf1\xcc\x06\x60\xea\x26\x5a\x15\xb1\x73\x17\x0d\x64\x00\x86\x3d\x72\x61\x65\x65\x05\xf1\xe9\x5d\x79\x6e\xd0\x50\x61\x18\xff\xac\x38\x3f\x4f\x3e\xc3\xba\x07\x19\x3a\xe1\x41\xcb\xcd\x6a\x55\x17\xc2\x66\x21\x21\x8f\xff\x7e\x4c\x1f\x57\x7e\x92\x86\x2c\xc4\xb4\xef\x2e\x1a\x06\x31\x4a\xa6\x75\xe6\x33\x31\x31\x81\x53\xa7\x4e\xe1\xc8\x91\x23\xf6\xa4\x31\xa7\x05\x12\xff\x55\xe2\x79\x10\x0b\x22\x35\x00\x55\x3f\xa4\x89\x89\x5d\x7f\xdf\xc1\x8d\xf2\xe1\x03\x9b\xa5\xc3\x7b\x76\x0a\xf3\x95\x8e\x57\x49\x40\x64\xd0\x04\x41\x86\xd5\xd1\xb7\xac\xd0\x9f\xb2\xdf\xc3\x08\x3c\x92\x96\x4b\xdf\x64\x46\xbf\xcb\x9e\x52\xc9\x98\xef\x18\x30\x84\x71\xe5\x17\xef\xf0\xec\x6c\x97\xc2\xfa\x52\xad\x73\xe7\xe6\xd4\xee\x3b\x4b\xb5\xce\xad\x9d\x62\xb8\xaa\x55\x34\x04\x41\xcf\xb2\xe0\x60\xd1\x44\xbc\xa9\x0f\xf1\x8e\xcf\x78\xb9\x5d\xaf\xae\xae\xe2\xb5\xd7\x5e\xc3\xbb\xef\xbe\x9b\xd5\x69\xb9\x7b\x10\xe5\xc8\xd3\xb8\xf2\xcd\xb3\x18\x5c\x96\xf0\xb0\x65\x0f\xab\x30\xdf\x6f\x78\xe6\xaf\xcb\xe2\x70\x55\x0e\x48\x57\x70\x58\x0b\x63\x98\x4a\xcb\x72\x5c\xe5\x0e\x62\xfc\x20\xda\xf3\xf2\x1c\x06\xf9\x15\x00\xfd\xa1\x0f\x7d\x48\x71\x00\x61\xdb\xd7\xf9\x32\xae\x05\x91\xaa\xfd\x4b\xc0\xc4\xa0\x5a\x0a\x68\x72\x62\xb7\x30\xb7\x7f\xab\x74\xf0\xc0\x66\xe9\xe0\x9e\x9d\xc2\x5c\xa5\xeb\x55\x3d\x1d\x9d\xaa\x95\x28\x7f\x7e\x07\x2a\xc0\x57\x6a\x7b\x9b\xc6\x28\xbd\x73\x03\xfc\xf4\x30\xd7\x04\xac\x61\x9d\x9e\x1c\x9d\x55\x18\x33\x79\xd3\x15\xcc\x07\x29\x54\x02\xff\x62\x96\x15\x38\x60\xb5\x25\x3e\xd9\x1d\x81\x67\x3a\xdb\xa5\x60\xf3\xde\x58\x77\xf1\xee\x78\xfb\xc6\x52\xad\x7d\xa7\x5e\x0e\x57\x03\x2f\xfa\x42\xd5\x18\xd3\x40\xf4\xfd\x88\xd3\xba\x88\xef\x9e\x49\x86\x24\xc6\x18\xbd\xbe\xbe\x8e\x3f\xff\xf3\x3f\x1f\x46\x2e\x7e\x11\xef\xd2\xfd\x22\xf3\x1f\xc6\x0a\x7a\x10\xfa\xde\x77\x7e\x94\x11\x00\x0c\x3f\x34\xc9\x4b\x23\x0b\xcf\x02\x1f\x57\x9c\xbc\x21\xcc\x30\x34\x3c\x88\x69\x36\x28\x9f\x14\x8f\x3e\xf8\xc1\x0f\xaa\x63\xc7\x8e\x61\x64\x64\xc4\xc6\xcf\xb5\x42\x10\x01\x48\x05\x3d\x10\xa9\xc0\xa0\x5a\x0c\x68\x7c\xb2\xe5\xcf\xce\x6d\x95\x0e\xec\xdb\x2e\x1e\x98\xde\x29\xcc\x8e\xb5\xfd\x89\x42\x48\x45\x65\xd8\xfd\x22\xa9\x21\x86\x5d\x9d\x40\xff\x6a\x0c\xdc\x7e\x03\xbf\x83\x01\xd2\x28\xc2\xfc\xe4\x30\x47\x16\xd3\xfb\x42\x38\xca\x34\x39\x1d\xd5\x6e\x2a\xe3\xf6\x8c\x05\xc4\xe4\x98\x46\x83\x90\xa0\xdb\xbe\x6e\xd5\xcb\xc1\xfa\x6a\xb5\xbb\x78\x77\xbc\x7d\xe7\xde\x58\xe7\x4e\xa3\x14\xde\x0f\x94\xae\x23\xba\x0c\xa9\x11\xef\xec\x6c\xc4\xcf\x4d\x22\x6a\xc5\xab\x23\xc9\x70\x84\x5b\x17\xc6\x18\xbd\xb5\xb5\x85\x6f\x7c\xe3\x1b\xc9\xc9\xf8\x8e\xb6\xe5\x6e\x90\xbc\xb9\xe2\x66\x29\xac\xac\x3c\xe1\x88\xf3\x20\xf9\xe5\xd1\x99\x55\xee\x20\x37\x4c\xbd\xfb\xca\x21\x64\x74\x8e\x9c\x0a\x0c\xd3\x21\xf3\x34\x79\x5e\x9c\x61\xfd\xb2\xc2\x1f\x04\x5d\x87\xa1\xd1\xe5\x97\x4a\xf7\xe2\x8b\x2f\xaa\x52\xa9\x04\x7e\x07\xaa\xbd\xa9\x2c\x5e\xca\x2d\x3a\x2c\x91\x64\x7f\x88\x31\xa6\x02\xa0\xe2\x6b\xaa\x56\xba\xde\xe4\x74\xb3\xb0\x67\xae\x5e\x3c\xb0\x77\xbb\x38\x3f\xb1\x5b\xd8\x53\xe9\xa8\xaa\xaf\xc9\x57\xc6\x36\x98\x05\x13\xbe\xae\x1a\x13\x93\x35\x86\x90\x73\x1b\x72\xbe\x23\xef\x97\x67\x62\x67\x3f\x1f\x70\xea\x82\x7f\x11\xa8\x09\xba\xe3\xe9\xce\x4e\x29\xac\xaf\x8f\x04\x2b\xcb\xb5\xf6\x9d\xe5\x5a\x67\x71\xb3\x1c\xac\xed\x16\xf5\x96\xa1\xbe\x61\x87\x7c\xb7\x96\x85\xfd\xc6\x48\x83\x4d\x7a\x6a\xad\xd1\x68\x34\xf0\xf5\xaf\x7f\xfd\x41\xac\x02\xee\x86\x89\x9b\xa7\x84\x7e\xde\xbc\x65\xfe\xef\xc7\x62\xcf\x2b\xf3\xfd\xf0\xa2\xaf\x5c\xd7\xaa\xca\xb0\x44\xe7\xa1\xb7\xf5\xe7\x04\xf0\xb8\x0f\x82\xac\x2e\x50\x18\xc6\x52\x19\x04\x70\xae\xb2\xf3\x90\x3a\xd3\x1a\x3a\x7d\xfa\xb4\x7a\xf8\xe1\x87\x31\x39\x39\x09\x22\xb2\x97\x14\x71\x00\xb1\x17\x47\xd9\x15\x99\x32\x11\xd9\xdf\x4a\xbc\x42\x53\x41\x34\x47\x52\x26\x50\xc5\xd7\x34\x3a\xd2\x55\xb5\xc9\x5d\x7f\xcf\x74\xa3\x30\xbb\xb7\x51\x9c\x9b\xde\x29\xcc\x56\x3b\x5e\xcd\x0f\x55\x31\xda\x70\xd6\x4f\x64\xe6\x46\xb2\xf8\x39\xc2\x0d\x3e\xaf\xd0\xbf\xe7\x44\x5a\x06\x72\x3c\xd3\xfb\x78\xad\x17\xbf\x67\x8d\xf4\x88\x32\x04\x84\x64\x82\xb6\xaf\x5b\x8d\x52\xb8\xb9\x36\xda\x5d\xb9\x37\xd6\x59\xbe\x3f\xda\x5d\xde\x2a\x07\xeb\xad\x82\xde\x0e\xc9\x34\x4d\x0c\x08\x14\x59\x17\xa9\x3f\x6e\x55\x18\x63\x3a\xf6\x3b\x12\x88\x15\x92\x20\x08\xf0\x47\x7f\xf4\x47\xfa\xc4\x89\x13\xea\xda\xb5\x6b\xef\xd7\x1a\x1d\x26\x6e\xd6\xf3\x2f\x2a\xdd\xb0\x79\x3c\x68\xfd\xf0\x0b\xc8\x23\xf1\xcb\x5a\x55\x19\x06\x1c\xf2\xb4\xfc\x83\x10\xea\xca\x7f\xd8\x8e\xce\xfd\x5c\xe5\x66\x95\x93\x65\x69\x0c\x62\x72\x16\xad\x00\x80\x23\x47\x8e\xa8\xf7\xde\x7b\x4f\x6e\x24\x83\x3d\x1d\x3b\x7e\xe7\xfb\x42\x8a\xcc\x12\x29\xa3\x07\x2a\x15\xee\x07\x83\xb2\x02\xca\x7e\x48\xa3\xa3\x1d\xaf\x56\x6b\xf9\x13\x13\xbb\xfe\xd4\x54\xd3\xdf\x33\xd5\x2c\x4c\x8d\xb5\xbd\x5a\x39\x9e\x27\xf1\x0c\x29\x32\x50\x00\xf5\x19\x0c\xdc\x58\x01\x1b\xee\x24\x46\x01\x90\x35\xeb\xe9\x9c\xf7\xb4\xcb\xa3\x20\xe8\x90\x8c\xee\x7a\xa6\xb3\x5b\xd0\x8d\x9d\x62\xd8\xd8\xa8\x04\xeb\xf7\x2b\xdd\xb5\x8d\x4a\x77\x6d\x6b\x24\x58\x6f\x16\x74\x23\x54\x66\xc7\xc0\xb4\x10\x75\x7e\x6b\x3d\xb4\xd8\x33\x5f\x09\x69\x31\xa0\xe0\xfb\x2e\xec\x90\x04\xf6\x97\xed\xc3\x18\xd4\xa6\xdc\x65\x59\xd2\x2e\xbf\x41\xb2\x9f\xd5\x01\x5d\x74\x0c\xea\xdc\x79\xe5\x70\x97\xd5\x97\xf2\xe8\xcb\xeb\x0b\x79\xfd\xad\xaf\x4c\x6e\x71\xc8\x88\x83\x50\xc7\x55\xa1\xf7\x63\xba\x0d\x8a\x3f\x0c\xd3\xb3\xe8\x71\xe5\x33\xac\x1b\x26\xaf\xcc\x38\x4f\x3d\xf5\x94\x3a\x73\xe6\x0c\xdf\xe5\xa9\xd0\xb3\x42\xf8\xc5\xcb\x29\x20\x41\x6c\x99\xf0\xe1\x4d\xfc\x1c\xcd\x9b\x98\x64\xfe\xa4\x48\x40\x91\x0c\x4a\x85\x90\xca\xa5\x40\x95\x47\x3b\x5e\x6d\xb4\xe3\x55\xab\x6d\xaf\x56\x6d\x7b\xb5\xb1\xb6\x57\x2d\x45\x77\xa2\x14\x8b\x21\x15\xfd\x50\x15\xd9\xfc\x89\x8a\xc1\x42\x11\x00\x8a\x87\x42\x06\xd0\x16\x20\x0c\xa0\xed\xbd\x2b\x81\xa7\x3b\x5d\x65\x82\xc0\x33\x9d\x96\xaf\x5b\xcd\xa2\x6e\xee\x14\xc3\xc6\x4e\x31\x6c\xec\x94\xc2\x7a\xa3\x18\xd6\x1b\xa5\xb0\xd1\xf2\x75\x33\x54\xa6\x63\x08\x6d\xc3\x41\x00\x09\x08\xf0\xb9\x89\x24\x1c\xbd\x95\x10\x6b\x59\x70\x90\x48\x36\x6b\xd9\xdf\xd5\xd5\x55\xbc\xfa\xea\xab\xb8\x7e\xfd\x7a\x1e\x60\xd8\x67\xeb\x86\x95\x8d\x41\xd6\x76\x9e\x7b\x3f\x69\x78\x5a\xee\x06\x29\x3a\x1e\xef\x41\xca\xce\x2a\x47\xe6\xe5\xa2\x43\x01\xfd\x43\x95\x61\x4d\xa9\xcc\x0c\x87\x20\xfc\x81\x4c\x22\x47\xb9\x83\x00\x6c\x50\x43\x0d\x02\xa0\x41\x42\x33\xec\x2f\x4a\xa5\x92\x9a\x9d\x9d\xc5\xa1\x43\x87\x70\xf4\xe8\x51\x94\xcb\x65\x4e\x83\x05\x0f\xa0\x37\xa9\xca\x2d\x92\x64\x8e\x24\x7e\xef\xfb\x13\xe1\x51\x3a\x13\xe5\x45\xd1\x9d\xad\x3e\x19\x94\x08\xa4\x3c\x03\x5f\x69\xf2\x0b\x21\xf9\x85\x78\xa8\xa3\x0c\x29\xa5\x49\x29\x03\xe5\x19\xf2\x01\x40\xc7\x40\x11\xfd\x9a\x20\xf0\x4c\xd0\xf1\x4c\x27\x54\x26\x08\xc9\x04\xa1\x42\x60\x60\x02\x43\x08\x0d\xa1\x63\xac\x35\x40\x88\xae\xa1\x40\xf2\x2b\xff\x5a\x0e\xbf\x20\x06\x09\xbe\x9b\x33\xf3\x2e\xdc\xc5\xc5\x45\xfc\xf5\x5f\xff\xb5\x2e\x95\x4a\xaa\xdd\x6e\x67\xc9\x5e\x56\x1b\x66\x85\x4b\x97\x27\xbf\xc3\x5a\xc5\x0f\x62\x4d\x0f\x92\x41\x17\x6d\xc3\xd0\x3c\xa8\xcc\x61\xf2\xe1\xfe\x29\xba\x5c\x73\x1c\x59\x95\x18\xe4\x06\x75\xfc\x3c\x20\x79\x10\x4b\xe0\xff\x0b\x37\x0c\xd8\x00\xe9\x7a\xf1\xf7\xbc\xbc\x52\xef\xcf\x3d\xf7\x9c\xda\xbb\x77\x2f\xc6\xc6\xc6\x64\xde\xca\xfe\x09\x6b\x24\xd9\x74\x86\x1e\x40\xf8\xb1\x5f\x02\x18\x19\x71\x6c\x3e\x8a\xbd\x2b\x56\x16\xe2\xfc\xfb\xbf\x7f\x49\x77\xda\x64\xf3\x14\x98\x15\x10\xff\x26\x43\x09\xb6\x14\x9a\x00\x88\xf4\x63\xef\xce\xbb\x6e\x4d\xef\x5a\x4a\x0d\x00\x77\xee\xdc\xc1\xfa\xfa\x3a\xae\x5c\xb9\x82\x46\xa3\x31\xa8\x43\xb8\xfc\xb2\x3a\x20\x1c\x69\xb2\xc2\xb3\xd2\xc0\xe1\x37\x48\x73\x5b\xbf\x07\xa1\x7d\x90\xf5\x33\x4c\x5c\x17\xcd\x79\x75\xc8\xc3\x83\xd4\xce\xd1\x61\x32\x1e\xc6\xec\xe1\x79\x0d\x63\xb5\xb8\xe2\x66\xc5\xcb\x4a\xc3\xe9\x18\xa6\xbc\x61\xf2\xc9\x8a\x97\x95\xef\xb0\xe5\xea\x6a\xb5\xaa\x2a\x95\x0a\xce\x9d\x3b\x87\x5a\xad\x86\xf1\xf1\xf1\xf8\xcc\x0a\x63\xcb\x4f\x81\x09\x1f\xda\xb0\xa1\x4e\xca\x4a\xb1\x61\xfc\xd9\x11\x5f\xb1\x3c\x11\xc7\x47\x0c\x26\xb6\x7c\x4b\x3f\x88\xdd\x35\xcb\x97\x3a\x91\x9e\x6f\x08\xb8\x9f\x03\x14\xe4\x70\x23\x17\x28\x00\xe0\xf6\xed\xdb\x58\x5d\x5d\xc5\xf5\xeb\xd7\xb1\xbe\xbe\x9e\xd5\xb1\xe0\x78\x76\xb5\xc7\x20\x39\x1c\xa6\xa3\x3d\x68\xfa\xbc\x34\xb9\xb2\x21\xc2\x86\xa1\xdd\xba\x61\x94\xdb\x83\x5a\x25\xc8\x8a\x93\x37\xc7\x31\xa8\xf0\x3c\x62\x86\xb1\x38\x86\xd1\x0a\x59\x15\x73\xa5\x97\xb4\xe5\xa1\x6d\x56\xdc\x61\xe8\x02\xf2\x99\x9a\x15\x97\xc7\x4f\xd1\xb5\x77\xef\x5e\x75\xef\xde\x3d\xfd\xe9\x4f\x7f\x5a\x95\x4a\x25\x4c\x4e\x4e\x26\xf1\x25\xa0\xf0\x15\x1b\xeb\x27\xff\x18\xd0\xa4\x7e\x81\x04\x24\x92\x77\xeb\x67\x41\xc3\x4e\x3a\xf2\x67\x06\x18\x96\x76\xd7\x5f\x10\x87\x07\xb1\x05\x23\x01\x22\x05\x44\xcc\x0f\x9b\x9b\x9b\xf8\xc6\x37\xbe\x91\xf0\x41\xf0\xef\x41\x65\xc6\xe5\xb2\x64\x80\x87\xf1\xf0\xf7\xab\xf5\x91\x13\x9e\x55\x17\x17\x1d\x83\xea\xf4\xa0\xf4\x65\x19\x07\x2e\x37\x94\x21\x91\xb7\x1c\x2b\x33\xc9\xab\x04\x0f\xcf\x42\x6b\x17\x01\xc3\xa0\xb6\xcc\x4b\xd2\x32\x48\x88\x86\x05\x80\x2c\x9a\x90\xf1\x2e\xf3\xc9\xe3\x43\x5e\x63\xa4\xd2\x94\xcb\x65\xcc\xcc\xcc\x60\x64\x64\x04\x8f\x3d\xf6\x18\x88\x08\x53\x53\x53\xfc\x73\xfa\xc4\x3a\xb0\x96\x02\x90\x0c\x37\x94\xc8\xb7\x2f\x5c\xc4\xeb\xa3\x43\x74\x70\x49\xb3\x8e\x01\x26\x79\xe7\xab\x1b\xdc\x9f\xff\xda\x3c\x8d\x31\x68\xb7\xdb\xd8\xd9\xd9\xc1\xd6\xd6\x16\xbe\xfb\xdd\xef\x6a\x00\x60\xe7\x5f\x0c\xa3\x44\x86\xd5\xe8\xc3\x58\x08\x32\x9f\xbc\x76\xcb\x2a\x7b\x18\x39\x1c\xc6\x5a\x78\x90\x3a\xe6\xd5\x77\x90\xe2\x1c\x04\x2e\x43\x01\x62\xd6\x72\x2c\x44\x22\xee\x06\x15\xca\x89\x73\xb9\xbc\xca\x0e\x13\x9e\x15\xcf\x55\xee\xb0\x65\x0c\xeb\x2f\xcb\xb7\x2e\x8f\x67\x83\x78\x32\x48\xa0\x01\x00\xc7\x8e\x1d\x53\xf6\x1b\x8b\xcf\x7e\xf6\xb3\xca\xf7\x7d\xbb\xf5\x3d\xb1\x48\xc4\x01\x42\xd2\x8a\x48\xc5\x61\xf1\x24\x08\x71\x20\x48\x39\xee\xcf\xf2\x76\x82\x4c\x18\x86\xd8\xd9\xd9\x01\x00\xb9\x19\x4b\xd6\x3d\x4f\x68\xb3\x5c\x9e\xa2\x1b\xd4\x21\xb3\x64\xf6\x41\xf2\x1e\xb6\xfc\x2c\x1a\xb2\xea\x33\xa8\x93\xe3\x01\xe2\x0c\x02\x85\xbc\xf8\x59\xf4\x25\xcf\x83\xf6\x71\xf0\x84\x60\xf1\x06\x55\x96\xc7\x7d\x10\x8d\x30\x08\xed\x78\x39\xae\x0a\xc9\xb8\x92\x0e\x19\x96\xd5\xf8\xae\x7c\xb2\x68\xcb\x2a\x53\xe6\x9f\x15\x37\x4f\xcb\xe5\xc6\x3d\x79\xf2\xa4\x7a\xf3\xcd\x37\x93\xdf\x17\x5e\x78\x21\x89\xeb\x79\x1e\x0a\x85\x82\x83\xa4\x1e\x3d\x72\x52\x54\x00\x89\xab\x1e\xa9\xb8\xed\x76\x3b\xe5\xf7\xe5\x2f\x7f\x59\x9f\x3c\x79\x52\x01\xc0\x9b\x6f\xbe\x39\x48\x6b\xe6\xc9\x59\x5e\x7b\x0d\xab\x29\xdf\x6f\xd9\xd2\xe5\x81\x7d\x5e\xdc\x5f\x34\x9d\x79\x32\xe3\xa2\x6f\x10\x5f\x07\xf9\x0f\xa4\x53\x31\x4f\xfe\x2b\xfd\xb2\xfc\xa5\x9f\x7c\x1e\x94\xe7\xb0\xe5\x0e\x2a\x33\x2f\x0f\xe9\xb2\xca\x95\x74\x49\x1a\xf3\xe8\x76\xc5\x75\xd1\x91\xc7\xb3\x61\xe8\x1a\x94\x2e\x15\x7e\xe6\xcc\x19\xf5\xff\xd6\x6e\x6d\xb7\x91\xc3\x30\xd0\x70\x39\x5b\xca\xd6\xe1\xfe\x4b\x08\xf2\xe5\x80\x3b\x99\x17\x7d\x39\x01\x81\x25\xf1\x35\x22\x29\x4a\x5e\x23\xf7\xdf\x3d\xbe\x69\xd7\x75\x9d\xd7\x75\x9d\xd8\xbf\xc7\xef\xf7\xfb\x43\xcf\xd4\xf7\x7a\xbd\x9a\xd8\xab\xb5\x37\xf1\x65\x6b\xc4\xd6\xc6\xa0\xc5\xc2\x64\x52\x0e\x2a\xde\x64\x77\x8b\x49\xf9\xe3\xaf\xf5\x6e\x70\xeb\x09\x22\xec\x8a\x48\x72\x5a\x6a\x2b\xb0\x06\xc7\x96\xaf\x4d\x60\xd6\xdc\x06\x77\xf4\xd6\xce\xbf\xe0\x70\xe3\xc4\xbb\x29\x96\x8d\x4e\x67\x07\xff\x98\xdc\x93\x42\xa2\x78\xd3\x66\x4b\xf1\x53\x76\xd1\xa6\xf3\x4d\xf2\x27\xeb\x6f\x8a\x92\xc2\xd8\xe6\x81\xc5\x7f\x7f\xa2\x4b\xaf\x25\xc7\xe0\x53\xce\x56\xef\x60\x0c\x5c\xfb\x3e\x87\x78\x1a\x1e\xe4\xbd\x6d\xa0\x8c\xe2\x41\x3a\x1b\x2b\xde\x2f\x82\x8b\xbd\x0e\xdd\xf2\xed\xe6\xde\x16\x0f\xf7\x3e\xcc\x9a\xba\x0a\xe3\x7a\xd5\xd5\x79\xda\x9f\x34\xb6\x7e\x26\xcf\xe6\x11\xbb\xbb\x3a\x27\xfd\x8a\xff\x80\xfe\x94\x55\xf9\x89\xb2\x4d\xde\x3b\x59\xb7\x87\x0e\xc3\x3b\x6d\xb5\xaf\xe2\xc9\xf7\x9b\x57\xc3\x8f\xc5\xb1\x96\x92\xb5\xe5\x6b\x37\xe5\xe6\x99\x4e\x07\x85\xa1\xad\xd4\x8a\xde\xfa\x64\xa3\xfb\x89\x8d\x16\xff\x66\x4e\x6d\x28\x67\xef\x34\x7f\x48\x4f\x7a\xf0\xa9\xe2\xbc\x89\x3f\xb3\xed\x6c\xfe\xcf\xa7\xb2\xad\xfc\xc6\x64\x9e\xd8\x6c\xe2\xc3\x70\xc9\x67\x4a\x02\x9c\x63\xca\x53\x70\x99\x7e\xa6\x23\xe9\xdd\xc8\x61\x6b\x75\xa4\xe0\x6d\xf1\x3b\x9b\x29\x60\xad\x4d\xe4\x53\xf8\x13\x4d\xd9\xc4\x79\x25\xc3\xf8\x9c\xad\x8d\xcf\xd4\x9c\xd3\xe9\xfc\x99\x74\xaa\xf5\x3b\xfb\xcd\x06\x4c\x39\x9d\xda\x13\xbf\x32\x79\xa7\xd3\xd9\x3e\x71\xd0\x24\x98\x72\xcc\xc6\xb8\x03\xd5\xcc\x39\xfa\x46\x47\xda\x00\x69\x9d\xad\x9e\x39\x9f\xf0\x6e\x74\x6d\xe7\x53\x7c\x5a\x3f\xb5\x05\x80\xe9\x74\x36\x9e\xf8\x48\xe9\x4a\xed\xaf\xd7\xb1\x29\xf8\x0c\xcb\x93\xf9\xa6\x80\xa4\xf1\xb6\x78\xfd\xac\x47\xfd\x93\xdb\x7c\x62\x53\xbf\x4f\xb0\xe6\x78\xd3\x67\xd3\x03\xf8\x95\xee\xed\xa7\xa5\x13\x74\x28\x4c\x6a\xfd\x4d\x6b\x3f\xb1\x6e\x3e\xbf\x3a\x1b\x4f\xe8\xad\x5c\xf3\xdb\xc2\x11\xc6\xac\x3f\xc7\x2a\x46\x8a\xb6\xe5\x49\xf8\x36\x78\x1b\x5d\xb3\xb9\xdf\x48\x58\x8e\x3a\xfd\x0a\x5f\x7a\x2a\x5e\x85\x13\xe7\x18\xc6\x5f\xcc\xec\x84\xc1\x0a\x8d\x74\xd6\x67\x4f\xec\x33\x7d\x4c\x3f\xb3\xcf\x6c\x38\x0c\x4a\x6f\xc2\x8b\x63\xe6\x1f\xa5\x93\xd1\x18\x9d\xad\x29\xe9\x4e\x18\x98\xdf\xd4\x9c\xb3\xe1\x70\xaa\x31\xd3\xcd\x70\x23\xaf\xc2\x95\x64\x5b\xbb\xce\xe6\xd3\x9c\x48\x31\x49\x34\xd7\x9a\x7c\x4e\x6b\x4b\xfb\x96\xe9\x70\xcf\x73\x76\x66\x65\x51\x95\x1a\x8d\x30\x1a\xd2\x13\x0d\xc7\xec\x97\x63\x85\x21\xdd\x4a\x70\x1d\xce\x91\xcd\x0d\x67\xd2\xb6\xc1\x9f\x76\xdc\xd7\x1b\xe5\x7b\xfc\xf5\xfc\x20\x3c\xd8\xbe\x0e\x7e\x62\xcc\x93\x45\xf9\xf8\x24\x32\xc8\x1b\x93\x8b\xf0\xe3\x17\x0b\xc4\xc6\xc6\x4e\x56\x8d\x9b\xbc\x64\x7c\x4c\x2e\xdd\xc0\x99\x1d\xe5\xcb\x49\x53\xf9\x88\xf3\xcd\x4d\x8f\xc5\x00\x63\x8d\x78\xa6\x3f\x9b\xaf\x33\x1f\x3a\x94\x93\xb1\x61\x61\x41\x10\x08\x94\x05\xa4\x09\x1c\xf2\xba\x82\xa6\x36\x10\xca\xb8\xe4\x50\x89\x3c\xf5\xb3\x8d\x3f\xfb\x6e\x73\x23\x2f\x4b\x6c\x0c\x94\xf2\xe1\xe4\x4d\x8d\xf9\x0a\xaf\xac\xaa\xb0\xa8\xb5\x4c\x3e\xe6\x7b\xbc\x1a\xa3\x0c\xf2\x3b\xbb\x4a\xce\xd9\xc2\x22\x97\x6c\xa6\xe6\x0a\x45\x1b\x87\x69\x37\x15\xa9\x99\x1b\x28\xe3\x72\x66\xb3\xf1\x55\xb1\x6c\x0f\xfb\x1f\x3b\x4a\x20\x25\x0e\xf2\xe1\xfc\x0c\x9c\x3b\x61\xd2\xe9\xd3\x16\x0a\x87\xd3\x55\xce\xa9\x87\xf5\xdd\xa6\xc1\x93\x01\x8b\xe8\xec\xe3\x09\xc2\x30\x31\x19\xb4\xa9\x6e\x51\xd8\x58\x31\x72\xa7\x35\x62\x67\x63\xb6\x01\x58\x71\x52\x27\x2e\x26\x75\x5a\x4b\xb3\x39\xdd\xda\x1d\x0f\xe6\x0c\xcb\x69\x87\x55\x15\xe6\x26\xd7\xd4\xfe\x61\xb6\x19\x7e\x16\x0b\xb7\xbf\x14\x6f\x8a\x05\x62\xfe\xf0\xd7\x37\x4f\x7a\x32\x08\xc2\x5c\x11\x79\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xcf\x33\xaa\x99\x86\xfc\x00\x00") + +func web_uiV2AssetsMstile150x1506b13ab220a09a9e72328a3b05d5b9eecPngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsMstile150x1506b13ab220a09a9e72328a3b05d5b9eecPng, + "web_ui/v2/assets/mstile-150x150-6b13ab220a09a9e72328a3b05d5b9eec.png", + ) +} + +func web_uiV2AssetsMstile150x1506b13ab220a09a9e72328a3b05d5b9eecPng() (*asset, error) { + bytes, err := web_uiV2AssetsMstile150x1506b13ab220a09a9e72328a3b05d5b9eecPngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/mstile-150x150-6b13ab220a09a9e72328a3b05d5b9eec.png", size: 64646, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsMstile310x150Ccc673174b188a92f1e78bc25aa6f3f8Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x2a\x40\xd5\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x02\x2e\x00\x00\x01\x0e\x08\x06\x00\x00\x00\xae\x0e\x9c\x74\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xc4\xbd\xe9\x93\x25\x47\x75\x37\xfc\xcb\xba\x75\x97\xde\x7b\x7a\x7a\x7a\x46\xb3\x6b\x24\x84\x18\x09\x10\x20\x84\x8c\x81\x87\xc5\x38\xfc\x86\x03\xfc\x12\xc6\x38\xde\xf0\x27\xff\x61\xf6\x27\x47\xd8\x01\x26\xde\xb0\x43\xc6\x5b\x18\xb0\x10\x18\xa4\x07\x61\xd0\xc2\x68\xa6\x35\x9a\x7d\xed\xe9\xe9\xe9\xf5\xae\x99\xef\x87\x5b\x59\x75\xea\xdc\x73\x32\xf3\x8e\xf0\xf3\xe6\x44\xcf\xad\xca\x3a\x79\xf2\x64\xe6\xc9\x73\x7e\xb9\x54\x96\xc1\xff\xd9\x90\x01\xb0\xff\x3f\xa4\xcf\x00\xd8\x66\xb3\x99\xfd\xe5\x5f\xfe\xa5\xbf\xcf\x00\xe4\x00\x5a\xc5\x6f\x07\xc0\x6c\x7b\x90\xcd\x9f\xd9\xec\x3c\xfb\xd2\xf5\x85\xff\x67\x65\xaf\xf9\x87\x19\x4c\xcb\x39\x00\x66\xcc\xc8\x00\x80\x03\x9c\x71\x80\x33\x80\x29\x1f\xc1\x39\x07\x03\x03\x67\xc6\x34\x3e\x81\xbf\x35\x05\x1f\x07\x96\xb6\xba\xad\x78\x17\xa9\x4c\xc1\xdd\x39\x07\x63\x8a\x9c\x5c\xc1\x9e\xe4\x0d\xce\x1b\x80\x29\x1f\x8e\xe3\x4d\x45\x2d\xde\xf7\x72\xb7\x7f\x6b\xa9\x77\xf1\x17\x67\xb6\x5f\xbd\x37\xdf\xbf\xe9\x0c\x76\x81\xda\xdf\x3e\xf9\xeb\x03\xe8\x16\xbf\x7d\x8c\xdb\x65\x58\xfc\x5a\x00\x78\xe3\x8d\x37\xec\xaf\x7e\xf5\x2b\x14\xf7\xa1\xb6\xcb\x08\x0d\x18\x1d\x7d\xc6\x7f\x25\xde\x3c\x9f\x0c\x72\x90\x64\xd2\xe4\x48\x91\x01\xc2\xbd\x16\xb8\xbc\x21\x99\x78\x39\xb4\x7a\x92\xca\x20\xd5\x13\xcd\x2b\xc6\x3b\x54\x6e\xce\x8f\x87\xd4\x36\x08\xc9\x1d\xab\x0f\xa9\x4c\x9a\x0e\xf1\x38\xca\x83\xd3\xa4\xe6\x19\xaa\x53\x9e\x8e\xf3\x4e\xd1\x3d\x5e\x6f\xd3\xe8\x35\xa5\x97\xfa\x47\xa8\x1f\x69\x7d\x68\x5a\xdd\xd3\xe2\x78\x9a\xff\xa3\xbc\x9f\x78\xe2\x89\xec\x1b\xdf\xf8\x46\xf9\xdc\x39\x97\x19\x63\x72\xe7\x5c\x0e\x20\x37\xc6\xe4\x00\x5a\x9d\x41\x36\x7b\xfa\x61\xfb\xf8\xf9\x3b\x73\x9f\x3f\xba\xdb\xfa\x46\x7b\xd0\xf8\x44\x06\xcc\x7a\xe6\xc4\x2d\x54\x11\x20\xb6\x9c\x05\x4a\xef\xdc\xd8\x3e\xbb\xe2\xc2\xc1\x75\x07\x0d\x77\x6d\xa7\x3d\xfc\xe1\xfa\xda\xc1\x3f\xfc\x76\x6d\xef\xda\x76\x7b\xb4\xeb\x32\xf4\x9d\x73\x43\x63\x4c\xdf\x39\x67\x8d\x31\xd4\xc6\xda\xe1\x70\x88\xbf\xfe\xeb\xbf\x8e\xf5\x83\x69\xf4\x19\x0a\x7d\xac\x5f\x4d\x63\xc7\x52\xfa\x79\xd0\x66\x34\x94\x87\xff\x53\xc1\xc5\x49\xc4\x90\x15\x69\xa5\xf4\x99\x10\xcf\xe3\xcc\xc2\xc2\x82\xf9\xf6\xb7\xbf\x8d\x66\xb3\xe9\x41\x4b\x06\xa0\x89\x71\x1d\xb4\x01\xb4\x33\x8b\xce\xda\x6e\xf3\xc4\xf3\x77\xe7\xfe\xd7\xda\x6e\xeb\xeb\x0d\x67\x96\x00\x03\x53\x2a\xa2\x83\x29\x01\x87\x47\x32\x63\xa0\x60\x0c\x00\x33\x8e\x35\x06\x65\x1a\x53\xa0\x96\xf1\xf3\xb1\xc2\xc2\x98\x0a\x54\xb8\x82\xb7\xa1\x80\xc3\x54\x69\xca\x7c\x4c\xa9\xf9\x06\x55\x9a\x4a\x8e\x3a\x6f\x63\x48\xe7\x00\xc6\x32\xc2\xc1\x71\xde\x05\x50\xea\xe5\x76\xff\xd6\x62\xff\xe2\x7f\x9f\xd8\x7d\xfd\xee\x42\xef\xba\x35\xd8\x81\xd1\x41\x8b\x73\xae\x0b\xa0\x5f\x74\xa4\x11\x18\x68\xf9\xf9\xcf\x7f\x6e\xdf\x79\xe7\x1d\x58\x6b\x49\x21\x4a\xd1\xe9\x9f\x6f\x57\xde\x09\x4a\xbc\x57\xfc\x59\xc6\x83\xd2\xf2\x78\xc3\xd2\x39\x72\x4d\x79\x79\x1d\xc9\x58\x5a\x2e\x07\xcf\x87\x76\x34\xc7\xd2\xf3\xce\x27\x95\x99\xd2\x18\xe1\x9a\xd6\x0d\xe7\x2d\xd5\x13\xaf\x4b\x40\xae\x53\x28\x69\x6d\x80\x9e\xb6\x0f\xad\x37\x4a\x4b\xeb\x96\x96\x85\xb7\x95\x83\x5c\x4f\x9e\x9e\xeb\x02\xe9\x25\xb5\x3e\x4d\x65\x93\xe4\xa7\xfc\x80\x7a\x9b\x49\xed\xc0\xdb\x92\xc6\x6b\x79\xf2\xfc\x79\x9b\x69\x6d\xc7\xeb\x90\xca\x4d\x79\xd3\x74\xbc\x1e\x52\xf4\x9a\xca\xc2\xc1\x19\xd7\x69\x9a\x86\xeb\x27\x95\xc5\x61\x92\x37\x2d\x37\x6f\x43\x5e\x4f\xd4\x26\xd3\x72\xd0\xf4\xbc\x9d\xa4\xfa\xe1\xf9\x69\x75\xef\xeb\xaf\x2c\xc3\x99\x33\x67\xcc\x57\xbf\xfa\x55\x34\x1a\x8d\xcc\x18\x53\x82\x16\x8c\x01\x4b\xcb\x18\xd3\x04\xd0\x5e\xd9\xcb\x0f\x9d\xbf\x33\xf7\xfc\xf9\x3b\xf3\xff\xf7\xea\x5e\xeb\x5b\xed\x61\xf6\x8c\x81\x99\xe1\x19\x4e\xd4\x92\xa9\xdf\x7a\xa1\xe9\x20\x14\xa8\x06\x95\xa6\x30\xd4\xc6\x20\x6f\x38\xb3\xd4\x19\x36\x9e\x5e\xea\x36\x4e\xcd\xf6\xf3\xcd\xbd\xf6\x68\xb7\x9b\xdb\x91\x35\x70\xc6\x98\x6a\xe0\x0a\x38\xe7\xc6\x5c\xb3\x2c\x73\xe7\xcf\x9f\x37\xbf\xfd\xed\x6f\x61\xc7\xc6\x96\xea\xbc\xff\xf5\x75\x4a\xdb\x85\xd7\x1f\x20\xb7\x1f\xef\xc3\x3e\x78\xbd\xa2\x3a\x23\xd9\x69\xde\x2e\x5c\xc7\x1c\xfb\xe5\xbc\xc1\xae\x0d\x00\x93\x23\x1c\xb4\x51\xc1\xff\x74\xe0\xf9\x84\x46\x4a\x92\x3c\xb5\xb8\xc3\x87\x0f\xe3\xab\x5f\xfd\x2a\x66\x66\x66\x28\x68\xc9\xc9\x6f\x0e\xa0\xb5\xd0\xcd\x97\x4f\x6f\xcd\x9c\x3f\xb2\xd3\xfa\x7c\x3e\x32\xab\x25\x20\x81\x07\x01\xa6\x04\x08\xa6\x98\x15\xa9\x66\x44\x0a\x65\x34\xd5\x5c\x46\xa9\x11\x35\x0d\x2f\x66\x65\x5c\x71\xed\x15\x18\x06\x05\xee\x00\xef\x1a\x15\x00\xf1\x53\x33\x0e\xce\x15\x79\x94\x20\xa4\xe2\x5d\x02\x9c\x42\x08\x53\xb2\x32\x44\x9e\x82\xb7\x71\xe8\x36\xed\xee\xed\x85\xfe\xe5\xb7\x9f\xd8\x7d\xf3\xce\x62\xef\xfa\x28\x0b\xce\xb4\x74\x9d\x73\xdd\x02\xb0\xd0\xbf\x12\xb4\xfc\xec\x67\x3f\xb3\x97\x2e\x5d\xc2\x70\x38\x8c\x8d\xa2\xd4\x36\x43\x78\x04\x96\xaa\x1b\x5a\x1a\x8e\xf2\xb5\x91\x06\xbf\x96\x46\xd7\xa1\x91\x73\x68\x04\x23\xc9\x96\xd2\xdf\x24\x99\x34\xde\x5a\xda\x94\x3a\x8a\x8d\xa2\xa4\x7a\xd2\x46\x4e\xa1\xf6\xd2\xf2\x4e\x7d\x2e\xb5\x23\xcf\x3b\x64\x2b\x34\xf9\x52\x74\x41\xa3\xd1\xf2\xe3\xbc\x43\x75\x99\xd2\x46\x3c\x2f\xa9\x7d\x42\xf5\xca\xdb\x98\xe7\xef\xef\x53\xfb\x5f\x4a\x7f\xf1\xbc\xa5\xfe\xcd\xcb\x12\xcb\x23\xf4\x7c\x82\xc7\x53\x4f\x3d\x95\xbd\xf4\xd2\x4b\x68\xb7\xdb\x59\x01\x02\x4a\xd0\x02\x32\xf3\xbe\xb2\xd7\x5c\xfe\xe8\xbd\xd9\x4f\x3f\xf5\xa0\xf3\xc7\x4b\x07\xf9\xcb\xb9\x35\x6b\x80\xc9\xfd\x44\x78\x69\xa2\x01\x11\x9a\x99\x9a\xbd\xf7\x24\x46\x86\x0a\x40\x39\x50\x75\x06\x79\xe6\xdc\xf2\x7c\x2f\xff\xfc\x99\x87\x26\x37\xc0\xff\xfb\xee\xd1\xbd\x37\xef\xcf\x0f\x36\x86\x0d\x97\x61\x3c\xc3\xed\xd3\x0c\xfd\xf5\xec\xec\xac\xa4\x33\x92\x3e\xc4\xf4\x15\xc2\x33\x1f\x34\x3d\xd1\xec\xb4\xa4\x47\x5a\x5e\x92\xec\x1a\x3f\x00\xd5\x8c\x0b\x45\x61\x34\xc4\xee\x35\x01\x1e\x77\x66\x85\xe6\xa3\xcd\xa4\xf0\x11\x41\x34\xbf\xa5\xa5\x25\xf3\xc2\x0b\x2f\x64\x05\x4a\x35\xc6\x98\x86\x73\xae\x89\x31\xca\x6e\x03\x68\x37\x47\x66\xfe\xe4\xa3\xf6\x47\x9e\xb9\x3f\xfb\xb5\xe5\x83\xfc\xc5\x86\xcb\x66\x6b\x0a\x68\x4a\x57\x5f\x20\x5f\x02\x6a\xca\xb8\xfa\x02\x0c\x57\xe0\x22\xf3\xea\x99\x31\x05\x60\xa9\x66\x6a\x8a\x1c\xca\xfc\x4a\x5d\xf7\x60\xc3\x03\x10\x72\x6f\x2a\xe6\xa4\x1f\xb9\x12\x68\x69\xc1\xc1\xa1\x9b\xdb\xdd\xdb\x8b\xfd\xcb\x17\x8e\xee\xfd\xf7\x8d\xe5\xde\xfb\xbd\xdc\x6d\x39\xb8\x6d\x63\x8c\x08\x5a\x00\x44\x41\xcb\xfa\xfa\x3a\x7a\xbd\x1e\x45\xde\xd3\x82\x5d\x8a\xc2\xb9\x2e\xc4\x74\x8b\x8e\x90\x25\x5a\x6d\xa4\xc6\x79\xf3\xd1\xb6\x43\x5c\x1e\x3e\xa2\xa6\x71\x12\x3f\x30\x19\xa6\x2d\x2b\x1d\x41\xa7\xd6\x8b\xbf\xd6\xea\x87\x8e\xcc\x2c\x8b\x0b\xe5\x41\x69\x42\x3c\x62\xd7\x26\x91\x8e\x8f\xe2\x24\xd9\x38\x2f\x69\x04\xa8\xf1\x8c\xd5\x91\x25\x34\xd2\xa8\x56\xd3\x25\xb0\x74\x92\x8d\xe3\xf9\x4b\xba\xaa\xc9\xc4\xcb\xaa\xa5\x91\x78\x83\x5c\x5b\x4c\x96\xc1\xb0\x3f\x4f\x1f\xaa\x43\x69\x26\x44\x02\xf6\x5c\x5e\xce\x5f\xaa\x5b\xe9\x19\xe7\xe1\x00\xe0\x99\x67\x9e\xc9\x3e\xf5\xa9\x4f\x61\x69\x69\xc9\x83\x96\x1c\x63\xff\x57\x03\x2d\xcb\xfb\xf9\xf2\x33\xf7\x67\x3f\x7d\x6e\x73\xe6\x8f\x97\x0f\xf2\xcf\xe7\xd6\x1c\x35\x30\x8d\xc9\x01\x28\xbb\x37\x93\x71\xa5\x90\xae\xf8\xaf\x1a\xa5\x4e\x06\x62\xc4\x0d\x4c\xbb\x39\x32\xab\x33\x83\xc6\x4a\x6b\x98\x1d\x74\x9b\xa3\x47\x07\x4d\xdb\xb5\xe3\xde\x4e\x6d\x69\xd9\x3e\x6b\x6b\x6b\xee\xe6\xcd\x9b\x18\x0c\x06\xb4\x4e\x28\x0d\xad\xf7\x14\x7b\x21\xcd\xb8\x68\xb6\x95\xeb\x85\x64\x53\xa5\x19\x1f\x9a\x4f\xc8\x4e\x4c\xf4\x5d\x0f\x5c\xa4\x0e\x3c\x4d\xa0\xc2\x84\x3a\xec\x34\x41\xe2\x23\x19\xcf\x60\x23\x1c\x39\x72\x24\xfb\xcc\x67\x3e\x83\xa5\xa5\x25\x63\x8c\xf1\xa3\xa4\xa6\x31\xa6\x61\x8c\x69\x3b\xe7\xda\xc6\x98\x99\xb5\xdd\xd6\x13\x1f\xb9\x3f\xfb\x7b\xc7\xb7\xdb\x5f\x6a\x8f\xb2\x27\x4c\x0d\x76\xb8\x6a\x46\x64\x02\x62\x8f\x55\xad\x7c\x26\x20\x6e\x4c\xa4\x40\xb1\xb6\xa9\xa5\x21\x73\x36\xae\x50\xe5\xa2\xa4\x06\x63\x68\xee\x61\x3f\x9d\xf1\xa9\xc0\x8e\x2b\x2b\x86\x0b\xe3\xc8\x55\x37\xb7\xbb\x77\x16\xfa\x57\x2e\xad\xed\xbf\x75\xfd\x50\xef\xd2\x41\xd3\x3d\xc4\x78\x79\x68\xa7\x00\x2e\xfb\x00\xf6\x9d\x73\xfb\x18\x03\x96\x2e\xea\x80\x65\x58\xac\xbb\x5a\x60\xbc\x3c\x74\xe9\xd2\x25\x74\xbb\x5d\x6a\xc4\x63\x8a\xab\x85\x10\x38\x08\x19\x2b\x4f\x23\x8d\x18\x78\x87\x0e\xe9\x3d\x77\x8c\x94\xbf\x94\x9f\xc6\x8b\x3a\x02\xca\x9b\x5e\x73\xf0\x22\xc9\x43\xcb\x41\x69\xb9\xc3\x49\xed\x7f\x5a\x3c\x37\xfa\x12\xf0\xe2\xf2\x68\xf4\x5a\x99\x35\xb0\xc6\xfb\x77\xec\x9a\xfe\x4a\xfa\xc5\x65\xa2\xfc\x79\x5d\xf1\xf6\xe2\x6d\x26\x39\x4c\x9f\x8e\xe6\xc1\x65\xa5\xf7\x9c\x87\x04\xe8\xb5\x32\xc7\x06\x00\x5c\x26\x09\x7c\x48\xf4\x5e\x6e\xaf\x47\x14\x90\x49\xf9\xd3\x76\xd2\xf4\x3a\xd6\x56\x92\xbc\xbc\xfd\xa9\x3c\x94\x9e\xeb\x0b\x7f\x46\xdb\xbd\xcc\xe3\xdc\xb9\x73\xe6\xc9\x27\x9f\xcc\x00\xf8\xe5\xa1\x86\x73\xce\xef\x67\x69\x02\xe8\x2c\x74\x1b\x8b\x1f\xb9\x3f\xfb\xc9\x73\x0f\x66\xfe\xaf\x95\x83\xe6\xcb\x4d\x6b\x8e\x19\x18\x3e\xd3\x50\x97\x8e\x05\xa9\x43\x92\xff\x22\x61\x6c\xcf\x0d\x80\x6c\x0c\x5e\x56\x66\x86\x8d\x45\x03\xb3\xb3\xdb\x1e\x6d\xee\xb7\x6c\xb7\x78\xec\x07\x8a\x65\xf9\x16\x17\x17\xb1\xb0\xb0\xe0\x1e\x3c\x78\x80\x5e\xaf\x27\xd9\x36\x2f\x44\x48\x27\x78\x09\x2d\xe4\x34\xdc\xee\x72\x3a\x89\x3f\x6f\x6b\x2a\x57\xc8\x4e\x48\xed\xea\xa4\x46\x89\x4d\x11\x49\x71\xd2\x74\xa2\xc4\x2b\xc6\x47\x7b\xc6\xa7\x9d\x92\x78\xae\xad\xad\x65\x9f\xfa\xd4\xa7\x70\xea\xd4\xa9\xcc\x39\x07\xe7\x5c\x86\xf1\x2c\x4b\xe6\x9c\xf3\x9b\xb1\x5a\xf3\xbd\xc6\xe2\x89\xad\xf6\xb3\x4f\x6c\xb7\x5f\x6c\x0f\xb3\x93\xc6\x19\x3f\x3b\x03\x00\x70\x7e\xef\x49\xad\x39\x08\x60\x70\x44\x59\xa9\x7e\xba\xf1\x7f\xfe\x9f\x21\xf1\xc6\x98\xf1\x7e\x99\x22\x8d\x73\xb4\x75\x2a\xde\x06\x75\x86\x74\x69\xa8\xb6\x71\xb7\x90\xcf\x2f\x69\x19\xbf\xd1\xa5\x9e\xba\xe4\xd6\x6f\xb8\xee\xbd\xf9\xc1\x8d\xf7\x57\x0f\xde\xbe\xbe\xdc\xbb\xbc\xdf\x1c\x6d\xc2\x60\xd7\x39\xb7\x4b\x41\x0b\x80\x7d\x63\x8c\x07\x2d\x7e\x23\x2e\x9f\x69\xb1\x6f\xbc\xf1\x86\xbd\x70\xe1\x82\x07\x2d\x40\x78\x5a\x5a\x9a\xa2\x06\x26\xdb\x3c\xa4\x9f\xd2\x12\x41\x86\x49\x87\xa9\xe9\x6a\x16\x48\x13\x93\x59\xd3\x77\x1e\xa4\x8e\xa9\xd1\x48\x79\x6b\x41\x5a\xaa\x08\xc9\x94\xb1\xdf\x90\x2c\x12\xe8\xa0\xf2\xa4\xf4\x41\x4a\xaf\xe5\xc1\xcb\x90\x62\x67\x32\x85\xce\xe7\xc7\x79\xc7\xf4\x40\xe2\x6d\x21\xd7\xa5\x66\x17\x43\xfa\xc3\x69\x63\xed\x23\x5d\x87\xd2\xa6\x3c\x8f\xdd\x6b\xfa\xa3\xb5\x37\x2d\x77\x48\x27\x62\x6d\x17\x93\x37\x56\xff\xfc\x99\x64\x3b\x2c\x00\x3c\xf9\xe4\x93\xd9\xf1\xe3\xc7\xcb\x3c\xfc\x00\x96\x2c\x13\x75\x32\x8b\xce\xe9\x87\x9d\xa7\x9f\xdc\xec\x7c\x65\x65\xbf\xf9\x52\x73\x64\x8e\x01\xc8\x6a\x5e\xd8\xb9\x9a\xd7\xe5\x9e\x3c\x86\x06\x34\x04\xe7\x79\xfb\xc1\xb1\xff\x6b\x38\xb3\x38\xd7\x6b\xbc\x70\x72\xab\xfd\x95\x53\x5b\x9d\xf3\x0b\xbd\xc6\x32\xc6\xb3\x43\x2d\xe7\x5c\x0b\xac\x4e\x9f\x7c\xf2\xc9\x6c\x66\x66\x86\x72\xe5\x75\x32\x4d\x3f\x4b\x09\x7c\x89\x2a\xd4\x3f\x91\xf8\x5c\x8b\xab\xfd\xc6\xf6\xb8\x50\xe1\x62\x71\x9a\x20\xbc\x70\x8f\xc3\x47\x4a\x1f\x72\x36\x00\x80\xd5\xd5\x55\x9c\x3d\x7b\x36\x2b\xde\xc8\xc9\x00\x64\x04\xbc\xe4\xce\xb9\x56\xee\x4c\xe7\xd8\x76\xeb\xe4\xc9\xad\xf6\x67\xe6\x7b\x8d\x67\x32\x67\x66\xc7\x08\xa0\x62\x68\x28\x84\xf6\xbb\xc0\x0b\x00\x51\x9b\x97\x29\x22\xab\x59\xbf\xf2\x3f\x3f\x41\x42\xf8\x94\x8f\xc6\x97\xd5\x54\x4c\x79\x63\xea\xcc\xcb\xfb\x12\x7a\x16\x17\x94\xae\x12\x91\x62\xff\x02\xb4\x14\x33\x35\xc3\xcc\xf6\x37\xe6\x06\x37\x3e\x38\x7c\xf0\xee\xf5\x43\xdd\xcb\x7b\xed\xd1\x7d\x54\x4b\x43\xe2\xf2\x10\x08\x60\x21\xb3\x2c\xd6\x5a\x6b\xdf\x79\xe7\x1d\xfc\xfa\xd7\xbf\xf6\x1b\x71\x7d\xdb\xf8\xb6\xd0\x9c\x61\x08\x20\x73\x40\x22\x85\x18\x3f\x1e\x3f\x8d\x13\xe3\xcf\x62\xce\x41\x03\x69\x31\xe7\x9d\x92\x3f\x4f\xa3\x01\x43\x29\x70\xda\x14\xc7\x19\xca\x5b\xe2\x91\x3a\x38\xe1\xe9\x63\xce\x5e\xe3\x1d\x6b\x2b\x7a\xad\xc9\xad\x81\x25\xee\x88\x25\x9d\x91\x1c\x80\xa6\xe7\x92\x1e\x4b\x71\x21\xdd\x8d\x01\x6b\xce\x37\x24\xbf\x54\x3f\x50\x68\x24\x10\x28\x81\x16\x49\x7e\xcd\xee\x6b\x6d\x2f\x95\x4f\x93\x4d\xe2\x1d\x04\xda\xa7\x4e\x9d\xc2\xd1\xa3\x47\xa9\xec\x39\x99\x6d\x69\x01\x68\x1d\xd9\x6d\xad\x9d\xdd\xec\x7c\x6e\x65\xbf\xf9\x72\x73\x64\x8e\x1b\x98\x1c\x0e\xe5\xe4\x76\xb5\x1d\x80\x99\xef\x82\xc6\x87\xc9\xf9\x6d\x03\xc7\xe2\x4d\xf5\xa8\x7a\xa6\xf0\x6e\xc0\x2c\x2f\x76\xf3\x4f\x9f\x7e\xd8\xbe\xb7\xd3\x1e\x6d\x76\xf3\x83\x7e\xbf\x61\x4b\xfb\x8b\x7a\xbb\xd8\x73\xe7\xce\x61\x7f\x7f\x3f\xdb\xde\xde\x86\x10\x34\x1d\xd1\xf4\x5c\x0b\x5a\x7b\xa5\x0c\x56\x78\x88\xa5\x91\x06\x8e\x13\xa3\x06\x8d\x41\x28\x68\xa3\xb9\x94\x8e\x12\xe2\x23\xa1\x79\xde\x71\xa4\x86\xc8\x00\x64\x2b\x2b\x2b\xd9\x91\x23\x47\x50\xcc\x9c\x78\xc0\xe2\xff\xf2\x02\xb1\xb6\x96\x0e\xf2\x95\x93\x5b\xed\x4f\xae\xee\x37\x3f\xd1\x1c\x99\x35\x00\x85\x26\x1a\x06\xa9\x8b\x9b\x62\x59\x68\xac\xb1\x04\x69\x17\xc0\xa2\x36\x2b\xe3\x0a\x30\xe3\xca\xdb\x52\xc9\x6b\xca\xee\x9f\x3b\xd0\x79\x19\xc2\x1b\x70\xe3\x1d\xf0\x63\xa0\xe2\x45\x81\xef\x16\x44\x1e\xc2\x6b\xfc\xeb\x0a\xda\x02\xb4\x18\x37\x7c\x38\x3b\xbc\x73\x65\xe5\xe0\xdd\x6b\x87\xba\x17\xb7\xdb\xa3\xfb\x6e\x3c\xd3\xe2\x97\x84\x82\xa0\x05\x64\x44\x3a\x18\x0c\xec\xfa\xfa\x3a\x7e\xfe\xf3\x9f\x5b\x4b\x50\x8b\x10\x24\x44\xae\xb5\xb7\x94\x36\xa4\x9b\x9c\xa7\xc6\x9f\x3f\x8f\x01\x1a\x6d\x64\x99\xaa\xc3\x9c\xaf\xe4\xe8\xb4\xf4\x52\xe0\x8e\x23\x75\x74\x22\x95\x49\x92\x35\xe4\x38\x62\x20\x33\x24\x27\x35\xae\x5a\x9d\xf2\x3c\x42\xed\x19\xa3\x49\x69\x83\x10\x18\xe5\x32\xf3\xb2\x71\xde\xf4\x57\x02\x44\xb1\xfa\xe1\x3a\x6c\x59\x9c\x24\x8b\x94\x8e\x07\x89\x0f\xe7\xa1\x01\x30\x5a\x2e\x4e\xaf\xd5\xa9\xa6\x8f\x9a\xb3\x4a\xd1\xcd\x54\xa0\xad\xf5\x8d\xec\xd8\xb1\x63\x58\x5c\x5c\x04\x99\x71\xcf\xe8\x9b\x44\xce\xb9\x4e\x7b\x90\xcd\x3f\xb5\x31\x73\x7e\x75\xaf\xf9\x72\x7b\x98\x9d\xcc\x60\x5a\x0e\x28\x97\xde\xc7\x97\x93\x00\x04\x84\xc6\x48\xcf\x5c\x05\x46\xe8\xaf\x63\xe9\x2a\x7a\x3f\xcb\xee\x69\xc6\xde\xa0\x39\x32\xc7\x8e\xec\xb6\x5e\x3a\xfd\xb0\xfd\x99\x95\xfd\xe6\xaa\x31\xc6\xcf\xba\xe4\xc5\x9f\xf7\x6f\x78\xfe\xf9\xe7\xb3\xe7\x9e\x7b\x0e\x8b\x8b\x8b\x52\x9d\x69\xa0\x94\xd6\x9b\xe6\x77\xb5\xfe\xc7\xf5\x5f\xd2\x87\x14\xdb\xc5\xe9\x78\x7f\xaa\xc9\x4c\x89\x24\x81\x11\x88\xe7\x99\x49\x9d\x80\xa6\x93\x0c\x09\x84\x67\x1a\x72\xb6\x02\x8d\x84\xfa\x2d\x00\xfb\xe4\x93\x4f\xe2\xa3\x1f\xfd\x68\x06\x94\x4b\x27\x19\x80\xda\xab\x6f\xed\x51\x36\x7b\xfa\x61\xe7\xe9\x27\xb6\xdb\x2f\xce\x0c\xb2\xd3\x19\x4c\x6e\x50\xa1\x6c\x3a\x23\xe2\x5f\x23\xf6\xd1\x7e\xe3\x6b\xa9\x8c\xd2\xc6\x2b\xe3\xf3\xc6\xc4\x33\x43\x51\x91\x4f\x4a\x66\x70\x7c\x27\xf1\x72\x94\x79\x16\xf7\x1e\x04\x79\xa0\xe3\x30\x3e\x3f\x66\xcc\xc3\x71\xd6\x70\x70\xb0\xc6\xd9\x9d\xce\x70\xe3\xea\xa1\xee\x85\x2b\x2b\xdd\x8b\x5b\x33\xc3\xbb\x2e\xc3\x36\x80\x5d\x63\x8c\xff\xe3\xa0\x65\xe8\x9c\xab\x81\x16\x63\x8c\xed\xf7\xfb\xf6\xca\x95\x2b\xf8\xcf\xff\xfc\x4f\xae\x58\x92\xe2\xf1\x36\xd2\x74\x82\xd2\xc5\x0c\x37\x50\xd7\x09\x08\xb4\x9a\x61\xd4\x9c\xa4\x86\xf0\xb9\x2c\x3c\x2e\x66\xc0\x43\xe9\x78\x08\xf1\xa1\x72\xf2\x7b\xde\x87\x24\x47\xc8\x65\x0a\x39\x7c\x69\x60\xc0\x8d\x55\xc8\x98\x49\x46\x30\x04\x06\xb4\x20\xf5\x7f\x89\x46\xd2\x25\xae\x27\x52\x7a\xcd\x21\xd3\xbc\x63\xed\xc4\x8d\xbe\x36\x60\x93\x8c\x3d\x97\x2d\x0b\xc4\xd1\x10\xba\x97\xea\x4c\xeb\x8b\xb4\x3c\xb1\xf6\xa6\x65\xa0\x7c\x34\xde\xa9\x6d\x1b\xba\xf6\x79\xc6\xf8\x8b\x79\x7e\xf2\x93\x9f\xc4\xf1\xe3\xc7\xbd\xed\xaf\xf9\x00\x00\x2d\x63\x4c\xeb\x89\xed\xd6\xda\x89\x47\xed\xdf\x9b\xeb\x37\x9e\xcd\xdc\xf8\x9c\x16\xba\xb9\xc2\x87\xda\xa4\x38\x89\x77\xa8\x06\x8a\xe3\xe7\xae\x8a\x67\x0b\x48\x8e\x31\xf5\xcf\x9d\x03\x9c\x71\xf5\x19\x7c\x0f\x96\x1c\xf2\xce\x30\x3b\x7b\x7c\xa7\xfd\xd2\x89\x47\xed\x67\x9a\x43\x33\x4b\xcf\x9c\x29\xfe\x3c\x28\xc3\xc7\x3f\xfe\xf1\xec\xe4\xc9\x93\x34\x5b\xa9\x1f\xd2\x7b\xad\xcf\x03\x75\x1d\x92\x02\xb7\x3f\xa1\x3e\x0a\xe8\xed\x1c\x03\xcc\x35\x9a\x90\x71\xe4\xbf\x9a\xa1\x05\x7b\xc6\x8d\xa4\x06\x6c\x42\x82\x85\x64\x0a\x5d\x03\x00\x66\x66\x66\xb2\x4e\xa7\x03\x00\x25\x60\x29\xfe\xca\xa9\x41\x38\x74\x8e\xed\xb4\x8e\x9d\xda\xea\x7c\x76\xa9\x9b\x3f\xdb\xb0\xd9\x62\x35\x3b\x31\x39\xfd\x47\xe3\x24\x85\x1e\xaf\x2e\x09\xab\x9c\x64\xd5\xa9\x86\xb0\x9d\x29\x67\x53\x18\x39\xe8\xfe\x9a\x09\x12\x36\x0b\x44\x31\x91\x29\xd3\x92\x77\xfe\x49\x4f\xd8\x6b\xda\xad\x6b\xcb\xdd\x0b\xef\xaf\x1e\xbc\xbb\x39\x3b\xbc\x6b\xb3\x72\x59\x88\x2e\x11\x75\x31\x3e\xa7\xa5\x9c\x65\x61\xd3\x92\xb6\xdf\xef\xdb\xab\x57\xaf\xe2\x47\x3f\xfa\x91\x06\x2a\x35\xc7\xaa\x01\x8e\x14\xb4\x2f\x19\x76\x0d\xbd\x6b\xb2\xc4\x9c\x97\x14\xa4\x0e\xc7\x3b\x69\x0c\x3c\x69\x4e\x20\xc5\x21\x48\xb2\x70\x63\xa1\x0d\x0a\x24\x07\x29\xe5\x27\x39\x50\x2e\x83\x64\xec\xa4\xf2\xc4\x80\x99\xd4\xee\xfc\x5a\xe2\xc7\xd3\x68\x76\x45\x03\x4d\x52\x1e\xbc\xad\xb8\x8c\x21\xbd\xe4\x81\xca\xca\xd3\x01\xb2\xac\x41\x3b\x16\x90\x9f\x3b\x8a\x50\x3d\x6a\xba\xa1\xb5\x8d\x06\x56\x62\xf6\x3b\x55\x86\x50\xbe\xb1\xbe\xa9\x01\x2b\x7e\x6d\x01\x60\x61\x61\x01\xcd\x66\x13\xc0\x78\xd0\x47\x67\x5c\x00\xe4\x70\x68\x35\x46\xe8\x3c\xbd\x31\xf3\x89\xe5\x83\xfc\xc5\x7c\x64\x96\xe9\x66\xdc\xf1\x72\x0d\x99\x2e\xf7\xf1\x74\xea\xc4\xa1\xf6\xc2\x90\xcf\xcb\xa7\x2f\x37\x0e\x38\xbf\xdc\x24\xed\x83\x2c\x06\x9c\xc4\xe9\x18\x57\xf9\x15\x03\x83\x6c\xbc\xdf\xe5\x99\xa3\x3b\xad\x8f\x1f\xde\x6b\xae\x18\x63\x3a\x28\x96\xbc\x48\xf9\x3d\x38\x93\xea\x10\x90\xed\x30\xfd\x95\xda\x20\x66\x7f\x35\xdd\xe2\xfd\x81\xf3\xe2\xf1\x3c\x3f\x1f\x44\x9d\x08\x81\x0d\xb0\xfb\x94\x0e\xcc\x8d\x5f\xac\x82\x62\x06\x23\xd4\x51\xa4\x78\xe4\x79\x9e\xbd\xf4\xd2\x4b\x38\x7f\xfe\x3c\x55\xd2\xcc\x23\xd4\xe2\xb7\xd3\x1a\x99\xd9\x33\x9b\x9d\xe7\x57\xf7\x9a\x9f\x6e\x8e\xcc\x9a\x19\x37\x7a\xa5\x8c\xc5\x86\x5a\xba\xcc\x53\x81\x84\xfa\x46\x5b\x94\xf1\xd5\xa6\x5a\x9a\xc8\xc0\x11\x30\x52\x4d\xdb\x18\x92\xbc\x5c\x89\x2a\x14\xb5\x02\x21\xe3\x34\x3c\x3d\x9d\x81\xa9\x01\x1d\x43\xb8\xba\x6a\x63\x70\xaf\x61\x77\x6f\x2d\x75\x2f\x5e\x5c\xdb\x7f\x7b\x63\x6e\x70\x7b\xd4\x70\xdb\xc5\xd2\xd0\xae\x7f\x6b\x08\xe3\x33\x5a\xfc\x1b\x44\x74\x79\x68\xe8\x9c\xb3\x00\xec\x68\x34\xb2\x57\xae\x5c\xa1\xa0\xa5\xac\x7b\x76\xcd\x9d\xbb\x0f\x9a\x71\xe4\x41\xd2\x19\x8d\x4e\x02\x0a\x29\xf2\xf1\x4e\x48\xe5\x9b\x30\x84\x2c\x4d\xa8\xe3\xd1\x6b\xa9\x8c\xdc\xc1\xd3\x78\x89\x0f\xe7\x17\x72\x44\x52\x3f\xd5\xfa\x93\xe4\xb8\xb5\x7c\x43\x69\xa5\x72\x84\xfa\xf6\xb4\xf9\xd3\x67\x52\x7b\x73\xfe\x21\xc7\x1e\xe2\xad\xd9\x25\xad\x9d\xa4\xf6\x90\xec\x9f\x8f\x0f\xe9\x21\xe7\x4d\x69\x62\x3a\xa2\x39\x15\xc9\x91\xd0\xc0\xeb\x2a\xd4\x8f\x69\x08\xf5\x5b\xff\x5c\xd3\x0d\x1e\xb4\x3e\xa5\xf1\xa5\x32\x69\x7c\x33\x00\xf8\xda\xd7\xbe\x56\xce\xb6\x90\xbf\x72\x6f\x8b\x71\x68\xad\xed\xb6\x56\x56\xf7\x9a\x9f\x6a\x8f\xb2\x93\x66\x3c\xa8\xad\x05\xba\x1f\x05\xe5\x4c\x4a\xf1\xcf\xa0\xfa\x03\xf9\x73\xae\x5c\xd6\x2f\x07\xb9\xc5\xd4\xf9\xc4\xc6\x5c\x43\xe2\x0c\xf1\x1d\xa6\xe6\x58\x60\x00\xe4\x23\xb3\x7a\x68\x3f\x7f\xe6\xd8\x4e\xeb\x2c\xdc\x78\x00\x4e\x4e\xfc\xad\xd5\x5d\x9e\xe7\x68\x34\x6a\xe7\xcb\xc6\xda\x7f\x9a\xfe\xc1\xd3\x72\x3a\xfa\x5c\x6b\x27\x6d\x60\xa1\xd9\xb7\x1a\x0f\x1a\xc9\x1d\x45\xea\xf5\xb4\x71\x34\x3e\x56\x28\xc9\x18\x6a\x9d\xc8\x02\xc0\x57\xbf\xfa\x55\x3c\xf3\xcc\x33\x00\x4a\x87\x4e\x41\x4b\xb9\x36\xf8\xd4\xc6\xcc\xe9\xe3\x8f\xda\xbf\x37\xdb\xcf\xce\x35\xac\x19\x4f\xcf\x78\x7f\x6f\xea\xfb\x42\x50\x4e\x0d\x7a\xc5\x25\x77\x13\x0b\x9b\xa8\x2d\x0d\x15\x47\xc7\x94\xaf\x4c\xbb\x2a\xb2\xb6\x29\xd7\x78\x90\x44\xa6\x65\xe8\x6b\xd6\xfe\x5a\x7a\xbd\xd9\x63\x95\x0a\x5c\x55\xcb\x47\x00\x30\xca\xd0\xbf\xbd\xd8\x5f\x7f\xe7\x89\xfd\x37\xef\x2d\x0c\x6e\x0e\x1b\x6e\x1b\x64\x96\xa5\x58\x1e\x2a\x01\x0c\x9d\x6d\x29\xfe\xca\xcd\x60\xef\xbd\xf7\x1e\x7e\xfc\xe3\x1f\x6b\xc0\x94\xb6\x8f\xd4\x4e\xda\x33\x1e\x47\xe9\xa4\xce\x12\x4a\xc3\xe5\x91\x78\x52\x79\x42\x20\x4a\x73\x4a\x21\x87\xa5\x95\x23\x54\x1f\x52\xfe\x92\x53\xd7\x68\x52\xfa\x51\x28\x3f\xad\x1e\x24\xe3\x13\x2a\x07\x6f\x7f\x0d\x60\x48\x79\x70\x39\x35\x7a\x9e\xb7\x26\xbf\x54\x77\x21\x3b\x97\xda\xfe\xa1\x34\xb1\xfa\xe5\xf9\xc7\xfa\x84\x0f\xa1\x7e\x16\x92\x55\x8b\xa3\xd7\x1a\xe8\x8c\xe9\x8c\xc6\x4f\x7b\xae\xf5\xb3\x14\x1e\x34\xfd\xe3\xf0\x00\x50\x2d\x15\xa1\x38\x74\x34\x73\xa6\x73\x62\xbb\x73\x72\xbe\xd7\x38\x9f\x59\xcc\xaa\xc6\xdc\x54\xd7\xa5\x3d\x2e\x06\x97\xb5\x9d\x01\x7e\x96\x84\x9c\x72\x5b\xce\x84\x13\x5a\x36\xae\xad\xcf\x9a\x97\x3b\x12\xea\x5b\x0f\x1c\x80\x86\xc3\xec\x5c\xbf\x71\xf6\xf0\x7e\xf3\xa3\xf3\xbd\xc6\x2c\xc6\x40\x8b\x96\xab\xac\xa7\x97\x5f\x7e\x19\x2f\xbc\xf0\x82\x54\x5f\xd3\xea\xba\xa4\x07\x9a\x9d\xd7\x74\x59\xea\xcb\x9a\x6d\x91\xfa\x2c\xe5\x91\x01\xfa\x52\xd1\x34\x21\x75\xb4\x34\x6d\x08\x75\xe4\x58\xa8\xa1\x6c\x63\x4c\x46\xd6\x02\x5b\x4b\xbd\x7c\xf9\xec\xc3\xce\xe7\x96\xba\xf9\xf3\xb9\x35\xf3\x00\x45\xc0\xe5\x71\x70\xd5\xda\x65\xa9\x9d\x86\x80\x98\x22\x38\x1d\xc0\x00\x64\x02\xc4\x55\x8a\x5d\x75\x80\x1a\x65\x6d\x0a\x46\x58\x74\xaa\xcd\xd0\xa0\x90\xcd\x14\x9b\x5d\xca\xdd\xef\xb5\x35\x2c\x07\x6b\xdc\xf0\xee\x7c\xff\xf2\x6f\x4e\xec\xbd\x7e\x7b\xb1\x77\x7d\x90\xb9\x2d\x00\xdb\xe4\xb5\x67\xbf\x44\xd4\x47\x60\xa6\x05\x00\xde\x7c\xf3\x4d\xfc\xf4\xa7\x3f\xa5\x22\x79\x45\x0b\x39\x7f\x1f\xb8\x9e\x84\x46\x74\x94\x5e\x32\x48\x29\xa3\x03\x9e\x56\xd3\x53\xb1\x63\x08\x69\x38\xdf\x94\xd1\x61\x6c\xf6\x40\x7a\x1e\x32\xf4\xa1\xbe\xc6\x47\x44\x5a\x5d\xc5\xee\x25\x59\x34\x3a\xa9\x0c\x12\x50\xf1\xbf\x92\xfc\xd4\x51\x6a\xb2\x70\x5a\x9e\x4e\x93\x55\x72\xcc\x29\x36\x4a\x32\xa0\x21\xb9\xa6\xa9\x53\xfe\x3c\xa4\xff\x52\x5b\xc6\xe4\xd2\xea\x58\x93\x43\x02\x43\x5a\x5b\x70\x7a\x29\xcf\x94\x7c\xa6\xa5\x07\xe2\x6d\x50\xbb\xfe\xf3\x3f\xff\xf3\xec\xc8\x91\x23\x34\xbe\x04\x2c\x28\x66\x5b\x66\x86\xd9\xfc\xd1\xed\xe6\x73\xed\x61\x76\xd2\x00\x39\xb7\xaf\x40\x1d\x64\x00\x3a\xf8\xf0\x0f\xcb\x19\x16\x7a\x9c\x06\xea\xe0\x84\x07\xc7\xfe\x24\x39\x7c\x39\x5a\xc5\xac\xcb\xf1\x9d\xf6\x71\x63\x8c\x7f\x2d\x9a\xcf\xb8\xa4\xd4\x31\x10\xb6\x71\xfc\x9a\xd2\x87\xec\xb0\x06\x86\x35\x7a\x1e\x1f\xea\x0b\x96\x46\x4c\x13\x42\x86\x56\xca\xf4\xc3\x00\x99\x50\xa5\x88\xe1\xeb\x5f\xff\x7a\xb9\x29\xc9\x1f\xe9\x5c\xfc\xf9\xdd\xd7\x2d\xe7\x5c\xe7\xe9\xfb\xb3\xe7\x56\x77\x9b\x2f\xb6\x86\xd9\x1a\x8a\x57\xc2\xfd\x26\x58\xbe\x67\x96\x6e\x96\x1d\x47\x32\x95\x32\x75\x65\xac\x29\x6d\xa1\x89\xfe\x25\x25\xca\x7f\x22\x4d\xc1\xd7\x2f\x73\x56\x4b\x51\xae\x06\x46\xa8\x88\x86\xf0\x2d\xdf\x34\x22\xb3\x2f\xd6\xc0\x6e\xcd\x8c\xee\xfc\xf6\xe8\xde\x9b\x37\x96\xba\xd7\x07\x99\xdb\x86\xa9\x66\x59\xd8\x12\x51\x09\x5a\x8c\x31\x43\xe7\x5c\xed\x70\xb9\xd7\x5f\x7f\xdd\xfe\xfa\xd7\xbf\xa6\xcb\x52\xb1\x11\xb1\xa6\xf4\x5a\x9a\x90\x51\xce\xd8\xf3\x98\x9e\x69\x23\x0a\x7e\x2d\xe5\x17\x1b\x61\xfa\x74\x7c\xa4\xa0\x05\xcd\xb9\xf1\x74\x8f\x5b\x06\x7a\x4f\xeb\x58\x1a\xa5\x53\x80\xa0\x01\x9d\x90\x3c\x5a\x7d\x48\x32\xf0\xf6\xe6\x7c\xa9\x1c\xa1\x7a\xd4\x0c\x29\x2f\x8b\x24\x73\xa8\xbc\x12\x4f\x49\xbe\x90\x3c\xdc\xd1\xf3\x3a\xd6\x74\x4e\x2a\x3b\x0f\x12\x68\xe1\x23\xd4\x98\x8d\x8c\x81\x67\xa9\x8d\x42\x40\x21\x54\x86\x10\x80\x95\xf2\x09\xb5\x83\x04\xa6\x78\x90\xe4\x2e\x65\x6a\x34\x1a\x7c\x7f\x63\x0d\xbc\x34\xac\xe9\xac\xee\x36\x57\x97\xba\xf9\x33\xb9\x35\xcb\x80\x0c\x1a\x38\xd0\xe0\x00\xc6\x30\x7b\x5e\xed\x87\xf4\x8e\xc3\x89\x69\xf9\x4c\x4b\x19\xef\xea\x40\x87\xae\x1c\x15\x7b\x5d\x3a\x33\x83\xc6\xb1\xa5\x83\xc6\x71\x54\xcb\x5e\xe2\x72\xd1\xc7\x3f\xfe\x71\x7c\xf6\xb3\x9f\x95\x40\x4c\x8a\xad\xe1\xf4\x21\x7d\x95\x00\xb0\x06\xa2\xb4\x76\x0b\x0d\x2e\x79\x5c\x26\x3d\xfc\x5d\x86\x58\x85\x4c\x9b\x36\xa4\xc8\x98\x9d\x9d\x45\x9e\xe7\x92\xa2\xb6\x8c\x31\xad\x0c\xa6\xb3\xba\xd7\x5a\x3e\xb9\xd5\xfe\xdc\x5c\x2f\x7f\xa6\xe1\x30\x4b\x37\x44\x8d\x77\x76\xb3\xa5\x18\xa6\x98\x25\xa2\x86\x57\x72\xa2\x98\x7e\xb3\x6c\x71\xa2\x9c\x07\x2c\x35\x8e\xd2\x6c\xe4\x44\x0e\x55\xde\xe5\x5b\x49\x8e\xc4\x11\x49\x1c\x61\xe2\xd7\x57\x61\x00\x6b\x9c\xdd\x6d\x8f\x36\x3f\x38\x7c\xf0\x9b\xf7\x57\x0f\xd6\x07\x0d\xb7\x05\x53\x3f\xa7\xc5\xbf\x41\xe4\x41\x4b\x31\xbb\x52\x6e\xc8\xf5\xa0\xe5\x17\xbf\xf8\x85\xbd\x70\xe1\x02\x06\x83\x01\x90\x06\x52\x34\xba\x18\x7d\xc8\x88\x87\x66\x1e\x24\x07\xc6\x9d\x59\xcc\xc8\xa7\xf6\x05\x8d\xaf\xc6\x47\x72\x62\xc0\x64\x79\xb4\xce\x2e\x19\x1d\x0e\xe4\x24\x50\x27\xf1\xb7\xec\x3a\xd5\x60\x49\x72\x70\x3a\x9e\x97\x56\x66\xc9\x41\xc6\x9c\xab\x15\xae\xb5\xe7\xd2\x2f\xa5\x93\xca\xc3\x9d\x66\x0c\x70\xd1\x7b\x9e\x36\xe6\x98\x63\x00\x5a\x93\x2d\x06\x64\x3d\xad\xe6\x94\x52\xda\x4f\x03\x21\x5a\x08\x95\x97\xf3\x89\x39\xa6\x69\x7c\x45\xa8\xbe\x34\xbd\xae\xf9\x84\x86\x43\x6b\xb1\x9b\xaf\x74\x06\xd9\xc9\x71\x1c\xd9\x18\x0b\x36\xb3\x0d\x79\xc6\xa4\x98\xec\x16\x43\x69\xcd\xa5\x23\x32\x50\xf7\x23\xb5\xa1\x70\xf1\x0a\x34\xcf\xdf\xdb\x77\xe3\xd0\x6a\x0f\xcd\xea\x42\x37\x3f\xd5\x1a\x64\x7e\xb9\xc8\xbf\x55\x54\x03\x2f\xad\x56\x0b\xed\x76\xdb\xd7\x89\xd4\x2f\x63\x76\x29\x66\x2f\x24\xfd\xe3\x60\x9e\xa7\xe3\x03\x29\x2d\x48\x69\xfc\xb5\x8d\x25\xd6\x84\xd2\x9e\xd3\xdf\x0f\x1b\x24\xe5\x54\xf3\xff\xe2\x17\xbf\x98\x2d\x2f\x2f\x03\x28\xd7\xfc\xca\x57\xc5\xe0\x77\x90\x5b\xd3\x39\xbb\xd9\x79\xfa\xf0\x5e\xf3\xc5\xa6\x35\x2b\x80\xc9\xea\x7b\x4a\x88\xc2\x09\x6f\xf6\xf8\xf5\x4d\x7f\x8f\xe2\xde\x2f\x29\xd1\x83\xe0\x9c\xa9\x6f\xb0\xad\x26\x61\x5c\x2d\x3d\x5f\x1a\x1a\x7f\x80\xd1\x95\x7b\x57\xe8\xc6\x2d\x2f\xe3\x98\xbe\xfa\xc6\x51\x6d\x84\x60\x0c\x2c\x9c\x3d\x68\x8e\xb6\x6f\x2e\xf5\x2e\xbc\x77\x64\xff\xdd\x83\xe6\xe8\x01\xaa\xe3\xfb\xbb\x20\xc7\xf8\xa3\x7e\x1a\x6e\xbf\xa8\x63\x5b\x80\x18\xfc\xe2\x17\xbf\xb0\x17\x2f\x5e\x44\xb7\xdb\x25\xb9\x4c\x28\x3f\x8d\x0f\x21\x7c\xcd\x98\xc7\xf4\x90\xa2\x7d\x2d\x6f\xc9\x69\x49\x80\x80\xa7\xd3\xe4\x09\xc9\x18\x73\x5e\xa1\xd1\x82\xc4\x37\xc5\x78\xd0\xbc\x53\x46\xad\x54\xe6\x90\xb3\x94\xda\x2c\x54\x4e\x89\x3e\xe6\x80\x25\xa0\xc5\x81\x14\x4f\xc7\xcb\x1d\x92\x55\xd3\x39\xae\x37\x21\x1b\x22\xb5\x47\x88\xb7\xa6\x6f\xc0\x64\x59\x25\xb9\x52\x46\x98\x9c\xaf\x44\x1b\x6a\x0b\x5e\x07\x34\xad\xd6\xe7\xa4\xf2\x6b\x79\x4b\xfc\xa4\x7e\xc2\xf9\xfa\x67\x5a\xbf\xd4\xd2\x53\x3e\x12\x28\xd5\xe4\xa3\x69\xc7\xaf\x11\x5b\xd3\x9a\xeb\x37\x56\xf2\x91\x59\x01\xc8\x6c\x07\x45\x14\x45\xa8\x66\xbf\x89\x3d\xa6\x4b\xff\x34\x08\x4b\x44\xe3\x4d\xb7\x6e\xcc\xdf\x90\xd9\x16\xf2\x16\x2b\x85\x4d\x35\xa0\xe4\xc8\x1e\x99\xf1\x75\xde\x1c\x65\x8b\xb3\xfd\xec\xd8\x52\xb7\xb1\x08\x61\xb6\xc5\xef\xed\x14\xea\xc2\xd7\x95\xa4\x13\x31\x7b\xa0\xdd\x87\x6c\x2c\xe7\x2f\x01\x26\xcd\x8f\x48\x71\x25\x6d\x8e\x70\x47\x0e\x21\x33\x1e\x24\x87\xf1\xbb\x0c\x1a\x8a\x06\x00\x7b\xe2\xc4\x09\xb4\x5a\xad\x5a\xc3\xf9\x1d\xd7\xc6\x98\x56\xc3\xa1\xb3\xba\xd7\x5c\x3d\xb5\xd5\xfe\xec\xec\x20\x7b\x3a\x73\x68\x55\x20\x85\xec\x45\x19\x6b\x54\x09\x48\x3c\x78\xa8\x6d\xc2\x22\xd7\xc5\xa9\xbc\x63\x60\x51\xff\x54\xf3\x98\xd6\x8c\xdf\x4f\xaa\x36\x6b\xd5\xe7\x57\x6a\x7b\xb0\xca\x8c\x0a\x94\x6e\x0a\x35\x76\x86\xc9\x17\x90\x07\x0e\xbd\xdc\xee\xdf\x9f\x1f\x5c\xbb\x74\x64\xff\xed\xcd\xb9\xc1\x6d\x14\x9b\x6f\x31\x9e\x65\xf1\xbf\xe2\x11\xfe\xce\x39\x3f\xdb\x82\x37\xde\x78\xc3\x5e\xbc\x78\x11\x07\x07\x07\xbc\xde\x79\x1b\x6b\xe8\x98\xc7\x71\x83\xa4\xe9\x17\x37\xc4\x9a\xe3\xe5\x1d\x46\x93\x2b\xc5\x80\x6a\xce\x2d\x34\xa2\xd4\x42\x28\xff\x18\x5f\x4d\x46\xfe\x2c\x65\xe4\x2e\xd5\x3b\x4f\xaf\xc9\x16\x73\xf4\x92\x6c\xb4\x3d\x42\xa3\x2c\xad\xfe\x39\x7d\x4a\x9d\x4b\xe9\x25\x19\x34\x99\x52\xda\x31\x25\x68\xc6\x58\x03\x38\x92\xbe\x82\xd1\xf8\xeb\x58\x3d\xa4\xe8\x9b\x97\x47\xe2\xa1\xc5\x87\xf4\xd6\xa7\x0b\x81\x68\x8d\x97\x26\x6f\x6a\xfd\xf1\x50\xab\xab\xdf\xff\xfd\xdf\xcf\x8a\x99\x06\x19\xe0\x3a\xe4\xb9\x33\x9d\xd9\x41\x76\x28\xb7\xa6\x3a\xa9\x8d\x6f\x0b\x08\x84\xfa\x79\x2b\xd4\x9e\x9b\x89\xf4\x7e\xe9\x88\x2e\x45\x19\x57\xf9\x86\xca\x2b\x4c\x06\x0a\x74\xc6\xd7\x06\x99\x73\x9d\xce\xb0\xb1\xb2\xd0\xcb\x17\xef\x2f\x0c\xee\xf1\x25\xb1\xe2\x3e\x45\xf7\xa7\x7d\xc6\xe3\x24\xa0\x19\xea\xff\x3c\x8d\x64\x8f\x34\xfa\x9a\x4e\x68\x88\x3b\x94\xb1\x44\xeb\xaf\x43\xfc\xb4\x11\x88\x16\x97\x62\x34\x2c\x00\xfb\xa9\x4f\x7d\x8a\x2a\xaa\xdf\x88\xeb\x4f\x48\x1c\x6f\xc4\x1a\x64\xf3\x67\x36\x3b\x4f\x1f\xde\x6b\xbd\x38\x56\x56\xaf\x34\x64\x66\xa3\xdc\x48\x6b\x6a\x4b\x3c\x9a\x52\x8d\xd3\x12\x85\x24\x4a\x5b\x07\x16\x3a\x87\xda\x94\x21\x9d\x55\x21\xc8\xc6\x23\x76\x27\x74\x2c\xde\x49\x06\x0d\xd7\xdd\x9c\x1d\xde\xba\x7c\xf8\xe0\xed\x5b\x8b\xfd\xeb\xa3\x6c\xe2\x18\x7f\x3f\xe3\x52\x03\x2e\x04\xb0\x58\x00\x78\xf3\xcd\x37\xed\xbb\xef\xbe\x8b\x83\x83\x83\x98\x31\x0c\x39\x28\x7e\xcd\x15\x34\x34\x32\xd3\x0c\xab\x96\xbf\x86\xe0\x43\x7a\x27\xf1\x08\x19\xc6\x90\x3c\xa1\x91\x9e\x76\xcf\xe3\xb5\x32\x70\x59\xa5\x51\x11\x7d\xc6\xd3\x5a\xd4\x8d\x84\x96\x3f\xbd\x97\xea\x22\x54\x87\x34\x2f\x4e\xaf\xf1\xe4\x0e\x5c\x93\x87\xe7\xcd\xf5\x8b\xd3\x6a\xce\x5e\xb3\x51\x5a\xd0\x64\x91\xe8\xa4\x32\x48\xed\x28\x0d\x08\xa5\xf2\x48\xf5\x94\x2a\xab\x76\xcd\xf9\xf2\x38\x4d\x7f\xa4\x7b\x4e\x9f\xf2\x2c\x45\x3e\x2d\x3f\x2d\xad\xcf\xab\xac\xd3\x67\x9f\x7d\x16\xcd\x66\x93\xcf\x3c\xf8\xbf\x3c\x73\xc8\x5b\x43\xd3\xe9\x0c\xb2\xe5\x86\x33\xb3\x3e\x83\xf2\x9b\x6f\x70\x13\x16\xdb\xf9\xb7\x32\xe8\x2b\xd1\x64\xc6\x84\x5a\x72\x61\x4b\xe3\xf8\x8a\xee\x7d\x2c\x07\xc4\x64\x29\x89\x4c\xe7\x94\x9b\x00\xc8\x0c\x4e\x05\x7a\x4c\xde\x1a\x99\xc5\xd9\x41\xb6\x48\x4e\xcf\x9d\xd8\xe3\xc2\x57\x0d\x94\xfa\x4b\xb1\x8f\x9a\x2d\xb5\xec\x4f\xcb\x87\xf3\x0f\xd9\x16\xc9\xa6\x4d\xf4\x97\x69\x3b\x31\x0f\xdc\x69\x49\x4e\x8e\x1b\x4c\xcd\x70\xc5\xf2\x9e\x28\x98\x31\x26\x3b\x7f\xfe\x7c\xf6\xe9\x4f\x7f\x1a\xed\x76\xdb\x7f\xae\xbc\x54\x50\xbf\xeb\x3a\xb7\xa6\x73\x78\xaf\x79\xec\xc4\xa3\xf6\x67\x66\x07\xd9\xd3\x00\xb2\x72\x86\x03\xf5\xe9\xc1\xf2\x92\xb7\x79\x00\x2d\xf0\x8d\x59\xc1\xe0\xea\x97\xb5\x4d\x5a\xca\xc2\xa7\x01\xaa\x2f\x44\x83\x83\xa2\x8a\x7c\x64\xdc\xf0\x51\x67\x78\xef\xda\xa1\xee\x85\xab\x87\xba\xeb\xdd\x7c\xb4\x85\x62\x59\xc8\x39\x57\x7b\x83\xa8\xd8\x88\x5b\x6e\xc6\x35\xc6\x58\xe7\x9c\xb5\xd6\xe2\x9d\x77\xde\xb1\xbf\xfa\xd5\xaf\xd0\xeb\xf5\xb4\xd1\x22\x8d\x0b\x39\x8e\x8c\x5d\x43\xf8\xe5\x71\x92\x51\x97\xf2\xd2\xf2\xd7\x40\x80\xa6\x7f\xb1\x5f\x49\x3f\x35\xe3\xaf\x81\x05\x7a\x2f\xa5\xd3\x9c\x6a\xc8\xf1\x85\x80\xa4\xe4\x10\x69\x7a\xca\x5b\x93\x33\xd5\x51\xc5\x0c\x94\x96\x96\xeb\x46\x0c\x3c\x86\x6c\x8d\xa4\x9f\x52\x88\x81\xb1\x58\x3d\x87\xf4\x51\x92\x31\x74\x1d\x2a\x83\x44\x1b\x92\x51\xaa\x4b\x09\x04\x87\x00\x71\x28\x4f\xe9\x9e\xc6\xc7\x9c\x8e\xa6\x73\xfc\xda\x07\xad\xee\x39\x4f\x09\x84\x97\x71\xc6\x7f\x26\xa5\xd0\x51\xef\xdc\x0d\x90\xb7\x46\x59\xa7\x39\xca\x16\x33\x98\xbc\xb6\x57\x60\x7c\x01\xa0\xee\xf8\xfd\x12\x7e\xf9\x4d\x21\x67\x8a\xb8\x0a\xae\xb8\xe2\x40\x17\xc7\x9c\x45\x09\x50\xcc\xa4\x77\xa8\x0d\x98\xcb\x37\x37\x0c\xb9\x34\x14\xcf\x78\x7f\x91\x35\xac\x99\x6d\x0f\xb3\x79\x14\xfb\x5b\xe8\xc1\x73\x64\xc5\x01\x2b\x2b\x2b\x38\x75\xea\x94\x06\x1a\x42\x75\x49\xaf\x43\x7e\x20\x44\xab\xe9\x8c\x64\x23\x24\x39\xd4\x7e\x16\x03\x23\xa1\x0c\x53\x02\x2d\x8c\x96\x97\xf6\x2c\x54\xd9\x00\xc6\x3b\xc7\xbf\xf0\x85\x2f\xa0\xd1\x68\x64\xe4\x7b\x0d\x19\xaa\xd7\xde\xf2\x0c\xa6\x35\xd7\x6f\x2c\x9f\xdc\xea\x3c\xbd\xb2\xdf\x7c\xb1\xe1\xc6\xaf\x3f\x57\x1a\x83\xfa\x69\x86\xfe\x7a\x62\xf3\x08\xbf\x9e\x44\xb3\x13\x08\xd7\xd1\x38\xaf\x89\x95\x62\xd7\x97\x9c\xea\xcf\xca\x3c\x9c\x94\x13\xa1\x2b\xf2\x70\x70\x76\xaf\x35\xda\xba\xb9\xd4\x5b\xff\xe0\xf0\xc1\xc5\xed\xce\xf0\x3e\x0a\xd0\x62\x8c\xf1\x1b\x71\xe9\xb7\x87\xc4\xef\x0f\x59\x6b\xed\x4f\x7f\xfa\x53\x8c\x46\x23\x6e\x90\x62\x8a\xca\xaf\x25\x3a\xcd\x41\x85\x8c\x6c\x88\x3f\x07\x15\x29\x1d\x45\x4a\x2b\x19\x69\x09\x74\x49\xbc\x24\xa3\xa9\xc9\x47\xe9\x69\x59\x53\xc0\x08\xe5\x17\xeb\x57\x52\x5a\xce\x27\x26\xa7\xe6\x2c\x39\x0f\x0b\x5d\x3e\x9a\x26\x24\xbb\xe6\xfc\x52\xae\xe9\x7d\xaa\x73\xd6\x78\x4a\xfa\xe7\xef\x25\x80\x9c\xe2\xcc\xb9\x7c\x52\xde\x3c\x8f\x50\xbf\x0b\xd5\x2f\x2f\x43\x2a\x88\x94\x64\x0b\x3d\x97\x68\x34\x20\x21\xe5\xa7\x81\x5d\x5a\x06\x49\x06\x9e\x97\x66\x5b\xca\x40\xc0\x42\x35\xb0\x75\x26\x33\x0e\xb9\x21\x07\xce\xd5\xf6\x1e\x3a\xb2\x05\x00\x7e\x30\xeb\x6a\x83\x47\x00\xe5\x27\x56\xaa\xbc\xaa\xe5\x9c\x32\xce\xcf\xa8\xb8\xc9\x73\xd5\xfd\xcc\x8e\xa3\x0c\xe0\x77\x0b\xd4\xf7\x52\x12\x77\x05\x00\x59\xc3\xa2\xd3\x1c\x99\x59\xba\x29\xd7\xfb\xbf\x62\xb5\x01\x00\xb2\x63\xc7\x8e\x65\x1f\xfb\xd8\xc7\x7c\x9d\x69\xf5\x39\xad\x4d\xe1\x41\xd3\x57\x7a\x3f\x8d\xad\x92\xfa\x62\xad\x7d\xa7\x11\x90\x1b\xa8\xd4\x34\xd2\x75\x88\x2e\x14\x57\xe6\xdb\x68\x34\x70\xf4\xe8\x51\x00\x35\x84\xe9\x2b\x6a\xdc\x98\x0e\xad\xd6\x30\x9b\x3d\xbc\x3b\x9e\x6d\x99\x19\x64\x67\x81\x42\xb1\xe8\x54\x05\xc8\x75\x01\xa1\xe9\xf7\x26\x38\xcd\x58\x91\xbd\x62\xd1\xa9\x11\xbf\x96\x53\x81\x8f\xea\x74\x5b\x42\x06\x7f\xdc\xbf\x9b\x48\x4a\x46\x09\xf0\xeb\x55\xe5\x0a\x16\x99\x91\x29\x3b\x47\x01\xb2\x7a\xb9\xdd\xbf\xbb\xd8\xbf\xf2\xc1\xe1\x83\x0b\x1b\x73\x83\x9b\xae\x3a\xca\x9f\xbf\xf6\xdc\xc7\xf8\x48\x7f\xff\x0d\x22\xbf\x11\xd7\x8e\x46\x23\x7b\xf7\xee\x5d\x5e\xd7\x29\xc6\x96\xff\x49\x81\x2b\xf7\xb4\x4a\x1e\xe3\xcd\xd3\x72\xa3\x2d\x19\x47\x2e\x4f\x68\xd4\xa1\x19\x5b\xcd\xc1\xc5\x9c\x38\x07\x2c\xbc\x4e\xa4\x6b\x29\x2f\xcd\x51\x69\xe5\xd1\x80\x14\xe7\x1b\xaa\x3f\xca\x47\xaa\x3f\x08\xf4\x3c\x8e\xd3\x4b\xe0\x95\xe6\x1d\x33\xae\x31\xe7\x17\x73\xc4\x9a\xdc\x92\x11\x0d\xf1\x89\x39\x08\x89\x0f\xaf\xd3\x10\x00\x96\xda\x45\xca\x4f\x1c\xec\x09\xf4\x5a\x5a\xfa\x4c\xea\xa7\xbc\xed\x42\xba\x16\x6a\x03\xc9\x31\x49\x3a\x26\xc5\x6b\xf2\xf3\x3c\x00\xa0\x3c\xf2\x1f\xc6\x65\xce\x20\x73\x70\x84\x4f\x05\x37\xc6\x6f\x83\xd2\x8f\xe9\x3a\xf0\x97\x32\xca\xef\xd9\x91\x99\xfa\x72\x35\x09\xa8\xd1\xc2\xa0\x7c\x59\x63\xfc\x31\x5e\xcf\xb9\xd8\xff\x58\xf0\xa3\xe0\x49\x1b\x37\x17\x71\x99\x81\xc9\x33\x67\xda\xec\xe3\xc1\xe5\xc7\x16\x95\x20\xd9\x41\xcd\x06\x87\xfa\x33\xef\x5f\xda\xe0\x28\x34\x18\x4b\x91\x53\xeb\x83\xd1\x46\x9f\x26\x48\xbc\x42\xfc\x93\x15\x8e\x84\xb2\x12\x66\x67\x67\xf1\xc7\x7f\xfc\xc7\x19\x50\x1e\x30\xe7\xd3\x94\xef\xb5\x1b\xa0\x35\xdf\x6f\x2c\x9e\x78\xd4\xfe\xe8\xf2\x41\xfe\x42\xb5\x9e\xe9\xca\x7d\xb4\x1c\xd1\xfa\x8f\x27\xc2\xdf\x17\xbf\x3e\x4d\xa5\xb0\xae\x50\x3a\xba\x4b\x8b\x4c\xf5\x95\xb3\x25\x7e\x1f\x4d\x7d\x0b\x2d\x45\xd5\x3c\x98\x42\xa1\x1d\x5b\xdf\xac\x64\x29\x4b\x31\x5e\x22\xca\xdc\x70\x73\x76\x78\xeb\xca\x4a\xf7\xc2\x9d\x85\xc1\xf5\x91\x71\xe5\xab\xce\xc5\x6c\x4b\xd7\xef\x69\xe1\x4b\x44\xfe\xac\x96\xe1\x70\x68\x14\x24\xab\x2f\x00\x00\x20\x00\x49\x44\x41\x54\xef\xdd\xbb\x87\x7f\xfa\xa7\x7f\x2a\x67\x5f\x84\x3f\xde\x16\xda\x9f\x64\xbc\xb8\x21\xe5\x9d\x42\x9b\xf5\xe0\x7c\x40\xe2\x43\x06\x2f\x04\xb2\x53\x66\x0d\x38\x3d\xaf\x07\xde\xb9\xb8\x93\x08\x75\x58\x49\x3e\x5e\x27\xa1\x4e\xcf\xeb\x5a\x93\x99\xf2\x0f\xf5\x4f\xad\xae\x43\xe5\xe3\xf4\x5a\x7d\xf0\x7c\x78\xfd\x49\x32\x49\xe5\xd1\x02\xaf\x4f\xad\x0e\x79\x99\x62\x03\x29\x2e\xa7\xd6\x1e\xb1\x76\xe3\xa0\x4b\xcb\x6f\xda\x67\x9c\x9f\x04\x6a\xa5\xfb\x98\x7e\x7a\x7a\xad\x4e\xfd\x7d\x08\x4c\x71\x07\x29\xd9\x90\x10\x6f\xce\x43\xd2\x19\x49\x46\x0a\x52\xa8\x5c\x7e\xbf\x63\xe5\xe0\x8d\x83\x25\xf6\xdf\x94\xf6\x1c\xe4\x6d\x21\x37\x5e\x12\x32\x7e\x09\x48\x08\x86\xda\xe6\x72\xd1\x08\xd2\xf6\x92\xf1\x3e\xc5\x6a\x73\xc0\xf8\x4a\x5a\xf8\xaf\x64\xa2\x93\xff\x74\x4b\x81\x71\xc8\x32\x5b\xbe\x06\x8d\xa2\x7c\xf4\xfc\x32\xbe\x02\xc0\xdb\x4c\xb3\xe9\x9c\x5e\xea\xcf\x12\x9d\x64\xfb\xbd\x2c\x92\x7e\x70\xfe\x3c\x0d\x97\xb3\x46\x9b\x3a\xea\xe0\xd7\x5a\x07\x4e\x09\x52\x45\x48\x41\xed\xb0\xc6\x98\x2c\xcf\xf3\x5a\xc3\xb0\x0f\x68\xb5\x0c\x4c\xab\x39\x32\x9d\x43\xfb\xf9\xf1\x27\xb6\x5b\x9f\xe8\x0c\xb2\xd3\x63\x3a\x00\x30\x13\x98\x81\xe0\xeb\xf1\x3d\x9b\xaa\x1b\xa7\x21\x1f\x35\x24\x53\x82\x72\x1a\xc3\x90\x06\x85\xe6\x1c\x31\x95\xa5\x80\xdf\x04\x46\xd7\x44\xe9\xf2\x51\x1d\x85\x8f\x01\xce\x4e\x6b\xb4\x71\x75\xa5\x7b\xe1\xe6\x62\xef\x72\x2f\xb7\x5b\x28\x8e\xef\x27\xe7\xb4\xec\x53\xc0\x02\x06\x5a\xac\xb5\xf6\xde\xbd\x7b\x78\xe5\x95\x57\x52\x8c\x64\x48\xe1\x38\xcd\xb4\x7a\xa2\x81\x99\xd0\xc8\x4c\x33\x80\x1a\xb8\xe1\x69\x63\x46\x59\x32\xce\x21\xb0\x21\xd1\x48\xf2\x48\x69\xb4\x72\x68\x4e\x53\x73\x30\xdc\xe8\x4b\x8e\x80\x1b\x1b\x0d\x78\x85\xea\x95\x07\xad\xce\xa4\x7a\xd2\x1c\xba\x06\x1a\xb8\x0c\x5a\x59\x35\x87\x4a\xd3\x49\x60\x44\xab\x5f\x9e\x07\x97\x91\x8f\x44\x29\x0d\x97\x89\x83\xa6\x94\x7e\xa4\xc5\x87\xca\xc0\xe5\xe3\xc0\x41\xab\x4f\x09\xd4\xc5\x80\xb9\x54\xc7\xfe\x79\xa8\x2d\xb8\x1c\x21\xba\x69\xf8\x66\x00\x1f\x28\xd2\x99\xef\xb1\x35\xb5\x06\xb0\xc6\x59\x57\x2d\x04\xa1\xfc\xf0\x6d\x81\x14\x4c\xf1\x62\x04\x80\xfa\x6b\xcc\x15\x49\x19\xe8\xe2\xbf\x2b\xfc\x0b\xdd\xba\x22\xed\x4f\x04\x7b\x3e\x41\x53\x9c\x07\x06\xe1\x99\x83\x83\x35\x0e\x64\x79\xa8\xfa\x46\x92\x50\x7e\xa4\xb7\x85\xa4\x5b\x92\xfd\x07\xe4\xb6\x08\xf5\xdd\x50\x3f\xe2\x72\x4a\x69\x4b\x1a\x4d\x49\x24\x05\x4f\x05\x26\x12\x9f\x58\x9c\x14\x54\x24\xb6\xb6\xb6\x86\x6f\x7f\xfb\xdb\x00\xe0\x1b\xcb\x83\x96\xbc\x7c\x05\x1a\xe8\x2c\x76\xf3\x95\x93\x5b\xed\x8f\x2d\x1f\xe4\x2f\x64\xce\xb4\xe8\xdb\xca\x64\x31\xa6\x06\x26\xaa\xaf\x3c\x3b\xf6\xbc\x0a\x15\xae\xe6\x3c\xc8\x7d\x9d\xb8\xa4\xaf\x5e\x9b\x66\xeb\x96\xc5\x74\x0e\x7f\x03\x69\x8c\xb4\x0d\xb9\xae\x87\x5e\x6e\x77\xaf\x1f\xea\x5d\xb8\x7a\xa8\x7b\x71\xa7\x33\xbc\x0f\x53\xfb\xf6\x50\xb7\x00\x2d\x5d\xe7\x1c\xfd\xe2\x73\xcd\x90\x5d\xbb\x76\x0d\xaf\xbc\xf2\x8a\xaf\x5f\x1a\x42\xce\x5f\x72\x3a\x31\x70\xcb\x43\x0a\x88\xd1\x3a\x86\x94\x5e\xea\x54\x29\xfc\xa5\x10\x1a\xd1\xc6\x68\x43\xf9\xd1\xeb\x90\xb3\x4c\x09\xd3\xa6\xd7\xea\x2e\x56\x57\x94\x77\x08\x68\x69\xed\x23\x39\x68\x0d\x10\xf1\x7b\xcd\x86\xf0\x91\x77\x88\x3e\x36\x6a\xa4\x74\x12\x2f\x0d\x84\x53\x1a\xcd\x08\x53\x79\x25\x00\xa7\x81\x33\x9f\x5e\xaa\xb7\x69\x75\x24\x46\x1f\x73\x2e\x5c\x26\x9e\x36\xa4\x57\xd3\xca\x34\x4d\x9d\x4b\xd7\x41\xbb\xe3\x8f\xae\x18\x34\xac\xed\xe7\xb6\x0b\x83\xe1\xf8\x01\xaa\xb1\xa6\xbf\x87\x04\x18\x08\x2f\x1e\xe7\xea\xf1\xe5\x75\x61\xeb\xeb\x7b\x66\x88\x3d\x67\x46\xbd\xe6\x6e\xc8\x60\x98\x2c\x53\xd9\x61\x03\xdd\x6e\xd3\xed\x51\x80\x42\xbf\x91\xe4\xef\x49\x08\xe9\xf5\x87\x01\x95\x1a\xaf\xd8\xc0\x35\xe4\x3b\x78\xfe\xfc\xf9\x87\xfa\x56\x51\xaa\xc1\xff\x5d\xf0\x54\x69\xf9\x87\xb3\x30\xde\x70\xd5\xca\x47\xa6\x73\x78\xaf\x79\xfa\x89\xed\xd6\x0b\xed\x61\x76\x7c\xbc\x0c\x04\xb2\xfb\x8a\x6c\x31\xa9\x4d\x80\x8c\xa7\x07\xf9\x17\x9e\x4b\x42\x54\xf1\xb5\x03\x8b\x6a\x2b\x41\xd5\xce\x17\x7a\xea\x2d\x80\xf2\x48\xe7\x92\x37\x25\xac\xb3\x2f\x0f\x39\xa2\x2b\xa2\x34\x0c\x33\xd7\xbf\xb3\xd8\xbf\x78\xf9\xf0\xc1\xbb\x9b\xb3\x83\xdb\xd6\x54\x7b\x5a\x8c\x31\xdd\x62\x99\xa8\x3c\x5c\xce\x18\x43\x37\xe3\xc2\x18\x83\xf7\xde\x7b\xcf\xfe\xc7\x7f\xfc\x87\x67\x49\x47\x5d\x1a\x5a\x96\x1c\x86\xe4\x18\x42\x6d\x99\xb1\xdf\x14\xa3\xcd\x47\x91\x1a\x5f\x69\xe4\x28\x75\x02\xa9\x13\x53\x1e\x9a\xac\x52\x67\x0f\x8d\x50\x35\x1e\x52\x39\xb8\xfc\x21\xe3\x1d\xe3\xa5\x75\xfc\xd8\x28\x5f\xe3\x11\xca\x4f\x02\x8b\xda\x48\x5d\xca\x43\xaa\xf3\x18\x60\x09\x01\xa8\x18\xef\x69\x1c\xb9\xc6\x3b\x25\x7c\xd8\x81\x9f\x4f\x97\xe2\xc0\x7d\x88\x39\x21\x4e\x9b\x0a\xa8\x25\xfa\x69\x82\x56\xa7\x92\x1e\x85\xe8\x3f\x74\x70\x00\x7a\x0d\xd7\xdf\x69\xdb\xad\x7e\xe6\x76\x81\xfa\x8c\x47\x28\x1d\xbf\xae\x83\x0c\x3d\xed\xc4\x72\x0f\x23\x17\xf9\x81\x01\x9c\xe2\xda\x1a\x37\xec\xe5\x76\x77\xaf\x35\xdc\x8f\x88\xcc\x83\x56\xa7\x1a\x78\x51\x27\x0f\xa6\xcc\x2b\x75\x02\x43\xb3\x65\x94\xde\x4a\x04\xd3\x80\x91\x69\x3a\x53\x4a\x90\x2a\x64\xc2\x18\x9f\x38\x71\x22\xfb\xda\xd7\xbe\xe6\xd1\x65\x06\x4c\x6e\xca\xcd\x60\x5a\xcb\x07\xf9\xca\xf1\xed\xd6\x47\x17\x7b\xf9\x33\x06\x68\xd5\x15\x82\x7d\xd9\x93\xee\x85\x2d\x16\x39\x4b\xb4\xca\xb5\xcb\x11\x94\x4c\xe8\xeb\xe8\xc4\x6f\xc4\x82\x38\x4d\x62\x0a\x34\x63\x98\xf6\x96\xaf\xf9\x93\xa9\x45\x67\x3c\x60\x29\xa6\x32\xc9\xa6\xe1\x87\x33\x83\x1b\xef\x1f\x3e\xb8\x70\x7f\xbe\x7f\x73\xd0\x70\xdb\x30\xf5\xa3\xfc\x51\x6c\xc6\x75\xce\x79\xd0\x52\x6e\xc4\x05\x60\xdf\x79\xe7\x1d\xfb\x8b\x5f\xfc\xc2\xbf\x41\xc4\x03\x57\x66\x3e\x62\x0c\x8d\x34\x63\x41\x1b\x65\x4a\x40\x45\x32\x70\x29\xa3\x5f\x29\x50\xa7\x17\xea\xc4\x12\x0f\xe9\xf9\xe3\x00\x80\xd4\x3c\x62\x23\x13\x4d\x5e\xcd\x20\x68\xed\x15\x03\x9d\x52\x9d\xa5\xce\x40\xf0\x38\x89\xbf\x94\x77\xaa\x43\xf6\x69\x43\x60\x24\xd5\x01\x6a\x80\x55\x0b\x8f\x33\x40\x8b\x81\xcc\x18\xf8\x8c\xc5\x4f\x2b\xd3\xe3\xf4\xdb\x69\xc3\xb4\xb3\x3d\x29\x69\x3e\x5c\x30\xb0\xa3\xcc\x0d\x77\xdb\xc3\xad\x5e\x6e\xb7\xc7\x91\xf5\xad\x02\x13\x40\x42\x98\x4d\x99\xb8\x97\x90\x8d\x7c\x5b\x2e\x50\x01\xe5\x42\x55\xc9\x8f\x82\x14\xbe\x84\x64\x00\x58\x83\xe1\x41\x73\xb4\xf5\x68\x66\xb8\x2d\x17\xf0\xb1\x42\x0a\xb8\x90\xec\xe6\x34\x33\x25\x3c\x48\x03\x48\xc9\x3e\x4d\xd8\xa8\x0f\xdb\x51\x3e\x4c\x48\xc9\x7b\xa2\x12\x9a\xcd\x26\xe6\xe7\xe7\x33\xb2\x9e\x37\x39\xdb\x62\x4d\x67\x75\xaf\x79\x7a\x6d\xa7\xf5\x7c\x6b\x98\x1d\xab\x6d\x81\x52\x50\x71\x6d\xc9\x08\xe4\xcd\x1e\x47\x17\x8e\x50\xec\xfe\xae\x07\x07\x86\x40\x28\x53\x53\xc3\x45\xf5\xd9\x1b\xce\x88\x9d\x44\x54\x1d\xea\xef\xcf\x10\x40\x39\x75\xb8\xd7\x1a\x6d\x5e\x59\xe9\x5e\xb8\xb5\xd4\xbf\x72\xd0\xb4\x5b\x1e\xb4\xa0\x3a\x64\x6e\xe2\x80\x39\x14\xdf\x20\x42\x51\xaf\xbd\x5e\x8f\x1e\xe5\x4f\xc1\x84\xe6\x7c\xb8\x83\x08\x8d\xc2\xa9\x11\xd2\x66\x2d\x78\xd0\x46\x61\xd2\x2c\x07\x04\x1a\x3e\x53\x21\xe9\x18\x97\x27\x36\x13\x21\x75\xa2\xd0\x6c\x88\x54\x6e\x7f\x1f\xeb\x47\x5c\x9e\x10\xc0\xd2\x64\xd2\x66\x71\xe8\x3d\x4d\x37\xcd\x68\x48\x93\x89\xd3\x51\x7a\x1a\x27\xf1\x0f\xc9\x4e\x69\xa6\x69\x07\x49\x7f\x34\xdd\xe0\x46\x31\xa6\x13\x12\xd0\xd3\x68\x79\xe0\xa0\x37\xc5\x06\xc6\xf4\x53\x03\xf4\x21\x7d\x08\xf1\x4f\xe9\x63\x29\xf4\x9e\x86\xd7\xab\xa6\x13\x34\x4e\x6a\x9f\x90\x4c\x9a\x3c\xdc\x19\x96\x7f\xd6\xc0\xee\xb4\x47\x3b\xbd\x7c\xb4\x09\x4c\xce\x67\x7b\x7f\xa0\xf9\x0d\x3e\xe8\x35\x18\x0f\x32\xcb\x68\x53\x6d\xd0\xad\x01\x10\x42\x5f\x9d\xa2\x6e\x6a\x3e\xa6\xcc\x83\x6e\x8b\x2c\x0b\xe2\x6c\xbf\x61\x77\xb7\x3b\xa3\x7b\x5b\x33\xc3\x5d\xd4\x07\xa3\x29\x21\xd6\xdf\xa4\xfe\x12\xb3\x2d\xf4\x57\x6b\x03\x40\x6f\xcb\x90\x1e\x49\x83\xb8\xff\xf1\x8f\x2c\x86\xc2\xd4\x60\xe8\xc4\x89\x13\xf8\xe4\x27\x3f\x09\xa0\xb6\x44\xe4\x37\xe4\x96\xe0\x65\x79\x3f\x5f\x79\x62\xbb\xf5\xb1\xc5\x6e\xfe\x74\xe6\xd0\x99\x54\x09\x16\xcc\x24\x58\xae\x5e\x37\x26\x27\x1b\x1a\xae\xbf\xfe\x70\x21\x49\xed\xaa\xe5\x9e\xc9\x14\x8c\x08\x7e\x96\xc5\x7f\x66\xc0\x10\xe8\x52\x66\x5d\x26\x18\x64\xb6\x7b\x7b\xb1\xb7\x7e\xf5\x50\x77\x7d\xa7\x3d\xbc\xef\x97\x88\x50\x01\x96\x12\xb4\x18\x63\xfa\xfe\x80\x39\x10\x25\xb8\x70\xe1\x82\x7d\xff\xfd\xf7\xa9\x24\xdc\xc8\xf0\x5f\xee\xb4\x34\x03\xc1\x83\x34\x4a\x8f\x39\x3e\x0e\x98\xb4\x74\x9a\x13\x99\x26\x9f\xd0\x2c\x87\xe4\x58\x2c\xa3\x95\xf8\x4a\x21\x34\xa3\xc1\xeb\x57\x32\xf8\x12\x6f\xde\x06\x29\x40\x27\x16\x2f\xe5\x43\xf9\xd3\xe7\x92\xd3\x97\xea\x53\x02\x91\x19\xa3\x8b\xb5\x19\x07\x29\xda\x2f\xcf\x4f\x6a\x63\xce\x27\xe6\xec\x42\x4e\x56\xca\x27\x46\x2b\x39\x68\x2d\xc4\xea\x85\xeb\x55\x4c\x7e\xde\x86\xd3\xea\x8b\xc4\x3f\x16\x24\x70\xa9\xd9\x8a\x69\x7c\x12\x6f\xcf\x98\xfe\x13\xe0\xe2\x86\xdb\x9d\xe1\xee\x4e\x67\x74\x67\x64\xd0\xa7\xf6\xbb\xdc\x83\x62\xd8\x6a\x3e\x79\x5e\xd2\x92\x3d\x93\xf4\x40\x3a\x03\xff\x99\x16\x7f\x56\x8b\xab\xd1\x73\x3e\x7c\x9f\x64\x6d\xff\x23\x79\x66\x0d\x86\xdd\x96\xdd\x7a\x34\x33\xbc\xd7\xcb\x5d\x17\x10\x37\xe2\x5a\x00\xda\xc9\xb9\xb5\x7a\x60\xf1\xdc\x26\xd6\xf8\x45\xe2\x63\xed\x26\xe9\x00\xe7\x91\xea\x17\x3e\xd4\x1e\x97\x94\xf0\x3b\xe5\xbf\xb8\xb8\x88\xa3\x47\x8f\x96\xb3\x2d\xf4\x63\x8a\x28\x40\x4b\xc3\xa2\x73\x64\xb7\x75\xfa\xc8\x6e\xeb\xd9\xf6\xd0\x1c\x83\x33\x59\xfd\x84\x43\x12\x3c\x0c\xa6\x4b\x33\xc5\xbe\x92\xc9\x1d\x56\xc5\x73\xd0\xe3\xa0\x4b\xa8\x81\x3a\xfa\x71\xd5\xf1\xd1\x7e\x33\x6e\xb1\xaf\xc6\x50\xf5\x27\x13\x35\x13\x6f\x39\x95\xc8\xbc\xea\x36\xfe\x6a\x6b\x66\x78\xe7\x83\xc3\xdd\x77\x1f\xcc\x0d\x6e\x0e\x1a\x6e\xd7\xa1\x3c\xa7\x85\x7f\x38\x51\x3a\x64\x0e\x17\x2e\x5c\xb0\x6f\xbf\xfd\x36\x1e\x3e\x7c\x48\xb3\x0c\x29\x95\x0f\xa1\x11\x62\x4a\x5b\xa7\x8e\xfe\x52\xee\x39\xca\xe7\x32\xf1\x78\x49\x76\xcd\x21\xf1\x8e\x1a\x1b\x79\x84\x78\xf0\x78\xce\x37\x66\xf8\x35\x03\x23\x19\xeb\x14\xb9\x38\x6f\x2d\xcf\xd0\xe8\x88\x1b\x2c\x0e\x2a\x34\x9e\xd2\x7d\x4a\x7d\x4a\x86\x36\xd5\xe1\x4b\xb2\x49\xb2\x84\x46\xf8\x52\xfd\x4a\x75\x10\x93\x8b\x83\x26\x49\x16\x29\xc4\xfa\x81\x24\x27\x95\x49\xd3\x8f\x14\x7d\x48\xed\xd7\xa1\x7a\x8b\xd9\x11\x1a\x17\x02\xb9\x52\x1c\x1f\x5c\x69\xc1\x3b\xf3\x02\xb8\x60\xb8\xd7\x1a\xed\xde\x9b\xef\x5f\xeb\xe5\x76\xcb\x15\xcf\x6b\x66\xbf\x66\xa2\xab\x99\x77\x69\x29\xa7\x5c\xce\x31\xd5\x7e\x16\x0a\x7e\x4a\x4f\xc1\x66\x61\x68\xe0\x2f\x8e\xd0\x6b\x67\xc6\xf9\x0f\x1b\xae\xbb\xdd\x1e\xde\xdb\x98\x1b\xdc\x75\x06\x16\xc2\x21\xa2\x15\x3f\xc3\xfb\x0c\x84\x7b\xed\x59\xea\x80\x42\xa3\x97\x9e\x4b\x6d\x14\xb2\xd1\x6a\xfa\x0f\x0b\x2c\x92\x94\xe5\x77\x11\x8e\x1d\x3b\x96\x9d\x3a\x75\x8a\x02\x96\x8c\xbe\x4d\x84\x72\xb6\xa5\xb9\x7c\x6c\xa7\xf5\xdc\x62\x37\x7f\x9a\x7e\x87\xa2\x54\x28\x47\x94\x4a\x9e\x28\xa9\x34\xaf\x08\xe3\xd9\x10\x19\xbd\xba\x1a\xa3\xea\x4c\xdc\x1a\x0a\x66\x9b\x59\x3c\x0d\x5f\x57\x05\xa5\x2a\x0f\x13\xa0\x7b\x6d\x1c\xba\xb9\xdd\xbd\xb1\xdc\xbb\x70\x73\xa9\x77\xad\x9b\xdb\x6d\x18\xec\x16\x1f\x4c\x9c\x98\x71\x29\x0e\x99\xab\x29\xd4\xc5\x8b\x17\xed\x5b\x6f\xbd\x85\xcd\xcd\x4d\xcd\xe9\xa5\xea\x84\x36\x92\xe3\x41\x1b\xd9\xd1\x38\x69\xd4\x1a\x1a\xa5\x85\x46\xde\x94\x56\x72\x10\x52\x67\xa4\x65\x0f\x39\x29\x89\x2f\x0d\xda\xac\x89\xc4\x47\x92\x29\x54\x57\x3c\x0f\x7f\x1d\x1a\x4d\x6b\xce\x24\xe4\x08\x62\x74\x52\xbb\xa7\x38\x26\xfe\x9c\xf3\x08\x01\x1f\x0e\x0c\x62\x46\x92\xca\x10\x92\x2f\x05\x34\xd1\x10\x02\x89\x21\x27\xcd\xeb\x4c\xd3\xb3\x98\x61\x97\x80\x5b\x6c\x14\x2b\xc5\xf3\x91\xb5\x24\xa3\x94\x67\xc8\x29\xc5\x6c\xbd\x26\x6f\x0c\xb0\xf0\xbe\x21\xc9\x1b\x73\xae\x16\x18\x2f\xa9\xf8\x4f\x9b\xc0\x60\x38\x68\xb8\xee\xed\xc5\xfe\xf5\xed\xce\xf0\x86\x35\x6e\xc8\x77\xb6\xd0\x6d\x01\x7e\xb8\x4a\x5d\x03\x07\x1e\x74\x36\xbd\x02\x34\xa6\xb6\x31\x57\x02\x2c\x8e\x8c\xaa\xeb\xc0\xc8\xd5\xf8\x38\xe3\x6c\xb7\x39\xda\x7a\x30\x37\xb8\xb1\x39\x3b\xd8\x84\x0c\x5a\xca\xb2\x02\xc0\xc6\xc6\x06\x2e\x5f\xbe\xec\xeb\x2c\x14\xa4\x3e\x91\x02\x18\xa5\xe7\xd3\x00\x60\x6e\x8f\x25\xfe\x13\x83\x8f\x69\x9c\x95\xa6\xd4\xb1\x91\x93\x16\x27\x29\xa9\x3a\x4a\x38\x7e\xfc\x38\xce\x9e\x3d\xeb\x0f\x9a\x03\xf9\x3e\x83\xff\xa8\x62\xab\xe1\x4c\xeb\xd8\x4e\xeb\xec\x91\xdd\xe6\xb3\xed\xa1\x59\x83\x43\x36\x31\x93\x61\xaa\xad\x22\xa6\xd2\x8a\xe2\x21\xaa\x89\x13\xa2\xa1\x86\x00\x88\xf2\xd4\xdb\x92\x5f\xc1\xa8\x38\xff\xb9\xb6\xf6\xc9\x37\x74\xb1\xfd\xbe\xb4\x33\x94\xc9\xfc\xe6\xdb\x62\x4e\xb1\x9a\xac\x71\x18\x66\xae\xff\x60\x6e\x78\xed\x83\x95\x83\x0b\x3b\xed\xe1\x03\x6b\x9c\xdf\x80\x4b\x4f\xc6\xf5\x33\x2e\xe5\x9e\x16\xba\x06\x7a\xe1\xc2\x05\x3c\x7c\xf8\x30\x36\x82\xd4\x40\x00\x37\x9c\xb1\xd1\x91\x34\xba\x94\x46\x4a\x12\x9f\xd4\x91\x01\x8f\x0f\xe9\xb2\xe6\xb0\x24\xc3\x17\xe3\x45\x79\x4a\x46\x59\x1b\x61\x70\x39\xe8\x6f\x0a\xd0\x9f\x66\x30\x30\xed\x68\x4b\x1a\xfd\xa4\xb4\x0d\x6d\xc3\x94\x3a\x93\xc0\xa3\x06\x08\x38\xbd\x46\x23\xa5\xe1\x32\xd2\x67\xdc\x79\x4b\x71\x29\xfc\x63\x80\x2b\x05\x50\x73\x90\xc5\x75\x2a\xc6\x83\xe7\x89\xc0\x73\xe9\x59\x0c\x38\xc6\xc2\xe3\xb6\xb9\x24\x8b\x44\x2f\xa5\xd1\xda\x0f\xef\xbd\xf7\x1e\x06\x83\x01\xb7\x67\xfe\x03\xb2\xd6\xbf\x5d\x69\x0d\x86\x1b\xf3\x83\xcd\xfb\xf3\x83\xcb\xbd\xdc\xed\x3a\xc0\x96\xcb\x3c\xa0\x13\xf2\x64\x3d\x7f\x7c\x51\x1b\xa6\xfa\xe0\xcf\xd5\xaa\x68\x08\xec\xf1\x4b\x48\x35\x1f\x50\x0c\x61\xc9\x06\x98\xca\x15\xd5\x0f\x37\x2d\xec\x7f\xf7\x51\x67\x78\xe7\xde\xfc\xe0\xda\x7e\xd3\xee\xa3\x0e\x5c\xca\xb7\x45\xfd\xe7\x0a\x00\xe0\xde\xbd\x7b\x58\x5f\x5f\x97\xc0\x1f\x0d\x7c\x20\x18\xd2\x87\x14\x90\x48\xf9\xd2\x78\x09\x2c\x87\xd2\xf3\xb4\xe5\x73\x49\xc9\x43\xc8\x28\x14\xb4\xce\xa4\x39\xc9\x98\x73\x14\x3b\xa0\xff\x26\x11\xf9\x36\x91\x3f\x29\xb7\x35\xdf\x6b\xf8\xd9\x96\x73\x99\x33\xf3\x86\x2c\xdf\x90\x55\x9c\xb1\x4a\x4d\x4c\xa0\x54\x53\x31\xa5\xb2\x4a\xeb\x91\x8e\x2c\x15\x91\x2f\x85\xfa\xe5\xa1\x32\x50\x10\xe4\xe8\x7a\x23\x49\x23\xac\x41\xfa\x83\x84\xc6\x67\x0f\xf9\xe3\xa0\x1d\xac\x81\xdd\x6b\xd9\xcd\xeb\x87\xba\xef\xde\x5d\x18\xdc\xb4\xe3\x99\x16\xff\x16\x11\x3d\x19\x77\x48\x8f\xf3\x47\xb5\x21\x17\xb7\x6e\xdd\xb2\xbd\x5e\xcf\x67\xa5\x8d\x04\x25\xc4\x1d\x42\xbf\x9a\xc3\xe1\x8a\x29\x8d\x8e\x32\x4c\x76\x92\x69\xc1\x74\x8a\x53\xd5\x9e\x71\x1a\x09\x48\x48\x0e\x24\xc4\x53\xd2\xf3\xd8\xe8\x9c\x3a\xab\x58\xfd\x6b\x3c\x68\xfe\x21\x99\x42\x81\x1b\x95\x50\xdb\x68\x20\x45\x03\x19\xd2\xaf\x74\x2d\x81\x5b\x29\x8f\x14\x3d\xe1\xe0\x98\xf3\xe0\xb4\x21\x3b\xa8\x0d\xb4\x1e\x07\x60\xc7\xe8\x42\xf5\x27\xc9\x24\x81\xb2\x10\x88\x4c\xe9\xab\xb1\xb4\x52\x1f\xd0\xea\x4c\x92\x67\x5a\x9d\xd6\x06\x1b\x13\xe9\x5f\x7b\xed\x35\x6f\xe7\xb8\xef\xf0\x8e\x7e\x08\x60\xe8\xe0\xfa\x07\x4d\xbb\x7b\x6b\xa9\x77\x79\xa7\x3d\xba\x35\xca\x5c\xb5\xd7\x85\x7d\x60\x71\x3c\xd8\xa5\x9b\x04\x00\xe3\x28\xb0\xa8\x76\x3c\xd6\x52\x15\xa3\x60\xff\x76\x68\x7d\x27\x0d\x85\x29\x14\xb6\x8c\xaf\xd9\x5e\x1a\xbb\xdf\xb4\x9b\xf7\xe6\x07\x57\xee\xcd\xf7\x6f\x3b\x38\xfa\xd9\x96\xda\xac\x8b\xb7\xf7\x42\xfd\x69\x7a\xa5\xd9\xa8\x50\x7b\x6a\x21\xd4\xe7\xc0\x9e\x49\x7e\x85\xf3\x17\xed\x47\x48\x79\x24\x61\xb4\x7b\x2d\x2e\xc6\x37\x94\xae\xa4\x9f\x9f\x9f\xcf\xe6\xe6\xe6\xca\x07\x7e\xb6\xc5\xef\x6d\x71\xce\xb5\x0c\x4c\xeb\xc4\xa3\xf6\xc9\xd5\xdd\xe6\xb3\xed\x91\x59\xcb\x50\x7c\x2d\xd3\xef\x7a\xaa\xcd\x80\xf8\x93\x73\x29\xaa\x99\x9c\xfd\x28\xd3\x51\x95\x32\x95\xfa\x39\x63\xca\x4d\xb5\x60\x87\xff\xd0\xe9\xc4\xf1\x64\xcc\xe4\x84\x61\x6d\xf6\xa6\x14\xa5\x42\xda\xfe\xb0\x24\x00\xe8\x37\xec\xfe\xdd\x85\xfe\xe5\xcb\x2b\x07\x17\x7b\x4d\xeb\x5f\x7d\x2e\x97\x86\xfc\x21\x73\xa8\x8e\xf3\xa7\x40\xd0\x6e\x6c\x6c\xd8\x1f\xff\xf8\xc7\x7e\xb6\x85\x03\x06\xee\x9c\x25\xc7\x40\x95\x3f\x15\x90\x80\xc4\x49\xce\x4f\x52\xde\x18\xa2\xa7\x41\x03\x13\x9c\x46\x4b\xa7\x39\x9f\x94\x11\x21\xcd\x33\x46\x1f\x32\xec\x52\xfd\x71\x1a\xed\x59\xa8\x4e\x35\xc7\x92\x02\x6c\x78\x79\x24\x19\xf9\x28\x28\x96\x37\x6f\x6b\x9e\x3e\xa5\xce\x25\xa0\x9b\x12\x42\x40\x47\x6a\x43\x4d\x27\x78\x3d\xa7\xb4\x2b\x4d\x4f\x69\x53\xc0\x19\x97\x2b\x95\x86\xb7\x0f\x95\xcb\x3f\x0f\x81\x00\x29\xad\x94\x77\x48\x6f\x28\x0d\x97\x33\xe4\x44\x35\x79\xb5\x41\x40\x30\xd0\xa5\x72\x62\x13\xfd\xb9\x56\x7d\x00\xfd\x5b\x4b\xbd\x9b\x77\x17\xfb\xeb\xdd\xa6\xdd\x72\x66\x3c\xeb\x52\x1e\xfc\xc6\x3e\x8e\xe8\x2d\x37\x80\x9a\xb3\xa0\xcb\x42\xe3\x74\x28\x3f\x11\x03\x9a\xa6\x96\xa2\xee\x27\x0c\xc9\x8f\x2e\x04\x38\x38\x0c\x32\xb7\xbf\x39\x37\xb8\x76\x6b\xa9\x77\x79\xbb\x33\xda\x2a\x5e\xba\xe0\x67\x73\x85\xda\x4d\x6a\xf3\x98\xbd\x95\x74\x5e\xa3\x8d\xe9\x42\x4c\x26\xcd\x1e\x48\xfe\x2a\x59\x09\x78\xa7\x8b\x39\x8b\xd4\x10\x1b\xe5\x00\x40\xf6\xc9\x4f\x7e\x12\xcf\x3e\xfb\x6c\x89\xba\xd9\x57\xa0\x5b\xc6\x98\x56\xd3\xa2\x73\x6c\xa7\xf5\xd1\x85\x5e\x7e\x36\xb3\x66\x96\x6f\xc6\xf5\xdf\x25\xaa\x66\x40\xc6\xcb\x31\xe5\x57\x99\xfd\xaf\xa7\xf7\xaa\x63\x38\x12\xae\x94\x90\x6e\x41\xf1\xcf\xca\x2b\xb2\x99\xa6\xc2\x48\xd5\xee\x2b\x9f\x96\x2f\x23\xd5\x22\x0b\x61\x87\x99\xeb\x3f\x9a\x19\xde\xba\xba\xd2\xbd\x70\x6f\xbe\x7f\x17\xd5\x92\xd0\x3e\xb9\xf6\x1d\x71\xe8\x95\x99\x22\xef\x57\x5e\x79\x05\xbb\xbb\xbb\x9a\xd1\xd7\xda\x33\xe4\x5c\x78\x88\x8d\xc0\x42\x00\x47\x72\x6e\x31\x70\xcc\x9d\x7e\xc8\x19\xa7\x8c\xf6\x68\xfe\xd3\x3a\x95\xe8\x08\x41\xc9\x9b\x3b\x3f\xcd\xb9\x6b\xb2\xc7\x9c\x2e\x97\x21\x95\x9f\x94\x8e\xd3\x72\xba\x10\xd8\xd0\x64\xe5\x74\x12\x88\x0d\x81\x3b\x2d\xdf\x10\x70\x88\x39\x6d\x1e\x27\x19\xfb\x58\x7c\xc8\xb0\xf3\x32\x48\x60\x8f\xa7\x93\xda\x85\xff\x69\xf9\xd1\x10\x03\xac\xa9\xf1\xa1\xb6\x94\xea\x9d\xcb\x1d\x73\xa2\x60\x74\x92\x0e\xc4\x64\x05\x50\xcd\x92\x10\x00\x33\x64\x7f\xfd\xed\xce\x68\xeb\xf2\xe1\x83\xb7\xef\xcf\x0f\xae\xf4\x1a\x6e\xbf\xe6\x39\xf8\x87\x73\x31\x79\x4b\xed\x7e\xe9\x3f\x2a\xf7\x41\x9e\x54\xfb\x5d\x78\xfa\xf2\x96\x9d\x94\xeb\x00\x8c\x0c\x86\xdb\x9d\xe1\x9d\xeb\xcb\xdd\x8b\x77\x17\xfa\x37\x61\x82\x2f\x5f\x94\x7a\xd5\xef\xf7\x6d\xbf\xdf\x07\xa6\xd3\x7d\x1a\x38\x58\x91\xf4\x8f\xf3\x0a\x81\x4b\xa9\xfd\x63\xfa\x4f\xd3\x96\xbf\x21\x63\x1e\x33\x90\xf4\x3e\x64\xb8\x42\x41\xe3\x57\xe6\x29\x1c\x63\xec\xf7\xb6\xe4\x7e\x53\xae\x73\x2e\x3f\xb1\xd5\x39\x76\x78\xaf\x79\xbe\x3d\x34\xab\xc6\x99\x9c\x6e\xc6\xad\xbd\x83\x06\xd4\xb7\x82\x7b\x44\x4c\x7f\xd9\xb2\x4e\xf9\x19\x00\x0a\x42\xc8\x37\x24\xca\x6f\x2b\x96\xc9\xa8\xcc\x94\x57\xb5\x69\xc6\x95\x8f\xf8\x3a\x69\xb1\xac\x54\x7c\xf4\xcb\x01\xf6\xa0\x69\xb7\x6e\x2d\xf5\xd6\xaf\x1e\x3a\x78\x1f\xa8\x0e\x99\x2b\x8e\xf4\xef\x16\x9b\x73\xe9\x79\x2d\x16\x18\x6f\xd0\x72\xce\xd9\xd1\x68\x24\xd5\x71\xa8\x7d\xb9\xf3\xd3\x0c\xf9\x04\x12\x86\xac\x84\xb1\xe7\x5c\x06\xc9\xb8\x69\x32\x69\x46\xdd\xb2\x6b\x2d\x0f\x0d\x94\x73\xb9\xb8\x03\x91\x1c\x15\xaf\x8f\x54\x87\xce\xe9\x35\x07\x19\xaa\x0f\x29\xad\x54\x87\x5c\x26\xe9\x5a\x6b\xd3\x54\x60\x29\xc9\x20\x95\x8b\x1b\x3e\x4d\x76\x09\x50\x4a\xc0\x06\xa8\xe7\x25\xc9\x26\xe9\x83\x24\x4f\xcc\xe6\xc5\xc0\x4d\xc8\x09\xf3\x34\x3c\x48\xf5\x22\x0d\x22\x34\x59\x34\xbd\x93\x40\x05\x4f\x47\xcb\x20\xd5\x37\x4f\xc7\x83\x26\x0b\x97\x99\xcb\x13\x8a\x97\xfa\xa9\x94\xae\x8a\xb4\xb6\x04\x2b\xec\x05\x05\xba\xbc\xd2\x47\x31\x63\x7d\xed\x50\xf7\xfa\xe5\x95\xee\x7f\x6f\xcd\x0c\x6e\x0c\x33\xd7\xaf\x5e\xb3\xc0\x78\x1c\xea\xf7\x56\x16\xfc\xe9\x07\x7a\xab\x59\x96\xda\x3b\xa3\xec\xba\xbe\xcc\x54\x9b\xb4\x29\x5d\x04\xdd\x8c\x5b\xcd\xf6\x1f\xb4\xec\xe6\xb5\x43\xbd\x77\xaf\x2d\xf7\x2e\xed\xb7\xec\x36\x8a\x83\x45\x49\x19\x86\x45\xb9\xec\x98\xcd\xf8\xf7\xad\xb7\xde\xc2\xeb\xaf\xbf\x1e\xf2\xd9\x20\xd7\x9a\xee\x4b\xfd\xc6\x3f\x8b\xd9\x17\x4d\x7f\xa4\x6b\x4d\x17\xf9\x73\x2b\x09\xcc\x83\xd6\xd1\x32\xf6\x37\x4d\xd0\x3a\xae\xc8\xe7\x6b\x5f\xfb\x1a\xce\x9f\x3f\x5f\x7e\xf5\x92\x1e\x3a\xe7\x97\x8a\x8c\x31\xad\x33\x0f\x3b\xe7\x97\xba\xf9\x33\x0d\x6b\xe6\x4b\xcc\x40\x37\xe0\x82\x6c\xc8\x45\x7d\x2a\x8e\x06\x3a\x4d\x48\xb5\xab\xb6\xac\x63\x2a\x45\x96\xc8\x6b\xbf\x5e\xc3\xd9\x9b\x45\xa6\xfe\x5f\x2d\x94\x1b\x7e\x8d\x41\x3f\x77\xfb\xf7\x16\xfa\x57\xde\x3f\xdc\x7d\x77\xaf\x6d\xb7\xc0\x0e\x99\xa3\xa0\x05\x6c\x89\xa8\xf8\x80\x22\xfe\xea\xaf\xfe\xca\xf6\xfb\xfd\x10\x48\xe4\x41\x72\xc4\xa1\x74\x9a\x23\xd4\xf8\x49\x06\x50\x73\xa0\x34\x2e\x04\x3c\xa4\xfc\xac\x40\x1b\x03\x33\xa1\xf4\x60\xf1\x5c\x46\x2e\x6b\xa8\xce\xa5\xb2\x49\x32\x48\xf2\xd0\x38\xa9\x1e\x52\xdb\x5a\x73\xce\x52\xfe\x3c\xdf\x94\xb2\xf0\x38\xe9\x7a\x9a\x7c\xa5\x76\xd7\x74\x40\xe3\x1b\xca\x5f\x32\xac\x34\x68\xb6\x2e\x56\xff\x52\xbc\x56\xce\x94\xbc\xa5\xfe\xc8\xcb\x14\x02\xbc\x92\x8c\xd2\xbd\x26\x6f\x08\xb4\x6a\x3c\x53\x64\xe0\xe9\xb4\x32\x48\xa1\xf6\xfc\xef\xfe\xee\xef\xec\xfd\xfb\xf7\x4b\x7e\xcc\x2e\x0e\x51\x7f\x03\xb3\xeb\x0c\xba\xeb\x47\xf6\x2f\x7d\xb0\xd2\xfd\xcd\x76\x67\x78\xc7\x1a\x0c\xc9\x38\xb3\x16\x6a\xdb\x00\x48\x7c\xed\x45\x52\x3a\x65\x22\x04\x72\x56\x5d\xe5\x8b\x6a\x19\x8d\xaf\x0f\x9a\x76\xeb\xfa\x72\xf7\xed\x4b\x47\xf6\xdf\xdd\x9c\x1b\xdc\x43\x61\xfb\x0b\xbb\x4f\x6d\x3f\x2d\x23\x0f\x5a\xdb\x4c\xd3\x0f\x52\xfb\x98\x66\x0b\xb4\xfe\x9a\xe2\x2f\xf8\x35\xf2\x00\x83\x90\xf2\x84\x0a\x11\x72\x76\xbc\x22\x34\xf0\x62\xd9\x73\x0a\x92\xfc\xab\xcf\xe3\xbd\x2d\xc6\xb4\x8e\x3d\x6a\xad\xae\xee\x36\x3f\xde\x1e\x66\x6b\x06\x28\x3f\xa6\xe8\xb7\xc1\xd6\xbf\xe2\x5c\xdf\xad\xed\x81\x6d\xa5\x33\x14\x2b\xd7\x43\x4d\x31\xd5\xe2\x0b\x6c\x24\x18\x1e\x48\xe2\x7f\x47\xc6\x0d\x1f\x75\x86\xf7\xae\x1d\xea\x5d\xb8\xb3\xd8\xbf\x89\x62\x23\x2e\xd8\x99\x2d\xce\xb9\x72\x79\xa8\xb8\xb6\x00\xb0\xbb\xbb\x8b\xef\x7f\xff\xfb\x3c\x1b\xda\x3e\x9a\x13\x04\x89\xd7\x0c\x29\x84\xf8\x50\xfa\x10\x1f\x9f\x36\xc4\x93\xff\x6a\x3a\x16\x72\xd2\xb1\xf2\x6a\x69\xb8\xce\x6a\xce\x42\x4a\xc3\x43\x4a\x5d\x6b\x75\x16\x6a\x3b\x49\x6e\x69\x74\x1a\x03\xa1\xb1\x3e\x2e\xf1\x4e\x19\x05\xa7\xd6\x39\xa7\x91\xea\xe9\x71\xd2\x49\x34\x92\x7c\x5a\x1e\x29\x72\xa7\x84\xc7\xe5\x9d\x62\xec\x35\xdd\x93\x6c\x6e\x0c\x58\x53\x9a\x10\x6f\x29\xad\xa4\x9f\x92\xae\x87\x42\x4c\x36\x2d\x9f\x89\x50\x0c\x7a\x2d\xc6\x0e\x3e\x43\x35\xeb\x52\xee\x73\x01\xb0\xdf\xcd\xed\xf6\xfa\x91\x83\x77\x72\x6b\x5a\x4f\x3d\x30\x58\xea\x36\x8e\x37\x46\x26\xaf\x1d\xb0\x42\x97\x7f\x1c\xf1\x28\xd4\xa5\x14\xa7\x9c\xd7\xde\x0a\x62\x69\xfd\xb6\x04\xea\x76\xc6\x83\x66\x57\x0e\x92\xbb\xcd\xd1\xf6\xf5\xe5\xde\xdb\xbf\x3d\xba\xf7\xdf\x1b\x73\x83\x9b\x8e\x6c\x0d\x20\x72\xfb\x36\x29\x67\xda\x85\xcd\xb9\xa9\xf6\x3b\xf5\xb9\x64\x87\x1f\xd7\x47\x48\x21\x36\x23\x83\x06\xea\x98\x30\x23\xf7\xfe\x5a\xfa\x0b\xd1\x9b\x00\xbd\x44\xeb\x0b\x47\xe9\x33\x00\xee\x2b\x5f\xf9\x8a\x39\x7d\xfa\x34\x1a\x8d\x86\x07\xa5\xb9\x31\xa6\x81\x31\x68\x69\x1b\x63\xda\x00\xe6\x9e\xbf\x3d\xf7\xc2\xc9\xed\xce\x57\x3a\xc3\xec\x09\x83\xf1\x32\x51\xf5\x01\x45\x53\x3f\x50\xce\xd5\x95\x8c\x2e\x11\x8d\x01\x0f\xdb\xb4\x12\x45\x28\x9e\xd6\xc5\x91\x4d\x84\x17\xc5\x39\x0e\xc0\x41\xcb\x6e\x5d\x5f\xee\x5e\x58\x5f\xdd\xff\xcd\x5e\xcb\x6e\xc2\x60\xc7\x39\xb7\x6b\x8c\xd9\x03\x70\x80\x0a\x79\x0f\x8c\x31\x03\x00\x23\x63\xcc\x08\x80\xdd\xdc\xdc\xb4\xff\xfc\xcf\xff\x8c\xfd\xfd\x7d\xaf\x58\xf5\xf5\x2f\x79\x2c\x40\x07\x11\xbc\x3d\x69\xf0\xcf\x32\x90\x7d\x65\xe4\x9a\xe6\xc9\x07\x28\x19\xbb\xe6\x6b\x69\x34\x8e\xa6\xf3\xcf\x2c\x7b\x66\x05\x19\x33\x16\xa7\xc9\x01\xd4\x65\xb2\x2c\x3d\xaf\x3b\x9e\xde\x0a\xcf\xb8\x01\x97\x64\xe3\xe5\xe1\x75\x6d\x14\x5e\x12\x70\xa2\xed\x25\xd5\x15\xaf\x6b\x4d\x1e\xb0\x34\x5c\x17\x24\xd9\x78\xfd\xd2\x74\xbc\xde\x40\x68\x79\xbe\x21\x1a\xc9\xf0\xc5\xd2\xf1\x6b\x8d\xb7\xa4\xdb\x5a\x48\xe1\xed\x03\x97\x31\x54\x1f\x21\xde\xa1\x34\x52\xd0\xca\xc3\x75\x43\xa2\x95\xf2\x92\xf4\x5e\x0a\x52\x79\x43\xcf\x39\x0d\xb5\x27\xa1\x3c\x78\x9f\xe0\x69\x6a\xe9\x6f\xde\xbc\x69\x0e\x1f\x3e\xec\x16\x16\x16\x68\x19\x32\x00\xa6\xd8\x72\x60\x48\x5c\x03\x06\x59\x2f\xb7\xc3\xbd\x96\xed\x3a\x83\x51\x67\xd8\xe8\xb4\x47\xd9\x5c\xc3\x9a\x86\x9f\xbd\x2f\x3b\x50\xe1\x2b\xc6\x7f\xe3\x5c\x9d\x19\xcf\xa4\x18\xe3\x5f\xbc\x20\x83\x64\xf2\xe3\x5d\x85\xbf\x06\xc8\xb7\xf1\x0a\x74\xb3\xdf\x1c\x6d\x5d\x3b\xd4\x7b\xeb\xdd\x63\x7b\x6f\xde\x5b\xe8\x5f\x2d\xbe\x45\xb7\x83\xf1\xe0\x75\x0f\xe3\x41\xeb\x01\x80\x1e\x80\x01\xc6\xc0\x65\x54\x94\xdf\xbd\xf9\xe6\x9b\xf6\x9d\x77\xde\xc1\x70\x38\x7c\x1c\xfd\x8e\x05\xde\x2f\x43\x69\x63\xba\x11\x93\x45\xd4\xa5\x9c\xdc\x48\x08\x27\x34\x3a\xcb\xd8\x2f\xa5\x0b\x8d\x7c\x52\x50\xb2\x05\x80\x85\x85\x05\xb4\x5a\x2d\x3a\xdb\x02\xe7\x5c\xf9\x36\x11\x1c\x5a\x4b\xdd\x7c\xfe\xe8\x4e\xeb\xe3\x9d\x41\x76\x3c\x73\x68\x95\xcd\x4f\x40\x72\x4d\x69\xa4\x69\x3f\x3e\x33\x02\x76\xef\x00\x7e\x9c\x6e\xf9\x21\xc4\x32\x9f\xc9\x7d\xe3\x25\x9d\xc1\x04\xae\xa9\x09\x20\xc4\x0f\x33\xdb\x7f\x38\x3b\xb8\x75\x7b\xa9\xbf\xbe\x35\x33\x7c\x00\x33\xf9\x0d\x22\xb6\x19\xd7\x92\x3f\x0c\x87\x43\x6c\x6f\x6f\x6b\x33\x05\x3c\x48\xa3\x6c\x69\x54\x14\x1a\xa5\xc5\x66\x6b\xb4\x91\x17\x4f\x1b\x1a\x2d\x48\xcf\x52\x46\x8e\x3e\x4c\x33\xeb\xa2\x8d\x0a\xb5\x3a\x8d\x8e\x12\x02\x79\xa4\xca\xcf\x9f\xa5\x8c\x62\x69\x1e\x5a\x5e\xb1\xd1\x93\x94\x4f\x0a\x9d\x0f\x5c\xbf\xb8\xed\xd0\xec\x03\xbf\xd7\x80\x8c\x06\xf0\x24\x59\x68\x1c\x9f\x35\x9a\x36\x5f\xce\x27\x04\x34\x79\xd9\x43\x6d\x2c\xe9\x4f\x4c\x86\x50\xd0\xea\x6c\x9a\x59\xa4\x90\x2c\xda\x6c\x88\x7f\xc6\xeb\x31\x66\x8b\x24\x7a\x40\xae\x43\x55\x8e\x9d\x9d\x1d\x3b\x18\x0c\x32\x72\xae\x89\x45\x35\xeb\xd2\x27\xbe\xa4\xeb\x9c\xcb\x8d\x31\xb9\xcd\x90\x6d\xcd\x0e\xee\xae\x1f\x71\xd9\x30\x73\xf6\xa9\x07\x33\xc3\xc3\x7b\xcd\xd3\xad\x61\xd6\x29\x67\x4c\x24\x5b\x5e\x80\x16\x67\xa8\x3b\x31\xfe\x51\x9d\x94\x0c\x01\xe8\x19\x61\x28\x4e\xc7\xdd\xe9\x8c\xee\x5d\x5b\xee\xbe\xfd\xde\xda\xfe\xdb\xf7\xe7\xfb\x57\x7b\xb9\xdb\x76\x70\xbb\x06\xe5\x41\xa3\xfd\x42\xe6\x72\xa6\x1d\xa8\x1d\xb0\x87\xfd\xfd\x7d\xff\x1d\xba\x98\x8d\xd2\xea\x7d\xa2\x3e\x1f\x33\xa4\xe4\x07\x16\x4f\xd3\x8a\x74\x39\x21\x80\x40\x10\x32\x3e\x21\x05\x0c\x19\xb0\x14\xe1\xf1\xf2\xcb\x2f\x67\x4b\x4b\x4b\x60\xb4\x74\x5f\x4b\x9e\x59\xb4\x4e\x6d\xb5\x4f\x2f\x77\xf3\x67\x73\x6b\x16\x51\xbc\x02\x5d\x03\x09\xb5\xd9\x96\xea\x7a\x12\xe9\xd6\x87\x94\x35\x72\xaa\x5c\x9e\x96\xde\x2a\xa0\xc4\x95\x74\x45\x3e\x34\xff\x09\x8e\x55\xb0\x70\xd8\x6f\xd9\xcd\x3b\x0b\xfd\x2b\x77\x16\xfa\xd7\x47\x0d\xec\x16\xd3\x83\x74\xa9\xa8\xeb\xbf\xfa\x4c\x14\xd8\x3a\xe7\xf0\xe0\xc1\x03\xfb\xbf\xff\xf7\xff\x9e\x64\x5b\x0f\x29\xc6\x47\xd3\x87\x10\x08\x89\x85\x90\x83\xd7\x8c\x16\x37\x5e\xd3\x3c\xe3\xf9\x4e\xa3\xc7\xbc\x5c\x5a\x9d\x85\x3a\xe1\x34\xfc\xa5\x7c\x52\xea\x28\x55\x9e\x10\xff\x54\x67\xe2\xf3\x91\x40\x52\xaa\x23\xd4\xf2\xd3\x9c\x3d\x4d\x17\xcb\x2f\x06\x24\xb4\xfb\x54\x10\xf6\x38\x69\xa7\x01\x08\x9a\x9c\x9a\xee\x4a\x69\x62\x21\xc9\x06\x47\x64\x89\xd1\x6a\xbe\x23\x34\x48\x0e\xc5\xc7\x80\xa8\x18\x7e\xf3\x9b\xdf\xa0\xd9\x6c\xda\xe3\xc7\x8f\xfb\x83\xd9\x4a\xf0\x52\x0c\xfc\x72\x8c\x67\xae\xf3\x22\x8f\x6c\x94\x21\xdb\x9a\x19\xe2\xf2\xea\x01\xfa\xb9\xed\x9e\x79\xd8\xd9\x3e\xb2\xd3\x3a\x3b\xdf\x6f\x2c\x67\x0e\xb9\xf1\x47\x62\x90\x51\x30\xf5\x37\x8e\xfa\x95\xe2\xbe\x76\x38\x29\x50\x5b\x2a\xf2\x47\xd5\xf5\x73\xb7\xff\x68\x66\x70\xef\xea\xa1\xee\xbb\x97\x0f\x77\x2f\x3c\x98\x1d\xdc\x2e\x66\x5a\x76\x0d\x0c\xff\x80\xee\xd0\x0f\x5c\x7d\x5d\xf9\x3c\xdf\x7e\xfb\x6d\x7b\xf3\xe6\x4d\xa9\x9e\x42\xf5\x16\xea\x77\xd3\x86\x14\x3f\xaf\x3d\xd7\x6c\x78\xcd\xde\xe4\x3c\x42\x08\x92\x63\x78\x1c\x41\x25\x61\x54\x60\x74\xe6\xcc\x19\xcc\xcc\xcc\xf8\x91\x1d\xfd\x2b\xcf\x6d\xe9\x0c\xb2\xf9\x13\x5b\xed\x8f\xcd\x0c\xb2\xb3\xa1\xd9\x16\x7a\x92\x60\x9d\x66\x12\x3a\x18\x76\xad\xce\x94\x50\xe8\x41\xc0\x50\x89\x4f\x6a\xe9\xea\x74\xb5\x4b\x61\x06\x68\xd8\x70\xdd\x07\xb3\x83\x1b\xb7\x16\x7b\x57\x76\x3a\xc3\x4d\x14\x6f\x11\x61\x3c\x4a\xf0\xcb\x43\xfc\xb5\xe7\x52\x79\xf7\xf6\xf6\x70\xe3\xc6\x0d\xcf\x52\xeb\xf8\xd3\x18\x66\x69\xc4\x13\x53\x6e\xcd\x21\xc6\x40\x6d\x0c\x58\x68\xe5\xe1\x7a\xa9\xe9\x5a\x8a\x33\x0b\x01\x1f\xed\x5a\x1a\x05\xf2\x32\x68\xd7\x92\x6c\xa1\x72\xc4\x46\x44\x29\x46\x82\x1b\xa9\x69\xea\x27\x94\x37\x0d\x21\x3b\xa0\xc9\x32\x8d\x13\x0e\xd9\x26\xc9\x00\xa6\xea\xad\xc4\x9b\x3f\xa3\xf4\xa1\x36\x8d\x39\x74\xa9\x9f\x69\xf5\xec\x79\x6b\xf5\xa6\x95\x85\x97\x81\xd7\x89\x26\x6f\x4a\x39\x25\xde\x3c\x48\x65\x08\x5d\x4b\x69\x43\x3a\x0c\xe1\x19\x00\x64\xb7\x6f\xdf\xc6\xf6\xf6\x36\x8e\x1f\x3f\xee\x79\xf8\xbf\x72\xe6\x05\x93\x3e\x06\xa3\x0c\x78\xd4\x19\x62\x70\xd8\xf5\x76\xda\xa3\xdd\xe3\x33\xc3\xcd\x13\x8f\xda\xe7\x56\xf6\xf3\x63\xed\x51\x36\x6b\xfc\xa9\xec\x7c\x30\x5a\xf8\x95\xf1\xe1\xa1\xe3\x69\x18\x69\x2e\xde\x15\xce\xc2\xc2\xd9\x41\xc3\xf5\x77\xdb\xa3\xad\x8d\xb9\xc1\x8d\x1b\xcb\xdd\xcb\x37\x97\x7a\x97\x1f\xcd\x0c\xef\x8e\x0c\x76\x51\x7d\x40\x97\x03\x97\x2e\xea\xaf\x75\xfb\x19\x17\xdc\xb9\x73\x07\x8f\x1e\x3d\xe2\xf5\x24\xd5\x37\xaf\x2f\xcd\xb6\xc4\x80\xba\xa7\xa1\x75\x2c\xd9\x43\x2d\x84\xfa\xaa\x04\xa6\xb2\x5c\x10\x30\xc4\x88\x3f\x93\x42\xa8\x13\x84\x0c\x89\xc8\x8f\x7e\x9b\x08\xc5\xa6\x5c\x63\x4c\xde\x18\x99\xce\xda\x6e\x6b\xf5\xf0\x5e\xf3\x13\xcd\x51\xb6\x4c\xe4\x1b\xa7\x03\x05\x07\x0c\x60\x94\xff\x55\xc1\x30\xf0\x31\x11\x8f\x3a\xc6\x70\x30\x93\x53\x83\xa6\x3e\x4b\x33\xbe\xae\x52\xf2\x4d\x0c\x54\x56\x94\xcf\x9c\xdd\x6d\x8d\x36\x6e\x2d\xf5\xae\x6c\xcc\x0f\x6e\x8e\x32\xf9\xab\xcf\xa8\x36\xe5\x96\x53\x84\x00\xf0\xe0\xc1\x03\xfb\xc1\x07\x1f\xf8\xfa\x8c\x22\x57\xe1\xd9\x84\x92\x20\xae\x78\x1a\xe8\x48\x01\x1c\xf4\x3a\xd6\x69\x42\xba\x28\xe9\x59\x48\x0e\xad\x0c\x5c\x1e\xa9\x53\x6b\xf4\x12\x4f\xff\x4c\x72\x12\x31\x5a\x7a\x4f\xf3\x94\x8c\xbc\xd6\xc6\xa1\xfa\x88\xd5\x45\xac\x1d\x34\xb9\x43\x7d\x3b\x14\xc7\xaf\xa5\xbc\x79\x48\x01\x05\x21\x10\x10\xd2\x7d\x5a\xcf\x31\xa7\xac\xf1\x0e\xf5\x9d\x50\xde\xb1\x34\xda\x75\x0a\x10\x7e\x1c\x79\xff\xa7\xda\x2d\xa4\x53\x31\x5e\x5a\x1b\xd6\xca\x72\xfd\xfa\xf5\xec\xd0\xa1\x43\xf6\xe8\xd1\xa3\x3e\x7e\x48\xe8\x39\x70\x29\xc3\xc8\x38\xec\xb6\x46\xb6\xb7\x6c\xbb\xdb\x9d\xe1\xf6\xd6\xcc\x70\xf3\xf8\x76\xfb\xec\xea\x5e\x7e\x7c\xae\xd7\x58\x6c\x0f\xb3\xd9\xdc\x9a\xdc\x14\x33\xfd\xf4\x15\x69\xbf\x3f\xc0\x15\x7b\x2a\x5d\x69\xf4\xc7\x17\xa3\x0c\xc3\x7e\x3e\xea\xee\xb5\x46\x5b\x0f\x67\x87\x1b\xf7\xe7\x06\xb7\xee\x2e\xf4\xae\x6d\xcc\x0f\x6e\x1f\x34\xed\x96\x43\x0d\xb4\xec\x3a\xe7\xca\xd9\x76\x3f\xd3\x8e\xc9\x13\x73\xb1\xbe\xbe\x6e\x0b\xd0\xa2\xd9\x53\xa9\x0e\x43\xf7\x3c\x4e\xb3\xdf\xb1\x7c\x78\xd0\xec\xa7\xf4\x3b\x41\x9b\x0b\x91\x31\xe1\x34\x40\x23\x05\x8d\x2e\xa4\xb4\x78\xea\xa9\xa7\xb2\x66\xb3\x09\x00\xe5\xf7\x88\x8a\x35\xc8\x31\x78\x71\xc8\x5b\x23\x33\x7b\xf2\x51\xfb\xdc\x7c\xbf\xf1\x74\xe6\xd0\x31\x30\x75\x44\xa0\x4f\x95\x00\x64\x06\x86\x92\xd1\x99\x99\x3a\xfd\x24\x2b\x0f\x4e\xb4\x6d\x31\xd5\xb5\x99\x78\x16\xda\x4a\x33\x68\xb8\xee\xfd\x85\xc1\xb5\x3b\x8b\xfd\x2b\x7b\xad\xd1\x16\xea\xcb\x42\xe2\xab\xcf\x1e\xb4\x6c\x6e\x6e\xda\xb7\xdf\x7e\x1b\x17\x2f\x5e\x8c\x19\x6c\xb0\xfb\x90\xa3\x8f\x29\x32\xe5\xc1\xf3\x0c\xb5\xb9\x14\x24\xe7\x9e\xe2\x6c\xe8\x75\x8a\xe3\x94\x00\x80\x56\xf6\x10\xdf\x94\xf2\x48\xe5\xf3\x41\x03\x46\x5a\x9f\x14\xfb\x4b\xe0\x99\x64\xb8\xe8\xbd\x44\x97\x52\xce\x14\x43\x98\xe2\x84\xb5\x20\xe9\x52\xe8\x79\x0a\x30\x45\xe4\xf9\x34\xe9\x25\xfa\x98\x5e\xf2\xb4\xa9\x6d\x18\x92\x3b\x54\x0f\x29\x69\x69\x1f\x48\xc9\x2f\xc4\x37\x06\x86\x53\xe4\x08\xf1\x7c\xdc\x90\x7d\xf0\xc1\x07\x76\x75\x75\x35\x3b\x7a\xf4\x28\x08\x6f\x0a\x60\x7c\x5e\xb5\x7c\xfc\xbe\x98\x41\xc3\x0d\x1f\xce\x0e\xfb\x7b\x2d\xfb\xe8\xc1\xdc\xe0\xde\x91\xbd\xe6\xb1\x95\xbd\xe6\xb1\x43\xfb\xf9\xda\x62\x2f\x5f\x6e\x0f\xb3\x4e\x6e\x4d\xab\x61\x91\x67\xce\xe4\x1e\x9f\x38\x03\xc0\x38\x58\x00\xce\x38\x3b\xca\x30\x1c\x66\xae\xdf\xcf\x5d\x7f\xbf\x39\xda\xdd\x9a\x19\xdc\xdb\x98\x1b\xdc\xd9\x98\x1f\xdc\xd9\x9a\x19\x6e\xec\xb5\x46\x8f\x6c\x36\x01\x56\xca\x73\xbb\x50\x0c\x5c\xe9\x12\x11\x1d\xb4\x7e\xf0\xc1\x07\xf6\x97\xbf\xfc\x25\x1e\x3d\x7a\x14\xd2\xaf\x94\x76\xad\xd5\x1f\xc2\xba\xec\x43\xaa\xde\x4d\x93\x9f\xc4\x3b\x43\x01\x5c\x62\x8e\x8b\x26\x8e\x8d\x62\xb4\x7b\x4d\x01\x45\x45\xfe\xe2\x17\xbf\xe8\x37\xe5\x7a\x9a\xf2\xd0\x39\x00\x79\xe6\xd0\x99\xef\x37\x96\x8f\xec\x36\x3f\xd6\x1e\x66\xc7\x7c\x42\x8a\x5b\x24\x00\xe2\x67\x5a\xc8\x69\x8a\xf0\xeb\x95\xe3\xcf\x00\xc8\x9b\x6f\x9d\x00\x50\x26\x36\xc3\x00\x13\x1b\x78\x2b\x46\xa1\xdd\xb9\x15\x9d\x33\xc0\x76\x67\x78\xef\xc6\x52\x77\x7d\x73\x76\x70\x7b\x64\xdc\x7e\xb1\xb6\x59\x9e\xd7\xe2\x95\x96\x28\xac\xf5\xe5\xb8\x7a\xf5\x2a\xde\x7b\xef\x3d\x89\x7b\xcc\x31\x69\x06\x34\xf5\x9e\xf3\x00\x8b\xe3\xf9\xf3\xe7\x52\x3a\x0d\x30\x48\x60\x83\xf3\xe6\xfa\x16\xea\x54\x5c\xe7\xa5\xb2\x49\xb2\xc7\x46\x88\x5a\x19\x28\x7d\xaa\xb1\xe6\x0e\x46\x6a\x3f\xa9\x8d\x53\x9d\x92\x56\x57\x12\x9f\x10\xdd\xe3\x38\x5f\x4d\x1e\x2d\xc4\x6c\x93\x26\x87\xd4\xbe\x29\x32\x4b\x7d\x24\x54\xae\x94\x6b\x04\xe2\xb5\x10\xea\x5f\x31\xb9\x24\x3d\x88\x01\x82\x69\x1d\x91\xa6\x8b\x1a\x8d\xc6\x4f\x6a\xab\x98\x2f\x92\xda\xb6\x46\xfb\xe8\xd1\x23\x6c\x6d\x6d\xd9\xe5\xe5\xe5\x8c\xd8\x4e\x3a\xf3\xd2\x55\xd2\x8e\x8f\x99\x30\xe8\xf7\x72\xdb\xbf\xbb\xd0\xdf\x7f\x38\x3b\x78\x30\xbb\xd4\xb8\xb6\x7c\x90\xaf\x1c\x3a\x68\xae\x2d\x74\x1b\xcb\xb3\x83\x6c\xb6\x33\x68\xcc\xb7\x87\xa6\x93\x5b\xd3\x1a\x7f\xc7\x68\x6c\xd3\xad\xc1\x70\x90\xd9\xfe\x41\xcb\xee\xee\xb5\xec\xee\x5e\x6b\xb4\xbd\xdd\x19\x6e\x6e\xcd\x0c\x37\xb7\x3b\xc3\xad\x5e\x6e\xf7\x6c\x35\xb3\x5e\x2e\x0b\x79\xd0\x02\x36\xe3\x4e\x37\xe5\xd2\x57\x9f\x5f\x7f\xfd\x75\xbf\x44\x24\xd5\xb1\x56\x97\x60\x74\x31\xfd\x8d\xf5\xb3\x10\x3f\x5e\xb7\x9a\x0c\x52\xbc\x4f\x63\x81\xfa\x1e\x17\xc9\x48\xc7\x1c\x5c\x48\x08\x2e\x4c\xc8\x01\x96\xca\xbe\xb2\xb2\x52\x03\x16\x60\xa0\x05\x40\xde\x1a\x65\x9d\x63\x8f\xda\xc7\x17\xbb\xf9\xd3\x0d\x67\x66\xcb\x77\x31\xfd\x7e\x16\x71\x33\x09\x7b\x0b\x88\x00\x98\x92\xbe\xc0\x1d\x7e\xfd\xd1\x83\x97\xda\xb2\x0e\xdd\xc7\xe2\xe3\xca\xcd\x58\x74\x49\xc8\x95\x5f\x78\xae\x9f\xb2\x5b\x80\x25\x86\x63\x9c\x31\x18\x14\xdf\x23\xba\xbb\xd0\xbf\x71\x90\xdb\x5d\x8a\xb2\xc1\x8e\x78\x26\x9b\x71\xad\x31\xc6\xee\xed\xed\xd9\xfd\xfd\x7d\xad\xee\x69\x1d\x6b\xc6\x2d\xe4\xc8\x35\x1d\x88\x05\x0d\x6c\xc4\x8c\xf5\xe3\x82\x1b\x0e\x24\xa4\xb2\x72\xbe\x31\x00\x02\x81\x4e\x92\x45\x4a\xcf\xeb\x2c\x04\x30\x68\x9c\x06\xf4\x52\xe4\x90\xc0\x55\x0a\x90\xe3\x69\x43\x7d\x5d\x02\x60\x29\xf5\x18\xb3\x03\x9c\xa7\xf4\x9c\x07\x8d\x3e\x66\x54\x39\x8f\x94\xfc\x34\xba\x18\xa8\x91\xe2\x25\xbe\x29\x80\x36\x44\xcf\x83\x06\x54\x62\xb6\x40\x92\x4b\xea\xc7\xa9\x7a\x98\x52\x16\x4a\xa7\xc9\xa3\xe5\x15\xcb\xdf\x5e\xbc\x78\x31\xb3\xd6\xe2\xb3\x9f\xfd\xac\x9d\x9f\x9f\xcf\x50\xed\x71\x01\x50\x9b\x6d\xb7\x40\x75\xda\x00\x47\x40\xb8\xbf\xae\x07\x38\x05\x58\xe8\x03\x98\xed\xe7\xae\x91\xd5\x20\x1a\x00\x00\x20\x00\x49\x44\x41\x54\xdf\xcf\x87\xbb\xdb\x9d\xe1\xc3\xdb\x8b\xfd\x5b\x4d\x6b\x3a\xad\xa1\x69\x75\x86\xd9\xec\x4c\xbf\xd1\x69\x8f\xb2\x8e\x71\xc8\x1c\x1c\xac\xc1\xd0\x66\x6e\xd8\xcf\x5d\x7f\xaf\x39\xda\xef\x36\x6d\x77\xd0\x70\xdd\x61\xe6\x0e\x46\x99\xeb\x3a\x53\x9d\xde\x4b\xfe\x4a\x10\x53\xcc\xb4\xfb\xfd\x8d\xfc\xec\x96\xf2\x6f\x73\x73\x13\xe4\x84\x74\xde\x46\xa1\xba\xe7\x74\x3c\x5e\xaa\x53\xcd\x86\xa5\xf8\x89\x90\x8e\xa7\xd8\x07\x00\x63\x20\x10\x53\xa6\x10\xd8\xe0\x02\x85\x90\x15\x7f\x36\x51\x79\x8d\x46\x23\xfb\xf6\xb7\xbf\x0d\xa0\x3a\x21\x97\x2c\x15\x8d\x5f\x5d\x73\x68\xb5\x87\xd9\xfc\xda\x6e\xf3\xc9\x99\x41\xe3\x2c\xc0\x57\x87\xf8\x4e\x59\x79\xa6\x43\x9c\xfc\x20\x9b\x55\x94\xbd\xbb\xf5\x73\x5f\xe0\x81\x0d\x7b\xe3\x08\x28\xa7\x69\xc6\x4b\x58\x95\x0c\x7c\x03\xb1\x0f\x0e\x0e\xbb\xed\xd1\xbd\x1b\xcb\xbd\xcb\xdb\xed\xd1\x03\x67\xb0\x4f\x0e\x1a\x2a\x37\x63\x91\x37\x89\xac\x31\xc6\x1a\x63\xd0\xef\xf7\xf1\xcb\x5f\xfe\x12\x17\x2e\x5c\x88\x19\xb0\x90\xa2\x69\x69\x62\x86\x9c\xd3\xf2\xfc\x34\xde\x29\x0e\x86\xc6\x49\x4e\x31\x55\x37\x63\xbc\xb5\xce\x1c\xe2\x91\xe2\x2c\xa4\x7c\x28\x4d\xac\x4c\xfc\x5e\x73\x56\xbc\x6c\x1a\x60\x8a\xd5\xb3\x26\x3f\x97\x55\x73\xd8\x31\x1e\xa1\x11\x55\xcc\x4e\xc4\xee\x43\xba\x17\x35\x84\x0a\x3f\x7e\xad\xf5\x9f\x69\x6d\xa7\x94\x9f\x74\xcf\xf3\x93\xe2\x35\x59\xa5\x3c\x35\x1e\x52\x1e\x94\x5e\xe3\x11\x0a\xb1\x76\x9b\x26\x2e\x85\x7f\x34\xff\xf5\xf5\x75\x0c\x06\x83\xec\xcb\x5f\xfe\xb2\x6d\xb7\xdb\xfe\x35\x69\x8b\xf1\x40\xb0\xa4\x23\xf1\x16\xd5\xd1\x13\x43\x00\x2d\x8c\x01\x44\x07\x40\xcb\x66\xa6\xd5\x35\xa3\x56\xcf\x98\x1c\x6d\xe4\x70\x2e\xcf\x9c\xc9\x0c\xd0\xf4\xcc\x8a\x17\x44\x46\x0e\xb0\x6e\xfc\x45\x6a\x3f\xe8\xec\xb3\x3f\x0e\x5e\xfc\x0c\x3b\x3f\xfe\xc2\x82\x6d\xc8\x3d\x38\x38\xc0\x3f\xfc\xc3\x3f\x60\x30\x18\xf8\x72\x3f\x8e\x6e\x68\x75\x1a\xa3\x8b\xf5\xfb\x69\xfa\xb3\x34\xe0\x11\xfd\x94\xb6\xc7\x85\x0a\x23\x65\x12\x7a\x16\x0b\x5a\x67\xa9\xf1\xe4\x80\xc5\xbf\x06\xdd\x1c\x99\xce\xf2\x7e\x63\x75\x65\xbf\xf9\x74\x6b\x98\xad\xd5\xd3\x08\x37\xa1\xe5\x19\xc8\x1b\x65\xb5\x14\xb5\xfd\x30\x94\x4e\x01\x41\x93\xbb\x5b\x74\x79\x46\x19\xfa\x77\x16\xfa\xeb\x1b\x73\x83\x5b\xfd\xdc\x6e\xc3\xa0\x6b\x50\x82\x96\x89\xef\x52\xd0\x4d\xb9\x3f\xf9\xc9\x4f\xec\xfb\xef\xbf\x2f\xb1\x4d\x35\x0c\x31\x87\x92\x02\x70\xe8\xb5\x94\x4e\xba\xd7\xd2\x6b\xfc\x43\x0e\x22\x13\xe2\xb5\x74\x3e\x4d\x8a\x43\xe7\xe5\x49\x0d\x5a\x59\xb5\x91\xa8\x56\xd7\x21\xe7\x13\x7a\x1e\x1b\x2d\x6b\x32\x4a\x61\x1a\x10\xa0\xe9\x4b\xa8\x0d\xa6\x09\x31\x00\x90\x62\x9c\x53\xe4\x4b\xad\x53\x28\xb4\xa9\xbc\x63\xb2\xa5\x02\x92\x94\x76\xd6\xc0\x5d\xaa\xfe\xfb\x6b\x08\x74\xd3\xda\x90\x18\x80\x8c\xf5\x93\x90\x8c\x9c\x47\x29\xfb\xd5\xab\x57\xed\xbf\xfd\xdb\xbf\x65\xdf\xf8\xc6\x37\x28\x38\xc9\x51\x2d\x1b\xf9\x38\x3f\xcb\xd2\xf1\xf7\x18\x03\x97\x6e\x11\xd7\x42\xf1\x81\x5f\xf8\xd5\x00\x63\x32\x6b\xc6\x47\x8c\xb0\xfd\x92\x65\x3d\x1b\x94\x27\x9c\x97\xa7\xf6\x92\x6b\x7e\x2a\xae\xb7\xff\xb5\x23\x2f\x40\x36\xe5\x8e\x46\x23\xfc\xcd\xdf\xfc\x8d\x06\x06\x42\xc0\x34\xc5\xf6\x3d\x8e\x2e\xf2\x10\x7b\x2e\xc9\xed\xd3\xf9\xb8\x89\x76\xa7\x33\x2e\x21\xf0\x12\xaa\x18\x4a\x9b\xa2\xcc\xdc\x48\xd7\x84\x23\x0d\xee\x41\x4b\x56\xd0\xe5\x00\x5a\x9d\x61\x36\x7f\x6c\xb7\x7d\x72\xa1\xdb\x78\xda\x90\x4f\x16\x54\xfb\x57\xea\xd7\xe5\x43\xba\x2c\x53\xfc\xf2\x65\x20\x1f\xa7\xa1\x97\x09\xd0\xa2\xbd\x26\xc4\xc2\x04\x3d\x7b\x06\x00\xdb\x9d\xe1\xad\x2b\x2b\xdd\x8b\x3b\xed\xe1\x03\x3b\x3e\x6c\x6e\xdf\x39\x57\xdb\xdf\x82\x4a\x61\x01\x59\x11\x79\x08\x8d\x08\xa7\x31\xde\x31\xc5\x4b\x9d\x51\xd0\xf4\x46\xca\x23\xe4\x64\x39\xbd\x66\x14\x43\x23\x81\x54\xe3\xce\xe5\x94\xe8\x24\x10\x1e\x03\x0a\xa1\x72\x04\x3b\xad\x22\x63\xaa\x43\xcf\x50\x97\x37\xc5\xb1\xc4\xec\x00\x0d\x1a\xbf\x90\xae\x86\x8c\x5b\x0c\xb8\x69\xb4\xa9\x60\x9b\xc7\xa5\xa4\xd3\xda\x2c\x25\xbf\x69\xcb\xee\xd3\xa4\xd4\x81\xe4\xa0\x28\x7d\xac\x1f\x3f\x8e\xfc\x34\x5f\x2d\xa4\x02\xc1\x10\xa0\x8d\x95\x41\x6b\xd3\x8c\xd3\xdc\xbe\x7d\x1b\xdf\xfb\xde\xf7\xec\x9f\xfd\xd9\x9f\xf9\x67\xb5\x65\xa3\x72\x0b\x01\x99\x75\xf1\x9f\x97\x01\xd0\xc1\xd8\x16\xe7\x18\x83\x97\x9c\xfc\x65\xec\xaf\xcc\xb7\x18\x64\x96\xaf\x2f\x93\xeb\x3e\x99\x81\xf1\xa0\x85\xce\xc8\xd4\x5e\x79\xa6\x75\xb3\xb3\xb3\x83\xbf\xfd\xdb\xbf\x55\xaa\x43\xac\x93\xd4\x3e\x19\x6b\xcf\xd4\xfe\x48\x9f\xa7\xf4\x13\x2d\x0f\x1a\x32\xa0\x7a\xab\xc8\x13\x72\x94\xcb\x13\x50\x3a\xc9\x50\x43\xb9\x97\x84\xaa\xd1\xcc\xcd\xcd\x65\xdf\xfa\xd6\xb7\x4a\xd0\xc2\xfe\xc6\xaf\x41\x5b\xb4\x66\xfb\x8d\xe5\xc3\x7b\xcd\xa7\x3a\xa3\xec\x38\x7f\x83\xc7\x15\xe8\xc0\x90\xe9\x8e\xea\xdd\x7a\xba\xb4\x43\x82\x04\x3a\xc8\xeb\x6b\xa1\x15\x25\xb6\x0a\x34\x81\x63\xca\xfc\x82\x7b\x73\x1d\x86\x19\xfa\xb7\x96\x7a\x17\x1f\xcc\xf5\xef\x0e\x1a\x6e\x17\xd5\x07\x14\x27\x94\x97\x74\x26\x18\x63\xf0\xef\xff\xfe\xef\xf6\xda\xb5\x6b\xbe\xce\x78\xbd\x4a\x00\x82\xc6\xa5\x8c\x1c\xa5\x76\x97\xd2\x69\x74\x34\x2e\x06\x16\xa0\xc4\x67\xca\xb3\x50\x59\x34\xe7\x2e\xc5\x51\x27\xae\x85\x90\x7e\x4b\x79\x68\xf1\xd3\x00\x46\xce\x4f\x2b\x73\x08\x10\x69\x6d\xac\x81\x4c\x29\xa4\xca\xcb\xeb\x24\x54\xd6\x50\x3d\xc5\x40\x44\x08\x48\x85\x40\x59\x2a\x40\xd2\x64\x0c\xf5\xb1\x10\x0f\xa9\x3c\x5a\x5f\x98\x46\x97\x35\x79\x25\x9b\x2e\xb5\x03\x2f\x97\x16\xaf\xd9\x77\x8d\xb7\x96\x07\xa5\x8d\x01\xdc\x90\x7c\x5a\xb9\x43\xb4\x34\xd8\xad\xad\xad\xec\xbb\xdf\xfd\xae\xfd\xce\x77\xbe\x43\xd3\xf2\x37\x75\x6c\x71\x9f\xb3\xe5\x9d\x12\xb4\xf8\x13\x77\x81\xda\x9b\xaf\x19\x7b\x39\xa4\xc6\x0f\xf5\x19\x14\xba\xd9\xb6\x36\xb3\xce\x66\x59\xe8\x1f\x36\x36\x36\xec\x0f\x7e\xf0\x03\xa9\xcc\x52\xd0\xfc\x40\xac\x2f\x86\x9e\xf9\x90\xd2\xc6\x5c\x86\x98\xbd\xd3\x74\xaf\x8c\xe3\x27\xe7\x6a\xc2\xc5\x68\xb4\xfb\x50\xa5\xd6\xe2\x8c\x31\x98\x9d\x9d\xcd\x58\x5c\x09\x5a\x00\xe4\x9d\x61\x36\xbb\xba\x97\xaf\x2d\xef\xe7\xe7\x9a\x23\xb3\xec\xe9\xca\x73\x59\x8a\x8d\x29\xf4\x84\xfe\x1a\x80\x20\xbc\x4b\x20\x31\xb1\xd1\xb6\x02\x1b\x5a\xa8\xbf\xbd\x24\xc4\x15\x11\x13\xe7\xc1\x28\x33\x33\x3b\x9d\xe1\xad\xeb\xcb\xbd\xf5\xdd\xf6\x68\xd3\x1a\x74\x1d\x5c\xd7\xc0\xf8\xc3\xe6\xfa\xe4\x83\x60\xf4\x58\x67\x6b\x8c\x41\xb7\xdb\xc5\x68\x34\x4a\x69\x3f\xff\x2c\xa8\x10\x42\xfa\x14\x67\x44\x9f\x49\xca\x9a\xe2\x68\x42\xe0\x37\x54\x26\xc9\xe0\x6b\x69\x52\x9d\xad\x24\x83\x14\x27\x75\x6a\x5e\x06\x1f\x17\xe2\xc3\xe3\x42\xf2\x21\x40\x13\x6a\xc7\x98\x41\xd7\x40\xa9\x44\x9f\xc2\x87\xcb\xce\xd3\x4a\xcf\x63\x4e\x29\xa5\x1c\x9a\xbe\x86\x40\x10\x2f\x6f\xa8\x2f\xc4\xec\x59\x08\x10\x6a\xd7\x1c\xd4\x6a\x65\x4a\xa9\xdb\x14\xc7\x9d\x2a\x57\xc8\x8e\xc7\x9c\xa5\xc4\x83\xa6\xd3\xe2\x79\x3a\x2d\x5e\x93\x4b\xd2\x99\x89\xe0\x9c\xb3\x8f\x1e\x3d\xca\xbe\xff\xfd\xef\xdb\x6f\x7d\xeb\x5b\xc8\xb2\xac\xe4\x53\x80\x05\x9f\x7e\xe8\xb7\x29\xa0\x5a\x52\xca\x51\x9d\xff\x52\xce\xb6\x90\xd5\x81\xcc\x4d\x1e\xad\x61\xc9\x5f\x6d\xd9\x87\xce\xbe\xf8\x38\x54\x83\x54\xff\xe5\xe7\xb2\x3c\xb7\x6f\xdf\xb6\xaf\xbe\xfa\x2a\xba\xdd\x6e\x48\x1f\x7d\x90\xfa\x11\xaf\xfb\xd4\xbe\xce\x9f\xa7\xb4\x59\xac\x1f\xc5\xec\xb6\xa8\x27\x29\x85\xa6\xbf\xd2\x73\xfe\x8c\xdf\x6b\xc6\xa2\xfc\x5d\x5a\x5a\xca\xbe\xfc\xe5\x2f\x97\x5f\xdb\x44\xa5\x10\x19\xb9\x6e\xcd\x0c\xb2\xf9\xc3\x7b\xad\x33\x73\xfd\xc6\x59\x14\x87\xfe\x00\x1e\xaf\xb8\x1a\x70\x70\x70\xe5\x87\x16\xab\xcd\xbb\xd5\xa9\x73\xf4\x43\x8c\x7c\x06\x86\x9d\x4d\x57\xc6\xd7\xf2\x63\x61\x22\x2e\x81\xc8\xc1\x61\x94\x61\x78\x7b\xb1\xbf\x7e\x7f\xbe\x7f\x7b\x98\xb9\x7d\x07\xc7\x3f\x57\x4e\x37\x65\x95\xc8\xdd\x18\x83\x57\x5f\x7d\xd5\x6e\x6e\x6e\x02\x93\xce\x96\x5f\x6b\xed\xf7\x38\x81\x02\x14\x60\x52\x07\x42\x8a\x1e\xa2\xa7\x69\x68\xe7\xe2\xf9\x70\x70\xa1\x75\x16\x20\x5e\xee\x58\x19\x2c\x74\x5e\x9a\x83\x8f\xe5\xa7\x19\x55\xa9\x9e\x38\x4f\x2e\xa7\x06\xb2\x24\x00\x16\x93\x2b\xd4\x4f\xa5\x36\x8f\xf1\x09\xd1\x00\x7a\xbb\x83\x5d\xc7\x8c\x6a\xac\x9c\xa1\x72\x71\x1e\x21\x3d\x0e\xf1\x4b\xcd\x53\xab\x3f\xea\xd4\xa6\xe5\xcb\xe3\x63\xc0\x50\x0b\x29\x36\x22\x0a\x08\x58\x88\x01\xd7\xc7\xe5\xe1\x65\xd1\xfa\x8c\x54\x97\x13\x75\xef\x9c\xb3\x0f\x1e\x3c\xb0\xff\xf2\x2f\xff\xe2\x41\x00\x4d\x4b\x97\x68\xf8\x06\x5a\xfe\xca\xf2\x2e\xfb\xdb\x36\xc6\x6c\x03\xa0\x7f\x9c\x66\x9f\xfc\x96\x6f\x8f\x92\x37\x87\xc4\xe5\xa1\xeb\xd7\xaf\xdb\xff\xfa\xaf\xff\xf2\x67\xb5\x48\xe5\xe3\x81\x97\x8b\x87\x8c\xfd\xc5\x74\x2c\xa4\x5f\xb1\x3c\x35\xbb\x2f\xf5\xc1\xa0\x9e\xd0\x8f\x2c\x72\xe6\x14\x0d\xf1\xf8\x14\xc3\xa5\xc5\x4d\x8c\x80\x5a\xad\x16\x8e\x1f\x3f\x9e\x01\x80\xb0\xaf\x25\x07\x90\xe7\x23\xd3\x5a\xea\xe6\xab\x2b\xfb\xf9\xd9\xf6\xd0\xac\x55\x18\x60\x3c\x8d\x31\xf1\x66\x8f\x31\x04\x6b\x94\x27\xb5\xd4\x53\x99\xc9\x49\x10\xfa\x52\x12\xbd\x4f\xda\xb1\xeb\xf3\xa2\x6f\x37\x11\x32\xba\xf4\x54\xbc\xc2\x6d\x77\x5b\xc3\x7b\xd7\x97\xbb\xeb\xbb\xad\xd1\x96\x35\xb5\xfd\x2c\xe5\x7a\x67\x31\xe3\x52\x3b\x6c\x08\x00\xee\xdc\xb9\x83\x5e\xaf\xa7\x39\x72\x1f\x42\x23\x96\xd4\x34\x3c\x3e\x36\xaa\x09\xc9\x13\x52\x48\x8e\xbe\x25\x24\x3e\xcd\xf3\x50\x3e\x5a\x5c\x68\x34\x11\x03\x4c\x34\x68\x20\x8b\x1b\x08\x4e\x17\x72\xfe\xa1\x76\x8c\xc9\xc0\x47\x39\x52\xda\x94\xbc\x35\x40\xaa\xf1\xe1\x21\x45\xd7\x78\x9d\x70\x40\xa6\x95\x25\x04\x72\xb8\x0c\x1a\x78\xe1\x3a\x18\x72\x9c\x52\x7e\x52\xfd\x85\x40\x49\x48\xce\x98\x2e\xc7\xea\x2e\xa4\x23\x52\x1d\x6b\x7d\x8b\xa7\x8d\x85\x94\x3e\xa8\xb5\x63\x4a\x99\xb9\x3c\x9a\x5e\xd3\xa0\xb6\xe7\x8d\x1b\x37\xec\x6b\xaf\xbd\x96\x7d\xee\x73\x9f\xb3\x0b\x0b\x0b\xf4\x9c\x97\xd2\xa1\x17\x71\x19\xaa\xfd\x30\x19\xc6\x4b\x45\x19\x50\xce\xb6\x50\xf9\xc4\x81\x90\x7f\xcd\x1a\x00\x5f\x8e\xaa\x7d\xba\xa5\x88\xf3\xfb\x6c\x70\xe9\xd2\x25\x7b\xf3\xe6\x4d\x3c\x7a\xf4\x08\x1b\x1b\x1b\xa1\xba\x0a\xb5\x21\x0f\xbc\x2e\xb5\x81\x50\x2c\x5d\x6a\x88\xf9\x14\xce\x9f\xa7\x2b\x65\x92\x96\x8a\xa4\xcc\x34\x43\x12\x53\x6e\xad\x73\x73\xbe\xf4\xcc\x16\x4f\x57\x03\x2f\x9d\x41\x36\x7b\x68\xbf\x79\x6c\xb1\x9b\x9f\x1d\x9f\xdd\xe2\xcf\x6b\x29\xce\x4e\xd1\x4e\xb7\x2d\xae\x4c\xb1\x76\x43\x97\x8d\x26\xde\x28\x22\x3c\xd4\xa5\x22\xbe\xd1\xd7\xbf\x3a\x4d\x96\xaa\x26\xd2\x8a\xfb\x5b\x1c\x86\x99\xeb\xdf\x9f\x1f\x5c\xbe\x3b\xdf\xbf\x39\x6c\xb8\x7d\x98\xf2\x84\xdc\xda\x5a\x27\x53\x70\x6b\x8c\xb1\xbf\xfc\xe5\x2f\x71\x70\x70\xe0\x99\xc5\x9c\x44\x8a\x21\xa1\xf4\x92\x83\xa0\x41\x72\x70\x56\xa0\xd7\x14\x5c\x73\xa8\x52\x90\x40\xb2\x64\x6c\x39\xa8\xe2\xd7\x9a\x53\xe6\x8e\x38\x05\xa0\x6b\x32\x84\xd2\x6b\xba\xcf\x41\x0b\xe7\xcd\xf3\x8c\x39\x79\x1f\xa8\xe1\x95\xd2\x86\xc0\xa5\x14\x62\x06\x86\xeb\x5a\xc8\xc1\x70\x7e\x9a\x1d\x91\xda\x4b\xe2\x23\x95\x41\xba\xd7\x00\x49\xac\xcd\x52\xf4\x55\xe3\x2f\xd5\xbf\xd4\x2f\x53\x78\x72\xb9\xa4\xb4\x5c\xc7\x68\x5c\x88\x37\x97\x73\x1a\xe7\x17\xeb\xc3\x94\xbf\x0a\x20\x12\x78\xf8\x74\x5a\x3f\x89\xe9\x9c\x2a\xd7\xe5\xcb\x97\x6d\x9e\xe7\xd9\xcc\xcc\x8c\x3d\x77\xee\x1c\x8e\x1c\x39\x42\x7d\x93\x25\x83\x69\x9f\x26\xc3\xd8\x36\x97\xf1\xc5\xa0\x1b\xe4\x9e\x9e\x0d\x03\xa0\xb6\xe4\x63\x59\x3c\x05\x33\x94\x16\xeb\xeb\xeb\xf6\xad\xb7\xde\xf2\x80\x85\xca\xa1\xb5\xbf\x06\xe4\x34\xb0\x58\xca\x1c\x79\xe6\x43\xcc\x36\xd2\x34\x9c\x56\xea\xff\x9c\xb7\xc4\xab\xa6\x93\xa9\x1f\x59\x8c\x09\xac\x29\x47\x4c\x81\xec\xc2\xc2\x42\xf6\xd4\x53\x4f\x01\x28\x67\x29\x26\xde\x26\x32\x0e\xad\xb9\x7e\xb6\x7c\x68\x3f\x3f\x33\x33\xc8\x8e\xfb\x6f\x43\x4c\x6c\x2c\x91\x36\xab\x40\x3f\xca\xbf\x8c\x29\x36\xc5\x18\x69\x0a\x86\x84\xda\x57\x3f\x39\x8f\xd0\x5b\xd7\x64\x16\xa7\x9c\xd1\x31\xb0\x07\x2d\xbb\x79\x7b\xa9\x77\x79\xa7\x33\xda\x74\xd5\x86\x5c\x0e\x5e\xfc\xeb\x73\xb5\xd9\x96\xb7\xdf\x7e\x1b\xbd\x5e\x2f\x90\x69\xd0\x50\x4a\xc6\x34\xe6\x3c\xf8\xb5\x94\x1e\xc2\xb5\x94\x56\x32\xf2\x9a\x22\x4b\xf4\xda\x33\x89\x47\x6a\x1e\x92\xac\xb1\xce\xab\xc9\x97\x5a\x56\x40\x2e\x97\xe6\x28\x35\xb9\x35\x7e\xdc\x79\x69\x32\x4a\x65\x8a\x95\x23\x04\xf0\x62\x6d\xc5\xe9\xa4\xf6\xa5\xfc\x43\x4e\x58\xaa\x3b\x49\x5e\x4e\xab\xf1\xa7\x74\x52\x3d\x6a\xbc\x25\xfe\x35\xe7\x04\xbd\x9d\x42\x36\x38\x55\x37\xb4\xe7\x3c\x84\xfa\x9d\x06\x82\xa5\x3a\x0d\xe5\x2d\xa5\xd3\xda\x3e\x24\x9f\x04\x82\x43\x6d\x2a\xd1\x84\xca\x45\x9f\xfb\x4f\xa5\x64\xbb\xbb\xbb\x58\x5b\x5b\xb3\xab\xab\xab\x38\x76\xec\x18\x05\x1f\x14\xa4\xd8\xf1\x41\xa2\x63\xb0\x42\x40\x4b\x59\x6e\x7a\x90\x6a\xb1\x2f\xb1\x9c\x41\x61\x67\xc5\x50\x59\xca\xe7\x97\x2e\x5d\xb2\xbd\x5e\x0f\x17\x2f\x5e\xc4\x83\x07\x0f\x52\xfb\xad\x54\x67\x20\xf7\x92\x7e\x68\xc0\x42\x8a\x4b\xb1\x5f\x80\x2c\x03\x94\x38\xce\x27\x64\x6b\x01\x54\x47\xfe\xf3\x20\x29\x87\x96\xa1\x16\xc7\xf9\x89\xfc\x57\x56\x56\xf0\x89\x4f\x7c\x22\x73\xce\x95\x1f\x54\xe4\x4b\x45\x0d\x6b\x5a\x8b\xdd\x7c\x75\xf9\x20\x3f\xdd\x1a\x65\x2b\xd5\xe9\xb5\xd5\x29\xb9\xa6\xfc\x6f\x1c\xb4\xe3\xff\x2b\x5c\xe3\xaa\xe3\xff\xfd\x2b\x49\xd2\xfb\xd1\x84\x61\xa5\x88\x7e\xb3\xad\x76\xb0\x8b\xff\x50\x45\x9d\x5f\x45\x3a\x9e\x6d\x79\x38\x33\xb8\x75\x67\xa1\x7f\x6d\xd8\x70\xe3\xc3\xe6\xc6\xe7\xb6\x94\xef\xf7\xa3\xda\xe5\x4e\x95\xdc\xae\xaf\xaf\xfb\x53\x12\x43\xf5\x1e\x6a\x27\x4d\x91\x42\x86\x47\x33\x98\x21\x84\x1e\xd3\x0b\x4e\x1f\x32\x4a\xd3\xe4\x1d\xa2\x4d\x95\x87\xeb\x7c\x0c\x34\x68\x0e\x34\xe4\xe0\x34\xd9\x34\x87\x19\x73\x14\x9a\x6c\xa5\xc1\x85\xde\x36\x21\x63\xc4\x9d\x15\x0f\x21\x47\x22\xf1\xa0\x72\xa4\x02\x92\x90\x6c\x9c\x26\xc5\xa9\x72\xd9\x38\x4d\x8a\x83\xd4\xc2\xb4\xc6\x9c\xc6\x6b\x0e\x87\xf7\x5d\xad\x2f\xc7\xfa\xb8\xe6\x1c\xb8\x9c\x34\x68\x7c\x63\xd7\xa9\x7a\xaf\x81\xc2\x90\xb3\x0e\xf1\x7f\x1c\xba\xb2\x8c\xef\xbf\xff\xbe\x7d\xff\xfd\xf7\xb3\x53\xa7\x4e\xe1\x23\x1f\xf9\x88\x9d\x9d\x9d\xf5\x5b\x19\xca\x3e\xe0\x07\xd9\x1e\x88\x90\xa5\xa2\x89\x40\x5e\xaf\x2e\xf3\xf6\x40\xc6\xcb\x43\x40\x4e\x79\x26\xd7\xeb\xaf\xbf\x0e\x76\x1a\x7a\x8a\x4e\x87\xea\x3e\xd4\x07\xa8\x9d\x08\xd9\x33\x8d\x57\x08\xf8\x4b\xf2\x69\xf9\xa7\xd0\x22\xf4\x3a\xb4\x64\x54\xa7\x62\xae\xd0\x88\xc6\x9a\xed\xc8\xce\x8c\x31\xfe\xf5\xb2\xbc\x33\xcc\x66\x97\xba\xf9\xb1\xf9\x7e\xe3\x78\xe6\x4c\xa7\x5a\xce\x29\x1a\x1b\xc2\x1b\xcd\xda\x0c\x4c\xb9\xd7\x84\x6d\x38\x29\x7e\xf9\x77\x89\x6a\xdf\x2c\x2a\x66\x6e\xaa\x59\x93\xea\xbd\xe9\xda\xf1\xfd\x13\xf7\x13\x98\xc6\x76\x73\xbb\x7d\x6f\xbe\x7f\x65\x73\x66\xf8\x00\x93\xdf\xa2\xf0\xa7\xe3\x0e\x8d\x31\xb5\x57\xa0\x9d\x73\xf8\xe1\x0f\x7f\xa8\x19\x16\x0d\x6d\xf3\x10\x73\x98\xf4\x5e\x6b\xef\x50\x47\x88\x39\x66\x89\x3e\x34\x02\xf3\x34\x92\x3e\x52\x3a\xad\x2c\xda\x28\x2e\xa5\x63\xc5\xc0\x4f\xc8\x71\x48\xa3\x08\xc9\x61\x85\xda\x2e\x56\xa6\x98\x31\x92\xca\x44\x81\x4c\xc8\xc8\x68\x86\x52\xca\x33\x34\x1a\x8b\xd5\x9b\x44\x1b\x2b\x5f\x08\x30\x73\xfe\x9a\x2d\xd3\xe4\xd1\xf2\x9e\x46\xa6\x94\xf6\x4c\xd1\xc1\x50\x3d\x85\x68\x24\x9e\x9a\xae\xc5\xf4\x94\x07\xad\x6c\x31\x70\x28\xf5\x8d\xd4\x76\xd7\x1c\xaa\x26\xbf\x24\x4f\xcc\xbe\xd4\xf2\xbe\x7e\xfd\x7a\x76\xfd\xfa\x75\xbb\xba\xba\x9a\xbd\xfc\xf2\xcb\x65\xda\x27\x9e\x78\xc2\x2f\x1d\x79\x9b\x9c\xd1\xd9\x70\xf5\x63\xbd\x44\x86\xea\xd3\x2f\x0e\xbd\x5e\xcf\xbf\x64\x01\x6b\x2d\x7e\xf8\xc3\x1f\x6a\xb2\xd2\x32\x85\x40\xb6\x46\xab\xd1\xa7\xd4\x51\x48\xe7\x42\xf6\x40\x93\x25\xb5\x9f\x4b\x21\xa3\x1f\x59\xd4\x84\xe6\xca\xa6\xd1\x69\x05\x90\xf8\x65\x00\xd0\x6a\xb5\xb2\xb9\xb9\x39\x00\x65\x43\x66\x40\xf5\x6d\x22\x53\x1c\xf1\x3f\xdb\xcf\xe6\x97\xba\xf9\x89\xce\x20\x3b\x66\x80\x6c\x62\x43\x6d\xf1\x3b\x81\x53\x38\x91\x70\x10\x1d\x9f\xa9\xe1\x9b\x65\x6a\x13\x2a\x6c\x76\xc5\x50\x02\x9e\x15\x51\x5e\xe3\xdf\xcf\x76\x06\xce\x00\xa3\xcc\xf5\xb7\x3b\xc3\x3b\x77\x17\xfb\x57\x0e\x9a\xa3\x5d\x3f\xd3\x82\xfa\x77\x89\x6a\x87\xcd\x39\xe7\xac\x73\xce\x6e\x6d\x6d\xf9\x6c\x24\x65\xa2\xf1\xfc\x5a\x4a\x97\x62\x70\x34\x47\x0c\xc4\x15\x33\x94\xaf\x64\x28\x35\xe7\x2e\xf1\xd0\xd2\x68\x46\x58\xba\x4e\xe9\x70\x34\x4d\xc8\x31\x87\xca\x40\xe9\x42\x69\x42\x69\xf9\xf3\x98\x23\x9c\xd6\xb9\x48\x74\x3c\xf0\x76\xe5\x86\x4c\x6b\xe3\x14\x27\x18\xd2\xbf\x14\xe0\x11\xca\x27\xa4\xef\x92\xa3\xd3\xf2\x88\x95\x27\x54\x76\x29\x7f\xae\xe7\x29\x7d\x32\xe4\x64\x62\xe5\xd4\xca\xa3\xdd\xc7\xd2\x85\xf2\x51\x01\xc1\xef\x40\x86\x0f\x0b\x54\x42\x4e\x7b\x42\xc6\x8d\x8d\x0d\xfb\xca\x2b\xaf\x94\xf1\xc5\xc1\x75\x25\xcd\xdc\xdc\x9c\x6d\xb5\x5a\xe5\x72\x91\x07\x24\xd2\x2f\x00\xbb\xb7\xb7\x87\x7e\xbf\x5f\xf2\xbf\x73\xe7\x0e\x7e\xf2\x93\x9f\xc4\xfa\xa4\x26\x77\xcc\x76\xa7\xd4\x39\xd5\x47\x4d\x4f\x53\xf4\x51\x8b\x8f\xf5\x5b\x1a\x1f\xc3\x10\x19\x50\x3f\x80\x4e\x25\x62\xd7\x19\x12\x99\x0b\xe9\x6a\x4e\xf0\xdc\xb9\x73\xf8\xc2\x17\xbe\xc0\xdf\x79\xcf\x80\xf2\x30\x9f\xbc\x61\xd1\x5a\x3a\xc8\x57\x97\x0e\xf2\x93\xcd\x51\xb6\x5c\x9e\x8e\x5b\x00\x0c\x8a\x47\x54\x00\x23\x08\xe8\xd8\x32\x4f\xb5\x52\x64\xaa\x7b\x32\x4b\x33\x01\x82\x40\x97\x8c\x26\x33\xa9\x21\x6e\x43\xf1\x90\x43\x3f\x77\xfb\x0f\xe6\x06\xd7\xee\xcf\x0f\xee\x16\x6f\x11\x95\xdf\x22\x02\x01\x2d\x74\x79\xc8\x18\x83\xfd\xfd\x7d\xfc\xfd\xdf\xff\xbd\x66\xc0\xa5\xf6\xe1\xca\x03\x96\x8e\x2b\x26\x84\x6b\x1e\x34\x47\x18\x92\x8b\xe7\x4b\xc3\x34\x86\x46\xe2\xa1\xe9\x61\x68\x94\xa0\x75\xaa\x14\xde\x9a\x11\xd1\x40\x57\x2a\xff\xd4\x8e\x1e\xea\x77\x92\x41\xe2\x72\xc4\x8c\x93\x26\x37\x97\x8b\xd3\xa5\x0c\x5a\x52\xf2\x95\xca\x92\xe2\x28\x43\x79\xa5\xf0\xe6\xd7\x5a\x88\xd5\x4b\x8a\x21\x0f\xb5\x41\x8a\x2c\x21\xfb\xaa\xd5\x8b\xe4\xe8\x53\xf8\x6b\xfc\x42\xfd\x52\x03\xcd\xa1\xf6\x93\xf4\x3c\x06\x6a\x43\x6d\xac\xc9\x1b\xa2\xe1\x3c\xc4\xf8\xef\x7d\xef\x7b\xb5\xf6\xfb\xc2\x17\xbe\xe0\xf7\x69\xa6\xe8\x0f\x7e\xf6\xb3\x9f\xe1\x83\x0f\x3e\x88\xe9\x6c\x0a\x08\xe3\xf1\x29\x7d\x30\xc6\x23\xd5\x3e\x69\x32\xa5\xb4\xad\x94\x36\x34\xc0\x9a\xd0\x35\x6d\x8f\x4b\x48\xf0\x14\x25\x4a\x49\x67\x81\xf2\xa0\x1e\xba\x21\x17\x00\x32\x7f\xe8\x4f\x6b\x94\x75\x96\xbb\xf9\xf1\x85\x5e\xe3\x64\xc3\x99\x8e\x07\x08\xf4\x75\x67\xc3\x90\x43\x09\x5a\x1c\x8b\x20\x81\x2e\x33\x79\x12\x3a\x4b\x53\x9b\x89\x51\xf7\xce\xe8\xfc\x27\x5f\xb3\x1e\xdf\x8d\x32\xd7\xdf\x69\x0f\x37\xee\x2e\xf4\xaf\x6c\x77\x46\x5b\xa8\x3e\xa6\x35\x71\x4a\x2e\x3f\xc1\xd1\xd7\x0d\xc2\x8a\x20\x29\x72\x0c\x48\x82\xc4\x69\x3c\x38\x4d\x88\x97\x24\x97\x06\x24\x62\xce\x52\x92\x43\x53\xf2\xd8\xc8\x4e\x33\x66\xa9\xa3\x43\x49\x6e\x1a\x27\xf1\x8c\x95\xe5\x71\x68\x24\x30\x16\x33\x74\x31\x83\xc0\xdb\x35\x24\x4f\xa8\xbe\x53\xdb\xe0\xc3\x18\xc8\x54\x83\xfe\xb8\x86\x9c\x87\x54\xbd\x9c\x26\xc4\xfa\xb3\x7f\x06\xe1\xb9\x54\x8f\x29\xfa\xce\xe9\x3e\x4c\xfd\xa4\xfa\x8d\xd8\xf3\x50\x9f\x9b\x86\xcf\xb4\x32\x84\xc2\x54\x80\xe9\xb5\xd7\x5e\xb3\xaf\xbd\xf6\x5a\x90\x86\xc5\x6b\x21\x05\xac\x85\xc2\x34\x36\xf4\xc3\x86\x14\x20\x15\x2a\x3f\xd7\xdb\x14\x7b\x35\xc1\x84\xfe\x4a\xd7\x50\xae\x33\xf2\x97\x5a\x21\xb5\x3c\xc9\xc6\xa5\x0c\x63\x20\x93\xa1\x3a\xbf\xa5\x35\xd7\x6f\xcc\x2f\x1f\xe4\x67\x66\x06\xd9\x1a\x93\xa1\x06\x55\xe8\xa1\x71\x25\x18\x31\xf2\x4c\x49\x8d\x06\x75\xb0\xe2\xd8\x73\x1e\x38\x28\x8a\xd2\xb1\xf8\x7e\xc3\xed\x6f\xcc\x0d\xae\xdc\x5d\x18\xdc\xc6\xe4\x17\x42\x6b\xc7\xfa\xd3\xbd\x2d\x1b\x1b\x1b\xfe\xbb\x14\xdc\xd1\xf0\x76\x82\x70\x2f\x81\x12\xcd\x41\x68\xed\x4c\x79\x69\xc6\x46\x73\xd8\x9c\x26\xc5\x69\x4b\xf9\x52\x39\x63\xe0\x4d\xd2\x5f\x1a\x9f\xb1\x78\xa9\x2c\x5c\x1e\x9e\x97\x56\x5f\xf4\x79\x48\x4e\x2e\x17\x4f\x1b\x0a\x21\xe7\x2f\xc9\x23\xf5\x53\x7e\xad\xb5\x91\x96\x57\x08\x64\xa4\x18\xb6\x58\x98\xd6\x80\x4b\xed\x1a\xa3\x97\xae\x25\x39\x68\xfd\x49\xc0\x71\x5a\xde\xda\x20\x21\x45\x0f\x62\x65\x93\x80\xbd\x24\x47\x0c\xf4\x69\x00\x39\x35\x70\xfe\x92\xdf\xa0\x74\x1a\x7d\x8c\xaf\x16\xa4\x3c\xe8\xb3\x69\x75\x34\x55\x5f\x24\x3d\xd1\x6c\x17\x6f\x9b\x58\xbb\x6a\x6d\xe9\x83\x66\x5b\x52\x75\x26\xc4\x9b\xe6\x11\xf2\x3f\xb1\xb4\xd3\xda\x80\x89\x20\x29\x0e\x57\x22\x49\xb0\x69\x50\xb1\x24\x48\xf6\xdc\x73\xcf\xe1\xa5\x97\x5e\x02\x30\x5e\xb6\x21\xe7\xb8\xe4\xce\xb9\xdc\x39\x97\x65\x16\xf9\xa1\x83\x7c\x75\xf1\x20\x3f\x9d\x8f\xcc\xa2\xdf\x3b\x32\x3e\x15\xd7\xd5\xc0\x43\x6d\xd2\xc3\xd1\x4b\x27\xfe\x52\x60\x51\x82\x15\x37\x7e\xd3\xc8\x29\x68\x84\x46\xd7\xc0\x8e\x86\x5e\x98\x5c\x23\xe3\x86\xbb\xed\xd1\xc6\xfd\xf9\xc1\x8d\x87\x9d\xc1\x26\xc8\x86\x5c\xf2\x57\x3b\x70\x0e\xa4\x7e\xad\xb5\x31\x00\x02\xc8\xce\x97\x8f\x88\xe9\xaf\x46\xe7\xe3\x43\xce\x97\x77\x50\x09\x40\x49\xc6\x2a\x64\xf8\x39\x20\x0a\x22\x6f\x21\x2f\xda\x49\x35\x67\xcb\xff\x38\x7f\x0d\xa8\xa4\x00\x81\x50\x7d\xc4\x40\x0c\xe7\x4d\xef\x79\x19\x38\x7f\xa9\xee\x39\x6f\xad\x0c\x52\x48\xa1\x0b\x01\xe6\x98\x81\x8d\x3d\x9b\x86\x36\x05\x48\xc4\x68\x63\xba\x25\xd9\xc6\x90\x5c\x12\xef\x18\x10\xd0\x9c\x5a\x88\xb7\x44\x2b\xb5\xbb\x96\xa7\x96\x4f\x0a\xe8\x4e\x09\x92\x5c\x9a\x5d\x49\x05\x56\x12\xfd\x34\x65\x48\xe1\x2d\xe5\xc3\xe5\xd7\xfa\x84\xa4\x27\x29\x03\x91\x69\xca\x93\x22\x7f\xac\xdd\x69\xdc\xe3\xf8\x71\xe9\x5a\xe2\x1d\x8b\x4b\x0d\xa5\x1d\x4a\x41\x56\x92\x92\xa5\x8e\xae\xd4\xd0\x6a\xb5\xd0\xe9\x74\x32\xa0\xfa\xc6\x03\x05\x2f\xc6\x98\xbc\x69\x4d\xe7\xd0\x7e\xf3\xe4\x7c\xbf\x71\x2c\x73\xa6\x03\x8c\x67\x68\x0c\x4c\xed\xed\x1e\x53\x1e\xd3\x4f\xcf\xca\x2d\x9e\x95\xaf\x4b\x93\x5f\x0e\x34\xca\xfb\xf1\x46\x17\xff\x86\x34\xa7\x33\x13\xf4\x45\xbc\xc0\x52\x0a\x83\x86\xdb\xdf\x9a\x19\xde\xd9\x98\x1b\xdc\xb2\x59\x1d\xb0\x14\x60\x45\x3c\xe6\xf9\xee\xdd\xbb\xf6\x47\x3f\xfa\x91\x67\x93\xd2\x01\x7c\x88\x8d\x22\x53\xe8\x42\x60\x24\x04\x68\xfc\x75\x4c\xc1\x35\xa0\x22\xd1\x84\xe4\x7d\x1c\x83\x2a\x01\x29\x89\x46\xd3\xf3\x90\x03\xe1\xa3\x9d\x18\xa8\x0b\x05\xcd\xc0\x6b\xc6\x2e\x06\xc2\x78\x1b\x86\x40\x52\x4c\x87\x42\x6d\x13\x03\xb6\x29\x79\x70\xda\xd0\xb3\x14\x60\x4b\xef\x53\xaf\x53\xf2\xa6\xf4\xa9\xe5\xd5\xc0\x78\x4a\xbe\xd3\x02\xce\x14\x60\x93\xc2\x97\xeb\x73\x0c\xd4\x6a\x0e\x9e\xf3\xa4\x72\xc4\xfa\xa3\x0f\xdc\xb6\xa4\xf4\xa9\x14\xd0\xc6\x03\xd7\xe1\x14\xfb\xa7\xf5\x79\x89\x9e\x5f\xc7\x00\xcc\xe3\x0c\x2a\xf8\x20\x4d\xca\x5f\x2b\x57\x8a\x0d\xd0\x9e\x85\x78\xa7\x82\x98\x09\x7b\x25\x29\xa0\xf6\xc7\x33\x93\x94\x24\xa4\x34\x13\x9d\x95\x7e\x9b\x88\x9c\xdf\x52\x2d\x13\xf5\xc6\xcb\x44\xed\x41\xb6\x62\x60\xf2\x92\x13\x5f\xa6\x29\x5f\x61\xf6\xcb\x4e\x3a\xc8\xf0\x64\xe2\x52\x91\x02\x58\xc4\xf4\x6c\x9a\x85\xbf\x98\xc4\x83\x85\xb3\xdd\x7c\xb4\xbd\x39\x3b\xb8\xb5\x35\x33\x78\x50\x9c\x92\x5b\x82\x17\xf2\xa1\xad\xda\x29\x8a\xc5\xeb\x72\x78\xf8\xf0\x21\x20\x2b\xac\xe4\x38\x34\x60\xc9\x9d\xa9\x14\x24\x85\x97\xf2\x4a\x35\x84\xfe\x9e\x83\x93\x69\x41\xaf\x06\x08\xa4\x7c\x24\x83\xc6\xf9\x00\x93\x72\x84\x0c\x92\x64\x64\x25\x23\xce\xdb\x42\x02\xfd\x52\xfb\x48\x75\x16\x92\x5b\x32\xe2\x9a\xa1\xa0\x72\x4d\x53\xf7\xbc\xbd\x24\x43\xcc\xeb\x5a\xe3\xad\xe9\x8e\xe6\xbc\x39\x9d\x74\xcf\xe3\x35\xa7\x12\xca\x83\x87\x69\xf5\x31\x74\x2d\x81\x36\x49\x96\x98\xc3\x95\x9e\x87\xfa\xb1\xd6\x4e\x92\x4d\x4f\x01\x09\xd3\x3a\x5c\x9a\x9f\xc4\x2f\x46\x93\x0a\x14\xb9\xbc\xa1\x6b\x5e\x6f\x1a\x8f\x90\x2f\x4b\xd1\x47\x9a\x4f\x4c\x07\x43\x79\xa5\x0c\x06\x42\x3c\xb5\x10\x6a\x13\x4d\xae\x10\x8f\x0f\x13\x42\xa0\x9f\x5e\x4f\x80\x2e\xba\x39\x77\x1a\x23\x26\xc5\x73\xe3\x08\x21\x2e\x03\x60\x9f\x7a\xea\xa9\xec\xcc\x99\x33\xfc\x5d\xf7\xf2\x4d\x22\x00\xe3\x65\xa2\xfd\xe6\xea\x62\xb7\x71\xb2\x69\xcd\xe2\xf8\xbc\x38\x57\x1d\x18\x07\xb6\x8f\x84\xbe\x24\x44\xbe\x33\x34\x71\x2e\x0b\x2a\x70\x42\xf7\xc2\xf0\x8f\x2b\xf2\xd7\xa4\xf9\x59\x2c\xf4\x30\xba\x92\x07\x26\xaf\x7d\x18\x65\xae\xbf\xdb\x1e\x6d\x3c\x9c\x19\xde\x39\x68\xda\x6d\xf2\x31\x2d\xfe\x09\xf3\xda\x29\xb9\xf7\xee\xdd\xb3\xef\xbc\xf3\x0e\xad\x53\x1f\x1e\xa7\x73\x6b\x23\x64\xcd\x08\x49\xed\x29\x39\xa0\x90\x31\xa0\xf9\x48\xf9\xc5\xd2\x84\x80\xc8\x34\xce\x48\x02\x0b\x9c\xbf\x54\x3f\x29\x65\x0b\x81\x1f\x9a\x87\xe6\x54\x43\x79\x73\x39\x42\xb2\x4a\xe9\x42\xf9\xf1\xe7\xd3\x00\x30\xe9\x59\x4c\x7e\x7a\x9d\xca\x53\x2b\x07\xa7\x8d\x3d\x4f\x95\x4d\xcb\x8f\xf3\x89\xd5\xbb\xa4\x5b\x12\x7d\xa8\x3d\x62\xb2\x4a\xba\x19\x2b\x97\xc6\x3b\xa5\x1d\x53\x64\xa5\x72\xc5\xfa\x95\x94\xbf\x14\x52\x74\x25\x24\x8b\x96\x4f\xcc\xf6\x85\x74\x46\xcb\xcf\xc7\x6b\x76\x64\x9a\x3e\xad\xd5\xb7\x64\xcb\xf0\xe2\x8b\x2f\x66\x33\x33\x33\x34\x5d\xc8\x6e\x65\x6f\xbc\xf1\x06\xfd\xb8\xe4\x04\x3f\xe1\x97\xd3\xc5\xf2\x98\xc8\x53\xe0\xa5\xe5\x4d\xaf\x27\xda\x58\x7b\x1d\x9a\x33\x97\x1a\x3b\xd4\xa8\x92\xa2\x95\xe9\x8e\x1e\x3d\x8a\xb5\xb5\xb5\xb2\x72\xfd\x1b\x45\xf4\xc4\xdc\xcc\x99\xd6\xca\x7e\xf3\xf8\x5c\xbf\x71\xac\x61\xcd\xac\x99\x38\x70\xa5\x0a\xfc\x11\x7b\x13\x59\x4d\xe3\x4c\x3d\xa2\x9c\x6d\xa9\x1f\xd7\x32\xc9\x87\x6d\xa8\x09\x1c\x36\x04\x7f\xbe\x6f\xbf\xe1\xf6\x1f\xce\x0e\xef\x3d\x9c\x1d\xde\xb5\x19\xba\x06\x86\x7e\x09\xd4\xcf\xb8\x58\xa0\xf6\xbd\x0a\x6c\x6d\x6d\xe1\xfa\xf5\xeb\xb1\x0e\x4d\x43\xcc\x10\x70\x63\x17\x32\x9e\xd2\x08\x20\xd6\xe9\x43\xb2\xa5\xd2\x85\x46\x12\x31\x87\x16\xe2\x97\x32\x12\x8b\x95\x6f\x1a\xc7\x30\x4d\x1f\x99\xc6\x70\x4b\x23\x30\x29\x0d\xcd\x33\x64\xfc\x25\xf9\xe8\x7d\xcc\xe8\xa7\x3a\x16\xce\x5b\x1b\x61\x4a\x86\x31\xd5\xc9\x6b\x61\x1a\xd9\xe8\xb3\x90\x43\x0f\xd5\x87\xc6\x2f\xe6\xfc\x34\x7d\x08\xd9\x5d\xed\x59\x2c\x6f\x29\x1f\x49\xa6\x58\xbc\xf4\x7c\x9a\x3e\xfa\x38\x7a\x05\x00\x38\x74\xe8\x10\xce\x9d\x3b\xa7\x3a\xea\xf5\xf5\x75\x3c\x7a\xf4\x88\xe6\x1f\x73\x8c\x31\x5a\x1e\x42\x69\x53\x6d\x8b\x28\x7b\x20\x4f\x3b\x3b\x3b\x9b\x7d\xec\x63\x1f\xab\xa5\x39\x7f\xfe\x3c\x3a\x9d\x4e\x8d\x17\x3f\x0c\x8f\x9c\x2b\x63\x47\xa3\x11\x7a\xbd\x5e\x49\x7b\xeb\xd6\x2d\xdc\xbe\x7d\x3b\x25\x7f\x49\xde\x98\xcd\xf6\xbf\x9a\xae\x72\x1b\x1d\xd4\x35\x7a\x00\x5d\x8a\x41\x0b\x29\x5c\x8c\xbe\x26\x3c\x79\x0d\x9a\x1e\x97\xec\x81\x54\xde\x1a\x9a\xce\x52\xb7\x71\xaa\x3d\xcc\x56\x0c\x90\x4f\x7c\x10\xb1\xf8\xcf\x90\x69\x10\xe7\x0c\xca\xc3\x6c\x01\xb2\x84\x44\x3e\x0e\x50\x7b\x45\x7a\x1c\x5b\x1e\xd7\xe2\x02\xa0\x47\x38\xab\xa5\x76\x28\x9d\x1a\x0c\x9c\x71\xf6\xa0\x65\xb7\x1e\xcc\x0e\x6e\x6d\x77\x86\x5b\xc5\xc9\xb8\x5d\x7a\x3a\x2e\xfd\x3a\xa8\x3f\xe2\x7f\x63\x63\xc3\xde\xba\x75\x2b\xc4\x3c\xd6\x66\xa9\x23\xe7\x69\x0d\x9a\xa4\x7c\x21\x43\x1f\x43\xda\xb1\xb4\x60\xd7\x9a\x0c\x52\x59\x62\xb2\x6a\x41\x92\x87\xf3\xe7\xbc\xb5\x8e\x1a\x92\x2d\x16\x24\x59\x43\x0e\x92\xc6\x6b\x74\xa1\xb2\x84\x82\x54\xc6\x90\x01\x4b\x05\x55\xb1\x3c\xa5\xfc\x43\x41\xb2\x3b\x29\xa0\x87\xa7\xd3\x74\x8b\xf7\x23\x4f\x1b\xd3\xa7\x90\x9c\x1a\x7d\xc8\xf8\x4f\x9b\x47\xc8\x7e\x6b\xfd\x38\xa6\x17\x21\xba\x14\x39\x53\x06\x0b\x19\x00\x7b\xf6\xec\xd9\x6c\x76\x76\xb6\xc6\x68\x75\x75\x15\xcf\x3e\xfb\xac\x0a\x1a\x3b\x9d\x8e\xe5\xcb\xec\x7b\x7b\x7b\xb8\x7a\xf5\xea\xb4\xc0\x42\x2b\x53\x88\x8e\x3f\x97\xec\xaf\x04\x92\xc4\xfc\x57\x57\x57\xb3\xb5\xb5\x35\x00\xc0\xfc\xfc\x3c\x5e\x78\xe1\x85\x90\xbe\x65\xc0\xa4\x7f\xa2\x9f\x28\x78\xfe\xf9\xe7\xe9\x23\xbb\xba\xba\x8a\x43\x87\x0e\x61\x7b\x7b\x1b\x37\x6e\xdc\xa0\x72\x68\xbe\x20\x15\x37\xd0\x6b\xad\x0f\x4b\xf5\xa0\xa6\xcd\x19\x81\x64\x94\x34\x63\x1f\x32\x08\x92\xe0\x00\x80\x23\x47\x8e\x64\x8b\x8b\x8b\xfc\xc0\x39\xff\x9b\x15\x32\xe5\x8b\xdd\x7c\x71\xbe\xd7\x38\x99\x5b\x33\x2f\xcd\x9b\x94\xb3\x2c\xe5\x67\x81\x3c\x68\xf1\x08\xb3\x3e\x5f\x32\x71\xf6\x4a\x11\xeb\xd4\x69\x15\x0f\x64\xfc\xb6\x5f\x53\x07\x4e\xc2\x17\x9f\x1d\x1c\x4c\xb1\x36\xe5\x08\x28\x1a\x1a\xd7\xdf\x6e\x0f\xef\x3d\x9c\x1d\xde\xe9\x36\x2d\x3d\x29\xb7\x76\x6e\x8b\xaf\x2f\xaf\x5c\x37\x6e\xdc\xc0\xa5\x4b\x97\xb8\x42\xd3\x90\xe2\x68\xa4\xfb\x18\x00\xcd\x94\x78\x1a\xa7\xc9\x92\x02\x36\x38\x3f\xe9\x57\x53\x74\xc9\x69\x84\xf8\xa7\x74\x2c\x0d\x10\x49\xf2\xa4\x8e\x14\x42\x0e\x3e\xe6\xd0\xa5\x7b\x0d\xe0\x69\x3c\x24\xe0\xa5\xdd\xc7\x0c\x35\xd8\xf3\x54\xbd\xd2\xca\xc1\x79\x84\xea\x54\xfb\x95\xe4\xd0\xf4\x4e\x8b\x9b\x06\x64\x85\xf2\xa3\xfc\x43\xe0\x2a\x05\x30\x6b\x6d\x12\xd3\x4b\x2d\x8e\x86\x98\x9e\x4a\xfd\x3e\xe4\x0b\x24\xde\x92\xde\xc5\xea\x8d\x87\xd2\xe9\x9e\x39\x73\xa6\x8c\x7b\xe9\xa5\x97\xb0\xbc\xbc\x5c\xa6\x15\x0e\x2e\x05\x7f\xf6\xdc\x73\xcf\xf9\x97\x3e\x4a\xda\xcd\xcd\x4d\x4b\x06\xcb\xb8\x72\xe5\x8a\xd6\x2e\x29\x00\x5b\xea\x6f\x31\xb0\x88\xc0\xf3\x09\xba\x23\x47\x8e\x64\x73\x73\x73\x78\xf2\xc9\x27\xf1\x91\x8f\x7c\x84\x97\x33\xab\xb6\x2d\xd4\x26\x03\x26\x18\xb2\x49\x02\x4b\xe8\xac\x73\x2e\x3b\x73\xe6\x0c\x4e\x9f\x3e\x8d\x7b\xf7\xee\xd9\x3c\x1f\x43\x03\x6b\x6d\x76\xed\xda\x35\x2e\x93\x0f\xbc\xce\xb4\x72\x4a\xf5\xab\xe9\x62\x48\xe7\xcb\x74\x39\x4b\x18\x33\xba\x29\x8e\x21\xd4\x78\xd9\x27\x3e\xf1\x09\x9c\x3e\x7d\xba\xf6\x41\x45\x7f\x76\x0b\xd9\x9c\xdb\x5a\xdd\x6f\xae\x15\xcb\x44\x9d\x49\xd8\x40\x94\xd6\x54\xe7\xaf\xf8\x19\x90\x6a\x3a\x6c\x4c\x4b\x01\x4d\xf9\x81\xc6\xda\x33\x54\x20\x08\xf5\xcd\xba\xe5\xf1\x76\x6c\xf9\x48\x9a\x68\x31\x64\x43\x4d\xf9\xf6\x92\x71\xe8\xe5\x76\x7b\x73\x76\x70\x6b\xbb\x3d\xbc\x8f\xfa\x5b\x44\xb5\x4d\xb9\x7e\x6f\x8b\xd0\x21\x53\x3b\x05\x0f\x5a\xda\x90\x93\x0a\x3d\x87\x22\x03\x7f\x2e\x39\x39\x6e\x70\x29\xad\x56\x36\x89\x86\x3f\x83\xf2\x8c\xcb\x84\xc8\xf3\x10\x7f\x1e\xa7\xe5\xaf\x81\x03\x9e\x0e\x42\x3a\x29\xbf\x98\x03\xd2\x1c\x34\xbf\x96\x74\x26\xe6\x90\xb8\xf3\x12\xfb\xb3\x20\x5b\x0c\xa4\x50\xba\xd0\xf3\x94\x74\x34\x3f\x4d\xef\x38\xbf\xd4\x3e\x11\x72\xb8\xbc\x5e\x38\xbd\xc6\x2b\x56\x5e\x8d\xf7\xb4\xe5\x92\xfa\x0e\xbd\xd7\xf2\xa4\xd7\xbc\xfc\xa9\x7a\x95\x2a\x2f\x0f\x65\xfa\x66\xb3\x89\x95\x95\x15\xe4\x79\x8e\x3f\xfc\xc3\x3f\xf4\xcf\xca\x40\x8f\xd6\x67\xe9\xc5\x7c\x18\x9d\x5d\x59\x59\xc9\x0a\xbe\x00\x80\x7f\xfc\xc7\x7f\xb4\x85\x0f\xc2\xc3\x87\x0f\xe9\x71\xfc\x31\xc0\xc1\xef\x43\xe5\x0f\xd9\x4b\x51\xee\xc3\x87\x0f\x67\x79\x9e\x67\x2f\xbe\xf8\x22\x4e\x9c\x38\x41\xd3\x95\xd7\x1e\x88\x10\x00\x93\x49\xa0\xa5\xa0\x2d\xaf\xfd\xd7\xad\x8b\xbc\xe8\xc7\x22\xed\xda\xda\x5a\x59\x3f\x83\xc1\xc0\xfe\xe0\x07\x3f\xc0\xdd\xbb\x77\x63\x6d\x9d\x05\xe2\x43\xe5\xd5\x74\x25\x04\x6e\x6d\xe8\x23\x8b\xdc\x58\x49\x0d\xa6\x19\x01\xcd\x28\xd0\x8e\x55\x6b\x08\xf2\x51\xc5\x96\x71\xc8\x0f\xed\xe7\xa7\x3a\x83\x6c\xc5\x38\xe4\xe2\x4e\x15\x3e\x05\x56\xfc\x96\x00\x05\xf5\xd7\x94\xcb\x46\x23\xa0\x64\x62\xb9\x89\x6f\xe4\x75\xf5\x37\x94\x26\xd7\x0b\xfd\x8c\x8c\x99\x78\xe6\xf9\x59\x83\xe1\x5e\xcb\x6e\x6e\xcc\x0f\xee\xec\x74\x46\xdb\xa8\xf6\xb4\x94\xe0\x05\x98\x38\xde\xdf\x76\xbb\x5d\xdb\xeb\xf5\x78\x3d\x03\xb2\xf2\x80\xc5\x69\x86\x32\x66\x94\x34\x83\x2a\x19\x6c\x4d\x06\x1e\x9f\x02\x86\xb8\x1c\x3c\x0f\x7f\xaf\x39\xdd\x98\x83\x0c\xc9\xce\x81\x06\xd8\x75\x8a\x6c\x12\x8d\x36\x7a\x90\xe8\x35\x99\xa4\xb2\x73\x5e\xa1\x36\x0b\xb5\x57\x0c\xc0\xf1\x3e\x1b\x73\x40\x21\x7d\x9c\x36\x4e\xe2\x1b\x02\xb5\x1a\x9f\x10\x88\x95\xec\x14\xe7\x1d\x02\x37\xa1\xfa\xd5\xda\x2d\x24\x53\x0c\x34\x4a\xd7\x94\x56\xd3\x07\x4d\x0f\x63\xf1\xa9\xfd\x9a\xf7\x1f\xad\x2c\x51\x80\xdc\x6c\x36\xb3\x4e\xa7\x83\xd5\xd5\x55\x7c\xfd\xeb\x5f\x2f\x67\x4a\xc0\xea\x8c\x9e\xb0\x0e\x4c\xcc\x24\xd0\x60\xc9\x73\xa9\x7d\x01\xc0\x7e\xf3\x9b\xdf\x2c\xd3\xfe\xf8\xc7\x3f\xb6\x1f\x7c\xf0\x01\x06\x83\x81\x56\x1f\x5a\xfd\x84\xfa\x98\x66\x67\xd4\xfe\x38\x3f\x3f\x8f\x3f\xf8\x83\x3f\xc0\xd2\xd2\x92\x04\x58\x32\x00\x74\x9b\x45\x56\x0c\xd8\x33\x56\x0f\xb5\xd9\x17\x02\x56\x60\x26\x4f\x64\x2f\x65\xf3\x75\xe5\x9c\xb3\xcd\x66\x33\xfb\x93\x3f\xf9\x13\xfb\xdd\xef\x7e\x17\xa3\xd1\x28\xdb\xdb\xdb\xc3\xf8\x38\xb1\x5a\xd0\xfa\xb4\x54\x2f\x9a\xfe\x71\x3e\x41\x3f\x17\xfb\xc8\x62\xa8\xf3\x4a\x99\x48\x9d\x6d\x42\x28\xf6\xe1\xa9\x12\xc8\xf8\xc3\xe7\x66\x06\x8d\xce\x52\x37\x3f\xdd\x1c\x65\xf3\x06\xc8\x0d\xea\xa0\x41\xdd\x70\x54\xdb\x28\x5b\xcc\x8d\x14\xe8\xa3\xda\xe5\xc2\xbe\x64\x44\x66\x68\xc6\x4f\xc9\xec\x0e\xc7\x4b\x22\x92\xf5\xb3\x38\xd2\x06\x18\x60\x98\xb9\xee\xd6\xcc\xf0\xd6\xa3\xce\xf0\xee\xb0\xe1\xf6\x01\x74\x8b\x3d\x2e\x74\xb6\x85\x9e\xdd\x02\xe7\x1c\x7e\xf5\xab\x5f\xe1\xad\xb7\xde\x0a\x19\x0f\xcd\x88\xc7\x1c\xa6\xd6\x59\x42\x69\x25\xc3\x9b\x22\x1b\xe5\xcb\xd3\x70\x23\x2f\xc9\xa6\x39\x4f\xcd\x38\x48\x41\xeb\x00\x9a\x6e\x67\x98\x94\x8d\xcb\x29\x75\x2e\x5e\x06\xc9\xd0\xc5\x1c\x90\x26\x3b\x97\x37\xd4\xf1\x79\x3a\x29\x3e\x64\x34\xa6\x75\x38\x5a\xf9\xb8\xcc\x52\x99\xb4\xf2\xa4\x1a\x37\x1e\xa4\xf8\x69\xf8\xa4\xca\xa0\xe5\xc9\xf5\x42\x92\x49\xe3\xa9\xc9\x9e\xc2\x4f\x0a\x21\x9b\x2e\x05\x29\x2f\xcf\x67\x5a\xd9\x52\xe3\x32\x00\x36\x1b\x07\x7c\xf4\xa3\x1f\xc5\xe7\x3f\xff\x79\xcd\x51\xf3\x5f\xed\x19\x80\xd2\x1e\xdb\x02\xfc\x4c\xf8\x27\xe2\x43\x6a\x76\xe6\xcb\x5f\xfe\x72\x96\x65\x99\x5d\x5f\x5f\x87\xb5\x36\xb3\x93\x5e\x3a\xe4\x2f\x27\xca\x26\xc4\x87\xd2\x65\x7e\x89\xe6\x4f\xff\xf4\x4f\xd1\x6a\xb5\xb4\x72\x7b\x7f\x59\xbf\x87\xc9\x32\xeb\xaf\x7d\x1a\x32\x7a\x1f\xfb\xaa\x21\x00\x38\x03\xeb\x8a\xbe\xe7\x50\xce\xf4\xdb\xc2\x27\x65\x7c\x46\xe6\x3b\xdf\xf9\x0e\x9c\x73\x78\xe5\x95\x57\xec\x9d\x3b\x77\xf8\x71\x20\xd3\xd6\x43\x32\x98\x15\x78\x67\xc0\x78\xc6\x45\xcb\x98\x0b\x10\xeb\x00\xa1\x86\xaa\xdd\x53\xd0\x52\xa0\xc4\xdc\xbf\x0a\x6d\x8c\xc9\x56\xf7\x9a\x2b\xf3\xbd\xc6\xc9\x86\x35\xb3\x1e\x18\x50\x14\x41\xbf\x33\x44\x97\x6d\xe8\x72\x92\x61\xe9\xfc\xd2\x0d\x05\x18\x7e\x0f\x4a\xb5\x85\x97\xf3\xa8\x87\x89\x9d\x33\xa6\xfe\x4b\x83\x5f\x35\xea\xe5\x76\xfb\xfe\x42\xff\xd6\xce\xf8\xbb\x44\xe5\x9e\x16\xf2\xfa\xb3\x25\x7f\xbc\xde\x34\x74\x4f\x43\xa8\x5d\x1e\xd7\x01\x50\x5e\x29\x74\x29\xc6\x5d\x34\x30\x91\x34\xa9\x79\xf2\x11\x8c\xd4\x09\x62\x65\x09\x01\x25\x49\x26\x0e\x18\x25\x7e\x52\x90\x78\x4f\xdb\x3e\xbc\xbc\x12\x7d\x0c\x2c\x48\x69\x24\x30\xa9\x81\x2c\xc9\x00\xf1\x76\x96\xea\x46\x33\x4a\x29\xe0\x86\x3f\x4b\x0d\x21\xc3\x4a\xaf\xb5\x38\x4d\x9f\x80\x70\x3b\xa5\xc8\x13\xd2\xb3\x94\x41\x42\x28\x8f\x50\x5f\x0b\xf5\x07\xa9\x8d\x1e\xa7\x9c\x49\xa0\xef\xf3\x9f\xff\x3c\xce\x9f\x3f\xef\xe9\xcb\x5f\x36\xb3\xa2\xfd\x71\xba\x5a\x7e\x64\xa6\x85\xda\x59\xfe\x0d\xb8\xda\xb1\x20\x5f\xfa\xd2\x97\xf0\xa5\x2f\x7d\x29\xfb\xcd\x6f\x7e\x63\x7f\xfe\xf3\x9f\x07\x65\x7f\x8c\xa0\xda\x8d\xb9\xb9\x39\xfc\xc5\x5f\xfc\x05\xa7\x93\xca\x9c\x7b\xbf\x49\xe3\x8f\xed\x34\xe7\x4f\x6d\x75\x56\x0f\xed\x37\x57\x66\x06\xd9\x72\x6e\xcd\x6c\x66\xd1\x32\x30\x18\x66\xae\xdb\xcb\xed\xf6\x41\x73\xb4\xb5\x3d\x63\xb7\xee\x2c\xf4\xb6\xee\xcf\xf7\xf7\x7b\x8d\xf2\xa5\x10\xff\x9b\x93\x6b\x8b\xb1\xbf\x02\x30\xae\xcb\x6f\x7c\xe3\x1b\xf8\xd7\x7f\xfd\x57\x5c\xbd\x7a\x35\xb5\xbc\x92\x1e\xf1\x67\xa1\x6b\xd1\xae\xe5\xc2\x83\x94\x91\x86\x64\xc8\xf8\xf3\x09\x9e\x7f\xf4\x47\x7f\x94\x9d\x3c\x79\x12\x40\x09\x20\x4a\xd4\x48\x0f\x9f\x3b\xba\xd3\x3a\x3e\x33\x68\xac\x35\x1c\xc6\xa7\xe5\x16\x4c\xf8\x4c\x4b\xfd\x6a\xf2\xb5\x9f\x09\x40\x21\xee\x4b\xa9\xe2\xab\xaf\x41\x07\x3e\xfb\xec\x0f\xbf\x33\xfc\xc9\xe4\x87\x1e\x47\xc6\x0d\xf7\x5a\xa3\x8d\x07\xb3\x83\x7b\xfb\xcd\xd1\x36\x8a\xaf\x89\x53\xe6\x2c\x00\x00\x20\x00\x49\x44\x41\x54\x3f\x9b\xf1\x07\x15\xe9\x9b\x44\xb5\xe9\xcc\x57\x5f\x7d\xd5\x5e\xba\x74\x09\x88\x1b\xdc\x58\xd0\x0c\x72\x6c\x14\xc5\xe3\xb4\xce\xc6\xf9\x7f\x58\x00\x1c\x92\x29\x05\x14\x4f\xe3\x10\x63\xf4\x21\x39\xe9\xbd\xe4\xbc\x25\xfa\xc7\xe1\xed\xc3\x34\xbc\x63\x21\xa5\x6e\x52\xe5\x4b\xad\xbf\x98\x23\xd4\x6c\x4e\xcc\xa9\xa6\x3a\x6f\x89\x77\xea\x8c\x0b\x97\x63\x5a\x5b\x19\x0b\xd3\x80\x8f\x0f\x33\x88\x88\xa5\x0d\x8d\x72\xa5\xb8\xd4\x81\x0f\xa7\xad\x5d\x7f\xe5\x2b\x5f\xc1\xb9\x73\xe7\x7c\xbc\xff\xf5\x03\x5a\xa0\xf2\x51\x19\xbd\x36\x0e\xf9\x5c\xaf\x91\xaf\xee\x35\x67\x0f\xed\x37\x17\xe7\xfb\x8d\xf9\xf6\xc8\x74\x1c\x80\x7e\xe6\xba\xfd\xdc\xf6\x7b\x4d\xdb\xdd\x69\x8d\xf6\x1f\xcc\x0d\xf6\x77\x3a\xc3\xfe\x28\x03\x9d\x55\xf0\x4e\xd9\xf7\x2b\x3f\xcb\x50\x02\x9a\xe7\x9e\x7b\x0e\xad\x56\x2b\x7b\xf5\xd5\x57\x3f\x6c\x1b\xc7\xf4\x24\x3b\x7c\xf8\x30\xbe\xf9\xcd\x6f\x6a\xf5\x50\x2b\xbb\x73\x2e\xcf\x60\xf2\x99\x7e\xd6\x3a\xf5\xb0\xb3\x72\xea\xff\x63\xed\x5d\x9f\xe4\x38\xae\x3b\xd1\xdf\xc9\xaa\xae\xae\xee\xe9\x79\x62\x30\x18\x0c\xf1\x18\x42\x20\x08\x42\x34\x04\x90\x26\xf8\x16\x4d\x8a\x21\xca\x96\xd6\x8f\x6b\xdd\xd0\xd2\xe1\xeb\x1b\xe1\x7b\x1d\xf7\xaf\xda\x2f\x1b\xb1\x5f\x1c\xe1\x0f\x1b\x61\x47\x78\xd7\xda\xf0\x5d\x5f\x59\x72\x48\xa6\x4c\x51\x12\x41\x52\x14\x4d\x42\x20\x08\x0c\x06\x83\x41\x4f\x4f\x4f\x77\x75\x55\xe6\xfd\x50\x95\x59\x27\xb3\xb3\x1e\x43\x6d\x22\x06\x5d\x95\x95\xaf\xca\x3a\x79\xce\xef\x9c\x3c\x99\xb9\x1f\x6f\x2f\x4f\x82\x4b\xfd\x24\xf8\x4a\x37\x15\xe7\x42\x49\x6b\x42\x61\x40\x0a\x11\xca\x05\x38\x89\x24\x4c\x24\xa9\xb1\x14\x18\x26\xc1\xc2\xdd\x71\x27\xbb\xf9\x60\x61\xf6\xc1\xad\xd5\xc9\xa7\x77\x97\x92\xfd\xc3\x28\x9b\x28\x42\x8a\x1c\x18\xe9\x73\xf3\x04\xeb\x27\x01\x00\xdf\xf8\xc6\x37\xa4\x94\x52\xfc\xf4\xa7\x3f\xc5\x7b\xef\xbd\xd7\xf8\x8d\xe1\x1f\x3f\x6d\xc6\x3f\x3c\xf7\xc6\xe2\xd2\x86\x99\xbb\xa1\x89\xb0\xbd\x65\x86\x61\x68\x1d\xa6\xe8\x5c\x6b\x14\x19\xad\x8d\x3b\xe7\xa3\x8c\x56\x08\x10\x66\x63\x38\xb2\xad\x21\x76\xb0\x41\x83\x6f\xc5\xcf\x5c\x0e\xe7\x54\xc6\xd2\xe7\x25\xbf\xd1\x76\x1a\x37\x38\xae\x32\xfc\xc9\x5c\x4c\x26\x54\xb2\xdf\x4b\xef\x1e\x46\xd9\x03\x49\xe5\xb9\x44\xc5\x54\x91\x77\x7b\x7f\x00\xc8\xb2\x8c\x9f\x4b\xe4\x32\x2f\xa0\x9a\x28\xdc\xb8\x36\xe8\xb6\x2a\x5d\x1d\xc3\xf7\x85\x36\x0c\x55\xa7\xf3\xb5\xd1\x57\x2f\x9c\x3c\xbe\xeb\xba\x7a\x78\x79\xbe\x34\x55\xf5\xb6\x79\x5f\x9d\xb7\xad\x50\xac\x6a\x5b\x55\xb9\x6e\x3f\x34\x29\x18\x4d\x75\xc2\xf3\xbc\x6d\x3f\xd6\x5d\xfb\xbe\xa7\x1b\xe7\xeb\xcf\xa6\xef\xc8\xcb\xe2\xa1\xa9\xef\xdc\xbc\x6d\xc1\x62\x9b\xb2\xdc\xd0\x86\x57\xd6\xd1\x7a\x53\xf9\x3c\x6d\x15\x0f\x70\xcb\x68\x12\x18\x6d\xca\x68\x13\xda\xa4\x73\xdb\x64\xe2\xff\xe0\x0f\xfe\x00\x8b\x8b\x8b\xe8\xf7\xfb\x08\x82\x60\xce\xaa\xc0\xf7\xf4\xd2\x7f\x61\x46\xe1\xc6\x28\x1a\x6c\x3d\x8a\x36\xd7\x0f\x3b\x17\x16\x92\xe0\x2b\xf1\x4c\x6c\x45\x99\x58\x0b\x24\xfa\x54\x1c\x0b\xa3\x08\x89\x24\x95\x28\x42\x92\x0a\x39\x9c\x84\xf2\xce\x61\x24\xff\x7d\x18\xa7\xb7\x76\x07\xb3\xbb\xf7\x16\x93\xbd\x87\xfd\x74\x82\x12\xbc\x68\x21\x6d\x35\x32\x08\x02\x5c\xb8\x70\x01\xa7\x4f\x9f\xc6\xfe\xfe\x3e\xfe\xdb\x7f\xfb\x6f\xc7\x79\xf7\x36\xfd\x0d\x00\xe2\xf4\xe9\xd3\x78\xfd\xf5\xd7\xd1\xe9\x74\x2c\xd0\x82\x72\xc1\x8a\xe9\x07\x21\x11\x2d\x4d\x3a\xfd\xed\xbd\xf8\xcc\xd9\xfd\xf8\xda\xca\x51\xf0\x6c\x3c\x0b\x2e\x74\x32\x5a\x17\x8a\x96\x84\x42\x9f\x6c\xb0\xe7\xd4\x4d\x52\x01\x32\x26\x4c\x16\x12\xf1\xd2\xca\x51\x70\x77\xeb\x51\xf4\xc9\xa3\x5e\xf6\xb3\xcf\x57\x26\xef\x7e\xb6\x3a\xb9\xb5\xd7\x4b\xc7\x8a\x90\x14\x32\x39\x61\x53\x46\x46\x8e\x03\xc0\xb5\x6b\xd7\x64\x18\x86\xe2\xa7\x3f\xfd\xa9\xef\x1b\x57\xbd\x73\x1b\x5a\xf7\x05\x8b\x96\xdc\xe5\xd0\x4d\xc1\x65\xa6\x6d\x06\x6e\x65\x59\x7c\x65\x11\x80\x90\x40\xe1\x60\x1a\xf4\x97\x26\xc1\xb9\x30\xa3\x3e\x00\xa1\x01\x85\xe5\x34\x0b\xd7\xc6\x32\x6f\x69\xe1\xcb\x91\xc9\xcd\x58\x64\xd1\xc6\x15\xab\x64\xaa\x86\x47\x4e\xca\x5a\x18\x05\x00\xd3\x40\x0d\x77\x07\xb3\xbb\x47\x91\x1c\x2a\xa8\x84\x60\xf9\xb4\xb8\xa0\xc5\xf7\xf1\x79\xff\xb6\x65\x2a\x4d\xcc\xaa\x29\x4f\xd3\xb3\x2f\xcb\xec\x1a\x81\xad\x73\xdd\x04\x5e\x9a\xea\xf1\xa5\xf5\x31\x77\x1e\xdf\xd4\x36\x37\x6d\x55\x9a\x2a\x41\x5d\x07\x42\x7d\xed\xa8\x7b\x5f\x5f\x9d\x6d\xda\xe6\xab\xc7\x17\xda\xf4\x77\x1d\x5d\x36\x09\x56\x5f\xba\x3a\xc0\xd3\x54\x7e\xdb\xfa\xdb\xe6\xf1\x5d\xb7\xb5\x66\x54\xbd\xc3\x97\x61\xd8\x6d\xd3\xb4\x05\x66\x5f\x56\x70\xd4\x85\xb6\x34\x00\x00\xf2\xf7\x7f\xff\xf7\xc5\xe6\xe6\x26\xc2\x30\x74\x05\x35\xb7\x2c\x84\x50\x08\x03\x85\x70\x65\xdc\xe9\x9f\x79\xd4\xdd\x3a\x71\xd8\xb9\xb4\x72\x14\x3e\xb5\x38\x0d\x2e\xc4\x33\x71\x26\x90\x62\x3d\x50\xe8\x33\xcb\xc2\x9c\x5c\x52\x14\x24\x92\xd4\x28\x13\x18\x26\x81\xdc\x3d\xbb\x9f\xdd\x1e\xc6\xd9\x2f\x77\x16\x93\xf7\x6e\xad\x4e\x3e\xbd\xbf\x30\x1b\x49\x42\xaa\x50\xee\x5c\x8e\x12\xd0\x88\x28\x8a\x64\xa7\xd3\x41\xbf\xdf\x97\xdf\xfc\xe6\x37\xc5\x7f\xff\xef\xff\xfd\xcb\xf4\x51\x65\x9e\xb3\x67\xcf\xe2\xf9\xe7\x9f\xc7\x60\x30\xe0\x7d\x11\xb2\xdf\x10\x40\x18\x48\x44\xcb\x47\xe1\xe0\xb1\x47\xdd\x33\x8f\x3d\x8a\xaf\xad\x8f\x3a\xcf\x0d\x12\x71\x25\xcc\xc4\x26\x03\x2b\xa1\x56\xef\xed\x85\x23\x79\xb9\x7a\x05\x2d\x11\x40\x0a\xb1\xc8\x30\x08\xb3\x60\xb3\x9b\x06\x17\x07\x49\x78\x6d\x79\x12\x3c\x77\x72\x14\xfd\xe8\xd6\xca\xe4\xa7\xbf\x59\x99\xde\x1e\x47\xd9\x44\x0a\x63\xf5\xd2\x6e\x0e\x26\xc4\x71\x8c\xa7\x9e\x7a\x4a\x12\x91\x78\xe7\x9d\x77\xda\xca\x9d\xe3\x8c\x0b\x5f\x3e\xe8\x06\xf1\xd0\xc6\xdc\x53\xa7\xc1\xba\x8c\xa7\x72\x90\xb8\x8e\x45\x4a\x29\x21\x40\xe1\xc6\x41\x67\xbd\x9f\x04\x67\xf2\x43\x15\xc9\xac\xfc\xe1\x4b\x92\x35\x6a\xe0\x53\x48\x06\xc2\x38\x69\xc0\xd2\x98\xd5\x46\x45\xa1\x6a\x0e\xf0\xb4\x81\x2c\x70\x36\xbe\xb3\xa2\x73\x9f\x1b\x00\x19\x94\x1c\x47\xd9\xde\x83\xfe\x6c\x67\x12\xca\x51\x31\x28\xf4\x8a\x22\x09\x7b\x1e\xd1\xf4\xd1\x3b\xef\xbc\x23\xef\xde\xbd\xdb\xae\x1d\xcd\x08\xb5\x29\x8d\x2f\x8f\x4b\x58\x6d\xb5\xea\xba\x3a\xeb\x84\x75\x1b\x06\xeb\x13\x7a\x4d\xda\x6b\x9d\xe0\x6a\x0b\xb6\xda\xd0\x7d\x5d\xfb\x75\xfb\x04\xda\xbf\x4f\x5d\xb9\x4d\xd6\x20\x1f\xd8\xa8\xca\x53\xf7\x0d\x9b\xbe\xb7\x5b\x6f\x95\x55\xa7\x0e\x84\x34\x59\x4c\x9a\xc2\x71\xac\x03\xba\xfe\x3a\x80\x51\x07\x74\xe1\x3c\x73\xfb\xc3\xf7\x5d\xdb\x7c\xc3\xe3\xf0\xd8\xe3\x84\x2f\x53\x56\x5d\x3f\xf8\xca\x39\xf6\xf7\x13\x42\x88\x37\xde\x78\x03\x8f\x3d\xf6\x18\x84\x30\xe7\xe4\xe9\x72\x42\x94\xbe\x1b\x11\x29\x84\xbd\x24\x88\xcf\x3f\x8c\x37\xcf\xee\x77\x6f\x9c\x1c\x75\x9e\xed\x27\xc1\xc5\x4e\x46\x1b\x81\xa2\x15\xa1\xd0\x07\x28\x04\x94\xd0\x0e\xa8\x73\xdb\x5c\x14\xfb\x6a\x09\x45\x2b\xa1\x54\x69\x94\x06\x17\xfa\xb3\xe0\xca\xf2\x44\x5d\x3b\x71\xd8\x79\x7e\x63\x14\xfd\xdb\xdd\x41\xf2\xee\xad\xd5\xc9\xc7\x0f\xfb\xe9\x28\x15\x2a\x01\x41\xa0\x00\x2d\xc8\xa7\xf3\x41\x44\xe8\x74\x3a\x38\x7b\xf6\xac\x7c\xf3\xcd\x37\xc5\xf7\xbf\xff\x7d\x5f\xff\xd4\xf5\x95\x37\x9c\x3f\x7f\x5e\x5c\xbf\x7e\x1d\x6b\x6b\x6b\x2e\x68\xd1\xc0\x25\x02\x10\x76\x53\x8a\x4f\x3f\xea\x6e\x6c\xef\xc5\xd7\x36\x0f\xa2\x97\x97\x26\xe1\xd3\x51\x2a\xce\x04\x0a\x2b\x00\x85\x50\x85\x12\x4e\xf6\x21\x79\x06\xa4\x14\x7d\xa1\x50\x6e\xd0\x9a\xff\x52\x28\x08\x21\x29\xc4\x41\x8a\x95\x50\x76\x36\x7a\xb3\x60\x7b\xe9\x28\x7c\x6a\x6d\xdc\xf9\xe7\x5b\xab\x93\xf7\xee\x2c\x25\x7b\x59\xa0\x12\xd6\x3e\xa3\x70\x2b\xa5\xb0\xb0\xb0\x80\x27\x9f\x7c\x52\x02\x10\xef\xbc\xf3\x8e\xae\xfa\xcb\xf4\xcd\x71\x68\x5e\xb8\xc0\xa5\x49\xa0\xb4\x41\xea\xde\xeb\xeb\xd7\xaf\x8b\xe5\xe5\x65\xdd\x40\x7e\x12\x74\x79\x46\x91\x44\xb4\x31\x8a\xb6\xba\xa9\x58\x27\x55\xae\x26\xe2\x56\x10\x3d\x6d\x94\xc7\xe7\xf8\x92\xef\xd9\xa2\xd3\x98\x65\x5f\x45\x8c\x05\x4a\xd8\xb4\x93\x3b\xad\x54\x39\xcd\xc4\x8f\x02\xd0\xa0\x49\x2f\x5c\x42\x0e\x86\xa8\xac\x10\x52\xa8\xf4\x51\x2f\xbd\x3b\xea\x66\x0f\x53\x61\x0e\x53\x74\xad\x2d\x73\xdb\xfc\xdf\xbd\x7b\x17\xa3\xd1\xa8\xf5\x07\x44\x3d\x88\x6c\x1b\xaa\x04\x29\x8f\xf3\x09\x2c\x37\x34\x31\x76\xde\xbe\x2a\x41\xe1\x96\xe3\xa6\xe1\xe5\xbb\xc1\x27\xfc\xeb\x84\x83\xaf\xac\x2f\x2b\x6c\x5d\xe1\xed\xf6\x97\xaf\x2d\xf0\xa4\xe3\xf5\xba\xf5\xfb\xee\xab\xde\xf9\x38\x56\x00\x01\x40\x5e\xbc\x78\x51\xef\xcc\xe9\x7e\x23\x5f\x5c\x55\x5f\xcc\x81\x9a\x77\xdf\x7d\x17\xe3\xf1\xd8\xf7\x0d\xea\xe2\xdc\xf2\xea\x00\x85\x1b\x7f\x1c\x90\xed\x96\xe7\xb6\xc5\x97\xbf\x09\x2c\xd7\x31\xe1\x46\x5e\xe9\x69\x5f\x1b\xc0\xee\xab\xc3\xd7\x0e\x1f\x5d\x56\xb5\x8f\x97\xd1\x56\x1e\xb8\xe0\x56\x02\x40\xb7\xdb\x15\xcf\x3d\xf7\x1c\xf7\x67\xe1\x7f\x21\x60\x7c\x37\xa2\xee\x4c\xc4\xeb\xa3\xce\xda\x99\x47\xdd\x4b\x67\x1f\xc6\x2f\xaf\x1d\x75\x6e\x44\x29\x6d\x93\xc2\x12\xe5\x82\x5a\x50\x21\xad\xad\xf3\xe6\x50\x82\x17\xb3\xd0\x22\xbf\x16\x44\x14\x41\x21\x0a\x24\xfa\x81\xc4\x5a\x27\x0b\xcf\x2c\x24\xc1\xa5\x13\xa3\xce\xd7\x56\x8f\xc2\xff\xf9\xe9\xda\xe4\xa7\x9f\x2f\x4f\xef\x1e\x75\xe4\x04\x54\x5a\x17\x0a\x85\x13\x40\x39\x75\xf4\xd2\x4b\x2f\xc9\x9f\xfc\xe4\x27\x62\x36\x9b\x55\x7d\x97\xa6\x3e\xc6\xf6\xf6\xb6\xb8\x7a\xf5\xaa\x75\xf4\x0d\x98\x85\x05\x40\xa4\x94\x0a\x17\x93\x70\x70\x66\xbf\x7b\xee\xf1\x07\xbd\x17\x36\x87\xd1\x6b\x0b\xb3\xe0\x8a\x90\x58\x23\x50\xc4\x57\xdb\xe6\x32\x88\x4a\x79\x54\x08\x23\xed\xfe\x60\x2d\x68\x21\xfb\xb7\xd8\x27\x2d\x0c\x24\xd6\x7b\x89\x18\x44\x69\x67\x73\x61\x26\xce\x2c\x24\xc1\x46\x98\x89\x1f\xdc\x5a\x9b\xdc\xcd\x72\x01\xa7\xdb\xaa\xfb\x06\x40\xbe\x74\xfb\xf4\xe9\xd3\x3e\x1a\xa9\x53\xd6\xaa\x94\x02\x5f\x98\x93\x27\xa1\xe7\x61\x55\xe2\xaa\x81\x5f\xd5\x58\xab\xd1\x4f\x3c\xf1\x04\x16\x16\x16\xf8\x47\xb2\x1d\x73\x15\x42\x01\x84\xab\x47\xe1\xd9\x50\xd2\xa0\x5c\xb9\xc3\x7c\x57\xc0\x01\x83\xbd\xeb\xad\xf1\xa5\x2d\xa3\x58\x60\x4e\xb3\xc6\xe4\x62\x5b\x68\x6c\xa4\x6e\xe7\x32\x08\xb5\xa8\xdb\x94\x66\xe6\xab\x4a\x34\xab\x9b\x37\x0b\xd4\x68\x77\x21\xb9\x7d\xd4\xb1\xa7\x89\x98\xd3\xd3\xdc\x12\xe8\x0f\x3e\xf8\x40\x1e\x1c\x1c\xcc\xb5\xbe\x08\x6d\x85\x77\x15\xc0\xa8\xd3\xc2\x9a\x98\x52\x9d\xd0\xab\x6b\x6b\x1b\xe6\x5a\x15\x77\xdc\xbc\x55\xf9\x7d\xc0\xab\x89\xb1\xb7\xad\xb3\xaa\xbd\x3e\xd0\x57\x97\xbe\xa9\xee\xba\x50\xf7\xce\xbe\x74\x32\x08\x02\x71\xf5\xea\x55\xf7\xb9\xd8\xde\xde\xc6\xc9\x93\x27\xf9\xfe\x19\xd6\x86\x8e\xc0\xfc\xb6\x04\x55\xe9\xdc\x7a\x8f\x8e\x8e\x0c\x4d\xde\xbb\x77\x4f\x14\x47\x59\xd4\x09\xe1\xe3\x0a\xcc\xaa\xf8\xa6\xb4\x3e\xd0\xe8\x13\x42\x4d\x20\xab\x0e\xd8\xb8\xcf\x9b\xae\xab\xda\xe6\xb6\xbb\xe9\xba\xaa\xfe\xe3\xd0\x59\x53\x59\x75\x75\x4a\x00\xe8\xf7\xfb\xe2\x77\x7e\xe7\x77\x70\xe5\xca\x15\x8b\xff\x83\x09\x6b\x0d\x5a\x16\x92\x60\x70\xf6\x61\xf7\xdc\xf6\x5e\xfc\xbb\x9b\x07\xdd\x97\xfb\x89\xb8\x16\x4a\x5a\x07\x28\x32\x96\x6e\x8b\xd7\x13\x94\x53\xa9\x45\x82\xcc\x32\x5f\xca\x08\x0a\x05\xb0\x12\x65\x58\x0a\x27\xe1\x99\x6e\x2a\xce\x2c\x24\xc1\xe9\x78\x26\x7e\xf4\xf9\xca\xf4\x93\x61\x9c\x0e\x33\x81\x84\xef\x2c\x8b\x72\x9a\x44\x3e\xfd\xf4\xd3\x22\x4d\x53\xf9\xf3\x9f\xff\x5c\x1c\x1d\x1d\xe9\xe7\x3e\xbe\xeb\xed\xe7\xf3\xe7\xcf\x8b\xab\x57\xaf\x62\x73\x73\xb3\x12\xb4\x90\x42\xb4\x3c\xe9\x2c\x6d\xef\xc5\x97\x1e\x7f\xd0\x7b\xed\xe4\xa8\xf3\x4a\x9c\x8a\x4b\x42\xd1\x80\x5b\x97\x2c\x05\x9d\x29\xd1\xb6\x72\x3d\xaf\xa4\x53\x09\xed\x00\xfe\xbf\xa2\x38\x94\xd8\x5a\x9c\x84\x83\x73\x19\xad\x74\x32\x5a\x20\xc2\x3f\xde\x5a\x99\xdc\x4e\x85\x9a\x30\x51\x6a\x4d\x1b\x0d\x06\x03\x3c\xf5\xd4\x53\xb8\x79\xf3\xa6\xcb\x8f\xea\xc6\x71\x1d\x3f\xae\xa5\x31\x0e\x5c\x7c\x03\x16\xce\x6f\x1b\xe2\xf7\xa5\x9f\xfb\xa8\x6c\x0d\xbd\xf9\x60\xdd\x54\xf4\x07\xd3\x70\x2b\xc8\x9d\xac\x04\xc0\xcd\x5a\x8c\x61\x52\xf9\xa1\xac\x50\x31\xd3\x63\xcd\x1a\x69\x73\x22\xd9\x8b\x9f\x75\x1d\x5e\x17\x60\xee\x90\xcb\x80\x0d\x8f\xe4\xbe\x38\x0a\x0a\xe3\x4e\xb6\x77\x7f\x61\xb6\x93\x04\x72\x8c\x1c\xb0\xb8\x7b\xb7\x48\xe7\x0f\xbf\xf8\xc5\x2f\x30\x1c\x0e\x75\xbf\xf8\x04\x2d\x7f\x56\x05\x2a\xdb\x68\x9b\x55\xdf\xce\xc7\x80\xaa\x34\xd0\xa6\x7c\x75\xe5\x57\x0d\xf0\x3a\x2b\x04\x4f\xe7\x2b\x97\xa7\xa9\xaa\xc7\x97\xbe\xaa\xde\xa6\x01\x54\xd5\xb7\x6e\x3b\xeb\xd2\x57\x69\x21\x55\xdf\xbd\xea\xfd\x9a\x98\xa6\x58\x5c\x5c\xc4\xd6\xd6\x16\x80\xdc\xb9\xee\xb9\xe7\x9e\x2b\xc6\x97\x17\x88\xe8\x0d\xad\xac\x3d\x97\xaa\x02\xdb\xd4\xca\xc4\xb1\x55\x72\xe6\x4c\x14\x5d\xd6\x6f\x7e\xf3\x1b\xb9\xb8\xb8\x68\xd2\xa6\x69\x2a\x7e\xfd\xeb\x5f\xf3\x36\xfb\xbe\x4f\x9d\x60\x6e\x0b\x80\xea\xbe\x95\x8f\xb7\x35\x59\x37\xdc\xb2\xab\xbe\x31\x9c\xf8\x36\xe0\x83\xe7\xf1\x85\xaa\xf1\x5c\x27\x38\xda\x8c\xd3\xe3\x82\xfb\x26\x1e\x23\x06\x83\x01\xbe\xf6\xb5\xaf\x55\x82\x16\x00\x51\xa0\x28\x1a\x4c\x83\xa5\x73\xfb\xf1\xc5\x4b\x3b\xfd\xd7\x36\x46\x9d\x37\xa2\x4c\x5c\x14\x8a\xfa\x86\x7f\x93\x62\x0a\x66\x01\x94\x5d\xde\x6b\xd1\x33\x98\x14\xcf\x7f\xcd\x74\x52\x2e\xf4\x85\x90\x6a\xa9\x37\x0b\xae\x6d\x3d\xea\xae\xc4\x33\xb1\xbe\x90\x04\xff\xf3\xdf\x4f\x1c\x7d\xb0\xd7\x4f\xf7\xd2\x00\x02\xc5\x2e\xe7\x45\x99\x06\xbc\x5c\xbb\x76\x4d\x64\x59\x26\x6f\xde\xbc\x89\xf1\x78\xcc\xfb\xcd\xd7\x47\xa6\xaf\xce\x9e\x3d\x8b\xeb\xd7\xaf\x63\x63\x63\x83\xcf\x3a\x58\xa0\x05\x40\xb4\x30\x0d\x06\x17\x77\x7b\x57\xbe\xb2\xdb\xfb\xfd\xb5\x71\xe7\x95\x28\xa5\x73\x85\x2f\x0f\x5b\xf0\xaa\x7d\x58\x0a\xb9\x45\xda\xaf\xb3\x8c\x2f\xc7\x2e\xeb\x13\xe6\xcb\xc9\x8f\xb5\x61\x10\x4f\x08\xa5\x56\xfa\xb3\xe0\xea\x99\xfd\x6e\x3f\x94\x14\x4a\xa8\x7f\xb8\xbd\x32\xbd\x93\x0a\xae\xb9\x97\xfd\xb1\xb4\xb4\x84\x67\x9f\x7d\x16\x69\x9a\x0a\xe7\x98\x9a\x26\x9c\x60\xfa\xa6\x26\xad\x9b\xde\x4c\x15\xd5\xa1\x22\x5f\xe6\x63\x21\x6e\x1e\xf8\x14\x11\x18\x01\x0b\x85\x70\xe5\x28\x1c\xf4\x12\xb1\x21\x14\x22\x63\xe6\x32\x16\x15\x87\xb9\xf2\xe9\x23\x8f\xa6\xe7\xf8\xe1\xea\x84\x79\x3e\x56\x16\xb7\x94\x90\xcf\x13\xd8\xbd\x35\xf3\x89\xd5\xb8\x49\x11\xd2\x47\xbd\xec\xce\xb0\x97\x3e\x48\x85\x9a\xe8\x5d\x72\xd9\x81\x8a\x66\xc3\x1f\x00\x92\x58\x9b\x6a\xfa\xcf\xf7\x8d\x9a\xfa\xbc\x0e\x64\xd6\x09\xd0\xaa\xf2\xf8\x7d\x95\x40\xae\x03\x36\x75\x20\xab\xaa\x9d\x6d\x41\x40\x53\xbb\xea\xca\xad\x13\x32\x55\xc1\x97\xa6\xaa\x4f\xdb\x00\xa9\xa6\xf6\x54\x01\x9a\xaa\xf6\x88\xb5\xb5\x35\x0c\x06\x03\x00\xc0\xe6\xe6\x26\xae\x5d\xbb\xe6\x3b\xc7\xc4\xb4\x89\xd8\x39\x27\xce\x06\x5d\xfa\xb9\x19\x7f\x15\x80\x47\xea\x74\xbe\xf7\xd2\xda\xeb\x99\x33\x67\xc4\xd9\xb3\x67\x4d\x19\x93\xc9\x44\xce\x66\x33\x53\xd7\x17\x5f\x7c\x01\x66\x86\xaf\xa3\x91\x26\x50\x5d\x07\xe2\xdd\xdf\x2a\x90\xe8\x86\xaa\xef\xd4\xd4\xde\xa6\xf1\x56\x07\x0e\x9a\xda\x54\x45\xab\xbe\xb6\xb4\xed\x87\x26\xd0\xe6\x2b\x73\x2e\xf4\x7a\x3d\x9c\x3a\x75\x0a\x00\xf8\xce\xae\x02\xb9\x95\x25\x22\xa2\x50\x48\xc4\x4b\x93\x70\x65\x7b\x2f\xbe\xf4\xc4\xfd\xfe\xeb\xeb\x87\x9d\x37\xa3\x4c\x5c\x80\x82\x50\xa4\x1c\x1f\xc7\xc2\xc6\xc2\xe9\xd4\x52\x40\x39\x6d\x73\xb0\x52\x4e\x95\xa0\xc0\x31\x3a\x3d\x01\x51\x94\xd1\xa5\x93\x87\x9d\xa5\x28\x15\x2b\xa1\xa4\xf8\x57\x27\xc7\xef\x3d\x58\x98\xed\x66\xc2\x2d\xb3\x14\xd6\xcf\x3e\xfb\xac\xb8\x7b\xf7\xae\x1c\x8f\xc7\xad\x15\x25\x77\x7a\x88\xef\x61\x06\x20\x82\x42\x14\x65\xd4\x3f\xff\x30\xbe\x78\x71\xb7\xf7\xfb\x27\x0e\x3b\x6f\x76\x32\xda\x82\x22\x33\x3d\x06\xfd\x0e\x85\x16\x5e\x8e\xc3\x1c\xd1\xb8\x60\xc5\x80\xb5\x02\xa9\x58\x72\xce\x4c\x29\x69\x8f\x4f\xb6\x01\xab\x44\xbf\xab\xc4\x95\xd3\xc3\x28\x92\xb4\x30\x9d\x86\xf2\xff\xdd\x19\xcc\xee\x66\x81\xc5\x03\xf4\x86\x75\xe8\xf5\x7a\x78\xe5\x95\x57\xe4\x74\x3a\xd5\xe7\x1b\x55\xd1\xa4\xfb\xac\x2d\x9e\x30\x79\xab\x36\xa0\xab\xd3\x0e\x01\xfb\x23\xd5\x31\x06\x00\x90\x27\x4e\x9c\x10\x41\x10\x98\xb2\x8b\x8e\xb5\x96\x43\x07\x52\x44\x27\x0e\x3b\xeb\x51\x26\xd6\x48\x41\xf0\x69\x1a\xf0\x7e\x26\x9f\x69\xb0\x64\xa8\xda\xdf\x85\x5b\x69\x72\x70\xaa\xcc\xf4\x92\x05\x54\x60\x9b\xd0\xf8\x41\x89\x26\x78\x51\x50\x75\x48\x85\x9a\xec\xf5\x67\xb7\x27\xa1\x1a\xa9\x62\xbe\x94\x5b\x5a\xf4\x34\x11\x1b\x10\xf2\xc1\x83\x07\xc8\xb2\xcc\xed\xdb\x3a\xc1\xcc\xaf\xdb\x32\x6b\xf7\x79\x5d\x68\x03\x44\x9a\xda\xa9\xef\x5d\xc6\xe8\xd3\x28\xab\x04\x7e\x15\xdd\xd5\xbd\x47\x15\x23\xa9\x6a\x83\xdb\xde\xe3\x68\xa6\x6e\xde\xba\xb6\x55\x95\xd9\x16\x58\xf2\x6b\xef\x37\x58\x5b\x5b\x2b\xfc\x1e\x81\xeb\xd7\xaf\xe3\xf1\xc7\x1f\xb7\xfa\x80\x9c\x2d\xc1\x3d\xe0\x44\x14\xbf\x56\x3c\x7b\xce\xf3\x19\xa0\xc2\x01\x4f\x01\xc8\xad\x77\xd3\x71\x45\xf9\x56\xbe\x38\x8e\xf1\xad\x6f\x7d\xcb\x94\xf1\xfd\xef\x7f\x5f\x0e\x87\x43\x71\x70\x70\x80\xe9\x74\x5a\x47\xcb\x3e\xba\x70\xe3\xdd\xfe\xab\x2a\x83\x87\x3a\x21\xe4\x0b\x75\xc0\x4a\xc7\xd5\x81\x94\x36\x65\x1f\x27\x8f\xae\xbb\x69\x7c\xfc\x36\xf7\x55\x6d\x33\xd7\x71\x1c\x8b\x8b\x17\x2f\xe2\xc5\x17\x5f\x14\x80\xf1\x67\xb4\x2d\x0c\x0a\xf1\x60\x1a\x2c\x5d\x78\x10\x5f\xbe\x74\xbf\xff\xd6\xda\x61\xe7\x8d\x8e\x14\x67\x48\x29\x91\x33\xf1\x92\x17\x97\x8a\x6c\xb9\xc8\x42\x0b\x61\xc5\x2c\x2a\x50\xca\xb0\x6c\x23\x2b\xa8\xb4\xc8\x80\x08\xf6\x81\xb8\x39\x08\x08\x24\x6d\xae\x4c\xe8\x8d\x0b\x0f\x7a\x61\x26\x14\x52\xa1\xde\x7d\xd8\x4b\x77\x95\x30\x3b\xed\x4a\xc0\xda\x46\x5f\x2e\x2f\x2f\x63\x77\x77\x17\xc5\xf1\x2c\x55\x7d\x2c\x01\x88\xd5\xd5\x55\x74\x3a\x9d\xfc\x5d\x98\xfc\x33\xfd\xa1\x10\x05\x0a\xf1\x99\xfd\xee\x99\xa7\xee\x2d\xe4\x7d\x91\xd1\x26\x40\xc2\x18\x59\xe0\xf8\x61\x3a\xbe\x9b\xe5\x0b\x71\xd9\x56\x00\x18\x05\x28\xee\xeb\xa2\xf3\x71\x83\x8b\x91\xaf\x66\xfa\x28\xec\xa6\xc1\xa5\xcd\x61\xf7\xdb\x4f\xdd\x93\xfb\x49\x38\xfa\xf1\xc3\xde\x4c\x4a\x61\x7f\x7f\x5d\x47\xa7\xd3\xc1\x5b\x6f\xbd\x25\xff\xd3\x7f\xfa\x4f\xfa\x68\x00\x1f\x30\xae\xe2\xeb\x75\xe3\x96\xc7\x7b\x97\x43\xb7\xd5\x48\xaa\x90\xf9\x1c\x31\x7f\xe7\x3b\xdf\x41\xb7\xdb\x35\xc4\xcb\x1a\x6e\xe2\x84\x42\xb4\x7a\x14\x9e\x0e\x33\x5a\x62\x65\x7a\xf1\x82\x6b\x12\x2c\xcc\x7e\x28\x2c\x80\x9e\x8f\xea\xa2\x4f\x6d\x5a\x73\x34\x47\xcc\xa1\x6b\x53\xa1\x75\x14\x80\xd3\x1e\x1d\xf4\xf7\x9f\x06\x72\xb8\xbb\x30\xbb\x3b\x13\x72\x8c\xf2\x14\xe8\xa4\xe8\x13\x73\x98\x22\x58\xbf\xfe\xdd\xdf\xfd\x1d\x26\x93\x49\x65\x1f\xb2\xd0\xc4\x00\xab\x34\xac\x2f\x5b\xce\x71\x9f\xd5\x95\xe9\xb6\xcb\x97\xae\x8a\xe6\xea\xca\xad\x7a\x17\x5f\xd9\xbe\xeb\x3a\xad\xbe\x4e\x58\xb6\xa9\xa7\x4e\x80\x54\xe5\xab\xd3\x94\x7d\xcf\xc5\xc2\xc2\x02\x00\x88\x6f\x7d\xeb\x5b\x7c\x69\x25\x00\xc3\x24\x01\x58\xe7\x9b\xe8\x72\xbc\x67\x9c\x58\xbf\x0a\x42\x6b\x77\xfe\x50\x5a\x0c\xc9\xde\xa9\x54\xff\xca\x02\xa4\x58\x71\x45\xfa\xb2\x94\x42\x18\xbc\xf9\xe6\x9b\x02\x00\x7e\xf0\x83\x1f\xc8\xcf\x3e\xfb\x4c\x24\x49\xc2\x2d\x30\x55\x34\xdd\x06\xc4\xb6\xfd\x2e\x55\x69\xdb\x02\x54\x5f\x9b\x9a\xd2\xba\xc0\xab\x4e\x71\xa8\x6b\x63\x55\xdd\x3a\x6e\x0e\xec\xb6\x6c\x77\x13\xd8\xb3\xd2\x77\x3a\x1d\xf1\xe4\x93\x4f\xe2\xc6\x8d\x1b\xe6\xbd\xe6\x40\x0b\x4a\xeb\xc2\x13\xf7\xfb\x6f\x9d\x38\xec\x7c\x33\x94\xb4\x95\x1b\x59\x88\xc9\x61\xdb\xaa\x52\x44\xcf\x59\x1f\x4a\xb8\xc2\x14\x4f\xc5\x21\x0c\xb3\xb6\xbb\xf2\xbe\xf8\x0d\x14\xad\x2d\x4f\x82\x57\x2e\xec\xf6\x92\x54\xa8\xc9\x87\x1b\xe3\x5f\x1c\x74\xb3\x7d\x22\x9a\x98\xf4\xcc\x61\xf7\x95\x57\x5e\x81\x10\x42\x7e\xf8\xe1\x87\xa2\xb0\x1a\x56\x05\xf9\x8d\x6f\x7c\x43\xac\xad\xad\xf1\x31\x68\xac\x2d\x4a\xa9\x48\x28\x8a\x97\x8f\xc2\xb5\xab\x77\x06\xaf\xad\x8f\x3a\x7f\x10\x65\xb4\x45\xa0\x10\x28\xfa\x80\x4a\x19\xe6\x0b\x94\x27\x2c\x65\x55\x31\x5c\x8d\x23\xae\x2a\x65\x18\x71\x99\x46\xc8\x41\x1c\x78\xb7\xd9\x07\xfd\xf6\x66\xe2\xea\xb9\x87\xdd\xbd\x83\x6e\x36\xfc\x70\x43\xfe\x62\x18\x67\x7b\x54\x1e\x08\x2c\x51\xba\x3f\x80\x88\xb0\xb0\xb0\x80\xd1\x68\x24\x9c\x31\xef\x53\x1c\xe1\x79\x0e\x34\xd0\xbd\xcf\x39\xb7\x0d\x33\x6d\x33\x40\xbc\xc1\x9c\x0b\xc4\x37\xd6\x51\x08\x85\xa2\x68\x71\x12\x6e\x04\x8a\x06\x26\x6d\xf1\xeb\xfb\x4e\xee\x2a\xa1\xda\x4d\xe7\x14\x15\x84\xea\x10\xaf\x2e\x87\x3b\x33\x79\xf3\xc3\xce\x63\x3d\xe2\x80\x46\x41\x11\xe4\xb8\x9b\xed\x3c\xec\xcf\x1e\xa4\x81\x9a\x28\xa8\xb4\x70\xcc\xd5\x1f\x37\xa5\xf2\x5c\x08\xc9\x88\xb8\x0d\x73\x6a\x13\x9a\x84\x5e\x23\xd3\x69\x88\x6b\xd2\xfe\x7d\x80\xb6\x4a\x63\x73\xd3\x35\xd5\x57\xd7\x06\xb7\xdc\x46\x61\xcf\xd2\x55\xa5\x3d\xce\xbb\xb6\x01\x1d\x75\xef\x5a\xd5\x1e\x5f\x3f\x9a\x78\x22\x42\x14\x45\xf8\xb3\x3f\xfb\x33\xeb\x54\x58\x55\x9c\x76\xeb\x80\x14\x9f\xb5\x33\x4f\x93\xa7\xb7\xd2\x9a\x7b\x05\x21\x14\x40\x52\x09\x92\x10\x1a\x9a\x28\x01\xa8\x80\xa4\x14\x0a\xca\xe6\x1d\x2e\x40\x91\x28\x81\xba\x66\x74\x7c\x0c\x08\x16\x6f\xfa\xed\xe5\x97\x5f\x16\xaf\xbc\xf2\x0a\xde\x7d\xf7\x5d\xf9\x93\x9f\xfc\x44\x83\x2c\x1f\x8f\x6a\x03\x0e\xdb\x80\x0d\xb7\x7f\xeb\xc0\x6a\x55\x99\xc7\x01\x03\xee\x73\x97\x7e\x7d\x75\xfa\x42\x53\x9a\xe3\x96\x7d\x5c\xb0\x32\x17\x9e\x7e\xfa\x69\xfc\xee\xef\xfe\xae\xa1\x27\xbe\x03\x6c\x21\xac\x63\x02\xf5\xcf\x3e\xec\x6e\x5d\x78\xd0\x7b\x75\x75\xdc\x79\x25\x94\xb4\x69\x04\x29\xf8\x6c\x06\xb7\xe8\xc1\x7a\x6e\x1c\x55\x31\xcf\xa3\xed\xa3\x62\x0a\x6b\x3b\xca\xb4\x73\xd3\xa6\x85\x1c\x08\xa5\x58\x5f\x3d\x0a\xbf\xfe\x95\xdd\xde\x24\x09\xe4\xf8\x83\x53\xe3\x0f\x92\x40\x01\xf9\x26\xa2\xba\x1f\xf4\x94\x3f\x5e\x7a\xe9\x25\x21\x84\x90\x6c\x17\xd9\xb9\xc0\x15\x03\x9a\xdf\x78\x35\x24\x50\xdc\x91\xd4\xbf\x72\x6f\xe1\xf2\xa9\x83\xee\x1f\x77\x33\x3a\x03\x55\x80\x16\xb2\x67\x12\x58\x73\xd9\x94\x59\xd9\x19\x66\xc5\x2c\xd8\x4c\x02\x53\xee\x19\x8c\x2b\x9e\x95\x05\x97\xfd\xc6\x2a\x21\x40\x80\xe2\xc1\x34\x7c\xe1\x2b\xbb\xbd\x9d\x61\x2f\x1d\x4e\xc3\xc9\x64\xda\x91\xe5\xf8\x76\x78\xd6\xdb\x6f\xbf\x8d\xff\xf2\x5f\xfe\x8b\x3c\x3c\x3c\xe4\xdd\x50\x85\x1b\x7c\xa1\x56\x1e\xba\xce\xb9\x75\x19\x9b\x2a\xaa\x15\xb2\x0c\xb0\x00\xce\x47\x0b\x14\x45\xfd\x24\x18\x2c\x4c\x83\xad\x40\x51\xa4\xf3\x10\xca\xe9\x1d\x60\x1e\x98\x30\x97\x23\xbf\xa5\x44\xd9\x1f\xcf\x45\x27\xdc\x94\xc8\x07\xca\x5c\xa8\x99\x1e\xf2\xb8\xf2\xca\xfd\x5e\x76\x67\x1c\x65\xc3\x62\x9a\x28\x81\xbd\x5b\xae\x3e\xf8\xab\x78\x27\xaa\xfd\x40\xc7\x7c\x06\x34\x33\xc8\x26\x4d\xae\x4d\x68\x93\xb7\x49\x78\x1f\xb7\xdc\x2a\x40\xe3\x63\xb0\x75\xc2\xde\x97\xce\x05\x52\x4d\x65\xfa\xda\xe0\x6b\xaf\x0e\x55\x7d\xd1\x04\xaa\xdc\xbc\xd6\xf3\x53\xa7\x4e\xe1\x8f\xfe\xe8\x8f\xdc\x72\x01\xc0\x02\x26\xb0\x05\x87\xd6\x7a\x75\x39\x02\xf9\x8e\x9c\x61\xf7\x50\xc6\xf1\x41\xd6\x8f\x8e\xd4\x52\x67\xa2\x06\xc1\x4c\x2d\x05\xa9\x5a\x12\x99\xea\x93\x42\x08\x45\x3d\x52\x2a\x22\xa5\xa2\x62\x50\xa4\x4a\xd0\x44\x91\x9a\x2a\xa2\x44\x05\x98\x64\x01\x0d\xb3\x0e\x0d\x67\x5d\x1a\x4d\xfb\x62\x38\x59\x14\xc3\xc9\x40\x4c\x54\x30\x77\x3e\x8c\xd9\xc7\x88\xc5\xf3\xbe\xd0\xa7\xd4\xca\x6b\xd7\xae\xe1\xda\xb5\x6b\xe2\xd6\xad\x5b\xf2\xef\xff\xfe\xef\x3d\xdd\x71\xac\xb1\xd2\x76\xec\x54\x8d\xa3\xe3\x58\x3a\xda\xd4\x53\x07\x0e\x1a\x15\xc1\x86\xd0\x04\x3c\x7e\x5b\x5e\x52\x9b\x87\x4d\x37\x72\x4b\x4b\xbe\x34\x19\x88\x37\x0f\xa2\xf5\x8b\xbb\xfd\x57\x37\x0e\x3a\x6f\x74\x33\xda\x86\x82\xb0\x0e\xca\xb5\x04\x2a\x31\xcb\x01\x0c\x4f\xd6\xf7\x16\xfb\xe7\xcf\x00\xc3\xe4\x8d\x8b\x00\x4a\x41\x6e\x55\xc3\xa6\x93\x42\x29\x36\xd7\xc6\x9d\xdf\xdb\x7e\xd8\x1b\x3d\x8a\xb3\xfd\xdf\xac\x4e\xee\x48\xb2\x85\x34\x03\x23\x8d\xfd\xf2\xe7\x7f\xfe\xe7\xe8\xf5\x7a\xbe\x71\x18\x12\x51\x14\x66\x14\x9f\x3a\x88\x36\xb7\x1f\xf4\x7e\xbf\x9b\x89\x8b\x79\x3c\x9b\xea\x62\xef\x65\xb7\x99\x5b\x61\x74\x67\x94\x89\x15\xbb\xcf\xa7\xc7\xca\x8e\xd1\xe2\x90\x03\x1a\x5d\x8f\xef\xa0\xe1\x50\xd1\xca\xca\x51\xf8\xd2\x85\xdd\xde\xed\xfd\x38\xdd\xbf\xd7\x49\x12\x67\x4c\xb7\x91\x2b\x75\x7d\xd6\x44\xa3\xe6\x79\x9b\x9d\x73\xdb\x68\x13\xad\x42\xa1\x59\x59\xd3\x45\x44\x24\xc2\x8c\xa2\xb5\xa3\x70\x2d\x4e\xc5\x86\xf6\x9c\xce\xd3\x93\x4d\x90\xcc\xdf\x05\x98\x07\x1e\xfa\x6b\x98\x38\x17\x9d\xd2\x7c\x1e\x6e\x72\xb4\xd0\x66\x85\x05\x86\x2a\xd0\x8d\x1e\x4c\x33\xa1\x26\xbb\x0b\xc9\xed\x59\x80\x89\xb2\x97\x3d\x5b\xab\x89\x98\xd6\x89\xff\xfc\x9f\xff\xb3\x3b\x47\xea\xd3\x12\xf5\x7d\x5b\x60\x02\xcf\x33\x5f\x1d\x4d\x65\xb7\xd1\x1e\xab\xea\xaf\xd2\x5a\x7d\x96\x11\x37\xd4\x01\x85\xaa\xd0\x34\x60\xdc\x76\xb9\x6d\xf2\x01\x86\x2a\xe0\xe3\xa6\xe1\x71\x4d\xe0\xd0\x05\x42\x3e\xe1\xca\x41\x95\xd5\xce\x4b\x97\x2e\xe1\x85\x17\x5e\xb0\xfc\x50\x9c\x7d\x91\xe6\xc6\x18\xca\xbd\x32\x04\x01\x42\x64\x88\x16\x1e\x66\x83\xfe\xa3\x6c\xa3\x3b\x56\x9b\xe1\x54\x6e\x85\x33\x75\x5a\xa4\x6a\x9d\x32\xac\x09\x89\x25\x52\x18\x90\x52\xe5\x99\x27\x2a\x37\xf1\x93\x42\x98\xdb\x1a\x21\x91\x9f\x6d\x92\x28\xf3\x4b\x63\x25\x30\x52\x02\x43\x25\xb0\x97\x85\xb4\x9b\x46\xf4\x45\x1a\x89\x3b\xd3\x3e\xdd\x1d\x2f\x07\x3b\xe3\xe5\x60\x94\x75\x49\x4f\x9d\xfa\xce\x8d\xf1\xd2\xe2\x63\x8f\x3d\x86\xbf\xf8\x8b\xbf\x10\x87\x87\x87\xf8\x9b\xbf\xf9\x9b\xdf\x4a\x91\x3a\x46\x1a\xdd\xef\xee\x75\xdd\xf8\x38\x4e\x68\x3b\x46\xdb\x00\x30\x77\xcc\x34\xb5\xad\xea\x79\x5b\xa1\xe2\x0d\x37\x6e\xdc\x10\x5f\xfd\xea\x57\xdd\x76\xe9\xbf\x08\x40\xd4\x4f\x44\xff\xc2\x6e\xef\xe9\xcd\x83\xe8\xf7\xe2\x34\xb8\x80\x5c\x80\x5b\xda\x3e\x57\x0a\x0d\x00\x31\x4c\xbb\xbc\x27\x66\x4d\xd7\x6e\x00\x46\x28\x73\x6b\x7a\xe1\x0b\xc3\x27\x45\xd4\x1c\xea\x29\x05\x79\x27\xa3\xcd\xf5\x51\xe7\xc6\xf9\x87\xdd\x5f\xdf\x1f\xcc\xf6\xc7\xdd\xcc\xa5\x51\x6d\xb1\x94\xcf\x3e\xfb\x2c\x3a\x9d\x0e\xdf\x41\xd6\x7c\xbb\xbf\xf8\x8b\xbf\x40\xb7\xdb\xd5\x65\xeb\xb1\xc8\x57\x11\xc5\xbd\x99\x58\x79\xea\xde\xc2\x33\x8b\x89\xb8\x41\x4a\xc5\x5a\x52\xb9\xee\x09\xf3\xfb\x8e\x95\xbe\x9d\x80\x7e\x57\x62\x0a\xbb\x96\x8c\x6c\xc5\x91\x63\xbd\x9a\xf3\xf7\xd1\xf1\x6c\x9a\x4d\x97\x1f\x49\x3a\x73\xe2\xb0\x73\xed\xd4\x41\xf4\xeb\x83\x38\xdd\x1f\x47\xd2\x37\x76\x01\x40\x7e\xf7\xbb\xdf\xc5\xdf\xfe\xed\xdf\x8a\x07\x0f\x1e\xf0\xfe\x38\xee\x78\xf1\xca\x37\xdf\x21\x8b\x4d\x19\xdd\x42\xdc\x74\xa6\x3c\x22\x12\x7f\xfa\xa7\x7f\x8a\x4e\xa7\xc3\xd0\xad\xd2\x69\x8c\xb6\x17\x4a\x8a\x57\xc7\xe1\x5a\x71\x3e\x51\x91\x8e\x21\x64\xf3\xa1\x98\xaf\x0a\x8b\xca\xcb\x2e\x6d\x88\x1c\x5c\x70\x5a\xe7\x48\xdd\x35\xaf\x94\x16\xa1\x12\xd8\xb8\x8e\xba\xc6\xf2\xc8\xec\x6d\x65\xfa\x9c\x91\x4f\x3b\x72\x7f\x77\x61\xb6\x93\x91\xd4\x9b\x18\xf1\xdd\x72\x7d\x1a\x26\x77\x40\xac\x0a\x55\xc2\xbd\x8e\xc1\x54\x01\x18\x57\xa0\xfa\x40\x48\x15\x43\x6e\xd2\x2e\x9b\xee\xab\xd0\x76\x15\x51\x57\xd5\x75\x9c\x7a\xab\xfa\x40\xb7\xa7\x49\x4b\xa8\xcb\xd7\x54\x7f\x5d\x5f\xb7\x15\x2a\x56\xba\x2b\x57\xae\xe0\xfa\xf5\xeb\x88\xe3\xd8\xb2\x12\x39\xbe\x63\xe5\x61\x74\xfa\x0c\x30\x50\x18\x24\x2a\x1a\x3c\xcc\xd6\x16\xf6\xb3\x33\xd1\x58\x5e\xec\x4c\xd5\xe3\x41\xa2\xb6\x82\x54\x6d\x08\xa9\xd6\x49\x62\x40\x0a\x7d\xe4\x20\x85\x95\xa7\x8a\xba\x08\x28\x76\x2a\x65\xe3\x4f\xea\x27\x79\x5b\x8b\xa9\x9c\x42\x3b\x55\xa4\x26\x4a\x60\x5f\x0a\xb9\xb7\x10\x62\x67\xe9\x7e\x7a\x7b\xd6\x15\xbf\x49\x7a\xf4\xc9\xd1\x52\x70\xeb\x70\x2d\xd8\x4d\xfa\x62\xee\xdc\x18\x30\x46\xa8\x4d\xf2\x41\x10\x88\x20\x08\x64\x14\x45\xf2\xbb\xdf\xfd\xae\x00\x80\xff\xfa\x5f\xff\x2b\x9c\x8d\xc0\xda\xf6\xaf\x2f\xcd\x71\x14\x33\x1f\x00\xaf\x0b\xc7\x55\xfa\xea\xc6\x68\x1b\x5a\x3d\xae\xb5\xe6\xb7\x52\x4a\x79\x08\xc3\x50\x9f\xbb\xe3\xd2\xa4\x11\xd4\x1b\x07\xd1\xc6\xa9\x83\xe8\xf9\x85\x24\xb8\x24\x14\x06\xdc\xf7\xc2\x04\xce\xc3\x69\x2e\xda\x51\x4c\xc9\x08\x64\x80\xf1\x7a\xae\x80\x6a\x4b\x82\x25\x5b\xfc\xe6\xf4\x22\x36\xea\xcd\xc4\xf6\xe6\x41\xf7\xe5\xf3\x0f\x67\x9f\x7c\x70\x6a\xfc\xb1\x22\x1b\x64\x6b\x87\xdd\x4e\xa7\x83\x30\x0c\xbd\xfd\x17\xc7\x31\xe0\x58\x3d\x79\x9f\x74\x67\xd4\x7f\xec\x51\xf7\xdc\xa9\x83\xe8\xd5\x4e\x26\x36\xcd\xe8\xf2\xf8\x2f\x94\x56\x23\xdb\xed\xa1\x6c\xf7\xfc\x94\x92\x79\x4f\x65\xbf\x6f\x59\x56\x59\x0f\x59\xb2\xcd\xf4\x74\x99\x47\x51\xbc\x90\x04\x97\x4f\x0f\xa3\xaf\xde\x1f\x24\xb7\xc7\x51\x32\x2e\xde\x43\xef\x36\xac\x8f\x07\x40\xb7\xdb\x15\xae\xac\xfb\x5f\x15\x7c\x87\x2c\xba\xa1\x4e\xab\xaf\x15\x9c\x44\x84\xd5\xd5\x55\xc0\xf3\xd1\xb8\x16\x18\x48\x8a\x96\x26\xe1\xc9\x50\x96\xfe\x2d\xdc\x04\x58\x7e\x88\x12\xb4\x18\xba\x64\x54\xa9\x18\x90\xe0\x69\xf2\xc0\x9c\x9b\x8a\xff\xf8\x14\x94\x99\x43\x64\xcf\x5d\xb3\x0b\x39\x17\xb6\xe5\x87\xa0\x48\xc9\x51\x94\xed\x3c\x8a\xd3\x87\x19\x99\x29\x22\xcb\xa7\x05\x8c\x11\x1f\x33\xb4\x01\x12\x3a\x8e\xa7\xaf\xd2\xd6\x9a\x2c\x23\x55\x53\x26\x75\xa1\xc9\xf2\x50\x05\xc0\x7c\x6d\x77\xf3\xbb\xe5\xba\xed\xf1\xb5\xb7\xaa\x2f\x7c\x16\x97\xaa\x76\xf8\xda\xe0\xd6\xe9\x5e\xf3\x50\xd5\x16\xb7\x3d\x3c\xfd\x5c\x59\xcf\x3e\xfb\xac\xd8\xdc\xdc\xc4\xe2\xe2\x22\x16\x16\x16\x84\xe3\xc3\x32\x07\x58\xb4\xd3\x5f\x90\xc8\xb8\x3f\x94\x2b\xfd\xfd\xec\x4c\x77\xac\x2e\x44\xe3\xec\x89\x68\xa2\x2e\x88\x54\x9d\x11\x19\xd6\xe0\x9c\xf5\x42\xee\x7b\xba\x52\xc3\x42\xfb\x00\x11\x04\x1b\x67\x82\x3f\x53\x79\x43\x06\x4a\xd2\x8a\x80\x3a\x83\x19\x92\xce\x44\x8d\xbb\x87\x72\x5f\x86\x74\x67\x61\x3f\xfb\x74\x69\x57\xfc\x6a\xba\x20\x3e\x39\x5a\x14\x9f\x1e\x9c\x08\x77\x65\x88\x04\xce\x5e\x47\x54\x6c\x21\xa0\xfb\x44\xf3\x15\x22\x92\x6f\xbd\xf5\x16\xfe\xf1\x1f\xff\x51\x1c\x1e\x1e\xb6\xa5\xcd\xe3\x28\x69\x75\xb4\xd4\x26\x7d\x55\xda\x36\x74\x5d\x05\xa8\xdd\x74\x55\xe0\xbb\x89\x2e\xab\xfa\xe3\xb7\x01\x58\x78\xe6\x99\x67\xc4\xf6\xf6\xb6\xfb\xdc\xb2\xb6\xc4\x33\xd1\x7f\xec\x51\xf7\xf2\xca\x24\xbc\x1a\x4a\x5a\x29\xad\x1f\xf3\x02\x17\xb0\x79\xf8\x9c\x05\xc1\x44\xd9\xcb\x7c\xb5\x2e\xab\x9d\x70\x2d\x7d\x95\x29\xa7\xae\x05\xdd\xb2\xe0\x2b\x42\x20\xb1\xb2\x3c\x09\x9f\x3e\xbb\x1f\x3f\x77\x7b\x65\xba\x73\x10\x67\x1c\x5c\x73\xf9\x29\x2f\x5c\xb8\x80\xc9\x64\x22\x7e\xf6\xb3\x9f\x79\xbf\x9d\xe3\x5f\x66\x80\x5c\x6f\x16\x2c\x6d\x3d\x8a\x2e\xf6\x13\x71\x91\x14\x62\xd3\x6e\xa6\x84\xdb\x8b\x48\x14\x93\x57\xb6\x85\xc9\x72\xc8\x75\x7b\x8d\x47\x40\x97\x5b\xf6\x79\x39\x2b\xe1\x71\xa6\x61\x9a\x4a\x94\xd1\xe6\x89\x71\xe7\xca\xc9\x51\x74\x73\xbf\x97\xee\x1d\x45\x5e\x5f\x17\x00\x90\xaf\xbc\xf2\x0a\x7e\xf8\xc3\x1f\x8a\x9d\x9d\x1d\xa0\x1d\x4d\x56\xf1\x62\x9d\x5f\x02\xf3\x5b\xfe\xfb\x42\x93\xf6\x5a\x97\x4f\x33\x57\x6b\x73\x2b\x00\xe5\x07\x54\x08\x3b\x19\xf5\x07\x49\xb0\x11\x4a\x1a\xd8\x60\x82\xf1\x4d\xfd\x31\x8b\x3e\xe5\xf4\xcd\xfc\x92\x4c\x5e\x63\xe6\x72\xd0\x86\x05\x6e\x8a\x0f\xa7\x1d\x9b\xac\xb9\x3e\xb3\x6c\x6e\x0e\xf4\x9a\x60\x81\x2a\x52\xc8\x84\x4a\xf7\x7b\xe9\x9d\x49\x47\x8e\x15\x21\x01\x41\x3b\xe6\x5a\x3b\xe5\x56\xf8\xb5\xb8\xc1\x27\x74\xf9\x7d\x55\xa8\xd2\xfe\x79\xb9\xc7\xd1\x46\x9b\xf2\xd7\x99\xb1\xeb\x88\xd0\x8d\xab\x02\x36\x3e\xe1\x51\xd5\xde\x36\x40\xa2\xaa\xdc\x36\xef\x50\xd5\x8e\xaa\x36\xd7\x59\x74\xea\xb4\x75\xab\x5d\xcf\x3c\xf3\x8c\x78\xf2\xc9\x27\xbd\x3b\x4f\xeb\x71\x54\x00\x99\x90\x88\x42\x22\x0a\x3b\x47\xb2\xdf\x1f\x66\x1b\xfd\x47\xd9\xc5\x78\x98\x7d\xb5\x3b\x96\x97\xc2\x44\x9d\x11\x19\x36\x49\x61\x09\x0a\x31\xa0\x42\xcd\xf1\xe6\x2c\x9d\x5e\xb3\xbc\xed\x8a\xce\x7d\x06\x4c\x70\xf6\x8f\xc8\xb9\x23\x42\x40\x85\x04\xc4\xa4\x68\x89\x24\xd6\x83\x4c\x9d\x09\x13\x75\xa5\x3b\x96\xbb\xfd\x47\x74\x7b\x21\x16\x1f\xf7\xf7\xe5\xbf\x1d\x2d\x89\x8f\x0f\xd7\x82\xbb\xb3\x88\x26\x10\x06\xc0\x68\xcd\x6d\xce\x24\xbd\xb5\xb5\x85\x57\x5e\x79\x45\x26\x49\x22\x7e\xf9\xcb\x5f\x62\x67\x67\xa7\x8d\x35\xc2\x17\x9a\x00\xbf\x4b\x9b\xbe\xef\x77\x1c\xe0\xe0\xa6\xaf\xab\xbf\x0a\x70\x03\xf3\x74\xe6\x2b\xc3\x57\x56\x15\x5f\x39\x8e\x40\x71\xdb\xa2\xf7\x0e\x72\x15\x55\x3e\x35\x12\x9e\x38\xec\xac\x6d\x8c\xa2\x67\x7b\x33\x71\x86\x14\x62\x00\x6c\x8e\xc2\xf6\x3f\xe1\xc1\xb2\xc2\xf3\x79\x0d\xbd\x47\x0b\xa3\x57\x23\xa8\x0b\x65\x54\xe9\x0d\x47\x99\x58\x50\x50\x50\x44\xbc\x08\xc3\xfb\x15\x19\x37\x85\xb0\x9b\x8a\xcd\x13\x87\x9d\x67\x36\x87\xd1\x3b\xa3\xee\xd1\x48\x01\x09\xc8\x80\x16\xd3\xc7\x8b\x8b\x8b\x58\x5d\x5d\x35\xfd\x18\x45\x91\x78\xf9\xe5\x97\x79\x7f\x69\x07\x7a\xd3\x17\xa4\x10\xf5\x66\x62\x65\x6d\xdc\x79\xa2\x23\x69\x83\x83\xad\xb2\x41\xa5\x0c\x25\xed\x7c\xab\x57\x08\x39\x8a\x7a\x9e\xb6\xec\xb0\x12\xb4\x30\xf8\xc7\xc6\xbb\x33\x59\x61\x6e\xf4\x2c\x02\x71\x50\x04\xe4\x67\x3f\x01\xfd\x7e\x22\xce\xad\x8d\xc3\xc7\x17\x92\xe0\x93\xa3\x48\x8e\x95\x52\xda\x7f\x49\x7f\x73\x09\x00\x1b\x1b\x1b\xa2\xdb\xed\xfa\x68\x96\x87\x26\x43\xc8\xdc\x58\x3c\xce\xe9\xd0\xbf\x2d\x42\xe7\x96\x16\xf3\x1b\x4a\x84\x0b\x49\xd0\x8f\x13\xb1\x2e\x24\x45\x3e\x26\xaa\x7f\x8b\xbd\x88\x0c\x88\xb1\xcd\x5a\xee\x07\x9c\xb7\xb9\x98\x68\x56\x86\x89\xe6\xd6\x18\x96\xdd\x94\x5b\x31\xcd\xa4\x9f\x2b\x40\xce\x02\x35\xda\xeb\xcf\xee\xcc\x82\xf2\x6c\x22\xbe\xd9\x1c\xf7\x6b\x21\x22\x99\x24\x89\x64\x07\x53\x35\xf5\xa9\x8f\xa1\xb5\x15\xcc\xbe\x72\xbe\x0c\xfa\xd5\xf9\xea\xac\x10\x6d\x89\xcf\xcb\xf8\x30\x4f\xe0\x55\x02\xbe\xa9\xfd\x4d\xa0\xa9\x4a\x10\xb8\x6d\x69\x2b\x78\x78\x1d\xbc\x8f\xab\xc0\x56\xdd\x38\x32\xed\xba\x76\xed\x9a\x78\xea\xa9\xa7\x8c\x95\x45\xfb\xb5\x14\x60\x65\xee\x14\xd9\x68\x2c\x07\xbd\x61\xb6\xd9\x1f\xca\x4b\xfd\xfd\xec\xab\xd1\x58\x5e\x09\x13\xb5\x4d\x12\xeb\xa4\xd0\x27\x18\xc7\x5a\x98\x43\xd7\xac\x66\xd8\x80\xdf\xd6\xd6\xc8\x6c\xdc\xe5\x9e\xd7\x65\x02\xb9\xe3\x4e\x6b\x87\x5a\x54\x00\x04\x84\x50\x6a\x00\x45\x83\x40\x62\x3d\x48\xd5\xb9\xce\x24\x7b\xba\x7b\x28\xaf\xf6\x1f\x89\x5f\xf4\x0e\xe4\xcf\x8f\x16\xc5\x47\xe3\x65\x71\x77\x16\x8b\x91\x0a\x4a\x00\x83\x52\xdb\x35\x7d\x74\xfe\xfc\x79\x00\x40\x14\x45\xf2\xdd\x77\xdf\x15\xf7\xee\xdd\xf3\x09\xe5\x3a\xe1\xcb\xd3\x34\x31\x51\xdf\x75\x5d\xf0\x32\xde\x9a\x74\x6e\x9a\xa6\xf1\x5e\x95\xc7\x2d\xbb\x2a\x4d\x1b\xda\x6f\xdb\x16\xf3\x0e\xdc\x31\x17\x9a\x46\x55\xee\x16\xb0\xf5\x28\xba\xb0\x7c\x14\x3e\x1d\x4a\x5a\x32\x53\xf1\x9a\xde\xf8\xd4\xbc\xde\x30\x14\x5a\xd1\x2c\x89\x52\x2b\x9e\xc4\x19\x31\x0f\x66\xb3\xd1\xe2\xb1\x63\xa9\x01\x60\xf9\x75\x70\xc5\x57\xb1\xb2\x08\x04\x21\x55\x7f\x21\x11\xdb\xa7\x87\xdd\x8b\x9f\xac\x1f\xdd\xce\xf2\xd5\x45\x11\x4a\x3a\x34\xfd\x72\xf2\xe4\x49\x5c\xbe\x7c\x59\xdc\xba\x75\x0b\xcf\x3c\xf3\x0c\x9e\x78\xe2\x09\x17\xec\x72\x30\x17\x75\x53\xd1\x5f\x1b\x77\x36\x17\x92\x60\x5b\x48\xea\x7b\x16\x7b\xf8\xa6\x17\xd8\x75\xb9\x03\xae\xb1\x34\x99\x3c\x25\x14\x41\x51\x84\xbb\xc7\x99\x7e\x60\x8d\x58\x93\xc6\x06\x2d\x1c\x38\x46\x99\x58\x5f\x9c\x06\x67\x16\x12\xb1\x72\x5f\xa9\x3d\x22\x4a\x60\x4f\x19\xf9\xe8\xab\x4a\x59\x6c\x3b\x96\x4c\x68\x02\x2e\x55\xcc\xbb\xae\xd2\x5a\x20\xe3\xae\x61\x0f\xb3\x20\x5e\x9c\x04\x2b\xdd\x4c\xac\x90\x5e\xfe\x05\x6e\xbe\x62\x96\x0f\x2a\x3b\xdf\xa0\x62\x38\x96\x0f\x68\x84\x9d\xff\xc7\x37\xa1\xe3\x5f\xd0\xfe\x78\xdc\x04\x69\xf4\x45\x58\xfb\x07\x70\x2e\xed\xd2\x96\x02\x94\x80\x9c\x84\x72\xf8\xb0\x9f\xee\x64\x42\x71\xc7\x43\xdf\x16\xff\x00\x80\x34\x4d\xf1\xf3\x9f\xff\xbc\x2d\xf8\x68\x62\xbc\x55\x79\x74\x68\xab\xbd\xf9\xd2\xfb\xee\x79\x39\xbc\x2c\x1f\xad\xb8\x65\xfb\x80\x8f\x2f\x7f\x55\x59\x55\xc1\xd5\x3a\xab\x98\xb3\x0f\xbc\xf1\x3c\x55\x83\xcb\x7d\xcf\x36\xed\xae\x03\x2f\xde\x78\x21\x04\x9e\x7e\xfa\x69\x01\xb0\xf2\xa2\x00\x00\x00\x20\x00\x49\x44\x41\x54\x00\x57\xaf\x5e\x15\x7a\x8e\x1c\xb0\x97\x95\x02\xfa\xf0\x38\x15\x86\x33\xc4\xbd\x61\xb6\x31\xd8\x00\x21\x40\xde\xbf\xcb\x2e\x2f\x3c\xcc\xae\x77\xc7\xf2\x6a\x30\x53\xdb\x42\xe6\xd3\x41\xc8\xfd\x5c\x6c\x40\xa2\xc9\x79\x4e\xe3\x2c\x81\x89\x31\x45\x17\xf1\xe4\x30\x39\xae\xf8\xf2\x48\xcb\xe4\x0e\xcb\xfa\xc2\x07\x28\x8a\x43\xf3\x96\x40\x58\xea\x24\x6a\x3d\x98\x65\x17\xe3\x43\x79\x75\xda\x17\xbf\x38\x5c\x0d\xfe\xed\x70\x35\xf8\xe0\x68\x51\xec\xcc\xba\x34\x86\xa0\x84\xf5\x43\xea\x68\xe5\xf2\xfc\xf9\xf3\x42\x29\x25\xdf\x7b\xef\x3d\x51\x9c\xb0\xde\x04\x74\xeb\xc6\x49\x9b\xd0\x06\xdc\xfa\xca\x6c\x0b\xb6\xdb\xd4\xd5\xb6\x9c\x36\xbc\x44\xe7\xad\xe2\xed\xb5\xef\xf1\x95\xaf\x7c\x45\x1f\xa4\xab\x9f\xb9\x16\x97\xa8\x9b\x52\x7f\x63\x14\x3d\x59\x58\x5b\x22\x4e\x27\xc6\xa9\x14\xf3\x40\x85\x0b\x64\xcb\xf5\xc3\x9d\xea\xb1\xa4\xb4\xce\x5c\x02\x17\x5e\x47\x61\xb8\x28\x2d\x30\xd6\xfe\x5e\x30\x9a\x32\x11\xc2\x28\x13\xeb\x27\xc6\x9d\xa7\x16\x92\xe0\x5f\x87\xdd\x6c\x0c\x7b\xaa\xc8\x8c\xf1\xd5\xd5\x55\x5c\xbd\x7a\x55\xae\xae\xae\xe2\xca\x95\x2b\x6e\x5f\x99\x71\xab\xfb\xa4\x9f\x04\x4b\x27\x47\x9d\xb3\xf1\x4c\x6c\x09\x50\xa8\xdb\x64\xb5\x8f\xbf\x2b\xca\xf7\x57\x2c\xde\x74\x95\x2a\x24\xd7\xbc\x26\xcf\xde\xb3\xec\x5b\xf3\xfe\x45\x5f\x69\x58\xc7\x67\x26\x38\x28\xd2\xdd\x12\x48\x5a\x5a\x48\x82\xad\xc1\x34\xdc\xe8\x48\x71\x3b\x0d\x14\xb7\xaa\x71\xc5\x02\x8f\x3f\xfe\x38\x46\xa3\x91\x78\xf8\xf0\x21\x6a\x42\x93\x82\x68\x3d\xaf\x72\xce\x75\x85\xda\x9c\x26\xd8\x54\x79\x18\x86\xe2\xc2\x85\x0b\x60\x1a\xa2\xfe\x35\x04\x4d\x44\xa2\x23\x29\x5a\x9c\x86\xab\x61\x46\x4b\xdc\xc4\xa5\x09\xa8\x04\x14\x65\xa7\x96\xf1\xdc\x2c\xcd\xcd\x30\x40\xc9\xa4\x35\xc1\x9a\x4b\x13\xca\xa9\x21\x87\xf2\xb5\xf5\x85\x4f\xfe\xcd\x15\x60\x9b\xc4\x15\x41\x1e\x75\xb2\xbd\x83\x6e\xfa\x48\x01\x29\xa8\xdc\xb3\x05\xb0\x1d\x72\x5b\x4c\x15\xf9\x18\x47\xd5\xb7\x68\x93\xb7\xe9\xf9\x71\xac\x0a\x6d\xef\x7d\x42\xfe\xcb\xb6\xc1\x57\x57\x15\x2d\xd6\x31\xf5\xaa\xbe\x6b\x3b\x60\xda\x94\xdd\xf4\xac\x36\x3e\x0c\x43\xf1\x95\xaf\x7c\x05\x2f\xbc\xf0\x82\x6e\x27\x07\x8a\xd6\x06\x5e\x04\x84\x22\x55\x71\x74\x24\x97\xfa\xfb\x72\x7b\xe5\xde\xec\xb9\xf8\x40\xbe\x14\x26\xea\x12\x29\xac\x41\x21\x2e\xb1\x44\xa9\xa1\x71\x33\xb3\xd1\x4c\x8d\x59\xb3\xdc\x46\x1d\x40\x39\xe6\x8a\xac\xee\xf4\x37\x80\x32\x2f\xe3\x90\x25\xce\xb7\x13\x1b\x60\xc4\xe6\xe9\xf3\x8a\x14\x08\x14\x07\x0a\x5b\x62\x9a\x03\x98\x68\x2c\x2f\xf7\x86\xd9\xbf\x1e\xac\x87\xef\x1c\xae\x06\x9f\x4c\xfb\x62\x2f\xeb\xd0\x04\x84\xa4\xe0\x23\x5a\x29\x28\x8a\x50\x72\x7b\x7b\x5b\x00\x90\x8b\x8b\x8b\x18\x8d\x46\xe2\x8b\x2f\xbe\x68\xe2\x5d\xae\x40\x6f\x43\x87\x4d\x20\xc0\x97\x8e\x87\x36\x74\xdf\x44\xdf\x4d\xf9\xdc\xeb\x26\x10\xe7\xa6\x69\x2a\x6f\xee\xfa\xca\x95\x2b\x38\x71\xe2\x84\x65\x19\x44\x09\xb6\x43\x00\x51\x3f\x09\x96\x96\x26\xe1\x85\x40\xd2\x00\x0a\xa2\x04\x09\x30\x3e\x16\xfa\xc7\x65\xbb\xca\x15\xd0\x04\xc6\x92\xed\xe3\x5b\xac\x03\xed\x1c\x70\xc3\x29\xd2\x36\x62\xd8\xc2\x9c\x2b\xa9\x81\x44\x7f\x71\x1a\x5c\xda\x1c\x46\x1b\xc3\x93\x47\xfb\xc8\xfd\x17\xc3\xc2\x05\xc0\xa2\x9b\x95\x95\x15\xb1\xb2\xb2\xe2\xe9\x4a\xd3\x57\x7a\x2f\x9b\xa8\x9b\xd2\xd2\xf2\x24\xdc\xca\x7d\x7d\xec\x36\xf9\x96\x79\x5b\x16\x23\xc0\x7e\x37\x93\x9e\xac\x7e\xd3\xf9\x74\xff\xb0\xe4\xb0\xfb\xbf\xe4\x03\x65\xb5\x7c\xab\x91\x92\x6f\x08\x45\x51\x6f\x16\x6c\x2c\x4d\xc2\x8d\xde\x4c\xf4\x87\x22\x1d\x3b\xfe\x76\xfa\x5d\xe5\xe5\xcb\x97\xc5\xbd\x7b\xf7\x64\x03\x70\xf1\x29\x7f\x55\xf1\xb2\xca\x39\xb7\x8d\x86\x50\x65\x85\x11\x00\x64\xb7\xdb\xc5\xef\xfd\xde\xef\x09\xe6\x88\x6a\x84\x17\x9f\x97\x0f\x24\x45\xbd\x99\x58\x0a\x25\xf5\x8b\xbe\xb1\xbe\x96\x72\x3e\x86\xed\x94\xc5\xcf\x2b\x2a\xcf\xa4\xe0\xd6\x94\x39\x07\x5f\xfd\x91\xcc\x3d\xb3\xe8\x00\xe6\x7f\x57\xab\x04\x8b\x35\x60\xa7\xb0\xfa\x00\x0a\x19\xa9\xf4\x30\x92\x7b\x47\x1d\x6b\xb7\x5c\xd7\xda\xf2\xbf\x32\xb4\xd1\xf4\xda\x30\x61\x5d\x96\x9b\xfe\xcb\x5a\x78\xea\xb4\xc2\xba\xf2\x5d\x0b\xc5\x71\x2c\x19\xc7\x79\x47\xf7\xba\xa9\x0c\x17\x78\x55\xe5\xad\x13\x24\x3c\x9f\xdb\x47\x26\x5f\x14\x45\xe2\xfc\xf9\xf3\x78\xed\xb5\xd7\xcc\xc0\xf7\xec\xfb\x20\x94\x52\x11\x29\x44\x9d\x44\x0d\xe2\xa1\xdc\x58\xba\x9f\x5e\x59\x7c\x90\xbd\xd6\x99\xc8\x1b\x42\x62\x0b\x0a\x11\x57\x38\x6d\x5c\xce\x1d\xfb\xc0\xd4\x28\xa6\xdd\x32\xb1\x51\x35\x45\x6a\x5d\xb3\x32\xca\xe5\x99\xe5\x68\x29\xb7\x35\xb0\xc1\x3e\x98\x66\x69\x1c\xd8\xf2\x3a\x23\x92\x6a\xb3\x33\xc5\x4a\x90\x66\xdb\xd1\x58\x5e\xec\x0d\x83\x1f\x0d\x4f\x86\xef\x8d\x57\x82\xdb\x49\x4c\xc3\xc2\xff\x25\x61\x7d\x2b\x51\x80\x98\xed\xed\x6d\x6c\x6f\x6f\xe3\xde\xbd\x7b\xf2\x87\x3f\xfc\xa1\xb8\x7f\xff\xbe\xe7\xb3\x7c\x29\xab\x47\x55\xfe\xe3\x82\x9d\x36\xf7\x75\xed\xaa\xb3\x6a\xb6\x01\x22\x55\xcf\x7d\xe3\xd7\x2d\xcf\x67\x25\xb4\xe2\x9d\x65\xfa\xf9\x39\x3c\x0a\xa1\x50\x88\x56\xc7\x9d\xb5\x78\x26\xce\x09\x85\x88\x2f\xc9\x35\xc1\xdc\xdb\x4b\x81\xf3\x82\x61\xe8\xcb\x67\xfa\xe3\xae\x03\x96\x90\x37\xa4\xed\xec\x92\xee\xd0\x73\x4e\xc2\xae\xe0\xce\x69\x98\x14\xe2\x78\x26\xce\x6c\x0d\xbb\xdb\x1f\x9d\x3c\xfa\x04\x85\x3f\x19\x30\xb7\xf0\xa4\xaa\xcf\x2d\x8b\xa9\xf6\xef\x0c\x25\x0d\xa2\x54\xac\x09\x50\x3c\x07\xb0\x8a\x77\x28\xde\x6e\xbe\x54\xb7\xef\xe6\xf4\xef\x62\x04\x2a\xe7\xbd\xad\x22\xd8\x98\x54\xba\xb6\x7c\x35\xad\xd2\x8d\x80\xe6\x25\xf9\x41\x8e\xc5\x17\x10\x51\x46\x2b\x0b\x89\x38\xdd\x9b\x89\xc1\x41\x4c\xfb\x60\x8b\x03\x58\x5f\xf0\xdd\x73\xc1\xe2\xeb\xc6\x5e\x1d\xa0\x96\x40\x39\x55\xd4\x76\xd0\xd4\x0d\xd4\x2a\xe6\x2d\x9c\xeb\x92\x11\x83\xc2\x50\x52\xdc\x9b\x89\xa5\x40\xe5\xc0\x85\x9b\xa4\x01\x58\x44\xac\xca\x88\xd2\xb1\xd6\x68\x81\xca\x32\x81\x95\xbf\xfc\x79\x09\x4d\x34\x51\xcc\xfb\xb6\xb8\x9f\x56\x37\x0a\xa6\x51\x25\xa8\x2f\x59\x7c\x2a\xd4\x64\xd4\x4d\x77\x67\x81\xe4\x80\x45\xfb\xb8\xcc\xed\x51\x91\xa6\xa9\x8b\x40\x7f\x1b\x2d\xee\xb7\xd5\x12\x7d\x40\xa1\x0d\x61\xb5\x01\x2d\x2e\x53\xad\xcb\x53\x05\x58\x7c\xf5\x57\xb5\x87\xc7\xfb\xde\xb5\xea\x9d\xaa\xee\x75\x5c\xd5\xfb\xf1\xf6\xb8\xf5\xb9\xed\xaa\x64\x6c\x9d\x4e\x07\xe7\xce\x9d\xc3\xeb\xaf\xbf\xce\xb7\x04\xd7\x7f\x9a\x41\x86\x04\x8a\x84\x44\x14\x1d\xa9\x95\xc5\x07\xe9\xf6\xf2\xdd\xf4\xe5\xde\x41\xf6\x46\x30\xc3\x15\x80\x59\x58\x34\xb3\x22\x9b\x49\xcf\x0b\x0b\x47\xad\x33\x4c\xbe\x74\x5a\x24\x26\x08\xc0\xc6\x98\x2f\x98\x95\x1d\xba\x2c\xcb\x19\x8d\x4a\xc1\xe2\xa8\xd6\xa5\x32\x50\x66\x21\x42\x1c\x64\xd8\x16\x47\x6a\x23\x9c\xa5\x97\xba\x87\xf2\x07\x07\x27\xc3\xff\xb9\x7f\x3a\xfc\x60\xda\x13\xfb\x2a\x30\x4c\x99\x9f\xfd\x65\x78\xd5\xa9\x53\xa7\xc4\xd7\xbf\xfe\x75\xf9\xfd\xef\x7f\x1f\x8f\x1e\x3d\x72\x9b\x5a\x67\x89\x70\x43\x93\x65\xe2\x38\xf4\xd6\xa6\x8c\xba\xb6\xf0\x67\xbe\xb1\x5a\x37\x36\x81\x79\x5a\x06\xe6\xfb\xe2\x38\xe3\x05\x00\xb0\xbc\xbc\x8c\x30\x34\x9e\x07\xb6\x80\x2e\x68\x38\x94\x14\xad\x8f\xc3\xcd\x6e\x46\x9b\x54\xd4\xad\xf9\x33\x5f\x78\x61\x8b\x53\x94\x56\x41\xc0\x58\x0d\x94\xb6\xda\xc1\x5e\x4d\x9a\x97\x69\x50\x08\xca\x22\xe6\x85\xb7\x49\xaf\x69\x8e\x3d\x2b\x72\x41\x3b\x0b\x10\x94\x08\x25\x0d\x96\x8f\xc2\xc7\x8b\x29\xae\x48\x41\x4d\x0a\x67\xf8\x94\xd7\xc1\xcf\x35\x62\x7f\x00\x93\x7d\xc5\xc6\xab\x61\x94\x51\xbf\x23\x69\x09\xf9\x1e\x49\xd6\xd4\x15\x00\xa6\xa4\xb3\x31\x52\x76\x89\xf3\x3e\xe5\x5e\x2d\xda\xaf\xcc\x9d\xb5\x00\xf7\x5b\xd1\x63\xd9\x28\xf2\xa5\x7c\xe3\xd6\x18\x6e\xbc\x2a\x5b\x05\x08\x49\xfd\x6e\x2a\x56\xa2\x54\xe4\x5b\x28\xe4\x96\x24\xfe\xcd\x8b\xef\x61\x32\xb6\x91\x15\x4d\x4a\xae\x00\x20\x7d\x02\x80\x33\x59\xfe\xcb\x83\x74\xd2\xd6\xc5\x5b\xd7\xaa\xdc\x5a\x5c\x10\x20\x42\x49\x71\x3c\x0b\x56\x84\xa4\x38\x67\xb6\xf3\x7c\x54\xa9\xd2\x22\x62\x9c\x03\x75\x5a\xa0\xfc\x38\x96\xb9\xba\xbc\x54\xc8\x09\x3e\x37\x7b\xd9\x0d\xce\xfd\x65\xca\xc4\x96\x19\x8e\x17\x53\xcd\xab\xa1\x00\x39\x0b\xd4\xf8\x51\x9c\xee\x14\x8e\xb9\xa9\x52\x4a\x7a\x40\x8b\xd1\x18\x1e\x3d\x7a\x84\xbf\xfb\xbb\xbf\x6b\xd2\x66\xaa\xfa\xde\x97\xc7\x97\x96\x97\x53\x97\xaf\x8d\x96\x56\xd7\x96\x3a\x61\x5e\x07\x70\xab\x9e\x35\x85\x2a\x60\x55\x57\x46\x55\xdf\xba\xcc\xa5\x2e\x8f\xfb\x8c\x83\xd1\xa6\xfa\xab\x82\x0c\x82\x00\xdb\xdb\xdb\x78\xfd\xf5\xd7\x0b\x66\x5e\xae\x12\x62\x7f\x11\x01\x31\x49\xd5\xef\x1d\xc8\x8d\x13\xb7\x93\x67\xd6\x3f\x9b\x7d\x6f\x61\x3f\xfb\xf3\x70\x86\x67\xa8\x00\x2d\x5a\x63\xe2\x84\xae\x99\x1a\x7f\xe4\x3e\x75\x43\x3e\xa4\x54\x69\x0c\xc9\xdb\xc5\x7c\xc2\x7c\x19\xd4\x1c\x26\xc9\x7f\xed\x3c\xca\x2d\x82\xd8\xb8\xa4\xf9\xa1\x46\x0a\xfd\x60\x86\xcb\xbd\x03\xf9\xbf\xad\x7e\x3e\xfb\x3f\x4e\xfe\x3a\x79\x69\x61\x3f\xdb\xa0\x4c\xf5\x09\x88\xa1\x94\x5e\xce\x6d\x76\x67\x45\xce\x6b\x70\xe2\xc4\x09\xf1\xed\x6f\x7f\x5b\xef\xa5\x71\x9c\xd0\xe6\x1b\xb6\x19\x9f\xbe\xeb\x3a\xab\x87\x9b\x66\x4e\xf1\x63\x7f\x2e\x90\xe7\xe5\x55\x01\xf9\xaa\xf6\xfa\xda\x57\xcb\xcb\xf9\xf5\x5b\x6f\xbd\x85\x93\x27\x4f\xfa\xac\x2e\x86\x8e\x49\x21\x5a\x19\x77\xce\x06\xb9\x75\x5d\x28\x43\x92\xe5\xc9\xc4\xf9\xff\x05\x54\xe0\xd6\x15\xc0\x43\x5b\x64\xe8\x59\xd9\x04\xc5\x80\x0e\xe6\xca\xa0\x82\xe7\x5b\xca\xb1\x91\x03\x85\xb4\x2e\x1e\xf0\x32\x84\x42\x14\xcf\x82\x8d\x38\x15\x31\x98\xc5\x45\xff\x31\xcb\x68\x9e\x5c\xcd\x8d\x13\x23\xff\x88\x28\x0c\x25\x45\x51\x2a\xfa\xa1\xa4\xbe\x50\x14\x2a\x4b\xf6\x99\x06\x59\xc6\x25\x47\x87\x36\xf7\xaa\xb0\x94\x9a\xf7\x63\x69\x4a\xdf\x14\x67\x43\x57\xd6\x67\x34\x37\x66\x4b\x8b\xa9\x4e\xaa\x4c\xff\x98\x34\x61\x28\x29\x0e\x25\x45\x98\x07\x2d\x16\xed\x14\xfb\xdc\x54\xd1\x63\x15\x80\x46\xc5\xbd\x17\x78\xf8\x08\xbf\x2a\x3d\x8f\x73\x35\x6b\x00\xe0\xfe\x1c\x86\x29\x17\xd7\x22\x90\x14\xc5\x33\xd1\x8f\x33\x5a\x09\x14\x45\x16\x42\x66\x15\x14\xba\x5a\xc9\x94\x1d\xad\x4f\x7f\x62\x8d\xc8\x2d\x8d\x0f\x60\x00\xc7\x66\x89\xce\xa9\x0e\x73\xe5\x95\xef\x60\xbf\xb0\x4b\x8e\x92\x90\x4e\x3a\x72\xff\xa0\x2b\x87\x99\x40\x02\xca\xf7\x9e\x60\x7e\x2d\x52\xef\x43\xd1\xe0\xdf\xe2\xd3\x7c\x9a\x18\xa8\x4f\x78\x56\x95\xd7\xf6\x59\x55\x1d\x6e\x5e\xdf\x7d\x1b\x4d\xf6\x38\xf9\x8f\xa3\xbd\xd6\xd5\x5d\x55\x67\x9b\xfe\x6b\xd3\xae\x36\x69\xbd\x7d\x72\xe9\xd2\x25\xbc\xfe\xfa\xeb\xfa\xd6\x30\x36\x94\x4c\x3f\x02\x10\x8b\x14\xfd\xa5\xfb\xe9\xb9\x8d\x4f\x92\x37\x56\xbe\x48\xff\xcf\xee\x38\xfb\x8e\x90\xd8\x9c\x6f\x76\xa9\x95\x99\x18\x66\x69\xb1\xf9\xa9\x63\x2f\xf7\x94\xe3\x39\x8f\xbd\x1c\x8b\x56\x51\x1e\x83\xb6\x11\x0a\xce\x48\x23\x8b\x6d\x7a\x5e\xc1\x1d\xab\x10\x42\x62\x3d\x3a\x52\xbf\xb7\x7c\x3f\xfb\x7f\x36\x7f\x95\xfc\xd1\xea\xdd\x74\x4b\x64\xe8\x03\x14\xa3\xd8\x23\x04\xcc\x42\x55\xf0\x1a\x0c\x06\x03\xf1\x67\x7f\xf6\x67\xf3\x75\xd4\x87\x36\x96\x18\x5f\x68\x0b\xbc\x9b\xd2\x57\xd1\x4c\x15\xe0\x6f\x2a\xaf\x0a\xdc\x34\xd5\xdd\x94\xc6\x8d\x73\x05\x97\x01\x2e\x42\x51\xd4\x95\x62\x85\x14\x45\x00\x5b\xf1\xe3\x5a\xc9\x75\x69\x8e\x74\x26\xf7\x86\xca\xc4\x04\x72\x00\xb9\x1d\x8c\x40\x66\xc6\x3f\x28\x16\x5f\xc4\x11\xaf\xd7\xca\x4b\x20\x45\x61\x37\xc3\x5a\x3c\x0b\xfa\xe4\x80\x64\x5f\x5f\x38\xf2\x46\xcb\x3f\x7d\x2d\x3a\x19\x45\x71\x2a\xfa\x81\xa4\x3e\x29\x08\x63\x05\xd1\xb5\xb2\x65\xaf\xe4\xfc\x1a\x99\xa7\xb8\xf2\x5e\xb6\xdf\x3b\x92\xbd\x0a\x45\x45\x60\x7d\x61\xd9\x05\x50\x02\x21\xa1\x10\x85\x19\xf5\x03\x49\x1a\xc8\x55\xf5\x05\x5e\x7a\xe9\x25\xf1\xf4\xd3\x4f\xbb\xd1\x6d\xe4\x93\x37\xde\x07\x4c\xea\xb4\x81\xba\x41\xe4\xad\x48\x23\x4c\x7e\x66\x0a\x0a\xe7\xa4\x28\xa3\x68\x69\x1a\xac\x74\x52\x61\x9d\x08\xed\x4e\xd6\x28\xe7\xa3\xb8\xe6\x10\x46\xbf\x25\x53\xe4\xd6\x16\xf7\x2b\xaa\xf2\x57\x51\x09\xbd\xf5\x9e\x2e\xbc\x3c\x5f\x70\x89\x48\x0a\x95\x8c\xa3\x6c\x6f\x14\xa7\x0f\x91\x83\x14\x77\x35\x11\xef\x0f\x7e\xdb\xc4\x64\x7c\x5a\x55\x95\xd6\xd3\x54\xce\x71\x9e\x35\x95\xed\xd3\x02\xdb\x94\x51\x65\xdd\x68\xa3\xd5\x35\xb5\xc9\xd7\x9e\x26\x8d\xb1\x4d\x5f\xfa\xda\xec\xc6\xd5\xd5\x09\xf8\xfb\x5a\x00\x10\xd7\xaf\x5f\x17\xaf\xbc\xf2\x0a\xb8\x25\x52\x29\x15\x16\xf7\x11\x80\x58\x29\x15\x87\x13\x39\x58\xfb\x7c\x76\xe5\xe4\xa7\xb3\xff\x7d\xf1\x41\xfa\x57\x9d\x89\x7a\x05\x8a\x06\x85\xcd\x1c\xdc\xae\x68\x02\xd9\xd0\xc2\x62\xd2\x73\xb1\x0c\xb0\x2b\x38\x8c\x8f\xe9\x7a\x16\xaa\x77\x46\x09\x01\x76\x7b\x58\x7c\x15\x36\x71\x40\x94\xb9\x55\x1c\x1a\x59\x89\xe2\x60\xa6\xae\xf4\x1f\x65\xff\xf7\xc9\x4f\x92\xff\xeb\xe4\x67\xc9\x95\x30\x51\xc5\xbe\x34\x06\xbc\xcc\x59\x5e\x82\x20\xc0\x5f\xfd\xd5\x5f\x09\x67\x47\xd7\xb6\xa1\x09\x5c\xfc\x36\xe5\xb4\x01\x1d\xc7\xa9\xbb\xca\xd2\x72\x5c\xf0\xe5\xeb\xa3\xa6\x32\x2a\xc7\x3b\x15\xce\xe4\x24\xd1\xe7\x46\x05\x4e\x4e\xee\x35\xf8\x35\xe3\xcd\x73\xcf\x95\x82\xf2\x51\x8a\x2a\x49\xd2\xd0\x34\x39\xc6\x15\xb7\x1c\x4d\xe6\xaa\xa4\xbd\x92\x26\x21\x48\x51\x3f\x94\x14\x43\x55\xf2\x00\x51\x94\x25\xf2\xf2\xe6\xf8\x7d\xa9\xb8\x2b\x0a\xc3\x4c\x74\x49\x21\x54\xe4\xb4\x4f\x79\xfa\xc0\x7a\xbf\xb2\x43\xb8\x8c\x53\x45\xe3\xc9\xc9\xc3\xfb\xc7\xfa\xe3\xb2\xd0\xca\x53\xbe\xfd\x9c\xf8\x54\x05\x60\x52\x24\x84\xa2\x28\x50\x88\xc8\xee\x0f\xaf\xd5\xc5\xe9\x87\xa6\x50\x9b\xa6\xce\xe2\xa2\x9f\x1f\x7b\x70\xae\xad\xad\x89\x3f\xf9\x93\x3f\xf1\xd6\xa5\xb5\x20\x00\xa2\x93\x89\xb8\x9f\x04\x8b\x1d\x49\x03\x4e\x90\x36\x71\x16\x1f\x41\x33\x32\x46\x58\x00\x2c\xe2\x73\x2d\x25\x3a\x92\x9b\x12\x35\x71\x94\x75\x31\x8e\xca\x4c\xd6\x73\xe5\x54\x04\x05\x20\x25\x95\x8e\x3b\xd9\xde\x34\x94\x13\x94\x9b\xcd\x99\xe9\x22\x30\x90\xa7\xf7\x74\xf1\x14\xd5\xa4\x11\x1d\x07\x95\xb6\x09\x3e\xab\x4e\x1d\x68\x6d\x53\xaf\xcf\xfa\xc6\x09\xd8\xa5\x2d\x77\xe0\x37\x95\x59\x65\x62\xac\x2a\xa3\xca\x52\xd4\x16\x38\xf1\x3c\xfc\xb9\x4f\xd8\x54\xd5\x53\x29\xf4\x9e\x7b\xee\x39\x7c\xed\x6b\x5f\x9b\xf3\x67\x29\xee\xb5\x10\x8e\xbb\x47\x6a\xe9\xc4\xed\xd9\xb5\xb5\x3b\xb3\x3f\xed\x0d\xb3\x3f\x10\x29\xb6\x09\x4a\x94\x5a\x14\x37\x31\xda\x76\x0c\xcb\xf2\xec\x4a\x0c\x7d\x67\x94\xd8\xc2\xd8\x4c\x4e\x3e\x37\x90\x0b\x7e\xc0\x54\x40\x96\xc5\x33\x18\x8d\x20\xe1\x9a\x33\x03\x42\xa5\xb6\xed\xa9\xd7\x44\x2b\x41\x12\x6b\xdd\xb1\xfc\x83\x95\x3b\xe9\xdb\xeb\x9f\x25\xd7\xa2\x71\xb6\x06\xa9\xe6\xc0\x0b\xf7\xb5\x20\x22\x7c\xef\x7b\xdf\xc3\xe2\xe2\x22\xd0\xce\x9a\xa9\xc3\x97\x1d\x67\xc7\x15\xfc\x55\xf4\xdd\x54\x6e\x53\x39\xbe\x7c\x6d\xca\x68\xfb\xde\x75\xfc\xac\x04\x2f\x0a\x61\xa0\x28\x36\xcf\xc8\x21\x5f\x55\xde\x73\xeb\x0a\x15\xc6\x07\xcb\x8f\x45\xf1\xe7\xf3\xc8\x58\x29\x65\x6f\xe4\xc6\x52\x58\x96\x1b\xfe\x9c\xca\x7d\x8d\xc8\xd4\x61\x5b\x4d\x48\x51\x24\x54\x0e\xc2\x30\xcf\xc3\xac\xb2\xf8\xaf\xaf\x3f\x24\x20\x24\x79\x21\x97\x71\x99\xe0\x23\xdb\xfc\xaa\x62\xa4\x90\x9d\x1e\x45\x9b\x95\x76\xbe\x37\x43\xcc\x35\x05\x94\x56\x1a\x23\xef\x78\x7e\x9e\x5a\x59\x3f\xf9\xb3\xa2\xbb\x15\x41\x4a\xa1\xa4\xd4\x65\xd8\x27\xcc\xd7\x85\xb6\x33\x09\x95\xe1\xb7\xca\xec\x94\x61\xca\x12\x42\xa0\xdf\xef\x9b\x7b\xae\x4d\xf2\xbf\x30\xa3\xa8\x97\x04\x4b\x81\xa4\x7e\x8e\xfe\x1c\x62\x52\xa5\x0e\x49\x96\x2d\xac\xfa\xa3\x6a\xc6\xc8\xcd\x5a\xf9\x33\x8f\xf9\x8c\x59\x66\x74\x9a\xe3\x04\xcd\x80\x67\xa1\x1a\x1f\x74\xb3\xdd\x69\xe9\xdf\x52\x77\x60\x1c\x76\x76\x76\xf0\x3f\xfe\xc7\xff\x70\x8b\x3b\xae\x36\xd3\x26\x5d\x13\x40\xaa\x6b\x43\x15\x18\x68\xca\xef\x0a\xf6\x36\x53\x34\xfa\xaf\x0d\x68\xd0\xbf\x4d\xa0\xba\x0e\xed\x37\x31\x65\x97\xc1\xd7\xb5\xcf\xf7\x7e\x4d\xdf\x4a\x3c\xff\xfc\xf3\xe2\xf2\xe5\xcb\x88\xa2\x28\x67\xea\x6c\x6f\x16\x00\x11\x15\x27\xe8\xc6\x87\x72\x69\xed\xf6\xec\x77\x97\xef\xa5\x7f\xd2\x1d\xc9\x37\x44\x86\xad\x3c\x0d\xa3\xfa\x82\xb3\x2b\x7d\x0f\xbf\xb6\x56\xde\x50\x61\x95\x2c\x05\x43\xf9\x98\x59\x60\x14\x00\x2a\xb4\x46\x45\xde\x32\xad\x5f\x42\xe9\x10\xe8\xec\x41\xce\xdb\xa6\x7d\xd2\x8c\x7f\x99\x76\x3a\x80\xd6\x34\x4b\xd6\xa9\xff\xe7\x1a\x28\xe5\x5c\x56\x90\xc4\x5a\x34\x96\x6f\x2c\xdf\x4b\xff\xf4\xc4\xed\xf4\x99\x78\x24\xd7\x49\xaa\x3e\x18\x78\xa1\xe2\xac\x26\xcd\x83\xfa\xfd\xbe\xf8\xd6\xb7\xbe\x85\x13\x27\x4e\xd4\x01\xe1\xba\x70\x5c\xab\xc8\x97\xd5\x38\x75\xfe\xb6\xf1\x75\xf5\xf0\xf1\xe2\x2a\x15\xfc\x79\x53\xbd\x4d\xf5\x99\xb2\xf8\x99\x74\xba\xef\xc3\x4c\x44\x42\x22\x9e\xcb\x6b\x48\xb9\xf4\x91\xca\x59\x2b\xcd\x27\x41\xe1\xfb\x42\xec\x1a\x8c\xef\xeb\x74\xe4\x80\x60\x82\x05\x98\x7d\xbe\x8c\xb6\x3d\xa3\xb4\x66\xb0\x20\x01\xc8\x4c\x28\xa8\x7a\xcb\x82\xab\xa4\x9b\x78\x36\xf3\x80\x4c\x28\x39\x0b\x54\x2a\x49\xa5\x5c\xfa\x58\xa0\xcd\x29\xc0\x2c\x48\xb1\xfa\xc4\x1d\xe3\xca\x80\x0b\x23\x43\x8b\x71\x55\x46\x73\x43\x80\x32\x43\xd5\x1a\x79\x8a\xf5\xa3\x6b\x8a\x52\x40\x46\x2a\x99\x06\x72\x3c\x0d\x65\xa2\x60\x7c\x7b\xaa\x42\x95\xd2\x08\x16\x5f\x37\x2e\xac\x67\xbe\x7d\x5c\x8e\x63\x65\xf1\xa5\xb5\x06\xab\x3b\xcf\xc7\x35\xa0\x8e\xa4\x38\x4e\xc5\x52\x31\x47\x56\xa6\xd5\x1d\x68\x65\x55\xa6\x23\x4d\xd9\xd6\x63\x63\x5a\x61\x1f\x9e\xac\xb2\x7c\xdd\xea\x8b\x73\x3d\xb6\x75\x24\xf3\x18\x37\x99\x25\x21\x4d\x02\x39\x1e\x75\xd3\x7d\xbd\xa2\x88\xad\x72\x30\x53\x45\xc4\x76\xcd\x9d\xcd\x66\xd8\xdf\xdf\xaf\x62\x3e\x55\xcc\xb4\x6a\x4a\xae\x09\x28\xf0\x38\xce\xbc\xdc\x3c\x6d\xe2\x7c\xe5\x37\xdd\xfb\xea\x3f\x8e\x35\xa7\xad\xf5\xa9\x2e\xbe\x2a\xcd\x71\x80\x56\xdb\x6b\x7e\xef\x8d\x7f\xfe\xf9\xe7\xf1\xc4\x13\x4f\xa0\xd7\xeb\x19\xa6\xa7\x97\x8d\x16\xbb\xe1\x46\x00\xe2\x68\xa2\x96\xd6\x3e\x9f\xfd\xee\xd2\xfd\xec\x3f\x44\x63\x79\x43\x64\x58\x27\xb6\x69\xa4\xa1\x45\xbd\xef\x11\xab\xa8\x64\x66\x7c\xcf\x16\x18\x30\xc1\x4f\x5e\xe7\x1a\x16\x19\x20\xa1\xb5\x4f\x67\x3d\x9f\x8f\x69\x2a\xbd\xba\x83\x9d\x17\x03\x3d\x8e\x34\x03\x84\x5d\x19\xab\x07\x26\xaf\x1e\x5b\xd6\x08\xce\xeb\xe1\xed\x2f\xae\x89\x94\x10\x92\xd6\xba\x63\xf9\xca\xf2\xce\x2c\x04\x54\xb4\x7f\xba\xf3\xd3\xa3\x81\xd8\x2d\x3c\x06\x8a\xbc\x04\x94\xfb\xbd\xc8\xd5\xd5\x55\xc1\x0e\xc4\xe3\xdf\xff\xcb\xf0\xc1\xa6\x74\xbe\x7a\xda\x04\xdf\x58\xad\x2a\xa3\x2a\xbe\x6a\xec\xb8\xe3\xf0\xd8\x56\x75\xcc\xf7\x95\x15\xe6\x78\x25\x20\x40\x1c\x70\x97\x7c\x96\x83\x12\xbb\x0c\x7f\xe5\xb6\x4c\x61\xb4\x52\x95\x9e\x95\x37\xb7\x37\x8a\x27\x65\x8e\xbb\x6d\x60\xa3\x81\x4c\x1a\xa8\x24\x15\x4a\x16\x0f\xac\xf7\x76\xde\x57\xdf\x5b\x69\x98\x25\x46\xa4\x42\x61\x1a\x66\xb3\x4c\xa8\x44\x01\x92\xac\xf2\x6a\x5e\xc6\x80\x17\x17\xec\xc0\x00\x3a\xbb\x18\x7b\x5c\xf1\x9c\x7c\xd5\xd1\xdc\xd4\xad\x55\x8c\x69\xb7\x89\xcb\x84\x9a\x1c\x75\xe4\x68\x12\xca\xc4\xe9\x8f\xe3\x2a\x8c\x3e\xab\x75\x15\x5f\x16\x40\xbe\xaa\xa8\xad\xe6\xd9\x14\xbc\x0d\x62\x3e\x2e\x16\x22\xa5\xfc\x8c\xa2\x1c\xb8\xe4\x27\xd2\xe6\xf3\x69\xca\x36\x0b\x96\x7f\x79\x64\x39\xe3\xc6\xae\x0a\xaa\xb5\x9f\x94\xce\x88\xdc\x3a\x63\x01\x47\x86\x5e\x4d\x1c\x6c\xc2\x2e\xd6\xf0\xdb\xa6\x3f\x6d\x82\x53\x80\x24\x95\x4e\x43\x39\x3c\xea\xc8\x03\x49\xfe\x93\x6d\x79\xdf\xd4\xa0\xd2\x2a\xd0\xc2\xf3\xfb\xac\x1f\xbe\x3c\x55\x56\x12\xce\xa8\xda\x98\xb1\xab\x88\x6c\xce\xec\x59\x91\xae\xea\xbe\xea\xda\x6d\x57\x95\x46\xe8\xc6\xb9\xfd\xe3\xfb\x6d\xaa\xd3\x37\xe8\x7c\xf9\x9a\x2c\x51\x75\xe9\xc5\x73\xcf\x3d\x27\x5c\xd0\x02\x7e\x76\x09\x51\x44\x40\x14\xce\xd4\x60\xed\xf3\xd9\xd5\xc5\x12\xb4\x6c\x40\x21\xe4\x26\x42\xb3\xc2\xa7\xa0\x7d\x9f\x45\x84\x34\x81\xcf\x99\x1b\xcd\x7f\x16\x8b\x54\x4e\x5a\x9d\xcc\xcd\x3e\x67\xa9\xa4\x52\x58\x99\xf4\x16\x57\x65\x83\x06\x80\x22\xb6\x4f\x87\x11\x26\xdc\xaa\xe3\xbb\xd2\x77\xa5\xad\x95\x50\x38\xed\x8e\xd5\x0b\x4b\xf7\xb3\xb7\x96\x76\xd2\xab\xf1\xa1\x5c\x83\x42\xac\xf2\xd5\x46\x96\xc3\x2e\x0a\x6d\xf7\xfa\xf5\xeb\x58\x5f\x5f\xaf\xfb\xd6\xbe\x31\xe2\xa3\x73\xd7\x72\x71\x1c\x60\x51\x45\x93\x6e\xf9\xbe\xeb\x2a\x0b\x49\x13\xfd\xba\xe9\xdd\x74\x75\x9a\x2f\xb7\xdc\xf0\xb8\xb9\x77\x63\x42\xdc\xac\x34\x49\x85\x92\xa9\x90\x89\x49\x4f\x25\x1f\x2e\x33\xce\x5f\xba\xb4\x6d\x3d\x27\x1b\xe0\x96\xfc\x9d\x5b\xfa\xca\x0b\xbe\xe9\xa1\x91\x01\x9c\xd6\x94\x53\x2f\xbf\x27\x95\x26\x81\x1c\x4d\x43\x99\xaa\x1a\xb0\xc6\xef\xab\x82\x52\x0a\x69\xa0\xd2\xa3\x8e\x1c\x4f\x3b\x6a\x24\x49\xa5\x95\xed\xf2\x8c\x47\x02\xcc\xb4\x8e\xed\xdf\x32\x2f\xeb\x8c\x2c\xc4\x7c\x7f\x2b\x96\xd9\xc8\x5a\x55\x96\x05\xe5\xf4\x01\xab\x2b\x15\x2a\x99\x74\xe4\x28\x09\x55\x8a\xe3\x07\x97\xae\x5d\x3e\x5c\xa7\x9c\x7a\x0f\x59\x6c\xa3\xd9\xba\xcf\x2b\x89\xd7\x09\x86\x51\x07\x92\xc2\x6e\x2a\xfa\x51\x4a\x4b\x42\x51\xa4\xe7\xe6\x8c\x16\xc8\x3f\x96\x07\xf9\x19\xaa\xd7\xf3\x92\xda\xe0\x52\x20\x4e\x77\x30\xe8\x7d\x5c\xb8\xe6\x46\xb0\xc1\x8a\x9f\xce\xfc\xa6\x1a\x9d\x47\x12\xd2\x69\x28\x47\x93\x8e\x1c\x2b\x28\x7d\xa8\xe2\xdc\x34\x88\x6a\x3e\x11\xba\x0d\x70\x70\x35\xb0\xb6\x5a\x63\xdb\xb8\x36\x5a\x61\x13\x7d\x70\xc2\xe3\xe5\xfa\xe2\x24\xaa\xeb\xfd\x32\xef\xe9\xb6\xab\xc9\x6a\xe4\x2b\xaf\xea\xfd\xeb\xde\xa5\xaa\x4e\x37\x3d\x1e\x7f\xfc\x71\xd1\xef\xf7\x85\x9e\xbe\xd0\x4b\x9f\x8b\x55\x44\x11\x94\x8a\x44\x86\xc1\xca\xdd\xf4\xd2\xf2\xbd\xf4\xdb\xdd\x02\xb4\x50\xae\xb1\x82\xef\x45\xc4\xd5\xc7\x72\xdc\xe8\x83\xd8\x18\x63\x37\x42\xa4\x24\x76\x43\x89\x96\xe5\x43\x6b\xa5\xc4\x7c\x08\xc8\x8c\x31\xa3\xea\x39\x43\xa2\x34\x5d\xb3\x7d\x91\x1c\x52\x57\xc5\xe6\x55\x3a\x31\xb7\x14\xc1\xec\xc1\x54\x8e\x49\xfd\x3c\xdf\xb7\xc3\xb6\x10\x69\x6b\x90\xf5\x71\xa4\x5a\x8b\xc6\xf2\xc6\xd2\x4e\x9a\x28\x41\xa9\x14\xf4\x5e\xd2\x17\x7b\xc5\xb8\x8b\x90\x6f\x56\x17\x22\xb7\x88\xe2\xdc\xb9\x73\xc8\xb2\x4c\xfe\xec\x67\x3f\x83\x73\x72\x2d\x3c\xdf\xaf\x8a\x0e\xab\x2c\x17\x3e\xa5\xa0\x8e\x0e\xab\xea\xf7\x05\x1f\x58\x6f\xb2\x04\xd6\x69\xbb\xbc\x7d\x6e\x1e\x37\x8d\x0f\xa4\x79\xcb\x74\x79\x9d\x02\x20\x49\xc9\x24\x94\x23\x05\x48\x80\x01\x57\x06\x3e\x1c\xa3\x9a\x15\x0f\x3d\xd9\x61\xa1\xeb\x82\x7e\x0a\x79\x30\xe7\x5b\x52\x14\x60\x1d\xd0\x3b\x67\x79\xb1\x8f\xb4\x60\xd9\x9c\xf6\x43\xfb\x32\xb6\x7e\x6f\x27\x70\x05\x56\x2a\x00\xd3\x50\x4d\x0e\xa3\x6c\x2f\x13\x6a\x12\x2a\x8a\xe0\xb4\xab\xfc\x61\x3b\xc7\xeb\x36\xe9\x71\xe8\xe9\x3f\xab\x4d\x60\x63\x94\xcb\x57\x2d\x2b\xf5\x1b\x2a\xb3\x0b\x4c\x69\xc7\x62\xbc\xc2\xee\x33\x85\x34\x50\xe3\x49\x47\x8e\x66\x81\x34\xd6\x4c\xf7\x3d\x4d\xea\x79\x27\x65\xdf\x98\xf0\x29\xae\x5e\xb9\xd8\x06\x9d\xd7\x05\x97\x89\x5b\x81\x2d\xfd\x32\x0e\x88\x7a\x99\x67\x27\xcb\x97\x42\x77\xa4\xe8\x93\xca\xcd\x69\x2e\x90\xe0\xc1\x78\x86\x73\x74\xc9\x56\x03\x99\x3a\x4d\xdd\x26\x95\xf9\xba\x7a\x93\x3a\x03\x5a\x9c\x7a\xaa\x90\x7d\x59\x92\xd6\x16\x4b\x25\x52\x92\x4a\xa6\xa1\x1c\x4e\x43\x35\x46\xe9\x90\x3b\x77\x12\xb4\xde\x1c\xeb\xe1\xc3\x87\xf2\xd3\x4f\x3f\xf5\x55\x71\xdc\xbe\xf7\xa5\xf3\x69\x8d\x6e\xa8\x62\x4c\xc7\xa9\xbb\xce\x2a\xe2\x63\xe4\xbe\xb6\x54\x31\xd8\xaa\x38\xe1\xc4\x55\x59\x3e\xdc\x76\xf9\xca\x6e\xd3\x4f\xbe\xb2\x7c\xcc\xdc\x4d\xe7\xb6\xd3\xfc\x3e\xf5\xd4\x53\xa2\xdb\xed\x02\xb0\x8e\xbe\xb0\xa6\x88\x48\x62\x30\x78\x90\x9e\x5b\xfd\x7c\xf6\x56\xf7\x50\xbe\x52\x4c\x0f\x99\x7a\x3d\x56\x72\x4b\xbb\xe4\x0c\xbb\x1c\x0b\x0c\xec\x1b\xe4\x5e\x8e\x0d\x67\x2d\x52\x39\x3f\x5e\x20\x09\xa6\x43\x42\xaf\x7e\xe0\xe3\x84\x0f\x35\x53\xb9\xfe\x55\x7c\x0c\xda\x19\x14\x43\x40\x7c\x7f\x18\x62\x71\x64\xc6\xae\x79\x43\xd6\x00\xab\x15\x42\x64\x6a\x23\x1e\xc9\x17\x96\x76\xd2\xd7\x97\x76\xd3\x4b\xe1\x54\x0e\x0a\xd0\xc2\x2d\x2f\x66\x7f\x8d\xc7\x1f\x7f\x5c\x5c\xbd\x7a\x15\x1b\x1b\x1b\x55\xd6\x32\xa0\x9e\x36\xab\x82\xab\xb8\xf8\x9e\x57\x85\x26\xe5\xc1\x07\x88\x9b\xc6\x82\xab\xcd\x56\xa5\xf1\xd5\xe3\x3e\xab\x53\x56\xea\x82\x94\x42\xc9\xc3\x48\xee\x4b\xc1\x34\x74\x0d\xac\x61\x0b\x46\xbe\xba\x53\x31\x0a\x35\x16\x07\x2a\xf6\x14\x2a\x84\x6f\x4e\xae\x25\x91\x99\xd5\x30\x4c\xf6\x5b\x0a\x30\x95\xb4\x63\xea\xa2\x32\x6f\xde\x1e\xc5\xe9\x5f\x66\xa4\x92\x51\x37\xdb\x97\x04\xe9\x0c\x99\xda\xf7\xf6\xc5\x15\x34\x28\xa7\xa1\x1c\x3f\x8a\xd3\xdd\x59\x20\x47\xe5\x0b\x16\xed\x67\x16\x15\xcf\x3e\xc2\x96\x75\xa5\xb4\x28\x31\x0b\x09\x71\x8b\x0a\x97\x60\x4c\x49\x30\x80\x2e\x07\x80\xa5\x92\xa2\x3b\x84\xf3\x16\xf0\x99\x8a\x74\x1a\xca\xd1\xb8\x93\x8d\x66\x81\x4a\xf4\x82\x13\x8f\xb1\xa2\x28\x8a\x7c\x34\x54\x35\x36\x7c\x63\xcf\xa2\xb1\x3a\x13\xa7\x8f\x29\xbb\xd7\x3e\xd4\x2f\x00\xeb\x05\x24\x60\x39\x6b\x01\x80\x08\x25\x85\x71\x2a\x16\xc2\x7c\x0d\x7b\x41\x20\xe5\xa6\x72\x00\x43\xc7\x28\x99\x29\x73\x2f\x31\xc1\xb2\x96\x70\x53\x18\x91\xc3\xdf\x6c\x4d\xcd\x06\x39\x7a\xa0\x70\x6a\x28\x33\x93\xfe\x9f\x09\x04\x45\xda\x5c\xa6\x86\xb3\x40\x26\xce\xde\x2d\x7c\x29\xb4\x59\x49\x74\xff\xfe\x7d\xbc\xff\xfe\xfb\x6d\x18\x09\x1a\x9e\xb7\xfd\x66\x6d\xea\xf1\x95\xe1\x03\x45\x75\xf5\xd4\xd1\x8b\x0f\x55\x57\x01\xb5\x3a\x60\xd5\x64\x46\xd4\x69\x38\xa2\xf7\x31\x78\xd7\x3a\x02\xf8\xfb\x89\xa7\xab\x7a\x3f\xb7\xed\xbc\x5e\x0d\x5e\x71\xe1\xc2\x05\xf1\xe2\x8b\x2f\x22\x8e\x63\x3d\x3e\x0c\x70\xd1\x53\x1a\x94\xa9\x7e\x6f\x28\x37\x4f\xdc\x9e\xbd\xd6\x1b\xc9\x37\x45\x86\x4d\x02\x42\xc7\x78\xc8\xac\x25\xa5\x76\xa9\x8c\x0d\x38\x67\xd8\xe5\x14\x68\xa9\xab\x5a\x85\x30\x00\xe0\x24\x85\x3d\x00\xec\x55\x7d\xf9\x32\x48\x47\x31\x40\x11\xa9\xad\xa0\xd0\x26\x73\x06\x4c\xf4\xff\x6c\xf0\x18\xa3\x8b\x2d\x96\xca\x32\xe7\x18\x33\x39\x11\x25\x63\x2d\x58\xbb\x10\x19\x36\xe3\x83\xec\xa5\xa5\x9d\xf4\xb5\xc1\xc3\x6c\x9b\x32\xe3\xac\x6b\x96\x48\xf3\xfd\x26\x2e\x5c\xb8\x20\xce\x9e\x3d\x0b\x54\x5b\xf3\x50\x13\xe7\x0b\x6d\x14\x90\x26\x00\xe1\x03\xe6\x4d\xa0\x99\xe7\x75\xeb\x71\x15\x8a\xba\xb1\xe5\x2b\xb3\x2a\x54\xbe\x07\x17\x60\xfa\x3a\x23\xc8\x87\xfd\xd9\x5e\x2a\xd4\x18\x80\x34\x98\xd6\xb5\xd2\x29\xfb\x97\x54\x4e\x28\xcc\xc6\x52\x3e\x66\x72\xd9\x02\xf0\x1c\xf8\x78\x65\xa9\x2d\x08\x6c\x20\x6e\xd3\xa3\xa6\xb2\x2c\x50\xc9\x30\xce\xf6\xc0\xfa\xb2\x5c\xed\x6a\x57\xa2\x97\x42\x3b\x72\x10\xce\x7e\x5e\x72\xd2\x91\x93\xbd\xfe\x6c\x77\x1a\xaa\x7d\x3e\x46\xb9\xf3\xf0\x9c\xef\x89\x7e\x47\x0b\x88\xe9\x3a\xf3\x4c\x7c\x7f\x17\x3e\xc6\x5c\xf0\x63\xd2\x20\xef\x67\x77\xf5\xae\x9b\x4f\xd7\x99\x0a\x95\x8c\x3b\xd9\xfe\x61\x94\x3d\x4a\x85\x32\xef\xc3\x00\x4a\x9d\x85\xcf\x17\x5c\x3e\xea\xe3\xab\x26\x84\xec\x01\xdc\x87\x15\x85\xfb\x1a\x64\xee\xbb\xdd\x2e\xd6\xd7\xd7\xe7\x4c\x76\xee\x8e\x7a\xa1\xa4\x28\xca\x44\x3f\x90\x88\xcb\x93\x68\x39\x62\x9e\x67\x67\x16\xd3\xe6\xd7\x4a\x83\x1e\xb2\x3f\xa8\x76\xa8\x25\xe5\x29\x9b\x69\x6f\x1a\x34\x81\x60\x0e\xea\x72\xc1\x0f\x38\xfa\xa7\xa2\x1c\x85\x34\x50\x93\xa3\x4e\x36\x9c\x06\xd6\x89\xd0\x73\x7d\xe4\xce\x7f\x7a\xfa\xd0\xf7\xac\x8e\x81\x1e\xc7\x54\x0c\x4f\x5a\x5f\xfe\x26\x0b\x49\x13\x58\x6a\xd2\xcc\x7c\xcf\xdc\xfa\xab\xac\x36\x55\xf5\xfa\x40\x51\x53\x1e\x5f\xfe\xaa\xbe\xaa\xab\xb7\x15\xb8\x12\x42\xe0\xcd\x37\xdf\xb4\xb6\xf2\x67\xab\x88\x72\xbf\x16\xa9\xfa\xdd\xb1\x5c\x5b\xbd\x33\xbb\xd6\xdf\x97\xdf\x0c\x52\x9c\xcb\xcb\xb2\xb7\x35\x27\x77\x60\x14\x5a\xa1\x1e\x67\x9a\x69\x97\xe4\xce\xcf\x25\xd2\x51\x25\xfd\xda\xa6\x6d\x4e\xdd\x6c\x4c\x70\xa7\x5b\xed\xa3\x62\xf4\xdc\xb2\x1e\xf3\x6b\x39\x29\x96\x6d\x37\xed\x2b\xca\xb6\x06\x2b\xc3\x3d\xc6\xdf\xc5\xc6\x39\x66\xd4\x81\xd8\x3b\xcd\x0b\x99\x30\x48\xd5\x99\xde\x30\x7b\x69\x69\x87\xf6\x93\x9e\x18\x8e\x57\x82\xbb\x60\x16\x10\x76\x4c\x00\x94\x52\x72\x30\x18\x60\x69\x69\x09\xc3\xe1\x50\x7f\xbf\x3a\xa6\xdb\x04\x70\xda\x04\x4e\xa7\xee\x98\xaa\x52\x02\xac\xb8\xf5\xf5\x75\xd1\xe9\x74\xdc\x34\x73\xd7\x5f\x7c\xf1\x85\x5b\x9f\xaf\xdd\x2e\xc0\x71\x15\xd1\x36\xbc\xc2\x0b\x62\xf8\x76\x10\x19\x29\xf9\xa0\x3f\xbb\x7f\xd4\x91\x7b\xdd\x54\xac\x09\x95\xd3\x77\xfe\xe9\xed\x53\x9b\x0d\xaf\xad\x38\x2c\xd1\x75\xb2\x25\x46\xe0\xae\x88\xd6\xec\x5c\x03\x70\x77\x1a\x89\x4b\x06\xeb\xa8\x0b\x96\x4c\x11\x64\x22\xd4\xe8\x51\x2f\xdf\xab\x8b\xbd\xb7\x51\x4e\x78\x7f\x14\xfc\x5e\x7a\x9c\x73\xad\xcd\x48\xa7\x81\x9c\xec\xf7\xd2\x87\xa3\x6e\xb6\xb3\x3c\x09\x2e\x86\x19\x45\x06\xec\x3b\x28\xc3\xc0\x32\x36\x6d\x6a\x2b\xf0\x34\x37\xfe\xcd\xd9\x7d\xac\x8c\x52\x6e\xba\x9d\xc8\x00\x13\xa1\xba\xbf\x09\x48\x02\x39\x7c\xd4\xcb\x76\x0f\xbb\x72\x24\x73\x17\x09\xd3\x17\xac\x7f\x74\x1f\x60\x7f\x7f\x1f\xa3\xd1\x08\x35\xe1\x38\x8a\x81\xf4\xf9\xb8\x98\x87\xf0\x0b\xc5\x2a\x6b\x8b\x00\x20\x37\x36\x36\xf0\xea\xab\xaf\xf2\x72\x38\xc3\x86\x9e\xd7\x0f\x24\x45\x51\x4a\x7d\x91\x6f\x17\x3c\x17\x0c\x4f\xd6\x9d\xce\x15\x2c\xf6\x21\xc8\xfe\xcf\x06\x39\x1a\x34\xb9\x38\xb3\x40\xa0\xdc\x09\x98\xec\x9c\x36\x20\x67\x1f\x90\x0f\x30\x45\x48\x67\x81\x1a\x8f\x3b\x72\x38\x0b\xe4\x04\x25\x11\xbb\x7e\x2e\x79\xde\xe3\xfb\xb8\x00\xd5\xdf\xa2\x2a\x5f\x15\xa3\x71\xd3\xfa\x18\x74\x13\x13\xad\x63\x6a\x4d\x75\x57\x85\x3a\x70\x51\x17\xea\x68\xb4\x2e\xbd\xbe\xe6\xe9\x7d\xcf\xda\xbc\x47\xa3\xc0\x21\x22\x2c\x2f\x2f\x03\xc8\xc1\x3b\xdf\x16\xbb\x58\x49\x14\x41\xa9\x28\x9c\xaa\xa5\xc5\xdd\xec\xd2\xd2\x6e\xf6\x8d\x70\xa6\x2e\x97\xed\x70\xb4\x51\x00\x9a\x79\x95\xea\x58\x19\xcc\x50\xb0\x68\xb6\xfc\xdf\xce\xea\x32\x3a\xa6\xe7\x29\x43\xe3\x25\x28\x62\x8c\xcd\x9e\x73\x2d\xfc\x57\xcc\xb8\x71\xe9\x9c\x69\x92\xda\x47\x86\xac\xe8\x22\x8b\x39\x98\x23\x57\x21\xcc\x01\x32\x6c\x65\x94\x6e\x33\x57\x23\x38\x37\xce\xdb\x1d\x05\x33\x5c\x58\x78\x98\x7d\x3d\x8d\xd2\x7b\xd3\x05\xf1\x4f\x59\xa7\x64\xac\x54\x9e\x23\x03\x22\x92\x97\x2e\x5d\x12\x41\x10\xc8\x7f\xf9\x97\x7f\x11\xe3\xf1\xf8\xcb\x80\x91\x36\xe0\xbf\x89\x56\x7c\xe9\x00\x40\x0a\x21\xc4\xe2\xe2\xa2\x25\x00\x5f\x7f\xfd\x75\xac\xae\xae\x56\xb6\x47\x4f\x45\xfc\xf5\x5f\xff\xf5\x1c\xa0\x39\x3a\x3a\x42\x92\x24\xae\x92\x50\xa5\x40\x54\xd6\x51\xf1\x9c\x0b\x72\xa3\x89\x03\x90\x0a\x48\x1f\xf6\xd3\xe1\x7e\x2f\xbd\xb5\x38\x09\xce\x08\xc2\xc0\x4c\x53\x40\x93\x40\x71\x70\xad\x06\x18\x05\x5d\x28\x66\xa1\x23\x4e\x3f\x0e\xdb\x76\x2e\xf3\x7b\x03\x84\x34\xcd\x17\x14\x66\x14\x5a\x9d\xa3\xa4\x25\x2e\x7f\x00\x05\x09\xa4\xd3\x50\x0e\x1f\xc5\xe9\x10\x30\x3e\x8b\x1c\xb0\xcc\xf5\x85\xe7\x19\xa7\xbf\x7c\xaf\x2f\x81\x74\x1c\x65\xc3\xbd\xfe\xec\xce\xc6\x41\x67\x14\x48\xac\x95\xaf\xc4\xda\x47\x6c\x6c\x9a\x21\x58\x4c\xa1\x11\x57\x6c\xe6\xc1\x08\x8c\x1c\x75\x14\x78\xde\xef\x45\xc7\x71\x25\x9f\x2b\x0e\xb6\x4b\x85\xc2\x38\x92\xbb\x0f\x7b\xb3\xbb\x87\x51\x36\xf2\xc8\x3b\x23\x57\x74\x1f\xfc\xec\x67\x3f\xc3\xc7\x1f\x7f\xec\x76\x91\x0e\x3e\x5e\x5e\xa7\xdc\x36\x1e\xb2\x58\x87\xb4\xab\x88\x5e\x33\x68\x7d\x0d\x86\x3a\x8d\xc5\x25\x90\x14\x75\x32\xd1\x0f\x14\xe6\x4e\xc5\x2c\xcb\x29\x7e\x51\x76\xa8\xfe\xe5\x7c\xcf\x3a\xd3\x82\xe7\xd1\x16\x17\xe7\x83\xb9\xf8\xc1\x42\xad\xde\x86\xd8\xd7\xfa\x56\x12\xd2\x69\x20\xc7\x93\x50\x1e\x4a\x01\xdf\x6e\xb9\x86\xc0\xe7\x0b\x9d\x0b\xad\x34\xad\x8a\xb8\xe3\x94\x5d\x57\x66\x5b\xe6\xaa\x83\x0b\x64\xab\x80\x8d\x6f\xba\xc6\x2d\xc3\x97\xae\xee\x99\xaf\x7c\x37\xaf\xfb\x1e\x75\xe6\xf0\x26\xf3\x79\x53\x7b\xbc\x8c\x6b\x65\x65\x05\xdf\xfd\xee\x77\x05\x8f\xd3\x80\x45\xfb\x5f\x88\x0c\xfd\xfe\x50\x9e\x59\xb9\x97\xbe\xda\x99\xc8\x1b\x90\x2a\x9e\x33\x51\x14\xd7\xca\x05\x0a\x16\xf2\x28\x18\xbc\x99\xff\xe1\x4c\xb9\xe4\xc8\xa4\xcb\x02\x4a\x7f\x16\x0e\x22\x0c\x28\xb1\x8f\xc4\xb0\x00\x3c\x53\xe3\xdc\xf1\x65\x69\x17\xe4\x9c\xd2\x6e\xc6\x8f\xad\x1c\xe8\xc6\x28\x52\xd6\x73\x03\x52\xac\x57\x60\x82\x46\xbf\xa6\xd3\x6e\xa1\xd0\xef\x4c\xd5\xe5\xc5\x07\xe9\x37\x66\x31\xdd\xbd\x7f\xbe\xf3\x8b\xe2\x44\x69\x43\xe7\x4a\xa9\x94\xf2\xad\x19\xe4\xc5\x8b\x17\x45\x10\x04\xf2\x1f\xfe\xe1\x1f\xdc\xcf\x08\xf8\xe9\x8c\xc7\xbb\xd7\x4d\xa1\x09\xd0\x08\x21\x84\x39\xb4\x70\x65\x65\x05\x7f\xfc\xc7\x7f\x5c\x3b\x2d\xe3\x59\x7e\x0c\x22\x12\xdf\xfb\xde\xf7\xe6\x9e\xff\xf8\xc7\x3f\x96\xef\xbf\xff\xbe\x00\x00\x29\xa5\x48\xd3\xb4\x8e\xf7\xb7\x05\x62\x73\xf9\x8b\xfa\x2c\x61\x76\xd4\xc9\xc6\xf7\x07\xc9\xa7\xa7\x46\xd1\xb5\x70\x4a\x7d\x22\x14\x0a\x6d\x49\x8b\xa5\x30\xd6\x96\x3e\xee\x77\xc1\x86\x84\x19\x22\xe5\xb6\x00\xfa\x80\x4e\x73\x00\x2e\x53\x7e\x59\xcf\xe8\x8c\xf9\xce\xe9\x6c\xb8\x58\xb4\xcc\xe8\x33\x0b\xe4\xe4\x20\xce\xee\x0e\xe3\x74\x54\xbc\x8b\xa1\x25\x6d\x55\x68\xe0\xf5\x3c\x2d\xef\x93\x74\x12\xca\xd1\x9d\xa5\xe9\xad\x33\xfb\xdd\xbb\xdd\x4c\xac\x40\x41\x18\x68\xce\x9d\xed\xf5\xbb\xb0\x38\x50\xb9\xd2\x56\x71\xa0\x4f\x96\x82\x6d\x46\x0b\xdf\x03\xc7\x1a\xdb\x26\x9d\x7d\x2e\xa0\x2a\x98\x45\x7e\x5a\x74\x5e\x6e\x1a\xa8\xd1\xa3\x38\xbd\xfb\xb0\x9f\xde\x9b\x86\x72\xec\xf6\x07\xfb\xf6\x45\xbb\xac\x99\x86\x3a\x65\xb7\xb5\xfc\x71\xa7\x8a\xd0\xf2\xde\x8d\xb3\x98\xb7\xf6\x67\xe1\x83\x45\x39\xa7\x85\x76\x24\x45\xdd\x8c\xfa\x42\x95\xa6\xb1\xf9\x50\x4c\xea\x14\x16\x12\xdd\xe1\x6e\xe0\x66\x42\xe7\x49\xb9\x42\xa1\x2c\x8e\x3d\x2d\xad\x39\xf3\xc4\x5d\xd7\xa2\xe2\xa5\x49\x25\xd3\x8e\x1c\x4e\x3b\xe6\xe3\x71\xe1\x6f\xf5\x59\x0b\x00\xd3\xf4\xd1\xbe\x0c\x53\x6c\x1b\xda\x00\x54\x1e\xaa\x84\xf8\x71\x4d\xc9\x55\x40\xc6\xcd\xef\x3e\xf3\xdd\x57\xd5\xe1\x3e\xf7\x31\xdc\x3a\xc0\xd4\xd4\x86\xaa\x76\x89\xf5\xf5\x75\x38\x3b\x48\x9b\xfd\x5a\x50\x1c\x7b\x41\x44\x51\x3c\x92\x1b\x2b\x5f\xcc\x9e\xeb\x8e\xb2\xaf\x8b\x0c\x6b\x2e\x50\x06\x98\xa6\x09\x4d\xb3\x86\x1b\x95\x89\x40\x9e\xb1\x40\x76\x1a\x56\x10\xf3\x4f\xcc\x19\xb8\x51\x08\x18\xc0\x99\xab\x4b\xc7\xd9\x96\x1b\x1d\xc7\xdb\xcc\xa4\x81\xc5\x24\x79\x19\x06\x45\x99\x32\xca\x8a\x4b\x4b\x6b\xb9\xba\x48\x37\xa4\x2c\x49\x6b\xe3\x8e\xa6\x09\x80\x24\x96\xa2\xb1\xbc\xb6\xb4\x33\xbb\x3b\x5e\x0e\xee\x1e\xae\x05\x7a\x3a\x57\x6b\xbe\x5a\x91\x02\xda\x8d\x9b\x26\x90\xfc\x65\x82\x6f\xcc\xc8\xaf\x7e\xf5\xab\xe2\xc5\x17\x5f\x14\x0d\xab\x11\xb5\xd5\x08\xc8\xf9\xad\x64\x71\xa6\x2c\x67\xba\x5e\xde\xb8\x71\x03\x37\x6e\xdc\x10\x00\xe4\xad\x5b\xb7\xf0\xf7\x7f\xff\xf7\xbc\x6e\xb7\x4d\x75\x71\x3a\x78\xc7\x9e\x0b\x5a\x00\xa4\x99\x40\xf2\xc5\xd2\xf4\xb3\xed\xbd\x78\x27\x4e\xa2\x15\x92\x88\x80\x12\x58\xe5\xf9\xdc\x82\x60\xd1\x9b\xc6\xa7\x25\xf9\x18\x42\xb4\x04\x35\xcf\x6b\xae\x51\x96\xc1\xa7\x57\x39\x20\x57\x7a\xb5\x6a\x59\x8f\x9c\x06\x72\x74\x7f\x21\xf9\x74\x26\xd4\xa4\xe8\x53\x4e\x47\x56\x3f\x57\xf4\xc9\x5c\x5f\xe8\xbf\x69\x47\x8d\xbf\x58\x4e\x3e\xff\x62\x29\xf9\x60\x69\x12\x9e\xeb\x66\x62\xa0\xb4\x56\xe1\x01\x6a\xa5\x22\xa0\x21\x3e\x7b\x61\x57\xd1\x29\x06\x9f\x2a\x10\x9d\xce\xc1\x57\x15\xb9\xd9\x78\xbf\x13\xbb\xd0\xdc\x61\x1c\x65\xbb\xf7\x06\xc9\xad\x61\x37\xdd\x57\xf9\x16\x20\x09\x1c\x17\x09\xd6\x3f\xae\xe5\x49\x8f\xb9\x3a\x3e\xcf\xe3\xbd\x74\x57\xc7\xe8\x5d\x2b\x49\x5d\x3a\x57\x00\x54\xfa\xb6\x00\xf9\x1e\x2e\x61\x46\x71\x27\x13\x7d\xa1\x28\xaa\x06\x0b\xba\x8c\x12\x58\xb8\x4f\xb9\xe3\x91\x7b\xaa\x82\xc9\xe7\xac\x6c\x30\x00\x50\x19\x7a\xb7\xbf\x77\x85\x67\xb4\xce\x63\x9c\xcd\x84\x4a\x26\xa1\x1c\xe9\xad\xfe\x51\x20\x4d\x3e\xaf\xcb\x9c\x96\xdc\x92\xe6\xfa\x8c\x05\xfe\x51\x7d\x5a\xbf\x2f\xd4\x69\x83\x3e\x4d\xa9\x2d\x63\xe2\xc4\xa6\xef\x5d\x86\xdd\x44\x84\x6e\x1a\x17\xe0\xb5\x01\x2b\xee\x3b\xd4\xbd\x53\x1b\x2d\xd1\xd7\xa6\xaa\x32\xaa\xee\x1b\xdb\xab\xf7\x2f\x72\x9c\x71\xb5\x6f\x4b\x1c\x8d\xe5\xca\xe2\x6e\x7a\xb9\xff\x48\xbe\x10\xcc\x70\x4e\x1f\x3d\x0f\xc0\x22\xf8\xf9\xf9\x7c\x94\x2b\xed\x3c\x8d\xb7\x0d\xb9\x24\x00\x00\x20\x00\x49\x44\x41\x54\x98\x0b\x3a\x1d\x67\xd6\x39\x31\x17\xfe\x22\x65\x05\xcc\x70\x59\x44\xcc\x97\x55\x5a\x3e\x4c\x49\x73\x40\x4a\xf1\xfc\x45\x3c\x97\x23\xe5\x3e\x15\xbc\xee\xf2\x6d\xf4\xd8\xb4\x90\xd0\xdc\xfb\xda\xcf\x78\x13\x01\x08\x91\x61\x3d\x3e\x54\x2f\x9d\xb8\x9d\xdc\x50\x4a\xc5\xc0\xdc\x99\x46\x66\xdc\x9c\x3f\x7f\x1e\xdf\xf9\xce\x77\xea\xc6\x25\x50\x01\x52\x2b\xd2\x56\x85\xca\xf4\xaf\xbe\xfa\xaa\xf8\xcb\xbf\xfc\x4b\xf1\xfc\xf3\xcf\x03\x28\xf9\xa7\xb2\x77\x1f\x0f\x3d\x7f\x3a\x5e\x2f\xb5\xd7\xd7\x3c\x0d\xe0\xf0\xeb\xb3\x67\xcf\xe2\x2f\xff\xf2\x2f\xc5\x7f\xfc\x8f\xff\xd1\x15\xb2\x6e\x38\xce\x7b\xba\x42\xba\x10\xd4\x2a\x55\x40\xfa\x60\x21\xdd\xdb\xed\xcf\x3e\x4e\x42\x39\x06\x91\xb1\xde\x91\x99\x03\x82\x7e\x77\x18\x12\x63\x40\xdb\xf5\xef\x30\x59\x8a\xb4\x9c\xc6\x74\xc2\x39\x2b\x3b\xcb\x53\xca\x08\x36\x4b\x50\xe4\x53\x50\xc8\x84\x4a\x0e\xe2\xec\xee\xe7\xcb\xd3\xcf\x14\x29\x0e\x3a\x5c\x5e\x36\x17\x9c\xd5\x36\xd6\x34\x11\x4a\x81\x9f\x4e\x42\x39\xfa\xf5\xfa\xd1\x07\xfb\xbd\xf4\x53\x0e\xa4\x9c\x4b\xab\xcd\xcc\xe4\xe9\xbc\x18\x93\x9b\xfa\x9f\x06\x1e\xae\xc3\x8b\x2e\xcf\xee\x2e\xcd\x1a\xe6\xca\x9f\x06\x6a\x74\x6f\x90\x7c\xfc\xf9\xca\xf4\xdf\x0f\xe2\x6c\x9f\xbf\x03\x8a\x55\xb5\x4e\x6b\xab\xf8\xa6\x2b\xd7\xdc\x50\x65\x61\xaf\xcc\xe0\x56\xe8\xab\xa8\x2e\x5d\x6d\x50\x4a\x09\xa1\x48\x74\x32\x8a\x3a\x19\xf5\x85\x44\xc8\xfb\xdf\xb2\x58\x83\x75\x1e\x72\xc2\xb5\x41\x85\xb2\x09\xd2\x39\x9c\xc2\x00\x6d\xc3\xac\x95\x31\x8f\x9b\x25\x63\x9a\x58\x59\x5d\x75\xbe\x28\x9a\x00\x14\x80\x8c\x54\x3a\x0b\xd4\x78\x26\x4a\xc7\xdc\x62\xde\xd3\x10\x34\xf7\x3a\xbf\x79\xf3\x26\xfe\xe5\x5f\xfe\x45\x17\xe5\x0a\xc8\x36\x1f\xb2\xea\x83\x57\x59\x68\x7c\x4c\xb8\xae\x6c\x37\x8e\x97\xc5\xdb\xe9\x9a\xc8\xeb\x08\xcf\x05\xc0\xc2\xc9\xd3\x06\x3c\xf3\xfb\xa6\xba\x9a\x80\x76\x55\x39\x55\xed\x69\x8a\xf7\x95\x2b\xb6\xb6\xb6\xc4\x37\xbf\xf9\x4d\xae\x0d\x8b\xe2\x57\x2f\x7f\x8e\x28\x53\x71\x6f\x98\x9d\x59\xd8\xcb\x9e\x0d\xa7\xf2\x32\x72\x30\xe3\x58\x2c\x1c\x26\xcc\xb4\x47\x32\xbf\x7e\xe8\x62\x01\x79\x6b\x9c\x14\xff\x15\x82\xc2\x9a\x92\x75\x8b\x72\x2b\xd7\x5a\xa8\xe2\x1b\x88\x7b\x98\xeb\x7c\x66\xcc\x8f\x6e\x30\x8b\x0a\x93\x50\xba\xf5\x1c\xa4\x38\xef\xcd\x19\x37\x15\x47\x06\xf0\x95\x54\xec\x71\x14\x24\xea\x4c\xef\x91\x7c\x75\xf5\x8b\x74\x1b\x52\xb9\x07\x31\x9a\x8d\xe9\x8a\xe0\x7b\x91\x26\x65\xe1\xb8\x16\x97\x39\x30\xfd\xd6\x5b\x6f\x89\xb7\xdf\x7e\x5b\x5c\xbc\x78\x11\x61\x18\xea\x86\x70\x90\xa2\xaf\x23\x94\x2b\xd1\xf4\xbd\xf5\xc7\xa7\x21\x8b\x5f\x1f\xd0\x31\x2b\xac\xc2\x30\x14\x83\xc1\x00\x6f\xbf\xfd\xb6\x78\xfb\xed\xb7\x45\x71\x0c\x45\xd3\x7b\x5a\x63\xf8\x6f\xff\xf6\x6f\xb1\xb3\xb3\xe3\x93\x01\x12\xfa\x18\x14\xa2\x04\x84\xf4\xa8\x23\xc7\xb7\x57\xa6\x1f\x3f\x8a\xb3\x3b\x59\xce\x3b\xcd\xb2\xdc\x52\x98\x16\x92\xb3\x24\x31\x0b\x91\x14\x5f\xbc\xac\xa5\xf4\xd6\x2e\x13\xc0\xa6\x69\xdf\x81\x81\x26\x50\xbe\x30\xc3\x06\xbf\x0a\x0a\x90\x93\x50\xee\xef\x0c\x92\x8f\xf7\x16\x66\xfb\xfa\x1d\xf4\x7b\xc1\x0f\xd2\x58\xb1\x96\x35\x86\xf3\x7c\x0e\x5e\x92\x54\xa8\xc9\xce\x20\xf9\xe2\xf6\xca\xf4\xfd\x69\x28\x87\x3e\x14\x9e\xbf\xa6\x2a\xc7\x9f\xbb\x7b\x2a\x4f\xa3\xb3\x91\x67\x4c\xc3\x01\x3e\x8c\xcf\x28\x16\xe7\x8a\x41\x09\x60\x18\xa7\x77\x3e\x5f\x99\x7e\x32\x8c\xd3\x5d\x55\xb4\x1d\x0c\xbc\x78\xac\x6c\x55\xa1\x4e\xa1\xe4\x71\x5e\x05\xbc\xca\x39\xb7\xa9\x22\x57\xd0\xb9\x1a\xb8\x1b\x2c\x81\x15\x4a\x0a\xbb\x99\xe8\x87\x19\xf5\xa9\x58\xee\xc9\xe9\x13\x28\x79\x2b\x50\x7e\x20\x83\x1a\x81\xb9\xf9\x5c\xfd\x3c\x7f\x86\x92\x62\x39\x82\x87\x2f\x7d\x35\x48\xa9\x0f\x0a\x99\xc0\x64\x1a\xca\x71\x5a\xae\x28\xd2\x83\xd4\x5d\x16\x06\x00\x48\x92\x04\x93\xc9\x84\xf7\x55\x1b\x33\x73\x1d\x82\x6d\xb2\x9a\xd4\x59\x20\x9a\xea\xae\x4a\x57\xd5\x1e\x17\xcc\xd4\x95\xc9\xd3\x34\xd1\x55\x53\x7a\x1e\x57\xd5\x1f\xee\x6f\x5b\xcb\x4e\x53\xbc\xaf\x5c\x01\x40\x86\x61\x28\xf4\x79\x5d\xda\x39\x5d\x6b\xc1\x5a\xa8\xc4\x87\x72\x6d\x61\x2f\xbb\x12\x1f\xca\x6b\x22\xc3\xfa\xbc\xbd\x36\x8f\x70\xad\x1f\x26\x99\xa1\x77\xbe\xcc\x9f\x15\xc2\xa7\x5d\x94\x9d\x87\xef\x5a\xab\xc1\x3c\x50\x82\x7a\xee\x53\xc0\x2b\x2f\xf1\x43\xd9\x90\x02\x7b\x58\x0c\x90\xe6\x5b\x0e\xc3\x45\xa9\x7c\xaa\x7d\x0a\xe6\x47\xa1\x76\xc6\xcc\xd3\xcf\xab\x24\xe4\x74\x46\x1e\x9f\xf7\x85\xbd\x92\x09\x0a\xfd\x68\x22\xaf\x2e\xdf\x4b\x5f\x1c\xaf\x04\xbb\x49\x8c\x94\xf9\xbb\xa4\x28\x36\xa6\x03\x80\xb5\xb5\x35\xf9\xe6\x9b\x6f\x8a\xef\x7f\xff\xfb\x75\x63\xc3\xa5\xa3\x36\xe3\xd8\x1d\x1f\x12\x00\xfe\xf0\x0f\xff\x50\x10\x11\xd6\xd6\xd6\x50\x9c\x5c\xad\x9f\x5b\xd7\xae\xe5\x5a\x03\x62\x54\x8f\x35\xc0\xa6\x5d\x9f\x40\x31\xf7\x42\x08\x73\xf8\xe4\xb7\xbf\xfd\x6d\x48\x29\xc5\x3f\xff\xf3\x3f\x63\x77\x77\xb7\xea\x3d\xad\x71\x3a\x1e\x8f\x91\x65\x99\x65\x95\x65\x7c\x30\x25\xa2\xb4\xf0\x29\x4a\x32\x52\x93\x3b\xcb\xc9\xe7\x1b\xa3\xe9\x07\x0b\x89\x58\x1b\x4c\x83\x0d\x01\x12\x06\xbc\x00\x85\x83\x2e\x03\x1e\x05\x29\xf3\x73\x7a\xf4\xc4\x87\x56\x3d\xcd\xf3\x39\x5f\x1f\x18\x8b\x8e\xd9\x55\x1d\xac\x3c\x1f\xbd\x17\xe9\x67\x42\x4e\x1e\xf6\xd3\xdb\xbf\x59\x99\x7e\xac\xcf\xa2\x73\xfe\x5a\x29\xec\x28\x79\x43\x8a\x1c\x78\xea\x45\x1c\xb9\xe0\x27\x4c\xa6\xa1\x1c\x7d\x78\xf2\xf0\x97\x27\xc6\xe1\xb9\xad\x47\xdd\x6b\x9d\x0c\x31\xc0\x56\xd7\x99\x81\x5a\xfa\x8d\x01\x30\xbe\x29\xa5\x69\xca\x79\x27\x94\xc3\xae\x94\x8d\x30\xd6\x97\xb2\x7c\x35\xc7\x47\x34\xf8\x21\x00\xe3\x28\xdb\xbd\xbd\x32\xfd\xe0\xce\x52\xf2\xd9\x51\x47\x8e\x40\x36\x68\x41\x85\x15\xea\x47\x3f\xfa\x91\xfc\xec\xb3\xcf\xf4\x6d\x9b\xb1\xc2\xd3\x79\xd3\x1e\x07\xb8\xf0\x50\xc5\xf8\xe7\x90\x7a\xe1\xdb\xc2\x1b\x23\x3a\x19\x45\xdd\x99\x58\x08\xf5\x19\x45\x28\x19\x98\x0e\xbc\x6f\x81\x79\xd4\x68\x39\xfc\x29\xf3\x0d\x8a\x3d\x26\xf4\x07\xe4\x69\xe6\x97\x7e\x02\xda\x07\x07\xa5\x53\x23\xc8\xe6\x85\x6e\x60\x5a\x60\x26\x54\x92\x04\x72\x5c\x9c\x51\x64\x3e\x58\x4b\x67\x5c\xa0\x19\x75\xfa\x00\x8e\xef\x9a\x33\x13\xdf\xf3\x2f\x0b\x52\xaa\xda\x55\xd5\x3e\x9f\x79\xcf\xd7\x26\xb7\xdc\x2a\x22\x3d\x4e\xbb\xab\x9e\x57\xf5\xa1\x9b\xc6\x6d\x53\x53\xa8\xfc\x36\x8f\x3d\xf6\x98\xb8\x7e\xfd\xba\xe5\xdb\x85\x52\xcb\x8d\x00\x84\x41\x8a\x7e\xef\x51\x76\xae\xff\x28\xfb\x5a\x98\xa8\x6d\x02\x42\x2d\xfd\x4b\xfa\x2b\x19\xb3\x07\xcf\x94\x97\x9c\x41\xe9\x51\xe4\x30\xae\xd2\x0d\xa5\x48\xc1\x7d\x5d\x8a\xf4\x39\x03\x63\x4e\x75\xe6\x3f\x07\xd8\x70\x06\x39\xd7\x36\xbe\xdc\xb4\xb4\x82\x90\xf6\x9a\xe4\x6d\x75\x19\xae\xf5\x7a\x05\x68\xf3\x8c\x59\x7d\xe0\x63\x69\xf5\xd6\xab\x90\xca\x62\x1c\x06\x2c\x44\x8a\x8d\xde\x30\xbb\xb1\x78\x3f\xfd\xe5\xc3\xad\xce\x84\x39\xd3\x87\x60\x34\x10\x45\x91\x58\x5f\x5f\xf7\x8d\x99\x2a\xa1\xed\xbb\xaf\x0a\x86\xce\xc2\x30\x14\x6f\xbc\xf1\x06\x4e\x9d\x3a\xa5\xa7\x83\xf4\x73\x7d\x6d\xa6\x7d\x1c\xd0\x12\x2e\x4c\x83\x68\xf5\x28\x8c\xfb\x89\x88\xa3\x4c\xc4\x61\x46\x91\x9e\x72\x97\xa4\xd2\x54\xa8\x24\x15\xf9\xef\x51\x47\x4e\xf6\x7b\xe9\xe4\x30\xca\x12\x25\x4a\xe5\x0a\x0e\x90\xe1\xca\xd6\xc9\x93\x27\x01\x00\x2f\xbd\xf4\x92\xfc\xf1\x8f\x7f\x2c\xee\xde\xbd\x5b\xf5\xde\xb5\xc1\x75\x42\x85\xb6\x30\x10\x26\xa3\x6e\xba\x7f\x6b\x75\xf2\xd1\xca\x24\xdc\xea\xa6\x62\xd0\xcd\x68\xc0\x81\x09\xa7\x5f\x0d\x3c\xec\x6f\xce\xea\x29\xfe\x2b\x65\xb2\x47\x62\x3b\xb4\x4a\x4e\x5e\x4d\xff\x65\x9c\x82\x04\xe4\x61\x57\xee\x7e\xb1\x94\x7c\xbc\xb3\x98\x7c\xa1\x08\x13\xd8\x16\x06\x5f\x5f\x62\x77\x77\x57\xbe\xf3\xce\x3b\xe8\x76\xbb\xf2\xb5\xd7\x5e\xe3\xbe\x47\xba\x9f\xf5\x79\x76\x29\x2b\x6f\x22\x09\x93\xbd\x85\x74\xe7\xfd\x53\xe3\x9f\x76\x53\xb1\xb2\x3e\xea\x6c\x87\xb2\x00\x2f\xe6\xdd\x39\x91\xb3\x1f\xd6\x3f\xc4\xc1\x8e\xf5\x8e\x0c\xe2\xe9\x21\xca\xd3\xb1\xb1\x66\x8d\x41\x00\xd3\x40\x8e\xbf\x58\x9a\x7e\xf0\xc9\x89\xa3\x0f\x1e\xc5\xe9\xae\x14\x98\x00\x76\x7f\x14\xc0\xd4\x5a\x9c\x02\x00\xfb\xfb\xfb\x5a\x61\x07\x1c\x5e\x89\xea\x50\x4b\x6b\x2e\x70\xf9\x32\x42\x8f\xa7\x95\x80\xf7\x94\x48\x33\x20\x89\x08\x61\x46\x61\x37\xa3\x7e\x28\x29\x36\x8b\xbc\x5c\xed\xd0\x14\xc1\xb4\x27\x55\x30\x5e\xb2\x3d\xe8\x2d\x2d\x51\xa3\xca\x22\x9d\x85\xb6\x19\xc0\x29\x41\x8d\x13\xef\x78\x64\xbb\x41\x23\x74\x49\x48\x53\xa1\x92\x69\x58\x4e\x15\xe9\xc1\xef\x78\xd3\x43\xbf\x37\x0b\x4d\x1f\xef\xcb\x32\x46\x37\x6d\x1d\xc3\x69\x02\x0e\x55\x6d\xf3\x31\x70\x17\x38\x55\xb5\xc3\xd7\x96\x2a\x01\xe1\x82\x91\xaa\x7c\x55\xbf\x55\xef\xe0\x03\x39\x4d\x69\x7c\xef\x55\x35\x10\xc5\x60\x30\xc0\xa9\x53\xa7\xac\x13\x72\x01\x6b\xef\x96\xa8\x7b\x24\x57\xfa\x43\xf9\x54\x74\xa4\x2e\x93\x54\x4b\x79\x11\x7a\x7f\x12\x8e\xc4\xfd\xc0\xde\xc6\x0e\xf3\x80\xdb\xd0\x32\x63\x52\x79\x0d\x25\x3b\xb3\x68\xdc\x24\x2b\x11\x51\xe9\xf0\xea\x8c\x06\x0d\x42\x58\x7a\xe5\xe6\x37\xb5\xf1\x1d\x72\x9d\x14\x6c\x3c\x6b\xad\x43\xb1\xc2\xca\x5a\x55\x31\x5e\x8b\xf1\x6c\x96\x3b\x68\x6b\x8c\x0d\xa4\x4c\xf1\xc5\xf8\x2e\x52\x46\x9d\x44\x5d\x1e\xec\x65\xbf\x33\x3a\x11\xdc\x99\x06\x62\x52\x58\x5d\x5c\xc1\x23\xe2\x38\xc6\x8b\x2f\xbe\x28\x7f\xf4\xa3\x1f\xf1\xe2\xaa\x68\xb4\x89\x47\xba\x74\x23\x7a\xbd\x9e\xb8\x71\xe3\x06\xb6\xb7\xb7\x9b\x00\x4b\x48\x44\x82\x24\xc2\x85\x59\x10\xad\x1d\x86\x4b\x8b\xd3\x70\x6d\xf9\x28\xdc\x5c\x99\x84\x5b\xbd\x99\x38\xd1\xc9\x68\x25\xdf\xc4\x93\x22\x00\x42\x91\x4a\x32\x52\x93\x4c\x60\x9c\x0a\x35\x9e\x84\xf2\xc1\xb0\x97\xde\x1d\xc6\xd9\xce\x41\x37\xdd\xdb\xef\xa5\xc3\x83\x6e\x36\x49\x03\x55\xa5\x25\x9b\xbf\xcd\xcd\x4d\xf1\xcc\x33\xcf\xc8\x77\xdf\x7d\x57\xdc\xb9\x73\xe7\x38\x4a\x85\x5b\x96\x9e\x46\x30\x53\x0b\x52\x60\x72\x7f\x90\x7c\x71\x7b\x79\xfa\xd1\xc2\x34\x58\x3b\x31\xee\x6c\x87\x59\xe1\xef\xa8\x57\xa2\xc1\xde\xc3\x48\x07\x2e\x90\x8d\x20\xd7\xd6\x79\x7b\x94\x58\x40\xbe\x5c\xb1\x56\x44\x80\x8c\xac\xd0\x15\x68\x7a\x53\x00\x26\x1d\xb9\x7f\x6f\x71\xfa\xc9\x6f\x56\x27\x1f\x8d\x73\x0b\x83\x16\xd4\xb5\x16\x86\xa3\xa3\x23\x7c\xf6\xd9\x67\x08\xc3\x10\x41\x10\xc8\x62\x7b\x10\x2d\x1b\x4d\x9f\x28\xa5\x92\xc2\x51\x7f\x02\x20\x02\x61\x9c\x0a\x15\xfd\x66\x65\xf2\xeb\xc5\x49\xb0\x12\x66\x14\xaf\x1c\x75\xb6\x42\x89\x48\x8f\x42\x4e\xe4\x66\xac\x6b\xe5\xc2\x55\x74\x98\x61\x32\x4f\x40\x65\x7a\xa3\x50\x80\x39\xe6\x97\x7b\xea\x70\x4e\x32\x13\x2a\xb9\x3f\x48\x3e\xfe\xd5\xc9\xf1\x7b\xf7\x07\xb3\xcf\x67\x81\x1a\x01\x73\x20\xce\x47\x47\x40\x35\x8d\xf8\x42\x1b\x05\x32\xb7\x68\x3b\x91\x3e\x86\xdf\x24\xcc\xcc\xe0\x3d\x71\xe2\x04\x9e\x78\xe2\x09\xeb\x21\x73\xd2\xd5\x69\x45\xa0\x10\x86\x99\x88\x84\xa2\x88\x13\x8d\xb5\xcc\xcb\x45\xdc\xba\x53\xed\xf2\x58\x3d\xf3\x75\x96\x41\x33\xb6\xe2\xb3\x58\x3c\xb7\x34\x8f\x71\x26\x6f\x36\x21\x82\xfd\xa1\xcb\x01\x02\x99\x06\x72\x32\x0b\xe4\x44\x92\x6d\x69\xe1\x16\x97\x3a\x7f\x19\x34\x7f\xd4\x3a\x81\xc9\x9f\x1f\x4b\x13\x6a\xd9\x0e\xf7\xbb\xeb\xb8\xe3\x82\xae\xe3\xd4\x7d\x1c\xb0\xec\xe6\xaf\xea\x9f\xaa\x74\x75\x75\x7d\x99\xf7\x92\x00\xb0\xb9\xb9\x89\xed\xed\x6d\x00\xe0\x9a\xb4\x5e\x45\x14\x01\x08\x85\x44\x1c\x0f\xe5\x56\x7c\x20\x2f\x07\x33\xb5\x45\x80\xb0\x84\xba\xab\x16\x2a\x87\x8e\x2c\xfc\x52\xb2\x6a\xc6\xea\xcb\x69\x50\x0d\x0e\x50\x30\x71\x66\x77\xe7\x00\xc2\x52\x1a\xf8\x98\x44\xb9\x9f\x4a\x8e\x2d\xca\x93\x66\xf3\xf1\xaa\xe6\x14\x03\xbb\x9d\xde\x0d\x06\xca\x24\xa5\x66\x51\xa6\x65\xf9\x8c\xe3\x70\x29\x7d\x50\xfa\xe5\x68\x5e\x31\x0f\x5a\xf2\xb2\xcb\x2c\x80\x82\x48\x69\x3d\x1e\x65\x57\xfb\xfb\xd9\x2f\xd3\x48\x0c\xb3\xc8\x9c\x5f\x24\xf5\xd2\x68\x00\x88\xa2\x48\x5e\xbe\x7c\x19\x0e\x70\xe1\xe1\x38\x8a\x85\xf5\x6c\x30\x18\xe0\x6b\x5f\xfb\x1a\x9e\x7c\xf2\x49\x17\xb4\x68\x50\xab\x57\x9e\x89\x20\xa3\x68\x69\x1a\xf4\xd7\x47\x9d\x8d\xb5\x71\xe7\xcc\xfa\x61\xe7\xdc\xd2\x24\xfc\x4a\x6f\x26\xce\x45\x99\xd8\x14\x12\x03\x01\xea\x93\x2a\x8f\x33\x00\x90\x2a\x42\xaa\xa0\x12\x00\x69\x46\x18\xce\x0e\xe4\xce\x24\x94\xb7\x0f\xba\xd9\x67\x0f\xfb\xb3\x5b\x0f\x16\x66\xb7\xee\x2f\xcc\x76\xf6\x7b\xe9\x70\x16\x2a\x73\xa2\x3d\x9f\xda\xd1\x6d\x3f\x73\xe6\x8c\x28\x1c\x2e\xc5\x9d\x3b\x77\xf8\xfb\xcc\xbd\xf3\x87\x1f\x7e\x88\x6e\xb7\x2b\xd7\xd6\xd6\xb8\x22\x94\x9a\x76\xe5\x82\xda\x58\x18\xc6\x1d\x39\xbc\xbd\x32\xf9\x75\x7f\x26\x56\x3a\x92\xfa\xcb\x47\xe1\x66\xa0\x28\x2c\x89\xb1\xa0\x53\xc3\x9f\x8b\x68\x94\x34\x67\x2d\x5d\xf6\xd0\x41\x39\x05\xe4\x6e\x42\x5a\x88\x67\x6b\xc0\x95\x40\x28\x09\xe4\xf8\xfe\x60\xf6\xe9\xa7\xab\x93\xf7\x77\x17\x66\x5f\x28\x81\x31\x3c\x3e\x1d\x98\xe7\x31\xa6\x7f\xd2\x34\x15\x37\x6f\xde\xe4\xfb\x9a\xf1\xbe\xd3\xd6\x89\x04\x40\xa2\x94\x9a\x14\x20\x66\x7c\xd4\x91\xc3\x4f\x4e\x1c\x7d\xd8\x4d\xc5\xe0\xf1\x3d\x60\x79\x12\x6e\x76\xb2\x52\xc9\xe7\x61\xde\xe2\xaa\x01\x9d\x3f\xde\xb5\xc4\x5a\x7b\x33\x39\x3d\xa4\x00\xcc\x02\x35\x79\xd0\x9f\xdd\xfa\xe8\xe4\xf8\xdd\xcf\x97\xa7\x9f\x4d\x43\x39\x04\x61\x0c\x60\x0c\x07\xbc\x38\x16\x36\x00\xc0\xcd\x9b\x37\xf1\xe8\xd1\x23\xb7\xd9\x55\xbc\xb7\x8d\xe2\x2c\x01\xff\x54\xd1\xdc\x74\x0f\x6a\x88\x95\x3f\x5b\x5f\x5f\x17\x17\x2f\x5e\x14\xdc\x1a\xe2\x9a\x3a\x95\x52\x42\x48\x0a\x43\x89\x58\x28\x84\x5a\xf3\x03\x4a\x26\xa6\x77\xaf\xb5\x1c\x73\x0d\xb3\x9a\x0f\x9c\x90\x8d\xe6\x66\xe6\xfd\x95\x59\xd3\xcf\x37\xf3\x29\x7d\xb9\x6c\x9c\x69\x04\x81\x05\x84\x58\x65\x05\xa1\x4b\x92\xe9\x4c\xa8\xc9\x4c\xa8\x29\xc8\x26\x58\xcf\xd2\x67\xe3\xa4\x5b\xd1\xaf\x6e\x9c\xdb\xe7\xa2\xe2\x19\xe0\xff\x26\x75\xe5\xe9\x78\x9e\xb7\x49\x63\xf4\x11\x94\xab\x71\xba\x6d\xa9\xb3\x7c\xb4\x05\x3d\x55\xd3\x4d\x6e\x5c\x5b\x0d\xd8\x67\xcd\xe1\x6d\xf4\x95\xdb\x54\x97\xf5\x3e\xa7\x4f\x9f\xc6\xb9\x73\xe7\x2c\xa1\xc4\xa7\x8b\x88\x28\x8a\x26\x72\xa9\x3f\xcc\x9e\x8c\x8e\xe4\x45\x21\x31\xb0\x19\xa7\xd6\x7d\xf2\xa0\xf9\xf1\x9c\x51\xc1\xf8\x7e\x90\x95\xcf\xd2\x24\x89\xd1\x78\x39\xc8\x78\xf6\xc2\xfa\x08\xc6\xd0\xca\x07\xca\x8c\x27\xc6\x10\x89\x8d\x13\x9d\x4e\xb7\xc9\x61\x94\x2e\x93\x84\x2a\x9d\xe3\xb5\x22\x91\x4f\xd1\x96\x79\x4d\x33\x15\x3f\x6b\x46\xcf\xb5\xb3\x8e\xe0\xc5\x52\x31\x8a\x99\xaf\x4f\xc1\x06\xdc\x3e\x08\x3b\x53\x75\x79\xb0\x27\x9f\x1c\x2f\xcb\x3b\x59\x28\xc6\xda\xea\x52\x08\x0d\x43\xd7\x42\x08\xf9\xd4\x53\x4f\x89\x0f\x3e\xf8\xc0\xac\x0c\x61\xc1\x37\x06\x7c\xcf\xcd\xb3\xd5\xd5\x55\xb1\xb9\xb9\x89\xe5\xe5\x65\x7c\xf5\xab\x5f\x35\x9b\x72\xaa\xf2\x80\x4d\x33\x9d\x18\x28\x8a\x16\xa6\x41\x7f\xfd\xb0\xb3\x7e\x7a\xd8\xbd\xf8\xd8\x7e\xf7\x77\x16\xa7\xc1\x95\x28\x13\x67\xc2\x8c\x36\x85\xc2\x12\x01\xb1\x26\x0c\x62\x08\xcd\xe6\x5f\x84\x50\x01\x51\x46\x49\x2f\x11\xc3\xa5\x49\xb8\xbb\x31\xea\xdc\x19\x75\xb3\x0f\xee\x2e\x26\x3f\xfb\x7c\x79\xfa\xf1\xee\xc2\xec\xee\x7e\x2f\x1d\x2a\x01\x3e\x7d\x01\xf6\x7e\xe9\x99\x33\x67\xf4\x34\x87\xde\x89\xd7\x3b\xbe\x3e\xfa\xe8\x23\x79\xee\xdc\x39\xb1\xb6\xb6\x06\xc7\xea\x2c\x01\x68\xeb\x82\x01\x2e\x4a\x60\xbc\xd7\x4f\x77\x3e\x5d\x9b\x7c\xd0\xc9\x44\x3f\x90\x14\x2e\x4e\x83\x0d\xa1\x20\x8c\x0c\x30\x04\xe6\x80\x6d\x4d\x13\xec\x43\x1b\xa0\xcb\xe9\x15\xe5\xf7\xd7\x84\xc1\xed\x93\x86\x1e\xb5\xb3\x79\xe1\xd7\xb2\xd7\x9f\xdd\xfe\x74\x6d\xf2\xfe\x9d\x95\xe9\xbf\x4f\x42\x39\x02\x30\x29\xc0\x45\xc2\xa7\x44\x9c\x7d\x59\xb0\xbf\xbf\x8f\x5b\xb7\x6e\xe9\x46\x4a\x00\xe2\xfd\xf7\xdf\xc7\xa5\x4b\x97\x64\xb1\x2f\x8f\x06\x71\x82\x4f\x17\x11\xd1\x04\x40\x08\x42\x04\x60\xbc\xdf\x4b\x77\x3e\x3e\x39\xfe\x85\x24\x85\xf3\x0f\xe3\x74\x6d\xdc\xd9\x8a\x32\xf4\x8d\x05\x4a\x8f\x78\x23\x27\xb9\xe5\x32\xbf\xe7\xdb\xeb\x71\x06\x62\xcf\x30\xf0\xee\x2d\x55\x1c\x05\x20\x09\xd5\x78\xaf\x3f\xbb\xfd\xd1\xc9\xf1\xbf\x7e\x72\x62\x72\x73\x1c\xc9\x3d\x09\x35\x26\x10\x07\x2c\xb5\x16\xa8\x9b\x37\x6f\x62\x38\x1c\x56\xc9\xb4\xaa\x71\xe3\x86\x39\x5e\xdb\x74\x3a\x74\x9d\x60\x6a\xaa\x50\x9b\xc7\xf9\xbe\x2e\x85\xc5\x85\xc2\x40\x52\x44\x2a\x07\x4e\x65\xe7\xf2\xbb\x82\xdc\x1c\xb0\xc2\x19\xa2\x65\x12\x63\xdc\x55\xf1\x69\x27\xa7\x3c\x4e\xc6\xa5\x70\xe0\xc3\x81\x5d\xab\x12\xf4\x98\xca\x75\xb9\x02\x69\x12\xa8\xf1\x2c\x77\xd8\x92\x80\x7f\x37\x45\xbd\x0f\xc3\xc3\x87\x0f\xe5\xc3\x87\x0f\x79\x5f\xb5\x41\x9c\x70\xd2\xfa\xa6\x39\xdc\xd0\xc6\x5a\x51\xa5\x31\x36\x4d\xb3\xf8\xea\x11\x15\x71\xad\x08\xb0\x22\xae\x8d\xd5\xa5\x6a\x4a\xa9\xae\x3e\x1e\xaa\xe2\xab\x40\xa3\xfb\x6c\x2e\xef\xda\xda\x9a\x58\x59\x59\x31\xd6\x45\x87\xee\xf3\xfd\x5b\xa4\x8a\x7b\x07\xd9\x46\x3c\x92\x57\x82\x99\xda\x24\xe8\x55\x75\xcc\xa2\xa8\x18\x7d\x12\xcc\x6e\x98\x7c\x53\x47\xd7\xb9\xcb\xa2\x6e\xa3\xa5\x6a\xe3\xb2\x0d\x8c\x0c\xe1\x6b\x60\x61\xb8\x7c\xb9\x91\x17\x28\xb7\x4c\xea\xc3\xde\xb4\x30\x24\x07\x30\x95\x16\x4b\x0b\xa1\x14\x1b\x56\x15\x77\x7c\x5a\x57\x33\x5e\xb2\x05\xac\x0e\x54\xa4\x87\xd6\x04\x0b\xc1\x64\x7c\x64\xe6\xb4\x6a\x06\xd4\x58\x14\x91\x1e\xbb\x76\x9e\x20\xc5\x66\xef\x20\xbb\x12\x8f\xc2\x9b\x69\x8c\xfd\x4c\x94\x56\x17\x94\xd6\x01\x19\x04\x81\x78\xf5\xd5\x57\xf1\xab\x5f\xfd\x4a\xa6\x69\x5a\x45\x47\x6d\x2d\x83\x62\x6b\x6b\x0b\x2f\xbf\xfc\x32\xa7\x23\x20\xa7\x09\x03\x58\x00\x84\xdd\x94\xe2\x95\x71\x67\xfd\xcc\xa3\xee\x85\xb3\x0f\xbb\x5f\x5b\x1b\x77\x9e\xe9\xcd\xc4\xe5\x40\x8a\x2d\x81\x7c\xcf\x13\x0d\x2a\xf5\xa7\xb3\x36\xda\xb4\xc0\xa3\x2a\x2a\xa3\x88\x24\xd6\x43\x45\xeb\x51\x46\x17\xba\xa9\xb8\x3c\x98\x86\x57\x36\x46\xd1\x7b\x77\x96\xa6\xff\xf6\xc9\x89\xa3\x8f\xf6\x16\xd2\xbb\x93\x8e\x9c\x80\x5b\x6e\x72\x01\x1d\x12\x91\x3c\x7b\xf6\x2c\x84\x10\xf2\x27\x3f\xf9\x89\x28\x56\x0f\x79\x95\x91\x9d\x9d\x1d\xac\xaf\xaf\xcb\xc2\xd1\xd7\xb5\xbc\x68\x0b\xc3\xa4\x78\xdf\x28\xcd\x97\xd7\xfe\x46\x48\x8a\x42\x49\xd1\xd9\x87\xdd\x70\x21\x09\xd6\x02\x05\x61\xa6\xf2\x8b\x0a\x4a\x70\xca\x6d\x8b\x9a\x4e\x94\x19\x13\xee\x2e\xbb\x25\x28\x61\x20\xcf\xd0\x4c\x51\x7a\x11\x3f\x13\x2a\xd9\xeb\xcf\x6e\xff\xfb\x89\xa3\xf7\x6e\xad\x4c\x7e\x75\xd0\xcd\xf6\x50\x4c\x11\x69\x6b\x11\x73\x34\x36\xa0\x45\x8f\xcd\x9d\x9d\x1d\xfc\xf2\x97\xbf\xb4\xf8\xd9\x0f\x7e\xf0\x03\x3c\xfe\xf8\xe3\xa2\x00\x2e\x32\xaf\x8e\x52\xe4\x3c\x22\x01\xe0\xfa\xc1\x85\x4a\x40\xdc\x5f\x98\x7d\x9e\x0a\xc8\x59\xa0\xd2\xed\x3d\x95\x9e\x18\x77\xb6\xba\xa9\x18\x08\xa5\x2d\xb9\x25\x3c\x23\x36\x7e\x95\x2a\x41\x4d\x3e\x5d\x0c\x43\xff\x46\x21\xd0\xa0\x46\x8f\xc3\x52\x63\x40\x46\x48\x27\x1d\x39\x7a\xb0\x90\xdc\xfe\xf5\x89\xc9\x7b\x1f\xaf\x8f\x7f\x39\x8e\xe4\x9e\x82\x1a\x11\x91\xb6\xb4\xe8\xbf\xd4\x07\xe4\x94\x52\xb8\x7d\xfb\xb6\x4c\x92\xc4\x1a\x07\xc5\xaf\x65\x95\x61\xa1\x4a\x31\x9d\x4b\xc3\x81\x4b\x9d\xc9\xbc\x4e\x13\x9e\x7b\xce\x7d\x50\x7c\xbb\x39\x0a\x49\x61\xa0\x28\x12\xa0\x90\xaf\x1a\x30\x7e\x54\xcc\x77\x05\x80\xcd\xb0\x2d\xe7\x3f\x14\x4c\x9a\xcc\xd2\x49\x82\xe6\xe5\x5c\x77\x75\xd0\x0f\x00\xd7\x74\xe8\x06\x3e\x3f\x5e\xe6\x61\x1d\x43\x2a\x49\x03\x35\x49\xf3\x93\x31\xe7\x96\x41\xf3\x76\x03\xc0\x47\x1f\x7d\x84\x8f\x3e\xfa\xc8\x27\xa0\x7d\xc1\xc7\x24\xdb\x30\xc8\xaa\xd0\x64\x8d\xa8\x63\xc0\x95\x4c\xaa\x22\xbe\x0a\xec\xd6\x01\x95\x2a\xc0\x54\x45\xe8\xae\x00\xe0\x6d\x75\x7f\x5d\x30\x54\x15\xcf\xeb\xac\x7b\x07\xb7\x2e\x93\xe7\xf2\xe5\xcb\xb8\x78\xf1\xa2\x25\xd8\x0a\x2d\x33\x04\x10\x29\xa5\xa2\x70\xa6\xfa\xf1\x50\x6e\x47\x47\xea\x82\xc8\xb0\x64\x03\x16\xcd\x44\xad\x9f\x1c\xb4\xe8\x7b\x3e\xa6\x38\xea\x20\xcc\x8d\x35\xed\x6d\xa8\x1d\xd0\xa1\x88\x6d\x09\xce\x26\x99\x4c\x31\x64\x7e\xad\x5d\x4b\x2d\x64\xa4\xcb\x2c\xb4\x3e\x5d\x56\x01\x16\xf2\x86\x68\xed\x58\x95\xf2\x04\xe5\x38\x2d\x38\xa6\xf3\x92\x30\xe5\xce\x8f\x57\xe6\x6c\xc8\xbb\x89\xb4\x62\x52\x02\x3e\x53\x26\x03\x3a\xc6\x2f\x98\x14\x20\x29\xea\x4c\xd4\xa5\x85\xfd\xec\xdc\x64\x49\xdc\xce\x42\x8c\x51\x6a\xbe\x7a\x75\x91\xa1\x8d\x8d\x8d\x0d\xdc\xbb\x77\x0f\x59\x96\xf1\x06\x55\xf1\x45\xf7\x39\x00\x60\x61\x61\x41\xaf\xd8\x81\xde\x8f\x85\x59\xa1\x73\x87\x6d\x85\xa8\x9b\x52\xbc\x35\xec\x6e\x3d\x71\xbf\xff\xcc\xe9\x61\xf4\xea\x42\x12\x5c\x0b\x33\xda\x12\xc8\x17\x31\x98\x97\x63\x7d\x61\x59\xdc\xc8\xb2\x23\xd8\xdd\x6c\x9e\x51\xd4\x91\xb4\x15\x24\x6a\xbd\x9b\x76\x2e\x2d\x4e\x83\x2b\x27\xc6\x9d\x1f\x7e\xb0\x31\xfe\xff\x6e\xad\x4e\x6e\x1f\x45\x72\x54\xb4\x4b\xd3\x92\x39\xc9\x79\x6b\x6b\x0b\x2f\xbc\xf0\x82\xfc\xc1\x0f\x7e\x20\xf6\xf6\xf6\xf8\x2b\x9a\xf1\xf3\xde\x7b\xef\x61\x30\x18\xe0\xe9\xa7\x9f\x06\xdb\x3c\x4f\xf7\x69\x82\x7c\xca\x74\xc2\xc6\x45\x38\x0b\x95\xb8\xbb\x34\xfd\x4c\x00\x21\xa0\xf0\xd8\x7e\x7c\x79\x71\x1a\xac\x09\x50\x58\xbe\x32\xb7\xc4\x73\x7b\x8a\xfe\xd6\x0c\x70\x83\x83\x39\xab\xdb\x4a\xa9\xa0\xc1\xad\xe9\x3f\xa5\xa7\x45\x6e\x7f\x72\xe2\xe8\xdd\x4f\xd6\x8f\xde\x7f\xd8\x4b\xef\x2a\xc2\x58\x29\x35\x66\x02\xdb\x80\x17\x30\x0b\x03\x11\xc9\xc3\xc3\x43\x59\x9c\x77\x35\x47\x07\xf7\xef\xdf\xc7\xd6\xd6\x16\xb7\xba\x48\xe4\x96\x3e\xd3\x2f\x28\x01\x5d\x6e\xa9\x15\x10\x0f\xfb\xb3\x7b\xa9\x90\x72\xda\x91\x93\xf3\x7b\xf1\xe8\xe4\xa8\x73\x6e\x21\x09\x56\x42\x49\x51\x39\x4d\xc6\xc7\x92\xb3\xe2\x08\x36\x88\xd3\xdb\xfc\x1b\x59\x59\x28\x06\x2a\xef\x2b\x99\x06\x2a\x39\xe8\x66\xfb\xf7\x16\x93\x4f\x3e\x5d\x3b\xfa\xe0\xd6\xca\xf4\xd7\x93\x48\xee\x01\x18\x11\x48\x4f\x11\x99\xbe\x28\xa6\xff\xcc\x34\x23\x73\x97\xc0\x3f\xfd\xd3\x3f\xe1\xf0\xf0\xd0\x37\x56\xea\xf8\x7d\x93\xe2\x9c\x2b\x16\x2c\x82\x51\x82\x37\xb1\x62\xbf\xe4\x69\x88\x5a\x5f\x5f\xa7\xf3\xe7\xcf\x13\xe5\x3b\xe4\x52\x11\x1f\x12\x51\x07\x40\x57\xff\xad\x1c\x85\x27\x4f\x0f\xbb\x4f\xad\x1c\x85\xdb\xa1\x12\x31\xe7\x9b\x26\x68\x1e\x58\x74\x82\x19\x78\xae\xa9\x5b\xf3\x4e\x62\xf9\x55\x99\xce\x07\x5a\x7c\x4b\xa9\xdd\x60\xf1\x7f\x3e\x08\x8a\xeb\x24\x54\xc3\xdd\x41\xf2\xeb\xbb\x4b\xc9\xc7\x47\x5d\xb9\x8f\xc2\x94\x88\x02\x85\x12\xd1\x8c\xca\xcd\xe7\xd4\xed\xdb\xb7\xd5\xbd\x7b\xf7\x38\x6b\xad\xeb\x6f\xde\x0b\x40\xde\x8f\xbe\xf4\xbe\xf8\xa6\x6b\x5f\x9d\xbe\x67\xfc\x7b\xf3\x78\xfe\xed\xdd\xb2\x78\x5a\x7d\xad\x09\xb0\xae\x0e\x5e\x1e\x93\xc6\x00\xfc\xc4\xab\xd8\x9f\x6e\x8f\x6e\x6b\xd5\xbb\xb5\x7d\x3f\xb7\x0d\x2e\x68\xa9\xaa\x43\x9d\x3d\x7b\x96\x4e\x9d\x3a\x45\x4c\x38\x05\x28\x57\x12\x75\x09\xd4\x8b\x0f\xe5\xda\xca\xbd\xf4\xeb\xf1\x28\xbb\x1e\x48\xb5\x5c\x0a\x5e\x5d\x94\x06\x0a\x34\x07\xd8\xcd\xb5\xd1\xb2\x08\x3c\xbf\x8f\xa6\xb5\x16\xae\x81\x38\x07\x25\x25\xb0\x20\x33\xdd\x02\x18\x29\x5f\x08\xc7\xf9\xb1\xc2\x81\x93\x06\x45\x66\x73\x2b\x03\x66\x8a\x77\xd1\x16\x21\x9d\x16\x04\xeb\x5c\xa3\x82\x71\x82\xf7\x43\x61\x61\xe1\x60\xa5\xb4\x06\xe9\x77\x2d\x44\x10\xd3\xaa\x4b\xc0\x02\xd3\x3f\x45\x33\x8c\x55\xa8\xa8\x29\xca\x42\xdc\x3b\x5a\x0e\x6e\xcf\xba\x34\x44\xce\x78\x33\x22\xca\x8a\x16\x19\x94\x72\xe9\xd2\x25\xfa\xf0\xc3\x0f\x55\x92\x24\x9c\x26\x34\xed\xf0\xb1\xe7\xf2\x48\x00\x50\x71\x1c\x8b\x67\x9e\x79\x06\x4f\x3f\xfd\xb4\xb5\x73\x78\x21\xb8\x73\xbe\xa8\xd0\x8d\x53\xb1\xb0\xbd\xd7\x3b\x77\xe5\xde\xc2\x1b\x8f\xed\x77\xff\x70\x30\x0d\x9e\x0f\x95\xd8\x84\xa2\x50\x0b\x58\x07\x6e\x9a\xfe\xd4\xef\x58\x92\xa2\x67\xda\xc4\xea\x67\x05\x01\x0a\x84\xc4\x62\x27\x13\x5b\xfd\x59\xf0\xd8\xea\x51\x27\x16\x0a\x7b\x7b\xfd\xd9\x28\x13\x90\xc5\x54\xa0\x2a\xbe\x35\x29\xa5\x14\x11\x61\x61\x61\x01\x9b\x9b\x9b\xea\xd6\xad\x5b\x98\xcd\x66\xde\x31\xbd\xb1\xb1\x41\x27\x4e\x9c\x50\x5a\x48\xb3\x69\x31\x50\x1e\x04\x6b\xb1\x00\x40\x29\x29\x8c\x23\x39\x39\x8c\xb2\x11\x88\x64\x37\x13\xbd\x6e\x26\x62\x52\x08\x0a\x4a\x62\xe0\x45\x83\x52\x4d\x1f\xe5\x76\xf4\x25\xbe\x2e\x69\x96\x38\x2d\x9a\xfb\x92\x4e\x15\x94\x9c\x86\xf2\x70\x67\x71\xf6\xe9\xaf\x4e\x1e\xfd\xdb\x27\xeb\x93\x0f\x1e\xf5\xd2\x7b\x52\x60\x04\x40\x5b\x19\x8e\x8a\x3f\xcd\xe3\x33\xe4\xc0\x25\x2b\xfa\x46\xdd\xbc\x79\x53\xfd\xeb\xbf\xfe\xab\xe6\x45\x9c\x4e\xd4\xc7\x1f\x7f\xac\x36\x37\x37\x69\x61\x61\x81\xf4\x5e\x41\x79\xb6\x62\x94\x95\xd7\x86\x96\x0a\xa5\xfe\xff\xa7\xed\x4d\x7f\xec\x38\xce\xf3\xd1\xe7\xad\xee\xd3\xe7\xcc\x99\xc3\xd9\x38\xa4\x28\x89\xa2\x28\x92\xa2\x64\x45\x92\x25\x2b\x92\x62\xd9\x96\xbc\xc4\xbe\xf6\x55\x1c\x03\x71\x2e\x82\x7c\x08\x60\xe4\xff\x0a\x90\x7c\x48\x02\x03\x06\x02\x18\x71\xbc\xc4\xca\x35\xe4\xab\x9f\x15\x7a\x91\x45\x49\x14\xa3\x85\x5a\x48\x4a\x43\x0e\x39\x1c\xce\x9c\xb5\x4f\x77\xd5\xfd\xd0\x5d\x55\x6f\x55\x57\x77\x9f\xa1\x9d\x02\x66\x4e\x2f\xb5\x77\xd5\xfb\x3e\xef\x53\x9b\x9a\xc5\x72\xbe\xd7\xcb\xf6\x47\xdd\x7c\x7f\x2e\x30\x8d\x80\x28\x96\x22\x11\x8a\x62\x03\x63\xf9\xdc\x33\xc6\x22\x99\x36\x53\xf6\x4d\xcd\x95\x9a\x86\x5b\xb6\x8f\x5c\x20\x9d\x76\xf2\xe1\xf6\x60\x7e\xe5\x83\xc3\xd3\xf3\xff\x73\x74\xfc\xe6\xd5\xd5\xd9\xa5\x34\x96\xb7\x89\x68\x08\x60\x04\x60\xa4\x94\x1a\x11\xd1\x04\xc0\x44\x29\x35\x03\x30\x2b\x99\x28\xbe\xa2\x48\xee\xef\xef\xab\x8b\x17\x2f\xea\x36\xe2\xf7\x0d\xde\x7f\xb8\x7c\xf7\xf5\x8c\x0a\x5c\x2b\xc0\x65\x5c\x9a\xe8\xf9\x26\x4b\x96\x3f\xaf\xb0\x2d\xe5\x07\xd2\x8d\x46\xa0\xd8\x80\xce\x0c\x15\x99\x9c\x31\x55\xc5\x57\x11\x71\x99\xc9\x25\x47\x2d\x2e\x51\x6e\xe7\x36\x45\x25\x1e\x36\x30\x91\x90\xab\x4a\xcf\x79\x8c\x11\x94\x02\x64\xb1\xf9\x5c\x9a\x09\xe5\xa0\xee\x70\x0c\x41\xd7\xc4\x34\xf0\x7b\xdf\xfa\x0f\x0d\x2f\xb5\x21\xd5\x45\x59\x8e\xb6\x67\x3c\xbd\xba\xeb\x10\x5b\x12\xba\xd6\xf7\x8b\x94\xd9\x8f\xcf\x7f\xc6\x9f\x1f\x34\x3f\x7e\xda\x75\x69\x34\xe5\x47\x08\x21\x7c\x86\x51\xb0\xbf\x62\xa7\x5c\xa5\x92\xde\x50\x1e\x4d\x26\xf2\x8c\xc8\xb1\x62\x57\xc9\x30\x4b\xd9\x68\x6a\xfd\xcb\x84\x90\xb2\x7d\xd7\x61\x1f\x19\x60\xd7\x4a\x5b\xcb\x33\x2a\xa5\x13\xdf\xa4\xce\x32\x96\xae\x75\x0a\x55\xea\xfd\x92\x65\x51\x44\x76\x88\x46\xe7\xc5\x18\x05\xca\x60\x05\xc0\x03\x3e\x15\x67\xcb\x63\x7c\x94\xf9\x34\xfb\x75\xf0\x1d\x73\x2b\x73\x35\x5c\x10\x62\xad\x9c\xaa\xa0\xb0\xd9\xb5\x7d\x9c\x97\x91\x08\xa0\x5c\xad\x24\x13\x75\xaa\xb7\x9f\x1f\x9b\xf5\x69\x2b\xeb\x92\x6b\xe9\x16\xf3\x0f\x42\xec\xb3\xdf\x46\x42\xed\xcf\x84\x13\x42\x88\x67\x9f\x7d\x16\x67\xcf\x9e\x15\xb0\x79\x10\x54\x6c\x40\x58\x1e\xb0\x89\xa4\x9b\x53\xff\xa1\x6b\xfd\x53\x67\xb7\xfb\x2f\x1e\x1e\xc5\x5f\x4d\x72\x71\x4a\x80\x12\x6b\xcc\x71\xe6\x58\x83\x16\x57\x8e\xf9\x6a\x1a\x26\x2c\xcc\x90\xb7\xae\x3c\x33\x99\xbb\x50\x6c\xbd\x6e\x86\xb3\x87\x47\xf1\xda\x63\xd9\xe0\x68\x2f\x8b\xfe\xf5\x37\xf7\xed\x5d\x4c\x23\x0c\x4b\x3f\x82\xad\x7e\xc9\x88\x48\x1e\x3e\x7c\x58\x7c\xe7\x3b\xdf\x91\xdf\xff\xfe\xf7\x45\x9e\xe7\x95\x3e\xf4\xdb\xdf\xfe\x56\x4a\x29\xc5\xd3\x4f\x3f\xed\xb0\x2e\x8c\x5d\xf0\xfb\x86\x00\x20\xe6\xb1\xc2\xd6\x4a\x2a\x47\x89\x9c\x0e\xbb\xf9\xee\x99\xed\xa5\x27\x8e\x0c\x3b\x27\x3a\x92\x7a\x76\x80\x03\x4e\x19\xec\xe2\x32\xae\x1d\x60\xea\xc8\x28\x0b\x66\xe6\x28\xd6\x4f\x24\x80\x71\x92\xef\x5c\x59\x9f\xbd\xf3\xee\xe6\xf8\xc2\xa7\x2b\xe9\x07\xd3\x8e\xdc\x95\x50\x43\x02\x0d\x19\xdb\x32\x66\x93\x8b\x2b\x6c\x4b\x9e\xe7\x52\x4a\x53\x15\xbe\xbc\x04\x00\xfc\xf8\xc7\x3f\x96\x2f\xbe\xf8\x22\xee\xbd\xf7\x5e\xad\x1b\x33\xd6\x26\x74\xbd\x80\xb5\x15\x00\x10\x0a\xc0\x24\x96\xf2\xf2\xda\x2c\xdd\xe9\x67\xbb\xd7\x0e\x25\x5b\xf7\xdf\xea\x9d\x3c\xb6\x9f\x9c\x3a\x34\x8d\x36\x92\x4c\x0c\x04\xc1\x02\x16\xe7\xe3\x17\xff\xec\x1b\xd7\xee\xca\x49\xc9\x49\x47\xee\xdd\xea\x67\x5b\x5b\x87\xd2\x0f\x3f\x59\x9d\x7d\x7c\x7d\x90\x6e\x8d\x13\x79\x1b\x64\x58\x96\xa1\x52\xc5\x30\x11\x15\x73\x71\x2a\xcb\xc2\x75\x7f\x51\x4a\xc9\x3c\xcf\xf1\xfd\xef\x7f\x1f\xac\x42\xea\x18\xca\x26\x7d\x19\x62\xb9\x8d\xab\x5b\x55\xb4\x88\x0b\x29\x47\xe3\x3c\x94\x6d\xf6\x73\x21\x10\x62\x89\x38\x96\x94\x50\x81\x18\x0d\xf2\xd3\xce\x82\x92\x52\x9c\x5b\xd9\xed\x88\x45\xdb\x4c\x5d\xcb\x83\x58\xe7\xe6\xf1\x85\xf6\x79\x50\xe5\x3f\x63\x99\x34\x14\x98\xcb\xcc\x72\x39\xf4\x34\x67\xc0\xc5\xfb\x0b\xd5\x11\xbc\xe7\xc1\x06\x8e\x30\x68\x58\x04\x50\xd6\xc5\xd3\xe6\x9a\xe2\xf6\x5d\x08\x18\x84\x1a\x57\x1d\xd8\x69\x8a\xcf\x0f\x5b\x57\x07\x6d\xc3\x50\x4d\x43\x42\x75\xe1\x10\x78\xb6\x68\x5d\xca\xaf\x7c\xe5\x2b\xe2\xf4\xe9\xd3\x42\x29\xa5\x27\xa4\xeb\x5f\x43\x89\x47\x73\xf4\xfb\xb7\xf3\x07\x3b\x33\x79\x9c\x14\x7a\x44\x16\x64\x6b\xcb\x91\x33\x10\x5a\x69\x01\x60\xca\xba\x7c\xe6\xdc\xdb\xc7\xde\x05\x6b\xfc\xbe\x55\x60\xbd\x9a\x85\x90\xc6\x42\x83\xb9\x76\x59\x0c\x0e\x92\xdc\xce\x48\xfa\x19\xe0\x76\x34\xed\x4a\x70\xa2\x98\xf2\x35\x87\xe7\xb1\x72\x5a\x45\x4c\x81\xbe\x69\x01\x99\x61\x90\xc0\xce\x2a\x02\xf1\xa8\x6c\xc2\xcc\xda\xd6\x75\xd1\x49\xe5\x89\xa5\x7d\x79\xdf\x68\x5d\xbd\x97\x75\x31\x2c\x15\x87\x56\xce\x66\xb8\xd0\x9b\x54\x5f\x07\x5e\x82\xed\xe2\xeb\x5f\xff\x3a\xee\xbf\xff\x7e\x6e\x70\x98\x49\xb8\x54\x6e\x42\xd8\x91\xe8\x3f\xf6\xe9\xe0\xec\x43\xd7\xfa\x7f\xbb\x36\xe9\x3c\x1f\x4b\x3a\x46\xba\x3d\xb2\x0a\xd0\x20\x97\x5c\xbd\x53\xf9\xac\x1e\x81\x65\x3c\x59\xb5\x6e\x01\xaa\x06\xbe\x04\x12\xb1\xa4\x63\x2b\x53\xfa\xbf\x3f\x73\x6d\x79\x10\x29\xfc\xd3\x6f\x8e\xef\x5f\x98\x24\x72\x0f\xc5\xb0\x08\x60\x01\x47\x0c\x20\x1b\x0c\x06\xf8\xde\xf7\xbe\x87\x7f\xf8\x87\x7f\xf0\xeb\xc7\xcb\x9f\xb3\x11\xa7\x1e\x76\xf2\xc1\x8b\xf9\x3e\x52\x00\xb7\x97\x32\x79\xe1\xd8\x70\x72\xa3\x9f\xee\x3c\x78\xb3\x7f\xf6\xde\xdd\xe4\xe1\x95\x59\xbc\x19\xe7\x94\x14\x65\x2d\x87\x3f\x34\x28\xb5\xa9\x99\x6a\xe3\x78\x85\xdb\xed\xba\x39\x4b\x00\xd3\x8e\xdc\xbb\x39\x98\x5f\xb9\xb4\x31\xb9\xf0\xd1\xfa\xf4\xd2\xed\xa5\x6c\xdb\xb0\x2c\x20\xcd\xb6\x0c\x51\x0c\x8d\xe8\x09\xb4\xc1\x25\xd0\xbf\xfe\xf5\xaf\x71\xfe\xfc\xf9\x85\x65\xaf\x57\x2f\x69\xe0\x3d\xbf\x2e\xb6\xd3\x07\xb2\x61\x37\x9f\x8e\x0f\x4f\xf6\xaf\xad\xa4\x5b\x1b\xa3\xf8\xbd\x23\xa3\xe4\xe8\xd1\xbd\xe4\x9e\xc3\xe3\xf8\x9e\xe5\x34\x5a\x89\x25\xf5\x84\x22\x41\x0a\x42\xcf\x51\xd3\x85\x56\x04\x28\x52\x32\x8f\x90\x4e\x62\x39\x1e\x76\xf3\xdd\xdd\x5e\x76\xfd\xda\xa1\xf4\x93\xeb\x87\xd2\xad\xdd\xa5\xf9\xce\x2c\x56\xb7\xcb\xfd\x6a\xf4\x70\x10\x67\x9d\xf8\xfc\x16\x3d\x5c\xe6\xe8\xbd\x34\x4d\xf1\x4f\xff\xf4\x4f\x4d\x3a\x27\x24\xef\xdb\x5c\xc5\x6f\xdb\x06\x74\x6d\x8a\x8f\x67\xc2\x51\x00\x1e\xed\x65\xaf\x15\x84\x90\x22\x8e\x24\x25\x02\x10\xce\x86\x3a\x3e\x62\xae\x81\x11\x9c\x3f\x32\xfe\x98\xb1\x6a\x56\x54\x70\x70\xc2\xad\x36\x68\x85\x01\x66\xd5\x55\x73\x11\x02\x32\xfa\x79\x1e\x60\x5c\x9c\x3c\xb6\x1f\x8e\xd6\x24\xf4\x16\xfd\xa8\x6d\xf1\x84\xe2\xab\x63\x15\x9a\x58\x9a\xa6\xbc\x2d\x02\x2c\xea\xd2\xe5\xef\x9a\xd8\x16\x3f\xee\x26\x40\xd8\xf6\x7e\x91\xfc\x85\x98\x1a\x3f\x6d\x9e\xc7\x10\x13\x53\xd9\x78\xae\x33\x95\x83\xde\x48\x9e\x15\x19\xd6\xb4\x3f\x97\x19\xd4\xa0\xc2\x36\x5c\x73\x1a\x7a\x08\xbf\xd8\x80\x4e\x18\xdb\x90\xb5\xd2\xe3\x98\x87\x69\x37\x87\x4e\x27\x2f\x38\x47\xf9\xa1\xe4\xd8\xa4\xbe\x0a\x8e\xf2\x7a\x52\xa9\x24\xdd\x3c\x72\x76\x89\x0b\x69\x3b\xb9\xd2\xae\x72\x80\x61\x51\x2c\x10\x61\x39\x37\xd7\x76\xe8\xcb\x65\x6b\x6d\x8f\xd6\x20\x47\x64\xb4\x99\x8c\xe4\xc9\xce\x44\x6d\xce\xfa\x6a\x47\x45\x06\x60\x1a\x65\x5a\xe4\x87\xf0\xdd\xef\x7e\x17\x3f\xfa\xd1\x8f\xc4\xf6\xf6\x76\xa5\x9f\xa3\xa6\xcd\xbd\xf8\xe2\x8b\xe2\xee\xbb\xef\xd6\xb7\x46\x49\x2b\xa5\x12\xcd\xb4\x08\x85\xde\x99\xed\xfe\xf1\x33\xd7\x97\xfe\x9f\xb5\x49\xfc\xe5\x58\xe2\xa8\x4e\x5b\x17\x57\xcb\x36\x53\x0e\xce\xce\xf9\x5f\x4a\x33\x57\x14\x02\x7d\x2e\xae\xb5\xa0\xd4\xbe\x10\x0a\xfd\x7e\x2a\x9e\x7f\xe0\xc6\xd2\x74\x14\xcb\x7f\xbd\x78\xd7\xe8\xe2\x28\xc9\xf7\x4a\x39\xa6\xcb\xa7\x27\x95\x42\x08\x21\xbf\xf7\xbd\xef\x89\x7f\xf9\x97\x7f\x41\x9a\xa6\x4e\xff\x7c\xfd\xf5\xd7\x31\x9f\xcf\xe5\x73\xcf\x3d\xc7\xfb\x5a\xc6\xfc\x38\x0c\x03\xf3\x23\x01\x64\xb3\x48\x65\x57\xd7\x66\xe9\xad\xe5\xf9\xee\x91\xf5\xe4\xe3\x13\xbb\xbd\x93\x77\xdf\x4e\x4e\xae\x4e\xe3\xcd\x24\x17\x3d\xa1\x8a\xf9\x2f\x76\x18\xa4\x41\x5e\x97\x0f\x73\x52\x32\x13\x2a\x1d\x25\xf9\xde\xcd\xfe\xfc\x93\xab\x6b\xb3\x4b\x57\x57\x67\x57\x6e\x2f\x65\x37\xe7\x91\xda\x53\x76\xfe\x86\x06\x2b\xfe\x44\xd4\xca\xb9\x3c\x0d\x2c\x7b\xf0\xf9\x4f\x7f\xfa\x53\x7c\xf9\xcb\x5f\x96\x0f\x3c\xf0\x80\x66\xf5\xb2\x92\x7d\xcb\x9c\xa1\x61\x37\x1e\xbe\x6a\x27\x95\x84\x74\x98\xe4\xd3\x71\x27\xbf\xbd\xb5\x92\x6e\x2d\x6d\x8a\xf7\x56\x27\xf1\xda\xea\x34\x5e\x5b\x9e\x45\x83\xa5\x2c\xea\xf7\xe6\xd4\x4f\x32\xd1\x8b\x15\xc5\x0a\x40\x2e\x54\x96\x46\x6a\x3a\xe9\xe4\xe3\xfd\x5e\xb6\xb7\xbb\x94\xef\x0c\x93\x7c\x38\xee\xe4\xe3\x69\x47\x0e\x33\xa1\x46\x25\x60\xe1\xa0\x85\xff\xea\xbf\xa6\xd5\x44\x8b\xb8\x83\x00\x16\xdf\xbf\x69\x4b\x75\xcb\xa1\xdb\x14\x89\x2f\xbc\x9d\x06\xc8\xa8\x72\x73\x5d\x0a\x71\x44\x8a\xe2\x58\x52\x12\x29\xc4\x50\x88\xc3\x43\x3a\xaa\xa4\xab\x61\x7b\x1c\xa3\xfa\x42\x8d\x53\xfb\xe1\x02\x94\x4f\xfc\x85\x97\x0e\xf1\x1e\x0d\x87\x9a\x43\xb8\x0b\xb8\x4e\x11\xb2\xdc\x32\x2e\xba\x2e\x4c\xbd\xd4\x80\x16\x5f\x61\xb6\x7d\xc4\x10\xb8\x58\x44\xd9\x86\xc2\x87\xf2\xe2\xe7\x63\x51\xa0\xd1\x16\xff\x9d\xa0\xe9\xa6\xbc\xb4\xc5\x7d\x50\xc6\xa9\xcd\x4f\x5d\x7c\x75\xf1\xf8\xa0\x9d\x03\x16\x01\x05\x01\x20\xe9\x8e\xe4\x46\x3c\x55\x27\x49\xa2\xef\x61\x0b\x58\xcb\xba\x54\x4a\x65\xa3\x36\x16\x32\x60\x58\x05\x55\x06\x74\x86\x6c\xa8\xda\x39\xf8\xe4\x5b\x3b\x1c\xc4\x17\xff\x97\xe9\x72\xe0\xc0\x4d\x76\xa5\x15\x83\x79\xcb\xbc\x73\x50\xc3\xf6\x7a\x31\x7d\xce\x07\x2a\x1c\x8c\x15\xe9\x3b\x80\x4a\x83\x2c\x0f\x94\x98\x5f\xe2\x2c\x8b\xdf\x5f\x61\xea\xc5\x35\x56\xac\x42\x37\xf5\xa9\x7f\x25\xfa\x9d\x99\xba\x27\x99\xca\xcd\x28\x13\x1f\xcf\x05\xc6\xe4\x6d\xdb\x50\xde\xcb\x24\x49\x42\x43\x47\x8d\xae\xd3\xe9\x80\x9d\x37\x64\x87\x0b\xcb\x73\xaa\x84\xa2\xde\x5d\xfb\xc9\xe6\x67\xae\x2d\x7f\x7b\x7d\x12\x3f\x1f\x4b\xda\x04\x48\xb0\x12\x17\xbf\xce\xe7\xe1\xb5\xca\x06\x8f\x1c\x39\x06\x0b\xfa\x4c\x1b\xaa\x71\xce\xd9\x6e\x45\x8d\x09\x45\xfd\x43\xb3\xe8\xb9\x07\x6f\x2c\xed\x4e\x3b\x32\xfd\xe0\xf0\xe4\xbd\x72\xc2\xae\x53\xfe\xd2\xda\x46\x92\x24\xc1\xbe\x23\xa5\xd4\xab\xb1\x80\x6a\x7f\xd2\x93\x75\xa7\xc1\x7c\x95\xdb\x4b\x48\x20\x1b\x25\x32\x9d\xad\xcd\x46\x3b\xcb\xf3\x1b\x1f\xad\x77\x3e\x3c\x32\x4a\x8e\x6e\x8c\xe3\xa3\xab\x93\x78\x63\x39\x15\x6b\xdd\x4c\xf4\x22\x49\x31\x29\x12\x04\x08\x2a\xfa\x1a\x24\x41\x2a\x82\x2c\x0d\xcc\xe9\x38\xc9\x87\xb7\x7b\xd9\x8d\x9b\xcb\xf3\xeb\x37\xfb\xf3\x1b\xb7\x97\xb2\x9d\xfd\x6e\xbe\x3b\x8b\xe5\xbe\xd4\xfb\x92\x90\xa3\xa0\xf5\xf0\x90\x1e\x1e\x71\x96\x41\x03\x76\x78\xe4\xd5\x57\x5f\x95\x17\x2f\x5e\x04\xea\x0d\x1e\x53\x07\x59\x96\xe1\x95\x57\x5e\xc1\x7c\x3e\x97\x7a\x2f\x1f\x0d\x60\x02\x3a\x43\xc7\xe7\x00\x17\x14\x5b\xed\x67\x12\x98\xa6\x91\x1a\xcf\x45\x9e\x8c\x12\x79\xeb\xfa\xa1\x79\x37\x92\xe8\xc5\xb2\x98\x8a\x11\x49\x12\xa2\x1c\x6a\x52\x80\xcc\x05\xb2\x5c\xa8\x6c\x1e\xc9\xe9\x5c\xa8\x54\x0a\x35\x93\x84\x54\x01\x29\xa0\xa6\x28\x58\x47\x0e\x58\xa6\xac\xfc\x6d\x4b\xa0\xb1\xb7\xb7\x27\xff\xe3\x3f\xfe\xc3\xaf\x87\x26\xb7\xa8\xe1\x5d\x89\xb3\x69\x39\x74\x9d\x02\x69\xba\xaf\x0c\x07\x78\xab\x8b\x84\x50\x10\xb1\xc4\x52\xb1\xf9\x9c\xf6\x54\xf6\x21\xd2\x13\x87\x4a\xe1\xc4\x2c\x02\xff\x9b\x2a\x26\xa7\x9d\x09\xba\xca\x32\x2c\x75\x8e\x53\x8c\xd6\x10\xb5\x82\xbc\xd2\xd5\x3d\x1c\xa3\xa0\x64\x5e\x6c\xad\x9d\x49\x32\x8c\x8b\x66\x59\xa4\x27\x54\x17\x55\x82\xdc\x2d\xfa\x84\xd4\xfe\x08\x00\x00\x20\x00\x49\x44\x41\x54\x41\xdb\x86\x92\x42\xfe\xfc\xe7\x6d\x79\x0b\x0d\x99\x68\xff\x6d\xf9\xac\x03\xbd\xa1\x0e\xbe\x28\xe3\x13\x0a\xd3\x04\xae\xeb\x5c\x88\x00\x2d\x40\xd2\xbf\x25\x59\x24\x1f\x95\xb2\x7c\xfe\xf3\x9f\xc7\x3d\xf7\xdc\x63\x1e\x2a\x7b\xcc\x45\xa9\xb0\x54\x4c\x39\x92\xde\x48\x1e\x8b\xe6\x6a\x53\x6f\x03\x60\xf0\x09\x6c\xab\x73\x86\x87\x5c\xbd\x0d\xdd\x33\x0a\x05\x6d\x69\x8e\x66\x88\xed\x29\x3a\xed\xdf\x90\x10\xe4\x8e\xfa\x94\xe9\xf3\x79\x66\x4e\xe3\x2f\x01\x04\x4c\x5e\x79\x47\xe4\xfd\x48\xe7\x4f\x79\x9b\x5c\xd9\x30\x4e\x3e\x2a\x42\xdb\xdb\x8b\xc9\x39\xb0\xa5\x62\x95\x02\x2e\x54\x81\xa9\x51\x5e\x38\x46\x4d\x90\x82\x88\xe6\x6a\xb3\x33\x55\x47\x44\x86\x1e\x75\xcd\xbc\x13\x7f\xb8\x08\x38\x98\x81\x81\xaf\x7d\xed\x6b\x62\x6d\x6d\x4d\xdf\x72\x20\x14\x03\x48\x04\x28\x59\x9e\x47\x2b\x8f\x6e\x2d\x7f\xf1\xc8\xb0\xf3\x8d\x4e\x2e\x8e\xa1\x5c\x51\xc3\x01\x89\x99\x6f\xcc\x4a\x05\x26\xdf\xec\xbc\x1f\x56\x3f\x15\x6a\xce\x3d\xeb\x8d\x2f\x23\xe6\x71\xd8\xff\x0a\xb1\xa4\xcd\xf5\x71\xe7\xf9\x33\x37\x96\x76\x46\x49\x3e\xbd\xba\x36\xfb\x30\x8b\xec\x89\xf7\xac\x4c\x92\x88\xc4\x37\xbf\xf9\x4d\xf9\xd2\x4b\x2f\x09\xb6\x82\x04\x00\xf0\xd1\x47\x1f\xe1\xdc\xb9\x73\xf2\x99\x67\x9e\xe1\x7d\x28\x83\xeb\x38\x78\x31\x8c\x0b\x80\x4c\xa1\x38\x98\x71\x1e\xa9\x74\x4f\xe4\xe3\x49\x47\xde\xbe\xb9\x3c\xbf\xde\xcd\x44\xbf\x9f\x8a\xc1\x60\x16\xad\x1c\x9a\xc5\x2b\x4b\x73\xd1\xef\xe4\x22\x89\x14\x84\xde\x7d\x37\x13\xc8\xd2\x48\xa6\xa3\x44\x0e\x47\xdd\x6c\x38\xea\xe6\xc3\x61\x92\xef\x4d\x3a\x72\x98\x46\x72\x9c\x45\x6a\x92\x13\xc6\x70\x59\x86\x31\xac\xb2\x1e\x03\x98\x6a\xd0\x02\x38\xfb\xdc\x98\x72\xfe\xea\x57\xbf\x92\xef\xbd\xf7\x1e\xca\x65\xbf\xbe\xac\xf7\xe5\x9c\x04\x20\x27\x93\x09\x66\xb3\x59\xa8\x6d\x39\x75\xa3\xec\x79\x46\x92\x81\x26\xbd\x92\x27\x45\xb1\xe7\x4b\x4f\x11\xe2\x0c\x2a\xc9\x84\x8a\x09\x9a\x10\x28\xbe\x11\x6f\xfa\x00\x64\xb1\x39\xa1\xa9\x63\x03\x82\x60\xf7\x66\x71\x18\x26\x56\x7e\x1f\xbc\x39\x75\x71\xe3\xc6\x0d\xf9\xf2\xcb\x2f\xeb\x3d\x5b\x7c\xd7\x66\x40\x2e\xa2\x17\x9d\x7a\x0c\x6d\xf9\xef\x7b\xd2\xf7\xfe\x07\xa8\xcd\x54\x60\xd5\x8e\x11\x02\x91\xa4\x38\xce\x29\x11\xc5\x72\x2e\x61\x56\x1a\x14\x21\xe1\x08\x6d\x2d\x8b\x7c\xe0\x50\xf2\xa0\x76\x5e\x0b\x3b\x29\x53\xf7\xf8\x32\x02\x47\x5c\x1a\x6b\xc4\x0a\x5f\x7f\xc8\x9f\x6f\x62\x65\x95\x04\x1c\xa7\x08\x52\x96\xe7\x81\x94\xbb\xe6\x02\x96\x65\x09\xb1\x2d\x75\xca\x30\xd4\xb0\x17\x09\x57\xf7\xfe\xa0\xee\x4e\xc3\x07\x99\x06\xe6\x9a\x86\x62\xea\xe2\x6a\x53\x12\x75\x20\x2d\x04\x8a\x42\x69\x36\xd5\xf5\x22\xe0\x29\x94\x8e\x00\x20\x0f\x1f\x3e\x2c\x96\x96\x96\xb8\x75\xad\xfd\x17\xbb\xa0\x02\x89\x90\x48\x92\xb1\xbc\x5f\xe4\x6a\x05\xda\x60\x70\xf1\x00\x00\x06\xba\xcd\x92\x62\x3e\xd0\xe1\x59\xe0\x9c\x5d\xe0\xcc\x8d\xc3\x31\x5a\x60\x61\x77\xca\xf7\xb6\x28\x60\x05\xb3\x2b\x8e\xdc\xb7\x0e\x58\xe1\x40\x27\x50\x08\x17\xd8\x04\xb6\x14\xb0\xeb\x93\x99\x92\x56\x4e\xdf\x24\xd2\x8a\xb6\xd4\xc7\xa6\x28\xa1\x41\x12\x0b\x5a\xb4\xea\x27\xf2\x18\x18\xc7\x80\x2a\x24\x43\x94\xab\x8d\xce\x54\x1d\x8d\xe7\x6a\x25\x55\xd8\x21\xbb\x11\x5c\x85\x45\x7e\xfa\xe9\xa7\x71\xee\xdc\x39\x3d\x5c\x04\x34\x00\xeb\xa3\x47\x8f\xa2\x3c\x61\x59\xc7\xa1\x01\x51\x31\xaf\x25\xa7\xfe\x03\x37\x7b\xa7\xee\xbd\xdd\xfd\x7a\x37\x13\x27\xa9\x58\x0e\x0d\x3d\x6c\x5d\xc2\x0d\x3b\xe4\xc5\xab\xcf\xd4\x09\x95\xec\x99\xb7\xca\x86\x01\x47\x03\x76\xf9\x5c\x41\x8d\x46\x2b\x87\x51\xea\xeb\x02\x70\x27\x39\x8e\x6f\x8e\x3a\xcf\xdd\xb7\xdb\xbd\xba\xdf\xcb\xf6\x76\x96\xb3\xca\xd1\x08\x9a\x91\x3a\x76\xec\x98\x88\xe3\xb8\xd2\xd7\x26\x93\x09\xde\x79\xe7\x1d\x10\x91\x7c\xfa\xe9\xa7\x35\xd0\x01\xea\xc1\x8b\x89\x5f\xf1\x43\x08\x09\xa9\x22\xf4\x52\x52\xd3\x79\x94\x0f\x47\x49\x9e\xec\x2e\x51\xd2\xc9\x69\x29\xc9\x29\x89\xa5\xe8\x09\x59\xb0\xf7\x42\x21\x2e\x56\xbd\x43\x72\x76\x21\x8b\xd4\x24\x13\x2a\x95\xfa\x60\x40\xaa\x28\x69\xf3\xc7\x18\x86\x29\x9f\x90\xab\xb7\xbd\xd0\x79\x7c\xf5\xd5\x57\xe5\x7b\xef\xbd\x87\xc9\x64\xb2\x08\x3b\xec\xf8\x79\xf7\xdd\x77\xd1\xef\xf7\x65\xb9\x7d\x02\x37\x76\x4d\xdd\xf0\xb4\xc8\xdd\xac\x4e\xe7\xbd\x07\x7d\x5c\x00\x20\x40\x48\x54\xb1\x89\x9d\x50\xd5\x36\xec\x03\x47\x7e\x4e\x52\xca\xee\x39\xb3\xe2\x4f\xc2\x4d\x35\x3b\x04\x06\x5a\xae\x5d\xbb\x26\xcf\x9d\x3b\xa7\x0f\xe4\xe4\x2e\x34\x4a\xe0\xbb\x26\xe3\xd7\x37\x48\x4d\x5c\x6d\x93\x73\x9b\x50\x52\x30\x53\x7c\x32\x9b\x5e\x16\xca\x33\x12\x29\x12\xb1\xa4\x38\x32\x9b\xcf\x31\xf4\xaf\x3b\x17\xac\xe0\xb2\x71\x95\x9d\xd6\xc8\x61\xfe\xd2\xae\xef\xb7\xcb\x32\x0b\x10\xe2\xb2\x2a\xd6\x8a\xd1\xf7\x55\xc7\xd6\x24\x31\x50\xc3\xe3\x51\x80\xcc\x09\x69\x4e\x6a\xa6\xb7\xfb\x2f\x1b\x1e\x67\x5e\x78\xa4\x75\x80\xe3\x40\xf4\x58\xc0\x7f\xd3\xc7\x6e\x7b\x1f\x52\xea\x6d\x61\x11\xf0\xc7\x1b\x16\x8f\x5b\xa0\x39\xbe\x45\xd2\xf2\x1b\xec\xa2\xe0\xc6\x67\x53\xda\xda\x75\xa8\x0c\xa1\x78\x79\x9e\x9c\x70\x76\xd5\x4a\x31\x11\x1d\x25\x68\x29\xdf\xc7\x71\x2a\xfb\xc9\x44\x9e\x10\x12\x3d\x34\x38\xbe\x25\xbf\x79\x06\x80\x99\xda\x0e\x2c\x01\x60\x87\x89\xbc\xe7\x96\xf4\xb0\x0d\xb9\xd0\x51\xc4\xfa\x8a\x0f\x7c\xdc\xbd\x97\x4c\x9f\x21\xdd\xb7\x3d\x23\xc3\x60\x2c\x6f\x10\xc3\xb2\xac\x16\x56\x98\xbe\x6d\x65\x84\x8d\xab\x70\x9c\x59\xb1\x04\x09\xb7\x36\xdc\xa5\xbe\x85\xcf\x42\x8a\x78\x36\x8b\x8d\x9b\xb4\x92\xb6\x9d\x9f\x08\x20\x89\x41\x67\x2a\x8f\xc6\x33\xb5\x42\x4a\x25\xaa\x3c\xc1\xbb\x1c\xce\xd1\xac\x8b\x04\x80\x7b\xef\xbd\x57\xf4\xfb\xfd\x56\xd0\xf2\x67\x7f\xf6\x67\xa2\xdb\xed\x6a\x3f\x7a\x88\xc8\x0c\x15\x09\x89\xde\xa1\x69\xbc\xf1\xc0\xce\xd2\xd3\xcb\xb3\xe8\x71\x42\x71\x88\x9e\x0f\xb0\xf4\x77\x00\xec\x07\xe0\xe0\x55\xb1\x65\xea\xba\x56\xf4\x77\x74\x56\x55\x2a\xd8\xe1\x37\xb2\xc0\x57\xe3\x17\xdb\x76\xec\x9c\xa5\x02\x07\x51\xb2\x34\x17\x67\xee\xde\x4f\x9e\xdc\x1e\xcc\xaf\x0c\xbb\xf9\x30\x8d\x95\x56\x5a\x1a\x58\x98\xfe\xf8\xe4\x93\x4f\xe2\x77\xbf\xfb\x9d\x28\xf7\x31\x31\xb2\x61\x3c\x1e\xe3\xe2\xc5\x8b\x42\x08\x21\x9f\x7a\xea\xa9\x3a\xe6\x85\xcb\x12\xce\xba\x70\xc5\x3a\x05\xa1\xa7\x80\x44\x11\xe2\x5c\xc9\x24\x13\x14\x4f\x3b\x88\x81\x5c\xd7\xaf\xae\x77\x13\x97\x65\x17\x0a\xf6\x06\xfa\xe8\x01\x10\x57\xce\x66\x57\x5c\xb8\x60\xc5\x59\x45\x44\xde\x3e\x5d\x57\xae\x5c\xc1\x64\x32\xf1\x9b\xc0\x42\xc3\x24\x37\x6f\xde\x94\xe7\xcf\x9f\x17\x4a\x29\xf9\xe0\x83\x0f\xfa\x43\x91\x7c\xfa\x01\xe0\x32\x2e\xba\x5e\x92\x32\xaf\x09\x03\xc5\xbc\xad\x19\xb9\x04\x18\x40\xea\xd7\x2f\x8f\xcf\xaf\xef\xd4\x7b\xc7\xc1\x8a\x01\x2d\x9f\x7e\xfa\xa9\xfc\xfd\xef\x7f\x8f\x4f\x3f\xfd\xf4\x8f\x65\x9c\xfb\xef\x82\x32\xdf\xdf\x80\x8e\x7b\x68\x1b\x06\x08\x26\xe8\xcd\x86\x76\x80\x0c\x50\x8c\x41\x46\x8a\xf4\x1a\x74\x2b\xa3\x15\x99\xce\x68\xd8\x10\x58\x4b\x8b\x98\xc0\xd1\xce\x08\x44\xf3\x8e\x75\x76\xd8\xfd\x2b\x0a\x2b\xcd\x4e\x72\x34\x1d\x5c\xb9\xe1\x35\x95\x6e\x0b\x50\xbd\x54\x45\x56\x65\x2e\x54\x96\x0b\x64\x0a\x4a\x12\xa8\x32\x49\xcb\x9b\xb8\xd5\xa4\x68\xf5\xfb\x3b\x01\x36\x21\xb6\x22\xf4\xcd\x16\x65\x69\x16\x01\x49\x3e\xc3\xd2\xd6\x4e\xfc\xb8\x0e\x02\x60\x16\x01\xce\x75\xf1\x87\x1a\xfc\x22\x79\xe4\x65\xe1\xd7\x8b\x00\x2d\x9e\x4e\x49\xd5\x52\x0c\xa5\xe2\x64\xa2\x56\xe2\x54\x1d\x23\x55\x1c\x98\xc6\x9d\x03\x2e\xc2\x68\xba\x50\xcb\xba\x33\xb0\xd3\x91\xc3\x94\x20\xac\x82\x36\xda\x0a\x6e\x7b\xf6\x19\x17\xa7\x7f\x59\x0b\xc1\x05\xfe\x8e\xed\x5f\xfe\x58\xd8\xc0\x81\x82\xf5\x6f\xa6\xd7\x82\xcf\x9d\xf1\x69\x18\xcd\x16\x71\xe3\xc4\x32\x0a\x5c\xdb\x6a\x7f\x5c\x69\x5b\x90\x63\xf2\x6f\x14\xb2\x41\x6f\xce\x70\x30\x00\x90\x54\xbd\x38\x55\x1b\x9d\x99\x5c\x13\x79\x94\xe4\xc2\xec\x64\x0b\x3e\xdf\x05\xed\xc2\xd6\xb4\xb5\x47\x1e\x79\x04\x71\x1c\x3b\xac\x1b\xd8\x04\xed\x6e\x26\x06\xf7\xde\xee\x9e\x3a\x3c\xea\xfc\x59\x24\x69\xc3\xc4\xa0\x01\x20\xa3\x99\x48\xcb\x2d\xe5\x6e\xb0\x59\x14\x8f\x01\x4b\xf3\x7d\xf4\x27\x61\x4c\x56\xd9\x46\x14\x63\xf1\xf8\x62\x06\xbb\xfd\x8d\x69\x30\x26\xae\x58\xd2\xc6\xea\x24\x7e\xfc\xee\xbd\xe4\xdd\x9d\xfe\xfc\xfa\xf6\xa1\xb9\xbf\xfc\xd5\xf4\x99\xb3\x67\xcf\x8a\x8b\x17\x2f\xca\xd0\x50\xc1\x64\x32\x91\x6f\xbc\xf1\x86\x88\xe3\x58\x7e\xf6\xb3\x9f\xb5\x45\x2e\x94\x31\xaf\x4f\x9f\x61\x48\x60\x95\x68\x02\xcb\x2e\x68\x65\x1d\xab\xea\x84\x6a\x5f\x16\x96\x7f\xe6\x5c\xa0\x8c\x81\x11\xbe\xa1\x9c\x61\x18\xc8\x9e\x21\xa4\x27\xe1\x56\x40\xcb\x1b\x6f\xbc\x21\x4b\xd0\xb2\xa8\x7c\xa9\xb8\x1b\x37\x6e\xe0\x8d\x37\xde\x80\x10\x42\x9e\x3e\x7d\xda\x67\x5e\xf4\x2a\x37\x94\x79\x4e\x60\x01\x8c\x3e\x3a\xc1\xd4\x03\xe0\x9c\x57\x65\x80\x0b\xe0\xf4\x5b\xaf\x4e\x82\xe0\x45\x9f\x29\x95\xa1\x1e\xb0\x48\x00\xf8\xe4\x93\x4f\xe4\xf9\xf3\xe7\x71\xf9\xf2\xe5\x26\x39\xed\xcb\x53\xee\xea\x64\x38\x7f\x17\x7c\xee\xef\xe3\xc2\x5f\x2e\xfa\x5c\x00\x90\x1b\x1b\x1b\xe2\xd8\xb1\x63\x00\x7c\x5a\x96\x00\x4b\x2b\x82\x14\x84\x50\x14\xeb\x49\x54\x4e\x67\xf4\x6c\x49\x53\xdd\xe4\xf8\x04\xfc\xf7\xde\x43\x72\x25\x77\x65\xe8\xca\x17\xb0\xf6\xb9\xa6\x54\x03\x1b\xd4\x69\x61\x52\xa0\x9e\x2c\x17\x2a\x95\x64\x3a\x1e\x0f\x23\x01\xdb\x58\x88\x08\x9f\x7e\xfa\x29\xd8\x4e\x93\x4d\x1f\x8b\x3b\x5f\x61\xd6\x09\x4b\xed\xda\x00\x4b\x53\x1a\x6d\xc0\xca\x77\x6d\xe0\xa1\xce\x4f\x9d\xbf\x45\x3b\xbc\x1f\xcf\x22\x00\xed\x20\x74\x65\x53\x3c\xc1\x72\x9e\x3c\x79\x12\xfd\x7e\x1f\x00\xf4\xdc\x16\x23\x40\x89\x48\x40\x29\x41\x0a\x71\x32\x91\x6b\x51\x86\x4d\xa8\xea\xbc\x32\xce\x88\x14\x11\xc1\xb0\x06\x86\x31\x60\xcf\x2c\x29\xa1\xa9\x10\xb8\xc8\xda\x69\xba\xac\x4d\xdb\x16\x0e\xce\x88\xf0\x78\x34\x0e\x32\x53\x26\x74\x14\x21\xe7\x33\x39\x7a\xdf\x26\xe2\x59\x20\xc7\x2f\xb3\xed\x6d\xee\x98\x10\xb0\x73\x6b\x98\x91\x61\xb9\x06\xb8\x09\x68\xf6\xa5\x04\x3e\xee\xf2\xa9\x4a\xdc\x36\x41\x9d\x67\x12\x51\xa6\xd6\xe2\x54\x1d\x16\x99\x4a\xb2\xd8\x0c\xe9\x08\x4f\x06\x34\x31\x82\x12\x80\x14\x42\x88\x07\x1f\x7c\xb0\x9c\x8f\x6b\x81\x2b\x9b\x37\x93\x08\x89\xde\xa1\x59\xb4\x71\x72\xa7\xf7\xe4\x52\x2a\xce\x9a\x9d\x61\xcb\xec\x71\xac\x65\x8f\x1b\x21\x73\x48\xa4\x33\xe5\x99\x7f\x76\xc5\xbe\x67\x19\x91\x01\x36\xa6\xfa\xd8\x47\xe1\x8c\x1a\x5c\x90\xe3\x49\x44\xd1\xcb\xa2\x13\x47\x87\xc9\x63\xd7\x46\xe9\xa5\xdd\xa5\x6c\x37\x8d\xa4\xd9\xd3\xa5\x2c\x5b\xaa\xf7\xbd\x39\x71\xe2\x04\x46\xa3\x91\xd8\xdf\xdf\xaf\x28\xf3\x34\x4d\xe5\xaf\x7f\xfd\x6b\xd1\xed\x76\x71\xf6\xec\x59\xa9\xf7\x3d\x82\x3d\xb7\x07\xb0\xfd\xd4\x99\xd3\x01\xbb\xab\x71\xc2\x7f\xcb\xf4\x39\xc0\xac\xc8\x44\x3e\x4f\x04\x55\x76\xa1\x8e\x65\xe0\x60\xa5\x02\x5a\x2e\x5e\xbc\x28\x7f\xf3\x9b\xdf\x60\x3e\x9f\x07\x9a\xc4\x81\x9c\xbc\x71\xe3\x06\x5e\x7b\xed\x35\x31\x9f\xcf\x65\xa7\xd3\xc1\xe9\xd3\xa7\x75\x3d\x08\x58\xa0\xa0\x0f\x02\x35\xed\xb3\x2c\x7f\xca\x80\x8b\x3f\xcc\xd9\x24\xbb\x39\x70\xf1\xd9\x1c\x7e\xe0\x66\xed\xa9\xcf\x5b\x5b\x5b\xf2\xfc\xf9\xf3\xf8\xf8\xe3\x8f\x7d\xe3\x4e\xa7\xe1\xa7\x19\x32\xfc\x9a\x80\x4c\xc8\x99\x32\xd5\x2d\x87\xae\xb5\x28\xea\xfc\x9e\x38\x71\x02\x67\xcf\x9e\xd5\xe7\xb3\x70\xf0\x22\x18\x88\xe1\x33\xbf\x0b\x20\x53\x78\x76\x04\xb7\xb6\x0e\x1c\xec\xa0\x1c\x99\x13\x74\xfc\x24\x5b\x1d\x6d\x68\xe7\x4f\xc0\x46\xe4\x0a\x28\x6e\x29\xb2\x78\xb9\x7e\xa0\x92\x71\x21\x95\xc9\xea\xe6\x73\xd2\x0f\xaf\x94\xc2\xc5\x8b\x17\x71\xe5\xca\x95\xba\x6c\xfb\x00\xc5\xaf\xeb\xba\x06\xd1\xa4\xf0\xeb\x40\x03\x8f\xa7\x8e\x41\xa8\x63\x50\x42\x08\x3a\x94\x46\x28\xad\xd0\xbd\xef\x8f\xc7\x5d\x97\xdf\xd0\x75\x5d\xfe\xfd\x34\x9a\x00\xb8\x9f\xc7\xba\xb8\x2b\x69\x3d\xfd\xf4\xd3\x58\x5d\x5d\xd5\x82\xd7\xb4\x73\x68\xa5\x05\x8a\x49\xa9\x24\x99\xa8\x0d\x21\xd1\xb7\xd1\xd8\xa5\xbe\x80\xd7\x0f\x78\xf3\x73\x98\x05\x13\x14\x66\x39\xb3\xab\x9d\x1d\xa0\x6e\x86\x10\x94\x85\x0a\x7c\xb8\xd4\xb4\x53\x3d\x9c\xc3\x40\xbf\x0e\x07\xb8\xfd\xd0\x60\x98\xaa\x71\x62\xe2\xf1\x7a\x4f\x19\xb1\xd5\xb4\xba\xac\x06\x94\x18\x80\xa2\x15\xb0\x35\x2e\x88\xb1\x04\x8e\x21\xa3\x87\x4b\x42\x8c\x0c\x7b\xe7\x3b\x7f\x3f\x3d\x91\x63\x10\xcd\xd5\x40\xe4\xe8\xb1\xef\x26\xa8\x99\x71\xa9\x28\x85\x28\x8a\xf0\xc2\x0b\x2f\xe8\xe1\x71\x78\xf1\xc4\x00\x92\x24\x17\xfd\x23\xc3\xce\xf1\x8d\x71\xfc\x78\xcc\xd9\x16\x56\x4d\x76\xa8\x47\xd7\x51\x09\xf5\xf8\xd0\x9b\xb2\x01\x14\x0f\x5f\xd6\x4d\xf5\xac\x1e\xfd\x9c\xb7\x21\x8b\x46\xcd\xdc\x9a\x8a\x3f\x85\x48\x62\xed\xd0\x2c\x3e\xbb\x39\x4a\x4e\x5d\x3b\x94\x7e\x7c\xb3\x2f\xf5\x70\x4b\x5c\xca\x3c\x03\x3a\x9e\x78\xe2\x09\xb1\xbd\xbd\x2d\xf7\xf7\xf7\x75\x1d\x39\xca\x49\x4a\x29\x5f\x7e\xf9\x65\x91\x24\x09\xee\xbb\xef\x3e\x19\xc7\xb1\x1e\x5e\x05\xd8\xf0\x48\xa9\x34\xf5\x70\x9d\x3e\x86\xc1\x67\x16\xf4\x90\x5e\xac\x8d\x63\xfe\x5d\x54\x79\x30\x26\x93\xcb\x99\xaf\xa0\x11\x1e\x0a\x31\xa0\xc5\x63\x84\x64\x9e\xe7\xf2\xea\xd5\xab\x78\xf9\xe5\x97\xf5\x33\xce\xf2\x48\x54\xe5\x57\x9b\x5c\x01\x00\xb9\xb3\xb3\x23\x5f\x7e\xf9\x65\x74\xbb\x5d\xd1\xe9\x74\xe4\x89\x13\x27\x74\x19\x50\x96\x21\xd3\x65\xd1\x75\xc2\x7e\x79\x1b\xd3\xed\xd7\xc8\x20\x4f\x17\x49\x5e\x1e\xb8\xec\x99\x59\xe2\xad\x9f\x79\xa0\xcf\x7c\xc7\xed\xed\x6d\xf9\xbb\xdf\xfd\x2e\xa4\xd3\x9a\x64\xb0\x5f\xee\x26\x20\xe3\xeb\x80\x8a\x2e\xac\x43\x65\x75\x19\x6a\x74\xc4\x0e\x18\x0c\x0c\x13\x15\xcf\x15\x40\xaa\x98\xed\xcc\x87\x84\x74\xc7\x33\x13\xc4\x48\x41\x59\x71\x56\x58\x6b\x04\xf3\x8c\x3b\x55\xf2\xa8\x7c\x4f\x16\x87\x4a\x77\xfc\xc2\x52\xa7\x45\x8e\x8a\xe1\x1f\x55\x2c\x2b\xd5\xef\xdd\x72\x69\x9f\x26\x6e\xa9\x08\x99\x64\x63\x7d\x45\x78\x0b\xda\x58\x9d\xf8\xd9\x0d\x35\xf8\x26\x3f\xfa\x7e\xa1\x4e\xc0\xde\xb5\x51\xdc\x21\x10\xd4\x46\xdd\x85\xe2\xe5\x79\xf0\x91\x7e\x5b\xfe\x42\xfe\x7c\x24\xbe\x28\xa3\x12\x6a\xcb\x75\x1d\xe2\x20\xc0\x3c\xe4\xaf\x92\x1f\x36\x9f\x4b\xff\x95\x82\xa4\x98\xe7\x12\xcf\xe4\x61\x48\xd5\x03\x8a\xe5\x89\xba\x8d\x19\x00\x61\xac\x66\xef\x25\x6b\x8b\xba\x1f\x98\x97\xce\x78\x80\x0d\x47\x5c\x81\xa3\x04\x2f\xac\x3f\x99\x79\x27\xca\x06\xd3\xec\x8a\x3f\x69\xdd\x6f\xbd\x64\xfc\x72\xee\x44\x39\x59\x76\xf2\xcb\x95\x2b\xeb\x9b\x45\x57\x2d\x41\x87\xb2\xdb\xd2\xe9\x3f\x3d\xe1\x5e\x91\xe5\x5c\xb8\x96\xe6\xa4\x94\x32\x6a\x56\x17\xd8\x32\x0e\x3c\x4d\x1f\xe3\x29\x02\x48\xa2\x1f\x65\x58\x11\xb9\x4a\x4a\x36\x4c\x78\xf3\x94\x4c\x79\x56\x56\x56\xd0\xeb\xf5\x78\x9b\x92\x00\x10\x45\x91\xd8\xdc\xdc\x04\xac\xa2\x10\x65\x3d\x1b\x00\x0b\x20\xe9\xa7\x62\xe5\xd8\x7e\xf7\x81\x5e\x26\x4e\x16\xe7\xb4\x95\xb9\x2e\xb3\xad\x94\x2d\x99\x82\xfe\x8e\x16\xde\x9a\x79\x2c\x64\xbf\x31\xf1\xb2\x18\xd6\x05\xe6\x9d\x9d\x26\xe3\x0a\x35\xdd\x96\x4c\x13\x50\x45\xfb\xb0\x46\x5a\xd9\x72\x14\x90\x64\x74\x74\x75\x1a\x3f\x30\x98\xc5\x1b\x54\xb0\x44\x09\xb9\x4b\xc7\x4d\x99\x59\x1d\x85\x9c\x00\x20\x7f\xfe\xf3\x9f\xcb\xab\x57\xaf\x22\xcb\x32\xdf\x92\x37\x93\x4f\xcb\x39\x27\x53\xa5\xd4\x54\x29\x65\xf6\x56\x51\x4a\x0d\xcb\xeb\xbd\xf2\x6f\xd7\xbb\xde\x05\xb0\x4b\x44\x7b\x44\xb4\xcb\x9e\xed\x11\xd1\x9e\x0e\xcf\xe2\xf1\x27\xe7\xfa\x3b\xe3\x66\x69\x9a\xca\xed\xed\x6d\xf9\xe9\xa7\x9f\xe2\x27\x3f\xf9\x09\x97\x27\x8b\x32\x09\x0b\xc9\xef\xd9\x6c\x26\x7f\xfa\xd3\x9f\x62\x7b\x7b\x5b\xef\x3a\xeb\xb0\x1e\x25\x58\x31\x75\x03\x77\x22\x71\x68\x0f\x9a\x21\xab\xbb\x21\x11\xe9\xfa\x1b\x97\xcf\xcd\x92\x67\xd8\x61\x32\x33\x4c\xc4\x41\x8b\x52\x0a\x3b\x3b\x3b\x72\x7b\x7b\x5b\xfe\xea\x57\xbf\xc2\x95\x2b\x57\x42\xfa\xc3\x2f\x57\xc8\x35\xc9\xe3\x3a\x03\x1d\xec\xbd\x04\x9a\x37\xa0\x0b\x29\xa8\x36\x2a\x07\x1e\xda\x33\x1d\xdf\x52\xe8\x05\xeb\x02\x05\xa1\x81\x05\xa7\x2b\xc9\x48\x28\x3b\x66\xee\xbc\xe7\xa2\x51\xd3\xcf\x9e\x55\xea\x4f\x2e\xd4\xef\xf8\xbd\x5d\x91\x64\xd3\x00\x50\x0a\x4a\x6d\x3d\x5b\x43\xd1\x78\xd5\x95\x51\xee\x13\xc0\xea\xc6\x41\xb3\x7c\xb8\xcc\x73\x8b\x80\xc5\x45\x50\xa9\xff\x9e\x87\x0b\x75\x1e\x3f\xed\x10\xc3\x53\x87\x74\xf9\x7b\xfe\x5b\x77\xdd\x66\x89\xe8\xf8\x7c\x17\x6a\x63\x75\xe0\x23\x14\x77\x88\xad\x09\xdd\x2f\x0a\x54\x42\xe1\x2b\xf5\xcd\xbf\x33\x67\x19\xcb\xf7\x82\x94\x8a\xe3\x54\x6d\x98\x65\xd0\x46\x29\x28\xd6\x20\x75\x7b\xb5\xed\x85\x5b\xcc\x64\x96\x04\x31\xec\xe2\x50\x18\x7e\x4f\xe1\xfe\x5c\x50\x0f\x68\xbc\xe3\x32\x94\x3c\x4c\xd1\x2d\x0c\x3d\x62\xe2\x34\x68\x81\x9f\xd4\xac\xe7\x54\x78\xc8\x40\x07\xe5\x9b\xca\xb9\xec\x25\x8b\x83\x97\x88\xca\x1c\x1b\x3c\xa6\x51\x11\x59\x0f\x1c\xd0\xb0\x32\x19\x20\xc7\xd3\x72\x58\x21\x58\x56\x83\x08\xa4\x54\x4f\x64\x6a\x10\x65\xaa\x07\x28\x01\xb8\x96\x2a\x67\x3a\x3e\xff\xf9\xcf\x23\xcb\x32\xbc\xfd\xf6\xdb\x3a\x49\x01\x40\x0e\x06\x03\x7c\xfb\xdb\xdf\x06\x8a\xb6\xc1\x27\x89\x0a\xe8\x79\x08\x0a\x71\x2f\x13\x6b\xab\x93\xf8\x44\x2c\xc5\x9a\xad\x6b\x97\xed\xe0\x79\xe7\x85\x32\xc5\x2e\x6b\xc9\x82\x35\xe6\x4d\xe7\x97\x7f\x1e\x56\x65\x9c\x9d\x71\x18\x1c\x78\x72\x15\xba\xfe\x0b\x20\x13\x4b\x5a\x1b\xcc\xa2\xe3\x2b\xb3\x68\xb3\x23\xe9\x93\x79\xa4\xcc\x2e\xc3\x65\x5d\x99\x3e\xfb\xec\xb3\xcf\x22\xcb\x32\xbc\xf5\xd6\x5b\x4e\x1d\xf9\xbf\x3f\xfb\xd9\xcf\xe4\x37\xbe\xf1\x0d\x71\xe4\xc8\x11\x99\x24\x09\x3a\x9d\x0e\x37\x9e\xf8\xc4\x68\xce\x2c\xe8\xe7\xba\x8e\x63\x62\x43\xb3\x08\x2b\x4f\x07\x1c\xf1\xe1\x1f\x3e\x1c\x04\x57\xc6\x18\xbf\x59\x96\xc9\xcb\x97\x2f\xe3\xa5\x97\x5e\xaa\x93\xb3\x21\xd7\x24\xc3\x42\xf2\x9f\x1b\x40\xf8\xb7\x7f\xfb\x37\xf9\xd7\x7f\xfd\xd7\xa2\xdb\xed\xca\x5e\xaf\x87\x28\x8a\x50\xe6\x87\xb7\x4d\x5f\x26\x9a\xf2\x7b\x75\x62\xd2\xe0\xd3\x19\xa8\x3a\xff\xd2\xa9\x27\xbd\xd8\x44\x29\x85\xf1\x78\x2c\x01\xe0\xc7\x3f\xfe\x31\x46\xa3\x51\x53\xb9\x43\xe5\xaf\xbb\x5e\xc4\x80\x0f\xc5\x29\x00\x77\x8e\x4b\x48\x29\x85\x12\xab\xf3\xcf\x05\xb6\x71\xdc\x02\x01\x50\x0e\x15\x95\xe0\x05\x70\x0c\xc7\x22\x0e\x40\x8f\x85\x33\x29\x56\xd9\xc6\x9a\x0b\x23\x4b\x7d\x97\x69\x3a\x1e\x89\xcb\x76\x4b\x83\x1a\xbf\xae\xf0\x2f\x44\xbf\x47\x41\x7b\xe9\xeb\xad\x93\x0b\x0b\xc5\xac\x26\x31\x54\x1c\xaf\x03\x76\xed\xd7\x61\x1d\x80\xa9\xfb\x80\x6d\x28\xb6\xcd\x8f\xff\x3e\x14\xa6\xee\xfa\xa0\x61\x9a\xc2\x2e\xea\x9a\x40\x4c\x53\xdc\x21\x20\x56\x07\xc2\xfc\xf0\x4d\x2c\x55\x13\xd0\xe2\x8a\xc0\x80\x16\x2a\xe6\xb8\xc4\x22\x43\x12\xcf\xd5\x06\x14\x84\x85\x17\xa1\xfd\x82\x8c\xa6\xb5\xd4\x83\xa7\xd0\xcc\xa4\xd9\xc0\x3c\x2c\x7b\x46\x8f\x1d\x52\xb0\xc0\x5d\xaf\xda\xe3\xef\xc8\x79\xa7\x13\x73\xcf\x09\x02\x78\xc7\xd3\x0a\x9f\x6f\x14\x67\x97\xee\xea\xbc\xb1\x62\x68\x10\x02\x38\xec\x91\x39\x44\x91\x97\xd1\x17\x06\x2c\x6d\xf7\x74\xe8\x9a\xe1\x5f\xd3\x89\xd9\x1e\x30\xbe\x9c\x28\xeb\xd5\x6c\x80\x27\x91\xc4\x73\x35\x10\x19\xfa\x50\xc5\x52\x52\x54\xcf\x2d\x32\x7b\x96\xa0\x59\x59\x99\x6b\x6f\x3e\x42\xd2\xc9\xa9\x37\x98\x45\x9b\xcb\xb3\x28\xbc\xb2\x8c\xdc\x5f\x73\xeb\xc9\x2f\xfd\x96\xbc\x30\xa6\xda\x74\xdd\x33\x30\x44\x3c\x0c\x8f\x85\x0f\xed\x99\x39\x35\xfa\x1d\x4c\x1d\x0a\x85\x5e\x3f\x15\xc7\xd6\xc6\xf1\x7d\x4b\xa9\x78\x6f\xbe\x94\x8f\xfd\xf9\x25\x7a\x9e\x4b\xc9\x54\x35\xb1\x12\xba\xae\xe4\xcf\x7e\xf6\x33\x00\x90\x5f\xf8\xc2\x17\xf0\xc8\x23\x8f\x80\x29\x64\x13\x6f\xd9\xaf\x32\xb2\x2b\xbe\xfc\xef\xe2\x4c\x45\xd0\x69\x7a\x6d\x44\x86\xfe\xd8\x30\x12\x5f\x15\x6a\xf6\xe2\x52\x4a\xc9\x4b\x97\x2e\xe1\x17\xbf\xf8\xc5\x41\xe5\xd9\x22\x06\x58\x53\x58\xfc\xe0\x07\x3f\x90\x00\xc4\x8b\x2f\xbe\x88\xbb\xef\xbe\x9b\xeb\x15\x59\x96\x9f\x97\x57\xc7\x2f\x00\xf8\x75\x01\xf6\x2c\xb8\xc7\x98\x07\x62\xf4\x31\x17\x52\x4a\x89\xf9\x7c\x8e\x7f\xfe\xe7\x7f\x0e\xc9\x57\x13\xfe\x0f\x70\x21\x20\xb7\x88\x81\x5e\x39\x64\x31\x94\x99\x36\x45\x6a\xde\x97\x15\xc0\x59\x96\xd0\x44\x5d\x90\xa9\x60\xd7\x2a\x2c\xc2\xf0\x1b\x2b\x08\xcb\x70\xcc\x1f\x67\x69\x3c\x69\xa7\x05\xaa\x1f\x2e\x90\x9e\x99\x61\xcf\x3a\x3f\x79\x52\x84\x0b\x89\x32\xca\x62\x99\x1d\x55\x3a\x02\x7c\x17\x1a\x2e\x2b\x5d\x53\x3d\x57\x40\x61\xe0\x5d\x28\x0e\xdf\x85\xe2\x59\x34\xee\xba\x67\x3e\x30\x08\xfd\xb6\xe5\x45\xbb\xb6\x3c\xd5\xc5\xed\x5b\x3c\x75\xf9\xa8\x2b\x7b\x28\xee\xa6\xf4\xfc\xb0\x3c\x0f\xe6\x9e\x31\x8c\x56\xa8\x2a\x88\x28\x53\x3d\x91\x63\x0d\x40\x6c\xad\x67\x1f\x34\xc0\x6d\x84\xa8\xb6\x3b\x2a\xfd\x28\x15\x52\x43\x2c\x9c\xc7\x36\x6a\x45\xcd\xbc\x38\x80\x41\x03\x29\x0b\x30\xbc\x4d\xe9\x9c\x3c\x59\x20\x6f\xf7\x3c\x73\x35\xa8\x39\x37\x88\x58\x78\x1d\x88\x15\xce\x4e\x46\xad\xa0\x15\x1b\x8c\xc5\x67\x98\x2a\x07\x94\xb9\x67\x15\x99\x5c\x52\x55\xbe\x54\x64\x4d\x91\x4a\x2c\x72\x35\x88\x32\x39\x10\x32\x8a\xa5\x70\x26\x39\x6a\x83\x4c\x2b\x82\x50\x9f\xad\x33\x40\x74\x1c\x31\x80\x78\x90\x46\x83\x23\xc3\xe4\xde\x5e\x4e\xc7\x04\x28\xb1\x6c\x9a\x0b\xc2\x2c\xb8\x62\xbb\x28\x33\x30\xa8\xeb\x92\xd9\x74\xe0\xc8\x85\x6d\x91\x53\xa9\x52\x2e\xdf\x14\xbc\xb4\xbd\xb6\xe7\x90\x81\x00\x92\x4c\x6c\x1e\x9a\x45\xc7\x97\xd3\x68\xb0\xb7\x94\xef\x52\xb1\xca\x45\x0f\xab\x18\x03\x95\xdc\xd5\x95\x21\x25\x54\xb9\x7e\xe5\x95\x57\x30\x9d\x4e\xf1\xd4\x53\x4f\xf1\xe7\xdc\x28\xd0\x20\x46\xef\xb8\xcb\x4f\xd9\x06\xf3\x03\x16\xc6\xef\xff\xd2\x8b\x9b\xff\x71\x50\x00\x00\xf2\xdc\xb9\x73\x78\xfd\xf5\xd7\x17\x51\xcc\x6d\xc6\x9e\xff\xfc\x20\x6c\x8d\xfc\xd1\x8f\x7e\x04\x00\x78\xee\xb9\xe7\xc4\xa3\x8f\x3e\xaa\xfd\x64\x08\xcb\x2e\x00\xee\x70\x25\x58\xf9\x98\x2e\xf2\xe5\x9b\x53\x06\x22\x12\x5b\x5b\x5b\xf8\xe1\x0f\x7f\xd8\x64\xac\x35\xe9\xaf\xa6\x6b\x3f\xbf\x6d\xf5\x17\xd2\x09\xad\x67\x15\xb5\x45\xe2\xdc\x73\xf6\xa1\x2d\x1e\x82\x45\x84\xac\x3f\x5a\x66\x04\xd6\x2a\x02\xaa\x42\x07\xe0\xf2\x8e\x2a\x42\x4a\x31\x8a\xda\x3c\x03\xef\xcb\x8c\xbe\x66\xef\x3c\xb6\xbb\x9a\x26\x8c\x7f\x59\x07\x49\x6a\x2c\xc2\x3a\x05\x1a\x7a\xbf\xa8\x6b\x02\x26\x7f\x2c\x57\xd7\x40\x9b\x80\x08\x10\xee\xa0\x75\x54\xae\xef\x42\x71\xfb\x79\xf0\xe9\xd0\x10\x3d\xea\xe7\xd7\x4f\xa3\xc9\xd5\x81\x97\x8a\x1f\x0f\x9c\x73\x6b\x51\x90\x52\x82\x72\x24\x50\xca\x2c\x83\x76\xf4\xb9\xbf\x94\xc3\xa0\x15\x77\x18\xa5\xd2\x9c\x18\xf0\x70\xa8\x0c\xd4\xb4\x77\xab\xb5\x42\x5e\xad\x32\x33\xec\x89\xe7\xd7\xd1\x6a\x60\x96\x7c\x28\x3e\x96\x39\xe5\x7a\xb6\x6f\x98\xb5\x60\xc2\xba\x89\x72\xe0\x66\x60\x97\x8e\x4e\xfb\x37\xcc\x0a\x8f\x5c\x2f\xa3\xe6\x99\xe2\x1e\x00\x3b\x2f\x88\x40\x0a\xb1\x90\x48\xc0\x16\x0d\x94\xae\xc2\x20\x07\x9c\xdf\x16\xb9\x62\x35\x2b\x3e\x92\x8c\x06\xcb\x69\xb4\x11\xe5\x62\xa0\xeb\xd8\xb0\x5e\x8a\x9f\x92\xed\x12\x50\x1a\xba\xb8\xec\x8a\x65\xcf\x34\x94\x24\xf6\x9c\x7f\x18\x6e\xbc\xb9\x40\xb6\x30\xda\x94\x47\x8f\x99\xb9\x4d\x3c\x0e\x00\x91\x42\xbf\x97\x45\x9b\xbd\xb9\x58\x81\x5d\x9a\x2c\xbc\xbf\x3a\x60\xd7\x66\xdc\xc8\xd7\x5f\x7f\x5d\xbc\xf5\xd6\x5b\xf2\xc4\x89\x13\x78\xe1\x85\x17\xf8\x70\x48\x13\x5b\xea\xfc\xd6\xc8\x5d\x5f\xce\x38\x7b\x6e\x05\xfc\xe1\x95\x57\x5e\x41\xb9\x85\x3f\x4f\x83\xfb\x6b\x92\xdd\x21\xb9\x52\x07\x12\xda\xe4\x9c\x71\xe7\xce\x9d\xc3\xef\x7e\xf7\x3b\x79\xe6\xcc\x19\x3c\xf7\xdc\x73\x21\x26\x3f\x08\x08\x6a\xd8\xff\xba\x72\xe0\x7f\xfe\xe7\x7f\xf0\xdf\xff\xfd\xdf\xfc\xa4\xeb\x50\x39\x42\xe5\xd7\x71\xb6\x01\xb3\x50\x79\xdb\x74\x56\x05\xa4\x85\x76\xce\x6d\xb2\x32\x17\x56\x88\x75\x74\x6e\x71\x72\xa5\x16\x58\x8c\x51\x61\x32\x11\x60\x7d\x8f\x47\xa1\x3c\x4b\xa3\x46\x08\xc3\xf8\xe1\x96\x0c\x1f\xcf\xb5\x7e\x2a\xac\x8f\x9f\x99\xb0\xdc\x32\x6c\x8b\x6b\x2d\x55\x69\xb8\x1a\x77\xa7\x00\x65\x91\xf8\xea\x50\x72\xdd\x7b\xde\xd0\x16\x41\xbc\x07\x01\x49\x07\x6d\x3b\x3e\x1b\x52\xf7\xcc\x7f\xbe\x48\x7e\xff\xd0\xef\x51\x0b\x64\x6a\x98\x45\xab\xc4\xa4\x8a\x49\x52\x02\x33\x33\xc1\x3a\x9f\x2d\xb4\x77\xa1\x15\x3a\x7e\xe0\x32\x00\x53\x56\x21\x16\x53\xfb\xd5\x40\xa9\xfa\xde\x2a\x40\xb3\xeb\x4a\x25\x3e\x07\xe5\x58\x5c\xc2\x6f\x15\xd8\x6a\x1e\x8b\xb8\x94\x13\x3f\x03\x21\x4e\x84\xf0\xfa\x5b\xa9\x86\xcb\x0e\xcf\x87\x79\x4c\xbe\x58\xb9\x42\x6c\x8a\x06\x48\x4a\x11\x53\xe8\x16\x09\x95\xac\x83\x80\x44\x0c\x19\x5c\x52\x5a\xa6\x55\x37\x34\x05\xb1\xb9\xb9\x89\xaf\x7e\xf5\xab\xfa\x5e\x7a\x61\x4d\x5c\x91\xa2\x5e\x27\xa7\x01\x01\x89\x2e\x97\xa9\xe3\x72\x88\x86\x1f\xae\xcd\x87\xdf\xf8\x46\x81\x64\x6a\x52\xb7\xbb\xb2\x2c\x6c\xf2\x90\x1d\x55\xb4\x32\x8f\xc1\x45\x47\xfe\x55\x90\xb1\xff\xdd\xcb\x00\x42\x51\x92\x64\xb4\xd6\xcb\xc4\x40\x48\xc4\x39\x99\x23\x0c\x7c\xb0\x87\x27\x9e\x78\x02\x00\x44\x39\xcf\xa5\x0e\xac\x38\xf5\x98\x65\x99\xcc\xb2\x0c\x1f\x7c\xf0\x81\xd8\xde\xde\x96\x83\xc1\x00\xdf\xfa\xd6\xb7\x42\x0a\xbf\x16\x24\x70\xa6\x41\x85\x0f\xb9\xf5\x95\xb9\x93\xa7\x9f\xff\xfc\xe7\xf2\xd6\xad\x5b\x18\x8d\x46\xc8\xf3\xfc\x20\xb2\xab\x0e\xb0\xf9\xae\xae\x1e\x9a\x8c\x23\x00\x40\x59\x3f\xe2\x9d\x77\xde\xc1\xd5\xab\x57\x4d\x98\x28\x8a\xf0\x57\x7f\xf5\x57\x2d\xd9\x6b\x76\xff\xe7\xff\xfc\x1f\x59\xc6\x89\xd9\x6c\x86\xe9\x74\x5a\x27\xdf\xeb\x64\x6d\x13\xb0\x3c\x08\x6b\x13\x72\xc1\xb8\x43\x3b\xe7\xb6\x59\xf1\xb5\x09\x6a\xba\xce\x9d\x1c\xeb\x6c\xe8\x54\x58\x15\x28\x56\x15\xf1\x25\x9a\xae\xb3\xa7\xbc\x3a\xaf\xb4\xec\x09\x48\x74\xdf\xae\xb2\x79\x32\x79\x33\x16\x4d\xe1\x91\x98\xe5\xc6\x84\x02\xb3\x02\xfd\x33\x8d\xac\x5d\xab\x8a\x55\x1a\x64\x96\xee\xe9\x34\xda\x50\x6e\xa8\x1e\x9b\x3e\x7e\x9b\x52\x6e\xb5\x64\x50\xef\x16\xed\x98\x8d\x88\x7e\xc1\xf8\xb9\xbb\x93\x06\xdb\x16\x67\x93\x9f\x26\xe4\xdf\xf6\xbc\x2e\x2e\x01\x40\x7e\xfd\xeb\x5f\xc7\x60\x30\x00\x00\xde\xde\x01\xd8\x95\x16\xe5\xf1\xf2\x31\xa9\x62\x5b\x77\xee\xaa\x0a\x1c\x56\x63\x54\x00\x35\xf3\x4a\xcc\x9f\xd7\xf0\x9d\xa1\x11\xbf\x64\xcc\x58\x70\xe3\x24\x37\x0c\x9b\xef\x50\x1d\x9e\x08\xb0\x22\x3a\x4b\xe5\x64\x5f\x67\xc9\x31\xc0\x26\x00\xfb\x65\x85\x3b\x44\x05\xf2\x62\xb6\x95\x50\x07\xb6\x78\xac\x16\xc0\xf0\xe7\xc1\x45\xd1\xe6\x79\x09\xb8\x12\xa1\xd0\x25\x8f\x6d\xd1\x7f\x0d\x73\x5b\x64\x1c\xc7\x95\x73\x89\x02\x7f\xb1\x50\x94\xc4\x92\x7a\xa2\x38\x5c\xd6\x99\xf7\xcc\x59\x16\x5d\x06\xbb\x58\x80\xcf\xf7\xab\x66\xa0\x32\xdc\x44\x55\x6f\x4e\x2d\x31\xc0\xa9\xbf\xeb\x42\xc3\x6a\x0a\x71\x2c\xa9\xd7\xc9\x45\x5f\x28\xf2\x87\xd4\x78\xd9\xe5\xf2\xf2\xb2\x58\x5a\x5a\xe2\x32\xad\x4e\xce\x81\xbd\x07\x00\xcc\xe7\x73\x79\xeb\xd6\x2d\xec\xed\xed\x89\x1f\xfd\xe8\x47\x12\x00\xbe\xf9\xcd\x6f\xea\x09\xaa\x4d\xec\x0b\x38\x93\x12\x60\x17\x1c\xa7\x94\xc2\x7c\x3e\x97\xff\xf9\x9f\xff\x69\x9e\x5d\xbf\x7e\x1d\xf3\xf9\xbc\xb1\xcf\x07\xf2\xce\x5d\x1d\xb3\x12\xaa\x87\xba\xb8\x1b\x89\x83\x34\x4d\xf5\xb9\x48\xc6\x4f\x39\x9c\x74\x50\x63\xd8\xb8\x9b\x37\x6f\x72\xb0\xc2\xd3\x6d\xca\x8b\xef\x16\x65\xd3\x7d\x3f\x07\x31\x84\x4d\xb8\x26\xc6\x25\x84\x6a\xeb\x94\xad\x51\x6a\x6c\x1f\x03\xc7\x99\x89\x8b\x70\xf7\x71\x01\x18\x20\x30\x1d\xc9\xf6\x3e\x8f\x69\xe6\x11\x72\x14\x02\xd3\x3d\x9d\x8e\xe9\x59\x4a\xbc\x83\x12\xa3\x51\x3d\x41\x6b\x05\xae\x2a\xd3\x76\x2d\x15\x3e\x54\x14\x60\x5c\x9c\x8a\xf7\xc6\x15\xb9\x6b\x43\x9d\x6d\x9d\xdd\x8f\xb7\x89\x49\x69\x72\x75\xe0\xa8\x0e\x6d\x2f\x0a\x3c\x0e\x62\x5d\xd4\x75\x90\xb6\x32\xf8\xef\x9b\xee\x9b\x3a\x48\x53\x99\x6a\xf3\x73\xf7\xdd\x77\xa3\xd3\xe9\x54\x56\x11\xe9\xb6\xee\x82\x17\xb3\xfd\xbf\xe3\x0a\xc5\x69\x1b\xb9\xd3\x9e\xc0\xda\xbd\x06\x2b\x60\x43\x20\x9c\xde\x0f\xc5\x0b\x07\x07\x31\xa5\xee\x0e\x93\x52\x25\xa0\x85\xeb\xfc\x96\x83\x82\xe0\x8a\x24\x1f\x48\x70\x56\xc1\xc6\x66\xe9\x19\xd3\xcf\xfc\xc2\xf2\x42\xbb\x25\xb2\x13\xe7\xfd\x7a\x22\x37\x4d\x9d\x06\x34\x90\xd2\xc3\xc6\x7a\x67\x14\xb6\x39\xa6\x52\x82\xa4\x8a\xa1\xec\xaa\xa2\x32\xea\x56\x0a\xbf\xc1\x9f\x0b\x5c\x8a\x53\x7b\xfb\x00\x62\x3d\xcc\xc5\x27\x38\x73\x03\x89\xbd\xf5\xbe\x3f\x2a\x23\x8b\x3e\xf3\xe5\xd4\x13\x55\xdb\x81\x3b\x14\x55\xfa\xf5\xbe\x93\x03\xec\x88\xe5\x4d\x21\x89\x24\x0a\xf0\x85\xca\x7e\x37\xbc\xdc\x8b\xf4\xfb\x3a\x03\x0e\x00\x84\xde\x33\x05\x00\x7e\xf1\x8b\x5f\xf0\xa1\x23\x3c\xfc\xf0\xc3\xfa\x50\x53\x27\xad\xb6\x61\xbd\xcb\x97\x2f\xcb\x77\xdf\x7d\xd7\x66\x48\x4a\x5c\xbd\x7a\xf5\x0f\x35\xb0\xb8\x3b\x88\x61\xe5\xeb\xda\x83\x1a\x9e\xc6\x35\x94\xc1\x4f\xa7\xc9\x1d\x04\x50\xf1\xfc\x35\xe9\xa8\x45\xe4\xea\x1d\xe9\x92\xb6\xb3\x8a\xea\x84\x7d\x48\xf9\x38\x74\xb9\xf7\xcc\xa5\xf4\x0a\xc6\x45\x68\x8a\x93\x4f\xb6\x53\x8a\x09\xdb\x00\x45\x6b\xdf\xf9\xd6\x19\x9c\x38\xc8\x98\x8b\x6e\xde\xfc\x78\xbc\x28\xec\x7b\xb8\x1d\xc1\x79\x5d\x2e\x85\x56\xa4\x78\x7d\x18\xe6\xe5\x8f\x30\xc7\xa5\xee\xa3\xd6\x29\xe0\xba\xb0\x75\x02\x15\x58\xbc\xa1\x35\xb1\x3c\xa1\x7c\x23\xf0\xae\x0e\x40\xd4\xf9\x0b\xb9\x50\x1c\xfa\x7a\x11\x61\x59\x97\xd7\x50\x3a\x75\xa0\xbd\x36\x5f\x7c\x75\x03\xf3\x5b\xb0\x8d\x25\xeb\x62\xfd\xc2\x51\x58\xa8\x28\x61\x38\x0d\x4e\x05\xfc\x39\x9e\x1c\xbf\x56\xe1\x39\xe9\xf8\x28\xa8\x1a\xd4\x49\xcb\xf4\x2e\x03\x32\xfc\x0e\xe2\x69\x50\x1b\xd0\x8b\xb8\x08\xcb\x57\xb8\xd8\xa1\x0c\x6f\x75\x0c\xb8\x22\xd5\xf3\x38\x8a\x6b\x3e\x00\xe5\x4c\xcc\x65\xca\xdd\x96\xd1\xa9\x85\xf2\x65\x25\x63\x3c\xcb\xc5\xf6\x0c\xea\xc0\x80\x85\xbb\x10\x5b\x53\x5c\x97\xbb\x85\x0b\x49\x09\x29\x8a\x35\x70\x84\x53\x17\x0c\x3c\x94\x6c\xb3\xc3\xc2\xe8\x22\x94\xe0\x45\x97\x84\x9f\xbc\xad\x27\x6d\x3b\xb2\x4b\x83\x1d\x26\x4f\x89\xa5\xc1\x9d\x66\x61\xec\xc4\x71\xf0\x1a\x14\xa4\x48\x08\x90\x3d\x79\xd8\x93\xeb\x07\x70\x75\x6c\x44\xe8\x3d\xde\x7f\xff\x7d\xe7\x7e\x32\x99\x88\x8f\x3f\xfe\xb8\xe2\xaf\xcd\xdd\xb8\x71\x03\x9f\x7c\xf2\xc9\xa2\x61\xee\x08\x44\x78\xae\xcd\x30\x6d\xba\x5f\x84\xe1\xf0\xc9\x83\x26\x83\xb3\x2d\x6f\x07\x95\x9f\x6d\xf1\xdf\xc9\xbb\x45\xeb\xaa\x91\x71\xa9\x63\x57\x7c\xbf\x46\xe1\xf0\x86\xdc\x30\x2e\x6c\xa9\x67\xd6\x41\xc3\x34\xa8\x67\x45\xc1\xb7\x1e\x3d\xff\x36\xea\x60\x5c\xca\xb9\xb7\x79\x00\xf4\x58\x30\xdb\x61\xb4\x26\x1e\xaf\x08\x07\x71\x07\xf9\x50\x21\xd7\xd4\x68\x16\xfe\xe0\xec\x79\x88\x75\x58\x24\xee\x36\xe5\xef\x03\x15\xff\xd9\x9d\xe4\xd3\x4f\xbf\x2d\xbd\x36\x17\x02\x53\x8b\xa4\x1f\xf4\xeb\x83\x75\x2f\x9f\x8e\x7f\x6d\xd1\xba\x0b\x90\x59\x5c\xc5\xf8\x89\xd7\xc0\x3d\x5f\x8a\x31\x06\x81\xc9\xaf\xbe\x73\x15\x60\x95\xda\xf0\x9f\x38\xe4\xa3\x97\xc9\x9a\x11\x0b\x57\xc3\xd6\x7a\x72\xf3\x68\x26\xe8\xd6\xa4\xad\x82\xf1\x54\x99\x22\x4f\xc1\x96\x8c\x8c\x7e\x19\x9a\xd3\x63\xc1\x82\x32\xf2\x47\x6f\xad\x5f\xf9\x6e\x07\x55\xce\x21\x00\xc3\xff\xbc\x5c\x37\x38\xc3\x1a\xc1\x4a\x26\x62\x61\x6d\x81\x4d\x00\x3d\xc9\xb7\x1a\x8f\x0b\x48\x78\x1b\x6c\x21\x2a\x6c\xdd\x92\x82\x84\x82\x6a\x2c\xd7\xc2\xee\x4e\x18\x0d\x00\x10\x57\xaf\x5e\x35\x6c\xcc\x1d\xc6\x53\x27\x2f\xee\x34\x4f\x75\xee\x4e\x98\x90\x36\x96\xa2\x2d\xee\x45\xd3\x6c\x4b\xe3\xa0\xfa\xaa\x4d\x06\x1f\x54\x46\x37\xba\x3a\x65\xc5\xaf\x9b\x94\x5b\xc5\x69\xcb\xd3\x1b\xf3\xaf\x0c\xd9\x14\xcf\x5c\x43\xcd\xca\x7e\xa5\x87\x63\x1c\xff\xe5\xab\x92\x08\x75\x7b\xa7\x06\x3f\x7e\x47\xd4\xbb\xea\xfa\x74\xba\x2a\x13\x20\xdd\xa1\x15\xac\x29\x63\x90\x95\xbd\xf6\x65\x01\x05\x1e\xfa\x4c\x53\x83\x0b\x29\xfe\x36\xf6\xa1\xad\xc1\xf9\xfe\x0e\xf2\x3e\x04\x4e\xeb\xd8\x86\x36\x45\xaf\x7f\x17\x05\x59\x7e\xdc\x4d\x1d\x52\x06\xfc\x34\x01\x30\x2e\x54\xfd\x70\x75\x8c\xd1\x81\x41\xa0\x37\xa7\xab\xe2\x41\x09\x40\x11\x52\x00\x92\x4a\x3f\xa4\x54\x55\x75\x99\x46\x4c\x65\x3b\x47\xf9\xeb\xb2\x04\xfc\x30\x3e\xa5\x87\x55\x8d\x31\xc0\xac\xe5\x12\xd7\x38\xab\x89\x51\x3e\x34\x4d\x3c\x30\x61\xb8\x88\xc8\x46\xca\x94\xa4\x03\x68\x00\x96\x2e\xeb\x60\x3a\xad\x32\xbd\x3a\x00\xe2\x33\xa2\xba\xa4\xaa\xd4\xd0\x64\x82\x55\x6a\xc0\x3e\x57\x0a\xc4\x32\x47\x3c\xdb\xa5\xe2\x57\xba\x2c\x65\x7f\xb6\xdb\x35\x94\xf7\x44\xe5\x66\x92\x6d\xe6\x4a\xc5\xb5\xc9\xc3\xa2\xfd\x51\xf1\xe1\xa5\x50\x59\xb1\xff\x13\x99\xe1\x70\xd2\xb2\xc9\x41\xaf\x3c\x7f\x25\x73\xa4\xec\x67\x23\x55\x2e\x60\x27\xc5\x18\x35\x65\x82\xda\xb8\x94\x6d\x4e\xec\x3b\x99\x36\x08\x2d\x69\xcb\x38\xf4\x3f\x1d\x97\x89\x46\x01\x80\xcc\x8b\xc3\x65\xa5\x2c\x01\x9e\x27\xe3\x16\x01\x2f\x21\x39\xd2\xc4\x0a\x87\x5c\x1d\xbb\x7b\x90\x3c\xd4\x31\xd2\x4d\xb2\xe9\xa0\xe5\xf3\xcb\xb6\x08\x9b\x1c\xca\x03\xf7\xd3\x26\x1f\xdb\xc0\xf6\x22\xf2\xbd\x2e\x0f\x8b\xc4\xdd\x14\xce\x67\x87\x42\x6e\x91\xe7\xa2\xce\x63\x53\xe5\xfb\x19\x41\xe0\xba\xd1\x29\xf6\x07\xf8\x2c\x89\x62\x40\x42\x39\x72\xd0\x38\xd6\x99\x75\xc7\x31\x27\x7a\x28\x55\x01\x0f\x44\xc4\xa8\x52\x6d\x41\x96\xc2\x8e\x98\x84\x23\x80\x98\x75\xc3\xd3\xd2\x9d\x5d\xe7\xdb\x1e\x5b\xe0\x5a\xda\xa1\x49\xb9\x2d\xe3\xae\x4d\xa8\xf6\x8f\x89\xfc\x81\xc5\x40\xea\xa2\xef\xff\x90\x3c\x2e\xd2\x49\x9a\xde\xb7\x85\xf7\xf3\xdd\x46\x57\x1e\x94\x2e\xad\xf8\x09\xad\x2c\x33\x60\x86\x00\x29\x20\xa5\x30\xdb\x67\xeb\x40\x2e\x58\xe7\xe0\x82\x2b\x84\xf2\x99\xc6\xd0\x5c\x27\x19\xa0\xee\xe4\x85\x05\x53\x4c\x19\xb1\x77\x8e\x3f\xc5\xda\xb0\xa3\xf4\x8c\x39\x61\xcb\xe6\x17\x9c\xbd\x70\xa0\x85\xc6\x11\x7e\xba\x1a\x54\x79\xa0\xde\x0c\x5b\x30\x03\xc3\x01\x3b\x1c\x1c\x81\x31\xa7\x1a\x9d\x95\xa6\x4c\x01\xe4\x50\x62\x33\x65\xb2\x6f\x00\x00\x31\x36\x46\xe9\x7c\x92\x54\x84\x4c\x09\x64\x26\x9c\x93\xb7\x76\x03\x84\xcb\x9d\x1a\xff\x42\x0a\x95\x65\xf6\x6c\xb3\xa2\x5e\xca\x7f\xc6\x6e\xd2\xc0\x44\x83\x3d\xd8\xba\xd4\x9f\x83\x78\x40\x87\x06\xb3\x4c\x14\xab\x32\x38\x9f\xd3\x31\xc8\x74\x5d\xbb\xdf\xb8\x88\x9a\xdc\x78\x0a\x19\x2a\x73\xa1\xd2\x34\x56\xa9\x39\x86\x81\xc2\xdf\x33\x54\xfe\xf2\x37\xa4\x38\x0f\xca\x3a\x37\x3d\xab\x53\x8c\x8b\xf8\xe1\xcf\xea\x98\xe4\x45\xfd\x6a\xff\x75\x86\x52\x5b\xdc\xfa\xd9\x41\xcb\xd6\x14\x5f\x9d\x9f\xa6\x21\xa3\x50\xfa\x6d\xe0\xc7\x7f\x16\x02\x54\x4d\x69\x70\xbf\xa1\xb2\x4a\x3f\x50\x28\xa1\x50\xe5\xd7\x56\x8a\xbb\x9b\xad\x0a\xfe\xf2\x78\x94\x27\x14\x5d\x96\xd3\x55\xf8\xc1\xbe\xa1\xc1\x81\x23\x99\x99\xc5\x09\x36\x4e\xac\xec\x64\x35\x33\x4b\x0d\x5a\x58\xe8\x30\xee\x59\x1f\xc6\x90\x63\x16\x70\xf9\x4e\x94\xe7\x2d\x89\x86\x32\xd6\x3e\x63\x6e\x11\x44\xde\xd4\x41\x0e\x12\xc6\xef\x08\x07\x49\xbb\x2e\xce\x83\x52\xab\x3e\xbb\xa1\x7f\xeb\xca\x76\xa7\x14\x74\x28\x8e\x45\xeb\x6f\x51\xcb\xc8\x71\x41\xc0\xac\xdb\x85\x80\x34\x8a\xd1\x51\xff\xd6\x62\x36\x20\xba\x30\x87\x39\xc9\xe1\x29\x2c\xf7\xda\xa2\x69\x1e\x6b\xe9\x8f\xca\x78\x59\x92\xca\x28\x7b\x18\x94\xc0\x47\x9c\x8c\xe3\x60\x83\x2b\x4d\xde\x67\xcb\x30\x1a\x2c\x68\x74\xc5\xba\x61\x55\x01\xc3\xf6\x27\x3f\x29\x13\x56\x39\xf0\xa4\x12\x4e\xf7\x67\xae\xa6\x49\x69\x60\x52\x24\xe6\x0e\x8b\x70\xca\xc1\x96\xc9\xd4\x4f\xf1\x7d\xa4\x61\xb2\xfc\x34\xeb\x9d\xf0\xfd\xd5\xf9\xcf\x84\xca\x66\xb1\x1c\x4b\x81\xcc\x93\x6c\x45\x38\x5d\x77\x26\x42\x9d\x73\x97\x99\x53\xca\x65\x9b\x95\x53\x3c\x3d\x2c\xa6\x0d\x39\xeb\x87\xcc\x7b\x32\xfe\xf5\xbc\x17\x5f\xd6\xb2\x6c\x19\xbc\xa3\x48\x65\x69\xac\xc6\xb3\x58\xa6\xd2\xf3\xee\xb4\xf5\xb0\xbc\xe3\x7d\xbe\x4e\xb7\x84\xfc\xeb\x30\xa1\xe7\xbe\x22\xf5\xe3\xae\x8b\x8f\x3f\x0b\x85\x0d\xc5\xed\xbb\x3a\xb9\x17\xca\xb7\x2f\x83\x16\x05\x00\xa1\x34\x75\xb8\x45\x98\xe3\x83\xc4\x57\xe7\x0e\xc2\x66\xf1\x72\xf9\x71\x37\x95\xd9\x07\x2b\x4d\xdf\xd8\xf8\xad\xb3\x5e\x9b\x3e\x58\xed\x7d\xc3\x32\x60\x7b\x4f\x4a\x16\x74\xa9\x05\x1c\x56\xbe\xba\x4b\xff\x0a\x4b\x46\x87\xaf\x66\x86\x3f\xd2\xac\x0b\xf1\x77\xc4\xee\x89\xdc\x30\xca\xce\xea\xd7\x32\x97\xfc\x7c\x07\x05\x39\xca\x9c\xeb\xbd\x18\xc2\xc3\x62\x7c\xf7\xe0\xd2\x85\x1a\x53\x87\x32\xe3\x5b\x00\x00\x20\x00\x49\x44\x41\x54\x9b\xb5\x1f\x6a\xe8\x8b\x28\xdb\x3a\xeb\x20\x44\x8f\xb6\xc5\xd3\xd4\xc0\x43\x20\x84\xc7\x55\x87\xbe\x9b\x3a\xb0\x9f\x5e\x08\xad\x87\xe2\xf6\xd3\x08\xe5\xb9\x09\xb8\xb5\x75\x4c\x3f\xff\xc6\xbf\x3f\x54\xe4\xb4\x03\x00\x4a\x90\x2c\x87\x8a\xe0\xa9\x69\x17\x9d\x38\x4e\x59\x42\xb0\xb8\xad\x3a\xd3\x68\xb5\x12\x37\x6a\xba\xcc\x57\x79\xc7\x9b\x34\x8f\xd4\xa2\x26\x0b\xea\xfd\x74\x18\x20\xb1\xe9\xea\xb6\x1d\xca\xb9\xd3\x51\x0c\x00\xe1\x30\xc2\x49\xc2\x6a\x55\xab\x80\x79\x47\xd6\xef\x5d\x9a\xc5\x28\x60\x18\xc3\xa3\xca\x26\x14\x79\xf4\x32\xa9\x57\x33\x99\xea\x22\xa9\x88\x52\x29\x68\x56\x6e\x6f\x80\x90\x6b\x98\xc3\x54\x9d\xe4\x1a\x88\x23\x8d\x64\x3a\xea\xc8\x61\x46\x6a\xaa\xab\x53\x7f\x1f\x8b\x1d\xac\x31\x65\x97\x43\xf3\x52\xeb\xb4\x2c\x10\x33\x46\x19\x18\x28\x36\x67\x5a\xb1\x15\x67\x2e\x56\x64\x73\x05\xed\x81\x9b\xaa\x4c\x1b\xca\x02\x6a\xa5\x14\x14\x01\x99\x50\xd3\x69\x27\x1f\x4e\x3a\x72\xaa\xc8\x2d\xa3\xdf\xfe\xd9\xbb\x45\xe5\x92\xef\x16\xe9\x8b\xbe\xbb\x93\xb8\x7d\x30\xd0\xa4\xc4\xdb\x00\xd4\x22\xf9\xba\x13\xf9\xbb\xa8\x6b\x2b\x7f\x1d\x38\x6b\xcb\x43\x93\xff\x3a\xe0\xd7\xe4\x16\xd1\x27\x7e\xdc\xb5\x91\x34\x25\x72\x27\x4c\x80\x71\x7e\xa7\x96\x04\x48\x82\x84\x5d\x91\x63\xac\x06\x6b\x6d\xd8\xb0\xe4\xcb\x24\x36\x3e\xef\x84\xe7\x1d\xbd\x95\xb9\x04\x34\x55\xaf\x7b\xab\x0b\x82\x1a\xa2\x28\xf2\xa9\xf7\xe7\xa8\x2d\x7b\xdd\xe6\x47\x81\xeb\x26\x17\x6a\xe8\x4d\x88\xb4\x2e\xcd\xb6\x30\x4d\xf1\x2c\x6a\xbd\x84\xe2\xac\x4b\xa3\x2e\xce\x26\x86\x6f\xd1\xb8\x43\x7e\x17\x89\xfb\x20\x75\xe9\x58\x6b\xfe\x50\x91\xe3\x08\x52\x46\x94\xa9\x08\x63\x05\x48\xde\xb2\x98\xae\x0a\x38\x72\x95\x0d\xf3\x67\x87\x0f\x14\x7b\x59\xfc\x35\x35\x7d\x47\x51\xda\xa7\x2c\x45\x15\xce\x8f\xbf\x57\x00\xe9\x38\x9a\x52\x33\x9d\xd8\xa1\x80\xb8\x8e\xf6\x15\xb6\x65\x0c\x78\x78\x9d\xa6\x8d\xc3\x49\x43\xbf\xe2\x00\xc5\x61\x5b\x7c\x38\x57\x0a\x08\xad\xff\x01\xc8\x08\x99\x8c\x90\x01\xe4\x6f\x5a\x66\xda\x42\x4b\x7f\x36\xae\x6e\xf7\xd6\x69\x47\x4e\x6f\xf7\xe7\x3b\x69\x2c\xf7\xcc\x30\x9f\xce\x0a\xff\xf5\x8a\x48\xca\xd9\xce\xcf\x96\x84\x88\x55\x09\x99\xd5\x45\x9a\x50\xd2\x05\xf7\xc8\x35\xc7\x85\x8c\x3c\x3d\xac\x66\xfd\x14\xe9\x64\x42\x8d\x87\x49\x7e\x63\xdc\xc9\xc7\x80\x7b\xa0\x2c\x5f\xaa\xac\xf3\xe3\xd5\x51\x13\xf3\xdb\xe4\x7c\x0b\x3c\xa4\xf4\x16\x51\xb4\x8b\x80\x8e\x83\xb8\x3a\x03\x68\x11\x06\x69\x51\xf9\xd9\x14\x47\x5d\x5e\x9a\xe2\x6c\x03\x66\x6d\xe9\xb4\x85\x59\xb4\x5e\x17\xd1\x31\x4d\xef\x24\xb0\x18\x45\xdf\xf4\x31\x9c\x0c\xd7\x8d\xef\x56\xe6\x9e\xa0\x38\xeb\x87\x8b\x5d\xee\x2a\xe4\xa5\x23\xc3\xa8\x1a\x00\xd5\x4e\xe8\x3b\x7f\x32\xaf\x79\xc6\x04\x9d\x7e\x4a\xae\x27\xf7\xd2\x18\x87\x56\x9c\xe8\xf2\xb5\x8c\x8f\x2f\x32\xec\xe2\xd3\x8b\x8b\x0c\xc5\xd4\xb1\x0f\xa1\x74\x16\x19\x9e\x69\x8b\x3b\x74\xbf\x48\x3b\x6a\xa2\x2f\xeb\x68\xd5\xa6\x70\x75\x65\x09\xc5\xd1\x14\x77\xa8\x0c\x07\x89\xbb\xd5\x4a\xcf\x3b\x48\xf3\x0e\x0d\xe1\x4f\x00\x2d\x1b\x94\x33\xea\xa1\x4d\xdf\xd2\x55\xda\xa2\xe2\xac\x89\x47\x93\xf0\x89\xaa\xa5\x3f\x6d\x41\x2b\xf6\x8e\x42\x9d\x4b\x5b\x0f\x3c\x3f\xe5\x1f\x3f\x36\xc3\x84\xe2\xe7\x88\x29\x65\x34\x23\x67\x49\x6d\xb4\xf6\x1d\xb1\x88\x89\xe5\xdb\xb1\x16\x14\xef\xaf\x9a\x9a\x50\xf6\x9a\x23\x12\xa5\x82\x7e\x88\x4a\xc6\x4a\x1b\x25\x95\xfa\x35\x1d\x39\xcd\x63\x1a\xe7\x1d\x31\x56\xc2\xf9\x8e\x77\xa2\x4c\x9c\xb3\x7a\x94\x52\x46\x46\x8e\x3b\x72\x7a\xa3\x3f\xdf\xde\xef\xe6\x5b\xb9\x50\x53\x5b\x91\xf6\x97\xa7\x6e\xb2\x18\x02\xac\xf0\xaa\x00\x70\x48\x37\x5d\x5e\x9f\x61\xd1\x01\x2a\xc3\x77\xca\x8d\xdb\x47\x49\x92\x94\x1c\x25\xf9\xce\xad\xa5\xec\xfa\xb4\x23\xa7\xac\x5c\x75\xf5\xe0\xbb\x26\x43\xe5\x4e\xc2\x01\xed\xec\x46\x9d\x0e\x5b\x44\x26\xd5\x19\xe5\x75\x6c\x4d\x9d\x5b\x44\xc6\xea\x67\x8b\x82\xb9\x26\xff\x6d\xc0\xae\x49\x06\x87\xe2\x6e\xf3\xdf\xa6\x4f\xfe\x10\xff\x8d\x69\x2f\x82\xd6\xda\x40\x4c\x85\x11\xf0\xe7\xb3\x70\xfa\x9c\x5b\x04\x75\xc6\x66\x41\x7f\x6a\xdf\xd6\xd5\x29\x88\x5a\xa3\xd5\xf1\xc3\xad\xe2\xfa\x67\x3a\x36\x93\x07\x62\xc2\x01\x28\x37\xde\x32\x73\x5c\x0a\xbf\x35\x54\xb1\x47\x9b\x72\xeb\xa3\x8d\x45\x58\x84\xba\x0c\x85\x0b\xc5\x59\xf7\x7b\xa7\x71\xf3\x36\xd1\xc6\xd4\x2c\x62\x81\x34\xe5\xcb\x07\x6e\x6d\x4c\x4a\x53\xbe\x42\xac\x4a\x13\xa3\x13\xca\x4f\xc8\xbf\xf0\xad\x4f\xae\xb0\x00\x48\x05\x92\xf3\x84\x76\x8a\x95\x2b\xcc\x15\x0d\xca\x99\x13\xc2\xd9\x85\x4a\x73\x37\xfe\x18\xb3\xe2\x6c\x51\xcb\x68\x84\xd2\x9f\x9d\x98\x5a\x9a\xf8\x7c\xe2\x83\x1f\x37\x58\x18\xf6\x17\x9c\xb6\x61\x86\x23\xca\x7f\x7c\xa8\xcc\xf8\xd1\x50\xc8\xbe\xb3\xcc\x90\xce\x0f\x6c\x02\x7a\x72\xbc\x63\x9b\x68\x7f\x36\x33\x4e\xd9\x89\x0a\x60\x65\xca\xce\xae\x75\x06\xb5\x66\x57\x2c\xbe\xb2\x0e\x65\x44\x69\xde\xa1\x61\x1e\x23\x05\x48\x7a\x4a\xf9\x20\xca\xa4\xd2\x4e\x88\x9d\x3e\x8c\x82\x75\x19\xde\x5a\x9a\x7f\x92\x45\x72\xca\x03\xfa\x06\x9c\x95\x35\xf6\x9e\x57\x93\xf6\xeb\x84\x63\x55\xa9\x65\xac\xff\xdd\x2a\xcf\xc9\xad\x12\x8e\xed\x78\xbe\x32\xa1\xc6\x7b\xbd\xfc\xfa\xee\x52\xb6\x9d\x46\x2a\xf5\xca\xd5\x54\x0f\x77\xea\x0e\x12\xc7\xa2\x32\x26\xf4\x7c\x51\xb9\xa9\xaf\x0f\x22\x3f\xdb\xea\xc7\xd7\xab\x6d\x60\x6e\x11\xff\x07\x01\x82\x8b\x00\xf2\x90\xff\x3a\xc0\x78\xd0\x6f\xb6\x08\x96\x08\x39\x01\xb4\x1f\xb2\xa8\x15\x87\xaf\x10\xea\x98\x00\x89\x00\x75\xee\xed\x26\x2b\x15\x94\xe4\x42\x5c\x5b\x57\x05\x58\x60\x82\xb3\x42\xbd\xb8\x4e\x19\xeb\x93\xa5\xe7\x05\xe1\xf7\xb5\xf3\x65\x54\x8d\x70\x0e\x44\x44\xe5\x58\x94\x28\xb6\x71\x37\x08\x92\xef\x61\xd3\x34\xd7\x07\xed\x08\xbd\x62\xc5\xb5\x84\x39\x88\xe3\xdf\xf3\x0f\x11\x3a\x07\xe9\x2c\xdc\xdf\x41\xca\x72\x27\x65\x3e\x48\x98\x3a\x00\x79\x60\x57\x1e\xfb\xe0\x7f\xff\x42\x71\xa9\x62\xa3\xc2\x79\x97\xf6\x94\xa0\x14\xb9\xea\x3b\x8d\x92\x37\x4e\x7f\x5e\x98\x93\x88\x7d\xa0\x1c\xff\xf5\xf4\x23\xc3\x2f\xb0\x73\xba\x3c\xab\x41\xd9\xed\xfd\xbd\x42\xd9\xc8\x34\xbb\x02\x94\xbb\x49\x53\x35\x59\xd6\xb9\xfc\x1d\xfe\x0d\xe3\xc1\xe3\x09\xe6\x95\xd8\x23\xcf\x18\x60\x71\x99\xf3\x87\xbc\x49\xbe\x36\x62\xdd\x59\x81\x60\x5d\xeb\xec\x12\xa0\x04\xa6\x79\x07\x63\x19\x53\x0a\x82\xa4\x02\xbc\x18\x7f\xfe\x30\x48\x8d\x33\x3b\x86\x73\x10\x5b\xfe\x65\x00\x32\x10\xb2\x49\x47\x0e\x6f\x0c\xe6\x5b\xf7\xef\xaa\x9d\x6e\x86\x35\x5b\x9e\x70\x36\xb5\xf1\xe4\x17\x13\x08\x36\x17\x83\x4b\x2d\xbb\xc2\xbe\x6d\xc8\x3f\xaa\xf7\x0e\x8e\x2c\x9f\xcf\x62\xb9\x77\x7b\x29\xbb\x3e\xea\xe6\x7b\x05\x6b\x58\x94\x49\x83\xbc\x16\x20\x03\xb4\xcb\x9d\x3a\xff\x4d\xae\x49\x4e\xde\x49\x3a\x7f\x2c\xd9\xbb\x68\x98\x90\x81\xd6\xa4\x67\x5b\xe3\xfc\xfa\xd7\xbf\x2e\xf4\x11\x24\x81\x3c\x39\xee\x87\x3f\xfc\xa1\x7f\x1e\x53\x28\x5f\x6d\xee\xa0\x75\xdc\x64\x94\xfa\xef\x1b\xaf\x43\xc0\xa5\xae\xd2\xea\x98\x17\xfe\xce\xf8\xf1\x4f\x8a\xd6\xf7\x52\x9f\xf1\xc3\x22\x70\xc4\x26\xef\x34\xe4\x8e\xd9\x57\x40\x80\x6f\x7d\xa2\x5e\x08\x18\xca\xba\x7c\xe2\x5b\x2b\x26\xdf\x28\xa7\x08\xf3\x09\x67\xdc\x4f\xf1\x2b\x48\x41\x88\x16\x2a\xf0\x80\xcb\x04\xfd\x4e\x84\xc0\xbb\x83\x76\xa4\x10\x63\x11\xea\x24\x15\xd6\xac\x26\x0f\xfa\x9a\xc7\xed\xa7\x11\x12\x06\xfa\xb7\xce\x7f\x28\x6f\x75\x88\xbc\x2e\xef\xa1\x76\x1b\xaa\xd3\xb6\xfa\x6b\x8b\xdb\xdc\xbf\xf4\xd2\x4b\x78\xe1\x85\x17\xe4\x60\x30\x70\xea\xca\x59\x12\x0d\x92\x20\xc8\xf9\x92\xd8\xd5\x7b\xb9\x80\x94\x30\x00\xdd\x03\x20\xe6\xb6\x32\x6e\xa0\x7f\xab\xfb\xae\x98\x77\x95\xee\xc1\x28\x43\xb7\x91\x33\x05\x65\xd7\xde\x69\x43\xc0\x01\x05\xcc\x9c\x37\x7d\x92\x29\x41\x7b\x6d\xc1\x0c\xf1\x34\x6c\x40\xe8\x21\x20\xab\x58\xf5\xd6\xf4\xe4\x19\x20\xaa\x52\x1e\x17\x5a\x79\x77\x9c\x4d\x81\xf2\xca\xc1\x6a\x43\x83\x00\x36\xf9\x54\x0a\x9a\xe6\x1d\x1a\x16\x73\x5c\x82\x4c\xc9\x42\x2e\x00\x70\xb4\x82\x37\x00\x66\x16\xcb\xe9\xf6\x60\x7e\x6d\x77\x29\xbb\xb2\x3c\x8b\xee\xe9\xe4\xd4\xe3\x75\xe6\x7c\x7b\xa7\x2e\x1b\x36\xf3\xd4\xe1\x8a\x2b\xeb\x4f\xa1\x00\x2d\x75\x74\x0e\x5c\x43\x4e\x3f\x2e\x0e\xca\xb4\xdf\x30\x17\x2a\xdb\xeb\xe6\x5b\x37\xfb\xf3\x4f\xca\xf9\x2d\x99\xfe\xd3\xf5\xe4\xaf\x26\x7d\xfb\xed\xb7\x9d\xad\xf5\x59\xbd\x84\xe4\xdc\x22\xfd\x31\xd8\x9f\x4f\x9c\x38\x81\x47\x1e\x79\xc4\xf7\xeb\x5c\xff\xf6\xb7\xbf\xc5\xf6\xf6\x36\xcf\xc3\x22\xae\x2d\x5f\x4d\x65\x58\x44\x0e\xf9\xf5\xb0\x08\x38\x71\xe2\x58\x5d\x5d\xc5\xe7\x3f\xff\x79\xc7\x83\x7f\x04\x49\xdd\x7c\x2b\x00\xe2\x1b\xdf\xf8\x86\x73\x3c\xcf\x5b\x6f\xbd\x85\xcb\x97\x2f\x87\x64\xeb\xa2\xdf\x6a\x11\xbf\x07\x01\x31\x8d\xf5\xd7\xc4\xb8\x84\xd0\x50\x9d\xb2\x93\x80\x19\xdf\xe5\x96\x87\x71\xbc\x63\x97\x6c\x8b\xe4\x72\xd5\xc1\x05\xba\xf3\x04\x3a\xb2\x13\xa7\xf7\x0b\xb8\x2c\x0c\xef\xb3\xdc\x8a\x0b\x59\x2b\xd6\x90\xd4\x12\x83\x59\x86\x9a\x3a\xd5\x79\x02\x8a\x53\xae\xa5\x7b\x4e\x87\x3e\xbb\x83\x83\x36\x6f\x86\xfd\x22\x08\xb3\x0e\xb4\xf8\xfe\xfd\x0e\xd0\x04\x20\xfc\x34\x9b\x86\x60\x9a\xd2\x0e\x81\xd7\x45\xca\xd4\x94\x56\x9b\xff\xb6\x0e\x7e\x27\xa8\x5d\xdf\xb7\x95\xa7\x29\x6e\x5c\xbd\x7a\x55\xce\xe7\x73\xc1\x87\x06\x99\xbf\x92\x71\x51\x12\x84\x2c\x5d\x12\xb7\xf3\x98\xf6\xe2\xb9\xda\x80\x22\x61\xe9\xfa\x00\x18\xf7\xcd\x6c\xf2\x3d\xa0\x61\xa8\x07\xf6\x3d\x9f\xd8\x50\xf6\xa3\x6a\x3b\xb7\x81\x0b\xa5\xee\x9d\x8f\xc3\xae\x8d\x72\xf3\xa2\x75\xfc\x1a\x4f\xb6\xcf\x99\xe1\x08\x38\x07\x1b\x42\x69\xc0\x61\x3d\x94\xf9\xa3\x6a\x79\x78\xc1\xbc\x31\x13\x13\xa6\x7c\x60\x98\x07\x9e\x1f\x9d\x6f\x06\xb4\x14\x80\x3c\xa6\x61\xd6\xa1\xa1\x14\x54\x80\xca\xf2\x8f\x31\xc5\x8d\x0a\xef\xf6\xed\xdb\x38\x77\xee\x1c\x9e\x79\xe6\x19\xa0\x2a\x23\x0d\x68\x01\x90\x49\x42\xba\xdf\xcd\x76\xaf\xac\x4e\xdf\xd9\x18\xc5\xa7\x62\x19\x1f\xe7\x55\xc7\x87\x70\xdc\xb2\xd6\x6c\xff\x0f\xdb\x0c\xcc\xc1\x96\xac\x5e\x1c\x83\x8b\x7d\x17\xe3\x85\x5f\x57\xbe\x5b\x11\xe7\xa4\x23\x77\xb6\x07\xe9\xc7\x37\x97\xe7\xd7\xd2\x58\x4d\xe1\x82\x31\x1f\xe8\x81\x88\x70\xeb\xd6\x2d\xdc\xbe\x7d\x5b\x47\x5d\xa7\x08\x81\xf6\x7e\x6e\xae\x9f\x79\xe6\x19\xd1\xeb\xf5\x78\x7c\x58\x5f\x5f\xc7\x5d\x77\xdd\x15\x4a\xc3\x5c\x0b\x21\xe4\x70\x38\x74\xc2\xed\xee\xee\xe2\xfc\xf9\xf3\x07\x01\x32\x4d\xae\xce\x08\xd3\xf7\x7e\x1b\x3a\x48\xba\x8e\xdf\x13\x27\x4e\x88\x93\x27\x4f\x02\x00\x96\x96\x96\x70\xe2\xc4\x89\xa0\xe1\xec\xaf\xf0\xf2\x74\xb1\x00\x20\x8f\x1f\x3f\xee\x8c\x8c\x24\x49\x22\x1f\x78\xe0\x01\x01\x14\x47\x23\x5c\xb8\x70\xc1\x4f\x7f\x11\xc0\xd1\x56\xde\x45\xbe\x77\xc8\x55\xe2\x68\x1b\x2a\xe2\x09\x34\x21\x4b\x00\x46\x71\x3b\x81\xd9\xe9\xc9\x85\x7f\xb2\x43\x45\xfa\xf0\x33\x3e\xff\x85\x60\x11\x3f\xa7\x9c\xfd\x8e\xab\xca\x10\x66\xd9\x20\x78\x87\x0e\x6d\x6c\x6e\x9d\x63\x4c\xb2\x67\x4e\xbe\xf5\x7b\xcf\xfa\x29\x05\x44\x1c\x29\x4a\xa2\xe2\xfc\x19\x78\x40\xc5\xd4\x8b\x72\x8f\x56\xaf\xfb\x68\x07\x61\x51\x7c\xa1\x58\x87\x54\xfd\xf4\x78\x3a\x6d\x8c\x04\x02\xfe\x42\xf1\x34\xe5\xb1\x29\x4f\x8b\x30\x2e\xfe\xbb\x50\xdc\x75\xec\xcb\x41\xeb\xd9\x07\x30\x6d\xf9\xae\xc4\x13\x58\x89\xe2\xfc\xa9\x02\xb8\x0c\xb3\x84\x76\x92\x29\x8e\xa3\x18\x66\x2c\x03\xbb\x40\xba\x68\xbe\xac\x4d\x7b\x0d\xd1\xec\x33\xc4\x84\x92\x7b\xde\x57\xe9\x8f\xeb\x7e\x8f\x39\x54\xe5\xe4\x55\x3d\xe9\x56\x2b\x74\x55\x9e\x0f\x64\xfd\xb8\x56\x83\x65\x70\xbc\xe1\x22\x07\x60\x79\x26\xbb\x82\xe1\x74\xcc\x96\x05\xe5\x3f\x1b\xdc\xee\xdf\x62\x11\x96\xed\xdd\x9a\x95\x71\x00\x4a\xc9\x3e\x69\x40\xe4\x0b\x68\xcb\x08\x95\x79\x20\x13\x93\x99\xee\xa2\x04\xd2\x2c\xa1\xdd\xac\x2b\x6e\xab\xc8\x55\xc8\xde\xf0\xb6\xfe\xae\x15\x37\x99\x4c\xf0\xc1\x07\x1f\x68\xe0\x02\x0f\xf0\x18\xd0\x02\x20\x05\x21\x9d\xc6\x72\x78\x79\x6d\xfa\xc1\xdd\x7b\xc9\xa5\xa5\xb9\xd8\x8c\x25\xf5\x8c\x41\xc5\xbe\xb7\x59\x12\xcd\x65\x4f\x80\xe9\x32\xe0\x44\xe9\x36\x51\x95\x99\x95\xb8\xd9\x35\x42\xef\xcb\xb8\x73\x52\xe9\xad\xa5\xf9\x95\x4f\x57\xd2\x0f\x6f\xf7\xf2\x9d\x92\x31\x2c\xca\x62\xcb\x25\x3d\x39\xe7\xd7\x57\xa8\xbf\xb6\xf5\x49\xd1\xed\x76\xf1\xf8\xe3\x8f\x9b\x07\x9f\xf9\xcc\x67\x90\x24\x49\x48\xbf\x00\x56\x59\xfb\x8c\x8b\x3c\x7e\xfc\x78\xa5\x6f\xef\xef\xef\xcb\x6e\xb7\xab\x9f\x8b\x5f\xff\xfa\xd7\x75\x79\xaf\x73\x8b\x2a\xe0\x3b\x91\xf1\xdc\x09\x00\xf2\xf4\xe9\xd3\x62\x63\x63\x03\x77\xdd\x75\x17\xee\xb9\xe7\x9e\x90\x4c\x04\x60\x0e\x77\xe5\xcf\xea\x9c\xbf\x12\x4c\x1e\x3b\x76\x4c\x1c\x3b\x76\x0c\x00\xb0\xbb\xbb\x2b\x97\x97\x97\xc5\x74\x3a\xc5\x1b\x6f\xbc\xa1\xfd\x35\x31\x45\xf0\xee\x0f\xc2\x36\xd5\x3d\x6f\xac\xaf\x45\xce\x2a\x6a\x53\x08\x46\xf0\x6b\xc6\xa5\x69\x0b\x74\x05\x40\x16\x43\x45\x12\x5e\xe7\xf1\x0d\x0e\x67\xde\x21\x8c\xd8\x31\xef\xf4\xba\x04\xe2\xd6\x06\xb9\x71\x38\x09\x33\x61\xc6\x85\x42\xc5\x83\x47\x05\xf9\x8a\x85\x40\x22\x92\x14\x0b\x45\x71\x29\x14\x0d\xf3\x42\xf6\x54\x60\x9f\x71\x09\xd5\x1d\x10\xfe\x40\x75\x1f\x7a\x91\x86\x52\xf7\xc1\xeb\x04\x49\x5d\x3e\xda\xe2\xa9\x73\x4d\xe5\x69\x4b\xa7\x2d\x0f\x6d\x16\xc0\x41\xe2\xd6\xcf\x9a\x84\x4a\x5b\x7a\x41\xff\x2e\x50\x2f\x58\x97\x3c\xa1\xf1\x7c\x89\xb6\xd4\x10\x0f\x93\x44\xcf\x80\x04\x68\x20\xcd\x8f\x0b\x2c\x1d\xb7\xbc\x61\xfb\x93\x3f\x71\xdd\xf6\x35\x1b\xc8\x2a\x3a\x1b\x56\x95\x60\x42\x0f\x03\x15\xde\xcb\xf7\x1a\x00\x50\x01\x50\x38\x83\x61\x73\xa1\xcf\xcb\x71\x20\x07\xcc\x99\x43\x3e\x95\xc9\xd1\x93\x06\x0f\x8a\x0d\xe1\xe8\x8d\xe0\x2a\xe5\x75\x81\x56\xb0\x9e\x98\x81\x62\xea\x45\x87\x51\x70\x9e\x73\x5a\x82\xd7\x91\x8a\x30\x9d\xf7\xc4\xce\x3c\xa1\xa1\x24\xaa\x30\x09\x58\xac\x4f\x38\xc0\xd7\x9f\x90\x0b\x36\xb4\x02\x20\xcd\x05\xc6\xbb\x4b\xd9\xce\x87\x1b\xd3\x0b\x87\x47\x9d\x53\x2b\xd3\xf8\x1e\x40\x09\x73\x12\xb4\x96\x33\x16\xbf\x59\x79\xc8\x65\xa5\x0f\x3a\xc8\x7d\xce\xdb\x93\x36\xf2\x38\x80\xf5\xcf\xc8\xf4\xd3\x56\x50\x18\x27\xf9\x8d\xad\x95\xf4\xd2\xf6\x60\x7e\x75\x16\xcb\x31\x0a\xc0\xa2\x41\x8b\x0f\xf2\x42\xf5\xa5\xdd\xc2\xf2\x69\x65\x65\x45\xdc\x77\xdf\x7d\xe8\xf5\x7a\x78\xe2\x89\x27\x42\x5b\x0d\x38\x4a\x99\xcb\xdb\x96\x74\x8d\x3b\x74\xe8\x10\x9e\x7c\xf2\x49\x03\x76\x27\x93\x89\x54\x4a\xe1\xfd\xf7\xdf\x17\xd3\xe9\xb4\x4e\x66\xd4\x29\xe3\x36\x23\xae\xce\x4f\x6b\xdc\x67\xce\x9c\x41\xb7\xdb\x15\x0f\x3d\xf4\x10\x36\x37\x37\x2b\xc3\x60\x80\x65\xf9\xbd\xe7\xbc\x3d\x6a\x7f\xfc\xde\xd7\xeb\x4e\x3d\xad\xad\xad\xe1\xc9\x27\x9f\xc4\x64\x32\x91\x52\x4a\x00\x10\x17\x2e\x5c\x68\x9a\xfa\xe0\x03\xa5\x45\x74\x50\x5b\x1d\x36\x1a\xe0\xa1\xd3\xa1\x9b\x86\x34\x9a\x2c\x60\x00\xa8\x58\x81\xfe\x73\x59\x6e\x1d\x2d\x49\x95\x5b\x6c\x57\x0f\x4d\x0b\x0d\x21\x69\xc1\x57\x01\x1d\xca\x1f\xcb\x46\x65\x12\xae\xa5\x8d\x2d\xf5\xea\xf4\x5a\xd6\xf3\xb5\x55\xe7\x58\x2d\x2c\x2f\xa5\x65\x22\x22\x89\x24\x92\xc5\x49\xa9\xfe\xe7\x6c\x98\x9c\xdb\x36\x9c\x13\x02\x13\x6d\xcc\xc7\x41\x86\x8a\x6a\x59\x83\x05\xdc\x41\x99\xa1\x3b\xb1\x30\x0e\xea\xee\x84\xfd\xf1\xdd\x22\xf9\x6c\xab\x6b\xb0\xe7\x3c\x4e\x2d\xe0\x33\x29\x90\xce\x96\xc5\x96\xdc\xa1\xa9\xc8\xd4\x80\xe0\x9f\x98\xee\x36\x60\xbd\x39\xa2\xf2\xdf\x81\x01\x14\xad\xa5\xc1\xe6\x6f\xc0\x85\x1a\xfc\x8e\x4c\x3b\x57\x00\xef\x4b\x4e\x3e\xe0\x84\x29\x94\x27\xcb\x85\xb7\xa7\x8b\x06\x32\x7c\x68\xc6\x82\x06\x1b\x07\xe7\x40\x39\x26\x32\x7e\x1d\xbb\x41\xd9\xce\xc6\xca\x66\x64\x80\x66\x72\xc8\xcd\x3d\xab\x0e\x3b\x89\xb8\x24\x80\xc0\xeb\xa7\x2c\x77\x1e\xd1\x70\xde\xa3\xdd\x3c\xa1\x31\x84\x65\x10\xe0\x0a\x54\x73\xbf\xb5\xb5\x85\xbd\xbd\x3d\x5e\x5d\x02\x80\x9c\xcf\xe7\xf8\xe0\x83\x0f\x0c\xd5\x1e\x08\xaf\x59\x8a\x14\x84\x34\x8d\xd4\xf0\xf2\xda\xec\x83\x63\x7b\xc9\x85\x5e\x26\x56\x92\x4c\x0c\x80\x62\x95\x22\x83\x99\x00\x51\x85\x19\xe1\x8e\x9f\x81\xed\x3e\x37\xb5\x61\xae\x6a\x66\x46\x85\xcc\x35\x28\x00\x69\xa4\x86\xd7\x07\xe9\xa5\xab\xab\xb3\x4b\xc3\x6e\xb6\x0b\xc2\x14\x2e\x70\xe1\x43\x6b\xc6\x5d\xbb\x76\x4d\x96\xc3\x44\x8b\xc8\x1a\xa3\x57\xd6\xd7\xd7\xb1\xbe\xbe\x8e\x23\x47\x8e\xe0\xb3\x9f\xfd\x6c\x45\x49\x97\xfa\x43\x1b\xc5\x8e\x82\x2e\xf5\x42\x85\x8d\x81\xfb\x1d\xcc\xaf\x37\xff\x52\x3e\xf7\xdc\x73\x02\x00\xe2\x38\x96\xfb\xfb\xfb\xe2\xfa\xf5\xeb\x28\x87\x97\x5a\xf3\xed\xf9\x39\xc8\xf0\x87\x1f\xc6\x89\xeb\xfe\xfb\xef\x17\xcf\x3e\xfb\x2c\x96\x97\x97\x39\x30\x13\xb0\xc4\x80\x00\xcc\xa2\x10\xc7\x68\x26\x90\x28\x95\x92\x30\x7d\xb2\x38\x8f\x4b\xf7\x07\xa7\x8d\x97\x8c\x19\xbf\x07\x00\xf4\x7a\x3d\x7c\xe1\x0b\x5f\x00\x00\xcc\x66\x33\x29\xa5\x14\x57\xaf\x5e\xc5\x6c\x36\xab\xab\x8f\x90\x3b\x88\x01\xdc\x66\x68\x9a\xe7\x4d\x93\x73\xeb\x04\x75\x1d\xea\xe4\x28\x10\xfc\x9a\x0f\x97\x48\xa1\x64\x26\x54\x26\x0b\x41\x61\x24\x96\xdf\x79\xf8\x9d\x66\x90\x8d\x90\x2c\xdf\xf2\xd3\x65\xab\x02\xd0\x1e\x1f\x67\xa9\x70\xf7\xbe\x00\x4e\x96\x6e\x2e\x23\x75\xf2\x4d\x2c\x6e\xfd\x9a\x00\x11\x29\x4a\x62\x49\x5d\xa1\x20\x32\x66\xa1\xb2\xa1\x22\xdf\xf9\x68\x98\xa3\x5e\xdf\x9f\xff\x3c\xa4\x38\x43\x71\x87\xae\x5b\xbf\x57\x4d\xdc\x6d\xe9\x34\x09\xa5\x90\x12\x6f\x2b\x8b\x9f\xcf\x45\x41\xc9\x22\x6c\x60\x28\xee\x50\x39\xea\xe2\xaa\x13\x46\x4e\x9b\x0f\xac\x28\x91\x4a\xa9\x8c\x40\x52\x0a\x64\xd3\x81\xb8\x9e\x77\x68\x2f\x4e\xd5\x06\xa4\x12\xc1\x31\x4b\x00\x7a\x18\xc5\x02\x0b\x06\x64\xcc\xc4\x52\x77\xe8\x84\x33\x82\x26\x2f\x9c\x6d\xe0\x5a\xbd\x44\x0c\x64\x14\x7b\xc9\x9b\x38\x71\xdb\xb3\x96\xc8\x1b\xfa\x71\x01\x06\x59\xf6\x46\x77\x52\x06\x34\xec\x29\xd6\x3c\x7e\xe6\xca\x67\x7a\xf5\x0b\x39\x28\xc5\x78\x32\xf5\x62\xf2\xed\x4c\xe8\x80\x93\x5f\x7f\xa5\x94\x61\x13\x8c\xdd\x52\xce\x6f\x49\x68\x77\xde\xa3\xdd\x3c\x86\x99\xbb\x51\x19\xda\x66\x71\xbf\xfe\xfa\xeb\x60\xa7\x12\x1b\x37\x1e\x8f\xe5\x2f\x7e\xf1\x0b\xf1\xc0\x03\x0f\xa0\x8c\x43\xcf\xf7\xb3\xc3\x44\x40\xa2\x94\x4a\x89\x28\x55\x84\xe9\x5e\x2f\xdb\x7d\xe7\xe8\xf8\xf7\x2b\xb3\xf8\xe8\xd1\xfd\xe4\x6c\x92\xa3\xcf\x61\xa4\x99\x6b\xe4\xa2\x19\x0f\xa0\x5a\xd9\xe7\xb3\xd3\xb6\x62\xec\x27\xe7\xce\x8b\xb6\xfc\xce\xc5\x65\x26\x54\x76\x73\x79\xfe\xf1\x07\x87\xa7\x17\xae\x1f\x4a\xaf\xa6\xb1\x1a\xc2\x82\x16\xc3\xb8\x28\xa5\xcc\x04\x5d\x1d\xcd\xf9\xf3\xe7\x71\xe5\xca\x95\x45\x14\x90\xe9\x6b\x2b\x2b\x2b\x78\xfc\xf1\xc7\xf1\xd0\x43\x0f\x85\xe4\x18\xff\xe5\x43\x42\xce\xd0\x08\x81\x04\x13\xd4\x92\x55\x44\x08\xbc\x84\xfa\xb3\x7c\xf6\xd9\x67\x05\x00\xbc\xf6\xda\x6b\xf2\xf2\xe5\xcb\x18\x8d\x46\x62\x7f\x7f\xbf\x09\x88\xb4\x19\x8a\xc1\xf2\x06\xe2\x10\x00\xa4\x10\x42\x1c\x3d\x7a\x14\x00\xc4\x57\xbe\xf2\x15\x24\x49\xe2\x94\x5d\x5f\x13\x91\x9e\xa2\x10\x13\x48\x10\x20\x62\x59\x8c\x02\x44\x12\x71\x2c\x29\xee\xe4\x22\x8e\x25\xc5\x42\x42\x10\x48\x66\x42\xc9\x2c\x52\x59\x4e\x2a\x9b\xc5\x32\x9d\x47\x4a\x4a\x52\x99\x24\xcb\x98\x69\x00\x43\x44\xfe\xf0\x9f\xfc\xea\x57\xbf\x2a\x00\xe0\x97\xbf\xfc\xa5\xbc\x74\xe9\x92\x98\xcd\x66\x8b\x1a\xc0\x75\xf2\xb7\x56\x96\x06\xfc\x54\xae\xe3\xba\x17\x2c\x02\xee\x9a\x14\x0d\x00\x83\x7e\x8d\x10\xf7\x84\x39\x72\x52\x59\x26\x54\x9a\x93\xca\x14\x94\x14\xa5\xe5\x59\xb0\xdf\xf6\x50\xc4\xca\xaa\x1e\xe3\x89\xcb\x63\xd7\xaa\xd0\x17\xbe\xd5\xa8\x10\x88\x4b\x77\x72\x06\x7c\x28\xe0\xdf\x8d\xc9\x78\x10\x42\x52\x5c\x0e\x17\x09\x12\xa6\x61\x39\x08\xd8\x73\x6d\x8a\x3e\xe4\x9a\xac\xfb\xba\xb0\x75\xd6\xc0\xa2\x08\x77\x11\xa1\xb3\xc8\xfb\x36\xa4\x5d\x07\x84\x17\xb5\x58\x16\xa9\x1b\xdf\x5f\x53\xbb\x6e\x7a\x1e\x4a\x1b\x00\xe4\xfe\xfe\xbe\x38\x74\xe8\x90\x8c\xe3\x38\x54\xdf\xd2\x28\x30\x42\x36\xeb\x8b\x9b\xf3\x2e\xdd\xe8\x4c\x70\x8f\x50\x88\x8d\x62\x62\x4e\x69\x76\xc2\x80\x69\x36\x0c\xc3\x58\x47\xb8\x60\x99\x8d\xd4\xb0\x25\xcf\x1c\xd8\x33\x76\xc5\x31\x26\xf4\x84\x0f\xd2\x71\x17\x41\x1c\xeb\xd5\x1f\x87\x35\xca\x30\x94\x8e\xbe\x2c\x19\x03\x58\x66\xc7\xe4\x9d\xbc\x62\x73\xc6\x94\xd1\x31\x3c\x2f\x96\x2c\xd5\x16\x07\x19\xc3\x83\x88\xcc\x61\x91\xa4\x19\x55\x27\x7e\xc6\x9c\x5a\x19\x93\xcd\xbb\xb4\x33\xef\x89\x9b\x32\x26\xbd\xa9\x5a\xa6\x85\xb6\xfe\x76\x35\xf3\x37\xea\x9c\x04\xcc\x22\x05\xfd\x97\x95\x0a\x3e\x05\x30\x55\x4a\x25\x44\x94\x48\x60\x78\x65\x6d\x76\x79\x39\x1d\x9f\xeb\xe4\xd4\xdf\x18\x75\x4e\x74\x24\x7a\x7a\xf3\x7e\xc3\x2c\x95\x88\x82\x1b\x56\x5a\x56\x1a\xb4\x61\x66\xe6\x96\xab\xb4\x7c\x66\xcd\xd4\x08\x67\xe7\x8a\x70\xbc\x5e\xca\xb8\xe5\xed\xa5\xf9\x95\xf7\x37\x27\xbf\xff\x68\x63\xfa\xfe\xb8\x23\xf7\xca\x7c\x4f\x01\x4c\xcb\x72\xa4\x1c\xb4\xe8\x3a\xaa\xd9\x70\xb3\xce\x70\xc1\xf2\xf2\xb2\x88\xe3\x18\x4f\x3d\xf5\x14\xce\x9c\x39\xa3\x99\x05\x07\x9c\x54\xfe\xca\xfd\xb3\x84\x82\x10\x4a\xc4\xa4\x20\x84\x22\x41\x0a\x22\x52\x06\xbc\xc8\xac\x50\xcc\xb2\x5c\xc1\x2a\x25\x29\x59\xec\xd8\xee\x1a\x16\xec\xcf\xc8\x88\x27\x9f\x7c\x52\x3c\xf1\xc4\x13\x78\xe7\x9d\x77\xe4\xb9\x73\xe7\xc4\x64\x32\xa9\x2d\x03\x5c\xd9\xd2\xa8\x6c\x03\x75\x62\xc2\x46\x51\x24\x8e\x1c\x39\x82\xbf\xfc\xcb\xbf\x34\x0c\x13\x0a\x70\x66\x00\x8b\x52\x2a\x26\x22\x5d\x07\x71\x24\x29\x8e\x14\xc5\xcb\x69\xd4\x5b\x99\xc6\x83\x43\xb3\x68\x65\x79\x16\x0d\x7a\x99\xe8\xf7\xe6\x62\xd0\xcb\xc4\x20\xce\x29\x51\x04\xe4\x42\x4d\x67\xb1\x1a\x8f\x92\x6c\x77\xaf\x9b\xef\xde\xea\xcf\xf7\x46\xdd\x7c\x38\xee\xc8\xe9\x3c\x52\x69\x2e\x54\x86\x62\x2b\x80\x0c\xac\xed\xc3\xea\x70\x28\xa5\xe4\x97\xbe\xf4\x25\x01\x40\xbe\xff\xfe\xfb\x22\x4d\xd3\xd0\xb7\x6e\xfa\xee\x68\x78\x17\x32\x94\xfd\x70\xa6\x4e\x35\x70\x59\x54\x41\x85\x2c\x52\xe3\x18\x5d\xa7\x1b\x34\x00\x77\x03\xba\x5c\x28\x39\x8f\xd4\xac\xa8\x28\x97\xd9\x00\x18\x5d\xc9\xc6\x79\xb4\xf5\x64\x26\xe9\x69\x9f\x6c\xa0\xd6\x9d\x23\xc0\x87\x8f\x6c\x87\x36\xec\x0d\x9b\x78\x68\x42\x39\x16\x0b\x13\xc2\x80\x23\x07\x35\x4d\x17\x29\xc4\x1d\x49\x49\x9c\x93\x98\x47\x55\xeb\x4f\xbb\xc0\xc4\xcd\x26\x66\xe3\x0f\x41\xb1\xfc\xba\xae\xa3\xf8\xe1\x43\xe9\x36\x81\xae\xa6\xb8\xf8\x7d\xc8\x5f\xa8\x0c\x7e\xdc\x8b\x3a\x1f\x88\x84\xde\xf9\xcc\x56\x9d\x3f\xff\x7a\x91\x7b\xf3\xfc\x27\x3f\xf9\x89\xfc\x8b\xbf\xf8\x0b\x71\xcf\x3d\xf7\xf8\x00\xc9\x28\xae\xf2\x37\x9d\xf7\xc4\x70\xb6\x2c\xae\xf4\xf6\xe5\x59\x91\xa3\x0f\x70\x45\x5f\xb8\xa2\xbd\x71\xd3\x59\x03\x6e\xdb\xd6\x7d\x45\xaa\x59\x12\x2a\x01\xbf\x46\x06\xc6\x0a\x67\xcc\x4c\x81\x89\x88\xf9\x2b\x97\x22\xdb\x5b\xd7\x39\x33\x42\x6d\x7c\xee\xc4\x2f\xab\x1c\x39\x80\x32\x69\xc0\x05\x19\x9c\xed\x34\xf3\x6a\x4c\xdc\xd6\x3a\xa1\xb2\x8f\x5b\x46\xa8\x9a\x15\xde\xe7\xad\xd1\x04\x33\x07\x8e\xd8\x3b\xcd\xee\x00\x0a\x32\xa6\xbd\xd9\xb2\xd8\x4a\x97\x68\x37\x17\x48\xa9\x9c\xe3\xe2\xb3\x08\xfe\x1c\x01\x84\x81\xb0\x00\x80\x34\x4d\xd1\xe9\x74\x8c\xb1\xc6\x28\xf8\x0c\x40\x4a\x44\x71\x09\x00\x12\x10\x92\x9c\x30\x7c\x6f\x73\xfc\x6e\x6f\x4e\x83\xcf\xc8\xe5\x64\x6d\xd2\xb9\x27\x96\x2a\x31\xdf\xdc\x80\x33\x6f\x2e\x9f\xc5\x76\x8c\x89\x2b\x19\xab\x92\x75\xd2\x86\x9d\x86\x71\xf6\x9b\x84\x0c\x3b\x7b\x3b\xec\xe6\x3b\x1f\x1c\x9e\xfe\xfe\x9d\x23\xe3\xb7\x47\x49\xbe\xa3\xa0\xc6\x04\x9a\x12\xd1\x54\x29\xc5\x27\xe5\xf2\xa1\x35\x00\x90\x59\x96\xe9\x39\x11\x80\x57\x37\xdc\x1f\x00\xc4\x71\x8c\x3f\xff\xf3\x3f\xc7\xd1\xa3\x47\xf9\x2a\x18\xad\xa8\xfd\xbf\x98\x40\x42\x48\xc4\x91\x24\xd1\xcb\x44\xb2\x3c\x8b\x7a\x87\x66\x51\x6f\x90\x46\xfd\xde\x5c\xf4\x62\x49\x89\x50\x14\x47\xc5\x4a\x4f\x4c\x63\x39\x1e\x75\xf3\xe1\xa4\x93\xa7\xd3\x58\x4e\x47\xdd\x3c\x1d\x26\xf9\x74\x1e\xa9\x4c\x11\x65\x4a\x39\x20\x46\x7f\x7b\x67\x74\xe0\xa1\x87\x1e\x12\x71\x1c\xcb\x97\x5f\x7e\x59\x28\xa5\x90\x65\x19\x2f\x43\x08\xb0\xb4\x19\x53\x5c\x2e\x19\x39\x45\x44\x38\x72\xe4\x08\xbe\xfd\xed\x6f\x73\x56\x45\xfb\xd1\xc6\x70\x0c\x20\x86\x42\x2c\x14\xe2\x5e\x26\x92\xf5\x71\x3c\x38\x32\x4c\xd6\x8e\xed\x27\xc7\x37\xc6\x9d\xc7\x96\xe6\xe2\x6c\x9c\xd3\xd1\x48\xd1\x86\x50\x34\x20\x85\x3e\x14\x44\xd9\x1e\x32\x45\x2a\x55\xc0\x4e\x1a\xa9\x2b\x93\x6e\x7e\x61\xb7\x97\xbd\x7d\x73\x79\x7e\xe5\xfa\x20\xbd\x71\x73\x79\xbe\x37\x4a\xe4\x34\x2b\x0e\x83\x75\x96\xbb\xeb\x3f\xdd\xae\xbf\xf8\xc5\x2f\x0a\x21\x84\x7c\xfb\xed\xb7\x21\xa5\x6c\xd3\x35\x6d\xba\xa5\x8e\x28\xa9\x0b\xe7\x30\x2e\xa1\x4a\xd6\x9e\x42\x99\xe1\xef\x8c\x2b\x0b\xea\x2c\xc7\xf2\xe3\x96\x28\xe6\xb8\xe4\xa4\x52\x45\xc8\x04\x28\x31\x7d\x91\x01\x18\x16\x29\x5b\xaa\x57\x0a\x1f\x2d\x61\x99\x10\x73\x6c\x0a\x6f\xff\x06\xbf\xa3\x72\xab\xce\x9c\xca\xca\x18\x19\xe5\x7b\x73\xcb\x08\x05\x40\x28\x4a\x3a\x39\x25\xb1\xa4\x4a\x1d\xb6\x58\x68\x75\x1f\xa9\xe9\xfd\x9d\x86\x6d\x65\x0c\x16\x4c\xf7\x20\xcf\xdb\x00\x4b\xc8\xdf\xa2\x61\x16\xf1\xdf\x56\x8e\x45\xd2\x5f\xb4\x4c\x95\xe7\x4c\x59\x49\x58\x6b\x3b\x03\x90\xe5\x1d\x4c\xc7\xab\xe2\xc3\xe5\x5b\x74\x23\x9e\xab\x15\x28\xc4\x95\xa6\x52\x25\x0b\x02\xe0\x99\xb1\x1a\xde\x38\x00\x1f\x22\xb1\x93\x69\xdd\x70\xce\xea\x1c\x83\x58\x9c\xd4\x58\x7e\xc8\xf3\x03\xa3\x4c\x9d\x79\x2b\x3c\x2a\xe2\x61\x61\xb6\xa3\x37\x13\x68\x59\xdf\x34\xd1\x7a\x61\x9c\xf0\xdc\x9f\xfe\xcf\xf2\xe2\xf8\x65\x0c\xaa\x95\x0f\xd5\x49\xc5\x59\x57\xdc\x98\x0e\xc4\x56\xd6\xa1\xa1\xfe\x3e\xb0\xc2\xda\x9f\xeb\x12\x32\x40\x00\xa6\xb0\xe6\xf3\x39\xfe\xf1\x1f\xff\x11\x7f\xff\xf7\x7f\x2f\xe2\x38\x06\x60\xd9\xb6\x52\xf1\xe8\xf8\x53\x00\x53\x94\x8a\x68\x16\xc9\xdd\xb7\xef\x1a\xbf\x41\x8a\xe2\xb3\x37\xfa\x9f\x5b\x1f\xc7\xc7\x3b\x39\xf5\x4c\xd9\x3c\x60\x5b\x29\xaf\xf7\xdc\xe1\xc6\x02\x9f\x33\x24\x06\x15\x00\x49\xc8\x46\x49\xbe\xf3\xde\x91\xc9\xab\x6f\xdc\x3d\x7c\x6d\xd8\xcd\x6f\x28\xc2\x98\x40\xe3\x32\xbf\x86\x6d\x81\xa7\xd4\x74\xdd\xfc\xf8\xc7\x3f\xc6\xd6\xd6\x96\x97\x60\x50\x61\x89\xef\x7e\xf7\xbb\x58\x5d\x5d\x35\xf7\x70\x95\xb4\x00\x10\xb3\x89\xa7\xf1\xa1\x59\xd4\xbb\x7b\xaf\xbb\x76\x64\xd8\xd9\x5c\x9b\xc4\xc7\x06\xb3\xe8\xc4\xd2\x5c\x9c\xee\xe4\xe2\x9e\x48\xd1\x0a\x29\xf4\x08\x94\x10\x10\x2b\x00\x12\x6a\x2f\x17\xea\x46\x16\xa9\x1b\xf3\x48\x6e\x8d\x92\xfc\xa3\x9d\x7e\xf6\xe1\xb5\x43\xe9\xd6\xf5\x41\xba\x7b\x7b\x29\x9b\xe6\x64\xc0\x97\x28\xcb\xc1\xf7\xf2\x01\x50\xac\xe8\x39\x7d\xfa\xb4\xdc\xd9\xd9\xc1\x0f\x7e\xf0\x03\x9e\xdf\x3a\xa3\x67\x51\xb9\x63\x7e\x8f\x1f\x3f\x2e\xbe\xf5\xad\x6f\x69\xa6\x85\x83\x96\x98\x83\x16\x22\x8a\x93\x8c\x92\xbb\xf6\xbb\x6b\x67\x6e\xf4\x4e\x1d\xdb\xef\x3e\x35\x98\x46\x9f\xeb\xe6\xe2\x61\xa1\x70\x8c\x14\x25\x54\xd6\xb5\xf3\xe9\x75\xa3\x28\x66\xe7\x1f\x4f\x24\x1e\x5d\x9e\x47\x7f\xbe\x3e\xea\xec\x1c\xbf\xdd\xbd\x34\xea\xe4\xbf\xbb\x7e\x68\xfe\xeb\x8f\xd7\xa7\xef\x5c\x59\x9d\xdd\x18\xf6\x72\x3d\x74\xca\xff\x8c\x23\x22\xf9\x85\x2f\x7c\x41\x24\x49\x22\x5f\x7b\xed\xb5\x45\xe4\xed\x22\x3a\x6d\xa1\xba\xd2\x2f\x9a\x96\x43\x2f\x3a\x44\x21\x00\xe0\xf5\xd7\x5f\xc7\x6c\x36\xc3\x97\xbe\xf4\x25\x67\x82\x2e\x60\x00\x8d\x04\x8a\xba\xcb\x85\x92\xb9\x28\x86\x8a\xb8\xcd\xe4\x3a\xc6\xa8\x38\x32\x36\xec\xbb\x11\x2a\xb4\x39\x2d\x50\x2b\x43\x51\xc1\x5c\x81\x00\x08\x85\x38\x96\xd4\x8b\x0a\xe0\xc2\xad\x03\xd7\xbf\x52\x78\xfe\xf9\xe7\xd1\xed\x76\xc5\x9b\x6f\xbe\x59\xd7\xd8\x9b\xdc\x41\x94\xfa\x41\xe2\x3d\x48\xb8\x83\x32\x42\x7f\x2c\xb7\x28\x7b\xc3\xfd\xff\x6f\xe6\xad\x2d\x7e\xde\xc1\xb4\x00\x34\x56\xbc\x22\x4c\xc7\x87\xa2\x4f\x67\xfd\xec\x93\x64\x82\x63\x51\x86\x15\x00\x61\x05\x53\xba\xd0\x63\xb7\x0b\xb0\xc0\x8c\x49\xac\xf4\x2b\xf6\x2e\x30\xa5\xb5\x21\x35\xfb\xdc\x31\xf6\x35\xda\xf0\x18\x80\x0a\x85\xe4\x44\xeb\x0e\xc8\x56\x01\xbe\xcb\xa2\x36\xb9\xd0\x70\x87\xcb\x9a\x7a\xc9\xb3\x7c\x29\xa2\x6c\xd6\xa7\xad\xd9\xb2\xd8\xce\x3b\xa4\x57\xcb\xf8\x2c\xc2\x22\xca\xa8\xad\x2d\x70\x8b\x3e\x05\x63\x10\x60\x15\x53\x3c\xe9\xc8\x9d\x37\xef\x1e\xbd\x36\xea\xe6\xc3\xb3\xd7\xfb\x4f\x1c\xdb\x4f\xce\xf4\xe6\x62\x20\xbc\x09\xdc\x65\xc9\x11\xaa\x20\x1f\xc7\xf1\x9b\x06\xb1\x09\x05\x85\xb9\x50\xd3\x5b\xcb\xd9\x27\xef\x1c\x19\xff\xe6\xc2\x5d\xa3\x37\xa6\x1d\xb9\xa3\x80\x21\x8a\xbf\x71\xf9\xe7\x4f\xce\x75\xd8\x16\xaf\xdc\xa1\xba\x30\xee\xef\xfe\xee\xef\xc0\xf6\x64\x11\xb0\x43\x22\xae\xa2\x06\x25\x87\x47\x71\xef\xc4\xce\xd2\xd1\x7b\xf6\x92\x87\x37\xc6\x9d\xa7\x97\xe6\xe2\xd1\x4e\x4e\xc7\x85\xa4\x35\x02\xfa\x64\x65\x84\x57\x57\x04\xe4\x24\x31\x87\x54\x14\x65\x6b\x93\xce\xde\xd1\x7d\x79\xe5\xfe\x9d\xde\x9b\xfb\xbd\xfc\xf5\xed\x41\xfa\xce\xe5\xb5\xd9\xc7\x1f\x6d\x4c\x77\x61\x27\x1a\x6b\x80\xe9\xb3\xa6\x58\x5f\x5f\x97\x7f\xfb\xb7\x7f\x2b\xfe\xf5\x5f\xff\xf5\x8e\x8d\x9a\x90\x7b\xf0\xc1\x07\xc5\xf3\xcf\x3f\xaf\x6f\x39\x70\xd3\xf5\x90\x00\x88\xe3\x9c\x92\xa3\xfb\x9d\xb5\x53\x3b\x4b\xa7\xee\xdd\xed\x7e\x7e\x6d\xd2\x79\x3e\xc9\xe9\x61\xa1\x30\xa8\x96\xbd\xda\x42\xbc\x56\x23\x00\x24\x91\xc2\xb1\x68\x2e\x8e\x26\x99\x78\x62\x90\xc6\x5f\x3d\xba\xdf\x39\x77\x72\xd0\xfb\xd5\x47\xeb\xb3\x0b\x1f\x6f\x4c\xb6\x46\x89\xd4\xdf\x9c\xd7\x8b\x06\x31\xf2\xa9\xa7\x9e\x12\xdd\x6e\x17\xaf\xbe\xfa\xea\xff\x86\xcc\x6d\x94\xb5\x51\x43\x40\x5f\x77\x0b\xb8\x84\x84\xef\x4f\x1d\x3e\x7c\x98\xee\xbf\xff\x7e\x0d\x35\x04\x11\x45\x65\x1a\x1d\x22\x4a\x00\x24\x80\xea\xae\xcc\x3a\x1b\x47\x87\xc9\xa9\x95\x69\x7c\x5c\x28\xea\x70\x4a\xdb\x62\x95\xaa\x00\xf3\x3b\x9f\x6f\x6f\xda\x61\x26\x8f\x39\xd1\xef\x95\x1e\x77\x77\x2d\x59\xc7\xaa\x0d\x08\x3e\x27\x0f\xe5\x6f\x16\xa9\xe1\xee\x52\xf6\xd1\x8d\xc1\xfc\xe3\x51\x27\xdf\xd3\x54\x2a\x11\x69\x2b\x5b\x01\x50\x44\x24\x85\x10\xea\xea\xd5\xab\xb8\x76\xed\x1a\xcf\x92\xbe\x0e\xd5\xab\xf0\xde\x2b\xe6\x8f\x1a\xc2\x2b\xef\x5e\xd4\xf8\xf7\xc3\x4a\x34\xc7\x2f\xbd\xea\xe4\xf1\xfb\xbf\xa1\x36\xd2\x96\xa7\x3a\x7f\x3c\xdd\x50\x9d\xf8\xf5\x55\xf7\xde\x8f\xdb\x77\xa1\xfc\x85\xc2\x03\xd5\xb2\xe3\xec\xd9\xb3\x34\x18\x0c\x88\xec\x04\x8b\xa8\x14\x40\x11\x4a\xe5\x84\xc2\x12\x4c\x88\xd0\x49\x26\x6a\xbd\x3b\x96\xf7\x46\x19\x0e\xc1\x63\xfc\x5c\xe5\xed\x2a\x7a\x87\x46\xf0\x1b\x6c\xf9\xb0\x50\x52\xfe\x3c\x86\x12\xc8\xe8\x30\x21\x73\x5c\x47\x1f\x04\x14\x65\xec\xca\xbf\x29\xe2\x72\xb0\x0a\xf1\xb9\x26\x36\x8d\xea\xf0\x29\xd7\xaa\x30\xb5\x5d\x0c\x7d\x28\x1b\xa7\xbf\x24\x48\x97\x86\x0d\x39\x19\x59\x41\x60\xc6\x52\x59\x56\x55\x84\xe0\xf9\xc9\x12\xda\xd9\xdf\x8c\x5f\x1f\x6e\xc4\xef\xe5\x09\xdd\x02\xd1\x18\xc0\x04\xc0\x4c\x29\x35\x23\xa2\x39\x80\x1c\x56\x58\xab\x9f\xfd\xec\x67\xf2\xea\xd5\xab\x90\x52\xfa\xed\x02\x60\x6d\xe6\xdd\x77\xdf\xa5\x53\xa7\x4e\xa9\x24\x49\xa8\xac\x07\x02\x40\xde\x30\x04\x0f\x03\x10\x44\x2e\x94\xdc\xef\x66\xe3\x71\x22\x47\x04\xa8\x6e\x26\xba\x91\xa4\x9e\x28\x26\x5f\x9a\xef\x63\x87\xae\x2c\x58\xe3\xc0\x24\x38\x9c\xa6\x9b\x94\x32\x55\x02\xa8\xc2\x80\x1c\x27\xf9\xad\x6b\x2b\xe9\xfb\x6f\xdd\x3d\xfa\xf5\x3b\x47\xc6\x6f\x4f\x3b\x6a\x17\xc0\x3e\x08\xfb\x00\x46\xe5\xdf\x04\xc5\x3c\x97\x49\x59\x37\x73\xa5\x54\x5e\xca\xb8\x1c\x00\xfe\xfd\xdf\xff\x5d\x5e\xbf\x7e\x1d\x4a\xe9\x0f\x56\xed\x83\x51\x14\x89\xbf\xf9\x9b\xbf\xa1\xe5\xe5\x65\x70\x66\x05\x45\x7f\x89\xca\x7e\xd2\x25\x85\x64\x39\x8d\x06\x9f\xb9\xb6\x7c\xfc\xd1\x4f\x97\xbf\x78\xf2\x56\xef\xaf\x36\xc7\x9d\xbf\x5c\x4e\xa3\x67\x93\x9c\x4e\x0a\x45\x6b\x04\xf4\x48\x91\x20\x22\x22\x55\x4e\x36\xa0\x62\x4e\x55\x31\x14\x4a\x28\x3a\x24\x09\x80\x62\xa1\xb0\x14\x4b\xda\xec\xe6\xe2\xcc\x72\x1a\x3d\xbe\x3a\x89\xcf\x6e\x8e\x3a\xeb\xab\x93\x78\x3e\xed\xc8\xe9\x34\x96\x52\x11\x34\xeb\xa1\xbf\x9b\xe2\x2b\x90\x3a\x9d\x8e\x3a\x7b\xf6\x2c\xbd\xf9\xe6\x9b\xf0\xcb\xc6\xbe\x69\x9b\xbc\x32\xb2\xf2\x33\x9f\xf9\x0c\x3d\xf3\xcc\x33\x7a\x12\xae\x01\x70\x65\x3d\x74\x94\x52\x5d\x22\xea\x2c\xcf\xc4\xf2\x83\xdb\xfd\x07\xfe\xe4\xda\xe0\xcb\xc7\x77\x7b\xdf\x5d\x9d\xc6\x5f\x4b\x72\x3a\x45\xa0\x3e\x95\x13\x2d\x88\xed\xc9\x54\x69\x03\xca\x76\x31\x2e\x66\xca\x79\x67\x44\xa0\x4e\x2c\xb1\xde\xcd\xc4\xc9\x41\x1a\x9f\x59\x9b\xc4\x87\xfb\x69\x34\x9b\xc6\x72\x7f\xdc\x95\x5a\xae\xfa\xb6\x80\x22\x22\xb5\xbe\xbe\x4e\xfd\x7e\x1f\x97\x2f\x5f\x6e\xd2\x31\x07\xb9\x76\xd2\x08\xd4\x31\x80\x3b\x63\x5c\x84\xf7\xcb\xfd\x07\x85\x1e\xf1\xcd\x9c\x88\xa4\x9e\xa0\xab\x0a\xaa\x0e\x7c\x6f\x86\x26\x63\x2b\x38\x1f\x00\xd5\x7b\xfe\xeb\xc8\x5a\x16\xb8\xf2\x15\x9c\x67\xd5\x3b\x3f\x9c\x50\x88\x3b\xb9\xe8\xc5\x92\x0c\xb5\x57\x76\x46\xdd\x29\xcb\x3c\x2b\xa0\x5a\x67\x8b\x58\x28\x4d\x74\xa4\xef\x57\xfb\xe1\x61\x17\x89\xfb\x20\x56\xa5\x3f\x8e\x1b\xf2\xb3\x88\xf5\xb1\x08\x63\xe1\xe7\xb3\x2d\x8e\x45\xac\xa0\x83\xa4\x7b\x60\x7f\xba\x8d\x97\xdf\x9e\x5b\xda\x66\xc3\x2e\x22\xca\xf2\x0e\xc6\x93\x15\x71\x65\xf9\x16\x6d\xc5\x33\xb5\x11\xe5\xe8\xf1\x46\xcd\xd9\x03\xad\xc4\x0b\x40\x52\xed\x1f\x66\x17\x15\xc5\x9e\x97\x5a\xce\x80\x03\xad\xd8\x75\x9b\x36\x3f\x8c\x77\x51\xba\x0c\x28\xd3\xf2\x36\x76\xf4\x2d\x00\x73\xa3\xa0\x27\xd6\xf2\x1e\xa3\x41\x85\x99\x9b\xa6\xdc\xbe\xc7\xe7\x8e\x59\xdc\x62\xe7\xbf\x38\xdb\x1b\xe8\x3c\x99\x30\x85\x64\x36\x00\x0d\x70\xea\x85\x7c\xad\x6d\x0b\x06\xbd\xca\x70\xbe\x24\xb6\x26\x87\xc4\x27\xc5\x89\xdd\xe4\xb0\x2d\x54\xb3\x27\xc9\x78\x3c\xe6\x73\x1c\x7c\x67\xfa\xc4\x70\x38\x84\x94\x52\x2b\x3f\x63\xa1\x32\xfa\x3f\x45\x21\x77\xa7\xe0\x4c\x2d\x01\xb3\x58\xe1\x93\xd5\x19\x26\x1d\x39\xdd\x5d\xca\x76\x8e\xef\x76\x4f\x6d\x8c\x3b\xf7\xf4\xd3\x68\x25\x02\xc5\x8e\xcc\x62\xf5\x13\x7c\x6e\xea\x15\x76\x54\xbd\x7c\x27\x49\xc9\x69\x92\x0f\x77\x7b\xf9\xf5\xad\x95\xd9\x87\x1f\xaf\xcf\xde\xdb\x3a\x34\xbb\x3c\x8b\xe5\x2e\x88\x42\x4c\x8b\xfe\x33\x4c\x0b\x79\xab\x89\x46\xa3\x91\x7f\xf6\x8d\x53\x57\xfd\x7e\x5f\x7c\xe3\x1b\xdf\xc0\xca\xca\x8a\xae\x07\x87\x79\x2a\xff\x92\x38\xa7\xe4\xc8\xa8\xb3\x71\x66\x7b\xe9\xe1\xe3\xbb\xbd\xaf\xac\x4c\xa3\xe7\x92\x5c\xdc\x23\x14\xfa\x00\x12\xce\x16\x2a\x56\x07\xba\x9d\x3a\x3b\xae\xb3\x7a\x40\xc1\x5e\x25\x42\xa9\x44\xe4\xd4\x8f\x65\xb4\xd9\xcb\xc4\x99\xe5\x59\xf4\xe8\xda\xa4\xf3\xff\x5e\x5e\x9b\xfe\xfe\x83\x8d\xe9\x27\xe3\x6e\x3e\x66\x6d\x02\xe5\xf0\x11\xf4\x37\x5c\x59\x59\xc1\x77\xbe\xf3\x1d\xf9\x93\x9f\xfc\x44\xaf\xac\xe1\x6e\x11\xe6\x41\x02\xc0\xa3\x8f\x3e\x8a\xc7\x1e\x7b\x0c\x4b\x4b\x4b\x9c\x61\xd1\xa0\x25\x41\x61\xf0\x24\xab\x93\x78\x70\x66\x7b\xe9\xe1\x07\x76\x7a\x5f\x3b\x3c\xee\x3c\x9f\x64\xe2\x64\x51\x17\x0c\xd0\x92\xfd\xc6\x0e\x38\x81\xfb\xdd\xad\x71\x52\x05\xb7\x00\xc5\x91\xc2\x46\x6f\x4e\xfd\x58\x76\x36\xbb\x99\x38\xde\x9f\x47\x3f\x7d\xef\xf0\xf8\x37\x1f\x6c\x4e\xb7\x50\xb4\x5b\xbf\x9c\x32\x49\x12\x79\xe6\xcc\x19\x10\x91\x7c\xe5\x95\x57\x6a\xcb\xdb\x72\xad\xdd\x22\x8c\xb9\x00\x20\x0f\xc2\xb8\x68\x33\x49\x7a\xef\x35\x5a\xa2\xcd\xcd\x4d\x9c\x3c\x79\x52\xfb\x13\x00\xa8\x14\xe4\x9d\xf2\x2f\x01\xd0\x1b\xa4\xd1\xea\x91\x61\x72\x72\x7d\x12\xdf\xd7\x91\x62\xc9\x08\x20\x68\xb9\xeb\xb5\x3c\xfd\x2e\x80\x6a\x7c\xaf\x55\xb4\x59\x77\x88\x1c\x80\x4a\xe3\xd6\xaf\xd8\x72\x54\x66\xca\xd8\xe1\x2f\x42\x2e\x90\x0e\xbb\xf9\xd5\xed\xc1\xfc\xd2\xed\x5e\x76\xab\x1c\xff\xd5\xd6\x48\x46\x44\x39\x60\x26\x26\xab\x2b\x57\xae\xa8\x6b\xd7\xae\x85\xea\x95\x3b\x8e\x3c\xf9\x6f\x1b\xba\xf7\xfd\x35\xa5\x51\xf7\x3e\x84\x7a\xfd\x30\x3e\xb3\xd1\x96\xce\x41\xd3\x08\x95\xe9\x7f\xd3\xb5\xe5\x87\x3b\xee\xcf\x09\xb7\xb7\xb7\x47\xab\xab\xab\x18\x0c\x06\xdc\xca\xe6\x16\x54\x84\x42\x30\x77\x00\xea\x80\x20\x92\xa9\x3a\x9c\x4c\xd5\x11\x91\x63\x59\x0b\xa0\xd2\x8e\x01\x27\x24\x0c\xa0\x0f\x59\xd2\x5a\xe4\x90\x79\x60\x4c\x78\x00\xea\x6a\xf7\x0f\x00\x00\x20\x00\x49\x44\x41\x54\x96\x75\x81\x13\xa1\x69\xcb\x3a\x26\xe7\xc4\x60\x06\x32\x94\x06\x26\x25\xe3\xe1\x9b\x5d\x8e\xd6\xf4\xbb\xac\x03\x26\xdc\x4a\x74\xca\x67\x7e\x6d\x59\xf4\xfc\x1d\xb3\x9d\x81\xb2\x61\x2c\xdb\x62\x27\xf5\x07\xc4\x82\x2d\x00\x32\x40\xcd\xbf\x2b\xcb\x1c\x01\x90\x31\x86\xc3\xc3\xf1\xef\xf7\xee\x8a\x2f\xcc\x7b\x74\xa3\x64\x5b\x46\xb0\x2b\x67\xe6\x25\xab\x90\xa1\x60\x13\x24\x00\x5c\xbc\x78\x51\x8d\x46\xa3\xb6\xfe\x01\x00\xb4\xbb\xbb\x8b\xbb\xee\xba\x4b\xf5\x7a\x3d\x6e\x13\x71\x28\xc6\xfb\x10\x99\x6b\x02\x72\x42\x36\xeb\xc8\xe9\x5e\x2f\x1b\xee\x2e\xe5\xb7\x67\x1d\x39\x04\x21\x17\xc5\x81\xae\x24\xca\xdd\xba\x2b\x12\x4d\xb1\x98\xc8\xb2\x2a\xba\x7e\x25\x14\x32\xa1\xd2\x49\x27\xdf\xdf\x59\xce\x3e\xbd\xbc\x36\x7b\xe7\xbd\x23\xe3\xb7\x3e\x3c\x3c\x7d\xef\x66\x7f\x7e\x75\x16\xcb\x5d\x00\x23\xb2\xc0\x45\x83\x97\x29\x0a\xc6\x65\xee\xd5\x8d\x01\x78\xff\xf5\x5f\xff\xa5\xb6\xb7\xb7\x7d\x36\xca\xf4\x91\xd5\xd5\x55\xf1\xa5\x2f\x7d\x49\xef\xfa\xaa\xfb\x86\x06\x2d\x09\x0a\xdd\xd0\xed\xcf\xc4\xf2\xfd\xb7\x7a\xf7\x3f\x7c\x6d\xf9\x8b\xf7\xdd\xea\xbd\xb8\x3a\xed\x3c\x9f\xe4\x74\x82\x80\x3e\x40\x51\x68\xcf\x21\xdb\x26\xcb\x2a\x24\x0a\x36\x08\xa5\xff\x17\x4c\x8c\x00\x28\x89\x14\x56\x92\x5c\x1c\x5b\x4e\xa3\x93\x87\x66\xf1\x4a\x92\x8b\xd9\x24\xc9\x47\xb3\x82\x7d\xe1\xdf\x4d\x9a\xb8\x01\x35\x18\x0c\x68\x63\x63\x43\x6d\x6d\x6d\x51\x9a\xa6\xf6\xfb\xb9\x8e\x3f\x77\xde\x3f\xf6\xd8\x63\xe2\x4f\xfe\xe4\x4f\xb0\xb2\xb2\xe2\x80\x16\xa5\x54\x0c\x20\x21\xa2\x84\x24\xba\x9b\xa3\xce\xfa\x43\xdb\xfd\x27\x4f\xdf\x5c\x7a\xf1\xf0\x28\x79\x21\xc9\xc4\x29\x01\x5a\xa2\xf2\x10\x2a\x3d\x79\xdb\xeb\x76\xd5\x82\xb3\xbe\xe6\xf4\x17\xdd\x3e\x4a\xd4\x57\xb2\x55\xb1\x50\x38\x94\x48\x71\x64\x39\x15\x77\x2f\xa7\x71\x07\x50\xb7\x76\xfa\xd9\xa8\xda\xe8\xa0\x00\xc8\x38\x8e\xd5\xca\xca\x8a\x5a\x5e\x5e\xa6\x92\x79\xa9\x03\x1f\x21\xb6\x3f\xdc\x17\xea\xe5\xb2\x02\x5c\xc6\x25\xc4\xa0\x1c\xc4\x22\x77\x2c\x71\x9f\x1a\xe6\x4b\xa4\x73\x52\x59\xb1\x09\x1d\x9b\xfc\xc6\x63\x64\x13\xec\xdc\xc6\xc9\xac\x4c\xd7\xab\x1f\xb4\xb8\x2e\xa5\xa4\x1f\x87\x4e\xd0\x7f\xe6\x6c\xb4\x05\x26\x4c\x59\xc4\xfa\x59\xc1\xb8\x50\xbf\x93\x53\x8f\xec\x6c\x78\xf0\x3a\x08\xd5\x05\x9a\xeb\xb9\x89\x61\x69\x62\x6d\xb8\x1f\xa0\xf9\x3b\xfa\xcf\xea\x50\x6e\x1b\xe3\x16\x4a\xaf\x89\xe9\xa9\x2b\x77\x5b\x98\x50\xba\xa1\x38\xda\xe2\x0a\xb9\x50\x1d\xd4\x31\x57\x21\xa6\x51\x00\x90\x5b\x5b\x5b\x18\x8d\x46\x7e\xbc\x7c\x55\x89\x99\xe7\xa0\xa0\xd2\xb4\x27\xf6\xc6\xab\xd1\x87\x4b\x7b\xf2\x64\x9c\xe6\x6b\x24\x91\xe8\x65\xc9\x66\x88\x03\x30\x43\x3d\x80\xa7\x88\x7c\x25\xe5\x80\x06\xbf\x55\x07\xa4\xb8\x41\x40\x3c\x9d\xd2\x2f\x1b\x4f\xb0\x4a\x80\xdc\x98\x14\x63\x48\x4c\x94\x9c\xd1\x61\x79\x70\x37\x1e\x61\x86\x09\xcb\x9f\x29\x8f\x8b\xce\x0a\x7c\xa2\xd8\x6b\xbd\x82\xc6\x82\x17\xcb\xc8\xe8\x25\xe1\x16\x68\xe9\xf8\xb8\xbc\x48\x7b\x62\x6b\xb4\x2e\x3e\x9c\x77\xc5\x2e\x84\x1d\xde\x45\x75\x62\x6e\x9d\xab\x63\x9c\xb5\x93\x57\xae\x5c\xc1\x7f\xff\xf7\x7f\x8b\xa7\x9e\x7a\x4a\x1e\x3e\x7c\x58\xc0\xb6\x85\xcc\x8b\x47\xc0\xef\xff\x84\x2c\x8b\x54\xb6\xd7\xcb\xd3\x49\x47\x8e\xf6\x96\xb2\x9d\xeb\x83\xf9\xd6\xd1\x51\xe7\xd8\xfa\xb8\x73\x74\x65\x1a\x6d\x2c\xcd\xa3\x7e\x92\x51\x2f\x96\x94\x90\x22\x21\x14\x04\x11\x84\xa6\x1b\x54\xf1\x69\xa5\x14\x4a\xe6\x02\x69\x1a\xc9\xe9\xa4\x23\x87\xc3\x6e\xbe\x7b\x6b\x69\xbe\x73\x63\x79\xbe\x75\x73\x79\x7e\x7d\xaf\x97\x6f\xcf\xe2\x7c\x08\xa2\x31\x14\xc6\x25\x68\x19\x83\x81\x16\xa5\x94\x99\x94\x5b\x0e\x83\x9b\x89\xab\x52\x4a\xf9\xca\x2b\xaf\xe0\xd2\xa5\x4b\xe0\xcb\x89\xb8\xdb\xd8\xd8\x10\x4f\x3d\xf5\x14\xee\xbb\xef\x3e\x3d\x0c\xa3\x59\x05\x51\x2e\x0d\x8f\x01\x24\x83\x59\xb4\x72\xff\x4e\xef\xd4\x99\x1b\x4b\x5f\x3a\x32\x4c\xbe\xbc\x34\x17\x67\x85\xa2\x35\xde\xe6\x39\x9b\x50\x6d\xe5\x2e\x88\x76\xfc\xb2\x05\x1d\x8e\x86\x54\x24\x22\x60\x6d\x69\x2e\x1e\x89\x65\x67\xad\x93\xd3\x46\x47\xd2\x4b\xef\x6f\x4e\xce\xdf\x58\x9e\xdf\xc8\x22\x35\x65\x49\x18\xc6\x41\x29\x25\x4f\x9c\x38\x21\x9e\x7d\xf6\x59\xf9\xdb\xdf\xfe\x16\xbb\xbb\xbb\xa1\xa2\xd7\xc9\x60\x71\xe4\xc8\x11\xac\xae\xae\x56\x86\x87\xca\xe9\x14\x31\x80\x64\x6d\x12\xaf\x3c\x74\xbd\xff\xa7\xf7\xef\xf4\xbe\xb5\x36\x8d\xff\xb4\x93\xd3\x3d\x84\x72\xff\x16\xf2\xca\x6b\x32\xe6\xd5\x0d\xc1\x99\x32\xe6\xc8\x09\x05\x47\x8c\xc0\xed\x5b\x22\x92\x6a\xa3\x9f\x46\x8f\xdf\xbd\x47\x83\x48\x22\x4e\x23\xf5\xe3\xcb\x6b\xd3\xad\xdc\xa5\x3a\x8c\x8c\xec\x76\xbb\x78\xf0\xc1\x07\xa5\x94\x12\xaf\xbe\xfa\xea\x22\xfa\xa5\x4d\x47\x35\x3a\x0e\x5c\x16\x51\x76\x0b\x25\xc8\x68\x52\xe3\x38\xb5\x28\x09\xce\x50\x51\xd0\x59\x99\x54\x69\xa0\x55\xcb\xcf\x09\x56\x0a\x47\xd7\x13\xf9\x9e\x10\xf8\x88\xfe\xf8\xb1\x29\x8f\xcd\x87\x7e\x27\x14\xc5\x89\x14\xfd\x24\x17\x3d\x28\x33\x4c\x56\x01\x2f\xfe\x12\xbb\x40\x96\x17\xfd\xa8\x75\xc3\x31\x75\xc3\x29\x4d\xf1\x87\xde\x2f\x4a\x7b\x1e\x64\xc8\x46\xbb\x3a\x10\xc4\x7f\xef\x04\x38\xfb\xa0\xf9\x40\x8d\xbf\x26\xee\xb6\xeb\xba\x67\xba\x0d\x98\xbc\x30\x45\x98\xa1\x5c\x61\x04\x20\x55\x11\x8d\x27\x87\xc4\xa7\x93\x43\xe2\xe3\x64\x2c\x8f\x75\x66\xea\xa8\xb3\x97\x09\x97\x3c\xcc\x5a\xd2\x2f\xca\xd1\x77\x03\xb3\xab\xa0\xc5\xfa\xe3\xed\xaf\x02\xd4\x0d\x90\xb0\xe9\xb8\x2b\x91\x94\x05\x09\x5e\xb6\x2c\xa0\xd2\x21\x74\x46\xdd\xf8\x2a\x4c\x8d\x0a\x3c\xd3\xb1\x38\x56\x87\x2d\x38\x79\x8f\x2a\x7e\x0c\x90\xf1\xfc\x78\x63\x58\x32\xc2\x74\x72\x48\x5c\x1a\xaf\x46\x9f\xca\x18\x63\xd8\x55\x3e\xfc\x1b\x55\xb6\xb0\x7f\xe3\x8d\x37\x24\x03\xa6\x4d\x7d\xcd\xb8\x0f\x3f\xfc\x50\x3e\xf4\xd0\x43\xe2\xf0\xe1\xc3\x65\x56\x28\x43\x21\x6f\x0d\x88\x45\x55\xa6\xda\x74\x09\x59\x1a\xc9\xec\xd6\x92\x1a\x0f\x93\xfc\xf6\xcd\xe5\xf9\xd6\x72\x1a\xad\xad\x4c\xe3\x8d\xd5\x49\xb4\x76\x68\x16\xaf\x2d\x65\xa2\x1f\xe7\x94\x74\x72\x8a\x23\x45\x89\x90\x24\x14\x15\x0b\x1f\x32\xa1\xd2\x4c\xa8\x6c\xd2\x91\xe3\x61\x37\xdf\xdb\x5d\xca\x76\xf6\xbb\xd9\xee\x28\x91\xbb\xc3\x6e\x7e\x3b\x8d\xe5\x50\x11\xa6\x28\x57\x0d\x51\xc1\x3c\xf1\x3f\xbd\x92\xc8\x59\x61\xc2\xe5\xb8\x52\xc5\x49\xd0\x75\x75\xb0\xb9\xb9\x29\x1e\x7f\xfc\x71\x3c\x60\x77\x14\xe6\x93\x4f\x0d\x68\xe9\xa7\x62\x70\xdf\xad\xee\xa9\x33\x37\x96\xbe\x76\x6c\x3f\xf9\x6a\x77\x2e\xce\x0a\xb0\x95\x55\xec\x73\x9a\x6b\xd4\x9b\xe4\x15\x9d\x11\x00\xc3\xee\xb4\x01\x4a\x3a\x39\x9d\x58\x9b\xc4\xbd\xd3\x37\x97\xfa\x91\xa4\x7e\xb4\x39\xfe\xcd\xf5\xc1\xfc\xfa\x3c\x56\xdc\x7f\xca\xe2\x93\xa7\x4f\x9f\x16\x17\x2f\x5e\x94\x0c\xb8\xd4\x29\x6c\x53\x47\x0f\x3e\xf8\x20\xd6\xd7\xd7\x75\x1d\xe8\x3a\xd1\x43\x65\x31\x14\x7a\x49\x4e\xfd\xd3\x37\x97\x1e\x3d\xb9\xd3\xfb\xd6\xda\x24\x7e\x2e\x96\xb4\x09\x14\xc7\xcb\x70\x25\xe4\xee\xd9\x83\x8a\xdd\xe0\x1b\xfe\x8e\xd1\xe3\x76\xd1\x4a\x1d\x13\x08\x42\x61\xd0\x9b\x8b\x87\xef\xda\x4f\xf0\xc8\xb5\xe5\x51\x2e\xd4\xff\xf7\xe9\x4a\xfa\x49\x66\xb7\xff\xd0\xe5\xca\x88\x08\xdd\x6e\x17\x8f\x3c\xf2\x88\x4c\xd3\x14\xaf\xbd\xf6\x9a\xd0\xfb\xc0\xb0\x4f\xb1\x08\xf9\xe1\xd7\x65\xd0\x78\xad\x63\x5c\xee\x44\xc1\x56\x1c\x5f\x55\xc4\xc0\x8c\xd4\xab\x8a\x24\xa9\x2c\x04\x34\xf4\xb7\x50\x4a\x95\xe3\x96\x45\x8d\x73\xcb\xa9\xce\x39\x86\x1c\xa3\xc0\xf8\x0e\xb9\xce\xa9\xb4\xe5\x17\xe5\x42\xd4\x87\x45\xe4\xe5\x0b\x0a\x20\x85\xa4\x93\x53\xaf\x93\x53\x4f\x28\x88\x9c\xdc\x33\x9a\x80\xca\x3d\x10\x60\x63\x50\x6d\xe8\x21\x3f\x75\xcc\x03\x07\x4a\x4d\xac\x80\x9f\x4e\x28\x4e\x3f\x4f\x22\x70\x5f\xc7\x6a\xb4\xb1\x3a\x41\xa6\x22\xe0\x37\x94\xd7\x45\xc1\x50\xad\x85\xb3\x60\xdc\x6d\x96\x74\x13\xbb\x23\xae\x5e\xbd\x8a\xf5\xf5\x75\xb9\xb1\xb1\x61\x80\x66\x39\x64\x18\xb3\x0d\xc8\xec\xb6\xef\x4b\x62\x67\xb2\x1a\x7d\xbc\xb4\x2f\x4f\xc6\xf3\x7c\x4d\x48\x24\x76\xdf\x13\x58\x8a\xc5\xd2\x14\xec\x5d\xd9\xaf\x4a\xe9\x64\x01\x85\x7e\x6f\x51\xb6\x99\x37\x52\xd1\xea\x6e\x5f\x31\x97\x6c\x1f\x95\x02\xfc\x58\x33\xce\x55\x1c\x06\x36\x39\xcc\x87\x89\xcf\xb0\x41\x7a\x47\x5b\x65\xb6\x68\x31\x40\x83\x95\x8f\x74\xb9\x8c\xf1\x60\x64\x47\x85\xa1\xa1\x92\x55\x30\x42\xdb\x48\xe0\x22\x72\xa5\xcb\xc1\x00\x17\x00\xa4\x5d\xba\x3e\xda\x88\x2e\xa5\x3d\xb1\xa3\x04\xe9\x79\x1b\xce\x4a\x99\xd0\x1c\x97\x37\xdf\x7c\x13\xa3\xd1\x68\x91\x36\xe9\xbc\xbf\x7c\xf9\x32\x56\x56\x56\xe4\xfa\xfa\x3a\x7f\xee\x1b\x6b\x7e\x1b\xd6\x00\x4a\x33\x41\xd3\x79\xac\xa6\xbb\x71\x36\xbc\xb5\x34\xbf\x99\x0c\xc4\x56\x7f\x2e\xfa\x4b\xf3\x68\xd0\xcd\x44\x2f\xce\x29\xe9\x48\x03\x5e\x62\x09\xc8\x79\xa4\xd2\x79\x24\xb3\x5c\xa8\x74\x16\xcb\xf1\xb8\x23\xc7\x93\x4e\x3e\x4c\x23\x35\x51\x84\x14\xe4\xcc\x5b\xd1\x7f\x63\xf6\x9b\x96\xc3\x66\x86\x8d\x62\x75\x22\x01\xc8\xf9\x7c\x2e\xdf\x79\xe7\x9d\x4a\x99\x79\x59\x36\x37\x37\xc5\x99\x33\x67\xb8\xbc\xd1\x9b\xa8\x25\xfa\xb7\x3b\x17\x83\x7b\x77\xbb\xa7\x4e\xdf\x58\x7a\xe1\xae\x02\xb4\x3c\x4c\x8a\x12\xce\x9e\xe8\x1f\x07\x74\x33\x52\xcd\xb0\x28\x15\x43\x14\x6e\x60\x83\x85\x03\x66\xaf\x82\xe8\x48\x71\x6c\x65\x42\x5f\x7c\x40\x16\x4b\x9e\x72\x31\x3e\x77\x7d\x90\x5e\x97\xc2\xf1\xef\xcc\xf5\x38\x71\xe2\x04\x86\xc3\xa1\xb8\x7d\xfb\x76\x93\x92\x16\x00\xe4\xa9\x53\xa7\xc4\x93\x4f\x3e\xc9\x97\x81\xf3\x39\x3e\x09\x14\x12\x02\x7a\xf7\xdf\xea\x9d\x3c\x7d\x63\xe9\xff\x5a\x9d\xc4\x7f\x16\x4b\x3a\x0a\x55\xce\x67\xa9\x74\x58\xd7\x00\xd0\xdd\x84\x2f\xc6\xad\x68\x33\xae\xcb\x54\xe0\x39\xeb\xe7\xe5\x4f\xd2\xcd\xc4\xc3\xf7\xde\xee\x7e\x3b\x8d\x54\x3a\x17\xea\xd5\x1b\x83\xf9\x56\x16\x29\xd7\x28\x2a\x64\x1c\xf4\x86\x82\xbf\xff\xfd\xef\xf5\x3e\x6e\x75\xb2\xb8\x4d\xf6\xd6\x19\x8a\x02\x70\xf7\x71\x09\x09\x65\x3f\x60\xc8\x55\x1a\xad\x1d\xaf\x76\x36\x72\x32\x19\xc9\x85\xca\xd2\x48\x4d\x73\x52\x69\x50\x78\xfa\xf1\x78\xff\x5d\xf9\xce\xa6\x19\x06\x59\x16\x93\x17\xfb\xdc\x5f\x76\xa4\xb8\x91\x68\x27\x1b\x3a\x7a\x83\x47\x4d\x0a\x42\x41\xc4\x92\xfa\xdd\x5c\x2c\xc5\x92\xe2\x3c\x52\xfe\x52\x36\xcd\xc0\x2c\x82\x38\xf5\xbb\x45\x87\x4d\xea\xe2\x6b\x63\x31\xea\xe2\x3e\x08\xbb\xd2\x04\x50\x9a\xe2\x6c\xcb\x77\xc8\xfa\x6c\x72\x6d\x40\xc9\xf7\xd7\x56\x0f\x8b\x96\x2f\x98\xc6\xc5\x8b\x17\xb1\xb1\xb1\x21\x36\x36\x36\x38\xe3\x28\x51\x4e\xca\x05\x3f\xaf\x06\x48\xf3\x18\xe3\xc9\x8a\xb8\x3a\x59\x11\x1f\x26\x13\x79\xb4\x33\x55\x47\x01\x18\xa0\x8d\x12\xb0\x73\xbb\x10\xe0\xb4\xb7\xaf\xdc\x59\x6e\x4c\xdb\xb6\x12\xa8\xd8\x59\xd6\x3e\xb2\x42\xce\xa6\xa7\x1b\xbc\x2b\x0c\xc9\xe9\x03\x8e\xf9\x66\xd2\x74\x15\x81\x89\x9b\x31\x21\x8a\xf4\x46\x77\x3c\x32\x3b\x67\x0c\xc4\x36\x85\x2c\xe6\x21\xb0\xee\x49\xde\x04\x61\x72\x46\xa3\xb8\x72\x73\x8d\x10\xeb\x47\x46\x18\x4f\x56\xa2\xf7\x46\xeb\xd1\x47\x32\x02\x3f\x30\x30\x85\xdd\x6f\xc7\x61\x13\x88\x08\x1f\x7d\xf4\x91\xcc\x32\x07\x6b\xb4\x01\x18\x23\x47\x2f\x5c\xb8\x20\x01\x88\x47\x1f\x7d\x54\xae\xad\xad\x71\x3f\x59\xc0\xa8\x31\xed\x05\x96\x09\x4a\x01\xf4\xca\xdf\x29\x11\x25\xf3\x58\x4d\x6f\xc7\xf9\xad\xdb\x4b\x79\xb1\x64\x58\x21\x16\x8a\x84\x90\xe8\x08\xa5\x19\x17\x48\x49\x6a\x5e\x9e\x49\xe3\x4c\x10\x67\x65\x0e\x81\x17\xfd\x3c\x2d\x99\x16\x5d\x37\x66\x8f\x13\xa5\x94\x4c\xd3\x54\x5e\xba\x74\x09\xaf\xbc\xf2\x4a\xad\xa5\xbc\xba\xba\x6a\xd8\x26\xb0\x61\x31\xcd\x2e\x10\x51\x12\xe5\xe8\x1f\xdb\x4f\xee\x39\x73\xa3\xff\x85\xbb\xf7\xba\x5f\xed\xcd\xc5\x59\x02\x25\xfc\x60\x50\xef\x07\x00\x9c\x61\xca\x10\x06\xf1\x19\x17\xaf\x79\x1a\x9d\xc1\x99\x4a\xdd\xde\x62\x45\x1b\x87\x66\xf1\x9f\x9e\xb8\xd5\x9d\xce\x62\x39\x9e\xc6\xf2\x77\xb7\x97\xb2\x5d\x65\xe3\xd0\x75\x2a\x81\x62\xbe\x0a\x00\xf9\xd6\x5b\x6f\x89\xf2\x1c\xab\x50\xfb\x90\x00\xf0\xb9\xcf\x7d\x0e\x6b\x6b\x6b\x7c\xc8\x4c\x83\x96\x18\x40\x2c\x14\x7a\xeb\x93\xce\xe6\x9f\x7c\xba\xfc\xc2\xc6\xb8\xf3\x7c\x47\xd2\x51\x02\x09\x5f\x57\x15\x5d\xca\xca\x81\xf2\xb1\x61\x62\xed\xc4\x7a\x77\x53\x56\xa7\x22\x0c\x6b\xe3\x02\x1c\x72\x2b\x5a\xd7\x53\xb2\x34\x17\x8f\xdf\xb7\xdb\x1d\x4f\x3a\xf9\x70\x56\x4c\x1e\x97\x70\xf7\xf2\x31\xf2\x9b\x88\xe4\xfd\xf7\xdf\x8f\x8f\x3f\xfe\x58\xd4\x4c\xd8\xae\xc3\x18\x8b\x18\x92\x12\x08\xaf\x2a\xaa\x1d\xcb\x47\x55\xb9\x08\x2f\x5c\x9d\xd3\xc2\x40\x02\xc5\x59\x18\x69\x24\xc7\x99\x50\xd3\x10\xb5\xe5\x3a\x8f\x54\x56\xac\xa2\x19\xed\x0c\x47\x58\x32\xe4\xe8\x0b\xb8\x10\x14\x2d\x03\x9a\x5d\x28\xf5\x2b\x23\xe4\x99\xb2\xb0\xe9\x8a\x48\x52\xd2\xcd\x68\x90\xe4\x22\x49\x63\x83\x2e\x9d\x7a\x08\x08\x28\xdf\xb5\x31\x5d\xa8\x79\xb7\xb0\xe5\x17\x78\xb6\xc8\xb0\x4a\x1b\x4a\xae\xcb\xd7\x22\xf9\x08\xbd\x6b\x8b\xa7\xcd\x2d\x5a\x17\x07\x61\x71\x78\xbc\xad\xf9\xdb\xdf\xdf\xc7\x70\x38\x94\x83\xc1\x80\x6f\x24\xa5\x99\x17\xbd\x7b\x6a\x5a\xee\x40\x3a\x9d\x2d\x89\x9d\xe1\x7a\x74\xa9\x3b\x92\xf7\xc4\xf3\x7c\x45\x94\x1b\x8f\xe9\x69\xa9\xfc\x8c\x20\x33\x20\x63\x07\xee\x19\x6b\x51\xf8\x31\xc3\x37\x54\x6d\x73\xce\x9c\x14\x6f\x4f\x17\x7f\xab\x7c\x2a\xfd\x68\x36\x43\x8b\x41\x47\x23\x54\x4c\x60\x7b\x6f\x04\xa8\x61\x3c\xf4\x44\xc2\x8a\x06\x29\xfd\x7b\x66\x33\x57\x56\x7e\x7f\xd6\x41\xd9\xe4\x44\xe3\x91\xd5\x99\x3e\x36\x04\x44\x50\x02\x59\xba\x44\xd7\xf7\x8e\xc4\x17\xa6\xcb\x62\x07\x05\xdb\x92\x7a\xf3\x5b\x1c\x66\x41\x83\x98\x97\x5e\x7a\xa9\x6e\x35\x51\x93\xa1\x61\xda\xda\x85\x0b\x17\xa4\x52\x4a\x3c\xf1\xc4\x13\xf2\xd0\xa1\x43\xc6\x83\x9e\xef\xc2\x41\x2e\x03\x08\x86\x75\x41\x09\x22\x94\x52\x09\x80\x5e\x09\x28\x04\x8a\x0d\xda\x62\x10\x89\x9c\x94\xc8\x05\x44\x01\xfa\x1c\xd0\x0c\xb0\x61\x1e\xb8\x60\x4d\x1f\x41\xa0\xe3\xd7\x60\x85\xfb\xab\xb0\x50\x69\x9a\xca\x0f\x3f\xfc\x10\xbf\xfc\xe5\x2f\x9b\x8c\x1d\x71\xea\xd4\x29\x3c\xf2\xc8\x23\xbe\x7e\x88\x4b\xa6\x25\x06\xd0\x5b\x9d\xc6\x6b\x0f\xdc\xec\x7d\xee\xee\xfd\xe4\xcb\x4b\x99\x78\x98\x80\x9e\x6e\x81\xbe\x42\xf5\xc5\x35\xc0\x7b\x85\xaf\x94\x5d\xc6\xc5\x32\x70\x70\xfd\xd9\xaf\x61\xfe\x2b\x28\x44\x8a\x36\x56\xa7\xf1\x33\xf7\xdf\xea\x0d\xa7\x1d\x39\x7c\x27\x1e\xbf\x39\xe9\x48\xff\xb8\x00\x0d\x40\xe4\x63\x8f\x3d\x26\x46\xa3\x91\x3c\x7f\xfe\x7c\x9d\x8c\x11\x9b\x9b\x9b\x88\xe3\x58\x7f\x1f\x7f\xa3\xbd\x98\x40\xbd\xff\x9f\xbd\x77\xed\xb1\xe3\xb8\xce\x46\x9f\x55\x7d\xd9\x7b\xf6\xec\x19\x0e\x87\xe4\x90\xa2\x48\x89\x96\x2d\xc7\x91\x1d\x45\x4e\x1c\xdb\x70\x12\xbf\x3e\x81\x91\x1c\x07\x48\xe0\x2f\x71\x00\xe7\x53\x92\xff\x15\x24\x41\x10\xc0\x41\x10\xdb\xc8\xdd\x3e\xb1\x1d\xc3\x71\x6c\xcb\xb1\x6e\x14\x25\x51\x12\x45\x8e\x78\x19\xce\x8d\x33\x7b\xf6\xb5\x77\x77\xd5\xf9\xd0\x5d\xd5\xab\xaa\xab\x2f\x43\x39\xef\x7b\x0e\x90\x02\x66\x76\x5f\xea\xde\xab\x56\x3d\xf5\xd4\xaa\xaa\x5e\x2a\x86\xcf\xed\xac\x3e\xb7\x75\x12\xff\xdf\x51\x46\x57\x80\x72\x73\x53\xeb\x64\x77\xb0\xc1\x86\x7b\xd6\x5f\xd1\x58\x2a\x7d\x8e\x6e\x17\xd0\x00\xa5\xbe\x4f\xe2\x76\xa4\xda\x9b\x50\xe8\xaf\x26\xc1\x0b\x4f\x3d\xea\xdf\x3f\x58\x5d\xee\xcf\x22\x39\x9f\x47\xd2\xb7\xe7\x8d\x50\x4a\xe1\x8b\x5f\xfc\x22\xfe\xfa\xaf\xff\x5a\x3a\xb6\x7f\xae\xeb\xa2\x93\xbd\xcf\xeb\x4e\x87\xf6\x45\x5a\x37\xb5\x50\x41\x51\x7c\x03\x3a\xcd\xb4\x70\xa3\xae\x54\xa8\x74\x11\xca\x79\x6e\xfc\x64\x0d\xa5\xca\x4a\x53\x25\x0a\x26\xf6\xbc\x44\xe3\x8c\x2e\x07\x90\x1b\xa5\x11\x53\x76\x7c\xc9\x64\x35\x8c\x46\xd0\x46\x29\x13\x15\x34\x79\x75\xda\xc8\x9e\x0f\x2d\x47\xc2\x81\xa4\x38\x4e\xc5\x20\x4a\x29\x56\xb1\xe2\x2c\x8b\x36\xb8\x32\x61\x7b\xbd\x1e\x7a\xbd\x9e\x7b\x38\x55\xd3\x94\x0e\x77\xbe\x6f\xd0\x04\x64\xea\xa6\x9d\xdc\xb4\xe1\x09\xe3\xc6\xc7\xfd\xd6\x4d\x13\xb9\xf1\xbb\x69\xf9\xf2\xe7\xf3\xd3\x94\x8f\xa6\xfa\xe1\xce\x17\xb7\x8b\xd8\xdb\xa6\xb6\x4e\xfb\x5c\x00\x90\xaf\xbd\xf6\x9a\x0c\xc3\x50\x7c\xea\x53\x9f\xd2\xd3\xa3\xfa\xd0\x32\x0d\x5a\x62\x14\x23\x67\xa5\x54\x2c\x23\x1a\xcf\xd6\x83\x7b\x93\xb3\xf2\x9d\xde\x54\x6e\xc5\x53\x75\x25\xef\x87\x4b\xc0\xa2\x7b\x66\x8b\x07\xb1\x78\x70\xc6\x6c\x14\x2f\xad\x25\xd2\x54\xca\xb0\xe9\xfc\x5d\x24\xe0\x03\x20\x5c\x41\x22\xbf\xb7\x40\xb8\x95\x3f\x4b\x87\xc2\x42\x1b\xba\xfd\x70\xca\x9f\x2d\x67\xce\x3b\x99\x22\x2d\x33\x62\xd4\xc0\x03\xa5\x2e\x00\x5b\xa6\x6d\xa6\x9f\x4c\xe1\x4d\x1d\x18\x3d\x51\x62\x21\x99\x45\x18\x4d\x36\x82\x37\x4f\x2e\x84\xef\xa1\x98\x26\x61\x46\xa7\x2e\xdb\xc2\xcf\x27\xea\x02\xf4\x5b\x41\xfd\x1b\x6f\xbc\x21\xb3\x2c\x13\x9f\xf9\xcc\x67\x64\xbf\xdf\x37\x36\x12\x80\xb5\xac\xd8\x80\x16\x06\x74\xe3\x02\xe8\xc6\x85\xec\x4c\x51\x2c\x95\x45\xb1\x3f\x10\x1b\xb9\x17\x9f\x89\x78\xda\x9c\x1d\xc8\xed\xab\xd8\xb4\x65\x01\x56\x34\x38\xe2\x40\x2e\xe1\x61\xb5\x1c\x2f\x97\x4b\xf9\xde\x7b\xef\xe1\xfb\xdf\xff\x7e\x53\x99\x45\xa1\xeb\xcc\x3d\xfb\x33\xa0\x45\x48\xf4\xaf\x1c\xf5\xae\x3d\x71\x12\xff\xfa\x20\x11\x1f\x13\x8a\x06\x9a\x7c\x73\xfa\x0f\x23\x4e\xd0\x9f\xdb\x00\x0d\xb2\x46\xbd\xf6\xd1\x11\x60\xc0\x18\x46\x1e\x73\x3f\x45\x27\xae\x98\xe8\x13\x98\x0c\x01\xa1\x14\x5b\xe7\xa6\xd1\xe7\xae\x1d\xf6\x8f\xc6\xbd\xec\xf0\xf6\xd9\xf9\x76\x16\x18\x9b\x0d\x03\x0a\xf5\xb7\xec\xf5\x7a\x88\xe3\x58\x24\x49\xe2\xd3\xcd\xf2\x4b\x5f\xfa\x92\xe8\xf7\xfb\x82\x8a\x85\x1c\xc5\x6f\x48\x85\x51\x6e\x90\x51\x7f\x73\x1a\x5d\x7a\xea\x51\xef\xff\xea\xa7\xe2\x23\xa4\xfb\x66\x36\x5e\x50\xa6\x9c\xc4\x9a\x18\xb3\x49\x33\xe5\xd5\x95\xc5\x06\x1a\x0c\xb4\xf0\xee\xd0\x9a\x4e\x43\x39\xc0\xb1\xfa\xdf\xa2\x8d\x86\x12\x1b\x67\xe6\xc1\xa7\x9f\xd9\x5f\xb9\x7b\xd2\xcb\x8e\x1e\xac\x2f\x12\x29\x2a\xc0\xc5\xc8\xf7\xea\xea\x2a\x66\xb3\x99\x60\x86\xdb\x6d\x83\xdf\x2e\x03\x6a\x01\x40\xba\x1d\x12\x8f\x84\x47\xe4\x76\x00\x15\xe4\xe9\x8b\x83\x37\x22\xde\x58\x0b\xe0\x32\x5b\x06\x6a\x2e\x09\xa9\xae\x3d\x62\x42\xa9\x9d\x25\xa4\xc8\x3f\x94\xb9\x2f\x84\x4d\x69\x5a\xdc\xa5\x93\x99\xd2\xd3\x68\xb5\x8c\x8f\xeb\x6b\x5b\x91\x97\xab\x80\xdc\xfb\x22\x89\xe2\x3e\x90\x88\xe3\x54\x0c\xe2\x8c\x62\xe4\x34\x28\x5f\x5d\x64\xb9\x17\x5e\x78\x01\x2f\xbc\xf0\x82\x55\x3f\x8e\xf3\x75\xa4\xfa\xb7\xae\x13\x86\xc7\x8f\x1b\x97\xdb\xd8\x7c\x9d\xb8\xcf\x35\x31\x0f\xee\xb7\xf6\x81\x03\x5f\x5a\x6e\x18\x37\xbe\x36\xc6\xa3\x4d\xa8\xeb\xfc\xf9\x00\x9c\x2f\x5c\x5d\x7c\x75\xcf\xbd\x75\xc7\xa7\x4a\x35\xcb\xa8\x94\xd2\x23\x68\x6d\xbf\x90\x28\xa5\xe6\xc9\x0a\x1d\x8e\x37\x83\x5b\xd3\xf5\xe0\x96\x0c\x31\x55\xa8\xca\x9f\x75\x5d\x91\x45\x47\xf9\xb0\x8d\xa8\x74\x3b\x50\x9c\x95\xd1\x57\x06\x58\x94\x61\xb8\x33\x53\x38\x2c\xcd\x72\x3e\xbb\x78\xaf\xf8\x3b\x14\xe9\x30\x30\x43\x85\x3d\x19\xcb\x3e\xe9\xb6\x49\x65\xdb\xb4\x46\x80\x44\xc5\x20\x82\x4c\x1b\xd7\x8a\x99\x54\xd9\x4e\x4d\xd6\x59\xdb\xd6\x79\x34\x59\xcf\xd9\x96\x64\x31\x08\xee\x8f\x2e\x46\xd7\x97\x31\x46\x28\xa6\x40\xf4\x54\x08\xeb\xbc\x2d\xb6\x45\x29\x25\x3d\x67\xd3\xb8\xce\x27\xe7\xdc\x99\x30\x37\x6f\xde\xc4\x0f\x7e\xf0\x03\x48\x29\xb9\x4c\x68\x70\x60\x58\x8e\x02\x50\x4d\x81\x7c\x95\x8f\x52\x6a\x4c\xf9\x6a\x9f\x11\x80\x91\x52\xea\x08\x80\xf9\x23\xa2\x23\xfe\x4c\x5f\x3b\xbf\x87\xc5\xfb\x11\x11\x1d\xe9\xb8\x50\x2c\x7b\x56\x4a\x69\x03\xdd\xb9\x52\x6a\x5e\x18\x91\x5b\xf5\x21\xa5\x94\x6f\xbf\xfd\xb6\x06\x2d\x6e\x99\xad\xba\xf9\xd5\x5f\xfd\x55\x3c\xff\xfc\xf3\xee\x61\x89\xa1\x5e\xee\x0b\x85\xf0\xfc\x24\xde\xbc\x72\xd4\xff\xb5\x33\xb3\xe8\x85\x40\x8a\x8d\xfc\xdb\x39\x0c\x8b\x3b\x05\xaa\x4a\xb9\x56\x05\xc5\xae\x0c\xcb\xc8\x5b\x8b\x2a\x15\x3c\x13\x73\x9d\x80\xb2\x64\x31\xbf\xcf\x65\x31\x97\xdf\x22\x98\x88\x52\xba\x7c\x7e\x12\x7d\xee\xea\xa3\xde\x0b\xfd\x94\x86\x50\x88\x0b\xe6\x2b\x2c\xf4\xbc\x3e\x18\x12\x9f\xfc\xe4\x27\xc5\x27\x3f\xf9\x49\xaf\x0c\x04\x41\xa0\x07\xb5\x86\x71\x41\xd9\x5f\x84\x50\x88\x57\x52\xb1\xfe\xec\xde\xca\x73\x6b\x8b\xf0\x53\x42\xd1\x40\xf7\x78\xa6\x69\xaa\x12\x94\x99\x71\x85\x06\xfb\xda\xe9\x32\xf3\x36\xc9\x07\x0c\x28\xab\x53\x59\xa8\xcd\xd6\x17\xfa\x01\xf7\xa2\xd3\x89\xd3\xe0\xa9\x8b\xe3\xf8\xb3\x57\x1f\xf5\x3f\xb6\x3e\x0f\x37\x90\x03\x69\x03\xa6\x75\x99\x01\x88\x2f\x7f\xf9\xcb\x62\x73\x73\xd3\x57\x27\x95\x3a\x2a\x7e\x3b\x33\x30\x75\xa3\xd8\xd3\xd8\x1b\xb8\x7e\x8c\x5f\xab\xc3\x2f\x2c\x8c\x95\x52\x52\x0a\xc8\x65\xa0\xe6\x4b\x21\xa7\x92\xf2\xc3\x16\x75\xcd\x1a\xd5\x47\x96\x18\x96\xce\x92\x65\xbd\xe7\x45\xa1\x9a\xa9\xf4\x5f\xca\x2a\x83\x9c\xec\xb9\xfb\xab\xd1\xa5\x9b\x76\xe5\x1d\x7b\x2f\x14\xc5\x71\x46\xc3\x28\x13\x31\x43\xd2\x12\x0c\xc4\x68\x20\xe3\xa1\xe6\x38\xd8\x70\x59\x02\x17\xac\xb8\x4a\xb3\x6e\x8a\xae\x09\x04\xd4\x75\xde\xbe\x74\x9a\xc0\x8c\x8f\x39\xa9\x4b\xa3\x69\xfa\xd0\xe7\xa7\x4b\x1e\xf4\xbb\xba\x3a\xe0\xce\x2d\xa3\x1b\xc6\x97\x56\x53\xdc\xa7\x01\x79\xfc\xcf\x4c\x45\xe8\x69\xa2\xa2\x83\x9a\x43\xd0\x74\x3e\x0c\x1e\x8c\xb6\xc2\x1b\xf3\xd5\xe0\x36\x48\x49\xcf\xae\x43\xb9\x02\xd2\x42\xae\x97\x4e\x03\xb0\x34\x57\xd1\x16\x2c\xff\x0a\xc6\xbe\xa5\x02\x83\x4c\x67\x6f\xd1\x21\xce\x40\xc0\x19\xee\x2a\xa5\xb1\x85\x01\x19\xda\x9f\xdb\xd1\x38\x7a\x14\x26\x91\xe2\xf0\x22\xd3\x09\x95\xa3\x0f\x13\x97\x32\x05\x2c\x61\x57\xb9\xa1\x4b\xa9\xb0\x35\x10\x82\x52\xac\x8e\x94\xee\xa0\xd2\xc5\x40\xec\x8e\xb6\x82\x97\x47\x17\xc2\x3b\x54\xae\x9c\x71\x8d\x72\x65\xf1\x6d\x0c\xe8\x4d\xd3\x14\x7f\xf6\x67\x7f\xa6\xc1\x4b\x13\xeb\xc6\x7f\xdd\x6b\x2b\xcc\x7b\xef\xbd\x27\xff\xe9\x9f\xfe\xc9\x8c\x48\xc9\x5e\x2a\x6f\xa6\x12\x91\x03\x18\x03\x5e\x50\x82\x8c\x11\x11\x8d\x60\x03\x92\x43\x22\x3a\x2c\xae\x8f\xf4\x35\xfb\xe5\x40\xc5\xc4\x53\xc4\x6d\x00\x0b\x4a\xdb\x16\xbe\x2c\xdc\xd8\x72\xbc\xf2\xca\x2b\xf8\xc1\x0f\x7e\xe0\xa9\x82\x4a\x39\x35\x28\xe3\x75\x61\xec\x5a\x00\x84\x71\x46\x83\x8f\xec\xf5\x3f\x76\x71\x1c\x7d\x3e\x4e\xe9\x12\x15\xab\x32\xb9\x4c\x5b\x36\x4d\x45\x8f\x6b\xe3\x6b\xaa\xfc\x94\x58\xbb\x64\xde\x5d\xe0\x63\x80\x30\x8b\xc6\xe8\xf4\x42\x20\x4d\xd2\x8a\xe2\x95\x44\x5c\xbb\x38\x8a\x7f\xfd\xea\xa3\xfe\x15\xca\xa7\xea\xf4\x5e\x2b\x21\x60\xad\x92\xaa\x75\x7f\xfa\xa7\x7f\x2a\xf4\x46\x73\x8c\x91\x37\x7b\xb6\x84\x92\xfa\x9b\x93\xf0\xd2\x93\xc7\xbd\x5f\x8f\x53\xba\x62\xf2\xc8\xda\x2c\xef\xdf\x78\xe6\xdd\x7e\xaf\x68\x1d\xe6\x01\x39\xf5\x63\xc0\x8f\xc3\xd8\x56\x63\x66\xaa\x85\x01\x20\x91\xaf\x02\x7b\xee\xf2\x28\xfe\xe4\xc6\x2c\xbc\x84\xdc\x06\xcb\x07\x5e\x4e\xe3\xdc\xfe\xa4\x09\x6f\x08\xee\xb1\x2e\x22\xcb\x73\x5b\x64\xda\x39\x0d\x53\x5f\x5b\xef\x52\xa1\x92\x24\x54\x53\x29\xf2\xb5\xf2\x7c\xea\x86\x23\x43\xfd\x8c\x5f\xbb\xdf\xcf\x8c\xda\xcc\x6a\x0b\xdb\x4f\xb9\x95\x55\x09\x5f\xec\x7b\x18\xc5\x4e\x15\x49\x67\x1e\xdc\x42\x2b\xea\xf7\x53\xb1\xb1\xb2\x14\x43\x94\x16\xe2\x16\x6d\xeb\x8c\x3a\x7c\xce\xc7\x56\xb8\x60\xc2\xe7\xa7\x6e\xda\xa8\x0e\x6c\x3e\x16\xf8\x74\xee\xeb\xa6\x7e\xdc\xbc\x77\x49\xb3\x2d\x4c\x5b\x7e\xdb\xd2\xf1\x01\xb5\x26\xd6\xa7\x4b\xdc\xad\x75\xfa\xca\x2b\xaf\x80\xef\x20\x49\xb6\x81\x7a\xc2\xfe\xcc\x4a\x8e\x2c\xc2\x68\xbc\x19\xdc\x39\xbe\x14\xbe\xbc\x58\x11\x3b\x0e\x54\x2f\xe2\x01\x1b\x41\x32\xed\xeb\x78\x55\x9c\x71\x01\xa0\xf7\xfb\x26\x4b\x13\xf9\xc2\x98\x5e\x83\x01\x13\xc0\x6a\x49\xe6\x85\xfb\x9c\xdd\x93\xb3\xf2\x8f\xed\xac\x9b\x67\x97\x15\xc4\xb0\x9f\x0c\x00\xb1\x3c\x68\x06\xa9\x3a\xf8\x60\x9a\x9a\xe5\x4d\xe7\x99\x72\xa6\x45\xa6\x3d\x3a\x1c\x9f\x0b\xae\x1f\x3d\x11\xbd\x01\xdb\xf8\x94\x77\xd4\x06\xbc\x90\x6d\x1b\xc2\x5d\x17\x39\x6e\x73\x12\x00\x76\x76\x76\xf0\xf5\xaf\x7f\xdd\x27\x6f\x16\xf3\x52\xe4\x4b\x6f\x8a\xc7\xf7\x56\x19\xa3\x04\x34\xfa\xcf\x07\x4c\xcc\x7b\xa5\x14\x7f\xc6\x57\x0f\x99\x7a\x28\x18\x41\x3d\xb8\xb4\xf6\xb2\xf9\xf1\x8f\x7f\x2c\x7f\xf6\xb3\x9f\xb9\xe5\xf1\xea\xb3\xff\xf5\xbf\xfe\x97\xf8\xc5\x5f\xfc\x45\x57\xef\x09\x94\x9d\x5a\xff\xcc\x3c\xdc\xb8\x38\xee\x7d\x66\x25\x09\xae\x11\xd0\xb7\x95\x71\xc9\xd0\x29\x76\xeb\x02\x8e\xb2\x43\xe6\xc3\x58\xa7\x31\x18\x79\x60\xf7\x3e\xf5\xee\x09\xa6\xd3\x08\x14\x0d\xcf\x2c\xc2\xe7\x9e\x3a\xea\xff\xda\x4a\x22\x06\xc8\x3b\x6a\xce\x20\x99\x7a\xf8\xc4\x27\x3e\x81\xdf\xf8\x8d\xdf\xe8\x32\x8b\xc1\x97\x40\xf7\x87\x8b\x60\xf3\xc3\x07\x2b\xcf\x0d\x17\xc1\x27\x28\x8f\xdf\xca\x88\x52\x36\xb3\xa2\xac\x32\x97\x45\xe0\xf9\xb6\x5e\xf2\x5b\x7f\xd3\x61\x4e\x79\x2f\xb9\x9f\x50\xd2\xe6\xfa\x3c\xfc\xd8\xa5\x93\xf8\x99\x33\xb3\x60\x1d\xf6\xea\x28\xd3\xd7\x29\xa5\xf0\x7b\xbf\xf7\x7b\xb8\x72\xe5\x4a\x1b\x20\x39\x15\xbe\x00\x9a\x8d\x73\xf9\xb5\xaf\x23\xad\x84\x7b\xef\xbd\xf7\x40\x44\xf8\xcd\xdf\xfc\x4d\x77\xae\x55\xdb\xb8\x98\xf9\xd2\x34\xc8\xed\x5c\x8a\x13\x3a\x3d\x60\x84\xb9\x8a\x65\x1e\xca\xd5\x10\xfc\x21\x9c\x79\x78\xf3\xca\x03\xb3\x35\x84\xaf\x7c\xe4\xca\x99\xb7\xb5\x06\xb6\x42\x21\xec\x65\x62\xd8\x5f\x8a\xa1\x90\x08\xa5\x30\x1b\x2b\x99\x79\x67\x4f\xd8\xa6\x29\x1f\xee\xdc\x4e\xd5\xad\xf7\x0f\xa2\x4c\xbb\xcc\xdd\xd7\x85\xf9\x79\xa4\x7f\x9a\x74\x1e\xd7\xfd\x77\xe5\xaf\x39\x51\x29\x65\x9a\xa6\x7a\x29\x3c\xff\x86\xfa\x14\xda\x04\xb9\xd2\x9b\x17\xca\x6b\x0a\xa2\x30\xed\xe1\x70\x74\x21\xbc\x15\xcd\xe4\xf9\x60\xb9\x1c\x44\x4b\xe4\xcb\x50\x0a\x16\x84\x0b\xb0\x4b\x0f\xfb\x6c\x01\x50\x06\x76\x72\xa8\x57\xed\x94\xef\xab\xa2\x5d\x8e\xdd\xdc\x56\x56\x1f\x2f\x7f\xca\xde\x3b\x9a\x95\x7c\x41\x9d\x36\x68\x6c\x76\xbc\x38\x4b\x99\x73\x59\xf4\x48\x90\x97\x45\x8f\xba\xb3\x88\xc6\x93\xb3\xc1\x3b\x47\x97\xc2\x1b\x49\x8f\x8e\x40\x66\x7f\x12\x6e\x94\x5a\x39\x58\x51\x29\x85\xc9\x64\x22\xff\xe1\x1f\xfe\xc1\x97\x78\x9d\xeb\x2c\x6b\x4a\x29\x79\x70\x70\x20\xbe\xf6\xb5\xaf\x49\x00\xf8\x83\x3f\xf8\x03\x08\x61\xe9\x65\xae\x6f\x05\x4a\xb9\x71\x0f\x73\xe5\x7f\xda\xf9\x98\x72\x3d\x68\x4c\x99\x4c\x5a\xb6\x2b\xca\xde\xbb\xc6\xc8\xed\x77\xbf\xfb\x5d\xb9\xbb\xbb\x8b\xd9\x6c\xa6\xb7\xf3\xe7\x6c\xb0\xdb\x19\x4b\x00\x88\xa2\x08\xc5\xd4\x88\x61\x16\x4c\x27\xad\x10\x12\xd0\xbf\x38\x8a\x2f\xaf\xcd\x83\x8f\x05\x8a\xd6\xbd\xc2\xc0\x99\x11\x06\x7a\x7d\x9d\x74\x75\x58\xdb\xec\x0c\x79\xc8\xae\x5d\xc6\x42\xbb\x42\x96\xc2\x38\x15\x5b\xe7\x27\xd1\xa7\xae\x1c\xf7\xff\xeb\xe6\xd6\xf4\x1d\xe4\xec\x82\xb6\x49\x32\xdf\x20\x08\x02\x84\x61\x68\xea\xbe\xdf\xef\x8b\xdf\xff\xfd\xdf\xe7\xc9\xf3\xb3\x88\xcc\x5f\x9c\xd1\xc6\xe6\x24\x7a\xb6\x58\x45\x54\xa6\x0f\xcd\x7c\x38\xad\xca\x1d\xb8\x38\x4d\xa5\xb6\xbe\x9c\xb1\x86\xdb\xba\x2b\xb3\x0d\x64\x85\x66\x8e\xc4\xca\x52\x5c\x39\x37\x89\x9e\x5d\x9f\x87\x37\x8f\x57\xb2\x11\xca\xd5\x67\x7a\xaf\x22\x41\x44\x32\x8a\x22\xc1\xf4\x20\xd0\x61\x1a\xc8\xe3\xaf\xe2\xbf\x6e\xde\xd6\x87\x90\x9a\x46\xc2\x12\x00\x92\x24\xc1\x64\x32\x31\x73\x79\x80\xa1\x0c\xb5\x1f\xb3\x29\x57\x46\x2a\xc9\x6d\x5c\x54\x52\xa1\xf4\x0a\x57\xb2\xe3\x76\xe5\xe6\xae\x98\xbb\x57\x0c\x38\x93\x53\xf1\xd6\xfc\xbb\x9b\x04\x55\x3e\xa4\x8e\xdf\x3c\xe6\x46\x84\x1e\x47\x0a\x61\x94\x8a\xe1\xca\x32\x58\x8b\x32\x61\xe6\x3d\x4b\x5b\x00\xb3\xb2\x84\x3b\x5e\xbf\x80\x5f\x01\xf1\x77\xee\xaf\x3b\xc5\x51\x37\x3d\xd3\xa4\xdc\xea\x18\xb5\xa6\x78\xeb\xa6\x5b\xea\xc2\x35\x4d\xb1\xd4\x95\xa1\x69\xaa\xe9\x34\xd7\x4d\x75\x59\xe7\xb7\x0e\xf5\x37\x4d\x2f\x79\xf3\xb1\xbd\xbd\x8d\x17\x5f\x7c\xd1\xd4\x31\x9b\x82\x30\x9b\xd0\x11\x5b\x5d\xa4\x94\x9a\x2b\xa2\x69\xb2\x42\x7b\x47\x97\xc2\x1b\xd3\x8d\xe0\x66\x16\x20\x31\xf2\xaa\x19\x11\x23\xe8\xa5\x24\x1b\x1b\x2e\x2e\xb8\xca\xfa\x31\xfe\x6c\xa0\x52\x04\x50\x9e\x6b\x76\x08\x0c\xe9\x60\x2a\x4f\x57\x29\x4f\x7e\x4c\x3e\x50\x12\x37\x6c\xb8\x9c\x83\x0b\x65\xda\x93\x95\x41\x36\xbd\xa3\xa7\x8c\x88\xe5\xd7\xd8\xd3\xa0\xcc\xbf\x3d\x12\xe5\x85\xcd\xef\x65\x88\xe9\x74\x4d\x6c\x1f\x6f\x85\x37\x66\xeb\xc1\x3d\x08\xaa\x30\x0d\x54\x2e\x37\xb6\x56\x46\x10\x11\xa4\x94\x18\x8d\x46\xae\x12\xf5\x5d\xfb\xda\x44\xdb\xa8\x52\x48\x29\x71\x7c\x7c\x8c\xe3\xe3\x63\xf9\x0f\xff\xf0\x0f\x98\xcd\x66\x52\x29\xc5\xe5\xc4\x30\x30\x54\x1c\xda\x8a\xfa\x25\xcc\x53\xe7\xda\x3d\x5f\x88\xb3\x4b\xda\x30\xd9\x9c\x9d\xc5\x7e\x79\xda\xf8\xee\x77\xbf\x2b\xef\xdc\xb9\x83\xe3\xe3\x63\x24\x09\xdf\xba\xc4\x3b\x4d\x2c\x01\xe0\x73\x9f\xfb\x9c\x78\xe2\x89\x27\x00\x94\x7a\x9f\xec\xc3\x14\xe3\x5e\x2a\xfa\x97\x4e\xe2\x5f\x58\x59\x8a\x2b\x22\xdf\xb7\x24\x17\x25\x87\x62\xd7\x9f\x5c\x4f\x6f\x90\x2a\x9f\x11\xf3\x6f\xc2\xd9\xe2\xf8\x58\xce\x6a\x3e\x5a\x9e\x40\x10\x0a\x83\x41\x12\x5c\x7b\x62\x14\x7f\x84\x14\xfa\x50\xd6\xb4\x88\xf5\xfd\xaf\x5c\xb9\x82\xcf\x7c\xe6\x33\xa6\x1f\x28\x96\x3f\xbb\x7f\xc6\xde\x27\x4e\xa9\xbf\x31\x0b\xcf\xaf\x2e\x83\xa7\x72\xdb\x96\x32\x13\xc4\xcb\xa6\xca\xfc\x19\x36\x12\x8c\x7d\x61\x1d\x1c\xc1\x0e\x9b\xb7\x27\x58\x15\x54\x68\x02\xeb\x81\x3b\xe6\x31\x53\xc6\xfc\x71\xd1\x3e\x43\x49\xe7\xcf\xcc\xc2\x8f\x6c\x4e\xa3\x2b\xfd\xa5\x18\xa0\x3c\xd9\xbb\xa2\xcf\x3f\xf3\x99\xcf\xe8\x9d\x93\x1b\xc1\x48\x83\xab\x65\x5c\x7c\x2c\x8b\xfb\x0c\xce\xf3\xda\xf7\x9c\x65\x60\xd3\x46\xfa\xbd\x84\x9e\x2a\x0a\xe4\x34\x13\x48\x5c\xbd\x6b\x46\x85\xb0\x1e\xb2\x55\x11\x25\x23\xc2\xd9\x11\xfd\x3d\xcd\x2f\x33\x26\x74\xf1\x8c\x41\xf3\xc5\x3b\x3d\x52\xb3\x89\x19\x2a\x3f\x3a\x31\xa6\xd1\xdc\x93\x08\x25\x0d\x06\x4b\xb1\xd1\x4f\x45\xbc\x88\x64\x05\x2c\x30\xbb\x17\xee\x5c\x70\x58\x87\x42\xeb\x18\x8e\x26\xea\xad\x4d\x30\x78\x7a\xae\xdf\xb6\xf4\xea\xfc\xb4\x85\x6f\x9a\x62\xf9\xa0\xfe\x4e\x05\xae\x1b\xfc\x76\x19\x05\x74\xca\xeb\x6c\x36\x93\x87\x87\x87\xe6\x1b\x71\xd9\xd7\xc0\x5d\x83\x16\xb0\xd3\xa3\x65\x80\x70\xbe\x16\xdc\x7b\x74\x39\x7a\x39\x5c\xaa\xf5\x95\x91\x7c\x06\xb2\x50\xee\x46\x38\x6d\x61\xae\x6c\xfd\xcd\xc9\x0e\x2a\x57\x05\x18\xfb\x13\xc6\x2c\x96\x3f\x8c\xc1\x40\x95\xd1\xe1\x37\xd6\xd8\x8f\x03\x7f\x72\xe2\x63\xf1\xf2\xfc\x5b\xed\x96\x34\xf8\x20\x58\x3b\x07\xb3\x94\xf2\x68\xca\x72\x98\x87\x04\x1b\xb0\x15\x81\x65\x80\xf9\x7c\x28\xb6\x47\x5b\xe1\xab\x93\xb3\xc1\xbb\x32\xa0\x11\xaa\x9d\x39\xdf\x2d\x57\x33\x2d\x92\x88\x70\x74\x74\x24\xff\xf3\x3f\xff\x13\xa8\x57\xb2\x6d\xa3\x47\x9f\x2e\x85\xe7\x17\x00\xb0\xb3\xb3\x23\xff\xfd\xdf\xff\x5d\x84\x61\x28\x5f\x78\xe1\x05\x9c\x3f\x7f\xde\x8a\xb3\xc8\x97\x05\x96\x99\x81\xa7\x7e\x56\x71\x4c\x07\x5b\x9b\x7f\x02\x25\xa3\xe2\xe6\x49\x4a\x29\xbf\xf3\x9d\xef\x00\xc8\x37\xcf\x5b\x2e\x97\x4d\x9d\x4b\xa5\x2f\x38\x77\xee\x5c\xe5\xd0\x40\xd8\xac\x4b\xbc\xb6\x08\xd6\x37\xa7\xd1\x73\x91\xa4\x0d\x93\xf7\x0a\x7b\x5e\x0e\x36\xeb\x44\xb1\xd4\xf1\xe5\xaf\xb5\xa1\x9a\xae\x07\xee\x37\xaf\x18\x4b\xaf\xfb\xc6\xa4\x46\x84\xcd\x42\x90\x9c\x15\x39\x3b\x0b\x7f\x61\x65\x29\x7e\x34\x8d\xa4\x96\x23\x0d\xc8\xa4\x1e\xa4\x0e\x06\x03\x3c\xfb\xec\xb3\x72\x38\x1c\x22\x08\xac\xfd\xf1\x35\x98\xd1\xbf\x21\x80\x70\x65\x19\x0c\xcf\x4d\xa2\xcb\x71\x2a\x2e\x91\x82\xd9\x1d\xd7\xd9\xee\xa8\x3a\x48\xb0\xfb\x57\x7f\x05\xb1\x1a\x20\x27\x8e\x4a\xb1\x2b\xa4\x8a\xbf\x3e\x4b\xfb\x4e\xf4\x57\x96\xe2\xf2\x99\x59\x78\x75\x90\x88\x9b\xf3\x48\x6a\x36\x33\x44\xc9\x12\x4a\x20\x3f\xf6\x61\x30\x18\xb8\x2c\x1d\x77\x4d\xfa\xda\x37\x80\x36\xc0\xa5\x4d\xf9\xd7\x35\x44\xb7\x03\x14\xbc\x70\xce\x3b\x4b\x41\x64\x42\xa5\x8b\x50\xcd\xf5\x5e\x2e\xb9\x33\x5a\x28\xbf\x75\x21\x60\xad\x94\x35\x3f\x76\x83\xf1\x0d\x8e\x6c\x23\x3f\x14\xa3\x42\x7b\x3f\x17\x4e\x2f\x72\xc1\x87\x02\x42\x89\x78\x25\x15\x1b\xbd\x94\xf4\xdc\xa4\x41\xe1\x4c\xb9\xf8\x5c\x53\x27\xd8\xe4\xd7\xbd\x6f\x02\x31\x5d\xe2\xf3\x29\xdf\xb6\xf4\x4e\x93\xd6\x07\x0d\xf7\x7f\x3a\xfe\xc7\x8a\xf7\xd1\xa3\x47\x78\xf5\xd5\x57\xe5\xf3\xcf\x3f\x6f\xda\x48\xb1\x14\x55\xcb\x06\x3f\x25\x38\x04\x10\x2a\x20\xcc\x22\x1c\x8d\xcf\x05\xef\x05\xcb\x68\x78\x4e\x2e\xe3\xde\x58\x5e\x11\x06\xbc\x80\x11\x22\xca\x74\xea\x96\x86\x77\xdb\x83\xd1\xce\x65\xfb\xa9\x9b\x00\xca\x83\xfb\x9e\x7b\xba\x10\x8d\xe0\x6b\x06\x07\x4e\xa4\x25\xeb\x62\x0d\x36\x1c\xc5\xeb\x4b\x8d\x65\xbd\x32\xe3\x0b\x58\x0f\xa4\x40\x32\x1f\x8a\xfb\xc7\x5b\xe1\x8d\x93\xf3\xe1\x3b\xcb\xbe\x38\x02\x55\x98\x89\x0a\x68\x41\x09\x2e\x31\x9f\xcf\xf1\xfe\xfb\xef\xbb\xac\x68\x9d\x6b\x02\x28\xae\xab\x95\xa3\xed\xed\x6d\x09\x00\x59\x96\x89\xb5\xb5\x35\xf9\xd4\x53\x4f\x69\xbb\x00\x9f\xae\xf5\x82\x16\x77\x09\x31\xd7\xc1\xee\xb4\x3d\xbf\xd6\x53\x63\xaf\xbe\xfa\x2a\x94\x52\xb8\x75\xeb\xd6\x69\xf2\x5f\x5b\x66\x66\x84\x9a\x77\xee\x0a\xa1\x50\x88\xcf\x4e\xc3\xcd\xd5\x45\xf0\x11\x21\x89\x9d\x40\x69\xc1\xe1\x5c\x07\x93\xcf\x10\x80\x3f\xf0\x08\x5c\x4b\xf7\xc0\x07\xb3\x6d\xce\x05\xf0\x81\xa4\xe1\xea\x22\x78\xe6\xfc\x38\x3a\xbf\x7d\x76\x31\x46\x3e\x5d\xa4\xe5\x48\xeb\x7a\xa9\x94\xc2\x60\x30\xc0\x87\x3f\xfc\x61\x5f\xb4\x15\xe6\xa5\xbf\xa4\xf5\xb3\xd3\xe8\xc9\x28\xa3\x4d\xcf\xbe\x7b\x65\x39\xea\x10\x9c\xd3\x65\x56\x9c\xb1\x39\xb3\x4d\x16\x9a\x74\x80\xc9\x06\x53\x2d\x6e\x75\x13\x08\x51\x26\x36\x56\x13\x71\xa9\xbf\x0c\x86\x40\x7a\x08\xff\x74\x26\xf0\xc1\xf4\x32\x6f\x8b\x26\xbe\x3a\x0b\xe0\x2e\x0c\x00\x8f\xd4\x6d\x60\xd6\x8a\x22\x36\x8f\x0a\x14\xe0\xa5\xb0\x71\x99\xa6\x85\x71\x6e\x2e\xc4\xd5\x73\x49\xca\xf5\xe4\x25\xa3\x62\xaa\x93\x21\x4f\xfe\xfd\x5c\xa0\x58\x55\xd7\x65\x98\xf2\xae\x4c\x8b\xf7\x01\x95\x3e\xa1\xe8\x28\xf4\x7e\x5a\x42\x51\xdc\x5b\x8a\x8d\x5e\x2a\xfa\xc5\xc8\xc2\x5d\x49\x64\x28\xb2\xad\xad\x2d\x3c\xf5\xd4\x53\x42\x2b\x2a\xc7\xd5\x8d\xd4\xda\x3e\x7e\x1b\x33\xe2\x0b\x5f\xc7\x9a\x55\x46\x51\x35\x69\xb6\xb1\x71\x4d\xf9\x6e\x2b\x4f\x5d\x3e\xea\xea\xc7\x0d\xa3\x5d\x5b\x7e\x7c\xf7\xbe\x77\x5d\xfd\x5b\xd7\x27\x27\x27\xf2\xb5\xd7\x5e\x13\x41\x10\xc8\xe7\x9e\x7b\x8e\xb3\x6e\x29\x4a\x85\x9e\x14\x23\x2f\x8b\x79\x49\x63\x1c\x8d\x2e\x86\x6f\x84\x4b\x0c\xce\xa8\x65\xd8\x9f\xc8\x4b\x86\x79\x31\xa0\x99\xf5\xe2\xc5\x8e\xb4\x16\x2c\xd0\xe0\x86\xb4\xdd\x47\xb1\x17\x8c\xb1\x0f\x71\xae\x5d\x25\xc6\x35\x15\xb7\x9c\xb7\x1a\x5a\x19\xc6\xc2\x4f\x86\xa2\x2c\x57\x28\xd9\x7a\x57\x55\x7a\x86\x7c\x7f\x0d\x3e\x28\xb0\xf7\x61\xd2\x06\xf8\x39\x5b\xca\xc6\xd1\x9a\x69\x11\x48\x17\xab\x62\xe7\xf8\x42\x78\x7d\xb4\x15\xbe\xb9\x18\xd0\x1e\xa8\x72\xca\x31\x5f\x4d\x54\x99\x26\x3a\x3a\x3a\x92\x6f\xbf\xfd\xb6\xce\x52\xdd\xe0\xa0\x0d\xe8\x3f\x36\x80\xbe\x73\xe7\x0e\x8a\x7c\x88\xbd\xbd\x3d\x79\xf6\xec\x59\x3c\xfd\xf4\xd3\xae\xbd\x54\x25\x5d\x3e\x25\xcd\xa6\xa9\xdd\x30\x95\x3c\x1f\x1c\x1c\x60\x7b\x7b\x1b\xd3\xe9\x14\xaf\xbf\xfe\xfa\x69\x07\x33\x96\xfb\xd8\xc7\x3e\x26\x56\x57\x57\xdd\xc7\xe6\x40\xc5\x1c\xb8\x50\x7c\x76\x1a\x6e\xc5\x19\x9d\x27\x20\x34\x3b\x22\x93\x2b\x6e\x6c\x43\x35\x65\x0f\x1e\xf3\x87\x4e\x5f\x01\x3d\xad\x61\x0f\x40\x7d\xa0\x9a\x5f\x97\x7e\x6d\x71\x54\x95\x38\x09\xa4\x54\xdc\x4f\xc5\xe5\x8b\x27\xf1\xe5\xed\xb3\x8b\xbb\xd0\x83\x8d\xfa\x7d\x74\x00\xbb\xc3\xd5\xfd\xa2\x69\xe7\xa4\x10\xf7\x52\xb1\xbe\x9a\x88\xad\x40\xd2\xb0\x02\xc4\x58\xbe\xf8\x2c\x81\xd9\x4c\x8e\x4d\x0d\x59\xc1\x2a\x20\x23\xff\x6f\xdb\x5b\x96\xfb\x3a\x55\xea\x87\x45\xca\x07\x10\x56\x7a\x04\x04\x0a\xc3\x95\x65\x70\x7e\xb0\x14\xeb\xa4\x10\x2b\xf2\x4f\x9f\x01\xc0\xd5\xab\x57\xf1\xe8\xd1\x23\xb1\xbb\xbb\xdb\xd4\xf7\x35\xe9\x78\x30\x3f\xad\xc6\xb9\xee\xbd\xef\x9d\xd7\xb9\x28\xdf\x59\x69\x24\x53\xa1\x92\x79\x28\x67\x49\x90\x2f\x89\x0e\x14\x85\xf6\xa1\xb2\xf6\xc8\xc1\x06\x11\x85\x40\x52\x59\xf9\x1c\x4b\xfa\xb1\x7a\x15\x5f\x5a\xbe\x0c\x40\xaa\x8c\x2d\x0d\xd3\x62\xde\x53\xa9\xf7\x85\xa2\x38\x4e\xc5\xfa\xca\x32\x18\x12\xc8\x65\x5b\x04\x1f\x09\x3d\xf1\xc4\x13\x38\x39\x39\xfd\xcb\x2c\x69\x00\x00\x20\x00\x49\x44\x41\x54\xc1\xf6\xf6\xb6\xaf\xca\xea\x94\x4c\x9b\x12\x6c\x1b\xed\xf9\xbe\xa5\x4f\x01\xb7\x81\xd2\xa6\xf8\x7c\xef\x3a\x8f\xce\x5a\xfc\x35\x31\x80\x6d\x71\x77\x09\xd3\xc5\xef\x69\xfc\x9b\x7a\x9b\x4c\x26\xf2\x95\x57\x5e\x11\x1f\xff\xf8\xc7\xdd\x3c\x6a\xe6\x45\x1f\xb4\xc7\x0d\xba\x43\x10\x85\x49\x0f\x87\x47\x97\xc2\xeb\x24\x55\x4c\xbb\x29\xe2\xa9\xbc\x24\x32\xc4\x2e\x30\xb1\xe8\x5f\x2a\xa5\x5f\xdb\xbe\xe4\x1b\x4a\x01\x06\x6d\x10\xe0\xee\x8a\xc9\xa0\x3b\xaa\x1a\x4b\x6b\x37\xc7\xab\x73\x6d\xd8\xc8\x32\x23\x86\xb9\xe4\x01\xcc\x08\xdb\x69\xa2\x54\xf4\x4e\xe5\x68\x8f\x0f\x62\xc8\xf6\x67\xf5\x74\x0a\x52\x50\x9a\x0c\x68\x67\x74\x21\xbc\x31\xda\x0a\x6f\x2e\x56\xc5\x43\x08\x1a\xb1\x25\xc5\x2e\x70\xa9\xec\xf8\x79\x74\x74\x24\x5f\x7f\xfd\x75\xbc\xf1\xc6\x1b\xc0\xe9\xe4\xba\xc9\x75\x09\x57\x69\xbf\x77\xef\xde\x95\x77\xef\xde\xc5\xd6\xd6\x96\xde\xb0\xd2\xb8\x8f\x7e\xf4\xa3\x1a\x90\xf0\xce\xd2\xc7\x78\x54\xf2\xf2\xfe\xfb\xef\x63\x3a\x9d\x9a\x07\x3b\x3b\x3b\x78\xeb\xad\xb7\x74\xba\x1f\x88\x35\x7a\xfe\xf9\xe7\xb1\xbe\xbe\xee\x76\xd4\x96\x31\x6a\x20\x11\x0f\x17\xe1\xc5\x40\xd2\x20\x7f\x5f\x32\x2b\x36\x30\x51\xe5\x68\xbf\x86\x65\xaf\x68\x78\xd2\x83\x65\x1b\xd0\xc2\x89\xdb\x4b\xb8\x90\x5f\xac\xf9\xf4\x0a\x01\x22\xca\xc4\xfa\x99\x79\xf8\x24\xfc\xf6\x2d\x1c\x9c\xf0\x6f\xc2\xfb\x48\x6b\xc7\xdc\x40\x52\xd8\x4b\xc5\x7a\x9c\x89\x4d\x91\xdb\xcd\x38\x85\x72\xf2\x52\xbc\xb0\xa7\x51\x3d\xc5\xa9\x3c\x2b\x0f\x64\xb5\xca\xe8\x02\x38\xe7\x5a\xd7\xa7\x99\x86\x73\xe2\x0d\xf2\x55\xb5\xe7\x07\x49\xb0\x19\x4a\x8a\x97\x81\xe2\x40\xce\x0c\xd8\x01\xe0\x99\x67\x9e\xc1\xfe\xfe\x3e\x76\x77\x77\xab\x19\x6e\xd7\xb7\x95\x6b\xdf\x21\x8b\x6d\xa3\x5d\x37\xf2\x3a\xf0\xc2\xdf\xe9\x4d\x97\x0c\xeb\x92\x11\xe4\x22\x94\xd3\x45\x28\xc7\x92\x54\x12\x28\x0a\x95\x35\x85\x53\x80\x13\x68\x75\xe7\x83\x1e\x25\x98\x40\x19\xd2\x02\x1f\x86\xd1\x2e\xc6\x6d\x5a\x18\x38\xff\x92\x0f\x0a\xcb\x10\xfa\x23\x5b\x9f\x9b\x01\x28\x7d\x41\x00\x48\x21\xee\x65\x62\x7d\x90\x88\x61\xa0\x10\xa6\x50\x96\x30\xb3\x86\xe7\x8e\xda\xea\xae\x9b\x40\xa3\x1b\xc6\xf5\xd7\x25\x0d\x1e\x57\x5d\xbc\xbe\x6f\xda\xc6\x66\xf8\xd2\xa9\x73\x5d\xd8\x25\x1f\x7b\xd4\x25\x7c\x13\x72\x6f\x92\xe7\x2e\x61\x80\xfa\xbc\x7a\xcb\x9c\xa6\x29\xde\x7f\xff\x7d\x79\xf5\xea\x55\x03\xde\x8b\xbf\x54\xef\x75\xe1\x18\x30\x1a\x23\xef\xc5\xaa\x78\x78\x74\x29\xbc\x0e\x00\xeb\x7b\xa9\xec\x4d\xe4\x25\x91\x51\xdf\x52\x3f\x5c\xd0\xad\xd1\x64\x21\xaf\x9a\x15\x61\x53\x3b\x7c\xe4\x55\xda\x98\xd4\x0c\x4b\x7d\x8e\x0d\xcb\x4a\x96\x92\x69\xda\xca\x48\x50\xb1\x68\xf9\x10\xc4\xd1\xce\x28\xda\xa9\x2a\xef\x0c\x66\x62\xf9\xe4\xed\x38\x07\x2d\x62\xe7\x78\x2b\xb8\x7e\x7c\x31\xbc\x3e\x1f\x8a\x7b\x4a\x90\xb5\x4f\x09\xfb\xe3\x4b\x8e\x25\x50\x4e\x5d\xdf\xbf\x7f\xbf\x8d\x75\xa8\x93\x2d\x38\xfe\xba\x0c\xfa\xea\x40\x82\xe5\x67\x77\x77\x57\x3a\x8a\x5e\xac\xac\xac\xf8\xd2\xe9\xe4\x5e\x7c\xf1\x45\x1c\x1c\x1c\x74\xd1\xeb\x6d\x79\xad\x95\x77\xde\x71\xa9\x72\x87\x58\x41\x20\x11\x28\x8a\x07\x4b\x71\x5e\x28\xbd\xe4\xb7\x6e\x3a\xc8\x33\x58\xe5\xac\x88\x2a\xe5\xb8\xd4\xcf\x1c\xe4\x90\xcd\x1c\xf0\x0e\xc2\x1a\x1c\xfb\xc5\x9c\xcf\xae\xb2\x0c\x0a\xa1\x10\xf7\x53\xb1\x89\x62\xcf\x12\xa7\x93\xf6\x4d\xd3\x71\xc7\xfd\x84\x4a\x29\x11\x4a\x11\xf7\x53\x31\x88\x24\x0d\x09\x14\x5a\xc9\x91\x9d\x7c\xd9\x66\x39\xb8\xaf\x96\xc1\x18\xeb\xa3\xe8\xe3\xf4\x1c\x2b\x60\xb5\x33\xbb\xb9\x57\x67\x2e\x72\xff\x64\xe5\xc7\x0d\x47\x8a\xc2\x7c\xd0\x2e\x36\xa2\x8c\xe2\x65\x60\x9d\xbf\x94\xb0\xfa\x91\x85\x4e\xab\x6b\x37\x1c\x7b\xc0\x79\xe6\x5e\x03\xb0\x81\xcb\xe3\x8c\xbe\x5d\xbf\x96\x32\xe7\x86\x65\x15\xbb\x17\x42\xba\x0c\x54\x32\x8b\xe4\x28\x13\x48\x22\x89\x72\xb7\xc0\x4a\x12\x8e\x20\x18\x7d\x47\x95\xb7\xbe\xb9\x38\x0d\x88\xec\x58\x6c\xf4\xa9\x9c\x38\xcb\xd0\x65\x9c\x25\x85\x58\x52\xf0\x02\x10\x71\x46\xc3\xd5\x24\x38\x17\x65\x22\xcc\x6c\x03\x5d\x43\xe3\x3a\xc2\xdc\x85\x31\x78\x9c\x51\xdf\x69\xd8\x8f\x26\x60\xc3\xf3\xe0\xcb\x8b\x2f\xfe\x3a\x36\xae\x0b\x9a\xf6\x29\xc7\x53\x2b\xe6\x9a\xb0\xbe\xeb\x53\x23\x7c\x4f\x98\x4e\xa3\xf0\xf9\x7c\x2e\xff\xf5\x5f\xff\x55\x7c\xf9\xcb\x5f\xc6\xe6\xe6\x26\x84\x10\x12\xc5\x09\xc1\x85\x4c\x24\x40\xb9\x61\x61\x21\x2b\x46\x86\x66\x6b\xe2\x1e\x28\x92\x4a\x20\x5d\xdf\xcd\x64\x7f\x92\x5d\x16\x29\xfa\xf6\x29\xce\x00\x47\x2d\x7a\x3a\xc5\x66\x3c\x4a\xb0\x60\x8f\xb0\x08\x0c\x29\x30\x9f\x6c\x4e\xa8\x00\x3d\x46\x25\x72\x80\x63\x02\xe4\xc3\x32\x4b\xe9\xb3\x9e\xc2\xcf\xf0\x54\xcf\xa4\x01\x6c\x96\x46\x41\x8f\xf6\xca\x6d\xfd\x8b\x52\x40\x52\x31\x3d\x74\x31\x7c\xf9\xe8\x52\x78\x63\x31\x10\x0f\x54\x69\x8c\xcb\xff\xdc\x29\x22\xfd\x0d\x24\x11\xc9\xe9\x74\x2a\xc7\xe3\xb1\xff\x03\xe6\xae\x4d\xf7\xb5\x51\xdc\xbe\x70\x5d\xda\x54\x25\x0f\xff\xf2\x2f\xff\xd2\x12\xf5\xa9\x5c\x5d\x3b\xac\xcb\x7f\x1d\x63\x6b\x75\xdc\xac\x03\x37\xec\x73\x71\x18\x64\xd8\x4b\x83\xcd\x9c\x99\xae\x58\xb6\x94\x03\x4a\xcd\xbc\x71\xbd\xcb\x30\x71\xc9\x7c\x73\x50\xee\x38\x2a\x17\x78\xe8\x93\xd1\x5d\x0c\xe3\x4e\x3f\xb9\x0c\x44\x39\x1b\x6b\x12\x08\xa3\x4c\x0c\x09\x08\x95\x62\xd3\x60\xb0\x58\x76\xe9\xd6\x03\x98\x1e\xe5\xc6\xb9\xa1\x44\x1c\x65\xa2\x4f\x92\x62\x9e\x15\x53\x04\x96\x2d\x3e\x1b\x40\x8e\x1f\x5e\x06\x62\xfa\xa0\x64\x5c\xcb\x7a\x28\xfb\x4c\x1f\x49\xe0\x80\x9e\x1a\xa2\x80\xd5\x88\x10\x0a\x71\x94\xd1\x6a\x20\x89\x4f\x9d\xe9\xb2\xe6\x7e\xab\x0b\x54\x9a\xe4\xbe\xe9\x19\x50\xc8\x5d\x97\x91\xb5\xef\xba\x42\x8f\x69\x3f\x59\x96\x61\x36\x9b\x01\x30\x15\x22\x9d\x3f\x63\x18\x97\x0a\x35\x9f\x47\x72\x9c\x0a\x39\x05\x98\x3a\x53\x79\x23\x70\xd9\x29\x63\x37\x43\xec\x1a\xf6\xb5\x57\x8a\x55\xf5\xd6\x80\x95\x26\xc7\x99\x6f\x85\xca\x67\x2c\x14\xb4\x08\x33\x1a\xac\x26\xc1\xf9\xc2\x40\xd7\x27\xcc\xa6\x61\x7b\x5c\x17\x10\xe2\x73\x75\x4c\x57\x57\x3f\x6d\x1d\x6f\x1b\x3b\xe1\x5e\xfb\xd8\x9c\xae\xe0\xa3\x91\xb5\xa8\xf1\xcf\xf3\xe8\x73\x6d\xb2\xdd\xe6\xea\xfc\x76\x89\xc3\xaa\x0b\x29\xa5\xfc\xbb\xbf\xfb\x3b\xbd\x0b\xab\x54\x4a\x69\x06\xd2\xdd\x74\x4c\x33\x03\x66\xb3\x31\x22\x1a\xcf\x87\xe2\xc1\xa3\xcb\xd1\xf5\xa3\xcb\xc1\xcb\xb3\xb5\x60\x5b\x86\x98\x2b\x22\x8e\x10\x4a\xd0\x02\xa0\x3c\xa7\x2b\x7f\xa5\xf4\x08\xb5\x02\x1c\xf2\x10\x65\x5c\x7c\x54\x9b\x03\x05\xb3\x83\x2d\x1f\x7d\x15\x72\x5c\x9d\xf6\x61\x0c\x09\x1b\xfd\x02\xb0\x56\x28\x28\xf6\xdf\xf6\xc5\xda\x88\x66\x90\x1c\x4f\x4a\xbf\x22\xa4\xf3\xa1\xb8\xff\xe8\x72\xf4\xd3\xc3\x27\xa3\x57\xe7\xab\x06\xb4\xe8\x0d\xd7\xa6\xc5\x54\x51\x65\x35\x91\x62\xbb\x78\x2f\x16\x0b\xf9\xea\xab\xaf\xe2\xe5\x97\x5f\xe6\x00\xbe\x2b\x10\x69\x02\xe7\x6d\x72\xe2\xd3\xa7\xbe\x38\xea\x58\xc8\xba\xeb\xae\x69\x37\xb5\xe1\xb6\x3c\xb9\x71\x48\xa0\xec\x00\x75\xc7\xa5\x99\x43\x14\xc6\xb9\x51\x46\xfd\x38\x43\xb9\x9a\x48\xe5\xdd\x6b\x7e\xc9\x20\x85\xd2\xe7\x55\x95\x32\xa2\xc0\xaf\x51\xea\xf4\x1a\x1d\x4e\xce\xc6\x87\x46\x84\x48\x59\xf1\xe9\x28\x7c\x3d\x48\x29\xb3\x46\x86\xc3\x28\xa3\xf5\x5e\x2a\xf4\x72\x68\xa3\xe7\x1d\x9b\x4e\x00\x16\xdb\xae\x9d\xde\x4d\x3d\x7f\xaf\x28\x0e\x24\x7a\x54\x10\x08\x0a\xd5\x3e\x89\xb7\xb9\x32\x36\xc6\x4a\x3a\x28\x46\x39\x25\xb6\xe1\x21\xdb\xa2\x8f\xcd\x54\x94\xc1\x09\xc6\xb6\x0c\xd5\xf7\xc5\xd9\x08\x16\x0b\x46\x8a\x84\xcf\x44\x02\x0e\x98\xf5\x38\xe1\xfc\x01\xdd\x64\x5a\xfa\x5e\xea\x17\x2e\x30\x71\x23\xae\xed\xf4\xee\xdf\xbf\x2f\xff\xf9\x9f\xff\xd9\x28\x20\xa7\xb3\x96\x5c\x69\xa4\x42\x25\xb3\x28\x1b\xa7\x02\x73\x5d\x21\x00\x60\x68\x3f\xfd\xac\xf8\x57\x45\x86\xca\x8c\xc2\xcc\xe7\x22\xfe\x79\xd9\x33\x2e\x58\xb0\x81\x88\x56\xd6\xae\x30\x73\xc1\x37\x5f\xca\x49\x83\x40\x08\x24\xf5\x57\x93\x60\x6b\x90\x04\x7d\xb0\x1d\x15\x59\xd9\x05\x1b\x85\xf0\x7a\xd4\xd7\x6e\xfd\xb6\x75\xba\xbe\x8f\xea\x7b\x26\x9d\xf7\x4d\x71\xb8\xe9\xbb\xca\x8d\x3b\x57\xa9\xfb\xf2\x5d\xa7\x04\xeb\xf2\xe1\x03\x3e\x4d\xf7\x3e\xea\xb1\x89\x21\x6a\xf3\xef\x5e\x77\xa1\xd0\x9b\xf2\x59\x71\x7a\xaf\x0e\x2a\x0f\x5e\xb4\xc0\x8b\xca\xcf\x89\x99\x22\xdf\x6b\xc3\xec\x7a\xaa\xa0\xc6\xc9\x8a\x78\xf8\xe8\x62\x74\xe3\xe0\x4a\xf4\xd3\xc9\xd9\xe0\x66\x16\x61\xec\x2a\x5c\x80\xc9\xb6\x67\x8e\x9f\xd8\x7f\x93\x27\x70\x05\xad\xac\x25\xc7\xf9\x28\xd7\xa1\x3f\x58\x84\xa4\x87\xc1\x9a\xc7\xd7\x69\x7b\xce\x3e\x62\x1a\x98\x37\x25\x9b\xb5\x01\xac\x36\x5e\x19\x29\x14\x4e\x06\x48\x66\xeb\xc1\xf6\xc1\x53\xf1\x0f\x0f\x9f\x0c\x5f\x4d\x56\x68\x8f\xed\xd5\x32\x2e\xa6\x88\xf4\xaf\x6f\x7b\x7f\xd3\xd1\xbe\xf8\xe2\x8b\x60\xa7\xfa\xfa\x00\xf4\x69\x99\x36\x1e\x97\x8f\xd1\xf0\x16\xa9\xe1\xf9\x69\x99\xd6\x26\xd9\x6d\xf3\x53\xf7\x9e\xb7\xd1\x3a\x96\x89\xfb\x15\x00\xb8\xae\x13\x04\x08\x52\x08\x81\xd2\x90\x95\x0f\x4c\x39\x7b\xae\x0f\x13\xb4\x6d\x32\xca\xf3\xa9\x0c\x5b\xe2\x50\x10\x56\x5b\xe0\x32\x6f\xb1\x04\x76\x87\x5e\xfa\x61\x61\x6d\x91\xe4\x79\x10\x42\xa1\x1f\x65\x14\x93\x03\x5a\x3c\x1d\xb6\x0b\x68\x4c\x9d\x58\x83\x59\x0d\xc6\x35\x50\x77\xf2\x51\xe2\x33\x56\x48\xaa\x2e\x6f\x06\xca\xb6\xe7\x03\x76\x06\x68\xb0\xc7\x7c\xf0\xce\x7b\x47\xd6\x54\xed\x2a\x21\xcd\xe3\x94\x79\xa5\xc2\xc8\x58\x28\x6b\x6b\x15\xb8\xd7\x9e\x41\xbb\xaf\x9d\x74\x6d\x07\x9d\x1b\x52\x53\x43\xf0\x76\xb6\x0c\x7d\x6b\x01\x97\x40\x69\x9c\x4b\x44\x72\x19\xca\x64\xdc\x93\xa3\x24\x94\x63\x6b\x44\x07\xfd\x7d\x6c\xf1\xca\x3f\x88\x2a\x8f\xb3\x87\x8d\xaa\x75\x38\xeb\x63\x95\x19\x42\xe5\xb6\xf8\xf8\xe5\x51\x01\x16\x0d\x66\xc5\xc1\x95\xbe\x25\x13\x04\x04\xf9\x99\x16\x5b\x6b\xf9\xa1\x53\xba\xcc\xda\x7a\xdc\xaa\x97\x67\x9f\x7d\x56\xfc\xee\xef\xfe\x2e\x7f\xe4\xfb\x70\x6d\x53\x2e\x3e\x85\xd6\xa6\x60\xbb\x28\x41\x5f\x3e\x9a\x14\x5c\x57\xff\x6d\x79\xaf\xf3\xdb\x74\xef\x8b\xa3\xa9\x01\xb4\xf9\xef\x52\xe6\x0f\x44\x77\xfe\xc5\x5f\xfc\x85\x3c\x3e\x3e\xe6\x69\x48\xd8\x7b\xba\xe8\x73\x63\xac\x2d\xdd\x89\x68\x04\xc2\x28\x5d\x11\x0f\x8f\x2f\x85\xaf\x3f\x7c\x26\xfe\xc1\xe1\x93\xd1\x4f\x16\x03\xda\xf1\x02\x11\x36\x65\x94\x3b\xfb\x9e\xeb\x90\x8a\xd2\xae\x3c\xd0\xb1\xda\x8f\x95\xa5\x1d\xa9\x6c\x4b\x06\xcc\x38\xc1\x8d\x82\xd4\x3d\x4a\xb9\xda\xc9\x8d\x1b\xac\x0c\xf6\x43\xc8\x65\x8f\x0e\x8f\x2f\x86\x2f\xef\x3c\x1b\xff\x3f\x8f\xae\x44\xaf\xa5\xb1\x38\x40\x7e\x7e\x8f\x75\x70\x20\x1a\xf6\x6d\xa1\x72\x4f\x93\xd6\x6f\xd6\xe2\x4e\xcb\xea\x3d\x0e\x33\xf3\x41\xdc\xe3\xea\xf7\xba\xf6\xfa\x38\x6c\x2a\x00\x40\x01\x22\x23\x05\x59\xec\x94\x0e\x54\x54\x32\xac\xe7\x5c\xaf\x73\xe6\x9b\x0f\x2e\x5d\x99\xf1\xa7\x6b\xeb\x70\x1f\xb5\xe2\x84\x2d\xed\xc4\x2a\xb1\x49\x45\x48\x53\xa1\xa0\x18\x70\x21\xcf\xb6\x17\x4e\xff\xa7\x9d\x35\x68\x4b\x02\x29\x67\x91\x5c\x64\x42\x25\x26\xbd\x1a\xc6\xc5\x21\x30\x35\xeb\x68\x97\xa1\xa8\x37\x02\xf8\x1e\x92\xde\x42\x72\xf0\x61\xbd\xe2\x7e\x5c\xff\xec\x99\xaa\xc6\xeb\x25\x39\x3c\xa6\x22\xdc\x75\xe9\x5b\xbc\xae\x8d\x0e\x74\x23\x68\x53\xfe\x16\xc2\x62\xbb\x41\xea\x5f\xe3\x57\x29\x25\x97\x42\x25\x93\x38\x9b\x2c\x42\x39\x96\x50\xb2\x04\x04\x9a\xce\x2b\x9c\x8b\x9e\x1d\x84\xcd\x30\x88\x57\xef\x36\xb1\x8a\xca\xc0\xf7\xd2\x31\x10\xef\x75\x5c\x26\x8a\x11\x6b\xd8\x4f\xc5\xe6\x99\x45\xb0\x19\x66\x88\xa1\x6c\x1a\x8c\x51\xa6\xc2\x41\x9e\x5d\x18\x90\x26\x9a\xba\x2e\x4c\x13\xbb\xd2\x55\xd9\xfa\xa8\x3c\xd7\x7f\x13\xc5\xd7\xc4\x2a\xf9\xee\x7d\xf9\xa8\x2b\x63\x9d\x9f\xae\x71\x37\x31\x2e\xbe\xf8\x9b\x7e\x5d\x7f\x4d\xef\xc4\x37\xbf\xf9\x4d\x3c\x7c\xf8\x10\x80\xd5\x26\xf8\x0e\xa6\x09\xec\x5d\x5e\xf9\x19\x35\x63\x19\xe0\x68\x7a\x26\x78\xff\xe0\x6a\xf4\xf2\xc1\xd3\xf1\x0f\x27\x67\x83\x9b\x59\x80\x79\x1e\xbd\x2a\x77\xba\x05\x60\xed\x2a\xab\x0c\xf4\x77\xc4\x9d\x50\x02\x8b\x42\xa2\x55\x39\x02\x34\xc6\x5f\x3a\x9e\x32\x94\xd1\x5e\x4a\xb1\x11\x55\x1d\xdf\x5d\x0c\xef\x0c\x37\xaa\x98\xad\x8d\x62\x43\x4b\x9d\x19\xc5\xb5\x81\x42\x16\x60\x3e\x5b\x13\x77\x0f\xaf\x46\x3f\xd9\xfb\x50\xfc\xa3\xf1\x66\x70\x47\x52\xe5\x8c\x1e\x3d\x45\xa4\xeb\x4e\xef\x4e\x6c\x8c\x71\xd9\x1f\xbe\xf7\xbd\xef\xe9\x55\x35\xda\x75\x69\x33\x3e\xdd\x78\x5a\xf0\xd1\xc5\xff\x69\x40\xd1\x69\x01\xc5\x69\xd2\xef\xe2\xb7\x92\xa6\xde\x12\x02\xba\x6d\x11\x84\x0c\x94\xcc\xa8\xec\x07\x14\x93\x55\x6b\x74\xef\xe2\x64\x46\x13\x10\x93\x39\x3f\x63\x60\x3b\xee\xc7\xf5\x57\x7b\xed\x01\xf8\xc8\x33\x2d\x13\xa1\x92\x65\xe0\x4f\xcd\x31\x5f\xa8\x63\x9c\x81\xa2\x4f\x48\x05\xe4\x3c\x94\xc9\x32\x50\x53\x55\x1c\x36\xcc\x9b\x01\x1f\x1b\x94\xed\xd1\x26\x9a\xbc\xf9\x46\x09\x4c\xba\x98\x43\xf8\xe2\xb0\xf2\x82\x32\x2f\xfc\xdb\xa4\xa4\xe6\x27\xbd\x74\xf7\x70\x65\xf9\x70\x16\xc9\x94\x79\x3f\xad\x7c\x37\xe9\x68\xef\x75\xd3\x72\x68\xf7\xd7\xe7\xdc\xf7\x06\xbc\x38\xc6\xb8\x6e\x18\x09\x20\x95\x84\x34\x09\xe5\x74\x1e\xca\x51\x26\xd4\x3c\xca\x97\xc9\x59\xb4\xa1\xcf\xf1\xfd\x56\x2a\x88\xda\x78\x82\x25\xf0\x1a\x89\xe6\xe1\x3d\x48\x93\xeb\x67\xc6\xa3\x51\x41\xe9\xf0\xb3\x91\xca\xd7\x66\xfa\x2a\x8c\x32\x31\x5c\x9f\x85\x4f\xc4\xa9\xe8\xa7\xb1\x31\xd0\xad\xcc\xf1\x35\x18\xe9\xba\x14\x6c\x53\xbd\xbb\x61\xb5\xab\x0b\xe3\xa3\xac\xbb\xb2\x2f\x3a\x5e\xdf\x3b\xf7\xbb\xd7\xd1\x7e\x1c\xd4\xb6\x8d\xee\xea\xde\xd5\xb9\xae\xe1\x4f\xcb\xd0\xb4\xf9\x7d\x9c\x72\xc8\xc5\x62\x81\xef\x7c\xe7\x3b\xe2\x37\x7f\xf3\x37\xe5\x93\x4f\x3e\x09\x00\xda\x90\x2f\xf5\x8d\xdc\x9c\x38\x24\x88\xa4\x12\x4a\x26\x03\x91\x1e\x5d\xa4\x64\xb1\x22\x46\x67\xf6\x96\xbb\xc3\xfd\xec\xa3\xd1\x1c\xe7\x09\x10\xc6\xf0\x4e\x33\x93\x6e\x0f\x50\xbb\x9c\x02\x66\x60\x40\xdc\x9f\xb1\x69\x21\xfb\xb9\x8e\x95\x3c\x8d\x8d\xf9\x29\x07\x14\xac\xd3\x71\xd2\x2f\x63\xb0\x1b\xa6\x14\x94\x2e\xfb\x74\x34\x3d\x13\xdc\x1e\x5d\x08\xdf\x99\x6c\x04\xdb\xcb\x15\x3a\x90\x84\x31\xd9\xfb\xb4\x18\x43\xdc\x62\x8a\x48\xb3\x58\x7c\x4a\xce\xac\x22\xfa\xee\x77\xbf\x2b\x6f\xdf\xbe\xad\xcf\xe0\xe1\x75\xec\xbb\x46\xcb\x73\x9f\xfc\x7f\x50\xd7\x95\x35\x74\xaf\x5d\x7d\xdc\x25\xee\x3a\x56\xb7\x29\x9d\x46\xe7\x4e\x89\x2b\x00\x19\x01\x99\x50\x7e\xc6\xa5\xa2\xbc\x2b\x0f\xbd\x1b\x10\x6a\x96\xa2\xce\xd0\xd6\x4d\x87\xdb\xf3\xfa\x18\x05\xee\xa7\xd2\x44\x08\x72\x19\xca\x69\x26\x0c\x28\xf1\xce\x32\x14\xd7\x8d\x60\x92\x88\x90\x09\x85\x24\x94\xc9\x32\x90\x73\x45\x90\x56\x39\x9c\xce\xad\x2d\xaf\x56\xbe\x99\xc7\xa6\x01\xb8\x1e\xb3\xf0\xa4\xac\xf8\x14\xab\x73\xa7\x0f\x05\x80\x65\x20\xc7\x47\x2b\xe9\xfd\x83\xd5\xe5\x7e\x12\x58\x40\xad\xc9\xb6\xc5\xe7\xda\x64\xad\x72\xed\x03\x2e\xbe\x8e\x4d\x78\xde\x35\xd1\x90\x15\xff\x9a\x9e\x65\x73\xfc\x12\x40\x61\xe7\x22\x47\x99\x50\x49\x98\xa9\x41\x69\xec\xa7\x15\x20\x98\xbe\xcd\x47\x69\x96\xc5\x76\x41\x79\x68\x49\x2c\x97\x83\x31\x55\x58\x11\x6a\xa6\x5c\x75\x7a\x96\x34\x68\x8b\xec\x52\x12\xfc\x9f\xa0\x94\xb2\x40\xaa\xc1\x30\x09\x2e\xf5\x32\x11\x4f\xf3\x8d\xfd\xf4\x51\xee\x95\x2d\x90\x5b\x5c\x17\xd0\xd2\xc5\xb5\x01\xce\xd3\x84\x6b\x02\x49\x5d\x15\xf6\x69\xcb\xf3\xf3\xa8\x83\xff\x4f\xba\x93\x93\x13\x99\x24\x89\x69\x23\xcc\x1e\x2c\x75\x1a\xbb\x36\xf0\x33\x4c\x41\xd1\x7e\x52\x05\xc8\x65\x1f\xa9\x0c\x83\x59\xb2\x42\xa3\xd9\x30\xdb\x5f\xdf\x4b\x3f\xba\x32\x92\x57\x82\x25\x86\xa4\x20\x34\xb5\x6e\x56\x17\x30\x79\xd6\x2b\x8f\x38\x83\x99\x67\x02\xe5\x30\x95\x88\xe1\x0f\x06\xdb\x9d\x06\xc5\xd7\x1f\xf0\x95\x47\xe5\x0a\x23\x07\xe8\xb8\x15\xe2\xcc\xf7\x16\x34\xb8\xcc\x62\x8c\x67\x6b\xc1\xfd\xf1\x66\x78\x6b\x72\x36\xd8\x5e\xac\xd2\x6e\x1a\xd1\x31\x04\x4d\xa9\x3c\xf9\x58\x2f\x7b\x76\xf7\x6a\x99\x17\xf5\x59\xd9\x21\xf7\x7b\xdf\xfb\x9e\xbc\x73\xe7\x4e\xdb\x96\xf6\x5d\x5c\xd7\x41\x86\xeb\x4e\xe3\xf7\x34\x71\xfb\xf4\xb6\xaf\x53\xe8\x32\x70\xf9\xb9\x3b\x45\x4a\x26\x81\x1c\x2b\xe8\x4e\x8e\x01\x5b\xc5\xc0\x04\x99\xcd\x2b\x58\x60\x67\xc9\xae\x83\x93\x2d\xe7\xde\x73\x0a\x82\xb7\x05\x5f\xd8\xa6\xfc\x03\x32\x09\x8a\x9d\xde\xf3\x70\x6d\x03\x9e\xd6\x81\x48\x2a\x54\x92\x84\x72\x5a\x6c\x09\x62\xed\xe5\xe2\xf6\xfb\x65\x31\x8a\xb6\x59\x5c\x93\x53\x19\x6e\xb1\x9a\x77\xca\xb6\x7f\xed\xf4\x4a\xb3\x0c\xe2\x7d\x72\x71\x95\x84\x6a\x3c\xea\x67\xfb\x93\x38\x9b\x82\x2c\x39\xd3\xfd\xbb\xbe\xff\xa0\x8e\xcb\xab\x00\xec\x9d\x73\xeb\x84\xbc\x76\xf4\x58\x13\xd6\x72\x6c\x69\x98\x35\xb7\xac\x57\x55\xa4\x42\x25\xd3\x28\x1b\xa7\x42\xcd\xfb\x66\x44\xc6\x84\x94\x18\x25\xc6\x8d\x73\xa9\x5c\xea\xc5\x91\x05\x07\x35\xca\x8c\x18\x01\x6d\x75\x98\x33\x35\x25\x8c\xf5\x7d\x54\x2d\xd4\xee\x53\xeb\xca\x44\x9d\x87\x0f\x14\x85\x83\x44\x6c\x0d\x17\xc1\xf0\xd1\x4a\x6a\xd6\xf8\xab\xf2\xe0\x45\x3d\x55\x24\xcf\x9e\x3d\x8b\x4f\x7d\xea\x53\xe2\xa7\x3f\xfd\x29\xaf\xc7\xc7\xe9\xa8\x5d\x54\xef\x2a\xd1\xb6\xa9\xa6\x26\x7f\x75\x0c\x49\xdd\x73\xf7\x5d\x1d\x4b\xe3\x63\xf4\x80\x6a\xde\xdb\x18\x25\xdf\xb5\x9b\xb7\x3a\x45\xde\xe6\xaf\x2e\xcd\xba\x7b\xed\x9a\xca\x63\x85\xbf\x7e\xfd\x3a\xe2\x38\x96\x7a\x6b\xf7\x42\xde\x53\x54\x9d\x7b\x7a\x6f\xc1\xbc\x40\x2a\x85\x34\x0b\x91\x66\x43\x31\x4f\x63\x9a\x2e\x56\xc5\xd1\xf0\x20\xdd\x59\x3d\x92\x4f\xc5\x53\xb9\x15\x2e\xd5\x80\xf2\x65\x8a\xb6\x8c\xeb\x73\x81\x94\x06\x17\xa5\x91\x7b\xa9\xc9\x8a\x36\xc0\x86\x5d\x39\xd8\x61\x03\x0b\x7d\x96\x8b\x79\x57\x8e\x80\x8d\xb2\x73\xa7\x84\x88\x6c\xf5\x57\xf4\x42\xba\x2d\x29\x22\x29\x23\x9a\x2e\x06\xb4\x3b\xd9\x08\xee\x4e\xce\x06\xdb\xb3\xf5\x60\x67\xd9\xa3\x03\x25\x68\x0a\x32\xf6\x2b\x53\xa5\x14\x37\xc0\xe5\x2c\x0b\x3f\x44\xd0\xb0\x2d\x00\xe4\xf7\xbf\xff\x7d\xbc\xf7\xde\x7b\x1c\xb4\x74\x6d\x2f\xae\xeb\xc2\x6c\x74\x89\xfb\x34\x61\xbb\xb4\xd3\x2e\x60\xc5\x6d\x9f\x4d\x72\xdb\xd4\xde\xdd\x3c\x34\xba\x8c\x20\x8f\xfb\xe9\x7e\x26\x90\x04\x19\xfa\x5a\x3d\x3b\xe4\x02\x00\x06\x93\x35\xe6\x75\x80\xaf\xbb\xca\x93\x8f\x41\xad\x70\x28\xc4\x57\xa3\x0d\x2a\xf5\xbb\xd5\x24\xb8\x7f\x8e\xb3\xcb\xf1\xb3\x5c\x06\x6a\x3a\xea\xa5\xfb\xbc\x2e\x6a\x98\x05\xab\xae\xd9\x12\x61\x7e\x6e\x14\x40\x90\x49\x28\xe7\x27\xbd\xec\x70\x19\xa8\x69\x24\x31\xb4\x62\x71\x88\x27\x17\xab\xe5\x4d\xb8\x04\x12\x50\x6c\x00\xc1\x9b\xb2\xa2\x0a\x5b\xc5\xba\x44\x56\x3f\x2e\x13\x55\x06\x72\x59\x52\x49\x2a\x9d\x46\xd9\xd1\xa8\x9f\x1e\xce\xf3\xb3\x9b\x78\xdf\x0e\x36\xe0\xea\xe2\x6a\xf5\xa4\xe7\x19\x80\xfa\x7d\x5c\x4e\x9b\x98\x15\x76\x32\x99\xe0\x67\x3f\xfb\x99\xfc\x95\x5f\xf9\x95\xca\x56\xd4\xdc\x38\x17\x80\xcc\x84\x4a\xa6\xb1\x1c\xa5\x02\x66\x4b\x47\x72\x84\x94\xff\xe6\xd7\x64\x7e\x2b\xe8\x52\x95\x82\x69\x21\x74\x68\x20\x83\x92\x95\xa1\x32\xae\x0a\x7b\x6e\x6d\xe3\x5b\xa5\x16\x4b\x61\xd2\x79\x41\xd8\x4f\xc5\xd6\xfa\x3c\xdc\x20\xb5\x08\x51\xae\xd7\x07\x60\xaf\x2a\x5a\x5d\x5d\xc5\xd3\x4f\x3f\x8d\x9f\xfe\xf4\xa7\x3e\x80\x78\x1a\x45\xea\x2a\x17\xfe\xac\x4d\x21\xd6\xb1\x25\x3e\xe5\xd6\xa4\xa4\xeb\x40\xae\x0f\x9c\xf8\xc2\x9d\x66\xe4\xd7\x94\x56\x5b\xde\x9a\x9e\x77\xa9\xe3\xc7\xb9\xaf\x6d\x8c\x3b\x3b\x3b\xf2\x95\x57\x5e\x11\x4a\x29\x59\x9c\x9c\xaa\x1b\x7c\x3e\xd7\x5d\x1e\x91\xe1\xc6\xad\xff\xcc\xe9\xbe\x00\x92\x65\x0f\x49\x16\x05\x93\xa4\x4f\x47\xb3\x33\x72\x77\x70\x94\x5d\x5e\x39\x91\x97\x7b\x13\xb9\x19\x2c\xd5\x50\x48\x15\x53\x41\x65\x80\xca\x3d\x5e\xf2\xad\x07\xec\xc5\x8f\x7c\xa4\x55\x5a\x00\x3a\x9a\xcf\x03\xeb\x15\xb1\xf3\x93\x74\x28\x0e\x54\x8c\x0e\x28\x43\x99\xfd\xf1\x04\xd2\x2c\x12\xd3\xc5\x40\xec\xcf\xce\x88\xfb\xd3\xf5\xe0\xfe\x6c\x4d\xec\x24\x2b\xe2\x40\x86\x18\xc3\x06\x28\x7a\x4a\x68\x0c\x1b\xb4\x24\xc8\xed\x5a\x78\xdd\x48\x00\x52\x4a\x29\x7f\xf2\x93\x9f\xe0\xe6\xcd\x9b\x90\xd2\x7c\x96\xae\xcc\x43\x1d\xe0\x78\x9c\xe9\x5c\x5f\xba\x6d\x61\x9b\x80\x48\x27\x79\xab\x09\x7b\xda\xc1\x6a\x53\xdc\x75\x6d\xdc\xf8\xc9\x48\xc9\xc3\xd5\x74\x3f\x09\xd4\x28\xca\x68\x48\x2c\x4c\x65\x8a\xa2\x78\x56\x3f\xa3\x59\xc8\xb0\x52\xc6\xc8\xbb\xec\xd8\xcb\xa9\x4d\x13\x1f\x1f\x00\x03\x36\xc8\x29\x7c\xaa\x02\xd0\xbb\x7a\x5e\x41\x21\x13\x6a\x7e\xdc\x4f\xef\xde\xdd\x58\xdc\xe3\x65\x62\x7b\x95\x58\xfd\x96\x06\x2b\x6e\x27\xae\x41\x8b\x1e\x8c\xcc\x42\x39\x3d\x18\x2c\x77\x9f\x0a\xe5\xd1\xca\x32\xd8\x62\x9c\x25\xef\x7e\x9c\xb1\x02\x55\x9a\xa4\x0b\x58\x14\x0b\x67\xda\x18\xeb\xe3\x4c\x34\xaa\x88\x58\xb7\x4d\x5e\x74\x4f\xdd\x6b\x97\x09\x35\x9f\xf4\xb2\xc3\x93\x5e\xfa\x68\x19\x28\xde\xd6\xc0\x06\x59\x4d\xee\x71\xf4\xbe\xf1\xd7\xb6\xe5\x7f\x5d\x03\xab\x43\xd8\x02\xc8\x4f\xc7\x7d\xe3\x8d\x37\xc4\xaf\xfc\xca\xaf\xe8\xc4\x78\xc2\x46\xf1\x22\x67\x5c\xe6\x93\x5e\x36\x4a\x42\x39\xe6\x23\x31\x65\x46\x85\xa8\x7e\x40\x76\xed\xd6\xad\x8f\x5e\x33\xd0\xc5\x01\x51\x76\x40\x16\x46\xaf\x99\x27\xcd\xf4\xf0\x77\x0c\x99\xb3\x57\xa4\x20\xe2\x54\x6c\x6c\xcc\xc2\x8b\x91\xa4\x38\x09\x14\xdf\x16\x5a\xcf\x79\x6a\xd6\x45\xd7\x05\xaf\xb7\xd3\x28\xc7\x2e\xcc\x41\x57\x14\xeb\x73\x3f\xaf\x69\x1a\x57\xe0\xda\xd8\x8b\xff\x6e\xf7\x38\x69\x7d\x90\x3c\x36\x76\x8c\xf7\xee\xdd\x93\xc8\xc1\xad\xbc\x72\xe5\x8a\xa0\xfc\x4c\x2f\x20\x07\x25\x21\x8a\xdd\x75\x39\xdb\xc2\x94\x60\x5a\xbc\x4f\x89\x28\x21\x50\x2a\x85\x4a\x17\xc3\x60\xbe\x5c\x11\x8f\x66\x43\xb1\xdb\x1f\xcb\xfb\x83\x91\xbc\xb4\x32\xca\x2e\xc5\x33\xb9\x19\x26\x6a\x28\x32\xc4\x24\x29\xac\x0e\xaa\xf8\x60\x81\x8d\xb4\xc8\x3c\xa9\xb4\xb5\xd2\xee\xab\x68\x5f\x7c\xe8\x86\xb2\x2d\xbb\x03\x0c\xed\x43\x09\xa4\x32\x40\x92\x85\x34\x4f\x56\xc4\xe1\x74\x5d\xec\xcc\xce\x04\x77\xe7\x6b\x62\x37\xe9\x8b\x23\x19\x60\xa2\x08\x53\xbd\xd2\x0a\xf6\x74\x50\xed\x89\xcf\x1c\xb4\x28\xa5\xe4\x72\xb9\x94\x37\x6e\xdc\xe0\xcb\x9e\xf9\xf7\xf8\x20\xdf\xb7\x4d\xae\x7d\x6c\x45\x27\x76\xc2\x93\x46\xd3\xf3\x9f\xd7\x54\x95\x4f\x7f\xb8\x83\xa3\xae\x75\xe6\xca\xbd\x94\x04\xf9\x68\x90\x1e\xcc\xa3\xec\x70\xb0\x14\x97\xa8\xae\x2e\x5c\x8c\x5c\x7d\x0d\x6b\xc8\xa8\x01\xb3\xe9\xcc\x9d\x08\x58\x67\xee\x8b\xb7\x1c\xc4\xb2\xce\x1e\x30\x67\x67\x29\x40\x2e\x42\x39\x7e\xb8\x96\xdc\xdc\x5b\x4b\x0e\x51\xb6\x3f\x5f\xbb\xe4\xf7\x75\xb6\x2e\xc6\xdf\x22\x92\xf3\xc3\xd5\x74\x6f\xdc\xcb\x76\xd7\x16\xe1\xb5\x20\xa3\xb8\x64\x39\x94\x01\x64\x9c\x9d\xf2\x57\x4e\xe9\xd7\xaa\x27\xd3\x5f\xb9\x23\xf3\xc2\x4f\x11\x61\xed\xac\x19\x67\x4f\xd9\x7d\x12\xa8\xf1\xa8\x97\xed\x4f\x7a\x72\xa4\xa8\xdc\x1b\x89\x1a\xce\xd4\xea\xe0\x7c\x40\xda\xdb\xb6\xea\x6c\x5c\xf8\xb5\xaf\xf1\xb9\x91\x36\x4d\x11\xf0\xb9\x7c\xcb\xd6\x05\x80\x4c\x05\xd2\x71\x9c\x9e\xcc\x43\x39\xd2\x67\x16\xf1\x1d\x3f\x15\x95\x8a\x2f\x47\x9c\xaa\x50\xa2\x0c\xdd\x32\x94\x5a\xce\x0e\x95\x07\xb3\xc1\x41\xc5\xb6\x12\xad\xce\x77\x72\xc1\x77\x05\xde\x07\x5a\x8a\x1b\x11\x4a\x1a\x6c\x4e\xc3\xa7\xe2\x54\xf4\x97\x41\x16\xaa\xbc\xec\x66\x4f\x97\x06\x4a\xf1\xb4\x20\xc4\xa7\x3c\x7c\xa3\xa8\xba\x67\xbe\x3c\xf8\xf2\xc3\xf3\xd5\x16\x57\x9b\x42\x6b\x4a\x07\x9e\x77\x4d\xe1\x7c\xfe\x7c\x79\xec\xca\x5e\xf9\xe4\xd7\xd7\xd9\xd4\x3d\x3b\x4d\x3a\x56\x1c\xf7\xee\xdd\x93\x4a\x29\x11\x04\x81\x7c\xe2\x89\x27\x0c\x78\xd1\xf6\x2e\xee\x14\x91\xb6\x71\x41\xb9\x71\x9d\xde\x03\x26\xa5\xfc\xc4\xe9\xbe\x0c\x29\x59\x0c\x83\x69\x32\x10\x07\xb3\x75\x75\xbf\x3f\x0e\xb6\xfa\xe3\x6c\xab\x3f\x91\xe7\xe3\xa9\xdc\x8c\xe6\x6a\x3d\x58\xaa\x81\x90\x08\x49\x41\x40\x15\xe0\x9a\xe7\x54\x39\x8a\x90\xd3\xd6\xbc\x83\x30\x43\x63\xed\x8f\x4d\xbf\x12\xef\x06\x00\x45\x24\x15\x41\x2a\x81\x34\x0b\x69\xbe\xec\x89\x51\x32\xa0\xa3\xc5\xaa\xd8\x9f\x0d\xc5\xce\x6c\x3d\xd8\x5d\xae\xd0\x23\x45\x34\x55\x50\x09\x11\xcd\xa9\x9c\x16\x9a\x33\x00\x63\xd9\xb2\xa0\x58\x52\xae\xa7\x86\x8a\xba\xc8\x3b\x86\xc5\x42\xbe\xfd\xf6\xdb\xf8\xc9\x4f\x7e\xd2\xa5\xa3\xef\x22\x6b\xa7\x95\x41\xd7\x35\x0d\x26\x7c\x32\xd5\x25\xaf\xa7\x7d\xde\x36\xa8\x69\x6b\xab\xbe\xb8\xeb\x9c\xd1\xfb\x0a\x48\xc7\xbd\x74\x7a\xd2\xcb\x76\xce\xcc\xc2\x8f\xe4\x7b\x7f\x68\x78\xeb\x0c\x4a\x3d\xa3\x54\xdf\xb4\xbe\x66\xd3\x01\x7b\x7a\x24\x67\x0d\xa1\x81\x87\x01\xde\x75\x53\x42\x96\x1f\xf3\x9b\xbf\x94\x84\x74\x12\xcb\xfd\xfb\xeb\x8b\xdb\x8b\x40\x25\x80\x92\x80\x65\xb3\xe9\x63\x48\x9b\xfa\x4e\xf3\x97\x92\x4a\xc6\x71\x36\x3a\x1c\x2c\xef\x9f\x9f\x44\xe3\x50\x06\x9b\xa5\x57\xbf\x65\x8a\x05\xaa\x74\x7f\x57\x30\xa3\x64\xd9\xa5\xf1\x7a\xd5\x47\x24\xa0\xf4\x83\xa2\x5e\x5d\xfb\x21\x9d\x8e\xa7\xcf\xca\xd7\xf8\x41\x4e\xe2\x6c\xff\x68\xb0\xdc\x9d\x46\xd9\x14\xe5\x80\xa1\x02\xe8\xc0\xe2\x72\x9c\x4f\x06\x7d\x6d\xd4\xeb\xa7\xcb\xaa\x22\x37\x42\x9f\x7f\xed\xc7\x37\x35\x20\x75\xc6\xb5\x52\xe6\xc6\xb9\x12\x48\x67\x91\x9c\x4e\xe2\x6c\x3f\x13\x6a\x1e\xa4\x34\xe4\x86\x40\xd6\x0a\x23\x06\x37\xed\xed\x8b\xa9\x54\xb4\x1c\x7c\x38\xae\x34\xe6\x65\xcf\x38\x42\x29\x1f\x3a\x40\xa6\x70\x8c\x72\x2c\x51\xb9\x56\xcb\x04\x21\x11\xaf\xcf\xc3\x6b\xab\xcb\x60\x30\x8d\xb3\x50\x01\x21\x08\x7a\xca\xc8\x30\x2e\x00\x64\x14\x45\xb8\x74\xe9\x12\x76\x76\x76\x1a\x3f\x90\xe7\x9a\x3f\xe3\x75\x5f\xf7\xcd\x9a\x14\xa0\xab\x70\x7c\x69\x36\x29\xfc\xae\x48\xba\x2e\x6e\x5f\x1c\x5d\xd3\x6b\xea\x14\x7c\x79\x6f\x52\xda\x4d\xfe\xea\xea\xac\x4b\xdc\x4d\xe9\xe8\x7b\x71\xff\xfe\x7d\x99\x65\x99\xf8\xdc\xe7\x3e\x27\x2f\x5c\xb8\x50\x39\x49\x9a\xf9\x95\x4c\x39\xa4\x00\xfa\xfa\x9e\x2d\xa5\xce\xa7\x4b\xa0\xfa\x08\x28\x49\x56\x69\x9a\x0c\xc4\xa3\xf1\x66\x70\x37\x9e\xc9\xf5\xfe\x58\x9e\xef\x8f\xb3\xf3\xbd\x89\xda\x8a\xe6\x72\x3d\x5c\xa2\x1f\xa4\xaa\x2f\x32\x15\x93\x44\x08\x05\x51\xb4\x2a\x01\x33\x65\x64\x80\x07\x8c\x41\x6f\xfe\x04\xc6\x20\xbe\xb0\x17\x2b\x0c\x12\xa0\x08\xb2\x38\x53\x48\x2a\x22\x29\x03\x24\x59\x44\xf3\x2c\x12\xd3\x65\x8f\x46\xc9\x80\x8e\xe6\xab\x62\x77\xbe\x16\xec\x2e\x06\xe2\x28\x8b\x68\x02\x2a\xc1\x08\x81\x38\x9b\xa2\x41\x8b\x0b\x58\x0c\x70\x23\xa2\xd4\x35\xfc\x9f\xcd\x66\xf2\xd6\xad\x5b\xf8\xcf\xff\xfc\x4f\x5f\xdb\xa8\x63\x14\x7c\xee\x34\x32\xe8\x7b\x27\x9c\xdf\xa6\xb0\x5d\x74\x6e\x53\x5a\x6d\xf1\xba\xd7\x6d\xed\xc1\xf7\xbc\x11\x98\xb1\x4e\x5c\x02\xe0\xe0\x3b\x9d\x85\x72\xba\x3f\x5c\x6e\x5f\x98\x44\xa3\x70\x11\xf4\x73\xd6\x85\x6d\x28\x0a\xc0\x35\xc8\x28\x75\x6e\x95\x37\xe1\xba\xb9\xec\x1e\x8a\x4e\x92\x34\xfc\xe0\xc7\x10\xd4\x94\xcc\xa3\xef\xf5\x00\x38\x0d\xd4\xfc\x78\x25\xdd\xd9\x5b\x5b\x3e\x04\x21\x55\x0a\x29\xd9\xed\xd1\x2a\x6f\x43\xdd\x69\xb0\x63\x58\x41\x22\x4a\xe7\x91\x1c\xef\xac\x25\x77\x9f\x3c\xee\xef\xf6\x96\x62\x43\x40\xef\x7d\xc2\x06\xe0\x06\x60\xe8\x81\xb5\x7d\x1a\xbc\xb6\x59\x33\xc5\x2e\x6a\x93\x98\x3f\xd3\x46\x2d\x3f\xf0\x9a\x66\xb8\xcf\xcb\x7c\x10\x16\x61\x36\x3e\x5c\x5d\xde\x3d\x18\x2c\x1f\x2c\x42\xa9\xa7\x69\xf9\x74\x91\x99\x36\xd2\xbf\x47\x47\x47\xf2\xe4\xe4\x04\x38\x3d\x3b\x78\x6a\xc6\xa5\x49\x48\xdb\x3a\x5b\x09\x87\x65\xe0\xa0\x85\x85\x4d\x41\x48\x33\x81\x64\xdc\xcb\x0e\x53\xa1\xe6\x31\x69\x03\x25\x9f\xfd\x8a\x62\xc2\xc5\xde\x57\x8c\xfe\x18\x6a\x66\x4a\xd5\xa2\x04\x9d\xe7\x1c\xa9\x1b\xe3\x45\xc7\x59\x73\xff\x28\x1b\x8a\x8e\x4f\x10\xc2\xc1\x32\xb8\x7c\x76\x1a\x6e\x3e\x5a\x59\xee\x26\x81\xd9\x3d\x31\x2c\x0c\x75\x4d\x7d\xac\xaf\xaf\x8b\x2f\x7e\xf1\x8b\xf2\xaf\xfe\xea\xaf\x78\x7d\x76\x61\x46\xdc\x8e\xd3\xf5\x7f\x9a\x11\x21\x60\xa7\xdb\x94\x8f\xba\x78\x5c\x57\x97\xcf\x36\xa5\x5d\x07\xb0\x9a\x9e\xbb\xf1\x35\xb1\x4d\x75\x1d\x55\x9d\x12\xf6\x01\xf0\xb6\x32\x77\x01\x8b\xbe\xbc\x8b\x87\x0f\x1f\xca\x7f\xff\xf7\x7f\x17\xbf\xf5\x5b\xbf\x25\x89\x08\x1b\x1b\x1b\x40\xae\x10\xcd\x77\x75\xe6\xcb\x2d\xf6\x45\xef\x57\x42\x44\x49\xc1\x4e\xf4\x01\xf4\x95\x52\x31\x80\xbe\x8c\x68\x3a\x8f\x82\xe3\xf9\x9a\x78\x28\xd2\x70\xa5\x37\x95\x1b\xbd\xa9\xdc\x88\x67\x6a\x23\x9a\xc9\x8d\x78\x2e\xd7\xc3\x44\x0d\x45\x8a\x58\x48\x15\xe7\x53\x4a\x08\x49\x42\x90\xe2\xbb\x9d\x12\xcb\xbf\x06\x58\x79\xdb\x53\x44\x12\x04\x29\x05\x52\x19\x50\xaa\x02\x9a\x67\x21\x25\x69\x4c\x39\x58\xe9\xd3\x51\x32\x10\x47\x8b\x81\x38\x4a\x56\x68\x94\x45\x62\xaa\x48\x2d\x0a\xa6\xc8\x05\x24\x06\xa8\x14\xe5\xe1\xef\x38\xc3\x64\x6d\x2c\xa7\x99\xdc\x24\x49\xe4\xbb\xef\xbe\x8b\x1f\xfe\xf0\x87\x9e\xea\x37\xf5\xee\x7e\xbb\x3a\x19\x6d\x92\x2b\xd7\x2f\x77\x6d\xe0\xd7\x97\x8f\x3a\x79\x75\xf3\x71\x9a\xfc\xd5\xc5\xcf\xe3\x69\xeb\x4c\x9a\x64\xda\xaa\x3b\xbe\x18\x83\xb1\xec\x29\x00\xb9\x0c\x54\x72\xf7\xcc\xe2\xbd\x27\x8f\xe3\xfb\xfd\xa5\xd8\x20\x49\xfd\x52\xfb\x92\x99\xd1\xa8\xd8\x63\x58\x73\x38\x9c\x59\x67\x9c\x9e\x51\xcd\x8c\x3d\xe0\x46\x2d\x2c\x1e\xd7\x04\x80\xeb\x7b\xb3\x47\x0c\x00\x45\x90\xf3\x30\x1b\x1d\x0c\x96\xdb\x93\x38\x1d\xa3\x04\xc9\x29\xef\xcb\x18\xf3\xa2\xdb\xa8\xa5\x5f\x58\xdf\xc7\xc3\xa5\x00\xd2\x45\x28\xa7\x3b\x6b\xc9\xbd\xdd\x61\xf2\xce\x70\x11\x5c\xee\xa5\xb4\x5e\xe6\xba\xcc\x37\x31\xb4\xa1\x89\x4e\xdb\x38\xc8\xae\x27\x3b\x3f\xec\x64\x76\x38\x41\x14\xca\x01\x89\x63\x3b\xe3\xe6\x43\x42\xc9\x93\x5e\xb6\xf3\x60\x2d\xb9\x7d\xb4\x92\xee\x67\xa4\x12\x02\x55\x6c\xca\x5c\x06\xea\xd5\x57\x5f\xc5\xbb\xef\xbe\xeb\xb6\x31\xed\x7c\xed\xa1\x0e\x7f\x48\xc0\xcf\xb8\xf8\x5c\x1d\x40\x69\x54\xcc\x6c\xe4\xe8\x66\xcc\x08\xb2\x52\x4a\x16\x86\x4f\x47\x49\x20\xc7\x2b\xcb\xe0\x3c\xe0\x56\x9c\x36\x26\xac\x56\xba\xfe\x82\x15\x22\xca\xbc\x2a\x0f\x67\xb3\xc2\x9a\x8f\xe4\xf2\x86\x64\x0b\x40\x25\x2e\xff\x7e\x2e\xc5\x23\x11\xa7\xe2\xfc\x85\x93\xe8\xc9\xed\x8d\xf9\x6d\x6d\xe7\xa2\x05\xd9\x65\x5d\x58\x7d\xa0\xe6\xda\xe7\xcf\xe7\xbf\x0b\xb0\xec\x12\x4f\x53\x67\xeb\xa6\xe7\x3a\x1f\xdb\xd0\x65\x84\x59\x97\x87\xba\x3c\xba\xf1\x37\xd5\x9f\xef\xb7\xc9\x6f\x5d\x9e\x9a\xd2\xf4\x3d\xef\x52\x8f\x95\x8e\xe0\xf0\xf0\x50\xfe\xed\xdf\xfe\xad\x08\xc3\x10\x5f\xfd\xea\x57\x65\xaf\xd7\xd3\xfe\x53\xbe\x32\x41\xff\x31\x05\x9a\x10\x51\x5f\xef\xc0\x5b\x80\x16\x0e\x60\xe6\xc8\x4f\xb4\xed\x83\x28\x94\x11\xa6\xb3\x33\xc1\xc9\xec\x4c\xf0\x00\x4a\x45\xc1\x12\x83\x68\x2e\x07\xf1\x4c\x0d\xa3\x85\x1c\x06\x09\x06\xe1\x52\x0e\xc2\xa5\x1a\x04\x4b\xc4\x94\x1b\xf6\x16\x20\x46\x69\x56\x46\x2a\x40\x2a\x41\x52\x11\x52\x45\x90\x2a\x40\x9a\x85\x94\x64\x21\x4d\xb3\x1e\x4d\x97\x31\x4d\xd3\x58\x8c\x93\x01\x8d\x93\x3e\x8d\xb3\x88\xe6\x0a\x58\xf0\xa9\x2e\x02\xf1\xc3\x0f\x0d\x48\x29\xa6\x7e\xe6\xce\x6f\xc2\xca\xcb\x6d\x7c\xc0\xea\x44\xa6\x69\x2a\x6f\xde\xbc\xa9\x99\x96\x36\x57\x07\x12\x7c\xae\x0d\x14\x00\xcd\x71\x74\x01\xfb\x4d\xe1\xbd\x72\x53\x13\xb6\x6b\xd9\xeb\xf2\x56\xcb\xa8\xf8\xf2\xb2\x58\x2c\x20\xa5\x94\x42\x08\xa3\xfb\xcd\xd2\x7d\xb3\x84\x3f\xff\x76\x7b\xc3\x64\x7f\x77\xb8\x7c\xe7\xcc\x2c\xba\x12\x26\xaa\x6f\xf8\x16\x0e\x56\x2a\xba\x97\xe9\x60\xce\x24\x18\x26\xc2\x66\xd3\x4d\x70\x77\x04\xca\x28\x1a\xcb\xdc\x80\xf7\xdb\x05\x30\x02\xe5\x46\xb9\xa3\x7e\xb6\xf3\x70\x2d\xd9\xce\x44\xc9\x68\xba\x1d\xb5\xae\x17\xd7\x30\xb5\x68\xb7\xae\xed\x87\x01\x2d\x00\x12\x09\x95\x8c\x7b\xd9\xd1\xbb\xe7\x66\x37\x2e\x4c\xa2\x8f\xc4\x93\x28\xdf\xce\x40\xaf\xe6\xe3\xe5\x47\x15\x74\xb9\x65\xd0\xe5\x2c\x4f\x87\xf6\xa0\x41\xe6\xdf\xd8\xb9\x58\xd3\x68\xf6\xb4\x93\x5e\xb5\x95\x04\x6a\xbc\x37\x5c\xde\x7e\xb8\x96\xdc\x9b\xc6\x72\xec\x0c\x1e\x0c\xa0\x63\x26\x21\x4d\x26\x12\xbc\x3e\xea\xfc\x78\x7f\xdb\x80\x8b\x6f\xd4\xec\x76\x5e\x4d\x0d\x89\x2b\x04\xbe\xa4\x33\x65\xcf\xd2\x54\xa8\xf4\xd1\x20\x3d\x58\x84\xea\xc8\x01\xd6\xb9\x63\x07\x66\x91\xbb\xee\x4d\xa3\x67\x1e\xce\xfe\x3e\xf5\xf4\x20\x69\x44\x5e\x06\x60\x48\xbb\x32\x7b\x94\xc7\xe5\x31\x64\xa2\xd2\x47\xa0\xd0\x3f\x3f\x8d\x9f\x89\x25\xfd\xd7\x0c\x30\x76\x2e\xaa\x3c\xe2\xdb\x6f\x1c\xec\x77\x5d\x94\x19\x3c\xef\xbb\x28\xad\x0f\x12\xd7\x07\x79\xf6\x38\x79\xf8\xa0\xfe\x7e\x9e\xee\x34\x20\xa7\x4b\x3c\x95\x70\x69\x9a\xe2\x2f\xff\xf2\x2f\xf1\xc7\x7f\xfc\xc7\x22\x0c\x43\x59\xd8\xba\x00\xf6\x7e\x40\xbc\x4d\x85\xc8\x47\x72\x31\x80\x98\x75\xee\x31\x38\x68\xc9\xed\x43\xe2\xe2\x2f\x04\x10\x83\x28\xcc\x62\x9c\x64\x71\x10\xce\xd7\x11\x02\x88\xa0\x54\x7e\x9a\x6f\xa6\xc2\x60\xa9\xe2\x20\x45\x0c\x09\x21\x24\x42\x92\x4a\x90\x2c\xda\x36\x41\xca\x80\x4a\xd0\x12\x50\x9a\x45\x94\x64\x21\x12\x08\x4a\x8a\xf2\x2c\xc1\x14\x1b\xd9\x07\x4b\xf2\xe9\xad\x39\x0a\xc6\xa8\xe1\x97\x8f\xec\xf4\x09\xdb\x56\xc7\x01\x40\xbe\xfa\xea\xab\xee\x8a\xbd\xb6\xef\x71\xda\x6f\xe5\xea\xc3\xae\x20\xc6\xf7\xbc\xcb\x20\xa6\x4b\x5e\x9b\x94\x7f\x5b\x1e\x9a\xee\x3b\x81\xa3\x6f\x7e\xf3\x9b\xf2\xf7\x7e\xef\xf7\xc4\x13\x4f\x3c\xa1\xeb\xc3\x00\x6d\x6d\x7b\xa4\xbf\xdd\x3c\x92\xd3\xbb\x1b\x8b\x77\x2e\x9e\xc4\x1f\xeb\xa7\xf1\x7a\x28\xd1\x07\xaa\x7a\xda\xd8\x9d\x30\x95\xef\xdd\xbe\xc2\xa2\x66\x6a\xe2\x70\x1e\x54\xec\x1a\x9d\x28\x88\x00\x09\xc8\x49\x9c\x1d\xee\xac\x2f\x6e\x3e\x5c\x4f\x1e\x28\xaa\x9e\x2e\xae\xeb\xa0\x66\xaa\x88\x1f\xb4\xc8\xe5\x94\xcb\x70\x4a\x44\xc9\x32\x50\xd3\xbb\x1b\xf3\xf7\xdf\x3f\xee\xbd\xba\x3e\x0f\x2f\xc7\x16\xeb\x52\xcd\x9b\x42\xd9\xd7\xb9\x65\x28\x8b\x69\xbf\xf0\x0e\xfc\xf9\xbd\xd5\x67\x92\xf5\xac\xa8\x0f\x1c\xaf\xa4\xf7\xef\x9e\x99\xbf\x33\xea\xa7\xfb\xaa\x9c\xda\x35\xe7\x80\x39\xc0\xcd\x67\xac\x7b\x5a\xdd\xee\xfd\xad\x03\x2e\x6d\x53\x41\xbe\x0c\x58\x82\x3d\x99\x4c\xf0\x67\x7f\xf6\x67\xf2\x4f\xfe\xe4\x4f\x04\x50\xda\xb8\xe8\x78\x39\xcd\x9d\x09\x95\x9c\xf4\xd2\xd1\x34\xce\x0e\x15\xa9\x94\x14\x42\x6b\x2a\x88\x0b\x15\x03\x0e\xae\x41\x15\x1c\xff\xdc\x29\xf3\xdf\x15\xfa\x6a\x80\x36\x58\xe1\x02\x2b\xeb\x8c\x23\x85\x70\x6d\x11\x3c\x33\x9c\x87\xeb\xe3\x58\xee\xa7\x81\x0a\x15\xdb\xf2\x1f\x36\xa0\x03\xfc\xc0\xaf\x49\xf9\xb9\x54\x2f\x1c\x7f\x4d\xd3\x43\x75\xcf\x9a\xf2\xd0\x04\x9c\x7c\x53\x29\x5d\xf2\xe2\xe6\xb9\x2e\x4f\x5d\xfc\xf9\xf2\x5a\x57\x8e\xa6\xbc\xd5\xd5\x7f\x5d\xbe\x9b\xfc\xfb\xbe\x91\x9b\x07\x5f\x59\xad\x38\xfe\xfc\xcf\xff\x1c\x7f\xf8\x87\x7f\x88\xb5\xb5\x35\xce\x5e\xf2\xb0\x5a\x09\xea\x15\x6c\xda\xde\x23\x01\x03\x27\x4a\xa9\xb8\x00\x31\x21\x4a\xe0\x12\x17\xd3\x48\x82\x88\xc2\x62\x3a\xb3\x88\x87\x84\x22\x25\xb2\x90\xc2\x2c\x2c\x0f\x84\x73\xca\xc3\x9d\x03\x1e\x6c\x2a\xdc\xf9\x93\xb0\xa7\x7a\xb8\xe2\x4b\x9c\x3f\x6e\x78\xac\x47\x74\x5a\x6f\x54\xd2\xfd\xb7\x7f\xfb\x37\x79\xeb\xd6\x2d\x9f\x21\x60\x93\x3b\x2d\x0b\xd2\xb5\x7d\xb9\xcf\xdb\x18\x0c\xed\x47\x3f\xeb\xaa\x17\x7c\xb2\xe3\x8b\xbb\x29\x8d\xa6\xbc\x3e\xee\xc0\xc9\xed\xa8\xcd\x37\x55\xc0\xfc\xc1\xda\xe2\xde\xfb\x1b\xf1\x8d\x41\x12\x6c\xae\xcf\x83\xcb\x42\x91\x30\xb3\x22\x9a\x09\x80\x4d\x12\x98\xce\x98\x4f\x95\x30\xe7\x33\x15\xb0\x00\x4b\x8d\x1f\x37\x12\x0d\x8e\x92\x48\x8e\x77\xd6\x93\x77\xde\x3b\x37\x7f\x63\x16\x4a\xbd\xf4\x9e\x1b\x82\x7b\x0d\x51\xef\xde\xbd\x8b\x7f\xfe\xe7\x7f\xc6\x60\x30\x90\x7f\xf4\x47\x7f\x54\x37\xdb\xe0\xca\xfa\x7c\x19\xa8\xf1\x8d\x4b\x93\xd7\xce\x4d\xa2\x6b\x97\x4f\xe2\xe7\xc3\x0c\x7d\x5f\x79\xeb\x56\xb6\x96\x33\x00\xbe\x81\xb5\x27\x1c\xbf\x56\xd5\xe7\x6e\x05\x9d\xf4\xd3\xfb\xef\x9d\x9b\xbd\x7c\x77\x63\xf1\xde\x2c\x92\x23\xd8\x07\x98\xf2\x36\x5b\x56\xa7\x52\xf8\xd6\xb7\xbe\x25\xef\xdc\xb9\x03\x9c\xae\xad\x35\xfa\xed\x6a\x9c\xdb\xe6\xbc\x53\x13\x52\x4a\x51\x28\x1a\x41\x55\xaa\xcc\x28\x36\x05\xa4\x49\x98\x9f\x7b\x90\x0a\x35\x8f\x33\x1a\x02\xb0\xe7\x36\x99\x73\x11\x28\x50\x22\x4f\x7e\x72\x34\xf7\x41\x95\x10\xb6\x17\x6e\x65\xed\xdb\x12\xbd\x3c\xec\x9b\x3f\x2c\xfd\x31\x22\x48\xac\x2c\xc5\xe5\xad\x49\x74\xe9\x60\x75\x79\x3f\x15\xbc\x43\x80\xde\xa3\x03\x44\x84\x7e\xbf\x8f\xaf\x1c\x54\x60\xd3\x00\x00\x20\x00\x49\x44\x41\x54\x7e\xf5\xab\xf8\xeb\xbf\xfe\x6b\x5d\x27\xbc\x7e\xb4\xab\x1b\xe5\xd4\x7d\x9b\x2e\x0a\xac\x4b\x9c\x6d\xe9\xf8\xe2\xee\x82\xae\x9b\xe2\x6b\x8a\xab\x29\x8e\x3a\x74\x5e\xf7\xcc\xbd\xef\x4a\xb3\xd7\xf9\x69\xcb\xcf\x69\xc3\x03\x39\xb8\xc7\x37\xbf\xf9\x4d\x21\x84\x90\x9f\xff\xfc\xe7\x71\xf5\xea\x55\xf3\x92\xed\xf9\x62\xda\x5e\x00\x38\x40\xc7\xbf\xd1\xc1\x6b\x39\x4b\x01\x88\x02\x9c\xc4\x0c\x98\x68\xe0\x22\x18\x98\xe1\x32\x5a\x18\x94\xe7\x9b\x27\x16\xcf\xb5\xb3\x80\x0b\x5f\xa5\xa0\xf3\xe0\xfc\xb9\x27\x60\xfb\xfe\x5c\x9b\x95\xc4\x0d\x53\xd3\x49\x58\x75\xfc\xed\x6f\x7f\x5b\x6e\x6f\x6f\x43\xd9\x67\xc4\x74\x71\x6d\xdf\xfa\xe7\xdd\x16\xbb\xe6\xa7\x49\x96\x4f\x9b\x46\xdd\x20\xa0\x4b\xd8\xd3\xfa\x77\xc3\xf2\xbf\x9c\x59\x23\xf4\x67\xb1\x1c\xdf\xd9\x9c\xdd\x5c\x9b\x07\x5b\x51\xd6\x1f\x0c\x96\xc1\x66\xae\x7a\x73\x45\x6a\x80\x07\x67\x01\xd8\x85\x6f\x70\xe9\x63\xc8\xb9\x6d\x63\xc5\x4f\x4d\x24\x04\x42\x4a\x2a\x3d\x1c\xa4\x77\xdf\xdf\x58\xbc\x79\xb0\xb2\xdc\x07\x54\x02\xd8\x2c\x20\x6c\x39\xd6\xe5\x45\xb1\x2a\x50\x4a\x29\x7d\x83\x4b\xde\x66\xb5\xfc\xcf\x41\xe8\x4b\x60\x7e\x38\x58\xee\x5f\x7f\x62\xfc\xa3\x48\xae\x0d\x2e\x8c\xe3\x8f\x86\x12\x31\xd5\x94\xd7\x2d\x03\x79\x9e\xd9\xae\xec\xf0\x2a\x75\xe5\xd4\x8f\x3b\x3d\x35\x8d\xb2\xa3\x3b\x67\xe7\xaf\xbe\x73\x7e\x76\x73\xdc\xcb\x8e\xe0\x37\x92\xf7\x4d\x9d\xe9\x7d\x93\xba\xe8\x73\x8e\x3b\xea\xda\x9d\x04\x6c\xc6\xc5\x0d\x50\x37\x12\x68\x4a\xb8\x02\x7a\x1c\x7a\xca\xb5\x38\x37\x3b\xe8\x4a\x52\xc9\xa8\x9f\xed\x73\xe0\x02\x00\x0e\xa3\xc7\x98\x13\xfd\xda\xae\xf1\x92\xa9\xe1\xc6\xbb\xfe\x78\xdc\xe9\xa4\x92\xe1\x29\x5f\x94\xc8\xdd\x23\x0d\x2e\xf5\x56\x78\x8e\x32\xda\x38\x3f\x8e\xae\x46\xe7\xe8\xcd\x59\x04\xce\xb8\x80\xdb\xb9\x08\x21\xb0\xba\xba\xda\x04\x12\x7d\x4c\x82\xeb\xea\x90\x6a\x1d\x23\xe3\x0b\xe3\x4b\xd7\x17\x8e\xc7\xcf\xe3\xe1\xfe\xba\xb0\x36\x75\x6c\x43\x1b\x0b\xe1\xcb\x87\x97\xad\xf0\xbc\x6b\x03\xe2\x75\x61\xf4\x75\xd3\xbb\xba\x6b\x5f\x1a\xbe\xfc\xd4\x32\x33\xb3\xd9\x4c\x02\x10\xff\xf1\x1f\xff\x81\x4f\x7f\xfa\xd3\xf2\x43\x1f\xfa\x90\x9e\x33\xe7\x7e\xcd\x00\x01\x76\xa7\xaf\xa7\x90\x92\xe2\x3a\x54\xca\xd8\x5d\x59\x2c\x0b\xbb\xd6\xf1\x85\x4c\x56\xf5\x5c\xbd\x70\xc0\x0a\xcf\xb3\xb5\x3b\x36\x63\x46\x4c\x7e\xdc\xd5\x14\x70\xc0\x49\x0d\xb3\x62\x96\x37\xb3\xf8\x0d\x40\x21\x22\x7c\xfb\xdb\xdf\x96\x77\xef\xde\x75\xcf\x1d\xe2\x75\xde\xe5\xbb\x37\xf9\xe5\xba\xf1\x71\x06\x74\x68\x08\xd3\x85\xad\x69\x0b\xd7\x55\x3f\xb7\xa5\xf1\xb8\xe5\xf4\xa5\xe7\x02\x58\xcd\x9e\xe5\xb6\x4a\x84\xf9\xfe\xea\xf2\xe1\xed\x73\xf3\x1b\x83\xa5\xd8\x78\x62\xd4\xeb\xc7\xa9\x18\x54\xa6\xe2\xf9\xe0\x92\x3d\x77\x77\xb7\x75\xf5\x79\xc9\xda\xd8\x8a\xdf\x5a\x06\x8c\xb2\x7f\xe0\x71\x4b\x52\xf2\xa4\x9f\xee\xbc\xbf\xb1\x78\xf3\xfe\xfa\xe2\x4e\x12\xaa\x31\xf2\x55\x6d\x2e\xb3\x50\x01\xd2\xdb\xdb\xdb\x52\x1b\x84\x2f\x16\x0b\x7c\xfd\xeb\x5f\x97\x5f\xfe\xf2\x97\xf9\xc0\x5d\xb7\x0f\xde\x2e\x35\x78\x09\x25\x10\x6f\x9f\x9d\xdf\xe9\xa7\xe2\x27\x42\x51\x7c\x6e\x12\x5d\x0b\x25\xc5\xc6\x9a\xc1\x19\x53\xfb\xea\x44\x31\xbf\x66\x26\xc2\x41\x81\x56\xd9\x89\xc7\xc1\xce\x01\x2c\xa8\x98\x24\x50\xf3\x7b\x67\x16\x37\xde\xda\x9a\xbe\x7a\xbc\x92\x3e\x94\x84\x31\xc8\x5a\xe1\x67\x80\x8b\xb3\x9f\x4b\x9b\xfc\xf8\x64\xac\xad\x1f\xab\x65\x5c\x7c\x91\xb6\x81\x98\xce\x1d\x04\x95\xcb\xc7\xf8\x9c\x58\x2a\x09\xe9\xe1\x20\xdd\x4b\x02\x39\x1a\x2c\xc5\x79\x13\xc0\xb5\x57\x71\xae\x6c\xa6\x04\x16\x1a\x2f\x11\xba\xc3\x96\xb0\x0f\xab\x6f\x6c\x23\x22\x17\x99\x7a\xf9\x16\x70\x7e\x87\xd3\x78\x42\x51\x7f\x63\x16\x5d\x5b\x59\x8a\xe1\xb8\x97\xc5\x52\xb0\xd1\x6c\xae\xa4\xeb\xe8\xec\x2e\x23\x7f\x5f\xe7\xd8\x04\x14\x9a\xa8\xed\xa6\x6f\x55\x17\xa6\x4d\xd0\x9a\xf2\xdc\x86\xac\xdb\xca\xee\x4b\xb7\x2e\xbd\xba\xf8\x9a\x1a\x4b\x5b\x1e\xba\xf8\x6b\xca\xf7\xe3\xa4\x03\x00\x72\x34\x1a\xe1\xbf\xfe\xeb\xbf\xc4\xcd\x9b\x37\xe5\xd5\xab\x57\xf1\xf1\x8f\x7f\xdc\x7a\xcf\x40\x86\xae\xdb\x14\x39\x40\xd1\x20\x44\xdb\x59\x59\xe0\xa5\xf0\xeb\xfe\xea\x6b\xe8\x7b\x62\x1b\x69\x39\xd7\xf6\x36\xe6\xc5\x37\x25\xb6\x92\x44\xff\x7a\x40\x89\x05\x6c\x78\x18\xcf\xb5\xb5\xe4\x54\x29\x25\xbf\xf5\xad\x6f\x01\x00\xee\xdf\xbf\x8f\x34\x4d\xeb\x80\x71\xd3\x33\x5f\x5d\x6b\xbf\x75\xef\xba\xca\x65\x53\xdc\x5d\xda\x5c\x1d\xb8\xad\x93\xfb\xc7\x01\x3f\x6d\xe9\xd7\xc5\xe1\x8d\xf7\xc7\x3f\xfe\x31\x3e\xfb\xd9\xcf\xca\x4b\x97\x2e\xb9\x2c\xa0\x40\xde\xb9\x85\x54\xae\x0e\x8b\x93\x40\x8d\x1e\xac\x2f\xee\xac\x2e\xc4\x46\x2f\x15\xc3\xf3\x93\xe8\x5a\x24\x85\x39\xaf\xc7\x1d\xf5\x93\x8f\x09\x2f\x18\x1a\x72\xe8\x79\xab\x73\xa7\x72\x50\xd9\xc6\xe0\x48\x52\xf2\xa4\x97\xed\xde\x39\x3b\xbf\x7e\xe7\xec\xec\xcd\x93\x7e\xba\xcf\x3a\x69\xce\x2e\x70\xf9\x36\x6e\x3e\x9f\x63\x34\x1a\x49\x00\x42\x4a\x29\xf7\xf6\xf6\x34\x68\xe1\xdf\x2f\x2d\xda\x25\x67\x19\xa7\xc8\xdb\xdc\x74\x11\xaa\xa3\xdb\x9b\xf3\x77\xa3\x4c\x0c\x9e\xc5\x8a\x38\x37\x8d\xae\x44\x99\xe8\x9b\x4c\x73\xbb\x16\x5f\x99\xd9\x2f\xaf\x33\x5e\x45\x75\xec\x15\xdf\x0f\x0d\xa4\xb0\x08\xd5\x78\x67\x7d\x71\xf3\x8d\x8b\xd3\x97\xf7\x86\xc9\x83\xa5\x50\x63\x90\xd9\x4b\xa9\x02\x5a\x5c\xc0\xf2\xc3\x1f\xfe\x50\xee\xed\xed\xa1\xc6\xb5\x0d\x18\xe0\x79\x2e\x01\x20\x60\x0f\xdc\x9e\xd4\xbd\x17\x28\xab\x4c\xb2\x7b\xed\xd7\xb5\x91\x05\x11\xd1\x27\x3f\xf9\x49\x10\xe9\xe5\x3a\xd0\x69\x8a\xe2\x37\x00\x10\x15\x7f\x31\x40\xbd\xa7\x1f\xf5\x9f\x1d\x2c\x83\x2d\x02\x84\xb5\x03\xa2\x05\xc3\x19\x7c\xe1\x31\x3b\x68\xd3\xf5\x5f\x2e\x81\x66\xe1\x08\xc8\x8d\x7f\x35\x44\xc9\xfd\x6b\xc4\x69\x6c\x60\x9c\x25\xd2\x7a\x73\x23\x17\xed\x16\xfe\x85\x02\x16\x07\xab\xcb\xb7\x4e\xfa\xd9\x7e\x1a\xa8\x05\x4a\x23\xc5\x0c\xb9\x12\x56\xc5\x47\x56\xc3\xe1\x10\xf7\xef\xdf\x27\xc9\xf6\x22\x77\xea\x5d\x3f\x77\xeb\x9b\x7f\x03\xf7\xbd\xfb\xcc\xfd\x5e\xae\x3f\xee\x7c\xcf\xf9\x33\x37\xdd\x2e\x61\xdc\x7c\xd4\xa5\xcd\x9d\x2f\x9d\xb6\x77\x6d\x61\xba\x28\xf2\xa6\x38\x3e\x88\xf3\xc5\xdb\x39\xad\xf9\x7c\xae\x8e\x8f\x8f\xd5\xc9\xc9\x09\x01\x50\x5b\x5b\x5b\x5a\xd2\x75\x78\xc9\xee\x15\x4a\x10\xa1\x65\x2e\x2b\x94\x65\x06\x60\x59\x5c\x2f\x51\xae\x92\xe0\xab\x26\x16\x6c\x25\x4f\x42\xc5\x88\x93\x88\x16\xb0\xf7\x57\x59\x00\x98\x11\xd1\x82\x88\x66\x00\x66\x00\xb4\x9f\x59\xf1\xbb\x60\xcf\xf9\x2a\xa1\x45\x91\xde\x92\xfd\x72\x26\x26\x53\x4a\x65\x00\x4c\x5b\x39\x39\x39\x91\x3f\xfa\xd1\x8f\xd4\x9d\x3b\x77\x70\xeb\xd6\x2d\x79\x7c\x7c\xac\xa4\x94\x6e\x5b\x20\xcf\x75\x93\xfc\xba\x32\xe9\xfa\xff\x79\xc8\x42\x9d\xdc\x37\xc5\xed\xe6\xa1\x4b\x7b\xf5\x95\x9d\xa7\xcf\xf3\x83\x0e\x7e\xeb\xea\xa9\x22\xb7\x93\xc9\x44\x5d\xbd\x7a\x95\xce\x9e\x3d\x5b\xe0\x0c\xd3\x0d\x08\xa5\x14\x11\x91\xd6\xfd\xb9\xfe\x27\x04\x69\x7e\x42\xf2\x12\x00\x7a\xa9\x58\xe9\xa7\x62\x90\x6f\x42\x9a\x27\xcd\xb7\xaa\xe0\xbd\xac\xd5\x49\x6b\x66\x05\x54\x65\x1d\xc0\x19\x16\x7b\x3b\x0b\x00\xe5\x14\xbf\x02\x14\x29\x8c\x7b\xd9\xc1\x9d\xcd\xf9\xf5\x77\x2e\xcc\x5e\xdb\x5b\x5b\xbe\xbf\x0c\x30\x02\xe1\x04\xf9\x26\x88\xb3\x42\xc6\xb5\xdc\x6a\x7d\x9e\x29\xa5\xe4\xdd\xbb\x77\xe5\xeb\xaf\xbf\x8e\xf1\x78\x6c\xf5\x87\xe3\xf1\x18\x97\x2f\x5f\x56\x41\x10\x98\x7a\x2f\x58\x78\x62\x83\x00\xd2\x75\x02\x02\x2d\x03\xa5\x66\x91\x9c\x65\x42\x2d\xc3\x4c\x84\x71\x46\xfd\x40\x52\x2f\x9f\x49\xc8\x0b\x67\x36\xd8\xab\x19\xdc\x17\xb5\x5f\x02\x16\x5d\x0f\x55\xfc\xc7\x66\x1b\x0a\xc5\x41\x4a\xce\x22\x79\x7c\x6f\x63\xf1\xe6\x8d\x8b\xd3\x9f\xde\xdf\x58\xdc\x5a\x84\xea\x08\xf9\x59\x61\x13\x54\x77\xb2\x5e\x16\x3a\x24\x2b\xfe\x24\x00\xbc\xf8\xe2\x8b\xaa\x00\x72\xba\xec\xae\x8c\xb9\xe0\xbc\xad\x6f\x02\x60\x03\x97\x36\x57\xd7\xe9\xd5\x75\x9e\x00\x40\x52\x4a\x5c\xbc\x78\x51\x15\xc0\xc0\x7c\x2c\xa5\x54\x80\x72\xd4\x17\x29\xa0\x27\x09\xe1\xd5\xe3\xde\xb5\xf5\x45\x78\x25\x50\x14\xf9\x0c\x74\xb9\x40\x5b\x3b\xe6\xea\xe7\x1c\x98\x14\xa1\x0b\xf0\x58\xb1\x94\x36\x31\xb1\x8f\x69\xe1\x20\x2e\x0c\x36\xe3\x68\xc3\x54\xd7\x6f\xf1\x6f\x16\xc9\xf7\xf7\x87\xc9\xfd\x45\xa4\x26\xc8\x11\xe9\x52\x77\x22\x2a\x6f\xd5\x8a\x88\xe4\xf9\xf3\xe7\xf1\xda\x6b\xaf\x21\x4d\xd3\x26\x65\x5a\x57\xd7\xc2\xf3\x4b\x9e\x67\xae\x70\xf8\xfc\xf9\xd2\x68\x53\x78\x6e\x9c\xbe\x5f\xee\xc7\xc0\xc5\x9a\xfc\xf0\x3f\x59\x13\x17\x50\x2d\x03\xcf\x1b\x79\xde\xd7\x8d\x1c\x2d\x08\xeb\x94\xcd\x8d\xbf\x4b\xd8\x26\xd7\xf4\x7d\xdd\xba\xf2\x95\x01\x00\xc4\x7c\x3e\x97\xa3\xd1\x88\x66\xb3\x99\x3a\x38\x38\x50\x17\x2f\x5e\x24\x95\xf7\x0c\x0a\x80\x9e\x46\x51\x44\xa4\x94\x52\x59\xd1\xe9\x67\x00\x32\x06\x5e\xb4\x92\xd1\xd7\x4b\xfe\x57\xc8\xaa\x56\xd0\x09\xf2\x65\xcc\x09\x80\x85\x52\x6a\x51\x00\x95\x45\xf1\x7c\xae\x94\xd2\xa0\x64\x81\x72\x59\xf3\x02\xb9\x92\xe7\xf1\x24\x45\xf8\xa4\x48\x43\xa7\xc9\x19\x18\xad\xfc\x54\x31\x2d\xa6\xf6\xf6\xf6\xe4\x8d\x1b\x37\xd4\xf6\xf6\x36\xde\x7a\xeb\x2d\x79\x70\x70\xd0\x04\x56\xea\x3a\xf2\xba\xef\xe0\x53\x9c\x70\xfc\xf8\xda\x0a\x7f\x5f\xd7\x7e\x7c\x69\x76\x0d\xdb\x76\xef\xe6\xcd\x4d\xa7\x09\xc4\x48\xc7\x6f\x5d\x38\x5f\x67\xe2\x9b\x62\x52\x00\x20\xa5\xa4\xe1\x70\xa8\x86\xc3\x61\x3e\xe5\x50\x28\x5d\x36\x78\xd5\xf9\x0d\x00\x90\x22\x50\x12\xca\x6c\x16\xa9\x44\x12\xd2\x5e\x26\xfa\xbd\x54\xac\x06\x8a\xf2\x05\x1a\x8a\x75\xc4\x45\xae\xcc\xb8\xd4\x1d\x74\xf2\x0e\x59\xe3\x13\xad\x71\xb4\xfe\x67\x7a\x9c\xeb\xfc\x4c\x28\x39\xee\x65\x7b\xdb\x67\xe7\xaf\xbf\x7d\x61\xfa\xda\xee\x5a\x72\x27\x71\x3a\x6a\x2a\xcf\xcb\x9a\x23\x97\x59\x23\xa7\x00\xd4\xed\xdb\xb7\xd5\x9b\x6f\xbe\xc9\x65\x89\x00\xc8\x83\x83\x03\xfa\xa5\x5f\xfa\x25\x44\x51\x54\x76\x1f\xac\x6e\x74\xbd\x14\x8c\x68\x5e\x4f\x04\x4a\x02\x99\x4d\x62\x39\x4d\x42\xb9\x10\x8a\x10\x67\xa2\x17\x4a\x8a\x85\x22\x61\x95\x53\xf7\x8d\x1a\xb4\x81\x29\x26\xeb\x46\xa7\x0d\xcb\xd9\x46\xbb\x0a\xa9\x50\xc9\xb8\x27\x0f\xef\x9e\x5d\xbc\xf5\xd6\xc5\xe9\xcb\x77\x37\x16\xef\x16\xa0\xe5\x44\x29\x35\x21\xff\x69\xec\x4b\x14\x03\x8d\xa2\x8f\xc3\x2b\xaf\xbc\x22\xef\xde\xbd\xcb\xfb\x35\xde\x7e\xf8\x80\xc2\x7d\x66\xc9\x94\xcf\xb5\x9d\x55\x54\xe7\x9a\xfc\x98\x77\x4a\x29\xf9\xd2\x4b\x2f\xe1\xf9\xe7\x9f\x17\x41\x10\x58\xf3\xe2\xe4\x59\x61\xb4\x0c\x64\x32\xea\x67\xbb\xa9\x50\x49\x94\xd1\xc0\x8e\x36\x2f\x57\x01\x3d\xac\x3b\xa0\x64\x40\x72\x01\x55\x4c\xb2\xb5\x07\x07\x78\x94\x8f\x8b\xfc\xf0\xa4\xf2\x2f\x59\xd6\x64\x79\xcc\x00\x3f\x94\xca\x6c\x6e\x54\x54\x37\x3f\xe0\x2a\xcc\x68\xfd\xfc\x34\xba\x36\x48\x82\xf5\x51\x2f\xdb\x97\x64\xdb\x10\xb0\xba\x38\x2d\x9d\xeb\x3a\xdf\xf4\x8b\xef\x1d\x3a\xf8\xe3\xd7\xee\x54\x4e\xdd\x54\x90\x3b\x05\xd4\x94\xae\xfb\xac\xe9\xb9\xeb\xba\xd2\xeb\x5d\xdf\xf1\x67\xa7\x99\x46\xe8\xf2\xae\x8b\x7b\x9c\x29\x25\x73\x7f\x7c\x7c\x8c\x97\x5e\x7a\x49\xf6\xfb\x7d\x21\x84\x90\x00\xf0\xdc\x73\xcf\xa1\xd8\x46\x43\xb7\x2f\x73\xc8\x27\x4a\x50\x67\xf6\x13\xa2\xd2\xb8\xd7\xbc\x83\x2d\x9f\xa2\x88\xcb\xbc\x77\xf7\x65\xd0\xd3\x44\xec\x19\x9f\x2a\xe2\xf9\x97\xfc\x9d\x8f\x56\xe6\x7e\x74\x3a\x0f\x1e\x3c\x90\x07\x07\x07\xd8\xdd\xdd\xc5\x3b\xef\xbc\xd3\x65\x7a\x44\xe7\xdb\x4d\xdf\x05\x28\x6d\xdf\xdb\x17\x47\x9d\xab\xfb\x5e\x75\x69\xf2\x69\x83\xb6\x6f\x2d\x9c\x5f\x5f\xda\x82\xdd\xd7\xe5\xdb\x4d\xbb\xc9\xb5\x95\xa7\xf6\x3b\xdc\xbe\x7d\x5b\x5e\xbe\x7c\x59\x5c\xbc\x78\x11\x00\xe0\x7c\x67\xcd\xea\x85\xc8\x3b\xbc\x10\x40\x98\x09\x84\x8f\x06\xcb\x07\x52\x28\x64\x42\xc9\x54\xac\xa4\x17\xc6\xd1\x53\xbd\x54\x0c\x84\x75\xd6\x0f\x1b\x98\xfa\x55\x7c\xf5\xba\x18\x94\x82\x14\xeb\x3d\x00\x1d\x89\x02\x21\x15\x32\x39\xee\x67\x3b\x77\x37\xe6\x37\x6f\x9d\x9f\xdd\x78\x38\x4c\xee\x14\x1d\xf5\x54\x29\xa5\xcf\xca\x72\xa7\x89\xac\xbf\x87\x0f\x1f\xca\x9d\x9d\x9d\xda\x3a\x7c\xf3\xcd\x37\xc5\x2f\xfe\xe2\x2f\xca\x5e\xaf\xa7\xdb\x93\xae\x0f\xa1\xeb\x85\x88\xa6\x6c\xdb\x0c\x91\x91\xc2\xa8\x9f\x62\x19\xc8\x74\x1e\xc9\xf9\x34\xce\xa6\x97\x8f\x7b\xd7\xd6\xe7\xc1\x56\x9c\x89\xbe\x80\xd9\xe5\x1a\xac\xfb\xab\x76\x74\x8a\x81\x3e\x1f\xd3\xc2\x58\x96\x79\x28\xc7\x47\x2b\xe9\xee\x83\x33\xc9\xed\xdb\x67\x67\x6f\xee\xac\x27\x77\xd2\x40\x8d\x00\x8c\x51\x82\x37\x0e\x5a\xac\x15\x83\xac\xdd\xe3\xfa\xf5\xeb\x28\x6c\xf4\xb4\x6b\x93\xcd\x3a\x57\x91\xfd\xb6\xb3\x8a\xdc\xc0\xdc\x8f\x70\xae\x9b\x1a\x57\x65\xe5\x01\x37\xe2\xd1\xf3\xd9\x8a\x90\x1e\x0e\x96\xbb\xcb\x40\x8d\xfb\x4b\xac\x93\xf9\x30\x80\x0b\x39\x5c\x00\x52\x32\x32\xfc\x9c\x14\xe8\x87\x0c\xa6\xa3\xfa\x1c\xb0\x61\xa7\x01\x40\x3a\xea\xf2\xac\x24\x0d\xf9\x39\xa0\xd1\x52\xa1\x69\x48\x52\x80\x00\xe2\xb5\x79\xf0\xd4\xc6\x2c\xdc\x3a\x1c\xa4\xf7\x17\x91\x1c\x17\xf5\x13\xb2\x79\x5f\x53\x5f\x4f\x3f\xfd\x34\x6e\xdd\xba\x25\x96\xcb\x25\xaf\x27\xb7\x5e\x1f\xb7\x73\x07\xaa\xdf\x4f\x3f\x6b\x13\x2c\x9e\xb6\xef\xfb\xba\xe1\xeb\xf2\xf1\xb8\x80\xb8\x4d\x1e\xbb\x74\x48\x75\xfe\xba\x80\xb1\xa6\x67\x6d\xe9\x9c\xc6\x6f\xdb\xb7\xf3\xd6\xcb\x7c\x3e\x37\xc6\x80\xbd\x5e\x4f\x04\x41\x20\x01\xe0\xe2\xc5\x8b\x58\x5d\x5d\xad\xf8\xe7\x8a\x91\x81\x10\x73\x0f\xd8\xf6\x2c\x70\x3a\x45\x72\x35\x5f\x35\x7e\x17\xc4\xe8\x5f\x73\xed\xfa\x71\x0c\xf6\x01\x00\x0f\x1e\x3c\x90\xf3\xf9\x1c\x6f\xbd\xf5\x16\xde\x7f\xff\xfd\x2e\xf5\xd9\x05\x3c\xd4\xf9\xe5\xf2\xe0\xfa\x69\x02\xf9\x8f\x9b\xa7\xba\x78\x9a\x64\xe7\x71\x40\x74\x53\xd9\xdb\xe4\xd4\xd7\x5e\x3a\xb5\xad\x83\x83\x03\x1c\x1e\x1e\xca\xcd\xcd\x4d\xae\xf7\xf5\x26\x8a\x1a\xbc\xf0\x4e\x3a\x94\x02\xe2\xa8\x9f\x3e\x48\xcf\xcd\x96\x8b\x50\xcd\xa7\x51\x6f\x7c\xf1\x24\xbe\x36\x4c\xc2\x8d\x50\x22\x06\xec\x81\x6a\xc9\xa8\xa8\x62\xc0\x48\x9e\x4e\xa1\x50\xd9\x54\xea\x70\x33\xa4\x27\x05\x49\x90\xcb\x40\x4e\xf7\x57\x93\xbb\x77\x36\xe7\x6f\xde\x39\x3b\x7f\xe7\x70\x90\x3e\x48\x85\x3c\x42\xd1\x41\x6b\x96\x45\x95\xbb\x37\x5b\x1b\xad\x69\xd9\xbd\x7d\xfb\x36\xee\xdc\xb9\x53\x5b\x9f\x2f\xbe\xf8\xa2\x7c\xfa\xe9\xa7\x45\xbf\xdf\x87\x23\xef\x7a\x79\x35\x90\xb7\xaf\x29\xca\xc1\x83\x00\x20\x66\xb1\x94\x77\xcf\x2c\xd2\x49\x2c\xc7\x47\x2b\xe9\xfe\x13\xa3\xf8\xda\xf9\x71\x74\x79\x98\x84\x1b\x51\x46\x7d\x91\x4f\x3b\x95\xf3\x0f\x7c\x20\x6d\xfa\x30\x5d\x1b\x6c\xd0\x81\xbc\x0f\xcb\xeb\x41\xcd\x4f\x7a\xe9\xd1\xde\x70\x79\xf7\xde\x99\xc5\xad\x07\xeb\x8b\xed\xe3\x7e\xf6\x30\x0b\xd4\x18\x39\x68\xd1\x7f\x2e\xd3\x92\xa0\x6a\xdf\x22\x6f\xdd\xba\x85\x34\xb5\x56\x46\xeb\xf2\x6a\x77\x1a\x5d\x5f\x09\xe7\x4e\x15\xf9\xa8\x49\x4e\xe9\x70\x6a\xdb\x85\x03\xca\x09\x6b\xdc\x0b\x2f\xbc\x40\x61\x18\xe6\xcc\x55\x49\x87\x09\xe4\x53\x45\x01\x80\x48\x29\x15\x01\x14\x91\x42\x74\xf5\xa8\xff\xd1\x95\x7c\x79\x5c\xa0\xc5\xd5\xe5\x91\xac\x67\x4a\x19\xe1\xe4\xec\x9b\xbb\x14\x4e\x07\xe4\x54\xa3\xf9\x94\x44\x76\xdc\x0c\xa1\x6b\x10\x93\xff\x51\xd9\x08\xcc\x43\x94\xbf\x26\x8d\x9c\xc8\x9c\xc5\xf2\xee\xe1\xea\xf2\xfe\x3c\x07\x2e\xa9\x52\xca\xb2\x73\x29\xa6\x8c\xe4\xb5\x6b\xd7\xf0\xce\x3b\xef\x60\x3e\x9f\xf3\x8f\xe4\xa3\x68\x95\xe7\x97\x3b\x3e\x85\xe1\xd2\xbf\x92\x3d\xaf\x03\x2d\x6e\x78\x97\x4e\xae\xa3\xaf\x85\xe3\x0f\x8e\x5f\x9e\x6e\x1d\xfd\xed\x52\x85\x6e\x19\x78\x5a\x12\xf5\x62\x51\x17\x37\x17\x1b\xaa\x09\xe3\xcb\x87\xf2\xdc\xbb\xf9\x69\x2a\x43\x1d\x05\xea\xab\x13\xb7\xdc\xba\x5e\x9b\xd2\x07\x00\xdc\xbe\x7d\x9b\x6e\xdd\xba\x25\x6f\xdd\xba\xa5\xfa\xfd\x7e\x2e\xc6\x44\x2a\x8e\x63\xe8\xa9\xa4\x42\xd9\x2a\x22\xca\x8a\xa9\x25\x09\x40\x4f\x29\xe9\x69\x25\x3e\x65\xa3\x95\x52\x56\xc8\x6e\x65\x55\x90\x9e\x76\x2a\xe2\xe0\xf3\xdc\x29\xfb\x35\xab\x83\x8a\x74\xf5\x3c\x78\xa6\xa7\xb4\x76\x76\x76\xd4\x78\x3c\x56\xe3\xf1\x58\xfd\xe8\x47\x3f\xc2\xf5\xeb\xd7\xe5\x68\x34\xaa\x93\x73\xb7\xfe\xdb\xea\xd8\xf7\x9d\xb5\x5f\xdd\x0e\xb8\x8e\xf3\xd1\xd7\x95\x3a\x6f\xc8\x93\xef\xba\x2d\x2f\x4d\x72\xc7\x9f\x35\xb5\x21\xb7\xbd\xd6\xe5\xb1\x0d\x80\xd5\xe9\x89\x26\xbf\x00\xa0\x0e\x0e\x0e\x54\xaf\xd7\xa3\x27\x9f\x7c\xd2\x6a\x67\x0c\xac\x52\x71\x5f\x19\x8d\x26\xa1\x4a\x47\x2b\xe9\xc9\x71\x3f\x3b\xce\x02\x35\x0f\x25\x85\xa1\xa4\x50\x80\x82\x22\x05\xd2\xf4\x39\x11\x8a\xf3\xb3\x6a\xc1\x74\x99\xb8\xa6\x69\x00\x48\xca\xb7\xdf\x18\xf7\xb2\xc3\x07\xeb\xc9\xad\x37\x2f\x4e\x7f\xf6\xce\x85\xd9\xcd\xe3\x95\x6c\x47\x0a\x8c\x40\xc4\x3b\xe9\x29\x72\x1b\x2e\x6d\xab\x95\x20\xb7\xe7\x30\x3a\xfc\xe8\xe8\x48\xde\xb9\x73\x07\x8f\x1e\x3d\x6a\xd2\x57\x6a\x6b\x6b\x8b\x86\xc3\xa1\x0a\x43\xc3\x17\x28\x56\x31\x56\xd8\xc2\x26\x48\xb7\x4f\x64\xa4\xb2\x59\x2c\x67\x8f\x56\x96\xc7\x47\x2b\xd9\xa3\x79\xa4\x4e\x14\xa9\x0c\xf9\xa1\xec\x92\x14\x99\x9e\xa8\x2c\xb8\x33\x4a\x2f\xbb\x33\x48\x82\x4c\x03\xb5\x9c\x47\x6a\x32\xea\xa7\x87\xbb\x6b\xc9\xf6\x7b\xe7\xe6\x6f\xbc\x7d\x61\x76\xfd\xde\xc6\xe2\xf6\xa4\x27\xf7\xa5\xc0\x18\xc0\x09\xf2\xa9\xb2\x13\x5d\x1f\x4a\xa9\x39\xf2\x29\x62\x3d\xcd\xab\xa7\x87\xa4\x94\x32\xdb\xd9\xd9\xc1\xbf\xfe\xeb\xbf\xba\x06\xf3\xbc\x3e\x80\xfa\x7a\x6a\x6b\x23\x0a\xa8\x9f\x2a\x02\xaa\x9d\x1a\x7f\x56\xe7\xc7\x1b\x66\x34\x1a\x61\x73\x73\x53\x16\xc6\x49\x86\x69\x81\xbb\x57\x83\x42\xfa\x68\x90\x8e\x4e\x7a\xe9\xee\xc6\x2c\x78\x26\xc8\x4a\x0b\x73\xcb\x7a\xba\x80\x93\x25\x41\x62\x4f\xe1\xe8\xd2\x59\xd4\x20\xa7\x50\x00\x6b\x37\xc6\x32\x0d\x7e\x5d\x02\x1f\xc5\xb7\x27\xd4\xcb\xc5\xac\x47\x7a\x7b\x64\x7b\x65\x52\x28\xc5\xc6\xb9\x49\xf4\xd4\x6a\x12\x6c\x3c\x5a\x49\x77\x41\xa8\xec\xe9\xc2\x29\x79\xf8\x15\x44\x17\x96\xe3\xb4\xac\x4c\x53\x9c\xa7\x41\xc5\x6d\x8c\x81\x6f\xc4\xe9\x8b\xaf\x6b\xde\x9b\xe2\xad\xf3\xe7\x8b\xfb\x34\xcc\x55\x17\xe6\xa9\x6e\x04\xff\x41\xea\x84\xa7\xd9\x25\x9f\xd6\xfd\x8b\x2f\xbe\x28\x01\xe0\x13\x9f\xf8\x84\xf8\xf8\xc7\x3f\x2e\x01\x20\x08\x02\x68\xdb\x03\x4f\x3a\xf0\x5c\x6b\x86\x06\x80\x91\x55\x6b\x45\x9c\x33\xfd\x0b\xc0\xde\xe6\xdb\x61\x57\xac\xf7\xcb\xe5\x52\x4e\xa7\x53\x13\xe7\xdf\xff\xfd\xdf\x77\x61\xc4\x7c\x32\xd7\xa5\x8e\x4e\xc3\x94\xb8\xe1\x4f\xc3\x4e\x9c\x46\x16\xdc\xb0\x5d\xe3\xee\xda\x26\xdb\xd2\xa9\x63\x2b\xdd\xfa\xaf\x8b\xa3\x36\xce\xc5\x62\x81\xd9\x6c\x26\x57\x56\x56\x78\x1e\x53\xe6\x87\xff\x96\x8e\x20\x93\x40\xc9\x87\x6b\x49\x72\x34\x48\x8f\xf6\x57\x97\x3b\x1f\x3a\x5c\xf9\xd8\xe6\x24\xbc\xb4\x9a\x04\x1b\xbd\x54\x0c\x42\x89\x90\x58\xdf\x95\xab\x7e\x2d\xa3\xbc\xb7\x53\xe6\xbf\x12\x90\x19\x29\xb9\x14\x2a\x99\xc6\xd9\xe8\xd1\x20\xdd\x79\xb0\x9e\xdc\x7e\xff\xec\xfc\xd6\xc1\x60\xb9\x57\x2c\xf1\x9d\x02\x18\x2b\xa5\xc6\x44\x34\x56\xe5\x89\xe4\xda\x98\x9c\xaf\x9e\x31\xa9\xbc\xf4\xd2\x4b\xfa\x1c\x1e\xd7\x59\xdf\xeb\x7b\xdf\xfb\x9e\xfc\xc2\x17\xbe\x20\xae\x5d\xbb\x26\xe3\xd8\x74\x6d\x1a\xd0\x5b\x75\xc8\xda\x92\xee\x2f\x53\x05\xa4\xf3\x50\x26\x0f\xd7\x92\xe9\xe1\x60\xb9\x77\x77\x23\xdc\xbe\x74\xd2\xbb\x7c\x6e\x12\x5e\xda\x98\x85\xe7\x57\x93\x60\xbd\x97\x8a\x41\x24\x29\x16\x92\x04\x01\x82\x8a\x93\xdf\x15\x29\x29\x49\xa5\x92\x20\x33\x42\x9a\x84\xd9\x7c\xdc\xcb\x8e\x0e\x57\xd2\xdd\xbd\xe1\x72\x67\x6f\x98\xec\x8c\x56\xd2\x83\x24\x90\x63\x95\xdb\xac\x4d\x09\xa4\xa7\xca\x34\x80\x33\x6c\x0b\x95\xc7\x6f\xe8\x41\x89\x24\x22\xb9\x5c\x2e\x79\x3b\x36\xf2\xe0\xd4\x87\xcb\x70\xfa\xde\x5b\xf5\xe1\x86\x75\x81\x4b\x9b\x52\xae\x53\x24\xae\x3f\xeb\xfe\xeb\x5f\xff\x3a\xbe\xf2\x95\xaf\xe8\x83\xe3\xcc\x7b\x46\x2f\xe5\x00\x86\x90\x2e\x02\x39\x3d\x1a\xa4\xf7\x2f\x9d\xf4\xa6\x51\x86\x81\x28\xe2\x37\xcb\x8e\xf5\x35\xfb\xce\x9a\x3d\xb1\x58\x16\xee\x4a\x0f\xe5\x23\x46\xa1\x71\x02\xcd\x80\x15\xe4\x53\x3f\x86\x86\x34\xe1\x74\x40\x06\xa4\x2a\xeb\xd0\xf2\x6b\x21\x55\xbc\xb6\x08\x9e\x5a\x9f\x85\x5b\xbd\xd5\x64\x7b\x11\xa9\x29\xeb\x08\xb4\x31\x96\xa9\xef\x28\x8a\x40\xb9\xe1\xb2\xef\xa3\xba\xca\x84\xbf\x6f\x52\x4a\x6e\x87\x8b\x0e\x7e\xdd\x67\x6e\x3a\x75\x9d\xb8\x7b\x0d\x27\x8e\xa6\xf2\xb8\x4e\xbf\x6b\x53\xa2\x5d\x46\x84\x6e\xde\xba\xc6\xd1\x2a\xdb\x2d\xf1\xb4\x0d\x02\xdc\x3a\x76\x9f\x37\xe5\xa1\x4b\x9a\xe2\xfa\xf5\xeb\xf2\xfa\xf5\xeb\x02\x80\xbc\x78\xf1\xa2\xf8\xd2\x97\xbe\x64\xc5\x15\x45\x91\x13\x6d\x09\x2c\x0a\xf9\xb4\xd2\x75\x40\x49\x05\xb0\xbb\x4a\x9d\xbf\xcf\xb2\xcc\x5a\x38\x77\xef\xde\x3d\x7c\xfb\xdb\xdf\x6e\x93\x81\x2e\xae\x49\x46\xdd\xf7\x70\xde\xd5\xd5\x5d\x13\x30\xf5\xa5\xcd\xef\xdb\x80\x67\x5b\xdc\x6d\x03\x02\xd7\x75\xf1\xdf\x54\x06\xdf\xfb\x3a\xd9\xac\x4b\xd3\xea\x1b\x6e\xdc\xb8\x21\xd3\x34\x15\xbf\xf1\x1b\xbf\x81\x30\x0c\xb9\x5c\xe8\xa9\x22\x67\xa0\x57\xa6\xa1\xa0\x24\x04\xa5\x73\x92\xc9\x3b\xe7\x67\xb3\xfb\x67\x16\xbb\x17\x4e\xa2\xad\x4b\x27\xbd\xcb\x17\xc6\xf1\xe5\x33\xf3\xe0\x7c\x3f\x15\xc3\x30\xa3\x50\x28\x0a\x85\x44\x28\x90\x9b\x15\x18\x8a\x8a\x00\x05\x25\x33\x81\x34\x0d\xd4\x3c\x09\xe4\x7c\x1a\xc9\xf1\xd1\x60\xb9\x7b\x7f\x3d\xd9\xbe\x7f\x66\x71\xf7\xb8\x9f\x3e\x92\xc2\xb0\x08\x53\x82\x99\x1e\xd2\xbb\xe4\xea\xce\x9a\xaf\xba\xd3\x9d\x35\x00\xc8\x34\x4d\xb9\x4c\x37\x0d\x40\x01\xe4\xe0\xe5\xf3\x9f\xff\xbc\x78\xf6\xd9\x67\xa1\x07\xf2\x2c\x3e\xab\x1e\x8a\x77\xd2\x61\x3a\x13\x00\xe9\x32\x54\xc9\xde\x70\x39\xdf\x5f\x5d\xee\x85\x8a\x6e\xae\x2d\x82\xe1\xb9\x49\x74\x7e\x73\x12\x6d\xae\x2d\x82\xf5\xfe\x32\x18\xc6\x92\x62\x21\x11\x2a\x00\x69\xa0\x92\x24\x90\xf3\x79\x24\xa7\xb3\x50\x4e\x8f\x57\xd2\xa3\xfd\xe1\x72\xf7\xb8\x9f\x8e\x93\x40\xe9\x93\xd9\xe7\x4a\x61\x4e\x79\x1d\xe8\xf2\x9b\x7a\x28\x98\x16\x33\x65\x56\xfc\xea\xfe\x5b\x2a\xa5\x64\x61\xea\xd0\xe6\xea\xfa\xa2\x26\x90\xc3\xc3\x36\x70\x6c\x65\xa0\xba\x48\x9a\x94\x6d\xc5\x7d\xe5\x2b\x5f\x11\x1b\x1b\x1b\xba\x23\xe2\x3b\x78\x0e\x00\x0c\x95\x52\x43\x22\xda\x00\xb0\xf1\x0b\x0f\x07\xbf\xfc\x6b\xdb\x6b\x5f\x39\x3b\x8b\x9e\x0a\x14\x85\x1a\x59\xe4\x6c\x5f\x95\x2a\xa9\x70\xc2\x1c\x89\xb4\x39\x87\xa9\x71\xe3\xab\x0b\x62\xf3\x59\x9c\xdf\xb1\xfd\xcd\xc3\xec\xee\x9b\x5b\xd3\xbf\xbd\x7e\x79\xf2\xdd\x83\xd5\xe5\x5d\xd8\xf3\x84\x95\x6d\x92\xff\xf1\x1f\xff\x51\xde\xbb\x77\xaf\xcb\x08\xea\x7f\xdc\xff\xb8\x0f\xec\xbe\xfa\xd5\xaf\x8a\xe1\x70\x68\xc9\x98\x03\x5c\x00\x7f\x9b\xaf\x74\x5c\xba\x73\x62\x80\xc7\x8a\xf7\x3b\xdf\xf9\x8e\xcf\xc0\xf6\xff\xcf\xae\x8d\xc5\x78\xdc\x38\x3e\x48\xb8\x36\x16\xe5\x83\xb8\xd3\xa6\x89\xa7\x9f\x7e\x5a\xfc\xce\xef\xfc\x8e\xd6\xfb\xf9\x20\x34\x3f\x82\x22\x44\x7e\x7e\x96\x3e\x47\xab\x8f\xbc\x2f\xd0\xbf\x03\xa5\xd4\x80\xf2\xdd\x9d\x07\x00\xfa\xa4\xb0\x32\x48\xc4\xe0\xfc\x24\x3e\x7f\x6e\x12\x6d\x0e\x17\xc1\xfa\x60\x29\x86\xfd\xa5\x18\xf6\xd2\xa0\x2f\x14\xf2\xf3\xb3\xa0\x20\x09\xe9\x32\x90\xc9\x24\xce\x46\xc7\x2b\xe9\xd1\xa3\x95\xf4\xf0\xd1\x20\x3d\x1c\xf5\xd3\x51\x12\xaa\x09\xca\x5d\x5f\xad\xce\x19\xd5\x65\xbe\x7c\x9b\x7f\xdd\x51\x9b\xbf\x7f\xfc\xc7\x7f\x84\xa3\xaf\xdb\xea\x0a\x00\xf0\xd9\xcf\x7e\x56\x3c\xff\xfc\xf3\xbc\x5e\x04\xec\x8d\x20\xfb\xec\x4f\xd7\xd1\xc0\x7d\xa6\x94\xea\x53\xb9\x23\x76\x08\xa0\x17\x64\x08\x43\x29\xc2\x40\x51\x28\x8a\xce\x2c\x23\x25\xd3\x40\xa5\xa9\x50\xa9\x22\x2c\x8b\xbc\x55\x8e\x1d\xf0\xfc\xf1\xbe\xaa\xb2\x77\x0b\xaf\x8b\xa3\xa3\x23\xfc\xcd\xdf\xfc\xcd\xff\x96\xf6\xdd\xe5\x74\xe8\xa6\xd1\x81\x0f\x95\x6b\xe7\xfd\x70\x0c\x65\xeb\x02\x9b\xcd\xa7\x0a\x64\x29\xf7\x86\xc9\xc3\x49\x2c\xf7\xd7\x17\xea\x92\xc8\x28\x24\xcb\x8a\x81\x4f\x05\x15\x8f\x4c\xdc\xce\x03\xaf\x2b\x38\x15\xcb\xd2\xc1\x99\x0b\x54\x2e\xa3\xe3\x61\x71\x74\x28\x05\xdf\xa8\xc1\xe4\x25\x92\x62\xe3\xfc\x34\xba\x36\x5c\x04\xe7\x0f\x56\x97\xbb\x28\x37\xa2\xb3\x8c\x74\xf5\xea\x0c\x4f\x86\xff\xbb\x05\xa1\xa9\x81\xfd\x0f\x68\xfa\x3f\xe3\xfe\xb7\xd5\xfb\xd7\xbe\xf6\x35\xaf\xdc\x3d\xf3\xcc\x33\xf8\xc2\x17\xbe\xa0\x01\x89\xcf\x28\x57\x02\x95\x51\xb3\x38\x3c\x3c\x94\xdf\xf8\xc6\x37\xbc\xa3\xff\x2c\xcb\x7e\x1e\x59\x3e\xcd\x54\xc8\x69\xe3\x3b\x6d\x47\xff\xf3\xf8\x46\x8f\x1b\xc7\x69\x99\x95\xff\x4e\x79\xea\x92\x8e\xa9\x57\xc6\x30\xcc\xe1\x00\x01\xd8\xe6\x03\x09\xf2\x4e\x3a\x01\x10\x2b\xa0\x3f\x89\xe5\xc9\x34\x9e\x3f\x7a\x7f\x63\xde\x23\x20\x0c\x24\x85\x51\x26\xe2\x38\xcd\x6d\x61\x32\xa1\x64\x26\x94\x94\x02\x69\x46\x2a\x5d\x06\x2a\xcd\x48\x25\x8a\xb0\x54\x65\x87\xcb\x3b\xe2\xb9\xb3\x72\xc8\xed\xa8\xf5\x8a\x9f\xca\x76\xf6\xdf\xf8\xc6\x37\xd0\x61\x73\xb5\xd3\xd4\x1d\x9f\x32\xd2\x75\x93\x16\x40\x4f\xd7\xcb\x1c\x25\x78\x99\x17\xc0\x8e\x1f\x9c\x1a\x66\x02\x61\x26\xcc\x71\x03\x2e\xc1\xc0\xeb\xd8\x77\x46\x98\x0b\x5c\xf4\x16\x06\x96\x71\x32\x6c\xd0\x82\x07\x0f\x1e\xe0\x9f\xfe\xe9\x9f\x7c\xe5\xfb\x6f\xd1\x65\x6d\xc0\xa5\x6d\x34\xd1\x44\x4f\x36\x09\xb0\xbb\x1c\x32\x65\x74\x58\x32\xee\x65\xe3\x51\x3f\xdd\x39\x3f\x89\x3e\x12\x65\x6a\xa0\x19\x96\x72\x3a\xa7\x02\x35\x8c\x7d\xac\xeb\xaa\xe4\x4b\x69\x79\xed\xe2\x1c\x0d\x50\xec\x79\xd2\x2a\x97\x42\x75\x37\x8c\x8a\xd1\x79\x11\x12\xfd\xe1\x3c\x78\x6a\x73\x1a\x5e\xde\x1d\x8a\xdb\xb3\x58\xce\x91\x0b\x82\x6f\x75\x87\x76\xbe\x69\xa1\x3a\xda\xb6\x89\x15\xf3\xbd\x77\x5d\x13\x00\xed\x32\xba\xf2\xe5\xa7\x49\xf9\xfb\xf2\xeb\xe6\xc3\xe7\x7c\x53\x4f\x4d\x65\x76\xdf\x9d\x66\xea\xca\x97\x9f\xb6\x7c\xf3\x77\xbe\x7c\xf8\xc2\x9c\xe6\x9b\x9c\xb6\x7e\x9a\x64\xc0\xc4\x5d\x80\x89\x4a\xbe\x6f\xdd\xba\x85\x07\x0f\x1e\xf8\xde\xd5\x39\x09\x00\x52\x4a\x6d\x94\xd7\xa6\xb0\x4e\xa3\xd0\x4e\x3b\x15\xf2\xb8\x4c\x48\x97\xfc\xb4\xc5\xdd\x65\x10\x70\x1a\xe6\xa2\x4b\xbe\x7d\xb2\xd2\xc5\x7f\x17\x77\x9a\x7c\x68\xff\x26\x0f\xf7\xee\xdd\xc3\xb7\xbe\xf5\x2d\xf9\xdb\xbf\xfd\xdb\x02\xb0\xec\x9f\x2a\x87\xf1\xe9\xfe\x40\xdb\x4e\x28\xa5\xf4\x66\x88\x73\x00\x7d\x05\x35\x27\xa2\x58\x01\xb1\x22\x84\x50\x08\xb3\x40\x89\x65\x90\x89\x69\x04\x41\x9a\xd1\x21\x93\xbe\x54\x40\x0a\xa8\x14\x79\xdc\xbc\xa3\x36\x2b\x85\x0a\x1b\x0e\x0e\x64\x74\x9a\x6e\x27\x6d\xca\xf5\xf5\xaf\x7f\x5d\x1e\x1c\x1c\x34\x1d\xe8\xd9\xf8\x8d\x5f\x7a\xe9\x25\x28\xa5\xe4\x2f\xff\xf2\x2f\xbb\xfe\xdc\x69\x23\x77\x39\x79\xcc\xf2\xaa\x99\x17\x03\x5a\x60\xce\x1a\xb3\xfe\xdc\x3e\xdb\x3a\x2b\xac\xa8\x6f\xf7\x48\x03\xeb\x9e\x9c\x23\x3a\x74\xfd\x02\xf9\x31\x07\xdf\xff\xfe\xf7\xeb\x8e\xdc\xf8\x79\x0c\x8a\x2b\x7e\xbb\x6c\x40\x27\x60\x5b\x02\x0b\xf6\x5b\x67\xf9\x5b\x89\x63\x67\x67\x07\x5b\x5b\x5b\x6a\x75\x75\x95\x8a\xb0\x7a\x75\x91\xd9\x88\x8e\x88\x02\x22\xea\x49\x42\x7c\x76\x1a\x6d\x9e\x9b\x44\xd7\x7a\xa9\x18\x72\xfe\x83\xef\x74\xa8\x41\x83\x8d\x1d\xec\x43\x16\x7d\xe4\x8b\x01\x3a\xf6\x0c\x51\x1e\x4a\x95\x20\xc9\xd8\xd4\xb0\xd9\x29\x77\xb3\x1e\x9d\x86\xbb\xf9\x51\x99\x0e\x09\x80\x54\x12\xa8\xbd\xd1\x4a\x7a\x7f\xdc\xcf\x46\xcc\xd0\x4b\x5b\xa6\xcb\xc2\xbb\xba\x70\xe1\x82\x1a\x8d\x46\x28\x56\x53\xb8\x16\xd8\x7c\xd5\x03\x9c\x67\xc2\x73\x0d\x8f\x7f\x9f\xe3\xab\x07\x7c\x69\xb8\xf1\xb9\x69\xd7\xad\x64\xa8\xb3\x0a\xf7\xc5\xc1\xf3\xd1\x16\xae\x29\xcd\xba\x3c\xf8\xc2\x77\xf1\xe7\x4b\x9f\xd7\x95\x2f\x3f\x4d\xf9\xf2\xc5\xed\x73\x6d\xf9\xf1\xf9\xaf\xf3\xd7\xa5\xac\x96\x7f\x29\xa5\x4a\x92\xe4\xd4\x7f\xcb\xe5\xd2\xcd\x83\xa8\xb9\xe6\xcf\x74\x83\x6d\xfa\xf6\x3e\xd7\x16\x77\x97\x38\xba\xc8\x79\x9b\xff\x2e\x7a\xd0\x1e\x0b\xb5\xe7\xd1\x97\x8f\xb6\xfa\x69\x6a\xb7\x3e\xff\x75\xef\xeb\xe2\xee\xea\xdf\xc4\x2f\xa5\x94\x93\xc9\x84\xf6\xf7\xf7\xd5\x87\x3f\xfc\x61\xbd\x52\xc6\x8d\x5b\xaf\x70\x53\x28\xf5\x61\x46\x44\x7a\x67\xe7\x0c\xf9\x4a\x1e\xbd\x8a\x25\xdf\x89\x9c\x30\x57\x50\x09\x88\x16\x20\x2c\x54\xfe\x37\x07\x61\x8a\xfc\x77\x96\x5f\xd3\x14\xc5\x26\x72\x05\xbb\xa2\x37\x94\xe3\x3b\xc0\x9a\x5d\x9e\x29\xdf\x38\x51\x4f\x0f\xe9\xd5\x6f\xfa\x4f\x7d\xf3\x9b\xdf\x94\xfb\xfb\xfb\x28\x8c\x5b\xf8\xb7\xac\x93\x9f\xca\xf3\x2c\xcb\xe8\xd1\xa3\x47\xc8\xb2\x4c\x3d\xf1\xc4\x13\x26\x8e\x02\xc0\x29\xd8\xba\x58\xa2\x5c\x85\xe7\xae\xda\xe3\x3b\x4f\x73\xc0\xa1\x37\x7e\xd4\xe5\xd2\x3b\xff\xea\xb2\xea\x72\x9b\x0d\xe5\x0a\x20\xa7\x77\xbf\x9e\x17\xc0\x91\xaf\x1e\x5a\xb2\x7c\x48\x00\xb8\x75\xeb\x96\xfc\xf1\x8f\x7f\x8c\xf1\x78\xec\x0e\x1c\xda\x64\xec\x71\xdb\xbf\x00\xa0\xba\x00\x17\x37\x03\x4d\x4a\xaf\x36\xe1\xd9\x6c\xa6\x3e\xfc\xe1\x0f\xd3\x70\x38\xcc\x09\x8f\x12\xb4\x68\xd6\xc1\xec\xa2\x0b\x42\xdc\x5f\x8a\xd5\xad\x71\x7c\x6d\xb0\x0c\xce\xe6\x4b\xe1\x14\xf4\x92\xe3\x92\x31\xa9\x4e\xe1\x94\x3b\xe9\xba\xcb\xa8\xb5\xd1\x2d\xb3\x4f\xa1\xf2\xbd\x0e\x6d\x31\x3b\xaa\x64\x72\x0c\x26\xb1\x41\x89\x7d\x06\x86\x1d\x59\x09\x7e\x14\x48\x0a\x35\x3e\x1a\xa4\xf7\x0e\x56\x97\xbb\xca\xde\xb0\x47\xef\xa4\x2b\x89\x48\xf5\xfb\x7d\xba\x7b\xf7\xae\x3a\x3c\x3c\xe4\x1f\xd2\x27\x08\xee\xb3\x3a\xc6\xa3\xae\x61\xb9\x00\x54\x7a\x9e\x2b\x27\x3e\x37\xce\xb6\xf8\x7d\x0a\xba\x49\xf9\xe9\xd1\x9a\xaf\xd1\xd7\xa5\xdb\x35\x0f\x4d\x61\xdc\x3c\xf8\x1a\x12\x7f\x5e\x57\x87\x5d\xbf\x55\x5d\x7e\xda\xd2\x6d\x2b\x83\x2f\xbd\xae\x71\xf8\xca\x50\x97\xff\xba\xfa\xf6\x39\xee\xd7\xe7\x8f\xcb\x5e\x9b\xac\x36\xc5\xed\x0b\x7b\x1a\x19\x3c\x0d\xa3\xe0\x96\xa7\xeb\x77\xd0\xae\xae\x53\x6b\xcb\x77\x97\x7a\xef\x02\xbe\x7c\xf1\xd5\xc5\x51\x07\x36\xbb\x94\x41\xb3\x70\x6a\x3c\x1e\xd3\xe1\xe1\xa1\xfa\xd0\x87\x3e\x54\x01\x2f\x7a\xa9\x7e\xe1\x5f\x2f\xcd\x37\x07\xf0\x16\x40\x66\x59\x00\x09\xdd\x49\xeb\x9d\x9a\xf5\xb5\xee\xa0\x67\x70\x3a\x69\x77\x65\x4c\x01\x58\x66\xec\x6f\x8a\xf2\x98\x0a\x0d\x04\x96\x7a\xe1\x88\xb2\x8f\x9d\x90\xdf\xff\xfe\xf7\xf9\x29\xe4\x6d\xf2\xed\xfa\x31\x60\x77\xb9\x5c\xca\xd1\x68\x44\xcb\xe5\x52\x5d\xba\x74\x89\x88\x48\xef\x30\xaf\xeb\x41\x6f\x1d\xa0\x60\xef\xd2\xab\x41\xcb\xb2\xa8\x2b\xbd\xdb\xb5\x06\x19\x1c\xb4\x98\xe3\x37\x0a\x56\x85\x97\x59\xd7\xcf\x8c\x88\xf4\x0a\xaa\x59\x11\x4f\x52\xfc\xf9\x00\x8b\x04\x80\x77\xde\x79\x47\xbe\xf4\xd2\x4b\x38\x3a\x3a\xd2\x8c\x9c\xdd\xe5\xd6\x97\x9d\x3b\xee\xbf\x4e\xa6\x2a\x75\xd9\xc5\xc6\x45\x47\xd2\x85\xc2\xac\xf3\x63\xf9\x65\xd3\x22\xbc\x22\xac\x03\xd7\x8e\x06\xe9\xde\xa4\x97\xed\x67\x53\xf5\x54\x90\x51\xac\xc3\x70\x98\x62\x41\x13\x0f\x68\xb0\xfd\xf3\x33\x1d\x9c\x5d\x14\x61\x87\xd3\x51\x95\x5b\x29\xb3\xfd\x60\x54\x09\x7a\x00\x58\x3b\x12\xe6\x64\x8d\x9d\x11\x05\x40\x28\x0c\x56\x93\xe0\xca\xb9\x49\xf4\xf4\xda\x3c\xbc\x39\x5a\x49\xf5\x81\x5a\x2e\xa5\xc7\xed\x0d\x78\x9d\xb5\x51\x70\x5d\xae\x85\x73\xed\x9b\x0a\x91\xa8\xa6\x59\xf7\x8d\xbb\xbe\xab\x03\x55\x3e\xd7\xf5\x5d\x53\x7c\xa7\xad\x97\xd3\xa6\xe3\xfb\x2e\x75\x34\xbd\xaf\x0e\x9b\x9e\xb5\xe5\xb5\xad\x0c\x6e\xdc\x6e\x5e\xf9\x77\xef\x12\xf7\x69\xf3\xea\x73\x75\x74\xb9\xfb\xae\x49\x36\xba\x3c\x6f\x6b\x23\x75\xed\xc9\x95\x7b\x9f\xf3\xe5\xad\x8b\x1e\xac\x7b\x7f\x9a\xb6\x5d\xe7\xf7\x34\x65\x73\xd3\xd6\xfe\xea\xf2\xd5\x54\x56\xa0\x5a\xae\x36\x19\x10\x69\x9a\xca\x5b\xb7\x6e\x89\x5e\xaf\x27\x3f\xfb\xd9\xcf\x82\xed\x65\xe2\x4e\x1d\xc9\x62\x00\xab\xed\x5c\xf4\xe9\xc9\xda\xa0\xd7\x18\xb0\xaa\x7c\xe3\xb5\xd0\x31\x24\xe7\x71\xca\x22\x3e\xab\x6f\x41\xc1\xa6\xa0\x5c\x21\xe4\xda\x6e\x58\x1b\xaa\x11\x91\x9c\x4c\x26\x78\xe9\xa5\x97\xda\xbe\x95\x5b\x5f\x3e\x3f\x56\x9d\x8d\xc7\x63\xbc\xf9\xe6\x9b\x98\x4e\xa7\x32\x8e\x63\x7c\xfa\xd3\x9f\xf6\xd5\x0b\xaf\x6f\x59\x94\x55\x1f\x94\x9a\x14\xef\xf8\x69\xee\xee\x9f\x04\x60\x4d\xc7\xb1\x78\xf9\xe1\xa6\x96\xbd\x69\x31\x5d\xc7\xeb\xcf\xe4\xfb\xed\xb7\xdf\x96\xaf\xbd\xf6\x1a\x0e\x0f\x0f\xbb\x96\xd7\xbd\x3e\x8d\xfc\x54\x9c\x8f\x71\xa9\x43\x45\x3c\xb1\xb6\x0e\xc8\x45\x5b\x04\x40\x7d\xf4\xa3\x1f\xa5\xf5\xf5\x75\x05\x40\x6f\xb0\x43\x00\xdc\x73\x8b\x7a\x00\x62\x49\x2a\xb8\x30\x89\x9e\xd8\x98\x87\x97\xe3\x8c\x86\xa4\xc8\x02\x0c\x65\x42\x6c\xb7\x40\xa0\x02\x60\xac\x33\x88\xc8\x09\xc3\xfc\x2a\x7e\xca\xa8\x52\x66\x79\xb5\x29\x46\x89\x5b\xf2\x18\x88\x2c\x46\xc6\x80\x17\x3e\x4f\x54\x04\x15\x45\x6c\xa9\x50\x87\x27\xfd\xf4\xde\xd1\x20\x3d\x52\xe5\xb9\x45\x9a\x79\xe1\x23\x0e\x35\x1e\x8f\x31\x99\x4c\x7c\x08\xb4\x89\xad\x68\x1a\x61\xf1\xb0\xbe\x11\x42\xdb\xc8\xeb\x34\xae\x6e\xd4\xf7\x38\x71\xb5\x95\xa9\x29\xed\xa6\x67\x8f\x9b\x87\xba\x78\x9a\x46\xd8\xff\xdd\xae\x6d\x64\xdf\xf4\xdd\x1f\x37\xee\xae\x7e\xeb\xf4\x49\x5b\x9e\xba\x8c\xbe\xea\x9c\x6f\x94\xd7\xf4\xdd\x7c\xe9\xb4\xc9\xb0\xc5\x2a\x34\xb8\x36\xa6\x88\xa7\xcd\xfd\x9b\x91\x79\x4d\x1c\x75\xf1\x71\xc6\x83\xe7\x93\x8f\x6a\xbb\x4c\x55\xe9\xb8\x24\xec\x32\xfb\x46\xc7\xbe\x38\xf8\x7b\x13\x66\x6f\x6f\x4f\x29\xa5\xe8\xdc\xb9\x73\x7c\x23\x36\xbd\x29\xa2\xee\x54\x15\xca\xe9\x23\xbe\x89\xa1\xde\xb1\x56\x6f\x02\x67\x1d\x06\x8a\x92\x69\xd0\x7f\xdc\xd8\x56\xb3\x0e\x0b\x14\x87\x83\x52\x79\x96\x56\xca\x7e\xf5\xf4\x7d\x5a\xe4\x43\x8e\x46\x23\xf9\xca\x2b\xaf\xa8\x1b\x37\x6e\x60\x6f\x6f\x8f\xd7\x07\xaf\x27\x57\x46\xda\x64\xd6\xc8\x65\x92\x24\xb4\xb7\xb7\x27\x0f\x0e\x0e\x48\x29\x65\x4d\x1d\xb1\xfa\xd0\xfd\x83\xd9\xec\x0d\x36\x18\x5b\xd6\xfc\x2d\x50\x18\xd7\xa2\x38\x57\x0c\x1e\x3b\x16\xc6\xd6\x68\xf0\xa2\xd9\x1c\x9e\x96\x02\x72\xa6\xe5\xb5\xd7\x5e\xc3\xfe\xfe\x3e\xcf\x5f\x5d\x5d\x34\xb5\xa9\xa6\x3a\x6a\x64\xaf\x7c\xc0\xa5\xa9\xb2\xdb\x84\xd6\xf7\x01\xcd\x6f\xbf\xdf\xa7\xf5\xf5\x75\xf4\x7a\xbd\x02\xb3\xe4\x07\x6d\x15\xb6\x2d\x02\xe5\x32\xe9\x50\x02\xf1\x5a\x12\xae\x9d\x9b\x46\x4f\xad\x2c\x83\x33\x02\x24\x48\xa3\x03\x30\x56\x84\x5d\xe7\xdb\x3f\x97\x4c\x4a\x0e\x74\x94\xb1\x5b\xd1\x3e\xf3\x93\x40\x35\xd0\x50\xc5\x86\x8a\x25\x38\x21\xb2\xcf\x42\x22\x82\x39\x3d\xd4\x30\x3f\x54\x18\xf1\x12\x63\x63\x4c\x9e\x98\xb1\x2d\x99\x13\x4e\x85\x22\x35\x9b\xf4\xe4\x83\x83\xd5\xe5\x03\x19\x98\xd3\x79\xf5\xe9\xa2\x59\x31\x72\x90\x67\xcf\x9e\xa5\xa3\xa3\x23\xb5\xbb\xbb\x6b\x66\x9b\x58\x3d\xfa\xe8\x64\x57\x49\xb9\x42\x51\x17\x86\x3f\xf3\x3d\x97\x2d\xfe\xa8\xe6\x8f\x7f\x02\xed\x7c\x69\xc3\x73\xed\xf3\xe3\xbe\x83\xf3\xbc\x4e\x69\xe8\x30\x12\xd5\xb8\x79\x59\xdc\x3a\x72\xf3\xd3\x36\x0d\xc1\x3b\x99\xb6\x72\xd7\xd5\x81\xaf\x6e\xbb\x86\xa9\x2b\x5f\xd3\x77\x6b\x2b\x23\x8f\xbb\xad\xdc\x3e\x70\xd0\xf4\xcc\x75\x4d\x32\x0b\xf8\xbf\xbb\x2f\x3e\x9d\x37\xb0\xe7\x75\x65\xee\x0a\x50\x9a\x5c\x9b\x3c\xd6\xb5\x41\x77\xe4\xa9\x65\x87\x3f\xf7\xe5\xa9\x4e\x16\xc8\xe3\x5f\xd5\x5c\xbb\x71\xfa\x1c\xff\x76\x6e\x9a\xae\x3c\xb8\xd7\x3e\x67\xc9\xd5\xce\xce\x8e\x8c\xa2\x88\x8e\x8e\x8e\x54\xaf\xd7\x43\xaf\xd7\xcb\x35\xb0\xbd\xf4\x5e\xa1\xd4\x8b\xba\x83\x36\xd3\x22\x28\x3b\x6b\x7d\xf8\x67\x1d\x70\x31\xf7\xcc\xd8\x77\x01\xdb\x2e\x84\x1f\x98\xa8\xff\x00\x40\x1e\x1f\x1f\xcb\xd7\x5f\x7f\x1d\xaf\xbf\xfe\xba\x0f\xb0\xf8\xca\xe7\xfb\x26\xbe\xfa\xa9\xd4\xa9\x94\x52\x3d\x78\xf0\x80\x06\x83\x81\xda\xdc\xdc\x54\xc5\xb9\x63\x0a\x80\x75\x70\x2a\x18\x88\x61\xe0\x42\xff\xf1\x03\x4b\xb9\x71\xed\x92\x95\x5b\xff\x9a\x3f\x6e\x7c\xab\xfb\x25\x36\x98\x96\x40\x0e\x58\x1e\x3e\x7c\xa8\x5e\x7b\xed\x35\x1c\x1c\x1c\xf0\xfa\x68\x02\x24\x4d\xba\xd9\xa7\x5b\x3a\xb5\xd1\x2e\x8c\x8b\x2f\x53\xbe\x8e\xce\xcd\x64\x25\xce\x87\x0f\x1f\xd2\xc5\x8b\x17\xb1\xb9\xb9\x49\x9a\x71\x51\xe5\x71\xe7\xfa\x2f\x06\x10\x01\x88\x42\x29\xe2\x73\x93\xe8\xea\xda\x22\x38\x27\x14\xc5\xa0\xd2\xa2\x85\xcc\xb1\xa1\xb6\x95\x0b\x71\x3f\xfc\x7f\x09\x20\x72\x80\x52\xa8\x0a\xb3\xad\x1d\xd9\x1a\xcf\x3d\x75\x1a\xd6\x56\xff\x79\x24\x39\x9b\x53\xf8\x53\x36\xa3\x83\x02\xbc\x94\x53\x52\x14\x12\x20\x17\xa1\x3c\x38\x5e\x49\xdf\x9f\xf4\xe4\x98\x1b\xe8\x22\x6f\x94\x32\x07\x44\xa4\x26\xcb\x3b\xa4\xb4\x00\x00\x20\x00\x49\x44\x41\x54\x93\x89\x3a\x3e\x3e\xd6\x47\x00\xb8\x4a\x08\x9e\x67\xbe\xf7\xa8\x09\xc3\x85\x46\xa1\x39\xbc\x1b\xd6\x77\x5f\xf7\xc7\x9d\x1b\xd6\xd7\xb1\xf9\xf2\xc1\xdf\xf9\x3a\x0a\x9f\x62\x77\xcb\x56\x77\x5d\x57\x47\x6e\x7e\x7c\x8d\xcf\x1d\x89\xba\x69\xa0\xc6\x5f\x97\x74\xda\xbe\xed\x69\xc3\xb4\x75\x62\x5d\x9f\xd5\xe5\xc7\xd7\xee\x4f\xa3\xcc\x79\x9d\xfa\x98\x86\x26\x7d\xe4\xa6\xe9\x93\x93\xba\xb2\x34\xc5\xdd\xa5\x63\xae\x2b\x8b\x2f\x6e\x77\xd0\xe7\x96\xd3\x8d\xdf\xa7\xcc\xeb\x64\xa1\x2b\xb0\x6b\x8a\x9b\x3b\xb7\xee\x7d\xdf\xaf\x4b\x1d\xba\xce\xc4\x75\xff\xfe\x7d\xb5\xbd\xbd\xad\x82\x20\xc0\x99\x33\x67\x54\x1c\xc7\x7c\x9a\x3c\xd3\x7b\x02\xb1\xce\xd3\x3d\x39\x9c\xaf\x88\xe1\xd7\x86\x65\x40\xd9\x41\xeb\xce\x5b\x33\x33\x1c\xfc\xf0\x81\xa3\xb1\x23\x79\xf4\xe8\x91\x7a\xf8\xf0\xa1\x7c\xef\xbd\xf7\x70\xfd\xfa\xf5\xae\x53\x19\xa7\xa9\x9f\xba\xef\x4e\xdb\xdb\xdb\x72\x63\x63\x83\x4e\x4e\x4e\x54\xbf\xdf\x57\x61\x18\xc2\xb5\x7f\x29\xfe\x34\xa8\xab\x4c\xff\xa0\x04\x63\x1c\x90\x68\xe0\x97\x39\x8c\xbf\x7b\x50\xa2\xb1\xa5\x91\x52\xaa\x3b\x77\xee\xc8\xa3\xa3\x23\xf5\x83\x1f\xfc\x00\xb7\x6e\xdd\x92\xb3\xd9\xcc\x95\x61\x9f\xce\x73\xcb\xeb\xd6\x85\x0f\x0c\xd7\xc9\x74\xa5\xfe\xba\x30\x2e\x75\x8d\xc7\x27\xcc\xdc\xf1\xc6\x61\xc2\x3d\xf3\xcc\x33\x74\xf6\xec\xd9\x82\xd8\xc8\x11\x40\x01\x60\xf4\x72\xae\x00\xf9\x7c\x66\x2c\x09\xc1\xe6\x2c\xba\x70\x66\x1e\x5e\x8a\x33\x1a\xf2\x6d\xf8\xf3\xb3\x85\xf4\x8a\x1e\x55\x9e\x1b\x84\x52\x2a\xf2\x6b\xcd\x7e\x70\x78\x03\x7b\xe7\x5c\xd2\x85\x60\xe0\xa6\x88\x24\x0f\x59\x05\x43\x0a\x25\x50\x81\x7b\xad\x4a\x40\xc3\x1d\x01\x24\x05\xc6\xe3\x5e\xf6\xfe\xfe\xea\x72\x5f\x41\x19\xe1\xca\xab\x40\xe9\x9d\x12\xd5\x85\x0b\x17\x68\xb9\x5c\xaa\x7b\xf7\xee\xb5\x29\xcf\x26\x96\xc2\xf5\xe7\x0a\xc2\x69\x46\x4d\xbe\x78\xba\xf8\xab\x1b\xed\xf2\xfb\x2e\x4c\x0a\x3c\xf7\xdc\xaf\xae\x70\xe9\x3c\xeb\x52\x1f\x5d\xea\xb6\x29\x1f\x2e\xfb\xc4\xdb\xc6\x69\x98\x9d\x2e\xdf\xa5\xae\x5e\x4f\x13\x77\x97\x8e\xae\x2d\x0f\x75\x2c\x9d\x0f\x34\xb8\xca\xda\x55\x6e\x60\x61\x9a\x64\x14\xa8\xff\x9e\xdc\x75\x91\xa7\x3a\x60\xe0\x4b\xa7\xed\x3b\x75\xe9\xb8\xdd\x70\x3e\x65\xed\xf3\xdf\x54\x5e\x5e\xaf\xbe\x32\xd7\x7d\xf7\xb6\xb8\xeb\x64\xc0\x65\x60\x7d\xfe\xda\xf4\x90\xe5\x1e\x3e\x7c\xa8\x82\x20\xa0\x38\x8e\x95\x94\x52\xf5\x7a\x3d\x00\xd0\x9d\xb4\x06\x30\xba\xb3\xe6\x1d\xb4\xd6\x9b\x19\xbb\xe6\x80\x44\x1b\xaf\xf2\xe7\xe6\xbc\xad\x22\x4e\xc3\x54\xb0\xce\x1a\xa3\xd1\x48\xbe\xf4\xd2\x4b\xea\xc5\x17\x5f\xc4\xee\xee\x2e\x2f\xb3\x76\xbe\xf2\xf9\x64\xda\xe7\xda\xfa\x4d\x05\x00\xb7\x6f\xdf\x56\xef\xbe\xfb\xae\x5a\x5b\x5b\x23\x6d\xbc\x5c\xec\x72\xad\xc3\x58\xd3\x6a\xc8\xa7\xdb\x32\x56\x2e\x05\x06\xc8\xd8\xaf\x66\x53\xac\x73\xc4\x58\xfd\xea\xb0\x2a\x4d\x53\xb9\xb3\xb3\xa3\xfe\xe5\x5f\xfe\x45\xbe\xfb\xee\xbb\xe4\x39\x7b\xa8\xad\x2d\xe8\xfc\xfa\xf4\x43\x2d\x28\x41\x89\x19\x7c\xfa\x45\x02\xdd\x97\x43\xbb\x54\xb4\x9b\x31\xb0\xf7\xbe\x8c\x99\x0c\x5c\xbe\x7c\x19\x1b\x1b\x1b\x7a\x7e\x53\x50\xbe\xc5\x3d\x15\x53\x45\x01\xe5\xcb\xa2\x63\x00\xa1\x22\x84\xc3\x45\x78\x66\x73\x1a\x5d\x1e\x2c\x83\xcd\x1c\x83\x94\x5b\x88\x1b\x30\x61\xed\x7a\xab\xd8\x91\xe7\x04\xd4\x82\x88\x62\x95\x91\xca\x41\x07\xdb\x2d\x34\xff\x65\xc0\x06\x60\xe0\xc8\x89\x43\xff\xd7\xc5\xa4\xf2\x25\x74\xe4\xc6\xce\x46\x21\x50\xc0\x72\x16\xcb\x9d\xdd\xe1\x72\x3b\x0b\xb1\x28\x84\x88\x53\xa2\xaa\xc8\x87\x7a\xf8\xf0\x21\x07\x2e\x75\x8a\xd8\x65\x18\x5c\x57\x27\x50\x26\x97\x1d\xc2\x72\xd7\x49\x21\xc1\xff\xfd\xf9\x73\x9e\xaf\xda\x06\x5c\x93\x07\x9f\x5f\x37\x9e\x36\xa5\xcf\x1b\x44\x93\x02\xef\x52\x5e\x85\x6a\x1e\x38\xdb\xe2\xeb\x04\x9b\xf2\xda\x56\x5f\x75\x79\xf3\x85\x71\x29\x6e\x77\x4a\xc2\x17\xde\x17\x87\xeb\xcf\x27\x77\x6d\xdf\xb2\x0d\x94\xc0\xf3\xbc\x4b\xfd\x77\x01\x37\x6d\x75\xd5\x25\xee\xba\x6f\xd9\x94\x8e\x8e\xc3\x37\x0d\xd4\xe4\x4e\xe3\xc7\x57\xef\xbe\x34\xbb\xb6\xf5\x3a\x36\xd4\xf7\xeb\x5e\xff\xbf\xed\xbd\x69\xaf\x26\xc9\x51\x30\x1a\x91\x55\xcf\x7a\xd6\x5e\x4e\x4f\xf7\xe9\x6d\x3c\xd3\x77\xd6\x9e\x19\x7b\x3c\x30\xf6\xd8\xf2\x80\x2d\x19\x18\xe0\x7d\xaf\x10\x12\xdf\x90\x10\x88\x3f\x05\x1f\xfc\xf5\x5a\x7c\x43\x08\x09\x24\x90\x41\x66\xd3\x35\x18\xdb\xaf\x19\x8f\xa6\xc7\x3d\xed\xde\xb7\xb3\x9f\xf3\xac\x15\xef\x87\xaa\xac\x8a\x8a\x27\x22\x2b\xeb\xe9\x86\xf7\x0a\xdd\x6c\x9d\x7e\xaa\xb2\x22\x23\x23\x33\x23\x23\x23\x22\x37\x8d\x5f\x82\xc6\xc9\x83\x07\x0f\xe8\xe3\x8f\x3f\xa6\xd1\x68\x84\x67\xcf\x9e\xa5\xf9\x7c\x4e\x9d\x4e\xc7\x5f\x0c\x5a\xf3\x30\x40\x35\xb8\x96\xbf\xcc\xeb\x52\x9b\xee\x80\x4a\x29\xa9\x2d\x32\xe5\x6b\x0b\x0b\x18\x22\x22\x38\x39\x39\xc9\x46\xa3\x11\xfd\xf3\x3f\xff\xb3\xbf\x7b\xc8\xaa\x2f\x2e\x3b\x64\x1d\xc4\x2a\x6d\x51\x72\xf4\xd6\xad\x5b\xf4\xf1\xc7\x1f\x53\xa7\xd3\xc1\xb5\xb5\x35\x9a\x4c\x26\x94\x65\x59\xc6\x94\x18\xbe\xc0\xb5\x5c\x2b\x49\xd5\xa5\xa9\x35\xe5\x8c\x4d\xbb\xd5\x14\x1f\xbf\x83\x69\x32\x99\x64\xc7\xc7\xc7\x34\x99\x4c\x68\x67\x67\x07\xfe\xe2\x2f\xfe\xc2\x1a\x5b\x78\x3b\x4b\xa5\xd6\x2a\xab\xe4\xa9\x90\x37\xc6\xf2\x68\x03\x40\xf8\x00\x3a\x4f\x0c\xaf\x18\x67\xc0\x80\x02\xa3\x31\x70\xf6\xfd\xef\x7f\x1f\x88\xc8\x5d\xbf\x7e\xdd\xc3\xd7\x56\x6f\x03\x3b\xd1\x6f\xee\x68\xb2\x33\x98\x3e\x38\xe8\xcd\x1f\x9f\x3a\x4e\xaf\xa4\xe8\x86\x5e\x21\x29\x15\x8c\x42\x01\xe1\xc3\x23\xe5\x9a\x48\xa9\x4a\x2c\x28\x1d\x39\x92\x45\xa5\x05\xbc\xb2\x53\x7e\x28\x5d\x29\xc8\xbd\x39\x54\x79\x71\x2a\x85\x07\xaa\x35\x33\x9e\x2e\xac\x3c\x33\x39\xa7\x63\xda\x9f\xb9\x73\x67\x0f\xbb\xaf\x5c\x38\xe8\xfe\xfb\xcf\x4f\x8f\x0e\x01\x61\x02\x8b\x2b\xc2\xbd\x9b\x94\xdf\x5d\x14\x6a\x97\xa6\x36\xb4\x42\xd3\x8a\xf8\x98\x85\xd8\x31\x79\x69\xf1\xb1\xb8\x65\xe7\x88\x0d\x16\x3c\xef\x64\x9a\x80\x6d\xaa\x93\x98\x78\x08\xc4\xb7\x29\x73\x0c\xbe\x36\x78\xda\xd6\x61\x28\xdf\x58\x3c\x9a\x80\xb3\x9e\x25\x6f\x6b\x38\xb4\x78\x0b\x4f\x13\x4d\x21\xbc\xc0\x70\x73\x78\x80\x70\x7e\x12\xa7\x95\x97\x8c\x8f\xf9\xf5\xa1\x89\x76\xad\x0e\xe5\x77\x8d\xd6\x36\xf0\xb2\x2e\xc0\x78\xe7\xf1\xb2\x0c\xb5\x3c\x3e\xfd\xf4\x53\xf8\xf4\xd3\x4f\xb3\x73\xe7\xce\xb9\xdf\xfe\xed\xdf\xce\x00\x00\x5c\xbe\xd0\xc3\x7b\xa2\xbd\x3c\xf4\xf2\xd8\x01\x2c\x1a\xa6\x52\xde\xb3\xdd\x34\xb5\xbc\xfd\x74\x94\x3f\xd1\xf9\x2f\xff\xf2\x2f\xfd\xda\x0d\x4e\xa7\x55\x47\x56\x1d\x6a\xbc\x21\xeb\xa0\xcd\x2f\x00\x00\xfc\xe0\x07\x3f\x80\x1f\xfc\xe0\x07\x19\x00\xb8\xcb\x97\x2f\xc3\xb7\xbf\xfd\xed\xf2\x5b\x92\x24\x7e\xa7\x51\x99\x7f\xb5\x84\x81\xfc\x38\x62\xdd\x33\x96\x11\x51\x79\x90\xde\x27\x9f\x7c\x02\xff\xf0\x0f\xff\xc0\x69\xb5\x82\xc6\x83\x4d\x7c\x15\x53\x57\xb2\xcf\xc9\x74\x39\x3f\x18\x44\x2d\x23\xe0\x9a\xd2\x97\x71\x1f\x7c\xf0\x81\x7b\xf3\xcd\x37\x1d\x1b\xac\xbb\x94\x1f\x6b\xdc\x87\xea\xde\xa2\x75\x22\xda\x5c\x1f\xa7\xdb\xef\xdc\x5d\xfd\xf0\xb5\x07\xc3\x6f\xac\x4e\xd2\x73\x5c\x25\xf3\x81\x4a\xad\x65\xd1\x4f\x5f\xc1\x2c\xfa\x49\xf9\x2f\x18\xe9\xa0\xe9\x1b\x43\x40\xda\x77\x11\xe6\x48\x93\xfd\xde\xfc\xe3\x4f\xce\x1d\xfd\x3f\xff\x72\x75\xff\xef\xe6\x0e\x76\x21\xbf\xbf\xc8\x9f\xda\xc8\x2d\x07\xf8\xe4\x93\x4f\xb2\xef\x7d\xef\x7b\x3e\x79\x8c\x00\x69\x12\x94\x5a\x08\x76\x1a\x25\xbf\x90\x90\xb6\xe8\xb4\x42\x2c\xfd\x31\x69\xda\xe6\xe3\xdf\x63\xea\x53\xcb\x67\x19\xa5\xce\x1a\xec\x42\x79\x72\x3a\x35\x9a\x43\x79\x6a\x83\x45\xcc\x60\xca\xd3\xc4\x2a\x1c\xf2\xbb\xf6\x1e\xa2\xd5\x8a\x7b\x1e\x4a\x6b\x8c\x30\x5d\x56\x71\x6d\x8b\xe3\x59\x60\xb4\xb0\x6c\xfd\x3c\x8f\x7a\x8d\x81\x5d\xaa\x5e\x3b\x9d\x8e\xfb\x83\x3f\xf8\x03\x4d\x69\xd4\x4e\x1b\xb7\x68\xf0\x69\x80\x3d\xd7\xf2\xfd\x93\x3f\xf9\x13\x30\x8c\xc3\xff\x2f\xd5\x8f\x0a\x93\x24\x89\xfb\xc3\x3f\xfc\xc3\x12\xbe\x50\x40\x32\xa6\xd8\xd5\xca\xa5\x28\x71\xee\xaf\xfe\xea\xaf\xb2\x9b\x37\x6f\x2e\xd3\x56\xcf\x52\x3f\xcb\xe2\x73\x00\x8b\xb7\x43\xfb\xf0\x2c\x4a\x8b\x95\xde\x8a\xf3\x1e\x05\xff\x57\xba\xfd\x10\x71\x36\x4a\xb3\xc3\xdd\xfe\xec\xfe\x71\x37\x7b\x3a\x9c\xd0\x59\x47\xe8\xb8\xa2\x00\x50\x9b\xa0\xa9\x9f\x60\xcb\x02\x8a\xdf\x3c\x7d\x7e\x03\x34\x77\xd8\x54\xdf\xd8\x7b\x91\x11\xbf\x0a\xa0\x54\x7a\x58\xda\x72\xb7\x92\xcc\xbc\x88\x07\x02\x70\x00\xdd\xe1\xd4\x6d\x6f\x1d\x76\x5f\x3f\xbf\xdf\xfd\xe9\x9d\xcd\xc9\x31\xb0\xb3\x09\xb0\xba\x9c\x8e\x7b\x5a\x64\xdd\x69\x5a\xab\x7c\x0f\xa5\xb1\x34\xdf\xa6\xb4\x56\xba\xd8\x77\x2d\xc4\xd2\xff\x9f\x95\x4f\xe8\xb9\xcd\xb7\xd8\xbc\xb5\xf2\x2d\x43\x5b\x53\xde\xa1\x7a\x6c\x6a\xe7\xb6\xf4\x3c\x6b\x1d\x3d\xab\xbc\x09\xe1\x6b\xf2\x40\xc4\xd0\x61\xf5\x9d\x58\x39\x27\xe3\x63\x60\xb4\xfc\xac\xb0\x6c\xfd\xb5\x4d\x17\x03\xaf\xd5\x77\x9b\xf2\x96\xf1\xd3\xe9\x14\xbe\xf3\x9d\xef\x94\x75\xfd\x9b\xbf\xf9\x9b\xb0\xb5\xb5\x05\x00\xfa\xf4\x7f\x0c\xfe\x9f\xff\xfc\xe7\xf0\xbd\xef\x7d\xaf\x16\xef\xbd\x0d\x4a\x3a\x8b\xbe\x26\x2f\x4c\x28\x2c\x5b\x3f\x2a\x6f\xcc\xe7\x73\xf8\xce\x77\xbe\x63\xc1\xc4\xf4\xc5\x6c\x36\xd3\x2e\xa7\x8e\x0a\xcf\xc2\x3f\x51\x0a\x8a\xf2\x9c\x01\xe8\x53\x45\x6d\xac\x2b\x9e\x26\x44\x8c\x96\xb6\x7c\xc7\xfa\xa1\x38\xb5\x7b\x14\x66\x09\x4d\x76\x07\xb3\x47\x7b\xfd\xd9\xc3\x53\xc7\xe9\x8b\x2e\xc3\x3e\x47\x1c\xbe\x09\xda\xfe\x58\xfa\x67\x6a\x6b\x59\xaa\xb3\x78\xd9\xc4\x50\xfe\x9d\xb9\x65\x16\xfa\x0c\x3f\xd5\xd7\x2b\x29\x2c\xe7\xfa\x3b\x42\x9a\xc1\xea\xc6\x49\xfa\xca\xf9\xfd\xde\x95\x3b\x9b\x93\xfb\x90\x2f\x46\x9e\x41\xa5\xb0\x00\x22\x3a\x44\xcc\x5e\x7c\xf1\x45\xc8\xb2\xcc\xfd\xfd\xdf\xff\x7d\x9b\x4e\xd1\x14\x62\xb5\xde\x65\x2d\x8f\xff\xee\xe1\xff\xaf\x8f\xff\x9c\x60\x29\x05\x6d\x07\x10\x0d\x4f\x50\x10\xb6\xc0\xad\x85\x90\x51\xd0\x06\xb7\x46\xd7\xb3\xe0\x7e\x1e\x7c\xda\x16\xc7\xb2\xf4\x69\xcf\xd9\x64\x32\x29\xe3\xff\xfa\xaf\xff\xda\x15\x6b\x23\x17\xf2\x58\x5b\x5b\x83\xdf\xf8\x8d\xdf\x00\x00\x80\x3f\xfb\xb3\x3f\x83\xfc\x34\xfe\xc5\x30\x99\x4c\x60\x32\x99\x2c\xab\x20\xb6\x29\x8f\x05\xd3\x54\xf6\x18\x9a\xb8\xf2\xe3\x8c\xf2\x34\x85\x67\x51\xbe\x9a\x70\x2c\xeb\x89\x89\x36\xd2\x34\xc5\x85\x0f\x54\x4d\xd6\x95\x89\xd8\xf8\x9e\x01\x80\xfb\xc9\x4f\x7e\x02\x69\x9a\xc2\x6b\xaf\xbd\x06\x00\xe5\x5c\x63\xc6\x7e\xfd\x21\x43\x33\xca\x2f\x5d\xdc\xdd\x1b\xcc\x1e\x8e\x53\xda\xef\x4c\xa0\x54\x5c\xb0\xfc\x8f\x79\x42\x6a\x4a\x85\xe9\x43\x51\x63\xa8\xf2\xa3\x54\xee\x14\x8f\xa6\x88\x5e\xb8\xdb\x08\xb8\xf6\x9f\x2b\x30\xd6\x14\x95\xff\xe0\x08\xba\xc3\x69\x72\xe5\x85\x83\xce\xeb\xa7\x8e\xd3\x4f\x76\x86\x33\x7f\xb1\x97\x3f\x31\xb2\x54\x18\x7a\xbd\x1e\xac\xac\xac\xf0\x36\x09\x29\x16\xda\x77\x2d\x34\x09\x6d\x99\x36\x24\x3c\xad\x69\x0e\x4b\x99\xd5\xe0\xfd\xbb\x45\xbb\xc4\xa7\x3d\x6b\xdf\x24\x3d\x31\x74\x5b\xcf\x4d\xf9\x48\xbc\xda\xb7\xa6\x7c\x9a\xe8\xd1\xf2\x54\x5d\xe9\x0d\x74\xc6\x94\x2f\x04\x67\xb5\x91\x05\xd7\x14\x62\x15\xe8\x58\x1c\x5a\x59\x63\x14\x94\xe7\x21\x88\x9f\x97\x12\xb3\x4c\x68\xf2\x88\x86\xe2\xdb\xd6\x43\x13\xdd\x6d\xdb\xaf\x91\x6e\xe5\x3e\x9c\xf2\xfd\xe0\xe0\xc0\xfd\xf9\x9f\xff\x39\x00\x80\x3f\xcd\xb5\x6d\x3b\xf0\x20\x79\xf8\x59\xea\xd5\xc2\x6d\xe1\x7b\x16\x1e\x0c\x8d\x11\xb1\xb4\x36\xa5\xe5\xf2\xe4\x59\xf8\x76\x19\xbe\x2f\xf3\xb6\xce\x71\xf1\x85\xe7\xdb\x91\xe4\xb3\xb5\x05\xaf\x91\xd8\xf1\x78\x4c\xa7\x4f\x9f\xc6\xed\xed\x6d\xf4\x01\x00\xfc\xce\x22\x87\xf9\xb9\x2e\xf9\x61\x74\x08\x29\x00\xa5\xc3\x49\xb2\x71\xfa\xa4\x73\x7e\x38\x71\x67\x6b\x53\x43\x82\x18\x60\x5f\xf8\x85\x89\x40\xb8\x30\x8d\x23\x1d\x27\x39\x8e\x7c\x61\xad\x5f\x9c\xeb\x17\xde\x02\x54\x4a\x0b\x15\x73\x3f\x95\x5e\x53\x51\x51\x2a\x2a\x62\xe7\x53\x99\x5f\x71\xf8\x0b\x12\x38\x40\x98\x1e\x75\xb3\xcf\x1e\xad\x4d\x1f\x41\xb5\xb5\x2f\x03\x80\xda\x29\x92\x69\x9a\x52\xbf\xdf\x87\xbb\x77\xef\xfa\xd5\xd6\x0e\x16\x77\x09\xc8\x38\x60\xef\x9e\xac\x0c\x16\xdb\xcb\x29\x69\x9c\x80\xe5\xb8\xb5\x15\xf6\xd6\xee\x03\x6d\x05\xb9\x45\xa3\xd6\x61\x64\x19\x43\xcf\x56\xbe\xa1\x9d\x01\xbc\x7c\x99\xf8\x66\x95\xc7\xca\x47\xe2\xb5\xfa\x85\x86\xdb\x3f\xf3\x3e\xa6\xd1\x63\xd5\xbf\xfc\xd6\x44\x67\x4c\xf9\x42\x34\x80\x91\xc6\x82\x6b\x0a\x5a\x1a\xb9\xb3\x4a\xf2\xa9\x46\x8b\x0f\x1c\x56\xf2\x70\x28\x9d\x5c\x22\x67\xc1\x3b\xb0\x69\xb2\xe8\x8b\xa1\x5b\x83\xb7\xe8\xe6\xf1\xb2\xef\x73\x19\xad\x95\x7f\x59\x9a\xac\xfa\x91\xf4\xf2\x1d\x67\x31\x7d\x2b\x14\x2c\x18\xde\x57\xfc\x69\xe3\x74\x78\x78\x18\xe2\x77\xad\xce\x42\x74\x49\xfe\xab\xe5\xa9\xa4\xb3\xf0\xb7\x29\x73\x13\x0f\x3a\xf1\xde\xd4\xf7\x42\xed\x64\xc9\x2f\x2d\xad\x26\x4f\x62\x70\x58\x79\x5a\xfd\x2b\x94\xae\xcc\x5b\xb3\xc8\xb9\xd5\x62\x59\xf3\x99\x88\xb3\x32\x93\xbf\x35\x78\xbf\x0a\xba\x58\xd9\x2c\xf1\x96\x27\xff\x4d\x13\x1a\xed\x0f\x66\x8f\xf7\xfa\xb3\x87\x33\x47\x23\x5e\x52\xb9\xb0\xb6\x0c\x04\x90\x9f\x5a\xcb\x01\x03\xf5\x53\xec\x42\xca\x47\x8f\xfa\x8a\x18\x76\x44\x4c\x11\x8b\x35\x67\xcc\xe2\xc4\x92\xf0\xc2\x40\x31\xa5\x55\x20\x43\x00\x70\x04\xfd\xd5\x49\xf2\xd2\x85\xfd\xee\xab\xc3\x89\x5b\x45\xc0\x2e\x11\x75\xa1\xd8\x61\x54\xdc\xc3\xe1\x00\xc0\x0d\x87\x43\x77\xf9\xf2\x65\x9f\x7d\x8c\xa5\x13\x6a\x57\x0e\xa7\xc5\xfb\x38\xcb\x9a\x96\xb8\xb5\xbc\x9c\x02\x2b\x71\x3a\x01\xab\x59\x20\x4e\x81\x0b\xe5\x2b\xe3\xad\xba\x90\xbc\xa9\x79\x62\x42\xf0\xa1\x60\xe5\x69\xd1\xc7\xd3\x58\x1e\x83\xa6\xe7\xd8\xef\x5a\xbc\x55\xbf\x19\xe8\xe5\x0e\xf1\x40\x13\x7f\x34\xd5\x5f\xe8\xbb\xe6\xe5\xb1\x9e\x63\xdb\x93\xbf\x87\xac\x6a\x99\x4f\xc8\xf3\x64\x85\x58\x7e\x95\xcf\x16\x1d\x21\x0f\x40\xac\x35\xdc\xd4\x3f\xe4\xb3\xcc\xc3\x82\x91\xb4\xb5\xe1\xe1\x10\x4c\xa8\x6f\x85\xe0\xb4\xba\x6c\x92\xa1\x5a\xb0\x3c\x21\xda\xf7\x98\x3e\xec\xdf\x2d\x1c\x5a\x3e\x4d\xde\x43\x2d\x8f\x36\xa1\xa9\x1f\x3d\x0b\xaf\x37\xc1\x47\xf7\xe7\xb6\xb7\x43\x6b\x15\x26\xb5\x01\xa9\x71\x6b\x1a\x1b\x38\xe7\xb0\xdf\xef\xd3\xc6\xc6\x86\xb7\x0c\x1c\xe4\xbe\x08\x7f\x63\x74\x07\x72\xaf\x4b\x87\x00\x3a\x8e\xb0\xbb\x36\x4e\x4f\x9d\x3a\xe9\x5c\xe8\xce\xdd\x4a\xee\xd5\x80\xd2\xa3\xb2\xb8\x92\x05\xeb\x5b\x9b\xa1\xbe\x88\x77\x11\xdc\xaf\x6d\xa9\x54\x17\x7e\x13\x34\x00\x94\xe7\xc3\x14\xe0\xb5\x6d\xd4\x8b\xb9\x2f\x3e\x81\x4f\x93\xcf\x39\x21\x12\x76\x11\xf0\xe4\xe9\xca\xec\x67\x07\xfd\xd9\x11\xb8\xf2\x0a\xf7\x8c\x1f\x48\x57\x3c\xd3\x7c\x3e\xf7\x77\x65\x70\xed\xdf\x07\x5e\xbf\x9a\x96\x2d\xad\x01\xcd\xab\x66\xb5\xb5\xff\x26\x3d\x3e\x3c\x5f\x1e\x34\x4b\x5c\xc2\x86\xe8\x5d\xd0\xb0\x15\x7c\x56\xf9\x24\x8c\x86\x5b\xf2\xa6\x46\xa3\x56\xc6\x58\x0b\x31\x64\x8d\xf3\x6f\x08\xf5\x72\x6a\x69\xda\x58\xe7\x96\x67\xc0\x82\xe1\xef\xa1\xf6\x92\x78\x2d\xab\x33\xb6\xcd\x7d\xf0\x38\xac\xb6\xd3\xe0\x42\xd6\xbb\x55\x5e\x99\x4e\xeb\x3b\xa1\xfe\xa2\x59\xc1\xd2\x02\x6e\xf2\x3e\x5b\xdf\xad\x3e\xa7\xd1\xa3\xf5\x49\xfe\x2c\xcb\xcf\xfb\xb6\x86\x53\x2b\xb7\x84\x6b\xe2\x39\x9e\x8f\x05\x13\x83\x2f\xb6\x8d\x65\x3e\xb2\x3d\x24\x9c\x35\x6e\xf1\x3c\x2d\x7a\x39\x4d\x3c\xbe\x49\x4e\x5a\xf8\xfc\xb3\xec\x3b\x96\x67\xcc\x6a\x4b\xad\xde\x3c\x0c\x1f\x7b\x79\x9c\x35\x5e\x48\x7c\x4d\x6d\xac\x95\xbd\x2d\x0e\x09\xd3\x54\xaf\x3e\xae\x2c\x9b\x35\x55\x64\x15\x34\x54\x69\x1c\xb1\x35\x8d\x54\x0e\x94\x07\x07\x07\x98\xa6\x29\x5c\xb9\x72\x85\xcd\x16\x81\x7f\x70\x7e\x97\x0d\x00\x74\xf2\xe9\x22\xe8\xf4\x67\x6e\xed\xf4\x49\xba\x35\x9c\x24\x67\xb1\x98\x6f\xc9\x6b\x83\x4d\x1d\x51\xa1\x70\x14\x9a\x0d\xa1\xa1\xae\x50\xbd\xa6\xaa\x7b\x90\xf4\x75\x30\x39\x75\x55\x8c\x3f\xf6\xbf\xba\x94\xb1\xba\x24\xc0\x5f\x08\xe9\x51\xd5\x76\x1b\x15\x77\x1c\x15\x38\x5d\x92\x61\xe7\xa4\x9b\xdd\x78\xbc\x3a\x7d\x38\x75\x34\x01\xac\x0e\x46\x2a\xd6\xfb\x10\x22\x42\xb7\xdb\x85\x33\x67\xce\xd0\x8f\x7f\xfc\x63\x62\x64\xc9\xb6\x40\xa8\x93\x2c\x19\x1f\x45\x5a\xee\x16\x0a\x31\xde\x32\x03\x78\x53\x08\x29\x3f\xcb\xe0\x8f\xed\x88\x16\xff\x5a\xf8\x96\x0d\xa1\xf4\xcf\x52\xee\x10\xcd\x21\xe5\x73\x59\x9c\x56\x78\x1e\x3c\xa0\xd5\x43\x48\xd9\x6a\xca\x33\xd4\x96\x4d\xca\xb6\x0c\x52\x59\xd1\x06\x48\x60\x71\x1a\x4e\x99\x67\x48\xd9\x88\x2d\x9b\x06\x1f\xa2\x0d\x8c\x6f\x21\x5a\xdb\x86\x26\xa5\x2d\x26\xcf\x65\x65\xcb\xb2\x3c\x01\xa0\x2b\x0c\xb1\x0a\xb9\x86\xbb\xc9\x60\xb4\xd2\x35\x0d\xfa\x21\x63\xcb\x52\xd8\x78\x1c\x9f\x42\x08\xf1\x51\x28\x58\x8a\x8f\x46\x13\x0f\x4d\xfd\x2e\xa6\x7e\x7c\x5c\x19\xdf\xb4\x38\x97\x23\x6f\x5a\xe0\x63\xb9\xfa\x43\x30\xd2\x85\xc7\xa7\x8a\x26\xfc\x6f\x92\x64\xc7\x7b\x83\xd9\x83\x9d\xc1\xec\xfe\xe9\xa3\xce\x4b\xdd\x0c\x87\xd5\x2d\xcf\xb9\xd2\x41\x20\xbc\x24\xa8\xad\x86\x29\xde\xb0\x4c\xad\x4f\xf7\x10\x00\x30\x18\x1f\xaa\x83\xe8\xea\x17\x2e\xfa\xc4\xe8\x77\x17\xb1\x5c\xbd\x12\xa5\xec\xd3\x76\xdd\x99\xdb\xde\xde\xeb\x7e\xe9\xd6\xa9\xce\x67\x93\xb5\xc9\xf1\xac\x50\x5e\x8a\x2b\x10\xf8\xa2\x65\x48\x92\x04\x2e\x5d\xba\xe4\x6e\xdf\xbe\x2d\xdd\x85\xdc\x83\xc2\x9f\x65\x08\xa5\xd1\xe0\x64\xfb\xf0\x34\x9a\x46\x1c\x5a\xd0\x26\xe1\x2c\x5a\x2c\xbc\x16\x9e\x10\x8f\x49\x38\x10\x69\x42\x96\x98\x95\xc6\x0a\xa1\x34\x4d\x65\x68\x0a\xa1\x36\xe5\x21\xc6\x95\x1d\xaa\x87\x26\x7a\x39\x3e\xab\x8f\x87\x42\x4c\x3d\x34\x7d\x8f\xc1\xa1\x3d\x37\xb5\xb5\x0c\xda\xf4\x4b\x08\xbe\x09\x9f\xc5\xa7\xcb\xd2\x15\xd3\x2f\x2c\x78\xad\x9d\x2d\x7e\x8d\x79\x6e\x9a\xce\x8a\xad\x63\x2b\xb4\xc1\x09\xca\xf7\x18\xba\x9b\xea\xc1\xc2\xef\x4e\x9f\x3e\x0d\xc3\xe1\x50\xa3\x55\x8d\x7b\xfa\xf4\x29\x1c\x1f\x1f\xcb\xfc\x43\x79\xc4\xb6\x89\x15\xa4\x3c\x8f\xc9\x33\x84\x63\x59\x3a\x34\x98\x18\x3d\x63\x21\x3e\x15\x1f\x39\xb2\x58\x61\x22\x3b\x48\x88\x80\x5a\x18\x8d\x46\x70\x70\x70\x90\xad\xaf\xaf\x3b\x00\xf0\x07\xe3\x64\x00\xb5\x53\x74\x67\x00\x30\xcb\x1c\x8c\x0e\x7a\xf3\xdd\x27\x2b\xd3\xbb\xdb\x7b\xbd\xdd\xce\x08\x87\xa5\xc2\x80\x6c\x51\x2c\x40\xe9\x01\xa9\xd4\xbc\xc2\x0b\x82\xdc\xfb\x51\x3f\x39\xb7\x9c\x2a\xaa\xe9\x37\x8b\xbe\x1a\x8e\xbf\x8c\x60\xd3\x46\x25\x5c\x81\xbb\x52\x82\x16\x4f\xf0\x45\x40\x70\x40\xdd\x53\xc7\x9d\x77\x2f\xee\xf6\x7e\xb0\x3b\x98\x3d\x3e\xea\xce\x8f\x29\x5f\xe7\x92\x16\x87\xd1\xf9\x6b\x11\xb2\x7e\xbf\xef\x7e\xfd\xd7\x7f\x3d\xfb\xd3\x3f\xfd\x53\x59\xcf\xa1\x8e\x68\x85\x26\xc1\xe9\xbf\x35\x29\x40\x16\x3e\x8b\x1f\x42\x02\x44\x4b\x63\xd1\x17\xc2\x27\xe1\x9a\x94\x9b\x26\xdc\x16\x9e\x98\x34\xa1\xfc\x62\x3b\x7d\x53\x9d\x36\xa5\xd1\x06\x28\x8d\xae\x98\x3a\x8d\x55\x68\x42\x34\xc9\x74\xcb\x28\x33\x21\xdc\xda\xb3\x65\x8c\x59\xed\x6a\x0d\xea\x1a\x4c\x08\xb7\x16\x9a\x04\xfe\xb3\x0c\x46\x56\x9d\x71\x3a\x63\xea\x5b\x83\x8d\xed\x43\x6d\x06\x33\x0e\x17\x33\x68\x4a\xbc\x6d\xea\x4a\x3e\x6b\x34\x58\xf9\x96\xdf\xce\x9c\x39\xc3\xe9\x80\xf7\xde\x7b\x0f\xae\x5e\xbd\x1a\x7b\x28\x5e\xf6\x2f\xff\xf2\x2f\xf0\x8b\x5f\xfc\xa2\x4c\x3f\x99\x4c\xe0\xe0\xe0\x20\x56\xb1\x92\x74\x69\x65\x68\x52\x52\x83\xf4\x19\xf1\x16\x3f\x34\xf1\xba\x85\xdb\xaa\xef\x28\x99\x93\x06\x3e\x36\x75\xd2\xd8\x81\x4f\x86\x52\xc0\xdd\xbc\x79\x33\x23\x22\xf7\x6b\xbf\xf6\x6b\x32\xcd\x0c\xa0\xbc\x83\x62\x52\x6c\x15\x9e\x8d\xd3\xec\xf8\xe9\x70\xfa\xf0\xa0\x3f\xbb\xbf\x36\x4e\xb6\xa5\x37\x85\xfc\x8d\xd1\x5e\x69\x29\x15\x92\x4a\x83\x28\xa7\x8e\xb8\x07\xa4\x88\xab\xcd\xa1\x60\x0d\x75\x5d\x11\x11\xeb\x56\x72\x14\xd2\x33\x53\x4b\x5e\x28\x44\xc8\xfc\x3e\xa5\x06\x05\x83\xa9\x7b\xf1\xd2\x6e\xff\x4b\x77\x36\xc6\xb7\x46\x69\x76\x58\x78\x5d\x4a\xe5\xa5\x38\xd3\xa5\x3c\x90\x6e\x30\x18\xb8\x93\x93\x13\x5f\x57\x21\xaf\x00\xff\x16\x1a\xb0\xda\x5a\x58\x6d\x3d\x09\x21\xe5\x21\x56\x08\xc5\x7e\x8b\xb5\xb6\x9f\xc5\x8a\x6f\x03\x17\x53\x6f\x96\xb0\x69\xca\x77\x99\xef\x6d\xdb\xba\x29\xaf\x18\x65\x27\x26\xbd\xe4\xcd\x26\x21\x17\xa2\x39\x46\xf8\x3d\x6b\xb9\x3d\x8e\x90\x52\x1c\x33\x08\x69\xf9\x34\x29\x4a\x92\x06\x2b\xb4\xe9\x17\xcf\xab\xbe\x35\xbe\x6e\xc2\x11\xe2\xa1\x10\xff\x2e\x43\xb7\x15\x6f\xca\x26\xe7\x1c\xf4\x7a\xbd\xb2\x1c\xbf\xf3\x3b\xbf\x03\xc5\x0e\xd8\x5a\xe0\xd7\x10\x18\x4a\x4c\x06\x00\xee\x97\x7e\xe9\x97\xe0\x97\x7f\xf9\x97\xcb\xc8\x3b\x77\xee\x64\x7f\xf3\x37\x7f\x53\xe2\x2b\x64\x7b\x28\x58\x72\x2d\x24\x93\x63\xe5\x75\x93\xf2\x18\x93\xae\x6d\x7d\xcb\x71\x2a\x94\x0e\x00\xc2\x6b\x5c\xe4\xbc\x73\x26\x7e\x43\xf3\x55\xa1\x39\xf8\x1a\xd1\x9b\x9b\x9b\x78\xed\xda\x35\xbe\x80\xc8\xc3\xf9\x2b\x01\x52\x44\xec\x00\x40\x3a\x47\x48\x10\xb0\xb3\x3e\x4a\x36\x4f\x9f\x74\x2e\x26\x19\x76\xcb\xb5\x26\xe5\xda\x93\xfc\x19\xfd\xe2\x5c\x80\x9a\x02\x93\xcf\xda\x88\x4b\x1a\xa1\x3a\x78\x4e\x4e\xf3\xf0\xfb\x87\x00\x74\x86\x24\x89\x03\x84\x67\xa6\x28\x59\x7d\x1a\x0a\xca\x35\x35\x0e\x30\x49\xf3\xb5\x2e\x37\x77\x87\xb3\x47\x93\x94\xc6\x80\xb5\xdb\x4f\x09\x20\xdf\x22\x8d\x88\xf8\xce\x3b\xef\xe0\x4f\x7e\xf2\x13\x9a\xcf\xe7\x72\x7e\x5d\x9b\x73\xe5\x0d\x5e\x73\x4c\x89\xf8\x65\x9e\x43\x6b\x0a\x64\xd0\x78\x4a\xf2\x0a\x9f\x7f\xcd\x14\x38\x8b\xef\xac\xb5\x02\xa1\xb9\xd7\x50\x5e\x5a\x7a\x8d\xf6\x26\x38\xeb\x5b\x53\xfd\xc8\x45\x6c\x5a\xb9\x63\xd7\x04\x68\xe9\x62\xeb\x3e\x34\xaf\x1d\x6a\x0b\x2b\xf0\xb5\x22\x52\xce\x48\xde\xe4\xf8\x25\x1c\x18\xf1\x5a\xb9\x62\x64\x95\x7f\xd6\xd6\xb2\x84\x84\xb3\x25\xeb\xe4\x37\x8b\x06\x59\x06\xab\x9c\x1e\x87\x8f\xd7\x64\xb4\xcc\x5b\xe2\xd0\xea\xc7\x19\xcf\xb1\xed\x10\xaa\x6f\xfe\xcd\xaa\x63\xc9\x0f\xfe\x17\x8c\xe7\x4c\xa1\x4b\x2b\xaf\x1c\xe8\x62\xca\xa3\xd5\x05\x02\x00\x6e\x6f\x6f\xc3\xef\xfe\xee\xef\xba\x77\xde\x79\x07\xdf\x79\xe7\x9d\x72\x41\x26\x54\xed\x80\x90\x8f\xa5\xe5\x3b\xe6\x3b\x2a\xca\xa3\x3e\xd8\x45\xc2\xe0\xbf\xfb\xfc\xd7\xd6\xd6\xd0\xe3\x7e\xeb\xad\xb7\xe8\x5f\xff\xf5\x5f\xf9\x78\x18\x92\x99\x21\xb9\xa0\xf1\xb7\xc5\x03\x00\xf5\x3a\xb6\x70\xcb\xf8\x98\xfa\xb6\xfa\xab\x6c\x07\xa9\xc8\x70\xbe\x90\x78\xcc\x35\x2e\x1c\x81\x8c\xf3\xef\x4e\x79\x0f\x69\xff\x1a\xfe\x32\x4e\x28\x04\x19\x88\x13\x74\x01\x60\x02\x08\x93\x93\xce\x7c\xff\xe1\xda\xf4\xf6\xa5\xbd\xd9\xfd\x33\xf3\xee\x35\x00\x5f\x22\xac\x8e\xdf\x5f\x38\xb0\x45\x5f\xa7\x02\x55\x62\x50\xa2\x98\x62\xc3\xa6\x77\xc4\xb4\x14\x5b\xf1\x52\xcf\x12\x20\xbf\xec\x11\x44\x8d\x17\x89\xaa\x8d\xda\x79\xc4\x60\xea\x5e\xba\xba\xd3\xff\xa5\x7b\xeb\xe3\x5b\x27\x9d\xec\x70\x96\xd0\x04\xf2\xf6\xf1\x6d\xc4\xeb\x38\xa6\x9e\x7d\x9a\x98\xb8\xff\x8a\xd0\xc6\x52\xb4\x2c\xaa\xd8\x34\x6d\x42\x2c\xfe\xe7\x91\xd7\xb2\x74\x3c\xef\xfc\x96\xa9\xfb\x36\x38\x96\xc5\xdd\xb6\xdd\x63\xea\x29\x26\xad\x66\x05\xc6\xd0\xf4\x3c\xbc\x22\xb1\x70\x4d\x9e\x0c\x2d\xb4\xf1\x42\x3d\x4b\x9f\x6b\xc2\x2d\x2d\x6d\x39\x76\xc8\x5f\xeb\xbb\x65\xb1\xcb\x7c\x9e\x55\xb6\x64\x00\x00\x6f\xbd\xf5\x16\x7c\xf5\xab\x5f\x75\xb0\x38\x3e\xb9\xc0\xaf\xa7\x53\x5e\x7a\x58\xd6\x15\x7b\xce\xc4\x3b\x20\x22\xfc\xf1\x1f\xff\xb1\x03\x80\xec\xbb\xdf\xfd\x2e\xec\xee\xee\x5a\xb4\x97\xe9\x95\xf8\x90\x57\x6a\x19\x1e\x08\xd1\xd0\x84\x73\x99\xbc\x1a\xe9\xb0\xb6\x43\x4b\x6d\xd9\xc7\x69\xd6\x7b\xc6\xde\x43\x41\x73\xf9\xd1\xc1\xc1\x01\x3e\x78\xf0\x00\xae\x5d\xbb\xc6\xb5\x50\x2c\xbe\x27\x44\x94\x94\xbb\x8b\x00\x52\x42\x4a\x11\xb0\x7f\xfa\xb8\x73\x66\x63\x94\x5e\x74\x50\xb9\xec\x4a\x97\x0d\xf3\x6e\x54\xca\x45\x45\x72\xed\x5b\xe9\xf9\xa8\x9b\x00\xfa\x4c\x65\x0e\x21\xa7\x95\x16\x26\x90\x8a\x8f\x95\xe2\x53\xa7\xad\x1e\x57\xa6\x4a\xd2\x0c\xbb\xa3\x0e\xfd\x62\xaf\x3f\x7b\x3c\x4a\xb3\x13\x02\xf2\xd7\x94\x97\x07\xd3\x41\xde\x89\xe8\xd5\x57\x5f\x85\xcf\x3f\xff\x1c\xc7\xe3\xb1\xb4\x3a\x42\xd6\x18\x0f\x21\x2b\x70\x19\x38\x99\xb7\x45\x87\xc4\x17\x4b\xbb\xfc\x26\x2d\xae\xa6\xfc\x62\xeb\x45\xcb\xd7\x4a\xa3\x59\x7d\x31\xe9\x42\x30\xff\x19\xed\x12\x13\x64\xdb\x59\x6d\x62\x59\xe9\x31\x74\xb6\xe5\xa5\x65\xd2\xc5\xa4\xb5\xbe\xb7\x7d\xd6\xf8\x38\xc6\x13\x62\x59\xfd\x6d\x82\xd5\x87\xa4\x97\xc5\x87\x98\xbe\xb8\x2c\xad\x9a\xd7\x28\x94\x4e\xa3\x15\x22\xbe\x6b\x7c\x68\x79\xac\x9a\xd2\xc9\x50\xc6\x7f\xf0\xc1\x07\xee\xc3\x0f\x3f\xc4\x4b\x97\x2e\x41\x92\x24\xdc\x5b\xe2\x3d\x2b\xde\xbb\xe2\x0f\x4a\x75\x90\xdf\x37\xe7\x10\xb1\x53\x8c\x59\xae\x78\x97\xf0\x12\x87\xf7\xc8\x38\x44\xe4\xca\x11\xbe\xfc\xf2\xcb\xf4\xd6\x5b\x6f\xe1\xde\xde\x1e\xee\xed\xed\x59\x65\x6b\xe2\xc1\x98\x36\xb6\xbe\x69\x7c\x10\xea\x5b\x6d\xfa\x5a\x13\x0d\x41\x5a\xe5\xe2\x5c\x39\x1d\xd4\x64\xe5\x87\x3c\x2d\x21\xad\xaf\x7c\xcf\xb2\x2c\x1b\x8d\x46\x5c\x3b\xe5\x5e\x9e\xac\xb8\xc3\xa7\xdc\x5d\x34\x47\x18\x1d\x76\xe7\x3b\x4f\x56\xa6\xb7\xb7\xf7\x7b\xfb\x83\x49\x72\xba\x54\x12\xa8\x52\x46\x74\xc5\xc3\x2b\x18\x5e\x01\x29\xdd\x1f\xd5\x76\x65\x2a\xfc\x27\x35\x2f\x8d\x3f\x85\x17\xfd\xab\x3f\x58\xb7\x76\x9e\x0b\x00\xd4\xce\x96\x29\x53\xd3\x82\xd3\xa7\xf4\xd1\x50\x91\x00\x11\xa1\x37\xc3\xed\xed\xbd\xee\x97\xee\xad\x8f\x6f\x1e\xf6\xe6\xbb\x53\x57\x79\x5d\xfc\x99\x2e\x50\x68\xf2\x83\xc1\x00\x84\xe6\x6e\xd5\xb3\x15\x42\xd6\x12\x88\x6f\xcb\x78\xd3\x62\x78\x22\x26\x8d\xf5\x4d\xb3\xd4\x42\xe9\x9e\x87\x47\xa6\x0d\xee\xd8\xfa\x6a\xea\x27\xcb\xd0\xb5\x4c\x78\x6e\xd6\x10\xd8\x96\xb1\xc5\x73\x1a\x9f\xb5\xcd\xc7\xa2\x31\x04\x17\x4b\x9f\xf5\x1c\xf2\x00\xc4\xb6\x6b\x53\x3b\x36\x79\x4d\x62\xd3\x3e\x0b\x8f\x7a\x5c\x31\xb8\x9b\xfa\x5b\x4c\x79\x38\x3f\x58\x38\x65\x5c\xdb\x36\x5e\x80\xf9\xd6\xb7\xbe\xe5\x36\x37\x37\x61\x75\x75\xd5\xaf\x69\x71\x00\x00\x85\x12\xe2\xd7\xb5\x98\x7f\x09\xa1\xeb\xce\x9c\x4b\x33\x74\x5e\x32\x67\x0e\xb2\xb9\x23\xc8\x80\xb2\x69\x4a\x19\x61\x39\x96\xf2\x31\xb5\xbc\xaf\x8f\xc9\xf9\xac\xdf\xef\x3b\x00\x80\x0f\x3e\xf8\x20\x4b\xd3\x14\x6e\xdc\xb8\xa1\xd1\xad\xb5\x43\xdb\x3a\xb1\xf0\x35\xc1\x5b\x7d\x21\xb6\x1f\xcb\x36\x8e\xce\x9b\x7b\x5c\xa4\x96\xcb\xe7\x7a\x43\x56\xab\x36\x47\x69\x59\x1e\xaa\x46\xb6\xb2\xb2\x02\xaf\xbf\xfe\x3a\x77\x8e\x2c\x78\x5e\x8a\xbf\xe2\x0a\x00\x48\x3b\x73\x37\x38\x7b\xd4\x3d\xbf\x32\x71\x5b\xd5\xee\xa2\x45\x05\x01\x01\xaa\xdb\x3f\xb1\x52\x5d\xca\x88\x92\xd2\x6a\x3d\x0a\x0a\x0f\x0c\x01\x2e\x2a\x43\x0c\x05\xd6\x76\x0c\xe5\x5a\x0a\x9f\x08\xaa\x34\x9d\x22\x09\x16\x9e\x96\x5a\x2d\x22\x00\x40\x92\x10\xba\x49\x4a\x0f\xf7\xfb\xb3\x07\xa3\x0e\x9d\x00\x96\x07\xd2\xd5\xbc\x2e\x00\x00\x67\xce\x9c\xa1\x47\x8f\x1e\xe1\xc9\xc9\xc9\xb2\x96\x77\x93\x20\x94\x3c\xf1\xac\x56\xfe\xf3\xf4\x10\xfc\x77\x09\xff\x1d\xeb\xa4\xa9\x4c\x92\x9f\x9a\x2c\x70\x8b\xef\x62\xea\xce\x77\x63\x6b\xde\x5d\xc3\x1d\xdb\x26\x21\x9a\x42\xd6\x69\x9b\x36\xb7\xe8\xb6\x60\x96\xcd\xa7\xc9\xb3\x42\x22\x4e\xe6\x19\xf2\x1c\x59\x5e\xa0\xa6\xf2\xc8\x3c\x43\x21\xd6\x9b\xa4\xc2\x7c\xf3\x9b\xdf\x74\x57\xae\x5c\x81\xb5\xb5\x35\x97\xa6\xa9\x1f\x77\x7c\xb9\x9c\x5f\x67\xc9\xfe\xba\xfd\xa9\xeb\x6d\x9e\xa4\xab\x5b\x87\x9d\x8d\xf3\xfb\xbd\xd3\x97\xf7\x7a\x17\xae\xec\xf6\xaf\x5c\xde\xe9\xbf\x7c\x69\xaf\x77\x75\xfb\xa0\x7b\xe5\xc2\x7e\xef\xe2\xf6\x7e\xef\xc2\xb9\xc3\xee\xe6\xe6\x28\x1d\x0c\x27\x49\xaf\x37\x73\x1d\x47\x90\x66\x08\x2e\x73\xb9\xb7\x05\x00\x80\x1d\x68\xc6\x9d\xfe\xd4\xeb\xf5\xf0\xd4\xa9\x53\x74\xf5\xea\x55\x1c\x0c\x06\xf8\xf0\xe1\xc3\x18\x9e\xf0\xdf\xda\x7a\x2e\x43\x6d\x1c\xf2\x28\x5a\xed\xda\x94\x27\x6f\xe3\x68\xef\xa3\xf7\xb8\xc4\x5a\xc2\x6d\xe6\xb7\x2c\x6b\x52\x6a\xd3\x70\x70\x70\x00\xff\xf8\x8f\xff\x08\x5f\xf9\xca\x57\x6a\x5b\xa2\x01\x60\x56\x68\xa0\xb5\xb5\x2e\x33\x47\xc7\x4f\x56\xa6\x0f\x76\x86\xd3\xdb\x67\x8e\xd3\x6b\x49\x06\x5d\xa9\x92\xd4\xb4\x20\xaf\x58\x88\x49\x23\x9e\x80\xaf\x5d\x91\x01\xe5\x33\x2e\x7e\x40\xf4\xdb\xab\xeb\x18\x72\x78\x5c\x80\xe7\xe9\xd8\x9b\xeb\xcf\xdc\xf6\x85\xbd\xde\xdb\x8f\x56\xa6\x9f\x1f\xf6\xe6\xfb\xe3\x24\x9b\x15\xe5\x2f\x2f\x60\x2c\xdc\x8a\xd9\xf9\xf3\xe7\x5d\xaf\xd7\xd3\x2c\x3d\x1f\x34\x0d\x58\x6a\xc3\xd2\x92\xe2\xf1\x9a\x15\xac\x59\xcb\x5a\x1a\x0d\x17\x4f\x23\x2d\x39\x49\x5f\x1b\x6f\x4f\x28\x8d\x85\xa7\xe9\x3d\x94\x8f\x46\x77\x6c\x78\xde\xf4\x78\x1a\x62\xac\x57\xad\x6e\x00\xc2\x75\xa5\xb5\xa5\x96\x46\xd2\x14\xa2\xcb\xb2\xde\xdb\x7a\xff\x62\x9e\x39\x2d\x12\x97\x8c\x7f\x1e\xf9\x3c\x8b\xd7\x48\x7b\x8e\xb1\x6a\x79\x88\x81\x6f\xe3\xb9\x69\x6b\x49\x37\xb5\xe5\xb2\xf1\xcb\xc8\x05\x0d\x97\xa4\x17\x3e\xfc\xf0\x43\xf7\xe2\x8b\x2f\x42\x9a\xa6\xdc\x83\xe2\xe1\xcb\xa9\x20\x20\x70\x8e\xa0\xbb\x3e\x4a\xfb\xa7\x4e\xd2\xf5\xd3\x47\x9d\x73\x9b\x27\xe9\x95\x95\x49\x72\xbe\x3f\xc3\x17\xba\x73\x77\xba\x33\x77\xa7\x93\x0c\x87\x6c\x04\xce\x08\x69\x36\x73\x74\x38\x4e\xb3\x87\xa3\x94\x1e\x9e\x74\xe6\x0f\x0e\x7b\xf3\xbb\x3b\xc3\xe9\xfd\x47\x2b\xd3\xc7\xbb\x83\xd9\xe1\x34\x25\xbe\xa6\x53\x7a\x5f\x66\xa7\x4e\x9d\x72\xa7\x4e\x9d\x82\xf5\xf5\xf5\x0c\x00\xe0\xc7\x3f\xfe\xb1\x56\x6f\x96\xcc\xb6\xea\x22\x66\x7c\x68\xaa\xcf\x65\xdb\xd8\x92\x5d\x72\x0c\x51\x69\xf0\x1e\x97\x90\x96\xa3\x7a\x49\x60\xd1\x8a\xb1\xb4\x74\x8e\x43\x56\x2c\x01\x00\xcd\x66\x33\x3c\x3e\x3e\x86\xb7\xdf\x7e\x5b\xea\x08\xc8\xdc\x73\x69\x41\x6f\x4a\x00\x1d\x42\x48\x56\x26\x6e\xe5\xec\x51\xf7\x72\x77\xee\x56\xe5\x8e\x21\xef\xe4\xf0\x44\x58\x67\xac\x94\x85\xe0\xf0\xfe\xbb\x3f\xd8\x8e\x9d\xf3\xb2\x70\x5e\x4b\x91\x20\x9f\x9f\xcc\xe7\x9c\xc8\x3b\x5e\x7c\x29\x44\xbe\x3c\xad\x77\xd2\x78\x6f\x10\x12\x74\xd2\x0c\xd3\x59\x42\xbb\xfb\xfd\xd9\xfd\xe3\x5e\x76\x04\x39\x13\x7b\x8f\x0b\x9f\x22\xa2\x24\x49\x68\x6f\x6f\x0f\x4f\x4e\x4e\xb8\x95\x82\x50\x6f\xf0\x90\x95\x43\xca\x9f\x8f\xd7\x18\x30\x64\x89\x91\x88\x93\x5e\x3b\x14\xf0\x32\x3d\x28\x30\xb1\x56\xb5\x25\xd0\x2c\xaf\xd1\x32\x56\x36\xc7\x91\x41\x73\x9a\x90\x35\x2f\x3d\x95\xcb\xd2\xd3\x54\x4f\x5a\xdb\xf0\x3c\x35\xde\xd0\xda\x47\xb6\xad\x45\xa7\x06\xef\x83\xcc\x37\xb6\xad\x2d\xab\x4c\xf2\x8d\xc6\x5f\x1e\x2e\xe4\x89\xd0\xbe\x69\x65\xe4\x3c\x26\xf3\x09\xc5\x69\x41\x83\x0f\xc9\x53\x8b\xaf\xe5\x33\xcf\xd3\xaa\x2b\x59\x1f\x4d\xb0\x1a\x8c\xcc\x4b\xc2\xc7\x58\xe6\x1c\x87\x96\x3f\x2f\x73\xa8\x7d\xb8\x6c\xb1\xf2\xf1\x34\x95\x75\x98\xa6\x29\xbe\xf7\xde\x7b\xf8\xe6\x9b\x6f\x42\x92\x24\xa5\xd2\xc2\xd6\xa6\x74\x00\xa0\x43\x44\x69\x42\xd8\x3b\x75\x92\xae\x5d\xde\xeb\x5f\x7c\xe9\x49\xff\xed\x17\x9f\x0e\xbe\x76\x71\xaf\xff\xcd\x73\x87\xdd\x0f\x4f\x8d\xd2\xaf\xac\x4e\x92\xb7\x07\xd3\xe4\xf5\xde\xcc\xbd\xdc\x9d\xbb\x2b\x9d\xb9\xbb\xd4\x9d\xbb\x4b\xdd\x39\x5e\xec\xce\xdd\x95\xde\xcc\x5d\x19\x4e\x93\x97\x56\xc7\xc9\x2b\x1b\xa3\xce\x6b\x9b\x27\xe9\xff\xb5\x39\xea\x5c\x58\x1b\x27\xab\x83\x69\xe2\x92\x0c\xb3\x69\x9a\x65\x73\x57\x79\x5b\x10\xf9\xe8\x00\x40\x44\xd8\xef\xf7\x61\x7d\x7d\x9d\x00\x00\x1f\x3d\x7a\xd4\xd4\x7f\x65\xfb\xb4\x6d\x6f\x59\x77\x5c\x96\x7b\xba\x96\xe5\xd3\xd0\xb8\xc1\x9f\x65\x19\x1c\x00\x50\x22\x23\x94\x67\x39\xe8\xf8\x42\x00\x34\x77\x62\x59\x10\x4d\x78\x02\x00\x10\x22\x62\x9a\xa6\x74\xee\xdc\x39\x82\x9c\x79\x80\xb9\xcd\x52\xb6\xe0\xc9\x5f\x03\x90\x10\x42\xe7\xdc\x61\xf7\x85\xd5\x49\x7a\x0e\x01\x9c\xdf\x02\x5d\xdb\xbe\xcc\x88\xf5\x21\xff\x94\x7f\xe1\xb5\xef\x4f\x9f\x2b\xbf\xb3\x93\x71\xb9\xf7\x86\xe3\xad\xc7\x63\xa5\x80\x20\xe4\x0a\x4c\x0d\xa6\x4e\x10\xcf\xa7\xc4\x47\x88\x8e\xb0\x9f\x10\x4e\x8f\x3b\xf3\x07\xbb\x83\xd9\xa3\x79\x02\x13\x44\x9c\x17\xdb\xa1\xcb\x93\x74\x89\x28\x3b\x7d\xfa\x34\x76\x3a\x1d\x3a\x38\x38\x80\x42\x79\xe1\xfe\x20\x8d\xa9\x64\xbc\xd6\xe9\x7d\xe0\xed\xc4\xe1\x2c\x5e\xb1\xda\xbd\xcd\x40\xcf\xf3\xe5\xb4\x4a\xdc\xb2\x0c\x99\x48\xcf\x71\xca\xc1\x5a\xc6\x49\x1a\x2c\xd7\xbb\xe4\x75\x0b\x8f\xa5\x8c\x48\xe5\xcd\xb2\xd8\x9b\x06\x07\xd9\x16\x5a\xfb\xf1\xfa\x93\xdf\x43\xf0\x6d\xea\x5e\xa3\x35\x34\xb8\xc9\x78\x2d\xce\x12\xba\x3e\x84\x70\x87\xd2\x5a\x6d\x2a\x71\x86\x82\x56\x0e\xf9\x4d\x93\x9d\x5a\x5d\x59\xf0\x1a\xbd\x12\x57\x28\x34\x19\x93\x3e\x4f\xdf\x5f\xb8\x54\x6a\xea\xd3\xd6\x00\x15\xea\x23\x32\xdf\xd8\x7e\xeb\xdf\xad\x32\x6b\x6d\xdf\xc4\x3f\xe5\x7b\xaf\xd7\x73\xd7\xaf\x5f\x87\x2f\x7f\xf9\xcb\xb5\xb5\x2b\x85\xd2\x92\xdf\x91\x47\xd4\x71\x80\x9d\xc1\x34\x59\xbd\xb0\xdf\x3b\xff\xf2\x93\xc1\x9b\xd7\x1e\x0f\xbf\xb9\xbd\xdf\xfb\xf6\xa9\x93\xce\x07\xc3\x69\xf2\x4e\x77\x8e\x5f\x48\x33\xb7\xe5\x00\xd7\x90\xb0\x8f\x80\x29\x62\x8e\x0b\x01\x1c\x12\x26\x00\x98\x38\xc4\xae\x23\x5c\x71\x84\xa7\x52\xc2\x0b\xdd\x39\x5e\x1c\x4e\xdd\x95\xf5\x71\xe7\xea\xa9\x93\xf4\xfc\xda\x38\x59\x49\x33\x07\x73\xa4\xe9\xa8\x93\xcd\x01\x80\x0f\x5c\xde\x88\xcf\x00\x00\xfb\xfd\x3e\x9c\x3e\x7d\x9a\x26\x93\x09\x3e\x79\xf2\x64\x59\xbe\x8e\xe5\x79\x4b\xb1\xb4\x64\x7a\x4c\x3b\xc8\x78\xad\x8f\x48\x79\x5d\xe3\x53\x6d\x8d\x8b\x56\x28\x4e\xb8\x13\xf1\x4d\x9d\x58\xba\x11\x55\xe5\x65\x3e\x9f\xd3\xdd\xbb\x77\xf1\xdd\x77\xdf\x05\x00\xe0\xcc\x84\x00\xc0\x57\x67\x27\x88\x98\x10\x40\x3a\x4d\x32\x3c\x75\xd2\xd9\x3c\x75\x92\x5e\xea\x64\xd8\xf7\xae\x8e\xea\xc0\xb9\x7a\x69\xeb\x45\xc1\xea\x3b\x5b\x20\x9b\x2f\x87\xa1\x72\x7a\xa9\x7e\x6d\x00\x54\x5e\x13\x0f\xc7\x71\x21\x00\x15\xf8\x91\x2a\xaf\x4e\x29\x45\xb4\x95\xbb\x50\x3f\x01\xa6\x48\x9d\xa4\x19\xa6\x19\xd2\xd1\x41\x3f\xbb\x77\xd0\x9b\xef\x17\x3b\x8c\xe6\x00\x40\x6c\xa7\x11\x20\x22\x9d\x39\x73\x06\x77\x77\x77\xe9\xe1\xc3\x87\xa5\x17\xcb\x68\x1b\x19\xcf\x99\xcf\x62\x1e\xdf\x7e\xdc\x5a\xb1\x78\xc5\x52\x10\x9a\x98\x58\xd2\xa2\xd1\xaa\xd1\x2c\x69\xb0\xca\xec\xe9\x97\xb8\x34\xc1\x2e\x71\x58\x96\x89\x7f\xd7\x94\x0f\x4b\xe0\x6a\xf5\xd2\x24\x6c\xac\xfe\x15\x2a\x33\xaf\x23\xdf\x6e\x21\x8f\x83\x85\x53\x83\xb7\xe2\x2d\x5a\x24\x6f\x71\xc5\x4d\xf2\x85\xe5\x35\xb1\x94\x25\x4b\x01\xe3\xb4\x69\x03\xa9\xc4\x1d\xcb\x9f\x4d\x8a\xbb\xc4\xcd\xdf\x35\x05\x52\x96\x41\x2b\x9b\x55\x5e\x4b\xf0\x73\x5e\xb4\xe8\x95\x7d\xda\x09\xf8\x58\xf9\x2d\xcb\x18\xca\xd3\xe7\xa5\x29\x56\x72\x7c\xd1\x60\x64\xfd\x4b\xa5\x49\x33\x94\x78\x28\xe9\x19\x0c\x06\xee\x95\x57\x5e\x81\xf7\xdf\x7f\xbf\x1c\x5f\x00\xca\xfb\xf1\xbc\x97\xa5\xd3\xcd\x5c\x6f\xf3\x24\x3d\x7d\x65\xb7\xff\xf2\xab\x0f\x87\x5f\xb9\xb2\xd3\xff\x8d\xcd\x93\xf4\x5b\xfd\x99\xbb\x9e\x10\x6e\x39\xc0\x3e\x02\x3a\xbf\xb1\x03\xd1\x8f\x01\x50\x9d\xc0\x8e\x50\x79\xd9\xb1\x1a\x13\x80\xa0\x93\x80\xdb\xe8\xcc\x71\xbb\x3f\x73\x2f\xae\x8d\xd3\xcb\x9b\x27\x9d\xcd\xee\xdc\xcd\xc6\x29\x1d\x8f\x3b\xd9\x2c\x2b\xa6\x11\x0a\x23\x9e\x88\x08\x01\x20\x43\x44\xec\x76\xbb\xf0\xc2\x0b\x2f\xd0\xe1\xe1\x21\xec\xec\xec\xf0\xf2\x5b\x7c\xa1\x19\xac\x31\xcf\x52\xe6\xf3\xb6\xb4\xd2\x49\x5d\xa1\xa9\xfd\x3c\x8c\xc6\x53\x72\x8c\x02\x80\xba\xe2\x62\x05\xd9\xf1\xa5\xd0\xd1\x60\x7d\x08\x59\x0d\xb2\xb3\x80\x73\xce\x2b\x2e\xd2\x6b\xe0\xb7\xa4\xd5\x2e\x5e\xcc\x1c\xb8\x4e\x86\xdd\xad\xc3\xee\x95\xc1\x2c\x59\x47\x28\xf6\xce\x23\x80\x3f\x44\x97\x2b\x09\x08\x22\xa2\x60\xae\xf2\x90\xb8\x72\x81\xae\xbf\x1d\xba\x9a\x1e\xf2\xc8\x10\x20\xd7\x8f\x7c\xba\x02\x65\x95\x17\x2e\xe4\x5b\x7d\x12\xf7\x29\x51\x15\x5f\x16\x18\x0b\xd4\x04\xbd\x24\xc3\x6c\x92\xd2\xa3\x27\x2b\xd3\x87\xf3\x04\x26\x50\xcd\x79\x97\x4a\x8b\x2f\xc9\xfe\xfe\x3e\xed\xee\xee\xe2\x64\x32\xb1\x04\xaf\x16\xac\xc1\x9f\x93\x1d\x1a\xec\x42\x1a\x72\xd3\x20\x16\xa2\x25\x86\xe6\xd8\x8e\x17\x1a\xe4\xb4\x41\x2f\x46\x71\xb0\xbe\x87\xac\x53\x4b\xd0\xc7\x96\x3b\x34\x58\x86\xac\x79\x2e\x78\x9a\x2c\xf6\x36\xd6\x51\x13\x4d\x3c\xad\x9c\x1e\x96\xe9\x3c\x7d\x96\x5c\x91\xf2\x07\x94\x67\x09\x6b\x29\xcd\x31\x75\xa5\x95\x8d\x0f\xba\x12\x7f\xaa\xb0\xb1\x98\x00\x00\x20\x00\x49\x44\x41\x54\x4c\x3d\x68\xb4\x84\xca\xa3\x0d\x02\x4d\x2e\x78\x8b\x77\xb9\xe7\x8d\xe3\x94\x4a\xa4\x25\xaf\x2d\x65\x32\xd4\xcf\x24\x1e\xab\x0c\x72\x20\xd4\x8c\x12\xcf\x23\x72\x8d\x8b\xe4\x8b\x50\x9b\x64\x00\xe0\x06\x83\x01\x5e\xbb\x76\xcd\x9f\xcf\xe2\xbf\xa5\x90\x1b\xc4\xe5\xc2\xdb\xee\xdc\x0d\xb6\x8e\x3a\xe7\x5e\x7d\x38\xfc\xe2\xab\x0f\x87\xdf\x3e\x77\xd8\xfd\xf5\xc1\xd4\xbd\x97\x66\xee\x34\x22\xba\x85\x3b\xec\xca\xea\x5b\x1c\x77\x3c\x71\x3c\xca\x8f\x1d\x08\x00\xc1\x35\x3e\xca\xe8\x1c\xe1\x30\xcd\xf0\x42\x7f\x96\x5c\xdd\x18\xa5\x67\x56\x27\xc9\xf4\xb8\x9b\x1d\x8c\x3a\xd9\x64\x8e\xb9\xa2\xe2\xcb\x55\x3c\x67\x00\x80\x9d\x4e\x07\xae\x5e\xbd\x4a\x0f\x1e\x3c\xc0\xc3\xc3\x43\x9f\xab\x56\xbf\xdc\x88\xd1\xe4\xa1\x25\xb3\xe5\x78\xcd\x79\x25\x96\x1f\xad\x67\x50\xe2\x2d\x65\x97\xc3\x2e\x78\x5c\xb4\x84\x4d\x1d\xbf\xad\xb5\xa8\x09\xa9\x12\x06\x11\xf1\x0b\x5f\xf8\x02\xf4\xfb\x7d\x2a\x1a\x96\xef\xa1\xcf\x3d\x2d\x95\x2b\x2f\x05\x80\xce\x38\xa5\xec\xdc\x51\xf7\xfc\xfa\x38\xd9\x4a\x33\xec\x79\xc5\x21\x9f\xaa\x29\x4e\xd0\xf5\x59\x12\x56\x4a\x03\xf8\xfb\x8c\x3c\x4c\x75\xbf\x11\x32\x22\xbd\x02\xc3\x15\x12\x2e\x01\xfc\xbb\xc7\x97\x6b\xd3\x54\x2a\x29\x20\xf1\x21\xc7\x0b\x50\x5e\xe4\x28\x38\x1b\x01\xd3\x84\xb0\x8b\x00\xa3\xe3\x6e\x76\x67\x67\x30\xdb\x85\xea\xe6\x68\xff\x47\xc5\xb4\x11\x9d\x3b\x77\x0e\x67\xb3\x19\xdd\xbd\x7b\x37\x46\xab\xd6\xde\xb5\x38\xc9\x44\x12\x5e\x76\x04\x4d\x68\x49\xfc\x9a\x25\x64\xd1\x1c\x2a\x83\x36\xe0\x48\x6b\xdb\xea\x84\x16\xde\x98\xc1\x59\xab\x07\x9e\x87\x2c\x9b\x85\x37\x14\x42\xb4\xc9\xb2\x58\xd6\xa7\x26\xc0\x35\xab\xcb\x12\x66\xa1\xc1\x55\x2b\x97\x36\x6d\xc0\xd3\x5a\x38\xb8\x70\x8a\x55\x84\x62\xda\x49\xe2\xb4\x78\x33\xa4\x64\xfb\xd0\xa4\xb0\xc4\xf4\x99\x26\x25\x9a\xc3\x68\xca\x42\x93\xec\x0d\xf5\x67\x5e\xcf\xd6\x00\x22\x69\x97\xe2\x4b\x96\x45\x1b\x20\x79\x3d\x6b\xb4\x4a\xfe\xf3\x69\xb5\x81\x90\x97\x01\x60\x71\xfd\x9a\xcc\xa7\x91\xa6\x5e\xaf\x87\xaf\xbc\xf2\x4a\xa9\xb4\xb0\xb1\xc4\x2b\x2f\x5d\x00\xe8\xa4\x73\x1c\x9e\x3f\xe8\xbe\xf0\xda\x83\x95\x5f\x7e\xe9\xe9\xe0\x7f\xae\x8f\xd2\x6f\x75\xe6\xee\xaa\x43\x4c\x4b\xa3\x98\xcb\x71\x82\xfc\x2a\x19\x21\xc3\x6b\xb7\xca\x88\x81\x85\x9f\x91\xea\x97\x45\x38\xc2\x95\xee\x1c\x2f\xaf\x4c\x92\x0b\xeb\xa3\x74\x74\xd8\xcb\xf6\x46\x9d\xf9\x78\xee\x20\x2b\x0c\x65\xd9\x86\xe8\x9c\x83\x57\x5e\x79\x85\x7e\xf4\xa3\x1f\x41\x96\x65\x5a\x3f\x0a\x29\x2b\x3c\x34\x8d\xe9\xb2\xbe\x63\xe4\xa9\x7f\x0e\xf1\x04\x7f\x8e\x91\x0b\x04\x50\x2d\xce\xb5\x12\xf2\x4e\xd4\x34\x4d\x60\x59\x34\x12\xbf\xd9\xd9\x88\x88\x7e\xfa\xd3\x9f\xd2\xdb\x6f\xbf\x8d\xce\x39\x2c\x0e\xe4\x41\x00\x70\x7e\xbd\x0b\xe6\xf7\xf7\xe4\xda\x31\x42\x67\x9a\x92\x5b\x1d\x27\x83\xd3\x27\x9d\xed\xde\xcc\xad\x22\xa0\xab\x7a\x5a\xc5\x45\xf9\xfa\x17\x4f\x34\xbf\x19\x9a\xf7\xcb\x82\xc1\x00\xaa\x05\xb6\x05\x83\x02\xc9\xb3\x5d\x7c\xf1\xb1\xb6\x20\x98\x3c\x4e\x04\x40\xaa\x2b\x43\x85\x53\xa7\x72\x1d\x12\xe4\x0a\x8e\xcf\x87\xe5\x81\x00\xe0\x08\x3a\x09\x21\x4e\x1d\x3d\x7d\xb8\x3e\xb9\x5d\x9c\xa6\x4b\x00\x30\xa7\x5c\xa3\xf3\x07\xd4\x01\x00\xd0\xa3\x47\x8f\xe8\xfe\xfd\xfb\x90\x65\x59\x1b\x46\x95\xed\xa3\x05\xa9\xf9\x5a\x02\xbb\x69\xa0\xd1\xbe\x6b\x78\x42\xc2\x48\x4b\xcf\x79\xd4\x2a\x83\x4c\xaf\x0d\x4c\x1a\x0d\x31\x65\x8c\xc9\x4f\xe2\xf5\x41\xeb\x2f\xa1\xfa\x90\x03\x19\x44\xc6\x69\xf5\x23\xcb\x63\x59\xf7\x32\x68\x03\x92\xc6\x73\x20\xe0\xb4\x34\xd6\x60\xc8\xbd\x04\xa1\xf6\xe0\xcf\x9a\x95\x86\x4a\x5c\x88\x27\xb5\xf6\x91\x16\x7e\x93\xa2\xeb\x7b\x78\xec\x02\x79\x9e\x8f\xff\xae\xf1\x8a\x55\x0f\x12\x27\xa7\x81\xb7\x4b\x48\xe9\xb6\xea\x84\xf3\x4d\x93\x02\xc2\x69\xd4\xea\x4c\xf2\x9f\xec\xe7\x16\x9f\x4b\x9e\xe4\xf0\xda\xb8\xe4\x61\x7c\x3c\x26\x49\x82\x6f\xbe\xf9\xa6\x9f\x1e\x02\x80\xf2\x4a\x19\x7f\x88\x5c\x0a\x00\x3d\x97\xc1\x60\x7b\xbf\x77\xee\xcd\xfb\x2b\x5f\xbf\xba\xd3\xff\x9f\x2b\x93\xe4\x7d\x47\xb0\xc1\x65\xbf\x5f\x12\x50\x9e\xd0\x8e\x55\x65\xf0\x21\xa2\xbe\x61\x94\x31\x7d\xb1\x89\xa3\x54\x6a\x98\xcc\x47\xc0\xb4\x93\xb9\xed\xe1\x34\xb9\xb0\x31\x4a\xa7\xc7\xbd\x6c\xe7\xa8\x3b\x1f\xcd\xf3\x7b\x6c\x32\xc8\x8d\x79\xbf\x5c\xc0\xa3\x84\xff\xf8\x8f\xff\xa0\xe9\x74\x1a\xea\x53\xb2\x8e\xad\x60\xc9\xa6\x18\xd9\xa2\xe1\x90\xed\x17\x03\xef\xab\x43\x6b\x77\x02\xd0\x77\x15\x49\xe0\x58\x61\x2d\x0b\x63\x75\x38\x2d\x4d\x2d\x7c\xf1\x8b\x5f\xc4\x34\x4d\xa9\xd0\x88\xcb\x4e\x58\xcc\x41\x22\x54\x6e\xbd\x04\xf2\xb5\x2e\x70\xee\xb0\x73\x61\x75\x9c\x9e\x49\x08\xbb\x1e\x0f\xe7\x1b\x2e\x29\xd9\xd1\x73\x55\xcb\x7b\x62\x10\xaa\x1d\x47\xc8\xf0\x30\xe6\xaa\x42\xce\x8d\xe5\x82\x5d\xf4\x5e\x14\xff\x79\x31\x8d\x64\xe6\x3c\x3d\xd4\xf0\x54\x9f\x31\x71\x04\xbd\x84\x70\x3e\x4f\xe8\xf6\xc3\xb5\xe9\x0e\xe4\xdb\xe5\xe6\x7e\x9d\x0b\xe5\x0b\x74\xbc\xd7\x85\x86\xc3\x21\x7c\xfe\xf9\xe7\xda\xe0\x13\x62\x58\xcd\x7a\xb1\x06\xf6\x90\x75\xad\x59\x99\x31\x5b\xea\xb4\x34\xa1\xb4\x9a\xa7\x60\x99\x7c\x38\x0b\xc8\xf8\x18\x2f\x40\x93\x10\xd0\xe0\x2c\xcb\xc5\xb2\xce\x6b\x02\x58\xa4\xb7\x16\xc7\xc9\xb6\xe4\xdf\x00\x9a\xdb\xd9\x52\x1a\xac\xb2\x84\x14\x17\x4b\xf9\x0c\xc1\x78\x3c\x7c\xc0\x6c\x6a\x5f\x8f\x33\x34\xf0\x59\x79\x87\xf8\x55\xcb\x5f\xd6\x85\xc6\x8b\x21\x85\xc8\x92\x85\x4d\xb4\x48\xda\x35\xdc\x1e\x46\xca\x6d\x39\xa0\x85\xea\xc4\xca\x8f\x0f\x8c\x4d\x83\x9f\x36\x68\xca\x20\x07\x5a\x8b\x87\x38\x4e\x4d\x91\xb1\x68\x28\xf1\xbd\xf7\xde\x7b\xf0\xde\x7b\xef\x95\x4a\x4b\xf1\xe7\xbd\x2d\x1d\x00\xe8\x03\x40\xff\xca\x4e\xef\xdc\xf5\xfb\xab\xdf\xbc\xbc\xd7\xff\xbf\x87\xd3\xe4\x5d\x97\xe1\x50\xca\x65\x3f\x86\x94\xca\x08\x1b\x44\xea\x46\x69\x3d\x51\xae\xb4\x54\xc6\xf2\xe2\x92\x81\x0a\x3c\xcd\x70\x6b\x30\x75\x17\x57\xc7\xc9\x78\x7f\x30\x7f\x7c\xd8\x9b\x1d\x51\x6e\xdc\xd6\xa6\x8e\xfc\xdf\x5b\x6f\xbd\x85\x9f\x7e\xfa\x29\x89\x93\xd4\x43\xe3\x3a\x0f\x16\x6f\x6a\x7d\xb4\x29\xce\x0a\x52\x66\x85\x1c\x1c\xa0\xfc\x72\x1c\xe6\x1a\x17\xad\x63\xb7\x11\xda\x5a\xbc\x45\xec\x02\xbe\x7f\xff\xf7\x7f\xc7\x6b\xd7\xae\x41\xbf\xdf\x07\x60\x42\xd4\x2f\xd8\x2d\x7e\xcb\xe9\xa2\x93\x4e\x96\xad\x8f\xd3\xd5\xcd\x93\xf4\x42\x77\xee\x86\x0e\xd0\xd5\x5d\x73\x75\x4f\x46\xf5\x5b\x9f\xa6\xe1\x92\x1a\x05\x47\x72\x7d\xa4\x56\xa8\xc2\xb3\x92\xc3\x60\x0d\x48\xf2\x6e\x19\x47\xc5\x13\x5f\xf3\x52\x78\x5c\x00\xea\x0a\x8c\x23\xe8\xa6\x19\xf6\x13\xc2\xf1\x6e\x7f\x7e\xeb\xa8\x37\x1f\x41\x75\x05\x40\xc6\xbd\x2e\x88\x08\x67\xce\x9c\xa1\xb3\x67\xcf\xe2\x8d\x1b\x37\x34\x01\x6c\x85\x10\xb3\xc8\x77\xeb\xd9\xbf\x87\xbe\x5b\x79\x6b\x69\x9a\xe8\x7d\x1e\xf9\x58\x9d\x23\x54\xde\x18\x61\x2f\x83\xe6\xf9\x0a\x0d\x2a\x72\x90\x94\x83\xb0\x4c\x1f\x32\x0a\xac\x41\x4c\xe2\x08\xa5\x69\x6a\x7f\x5f\x2f\x9a\x02\x19\x63\xe5\x6b\x0a\x92\x96\x4f\x48\xc1\xd3\xca\xa1\xe5\x11\x82\xe5\x74\x34\x79\x91\x78\x7c\x0c\x2f\x5a\x30\x31\x65\x5e\xa6\xbc\xa1\xa0\x95\x2b\x26\x5d\x1b\x78\x8d\xe7\x65\xba\x67\x89\xd7\x78\xc6\xa4\xe5\xe2\xc5\x8b\x70\xe1\xc2\x05\x2c\xe0\xfd\xee\xa1\x0e\xe4\x4a\x4b\x17\x00\x06\xa7\x0f\xd3\xcd\xb7\xef\xad\x7e\xeb\xf2\x6e\xef\x77\x06\xd3\xe4\x3a\x12\xf4\x17\xbc\xec\xc4\x86\x15\x2f\xee\x99\x01\x5a\x93\xf9\xfc\x9d\x79\x66\x00\x14\xcf\x8c\x62\x65\x3b\x82\x8d\xfe\x2c\x39\xb7\x32\x4e\xc6\x87\xbd\xf9\xe3\xfd\xc1\xfc\xd0\x4f\x17\x15\x5e\x17\xf0\x9e\x77\x00\x80\x37\xde\x78\x83\xee\xdc\xb9\x83\x47\x47\x47\xbc\xae\xa4\x01\xa3\xf1\xb2\xd6\x56\x72\xdc\xd7\xda\x5d\xab\xf7\x50\x1f\x6d\xea\xd3\xd1\xb2\xc2\xba\x1d\x3a\x24\x9c\x2c\xe6\x0a\x59\x69\x3e\x84\x2c\xfb\x9a\xf0\xbb\x7e\xfd\x3a\xf6\xfb\x7d\xae\x67\xf8\x3f\x57\x4c\x15\xf9\xbb\x1e\x52\x40\xe8\x22\x41\x72\xe6\xa8\x73\x7e\x65\x92\x9c\x4e\x08\x3b\xc8\xaa\x80\xa0\xae\x0c\x54\xcc\xc5\xb9\xa7\x5e\x62\xee\x65\x91\x61\x61\x6a\x07\x8b\xfb\xa8\x05\x38\x4a\x78\xa8\x76\x3c\x79\x9a\x16\xce\x9a\x61\x0a\x56\x41\x3e\x3a\xc2\x5e\x9a\x61\x0a\x00\x8f\x6f\x9f\x1a\xdf\x81\x7c\xad\x0b\x11\xd1\xbc\x58\x6d\x0e\x5c\x79\xd9\xdb\xdb\xa3\x1b\x37\x6e\xc4\x0e\xaa\xb1\x21\xd6\xbb\xf0\xdf\x3d\xc4\x0a\x4b\x99\xe6\x59\x60\xdb\xb8\x77\xff\x4f\x85\x36\xc2\xcd\x07\xe9\xe1\xe1\x71\x96\x32\x66\x29\x14\x56\x1d\x59\x5e\xb5\x26\x45\x24\x46\xd1\xd0\x04\xed\xf3\xe6\x8d\x18\x05\xca\x82\xb7\x68\xd1\x2c\xf2\x18\xdc\x6d\xe0\x2d\x65\x33\x46\x81\x8c\x19\xcc\xa2\x79\xe0\xfd\xf7\xdf\xc7\x37\xde\x78\xa3\xbc\x77\x08\x0a\x8f\x3d\x11\x75\x10\xb1\x4b\x44\xfd\x34\xc3\xc1\x3b\xf7\x56\xdf\xbb\xba\x33\xf8\x1f\x2b\x93\xf4\xba\x23\x58\x91\x0b\x70\x7d\x6e\xb9\xac\x16\x46\x29\x56\x3f\xf5\x2b\x63\x68\xf1\xd2\x5f\xad\x24\xc2\x53\x93\x17\x02\x31\x21\x58\xeb\xce\xdd\x5a\x9a\xe1\xc1\x71\x37\x7b\x72\xd8\x9b\x9f\xf8\x32\x22\xa2\x57\x5a\x08\x20\x5f\xb8\x7b\xf5\xea\x55\xda\xd9\xd9\x81\xfd\xfd\x7d\x39\xae\xca\xf5\x4d\x92\x7a\x59\x87\x3c\x9d\xa4\x16\x04\xac\x6c\x2f\x0e\xd7\xa4\x88\xf0\x36\x8e\xe1\x27\x04\x00\x72\x0a\x40\xc8\xfd\x66\x7d\xcb\xc4\x9f\x8f\xe3\xf8\x9d\xf8\x16\x9b\x47\x89\x97\x88\x32\x22\x9a\x21\x62\x79\x77\x51\xf1\x37\x7a\xb4\x3a\x7d\xf0\x68\x75\x7a\x6b\xd4\xc9\xf6\x09\x28\xc7\xe1\xb5\x5c\x76\xf6\x8a\x8f\xae\x49\x27\xa9\x70\x08\xaf\x89\x0c\xda\xd4\x8e\x57\x64\x64\x1a\xcf\xe4\x79\x36\x8b\xda\x7b\xa9\x9d\x30\xda\xea\xcf\x08\x8e\xa0\xbf\x32\x49\x5e\xba\xb8\xdf\xfb\xda\xb5\x47\xc3\x2b\x90\xbb\x35\xd3\xa2\xd3\xa5\x50\x58\x10\x44\x04\x44\x04\xe7\xcf\x9f\x87\x5f\xf9\x95\x5f\xf1\xee\x50\x80\xca\x35\xca\xe3\x64\x70\xe2\x57\x06\x39\xed\x24\xf1\x37\xe1\xb3\xe0\x9b\xe2\x65\x5c\xe8\x59\xa3\xcb\xa2\x31\x44\x83\x45\x8f\x0f\x92\xb7\x25\x0d\x1a\x5e\x09\xab\xa5\xd7\xf2\x0e\x95\xd9\xa2\x5b\xcb\xcf\xa2\x35\x54\x3f\x31\x70\x1a\x5d\xbc\x7e\x2c\x9a\x78\x90\xb2\x03\x60\x91\xdf\xac\x74\x5a\x68\x23\xd7\x62\xe8\xb3\x82\x5c\x14\x2e\xf3\xb1\xda\x6e\x99\x3c\x96\xc1\x1d\x33\xbd\xa6\x85\x98\x3e\xd7\x94\xd6\xff\x6a\xf2\xbc\x29\xc4\x96\xd9\x1a\x5f\x6a\xb0\xbd\x5e\x0f\xba\xdd\xae\xf7\xb2\x94\x1e\xfb\xe2\xb7\x8b\x88\xfd\x57\x1f\x0d\xaf\x5d\xde\xed\xff\xea\xea\x38\x79\x23\x21\x58\xc5\xe2\x10\x2e\x7f\x5b\x0c\x31\xa1\x5e\x1b\x1f\x98\x0c\x2f\x6f\x96\x21\x36\x2e\x00\x02\x29\x4a\x0b\xc7\xb7\xa0\xd6\x01\xb3\xd4\x09\xbb\x83\xa9\x7b\x65\x7b\xaf\xf7\xe1\xa5\xdd\xde\xf5\x95\xb1\x5b\x87\xdc\x43\xc4\xaf\x1f\x70\x90\x8f\x01\x30\x18\x0c\x5c\x9a\xf2\x2b\x08\x17\xfa\xe3\x42\xfd\x04\x42\x68\xb1\x34\xff\x2e\xdb\x2b\x86\x4f\x9b\xa6\x11\x83\x3c\x1d\xda\x0e\xed\xb5\x28\xa9\xf1\xca\x78\x27\x9e\x2d\x4b\x45\xd3\xd4\x34\x8b\x0a\x00\x00\x76\x76\x76\x70\x6b\x6b\x8b\x06\x83\x41\xe5\x5d\x63\x8b\x75\xa1\xde\x70\xc9\x1c\x21\xed\xcd\x5d\xf7\xd4\x49\xfa\xc2\xca\x24\xd9\x4c\xb2\x7c\x05\x38\x00\xd4\xe6\x10\x4b\x64\xc4\x76\x01\x79\x18\xce\x60\x58\xf7\xac\xf8\xc4\x08\x50\x9e\xef\xe2\x3d\x33\xe5\xee\x25\xbe\xd0\x16\xf8\x8e\xa6\x2a\x8f\x9a\x93\x07\xb1\x5a\xa8\x05\x20\x56\x9a\xd7\x15\x9e\xe2\x44\xdd\x7e\x9a\xe1\xc1\xa3\xd5\xe9\xe7\x93\x34\x9b\x8a\xb3\x5d\xca\x29\xa3\x34\x4d\x61\x75\x75\x95\x36\x37\x37\xe1\xf3\xcf\x3f\x47\x80\x72\x2b\x67\x68\x3e\x92\xeb\x4c\x52\xfb\xd6\xda\x95\xb7\x5f\x8c\x45\xe4\xf3\x97\xf0\x12\x8f\x13\xf0\x31\xfc\xc4\xd3\x4b\x7c\x16\x8d\x52\x74\x68\x6b\xba\x42\xfc\x6b\x59\x22\x56\xd9\x24\xac\x46\x8f\x96\xb7\x55\x3f\xa1\xb2\x6a\xf9\x39\x68\xc6\x6d\xd1\x68\xb5\x1d\x28\x71\xd2\x52\x0b\x59\x5c\xe6\xae\x81\x06\xfc\x5a\x88\xe1\x93\x36\xb0\xaa\xf5\x6e\xc0\xc4\x78\x11\x62\x3c\x21\x3c\x70\x18\x0d\x5e\xc3\xed\x94\xf7\x26\xba\x9a\x68\xb5\xea\x27\x54\x66\xc7\x9e\x3d\x6c\x53\xf9\x43\x63\x87\x95\x3f\x80\xcd\x67\x04\x00\xf0\xee\xbb\xef\xba\x97\x5e\x7a\x09\xba\xdd\xae\xf7\xb4\x38\xa8\x4e\xc4\xed\x22\x62\xff\xdc\x41\xe7\xec\x9b\xf7\x57\xbf\x75\xee\xb0\xfb\xcd\xee\xdc\x5d\x70\x50\x8d\x1d\xc8\x7f\x99\xfc\xf6\x8f\x7c\x9a\x87\x9f\xd7\xe2\x01\x84\xc8\xaf\x91\x57\x9b\x05\x28\xc7\x96\xfa\x38\x54\xa0\xef\x26\x84\x3d\x47\x30\x3a\xee\x66\x0f\x76\x56\x66\x7b\x50\x2c\x13\xe0\x0b\x75\x0b\x7c\xb4\xbe\xbe\x4e\x47\x47\x47\x58\x78\x5d\xa4\x1c\xd6\xea\x92\xb7\x4b\xd3\xba\xc8\xd0\xf8\xb1\x4c\xdf\x6d\xea\xcf\x92\x06\x07\xa0\x7b\x5c\x78\x08\x69\x4f\x5c\x8b\xd3\xbc\x2c\x21\x0b\x30\x14\x1c\x00\xc0\xdd\xbb\x77\xb3\xf1\x78\x2c\xe9\xe0\x7f\x75\xaf\x0b\xc2\xe8\xc1\xda\xe4\xde\xa3\x95\xe9\xad\x93\x4e\xb6\x9f\xa1\xa8\x2f\xac\x8f\xca\x24\x17\xc2\xa2\xff\x52\xc1\x94\x73\x96\x58\xbf\x64\xb1\x54\x48\x10\xca\xdd\x47\xfc\x22\x47\x0f\x43\x24\xda\x04\x99\x26\x5d\xed\xe3\xaf\x3c\x43\x00\x95\x26\x5e\xe4\xed\xbd\x28\x08\x90\xf6\x66\xee\xfc\xb9\x83\xce\x07\x5f\x78\xd2\xbf\x96\xdf\x87\x81\x29\xe4\x16\x43\xa9\x79\xfb\x75\x40\xbd\x5e\xcf\x5d\xbc\x78\xd1\xd7\x5d\x4c\xd0\xac\x5e\xfe\xad\x8d\x05\x2d\xd3\xb6\xa5\xa3\x0d\xfc\xf3\x08\x6d\xf3\x6a\x63\x21\x3c\x8b\x45\xdf\x94\x77\x1b\xdc\x6d\xcb\x68\x79\x11\x9e\x17\xbc\xb4\xd2\x42\x65\x69\x63\xe9\x2f\x93\x76\xd9\xb0\x6c\x5b\xb4\xc5\xdd\x54\x9f\x7c\x31\xfb\xf3\xf0\x2c\x85\xf2\x6b\xe3\x41\x0b\xbd\x4b\x5c\x31\x75\x29\xe1\x1b\xe9\xdc\xda\xda\x82\xd5\xd5\x55\x07\x50\x9c\xf1\xc5\x0c\x5e\x44\xec\x02\x40\xf7\xca\x4e\xff\xc5\x33\x47\x9d\xf7\x7a\x33\xb7\x8d\x50\x6d\xee\x00\xc8\xe5\x71\x29\xc5\x85\x42\x51\xc2\x68\xb9\x7b\xaf\xbc\x84\xf3\xc3\x84\x98\x05\xf0\xcf\xfa\xea\x04\x84\xce\x1c\xcf\x9d\x39\xee\x7c\xf1\xd2\x5e\xef\xfa\xa9\xe3\x74\xd3\xd3\xce\xb6\x73\x97\x75\xb3\xb5\xb5\xe5\xd6\xd6\xd6\x24\x92\xb6\x7d\xd2\xf2\x84\x3c\xef\xd0\xd4\xd6\x52\x36\xd4\x3c\x2e\x9a\x56\x63\xad\x02\x97\x2b\xfd\x2d\x8d\x4c\x5a\x80\xdc\x53\xe3\x89\xd1\xb4\xee\x32\xdf\x2c\xcb\x70\x63\x63\xa3\xf4\xba\xf8\x33\x5d\xd8\xd9\x2e\xfe\x0a\x80\x14\x11\x93\x99\x23\xec\xcd\x5d\x7f\xe3\x24\x3d\xb3\x32\x4d\x36\x1c\x61\x9a\x13\x8d\x0b\x4c\x87\x44\xf9\xde\xfb\x1a\xe1\x58\x7e\x2f\xe1\x44\xc1\x90\x01\x30\x57\x50\xed\x4c\x18\x60\xf1\x04\x04\xf9\xd6\xb7\xfa\x37\x8e\x10\xf9\xb3\xf0\xd6\x78\x4f\x4e\xf1\xde\x49\x33\x5c\x4b\xc8\xed\xed\x0e\x67\x77\x8e\x3b\xd9\x09\x39\x98\xfa\xb3\x5c\xf2\x2a\x2a\x17\x6d\x65\x88\x48\x49\x92\xe0\xbd\x7b\xf7\xb4\xb6\xf0\x6d\x68\x59\x42\xd2\x22\xe6\x96\x8d\x65\xc9\x59\xde\xb7\x90\x85\x25\x69\x08\x05\x0d\x67\x28\x1f\xeb\xbd\xa9\xdc\xfc\x59\x96\xa7\x91\x6f\x05\x8c\xf4\x4e\xb6\xb1\x3a\x2d\x1a\x78\x9e\x56\x9d\x58\x56\x77\xe8\xdd\xf2\x7c\x84\xea\x51\x5a\xd8\xb1\xf8\x9b\xca\xc2\x83\xc5\x1b\x56\x3d\x6b\x69\x63\xbc\x1c\x3c\xc4\xf0\x07\xcf\xa3\x09\xd6\xb2\x6a\x79\x68\xa2\xb1\xa9\xfe\xfc\xb3\xa4\x09\x20\xdc\x7e\x6d\x42\x0c\x7f\x68\x41\xcb\xd3\xc2\x61\xc5\x37\xc9\x89\x1a\x8e\xd7\x5f\x7f\xdd\x5d\xbd\x7a\x15\x8a\xb5\x92\xd5\x9a\xc8\xe2\xbc\x16\x20\xe8\xaf\x4e\x92\xcd\xb7\xee\xad\xfc\xca\x99\xe3\xee\x87\x9d\x0c\x4f\x23\x55\xe7\x4b\xf8\x25\x87\x35\xa9\x4d\x6c\x1c\x60\x44\xd5\xac\x62\x36\x80\x78\x65\x05\x11\x8a\xf3\x5e\x58\x21\x88\x7b\xd5\x19\x4e\xaa\xd2\xfa\x13\xd8\x81\x30\x71\x04\x1d\x40\x1c\x1d\x75\xe7\xb7\x1f\xad\x4c\x9e\x16\xde\xf6\x59\x91\xa2\x5c\xb0\x0b\x90\x9f\xae\x7e\x7c\x7c\x8c\x07\x07\x07\x56\xbf\x68\x92\x85\x31\xf2\x8a\x87\x58\x79\x1a\xca\xc7\x6a\xeb\x05\xdc\xd6\x25\x8b\xd6\xa0\xc4\x85\x8b\x35\xe8\x58\xc2\x93\x4f\x57\xf0\x3c\x2c\x86\x85\xa7\x4f\x9f\xe2\xf6\xf6\x36\x9c\x3a\x75\xaa\x6c\x57\xb6\xb3\xc8\xbb\xfe\xca\x13\x0f\x09\x21\xcd\x90\x68\x75\x9c\x6e\x6e\x8c\xd3\xb3\x9d\x39\xae\x38\x10\x0a\x05\xf7\xa2\x08\x0e\x2c\x33\x61\x0c\x05\x00\xe5\x22\x5c\x14\xef\x8b\x6e\xbd\xea\xd0\x39\xef\x3a\xc1\x82\xf3\x17\x6e\xa6\x66\x3b\x9d\xc8\x67\x5e\xd2\xc0\x70\x0b\xfc\x8e\xa0\xdf\xc9\x5c\x6f\x8e\x70\x6f\x77\x38\x7b\x32\x49\xb2\x31\xb8\xf2\xfe\x22\xbf\x58\x2b\x43\x44\x70\xce\xc1\xf9\xf3\xe7\x69\x34\x1a\xe1\x93\x27\x4f\x90\x2a\x17\x10\xff\xb5\x84\x1b\x7f\x0e\xb9\x19\x41\xc4\xc7\x0a\x6a\xce\x17\x16\xbf\x85\xf8\x92\xe7\xc3\x79\xd2\x82\x97\x69\x62\xca\xad\x95\x27\x66\x60\x6d\xc2\x11\xc2\x23\xcb\xdd\x94\x5e\x8b\xd3\xfa\x59\x2c\xad\x5a\x08\xd5\x63\x88\x46\x4f\x8b\x26\x80\x34\xfe\xb2\x84\x64\x48\x19\xf0\xef\xbc\xcc\x3c\xb8\x86\x6f\x31\x83\xa4\x46\x6b\x8c\xc2\x17\xdb\xc6\x1a\x7c\xd3\x40\xaf\xd5\x2b\xb7\x52\x25\x5d\xfc\x9d\xd7\x77\x93\x01\x10\x1a\xb0\xac\x7e\x67\xf5\x5d\x4d\xc1\xf7\xb4\xf0\x32\x58\x75\x6f\xe5\x23\xcb\x05\x00\x00\x5f\xff\xfa\xd7\xf1\xcc\x99\x33\x8e\xe1\xf4\xbb\x88\x52\x22\xea\x27\x84\xc3\x2b\xbb\xfd\xcb\xd7\x1e\x0f\x7f\x73\x65\x92\xbc\x8a\x80\xdd\x72\x7f\x44\xa1\x68\x94\xe3\x05\x00\x94\x8b\x6e\x19\x4c\xe9\x75\x07\xa1\x98\x94\x67\x7b\xb1\x29\x21\xa6\xb4\x60\x19\x2f\x06\x21\xa8\x5e\xa5\x91\x8c\x08\x29\x12\xcc\xc7\x1d\x7a\xfc\x78\x75\xfa\x8b\x69\x42\xd3\xa2\x3e\x67\x00\x00\x5e\xf6\x13\x11\xad\xaf\xaf\xe3\xe1\xe1\x21\xdd\xbb\x77\x0f\xa0\x3e\x6e\xcb\xba\x92\x7d\xc3\xaa\x4f\x8b\x07\x40\xf9\x6e\xf1\xa9\x25\xab\x63\xfb\x5c\xf9\xec\x1b\xd5\x33\x3c\x7f\x06\xf1\xec\xdf\xb5\x29\x22\x1e\xb8\xab\xbf\xc9\xf5\xa4\xe1\xaf\x85\x87\x0f\x1f\xc2\xfe\xfe\x7e\x79\xb1\x20\x54\x57\x7f\xcf\x88\x68\x46\x44\x33\x28\xa6\x8b\x88\x68\xb4\xdf\x9b\xed\xde\x5f\x9b\xdc\xda\xeb\xcf\xee\x67\x0e\x26\xa5\x92\x81\x04\xf9\x3f\xd6\x6b\x91\x6a\xd3\x39\xe4\xeb\x86\x55\x13\x41\xe5\xd6\xf3\xa1\x9c\xe6\x59\x70\xa0\x50\xa9\xfc\x78\x2f\x8c\x47\x57\x22\x63\xdf\x4b\x7c\xec\xaf\xca\x43\xd6\x44\x15\x06\x53\x77\xed\xf2\x6e\xef\xab\xdb\x7b\xdd\x4b\xfd\x99\x5b\x05\x82\x2e\x14\x0b\xb6\xfc\x62\x5d\xff\xe7\x9c\x73\x5f\xfb\xda\xd7\xf8\x82\x2d\xa7\xfc\x6a\x6d\x2e\x7f\x41\x81\xe1\xef\x1a\x3c\xe7\x17\xed\x4f\x5b\xc0\x6d\xe5\x25\xe9\xd4\x82\x45\x43\x13\x8d\x56\x5a\x0d\xbf\x05\x17\xc2\x69\xa5\xd7\xf2\x96\x96\xb3\x45\x4f\xa8\xef\xca\x3a\xb7\xe8\x8a\xa9\x13\x2d\x1f\x8d\x16\x0b\x6f\x9b\x29\x0f\x0e\xe7\xc4\xbb\x85\xa3\x69\x6a\x24\x34\xa5\x10\x9a\xa2\x8a\x99\x9e\xb1\xf2\x6d\xe2\xa1\x26\x39\x28\xf3\xb1\xe4\xb0\xa4\xa5\x69\xfa\x44\x4e\xc3\x3a\x25\x4e\x3e\x87\x82\xc5\xab\xd6\x92\x81\x50\xdb\x85\xf2\x0f\xc9\x16\xed\xdd\x5d\xbe\x7c\xd9\xf5\x7a\x3d\x89\xc3\x11\x91\x03\x80\x2e\x02\x76\xbb\x73\x37\xbc\xb8\xdb\x7b\x69\x38\x71\xaf\x38\x82\x72\x0b\x6b\xae\x58\x40\x39\x0e\x60\x29\xb7\x0b\x2d\x86\xd8\xe0\xe0\x61\x0b\xf8\x12\xb6\x34\x6c\xeb\x06\x2b\x15\x0f\xe5\xa8\x53\x2e\x02\x66\xe3\x34\x31\x18\xff\x8c\x00\x48\xd8\xed\xcf\xdc\xf6\x99\xa3\xce\xeb\xe7\xf7\x7b\xe7\x89\x88\x2f\xd2\xf5\x65\xf3\x0b\x90\x65\x5d\x86\x7e\x2d\x99\xdd\x66\xca\x30\xb6\x1f\x2d\x33\xbd\xba\xc0\x1b\x09\xd4\x35\x6f\xef\x15\x91\xda\xb1\x7f\xe6\xf1\x5e\x8b\x05\xa8\x6b\x44\x5a\xd0\xb4\x72\x2d\x7e\xc1\x5a\x7b\xf0\xe0\x41\xb6\xb1\xb1\x81\xe7\xce\x9d\xf3\x79\x39\xcc\xf7\x00\xbb\x42\x39\xf0\x97\x2f\xa6\x88\x98\x12\x42\x4a\x48\xb4\x32\x4d\x37\x36\x4e\xd2\xad\x6e\x86\x43\xbf\xf8\x95\x7b\x4d\xbc\x67\xa3\xae\x40\x48\xcd\x97\xa0\x5c\xab\x82\x50\x3e\x2f\xec\xed\x37\xd2\x97\xbc\x4f\x50\x4d\x01\xf1\xcd\xfe\x8a\xb2\x5d\xbb\x2e\x80\xbc\x02\x53\x01\x22\x20\x38\xc0\xb4\x33\xc7\x75\x24\xdc\x3b\xe8\xcf\x1f\x1d\x77\xb3\x63\x72\xe0\xb5\x6f\x2a\xb6\x48\x7b\xb7\x61\x86\x88\xd9\xdd\xbb\x77\xe1\xe8\xe8\x08\x89\x48\x32\xa5\xd5\x06\x9a\x35\x2d\x61\x40\x81\xd1\xb4\x66\x32\xfe\x64\xe7\xd0\xb4\xec\x10\x1d\x12\x56\xa6\xb1\xca\xd1\x54\x5e\x07\x7a\x5e\x16\x0e\xfe\xce\xcb\xa4\x79\xaa\x42\xf4\x84\xe8\xb2\x68\xb1\xea\x47\x7e\xd7\x70\xca\x76\xb0\xac\xb1\x50\xb9\x43\x78\x43\x81\xd7\x31\x29\x71\x96\x4c\x71\x01\xf8\x90\x85\x68\xb5\xa9\xe5\x11\xb2\xd2\x69\x2e\x71\xf9\xdd\xf2\x78\x58\x74\xf9\x78\xad\x4e\xf8\x33\xcf\xcf\x2a\x8f\x85\x43\xab\x37\xeb\x7b\x88\x5e\x2d\x68\xfd\x8e\xc7\x71\x7a\xe5\xaf\x56\x3f\x8e\xa5\xb7\x06\x52\xd9\xd6\x35\x9c\xbf\xf5\x5b\xbf\x85\x6b\x6b\x6b\x7e\x00\x4f\xfc\x69\xeb\xc5\xda\x90\x8e\x23\x18\x9e\x3a\x49\xcf\xbc\xf6\x70\xe5\xc3\xcd\x93\xce\x57\x11\xa0\x53\x49\x58\xa8\x9d\x9c\x5e\xb7\x28\xa1\x3a\x0d\xbd\x72\x9f\xd4\xe5\x3a\x00\xd4\x3c\x2d\x04\xd5\xc6\x8b\x02\x27\xf7\xc2\x00\xf8\xf1\x01\xea\xa7\xf1\x52\xfd\x7b\xa1\x14\x21\x01\x8c\x8f\x3b\xd9\x2f\xee\x6d\x4e\xee\x12\xd0\x1c\x11\xfd\xa1\xa4\x19\x40\x75\x0d\xcc\xc1\xc1\x01\xed\xec\xec\x60\x71\x28\x9d\x0f\x4d\x3c\xa9\x79\xe3\xb4\x20\xdb\x92\xe3\xb1\xfa\x28\x0f\x52\xbf\x08\xf1\xe3\x02\x0e\xcd\xaa\x69\x5a\x1c\xa9\x2d\xba\xd2\x16\x5b\x59\xef\xb1\x5a\x96\x45\x83\x9f\x0a\xf1\x9e\x97\x72\x4b\x34\x11\x8d\x00\xe1\x78\xbf\x3f\x7f\x7a\x7f\x6d\x7c\x6b\x77\x30\xbd\x3f\x47\x98\x49\x77\x06\x09\x8d\x39\x7f\x14\x75\x8b\x00\x44\xde\xb3\x52\xed\x0f\xd2\xf6\xf6\xf3\x6d\xd0\xe5\x33\x11\x83\xe4\x72\x11\x4a\xf7\xa3\xd7\x6a\x88\xa8\x48\x0b\xb9\xd2\xe2\xd3\x96\x08\x10\x6a\x0a\x39\x11\x74\xe7\x6e\xfb\xc2\x41\xef\xeb\x2f\xee\xf4\x5f\x5b\x1f\x25\x9b\x48\xd0\x07\xb6\x4d\xae\x58\x0b\x04\x50\x68\xe2\x1f\x7d\xf4\x91\x3b\x7f\xfe\x3c\x24\x49\x12\x6b\xf1\xc5\xb6\x93\x84\x6b\xb3\xa0\xeb\x79\x2d\xfe\xd2\x78\xb6\xc9\xea\x8d\xc1\x17\x1b\x62\xbd\x03\x31\x79\xb7\x0d\x6d\xf1\x69\xf0\x96\x15\xf6\xbc\x17\xe7\x59\xf5\xa4\x59\xea\x31\xe9\x34\x59\x14\x4a\x1b\x8a\x0b\xd1\x64\x05\x4b\xee\x69\xf8\xac\xfc\x39\xdd\x4d\xf4\xc7\xe0\x8b\x89\xd7\x42\x5b\x4b\x38\xa6\x2d\x79\x5c\xec\xf8\xe2\xbf\x35\x79\x06\xb4\xba\xaf\xe1\x2c\x94\x03\xe9\x35\x4c\x89\x28\x4d\x32\xec\x9e\x3a\xee\x9c\x1d\x4e\x92\x17\x73\x6f\x4b\x5d\xef\x2d\xfc\x20\x35\xa2\x6a\xa3\x7b\x4d\xa4\xe3\x22\x84\xd7\x44\x8a\xcf\xc8\xa2\xab\x21\x9a\x58\x12\xac\x9d\xf7\x42\x3c\x13\x66\x6d\x23\x41\xb7\x37\x77\xe7\xd6\xc7\xc9\xd5\xde\x0c\x87\x6c\x63\x86\xf7\xb4\x97\x4a\xd1\xab\xaf\xbe\xea\xde\x7e\xfb\x6d\x10\xa1\x89\x67\xad\xa0\x79\xbd\x2c\x4f\x9f\xf5\x6c\xf5\xc5\xd0\xcc\x8d\x4a\x47\x2c\x83\x5a\x4c\x12\x1a\xb4\xb4\x74\x4d\xae\x4c\x99\xaf\x03\x00\x37\x9f\xcf\x61\x3e\x9f\x67\x85\xb7\xc0\x9f\xe7\xe2\x71\x71\xe5\x65\x02\x00\x93\x99\xa3\xd1\xe3\x95\xe9\x9d\x07\x6b\xd3\x9b\x93\x34\x3b\xf4\xaa\x70\x39\x55\xe4\x17\xcd\x22\x95\x8a\x03\xfa\xef\xa5\xe2\x51\x4d\xd7\x94\x6a\x3d\xd3\x80\x4b\x45\x83\xc4\xb4\x8f\xdf\x26\x8d\x5c\xd9\xf0\x71\x15\xbf\x56\x3a\x09\x96\x9e\x20\xbe\x8b\x49\x28\xef\x15\x2d\x54\xe5\x31\x1c\xbb\xeb\x57\x9f\xf6\x3f\xbc\xb8\xd7\x7b\x69\x30\xb1\xa7\x8c\x8a\x75\x41\xf0\xd1\x47\x1f\xb9\xad\xad\x2d\xde\x1e\xbe\x8e\xa5\x6b\x17\x94\x38\x4d\xe9\x6c\x52\x82\xac\x67\x8d\x06\x19\x1f\xeb\x4e\xb7\xf2\xd0\xdc\xd8\xb1\xee\xcd\xd8\x32\xf0\xbc\x42\x69\x9a\x04\x6e\xa8\x7e\x35\x1c\x16\x2d\x1a\x0d\x21\x63\xc1\xaa\xfb\x26\xbc\xa1\xf7\x10\x9e\x98\x10\x3b\x75\x11\xab\x98\xb6\x11\x8a\x16\x4c\x9b\x41\xda\xa2\xa3\x6d\xfe\x6d\x60\x63\x8c\xcc\xa6\xf8\x18\x05\x89\xc3\x3e\xef\x32\xc4\xf0\x4c\x2b\xe5\x8a\x4f\xbf\x14\x86\x9c\xdf\x79\x99\x3a\xc2\xee\xea\x24\xd9\xec\xce\xdc\xb9\x1c\xd6\x27\x42\x76\x36\x4b\xdd\xf4\xe4\xf2\x58\xb1\x5f\xa1\x66\xaa\xd6\x12\x08\x40\x64\xf0\xc2\x9b\x53\x37\x71\xb1\xdc\x55\x5a\x82\x10\xa6\x9d\x19\x6e\xae\x8d\x93\x4b\x67\x0f\xbb\x9b\x50\x2d\x36\x96\x0a\x5a\x1b\x03\xc0\x0a\x4d\x7d\xa7\xad\x71\xa8\xf5\xe9\xb6\x0a\x73\x16\x03\x18\x43\x98\xa6\x89\x49\x82\x42\x5a\x5e\x48\x0b\xcb\x00\x00\xfe\xe9\x9f\xfe\x09\xfe\xed\xdf\xfe\x8d\xad\x2d\xc1\xcc\x2f\x44\x02\xa6\xb0\x20\xe2\x08\x00\x46\x80\x30\xda\xef\xcf\x9f\xde\x5d\x1f\xdf\xdc\x19\x4e\x6f\x53\x81\x87\x9f\xab\x52\x69\xd8\xf5\x38\xaf\x34\x70\x86\xaa\x69\xcb\xc0\x98\xb8\x40\xc1\xd7\xce\xd4\x13\x54\xbf\x54\xba\x02\xa1\x64\xd0\xfc\xaf\x62\x4a\x8f\x63\x81\xe7\x39\x2d\x0c\x67\x02\xd8\xdd\x3c\x49\x7f\xf9\xda\xe3\xe1\xd7\xce\x1f\x74\x2f\xa5\xf9\xbd\x1a\x5d\x28\xa6\xcd\xd8\x56\x39\x59\xcf\x9a\xa6\x1c\x1a\x30\xa4\x67\x4d\x7e\xb7\xe2\x42\x83\x4f\x8c\xb6\xde\x94\x57\x53\x1e\x56\x3e\x6d\xbd\x8a\x4d\x34\x34\xa5\x89\xa9\xa7\x50\xfd\x36\x7d\x0b\xd1\xd0\x64\x0d\xc5\x94\xb5\x29\x4d\x0c\x5f\x2c\x13\x1f\x0a\xb1\x6d\xf1\x3c\xf2\x5e\x86\xbe\xd8\x74\xcf\xdb\x03\xb7\x2c\xee\x36\xb4\xc6\x1a\x15\xd6\xf7\x90\x4c\xb2\xbe\x87\xe0\xd5\x7c\xa4\xc7\x05\xab\xab\x62\xba\x8e\x60\xb8\x3a\x4e\x5e\xe8\x66\x78\x3a\x87\xf5\x89\xaa\xe9\xa1\xda\x8a\x00\xee\x4c\x61\x51\x7c\xae\x0a\x35\x39\xcd\x13\x70\x3c\x42\x67\xf1\xf1\x0b\xa7\x78\xa0\x58\xce\x80\x00\x8e\xb0\x3b\x98\x24\xe7\x36\x4f\xd2\xb3\xc5\x3a\x17\x5f\xae\x90\x91\x02\xf0\xfc\x95\xe0\xb6\x7d\xf0\xb9\xe5\xdd\xc4\x70\x31\x42\xcf\x5b\x9b\x1a\x33\x87\x94\x19\x2b\x7f\x89\x6b\x81\x06\xe1\x6d\xc9\xf8\x02\x5d\x00\x18\x01\xc0\xf1\xdc\xd1\xf1\xd3\x95\xe9\x9d\x3b\x1b\x93\x4f\x8b\xd3\x74\xa1\x5a\x9e\xcb\x14\x07\xef\xea\x28\x02\x5f\x60\x6b\x85\x45\xbd\x04\xeb\x93\xe3\x8b\x1e\xbe\x0a\x27\xca\x38\xc6\x94\xec\x97\x44\x5a\x0b\x77\x9a\xe1\xd9\xad\xc3\xce\xd7\x5f\x7a\x32\x78\x7f\xeb\xb0\x73\xb6\x98\x32\xe2\xd3\x46\x35\x0d\xfc\xa3\x8f\x3e\x82\x17\x5f\x7c\x31\xd6\x02\x6f\x0b\xc3\xbf\xc5\x58\xef\x4d\x70\x31\x02\x2f\x36\xc4\x5a\x07\x6d\xbc\x07\x31\x5e\x8f\x98\x32\xb4\xf1\x8a\xc4\x86\x58\x0f\xcd\xb3\xe0\x8e\xf1\xbe\x34\xe1\x90\xf8\x42\xdf\x43\xcf\xcb\xe2\x6e\x4a\x17\x82\xd7\xbe\x5b\x16\xa4\xf5\xdc\xc6\x5b\x13\x93\x0f\x18\x30\x4d\x8a\xc1\xb3\xd4\xb1\x95\xa7\x95\x2e\xd6\xda\xce\xa0\x7d\x99\xe1\xf7\x7f\xff\xf7\xdd\xca\xca\x8a\x84\x71\x00\xc5\x1d\x45\x04\x69\x7f\xe6\xfa\x2b\x93\xe4\x6c\x92\xc1\x26\x80\x58\x50\x24\x35\x12\x19\xf8\xf2\x94\xf2\x9e\xba\x0a\x9e\xa8\x8e\x43\x1e\xe7\x25\xf3\xf0\x67\xc5\x48\x23\xb5\x96\x8c\xd1\x83\x00\x69\x4a\xb8\x3e\x98\x39\xef\x71\x89\xf1\xb6\x40\x64\x7c\xd3\xf3\xf3\xee\x97\x16\xee\x60\x3a\x79\x72\xae\x83\x6a\x9c\x74\xb0\xd8\x6c\x56\x5c\xc6\xbe\x79\x1c\x19\x83\xe5\xdf\x84\x4e\xb9\xb0\x20\x8e\xe3\x28\x9f\x9f\x3c\x79\x02\xd3\xe9\x94\x2e\x5e\xbc\x88\x88\x5c\x3f\x06\x57\x2c\xd0\xf5\xe5\x29\xaf\x29\xcf\x1c\xa1\x23\xec\x6e\x9e\xa4\x1b\x6b\xe3\xf4\x9c\x2b\x26\x65\xfc\xc4\x11\x02\x54\xc7\x33\x97\x3f\xc8\xdc\x7c\x54\x7b\xb7\x94\x99\x72\xfa\xa7\xb6\x76\xa5\x3e\xbd\xc3\xe3\xbc\xea\x84\xe5\xff\xf5\xea\xf0\x1d\x82\x6f\xb9\x2e\x3d\x31\x28\x2b\x0d\x21\x21\x5c\xe9\xce\x5d\x32\x4b\x68\x67\xbf\x3f\x7b\x34\xee\xd0\x04\xf2\x8b\x18\x01\x98\x90\xf0\xda\xfb\xf6\xf6\x36\x9d\x9c\x9c\xe0\xd3\xa7\x4f\x65\x9b\xf0\x2e\x2b\x83\x63\xdf\x2d\x98\xa6\x2e\xaf\xc5\xc7\xe0\x92\xb0\x56\x9a\x50\x08\x95\x2b\x0b\xc0\x69\xe9\x78\x5d\x84\xf2\x89\x2d\x83\x84\x8b\x6d\x93\x50\x88\x29\xc7\xb3\xe2\x96\xe9\x35\x7c\x31\x32\x83\xe3\xd3\xea\x96\x3f\x23\xe8\x75\xa8\xd1\x27\x69\xd5\xbe\x5b\xe9\xda\xe4\x23\x65\x58\x88\x0e\xa7\x7c\xd3\x82\x26\x87\xdb\x94\x37\x14\xac\x3a\x69\xaa\xfb\x18\x78\x2b\x3f\x0d\x96\x8f\x0b\xbc\x0f\x6a\x75\xaf\x8d\x1d\x2a\xec\x7b\xef\xbd\x87\xce\x39\x7f\xde\x97\x1f\x13\x12\x28\x8e\xf7\x77\x04\x83\xd5\x71\x72\xe6\xea\x4e\xff\xcd\x53\x27\x9d\x2f\x22\x80\xab\x9f\xbf\xc5\xb0\x62\x25\xbf\xe5\xf1\x19\xa5\xb4\x16\xde\x95\x6a\x4b\x75\x01\xa1\x78\x5f\xe4\x89\xbb\x88\xb4\x38\x16\x69\x5e\x9b\xfc\x37\x9b\x3a\x3a\xdc\x1d\xcc\x6e\xfc\xe2\xf4\xf8\x73\xc8\x0d\xf6\x39\x00\x4c\x21\x37\xe6\x4b\xd9\xbf\xb1\xb1\x41\xab\xab\xab\x78\xeb\xd6\x2d\x5f\xf7\xda\x58\x1c\xdb\xde\x31\xdf\x65\x5b\xb6\xc9\xc7\xe2\x23\xde\x17\xd4\xa9\x22\xcd\xed\xcb\x35\x38\xa9\x01\x4b\x22\x2d\x1c\xfc\x1b\xcf\xd7\x29\x71\x12\x47\x06\x00\x30\x99\x4c\x60\x34\x1a\xc9\xef\xde\xeb\x22\x17\xea\x4e\x00\x61\x34\x4d\xe8\x78\x67\x38\xbd\x77\x77\x7d\xf2\xd9\x49\x27\xdb\xf5\xde\x16\x3f\x7f\x58\x2e\xf5\x46\x5a\xb8\x8b\x42\xf3\x86\x10\x80\x58\x24\x5b\x45\x96\x8b\xc4\xa9\xc2\xc1\x7b\x29\xf7\xe9\x40\x89\x3b\x57\xa3\x90\xf2\x74\x3e\xbf\x5c\x41\x29\x35\x9c\x12\x4f\xc9\xbb\x54\xc7\xe9\x08\xfa\xab\xe3\xe4\xb5\xcb\xbb\xfd\xaf\x5d\xda\xeb\x5f\x4b\xe7\x38\x24\xa2\x3e\xe4\x6b\x5d\x6a\xf3\x9f\x88\xe8\x86\xc3\xa1\xfb\xf2\x97\xbf\x0c\xaf\xbd\xf6\x9a\xd6\x7e\x00\x8b\x1a\x70\x5b\xaf\x43\xcc\xb7\x50\x58\x36\xdd\x32\xe1\x79\x4f\x53\xf0\xb0\xac\x87\xa8\x8d\xdb\xfe\x3f\xa3\xae\xda\x78\x9d\x96\x09\x96\x97\x16\x8c\xb8\xb6\xe1\x79\xd4\x4d\x1b\x3a\xda\xc2\x4a\x39\x6a\xc1\x59\x75\x14\x1b\x9a\xfa\x26\x97\xed\x6d\xf3\x6a\x82\x8f\xc1\x6d\x4d\xd9\x5a\x63\x82\xe5\x95\x51\x03\x9b\x62\xa9\x79\x23\x10\xc0\x39\x82\x14\x09\xba\xd5\x92\x81\xc5\x40\xc5\x7f\x7e\x41\xad\xbc\x73\x88\x7b\xd0\x79\x1a\xaa\x43\x70\x6c\xe2\xa9\x78\xe7\x02\x5e\xc1\xa7\xc4\xb8\x84\xa0\x9b\x66\xd8\x47\xaa\xdf\x57\x04\xa2\xde\xbb\xdd\x2e\x0c\x87\x43\x8e\xa0\x69\x9a\x1c\xe0\xbf\xa6\xdf\x34\x79\x14\x35\x9c\x25\x0f\x84\x5c\x37\xda\x1c\xb9\x64\xc0\x26\x57\xa4\xf5\x6d\x99\xf9\xb2\xec\xf6\xed\xdb\xf0\xc3\x1f\xfe\x30\x03\x00\xbf\x60\xa9\x36\x65\x04\x95\xf2\x32\x02\x80\x11\x01\x8c\x8e\xba\xf3\xdd\x7b\x1b\xe3\x5b\x4f\x56\xa6\x37\x09\x8b\x3c\xbc\x42\x50\x32\x09\xd6\x16\x81\x73\x18\x80\x4a\xf3\x15\xb3\x4a\x79\x1a\xac\x3a\x08\x79\x20\x60\xf0\x3c\xbd\xc6\xe9\x5e\x63\xe7\x79\x30\x6d\x07\xd9\x67\x62\x49\xea\x8f\x08\x9d\x0c\x37\x4f\x1f\xa7\x5f\x7c\xf1\x49\xff\xab\xdb\x7b\xbd\xed\x62\xad\x4b\xbf\x58\xe7\xc2\x2f\x63\x04\x22\x72\xeb\xeb\xeb\x6e\x75\x75\x15\x8c\xc0\x85\x84\x6f\xaf\xe7\x31\xa0\x68\x41\x0a\x38\x6e\x8d\x6b\xb0\x16\x8e\xd0\x73\x1b\x45\x4c\xc2\xc5\x2a\x6f\x5a\xbe\x9a\xa2\x1f\x23\x14\x2c\xc5\x41\x4b\xaf\xd5\x55\xac\xe0\xb1\xca\xa7\x0d\x1c\x21\xda\x9a\xe8\xd3\xd2\xc6\x4c\x29\x58\x79\xc6\x06\xc9\xc7\xcb\xe2\x6e\x03\x1f\x82\xb5\x06\x72\x8b\xc7\x62\x07\x97\x26\x81\xff\xbc\x71\x87\x94\x16\xce\xfb\x4d\x83\x64\xa8\x3f\xc7\x28\x46\x51\xc1\xef\xae\x04\x60\x67\x9d\x00\x3a\xcc\x07\xfc\x02\x86\xc3\xb3\xc4\xcc\xd3\xe1\x1f\x4d\xb7\x01\x05\x96\x19\xb0\x4b\x1b\x51\xe6\x01\x00\x04\x72\x00\xaa\x60\x17\xe0\x00\x1c\x00\xa6\x48\x51\x8b\x72\xdb\xc8\x4c\xde\x76\xfe\xfd\x79\x1a\x31\x6d\xd2\x5a\x3c\xb8\xe0\x71\xd1\x94\x10\x49\x78\x8c\xa5\xc0\x07\x9e\x90\x50\x6c\xc2\x21\xd3\xc1\xc1\xc1\x41\xf6\xf0\xe1\x43\x00\x00\x60\x8b\x73\xb9\xd7\x65\xe1\xfe\xa2\x69\x42\xc7\x4f\x86\xd3\x7b\x77\x36\xc6\x9f\x1e\x75\xe6\x8f\x01\x2a\x85\xa5\xa6\x0f\x17\x4c\x57\x6e\x4d\xc6\xfa\x7a\x18\x10\xb0\x00\x54\x31\x21\x54\xf8\x78\x5c\x75\xb3\x68\x1d\x83\xf4\xbe\x54\xbb\xb3\xa9\x74\x4b\x2e\xdc\x73\x54\xcb\x1f\x6a\xb4\x15\xca\x4b\xda\x9b\xb9\xed\x17\x0e\xbb\x5f\xb9\xf6\x78\xf0\xfe\xd6\x41\xe7\x2c\x40\xb5\xcb\x88\xdf\x69\xe1\x17\xad\x5d\xbe\x7c\xd9\xbd\xfc\xf2\xcb\x16\x73\xca\x35\x4c\x6d\x19\x36\xd6\x82\x93\x02\x6e\x41\xbb\x16\xb0\x4d\xf9\x68\xcf\xda\x6f\xa8\x3c\x16\x3d\x4d\xf0\x16\x0d\x1a\x3e\x2d\x48\xc1\xd1\x44\x4f\x13\x7c\x53\x68\x2a\x9f\xf6\x4d\x33\x42\x62\xcb\x17\x1a\x48\x63\x07\xd6\x58\x9e\x0a\xc1\xb7\x55\xc2\x9b\xf0\xf1\xfe\x11\x82\x6d\xf2\x30\x84\xbc\x9f\x6d\x69\x92\x69\xb5\xba\xb7\xda\xbf\xa9\x7e\x42\xfd\xa7\x8d\xb2\xd1\xa6\x4f\xc9\xb8\x90\x72\xcd\xf3\x2b\x77\x55\x02\x78\x4f\x76\xb9\x48\xb7\x6c\xb7\xda\xee\x65\x3f\x1d\xcf\xbc\xe6\xda\xac\xcd\xc2\x73\xed\xb8\x75\x41\x09\xc3\x09\x40\x0b\x06\xb0\xa6\xf1\x84\x0e\x21\x25\xa0\xac\xd8\xf0\xb1\xac\x72\x11\xdb\x2f\x64\x3d\x87\xfa\xb0\x16\xd7\x96\xaf\x42\xb0\x6e\xe1\xa1\x21\xb4\x51\x5e\x42\x02\xb5\xa9\x92\xa5\xb2\xb3\xc0\x9c\xbb\xbb\xbb\xf0\xb3\x9f\xfd\x4c\x1b\x18\x54\xaf\x4b\x06\x74\x7c\xdc\xcd\xf6\xef\x6c\x8e\x6f\x3e\x5a\x9d\xde\x9c\x23\xcd\x34\x07\x1c\xdb\xb1\x94\xbb\x07\xb9\xfb\x64\x41\x89\xc8\x57\xc8\xb0\x69\xd0\x12\x86\x4f\x19\x55\x6b\x5e\x98\xaa\xc2\xcf\x6c\xf1\x2a\x87\xf0\xfc\xf8\x2f\x1e\xce\x2b\x31\xa5\xf2\x8f\x00\x40\xf5\x2d\xd3\x08\x00\x8e\xa0\xbf\x32\x49\x5e\xba\xb8\xd7\xfd\xc6\xcb\x4f\x06\x5f\x5c\x1d\x27\xfe\x0a\x74\x7e\xbe\x4b\xe9\x79\xd9\xda\xda\x82\xb7\xdf\x7e\x1b\x5e\x7a\xe9\x25\x59\x1d\x9a\x60\x6d\x3b\x90\x34\x09\x78\x1e\x67\x85\xb6\x83\x54\x9b\x10\x23\xf8\x96\xc1\xa7\x85\xd8\x3c\x96\x19\x50\x9f\x17\xfd\x5a\x68\xc2\xbd\x6c\xdd\x6b\x4a\xed\xb2\x0a\x8f\x86\xbb\xc9\xf3\x13\x13\x6f\x09\x65\x0b\x77\xac\x07\xc9\xf2\xae\x48\xbc\x96\x0c\x0d\xe1\x96\xcf\x9a\xfc\x8d\x49\xc7\x83\x55\xf7\x56\x7c\xc8\xc3\xd5\xb6\x8f\xb4\xa1\xb7\xc9\xb8\xaa\xda\x0e\xc9\x11\x02\x64\x08\x99\xe6\x5c\x81\xd2\x88\xad\xe2\xf3\x3b\xe7\x02\xd8\x65\xc0\xc2\x10\x95\x13\x47\x94\x7b\x4d\xea\x5f\xd8\x4a\xc7\xc6\x3c\x08\x00\x21\x23\x07\xd9\xcc\xd1\x4c\x28\x3b\x96\xb3\x40\x0b\x4d\xce\x84\x36\x4a\x26\x87\x6f\xcb\xaf\x31\xf1\x9c\x06\xc7\x01\x43\x4c\xcb\xad\x6e\x1e\xdf\x94\x01\x1f\x18\x62\xac\x10\x99\x9f\x2a\x94\x77\x77\x77\xe1\xe3\x8f\x3f\x2e\xa7\x8a\xd8\xd9\x2e\x35\xaf\x0b\x11\x4d\x88\x68\x84\x88\x93\xb9\xa3\xc3\xa7\xc3\xe9\x83\xdb\x9b\xe3\x4f\x8e\xba\xf3\xa7\x00\x95\x26\xcd\x19\xc8\xbf\xfb\x29\x9d\x52\x31\x59\x38\xf2\x1f\x4a\xd7\x4a\xed\x46\x2e\x86\x47\x4e\xe7\x54\x60\x95\xb2\xa2\x6d\x85\x06\xf0\x8b\xc1\xaa\xb3\x5d\x8a\x4b\x13\x2b\xdc\x3e\x5e\xac\x69\x42\x40\x48\x32\x58\x5d\x1b\xa5\x6f\x5c\x7d\x3a\xf8\xd5\x17\x9f\xf4\xaf\x75\x66\x38\x2c\xd6\xb9\x94\xca\x0b\x11\x95\x07\xd4\x6d\x6d\x6d\xb9\x2f\x7d\xe9\x4b\x70\xf5\xea\x55\x4d\x28\xc7\x0c\x8a\x5a\x1a\x4b\x78\x59\x1e\x1c\x2b\xbd\xcc\x27\x94\x87\xf6\x3d\x94\x87\x0f\x96\x02\xd3\x94\xd6\x1a\xc4\x9a\x42\x93\xf0\xb5\xf2\x89\xa5\x4b\xa6\x89\x69\x1f\x59\x16\xff\x9c\x29\xdf\x63\xf2\x09\x3d\x6b\x69\x25\x2d\xa0\xc4\xfb\xe7\x26\xfe\xe1\xf2\xc3\x0a\x31\x42\x5d\x1b\xf4\x25\xde\xd0\x20\x6d\x7d\x8f\xf1\xe0\xb5\x09\x96\x7c\x8d\xe1\x4d\xcb\xc8\xb4\xda\x20\x46\xf9\xf3\x38\x2d\xf9\x1f\xa2\x45\x3e\xb7\x19\x50\x17\xda\xdc\xf2\x5a\x67\x00\x30\x71\xd9\x6c\x92\x66\x23\x02\x66\xc8\x16\x83\x02\x95\xb2\x9c\xea\xc7\xfd\xfb\xb5\x2e\xc4\xbd\xe4\xd5\xff\x45\xa6\xe5\x2e\xa1\x7c\xb1\x6d\x75\x0a\x7a\x81\xa8\xb8\x22\x00\x4b\x45\xa6\x3c\x2b\x03\x98\x82\xe4\xf3\x28\xbd\xf6\x15\x1d\x04\x90\x4d\x1d\x8d\x46\x9d\xec\xd8\x4f\x7d\x01\x80\x93\xe5\x0d\x79\xed\x65\x5d\xb5\xf8\x6e\xe9\x01\xda\x78\x6d\xc9\x0c\xad\x7f\x5a\x7d\x8e\xe7\xe3\xb4\x0f\xa1\x4e\xa8\x09\x31\xf9\xac\x65\xc8\x05\x8d\x16\x2c\x42\x43\x1d\x2e\x1b\x8f\xc7\x70\xf7\xee\xdd\x0c\xa0\x9a\x32\x2a\x7e\x6b\x0b\x75\x11\x31\x3f\x51\x17\x61\x34\x4a\xb3\xfd\xdb\x9b\xe3\x9b\x8f\x56\x27\x9f\xcd\x1d\x4c\xbc\x96\x5b\x6e\x65\x26\xb1\x20\x17\xeb\xca\x84\x0c\xf2\xc8\x66\x1f\x7c\x1a\xee\x25\xa9\xf1\x8f\x32\x81\xba\xe0\x8a\x64\x6e\xcb\x9a\xbe\xce\xa7\xa6\x6a\xda\x91\x3f\x34\x89\x00\x01\x5d\xb1\xde\xe5\xdd\x57\x1e\x0d\x7f\xf5\xc2\x41\xef\x12\x02\xf6\x81\x6a\xd3\x46\x0e\xa0\x72\xa1\x9e\x3e\x7d\xda\xbd\xff\xfe\xfb\xb0\xbd\xbd\x2d\x8b\x19\x63\xe9\x4a\x25\x95\xa7\xb3\x94\x02\xe9\xa2\xd6\x94\x57\x99\xce\x52\x9e\xa5\xa0\xe4\x38\x42\x82\xd6\x12\x80\x9a\x90\xb6\x84\xaa\xa9\x60\x0b\x5c\xb1\x41\x13\xf6\x96\x11\x20\x15\x41\x3e\xa0\x5b\xf5\xa9\x95\xc1\xfa\x0d\x19\x14\x1a\xee\xd8\x78\xed\xd7\x8a\x0b\xc1\x84\x8c\x21\x19\xa4\xcc\x6a\x52\x56\x35\xbe\x8f\x1d\x58\x65\x3a\x0f\xd7\xc6\xd8\xe3\xb8\x9b\x78\x2b\x24\xec\xb5\xba\x0c\x29\x3a\x21\xda\x24\x4c\xe8\x59\x2a\x44\x31\xfd\x20\x46\xf6\x73\x5a\x9a\xe8\x30\xaf\x66\x21\x04\x98\xa4\x34\x3b\xee\x64\x87\x73\x47\x23\x00\x28\xaf\x75\x01\xe0\x9e\xed\xfc\x8e\xbb\x3c\x11\x94\x82\x1a\xa1\x0e\x5b\xfa\x4b\xbc\xc1\x89\x00\x48\xd5\xd9\x5e\xb5\xdd\x48\x1c\x87\x47\x50\x9b\x36\xaa\x16\x35\x2e\xe6\x53\x54\x00\xd2\x6c\xd4\xc9\x76\xf7\xfa\xb3\x3d\x7f\xad\x8b\x56\x4e\xa3\xfc\xa1\xf1\x5a\xbe\x4b\xbd\x40\xf2\x8e\xd6\xee\x3c\x58\x32\x43\xcb\x53\x2b\x83\x26\x93\x33\x1e\x83\x9e\xa9\x5b\x00\x00\x16\x15\x49\x44\x41\x54\xc1\x99\x2d\x24\xd4\x6b\x89\x03\x85\x90\xe9\xac\x8e\x1e\xd2\x9e\x4d\x0d\x6c\x77\x77\x17\xfe\xee\xef\xfe\xae\x96\xae\xf0\xbc\x48\xa5\xa5\x9a\x32\x42\x18\xed\x0c\xa6\x8f\x6e\x9d\x1a\xff\xf4\xb0\x3b\x7f\x4c\x08\x99\xf7\xb6\x78\x2f\x8b\x3c\xf6\x5f\x5b\x8c\x15\x0c\x54\x67\xfa\x32\xae\xee\x72\xa9\x4d\xef\xf0\xdf\x32\x33\x8f\x87\x2d\xe4\xaa\x6d\x9f\x13\x89\xaa\xbb\x90\x0a\x6f\x0e\x61\xda\x99\xe3\xf9\xb3\x47\x9d\x6f\x5c\xbf\xb7\xf2\xb5\xb5\x71\xb2\x09\xf5\xb3\x5d\x52\x22\x2a\x4f\xd7\x45\x44\xd8\xd8\xd8\x70\xdf\xf8\xc6\x37\x64\x89\xb8\xc6\xac\xb5\xb5\x54\x5c\xe5\x20\x1b\xb2\xfa\x9a\x2c\xd3\x10\x3f\x49\x3c\x96\xe2\x1d\xca\xc7\x12\xa8\x4d\x4a\xbc\x15\x62\x04\xaf\x65\x7d\xca\xb4\x56\xbf\xb2\x06\x04\x39\xa0\x87\x04\x4c\xec\x60\x6b\x09\x38\xcd\x70\x59\xa6\xcc\x4d\xb2\xa0\x8d\xd2\x17\x93\x7f\x48\x59\xb2\xde\x7d\x5c\xdb\xc1\x54\x4b\xdb\x44\xa3\x05\xd3\xa4\xf0\xc4\x04\x8b\xef\x2d\xbe\xd0\x60\x2c\x85\x47\x06\x4b\x76\x6b\xf4\x58\xe9\x63\xe1\x82\xf9\x98\x1e\x07\xcc\xa7\x59\x8e\xbb\xf3\xc3\x89\xcb\x0e\xf3\xb8\xca\x52\xad\x4f\xef\x30\xa1\x5b\xb9\xe0\x6b\xde\x71\x36\xd3\xcf\xf2\xc0\xfa\x6e\x24\x12\x30\x52\xa9\xe0\x16\x6e\xa9\x24\xd5\xbd\xf8\x7e\xca\x6a\xee\x68\x74\xd8\x9b\x3d\xde\x19\xce\x76\x8b\x71\x0f\x00\x4a\xe3\x3d\x63\x1b\x57\xb4\x10\xd3\x17\x43\xc6\x42\x0c\xcf\xc4\x04\xa9\x94\xb4\xe2\x09\x4d\xf0\x69\x0c\xeb\x7f\x43\xdf\xda\x58\x40\x3c\x58\xf9\x68\x95\x52\xd2\x49\x44\x70\x78\x78\x58\x6a\x74\x6c\xb1\x6e\xa9\xbc\x10\x51\xa9\xb8\x00\xc2\xf1\x2c\xa1\xe3\x5f\x6c\x8e\x7e\xfe\x68\x75\xf2\xd9\xb4\xd0\xb4\x8b\xa1\xde\x7b\x2b\x54\x25\xc5\xf3\x14\xf3\xdc\x55\xa1\x74\xe5\x55\xee\x90\xda\x04\x10\x2e\xf0\xe0\x42\x5a\xee\xa9\xac\x69\xe0\xbe\xcf\xa0\x48\x53\x73\x53\xb2\x75\x35\x6c\x9f\x34\x02\xa6\xbd\xa9\xbb\xb2\xbd\xd7\xfb\xf6\x17\xef\xac\xbd\x5d\xdc\x22\xbd\x70\x9f\x11\x40\x71\x28\x13\x22\x38\xe7\xa0\x38\xb8\xc9\x07\x4d\x63\x06\x58\x64\x66\x2d\x64\xca\x5f\x88\xe9\xb5\xb8\x98\xce\xd7\xa4\x1c\x87\xac\xe3\x26\xfc\x21\x25\x43\xc2\x87\x06\xc6\x58\xda\xda\x08\x95\x90\xd0\x6e\xea\x7f\x9a\x92\x60\x59\x46\x12\xaf\x2c\xab\x55\xf6\x58\x5a\x2c\xb8\x36\x32\x24\xa4\x04\x49\x01\xd9\x36\x34\x0d\xc2\x16\x2d\xa1\xb6\x0d\x79\x28\x34\x18\x2b\x9f\x58\x45\x67\x41\x7e\x06\x60\x25\x4d\x16\xac\xa5\x50\x87\x68\x93\x34\x5a\xf2\x40\x53\xe0\x2d\x3c\xd6\x18\x54\xed\xf6\xac\x14\x98\xcc\xbf\x67\x48\xd9\x61\x6f\xbe\x37\x49\x69\x1f\x20\xf7\x90\x94\xf2\x96\xd8\x75\x2d\x7e\xea\x87\x79\x5c\xf8\x20\x50\xdb\x8d\x5a\xae\x5f\xe4\x00\x75\x8f\x0b\x95\xee\x72\x31\xad\x53\x58\xb8\x54\xd3\x84\xaa\x34\x7e\x1d\x25\x01\x64\xe3\x94\x0e\xf7\x7b\xf3\xc7\x7b\xfd\xd9\x71\x51\xa6\x8c\xe7\xc9\x97\x16\x28\xe1\x59\xfa\x01\x40\x33\x1f\xb7\xcd\xaf\x89\x17\x55\xf8\x26\xe6\xb2\x06\x0f\x4b\x70\xc5\x58\x15\xfc\xbd\x69\xf0\x32\x05\xd0\xe1\xe1\x61\xf6\xdd\xef\x7e\xd7\xa2\x77\x06\x00\x33\xe1\x75\x99\x64\x40\xc7\x4f\x86\xd3\xc7\xb7\x4e\x8d\x3e\x3e\xe8\xcd\x1f\x66\x08\x33\x7f\x52\x6e\xa5\x10\x53\x7d\x4e\xd2\x3f\x17\x0c\x58\xe3\x5b\x76\xa1\x62\x39\xed\x83\x9c\xef\xea\x1c\xe8\xa7\x73\x7c\x1a\xbf\xbb\xa9\xd4\xc8\x19\xb3\x51\xa9\x29\x51\x4d\x11\x07\xac\xa6\x44\x51\xe0\xad\x92\x53\x51\x51\xd8\x1d\x4c\xdd\xf5\x2f\x3c\xe9\xff\xf6\x2b\x0f\x87\xd7\x7a\x33\x5c\x05\x82\x3e\x11\x75\x11\xb1\xf4\xba\x14\xeb\x5d\xdc\xea\xea\xaa\xfb\xbd\xdf\xfb\x3d\x70\xce\x49\x2b\x3a\x86\xd9\x63\x60\xda\x0c\x00\xff\x19\xa1\x6d\x27\x79\x5e\x69\x9f\x77\x08\x79\x54\xb4\xd0\xa4\x14\xb4\xc1\xd5\x36\xb4\xf1\xb8\xb5\x4d\xd7\x26\x7f\x2e\x3f\xda\xd0\x14\x1a\xb0\xdb\x78\xe6\xac\xf8\x18\x25\xc2\x7a\x0f\xc9\xdd\xb6\x1e\x1e\x4d\xf1\x90\x0a\x88\x65\x1d\x73\x7e\x5c\xd6\xb3\x14\x8a\x8b\x81\xaf\xd1\x5a\x1c\xfb\x90\x01\x54\xcb\x09\x8a\xf8\x0c\x11\xb3\x0c\x69\x76\xd8\x9b\x1f\x9e\x74\xeb\x3b\x4d\xbd\xe1\x59\x1d\x71\xaa\x9c\xf4\x52\x78\x65\xa4\x13\xc5\x6f\xd8\xe0\xe7\x7f\x11\x77\xc3\x97\x8f\x15\x46\x2f\xf6\x91\x5d\xe8\xcb\xe9\xa9\xaf\x08\x40\xc8\x1c\x4c\x46\x69\xb6\xbb\xdf\x9f\x3d\x9c\xba\x6c\x22\x96\x4a\x70\x43\x5e\xa9\xb2\xb2\x9e\x64\xfd\x85\x78\x56\xeb\x3f\x21\xbc\xb1\xa1\xa9\x4d\x83\xfd\xa8\x8d\x6b\x32\x64\x01\xcb\xb4\x6d\x06\xb1\x26\xc5\xc8\xfa\x56\x06\x76\x05\x40\x4d\x71\x01\xb6\x35\xba\x58\xa8\x3b\x42\xc4\xd1\xe7\xa7\x47\x37\xee\xaf\x4f\x3e\x19\xa7\x85\x9b\x10\xa0\xbc\xa3\xc8\x33\x5f\xdd\xed\x57\xe4\x23\x97\xb5\xb0\x9d\x48\x28\x94\x09\x1e\x6a\xde\x41\x9e\x06\x40\x9f\x5e\xf2\xcf\x05\xbc\x36\xb5\x24\xd7\xc4\xf8\xcb\x1a\x3d\x84\x9f\x5b\x75\x04\xdd\x8d\x71\xfa\xc1\x9b\x0f\x56\x7e\xf3\xc5\x9d\xc1\x95\xde\x0c\x57\x11\xb1\x0f\xf9\x29\x92\xe5\x85\x8c\x7e\xbd\x4b\x9a\xa6\xf0\x47\x7f\xf4\x47\xd0\xe9\x74\x94\x92\x00\x40\xb3\xb0\x5b\x46\xe1\x89\x11\x8e\x31\x69\xda\xe6\x63\x09\x70\x0b\x77\x5b\xab\x38\x84\xa3\x4d\x9e\x9a\x37\xd2\xb2\x56\xb5\x7c\x62\xeb\x98\xe3\x0e\xd5\x4f\x08\x4f\x6c\x9d\xb4\x11\x74\x4d\x65\x8d\xc9\x87\x0b\xe0\x18\x45\xad\xc9\x80\xfa\xaf\x0a\xcb\x7a\xa2\xda\xa6\x6b\xf2\x06\xca\x6f\x96\x77\x2e\x94\x4f\x5b\xcf\x5c\x8c\xb1\xa0\xe6\xcd\xee\xf8\xa9\x7d\xf7\x03\xfc\xdc\xc1\xe4\xc9\x70\xba\xfb\x78\x65\xf6\xd9\x34\xa1\x72\x1c\xe0\xc2\x75\xe1\x60\x38\xbe\x94\x05\xaa\xcd\x1b\x0b\x6e\x78\x66\xdd\x22\x4f\x04\x4c\x21\x61\x4b\x5c\xb4\xc0\xc7\x06\x6e\x2c\xcf\x1c\x8d\xf6\x06\xb3\x87\x8f\x57\xa6\x0f\xa4\xb2\x92\xe3\x25\xe9\x6d\x69\xcb\xc7\x12\x46\xeb\x3f\x6d\xc2\xb2\x46\x51\x30\x1f\x79\xe4\xbf\x0f\x54\x64\xc2\x7f\x65\xe0\xf1\x0e\xea\xf5\xab\xc1\x87\x70\x59\x41\xa3\xa1\x7c\xce\xb2\x0c\x7f\xf2\x93\x9f\xc0\x9b\x6f\xbe\x09\x49\x92\xc8\x71\x1d\x19\xbc\x3f\xfa\x19\x01\x20\x9d\x24\x04\x69\x86\xc9\xc6\x49\x7a\x76\x30\x75\x1b\x09\x61\xc2\xf9\x93\xca\xe3\xf6\xa9\x60\x7e\xaa\xbb\x52\xca\x35\x25\xc5\x6f\x01\x87\x0c\xac\xf0\xab\x80\xbf\x32\x80\x1f\xf5\xef\xa7\xa6\x80\x2b\x3c\xb5\xc5\x2c\xb5\xc7\x6a\x0a\xaa\x38\x16\x9a\x2b\x50\xa5\xf7\xd2\x7b\x85\x20\xd7\xf2\x73\xe5\xab\x50\x92\x08\x7a\xdd\xb9\x7b\x61\x65\x92\x64\xc7\xdd\xec\xe1\x71\x67\x7e\x3c\x4f\xf2\xed\xe3\x88\x48\x45\x07\xe0\x8e\x50\x7c\xe3\x8d\x37\xe8\xb3\xcf\x3e\xc3\xc9\x64\x22\xfd\x9a\xd6\xb3\x7f\x0f\x7d\xd7\x82\x95\x26\x94\xf6\x79\xe5\xa3\xe5\xd5\xb6\xbc\x31\x81\xc3\x95\xfe\xb5\x16\x79\x92\xf1\x1c\x93\x27\x41\x7c\x1d\x6b\x69\xa4\x77\xa7\x09\xcf\x32\x75\x24\x1c\xf0\x8d\x38\xb5\xc0\x65\x84\x06\xaf\xe5\x11\x9b\x4f\x53\x5a\x4b\xf6\xb9\x96\x30\x1a\x2d\x31\xf2\x77\xd9\xfa\xb1\xca\x65\x05\x0b\x56\xa3\x31\xa6\x5e\x9f\x25\xde\xac\x93\x77\xdf\x7d\x17\x9d\x73\x5e\x9c\xfb\xb1\xc9\x1f\xfb\xdf\x81\xe2\x88\x08\x72\xd4\xe9\xce\xdc\xe0\xdc\x61\xf7\x0b\xbd\x99\xdb\xf0\x87\x51\xd4\x0d\xcd\x22\x33\x66\x95\x72\xb9\xeb\x13\x94\x32\xdc\x07\x26\xef\xfd\x8e\x24\x3e\x84\x68\xe7\xb8\x10\x40\x6d\x0c\xa9\xb4\x9a\x7c\x7c\xc9\x80\xb2\xc3\xde\xfc\xc1\xad\x53\xa3\x1f\x7d\x76\x66\xf4\xb3\xcc\xc1\x21\x00\x1c\x43\x3e\xa3\x30\x86\x7c\x6d\xe7\x94\x6d\x54\xc9\x00\x80\x76\x77\x77\xe1\xc6\x8d\x1b\x6c\xf4\x0a\xd6\xab\xc5\x13\x4d\x7d\x34\x66\x6c\x97\xed\x27\xd3\xc4\xca\xf1\xa0\xbb\xa6\x69\x6e\x53\x6a\xba\x4d\x9a\x98\x14\x80\x31\x41\xa3\xa1\xf6\x3c\x1e\x8f\x35\x3a\xb8\xd7\x85\x9f\xeb\x52\xee\x32\xba\xb3\x31\xfe\xc5\xbd\x8d\xf1\xa7\x47\xdd\xf9\xd3\x0c\x28\xab\xb7\x6a\xe5\x15\xf1\xef\xfc\x04\x5b\xe9\x5d\xf1\x77\x0a\x01\x67\x4c\xa8\xb4\xed\xda\xc9\xbb\x55\xec\x82\x27\xa5\x54\x5a\x40\x74\x82\x12\x37\x56\xb7\x14\xb0\xb4\x1e\xbe\xea\x50\x45\x2f\x29\x73\x41\xe8\xcc\xf1\xec\xd9\xa3\xce\xaf\xbc\xf6\x60\xf8\xe1\xf9\x83\xde\xa5\xce\x0c\x87\x50\x9d\xf1\xc2\x4f\xd6\x75\x00\x00\xdd\x6e\xd7\x7d\xf4\xd1\x47\x70\xe6\xcc\x99\x26\x2f\x43\xac\xeb\x5d\xc2\x87\xbe\x69\xe9\x9b\xbc\x10\x5a\xbe\x96\x77\x60\x59\x37\xa5\x45\x6b\xe8\x59\x86\x18\x57\x6d\xdb\x3a\x8d\xa5\x47\xe2\x88\xf1\x40\xc5\x4c\x47\x34\xd5\xa7\x06\xdf\x94\x47\xc8\x23\x65\xc5\xc5\x7c\xb3\x68\x0a\x05\xcd\x6a\xb4\xac\xd7\x36\x56\x25\x4f\x6b\xf1\x7e\x8c\xc5\xdc\xa6\xbc\x12\x4f\x1b\x58\xab\xbd\x9b\xea\xa7\x09\x5f\x2c\x7c\x53\xbc\xba\xf4\x40\x39\x65\x7d\x06\x08\xb3\x0c\x61\xf2\x70\x6d\x72\x6f\xb7\x3f\xbb\x35\x77\x34\x29\x0f\xf5\x2c\x86\x4f\xbe\xed\x19\x98\xdc\xd5\x4e\xb4\x2d\x8d\x47\x66\x22\xe4\x5e\x6f\xac\x7b\x57\x8a\xef\xd5\x1a\x9a\xea\xd7\x2b\x2b\x8b\x5e\x98\x1c\xc7\xcc\xd1\x68\xbf\x3f\xbf\xff\x64\x38\xbb\x3d\x4d\x68\x04\xf5\xb3\xcb\xfc\x73\x39\x45\x06\x00\x70\xe3\xc6\x0d\xf8\xfe\xf7\xbf\xcf\xcb\xef\xc3\x32\x5e\xd2\x50\xba\x18\xdc\x16\xdf\x34\x79\x6e\x17\xe8\xd3\x3c\x2e\x52\xd3\x6f\xd2\x8a\x24\x1c\xf7\xbe\xf0\xb8\x0c\xea\xb8\x24\xde\xa6\x6f\xdc\x6b\x56\xfb\x7e\xff\xfe\x7d\xbc\x74\xe9\x12\x75\xbb\x5d\x6d\x36\x05\x89\x28\xf1\x0b\x51\x8b\x32\xa7\xb3\x84\x88\x10\x60\x7d\x9c\xae\x0f\x27\xe9\x46\x9a\x61\xaf\x96\x48\xd1\xae\x81\x40\x78\x3b\xbc\x9a\x50\xfc\x62\xc5\xd4\x5c\xf9\x20\xc6\x94\xb2\x23\x50\x81\x94\x2b\x43\x8a\xce\x52\x53\x58\xf8\xa5\x5f\x3e\x9f\x72\x3b\xb7\xcf\xd3\x5f\xf0\x55\xd1\x8e\x49\x86\xab\xbd\x59\xb2\x92\x10\x8e\x46\xdd\xec\xe9\x71\x27\x3b\xc9\x5c\xde\xb1\x0b\x2d\xdd\xbb\x57\x09\x11\xa9\xdf\xef\xe3\xd6\xd6\x16\xed\xee\xee\xe2\xe1\xe1\x61\xc8\x4a\x0f\x59\x48\x1a\xff\x58\x69\x2c\xcf\x80\xf6\x2c\xbd\x03\x12\x8f\x95\x9e\xc3\x37\x59\xbb\xa1\x60\xd1\x20\x9f\x43\xe9\xad\xfc\x9a\xea\xd4\x07\x49\x7f\xd3\xb3\xc4\x11\xaa\xd3\x50\xbe\x21\x3c\xb1\xf0\x4d\x69\xa4\x15\x28\x8d\x9e\x26\x5e\x91\xf8\x63\x3c\x2e\x21\x19\x24\xe1\x35\xf9\x24\xf3\x8d\xf1\xb2\x70\xbc\x1a\xbc\x85\x5b\xa6\x6d\xe2\x59\xad\xae\x90\xfd\x69\x7d\xd5\x4a\x27\xe5\xbc\x06\x6f\x8d\x23\xa1\x36\x96\x63\x86\x84\xe7\xf4\x71\xba\x6b\xe1\xfe\xfd\xfb\x78\xe5\xca\x15\x3f\xdd\xed\x8a\x4b\x79\x4b\xd9\x0f\xf9\xf4\x78\x07\x00\xbb\x93\x84\x70\x7d\x9c\xae\x6d\x8e\x3a\xdb\xdd\xb9\x5b\x45\xa8\xae\xf0\xcd\xcf\xd0\xaa\x32\x2b\x09\x5d\xd4\x2c\xaa\x78\x4e\x15\xe6\x72\xb8\x76\x11\x63\xf1\x5d\x7a\xd3\x17\x6e\x70\xac\x50\x14\x70\x04\x27\x9d\xec\xc9\xed\xcd\xf1\x4f\x6f\x9e\x19\xfd\x64\xd4\xcd\x76\x01\xe0\x08\x72\x8f\xcb\xb8\xf8\x9b\x42\xbe\xb6\x73\xe6\xeb\xee\xfe\xfd\xfb\x74\xe3\xc6\x0d\xcd\x61\x10\xc3\xa7\x1a\xbc\xd5\x7e\x31\xb2\x74\x59\xdc\x0b\xe9\xb8\xe2\x62\x29\x28\x92\xa1\xe5\xb3\x87\xa9\x8d\xf1\x4a\x9c\xd6\x31\xa5\x62\x23\x71\x3a\x96\x2e\x63\x69\x6b\x4c\x7e\x78\x78\x88\x7b\x7b\x7b\xb0\xb5\xb5\x45\xfd\x7e\x5f\x16\xd4\x33\x2e\x14\xbb\x67\x12\x00\x70\x80\xe0\xc6\x69\x46\xdd\xb9\xeb\xad\x8d\xd3\x53\x83\x99\x5b\x75\x94\xdf\x32\x5d\x31\x66\x9e\x75\x4d\x11\x21\xc8\x77\xef\x10\x56\xeb\x54\x80\x9d\x78\x2b\x18\x93\x58\x1c\xb1\xe9\xa1\x8a\x6f\xd9\x3d\x49\x24\xd2\xf9\xca\xc4\xfa\x37\x64\xef\x9c\x56\xbf\x25\x9a\x7b\x76\xca\x06\x41\x04\x47\x98\xa4\x84\xeb\xfd\x19\xf6\x11\xf0\xe8\xa4\x9b\xed\x1e\x77\xe6\x27\xe0\xd0\x0b\x88\x05\xe1\xbf\xb2\xb2\x82\xeb\xeb\xeb\x74\x74\x74\x84\x07\x07\x07\x4d\xc2\x51\x0b\x21\xfe\x79\x1e\xe1\x59\xf0\x35\xa5\x5b\x86\xee\x65\xe8\xb1\xd2\x84\x94\x7b\x58\x22\x9f\x65\xc3\xf3\x6e\x33\x8e\x33\x24\x5b\xd4\xfe\x6e\xd0\x65\x7d\xd3\x06\x40\x2b\x70\xf9\x64\x29\x3a\x5a\x9e\x52\xb6\x69\xf8\x64\x7c\x68\xd0\x97\xb8\x9b\xea\x47\xd2\x67\x0e\xea\x4a\x7e\x1c\x7f\x48\x81\xd1\xca\x10\xf2\xa0\xcb\x7a\x6f\xa2\x9b\x2b\x67\x72\x3c\xb0\x06\x36\x95\xc6\xc3\xc3\x43\xba\x7e\xfd\x3a\x0a\x43\xd6\x2b\x2e\x0e\xf2\x1d\x95\x1d\x40\x48\xc9\x41\x67\x8e\x44\x9b\xa3\xf4\xf4\x70\x92\x9c\xc9\x0d\x58\x43\x33\x09\x04\xbf\x5b\x08\x85\xc5\xeb\xd7\x2a\x2e\xaa\x25\x2c\x14\x42\x5e\xc2\x20\x5b\x2f\x30\x73\x34\x7a\xb2\x32\xbd\xf9\xf3\xd3\xa3\x7f\xbf\xb7\x3e\xfe\x9c\x1c\x1c\x43\xae\xb4\x9c\x40\x35\x9b\xe0\x6f\x87\xf6\x63\x25\x3d\x7a\xf4\x88\x8a\x9b\xa1\x7d\x68\x52\x4e\x79\x68\xe2\x03\xad\x8f\x86\xd2\x69\xfc\x6b\x29\xc0\x16\x2c\x01\xd4\x15\x97\x10\xa3\x73\x04\x72\xbe\x5b\x12\x2e\x99\x95\xa7\x91\x15\xc8\x71\xf8\x02\x64\x81\xf4\x4e\xc0\xfb\x78\xdc\xdb\xdb\xcb\xae\x5d\xbb\x86\x2b\x2b\x2b\x88\x88\x58\x78\x11\x2a\x87\x03\x51\x02\xb9\x12\xe3\x0a\x0f\x4c\x32\x4f\x00\xe7\x8e\xb2\xe1\xc4\xad\xac\x8e\x93\xcd\xce\x1c\x57\xbc\x22\xe2\x8b\xc4\x0b\x07\xe0\xf9\x08\xcb\x9d\x40\x5c\xd1\xe0\xef\xc0\xd2\x55\xd3\x48\xf5\x2b\xce\xab\x35\x34\x75\x6f\x09\xcf\x8f\x47\x78\x5c\x75\x85\xc5\xe7\xeb\xb5\xa3\xc5\x6f\xa5\xc2\x8f\x00\x0e\xb0\x93\xce\xdd\x5a\x6f\x8e\x3d\x02\xd8\x3f\xe9\x66\xbb\x27\x69\x36\x01\x2c\xdd\x8c\xc4\xb6\xd3\x11\x22\xd2\xea\xea\x2a\xae\xac\xac\xd0\xc9\xc9\x09\xee\xef\xef\x87\x18\xd2\x12\x9a\xf2\x39\xc6\xbb\xa6\x31\x32\x17\xac\x3e\x1f\xe9\xa2\x8c\x11\xda\x32\x0f\x2d\x4f\xce\x9f\x00\x8b\xf4\x6a\x9e\x45\x60\xf9\xc7\x74\xc6\x90\x25\xcd\xbd\x94\xbc\xac\xb1\x42\x21\x34\x08\x05\x85\x82\x02\x17\xaa\xd3\x26\xc1\x63\xd1\x25\x07\x2a\x39\xf8\x73\xfa\xfd\xbb\x1c\x28\x43\x8a\x86\x36\xd8\x69\xb4\x59\xd6\xa6\x25\xec\x35\x78\x29\x17\x2d\x1c\xbc\x1d\x63\x14\x03\x8d\xb7\xb4\xfa\x91\xf1\x1a\x7e\xad\x1d\x64\xbb\x5a\x83\x90\x46\x8b\x55\x3f\x4d\x3c\x63\x0d\x70\x56\xdd\x37\xd1\xa2\xf6\x87\xb7\xde\x7a\xcb\x2b\x2e\xa5\xd2\xc2\x0c\x57\xff\x97\x02\x40\x67\x9c\x66\xd4\x99\xbb\xee\xfa\x38\x3d\xd3\x9f\x25\xeb\x8e\x30\xa9\x19\x7d\x05\x45\x04\x50\xf3\x6e\x83\x7f\x66\x86\xa8\x37\x62\x3d\x2c\x00\xd4\xd6\x2b\xfa\x71\x02\x58\x1a\x5e\x59\xfe\x8d\xbc\x4c\x27\x80\xcc\x51\x76\xd0\x9f\x3f\xf8\xfc\xf4\xf8\x47\x37\x4f\x8f\xfe\xd7\x51\x77\xfe\x14\x11\x0f\x89\xe8\x18\x11\xf3\xe3\x3e\x00\xc6\x44\x34\x43\xc4\x19\xe5\xc2\x7b\x7e\xfb\xf6\xed\xec\xe3\x8f\x3f\x06\x61\x70\x36\xf1\x9d\x25\x97\xb4\xfa\xb6\xfa\x9f\xd5\xc6\x9c\x27\x78\xbb\xc7\xf0\x7a\xad\xff\x73\xc5\xa5\x89\x48\x8e\x4c\x1b\x6c\x2c\xa1\x6a\x31\x97\x14\x54\xbc\x30\x16\x43\x5b\x42\x06\x01\x00\x93\x24\x81\xcd\xcd\x4d\xea\xf7\xfb\x5e\x21\xf0\x4c\x0b\x98\x07\x80\xea\xfc\x92\x04\x00\xdc\x24\x21\x4a\x32\x4c\xd6\xc6\xc9\xe6\x70\x9a\xac\x27\xe4\x3a\x7c\x35\x6d\xe9\xdd\x00\xa8\xa6\x89\x3c\xb3\x72\xc6\x84\x32\x49\x49\x1d\x16\x08\xf8\xfa\x13\x00\xaa\xd6\xce\x20\xe6\x27\x2c\x96\x8b\x68\x2b\x0e\xe7\x4a\x8d\xcf\x33\x5f\x74\x5b\x57\x9a\x38\x5c\xf9\xec\x61\x79\xde\x75\x25\xa9\xdf\x99\xbb\xf5\xde\xdc\xa5\x19\xc2\xfe\x71\x37\xdb\x1d\xa7\xd9\x14\x10\xfc\x42\x5d\xbf\x68\xb7\x20\x13\x69\x7d\x7d\x1d\x07\x83\x81\xa5\xbc\xc8\x36\x6c\xea\x1c\xa1\x8e\x64\xa5\x97\xcc\xce\x07\x3d\x14\x71\x31\xf9\x4b\x1a\x9a\xf8\x53\xd2\x2b\xe9\x91\xb8\x42\x69\xad\x3c\x43\xf9\x84\x06\x8c\x90\x41\xa1\xe5\xa1\xf5\x23\xab\xce\x3d\x6e\x8b\x56\x4b\xc0\x85\xea\x46\xc6\x6b\x4a\xa8\x55\xfe\x18\xd9\x20\x83\xa5\xa0\x84\xda\x20\x66\x50\xf5\x70\xa1\x1d\x1a\x5c\xf8\xc6\x28\x2c\x3c\x1f\x4b\x79\x96\x71\x21\x05\x0e\x94\xf8\xa6\xbe\x22\xeb\x55\x33\x3c\x2d\xf8\x26\x9e\x89\x6d\x33\x0b\xb7\xd6\x86\x0b\xe3\x8b\x50\x5c\x00\xa0\x3c\x29\x1c\xa1\x90\xfd\xc5\x6e\xca\x4e\xe6\x20\x9d\xa4\xd9\x7c\x75\x92\xac\xad\x8e\x93\x53\xdd\x0c\x87\x7e\x4f\x12\x31\x04\x5e\xd9\xe0\x8b\x76\xab\xa9\x79\xa8\xe4\x35\x93\xf7\xc8\x61\xa0\x4a\xc3\x0f\xe4\xe5\xcb\x04\xa8\x58\x36\xc0\xf1\x8e\x3a\xd9\xde\x9d\x8d\xf1\x4f\x6f\x9c\x3d\xf9\xe1\xe3\xd5\xe9\x1d\x72\x78\x04\x00\x47\x88\x78\x4c\x44\x27\x88\x38\x85\x7c\x61\xae\xdf\x70\x31\x47\x44\xfa\xf4\xd3\x4f\xe9\x93\x4f\x3e\x69\xbb\xae\xd4\xea\xcf\x9a\x32\x43\xca\x77\x50\x60\x9a\x70\x6b\xbc\x6b\xa5\x73\x00\x40\xd6\xae\x22\xcd\x1a\xd2\xe2\x43\xd6\x93\x86\x4f\x06\x8b\x69\xdb\xc2\x13\x40\xee\x16\xbb\x78\xf1\x22\x6e\x6e\x6e\x72\x86\xe5\xc1\xef\x2c\xf2\x8a\x4b\x92\x39\xc0\x99\xa3\xac\x3b\x77\xfd\xf5\x71\x7a\xaa\x37\x75\x6b\x0e\xf3\x21\xbb\xa6\x39\x7b\xa6\x2d\xa9\xcb\x01\x6a\x8c\xe7\x61\xc8\xa7\xa9\xee\xa9\xf0\xcc\xe8\x95\x96\xf2\x9a\x46\x84\xfc\x97\xa0\xae\xa8\x94\x19\x15\x05\xf4\x1d\x83\x77\x1e\xa8\xb4\x72\x1f\x89\xc0\xe2\x0b\x32\x81\x75\xaa\xfc\x15\xc1\x11\xf4\xbb\xb9\xf2\x92\x64\x8e\x76\x8f\x7a\xf3\xbd\x49\x42\x53\x90\x17\x20\xb1\xdf\xf5\xf5\x75\x1c\x0e\x87\x74\x78\x78\xc8\xd7\xbc\xc4\x4e\x23\x58\x5e\x8d\xd0\x7b\x0c\x7e\xab\x33\x68\xf9\x5b\xfc\x69\x7d\x8b\x1d\x64\x64\x7a\xcb\xd5\x1d\xa2\x2f\x36\x68\x03\x6a\xcc\xe0\xcb\xdf\x63\xeb\xc7\x1a\x94\x43\x75\x18\x6a\xbf\x90\x41\x24\xeb\xcb\xf2\xca\x59\xb4\xcb\x6f\x32\x4d\xa8\xcc\x5a\xbc\xb6\x29\xc1\xaa\x4b\x8b\x56\xcd\xc2\xb4\x3c\x54\x5a\x5e\x0b\x02\xdb\x80\xb7\x78\xd6\xb2\x60\xf9\xb7\x10\x5e\x69\x90\x5a\xe5\x94\xf8\xac\xf5\x8c\x5a\xbb\x6b\x74\x59\xf5\x63\x79\x3b\x17\x8c\xe6\x95\x95\x15\xdc\xd8\xd8\xa0\x34\x4d\x79\x5a\x00\xc8\xd7\x3c\x02\x40\xc2\xbc\x2f\xe9\x38\xcd\xef\x5b\x5c\x99\x26\xab\x83\x69\xb2\x9e\x66\xd8\xe5\x07\x4c\x70\x0f\x49\x5d\x9b\x01\xf0\x06\x65\x15\x9f\xbf\x23\xfb\x56\x8a\x68\x86\x8f\xb0\xee\x71\x97\xc6\x2a\x01\xc0\xd4\x65\xa3\x87\x6b\xd3\x4f\x3f\xdd\x3a\xf9\xd7\xbb\xeb\x93\x9f\x4f\xf3\x03\xf3\xca\xdd\x44\x85\xc7\x65\x02\xb9\xc7\x65\x8e\x88\xf3\x22\x29\xdd\xbb\x77\x8f\xee\xdd\xbb\xb7\x8c\xac\xd1\xe4\x98\xd5\xaf\xa5\x0e\xd0\x84\x8f\xff\x4a\x78\x8b\x0f\x16\xfa\x7f\x68\x3b\xb4\xf6\xac\x69\xed\x21\x78\x4f\x80\x15\x1f\x12\x34\x5a\x01\x38\x9c\xda\xe1\x36\x36\x36\x70\x7d\x7d\x9d\x3a\x9d\x8e\xdf\xd2\x9c\x0f\xe9\xd5\xd5\xe6\xa5\xd6\x9d\xcf\x8a\x60\x3a\x49\x29\x23\x44\x5c\x99\x24\xab\xeb\xe3\xe4\x74\x9a\x61\x0f\x10\x00\xd9\xa2\x59\x5f\xf8\xb2\x90\x58\x9d\x95\xe2\x39\xb2\xc6\x94\xfe\x91\x2b\x40\x35\x3c\xe5\x92\xde\xfc\xad\xd6\x11\xbc\x46\x5e\x21\xd5\x3a\x4d\x99\x07\x02\x77\x12\x2d\x6c\xcb\x13\xaf\x65\xaa\x84\x60\xd0\x9b\xb9\x8d\xde\xcc\x75\x66\x8e\x9e\x1e\xf6\xe7\x7b\x53\x47\x19\x57\x5e\x8a\xce\x54\x53\x5e\x36\x36\x36\xe8\xe9\xd3\xa7\x78\x7c\x7c\x2c\xad\xe4\x26\xe1\xda\x34\xb8\x73\x41\xe6\xdb\x89\x17\x55\xe6\xa3\xf1\x82\xc5\x3b\x9a\x72\xad\x79\x07\x2c\x7e\xb3\xca\xc7\xf9\x5b\x96\x8b\xe3\xd4\xbe\x69\x65\x0a\x95\x2f\x66\x40\xe5\x71\x72\xb0\x0c\x2d\x90\xd7\x06\x81\xa6\x41\xdd\xe3\xe5\xb8\xe5\x60\x24\x07\x18\x9e\x97\x36\xa8\x36\xc9\x14\xcb\x30\x92\x7c\xd8\x66\xfd\x05\x2f\x8b\x56\x6e\x6d\x70\x8c\x91\x91\x9a\x42\x66\xf1\x60\x93\x72\xd6\x24\x3f\xb5\x10\xaa\x43\x1f\x17\xe2\x73\x59\x1f\x21\x39\x1f\xd3\x7e\x4d\xed\xe6\xe3\x34\x58\x1e\xc7\xd3\xa9\xb8\x6f\xdf\xbe\x8d\x5f\xf8\xc2\x17\x60\x65\x65\x45\xca\x14\xef\x7d\x4f\x8b\x77\x07\x00\x29\x20\xb8\xe3\xce\x7c\x42\x08\xd4\x9f\xb9\x61\x7f\xea\x56\x13\x65\xbd\x4b\xed\xc6\xe8\xd2\x98\xad\x84\xb4\x7f\xa7\x82\xa2\x9a\x62\xc2\x0a\x97\x23\x13\x9b\x32\x84\xb1\x39\x73\x34\xd9\x19\xce\x7e\x71\xe3\xec\xf1\x0f\x3f\x3f\x35\xfa\xd9\x51\x6f\xfe\x84\x00\x0e\x20\xf7\xb6\x9c\x14\xde\x96\x31\x14\xeb\x5b\x0a\xa5\x65\x0e\x00\xd9\xce\xce\x4e\xf6\xf9\xe7\x9f\xc3\xd3\xa7\x4f\x9b\xfa\x8e\x16\xb4\x7e\xa9\xc9\xcc\x90\x62\xc3\xf3\x0c\xb6\x95\x41\x9f\x26\x97\xcb\x5f\x6d\x71\x6e\xa8\x70\x31\x0a\x84\x7c\x27\x91\x8e\xc7\xcb\x77\x4b\xf0\x59\x2e\xe4\x85\xce\x7f\xef\xde\xbd\x6c\x63\x63\x03\xcf\x9d\x3b\xe7\x15\x96\x72\x9d\x78\xa1\xa8\x20\xe4\x73\x9b\x5e\x99\x71\x80\xe0\x26\x09\x65\x09\x41\x67\x63\x9c\x6e\x0e\x26\x6e\xd3\x81\x73\xa5\x02\x50\xd3\x84\xcb\x53\x52\x2a\x3d\x9a\x29\x17\x25\x73\xfa\x4f\x8c\x53\xfd\xa9\xbc\xd5\x92\x5e\xa8\x16\xec\x02\x87\x03\xe0\x13\xa7\x15\xce\x1c\x96\x18\x4d\xc8\x70\x7b\x3c\xa5\x12\x53\xf4\x9e\xdc\xcb\x53\x1e\xad\x57\xe5\x01\xe8\x12\x82\xb5\xfe\x3c\x39\x3d\x9c\xba\x64\x92\xd0\xc3\xc3\xfe\xfc\x68\x96\xd0\xac\x38\x61\x12\xb9\xd2\xe2\x7f\x57\x57\x57\x71\x6b\x6b\x8b\xee\xdd\xbb\x07\xa3\xd1\x48\x13\x50\xa1\x41\x58\x6b\x3f\x8b\x59\xad\xc1\x53\x76\x2c\x8b\x5f\xb5\x0e\x56\x2b\x4b\x20\x0d\x7f\x0f\x0d\xe4\x1a\x3c\x80\x3e\x10\x85\xea\x87\xbf\x4b\xbc\xb1\x03\x9a\x86\x4b\xd6\x63\x88\x56\x4d\x60\x59\xf9\xf9\x3a\x95\x03\x9c\x55\x1f\xda\xa0\x28\x95\x9e\x90\x3c\x69\x6a\x03\xcd\xe2\xd7\x2c\x36\x8d\x16\x5f\x66\x00\x1d\xbf\x54\x7e\x65\xfb\x69\x8a\x1a\x08\x78\x59\xc6\x4c\xc0\x58\xfd\xc5\x92\xc7\x5a\x19\xb4\x77\x2d\x9e\xd7\xbf\xc6\x17\x21\x05\xce\xaa\x53\x09\x23\x0d\x10\x0d\x17\x08\x18\xcf\x0b\x92\x36\x89\xdb\x52\x92\x79\xa0\x0b\x17\x2e\xe0\xda\xda\x1a\x25\x49\xc2\x61\x73\x7b\xb3\xb8\xe6\xa4\x98\x2e\x4a\x88\x28\xc9\x12\xc0\xa3\xee\xfc\x84\x90\xb2\xc1\xcc\xf5\x07\x33\xb7\x9a\x64\xd8\xcd\x2d\x51\x36\xf5\x8e\xb0\xb0\xc6\x51\x06\x2c\xfe\xab\x8d\x05\x40\xc5\x54\x10\x41\xa5\xb4\xd4\xe5\x32\x15\xe9\xe6\x48\xb3\x9d\x95\xe9\x9d\x4f\xcf\x1e\xff\xbf\x9f\x9d\x1d\xfd\xaf\x83\xfe\xfc\x51\x86\x70\x80\x88\x27\x6c\x8a\xe8\x04\xaa\xab\x6d\x66\x88\x38\x2f\xd6\x28\xd2\x0f\x7e\xf0\x03\xfa\xd9\xcf\x7e\x56\xa2\x64\x64\x35\xf1\x86\x66\xec\x71\x3c\xb2\xdf\x6a\x38\x6a\xed\x20\xf0\x4a\xfe\x91\x7d\x10\x15\xb8\x05\x45\x35\x61\x48\x33\xa8\x77\x28\xad\x43\xf0\xce\xa7\x15\x0e\x94\x77\x50\xde\x79\xd0\xb4\xac\x26\x41\x15\xd2\xfa\xdc\x85\x0b\x17\xe0\xcc\x99\x33\xe4\x9c\x2b\xd7\xba\x14\x4a\x4b\x0e\x54\x79\x61\xbc\xd6\x9d\xcc\x5d\xe6\xe6\x0e\xb2\xee\xcc\xf5\x36\x4f\x3a\x5b\x9d\x39\x0e\x4b\x17\x1f\x53\x8b\xa9\x3c\x1f\xc5\x97\x96\xbf\xd7\x0f\x9c\xf3\x4a\x84\x67\x5a\x20\xa6\x9f\x97\x8c\xbf\xa0\xd3\x17\x59\x15\x79\xf3\x35\x2c\xde\xcb\xe3\x69\x2a\x20\xf5\x75\x2e\xbe\xa3\xd5\x3d\x3b\x40\x45\x67\x41\xf4\xde\x20\x4c\x32\x5c\xed\xcf\x92\xb3\x2b\xe3\x24\x39\xee\x64\x77\x77\x07\xb3\x23\x40\x24\x02\xca\xf2\x75\xce\x94\x15\xf5\x45\x45\x1e\xb4\xb2\xb2\x82\x97\x2f\x5f\xa6\x1b\x37\x6e\xe0\x6c\x36\x93\x0a\x2d\x17\x2c\xfe\x19\x04\x8c\x6c\x67\x80\x45\xc1\x28\x05\x93\x13\xdf\xb4\xe9\x05\xad\x73\x48\x01\x6a\xe5\x63\x09\x5c\xab\xc3\x69\xb4\xf1\x3a\xd0\x82\xaf\x0b\x8f\x93\x3f\x6b\xfc\xcf\xeb\x45\xd2\x28\xcb\x0e\x0d\xf5\xa3\xd1\xa2\xe5\x17\x53\x56\xde\xc6\x00\x8b\xf8\x9b\x04\x99\x54\x72\xb4\x01\x54\x1b\xe0\xad\xa0\xe1\xe1\xcf\x21\x79\xc6\x07\x4c\x4b\xa9\xe1\xf5\xc9\xeb\x07\x40\x57\x8a\x43\xca\x89\xc6\x9b\xb2\xee\xa5\x6c\xd3\x94\x5d\x9e\x9f\xcc\x5f\x06\xad\xef\x59\x0a\x8f\xc5\x2b\x5e\x51\x95\xfc\x2d\x79\x50\x6e\xb0\xb0\xc6\x04\x5e\x56\x59\xbf\x5a\xff\x91\x03\x98\xec\x9b\xb5\x70\xf3\xe6\x4d\x7c\xe1\x85\x17\x60\x73\x73\x93\xa7\xcf\xc5\x6f\x2e\x30\x13\xf1\xeb\x66\x09\xc1\x61\x6f\x7e\x9c\x21\xd0\x60\x9a\x0c\xfa\xb9\xf2\xd2\x91\x72\x5a\x2a\x26\xf9\x38\x51\x51\x46\xec\x9b\xa7\x8e\xc0\x1f\x99\xc1\x76\xa1\xb2\x13\x4b\xfd\x4d\xd4\x99\x83\xd9\xd3\x95\xe9\xad\xff\x38\x77\xf4\xcf\x9f\x6e\x8d\x7e\xba\xdf\x9f\x3d\xca\x1c\xec\x03\xc0\x31\x22\x1e\x16\xbf\xc7\x50\x9c\x0a\x8f\x88\x13\x3f\x45\x84\x88\x34\x1e\x8f\xe9\xd6\xad\x5b\xf4\xe4\xc9\x13\x4f\x01\x27\xdb\xe2\x6f\x8d\x9f\x35\xfe\xd0\x78\x47\xc2\x6a\xc1\xb7\x9d\x36\x66\x73\x1c\x9a\x5c\x58\xc0\x9d\xb0\x8f\x1a\x12\x2e\xb0\x64\x86\x5c\xf0\xca\x8e\x68\x05\x4d\x98\x59\x9a\xb5\xe6\x8e\x0e\xd1\x59\x7e\xbb\x73\xe7\x0e\x26\x49\x02\xdb\xdb\xdb\x65\xc3\x14\x83\xae\x03\xc8\x6f\x43\xc6\xea\x5c\x17\x07\x00\x09\x20\xba\x69\x9a\x65\x99\x03\xb7\x31\x4a\x57\xd7\x47\xe9\x96\x03\x2c\x8f\xe3\xf5\x25\x2d\xd7\xbb\x20\x94\x8a\x44\xa5\x6a\x60\x05\x03\x82\x99\x0b\x2e\xf7\x0c\x4f\x25\xce\x4a\xe3\xf6\x58\xaa\xff\xa1\x5a\xb8\x5b\x91\x20\x60\xa1\x52\x5a\xd8\x33\xef\x45\xb9\x12\x44\x65\x7c\xa5\x08\x41\x31\x1d\x86\x98\x10\xac\x0e\x66\xc9\xf9\x8d\x51\x9a\xec\x0d\xe6\x37\x0e\xfa\xb3\x31\x20\xfa\x33\x5e\xa0\x58\xb4\x5b\x90\x94\x13\xde\xeb\xf5\xe8\xf5\xd7\x5f\x87\x1f\xfe\xf0\x87\xa1\x45\x95\xf2\x19\x1a\x9e\xad\x81\xcd\xc2\xad\xc5\x5b\x7c\x12\xa2\x2d\xd4\x61\xac\x01\x36\xa6\x4c\x32\x68\xf9\x35\x09\x82\x10\x6c\xdb\xfa\x0e\xe5\xa1\xe1\x0c\xe1\xb3\x68\x0f\xe5\xd9\x26\xc4\xd6\x69\x5b\x5c\xfc\x3d\xc4\x2f\xa0\xc0\xf0\x6f\xda\x00\xab\xc9\xc1\x50\xfd\x58\xde\xc0\xa6\xe7\x18\xcf\x4a\xc8\xb3\x67\xd1\x63\x85\x90\x8c\x97\x0a\x48\x93\x8c\x97\xc6\xaf\xcc\x5f\x2a\xce\x16\x1e\x1f\x67\x29\xe8\x74\xed\xda\x35\xdc\xdc\xdc\xf4\xb8\x3c\x3c\xff\xf3\x71\xe5\xfa\xc7\x59\x42\xd9\x61\x6f\x7e\x34\xea\x64\xc7\x9d\xb9\x4b\x06\xb3\x64\x35\xcd\x5c\xaf\x94\xbf\x04\x35\x61\xcc\xd7\x40\x7a\x6c\x72\xdc\xf0\x63\x06\x10\x1f\x13\xea\x78\x00\x01\xe6\x8e\x66\x4f\x87\xb3\x9b\x3f\xda\x3e\xfc\xc7\x1b\x67\x4f\x7e\x76\xd8\x9b\x3f\x26\x07\x07\xc0\x94\x16\x60\xa7\xe5\x12\xd1\x98\x4f\x11\x01\x40\xf6\xb7\x7f\xfb\xb7\x59\x71\x76\x4b\x93\x4c\x91\xcf\xcf\xc2\x1f\x4d\xe1\x79\xf6\x65\xf8\xdf\x05\x07\x12\x44\x8e\x84\x17\x8d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x87\xf5\x52\x8c\xea\xb6\x01\x00") + +func web_uiV2AssetsMstile310x150Ccc673174b188a92f1e78bc25aa6f3f8PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsMstile310x150Ccc673174b188a92f1e78bc25aa6f3f8Png, + "web_ui/v2/assets/mstile-310x150-ccc673174b188a92f1e78bc25aa6f3f8.png", + ) +} + +func web_uiV2AssetsMstile310x150Ccc673174b188a92f1e78bc25aa6f3f8Png() (*asset, error) { + bytes, err := web_uiV2AssetsMstile310x150Ccc673174b188a92f1e78bc25aa6f3f8PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/mstile-310x150-ccc673174b188a92f1e78bc25aa6f3f8.png", size: 112362, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsMstile310x31049242d1935854126c10457d1cdb1762bPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x23\x40\xdc\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x02\x2e\x00\x00\x02\x2e\x08\x06\x00\x00\x00\x98\x4a\x83\xdf\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xdc\xbd\xfb\x93\x25\xc7\x55\x3f\x78\x32\xab\x6e\xdd\xdb\xb7\x7b\x7a\x7a\x5a\x33\xa3\xb1\xa4\x19\x8d\x85\x2c\xc9\x46\x18\x61\x19\x6c\x8c\xbe\x0b\x18\xaf\xe1\xbb\x66\x59\x08\x82\x30\x8f\x20\x02\x47\x20\xfd\x51\xb2\x03\xfc\x03\x01\xf8\x07\xf8\x81\x0d\xff\xc0\x06\x0f\x47\x7c\xc1\xf1\x35\xeb\xd7\x1a\xfc\xc0\x36\xb2\x24\x8f\x47\xd2\xa8\xd5\xd3\xd3\xd3\x7d\xfb\x3e\xaa\x32\xf7\x87\xaa\xac\x3a\x79\xea\xe4\xab\xee\xed\xb1\x77\x53\x31\xea\xaa\xac\x93\xe7\x9c\x7c\x9d\xf3\xa9\x93\x59\x79\x01\xea\x24\x81\x4f\x32\xf2\xaf\x8f\x07\xe5\x67\xfe\x71\x79\x1c\x5f\x70\x94\xe1\xf4\x74\xf1\xf4\xd5\xcf\xf7\x7c\x9d\xe4\xaa\x4b\xec\xb3\x14\x19\x9b\x48\xa9\xbc\x5c\x7d\x30\xb4\x4e\x5c\x3f\xa4\xc8\x70\xf1\x0c\x3d\x0b\x8d\xfd\x18\x5e\x29\x72\x31\x8d\x6b\x5c\xfb\xe6\xd9\xba\xf2\x53\xdb\x6e\x9d\x76\x18\x9a\x5c\x63\x68\xd3\xb2\x63\xc6\xea\xba\x73\x74\xa8\x1e\x43\xf2\xcf\x2b\x6d\x4a\xde\x50\x3e\x3f\x6e\xf9\x9b\x96\xf7\xa0\xfa\xf5\x27\x69\x7c\x6f\x5c\x4e\x08\x7c\x84\x1c\x92\xcf\xd8\x86\x14\x0b\x19\x6e\x4c\x13\x03\x9a\x86\x00\xad\x14\xc3\x1c\xdb\x06\xbe\xb4\x69\x47\x70\x5e\x93\x71\x28\xd8\x48\xe1\x31\xd4\x31\xbb\xf4\xd8\x44\x5b\x84\xea\x73\x5e\x40\xd7\x27\xd3\xa7\xcb\x3a\x3c\xe8\xb3\x75\x78\x0e\x01\x57\xeb\x38\xb2\x07\x05\x1e\x62\x9f\xc7\x94\xdd\x04\x8f\xd8\xfc\xf3\xd0\x23\x75\xfc\xbb\x7c\xcb\xba\xe5\x63\x93\xcb\xbf\xa4\x94\x4f\x2d\x77\x9e\x7d\x7c\x1e\xbc\x63\x9f\x0f\x91\xf7\xc0\x80\x6a\x08\x15\xc5\x18\xf5\x18\x19\x2e\x70\x93\x0a\x00\x7c\x13\x23\x64\x58\xb9\x49\xb8\xae\x23\xde\x44\x99\x07\x8d\xc6\x1f\xd8\xe0\x5a\x93\xb7\xab\x3f\x87\x3a\xe5\xd8\x76\x1e\x02\xc0\x5d\xfc\x87\xf4\xed\x10\x30\x3c\x84\x87\x8b\xee\x3c\x0c\x5e\xe8\x45\xe2\x41\xcd\x81\x75\xd2\x4f\x92\x2e\x00\xeb\x83\xb9\x4d\xbd\x3c\x3c\x28\x79\x43\xe5\xae\x2b\x2b\xe6\x39\xf5\x71\xeb\xf0\x1c\x4a\xbb\x09\x19\xae\xb6\x4d\x7d\x69\x49\xf1\xd3\x49\xc9\xd5\xc8\xa9\x08\x9b\xe3\x1b\x02\x26\x21\xe7\x32\x04\x10\xb9\x64\xd1\x7c\x1f\xff\xd8\x4e\x7b\x50\x29\x76\x00\x6d\xda\x01\xa4\x38\xf8\x21\xfc\x63\xe5\xad\x4b\x9b\x5a\x6e\x13\x20\x75\xc8\xb8\x4a\xd5\x2d\x16\x58\xf9\x78\x0f\x9d\x63\xb1\x69\x88\x31\xa4\xf9\x31\xe3\x39\x96\x6f\x2c\x88\x8d\x95\xef\x93\xb9\xae\xfd\x5c\xe7\xf9\xba\xb2\x52\xe7\x74\x2c\x8f\x21\x7e\x61\xa8\x1e\xb1\x73\x70\x9d\x31\x4a\xcb\x85\xc6\x93\xcf\x6e\xaf\x9b\xd6\x99\x9f\xa9\x75\x4e\xf5\xcf\x3e\x7e\x6b\xd9\x64\xca\x9c\x2a\xe6\xba\xf7\x31\xa7\xf4\xa1\x67\xa1\x81\x96\xe2\x0c\x42\x7c\x62\x0c\xd6\x10\x39\x9b\x4e\xa9\x7a\x9e\x87\xcc\xa1\xc6\xc5\x65\x10\x36\x6d\xcc\x7d\xe3\x28\xd5\x90\x70\x65\x36\x09\x76\x42\x6d\x95\x0a\x62\xce\x73\x4c\xa6\xf2\x8e\x31\x4c\x31\x36\x81\x33\x8a\x43\xfa\x60\x48\xdf\x73\xe5\x5d\x3a\xfb\xe6\x49\x2c\x7d\xea\x1c\x49\x6d\x9f\x18\x9d\x62\xed\x76\xac\x4e\x9b\x6c\x57\xd7\x1c\x71\xf9\x25\xaa\x93\x4f\x8e\x8b\x96\xd3\x35\x96\x9e\xa3\x49\x29\x07\x01\x9a\x98\xf1\x14\xab\x5f\x48\xf6\x3a\xfa\xbb\xf8\xc4\xd4\x6d\x23\x76\x2d\x85\x81\x6b\x30\xb9\x1a\x34\x34\x71\x5d\xc6\xdc\x37\x69\x7d\x93\x3a\xc4\xdb\x25\x8f\x5e\x73\x3a\x70\x29\x66\x70\xa6\x94\x09\xd1\xc5\x18\xc6\x75\x53\x2a\xcf\x50\xdf\x70\xbc\x63\x8c\x07\xce\xf7\x19\xb7\xd8\x76\x0a\xd1\xc4\xea\xe3\xe2\xed\x1b\xe7\x3e\x1e\xdc\xdc\x19\x22\xd3\x77\xef\x9b\x33\x1c\x5d\x28\xf9\xf4\x8c\x31\x7c\x31\xfc\x52\xe8\x63\xfb\x72\x68\xdd\x7e\x5c\x69\x93\xba\xa4\xf6\x47\x4a\x1b\xa7\xf0\x4f\x75\x5a\x43\xda\x20\xa5\x9f\xd7\xb1\xc7\x9b\xa0\x5d\x27\x85\xec\xad\xab\x0c\x2e\x7b\x9e\xe9\x81\xb6\x59\xc8\xc1\x87\x04\xc7\x38\x2e\xae\x9c\xaf\x6c\x08\xc4\xb8\x74\x48\x35\xce\x31\x80\xc6\x55\x6e\x68\xd9\x94\xb4\x29\xe3\x10\xd3\xaf\x31\xed\xba\xe9\xc1\x7f\x1e\x20\xcc\x97\x9f\x32\xf1\x43\xbc\x62\xef\x5d\x3c\x42\x00\x28\xf4\x2c\x26\x85\x40\x94\x8f\x76\x28\x0d\xa6\xdb\xd4\x78\x89\x19\x27\x43\xe5\x6c\x9a\xb7\xab\xcf\x62\x41\x6a\x0a\x7f\x97\xcc\x75\xd3\x50\x3b\x9a\xc2\xcf\x77\x3d\x94\x37\xbe\x3f\xcf\x31\xe8\xca\xdf\xc4\x18\x34\xf7\x29\x7e\x2b\xd5\xae\xfb\xae\x87\xa6\xd0\xb8\x4c\x2e\xec\xa3\x0d\x01\x0e\x9f\x73\x8e\x31\x8a\xd2\xf3\x2f\xa4\x47\xc8\x79\xfa\x74\xf4\xf1\xe5\x68\x43\xf9\xbe\x14\xd2\x7f\x13\x29\xd6\x59\x6e\x6a\xe2\x84\x9e\xf9\xf4\x09\x4d\xaa\x94\x09\x13\xf3\xdc\x65\xa0\x42\x63\x7b\x1d\xdd\xd6\xed\xdb\x54\x90\x10\xea\xdf\x90\x83\x74\xf1\x4c\x29\xc3\xb5\x73\x8a\x51\x8c\x99\x27\x29\x3a\x85\xe6\x44\x48\x4e\x2c\x4d\xaa\x53\x88\xd1\x6b\xd3\xbc\x5d\x32\x62\x1c\x5f\xac\x9d\xf7\xb5\xdf\xd0\x76\x0b\xf5\xa3\x6b\x7e\x0f\x9d\x07\xbe\xf6\x8b\xe1\xed\xe2\x43\x79\x50\xde\x21\xf9\xa1\xbc\x54\x5d\x5c\xf2\xcd\xfd\x10\xdb\x96\x52\xb7\xa1\xf3\xdf\x22\xf4\x0d\x52\x6e\x90\x0c\x99\x0c\x31\x95\xe5\x78\xc4\xca\x88\xe1\x93\x32\x60\x63\x52\xea\x00\x8a\x79\x36\x44\x8f\x21\xb2\x87\xd0\xc6\x38\xa4\x4d\xc8\xdb\x04\xef\x18\xe3\x18\xab\x4f\x4c\x19\x97\x11\x8f\x31\xbc\xdc\xb3\xd8\x36\x58\xb7\x1d\x63\x9c\x4f\xc8\x90\xf9\x64\xf8\x6c\x09\xcd\x8f\x71\x36\x2e\xde\x5c\xf9\xd8\xba\xc4\xb6\x79\x6c\x5b\xc5\xe8\x80\xf3\x7c\x6d\x10\x7a\x36\x84\xb7\x2b\x8f\x93\xe9\x92\xc3\xc9\xf5\xf5\x71\x6c\x79\x17\x7d\x4a\x1b\x84\xe4\xb8\xe4\x85\xc6\x46\xaa\x0e\x38\x6f\x1d\xde\x9b\xd2\x29\x76\xdc\x85\x6c\x99\x6f\x6e\xf8\x74\xf1\xc9\x0b\x8e\x1f\xdf\x00\xf5\x29\xcb\x3d\x4b\x51\xc0\x55\xf9\x94\x81\xeb\x6b\x50\x2e\xc5\x4e\x26\x9f\xac\x54\x79\xbe\xfb\xd8\xb2\x2e\x9a\x90\x0e\xa9\x03\xea\x3c\x53\x4a\xbb\xaf\x2b\x67\x28\xdf\x98\x32\xa9\x86\x98\xcb\x8b\xe9\xcf\x58\x7d\x86\x96\xf1\xd1\xae\xdb\x27\x31\xc6\x76\x1d\x59\x29\xf3\x68\x88\x0c\x9f\x03\x88\x29\xcb\x95\x0b\xd9\x55\x9f\xac\x18\xe7\x10\x23\x6b\x48\xf9\x4d\xb5\xeb\xa6\xc7\x94\xef\xf9\xba\xf3\x6b\xc8\xbc\x0b\xe5\xc7\xce\x81\xd4\xf1\x13\xab\x53\x8a\x3e\x2e\x7e\x9b\x9c\x63\xa9\x7c\x9c\xfa\xae\x3b\x08\x5d\xc0\x23\x04\x86\x42\x46\x2e\x16\x24\x71\x3c\x62\xc0\x8d\x0b\x40\x71\xfa\xba\xe4\x84\x52\xec\x60\x8c\xe5\xe3\x2a\xbb\x09\x30\xb0\x69\x70\x11\xd3\x46\x43\xda\x25\x46\xb7\xf3\x06\x47\xeb\xf2\xd8\x74\x7f\xa5\x3c\x73\xd1\x6d\xd2\x98\x51\x9a\x98\x3a\x6f\xca\x69\xc4\x38\x0a\xdf\x9c\xf7\x95\x19\xa2\x5b\x4a\xbd\x69\x3b\xb9\xda\x3b\x56\xf7\x90\x4e\x31\x34\x43\x64\xad\x33\x36\x37\x31\xaf\x63\xc7\x5d\x4a\x3b\x84\x52\xa8\xbf\x62\xe8\x38\xb9\x43\x75\x4a\x69\x67\x97\xcf\xe4\xca\xac\xd3\x7f\x3e\x3a\x97\x5f\x76\x16\xe4\x94\xf6\x81\x0e\x60\xe8\xb8\xb2\x2e\xf0\x10\xd3\xa1\xb1\x13\xc9\xc5\xcf\xa5\xbf\x8b\x6f\xe8\x19\xa7\xaf\x4f\x6f\xd7\x5f\x57\x9e\x8b\x77\x0c\x5d\x68\xb2\xf8\xea\x16\xba\x8e\xd5\x6b\xd3\x0e\xc0\xd0\xc5\xea\x38\x44\x4e\xac\x01\x09\xc9\x89\xa1\x4b\xd5\xe5\x3c\xd3\x26\xda\x3f\xc4\x37\xb5\xaf\x39\x79\x9b\xa4\x8f\x1d\x9f\xa9\x8e\x97\xb3\x1d\x29\xc6\x3f\xb5\x0e\x9b\xe8\x83\x18\x7b\x91\xaa\x4b\xac\xa3\xf3\xd9\x43\xdf\xf3\x58\x1b\x34\xd4\x0e\xc5\xd8\xbf\xd4\xb9\x30\xa4\x5f\x63\xea\x1a\x3b\xfe\x42\x3c\x52\xda\x2a\x86\xee\xbc\xe7\xba\x53\x1f\x5f\x83\xb8\x2a\x1c\x52\xc0\x37\x08\x62\x27\x59\xec\xc4\xc3\xf4\x21\x23\xc4\x75\xf8\xa6\xd2\x83\x72\x40\x3f\x29\x29\xc6\x00\xa4\x8c\x91\x54\x99\x43\xe9\xd6\xed\xa7\x18\x63\x3a\xa4\xfc\x26\xd2\x83\x1c\x83\xa1\x7e\x8e\x71\xa0\x3e\xbe\xb1\x86\x18\xe7\x0d\x31\x8a\x31\xf9\x29\x4e\xfd\x3c\xec\xcb\xd0\xb6\xf4\x95\x8d\x2d\x17\xc3\x77\xc8\xfc\x8f\x95\xed\xea\xe3\x14\x30\x97\x22\x73\x88\x63\x1f\xda\xc6\x31\x72\x52\xc6\x54\xca\xd8\x5d\x07\x70\x0c\x9d\xa3\x31\x7a\x38\xcb\x85\x08\x39\x00\xe0\x43\x78\xdc\x00\xf6\x35\x56\x8c\xb1\xf1\x81\x29\x8e\xc6\xa7\x8f\x0f\x14\x6d\xa2\x53\x37\x9d\xce\x13\x54\x0d\x1d\x44\xae\xb2\xff\x5f\x68\xa7\x9f\x34\xa0\xf0\x20\xf5\x89\xe9\xef\x14\x47\x3b\x94\x2e\x05\xd8\x84\xf8\xf9\x1c\x59\xc8\x90\xfa\x00\x40\xc8\x4e\x0c\x05\x6a\xa9\xf4\xa9\xfd\x91\x32\xa7\x37\x01\xec\x62\x69\x62\x6c\x49\x6c\xf9\x21\x20\xc5\xe7\x67\x62\xc7\x49\x8c\xbc\xf3\x98\x13\xf8\x7a\xc8\x3c\x49\x1d\x3f\xa9\xbc\xd7\xe1\x9f\xe2\x63\xa2\xe4\xc4\x1a\x84\x68\x84\xc4\x3c\x0b\x19\x88\x90\x2e\x34\xcf\x07\x70\x62\x01\x8f\x2f\x0d\x1d\xfc\x3e\x3e\x43\xe4\xc6\xf0\x1c\x0a\x4e\x42\xf9\xf8\xf9\xba\x93\x27\x56\xb7\x18\x1d\x63\xfb\x35\xd5\xb0\xac\x3b\x66\xb8\x32\x29\x06\x3e\x95\x26\xd6\x10\x84\xda\x87\x6b\xfb\xd8\x31\xe6\x2b\x3b\xa4\x5f\x42\x36\x22\x24\x2f\xd5\x26\xe1\x72\xb1\xb6\xc8\x37\x1f\x62\xfb\x60\x1d\x07\xb8\x8e\xbd\x4e\xad\xb3\xeb\xd9\x90\xe4\x6b\x9b\xd8\x31\x1a\xa3\xcf\x3a\x76\x33\x76\x1c\x0f\xb1\xb9\xb1\xf2\x52\xcb\xc6\xb4\x6b\xaa\xcd\x8c\xad\x5f\x0c\x0f\xdf\x35\x57\xa6\x47\x9b\xda\x30\xb1\x42\x7c\x13\x20\xd4\xf9\xae\x89\x14\xfa\x1b\xd2\x8f\x6b\x80\x4d\x4c\xbc\x4d\x74\xe8\xd0\x72\xeb\xea\x9f\x2a\x2f\x55\x66\x6c\x1b\xfb\x26\xcd\x10\x67\x17\x4b\xb7\x29\x43\xec\x73\x10\xae\xf9\x90\x22\x77\x48\xfb\xc4\xf2\x1b\xd2\x3e\x29\x7d\x3a\xd4\x0e\xf8\xee\x71\x7e\x48\xa7\x50\xfb\xfb\xf4\x1b\x52\xdf\xd8\xb4\xee\xdc\xf7\xf1\x08\x39\x0a\x4a\x3b\xb4\x5f\x5d\xed\x9a\x62\xa3\x53\x74\x0d\xc9\x48\x1d\xaf\xa9\x63\xd4\xa7\x63\x8a\x9f\x0c\xe9\x34\xb4\x8f\x63\xf8\xc6\x8c\x6f\x5f\x9b\xba\x92\x4b\xef\xd8\x3e\xf1\xb5\x31\xab\x6b\x88\xd0\x59\x90\x49\x9b\x00\x02\xf4\xde\xf7\xcf\xc7\xc7\xc5\x8b\x93\x97\x32\x71\x63\xd2\x26\x9c\xea\x26\x74\x38\x2f\xfe\x31\x93\x76\x13\x86\x39\xe6\x3e\x95\xdf\x79\x26\xd7\xd8\x74\x19\x22\x6e\x8e\xc5\x1a\xf0\x58\xa3\xec\x7a\x96\xe2\x54\x62\x78\xc7\x1a\xbf\x50\x7f\x84\x9c\xa1\xef\x9a\xca\x8d\x29\xef\xd3\x63\x48\xbe\xcb\x46\x0d\x6d\x9f\x21\xe5\x42\xba\xb8\x52\xaa\x1d\x4c\xe5\x3f\x24\xa5\x3a\xcf\x98\x3c\xca\x3b\xb6\x5c\xc8\xb9\x86\x64\x86\xfa\xce\xe7\xb7\x62\xfb\x9d\xa3\xa7\xcf\x39\xbd\x62\xf3\x5d\xfc\xd7\xa5\x8d\xcd\xf7\x8e\x85\x98\x09\x31\xa4\x3c\xe5\xe1\xaa\xa8\x8b\x97\x4b\x56\xa8\xf3\x5c\xbc\x63\xf9\x87\xae\x87\xa6\x75\xf9\xf9\x26\xc8\x26\xf9\x6d\x22\xa5\xf2\x8e\x19\x1b\x43\x79\x0f\x2d\x33\x84\x5f\xc8\x70\x72\x7f\x87\xc8\xdc\x84\x03\x19\x5a\x76\xdd\x7e\x89\x75\x08\x29\xfc\x37\xd5\xa6\xf8\x7a\x28\xcf\x18\x59\x43\xf4\xf1\xd1\x87\xec\x68\x8a\xdd\x0b\xd1\xc7\x8c\xbb\x18\xdb\x3b\x74\x1e\xc7\x82\x0c\x4e\x8e\x6b\x0e\x86\xfa\x7a\x53\xf9\xae\x94\x3a\x9f\x53\x6d\xc1\xd0\x79\x11\x3b\x66\x37\xd9\x0e\xbd\x72\xd4\xc9\x87\x3a\x9b\xd2\x84\x0c\xce\x10\x00\x13\xa2\x8b\x75\xf6\x21\xfd\x42\x29\x05\xf4\xc4\xb6\x1f\xf7\x2c\x34\x89\xb8\x3a\xa7\x18\x30\x2e\x3f\xa6\x4d\x5d\xfd\xe3\x4b\x29\xba\xc4\x4e\xcc\x94\xf6\x8a\xd5\x27\x94\xd6\x71\x76\xf4\x3e\xd4\xbe\x2e\x5e\xeb\x8c\xd9\x14\xa3\x15\x63\xc4\xb9\xf2\xeb\x3a\xbe\xd8\xfb\x98\xbe\x0d\xcd\x3d\x8e\x5f\x4c\x1b\xa5\xf6\x5b\xac\x3d\x0c\xd9\xdc\x14\xfb\x11\xa3\xb3\xeb\xb9\x4f\x46\x6c\x1f\xc7\xd0\xfa\xec\xa4\xcf\x2e\x0e\x99\x87\x3e\x7b\x19\x23\x23\x46\x57\x4a\x1b\xd2\xc9\xc5\xdf\xf7\x9c\xca\x0c\xd9\x50\x57\x3f\xc4\xd6\x2f\xa4\x9f\xcf\xa6\xb9\x74\x8a\xd5\x23\x96\x2f\xc7\x67\x23\x29\x34\x20\x63\x26\x71\x4c\x43\xfa\x26\x36\x47\x93\x6a\xb4\xce\x2b\xa5\x1a\xfb\xd0\xb3\x21\x13\x7b\x08\x8f\xa1\x46\x64\xc8\xb3\x90\xfc\xd0\x64\xe6\xe4\xac\x53\xef\x4d\xa6\x75\xfa\x70\x48\x5d\x37\xd9\x67\x3e\x59\xb1\x8e\xcb\x55\x96\xa3\xdf\x44\x7d\x42\xe9\x3c\x8d\x61\xc8\x06\x6d\x92\x37\xe5\x9b\x3a\xa7\x53\xe6\x54\x4c\x4a\xe1\x31\x44\xee\x26\xc6\x44\x68\xdc\x0d\xd5\x25\x95\x47\xea\x58\x3f\x8f\x31\xfb\xa0\xe5\xfb\xec\x60\xb4\x2e\x2e\xe0\xe0\x02\x02\xb1\x20\xc3\x65\xd4\x7c\x13\xce\x75\x1f\x23\x9b\xd2\xc7\xd4\x85\x93\xe7\xe2\x39\x24\xc5\xe8\x38\x84\x6e\xa8\x41\x8c\x9d\x54\x9b\xe2\x35\x44\x5e\xa8\x6f\x63\x53\x2a\x68\x49\x95\x19\xeb\x98\x42\xf7\x3e\x19\xe7\x41\x93\x92\x62\xc1\x88\xb9\x1f\x5a\x37\x8e\x3e\x46\xf6\x79\xb4\xc9\xba\x63\x2f\xa6\xbf\xf1\xb3\x18\x79\xa9\x6d\x32\xa4\x0e\xb1\xfd\x99\xc2\x77\x28\x38\x48\xe9\xd7\x1f\x47\xff\xc6\xd8\x6e\x88\xa0\x89\xe9\x33\x2a\x37\x44\x13\x9b\xb7\xa9\x76\xe3\x68\x36\x35\x77\x93\xe8\x63\x3b\xd6\xd7\xe8\xa1\xc6\x0a\x81\x0f\xca\x23\x06\x68\xa4\xe8\xe7\xe3\xe3\xd2\x2f\x45\x6e\x8a\x81\xf0\xf1\x49\x49\x9b\x36\x1e\x1c\x0f\x1f\x70\x4a\xd1\xc7\x05\xc6\xd6\x31\x6a\xb1\x46\xc2\xa5\x0f\xbd\xf6\x95\x4f\xbd\x4e\xd5\x2b\x56\xd7\x21\xf4\xa1\xf2\xeb\xf0\x4f\x31\x5c\x21\xba\x50\xd9\x75\x68\x36\x59\x6e\x08\xef\xd4\x3e\x4f\xe1\x1d\x5b\x6e\xdd\x34\x14\x38\xd0\xf2\x34\x6f\x5d\x7e\xeb\x8c\xaf\x75\xd2\x26\xc0\x98\x8b\xf6\x41\x8e\xcd\x07\xc1\x3b\xd5\xc6\x7a\x89\x69\xa1\x10\x10\xf0\x39\xf7\x54\x83\x19\x6b\xf0\x63\x40\x92\xcb\x09\x85\x1c\xe4\x79\x1b\x80\x58\xa7\xe8\x2b\xbf\x09\x79\xeb\x0c\xa6\x18\xba\xf3\x72\x2e\x43\xc0\x20\x7d\xe6\x1b\x7b\xb1\xfa\xc7\xd0\xa7\xe6\xc5\xb6\xc7\x3a\x6d\xec\x2a\xbb\x09\x43\x1f\xe2\xe1\x03\x86\x43\x80\x62\xa8\x1d\x52\x78\xc6\xf4\xa3\xcf\xa6\xa4\x38\xac\xd4\x39\xe9\xd2\x83\x2b\x93\xea\x38\x63\xc7\xc1\x3a\x0e\x79\xe8\x98\x8b\x1d\xbb\x31\x65\x42\x32\x53\xfd\x4d\x8a\xdc\x54\x9b\x42\xf3\xd6\xe9\x07\x9f\x0f\x4e\xa1\x89\x91\x45\xf3\x7d\xba\xfb\xca\x26\xd9\x64\x49\xfe\xb9\x94\xe0\xee\x5d\x79\xa1\x46\xf7\x4d\x44\x9f\x71\x88\xed\xc8\x90\xae\x9c\x9c\x75\x52\xaa\xe3\x09\x3d\x4b\xe1\xe7\x6a\x9b\x75\x75\xda\xb4\x83\xf3\x4d\x9a\x21\x3c\x86\xf2\xdb\x74\x1f\xf8\xca\xa5\x18\xcf\xa1\x6d\x3a\xd4\xe1\x0c\x91\x15\xa3\x47\x8a\x43\x1d\x32\x17\x43\x72\x38\xbb\xe4\xd3\x25\x64\xb0\x53\x75\x3b\xaf\x76\x4f\x71\x16\xa9\xb4\x2e\x3b\x4c\xf3\x7c\x3a\xae\x3b\xf7\x86\xd2\xc7\xc8\x8e\xa9\xdf\x26\xda\x31\x96\x76\x13\x69\x53\xe3\xd2\xa7\xff\x90\x36\x0a\xb5\x87\x4f\xb7\x58\xdb\xcc\x32\xe0\x94\x0d\x35\xd2\xba\xcf\x62\x8d\x4b\x4a\x8a\x9d\x78\x9b\x92\xb7\xa9\x14\xdb\xf1\xa9\x03\x84\x96\x4b\x7d\xf6\xa0\x53\x8c\x03\x3c\x0f\x63\x10\x92\x97\xc2\x63\x1d\xba\x4d\x00\xbd\xa1\xb2\x7e\x1c\x29\xb5\x6d\x7f\x12\x74\x5e\x37\x0d\x01\x6c\x0f\x32\x85\x9c\x9d\x8f\xc6\x55\x2e\x76\x5e\xa5\x8e\xf7\x18\x9d\x7e\x92\xda\x90\xa3\xfb\xff\xcb\x98\xe6\xae\x63\xe8\x37\x22\xd4\xdc\xfb\xd0\x39\x30\xcf\x62\xc1\xce\x26\xca\x50\x9d\x63\x74\x73\xd5\xc3\x27\xcf\xc5\x3f\x35\x3d\x08\x07\x92\x32\x69\xcf\xcb\x11\xae\x93\x36\xa1\x67\x6c\x1b\xac\x6b\x98\xcf\x03\x3c\x9e\x67\xe2\xea\xb5\x09\xc7\xb9\xc9\xf6\x72\xbd\x40\x85\x74\x19\xe2\xe8\x52\xf9\xa6\xe8\x1f\x92\xcd\xdd\xbb\xea\xcc\xd9\x2d\xee\x6f\xcc\xdc\x19\x62\x83\x62\x6d\x72\x4a\x99\x54\x19\x2e\xba\xd8\x3e\x4c\x4d\x3e\xbe\xae\xfe\xa0\x34\x21\x5d\x86\xfa\x03\x97\x9f\x76\xd1\xc5\xce\x97\x4d\xcc\x21\x2a\x2f\x34\x97\xb9\xbc\xa1\x76\x35\x99\xc9\xd0\x0e\xf2\x19\xd2\xd0\x64\x48\xd5\x2b\xa4\x83\xcb\x60\xa6\xf2\x8f\x9d\x38\x0f\xca\x79\x9d\x17\x40\x1b\x32\xb8\x7c\xed\x39\x64\x0c\x0d\x75\xc4\xb1\x06\x86\x8e\x09\x97\x8c\x94\xf1\x1d\x93\x86\x3a\xbe\x90\x5c\x9f\x9e\xb1\x3c\x62\x52\xca\x78\x7f\x10\xf3\x60\xa8\x53\x4c\x29\x1b\x9b\x36\x2d\x23\xd5\xd9\x6c\x3a\x0d\x95\x1d\xeb\x4c\xcf\x4b\x8f\x9f\x84\x71\x97\xea\x33\x36\xad\xcb\x10\x3b\xb6\x49\x5d\x06\xdb\x18\xce\x69\xc7\x18\xe7\x75\x1c\x90\xab\x8c\x0f\x40\xb8\x74\x88\x95\x1d\x32\xcc\xb1\xfc\x43\xe5\x53\xe9\xd6\x6d\xc3\x58\x67\x7d\xde\x93\x20\x15\xa4\x0e\xe5\x1d\x5b\xe6\xc7\x41\x37\x04\x40\xfb\xe6\xdc\xba\xce\x96\x03\xe1\xa9\xbc\x93\xd3\x6f\xfe\xe6\x6f\x4a\xfc\x97\xe8\x03\x24\x8f\x26\x1f\x10\x0d\x19\x79\x97\xbc\xd0\x1c\xe1\x6c\x1f\x47\x9f\x02\x5e\x63\xec\xd9\x3a\x4e\xcb\x67\xa7\x43\x7c\x42\xe3\x25\x86\x5f\xac\xdd\x71\xc9\x8d\x6d\x43\xac\x5b\x4c\x39\x5f\xbb\xc7\xfa\x3a\xdf\xb8\x4b\x1d\xb3\x3e\x1d\x53\xe6\xa6\xaf\xbf\x5d\xf6\x24\xd6\x0e\x87\xfa\x3b\xb6\x7e\x9b\x48\x31\xe3\x55\xa6\x10\xc6\x0e\x68\x17\x4f\x8e\x3e\x65\x12\xf8\x06\xdd\x3a\x29\x85\xcf\x26\x3b\x2b\xd5\x88\x9f\x97\xdc\x21\xe5\x53\x79\x0c\x95\x19\x72\x34\x29\x3c\x42\x4e\x29\xc4\x3b\xc6\xb0\xc5\xf2\x4a\x49\x29\xf3\x8a\xd5\xe7\xd7\x7e\xed\xd7\x24\xbe\xa6\xf7\x5c\xfe\x83\x4c\xe7\x20\x77\x28\x10\xe0\xfe\xfe\xb8\x53\xcc\x18\x5a\xc7\xd1\xc5\xea\x30\x24\x0d\x05\x35\xe7\x95\xce\x5b\x46\xac\xdf\x73\xe5\x3f\xa8\x7e\x09\x95\x1d\xe2\x0f\x1f\xc4\x18\x69\x93\x60\x0a\x2a\x94\xa7\xc8\x73\x73\x4f\xf3\xcd\xb3\x94\x84\xf9\xe0\xbf\xa9\xe5\x39\x5e\x2e\x7a\xaa\x27\xe5\xe1\x7b\xee\x92\xef\xa2\xa1\x6d\x38\xa4\x7d\xb0\x3e\x43\x79\x84\xca\xac\xd3\xee\xbe\xfc\x54\xd9\xa9\xed\x9f\xa2\x1f\xa7\x1b\x96\x95\xa2\xab\xab\x9e\xdc\x9c\x09\x8d\x9d\x94\x67\x12\x00\xd4\xf5\xeb\xd7\xe5\xf5\xeb\xd7\xe1\x8b\x5f\xfc\x22\x5b\xfe\x23\x1f\xf9\x88\x34\xcf\x5e\x7a\xe9\x25\xf9\xf2\xcb\x2f\x5b\x74\x2f\xbd\xf4\x92\xd4\x5a\x83\x10\xc2\x21\x7e\xb3\x09\xcb\x72\xc9\xd5\x5a\xb7\xd7\x42\x08\x30\x3a\x63\xfd\x3f\xf2\x91\x8f\x48\x00\x80\x2f\x7e\xf1\x8b\xca\xd4\x11\xd7\x15\xfc\x6d\x1e\xd3\xff\xe6\x3e\x75\x1c\xbb\xc6\x1b\xe6\xc7\xe9\xe5\x1a\xfb\x9c\x5d\xc3\x34\x5c\x72\xd1\x87\xf4\x0a\x8d\x7f\x9f\x2e\x3e\x9b\x87\x65\x00\x84\xdb\xd3\xc7\x3b\xe4\x9f\x86\xe8\xcf\xa5\x50\x7b\x71\xf9\x58\x9f\x21\xbc\x43\x7d\xe5\xea\x27\x5f\xbb\xa6\xd8\xb6\x90\x0f\xf5\xcd\x1b\x9f\x1c\x17\x46\xf0\xd1\x87\x74\xb6\xf2\x42\xd6\x6b\x1d\x03\xef\xba\xf6\x19\xfe\x75\x27\x9a\x4b\xef\x21\xfa\x6e\xba\x8c\xab\x7c\x2c\xcf\x14\x10\x15\xdb\x4f\x10\xc1\xd3\x27\x7b\x48\xdd\x87\xc8\x59\x87\x37\x24\xf2\x4c\x31\x42\x21\xe0\x95\x5a\x3e\xa9\xee\x2f\xbe\xf8\xa2\x74\x01\x10\x1f\x48\xc0\xf9\x5a\x6b\x29\x84\x50\x00\x10\x05\x68\x28\x10\x31\x49\x08\x11\x2d\xb3\x49\xed\x38\x65\x74\xf2\xf2\xa3\x60\x8c\x4b\x3f\xf7\x73\x3f\x27\xbf\xf6\xb5\xaf\x9d\xe7\xf8\xdd\xf4\x58\xf5\xc9\x81\x0d\xcb\x4a\x71\xf4\x3e\x50\xb7\x29\xb9\xeb\xd0\xa6\xf2\x34\x69\x13\xf5\x59\x47\x97\x4d\x95\x8d\x05\x5c\x9b\xf2\x53\xeb\x94\x49\x7d\x29\x70\x26\x6c\x15\x52\x10\x20\x40\xbf\xe3\x39\x64\x4c\xcb\xc7\x26\x9f\x13\x8e\x79\x23\xa1\x68\x8f\xf2\x03\xa6\x5c\x2c\x8a\xc4\xd7\x43\x3a\xc2\x05\x32\xd6\xe1\xe9\xa2\x8d\xb9\x37\xe9\xbc\xc0\x83\x2b\x0d\x01\xc5\x94\x8e\xd3\x7f\x5d\x9d\x36\x09\x62\xd7\xd2\xcf\x44\x1c\x5e\x7a\xe9\x25\x09\xc0\x47\x2f\x18\xe7\xde\x03\x20\x06\x60\xf8\xc0\x00\x2e\x87\xe9\x7d\x89\xd3\xc1\x05\x42\x48\xea\xb5\x85\x4f\x66\xc3\x43\xc5\xd2\x03\x84\xc1\xcd\x33\xcf\x3c\x23\xbf\xf3\x9d\xef\x9c\x17\x18\xe7\x52\x8a\x41\xc7\xf9\x00\x71\x76\xc2\xc7\xcf\xf7\x36\x1d\x63\xd7\x42\xfa\xbb\x64\x02\xf8\xe7\xd3\x50\x5b\x77\x5e\x80\xc3\xe7\x0b\x28\x5d\x2a\xf0\x71\xf9\x1f\x8e\x26\x56\xde\xa6\xda\x61\xc8\x4b\x97\xeb\xde\xc7\x27\xf6\xe5\x9b\xe3\x61\x95\x15\x0c\x21\xd7\x79\xe0\xc8\x0b\x0d\x4a\x5a\x36\x26\x6d\xa2\x11\x5d\x0e\x23\xe4\x48\x52\xdf\xcc\x42\x1d\xe1\x92\x13\x5b\x7e\x5d\xb4\x7b\x5e\x03\xdd\xc7\x6f\x13\x32\x63\xdf\x8c\x1e\x14\xc8\x1a\x22\xd7\xa2\x79\xfc\xf1\xc7\x25\x00\xc0\x6b\xaf\xbd\x66\x95\xc3\xe0\x84\x73\xc6\x24\x2f\x06\xfc\xf7\x68\x1c\x20\x27\x18\x61\x71\x81\xa3\x26\x4a\x63\xd1\x98\xba\x72\x3c\x03\x72\x54\x04\x1d\x4b\xe3\x89\xf0\x28\x5f\xbd\x22\x22\x36\x21\xc7\x14\xf3\x96\x1b\xba\x77\xd1\x6c\x82\x2f\xe6\x15\x72\x7a\x43\x9c\xa5\x4f\xe7\x28\xc7\x93\xf0\xcc\x47\x13\xca\x1b\x02\x3e\x62\x7d\xc4\x26\xc0\x9d\x8b\x86\x93\xed\x03\x98\x31\x63\xcb\x55\x2e\xa6\x4f\x52\xe6\x43\xcc\x18\xe6\xe8\x52\x80\xae\x14\x01\x82\x21\x42\x63\xf8\x85\x26\x1d\x97\x38\x19\xae\xc6\xe5\x74\xf1\x36\x84\x47\xbf\x94\x8e\x0d\xd1\xc5\xf2\x48\x41\xf4\xeb\x82\xad\xa1\xb2\x52\xe8\x53\xfa\xd9\x27\x13\xe7\xa5\xf2\xdb\xa4\x71\xa4\xcf\x2c\x9a\x2b\x57\xae\x48\x00\x80\xb7\xdf\x7e\xbb\x57\x0e\x47\x4f\x00\xd8\x28\x88\x33\x62\x62\x9e\xd3\xa5\x1a\x03\x6a\x98\x88\x89\x24\x65\x2d\x39\x38\x9f\x00\x02\x49\x68\x39\x79\xbd\x72\x8e\xa4\x02\xd1\x14\xe5\x00\x47\x2e\xf0\xd1\x5b\x5a\x72\x95\x21\x6d\x6c\xc9\xa1\x7f\x0d\x98\xf9\xdd\xdf\xfd\x5d\xf9\x37\x7f\xf3\x37\x43\xe7\x5c\x28\xf9\x9c\x12\x97\x1f\x23\x33\x55\x17\x97\xfd\x4d\x9d\xdb\x43\x64\xbb\xca\xa7\x38\xd4\x4d\xa6\x18\xbb\xbf\x4e\xfb\xc6\xe4\x87\x68\x52\x7d\xa4\xcf\x4f\xc7\xca\x4c\x49\xeb\xb4\x95\x8f\x9f\x17\x27\x08\x86\x30\x84\x38\x5d\x0a\x53\xfa\x54\x20\xb1\x8e\x03\x76\xe9\x1e\xe3\xa4\x53\x69\x36\x3d\xa9\xce\x6b\x92\x0e\x79\x23\xa0\xb4\x10\x41\x9f\xca\x73\x5d\xda\xa1\x20\x31\x36\x0d\xe6\xb1\xb3\xb3\x23\x4f\x4e\x4e\xda\xb2\x66\x0f\x0a\x75\xdc\xcd\xbd\x74\x39\x59\x70\x83\x17\x49\xf8\x48\x0f\xd8\xa0\xa0\x85\x2d\x4b\x1c\xb8\x55\x06\xeb\x8e\x79\xe0\x67\xcc\x5f\xc5\xf1\x30\x51\x19\x17\x40\x41\x3c\x14\x91\x4d\x81\x8d\x32\xed\x41\x79\xe2\x25\x25\x06\xdc\x58\xb2\xb1\x3c\xd7\x72\x57\xcc\x5e\x9a\x84\x74\x1e\x63\x33\x65\x8e\x87\xe6\x0d\x24\xf0\xf2\xe9\x12\x92\x3f\xd4\xce\xa7\x3e\x4f\xb5\x13\x21\x7b\xb7\x8e\x3f\x58\xd7\x16\x0f\xa1\x8f\xe1\x07\x01\x9e\x43\xed\x75\x0a\x10\x75\xe1\x0d\x6f\x7f\xd2\xaf\x8a\x62\xd0\x2f\xad\xb0\xf5\xe6\xe6\xe1\x45\xf3\x39\x5a\x5a\x8e\xca\xf3\x81\x2a\x9f\x5e\xdc\x5b\xbf\x8b\xaf\x8b\x3f\x96\x33\x74\x32\x87\x00\x13\x30\x74\x21\xd9\x29\x60\x70\xe8\x1b\x8d\x0b\xdc\xa6\xb6\xd1\x10\xe0\x1a\xab\x9f\xd1\xc7\xc7\x37\xb6\x7d\x92\xf5\x33\x91\x14\x9a\x30\xb8\x88\x78\x26\x9b\x7c\xd7\xd2\x90\xb9\x97\x0c\x4d\x4b\x8b\x41\x88\x10\xa2\xe3\xa1\x2d\x7e\x35\x90\x31\xd7\xda\xda\xf0\xe6\x92\xcb\x3d\x33\x89\xb6\x8d\x75\xaf\x01\x14\x12\xa0\x9a\x3c\x9b\x56\x58\xe5\x70\xf9\x36\x8f\x00\x12\x27\x2d\xb7\x2f\xa6\xa7\x13\x02\x49\x28\x8f\x2b\xd7\x26\x0c\x66\xb2\x2c\x93\x55\x55\xc5\x8c\xd9\x58\x9b\x4a\x75\xf4\x39\x03\x97\x0c\x7a\x1d\x2a\x1b\x72\xc2\x9b\x9c\xf3\xae\x72\x86\xef\x3a\xce\x34\x16\x98\xad\xdb\x06\xb1\xf6\xc2\x57\x36\xb5\xff\x53\xed\xf6\x10\xa0\x34\xb4\xff\x38\x3d\x69\xb9\x98\x36\x4d\xaa\x63\x0e\x7c\x03\xba\xfe\x02\x62\xee\x02\x1f\x9c\xc1\x71\x5d\x73\x1d\xe6\x92\x49\x79\x18\x1a\xee\x19\x6d\x34\x17\x10\xe2\x74\x0b\x25\x1f\xad\xcb\x50\x72\x65\x7c\x46\xd5\x25\x23\xc4\xc7\x6b\xa8\x1d\x29\x66\xe0\xd0\x7a\xb8\xc0\x5e\x8a\xdc\x58\x43\xe5\x4b\x46\x57\x1f\x2f\xc5\xd0\xb9\xfa\x25\xb9\x2d\xb9\x4f\x8e\x4d\xf2\xec\xf7\xa8\x41\x43\x1f\x9c\x70\x63\x9f\x9b\x8b\xd2\x05\x5a\x00\xcd\x4d\x04\x5a\xda\xbf\xb9\x12\x72\xba\xcc\xf2\x71\x25\xe5\xa8\x02\x39\x2e\x65\x31\x59\xc9\x62\xba\xca\x8a\xa2\x12\x45\xa6\x44\x2e\xb5\x90\x52\x89\x5c\x6a\xc8\x33\x05\xb9\xd4\x22\x17\x20\xa4\xd4\x20\x85\xae\xef\xa5\xae\xc1\x8e\x12\xa0\xb4\x00\xa5\x85\x2e\xb5\x00\xa5\x84\x56\x4a\x40\xa9\x04\x94\x20\x40\x55\xa0\x55\x99\xe9\xe5\x22\x57\xcb\xb3\x91\x9a\x2f\xf2\x6a\xb9\xca\x74\xb9\xca\xb4\x5a\x49\x5d\x2e\x33\x55\x2e\x73\x55\x9e\x8d\x94\x52\x82\x1d\x67\x80\xae\x15\x93\x47\x9f\x63\xf0\xe1\x9b\x7f\x26\xe2\x62\x8d\x77\x0f\x68\xb1\xe8\x7c\xfd\x0e\xf6\x58\x74\x39\x25\x20\xf9\xb1\x4e\x91\xb3\xd7\x3e\xdb\xe6\x92\x8b\xe7\x04\x47\xe7\x9a\x33\x54\x1f\x57\xf2\x95\xe7\x9e\x53\x1d\x86\x00\x0c\x9f\x0e\xbe\xf2\x2e\xdf\x14\x6a\x47\xce\x0e\xd2\x3e\xa0\x36\xd3\x65\x87\x7c\xf5\x71\x81\x19\x4e\xa7\x18\x7e\x54\x5f\xda\x46\x9c\xfe\x9c\xfc\x58\xff\x16\x33\xae\x7c\x7e\xbc\x37\x3e\xb8\x88\x0b\x40\xbf\x33\xb8\xc2\x29\xf7\x94\x17\x4e\x1c\xa8\xa0\x7c\xb8\x32\x2e\x7e\x34\x85\x40\x0b\xc7\x77\x48\xc7\xc7\xe6\x0f\xe1\x85\x9f\xa5\x20\xd3\x21\x06\x27\x25\x0d\x35\x24\x29\xe5\xd7\x05\x37\x21\x3d\xa2\xfb\xef\x53\x9f\xfa\x94\xfc\xf3\x3f\xff\x73\x15\x38\x0b\xa5\x1d\x9b\xdc\xf2\x0d\xf7\x17\xd1\x71\xf7\x2d\x6d\x13\xa1\xc1\xf7\x20\x40\xc8\xa2\x94\x72\x7b\x29\x8b\x9d\x65\x36\x99\xae\xb2\xe2\xc2\x3c\xdb\xdd\x59\x66\xbb\xe3\x95\x9c\x8e\x2a\xb1\x93\x29\x31\xc9\xb4\x98\x66\x1a\xb6\x33\x25\x26\x99\x12\x3b\x52\xc3\x54\x6a\x31\xcd\x94\x98\x4a\x2d\x26\x42\x43\x21\x00\x72\x01\x20\x9b\xc8\x8c\x04\x10\x52\x00\x48\x51\xeb\x90\x0b\x93\x6f\x47\x6e\x00\xa0\x06\x2f\x00\x60\xa2\x2a\x4a\x37\xff\x00\xb4\x02\x01\xa5\x06\x58\x6a\x01\xa5\x02\x58\x6a\xa1\xe7\x4a\xe8\xb9\x12\xb0\x54\x42\xcf\x94\x80\xb9\x92\x7a\x56\xd6\xff\xee\xaf\x32\x7d\xb2\xcc\xd5\xf1\x59\xae\x4e\x66\xe3\xea\xf8\x74\xa4\xe6\x8b\x5c\x2d\xe7\x23\xb5\x3c\x1d\x55\xcb\xf9\x48\x95\xab\x5c\xab\x66\x99\xa7\xe7\x7c\x51\x3e\x80\x6d\x94\x7b\x40\x87\x89\xb0\x18\xf0\xa3\xe8\xd2\x11\xa2\x6f\xf3\x3f\xfd\xe9\x4f\xab\x17\x5f\x7c\x51\x7e\xfa\xd3\x9f\x56\x7f\xf2\x27\x7f\x22\x3f\xfb\xd9\xcf\xb6\x7f\xb9\x31\x81\x64\xb8\x6c\x58\x8c\x63\xe2\x52\xec\x38\xe6\xf8\xba\xe6\x83\x4b\x17\x5f\x7d\x38\x1b\xc5\xd9\x2c\x97\x1d\x4b\xb5\xf7\x21\x3f\xc4\xd1\xd1\xba\xc4\xf8\x03\x9f\x7e\xae\xfc\x54\x9b\x16\xe3\x8b\x5d\xe5\x7c\xed\xca\xf5\x9f\x6f\x8c\x71\x6d\xea\xa2\x8f\xed\xc7\x4d\x8e\x6b\x49\x2d\xaf\xaf\xf1\x53\x9d\x5e\x6c\xa7\xa7\x00\x0b\x4c\x63\x52\x8a\x33\xdf\xb4\x13\x5c\x17\x18\x6c\x1a\xdc\xac\x9b\xd6\xd5\xdf\xd5\xe7\xe0\xc8\x1f\x3a\x9e\x36\x61\xa4\x9d\x63\xe1\x93\x9f\xfc\xa4\x04\x00\xf8\xdc\xe7\x3e\xa7\x00\xc2\xcb\x40\xcc\x66\x58\xbc\x7f\xc4\x02\x1a\xcd\x33\x8b\xae\xd1\xa5\x03\x29\x1a\x64\xa6\x21\x97\x4a\xc8\x4c\x03\x8c\x2a\x99\x4f\x97\xb2\xd8\xae\x81\xc9\x74\x6b\x29\x77\xa6\xab\x6c\xb7\x28\xe5\x6e\x51\x89\xbd\x51\x25\x2e\x8d\x2a\xb9\x37\xaa\xc4\x5e\xae\xc4\x5e\xae\xc4\x4e\x0d\x48\x60\x22\x00\x72\xa1\x45\x21\x74\x03\x4a\x40\x14\x0d\x18\xc9\xa1\x89\xa0\x60\xd9\x9e\xe5\x22\xda\xce\x38\x85\xfa\xb1\x06\x03\xdd\x75\x69\x80\x4e\xf3\xb7\xac\x81\x8e\x2e\xb5\x80\xa5\x16\x7a\xa9\x04\xcc\x95\x80\x79\x25\xf4\x5c\x49\x3d\xab\x24\x9c\x94\x52\x9d\x94\x52\x1f\x2f\x33\x7d\x77\x95\xab\xa3\x79\xae\x0f\x66\xa3\xea\xe8\x64\x5c\x1d\x9f\x8d\xd4\xfc\x64\x5c\xce\xcf\x46\x6a\x59\x4a\x5d\x2a\x01\x4a\x49\xad\x2a\xa1\x95\x92\x2d\x78\xa1\x20\xa6\x07\x7a\xc8\x73\xae\x6e\x3d\x90\x43\xd3\xcb\x2f\xbf\xac\xfe\xf0\x0f\xff\x50\xfe\xe5\x5f\xfe\xa5\xfa\xe4\x27\x3f\x29\xcd\x38\x82\x34\x67\x6d\xf2\xa9\x9c\x10\x8f\xa1\x2f\x03\x3e\xe7\xb7\x8e\x9d\x4a\x29\xeb\xb3\xcf\xae\xb9\xed\xa2\xf7\xe9\xb4\x6e\xf2\xb5\x71\xa8\xde\x2e\x10\x31\x54\x1e\x47\x17\x02\xa2\xb1\xd7\xeb\xe8\xb2\x6e\x59\xaf\x7e\x82\x3c\xf0\x21\x33\x17\x8a\x03\x54\xc6\x67\xd0\x7c\x28\x2e\x76\x92\xac\x33\x19\x5c\x7a\x71\xbc\x5d\xba\x87\x06\x2b\xc7\xcf\x97\x97\x0a\x14\x63\x26\x8c\x8b\x2f\x97\x42\x48\x3d\x86\x3e\x45\x7e\x6c\x99\x58\x1d\x38\xbd\x53\x26\xaf\x33\x71\x60\x85\xf9\x0c\xb8\x05\x25\xf8\x2f\xda\x63\x62\x00\x8c\xa4\xd1\x13\x00\x90\x42\x83\xcc\x6a\x70\x92\xe7\x95\x90\xa3\x4a\xe6\x5b\xa5\x2c\xa6\x8b\x6c\xb2\xb3\xcc\x76\x76\x16\xd9\xe5\xad\x95\xbc\x3c\xae\xe4\xe5\xf1\x4a\x5e\x29\x2a\xb1\x9f\x57\x72\x37\x57\x62\x27\x57\x75\xc4\x44\x2a\x31\x91\x00\x93\x06\x9c\x18\x80\x92\x43\x1d\x3d\xe9\xe9\xd6\x5d\x77\x10\x85\x8b\x1b\x69\x4f\x3e\x00\x80\xd0\x00\x5a\xd4\x34\x1a\x00\x84\xd6\x00\xae\xaf\x8b\x1a\x66\x86\xa7\xee\x4b\x50\x68\xc7\x8b\x01\x39\x1d\xb0\x10\xa0\x34\x74\x51\x9b\x26\x62\xb3\xac\xc1\x8c\x3e\x59\x65\xea\xa4\x94\xfa\x68\x91\xa9\xc3\x55\xae\xdf\x59\x65\xfa\x68\x91\xa9\xa3\x59\xa1\x0e\x4f\x8a\xea\xf0\x64\x5c\xcd\x4e\xc6\xd5\x7c\x91\xab\xb2\x94\xba\x2c\x33\xa5\xaa\x66\x29\xcb\x15\x9d\xc1\xf9\xe4\x9a\x6e\x00\xb6\x80\x0c\x17\x91\x31\x0f\x7f\xeb\xb7\x7e\x4b\x02\x00\xfc\xdd\xdf\xfd\xdd\x90\xf1\x0b\xd0\x1f\xf7\x38\x0d\x75\x36\xbe\x17\x82\xd8\x79\xec\x92\x89\xf5\xa2\x72\xe8\x33\x5f\x9d\x7d\x3a\x72\xb2\xb8\xfc\x18\x50\x14\xa3\x47\x48\x9f\x54\xdb\x1b\xb2\xf7\x26\x0d\x01\x08\x43\x7c\xea\x10\xfd\x21\x70\x8d\xe9\x87\xe8\x4f\xf3\xc1\x05\x5c\x5c\xc2\x29\x73\x9c\x86\x3a\x2d\xee\x2f\xc7\x2f\xa5\x41\x5d\xfa\xfb\xea\xe3\xd2\xd3\xc7\xdf\x55\x36\x34\x50\x42\x3a\x0c\x49\x31\x86\x2e\xc5\x08\xa5\x82\x31\xd7\x64\x5e\x07\x44\x85\x74\xa4\xf2\x93\x0c\xfb\xc7\x3e\xf6\x31\x99\xe7\x39\x5c\xbf\x7e\x1d\x3e\xfd\xe9\x4f\x2b\x47\x64\x45\x32\xd7\xce\xbf\x08\xdc\xe0\xeb\x1c\x00\x64\x0d\x4e\x44\x5e\x54\xb2\xd8\x5a\x35\x11\x94\xa5\xdc\xdd\x5a\x65\x7b\x5b\x2b\xb9\x37\x2e\xe5\xe5\x49\x29\x1f\x1a\x97\xf2\xf2\xb8\x94\xfb\x45\x25\xf6\xf2\x4a\xec\x65\x5a\x4c\xa5\x82\xa9\xd0\x62\x22\xa0\x06\x27\x00\x4d\xd4\x04\x7a\xe0\xc9\x7b\x1c\xb6\x6e\x00\x46\x0b\x38\xf0\x33\x74\x1f\x73\x8d\xcb\x81\xeb\x13\x65\x43\x8f\x2f\x0c\xe2\xc1\x34\x84\x31\x95\x89\x92\x01\x39\x0a\xa0\x01\x34\xed\x52\x94\x9e\x37\x91\x9a\x59\x25\xf5\x6c\x95\xa9\xe3\x65\xa6\x0f\x17\xb9\x3a\x38\x1b\xa9\xb7\xe7\x79\x75\x30\x2f\xd4\x9d\xd3\x42\x1d\xcd\x46\xd5\xf1\xac\xa8\x66\xf3\x5c\x2d\x17\xb9\x5e\xae\x32\xa5\x56\x99\x6e\x23\x41\xe8\x1f\x04\xc0\x0d\x5e\x56\x72\x6d\x1e\xb6\xd2\x72\xb9\x84\xcf\x7e\xf6\xb3\xea\x63\x1f\xfb\x98\x04\x00\xf8\x87\x7f\xf8\x87\x10\xe0\xf6\xd9\x4e\x60\xe8\x81\xd0\x92\xf6\x0b\xd2\x86\xe6\x7d\xaa\xed\xa7\xcf\x5c\xfe\x26\x86\x8e\xa3\xf5\xd9\xbe\x98\x36\x0c\xd9\x2c\x9f\xbe\x1c\xbd\x4b\x0f\x73\x1f\xb2\x8f\xb1\x3e\xcf\xd5\x3e\x58\xc7\x50\xfd\x86\x80\x9a\x58\xfb\x1c\xe3\x87\x62\xc7\x8c\xa5\x0f\xdd\xe3\x62\x92\x6b\xb0\xf8\x1a\xa8\xc7\x9c\x3c\xf3\x4d\x0a\xcc\x3f\xc5\x41\xb9\x64\x50\xbd\x52\x1a\x3a\xe4\x64\x7d\x9d\x11\xaa\x4b\xaa\x11\xf1\xb5\x23\x95\x13\xdb\x8e\x9c\x8c\x50\x7e\x2c\xbf\x50\xf9\x10\xdf\x18\xba\x54\x5d\xda\xf4\x4b\xbf\xf4\x4b\xf2\x5f\xff\xf5\x5f\x15\x80\xfd\x9b\x3d\xf4\x0c\x13\xc7\x97\x3e\x74\x59\xa7\xbd\xc6\x7b\x4f\xcc\xb5\x50\x20\x8b\x4a\xe6\x45\x25\xf2\x71\x29\x27\xdb\xcb\x6c\xba\xbd\xcc\x76\xb6\x17\xd9\xfe\x74\x25\x2f\x4f\x57\xf2\xea\xd6\x32\x7b\x78\x5c\xca\xcb\x45\xbd\xcc\xb3\x9b\x2b\xb1\x2b\x15\xec\x48\x10\x53\xa1\xa1\xdd\x77\xd2\x80\x13\x09\xd0\x07\x1a\x26\xcf\x05\x42\x30\x4d\x9d\xaf\x41\x34\xe1\x0f\x2d\xf8\xf2\x1a\xdd\x09\x12\x2d\xc1\xc9\x00\x96\x0e\x08\xd5\x54\x5d\x14\xc6\x51\x48\xf0\x59\x3d\x6c\xe3\x90\xad\x11\xf8\x61\xc0\x4d\x03\x2c\xb4\x01\x35\x73\x25\x60\xa6\x84\x3e\xa9\xea\xe8\xcc\xd1\xa2\x06\x33\x87\xf3\x51\x0d\x68\xce\x46\xd5\xc1\xe9\xb8\x3a\x38\x2d\xaa\xe3\xd9\x48\x9d\xcc\x47\x6a\xb9\xc8\xd5\x72\x9e\xab\xa5\x12\xa0\x34\x68\x10\x42\x94\x00\xd6\x9e\x18\xc5\x01\x17\xa4\x03\xfe\x6b\x5d\xe3\xf1\xf6\xf2\xcb\x2f\xab\x5f\xf9\x95\x5f\x91\x5f\xf8\xc2\x17\x62\x9c\x4a\xc8\x81\x82\x87\x36\xc5\x01\xfa\xca\xc5\x3a\xb1\x90\x6d\x59\xd7\xd6\x86\xea\x80\xeb\xe1\x03\x84\x1c\x6d\x48\xa7\x58\xd0\x18\xd2\xd9\xc7\x3b\x66\x0c\x84\xc6\x8c\x0f\x70\xba\xfa\x38\x94\x17\xd3\x7f\x29\xfe\x35\xd4\x8e\x6c\x7d\x5d\x9f\x43\xd3\x6b\x9a\x42\xc8\xd5\x55\x66\x28\x60\x88\x01\x2d\xc0\xe4\xc7\x38\xe0\x4d\x4e\xa0\x21\x4e\x35\x76\x22\xc7\x18\x20\x1f\x6d\x2c\x28\x08\xc9\x58\x17\xc4\x70\xcf\x52\x8c\x5c\xac\x41\xb6\x78\x9a\x83\xc5\x98\xa8\x8a\xef\xde\x02\x29\x64\x09\x48\xa2\xe7\x32\x53\x90\x8f\x4b\x99\x4f\x56\xb2\x18\x97\x72\xb2\xb5\x92\x3b\xdb\xcb\x7c\x77\x7b\x29\xf7\xa7\xcb\xec\xf2\xce\x32\x7b\x78\x6b\x29\xaf\x4d\xca\xec\xf2\xa8\x14\x97\x47\x4a\xec\x67\x5a\xec\x0a\x0d\x3b\x35\x40\x11\x39\xd4\x91\x99\xbe\xaf\xaf\x37\xe1\x36\x40\xa3\xb9\x6e\x9e\xc5\x44\x4c\x5a\x1e\x66\x3f\x4e\x03\x34\x80\x94\x05\x30\x4b\x40\x1a\x31\x10\x48\x4e\x0b\x7b\xea\x6b\xf3\x09\xb5\xb0\xd1\x85\x37\x42\x63\x65\xd4\x37\x3d\xe0\x02\x1e\xe0\xe3\x62\xe5\xc9\x47\x7b\x6b\x0c\xa0\x99\x37\x1b\x82\x4f\x2a\xa1\x8f\x96\xb9\x3e\x68\xa2\x32\x6f\xce\x8a\xea\xed\x59\xa1\xee\x9c\x8e\xaa\x83\xfb\x93\xf2\xf0\x2c\x57\xb3\x79\xae\xe6\xf3\x91\x9a\xcf\xeb\xfd\x33\x0a\x04\x94\x1d\x3f\x0b\xa4\x58\xc0\x06\xe5\x73\x9b\x7d\x7b\xe3\x96\xf9\x4a\x29\xd5\xc6\xc4\xd8\xc9\x90\x63\x48\x01\x3c\xae\xf2\xa1\x72\xb1\x20\xc2\xa7\x37\x30\x34\x2e\xba\x18\xf9\x94\x5f\x0a\x40\xf2\xe9\x19\xdb\x3e\x29\xa0\x91\x96\xa1\x3a\x70\x29\xd4\xe6\x94\x47\xaa\xaf\xa5\x72\x7c\xb6\x9d\xf6\xb5\xab\xac\x2b\xf5\x36\xe7\xf6\x08\x02\x0c\xa8\x30\xaa\x48\x6c\x4a\x45\x71\xa1\x41\xbc\x8e\x73\xdd\x44\x3d\x7c\x79\xa1\x7a\xb8\x68\x7c\x13\x20\x16\x71\x0f\xd1\x7f\x1d\xda\x90\xae\x9b\x48\x16\x3f\xee\x6c\x0d\x0a\x56\x68\x54\x05\x7f\xfd\xd3\x5c\x4b\x72\x8d\xc1\x4b\x2e\x9a\xaf\x6d\xcc\xa7\xc4\xe3\x52\x4e\xb6\x57\xd9\xee\x85\x79\xb6\xbf\x3b\xcf\x2f\x6f\x2f\xe5\xe5\xe9\x32\xbb\xb2\xb5\x92\x57\xc7\xa5\xbc\x36\xaa\xc4\xe5\x5c\x89\x7d\xa9\xc5\x9e\xa8\x37\xcc\x16\xcd\x17\x3b\xde\x93\x67\x31\x4c\x70\x25\xdd\x78\x69\x81\xee\x05\x41\x0d\x2d\x30\xf0\x6c\x43\x71\xf1\xc3\x3c\xed\xc8\x54\x2d\xc0\x6a\x47\x46\x5f\x1a\x95\xa1\xb0\xa2\x03\x52\x0d\x88\xd1\x5d\xd4\xa6\x05\x42\x58\x3e\x88\x1e\xa2\x69\x41\x19\xd8\x7b\x6f\x30\x30\xc2\x80\xaf\xc5\x65\xc2\xec\xa5\xd1\xaa\x89\xcc\x1c\x57\x52\x1f\xad\xa4\x3e\x58\xe6\xea\xce\x3c\x57\x77\x4e\x8b\xea\x8d\x59\x51\x1d\xdc\x1f\x57\x77\xee\x6d\x95\x87\xa7\x45\x75\x32\xcf\xf5\x6c\x91\xd7\x5f\x3a\x95\x99\xa6\x20\xc6\x02\x34\x24\x1a\x83\xc7\x65\x7b\x4d\x81\x8c\xd6\x1a\x6e\xdf\xbe\x0d\x9f\xff\xfc\xe7\x7d\xb6\x24\xd5\x41\xfb\xf2\x63\x40\x42\x6c\xf2\xbd\x6c\xf8\xae\x43\xfc\x5c\xf4\x9b\x02\x34\x29\x20\x31\x54\xc7\x54\xde\xeb\x82\xad\xf3\xb0\xd9\x1c\x7d\xac\xac\x14\xbf\x66\xae\x69\xf2\xca\xa1\x7b\x5c\x5c\x02\x5c\x0c\x43\x0e\x16\xa0\xcf\xc7\xd7\x10\x3e\x7e\xae\x32\xe0\x79\xe6\x03\x21\x43\xf8\xa7\xa4\x21\x13\x65\x93\x29\x16\xbd\x52\x5d\x36\x3d\x11\x7c\x74\xa9\xe0\x27\x5a\xc7\x50\x64\x85\x82\x15\xf2\x29\xb2\xec\x45\x56\x34\xe4\xb9\x12\x72\x5c\xca\xc9\xb8\x14\xc5\xb8\x94\x3b\x7b\x67\xa3\xbd\x4b\x67\xf9\xe5\xdd\x79\x76\x75\x67\x91\x5d\x9f\x2e\xb3\x47\x8a\x4a\x3e\x32\xaa\xc4\xe5\x4c\xc3\xbe\xd4\x62\x57\x68\x31\x01\x00\x29\xb4\x06\x2d\xf8\xe5\x17\xbc\x87\xc3\x5a\xde\x31\xd1\x0f\x00\x10\x78\x5f\x88\xb5\x31\x16\x3b\xe4\xc6\x51\xa3\x25\x20\x9a\x3a\xde\x35\x1a\x68\x41\x01\xf0\x65\x4c\x54\xc5\x12\x8f\x81\x02\xb8\x97\x91\x04\x66\x8e\x83\x32\x8e\x82\x6d\x94\xc5\xa5\x3c\x27\x83\xcb\x27\x00\xad\xbd\xef\x3d\xe0\x19\x68\x68\xbf\x70\x9a\x55\x52\x1f\x94\x52\x1f\x2e\x33\x7d\x7b\x3e\xaa\x6e\x9f\x14\xea\x47\xc7\x93\xf2\xcd\x7b\x5b\xe5\x9d\x7b\x93\xf2\xe8\x74\x5c\x9d\x2c\x33\x3d\x5f\xe4\x6a\x3e\xcf\xd5\x12\x00\x14\x34\x5f\x4a\x41\x37\x46\x2d\x40\xe3\xf9\x04\xbb\x17\x89\xc1\x51\x98\x9b\x37\x6f\xca\x57\x5f\x7d\xd5\x65\xb3\x00\xd2\xe7\xed\xd0\x79\x19\x1b\x35\xd8\x34\x58\x49\xd1\x37\xa6\x4d\xce\xbb\x9c\xaf\x9d\xd7\x79\xc1\x74\xe9\x31\x14\xb0\xd1\x32\x2e\x1d\x01\xe2\xfa\x25\x75\x5c\xc5\xb4\xa7\x45\x23\xc0\x6e\x5c\x27\x61\xa4\xa0\x18\xfa\x41\x8e\x08\xe9\x87\x75\xa4\xfc\x5d\x72\x80\x3c\x8f\xe9\x90\xd4\x49\x38\x14\xa8\xac\x33\xb0\xb8\xf2\xa9\xfd\x46\xe5\xb8\x64\x85\xe4\xb8\xda\x2b\x24\x3f\x05\x60\x79\xe9\xb9\x5f\x51\x36\x7a\xd1\x53\x64\x39\xb0\x02\xd0\x46\x57\xa4\xd6\x3a\xcf\xb4\x90\xa3\x4a\x14\x45\x25\x8b\x51\x25\xa6\x3b\x8b\x6c\xe7\xf2\x69\xb1\x7f\xe9\x2c\xbf\x7a\xf1\x2c\xbf\x3e\x5d\x65\x8f\x8d\x57\xe2\x46\x51\xc9\x6b\x99\x86\x6b\x52\x89\x5d\x01\xa2\x00\xc0\x0b\x2a\x75\x12\x64\xed\x03\xef\x07\xc1\xb1\x0a\x13\x23\xe8\xc5\x2e\x5a\xe7\x6f\x3f\xe1\x97\x59\x78\xde\x56\x6a\x22\x26\x5c\x08\xc6\xe2\x89\x40\x07\x30\xf9\x58\x02\x17\xd9\xc0\xca\xf9\x96\x76\x00\x3f\xb3\xa2\x26\x8e\x72\x9e\x65\xa4\x1e\x40\x0a\x95\xc1\xfa\x35\xca\x98\x3d\x36\x28\x32\x53\x2a\xa1\x4f\x2a\xa1\x0f\x56\x99\x7e\x73\x99\xa9\xdb\x67\x85\xba\x75\x5a\x54\x3f\xba\x37\x29\xdf\x3c\xdc\x2e\x0f\xee\xec\x2c\x0f\x97\x99\x9a\xad\x6a\x20\xb3\x34\x87\xf0\x01\x58\x5f\x2f\xd1\x6b\x0c\x56\xac\xf1\x4c\x97\x97\xcc\x17\x4a\x0f\x3f\xfc\xb0\x7c\xeb\xad\xb7\x86\x38\x73\x57\x4a\x7d\x43\x1e\xc2\x23\xc6\x2e\xf9\x78\x40\x04\x4d\xac\x7e\xe7\xd1\x66\x43\xea\x39\xd4\x56\x87\x74\xf0\xd1\x6d\x02\x30\xc5\xf0\xf6\xe9\xc9\xe5\xc5\xea\x0e\x00\xfd\xcf\xa1\x81\x10\xe0\xa4\x48\xbe\x0b\xec\xe0\x7b\x2e\xb9\x3a\x2f\xc6\x31\xc6\xa2\xb2\x46\xa7\x60\xce\x00\x00\x20\x00\x49\x44\x41\x54\x54\x5e\xeb\x0c\x6a\xae\x4d\x42\xfa\x84\x78\x73\x20\x82\xeb\x40\xee\x79\x6a\xbb\xfa\xf4\x19\xd2\x27\x9c\xae\x43\xda\xc0\xe4\x01\x57\xfe\xc2\x85\x0b\xf2\xb9\xe7\x9e\x83\xf7\xbe\xf7\xbd\x2c\x50\xc1\xc9\xf1\xa5\x0f\xb7\x57\x25\x17\x0a\x64\xae\x44\x91\x2b\x51\x6c\x2f\xb3\xe9\x95\x93\xd1\xfe\xd5\x93\xe2\xda\xc5\x79\x7e\x6d\x7b\x91\x3d\x3e\x29\xe5\x8d\xa2\x12\x8f\xe5\x95\x7c\x2c\x53\xb0\x27\x00\x26\xc6\x3b\x0b\xb0\xf7\x90\x38\xf6\x5a\x30\x91\x0b\x8d\x1c\x2d\x8a\x64\x90\x48\x81\x59\x76\xe9\xca\xd8\x10\xa7\xdb\x73\x82\xc0\x84\x69\x1b\xc4\xc3\x06\x44\x88\xb7\xe1\xd5\xe6\xd9\xf7\xad\x8a\x08\x5e\x59\x75\xf7\x2c\x6d\xc5\x04\x3b\xec\xfa\x85\x31\x07\x6d\x27\x1a\x09\x72\x15\xee\xf3\x0e\x2f\xc9\xf5\x64\x82\x5e\x2a\xa1\x4f\x4a\x09\x07\xa5\xd4\xb7\x17\xb9\xba\x75\x36\xaa\x5e\x3f\xda\xaa\xfe\xeb\xed\x9d\xe5\xed\xdb\xbb\xcb\xc3\xd3\x71\x75\x52\x66\x6a\x5e\x4a\xbd\xac\x1c\x20\x86\xfc\x03\xe6\xaf\xf5\x1b\x50\x14\xc8\x5c\xb8\x70\x41\xde\xbf\x7f\x3f\xc5\xc1\xb9\xec\x95\xef\x45\xc4\xc5\x2f\xc6\x79\x73\x7c\x62\x81\x08\x2e\x17\xf2\x3d\x31\xfa\xb9\x78\xd3\x32\x38\x6d\xca\x76\xc6\xc8\x0f\xc9\x1b\x02\xe0\x62\x6c\x39\xe7\x4f\x7c\xbc\x42\xbc\x39\x9d\x86\xf2\x66\x13\x06\x2e\x98\x71\x68\xd0\x50\xc6\xa1\xeb\x4d\x0c\xf4\x10\x62\x73\x25\xda\xd9\xf8\x7a\x28\xd0\xe0\x64\xc4\xe8\xe7\xcb\xf3\x81\x27\xd7\x80\x8d\x1d\x94\xae\x3a\x6d\x32\x2f\x06\xfc\x85\xca\x39\x69\xf3\x3c\x97\x65\x59\xb6\x74\x78\x29\xc8\xf5\x25\x10\xb9\xee\x01\x15\xad\xb5\x6c\x36\xc5\x4a\x59\x9f\x7f\x52\x5c\x98\xe7\x93\xeb\x47\xe3\xcb\x0f\xdf\x2f\x1e\xbb\x74\x36\x7a\xcf\x74\x99\x3d\x39\x2e\xc5\xcd\xbc\x12\x8f\x64\x4a\x5c\x96\x00\x3b\x02\x03\x0c\x14\x55\x20\x5f\xf9\x22\xd0\x00\x6e\xaf\x0b\x9c\xe3\x74\x87\x13\x68\x64\x85\x73\xb8\x3d\x80\x64\x71\x6b\x36\xd5\xb6\x40\x04\x45\x48\x22\xf8\x77\xd1\x0c\x0a\x66\xf8\xe4\x05\x20\x9e\x4d\x37\x3e\x9e\x16\x1d\xb7\x2c\x04\xe1\xc2\xbe\xbd\x45\xb1\xc2\x31\x50\x6a\x96\x96\x8e\x56\x99\xbe\xb5\xcc\xd5\xab\xb3\x51\xf5\xfd\xfb\xe3\xea\x07\x6f\xef\xac\x5e\xbf\x7d\x71\xf1\xe6\xc1\xf6\xea\x78\x99\xa9\xa5\xae\xcf\xa4\x59\xba\x40\x0c\xf3\xe9\x35\xfe\x0b\xdc\x7d\xc4\x8f\x41\x0e\x9d\x9b\xb1\x3c\x36\x51\x6e\x08\x5d\x48\xff\x4d\xf3\x4c\xf5\x0b\x31\x69\xc8\x0b\x9d\xc9\x87\x35\xf5\x39\xcf\xb1\xb0\x4e\x5b\x05\xcb\xc6\xbd\x66\x6c\x48\xd8\x86\x79\x0f\x19\x50\x43\x74\x1c\x3a\xb0\xd6\xe1\x3d\x74\x40\xb9\x68\xd7\x31\x5c\x31\x60\x2b\xf6\x2d\x83\xbe\xd1\x44\xeb\xf4\xa7\x7f\xfa\xa7\xf2\x33\x9f\xf9\x0c\x05\x2e\xb2\xf9\xa1\x3c\xfa\xdb\x3d\x00\x2e\xa0\x52\xef\x5d\x31\xa7\xc5\xe6\x12\x44\x7e\x61\x9e\x4f\x9e\x7c\x67\xeb\xea\xb5\xe3\xe2\xc9\xdd\x79\xfe\xf4\x74\x29\x9f\x2a\x2a\xf9\x44\x5e\x89\x6b\x52\x8b\x3d\xd1\x1d\xe6\xd6\x4b\x3e\xf0\x10\xe5\x78\x81\x82\x1d\x97\x2f\xc7\x48\xc7\xed\xf0\x87\xf0\x8e\x5e\xc2\x19\x90\x3a\x99\x38\x56\xe3\xa0\x69\xc0\x9f\x91\xc9\xca\xc7\x34\x64\xf9\xac\xf7\x39\x36\xaa\x9c\x2f\xfa\xc5\x6d\x48\xc6\xca\x69\xa4\x8c\xf9\xba\x8b\xaf\x49\x57\x1f\x25\xf5\x71\x25\xf5\x9d\x65\xa6\x5e\x9f\xe7\xea\x95\xd3\x42\xfd\xe7\xe1\xf6\xea\x95\x1f\x5d\x5c\xdc\xfa\xe1\xde\xfc\x68\x31\xd2\x73\x68\xc0\x0a\x80\xf5\x95\x12\xbe\x06\x74\x8d\xe7\x47\x6f\xae\xbc\xfc\xf2\xcb\x8a\xf9\xfd\xa4\x98\x17\x4a\x8e\xdf\xa6\x5e\xdc\x58\x5d\x37\x90\x1e\x94\xde\xa9\xc0\x2a\x64\x67\x63\x5e\x34\x63\x74\x4d\x01\x07\x31\xb6\x3f\xd5\x4f\xac\x9b\xd6\xf6\x99\x02\xfa\x83\x80\xbb\xe7\x1c\x0e\xbe\xc7\xf4\x9c\x72\xa9\x51\x02\xee\xde\x57\x11\x4e\xbe\x4b\x97\x18\xfe\xb4\x6e\x31\xfc\x0d\x4d\x8c\x51\xe0\x92\x6b\x20\x52\xde\x54\x1f\x5f\x19\x1f\x5f\x97\x3e\x21\x20\xe2\xa3\x77\xf1\xa7\x63\x0b\x20\xa2\xbf\xf6\xf6\xf6\xe4\xef\xfc\xce\xef\x00\x00\x80\xf9\x8d\x20\x87\x2e\xd2\x6c\xb6\x35\x79\x0d\x60\xc1\xc7\xd9\xb7\x60\x25\xab\x44\x7e\xe9\x2c\xdf\xb9\x79\x38\xb9\xf6\xf0\xfd\xe2\x89\x0b\xf3\xfc\xe9\xe9\x4a\xbe\x6f\x5c\xc9\x1b\x59\x25\xae\x4a\x0d\xbb\xa2\xf9\x34\x19\x3b\x42\xe3\xe1\x04\xd9\x6b\xc2\x6d\x3a\x35\x4b\x2f\xdc\xeb\xbf\x1b\x24\xd8\x9b\x2d\xdc\x80\x48\x77\x9e\xb7\xae\x6c\xe3\xb4\x6d\xee\x02\x2f\x0f\xe9\x66\x41\x0a\x6d\x4e\x71\x39\xea\x6e\xe9\xa8\x93\x55\x3b\x6b\xdb\x5d\xb3\x4b\x32\xa0\x5b\x60\x01\xe0\x8f\x23\x69\x52\xcf\xee\xb9\x15\x8e\x62\xf7\xbb\x70\xfb\x62\x50\x11\xab\xee\x80\xca\x38\x03\x5f\xcd\xe6\x69\xc1\x68\xd1\xa7\x61\x74\x21\xe0\xa7\xeb\x0f\x28\x35\xc0\xbc\x92\xfa\x70\x95\xe9\x37\x6b\x10\x53\x7d\xf7\xee\xb4\xfc\xf6\x6b\x97\xe6\xaf\xbc\xba\x3f\x3f\xac\xa4\x2e\x41\x40\xd9\x44\x5b\x4a\x80\xf6\x9a\xdb\x1b\x63\xf8\x2a\xf2\x17\x00\xba\xe8\xcb\xef\xff\xfe\xef\xcb\xbf\xfe\xeb\xbf\x4e\x9d\xfb\x94\x77\x8c\x5d\xf3\xd9\x76\x9f\x1d\x0d\x39\x76\x60\x9e\x6f\x52\x7f\x57\x19\x97\x9c\x14\xa0\x17\x92\x1b\x02\x97\x3e\x80\xe1\x4a\x43\xfb\x8c\xea\xc1\x95\x89\x7d\x31\xf5\xe9\x42\xe9\x5c\xed\xe9\x6a\x4b\x2b\x89\x00\x81\x0b\x85\xc5\x34\x44\x28\xb9\x90\x6d\xa8\x4c\xa8\xe1\x62\x75\x8a\x71\xee\x31\x3c\xd6\xa9\x77\x0a\xbf\x75\x11\xf0\x50\x80\xb7\x09\xda\xc1\x89\xd9\x70\x6b\x01\x14\xe8\x80\x09\xbe\xb6\x80\x0a\x00\x48\xa1\xa0\x78\x68\x36\xda\xb9\x7e\x34\xb9\x76\xf5\xfe\xe8\xa9\xdd\x45\xfe\xf4\xf6\x42\x3e\x31\x2e\xb3\x1b\xb9\x12\x97\x9b\xfd\x2a\xcd\x59\x2a\xc2\xfe\xf2\x87\x2c\x07\xf5\x9c\x94\xd9\xd7\x82\x9c\x6c\xe8\x8d\x1f\xc0\x91\x87\x32\x39\x67\x4b\x1d\x37\xf6\xec\x2e\x40\x84\xf5\x14\xc8\x99\x9b\x64\x03\x81\x76\xc7\x4d\x7d\xef\x89\x82\x58\xd8\x89\x94\xc3\xbc\x59\x5d\x80\xd7\x97\x7b\x88\x63\x35\xec\x92\x16\x39\x9b\xc6\x1b\x41\xa2\x4b\x4b\x0c\xad\x5d\x2f\x1b\x08\xf9\x74\x04\x70\xc9\xd5\x00\xd0\x9e\xf2\x3b\xaf\x84\x3e\x5c\xe6\xea\xf6\x6c\xa4\xbe\x7f\xbc\x55\x7e\xf3\x9d\x69\xf9\xdd\x5b\x7b\xf3\x5b\x6f\x5d\x58\x1e\x2f\x73\xbd\x84\x1a\xb8\x94\xe6\xd0\x3b\xc7\x3f\x30\xd7\xcc\xcf\x10\x80\x52\x0a\x70\x84\x12\xa5\x58\xe7\x1b\x5b\xce\xf5\x3c\x36\x2a\x10\xe3\xbc\xb8\xbc\x10\x60\x8a\x79\xb9\x0e\xe9\xe1\xd2\x85\xca\xa4\xfc\x43\xfa\xc7\xbe\xe8\xba\xea\x15\x93\x62\xc1\x1f\x27\x2b\xb6\x9c\x0f\x84\xf8\xee\x43\x2f\xc6\x41\xd9\x66\x9e\xb9\x3a\x38\x46\x40\xec\xc0\xf3\xa5\x10\x8f\xd0\x40\x0c\x81\x90\xd0\xe0\x0b\xd1\x3d\xa8\x34\x04\x28\x0d\x05\x4f\x43\xea\x99\x62\x8c\x7c\xa8\xdb\x99\xfe\xe0\x0f\xfe\x40\xfe\xd5\x5f\xfd\x15\xf7\x0b\xcc\x2e\xc0\x42\xff\xb5\x80\x45\x6b\x9d\xef\x2e\xf2\xc9\xa3\xf7\xc6\x57\xaf\x9c\x14\x4f\xec\xcf\xf2\xf7\xee\xce\xf3\xa7\xb6\x56\xf2\xe6\xa8\x92\x75\x64\xa5\x3b\xfc\x4d\x72\x6f\xf2\xc6\x5d\xe2\xf8\x87\x75\xb2\xac\x45\xc7\x27\xd7\xbe\x90\xae\x7c\xe7\xf4\xbb\xd8\x89\xdf\x11\xdb\x6f\xfb\xd4\x71\xd3\x2f\x8f\x34\x2a\xd4\xe9\xed\xab\x6b\x47\xa3\x41\x68\xc1\xfe\x2e\x51\x48\xaf\x8e\x1e\x9c\xcb\x35\xbd\x36\x6b\x0a\xb4\x35\xc0\x08\x10\x85\x5e\x38\x00\x13\x97\xec\x12\x14\x4c\x41\x7b\x56\x4c\x93\x17\x01\x74\x82\xe2\xa0\x53\xb6\xf9\xbc\xbd\xd4\x00\xa5\x12\x70\x52\x66\xea\x60\x9e\xab\x5b\x27\xe3\xea\x95\x7b\x93\xea\xdb\x87\xdb\xab\xef\xbf\x71\x61\x71\xfb\x60\x67\xd5\x82\x98\xe6\x9f\x42\x11\x19\xe7\x5e\x18\xfa\x49\xb5\xe3\x50\x3b\x53\x26\xf6\x45\x30\x75\x3e\xa7\xbe\x94\xa6\x38\xe6\x58\x07\xeb\x8a\x70\x60\x1e\x3e\xfe\x29\xb4\xb1\x11\x09\x5f\x5f\x6c\x5a\x17\x57\xe2\xda\x2f\xe6\xa5\xdf\xa5\x8b\x6f\x6c\x84\x02\x1d\x9c\x8f\xe7\xe4\xf5\xfc\x7e\xda\x9c\x77\xa7\xa1\x91\x89\x54\x54\x38\xb4\x4c\x0c\x4f\xda\x68\x9c\x8c\xf3\x00\x0e\xb1\x83\xfd\xc7\x0d\xaa\x5c\x3a\xa4\x4c\x94\xde\xc4\xfa\xd0\x87\x3e\x24\xbf\xf4\xa5\x2f\x29\x03\x58\x5e\x7c\xf1\x45\xfc\x8b\xcb\x78\xd3\x2d\xde\xa3\x02\x82\x7c\x0d\x04\x35\x50\x91\x02\x44\x3e\x2e\x65\xf1\xf0\xfd\x62\xef\xca\xc9\xe8\xc6\xfe\xd9\xe8\x99\x4b\xb3\xfc\xe9\x9d\x45\xf6\xc4\xb8\x94\x8f\xe4\x4a\xec\x0b\x0d\x53\x03\x56\x6a\xd6\xe6\x0b\x9c\xce\x49\xb5\xfb\x1e\x8c\xbf\xb4\x96\x22\xf0\x97\x3c\xe8\x4b\x0f\x20\x60\x02\xa0\xf7\xcc\x3c\x72\xee\x0b\xb5\xf8\xc5\x7f\xed\x82\x38\x80\x89\x4c\x00\x10\xa0\xc0\xe8\x4a\xaf\x63\x5d\x73\x7f\x99\xa8\x5f\xa9\xb6\x3d\xc8\xd7\x30\x02\x9f\x1f\x43\x36\xc9\xb6\xcb\x47\x5a\x60\x9c\x05\xed\x31\xff\xa0\x9b\xe8\x12\x69\xf3\x76\xbd\x06\xc0\x3e\xd0\x0e\xda\xe5\x28\x4c\x62\x12\xdd\x3b\x8d\x37\x54\xeb\x86\x31\x77\xe2\xb0\x01\x74\x18\x9d\x75\x9f\xb4\xd3\x98\x56\xa3\xb6\x75\x48\x5e\xab\x79\x59\xff\xbe\x92\x3e\x5e\x65\xfa\xce\xd9\x48\xbd\x7e\x6f\x52\x7e\xff\xee\xb4\xfc\xcf\x83\xed\xe5\x2b\x77\x76\x56\x6f\x1e\x4d\xcb\x93\x4a\x6a\x03\x60\x68\x14\xa6\x6c\xf4\xe6\x0e\xba\xb3\xe6\x65\xc4\x26\x5e\x9c\xd6\x79\xcb\xef\xc9\xf6\xf0\x06\x72\x1d\x53\x9e\xca\x4b\x01\x0b\x31\xcf\x53\x5e\xc6\x53\xea\x8c\x93\x2f\x10\xc0\xb5\x4d\x0c\x40\x1a\x02\xc8\x42\x41\x89\x10\xd8\x70\xe9\x18\xa3\x53\x28\x71\x6d\x2b\x01\xec\x3d\x2e\x58\x81\x50\x4a\x89\xc8\xf8\x94\x0a\x21\x3f\x17\x1d\xc7\x3f\x86\x0f\xd5\xdf\xa5\x53\xaa\x6c\x5f\x59\xd7\x7d\x4c\x8a\x1d\x40\x94\x7f\xcc\x75\xea\x7d\x6c\x3f\xb9\xea\xd0\xa3\x79\xe1\x85\x17\xe4\xbf\xfc\xcb\xbf\x28\x80\xde\x81\x71\xf8\x77\x84\xe8\x61\x70\x00\x68\xef\x8a\xd0\x90\x4b\x0d\xf9\xa8\x92\xc5\xee\x3c\xdb\x79\xe8\x74\x74\xf5\xd2\x59\x7e\xf3\xca\x49\xf1\xd3\x17\xcf\xf2\x27\xb7\x4a\x79\x73\x54\x89\xab\x52\x89\x1d\x51\x7f\xba\x2c\xa9\xc3\x76\x85\xf9\x3b\x87\x66\x42\x06\xda\xda\xeb\xc1\x95\x61\x0a\x23\x67\x15\xff\xb6\xce\x2e\x89\xf4\xe4\xd1\xf3\x5f\xe2\xf8\x02\xa3\x0f\x0b\x74\xcc\xff\x1b\x04\x81\x41\x99\x15\x95\xa0\xba\x52\xb0\x17\x50\xce\x80\x92\x3e\x98\x43\x3d\xa0\x1b\x56\x5c\x1b\x7a\xf8\x5b\x8f\x98\xc8\x8f\xb7\x7d\xf1\xda\x12\x2d\xeb\x08\x37\xb9\xf4\x33\x40\x85\xf2\xc7\xd8\x07\x40\x2f\x95\xa8\xf7\xc3\x2c\x32\x7d\xeb\x64\x5c\xbe\xf2\xce\x76\xf9\xed\x77\xb6\x97\xdf\x7d\x67\x7b\x75\xeb\x60\x7b\x75\x78\x96\xab\xa5\xae\x3f\xad\x36\x00\x86\x5b\x4e\xa2\x3f\x0c\x09\x80\xe6\x9d\x01\x30\x2f\xbc\xf0\x82\xbc\x7b\xf7\x2e\x7c\xf3\x9b\xdf\x34\xcf\x43\x6f\xc6\x21\x7b\x84\x93\xcf\xf6\xa6\x3a\x5e\x97\x03\xe3\xf4\x0e\xd9\xf9\x58\x3f\x82\x53\x0c\x78\xf0\xb5\x09\xa7\x97\xcf\xb7\x50\x1a\xaa\x97\x0b\xd8\xb8\xea\xc3\xf9\x2a\x9f\x2e\xf8\x99\x4b\xa7\x14\x7b\xcf\xf1\xf5\x81\xce\x60\x1f\x08\x70\x37\xb2\x6b\x10\xc4\x0c\xde\x98\xc6\xa4\x4a\x85\x92\xcb\x89\xa6\x94\x89\x41\xc4\x31\x28\x14\xcb\x4e\x41\xae\x21\xc0\xe3\xd3\x21\x54\xe7\x50\xfb\xc4\x1a\x8b\x58\x04\x1e\xd2\x37\x2a\x51\xc0\x62\xfe\x32\x51\x15\xfc\x2f\x07\x0d\xf9\x48\x89\x7c\xba\xcc\xa6\x97\x66\xf9\xfe\xfe\x6c\xf4\xd8\x43\xb3\xd1\x93\xfb\xa7\xf9\x7b\x2e\x2c\xf2\x27\xc7\xa5\xbc\x29\x35\xec\x49\x0d\x13\x00\x91\x73\xfe\xb3\x96\x01\x40\xf7\x4e\x98\x08\x0c\x4e\xf8\x2d\x9a\xdb\xa4\x0a\xd6\xbd\xf5\x8b\x3e\xd0\x73\x58\x8e\xc4\x39\xd1\x16\x28\x30\x1b\x4d\x01\x3c\x3a\x90\xf3\x5e\xfa\x9a\x11\x39\x24\xd2\xd3\x2e\x85\x99\xc8\x03\xd8\x51\x27\xcc\x81\x8b\x0b\xc5\x2e\xe5\xc4\x80\x08\x8c\x1f\x62\xca\xf2\x72\xfa\x67\xd2\xb0\x74\xcc\x67\xd2\xd1\x40\x27\x42\x8f\x96\xc6\xbf\xdc\xa6\xea\x73\x62\xe0\x78\x95\xa9\x37\xcf\x0a\xf5\xca\xdd\xad\xf2\xbb\x6f\xef\x2c\xff\xf3\x60\x7b\xf5\xca\xdd\xad\xf2\xe0\x74\x5c\xcd\x16\x0d\x88\x69\xf6\xc3\x28\x40\x9b\x7a\xa1\x9b\x8b\x0a\xc0\xfa\xd5\x6a\x0b\xc0\x7c\xf2\x93\x9f\x94\x9f\xfb\xdc\xe7\x42\x8e\xcd\xe4\xc5\xd8\xd2\x10\xc8\x01\xc7\x73\x97\x03\xa7\x7a\xb8\xe4\x85\x9e\xc5\xbc\xa4\x51\x39\xb1\x36\x2d\x06\x0c\xa5\xfa\x38\x1f\x7f\x5f\xd9\x21\x76\x38\xd6\x9f\xfa\xe4\xfa\xf8\x85\x5e\x80\x7d\xb4\x6c\x9b\xd2\x88\x0b\x66\x98\x3a\x30\x39\x94\x44\x95\x72\xf1\x8b\xa5\x0b\x01\xa2\x90\x9e\xc0\x5c\xbb\xca\xc5\xea\x10\x5b\x76\xd3\x29\x04\x26\x20\x52\x97\x54\x9d\x63\xe8\x83\x34\x64\xd3\x6d\x0b\x58\xcc\x5f\x26\xd2\x52\x9f\xb7\xa2\xa0\x18\x55\xb2\xd8\x59\xc8\xe9\xde\xd9\xe8\xf2\x95\xd3\xd1\xcd\x2b\x27\xc5\xd3\xfb\xb3\xfc\x7d\x5b\xab\xec\xc9\x51\x25\xae\x09\x2d\x76\x05\xf9\x84\x19\xff\x26\x0e\xde\xc3\x01\xe0\x78\xd3\xe6\x7c\x5c\xf3\xda\x4f\xa3\x1c\x1d\x68\xe0\xf7\xc2\xd8\x40\xc1\xb5\xfc\xc3\xbb\x3c\xfb\x13\x5f\x7c\xdd\xa5\xa0\xa3\xb4\x80\x0f\x0f\xaa\x38\x20\x44\x23\x15\x00\xf4\x0c\x98\xae\xde\xa6\xf6\x00\x82\x2c\xab\xf1\xfa\xf5\x40\xa4\xb3\x5d\xba\xe7\x00\xb4\x35\x6d\x2d\x5c\xbc\xe9\xd7\x40\x6e\x2d\xb8\x27\x7e\x60\xe6\x66\x11\x17\x03\xf3\x69\x50\x8f\x53\x5d\x6a\x80\x79\x29\xf5\xe1\x32\xd7\xaf\xde\xdb\x2a\xff\xe3\xed\xed\xe5\x7f\x1e\x6c\xaf\x5e\x3d\xdc\x5e\xdd\xbe\x3f\xae\x8e\xcf\x46\xf5\x21\x77\x40\x7e\xfc\x11\x01\x1a\xe7\xcf\x0c\x00\xf4\x96\x90\x5c\x2f\xa4\x31\x36\x11\x18\x3a\x9f\x9d\x8a\xb1\xf7\x21\x3e\x29\x3a\xc7\x82\x25\x97\x7f\xf3\x95\xf5\xc9\xc1\xbc\x29\x7f\x57\x39\xaa\xd7\x90\x7c\xca\x9b\xa6\xa1\x7d\x15\x0b\xf2\x62\xf8\xb9\xfc\xb3\xaf\x3f\xad\x88\x8b\x8f\xa1\x0b\x98\x84\x00\x0b\xa5\x89\x71\xb0\xbe\xfc\xd4\x01\xe3\x1b\x88\x1c\xbd\x8b\xcf\x26\x53\xec\x1b\x42\x6c\x99\x75\xcb\xc6\x0c\xd2\x10\xa2\xa6\x74\xed\xf5\xbb\xdf\xfd\x6e\xf9\xf0\xc3\x0f\xc3\xff\xfc\x9f\xff\x93\x6e\xb8\x95\xa4\x2c\xbb\x77\xa5\x01\x2e\xb9\x54\x90\x4f\x4a\x39\xd9\x99\xe7\xbb\x97\xce\xf2\xab\x57\x4f\x46\x37\xae\xd6\xcb\x41\xcf\x4e\x4a\xf9\x64\x5e\x89\xab\xcd\x71\xfb\x32\xf6\x48\x7c\x68\x9f\x85\x0f\x72\x33\x91\x0f\xee\xeb\x15\xfa\x69\xb4\x55\x06\x2d\x83\x18\xf7\x6e\xfe\x6f\xd3\xd9\xf7\xd8\x29\x72\x4b\x5a\x9d\x3e\x60\xfd\x8e\x51\x1f\x10\x74\x57\x74\x89\x2b\x74\xdd\xde\x13\x00\x47\xdb\x94\x03\x70\x4e\x77\xcc\x1c\xca\x37\x6c\x2f\x4f\x42\xea\x85\x49\x5c\x20\x31\x04\x35\xc2\x9a\x06\x81\x9a\x6b\x39\x89\x53\x93\x3c\x03\x80\xb2\xf9\x11\xc8\x5b\xa7\x45\xf9\xad\x83\xed\xd5\x37\xdf\xbe\xb0\xfa\xfe\xdb\xdb\xcb\x5b\xf7\xb6\xaa\xa3\xd9\xa8\x9a\xad\xb2\x1a\xc0\xe0\x4f\xab\x01\x00\x10\x88\x01\xb0\xe7\x6d\x1b\x8d\x79\xf9\xe5\x97\xd5\xbb\xdf\xfd\x6e\xf9\x83\x1f\xfc\x20\x06\x18\xe0\x67\x94\xa7\xeb\x59\x2a\x88\xf1\x01\x80\x4d\xbc\xb4\xf9\x74\x8c\xa1\x5d\x37\xf9\xea\x6d\xe4\xac\x4b\x13\x5b\x36\xd4\xc7\x29\xed\x99\x12\x1c\x18\xe2\x6b\x5b\xe0\xc2\x09\x08\x31\x8c\x75\x70\xa9\x9d\xec\x6a\x54\x20\xd7\x80\xf2\xd6\xe1\x8f\x79\xf8\x3a\xcf\xf5\x7c\x68\x1d\x53\x79\x87\x00\x5d\xaa\xec\x50\x5d\x53\x78\xf5\xf8\x5e\xbb\x76\x4d\x3e\xf3\xcc\x33\xf0\xd4\x53\x4f\x59\x05\xcc\x29\xb7\xf8\xe8\x7d\xb0\x41\x4b\x77\xf6\x8a\x86\x3c\x53\xa2\x18\x57\xa2\xd8\x9d\x67\x7b\x57\x4e\x8a\x6b\xd7\x8e\xc7\x4f\x5c\x3e\xcd\x7f\x76\x67\x91\x3f\x3b\x2e\xe5\xcd\x4c\x8b\x7d\xd1\x9e\xb9\x82\xe4\x04\xdf\xe0\xbb\x37\x6a\xeb\x6d\xdd\xbf\x92\xc0\x94\x88\x7b\x12\xe2\xc6\x2f\x19\x38\x00\x95\x03\x48\xd0\xbb\x78\x40\xd0\x97\x1e\x5c\x7a\x21\x20\xce\x55\x0e\x1f\xee\x66\x6d\x94\x45\xeb\x3f\xf5\x6f\x02\xb9\xbe\xe6\xb1\x3d\xbd\x55\x77\x06\x04\xd0\x9f\x42\xa8\xe9\x3b\x42\xbc\x4c\x83\x15\xc6\x4b\x66\x6d\x5c\xa7\x95\xd9\xc0\x06\x61\xa2\x49\x4d\xe4\x09\x84\x55\xd6\x6e\x03\x0d\xda\x00\xd6\xae\x38\xd3\x8e\x80\x1b\xa7\xad\xb3\x46\x60\xb7\x55\xa5\xad\x86\x06\x05\x30\x5b\x65\xfa\xf6\x59\x51\x7d\xeb\xee\x56\xf9\x8d\xb7\x2e\x2c\xbf\xfd\xe6\x85\xe5\xad\xc3\x69\x79\x38\xaf\x01\xcc\x5c\x0b\xef\x17\x49\xf4\xb7\x90\xf0\x19\x31\xf0\xcf\xff\xfc\xcf\xf0\xbd\xef\x7d\x2f\xd5\x59\xc5\xe6\x73\xcf\x87\x38\xce\x98\x37\x79\x57\xf9\x21\x20\x64\x13\x2f\xb2\x21\x5d\x36\xe5\x47\x43\x72\xb9\x97\xfc\xd4\x17\xd4\x75\x74\xf4\xd5\x33\x08\x26\x05\x7a\x00\xa4\x10\x4e\x31\x51\x0c\x5f\x0a\x45\x3a\x52\x22\x1f\x31\x4e\xdf\x27\x93\x2b\x17\x42\xa0\x9c\x1c\x5f\xfe\xda\x88\x32\x81\xd6\x57\x36\x86\x4f\xec\xdb\x54\x6c\x5f\xc1\x27\x3e\xf1\x09\xf9\xf9\xcf\x7f\xde\xfa\x42\x08\xfd\xa0\x21\x00\x58\x3f\x66\x28\xf1\x3d\x34\xfb\x57\x32\x0d\xf9\xb8\x94\xd3\x8b\x67\xa3\xdd\x47\x8e\x8b\x6b\x8f\xde\x1b\xbf\xef\xd2\x2c\xff\xb9\xe9\x52\xbe\x3f\x57\xf2\x31\xa9\xc5\x0e\x5d\x3e\x01\xc7\x7d\xef\x37\x7d\x9a\xff\x8b\xc6\xeb\x68\xe3\x40\x63\xcb\x74\x61\xfc\x56\x96\x3b\xb2\x63\x2f\x6f\x70\x07\xd7\x79\x9d\x7d\x93\x47\xaf\x3b\x7e\x24\xea\x81\xc0\x01\xd6\xbb\xd5\xb3\xf7\xdc\x3e\xf2\x9f\xd3\xbb\x95\xab\x01\x34\x73\x60\x1c\x5f\x77\x5e\x4f\x67\x72\x44\x22\x58\x3e\x8d\x42\xed\x57\x3f\xc0\x14\x44\x25\x52\xe2\x39\x5c\x5f\x44\x1c\x52\xcc\xf2\x70\xb5\x87\x3d\x96\xe2\xf4\x68\xf3\xc8\x20\x50\x00\xcb\x4a\xea\x83\xf9\xa8\xfa\xce\xbd\x49\xf9\xd5\x3b\x17\x56\xff\x7e\x7b\x77\xf1\xfa\x9d\x9d\xd5\xc1\xd9\xa8\x9a\x95\x99\x9e\x6b\xb0\x36\xf3\x5a\x4b\x48\xd0\xb2\xb1\x52\x7b\x6f\x96\x91\xc6\xe3\xb1\x5c\x2c\x16\x21\xbb\x32\xd4\x8e\xa7\x3c\x07\x86\xd6\x95\x52\x64\xc4\xf0\x48\xe1\xcb\xe9\x39\xa4\xce\xb1\xd7\x3e\x7d\x43\xba\xc7\xf0\xc5\xf5\x02\x08\xd7\x35\xa4\x53\x08\x9c\x7a\x79\x89\x08\x22\xaa\x28\xa5\x0f\x01\x19\xaf\x93\x63\xca\xc4\x0c\xca\x10\x60\xe2\x74\xa3\xe5\xb9\x32\x29\x83\xda\x37\x49\x29\xbf\x94\xc1\xe4\xe2\xed\x42\xa3\x9b\x4e\xa1\xbe\xc3\x34\xbd\xe7\xbf\xfd\xdb\xbf\x2d\xaf\x5c\xb9\xe2\xfb\x75\xe6\xf6\x1f\x39\x92\x3f\x87\xfa\xf7\x82\xf2\x71\x29\x27\x0f\x9d\x8e\xf6\x1e\x3f\x9c\xdc\xb8\x76\xbf\x78\xdf\xde\x59\xfe\xa1\xe9\x32\x7b\x2e\xd3\x70\xb5\xf9\x8c\xd9\xda\xb3\x52\x5b\x74\xd1\xbd\x2d\x33\x9e\x47\x13\xd7\x81\x7f\x80\xd0\x72\x34\x3d\x07\xda\xbd\xfd\xba\x12\x5e\x7d\xb0\x37\x77\xb6\x99\xad\x7e\xdd\x1b\x2e\x80\xe5\x6f\xbd\xbf\xfd\xd3\xbe\xc3\x03\xd4\x35\x64\x37\xdf\xd2\x4f\x8d\xad\xfa\xb7\xb2\x03\xf0\xa2\x39\xb3\xc5\x24\xce\x79\xb6\xed\x47\xda\x91\xd6\xa3\xd7\x4e\xb4\xce\x29\x89\x89\x8c\x38\x7f\x6b\x88\xa3\xf7\x00\x05\x27\x48\x08\xab\xd3\xcf\xb7\xda\x02\xdc\x4d\xdd\x66\xd3\x33\x77\xf0\x98\xe8\x6e\x42\xe7\xc9\x68\x00\xa5\x84\x3e\x5e\xe4\xea\xbb\x27\xe3\xea\xab\x07\xdb\xcb\xaf\xdc\xda\x5b\x7c\xff\xf5\xbd\xc5\x9b\x67\x45\x35\xaf\x04\xd4\x67\xc2\x08\xef\xcf\x0b\x00\xbd\x36\xd1\x26\xf3\xcb\xd4\x4c\x1a\x6a\x27\x7f\x52\xf8\x50\x7b\x1a\x0b\xbe\x62\x5f\x2e\x87\xea\x63\x52\xa8\xdd\x87\xe8\xef\xe2\x1b\x0b\x6a\x4c\xf9\x90\x5f\x0f\xc9\xf1\xf9\x67\xef\x4b\x32\x9d\x4a\x2e\x20\x80\x93\x0b\x30\xa4\x22\x2e\x2c\x8f\x73\xfc\x94\x37\x97\x62\xe4\x71\x1d\xeb\xe3\x79\x9e\x29\x76\xb0\x9f\xb7\x7c\x1f\xf2\x5f\x7b\x42\x32\x5f\x0a\x49\x72\xdd\x82\x15\xad\x75\x2e\x84\xc8\x01\x20\x1f\x95\xa2\x78\xf8\xa4\xd8\x7f\xe2\x9d\xc9\xcd\x6b\xc7\xe3\x9f\xbf\x38\xcf\x3f\x3c\x59\xc9\xf7\x65\x5a\xec\x73\xd1\x06\xf3\x96\x8e\xf3\x69\x84\xc2\x84\xd8\xb9\x90\x7e\xc7\x86\x46\x69\xa8\xbf\xe9\xfe\x8f\x79\x77\x0e\x9c\xe6\xf3\x91\x14\x57\x8a\x73\x9c\x68\x53\xb1\x75\x9c\x3d\x17\x31\xe9\x74\xe0\xee\x31\x77\x0c\xda\x00\x03\x2b\x86\x47\x28\xea\xc3\xe9\x4f\x23\x24\x01\x3f\xde\x4f\x3a\xbd\x5c\x04\x5e\x70\xea\xee\xa6\xef\x00\x72\x7d\x3b\x20\x14\xc3\xc8\x71\x83\x54\xfc\xdc\x5f\x0b\x3c\xce\xb5\x00\xd0\xa0\xe7\xab\x4c\xbf\x3e\x2b\xaa\x2f\xbf\xb3\x5d\xfe\x8f\x57\xf7\xcf\xbe\xf5\xea\xfe\xfc\xce\x69\x51\x99\xe5\xa3\x25\x80\x15\x79\xe1\xbe\x46\x02\x7c\xed\xd9\xc0\xeb\xca\x4b\x89\x0c\x84\xa2\x0f\x31\x3c\x37\xa1\x53\xac\x2c\x4a\x67\xd2\x50\x60\xe0\x92\x11\x7a\x29\x76\xc9\x89\xe5\x1f\x92\xe1\xe3\x1b\xa3\x6f\x48\xaf\x21\x01\x0a\x05\x90\xfe\xf2\x13\xab\x18\x4e\x21\xc5\x28\x4d\x4c\x65\x62\x78\x73\xfc\x5c\xe8\x94\xa3\x1f\x82\xf0\x43\x03\x3c\x84\x8a\x39\x5a\x97\x5e\xa1\xbc\x98\xe7\x31\xbc\x9d\x75\xb9\x70\xe1\x82\xfc\xbd\xdf\xfb\x3d\x00\x00\xf8\xb3\x3f\xfb\x33\x6e\xf3\xad\x04\x00\xd0\xe4\xcb\xa0\xe6\x9f\x39\x34\x2e\x1f\x57\xb2\x78\xec\x68\x7c\xf9\xe6\xe1\xe4\x99\xab\x27\xc5\xf3\x17\xe6\xf9\x07\x27\xa5\x7c\x4a\x6a\xd8\x07\xa0\x4b\x2d\xf6\x92\x46\x78\x97\x85\xfd\x04\x87\xe8\x7d\xee\x20\xda\xb1\xe2\x32\x6c\x54\xc3\xbf\xfc\x40\x97\x85\x9c\x74\x10\xaa\x37\xd5\x61\x18\x70\xe2\x97\xb2\xf8\xcf\xc3\x53\xbe\xd3\xc1\x07\xce\xd1\xbd\x31\x5d\x14\xa5\xb9\x6b\xcf\x8c\xd1\xcd\x2d\xe7\xda\xa1\x3d\xdb\xc5\x84\xc9\xda\xf3\xe9\x18\x90\xea\x5c\xbe\xd1\x80\x0f\x83\x63\xeb\xde\x1d\xb6\xd2\x45\xb4\x70\xe4\xc8\xe2\x49\x0f\xd4\x43\x51\x32\xac\x0c\x62\xd9\xfc\xc0\x64\x17\x19\x03\xe8\xd7\x19\xb7\x21\xae\x53\x57\x7d\x0c\xa2\xdb\xff\x2f\xcb\x4c\xdf\x3e\x2d\xaa\x7f\x3b\x9c\x96\x5f\x7a\xfd\xd2\xfc\x3f\x5e\xdd\x9f\xdf\x3e\x9e\x94\x33\x6d\x22\x30\xf6\xa1\x76\x66\x0f\x0c\xb8\x96\x92\x3c\x87\xd8\x0d\x75\x94\x9b\xce\xe7\x9e\x0f\xe5\x9d\xea\x88\x53\x68\x86\xe8\x97\x6a\xef\x53\x80\x5b\xaa\x4f\x1a\x02\x60\x86\xf6\x65\x2f\x99\x69\xe0\x03\x1b\x31\x8d\xc0\x25\x8a\x0e\x53\x1c\xba\x8f\xa7\x4b\x37\xaa\x77\x0a\xff\x18\x3e\x3e\x3d\xd6\xa5\x0b\xd1\x6f\x62\x02\x6d\x6c\xd0\x3c\xf6\xd8\x63\xf2\xd6\xad\x5b\x0a\x00\xe0\xc5\x17\x5f\x94\x00\x96\xa1\x95\xe8\x2f\xfe\x97\x03\x80\xf9\x65\xe6\x5c\x08\x91\xe7\x95\x28\x6e\x1e\x4e\xae\x5e\x3f\x1a\x3f\x73\xe5\xa4\x78\x7e\x77\x9e\x3d\x37\x2e\xe5\x93\x99\x12\x7b\x02\xa0\xb0\x5d\x89\x9d\xe8\xef\xee\xe0\x28\x88\x71\x13\xee\x08\x0b\x9f\x58\xc7\xd6\x5c\x68\xf4\x25\x0a\x0b\x32\xa8\x2c\x14\x65\xb0\xf5\x8b\x88\xfa\x90\x28\x43\x4f\x80\x89\x34\xa1\xa5\x31\x27\x48\xf1\x9c\x68\xdb\x53\xb7\xd9\x2f\x42\x97\x8a\x7c\x7a\xd7\xc5\xf8\xbe\x70\xb6\x27\xa3\x8c\x5b\x7f\xe8\x9d\x5c\xcc\xd1\x50\x61\x6e\x30\xc1\x30\x0a\x20\xbc\x36\x6a\x24\xdc\xf5\xf1\x43\xd5\xb8\x28\x50\x4a\x10\x87\x03\x60\x36\x36\x6a\x47\xb9\x52\x02\x66\xab\x4c\xdf\x3a\x29\xaa\x6f\x1c\x4e\x57\x5f\xf9\xd1\xde\xe2\x1b\x3f\xdc\x9b\xdf\xbe\xbb\x55\x9e\x68\xd9\x03\x30\xd6\xf2\x11\x3e\xc8\x0e\x6f\xe0\x8d\x38\x85\x37\xf5\x05\x10\x22\x69\x38\xfe\x30\xa0\xdc\x26\x69\x37\xf5\xb2\x1b\xeb\x27\x63\x68\x01\xfc\xed\xe3\xcb\x1f\xd2\x07\x0f\xd2\x1f\x82\x80\xfe\x00\xf0\xa5\xd0\x1b\x7f\x08\x95\xb9\x10\x23\x40\x5a\x85\x28\x7f\x1f\x1f\x6e\x80\xbb\x80\x5a\x8c\x2e\x31\x83\x62\x68\x5a\x97\xdf\xd0\xf2\x83\x06\x9e\xd9\x7c\x6b\x9e\xd1\x7d\x2c\x24\xd2\x52\xff\x6b\x4e\xba\x7d\xf2\x60\xeb\x91\x77\x1d\xb7\x80\xe5\xfd\x93\x95\xbc\x99\x2b\xb1\x5f\x03\x16\x21\xdd\xa1\x74\x3b\xf9\xc1\x40\xf3\xcc\x38\x7a\x86\xce\x77\xd6\x4a\xeb\xcc\xd1\x1e\x99\xb0\xef\xec\x03\x27\xfc\x97\x82\x03\x2f\xf8\x61\xf8\xe1\xf2\x34\x1a\xe2\x02\x24\x3d\x1d\x3c\x74\x7c\xdd\xdc\x9f\x7b\x63\xc9\xec\xbe\x1b\xe0\x97\x3a\xb8\xe8\x12\x20\x80\xe2\x72\xcc\x3c\x00\x08\xa1\x1f\x2c\x87\xd9\x1b\xc3\x61\x19\x07\x88\x60\x01\x6a\x68\x80\x86\xc0\x88\x4b\x7d\xd2\x79\x61\xd0\x84\x4e\x52\x46\x91\xad\x66\x43\x76\x59\x09\x38\x59\x66\xea\xd6\xc9\xb8\xfa\xd6\xe1\xf6\xea\x6b\x6f\xec\x2e\xff\xe3\x87\x7b\x8b\xd7\x0f\xb7\x57\xc7\xd0\x2c\x1f\x81\x03\xc0\xa0\x6b\x36\xfa\xb2\xb3\xb3\x23\x4f\x4e\x4e\x0c\xdd\xb9\xbf\x71\x83\xff\x65\x9b\xf2\xe5\xec\xa2\xcf\x8f\xc5\xc8\xa6\xfe\x0c\x98\x6b\xae\x4c\x48\x2f\x97\x0c\x8e\x8f\x8b\xbf\xb9\x37\xc9\xe5\xdf\x5c\xfe\x33\x55\x46\x8c\xbf\xe4\x52\x4a\xc4\xc7\x4a\x06\xb8\x18\x26\xa1\xeb\x18\x05\x70\x4a\x41\x90\x38\xcf\x37\xd0\x52\xd0\xea\x26\x68\x63\xf4\x76\xd1\x01\xa3\x73\xa8\x4c\x2c\x02\x0e\xb5\x47\xaa\x9c\x60\xfa\xf5\x5f\xff\x75\xf9\xf7\x7f\xff\xf7\xca\x75\xda\x2d\xf3\x0f\xff\x42\x73\x91\x57\xa2\x78\xf4\xde\xf8\xf2\xa3\x47\xe3\xf7\x3d\x72\x5c\xfc\xfc\xee\x3c\x7f\x76\xb2\x92\x37\x73\x2d\xf6\x85\xb6\x8f\xe3\x07\xb0\x23\x1e\xae\x97\x64\xfe\xcb\x1d\xf2\x06\x4a\x22\x18\xfd\xe8\x06\x0f\x4a\xe8\xb2\x0b\x18\x99\x78\xa9\x80\xf3\xc0\x74\xa9\x06\x45\x5f\x62\x7c\x1c\x07\x7e\xdc\xb4\x71\x00\xaf\x57\x3a\xe2\xf7\x07\x38\xe7\xe8\x03\x47\x3d\x3a\x12\x2d\x71\xeb\x48\xe0\x4d\x2f\x7a\xc0\xf0\xc7\x7d\xe0\xd0\xcb\x55\x21\x17\x10\x6a\xc9\x4c\x17\x46\x36\x6a\x77\x2a\x6f\x54\xb3\x46\xd5\x93\xcb\xf3\x5d\x03\x70\xfd\x63\x2b\xa4\x6b\x5d\x97\x4a\xc2\xf1\xa2\x06\x30\xdf\x39\xd8\x5e\x7d\xed\xf6\xc5\xc5\x37\x6e\xed\xcd\x5f\xbf\xb7\x55\xcd\x00\xec\x08\x0c\xd9\xfb\x42\x41\x4c\xcd\x57\x6b\xba\x79\x37\xf4\x42\x19\x63\xcb\x69\x19\x2e\xdf\x65\x2f\x5d\xf2\xb8\x32\xbe\x97\x6b\x00\xb7\x9e\x14\x18\xc4\x00\x21\x9f\x73\x4e\x01\x11\x2e\x5d\x01\xfa\xba\xbb\xea\x0c\x90\xae\x43\x4c\xdb\xba\xf8\xfa\xf4\xc1\x34\xae\x3a\x58\xb4\x5c\xc4\xc5\xd7\xf8\x1c\x8a\xa3\xf9\xdc\xb3\x10\x40\xe1\xca\x71\x89\x03\x50\xae\x41\xe6\x1b\x88\x3e\xbd\x42\xfa\xac\x0b\x6a\x86\x94\x4f\x19\xe8\xbe\xb2\x29\x20\xa8\x97\x68\x84\x85\xfc\xc5\xfb\x57\x24\xd9\x74\x3b\x79\x68\x36\xda\x7b\xf4\xde\xf8\xc9\x47\x8f\xc6\xcf\x5f\x3e\x1d\x7d\x60\x6b\x25\x9f\xca\x1a\xc0\x22\x40\xd8\xed\x8e\x22\x24\x00\x00\xa2\x39\xf9\x14\x20\xec\xa4\x7b\x38\x82\xd2\xea\x06\x18\x20\x7e\x2e\x46\xf8\xd3\x5f\x27\x3f\x26\xa6\xc0\x82\x0a\xe7\xe9\xad\x5d\x19\x68\x23\x3d\xee\x28\x0a\x06\x37\xf4\x8b\x9e\x5e\x64\xc7\xda\x6b\x41\xda\xce\x75\xe4\x3c\xf2\x75\xbd\xe8\x04\xf7\xe6\x8f\xdf\xec\x7b\xbc\x9a\x3a\x93\x72\x6d\x19\xce\xd1\x33\x20\x8f\x75\xd8\x3d\xa7\x4f\xfa\x8a\x03\x26\xb8\xce\x4c\xc3\xf6\x64\x06\x96\xd9\xb8\xfa\x02\xd3\xe6\x4e\x80\x42\xc6\x84\x97\x37\x49\x6e\x40\x4b\xc6\x4e\xbb\x77\xa6\x53\xcd\x00\x98\x4a\xc2\xd1\x32\x57\xb7\x8e\xc7\xe5\x7f\xbc\x79\x61\xf9\x95\xdb\x17\x17\xff\xf1\xda\xfe\xfc\xd6\x32\xd3\x73\xe8\xf6\xc0\x28\xe8\xf6\xbe\x94\xe6\x67\x03\xc8\xb9\x2f\xad\xcd\x78\xf9\xe5\x97\xd5\x23\x8f\x3c\x22\x6f\xdf\xbe\x3d\xe4\xc5\xd0\x17\x5d\x70\x39\x69\x00\xde\xfe\x03\x43\xeb\x02\x25\x94\x17\xe7\x3f\x7c\x72\x7c\x75\xa0\xf9\x2e\xfd\x7d\x3e\xcb\x55\xb7\x98\x7a\x86\xea\x00\x4c\x59\xac\x1b\x27\xcb\x07\xca\xf0\xbd\x2b\xc5\x82\x48\xaa\x6f\x7b\x1f\x7a\x39\x78\x90\x8e\x78\x48\x4a\x75\xf4\x90\x90\xbf\x49\x7d\xa8\x9c\x4d\xd5\x3f\x55\x07\xdf\x73\xb6\x1d\x3e\xf8\xc1\x0f\xca\x2f\x7f\xf9\xcb\x38\xca\x62\x6d\xc0\x25\xe7\xb0\x98\x25\x21\xa9\xb5\x2e\x46\x4a\x16\x17\xcf\xb2\xbd\x6b\xf7\xc7\x37\x1e\xb9\x37\x7e\xf6\x5d\xc7\xc5\xf3\xdb\xcb\xec\xd9\x51\x25\x1e\x11\x00\x53\x1c\xe5\xb0\x6d\x3e\x0a\x7e\x13\xdf\xd1\xfb\xfc\xb7\x79\xed\x8e\x0d\xe1\x47\x45\x2a\x1a\x70\x13\xbb\x41\xd2\x06\x04\x10\x88\x2e\x40\xcf\x89\x38\x81\x16\xba\xb1\xc1\x42\xfd\x37\x6a\x29\x23\x22\x61\xdd\x7d\x11\x03\xd6\xe1\x23\x9d\xd8\xfd\x19\xa6\x3d\xcc\x29\xbf\x9c\x07\x37\x20\x11\x7f\x8a\x4d\xf6\xcd\xd4\xf7\x46\x4e\xd7\x28\xfd\x3d\x44\x26\xd3\x6c\xa4\x65\x7e\x7b\x48\x77\x4b\x81\x1d\x2b\x74\x30\x9e\xb0\x41\x0b\x3e\x24\x8e\xfb\xa5\x68\x1a\x65\xc3\x27\x2c\x5b\x87\xd7\x39\x42\x3e\x6d\xc4\x44\x98\xbe\x25\x9f\xe9\x1b\x16\x40\xea\xdb\xed\x4e\xb6\x78\xb2\xa0\x93\xe9\xa3\x0e\xc0\xe8\xc3\x79\xae\x5e\x39\xda\x2a\xbf\xfe\xea\x43\xf3\x2f\xbd\xb5\xb3\xfc\xee\xdb\x17\x96\x07\x8b\x4c\x2f\x35\xe8\x25\x00\x94\xe6\xf0\x3a\x40\x40\xa6\x61\x63\xfd\x8d\x8c\xbe\x18\x7a\x9f\x23\x8e\x01\x25\x43\x00\x84\x2b\xa5\xda\xcd\x50\x14\xc3\x07\xba\x42\x00\x8e\xca\x08\x01\x13\x5a\x06\xc0\x2d\x8f\xe3\x81\x69\x38\xf9\x21\x5d\x7d\x6d\x11\x02\x42\x2e\x39\xde\xb6\xc1\x23\x3b\x36\xb2\x12\xd3\x01\x31\xa8\x0d\x27\x57\xd4\x84\x2b\x0b\x9e\xfc\x10\xa2\x8e\xa1\xa7\xf9\x9b\x04\x18\x29\xfc\x52\xdb\x94\xcb\x0b\x0d\xbc\x5e\x3f\x34\xbf\x0f\xa4\x00\x00\xfe\xf8\x8f\xff\x58\x6e\x6d\x6d\x71\xf4\x92\xf9\xd7\xee\x63\xc9\x14\x14\x3b\x8b\x7c\xe7\xca\xc9\xe8\x91\x47\xee\x8d\xdf\xf7\xe8\xbd\xf1\xf3\xbb\xf3\xfc\xb9\xa2\x12\x37\xa4\x16\x3b\x86\x4f\x1f\x30\x60\x07\x60\x7f\xe6\x8b\xa3\x08\x76\x68\x5c\x37\xd7\xdd\xbb\xaa\x66\x8d\x77\xe3\x21\x2c\xcb\x6d\x3b\x1c\xfe\x6d\x97\x8f\xa8\xb4\xfa\xa3\xc8\x8c\xf3\x0c\x8f\x88\xe4\xe4\x8f\x28\x68\xfc\x87\x46\x30\x00\x80\x8d\x62\xb8\xda\x8b\x46\x23\x42\x11\xa1\x90\x3e\x1c\x7d\x7a\x14\xa1\xdf\xde\x7e\x7a\xca\x98\xd3\x34\xae\x2b\x86\x80\xbe\x60\x69\x26\xdb\xee\x0f\x4f\x64\xa9\xc5\x36\xfc\x27\xef\xbe\x68\x4f\x8c\x6a\xdd\x63\x0d\x1a\x60\x5e\x49\x7d\x30\x1b\xa9\x6f\xdd\xb9\xb0\xfc\xb7\xd7\xf6\xe7\xff\xcf\x9d\x9d\xe5\xab\xf7\x26\xd5\xd1\x32\x57\x73\x05\x7a\x69\x3e\x9d\x06\xe8\xfd\x26\x92\x42\x20\xd1\x05\x60\x70\x0a\xd9\x2d\x57\x5a\xc7\x4e\xfb\x6c\xa1\xcb\xdf\x85\xf4\x75\xd1\xc7\xe8\x10\x4b\x13\x0b\x18\x7c\x91\x1c\x7c\x1d\xfb\xe2\x1a\x13\xfd\x08\xa5\x50\x9b\xa7\x02\xbf\x36\x65\x8c\x92\x9a\xfc\x33\xcf\xf1\x9c\xa1\xcf\x70\x59\x20\xcf\x01\xe5\x61\xfe\x86\x9f\x62\xca\x08\x86\x1e\xeb\x21\xa0\x2f\x83\x36\xb4\x29\x8f\xe5\x63\xbe\x02\xd1\x63\x3d\x0c\x2d\xfe\x6b\xf8\x6b\x72\x2d\xa1\x5f\x4f\x8e\x9e\xf2\xc5\x34\xb4\xae\xb4\x2e\x1a\xdd\x0b\x42\x03\x24\x8f\xde\xfb\xda\xca\xd4\x9f\xf6\x67\x4b\xf7\xe1\x0f\x7f\x58\x10\x7a\xa9\xb5\x16\xcd\x12\x90\x68\x96\x83\x46\x50\x03\x96\xb1\x54\x50\x4c\x97\xd9\xce\x95\x93\xe2\x91\x9f\x7a\x67\xeb\x67\x9f\x7a\x7b\xfa\xd1\xc7\x8e\xc6\x1f\xbf\xb0\xc8\x7f\xbe\x50\xf2\x31\x09\x62\x0b\xcc\x3b\x22\xda\xa4\xd0\x76\x0c\x5e\xbe\x31\x20\x03\xdb\x63\xf3\xc6\x8e\xde\x68\xf1\xff\x01\x00\x74\xe3\xb5\x6b\x21\x1d\xbf\xee\xe5\x14\xbd\x19\x13\x47\x4d\x1b\x8e\x7b\x6b\x15\xc8\x5d\x77\x6f\xe5\xcd\x1b\x3e\xe0\x4d\xb3\x00\xe6\x00\x13\x81\xbf\x7d\x6d\x28\xad\xb7\x63\x53\x67\x22\xd3\xd2\x07\x81\xae\x7e\x87\xe3\x3a\x77\x00\xc5\x80\x29\xb3\x61\x43\xa0\xff\xda\x76\x36\x72\xdb\xb6\x68\x80\x43\xe3\x39\xe9\x39\x35\x1d\xc0\xb1\x5d\x28\x05\x7a\x86\x9e\xfa\x4b\x7a\xdf\xb5\x88\xad\x15\x6d\x0f\x0e\x08\xb5\xbc\x2c\xa6\x4d\x2d\xda\x71\xd3\x5f\x42\x62\x4f\xe8\x45\xcb\x57\x16\xb9\x63\xc9\x8d\xde\xdb\x87\x14\x22\x2a\x06\x30\x98\x76\x14\xa4\xcd\xe9\x58\x04\xa2\x7f\x3b\x8e\xbb\xe1\x83\xc4\x79\x90\x09\xd7\xe8\x76\xe7\x83\x10\x22\x97\x1a\x76\x8b\x4a\xbe\xeb\xc2\x22\x7f\xfc\xa1\x59\x7e\x79\xba\xcc\xc6\x52\x0b\xad\x84\x2e\x2b\x09\x5a\x35\x83\xbf\xb1\x01\xd0\xfc\x15\xa2\x69\x20\x21\x5a\xad\x04\x00\xe8\x0f\x7e\xf0\x83\xe2\xc6\x8d\x1b\xe2\x3b\xdf\xf9\x0e\xb5\x9b\x9c\xcd\x0c\xd9\x53\xac\x39\xf5\x13\x9c\x5d\xa5\xfc\x5c\x36\x12\xf3\x75\x39\x64\xaa\xbf\xc9\xe3\xf2\x5d\x75\xe0\xfc\x24\xa5\xe5\x40\x45\x2c\x2d\x1d\x11\x00\xfd\x3a\xd2\x3c\xcc\x13\xfb\x43\xdc\x16\x94\x07\xe7\x47\x5c\xed\x00\xe8\x39\xe7\x7b\x71\xd2\x60\xf7\x19\xe6\xdb\xd3\x99\x0e\x69\x17\x42\x03\x46\x10\x57\xc6\x97\x86\xa0\x62\x9f\x5c\x17\xcf\x14\xc4\x1a\x43\x93\x52\xff\xd8\x37\x80\x75\xda\x6c\x08\x6f\x6f\xde\x78\x3c\x96\xfb\xfb\xfb\xf0\xc6\x1b\x6f\xf4\x36\xde\xd2\x73\x59\xd0\xd2\x50\xfb\x95\x10\x00\xe4\xe3\x52\x4c\x2e\xce\xf3\xfd\x47\x8f\xc6\x37\x6e\x1c\x4d\x9e\x7f\xe8\x74\xf4\xe1\xad\x95\x7c\x26\x57\xe2\x32\x80\xc8\x2d\x00\xd2\xa4\xd0\x17\x31\x1d\x9d\xeb\x99\xfd\x84\xa3\x0b\x7d\x62\xea\xfa\xcd\x1d\x4a\xe3\x73\x5e\xbc\x66\xee\x13\x51\x63\xca\x07\x13\xc3\xa4\xb7\x14\x80\xee\x75\xf3\x3f\xeb\x3e\x5a\x8f\x61\x1a\xb7\xa5\x9a\x0b\x7c\x6f\xfb\x5a\xbe\x75\xec\x4d\xb2\x1d\xa0\xa2\x4b\x87\xf6\x8f\x58\x82\x0d\xba\x1a\x7a\xeb\xbc\x9c\x36\xcf\xbd\xd4\x68\xef\xdd\xb1\x79\x61\xad\xeb\x36\x6d\x74\x03\xcc\x5f\xdb\x20\xda\x12\xd0\xd1\x43\x0b\xa8\xbb\x9f\x91\xb0\x4f\x25\xee\xea\x82\x75\xa3\x7b\x8f\xb4\x17\x64\xe2\x7a\x35\xcf\xe9\x6f\x07\x34\x3c\xcc\xbd\x12\xfa\x64\x99\xe9\x57\x8f\x27\xe5\x97\x7f\xb4\xb7\xf8\xd2\xeb\x7b\xf3\xef\x1c\xec\xac\xee\xcc\x46\xd5\x89\x92\xb0\x6c\xf6\xbb\xe0\xbd\x2f\x78\xdf\x4b\xef\xd7\xa8\x07\x1c\x60\xe7\xca\xe3\x9e\xb9\xa2\x03\x31\xcb\x2a\x43\x96\x48\x5c\xbe\x31\x36\xc2\x4d\xf5\xa2\x79\xb1\xfa\x85\xa2\x16\x2e\x99\x21\x5d\x37\xe5\x57\x5d\x72\x62\xfc\x64\x54\xc4\xc5\x24\x0e\x11\xf9\x90\xa8\x29\xc3\x09\xc5\x08\x8b\xa2\x29\xfc\x17\xd3\x51\x45\x5d\xe8\x8e\x8b\xc4\x50\x1e\x26\x51\xa4\xc7\xe9\x4b\xf9\x62\x99\xb8\x9e\x1c\x9a\xe6\xde\x00\x5c\x28\x14\xd7\x0d\xc8\x73\x0e\x89\x53\xbd\x5c\x65\x7d\x75\xc1\xc8\x97\x45\xb1\x4f\x3f\xfd\xb4\xf8\xc1\x0f\x7e\x80\x7f\x5b\xa8\x8d\xb0\x00\x80\x10\x42\x64\xe6\xbe\x01\x2c\x23\x21\xc4\x08\x34\x8c\x32\x0d\xe3\xe9\x2a\xdb\xb9\x71\x77\x72\xfd\xd9\x37\x76\x7e\xf1\xa7\xde\x99\xfe\xd6\xe5\xd3\xd1\xc7\x27\xa5\x7c\x26\xd7\xf2\xa2\x68\xbe\x14\xa2\x7b\x09\x00\xa0\xd9\xd3\xd0\x7d\x91\x21\x00\xd8\x33\x3b\xb8\x37\xdc\xfe\x13\xde\xb5\x0a\xd7\x03\xf3\x3c\x04\x5a\x1a\x1a\x73\x4d\x65\x21\x9f\x8a\x68\x34\xf9\xc5\xe6\xfe\xa2\x8a\x7d\x47\x00\x58\x2f\xd2\x63\x7b\x7e\xdb\xe9\x77\x8f\x5b\xd7\x89\xa3\x39\x4d\xbe\x00\xdb\xb9\x9b\x7f\x6c\x7d\x7b\x6e\xdc\xa1\x2d\xae\x37\x06\x06\x84\xbf\x69\x8a\xf6\x99\xe8\x68\xfb\xfc\x11\x90\x6d\x0a\xd4\xe5\x1b\xa7\xdc\x54\xaf\xe3\x29\x6c\x5e\x6d\x24\x43\xb4\xec\xcc\xf8\x33\x34\xa6\xed\x04\xca\xa4\x93\xd8\x8c\x0b\xdd\x28\x22\x10\x2f\xa3\x53\xc7\x5f\x20\x1e\x06\xf0\x74\x11\x98\xae\x1f\xec\x3a\x1a\xbd\x4c\xfd\x04\x34\x75\x03\x61\xcb\xec\xfd\xc8\x24\xe9\x0f\xa2\x43\xbb\xa4\x6a\xed\xc3\xe9\x9a\xb9\x89\x8f\xb4\xa3\xd2\x44\x23\x4d\x9d\xeb\x89\x2f\x8a\x5c\x89\xcb\x5b\x2b\xf9\xee\xbd\xb3\xfc\xb1\xbd\x79\x3e\xc9\x95\x58\xae\x32\xbd\x5a\x65\x5a\x35\x16\xa2\x7e\xfb\x6d\x7e\x87\xcc\x44\x5e\x9a\x7d\x3d\xba\xb9\x17\x00\xa0\x9f\x7f\xfe\x79\xf1\x95\xaf\x7c\x45\xef\xed\xed\xc9\xc9\x64\x02\xcb\xe5\x52\x68\x6d\x8e\x0c\x6c\x35\x34\xc9\xd8\x1f\xda\x35\x38\x71\x65\xe9\x14\xd5\x8e\x67\x1c\x0f\x9c\xb0\x1d\xe6\x7c\x1f\xc5\xfd\x9c\x0c\x5a\x1f\x0d\x7d\x7d\x28\xd0\xa0\xba\x70\xba\x51\x79\xae\x28\x90\x49\xd8\x7f\xbb\xf4\xa3\xed\x10\xd3\x56\x2e\xdd\x80\xe8\xe4\xeb\x27\x97\x8f\x0c\xe9\xd7\xb3\x5d\xeb\x20\x32\x17\x9f\x21\xf7\xa9\x29\x84\x74\x53\xf5\xc3\x79\x43\x74\x0b\x21\xd6\x10\x6f\x1f\x92\x8e\xe1\xe3\x43\xb6\x12\x00\x54\x9e\xe7\xb2\x2c\x4b\x05\x10\xfc\x5a\x48\xa2\x7f\xf5\x11\xfd\x20\x72\x51\x7f\xde\x3c\xd9\x9f\x8d\x76\x9f\x7e\x7b\xeb\x99\xc7\x0f\xb7\x7e\xfd\xc2\x3c\x7b\x21\x57\xe2\x9a\xd0\x62\xd2\x6d\xa4\x84\xde\x9b\x7f\x37\xdb\xf9\x37\x49\x36\x4a\x62\xbf\xce\x5a\x65\x00\x1a\x63\x4e\x36\x54\x0a\x61\x9f\xbe\xd2\xb1\xb0\xe5\x50\xa4\x49\xbf\xc8\xc1\x5a\xf7\xa2\x2f\x68\xc3\x66\x7b\xaa\x2a\xb8\x37\xf6\x52\xe7\xde\xff\xfd\x22\xf7\x6f\x0f\xb1\xa7\xe2\x52\x13\xda\x03\x1d\x1c\x10\xea\xf4\xe9\x45\xc1\x7a\xb2\x7c\x75\x47\xfd\xca\xf5\x19\x95\x8f\x94\xee\x1c\x70\xb3\xeb\x46\x37\xe0\x44\x34\xc0\x49\x37\x51\x07\x32\x1e\x2c\x39\xba\x03\x38\xd6\xb8\x62\xfa\x0f\x3b\x7c\xab\xed\x11\xea\xb1\xa2\x6f\x06\x24\xd2\x7a\x69\xe8\xe9\xd5\x3b\xe1\xd7\xd0\x20\x10\xc9\x45\x4e\x1a\xcd\x7a\x73\x00\xa0\x03\x64\x86\x17\x5d\xc6\xa2\xe3\xc6\x44\x50\xec\xa8\x8d\x05\x03\x3b\x79\xe6\x97\xb2\x2d\xfd\x85\x55\x4f\xdc\x67\x5a\x80\x2a\xa5\xbe\x73\x5a\x54\x5f\x7f\xeb\xc2\xf2\x1f\x5f\x79\xe8\xec\xab\xb7\xf6\xe6\x6f\xce\x46\x6a\x46\x0f\xb0\xe3\x7e\xc0\x91\x46\x5f\x00\xea\x08\x0c\xde\x4f\x07\x71\x36\xdc\x17\x9d\x70\x95\xf3\x45\x21\x70\x7e\x28\x1a\xe2\x93\xe3\x8b\xf8\xa4\xe8\xef\x2a\x47\xf3\x5d\xf2\xa8\xae\x43\x22\x5b\x31\x75\x4b\xe1\x3f\xc4\xc7\x85\x74\x82\x9c\x30\x73\x11\x52\xc1\xa9\x8e\x9c\x56\x7c\x5d\x7e\x38\x49\x72\x3f\x84\x97\x6b\x80\x05\x01\x00\x43\xe7\xd2\x8b\xca\xa3\x00\x81\x0e\x40\xcc\x97\xe3\xcd\xe5\x53\xbd\xf0\x5f\x5c\x06\x7e\xe1\x17\x7e\x01\xbe\xf8\xc5\x2f\x5a\x05\x9b\x03\xe3\x00\xc0\x3a\x4c\x2e\x6f\x22\x30\xe6\xf3\xe6\x42\x00\x14\x17\x16\xf9\xf4\xdd\x07\x93\x1b\x4f\xbe\xb3\xf5\xa1\x2b\x27\xc5\x6f\x16\x95\x78\x56\x68\x51\x00\x20\x47\x62\xbd\xe1\x35\xd7\x80\xaf\x6d\xb3\xda\xee\xed\xc0\x06\xd4\x94\x69\x7d\x28\xf1\x8e\xe8\xad\x12\x7f\x7a\x2b\xda\x42\x7d\xd9\xed\xdb\xa9\xb0\xf3\x3b\x96\xbd\x9c\x4e\x17\x46\x3e\x06\x47\x54\x6e\xe3\xaf\x2c\xc0\x62\x57\x87\x36\x4e\x07\x16\x68\x7b\xb0\xe0\xa3\x57\x07\x22\x1b\x33\xe8\xd5\x93\xcb\xa4\xb2\x3a\x54\x80\xf7\x9a\x10\x51\x3d\xf0\x60\xcb\xa1\x4a\x76\x4e\xb2\x75\xdb\x56\x79\x01\x56\x24\x83\xc8\x69\xeb\xd7\x61\x00\x26\x40\xd9\xbf\x0e\xeb\xd5\xb7\xa7\xa7\x25\xcf\xd1\xf6\x0d\x73\x3a\xcc\x08\x76\x63\xf5\x56\x21\x1f\xb7\x00\x00\x20\x00\x49\x44\x41\x54\xb2\xc0\x4f\x93\xdf\x8d\xed\x26\x8a\x81\xc7\x05\x8e\x7e\x20\x80\xc1\xe9\x84\xa3\x4d\x56\x7d\x3b\x50\x61\xf1\xc6\xff\x47\x15\xc3\x2d\x81\xfa\x18\xe5\x11\xbd\xda\x17\x80\x9a\x5c\x8e\x94\xb8\xb6\x3b\xcf\x3e\xba\xb5\x9a\x3c\xf5\xd0\x2c\xff\x97\x47\x8e\x8b\x7f\xfc\xee\x95\xd9\xb7\x7e\xb4\xb7\x3c\x04\x68\x7f\xff\xc8\x7c\x5d\x68\x1d\x5e\xd7\x80\x96\x9e\x0d\x45\xa0\x05\xc0\xef\x6f\x42\xf9\xbe\xe7\xbe\x3c\x0e\xc0\xe0\xeb\x58\x3d\x38\x7a\x97\x5c\x17\x18\x0a\xa5\x90\x7e\x9c\x2f\x88\x01\x1a\x3e\x39\x2e\x59\x2e\x5a\x57\x5e\x4c\xf2\x61\x82\x1e\x4f\xde\xa2\xd5\x29\x25\x0a\x91\x82\x9e\x5c\x32\x62\x11\x9d\x4b\x5e\x6a\x94\x25\x94\x52\xa3\x22\x31\x65\x52\x65\x9b\x6b\x93\x5c\x3c\x43\x3a\x3a\xdb\x19\xfd\xbe\x10\xde\xbf\x62\x40\x4c\x77\xe2\x6d\x73\x88\xdc\x74\x29\xa7\x8f\x1e\x8d\xaf\xfe\xd4\xc1\xd6\x73\xd7\xee\x8f\xff\xd7\x9d\xa5\xfc\x70\xa6\xc4\x7e\xcd\x2d\x66\xc7\x0a\x4a\x4e\xb2\xc8\xf2\x89\xd4\xf6\x5b\x79\xdf\x71\x73\x7c\xd2\x34\xe1\xcb\x84\xee\x63\x84\x59\xce\xcd\x47\xcf\x54\x2c\xba\x0e\xf8\x8d\x3e\x50\xc6\xf7\x9c\xdb\xdf\x03\x00\xbd\x25\x40\xb6\x6c\x43\x4c\xf7\xb1\x70\xc0\xac\x2b\xc3\x9d\x37\x43\x42\x51\x24\x5a\xd1\x82\x99\x98\xc6\xd1\x58\x07\x61\xd1\xf7\x8a\x3b\x22\x83\x6d\x04\xc7\x45\xcf\xc8\xe4\xf2\xb5\x83\x06\x8f\x09\xd7\x0f\x8f\x9a\x3c\xeb\xc0\x3c\x60\xe6\x01\x02\xda\xb6\xb8\x9a\x93\x02\x98\x2d\x73\xfd\xca\xd1\xd6\xea\x9f\x7e\xb0\x3f\xff\xc7\xef\x5d\x99\xbd\x7a\x6f\xab\x34\x7b\x5f\x96\xcd\xde\x17\xeb\xf3\x69\xbc\xff\xc5\xf0\x53\x4a\xc1\x67\x3e\xf3\x19\x5f\xc4\xc0\x97\x52\x6c\xec\x50\xff\x90\xea\xb7\x52\xea\x90\xaa\xd3\xa6\xeb\xbb\x0e\xfd\x83\x90\xe3\xa5\xa5\x11\x17\x9c\x28\x82\x6b\x11\x34\xc3\xd0\x15\x95\x00\x07\x3d\x97\x9f\xd2\x00\x21\xfe\x29\x3a\x84\x64\x0c\x45\xff\x9b\x48\xb1\x1d\x1d\x02\x71\xbd\x76\xc6\xfb\x59\x4c\x94\xc5\xac\x55\x03\x02\x2b\xe6\x20\xb9\xbc\x12\x93\xab\xf7\x47\xfb\xef\x3e\xdc\x7a\xe6\xd1\x7b\xe3\x5f\xda\x3b\xcb\x3f\x32\x5e\xc9\x27\x64\x7b\x1e\x4b\x67\x1e\x9b\xe0\x38\xfa\x3f\xf0\x4e\xd1\xe9\x00\xb0\xd3\xa3\xa1\x74\xe8\xbd\x3d\x1b\xff\x03\xe6\xac\x8f\x26\xa7\x83\x51\xf8\xab\x15\x2a\x01\x2c\x63\x4f\xe5\xd4\x3e\x08\x7d\xd9\xd2\x3c\x70\xf9\x27\xca\x9b\xdf\xdf\xc2\x04\xf1\x89\xa3\xa2\x7e\x8b\x46\x16\x00\xa0\xfd\x51\x41\xcb\x79\x91\xfd\x38\x02\x97\xd1\xda\xda\x0f\xd1\x4b\xc2\x6e\x53\xac\x47\xdf\xe1\xda\x15\xb7\xc1\x03\x8e\x22\xa0\x78\x94\xb0\x8b\xd6\x4b\x35\x60\xf1\x31\x91\x1b\x4b\xff\x76\xd9\x88\x57\xbb\xd7\x6e\xa2\xd3\xa1\x1d\x07\xed\x98\x21\x7a\xf7\x4e\x4d\xb6\x6b\xaa\x99\xc1\x6a\xb7\xad\x59\xea\x32\x51\x9d\xe6\x5e\x40\xef\xe4\x60\xcc\x05\xb3\x65\x97\xd9\x1c\xf9\xb4\xff\x4d\x1b\xb7\x4b\x61\x18\x70\x38\x00\x48\x1b\xe5\x69\xc7\x37\xb4\x9d\x2c\x28\xbd\x46\x7f\x44\x2d\x54\x0a\x3d\x1d\x97\xe2\x99\xcb\xa7\xc5\xd5\xad\x95\x7c\xea\xf2\x6c\xf4\x8f\xff\xf5\xd0\xd9\x97\x5f\xdb\x9f\xbf\x39\x1f\x29\x73\xfa\x6e\x1b\x79\x61\x7e\xb4\x11\x00\x40\x49\xd9\xb9\x97\x9f\xf9\x99\x9f\x81\x7f\xff\xf7\x7f\x5f\xc7\x07\xd0\x94\xba\x14\x13\xa2\x71\xad\x18\xb8\x6c\x6d\xac\xed\xf6\xd1\x71\x11\x95\x75\xfd\x4e\xca\x0b\xf9\x3a\xc1\x04\x57\x7e\xec\x8b\x38\xfe\xdb\xf3\x6f\xc2\x41\x30\xa4\x73\x53\x2a\x19\xc3\x6f\x68\x0a\x2d\xe7\xa4\xf2\x02\x0f\x3f\xf3\xcc\xd7\x16\xb4\xa3\x42\xa8\x3c\xe6\x39\xd7\xce\xb4\x0c\xab\xdf\xa7\x3e\xf5\x29\x99\xe7\x2d\x5e\x95\x28\xd2\x62\xa2\x2e\xb9\x10\xa2\x05\x2c\x00\x50\xec\xcd\xf2\x9d\x1b\x77\xc7\x37\xaf\x1f\x4d\x7e\xfe\xf2\xc9\xe8\x23\x3b\xcb\xec\x7d\x99\x12\x97\x05\xd4\x4b\x43\x00\x9e\xb7\x6f\xe3\xa4\xa0\x33\xe4\x00\xfe\xb7\x6f\x1b\x9c\xd0\x93\x40\x81\x6c\x74\x24\x91\x94\x90\x3e\xd0\x77\xc4\xae\x32\x7c\x04\xa6\x3b\x28\x0d\x03\x0e\x2f\x5f\xd7\xdb\xb6\x27\xd1\xc8\x0a\xfe\xcc\xda\xf7\x37\x3d\xb9\x4b\xd2\xba\x70\x54\xa9\xf9\xae\x67\x74\xbf\x91\x8b\x76\x78\x3d\xdd\x89\xab\x67\x50\xce\x00\x45\x2c\x39\x5c\x7d\xd9\x20\x51\x00\xd1\x32\xfc\xb9\x36\xa3\x00\x37\xaa\x9d\x99\x71\x8b\x65\x00\x68\xa5\x05\xcc\xe7\x99\x7a\xe5\xee\xb4\xfc\xe2\xad\x4b\xf3\xff\xf1\xca\x43\x67\xdf\x79\x67\x5a\x1e\x95\x99\x9e\x43\xb7\x84\x84\xa3\x2e\xf8\xf0\x3a\x30\xd7\x8e\xaf\x8e\x42\x36\x3b\x35\xf2\x3e\xc4\xcf\xa5\xa4\x75\xf8\x0d\xf5\x95\x29\x6d\x34\x24\x42\x02\x09\xfc\x53\xf4\x59\x0b\x1b\x98\xaf\x8a\xcc\x4b\x8e\x84\x7a\x5c\xc6\x30\xc4\x11\x48\xc9\xe4\xe1\x7b\xc9\x3c\xe3\xf8\x71\x74\x31\x65\x5d\x7a\x99\x97\x47\x0d\x3c\x0f\x09\x78\x1e\xf2\xbc\x34\xb9\xa7\xcf\xb8\x0e\xe0\xe8\x34\x53\x8e\x93\xed\xd3\xd5\xf5\x8c\xcb\xa7\x32\xe1\xa5\x97\x5e\x92\xe8\x2d\xc7\x44\x58\xa4\x10\x42\x36\x5f\x0e\x8d\x84\x10\x23\xad\xf5\x48\x08\x31\x2e\x4a\x31\xbd\x71\x77\xf2\xe8\xd3\x6f\x4f\x7f\xfe\xdd\x87\x5b\xbf\x71\xe5\xb4\xf8\xd5\xed\x55\xf6\xbe\x4c\x8b\xfd\x66\x83\x6e\xd7\xc0\x16\xd8\x40\x46\x50\xa0\x68\x87\x40\x6f\xf3\x82\x01\x25\xa6\x08\xb2\xa0\x34\x6a\xa2\xa1\x2f\x47\x90\x6b\x9f\x3f\x11\xe4\xaf\xb9\xee\x1b\x7a\xbc\xf9\x11\x9f\xad\x22\x2c\xe0\x44\xdf\x5c\xe9\x96\x15\xfc\xb2\x4e\x9d\x16\xe5\x4d\xf5\xec\x36\x78\x02\xfb\x36\xdc\xb5\x3d\xb3\x69\x97\x4b\x8e\x57\x7b\xd7\xc6\x5a\x2a\xcb\x62\x05\x76\xbb\xd1\x7a\xf8\x80\xa5\x60\x32\xbb\xa2\x5d\x04\x44\x43\xff\x79\x08\x04\xf6\x7e\x5f\xca\x11\x75\xa0\xba\x75\xfc\xfa\xd1\x39\x4e\x98\x6e\x95\x01\x9b\x9a\x00\xeb\x4e\x07\x3b\xf2\x86\xb7\xfd\xe0\xe3\x80\x34\x7a\x2e\x5a\x0a\xaa\x4a\xf3\x7f\xca\x13\x50\x79\xab\x2d\x48\xdf\x20\xd0\x64\x98\xba\xa2\x59\xed\x18\x33\xfa\xa0\xb5\xbc\x7a\x17\x96\x18\x65\x4a\xec\x6d\x95\xf2\x91\x0b\x8b\xfc\xea\xce\x22\xcf\xa5\x16\xf3\xc5\x48\xad\x96\xb9\x56\xcd\x59\x2f\x75\x73\x59\x1b\xa7\x50\x75\xa0\xfb\xea\x08\x00\xe0\x43\x1f\xfa\x90\xf8\xd1\x8f\x7e\x84\xed\xa4\xcb\x1e\xfa\xec\x2e\x2e\x87\x6d\x27\xf5\x0f\x3e\xdf\xc2\xf1\xf0\xa5\x90\x7c\x73\x4d\xe5\x52\x70\x81\xfd\x83\x65\x66\x19\x39\x02\xec\x76\xa2\x7a\xba\xae\xa9\x1c\x4e\x3f\x0e\x0b\x50\xfe\x54\x3e\xd5\x81\xa3\xa7\x7c\xa9\xee\xb4\x7c\x8f\x96\xfb\x1c\xda\x55\x39\x9f\x42\x9c\xe3\xa4\xcf\xe9\x33\xda\x19\x2e\x3a\x60\xe8\x42\xc9\xf0\x07\xe8\x0f\x08\xca\x1b\xcb\xc5\x9d\x16\x0b\x98\x7c\x20\xc3\x95\x6f\x3a\xc3\x55\x2f\xae\x7d\xb8\xf6\x72\xf1\xee\xd1\xe0\x23\xfb\x9b\x33\xa3\x64\x43\x2b\xa1\x5e\x16\x32\x80\x65\x24\x84\x18\x5f\x3c\xcb\x2f\x3c\x79\x30\x7d\xfa\xa9\xb7\xb7\x3e\xfa\xe8\xbd\xc9\xc7\x77\xe7\xf9\x07\x8b\x4a\x5e\x97\x20\xa6\x26\x28\x6e\x39\x36\x62\xf8\xb0\x39\xed\xac\x14\x35\xb4\x82\x2f\xd3\x18\xfa\xce\x95\x74\xb4\x36\x30\x68\x0c\x78\xc4\x17\x30\xd8\xe4\x1b\x59\xf4\x0b\x1a\x0b\xfc\x58\xcb\x17\xf4\x94\x59\xe4\x78\xb0\x3e\x8c\xf1\xef\x3b\x46\xb0\x1c\x29\x07\x5a\x70\x0d\xbb\xa7\x6e\x60\x60\x3b\x6a\xcf\x57\x4a\x78\x23\xb3\x43\x1f\x2f\xf0\xe9\x69\xd7\xd7\x01\xf3\xb0\xc0\x28\x2d\x67\xfb\x7a\x10\xed\x92\x4d\xf7\x55\x8f\xd5\x34\x18\x24\x08\x52\x4f\xe8\xb7\xa7\x6e\x96\x0d\x5b\x08\xd4\x21\x45\x4b\x09\xe3\xe0\x7b\xb5\x42\x08\x89\x46\x46\x74\x0f\xa5\x77\xb5\xb5\xc6\x03\x46\x4e\x44\x42\xe3\xc9\xed\xf6\x69\x2b\x8e\x1a\x06\xec\xf1\x27\xcc\xff\x38\x1a\x0b\x60\xd7\xb5\xb3\x96\x06\xdb\x7a\x0a\xc0\xcd\x82\xa7\x8e\x99\x7a\x66\xd9\x0b\x7f\x19\xd5\x36\x23\x02\x55\xb5\xc1\x11\x99\xd4\xb0\x33\x2e\xe5\xd5\xed\x65\x76\x6d\x67\x99\x5d\x18\x97\x42\x29\x09\x67\x8b\x91\x2e\x55\x6d\x79\xb0\x5d\xa2\x4e\xd8\x02\x2f\x1f\xfd\xe8\x47\xc5\x37\xbe\xf1\x0d\x8e\x96\x6d\x46\x47\x72\x01\x14\x97\x1e\xa9\x3c\x86\x96\xe5\x7c\x25\xe7\x03\x31\x70\xe0\xca\x50\xde\x18\x10\xf8\x7c\x97\x64\xe8\x29\xf0\x70\xb5\x0f\x0e\x50\xd0\x17\x69\x0e\x9c\x60\x53\x60\xca\x2b\xe8\xeb\x46\x69\x7d\x98\x40\x9b\x02\x5c\xc5\x4c\xf2\x85\x80\x86\x86\xc5\xb8\xa5\x93\x4d\x6d\x66\x72\x95\x19\x12\x9e\xc2\x3c\xc0\xc1\xc7\xc5\x17\xd7\x11\x97\x05\xb0\x81\x14\xbd\xa7\xbc\x06\x95\xd9\xdb\xdb\x83\xe7\x9e\x7b\x0e\xbe\xf0\x85\x2f\x28\xb4\xf9\x16\x00\xea\x03\xe4\xf0\xe6\x5b\xad\x75\xbb\x9f\x45\x80\xc8\x73\x05\x93\xab\x27\xc5\xe5\x9b\x87\x5b\xcf\x5e\xbf\x3b\xfe\x6f\x17\xcf\xf2\x0f\x8e\x2b\x79\x43\x6a\xb1\x63\xc1\x80\xd6\xe9\xf7\x0d\x7b\x4b\x83\xf2\xe8\x73\x6c\xd3\xb9\x41\xc8\xcd\x7a\xaf\x43\xd5\xc0\x7c\x61\xc3\xf3\x15\xd6\x85\x7d\x9d\xe2\xb8\x5d\xb4\x94\x75\xa7\x93\x9b\xbb\x1d\xf5\xb0\x41\x9b\x49\x5c\x3b\xc4\xe8\xdb\xea\x10\x41\xdc\x5a\x0f\x0a\x1c\x28\x2f\xae\x90\xb9\x8c\x69\x98\xe6\x9e\x2e\x81\x51\x1a\x0a\x82\x42\x55\x60\x9f\x07\xfa\x97\xfb\x2c\x3e\x28\x23\x65\xcc\x20\x50\x00\x3e\x5a\x86\xa7\x57\x27\x26\x33\x34\x0f\xd9\x0c\x47\x05\x5c\xb2\x7d\x3a\x29\xd0\xf3\x55\xa6\x6f\xdf\x9f\x94\xdf\x78\xe3\xc2\xf2\x4b\xaf\x5f\x9a\x7f\xfd\x8d\xdd\xe5\xeb\x27\x93\xea\x04\xba\xa5\xa3\xde\xe6\x5d\x8b\x05\xf4\x96\x8e\x62\x93\x6f\x59\x24\xc6\xf6\xfb\xec\xba\xaf\xfc\x79\x2f\xc7\xa4\xf0\x8a\xdd\xbf\x72\x5e\x29\xa6\xdd\xd7\xd6\x03\x1f\xf9\x8f\xe7\x95\x0f\x15\x71\xf7\xb1\xd1\x09\x1c\x69\xc0\xce\xdc\x57\x16\x47\x4f\x28\xfa\x0b\xa1\x5e\x8a\xe0\x68\x79\x83\x1c\x85\xe3\x9a\x22\x50\xee\x2f\x17\xe6\xa3\xff\x38\xa4\x89\x9f\x51\x3a\xac\xbf\x22\x65\x28\x7a\xb7\xda\xf0\xd2\xa5\x4b\xe2\xe8\xe8\x48\x7d\xfc\xe3\x1f\x17\x1f\xf8\xc0\x07\x4c\x74\x56\x0a\x21\x44\x03\x56\x24\xd4\xfd\x9e\x09\x21\xf2\xe6\x5f\x21\x41\x8c\xb7\x56\x72\xe7\xfa\xbd\xf1\xe3\xef\xbd\xb3\xfd\x4b\x37\x0f\x27\xff\xdb\xde\x3c\xff\x48\x13\x65\x99\xd4\x07\x63\xd9\xce\x15\x6f\x06\x74\x39\x03\x5c\x11\x9c\x8c\x5b\x66\x3f\xf1\x05\x00\xd1\x1e\x24\x16\x07\x10\xa8\x1e\xdc\x92\x41\xbb\xa4\x63\xc9\xed\x14\xa5\x67\x84\xe0\x51\x67\xd7\x9d\xaf\x13\x56\x0c\x2f\x05\x74\x75\xf0\x2c\xcb\x60\x67\x4d\x4e\x82\xc5\xf5\xc2\xd8\x86\xfd\x21\x48\xa6\xb1\xda\xf2\x08\x19\xe0\xc9\x8e\x8b\xb4\x7f\x39\xf0\x80\xda\xb0\x5f\x01\x54\xf7\xa6\x01\x7a\x20\x46\x40\x2f\xba\xd5\x49\x80\x76\x3c\x59\x87\x14\x02\xf4\x22\x09\x66\x7c\x50\x25\xf1\x79\x27\x1a\xeb\x23\xb0\x14\x8d\x36\xfb\xe2\xb3\x62\x9a\x1e\x22\xfd\xdf\x45\xf5\x9a\x7b\xf3\xd7\x81\x2a\xf0\x52\x56\xd7\x81\x08\xa1\x35\xad\x8f\xbe\x51\xea\x74\xc3\xa7\xdf\xa2\xf1\x4f\xf9\xe2\x36\x31\x87\xc7\xb5\x27\xef\x1a\x10\x86\x3f\xcf\xd2\x64\x99\xd5\xb4\x07\x42\x8b\x26\x92\x65\xf7\x19\xb3\x6c\xd6\xca\xb7\x1b\xb7\xd3\x53\xe4\x99\x16\x17\xc7\xa5\x7c\xf8\xc2\x32\x7f\xf8\xc2\x32\xdf\xce\x95\x28\x4b\xa9\xe7\xf3\x91\x5a\x69\xbc\xaf\xbd\x5b\x46\xb2\x5a\x5d\x6b\xad\x9f\x7f\xfe\x79\xf1\xd5\xaf\x7e\x95\xda\xf6\xd0\x92\x0b\x9e\x2e\x8a\xd0\xb9\x1c\x39\xb6\xf7\x86\x86\x4e\x0f\x9c\xc7\x45\xee\xa9\x8d\xe6\x74\x76\xe9\xae\xa1\xcf\x8f\xfa\x20\x4e\x2e\x27\x83\xd3\x1b\x27\x8e\x2f\xe5\xcd\xc9\x89\xc9\xa3\x3a\x98\x3c\x6e\xc5\xc3\xa5\x83\x20\xff\x9c\x6d\x6e\x80\x0b\x26\x0a\x55\x9a\xbb\xe7\x14\xe1\x12\xe7\xf8\x63\xca\x50\x27\x6f\xe4\x87\xc2\x62\xbe\x8e\xc6\xc8\x14\xeb\x43\x4d\x12\x57\x16\x37\x2c\xd6\x0b\xe7\xe3\x01\x8b\x75\xa1\x80\x09\x08\x2f\x2c\x83\x5b\x07\xa4\x9d\xaa\x01\x40\x5c\xbe\x7c\x59\xcc\x66\x33\x3d\x9f\xcf\xb5\xf9\x62\xa8\x01\x29\x82\xfc\xcd\xa1\x06\x2d\x23\x00\x18\x81\x86\x71\xae\xc4\xd6\xde\x59\xbe\xff\xf8\xdd\xc9\xd3\xcf\xbe\xb9\xf3\xab\x8f\x1c\x4f\x3e\x31\x5d\x65\x3f\x9b\x69\xb1\x2f\xb5\x90\x6d\x78\x18\x5b\x30\x63\x10\x99\x70\x8b\xff\x6d\xbd\x3b\x00\xcb\xb5\x4c\x22\x0c\x7f\x7c\x4f\xf8\x08\x26\x1f\x13\xf4\x97\x7e\xb0\xe5\x37\x80\x08\x2d\x5d\x51\x9d\x71\x7d\x68\xdd\xb1\x12\xcc\x2d\x17\x81\xf2\x3d\xeb\xb1\x15\x8c\x3e\x8c\x6c\xe3\x78\x01\xd0\xe1\x64\xce\x46\x31\x45\x05\x21\xeb\xef\x33\xea\xe9\x6e\xfb\xc0\x7e\x1d\x10\x30\xa8\x9f\xa1\xb3\x4b\x7a\xfa\x88\x0e\x40\xb6\xed\x2a\xac\xb1\xd0\xfb\xc6\x87\x34\x04\x1d\x1f\x46\x2e\x3e\xf7\xc6\xe0\x05\xe8\xf0\x42\x0b\x15\x5a\x5a\x6d\xff\x6d\xeb\xa5\x3b\x1e\x08\x6d\x34\x72\xed\x7a\x6b\x2c\xcf\x26\x47\xe0\xb5\x91\xd9\xf6\x69\xd7\x07\xd6\x18\x35\xe0\x82\xdb\xf7\x24\xac\x3f\xed\x18\x36\x6d\xac\x9b\x31\xd0\x2d\x61\x8a\x16\xf8\xb4\x2f\x18\x94\x65\x3b\xce\x84\xcd\xbf\xed\x5f\x7b\x5c\x50\x7d\x5a\xfe\x80\x8c\x72\x2b\x4a\x6c\x8d\x2a\xf1\xd0\x74\x95\x5d\xbb\x38\xcf\xf6\xb7\x56\x12\x56\xb9\x3e\x3d\xcb\xd5\x5c\x09\xd0\x04\x74\x6b\x04\x4e\x45\xa3\xbb\x36\x7b\x5e\x50\xd2\xe4\x9a\xfa\x04\xce\x57\xf8\x7c\x0c\x7e\xc6\xd1\x84\x1c\xb3\xab\x1c\xf7\x9c\xd3\x9d\x26\xea\x8f\xa8\x9d\xa7\xba\x50\x19\xd8\x47\xf8\xea\xc3\xf9\x52\x9f\x1c\x0e\xb4\xf8\xf6\x17\x99\x44\xfd\xa4\x8f\xde\xe8\xcd\x2d\x8d\x61\xfd\x24\x00\x28\x0e\xb8\x70\x28\xc7\xa5\x28\x1d\x34\xb4\x1c\x4d\xb1\x68\x0e\x3f\xa3\x95\xa7\x9d\x13\x0b\x9a\x38\x5d\x05\xd8\xfc\x31\xc8\xc0\xe0\x82\xb6\x03\x1d\x1c\x74\xe2\x50\xf4\xce\x0d\x32\xda\x51\x40\x68\xb8\xc1\x45\xe9\x25\x00\xe8\x4b\x97\x2e\x89\xc3\xc3\x43\x05\xc0\x7f\xe6\xdc\xfc\xcb\x9a\x7f\xed\x7e\x16\x09\x62\x3c\x29\xe5\x85\xab\xf7\x8b\x77\xbd\xe7\x60\xfa\xdc\x7b\xdf\xda\xfe\xc4\x43\xa7\xa3\x8f\x17\x95\x7c\x42\x80\x98\x50\x07\x61\x6b\x88\x0c\x0f\x71\x64\xee\x6d\x1b\xfc\x9b\x9d\x36\xfc\xf0\xb3\x56\x8c\x6e\xad\xa9\xed\x80\x80\x9c\x1e\x4a\x40\x14\x3a\x05\xd5\x36\xc2\x5d\x7e\xed\x28\x90\xdc\xde\x69\xa4\xa6\xa5\xdd\x8e\x44\xe3\xc8\x10\x01\x1b\x38\xaf\xbf\xbf\xa7\x6d\x46\x3b\x22\x60\x74\x40\x7c\x7a\x8e\xc3\x92\x21\xec\xbe\x80\xfe\xdb\x3c\xe6\xd3\xea\xd5\xb6\x8a\x20\x75\x20\xa7\xe3\x9a\xf6\x6a\x9d\x1c\xab\x46\x0f\xc8\xe0\x3a\xb7\x27\xcb\x42\xc7\x44\xa0\x82\xd8\xe1\xeb\xe6\xff\x78\x5f\x46\x17\x11\x69\x78\x03\x8a\xd8\xd0\x08\x0e\xee\xc3\x76\x7f\x0f\xfa\x1d\xa0\x06\x69\xe0\xd3\x6f\x0d\x18\xb1\x37\xc9\xea\x4e\x3f\x1c\x86\xd1\x4d\xab\xd7\xcd\x0e\x00\x48\x3f\x04\x54\xa8\xee\x46\x47\x8e\xbe\xfd\x94\x5a\x77\x2d\xc0\xcd\x85\x5e\x5b\x6b\xf3\xe9\xb5\xb0\x06\x92\xe9\xc7\xee\x86\xd7\x97\x6e\xdc\x35\x7b\xa2\xa0\x69\x23\xcb\xfb\x91\x86\xea\xa2\x99\x9d\x29\xec\xa2\x45\xed\xdc\xc9\x33\x2d\x2e\x4e\x4a\xf9\xc8\x85\xc5\xe8\xda\xc5\x79\x9e\x2d\x46\xea\x78\x31\x52\xab\x4a\xd6\x36\x4e\x83\xd6\x0d\x50\x69\xd4\xd6\xba\x89\xc2\xb4\x7b\x5e\xae\x5f\xbf\x2e\x8f\x8f\x8f\x5d\x8e\x3b\x26\x1f\x3f\x8b\x8d\x2e\x70\xfe\x8f\x2b\x3b\x24\x42\xe1\x2a\xab\xc9\x33\x6e\xc3\x2e\xf5\x27\x2e\xbf\x16\xd2\x8d\xfa\x52\x5a\xc6\xb7\x9c\xe3\x92\xcf\xd1\x71\x75\xa6\x7e\xd7\x3c\xe7\x74\xa7\x2f\xfe\xda\x10\x61\x05\x42\xfb\x40\xd6\x59\xcb\xdb\x64\x72\xe9\x3a\x54\xa7\x94\x72\xbe\x76\xf2\xe5\xd1\xb6\x33\x29\xf5\x53\x36\xb6\x0f\xcc\xe6\x5b\x74\xe2\xad\x79\x6e\xfe\x75\xe7\xb2\x80\xc8\xa5\x86\xc9\x74\x95\xed\x3c\x7a\x6f\x7c\xe3\xa9\x3b\xd3\x5f\x7c\xf8\x7e\xf1\xd1\xad\x95\x7c\x5f\xa6\xc5\x2e\xab\x89\xb6\xfe\xf4\xc0\x09\x67\x60\x39\x16\x22\x90\xd3\x13\x88\xc1\x45\x02\x7f\xd7\x9e\x11\xcc\xd9\x70\x37\xcf\x38\x39\xdc\x17\x40\xd6\xd7\x50\xba\xdf\x16\xbc\x6e\xfd\x43\xd9\x04\xb9\x72\xd5\x09\x80\x38\x56\xa4\x0b\xe6\x60\x01\x9f\x44\x7d\x6c\x89\x0c\x78\x13\x44\x7e\x4f\x6b\xab\xf5\x81\xeb\x37\xab\x8c\x86\x66\x39\xa7\x43\xaf\x66\x89\xa3\x05\x22\xad\x5c\x02\xa6\x30\x98\x44\x4c\xa9\xd4\xae\x5d\x50\x0b\x35\x07\xab\x58\x80\x0a\x3b\x6e\x0b\xd0\xe8\x16\xd8\xb5\x8e\x9c\x01\xb7\x58\x4e\x7f\x39\xb0\xd1\xca\x6a\xbb\x4e\x3e\x06\x39\x1a\x3a\x00\xd3\x45\x24\x34\xfa\x90\xc7\xfe\x69\x89\xfe\x1c\xec\x9f\x5d\x84\x0f\x9b\xa3\xdd\xad\x09\x00\xc1\xbf\x1d\x66\x97\x63\x7a\x5b\x03\xe0\x9f\xd4\xc0\xe3\xb4\xaf\x0b\x80\x16\x7a\x59\x4a\x7d\xeb\xee\xa4\xfc\xa7\x6f\x5f\x3b\xfd\xfb\xd7\xf6\xe7\xaf\x1c\x8f\xab\xa3\x4a\xea\x39\x08\xeb\xe0\x3a\xf3\xa3\x8d\x00\xc8\x36\x06\xf6\xbc\x84\x6c\x71\x8c\xdf\x0a\xd9\x5a\x8e\x1e\x3c\xcf\x7d\x7a\xc6\x96\x1d\xea\x6f\x63\xea\x9e\xd2\x0e\xa9\xf2\x31\xfd\x50\x7e\x5e\xfd\x32\x86\x88\x43\x3c\x14\xc9\x99\x6b\x0e\x39\xb9\x94\x08\xd1\x18\xba\x18\x44\xeb\x42\xdb\x29\x1d\x4b\x91\x2e\xa7\x2f\x57\x3f\x6c\x13\x29\x52\xa5\xeb\xaa\x98\x8e\x76\x18\x87\x74\x39\x04\x8a\x79\x5b\x79\x45\x51\x40\x55\x55\x1a\x81\x16\x89\x3e\x39\x34\xe7\xb3\xe4\xd0\x44\x5a\x84\x10\xb9\xa8\x7f\x3c\x6d\x6b\x7f\x36\x7a\xe8\x99\x3b\xd3\xf7\xff\xf4\x1b\xdb\xff\xfb\xd5\x93\xe2\xbf\x4f\xca\xec\xbd\x19\x88\x2d\xec\x04\xf1\x4b\xa0\x79\x13\x6d\xff\x76\xfe\xa6\xd5\x48\x00\x80\x59\x6b\xe7\xa0\x80\xf1\x53\xdd\x72\xbf\xed\x8c\x84\xc0\x65\x04\x74\x54\x8c\x83\xa5\x96\xb2\xbd\xec\x1c\x40\x67\x6e\xed\x5f\xdb\x15\x86\xb8\x71\x5a\x5d\x1d\xec\xaf\x42\xe8\x1e\x92\xee\xcd\x1e\x1d\xaf\x27\x04\x72\xb0\xb4\x0e\xb8\x36\xfd\x3a\xd0\x36\xe8\x3b\x61\x68\xdb\xbe\x17\x99\x01\xd1\xbe\x00\x5b\x83\x93\x78\x33\xfc\xdb\x34\x18\x2c\x58\x75\x30\x4e\x1c\x04\x58\xdf\xf2\xf2\x6b\x2d\xb6\xa2\xa4\x36\xf6\xb5\x5d\x99\x3e\x68\xe9\xfa\xb6\x55\x5b\xd8\xe3\xa5\x5e\x4e\x12\x96\x33\xaf\xc7\x60\xd3\xbe\xe4\x00\xb9\x76\x19\xd2\xd2\xa2\x1b\x47\x75\x30\xab\x01\x4a\x40\x96\xa8\x04\xea\x63\x81\x75\x13\xed\x9e\x1a\x21\xfa\x75\xea\xe6\x8b\xfd\xb9\x7e\x57\xd7\x4e\x27\x8d\x80\x92\x0d\x7e\x85\xd5\xbf\x1d\x28\x33\x32\xd1\x12\x17\x91\xd1\x8d\x15\x3c\x7e\xbb\xa8\xa2\x69\xcc\xfe\x27\xeb\xdd\xbc\x10\xa2\xfb\x02\x49\xa3\x76\xac\x71\x9e\xb0\x36\xbe\x77\x80\xad\x1b\xd7\x56\x9f\xa1\xb6\xa8\xfb\x04\x40\xd4\x5f\x1e\x5d\xda\x2a\xb3\x9b\x0f\xcd\x46\x0f\x4d\x57\xd9\xc9\xc9\xa4\x3a\x59\xe6\x6a\x51\xef\x7b\x11\xca\x34\x87\x89\xb8\x00\x6a\x5e\x66\xd9\x08\x27\xea\x33\x8c\x2a\x46\x1d\xce\xd6\xfb\xa2\x1d\x5c\x39\x9a\xb0\x4d\x8f\x4d\xd8\x96\x73\xbe\xcd\xe7\x97\x5c\x7a\x73\x3e\xd3\x55\x8e\xee\xc5\xf1\xf9\x56\x1f\x7d\x28\x6a\x85\xf9\x60\xf3\xe4\xf3\xb9\xae\xf2\x34\x09\x00\xd0\xe6\x24\x32\xac\xa0\x72\xfc\xf5\x5d\x03\xf8\x81\x43\x6c\x07\xbb\xf4\x48\x41\xd4\xbe\x64\xe8\x42\xb4\xbe\x28\x0e\x6d\x17\x0e\x3d\xfb\xda\xc9\x75\x1f\x2b\xb3\x95\xb7\x5c\x2e\x2d\x46\x68\x89\x48\x02\xb4\xe7\xb4\xe4\x4d\x99\x02\x00\x0a\xa9\x61\xf2\xe8\xbd\xf1\xd5\x67\xde\x9a\x7e\xe4\xd1\x7b\xe3\xff\x3e\x5d\x66\xcf\x65\x5a\xec\x51\xdf\x44\x9d\x87\x25\xa7\x45\x32\xc8\x19\xb5\x46\x97\x5b\x10\xb1\x0a\xb7\xb9\x14\x24\x19\x02\xa6\x14\xcb\x87\x73\x9f\x6d\x79\xec\xe8\xb1\xb3\x40\x06\x18\xf0\x35\x90\x59\x85\xca\x60\x39\xf6\xdf\x16\xfd\x58\xbc\x63\x6a\x43\xdb\xa0\xad\x93\x36\x4e\x13\x6c\x7d\xd1\x5b\x6f\x6f\x63\x2a\x70\xed\xd0\x39\x90\x1e\x18\x22\xff\xb7\x1c\x8d\x85\x3f\x2c\xae\x68\x3c\x8a\xd6\x3a\x0a\xbb\x88\xb4\xea\xa3\x6d\x30\xd7\xca\x12\x44\x5f\x32\x10\xda\x5b\x82\x85\x0c\xe0\xb0\x37\xde\x22\xd0\x05\xba\xfd\xe4\x1b\x03\x3f\xae\x71\xa8\x23\xc6\xe3\xd2\xd6\x4d\x23\x79\x0d\xe0\x13\x75\x7f\x70\x23\x1d\x3b\xf6\x5a\xbc\x35\x52\xf8\x29\x41\x41\x08\xe9\x2f\xb3\x71\x98\xab\x8b\xf5\x82\x41\x32\x31\x79\x0b\x86\x9a\x1b\x2d\x00\xac\x23\x07\x10\x31\x3d\x28\x52\xf7\xf4\xc3\xd2\x9c\x13\xb1\x03\xdd\x60\xc6\x89\x80\x4c\xc1\xfe\xee\x3c\xff\xf8\x7b\xde\x9e\x3e\x76\x71\x96\xff\xdd\xb7\xaf\xcd\xfe\xf9\x87\x97\xe6\xb7\x4e\x8b\x0a\x34\xc0\x1c\x95\xb6\x7e\xef\x88\xa4\x98\x88\x45\x8c\x8d\xe7\xec\x2c\x8e\x86\xc7\x46\x0b\x42\xd1\x05\x17\x1d\xa5\x8d\x89\x40\xe0\xf2\x2e\x3f\x11\x2a\x47\xe9\x63\x22\x4c\x98\x3e\x24\x93\x2b\xc3\xe9\x34\x38\x45\xf9\x88\x44\x81\x9b\x5e\x42\xda\x14\xbf\xd4\xd0\x1e\x8d\x72\x98\x44\x43\x7d\xa9\xcb\x43\x2e\x80\x12\xb5\x2c\x24\xd0\x2f\xaa\xbe\xf8\xe2\x8b\xad\x6e\x06\xac\x20\xe0\x62\x1d\xd9\x0f\x00\x45\x51\x8a\xe9\x7b\xdf\xda\x7e\xe2\x3d\x6f\x6f\x7d\xe2\xf2\xe9\xe8\xa3\x45\x29\x6f\x0a\x80\x02\x3b\xfb\xe4\x11\x41\x52\xcf\x58\xd2\x6b\x22\x03\xc3\xf2\x14\xde\xdc\x03\xf6\x79\x62\x9d\x7a\xfa\x30\xfa\x86\xea\x64\xf1\xea\x63\x0c\xb7\x6a\x9e\x0a\x78\x7c\x83\x33\x1f\x5f\xd7\x7b\x55\x40\x69\x00\xd0\xa2\x1e\x53\x4a\x68\xa5\x04\x94\xcd\x5f\x55\x49\x5d\x9a\x7f\x4a\xe8\x52\x09\x50\x5a\x80\xd2\xa0\x41\xd5\xed\xab\x94\xd0\x4a\x49\x50\xba\x19\x97\x02\x00\xa4\x06\x29\xb4\x90\xf5\xdf\xe6\x1a\x40\x66\x4a\xc8\x4c\x43\x9e\x29\x91\x67\x4a\xe4\x52\x8b\xfa\x39\x80\x94\x0d\xbd\x54\xf5\x41\x86\xa0\x41\xd2\xb7\x77\x7a\xed\xaa\x77\x4a\x17\x7b\x69\x63\x18\x05\x68\xa2\xc6\x73\x6a\x67\x6e\x2a\x0d\x98\x0b\xe1\xf1\x19\xae\x33\x2d\x56\xd3\x6b\x55\x4a\x78\xf3\x64\x5c\xfd\xd3\x2b\x0f\x9d\xfd\x9f\xdf\x7e\xf8\xf4\xeb\x07\x3b\xab\x23\xe8\x7f\x32\x0d\xd0\x8c\xb5\x81\x9f\x48\xff\xb8\xd2\x26\x96\x76\xce\x33\xfd\xb8\xfd\xf4\x5a\xf2\xcd\xdb\x78\x4a\xb4\x22\xb4\x36\x96\xc2\x6b\x5d\x99\x29\xfc\x7c\x6b\x95\xa9\x65\x39\x40\x83\x79\x85\x90\xe9\x10\x64\x0b\x00\x00\x7f\xf4\x47\x7f\x04\x7f\xf1\x17\x7f\x01\x00\x28\x22\xd0\xfc\x38\x22\x40\x7b\x84\x7f\xf7\x4b\xce\xcd\xdf\xfd\xd3\xd1\xde\xfb\xde\x9c\xbe\xff\xc6\xdd\xc9\x27\x2e\xce\xf3\x0f\x8f\x2a\x71\x55\x00\x14\x56\x44\xa0\xf7\x66\x6e\x27\xec\xa8\xe9\xa9\x9d\x98\x05\xf3\x26\x6e\x45\x15\x28\x7d\x6c\xaa\x65\xd7\x48\xc0\x02\x05\x2c\x68\xe9\x5e\xa3\x5d\x27\xf4\xf6\x2b\x86\x9d\x61\xb7\x69\xd7\xa5\x6f\xaf\x4e\xe8\x55\xdb\x55\x1e\x93\xf5\xde\xce\x05\xd8\xdb\x09\xf0\xeb\x37\xa3\xae\x6e\xff\x69\xd0\x0d\x28\x51\x42\x97\x4a\x42\x59\x09\xad\x2a\xa9\xcb\x32\xd3\xe5\x32\x53\xf3\x45\xa6\xe7\x8b\x5c\xcd\x97\xb9\x5a\xae\x32\xbd\x2c\x33\x5d\x2e\x32\x35\x5f\x66\x6a\xb9\xcc\x75\xb9\xcc\xf4\x72\x95\xa9\x06\xb4\xd4\x00\x45\x77\x60\xa5\xe5\xaf\xeb\x63\xde\x15\x8e\x58\x34\x60\x05\x04\x80\x14\xba\xb9\x07\x80\x4c\x09\x29\xb5\xc8\xa5\x06\x99\x2b\x91\xe7\x4a\xe6\xa3\x4a\xe4\xa3\x4a\xe6\x45\x25\x8a\xa2\x14\xc5\xa4\x94\xc5\xa8\x92\x93\x71\x29\x26\x45\x29\x8b\xa2\x92\x93\x51\x25\xf2\x5c\x89\x22\xd3\x90\xe7\x4a\xe4\x52\x89\x5c\x68\x21\x6b\x59\xa2\x96\x21\x34\x68\xb3\x2c\xa4\x51\xfb\xa1\x36\x36\xe1\x02\xe7\x86\x62\x14\x66\x10\xa2\x1f\x85\xc1\x7b\x52\xba\x50\x11\xd9\x0b\xd2\x6c\x40\x11\x34\x02\xd9\xcc\x91\x36\xcc\x22\x6c\x59\x16\xd8\x46\x7a\xf4\x3e\xe3\x47\x7a\xf7\xbe\x00\xd7\xf6\xc0\xc5\x23\x5c\x37\x8d\x20\x48\xe5\xed\x7d\x52\x35\x7d\xff\xf3\x74\x3b\xb5\xc0\x84\xce\x33\x1a\xa5\x01\x52\xc7\xb6\x2c\x8d\xec\x68\x00\x10\x32\x57\xfa\xda\xce\x22\x7b\xe1\x5d\xc7\xc5\x9d\x37\x76\x17\x6f\x1e\xec\xac\xcc\x59\x2f\xad\x3d\x6b\x7e\x26\x20\xb4\xd7\x24\x25\x2a\x12\x93\x42\x2f\x99\xf8\x9e\x7b\xc1\xa5\xd1\x14\x80\xbe\x5e\x98\x5f\xea\xaa\x42\x6c\x3d\x7d\xcf\xd6\x91\xe9\xe2\x47\xf3\x5d\xc1\x02\xea\x3b\x5d\x6d\xe9\x2a\xa7\x72\xe6\x21\x97\x62\x14\xf4\x55\x2a\x96\x77\x68\x59\x26\x46\xa7\x54\x59\xae\xb2\xb1\x60\xc6\x17\x7a\x73\xc9\x8e\xd5\xbb\x2d\xb3\xb7\xb7\x07\x47\x47\x47\xb0\xb5\xb5\xd5\xdb\x88\x8b\xa2\x2d\xe6\x5c\x96\xfa\x50\x39\x0d\x45\xa6\x44\xbd\x34\x74\x67\xfa\x91\x77\xdd\x2b\x7e\x7d\x67\x99\xbd\x3f\x57\x62\x0f\x40\xf4\x7f\x60\x13\x6f\x10\x64\x12\x76\xd4\xfc\x2e\x96\x8e\x4f\x07\x2e\x98\x2f\x75\x0c\x19\xd8\xc6\xd2\x0a\x8d\x23\x19\xb6\x85\x44\x0e\x02\x19\x52\x0c\x6a\x88\xb6\xe0\x36\xc9\x9d\xf1\x17\xa8\x2e\xda\x2a\x63\x1b\x5d\xbc\x81\xb4\x97\x04\x23\x93\x0b\xcb\x08\x47\x11\xda\x20\xe4\x94\x33\x25\x34\x28\xd9\x45\x48\x4a\xa9\x97\xa5\x54\xcb\x45\xae\xe7\x67\xa3\x6a\x36\x1f\xe9\xf9\x22\xaf\xe6\xf3\x5c\xcd\xcf\x46\xf5\xbf\xf9\xa8\x06\x27\x06\xac\x54\x42\x97\xba\xde\x54\x59\xea\x0e\xa0\x28\x55\x03\x13\xa5\x41\xab\xa6\x5d\x7b\x60\xdd\xf8\x60\x00\xa8\xc8\xb3\xac\x0e\xe8\x00\x00\x32\x4a\xc2\x5c\x6b\x00\x09\x42\x36\xc0\xa6\x8b\xca\xd4\xd7\xb9\xd4\x42\x66\x4a\xe4\x23\x25\xf2\x1a\xb4\xc8\x62\x5c\x8a\x62\xba\xcc\xa6\xd3\x55\x36\xd9\x5a\xc9\xe9\x64\x25\x27\x93\x52\x4e\xc7\xa5\x9c\x14\xa5\x2c\x72\x05\x45\xae\x64\x51\x47\x72\xa0\xe1\xdd\x6d\x5a\x35\xfb\x82\xec\x86\x35\x4e\x9d\x71\xb0\x68\x53\x30\xbb\xdf\x0a\x3b\xe2\x66\x6c\xb6\x5b\x53\xdb\x4d\xaa\x35\x50\xea\x30\x0e\x06\xae\x5d\xc7\xe2\x8d\xb7\xf5\xd2\x93\xe8\xe6\x09\x5d\x97\x69\x8a\xe2\x1a\x00\x34\xfb\x96\x5a\x5d\x70\x32\x6d\xd0\x7d\x49\x45\xeb\xdc\x91\xa2\x76\xb0\x5b\xc5\x6a\xb6\x0e\x0c\x22\x18\x22\x0c\x78\x83\xe6\x5c\x1c\xe8\xcd\x09\x8d\xeb\x84\xf6\x22\x99\xf6\x55\x00\xe5\x32\x57\x77\x0e\xb6\x57\x3f\x3a\x9e\x94\x33\xe8\x7e\xdc\x55\x61\x79\x38\x3d\xfe\xf8\xe3\xf2\xb5\xd7\x5e\x4b\x59\xd6\x00\x08\x3b\x4a\x5f\x59\x57\x9e\xcf\x51\xfb\xf2\x5d\xbe\x2c\xf4\xdc\xf5\x12\xec\xd3\x2b\x14\xcd\xe7\xf8\x0f\xf1\xa5\xdc\xbd\xe1\x25\xa1\x2f\x33\x14\x5d\xe2\xca\x59\xbe\x3a\x67\x1e\x1a\x86\x58\x40\xc8\xb9\xc7\x76\x3e\xf7\x6c\x68\xb8\x68\x48\x64\x67\x5d\xb9\xbe\xe5\x1c\xdc\x66\x5c\x87\x72\x13\x85\x96\xe1\xfa\x00\x00\x00\x7e\xf9\x97\x7f\x19\x1e\x7e\xf8\x61\xa9\xb5\x36\x13\xda\x7c\xee\x9c\xa3\x88\x8b\x39\x09\xb7\x90\x20\x8a\xc9\x4a\xee\x3c\x7e\x77\xf2\xd8\x7b\xde\x9e\xfe\xea\xc3\xf7\x47\x1f\xdb\x5a\x65\x4f\x4a\x0d\x3b\x02\x84\xc5\xbb\x35\x58\xc2\xb5\x23\xc3\x4e\x9d\x11\xed\x36\x7e\x62\xb3\x68\xbf\x7d\xe2\xdf\x8d\xb6\xb1\x05\x95\xd5\xf2\xec\x39\x10\x87\x56\x18\xa7\x10\xbb\x6c\xe9\xd3\x93\xd1\x61\x09\xee\xfc\x10\x9b\x25\x7a\xde\x62\x27\x62\xa0\x49\x19\x4b\xa6\xe8\xf8\x60\x90\xc5\xbd\xe1\x9a\x37\x5a\x00\x0d\x26\xea\x51\x49\x55\x96\x52\x2f\x57\x99\x5e\x2e\x73\x3d\x3f\xcb\xd5\xec\x6c\x54\xcd\x66\x85\x9a\xcd\x8a\x6a\x76\x5a\x54\xb3\xb3\x91\x9a\xcf\xf3\x6a\xbe\xca\xf4\xb2\x92\xba\xac\x04\x2c\x95\xac\x41\x4a\x25\x41\x69\xa1\xcb\x3a\x72\x02\x15\x00\xa8\x46\xba\x02\xd0\xf5\xb8\x33\x5f\x70\x68\xad\x00\x7d\xb9\x02\xcc\xfc\xc6\x11\x06\xec\x58\x84\x34\x7d\x66\x7d\xd5\x06\xd0\x8c\xe3\x0a\xda\x31\x6a\x18\xe1\x7b\x03\x6a\x46\x75\xb4\x46\xc8\x4c\x41\x9e\x69\xd1\x2e\x33\xe5\x4a\x14\x75\x94\x46\x16\xe3\x52\x4e\xb6\x97\x72\xba\xb3\xc8\xa7\xdb\xcb\x6c\x77\x6b\x25\x27\x93\x95\xdc\x29\x2a\x51\x8c\x2a\x59\xe4\x4a\xe4\x59\x03\x88\x84\x06\x49\x47\x42\x0b\x28\xac\x68\x84\x0d\x88\x0d\x7d\x7f\x8c\x22\x70\x84\xf8\x9a\xcf\xac\xfb\x40\xa2\x9f\xba\xaf\x75\x44\x3b\x86\x35\xb3\xe9\xb6\x3d\xc8\x4f\x77\x7a\xb5\x5a\x0a\x4e\x3b\x5c\x4d\x34\xca\xf0\x38\xb7\xf8\xe3\xb9\x29\x28\x4e\xee\xed\xb5\xc1\x91\x20\x0b\xdc\xbb\xd4\x10\xfd\x83\xfb\x3a\xd0\x07\x6a\x91\xab\xdb\xb7\x2e\xce\xff\xed\xfb\x97\xcf\xbe\x7f\x77\x5a\x2e\xa1\xf3\x47\x38\x82\x6c\x81\x98\x06\xb4\x98\xc4\x45\xbd\xb9\xe4\x72\xee\x3e\x1f\xe0\x7a\xeb\x8f\xe5\x1d\x02\x03\x31\xbe\x28\x25\x3a\x12\xa3\x63\xaa\x2f\x0c\x01\x24\x57\x1d\x63\xdb\xdb\xf5\x22\xef\xf3\xdb\x00\x80\xd0\xad\x83\xe1\x3a\xe1\x36\x1f\x7d\x0a\xd2\x8d\x2d\x3b\x94\x6e\x68\x72\x75\xa4\x8f\x2e\x76\x50\xf7\x74\xbf\x7a\xf5\x6a\xfb\xcc\x9c\xcf\x62\xf6\xb3\xb4\x11\x96\x06\xb8\xe4\x5a\x4c\x76\xe7\xf9\xde\xbb\x0f\xb7\x9e\xba\xf9\xce\xe4\x97\xaf\x9c\x14\x1f\x1d\x97\xe2\x86\x00\x98\x58\x67\x60\x34\xc9\xb2\x3b\x38\x84\xcd\x28\x86\xe9\xf1\x9b\xa8\xeb\x08\x74\x6b\x99\xa6\x7b\x65\xf4\xa4\xce\x98\xf3\xfc\x90\x0e\x0e\xa0\x42\x93\xb3\xbe\xa2\x1f\x9a\x17\xa8\x10\x17\x1d\xea\x87\xeb\xfb\x06\x9e\xd3\x00\x7f\xa2\x6b\x74\xd0\xe8\xa9\xd9\x63\x62\x40\xca\x7c\x54\x9d\x9c\x16\x6a\x76\x5a\x94\x27\x27\xe3\xea\x64\x56\xa8\xd9\xd9\x48\xcd\xe6\x79\x1d\x41\x29\xb3\x9a\x6e\x25\xf5\xb2\x94\x7a\xa9\xa4\x2e\x35\x40\x05\xf5\xfe\x15\xf3\x49\xa9\xb9\x56\xc8\x01\x28\x00\x50\xcd\x4b\xbe\xc9\xaf\xc7\x5a\x43\xe3\x02\x2d\xe6\xbe\xf7\xa5\x55\x03\xa4\x09\x1d\x05\x2f\xd2\xca\x17\xd6\xbd\xd4\x00\x52\x81\x96\x42\x0a\x09\xa0\x65\x99\x81\x6c\x5a\xa8\x76\x66\x1a\xa4\xd4\x30\x92\x5a\xe4\x99\xaa\x97\x90\x9a\x65\xa5\x62\x5c\xca\xc9\x64\x25\xa7\xd3\x55\x36\xdd\x5e\x64\xd3\xed\xa5\xdc\x99\xae\xb2\xe9\x74\x29\xa7\x93\x52\x4e\x47\x95\x2c\x32\x25\x8a\xac\x06\x34\xd2\x00\xf4\xee\x33\xe3\x7e\xdf\x5a\x11\x8a\x36\xd2\x06\x1d\xf2\x84\xee\xde\x8c\xc5\x6e\x15\x84\x44\x48\x4c\x79\xe8\x3a\xbd\x03\xa9\x60\x8d\x35\x1b\xf8\xda\x60\xa6\x8d\xa1\xd0\x73\x59\x1a\x25\xf0\x67\xdb\x86\x8b\x05\x40\x88\x1e\x06\xbb\xb5\xd1\x26\x8c\x43\x9a\x33\x62\x7a\x9f\x9c\x53\x99\x16\x7d\x37\xaa\x7b\x5f\x3f\xb5\x20\xa6\x2e\xb1\xcc\xd4\xd1\x9b\xbb\xcb\xaf\xfe\xe7\xd5\xd9\xbf\xbf\xb5\xbb\x38\x5a\x4a\x65\x00\x56\xfb\x13\x25\xe8\x63\x03\x25\x84\x80\x97\x5e\x7a\x49\xa2\x7d\x2e\x9c\x33\xf7\x81\x9a\x14\x3f\xe6\x8a\xa0\x84\xe8\x63\xe5\xd1\x08\x8b\x4f\x1f\x6e\x65\xc0\xb5\x5a\x10\xf2\xb7\xbe\xe0\x84\x4f\xb6\xef\xda\x45\x3b\x84\x77\x2c\x58\x84\xfe\x72\x81\x9d\x7c\xa8\x2a\x26\xc5\x38\xe5\x50\x83\x84\x74\x8a\x95\x1d\x3b\x58\x63\x13\xd7\xc8\x5c\xb4\x24\x75\x70\x99\x32\x12\x00\xd4\x6f\xfc\xc6\x6f\xc8\xeb\xd7\xaf\x1b\x43\x60\x96\x88\xda\x37\x12\xf3\x5b\x43\x42\x88\x42\x6b\x9d\x17\x95\x9c\x5e\x3e\x1d\x5d\xbd\x79\xb8\xf5\xec\xcd\xc3\xc9\xaf\xee\x9d\xe5\x1f\x2e\x2a\xf9\x18\xd4\x6f\xb5\x00\xd0\x19\x1a\x76\x4d\xa8\xf7\x12\xe5\x83\x04\xe8\x31\x31\x62\xdd\x82\x38\x8a\x34\x60\xcb\x4e\xd9\x10\x27\xc0\xad\xac\xd8\x25\x75\x6b\xc0\x0d\x51\xef\xd3\x6b\x73\x8d\xbc\x08\x7d\x93\x04\xcb\xcc\x3b\xaa\x88\xce\x6f\xa1\x0b\xfd\xf5\x2d\xfe\x30\x94\x69\x31\x6d\xd3\x29\xd0\x50\x22\x90\xb2\xcc\xd4\xf2\x6c\xa4\x66\xb3\x42\x9d\x9c\x16\xd5\xc9\xfd\x71\x75\x72\x32\xae\x4e\xce\x8a\xea\x64\x9e\xab\xf9\x22\x57\xf3\x55\xa6\xe7\xa5\xac\x23\x2a\xba\x8e\x9c\x94\x0d\x20\x29\x1b\x1d\x4b\x00\x50\x02\x84\x02\xf4\x45\x06\x02\x2d\xed\x3f\x04\x4c\x54\x53\x37\x6c\x04\x71\x1e\x6d\x03\x85\xae\x7b\x51\x17\xe8\x40\xb5\x33\xf2\x82\x36\x8f\x9b\x3c\x0c\xc0\x25\x90\x31\x8e\xf6\x6c\x49\x25\x40\x2a\xd0\x79\x99\x81\x5c\x80\x96\xa7\xf5\x52\xb7\x14\x0a\x46\xb9\x16\xf9\xa8\x8e\xc8\x4c\x8a\x4a\x4c\x26\x2b\x39\x99\xae\xb2\x9d\xed\x65\x36\xdd\x59\x64\xbb\x35\xa0\xc9\x76\xb6\x56\x72\xa7\xa8\x64\x31\xaa\x44\x0d\x66\x50\x44\xa6\x73\xea\xfd\xbd\x21\xdc\xf8\xa0\xd3\x47\x50\x5a\x32\x18\x71\x9e\x46\xf7\x1a\x65\x38\xc7\x10\x40\x3b\xc2\xf0\x98\x17\x88\x21\x8d\xc0\xd0\x68\xa4\x70\xe9\xc1\xec\x71\xa1\x9f\x89\x5b\xd7\xe8\xf3\xfa\x7e\x14\xb2\x6f\x39\x34\x2e\x0b\x02\x56\x52\xcd\xdf\xd9\x5e\x7d\xe7\xbb\x57\x66\x5f\x7b\x63\x77\x79\x67\x91\x6b\xd5\xec\x17\x92\x74\xdc\x08\x21\x14\x8e\xf2\x35\x4b\x45\xe6\x31\x05\x17\xd4\x16\x0f\x7d\x41\x0e\x45\x38\x62\x7c\x85\x2f\x02\x8f\x75\x08\x05\x07\x52\x7c\x52\x4c\x04\xc9\x47\xeb\xab\x17\xa7\x53\x4c\x04\x67\x28\x3f\x6f\x1b\x63\xe0\xe2\x2a\x94\x1a\x71\x09\xd1\xa4\x94\x77\x0d\x94\x21\x11\x97\x18\x70\x14\x42\xce\xbe\x67\x34\xb9\xe4\xe1\xfa\xf8\xde\x16\x14\x00\xc0\x8d\x1b\x37\x70\x9e\x99\xd4\xed\x19\x2d\x66\xf3\x2d\x68\x28\xb6\x56\xd9\xce\xc3\x27\xc5\x23\x4f\x1c\x4c\x3e\x70\xfd\x68\xf2\xab\xbb\x8b\xfc\x03\x99\x12\x57\xad\xb7\xfb\x36\xec\x2c\x78\xeb\xd8\xcb\x13\x76\xb6\x79\xa3\x34\xc6\x1d\x19\xc7\x9e\x11\xb3\xde\xe0\x0c\x99\x23\xc0\xdd\xd9\x42\x67\x34\xa5\x7d\xde\xa0\x0f\x81\x7e\x03\xc6\xec\x2f\xc0\x6f\x86\x3d\x5b\x2a\xec\xaa\xf5\x3f\xf5\x44\xda\x59\xc6\xba\x71\x18\xcc\x33\x6e\x8f\x0f\xae\x87\x6e\x32\xca\x7a\xb3\xec\x72\x95\xa9\xe5\x22\x57\xf3\xd3\xa2\x32\x20\xe5\xf8\x74\x5c\x5f\x9f\x8d\x9a\xa8\xca\xa8\x9a\x2d\xea\x65\x9f\x25\x08\x58\x41\x3d\x16\xda\x1f\xa6\x6b\xa2\x26\x25\xca\xef\x81\x15\xe8\xc6\x57\x0f\xbc\xe0\x08\x0c\xf4\xe7\xb9\x33\xd2\x42\xee\x7b\x1b\x53\xc9\x12\xa6\x49\x56\xa4\x85\x82\x16\xf4\xcf\xca\x43\x20\xc6\xfa\xac\x1f\xfd\x38\x28\x98\x48\xa3\x96\x20\x97\x5a\xe5\xab\x4c\xc8\xd3\x51\x95\x0b\x21\xa4\xd0\x30\xca\x94\x28\x8a\x52\x4c\xb6\x56\xd9\x74\xcb\x00\x99\x45\xb6\x7b\x61\x91\xed\x5c\x58\x64\xbb\x0d\x90\x99\x16\xa5\x9c\xe4\x4a\x14\xb9\xf9\xf2\x09\x2f\x71\x98\x3e\x44\x51\x17\x6b\x73\xab\x00\x70\xec\xc1\x6d\x89\x08\x98\xeb\x1e\x19\x52\xad\x3b\xe7\x6e\xa2\x24\xac\x40\xb0\x3e\x53\xb6\xa2\x27\x2d\x89\x06\x0c\x61\xb0\x5e\x9a\x8c\x7f\x3b\x8a\xc8\x9f\xb8\x8c\x0f\xbc\x03\xe0\x0f\xdf\xb3\xa2\xa8\xd6\xbe\x19\x3b\x4b\xd7\xda\xa9\xe3\x49\xf5\xfa\xf7\x2f\xcf\xbe\xfa\xc3\xbd\xc5\xad\xf9\x48\xb5\x67\x3a\xa0\x76\xea\x45\xf5\x4c\x42\x4b\x45\x31\x8e\x78\x68\x94\x85\x8b\x66\xb8\x64\xf8\x5e\xec\x39\x1f\x40\xf3\x52\x80\x50\x2c\x8d\xcf\xf7\xf9\xf8\xad\x1b\xa8\x70\xc9\x8f\x8d\xd6\x44\xaf\xd0\x70\x11\x17\x5f\xc8\x27\xe4\xf0\x53\x97\x86\x42\xe0\x82\x22\xea\x14\xfe\x1c\xf8\x01\x86\xce\x55\x7e\x08\x12\xf6\x0d\x06\x7a\xed\xa2\x87\xf7\xbc\xe7\x3d\xf0\xbd\xef\x7d\x0f\x5e\x7c\xf1\x45\xfa\x06\x62\x8c\x79\xde\xe4\x15\x50\x6f\xc2\x9d\x6c\x2f\xe5\xce\x23\xc7\xe3\x1b\x4f\x1c\x6c\xfd\xe2\xa3\xf7\xc6\xbf\xb2\xbd\xcc\xde\x9f\x69\xb1\x6b\x87\x9e\xcd\x1b\x13\xca\x74\xae\xa3\x40\x6b\x28\xbb\xdf\x4e\xe9\x2c\x64\x6f\x73\x2a\xb9\xed\x45\x5f\x98\xb7\x56\x6c\x0c\x31\xc6\xe8\x0c\xaa\xfd\x0c\xcb\xea\x01\xa7\x1e\x2a\xa1\x85\x8c\x4c\x6d\x01\x2b\x0c\xc6\x6c\xe0\xe3\x58\x42\xea\xa9\xd2\x7f\x62\xbe\xf2\x29\x85\xf9\xaa\x47\x2f\x67\xa3\xea\xe4\x74\x5c\x1d\xdf\x2f\xaa\xe3\xfb\x93\xf2\xf8\xfe\xa4\x3a\x3e\x29\xaa\x93\x59\x0d\x58\xe6\xab\x4c\xcf\x75\x0d\x52\x4a\xb0\x7f\x3d\x17\xff\xad\xa3\x2a\xcd\x09\xa3\x80\xa2\x2e\xcd\x9b\xa9\x02\x00\x73\x0d\x0d\xad\x05\x66\x30\x60\xc1\x91\x17\x93\x47\xfe\x76\xf5\xb4\x97\x91\x70\x3e\x77\x8d\xc1\x8b\x35\xde\xcd\x78\x46\x20\xa7\x17\x81\xa1\xff\xf0\x27\xfe\x4d\xd9\x76\x1e\x40\x37\x1f\xf2\x86\x5f\x0d\x70\x04\xe4\x65\xa6\xf3\x32\xd3\xf9\x6c\xac\x24\x68\xc8\x05\xc0\x68\x5c\xca\xe9\x74\x25\x9b\x25\xa5\x6c\x77\x77\x9e\xef\x5e\x58\x64\xbb\x3b\x8b\x6c\x77\xda\x00\x99\x51\x25\x8a\x91\x12\x85\x54\xf5\x06\x76\x7b\x23\x2e\xae\x3b\x8d\x26\xd8\xcb\x30\xf5\x03\x12\xa1\x82\x6e\xcc\x61\xa0\x6f\x00\xb9\x6e\x90\x84\xf9\xdb\xce\x3b\x02\x06\xf0\x98\x6c\xf3\xda\xb5\xac\x0e\x4e\x0b\x24\xcc\x06\xfe\xd0\xcd\x6f\x82\x8f\x0c\xaf\x7a\xee\x99\xf9\x0e\xf5\x57\x5c\x8d\x40\xa1\x11\xa8\xe9\x14\x47\xc0\x0b\x47\x2a\x3b\x9d\x67\x45\x75\xf0\x83\xfd\xb3\xaf\xff\xe0\xa1\xf9\x7f\xcd\x8a\x6a\xa6\x85\x75\x5e\x0b\x3b\xc6\x4c\x42\xcb\x44\xd4\xdf\x50\x10\x43\x53\x4c\x54\x7f\x88\xc3\xa5\xe5\x52\xfd\x60\xe8\x05\x96\xca\x89\xa5\x89\x01\x09\xb1\xa0\x2e\x76\x25\x82\xab\x9b\xd1\x25\x46\x77\x8e\x17\xed\xd7\x96\x27\xfd\x1c\xda\xe5\x54\x43\x1d\x41\x3b\x2b\x36\x42\xe2\xea\xe4\xd4\x86\x72\x35\x58\x2c\x7a\x74\xe9\x1f\x13\x79\xc2\x6d\xe6\x93\xe5\x03\x30\x00\x00\x70\xf5\xea\x55\xf9\xc2\x0b\x2f\xc0\xdf\xfe\xed\xdf\x2a\xf3\x9b\x43\x80\x8c\x7d\x53\xc6\x6c\xc0\xcd\x85\x10\x05\x68\x28\xb6\x97\xd9\xee\x8d\xbb\xe3\x27\x9e\x3c\x98\xfe\xb7\x6b\xc7\xc5\xaf\x4c\x4a\xf9\x4c\xa6\xc5\x14\x1b\x37\xeb\xba\x75\xd8\xdd\x81\x5d\x3d\x22\x80\xce\xb1\xd3\xd0\x05\x2a\x67\x15\x31\x51\x15\xf4\xa9\xb4\x6f\x23\xab\x09\x1d\xd3\xd4\x1d\xd8\xca\x84\xb0\xdb\xb0\x37\x2d\x67\x7e\x1d\xd7\x06\x3b\x38\xf2\x21\x18\x7d\xf0\xdb\xa2\xed\x94\x90\x43\x6e\xc9\x88\x61\x06\xdc\xbe\xcd\x3e\x15\xa1\xcb\x7a\x8f\x8a\x9a\xcd\x8a\xea\xe4\x64\x5c\x1d\x1f\x8f\xcb\xa3\x7b\x93\xf2\xe8\xfe\xa4\x3a\x3e\xa9\xa3\x2b\x33\x0e\xa8\x34\xfb\x52\x30\x70\x71\x82\x17\xb3\x87\xa5\x01\x14\x06\xd0\x60\x07\x60\x45\x5a\x9a\x65\x1d\x0b\xa4\x90\xe5\x1f\xe3\x34\x54\xaf\xcf\xd0\x1b\x30\x8e\xb2\x30\x74\xb8\xed\xa8\x2d\x31\xcf\x5c\x91\x17\xf6\x1a\x1f\xa8\x08\x68\xf3\x26\x8e\xc2\x40\xb7\xbf\x8b\x1e\x07\xd0\x3e\xd7\xa0\x73\x10\x22\x3f\xcb\xab\xfb\xf3\x91\x2a\x0e\xa7\xe5\x48\x2a\xc8\xeb\x8d\xbe\xd9\xce\x4e\x13\x85\xd9\x9d\xe7\x7b\xbb\xf3\x7c\xef\xc2\x22\xdb\xdd\x5e\xc8\xdd\x71\x25\x27\xb9\x92\xb9\x54\x90\xe3\x78\x21\x8e\x02\xda\xd1\xb9\xb6\x35\x3a\x6a\x6b\x2c\xf5\x01\x10\x7a\x68\xd3\x63\xf4\x63\xfe\x58\xcb\x3e\xe8\x40\x3c\xc0\x63\x96\xf6\x8b\xb0\xe8\x7b\x11\x48\x66\x99\xa9\x5d\xe2\x65\xeb\xd6\x94\xd5\x06\x4c\x09\xab\x21\x5a\x35\x05\xfa\x4d\x28\xd0\xb0\xcc\xf5\xec\x47\x17\x17\xdf\xfa\xee\xd5\xb3\x6f\x1e\x8f\xcb\x63\x25\xac\xb1\x6f\xef\xb7\xaa\x53\xac\xbd\xda\x21\x2d\x00\x00\x20\x00\x49\x44\x41\x54\xdf\x08\x81\x84\x98\x17\x4e\xae\x1c\x95\xe9\x92\xe1\x03\x2b\x9c\xbe\x31\x2f\xd1\x3e\x70\x16\x0b\x32\x5c\x7e\xd1\x45\xef\xd2\x3d\x86\x36\xa6\xdf\x62\xdb\xd6\xd5\xaf\xed\x3d\x9d\x3e\xb1\x88\x71\x28\x42\x0b\x55\x3e\xa6\x6c\x6a\x54\x67\x5d\x1e\xbe\x01\xe7\x1b\x80\x29\x3c\xdb\xe7\x2f\xbd\xf4\x92\x44\x6f\xfb\xf8\x0d\xd5\x84\xc8\x8d\x41\x2e\x04\x88\xc9\x74\x29\x77\x9f\x3c\xd8\x7a\xea\x3d\x07\xd3\x5f\xbb\x7c\x32\xfa\x5f\xc6\xa5\x7c\x42\x80\x28\x3a\x67\x0b\xc4\xd4\x82\x75\xc7\xfd\xc5\xc9\x7a\x86\xc2\xc3\x7d\xc7\xcd\xe4\x91\xb7\x38\x9a\x5c\xa1\xf3\x5e\xb4\xdd\x21\xc7\x28\x2b\x7c\x85\x48\x88\xbc\xff\x49\x76\x17\x20\xb7\xf6\xd9\x20\x36\xb4\x1d\x70\x59\x0d\xa0\x2a\xa9\x55\x29\xf5\xf2\x6c\xa4\x66\x27\xe3\xea\xf8\x68\xab\x3c\x3c\xda\x5a\x1d\x1c\x6d\x95\x47\xcd\x7e\x95\xe3\xf9\x48\xcd\x35\xc0\x42\x43\x0d\x4e\x9a\x3d\x29\x14\xa8\x2c\xa1\x03\x25\x2c\x78\x31\x11\x16\x64\xe8\x7b\xfb\x59\x10\xd0\xa0\x20\x06\x03\x14\xf3\xbc\xfd\x6b\x80\x0c\xe9\x17\x6b\xec\x72\x9f\x82\x77\xcb\x09\x9a\x03\x2d\x26\x49\x44\x2b\x51\x59\x49\xca\xe0\x68\x4b\x7b\x6f\xc6\x3f\xa1\xc9\x3d\x7f\xe9\x75\x3b\x6f\xc8\x33\x73\x3f\xca\x14\x14\x93\x55\x36\xbd\xb0\xc8\x76\x76\xe7\xf9\xee\xfe\x2c\xdf\xbf\x34\xcb\x2f\xef\x2e\xf2\xbd\xed\x65\xb6\x5b\x94\x62\x92\x57\x32\x97\x75\xf4\xa6\x03\x31\x68\xa9\x85\x1d\x82\x64\x79\xc9\xf8\xf8\xde\xb8\xc6\x4b\x41\xa4\x3c\x40\x07\x56\xcc\x62\x90\x3d\xd7\x50\x1f\x20\x30\xc3\xcd\x6b\x6a\x1b\x28\x0d\x5e\xda\x01\x10\x8d\x5e\xcc\xcf\x44\x98\xf9\xd2\xd2\xf7\x2b\x68\xf6\x76\x95\x52\xcf\xef\x5c\x58\xbe\xf2\x7f\x5f\xbf\xff\x7f\xfd\xf0\xd2\xe2\x7b\x95\xd0\x47\x20\xe0\x18\x00\x8e\x01\xe0\xa4\xf9\x37\x83\xfa\xf4\x5c\x7c\x00\x5d\x3b\x46\xef\xdd\xbb\x07\x9f\xfb\xdc\xe7\x62\x5e\x6a\x87\xa4\x98\x17\xf5\x75\xf9\xc3\x06\x65\xf8\xa2\x43\xeb\xf2\xf2\xe5\x0f\x95\x13\xd2\x97\x03\x66\x4e\x59\x34\xe2\x12\xeb\x80\x37\xa1\x38\xf7\xcc\xd7\x48\x2e\xc0\xe1\x43\x92\xf4\xd9\x10\x80\x81\x13\x87\x7c\x25\x43\x87\x9f\x73\xfc\xad\x8e\xd9\xda\xda\x92\x67\x67\x67\xca\x9c\xcf\x62\x0c\x3b\x32\xea\x39\x7a\x93\x2c\xb4\xd6\x85\x04\x31\x99\xac\xe4\xce\x4f\xbf\xb9\xfd\xec\x93\x07\xd3\x4f\xec\x9d\xe5\x2f\x14\x95\x7c\x04\x80\x6c\xc2\x6d\x93\xb0\x2c\x68\x77\xd0\x7b\xdf\xa8\x01\x98\xcc\x2e\xc4\x5c\xeb\x55\xe7\xe1\xdf\x83\x69\xdf\x00\x19\x99\x3e\xd0\xd2\xd4\xb3\x8b\x64\xd0\xb7\xc2\x06\x71\xd0\x75\xf9\xda\x90\x37\x7a\xd1\x07\xe0\xb8\x47\xe0\x85\xbe\x11\x1b\x03\x2c\x04\xb0\xce\x85\xb2\x35\xbb\x11\xcc\x57\x40\x67\xa3\xea\xe4\x78\x5c\x1d\xdd\x9d\x96\x07\x87\xd3\xd5\xc1\xdd\xe9\xea\xf0\xde\x56\x75\x7c\x5a\x54\x27\xab\x4c\x2f\xb5\xd6\x0b\xa8\x23\x1e\xcb\x06\x90\x2c\xa1\x01\x2c\x5a\xeb\x65\x03\x28\xb0\xa1\x36\x4b\x3d\x06\xbc\xb4\xd7\x74\xef\x0a\xf4\xc1\x8a\x89\xae\x98\x67\xa6\x9d\xdb\xb9\x85\x96\x8a\xe8\x5e\x02\x0c\x5e\x7a\x79\xa6\xbf\x7c\x91\x17\x0c\x5e\x28\x88\x41\xf4\xec\x3d\x74\x73\x88\x03\x2d\x38\xe2\x68\xfd\x43\x80\x06\xe7\x59\xc0\xc5\x00\x7e\x13\x85\x31\xd7\x5a\x6b\x73\x40\x63\x0e\x00\x79\x25\x21\x3f\x29\xca\x7b\xa7\xe3\xaa\x78\xeb\xc2\x72\x54\x54\x62\xb2\x3b\xcf\x77\x77\xcf\xf2\xdd\xfd\xb3\xfc\xf2\xfe\x69\x7e\xf9\xe2\xd9\x68\xff\xc2\x22\xdb\x1b\x97\x72\x9a\x37\x67\xd2\xd4\xd1\x09\xd1\x8e\x4d\x0c\x1c\xea\x3a\xa2\x01\x24\xd8\x4b\x76\xbc\x75\x91\x0b\x94\x89\x18\xdb\x73\xad\x3b\x4b\xc5\xf5\x52\x82\x53\xff\xc5\x06\x81\x20\x33\x57\xda\x8b\x0e\x28\x01\xa0\xb8\xa3\x89\xba\x76\x64\xf6\x9b\x0d\xd4\xf3\xa5\x12\x50\x1e\x6d\x95\x77\xbe\x7b\xe5\xec\xab\xb7\xf6\xe6\x3f\xac\x04\xcc\x40\xc0\x1c\xa0\xfd\x67\xc6\x7f\x6f\x7c\x37\x22\x15\x00\x70\xa0\x65\x9d\x97\x64\x9a\x52\x5e\x86\x53\x78\xc7\xbc\xec\xc6\x80\x26\x1a\xad\xa7\xfe\x8d\xe3\x1f\x03\x3c\x86\x06\x13\x42\x7e\x77\x68\x7b\x4a\x47\x9e\x55\xce\xe7\x5a\xb8\x82\x2e\x94\x34\xb4\x21\x5c\x00\x63\xa8\x3e\x43\x68\x43\xf2\x5c\x0d\x18\x7a\xee\xe3\xd3\xcb\xc7\x4b\x43\x00\x2d\x68\xc1\xa1\xf2\x42\xd7\xbf\xec\x5c\x00\xd4\x7b\x5a\x3e\xf8\xc3\xdd\x5f\x78\xfc\x70\xf2\x3b\x17\x16\xd9\x07\x73\x25\xf7\x85\x1b\x40\xf5\x92\xb5\x87\x03\x3b\x2b\xc7\x86\x8e\x36\xda\xa2\x7b\xb6\xa9\x29\x86\xc2\xe8\xd6\x1b\x26\xde\x2b\xd2\x0f\xb5\xd7\x20\xa1\x2e\xd0\x8f\x86\x18\x03\xab\x1b\x0c\x65\xf6\x02\x18\x7a\x72\xca\x28\x53\x27\xf3\x36\xdc\xbd\x21\xa2\x43\xe6\xd8\xe8\x01\xa2\x6f\x33\xba\xe7\x4a\x80\x5a\xe4\x6a\x76\x77\xba\xba\xf3\xce\xb4\xbc\xf3\xf6\xce\xf2\xce\xe1\xb4\x3c\x3a\x9e\x94\xc7\x67\xa3\x6a\x56\x66\x30\xd7\x5a\xaf\x1a\xd0\xb1\x84\xce\x28\x2f\xa1\xee\xef\x16\xc0\x70\xe0\x04\xec\x65\x22\xd0\xdd\x67\xcd\x25\x07\x52\xf0\x3f\x12\x31\x31\xa0\x03\x47\x5f\x00\xd1\x01\x7e\x1e\xca\xb3\xdb\x88\x1f\x3b\xbe\x68\x0c\x90\xb1\x89\x40\x79\xfb\xcc\x15\x69\x04\x00\x20\x73\xa1\x07\x68\xf0\x3e\x18\x4d\x7e\xf6\xa2\x79\x6e\xef\x0b\x63\x7e\x12\x03\xec\x08\x4c\xd1\xc8\x29\x00\x60\x3c\x2a\xc5\x64\x7b\x99\x4d\x2f\xce\xb3\xbd\xcb\x27\xa3\xcb\x57\x4f\x8a\xab\x0f\xcd\x46\xd7\x76\x16\xf9\xde\xb8\x14\x93\x7e\x23\x01\x6a\x17\x68\xc7\x1d\x9e\x05\xbd\x39\x63\xe6\x41\x83\xb4\xcd\x7c\x33\x80\xa6\xae\x2f\x40\x4d\x89\x5e\x3c\xf0\xb8\xb6\xc6\x78\x03\x0e\x41\x74\x60\xdf\xd0\xa3\x25\x1c\x1c\x55\xe9\xe8\x1b\x9a\x26\xa4\xa2\x35\x74\x3c\x05\x7e\xe1\xe9\x64\x99\xf3\x69\xda\x4f\xc9\xeb\x83\xf9\xd4\xfd\x71\x75\xf0\xdd\xab\xb3\x7f\xfb\xfa\xa3\xf7\xbf\x74\x52\x54\x77\x84\x10\x26\xd2\x72\x0c\x00\x27\x5a\xeb\x99\x10\x62\xa6\xeb\x5f\x88\xc6\x73\xa6\x8d\x14\xbe\xfc\xf2\xcb\xea\xea\xd5\xab\xf2\xce\x9d\x3b\x2e\x5b\xbb\x29\x87\xec\xa2\x05\xf0\xfb\x01\x1f\x7d\x48\x7e\x8a\x1f\xf3\xd1\x87\xe4\x0c\xd1\xc5\x77\xef\x02\x53\x29\xf4\xa9\xfa\x4b\x80\x7a\x8f\x8b\x2b\x29\xe6\x9a\x0a\xe2\x14\x0c\x29\x13\xc3\x97\x26\xaa\x7c\x08\x30\xb8\x64\xa4\x74\x38\x47\xe7\x92\x11\x93\xd7\x6b\x3b\x13\x69\x01\x00\xcb\xe0\x6b\xfb\x87\x12\xbb\xa5\xa1\x7a\x4f\xcb\xe4\xca\xe9\x68\xef\x17\x5e\xdb\xfd\xd8\xbb\x8e\xc7\xff\xc7\xd6\x4a\x3e\x2b\xb5\x98\x06\x82\x1b\xbd\x84\xdf\xcc\x2c\x67\xc3\x81\x16\xe8\x00\x85\x1d\x15\xc1\xc5\x44\x8f\x16\x15\xb0\x68\x8c\x18\x43\xab\x1b\xc3\x49\x7d\xa4\xc0\xe5\xf0\x5b\xa6\xad\x4c\x3f\x1f\xc9\x32\x9b\x0a\xbb\x88\x8a\x60\xe9\x01\x30\xe0\xea\x40\x94\x16\x02\x94\xd0\x6a\x91\xab\xf9\xf1\xb8\x3c\x7c\x7b\x67\x75\xfb\x8d\x8b\x8b\xdb\x07\x3b\xe5\xc1\xfd\xa2\x3c\x59\x8c\xd4\xec\xff\x65\xee\x5d\x9f\xe4\x38\x8e\x7b\xd1\x5f\xf5\xf4\xf4\xcc\xce\x3e\xb0\xbb\x58\x2c\x16\x20\x00\x82\x24\x44\x91\x12\x45\x49\x04\xa4\x63\xcb\x3a\xb6\x1e\x47\xb6\xac\x7b\x64\xcb\xd2\xb5\xef\xf5\xe3\x3a\x42\x61\x51\xf7\xf3\xfd\x77\x40\x2b\xec\x70\xf8\x11\x76\x84\x3f\x39\xec\x90\xc3\xef\x63\xfb\xf8\x04\x25\x50\x12\x5f\x22\x40\x80\x78\x10\x00\x81\xc5\x62\xb1\xd8\x9d\x9d\x67\x4f\xd7\xfd\xd0\x5d\x3d\xd9\xd9\x59\xd5\xd5\xb3\x2b\x1d\x17\x62\x31\xdd\xd5\x59\x59\xd9\xd5\x55\x59\xbf\xca\xca\xaa\x4a\x14\x86\xc8\xc0\x49\x36\x05\x44\xc1\x4a\x01\xb8\x64\xca\xb9\x34\x0d\x44\xe3\x34\x59\xe6\x6c\x9e\x83\x00\x14\x3e\x0d\x84\xa9\x35\x05\xec\x79\xf6\x5e\x85\xe5\xcd\x36\x25\xc3\xa7\x88\x48\xb9\xe8\xc2\x46\x60\xdc\xea\x62\x4b\x47\x64\xa2\x21\x20\xf1\x85\x81\x0b\x05\x32\xc4\x8a\x13\xb0\xb8\x1c\xb8\x64\x32\x99\xeb\x80\x5d\x53\x2b\x8c\x01\x27\x00\x9b\x36\x22\xd6\x1a\x0a\x68\x22\x73\x9f\x59\x6f\xa2\x71\x88\x68\x27\x8c\xa3\x9d\x4e\xbc\x75\xe7\xc8\xe8\x76\x67\xd4\xef\x1c\x19\x84\xcb\xc7\xba\xcd\xb5\xe3\x7b\xd1\xc6\xd1\xfd\x68\x63\x69\xd8\x58\x0e\x27\xaa\x3d\xb5\x1e\x52\xe0\xa1\x08\x8c\x00\xbb\x22\xf5\x0e\xd3\xfa\x3e\x1d\x2c\xf0\x05\xf7\xe5\xf6\xa6\x49\x9d\x35\x96\xca\x42\x0e\xd4\x72\x8a\xb4\x5e\x17\xc0\x0f\xe5\x9a\x8f\x4a\x0c\x10\x51\xe6\x12\x45\xdb\x0b\x72\xb0\x32\xb5\xf8\xa0\xc0\xb3\x17\x4d\x76\x6e\xae\xf6\xdf\x7c\xe7\x78\xef\xf5\xfd\x56\xb2\xad\xa0\x06\x48\xa7\x84\xcc\xb4\xd0\x80\x58\x21\x4b\x96\x17\x5a\x7f\x18\x68\xe1\xa1\x54\x9f\x05\x1a\x17\xbd\x09\x52\xe7\x4a\x07\xd7\x2e\x3e\x55\xf4\x75\x07\xd1\x75\xfb\xc5\xaa\x30\x8b\x51\xc1\xd5\xe7\xd7\xc5\x08\xb3\x00\x2f\x91\xae\x6a\x1f\x97\x3a\xa1\x4e\x01\x02\xe5\x0a\xe2\xe2\x31\x0b\x88\xf0\xe5\x63\x0b\xb6\x0f\xe7\x53\xf9\x78\xa5\x15\xe9\xe9\xf4\x10\x90\x76\x10\x98\x8e\x26\x73\x9f\x16\xa5\x54\x7a\xb2\x73\x92\x9e\xec\xfc\xd2\xed\xc5\xff\xe3\xf8\x5e\xf4\x2b\xed\x71\xf0\xb4\x02\xca\xa3\x3d\x1e\x2c\x56\x14\x17\xd8\xa1\x49\xca\x74\x2c\x86\x10\x2b\xe9\xde\xc2\xbc\xc0\xdf\x03\x79\x59\x5e\xa3\x1c\x4f\xe6\xdc\x53\x60\x56\xa4\x12\xf9\x14\xcc\xdb\x40\xa2\x34\xe2\x86\x1e\x75\x5b\x93\x9d\x87\x9d\xf1\xbd\xfb\x8b\xa3\x7b\x9b\x8b\xa3\xcd\xdd\xf6\x64\xa7\x1f\x4d\x7a\x63\xa5\x07\x3a\x05\x2c\x23\xa4\x80\xc5\x00\x12\x0a\x54\xa4\x5f\xee\x68\xcb\x57\x08\x51\x6b\x4a\xbe\x42\x88\xc5\x9b\xc0\xf7\x5c\x29\xb5\x09\x63\x39\x01\xa6\x96\x14\xc1\x1a\x33\x2d\x06\x61\xaa\x88\x4e\x2f\xf1\x40\xf9\x33\x5e\x05\x2b\x0a\xe1\xeb\x1a\x54\xf0\x78\xb0\xf8\xc0\xf1\x5b\x8a\x23\x56\x96\x1c\xc0\x90\xa9\xa5\x90\x3c\x97\x7c\x60\x0a\x67\x7d\x91\xf8\x28\x0e\x74\xb4\xd7\x9e\xec\xed\xb7\x26\x3b\x0f\x16\xc6\x9b\xd7\x57\x07\x37\x96\x07\xe1\xd2\xb1\x6e\xb4\x7e\xf2\x71\x74\x66\xb5\xd7\x5c\x9f\x1b\x07\x0b\x8d\x44\x85\x8a\x03\x06\x5b\x41\xb2\x36\x51\x68\x7f\xfc\x1b\x11\x5e\xc5\x36\x3a\x65\xc2\xeb\xb7\x12\x6e\x0a\x83\x0f\x9a\xc6\x76\x4d\x88\x69\xde\xd2\xb5\x06\x30\x08\x93\xee\x07\x4b\xa3\xab\x57\xd7\xfa\x6f\x3e\x9a\x1b\x3f\x40\x0a\x54\xa8\x2f\xcb\x00\xa4\xed\x08\x3e\x5a\xb6\x60\x1b\xd1\xd7\xb1\xb8\xd8\xe8\xab\x3a\x66\x7e\x4d\xef\x7d\xf3\x73\x81\x2c\x9b\xdc\xbe\x71\xbe\x41\xca\xa7\x8e\x71\xc0\x87\x9f\x2d\x1c\x44\xee\x54\x27\x79\x66\x5e\xd7\xdc\x64\xee\x81\x7a\x42\xd6\x31\x37\x99\xc0\xe3\x6d\xf7\x52\x5e\xe6\xf9\xac\x66\x2b\x9f\x60\x4d\xc3\x41\x0b\x33\x7b\x53\xd0\xd2\x6e\xc6\xaa\x73\x7a\xa7\x75\xf2\x63\x1f\x2c\x7c\x69\x63\x37\xfa\x5a\x2b\x3b\xd9\x59\x71\x27\x90\xda\xc1\x06\x07\x2a\x52\x39\x46\xd9\x36\x45\xa6\x2c\x34\x55\x52\xf8\xf0\xd0\xd9\xd0\x56\x12\x89\xa6\x9f\x5a\x8b\xca\x39\x6a\x00\x71\x90\xc4\xfd\x66\xd2\xdd\x99\x8b\xb7\x36\x17\x47\xf7\x36\x17\xc6\x9b\x8f\xe6\xc6\xdb\xbd\x68\xb2\x3b\x0c\xf5\x60\x12\xe8\xbe\x06\x46\x1a\x7a\x84\x74\xb4\x18\x6b\xad\x47\x00\x72\x4b\x0a\x31\x79\x97\x56\x0a\x11\x7f\x95\x7c\x25\x90\x26\xfb\xb2\x90\x7b\x73\x0d\x10\x2b\x0a\x9d\x0e\xca\x42\x42\xc0\x43\x22\x01\x09\xd7\xd4\x0f\x05\x16\x2c\x8d\xb9\x37\x79\x05\xec\xda\xc8\x43\xad\x31\x41\x26\x43\xe0\xaa\x1f\xb6\x40\xa6\x7e\x7c\x9e\x15\x9c\xd8\x4d\x9c\x70\x4d\xa7\x95\xc2\x8c\x17\x07\x2c\x1c\xbc\x14\x2c\x2f\x6c\x3a\x69\x0a\x62\x34\x22\x00\xed\x40\x23\x6a\x68\xd5\x6a\xc5\xc1\xc2\xe2\xa0\xb1\x74\xb4\xd7\x5c\x3b\xb1\xdb\xda\x58\xeb\x36\x4f\x2e\x0d\x1b\xcb\x51\x1c\xb4\x83\xec\x90\xc8\xf4\x65\xb2\xba\xa8\x40\xa6\x3d\xa7\x06\xc0\x6c\xb6\x67\x3a\xfd\xc2\xb7\xe3\xcd\xd9\x90\x69\x1e\x32\x85\x93\xbe\xa3\xb1\xc4\x4c\x83\xab\xed\x18\x8b\x09\xa7\x2b\xd3\x16\x0d\x95\xc5\xb6\x3e\x9d\xae\x1a\x87\xc9\xe0\xde\xe2\xe8\xbd\xb7\x8f\xef\xbf\xfa\xde\x5a\xff\xc7\xa3\x86\xde\x86\xc2\xae\xd6\x7a\x57\x29\x45\x9d\x71\x7b\x28\x5a\x26\x0b\xa7\x42\x6b\xad\xf1\xca\x2b\xaf\x24\x8b\x8b\x8b\xc1\xde\xde\x9e\xcb\x3a\xe2\x1b\xea\x4e\xcb\xb8\xd2\xb8\xf8\xfb\x4c\x27\xb9\xe2\x5c\xd3\x53\xae\x7c\x79\x1c\x84\x78\x57\xfa\xaa\x81\xb9\x0f\x98\xb1\x95\x9f\x4d\x9e\x3a\xfd\x2f\x00\x24\xca\x43\xd0\x59\x32\x98\x35\x54\x59\x31\x66\x31\x35\xf9\xf2\xf4\x49\x3f\xab\x0c\x85\xf0\xf5\xaf\x7f\x3d\x58\x5b\x5b\x03\xed\x04\xd8\x1c\xbd\x59\xee\x1c\x02\x68\xb7\xc7\xc1\xc2\xe9\x47\xad\x33\xcf\x6f\xce\x7f\xf1\xc4\xe3\xe8\x2b\xad\x38\x38\xa7\x80\xd0\xb2\x95\x1b\x80\xa9\xf2\xf3\xc5\x24\x39\xa9\x94\x46\x88\x73\x82\x88\xc2\x33\xbb\x10\x54\x51\x56\x9d\xe0\x2c\x83\x17\x62\x45\x29\x38\x1e\x97\x15\x6c\x9e\xa2\xa4\x78\x53\xf5\x3f\x6e\xe8\x41\xb7\x35\xd9\xd9\x5c\x18\xdd\xbb\xb7\x38\xba\xf7\x70\x7e\xbc\x95\xae\x06\x9a\x74\x47\x0d\xbd\x9f\x28\x8c\x34\xf4\x00\x99\x49\x9b\xce\xc7\x53\x6b\x8b\x26\x0e\xb8\x96\xbf\xdc\x9a\x62\xf1\x59\x01\x50\xda\xa6\x9f\x5b\x3d\x0a\xf5\xce\x80\x16\xa0\x08\x3c\xd8\x75\x42\xe9\x2b\xc0\x4a\x79\xc5\x97\x90\x46\xb2\xb4\x70\x0b\x8b\xc5\x1a\xe3\x0a\x2e\xe0\x92\x3f\x67\xf2\x15\xac\x2d\xa4\x5d\x51\xeb\x4b\x61\x3a\x89\xfd\x15\x2c\x31\x98\x82\x19\x3e\x7d\xc4\x7f\xdb\xda\x38\xf8\x6a\x44\x0a\x88\x82\x44\xcd\xb7\x26\xaa\xdd\x19\x35\x96\x96\xfb\xe1\xea\x7a\x37\x5a\x5f\xdf\x6b\x6e\x2c\xf7\x9b\x6b\x9d\x71\xb0\x10\x4e\x54\x14\xd0\x1a\x9c\x35\x54\x05\xfa\xad\x80\xd4\xaa\x51\x9e\x92\x05\x48\x5b\xa0\x60\x87\x58\x6c\xf8\xf3\xe9\x14\x12\xa6\x56\xc5\x29\xf0\x15\x2c\x3a\xc5\x7c\x35\xf1\x56\xcf\xa5\xb2\x81\x28\x00\xb1\xd2\xf1\xc3\xf9\xf1\xed\x2b\xeb\xfb\xdf\xbf\x72\xac\xff\xc6\x5e\x6b\xb2\x89\xe9\x0a\x22\xb3\x8a\x88\x5a\x5d\x06\x9a\xf8\x72\x81\x58\x3e\xc8\xde\x2d\xc0\xec\x7d\x95\xaf\xde\xf6\xed\xbc\x25\x3e\x75\xfb\x06\x5b\x67\x7e\x10\xc0\x70\x10\x5a\xc9\xe2\xe9\x92\x05\xc2\xb3\x2a\x7a\x29\xcd\x4c\xc1\xa6\x4d\xaa\x10\xe7\x41\x80\x83\xab\x80\xea\x14\xb2\x0b\xc1\xf9\xc8\x50\xa7\xf2\xd2\x50\x95\xbf\xf5\x7d\x4f\x9f\x3e\x8d\x4f\x7e\xf2\x93\xd8\xd8\xd8\x28\x3c\xa3\x53\x44\x28\x2a\xc6\x68\x7e\xdc\x58\x3a\xf3\xa8\xfd\xf4\xb3\x0f\x3a\x9f\x3f\xb1\x1b\xfd\x62\x6b\x1c\x3c\x1d\xa4\x0e\xba\x95\x18\x43\x52\x7c\x32\x8c\x98\x9e\x8b\xcc\xed\x11\x32\x40\x29\x4f\xbb\x54\x61\x24\x1b\x90\x28\xcb\xc6\x73\x98\xd5\x26\x54\x95\x57\xba\xda\x61\x14\x26\x83\xbd\xd6\x64\xf7\xfe\xe2\xe8\xf6\xbd\xc5\xe1\xdd\xed\xf9\x78\x7b\xaf\x35\xd9\x19\x86\x49\xcf\x58\x57\xa0\xf2\x11\xe1\x08\x99\x92\x35\xf7\x06\xc4\xa0\xe8\xa7\x42\xe7\xea\xad\x2b\x83\xd8\x14\x0f\x5d\xb2\x0c\x4c\xad\x27\x85\x38\xc0\x0e\x2c\x08\x2f\xab\xc3\xac\x19\xc1\x02\xc0\xcb\x2f\xbf\x1c\x00\xc0\x2b\xaf\xbc\x92\xd0\x6b\x00\x38\x77\xee\x5c\x00\x00\x57\xaf\x5e\xcd\xef\xaf\x5e\xbd\x9a\x48\xf1\x36\x3a\x13\xe7\x0a\xd4\xea\xe8\x11\x4a\xb4\x82\xd5\xa5\x74\x6d\xac\x35\x04\xbc\x18\x9a\x12\x80\xa1\xbf\xba\xb8\x1f\x8c\xe4\x03\x63\xac\x31\xe6\x3a\x52\x4a\xb5\xa1\x11\x05\x1a\x51\x73\xa2\xe6\xe7\xc6\x8d\x85\xa5\x41\xb8\x7a\xb4\x17\xae\x1d\xdf\x8b\xd6\xd7\xf6\x9b\x1b\x0b\x83\x70\xa9\x99\xa8\xa2\x15\x86\xbe\x13\x58\xdd\xb7\x8c\x12\x9c\x56\x4b\x8d\xe2\xd9\x43\x15\xc1\xb7\x1d\x4b\xe9\x40\x64\x4c\xa0\x93\xc7\xed\x78\xf3\xda\x5a\xff\xf5\x2b\xeb\xbd\x1f\x6e\xcd\x8f\xdf\x4f\x82\x12\x68\xe9\x02\x85\x55\x45\x25\x4b\x0b\x80\xe4\xe2\xc5\x8b\xae\x7a\x34\xeb\xc0\xb1\xae\x95\x40\xba\x77\xf5\x3b\x3e\x96\x94\x83\xa6\x9b\x75\x30\x3d\x0b\xb8\x82\x07\x9d\x2b\x9f\x83\xc4\x5b\x83\x54\x47\x0f\x8d\xb9\x90\x56\x02\x28\xae\x0f\xe6\xfb\xac\xea\xa3\xfb\xc8\x36\x6b\x70\xc9\x51\xfa\xf0\x64\x9f\x16\x69\x55\x84\x71\x08\x8c\x14\x54\x7b\x61\xd8\x58\x3a\xbd\xd3\x3a\xf7\xa1\x07\x9d\x5f\xd8\xd8\x8b\xbe\xd0\x1e\x07\xe7\xe8\x1e\x2d\x85\x8f\xc7\x7c\x34\x44\xe5\xe3\x69\x4d\x11\x83\x64\x75\x29\x80\x91\x22\x98\x01\xe0\x04\x40\x75\xc3\x74\x14\x29\x4c\x77\x08\xbc\x4b\xa3\x46\x12\x1f\x07\x7a\x34\x6c\x26\xbd\xc7\xed\x78\xfb\xc1\xc2\x78\xf3\xfe\xc2\xe8\xde\xc3\x85\xf1\xe6\x6e\x6b\xb2\x33\x6e\x24\xfb\x89\xca\x96\x68\x2a\x48\x96\x95\xfc\x1a\xd9\xf4\x10\x05\x2e\x64\x0a\xa8\x60\x5d\x01\x4a\xbb\xd7\x52\xeb\x0a\x58\x5c\x6e\x25\x11\xac\x20\x25\x6b\x0b\xb7\x6c\x98\x51\xea\xb7\xbf\xfd\xed\xe0\xd6\xad\x5b\xf8\xee\x77\xbf\x5b\x59\xbf\x3f\xf6\xb1\x8f\x05\x00\xf0\xc6\x1b\x6f\xf8\x8e\xf6\x7c\xdb\x5c\x1e\xf7\xb1\x8f\x7d\x2c\x78\xe3\x8d\x37\x12\xfa\x6b\x88\xe8\xfd\x1b\x6f\xbc\x91\xd0\x03\xf5\xcc\x8a\x3b\xc7\xf4\x93\x04\x7e\x0a\x71\xac\xad\x89\xd7\x28\x9f\x4e\x5c\x9a\x46\x22\x40\x45\x02\x30\xed\x2c\xbe\x8d\xec\x18\x0e\x00\xed\x46\xa2\x5a\x73\x71\xb0\xb0\x34\x68\xac\x1e\xdd\x6f\xae\x1d\xdf\x6b\x6d\x1c\xeb\x36\x37\x96\x06\x8d\xe5\x68\x12\x74\x82\xec\xbc\x24\x5e\xbf\x8b\x96\x0e\x14\x1b\x16\x38\x50\x49\x37\x85\xe4\xbe\x32\x3c\x14\x2c\x3c\x0c\x21\x49\xb3\xce\xd3\xe9\x1f\x3d\x6d\xc7\x46\x3e\xa1\x8d\xf5\x9a\x93\x9d\x1b\xab\x83\x37\xdf\x39\xbe\xff\xc3\x7b\x4b\xa3\x6b\xa3\x20\xd9\xc9\xa6\x86\x0c\x70\x31\xd3\x43\x3d\x36\xc5\x9a\x03\x7a\xad\x75\x62\x00\x34\x04\x1d\x6a\x89\x73\x85\xc3\xb0\xb8\xb8\xac\x0c\x55\xf2\xf9\xb6\x1f\x97\x3c\x9c\x9f\x4b\x16\xe9\x99\x4f\x3e\x55\xf1\x34\x5f\xdb\xb5\x8d\x9f\x6f\x99\xf0\x20\xf6\xf5\xbc\x9e\x1e\xb4\x13\x97\x42\x1d\x8b\x4b\x5d\x1e\x75\xcc\x58\xbe\xc1\x56\xc0\xd2\x87\xa2\x41\xaa\xf0\x05\xb9\xcd\xa8\xd6\x32\xea\x9b\x2a\x43\x8d\xf6\xd2\xb0\xb1\x7c\xe6\x51\xfb\xdc\x33\x0f\xe6\x3e\xbf\xb1\x17\x7d\xae\x15\x4f\x2d\x2d\x75\x42\xa5\xaf\x41\x01\xf0\xb8\xa7\x6b\x78\xbc\x6d\x4e\xdc\x23\xab\x32\x2f\x32\x27\x5f\xc5\x8f\x4e\x6b\x55\x8d\x2a\x09\x60\x49\xc6\x0d\x3d\xea\x45\x93\xee\xce\x5c\xbc\xbd\x35\x3f\xde\xdc\x5c\x18\xdd\xdb\x9e\x9f\x02\x16\x4c\xad\x27\x03\x1b\x58\x21\xbe\x2b\xe6\xda\xac\x14\x4a\xf4\x74\x53\x39\x0a\x58\x8c\xd5\x84\x9e\x21\x94\x83\x12\x3a\x1d\x04\x4c\x57\x51\x48\x16\x14\xfa\x2d\x2f\x5e\xbc\x98\xbc\xfc\xf2\xcb\x81\x51\xf0\x9f\xfe\xf4\xa7\x03\x00\x78\xf5\xd5\x57\x13\x7a\x4d\x8a\xe2\x20\x23\x36\x5e\xf7\xa5\x36\x50\x05\x62\xea\xb4\x61\x6b\xf8\xdc\xe7\x3e\x17\xfc\xf3\x3f\xff\x73\xa1\x4d\x49\xf5\x5b\x17\x97\x5b\xf3\x3c\x01\x7f\x4b\xcc\x74\xf7\x5d\xe6\xd8\x8b\xac\xcd\x1a\x8b\x8b\xf4\x97\x5b\x61\x80\x48\x69\xb4\x5b\x71\x30\x7f\xa4\x1f\x2e\xaf\xed\x37\x37\x8e\xef\x45\x1b\xc7\xba\xcd\x8d\xc5\x74\x49\x75\xa7\x91\xa8\xd0\xac\x1d\xf2\x69\x7f\xb9\xe5\xc5\x36\x2d\x2a\xf0\xa8\xdd\x66\xa7\xd8\xc9\x99\x81\x06\x30\x6a\x24\x83\xbb\x47\x86\x57\xde\x3e\xde\xfb\xfe\xfb\x2b\x83\xcb\x83\x66\xb2\x9d\xf9\xb4\xf0\x4d\xe6\xe8\xd2\x67\x3e\x85\x9a\x00\xa5\x29\x22\xdf\x70\x58\x23\xfd\x2a\xe0\xe2\xc3\x6f\x96\xbe\xf4\x20\x69\x0e\xc3\x22\x73\x10\x79\x7c\x74\x87\x2f\xef\x4a\xdd\xe0\xaa\xbf\xb3\xa0\xcf\x2a\x5e\xd2\xfd\x61\x15\x4e\x9d\xf8\xba\xa1\xae\x55\xa8\x14\xc8\xa8\xb1\xb4\xac\x13\x04\xb4\x28\x8d\xf6\xe2\xa0\xb1\x7c\xf6\xd1\xdc\x73\xcf\x6c\xcd\x7d\x7e\x7d\xaf\xf9\xf3\xed\x74\x37\xdc\x7c\x05\x98\x8f\x45\xc5\xcb\xc7\x45\x93\xad\xfb\xc9\x7c\x38\x9f\x2b\x37\xfc\xc0\xe6\xd4\x95\x43\x69\xb2\x6c\x08\x6d\x79\x9a\x29\xa5\x29\xee\xc9\x62\x05\x38\xa0\xa0\x45\xf6\x01\xa0\x21\x21\x80\xe5\x51\xea\x70\x7b\x77\x73\x61\xea\xc3\x32\x09\xd0\xd7\x5a\x0f\x94\x52\x03\xa2\x4c\xcd\xa6\x58\x12\x58\xa1\xbf\x25\x47\x5b\x14\x2d\x2c\x20\xf1\x00\x51\xcc\x6c\x3a\x08\x00\x0a\x20\x86\x02\x18\x32\xfa\x04\x00\xfc\xc2\x2f\xfc\x42\xf0\x2f\xff\xf2\x2f\x39\x60\xb1\x00\x14\x9b\xa2\xf5\xb1\x98\xd8\x68\x24\xd0\xe2\x1a\x59\xb9\x00\x8f\x0b\xd4\x58\x65\x59\x58\x58\x08\xba\xdd\x6e\xa9\x3c\x4e\x9f\x3e\x8d\x3f\xfe\xe3\x3f\x4e\xb8\x75\x86\xf9\xd8\x70\xb0\x15\xb0\xeb\x1c\xbc\x10\x4b\x4c\x61\x59\xb5\xf9\x65\xd3\x48\x74\x33\xbb\x12\x68\xa1\xe0\x25\xb3\xa6\x46\x61\x82\xf9\x23\xfd\x70\xf5\x78\x37\xda\x38\xbe\x17\x9d\x5c\xeb\x36\xd7\x97\x06\xe1\x6a\x3b\x0e\x72\x00\x03\x6d\x9c\x73\x69\x1b\x4a\x2f\x4c\xfb\x04\x4c\x5b\xd5\x59\xfb\x2c\xef\x6f\xc4\xdb\x12\xbd\x2a\x9e\x2d\x84\x69\xdb\xcf\x07\x12\xba\x9c\x57\x6a\x76\x29\xe8\x88\x58\xe9\x78\x6b\x61\x74\xeb\xc7\xc7\x7b\xaf\x5e\x3b\xda\x7f\xab\xdb\x9e\x6c\x62\x3a\x35\xb4\x8b\x14\xac\x74\xd5\x74\xbf\x16\x33\x45\x94\xa0\xe8\xef\x55\xaa\xef\xa8\xa7\x7f\xab\xfa\x96\x2a\x40\x5d\xc5\xc3\xd5\xbe\xaa\x3a\x63\x5b\xff\xe9\x3b\xb8\xb7\xe5\xe7\xfb\x0e\xd2\x80\x9b\xf3\xb4\xc9\x2e\xd1\xbb\xde\x81\xcb\xcc\xe5\x72\x0d\x64\xaa\xbe\x77\x5e\xa7\xab\x94\x9c\xeb\x65\x7c\x80\x41\xdd\xca\xe2\xcb\xcf\xa7\xa2\xcc\x82\x8e\x5d\x8a\x99\x3e\x77\x16\xee\xf1\xe3\xc7\xf1\x99\xcf\x7c\x06\x6b\x6b\x6b\x00\xac\x96\x96\x5c\xd9\x19\xd0\xf2\xd4\xc3\xb9\xe7\xce\x3d\x9c\xfb\xe2\xb1\x6e\xf4\xb9\x56\x1c\x9c\x51\x9e\xcb\xd6\x9d\x73\xde\x34\x9e\x81\x0d\x9b\x3f\x89\xcb\xbf\xa5\xf4\xcc\x28\x4b\xc6\xbc\xcc\x83\x3b\x22\x4a\xa3\x65\xbb\x7c\xd2\x73\x89\x2e\x81\x4e\xe2\x86\x8e\x7b\xcd\xc9\xee\xa3\x4e\x0a\x58\x3e\x58\x1c\xdd\x7d\xb0\x30\xde\xec\x45\x93\x6e\x02\xdd\x47\x06\x50\x18\x58\xc9\x41\x0b\xfb\xa3\x9b\xc8\x89\xce\xb6\x80\xb8\xb5\x3e\x05\x2b\x26\xce\xbc\x7f\x69\xd9\xe7\xc5\x8b\x17\x93\x6f\x7d\xeb\x5b\xc1\xef\xff\xfe\xef\x27\x00\xf0\xe5\x2f\x7f\x39\x00\x80\xef\x7e\xf7\xbb\xc9\xe9\xd3\xa7\x83\xf7\xdf\x7f\xdf\xd7\x8a\x61\x53\x2c\x3e\xa3\xc8\x3a\xa3\xcb\x83\x0c\x68\x6c\xe1\xc0\x7c\xbe\xfc\xe5\x2f\x07\x66\x8a\x8c\x1d\xa3\x21\xe5\x93\x5f\x13\xc0\x62\xe2\x28\xa0\x29\x80\x18\x5d\x5e\x9d\x54\x9a\x42\x22\x7f\x39\x70\x01\xd0\x36\x40\x26\x48\x30\xb7\xdc\x0f\x57\xd7\xf7\xa2\x8d\x13\x7b\xd1\xc9\x63\xdd\x68\x63\x69\xd0\x58\x6d\xc5\x8d\x4e\x23\x41\x18\x40\xf2\x67\x42\x3e\x2a\xc9\x41\x3c\x78\x9b\xe1\x91\x16\x47\xdf\x9c\x37\x6b\xd7\xc6\x9a\x69\xb1\x84\x4e\xbd\xe2\x52\x6b\xe6\x6e\x3b\xde\xbc\xbc\xde\xfb\xfe\x3b\xc7\x7b\xaf\xef\xcc\xc5\x77\x34\xdb\xce\x5f\xa7\x9b\xcc\x75\x31\x6d\x63\x92\xa5\x25\x71\x58\x5a\xea\xea\xfa\xba\x7a\xdf\x05\xac\xeb\xc8\x72\x90\xe0\xcb\xb7\xce\xc0\xbf\x4e\x3f\x58\x95\x27\x6a\xe4\xeb\x92\xa5\x2a\xef\x4a\xde\xa6\x43\x34\x2f\x46\x1b\x2c\x8d\x97\x84\xad\x03\x3c\x7c\x14\x5f\x55\x21\xf0\xbc\x5d\xa3\xa7\x84\x5d\xd7\x41\xa8\xfc\x7d\xa5\xb4\x3c\x8f\x12\x22\x5d\x59\x59\x09\xee\xdf\xbf\x9f\x1c\x3b\x76\xcc\x76\xc2\x73\x01\xb4\x40\xa3\x3d\x3f\x0c\x96\x9e\x79\x38\xf7\xdc\x87\x1e\x74\x7e\xf9\xe8\x7e\xf3\xe7\xa3\x49\x70\x4a\x31\xde\x2e\x23\x0a\x8f\xb7\xd2\xb1\x07\x4a\xba\x16\xc0\x81\xca\xfe\x37\x7a\x33\x3d\x39\x3a\x7d\x90\x2b\x56\xa6\xe5\xca\x32\xd1\x91\xa0\x2c\x21\xdd\x77\x85\x2a\x48\x55\x78\x2e\x01\x18\x8d\x04\xc0\x24\x40\xdc\xcf\x00\xcb\xfd\xc5\xd1\xed\xbb\x4b\xc3\xdb\x9b\x8b\xa3\xad\x7e\x33\x79\xac\x33\xff\x15\x05\x35\x62\x96\x16\xc9\xca\x92\x9b\xb2\xf5\x74\xb5\x50\x01\xa8\x90\xdf\xd2\xce\xb5\xd4\xa1\x16\x40\x09\xa4\x50\x7f\x14\x20\x5d\x6d\x06\x00\x9b\x9b\x9b\x40\x56\xdf\xbe\xfb\xdd\xef\xe6\x3c\x32\xd0\x62\xab\xcb\xbc\x4e\xf3\xfa\x2d\xb5\x5b\x57\x9b\x93\xda\x9a\xd4\x5e\x6d\x8a\xdf\xb7\x8d\xf1\x20\xf1\x71\xc9\x2a\x76\x3e\x06\xb4\x7c\xfd\xeb\x5f\x0f\xa4\xce\x30\x73\x0a\xce\xe3\x99\x95\x2b\xc9\xda\xab\x59\xee\x5d\xe0\x9d\xc5\xc5\x98\xb6\x61\xf3\x3b\xca\x7e\x73\xa7\xdd\xcc\xda\x12\x21\xed\xac\x8d\xe5\x65\x80\x14\xc8\xb4\x93\x00\x83\x87\x9d\x71\xff\x51\x27\xde\xbe\xbf\x34\xba\xbb\xb1\xdb\x3a\x79\x62\x37\x3a\x35\x05\x30\x41\xbb\x01\x84\x65\x1f\x2f\x52\x97\x94\xa5\x9d\x91\x79\x58\x6d\x96\x5c\x67\x0d\x3b\x6f\x3b\x79\x63\x52\x45\x3e\xc6\xf2\x42\xda\x31\x95\x01\x6a\xba\x33\xef\xb0\x99\x74\x6f\x1f\x19\x5d\x79\x6f\xad\xff\xce\x6e\x3b\xbe\xaf\x55\x61\xd5\x50\xcf\xb4\x33\x10\xc7\x75\xb3\x8a\x48\xdb\xf7\x6e\x91\xea\xb3\x0d\x68\xd8\x00\xb4\xc4\xab\xaa\xfe\xdb\x3a\x56\xa9\xff\xa9\xea\x17\x5c\xef\x23\xb5\x01\x57\x7f\x4b\xf9\xbb\xfa\x21\x5b\xfb\x92\xe2\x5d\x03\x1f\xe9\x39\x6f\xff\x75\xcb\x40\x92\xd1\x35\xf0\xb1\x02\x52\x5b\xdf\x56\x85\xe8\x66\x45\xb3\x55\xc1\x07\x0d\xfb\x80\xa0\x59\xdf\xa1\x4e\xfe\xd2\xc7\x0a\x00\x24\x9d\x4e\x27\xf8\xc6\x37\xbe\x81\xb9\xb9\xb9\x9c\x2f\x73\x02\x0c\x90\x99\x97\x91\x29\xb3\x56\x1c\x2c\xbc\xf0\x41\xe7\x23\x1f\x7a\xd0\xf9\xd5\xd5\x5e\xf3\xe7\x9b\x93\x60\x83\x83\x96\x5a\xc1\x6b\xbe\xc5\x41\xef\x62\x2d\xcc\x7b\xdb\xa6\x7d\xaa\xc4\x12\x79\x5b\x08\xec\x96\x96\x54\x81\x4e\x14\xe2\x61\x33\x19\x3c\x9a\x8b\x37\xef\x2e\x0d\x6f\xdd\x59\x1e\xdc\xba\xbf\x30\xde\x1c\x36\x93\x3d\xad\x30\xc8\x14\x68\x6e\x55\x61\x0a\xb5\x60\x69\xd1\xc2\xb6\xfc\xd9\x1f\xdd\xd9\x96\x76\x7c\x74\xf9\x72\x69\xf7\x5a\x5a\x2e\xbc\x23\xcd\xa6\x7b\xcc\xad\x4b\xc1\xf8\x8e\xae\xea\xc4\xf3\x3c\xad\xf5\x5a\x48\x23\xf1\xb6\xb5\x2b\x13\x6c\xcf\x7c\xda\x97\x24\x7f\x2d\x1d\xf1\x1b\xbf\xf1\x1b\xc1\x5f\xfc\xc5\x5f\x24\xbf\xfd\xdb\xbf\x1d\xfc\xc9\x9f\xfc\x49\x02\x58\x57\x36\xe5\x71\x06\xbc\xe8\x6c\xf5\x1f\x9f\xea\xd5\xc5\xf3\x92\xa4\xcd\xec\x6c\x16\x18\xf3\x97\x5b\x64\x82\x04\xf3\x4b\xc3\x70\xe9\xc4\x6e\x74\xf2\xe4\xe3\xd6\x99\xf5\xbd\xe8\xe4\xd2\x20\x5c\x6b\xc5\x2a\xca\xf5\x01\x9b\x12\x2a\xfc\x02\x19\xa8\x28\x4e\x15\xeb\x6c\x1e\x48\xb1\x79\x61\x3a\x55\x5c\x9e\x26\x32\x0f\xe8\x34\xf2\xf4\xb8\x02\x00\x98\x28\x3d\xba\xbd\x3c\x7a\xe7\xb5\x53\xbb\xff\xe3\x83\xa5\xd1\xf5\x71\xa8\x77\x00\xec\x66\xd3\x42\xfc\xf0\x44\xba\x8a\xa8\xb4\x0d\x80\xc5\xda\x62\xab\x7b\x75\xda\x42\x9d\x8e\x95\xd3\xfb\xf4\x3b\x36\x1e\x36\x59\x7d\xda\x8c\x8f\x5c\x3e\xf2\xf8\xf4\x89\x3e\xfd\xe3\xac\x7d\x2f\xa7\x85\x23\x2f\xd7\x73\xd0\x67\x4a\x78\xe8\x53\x80\x2e\xe1\x7c\xd2\xf8\xa4\xad\x42\x64\x36\x65\xe8\xfa\x08\xbe\x05\x6a\x53\xde\xf4\x5a\x46\x82\x4a\x05\xdf\xfa\xd6\xb7\x00\xe4\xca\x85\xef\xd3\x62\x0e\x81\xcb\xb7\xf0\x07\xd0\xf9\xc4\xdd\x85\x73\xcf\xdf\x9b\xff\xcd\xd5\x5e\xf8\xb9\x30\x09\xd6\x14\x10\x70\x9f\x15\x80\x7e\x30\x32\xe9\xc2\x7d\x5b\xb2\x0b\xaf\xbd\xe9\xa8\xf2\x82\x03\xdb\x18\x47\xc0\xec\xda\x00\x17\x6b\x1a\xc2\x77\x3a\x54\x2b\x13\xf3\xf9\xf8\xfc\x1d\x73\xf9\x05\x9f\x18\x63\xc6\xce\xcb\x01\x18\x85\x49\xef\xd1\x5c\xbc\x75\xf7\xc8\xe8\xc6\xad\x95\xfe\x8d\x0f\x96\x46\xf7\x46\x0d\xbd\xaf\x91\x83\x93\x11\x05\x2e\xe6\x9a\xfc\xda\xf6\x62\xc9\x01\x0b\xb9\x36\x8e\xb6\x05\xcb\x8a\x01\x2b\xdc\x89\xd6\x48\x4a\xa7\x80\x58\x70\x8d\x9e\x5c\x34\x94\xce\x17\x50\xd8\xea\x74\x95\x4c\xb3\x80\xa2\xba\xfa\xc1\x96\xde\x57\x29\xd6\x1d\x28\x89\xc1\x05\x64\xa8\x05\x86\x00\x99\x80\xc4\xdb\x00\x0c\x07\x31\x66\xea\xc8\x4c\x1b\x95\x00\xcc\xc2\xb0\xb1\x7c\x72\xb7\xb5\x71\xfa\x51\xeb\xec\x89\xdd\xd6\x99\xa5\x61\x63\xb5\x91\x18\x5f\x37\x45\xfe\x37\x21\x6d\x18\xae\x76\xef\x35\x2d\xcc\x74\x87\xec\x27\xa3\xa1\x15\x92\x47\x73\xe3\xdb\xdf\x3b\xb3\xf7\xf7\xd7\x8e\xf6\x2f\x8f\x43\xbd\x9d\x01\x16\xe9\xc4\xe7\x02\x68\x41\xb1\x3d\x89\xbe\x5c\x15\xa1\x4e\x5f\x32\x6b\xa8\xd3\x4f\xb9\xae\x25\xfa\x9f\x54\xbb\x39\x2c\x1e\x75\xf3\x39\x48\x59\xd5\x0e\x9e\x63\x6c\xaf\xf0\xd3\xae\x40\xb3\x14\xc2\x41\xc0\x56\xad\xe7\x99\xf2\x93\x56\x2e\x44\x64\x45\x42\x5b\x41\x75\x3e\x71\x77\xe1\xe9\x8f\x7e\x30\xff\xff\x2c\xf7\x9b\x5f\x08\x13\xb5\x4c\x2d\x2d\x35\x0c\x21\xb5\x83\x2f\xef\x32\x9d\x3d\xa5\xaf\x9f\x0d\x7d\xc6\x47\x87\xbe\x41\x23\x5d\xc9\xb0\x33\x17\x6f\xde\x59\x1e\xde\xb8\xb9\xd2\xbf\x71\x6f\x71\xb4\x39\x6c\xea\xc7\x28\x5a\x54\x46\x98\x9a\xac\x47\x5a\xeb\xdc\xba\x42\xa6\x84\x4a\xfe\x2b\x7a\xba\x7c\x39\xe6\xa3\xc3\x2c\x24\xec\x37\x57\xc0\x74\x39\x2f\x09\x75\xea\x69\x81\xaf\x07\x9f\x3a\x75\xdb\x37\x7d\x15\x28\xf2\x19\x24\x1c\x44\x2f\xfc\xb4\x74\x4a\x00\x20\x39\x7b\xf6\x6c\x70\xe3\xc6\x8d\x52\x7e\x99\xc3\xaf\x04\xf8\xe8\x2f\xbd\x96\xc0\x4b\x00\xbb\x05\x86\x02\x97\x0e\xb9\x6e\x07\x09\xe6\x3a\xa3\xc6\xf2\x13\x8f\x5b\x1b\x4f\x3d\x9a\x7b\xfa\xe4\x4e\xf4\xf4\xfc\xa8\xb1\x6c\xf6\x80\xa1\x6d\x28\x9f\xde\x25\xc0\xde\x05\x4c\xe8\x84\x2d\xb5\xb8\x14\xd2\x17\x06\x09\x53\x06\x09\x90\xf4\xa2\xc9\xce\xeb\x4f\xec\xff\xe3\x8f\x4e\xee\x5d\x1a\x35\xf4\x0e\x54\x69\xaf\x16\x7a\x26\x11\x9d\x7a\x05\xa6\xc0\x65\x96\x15\x44\x55\x20\xbe\x0e\x1f\xdb\xe8\xde\x65\x45\x70\x0d\x0a\x7c\xac\x18\xb3\x58\x5c\x24\xde\x87\x05\x16\xea\x58\x4d\x0e\x23\x1c\x58\x27\x34\x6a\x26\xc8\xdb\x08\x8b\xd7\x24\x3e\x10\x68\x66\x11\x4e\x3b\x78\x9b\xca\xa5\xd9\xaf\x8d\x0f\x1c\x74\xfc\xbd\x7c\xd2\xc0\xf5\x9c\x2c\xd1\x54\xc0\xf4\x00\x38\x55\xdc\xff\xa1\x1d\x26\xaa\xf3\xe1\x07\x9d\x53\x2f\xde\x59\xf8\x9d\x95\x7e\xf8\x85\x30\x51\x2b\x40\x71\x53\xaa\x9f\x04\x68\x31\x4a\x8c\x5a\x43\x7c\x7c\x67\xa6\x34\x76\xa9\x94\x83\x52\xf2\x49\xc9\x97\x7f\x56\x8c\xf0\x78\x8e\xe3\x20\x89\x1f\x75\xe2\x7b\x37\x57\x07\x97\x7f\x7c\x7c\xff\x8d\xab\x6b\xfd\x77\xb7\x16\xc6\xf7\xe3\x06\x76\xa1\x72\xc5\xd9\x05\xd0\x55\x4a\xed\x21\x55\xa0\xfb\x4a\xa9\x1e\x80\xbe\x52\xaa\xaf\x94\xea\x03\x18\x12\x4b\xcc\x50\x6b\x3d\x06\xd9\xbe\x1f\xe9\xf2\xe6\x89\x52\x6a\xa2\xb5\xd6\x64\x0a\x8c\x36\x3c\x4d\xad\x2c\xe7\xcf\x9f\x57\x96\xd1\xa3\x29\x76\x9f\x3a\x25\xd5\x47\xde\x1e\x78\x1a\x5b\xe0\x75\x5c\x0b\xf1\x9a\xd1\x6b\x46\x4f\xd3\x24\x24\xde\xd6\x5e\xb4\x40\xe3\xd2\x0d\xd2\x33\x5f\x9d\xc2\xcb\xc8\xb7\x8c\x0d\x3d\x00\xe8\x9d\x9d\x1d\xdd\x6a\xb5\x82\xc9\x64\xa2\xe7\xe7\xe7\x83\xf1\x78\xac\x01\xe0\xc2\x85\x0b\xbc\x8c\x78\x55\xd5\x60\xf5\x21\xfb\x33\x75\x68\x92\x3d\x9f\x64\x7f\x31\x80\x31\x8a\xd6\x87\xb1\x79\x96\x59\xfc\x26\x00\xc6\x1a\x88\x47\xa1\x1e\xed\xcc\xc5\xdd\xad\xf9\xd1\xc3\x5e\x94\xec\x40\xe9\xb8\x99\xa8\x28\x4c\x54\xa4\x4a\xeb\x87\xa6\x8d\x2c\x07\x1d\xac\xdd\x69\xe3\xd8\x4b\x0e\x83\x4c\x2b\x66\x66\x25\xa5\xa0\xa6\x60\x29\x9d\x5a\x74\x06\xcd\x64\xef\xfa\xda\xe0\xb5\x1f\x9d\xec\x5e\x1a\x34\x93\x1d\x00\xbb\x50\xd8\x47\xda\xe6\xf6\x01\xf4\xb3\xbf\x61\xf6\x6e\x63\xad\xf5\x44\xa5\xcb\x0a\x13\x5a\x9e\xe3\xf1\x58\xdd\xbf\x7f\xdf\xd4\x0f\x57\x1b\x31\xdf\x59\xa1\xd8\xc1\xd2\xef\x22\xf5\x4f\x36\xfd\x6e\x6b\x47\x25\x4c\xc8\xe4\xe2\xf9\xd8\xe8\xa5\xfa\x4c\x41\x42\x55\xff\x45\xe5\xa7\x74\x52\x9b\xa5\xef\x66\x2b\x13\xa9\x1c\x78\x7b\x06\x8b\x93\xe4\xb1\xb5\xcb\xaa\xb6\x47\xdf\xc5\xa7\x8d\xf2\x3c\x73\xb9\x14\x13\xf2\xa0\xa3\x24\x5f\x5e\x87\xc5\x1f\x35\xf9\xd4\x31\xd3\xd9\x46\x99\x60\xcf\x01\x00\x2b\x2b\x2b\xf8\xf5\x5f\xff\xf5\x7c\x7f\x0d\x6a\x65\xc9\x4c\xca\xd3\xd5\x43\x4a\xb5\x9b\xb1\xea\x9c\xdd\x6e\x9f\xfd\xf8\xdd\x85\xaf\xae\x77\xa3\x5f\x69\x4e\xd4\x3a\x80\x80\x3b\xa2\x3a\x83\x04\x3a\x66\xb4\x5c\x1c\x1e\x40\xf2\xb3\xc6\x18\x2b\x0b\x37\x6b\x97\xb5\x46\xd1\x39\x37\x0e\x74\xbc\xd7\x9a\xec\xdc\x5b\x1c\xde\xba\xbd\x3c\xbc\x75\x7f\x71\x74\x77\xb7\x1d\xef\x8c\x1b\x7a\x2f\x73\xbc\xa5\x7f\x3d\x64\x96\x17\x64\xab\x19\x88\xdf\x0a\x77\xbc\xcd\x7d\x57\xd8\xca\x20\xd1\x5f\xc5\xdc\x9b\xe5\xb6\x40\xba\xeb\xec\xf2\xf2\x72\xb0\xb3\xb3\xe3\x63\xa1\xf3\xad\xbf\x52\x3d\x34\xf7\xbe\x23\xbf\x82\xcc\x15\xbc\x7d\xa6\x90\x7c\x78\x57\x85\x2a\xbd\x70\x58\xa3\x49\x57\x7e\x75\xe5\xe3\xd3\x48\x01\x7b\x5c\xb2\xc0\xe8\xe2\x51\x03\xd2\xe1\x8e\xc5\x4d\xeb\xca\xfe\x2f\xe9\x9f\x46\x3b\xd0\x68\x47\x13\x75\x64\xb5\xd7\x5c\x7b\x62\xa7\x75\xea\xd4\xe3\xd6\xd9\xb5\xfd\x68\x63\x6e\x1c\x2c\x04\x9a\x9c\xe3\x94\x35\x2e\x4d\x80\xc9\x61\x35\x72\x0d\x8d\x61\x98\xf4\x6e\x2f\x0f\xdf\xbe\x74\x6a\xef\x7f\xdc\x5b\x1a\xbd\xaf\x01\x63\x6d\x31\x2b\x88\xba\xd9\x00\xc1\x9c\x43\x44\xcf\xec\xa2\x56\x4b\xd7\x2a\x22\x13\xfe\x77\x8e\xfc\x0f\xa5\xce\x1c\x20\x9f\xc3\xb2\x20\xfd\x34\xa6\x73\x7e\xaa\x6d\x57\xaa\xca\x75\x80\x46\x1d\x20\xe0\xc3\x7b\x16\x40\x41\xe3\xc0\x9e\xf9\x74\x0e\x07\xa9\xbc\x39\xff\xaf\x7d\xed\x6b\xc1\xfa\xfa\x3a\x00\x51\x59\x99\xed\xc3\xdb\x00\xa2\x56\xac\x96\x4e\xed\xb4\xcf\xbc\x70\x77\xfe\x97\x4e\xec\x45\x5f\x69\xc5\xc1\x59\x64\xa0\x45\x0e\x76\xb3\xc8\xe1\x82\x0e\x8f\xc0\x32\xcc\x01\x46\x61\x55\x06\xb7\xac\x10\x7a\x61\x8f\x09\x9f\x77\x48\xa0\xd1\x8b\x92\x9d\xfb\x8b\xa3\xbb\xb7\x97\x07\x37\xee\x2d\x8e\xee\x3e\x9e\x8b\xb7\x07\x61\xf2\x38\x51\x18\x68\xe8\x5e\x06\x46\xf2\x7d\x22\xc8\x54\xd1\x40\xb3\x83\x10\xd9\x9f\xd9\x92\x3f\xc9\xae\x4b\x1b\xc4\x65\xb2\xa7\x68\x9f\xec\x0f\xe2\xb1\xe7\x04\x07\x1a\xc5\xd7\x92\xd3\x56\xd5\x5b\x5b\x1b\xa8\x32\x65\x4b\xcf\x24\xde\x36\xf0\x53\x87\x7f\x15\xc0\xa9\xfb\x0e\x2e\x59\x6d\xfc\x7c\xd2\x7a\xf1\x58\x5b\x5b\x0b\xb6\xb6\xb6\x92\x13\x27\x4e\x04\x1f\x7c\xf0\x41\x22\x2c\xb1\x36\x40\x85\xaf\x20\x34\xbf\x74\xba\xd8\x76\xa0\xa3\x04\x60\x3a\xd9\x75\x47\x6b\xdd\x56\x50\xed\x30\x51\x9d\xb9\x71\xb0\xb2\xb6\xdf\x5c\x3b\xb5\xd3\x3a\x73\xf2\x71\xeb\xec\x4a\xbf\xb9\xde\x8a\x55\x1b\x04\xac\x94\xda\x95\xf1\x3b\x23\x0f\x34\xa6\x66\x99\x82\x43\xbd\xce\xd2\xb3\xb6\x3e\x0e\x92\xc1\xe6\xe2\xe8\xc6\xeb\x27\xbb\xff\xf3\xfa\xea\xe0\xc7\xc6\x19\x17\x6c\x8a\x28\x5b\xfe\xcc\x0f\x4f\xa4\xab\x87\x12\xa0\x30\x4d\x64\xfb\xf6\x2e\xa0\x0e\x81\x5e\x8a\xaf\xdb\x01\x4b\xf9\xd9\xfa\x2e\x58\x68\xaa\xae\xeb\xf6\x99\xb3\xf6\xb1\x3e\x72\x48\xef\x60\x6b\x0b\x75\x06\x4b\xb6\x32\x9c\x05\x17\x14\x64\xf9\x49\xfa\xb8\x70\x65\x75\x18\xa8\xb2\xae\x32\x3b\x0c\x1a\xd7\x47\xc0\xf1\xe3\xc7\x71\xff\xfe\xfd\x84\xec\x8a\x6b\x56\x1f\x84\x2a\x3d\xe1\xd9\x9c\xf4\x1c\x01\x68\xb7\xe3\x60\xe1\xe4\x6e\xeb\xec\x47\xee\xcd\x7f\xf1\x89\x9d\xd6\x97\xdb\x71\x70\x2e\x80\x0a\x7d\x01\x48\x9d\x8e\xdf\x87\x27\xdf\x14\xae\x8a\x47\x7a\x9f\xfd\x5f\x95\xd6\x01\x60\xbc\xf2\xca\x46\x8e\xe3\x86\x1e\x3d\xec\x8c\xef\xbd\xbf\x32\x7c\xef\xce\x91\xe1\xed\xed\xce\x78\xb3\xdf\x9c\x3c\x8e\x03\xf4\x32\xc0\x62\xc0\xc9\x80\x02\x16\x02\x56\x06\x20\x4b\x9a\x33\x00\x92\x1f\xea\xa6\xc9\xf9\x41\x59\xd6\xe2\xc6\x70\x26\x5c\xbc\x78\x31\x79\xe6\x99\x67\x02\x00\xb8\x76\xed\x9a\x6f\xa3\x05\x79\x2e\x81\x18\x13\x5c\x0a\x44\x52\x32\xae\x67\x3c\x1f\x5f\xde\xb3\xe4\x23\xd1\xf9\x0e\x08\x66\xed\x58\x7c\x78\xd7\x09\x33\xe9\x0e\x61\xf7\xde\x40\xb8\x0e\x84\x3f\xea\x0b\x33\x3d\xee\xa3\xb8\x13\x6f\xc1\xf2\xa2\xb5\xee\x28\xa5\xda\x4a\xa3\xd3\x9c\xa8\xf9\xc5\x41\xb8\x7a\x7c\xaf\xb9\x71\xea\x71\xfb\xec\x89\xdd\xe8\xd4\xe2\x30\x5c\x4d\x37\xb0\xab\x08\x06\xaf\xc0\x5f\x77\xc4\x41\x12\x3f\xec\xc4\xb7\x2f\xaf\xf7\xbe\x7f\x79\xbd\xf7\xa3\xfd\x28\xde\x44\x71\x3b\x7f\x73\x06\x91\xe4\xd7\xc2\xdb\x98\x0d\xb4\xd4\x0d\x3f\xc9\xb4\x87\xdd\x37\x71\x7a\x40\x6e\x93\x55\xe0\xc7\x37\xbf\xba\x60\x5e\x4a\x7f\x90\x81\xc0\x41\xf8\x39\x83\xd7\xc6\x66\x9e\x19\x4a\x42\xdb\x3e\x4a\x5d\xa5\xe6\xca\x43\x4a\x57\xa5\x40\x7d\xd0\x34\x7f\x07\x31\xfe\xa5\x97\x5e\x0a\x4e\x9f\x3e\xcd\x47\x58\xc6\x14\x1c\x60\xaa\x8c\xda\x51\xac\x16\x4e\xec\xb5\xce\x3c\xbb\xd9\xf9\xaf\x27\x1f\xb7\xbe\xd0\x4e\xb7\xf1\x0f\x01\x7f\x04\x49\x15\x24\x07\x2d\x85\x6b\x03\x1a\x9c\xe8\xc5\x10\x19\x4b\x09\xdb\xe8\x4a\x48\x4a\x3d\x57\xa6\x6e\x3c\x05\x8e\x39\xdb\x3a\xa0\x05\xa0\x1b\xd3\x01\x50\x1a\x93\x06\xe2\xfd\xe6\x64\xf7\xfe\xd2\xe8\xf6\xf5\xd5\xc1\xd5\xfb\x8b\xc3\xbb\x7b\xad\xc9\x76\xdc\xd0\xfb\x1a\xe8\x41\x61\xa0\xa0\xf8\xf4\x90\xb4\x91\x9c\xf1\x55\xa1\x7e\x2b\x54\x91\x26\xe9\xfb\x14\xb7\xdf\xa7\xd2\x71\x93\x76\x06\x58\x00\xb9\xce\x73\x50\x42\x69\x12\x46\xe7\xaa\xa3\x2e\x9e\x3c\xde\x45\xc3\x65\xb1\xe5\x61\xcb\xcf\xd5\xa6\x13\x76\x2d\xa5\xa9\x7a\x3f\x4a\xe3\x33\x42\xab\x6a\xff\x75\x47\x73\x55\x03\x2b\x9a\x67\x89\xf6\x3f\xfe\xe3\x3f\xf0\xe6\x9b\x6f\x26\x80\x73\x7f\x18\x93\x2e\x80\xac\x9f\x62\xa4\x7a\xc3\xec\x75\x62\xf6\x80\xc9\x0f\xf4\xc4\xf4\x50\xcf\x36\x94\x1a\x8d\x42\x3d\x78\xd4\x19\xf7\xfb\xcd\xc9\xee\xe3\xb9\xc9\xce\xa3\xce\x78\xeb\x89\x9d\xd6\xd9\x63\xdd\x68\xa3\x1d\x07\x0b\x41\xa2\x02\xc5\x46\x1d\xc6\x29\x57\x29\x55\xd0\x1b\xb4\xfd\x71\x9f\x18\x00\x98\x28\x9d\xec\xb5\x26\x5b\xb7\x97\x07\xef\xdc\x5c\x19\x5c\xed\x45\x93\x1d\xa4\xd3\x41\x74\xe5\x90\xd4\xee\x68\xb9\x15\x40\x4b\xa7\xd3\x09\x7a\xbd\x9e\x4f\x27\x4d\xe3\xaa\xbe\xa7\x44\x6b\xfb\xb6\x12\xe0\xf6\x09\x3e\x83\x70\xdf\x3e\x53\xba\xf6\x79\x5e\x95\x3f\xa5\xa9\x5b\x76\x26\x6d\x9d\x77\x74\x7d\x2f\xd7\x73\x5b\x1a\x27\x60\xe3\xce\xb9\x01\x64\xa7\x19\x5f\x47\x1a\xee\xb0\xc4\x9d\x88\x24\x67\x24\xea\x94\x65\x7b\x4e\x9d\xb1\x5c\x00\x33\x40\xcc\xbf\xce\x5b\x34\x7d\xb0\x58\x3a\xdd\x00\x00\x20\x00\x49\x44\x41\x54\x95\xe3\x13\xcf\x83\x07\x9b\x73\x55\x21\x7c\xe1\x0b\x5f\x48\x55\x41\x6a\x65\x81\x52\x2a\x50\x4a\x35\x00\x04\x5a\xeb\xa6\x52\x2a\xf7\x69\x39\xb1\x17\x9d\xfe\xd0\x83\xce\x67\xcf\xec\xb4\xff\x5b\x67\xd4\x78\x3e\x80\x6a\x59\x64\x2b\xe4\xa8\x33\x45\x63\x03\x12\x26\xbe\x00\x60\xa8\x0b\x14\xa1\xa1\xc0\x82\x9a\x95\x33\xd9\x4b\xbc\xad\x62\x91\xed\xc8\x79\x1a\x5f\xc0\x52\x7c\x9f\xa9\x15\x29\x09\x74\x32\x68\x26\xfb\x5b\xf3\xe3\x7b\xd7\xd7\x06\x97\xdf\x3d\xd6\xfb\xf1\x9d\xe5\xe1\xf5\x6e\x6b\xb2\x35\x09\xd0\xd5\xd0\x7b\x48\x1d\x6d\xf7\x01\xec\x21\x53\x9e\xd9\x7d\x1f\xa9\xf3\x6d\xbe\xa2\x88\x99\xac\x8d\x13\xe4\x04\xc0\x44\x29\xa5\x33\xc0\xa2\x8d\x5f\x4b\xe6\x40\x08\xa5\x14\x5e\x79\xe5\x95\x24\x08\x02\x35\x3f\x3f\xaf\xb6\xb7\xb7\x5d\x75\x4e\x8a\xb3\x39\xd1\x71\x3a\x9b\x93\x1d\xa7\x91\x78\xd9\xea\x31\xaf\xbf\x86\x27\x77\xf4\xb3\x05\x9b\xa3\xa3\xe4\x60\xe8\x92\x1f\x24\x8d\xab\x1c\x24\xbe\x92\xd3\x23\xe5\x45\x7f\xa9\x8e\xe0\xbc\xb9\x4c\x92\xae\xe1\x32\xd2\x77\xe3\x65\x51\x78\x8f\xcd\xcd\xcd\xfc\xfe\xd2\xa5\x4b\xda\xfc\x9d\x3f\x7f\x5e\x65\x75\x89\xf2\x48\x58\x9e\x26\x2e\x41\x5a\x27\x35\xb9\x4e\x32\xa7\xf0\x49\x06\x60\x4c\x9d\x35\x0e\xbe\xb1\x56\x98\x64\x47\x5a\xec\xef\xb5\x27\x7b\xbd\x56\xd2\x1d\x37\xf4\x38\x4c\x54\x23\x4a\x54\x2b\xd0\xaa\x01\x20\x9b\x1e\xca\xf6\x79\xc9\xda\xbd\xce\xc4\x52\x00\x54\xe6\x6c\x56\x28\x74\x32\x9d\xd4\x8b\x26\x8f\x6e\x2f\x8f\x2e\xbf\x7b\xac\xff\xe6\xd6\xc2\xe8\x76\x76\xe2\xb3\x99\x1a\xca\xdb\x9d\xd6\x7a\xa8\x94\x32\x0e\xb9\xd4\xd2\x92\xd7\x93\x8b\x17\x2f\x26\xad\x56\x2b\x18\x0c\x06\xb4\x0c\xa4\xf2\x35\xdf\xd5\x7c\x5b\xde\xa1\x55\xb5\x09\x6d\x49\x03\x76\x6f\x6b\xa3\x92\x33\xab\x24\x9f\x54\x4f\x6c\x69\x4d\x1a\x2a\x9f\xad\xef\x73\xb5\x19\x29\xd8\xda\xac\xe1\x2b\x3d\xe3\x6d\x86\xd2\x49\xed\xc1\x26\x2b\x95\x81\xb6\x45\xca\xcf\xa4\xa5\x32\x19\xde\x3c\x0d\x84\xeb\xfc\x9e\x02\x17\xf3\x12\x52\x03\x76\x8d\x70\xaa\x94\x91\x4f\xa8\xa2\xe5\x2f\x52\xe7\x63\x9a\x30\x6b\x25\xb0\xa6\xa3\xe7\x0f\x01\xc8\x97\x3d\x03\x68\x28\xa5\x42\xa5\x54\x0b\x40\xd4\x48\x30\xb7\xde\x8d\x4e\x7c\xe8\x41\xe7\xbf\x3c\xf9\x68\xee\x4b\xf3\xa3\xc6\xc7\x1a\x50\x73\xf9\xdb\xb8\xfc\x56\xd4\x14\x50\x94\x0c\x28\xd9\x8d\x6c\x15\x91\xe3\x0a\xc0\xc2\x95\xaf\x84\x92\x28\x3f\x55\xce\x38\x4d\x22\x27\xe4\xbd\x10\x80\x7c\xae\xdd\xc4\x25\xd0\x88\x1b\x7a\xb4\xd7\x9e\x6c\xdf\x3d\x32\xbc\x7e\xf5\x58\xff\xc7\xef\x1d\xed\x5f\xde\x5a\x18\xdf\x19\x37\x74\xba\x6a\x41\x61\x2f\x03\x28\x06\xb4\x18\xa5\xb9\x8f\x6c\xb5\x10\x80\x21\x9b\x2a\x8a\xb5\xd6\x63\xa3\xfc\xcd\xca\x06\x03\x58\x90\xd5\xfb\x0c\xc4\xe0\xd6\xad\x5b\xf8\xf3\x3f\xff\xf3\x64\x7e\x7e\x5e\xdd\xbc\x79\x53\xdf\xbd\x7b\x57\x6f\x6f\x6f\xd3\xfa\xa0\xc8\x9f\x54\x47\x68\x43\xb4\x29\xcb\x40\x48\x4f\x95\x83\xf4\x8c\x2b\x43\xdb\xbd\xa4\xac\x25\x03\x1d\x7d\xce\xaf\x6d\x4a\x8e\xf2\xe6\xe9\xa8\x52\x76\x76\xf6\x02\x6f\x2a\x23\x97\xc1\xc6\x8b\xbe\x53\x95\x8e\xaa\x52\xb8\x3c\x1f\xcd\xe2\x6d\x40\xd0\x1a\xe6\xe7\xe7\x55\x18\x86\x68\xb7\xdb\x86\x5f\x0a\x1f\xd2\xd5\x69\xb4\x33\xd7\x59\x9c\xc6\x74\x05\x52\x82\xb4\xae\x9a\x15\x46\x06\xac\x18\x20\x33\xc9\x69\x15\x26\x3a\x40\x3c\x0c\xf5\xa8\xdb\x9a\xec\xef\xb6\x27\x3b\xc3\x66\xd2\x0b\xb4\x52\xd1\x24\x88\x1a\x89\x6a\xa6\x06\x50\x05\x14\x56\x12\x11\xaf\x3a\x45\x7e\x88\xb5\x54\x03\x18\x85\xba\x77\x7f\x71\xf4\xde\xd5\x63\xbd\xd7\xef\x2c\x0f\x6f\xc4\x21\x1e\xa3\xbc\xe4\xd9\x0c\x18\x46\x59\x5b\x9b\xca\xc7\x46\xef\xaf\xbf\xfe\xba\x1a\x8d\x46\x14\xc0\x49\xe5\x69\xea\x99\xad\x43\xf3\xfd\x26\x95\x9d\xa0\x23\x2d\xcd\x43\x02\x22\xbc\xde\xd1\xf6\xca\x65\xa5\xf5\x8a\xd7\x71\x57\x1f\x6a\xd3\x2d\x52\x1a\xa9\x1d\x53\x3d\x64\x6b\x47\xd2\xbb\xf3\x7e\x5f\x1a\x84\xb9\xbe\x99\x8b\x9f\x54\x3e\x92\xae\xe4\x21\x7f\x4e\x81\x8b\xed\x85\xe8\x4b\xbb\x94\x11\x57\xbe\x3c\x43\x1b\x02\xf5\x09\x92\x92\x77\xf1\x91\x3a\x17\xdf\x8f\x6f\x9e\xbb\x4c\x8c\xf8\xf6\xb7\xbf\x5d\x3a\x34\x31\xb3\xb6\x98\xc3\xd7\x22\xad\x75\x2b\xd0\xaa\xbd\xda\x6b\x1e\x3b\xb7\xd5\x39\x7f\x76\x7b\xee\x17\x97\x86\xe1\x4b\x0d\x8d\xf9\xa2\xa6\x28\x06\xd7\x9e\x26\xca\x7a\x63\x02\x43\x03\xfc\xa9\xb6\x5b\x44\xac\xbc\x2b\x40\x4c\xca\x77\xba\x15\x79\xd1\x51\xd7\x9c\x61\x94\x32\xb2\x39\xf0\x26\x4a\x27\x83\x66\xb2\xb7\xb5\x30\xbe\x7b\x63\x35\xb5\xb2\xbc\xbf\x32\xbc\xde\x6b\x25\x0f\xb5\xc2\x1e\xd2\xa5\x96\xf9\x72\xcb\x0c\xbc\xf4\xc8\xf2\xe6\x01\xb2\x55\x43\xc6\xa7\x45\x29\x35\x06\x50\x02\x2c\x28\x8e\x6c\xb5\xb1\xac\x5c\xba\x74\x49\xaf\xad\xad\xa9\xef\x7d\xef\x7b\xe8\xf7\xfb\xfa\xe6\xcd\x9b\x52\x5d\xa7\x8a\x87\xd7\x2d\x3e\x82\xe3\x16\x04\x5a\x9f\x24\x85\x2c\x29\x33\x9a\x07\x57\x8c\xfc\xde\xd4\x77\x40\xce\x8f\x2b\x4d\x0e\x70\xa8\x0c\x34\x48\x7c\x5c\xef\x64\x53\xc6\xd2\xc8\x53\x7a\x57\x1e\x6c\xba\x43\x6a\xdb\x34\x2f\xaa\x10\xe9\xbb\xd9\xf4\x89\xa4\xe3\xe8\x7b\xd1\xfc\x6d\xba\x28\xff\xbd\x79\xf3\x26\xde\x7a\xeb\xad\xe4\xd2\xa5\x4b\xfa\xa9\xa7\x9e\x52\xd9\x4e\xda\x5a\x29\x83\x5d\xa6\x4b\x83\xb3\x38\xf3\x9b\xa8\x74\x09\x3e\xb5\xc4\xc4\x19\xdf\x82\xf5\x45\x4f\xb7\xce\x9f\x28\xa5\xe2\x49\x80\x51\x3f\x4a\xfa\x3b\x9d\x78\x77\x3f\x9a\xec\x06\x1a\x68\x26\x41\x14\x26\xaa\xa1\x34\xc2\x7c\xe7\x5b\xb6\x23\xee\xd4\x6f\xae\x78\x96\xd8\xa4\x81\xd1\xc3\xf9\xf1\xed\xab\x6b\xfd\xd7\x6f\xad\x0c\xdf\xed\x35\x27\x0f\x95\x52\x7b\x5a\x6b\xb3\xb5\x40\x57\x6b\x6d\x06\x0c\xa6\xbd\xe5\xd6\x16\xba\x32\xef\xe2\xc5\x8b\xc9\xda\xda\x9a\xba\x72\xe5\x8a\xa4\x53\xab\xc0\x29\xff\x6e\x1c\x80\x4b\xb4\xb6\x6b\xdb\x37\x76\x01\x13\xa9\x2f\x71\xf1\xe1\xb2\xda\xea\x89\x4d\x56\x6e\x85\x90\xda\xb9\x0d\x44\x28\xe1\x9a\xcb\x41\xd3\xf1\xa9\x18\x29\x0f\x3e\x98\x92\x06\x0b\xb6\x6f\x26\xb5\x17\x1a\x78\x39\xd9\xf0\x42\x9e\xb6\x6a\x1f\x17\x49\x59\xf3\x17\x34\xd7\x12\x2a\x96\x4c\x71\x2e\x0b\x0e\x0f\xb6\x8e\x80\xf3\xe1\x05\xa2\x21\xcb\xcc\x9f\xdb\x02\xcf\x8b\xcb\x83\xf3\xe7\xcf\x2b\x00\x05\xd0\x02\xb6\x53\xa6\x82\x9a\x5b\x1a\x35\x96\x3f\xf4\xa0\xf3\xb1\x67\x1e\xce\xfd\xd2\xf2\xa0\xf9\xa9\x50\xab\x23\xe5\xb6\x27\x00\x0a\x1b\x70\x70\x81\x08\x0d\x90\xe1\x54\xe9\x11\x66\xd8\x8a\xbf\x20\x97\x2b\x6f\x95\x8e\xe0\x52\x11\xa6\x44\xf9\x14\x57\x3e\x0e\xcf\x4c\xd3\x06\xcb\x40\x23\x0e\x30\xda\x6b\xc7\xdb\x77\x8e\x0c\x6f\x5c\x39\xd6\x7f\xeb\xda\xb1\xfe\xe5\x87\x0b\xf1\x07\x99\x39\x7a\x1f\xd9\xc9\xb2\xc0\xd4\xda\x92\x29\xce\x3e\x52\xb0\xd2\x43\xba\x5f\x84\x99\x16\x1a\x23\x75\xba\x35\x23\x3f\x33\xc2\x15\x01\xcb\xe9\xd3\xa7\xd5\x3b\xef\xbc\xa3\x01\xe0\xda\xb5\x6b\xba\xdf\xef\xdb\x3a\xd0\x2a\xb3\xae\xad\x73\xe3\x9d\x3e\x4f\x2b\xe5\x63\xa3\x73\xdd\xf3\x3a\x2f\x75\x04\x36\x05\xe7\x6a\x13\x92\xdc\xf4\x57\x1a\x65\x9a\x20\xe5\x47\xad\xbb\xfc\x5d\x24\xc5\x6e\x7b\x0f\x6b\xfb\x44\xb9\xfc\xa5\x72\x92\xf8\x49\xe5\x24\xe5\x6f\xbb\x16\xcb\x73\x30\x18\xa8\xbf\xff\xfb\xbf\x4f\x2e\x5d\xba\xa4\x5f\x7a\xe9\xa5\x7c\x0a\x49\x67\x08\x42\x29\x65\xa6\x28\x35\xd2\xba\x69\xea\x29\xb7\x5a\xe4\x00\x06\x53\xab\x61\x6e\x81\xd1\x5a\x4f\xa0\x54\x12\x37\x74\xbc\x33\x17\xef\x3e\x6e\xc7\x8f\x93\x40\x0f\x1b\x5a\x85\xcd\x24\x08\x73\xeb\x8b\xca\xec\x2d\x6a\xba\x13\x0c\xf2\xb6\x9e\x1d\x9e\xa8\x90\x3c\x6e\xc7\x9b\xd7\x8f\x0e\xde\x78\xef\xe8\xe0\x9d\xc7\x73\xf1\xa6\x52\xaa\x9b\xb5\x45\x3a\x78\x30\x53\x44\x66\x3a\x36\x95\x23\x93\xcf\x80\x16\x20\x6d\x5f\x8e\xef\x55\x15\x4f\xcb\x54\x1a\xa5\xdb\xbe\x0d\xb7\x9c\xb8\xa6\x14\xe9\x35\xef\xb8\xab\xc0\x2b\x4d\x23\xb5\x7f\xfe\xdc\x65\x0d\xe4\xf1\x36\x59\x5c\xf2\xbb\xae\xa5\xbc\x79\xfe\xae\x36\x63\xfb\x5e\xbe\xf9\xd3\xb4\xb6\xc1\x95\x24\x63\x00\x40\xfb\xfa\xb8\x54\x99\xe0\x6c\x69\x0c\x9d\x0d\x7d\x72\xde\x5c\x69\x71\x9e\xd2\x07\xb6\x01\x21\x6e\x25\xf2\xb5\xd4\x48\x0a\xb9\x80\x30\xf9\x06\x73\x40\xbe\xfd\x77\x33\xb3\xb6\xb4\xa0\xd1\x6e\xc7\x6a\xfe\x43\x0f\x3a\xcf\x9f\x7b\x38\xf7\x95\xd5\x5e\xf3\x33\xcd\x24\x58\x43\xce\xbc\xb8\xf8\x99\x82\x83\xd2\x96\xdd\xe4\x46\xda\xce\xdb\x14\xaa\x0b\xd0\xa4\xce\xb2\x76\xb3\x49\x19\x4a\x31\xb9\xb8\x1c\xe6\x56\x1b\x3a\x76\xf8\x22\x4d\x66\x88\x33\xb4\x62\x64\xd5\xd0\x18\x85\x7a\xb0\xdd\x19\xdf\x7f\xef\x68\xff\x9d\x1f\x1f\xdf\x7f\xf3\xf6\xf2\xe8\xc6\xb0\x99\xec\x98\xbd\x20\xb2\x5f\x63\x69\xe9\x2a\xa5\xf6\xb3\x11\x5e\x0f\x64\x4e\x3d\x1b\x79\x8e\x91\x8d\xfa\x90\x29\x50\x62\x7e\x37\x1d\x81\x06\xd2\x65\xcc\x1f\xfe\xf0\x87\xd5\x1b\x6f\xbc\xa1\x0d\x68\xc9\x82\xab\x3e\x71\x33\x28\xb7\x3a\x48\xf5\x96\xd7\x67\xc9\xbc\x6a\x6b\x5b\x2e\x2b\xa6\x14\x7c\xea\x38\x57\x08\x2e\x90\x66\x68\x25\x99\x6c\xf2\x72\x7e\x1c\xac\x98\x38\xa9\x5d\x52\xf9\x00\xb7\x5c\xb6\x77\xe3\x32\xfa\xb6\x7f\xde\xde\xa5\x51\x68\xd5\xaf\x95\xfe\xd1\xa3\x47\x79\xfd\x78\xee\xb9\xe7\xd4\x1f\xfe\xe1\x1f\x26\x97\x2e\x5d\xd2\x17\x2e\x5c\xa0\x7e\x30\x40\xda\xd9\x53\xe5\x6d\x2c\x30\xa6\xfe\x52\x00\x93\x20\x05\xe8\x39\x70\xc9\x7e\x53\x1a\x05\xdd\x8f\x92\xe1\xd6\xfc\xf8\x51\xbf\x99\x74\x03\xad\xd0\x9c\xa8\x66\x33\x51\xcd\x40\xa3\x01\x14\x7d\xdc\x34\xa8\x8e\xd0\xe8\x47\xc9\xe3\x5b\x2b\x83\xb7\xae\x1e\xeb\xbd\xf9\x70\x7e\x7c\x47\x07\xd8\xcd\x06\x0c\xa6\x4d\xf6\x91\x4e\x13\x0d\x49\xdb\x8b\xcd\x3b\x98\xf7\x98\x4c\x26\xf8\xc1\x0f\x7e\x20\x95\x17\xff\x36\x55\xf1\x92\x7e\xe6\x16\x4d\x5b\xe7\x2c\x0d\xac\xab\x82\xad\x2f\x92\xfa\x1e\x5b\xbd\x74\xdd\xf3\x3a\xca\x03\x6f\x3b\xb6\xf2\x31\xa1\x4e\x3d\x95\xf8\xf2\xe0\xab\x77\xea\x94\x29\xe5\xcd\x01\x98\x24\x23\x20\x00\x38\xb3\xaa\x48\x6a\xa8\x2e\xef\x64\x1e\xa4\x91\x0f\x8d\xa7\xe6\x5a\x9e\x87\x94\x8f\xcd\x22\x43\xa7\x6f\x78\x1e\x81\x40\x63\x93\x91\xf3\xe1\x72\x4a\xf1\xf8\xfa\xd7\xbf\x1e\xac\xad\xa5\xd8\x83\xed\xd5\x62\x96\x3c\xa7\xd6\x16\x8d\x76\x43\xab\xf6\x53\x0f\x3b\x67\x9f\xd9\x9a\xfb\xd2\xea\x7e\xf3\x33\xe1\x24\x58\x87\x2a\xf6\x16\xa5\x90\x3d\x94\x3a\x7f\x13\xac\xd0\x83\xa2\x0e\x62\x26\x49\x95\x91\x2d\x51\x05\x6f\x7a\xda\x9a\x15\xd9\xb0\x4b\x87\xd0\x0a\x80\x56\x3a\xaf\x81\xfd\x66\xd2\xbd\xbf\x34\xba\x71\xe5\x58\xef\xed\x5b\xcb\x83\x5b\xfb\xd1\xe4\x11\x80\x9e\x82\x1a\x64\xa0\xc5\x2c\x75\x36\x53\x42\xf4\x80\xc4\x38\x9b\x16\xa2\x2b\x86\x12\xad\x75\xee\x10\xa8\xa6\x07\xd0\x25\xe9\xeb\x4c\xcf\x43\xf9\xa5\x5f\xfa\xa5\xe0\x4f\xff\xf4\x4f\x8d\x84\xb6\x3a\xc0\x9f\xd9\xda\x85\x94\x86\xc6\x4b\xf9\xf0\xfa\x2f\xd5\x6b\x97\x2c\x2e\x79\xea\xa4\x71\xc9\x26\xbd\x03\x97\x95\xfe\xba\x74\x03\xa7\x73\xb5\x57\x29\xcf\xaa\x50\x6a\xaf\x42\xfe\x3c\x8e\xa7\xab\x7a\xee\xa3\x5b\x24\x39\x0a\xbf\xa4\xde\x61\x32\x99\xe0\x3b\xdf\xf9\x8e\xd9\xb4\x32\xe7\xa3\xa7\x27\x54\xd3\xe3\x06\xe2\x6c\x3f\xa8\x18\xa9\x55\x37\xc1\xd4\xe9\x9c\x1e\x0e\x1a\xd3\xb8\x61\x53\x8f\xae\x1e\xeb\xef\x3f\xea\xc4\xdb\xcf\x6c\xb5\xb7\x9e\xdc\x9e\x7b\xf6\x68\xaf\x79\xb2\x15\xa3\x9d\x36\xe9\xec\x14\xf6\x6c\x19\xa2\x06\x30\x0e\xf4\xe0\xfe\xc2\xe8\xea\xb5\xb5\xfe\xdb\x0f\xe6\xc7\x77\x26\x01\xba\x5a\xeb\x7c\x15\x51\xb6\xe5\x40\x8f\xe5\xc9\x4f\x7b\x4e\x2c\x4b\x9e\xa5\xdf\x3a\xcf\x29\x3f\xdb\x77\xb7\xc5\xc3\x42\x23\x5d\x57\xb5\x15\xa9\x4e\xd7\xe5\xe1\x13\x5f\xb7\xdc\xe0\x78\x5e\x55\x2e\x3e\xe5\x26\x85\xba\xef\x29\xf1\x77\xe9\xad\x42\x1a\x63\x71\xa1\x08\x87\x76\x53\x3c\xf8\x22\x2b\xc9\x94\x45\xcd\x40\x75\x78\xd9\x64\xa0\x23\x58\x93\x9f\x2f\x6f\x5a\x28\xb6\x91\x17\xc0\x90\xed\x67\x3f\xfb\x59\x45\x9d\x71\x91\x9a\x5c\x1b\x98\x4e\x11\xb5\x94\x52\x51\x00\xb4\x9f\xda\x9e\x3b\xfd\xc2\x07\xf3\x5f\x3d\xde\x8d\x7e\x31\x9a\x04\x27\xcc\xea\x43\x2f\xe0\x61\x01\x2d\xb6\x50\x62\x5c\x32\xfd\xce\x18\xf8\xb4\x13\x07\x29\x42\x70\x61\x1c\x13\x92\x00\xf1\xf6\x5c\x7c\xef\xea\x7a\xef\x07\x3f\x3a\xb9\xff\xc3\x3b\x47\x86\x37\x87\x4d\xbd\x8d\xd4\xd9\x76\x2f\x33\x47\x9b\x69\xa1\x3d\xa4\x53\x43\x46\x51\x9a\xd5\x42\x43\x90\x95\x42\x6a\xba\xfa\x22\x37\x4f\xd3\x15\x42\x17\x2f\x5e\x4c\xce\x9f\x3f\xaf\x5e\x7b\xed\x35\x0d\x00\xd7\xae\x5d\xa3\x75\x94\x5b\x51\xcc\xab\xd0\x6b\xa9\x5d\x48\x23\x74\x73\xcd\xeb\x29\xe5\xc9\xad\x1d\xb4\xbe\x25\x2c\x1f\x57\x9a\x84\x3c\xa3\x41\x4a\x63\x33\x51\x27\x1e\x69\xb8\x3c\x74\xf4\xa3\x84\xf4\xb6\x20\x8d\x36\xf9\xb5\x09\x55\xa3\x50\x17\xef\x3a\x81\xa6\x93\x78\xdb\x46\x81\xf4\xda\xf6\xbc\x32\xcf\x1f\xfc\xe0\x07\x0a\x80\x7e\xed\xb5\xd7\xf2\x95\x48\x40\x3e\x55\x94\x12\xa7\xe0\x5b\x03\x25\x87\x72\x6a\x65\xc9\x57\x21\x61\xba\x72\x2e\x01\x39\x72\xa0\x1f\x25\xbd\xad\x85\xf1\xa3\x6e\x2b\xd9\x51\xc0\xa4\x35\x09\x5a\xcd\x49\xd0\x0e\xa0\x94\xca\x37\x75\x51\xd0\x40\xf2\x60\x61\xfc\xee\x5b\x27\xba\xdf\xbb\xb3\x3c\x7a\x6f\xd4\xd4\x3b\xc8\xa6\x69\x55\xba\x6f\xcb\xbe\xf1\x29\x43\x6a\x6d\xa1\x5b\x0e\x24\x44\x4e\x5c\xba\x74\xc9\xb7\x5c\xea\x3e\xe7\xfd\x49\x5d\x7e\x94\x07\xa7\xaf\x92\xd9\xa7\x1e\xdb\x78\xb8\x2c\x38\x2e\x99\x6c\x41\xd2\x47\x36\xde\x36\x30\x50\x37\xcf\x2a\x39\x6c\xbc\xab\xe2\xbd\xf5\x83\x6d\x1f\x97\x3a\x48\xcb\x37\xbd\x0b\x7d\x1e\x46\x5e\x3e\x68\x4d\x92\xc5\x36\x0a\xb6\x22\x66\xe3\xd7\x92\x59\x58\x02\x64\x7e\x2d\x2a\xdd\x38\xaa\xbd\xb1\x1b\xad\x7f\xf4\x83\xf9\x5f\x3a\xb6\xdf\xfc\x6f\xcd\x89\xda\x80\xcf\xe8\xf1\x20\x00\x43\x08\x92\xa5\xc5\x05\x2a\x5c\x40\x43\xce\x40\x46\x45\x1c\xe3\x18\xe7\x5c\x9d\xe5\x32\x08\x93\xde\xfd\xc5\xd1\x8d\xcb\xeb\xfd\x37\x6f\xae\xf4\x6f\x0d\x9a\xc9\xa3\x44\xa5\x2b\x13\x8c\x95\x05\xe4\x44\x59\xb3\x0b\xae\xca\x56\x09\x29\xb6\x17\x0b\xdd\xf1\x56\xb1\x8d\xe2\xf8\xd4\x58\xc5\xe9\xb3\x36\x6b\x00\x20\x7f\xbf\xaa\x11\x3e\xa5\x71\x59\x3d\x24\xde\x55\x23\x50\x9b\xfc\x36\x19\x7d\x2d\xa5\x3c\x1f\xc9\x2a\xe2\x3b\xc2\x93\x2c\x48\x75\xda\x3f\x2f\x2f\x13\x67\x1b\xa5\x49\xbc\x6d\xd6\x59\x1e\x5c\x16\x23\x5b\xe0\xbc\xab\xe8\x2a\xc3\x57\xbe\xf2\x15\xb1\x2e\x64\xf5\xda\x58\x77\x81\xe2\x19\x47\x11\xb9\x8e\x49\x5c\x9c\xb5\x97\x0e\x7d\x36\x6c\xe8\xf8\xe6\xca\xa0\xbf\xd7\x8a\x77\x76\xe6\xe2\xcd\xa7\x1e\xce\x3d\x77\xb4\x17\x9e\x8a\x26\x41\x3b\xf5\xb6\xd1\x78\x3c\x17\xdf\xbe\x7a\xac\xf7\xda\x9d\xe5\xe1\xb5\x41\x98\x6c\xa3\xb8\x1b\x2e\xdf\xaf\x25\x06\xe4\x0d\xe6\x3c\x82\x4d\x07\xe7\xef\xee\x48\x5b\x55\x9f\x5c\x16\x00\x93\xbe\x4a\xd6\x59\xac\x08\x55\x6d\x4e\xa2\x43\x05\xad\x4f\xbe\x12\x8d\x2f\x6f\x5b\x3f\xc8\xf9\x4a\xf4\x3e\x3a\x46\x7a\x57\x9f\x72\xb5\xf6\xd1\xa1\x23\x51\xdd\x50\xa5\x9c\x7d\x0b\xdc\x56\xd8\x2e\x7e\x36\xe5\x61\xa3\xa3\x05\x47\x0b\x86\x5f\xe7\x72\x90\x33\x4a\x02\xfa\x47\x77\xba\x54\x1a\xed\xa5\x41\xb8\xf4\xf1\x3b\x0b\x9f\x3f\xde\x8d\x7e\xb1\x15\x07\x27\x15\x50\xbd\x8b\xa5\x25\x48\xb3\x3f\x5e\xbb\xd1\x0a\x34\x2e\x60\x42\x79\xfa\x02\x18\x4e\x57\x94\x95\x3a\x01\xa7\xa0\x65\xa2\x74\xbc\xd7\x8e\xb7\xdf\x5f\x1e\x5e\xb9\x72\xac\x77\xe5\xc1\xc2\xe8\xde\x28\xd4\x8f\x35\xd0\xd3\xd0\x5d\x05\x35\xc8\x14\x63\x0e\x5a\x30\x3d\x5b\x68\x80\xa9\xe9\xdb\xcc\xa1\x1b\x65\xed\xec\xdc\xff\xf6\x6f\xff\x16\x37\x6f\xde\x74\x75\xda\x2e\xd3\xac\xf4\xdc\x66\x1a\x96\x82\x04\x04\x5c\x79\xf9\xc4\xd3\xe7\xbe\x4a\xde\x96\x37\x7f\x4e\xf9\x70\x7a\x17\x78\xe2\x6d\xb7\x0a\xd4\xd9\xf2\xaa\x63\x56\x76\xe5\x23\xc9\x2c\xc9\x66\xe3\xed\x52\xf8\x92\x7e\x70\x81\x17\xef\x8e\xef\x6f\xfe\xe6\x6f\xf2\x38\xb6\x91\x1d\x7f\x4f\xaa\x83\x80\x6c\xf3\x3a\x4c\x01\x4c\x1b\xe4\x84\xf3\xc2\xd4\x91\x42\x67\x12\xe8\xd1\xf6\xfc\x78\x34\x0a\x93\xee\x5e\x6b\xb2\xfd\xcc\xd6\xdc\x73\x27\x77\xa3\x73\x73\xe3\x60\xb5\xdf\x4c\xb6\x6e\xac\x0e\x5e\x7b\xef\xe8\xe0\x72\xaf\x99\x6c\x43\x15\x0e\x2b\x35\x53\x44\x39\x68\x21\x03\x87\x52\x5b\xbc\x76\xed\x9a\x54\x1e\x36\x40\x6e\x6b\x57\xae\x7e\xa5\xaa\xc3\x74\xe5\xe9\x13\x5c\x75\xd1\x35\xf0\xa5\x34\x9c\x97\x53\x5f\xc1\x2e\xb7\xab\x1c\x6c\xb2\xf1\x7a\x4f\x83\xad\x7d\xbb\x82\x4d\x1f\x54\xc9\xc6\xaf\xeb\xbe\x4b\x49\x06\x5b\x1f\xe5\x83\x7c\x7c\xd2\xcd\x4a\xe3\x13\x7c\x65\xf2\x95\xa1\xc4\xaf\xd5\x6a\x05\xc3\xe1\x30\xa1\xa0\x25\x9b\x26\x0a\x40\x56\x10\xa9\x74\x0b\xee\x76\x67\x14\x2c\xbd\x74\x7b\xf1\x67\x9e\x7d\xd0\xf9\x66\x67\xd4\xf8\x48\xa0\xd1\xce\x97\x16\x82\xbb\xe3\x16\xed\xed\x85\x8e\x5f\xa0\xf5\x09\xb9\x45\xc5\xb1\x7a\xa8\x40\xab\x61\xf5\xa5\x71\xc9\x90\xcb\xaa\x01\xad\x38\x5d\xfa\x74\x6a\xdd\xd1\x18\x35\x92\xc1\xc3\x4e\x7c\xf7\xc6\xd1\xfe\x95\xf7\x8e\x0e\xae\xee\xcc\xc5\x0f\xe2\x40\xa7\xa3\x38\x68\x6a\x6d\x19\x50\xe0\x42\xf6\x61\x19\x01\x48\xb2\x7b\xd3\x20\x0d\x78\x49\x74\x71\x77\xd2\x7c\x05\xc3\x93\x4f\x3e\x19\xdc\xb9\x73\x07\x71\x1c\x57\x75\x90\xd2\xe8\x59\x02\xd1\x2e\x50\x6d\x8b\xb7\x29\x37\x9a\xc6\x05\x1a\xaa\xe8\xa4\x74\x52\x1a\x7a\x3f\x4b\x3e\x55\x69\xa4\x7b\x4e\x0f\x8f\x78\x29\x1c\x96\xce\x38\xcc\x7c\x0e\x7b\xa4\x2c\x06\x36\x60\xa2\xfc\x68\x3c\xb5\xfc\xe6\xab\x1a\x51\x3c\xef\xa8\x5d\xb8\xd6\x88\x02\x9d\x1e\x41\x72\xac\xdb\x3c\x76\x6e\xab\x73\x6e\x63\x37\x7a\xfa\x71\x3b\xbe\x7b\xe9\xf4\xde\xbf\x3f\x58\x18\xdf\x8d\x03\xdd\xcd\x80\x8b\x59\xf6\x3c\x60\x03\x0b\x33\x98\x48\xd8\x5f\x69\xa7\x69\x8f\x32\xf8\x69\x7d\xe3\xc3\xc8\xff\xb0\xfa\x9c\xba\x69\xfe\x33\xb6\x99\x3a\xf9\xb9\xfa\xdd\x5a\xf9\x48\xab\x8a\xf8\x1c\x19\x65\x2c\xcd\xe9\xd2\x40\xe7\x83\xf9\x2f\xa5\xa9\x12\xac\xce\xfc\xa4\x34\xc7\xe7\xe2\x2d\xf9\xdf\xd0\x77\x54\x00\x74\xa7\xd3\x09\x06\x83\x41\x02\x00\x2f\xbd\xf4\x92\xca\x68\xcc\x5e\x2d\x81\x52\xaa\xa9\xa6\x9b\xcc\xb5\x5a\xb1\x3a\xf2\xdc\xe6\xfc\x47\x9e\x7d\x30\xff\x7f\x2e\x0e\xc3\x97\x02\x8d\xb9\x29\x68\x01\xe8\x76\xda\x06\x2c\x50\x07\x81\x82\x8b\x0a\x07\x0c\x82\x19\x44\xb4\x8c\xe4\x96\x93\xb2\x43\x8d\x08\x92\x94\xcb\xe7\x76\x1a\xa3\xf5\x94\x7e\x0a\x8e\x52\x78\xa2\x4a\xa6\x1a\x95\xef\xaa\x9b\x04\x3a\xe9\x45\xc9\xde\x07\x47\x46\xd7\xdf\x5d\xef\xbd\x75\xfd\xe8\xe0\xdd\x9d\xb9\xf8\xde\xa4\x81\x3d\x0d\xbd\x6b\x56\x0b\x65\xf3\xe6\xf9\x9e\x2c\xe4\x6f\x84\xd4\x7f\x65\x94\x39\xdd\xc6\x2a\xdd\xdf\x22\xdf\xf5\x96\x38\xdf\x6a\xa0\xa8\x30\xbb\xdd\xae\x9a\x4c\x26\xa6\x23\xa6\xbe\x1b\x34\xae\x54\x2c\x28\xd6\x05\xde\x61\xdb\xe6\x66\x6d\xfe\x0e\x01\xb9\x36\x3c\x79\x3e\xbc\x1e\x2b\x46\x0f\x21\x0d\xed\xc8\xf8\xfc\x34\xf7\x43\xe1\xef\xe4\xf2\x5d\xa1\xef\x69\xa3\x03\xa1\xa3\x6d\x5c\xf2\x39\xe0\xed\xb3\xaa\xdd\x4a\x7a\xc3\xa5\x4f\x38\x0f\x9a\x07\xbd\xf6\xa1\xe5\xef\x67\xbb\xa6\xbe\x48\xb4\x9c\x6c\xfc\xf9\x3b\x54\xc9\x42\x83\x3a\x79\xf2\x24\xc8\x06\x75\xe9\x84\xce\xf4\xb0\x42\xc3\x5b\x63\xfa\x3d\x12\x4c\x7d\x5c\x34\x90\x1f\x22\x6a\xe2\xc6\x50\x98\x68\x85\xf1\x38\xd0\x83\x7e\x94\xec\xed\xb5\xe2\x07\x7b\xad\xc9\xbd\xbb\x47\x46\x97\xef\x2d\x8d\xde\x8f\x1b\xba\x8b\x74\xef\x24\xe3\x90\x9b\x3b\xe3\x22\xf5\x2f\xcb\x57\xee\x81\x00\x16\x00\xfa\xe2\xc5\x8b\xc9\xca\xca\x4a\x30\x18\x0c\x5c\x7a\x9f\xbf\x2f\xf7\x33\xb3\x7d\x63\x5b\x99\x4b\xb4\xbc\xde\x70\x1f\x31\xde\xe6\x78\xbd\xe1\x7f\x92\x1f\x08\x7f\x0f\x5b\x3d\x95\xf8\x54\x7e\x7b\xc6\xcb\xb7\x6e\x4a\x7d\x1c\xa7\x75\xc9\xea\x1b\x78\x1b\x75\xd1\x48\x20\x4c\xd2\x03\x52\x19\x95\xea\x89\x62\x89\x5c\x1d\xba\x2f\x62\xf6\x4d\x73\x10\xf4\x35\xeb\xc8\xc8\xe7\x1d\xb0\xb4\xb4\x84\xdd\xdd\xdd\xfc\x04\x58\xf2\x4c\xf4\x69\x69\x8d\xd5\xd2\xe9\x47\xed\xa7\x3f\x79\x67\xe1\xd7\xd6\xbb\xad\x2f\x87\x09\xd6\x4a\xd6\x95\x1c\x54\x14\x62\xf3\xa3\xe7\x45\x20\x52\xa2\x2d\xfb\x6d\xd8\xa9\xd3\x50\x67\xda\x47\x4a\xc3\xe5\x72\xdd\xd3\xeb\x58\x25\xf1\x5e\x7b\xb2\x7d\xe7\xc8\xe8\xbd\x1b\xab\xfd\xab\xf7\x96\x86\xb7\xf7\xa3\xe4\x51\x02\x9d\xef\xb6\x49\x7c\x5a\xe8\xe1\x88\x85\xa9\x21\x35\x3d\x08\xd1\x4c\x11\xd1\x53\x9a\x13\x00\xf9\x6a\xa1\x8f\x7e\xf4\xa3\x41\x1c\xc7\xb8\x7c\xf9\x32\xe0\x67\xd5\xe0\xf7\x2e\xcb\x8c\x6b\xf4\xe3\xca\x47\x4a\xeb\x0a\x92\x85\xc4\xc5\x9b\xa7\x93\xd2\x48\xbf\x5c\x36\xdf\xf2\x71\xe5\x23\xd1\xdb\x64\xfc\xcf\x10\x0e\x32\xa2\xe5\xf4\x75\x47\x9c\x5e\xfa\x74\x7e\x7e\x3e\xd8\xdf\xdf\xcf\xe9\x88\x05\xc6\xd0\x04\x00\xf2\x55\x8e\xd9\x6f\x88\xf4\x8c\x34\x73\x22\xbd\xb1\xc2\xd0\x03\x1b\x23\xa4\x9b\x64\x86\x0a\x2a\x6c\x68\x84\xad\x38\x08\x27\x0a\xa3\x61\x98\xf4\xa0\x72\x3f\x96\x5e\xd6\x1e\xf3\x93\xd6\x21\xfb\xb6\xc0\xfc\x66\x83\x87\xba\xba\xbc\x4e\xdd\xf0\x6d\x63\x87\x6d\x75\xa8\xdb\x8e\xeb\x58\x98\xaa\xfa\x4a\x58\x9e\x1f\xa6\x4c\x9c\xae\x4e\x99\xd6\xa9\xff\x3e\xdf\xda\x25\x43\xa9\x5f\x73\x29\xb5\x9f\x04\x00\xa9\xe2\x35\x6b\x21\x1d\x54\x21\xe5\x0a\x42\x4f\x8f\xa9\x0f\x32\x45\x60\x94\x42\x5b\x29\xd5\x6e\x4e\xd4\xc2\xf1\xdd\xe8\xd4\x8b\x77\x17\xbe\x74\x66\xa7\xf5\xb5\x56\xdc\x38\x03\x20\x10\x2d\x19\x16\xcb\x09\xca\xd1\xce\xa0\x81\xf2\xee\xba\x0c\x19\x49\x40\x48\x4c\x67\xe3\x5f\x43\x1e\x9e\x76\xdc\x48\x46\x8f\xe6\xc6\xf7\x6e\xad\x0c\xdf\xbb\xb9\x3a\xb8\xfa\x60\x7e\x7c\x77\x18\x26\x8f\xa1\x72\x93\xb3\x01\x2e\xc6\xaf\x85\x82\x16\xb3\x45\x3f\x5d\xe6\x0c\xb2\x43\x28\x80\x29\x68\xf1\x34\x49\x4b\xf5\xc1\x84\x59\x94\x6c\x55\x9c\x2b\x9d\x0d\x20\x01\xf5\xf8\x54\x05\x57\xdb\xb1\xe5\x35\x4b\xc7\x6d\x78\x1d\x44\xa1\x49\xb4\xb3\x94\x2b\x0d\x55\x7c\x7e\x52\x20\xca\xf7\x9b\x56\x81\xe3\xd2\xf5\x85\x0b\x17\x82\xef\x7f\xff\xfb\x09\x50\x39\x85\x54\x3a\x75\x1a\xc5\xe9\x23\xfa\x67\x00\x8e\xe1\x43\x7d\xc9\x4a\x87\x96\x66\xed\x73\x44\x7c\x67\x24\xd0\x52\xf9\x2e\x42\x39\xf8\xdc\xd7\xd5\xeb\xbc\x9d\x57\xc9\x65\xe8\x7c\x06\x2e\x3c\x1f\xdf\x4e\x98\xe7\x21\xd1\xf8\xe8\xaf\xc3\x00\x2b\x55\x83\x99\x59\xf9\xd7\xd5\x05\xae\x41\x8e\x09\x85\xef\x50\xd5\x3f\xd5\x41\x81\xb3\xa0\xb4\x2a\x9e\x12\x0f\xdf\x4a\x55\x25\x5f\x29\xfd\xca\xca\x4a\xf0\xc2\x0b\x2f\xe0\xf9\xe7\x9f\xcf\x79\x18\xe0\x42\x1a\xb7\x19\xa9\xb4\x1b\x5a\x75\x8e\xee\x37\x37\x3e\x72\x7f\xfe\x33\x1f\x7a\xd0\xf9\xb5\xce\x28\x78\xd1\x9c\xf6\x5c\x19\x6c\xe8\xc0\x81\x1a\x0a\xd6\x0d\xd1\x82\x53\x26\x74\x5a\x4c\x7c\x11\x8a\x83\x1f\x25\xd1\xd0\x18\x86\xba\xf7\x60\x61\x74\xfb\xc6\xea\xe0\xca\xfb\x2b\x83\x1b\x8f\xe6\xe2\xfb\x71\x43\xef\x62\x7a\xa6\x09\x9f\x2b\xef\x11\x65\x58\x58\x35\x84\xe9\x68\xae\x30\xaa\x33\x3e\x2d\x02\x68\x01\xfc\x1b\xe3\x61\x29\x11\x5b\xfe\x55\xf7\x36\x00\xe3\xcb\x5b\x52\xca\x12\xed\x2c\x8a\xc5\xd5\x56\x5c\x32\xf9\xc8\x5c\x47\x71\xf9\x74\x7c\xbe\xf4\xde\x00\xc1\x91\xce\x97\xc6\xf5\x5e\x2e\x1e\x10\xe8\xad\xe5\x2b\x0c\xae\x4a\xfb\x4b\x61\xea\xf7\x92\x83\x98\x6c\xd0\x15\xd2\x81\x18\xc9\x27\xc1\xb4\xfd\x0d\xb2\x01\xc3\x00\xd3\x55\x4a\xb4\x6d\xc6\x54\xe6\x9b\x37\x6f\xe2\xd2\xa5\x4b\xd8\xda\xda\x9a\xe5\xdd\xea\xe8\x73\x1b\xe0\xb0\x85\x3a\xf5\xc7\x07\x28\xd9\xde\xeb\x20\x75\xdd\xf0\x39\x2c\x1e\x12\x3f\xe9\x1d\x5c\x72\xcf\xda\x8e\x6c\xb2\xd6\xd5\x9d\x56\x1e\xae\x4e\xd6\x47\xe1\xf9\x22\x43\x57\x45\x30\x7c\x5c\x05\x5c\x15\x66\x05\x2d\x85\x3c\x4f\x9e\x3c\x89\x7f\xfd\xd7\x7f\x4d\x9e\x7f\xfe\x79\xe3\x84\x0b\xa4\xe0\x25\x20\xe0\x25\x9d\x26\x82\x8a\x16\x46\x8d\xe5\x33\x3b\xed\x8f\x3c\xb9\xdd\xfe\x85\xb9\x71\xf0\x9c\x12\x40\x4b\xd9\xea\xa2\x53\x1f\x17\x65\xf1\x2e\x51\x29\x00\xc8\xb7\xcf\x4f\x93\xe4\xfe\x28\x39\x19\x01\x12\x00\x39\x5f\x24\x7b\x96\x02\x9b\x32\xff\xe9\xb4\x4e\x85\x03\x2f\xcd\xdc\x03\x21\x69\x68\xf4\x9b\xc9\xee\x07\x4b\xa3\x1b\xd7\xd6\x7a\xef\xdc\x59\x1e\xde\xe8\x46\x93\x87\x49\x00\xb3\xfb\x6d\x0f\xd9\x92\x4a\x4c\x37\xb0\x32\x0e\xb8\xe6\x6c\x21\xae\x14\xcd\x46\x56\x26\xc3\x04\x00\x36\x37\x37\xd1\xef\xf7\x4d\x9c\x54\x87\x7c\x1b\x57\x22\xa4\x05\xfc\xea\x68\x1d\xe5\x20\xd5\x65\x29\x5d\x55\x07\x59\x25\xa7\xd4\xe8\x5d\x8a\xcc\x95\x86\x07\x9f\xf7\xa5\x74\x86\xb6\xea\xfd\xaa\x80\x1e\xcf\xd3\xa6\xf8\x6c\xf9\x48\x65\x55\xe7\x5a\x92\x85\xca\xe9\x92\xdf\xf6\xdc\x16\xaa\xea\x44\x81\xbf\x01\xee\xd9\x94\x76\x92\xf9\xde\xd1\x7a\x42\xbf\x99\xf9\x0b\x33\x1a\xa3\xcb\x0c\xb8\x01\xa3\x1d\x21\x6d\x93\xf9\xea\x21\x14\xa7\x6c\xa9\xb5\x85\x5b\x5a\xa4\xf7\x72\x05\x1f\x80\x5c\x37\xde\xa9\xeb\x19\x8d\x8d\x8f\xad\xbd\x49\xdf\xa7\xea\xbb\xd9\xe2\xeb\xbe\x73\x55\x1f\x5b\x15\xea\xb4\x87\xba\xe9\x5c\xef\x52\x47\x47\xba\xf4\x5c\x02\x14\x91\xb6\x4d\x50\x89\x81\xad\x32\xd8\x1a\xb9\xeb\x5e\x02\x19\x92\xb0\x2e\xc5\x69\x93\x93\xe7\xeb\xac\x88\x6f\xbd\xf5\x56\xbe\x82\xc8\xec\xd5\x82\xe2\xa8\x25\x32\xcb\x9f\x5b\x71\xb0\xf0\xc4\x4e\xeb\xe9\x73\x5b\x73\xff\x75\x71\xd8\x78\xa9\xa1\x55\x27\xcf\x8d\x74\xf6\xa5\x2e\x5f\x51\xef\x97\x32\x20\x48\xa1\x40\x31\xad\x12\x4c\x26\x14\x92\x88\x1c\x33\x47\x59\x7e\x02\x33\x84\x34\xe5\xfc\xa7\xc4\x06\x12\x99\x69\xa6\x14\x14\x69\x72\xa6\x89\x86\x06\x92\x5e\x94\x74\x6f\x2f\x0f\xae\xbc\xb3\xde\x7b\xf3\xde\xd2\xf0\xf6\x20\xd4\x8f\xcc\xd4\x10\xb1\xae\x74\xb3\xd1\x5b\x61\x17\x5c\x97\x95\x85\xef\xcd\x62\xb1\xb2\x00\xf6\x7a\x0a\x12\x67\xeb\x34\x7c\x94\x41\xe0\x78\xc6\x83\xab\xfe\x51\x5e\x5c\xa6\x2a\x45\x5a\x95\x47\xd5\x88\x46\xe2\x21\x81\x2a\x57\xe7\x63\x1b\x85\xb9\x64\xa3\x7c\x5d\x72\xdb\xbe\x17\x2d\xef\xaa\x51\xa0\x0f\x4d\xdd\x72\xe2\xef\x60\x64\xa2\xbf\x55\x72\x4b\xcf\xb9\xbc\x75\xe4\xce\xaf\xf7\xf7\xf7\x31\x3f\x3f\x0f\x0b\x5d\x6c\xf2\x33\xbb\xd9\x12\xbe\x46\xff\x4b\x60\x33\x01\xd9\xff\x85\x00\x95\x04\x28\x5a\x3d\x99\xdf\x0d\x7d\x27\x29\x54\x01\x81\xaa\x0e\xce\x15\x6f\xe3\x5d\xb7\x8f\xf3\x01\xd3\x52\xdf\x97\xc7\xad\xaf\xaf\x07\x9b\x9b\x9b\xce\xef\x26\xa4\xb3\xd5\x0b\x9b\xcc\x10\x9e\xdb\x06\x11\x07\x0d\x75\xda\x91\xab\x3c\xb9\xfe\xb4\x81\x15\x1b\x3f\x00\xe9\xce\xb9\x2e\x0f\x7d\xb0\xe7\x26\x5e\xf2\xc2\xb7\x79\xd6\xbb\x78\x73\xfe\xe6\x5e\xf2\xa4\x76\x79\xa0\x73\x2f\x6a\x13\x27\x79\x9f\x73\x4f\x73\xdd\x6e\xb7\x83\x38\x8e\x35\x39\x83\xc8\x34\x66\x63\x6d\x69\x20\x3d\x87\xa8\xa9\x94\x6a\x35\x12\xcc\x9f\xde\x69\x9d\x7d\x7e\x73\xfe\xf3\xeb\xdd\xe8\xf3\xd1\x24\xd8\x28\xc0\x80\xaa\xa5\xc8\x0e\x23\x46\xd5\xcc\x0d\x5d\x91\xe4\xa2\xcf\xc1\x86\xa2\x74\xba\x08\x44\x4a\xcc\xcb\x20\xa9\x90\xde\x5c\x2b\x05\x9d\x71\xd1\x0a\x49\x2f\x9a\xec\x5e\x5f\x1d\xbc\xf5\xe6\x89\xfd\x1f\xdc\x5b\x1a\xbd\x3f\x6a\xe8\x9d\x6c\x45\xc2\x1e\x50\x38\xd5\xb9\x8f\xf4\x7c\xa1\x41\x76\x3d\xcc\x56\x3a\x8c\x30\x3d\xe9\xd6\xec\x02\x6a\x56\x47\xe0\xe2\xc5\x8b\xc9\xb3\xcf\x3e\xab\x86\xc3\x21\xde\x7c\xf3\x4d\x5b\x7d\x29\x7d\x57\x94\xeb\x85\x6d\x65\x00\xf7\xac\x97\x3c\xfc\xb9\x1f\x72\x40\xe8\xa4\xfa\x4a\xf3\xe0\x72\xd1\x34\x09\xb9\x96\x78\xf3\x46\xeb\xf2\xde\xa7\xcf\xb9\x1c\x54\x56\x1a\x68\x75\x48\x48\x5c\x82\x22\x2f\xd7\xfb\xb9\xde\x19\xc2\x33\x9a\x2f\xe7\xc3\x79\xf1\xef\x2a\xe5\xeb\xfa\x7e\x2e\x19\x7d\x03\xfd\x1e\xd2\x8a\x0d\xe9\x7b\x71\x99\x6c\x3a\x55\x3b\xe2\x5d\x72\xe7\xd7\x8d\x46\x43\xfd\xf5\x5f\xff\x35\x3f\xc0\xd1\x1c\x41\x9d\x00\xf9\x79\x47\x40\x0a\x3a\xcc\x8a\x3c\x73\x72\xba\x39\xef\x28\x06\x30\xce\xe2\xe9\xaa\x21\x71\x40\x61\x06\x11\x64\x77\x5c\x2a\x17\x2d\x27\xdb\xbb\xf3\x20\xd5\x4f\x5b\x1d\x54\xec\xd7\xc5\xdb\x56\x86\x54\x4f\xd8\xfa\x17\x5e\x07\x4d\xba\x04\x00\x16\x17\x17\x83\xd1\x68\xa4\xb3\x6b\x65\xae\xf7\xf7\xf7\x2b\xbf\x9b\xe5\x1d\xab\x64\xa5\xf9\x4b\x3a\xcf\xd6\xee\x69\x1d\xf5\x0d\x55\xf5\x91\xf7\xc3\x89\x40\xc3\xf5\x9a\x04\x4c\xaa\x78\x97\x64\xae\xb3\x73\xae\x0b\x69\xcd\x82\x0c\x6d\xc1\x36\xda\xf5\x41\xaf\xae\xfc\x25\x59\x12\x00\x18\x0c\x06\x89\xcd\xd9\x8d\xcd\x05\x47\xd0\x88\x8e\xef\x45\x6b\xcf\x6c\xcd\x7d\xea\xf8\x6e\xf4\xd9\x28\xdd\x64\x0e\x40\x19\x0c\x88\xe0\x00\x28\xae\x22\x12\x12\xf1\xbd\x55\x28\x2d\x07\x16\x1a\xfe\x20\x88\xee\xb8\x22\x3a\xee\xf2\xa9\x21\x87\x9f\x0c\xa0\x91\x28\x24\xfb\xd1\x64\xe7\xbd\xb5\xfe\xeb\x3f\x3c\xd9\x7d\x6d\xb7\x1d\x3f\x48\x94\xee\x21\x5b\xde\x4c\x9c\x70\x8d\x7f\xcb\x88\x6d\x60\x95\xa0\xb8\x89\x95\x19\xcd\xe5\xd3\x43\x46\x39\xfe\xd9\x9f\xfd\x99\x41\xe4\x52\xdd\x03\x8a\x75\xc6\xc7\x6a\x41\xd3\xd9\x46\x29\xae\x91\x80\x4f\xfd\x74\x05\xce\x9b\x8f\xd4\x5d\x69\xaa\xd2\xdb\xd2\xb8\x82\x6d\xa4\x69\x9e\xd9\xda\xb3\xaf\x95\xc0\x57\x0e\x9e\x87\x34\x8a\xe6\xb4\x5c\x5f\xd8\x78\xd6\x91\x53\x1a\x19\x73\x99\xa4\xbc\x7d\x46\xec\xae\x7b\x9f\xd1\xbd\x89\x03\x80\xe4\x87\x3f\xfc\xe1\x34\xf3\x24\x41\xa3\xd1\x00\x52\x70\x91\xa7\xcd\xae\x63\x20\x3f\xfb\x28\xc9\xa6\xbf\x91\x4d\x31\xf1\xf7\x34\xd7\x31\xb5\xd4\xd0\xb3\xbf\x4c\x88\xa2\x28\x18\x8d\x46\x3e\xdf\xb8\x6a\x44\xed\x3d\xe2\x66\x32\xd6\xb1\x06\xf0\xb4\x94\x87\xb3\x2e\x35\x1a\x8d\x20\xdb\x5e\x21\xf9\x9d\xdf\xf9\x9d\xe0\x8f\xff\xf8\x8f\x93\xdf\xfc\xcd\xdf\x34\x7e\x45\x05\x5f\xa3\xaa\x60\xf4\x1a\xe1\x59\xb8\x16\xde\xa1\xaa\x5e\x49\xf1\x52\x7a\x1b\x8d\x6f\xfb\xb0\x05\x1b\x9d\xad\x6d\xd8\x74\x9d\x57\x1d\x99\x75\xf1\x88\x14\xea\x28\xa6\xc3\xe0\x7d\x90\xce\xa2\x14\xf8\xce\xb8\x74\x59\x21\xc8\x46\x4e\x2b\xbd\x70\xf5\x63\x77\xe7\x7f\xfe\xdc\xc3\xce\xaf\x2e\x0c\x1b\x9f\x08\xb4\x6a\x4b\xfc\x6c\xa0\xc5\xf7\x79\x5d\xba\x59\xc2\xac\x32\x68\x68\x4c\x02\x8c\x76\xe6\xc6\x5b\xef\xae\xf5\x7f\xf8\xc6\xc9\xfd\xd7\x7b\xcd\xc9\x23\x9d\x2d\x75\x36\xfb\xb2\x98\x3f\xb2\x9c\x92\x6e\x15\x9e\xa0\xe8\xc7\x92\x10\x05\x99\x37\xec\xdf\xfd\xdd\xdf\x0d\xfe\xe8\x8f\xfe\xa8\x4a\x29\xda\x1a\x61\xdd\xce\x72\xd6\xce\xc6\x87\x9f\x4f\x1a\x4a\x07\x07\xed\x41\x78\xd7\x49\x6f\x53\x32\xae\xf2\x3d\xc8\x37\xf0\x91\xf3\xb0\x42\x1d\x70\x55\x57\xd7\xcc\xda\x91\xda\xea\x98\xaf\xfe\x2b\xd0\x09\x4b\xa7\x0b\xbf\xa6\xc3\x25\xd7\x12\x08\xcb\x3b\x3e\x33\xa0\xa8\xb1\x92\x0f\x42\xfc\x61\x84\xba\x9d\x9e\x8b\x8f\x4b\xee\xfc\xf9\xca\xca\x8a\x39\xe1\x1b\xdf\xfe\xf6\xb7\x03\x5a\x06\x96\xa9\x32\xa7\xcc\x3c\xbd\x63\x0a\x5c\x92\xb5\x4e\xdb\xf2\xa9\x83\xb3\xd6\xd7\x59\xc3\x81\x75\x82\x74\x3a\x74\xdd\xc6\x62\x82\x6f\xe7\x62\xbb\x77\x05\x89\xce\x86\xea\x7c\xf8\x94\xf2\x66\xcb\x9e\x03\x64\x7e\x2d\xda\x9c\xf8\x0c\xb4\xdb\x71\xa3\x73\xee\xc1\xdc\x0b\x67\x76\xda\x9f\xef\x8c\x82\x8f\x28\x8d\x02\x68\xa1\x1d\x7c\xd9\x42\xe1\x0f\x64\xb8\x1d\xd4\x46\x37\x4b\xa0\x3b\xe2\xda\x2c\x45\x3c\x70\xd0\x32\x6a\xe8\xc1\x83\x85\xd1\xad\xcb\xeb\xfd\xd7\xdf\x3d\xd6\x7b\x67\x10\x26\x8f\x31\xdd\x12\x9c\x5b\x5b\xa8\x85\xc5\xac\x4e\xc8\x1d\xfc\xa8\x09\x1b\x40\x61\xd7\xdf\x66\xb3\x49\x4f\x70\xe6\x81\x77\xaa\x3c\x1e\x28\xd6\x49\x51\x21\x09\x69\xe8\xa8\x8b\xa6\xb1\x8d\x60\xa4\x06\x0f\x54\xf3\x97\xe4\x91\x46\x50\x9c\xce\xf6\xcc\xf5\xae\x5c\x1e\x1a\xf8\xfb\x26\x2c\xce\x04\x57\x7a\xe9\x79\x15\x00\xa8\x0a\x87\xad\x38\x6d\xba\xcb\x36\x6a\xa5\xa1\xae\xae\x91\xf8\xd5\x01\xa1\x2e\x3e\x2e\x99\x24\x9d\x46\x4f\x48\x2f\x8e\x5a\xd3\xc1\x42\xa0\xb2\x43\x49\x6d\x79\x98\x36\xea\x70\xe6\x97\xea\xfa\x4f\xaa\xd3\xe3\xf9\xd9\x82\x4f\x27\xec\xdd\xaf\x18\xd0\x62\x82\xcb\xaf\xc7\x67\xe7\x72\x4f\xb0\x53\x25\x57\x9d\xba\xe8\xa2\xb7\xd5\xd7\x9f\x14\x90\x39\x08\x9f\x04\x98\xbd\x0f\x3c\xa8\x85\x63\x96\x42\xf0\x05\x54\xb5\xf2\xfa\xe6\x37\xbf\x19\x34\x9b\xcd\x02\x70\x41\x71\x09\x61\xbe\x55\xf6\xf3\xf7\x3a\xcf\x7d\xe4\xde\xfc\xaf\xad\x77\xa3\x2f\x44\x13\xb5\xa1\x3c\xba\xfe\x02\x20\xd1\x53\x5f\x91\x99\x01\x88\x25\xa1\x04\x7c\xbc\xd8\x78\x0a\x62\xa6\x87\xfa\xcd\x64\xf7\xde\xd2\xe8\xc6\xe5\x63\xbd\x37\x6f\xae\x0e\xde\x1b\x84\xc9\x23\x14\xb7\x05\xcf\x37\x96\x63\x1b\x56\xd1\xb3\x4d\xf2\x39\x73\x09\xb8\xb0\xc3\x10\x7d\x46\x73\xbe\xa0\xa4\x2a\xcc\x32\x2a\xa6\x71\x75\x41\xd2\x4f\x53\x1e\xdf\x11\x5a\x55\x5e\xa8\xc9\xcb\x05\x18\x00\x77\xbb\xa5\x79\xb9\x68\x6d\x79\x01\xee\xbc\x41\x68\x7c\xc0\x2c\xbd\xae\x2a\x0b\x9a\x87\x4b\x6e\x1f\x40\xe5\x93\xae\x94\xcf\xd2\xd2\x52\xb0\xbb\xbb\x9b\x00\x00\xf3\xdf\xb3\xc9\x49\x83\x08\x44\x2f\x5e\xbc\x98\x7c\xe3\x1b\xdf\x08\xfe\xf2\x2f\xff\xb2\xce\xb7\xaf\xf3\x2e\x07\xe1\x37\x6b\x59\x3a\xe9\x49\xd9\x71\x7a\xe9\xda\x07\xb8\x70\x80\x59\x00\x8e\x15\xdb\x3c\xb8\xc2\xa1\xd6\x9f\x0a\x7e\xbe\x7a\x4d\x6a\x2f\x55\xe9\x5d\xed\x3d\x05\xdd\xc2\x03\x57\x38\xec\x51\xd0\x61\x84\x03\x81\x23\xb2\x3b\x6e\xc0\x80\x0b\x3d\xeb\xa3\xbd\xb1\x1b\x9d\xfc\xc4\xed\x85\x5f\x3e\xbd\xd3\xfe\xef\x73\xe3\xe0\xe9\x00\x2a\x02\x50\x1b\x31\xfc\x24\xa6\x7e\x0e\xc2\xd3\x80\x29\x97\xaf\x0c\x00\x24\xd0\xe8\x45\x93\x9d\x3b\x47\x86\xef\xbd\x7b\xac\xff\xe6\x9d\x23\xc3\x5b\xfd\x66\xf2\xd0\xac\x1c\xca\xfe\x0a\xd3\x43\xc6\xd2\x92\x2d\x79\x2e\x1c\x7b\x6f\xfe\xe8\x9c\xb9\xd6\x1a\xef\xbd\xf7\x1e\xfe\xe1\x1f\xfe\xa1\x0a\x84\xda\x3a\x35\xdf\xc6\x50\x87\x8e\x5f\x03\xd5\x0d\x9c\xe7\x33\x8b\x25\x44\xe2\xef\xe2\x6d\xa3\xf3\x0d\x07\x79\x57\x57\x5e\xff\xbb\x75\x86\x4f\xe7\x79\xd0\x8e\x75\x56\x80\xe9\x9b\xb6\x4e\xb0\x76\x36\xc2\x28\xbf\x64\x21\x60\xd7\x3e\x1d\xea\x61\x85\xba\xe5\xe0\xaa\xff\x87\x92\x07\x9f\x6a\x23\x9b\x5f\x9a\x78\xfe\xcb\xf3\x02\xcd\x4f\xf0\x0f\x4a\xe8\xaf\x79\x4e\xbf\x81\x29\xf3\xa7\x9e\x7a\x2a\xb8\x7e\xfd\xfa\x7f\x86\x76\xe4\x1b\x4f\x9f\x43\xa0\x99\x75\x00\x17\x00\xee\x7d\x5c\xa4\x70\xd8\x0d\x8c\xf3\x9d\xa5\x70\x0e\x2c\x93\x6b\xc3\x26\xad\x75\xb4\x30\x6a\x2c\x3d\xb3\x35\xf7\xe2\xf1\x6e\xf4\x99\x76\x1c\x9c\x52\x06\xb4\x00\x05\xc4\x60\x0e\x50\xb0\x5a\x32\xb8\x73\xed\x34\xda\x0f\x78\x68\x96\x47\x59\x84\x4a\xe6\x7c\xda\xca\x58\x80\xa8\x5f\x2e\x97\x27\x81\xc6\x7e\x6b\xb2\x7d\x7b\x79\x78\xf5\xea\x5a\xef\xed\xbb\x4b\xa3\x5b\xfd\x66\xf2\x28\x3b\xd5\xd9\x58\x59\xcc\x14\x11\x3d\xd3\x24\xdf\x9f\x85\x38\xe0\xc6\xb4\x01\x9b\x86\xfa\xca\x2b\xaf\x24\x67\xcf\x9e\x0d\x6e\xdc\xb8\xe1\x3b\x62\xf2\x01\x04\x55\x48\x3f\xb0\xd0\xd9\x46\xa5\xf4\xd9\xac\x8a\x96\xca\x4f\x79\xd3\x78\x2e\x33\xff\xe5\xd7\x9c\x7f\xdd\x91\x50\x82\x32\x6f\x69\x44\x69\xa3\xb3\x95\xad\xaf\x2c\xd2\x73\x1f\x10\x56\x27\xef\x2a\xf0\x22\xf1\xa6\x3c\xa4\xb4\x52\xfd\xb1\xc9\x2a\xf1\xb6\xc9\x35\xab\xb2\xb7\x75\xa0\x09\x90\x76\x82\x5f\xfd\xea\x57\x83\xbf\xfa\xab\xbf\x4a\xe8\xe9\xd3\x14\x9c\x48\xd7\x17\x2f\x5e\x4c\xce\x9e\x3d\x2b\xf1\x96\x64\x95\xea\x73\x9d\x77\xb0\xca\xef\xc9\xc3\x36\x40\xf1\xee\x5b\x28\x60\x21\x7e\x40\x05\x57\x02\x66\xbd\x0a\x38\x2d\x84\x6f\x48\x2c\xcb\x79\x3b\x35\xfb\xef\x08\x74\x00\x90\x2f\x1a\x79\xf8\xf0\x21\xae\x5f\xbf\x6e\x93\xdb\x56\x57\x6d\xf5\x8a\x86\x3a\x03\x27\x5b\xbe\x2e\xfa\x83\xf0\xe7\x32\xe6\xef\xc5\x81\x4b\x1d\xf4\x2a\x65\xce\x83\x2b\xbd\xef\xa8\x4d\x2a\x7c\x9b\x8c\xae\xd1\x55\xa9\x22\x65\x95\x82\xff\x4d\x81\x8b\x46\xd4\x4c\x82\xf6\x93\xdb\xed\xb3\xa7\x77\xda\xbf\xb0\x30\x6c\x3c\x1b\x68\x90\xfd\x5a\x60\x5d\x79\x23\x4e\xe7\x94\x4e\x52\xae\x69\x2d\x51\x80\x72\x6e\x08\x27\xf0\x65\xf2\xd9\x40\x95\xb1\xb8\x70\x03\x92\x86\x4e\xba\xad\xc9\xce\xfb\xcb\x83\x2b\xd7\xd6\xfa\x6f\x7f\xb0\x34\xba\xd9\x6f\x26\x3b\x50\xe8\x2a\xe4\x3e\x2d\xc6\xda\x92\x9f\x67\xc2\x76\xc2\xa5\x1b\x56\x15\x3a\x13\xad\x35\xde\x7e\xfb\x6d\x00\x00\x01\x2d\x80\xfc\x8d\x5d\xa0\x82\xa7\xb3\xf1\x71\x75\xd6\xf4\xba\xaa\xe3\x75\x29\x89\xaa\xce\xda\x26\xb3\xab\x93\xe6\xfc\x6c\xe0\x46\x92\x49\x52\xe6\x3e\x8a\xc5\xa7\x4c\x6c\x6d\xd1\xf5\xfd\x7c\x3a\x15\x4e\x5b\xa5\x84\x5d\xdf\x52\x7a\x07\xfe\x8c\xf2\xb5\xd5\x0d\x9b\xd2\x96\xe2\x5d\xba\xc8\x96\x7f\x1d\x85\xef\x2a\x33\xfe\x0e\xf9\x77\xbb\x74\xe9\x12\x80\xb2\xf5\xc4\xe6\x20\xfa\xfc\xf3\xcf\x07\x40\xa9\x6d\x4a\x79\xf2\xb8\xaa\x50\x05\x3e\x7c\xfb\x02\x49\x1e\x4a\x5b\x05\x40\x13\x60\xea\x32\xc0\x79\x33\xe7\xe5\x00\xc8\x2d\xf3\x86\x26\x20\xb4\xf9\xb5\x43\x2e\xde\xf6\xf2\x3f\x06\x6c\x72\xff\x23\x00\x38\x7a\xf4\xa8\x8d\x1f\xbf\xb6\xe5\xcf\xe9\x28\xad\x0b\x99\xa8\x02\x6f\x00\x00\x20\x00\x49\x44\x41\x54\x98\xf0\xb6\xe0\x93\x8f\x44\xeb\xd2\x91\x94\x9f\x0b\x8c\x99\x50\x6b\xaa\xc8\xa7\x32\xb9\x40\x86\x0f\x5f\x5f\xa5\xc6\xd3\xd6\xa6\x11\x56\x11\x4d\x97\x3c\x67\xdb\x62\x07\x50\x9d\xf5\xbd\x68\xe3\xd3\xb7\x96\x7e\xed\xe4\xe3\xd6\xaf\xb4\x63\x75\x52\x41\x85\x56\x3f\x13\x3f\x4c\x91\x11\xa7\x3c\x4a\x69\x1c\x48\xc6\x3a\x2b\xf5\x13\x5a\x7a\x94\x40\x27\x7b\xad\xc9\xf6\xad\x95\x14\xb4\xdc\x5b\x1c\xbd\x3f\x68\x4e\x76\xb2\xe5\xce\x5d\xba\x23\x2e\xd8\xea\x21\x76\xd6\x90\x69\x88\xf9\xaa\x21\xcb\xb6\xfd\x55\x80\xd3\xa7\xf3\xaa\x53\x17\xaa\xea\x8f\xd4\xc9\x55\xd5\x4d\x97\x8c\x36\x5a\x1f\x79\x7c\x47\x55\x92\x1c\x55\x6d\x4c\xe2\x2f\xbd\x8b\x4b\x1e\x97\x8c\xb3\x84\xaa\xf7\xf2\x69\xfb\x55\x69\xab\xf2\xac\xea\x84\x7c\xca\xb0\x4a\x1e\x17\x3f\x57\x3a\x5f\x3a\x2f\x79\xce\x9f\x3f\x1f\x5c\xba\x74\x29\x39\x7f\xfe\x7c\x00\x00\x97\x2e\x5d\xf2\x29\x1f\x97\x2c\x36\xe0\x50\xc5\xb3\xee\xb7\xf1\x29\x7f\x91\x67\xa3\xd1\x08\x3e\xfe\xf1\x8f\xe3\xfc\xf9\xf3\xe0\x96\x12\x66\x55\x31\x7d\x04\x77\x27\x08\xc2\x89\x0a\xe7\x47\x41\xb4\x30\x6c\x74\xe6\xc6\x8d\x85\xe6\x44\x75\x14\x10\x2a\x8d\xc0\x28\xe5\x44\xe9\xd1\xb8\xa1\x7b\x83\x66\xd2\xdd\x8f\x26\x83\x5e\x33\x19\x8d\xc2\x64\xa4\x55\x49\x2f\xd2\xa5\xe7\xe6\x3d\x4a\x1d\xfd\xce\xce\x0e\xfe\xe2\x2f\xfe\x42\x2a\x33\xdf\xfa\x5d\xb7\x9f\xae\xd2\x25\xae\x30\x8b\x0e\x70\xc9\x17\x00\xf6\x7d\x5c\x6c\x68\xde\x57\x28\x1f\xa4\x66\x43\x5e\x3c\xce\x55\xc0\x2e\x1e\x52\xfa\x42\xe0\x28\x9a\x9e\x47\x14\x40\xb5\x3b\xa3\x60\xe9\x99\x87\x73\x2f\x1c\xdf\x8b\x7e\xbe\x15\xab\x93\x30\x5b\xfa\xdb\xf6\x4d\x11\xe3\x6d\xe6\x0d\x8b\x13\x97\xc5\x71\x97\xae\x06\xe2\x22\x14\x2d\x39\xd3\xd4\x2e\x3c\xc3\x77\x6e\xe2\x74\x89\xd2\xc9\x5e\x34\xd9\xbe\xb9\x3a\x78\xe7\xdd\x63\xbd\xb7\x37\x17\x46\x37\x87\x61\xb2\xab\x81\xae\x42\xbe\x23\x6e\xbe\x82\x88\x2d\x75\x36\xdb\x85\xf3\x11\x45\x7e\x48\xe2\x3b\xef\xbc\x03\xad\x35\x16\x16\x16\x82\x6e\xb7\x0b\xd8\x1b\x83\x84\xb8\x5d\x60\x86\xf3\xb0\xa1\x7d\x5b\xe3\xa0\xbc\x25\x10\x6d\xcb\x43\x4a\x53\x35\x8a\xe0\x41\x92\xcf\xd5\xb9\xd9\x64\x90\x46\x52\x52\x5e\xb6\xb6\x28\x75\xd8\xb6\x32\xe5\xef\x2e\xd1\xbb\xe2\x6c\xcf\xab\x78\xd5\x01\x20\x34\x0d\xe7\x2d\x3d\xf7\x91\x55\xe2\x53\x07\x40\xfa\xa6\xa7\xe9\xb8\x5e\xad\x92\xd1\x1b\x04\x19\xa0\x62\x01\x2c\x2e\x7e\x3e\x75\xb9\x94\x9f\x40\x67\xeb\x33\x6c\xf1\xb3\xc8\x52\x08\x93\xc9\x24\x79\xed\xb5\xd7\x70\xe1\xc2\x05\xda\x5e\x02\xa0\xe4\x3e\x10\x20\x3d\x22\x21\x00\x10\x86\x13\x84\x2b\xfd\xe6\xd2\xfc\xb0\xb1\x3a\x3f\x6a\xac\x2e\xf7\x1b\x6b\xcb\xfd\xe6\xfa\xc2\xb0\x71\x2c\x9a\x04\x4b\x81\x46\x04\x20\x50\x48\xc1\xcb\x44\xe9\xc1\x30\x4c\xb6\x7b\xd1\xe4\xe1\x6e\x6b\xb2\xfd\x78\x2e\xde\xda\x6b\xc5\x9b\x7b\xed\xc9\xf6\x6e\x6b\xd2\x1d\x84\x13\xb3\x3d\x84\xb1\xb0\x14\x8e\x53\x30\xcf\xb4\xd6\x09\x00\x2c\x2f\x2f\xdb\xde\xcf\xb7\x7e\xfb\x80\x1c\x9e\xce\x17\xd4\x9b\x67\x3e\x7d\xb3\x44\x2f\xe5\x57\xfa\xf6\xb6\x7e\xed\x20\x23\x25\x89\x87\x2f\x4a\xab\xa3\xd8\x68\x1c\x2c\xe9\x0a\x1f\xe7\xdc\xb9\x73\xc1\xd5\xab\x57\x93\xcc\x4b\xbc\x50\x31\xcd\x56\xfe\x48\x37\x99\x6b\xb7\x62\xb5\x7c\xf6\x51\xfb\xe9\xf3\xef\x2f\xfd\xe6\xd1\xfd\xe6\x97\x03\x8d\xb6\x6d\x9b\xfc\x62\x48\x21\xc1\x14\x18\x08\x7b\xd5\x96\x9c\x49\x8a\x10\x83\x83\x14\x94\xf8\xa0\xb4\x4b\x9d\x94\xc6\x2e\x9d\x1d\xd4\x64\x5b\xf8\x63\xaf\x3d\xd9\xbe\xb1\xda\x7f\xf3\xca\xb1\xfe\x9b\x9b\x0b\xa3\x3b\xe3\x50\xef\x20\x9b\x12\x62\x67\x0f\x0d\x90\x2d\x7b\x06\x39\x88\x8d\x6d\x5a\x65\x80\x0b\x2e\x5e\xbc\x98\x7c\xe9\x4b\x5f\x0a\xfe\xee\xef\xfe\xae\x6e\x27\x57\x55\x87\xea\x80\x19\x9f\x7b\x29\x4f\x54\xdc\xdb\x80\x8e\x4d\x6e\x57\xc7\x2b\xbd\x8b\x4b\x06\xdf\xd1\xa6\x8b\x1f\xa7\xe1\xe0\x09\x02\xbd\x0b\x00\xfa\x2a\xc6\xba\xed\xbe\x0a\x98\x56\xf1\xa8\x0b\x78\xaa\xc2\x61\x8d\x3c\x7d\xf5\xe4\x2c\xf9\xd4\x05\x92\xb6\xfa\x7c\x18\xef\x59\x15\xea\xe4\x33\x73\xb9\x0a\x87\x54\x96\xfe\xb4\xd6\x81\x82\x0a\x03\x8d\x28\x9a\x04\xd1\xc2\xb0\xb1\x70\x64\x10\x6e\x3c\xb5\xdd\x3e\xb7\xd6\x6d\x3e\xdf\x19\x35\xce\x34\x27\x6a\xa3\x91\xa8\xd5\x40\x63\x29\xf3\x7f\xa4\x40\x08\x00\x12\x0d\xf4\x12\xa5\x7b\x89\xc2\x6e\xdc\x48\xee\x75\x5b\xc9\xd5\x07\xf3\xa3\xcb\x1f\x2c\x8d\x6e\x3c\x9c\x1f\x6f\xee\x47\x93\x9d\xfd\x68\xd2\xd3\x01\xcc\x4e\xc6\x66\xbb\x88\x98\x59\x60\xf2\x5f\xc1\x5a\x4d\x69\x0e\x23\xcc\xd2\xa6\xea\xe8\x3f\xce\x0b\x8e\xe7\x85\x3c\x95\x25\x43\x2e\x98\x6f\x25\xae\x52\xe6\x2e\x85\x28\x29\x5f\x4e\x57\x25\x9f\x14\x0f\x00\xc9\x33\xcf\x3c\x13\x7c\xf1\x8b\x5f\x2c\xa4\xe5\x9b\xcc\x69\xad\x23\x05\xd5\x0e\x13\xb5\xb0\xbe\xd7\x3c\x79\xfe\xf6\xe2\x2f\x9f\xde\x69\xff\xdf\xcd\x89\x5a\x37\x87\x1e\x02\xf2\x5e\xd3\x25\xfc\x21\x9d\x8c\x68\x1e\x31\x32\x6e\x74\xe1\xe0\x22\xcf\x43\xf0\xa9\xa9\xb2\xaa\x4c\x1d\x82\x39\x38\x92\xad\x3a\x1a\x40\x2f\x4a\x76\xae\xad\xf5\x5f\xff\xf1\xf1\xfd\xd7\xb7\xe6\xc7\x77\xb2\xd3\x9d\xf3\x25\xcf\xe4\x9a\x1f\x7b\x6f\x3b\xd5\x59\x6a\x68\xbe\xe1\xa0\x8a\xb0\x8e\xc2\xf6\xe9\xfc\x67\x91\xe7\x30\x3a\xa4\xff\x2c\xfc\x0f\x92\xd6\x47\x7f\x54\x75\xba\x75\x01\x08\xd7\x31\x2e\x5a\x5b\xa8\x53\xbe\x36\x65\x0e\x21\xde\xc5\xcf\x07\x34\xce\x22\x1f\xe7\xed\xd2\x9f\x55\xd7\x46\x9e\x83\x96\x8f\x2f\x8d\x6f\xfd\xb1\x96\x77\xbb\xdd\x0e\xcc\x4e\xe9\xb6\x53\xb5\x4d\xbf\xa0\xb5\x0e\x15\x54\xd8\x9c\xa8\x68\x69\x18\x2e\xad\x77\x9b\x27\x9f\x7c\xd8\x7e\xf6\x78\x37\xfa\xd4\xdc\xb8\xf1\x62\x38\x51\x27\x03\x8d\x05\x05\xd5\x56\x59\x9e\x1a\x45\x3d\xcd\x17\x54\x68\x20\xd1\xd0\x23\xad\xb0\x1b\x07\xfa\xde\xa0\x99\x5c\xd9\x99\x8b\xdf\x78\x7f\x79\xf0\xfa\xcd\xd5\xc1\x8d\x9d\x76\xbc\x33\x6e\xa4\xab\x30\x35\xf2\xad\x23\x0a\x03\x41\xfa\x6e\x93\xc9\x04\xdf\xf9\xce\x77\x66\x29\x6f\xdf\x72\x9d\x05\x88\x1c\xa4\xbd\xf2\x38\x31\xff\x50\x78\x48\x83\x88\xf4\x84\x6b\x1a\x67\xd0\x6a\x55\x7a\x4a\x2f\xf1\xa4\x32\xb9\xe2\x5d\xa0\x25\x01\x80\x8d\x8d\x8d\xe0\xda\xb5\x6b\xc9\x17\xbf\xf8\xc5\xbc\x92\x12\x39\x83\x6c\x93\xb9\x40\x29\x15\x2a\x8d\x68\x61\xd8\x58\x7e\x6a\x7b\xee\x85\x8d\xdd\xd6\x17\x9a\x93\x60\x1d\x40\x69\x45\x90\x22\xb8\x44\x4b\xfb\xf4\xe7\xc7\x37\xcb\x8e\x2f\xb9\xb3\x2c\x77\x54\x31\xc6\x98\xf2\xce\xfb\x05\xfe\x74\x15\xd0\x14\xc5\x14\x23\x54\xe1\x84\x87\x22\xe2\x51\x05\x91\x75\xe6\x88\x8b\x64\x10\x26\xbd\x5b\x2b\x83\xb7\xdf\x38\xb1\xf7\xda\x76\x27\xfe\x60\xa2\x74\x17\x7a\x0a\x56\xc8\xae\xb8\xf4\xb0\xc4\x11\xd2\x65\xcf\x31\xb5\xb2\xd0\xfd\x59\xe2\x38\x2e\x95\x01\xe4\x6f\xcf\xbf\x67\x1d\xa5\x29\xd1\x49\xcf\x6c\x75\xbe\x0a\x88\xbb\x82\x4f\x87\xc5\x69\x5d\x83\x06\x5b\x1e\x9c\x9f\x6f\x79\xd9\xf8\xbb\x06\x25\xb4\xbc\x5c\x69\x5d\xf2\x55\x7d\x57\x54\xc4\xd9\xf8\xf1\x6b\x9b\xbe\x70\xf1\xf5\x0d\x55\x1d\x03\xa5\x91\xbe\xa7\x4b\xcf\x19\x1e\x3e\xef\x6e\x4b\xe3\x03\x54\x5c\x74\xae\xf2\x72\x7d\x33\xdf\x7e\xc1\x87\xf7\x41\x68\x24\x79\x38\xe0\x03\x50\x3c\xde\xc5\xe2\x64\x1b\x1a\xd0\x12\x40\x45\xad\x38\x68\x1f\xeb\x36\xd7\x3e\xf4\xa0\xf3\x91\x33\x3b\xad\x2f\x75\x46\x8d\x0b\xe1\x44\x6d\x28\xa0\xa3\xa0\x02\x3e\x00\x54\x48\xa7\xee\x81\x6c\xa8\xcb\xfa\x01\x05\x04\x0a\xaa\xad\x35\xda\xd1\x44\xad\x35\x27\xea\x5c\x67\x14\x7c\x7a\xa5\x17\xbe\x7e\x7c\x2f\xfa\x87\x1f\xaf\xf7\x5e\xbb\xb7\x34\xbc\x37\x68\x26\x83\x24\x9d\x7e\x37\xf2\x99\x41\xa1\x59\xa6\x1e\x00\x48\xb2\xe3\x1d\x52\xa2\x20\x08\x92\x24\xf1\x2d\x33\xa9\x7e\x56\xb5\xc9\x59\xfa\xeb\xc3\xf8\x96\x94\x7f\x00\xa4\x87\x2c\x02\xc5\x81\xbd\x21\xd2\x35\xae\x69\x50\x59\x06\xfc\x19\xa5\xa7\xcf\xb2\x3e\xb3\xc4\x8f\xcb\x44\xe9\x5d\xf7\x26\x5d\x1e\xdf\xed\x76\xf5\xcb\x2f\xbf\x5c\xa8\xa4\xd9\x4e\x90\xe6\xf0\xc4\x86\x52\xaa\x05\x8d\xb9\xf6\x38\x58\x3c\xb5\xd3\xfa\xd0\x0b\xf7\x16\x7e\x65\x71\xd8\xb8\x10\x40\x35\xcc\xea\x1c\x71\xe5\x90\x46\x76\xe8\x20\x64\x03\x8b\x2a\x02\x06\x9e\xbc\x74\x67\x7e\x44\x2f\xdc\xe2\x6d\x4e\x43\x91\x4d\xda\x72\x08\x11\x4b\x6b\xc4\x21\x24\xa6\xb0\x86\x61\xb2\x7f\x77\x79\x78\xe5\xfb\xa7\xf7\xfe\xd7\xc3\x85\xf8\x6e\xa2\xb4\xf1\x63\xe9\x22\xf5\x69\xd9\xc7\xd4\xa7\xa5\x8f\x29\x60\x19\x29\xa5\x0a\x3e\x2d\x99\x3f\x8b\x7e\xe5\x95\x57\x92\x4f\x7e\xf2\x93\x8a\x8c\x0a\x78\x3d\x30\xf5\x85\x8a\x09\x81\x56\xb1\x74\xf4\x3a\x20\xbf\x9c\x97\xab\xde\x05\xc2\x2f\x37\xa4\xb9\x40\x82\x8d\x37\xad\x83\x92\x7c\xe6\x1a\x02\x0d\xe7\x1b\x30\x7e\xbc\x5d\x28\x4b\x3a\x45\x9e\xb9\xda\x37\xff\xe5\x72\xf1\xc0\xe5\xa1\x81\x56\x29\x1e\xa4\x36\x2e\xc9\xe3\xca\xcf\x15\x6c\xcf\xab\x74\x97\xad\xfc\x6c\x81\xcb\x22\x95\x2f\xaf\x9b\xbc\x1e\x71\x7e\x36\xc0\x6c\xfb\x66\xfc\x19\x2a\xe2\xe9\xb7\xaa\xfa\xbe\x52\x5e\xbc\x9d\x54\xc9\xc6\xe3\xea\x7e\x77\x57\xdf\xe2\xe2\x69\x6d\x8f\x41\x10\xa8\x17\x5f\x7c\x51\xfd\xea\xaf\xfe\xaa\xa9\xa3\xd4\xe2\x62\xac\x2d\xf9\x4e\xe9\x01\x54\xab\x33\x0a\xe6\xcf\x6e\xb7\xcf\x7c\xfc\xee\xe2\xe7\x4e\xef\xb4\x7e\x7b\x7e\x14\x7e\x36\xd4\xea\x78\x3a\x1d\xa4\x4a\xea\x37\x1f\x8c\x66\x31\x74\x87\x72\x95\xe9\xe6\x29\x4d\xaa\xad\x95\x56\xcd\x00\xea\x48\x34\x51\x67\x16\x87\xe1\x73\x1b\x7b\xd1\x91\x56\xa2\x76\xf6\x5a\x93\xfd\x71\x98\x24\x1a\xd0\xd3\x3e\x21\x35\x9d\x67\xbb\x21\x6b\xa5\xd2\x93\x32\x2f\x5c\xb8\xa0\xce\x9f\x3f\xaf\xae\x5f\xbf\x8e\x7e\xbf\xcf\xeb\x92\x4f\xdb\xa1\x7a\xcd\x56\xc6\xe6\xda\x56\xfe\x55\x79\xd0\xbc\x7c\xeb\x9d\x24\x9f\x36\x11\x80\xbd\x51\xf1\x67\xbe\xe8\x49\x44\xbb\x15\x61\xd6\x51\x12\xb5\xf0\x38\xd3\xa9\xec\x30\xb1\xec\xc3\x07\x60\xfb\xb5\x04\x1a\xed\xb5\xfd\xe6\xc6\x87\x1f\x74\x7e\x76\x69\x10\x5e\x08\xc8\x7e\x2d\xa5\xd2\xe4\x20\xa4\xca\xbd\x84\x59\x4b\x4a\xe4\xb6\x4f\xe9\x04\x3b\x16\x5a\x0b\x11\x1f\x19\xd0\x30\x6c\x26\xdd\xdb\xcb\xa3\x77\x2e\x9d\xda\xfb\x9f\x5b\x0b\xe3\xf7\x35\x74\x57\x29\xb5\x0b\xc0\xfc\x99\x95\x44\xc6\xda\x32\x02\x30\xa0\x4b\x9e\xb5\xd6\xb9\x3f\x8b\x71\xc2\x05\x80\x1b\x37\x6e\xd0\xac\xa4\xef\xc3\x47\x3e\xe6\xda\x55\x97\x02\xf6\x2b\xf1\xb6\x59\x04\xa4\x67\x34\x3d\xa7\xab\x0a\xbe\x7c\x6d\xef\x23\xbd\x0b\x4f\xeb\x23\x97\xcb\xa2\xe9\xca\x97\xde\xd3\x32\xb0\x95\x31\xa7\xf1\x6a\x7f\x8e\x67\xae\x3a\xc1\x2d\x3e\xb3\xe8\x16\x9e\x47\x1d\x0b\x01\xcf\xb3\xae\xf5\xc6\x65\xb1\xf2\x49\xe3\xa3\xa3\x7f\x1a\xf2\xb8\x64\xa8\x63\x65\xf9\x49\xc4\x57\xa6\x4b\x92\x24\xf9\xd1\x8f\x7e\x54\x28\x53\x66\x71\x09\x01\x44\x4a\xa9\xb6\x52\x2a\x3a\xba\xdf\x5c\xfe\xe4\xed\xc5\x0b\x17\xde\x5f\xfa\xe6\x89\xdd\xd6\xff\xdb\x8e\x1b\x2f\x05\x48\xb7\xc2\x28\x0c\x1e\x49\x26\x79\x8f\xaf\x8b\xf1\x1a\xc8\xa7\x8b\x4a\x41\x19\x01\x54\x3b\x9a\x04\xe7\x56\x06\xe1\x6f\xbd\x70\x6f\xe1\xff\xfb\xf4\xad\xa5\x9f\x39\xd6\x8d\xd6\x1a\x09\x3a\x00\xda\x99\xff\x65\x48\x66\x07\xf8\x3b\xe0\x1b\xdf\xf8\x46\x55\x99\xf8\xb4\x9d\xba\xd6\xb6\xaa\xc0\xf3\x94\x74\x6c\x15\xcf\x52\x7c\x03\x32\xca\x91\x46\x7b\x12\xea\xb6\x85\xaa\x11\x57\x15\x8f\x2a\x3a\x8e\xac\xad\xc8\xfb\xf7\x7e\xef\xf7\x82\x4f\x7d\xea\x53\xa9\xd1\x64\x0a\x92\x1b\x99\x6f\x4b\xd3\xfc\x29\xa5\xda\x2b\xbd\xf0\xd8\xb3\x0f\xe6\x3f\xfd\xe4\x76\xfb\xbf\xb7\x26\xea\xb4\x22\xe6\x12\x83\x9a\xe9\x14\x4e\x3e\xd4\x62\xa0\x84\xbe\x30\x9d\xc1\x91\x67\x8d\x32\x2a\xc2\x73\x9a\x67\x7a\xce\x08\x30\x45\xec\x25\x0b\x8c\x39\x8f\x84\xe4\x9f\xc6\x01\x5a\x29\x26\x8f\x2e\xbc\x83\xce\xe2\xfa\xcd\x64\xf7\xfd\xe5\xe1\xe5\x1f\x3d\xb1\xf7\xea\xbd\xa5\xd1\x6d\xad\xd0\x05\xd4\x2e\x54\x6e\x69\xc9\x4f\x78\x56\x4a\xf5\x95\x52\x43\x00\x43\xb0\xdd\x70\xd5\xf4\xcc\x13\xad\x94\xca\xb7\xee\xbf\x71\xe3\x86\xd2\x14\xc9\x94\x0b\x40\xfa\x96\x7c\x54\x6f\xab\xa3\xae\x91\xa3\x2d\x8d\xe1\x2f\x59\x0e\x6c\xf2\xf0\x34\xe6\xb9\x64\xe5\x71\x05\x89\xb7\x16\xee\xab\xd2\xd8\xac\x1e\xb6\x34\x5c\x6e\x9f\x7c\x7c\xf2\x70\xc9\x6d\x82\xd4\x9e\xa5\x6b\xfa\x0b\x0b\x6d\x5d\x0b\x89\x6f\xde\x2e\xde\x55\xa3\x50\xdb\xa8\xd6\x27\xcf\x2a\xf9\xab\xf2\x76\x5d\x57\xc9\xe2\x23\x53\x1d\x7e\xf4\xda\x57\x6e\xda\xbf\xf0\xbe\xc6\x95\xd6\xbb\x1c\x3e\xfb\xd9\xcf\x06\xb7\x6e\xdd\xd2\xc4\xaf\x45\x01\xb9\x2f\x4b\x03\xc5\x9d\xd2\xa3\xf5\xbd\xe8\xe8\x47\xef\x2d\x7c\xf6\xdc\xd6\xdc\xff\xb5\x34\x0c\x3f\xdf\xd0\x58\x93\x2c\x2c\x26\x50\x95\xac\x24\x02\xb0\x7e\x80\x29\x71\x45\x98\x28\xa0\x19\x4e\xd4\x89\x85\x51\xe3\xf4\xfc\xa8\xb1\xdf\x8f\x92\xc7\xfd\x66\x32\x9a\xa8\xfc\xbc\x28\x9d\xbd\x83\xa8\xa3\x2e\x5d\xba\xe4\x2a\x3f\x5b\x3d\xad\x6a\xb7\xf4\xba\x6e\x1d\xac\xdb\xa6\x5c\x79\xe7\xd7\x8d\x0a\xa1\xe9\x94\x0f\x57\xd6\x55\x0d\xce\xc6\x8f\xf2\xb2\x05\xa9\x43\xe0\xcf\x0d\x4f\xe9\x63\xe4\xf7\x3f\xf8\xc1\x0f\xf4\xf9\xf3\xe7\x15\x43\xd7\x0d\x00\x4d\xad\x75\x53\x29\xd5\x04\x30\x17\xc5\x6a\xfe\xcc\x4e\xfb\xf9\x67\x1f\x74\x7e\x71\x71\x18\x7e\x22\x80\x8a\x8a\x55\x2b\x33\xfb\x71\x90\xa2\x88\xe9\x8f\x36\x57\x3a\x5b\xa3\x8a\xbf\xc5\x7a\x5b\xac\xe5\x53\x33\xa2\xc9\x2f\x3b\xdc\xcc\x00\x1b\xb6\x89\x5d\xbe\xab\x63\x9e\xde\x2c\xb1\x2e\xc6\xa3\xc0\xd3\x14\x90\xc6\xa0\x99\xec\xde\x5e\x1e\x5e\x79\x6b\xa3\xfb\xda\xbd\xa5\xd1\xcd\x49\x80\x5d\x0d\xbd\x4b\xa6\x88\xf2\x03\x13\x91\x59\x5a\xb2\xa5\xcf\xb9\xc7\x3b\x39\xdd\x19\x48\x01\x0c\x5e\x7d\xf5\x55\x6c\x6f\x6f\xab\xc9\x64\xa2\x33\xd0\x52\x57\x79\xd5\x4d\xc3\xff\x24\x65\xc8\xc1\x8a\x4d\x41\x07\x96\xf4\x26\xd0\x67\x7c\x0a\xac\xaa\x43\xae\x7a\x87\x2a\x25\xee\x2a\x1f\xa9\x2d\x98\x78\xc0\x5e\x96\xb6\x3c\x25\xe5\xe2\x23\xb7\x04\xf0\x60\x89\x83\x10\xc7\xbf\x0d\xbd\xb6\xf1\x90\x82\xd1\x21\x1c\x08\xd9\x78\xd7\xcd\xd3\xf6\x2d\xaa\xd2\xf9\xea\xce\x59\xe5\xf6\x95\x85\x7e\x33\x4e\x23\xa5\xa3\xa1\x4a\x16\x5f\x59\xa5\x6f\xee\x93\xd6\xbc\x63\x25\xad\x01\x2d\x40\x6e\xa1\x08\x30\xb5\x5a\x14\x8e\x77\x39\xda\x0d\x57\x9e\xdf\xec\xfc\xcc\x53\xdb\xed\xaf\x2d\x0c\xc3\x0b\x0d\x8d\x23\x4a\x2b\x71\x47\x71\x13\x0a\x71\x59\xae\xd2\x6c\x7d\xde\x0f\x64\xfc\x94\x26\x40\x27\xa7\x57\x50\x50\x8d\x30\x51\x6b\x73\xe3\xc6\x89\xce\xb8\x31\xec\x47\xc9\x76\xaf\x95\x0c\x92\x20\xd5\x35\x14\xb4\x90\x2d\x35\x34\x90\x02\x97\xd3\xa7\x4f\xab\xdd\xdd\x5d\xdb\x37\xf6\x69\x33\x55\x75\x1d\xc2\xf3\x83\xb4\x23\x57\xfd\x12\x07\x86\x36\x8b\x8b\x69\x30\xbc\xd2\x4a\x95\xc5\x16\x38\x5f\x29\x0f\x5b\x23\x93\xf2\x96\xf8\x57\xf9\xd2\xd0\xb3\x88\x0c\x78\x09\x0c\x60\xc9\x40\x4b\x0b\x40\xfb\xc4\x6e\xeb\xf4\x87\x37\xe7\x7f\xfe\x78\xb7\xf9\xd9\x66\xa2\xd6\x4c\x27\x6f\xab\xac\xc5\xd7\x32\x35\x32\xcb\x58\x95\xd3\x14\xf8\xa8\xf2\x33\xa0\x08\x48\x0a\xf4\xc4\x54\x63\x56\x37\x71\xe9\xa6\x57\x4a\x60\x00\x91\x73\xbf\x99\xec\xde\x3e\x32\xbc\x7a\xf9\xf8\xfe\x8f\xee\x1e\x19\x5d\x1f\x37\xf4\x63\x9d\x82\x95\x3d\x4c\x9d\x71\x0b\xa0\x05\xd3\x3d\x5a\xb8\x4f\x0b\xb2\x6b\xbc\xf2\xca\x2b\xc9\xce\xce\x8e\x1a\x0e\x87\x26\x6b\x5e\x67\x68\xc7\x26\xc1\x39\x6d\xa1\x73\xa5\x31\x75\x41\x5b\xe8\xcc\xbd\xcb\xd7\x80\x77\xb0\x94\x9e\x7e\x35\xfe\x2c\x60\x74\x5c\x66\x2a\x03\xcd\x4f\x7a\x07\x1a\x27\xbd\x37\x37\xb5\xda\x9e\xf1\x32\x30\x7c\xe9\x2f\x4f\x4f\xf3\x96\xbe\x85\xad\xec\xe9\xfb\xf1\x6f\x00\x46\x73\xd0\x50\xa7\xd3\xa7\x4e\x87\x3e\xfa\xc4\xf6\xdc\x27\x7e\x16\x1d\xe6\xca\xd7\xa6\xdf\xaa\xd2\x51\x59\x7c\x2c\x3b\x55\x6d\x43\xd2\xff\x3f\xe9\x50\xd5\x37\xc0\xe3\x79\x21\x9c\x3f\x7f\x5e\x65\xf4\xf4\x2f\x44\x3a\xfd\xd2\x52\x4a\x45\xcb\xbd\xf0\xc8\xf3\x9b\xf3\x9f\x7a\xea\x61\xfb\xab\x4b\xc3\xf0\x7c\xa8\xd5\xb2\x9a\x2a\x5e\xab\x4e\x2f\x34\x0a\x95\xaa\x6a\x5b\x23\x31\xbc\xe8\x35\xa5\x99\xa2\x7e\xd5\x08\x13\xb5\xdc\x8e\x1b\x2b\x61\x82\xfd\x6e\x6b\xb2\xb5\xdf\x9a\x0c\x32\xf5\x6f\x7c\x5c\x0c\x88\xc9\xeb\xf7\xf9\xf3\xe7\xd5\x3f\xfd\xd3\x3f\x49\x7e\x79\x5c\xff\xd8\x06\x3a\xb6\x3a\x2b\x0d\xa4\x68\xf0\xf9\x16\xb3\xd4\x1d\x51\x1e\x6e\x71\xa1\xa3\x48\x09\x85\xfb\x08\xee\x42\x77\xbc\x21\x71\x34\x65\x33\x05\xf2\x91\x9f\xab\x03\xd2\x40\xba\x13\xe4\x57\xbf\xfa\xd5\x14\xd0\x66\xbe\x2d\x5a\xeb\x86\x52\x2a\x24\xe6\xc1\x36\x80\xb9\x23\xfd\x70\xe5\xdc\x56\xe7\xc2\x93\x3b\xed\xcf\x77\xc6\x8d\x67\x94\x46\x98\xd2\xa3\x34\xb5\x53\xd2\xd6\x19\xb4\x2e\x54\x3c\x8d\xf2\x99\x42\xf4\xf0\x32\x94\xea\x2e\x54\xc6\x87\xf7\x1a\x39\xfd\xf4\x78\x7a\xf2\x4c\x4d\x4f\x9c\xc6\x54\x56\x03\x9e\xcc\x4d\xf1\x1d\xd2\x9a\x3f\x08\x93\xee\xdd\x23\xc3\x6b\x57\xd6\x7b\x6f\xdc\x3d\x32\xba\x36\x0c\xf5\x23\x28\xd5\x55\xe9\xdf\x1e\x9b\x1e\x1a\x28\xa5\x46\xd9\x5f\x61\x37\x5c\x64\x53\x44\x40\x71\x7a\x28\x8e\x63\xda\x89\xd1\x40\x1b\x92\x64\xd5\xe3\xf5\xad\xce\x35\x2d\x32\xe9\x99\xa4\xd0\xf9\x33\x9e\x9e\x82\x75\x9e\xaf\x2d\x2d\xcf\x5f\x6a\x2f\xb3\xbc\x83\x94\x8f\xeb\x19\x30\x6d\x2b\x55\x9d\x5c\x95\xdc\xbe\x74\x9c\x9e\x86\x2a\xd3\xb2\xed\xb9\x8d\x8f\x8b\x1f\xb7\xee\xda\x3a\xe0\x3a\x83\x31\x1f\xb9\x69\xa0\xca\x5e\xb1\x7b\xcd\x68\x38\x6f\xc5\xfe\x7c\xd3\xd1\xbc\x60\xa1\x91\xde\x89\xcb\x5b\xf5\x4d\x5d\x56\x41\x97\xde\xf7\xb9\xb6\xf5\x37\xb6\x6f\x6c\x7b\x27\x0d\x14\x76\x49\x57\x99\x4f\x6b\x03\xd3\x01\x6c\xa4\x94\x6a\x35\x12\x74\x9e\xbb\x3f\xff\xb1\x73\x5b\x73\x5f\x5d\xee\x87\x9f\x6e\x26\x6a\x0d\x50\x41\xda\x81\x64\x8c\x34\x80\x7c\xc5\x10\x2d\x95\x54\xc9\xf2\x42\x57\x26\x11\xb3\x8a\xe7\x56\x92\x62\x47\x02\xd3\xe7\x20\xb3\xaa\x2b\xa8\xb0\x91\xa8\xa5\x68\x12\x34\xe3\x86\x7e\xd4\x6d\x4d\x1e\x0e\x9a\xc9\x08\xa9\xce\xd5\x19\x2f\x73\x9d\xfb\xeb\xbe\xf4\xd2\x4b\xea\xb5\xd7\x5e\x93\xea\x7d\x41\x6a\x4b\xb9\xda\xe8\x29\x46\xb3\xd5\xd7\x3a\xdf\xd8\xb7\xfd\x8b\xf1\xd4\xfc\x6d\x2a\x02\x75\xc4\x92\x1c\xb9\xaa\x1c\x68\xea\x38\xe7\xd5\xe5\x4d\xe5\x72\x86\x4b\x97\x2e\x25\x5a\x6b\x68\xad\x5d\xa7\x3f\x87\xe1\x04\xed\x93\x8f\xa3\xa7\x9f\x78\x1c\x9d\xef\x0c\x83\x73\x4a\xa3\x9d\xdb\x2e\x14\xfd\x8a\xe9\x15\xab\x6b\xe0\xf5\xcf\x10\x95\x2a\x31\x01\x2d\x05\x8e\xf4\xb3\x5b\x82\x7d\x76\x35\x6b\x13\xaa\x08\x4e\x0a\x1a\x4f\x95\xf3\x1c\x35\x92\xc1\xfd\xc5\xe1\x8d\x6b\x6b\xfd\xb7\xef\x1e\x19\xde\x30\x67\x0f\x81\xec\xd1\xa2\xb5\x36\x7f\x83\xec\x74\xe7\x7c\xc9\x33\x71\xc0\x2d\x38\xe2\xbe\xfa\xea\xab\x68\xb7\xdb\xa6\x4e\x99\xb2\x96\x82\x79\x96\x08\x74\x36\xe7\x2d\x4a\xc7\xeb\xad\x44\x2b\xd1\xf1\x3c\x7c\x78\xbb\x9c\x63\x6d\xfc\x25\x59\x5c\xd7\x3c\xce\x26\x8f\x44\x63\xa3\xb3\xc9\x50\x25\x93\xed\xfb\xd9\x64\x73\x95\x1d\x0f\xb6\x6f\x2b\xe9\x0e\xc9\x49\xd8\x46\xcf\xbf\x93\xcb\xd9\x57\x92\xc9\x55\x57\x5d\xc1\xd7\x69\x95\xeb\x52\x97\xac\xb4\x6d\x70\x7a\x1f\xc7\xc9\x04\xe5\xfc\x5c\x32\xd2\x34\x12\xad\xab\x8e\x55\xc9\x15\x58\x9e\xf3\xf8\x80\xc5\xd3\x7c\x6d\x75\xa2\x2a\x94\xca\x95\x6d\x83\x41\x8f\x78\x69\x3f\xb1\xd3\xda\x38\xb3\xd3\xfa\xb9\x23\x83\xf0\x13\x99\xc5\x3d\x28\x0d\x2e\x15\x32\x40\xc1\xe3\x8b\xfb\x96\x9b\xf8\x54\x2f\x4f\x01\x4d\xae\x87\xe9\x08\x53\x9b\x28\xea\xa7\x38\xcd\x21\xd0\x6a\x61\x7e\xd8\x78\xf1\xf4\xa3\xf6\xcf\x9d\x7c\xdc\x3a\xd7\x1a\x07\x0b\x48\x07\xdc\xe9\xee\xbc\xe9\x3b\x04\xd9\x75\xce\xcb\x11\x5c\xed\xd2\x45\xeb\x53\x77\x4d\x1a\xdb\x37\x93\xbe\xbd\x0f\xef\xd2\xb5\xaf\xc2\xa9\x52\x8a\x9c\x8f\x04\x2e\x66\x51\x0c\x86\x57\x15\x8f\x3c\xfe\x99\x67\x9e\x09\x80\x14\x65\x1b\xff\x10\xc5\x4e\x7f\xce\x3c\xb3\x43\x00\xd1\xda\x7e\xb4\x7e\x6a\xa7\xf5\xc9\x95\x5e\xf3\x85\x30\x51\xcb\xd3\x65\x6b\x1c\xa8\x14\x2b\x43\x0a\x46\xcc\x15\x4a\xcf\x68\x48\x2b\xad\xce\x51\xb8\x42\x0a\x7a\x28\xdb\x2a\xfc\xa2\xa1\x45\xeb\x0f\xcf\xcf\x36\xec\x33\x21\x0e\x92\xd1\xd6\xc2\xf8\xd6\x7b\x47\x07\x6f\xdf\x39\x32\x7c\xaf\x17\x25\x0f\x34\x0a\x07\x25\xe6\x7f\xd4\xd2\xa2\xb5\x1e\x91\x1d\x70\xf3\x5f\x03\x5a\x2e\x5e\xbc\x98\xbc\xfd\xf6\xdb\x18\x0c\x06\x92\xf8\xbe\x1d\x83\x2f\x5d\xd5\x48\xcb\x76\x5f\x07\xc8\x48\x7c\x6d\x40\xdb\xd5\xd9\x4b\x0a\x99\x5f\x4b\x4a\x9a\xe6\xe1\x03\x4e\x6c\x72\x48\x32\x4a\x1d\x00\xed\x2c\x0f\xa3\xad\xba\xe4\xab\x1c\x78\x30\xda\x2a\xfa\xba\xba\x46\xfa\x8e\xae\xf7\x76\xd5\x15\x57\xf0\xfd\x6e\x9c\x77\x9d\x3c\x38\x7f\xdf\x76\x26\xc5\xd5\x19\x94\xfa\xd4\x93\x2a\x7e\xbc\x3e\xf0\x4e\xce\x95\xde\x0b\xc4\xd0\x93\x9e\x4d\x5f\xc0\x57\x94\xce\x0f\x1b\x0b\x4f\x3f\x9c\xfb\xc4\x6a\xaf\xf9\xe9\xe6\x44\x6d\x28\xa8\xb0\xa0\x47\x75\xb5\x5e\xcd\x01\x08\x27\xd2\xd3\x9f\xd2\xf0\x53\xa1\xb8\xda\x48\xeb\xa2\xd5\x3c\x0b\xcd\x44\xad\xad\xf4\xc2\x97\x9e\x7c\xd4\xfe\xd4\xb1\x6e\x73\x03\xd9\xa0\x3b\xfb\x0b\xc8\x2f\xcc\x2f\x7d\x6f\x12\x5c\xdf\x58\x0a\xb3\xd0\xba\xbe\x99\x4d\xf7\xd4\x0e\xe6\xac\x22\x1f\xe4\xc4\xe3\x5d\xa8\x59\x1a\x09\x49\xca\x25\x81\x3f\x3f\x89\x7f\x49\xb6\x6b\xd7\xae\xb9\x46\xc8\x21\x52\xa4\x1d\x01\x68\x77\x46\xc1\xd2\x99\x47\xed\xe7\x8e\xef\x45\x2f\xb5\xe2\xe0\x54\x90\x9d\x45\x54\x34\xec\xa1\xb4\x09\xae\x46\x19\xd0\x94\x76\xf1\x07\x31\x09\x22\x45\xd1\x9a\xb0\x35\xfb\xc4\x69\x4c\xcd\x8c\xe2\x8a\x25\x14\xa7\x92\xe8\x33\x63\xc3\xe1\x67\x18\xe9\x6c\xfe\xc8\xac\x4a\x32\xd3\x4c\x93\x00\xf1\xa3\x4e\x7c\xef\xfa\x6a\xff\x9d\xf7\x57\x06\xef\x75\x5b\x93\x07\x3a\x3d\xe5\x99\xee\x8a\x4b\x4f\x79\xce\x7d\x5a\xb2\x32\xa7\xbb\x37\x26\x00\xf2\xa9\x21\x00\x18\x8d\x46\xde\x88\xf9\x80\x74\xae\xf8\x59\xf9\xf9\xa2\x7e\xd7\x88\xc1\x26\x5b\x9d\xd1\x45\x1d\xd9\x6c\xed\x6b\x96\x32\xa9\x7a\x1f\xdf\x11\x17\x7f\xe6\x23\x63\x55\xdb\xb6\xe9\x14\xa7\x2e\x98\xe1\x99\x24\x93\x4f\xda\x2a\x99\xaa\x80\xb6\xed\xdd\x7c\x69\x7d\xbf\x89\x2b\x7f\x5f\x30\x59\x95\x57\x95\xbe\xf6\x2d\x57\x1f\x7d\x5f\xc5\x93\x3e\x0f\x80\xf2\x6e\xe9\x00\xa2\x53\x3b\xad\x53\x1b\xbb\xad\x9f\xed\x8c\x82\xb3\x81\x46\x87\xeb\x5e\x51\xf7\x6b\x2d\x5a\xd2\xa7\xba\x1f\x50\x4a\x43\x97\x56\x64\xa4\xbf\x74\x16\x69\x0a\x52\x88\x2b\x41\xa1\xcf\x51\x41\x6b\x12\x9c\x59\xef\x36\x2f\x9c\xdc\x6d\xdd\xdc\x9a\x1f\x6f\x0d\xa2\x84\xef\x52\x6e\xde\xcd\x55\x66\x75\xbf\x43\x55\xbd\xf6\xa1\xad\x23\x8b\x37\xb0\x92\x46\xb8\x2e\xf0\x41\x33\xf4\x69\x9c\xb6\x46\xc8\x1b\x9d\x2f\xda\xb7\x8d\xa6\x13\x00\x38\x79\xf2\x24\x80\x12\xda\x34\x15\x36\x47\xa7\x5a\xeb\x48\x69\x44\x27\x1f\xb7\x4e\x3d\xf1\xb8\xf5\xa9\xc5\x61\x78\xae\xa1\xd3\x35\xfa\x52\x28\x38\x5b\x69\x19\x55\x97\x76\xb9\x85\xa9\xd4\xda\x90\x90\xca\xaf\x73\x10\x43\xcd\x8c\x45\xb4\x9d\xc2\xfc\x29\x3a\x9f\x42\x77\x02\xa9\xc0\xa5\x49\x2d\x33\x99\x41\x53\x93\x86\xa5\x90\xec\xb5\xe3\xad\x1b\x2b\xfd\xb7\x6f\xac\x0e\xae\xec\xb6\xe3\xfb\x49\x30\x3d\x7b\x08\x53\x4b\xcb\x20\x3b\x7f\x28\x9f\x1a\x42\xb6\xe4\xd9\xac\x20\x32\x87\x7d\x5d\xbc\x78\x31\xf9\xdc\xe7\x3e\x67\xb3\x92\xd0\xf8\xc0\xf2\x07\x14\xd3\x4a\xf1\x92\x15\xc1\x75\xed\x4a\x23\xc9\xe7\x4a\x63\x8b\x4f\x2a\xe8\x6c\x79\x24\x28\xf3\x73\xe5\xeb\xfb\x3e\x55\x69\x7d\xf9\xfa\xf0\xb0\x95\x23\x0f\x52\x9c\xed\xb9\x2f\x68\x74\x5d\x53\xf9\xa4\x8e\xd8\xb7\x63\xae\xa2\x97\xf2\xf4\x05\xbb\xb6\xbc\xa4\xfb\xc2\x00\x01\xd5\xa0\xc6\xc6\xa7\x2a\xf8\xf0\xa4\xb4\xb6\x36\xcc\xcb\xc2\xa6\xd7\x7d\xbf\xab\xad\x9f\xb1\xe5\x57\xa8\x87\xbf\xf5\x5b\xbf\x15\x08\x56\x07\x3a\xb5\x12\x42\x23\x6a\x8d\x55\xe7\xa9\xed\xf6\x8b\x4b\x83\xc6\x27\x1a\x99\xc5\x5d\x72\xe6\x30\x61\xaa\x8f\x55\x61\x4a\x86\xbb\x0c\xa4\xe0\x86\xfa\xbd\x18\x84\x32\x1d\x16\xd3\x3e\xc3\x58\xf0\xf3\x7c\x4d\x5f\x90\x09\x10\x68\xd5\xe9\x8c\x1a\x4f\xaf\xef\x35\x3f\x7a\x6c\xbf\xb9\x8e\xe9\x4a\x28\x3a\x55\x54\x28\x03\xe9\xfd\xc9\xb5\x54\x8f\x79\x3c\x7d\x56\x07\x10\xd7\x19\x10\xd1\x78\x9b\x4c\x25\x79\xaa\xd0\x10\x45\x42\x9c\x19\x4f\x1b\x08\x71\x12\xbf\xaa\xca\x5e\x12\x12\x72\xc1\x72\xd9\x70\xf7\xee\xdd\xe4\xe5\x97\x5f\x0e\x8c\x6f\x0b\x90\xcf\x6b\xe6\x27\x7b\x66\xd7\xd1\xfc\xb0\xb1\x7c\xe6\x51\xeb\xe3\xab\xfb\xe1\x8b\xcd\x49\x3a\xa7\x09\x4c\xa7\x1d\xe9\xb6\x23\xe9\x7d\x7a\x2d\x4e\x1f\x3a\xa6\x14\x0b\x48\x3c\x9f\xdb\x99\x5a\x58\x44\x5a\x9d\xd2\x14\xf9\xaa\x52\x23\xe2\x10\x26\x8d\x29\x3a\xbb\xe8\xec\xdf\x7e\x34\xd9\xb9\xb5\x32\x78\xfb\xda\x5a\xff\xed\x9d\xb9\xf8\x83\x49\x50\x3e\x30\x11\x64\x1b\xff\x6c\x6a\x28\x3f\x27\x03\x98\xfa\xb4\x00\x29\x68\xf9\xc2\x17\xbe\x10\xfc\xf3\x3f\xff\xb3\x6b\xb4\x46\xbf\xab\xf4\x67\x82\x4f\xe3\xe0\xca\xcc\x76\xed\xaa\x83\xb6\xfa\x44\xd3\xd8\x3a\x0b\x2e\xb7\x4b\x21\xd3\xf7\x71\x8d\x72\x6c\xef\x41\xef\xb9\x0c\xb6\xe7\x75\x3a\x08\x49\xa6\xaa\xd1\x98\x0b\x24\x80\x3d\xb3\x7d\x03\xa7\x32\x72\xc4\xfb\x76\xaa\xe6\xb7\x8a\xde\x46\xe3\xab\xcc\xa5\x60\x03\x8a\x52\x7a\xe9\x9b\xd2\xef\x29\x05\xd7\x37\xa4\xf9\xdb\xde\xa1\xaa\x73\xf2\xed\x98\xa4\x36\x6c\xd3\x01\x2e\x9e\x36\xc0\x5b\xf5\x4c\xca\xaf\xa4\x53\xfe\xf4\x4f\xff\xb4\xd0\xe7\x70\xff\x16\x00\x51\xa0\xd1\x3e\xde\x8d\xd6\x56\xf7\x9b\x9f\x6c\x4d\x82\x0d\x95\x59\xdc\x01\x94\xe6\xdf\x4b\xd3\xf2\x1a\x45\x52\x46\xa3\xa9\x93\xa3\x09\xaa\x0c\x84\x0c\x7d\x6e\x71\x37\xf7\x82\xef\x40\x98\xa8\xd5\xe5\x7e\xf8\xec\xfa\x5e\x74\xb6\x91\xe4\x7e\x2e\x66\x65\x54\x5e\x66\xf6\x2d\xb3\x6a\xd5\x6f\x9b\x5e\xf1\xe1\xcd\xf9\xf0\x6b\x9f\xc1\x8e\xb3\x7e\xdb\x00\x89\x2d\x31\x45\xdc\x1c\xa9\xbb\x1a\x13\xe7\xe1\x42\x58\x92\xe2\xab\x6a\xf8\x79\x3e\x66\x1e\x93\x38\x2a\x15\x2a\x2b\x80\x76\x90\xa0\xfd\xf4\xc3\xf6\xd9\xe3\x7b\xd1\xa7\xe7\xe2\xe0\x4c\x00\x15\x69\x56\x53\x0b\x68\x1a\x45\xc0\xa2\x59\xf5\xd3\xe0\xa9\xa7\x60\x27\x9d\x22\x2a\x82\xa0\xd2\xbe\x2e\x24\x1f\x9d\x99\x54\x14\x43\xdc\xe6\x39\x78\x7c\x01\x60\xe9\x69\x94\x9e\x4a\x35\x6c\xe8\xde\x9d\xe5\xe1\x95\xcb\xeb\xfd\x37\x1f\xce\xc7\x1f\xc4\x0d\x4d\xb7\xf1\x2f\xf8\xb5\x20\xdb\xa7\x85\xae\x1e\xe2\xcb\x9e\xcd\xf4\xd0\x3f\xfe\xe3\x3f\x56\x01\x0d\x9f\x50\xa5\xf4\x7c\xf9\xd8\x46\xbf\x52\x3d\xaa\x02\x21\x9c\xde\x16\x6c\x72\x4b\x6d\x43\x92\xcd\x27\xd8\xda\xa0\xed\x9e\xa6\xa9\x02\x10\xb4\xb3\xb4\x75\xa6\x5c\x06\xa9\xdc\x78\x7e\x9c\xde\xd7\x0a\x50\xd5\xe1\x1b\x1a\x1f\xbd\xe5\xd3\xf9\xb9\x64\x70\xe9\x26\x29\x8d\x0d\xf8\x4a\xf2\x49\xf9\x71\xb9\x68\x47\x2b\xd1\xfa\x5c\xdb\xea\x1b\xe7\x2b\xc9\x5b\x25\x6b\xd5\xf5\xac\x20\xd5\x47\xa6\xca\x3a\x40\x8e\x78\x29\x9c\xfe\x9c\xfb\xb7\x68\x44\x0d\xad\xda\x27\x1e\xb7\xce\xce\x8f\x1a\xcf\xa6\x8b\x32\x50\xf2\x55\x31\x3a\xd9\x0c\x3c\x0b\xfe\x29\x4c\x39\x4f\xa7\xee\x01\xde\x4b\x50\xeb\x4d\xae\x99\x79\x5e\xd4\x6a\x9f\xf1\xa7\xe7\xcd\x05\x1a\xed\xce\xb8\x71\x6a\xb5\xd7\xfc\xf0\xe2\x20\x5c\xc0\xd4\xcf\x25\xcc\x7c\x77\x00\xe4\x4e\xba\x81\xd6\x1a\x5f\xfc\xe2\x17\x83\x4e\xa7\xe3\xaa\xbf\x52\x1d\x93\xfa\x77\x1e\xb8\x6e\xf1\xad\x03\xb6\x81\x92\x44\xc7\xd3\x04\xfc\xa1\xaf\x82\xe6\x99\x56\x35\x4c\x9f\x51\xa0\x54\x61\x25\x85\x68\x93\x27\x2f\x40\x6a\x1a\xa3\x16\x17\xad\x75\xc1\x21\xf7\xc8\x20\x5c\x3a\xbd\xd3\x3e\xbf\x34\x08\x9f\x6b\x24\x6a\x21\x4d\x40\x81\x8a\x62\x60\x44\x93\xff\xa7\x56\x8d\x14\xa0\x98\xa5\x6b\x28\x54\x44\x03\x76\x34\xa5\x57\xb2\xf9\x11\xa0\xce\xc0\x6c\x7a\x49\x4d\xe5\xa0\x0d\x45\xb1\xda\x6e\xf2\xcc\x4d\x8e\x59\xfc\x24\xd0\xa3\xcd\xc5\xd1\x7b\x6f\x6f\xf4\x7e\xb8\xb9\x30\x32\x27\x3d\xef\x6a\xad\xbb\x66\x8a\x28\x9b\x1a\x1a\x20\xb3\xb4\x20\xf3\x6b\xa1\x27\x92\x9a\x43\x13\x27\x93\x09\x17\xbd\xaa\x21\xd8\x82\xad\xa2\xfb\x56\x68\x5f\x45\x67\xa3\x77\x35\x34\x5f\xe5\x5a\x45\x2f\x75\xa0\xbe\x79\xb9\xf2\xb0\x01\x23\x4e\x6b\xb3\x86\x48\x72\xfa\x0c\x3a\x5c\xf1\x86\x8f\x4b\x0f\xd8\x3a\x52\x1b\x80\xb4\x0d\x62\xc4\x41\x0b\x93\xaf\xae\x72\x94\xe4\x92\xe4\xa3\x79\x56\x01\xab\xaa\xf7\x75\x05\x49\x7e\x1b\x20\xac\x1a\x0c\x72\xf9\xf8\x7b\x48\xe5\x6c\x93\xbb\xaa\xcc\x7c\x75\xb7\xd4\x8f\x54\x95\x9b\xa1\xb1\xbd\x6f\x7e\x6d\x3a\xef\xec\xda\xbc\x5f\xbe\x92\x48\x01\xe1\xdc\x38\x58\x38\xd6\x8d\x3e\x1c\x4d\xd4\x49\x05\x84\x66\x8a\x26\x9f\xd1\xd1\x65\xfd\x0d\x4c\xf5\x30\xdf\xfc\x13\x48\x61\x8b\x19\xb0\x16\xac\xec\x20\xfd\x82\xcb\x44\x4f\x42\x71\xa5\x11\x00\xa8\xa0\x39\x51\x6b\xcb\x83\xf0\xe9\xe3\xdd\xe8\x24\xca\x4e\xba\x85\x72\x54\x4a\xe1\x99\x67\x9e\x41\xaf\xd7\x93\xca\x5c\x8a\x03\xca\xe5\xed\xdb\x07\x83\xdc\x57\xf1\x76\xd5\x09\x49\x8e\xd2\x73\x5b\x25\x74\x29\x62\x7e\x5f\xa7\xc1\xb8\x78\xba\x1a\xb3\x8d\x26\x01\x80\x6f\x7e\xf3\x9b\x25\xde\x8a\x1c\x9e\x45\xa6\x89\xda\x00\xa2\x67\x37\x3b\xcf\xae\xed\x37\x3f\x1d\x4d\x82\x75\xc0\x9c\xf9\x00\x86\x90\xd9\x7e\x29\x82\x50\xb9\xd3\x6c\x16\xa4\xf3\x28\x4a\xf3\x9e\x2c\x2e\x7f\xa6\xcb\x94\xe6\xff\x29\x46\xa9\xaa\xf0\xc5\x26\x31\x51\x48\x1e\xcd\xc5\xf7\xde\x3a\xb1\xff\xea\xed\x23\x83\x9b\x19\x68\xe1\xfe\x2c\xb9\xa5\x25\x3b\x77\x48\x02\x2d\x00\xd2\xe9\xa1\xcb\x97\x2f\x03\xf6\x51\x1d\x55\x3c\xb6\x51\x11\x4f\xe7\x02\x03\x5c\xb9\xf2\xfc\x4c\xbc\x4b\x1e\x57\x27\x27\xc9\x24\x8d\x3e\xea\x04\x17\x10\x97\x68\x69\x59\xd9\x40\x0a\xa7\xe3\x69\x29\x2d\x50\x2e\x37\xda\x31\xb9\xda\xa9\x0d\x54\xb9\xca\x57\x92\xe9\x30\x82\x24\x2f\x97\x85\xca\x53\xa5\x47\xaa\x3a\x65\x89\x77\x55\x9e\xb6\x7c\x0e\xab\x0c\xaa\xf2\xf4\x1d\x70\xda\xe2\x6c\x1d\x4c\x15\x38\xf5\xc9\xdb\x05\xee\x24\x9e\xbe\xe5\x66\xd3\x1b\x2e\x39\xe8\x5f\x08\x20\x0c\x13\xd5\x3e\xb6\x17\xad\x2d\x0f\xc2\x67\xc3\x44\x2d\x1b\xfd\x5b\x98\xe1\x31\x56\x14\xee\xbf\x58\xa1\x87\xd9\x0c\x7f\x6e\x81\x07\x50\x04\x22\xaa\x18\x57\xea\x63\x74\x31\x2b\x05\x20\xd0\xaa\xdd\x19\x05\x1b\xcb\xfd\x90\x02\x17\x03\xca\xaa\xf4\xd5\x41\xea\xb7\xab\x5d\xd9\x70\x80\x8d\xb7\x8f\x2e\x76\x06\xd7\x48\x50\xca\xb4\x0e\xbf\x83\x06\x6f\x5e\x7f\xf0\x07\x7f\x20\x29\x53\x80\x78\x8e\x2b\xa5\x22\xa5\x11\x6d\xec\x46\x6b\xa7\x77\xda\x3f\x37\x3f\x0c\x9f\x0b\x34\xda\xdc\x02\x62\xab\x92\x29\x48\x99\xde\x6b\xf2\x40\x98\x8e\x2c\xd3\x59\x82\xc4\x47\xa2\xa0\x7e\x36\x55\xbc\xb5\x06\x12\xa5\x93\xdd\x76\xbc\x79\x79\xbd\xf7\xfd\xab\x6b\xbd\x77\x13\x35\xb5\xb2\x10\xb0\xd2\x15\x56\x0f\xe5\x9e\xea\xc6\x09\x37\x03\x30\x00\x80\x7f\xff\xf7\x7f\x77\xbd\x4e\x9d\x4e\xc3\x36\x32\x96\x68\x0c\x9d\xab\x83\xb4\x35\x5a\x1b\x78\xe2\x40\x40\x92\x57\x52\xe6\x55\xa0\x4d\xca\xcb\x27\xcc\xda\xe1\xf9\x96\xb9\xad\xc3\x72\x95\xa9\xed\xbb\xcd\xa2\x1c\x0f\x1a\x6c\xa0\xd8\x27\x5f\xdf\x67\x75\xea\x2f\x97\x69\xd6\x30\x6b\xda\x3a\x83\xc3\xba\xf4\x2e\x99\xaa\xbe\xaf\xef\x00\xe3\xa0\xa1\x04\x60\xa2\x28\x2a\xf0\x67\xbe\x1e\x05\xe0\x12\x24\x68\x2f\x0d\x1a\xab\xad\x58\x9d\x02\x50\x52\xde\x05\x5f\x16\xa6\x78\x55\x89\xa8\xd8\x07\xe4\x56\x1b\x92\x56\x72\xf8\xe5\xfd\x86\xd2\x2c\x2b\x41\xa6\x40\x23\x6a\xc5\xc1\xfa\xe2\xa0\xf1\x64\x7b\x14\x74\xc0\xc0\x0b\xdc\xe5\xec\x63\x31\x3b\xa8\x1e\x73\xf1\xa6\x7c\x5d\x7d\x42\x65\xbc\xa4\xb4\x5c\xe8\xc9\xc6\x8c\x8e\xe8\x28\xaf\x2a\x25\x6f\x6b\x4c\xd2\x68\x5b\xba\xce\xf9\x92\x69\xa2\x42\x05\xcd\xff\x34\xa2\x30\x51\x9d\xa7\xb7\xda\xcf\x2d\xf7\xc2\x0b\x61\x82\x05\x6a\xd9\xc8\xd7\xe7\xb8\x1c\xb1\x14\x9d\xd2\x29\x3b\xf0\x16\xd2\x50\x9e\x34\x2e\x5f\x1c\x34\xcd\xa8\x50\xe9\x4b\xfe\x33\x6a\x3a\xd7\x49\x10\xba\x46\x71\xfe\x53\x13\x01\x74\xa0\x93\xcc\x19\xf7\xcd\x77\xd6\x7b\x6f\x4f\x54\xbe\x7d\x7f\x37\xdb\x9b\xc5\x1c\x9c\x38\x42\xba\xf4\x99\x02\x17\x00\x85\x03\x13\x13\x00\xf8\xde\xf7\xbe\x97\xe5\xa3\xf3\x38\x4b\xa0\x75\xc0\xc7\x8a\xc6\xe3\x78\x3d\x74\x9a\x0c\x19\x5d\x95\x45\xd0\xf6\x5c\xca\x43\xca\xd3\xf6\x4e\xb6\x7c\x5c\x60\x87\xa7\xf1\x1d\xe5\x56\xb5\x4d\x9f\x11\x8e\x4d\x1e\x9e\x86\xd3\x48\x32\x54\xc9\x64\x6b\xb7\x75\x94\xa2\xa4\x53\x5c\x20\xcb\xb7\x73\xad\x93\xff\x41\xc3\xac\x3c\x7c\xc0\x14\xd5\x99\x87\x21\x8b\xeb\x3b\xf9\x5a\x3c\x78\xdd\xf7\x05\xe6\x55\xe0\xcb\xda\x77\xd0\xed\x18\xc8\x56\x14\x05\x8b\x8b\xf1\x71\x09\xb4\x8a\xe6\x47\x8d\xd5\x70\xa2\x96\x29\x8f\x5c\xff\x66\x0a\x55\x2b\x2d\x5b\x58\xc4\xe5\xa5\x64\x1a\xc9\xfc\xa7\xa6\x53\x46\x65\xc0\x23\x2c\xb7\x90\x78\x1a\xca\x94\x3c\x68\x24\x6a\xa1\x33\x6a\xac\xaf\x0c\xc2\x25\x90\x3e\x2e\x7b\x37\x23\x83\x79\x5f\xce\xae\xea\x1b\xd8\xda\x3d\x2d\x47\x1a\x57\x15\x24\xfa\x83\xd6\x03\xeb\x3e\x2e\xbc\x11\x54\x8d\xc6\xa8\x62\xf4\x35\xf7\x49\x23\x26\xae\x00\x6d\x4a\xd5\xd6\x50\xcd\xe9\x9f\xb4\x90\x43\x20\x05\x2d\x27\x1e\xb7\x36\x9e\x78\xdc\xfe\xd9\x76\x1c\x9c\x55\xd9\xbb\x97\xac\x25\x04\x1c\xf0\xb8\xf4\x72\xea\xdf\xc2\xe7\x38\xf3\xd3\x97\xc1\x4c\x8e\x84\xdf\xd4\x01\x2b\xf7\xe6\x62\xf5\x5f\xb8\xcb\x96\x55\x4f\x97\x38\x67\x4f\xa8\x5c\xd9\x75\xa2\x34\xfa\x61\xd2\xfd\x60\x69\x74\xf5\xf2\x7a\xef\xcd\xfd\x68\xf2\x10\x2a\xdf\xa3\x65\x90\xf9\xb5\x18\x9f\x96\x81\xd9\x5c\x0e\x99\xb5\x85\x1f\x98\x08\xa4\x7b\xb5\x90\x1d\x71\x69\xe0\x60\xd5\x56\x49\x79\xdd\xb0\xd5\x2f\x89\x8e\xf2\xb0\xc5\xdb\xd2\xd8\x78\x57\xe5\xc3\xf3\x94\x3a\x7a\xdf\x77\x80\x40\x23\xc9\xc9\x01\x9f\x8f\xdc\x9c\xb7\x4d\x3e\xdb\x60\x62\xd6\x32\xe5\x79\x72\xf9\x29\x6f\x1b\xa8\xa9\xd2\x39\x3e\xd7\xb6\xf4\x55\xa0\xa6\x2e\x3f\x57\x3e\xbe\x80\xc1\x17\x54\xcc\x12\x24\xd0\xe6\xca\xaf\x4a\x6e\x5e\x17\xab\xf2\x74\x3d\xaf\xfb\xde\xbe\x65\x5a\xfa\xa6\x51\x14\x05\xa3\xd1\x28\x31\x83\x58\xd3\x91\x93\xe3\x52\xd2\xe5\xd0\x3a\x9d\x2a\x6a\xc7\x8d\xa3\x61\xa2\x96\x28\x53\x7a\xb8\x2d\xbd\x07\x50\xe8\x14\x34\xd3\xfd\x66\x10\x69\x9d\xce\x17\x74\xb5\xd9\x67\x2b\x07\x37\x96\x50\xec\x87\x14\x02\xad\xa3\xf6\x24\x58\x5e\x18\x36\x96\x01\x6c\x66\xef\x1f\x50\xf7\x08\xe3\x93\xc8\xe4\xf1\x29\xd7\xaa\x7a\x61\xbb\xb7\xa5\x73\x01\xa1\xaa\x3a\x6a\x4d\x17\xd2\x1b\x81\xd0\x67\xe4\x2c\x85\x59\x46\xdc\x55\x15\x5d\x54\x4c\x2f\xbf\xfc\x72\xbe\x82\x28\xdb\x80\x87\x83\x96\x50\xe9\x74\xb3\xb9\x27\xb7\xdb\xcf\xae\xf4\xc3\x97\xd2\x3d\x5b\x8a\xeb\xf5\x69\x90\x00\x07\x0f\x72\x9c\xf2\xa2\xa7\x26\x43\x2e\x83\xbd\x02\x17\x1d\xc4\xa6\x60\xa9\x78\x3d\x6a\xe8\xde\x83\x85\xd1\x8d\xab\xc7\x7a\xaf\x3f\x58\x18\x7f\x90\x28\xdd\x85\x4e\x57\x0f\x19\xd0\x92\x5d\x1b\xd0\x92\x4f\x0f\x19\x0b\x8b\xa9\xf4\x40\xea\xd7\x02\x80\xef\x88\xeb\x53\xe9\x6c\x88\x59\x02\xac\x36\x3a\x09\x0c\xf9\x28\x34\xdb\xa8\xac\x2e\x3f\xde\x41\xd9\x82\x6d\x54\xca\x9f\xb9\xea\x76\xdd\xe0\x2b\x0f\x2d\x8b\xaa\x8e\x98\x86\x2a\x59\x7d\xd3\x48\x60\xc6\x36\x10\xaa\x63\x35\xe0\xbc\x7d\xd3\xcd\x02\x20\x5c\x40\xa7\xee\xa0\xcd\x84\xba\xef\x5a\x27\x4d\xd5\xb7\xa9\xe2\x53\xb7\x83\x93\xbe\x43\xdd\xfa\xe6\x1b\xef\x5d\x66\xd4\xe2\x42\xfc\x1c\x83\x40\x23\x6c\xc5\x41\xbb\x3d\x0e\x96\x1b\x5a\x59\xf7\xef\xa2\x0a\xda\x1c\x9e\x98\xf3\xe6\x34\xd4\x65\xc0\xd6\x09\xb0\x24\x46\x46\x63\x51\xa9\x74\x61\xcc\xf9\xab\x30\x8c\xd5\xd2\xdc\x38\xa0\x16\x97\x80\xf4\x7f\x1e\xfe\x90\xd6\x60\x03\xc1\x3e\xdf\xc6\xd5\xbe\x39\xbd\x94\xce\xfb\xdb\xda\x2c\x17\x26\x24\x84\x86\xa6\x01\x8b\x0f\x18\xad\x34\xba\xe3\xe9\x5d\xf7\x52\x1e\xa5\x02\x35\xdb\xfa\x9b\x38\xe9\x2c\x22\x00\x51\x73\xa2\x3a\xc7\xbb\xd1\xc9\x93\xbb\xd1\x7f\x69\xc7\xc1\x19\xa0\x0c\x14\xa8\x45\x8d\x2f\x41\x36\x2b\x8c\xec\x3e\x25\x64\xb5\x0f\x9d\x33\x62\x66\xba\xd2\x9c\x66\x16\xab\x2c\x8c\xa5\xe5\xf8\x4a\x67\x73\xa1\x5c\x7e\x68\xc4\x41\x32\x7a\x34\x3f\xbe\x7b\xfd\xe8\xe0\xed\xdb\x47\x86\xd7\xe3\x86\xde\x25\x87\x25\x76\xc9\x75\xbe\x8d\x7f\xb6\xec\x99\x2e\x79\x06\x07\x2d\x59\x90\x46\x61\xd2\xaf\x54\x31\x4d\xbc\x54\x41\x79\x1a\x17\xa0\xad\xba\x96\xac\x18\x36\x19\x6d\xe0\x9c\xcb\xc0\x1b\xaf\xd4\x66\xaa\xde\xdb\xd6\x91\xd8\x64\x72\xbd\x83\xeb\x7d\x5c\x69\x66\xe1\x0d\xb8\xcb\xa7\xea\xfd\x6c\xc1\x47\x41\x49\x3a\xc7\xf6\xbc\x2e\xbd\xeb\xda\xaa\x6f\x1c\xbc\x5d\x8a\x9d\x5f\xfb\x58\xcd\x24\x7a\x1f\x5a\xca\xd7\xa6\xb7\x39\x4d\x55\x70\xf1\x98\x45\xbf\xdb\x9e\xcd\x04\x4e\x0c\xfd\xdc\xdc\x5c\xc0\xa6\x8a\x02\x76\x1d\x20\xed\xdc\xf2\xd7\x76\xdc\x00\x00\x20\x00\x49\x44\x41\x54\x43\xa5\x11\x36\x27\xaa\xdd\x4c\xd4\x42\xba\x00\x2c\x40\xd3\xbf\x7f\x17\x71\x4a\xa1\xfd\x80\x65\x34\xa9\x69\x8f\xa0\xa6\x31\xb9\x2d\xbe\xd0\xa9\x14\xdd\x09\x38\xa6\xb1\xb9\x09\xe4\x2e\x05\xdc\xef\x25\xa5\x0d\xc2\x44\x75\xa2\x38\xe8\x80\x0e\xd0\xa7\x03\x78\xd0\x69\x23\xb2\x34\xbc\x4e\x9d\xe6\xed\xbe\xaa\x3e\x72\xfe\x2e\xde\x26\xde\xb7\x0d\x97\xea\x89\x4f\xc5\xa5\x0a\x9b\x0a\xe7\x52\xa2\x36\x41\x0d\x8d\x4b\x41\x48\x7c\xad\x8d\x9e\x6d\x2c\x44\xff\x42\xad\x75\x14\x24\x68\x2f\x0e\xc2\xe5\xd3\x8f\x5a\xcf\x2f\x0f\xc2\x4f\x28\xad\xda\x92\x61\xce\xac\x2a\x9a\xce\x71\x92\x67\x10\x0e\xca\xa2\x69\xa5\x1b\x3a\x2f\x04\x8b\xe5\x46\x67\x84\x36\xeb\x22\xf3\x3a\x07\x90\x6f\x6c\xc4\x93\x24\x0a\xc9\x6e\x7b\xb2\x79\x73\x65\xf0\xce\xad\x95\xc1\xd5\x7e\x73\xb2\x43\x96\x3b\xf7\xb2\xdf\xfc\xc0\x44\xad\x75\xac\x94\x8a\xe9\xa1\x89\x40\x6a\x6d\xb9\x78\xf1\x62\x42\xc0\x98\x2f\xd0\xa4\x7f\xb9\x58\x2c\x4d\x22\xd0\x49\x15\x58\xca\xcb\x96\xc6\xd5\x00\x38\x1d\x97\xd7\xd6\x30\x6d\x0a\x95\xa6\x71\xc9\x63\x0b\x2e\xb9\x7d\xde\x95\xf3\xb2\xf1\x76\xf1\xe0\xef\x63\xeb\x2c\x6d\xed\xd5\x25\xb7\x24\x9f\xad\x43\x92\x78\xb8\x3a\x2f\x9e\x8f\x0d\x8c\x49\x69\x79\xb0\x3d\xe7\xba\xae\x4e\x5a\x13\xaa\x3a\x63\x5f\x40\x67\x03\xc2\xbe\x72\xf8\xea\x62\x5f\x39\x24\x7a\xdb\x3b\xb9\x74\x46\xd5\x3b\xf0\x7a\x21\xf5\x3d\x25\x19\xfa\xfd\x7e\xc2\xcf\x25\x62\xcb\x96\x03\xc0\xec\x71\x52\x18\xe0\x66\x09\xd2\xff\xb8\x6f\xac\x04\x36\xb2\x93\x9b\x73\xa8\x32\xed\x21\x50\xa4\x34\x27\xe0\x12\x1e\xd4\x3a\xce\xa8\x73\x8b\xbd\x49\x6a\xac\x30\x42\xbf\x13\x04\xa9\xcf\x66\x1b\xac\x6d\x1a\xab\x8b\x79\x67\x87\xe5\x45\xfa\x0e\x3e\x60\xd7\x06\x7a\x7d\xea\x4c\xd5\x60\xaf\x2a\x5d\x2e\x5f\xc0\x08\x5c\xca\xb7\xaa\x41\xf3\xc0\x79\x27\x96\x78\x9e\x07\x97\xa5\xd4\x00\x8f\x1f\x3f\x1e\x7c\xfb\xdb\xdf\x36\xfe\x2c\x85\x82\x24\xfb\xb5\x84\x0a\x2a\x6c\xc5\x41\x67\xbd\x1b\x9d\xda\xd8\x6b\x5d\x68\xc5\xc1\xa9\xbc\x32\x12\x28\xcb\x7d\xc6\xd3\x7d\x50\x64\x01\x45\xf0\x91\x9f\x57\x51\x86\x35\x52\x05\xcd\x9f\xd9\x4c\x2d\x42\x9e\x1a\xba\xb4\x23\xa2\xc6\x14\x6c\xf5\x9b\x93\x9d\x3b\x47\x86\xef\xdd\x5c\x19\x5c\xd9\x69\xc7\x0f\x30\xb5\xae\xe4\xa0\x05\xa9\x03\xee\x00\xa9\xc5\xa5\xb0\xb9\x9c\xd9\xca\xdf\x54\xf4\x1f\xff\xf8\xc7\x10\xfc\x5a\xa4\x4e\xcf\x36\x4a\xb7\x75\xa4\x55\xa3\xf3\x2a\xa0\xe4\x0a\x2e\x45\x9d\xc0\x5e\xdf\x6d\xc1\x67\x04\x20\xe5\x6b\x03\x32\xae\x4e\xbc\x4a\x41\x73\x70\x28\x29\x10\x1b\x50\xb4\xc9\xc6\xd3\x70\xf9\xea\x96\x8f\x2f\xc8\xaa\xe2\x25\x05\x5b\xe7\xe8\xca\xd7\x95\x5e\x8a\xb7\x95\x7f\x1d\x0b\x80\x0b\x18\xf2\x7c\x5c\xd7\x75\x82\x8f\x7c\xd2\xb7\xf5\x01\xc7\x55\xc0\x94\xdf\x27\xe4\x0f\xec\xda\x27\x54\x81\x37\x51\x9e\x23\x47\x8e\x04\xcc\x42\x5c\xf0\x75\xcc\xac\x10\xe9\x40\x57\xe9\x20\x51\x08\x12\xa5\x4b\x72\x49\x83\x45\x9b\x76\xe7\xce\xb6\xae\x19\x22\xc9\x1d\x41\x06\x2f\xec\x3a\x3f\x77\x6e\x9a\x99\x02\x02\x05\x15\x36\x12\xd5\x22\x47\xd9\x18\x60\x56\xfa\x2e\x82\x9f\x0b\x0f\xb6\x81\x43\x15\xc8\xf6\xf9\xae\x55\x75\xcc\x37\x5d\x41\x46\x09\xdd\x02\x76\x25\x51\x95\x91\x4d\x49\x43\x88\x77\xbd\x34\x55\xe4\x25\x9e\x4f\x3c\xf1\x04\x80\x62\xc5\x44\xf1\xc3\xa5\x4b\xde\x34\xda\x4b\xc3\x70\xf5\x89\xc7\xd1\xf3\x4b\x83\xf0\x85\x40\xab\x08\x30\xc6\x90\x6c\xd2\x52\x6b\x28\xe2\x09\x5e\x70\xb6\xb2\x4c\xf5\x14\x7e\x45\x73\x8b\x2d\xa6\x68\x36\x94\x2c\x3f\xbc\x71\x4c\x2b\xb7\x2a\x1e\x9f\xae\xa7\x17\xa3\x86\x1e\x6c\x2e\x8c\x6f\xdd\x5a\x19\x5c\xd9\x9a\x1f\x7f\xa0\x83\xe9\x5e\x2d\x5a\x6b\x73\xca\xb3\xf9\x33\x3e\x2d\xd4\xb7\x25\x5f\x45\x64\x1a\xff\xbf\xfd\xdb\xbf\x25\x83\xc1\x40\xaa\x9c\x92\x42\xe2\x71\x36\xe5\x45\xc1\x83\xad\x1e\x48\x69\xaa\xf2\xf6\xe5\x31\x0b\x6f\x58\xe2\xeb\xe6\x29\x85\xaa\x11\x07\x2d\x2b\x57\xb9\xfa\xc8\x5a\xd5\x91\xb8\xe2\x5c\x79\x56\xbd\xb7\x0f\x58\xf5\x51\x92\x26\x70\x25\x2b\x7d\x4b\x1e\x7c\xc1\x70\x65\x07\x69\x89\xf7\xb1\xd0\x50\x45\x4c\x41\xa1\x0d\x2c\xce\x92\xbf\x6b\xc4\x5c\x05\xb6\xa5\xe0\x2a\x57\x5e\x56\xfc\x3d\xa5\x3c\x79\x98\x05\xb4\x89\xf2\x3c\x7e\xfc\x38\xa1\xbb\xe5\x4a\x79\x15\x80\x8c\xd2\x48\x80\x84\x6b\x78\xba\x6a\xb4\xf8\x44\x95\x2c\x1f\x9a\xa4\x2a\xa4\xe1\x6e\x07\x9a\xe9\x75\x73\x40\x23\x24\x38\x44\x56\x11\x01\x25\xab\xbd\x99\xd6\x52\x1a\x81\x9a\xee\xdd\x02\xa0\xb0\x82\x28\x2f\x07\xc7\xaa\xa2\xaa\x01\x55\x5d\xa0\x51\xca\x5b\xc8\xb7\xaa\xce\x49\x32\x71\xbd\x17\xd8\x08\x6d\x99\xd2\xdf\xba\x0d\xdf\x85\xba\x5c\x23\x53\x51\xa6\x0b\x17\x2e\xe4\x1f\x84\xec\x90\x9b\x5b\x5b\xb4\xd6\xe9\x01\x5a\x71\xd0\x39\xda\x6d\x9e\x3a\xbe\x17\xbd\x18\xc5\x6a\x83\x57\x93\x14\x78\xa8\xdc\x43\xbc\xf0\x89\xa5\xa9\x1e\x2d\x3b\xd6\xa6\xcf\xb5\x50\xd9\x49\x7e\x0c\xe5\x94\x2a\xad\xa6\xf1\x12\x4f\x66\x17\xca\x1e\x24\x01\x92\x9d\xb9\xf8\xee\xcd\x95\xc1\x95\x7b\x8b\xa3\x9b\xe3\x86\xde\x25\x53\x43\xbd\xcc\x11\xb7\x97\x9d\x3d\x44\xcf\x1f\x8a\x81\xf2\xf9\x43\xec\x15\x6c\xdf\xcb\x15\x27\x7d\x6b\x8e\x98\x6d\xcf\x6c\x7c\x78\x90\xe8\xf8\x73\x17\x9d\xa4\xe0\xab\x14\xbe\x44\x23\x35\x72\xe9\x9a\x77\x5a\x36\xde\xfc\xbe\x4e\x59\xf9\x3c\x73\x7d\x3b\x57\x19\x48\xb2\xda\xf2\xe5\xf4\x75\xc1\x80\x6f\xc7\x5b\xc5\x87\xc6\xd9\x3a\x59\x17\x5f\x9f\x0e\x5b\x8a\xab\xe2\x67\xd3\xa5\xf4\x9b\x9b\xe7\x12\xaf\x2a\x80\xe9\x13\x24\x10\x63\x4b\xeb\xf3\xcd\x6c\x20\x55\xd2\x27\xb6\x50\x07\x78\x8a\x81\x9e\x54\x4f\xfa\x07\x00\x53\xbf\x3d\xe3\x0c\x3b\x51\x40\x12\xe8\xa4\xe8\xbd\xa8\xc4\xc1\x24\x0d\x92\x75\x84\x9f\x10\xcd\x67\x8b\xca\xc7\xce\xd1\x85\x21\x8a\xe8\xfb\x69\x72\x49\x8a\x7c\xd0\xaa\x80\x44\xe9\x24\x56\xda\x4c\xe9\x07\xf9\xbb\x09\x8e\x91\x96\xb3\x8b\xaa\xea\x4a\x01\x28\x90\x50\xd5\x1f\x1c\x46\x3d\xaa\xa4\xb1\xa1\xaa\xaa\x8a\x22\xbd\x10\x6f\x88\xae\xca\xec\xdb\x20\x0b\x69\xe9\x06\x43\xcc\x24\x96\x9f\xfa\x99\x81\x97\x48\x69\x44\x4b\x83\x70\xf5\xe4\x6e\xf4\xfc\xe2\xa0\xf1\x91\x00\x2a\xd4\xc6\x01\xcb\xf0\xc0\x14\x90\x00\x80\xd2\x5a\x74\x88\xcd\x41\xca\xff\x4f\xdc\x9b\x3e\xd9\x71\x5c\xf7\x82\xe7\x64\xd5\xad\x7b\xfb\xf6\xed\x46\xa3\xd1\x6c\x81\x20\x48\x41\x14\x48\xd1\x12\x45\x69\x08\x4a\xd6\xe2\x27\x79\x91\x57\x79\x26\x34\x5e\x43\xe1\x78\xb2\x47\x11\xe2\x97\xf9\x8f\x40\xdb\x11\xf6\x17\x87\x17\xf9\x83\x17\x8d\xc7\x21\xd9\x63\xca\x4f\x4f\xb6\x45\xca\x96\x44\x59\xa2\x28\x10\xa0\x48\x10\x68\x00\xbd\xf7\x5d\xab\x32\xe7\x43\x55\x56\x9d\x3a\xf7\xe4\x52\x0d\xc8\x2f\x23\xba\x6f\x55\xe6\xc9\x93\x27\xb7\x93\xbf\x3c\xb9\x14\xb6\x41\x0b\xe5\xd1\xda\x56\x5e\x87\x35\x7e\xad\xa5\x27\x02\x52\xa8\x30\x75\xc3\xad\xc3\xa9\xdd\x52\x00\x57\x60\x60\xdc\x2b\xf6\x7f\xb4\x31\x7d\xf5\xad\x8d\xd9\xb5\x93\x7e\xb1\x0b\x08\xad\xcb\xe5\xec\xe9\x21\x7b\x23\x2e\xb4\x8f\x3c\xdb\xa5\x22\xb8\x7a\xf5\xaa\xfe\x95\x5f\xf9\x15\x69\x90\x95\x06\x67\x69\x20\xa0\x16\x02\x80\xe5\x86\x2f\xb5\x07\x1e\xc6\x67\xec\x9c\x1f\x08\xcf\x92\x93\x68\x43\xed\x93\x82\x04\x5f\x7c\x5f\x1a\x52\x9c\x98\x99\x06\xa5\xf5\xf1\x97\x2c\x1a\x52\x3a\x92\x3c\x4b\xb3\x16\x07\x6f\x97\xa2\x0a\xc9\xc3\x5d\x97\x41\x94\xd7\x85\x94\xa6\xc4\xd7\x05\x24\x25\x7a\xca\x33\xa4\xdf\x7c\x7a\x31\xa4\x80\x63\x74\x9d\xab\xfc\xb9\xe3\x79\x95\x00\xa2\x2f\x4e\xa8\xcf\xc4\x0e\x14\x52\x9b\x88\x29\x6b\xfe\xeb\x6a\x7b\x3c\x4d\x57\x5a\x2e\xbe\x4b\x8e\x02\x15\xee\x0c\x02\x2c\x12\x9d\x4f\x53\x3d\x35\x68\xe6\x52\x7c\xba\xb7\x65\x79\x92\xba\xbc\x61\xb6\xb5\x4c\xc4\x36\xd4\xf2\x7d\x2d\xd4\x7f\x79\x49\x4a\x26\x66\xe0\x46\xe7\x09\x4c\xa7\x3d\x7d\xc2\xf3\x47\x37\xe8\xda\xf7\x8e\x27\x8c\x5c\x7d\xca\xd5\x27\x25\xbd\x11\x6a\x3f\x9c\xbf\x14\xd7\xdb\x47\x5d\x0d\xd0\x47\xcf\x05\x72\x01\x18\x4e\x47\xc3\xb8\x5f\x48\x59\x2a\x80\xf2\x82\x21\x72\x46\x1f\x00\x5a\x6b\x7a\x0a\x11\x53\x44\x4c\x11\x30\xcd\x0a\x1c\x9e\x3b\xe9\x3d\xf6\x8e\xa3\xec\x99\xac\x50\xe7\x4b\xfb\x5a\x83\xa8\xdb\x0d\xd3\x22\x85\xe5\x5d\xaf\x1c\xa4\xd0\xdf\x86\xc8\xd8\xbd\x5d\x4b\xae\xf5\xe1\x2c\xc2\x53\xe2\x84\xb2\x77\x05\x6a\x2c\x3c\x6a\xf6\xe5\x2c\x12\x33\xbd\xb5\x3e\x7f\xf5\xfa\xe6\xf4\xd5\xfd\x95\xfc\xb6\x69\x40\x8b\xdd\x88\x3b\xb5\x37\xe3\xda\xcd\xb8\xd0\xdc\x8c\x5b\xbb\xa2\x28\xe0\x97\x7f\xf9\x97\xd5\x97\xbe\xf4\x25\xde\x08\x7d\x0a\xd6\x35\xbb\x96\x94\x95\x6b\xe6\xe5\xe3\x25\xcd\x8c\x43\x8d\x9a\x5b\x00\x42\x79\x71\x75\x4c\x5f\x27\x74\xc9\xe3\x02\xde\xbe\x4e\x4c\xc1\x19\xa7\xed\x3a\x43\x89\x19\xc4\xb9\xf3\x81\x0e\x9f\x6c\x3e\x7e\xb1\x83\x8b\x54\xde\x1c\xac\x86\x66\x63\x12\xd8\x74\xa5\x27\x0d\xe2\xa1\x01\x58\xf2\x77\x29\x62\x5f\x9c\x28\x65\xec\xe0\x11\x0b\x72\x7c\xfc\x43\x3a\x3a\x14\xb7\x4b\x1f\x91\xca\xd4\x07\xa0\x38\x4f\x1f\x2f\xdf\xd8\xb2\xf4\x61\x45\xc9\x19\x63\xc0\x20\xe8\x79\x6a\xe6\xc7\xfd\x62\x7f\x5e\x7e\x70\x56\x04\x15\x58\x05\xb4\xb6\x0f\xd0\x30\x1b\xcf\xb4\x41\x8b\x74\x92\xc3\x98\xe6\x43\x8d\x74\xe9\x88\x92\x1a\x43\x6c\xf0\xd8\x8e\xdb\xca\x34\x9a\x7c\x96\x14\xc7\x27\x59\x31\x16\x33\x09\xcb\x00\xa6\x72\x31\xfa\xc5\x35\x71\x08\xb5\x39\xd7\xc4\xcf\x86\x49\xba\x4a\xea\xef\x21\xbd\xa5\x00\xe8\xae\xea\xe5\x84\x78\x02\x2e\x81\xe9\x7b\x68\xf6\x45\x69\x62\x85\x95\x06\x07\x69\xc3\x91\x82\xea\xf8\x33\x02\x0c\xce\x4e\x7a\x9b\x8f\x1c\x66\x3f\xb1\x3e\x4b\x9e\x54\xd5\xe7\xca\xc5\x4d\x50\x66\xd9\x5f\x02\x2b\xd4\x71\x24\x6e\x81\xc5\xb2\x99\xb1\xa4\xe0\xf4\xcd\xc7\x17\xdb\xf1\x96\xf8\x42\xdb\x88\xc9\x25\xda\x1d\xe6\x6f\xbc\xb6\x35\xf9\xee\xdd\xd1\xe2\xad\xea\x8b\xcf\x63\x28\x6f\xc8\xad\xbf\x45\x04\xd5\x75\xfe\xd5\x09\x22\xfe\xa5\x67\x2d\x2c\x0f\x01\xc8\xca\xc5\xa5\x8c\x62\xfd\x5d\xbc\xbb\xf2\x8d\x7d\x76\xf1\xeb\xca\x27\x26\x1f\xf7\x33\xcb\xed\x22\xd7\xfd\xca\x13\xc3\x53\x7a\xee\xc2\xcf\x57\xde\x5d\xd2\xa4\xcf\x5d\x74\x0b\x57\x86\x92\x8b\xa1\x75\xe9\xc0\x90\xa2\xe5\xb3\xc8\x58\x99\x5c\x32\x72\x79\x7c\xb4\xae\x81\xc0\xe5\xdf\x15\xb8\x75\x71\x31\x03\x92\x2b\x8f\x54\x6e\x89\xfe\x34\xe5\xd9\x72\x1a\x8d\x3e\xee\x17\x7b\xf3\xd4\xec\xaf\x2c\x60\x1b\x8d\xb0\xa4\x03\x50\x7b\x18\x20\x3b\x07\x18\xf0\x30\x35\x22\x41\xe1\x0b\xcf\xd5\x7c\x98\xcd\x60\xa9\x7e\x47\xa8\x40\x11\x1d\x18\x80\x8c\x0d\xf5\xd2\x52\x99\xb0\x46\x98\x8f\x33\xbd\xbb\xbf\x92\x1f\xb2\x03\x2a\x65\xbc\xe6\xd6\x60\xc9\xb9\xca\x96\x87\xf3\xe7\xfb\xa5\x75\xa5\x7d\x2a\xbd\x1b\x42\x60\xa1\x44\x68\x78\x0c\xf8\x08\xa1\x36\xca\x9b\x77\xfc\xa5\x46\x4c\xf6\xb7\xd0\xeb\xfd\xb3\x5e\x81\x83\xed\xa3\xec\xf2\xf9\xc3\xec\x83\xbd\x5c\x9d\x07\x80\x6a\x43\x94\xb0\x15\x0a\xa1\xde\xe3\x02\xb0\x6c\xf2\x5b\x76\x46\x30\x1f\xda\xe3\x71\x12\x6e\x97\x41\x50\x93\x06\xdf\xf7\x12\x30\x21\x56\xee\x70\x90\xef\xfc\x60\x6b\xfc\xad\xb7\xce\xcc\x5e\x9f\xa6\xda\x1e\x7d\x3e\xae\xf6\xb3\x4c\xab\xfd\x2c\xd6\xda\xa2\x81\x6c\xc6\xad\x4e\x10\xd5\x68\xfc\x17\x7e\xe1\x17\xa4\x59\xb2\x04\x18\xb5\x10\x26\xbd\xfb\x9e\x41\x78\x96\xf8\x71\xde\xdc\xf9\x78\xfb\xd2\x92\xe4\xe6\x61\x3e\x39\x5d\x74\xae\x7c\xfb\x78\xc7\xca\xe3\x7b\x8e\xe1\xed\xe2\x47\xdd\xfd\xc4\x09\x95\xdd\x7f\x85\x8b\x1d\xe4\xef\x87\xb6\x0b\x7d\xac\x82\x8e\xe1\x13\x4b\xdb\xf5\x99\xeb\xd9\x07\xc9\xdb\xc5\xc3\xe5\xaf\x1c\xfe\x2e\xb7\x54\x3e\x74\x8f\x0b\xfd\x5c\x09\x90\x31\xc4\x4e\xdc\x34\x42\x7e\x38\x28\x8e\x27\x69\xb1\x0b\xe0\x00\x2d\xc4\xf1\x65\x7d\x6a\x9c\x2f\xad\x26\xcb\x9b\x77\x4b\x39\x04\xcf\xca\xb5\x74\xbd\x30\x48\xe0\xd2\xf8\x81\x60\x10\xf4\x2c\xd5\x87\x07\x2b\xf9\xce\xde\x70\x71\x48\x40\x8b\x06\xa8\x41\x4b\xab\x1c\x88\xd5\xc5\x07\x58\x28\x8d\xf4\x7c\xbf\xb4\x31\x2e\x5a\x67\x50\xa5\x73\x3f\x09\x4b\x8a\x8b\x86\xf9\x78\xf3\x99\x8d\xd3\x71\x53\x60\x55\x29\x76\xb9\x28\x03\x80\xcc\x18\x93\x6e\x9d\xf4\xb6\x2e\x1c\x66\xef\x5b\x9d\x27\x8f\xa3\xbd\xda\x9f\x9c\xa9\xf7\x39\xde\x40\x97\xf7\xcf\x2e\x83\x11\xda\xb0\x00\xe4\x76\xea\x68\xbb\xad\xe3\x77\xa1\x65\x29\x63\x4a\xd4\x3d\x4b\xf4\xf8\x47\x1b\xd3\xef\xdc\xd8\x9c\xbe\x36\xc9\x8a\x7d\x20\xcb\x43\xec\x04\xd1\x1c\x00\xec\x7d\x2d\x4b\x40\x13\x11\xe1\x67\x7e\xe6\x67\xd4\xdf\xff\xfd\xdf\xf3\x19\x0c\x6f\xe0\xbc\x7e\x97\x14\x02\xc4\xd7\xb3\x7d\xf6\xb5\x3b\x27\x58\x65\xbf\xae\x74\x5c\xb3\x3b\x17\x0d\x97\x5d\x1a\x80\x25\xa0\xce\xc3\x24\x59\x7c\xbc\x29\x1d\xc0\x72\x19\xf9\x1c\x8f\xe3\x1b\x60\x5d\x75\xeb\x1b\x2c\x7c\xb3\xe1\x18\x19\xbb\x0c\x60\xa1\x7a\x0d\xd5\x8d\xcf\x75\x01\x50\xff\x55\xc0\x2b\x04\xc6\xbb\xc6\x3b\x2d\x6f\x5a\xc7\x5d\xf3\x1b\xa2\x8f\xa9\x33\x57\x5b\x72\x81\x70\x6f\x9f\xa0\xf7\xb8\x38\xf8\x6a\xa8\x26\x6e\x85\x32\xfa\x70\xb0\x38\x3c\x58\xc9\x6f\xe6\xca\x4c\xad\x86\xe6\x7a\x9a\x6f\x9c\x95\x5c\xbd\x75\xd2\x2c\x8f\x30\x16\x94\x48\xf1\xb9\x8e\xe7\x7b\x67\x5a\xab\x3c\x76\x73\x8b\x32\xf3\x71\x56\xec\xef\xaf\xe4\xb7\x72\xb5\xb4\xec\xdf\xd2\x43\x7c\x63\x32\x3c\xf8\x3a\xee\x1a\x2f\x46\xc7\x46\xc5\x93\x06\x9b\xd0\x2c\xab\xab\x40\xb1\x96\x18\xef\xcc\xe6\x77\x7e\xe7\x77\xea\x4b\x75\x00\x5a\xdf\x65\xa8\xaf\x3c\x06\x80\xac\xa7\xd5\x70\xfb\x28\xbb\xbc\x75\xdc\x7b\xaa\x57\xa8\x2d\xa8\x2c\x21\x16\x60\x88\xa8\x18\xa0\xe5\xdb\xb2\xcc\x58\x60\x61\x2a\x73\x5e\xb0\x05\xdb\xb5\xd1\x36\x61\x6b\x2f\x8d\xd0\x38\x6b\xd9\xa4\x5d\xe1\x84\x89\x41\xd0\x77\x57\x17\xd7\x7f\xb8\x35\xfd\xde\xe1\x20\xbf\x53\x20\x1c\x03\x82\x3d\xf2\x6c\x97\x88\xf8\xd7\x9e\xeb\xdb\x71\x2d\x22\x47\x44\xf8\xcf\xff\xfc\x4f\xf8\xc7\x7f\xfc\xc7\x98\x01\x32\x66\xf6\x27\x0d\xa4\x52\x3c\xa9\x91\xfa\xf8\xbb\xe8\x42\x03\xb1\xc4\x87\xd3\xb9\x00\x43\xec\x6c\xd7\x07\xba\x24\x1a\x9f\xdc\xbe\x4e\xeb\x02\x94\x31\x1d\xbd\x0b\xb8\x88\x49\x47\x8a\xe3\x03\xae\xa7\x1d\xa4\x5d\xb4\x21\xf0\xc3\x5d\xa8\x0e\x1f\x84\x32\x8f\xc9\x63\xcc\x20\x7d\x5a\x39\xee\x37\x0f\xbe\xf7\xd3\x02\xc5\x98\x49\x86\xcb\x79\xc7\x02\x17\xff\xbf\xfe\xeb\xbf\xae\x03\x5b\x1f\xc0\x65\x17\x6c\x22\xa2\x36\x00\xf3\x71\xa6\xc7\xb7\xd6\xe6\xd7\xa7\x3d\x7d\xd7\xd4\x69\xb4\x01\x0c\xb5\xa3\xcb\xea\xbf\xa2\xaf\x14\x78\x79\xdf\x56\x23\x83\x34\xde\xb4\xc0\x10\xdb\xc4\x8b\x04\xe4\xb4\x56\x7b\xb0\xde\xd7\x38\xde\x5f\xc9\x6f\xde\x19\xcd\x6f\x03\xd6\xa7\x42\xad\x25\xbd\xb5\x44\x44\xbe\x39\x27\xb9\x50\x1d\xbb\x26\x5c\x0f\xb2\xdd\x75\x8d\xa7\xa8\x07\x07\x28\x2e\xe5\x15\xe3\xba\x34\x38\x1a\x1e\x54\x06\xab\xab\xab\x00\x20\x6e\x36\x52\x40\xae\xf8\x7f\xe8\xb8\xb7\x75\xfe\x28\x7b\xdf\xea\x3c\xb9\xa4\x0c\x54\xf7\xb6\xb4\x97\x71\x44\x54\x0c\xe4\xd6\x42\xc1\x32\x83\x14\xf9\x2c\xc5\x15\x18\xb3\x35\x46\x03\x00\xc8\x3e\x34\x44\xd7\x4d\x9b\xc6\x8a\x4e\x6c\x64\xa0\x3c\x45\x74\x63\x73\xf2\xdd\x5b\x6b\xb3\xb7\x16\x89\x39\x36\xd0\x1c\x7d\x66\x97\xcc\xd5\x47\x9e\x01\x96\x06\x3f\x78\xe5\x95\x57\xe0\xab\x5f\xfd\xaa\x1d\x70\x7c\x83\x0e\x6f\x23\xd4\xd2\xe0\xa2\x07\x0f\x0d\xb0\xf0\x50\x1c\x57\xa7\x92\x9e\xb9\x6c\x2e\x85\x4c\xf3\x2d\xa5\xe7\xea\xbc\xb1\xf2\xb8\xd2\x77\xc5\x91\xde\x5d\xf2\xb8\xd2\xf7\xf1\x0e\xc9\x22\xa5\xe3\x73\x12\x9d\xab\x5d\xdc\x2f\xb8\x8a\x75\x21\x30\xd0\x55\xe1\x9e\xc6\xfa\x15\xeb\xdf\x25\x1d\x57\xbb\x88\x91\x2f\x04\xf8\x62\xac\x75\xa7\x4d\xa7\xcb\x64\x87\xf3\xe8\xe2\x6a\x1e\xf7\xee\xdd\xab\x3d\xc9\x00\xae\x2b\xcb\x3c\xd5\x83\xb9\x01\x93\xe7\xca\xcc\x6f\x9e\x99\xbd\xb5\xb7\x92\xbf\x51\x28\x33\x37\x60\x6a\x1d\xdd\x4c\x52\xb1\x35\xe9\x5d\x1a\x19\x28\x3d\x94\x3a\xbe\xf5\x21\x5d\xc1\x35\x96\x16\xd3\x58\x63\x6a\xb0\xe3\x5e\x17\xd0\x68\xf2\x71\x4f\xef\xdf\x5b\x5d\xbc\xb9\xbb\x92\x1f\x02\xb9\x48\x14\xaa\xc9\x29\x40\xfb\x8a\x0b\xb6\xff\xa5\xcb\xa4\x27\x76\x92\xd7\xc5\x9d\xa6\x9f\x73\x1d\xac\xa9\x67\xec\x60\xd4\x25\x91\x2e\x33\xa0\x28\xbf\x6a\x59\x88\xca\x44\x41\x4b\x96\x68\x18\x3c\x7c\xd8\xbf\xbc\x75\xd2\x7b\x2a\x2b\xad\x2d\xaa\xb5\x3e\x48\x79\xd1\x5f\x8a\xce\x6b\xfa\x6e\x4b\x3e\x34\x50\x42\xe6\x74\xb3\x96\xe4\xc4\xfd\x2f\x2d\x59\x0c\x2c\x12\x33\xbe\xbd\xb6\xb8\x76\xfd\xec\xf4\xb5\x69\x4f\xef\x6b\xa8\xef\x69\xa9\x97\x87\xec\x97\x9e\xe9\x7d\x2d\xf6\x56\x5c\xcb\xef\xea\xd5\xab\x7a\x7f\x7f\xdf\xbe\xd2\xfa\x72\x59\xcb\x5c\x20\x56\x02\xbe\x92\x0b\xf1\x76\xc5\xf1\xbd\xbb\x9c\xab\x2d\x4b\x1d\xc0\x95\x77\x4a\x03\x8c\x26\xa6\x7d\xc7\x00\x24\xce\x5f\x4a\x2f\x24\x8f\xf4\xcb\x5d\x2c\x08\xf1\xc9\x15\x53\x3e\xf7\x9b\xae\x0f\x3c\xbb\xc0\xa3\xab\xbc\x42\xfa\x44\x7a\xb6\xe9\x84\xca\xd3\x15\xd7\xe5\x42\xb2\x86\xe2\xd1\xb8\xb1\xc0\x41\x4a\x33\xe4\x62\x69\x25\xde\xa7\xe9\x13\xb1\xe9\x47\xe7\x81\x7e\xab\x48\x90\x4f\x43\x09\x62\x6a\x0b\xb4\x01\x98\xef\x0d\xf3\xfd\xdb\x6b\xf3\x6b\xd3\x54\xef\x1b\x00\xcd\xf7\x00\x78\xf5\x3d\x21\xf5\x6d\x64\xe4\x80\x87\x4f\xa1\xeb\xf8\x66\x79\x22\x4b\xe3\x2c\x12\x33\xde\x1b\x2e\xde\xbc\x3d\x9a\xff\x68\x91\x98\x31\xb0\x8b\x44\x41\xb0\xba\x00\x88\xf7\x73\x71\x17\x53\xc6\x5d\xf4\xcb\x83\x00\xec\x96\x37\xa7\x53\x3c\xd1\x58\xe5\xe0\x9b\x59\x8a\x89\x38\x04\xe2\xfc\x78\xd8\x92\xb3\xa0\x85\x5c\xba\x43\x37\xe5\xa6\xe7\x4e\x7a\x5b\xdb\xc7\xbd\xf7\xad\xce\x92\x4b\xca\xc0\xa0\xb5\x76\x08\x76\x09\xc7\xee\xd6\xae\x78\x36\x7c\x01\x98\x69\x8f\xc7\x6f\xfc\x1a\x73\xa2\x5d\xde\x31\xa6\x41\xcf\x76\x97\x38\x37\x05\x02\x18\xc0\x0a\x9a\x53\x64\xdd\x5e\x47\x35\x2d\x8f\x32\x6d\x03\x05\x42\x7e\x38\xc8\x77\xae\x6f\x4e\xbe\xbb\xbb\x9a\xdf\x36\xcd\xe9\x21\x7b\xe4\xb9\x3e\x41\x04\xd5\xbe\x16\xfa\xf1\x44\xb6\x59\x0d\x5e\x79\xe5\x15\x69\xd0\x94\x1a\x93\xa4\x70\x39\xa0\x91\x00\x8e\x0b\x24\x48\x20\x28\x14\xdf\xc7\xe3\x34\xfc\x78\x1b\x0b\xf1\x93\xfc\x7d\x71\x5c\x74\x5c\x36\x17\x8d\x0f\x34\x4a\x65\x1f\xaa\x07\xd7\xe4\x24\x26\xdf\x3e\x19\x7c\x4e\x1a\xcc\x7c\x03\x36\x97\xcf\x37\xe0\x4b\xbc\x63\x01\xb0\x4b\x26\x9e\x7e\x17\x7e\x2e\xc0\xc3\xc1\x90\xc4\xdb\x55\x3e\xb4\x5e\x7c\x3a\x57\x92\xb5\x0b\x60\x91\x9c\x2b\x1d\x1f\xb8\xb4\xe9\x86\x00\x5f\x0c\xf8\x8f\x91\x65\x89\x87\xbd\xe7\x8b\x0c\xd4\x1a\x00\xa4\xcd\xa9\x39\x00\xcc\x01\x21\x5f\x24\x66\xfc\xd6\x99\xd9\xf5\xfd\x95\xfc\xcd\x3c\x31\xd3\xe5\x0f\xea\xd2\x25\xa7\x65\xe1\x9a\x13\x45\x2d\x5f\xf2\x68\x6a\x1d\x4e\xb7\x05\xd0\x05\xa9\xd6\x56\x80\xfa\xb1\x9d\xae\x46\x93\x1f\xf7\xf3\x9d\x5b\x6b\xf3\x6b\x77\x47\x8b\x5b\x06\xda\x13\x54\x9b\x37\x7b\x3f\x97\xcd\xf7\x29\x96\x8a\xf8\xbb\x0b\x17\xf0\x70\x5f\x9b\xf1\xa5\xef\xc3\x14\x2e\x3d\x1c\xdd\x40\x35\xf1\x73\x29\x5e\x97\x90\x5d\x10\x59\x2b\xdd\xc7\x1f\x7f\x5c\xfd\xfa\xaf\xff\xba\x62\x57\x39\xd7\xb3\x7c\x63\x4c\x6a\x2f\x9c\x03\x03\xd9\x85\xc3\xfe\xa5\x73\x27\xbd\x27\xb3\x42\x6d\x02\xa0\xb2\xbb\x4a\x4a\xc4\xdb\xac\x45\xb6\xef\x72\x61\x8b\x8c\xd0\x80\x13\x7b\xae\x9e\xef\x8d\x31\x04\x29\x97\xcb\x3d\xcd\x25\x3f\x48\x78\xb5\x90\x78\xe5\x69\x08\x5c\xe1\x00\x09\x5b\x11\x9b\x47\x03\xa0\x27\xbd\xe2\xf0\xe6\x99\xf9\xab\x6f\x9c\x9d\xfe\x70\xa1\xf4\xb1\x01\x63\x3f\x9e\x38\xa5\x1f\x4f\xac\xfe\xf8\x32\x11\xd8\x93\x44\xd7\xae\x5d\xa3\xe5\x68\x9d\x4f\x19\xd1\x5f\xa9\x11\x4b\xd6\x14\x88\xf0\x77\x35\xd6\x50\x7c\x17\x9d\xab\x23\x48\x74\x5d\x3b\x9b\x0b\x60\x4b\x65\x14\x9a\x7d\xc7\x28\x6b\xd7\x20\x1e\x5b\x26\x52\xba\x96\x6f\x0c\x3f\x5f\xbe\xba\xe4\x95\xa6\x69\x9f\x7d\x83\x9c\x0f\x1c\x49\x20\xc0\xd7\x6e\x69\x1c\xee\x7c\x83\xa8\xab\xec\x43\x69\xfa\xd2\xf1\x01\x09\x5e\x26\x2e\x1a\x29\x3c\x16\x94\xb9\x5c\x08\x64\xf8\x9e\x5d\xf5\x10\xaa\x93\xd3\x02\x60\x17\x7d\xed\xc7\x2c\x2e\x34\x9c\x7e\x93\xcd\x0e\xf4\xb5\xbe\xdc\x59\x9b\xbf\xfd\xd6\xc6\xec\x7b\xc7\xfd\x62\xa7\x40\xc8\x6d\xc4\x52\xf7\xd3\x3d\x23\x24\xa0\xfa\xad\x75\xb6\xb4\x67\xa0\xda\x0b\x80\x15\x1f\x1a\xbf\xd4\xeb\x64\x70\x30\xad\x98\x60\x0c\xe5\x61\x60\x96\xea\xc3\x9d\xd1\xe2\xfa\xcd\xf5\xd9\xeb\xe3\x9e\x3e\x46\xc4\xb9\x31\xc6\x5e\x2c\x6a\xc1\x98\xcd\x6b\x25\x6f\xf9\xfb\xdb\xbf\xfd\xdb\x92\xae\xe5\x65\x04\x84\x26\xb6\x2d\xc7\xf0\x8b\xa1\xe5\xbc\x7d\xe0\x56\x75\x4d\x38\xd4\xc8\x7c\x8a\xc5\xa5\xf8\x5d\x33\x41\x00\x00\xb8\x76\xed\x9a\xfe\xe2\x17\xbf\xa8\xd9\xf2\x10\x20\xa2\x3d\x02\xad\xa0\xb2\xb6\x8c\x66\xc9\xfa\xf6\x51\xf6\x13\xab\xf3\xe4\x62\x63\x6d\x69\x1a\x86\x61\xfb\x5c\xda\x36\x93\xb6\xb3\x7b\x5e\xec\xb7\x81\xe4\xcd\xbc\xcb\xcf\x75\x7b\x36\xcb\x7e\xdc\x21\x22\x60\x04\x5d\xb5\x44\x34\xdd\x5d\x5d\xbc\x79\x63\x73\xfa\xea\xc1\x4a\xb1\x0b\xa5\x95\xc5\xde\xd3\x52\x2f\x13\x41\xb3\x49\xab\x05\x5a\x6c\x7a\x2f\xbc\xf0\x82\xfe\xc6\x37\xbe\xc1\x93\x08\x81\x00\x9f\xb2\xec\x82\xc6\x5d\xca\xd7\x55\xff\x9c\x3e\x34\x9b\x0b\x29\x7d\x9f\x4c\x31\x00\xc6\xa6\xef\x03\x07\x31\xc0\x8e\x87\xb9\xde\x5d\x32\x48\xfe\x21\xde\xbe\x01\x5f\x2a\x0f\xfe\xee\x02\x11\xb4\x4c\x62\x00\x0d\x4f\x23\x04\x12\xa8\x8b\x55\x9c\x54\xa6\xae\x83\xa8\x6f\x52\x26\x39\x1f\x08\x73\xa5\xe9\x93\xc3\x07\x22\x25\x3e\x5d\x2c\x2b\x5d\x00\x5f\x8c\x8b\x19\x0f\x24\x40\x16\x02\xd7\xa7\xf6\x4f\xd3\x74\xc9\x8f\x1c\x0f\xa6\x7f\x76\x19\x7d\x6e\x8c\x99\x8f\x33\x7d\xf8\xfa\xe6\xf4\xfb\x6f\xaf\xcf\x5f\x9d\xf4\x8a\x7d\x03\xa5\xc5\x42\xda\x6b\x62\x68\x00\x42\x73\x69\x9c\x6b\x63\x8a\xe4\xc8\x04\xd9\xf0\xd9\x2b\x34\x7b\x1f\x0d\x40\x75\xcb\xaf\x99\xde\x5b\x5d\xbc\xf9\xa3\x8d\xe9\x6b\xf7\x56\x17\x3b\x95\xb5\xc5\xee\x6f\xa9\xb7\x03\x90\xfc\xd5\x7b\x7a\x10\x11\xfe\xf4\x4f\xff\xd4\x07\xa0\xef\xa7\x4d\x49\xf1\x24\xdd\x23\xf1\xf5\xb5\x09\x9f\x8e\x68\x59\x5c\x24\xa5\x25\x31\x74\xcd\xc8\x78\xa2\x3c\x21\xdf\xc0\xc2\x05\x55\x00\xe5\x17\xa0\x01\xc4\x23\x6e\xca\x18\x93\xd6\xb7\xe4\x96\xa7\x8a\xb2\x8b\x07\xfd\x8b\x9b\xe3\xf4\xa9\x5e\x81\x5b\x60\x9a\xcf\x01\x58\x4b\x5e\x8d\x7a\x09\x23\xfa\x4e\xd1\xb5\x05\x2b\x7c\xbf\x8b\xbc\x4e\x09\xd5\x31\x65\xd2\x9e\x6d\xa3\x33\xa6\xc5\x1f\x80\xf1\x40\x96\x06\xdb\x6b\x63\x00\xa0\x40\xc8\x8f\xfa\xf9\xdd\x37\x37\x66\xaf\xde\x5c\x9f\xfe\x08\xd8\x12\x11\xd9\x90\x6b\xd7\x6e\x5b\x4b\x44\xd0\xcc\x36\x00\xa0\xfc\x18\x59\xf5\x48\x7f\x25\x05\xee\x9a\x89\x4a\x0d\x50\x52\xf4\x3e\xe5\xef\x7a\x77\xf1\xf2\xd1\x49\x83\xad\x0b\xec\xf8\x66\x92\x3e\xb9\x5d\xe9\xd2\x32\x71\xc5\x97\xe2\xf0\x67\xd7\xbb\xcb\x9f\xa7\x19\xe2\x4d\xf9\x85\x06\x30\x1e\x9f\x0f\x3e\x3c\xcc\x95\x47\x29\x3d\x57\x5a\xdc\xf9\x80\x64\x68\x20\x93\xca\x86\x86\x87\x40\x86\xc4\xcf\x25\x1b\xf5\xf3\xe9\x4f\x09\xa0\xf9\xca\xc7\x05\xba\xa8\xf3\xd5\x5d\x17\x7f\xc9\x85\x00\x94\xf4\x4e\xfd\xa5\x3a\xe8\x02\xca\x63\x64\x5a\x2a\xbf\x3c\xcf\x5b\x3c\xe8\x27\x4d\x00\x5a\x27\x70\xac\xae\x9c\xdb\x65\xf6\x9d\xb5\xf9\xad\x6b\x9b\x93\xef\xde\x1d\x2d\xae\xcf\x52\x3d\x66\xb6\xf8\x8a\xdf\xf2\xd8\x40\xac\xe2\x84\xb0\x09\x5b\x5a\x0e\x62\x64\xc8\x00\x0b\x1f\x67\x0a\x34\xf9\xe1\xa0\xb8\x75\xe3\xec\xf4\xbb\x6f\x9d\x99\xfd\x70\xd6\x33\xc7\x40\xb6\x05\xd8\x1b\xd1\xed\x12\x51\x35\x86\xd4\x56\x17\xc7\xf7\xe7\xa8\x8b\x01\xe6\xf4\x39\x34\x91\x0a\xa5\x17\x9a\xa8\x84\xfa\xa6\x02\x08\xdf\x9c\xeb\x1b\x38\x7c\x8e\x2b\x36\xfe\xec\xe2\x51\xfb\xdd\xbe\x7d\xbb\x7e\xb6\x77\xb5\xd8\x5f\xf2\x95\xcf\x14\x00\xb2\xb4\xc0\xc1\x23\x07\xfd\x9f\x18\xcd\xd2\x4b\x89\xc6\xa1\x05\x01\xf6\xf2\x1d\x7a\xfd\x71\x7b\x49\xc7\x80\x31\xe5\xb6\x5d\x7b\x9a\xa7\xb5\x6c\x63\x0c\x18\x6b\xea\xab\x02\xeb\x9b\x10\x89\xd0\xf4\x08\x5b\xc9\xd5\x2e\x13\xd9\xa3\xd8\x58\xa3\x6b\x74\xf0\x28\xc9\x6b\xa9\x00\x01\x41\x83\x81\x59\xaa\x8f\x77\xd6\x16\xd7\x6f\x9c\x9d\xbd\x3a\xed\x95\x1f\x50\x24\x7b\x5a\xe8\x86\x5c\x7b\x3b\x6e\xfd\xc5\x67\x5b\x9e\x8e\xcd\x59\xb6\x3e\x7c\x56\x15\xd7\xc0\xef\xab\x57\x89\x6f\x48\x11\x87\x64\xf1\xc9\x4f\x9f\x7d\x9d\xa6\xab\x4c\xae\x34\xb8\xf3\xc9\xfb\xa0\xd2\xa0\xe5\x23\xa5\xe9\xe3\xe5\x8b\x13\xb2\x4a\xb8\xca\x34\xb6\x8e\xb8\x93\xda\x89\x14\xdf\x05\xd4\x78\x98\xc4\xab\xab\x1c\x31\xb4\x9c\x7f\x08\xac\x72\x99\xba\xe4\x55\x4a\xf3\xb4\xce\xd7\x4e\x68\xf8\xfd\x00\x25\x1e\xdf\x55\xc7\xae\xbe\xe3\xd2\x1f\xb1\xe9\x3b\xe3\x12\xfd\x6f\xeb\x2a\xaf\x26\xba\x76\xa9\x68\x0a\xe5\xc1\x8e\xb9\x41\x98\xbe\x79\x76\x7a\x63\x34\x4b\x36\xfb\xb9\x1a\x6d\x9d\xf4\x2e\xf5\x0a\x18\xd8\x4d\x06\xe5\x5e\xc8\x8a\xaf\x4d\x80\x20\x8f\xd6\xde\x48\xb6\x3d\x80\xc6\x31\x84\x96\x8e\x53\x2d\xbe\x55\xb8\x06\xa3\x4f\xfa\xc5\xdd\x37\x36\xa6\xdf\xbd\xb1\x39\x7d\xf5\x70\x50\xec\x92\xcf\xb8\x58\xfd\x4f\x27\xad\x75\x9b\x74\xdc\x9e\xdb\x55\x1f\x75\xad\x07\xd7\xc4\xd6\xa5\xdf\x63\x75\xe7\x52\x9a\x92\x52\x3b\x0d\xda\x8e\x51\x66\x54\x89\x86\x7e\x01\xa0\xbc\x70\xae\x55\xb1\xcd\x12\x51\x7d\x4b\x2e\x00\x64\x0f\x1f\x64\xdb\xe7\x4e\x7a\x4f\xf7\x73\xdc\x42\xc0\x14\x90\x6c\xb8\x65\x08\xa3\x8d\x7c\xab\x75\x47\xa1\xf1\x59\x7a\x24\xe8\xb9\x36\xe1\xb5\x96\x78\x4c\x1d\xb7\x8e\x46\x08\x10\xb0\xd9\x94\xd5\xde\xcc\xd2\x72\x34\x5d\x7b\x02\xaa\x50\x66\xbe\xbf\x92\xdf\xfa\xd1\xc6\xec\xd5\x3b\xa3\xf9\x6d\x28\xad\x2d\x53\x20\xdf\x22\x02\x62\x65\xa9\xd0\x77\xcb\xc2\x22\x6c\xce\xf2\x21\x5a\xd7\xe0\x2e\xcd\x20\x25\x5e\x5c\x99\x4b\x00\xc8\xd7\x76\x2c\x9d\x6f\x26\xa6\xc0\xdd\xc0\x39\x7f\x17\xf0\xf6\xb6\x3b\x70\x77\x42\x97\xa3\x32\xbb\x06\xb1\x18\x1e\x31\xe0\x82\xe7\xd5\xc7\x5b\x02\x74\x5d\x14\x17\xf5\xa3\xf1\x79\xbd\x4a\x75\xee\xe3\x1f\x1a\x9c\x5c\xf5\xc2\xe5\xf1\xa5\x1b\x2a\x17\xae\xe7\x42\x65\xe9\x8a\xe7\x93\x2d\xd4\x56\x39\x0f\x5f\xdb\xa5\x7e\x54\x0e\x2e\xbb\x4f\x26\x17\xaf\xd3\xb8\x50\x9b\x0a\xe5\xcb\xa5\x4b\x5c\xef\x3e\x9e\x4b\x72\xd8\xc9\x9a\xd5\x85\x64\x29\x85\x2e\x13\xe5\x50\x01\x00\x00\x18\x4f\x13\x7d\xf8\xfa\xb9\xc9\x7f\x5e\x3b\x37\xf9\xf7\xdd\xe1\xe2\x8d\x45\xb5\x59\xd7\x2a\xe7\xa5\x2d\x00\xd8\x80\x8f\x7a\xbf\x0b\x9f\xc1\x42\xfb\xbd\x05\x4e\x0c\x3d\x18\xd2\xf8\xd9\xbd\x97\xe3\xac\xd8\xbf\x71\x76\xfa\x9d\x57\xb7\xc7\xdf\xda\x1d\x2e\xde\x86\xf2\xbe\xae\xb1\x5d\xe2\x02\x62\x3d\x62\x4b\x45\xf5\x9d\x5d\x9e\xb2\xa2\x4e\xd2\x5f\x31\xba\x85\xd7\x07\x07\x1a\xa1\xfe\x6b\x5d\x8c\x2e\x68\xf9\x27\x42\x04\x53\x11\x53\x8b\x98\x6b\xdb\xb4\x2b\x3c\x04\x64\x5c\xf1\x5b\x7c\xae\x5c\xb9\x82\xe4\x23\x8a\x58\x2d\x11\x29\x63\x4c\x0f\x11\x33\x00\x58\x01\x80\x95\x0f\xbe\xb5\x76\xe5\xe1\xc3\xec\x67\xfb\xb9\xda\x56\x80\x09\xb5\xd4\xf1\xef\x00\x59\x7f\x8e\x7c\x69\xe2\x02\x60\x6e\x85\x51\x20\x8b\xe4\xae\x68\x6a\x69\x69\xb1\x60\x40\x45\x5a\x0e\x45\xd3\x0e\x30\x00\x30\xce\x8a\xbd\x37\x36\xa7\xdf\x79\xed\xa1\xf1\x77\xa6\x3d\xb3\x07\x00\x27\xc6\x98\x23\x44\x3c\x41\xc4\x71\x65\x6d\x99\x01\xc0\xa2\xfa\x2b\x00\xa0\xb0\xc8\xfb\xea\xd5\xab\xfa\xe5\x97\x5f\xb6\xa2\xf3\x3a\xa5\x56\x4f\x45\x7e\xe9\x60\xe4\xa2\xa5\xef\xb4\xce\x68\x98\xad\x37\xca\x17\x60\xb9\xae\x51\x88\x63\x65\xe0\xb2\xd1\x34\xed\x3b\x8d\x4f\xf9\x5a\x79\xb8\xe2\xa3\x16\x59\x1b\x46\xe3\x2b\x12\xc6\xf3\xaa\x60\x99\x3f\xe7\xc5\x69\x24\x99\x68\x39\xd2\x41\x97\x96\x03\xcd\x8f\x94\x57\x9b\x37\x57\xde\x79\x1e\x78\x1e\x8d\x10\x97\x03\x55\xde\x55\x78\x7e\x24\xb9\x79\xbf\x97\xca\xc2\x57\x3e\x5c\x16\x1a\xee\x4a\xc3\xc5\xc3\xf5\xce\x65\xa0\x6d\xc2\x55\x96\x86\xfd\x51\x1a\x5e\x5f\xbe\x74\xb8\x73\xa5\x29\x85\x4b\x7c\x5d\x32\x71\x7a\xd7\xbb\x54\x1f\x21\x99\x62\x1c\xed\x13\x5d\x65\x0a\xc5\x91\xda\xe4\x92\x7b\xe9\xa5\x97\xcc\x95\x2b\x57\x2a\x95\x8c\x80\x25\x4a\x50\x00\xa0\xb0\x74\x56\x4e\x05\x00\x09\x22\xaa\x59\xcf\xe8\xc3\x41\x71\x5c\x20\xe8\xe1\x3c\x19\x0e\x72\xb5\x96\x02\x26\x25\x8f\x76\xe2\x75\x46\xd9\xfd\xff\xb5\x2e\xe7\x63\x07\x36\x71\xe9\x38\x62\x48\x98\x8d\x73\x92\xe9\xbb\xd7\x37\xa7\xdf\xfc\xce\xc3\x27\xdf\xb8\xbb\xba\x78\xab\x48\xe0\x18\x4a\xfd\x6f\x75\xff\x04\x1a\xd0\xb5\x40\xc4\x02\x4a\xfd\x5f\xb7\x07\xf2\x09\x04\xae\xc7\x79\xf9\xd2\xba\x02\x12\xee\x6b\xbb\x31\x6d\x3b\xd4\x8f\xbb\xd4\x79\xcb\x49\x4b\x45\x3e\xd0\x11\x9a\x3d\x58\x17\xb2\xbe\x44\x39\x76\x55\xb1\x5d\x22\xb2\xfb\x5a\x52\x30\x90\x6d\x9d\xf4\x36\xde\x71\x94\x5d\x19\xe4\xc9\x05\x04\x7b\xe1\x1c\x2c\xb5\x2e\x6e\xec\xa8\x7f\x09\x9d\x04\x28\x1a\xe7\xf8\x18\xa2\x5d\x03\xb2\xd6\x9b\x9a\x5f\xf9\x20\xb5\x18\x2a\x5f\xb9\x0f\x66\x19\xfc\xe4\x89\x9e\xde\x5d\x9d\x5f\xff\xd1\xc6\xec\xd5\x83\x41\x71\x17\xda\x1f\x50\xac\x77\xc4\x63\xf3\xc5\xe7\xa5\x0d\xb9\xcc\xb9\xac\x0f\xf4\xd9\x65\x9a\x8b\x9d\xb1\xbb\xe8\x7c\x6d\x26\x14\x27\x24\x53\xac\x3c\x31\x69\xf9\x9e\x63\x65\x08\xb5\xf3\x98\x38\x5d\xd2\x09\xd5\xb7\x6f\x36\xc3\xeb\x25\xa6\xfe\x63\xe4\xa4\xce\xa5\x33\xba\x5a\xb4\x42\xf9\x7d\x10\xbc\xef\xc7\x3f\x24\x47\x57\xf9\x24\x6b\xd9\xfd\xc8\xd7\xa5\x4c\x38\xd8\x3f\x4d\xbd\x76\xe5\xd1\xd5\x9f\xa7\x27\x59\x68\xb8\xb3\x56\x69\xbb\x94\xa2\xa0\x1c\x03\xc7\xd0\xdc\xbe\xae\x8e\xb3\x02\x5e\xdd\x1e\xff\xc7\xb4\xa7\xc7\x4f\xed\x0c\x8f\xcf\x1f\x66\x4f\x0e\xf2\x64\xd4\x9a\xf8\x1a\x02\x36\x2a\xa5\x5d\x8f\x1f\x7c\xa2\x6a\x00\x0c\x94\x11\xca\x71\xc0\xd4\x56\x75\xa8\xb7\x34\x94\x84\x1a\x8d\xde\x5f\x29\x6e\xbe\xfa\xd0\xf8\x1b\xdf\xdb\x3e\xf9\xce\xd1\xa0\xb8\xad\x11\x0e\x8d\x31\xc7\x88\x78\x4c\x0f\x65\x40\xb3\xb7\x51\x57\x79\x6b\x59\xdb\x4f\xe9\x4e\xdb\x77\x24\x8c\x00\x10\xd7\x0e\x62\x79\xd7\xcf\x29\x2c\x27\xe8\x03\x28\x21\x05\xed\x12\xac\x73\x61\xba\x8e\x40\x03\x59\x26\x52\x06\xb2\x77\xdd\x5b\xb9\xbc\x36\x4b\x9e\x4a\x34\x0c\x2d\x50\x40\x00\xe7\x47\xb3\x38\x54\x6f\x6d\x8e\x32\x4d\xe3\xa2\xc0\xa7\x82\x25\x35\xdd\x92\xe5\xa6\x65\x82\x69\x3f\xd0\x9d\x33\x92\x25\x87\xaf\x43\x22\x80\xfd\x72\xe9\xdd\xb7\x36\xe6\xd7\x76\xd6\xe6\x6f\x01\xc2\xb4\x3a\xfa\x3c\xae\x8e\xc1\xd5\xeb\x9b\xc4\x64\xd8\xba\xd2\x1f\xa0\xfc\x4c\xc2\x5f\xfe\xe5\x5f\xc2\x64\x32\x01\x68\xd7\xa7\x75\x92\x9f\x14\xc6\x1b\x9f\x0d\xe7\xbc\xa4\x30\xa9\x6d\xc5\xc6\xe1\xb2\xf8\x64\xa0\xe9\x48\xca\xac\x8b\xdc\xbc\x5c\x4e\xc3\xdb\x95\x8e\xd4\x91\xa5\xf2\xbf\x5f\xde\x52\x1a\x3e\x65\xcf\x15\xbf\xaf\x4d\x84\xe4\xe7\x75\x1e\x8a\x4f\xd3\x73\xe9\x0f\x29\x3c\xa4\x9b\x5c\x3c\x7d\xf1\xba\x80\xeb\x2e\xb4\x2e\x17\xe2\xe7\x6a\x9b\x31\x60\x32\x16\xf0\xc5\xf2\x73\xc9\x18\x9b\x67\x9e\x56\x4c\xf9\xc4\x0e\x76\x5e\xc0\x62\x1f\xaa\x89\x9e\x05\x2d\x73\xa8\xc6\x93\x6a\xef\x60\x39\xc6\x20\xc0\xa4\xa7\xd5\x8d\xcd\xe9\x0f\xa7\xbd\x62\xfa\xf8\x60\x65\xff\x91\xfd\xfe\x93\x67\xa6\xbd\xed\x9e\xc6\x72\x72\x4c\x27\xbb\x82\xfa\x6f\xcd\x9b\x91\x58\xfe\x4d\xa3\xf3\xa9\x75\xde\xa0\xd1\xd3\x9e\x3e\xbe\x33\x9a\x5f\xff\xc1\x43\x93\x6f\xbd\xbe\x39\xb9\x36\xe9\xe9\x7b\xba\xfc\xa4\xcb\x31\x42\x0b\xb0\x4c\xab\x65\xae\x39\x00\xf0\xbb\xba\x7c\x65\x11\xe3\xdf\xb5\xef\xf8\x74\xa4\x2b\x1d\xc5\x7e\x7d\xb2\x89\xf2\x25\x20\x9b\x91\x7c\xa6\x77\x97\x79\xce\x0a\x11\x32\x2d\x5a\x1e\x3e\x5e\x74\x99\x48\x99\xf2\x50\x7b\x0f\x11\x7b\x50\xed\x6b\x41\x03\x2b\xa3\x59\xb2\xf1\xcc\xdb\xa3\x9f\xd9\x9c\xf4\x7e\x32\x31\xb8\x6a\x9b\x87\xa9\xc4\x68\x50\x2d\x6b\x68\xc2\x2f\x00\xb4\xd6\x1b\x6d\x83\xe4\x66\x41\xee\xc4\x30\xde\x6a\x83\x34\x6d\xef\x79\x62\x4e\xde\xdc\x98\x7d\xef\x87\xe7\xa6\xdf\xde\x1b\xe6\xb7\x0c\xd4\xcb\x43\x27\x55\x07\x1b\x43\x65\x6d\xa9\x3a\xe2\x02\xda\x83\x84\xd9\xdb\xdb\x83\x3f\xfd\xd3\x3f\xd5\x79\x9e\x53\x93\x1e\x6d\x64\xbc\x8e\xad\xb9\x90\xd3\xdb\x86\x48\xdb\x06\x6d\x9c\x7c\xc9\x05\x08\x0f\x69\x99\x05\xa1\x9d\xbe\xd4\xd7\x25\x3a\xc5\xf8\xb9\xe2\xbb\xe4\x11\x75\x0a\xe1\x27\x99\x31\x79\x7e\x68\x87\xf4\xc9\xe0\xca\x03\x2d\x73\xca\x8b\xd2\xf1\x3a\xa0\xcf\xdc\xfc\xce\xdf\xa5\xbe\x65\xdf\x01\xda\x7c\xa4\xfc\x21\xa3\x07\x58\xae\x63\xde\x16\xa8\xcc\x9c\x9f\xcf\x49\xa6\xe6\x2e\xa6\x69\x4e\x43\xe5\x52\x84\x9e\xfb\xf9\xe2\x81\x83\xc6\xe5\x42\xa6\x6f\xea\x62\x74\xaa\x4b\x0e\xde\xf6\x62\x5d\x8c\xee\xe6\xed\xd2\xe7\x78\xfb\xef\x2a\x47\x4c\xbb\xe0\xbc\xe9\xb3\x24\xa7\x57\x76\xbb\x5c\x64\x8c\x41\x44\xba\x63\xb1\xfe\xad\xf0\x43\x6b\x07\xa2\x01\x04\x2c\x94\x29\x4e\x32\x3d\xdd\x1b\xe6\x87\x27\x7d\xbd\x6f\x00\x16\xbd\x02\x07\xa9\xc6\x3e\x36\x53\x5c\xa7\x93\x42\xdb\x13\x65\x00\xad\x8c\x9e\xf6\xf4\xd1\xdd\xd1\xe2\xcd\xd7\xcf\x4d\xbf\xfd\x9f\xe7\x4f\xbe\xf5\xa3\x8d\xe9\xeb\xd3\x9e\xd9\x35\x08\x47\x80\xe5\x12\x11\x00\x1c\x43\x69\x19\x9a\x00\xc0\x0c\x11\x67\x95\xfe\x5f\xc0\xb2\xb5\xdd\x44\xdc\x96\xeb\x72\x52\xdf\xe1\xfe\xd4\x71\x5d\x05\x10\x6e\x77\x46\xf8\xe3\xce\xcb\x83\x2e\x15\x85\x10\xb9\xa5\x91\x66\x59\x7c\x66\xe5\x73\x5e\x64\xf6\xfc\xf3\xcf\xab\xab\x57\xaf\x52\xf4\x48\x4f\x11\xd5\x16\x97\x54\xe3\xe0\xe2\x41\xff\xe2\x99\x49\xfa\x74\x5a\xe0\x3a\x80\x35\xe1\xd9\x25\x1d\x6c\xcc\x77\x6c\x98\x32\x58\x9d\xf4\xe1\xcd\xd8\xf2\xa8\xd6\x8f\xea\x8d\xc1\x6c\xa8\xab\x7b\x3a\x01\x44\x36\x5d\x03\xd6\x84\x58\x52\xd5\x23\x04\x1f\x2e\xb1\xe1\x66\xc8\xf7\x2d\x34\x1a\x7d\xb0\x92\xdf\x7a\x6b\x63\x76\x6d\x6f\x75\x71\xdb\x20\x4c\x11\xd0\xa2\x6c\x7b\xe1\x50\x7d\x82\xc8\x6e\xcc\x25\xe5\xa8\x01\x00\xfe\xe2\x2f\xfe\xc2\x87\x78\xed\xb3\x34\x23\x8b\x99\xa5\xb9\x5c\xcc\x4c\xcc\xf5\xeb\x4a\xcf\x25\x4b\x4c\x7c\x57\x58\x28\x5f\xae\x32\xe9\x2a\x43\x6c\x5e\x7d\xb3\x14\x29\xbd\xd0\xbb\x34\xeb\x96\x66\x37\x52\xfc\x2e\x33\x6a\x89\x2f\xb7\xbe\xf8\xac\x59\xa1\xd9\x39\xa7\x0d\x59\x07\x24\x19\x5d\x56\x8c\xd8\xb4\x5d\xb2\x70\xb9\x24\x7e\x5d\xfb\x92\x8f\x77\x6c\x1e\x5c\xb2\x76\x29\x93\x98\x7a\xea\xe2\x1f\x2b\x2b\x97\xd3\xe7\xa2\xeb\x90\x58\xa1\x15\x79\xb6\xcb\x46\x73\x68\xc6\x16\x45\x68\x40\x83\xd1\x8b\x04\xf4\xfe\x4a\x9e\x4f\x7b\x7a\xbc\xb7\x92\xef\xdf\x39\xe8\xdf\x7a\xc7\x71\xef\xb1\x8d\x71\x6f\x6b\x34\x4f\x36\x7a\x05\x0e\x94\x41\xb5\xa4\xdf\x05\x47\x97\x88\x16\x4a\xcf\x27\x99\x3e\xdc\x5b\xc9\x77\xee\x8c\xe6\xb7\x76\x46\x8b\x9b\x77\x57\xe7\xb7\x8e\x07\xc5\xbd\x85\x32\x87\x00\xa5\xa5\x05\xaa\x2d\x02\x64\xc2\xda\xba\x21\x9d\x2c\x0f\xd5\xd6\xf6\xc0\x6d\xb9\xb1\xfd\x2f\xc6\x75\xe5\x11\x4a\x3f\xd4\x76\xeb\x36\x82\x8e\x48\x5d\x5d\xc8\xc4\x49\x69\x82\x0d\xfb\xf9\xe7\x9f\xb7\x8d\x87\x5e\x32\x97\x01\xc0\x00\x00\x86\x60\x60\xb8\x3a\x57\xdb\x1f\xb9\x71\xe6\x67\x9e\xd8\x19\xfe\x5e\xbf\xc0\x0b\x14\xfd\xd2\xa3\xd0\x74\x5d\x11\xa0\xbd\xe4\x43\x69\xb9\x93\xda\x61\x83\x73\x9a\x50\xdb\x18\x5d\x71\x24\x27\x4d\xd5\xed\xd1\xeb\x49\xaf\xd8\x7f\xf5\xa1\xf1\xbf\x7e\xf7\xfc\xc9\xbf\xde\x19\x2d\x6e\x18\x84\x7d\x63\xcc\x21\x22\x1e\x57\xbf\xf5\x17\xa0\x85\x65\x22\x0d\x00\x40\x36\x65\xf9\xea\x34\x46\x19\x5b\x27\x01\xd6\x90\x92\x0b\x0d\x58\x12\x3f\xdf\x00\x15\x4a\xd7\x95\x16\xf5\x97\x9e\x43\xbc\x24\x39\x7c\x03\xaa\xf4\x1c\x13\x46\x9d\x4f\xa1\x87\xca\xf2\x7e\xf2\x1a\xdb\x57\xa5\x3c\x50\x17\xd2\x23\x3e\x60\x10\xe3\x4e\xa3\xab\x1e\xb4\x7e\x3b\x2d\xef\x18\xda\xd3\xf2\x8b\x05\x5c\xff\x55\xee\x41\x97\xcb\xa9\x5d\x75\x1f\x98\x6d\xaf\xf6\x6a\x8d\xfa\x64\x6a\xf5\x37\x30\xc6\x0c\x11\x71\x08\x00\xed\x3f\x03\x83\x54\xe3\x68\x38\x57\x67\xcf\x4c\xd3\xcd\x8d\x71\xba\x7d\x6e\xdc\xdb\x3a\x3b\xe9\x6d\xad\xce\xd5\x7a\x96\xab\x41\xaf\x50\x83\x54\x43\x8a\x06\x53\x6a\x7a\x04\x00\x5d\x28\x93\x2f\x12\x33\x9d\xa5\x7a\x3a\xe9\xe9\xf1\x51\x3f\xdf\xdf\x1d\x2e\x76\xee\xad\x2e\x76\xf6\x57\xf2\xbb\x27\x99\x3e\x98\xa7\xfa\xd0\x20\x58\xfd\x6e\xef\x6b\xb1\xe0\x65\x4a\x8e\x42\x73\xe0\x62\x6f\xfb\xd5\x00\xad\xeb\x2f\x7c\x63\x6d\x2c\xc0\x0c\x81\xf3\x90\x7b\x90\x00\xa9\xd6\x3d\xae\x7b\x5c\x62\x80\x08\x75\xbe\xcc\xba\x68\x7c\xf1\xeb\xf4\x48\x03\xab\xff\x52\x8d\x83\xb3\xe3\xde\xe6\xe6\x49\xef\xc9\xac\xc0\x2d\x1b\xa1\x06\x02\xf5\xba\x10\xdd\x97\xd2\x80\x0b\xea\xe8\xfd\x2d\xf5\x85\x71\x88\xe5\x91\x66\x61\xff\x09\x7f\x92\x4c\x31\x14\xd6\x48\x50\x46\x5a\xa6\x02\x44\xd0\x68\xf4\xde\x70\x71\xf3\x31\x7e\x83\x60\x00\x00\x20\x00\x49\x44\x41\x54\xe6\x99\xd9\xb5\x83\x41\x7e\xc7\x20\xd8\x2f\x3e\xd7\x17\xcd\xb1\x63\x70\x2d\xc0\x82\x88\x70\xf5\xea\x55\x7d\xe9\xd2\x25\x75\xfd\xfa\x75\x3b\x4b\x73\x01\x10\x10\x9e\x01\xda\x75\xe1\x02\x16\xc0\xe2\x84\x14\x24\x9f\x39\xf2\x01\x4f\xa2\xa7\x69\xb8\xda\xa2\x24\xf7\x69\x3b\x99\x6b\x76\xca\x1d\x2f\x2f\x9f\xf3\xe5\xd5\xc7\xc7\x57\xd6\xbe\x77\x97\xfc\x31\x0a\x8a\xfb\x2b\xf6\x6b\xf9\xf8\xea\x96\xc7\x73\x95\x63\x4c\x1d\x85\xe2\x87\x1c\x57\xb8\xf7\x03\x94\x42\xe0\xbf\x2b\xaf\x50\xf9\x4b\x60\xb4\xab\x6c\x3e\xba\xfb\x19\x8c\xba\xc4\x3d\x6d\x19\xff\x58\x40\x4c\xa5\x27\x15\xbd\x94\x0e\x4a\x00\x50\xa7\x8b\xcd\x37\xdd\xec\x5f\xa9\x6b\x11\xe6\xb9\x32\xf9\xe1\xa0\x98\x8e\xb3\xe2\xe0\xde\xea\x62\xe7\xd6\x6c\xbe\xbe\x36\x4b\x37\x57\xe7\x6a\x34\xc8\x93\xe1\xca\x5c\x0d\x07\xb9\x1a\x66\x05\x66\x68\xca\x4f\xce\x68\x04\xad\x11\xf2\x79\xa2\xe7\x27\x59\x71\x3c\xce\xf4\xf1\xa4\x57\x1c\x9f\x64\xc5\xe1\x49\x5f\x1f\x4e\x7a\xc5\xd1\x22\x31\x63\x83\xf5\xde\x95\x31\x99\x9c\x5a\x0b\x8b\xdd\x1a\x60\xad\xee\xf6\x86\xf4\xa5\xcd\xb8\x57\xaf\x5e\xd5\x67\xce\x9c\x51\xe4\xa2\x51\xea\x42\x3a\x2e\xa4\x93\x68\x58\xcc\x24\x07\xc0\xdd\x96\x7d\x78\xc2\x25\x6b\xad\x4f\x43\x17\xd0\xb9\x84\x0a\xcd\xce\x62\x0a\x67\xc9\xd1\x5b\x72\xab\x06\xd4\x5a\x26\xb2\x37\xe6\x66\x05\x0e\xcf\x1f\xf5\x2f\xae\xcd\x92\xcb\x0a\xca\xcd\x52\x50\xe1\x0c\x8a\x37\x24\x8b\x89\x64\x5b\x41\x83\xe5\x66\xde\xd6\x26\x5b\x6e\xc1\x81\xda\xb6\xd2\x5a\xe0\xa7\x4c\x69\xba\x06\x9a\x0d\xc2\x84\xc6\x67\xe1\x99\xa5\xfa\xf0\xed\xf5\xf9\xb5\xbb\xab\x8b\xb7\xe7\x69\x79\x43\x22\x47\xd8\xd0\x5e\xcf\xac\x01\x8b\x7d\xfe\xc4\x27\x3e\xa1\x5e\x7c\xf1\x45\x0e\x3e\x40\x78\xf7\xd1\xc4\xd2\xf9\xde\x63\xc3\x5c\x83\x0b\x80\xbb\xa3\x71\x40\xc5\xe9\x43\xb2\x87\xf2\xe1\xf3\x77\x01\x3c\xfe\x2c\xe5\xa9\x4b\x7f\x08\x81\xa8\x10\x5f\x57\x58\x4c\x3c\x9e\x87\x10\x6f\x89\xa7\x8f\x87\x0b\xcc\xb9\xea\xdb\x07\xb6\x5d\x8a\x50\x02\x7d\xae\x32\x75\x29\xd6\x58\xe5\x7f\x3f\x96\x0d\x9f\xc2\xe7\xb2\x76\x99\x20\xf0\xb8\x5d\xe4\xe8\x3a\x71\x75\xf1\x93\xe8\xbb\x96\x55\xac\xd5\xcf\x99\xce\xbb\xde\xf5\x2e\x75\xf5\xea\x55\x5d\x8d\x2f\x35\x78\xa9\x96\x8a\x52\x28\x2d\x17\x2d\x3d\x0a\x50\x03\x9d\x9c\x5c\xec\x39\x47\xc4\xc1\x42\x99\x69\x9e\xe8\xf1\xa4\xa7\x0f\xf6\x86\xf9\x9d\x54\x63\x3f\xd5\x98\x65\x39\x0e\xb2\x42\x65\xbd\x02\x33\x34\xa0\x0c\x02\x68\x00\x6d\x94\xc9\x17\xca\xe4\xb3\x54\x4f\x17\x89\x99\xe6\xca\xcc\x0a\x65\xa6\x1a\x61\x0e\x08\x73\x63\x4c\xbd\x1d\xc0\xde\xd3\x05\xcd\x64\xb5\x1e\x03\x08\x68\x69\xbe\x70\x5d\x82\x17\x80\x12\xc8\x00\x00\xc0\xc1\xc1\x81\xcd\x82\xaf\x3d\xc4\xf6\x29\x9f\x3e\xeb\xca\xdb\xa5\x7b\x96\x2c\x2a\x10\x70\xae\x3d\x2e\xd2\x00\x10\x12\x20\x16\xe0\xd8\xe7\x3a\xee\x60\x30\x50\x4f\x3c\xf1\x04\x95\xcb\x9a\xf2\xe8\x73\x79\xc5\xbf\x86\x6c\x38\x4f\xd6\x1f\x3a\xee\xbd\x7b\x90\xab\x8b\x00\x40\xf6\x95\x90\x5f\x68\x03\x15\x69\x77\x50\xbd\x0b\x0b\x3d\x20\xc7\x34\x80\x46\xb2\x94\xd0\xd3\x4b\x1c\xc4\x60\x0b\xc9\x54\x8f\xfc\x8e\x67\xb2\xb7\x65\x6f\x25\x7f\xf3\xe6\xfa\xfc\xfa\x71\xbf\xd8\x37\xc4\x34\x48\x7e\xe9\xed\xb8\x4b\x16\x97\xbd\xbd\x3d\x20\xa0\x25\x04\x3a\x25\xe4\xcc\xdf\x5d\xca\x3c\xa4\x2c\xa4\x5f\x89\x9e\xc6\xe1\x32\xc4\x0e\x00\xbc\x5d\xfa\x06\x1c\x2a\x83\x94\x16\x97\x57\x92\xd9\x37\x20\x4a\x32\xc5\x74\xc6\x2e\xb3\x98\x58\x4b\x85\x2b\x2f\xae\x32\xa6\x61\x21\xe5\xe5\x9a\x91\xc5\x2a\x9e\x98\x76\x10\x03\x0a\x62\x40\x86\x2f\x4d\x49\x2e\x17\x88\xee\xea\x5c\x7d\xc1\x27\x4b\xec\x20\xcf\xcb\x3f\x34\x80\x84\xc0\x91\xef\xd9\xe7\x27\x39\x5a\x7e\x0a\xdc\x75\x06\xb0\x2c\x5b\x68\x52\xe0\xaa\x4f\xaf\x6c\xaf\xbf\xfe\xba\x06\x28\xad\x11\x16\xbc\x54\x63\x8a\x95\x93\x1e\x91\xb6\x7e\x9a\xea\xda\x0a\x30\x64\x50\x82\x97\x39\x00\x4c\x0d\x42\x96\x27\x26\xcd\x93\xea\x52\xd4\x0c\x52\x04\x48\xd1\x34\x72\x1a\x00\x00\x2c\xf9\x99\xd2\x72\xa3\xa1\x99\x84\xda\x09\xa9\x05\x26\xf5\xad\xb8\x95\xae\xa7\x93\xd6\xd6\xb7\x89\xc8\x49\xa2\x3a\xef\x37\x6e\xdc\xf0\x95\x47\xa8\x1e\x24\x1a\x60\x34\x3e\x1e\x9c\xd6\x17\x8f\xcb\xe4\x1a\x67\x9c\xbc\xed\x1e\x12\x29\xb1\x18\xc1\x43\x34\x3e\x9e\xb5\x90\xd3\xe9\x54\x7f\xfb\xdb\xdf\x86\x8f\x7e\xf4\xa3\xb4\x61\xb6\xae\xf8\xa7\xd6\x96\xcd\x71\xba\xbd\x31\x49\x2f\xa7\x85\xda\x00\xa0\x20\xc5\x6e\x88\x35\xf5\xb1\x33\x8b\x0d\x38\x30\x29\x41\x89\xa9\x36\xe3\xd2\x7d\x30\xed\x2b\xfe\x9d\x9b\x56\xaa\x70\x17\x88\x89\x72\x58\xee\x90\x01\x00\x98\xa7\xe6\xf8\xed\xf5\xd9\xb5\xbd\xe1\xe2\xf6\x22\x31\xc7\x06\x8c\xbd\xce\xb9\x65\x6d\x21\x1d\xa9\xfe\x36\x85\x5d\x22\xb2\xe5\x06\xb2\x02\x04\xc1\xdf\x37\x88\x4b\x03\x94\x6b\xe0\xeb\x02\x38\xa4\x41\xcf\x97\x26\xa7\xf1\xcd\x9e\x43\x80\xc9\xa5\xf8\x7d\x79\x89\x01\x63\xd2\xb3\x24\xb3\x2f\x1f\x2e\x79\x42\x7c\xf8\xbb\x0b\x78\x85\x06\x71\xd7\x20\x17\xca\xab\xab\xce\x24\x00\xd0\x05\x90\x74\x51\x6a\x31\xca\xd6\x55\x5e\x34\x7e\x8c\xf2\x74\xf1\x88\x0d\xb7\xfe\x96\x36\x54\x3e\xb1\xfa\x59\xe2\x21\xf5\x11\xfa\xee\x2b\x13\xa9\xdc\x42\xc0\xd4\xd5\x3e\x7d\x00\xdc\x35\x80\xba\xe4\xec\x52\x57\x4b\xbc\xee\xdd\xbb\x07\xe7\xce\x9d\xab\x37\xeb\x42\xa9\x53\x53\xa8\xc0\x0b\x00\xd0\x2b\x25\x2c\x60\xb1\x20\xa3\xfc\x3c\x40\x09\x30\xec\xbe\x98\x66\x1b\x03\x42\x6a\x00\x94\x41\x51\xbf\xd8\xbf\xfa\xe6\xde\x8a\x37\x3d\x70\x51\x03\x95\xea\xd9\xd2\xb9\xac\xed\x1a\xa0\xd9\xd3\x32\x1c\x0e\xa5\x89\x87\xab\x0d\x48\xe5\xe7\x6b\xbb\x31\x7a\xdd\xa7\x57\x7c\xcf\x56\xbe\xe8\x3e\x9f\x06\x84\xe1\x89\x87\x3a\x61\x8c\x52\xe6\xfe\x1a\xa0\x7d\xbd\xbf\x31\x46\x01\x80\x3d\x6b\x5f\x83\x16\x30\x90\x0d\xf2\x64\xf4\xd0\x71\xf6\xe8\xea\x3c\xb9\x84\xc6\xa4\x50\x83\x93\x36\x74\x11\x56\x63\x6a\xb7\xb4\x17\xa6\x72\xf5\xf1\x69\x5f\x1c\x68\x2f\x47\xb5\x89\x84\x80\xa5\x7d\x2f\x94\x1c\x2b\xf0\x02\x70\x30\xc8\x6f\xbe\x75\x66\x76\xfd\xa4\x57\xec\x9b\xe6\xa2\x39\xbb\xc7\x85\x82\x97\xba\x1e\xaa\xb2\x92\x94\x52\x48\xe9\xf9\x06\x40\xc9\x3f\x34\xa8\xf9\x94\xaa\x2b\x5c\xea\x18\x3c\x1f\x3e\x99\x68\x1c\xda\x39\x79\xa7\xf5\x29\x41\xde\xd1\x7d\xb2\x72\xe7\xe3\xcd\x01\x0f\x8f\x47\x7f\x39\x3f\x57\xa7\x0d\xd5\x93\x2b\xef\xbe\xfe\xcd\x95\x85\xe4\x62\x81\x6a\xa8\x1d\x50\x3f\xdf\x40\x46\xd3\xec\x3a\x68\x53\x3e\x3c\x5f\x21\xdd\xe5\xa3\xf1\x29\x5b\x97\x8b\x01\x07\x52\x1c\x5f\x9f\x95\xca\x4c\xa2\x0d\xa5\x25\xc5\x73\x81\x6b\x69\x40\xe1\x71\x79\xda\xbc\x5f\xb9\x68\x63\xc7\x0e\x5e\x3f\xa1\x3e\x21\xc5\x57\x00\x00\x5f\xfc\xe2\x17\xf5\x6f\xff\xf6\x6f\xab\x33\x67\xce\x50\x9a\x9c\xc9\x4c\xbf\xae\xac\xab\xf0\xcc\x18\x93\x61\xf9\x61\xc6\xac\x7a\x6f\x2e\x43\xad\x8c\x00\x76\xb2\x4d\xf8\xd8\x93\x3e\x76\x13\xad\x26\x16\xf3\x1a\x98\xd0\xef\xcd\x41\xb3\x2c\x54\xef\x67\x01\x72\xad\x3f\x3d\x45\x44\x0e\x62\xc0\x78\x3c\xe6\xf9\x8d\xd1\x7f\x12\x60\xe1\xe5\x27\xbd\x87\x74\x8b\x14\xcf\x07\x48\x42\x40\xa6\x95\x6e\x52\x3d\x84\xce\xd6\xd3\xbb\x10\x90\xbd\x6b\xf2\x4e\xb7\x7f\xf0\xc4\xf8\xb9\xec\x9a\xcf\xa3\x8f\x3e\xaa\x9e\x78\xe2\x09\x0b\x54\xb0\x72\x09\x94\xf7\xcc\xa4\x88\xd8\x07\x80\xbe\x32\x30\x3c\x37\x4e\x1f\x7e\xf7\xbd\xe1\x87\xce\x8d\x7b\xcf\x25\x80\x7d\x9b\x58\xfb\x7f\xe3\xc4\xe3\xc8\x0c\x5f\xf0\xad\xb6\xd2\x3e\x94\x36\x8d\x8c\x5c\x78\x1c\x7a\xba\x69\x39\xac\x61\xba\x48\xcc\xf8\x87\x5b\x93\x7f\xbb\x7e\x6e\xfa\xfd\x49\xa6\xef\xd1\x63\x70\x88\x38\xb1\x48\xbc\x3a\xb3\x6f\xaf\x77\xb6\xe0\xc5\x30\x6b\x0b\x5d\x29\x73\x9d\x91\xa7\xf5\x23\xad\xa2\xd9\x5f\xcb\x4f\x3a\x9f\xcf\xe9\xa5\x76\xe4\xbb\xb7\x81\xc7\xf3\xdd\x1d\x60\xe9\x91\x85\xbb\xee\x15\xe0\xef\x9c\x0f\x0f\x73\x95\x85\x94\x8e\x54\x2e\x3c\x6d\x4e\xcf\xe5\xe6\x65\xc5\x79\x6b\x47\x98\x2b\x2d\x97\x9f\x2f\x8c\xfb\x4b\xef\xbc\x4e\xba\xf0\xf5\xb9\xa5\x3d\xf2\xd0\x28\x2a\x9a\x26\xd7\x23\x3c\x9e\xab\xcd\xc5\x28\xd5\x98\xf6\x46\xf9\x49\xf5\x6d\xf5\x98\x4f\xd7\xf9\xca\xce\x27\x97\x75\xb4\x2f\x2b\xf2\x6b\xd3\xe5\xed\x1b\x84\xb8\x92\xbf\x2d\x6f\xba\xaa\xae\x59\x3c\x5f\x9f\x71\x95\x9b\x2d\x7b\xca\x8f\xcb\x2d\x8d\x13\xae\xfe\x42\xe3\xd0\x7a\xa0\x03\xb3\x4b\x07\xf1\xbe\x6d\x00\x00\x5e\x79\xe5\x15\xf3\xd2\x4b\x2f\x99\x67\x9f\x7d\x16\xb1\xfc\x14\x80\x01\x28\x75\xa9\x29\x2f\x7c\xb1\x16\x17\x43\x96\x8e\x8a\x0a\x44\x14\x50\xde\x9b\x95\x23\xe2\x0c\x4a\x00\x32\x83\x72\x62\x39\x83\xea\x8e\x95\xea\x53\x2c\x76\x89\x7f\x82\xd5\x15\xfd\x76\xf3\x6d\xa5\xd3\x4f\xa0\xbc\x97\x65\x5a\xe9\xf9\x59\xc5\xc3\x5e\x2e\x4a\xd3\xa4\x17\xcd\x69\x80\x72\x7c\x79\xcf\x7b\xde\x83\xdf\xf9\xce\x77\x78\x5b\xe5\xe5\xca\xeb\x86\xfb\x53\xe7\xd3\xd9\x9c\xce\xa5\x57\x5d\xed\x91\x03\x4e\x2e\x97\xab\xef\xf0\x74\x97\x2c\x2e\x1c\x01\x03\xb4\x1b\x1f\x30\xfa\x18\xb4\xe4\x72\x1a\x00\xe0\x9d\xef\x7c\xa7\xfa\xc5\x5f\xfc\xc5\xa5\xc1\xdd\x1e\x87\x26\xdf\x27\x4a\x57\x16\xc9\x70\xeb\x24\x3b\xbf\x31\x49\x2f\xa7\x1a\xd7\x69\x0b\xc7\x76\x3c\x30\xa4\xfd\x57\x8b\x47\xcd\x3b\xb9\x62\x19\xa0\x5a\x1c\x32\xd0\x2c\xf5\xd4\x5f\x69\x96\x81\x8f\x01\x6c\xde\x5b\xfe\x64\x33\x2e\x2c\x03\x19\x68\x85\x01\xd8\x23\xda\x07\x2b\xf9\x9b\x3f\xda\x98\xbe\x76\x92\x15\xbb\x06\x5b\x9b\xb2\xec\x91\xb7\xda\x64\x89\xec\xcc\x3e\x00\xc0\xbb\xdf\xfd\x6e\xf5\xc3\x1f\xfe\x90\xd6\x87\x84\xb8\xbb\xf8\x87\x66\xd7\xd4\xf9\xac\x0e\x3e\x7f\x29\x6d\x4e\x17\x83\xe8\x69\x1c\x2e\x8f\x6b\xa6\xe8\xca\xa3\x24\x8f\xc4\xdf\x57\x2e\xae\xf4\x79\x98\xc4\xcb\x15\x26\xc9\x12\x92\x31\x26\x2f\x3e\x17\x93\x6e\x8c\x5f\xcc\x0c\x8b\xff\xc6\xca\xe2\x9a\x05\x86\xf2\x1b\x92\xc3\xe7\xcf\x1d\xcf\x63\x4c\xbb\xf1\xc9\xc7\xe9\x5c\x72\xaa\xc8\xf8\x21\xff\x98\x72\xe5\x8e\x87\x4b\xf4\x52\x1e\x5c\xe3\x85\xcb\xb9\x64\x75\xc5\x8f\x91\xab\x76\xd6\x5a\xf1\xfc\xf3\xcf\xdb\xcd\xba\x76\xa2\x99\x57\x5b\x14\x6a\x4b\x09\xb1\xae\xd4\xb7\xed\xd2\x3f\x6e\x69\xa1\xba\x9f\x3c\x5b\xab\x4b\x7d\xff\x0a\xdb\xb3\x38\xaf\x64\xae\xc3\xe9\x7e\x16\x7a\x4f\x0b\xb5\xb4\x08\xe5\xc5\x75\xac\x54\x1e\xae\x32\x74\xf5\x0d\x29\xdc\x37\xfe\xfb\xd2\x70\xc9\x15\xea\x3b\xf5\xb3\x34\x88\x48\x0d\x0e\x84\x77\x29\x61\x29\x51\x1b\x2e\x29\x67\xb8\x71\xe3\x06\x57\xb6\xf5\x11\x68\x7a\xd6\x1e\x11\xab\x4d\xb9\xd9\xbb\x86\xb3\xe4\x12\x00\xb5\x82\x98\x66\x8a\x56\x7f\x01\xda\x5e\x43\x67\x37\xc8\xda\xa7\x66\xc3\x6c\x7d\x51\x1d\xf1\xa6\x20\x88\xfe\x1a\x24\xd3\x04\xdf\xde\x17\x1b\xc1\xb5\x21\x97\x85\x2d\x12\x33\xfd\xd1\xd9\xd9\x77\xee\x8c\x16\x6f\x17\xca\xd4\xc7\x9f\xa1\x39\xfa\x4c\xcd\x85\x76\x23\xae\xdd\xb8\x4c\xbf\xfe\xec\x1a\x1c\xa5\x7a\x04\x16\xe6\x1b\x6c\xa4\x7a\xe4\x75\xb9\x54\x87\xcc\x71\x7e\xf4\x4f\x31\x3a\x29\x2e\xe7\xc1\xfd\xa9\x73\xb5\x53\x29\x1f\xae\xb2\xa0\x69\xc4\x0c\x72\xae\xb4\x7c\x8a\xd4\x55\x56\x52\x3a\xae\xbc\x52\x3f\x57\x1d\x5b\x1a\x69\x52\xc2\xf9\x71\x7f\xa9\xec\x25\xde\x2e\xb9\x7d\x72\x85\x14\x5a\x0c\x18\xe0\x2e\x66\x30\xf3\xc9\x21\xea\x28\x70\xd7\x55\x97\x01\x3e\xa6\xdd\x48\x74\x52\xfd\xfa\xf8\x75\xf1\x77\xe9\x77\x5f\xdb\x0c\xb9\x98\x41\x2b\x54\x16\x31\xe1\xae\x72\x89\x76\xfd\x7e\x5f\x01\x2c\x7d\x49\x9a\x6f\xca\xb5\x3a\xd8\x6e\xa2\xb5\xa7\x7e\xec\x5d\x2b\xc7\x00\x70\x88\x88\x87\xd5\xef\x3e\x00\x1c\xb2\xbf\x7d\x80\xf2\x3e\x2e\x1b\x07\x11\x8f\xc9\x33\xbd\x9b\xcb\x5a\xd7\x5b\x13\xd5\x4a\x2e\x1f\x68\xe1\xe5\x23\xb9\x98\xf6\x1d\xea\xa3\xb1\x7e\xd6\x5f\xe2\xed\x03\x57\x21\x39\x34\x80\xff\x38\x74\x97\x86\xe1\x43\xf1\x92\x9f\x02\x00\x7d\xf9\xf2\x65\xf5\xda\x6b\xaf\xd9\x46\x53\x87\x59\xe4\x8a\xcd\x47\xb0\xd2\x2c\xc7\xc1\xd9\x49\x6f\xfb\xec\x38\x7d\xbc\xa7\xc9\xdd\x2d\xc6\xc6\x2d\x21\x87\x31\xd6\x6a\xd2\x4e\x5c\x02\x23\xf5\x2f\xb5\xb6\x10\x27\xd9\xb3\x5b\xe1\x66\x79\xc9\xa9\x75\x9b\x2e\x34\x97\xd3\xd9\x77\x30\x4d\x5e\x0d\x82\x3e\x1c\xe4\x37\x6f\x6c\x4c\xae\x4d\x7b\xc5\xb1\x69\x1f\x7f\x96\x8e\xc0\xd5\x47\xdf\x2c\x4f\xa1\x11\xc7\x28\x75\x57\x7d\x85\x90\xb4\x0d\xe3\x03\xba\x94\x86\x8b\x87\xaf\xad\xc4\xc8\xe4\x0a\x97\x9c\x2b\x4e\x57\x19\x42\xef\x5d\x06\xe4\x98\x38\x5d\xd2\x89\x51\xfe\xa1\xfa\x76\xcd\x8c\x5d\xf2\x84\xe4\xa4\x2e\xc6\xe2\x22\xd1\xba\xfc\x69\x7e\xba\xcc\x1a\xef\x47\x0e\x57\xfb\x0d\x59\x78\x62\xf3\x23\x39\x17\x50\x97\xf2\x1d\x7a\x8f\x91\xab\x8b\xd5\x28\xf6\x59\xe2\xef\xca\x87\x34\x79\x02\x07\x2d\xe5\xe9\xa2\x09\x3d\xab\xd9\x6c\x26\x96\x3d\xb5\x6c\x10\x7d\x5b\xeb\xbd\x6a\x42\x6d\xf7\xc5\xd4\x07\x5c\x4c\xf3\xe1\x46\x3b\xf9\xb6\xfc\xb4\x5d\x7e\x22\x96\x94\xa5\x1b\x6f\x01\x9a\xe5\x20\x60\x75\x61\x65\x11\xac\xf8\x5d\xfa\x51\x0c\x4d\x17\x7f\xd7\x84\xb7\x4b\xbb\x77\xe1\x0c\x6f\xfd\xa5\xe4\x85\x47\xee\x02\x58\x7c\xb4\xce\x4e\x65\x41\x0b\x0b\x03\x80\xa5\x4d\x4e\xe9\xca\x22\x19\x6e\x8e\xd3\x47\xd7\x66\xc9\x25\x65\x20\xb3\x96\x11\xbb\xe4\x42\xaf\xdb\x07\x68\x5b\x4e\x24\xd7\x0a\x27\xa0\x85\xaf\x00\xb9\xf8\xd8\xb4\x5a\xcb\x54\xcc\x8f\xdf\xd2\x6b\xbf\x02\x6d\x2a\xea\xb9\x32\xe3\xb7\xd7\xe7\xaf\xde\x5b\x5d\xdc\x2e\x10\xc6\x06\xcc\x1c\x4c\xeb\xab\x9f\x74\x13\x17\x05\x2d\xb4\x53\xd1\x32\x8d\xfd\xf5\x29\x26\x80\xe5\xc6\x17\x52\x92\x9c\x26\xc4\xab\x4b\x1c\x97\xc2\xa3\xf1\x63\xf2\x40\xe9\x42\x3c\x42\x79\x93\xc2\x42\x9d\x96\xcb\x10\x3b\xb8\xfa\xf2\x06\xc2\xbb\x4f\xb9\x87\xe4\x91\xf2\xc3\xd3\x95\xe2\x50\x19\x7c\x83\x7a\x17\xfd\x12\x3b\xa0\x4b\xfe\xa1\x74\x42\x32\xc5\x0e\xea\x92\xeb\xaa\x43\x63\xf8\xd8\xf7\x98\xfe\xe9\x4a\xf7\xb4\xe5\x1d\x02\x24\x3c\x6e\x8c\xce\xf0\x95\x65\xec\xc0\x76\x9a\x7a\x75\xc6\xa7\x47\xa5\xb1\xb9\x43\x8c\xea\x0a\x0d\xed\x71\xc9\xca\x66\xef\x80\xa9\xaf\xef\x00\xa8\x0f\x4e\xd4\x60\x83\x82\x97\x2a\xbc\xce\x27\x7d\x06\xa8\xef\x63\xd1\x84\x87\xc6\xf6\xc9\xd1\x50\x9e\x63\xda\x9d\xaf\xac\xa4\xba\x8e\xa9\xab\xd3\xb6\x3b\x49\x47\x79\xeb\x2f\x75\x04\x84\x14\x68\x8c\x50\x2e\x50\xd3\xe2\x4b\x2f\x9d\x03\xa8\x91\x6a\x0d\x58\xa0\xfc\xa0\x62\xb6\x36\x4b\x36\xcf\x8e\xd3\xc7\xfa\xb9\x3a\x5f\x03\x82\x0a\x21\x2c\x5d\xe3\x6f\xff\x33\x33\x0a\xdd\x11\xb6\x04\x46\x2a\xf2\x52\x86\x06\x00\xb9\xc0\x0f\xb7\xdc\x48\xb4\x2e\xd0\x83\x60\xa0\x40\xc8\x8f\xfb\xf9\xce\xcd\xf5\xd9\xb5\x49\x4f\x1f\x42\xb3\x91\x8b\x9a\x26\xed\x9a\x67\xfd\x47\x01\x8b\xa3\x21\xc7\xcc\x78\x7c\x03\xac\xa4\x38\x7c\xf5\x4c\x1b\x5e\x68\xa0\x77\x0d\x90\xbe\x38\x52\x3a\x2e\x9a\xd0\xac\x4e\x72\x2e\x9e\x31\x03\x27\xcf\x03\xf5\x93\xf8\x84\xde\x25\x99\x5c\xfd\x27\x26\x4f\x1c\xa4\x85\xfa\x32\xaf\x47\x57\x58\x48\x0f\x84\xc0\x92\xcb\xc5\x0c\x8c\x34\x8d\x58\x90\x70\x5a\x79\x42\xbc\x63\xfb\x08\x95\x83\x0f\x86\x5d\xd2\xa6\xf1\x62\xda\x91\x94\x36\xe7\xe9\x9a\xd9\xfa\xe4\x90\xde\x7d\x2e\xa6\x9e\x24\x99\x62\xcb\x88\xc7\x8b\x95\xa5\xe5\xac\x3e\x25\x17\xd5\x01\x94\x60\xa5\x05\x22\x80\xf5\x13\x02\x64\x80\xf9\xd7\x1e\x04\x9c\x50\x19\xa4\xfa\x68\x7d\xe5\x39\xa0\xeb\xb9\x0b\xe9\xfe\x18\xfd\xcf\xe5\x39\x4d\x7a\x5d\xea\x98\xfa\x47\xd7\xb7\x35\x73\x49\x83\x48\x48\x31\x74\x41\x49\xa2\xb2\xfb\xcc\x67\x3e\xb3\xa4\x28\xc9\x32\x51\xbd\xf1\xa9\x57\xe0\x60\x7d\x92\x6c\x9d\x99\xa6\x17\x7b\xba\xfc\xa0\x62\x49\xbc\x0c\x32\x9a\x77\x5c\x5a\xfe\x11\x41\x88\xa9\xd1\x4f\x63\x39\x61\x5f\xcc\x2a\x01\x30\xf9\xfe\x11\x08\x27\x88\x58\xfa\x86\xc2\x16\x92\x86\x05\x4f\x8b\x44\x4f\xef\xad\x2e\xde\xd8\x19\x2d\xde\xd6\xaa\xb6\xb2\xd0\xbb\x5b\xa8\xc5\xa5\xb6\xb6\x10\xc4\xde\x2a\x4b\xf6\x2b\xf9\x73\x80\xc0\xc3\xf8\x20\xe7\x8a\x1b\x03\x76\x62\x9f\xbb\xd0\x75\x49\xe7\x34\x72\x84\xd2\xf1\x0d\x3a\xa7\x51\xf6\xb1\x65\xc2\x9d\x6b\xa0\x39\x8d\x3c\xae\x78\xa7\x29\x7b\x17\x4d\xec\xc0\xe8\x0b\x97\xda\x1f\x6f\x97\x2e\x85\x2c\x59\x87\x62\x81\x69\xcc\x3b\x78\xc2\x1f\xd4\xb3\x8f\xb7\x4f\xbe\xae\xe5\x1d\x2b\x07\x8f\x1f\x3b\xd1\xed\x2a\x9f\x8b\x37\x4f\x87\xca\x2e\xa5\xe3\xf2\x13\x79\x73\x00\x53\xe9\xfd\xfa\x53\x01\x15\x90\x51\x00\xf5\x44\x32\x34\xa1\xaa\xd3\x64\x20\x08\x08\x8f\x56\x78\xf5\x5c\x6f\x05\x60\xd7\xf8\x9f\x06\x30\xf8\x26\x88\x5c\x66\x89\x3e\x06\xf0\x48\x79\x8e\xd1\x57\xb1\x6d\xbd\x8e\x97\xc0\xf2\xf1\x23\x7e\x9c\xd0\x77\x5c\x90\xff\xb9\x32\x23\x66\xf4\x7b\xdf\xfb\x9e\xb9\x72\xe5\x8a\x35\x80\xa8\xea\x2f\x81\x72\x97\x76\x0f\xcb\x63\xd0\x83\xd1\x2c\xd9\x78\x74\x7f\xf0\xfe\x0b\x87\xfd\x0f\xf5\xf3\xe4\x7c\x73\x52\xa8\xbd\xc7\x04\x80\x2f\xdf\x34\xdb\x74\x97\xf7\x9b\x50\xa0\x42\xac\x36\xd2\x51\x68\x6c\x36\xfd\x3a\xd6\x19\x1b\x0b\x4c\x0d\xa2\x48\x6a\xe4\x6a\x5e\x04\x00\x8d\x90\x1f\x0f\x8a\x9d\xd7\xcf\x4d\xbe\xf9\xa3\xb3\xb3\xd7\x0b\x34\x07\x00\x70\x52\x6d\xd2\x9a\x54\xc7\xe7\xa6\xd0\x00\x97\xa2\xda\x94\x6b\x00\xc0\xbc\xf0\xc2\x0b\x5a\x6b\x8d\x7b\x7b\x7b\x58\x14\x85\x2d\x3f\xe9\xb8\xa1\x75\xbc\x11\xf0\x3a\xb5\x45\xc2\x1b\x2e\xaf\x6b\x1a\x87\xa6\x27\xa5\xcf\x65\xf1\xc5\xf1\x1d\xad\xf4\x1d\x8b\x94\xfc\xbb\xca\x13\xcb\x1b\xc9\x9f\xf6\xc4\x91\xf2\x1a\x4a\xc7\x86\x41\x40\x6e\x9b\xb6\x75\xbe\xbc\xd2\x34\x81\xbd\xd3\xb6\xe0\x93\x27\x54\x8e\x4a\xf8\xe5\x61\x94\xa7\xd4\x36\xa5\xfc\x73\x47\xf5\x12\xcf\x17\xd7\x53\x52\x99\x71\x39\x62\x74\x95\x24\xbf\x2b\x2e\xef\x2b\x12\xad\x54\xfe\x9c\x86\x96\x8f\xd4\x4e\xa5\x70\x5e\x2e\x21\x7e\x94\xa7\x4f\xb7\x4b\xf2\xf1\x36\xe2\x4b\xd3\x15\xcf\x25\x13\x75\x31\x79\x90\x74\x53\x48\x6e\x5e\xa6\xde\x36\xf1\xd2\x4b\x2f\x99\x97\x5e\x7a\xc9\x8e\x51\x06\xcb\x63\xd3\xf6\x17\xc8\x33\x05\xd4\x96\xaf\x06\xa8\xbf\x27\x64\xfd\x0a\xc6\xc3\x00\x80\xdd\xfb\x52\xf3\x7d\xe1\x85\x17\xf4\x4b\x2f\xbd\x64\x5e\x7e\xf9\xe5\x5a\xa6\xd9\x6c\x16\x53\x6e\x92\xa3\x79\xf5\x95\x8f\xd5\x2d\xb6\x3d\x69\x07\x3d\x0a\xcf\x3c\x7e\xa8\xce\xb8\x93\xda\x8c\xab\x2f\x20\x00\x18\xba\x39\x97\x23\xaa\x10\x3a\x05\x70\x23\x2f\xea\x9c\x28\x91\x2e\x13\x11\xe4\x6a\xff\x52\x28\xaf\x4f\xce\x46\xb3\x74\x7d\x63\xd2\xbb\xd8\xcf\xd5\x76\x69\x0c\xb1\xc7\x9b\xcb\xfc\xd1\x92\xa2\xcb\x40\xf4\x42\xb9\xe6\x6e\xdc\xe6\x2c\x51\xbd\x06\x49\x85\x62\x47\xa1\x5b\x41\x8e\x0c\x12\x83\x0a\x38\x23\x93\xa0\x5c\x99\xe9\xfe\xca\xe2\xe6\xed\xb5\xf9\x9b\x8b\xd4\x8c\xc1\x94\xd6\x16\xba\xa3\xdc\x5e\x36\x04\xd0\xda\x90\x5b\xa3\xf1\x6f\x7e\xf3\x9b\xbc\xae\xac\x93\xde\x7d\x2e\x84\xc6\x25\xe4\xeb\x4a\x9b\xf2\xa0\x61\x1c\x31\xfb\xe4\x0b\x59\x0e\x38\x4f\x4e\x2f\xcd\x7e\x5c\x8e\xe7\x87\xfb\xf3\x34\x5d\x3c\x68\x1c\x29\xcf\xd4\x85\xac\x01\x3e\xd7\x85\x96\xe7\x4d\xaa\x3b\x57\x1c\x5f\x7b\x90\x66\x46\xb1\x2e\x34\xbb\x76\xc9\x23\xd1\xf8\x66\x9f\xa1\x36\x14\x23\x43\x97\x78\xd4\xb9\x66\x8a\x94\x6f\x97\xb6\x11\xfb\x1e\xf2\x97\xd2\x89\xa1\xe5\xf1\xba\xe8\x7e\x1e\x8f\xf7\xd7\xd8\xb8\x3e\xe7\x2b\x07\x1b\xdf\xd7\x3e\x24\x5e\x2d\x9e\x7c\x99\x86\x7c\x36\x40\xda\x67\xe8\x74\xc2\xa6\xdf\xda\x45\x9e\x14\x72\x8d\xcd\x3e\x19\x62\xe2\xc5\x96\x0f\x0f\x93\xac\x27\xfc\x5d\x4a\xdb\xd7\xaf\xa3\xfc\xa4\x6f\x15\xb9\x84\xe6\x8d\xcf\xa5\xb0\x7c\x15\x58\x87\xfd\xfc\xcf\xff\x7c\xad\xe0\x85\x06\x90\xda\x13\x45\x69\x81\xd9\x99\x49\xba\xbd\x3e\x4d\x2e\xa6\x1a\x47\xb5\xe5\xa2\xfa\x30\x62\x8d\x11\x8c\xc5\x1c\xa5\x4f\xbd\x64\x44\x40\x84\x31\x08\x68\x97\x81\x0c\x50\xf3\x5c\xf9\x6c\x2a\x68\x53\x83\x19\xcb\xab\xfc\x2d\x3f\xe2\x48\x64\xb5\x80\xa5\x36\xdd\x40\xf5\xb1\x46\x39\xf3\xc6\x18\x30\x0a\xf4\xa4\x57\x1c\xde\x5d\x5d\xbc\xb1\x3b\xcc\xef\x40\xfb\x24\x91\x3d\xcb\x6f\xef\x6d\xd1\xe4\x8f\x5f\xed\x0f\xd0\xad\xe1\xd8\x67\xc9\x49\xf4\x12\xef\x50\xda\x2e\x39\xba\x74\x0c\x97\xf3\xe5\xc9\x27\xa3\x12\x68\x7c\xfc\x68\x98\x4b\x39\xb8\xd2\x97\xd2\xe1\xa0\xcd\x25\x67\x88\xb7\x14\xcf\xe5\xef\x52\x5e\x3c\x3c\x54\x6e\x2e\xfe\xbc\x8d\x48\x83\x59\xec\xe0\x48\xe3\xc6\x94\xeb\x69\xe8\x7d\x75\x12\xeb\x0f\x42\x98\x0b\x3c\xf3\x67\x1e\x9f\x0f\x26\xdc\x8f\xba\x98\x81\xc7\xe5\x62\xfb\x0c\x77\x31\xe5\xed\xa2\x8f\xe1\x77\xbf\xcf\xa1\xfa\x00\x16\x7e\xdf\xed\x64\x75\x75\x55\x9d\x9c\x9c\x68\x80\x36\x90\xf9\xc2\x17\xbe\xa0\xec\xe6\x5b\x80\xe5\x31\x45\xd8\xa4\x5b\xff\x5a\xb0\xf2\xc9\x4f\x7e\x52\x01\x00\x7c\xe4\x23\x1f\x51\x5f\xff\xfa\xd7\x63\xe4\x96\x9c\x6b\xe2\xe5\x9a\x1c\x75\x29\x07\xce\xe7\x34\x65\xc9\xf1\x43\x17\xde\x4b\xb4\x76\x89\x06\x1c\x44\x5d\x5c\x6c\xa7\xaa\xe9\x9e\x7f\xfe\x79\x55\x5d\xef\x6f\xff\x52\x2c\xaf\x53\x1e\x00\xc0\x10\x00\x46\xa3\x69\xb2\xf5\xcc\xdb\xa3\x9f\x7b\x6a\x67\xf8\x7f\xac\x4d\xd3\xf7\x02\x98\x1a\xa8\x34\xdf\x18\xa2\x76\x17\x6b\x57\xb2\x00\x45\xfe\x1a\x73\x49\xd1\xd8\x6a\x10\xe4\x1b\x6e\xdb\xf4\x6e\xab\x8b\xe5\x47\x25\x92\xdc\x3c\xd1\xd3\x5b\x6b\xf3\xef\xfd\xc7\x23\x47\xff\xf0\xc3\xad\xe9\x2b\xc6\x98\x7d\x28\xcf\xf9\x1f\x42\x75\xa6\xbf\xfa\x16\x86\x3d\x0a\xad\x81\x9c\x2a\xd2\x5a\xc3\xef\xff\xfe\xef\x5b\x76\x92\x02\x04\xcf\xbb\x04\x60\xa4\x46\xe4\xe2\x41\x69\x5c\x75\xed\xea\x34\xb1\x6d\x43\x92\x89\xf3\xf6\x0d\x5e\x10\x78\xf7\x0d\xb6\x31\xf2\x74\x19\x08\x63\xe3\xf0\xf0\x50\x9e\x5c\x65\xea\x52\x00\x52\x7c\x9f\x9c\xa7\xc9\x0f\x4d\x0b\x1c\xe1\xa7\x75\x5d\x07\xec\x10\x8f\x98\xb2\x8f\x49\xb3\xb3\xc2\x0d\xd0\x84\x78\x77\x75\xa7\xc9\x4b\x57\xde\xff\xab\xdd\x69\xc1\x54\x0c\xfd\xfd\xb4\x0d\xd1\xfd\xd2\x2f\xfd\x92\xfa\xbb\xbf\xfb\xbb\x1f\x57\xdf\xe8\x22\x57\x4c\x5e\x4e\xcb\x3b\x94\xe6\x7d\xbb\xd8\x06\x1d\x0a\xf3\xa1\x3a\xee\x6a\xd0\x62\x3d\xc8\xf1\xb3\x1a\xc0\x00\x40\x0a\x06\xd2\xd1\x3c\x59\x5f\x9f\x26\x17\xfb\x0b\xb5\x55\x2e\xf1\x54\x0b\x3d\xad\xaf\x2c\x13\xd0\x62\xec\x53\x7b\x09\xc8\x10\x38\xd3\xfc\x36\x8b\x4a\x95\x20\x84\x7e\xf9\xb7\xcd\x8f\xfd\x1a\x9a\x62\x23\x4b\xf9\x6b\xd3\x36\x30\x4b\xf4\xe1\xbd\xd5\xc5\x9b\x77\x57\x17\xb7\xa1\x3a\x3d\x54\xfd\xd1\xcf\xa7\x6b\xf6\x07\x88\x08\x45\x51\xc0\xdd\xbb\x77\x81\xf8\x87\x66\x20\xd6\x49\x0d\x90\x77\x48\xc5\xc2\x68\x1c\x4e\x2b\xc5\xe3\x61\x9c\x9e\xfe\xf2\x3f\xea\xb4\x23\xdc\x95\x57\x4a\xaf\x1d\x34\x20\xbc\x4b\x65\x20\xfd\xd2\x70\x2a\x03\x95\x8d\xb7\x7d\xfe\x1c\x2a\x3f\x1e\xc6\xf3\x20\x01\x4e\xee\x5c\x7d\x4f\x2a\x13\x57\x1d\x4a\x8a\x3b\x54\xc7\x92\xbf\xa4\x0b\x38\xad\xab\xfe\x25\x9e\x34\xff\x5d\xca\x80\xc6\xe1\x75\xef\x92\x35\x04\xc8\x24\xb9\xa8\x73\xb5\xa9\xd8\x7e\xca\xe9\x5d\x65\xe9\x93\x8f\xcb\xe2\x6a\x3f\x3c\x3d\x17\x3f\x57\x1d\xc7\xd2\x87\xc6\x85\xae\x74\xf4\xdd\x25\x87\xaf\x6f\xbb\xe8\x7d\xed\x8e\xbe\xbb\x26\x7b\xc1\x7a\xaa\x40\x4b\xcc\x38\xe9\xe3\xef\xaa\x37\x57\x3c\xe9\x3d\xa4\xdb\x79\x58\x97\x74\x42\x61\xb1\xe5\x45\xe9\x5b\xb4\xae\x0b\xe8\x24\xa5\x29\x39\x9e\x79\x69\xa0\xe0\x9d\x50\x4a\xa7\x06\x2f\xd5\x97\x3a\x15\x22\xa6\x89\x81\xec\xec\x38\xdd\x3e\x33\x49\x2f\xa6\x1a\xd7\x9b\x25\x1b\x43\xb0\x4a\x1b\xc4\x20\x36\xdf\x78\xb6\xcb\x3e\x00\x1c\xc6\x00\x58\xcb\x8d\xfd\x3a\xb3\x5d\x6a\x6a\x6d\xe2\x35\x34\x3e\x77\x36\x15\x9b\x2e\x03\x37\x86\x8a\x55\x3e\x14\xca\xcc\x8f\x06\xc5\xdd\x3b\xa3\xf9\x1b\x07\x83\x62\x17\xaa\x7d\x2d\xe4\x24\x11\xbd\x6c\xae\xfe\x5a\xa9\x2d\xb7\x3f\xf8\x83\x3f\x08\x95\x2f\x2f\xd7\xd0\x8c\x5c\xaa\x17\x29\x4c\xaa\x43\xa9\xd3\x4b\x7c\xa4\xf4\xb9\x2c\x3e\x3e\x34\x8c\xd2\xb8\xc2\x39\x1f\xd7\x8c\x81\x0f\xe4\x31\x65\x1b\x2a\x03\xfe\xec\x53\xb4\x3e\x5e\x9c\x1f\xcf\x8b\xc4\xd3\x35\x18\xbb\xf2\x16\x92\x95\xf3\x72\xe9\x01\x57\xfb\x70\x95\x7b\x57\x9e\x2e\x1e\xc0\xc2\x7c\xf4\x21\xa5\x1b\x93\x8e\x8f\x5e\xaa\x2b\xa9\x2c\x7c\x6d\xd1\xd5\x7e\x5d\x32\x85\xfa\x97\x8b\x5e\xd2\x0d\xb1\xe5\xe3\x92\xd9\xd7\xbe\xe8\xbb\x4b\xef\x84\xf8\xbb\xfa\xb2\xaf\x0c\x5d\xfc\x43\xed\x8e\x3a\x9f\x9e\x8c\x75\xae\x3e\xef\xd2\xdb\x2e\xdd\x17\xe2\x43\xe5\x8f\x91\xdb\x55\xbe\x31\x60\xc8\x17\x2f\xa6\x5d\xc6\xd0\xb9\xfa\xb0\x02\x58\xbe\xf2\x5f\x12\x86\xfa\x73\x3a\x29\x2e\x7f\x16\x07\x1c\x72\x55\xbd\x82\x12\xb0\x28\x28\x01\x4b\x7d\x14\xba\x57\xa8\xc1\xd9\x49\xef\xd1\xd5\x79\xb2\xad\x0c\x66\xcd\xe1\x9c\x72\xbd\xd0\xee\xed\x2e\x37\xda\x36\x09\xd7\x9b\x72\x0d\xb5\x7c\x50\x1b\x4b\xb3\x45\x17\x0d\x00\x56\x66\x1a\x43\xe3\x02\x30\xab\x0e\xf9\xa9\xac\x2b\xc6\x98\xfa\xdd\x34\x10\xa8\xda\x2a\x6e\x88\x4c\x06\x0c\x18\x98\x27\x66\xbc\xb7\x92\xdf\xba\xbb\xba\x78\x1b\x10\x5a\xf7\xb5\x18\x63\xe6\x92\xb5\xc5\x96\xd3\xd5\xab\x57\xf5\x67\x3f\xfb\x59\xdf\x80\xcd\x07\x6b\x69\x80\x8f\x51\x74\x52\x63\x91\x14\x0b\x4d\x47\xe2\xed\xea\x80\x2e\xde\xbe\x78\x3e\x3e\x31\x69\xb9\xde\x5d\xf9\x72\x3d\x77\x19\x10\x79\x1a\x21\x99\x38\xad\x8b\x8e\xfb\x49\xf5\xcc\xc3\x39\x8f\x18\xe0\xe7\x8a\x2b\xc9\xe9\x92\x81\xba\xd3\x94\x5d\x8c\x9f\x14\x16\xe2\x1d\x02\x69\xb1\xe9\x86\xea\xc5\x95\xb6\x34\xc0\xfa\x80\x45\x28\xed\x50\x5b\xe0\x34\x31\xbc\x5d\x7c\x62\xea\x99\xa7\x29\xbd\xd3\x81\x48\xfa\x8d\xed\x37\xa1\xf2\xf2\xe5\xe3\x34\x65\xec\xe3\xc3\xf3\xe4\x8b\xe7\xd2\x2d\xae\x71\xd6\x55\x06\xde\x7e\xe2\xb8\x36\xa3\x99\x90\x57\xc7\xba\x1d\x32\x2a\x41\x1e\x91\x9f\x87\x47\x50\xc6\x08\x7e\x4b\xe5\xe2\x6a\x24\x5d\x1b\x0f\xf7\x0b\xa2\x2e\x52\x70\x36\xac\xfe\xab\xac\x2e\xe9\xfa\x24\x5d\x3f\x3b\x4e\x1f\xef\xe7\x6a\xab\x0c\xc3\xd6\x37\x83\x9a\x13\x40\x0d\xf0\x00\x02\x3c\xea\xa3\xc9\xd8\x58\x56\x38\x8d\x41\x00\xbe\x44\x44\x4f\x26\x01\xa1\xa3\x46\x1e\x2b\xbb\xdd\xeb\xdb\x3e\xc1\x54\xfe\x47\x42\x67\x10\xf4\xa4\x57\xec\xde\x5b\x9d\xbf\xb9\xb7\x92\xdf\x05\x72\x8a\x08\x88\xa5\xc5\x18\x93\x1b\x63\xb4\xfd\xb3\x77\x07\xfc\xda\xaf\xfd\x9a\xfa\x93\x3f\xf9\x13\x5b\x37\x1c\x20\x72\x8b\x00\x90\x77\x4a\x07\x8c\x2e\xa4\x3c\xa4\xb8\xbe\xc6\x4c\xc3\xf8\xb3\xcb\x85\xe2\x84\x64\x0a\xc9\xe3\x7a\xf7\x3d\x73\xde\x21\xa5\xe8\x03\xf8\xbe\x38\xfc\xb9\x4b\x5e\xe9\xaf\x24\x9f\x8b\xb7\x44\x13\x8a\x13\xaa\x6f\x5f\x19\x85\x06\x72\x97\x8b\x51\xfe\x31\x7c\xbb\x28\x48\x69\x10\x8a\x91\x25\x54\xe7\x21\x79\xa8\x7f\xd7\x72\x8a\xe5\xdf\x85\xd6\x55\x0e\xe0\xf1\xe7\xe1\xb1\x65\xe2\x03\xc9\x3e\x17\x02\x2c\x31\xf2\x87\x40\x5e\x8c\xeb\x0a\xb0\x5d\xb4\x5d\xc0\xb1\xe8\xf8\x65\xae\x00\x50\x6f\x1a\xe6\xe1\xd6\xdf\x18\xa3\x2f\x5d\xba\xe4\x6a\xdf\xae\x49\x8a\xcf\xc5\xf6\xd5\x2e\x7d\x86\xc6\xd5\x00\xee\xa5\xa2\xfb\x71\x7c\x06\xc1\x13\xb6\x9b\x72\x39\x1a\xac\x01\x0b\x22\xa6\x89\x86\xec\xa1\x93\xde\xf9\xf5\x69\xf2\x58\x4a\x2f\x9d\x03\x00\x6a\xdf\x68\xf6\xbd\xb8\x0f\x81\x63\x2b\x0e\x5b\xe2\x69\xb1\xad\xb8\x7a\xee\x69\x59\x0e\x20\xa7\x98\xaa\xf5\x21\x69\x6b\x6e\xae\xcc\xf4\x60\x50\xec\xec\x0d\xf3\x5b\x8b\xc4\x8c\x41\xbe\x6c\x8e\x7e\xe0\xab\x75\xe1\x1d\x73\x5e\x34\x4a\x9c\x34\x9b\x8b\x99\x1d\xf3\xfa\x73\x29\x23\xa9\xc1\x87\x94\x21\x57\x38\xb1\x1d\xd3\x25\x13\xcf\x0f\xe7\x2f\xe5\x59\x1a\xf4\x7d\xca\x5a\x8a\x13\x02\x34\x52\xb9\x4b\xf9\x91\xf2\xe0\x92\xdb\x15\x9f\xcb\x1f\x03\xb6\x80\xd1\xf0\x74\x24\xf9\x38\xff\x90\xdc\xf7\x3b\x08\xff\x57\xbb\x18\x10\xe3\x8a\x27\xe5\xdb\x07\x2a\xbb\xf0\x3e\xad\x0b\xd5\x81\x2b\x3c\x26\xcd\xff\xd5\xf5\xab\x01\x00\x3e\xf7\xb9\xcf\xa9\x3f\xfe\xe3\x3f\x8e\x96\xe3\x13\x9f\xf8\x84\x7a\xf1\xc5\x17\xbb\x80\xa3\x07\x9d\x47\xa9\x6d\xc4\xb4\x13\x00\x00\x78\xe2\x89\x27\xd4\x47\x3f\xfa\x51\xb0\x79\xfe\xdd\xdf\xfd\x5d\xf5\x47\x7f\xf4\x47\x22\x38\x91\xdc\x17\xbe\xf0\x05\x05\xd0\x18\x0e\xae\x5e\xbd\xaa\xaf\x5f\xbf\x7e\xda\x3c\xc6\xe4\xe1\x41\xf0\x5e\x72\x12\x70\xe1\x11\xb8\xa2\x0b\x29\x65\x3e\xa0\x88\xb4\xec\xce\x16\xc5\xde\x53\xa5\x31\xdb\x98\xa4\x8f\xae\x2c\x92\x2d\x34\x90\x95\x27\x89\x2c\xd8\xa9\x00\x88\x41\x30\xd8\xec\x49\xb1\x4b\x46\xf6\x18\x74\x7d\x6a\xd9\x54\x34\xb5\xb9\x84\x9e\x91\x86\x1a\x7c\x2c\x9f\x28\x22\xe7\x84\x0c\x89\xd9\x22\x6b\x16\x88\x0c\x3d\x7f\x5d\x2d\x23\x61\x75\xe7\xcc\x2c\x35\xc7\xbb\xc3\xfc\xd6\xde\x4a\x7e\xdb\x80\x99\x23\x60\x7d\xf4\x19\x9a\x3d\x2d\x4b\x1f\x52\xf4\x1c\x81\x06\xe6\x47\x07\x13\x00\x59\x39\x4a\x40\x44\x0b\xfe\xfc\xd9\x35\xbb\xf1\xbd\xc7\x3c\x73\xe7\x6a\x47\xa1\xb8\xb1\x69\x75\x95\xcf\x57\x1e\x5d\xe2\x3c\xa8\x74\x1f\x44\x79\x77\x29\xc3\x07\x21\xab\x4b\xb9\x49\xcf\x5d\x06\xf4\xfb\xe1\x1d\xf3\x1c\x93\xa6\xcf\xcf\x15\xcf\x05\xf4\x24\x7a\xeb\xba\x96\x25\x8d\x23\xa5\x23\xe9\xf8\xd3\x80\xcd\xd8\xb2\x90\x40\x71\x0c\xaf\x96\xff\x6f\xfe\xe6\x6f\xaa\x3f\xff\xf3\x3f\xd7\x00\xe5\x00\xfc\xc2\x0b\x2f\xe8\x7e\xbf\x5f\x0f\xd6\xf4\x56\x73\x76\x1b\x6d\x7d\xf4\xf8\xf1\xc7\x1f\x87\x17\x5f\x7c\x51\x92\x23\xd4\x0e\xba\xb6\x9f\x2e\x6d\x2c\xba\xcc\x7f\xf0\x83\x1f\xe8\x1f\xfc\xe0\x07\x2d\x80\x42\x8e\x64\x03\x22\x2a\x9e\x77\xc7\x04\x58\x03\x2c\x1b\x11\x3c\x9f\x16\xe8\xd2\x46\xba\xe4\xdd\x35\x39\xf2\xca\x81\xdc\x23\x20\xd0\x03\x71\x15\xea\xa3\x80\x25\x33\xc6\x64\x00\x30\x40\xc4\x21\x00\xac\xaf\x4f\x92\xed\x8f\xbf\x7e\xe6\xb3\xef\xdc\x1b\xfc\x42\x3f\x57\xdb\xfc\xd6\x5b\x00\x0a\x19\xa0\x46\x2c\xc8\x68\x2c\x1d\x7f\x97\x78\x71\xbe\x36\xdc\x65\x6d\x59\x3a\x69\x64\x38\xa8\x29\x69\x0a\x34\xf9\x9d\xd1\xfc\xd5\x6f\x5d\x38\x7e\xf1\xd5\xed\xf1\x4b\x85\x82\x5d\x63\xcc\x3e\x96\x9f\x36\xb7\x9f\x3a\xb7\xdf\x29\xe2\x9f\x33\xa7\x8d\x29\x06\x99\xc7\x76\xba\x90\xb2\x73\x29\x1b\x17\xb0\x95\xf8\x73\x9e\x9c\x6f\xcc\xe0\x12\x23\xaf\x8b\x96\x77\x0a\xfe\xec\x0b\x73\xe5\xe1\x7e\xf2\xc7\x5d\x6c\x9e\xa8\x3c\x9c\xbe\x6b\x1e\x42\x03\x8b\x4b\x39\xc5\xd6\x8d\x44\x2f\xb9\xd3\x0e\x14\x5d\x9d\x54\x1f\xb1\xf1\x7c\xed\xb3\x8b\x5c\xa1\x78\xbe\xf7\x1f\xa7\x5e\xfe\x2f\xd3\xf9\x1d\xd2\x72\xd2\x79\xac\x09\x9d\xdb\x5f\xe4\xb7\x7f\x82\x7c\xee\x83\xb6\x73\x7c\x21\xff\x52\x79\xd4\x20\x6e\xe9\x9e\xb2\xb6\xf3\x82\xa7\xab\x57\xaf\xea\xcf\x7f\xfe\xf3\xea\x0f\xff\xf0\x0f\x35\x00\x80\x52\x4a\x69\xad\x1f\x44\x5b\x39\x2d\x48\x6e\x39\xdf\xb5\x24\x0f\xb2\x51\xd7\xca\x93\xa0\x63\x55\xa1\x43\x7b\x77\x8b\xbd\xbf\x65\x04\x00\xeb\x97\xee\x0d\x2e\x7f\xe8\x8d\xf5\xff\x6b\xfb\x38\xfb\x70\xaa\x71\xc4\x85\x25\x86\x12\x11\x31\x88\xe0\x86\x38\x17\x78\x69\xf1\x6f\x3d\xc8\x20\x26\x74\xb7\x0b\x00\xc0\x34\x29\x8e\x5f\x3f\x37\xfd\xd7\x6f\x5f\x38\xfe\xa7\x9b\x67\xe6\xd7\xa0\xbc\xb7\x65\xdf\x18\x73\x5c\x81\x97\x63\xf2\x71\xc5\xd6\xad\xb9\xc2\x8d\x8a\xf7\xab\xd4\x7c\x71\x62\xd1\x31\x38\xe8\xba\x28\xe0\x10\xb8\xf0\xc5\x7f\xd0\x74\xd4\xc5\x82\x22\x29\x9e\x0f\xd0\xc4\xc8\x23\xc5\x8b\x01\x1e\x5c\x06\x1a\x4f\x72\x31\xe5\xe3\x72\x5d\x41\x91\x8f\xcf\x69\x68\x4f\xab\x97\x62\xf3\xd6\x05\x6c\x76\xe5\xdf\xc5\x3d\x88\x7c\xc6\x96\x5b\x2c\x20\x8b\x69\xe3\xa7\x75\x75\x9a\x9f\xfe\xf4\xa7\xd5\xdf\xfe\xed\xdf\x6a\x6b\x49\x10\xe8\x5c\xf1\xb9\xd3\x00\x6d\xab\x83\xf4\x7d\x20\x80\x28\x4b\x43\xc8\xaf\xab\x8b\x6e\x47\x6c\x6f\x0a\x2f\x13\x25\xfd\x86\xee\x24\x23\x69\xf0\xdf\xd6\xf7\x92\x00\xca\xb2\xf9\xd4\xa7\x3e\xa5\xbe\xfc\xe5\x2f\x9f\x06\xb4\x73\x59\x1f\x48\x3f\xf6\xed\x71\x89\x55\xd2\xd2\x4c\x50\x8a\xab\x7f\xf5\x57\x7f\xb5\x2e\x5c\x7e\x77\x4b\x55\x21\xf5\x87\x15\xcf\x8d\x7b\xe7\x87\x0b\xb5\x95\xd8\x65\xa2\xca\xd5\x9b\x67\xed\x2d\xb5\x50\x9d\x11\x62\x08\xa2\x0d\x3a\xda\xdf\x29\xe2\x68\xc3\x0b\x46\x5c\x74\xe4\x96\x5d\x9f\xd3\x60\x60\xda\xd3\xfb\xf7\x56\x17\x37\x0f\xfb\xc5\x2e\x54\x9b\x71\xa1\xb4\xaa\x58\x0b\x8b\x26\x16\x96\x7a\x43\x2e\x33\xef\x49\x75\xd1\xa5\xb3\x85\xe2\xf0\x30\x89\x4e\xac\x57\x4f\x1c\x5f\x23\xe5\x1d\x26\x94\x3f\xd7\xf3\x69\xe4\x91\xc2\x7c\xfe\x31\xb3\xf6\x25\x05\x10\xe0\xed\x93\xdb\x27\xcf\xfd\xd4\xdf\x69\x78\x9f\xb6\x7c\x5d\xf1\x63\x69\x5d\x83\x69\x0c\x30\x96\x9e\xbb\x96\x87\x0f\x64\x4b\x32\x9f\x56\x21\x87\xc0\x6b\x97\x3c\x72\xd7\xb5\xcf\xf8\x26\x2b\x34\x8f\xbc\x2c\xba\x00\x1a\x97\xdc\x75\x9c\x0b\x17\x2e\xd0\xe5\x0f\xd7\x40\xbd\xf4\x2c\x58\x19\x34\x40\xbd\x9f\x43\x7b\x74\x75\x0b\x24\xbd\xf9\xe6\x9b\xf0\xa5\x2f\x7d\x49\x5f\xba\x74\x49\x91\xfd\x1f\xbe\x89\x45\x97\xb6\x2c\xb5\xeb\x5a\x8e\x8f\x7d\xec\x63\xf0\xb5\xaf\x7d\x0d\x00\x9a\x25\xa0\x2a\x3f\x8a\x7c\x27\x4f\x91\x78\xf5\x2f\xfd\xe0\x23\xbb\x89\xbe\xe6\x6f\x1f\x08\x38\xb1\x20\x4e\x4b\xb7\xff\x02\x94\xc6\x06\x3b\x16\xfd\xdc\xcf\xfd\x9c\xfa\xca\x57\xbe\x22\xf5\xa7\x98\xfc\xba\xe2\xb8\x26\xb1\x4e\x1e\xbe\x7b\x5c\x7c\x0d\x18\x84\x67\xee\xb7\x44\xf7\x37\x7f\xf3\x37\xb4\x81\xd0\x82\x6f\x81\x96\xb4\x80\x6c\x63\x92\xbe\x33\xcb\xd5\x06\x9a\xb6\x8c\x6d\x40\xd1\x5c\xc5\xdf\xbc\x91\x5f\x7b\xaa\x87\x1e\x71\x06\xb2\xf7\x05\x0c\xd8\x6f\x1f\x89\x69\xf8\x1c\x4a\x77\xc3\xb4\x9d\x01\x00\xad\xcc\xfc\x70\x50\xec\xec\x0e\xf3\x9d\x71\x56\x1c\x93\xef\x11\xcd\x8d\x31\xf6\xd2\x39\x0d\xd5\xf2\x10\x99\x1d\x68\x80\xf2\x3a\xe8\x7f\xfa\xa7\x7f\x8a\x55\x2c\x2e\x25\xea\xea\x2c\x5c\x01\xc5\x28\x6b\xa9\x51\x71\x5e\x2e\x25\xe6\xe2\xe5\x7a\x76\xc9\x0c\x20\x37\xec\x50\x47\xe0\xf2\x70\x99\x5c\x74\xae\x34\xb9\x8b\x2d\x6b\xdf\x00\xcc\xfd\x7c\x75\xe5\xcb\x5f\x48\x19\x70\xf9\xc0\x11\x16\x52\x28\x3c\x1e\xaf\x83\x2e\x83\x78\x57\x50\x14\x03\xa8\xba\xa4\xef\x72\x2e\xc5\x2b\xf9\x75\x4d\xaf\x8b\xdc\x5d\xf2\xe5\x02\x7e\x31\xb2\xc4\xa4\x23\xd1\xc4\xe4\x5d\x6c\x1b\x9f\xfe\xf4\xa7\xd5\x23\x8f\x3c\x42\xe9\xe8\x00\xcc\xc1\x0a\x1f\xb4\x01\x9a\xc9\x30\xd8\x78\xcc\x72\xd0\x02\x5d\x16\xd4\x90\xf7\x1a\xec\x5c\xbc\x78\x11\x00\x00\x9e\x79\xe6\x19\x30\xc6\xa8\x1b\x37\x6e\xf0\x76\x1c\xd3\xbe\x5d\x34\xbc\xac\x5a\xf1\xbf\xf6\xb5\xaf\x69\x80\x96\x95\xc5\x96\x43\x6b\xbc\x24\x80\x4e\x31\x1a\x5a\x3e\x92\xe5\xc5\x82\x13\x9a\xbe\x06\x68\x4d\x9e\x15\xb4\x81\x9e\x46\xc4\x5a\xa6\xaf\x7c\xe5\x2b\x5d\xf2\x4b\x9d\x0b\xc4\x84\xda\xcf\x92\x7f\x0a\x7e\x45\xed\x52\xd2\x3e\x45\xc5\x05\x05\x00\x80\xdf\xfa\xad\xdf\x82\x3f\xfb\xb3\x3f\x6b\x85\x57\x77\xb7\xd8\x0d\x45\x35\x78\x19\xcd\xd2\xd1\x9a\xfd\x36\x51\x85\x24\x9b\x1b\xde\xec\x85\x2a\xd8\x1c\x87\x26\x9b\xb2\xaa\x40\x76\x33\x2e\xdf\xe7\xd2\x1c\x7a\x36\xd5\x47\x3a\xf9\x17\xa4\xc3\xd7\xfb\x03\xbb\x64\x6e\xd9\x21\x00\x2c\x12\x33\xde\x1b\x2e\x6e\x1e\x0e\xf2\x3b\x5a\xc1\x14\x01\xeb\x3b\x5b\xd8\x65\x73\x9a\xce\x12\x00\xca\x0f\x6f\x3d\xf9\xe4\x93\xb6\x21\xc6\x82\x11\x10\xc2\x62\xc1\x03\x77\xd2\x60\xe8\x1b\xb8\x5c\x4a\xdc\x07\x2a\x24\x3a\x9e\x66\xac\x62\x94\xd2\x93\x1c\x07\x10\xae\x34\x5c\xe5\xc2\xd3\xa0\x4a\xc5\xc7\xcf\x05\x0c\xa4\x77\xa9\x4c\x24\x1e\x2e\xb9\x63\xca\xd4\x95\xbe\x54\x76\xbe\x3a\xf6\xd5\x29\x77\x31\x03\x28\x77\x31\xf4\x2e\xbe\xbe\x3c\x9d\xc6\x3d\x08\x3e\xae\xd9\x64\x97\xb4\xba\x0e\x02\x3f\xce\xbc\x77\x2d\x93\x16\x2d\xdb\xbb\x41\x2d\x27\xad\xc1\x5a\x78\xe7\x34\x00\xd0\x1a\x0f\xb8\x4e\xad\x7f\xc9\x55\x13\xca\x02\x9c\x8a\x5e\x01\x34\x5b\x1a\xfe\xea\xaf\xfe\x2a\x7a\x30\x05\xbf\xde\x0d\x3a\xc7\x1e\x16\x6a\x49\xa9\xff\xd8\x4a\x85\x02\x00\xb5\x32\x57\xd9\xea\x3c\x19\xf4\x73\x35\x4c\x34\x64\xca\x60\x8a\x55\xb9\x18\x00\x5d\x28\x33\xcf\x95\x99\x2e\x12\x33\x9f\xf4\x8a\xe9\xa4\xa7\x73\x8d\xad\xfd\x94\x1a\xca\xf1\x08\xc8\x7b\xcb\x19\x63\xf4\xf3\xcf\x3f\xaf\x84\xa5\x35\x57\x1b\x08\x95\xc1\xa9\xe2\x49\xc3\x6e\xa8\x11\xba\x06\xae\x60\xe3\x65\x28\x52\x41\x09\x9c\xe8\xb7\x89\x86\x00\xb0\x7e\xf9\xce\xca\x53\x3f\x79\x63\xfd\x0b\x67\xc7\xbd\x67\x12\x03\xc3\x1a\x4c\x08\xeb\x76\x22\xc0\x08\x6c\x46\x11\x37\xd1\xf2\x9b\x73\x3d\xc8\xa5\xa6\x25\x1b\x82\x0d\x61\x5a\x82\xa4\xb2\xf3\xec\xaf\xe4\xd7\x5f\xbe\x78\xf4\xe5\xd7\xb6\x26\xdf\x9c\x64\x7a\x07\xc8\x77\x89\xaa\xbf\x29\x94\x1b\x73\x6b\xeb\x8b\xed\x68\x55\xe3\x90\x14\x6f\x8c\xa2\xb8\x1f\x85\xed\x4b\xf3\xb4\x7c\xbb\xb4\xab\x1f\xa7\x8b\x4d\xe7\x7e\xe5\x71\x01\xf9\xd8\x0e\x2f\xf1\x83\x0e\x32\x75\x69\x23\x12\xff\x1f\x47\x7d\xb8\x40\xb3\x94\xa6\x6f\x90\x94\xe2\xba\xd2\xeb\x02\x0a\x5c\x13\x34\x7e\xbf\x77\xa0\x00\x00\x20\x00\x49\x44\x41\x54\x57\xdb\xef\x9a\xbe\x0b\xd8\xb9\xfa\x1b\x80\x3b\x3d\x5f\x5b\x72\xa5\x1b\x13\x37\x56\x7e\x9e\x07\xee\x5c\xf5\xd4\xe2\x49\xf7\x00\x2f\x40\xd0\xbf\x3c\x02\x2c\xdd\xeb\x05\x74\x60\xa6\xcf\x60\x20\x4d\x35\xaa\xac\xc0\xb4\x97\xab\x34\xd5\x98\x29\x53\xc6\xd1\x08\x5a\xa3\xd1\x5a\x41\x9e\x2b\x93\xcf\x53\x9d\xe7\xca\x68\x83\xe5\x60\x5c\xe9\x5a\x3a\x58\x03\xd1\xbb\xb5\x6c\x16\xd0\xd8\xcb\x3f\xbf\xfa\xd5\xaf\xc2\x9b\x6f\xbe\xe9\x6b\x07\xa1\xb6\xcc\x01\xfe\x52\x39\xb0\x32\xae\x81\xca\xd2\x37\xfd\x00\x55\x62\x20\x5d\x99\x27\x83\x95\x85\x1a\xf5\x34\xae\x6f\x1d\xf7\x36\xb7\x8f\xb3\xf3\x6b\xb3\x64\x33\xcb\xd5\x99\x54\xe3\xd0\xae\x58\x68\x05\xd3\x45\x62\xc6\xb3\xa4\xd8\x3b\xe9\xeb\xc3\xdd\xe1\xe2\xee\xee\x30\xdf\x1d\xf7\x8a\xfd\x71\xa6\x8f\xa7\xa9\x9e\x16\xca\xe4\x80\x35\x78\x69\x01\x19\x3a\x2e\x55\x65\xc8\x4f\xbc\xfa\xf2\x2b\xb9\x98\xb6\x0c\x82\x3f\x00\xf8\xef\x71\x71\x15\xb2\x0b\x51\x4a\x1d\x71\xc9\x59\x13\x17\xbd\x29\x17\x9a\x46\x99\x1a\x63\xd2\x87\x8e\xb3\x0b\x83\x5c\x6d\x29\x03\x59\xcb\x6a\xb2\xf4\x2d\x21\x53\x2f\x03\xd5\x76\x92\xd6\xd2\x0f\x39\xce\x8c\xcd\x15\xff\x4b\xa0\xa3\xda\xab\x62\x88\x4d\xc6\xb3\x25\xa6\xf5\x95\xe8\xe6\xb2\x3b\x64\xf4\x08\x39\x9a\xf9\x51\xbf\xb8\xbb\xbf\x92\xdf\x9d\xa6\xfa\x18\xaa\x1b\x72\xc9\x6d\xb9\x9a\x1c\x81\xd6\x9c\x8f\xa7\x3c\x7d\x0a\x8b\xd3\xf8\xea\xc5\x15\x8f\xc7\x95\x66\x02\x21\x05\x29\xb5\x1b\x5f\xfa\xae\x46\x1c\x6a\xfc\x54\xee\x90\x32\x77\xc9\x16\x03\xc6\x63\x65\x95\xe4\x89\x19\x24\x63\x40\xa2\x12\xfc\x42\x4e\x52\x00\xb1\xe5\xdd\x45\xfe\x2e\x03\xba\x54\x1f\xad\x41\xc3\x91\x1e\x6f\x97\xbe\xb6\xac\xc1\x2f\xbb\xaf\x8d\x52\x3f\x5f\x5e\x5c\xc0\x4a\x6a\xf3\x52\xfb\x73\xf1\x77\xb5\xc1\xd0\x20\xe0\xca\xaf\xd4\xc7\x7d\x3a\xc5\xd5\x26\x7c\x20\x46\xe2\xc7\x69\xea\x74\xb8\x95\xc5\x65\x61\xa9\xc6\x04\x85\x88\x4a\x01\xa6\xbd\x1c\xb3\x2c\x57\x83\x7e\x81\xc3\xd1\x2c\x1d\x9d\x1d\xa7\xeb\x67\x26\xe9\xfa\x70\x91\xac\x67\x05\x0e\x0c\x00\x2c\x12\x33\x5d\x24\x7a\x3e\x4f\xcd\xf4\xa4\x57\x8c\x77\x87\x8b\xfd\xe3\x41\x71\x3c\x4b\xf4\xb8\x0c\x33\xf3\x85\xd2\xf5\xf5\x13\x50\xe9\x5f\x0a\x5e\xaa\x67\x05\xd0\x58\x5f\x2a\xd0\xc2\xcb\x2f\xa6\x1f\x4a\xed\xb6\xce\xbf\xbd\x5b\x05\xa0\xb1\xae\x90\xc3\x2b\xf5\x38\x69\x8c\x29\x01\x8b\xc6\x6c\xb8\x50\xc3\xf5\x69\xba\xf9\xc8\x41\xff\xc2\xc3\x07\xd9\xa5\xb5\x59\xf2\xc4\x20\x4f\x1e\xeb\x15\x78\x41\x19\x58\x47\x83\x43\x64\x2b\x2a\x1a\x61\x0a\x60\xa6\x1a\x61\x9c\x2b\xb3\x33\x4d\xf5\xb5\xfd\x95\xfc\xfb\x37\xcf\xcc\xae\xdd\x5e\x9b\xdf\x3a\x58\xc9\xf7\x27\x3d\x3d\xce\x95\x99\x03\x82\xbd\x10\x55\x61\xf9\x1d\x3d\xba\x6f\xc8\xd6\x17\xb5\xbe\x48\xfd\xc5\x57\x4e\xd2\xb3\xab\xaf\x2c\xc5\xe7\xc0\x45\x4a\x94\x27\xc2\x5d\x70\xa0\xb1\x9f\x04\x27\xfb\x37\x5a\x95\x52\x2f\x13\x19\x48\x95\xc1\xec\xec\x24\x7d\x67\xaf\x50\x1b\x08\xa0\xe8\x9e\x15\x72\x45\x4a\xeb\x36\xdc\xd6\x7d\xb7\x74\xff\x0a\xbf\xb3\x85\xee\x4a\x69\x7d\x59\x1a\xeb\xd0\x16\x78\x21\xb1\xf9\xc9\x23\x24\xd6\x15\x4e\x6b\x37\x0e\xe7\xca\x4c\xf7\x56\x16\x37\x4f\xb2\x62\xcf\xa8\xf2\xb8\x33\xdd\xdb\x02\x6d\x64\xdb\xf0\x31\x06\xe6\xf3\x39\x7c\xe0\x03\x1f\x50\xff\xf1\x1f\xff\x21\x0d\xa8\xb4\x9c\x43\x0d\xc5\x85\xf6\x39\xbd\xe4\x24\x85\xe5\x73\x2e\xf0\xe4\x6b\x88\x12\x68\x00\x90\xe5\xf2\x0d\x02\x3e\x7a\x9f\xac\xd2\x80\x29\xc9\x21\x29\xe2\x10\xd8\x09\xbd\xbb\xe4\x71\xc9\xc2\xe9\x42\x40\x34\x04\x78\xa4\x01\x0e\x00\x40\xa5\x69\x0a\x79\x9e\xeb\xd1\x68\xa4\x00\x00\x8e\x8f\x8f\x5b\x84\xa3\xd1\x08\x8e\x8f\x8f\x79\x78\x68\x80\x95\xf2\x26\xb5\x2f\xd7\xe0\xeb\x72\x31\x79\x92\xfc\x62\xdb\x4b\x8c\x1e\x94\xd2\x8b\x01\xbb\xd2\xb3\x2b\x5c\x72\xbe\x36\xe9\x2a\xef\x10\x58\xf2\xc9\xe3\x72\xae\x81\x0b\x00\xea\xed\x00\x1a\xa0\x3d\x50\xdb\xf0\x96\x35\xa5\xfc\x4b\xa1\xb4\xa0\xa4\xa9\xc1\x34\xcd\xd5\x60\x90\xab\xe1\x3b\x8e\xb2\xcd\x8b\xfb\xfd\xc7\x1e\x3a\xe9\x3d\x31\x9c\x27\x97\x7b\x05\x5e\x48\x35\x6e\x40\x69\x99\xcf\x00\x00\x0c\xc0\xdc\xa0\xc9\x01\x60\xae\xd1\x1c\x2f\x12\x73\x73\xd2\xd3\xd7\x0f\x07\xf9\xeb\x77\xd6\xe6\x6f\xde\x5c\x9b\xdf\xba\x3b\x5a\xec\x2f\x94\x9e\x17\xaa\x3c\x28\x61\xa0\xfe\xdc\x4a\x7d\xf9\x67\x25\x17\x08\x83\x34\xbd\x1b\xa5\x4b\x5d\x2d\x95\x97\xb4\x97\x85\x8e\x8f\xd5\xf6\x89\xd2\xc2\x64\x30\xcb\x72\x35\xdc\x1c\xf7\x36\xde\x7d\x77\xe5\xf2\xa3\xfb\xfd\x9f\x1c\xcd\x93\x67\xd3\x42\x3d\x96\x68\x58\x07\x28\xcb\xc0\x1e\xb4\x05\x68\x26\xd7\x68\xca\xc1\xb4\x1c\x9b\x10\xb2\x02\xf2\x41\xae\x3e\xbc\x3e\x4b\x76\x1f\x3e\xca\xae\x1f\xf7\x8b\x6f\xbd\x75\x66\xf6\x6f\xaf\x9f\x9b\xbc\xba\x33\x5a\xec\xce\x13\x3d\xd5\x25\x78\x99\x5b\xc0\x52\x81\x96\xdc\xe6\x9b\x02\xbb\xab\x57\xaf\xea\xe1\x70\xa8\xc6\xe3\x71\x4c\xdf\xb7\xae\x4b\x5f\x68\xc5\x77\xed\xd0\x08\x82\x11\x8f\xbf\xb3\x93\x56\x1b\x73\xa9\x75\x25\x03\x80\x0c\x11\x87\xc6\x98\x21\x02\xae\x6f\x4c\xd2\xf3\xbf\xf4\xbd\xcd\xff\x7b\xeb\x24\xfb\x48\xa2\x61\x54\x83\x89\xa5\x4d\xb4\xcb\x27\x85\x6a\xcb\x09\xbd\x85\xce\x10\x2b\x46\x6b\xaf\x4c\xb3\x65\xc6\x5e\x62\x67\xea\x8f\x38\xb6\x97\x8c\xec\xe9\x25\xe9\x68\xb4\x6b\x45\xc9\x80\x81\xc3\x7e\xf1\xe6\x37\x1e\x3b\xfc\x12\x5d\x26\x32\xc6\x1c\x56\x47\xa0\xc7\xc6\x98\x31\x36\xb7\xe7\x6a\x80\x1a\xe9\x4b\xcb\x44\x70\x8a\x3a\xe8\x02\x18\x7c\xf4\x52\xda\x3e\xe0\x21\xc5\x0b\xc9\xe9\x03\x64\x21\xe7\x6a\x73\x2e\x40\xe1\xf2\xf7\xf1\xee\x2a\xbf\x14\xde\x15\x5c\x49\xe9\xc4\xca\xed\x92\xa5\xb3\xa3\x0a\xdb\x9e\x30\x78\xe1\x85\x17\xb4\xbd\x04\x8c\xd3\x44\xba\x07\x22\x1b\xe3\x07\x10\xee\x2f\xb1\x69\xfb\x74\x60\x97\xb0\xd3\xfa\xc5\x4c\x28\x42\x61\x0f\xaa\x0f\x3d\x10\x7e\xdc\xca\x02\xd0\x3a\xde\x9b\x02\xb4\x27\xb1\x00\x90\xf6\x0a\xcc\xb6\x8f\xb3\xf5\xcb\x77\x57\x1e\x7f\xc7\x51\xf6\xcc\x68\x96\xfc\x6f\xfd\x5c\x5d\x4e\x35\x9e\x47\x83\x23\x04\x48\xd1\xb1\x72\x50\x4d\x36\x75\x05\x64\xa6\x1a\xcd\x7e\x9e\x98\x9b\xe3\x5e\xf1\xad\xdb\x6b\x8b\xff\xf9\xea\xf6\xf8\xbb\x6f\xad\xcf\xf6\xf3\xc4\x4c\x4d\xb5\xd7\xd0\x80\x69\x59\x62\xec\x1f\xdf\x7f\x18\x71\xb7\x96\x37\xec\x63\x1f\xfb\x98\x7a\xfa\xe9\xa7\x6b\x3a\xb6\x8f\x25\x25\x40\x2e\x03\x53\x96\xc3\x43\xc7\xbd\xcd\xc7\xef\xad\x5c\x7e\x6c\x7f\xf0\xf1\xb5\x69\xfa\xb1\xac\xc0\x27\x95\x81\x11\x02\xaa\xd6\x40\xe4\xd8\x2a\x51\x8f\x63\x8c\xc4\x00\x68\x8d\xe6\x70\x9e\xe8\x57\xf7\x87\xf9\x8b\xd7\xcf\x4e\xbf\xfa\xda\x43\xe3\xd7\x0e\x06\x05\xb5\xbe\xd4\x27\x60\x01\x5a\x7b\x84\xc0\x96\x8f\x70\x75\x47\xa8\x7c\x7c\xb4\xde\x78\xae\xa5\x22\x49\xc1\x4b\x8c\xa9\x9f\x6b\xf6\x5a\xbb\xda\x4a\x51\x55\xd0\xd2\x86\x23\x80\xf4\x91\xc3\xfe\xf6\xca\x3c\xb9\xa0\x34\x0c\x6a\x4b\x48\xab\xc4\xab\x22\xe7\xcb\x46\xd8\x9c\x1e\x6a\x5d\xe8\xcf\xd7\x78\x2a\x6f\xf2\xd3\x7c\x6f\xa8\xfe\xf6\x11\xe1\x41\x59\xb8\x4e\x2f\xd5\x5b\x81\x9b\xc4\x34\x80\x3e\xea\x17\x3b\xf7\x86\xf9\xce\x2c\xd5\x63\x80\xd6\x47\x15\xf9\x25\x73\x74\x66\x42\x3b\x45\xcc\x00\x25\x85\x49\x28\xd5\x87\x60\x43\x7e\xbc\xae\x43\x71\x24\xb9\x4e\x2b\x67\x8c\x8b\x91\x21\x56\x4e\x17\xef\xae\xf2\x4b\xe1\x3e\x1e\x5d\x65\xe8\x12\x2f\x96\x5e\x74\x14\x90\xd0\x67\xaa\xa8\x62\x40\x0b\x05\x3a\x1d\x65\x8b\x55\x7e\x0f\x24\xbf\x2c\x7e\x48\x07\x72\x9d\x07\x24\x0c\x48\x78\x8c\x52\x8e\x55\xfc\xf7\x03\x7e\xe9\x73\x17\x39\x62\xf8\x89\xb2\x6c\x6f\x6f\xc3\xce\xce\xce\x12\x03\xc9\xca\x62\x27\xb4\xca\x60\x7a\x66\x9a\x0e\xdf\x77\x6b\xf4\xf8\xe3\xf7\x06\x9f\x1e\xcd\x92\x9f\x4a\x35\x3e\x86\x06\x86\x08\x90\xd1\x93\xa2\xae\xc9\x23\x1a\x03\x06\x51\x29\x80\x81\xd1\x30\x48\x50\x6d\xa4\x1a\x1e\xeb\xe7\xea\x99\xb5\x69\xfa\xb3\x8f\x1c\xf4\xbf\x71\x67\xb4\xf8\xca\x77\xce\x1f\xff\xfb\xcd\x33\xb3\xfd\x79\x62\xa6\x64\x62\x6d\xf7\x1b\xd2\xcd\xaa\x5d\x00\xb1\x8b\x4e\x01\x80\x7e\xdf\xfb\xde\x47\xdf\x5b\xa0\x05\xa0\x3e\x65\x9b\x01\x40\x36\x5c\xa8\xc1\xe5\x3b\x2b\x97\x9e\xb8\x33\xfc\xe4\xd6\xb8\xf7\xa9\x2c\x57\x4f\xa9\x12\xb4\xa9\x7a\x7d\x80\x6c\xcb\x34\x95\xc9\xa5\x35\x9e\x61\x7b\xcc\x6a\x0d\x8b\x00\x2a\x31\xb8\x31\xc8\xd5\x73\x0f\x1d\x65\x97\xd7\x27\xe9\x47\x1e\x3e\xec\xff\xbf\xdf\xdf\x3e\xf9\xff\x5e\xdb\x9a\xdc\x5a\xa4\x66\x4c\x64\xb5\x63\x57\x6b\xe9\xc8\x53\x26\x2e\x80\x1f\xa2\xf5\xc6\x4b\x1d\x81\xae\x0e\xc9\x19\xf3\x81\xcc\x39\x4b\xe7\x1b\x73\xd9\xce\xf1\xf2\x1b\x45\x06\xb2\x87\x8e\x7a\xef\xca\x0a\xb5\x49\x76\x43\xb7\x80\x86\xc1\xe5\x05\x20\x42\x52\x57\x9c\x03\x59\xb6\x9e\x6d\x84\xd6\xad\xbc\x7c\x03\xb0\x60\x65\xb1\xcd\x81\x2e\x31\x71\x57\x24\x66\xba\xb7\xba\x78\x73\x9c\x15\x07\xe5\xda\x62\x65\x92\x64\xa7\x89\x48\x14\x5f\xc5\x2b\x4f\x98\xcb\xd1\x38\x5d\x66\x52\x3c\x9e\x54\xc7\xb1\x3c\x5d\x71\xb8\x9c\x31\x0a\xd0\xc5\xa3\x4b\x1c\xd7\x4c\xd9\xe7\x0f\xb0\xdc\xb6\x7d\xf9\xf0\xc5\x09\x95\x8f\x94\x3f\xc9\x85\x2c\x2f\x51\x83\xd4\xef\xfd\xde\xef\xa9\x5e\xaf\x57\x03\x10\x76\x75\xf8\x52\x5f\xa0\xfe\x92\x73\xec\xcf\x02\x80\x12\xd8\xf8\xc2\x03\xae\xeb\x40\x1d\x0b\x46\xbb\xd2\x76\x89\xdb\x35\x8c\xb7\xd5\x2e\x00\xfe\xb4\x60\x3d\x66\xa0\xb8\x6f\xde\x3b\x3b\x3b\x4b\xd6\x16\x02\x5a\xec\x35\x18\xaa\x02\x2c\xd9\xda\x2c\x1d\xbe\x6b\x6f\x70\xe1\xdd\x77\x86\x1f\xd9\x3a\xe9\x7d\x7a\x90\xab\xf7\x2a\x03\xeb\xa5\x5c\x64\xcf\x63\xf5\x6b\xc0\x01\x5e\xc8\x4d\xea\x64\x3f\xa2\x42\x03\xa3\x9e\xc1\xcb\xc9\x34\xb9\xb8\xb2\x50\x1f\x59\x9f\x24\x7f\x7f\x6d\x6b\xf2\xff\x7c\xf7\xfc\xf8\xb5\xa3\x7e\x7e\x0c\xe5\xe4\x52\x55\x93\xcc\x14\xaa\x81\x1a\xc8\x98\x28\xec\xed\xe0\xe5\xe0\x72\xda\xca\x43\xcb\x03\xda\x96\x16\x7b\x21\x6b\x76\xee\x38\x5d\x7f\x6a\x67\xf5\xe9\x4b\xbb\x83\x5f\x3e\x33\x49\x3f\x91\x6a\xbc\x40\x2d\x4c\xae\x31\x90\x4e\xec\x25\x1a\xe9\xd2\x55\x00\x54\x89\x31\x9b\x2b\x0b\xf5\xe1\x87\x0f\x7b\x17\x56\x16\xa3\x77\x0e\x17\xc9\x17\xbf\x75\xe1\xf8\xda\x42\x99\x31\x60\x6d\x25\x03\xbe\xef\xc5\xd3\xb7\x5d\x6d\xe9\xbe\x5c\x42\x9e\x4d\x95\x08\xdf\xd6\xa1\xc8\x33\x77\x86\x85\xd3\x5f\xa3\x94\x52\xa6\xd2\x72\xcf\x3e\xfb\x2c\x56\x68\x16\xab\x06\x9b\x54\xa8\xb2\x0f\x00\x19\x02\x0c\x12\x83\x6b\x4f\xdf\x1a\x7d\x6c\x63\x9a\xbe\x3f\x31\x38\xb0\x90\xa0\x55\x21\xb0\x8c\x18\xc1\xf1\x4e\x8f\x37\x4b\x34\xae\x78\x2d\x6b\x0e\x2e\xa7\x4f\xdf\x5c\x07\x98\x26\xbd\xe2\xde\xf7\xb7\xc7\xff\xb6\x33\x5a\xdc\x58\x24\xfa\x10\x00\x26\x00\x30\x41\xc4\x59\x75\x97\xcb\x02\x00\x16\xd8\x5c\xfc\x63\x00\xca\xf3\xf2\x07\x07\x07\xb8\xbb\xbb\x6b\xb3\xc9\xfb\xa5\x86\x36\x86\xa2\x74\x00\x4d\x7d\x58\x1a\x3b\x68\xd1\x67\x1b\xce\xeb\x5b\x09\xfc\x01\xda\xf5\xcf\xd3\x06\x68\xcb\xc9\xe9\x0c\x2c\xa7\xc1\xf3\x46\x0b\x95\xfa\xab\x00\x0f\xe3\xe0\x45\xf3\x48\xfd\xc0\xf1\x4e\x79\xd0\x8e\xc6\x31\x2f\x7d\xa7\x32\xd0\x32\xf0\xc5\xe1\x79\x05\x16\xc7\xc5\xdb\x3a\x5a\x8f\x3e\x79\xea\xb8\x4f\x3f\xfd\x34\xfe\xf4\x4f\xff\x34\xbe\xf2\xca\x2b\x35\x38\xb9\x72\xe5\x0a\x3e\xf7\xdc\x73\x98\x24\x65\xf7\x7f\xee\xb9\xe7\xf0\xca\x95\x2b\x55\xd3\x47\x9a\x0e\x22\x22\x1a\x63\x90\xbe\xd3\x5f\xfb\x4c\xe9\xec\x33\xa1\x31\x96\xff\x95\x2b\x57\xf0\xca\x95\x2b\xf8\xd2\x4b\x2f\xb9\x74\x8a\xe4\xb8\x0e\x92\xe2\x4a\x65\x15\xa3\xc3\xee\xc7\x49\x7c\x7d\xba\x52\x8a\x27\xb5\x55\x17\xef\xff\x2a\x17\x93\x6e\xa8\x7c\x6b\x3f\x3a\x69\xb5\xfa\x9f\x81\x96\x14\x00\x7a\x89\xc1\xc1\xb9\x71\xef\xdc\xfb\x6f\xad\x7e\xe0\x3d\x77\x86\xbf\x75\x6e\xdc\xfb\x4c\x3f\x57\xef\x51\x00\xab\x65\xcb\x6c\x8f\x07\x56\x50\xda\x79\x25\x5d\x4c\x2f\x27\x2d\x69\xab\x66\x5a\xa6\xb9\xd6\x2f\x92\x4b\xeb\xb3\x64\x7b\x6d\x9a\xcc\x16\x89\x19\x4f\x7b\x7a\x9e\xa3\x31\x95\x8c\x86\x2c\x67\x19\x28\x3d\x10\x00\xcc\x73\xcf\x3d\xe7\x6b\xc7\x62\xfd\x7d\xfe\xf3\x9f\x57\xcf\x3d\xf7\x1c\x92\x7e\x46\x41\x4b\x8a\x88\x3d\x00\xc8\x94\x86\xc1\x85\x83\xfe\xb9\xa7\xdf\x1e\xfd\xb7\x77\xee\x0d\x7e\xfd\xcc\x34\xfd\xa9\x9e\xc6\xf3\x08\x98\x80\x41\xf0\xce\x01\xaa\x54\xe9\xd8\x45\xcb\xaa\x29\x07\xa9\x1c\x11\x00\x20\x49\x0c\xae\x65\x85\xba\xb0\x3e\x4d\xce\x0d\x72\x75\xef\xee\xea\x62\x3f\x57\x46\x57\xdb\x31\xea\x71\x9e\x02\x96\x2b\x57\xae\x80\x50\x1e\x0f\xa2\x4d\x2f\xc5\x49\xd8\xbb\xcd\x8f\x6b\x80\xa3\x8e\x86\xd3\xf7\xfa\xd7\x90\x4f\x6a\x5f\xb9\x72\x85\x2a\x3d\x7a\xe1\x5c\x66\x8c\x19\x28\xc0\xe1\xfa\x2c\x39\xfb\xde\x5b\xa3\x9f\x1e\xcd\x93\xcb\x08\x90\x2c\x83\x8e\xf0\x85\x71\xf4\xa8\xb3\xeb\x82\x38\x4b\xd3\x7c\x32\x00\xca\x7d\x2e\x06\x5b\xcb\x4e\x00\xb4\x43\x54\xff\x97\xee\x8c\x91\x46\x2c\xa3\xf7\x56\xf3\xd7\xbf\xbf\x3d\xfe\xe6\xe1\x20\xdf\x31\x0a\x4f\x10\xf1\x04\x11\xc7\x50\x82\x97\x45\xf5\x57\x00\x40\x81\x88\x05\x96\xf7\x08\x98\xab\x57\xaf\xea\xdd\xdd\x5d\x0a\x3a\x6c\xd9\x5a\x40\x51\x67\x83\x24\xab\x99\x3f\x7f\xe6\x20\x42\x0a\x97\xe2\x4a\xf5\xcb\xc3\x38\x4f\xea\x5c\x69\xb9\xe2\x48\xf2\xf9\x78\x48\x34\x3c\xdd\x18\xde\xf4\x19\x1d\xfe\x5c\xee\x2e\xb2\x85\xe4\x09\xf1\xee\x1a\xa7\x8e\xbb\xb3\xb3\x63\x3e\xfe\xf1\x8f\xa3\x05\x0c\xd8\xdc\xbe\x69\x4d\xf5\x14\x80\x24\x50\xce\x34\x39\x48\x49\xc8\x60\xd3\x32\xef\xb3\x67\xe0\x71\x4d\x35\x52\x41\xa3\x5b\x6a\x20\x63\xff\x9e\x7d\xf6\x59\x7c\xf9\xe5\x97\x5b\xf9\xdd\xda\xda\x52\xe3\xf1\x58\xaa\x13\x80\xc0\x40\x09\xcb\x16\x99\xae\xa0\x86\xfb\xb9\xe8\x5d\xe0\xd2\xc5\x9b\xeb\x4c\x17\x0f\x2a\xb3\x4b\xd9\xbb\xd2\xe9\xf2\xdc\x85\x37\xf7\xa3\x32\xba\x26\x4e\x00\xd0\x4c\x5a\x01\x80\xef\xe3\xb0\x9f\x7b\xe9\xa5\x05\xae\xbc\xe3\x38\x7b\xc7\x4f\xdc\x5e\xfd\xd0\xbb\x76\x57\x3e\x73\x66\xda\xfb\x64\x4f\xe3\xb6\x32\xd8\xa3\x96\x13\x9b\x68\x09\x23\x4a\x45\xce\x81\x89\x25\xa8\x85\xa3\x61\x36\xd8\xd4\x50\x48\x29\x83\x2b\x59\xa1\xce\xaf\x2e\x92\x87\x57\xe7\x89\x29\x94\x39\x9a\x64\x7a\xba\x50\xba\xbe\x5d\xd6\x22\x0d\x9b\xb7\xea\xdd\xb0\xb6\x4b\xcb\x4a\xb4\x2e\xb8\x40\x0b\x54\xcb\x64\x50\x5d\x0f\xf2\xd0\x51\x6f\xe3\xfd\xb7\x56\x3f\xf9\xe8\xfe\xe0\xd7\xd7\xe6\xe9\xb3\xa9\xc6\xb3\x00\xa8\x90\xe4\xc7\xe5\xc8\x15\x67\x74\x4c\x02\xe9\x9a\x0f\xb9\x21\x22\x40\x79\xdc\x7a\x25\xcb\x93\x77\x8c\x16\xea\x6c\xaa\xf1\xce\xbd\x61\x7e\x58\x24\xa0\xab\xc1\xd0\x54\xd6\x16\xcb\x42\x43\xd5\xaf\x3d\x60\x4e\x6a\x27\xd4\xc5\xb4\x5d\x00\x68\x8e\x4b\x71\x53\x0e\x2f\xf8\x98\x75\xd0\x25\x73\x90\xfd\x30\x93\xc7\x4c\x58\x2b\xbf\xa4\xc0\x74\xf3\xa4\xb7\xd1\xcf\xd5\x76\x79\xf6\xdc\x42\x15\x0a\x0c\x4a\x08\xc9\xef\x61\x69\x15\x3e\xab\xd4\xd6\xa5\x72\x55\x3c\xbb\x3f\xb7\x6e\xec\xd8\xf0\x06\x9b\x0e\xe5\x49\xff\xb7\xda\x6f\x6b\x37\x4d\x53\x10\x0a\xf2\xbd\x95\xfc\xcd\x93\xbe\x3e\xd0\xaa\x5c\x26\x32\xc6\xd0\x8b\xe6\x5a\xc7\xf0\x4a\xd9\x96\xea\x5a\x5a\x5a\x70\x99\xcc\x5d\x4b\x10\x9c\xce\x15\x8f\xd6\x0f\x4f\xdb\xfe\xba\xcc\x7c\x3c\xbd\xae\xcb\x22\xbe\x65\x8f\x10\x0f\x29\x4d\xf0\x84\xc5\x96\x11\xe7\x17\x92\x0d\x1c\xfe\xae\x72\x3e\x4d\x9d\x71\xff\xa5\x72\xfc\xd9\x9f\xfd\x59\xf8\x87\x7f\xf8\x07\xfd\xb9\xcf\x7d\x4e\xf5\xfb\x7d\x69\x59\x47\x01\x00\x5d\x02\xa2\xc7\x2f\x01\x00\xea\x67\x62\x06\x56\x1c\xac\x4b\xf7\x29\x59\x67\x37\x97\x5b\x1a\x5c\xbe\xfc\xab\x95\x37\x6b\x6a\xe6\xdf\xa5\xf1\x7c\x11\xdd\x55\x2e\x5d\xcc\xd0\xa7\x32\xef\x07\x9e\xa5\x7e\x12\x6a\x5f\x31\xe9\xbb\xc2\x63\xfc\x43\x34\x5d\xf2\xee\xe3\xeb\xe4\x43\xaf\x8b\x87\xe5\x81\x3a\x03\x80\xac\x57\xe0\xe0\xe1\xc3\xec\xc2\x13\x77\x86\x1f\xbe\xb8\x37\xf8\xc5\xb5\x59\xf2\x6c\x62\x70\xb3\x34\x01\x2e\x5b\x51\x6a\x0d\x6c\x01\x8d\x83\xc0\x85\x08\x85\xcf\xc3\xa8\xc4\xe0\xc6\xea\x3c\x79\xf6\xc2\x41\x7f\x08\x00\x2b\x06\xe1\x9f\x7e\xb4\x31\xbd\x3e\xeb\xd5\x7d\x61\x4e\x80\xbb\x6d\xe7\xf4\x06\x5e\x5a\x0e\x92\xbe\x28\xd3\x5a\x06\x2d\x14\xc8\x65\x08\x98\x9d\x99\xa6\xeb\x3f\xb1\xb3\xfa\x91\x47\xf6\xfb\xff\xfb\xea\x2c\x79\x3a\x31\xb0\xc1\xc7\x24\x53\xfd\x93\xba\x21\x1f\x93\x5a\x23\x95\x8b\xbe\x2a\x93\x36\x40\xc4\x34\x35\x66\xeb\xcc\xa4\xf7\x53\xef\xbe\x3b\x3c\x3c\xc9\xf4\xf4\xb5\xad\xc9\xb5\x59\x6f\xe9\x63\x8b\x73\x20\x3a\xcc\x8e\xf7\xc2\xbe\xb7\xae\xfd\x0e\x40\xd6\xa1\x3a\x01\xb9\x7e\x5d\x75\xee\x33\xf5\xf0\x30\x63\x8c\x31\x6c\xdd\x3c\x81\xca\xe2\x62\x8c\x49\x00\xa0\x87\x88\x03\x00\x18\xa4\x1a\x47\x97\x76\x57\x9e\x78\xe4\xa0\xff\x53\x99\xc6\xb3\x58\x21\x14\xac\xd7\x26\xcd\x52\xe1\x73\xb3\x97\x0b\x88\x4a\x1b\x6d\x25\xc0\xd1\xa2\xb5\x99\x00\xde\x00\x1a\x4a\xd6\xfe\x6b\x90\x34\x4d\xf4\xc1\x6b\x0f\x4d\xfe\xf5\xf6\xda\xfc\xc6\x22\x31\x07\x06\xcc\x04\x11\x27\x88\x38\x03\x80\x29\x22\x2e\xa0\x7d\x14\xba\xb0\x65\x77\xfb\xf6\x6d\x3c\x3a\x3a\xb2\xa8\xdd\x8a\x68\x97\x06\x5c\xf5\x84\xec\x99\x37\x0a\x8e\x74\x69\xd6\x69\x1c\xc9\xf2\x60\x7f\x15\xb4\x8b\xda\x08\x7c\xe8\x4c\x8c\xce\xd2\xa8\x4c\xe2\xe4\x89\xa5\x45\xe5\x5e\x36\x68\x2d\xe7\x91\x5a\x93\xb8\x3c\x9a\xbc\x53\x7a\x1a\x4f\xe2\xc1\x9f\x79\xde\xe9\xb3\x72\xf8\xdb\x67\x69\xe9\x89\x97\x8f\x24\x23\xe7\x4d\xf3\x43\xeb\x0c\x3e\xfe\xf1\x8f\xe3\x8b\x2f\xbe\xa8\x9f\x7f\xfe\x79\x95\x24\x09\x05\x16\xd4\xaa\xa2\x00\x5a\x96\x95\xda\xc2\x42\xfd\x90\x6d\x14\xac\x7e\x13\x44\x4c\xaa\x7e\x5b\xff\x59\xbf\x2a\x3e\xe5\x6b\x67\xd9\x75\xba\xd0\x28\xe9\x3a\x8f\x76\xfa\xc9\xac\x32\xc6\x65\x89\x61\x75\xc6\x9d\x64\xd1\xf0\xd1\xd1\xb2\xa5\x2e\x14\x5f\x72\xa1\x38\x31\x56\x16\x9f\x7e\xbd\x9f\xb4\x63\x68\x5c\x96\xa4\xae\x32\xd5\x71\x2d\x68\x41\xb6\x01\x97\xfc\xf5\x50\x43\xff\xfc\x51\xf6\xf0\x7b\xee\xac\x7e\xf4\xb1\xbd\xc1\xaf\x54\xa0\xe5\xac\x4b\x97\xd3\xce\x52\x77\x1a\x53\x35\x9c\xa5\x49\xab\x3c\x26\x18\x46\xdb\xd0\x61\x2f\xd5\x78\x76\x90\x27\x6b\x89\xc6\xd9\x2c\x35\x07\x27\x59\x31\xd6\xaa\xbe\xfe\xde\x96\x83\x21\xef\x2e\x2b\xc3\x52\xf9\x91\x09\xbc\x6d\xe7\x49\xab\x2c\x00\xfb\xfd\x1c\x47\x4f\xbf\x3d\xfa\xe0\xe3\xf7\x56\xfe\xcf\xf5\x59\x7a\x25\x31\x70\x06\x01\xeb\xc1\x86\xe6\x15\xed\xbb\xab\xb0\x88\x73\x8f\x8d\x8d\xa4\x7c\x69\xa9\xa2\x40\x65\x70\xd8\x2b\xf0\x4c\x4f\xe3\x6c\x9c\x15\x77\xc6\x59\x31\x29\x14\x14\xd8\xdc\x7d\x43\xf3\x0b\x50\x59\x63\x84\xbe\x1b\x72\x52\x1f\x31\x2c\xcc\x00\x94\x05\xe7\xea\xb8\x52\x83\x95\x3a\xbb\x7d\x97\xac\x01\xe6\xe5\x97\x5f\x36\x95\x89\x9a\x2a\xcd\x04\x11\x53\x44\xec\x43\x69\x1a\xeb\xf7\x0a\xb5\xfe\xc4\x9d\xe1\x07\x1f\x3a\xc9\xae\x24\x06\xcb\xdb\x72\xe9\x5d\x29\xe5\xb2\x62\x65\xde\x73\x80\x09\xa1\xa5\xd6\xbb\xcf\x5b\x1f\xe0\x82\x7a\x97\xb5\x27\x2a\xd9\x8c\x08\x00\xf6\xc8\x34\x98\x0a\xe9\xda\x1b\x73\x69\xc3\x29\x1f\x8e\xfb\xc5\xdb\xff\x79\x7e\xfc\x2f\x07\x83\xfc\x96\x56\x70\x82\x88\x27\x50\xdd\x90\x0b\x25\x3a\x5d\x40\x69\x7d\xb1\x4b\x45\x06\x11\xe1\x85\x17\x5e\xd0\x04\xb4\x70\x20\x21\x99\xd5\xe8\xa0\xec\xa2\xb3\x7e\x54\xa9\x9b\xc8\x38\x34\x2e\x08\x32\x49\x69\xf3\x30\xce\x5f\x4a\xdb\x25\x47\x2c\x1d\x07\x20\x12\x58\x01\x90\xcb\x80\xcb\xea\x7a\x0e\xc9\xcd\x9f\x69\x1d\xf2\x74\x5d\xbc\x21\x10\x26\xca\xf8\xfc\xf3\xcf\xab\xed\xed\x6d\x6b\x92\x07\x02\x18\xec\x24\x01\x2b\x80\x51\xf7\xbf\x4a\x26\x0b\x52\xec\x0c\xd8\x2a\xd2\x5e\xf5\xde\x43\xc4\x14\x01\x7b\x08\x98\xa2\x31\x29\x1a\xc8\x94\x86\x9e\x32\xd0\x43\x80\x1e\x02\x24\x80\x98\x02\xb6\x4e\x43\x34\xf7\x4f\x34\xe0\xa7\xb5\xbf\x0d\x1a\xbd\x61\x9d\xdd\x17\x63\xe8\x33\xdf\x13\xf3\xec\xb3\xcf\xe2\xdb\x6f\xbf\x2d\x0d\xaa\x4e\xf3\xbc\x40\x4b\x95\xa2\x71\xd0\x74\x79\xe6\xe0\x32\x04\x4a\x38\xe8\xf5\x01\x06\x57\xda\x2e\xde\x5d\xe8\x5d\x69\x4b\x03\x48\x2c\x6f\x04\x80\x7a\xc2\x4a\x2c\x78\x08\x00\x16\xe4\xf6\xa0\xda\x22\xb0\x39\xe9\x6d\x3e\x71\x77\xf8\xdc\x3b\x77\x07\xbf\x54\x0e\xd4\xb8\x51\x33\xa9\x94\x72\xad\x67\x81\x5c\x38\x8a\x6d\xc1\xcb\x41\x9d\xdc\x5b\x52\x0b\x6e\xaf\xba\x68\xe2\xd8\x9b\x32\xc8\x7c\xb6\x1a\x23\x00\x14\x62\x9a\x68\x5c\xef\xe7\x6a\x25\x01\x9c\x4c\x7a\x7a\xf7\x24\x2b\x26\xa6\x39\xc4\x54\x54\xcb\x9f\x65\x41\x55\xcb\x25\x57\xae\x5c\xc1\x47\x1e\x79\x04\xbf\xff\xfd\xef\xf3\x72\x35\x5f\xf8\xc2\x17\x94\x1d\x07\xd9\x1d\x66\x09\x22\xf6\x8c\x31\x19\x22\x66\x89\x86\xd5\x77\xee\xad\x3c\xfa\xfe\x5b\xa3\x5f\xdb\x98\xf4\x3e\x91\x6a\x38\x8b\x06\x15\x20\xd4\xa0\xc2\xc2\x7b\x9b\x2f\x7a\xd3\x47\x2b\x3f\xa6\x29\x17\x3e\xf3\xb3\xae\x1e\xbb\xaa\x3f\x6c\x15\x68\x7b\xa6\x96\x18\x18\x65\xb9\x1a\x22\xe0\xc1\xd1\xa0\xb8\x37\xe9\x15\x13\x0d\xed\x23\xd1\xf6\xd7\x96\xcf\x95\x2b\x57\x70\x65\x65\x05\xdf\x78\xe3\x8d\x2e\xfd\x88\xb7\x47\x3a\x61\xae\xdb\x5b\x4a\x12\x74\x99\x32\xed\xbb\x15\xce\x67\xfe\x89\x35\x81\x5a\x45\x56\x9a\xde\x00\xd3\x5e\x81\x83\xd1\x2c\xd9\x4e\x0c\x0e\x2d\x51\xab\x57\x60\xd3\x68\x69\x68\xeb\xe6\x5c\x01\x56\x96\x0d\xb2\x1d\x6b\x19\xa1\xca\xdf\x28\xb2\x8d\x13\x09\x73\xba\xa4\xd4\x84\x35\x7c\x0c\x82\x3e\xee\x17\xb7\x8e\x06\xf9\x5e\xa1\xcc\xdc\x80\xc9\x11\x30\xb7\x4b\x45\x00\x4b\x5f\x82\x2e\x63\x1a\x03\x9f\xfa\xd4\xa7\xd4\x37\xbe\xf1\x0d\xd8\xdf\xdf\x77\x2d\xeb\x58\x47\xeb\x61\x69\xc9\x80\xbd\x73\x1a\x89\x1f\xa5\xa5\x74\xd4\xdf\xb5\x64\xe3\x5b\xd2\xf2\x2d\x77\x70\x79\x5d\x4b\x40\x52\x5a\x20\xf8\x53\x7a\x4e\xeb\xca\x9b\x94\x96\xe4\xef\x5b\x9e\x72\x3d\x77\xcd\xb7\xab\x1c\x5b\xe9\x6e\x6d\x6d\xa9\xbb\x77\xef\x6a\x00\xf7\xe7\xee\x0d\xf9\x06\x98\xe5\x65\xfd\xa0\x99\xf9\xb6\x97\x6c\xb5\x49\x93\xdc\xa8\x64\x61\xb2\x24\x87\x4c\x15\x90\xa1\x36\x19\x6a\xc8\xd0\x98\x54\x69\x48\xd1\x40\x0a\x1a\x14\x1a\x93\x02\x00\x18\xc4\xdc\x28\xd0\x46\x41\x6e\x10\x72\x28\xdf\xe7\x5a\xc1\xdc\x28\xcc\x8b\x14\xa6\x79\xa6\xe6\x45\x0f\x72\x68\x2e\xb0\xe2\x7f\x36\x6f\x54\x09\xd2\x63\x96\x00\xd0\xbe\x03\xe4\xe5\x97\x5f\x06\x12\x4f\x7a\x0e\xb5\xed\x2e\xcb\x4a\xdc\x9d\x76\xf9\xc5\x67\x26\xf7\xf5\x93\x98\xa5\x27\x89\x46\xd2\xe1\x5d\x96\x88\xa4\x34\x3b\xc9\x62\xdb\x24\x01\xc7\xec\x98\x6f\x32\x7a\xe7\xee\xe0\xa9\x47\xf7\xfb\xff\x6d\x6d\x96\x3c\xa3\x34\x6e\x18\x3a\xd0\x32\x3d\x6b\xb5\xf4\xd2\x40\x5c\x79\x60\x6b\xa2\x6b\x07\x7b\x6c\xf1\x62\x73\x4c\x68\xbd\x56\x7e\x89\xc1\xd1\xea\x3c\x79\xe6\x91\xfd\xfe\x74\x92\xea\xc3\x93\xac\x18\xef\xaf\xe4\xbb\x50\x5e\x87\x9f\x55\xe9\x58\x5d\x6e\xf3\xa9\xc9\x77\x8d\x5a\x7d\xf9\x85\x17\x5e\xb0\xed\x77\xf9\x92\xbd\xe6\x44\xed\x60\x34\x4f\x37\x2e\xdf\x59\x79\xee\xcc\x24\xfd\xa9\x54\xc3\x26\x42\x09\x5a\x04\x71\x81\xaf\x0c\x2c\x85\x5b\x40\x03\xcd\xa8\xdf\x72\x46\x18\x07\x51\x06\x38\x15\x7d\x3a\xc8\xd5\x93\x8f\x1c\x64\xff\x6d\x7f\xa5\x7f\x6b\x9c\x15\xc7\x07\xfd\xdc\xae\x1a\xd8\x3c\xe7\x55\x1e\x6d\x2c\xfd\xde\xf7\xbe\x17\xfe\xf9\x9f\xff\x19\x08\x0d\x7f\x96\xda\x4e\xb0\xad\xd2\xe3\xd0\xb4\xb0\x63\x3b\xba\xd4\xb1\x14\x00\x68\x7b\x5b\x2e\x25\xa6\x6b\xe6\xd5\xfa\xa0\x32\xc6\xa4\x89\x86\x6c\x34\x4b\xd6\x87\x8b\x64\x5b\xe9\xf2\xf6\xc3\x2a\x06\x01\x2b\x4d\x71\x22\x09\xb5\x4f\xc0\x68\xe8\xde\x96\x1a\x6c\xb4\xce\xb6\xb7\x79\xf3\xce\xb0\x54\x81\xdc\xa3\x7a\xe7\xa6\x3a\x0d\x26\xdf\x1b\xe6\x37\xa7\xa9\x1e\x6b\x04\x7b\xb9\x5c\xeb\x52\x23\x62\x5e\xab\xf7\x04\x20\x22\x7c\xf9\xcb\x5f\xf6\x29\x34\x09\x6c\xf8\x66\x99\xd2\xe0\xef\xa2\xe3\x03\xbe\x14\x26\xf1\x72\x85\xf3\x67\x9f\xac\x21\xb0\x15\x02\x71\x3e\x5e\xd4\x2f\x04\xb8\x25\xe7\xe2\xc5\xe5\xf1\x81\x0e\x17\x88\x09\xa5\xb5\xe4\x36\x37\x37\xd5\x07\x3e\xf0\x01\x78\xf7\xbb\xdf\x5d\xef\x1b\x20\x20\xa5\x35\x50\x58\x7f\x3b\x39\x00\xa8\xaf\x0d\x57\x58\xdd\x4a\xda\x9b\x9b\x2c\x5d\xe8\x81\x2a\x60\x94\xe4\x66\x98\x4d\xf4\x7a\x36\xd6\xeb\xe9\xcc\xac\xa7\x0b\x58\x57\xb9\x59\x4b\x72\x33\x42\x0d\x43\x34\x90\x81\x81\x0c\xa1\xb4\xba\x00\x00\x18\x80\x1c\x10\xe7\x06\xa1\xfc\x53\x30\xd5\x09\x1e\xeb\x14\x8e\xf2\x14\x0f\x17\x03\xdc\x9f\x0f\xd5\xe1\x6c\xa8\x0e\x75\x8a\x63\x9d\xc0\x38\xef\xe1\xb4\xe8\xe1\xdc\x24\x4b\x97\x7c\x51\x25\x68\xaf\x1a\xa7\x65\x6b\xcb\x7f\xe9\xb2\xbb\x34\x4d\x55\x9e\xe7\xb1\x20\xc6\x55\xf6\xb1\x3a\x2e\xd4\x96\xba\xa6\x11\x03\x58\x42\x7d\x98\xc7\xf1\xc9\x28\xe9\x94\xd3\x00\x39\xa7\x4c\x6c\xbf\x12\xbd\xb6\xbe\x1e\xa8\x13\x0d\xc3\x47\x0e\xfa\x17\x1f\xdb\x1f\x7c\x7c\x63\x92\x3e\x97\x6a\xdc\x6e\x01\x15\xc6\x93\xab\xdf\xa5\xc1\x75\x69\x10\xa6\xfa\x9f\xc5\x77\xe8\x72\xea\x12\x8d\xeb\xa3\x59\xf2\xcc\x85\xc3\xec\xee\xde\x70\x71\xf3\x24\x2b\xa6\x8b\xd4\xd0\xb6\x6a\xfb\x55\xbd\x8f\x8b\xde\x53\xd4\xeb\xf5\x60\xb1\x58\x2c\x5d\x31\x60\xcb\xc4\x96\x85\xdd\xa0\x9c\x2d\x70\x78\x71\xbf\x7f\xe9\xfc\x51\xff\x93\xbd\x42\x5d\x00\x57\xbb\xb5\xb2\xda\xf1\xc7\x8e\x73\xcb\xe6\xff\x06\x9c\x48\x68\x44\x44\x27\xb0\xb4\xff\xa7\x06\x3e\x88\x90\x68\x18\xae\xce\x92\xa7\x1f\x39\x18\xbc\x76\x67\xb4\xb8\x75\x92\x15\xe3\xbc\xb1\xba\xb4\xca\x04\xc2\x6d\x8a\xeb\x46\x1f\x80\x59\x6a\xa3\xd2\xe6\x5c\x27\x71\xa4\x9f\x06\x00\x38\x39\x39\xd1\x6c\x63\x56\x3d\x03\xac\x15\x68\x85\x3e\x53\x8d\xd9\xe6\xb8\xb7\xd9\xcf\xd5\x96\x6a\x9d\x51\x5f\xde\x47\x62\x8b\xd2\x77\x7a\xa8\x0d\x5a\xa0\x41\x92\x35\x68\xa1\x9c\x96\x5d\xdd\xc8\x2c\x6a\xf7\x55\x3c\xf3\x5f\xa4\xe6\xf8\xee\xea\xfc\x66\xae\xcc\x14\x2a\xc0\x22\xdc\xdd\x52\x2b\x6c\xc4\xf2\xc2\x39\x76\xcf\x8d\x54\xc6\xd6\x89\x40\x91\xd1\x49\x34\xd2\x20\xab\xd8\xb3\x94\xfe\xd2\xc0\x01\x72\x9b\x91\x5c\x48\x91\x86\x94\x66\x4c\x98\x94\x77\x9e\xaf\x18\x25\x4e\xe3\x4a\xef\xae\x67\x89\x0f\x8f\x1f\x33\x30\x78\x01\xe8\xf6\xf6\xb6\xfa\xc0\x07\x3e\x00\xef\x7a\xd7\xbb\x00\x00\xe8\x04\x00\x00\xc0\xf6\xb3\x65\x90\x52\x7f\x94\xce\xa4\xa8\x4d\x9a\x96\x16\x95\x61\x3a\xd7\xeb\x2b\x07\x7a\x73\xe5\x50\x9f\xcf\xa6\xfa\x7c\x3a\x37\x8f\x24\xb9\xd9\xc6\x02\x36\x51\x9b\x75\x34\x30\x02\x03\x03\x04\x33\x40\x83\x19\xd4\x57\xb0\x1b\x05\x80\x69\xf5\x2d\x75\x0d\x50\x7e\x98\xcd\xd8\xb6\x8d\x30\x35\x08\x63\x83\x30\x06\x05\x87\x5a\xe1\x6e\x91\xe2\x4e\x9e\xe1\x5b\xf3\x15\x75\x73\xb2\xa6\x76\x26\xeb\x6a\x37\xef\xab\xc3\x22\x85\x71\xd1\xc3\xa9\x56\x90\x57\x8a\xdc\x5e\xfa\xa5\xaa\xfe\x62\xbf\xdc\xdb\x02\x30\xa6\xfa\x42\xad\x2d\x20\x0b\x62\xfa\xfd\xbe\x9a\xcd\x66\xae\xba\x0e\xf5\x11\x4e\xe3\x1a\xdc\x7d\x00\xe9\xb4\x6d\xd9\x45\x13\xa3\xdc\x7d\x7c\x42\xa0\xcb\xc5\x2f\xa6\xcd\xba\xca\x81\x6e\x40\xb5\x9b\xc3\x9b\x6f\xed\x54\x1b\x72\xd7\xa6\xe9\xe8\xb1\xbd\xc1\x07\xb7\x4e\xb2\x8f\x64\xb9\xba\x88\x50\x8e\x0d\xad\x71\xb9\x1e\x9c\xdb\xe0\x43\x9a\x54\x72\x0b\x4d\xfd\xc1\x97\x6a\x9c\xa0\xcf\xe5\x09\x52\x68\xee\x04\x43\x61\x1c\x40\x80\x54\xe3\xe6\xd9\x71\xef\x83\x8f\xee\x0f\xae\xed\x8c\x16\x3b\xf7\x56\x17\x73\x03\xcb\xed\xd1\x3e\x53\x8b\xe1\x62\xb1\xd0\xb4\x2c\x48\x99\xb4\xbe\xcb\x87\x88\x99\xd2\x30\x58\x9b\xa5\x5b\x97\xef\xae\x7c\x68\x75\xa1\x9e\x51\x00\x69\x3d\x46\xf1\xbb\x94\x6c\x5e\xd0\x5a\x52\xa8\x69\xa5\x3d\xbe\xd1\xc5\x01\x71\xac\x63\xe5\x46\x97\xd3\x44\xd0\x83\x00\xa9\x56\xdb\x67\xc7\xe9\x33\xef\x38\xca\xbe\xbf\xbf\xb2\xb8\x7b\xb0\x52\xd8\x31\xcd\xae\xde\xd4\x6d\x87\x4c\x3e\x24\x27\xb5\x37\xa7\x21\x84\xd3\xa6\x92\xa7\x90\x88\x0f\xb0\x78\x15\x38\x2d\x74\x80\x66\x06\x48\xd7\xd6\x53\x8d\x83\xb3\x93\xf4\xa1\xac\x28\xd7\x37\xa5\x1d\x47\xd4\xab\x05\x42\x5a\x05\x6c\xc0\x18\x5c\x0a\xa3\x9d\x00\x00\x6a\x38\x44\xd7\x05\xeb\x4e\x41\xad\x32\xf5\x95\xba\x44\x0e\x68\x37\x86\x2a\x4f\x50\xed\x9f\xd2\xd3\x54\xef\xdf\x1b\x2e\xee\x14\x68\xe8\x0d\xb9\xf4\xab\xcf\xf5\x11\x3b\x9a\x3f\x76\x5b\x2e\xb0\xe7\x58\x85\x18\x5b\x77\x21\x25\xec\x0b\xeb\xc2\x2f\x34\xcb\x74\xfd\x9e\x46\x9e\x10\xc0\x72\xf1\x74\xd1\x48\xd6\x12\x1f\x5d\x57\xb9\x43\xf5\xd6\xf2\xfb\xcc\x67\x3e\x43\x5f\xeb\x09\x00\x79\x97\x6e\x21\x55\xa0\x4d\xaa\x34\x64\xaa\x30\x83\xde\xd4\x8c\x46\xf7\x8a\xf3\xa3\xbd\xe2\xf1\xfe\x58\xbf\x47\x2d\xcc\x25\x55\x98\x0b\xa8\x61\x13\x0d\xac\xdb\x5b\x49\xdb\xf7\x1f\xb5\xb5\x57\x33\x20\xd8\x13\x1d\x26\x03\x83\xf5\xf7\xb9\xd0\x70\x15\x69\x72\x83\x66\xac\x27\xb0\xbf\x72\x58\xec\xae\xdf\xc5\x5b\x79\x0f\xdf\x58\x0c\xf0\x07\xe3\x33\xc9\xb5\xa3\xad\xf4\xe6\x6c\x15\x0f\xb5\x82\xa9\x4e\x61\x8a\x0d\xb8\x57\x00\xc0\x67\x73\xb6\xff\x58\xd0\xa6\x01\x1a\x0b\x0c\x01\x2d\x21\xd0\xea\xd3\x59\x21\x1d\x28\x01\x9f\x18\xbd\xe9\xa3\xa1\x72\xf1\xb6\xcc\x65\x97\xf8\x4a\x61\x31\x80\x3d\x04\x94\xba\xe4\xa1\xae\x0b\xe6\x4f\x41\x4b\x0a\x00\x19\x1a\x18\x9c\x3f\xca\x2e\x6c\x1f\x67\x1f\x5a\x59\xa8\x4b\x0a\x1a\x2b\x7b\xeb\xee\x73\x24\xcf\xc0\x2d\x28\xf4\xb0\x06\xff\xd8\x6e\x15\x15\xd8\x9e\x17\x3a\xd1\x25\x13\xd2\xe5\xc1\xbd\xda\x3f\x02\x98\x0e\x72\x75\xf1\x1d\x47\xd9\x47\x2e\xed\x0d\xbe\x7f\xb0\x92\x1f\xe7\x09\xd8\xf6\x68\xc7\xce\xba\xac\x8d\x31\x2d\x6b\x20\xf9\x26\x13\xad\x4f\xfe\x1d\xa2\x74\x90\xab\xd1\xa3\xfb\xfd\x4b\xe7\x4e\x7a\x1f\x49\x0b\xb5\x05\x40\xf2\xc1\xc6\xc1\xd6\x7c\x99\x02\x0f\x5c\xc2\x18\xed\x48\xe5\x2d\xc2\x6d\x30\x88\x4d\x7e\x01\xec\x7e\x19\xfa\xcc\xc1\xa0\x01\x05\x98\x0e\x17\xea\xf2\xf9\xc3\xec\xfd\xb7\xd7\xe6\xd7\x0f\x07\xc5\xb1\x29\x57\x16\x52\x20\x56\x17\xa9\x7f\x82\xbb\x0f\xc5\x8e\x6f\x75\xdb\x72\x1d\x87\x76\x3d\xfb\x12\x58\x6a\xd4\x64\x16\x48\xcd\xd7\xed\xaf\x5e\x02\xa6\x89\xc6\xc1\xda\x2c\xdd\x4a\x35\x8e\x00\x38\x02\x2e\x35\x22\x62\xbd\x1d\x09\xe8\x42\x0f\x35\xc3\x35\xe8\xb1\x0d\x25\xad\xea\xb5\xcf\x76\x8d\xa7\x06\x35\x40\x14\x6f\x0d\x64\x0c\x4b\xab\xe2\x4b\x9b\xb9\xbd\x08\x08\xcb\xf9\xa7\x46\xd0\x47\xfd\xfc\xd6\x51\xbf\x38\xd4\x0a\xe6\x80\xf5\x6d\xb9\x9a\x83\x17\x0a\x90\xd8\x55\xe8\x12\x20\xa4\x6e\x09\xe9\x0b\x7e\x00\xed\xf8\x5c\x99\x49\xf1\xa5\xb4\x7d\x69\x49\x8a\xd3\xa5\xe4\x24\x05\xc9\x65\xf5\xc9\xe2\x52\xd8\x2e\x60\xe1\x03\xda\x5d\x78\xfb\xf2\xee\xcb\x03\x38\x68\xb8\x73\xa6\x6f\x3f\x72\x08\x20\x7e\x3d\xd6\xd2\xf3\xbf\xe6\x7b\x2f\xd5\x4d\xd4\x25\x58\xc9\xb7\xd7\xee\x16\x97\x07\x27\xfa\xfd\xe9\x5c\x3f\x95\xe4\x70\x09\xb5\xd9\x86\xe6\x0b\xb2\x40\x6c\xcf\x6d\x6b\x23\x54\x6a\xbc\x42\xff\xd8\x4c\xf5\xaa\x4e\xb5\xdc\x33\x6a\x8f\x92\x59\x8a\xda\xac\x27\x06\xd7\x01\xe0\x31\xc8\x4d\x9e\xce\xcd\x38\x1b\xc3\xee\xf0\x50\xbf\x71\xe6\x76\xfe\xea\x7c\xa8\xbe\x7d\x7c\x56\x7d\x77\xff\xe1\xde\xcd\x3c\xc3\xa9\xa9\xac\x95\xd0\x9c\x5a\xb0\x03\x83\xbd\xc1\xb4\xee\xf7\xd5\x73\x6d\xdd\xfd\xfa\xd7\xbf\x0e\xdf\xfe\xf6\xb7\x43\xfa\x4a\xea\x23\xbc\x0e\x5c\x7e\x31\xed\x9b\xd2\x72\x30\xd2\x45\x71\xfb\x80\x85\x94\x3e\xf7\x8b\xed\x07\xfc\x59\x92\xc1\xc7\x8b\xeb\x7d\x45\xea\xc9\xea\x7c\x7b\x67\x57\x36\x9a\xa5\xeb\x8f\xec\xf7\x9f\x5e\x9b\x26\x4f\x27\x1a\x46\xd4\x92\x42\x2f\x57\xa3\xf0\xb9\xfd\x0c\x4b\x6f\x00\xac\xfd\x21\xf3\x61\xd6\x9b\x2a\x29\x87\x45\xa2\xd9\x4b\xa9\x0c\x0e\x47\xb3\xe4\xa9\x8b\xfb\xfd\x8f\x5e\xdf\x9c\x5c\xbf\x37\xcc\xcb\x09\x29\xb6\x3f\x90\x6b\xdb\xa9\xbd\xbb\xcc\x02\x38\x62\x71\xa2\x65\x63\x3f\x6d\x90\x22\x60\xb6\xb2\x48\xd6\x1f\x3e\xec\xbf\xa7\x9f\xab\x4b\xd8\x6a\x93\xe5\xd8\x43\xad\x1f\x2d\x99\x25\xf9\xe9\x64\xbd\x2e\x53\x3a\x19\x6f\x77\xdf\x16\x90\x21\x56\x28\x6e\x3c\x28\xc3\xcb\xc8\x69\xa1\xb6\xcf\x4e\xd2\xa7\xb6\x8f\x7a\xaf\xec\x0e\x17\x3b\x87\xfd\xdc\xae\x28\xa4\x55\xfe\xa9\xa5\x85\xde\xe7\xe6\xc2\x17\x2e\x20\x4d\xc3\x5a\xf1\xb8\xc5\xc5\x45\x2c\x39\x2e\x4c\x4d\x4f\x37\x10\xda\x4d\x76\xf4\x6e\x08\x20\xb3\x43\x34\x90\xf6\x73\x35\x5c\x9d\xab\xed\x44\xe3\x68\x79\x3f\x0b\xd6\x9b\xac\x1a\x00\x82\xed\xa6\x8a\x8d\x3f\x40\xd9\xc8\x99\xa1\xa4\x7e\xaf\x2b\x14\x71\x29\xdc\xc6\x45\x92\x02\x88\xe9\x56\xcf\xed\xc9\x28\x14\x89\x99\xee\xae\x16\x6f\xcc\x53\x33\x36\xd5\xdd\x2d\x58\x5e\x8d\x9c\x57\x95\x57\xff\x21\x39\x4a\xc6\x51\x35\x84\x07\xf2\x56\x79\x3b\xe8\x7c\x0a\xcb\x07\x5e\x80\xf8\xbb\x68\x25\x3a\x9f\x2c\x3e\xab\x44\xcc\xe0\x11\xf2\xe7\x3c\x5d\x0a\xd8\xa5\xf8\x25\x20\xe6\x8b\x4f\xdf\x25\xd9\x7c\x03\x92\x04\x4c\x5b\x7c\x28\x68\xa1\x34\x74\x22\x40\xcc\xcd\xf5\x64\x00\xaa\x0b\x1d\x11\x31\x1d\x1c\x15\xa3\x33\xb7\xf3\x4b\x6b\xf7\x8a\x0f\x65\x63\xfd\x5c\xb2\x30\x4f\x2a\x0d\xdb\xd5\x12\x90\x6a\x5b\x34\xdb\x5a\xdd\xae\xee\xb6\x66\x6f\xf6\x5f\xdd\xe5\x9a\x38\xe5\x1c\xa1\xd2\xaa\x96\x86\x0e\x1c\x75\xdf\x2a\xf5\x1e\x1a\x58\x4f\x0c\xac\x9b\xb9\x7e\x4c\x2d\xf0\xb9\x6c\xa2\xef\x0e\xf7\xf1\xfa\xd9\x5b\xf9\x3f\x1f\x9d\x4b\xfe\x65\xef\x42\xef\xda\x6c\x55\x8d\x0d\xc2\xdc\x2a\x44\x28\x2d\x97\x0a\xc8\x52\xeb\xd2\x6c\x14\x91\x82\x96\x18\x17\x43\x1b\xea\x1f\xe0\x08\x97\xe8\xba\x00\x95\x10\x40\x0a\x0d\x06\xae\x74\x5c\xf4\xa1\xfc\x84\x78\xd5\x4e\x00\xd6\xcd\x26\x54\xc4\xf4\xe1\xa3\x6c\x7b\xfb\x38\xfb\x68\x3f\x57\xe7\x11\xb0\xdc\xe8\x0d\xcb\x58\x83\xaa\x57\xa6\x6a\xe5\x08\x0e\x27\x91\x71\x5e\x52\xda\x95\x53\x3d\x8d\x9b\x1b\x93\xf4\xd9\x47\xf7\x06\xff\x63\x6f\x78\x72\xa8\xc1\x70\x0b\x43\x0d\xae\x6d\x9b\xb4\xcb\xff\x7c\xaf\x0f\xb1\x8a\xa6\x88\x98\x2a\x0d\x83\x95\xb9\xda\x3a\x33\x49\x9f\x4c\x75\xb5\xe2\x50\xcb\x65\x27\xc6\xcb\x42\xd9\x57\x5a\x3e\x94\xa6\xdd\x77\x9b\x0e\x28\x6f\xc8\x6d\xee\xc3\x69\x40\x11\x2e\xf3\xaf\x02\x15\x80\x1a\x2c\xd4\xc5\xb3\x93\xf4\x5d\xa3\x59\xf2\xbd\xa3\x41\x71\x0c\x4d\xfd\xda\xcf\xd8\xd4\x7a\x59\x18\xdf\x5c\xc0\x5b\x72\x62\x1b\xe5\x16\x17\x10\xde\x43\x8e\x2a\xe0\x56\x3c\x2a\x30\x41\xde\xad\xc6\xdc\x2b\x30\x5b\x9f\x25\xa3\xc1\x5c\x6d\xa1\x81\xd4\xa2\x46\x43\x37\x57\x49\x68\x19\x68\xe5\x50\x64\xc8\xbe\x1a\x5d\xd3\x34\xbf\xed\xfd\x31\x0d\x43\xdf\x79\xf8\x86\xce\xd4\x4b\x55\x6c\xf9\x4a\xcf\x12\x7d\x7c\x67\x75\x7e\x73\x91\x18\xba\x21\x37\x87\xf6\xe6\xdc\xa5\xf2\x71\x7c\x69\x34\x76\x30\x0c\x01\x16\x4e\x47\x69\x79\x1c\xd7\x0c\x2e\x34\x2b\x93\xd2\x08\x01\x89\xd8\x38\xa1\x7c\xc7\xf2\x8e\x95\xaf\xcb\x40\x10\x33\x78\xb8\x64\x72\xc6\xa1\xa0\x85\x9a\xde\xe9\x52\x90\x05\x2a\xd8\x1c\x3b\xce\x00\x20\x1d\xee\xe5\x1b\x1b\xb7\xf2\xa7\x56\xf7\x8b\x8f\x66\x13\xf3\x6c\xb2\x30\x8f\xa3\x86\x4d\x00\x18\x00\x00\xd8\xf5\xd1\xb2\xed\xd2\x67\x80\x72\xa9\x95\xf4\x03\x63\x95\x5a\x45\x07\x36\xac\x6d\x63\x47\xdb\xeb\x28\x40\x31\x74\x6c\xc1\xfa\x38\x2b\x81\x3c\x00\x88\x0a\x0d\x0c\xb1\x80\xc7\x54\x61\x2e\x24\xb9\x79\x6f\x6f\x62\x3e\xb5\x76\x57\xff\xeb\xc9\x86\xfa\x9f\x07\xe7\xd3\x57\xc7\x67\x92\xdd\x22\x81\xfa\xf2\xaf\x4a\xf9\xe7\x00\xad\x2f\xd4\xd6\xed\xf4\xf9\xe7\x9f\x57\x45\x51\xc0\x1f\xfc\xc1\x1f\xf8\xc0\x73\x8c\xa5\xc1\xe5\x42\x71\x63\xd2\x89\x49\xf3\x41\x58\x4b\x62\xac\x83\x5d\xe4\x08\xa6\xc9\x2f\x2f\x84\xb2\xce\xca\x76\x6a\x20\xeb\xe7\x38\x7c\x74\xaf\xff\xde\xb5\x59\xf2\x5e\x65\x60\x60\x4c\xb3\x34\xd1\xba\xe8\x90\xf8\x5b\xc7\x27\x9a\x8d\xf5\xb1\x6d\x4f\xb7\x96\x09\x1a\xa7\xb6\x2e\x00\xd4\xb7\xa4\xb7\x07\x05\x42\x07\x6d\x8b\x3b\x1a\xc8\x56\x16\xea\xc2\xf9\xa3\xec\xfd\xdf\x36\x27\xaf\x41\xf9\xed\xb9\x0c\xda\x1b\xca\xe7\x56\x1e\x7e\xe9\x1e\xb9\x8c\xb1\x06\x2f\x76\x7f\xcb\xea\x3c\x19\x5d\x38\xcc\x2e\xae\xce\xd5\x25\x65\x60\xd0\x02\x54\xc2\x78\xd4\xf2\x12\xae\xf8\x68\x4b\x6e\xc7\xbb\x8a\x8e\xa1\xbf\x7a\x95\xa1\xa2\x81\x7a\x32\x5f\x1d\x7b\x31\xed\x3e\x5d\x17\x95\x01\xe8\x69\xdc\x5c\x9b\xa5\x17\x87\x8b\x64\x13\x00\x76\x48\x79\xa4\xd5\x84\x5d\x03\x4d\x1b\x00\x3e\xf8\xc1\x0f\xaa\x7f\xff\xf7\x7f\x97\xf4\x5f\xe7\x3e\x4a\x37\xd4\x58\x66\xbe\xce\xe2\x72\xad\x04\xac\xb5\xc5\x3a\x66\xde\x06\x20\xe8\xb3\x57\x60\xb6\x3e\x4d\x37\x7a\x5a\xad\xdb\x0d\x5a\xa5\x4e\x6c\xcc\x75\x14\x64\xd0\x05\xa3\x56\x1a\x60\x91\xa1\xad\x48\x5a\x11\x0c\xe8\xb0\xca\xe0\x7e\x5e\x0c\x4f\x91\x28\x21\x34\x08\xf9\xa4\xa7\x77\x0f\x07\xf9\x9e\x26\xfb\x5b\xd8\xe6\xc2\xfa\xcf\x96\x89\xe3\x86\x50\xc9\x0a\x41\xc3\xb9\x1f\x9f\xbd\x73\x3e\x52\x3c\xee\xcf\x5d\x17\x0b\x87\x4b\xa6\xd8\x01\xc1\xa7\xd4\xe9\xb1\x75\x00\x00\x20\x00\x49\x44\x41\x54\x60\x41\x08\x73\x3d\xbb\xf8\xba\xe4\x8e\xe9\x30\x2e\xde\x2e\xb9\x7d\x1d\xce\xf7\x5e\x3f\xf3\x63\xce\x00\x40\x97\x5a\xeb\xfb\x51\xec\x1a\x39\x18\x93\x65\x63\x33\xdc\xbc\xb9\x78\x72\xb4\x5b\x7c\x32\x1b\xeb\x0f\x27\x0b\x73\x49\x69\xd8\x84\xf2\x04\x90\xb2\x4b\xa3\x74\xf9\xd4\xce\x06\x1a\xe5\x87\x2d\xd0\xd2\x60\x13\xf2\xdf\x2e\x0f\xb5\xc6\x8b\x76\x7f\xe4\xb3\x37\xa8\x93\xa5\xdc\xda\x93\x06\x83\x90\xa2\x86\xcd\x74\x6e\x46\x49\x5e\x3c\xd6\x9b\xe9\x0f\xaf\x1c\xe9\x7f\x3d\xde\x4c\xfe\xc7\xe1\x76\xfa\xbd\xc9\x9a\x3a\x34\x09\xda\xaf\xab\x2b\x68\xbe\xae\x4e\x3f\x54\x0a\x00\xa0\xed\x37\x98\xec\x3b\xfb\x8d\x7d\x0e\x59\x3a\xa4\x34\x62\x68\x7d\x71\x43\xe1\x5d\xd3\xe9\x02\xfa\x63\xf2\xeb\x4d\x93\x1e\x30\x60\x96\x85\xda\x1a\xd8\xcf\xd5\x68\x63\xd2\x7b\xa2\x57\xe0\x06\x96\x61\x75\x3b\x6a\xcd\xcc\x3d\xb3\xc8\x46\x8f\xb7\x5b\x12\x35\xc2\x08\x86\x85\x76\x7b\x16\x09\xa4\xc9\x30\x02\x80\x51\x89\x56\xa3\x33\x93\xf4\xa9\xad\xe3\xde\xc6\xed\xb5\xf9\x18\x9a\x7d\x2e\xb5\x85\x81\xc8\xdf\xb2\x32\x60\x73\xe2\x8f\x4f\x38\xd2\x95\x45\xb2\x7e\xee\x24\x7b\x67\xaf\x50\xdb\xbe\xcb\x4f\x25\x7f\xba\x6a\xd0\x24\x87\x4b\xfd\x0b\x5d\x83\x1b\x4a\x65\xd9\xb6\xc0\xb0\xe2\xa9\xd3\x52\x1a\x87\xc3\x79\x72\xfe\xcc\x34\x3d\x3f\x58\xa8\xeb\x93\xb4\x98\x0a\xc6\x89\xba\x1c\xd8\x49\x40\xae\x57\xbb\xf4\x29\x00\x90\x2d\x2e\xe0\xf0\x73\x39\x91\x8e\xac\xf1\x59\x84\xd9\x32\x21\xda\xcc\x25\x1a\xb3\xe1\x3c\x39\x9b\x16\x38\x92\xda\x92\xd5\x8d\x7c\x77\x35\x5f\x83\x63\x60\x72\xc9\x21\xbd\x91\x87\xa5\x51\xb3\xf4\xc4\xe7\x04\x54\xbf\x03\x00\x68\x34\x7a\xdc\x2b\x76\x8f\xb3\xe2\x18\x00\xe6\x80\xf5\x26\x43\xbb\x4c\x54\x6f\x56\xaa\x9e\xc1\x18\xc3\xf7\xb7\x58\xc7\x07\x33\x3b\x20\x72\xe5\xe2\x02\x21\x12\x5d\x68\xf6\xc6\x79\xc4\xf2\xe2\xa0\x57\x1a\xc4\x63\x00\x89\x94\x0f\xfe\x1e\x3b\x3b\x8c\x9d\x49\x4a\x71\x63\x79\xf3\xf8\x2e\x5e\xbe\x49\x41\x8b\xfe\x37\x7e\xe3\x37\xd4\xe6\xe6\x26\x9d\x79\xd6\x16\x16\x68\xfa\x4d\x7d\x8c\x12\xb4\xc9\xd2\xb9\x19\xae\xed\x16\xe7\xd7\x77\xf2\x0f\x0f\x0f\xf4\xcf\xa4\x33\xfd\x5e\xa5\x61\x0b\x0c\x0c\x00\x40\xd5\x9b\xd2\x25\xe5\x45\x17\xc6\xf9\x87\xdb\xe8\x6e\xf6\xd6\x2e\x77\x26\x39\xef\x78\xcd\xde\x16\x42\x64\x96\x22\x35\x2c\xab\xd9\x68\xe9\xa1\x00\x60\x00\x1a\xb6\xd3\x99\x59\x57\x79\x71\x3e\x9d\xe9\x27\x07\xc7\xfa\xeb\xc7\xe7\x92\x7f\x39\x3a\x97\xbe\x31\x1b\xaa\x63\x28\x3f\xa3\x91\x42\x79\xd5\x80\x2d\xdb\x4a\xd4\x7a\xd6\x0b\xc6\x18\x10\xfa\xd6\x83\x72\x5d\x2d\x35\x5d\x5d\x0c\x10\x0f\xb5\xf5\x90\x25\xe6\xc7\xe1\xa4\x7d\x58\xe5\x32\x02\x40\xba\x3e\x4d\xd7\x57\xe7\xc9\x25\x55\x7d\x44\x97\x4e\x00\x63\x6f\x81\x0d\xb9\xa0\x1e\xef\x1c\x09\x21\x31\x66\xb8\x3a\x4f\x1e\xbf\x78\xd0\x7f\xec\xf6\xda\xfc\x2e\x40\xbd\x21\xb5\xb5\x64\x44\x22\xb5\xde\x69\x79\x90\x25\xa3\xac\x57\xe0\xfa\xca\x42\x6d\x27\x06\x87\x3c\xff\x14\xd8\x4b\x20\x62\x69\xf2\xde\x36\x84\x2e\xe5\x4f\x3c\x3d\x25\xe4\x3b\xa6\xec\x10\x30\xed\xe7\x6a\x6b\x6d\x9a\x3c\x3c\x5c\xa8\xd1\xb4\xa7\xeb\xe5\x22\x20\x06\x0a\x12\x45\x7f\xf6\xb3\x9f\x55\x7f\xf2\x27\x7f\xc2\xc7\x09\x97\x7e\xf4\xb6\xd1\x58\x65\x4d\xdf\x79\xb8\x97\x17\xdd\xa4\x03\x50\xcf\x20\xeb\xd9\x63\xaa\x71\xb0\xb2\x50\xeb\x89\x81\xea\xe2\x39\x43\xfe\xb7\x11\x61\x65\x3c\xb4\x1e\x00\x2d\x4a\x8e\x0a\xdb\x0b\x48\xa5\xb9\xda\xda\x6c\xa0\x34\xb3\x11\xfa\xc6\x88\xbd\xec\x4c\x29\x37\x18\x2c\x1b\x87\xa9\x96\x8b\x9a\x34\x0d\x14\xca\xcc\x4f\xfa\xc5\xdd\x59\xaa\xcb\x8d\x85\x65\xc3\xd6\x58\x5e\xbc\xd5\xba\xc7\xc5\xfe\x21\x62\x48\xb1\xf2\x41\xdb\x37\x73\x92\x1a\x80\x6b\x06\xe5\xe3\x25\xf1\xb6\x4e\xaa\x63\xce\x4b\x7a\x96\x68\xa4\xb0\x58\xd0\x12\x8a\xef\xcb\xb7\xc4\x2f\x26\x8e\x04\xde\x5c\x32\x84\xea\x4d\x4c\x73\x73\x73\x13\x00\x4a\xc0\x42\x67\x2f\x64\x96\x56\x7f\xee\x3e\x29\x60\xb4\xba\x5f\x9c\x7f\xe8\xc6\xe2\xc3\xe7\xde\x98\xff\xf7\xb5\xbb\xf9\x7f\xef\x4d\xf4\xc7\xd4\xff\xcf\xdc\xbb\x3e\x59\x76\x5c\xf5\x82\xbf\x95\x7b\x9f\x47\x9d\xaa\xae\xae\x6e\xb5\x5b\x6d\xb9\xfd\x92\x6d\x59\x36\xba\x46\xa8\x75\x6d\xf3\xf0\xd8\x77\x30\x04\x98\xb9\xe0\x09\x83\x81\x18\x0f\x10\x61\xa4\x3f\xaa\x15\x7c\x80\x70\x84\x81\xc0\x11\xf0\x85\x0f\x44\x4c\x40\x40\x30\x86\x18\xdb\xc8\xc6\x6f\xcb\xb2\x1e\x2d\xa9\xd5\xea\xae\xae\xae\xc7\xa9\x53\xe7\xec\x9d\x6b\x3e\xec\x7c\xac\x5c\x3b\x73\x9f\x53\x36\x31\x31\x29\x55\x9f\xbd\xf3\x9d\xb9\x33\x57\xfe\xd6\x23\x33\x5b\x5c\x47\xb7\x3b\xc8\xc4\xe3\x33\xc5\xb8\x4e\x24\x25\x5d\x18\x0b\x6a\xa7\xaf\xcc\xea\x04\x2c\x91\xa3\x0d\xfe\x12\xf4\xc8\xb0\xcc\x41\x10\xec\x54\x4e\xc1\x06\xc6\x57\x83\x45\x66\x12\x58\x31\x0c\x31\x66\xa6\xe5\xeb\xe3\x53\xfe\xf8\xce\x7e\xf3\xbb\x97\x5e\x5b\xfd\x9f\x57\x5e\x59\x7e\x6a\xf7\x6e\x73\xdd\x34\xbc\xc3\xcc\x63\xff\x07\x71\x3a\xaf\xda\x04\x10\x18\xa8\x5f\xfd\xd5\x5f\xd5\xb4\x2a\xf7\x2c\x5d\x89\xee\xad\x93\x62\xae\x03\xb4\xe7\x4d\x9b\x5b\x04\xa4\x2b\x81\xe8\x21\x5a\x2d\x69\xf2\xa6\x75\x32\x19\xff\x5e\xb9\x42\x55\x94\x82\x6e\x46\x5d\x59\x1a\x5f\x39\x19\x5d\x9d\xac\xe8\x7a\x77\x1f\x1d\xa0\xc7\x26\xa7\x3e\x69\xde\x8e\x76\xeb\x31\x2a\x92\xc7\x5f\x16\xf1\x11\xd5\x50\x22\xb3\x6c\x62\xd6\x01\xdc\x31\xbd\xc4\xa8\xc7\x2d\x5d\xb9\x72\x3c\x7a\x1f\x9c\x5a\x16\x62\x1d\x13\xcf\x80\x62\x6e\x98\xd9\xc8\x75\x2f\xcc\x67\x46\x3d\x6a\x69\x36\x6e\x69\x97\x18\x63\x72\xaa\xda\x5e\xbb\xd3\xe9\x94\xd4\x93\x85\x3f\xa9\xf9\xc8\x2c\xc2\x95\x90\x34\xc4\x4c\xa6\x9d\x08\xe3\x24\x56\xff\x9b\x30\xa3\xb6\xb4\xb3\xb5\x32\x57\x26\x2b\x33\xe3\xee\x50\x4a\xd9\x0f\xbe\xed\x21\xc9\xce\xce\x4e\xbf\x71\x9b\x01\xe8\xde\x38\xab\x73\xb1\x90\x27\xe2\xf2\x5d\x13\x6e\x1f\x66\x2e\x5d\xba\x84\xfb\xf7\xef\x87\x78\xfa\xe0\x1d\xa4\x83\xd9\xd4\x96\xc6\x5b\x2b\xb3\x5b\x59\x9a\x02\x41\xbb\xd6\x03\x15\x39\x3f\x1f\x53\x83\xc6\x44\x1f\x87\x08\x76\xe2\xce\x24\x74\x40\x26\x24\xf0\xbb\x92\x04\xd8\xd1\xd2\x95\xc4\x28\xa6\x87\x49\xed\xca\xf0\xe2\x70\xda\xdc\x6d\xaa\x6e\x47\x84\xd8\x49\xe4\x2f\x56\xcc\x19\x29\xe5\xdc\x10\xe1\x0b\xe5\x21\x25\x38\x39\x00\x39\x24\xed\x28\x01\x9d\x52\xfa\x92\x84\x45\x13\xc3\xa1\xb2\xb4\x04\x62\xd3\x34\xb9\xfa\xe6\x38\xcf\x9f\xb6\xed\x9b\xa6\x29\xb5\xbd\xd4\xbe\x52\x9a\x6c\x3c\x75\xaf\x8b\x36\xbe\x4d\x76\x21\x8c\xce\xec\x6c\xfb\x7e\x7b\x7d\xf7\xad\xe6\xe9\xed\xfb\xed\x27\x47\x0b\x7e\x92\x2c\xae\x00\xe8\xce\x57\x71\x54\x2a\x88\xe1\xe3\x8e\x06\x00\x4a\x1d\xe4\xdf\x83\xb8\x1e\x21\x4d\x32\x77\x59\x86\x89\x67\x07\x7a\xe2\xbc\x21\x24\xca\x73\x92\xcc\x06\xa2\x93\x69\xbc\x4d\x03\x75\x69\xc5\xc1\x91\x86\x18\xbb\xb4\xc2\x63\x5b\x47\xf6\x4a\xbd\xe4\x47\x46\x0b\xfb\xf6\xfa\xac\xfe\xd7\xa3\x2b\xf5\x4b\xab\x2d\xd3\x49\x37\x23\x4d\x91\x27\x53\x7b\x67\xf5\x81\x75\x48\xc7\xf3\x26\x84\xb3\x14\xa7\x44\x07\xd7\xe5\x21\xc7\xc1\xba\xb4\x9b\xd4\x7b\x5d\x3a\xed\x72\xf5\x5e\x97\xb6\x04\x90\x00\x44\x09\xbb\x97\x2c\x68\x5b\x46\x00\x75\xc5\x98\x5e\x9e\xd7\xef\x1c\x59\xb3\x47\x80\xe9\x86\x50\xee\xac\xae\xbc\xcb\x8e\xa3\x72\x64\x64\x14\x98\xc9\x6b\x5e\x80\xa8\xea\x13\xe8\x3d\x9b\xca\xd2\x6c\x67\x59\x3d\x32\x6a\x69\xbc\xaa\xb8\x66\x70\x2d\xda\xe9\x5d\xf8\xb6\x7e\x3e\x8b\x4d\x29\x7e\x7e\xbb\x43\xf8\xa8\x1e\xb5\x34\xab\xad\xd9\x21\xc4\x8b\x85\x01\x57\x37\x21\x41\x89\xa6\x10\x3e\x2c\x9d\x77\x1e\xb3\xf8\xf9\x4a\xe8\x83\x95\x8c\xa6\xa8\xd4\x3b\x42\xc0\x9a\x5f\x8f\x89\x08\x86\x79\x3a\x6a\xcd\xce\xa8\x35\x53\x61\x6b\x17\xbe\xbd\xd6\x92\xa8\xf5\xef\xbc\xe3\x3e\x59\x87\x4a\x48\x3d\x87\xf2\x4b\xe8\x3c\x29\xcc\xa3\x2a\x66\xce\x6e\x87\x16\x86\x5b\xb5\x61\xd4\xe3\xd6\xcc\xa6\x8d\xd9\xeb\x44\x87\xa9\xf3\x28\x30\xf2\x69\xde\x9f\x93\x5f\xed\xfa\xb2\x98\x02\x92\x67\x49\xad\x15\x22\xcd\xa2\xdc\xbc\xb3\x04\x7b\x56\xf3\xe1\xe1\xa4\xdd\x77\x86\xb9\x01\xb4\xc0\x11\x08\x69\xe7\xe2\xfb\xe6\xe6\xcd\x9b\x56\x6e\x75\xf5\xd9\xc9\xac\x75\x51\x48\x09\xde\x79\x09\xcc\x90\xbf\xff\x5b\x47\xa4\x4b\xef\xb2\xfc\x5c\x59\x9b\x70\xb6\xe7\x71\x9b\xb6\xb1\x54\x1f\xef\x97\xeb\xaf\xf3\xd6\x29\x97\x47\x69\xae\xf4\x38\x5f\x75\xf8\x20\x24\x17\x47\x6e\xeb\x24\x80\xb1\xb1\x98\x4e\x8f\xdb\x2b\x17\x6f\x37\x1f\xb9\xfc\xda\xea\x37\x2f\xdc\x6d\x3f\x37\x3e\xe5\x5f\x31\x16\xd7\x88\x51\xc7\x33\x54\x94\x84\x05\x81\x68\x22\xde\x42\xaf\xc6\x73\x60\x53\x39\x64\x91\x33\x72\xef\x12\x72\x4c\x13\x44\x27\xd1\x2f\xe5\x1a\xf5\xac\x61\x15\xc1\x17\x96\x90\x60\x57\x8c\xcb\x97\x51\x93\xe5\xab\xa3\x05\x3f\xb5\xb3\xdf\xfe\xf6\xe5\xd7\x56\xff\xfb\xe5\xd7\x56\x4f\x6d\x1d\xb6\x97\xc9\xf2\x0c\x9d\x1d\x4f\x22\x79\x51\x7f\xfa\x7c\x91\x9f\xc5\xe5\xe6\xe7\xcf\x92\xf7\xa6\xd2\x9a\xdc\x98\xdc\x44\xd2\x32\x94\x7e\x13\x37\x04\xe6\x43\x9e\x8e\xa6\x69\x4e\x3b\x01\x2f\x64\x69\xbc\xbd\xac\xaf\x9a\xee\x5a\x97\x6e\x5d\x00\x7a\xc3\x55\x8f\xba\x1e\xed\x5e\x47\x90\x45\x58\x42\xcf\x0b\xf1\x0b\xc2\x97\x5e\x00\x31\xd5\x93\x95\xb9\x3a\x69\xcc\x94\x84\x9d\x8a\xda\x29\xeb\x5d\xb2\xa3\x28\xa7\xf6\xad\x2d\x8d\x27\x8d\x99\x55\x96\x66\xc4\xdd\xee\xaa\x12\x7f\x9c\x03\x19\xbd\x7e\xe9\xcd\xbd\x14\xac\xac\xc3\x7b\x3a\x3f\x2a\xf4\x97\xf7\x27\x46\x5d\x5b\x4c\x6b\x8b\x29\x32\x73\xcf\x9b\x88\xf4\xa4\x5d\xe7\x9f\x2f\xbd\xb5\xa6\x56\x01\x43\xdc\x6b\x8e\x00\xf7\x90\xd0\xab\xaf\xbe\x9a\x5c\x51\xef\xec\x3b\xdc\x47\x09\x68\xbc\x86\xfb\x70\xb3\xa5\xd9\x19\x77\xc0\xa5\x8b\x13\x0f\x73\xcb\x74\xb4\x23\xc0\x41\x41\x43\x08\x46\x87\x02\x29\xf7\x24\x30\x81\x2e\x76\xf1\xc3\xf6\x6a\x4a\x89\x64\xaa\x5e\x8a\xce\x5d\xad\x58\x24\xe4\x96\xb8\x59\x8c\xda\x83\xe3\x49\xfb\x80\x85\x6d\x0b\x52\xc0\x12\xcb\x10\xe5\x3a\x55\x51\x6e\x01\x1d\x02\x30\x25\xc9\x41\x52\xad\x81\x7c\x4a\xd2\x85\x5c\xfe\x3a\x9f\x21\xf0\x32\x54\x56\x2e\xfe\x50\xba\xa1\x72\x37\xe5\x14\x37\xe1\x50\x73\x6d\x38\x4f\x3d\xd7\xd5\x63\x90\xbb\x2e\x48\x5a\xfc\xe4\x1f\x7b\x11\xac\x69\x31\xdd\x3a\xb6\x57\x77\xef\x34\x4f\x5c\xb8\xdb\x7c\x72\x3a\xb7\x1f\x35\x2b\xbc\x87\xc0\xe3\xc8\x7a\x79\x9b\x01\x3f\x3f\x04\xf1\x11\x12\x92\xe0\x25\x28\x34\x3b\x6e\x2d\xcc\x1d\x4d\xe8\x09\x42\x02\x93\xce\x4f\x39\x37\xbc\xcd\x4a\xd7\x16\x84\xdd\x77\x21\x4b\xf2\x12\x1e\x0d\x56\x9c\x98\x5c\x1a\x0f\x93\xb0\x81\xe8\xd4\xbc\x3b\xd5\x8a\x1e\xdf\x3a\xb4\x97\xeb\xe5\xea\x6a\xbd\xe4\x9d\xfb\x6f\x1f\x3d\x7f\x7a\xc1\xdc\xe5\x0a\x0b\x2f\x25\x42\x67\xb8\xeb\xea\x10\x54\x17\xe1\xb4\xdd\xaf\x7d\xed\x6b\xf8\xc6\x37\xbe\xb1\x89\x44\x22\xf7\x9e\x1b\x1b\xe7\x89\xab\xe3\x0f\x01\x12\x9d\x6f\x29\x6d\x69\x8c\xe5\xea\xb4\x89\x2b\xcd\x6b\xb9\x16\x24\x71\x14\x2d\xcd\x81\xc7\xda\x74\xa6\x01\xbb\xc4\x30\xc8\x8c\x97\x6e\x58\x44\x7a\x1e\xf2\x86\x64\x56\x3d\xf8\xce\xd3\x62\x76\xff\x48\x93\x2c\x3f\x0f\x72\x36\x1e\xb9\x35\x23\x39\x46\x5f\xd4\x82\xc0\x75\x6d\x69\x77\xdc\x9a\xe9\x09\xb7\x35\xa8\x2f\x61\xc8\xf4\x05\xa0\x40\x8c\x8b\xdb\x01\x97\xd6\x6c\x19\xc6\x54\x4b\x34\x24\x96\xcf\xae\x6b\x01\xef\xab\xe3\x22\x33\x69\x20\xda\x1f\x24\xa6\x32\x4c\xe7\x8d\xf8\x5d\xb4\xb6\x43\x4a\x51\x88\xbb\x33\xd8\x8c\xa5\x31\x98\x0d\xdc\xba\x2e\xcf\xf1\x91\xfd\x21\x00\x4c\x69\xbd\x19\x72\x6b\x25\x2e\xa5\xcc\xd7\x85\x87\xbc\x32\xa2\x31\x19\x27\xfc\x8d\x5b\x33\xde\x39\xab\x2e\x8e\x3a\xc3\x5c\xc3\x82\x98\xf5\x06\x58\xd8\xc6\x29\x06\x7c\x57\x00\x22\x21\xed\xb8\xb9\xf8\x51\xfc\xd6\x65\x97\x87\x8b\xef\xc5\x81\xf1\x8f\x13\x62\xef\xeb\x1e\x11\xa8\x48\xa3\x90\x3c\x83\xd1\x12\x96\xf3\xb1\xdd\x9f\x77\x86\xb9\x12\xb4\x04\xc3\x5c\x97\xa7\x7f\xb6\xcc\x8c\x2f\x7c\xe1\x0b\xeb\xa4\x2c\x25\x6e\x2c\xb7\xb8\xe6\xb8\x3f\x2d\xcd\x59\x27\xa5\xd0\x52\x17\x9b\x09\xcb\x81\xab\x1e\x87\x2b\xfc\x4b\x1c\x9b\x8c\xa3\xcb\xd8\xa4\xee\x43\xdc\xe6\xa6\x69\xf4\x22\xa3\xfd\x36\xcd\x7b\xa8\xcf\xf4\x3b\x00\xe0\x77\x7e\xe7\x77\xcc\x33\xcf\x3c\x13\x40\x8b\x10\x2b\x1b\x78\xe3\x5b\xb7\x13\xa3\x6a\x31\x9b\x1d\xb6\x8f\xec\xbd\xbe\xfa\xe8\xde\x9b\xcd\xef\x6c\x1d\xdb\x5f\xaf\x56\x78\x8c\xd8\x81\x96\x30\x90\xfd\xd8\xf7\xa3\xd6\x3b\xc1\xc6\x51\x37\x1f\xbc\x3e\x3c\xa8\x8f\xa4\x48\xd8\x4b\x3a\x14\x35\x25\xfd\x2c\x00\x49\x2c\x29\x4e\x36\xa9\xa9\x22\xea\x12\x51\x98\x5b\x92\xb8\xfb\xf8\xfe\x0c\xa5\xa4\xba\xe1\x85\xba\xd3\x7a\x6b\xd3\xe2\x91\xc9\x9c\xff\xd7\x8b\x6f\x36\xbf\xf7\xd0\xad\xd5\xc7\x67\x87\xed\x23\xa6\xc1\x0c\xee\x96\x5d\x67\x0b\x54\xcb\x05\x54\xd2\xa1\xa7\x9f\x7e\x1a\x6b\xdc\xa6\x8b\xbc\x1e\xef\x3f\x4d\x3e\xb9\xf9\x94\x63\x14\xb5\x5f\x8e\x1e\x68\xff\x21\xc6\x66\x93\x7a\xfc\x54\x2e\xbb\x83\x14\xdd\x99\x5d\xc6\xd2\x94\xe4\x5a\xe1\xc7\x2f\x10\xc6\x40\x6a\x7d\xe8\x16\x4b\x37\x1a\xba\xf1\x2d\xc5\x12\x3d\x7c\x9d\x4a\x2d\xfc\xaf\x07\xcb\xb1\xa8\x28\x30\x44\x61\x0c\x6b\xc7\x80\x61\x1a\x57\x96\xc6\x94\x31\x42\x15\xf3\x37\xd9\xda\x4d\x71\xcb\x7e\x88\x4f\xdd\x51\x00\xb5\x61\xd4\xc4\x30\x52\x88\x24\xdb\x10\xaa\xee\xeb\xe8\xd7\x1f\xc1\x8c\xe7\x99\x6d\x44\x13\x37\xe7\xe1\xf3\xa5\x42\xbc\xb4\x1f\x7b\xd4\x23\xb4\x47\x80\x19\x03\x50\x4d\x40\xed\x76\x04\xfb\x7e\xf0\x7d\xa2\xa5\x50\xd2\x9d\x67\xbc\x49\xb0\x6c\x74\xe2\x4d\xb8\x03\x19\x57\x2f\x46\x49\x3c\x09\x5e\x44\xfc\xf0\xc7\xcc\xf5\xa8\xa5\xe9\x6c\x55\xed\xd6\xd6\xec\x84\x34\x10\xe3\x98\xd3\x01\x20\x99\x34\xb9\x5d\x3a\x0e\x48\x02\x27\xc0\xa7\xaf\xe5\x94\x69\xfc\xc0\xed\x7f\xa4\xf8\xaf\x1f\x2c\x72\xa0\xeb\x62\x5b\xc3\xcb\x93\x71\xbb\xbf\xac\x83\x7d\x4b\xa2\x26\x12\x87\xcf\x85\x7e\x22\x22\x7c\xe9\x4b\x5f\x2a\x11\x1c\xf9\x5e\x92\x00\xe4\xd2\x6e\xba\x98\x0e\xfd\xea\x85\x7c\x1d\x38\xf2\xfe\x25\x20\x9b\x03\x3e\xeb\x08\x69\xae\x3d\x9b\xf4\x95\x7f\x1e\x6a\xb7\xac\x8b\x74\x25\x89\x92\x76\xeb\x24\x40\x43\xe0\xc8\x5e\xb9\x72\xc5\x00\xc0\xd5\xab\x57\x01\x20\x01\x2d\x42\x45\x14\x0c\x71\x3b\xd0\x62\x1f\xb9\xfc\x5a\xf3\xf1\x8b\x77\x9a\xdf\x19\x9f\xd8\x5f\x31\x2d\xae\xaa\xc9\x20\xa8\x1d\x8b\xc5\x80\x23\xae\xe1\x08\x68\x42\x58\xb8\x1e\x83\xa3\x01\xa0\x57\x37\xe9\xf8\x85\x15\x81\xd9\x7b\xc4\xb8\x2c\x8c\x82\x49\xaa\x91\x44\x22\x12\xe5\x91\xcf\x3b\x5a\xeb\xca\x4a\x87\x78\x09\xf7\xc7\xd8\x19\x2d\xec\x2f\x5d\x78\xab\xf9\xdc\x43\xaf\xae\x7e\x69\xf6\xa0\xbd\x5e\x35\xd8\x01\xf3\x14\x4e\x6d\xe4\xd4\x6c\x9a\xee\x18\x66\x0e\xaa\xa3\xad\xad\xad\x9f\x95\xb0\x96\xc2\x72\x20\xfe\x67\x75\x43\x75\x5a\x27\x41\x3a\xaf\xff\x3a\x66\xc7\x1a\x63\x0c\x90\x9c\xec\x0c\x20\x91\x72\x25\x7d\x6f\x98\xea\xca\x5d\xd0\xd9\x45\x94\xf4\x38\xfe\x24\x43\x51\x48\x02\xc3\x5a\xc0\x31\x0c\xec\xc0\xb0\x1c\xaf\xb2\x2e\x32\x9d\x58\x5f\xf4\xba\x20\xaa\x90\xa4\x55\xce\xa0\xb3\x23\xd3\x6a\x91\xd0\x6e\x11\xaf\xd4\x87\x21\xcc\x12\xd0\x12\xc0\x24\x24\x57\x99\x06\x24\xf5\x10\xcc\x40\xae\xb2\x72\x0a\x49\x4c\x98\x73\x52\x4a\xa3\xfb\x24\x5f\x9f\x94\x21\xb2\xc4\x4d\x6b\xb8\x69\x0d\x0f\xd1\xe6\x92\x5b\x47\x67\x4b\xb4\xd7\xca\xc0\xa1\x85\x27\xf7\xde\x43\x40\xb9\x82\x3d\x78\x51\xfa\xce\x60\x59\x5d\xb7\x34\x9e\xae\xaa\x9d\xca\x76\x3b\x8a\xbc\x0d\xb8\xec\xd0\xc8\x50\x46\x19\x8a\x1f\x8c\x11\x4d\xaa\x03\x77\x42\x4e\x31\xcf\x38\x80\x39\xa4\xe1\x24\x54\x4a\x5f\x5c\xbe\x7e\xd0\x48\x94\x2a\x14\x7f\xee\x83\xdb\x65\x6d\xe7\x47\x93\x76\xff\xac\x0a\x3b\x8a\xfc\x19\x13\xf2\x7e\x22\x7f\x05\x3a\x88\xba\xf3\x5b\x9c\xc4\x65\x48\x4d\x21\xdf\x4b\x8b\x79\x09\x68\xac\x13\x33\x4b\x97\x5b\xe8\x4b\x60\x47\xe7\x9b\x03\xb1\xb9\x7c\xe5\xaf\x6e\xa3\x4e\xa3\xff\x72\x65\x0f\x95\xa3\x41\xd2\x50\xdd\xbc\x5b\xd7\xd6\x9c\x64\xa6\xf4\x4d\x8a\xe5\xfc\xda\xaf\xfd\x9a\x34\x64\x4c\x40\x0b\xc5\xdb\x73\xc7\xcc\x3c\x26\xcb\xb3\xd9\x83\xf6\xda\xe5\x57\x97\xbf\x72\xe1\x6e\xf3\xb9\xd1\x82\x3f\x6a\x18\x7b\x11\xb4\x08\x6a\xaf\x45\x81\x62\x36\x74\x5c\x96\x07\x34\x9e\xbd\x22\x48\x60\x12\x24\x2d\xce\x40\x16\x44\x42\xcd\xc4\x11\x44\x24\x94\x31\x4a\x52\x20\xe2\x92\x07\x21\xfe\x0e\x0d\x37\x89\x02\xc6\x81\x9b\x73\x42\x2d\x1c\xa9\x71\x57\x6f\x0e\xec\xa1\x9f\xaf\x22\x2b\x57\x57\x02\x4d\x47\x67\xfc\xd1\x0b\x77\xdb\xcf\x5d\x79\x75\xf5\x2b\xb3\x83\xf6\xba\xe9\xc0\x4b\xcf\xe6\x45\xee\x34\x92\x5c\xe0\xe9\xe9\xe9\x90\x14\x23\xe7\x72\xa0\xbb\x94\x6e\x9d\xb4\x71\xa8\x1c\x19\x37\x37\xbf\x86\xea\x90\xab\x53\x6e\x2c\x0f\xb5\x71\x68\xce\x76\x01\xd6\x5a\x20\xa8\xbb\x35\x9d\x8f\x2a\x05\x22\x03\xee\x8e\xbe\x70\x17\x76\x76\x75\x4b\x44\x6b\x9c\xee\x9e\x11\x28\xd5\x0f\xd9\xc0\xed\xfb\xb1\xe0\xff\x42\xd4\x2e\x03\xbd\x58\x27\xaa\x53\x78\x29\x43\x8c\x55\x02\x3c\x09\x80\x72\x4d\xe6\x6e\xb1\xee\x84\x2f\x6e\xb7\x90\x1c\x5b\x05\x7b\x0e\x6f\xd7\x98\x7c\xa3\xd6\xb0\x5d\x56\xf6\xac\x25\x0e\x67\x11\xb1\xfa\xd5\x68\x42\xae\x7b\x92\x25\x08\x07\xee\xc5\xe9\x56\x92\x1b\x25\x6d\xf2\xd3\xba\x04\xde\xd2\x7a\xa5\xfb\x6e\x5b\xc2\x72\x51\xdb\xe3\x45\xcd\xcb\x6e\xc7\x6d\xb2\xab\x2a\x6a\x2e\xfa\xea\x32\xed\x4a\x02\x93\x22\x18\x1a\xe2\x42\xf5\x22\xb0\x6e\xd1\xc8\x39\x4f\x28\x82\x47\xd0\xe1\x77\x3b\x8a\x66\xd3\x95\xd9\xab\x98\xa6\x5e\x1c\x98\x1c\x20\x07\xc0\x0f\xc7\x4e\xe7\x18\x0f\x9f\xcb\x75\x82\x94\x9b\x90\x78\x62\x91\x46\x8a\xc4\xa3\xe0\x31\x97\x32\x3a\xb9\xfd\x59\xce\x2e\xb7\x45\xda\x9e\x55\x76\x7e\x32\x6e\x0e\xc5\x89\xb9\x16\xf9\xa3\xc9\x93\xbe\x52\x12\x97\xd2\x22\x9f\x03\x31\xda\x95\xd2\xc8\x70\x2d\x86\xd6\xc0\x60\x48\x92\x30\xf4\xbb\x8e\x28\x96\xd2\xe4\xdc\xa6\x9c\x6d\xae\xde\x3a\x2c\x57\xce\xcf\xd2\xd6\x5c\xbc\x4d\xe2\x24\xce\x1b\xaf\x4b\xd0\x02\xc7\xc9\xb9\xbf\x31\x98\xc7\x04\xcc\x26\x47\xf6\xf2\x43\x2f\x2f\x3f\x75\xe1\x5e\xfb\x7b\xa3\x33\x7e\xd2\x74\xc7\xf5\xa7\xec\x56\x22\x0d\x61\x11\xe6\x20\x7c\x22\xa6\x40\x94\x6c\x90\x18\xeb\x22\x6d\x94\xa0\x20\xcd\xcb\xcb\x98\x83\xbe\x5a\xcd\x93\x6e\x35\x40\x94\xf4\x50\xf4\x73\xdc\x47\x20\x7b\x14\xe7\x65\x60\x54\x3c\xa0\x61\xe1\xd7\x2f\x20\x99\xd7\x2e\xc5\x78\xb4\xe4\x27\x77\xee\x35\x9f\x7b\xe8\xd6\xea\x93\xdb\x0f\xda\x6b\x64\x21\x0d\x76\xc7\x40\xcf\x38\x12\x40\xd6\x60\x77\x1d\x17\xa8\xe3\xe5\x00\x3f\x94\xdf\xa6\x80\x39\x57\xe6\xa6\x4c\x48\x09\xa0\x97\xe6\xd3\x26\x80\x5b\xbb\xa1\x7a\x03\x48\x80\x4a\x3f\x35\xc1\x58\x62\xcb\x14\xee\xad\x89\x0b\x26\x47\x2a\x1c\xa0\x2b\xa5\x43\x36\xe1\xf6\xc5\x62\x1b\xd7\x82\x38\xd6\x93\xd2\x85\xda\x5f\x02\x91\xc4\x9c\xc1\x8d\x4c\x12\xa0\x23\x60\x71\x66\x07\x9e\x19\x20\xd8\x55\xc5\x8b\x95\x61\x0b\x0a\x47\x15\xe4\xd7\x22\x71\x72\xac\xef\x13\xad\x85\x58\x19\x8b\xd3\x91\x5d\x36\x86\x17\x0c\xb6\x2c\xe6\x88\x96\x08\xc5\xbe\x88\xd2\xa7\xc4\x3f\xf4\x0b\x87\x3c\x4a\x52\x14\xdf\xa7\xba\x9f\x43\xbb\x13\xe6\x47\xa5\x13\xcf\xad\xe1\xc5\xe9\xc8\x1e\x2e\x46\x76\x89\x0c\x30\xd1\xe3\x21\x03\xea\x86\x5c\x6e\x4c\x87\xf9\xbb\x8e\x7b\xd7\xfe\xda\x65\xfd\x15\xd2\x02\x90\xee\xed\x06\x60\x4c\x77\x47\xd1\x74\xda\xd0\x6e\x65\x69\x2a\xd1\x72\xd7\xa1\x11\x60\x48\x08\x23\x51\x66\x28\x4f\x48\x58\xa2\x5f\xfa\x51\x35\x92\x4d\x87\x68\x9a\x4e\x06\x49\x90\x94\xd0\x74\xe7\x6f\x89\x97\xcb\x9a\x0f\x4e\x47\x7c\xc4\xe0\xe4\xac\x16\xa1\x22\xb2\xde\xae\xc5\xe7\xf5\xb9\xcf\x7d\x6e\x9d\x28\x31\xe7\x6f\x55\xb8\x8c\x5f\xe2\xe8\x50\xf0\xcf\x11\xcc\x12\xc2\xd5\xf9\x0f\x95\xb1\x4e\x22\x31\x54\xaf\x5c\x9a\xa1\x3a\x6d\x52\x9f\xa1\xb2\x36\xa9\xc3\xd0\xc2\x52\xfa\x4e\x6b\x9d\xe4\x4e\xd9\x1d\x89\xce\xf1\x5c\x92\xe9\x78\xc1\x3b\xd7\x7e\xbc\xfc\xd4\xce\x7d\xfb\x7b\xf5\x19\x7f\x98\x18\xd3\xde\x00\x4f\x46\x76\xfa\xde\x11\x5d\x07\xd4\x19\x09\xe0\x4e\x06\x71\x88\x4d\x01\x6f\x30\x27\x5c\x66\xd6\x91\x3f\xd3\x9f\x49\xc4\x25\xf1\x17\x22\x76\x84\x9f\x52\xd8\x11\xf2\x80\x26\x76\x50\x7e\xe9\xb3\xe6\x44\xdd\x4f\x5d\xaf\xf0\x61\xb7\xe3\xe8\x93\xdb\x07\xed\x35\x30\xcf\x80\xde\x6e\x23\xad\xbe\xd0\xae\xb4\x90\xaf\xfb\xa6\xeb\x18\x8a\x4d\x5d\x2e\xfe\x26\x12\x9a\xf3\x96\xbd\x4e\xe2\xb2\xc9\x18\xde\xb4\x6d\xdd\x18\x07\xcc\xaa\x62\xbb\xaa\x78\xc1\x2e\x6d\xf8\xb2\x19\x0c\xec\x1f\x24\x9d\x96\xd2\x85\xde\x8e\x17\x6f\xf4\xdd\xf3\x8e\xeb\x08\x10\x17\x6b\xb9\xc6\xc0\x63\x13\xbd\xf0\xfa\x7c\x5d\x6a\x4b\x6c\xcf\x6a\x7b\x70\x3a\xb2\x0d\x17\xda\x5f\x5a\xbc\x01\x24\x86\xad\x00\x6c\x5b\xa1\x59\x8c\xec\x7c\x31\xb6\x87\x6d\x77\x29\x2f\x92\xce\xc8\xcc\xc1\xc8\xa7\x50\x3f\x4a\x60\x46\xd2\x36\x0f\xe5\x97\xf3\x8e\x92\xcd\xbe\x71\xae\x4c\xd3\x54\xbc\x58\xd4\xed\x7c\x55\xd9\xe4\xc2\x49\x14\xc6\xa3\xea\x9b\x75\x63\xac\x34\xa6\xed\x26\x89\x37\x22\xc2\x25\xe7\x8d\x74\xe4\xae\x09\x38\xa3\xb9\xda\x52\x3d\x6d\xcc\x6c\xdc\x9a\x1d\xc3\x18\x27\x80\x40\xe4\xa1\x81\x46\x1a\x9e\xc2\x8f\x12\xba\x44\x08\x4b\x49\xa7\x47\xd9\x52\x68\x98\x7b\xd4\xf9\x27\xe2\x32\xc3\xcd\x62\xd4\x1e\x2f\x46\xad\x3f\x06\x3a\x18\xe7\x02\x3d\xfb\x16\x8d\x3a\xa5\x64\x60\x13\xc9\x96\x41\x3a\x40\x4a\xf1\x87\x16\xfb\xdc\x37\xcd\x49\x75\x64\x1e\xe7\x21\xc0\xeb\x88\xe8\xa6\x63\x6a\x48\xf2\x51\x22\xe6\x39\xa9\x61\xa9\x2f\x36\xe1\x4c\xa5\x1b\xea\xb7\x52\xf8\x50\x5e\x41\xd2\xe2\x41\x0b\x11\x8d\x09\x98\xd6\x4b\xde\xbd\xf6\xc3\xb3\xff\x65\xfb\x7e\xfb\x87\xf5\x92\xdf\x8f\x6e\xf1\xed\x11\xa9\xee\x57\x80\x17\x81\xac\x69\x68\x42\x14\xfc\x93\x39\x96\x9b\x84\xc9\xbb\x26\x6a\x24\x26\x49\x0f\x61\x75\x31\x7a\xd3\xcb\x73\x62\xc2\x2f\x87\x98\x58\x53\x01\x4e\xde\x9c\xab\xab\x25\x3f\xbe\x73\xb7\xfd\xed\xcb\xb7\x9a\xff\xb1\x73\xdf\x5e\x85\xc5\x94\x53\xb5\x51\x4d\xca\x58\x50\x49\x5d\x7e\x1a\x49\xa0\x0e\x3f\x2f\x88\x3d\xcf\xdc\xda\x14\x78\x6f\x5a\xfe\x26\xf5\x5b\xcb\x14\xa8\xbb\x79\x8a\x8e\x89\xb1\xa8\xed\x21\x88\x1b\xfd\xf5\xce\x33\x54\x7b\xd8\xf6\x1c\x2e\xd0\x7d\x88\x1a\x90\xc2\xf5\xca\xf9\x78\x2d\x61\x79\x3c\x6e\xf7\x57\x15\x27\xdf\x4c\xb7\x7d\x60\xfb\x6f\x8f\x96\x9d\xd5\x76\x71\x38\x69\xee\xb4\xc6\xce\x35\x1b\x92\x02\xb7\x58\x7f\xe9\x79\x9e\x6e\xc8\x09\x49\x7b\x79\xf0\x40\x58\xea\xec\xb2\xb2\xf3\xf9\xd8\x1e\x2e\x2b\xd6\xd7\x6e\xf4\xc6\xcc\x9a\xf1\x71\x6e\x9c\x51\x4a\x50\x5a\xc0\x86\xd2\x1a\xa0\x33\xd4\xd2\xc8\x4a\xef\x67\x27\x77\x47\xd1\x74\x65\x2e\xd4\x96\x66\xb9\xee\xd1\x40\xa5\xf7\x51\x43\xa8\xfc\xed\x52\x26\x20\x83\xa5\x34\x26\x15\x59\x45\x44\xdd\x17\xbd\xa5\x95\xc9\x42\x1b\x30\xbc\x9e\x8f\x0f\x57\x15\x7b\xe0\x12\xc0\x88\xb3\x6b\xe9\xb8\x0b\xf7\xec\xdf\xbf\xf2\x95\xaf\x94\x54\x1c\xfe\x39\x27\x61\x59\xa7\x92\xd0\xc0\x66\x5d\x19\x39\xb7\xa9\xaa\x64\x28\xad\x2e\x2b\x17\xc7\x64\xe2\x0d\x49\xf7\x74\x1e\x25\xd1\xf8\x26\xaa\x9d\x75\x6a\x80\x92\x3a\x68\xa8\xcf\xd6\xf5\x2b\xc4\x6d\xb1\xc9\x89\xb8\x70\xc6\xb8\xcc\x3c\xad\x56\xd8\x7d\xdb\x4f\x96\x4f\xed\xec\xb7\xbf\x57\x2f\xf9\x31\x20\x6e\x95\xa4\x20\xb9\xf0\xae\x13\x8d\x78\xf5\x4a\x91\xca\x7b\x3b\x14\x2f\x63\x47\x8a\x0f\xc2\xa1\x8f\xfe\xe4\x4e\x8d\x30\x5c\xda\xa8\x76\xe2\x10\xdf\x4f\x9a\xd4\xae\x96\x62\x7c\x65\x88\xe0\x6d\xde\x28\x43\x7c\xfd\x7c\x8c\x4d\x4b\xe7\x1d\x73\x7a\x1c\x56\x86\xe0\x8e\xab\x15\x3f\xb6\x73\xbf\xf9\xf4\xc5\xdb\xab\x5f\xda\x3a\x6a\x2f\xfb\x7e\x45\xff\xb4\x53\x2f\xed\x2a\x9d\xf1\xb2\xa9\xd4\x4d\xfb\x6d\x22\xc5\x38\xcf\xf3\x79\x01\x76\x29\xfe\x4f\xdb\x86\x52\x1e\xc1\xff\xe6\xcd\x9b\xbd\xc3\x35\x93\x6f\xe7\x76\x54\xb6\x04\xfb\x60\xda\xec\x37\x26\x5c\xd5\x00\x20\x32\x8e\x52\x6a\xde\x7d\xef\x34\x2f\x4a\xc2\x15\x58\x08\x65\xe9\xb1\xad\xe2\x8b\x69\x12\x8c\x7c\x91\xda\x8d\xf8\x7c\xa4\x0f\x03\xd6\x56\xbc\x3c\x9a\xb6\x07\x00\x2c\x9c\x41\xad\x94\xa2\xa4\x1b\x49\x42\x06\x72\x3d\x80\xd8\x65\x6a\x01\xd8\x45\x6d\xe7\xfb\xb3\xe6\xee\x59\xcd\x87\xa1\x8d\x49\xd3\x18\xd1\x06\x33\xa2\x0a\x59\xbd\xc4\xf0\x5e\xa6\x64\x24\xbe\x24\xfc\xd3\x12\x84\x3f\xe9\xb0\x38\xef\x65\xb2\xee\x08\x10\x7b\x38\x1f\xb7\x47\xab\xca\x2e\xd1\x31\xe9\xb2\xbd\xba\x4f\x34\xb8\x5d\x37\xae\x07\xc7\xeb\x90\x98\xfd\x3c\x0b\x98\x01\x60\x3f\xf8\xc1\x0f\x26\xf7\xee\x88\x86\x24\x47\x1e\x03\xa8\x6b\x6b\xc6\x93\xc6\xcc\x6a\x4b\x33\x12\x1d\x53\x12\x4d\x79\xbf\x12\x6e\xd3\xe0\x24\xa4\x21\x79\xc2\x04\x52\x11\xa1\x48\xdb\xdb\x86\x97\x50\xd6\xe8\xaf\xc1\x4d\x53\xf1\x62\x31\xb2\x87\x67\xb5\x5d\x6a\xdb\x16\xa4\x1f\x33\xa7\x42\x03\xca\x44\x64\x93\x05\x33\x27\x61\xc8\xc5\xc9\xbd\x6f\xc2\x8d\xe5\xc6\xc7\x79\xb8\xb8\x21\xb5\x51\x8e\x20\x0e\xa9\x5e\x4a\x2a\x9c\xa1\x31\x5c\xca\x53\x03\x42\x1d\x7f\xa8\xde\xa5\xbc\x75\x9d\x13\x8e\x54\x1e\x32\x27\x8c\xfa\xfc\x01\x56\x63\x00\xe3\x7a\xc5\x3b\x7b\xb7\x57\x8f\xed\xde\x6d\xff\xe7\x68\xc9\x1f\x01\xd4\xf9\x0e\x4c\x01\x60\xfb\x93\x85\x3a\x49\x87\xa2\x38\x7a\x05\x90\xd0\xc0\x4b\x36\x29\x52\xb5\xc0\xc5\xf9\xfb\x8a\xb2\x13\x51\x9e\xb8\xeb\x22\x79\x40\xc2\x62\x8a\x10\xe0\x0f\xc2\x93\xc0\x26\x54\xd5\xdb\x04\x88\x95\x42\xad\x11\xf0\xab\x4b\x98\xa7\x7e\x9b\x34\x89\xf0\x40\x95\xa3\xa8\x96\xc0\x20\xc6\xac\x3e\xe3\x0f\xef\xec\x37\xff\x63\xf7\x4e\xf3\x64\x7d\x66\x77\x1c\x78\x09\xc0\x45\x9c\xbb\x61\x32\x04\x55\x3b\x3d\xff\xce\x23\x51\xdc\x04\x74\x94\xe2\x9c\x47\xca\x13\x9e\x3f\xfb\xd9\xcf\x9a\xcf\x7e\xf6\xb3\xbd\xb1\xfa\xd9\xcf\x7e\xb6\x94\xf6\x3c\x2e\x9b\x2e\x27\x71\x91\x2a\x11\xcf\xac\xb5\xc4\x76\x7f\x7b\xf5\xd6\xaa\xb2\xc7\x1c\xf2\xca\xd3\x56\xf9\xbd\x49\xd1\xdf\xee\x37\x1d\xef\x52\x00\x29\xb0\x6f\x3f\xbe\x9c\x50\x21\x6e\x26\x7f\x31\xd6\xdd\xa3\x5d\x19\x3b\x3f\x98\x36\xfb\x10\x74\x5d\x82\x96\x0c\x78\x4b\xe8\xbe\x6f\x0b\x8b\x8b\x77\x17\x23\xbb\xd8\x9f\xad\xee\x9d\x8e\xda\xbb\xde\x48\x57\x66\x23\xed\x3e\x89\xd3\x7a\xfa\xe1\xdf\x4d\x27\xea\x01\x12\x6d\xbf\x22\xfd\x93\xf7\x8c\x7f\x9c\xfe\x71\xde\xcb\x64\xab\xca\xce\x8f\x26\xed\xdd\x93\x71\x7b\x68\x29\x32\xea\x48\xd7\x3c\x79\x8a\xf5\xa6\x27\xc7\x7b\xa7\xc7\x5a\x32\xa6\x6b\x11\xe1\xbc\x2a\x01\x5d\x88\xf9\xc1\x0f\x7e\x60\xc5\xd9\x14\x01\x79\x4a\x89\x8b\xff\xab\x2c\xd5\xe3\xd6\x74\x87\xd7\x38\x27\x69\x66\x0e\xa4\x44\xc9\x8b\x87\x28\xd4\x0b\xcf\x80\xc6\x2e\xcc\x9d\x3e\xa4\x25\x26\xf1\xa9\x63\x1b\xfd\xe1\x74\xfa\xb4\xa2\x5c\xbe\x0c\xb6\x2b\xc3\xf3\xf9\xa8\x3d\x58\x55\xbc\xe4\x78\xbc\xbf\x57\x17\x01\x88\x37\x41\x4b\x24\xfe\xb9\xcf\x7d\xce\x28\xa9\x4b\xae\xff\x73\x44\x50\x4a\x62\x72\x12\x04\x1d\xa6\xdf\x37\xcd\x5f\xa6\xcd\xc5\xd7\xf9\xe4\xa4\x3f\xba\x4e\xb9\xfa\xe8\xba\x0d\x85\xad\x1b\x9f\xb9\xbe\xd9\x74\x4c\x4b\x69\x95\xae\xab\xcc\x47\x4b\x22\x73\xf9\x84\xf8\x6a\xab\xa8\x41\x5c\x38\xfd\x59\x2d\x63\x00\x63\xb3\xe2\xd9\xf6\x81\xbd\xbe\x77\xbb\xf9\xe4\x78\x6e\x9f\x86\x45\xe6\xd2\xd1\x38\x0a\xc3\x0e\x21\x74\x63\x3b\x84\xe4\x06\x7f\x96\x1b\x28\x50\x35\xb8\x03\xad\x34\xe7\xc5\x88\x36\x29\xba\x20\xea\x45\x8c\x06\x90\x49\xb0\x78\xf3\x92\x1d\x12\xb3\xb8\xff\xa0\x92\x89\x86\x64\xeb\xee\xf2\xb2\xd8\x1d\x9f\xf2\x47\x2e\xdc\x6b\x0f\x56\x53\xb3\xbf\xff\x4e\xf3\x5d\x4a\x6f\x68\x07\xc4\xfc\x24\xa2\xdc\x65\xa7\xe7\xa1\x85\x9b\x8c\xb7\x52\x9c\x9f\x8a\xee\xae\x3b\x09\xd8\x4b\xbe\xfd\x55\x07\x7f\xfb\xb7\x7f\x1b\xca\xf8\xf5\x5f\xff\x75\xf3\x0f\xff\xf0\x0f\xeb\x18\xa2\x4d\xe7\x1a\x6e\xde\xbc\x69\x45\x7d\x8a\x92\x56\x36\x68\xee\x6d\xaf\xf6\x8f\x26\xed\xeb\x5b\xcb\xea\x0a\xb9\x83\xd7\xd6\x2d\x67\x25\x9a\x1e\x5c\x21\xb0\x98\x26\x2b\x59\x28\xac\x1f\x6e\xcd\xb0\x04\xbb\xac\xf8\xf8\xc1\x56\xf3\x00\x7d\xa6\x32\xb9\x66\x82\xe3\xa5\xba\xf0\xbf\x6e\x0d\x90\x63\xd0\x02\x68\x1a\xc3\xcb\xe3\x49\x7b\xf0\x60\xda\xdc\xbe\x3c\x1f\x2d\xaa\x96\xb2\x17\xfa\xe4\x1a\xd4\xa3\x0f\xe7\xc2\x05\x65\x17\xfb\x20\x3d\xdc\x4e\x86\x9f\x8e\xec\xfe\xc1\x56\x73\xe7\x64\xd2\x1e\x23\x1e\xba\x6a\x05\x28\x4b\xd3\x64\x80\xdd\x39\x5c\x2f\xbf\x7a\x20\x70\x93\x85\xb4\x37\x58\x33\x6a\x22\xc9\xb9\x87\xf7\xda\x62\x3c\x6a\x69\x56\x59\x4c\xe5\x88\x51\x80\x38\xeb\xa8\x47\x0a\x07\x46\x22\xd2\x4e\x93\x83\x53\xe3\xec\x88\xbe\x39\x5c\x19\x9e\xa3\xf9\x7e\xd7\xa8\x25\x34\xcb\xca\xce\x4f\x47\x76\xde\x18\x0e\x12\x17\x89\x32\xd5\x2f\x24\x31\x29\xc4\x19\x02\x0e\xd9\x3c\xd1\xff\x4e\xb9\x77\xbd\x30\xaf\xe3\x00\x4b\xe0\x68\x1d\xc7\xb9\x49\x9d\x36\xe5\x32\xcf\x9b\x66\x68\xf1\xd8\xa4\x8f\xce\x53\xa7\xf3\x72\xca\x46\xff\x91\x3b\xab\xc5\x30\xa6\xd3\xb9\xbd\x7a\xf1\xcd\xe6\xbf\x4f\x8f\xec\xaf\x98\x96\xaf\x06\x30\x92\x19\xc3\x01\x67\x43\x10\xc7\x94\xbd\x4c\xe2\x21\x79\x75\xff\x0a\x20\x92\x1e\xc0\xe8\x41\x4b\x0a\x32\x72\xc4\x2b\x7b\x82\xa9\x07\x2d\x40\xfc\x15\x33\xce\x4f\x31\x8e\x6f\x5d\x0c\x27\xed\x91\x3b\x43\x38\x66\xd9\x3d\xfb\x38\xb2\x89\x1c\xeb\x2a\xce\xce\x36\xa6\xa5\x2b\xd3\x63\xfb\xd4\xc5\x3b\xcd\xdd\xe5\x8c\x0e\x8e\x1f\xaa\x6f\xa1\x23\xae\x63\x47\x5c\xfd\xf6\x55\xbf\x33\x24\x77\xa7\x91\x77\xe7\x01\x17\x25\xe0\x5d\x9a\x47\x83\x20\xc6\x03\x02\xa9\x86\xf0\xef\x24\x0e\x3b\xcb\xa9\x2b\x00\x58\x99\x5e\xc7\xf9\xfc\xe7\x3f\x6f\xfe\xfa\xaf\xff\xda\xfe\xc2\x2f\xfc\x82\xf9\x8f\xff\xf8\x8f\xf3\xb6\x27\x38\x09\xce\x95\x74\x21\xd8\xf8\x75\xcf\x68\x8e\x26\xed\xf1\xbd\xed\xd5\x4b\x97\xe6\xf5\x63\x55\x63\xa6\xfa\x6e\xba\x70\x06\x0c\xe2\x98\xd6\x74\x38\x2c\xa7\x0a\x07\x87\x72\x8b\xab\x42\x1f\x94\xe7\x18\xd9\x84\x71\x76\x15\xb1\xc4\xcb\xf9\xb8\xbd\x7b\x38\x6d\x0e\x5d\x7b\xfc\x42\x2d\xfb\x35\x39\xf6\x42\xf4\x89\x97\x36\x84\x85\x3d\xfc\x82\x9b\xd3\x51\x7b\xfc\xe6\x85\xd5\x2b\xd7\x0e\x27\xfb\xa3\xd6\x9d\x69\xa6\xea\x24\xc7\x3b\x65\xdb\xac\x5b\x19\x7d\x7d\x1a\x06\x77\x4c\x8e\xe8\x53\x8a\x89\xe2\xbc\x0c\xc2\x4c\xea\xc7\x03\xd0\x12\x2f\x8f\x27\xed\x9d\xfb\xb3\xd5\x9d\xf9\xc8\xce\xe1\xee\xe6\x83\x3b\xb1\x5a\x82\x97\x1c\xd3\xee\x5c\x09\x5f\x0c\x31\xd8\x21\x4c\x1f\xf9\xbf\x2e\x03\x99\xb8\x17\xe7\x83\x1f\xfc\xa0\x9f\x24\x72\x4f\x7b\x62\xe3\xe2\xc5\xb3\x95\xa5\xf1\xb8\xa5\x1d\xc3\x34\x8e\x23\xc5\x71\x6b\xd0\x1f\xa2\xff\x61\x3c\x55\xf7\x1f\xa8\x1b\x64\xf1\xa8\x66\x76\x5b\xa7\x25\x71\xf7\x8e\x5c\x5c\x26\x52\xf9\x0a\x6e\x56\xc6\xd5\xf5\x70\x33\xca\x1a\x5e\x2e\x47\xf6\x78\x51\xdb\x23\x0b\x6e\xc0\xc9\x16\xe8\x9e\x61\x2e\xfa\x75\x29\x81\x81\x12\x71\xdb\xe4\xc3\xae\x03\x9c\xd2\x6f\x48\xfa\xb1\xa9\x54\x44\xe7\x25\xdd\x50\xfa\xa1\xf0\x52\x3d\x91\x79\x1e\x8a\xab\xe3\x97\xd2\x0f\x49\x83\x72\xfe\xba\xce\xd9\xba\xe9\x7b\xa8\xc4\x79\x0f\xfe\xac\x96\x9a\x88\xc6\xa3\x05\xef\x5d\xb8\xdb\x3c\xbe\x7d\xbf\xfd\x95\x7a\xc5\x8f\x12\xc4\xbd\x25\x9e\x78\x27\x2b\xb6\x57\xc5\x14\xa0\xbd\x57\x56\xbb\xf4\xe1\xbe\x43\x8e\xc0\x84\xc2\x19\xe0\x08\x73\x46\x50\xea\x98\x1e\x10\x61\x5d\x1d\xd2\x53\xab\x7d\x58\x8c\x1b\xee\x71\x27\x0f\x28\xc4\xe1\x91\x2c\x6c\x65\x02\x32\x13\xe2\x68\xbf\x5a\x79\x62\xeb\xd5\x4e\x1e\x3d\x05\x7b\x1e\xc9\x6c\xc4\x7a\x87\x85\x8f\x51\x57\x0d\x3f\xb2\x75\xd8\x7e\x7c\xef\x0d\x7a\xed\x6c\x66\x0e\x57\x5b\xc6\x9f\x68\xed\xa5\xbc\x8d\x32\xd6\x2d\x7d\xdf\x75\x73\x6e\x13\x10\x6b\x32\x71\xb5\xb3\x00\xf0\xdb\xbf\xfd\xdb\xe6\xda\xb5\x6b\x49\x80\x36\x2a\x56\x76\x83\x39\x7f\x4f\x87\x7b\x0c\xa5\x07\x69\x40\x07\x8c\x32\x60\x4d\xb7\x21\x57\x77\xeb\xd4\x6c\xf6\xb9\xe7\x9e\xb3\xe2\xea\x8a\x24\x0f\xa1\x3e\xb0\x04\xb2\xcb\xca\x2e\xdf\xbc\xb0\x7c\xe5\x1d\x0f\x26\xfb\xe3\xd6\xec\x18\x8b\x3a\xaa\x65\x04\x10\x0f\xff\x00\xc9\xa3\x1b\x87\xfe\x88\xa0\x5e\x38\x10\xc7\x75\x6f\x7a\xf4\x59\xde\xdc\x0c\xd2\x60\xc1\x02\x76\x55\xd9\xf9\xfe\x56\x73\x6b\xde\x6d\xc2\x08\x52\x13\x21\x45\x49\x16\xe7\xcc\x37\x49\xe2\x3b\xe0\xd3\x00\x68\x16\xb5\x9d\xbf\xb1\x7b\xf6\xda\x3b\x0f\x26\x2f\xcd\x56\xe6\xea\xc8\x9a\x70\x6f\x9f\x04\x6d\x62\xd8\xa7\xcf\x03\xad\x94\xfd\xe0\xe7\x79\x6f\x5a\xb3\x8c\x83\x24\x8e\xec\x07\x4f\x19\xce\x46\xf6\xe0\xde\x6c\xf5\xfa\xc1\xb4\x79\xab\x31\xdd\xa1\xab\x1e\xc8\xa9\x3e\xb1\xa5\xb1\x59\x70\x9b\x80\xfb\x24\x82\x7e\xde\x84\xeb\xe8\xc5\xf9\xc1\x0f\x7e\x20\x27\x49\xcf\x28\x37\x70\x09\xdd\x19\x2e\xd3\x71\x6b\xa6\x86\x31\xf6\x40\x84\x05\xd2\xce\xa1\x49\x81\xe5\x7b\xa8\x39\x10\x52\xc1\xcd\xa5\x88\x92\xd3\x3c\xd6\x74\xa2\xdc\x0b\xaf\x07\xb2\xd8\x1e\xd7\x2c\x6a\x7b\xbc\x1c\xd9\x05\xc4\x60\x86\x42\xe2\xae\x4f\xf4\xc4\x2f\x2d\xd6\x32\x9f\x5c\x98\x5c\x0c\xfd\x9f\x8c\xaf\x3f\xbe\x4e\x3b\x04\x8a\xb4\xd3\x0b\xb2\x2c\x4f\xd6\x21\x57\xcf\x4d\x5d\x4f\x95\x92\x29\x7b\x28\xcf\x92\xc8\xdc\xf7\x89\xec\x9f\x4d\xa5\x24\x83\x62\xf8\x0d\xcb\x0e\x71\x04\x80\x37\x10\xb7\xe5\xc2\xa9\x88\xb6\x1e\xb4\xef\xda\xb9\xdb\xfe\xf7\xd1\xc2\x3e\x41\x96\x67\x31\xa9\x10\x5d\x00\x29\x15\xe3\x24\x96\x7b\xf0\xf1\x52\x8a\x1e\xe7\x8f\xb4\xe2\xf2\xbc\x2b\x92\x09\x27\xe3\x26\x79\x26\xf9\x65\x28\x1b\xc5\xc4\x51\x15\x4f\xfd\x2a\x91\x07\x4e\xca\xa6\x8c\xe5\x2c\x8b\x22\x1e\x4a\x26\xbf\x23\xbc\xe9\x2a\x05\xc7\xa9\xb8\xf8\x62\xd1\x62\x9e\xd5\x4b\x7e\x74\xfb\xa0\xfd\xc4\xee\x5b\xcd\xa3\x48\xb7\x47\xcb\xd3\x4f\x83\x53\x2a\x0f\xef\xd6\xd1\xc9\xa1\xb9\xa3\xe3\x0e\xc6\x7b\xf6\xd9\x67\x25\x68\x91\x73\x4e\xbf\x7b\x1b\x29\xff\x9c\xfc\x02\xa9\x2d\xcf\x40\x3e\xda\x06\x2b\x57\xbf\x6c\xdd\xfd\x22\xfd\xc7\x7f\xfc\xc7\x59\xd0\x82\x74\x81\x6f\x00\x34\x96\xb0\xbc\xb3\xb3\x7c\xe3\xc1\xa4\x79\xbd\x35\xbc\xcc\xae\x90\xd9\xb2\xdc\xaf\xfa\xfe\x39\x89\x89\x1f\x8b\x6a\xe4\x26\x00\x40\x16\x96\xe4\xa1\xa4\x8b\x4c\x80\x25\x34\xf3\xb1\x3d\xb8\x73\x61\xf9\x4a\x6b\xfa\x3b\x47\x55\x9b\x25\x50\x29\xfd\x86\x3c\x88\xa8\x69\x2b\x2c\x0e\xb6\x9a\xbb\xb7\xf6\xce\x7e\x78\x3a\xb2\xfb\x72\xcd\x49\x6a\xea\x19\x11\xe1\xa9\xdb\x18\x3c\xb9\xf7\x98\x8d\x4d\x28\xf4\x27\xf7\x63\x13\x80\x96\xb8\x79\x30\x6d\x5e\xbf\x7d\x61\xf9\xca\xd1\xb4\x3d\x00\x15\xfb\xc3\xbb\xf0\xfe\xe6\x9b\x6f\x66\xfd\x33\x6e\x08\xe0\x1b\x20\x4a\x5c\x86\x38\xc9\xdc\xc2\x91\xe3\xd6\xb3\x47\x3f\x43\x4c\x16\xcf\x35\x10\x60\x46\x2d\x8d\x47\x0d\xcd\x0c\xd3\x58\x22\x41\x41\x9f\xa0\xf3\x8a\xa2\x72\x05\x37\x15\xca\x95\x88\x32\x44\xe9\xa5\x8b\x84\x32\x32\xb2\xec\x06\x7c\xe4\xf8\xfa\x79\x20\x88\xab\x5b\xc2\x72\x59\xf1\x7c\x59\xd9\x85\x44\x99\xf2\xfc\x16\x44\x04\xaa\xc5\x65\x25\xe9\x88\xec\x33\x19\x0f\x85\xb8\x32\x1f\x4d\x7c\x86\x08\xee\x90\x24\x43\xbe\xeb\x31\x50\xf2\x93\xe9\x74\x99\x43\x6d\x1d\x4a\xef\xf3\x18\x4a\x2f\xe3\x0c\x01\x90\x75\x52\x16\x99\x4f\xc9\x0d\x7d\x07\x00\xc0\xde\xde\x1e\x0e\x0e\x0e\xb4\x88\x5f\x2e\x20\xde\x20\xb7\x26\x60\x3a\x99\xdb\xcb\x3b\xfb\xed\xcf\x4d\x4e\xec\x53\xa6\xe5\x2b\x51\x5f\xd2\x51\xdf\x28\x3a\xe7\xc0\x91\x4a\x89\x85\x1c\xa3\x51\x1f\x1d\x44\x98\x41\x05\x13\xa4\x91\xa9\x20\xdc\x25\x14\x93\xcf\x89\x79\xe2\xb5\x01\x99\xd5\x44\xb1\x60\x2c\xf3\xa6\x68\x4c\x08\xf8\x39\x1b\x57\x9d\x70\x79\x9b\x98\x47\x81\xe9\xf0\x99\x06\x35\x99\xa8\x63\xb0\x13\xc8\xf5\xba\x68\x2f\xe0\xec\xd9\x1c\x2c\xb2\xd8\x1d\x9f\xda\x27\x2e\xde\x69\x3e\x76\x74\xa5\xbe\xb5\xdc\x22\xcb\x08\x12\xd1\x06\x91\x2e\x85\x31\x36\xa0\x32\x02\xfa\xe3\xbe\xc4\x90\xac\x1b\x47\x09\x5d\x55\xbb\x31\x25\x10\x08\xe3\x48\xa8\xdd\xc3\xbb\xff\xcd\x70\xb3\x72\x21\x0d\x65\xb9\x31\x68\xc5\xe2\x1a\xc6\xb4\x04\x2f\xbe\xfd\xdb\xdb\xdb\x38\x39\x39\x29\xb5\x21\x38\x99\x5f\xc6\x9e\xa3\x01\xd0\x30\xb8\x21\xa2\xe6\x70\xda\x1e\xde\xb9\xb0\x7c\xf1\xd2\xe9\xe8\xd1\xdd\x96\xa6\x04\x32\x9c\x19\xbd\x69\xfe\xee\x17\xe2\x57\xad\x03\x5a\x32\xa0\x2f\x18\xf5\xd2\x04\x50\x5a\x86\xd4\x78\x46\x46\x37\x14\x82\xa6\xe2\xc5\xc1\x56\x73\xeb\xcd\x0b\xcb\x37\x41\x58\x42\x6d\xc0\x80\xf8\x96\xea\x1b\x5a\x3f\xb6\xbc\xf4\x4b\xa8\x8a\x1a\x22\x5a\x02\x58\x32\x73\xb3\xac\xed\xfc\xd5\xbd\xc5\x4f\xde\x71\x30\x79\x71\xb6\xaa\xae\x54\xd6\x1d\x81\xc0\x94\x2e\x59\x7a\x6d\x14\x7d\x10\x1e\x55\xe7\xf5\xe9\x43\x2f\x50\xb7\x8a\x8a\x00\x00\x20\x00\x49\x44\x41\x54\x69\xda\x21\xa2\x1c\xed\x7d\x3a\xb2\xfb\xb7\x77\x97\x2f\xbe\x75\x61\xf5\xda\xa2\xb6\x73\xa0\xeb\x0f\xd7\x9e\xe4\x18\x10\xad\x2e\xfa\xbb\xbf\xfb\xbb\xf3\x30\xb4\xa1\x1f\xdd\x6f\x32\x5f\x72\x0b\xdd\xa0\x54\x45\xf8\x27\x00\x2e\x40\xd1\xbf\x0b\xdf\x93\x4f\x3e\xa9\x8d\xdb\x00\x20\x99\x7c\x40\x27\xbe\xac\x2c\xd5\xa3\xd6\x4c\x47\xdd\x8e\xa2\xba\x27\x12\x64\xc8\x05\xde\x67\xd4\x13\xc3\x39\x7a\x1c\x74\xa2\x1a\x23\xca\x2c\x3a\xeb\x68\x75\x46\xae\x64\x64\xbd\x2e\xae\xa3\xc4\x3d\xb1\x96\xdf\xcd\x21\x78\x51\xb4\x86\x97\xcb\xda\xce\x57\xa6\x3f\x90\x85\x48\x30\xc9\xe3\x1c\x06\x80\x5a\x62\xa0\xd3\x6c\x1a\x9e\xfb\x83\x48\xab\xd3\xe4\xea\x31\x54\x46\x29\x7d\xae\x3c\x1d\x96\x2b\xab\xe4\x97\x4b\x3f\x04\x86\x74\x39\xb9\xe7\xd2\x7b\xae\x9e\xa5\x34\xc9\xf3\xc1\xc1\x41\xb2\x88\x79\xfd\x2e\x04\x17\xec\x54\x44\xd3\x7a\xc5\xb3\xd9\x41\xfb\xe8\xf6\x41\xfb\x54\xbd\xe2\xf7\x10\xc3\x04\xf0\x40\x29\xf7\x97\x5a\xf7\x53\x9f\x40\x39\x4e\x94\x05\xf2\x4f\x08\x95\x47\x38\x0e\x04\xb1\xd4\x75\x4b\x6c\xe1\x33\x83\x78\xf7\x80\x3e\x08\x61\xdc\x16\x6c\x0f\x88\x48\x1c\xd1\xef\xe7\x2e\x75\x44\xb7\x8b\x1f\xa5\x2b\x1e\x84\xf5\x19\x13\x88\xb8\x6e\xe7\x14\x8b\x55\xc6\xb7\x01\x14\xe2\xf8\x86\x33\xfb\x83\x29\xc5\xc9\xdb\x2e\x3d\x01\xc6\x34\xb8\x3a\x3d\xb2\x1f\xdf\x7b\x7d\xf5\x98\x69\x30\x23\x71\x97\x91\xff\x2e\x48\x69\x14\x06\x5c\x09\xdc\x4b\x3f\x1d\xb7\x28\x7d\x79\xe6\x99\x67\x8c\xdf\x26\x2f\x24\x23\x12\xa4\x18\x51\xd7\xe4\xf2\x4d\x00\x63\xea\x76\x4c\xc5\x6b\x22\xdc\x05\x93\x48\x25\x4b\xc1\x8f\xe2\xb5\x12\x5a\xea\x94\x80\x22\x2f\x85\x79\xfc\xf1\xc7\x73\xed\xee\xb5\x43\x00\x3d\x7d\x52\x78\xd8\xac\xe0\x16\xea\xe6\xac\xb6\xf3\x5b\x7b\x67\x3f\xde\x9f\xad\x5e\x5a\x56\x3c\xf7\xa0\x45\x4b\xb6\x7b\xd2\x3e\x2d\x03\x10\x36\x18\x32\x38\x8c\x00\x35\x3f\x92\xa1\x04\x41\xc9\x75\x3c\xc4\xb8\x96\xd0\x9c\x8c\xdb\xbb\xb7\x77\xcf\x5e\x70\xf6\x2d\xfe\x1e\xba\xc4\x20\xd5\xfd\x86\x3e\xf1\x76\x2d\x62\xcd\xd2\xeb\x82\x07\x74\x4b\x22\x5a\xb4\x06\x8b\xfb\xb3\xe6\xee\x4b\x97\x17\xdf\x3d\x9a\xb4\xb7\x2d\xc1\x26\x7c\x83\x40\x10\x89\x34\x46\xaa\x6b\x15\x3f\xd2\x8f\xdd\x97\x9e\xc6\x10\x31\xf3\xc5\x5c\x97\x40\xae\x31\xbc\xbc\xb7\xbd\x7a\xe9\xb5\x8b\x67\x2f\x1e\x4f\x9a\x03\x06\x2f\x99\xbb\x3f\xd1\x1f\x5e\x1d\xdb\x5b\x2f\x9e\x7c\xf2\xc9\x12\x23\x8d\x8c\xff\x20\x93\xa8\x27\xad\xe6\x7e\x87\x44\xe6\xc5\xc5\x4e\xee\xdd\x16\x7e\xa1\xac\x51\x4b\xf5\xb4\x31\xdb\x75\x6b\x02\xda\x76\x94\xa6\x8b\x4c\x91\xc0\x01\x08\x84\xcc\x03\x14\x86\xef\x68\x8e\x46\x47\x1a\x68\x80\x13\x8e\x2d\x47\x8a\x58\x94\x21\x39\xc3\x08\x84\xa2\x8b\x3a\xf8\x48\x1a\x5b\xc3\xcb\x65\xc5\xf3\xc6\xed\x63\x77\x7f\xe1\x9e\x22\xd7\xee\x04\x75\x02\xc0\x67\x3e\xf3\x99\x1e\xb1\x74\x4e\x4b\x33\xa4\xbf\x7e\xce\x49\x10\x7a\x80\xb2\x90\xd6\x3b\x09\x00\x86\x08\x93\x96\x52\x0c\x8d\x8b\x52\xbd\xb5\x5f\x49\xca\xb1\x6e\x40\xcb\xf7\x52\xfd\x86\xd2\xf4\x08\xf5\x06\xe9\x86\x5c\x92\xd7\x2f\xfe\xe2\x2f\x1a\x2d\x6d\x11\x63\xbf\xf6\x76\x2d\x60\x1e\x4f\x0f\xed\xd5\x9d\xfd\xf6\xe7\xc7\xa7\xfc\x04\xb5\xbc\x0b\x20\x21\x3e\xd2\xf8\x95\xd9\x49\x22\xa2\xc5\x6b\x00\xf9\xc1\xe9\x2d\xa9\x62\x06\xc9\x30\x0f\x7c\x82\xa4\x53\x73\x9c\x7e\x92\xb9\x3c\xa4\x3d\x49\x87\xab\x3c\xb1\xf4\x75\xe1\x70\xd1\x9d\x07\x50\x21\xbe\x4f\x1e\x08\xab\x5f\xa4\x3a\x5b\x17\xaf\xa5\xf2\x71\xa2\x04\x29\x56\x22\x59\x6c\x9c\xd4\x85\xc2\x56\x6c\x2f\x85\x91\x67\x71\xf8\x33\x99\xd8\x23\xaf\x71\xbd\xe4\xc7\x76\xef\x36\xbf\x3c\x3d\x69\x2f\x13\xc3\x9f\xeb\x32\xa6\xee\xf0\xbf\xf0\x0d\xbd\x7d\x9e\x97\x1e\xd7\x75\x2d\xc7\x48\x6e\x6e\x0e\xcd\x55\xff\xae\xe9\x6a\x00\x06\x0a\xd4\x02\x48\xd4\x3e\x01\x60\xb8\xed\xdc\x63\x22\x1a\x1b\x8b\xd9\xa4\x35\xb3\xe9\xca\xec\xcc\x96\x66\x77\x67\x59\xed\x6d\x9f\x55\x7b\x3b\xcb\x7a\x6f\xfb\xcc\xec\xcd\x96\x66\x77\x6b\x69\x76\xa7\x2b\xb3\x33\x6e\x68\xc7\x58\x4c\xc1\x09\x90\xd1\x20\xa8\xa7\x62\x72\xef\xb8\x71\xe3\x46\xae\x9d\x49\x3f\xfc\xf9\x9f\xff\x79\x78\xf6\x8b\xb7\xa7\x7b\x48\x17\xe9\x06\xc0\x92\x09\x8b\x3b\x3b\xab\x3b\xb7\xf6\xce\xbe\x7f\x34\x6d\x6e\x5b\x72\x3b\xbc\x4a\x44\x37\x04\x92\x1a\xca\xa5\x85\xb8\x8b\x1b\x04\x97\x90\x63\x3f\x22\xf4\xbc\x85\x8b\x8c\xcd\x58\x56\x7c\x7c\x77\x7b\xf5\xd2\xad\x8b\x67\x3f\x6e\x0c\xc2\x5d\x74\xea\xcf\x2a\xa0\x12\xc0\x9b\x94\x3a\xf8\xfe\xf0\xc0\x47\x00\xa0\x25\x80\x45\x63\x78\xfe\xe3\x2b\xf3\x1f\xbc\x7a\xe9\xf4\x5b\xa7\x23\x7b\xc0\x80\x0d\x73\xa0\x87\xf4\x55\xeb\xfd\xbc\x91\x60\x84\x63\x9f\x65\xe9\x45\x9a\x3c\x7d\x27\x39\x03\x01\x4b\x6c\x1f\x4c\x9b\x5b\x2f\x5f\x5a\x7c\xf7\xcd\x0b\xcb\xd7\xce\x6a\x3e\x06\xb0\x20\xa2\xa5\xb0\xd7\xe9\x31\x77\xbe\xdd\x37\x6f\xde\xb4\x8b\xc5\xc2\x67\x5f\x5a\xa3\x4a\x6b\x5f\x6f\x7d\xa8\x33\x11\x37\x95\x08\x24\x99\x3f\xff\xfc\xf3\xfa\x03\x25\xc6\xb9\x62\x32\x98\x51\x4b\xe3\x49\x43\xb3\xda\x62\x46\x9e\xb2\x05\x0e\xb1\xbf\x05\xcb\xdb\x11\x0a\x30\x8c\x94\x25\xf5\xf8\x59\x1c\x26\xe7\xc5\x67\xe0\x20\x3a\x0e\x14\x5f\x70\x9b\x29\x77\x49\xaa\x0c\xe9\xd2\xdb\xa9\x19\xb0\x2d\xf1\xf2\xac\xb2\xf3\x65\x15\x6e\x85\xb6\x40\x24\xec\x72\x30\xfb\xdf\x2f\x7e\xf1\x8b\xe6\xcf\xfe\xec\xcf\xb4\xb4\xa0\x24\x39\x58\xe7\x3f\x44\x48\x73\x20\x26\x97\x5e\xa6\x91\xe1\x39\xff\xf3\xc4\xcd\xb5\x2f\x37\x40\x4b\x63\x6c\xa8\x7e\xd2\xaf\x04\x60\x72\x52\x99\x52\x7f\x97\xe2\xad\x6b\x47\x2f\xed\x57\xbf\xfa\x55\xfb\xc4\x13\x4f\xc8\xeb\xdc\x83\x6d\x8b\x9b\x03\x63\x00\x75\xbd\xe4\xd9\xec\x41\xfb\xe8\xd6\x51\xfb\x91\xaa\xe1\x47\x92\xf1\x1a\xc4\x20\x71\xd0\x07\x42\x98\xb2\x8c\x51\xec\xe8\x10\x43\x98\x09\xec\xdf\x7d\x18\xc7\x79\x21\xf2\xd0\xb6\x58\x31\x6f\x3f\xd8\x25\x47\xc7\xe1\x2c\x09\x7f\x58\x5d\xef\x7c\x0c\xa9\x03\x82\x07\x24\xf9\xad\x90\xfe\x2c\x99\x30\x3f\x05\xe2\x11\x58\x4a\x88\xb3\xc5\x05\x8e\x61\xde\x4b\x09\x0e\x07\xbf\xd0\x3e\xb8\x3a\x5a\xec\x4d\x4e\xec\x47\x2f\xde\x6e\xfe\xe3\x6c\xcb\x1c\xb7\x63\x2c\x41\xd4\x38\x20\xe9\x69\x97\x27\xbe\xc1\x35\x4d\xb3\x09\x0d\x1c\xa2\x99\xbd\x31\xa5\x0c\x59\x7b\xc4\x5b\x48\xe5\x3a\x30\xc1\x30\x06\x54\x1b\x8b\x9a\x98\xea\x4b\xf3\x7a\xf6\xf0\xd1\x78\x77\xf7\xac\xde\xd9\x5a\x99\x9d\x71\x6b\xa6\x55\x77\xac\x84\xb1\xc4\xcd\xb2\xb2\xf3\x55\xc5\x8b\x55\x65\x97\x47\xe3\xf6\xf8\xcd\xdd\xe5\xe1\x83\x69\x33\x6f\x0c\x37\x96\x60\xe1\x16\x1a\x01\x28\x3c\x93\x19\xea\xe8\xc2\x0c\x10\x55\x67\xe3\xf1\xd8\x2c\x97\xcb\xde\xbc\xfa\xc3\x3f\xfc\x43\xb3\xbd\xbd\xed\xd3\xc9\xf4\x81\x99\x13\x7f\x0b\x00\xd3\xb3\x91\x3d\x7e\xf5\xd2\xe2\xc7\x97\x4f\xeb\xeb\xb3\x55\x75\x79\xb6\x34\x97\xe3\x1c\x48\xe9\xaf\x97\x05\xf8\x4f\x1e\xc3\x34\x05\x57\xfe\x5e\x72\x20\x24\xed\x2c\xf2\x29\x39\x3f\x87\x5a\xc2\xf2\xc1\xb4\xb9\xfd\xda\xde\xd9\xf7\xef\x6e\xaf\xee\xa2\x53\x13\x2d\x89\x48\x1e\x7d\x91\x35\x46\x55\x5b\xc4\xa1\xe2\x48\xd5\xca\xd2\xff\x31\x61\x71\x32\xb6\x07\xff\x79\xed\xe4\x1b\xb3\x65\x7d\xf9\xfa\xc1\xf8\x23\x93\xc6\xec\x64\xb1\x06\xf5\x9b\x10\xf8\x08\x17\x16\xe6\x1c\xf5\x13\xc9\x3e\x56\x3b\xa3\x02\x8d\xf0\x42\x01\x06\x30\x1f\xb7\xfb\xaf\x5c\x5a\x7c\xeb\xc7\x0f\xcd\x7f\x70\x32\x6e\x0f\xe0\x40\x8b\xaf\xbb\x00\x2f\x09\x90\x93\xf3\xfe\xfb\xdf\xff\x7e\x6e\x6d\xca\xbd\x63\x20\xcc\x02\xe9\x76\xe8\x9c\x2b\x71\xf5\x32\x0c\x00\xec\x93\x4f\x3e\x69\x9e\x7f\xfe\xf9\x9c\x15\x71\x20\xf4\x14\xb6\x42\x53\x3d\x69\xcc\xac\xb2\x34\x95\x44\xca\x0f\xc3\x48\x93\x23\x8c\x08\x4f\x72\xc7\x84\x54\xc3\x64\xd3\x09\xae\x52\x42\x12\xf9\xd1\xd9\xfd\x93\x0c\xee\xfc\xb8\x96\x52\x39\x26\xd8\x55\xcd\x8b\x65\x6d\xe7\x8d\x61\x29\x1e\xeb\x89\x4c\xe5\xaf\x03\x2d\xb2\x4f\xe5\x73\x8e\xe8\x95\x3e\xe8\xd0\xf3\x26\xf9\x96\xd2\xe4\xfc\x4b\x00\x6a\xd3\x3c\xd6\x95\xb7\x2e\xdd\xa6\xe5\x6c\x9a\x6e\x53\xbf\x52\x5e\x83\x5c\xb7\xf8\xde\xbd\xeb\x2e\x9c\xa8\x7e\x3c\x3d\xb6\x57\x66\x87\xf6\xbf\xd5\x67\x78\x94\x98\xc7\xc9\xe8\x17\xaa\x99\xde\x38\x14\xf6\x21\x11\xd1\x8b\x79\x20\xf0\x86\x36\x05\x4b\x72\x8b\x18\x41\xf8\x09\x9b\x98\x44\x04\xcd\x0e\x4c\x44\x75\x55\x17\x2f\x4a\x48\xbb\xb2\x04\x89\x15\xf9\x32\x28\xd9\x62\xd9\x4d\x37\xcd\x08\x08\x25\x0f\xcb\x72\x22\x46\x09\xbb\x00\x7b\xed\x4d\x0a\x4b\xb1\x9c\x78\xae\x1b\xbc\x67\xfb\xa0\xbd\x31\x39\xb5\x2f\x9e\xd6\xd5\x9c\x2b\x2c\x11\x99\x37\x0b\x08\x3b\x3c\x07\x66\x9e\x79\xe6\x19\xf3\x97\x7f\xf9\x97\x38\x3a\x3a\x2a\xd1\xc0\xd2\x5c\x49\x98\x85\x9f\xfb\xb9\x9f\x33\xdf\xf9\xce\x77\x24\x30\x00\x52\xd0\x12\xa4\x72\xf2\x99\x99\xeb\x9a\xa9\xbe\x34\x1f\x4d\xdf\x7d\x7f\x7a\xe5\x6d\xc7\xa3\x77\x5d\x3c\xad\xdf\x3f\x5b\x55\xef\xab\x5b\xba\x56\x31\x5d\x36\x8c\x1d\xc0\xdf\xba\xcc\x4b\x4b\x98\x33\xf1\xdc\x12\x1f\x37\x06\xb7\x4f\x47\xf6\x27\x47\x93\xe6\xa5\x7b\xdb\xab\x5b\xaf\x5d\x3c\xbb\xf3\xd6\xce\xea\x78\x31\xb2\x72\xf1\x94\xe7\x4e\x49\x17\x6c\x33\x00\xe0\x4f\xfe\xe4\x4f\x70\xf3\xe6\xcd\x5e\xa4\x2f\x7f\xf9\xcb\x80\x03\x38\x8a\x59\x6b\x80\x70\x17\x57\xb2\x48\x03\x58\xec\x6f\xad\xee\xbe\x74\x69\xf1\xdd\x9d\xb3\xfa\xf2\x23\x0f\xc6\xd3\x51\x4b\x33\x01\x3b\x83\x93\x70\x46\x9e\xe1\xc5\xbd\x38\xca\x71\xa4\xeb\xd1\x14\xa0\xe0\x14\x73\xcc\x80\x3d\x99\x34\x77\x5f\xbd\xb4\xf8\xee\x4b\x97\x4e\x7f\xdc\x18\x5e\x10\x68\x81\x0e\x78\x85\x7e\x53\xd2\xf5\x64\x2c\xde\xbc\x79\xd3\x3a\xdb\xa5\x40\xc7\x05\xd0\xf1\xfd\x51\xfb\xfe\x70\xcf\xe3\xbb\x3b\xab\x37\xbe\x7d\xed\xf8\xdf\xc6\xcd\x85\xd9\xc3\x47\xe3\xc7\xc6\xae\x5f\x12\x3b\x37\xa4\xbc\x8b\xee\x84\x94\x79\x4f\xda\x05\xdd\xc7\x29\xd3\x94\x1e\x8f\x00\x00\xcb\x9a\x8f\x6f\xed\x9d\x7d\xeb\xbb\xd7\x8e\xbf\x7d\x34\x6d\xf7\x99\x30\x07\xb0\x60\x66\x0f\x5e\x7a\x36\x2e\x4a\x5d\xe8\xdd\x10\xc3\xba\xa9\x90\x04\xc0\xfa\xed\xd0\x9b\x48\x63\x0c\x00\x3c\xff\xfc\xf3\x61\xfb\xa7\xb2\x45\x09\xbb\x2a\xfc\x9f\x61\xaa\x2b\x4b\x63\xc3\x6e\xdb\xa7\x1b\x60\xd1\x10\x31\xed\xe8\x3e\xba\x4c\xa1\x85\xff\x80\xe1\x63\x52\xff\xa3\x46\xc3\x3e\x35\x74\x85\x5f\x87\x61\x7a\xd4\xbe\xe7\x08\x80\x25\x6e\x56\x86\x17\xab\x8a\xcf\x00\xc8\xf3\x0a\x82\x7a\x28\xd3\x57\xde\x95\x24\x26\xeb\x80\x62\x4e\x8a\xa2\xf3\x19\x4a\x23\xcb\x28\x95\x33\xe4\x72\x52\x90\x52\x9d\x75\xfd\x86\xd2\xe7\xf2\x1a\xaa\xe7\xa6\x69\x36\xad\x83\xae\x87\xf4\x93\x69\x72\xbf\x49\x7a\x79\x00\x23\xc7\x93\x59\x93\xfb\x88\xaa\x25\xef\xcc\x0e\xda\xf7\x4f\x8e\xda\x27\x4c\xcb\x57\xe3\x51\xf6\x48\xc6\xa3\xdc\x1a\x1c\x06\x34\x10\xa4\x18\x41\xda\x20\x28\x2e\x89\x09\xd0\x71\x9c\x11\x10\x91\x9e\x14\xb1\x40\x27\x7a\x56\x71\x3c\xa8\x97\x9c\xad\x5f\x0c\x3c\xc8\xf1\x31\x5c\x59\x79\xc0\x9f\xf0\xcc\xf0\xd2\x4f\x39\xcd\x92\xd9\x4c\xd1\xea\x21\x61\x84\xd2\xea\xc4\xf6\x06\x75\x56\x9c\xbb\x29\x61\x76\x4d\xb1\x98\x4d\xe6\xf6\xc9\xdd\x3b\xed\x37\x57\x53\x73\xb0\xaa\x68\x41\xd1\x50\x52\x9e\x39\x15\xbe\xeb\x73\xcf\x3d\x67\x2f\x5c\xb8\x90\x1b\x8b\xfa\x59\xfb\x25\x61\x1e\xb4\xe8\x2d\xf2\x48\x01\x4b\x50\xdd\x10\x51\x3d\x59\x99\xf1\x23\x87\xe3\xcb\x1f\x78\x6b\xf6\xd8\x43\x27\xf5\xcf\x6f\xad\xaa\xc7\x27\x8d\x79\xac\xb6\xf4\x48\x07\x56\x72\x8c\x27\xa9\x5f\x34\x3b\x67\x66\x7e\x69\x5e\xdf\x7e\xfb\xe1\xf8\xa5\xf7\xdf\xdd\xfa\xfe\xfe\xac\xf9\xcf\x9f\x5c\x3e\xfd\xee\xcb\x97\x16\xb7\xe7\x13\xab\xed\x13\x12\xa9\x93\x07\x2d\x19\x83\xe5\xec\xb3\x62\xd6\x2c\xa2\x6d\x8b\x6f\xa3\x97\xba\x8c\x5b\x83\xe3\x5b\x7b\x67\x3f\x19\x77\xe7\x79\x8d\x1f\x3e\x1c\x3f\x36\x16\x5b\x81\x73\xed\xca\xd9\xc2\x48\x00\x93\x2e\xe4\x82\x5d\xed\x99\x12\xa8\x35\x22\x05\x2d\x98\x8f\xed\xc1\xcb\x97\xce\xbe\xfd\xc2\x95\xd3\x6f\x1e\x4d\xdb\x7d\x22\x9a\xbb\x7a\x7b\xc0\xd1\xdb\x4d\xa3\xec\x3a\x7a\x4e\x4a\x67\x04\x90\xab\x11\x41\x4b\x0d\x60\xce\xc0\xf8\xd5\xbd\xb3\x97\xeb\x96\xfe\xef\x0f\x55\xdb\xcd\xdb\x0f\xc7\x8f\x4d\x57\x66\xd7\x64\xc4\x2c\xb2\x0d\x69\x7b\xd4\xbc\x51\xf1\xb5\xbf\xf4\x09\xbb\x66\xc1\x58\x8c\xec\xc1\xcb\x97\x16\xcf\xff\xc7\xf5\xa3\x7f\xdb\x9f\x35\x6f\x58\xc2\x31\x80\x39\x80\x39\x11\x2d\x90\x4a\x5c\x12\xcc\x90\x91\xe6\x9e\x0b\x9c\x0c\xa5\xab\x32\xed\xc9\xbd\x0f\xb9\x10\xef\xe9\xa7\x9f\x26\x44\xd5\x50\xe5\xf2\xa9\x88\x68\x04\x60\x44\x44\x53\x00\xd3\x0b\x67\xd5\xa5\x6b\x47\x93\xc7\x1e\x9a\x8f\x3e\x50\x5b\xda\x49\x45\x5a\x91\xf0\x84\x8f\x90\xa0\x47\x11\x4e\x82\x18\x8a\x8a\x6b\x17\x07\xe6\xf0\x19\x31\x04\x0c\xa3\x72\xa1\x8e\x6a\x0c\x2f\x0e\x66\xab\x97\xde\xb8\x78\xf6\x83\x07\xb3\xf6\x2d\x00\xa7\x44\xb4\x60\xe6\x33\x00\x67\x00\x56\xee\x63\xb6\x14\x59\x51\xde\xdd\xdd\xa5\x97\x5e\x7a\x29\xb7\xf0\xf9\x2a\xf8\x30\x39\xb7\x34\x18\xc8\x81\x68\xad\x44\x90\xcf\x7a\x6e\xe7\xfc\x8c\xfa\xd5\xf5\xca\xd1\x8b\x12\x88\xf1\x75\xb2\xea\x5d\x96\x6d\x32\xcf\x3a\x4d\xae\x9e\xba\xbe\xba\x1f\x6c\xa1\xae\xf2\x33\x5b\xf4\xdb\xea\x7f\x0d\xd2\xe1\x67\x55\x78\xae\x4f\xf1\xcb\xbf\xfc\xcb\xf4\xea\xab\xaf\xf2\x8d\x1b\x37\xfc\x1c\x30\x00\x88\x88\x2a\x27\x65\x19\x11\xd1\x84\x99\xb7\x66\x87\xf6\xe1\x8b\x77\x9a\x4f\x6c\x1d\xd9\xa7\x8d\xe5\x4b\xe4\x0d\x3b\x7a\x6b\x8e\x00\x2d\xb2\x09\xdd\x40\x75\xe0\x84\x90\x18\xa9\x40\x3d\x8a\xb4\x52\xf3\x13\xf2\xf3\x12\x15\x3f\x93\x12\x95\x0d\x00\x0d\xe2\xa3\xa1\x8b\xeb\x88\x78\x76\x52\xcc\x3f\x37\x24\x63\x3e\xbd\xdd\x0d\xa2\x3e\xe1\x0c\x98\xc4\x3a\x50\xe4\x25\x90\x95\x84\x54\xa9\xe4\x45\xf4\x07\x03\x1c\x80\x13\x40\x4c\x5b\x6c\x70\x77\x71\xa1\xba\xd5\x8c\xe9\x18\x26\x99\xa3\x61\xd1\x66\x66\xfb\xf4\xd3\x4f\xd3\x8d\x1b\x37\xe8\xab\x5f\xfd\xea\x79\x08\x6e\x6e\xfe\xe0\xd9\x67\x9f\x35\x37\x6e\xdc\x20\x3f\x2e\x5c\xbc\xca\xfd\x8d\xe4\xdf\xa8\xa1\xd9\x3b\x1e\x4c\xae\x3c\xf1\xc6\xce\xcf\x7f\xf0\xce\xec\x33\x0f\x1f\x8d\x3f\xbb\xb3\xac\x3f\x3d\x6d\xcc\xcf\xd5\x4c\x6f\x23\x60\x06\x90\xe9\x4c\x91\xdd\x7f\xee\x26\x70\x4f\xbf\xe2\xbf\x64\x08\x98\x54\x4c\x17\x47\xad\x79\xf7\xa4\x31\x8f\x6d\x2f\xab\xf7\x3f\x34\x1f\xbd\xfd\xa1\x93\xf1\xb8\xb6\xb4\x7c\x30\x6d\xce\xac\xe9\x8d\xbe\xb0\x16\xba\x05\x88\x6e\xdc\xb8\x81\xaf\x7f\xfd\xeb\xc5\x75\xe1\xeb\x5f\xff\xba\x1f\xff\xf2\xcf\x88\xe7\x0a\x00\x05\x35\x18\xa1\x6a\x0c\xe3\x74\x6c\x97\x96\x60\x67\xab\x6a\x6b\x6b\x65\x2e\x56\x4c\x95\xff\x8a\xb2\x42\x70\x9e\x7e\x48\xf8\xa1\xab\x01\x70\x0f\x9b\xbb\x74\x7d\x73\x83\x38\x5c\x25\xb3\x3b\x1f\xb5\x07\xaf\x5e\x5a\xfc\xe7\x8f\xae\x9e\x3e\xff\xe6\x85\xe5\x6b\x96\x70\x84\x4e\xca\x70\x8c\x0e\x64\x2c\xe0\x68\x3c\xba\x31\xd3\x22\xd2\x04\xeb\xfb\x02\x08\x6b\x22\x98\x99\x29\x0e\x50\x72\xfd\x20\x6d\x9c\xba\xbe\x12\x9f\xf3\x78\xda\x9e\x9e\x8e\xec\x49\x65\x41\xd3\xa6\x9a\x8d\xba\x1d\x58\xc9\x8c\x48\x67\x56\x7e\xfd\xd3\x1d\xa9\xd3\xe8\xb4\x0c\xc0\x12\xdb\xe3\x49\xfb\xd6\x4b\x0f\x2d\xbe\xf9\xcd\x77\x1c\xff\x3f\x77\xb7\x57\xa1\x1f\x98\xf9\x04\xdd\x7a\x77\x2a\xfa\x63\xe5\xfe\x5a\xa4\x52\x17\xbe\x79\xf3\xa6\xad\xeb\xda\x58\x6b\xcf\x83\x2b\x06\xdd\x26\xdc\xb3\x8e\xab\xd3\x1b\x20\xb1\x18\xce\x49\x10\x82\xb8\x9c\x88\x50\x31\xd5\xb5\xa5\x31\x81\x6a\xad\xd6\xc9\xd1\xef\x54\xfd\xe4\x89\x35\x05\x32\xe7\xe3\xa6\x1f\x53\x5e\x9a\x28\x74\xf3\xe8\x23\x34\x20\xdf\x9b\x7d\x3f\xa1\x4e\x22\x5e\x76\x7a\x64\x5e\x00\x3d\x6b\x71\xcd\x79\x80\xdc\x89\x8a\xff\xf4\x4f\xff\xa4\x39\xb2\x1c\x37\x37\xf4\x5b\x7a\xd6\x79\xe8\xe7\x75\x6e\x48\x9d\xa3\xf3\xcc\xd5\x61\xa8\x4e\xeb\xde\x4b\x69\xc2\xf8\x5a\x53\xdf\x5c\xfa\x9c\xd4\x30\xf7\x9e\xcb\x77\xd3\xbe\x08\x65\xfd\xeb\xbf\xfe\x6b\xd0\x69\x4b\x55\x91\x68\xc3\x18\xc0\xb8\x6a\x31\xdd\x3a\x6c\xaf\x4f\x4e\xec\xe3\xa6\xc5\xe5\x60\x75\x97\xdd\x41\xc1\x0e\x54\x38\x2b\x8e\x04\x18\xb8\xdf\x60\x81\xe8\xe3\xc5\xf4\xc1\x5e\xd6\x83\x8a\x10\x24\x41\x90\x7b\xa6\xae\x2c\xbf\x43\xc7\xa7\x8f\xf1\x45\xde\xc1\xa2\x96\x53\x30\xc4\xaa\x6e\xa0\x6e\x45\xf0\x15\x61\x7f\xf1\xa2\x6e\xa2\xdf\x0f\xe4\x56\x10\x27\x39\x61\xb8\x1d\x43\x0c\x24\x17\x35\x46\xb8\x92\xec\x7e\x60\x76\x26\xfb\x2e\x2e\x87\x5a\x44\xca\x42\x16\x3b\x93\x13\xfe\xf0\xec\xa0\x7d\x57\xbd\xe4\x9d\x60\x2c\x8d\xe4\x5c\x14\xa0\x3c\xf6\xd6\xd1\xc4\x10\xf6\xf1\x8f\x7f\x3c\x84\x4b\xa9\xb3\x32\x06\x0e\x3b\x84\x98\x79\x7a\x69\x5e\xef\xfd\xb7\x37\xb6\x9f\x78\xea\xd6\x85\xcf\xbd\xef\xde\xf4\x8b\x6f\x3b\x19\xfd\xee\xd6\xca\x3c\x5d\x5b\xba\x42\xa0\x29\x40\xb5\xb8\x3f\x47\x7c\x93\xee\x7b\xb0\xe8\x1f\x1f\xea\xda\x5f\x1b\xd0\xb8\x62\xba\x32\x5d\x99\x27\x2e\xcd\xeb\xff\xed\xdd\xf7\x27\x5f\xfc\xf9\xd7\xb6\xff\x8f\x8f\xbe\xbc\xfb\xf1\x2b\x47\xa3\x3d\x00\x53\xf7\x27\x2f\xa4\x0c\xbb\xaf\x98\x39\x18\x9e\x7f\xf1\x8b\x5f\x4c\xfa\xe1\xd2\xa5\x4b\x52\xda\x6e\xc5\x5f\x38\x55\x15\xdd\xd6\xdf\xa5\xe3\xd4\x17\x00\xe6\x20\xcc\x4f\x3a\xfb\x89\x1f\xfd\xe8\xea\xfc\xf9\x3b\x3b\xab\x17\x97\x95\x5d\x88\xbc\x93\x51\xed\xe7\x40\x62\xe6\xa4\x9c\xc4\xe6\x61\xa8\x91\x87\xba\x22\x5f\x37\x78\xc2\x14\x04\x70\x32\x6e\xf7\x5f\xbe\xb4\xf8\xd6\x0f\xaf\xce\x9f\xbf\x7d\xe1\xec\xe5\xc6\xf0\xa1\x03\x2d\x7e\xeb\xaf\x97\x32\x24\x3b\x8a\xdc\x33\x80\x4e\x45\xf4\xf9\xcf\x7f\xde\xf8\x67\x65\x43\x12\xe2\x0b\x35\xdd\x52\xe4\xed\xfb\xe5\x78\x59\xf1\xe1\xeb\x17\x97\x2f\x7f\xf7\xed\xf3\x6f\xbc\x70\xe5\xf4\xf9\xfd\xed\xd5\xad\xa5\xb1\xcb\xd0\x0a\x4e\xa7\x92\xfc\x4d\xda\x27\xda\x98\xb6\x5f\x3c\xc3\x4f\x53\xc6\x59\x6d\xe7\x77\x76\x56\x2f\xfd\xe0\xe1\x93\xaf\x7d\xeb\xed\xc7\xdf\xb8\xb7\xbd\xea\x24\x2d\x0e\xbc\x11\xd1\xdc\x31\xe9\xbe\xde\xfe\xfb\x7a\xd0\xef\xb3\x0d\xb4\x72\x8d\xad\xd8\xba\x79\xd6\x73\x95\x7a\xd7\xeb\x7a\xe9\x59\xfa\x31\x00\xdc\xbe\x7d\x9b\x9f\x7a\xea\x29\x8f\xb0\x01\x24\x46\x66\x23\x66\x1e\x51\xb7\x75\x6f\x6b\x6f\x31\xba\xf2\xf6\xa3\xc9\xe3\x7b\xa7\xf5\x7b\x6b\xc6\x96\x84\xc2\x39\x94\xad\x59\x5d\x19\xae\x79\xac\xf0\xee\x29\x36\x1c\x1f\x27\x10\x75\x86\x2f\x73\xeb\x81\xb8\xab\xa8\xc7\x17\xa6\x6e\x59\xf1\xd1\xdd\x9d\xd5\x8b\xb7\x77\x97\x3f\x3a\xee\x8c\x95\xa4\xc4\x65\x89\x0e\x7d\x7a\x20\xc3\x70\xc8\xf3\x53\x9f\xfa\x94\x79\xe9\xa5\x97\x72\xec\xa8\xf4\x33\xe8\x7f\x0b\xe9\xa7\xb9\x3a\x2d\x2d\x29\xc5\x5d\x97\x47\x29\x4d\xa9\x5e\x43\x79\x40\xf9\xeb\x34\xb9\xba\xea\x70\x8b\x72\xdd\x4b\x69\xe2\x2a\xde\x97\x9e\xe8\xbf\xdc\x98\x5e\xd7\xde\x5e\xb9\x1f\xfd\xe8\x47\xe9\xb5\xd7\x5e\x63\xcf\x51\x73\x3c\x21\xb7\x72\xe3\x7e\x04\x60\x02\x60\x32\x3a\xb5\x97\x2e\xde\x69\x3f\x36\x7b\x60\x3f\x56\xb5\xb8\x42\xc1\xa0\x43\xb0\x83\x40\x5a\x4d\x79\xf9\x61\x20\xda\xde\xe6\x24\x61\xe2\x04\xae\x71\x3b\x87\xdc\x73\x37\x1d\x3c\x48\x89\x93\x2d\xaa\x87\x7c\x7e\xfe\x0c\x17\x69\xd8\xab\xf2\xf6\x12\xa2\xc4\x80\xd8\x9d\x44\x1d\xc0\x92\x64\xef\x22\x18\x49\xd5\x3f\x1c\x51\x95\x34\x4a\xf1\xc0\x84\xfc\x71\xe1\x3e\x2e\x44\x3d\x38\xb4\xd1\x97\x43\x32\x7f\x12\x45\x8b\x99\xee\x4a\x33\xed\x08\xaf\x9f\xee\x56\xaf\xb5\x13\x73\x02\x42\x8b\x4e\xea\xe2\xb9\x45\x96\xb6\x0b\x37\x6e\xdc\x20\x21\x69\xc8\xd1\xc4\x9c\xe4\x8e\x6f\xdd\xba\xc5\x40\xb8\x15\x3c\x00\x21\x49\x17\xdd\xd8\x18\x93\xc5\xe4\xe1\x93\xc9\x43\x1f\xbc\x33\x7b\xfa\x7d\xf7\x66\xbf\x75\xe5\x64\xfc\xab\x5b\xab\xea\xf1\x8a\xe9\x21\x03\x1a\x51\x14\x6c\xa5\xe6\x47\x90\xcf\x1e\x9e\xc9\x37\xed\x08\x06\x54\x1b\xc6\x6c\x64\xcd\x43\x5b\x4d\x75\x7d\xe7\xac\xba\xba\xbd\xaa\xb9\x31\xf6\xe0\xc1\x56\xbb\x80\x90\x06\x3b\x29\x01\x43\x7c\xd3\x1b\x37\x6e\xc0\x18\x13\xa4\x0a\x75\x5d\xd3\x7c\x3e\x07\x00\xfe\xc6\x37\xbe\x21\xa5\x2e\x8c\x6e\x1e\xb0\x9b\x13\x44\xdd\x0b\x89\xfe\x20\x10\xcc\xaa\xb2\xed\xe9\xc8\xae\x96\xb5\x3d\xad\x2d\x99\x49\x63\x66\x23\x6b\x26\xfe\x8b\x07\x62\xa9\x86\x70\xd1\xc9\xe1\xc4\x7e\x88\xc5\x31\x49\xa2\x3d\x84\x4e\xc2\xf0\x60\xab\x79\xf3\xe5\xcb\x8b\xef\xfc\xe8\xea\xe9\x7f\xde\xde\x5d\xbe\x72\x56\xf3\x7d\x44\xd5\xc8\x89\xfb\x4d\x24\x0c\x6e\xcc\x78\x7a\x63\x89\x08\x5f\xff\xfa\xd7\xf9\xde\xbd\x7b\x74\x7c\x7c\xcc\x40\x94\xba\xa0\x1b\x57\x72\xc2\xca\x4f\x08\xf1\xec\xfb\x08\x2d\xb1\x3d\x1d\xd9\xe5\xc9\xa4\x9d\x2f\x46\x76\x0e\xa2\xa6\x62\xaa\x47\x2d\x8d\x89\xc9\x24\xca\x0a\x95\x99\xef\x3b\x3f\x5d\xb5\xd3\x7d\xd8\x54\x76\x79\x38\x69\xef\xbd\x7e\xf1\xec\x85\x1f\xbd\xed\xf4\x9b\x3f\x79\x68\xf1\xfd\x83\x59\x73\xbb\x35\x38\x04\xe1\x08\x9d\xc4\xe9\x04\xc0\xa9\xff\x23\xa2\x15\x80\x33\x66\xf6\x73\x48\xaa\xcc\x58\xa9\x17\x73\xeb\x8e\xec\x0b\xa8\xb8\x45\x27\x6d\x5c\x80\x61\x5b\x02\x64\xde\xd3\xd2\x63\x4f\x04\xf4\xad\xfc\x0c\x00\x18\x8b\xba\xb2\x18\x13\xa3\xee\x7d\x3f\x61\x63\x92\x03\x31\xb9\x77\x9f\x26\xb1\x91\x11\x06\x47\x09\x04\x51\x71\x7d\x39\x1d\x1d\x4e\xe5\x3f\x31\xff\x7e\xa1\x96\xd0\xac\x0c\x2f\x1a\xc3\xfa\x6e\xa2\x44\xdf\x2b\x77\x59\x09\x3d\xb1\xd6\xa5\xe7\xfc\x7c\x9f\x01\x7d\x09\x40\xce\x3e\x44\xe6\xa3\xe3\x96\xbe\xdb\x3a\x69\x86\x7e\xd6\xf9\xe5\xea\x51\xaa\x9b\x19\x08\xcb\xc5\xd9\xd4\x95\x6c\x53\xd6\xe5\xa3\xfb\x65\x5d\xfd\xb4\xba\x2e\xf4\xdd\xd5\xab\x57\x93\xc3\x17\x85\xf8\x37\xb1\x71\x01\x63\x3a\x99\xf3\xe5\xc9\x89\x7d\xcc\xb4\x7c\x99\x18\x26\xa1\x1e\x19\x54\x1d\xb7\x13\x87\x51\x1a\x09\x2e\x8b\x34\x21\xad\xbc\x8f\x45\x50\x6f\x0f\x28\xd4\x0a\x40\x3a\x4d\x80\x78\xdc\x01\x13\x71\x35\x40\x2a\x97\x97\x79\xb3\xc0\x5d\x5e\x72\x12\xcb\x88\xa0\x03\x29\xb5\x74\x05\x72\xd8\x01\x25\xba\x22\xe0\x94\x2e\x0f\x76\x9d\x11\xfb\x22\xb6\x37\xbe\xb0\x20\x77\xa2\xae\x81\x31\xea\xf2\x32\x0d\x5f\x99\xcc\xed\xa3\x93\xb9\xbd\xba\xdc\x32\xfb\x76\x44\xde\xd6\xa0\xf6\xf6\x2e\x42\x8c\x0f\xac\x9f\x3b\xc5\xb1\x26\x77\x96\x38\x9a\x13\x6c\x58\x5c\x99\xe3\xca\x62\xfa\xc8\x83\xc9\xb5\xf7\xdf\x9d\x3d\xfd\x8e\x83\xc9\xaf\xee\x2e\xaa\xa7\x46\x96\xae\x12\xd3\x58\x72\xca\x39\x3a\x28\x36\x65\x8a\x9e\x28\xaf\xea\x71\x81\x23\x43\x8c\xd9\xa8\xc5\xf5\xdd\xb3\x7a\x67\x74\x9f\xf6\x26\x0d\x3d\x34\xb2\xe6\xff\xfa\xc9\xe5\xd3\xd7\x6d\x57\x6b\x2f\x59\x00\x9c\xe4\x44\xdb\x8a\x00\x45\x6e\x3a\xcc\x2f\xd7\x6e\x7d\x9e\x8b\x07\x48\x06\x40\x6d\x0d\xcc\xe1\xb4\x79\xf3\xe5\xcb\xdc\x2e\x46\x76\x39\x1f\xdb\xe3\x77\x1c\x4c\x1e\xbb\x70\x56\x5d\x31\x0c\x93\xec\x5e\x0b\xe0\x18\x71\x9e\xe8\xfe\x49\xc6\xb2\xf3\x4a\x06\x58\x1c\xd6\xcb\xca\xce\xef\x6d\xaf\x5e\x7f\xe5\xd2\xe2\x87\xaf\xec\x9d\xfd\xf0\xde\xf6\xea\xb5\xb3\xda\xee\x33\x78\x0e\xc6\x5c\xd8\xb7\x48\xdb\x16\xab\xfe\x00\xc4\xf3\x6c\x6e\xdf\xbe\xdd\xf3\x53\xa7\x13\x37\x88\x36\x3f\xc6\x49\xa2\x82\x24\x4e\x02\xff\x55\xc5\xb8\x37\x5b\x35\x8b\x91\x9d\xdf\xdf\x6a\xf6\x1f\x39\x9c\xdc\x79\xfb\xe1\xf8\x5d\x97\xe6\xa3\xab\x93\x86\x76\x6b\x6b\x6a\xdf\x64\xd9\x11\xf2\x5b\x71\x26\xbc\x7b\x65\x2c\x2b\x5e\xcc\xc7\xed\xc1\xfd\xad\xe6\xce\x9b\x17\x96\xb7\xde\xd8\x3d\x7b\xe5\xee\xf6\xea\x8d\xd3\xb1\x3d\xe0\x0e\xb8\x05\xbb\x16\x44\xe0\x16\xec\x7d\xfc\x0e\xab\x5c\x7f\x64\xdc\xd0\x9a\x21\xdd\x20\x0d\x97\x36\x2e\x7e\xa0\xc9\xcf\x2d\xfd\x34\x61\x0f\x73\xe5\x5d\xef\x7a\x97\xf9\xc4\x27\x3e\x41\x17\x2e\x5c\x80\x43\x8a\x0e\xd0\x92\xd7\xe3\x8e\x1d\x67\x31\x25\xd0\xf4\xf2\xe9\xe8\xe1\xb7\x1f\x4e\x9e\xb8\x78\x36\x7a\xb7\x61\x1a\x25\x86\x44\x5e\x77\x9e\xb1\x02\xd7\x76\xb3\xf2\x1b\x04\xc6\x0d\x71\xe2\x76\xb4\x53\x19\x01\x52\xe4\x47\xd4\x5c\x80\x1a\xd7\xaa\x80\x74\x4d\x39\xab\xed\xfd\x3b\x17\x56\x2f\xbc\x79\x61\xf9\x93\xb3\x11\x1f\x3a\x0b\x6b\x8f\x40\x97\x0e\x89\x37\x44\xc4\xfe\x4f\xa0\x4f\xb9\xdc\x48\x4e\x4d\x3f\x4b\xc9\x81\xfc\x16\xb2\x9a\xfa\x03\xcb\x34\x3d\x2e\x50\xa5\xd1\xe5\x0c\xa2\xdc\x4c\x7e\x43\xfe\xfa\x39\xd7\xce\x5c\x58\x2e\xfd\x50\x1e\xb9\xbc\x36\x69\x6f\xae\xdf\x86\xca\x29\x7e\xaf\x1f\xfe\xf0\x87\x2c\xb8\x2a\x62\xe6\xca\xcd\x81\x1a\xdd\x4e\xa2\x09\x80\x89\x69\xf9\xc2\xc5\x3b\xcd\xe3\x3b\xfb\xed\x27\x47\x2b\x3c\x42\x40\x15\x86\x98\x07\x0b\x10\xa7\xca\x72\xbc\x13\x28\x05\x16\x11\x94\x53\x1c\xf4\x9d\x9f\x38\x29\x97\x5d\x82\xc8\x5d\x52\x34\x54\x15\xd2\x0a\x79\x3a\x67\x04\x3d\x62\x77\x81\xdf\x55\xc4\xf9\x34\xe9\xc2\x41\x1d\x03\x40\x70\x1c\x2e\x07\x81\x8a\x5e\xf4\xba\x39\x46\x41\x8a\xc0\x6e\xd2\xf5\xa5\x48\x5e\xf2\x12\x57\xa0\xe4\xf2\x02\xd1\x2f\xf2\xa0\xbb\xb8\xa8\x05\x53\x5f\xdf\xc2\x0a\x06\xa7\xab\x89\x79\x75\xb9\x6d\xde\x6c\x47\x74\x8a\x4e\x37\xdf\x48\x0e\xda\xeb\xe8\x99\x99\xbf\xf1\x8d\x6f\x94\xc6\xa3\xf7\xd7\x92\x44\x79\x1a\x6e\x00\xb1\x00\x2a\xa1\x7e\x99\x56\x16\x5b\xef\x78\x30\x79\xfb\x87\xde\xdc\xfe\xe4\x3b\x0f\xa6\xbf\xb9\x7b\x56\x3d\x5d\x5b\xba\x4a\xa0\xba\x6b\x92\x1b\x13\xfe\xee\x35\x81\x17\x7d\xdb\x3d\xad\x0a\x9c\xb5\x58\xcc\x25\x45\x94\x07\xbd\x49\xb2\x46\x8c\xad\xda\x9a\xcb\xdb\xcb\xfa\xe1\xd9\xca\x60\x39\xb2\xf7\x8e\x27\xed\xa9\x35\x89\xc4\xd3\x52\xb2\x6d\x0c\xac\x24\x51\xc1\xdd\xb8\x71\x83\xbc\x5d\x8c\xe8\x47\x2f\x69\xd2\x52\x07\xb8\x4e\x06\x0c\xf1\xaa\xe2\xd5\x7c\x6c\x17\x27\xe3\xf6\xa4\xa9\xec\x99\x61\xa2\xda\x52\x6d\x98\x46\x01\xde\x92\x38\x91\x59\x48\x4d\xba\x16\x22\x1a\xab\x8b\xce\x48\xd5\x35\x00\x13\xa3\xa9\x78\x79\x34\x69\xee\xbd\xb6\x77\xf6\xc2\x0b\x6f\x3b\xfd\xf6\xcb\x97\x17\x3f\xd8\xdf\x6e\xde\x58\x55\x41\xd2\x72\x4c\x44\x27\xe8\xa4\x0c\x67\x70\xb6\x2d\x0e\x64\x34\x00\x5a\xd7\x1e\x86\x90\xb6\xa0\x4f\xa7\x0d\x00\xfe\xfa\xd7\xbf\xce\x4f\x3d\xf5\x94\xaf\x87\xec\x03\x7f\xc2\x2e\x90\xa3\x49\x04\xcb\x06\xed\x59\xc5\xab\x93\x71\x7b\x72\x34\x6d\x8e\x8e\x27\xed\xe1\xe9\xd8\x9e\x9c\x8d\xec\x89\x25\x6e\x81\xa0\x2c\xa0\x30\x42\x7a\x1b\x4d\x3a\x8d\x42\x6b\xb8\x59\x56\x76\x31\x1f\xd9\xa3\x83\xad\xe6\xad\xdb\x17\x97\x2f\xbf\x7c\x79\xf1\xa3\x97\x1e\x5a\xfc\xf0\xd6\xde\xd9\x8b\xfb\xb3\xe6\x8d\xb3\x11\x1f\x30\xf8\x18\xc0\x11\x11\x9d\x30\xf3\x31\x11\xcd\x99\xd9\x1b\xe5\x9e\xa1\x5b\xe7\xbc\xd4\xc9\x8f\x95\xd6\xf7\xf5\xcd\x9b\x37\xed\xd6\xd6\x96\x69\x9a\x46\xcf\x11\x20\xd3\x3f\x03\xe1\xd0\x71\xf5\x91\xff\x25\x9b\x09\xcd\x99\x27\x9c\xf4\x2b\xaf\xbc\x62\x7f\xe3\x37\x7e\x23\xe8\xf7\xc5\xae\x22\xc9\xb9\x18\x66\x86\x01\x99\xca\x52\x5d\x5b\xaa\x3b\x89\x0b\xa0\x67\x23\xa3\x8f\x16\x25\x41\xf3\x13\x30\xc4\xa0\xcc\xa9\x8b\x10\xb2\x55\x91\x8f\x1f\xcf\x9c\x06\x65\x79\x94\xfe\xf4\x8a\xae\xa5\xee\x4a\x72\xb5\x15\x5a\x9e\xdd\x92\x95\xbc\x7c\xea\x53\x9f\x32\xff\xf4\x4f\xff\x04\xe4\xa5\x23\x40\xbf\xaf\x4b\xfe\x32\xed\xa0\xae\x3d\x13\x6f\x13\x0e\x72\x48\xea\x26\xf3\x28\xe5\x5f\x92\xe2\xe9\xb2\x74\x99\x43\xe9\xd7\xe5\x5d\xfa\xcd\xe5\x3d\x24\xa5\x19\x7a\xee\xd5\xe1\xf7\x7f\xff\xf7\xa5\x14\x26\x79\x16\x8b\xd4\xb8\x3e\xe3\xd9\xf4\xd8\x7e\xa0\x5e\xf1\x55\x30\xd7\x71\x4b\x71\xb7\xca\x38\x12\xeb\xc6\x8b\x04\xd9\x72\x2c\xa6\x20\xdf\x13\xef\xc0\x79\x93\xb7\xfb\xf0\xf3\x43\xc4\x0f\xbf\x8a\xa0\x25\xc0\xde\x3d\x04\xf2\xe1\x6b\x25\xc1\x85\x8a\xe7\x19\x0c\x66\x78\x91\x4e\xb8\xed\x39\x00\x09\x17\x8c\x98\x41\x24\xdf\x6e\x71\x0d\xa0\x48\x1c\x6e\x40\x61\x26\x87\xea\x74\x0b\xb4\x6c\x83\x60\x42\x32\x37\x56\x53\xb2\xb8\x75\x35\xa8\x56\xfc\xc8\xf4\xc4\xbe\x73\x74\x66\xbf\xbf\x9c\xd2\x01\x4c\x94\xba\x00\xc9\x91\xf8\x20\x22\x2d\x2d\x1d\x1a\x3b\x9a\xbb\x96\xbf\x1e\xc8\xd6\x60\x8c\x09\x18\x3f\x74\x32\xba\xfc\xc1\x3b\xb3\x5f\xba\x7e\x30\xf9\xad\xed\x65\xf5\x61\xc3\xb4\x4b\x80\x89\xf8\x34\x25\x42\x09\xe3\x26\xd5\x65\x05\x62\x96\xda\x01\xea\x11\x81\x00\x1c\x0d\xb0\x33\x69\xf0\xf8\xb5\xc3\x89\x69\x0d\x2f\x97\x86\xff\xf1\xf6\xee\xf2\xf5\xa6\x0a\xeb\x87\x6f\x9f\xdc\x36\x1d\xec\xba\xa4\x4a\x40\x9c\x61\xa2\xe7\x5d\xe3\xfa\xd5\xef\x32\x0a\x97\xee\xfa\x6f\x64\xc1\x58\xd4\x16\x6f\x5e\x58\x2e\xe7\xe3\xf6\xf8\x60\xab\xd9\xbf\x76\x38\x7e\xcf\xdb\x4e\xc6\x8f\xec\x2e\xea\xcb\xd3\xc6\xcc\x8c\x45\xed\x5b\xa2\xbe\x34\x92\x2e\x73\x7e\xec\x3a\xce\x82\x3b\x49\x79\xcd\xcb\xf9\xa8\x3d\xbe\x3f\x5b\xdd\xb9\x73\x61\xf5\xca\x1b\xbb\x67\xaf\xdc\xdb\x5e\xbd\x71\x3a\xb2\x07\x16\x7c\x4c\x44\xc7\x6e\x81\x96\x0b\x75\x90\xb8\x50\x7a\x26\x4b\x4f\xb2\xe2\xdc\x90\x44\x41\xbe\xfb\xb3\x84\x96\x32\xad\xd2\x56\x74\xe5\x11\xec\xb2\xb2\xcb\xfb\x33\x5e\x1c\x4f\xda\x07\x6f\xed\xac\x6e\x5f\x38\xab\xf6\xf6\xe6\xa3\x2b\x97\xe7\xf5\x95\x9d\xb3\x6a\x6f\xd2\x98\xd9\xa8\x35\xe3\x91\xa5\x71\x65\xa9\x36\xee\xf3\x59\x62\xdb\x1a\xd8\x55\x65\x97\x8b\xda\xce\x8f\x27\xed\xe1\xf1\xa4\x3d\x3c\x9a\xb4\xfb\x07\x5b\xcd\xfe\xe1\xb4\xd9\x3f\x1d\xd9\x07\x8d\xb1\x73\x78\x09\x53\x94\x36\xc9\xdf\xb0\x0d\x9a\xd2\x9d\x44\x41\xd2\x22\x4f\x87\x3f\x3d\x3d\x2d\x49\x4d\xd6\x49\x5c\x4a\xce\x02\xf1\xcc\x80\xa1\x84\xeb\xc4\xfa\x16\x48\xf6\xac\x87\x08\x42\x4d\x12\xef\xd4\xb0\x30\x6e\x2b\xf4\x98\xbc\x4a\x29\xb2\x8b\x1d\x41\xe3\xc8\x4d\x72\xe0\x18\x24\x01\xce\x70\x6e\xca\xa5\x06\x6a\xa4\xde\xfa\xcf\x50\x7e\xe4\xea\x9f\x13\x8d\x02\x80\x35\xdc\xac\x2a\xbb\x70\x97\x6e\x85\x93\x22\x25\x68\xa1\xde\x22\x03\x69\x9c\x0b\xe4\xfb\x75\x68\x01\x06\xfa\x8b\xf1\x90\xc8\xda\x64\xe2\x95\x88\xef\xba\xf7\xa1\x78\x9b\x80\xa8\x1c\x68\xc9\xd5\x65\xa8\xdc\x8d\xc4\xf3\x1b\xa6\x97\x6e\x13\xff\xd2\xb7\xc2\x5f\xfd\xd5\x5f\x85\xb1\x2f\xce\x6d\x89\x7f\xcc\x06\xa0\xf1\xf8\xd4\xee\x4e\xe6\xf6\x51\xd3\x62\x87\x98\x8c\x66\x8a\x48\x22\x03\x00\x80\xdc\xea\x2c\xd8\x68\x21\x45\xe8\x23\xf3\x3e\x20\xe8\xff\xa6\x2e\xc0\x23\x79\x78\x9c\x04\xf6\x72\xeb\x75\x14\xd9\x08\x35\x96\xcc\x36\xda\xb9\x00\x69\x69\x3e\x6e\x32\x07\xe3\xd6\xf1\x44\x2a\x24\x53\x77\x58\x24\x2e\xd2\xe9\xbc\xec\xd3\x02\x92\x22\x88\x8c\x23\x00\xa6\xc5\xde\xf8\xd4\xbe\x6b\x74\xca\x97\xcd\x0e\x6e\x5b\x13\xb6\xa4\x6a\xe0\x19\xee\x9b\x71\xfe\x83\x73\xf6\xd1\x47\x1f\x35\x2f\xbe\xf8\xa2\x1e\xeb\xc9\xd9\x2c\x70\xc6\xb8\xdb\x67\xd5\xce\x07\xde\x9a\x7d\xe4\xfa\xc1\xe4\x37\xb7\x97\xd5\x13\x0e\xb4\x24\xad\x0a\xf4\x28\x7c\xa2\x54\x1d\x5e\x62\x4b\xa5\x82\x3c\x19\x0a\xb9\xce\x08\x3f\x34\x9e\x34\xf4\xf8\xdb\x0f\x27\xbf\x71\x5a\xdb\x93\xa6\xe2\x7f\xbb\xbb\xbd\xba\x2d\xc0\x8b\x77\x09\x78\xc9\x95\xaf\x0e\x60\xf3\x4c\x9d\x07\x2e\x06\x1d\x08\xe8\xd1\x57\x07\x04\x9a\xa6\xe2\xe6\xfe\x56\xb3\x3c\x1e\xb7\x27\x77\x76\x56\x77\x1e\x3e\x5a\x5e\x7b\xf8\x78\x7c\xfd\xd2\x7c\x74\x75\x7b\x59\xed\x76\x0b\x74\x58\x9c\x03\x7d\xeb\xe1\x6e\x82\x6d\x89\x9b\xa6\xe2\xe5\x59\x6d\x17\xf3\x91\x3d\x7c\x30\x6d\xf6\xf7\xb7\x57\x77\xee\xec\x2c\x5f\xbf\xb7\xdd\xdc\x39\x1d\xb5\xf7\x2d\x75\x86\xc2\x04\xf2\xbb\x87\x7a\x5b\x7e\x21\x54\x45\x42\x3d\xa2\xfb\x20\xc7\xe8\x85\x77\x7f\x93\x36\xa2\x0a\x2d\xb4\xd9\xf5\x91\xee\x13\x1f\xe6\xcb\x5c\x32\xb0\x5c\xd6\xbc\x5c\x56\xcd\xf1\x83\x69\x73\xef\xcd\x9d\xe5\xeb\xb3\x65\xb5\xb3\xbd\xac\x76\xa6\x8d\x99\x4d\x1a\x33\x1b\xb7\x34\x1d\xb7\x66\x6c\x6c\xd7\x2f\xad\x61\xdb\x18\x2c\x16\x23\xbb\x98\x8f\xda\xe3\x93\x49\x7b\x7c\x5a\xdb\xf9\xb2\xb2\x8b\xa6\xe2\x13\x4b\x58\x80\xb0\x44\x77\x56\xcd\x1c\xdd\x01\x73\x5e\x35\x94\xa8\x88\x1c\xc8\xca\x5d\xae\xb8\x8e\x26\x6b\x66\x32\x17\xbe\x91\xcb\x9d\x9c\xbb\x69\x66\xc5\x74\x8e\x10\xe9\x8b\xbf\x0c\x00\x53\x31\x99\xba\x43\x83\x63\xb0\xe4\x2c\x80\x88\x8e\x3d\xa7\x10\x45\x9b\xfa\x12\xae\x94\x34\x6a\x70\x22\xc5\xa3\xd1\x9f\xd0\x27\xa8\x1a\xc8\x44\xbe\xb7\x3f\xa9\x62\x5c\x06\x13\x37\xad\xe1\x65\xdb\x49\x5c\x00\x84\x8b\xdb\xb2\x7a\x60\x4e\x16\xa4\xa2\x14\x03\xe8\xf7\xab\xc9\x3c\x0f\x49\x33\xb4\xdb\x44\x92\x52\x9a\x6c\x26\x13\xbe\xc9\x73\xa9\x0e\x5a\xfa\xa1\xcb\xd3\xcf\xa5\xfa\x6a\x7f\xd9\x3e\xa8\xf7\x52\xbc\x52\x9d\x4a\xf1\x4a\xd2\x31\x7f\xf0\x96\x5e\x84\x03\x87\x0d\xa0\x26\xe6\x7a\x7a\x62\xaf\xd4\x4b\xbe\xde\x1d\x39\x1f\xcf\x41\x01\xa4\xb8\x3f\x4a\x37\x3c\x7a\x88\xc6\xb8\x62\x11\x92\xef\xa4\x38\x71\xf8\x85\x4e\xa0\x8a\x20\x32\x01\x7a\x0b\xba\x53\xe9\x74\x07\xc5\x79\xd1\x7a\x9c\x41\x01\x0c\x81\x04\xd0\x12\x20\x27\xa4\x76\x8e\xf4\xfc\x12\x52\x20\xea\xca\x0b\xd2\x25\x1f\x27\xa7\x03\x66\xf1\xc2\xaa\x2e\x89\xad\x9a\xcf\x33\x3d\x36\x61\x88\xf9\x20\xc6\xb8\x5e\xf2\xd5\xd1\xc2\x5e\xad\x1a\x7e\xd1\x8e\xba\xa3\xff\x25\xe8\x14\x34\xcc\x02\x9d\xea\x47\xdd\x35\xd6\x03\x34\x2f\xbe\xf8\xa2\x55\x76\x2d\x06\x48\x6c\x5a\x6a\x30\xc6\xa3\x96\x76\xde\x75\x7f\xfa\xe8\xfb\xee\x6e\xfd\xcf\xed\xb3\xea\x49\xc3\xd8\x4d\x3e\x89\xfb\x86\x41\x0a\xe5\xfb\xd4\x83\x15\x05\x2e\x53\xac\xd6\x57\x09\x89\xee\x13\xe3\xc3\xe3\xe4\xc8\x30\x12\xa1\x9e\xae\xcc\x47\xde\x75\x30\x39\x3c\x1d\xdb\xc3\x65\x65\x17\xf7\xb7\x1a\xcb\x26\x59\x9c\xfc\xd9\x5c\xa1\x2f\x9e\x79\xe6\x19\xf3\xd5\xaf\x7e\x15\x2f\xbc\xf0\x02\x16\x8b\x85\xfd\x83\x3f\xf8\x83\x1e\xa3\xe4\xfb\x52\x00\x18\xfd\x7d\x52\xee\xdd\x49\x47\xee\x6d\xaf\xe6\x87\xd3\xe6\xde\x1b\x17\x97\xaf\xef\x9d\xd6\x97\xf7\x4e\x47\x97\x2f\x9e\x56\x57\x2e\x9c\x55\x7b\xb3\x55\xb5\x33\x6a\x68\x6c\x98\x8c\x61\xd4\x86\x3b\x95\x0b\x13\x6c\x63\xb8\x59\x55\xbc\x5c\x8c\xec\xfc\x78\xdc\x1c\x3c\xd8\x6a\xf6\xef\x6f\x35\x77\x0f\xb6\x9a\xfd\x93\x71\x7b\x78\x56\xdb\x93\x96\x82\x44\xc5\x4b\x57\xbc\x2d\x87\xb6\xe7\x58\x0a\x1b\x9d\xe4\x80\x35\xe6\xe4\x0e\xba\x1c\x83\x19\xc6\xcb\x6f\xfd\xd6\x6f\xf5\x98\x7c\xb1\x66\x34\x29\x88\x4f\xfb\x84\xba\x13\x77\x97\xe4\x4f\xac\x25\x4c\x2d\x61\xb1\x20\x7b\xbc\xa8\xed\x83\x83\xad\x66\xec\xfa\x60\x64\x18\xb5\xb3\x63\x0a\xe3\x83\x09\x8d\x35\x6c\x5b\xe2\x33\xeb\x6f\x75\xa6\xb0\xd3\x6b\x89\x78\xa8\xdc\xc2\x3f\x23\x82\x95\x85\x88\xa7\xc1\x5b\x68\xa7\xb5\xe7\xe2\x27\x07\x41\x1e\xf2\xb4\xdf\x00\xb0\x75\x21\xb0\x94\x09\x90\x66\x10\xde\xb5\xb4\x45\x3b\xff\x41\x8c\x35\x75\x6d\x69\x62\x9c\x61\x6e\xc2\x0f\xca\x89\x8a\x38\xe9\x3a\x0e\x4e\x12\x71\x84\x88\x01\xa2\x24\x3b\x82\x90\x4c\xec\x24\x2f\x5f\x21\x39\xf1\x93\xb8\x94\x10\x80\x08\x55\x12\x22\x61\x9d\xaa\xa8\xb1\x14\x0e\x9e\x93\xbf\xd2\x79\x7f\x7c\xec\x63\x1f\x33\xff\xfe\xef\xff\x9e\x43\x9b\xa5\xf7\x6c\x5f\x9f\xc3\x0d\xa1\xda\x92\x94\x63\x13\xee\x72\x93\xbc\x86\xa4\x28\xa5\xb0\xa1\x7c\x36\xe9\xa3\x4d\xeb\xb3\x2e\xbf\x1c\x18\x1a\x4c\x2f\x74\xd4\xc9\xe2\xd7\xa9\x05\xb8\xa6\x16\xe3\xc9\x89\x7d\x87\x59\xf1\x1e\x9c\x8a\x34\x80\x13\x35\xde\xa2\x34\x02\x42\xfd\xe3\x55\x2f\x52\x4d\x9a\x61\xa3\xb5\xa0\x21\xe8\x68\x04\xac\x57\xa0\x04\x6e\xe1\x8f\xf5\x11\x84\x53\x58\x87\x4a\x43\x61\x96\x93\x27\x48\x79\xf2\x75\x89\x76\x37\x5d\xfe\x32\x0f\x22\x4e\xee\x2b\x8a\xe0\xcc\x17\x16\x57\xda\x68\x33\x13\x01\x53\xa2\x26\x93\x8c\x4d\x68\x76\x0a\x88\x24\x6e\x33\x0d\xae\x8c\x16\xfc\x50\xd5\xf0\x6c\xc5\xe9\x01\x70\x92\xf1\x12\x9c\x31\x3e\xf4\xa1\x0f\x99\xef\x7d\xef\x7b\xbd\xb1\x37\x1a\x8d\xb0\x5a\xad\xac\x3e\x60\xce\x8f\x05\x97\x5f\x0d\x60\x6c\x18\xd3\xcb\xf3\xd1\x95\x9f\xbb\xbd\xfd\x6b\xbb\x8b\xfa\x97\x2a\xc6\x6e\xc9\xa0\x56\x4b\x5c\x22\x38\xcc\xd0\x26\x89\x1c\xe5\x2b\xfc\x27\x16\xe3\xc5\xff\xb8\x84\x2c\xfc\x2a\xa6\xe9\xce\x59\xfd\xd1\xf7\xdc\x9b\xee\x3f\x98\x36\x87\xa7\x23\xfb\xed\xd3\xb1\xf5\xc6\xb9\x92\xce\x25\xf3\xe4\xdb\xdf\xfe\xb6\x7d\xef\x7b\xdf\x6b\x7e\xf2\x93\x9f\xe0\x9b\xdf\xfc\x26\xbe\xf7\xbd\xef\x69\x95\x91\x45\x54\x17\xb9\xf2\x93\x3e\xb6\x40\x38\x5d\x36\x6e\x15\xee\x00\xcc\xe2\x7e\xd5\xcc\x1f\x4c\x9b\x7b\xb7\x2e\x9e\x4d\xc6\x2d\x4d\x67\xcb\x6a\xe7\xc2\x59\xb5\xb3\xb5\xaa\x66\x75\x4b\xe3\x9a\xa9\xae\x5b\xaa\x09\x40\x63\xd8\x2e\x2b\x5e\x9c\x4c\xda\xe3\x93\x71\x7b\x3c\x1f\xb7\xf3\x45\x6d\x17\x8d\xe1\xd3\x28\x5d\xc0\x92\x40\x73\xbf\x40\x7b\x09\x83\x57\x0f\x39\xff\x00\x14\x7c\x9d\x44\x3f\x00\x48\x54\x23\x6b\xb5\x13\x47\x47\x47\x3d\xda\xa2\xb4\x14\x12\xd4\x59\x51\x66\xe3\xd4\x33\xde\xb0\x79\x0a\x60\xca\xe2\x62\x4d\x26\x8c\x5b\xc0\xb4\xf0\xdb\xfa\xd9\x97\x0d\x30\xaa\x6d\x38\x00\x00\x20\x00\x49\x44\x41\x54\x44\x09\x8f\xd7\x10\x84\x4b\x2f\x21\xb6\x63\x8b\xfc\xe5\xb6\xf5\xc6\x85\x95\xee\x68\xb2\x40\xa2\x2a\x1b\x62\x68\xcf\xc3\xf4\x16\xfd\x86\x24\x2e\x25\xee\x35\x1b\x2e\x44\x60\x00\xc2\xc7\x48\x44\xe6\x44\x64\x2a\x0b\x53\xb7\x34\xae\x9c\xaa\x28\xa0\x4b\x45\x70\x23\x87\xc7\x82\xfb\x12\x62\x70\x8e\x04\x93\x13\x15\x53\xa0\xc3\x00\x52\xe6\x2d\x2e\x08\xe2\x68\x63\x38\xc3\x37\xa6\x38\xb1\x49\x2c\x0f\x9a\x60\x30\xc0\x06\xd6\x12\x2f\x5b\x42\x77\xf7\x87\xe8\x0b\xc9\x89\x88\x01\x69\x84\xcd\x4b\xee\x83\x95\xd4\x38\x5a\x2d\xa4\xe3\xe4\x54\x1c\x43\xaa\x9a\x52\x98\x8c\x93\x2b\xab\x94\x87\x8e\x2b\xeb\xac\xdb\xa1\xe3\xc8\x77\x5d\xf7\xd2\x58\x2b\xf5\x9d\x45\x3e\xef\x4d\xeb\xa0\xc3\x36\x4d\x93\xad\xbf\xe2\xdc\xbb\x9d\x23\x2d\x4f\xc7\x73\xfb\x1e\x63\xb1\x03\xb0\x51\xab\xb4\x7b\x48\x47\x6a\xb4\x7f\x89\x0b\x7f\x37\xfe\x19\xfa\x2e\xa3\xe0\xfc\xdc\xc8\xc9\x14\xc5\x9c\xe9\xf9\x83\xd2\x15\x30\xd9\xae\xe2\xd2\x09\x84\x11\x2f\x30\x24\x35\xb9\xdc\x3f\x44\xa1\x9e\x51\xbe\x92\x82\x12\x71\x09\x62\x58\x40\xa3\xc9\x0f\x25\x80\x06\xf0\x32\xd8\x94\x4b\x97\x0b\xb6\xb7\xa1\x21\x52\x75\x0a\x69\x62\x2e\x04\x42\xd5\xf2\xde\x78\xc1\xd7\xea\x25\xef\x02\x7c\x47\x7e\x33\x47\xa4\xa5\xa4\x60\x48\xa2\x68\x57\xab\x95\xfb\x66\xc9\x22\x14\xc6\x81\x07\x2d\x60\x8c\xa7\x8d\xd9\xf9\xe0\x9d\xd9\x87\x1f\x9a\x8f\x3e\x5d\x31\x2e\x13\xc4\x65\xb4\xee\xf3\x92\xfe\xbc\x3d\x5c\x43\xbd\x27\x0d\x63\xf5\xbb\x57\x3b\xe6\x20\x92\x4e\x57\x31\xed\x5e\x3c\xab\x9e\x7e\xf7\xfd\xe9\x4b\xf7\xb7\x9a\x3b\xa7\xa3\xb3\x25\x15\x76\x8e\x78\xda\x26\x4f\xd7\xf5\xe0\x2e\x63\xef\x62\xd1\x2d\xc4\x39\x55\x7a\x00\x45\xdc\xbf\xcb\x67\xec\x24\x0c\x63\x6b\x78\xbc\xac\x6c\x7d\x32\xb6\xf7\xef\xed\xac\x8c\x63\x04\x46\xae\x1d\x71\xa1\x06\x2c\x08\x2b\xee\x9e\x97\x20\xa1\x6e\x89\xc7\xd5\x27\x12\x06\x22\x92\x8b\xf7\x82\xe2\xbd\x44\xb9\x9b\x8f\xed\x26\xa7\x09\xcb\xe7\x7f\xfe\xe7\x7f\xb6\x40\xaa\x32\x52\x9f\x22\xbc\x53\xdf\x96\xc6\x83\x98\xb1\xa8\xfb\x18\xe8\x5d\xa0\x29\xa5\x86\x71\xae\xa8\xfb\x92\x10\x6d\x76\xa4\x2a\xcc\xdf\xf6\x2c\xef\x21\x92\x3b\x87\x74\x3f\x68\x89\x53\xae\xed\x83\xed\x14\xcf\xeb\x80\x4c\x70\x25\x20\x32\xb4\xf8\x15\x9d\x57\x87\xe8\x5f\xf1\x6c\xfc\xe1\x73\xc6\x7a\xae\x33\x9d\x46\x8c\xc8\x4c\xc5\xf0\xb8\xa3\x20\x9c\x43\xd5\x47\x39\xe1\xda\x16\xa6\xfe\xa4\x96\xf9\x07\x71\x3c\xe2\x6f\xca\xb2\x50\x8f\x60\x84\x7a\x75\xe5\x37\xad\xc1\xb2\x35\x7c\xc6\x14\x75\x7c\x2c\x2e\x96\xf2\x12\x26\xe7\x2c\x00\x28\x69\xcb\x3a\x15\x44\xce\x0d\x82\x47\xe5\xaf\xff\x8c\x7a\x47\xe6\x79\x48\xd2\x30\x24\xa1\xd0\x6d\xca\xb5\x43\x0f\x54\x99\x66\x93\xf1\xb6\x89\x2a\x4a\xe7\x5d\xca\xab\x54\xa7\x75\xf5\x91\xf1\xec\x1f\xfd\xd1\x1f\x79\xa0\x12\x02\x35\x68\x71\xaa\x82\x7a\x74\xc6\xb3\xf1\x82\xaf\x93\xc5\x38\x00\xe2\xe0\xc4\x20\x93\x61\xe2\xdc\x89\x34\xae\xf0\x4f\x55\x90\xf0\xa0\x81\x93\xf8\x48\x45\x0d\x92\xbd\x56\x59\xfa\x60\x4e\xc2\xe3\xbc\x50\xe2\x9c\x98\x9d\x7c\x48\xe2\x43\x4e\x2b\x15\xee\x9e\x49\xb5\x09\x71\x3a\xf6\xa4\x47\x82\x16\xa4\x85\x3a\xa0\x97\x0d\x8b\xf6\x33\x5d\xb6\xee\xd7\x62\x67\x74\x66\xaf\x8c\xce\x78\xd7\xd8\x78\xe8\x1a\xd2\x31\x90\xcc\x4f\x21\x6d\x09\xee\xe2\xc5\x8b\x59\x06\x82\xe2\x99\x3e\x72\xeb\xf3\xec\xd2\x7c\x74\xed\x9d\x0f\x26\x9f\x18\xb7\x74\x1d\x80\x89\xb5\x54\x64\x28\x69\x81\x1a\x32\xce\x33\xa1\x95\x99\x4a\x24\x6e\x28\x82\x28\xc0\xc3\xe7\x51\x63\xae\x5f\x39\x1e\x3d\x75\xed\x68\xf4\xe8\xce\xb2\xda\x41\x7f\x81\xec\xe2\x93\xfe\x26\x00\xc4\x1c\x12\x8b\x7b\xf8\x55\xdc\x7b\x7a\xf8\x5a\xb7\x9b\xe7\x18\xc0\x21\x80\x03\xf7\x27\x9f\x0f\x88\xe8\x00\x84\x7d\x4b\x38\xb0\x06\xfb\xd6\xe0\x2d\x6b\x70\xaf\x35\x78\xcb\xfd\xdd\xb3\x06\xf7\x2c\xe1\x80\x09\xfb\xa0\x90\x6e\xdf\xfd\xea\xbc\x7d\x99\x73\x74\x6a\xa3\x60\xcb\x41\xfd\xdb\x8f\x65\x5b\xce\xeb\x4a\xfd\x22\xf3\xee\xdd\xeb\x24\xea\x75\xec\xea\x2e\xff\xf6\x45\x5b\x92\x67\xd7\xde\xdc\x9f\xec\xd3\x43\x20\x6c\x7b\xf6\x07\xcc\x25\x46\xc9\x12\xe8\x00\xc9\xc1\x7b\x1a\xb4\xe4\xda\x9b\x0b\xdf\x84\xc6\x96\xde\x93\xc4\x72\xb2\x6e\xb2\x88\xae\xe3\xde\x73\x88\x1a\x04\xa0\x62\xaa\x0d\x93\x09\xdc\x97\xe0\x3c\x15\x0d\x0d\x69\xba\xa8\xa5\x70\xea\xd1\x47\x62\x1d\x67\xf8\x57\xf2\xbc\xd9\xb6\x88\x67\x26\xb6\xad\xe1\x65\x4b\xc1\xbe\x25\x69\xa3\x73\x89\x38\xd1\xab\x8a\x54\xb6\x3d\xee\x05\xfd\xc9\x91\x93\x06\x94\xe2\x03\xe5\x09\x75\x1e\xc4\x3b\x24\x19\x29\x01\x03\x1d\xb6\xe9\x24\x5f\x97\xe6\x3c\xc0\x29\x97\x77\xe9\x7d\xe8\x79\xa8\xaf\x83\xfb\x8b\xbf\xf8\x0b\x0b\x24\xdf\x5d\xaa\x4b\x3b\xf5\x00\x60\x88\x51\x8f\x4f\xec\xe5\x6a\xc5\x8f\x10\x63\x0c\xc0\xb1\xd5\x4a\x38\x42\x29\xa6\xe8\x2d\x54\x6e\x80\x76\x53\xc6\xaf\x32\xa9\x81\x66\xb8\x9b\xc8\x9d\x84\x1b\x06\xb5\xc4\x4a\x0a\x37\x05\x90\xe2\x6f\x6b\x16\x13\xa1\x87\x8b\x44\x39\x41\xe8\x43\x22\x1e\xa5\x8b\x6d\xf7\xe0\x6d\x66\x3a\x4f\x66\xff\x4b\x21\x5d\x4c\x23\x4e\xec\xf5\xcf\x2e\x8d\x14\xbe\x0a\x48\xa2\x3a\x88\xdd\xff\xe2\xce\x68\xd6\x00\x2b\xe4\x5b\x57\x4b\xbe\x32\x5a\xd8\xab\x66\xc5\x53\xee\x4e\xb1\xad\x99\xd9\x03\x0e\xef\x02\x6d\x94\xe7\xf5\x20\x43\x03\x3d\x83\xe6\x7e\xfd\x8e\xb2\x9a\xbb\x5b\xc1\xc7\x3b\xcb\x6a\xef\x43\x6f\xce\x3e\x72\xe1\xb4\xfe\x28\x31\x66\xa2\xd6\xbd\xb6\x85\x30\x66\x77\xba\xb0\x28\x07\x48\x88\x1c\x23\x8e\x89\xb0\xab\x53\xc5\xd7\x79\x6b\xec\xac\x4f\x57\xa5\xae\xbe\x4f\xbc\xf3\x60\x7a\xe3\xa1\x93\xd1\x35\xdf\x06\x08\x40\xee\xda\x9a\xeb\x9f\x30\x57\x1e\x7e\xf8\xe1\x2c\x43\xe4\x6d\x46\x90\x3b\x39\x56\x2c\xa4\x70\x0b\x2c\x33\xeb\xc5\x79\x9f\x99\xc3\x62\x5c\x78\xbe\x2b\xfd\x45\x7a\xff\x2c\xcb\x38\x06\xe0\x77\x14\x79\x15\x49\x0e\xb4\x04\x77\xfd\xfa\xf5\xd2\x78\x18\x1c\x27\x05\x3f\x79\x51\x6f\x7a\x73\x74\x27\x05\xf1\xea\x2c\xd9\x3f\x87\xae\xce\xa1\x5f\x44\x7b\x75\x9f\x49\x50\x73\xe0\xc2\x0f\x99\xd9\x03\xa0\xde\x79\x2d\x94\x1a\xe2\xea\x3b\xf9\x32\x4d\xe8\xb5\xed\xa7\xc5\x12\x83\xf8\x42\xda\xb8\xf8\x45\xb2\xa4\x93\x82\x0a\x4b\x3e\xa2\x37\x50\x04\x90\x48\x1b\xbc\x98\xd5\xeb\x8c\x89\x61\x48\x58\x81\xfb\xd3\x36\x81\x94\x08\xf9\x49\x2c\x9f\x13\x31\x6c\x26\x5e\x1a\x37\x6d\x68\x8e\x33\x91\x79\xf4\x00\x4b\x10\x59\xf7\xe3\x78\xc3\x2f\x6b\x38\x1c\xca\xe4\x75\x7d\x6a\x77\x91\xce\x15\xc8\x83\x01\xe9\x0f\x11\x7e\x1e\x55\x47\x4e\x62\xb2\x49\x9c\x75\xae\xa4\x12\x19\x42\xd1\xa5\xb2\x65\xda\x4d\x54\x66\xba\x8e\xb9\x34\xa5\x3c\x75\x9a\x92\x4a\x2b\xd7\x9e\x4d\xd2\x00\x88\xdb\x5e\x85\x61\xae\x54\x0f\x18\x30\x6a\x62\x1e\x4f\x4e\xf9\x72\xa7\x26\x82\x91\xbb\x77\x28\x59\xb5\x52\x35\x47\x12\x06\x0e\x2b\x4b\xb0\x45\x81\x48\xe3\x5c\x7c\x94\x92\x96\xc4\x27\x3e\x27\xaa\x23\xc0\x5b\x80\xca\xdd\x42\x3d\x46\x3a\x5b\x37\xc5\xa4\xa8\x5f\x84\xd3\x78\x11\x84\x30\xce\x3b\x4c\xd8\x58\x1e\xc9\x84\xa1\xfc\x58\x47\x1f\x97\x45\xb8\x42\x7f\xbe\x3c\x1f\x1f\x1c\xf3\x76\x9d\xe4\x65\xad\xa6\xc5\xae\x59\xe1\x82\x97\xb8\x70\xbc\x18\x13\xc8\x7c\xef\x92\x48\x5c\x1d\x2e\x16\x6e\x99\x46\x54\x3d\x8d\xeb\x96\xa6\x97\xe6\xa3\x6b\x57\x8f\xc6\x1f\x1b\x59\x5c\xd3\x4a\xbb\xde\xb1\x1b\xa1\x1b\x14\xd2\x0c\xad\x4d\x37\x1e\x04\x0b\x5e\x4a\x0d\x73\xb3\xdf\x51\x86\xa3\x0f\x92\x7d\xfe\x75\x8b\x2b\x7b\xa7\xa3\x27\x1e\x3e\x1a\x7f\x6f\x7f\xb6\xba\x7b\x34\x6d\xbd\xba\x25\x98\x19\x78\x5a\x57\x90\xbc\xe0\xad\xb7\xde\xca\xed\x32\xf2\xb7\x26\x7b\x95\x1c\x44\x98\x3f\x98\xcd\x2f\xde\x63\x74\x67\x81\x05\xc9\x15\x62\xbf\xf6\x6c\x92\x44\x9d\x2c\xc5\x93\x5c\x13\xfb\x0c\x61\xe3\x21\xed\x3c\xe4\x8d\xcf\xd9\xc5\xda\xb7\x39\xa3\x1e\xf1\x4e\xae\xa7\x43\xce\x02\xa9\x2a\x4d\xa9\xcf\x82\x5a\x0d\x51\x42\xe5\xdb\xef\xfb\xcc\x6f\xe1\xf7\xaa\xc8\x48\x77\x5c\x9f\x0a\x7b\x99\x44\x1d\xe7\xf3\x56\x40\x49\xda\xbf\x48\x5b\xa3\xd0\x1e\xa9\x26\x23\xa2\x92\x5d\xcb\x60\x9b\xff\x2b\x9c\xb6\x71\x19\x22\xe4\x9b\x14\x1c\x06\xa0\xe8\xb0\x14\x79\x3a\xd0\x42\xbe\x63\xbb\x58\x81\xb0\x94\x30\x5c\x7f\x3a\x24\xa7\x3b\x20\xa5\xb8\xa5\x3c\x92\xbd\x0f\x85\x7c\xd3\x80\x5c\x38\x03\xd6\x12\x37\xce\x32\x1b\x10\x83\xd9\x4f\x62\xb5\xc3\x44\xab\x8d\x24\x40\x2c\x01\x16\xf9\x5c\xfa\x16\x39\x91\x36\x44\xfc\x92\xc4\xc6\xc7\xd7\x0b\x7e\x69\xc1\xd6\x65\x6b\xbf\x4d\x06\x6c\x69\x42\x0f\xa9\x89\x72\x7d\xa3\xd3\xe8\x38\x43\xc0\x5b\xbb\x52\x9d\x86\x40\x59\x70\x5e\x55\xe4\xc3\xc5\x62\x17\x54\x45\xe8\x76\x91\x98\xd1\xc2\xbe\x8d\x2c\xcf\x00\x18\xbd\x10\xf9\x03\x6a\xfb\xab\xb4\x0b\x97\x0b\xba\xb6\x47\x51\xc6\xa7\xfa\xa4\x5b\x69\x2b\xa2\x01\x44\xb4\xb3\x91\xcb\x5c\x3c\xe8\x2c\xbf\x88\xc6\x72\x82\x21\x3b\xe4\x3e\x3e\x57\x11\x52\x73\x33\xad\x64\xc8\xcb\x4f\x8b\xde\xf1\x2b\x7a\xaf\xb5\xae\x50\x50\x7b\xe5\x2a\x2a\xd2\x49\x90\xd7\x8b\x03\x18\x8b\x59\xd5\xf0\xae\x69\x79\x4a\x64\xe4\x7d\x45\xf2\x6f\x70\x7c\x3f\x78\xf0\x40\x8e\x55\xf9\x9b\xa8\x89\xb6\x97\x66\xf7\x91\xc3\xf1\x7b\xb6\x57\xe6\xfd\x86\x69\xa6\xab\x9f\xeb\xef\xf0\xb9\x49\x7e\xa1\x14\x94\x68\x06\xab\x07\x54\xca\x24\x51\x96\x24\xbe\x9f\xcc\x9a\xea\xe9\x8a\x1e\xd9\x3b\xad\xdf\xbb\xb3\xac\xbe\x7f\x34\x6d\x8f\x29\x35\x18\xf5\x0b\xa4\x75\xe0\xa1\xd7\x57\x7e\xa7\xc9\xdf\xfe\xed\xdf\xe2\xce\x9d\x3b\x3d\x9b\x17\x69\x34\x8a\x74\x4e\xfa\x77\x79\x93\xb2\xb4\xe3\x90\xa0\xa5\x37\x3f\x33\x36\x39\x01\xb8\x50\xdf\xd0\xb4\x11\x71\xe4\x6f\xb2\x58\xfb\xbc\x07\xd4\x23\xb9\x35\x74\x70\xfc\xc8\x93\x75\x05\x23\x0c\xea\x6f\xc3\xd7\x02\x86\x46\xb4\x5d\x9e\x82\x2f\xff\x64\x5f\x20\x93\x97\x6c\xab\x07\x68\xc9\xaf\xf8\x4b\xda\xf8\x9d\xef\x7c\xa7\xd4\xa4\x12\xb3\xb9\x49\xfc\x21\xbf\x24\x53\xf9\x3b\x54\xb0\x5e\x48\x7a\x9d\x83\xf4\xa3\x25\x20\x46\xa8\x8a\x3a\x89\x4b\x22\x02\xa1\x30\xd3\xbc\x64\x83\xc5\x73\xe7\x38\x91\x60\xe8\x73\x5d\x08\x11\xf8\x68\x35\x51\x4c\x97\x6e\xa8\xce\x81\xa1\x1c\x70\x62\x91\x87\x0b\xb7\x4c\x68\x98\x92\x8f\x2c\x8d\xa0\x92\x67\xa0\x1b\xe8\xce\xc6\x45\x2f\x96\x7a\x70\xc8\x49\x2d\xbf\x4f\x6e\x10\x95\xde\xa5\xcb\x81\x1e\x1d\x37\xf7\x9b\x23\xc6\xc5\x41\x5c\xc8\x73\x08\x40\xe4\xe2\xe5\xea\x9f\x73\xa5\x34\x43\xe9\x73\xf5\xd9\x64\x42\x95\xfa\x24\xa8\x8a\x80\x70\x23\x7a\x72\x52\x6a\xf7\xc7\x06\x8c\xba\x3a\xe3\xcb\x64\x51\x07\xf5\x87\x1b\xdc\xde\xa0\x54\xaa\x66\x92\x91\xe6\xa6\x86\xdc\xb6\xca\x6a\xe5\x8a\x61\x4e\x6a\x19\xd4\x50\x4e\xb2\x40\x8c\x70\x02\x2b\x62\xb9\x3e\x4d\x02\x74\xa4\x54\x27\x8c\x79\x16\xe5\xc4\x78\xdd\xb4\xf5\x75\xa7\x38\x61\x1d\xe0\xe0\x50\x98\x58\x80\xc3\xa5\x89\xb1\x93\x25\x8e\x8b\xed\x27\xf7\xec\x66\x2c\xc5\xba\xc7\x3a\x39\x7f\x97\x1f\x3b\x15\x10\x73\x07\xde\x64\x9e\x21\xef\x10\x17\x5e\x05\x33\xad\x1a\xde\x35\x0d\xa6\x50\xdb\xa1\x91\x71\x7a\xd7\x90\xf7\x53\x2a\x22\xe3\x9e\xc3\x42\xcb\xcc\xf5\xa4\x31\xbb\x97\xe7\xa3\x77\x8f\x5a\x73\x35\xc8\x7c\x0a\x9c\x91\x7f\x48\x04\x50\xbe\xbf\x32\x49\x12\x50\xe3\xfb\x93\x93\x6e\x2e\x17\x03\x38\xb0\x1a\xe9\x9f\x04\x42\x23\x6b\x2e\x5f\x38\xab\xde\x75\x61\x51\x5f\xa9\x2c\x8d\x3d\xb8\x13\xd2\x0e\xb8\x77\x30\x33\x9e\x7d\xf6\x59\xf3\xf4\xd3\x4f\xf7\xfa\xef\xce\x9d\x3b\xf6\xfa\xf5\xeb\xc1\x80\x57\x48\xa7\x35\xb0\xf0\xea\x11\x7f\x86\x4a\xd8\xae\x8c\x8c\x9a\x24\x63\xf3\xe1\xd5\x1f\x5e\xf5\x73\x2c\x9e\xf5\x56\x67\x6d\x90\xda\x38\x15\x56\x62\xc7\xe1\x7f\x6f\xde\xbc\xa9\x0d\x72\x87\x18\xaf\x75\x71\x00\x00\xd3\xe9\xd4\xf8\xbc\xa5\x21\xad\x28\xbf\x11\xcf\x3d\xc3\x59\xdf\x47\xae\xbf\xfc\xef\x7c\x83\x3f\x1f\x3f\x67\x98\x9b\xa8\xc8\xfc\xa6\x13\xff\xcd\x6e\xde\xbc\x69\xbf\xf5\xad\x6f\x95\x9a\x54\x6a\x6f\x0e\x2b\x48\xff\x21\x86\x34\x71\xfa\xe4\x5c\x9d\xa8\xb4\xf8\x64\x39\xf2\x44\x95\x13\x27\x30\x20\x44\x79\xee\xbf\x6e\x62\x7b\x4c\x2f\x88\x72\xc8\x0b\x42\x84\xea\x25\x32\x20\x35\xd9\x52\x17\xe2\x53\x4c\xdf\x4d\x7e\x7f\x16\x8c\x4f\x43\x69\xfc\xf0\x2b\xb9\x57\xb7\x48\xf8\xd8\x02\x58\x31\x01\x96\xd8\x32\xd8\x46\x50\x04\xa9\x2a\xb2\xba\x2f\x9e\x7d\xf6\x59\xf3\xcd\x6f\x7e\xd3\x1b\xe8\xca\xbe\x09\xe9\x0b\xef\x43\xd2\x10\xfd\x9d\x4a\x61\x39\xc9\x82\x1e\x44\xa5\xb4\xba\x2e\x43\x75\x2b\xf9\x69\x37\x54\x56\x49\x12\x55\xca\xaf\xd4\x2f\xeb\xda\x34\x54\x9f\x12\xc7\x10\x9e\x3f\xf5\xa9\x4f\x99\xf7\xbd\xef\x7d\x00\x22\xa8\x15\xa0\x05\x40\xb0\x71\xa9\x4d\xcb\xe3\x7a\xc5\x7b\x80\x3b\x02\x20\x0e\xce\x54\xed\x03\x29\x9d\x13\xd2\x17\x4e\xe3\xa5\x8b\x9d\x5f\xc9\xd5\x45\x8a\x2c\x9e\xd3\x98\x00\xcb\x63\xf8\x21\x26\x4b\x5a\xb7\x30\xe6\x3d\x62\x08\x80\x27\x73\x48\x9c\xac\x92\x53\x6b\xc5\x4b\x1d\x63\x78\x7f\xa1\xf6\x40\x4e\xb5\xad\x20\x61\x60\xd5\xae\x70\x82\xae\x10\xb3\xb3\xaa\x93\x8f\xef\x4f\xac\x97\xd7\x15\x90\xc5\xb4\x5a\x61\xa7\x6a\x78\x0a\xa6\x9a\x11\x4e\x72\xcd\x82\x17\x31\xaf\xad\xf2\x33\xe8\xe6\xbd\x16\xd9\x77\xa7\x26\x33\x8d\xb7\x97\xd5\x95\x0b\x8b\xfa\x3d\x95\xa5\x60\xdb\x92\x75\xd4\x7b\xe8\xc9\xac\x82\x1f\xa5\x42\xb3\x44\xe2\x22\xe8\x60\xee\xb7\x0f\x88\xf2\xe5\x19\x8b\xd9\xf6\x59\xf5\xc8\xc5\xd3\xea\xda\x64\x45\x2f\xb5\x13\xf2\x87\xf5\x35\xa2\x9d\x1e\x84\x00\x00\xbe\xf6\xb5\xaf\x65\x99\x96\x5b\xb7\x6e\x85\x85\xaf\xb0\xab\xc6\xc7\xf7\x7d\xe9\x55\x17\x89\x3a\x44\xfd\x01\xe9\xbc\x93\x52\x8b\x44\x72\x20\x9f\x85\x7a\x5f\xaa\x46\x02\x90\x92\xaa\x21\x05\x56\x74\x5d\xd7\xb9\x21\x06\x0e\x8b\xc5\xc2\x02\x40\x5d\xd7\x46\x4a\x5f\x84\x94\xc4\x88\x7a\x27\xb4\x4a\x48\x66\x02\xd3\xa4\xd4\x4d\xa1\x1f\x72\x75\xe2\x74\x6b\x77\xf2\x2c\xe3\x4a\x06\xdc\x7b\x1e\x1d\x1d\x0d\x31\xb0\x43\xcf\x25\xa9\xf8\x60\x3f\x49\x57\x8b\xe7\x75\xa2\xad\xc1\x70\x05\x54\x12\xdd\x9a\xca\xc3\x10\x77\xaa\xa2\x04\x88\x08\xdd\x7e\xf0\x42\xe4\x1c\x24\x53\x97\x2b\x9b\x12\x5d\xbd\x48\x10\x63\xf5\x44\xa1\x94\xd4\x8f\x42\x15\x7c\x7d\x54\x75\xa4\xeb\x06\x3e\x05\xb0\x92\xd5\xed\x6a\x9b\x9f\x0c\x68\x29\x4d\xda\xa1\xc5\x1b\x99\x30\x2d\x15\x2b\xe5\x3f\xe4\x5f\x5a\xdc\x73\xe0\x28\x07\x84\x64\xdc\x5c\xbe\x43\x03\x71\x08\xcc\x6d\x02\x8a\x86\x08\x60\x0e\xb9\xe7\x24\x4f\xb9\xfe\x2c\xa5\xc1\x07\x3e\xf0\x81\x6c\x9e\x9e\x90\x04\x11\xae\x65\x63\x5a\x8c\xab\x86\xf7\x9c\x9a\xb4\x73\x72\x70\x07\xab\xc8\x4e\x5a\x42\x3a\x0e\xa9\x78\x1e\xab\x38\x69\x8d\x5f\xa6\xc3\x72\x2d\x11\xbc\x88\x9f\x4e\x30\x71\x40\x5b\x1a\x29\xba\x88\xda\xd3\x18\xba\x3e\xbd\xe4\x94\xf1\x4c\x67\x53\x90\xf8\x04\x10\x54\x9e\x6d\x3d\x06\x25\x01\x2f\x11\xd9\x79\x20\xd6\xcf\xce\xf7\x89\x07\x47\x31\x2d\x31\xea\xaa\xe1\x59\xd5\xf0\x8c\x98\x6b\xa6\x9e\xea\x41\x8e\xf7\x64\x5c\xbc\xf7\xbd\xef\x35\x9f\xfe\xf4\xa7\x5d\x9d\xc2\x02\x02\x91\x2e\xa8\x34\xa6\x2b\x33\xdb\x9b\xd7\x57\xa7\x2b\x73\xcd\x30\xa6\xa5\xd6\x6a\x70\x91\xeb\x99\x3e\xe0\x48\x99\xb5\xa0\x45\x13\x3d\x84\xcc\x6f\xaf\xdc\xe2\x10\xa0\x7a\xd2\x98\x2b\xbb\x8b\xfa\x9d\xb3\x55\xf5\xad\xf9\xc4\x1e\x22\x55\xd7\x48\x35\x51\x69\xee\xf4\xe6\xe7\xd1\xd1\x11\xbe\xfc\xe5\x2f\xe7\xb6\x4b\x7b\xb7\x04\x12\x9b\x0d\x6f\xdb\x51\x02\x2d\x40\x5c\xe4\xa5\x4d\x87\xff\x4d\x9e\x95\x4a\x44\x4a\x7e\xe0\xda\x04\x65\xc7\x51\x72\x25\xc6\x70\x13\x50\x13\x9c\xbb\xac\xd2\x00\x71\x9b\xb5\x02\x77\x9a\xce\xcb\xad\xfa\xf2\x37\x79\xce\x81\xed\xc2\x73\xe2\x77\x8e\xf6\x9f\xd7\x6d\xda\x9f\xa5\xf7\xb5\x44\x7d\x5d\xe6\xc1\xe9\x85\x5b\xda\x79\x68\x47\x80\x09\xc4\x50\x6e\x15\x70\xf4\xa5\x27\xde\xf4\xaa\x24\xf6\xe1\x1c\x68\xbe\x2f\x9b\x55\x7c\x7d\x76\xa4\x3f\xbf\x21\x8a\x8f\x5d\x49\x3e\xef\xcc\xa4\x2d\x72\x44\xaa\x8e\x42\xd2\x12\xeb\xd3\xdf\x0a\x2e\x5d\x0e\x18\x6c\x22\x72\x94\xef\x7a\xe0\xe5\xc4\x70\x9a\x6b\x4c\x06\x7d\x26\xae\x74\x25\x89\x4c\xae\x4e\x25\x37\x04\x84\x4b\xf1\x37\x49\x53\x9a\x80\xba\xbd\x25\x00\x98\x4b\x3b\x94\xbf\x26\x18\x25\x97\x1a\xe6\x3a\xc2\x6e\x5a\x9e\x92\xc5\x2c\xa6\xe5\x1e\x28\xd0\x2b\x8c\x97\x16\x86\xb9\xa1\x41\x88\x07\x1c\x44\x3d\x35\x4a\x70\xbd\x15\xdf\xe7\x11\xf3\xea\x8e\x02\x20\x51\xbe\x28\x53\x26\xcd\xe5\x49\xbd\xd0\xf0\x2e\x7d\xbc\xea\x46\xab\x87\x08\x7e\x5a\x47\x15\x55\x5a\x20\xf7\xb2\xef\xa6\x6b\xa9\xa1\x91\x7a\x30\x29\x4a\x22\x16\xf3\x34\x3e\x8c\xb1\x3c\x35\x2d\x4f\x89\x51\x0b\x69\x0b\x50\x58\x08\xbc\x7b\xf7\xbb\xdf\x1d\x38\x50\xc5\xe5\xca\xbf\x1a\x40\xbd\xb5\xaa\x76\xf6\x16\xf5\xdb\xc6\x2d\x5d\x26\xbf\xa3\x52\x37\x17\xc9\x10\x48\xfd\x38\x13\x59\xb8\x1c\x28\x19\xa2\x5f\x62\x84\x0d\xc6\xf5\xfe\x23\x4b\xbb\xb3\x55\x75\x75\x6b\x65\x76\xd0\xb7\x35\x09\x52\x27\x4f\xeb\x94\xb1\x72\x76\xde\x7c\xf9\xcb\x5f\xd6\xd2\x8c\x1e\xb8\x10\x7f\xde\xae\x46\x6f\x13\x4e\x4e\xb7\x55\xbf\x5e\x0d\xa2\x8f\xed\xcf\xa9\x43\x1a\x55\x36\x9e\x7b\xee\x39\xad\x16\x2a\xb9\x12\xd3\x94\x73\x43\x74\xb6\xe7\x94\x6a\x4a\xf7\x49\xb6\x8f\xd4\xb3\x57\x7d\x35\x2a\x9e\x07\x6d\xb9\x6d\xde\x43\xed\x2f\xcd\x89\x4d\x70\xc3\xa6\xf1\xd7\xf6\xb9\x9c\xa0\xeb\x16\xb2\x92\x7f\x70\x4e\x2c\x07\xf9\xa7\xc4\xe8\x61\x57\x11\xf9\x7c\x94\x41\xa2\xa4\xdf\x1d\x1d\xea\x1f\x25\x1e\x4e\x0e\xcd\x31\x7c\x2c\xf3\x20\x35\x91\xa5\x15\x3e\x89\x7f\xf3\xf9\x48\xbc\x91\x3c\x3b\x69\x0b\x8b\x0e\x96\x86\xb8\xb9\xbe\xc8\x1c\x15\xee\xdd\xd0\x42\x9d\x03\x2d\x9b\x02\x11\x3d\xa8\x73\xf9\xe4\xe2\x96\xea\xb5\x49\x3d\xf5\x04\x28\x81\xb2\x1c\x40\x29\x2d\x16\xb9\xbc\x91\x89\x9b\xcb\x3b\x97\xc7\x3a\xe9\x54\x8e\xc8\x6a\x8e\x07\xcf\x3d\xf7\x9c\xd4\x47\x67\xaa\xd1\xc5\x27\xc0\x98\x16\x35\x31\x4f\xbb\xb1\x26\x00\x6d\x40\xde\x88\xe3\x8d\x29\xa8\x59\x58\x4c\x8a\x0e\x98\xa4\x8b\x31\x13\xbb\xf9\xe1\x6d\x58\x10\x6c\x44\x92\xbc\x5d\x40\x37\x9d\x62\x3c\x20\x62\x99\x60\xc7\x02\x72\x71\x39\x96\x47\x9d\x94\x22\xa6\x75\x40\x23\xb0\xf4\x11\x08\x78\x35\x57\xb8\xec\x91\xdd\xdc\xe8\x4d\x6c\x84\xfa\x90\x97\xba\x70\x0a\x90\x7a\x60\x46\x3a\x57\x7e\xb0\x5b\x71\x89\xe2\xbd\x67\x21\x93\x28\xd8\xf2\x82\xd8\x50\x4e\xe0\x94\x6a\xb2\x18\x3b\x89\x98\xb4\x53\xe9\x17\x2b\x08\xc1\x63\x8f\x3d\x96\xec\x2a\x53\x69\x03\x70\x61\xe6\xba\xb6\x34\x9b\xae\xcc\x9e\x61\x9a\x75\xd5\x92\x4c\x94\xef\x1a\x39\x36\x14\x98\x90\x86\x7b\xc9\xb7\xee\x83\xbb\x68\xd3\xe3\xbf\x6a\xd2\x82\x3e\x9e\xe3\x6c\x50\xe2\x8c\xa5\xd9\xb4\x31\x97\xa7\x2b\xb3\x4b\x8c\x60\xe7\xa2\xfe\x86\xe6\xc2\xe0\xfa\x71\xef\xde\xbd\x2c\x80\x71\x0c\x61\x58\x8c\x29\xee\xf8\x91\x47\xcf\x2f\x35\x40\xf1\x00\x87\xdc\xe1\x69\x48\x81\x4a\xa3\xf2\x0d\x36\x1c\xbe\xdc\xbb\x77\xef\x02\x00\x3e\xfc\xe1\x0f\x6f\x04\x62\x33\xae\x24\x11\xd2\xae\xb4\x2e\x24\x69\x7f\xf4\xa3\x1f\x69\xc9\x47\x11\xc0\x08\xa0\x92\x18\x22\x4b\x00\x23\x6c\x66\xf4\x33\x6e\xde\xbc\x69\x4f\x4f\x4f\x37\xa9\xef\x26\x0c\xe4\x3a\x86\x57\x33\x9b\x43\x65\x86\x78\x39\x1b\x97\x9c\xd8\x2b\x97\x49\xd1\x65\xb6\x75\xa1\x67\xe3\x22\x99\x4e\x05\xfb\x23\x33\xea\xe5\x26\xfa\xb7\x8b\x25\x61\x89\x66\x60\x3b\xbf\xf4\x7e\xa3\x94\x10\x0c\xd5\x1f\x01\x24\x25\xb4\x59\x54\x98\xc9\x81\x97\x14\xac\xf4\xd4\x43\x3e\x4c\xd8\xb8\x00\xe5\x85\xd5\x3b\x0d\x2c\xa4\x9f\x74\x7a\xd1\xd5\x7e\x5a\x04\xab\xe3\x6f\xf2\x9e\x03\x4b\xba\xee\xa5\xdf\x21\xa0\x91\x6b\xf3\x90\x1b\xaa\x9b\xae\x63\x09\x9c\x00\xfd\xbe\x2d\xe5\x07\xe4\xbf\x0d\x88\xc8\xfc\xe9\x9f\xfe\x29\x80\xac\x34\xcd\x8f\xf5\x30\x71\x89\xb9\x26\x4b\x75\x22\x41\x48\xc6\x53\xf7\x9b\x6e\x08\x92\x76\x24\x2e\x91\xba\x70\x31\x8c\x77\x39\x60\x5d\xbe\xe4\x16\xed\xe8\xef\x4f\xaa\xf5\x63\x95\x93\x19\xe4\x77\x1b\x25\xf6\x20\xee\x34\xe9\xae\xc8\x34\x2e\x7b\x69\x25\x3c\xf8\x88\x65\x44\x30\x12\x57\xc2\x70\x59\x64\xa8\x93\x9f\x27\xfd\xe6\x85\x73\xab\x7d\x87\x24\x75\x11\x3b\xf5\x00\x27\xb1\xf5\x6a\xa2\x98\x49\x6f\x7a\x87\x76\xc0\x8b\x79\x3c\xb6\x31\xd4\x01\x97\xdc\x76\xd2\x1e\x51\x25\xa2\x60\xa0\x2b\x76\x0c\x1a\x41\x03\x24\xc1\x0e\xf9\x55\x16\xd3\xda\xd2\x8c\xc2\x75\x0f\x24\xf2\x0c\x4f\xba\xd6\xc1\x25\xd7\x26\x24\xf6\x40\x29\xe3\x97\xee\x52\x52\xf4\xd1\xa7\x2d\x71\x7d\xa2\xdf\xe4\x10\x05\x03\x06\xa8\xeb\x96\x76\x26\xad\xd9\x31\x96\x6a\x6b\xe2\x39\x2e\xbe\x8f\x04\xbd\x33\x00\xec\x27\x3e\xf1\x09\xf3\x2f\xff\xf2\x2f\x43\xb4\x2e\xbc\x7f\xe5\x2b\x5f\xb1\x40\xef\xb2\xde\xc0\x1c\x38\x5b\x8c\x70\x02\x39\xa5\x3b\x6e\x7a\xeb\x0d\x90\x5c\x62\x28\xeb\x66\x45\xfc\x5e\xfa\x9b\x37\x6f\xda\xcf\x7c\xe6\x33\xe6\xef\xff\xfe\xef\x2d\x00\x7c\xf7\xbb\xdf\xcd\xd1\x62\xe9\x4a\x61\x9b\x2c\xf0\xb9\x34\x39\x9a\x8e\x7f\xfc\xc7\x7f\x0c\xfd\x23\xeb\x97\xb3\x13\xd2\x6b\x8f\xf4\x2f\x3d\x6b\xc9\xca\x0b\x2f\xbc\x30\x50\xcd\xb5\x6e\xd3\xf6\xe6\xc2\x87\xd6\xa4\x10\x57\xda\xb8\x6c\xe2\x72\x04\x1f\x40\x0a\x56\xd4\x02\x2e\x8f\x1d\x36\x4e\xe2\x02\xea\x08\xba\x98\x48\x29\xd0\xe8\x5c\x47\x7c\x03\x91\x12\xd3\x2a\x89\xe7\x8d\x0d\x45\x7c\x6d\x5c\xab\x49\x42\x6e\xed\x88\x79\x89\x8f\x0a\x81\xab\x52\x50\x64\x59\xf4\x83\x47\xec\xde\xe6\xc5\xf7\x83\xec\x1b\xb1\xab\x28\x37\x81\xbd\x2b\x2d\xc6\x3a\x5c\x3e\x6f\x32\xb1\xb2\x13\x22\x53\x4e\x49\xe2\xa0\x11\xf4\xd0\xe2\x5e\x9a\xec\x39\x70\x93\xab\x63\x2e\xbe\xae\x43\x89\x20\xe6\x00\x9f\xf7\x2f\xc5\x2b\x49\x65\xb2\x75\x63\x66\xfb\xdc\x73\xcf\x79\x03\x3a\xef\x17\xea\x22\x88\xb7\x01\xbb\x85\x91\xd9\x71\xf4\x51\xbc\xd2\x83\xd4\xb9\x05\x37\x63\xa8\xdb\x33\x62\x10\x71\xc3\x29\xd0\x72\x05\xf3\xab\x56\xb2\x1a\x49\x90\xe0\x1d\xc5\x4a\x78\x80\x13\xc4\x3d\x10\x79\x89\xb9\xe8\xcb\x0c\x9c\x08\x45\x80\x10\x70\x84\x07\x2a\x24\x38\x00\xcd\x9d\x73\x58\x58\xe3\x96\xed\x08\x56\x92\x2c\x5c\xd9\x24\xda\x18\xb2\x22\x41\x8b\x9c\x28\x83\x54\xbb\xbb\xf8\x9d\xa7\x03\x3f\x63\x62\x4c\xc4\xf9\x52\x39\x06\x21\x8c\x29\x2f\x3d\xf5\xd2\x96\xcc\xa2\xa9\x81\x4f\x6d\x98\xc6\xb5\xa5\x19\x65\x68\xae\xfc\x8c\x3d\x7a\x14\xea\x1b\xdb\x97\x4b\x9b\x30\x58\x3a\x1f\x45\x04\xfb\x34\x4f\x60\x62\x51\x8c\x34\xde\x66\xc0\x54\x8c\x69\xdd\xd2\xd4\x70\x3c\x3f\x45\xb6\x57\x83\x09\x05\x5a\x80\x61\x9a\x11\xfc\xf6\xf7\xf7\xf1\x95\xaf\x7c\xc5\xfe\xee\xef\xfe\xae\xf9\x9b\xbf\xf9\x1b\x2b\xe6\x59\xf6\x02\x5b\xe5\x67\x33\x7e\xde\x7e\x25\x71\xcc\xf9\xb3\x58\x3c\x28\xc8\xd4\x3b\xf7\xbe\x96\x91\x57\x6e\xb0\xed\x28\xd3\xb5\x6c\xfd\x72\xaa\xac\x67\x9f\x7d\xd6\xc8\x31\x2a\xed\x65\x36\xb5\x57\xf9\xea\x57\xbf\xba\x09\xa3\xfb\xb3\xb8\x92\xf4\x65\x23\x86\x56\x2f\x46\x9a\x60\xe7\x16\xab\x5c\x9a\x04\xac\x28\xa4\xdb\x3b\x65\x8f\x3c\x52\xd7\x83\xcb\x13\xa4\xc4\x53\xfa\x71\x12\x2f\x8d\x13\xb7\x44\xcb\xdc\x4a\x3c\x4c\x81\x0e\x38\xee\x4d\x6f\x8b\x16\x22\x5c\x8e\xd2\x16\x50\xb4\x3c\xf7\xaa\xa1\x52\x5f\x64\x8e\xbd\x86\x78\x97\x7f\x28\xfc\xea\xf0\xdc\xb3\x96\x74\xe4\xf2\xcc\x22\x58\xf1\x2e\xf3\xc8\x85\x97\xf2\xd7\x4e\xa7\xd5\x83\x7e\x53\x8e\x24\x17\xf6\xd3\x10\x92\xa1\x7a\x97\xf2\x1b\x6c\xab\xb3\xe3\xd2\x5c\x7a\xcf\x91\x05\xdc\x89\xb9\x1d\x67\x0a\xe4\x39\x5f\x88\x91\x46\x69\xbc\x00\x90\xfc\xbf\x72\x70\x53\xfa\xc7\x41\x0a\x11\xc4\x1d\xf0\x8b\x74\x8c\x2f\xf2\x25\x04\x55\x8e\xd0\x1a\x88\xfc\xb9\x9f\x7f\xd7\x01\x01\x5c\x74\xf9\x71\xf0\xf6\x65\x78\xbc\x14\x92\x24\x15\xee\x02\x82\xf4\x86\xc4\x49\xba\x12\xab\xf9\xb9\xd4\xeb\x83\x18\xdf\x17\xda\xe1\x1d\x21\x11\x92\x2b\xb2\x57\x59\x01\x42\x0d\xc5\x8e\x99\xe2\x9a\xdc\x99\x53\xdc\x9d\x9c\x8b\x9c\x93\xfe\x72\x11\x70\xe3\xc0\xaa\x78\x0e\xbc\xb2\x31\x4c\xe3\xca\x9a\x29\x81\xea\xde\xa1\x0b\x4a\x10\x07\xf1\x2b\xb7\xa2\xa7\xfd\xe8\x7a\x92\x55\x7c\xe6\xe4\xdd\xc7\x0d\x60\x12\x0e\xf0\x89\xf7\x12\x60\x16\x18\x13\x00\x0c\x59\xaa\x2b\xa6\xa9\x89\xe7\xa7\x40\xfc\x26\x1b\x34\x32\x9b\x32\xe4\x73\x69\x1e\x03\x88\xd2\x97\xbf\xf9\x9b\xbf\xb1\x5f\xf8\xc2\x17\x8c\xb7\xf3\x68\xdb\x16\x6a\x2b\xb5\x05\xa2\xaa\x43\xfa\x65\xfe\x42\x1d\x7d\x7e\x12\xb4\x6c\x6d\x6d\xe5\xe6\x6e\x76\x3e\x9f\x23\x7c\xd3\x78\x9a\x36\x97\xf2\xd0\xc0\x18\x99\xdf\x64\x5c\xca\xe7\xf9\x7c\x1e\x32\xfb\xc2\x17\xbe\x60\x76\x76\x76\x7a\x69\x55\xde\xa5\x35\xa0\x54\xbf\xdc\x73\x29\xce\x3a\xff\x5c\xdd\xc2\xbb\x56\x15\xad\xe3\x5a\x73\x71\x35\x42\x0c\x4e\x89\x0e\x45\x40\xca\x25\x78\x3f\x49\x38\xd3\x89\xe7\xdf\xa9\x10\x2e\x63\x44\xa2\x9b\xcb\xa3\xf4\xeb\xe3\x00\x19\xb4\x0e\xb1\x9d\x5a\x10\xcf\x1e\xbc\xc9\x48\x9d\xfc\xfb\x33\xcf\x3c\x63\xd4\xd5\xe7\x39\xe9\x02\x90\x0e\x9a\x21\xce\xbf\x04\x44\x4a\xd2\x97\x21\x29\x85\xf6\x5b\x27\xd1\x00\x86\x07\xb0\xae\xe7\x3a\x89\x90\xcc\x4f\xd7\x61\xd3\x3a\x9d\xb7\xcd\x43\xcf\xb2\xde\xb9\xba\x01\x08\xdf\xd8\xef\xa8\x00\x10\xc6\x40\xca\x71\xcb\x43\x18\xd9\x8d\x21\x39\x48\xc5\x60\x94\x2a\xc9\xfe\xa1\x6c\x62\x94\x87\x34\x42\xb2\xe2\x32\x21\xaf\x3a\x81\x28\x07\x62\x5c\x67\xd8\xfa\xa8\x2a\x8a\x8b\xa3\x0c\x4d\xde\x64\x25\x43\x3b\x38\x4a\x69\x12\xd6\xdd\x9f\x25\x93\xdb\xa5\xc7\x08\x12\x9a\x18\x5d\x95\x98\x9e\x9e\x1b\x05\x4e\xbe\xac\x54\x92\x13\xa5\x31\xae\x4e\xa9\x8e\x37\x86\x87\x3c\x09\xe8\xce\x95\x0a\xdf\x4b\xcd\xff\x64\x9e\x96\x6c\x38\x74\x1a\x3f\x06\x98\xd9\x18\x90\x31\x16\xb5\x71\x76\x34\x94\x13\x6f\x14\x5d\xda\x21\xaa\xde\x7d\x49\x89\x56\x0f\x49\x3f\x01\xe0\x7a\xe5\x2a\xc2\xca\xee\xbb\x84\xc3\x78\x63\x90\xec\x27\xcf\xb4\x6a\xc9\x53\x56\x0a\x92\x79\x2e\xc5\x09\xee\x4b\x5f\xfa\x52\xf0\xff\xb3\x3f\xfb\x33\x0b\xc4\xad\xd4\xff\x05\xbb\x5d\xc2\x7c\x3e\x3d\x3d\xcd\xe5\xb5\x2e\xff\x4d\xcb\x3f\x4f\xbc\x12\xb0\xdb\x64\x3d\x1e\xa2\xb3\xf8\xd2\x97\xbe\x24\x9f\xcf\xf5\x1d\x36\x70\xa5\xfa\x6d\x22\x4d\x1a\x6a\x6f\x96\xa9\x2c\x21\x20\x49\xa8\x4b\x48\xaa\x27\x56\x0d\xea\x20\xb1\x78\xab\xb0\xc4\x25\x80\x41\xcc\xa5\x14\xe8\x43\xd9\xa5\x71\xef\x80\x39\x0d\x5a\xc2\x99\x58\x99\xb2\x7a\xbf\x82\x8d\xc9\x95\x2d\xd3\xab\x3c\x7b\xe8\x73\x48\xa7\x98\x11\x49\x66\x39\x02\xf5\x5e\x92\x54\x0c\xa1\xe0\x4d\x07\xe4\xa6\x60\x54\x3a\x2d\xd1\xc9\x95\x51\x92\x56\x94\xdc\xba\x34\x83\x03\x78\x83\xfa\x94\xde\x87\x9e\x87\xfa\x3a\x38\xcf\x61\xae\x1b\xe7\x6c\x08\xf0\x97\x71\x4a\x16\x39\xac\xfb\x8a\x6d\x8e\x32\x85\xd4\xf9\x34\x61\x1d\xce\x40\x01\xf6\xe0\x45\xe4\x4d\xdd\x6f\x5e\x88\x20\xf2\x70\x71\xc8\xe3\x80\x50\x89\x7e\x7d\x38\x00\x03\x0f\x76\x3c\xd2\xea\x17\x12\x0c\x79\xb5\xd4\x40\x18\xdf\xb2\x7c\x62\x99\x36\x06\x66\xf0\x56\xcc\xc3\x13\x11\x59\x0e\x28\x8d\xa3\x8a\x08\x52\x0c\x82\x65\x43\x0d\x67\x00\x8b\xdf\x1d\x19\xcb\x8b\xcf\xea\xde\x22\x1f\x2e\x25\x0e\xdd\xf5\x01\x04\x63\x0d\x60\x0d\x1a\x10\x2c\x4b\x02\xc6\xf1\x53\xe6\x68\x8f\xa4\x57\x1e\xa7\xca\x40\x9f\x26\xd9\x31\xe9\xe2\xa9\x62\x8a\x2e\x84\x89\xe6\x6b\x3a\xc9\x00\x5a\xc3\x68\x88\xad\x8d\xed\xf4\xe0\x0c\x50\x92\x96\x01\x89\xcb\x7f\x89\xff\xcd\x9b\x37\x01\x00\xef\x7d\xef\x7b\x83\x9f\xfc\x1e\x03\x77\x4a\xc9\xe7\x12\xd3\x5d\x92\x44\x9c\xe7\x79\x9d\x5b\xb7\xf6\xae\x2b\x27\x57\x47\xcd\x7c\xe5\xca\xc9\x95\xbb\x49\x99\x39\xb7\x49\xdc\x52\xde\xe7\x01\x48\xbd\xbc\x37\x11\x61\xe5\x16\x4f\x19\x66\x7f\xf1\x17\x7f\xd1\x94\x26\xb7\x76\x8e\x50\x04\x09\x06\x90\x4e\xd8\x20\xd9\x10\xef\x91\x1e\x79\xaa\x2a\xf2\x63\x9d\x07\x4b\xfa\x95\xc4\x01\xfa\xe5\x74\x9b\x38\x28\xa1\x97\x39\x06\x48\x4a\x57\x08\x80\xe9\x38\xa7\x62\xff\xe5\xfa\xc3\x5d\xb2\x58\x12\xf7\x95\x44\x63\x39\xb7\x6e\x92\x0d\xa5\x59\x47\x14\x4c\xe6\x2f\x27\xfd\xd9\x74\x92\xf6\x00\x6e\xa6\xcc\xa1\xe7\xf3\xa4\x29\xf5\x63\x69\xd2\x0f\xe5\x5d\xf4\xcf\x71\x98\x45\x47\x00\x57\xb0\x36\xdc\x22\x4e\x90\xab\x48\xc4\x2a\xd2\x93\xd2\x30\x40\xa4\x61\x25\xd1\x48\x23\xc9\x94\x0a\xce\x17\xed\x24\xe2\xd8\xef\xe2\x26\x20\x42\x4a\x37\x64\x39\x94\xfa\x78\xf6\x5f\xe0\x9c\xb4\x39\x04\x10\xd8\x61\x1d\x16\xd2\xa3\x6e\x7e\x84\x43\x28\xc5\x89\xb7\xb1\x04\x0e\x71\x52\xda\xc2\xf9\x36\x09\x29\x41\xaf\xb9\x6e\x45\x8f\x17\x49\x73\x07\x5a\x0c\x6c\x07\x0a\x59\x82\x15\x13\x93\xa5\x8d\xf2\x12\x54\xed\xaf\xd5\xe2\x3e\x1f\xdb\x5d\xcc\xda\x30\xb8\x93\x06\xf9\x7e\x12\x1c\x14\x27\x7d\x92\xfe\xfa\xf8\xb9\x11\xd7\xb5\x35\xbd\xb7\xc8\xf7\xb9\xef\xcc\xcc\x27\x4f\xd2\x73\x2e\x20\xf5\xb2\x96\xd0\x34\x95\x6d\x98\xf4\xfd\x58\x1e\x20\xa6\xd7\x9b\xa8\x0b\x17\x4b\x0b\x6d\x8e\xde\x40\xc4\x95\xe9\xf4\xc2\x6c\x5e\x79\xe5\x95\xa0\xe6\x91\xcc\xa1\x94\x2e\xa8\x72\x72\x75\xd1\xfe\x5a\xd2\x5b\xa2\x29\xfa\x5d\xc7\xd7\x71\xcf\x4b\x03\x2d\xf2\x79\xc9\x75\x59\xd3\x64\x5d\xd7\x21\x26\x57\xc6\x5b\x07\x68\x74\x9a\x5c\x9f\xe5\xda\x21\xe3\x97\xca\x2b\xf5\x4b\x91\x56\x6b\x43\xb1\xdc\xe0\x28\x75\x52\xe2\x27\x55\x23\x1b\x10\x74\x0b\xc0\x7a\x0e\xc2\x63\x11\x4e\xe9\x24\x82\xe8\x1c\x03\x92\x10\xc9\x25\xb0\x20\xdd\x39\xe2\x2e\xf2\xf7\x04\x51\x2a\xd3\x25\xc3\xeb\x18\xd7\xc8\xb9\xc6\x14\x40\x38\x40\xaf\xec\x72\x13\x5b\x1c\x40\xe7\xfb\x60\xdd\xb3\x7f\x37\x99\x38\x72\x00\x6f\xe2\xd6\x49\x3f\x36\x0d\x2f\xc5\xd1\x75\x1c\x8a\xbb\x2e\xcf\xff\x8a\x34\x3f\x6b\xde\x45\x7f\x7d\x66\x8f\xf3\x2b\x8e\xfb\x8e\xa3\x47\xe3\x07\x71\xb7\x5e\xb9\x7f\xb3\x8b\x91\x5f\x6d\xe2\xc0\x75\xd0\x03\x01\xf8\x10\xe2\x20\x85\x97\x76\xa4\x79\xc4\x34\xee\x3d\xec\x54\xf2\xcf\x21\x23\x78\x03\x5b\x1f\x1e\x6a\x95\x70\x06\xbe\x9c\xb4\xc6\xdd\x1c\x8e\xf9\xf8\xf6\xc9\x9d\x30\xb2\x2e\xc9\x2d\x63\x3e\xad\xe3\x50\x92\x56\xb0\x2f\x52\xaa\x8b\xe2\x95\x07\x94\xf4\x45\x64\x72\x64\xd7\xc8\x4f\x12\xeb\x29\x9a\x66\x08\xfe\xfa\x0e\x46\x0f\x8c\x6a\xb5\x51\x70\xcf\x3d\xf7\x9c\xdc\xfd\x12\xe2\xcb\x71\x20\x9f\x5b\xc3\xcd\xb2\xb2\x0b\xa6\x38\x0e\x42\x17\xbb\x76\x45\x5a\x23\x7a\x38\x43\xc7\x12\xc6\x4e\xd0\x28\x52\x7d\x11\xc1\x4b\xec\x88\x5e\xfe\x2c\x7c\x92\x3a\xf9\xce\xef\xbe\x4a\x4b\x68\x56\x95\x5d\x9c\xd5\xbc\xb0\x05\xc2\xa7\xd5\xe4\x02\x48\xe4\xc0\x47\xee\x5d\xbb\xd2\x7a\x13\x9e\xdb\xb6\x45\x6e\xeb\xae\x52\xfd\xe4\xd6\x2e\xa8\xdf\x21\x1a\xbb\xae\x6e\xb9\xf8\xb9\x72\x74\x7c\x1d\x96\x03\x15\x43\xfd\x55\x7a\x2e\xd5\x23\x97\xf7\x50\x3b\x4b\x6d\xcb\x95\x3b\xd4\xde\x75\x71\x36\xed\xe3\x5e\xc5\x72\xc8\xb8\xf4\x61\x7a\xa0\xc5\x59\x20\x6f\xc8\x81\x32\x98\xc2\x8e\x9c\x14\x78\xe8\xe4\x3d\xb4\x92\xcb\x3f\x65\x5f\x35\xa7\x91\xa4\x52\xb4\x58\xb2\x66\xac\xf3\x51\x79\x6b\xee\xcd\x49\x5b\x92\x0e\x1d\x92\x34\x0d\xb8\x75\x28\x1e\xc8\x7f\xc0\xd2\xf7\xf9\xff\xca\xe9\xba\x9e\x47\xf4\xf7\xff\x17\xf7\x5f\xd6\x5f\x43\x63\x9f\x0d\x59\x26\x2c\x55\x8a\xe4\x27\x65\xb5\xbb\x41\x99\xaa\x05\xc4\x82\x0b\x3f\x5e\xe5\xca\x2c\x65\x0c\xf1\x9d\x59\xac\x46\x94\x86\xa6\x6f\xfe\x9e\x1f\x95\x07\xc5\x49\x95\x00\x78\x25\x01\x4a\x24\x2d\x9c\x42\x26\x59\x7d\xf6\xdc\x83\xfc\x13\x0b\x6e\x28\x8e\xd5\x62\x1c\x1b\x0e\x12\x5b\x9b\xfd\x75\x20\xb1\x19\x1c\xe3\x52\xea\x5f\xf8\x42\xdd\xbd\x63\x86\xce\x40\xe7\x1b\xc3\x05\xf5\x6f\xd6\x2d\x2b\x5e\x9e\x8e\xec\x71\x4b\xbc\xd4\xe0\x4c\xfc\x84\x36\xca\x4f\x96\xb1\xa5\x4d\xa4\xcb\xd2\xcf\xf7\xaf\x4c\x97\x05\x2d\x2a\x2c\xd0\xcd\x10\x47\x94\xc2\x80\x35\xbc\x5c\x8c\xec\xe1\xe9\xc8\xf6\x80\xcb\x06\x74\xcf\x8a\xbf\x92\x2b\x49\x36\x7c\x7a\xf9\xbb\xce\x0d\xd1\xa6\xd2\x62\x38\x04\x2e\xb4\x3b\x0f\xe3\x56\x72\x43\x92\x96\x52\x19\xb9\xba\xaf\x93\x5c\x94\xca\x2c\xb9\x92\x84\xa6\x08\x22\x36\xcc\x77\x13\xb7\xee\x9b\xf5\x22\x0e\xa1\x38\x0d\x66\xb2\x08\xad\x70\x9e\x45\xef\x9d\xe1\x0e\x6e\xcb\x10\x09\x46\x14\x80\xf8\xf7\x1c\xb1\x55\xc2\xd9\x30\xd7\x8b\x18\x47\x04\x32\x21\xe1\x6c\x18\x29\x61\xc8\xad\x15\xee\x9c\x2f\x91\x35\xf9\x83\xf4\xd2\x9a\x24\xdc\xdc\xe0\x64\x1e\xfa\x40\xeb\x90\x72\x2e\x8f\xa1\xb0\x12\x31\xc8\x89\xee\x34\xf1\xc8\x01\x29\x5d\x77\x1d\x3f\x57\x97\x75\x75\x58\xf7\xbc\x4e\xcc\xba\x2e\xac\x14\x9e\xe3\x08\xd7\xd6\x41\x9c\xd5\x91\x48\x5f\x72\x8e\x01\x6b\x2b\xb2\xd6\xd0\xc2\x8d\xfd\x04\x14\xc7\x73\x48\xc4\x38\x96\x1c\xb3\xc8\x48\x3a\x42\xb7\x43\xc6\xe3\x12\xee\x45\xed\x1f\xe5\x1f\x8f\x55\x49\x41\x88\x17\x43\x76\xd2\xd2\x08\x5e\xb4\x8a\x95\x72\x73\x31\x6e\xd3\x09\x15\xf1\xc7\x17\xb0\xcc\xc4\x4b\x49\x48\x4a\x5b\xe2\x96\x70\x4e\xf4\x24\x10\xcc\x83\xec\x90\x58\x57\x5f\x09\x92\x6d\xf0\x59\x30\x3b\x70\x23\x57\x7c\x21\xcd\x71\x86\x33\xbe\x3d\xb6\xa2\xc6\x56\x68\x62\x53\xfc\x82\x1d\xef\x22\xf3\xea\x23\x79\x8e\x8b\x8c\xab\xd2\x75\x55\xa2\x70\x53\xbc\x3d\xab\xed\xe2\x70\xda\x1c\x2e\x2b\x3e\xf6\xf5\x95\xf4\x2d\x60\x2c\x42\x9e\x81\x83\xfc\x92\x08\xfd\xad\xc1\x61\x38\xe7\x2a\x30\x64\x69\x36\x04\xf1\xa9\xd8\xb1\x6b\x0a\x14\xc7\xfc\xe2\x4e\xcd\x95\xe1\xf9\xc9\xa8\x3d\x38\x1d\xb5\x0b\x46\x1c\xf3\x42\x3d\x94\xf4\x55\x01\xc8\xeb\x39\xa9\x99\x61\xef\x34\x13\x96\x9b\xbf\x32\xed\x26\x34\xa6\x44\x2f\x4b\xcc\xe2\x50\x7c\x99\x2e\x57\xd7\x52\x7e\x3d\xa6\x1f\xfd\x7e\xd0\x65\xe7\x68\x72\xae\xaf\x74\xde\xb9\xfa\x0d\xf9\xe7\xda\x59\xea\xdb\x5c\x58\x4e\x5a\xa4\xcb\xd4\xed\xd1\x6e\x1d\x38\x0a\x7f\x9b\x7e\x64\x99\x61\xee\x63\xe5\x8d\x6f\x95\xbe\x97\x88\xdc\x05\x85\x80\x1c\xfc\x21\x1c\x3d\xda\x05\xcf\x7a\xb1\x60\xe9\x34\x3d\x4f\x98\xb7\xd2\x36\xc6\x20\x3a\x47\xc2\x7d\x75\x13\x33\x12\x01\x3f\xb1\x13\xee\xb2\x4f\x4c\x0c\x21\x48\x5d\xb2\x2e\xd7\x1f\xce\xc6\x05\x28\x7f\xa0\xa1\x81\xa0\xfd\x86\xb8\x90\x4d\xfc\x72\xe2\x3f\x8d\xb0\x73\x40\x2a\x27\x66\x85\x0a\xd3\xe5\x6c\xc2\xb9\x0c\xc5\x19\xca\xbb\x94\x76\x93\x7a\x0d\x95\x9d\x03\x94\x16\x48\xc1\x0a\x51\x7e\x0c\x04\x3b\x09\x02\xda\x1a\x4b\x3b\xa2\xb9\x14\xf5\xfb\xa7\x04\x5e\x04\x55\xab\xe2\x8a\xb5\x0b\x12\x04\x4a\xbc\x7c\x92\x54\x66\x22\xf8\x6c\x42\xdc\x0a\x2b\x19\x04\x4e\x9f\xbd\xc4\x23\x0e\x61\x2d\xad\x08\x77\x33\x47\x70\x4f\x14\xa5\x40\x3e\xfb\x6e\x72\x21\x48\x34\xb5\xe4\x20\x26\x0e\xea\xa2\x20\x20\x0a\x38\x48\xa3\x98\x58\x87\x64\xf2\x87\xbc\x29\x00\xc1\x80\xec\xe4\x76\xee\xd0\x2b\xae\x3c\x42\x63\x2b\x5a\xb4\x35\x2d\xd8\x31\x53\x52\xe5\x41\xe2\x2e\x32\xef\xef\x25\x2d\x5e\x55\xa4\xcf\x6d\x12\xaa\x22\x7f\x4c\x82\x3d\x1d\xd9\xe5\xfd\xd9\xea\xad\xd3\x51\x7b\xd7\x82\x1b\xf9\x09\x08\x51\xde\xeb\xa5\x26\xd2\xd8\xd6\x33\x4e\x92\xc9\x92\xe0\xb0\xcf\xb8\xc5\x6f\x20\xba\x46\x0b\x59\x62\xff\xa7\xd8\x32\x76\x6f\xf0\x67\x2c\x46\xf6\xf0\x68\xda\xde\x5d\x8c\xec\x82\xd2\xcb\x64\xe5\xe5\x84\x3d\x3b\x17\xe5\x24\xcd\xd1\xcf\x40\x7e\x4e\xe6\x18\x0c\x19\x67\x88\x46\xe9\x32\x65\x1e\xb9\xba\xc8\x72\xd7\x2d\xc4\xb9\x36\xc8\x67\xab\xe2\xeb\xb4\xb9\xf2\x72\xb4\x2e\x47\x93\x35\x70\xc8\x09\x14\x72\x7e\xa5\xb8\xb9\x75\x5f\xd7\x27\x97\xb7\x7e\xf6\xae\x54\xa6\xae\x97\x8c\x2f\x7f\x87\x80\xab\x05\x60\x87\x38\xd5\xd2\x7b\xee\x83\xe4\xc2\x01\xf4\x17\x70\x27\x55\xc9\x2e\x52\x29\x77\xa0\x08\x2e\x21\x10\x9b\x24\x7f\x95\x47\xdc\xaa\x29\xf2\x75\x04\x34\x10\xf7\x44\xf1\xdd\xe5\x42\xc9\x7b\x4a\xa8\x3d\x20\x4a\xea\xe7\xee\x1b\x39\x8f\x7a\x48\xd9\xb8\x00\x79\x30\x31\x84\x3a\xd7\xb9\xa1\x05\x78\xdd\xb7\x5a\xc7\x69\x94\x80\x45\xc9\xad\x1d\x1b\x03\xee\x3c\x65\x9d\xb7\x9f\x86\xe2\x9f\xb7\x8d\xc1\x65\x8c\x34\xc3\x19\x3f\xd6\x50\xd3\x8c\xe8\x20\xc9\x3f\x2c\x40\xdd\x4b\x50\xa1\x78\xe9\x43\x9a\x9b\x93\x84\x38\x49\x41\xe7\x25\x56\x96\x8c\xbc\x25\x91\xc4\xf8\x7f\x05\x1a\x29\x0c\x5b\x0f\xa0\xf0\xff\xb2\xf7\xae\x4f\x72\x5d\xd7\x7d\xe8\x6f\xed\x73\xfa\x74\x4f\xcf\x03\x03\x60\x38\x00\x41\x10\x84\xa8\x17\x25\xcb\x92\x2e\x29\x59\x26\xa3\xc4\x92\x6c\x39\xb2\xa3\xeb\x9b\xba\x29\xe7\x53\xae\xed\x4a\x15\xf1\x47\x81\x79\xd9\x4e\x4a\xce\xc3\x55\xa9\xbc\x6e\xca\xa9\x4a\x94\x5b\xb6\xa4\x28\x26\x43\xd3\x14\x45\x40\x22\x05\x92\x00\x01\x0c\x66\x06\x83\x9e\x9e\x9e\xee\xd3\xe7\xec\x75\x3f\x9c\xfd\x58\x7b\x9f\x7d\xba\x1b\x94\xfd\xe1\x56\xdd\x5d\x35\xd3\xe7\xb1\xdf\x67\xaf\xb5\x7e\x6b\xad\xfd\x20\x91\x6d\xf4\x2b\x61\x7f\x43\x17\x6c\x40\x97\x7d\x3d\x2b\xd3\x27\x00\x00\x20\x00\x49\x44\x41\x54\x26\xe2\x4b\xf3\x91\xa9\x0f\x05\xef\xc3\xba\xc4\x16\x01\xff\x50\x36\x51\xa8\x35\x36\xbd\xc7\x40\x51\x4f\x08\xbe\x21\xca\x22\x18\x5c\xa3\x50\xd6\x3d\x4c\xea\x9c\x4a\x50\x6b\x2f\x90\x56\x90\xdf\x26\x72\x15\x69\xc0\x1f\xf0\x27\xf2\xd0\x00\x74\xa5\x74\x39\xea\xd7\xa3\x47\x6b\xd5\xbd\x3a\xe3\xa9\xcb\x4b\x98\x00\x24\x40\xdb\xbf\x5d\xbc\x6e\x66\x77\x18\x87\x1f\x17\xc6\x3d\x46\x24\x9b\xc1\x02\x8f\xb1\x7b\xe1\xce\x65\x63\x59\x46\xa4\xd8\x09\xdc\x17\x18\xad\xac\xd5\x44\x1c\xf6\x59\x2b\x9e\x9e\x14\xd5\xe1\xd1\x5a\xf5\x60\x96\xeb\x72\x51\xff\xa4\x56\x94\x76\x84\x65\x72\x26\x15\x16\xd1\xe7\xaa\xef\x56\xb9\x4e\xd5\xa9\x4b\xde\x75\x85\x2e\xb9\xb9\x28\xee\xe3\xa4\x69\x8d\xd3\x2f\x7c\xe1\x0b\xad\x48\xf2\x59\xd7\xf5\xd6\xd6\x96\xcc\x73\x99\x1c\x58\xb5\x7e\x3f\x6f\xfc\xd4\xb7\x71\xcf\xe2\xc9\xb9\x8f\xa3\x99\x06\x26\x2b\x83\xb4\x83\x3d\x2d\x16\x55\x8a\xad\xf6\x8a\xf0\x38\x44\x6f\x15\x11\xbb\x66\xfa\xfc\x1d\x91\x49\xed\x20\xb8\xb6\x4c\xd2\x04\xab\xb9\x52\x32\x9d\xdc\x95\xd7\x47\x24\xb1\x3a\xa2\xad\x9d\x30\xfc\xe9\xd6\xcd\xc7\x35\x6d\x56\x5d\x26\x52\xb9\xaa\x28\x02\x2f\xb1\xd9\x2f\x46\xb5\xf1\xfb\x38\xa4\x4c\x8f\x5d\x71\x52\x1a\x4c\x2a\x2c\xcb\x67\x91\x69\x70\x15\xe2\x4c\xb5\xb7\xab\x1d\xa9\x3c\xe3\xb8\x5d\xed\xea\xd2\x72\x56\x21\x9e\x54\x5a\x17\x48\x6c\x3d\x6e\xe3\x50\x74\xb2\xac\xff\x23\x0d\x62\x5d\x15\x34\x62\x85\x8a\x34\x9c\x80\x17\x39\xc2\x1e\x6f\x91\x9e\x8b\x61\xad\x0e\x7e\x0c\x36\x40\x20\xe1\x0e\x42\x2c\x38\xfc\xc0\xf7\xfb\xbb\x84\x02\x9e\x5a\x84\x44\x41\xd2\xd8\xdc\x18\xdf\x79\xb1\xeb\x8f\xe5\x70\xc9\x58\xd0\x97\xa5\xa7\x80\xd0\x45\xd9\x96\xfe\x64\xce\x71\x33\x8c\x60\xb6\xe8\xc8\xef\x14\x1c\xb6\x83\x44\x19\x76\xc5\x92\xb3\x04\x90\xb0\xae\x2a\x2a\xeb\x1e\x8d\x75\x8e\x12\x44\x9a\x22\x7e\x67\x68\xd7\x3d\x93\xf4\x9d\xd8\x39\xd7\x9d\x92\x6c\xad\x2d\xf6\x17\x44\x7a\xda\xd3\xe3\xc3\xf5\xea\xde\x53\x8f\xf4\xa8\x57\xd3\x86\xb7\xcc\x18\x40\x12\xb5\xc1\xed\x3a\x6c\xda\x29\x17\x32\xc8\x4e\x71\x93\x8e\xa3\xfe\x94\xe3\xac\x89\x23\xf8\x93\xe8\x1f\x8e\xf8\x9c\xe4\xb5\xcc\x40\x99\xf1\xe4\xd1\xa0\xbe\x37\x1a\x54\x87\xb5\x42\x09\xf8\x93\x95\xc5\xb5\xe5\x73\x9a\xda\xbb\xd4\x26\xad\xf4\x48\xd3\xe2\x2a\x34\xef\xc2\x27\x3f\xf9\x49\xf5\x93\x9f\xfc\x44\xdb\x5f\xf1\x1c\x3f\xf9\xc9\x4f\x5c\x1c\x00\x30\xef\x17\xf1\xb1\x45\x9e\x86\x18\xac\xa5\x9e\xad\x1a\x16\xb5\x71\x51\x1c\x6c\x6d\x6d\xa9\xd1\x68\xd4\x6a\x2f\x00\x7c\xe5\x2b\x5f\x91\x56\x7d\xf9\xdc\xca\x29\xfc\xd2\x2f\xfd\x92\x93\xcf\x7f\xf1\x17\x7f\x01\x00\x18\x8d\x46\x2e\x9f\xdd\xdd\x5d\xec\xed\xed\x21\x51\x76\x0c\x6a\x56\xf9\xc6\x8b\x78\x72\x2a\xc4\x4a\x76\x4b\x31\xb0\xcf\x72\x11\x71\x55\x86\xbe\x30\x5e\xbc\xf1\x9a\x05\x34\xf6\x9a\xc1\x5a\x13\x6b\x67\xc5\xb5\x08\x1d\x11\xa8\x70\xda\x5b\x78\xde\x84\xa5\xf0\xa0\x9c\x58\xbb\x64\x3f\x43\xdf\x6b\x48\x14\x10\x68\xb0\x59\x9c\xb8\x17\xca\x61\x38\xdf\xc6\x98\xe6\x1b\x6b\x8d\xdd\x6d\x33\xb9\xea\xc0\x2d\x0d\x8f\xb5\x0f\xb1\xe5\x7f\x0b\x41\x8a\xfb\xc7\x11\xb2\x71\xbc\x54\xda\x55\x81\xc2\x22\x26\xb2\x2c\x5e\x57\x5b\x16\xdd\xa7\xea\xbf\x6a\x9a\xc7\x2d\x6f\x59\xdd\xbb\xca\x48\x7e\x03\x0b\x5a\xc4\x18\x0a\x18\x61\xf8\x9c\x35\x13\xf4\x7c\x40\x47\xac\x68\x0a\xf0\xb0\x11\x6e\x00\x1c\x60\xb7\x5a\xb1\x11\xfb\x66\x3f\x14\xbb\x09\x98\xd3\x8e\x25\x90\x10\x3e\x1d\xb9\x42\xc8\x6b\xe2\x16\xa4\xf8\xd5\x3d\x9e\x14\xe4\x0a\x23\x93\x3f\xc9\x8d\xeb\xac\x70\x37\x87\x29\x1a\x80\xd4\x58\x4b\x48\x58\x4e\xd8\x11\x6c\x53\x7d\x09\xdc\x7d\x19\xd6\xc2\xc2\x82\x36\x4d\x74\xdf\x1c\xc0\xd1\x9f\x15\xba\x9e\x72\x7d\x7c\xaf\x80\xc4\x2b\x93\x10\x09\x5c\xdb\x06\x2b\xd0\xad\x25\x88\xc4\x5c\x1f\x86\x56\x34\xad\x7b\x34\xd1\x39\x95\xd6\xe5\x01\x21\x90\x5a\x16\xe3\xc4\x9c\x16\xa9\xb0\x59\x81\x1e\xfd\x56\x00\xaa\x69\xae\x27\x0f\xd6\xcb\x7b\x27\xfd\xb5\xbd\xb5\x79\xb6\xab\x18\xb9\xc5\x16\x2c\xda\x1c\xf3\x1e\x3f\x2e\x4c\x1f\x0a\x55\x4f\x18\x9f\x02\xfe\xe9\x5c\x6f\xee\x01\x1b\x65\x50\xf0\x5a\x37\x26\x3c\xe8\x04\xc8\x7f\x07\x00\x4c\xac\x4f\x7b\x7a\xff\x68\x58\xed\x9d\x14\xf5\xd8\xf4\x8b\x3c\xc4\xcf\x8e\xf7\x14\x60\xb1\x21\x56\xc6\xe4\xf5\x22\x1e\x88\xcb\x97\x2f\xe3\xf6\xed\xdb\x49\xfa\xb5\xc0\xf1\xeb\x5f\xff\xba\x02\x80\xaf\x7d\xed\x6b\xc1\x46\x90\xf6\xb9\xdd\xa8\xee\xd7\x7f\xfd\xd7\xd5\x9f\xfc\xc9\x9f\x74\xf1\x82\x45\xfc\x76\x15\x9e\x9a\xca\xb3\x2b\xaf\x45\xcf\xba\x00\x91\x06\x3c\xc8\xf8\xfa\xd7\xbf\xee\xda\x17\x05\x65\xc6\x71\xeb\x9d\xf9\x3e\xae\xff\xa3\x03\x42\xf1\xca\x2b\xaf\xe8\xbd\xbd\xbd\xae\x36\x74\xf5\x4f\xca\xe5\xd5\x05\x50\x52\x3c\x39\x95\x4f\x0a\xe4\x06\x69\xba\x0e\x59\x8c\x23\xa6\xfc\x4d\xb1\x16\xba\xca\xb5\x16\xa7\xdb\xeb\x98\x39\xd9\x15\x04\x81\x32\x16\x68\x00\xf6\x60\x39\x72\xd6\x12\x73\xeb\xf2\xb0\x37\x2c\xee\xd9\x67\xe5\xdf\x51\x08\x64\x3c\xd3\xf4\x0f\x25\x98\xb2\x0c\xc6\x5e\x2b\x26\xa5\x18\x49\x2b\xcb\x12\x8b\xd3\x22\x54\x69\xef\xbb\x10\x6d\x57\xfc\xf8\x7a\xa1\xe0\xfd\x39\xe2\x2d\x8a\xbb\x92\xc6\xf0\x98\x69\x7e\x5e\x40\xbd\xcc\xa2\xb3\x2c\x2c\x64\x6e\xaf\xbc\xf2\x8a\xbe\x76\xed\x5a\x6a\x09\xac\x60\x3c\x8d\xc5\xa5\x5c\x53\x0f\x6b\x85\x69\x86\xf6\xd8\x93\xa8\xa4\xfd\x1f\x0e\x44\x04\x87\x2c\x4a\x8b\x8a\x10\xcc\x8d\x30\x12\xda\x77\x60\x5a\x09\x93\xfb\x7a\x8b\xf3\x86\xa4\x95\x03\x42\xb8\x09\x22\x63\x81\x38\x3c\xb5\x89\x64\x26\x7e\xec\x95\x72\xca\x87\x11\xa0\x10\x42\x53\x46\xf4\x75\x93\x6d\x09\x95\x14\xdb\x1f\x4e\x00\xc3\x0a\x6b\x6f\xd6\x21\x91\xbd\x54\x4c\x6c\x5d\x19\x04\x9d\x61\x52\xe7\x34\xd6\xc6\x92\x20\xfe\x60\xaf\x17\x2d\x75\x4f\x29\x6a\xe2\xb9\x26\xa2\xca\xfe\xce\x33\x9e\x1e\x0c\xe7\x0f\xf6\x36\xca\x77\xb7\x4e\xf3\xab\x83\x0a\xdb\x0e\x80\x49\x1e\xe6\x26\xde\x86\x6d\xb1\xc0\x91\x45\x33\xa5\xad\xda\xba\x88\x9c\x45\x8a\x48\x9c\xe7\x14\x7d\x57\xf9\xa9\xa9\x9d\xce\x82\xd0\x32\xe3\xc9\xe1\x70\xfe\xe1\xfe\xfa\xfc\xce\xb4\xa7\xa7\xf0\xa7\x2b\x57\x40\x60\x79\x09\xc2\xf5\xeb\xd7\xe5\x21\x8b\x5d\x16\x17\x1b\x02\xfa\xcc\xf3\x1c\x55\x55\x01\x00\x7e\xe3\x37\x7e\x03\x68\x2c\x9a\x9d\xf3\x67\x84\x95\x3f\xa9\xc8\x49\x1a\xb5\xc2\x3a\xde\x75\xf7\xfc\xf9\xf3\x38\x38\x38\x88\xeb\x13\x5f\xa7\xde\xaf\xf2\xfc\x71\x42\x92\xff\x7d\xe3\x1b\xdf\x50\x1f\xff\xf8\xc7\x83\xf6\xb3\xd9\xec\x30\xe2\x3d\x36\x1d\x80\xee\xe5\xf9\x68\x7f\x0b\x07\x64\x80\xf4\x19\x48\x51\x58\x66\x3d\x59\x66\x45\x8f\x9f\xcb\xf1\xb1\xc8\x6a\x03\x20\x74\x15\x7d\x14\x73\x58\xab\x52\xf1\xe0\x92\x66\xd4\xe6\x01\x34\x08\x15\x37\xda\xa8\xd7\x9b\x04\xff\x22\x44\x16\x11\xc1\x70\x9a\xa8\xd2\x85\x04\xc4\x27\xdd\x86\xa7\x42\x87\x93\x18\x65\x59\x52\xc3\x31\x5c\x21\x60\x50\xe1\x69\xd4\x86\x79\x34\x4a\xa6\x52\x8c\x9c\x98\x02\x17\x51\x84\x72\x2d\xf2\x4d\xf5\x59\xd8\x27\xed\xfe\x5c\xf6\x61\x53\x21\x26\x36\x99\x66\x15\x70\xb0\xaa\x90\x4f\x32\x87\x25\x75\x59\x84\xc2\xe3\xfa\xca\x34\xa9\xb2\xba\xe2\xa5\xea\x12\x03\xaf\xc7\x69\x67\xaa\x0d\x49\x3a\x48\x81\x16\x67\x36\x47\xa3\x71\x97\x43\x35\xae\x7b\x74\xc4\x33\xbe\xd8\x58\xea\x00\x80\x8d\x20\x92\x02\x06\x42\xed\xb6\x03\x95\x03\xfa\x08\x88\x41\x62\x14\x57\x1f\xf1\x6b\x8d\x22\x4e\xd3\x96\xae\x1c\x7f\xb6\x4f\x63\xd5\xb1\x60\xc3\xd2\x0e\x05\xbb\x50\x93\xa9\x93\x3b\x34\xd1\xd4\xd9\xe5\x61\xab\x27\xea\x14\x58\x45\xc1\x51\x9d\x84\xd0\x15\xc2\x52\xa2\x11\x8a\xdb\xec\x24\xb8\x48\x67\x6b\x6c\x2d\x40\x92\x41\x87\x3f\x01\x30\x00\x41\xd7\x3d\x35\xaa\x0a\x1a\xeb\x8c\x2a\x39\xd1\x14\xe6\x5b\xa7\x40\xcb\xcb\x2f\xbf\xac\xaa\xaa\x72\xc0\x55\x08\x55\xab\xe9\x06\xae\x22\x78\x41\x5f\x9e\x16\x7a\x74\xeb\xec\xe9\xcd\x0b\xc7\xc5\x73\xfd\x93\xde\x16\x31\xab\xe0\xe4\x6b\xf9\x3d\x48\x02\x96\xf0\x23\x3b\xdc\x47\xc6\x82\xe4\xfa\x41\x5a\xa2\x65\x07\x0a\x9c\x68\xbe\x91\xb4\x6c\xf9\xd5\x59\x02\x20\x80\x31\xee\xd7\x7b\xf7\xb6\xca\x77\x0f\x87\xf3\xbd\x8a\x78\x0a\x46\x0c\x58\x5c\x7f\x49\xde\xff\xf2\xcb\x2f\xab\xb7\xdf\x7e\x1b\x58\x0c\x5a\x02\x7a\xb2\x80\xe5\xa9\xa7\x9e\xc2\xdf\xfe\xdb\x7f\xdb\xc5\x97\x2b\xba\x58\x1c\x9f\x11\x7f\x1b\x92\x27\xb2\x7b\x19\xd4\x8a\xcf\xcc\x81\x90\x06\x1a\x41\x7d\xf9\xf2\x65\x75\xfb\xf6\x6d\x9d\x65\x19\xea\xba\x5e\x45\x30\xdb\xf7\x5d\x8a\xfd\x22\x5e\x1b\xf7\x43\x97\x7b\x24\x5e\xc5\x16\x80\x38\x9b\x2e\x92\x97\xc9\xb3\xb6\x84\xac\xd2\x22\x3f\x67\x31\x14\x69\xb4\x2d\xd3\xce\xe3\x1a\x0e\x87\xf6\xac\xa3\x54\x9b\x52\xed\x4d\x01\xd6\x94\x4c\xe8\xea\xdf\x14\x90\xf1\xe0\x36\x8a\xdc\x25\x70\x16\x69\xff\xea\xc5\x17\x5f\xb4\x9d\xe0\x4c\x54\x2d\xc0\x62\x02\x03\xd0\x86\x73\x85\xb3\x5b\xc2\xe0\xd2\x0b\xcd\xc0\xaf\x0b\x92\x83\x15\x10\x64\x17\xb8\x9f\xec\x9b\xf6\x00\xf7\xec\x9b\x7c\x44\x04\x1b\x5a\x45\x65\x4b\x65\x84\x18\x79\xae\xa9\xc8\x34\xe5\x88\xca\x4b\xb6\x21\x0c\x8b\x90\x6c\x4a\xe8\x76\xbd\xef\x12\xd2\xab\x5e\x77\x81\x83\xf8\x77\x59\x48\xc5\x5f\x04\x1e\x96\xa5\x5d\xb5\x5d\xab\xdc\xa7\xc2\x2a\xa0\x25\x8e\xb7\x52\x5f\xb4\xac\x8b\xcc\xda\x4c\xae\xd4\xe5\x9a\x1a\x55\x7d\xda\xc3\x04\xcf\x72\x6d\x5c\x04\xf0\xa6\xfb\x80\x04\x82\xf3\x77\xe0\x04\xb5\x63\xbc\x12\xe8\x04\xfe\x01\xa1\x30\x37\x48\xc4\x5b\x04\x9c\x45\xa6\x19\xc0\x12\xda\x87\xe0\xc1\xe4\x23\xa9\x33\xa8\x86\xc9\xcf\xb9\x1d\xd8\xd3\x18\x24\xf8\xf1\x02\xd1\x2a\x17\x91\xff\x43\x58\x4c\xe4\xaf\x17\xa3\x6e\x97\x59\xb2\xed\x37\x35\x35\xe5\xb6\xda\xef\xca\x82\x77\x15\x31\xc2\x32\x6c\x47\x01\xd0\x0a\xe5\x7c\x40\x87\xf3\x3e\x3d\x64\x45\x6e\xee\x86\x5c\x31\x23\x41\x89\xfd\xc6\xf1\x21\x76\x91\x60\x71\x2b\x89\x00\x54\x44\x64\x5d\x2a\x25\x80\xb2\xcc\x78\x72\x77\xab\xbc\x7b\xfb\xcc\xf4\xcd\xad\x69\x76\xb9\x5f\xa9\x2d\x16\xa6\x66\x07\x32\x65\x57\x45\x86\x30\x7f\x8a\xb6\x7f\x21\xf7\xbb\x89\x81\x4f\x3c\xac\xc0\x51\x7c\x84\x18\xc7\x7e\x87\x32\xe3\xf1\xde\xc6\xfc\xdd\x0f\xb7\xca\xf7\xc6\x8d\x9b\xa8\x24\xa2\xd2\xb4\x45\x9b\x76\x39\xfa\x08\x14\x4d\xe6\xf8\x74\xe8\x58\xf9\x80\xb8\xd7\x44\xa4\xaa\xaa\x8a\x01\x45\x2c\x4b\x62\x8b\x82\x7d\x96\x54\xe8\x48\x4c\x51\x10\x40\x46\x53\x7b\x3e\xa2\x16\x96\x18\x7c\xfc\xe3\x1f\xc7\xcd\x9b\x37\x57\xe5\x35\x8f\x63\x7d\xe9\xe2\x85\x2e\x2e\x89\xf9\x73\xd1\x06\x87\x41\xbf\x08\x65\x29\x75\x9d\x9c\x67\x2a\xc6\xb1\x12\x7d\x01\x53\x6e\xf0\xde\xd6\x33\xb2\xc2\x04\xfd\x18\xd5\xbd\xab\xbd\x5d\x4a\xee\xa2\xfe\x89\xef\x5b\xf2\x29\xd6\xfe\x1f\x47\xe0\xb8\xf7\xdf\xff\xfe\xf7\x17\x99\x53\x83\x41\xa5\x09\xba\x56\x28\x35\x35\x4b\x02\x59\x50\x4f\x68\x55\x41\xf0\x5c\x18\x4f\xbd\xb6\x61\x22\x06\x0a\x28\x45\xe9\x45\x3a\x97\x84\xbd\x26\xd3\xca\x87\xba\xd3\x79\xed\x8f\x54\xa6\xa9\xc8\x98\xe4\x1c\xa1\xa0\x9d\x56\x4b\xb0\xd7\x40\x6b\xcb\x7f\xc4\x69\xc4\x7d\x2b\xbf\x44\x7c\x9d\x88\xa7\x12\xcf\x96\xa5\x8f\xaf\xbb\xd2\xc9\xba\xa5\xe2\x77\xb5\x6b\x51\x7b\x53\xf9\xa7\xd0\x7c\x1c\x2f\x46\xe2\x5d\xed\xee\xea\xc3\x58\x2b\x48\xd5\x63\x95\x7a\x4b\xb3\xb5\x15\x78\xee\xda\x08\xb0\xc6\xb4\x9e\xa1\x9a\xad\xab\xdb\x3a\xc3\x54\xa6\xf7\x67\x65\x89\x81\xc7\xd1\x20\x16\xcc\xc5\x14\x6a\xa5\x73\x98\xcc\x46\xe5\x66\xec\x52\x94\x8e\x1c\xe1\xc4\x0b\xa9\x7d\xf9\x5e\xb1\x17\x69\xa4\xb8\x77\xe0\x27\x04\x01\x76\xfe\x97\xa4\x18\x32\x0d\x24\x8f\x36\x7c\x01\xa6\xee\x64\xae\xbd\x50\xb6\xbb\xed\x46\xfc\x44\x00\x32\x59\x6e\x90\xa7\xcc\x2f\xb6\xf2\x40\x76\x55\x53\xb6\xce\x69\x5c\x0e\xd4\x61\xd5\xa7\xb1\xa6\xf0\x84\xe1\x94\x79\xdd\x7e\xeb\xe7\x9f\x7f\x5e\x01\x50\x1f\x13\xe7\xe4\x90\x9f\xd3\x02\x99\x0f\x37\xfb\x9b\x38\x8b\x0b\x83\xa7\xd3\x9e\x1e\xbd\x7d\xe1\xf4\x47\x07\xeb\xd5\x4f\x2d\x1f\x74\xdd\x1c\x63\x3b\xeb\x32\x93\xcf\xa4\xb6\x65\xeb\x65\xf9\x64\xdc\x17\x32\x48\x80\x4b\xbe\x3d\x8e\xef\x89\x42\x18\xd0\x0f\xd7\xe6\xb7\xde\x3f\x3b\xbd\x79\xb4\x36\xdf\xd3\xc4\x53\x0b\x5a\x98\xd9\xfe\x4a\x3a\x72\x7f\xcc\x8c\xff\xf5\xbf\xfe\x97\xcd\x2a\xa6\xa3\x16\x80\xf9\xea\x57\xbf\xaa\x98\x59\xbf\xfc\xf2\xcb\x5d\xa7\x72\x3b\x9a\x34\x16\x17\xc5\xcc\x39\x33\xe7\x30\x27\x55\xcb\x3f\x19\x07\x8d\x10\xcf\x85\xa5\xa6\x05\x5a\xe4\xf3\x97\x5f\x7e\x59\x7d\xed\x6b\x5f\xeb\x3a\xeb\x28\xc5\x2f\x25\x1f\x8e\xf9\xd8\xb2\x38\xf6\x5a\x03\x50\xeb\xeb\xeb\x72\xd2\x7f\x60\x61\x32\xf2\x44\xb6\x4d\x01\xc8\x89\x28\x97\xbf\xf6\xcf\xf4\x4f\x61\xaf\x01\x14\xa6\x1f\x0a\x7b\x2d\xde\xd9\x5f\x9b\x37\x4c\x99\x2d\xbe\xc7\xcc\xfa\x99\x67\x9e\x49\xf1\xc8\x2e\xab\x91\xec\xc3\x2e\x7e\x1b\xf7\x0f\xa2\xfb\x96\x4c\x58\x24\x1c\x97\x09\x32\x17\x5e\x7c\xf1\xc5\x60\x3f\x83\x28\x38\xd4\x0b\x00\x6c\xce\xec\x30\x67\xb7\xf8\x7d\x25\x10\x29\x9d\x4d\x6c\x77\x1d\x68\x1b\x4d\x86\x26\x3f\x91\x8e\x3d\xe1\x06\x44\x1b\x11\xa5\xcb\xd7\xf2\x7d\x16\x5a\x9c\x80\x33\xf1\xc9\xab\xcd\x1b\x86\x02\x54\xa6\xa9\xc8\x35\x0a\xc5\xde\xdd\x26\x4d\x93\xc6\x75\x04\x7b\x0d\xb8\xc9\xb9\xab\x20\xce\xc7\x41\xf0\x5d\xa8\x34\xf5\xfd\x62\xa6\xb1\x0c\xb0\xa4\xca\xe9\xaa\xe3\xe3\x5a\x7c\xba\xf2\x8f\x9f\xa7\xc0\x75\xaa\x2e\xa9\x3c\x96\x59\xad\x52\xf5\x8b\xf3\x5c\x54\xef\x94\x36\x68\x35\xa7\x40\x23\xd5\x84\xf2\x74\x33\xbb\x57\xe7\x34\x46\xbc\x1d\x00\x45\x03\x34\x38\x74\xd1\xda\xf6\xe3\xf8\x3e\x9d\x1b\xf3\xd1\xe0\x6f\x91\xa3\xc3\x27\x7e\x8c\x87\x73\x67\xc2\x77\x3e\x9d\x15\x70\x1e\x28\xb5\xb2\xb6\x59\x90\x58\x0e\x6d\xf2\xb6\xb8\x8c\xa3\x36\xc8\x5a\xb8\xe8\x3e\x02\x98\x4d\x99\xb6\x56\xd6\x52\xc0\x22\x72\x8c\xf9\x0c\xb4\xf1\x65\x99\x6b\x16\xb4\x6d\xfa\xaf\xee\xe1\x68\x3e\xa0\xc3\xba\x47\x53\x0b\x30\x89\xbc\xcb\x08\xd1\xb8\x32\xcf\xf1\xda\x6b\xaf\x69\x00\xfa\xbd\xf7\xde\x33\x4d\x69\x6b\xc5\xc2\xed\x54\x11\x91\xb3\x54\x10\x51\xa9\x09\x93\x87\x6b\xf3\xfd\xb7\x2e\x8c\x7f\x38\x1a\xd4\x1f\xea\xc6\x75\x2e\xbb\xda\xb5\x45\x5a\x8a\x5c\x1f\xc8\x7e\x07\x82\x38\x1d\xc6\xdf\x74\x70\xd6\x38\x01\x9c\x4c\x9e\xa3\x41\xfd\xe1\xcf\xce\x4f\xdf\xfc\xf0\xcc\xec\x67\xa7\x3d\x3d\x26\xa2\xa9\x05\x2c\xa2\xaf\x5c\xdf\x48\x25\x2d\x52\x60\x63\xfa\x72\xbc\xe7\x5b\xdf\xfa\x96\x02\xa0\xff\xf4\x4f\xff\xd4\x1d\x9f\x60\x2d\x06\x42\x60\xdb\xf8\x39\x33\x07\x02\xda\x08\xe2\x9c\x99\x0b\xfb\x87\x46\x28\x4b\xe1\x5c\xd8\x74\x44\x54\x48\x41\xcd\xe2\xa0\x48\xc0\xf3\x6c\xe6\xe6\xb8\x82\x7f\xf8\x0f\xff\xa1\xfa\xea\x57\xbf\x9a\xb2\x28\xc4\x3c\x33\xc5\x2b\x52\xd6\x05\xf9\xa7\xe2\x74\x27\x27\x27\xce\xc2\x11\xcd\x9d\x53\x68\x00\x98\x12\x40\xa5\x80\x07\x2a\x05\x80\x01\x11\x0d\x00\x0c\x95\xc6\xb0\xa8\xd5\xc6\xa0\x52\xc3\x41\xa9\x36\x86\xf3\x6c\xa3\xa8\x68\x98\x69\x0c\x7b\x9a\x06\x26\x7e\x41\x44\xae\x8f\x4c\xff\x48\x20\x23\xfb\xdf\xd5\xe9\xda\xb5\x6b\xea\xbd\xf7\xde\x5b\xc6\xdf\x53\x80\x26\xee\xc3\x54\x5f\xa4\xf2\x4b\xf2\xeb\x2e\x0d\x13\x1d\xcf\x92\x02\x6f\x85\x2d\xff\x9d\x26\x52\x13\xf4\x3c\xd3\x65\x73\xe0\x18\x74\x17\xa5\xc5\x0c\x0d\x10\xda\x2d\xc7\x65\x79\x86\x6d\xb5\xb5\x38\x04\xd1\xa5\x0a\xd6\x52\x65\xa4\x7a\x63\x89\x51\xf2\x47\x02\x18\x4a\x31\xe5\x99\xa6\x9e\x12\x9b\xd0\x19\x93\x65\xa7\x90\x4b\x2d\x55\x5b\x10\x62\x94\xd9\x99\xaf\x88\xbf\x0c\xbc\xa4\xee\xe3\xf8\x2b\x03\xd6\xc7\x78\xf7\x51\xc3\x5f\x47\x9e\x3f\x4f\xfe\xcb\xfa\xc7\x86\x88\x49\x51\xc5\x8a\xaa\xd9\x3a\x1d\x54\x05\x1d\xca\xed\xff\xbd\x96\x2c\x81\xbf\xd5\xa4\xc5\xb5\xc8\xdc\x5a\x15\xc0\xdc\x02\x03\x22\x57\xf1\xc2\x03\x0f\xb6\x69\xdc\x2c\x79\x12\xda\x80\xad\x47\x90\x4c\x98\x31\xbb\xa5\xa2\x81\x50\x81\xf5\x24\x79\x60\xa2\x37\x84\x08\x0c\xc1\x7e\xda\x89\x00\x6b\x7e\x72\x6a\xd4\x46\x9b\x51\x64\x65\x90\x6e\x62\xb2\xd2\x98\xc4\xb5\xa5\xef\xa6\x04\x5d\x15\xea\x68\x3e\xa0\xa3\x3a\xa3\x29\x9a\x79\x28\xce\x4a\x22\x5d\x43\x1d\x0a\x19\xb4\xd6\xa6\x5c\xff\x3e\x61\x85\xb0\x93\x59\xad\x8b\x65\x0a\xf0\x74\x9e\xf1\xf8\x67\xe7\xa7\xef\xdc\xd8\x9d\xfc\x60\xdc\xaf\xf7\xb5\x38\x06\xa5\x65\xf5\x32\x0f\x93\xc0\x24\xe0\x4d\xae\x0e\x71\x94\xe0\xda\x81\x9c\x64\xab\x80\x93\xa2\xda\xff\xd9\xb9\xd3\x37\xde\xd9\x39\xbd\x79\xdc\xaf\x8e\x40\x98\x36\xf5\xc6\xd4\xb4\xc1\xad\x28\x82\xef\x2f\x97\x7e\x85\x89\x9d\xf8\xd6\xb7\xbe\xa5\x2e\x5d\xba\x04\xa0\x11\x88\x52\x40\xc3\x08\x69\x78\x4b\x82\x04\x24\x4e\xf0\xc2\x0b\xec\x82\x40\x83\x9c\x1b\xe1\x9c\x69\x0c\xc0\x18\x98\xb8\x71\x7c\x27\xb0\x05\x08\x52\x31\x88\xb9\x76\xed\x9a\xca\xf3\x1c\x7f\xfa\xa7\x7f\xaa\x01\xe0\x9b\xdf\xfc\xa6\xac\x7e\xac\x30\x3e\x4e\x68\x59\x72\x2e\x5e\xbc\xa8\x00\x3f\x97\x45\xb8\x67\x6c\x7d\x52\xd6\x94\x1c\x68\xda\x59\x54\x34\x3c\x3b\xc9\xb7\x2e\x3f\xec\xef\x7c\x7a\x6f\x78\xe9\x17\xef\x6e\x5c\x7d\xfe\xce\xe6\x73\xbf\xfc\xde\x99\xe7\xff\xc6\xad\x33\xbf\xfc\xe2\xad\x33\xbf\xfc\xcb\xb7\xce\x7c\xf1\x4b\xef\x6f\x3d\xf7\x99\xfb\xeb\x57\x9e\x39\x18\xec\x6c\x4f\xf2\xad\xfe\x5c\x6d\x10\x63\x60\x01\x1f\x04\x20\x14\x7f\x49\x00\x03\x00\x9f\xf9\xcc\x67\xba\xda\x15\x3f\x8f\xc7\xc3\xb2\x3e\x5b\x3a\x7e\x72\xb4\x91\xce\x22\x2d\xb3\x13\x3d\x03\x01\xda\x0e\x34\x15\xe9\x23\xae\x15\x57\x95\xe2\xb2\x26\x2e\x8d\x4e\xe1\x08\x28\x98\x38\xc8\x82\x4f\x3a\x9c\x11\x2d\xe7\x73\xf1\xa3\x99\x32\x14\xde\xc7\x84\x4d\xf2\x19\xf9\x6b\x97\x37\x59\xc2\xf6\x4c\x30\x14\x29\xa4\x32\x46\x91\x6b\x55\x64\x9a\xd4\x5c\x69\x4b\x6c\x80\x30\xb7\xc5\x40\x2e\xb1\x01\xdd\x2a\xa6\x35\xfb\x7e\x55\xe4\x1f\x9b\xe4\x64\x19\x29\xf4\x1a\xe7\xdb\x65\x16\x5d\x34\x98\x16\x01\xa2\x54\x1b\x17\xb5\x65\x11\x02\x4f\x95\x9b\xaa\x5f\x17\xe2\x5f\x14\xe2\x7a\x2e\xaa\x1b\x00\xa8\xdf\xf9\x9d\xdf\x09\xc6\xb6\x10\x78\x52\xf8\x55\x68\xac\x8b\xe5\x7c\xa0\x46\xb3\xa1\xfa\xb0\x7f\xa2\xaf\x92\xe6\x41\x23\x88\x3c\x48\x09\x8c\x1e\x91\x11\xc4\x8d\x65\x2b\xcb\xc5\xe0\x0d\x3c\x48\x80\x7b\x20\x6c\x41\x26\xcb\x68\x6f\x24\x58\x2b\x4d\x68\x5a\x0c\xb6\xd1\x87\x10\x74\x12\x54\xc4\xe6\x48\x00\x6e\xb5\x90\xa8\x5e\x38\xe1\x16\x01\x21\xd9\xd3\x9e\x1b\xb7\x96\x69\x80\xa3\xea\x70\x39\x78\x6c\x94\xb2\x0d\x0e\xf6\x79\x32\x66\x1d\x92\xed\x97\x84\x4e\x9e\xc7\xe8\x0c\x93\x72\x48\xf7\xca\x35\xf5\x50\xe7\x6e\x6f\x12\x39\xf1\x14\x88\x68\xc6\x6a\xe2\xcf\x3f\xff\xbc\x7a\xed\xb5\xd7\x00\x00\x45\x51\x28\x71\xe0\xa2\x9d\x3f\x61\xd3\x54\x66\xde\x81\x9d\xe3\x32\x05\x90\x83\xa8\x00\x63\x72\xda\xd3\x47\x37\x76\x27\x6f\xf7\x2b\xb5\xf5\xec\xfe\xda\xf3\x1b\x65\xb6\xa3\x40\xc1\xe1\xad\x12\xd0\x25\xa7\x35\x99\xe7\xc1\x42\x32\x69\x72\x23\xb1\xa8\x40\xc4\xf1\xdf\x54\x5a\x74\x18\xd3\x5c\x8f\x3f\xd8\x9e\xbd\x75\x73\x77\xf2\xe6\xd1\x5a\x75\x5f\x13\x26\xcc\x3c\x21\xa2\x14\x68\x09\x26\xea\x5a\xc0\xf4\xd2\x4b\x2f\xa9\xef\x7d\xef\x7b\x0b\x15\xaf\xff\xfc\x9f\xff\xb3\xbe\x76\xed\x9a\xb2\xee\x21\xd3\x6f\xd6\xf2\x21\x41\x84\x32\x16\x13\x05\x40\x29\x0d\xd5\xab\x55\x3e\xa8\x54\x3e\x2c\x55\xb1\x36\x57\x45\x51\xab\x22\xd7\x54\x28\x26\xa5\x74\x43\x9f\xb3\x5c\x4f\x4f\x7b\x7a\x3a\xcb\x75\x35\xcf\xb8\x3c\xed\xd5\xd5\xb4\xa7\xcb\x5a\xf9\x49\xc5\xf6\x8f\x99\xad\x95\x4d\xf4\x7b\x43\xd7\xd7\xae\x5d\x53\x66\xe2\x2e\x3a\x42\x2c\x07\xbb\x78\x7a\x52\xe9\xb7\x13\x82\x23\xb0\x62\xe7\xab\xc4\x80\xaa\x71\x7d\x81\xf2\x5e\x4d\xf9\xc6\x2c\x1b\x6c\x4f\xf3\xe1\x13\x27\xbd\x8b\xe7\x4e\x7a\xcf\x0e\xcb\xec\x63\x45\xa5\x76\x7a\x9a\xb6\x73\x4d\x1b\x99\xc6\x90\x98\x0a\x00\x5a\x13\x57\x5a\x61\x3a\x57\xfa\x70\xda\xd3\x1f\x8e\xfb\xf5\x3b\x8f\xd6\xaa\x5b\x87\x6b\xd5\xde\xc3\xe1\x7c\x34\x1a\xd4\x93\x59\xae\x4b\x36\xfd\x81\xd0\xa2\x26\xf7\x24\x72\x6e\xbd\xe3\xe3\x63\x3c\xfb\xec\xb3\xea\xee\xdd\xbb\xd6\x0a\x29\xdb\xd9\x02\x68\x89\x3e\x89\xfb\x27\x56\xb6\x53\x32\x41\x01\xed\xc9\xb9\x71\x26\xcb\x82\x06\x1a\x57\x91\x2c\x28\xf6\x21\xca\x6b\x4d\x8c\x4a\xf1\xac\x56\x5c\x31\x41\x2b\x16\x15\x0d\x51\x49\x5b\x23\x08\x88\xb3\xf9\x1f\x6b\x0f\x31\x81\xa6\x42\x12\xc8\xc8\x3a\xdb\xb3\x5a\xac\xa9\xd6\xaa\x88\xe4\x35\x48\xc5\x94\xf7\x6a\x2a\x7a\x9a\xf2\x59\xc2\x6a\x94\xb2\x3e\x45\x1b\xd0\x2d\x13\xe4\x49\x13\x59\x14\x2f\xce\x63\x99\xc0\x4f\xa5\x4b\x01\xd6\x78\x10\xa5\xac\x37\xa9\xba\xa5\xee\x63\x20\xb0\xc8\x2c\xd8\x55\xa7\x65\xe5\x2e\x2a\x7f\x51\x3e\x5d\x7d\xb9\x52\xdd\xfe\xe0\x0f\xfe\x00\x40\x7a\x23\x32\xe1\x2a\x72\x7f\x55\x41\xd3\xd3\x4d\xf5\xfe\xf0\x11\x7d\x2e\xab\xb0\xd5\x78\x1d\x0d\xa4\x30\xc2\x95\x21\x47\xb5\x09\x24\xa7\xca\x02\x76\xc4\xbb\x49\x87\xf6\x89\x15\x6e\x26\x56\x20\xe0\x0c\x10\x90\x81\xc4\x98\xf6\xd0\x46\xa4\x6c\xd1\xa1\xcf\xb1\xad\xe5\x37\xf5\x8c\x01\x8d\x05\x2d\xc1\xc1\xd2\x46\xd2\xb6\xec\x02\x96\xd6\x28\x2a\x27\x6a\x97\x7f\x6e\x35\x0a\xd3\x02\xab\xed\x48\x70\xe4\x4c\x12\x21\x6d\x57\x05\x1d\x4e\xd7\xd5\xde\xbc\xa0\x11\x03\x25\x09\x8b\x8b\xfd\x6b\xcf\x11\x6a\x7e\x7f\xf6\xb3\x9f\xc1\xc4\x41\x59\x96\xc1\x3b\x61\x7d\x50\x01\x78\xf5\x7f\x25\x33\x4f\x01\x14\x20\x9a\x3c\x1a\x54\xf7\x6f\xec\x4e\xde\xc8\x34\x15\x4f\x1f\xf5\x3f\xbb\x39\xcb\x77\x32\x4d\xb9\x04\x26\x0e\x80\x88\xa6\xb9\x3e\x97\x4d\xb3\xbd\xe6\x40\x9e\x80\xae\x02\xb4\xc9\x28\x36\x86\x26\xd6\xb3\x4c\x8f\x6f\x6f\xcf\xde\x7a\xfb\xc2\xe4\xf5\x83\xf5\xf9\xdd\x4a\xf1\x98\x11\x80\x16\xfb\x17\x58\x5c\x7c\x19\x8d\xf0\x8f\x40\x0b\x90\xa0\x1f\x41\x33\x4e\x93\x8f\x00\x8b\x9b\x73\x41\x44\xf9\x5a\xa9\x8a\xed\xd3\x7c\xb8\x35\xcd\xb7\x36\x67\xd9\xb9\x8d\x59\xb6\x3b\x2c\xb3\x8b\x83\x4a\x3d\x91\xd7\xb4\x91\x31\x06\xc4\x94\x2b\x34\xf3\x0e\xe7\x4a\x8f\xca\x8c\x8f\xca\x5c\x3f\x2c\x33\x7d\x74\xd2\xaf\xf7\x1e\x0d\xea\xbd\x87\xc3\xf9\xe1\xa3\x41\x3d\x39\xed\xd5\xd3\x9a\x9c\x2b\xcf\xd6\xdf\xed\x4b\x23\xeb\x9b\x38\x05\x5c\x86\x58\xc1\x49\x29\x95\x9d\x0a\xe3\xed\xdb\xb7\x21\xe6\xf6\xb8\x7e\x30\x00\x21\x17\x7d\x92\x03\xc8\xf3\x9a\x8a\x33\xa7\xf9\xf0\xd2\xa8\xb8\xf8\xc4\xb8\xf8\xc4\x99\xd3\xec\xd3\x9b\xb3\xfc\x13\x6b\x95\xba\x92\xd7\x74\x8e\x98\x86\x04\x0c\x88\x2d\xc8\x31\x32\xd9\x82\x34\xca\x4a\x3d\xe5\xf1\xf9\x09\xef\xcf\x46\xfa\xde\x49\x51\xdf\x1a\x0d\xea\x1f\x3f\xd8\x28\x6f\xde\xdf\x2a\x3f\x3c\x18\x56\x23\xb3\xec\x3d\x47\x04\x52\x8d\xf5\xd1\xad\x9c\xdb\xda\xda\xc2\x1f\xfd\xd1\x1f\x2d\x33\x70\xa4\xfa\x2b\xee\xab\xae\xfe\x4b\x5d\x6b\xa0\xbd\x73\xee\x22\xad\x13\xd1\xb3\x96\x20\x33\x44\xda\xf5\x91\x1b\xad\xb4\x99\x9c\xab\xb5\x5d\x12\x2d\x99\x8c\xa0\xa6\x98\x31\x2e\x0c\x22\x72\xaa\x68\x92\x24\x2b\x18\x5d\xc8\xe1\x13\x7e\x62\xc9\x18\x84\x99\x9c\x00\x28\x6d\x57\x16\xb5\x27\x87\xa5\xaa\x78\xed\xda\x35\x65\x77\x2a\x4c\x84\x55\xc0\xc6\x32\x50\xb2\x32\xd0\x7c\x8c\x78\x8b\xc6\xc1\xe3\x86\x55\xc1\xc8\xaa\x21\x65\x29\x5a\x35\xef\x55\x2d\x3a\x5d\x69\xba\x82\xd3\x3c\x53\x96\x17\x9d\xd1\xf4\x74\x2b\xbb\x33\x1f\xd4\x7b\xbd\x69\xbd\x93\xd5\x3c\x0c\x37\x82\xb3\xab\x86\x12\xf0\x40\x8c\x45\xa9\x2d\x23\xb0\x59\xb6\x41\x86\x9d\xc3\x60\x5f\x86\xdb\x08\x18\x82\x13\x87\x71\x85\x32\xde\x00\x11\x93\x36\xa8\x6b\x54\x0e\x99\xf7\x01\xb8\x61\x21\x43\x9d\x3b\xc7\xbf\xf7\x13\x7f\xd9\x4d\x98\x07\x42\xf0\x23\x15\x15\x89\x7b\xec\x03\xab\x5c\x90\x11\xd4\xb1\xf5\x54\x56\xd8\xb9\x94\x08\x7a\xbe\xa6\xf6\x66\xeb\x6a\xaf\xee\xd1\x44\xce\x6f\x81\x77\xed\x38\xa1\x2c\x5d\x21\x9f\xf9\xcc\x67\xd4\x8f\x7f\xfc\xe3\xd6\x38\xb0\xee\x11\x31\xa9\xd3\xa6\xa9\xd0\xf0\xc4\x12\xde\x14\x6f\x05\x43\xae\x15\xf2\xfd\xf5\xf9\x9d\x1f\x5f\x38\xc9\xcb\x4c\x97\x57\x8e\x06\xcf\x6d\x9f\xe6\x17\x7b\x35\x0d\xe4\x12\x65\xcf\xb2\xec\xac\x1f\x12\xff\x4d\xbf\xc5\x26\x32\x0e\x2d\xc5\x64\xd0\x63\x6c\xe5\xae\x89\xab\x93\xbe\x3e\xbc\x73\x66\xf6\xd3\x1b\xbb\x93\xd7\xee\x6e\xcd\xde\x2b\x33\x3e\x02\x61\x42\xa0\x09\x8c\x9b\x88\x88\x4a\x66\x2e\x85\x80\x6f\xed\xe3\x22\x8e\x41\x48\x0a\x1e\x09\x02\xac\x55\x01\x6d\xfe\xd9\xf0\x54\x46\xbe\x5e\xaa\xc1\xb9\x49\x6f\xeb\x89\x71\xef\xd2\xce\x49\xf1\xa9\xad\x69\xfe\xf1\xe1\x5c\x5d\x2a\x2a\xda\xcd\x6b\x75\x2e\x63\x6c\x11\x53\x41\xe1\x24\x5d\x30\x50\x32\xf1\x44\x13\xa6\x5a\xf1\xa8\xcc\x78\xff\xa4\x57\xbf\x3f\x5a\xab\xde\x79\x38\xac\xde\x3d\x18\xce\x3f\x3c\x1c\xce\x0f\x0f\xd7\xab\xb1\xf9\xde\x95\xa9\x8b\xb3\x22\x59\xc5\xc0\x0a\x6c\x6b\x7d\x89\xbf\xfd\x82\xd0\xd9\x17\x57\xaf\x5e\xc5\xe7\x3f\xff\x79\x75\xf1\xe2\x45\xab\x80\x38\xcb\x13\xc2\xb6\xe4\x00\x72\xa5\x51\x6c\xce\xb2\x8d\xdd\xe3\x62\xf7\xd2\xa8\xff\xdc\xc5\x51\xf1\xc2\xd6\x2c\xff\x5c\x51\xd1\xe5\x4c\xd3\x36\x01\x43\x80\xf2\xd6\xa4\x76\x37\x36\x9a\xff\x8a\x31\x54\x4c\xdb\xb9\xc6\xa5\xfe\x5c\x7d\x6a\xa3\xcc\xbe\x78\xf6\x94\xbf\x74\x7e\xd2\x7b\xfb\x89\x93\xe2\x2f\xee\x6d\x96\x6f\xdd\xdf\x2c\x6f\x1f\x0e\xe7\xa3\x32\xe7\xa9\xa9\x43\x25\x78\x9a\x05\x32\x0a\x00\xae\x5d\xbb\x16\xbb\x06\x63\x5e\x9c\xba\x7e\x5c\x6b\x4c\x4b\xc9\x5f\x65\xcb\xff\xb8\xf0\x96\x39\xec\xfb\xdf\xff\x3e\xbe\xff\xfd\xef\x4b\xdf\x9c\xf3\xb3\x0a\x94\x06\xa0\xd9\xea\xdf\xba\x8b\x98\xb8\x02\x51\x21\x89\xcb\xf3\xc9\xd6\xfa\x81\x96\xa9\xd4\xe9\xa1\x11\x93\x03\x42\xe0\x13\x10\xaa\x61\xde\xe9\x32\x43\x8b\x76\xb0\x17\x8c\x50\x6b\x18\x8d\xc5\x25\xaf\xcd\x92\xe8\xc5\xd6\x08\x17\x3a\xb6\xfb\x5f\x26\x10\x3b\xfb\x3d\x0a\x5d\x83\x45\xbe\x4f\xe5\xdb\x95\x87\xbc\x8f\x9f\xa5\xf2\x58\x56\xbe\x4c\xfb\x38\x08\x3b\x4e\x17\xd7\x69\x95\x3a\xac\xd2\x37\x29\x0b\xd3\xa2\x3e\x6c\xb5\x4f\x02\x16\xf1\xe7\x36\xec\x22\xa2\xb2\x1c\xaa\xa3\xd9\xba\xba\x3d\x18\xeb\xab\xaa\xe6\xa1\x77\xbf\x78\xe4\xee\x47\xab\x18\x89\x46\xc8\x47\x06\x09\x04\xa3\xde\xb9\x5a\x9a\x38\x1e\x18\x00\x96\x79\xb5\x30\x7b\x64\xc9\x70\xa2\x5f\x32\xc0\x84\x52\xe0\xe8\x30\xf0\x51\x70\x0b\xe0\xbb\x72\x49\xe4\xd9\x32\xd7\xf8\xcd\xd6\xa4\x9b\xc3\xd3\x9c\x79\x27\x41\x8f\xf9\x47\xce\xc2\xc2\xc6\x68\x43\xae\x2a\x31\x43\xb0\x69\xea\x1c\x93\xd9\x50\xdd\x2b\xd7\xd4\x81\xce\x30\x15\xa6\x71\xbb\x59\x9c\x13\x5c\x10\xe0\x05\x00\x0c\x68\x69\x8d\x8d\x5e\xaf\xa7\x7e\xef\xf7\x7e\x0f\x32\x2e\xf9\x3d\x5d\x2a\x23\x98\x4a\xa9\x41\xdb\x89\x90\x55\x06\x75\x7f\xb3\x7c\xaf\x52\x5c\xcd\x7a\x7a\xfa\xcc\xe1\xe0\xb9\x73\x93\xde\xa5\x7e\xa5\x36\x94\x39\x13\xcd\x37\x48\xf4\xaf\xe8\x1e\xe9\x12\x92\xdf\xcb\x7f\x67\xdf\xbf\x36\x1e\x13\xeb\x79\xc6\xd3\xd1\xa0\xda\xff\x60\x7b\x76\xf3\xa7\x3b\x93\xb7\xee\x6f\xce\xdf\xab\x15\x1f\x31\x78\x42\xa0\x31\x33\x4f\x00\x38\xab\x8b\x00\x77\x72\xe9\x38\x80\xc0\xb2\xee\xfa\x0d\xf0\x7b\x80\x44\x3b\xb5\x76\xb9\x42\x72\x02\xe5\x45\x4d\x83\xf3\x27\xbd\xed\x27\x47\xfd\x2b\x17\x47\xc5\x73\xe7\x4e\xf3\x5f\x1c\x96\xd9\xa7\x8a\x5a\x5d\x52\x1a\xdb\x04\x0c\x00\x6f\x99\x92\xe3\xc4\xdf\x9b\x11\x58\x43\xf7\xe7\x5c\xae\xcf\xb2\xa3\xb3\xa7\xf9\xbd\x0b\xc7\xfa\xd6\x71\xbf\xbe\xb9\xb7\x51\xfe\xe8\x83\xb3\xb3\x9b\xfb\xeb\xe5\xde\xa4\xd0\x53\xdd\x8c\x03\xeb\xda\x8b\xdd\xbe\x80\xb0\xbe\x44\xc2\x7a\x11\x7f\x6a\xf1\x96\x67\x9e\x79\x46\xdd\xba\x75\x4b\x7f\xf3\x9b\xdf\x94\x96\x26\xe9\x2e\x53\xe4\x27\xcb\x16\xfd\x5a\x15\x3b\x27\xbd\x9d\xa7\x8f\x06\x9f\xb8\xf4\xa8\xff\xc2\xb9\x49\xfe\xfc\xda\x3c\x7b\x2e\xd3\xd8\x25\x50\x28\xc3\x63\xd0\x12\x68\x22\xc2\xfd\xda\xb8\x9c\x86\x4a\xd3\x30\xd3\xbc\x53\x54\xea\xea\xc6\x2c\x7b\xee\xdc\x49\xfe\xe6\xce\x49\xef\xd5\xf7\xb7\xa7\x6f\x7e\x78\xa6\xbc\x7d\xd2\xaf\xa7\x76\xdc\x9a\x71\x6c\xdb\x69\xff\xd4\xcb\x2f\xbf\x0c\x22\xc2\xe9\xe9\x29\x5e\x7f\xfd\x75\xfc\xe5\x5f\xfe\x65\x0a\x9c\x74\xf1\xec\x2e\xd9\xb7\x48\xe6\xa8\xcc\x3c\x74\x8a\x91\xb9\xb7\xd7\x81\x7c\x8f\x2a\x11\xd8\xd3\x04\x68\x21\x66\x26\x63\xee\xca\x00\x64\x44\xd4\x63\xe6\x82\x88\xfa\x20\x14\x9b\xd3\x6c\x7b\x77\x5c\x3c\x7b\x66\x9a\x3f\x9d\x35\x68\xd9\x10\x93\x41\xb8\xa6\xc8\xe6\x39\x07\x93\xee\x2c\xd3\x95\xc0\xc2\xc6\x83\x7c\x6e\x4d\xd7\x92\xd1\x89\x71\x2d\x59\x80\xdf\x8b\xc2\xbe\x97\xc2\xa2\xad\xdb\x80\x18\xb5\xe2\x93\x47\x83\xea\x83\xfd\x8d\xf9\xad\x93\xbe\x3e\x42\x63\x42\x9d\x01\x98\xc3\x7f\x24\x96\x7d\x95\xe7\x39\xdd\xb9\x73\x27\x50\x82\x90\x16\x8e\x8c\x74\xe0\xc4\x3b\x25\x9e\xa7\xae\xe3\xb4\xa9\x3c\x64\x1c\x19\x28\xf1\xac\x2b\x8f\xb8\xac\x65\xf5\x8f\x99\xff\xa2\xf4\x32\x5d\xaa\x4e\x71\x1c\x7b\xaf\x3a\x9e\xa7\xd2\xda\x5f\x9b\xff\xa2\x76\x07\xef\x9e\x7f\xfe\x79\x32\x81\xd1\x30\x1d\x32\x65\x67\xe4\x57\x01\xf4\x00\x14\x4c\xc8\xf2\x92\x37\xfa\x27\xfa\x52\x5e\xe2\x0c\x00\xe5\xb6\xf1\x70\xc2\x55\x0e\x3c\xab\x9d\x02\x24\x77\x21\x23\x16\x38\x81\xbc\x95\x41\xd0\x0f\x9b\xb1\x6c\xf7\xfd\xb0\x04\x10\x00\x71\x01\xe4\x03\x0b\x88\x79\xee\x48\x29\xe8\x09\x2b\x04\xfd\x8b\x56\xdd\xcd\x3b\x16\x37\xe1\xa6\x90\x70\x60\xa6\xd9\xfb\x85\x02\x0b\x01\x02\x00\x22\x80\x9c\xd8\xf2\x95\x38\xcc\x1f\x9e\x29\x8b\x4d\x86\xd9\x4b\x70\x53\x9f\x72\x4d\x7d\x38\xda\xcd\x5f\x9b\x6c\x67\xef\xd5\x39\x3d\x22\xa2\x53\x22\x3a\x65\xe6\x99\xb1\x8c\x54\xcc\x3c\x27\xa2\xda\x7c\x53\x26\x22\x16\xd6\x84\xd6\x18\xd2\x5a\xf3\x6b\xaf\xbd\xc6\xcf\x3f\xff\x3c\x29\xa5\x40\x44\x24\x34\x76\x77\x2d\xbb\x92\xec\x83\xc6\xca\x46\xa7\x85\x9e\x9d\x14\xfa\xb4\xcc\xf9\x14\x00\x14\x53\x96\x69\xca\x1b\x77\xba\xb3\x8f\x85\x3b\x8c\x0b\x9e\x15\xf0\xc3\x00\xb4\x09\xc6\xc7\xcd\xb7\xad\x32\x2e\x4f\x0a\x7d\xf4\x60\xa3\xfc\xe0\xd6\xf9\xe9\x8f\x7f\xfa\xc4\xe9\x5f\xee\x6d\xce\x3f\xd0\x0a\xc7\x0c\x3e\x21\xa2\x63\x00\x27\x00\x4e\x89\x68\x02\x60\x66\xfa\x67\x0e\x60\x6e\x84\xb9\xed\x1f\x10\x11\x5f\xbf\x7e\x5d\xef\xec\xec\xa8\xc9\x64\x12\xf0\x9f\x2f\x7c\xe1\x0b\xf4\xed\x6f\x7f\xdb\x7c\x0e\x96\xae\x10\x2b\xa0\x33\x22\xea\x11\x51\x2f\x63\xea\x6f\x94\xd9\xd6\x53\x8f\xfa\x97\x3f\x73\x7f\xfd\x97\x9e\x3d\x58\xfb\x8d\x9d\x93\xe2\x9b\xeb\x65\xf6\xa5\xa2\xa6\x8f\x29\xa6\x33\x0a\x54\x10\xec\x21\xb7\x76\x38\xc8\x39\x51\x1c\x2a\xa8\x0c\x22\xa2\x3c\x03\x6d\xe4\x5a\xed\xf6\x2b\xf5\xcc\x7a\x99\x5d\xdd\x9e\xe6\x4f\x9e\x39\xcd\x87\x19\x53\xcd\x84\xaa\xcc\xb9\xd6\xca\x88\xf7\x46\xe1\x66\x61\x71\x91\xdf\x92\xbf\xf4\xa5\x2f\xd1\xab\xaf\xbe\x9a\xe2\x09\x29\xbe\x11\xc8\xcc\x47\x8f\x1e\xb1\x9c\x90\x2c\x81\x1c\xfc\x8a\xa1\x1e\x80\xfe\xa0\xca\xd6\x2e\x8d\xfa\x97\x3f\xb5\x37\xfc\xf2\xc7\x0e\xd7\xbe\x75\x7e\xd2\xfb\xc6\x60\xae\x3e\xab\x98\xce\x12\xc2\xfd\x6b\x64\xc1\xce\xcb\xe0\x91\xab\xe0\x0d\x32\x3e\xa3\xe9\x4b\x1a\xf6\x34\xed\x0e\xe6\xea\xf2\xe6\x2c\x7b\x72\xa3\xcc\x0a\x02\xcd\x66\xb9\x3e\x9d\x15\x3c\x37\xc3\x95\x4d\x3f\x48\x1e\xcc\xf6\xfe\x9f\xfe\xd3\x7f\xaa\xf7\xf6\xf6\xe2\xf6\xa6\x64\x1c\x10\xca\x27\x25\xe2\xa6\x70\x88\xcd\xc3\xe5\x9d\x25\x32\x5e\xc4\xd8\x53\xef\x15\x00\x7e\xf5\xd5\x57\xf9\x85\x17\x5e\x20\xd3\x40\x32\x83\xd2\x32\x70\xc7\xb8\x01\x0c\x36\xca\xec\xec\x13\xe3\xe2\xea\xf6\x69\xef\xe9\x9c\x69\x60\x33\x6d\x31\x3e\xdb\xad\xce\x07\xe9\x95\xba\x08\x57\xc2\x73\xa6\xe6\x63\x59\x1e\x11\xe8\x28\x96\x76\x6d\x0f\x39\x66\xe2\xf3\xb7\x11\x49\xc4\x0b\xa0\x92\x21\x88\x5a\x61\x76\x3c\xa8\x6e\x3f\x58\x9f\xbf\x7b\x3c\xa8\x2d\x70\x91\xfe\xdf\x1a\x1e\xc0\x10\x00\xfe\x77\xff\xee\xdf\xc5\x28\x7c\x59\x5f\xaf\x12\xba\xbe\xcd\xe3\xe6\xb3\x28\xef\x45\x60\xaa\x2b\x2c\x4b\xf3\x51\xeb\xf7\x38\xe9\x56\x89\x9b\x02\x78\xf1\xbb\x14\x91\xb9\xf0\xa5\x2f\x7d\xa9\xa1\x68\x21\x8b\xe0\x15\x02\xab\x1c\x34\x4b\x31\x15\xe5\xc4\x9c\x15\x13\x7e\xa2\x98\xea\xf3\x4a\x63\xd0\x30\x46\xc3\x20\x85\x65\x42\xca\x1b\x3f\x9e\xad\xd0\xb6\xfb\xa6\x84\xf6\x19\x38\x00\xee\xa5\xba\xb7\xd6\x18\x7a\x60\x84\xe5\x98\x66\x93\x00\x35\x31\x8b\x0b\x80\xbd\x75\xab\x8a\x0a\x12\x79\x10\x65\x15\x04\xb6\x35\x36\xc0\xc1\xc6\x21\x43\xa0\xa6\xc3\x5a\xf4\x69\xe9\xdc\x2a\x29\x36\x27\x17\x5f\xbc\x77\xf1\x25\x6f\x10\x96\x9d\x86\x7f\x34\x7d\xc1\x44\x60\x85\x72\xb2\x9d\xfd\xe8\xd1\x85\xde\x1b\xe5\xba\xda\x63\xc2\x09\x11\x9d\xa2\x11\xd0\x53\x34\xca\x47\x05\x60\x6e\x84\x72\x6d\xbe\x29\x5f\xb9\x72\x85\xde\x7e\xfb\xed\x85\x63\xca\x82\x17\x22\x62\x61\x81\xb0\xc2\x3d\xfc\x54\xfe\x19\x01\xd0\x0c\xe6\x59\x8f\xcb\x51\xbf\x1e\x9f\xf4\xeb\x51\x99\xf1\xa9\x26\xd4\x19\x53\x66\xe6\x02\x2a\x8f\x27\x3d\x70\xf4\xdc\x9d\x7c\x1f\x03\x7e\x75\x91\x91\x33\x9a\xa0\x2b\xc5\xf3\xd3\x42\x1f\x1f\xac\xcf\xef\x7e\x70\x76\x7a\xf3\xdd\x9d\xe9\x8f\xde\x3b\x37\xbd\xf9\x70\x58\xdd\x07\xe1\x18\xc0\x31\x11\x9d\xa0\x01\x2d\x27\x00\x26\x00\x66\x44\x34\x33\x7d\x32\x37\x7d\x62\x5d\x06\xd6\xca\x88\x57\x5f\x7d\x95\x27\x93\x89\x64\x9d\x0c\x00\x16\xb4\x40\x80\x7a\x0b\x5a\xd0\x58\x59\x7a\x00\x7a\x79\x4d\x6b\x67\x4f\x7b\xe7\xae\x1e\x0e\x3e\xf5\x99\xfb\xeb\x5f\x7b\x72\xd4\xff\xad\xf5\x32\xfb\x1b\x3d\xa6\xcb\x04\x1a\x04\xe0\xcd\x66\x0e\xcf\xc3\x25\x4f\x6f\xc6\x2b\xfb\xf1\x02\x8f\xb7\x89\xa9\xa7\x80\xed\x5e\xad\xae\xac\x97\xd9\x95\xed\x69\xef\xec\x7a\x99\x61\x9e\xf1\xe9\x2c\xd7\x65\x6d\xa5\xa2\x10\xca\xd1\xb7\x24\x22\xe2\x17\x5e\x78\xc1\x82\x17\x1b\xba\x8c\x00\xc1\x98\x11\x4b\x9d\x9d\xa5\x85\xc2\x55\x54\x3d\x30\x8a\xc1\x5c\x0d\x2f\x8f\xfa\x4f\x3f\xb7\xb7\xfe\xd5\xa7\x1f\xf5\xbf\xbd\x39\xcb\x5f\xec\x69\x7a\x12\xc6\xd2\xe4\x3c\x0e\x02\x94\x90\xe3\x1d\x1e\xb4\x04\x8a\x4a\xd0\x47\x62\xdc\x70\x53\x0f\x05\xac\xe7\xb5\xda\x1d\x56\xd9\xa5\xad\x59\x3e\x2c\x6a\x35\x3d\xee\xd7\xe3\x69\xae\x4b\x27\x26\x4d\x5e\x16\xd8\xd9\x36\x8a\xfe\x58\xc6\x4f\x21\xfa\x49\x2a\xb0\x94\x78\x1f\xe7\x41\x00\x38\x4b\x74\xf2\x2a\x21\x65\x95\xc1\x0b\x2f\xbc\x40\xdc\x38\xba\x89\xbc\x49\x34\x63\xe6\x1e\x35\x6b\xe8\xfb\x44\x54\x0c\xe7\xd9\x99\x27\xc6\xbd\x8f\x9d\x3d\xcd\x9f\xce\xb5\x1a\x5a\xca\x0d\x26\x0f\x3a\x45\x49\x70\xa8\x08\xb4\x58\x8d\x43\xba\x7a\x9a\x7c\xec\xb5\xf9\xb4\x42\x43\x81\xcf\x2d\x30\xbf\x3b\xe6\x2c\xca\xf6\xbf\x26\x06\x59\x5f\x3a\x50\x2b\x2e\x4f\xfa\xfa\xde\xfe\xfa\xfc\x9d\xa3\xb5\xf9\x21\x1a\x1f\xf0\x1c\x1e\xbc\x58\xe0\x62\xab\xca\x62\x90\xcb\x3e\x97\x1f\x28\xee\xdb\xf8\x3e\xf5\x8d\xba\x84\xab\x1c\x18\x71\x19\xa9\xf4\x5d\xf9\xdb\xfa\xc6\xe5\xc8\x5f\x12\x7f\xa9\x81\x19\xd7\xab\xeb\xdd\xa2\x7e\x49\xd5\xaf\xab\xbe\xcb\xfa\x70\x51\x3d\x17\x59\x1c\x63\x97\x13\xff\xda\xaf\xfd\x9a\xfa\xd7\xff\xfa\x5f\xeb\x2f\x7d\xe9\x4b\x76\xdc\x5b\xc6\x1c\xd0\x00\x2c\x53\x22\xf4\xb4\x42\xd6\x2b\x79\xb3\x3f\xe1\xdd\x7c\xce\x67\x24\x0e\x27\x23\xd8\xad\xa8\xb6\xbb\xe4\x3a\x01\x6c\xc6\xb3\x9d\xec\x1a\xee\xeb\x46\x4e\x03\x77\x20\x45\x02\x73\x00\x81\xb5\xc4\x02\x71\x0b\x26\xe0\xa4\xa2\x68\xbe\x60\x6f\x82\x3c\x25\xbd\x5a\xd6\xe5\x98\x27\xf9\x94\x96\xb9\x3a\x00\xc6\x22\x67\xd9\x00\x8a\x18\xac\x05\x27\xe0\x00\xb0\xb8\xd4\xd2\x72\xc4\x2e\x96\x11\xe6\xbe\x02\xce\x29\x6c\xea\x36\xef\xd3\x83\xd1\x6e\xfe\xea\xf1\x4e\xf6\x8e\x2e\xd4\x11\x11\x9d\x18\x77\x88\x75\x85\x94\xc6\x24\x5e\xa3\xa1\x61\x83\x49\xc1\xff\xe2\x5f\xfc\x0b\xf9\xed\x93\x74\xfb\x5b\xbf\xf5\x5b\xea\x3b\xdf\xf9\x8e\xb6\xe0\x45\xb8\xcc\x03\xd0\x62\x98\xbe\x64\x65\x36\x2f\x5d\x65\x3c\x3f\xee\xd7\x93\xc3\xe1\xfc\xe1\x71\xbf\x3e\x2a\x33\x9e\xd4\x0a\x35\x53\x5b\xc1\x14\xd8\xb6\x55\x25\x26\x68\x56\xe0\x5a\xf1\xbc\xcc\x78\x76\xd2\xaf\x47\x0f\x87\xd5\xdd\xdb\x67\x66\xef\xbc\xbb\x33\xfd\xd1\x3b\x3b\xa7\x37\xee\x6d\x95\x1f\xcc\x7a\xfc\x88\x99\x8f\x01\x9c\x10\xd1\x18\x0d\x60\x19\x9b\x49\xc4\xa7\x30\xd6\x64\x03\x56\x6c\xbf\xd4\xc6\xea\xc2\x00\x70\x78\x78\x88\xb7\xde\x7a\xcb\xb6\x43\x01\xd0\x5f\xfe\xf2\x97\x95\x04\x2d\x72\xf5\x90\x00\x2d\x39\x33\x17\x3d\xad\xd6\x9e\x18\xf7\x9e\x78\x6e\x6f\xfd\x0b\x9f\x7a\x30\xfc\x3b\xe7\x26\xbd\x6f\xf5\xab\xec\x33\x04\xea\x37\xdf\xae\x19\x2b\xd2\x82\x00\x41\x2b\x4e\x5e\x08\xcb\x92\x14\xd6\xb6\x7b\xe4\xd9\x4d\x0a\x94\x65\x4c\xe7\x06\x73\xf5\xb1\xcd\x32\xbb\xb0\x51\x66\xba\xcc\xf5\xc9\xb4\x93\x3d\x4b\xda\x00\x00\x20\x00\x49\x44\x41\x54\xa7\x67\x55\xc6\x15\x84\xa5\x45\x08\x69\x98\xef\xea\xc0\xcb\x68\x34\xa2\xc3\xc3\x43\x5b\x98\x0e\x4b\x0c\xf9\xa2\xd8\xaf\x46\x4e\xc8\x95\xfd\x51\x00\x28\xfa\x95\x1a\x5e\x7d\x38\xb8\xfa\xd9\xfb\xeb\xbf\x7a\x69\xd4\xff\xf6\x70\x9e\x7d\x5e\x31\x6d\x5a\x41\x46\x62\xfe\x99\xe7\x17\x70\x0a\x89\x79\x01\x0f\xe9\x20\xad\x46\x2e\xbe\x07\x3e\x96\x67\x10\x08\x94\x67\x1a\x67\x07\x95\xba\xbc\x39\xcd\xcf\x0c\x6a\x75\xb4\xbf\x31\x7f\x38\xcf\xb8\xb6\xe6\x3d\x31\x81\xd9\xf5\x8b\xb5\x44\x59\x00\xa3\x94\x52\x22\xa2\xf3\xc8\x98\xbf\x78\x7e\xa2\x1c\x3b\x8c\x44\xdf\x89\x3c\x38\x13\x0f\x52\x44\xb9\x4c\x90\x11\x00\x7e\xf1\xc5\x17\xd5\xed\xdb\xb7\xf9\x85\x17\x5e\x20\x1b\x84\xaf\x2e\x33\xd6\x16\x6b\x02\x1b\xac\xcd\xd5\xe6\x13\x27\xc5\x33\xe7\x26\xbd\xab\x85\xa6\x75\xc9\x58\x43\x50\x01\xf1\x04\x08\x78\xaa\xfb\x50\x61\x3a\xb9\xdc\xd3\x33\x32\x08\x20\x24\xd9\xb1\x2c\x57\x3c\xb1\x79\xca\xca\x90\xcf\x8b\x09\x60\xe2\x6a\x52\xe8\xfb\xfb\xeb\xf3\x77\x1f\xae\x57\xf7\xa9\x31\x31\x5b\x6d\xad\x86\x9f\xc4\x64\x3f\x08\xbf\xfa\xea\xab\xdc\xef\xf7\x55\x5d\xd7\x52\x30\xc6\xfd\xbb\xe8\x7e\xd1\xb7\x88\x99\x9a\x14\xba\x81\xb0\x7d\xcc\xfc\xe3\x77\xa9\x5f\xf9\x17\xc7\x8f\x41\x42\x60\xf2\x4b\xc4\x5f\xd5\x1a\xb5\x68\x1e\x4d\xfc\x3c\xae\x57\xaa\x9e\xb2\x4e\x31\x88\x89\xdb\xec\xae\xdf\x7d\xf7\x5d\xfe\xf6\xb7\xbf\xad\x36\x37\x37\xa5\xf6\x6c\xaf\x2d\x68\xb1\x00\xbe\xd9\xbd\x32\x23\x45\x8c\xbc\x38\xe5\x73\xbd\xa9\x3e\x47\x9a\xfb\x8e\x89\xc0\x8f\x53\x58\xa0\xec\x84\xb6\x90\xfe\xd6\xb2\x68\x2a\xd3\xa4\xf7\x62\xac\xe9\x74\xf3\xdf\x31\x16\x0b\xc4\xc9\x30\x7d\xd3\x0c\x7b\xe2\x73\x20\xec\xad\x85\xc5\x32\xca\xd6\x5a\x27\x6f\xd9\xf0\x59\x1a\x10\xe1\x69\xc7\x09\x16\x7b\x16\x8f\x7b\x0e\x5b\x98\xa8\x42\x7b\x1b\x83\x06\x30\x85\x2b\x9f\x58\x30\x6c\x07\x50\x1a\x55\x3a\xcc\xc7\x12\xb1\xab\x03\xf4\xe9\x99\xec\xc7\x0f\x2f\xf5\x5e\x2b\xd7\xd5\x7d\x56\x8d\x90\x26\xa2\xa9\xf9\x9b\xa1\x11\xd0\x73\x66\x76\x6e\x22\x98\xf9\x1b\x91\xe2\x91\x1c\x8b\x37\x6e\xdc\x60\xa0\xb1\xbc\x58\x7e\xe8\x87\x43\x98\x4e\x08\x44\x6d\xe2\xd4\x64\x8f\x0b\x20\xd4\xf3\x9c\xe7\xa3\xb5\x6a\xb4\xbf\x31\x3f\x7c\xb4\x56\xed\x8d\x06\xf5\xe1\x69\xa1\x4f\xe6\x99\x9e\xd6\x8a\xcb\x3a\x43\xad\x09\x73\xad\xb8\xd6\x04\xd6\xc4\xac\x09\x55\xa5\x78\x3e\xcf\x79\x3a\xeb\xe9\xd3\x71\xa1\x1f\x3d\x1c\x56\xf7\xef\x6e\x95\xb7\xde\x3f\x3b\xbb\xf9\xee\xf9\xd3\x1f\xbf\xb3\x73\x7a\xf3\xde\x56\x79\x7b\x5a\xf0\x43\x34\x56\x96\x13\x22\x3a\x31\x96\x96\x09\x33\x8f\xa9\xb1\x3e\x4d\xc8\x6c\x9e\x67\x94\x32\x3b\x57\xcb\xf1\x35\xb3\x3c\x9c\xfe\xfd\xbf\xff\xf7\x98\xcd\x66\x0c\x00\x45\x51\x50\x5d\xd7\x2c\xdc\x43\x52\x58\x3b\x21\x6d\x56\xcd\x14\x19\xd3\x60\x77\x5c\xec\x3e\xb7\xb7\xfe\xe5\x8f\x1f\xac\xfd\xdd\xad\x59\xfe\xf5\x9c\xd5\x45\xf2\xc6\x76\xff\xbd\xed\x58\x17\x56\x41\x3b\xf7\xc9\x0e\x07\x2b\x82\x19\x12\xa4\x7b\x9a\xb2\xd7\x76\xbc\x2b\x50\x91\x6b\xf5\xe4\xda\x5c\x3d\xb9\x39\xcb\x51\x65\x78\x34\xe9\xe9\xc9\x3c\x63\xed\x89\x24\x9c\xc3\x63\xc6\x06\x31\x33\xdf\xbd\x7b\x17\xe6\x54\xe5\x14\x6f\x65\x00\x3c\x1c\x0e\xd5\x7c\x3e\x67\xa3\xe0\x98\x2c\x28\xd8\x54\x0e\x40\x01\x46\x41\xc0\xe0\xe9\xa3\xfe\x53\x9f\xff\x70\xe3\x37\x2f\x1e\x17\xff\x7b\xbf\x52\x9f\x56\xa0\x41\x28\x1b\xbd\xe0\xb3\xc0\xcd\xcb\x39\x0a\x2d\x99\x08\x95\x02\x11\xd5\xf5\x65\x28\x11\x0d\xd5\x31\xad\x17\x35\x3d\xb5\x31\xcb\xb6\x32\xc6\xbd\xc3\xe1\xfc\xb8\xca\x78\x6e\xe8\x8d\xcd\x58\x75\x80\x5b\x22\x75\x03\x5e\x62\x50\x22\xff\x24\x9f\x8e\x79\xbf\xac\x66\xd2\x4b\x91\x5a\x0e\x9d\x9a\x54\x94\x9a\x29\x2c\xe3\xa6\x26\xe6\xb6\x8e\x88\xb7\x69\x34\x71\x55\x29\x6d\xb6\xfd\xf7\x93\x09\x1d\xb3\x31\x55\x8e\x19\xa5\x67\xbc\xf1\x0b\x7b\x1f\x7e\x92\x20\x1a\x99\x8f\x27\x60\x8d\xf7\xcb\xb7\x3f\x66\x5c\x84\x6c\x1b\x11\x41\x31\x15\x45\xad\x86\x85\x56\x03\x02\x94\x16\xa6\x3f\xe1\xb3\x6c\xa5\x7f\xf1\xc5\x17\xf1\xdd\xef\x7e\x37\x91\x33\x80\x6e\x61\xfc\x51\xc3\x5f\x65\x7e\x1f\x35\xaf\xae\x89\x58\x5d\xe3\x6c\x59\x19\xcb\xe2\xfd\x3c\xed\x8d\x27\x8f\xad\x94\xd7\x7f\xf8\x0f\xff\xc1\xee\xc3\x20\x8f\xbe\x90\x93\x73\x35\x9a\xc9\x9f\x8d\x3b\x91\x50\xce\xd6\xd5\x83\xd3\x33\xea\xd6\xda\xb1\xba\x92\x55\x7a\x0b\x80\x03\x24\xed\xf1\x2f\xc1\x05\x1b\x59\xdc\x3c\x0b\xe7\x8b\x88\x34\x06\x98\x30\xfb\x34\xde\x8f\x60\x0b\xb0\x68\xde\xe4\x8f\xc4\x0a\x25\x0b\x5e\x60\x28\x4a\x10\xa9\xdd\x6d\xba\xa1\x5f\x72\x8b\x93\x24\xe5\xc9\x49\xa1\x2e\x0f\x5b\x31\xc1\x80\xc5\x4e\x33\xbe\x5d\x16\x70\xb8\xba\x78\xa4\x16\xda\x2f\x7c\x8d\x7d\x9d\xfd\x53\x9b\x47\xd5\xa3\xa3\x93\x33\xea\xa7\xa7\x9b\xd9\x03\xdd\x6c\x3a\x67\xad\x2b\xd2\xcd\x0b\x84\x13\x33\x41\xd4\x9a\x8c\xb9\x2c\xc8\xb1\xd0\x9a\xb4\x2a\x26\x39\x02\x7e\xf2\x2f\xc8\xbb\x5f\xdc\xd8\xd1\xe0\xf2\xb4\xd0\xe5\xfb\xbd\xe9\xa3\x0f\xce\xce\xee\xac\x95\x6a\x73\xfb\x34\xdf\x3a\x33\xcd\xb7\xd7\xcb\x6c\xa3\xa8\x68\x50\xd4\xaa\x28\x6a\x35\xc8\x34\x72\x4d\xd0\xf3\x8c\xa7\x65\xae\xcb\x52\xe9\xf2\xa4\xa8\x47\x8f\xd6\xea\xd1\xd1\xda\xfc\x68\x9a\xeb\x49\xad\x70\xca\xe0\xa9\x01\x26\xf2\x6f\x62\xff\x4c\x7f\x4c\xc8\xaf\x22\x2a\xe5\xa4\x65\x5b\x3f\xdb\x06\x31\xf7\x07\x00\x54\x59\x96\xc1\xbe\x24\x26\x9e\xb4\x2c\x28\x08\x41\x7d\xfe\xa4\x77\xee\x53\x0f\x86\xcf\x7f\xec\x60\xf0\x7f\x6c\x94\xd9\x4b\x66\x49\x6f\xb4\xb5\x45\xb0\x36\x34\xe4\xd3\xc2\x12\xee\xe2\x3a\x00\x2b\x41\x78\xf4\x95\x04\xd8\x26\x42\xde\xaf\xb2\xcf\xee\x1e\xd3\x46\xae\x69\x2b\xd7\xf4\x7f\xff\x74\x67\xf2\xf6\x49\xa1\xc7\x16\x18\xa3\x19\x23\xd2\x0a\xa3\x89\x08\x2f\xbd\xf4\x12\xde\x7c\xf3\xcd\xe0\xdb\xc7\x63\x61\x32\x99\xe8\xc8\x45\x14\xfc\x31\x73\x4e\x68\x14\xfb\xad\x69\xbe\xf5\xb9\xbb\xeb\x5f\xdf\x1d\xf7\xbe\xdd\xaf\xd4\xb3\x60\xca\x17\xc9\xa8\x40\x86\x45\x6d\x74\x71\x84\x72\x12\x58\x44\x85\x5b\x55\x3e\xb7\xf7\x8a\xb1\xb1\x31\xcb\xfe\xd6\x27\x1f\xac\x4f\xe7\x19\x7f\xe7\x47\x17\x4e\xde\x9e\x14\x7a\xe4\x79\x11\x01\x66\xe5\x9c\x19\x13\xae\xfd\x9b\x9b\x9b\xea\xf8\xf8\xf8\x71\xe8\xa6\x0b\x6f\x00\x91\xbc\xb0\x16\x97\x45\xda\x6d\x97\xb6\xe9\xee\x6f\xdf\xbe\x6d\xfd\xba\x40\x83\x24\xad\xa6\x61\xb5\x4d\x3b\xbf\xa5\x07\xa0\x28\x6a\xb5\x79\x7e\xd2\xbb\xbc\x73\x52\x3c\x53\xd4\x6a\xdb\x76\xbc\x03\x91\x11\x68\x71\xcc\x4b\x7c\x1c\xff\x41\x24\x3f\x0b\xd8\xa3\xe7\x69\x42\xa3\x03\x04\x00\x92\x65\x06\xf9\xf8\x8f\x17\xcf\xa7\x11\x0c\x87\xca\x9c\x1f\x1e\x6c\x54\xef\xec\xaf\xcf\x3f\x64\x85\x29\x9a\x89\xb9\x33\xf2\xcb\xc6\x98\x9a\x99\xf7\x6c\xcd\x8a\x07\x07\x07\xb8\x75\xeb\x96\x44\x98\xb2\x5f\xed\x78\x7c\x1c\x57\x49\x8c\x4a\x6d\xcb\x62\xad\x50\xe6\x9f\xca\x6f\x91\xab\xd0\x99\xe8\x44\xbc\x55\x5d\x5a\xcb\xca\xb0\x79\x21\xf1\x2e\x55\x86\x6c\x47\xca\x5d\xd5\x55\xa7\x45\x79\xca\xfa\xa5\xbe\xc1\xb2\xbe\xe1\x57\x5f\x7d\xd5\xd2\x40\x33\x9c\x3c\x51\xcb\x09\xf0\xb9\xd5\x38\x75\x46\x04\x50\x5e\x4c\xf5\x56\x31\xd5\xe7\x14\xa3\x0f\x50\x20\x90\xfd\x3c\x0e\x29\xb0\x85\x25\xc4\x6a\x51\xce\xea\x41\x2d\x81\x6e\xb5\x2f\x3f\xfa\xe1\xb9\x5b\x60\x45\xa1\x28\x6f\x48\xa9\x21\x32\x25\x57\x27\x6f\x88\x26\xf7\x9a\x22\x09\x41\x96\xee\x1c\xa7\x14\x19\x3a\x15\x59\xa4\xb1\xd6\x20\xf3\x5e\x1e\x0c\xe8\x94\x8f\x2e\xee\x6c\xaf\x4d\x7e\x0d\x36\x32\xd7\x04\x3d\x3d\x93\xbd\x75\xf0\x74\xef\x7f\x94\x6b\xea\x01\x14\x1d\x1b\xcb\xc2\x09\x33\xcf\xe0\x97\xfb\xce\xe1\x81\x4b\xdd\x74\x2b\xe1\x83\x0f\x3e\xa0\x93\x93\x93\x78\x6c\xa4\xe8\xcc\x31\x5c\x3b\xdf\xc5\xb5\xdc\x5b\x58\x6c\xdc\xda\x28\xa9\x6c\xde\xd7\xcc\x5c\xa3\x01\xb9\xd6\x6a\x6b\x81\x55\x45\x44\xb3\x2a\xe3\xd9\x71\xbf\x1a\x1d\x6c\x54\xfb\x1f\x6e\xcd\xee\xdd\xd9\x2e\xef\xde\xde\x9e\xdd\xb9\xbd\x3d\x7b\xef\xfd\xb3\xd3\xf7\xdf\x3b\x3b\xfd\xd9\xad\xf3\xd3\x5b\xef\x9d\x3d\x7d\xef\xce\x76\xf9\xde\x83\xcd\xf9\xdd\x51\xbf\x3a\x9c\xe7\x78\xc4\x0a\xc7\x20\x4c\x88\x9a\xd5\x42\xa6\xed\xc7\x68\x40\xca\x18\x0d\x70\x39\x85\x01\x33\x76\x32\x2e\x37\xab\x6d\xdc\xbc\x16\x33\xb6\x99\x99\xf1\xda\x6b\xaf\xc5\xb4\x4d\x2f\xbd\xf4\x12\x3d\xf1\xc4\x13\x56\xb8\x53\x24\xa8\x33\xf8\x1d\x6c\x07\xe7\x27\xbd\xb3\xbf\x70\x6f\xfd\xc5\x67\x0f\xd6\xfe\xcf\x8d\x32\xfb\x8a\x62\x5a\x6f\x3a\xb5\x6d\x21\x08\xc6\x86\x97\xbc\x86\x06\xe4\x70\x90\x13\x95\xa9\x2d\xac\xc5\xc7\x73\x69\xcc\x4d\xce\x74\xa6\x5f\xa9\x8b\x6b\xf3\x4c\xcd\x33\x7e\xf0\x68\xad\x1a\xd5\x2a\x00\x97\xf6\xe0\x4d\x6b\x6d\x60\x66\xc6\x0b\x2f\xbc\x40\xbd\x5e\x8f\xee\xdc\xb9\xe3\x46\xa1\x1c\x0b\x72\x19\xb8\x95\x8d\xc6\x2b\x51\x90\x99\xff\x49\xa0\x7e\xce\xb4\xfe\xb7\xde\x3d\xf3\xd5\xcb\x47\x83\xff\xab\x5f\xa9\x8f\x13\xa8\x47\x24\x15\x80\xb6\x8c\x72\xe4\x27\x57\x15\x46\x32\x54\x26\x92\xe9\x2c\xcd\x3b\x39\x68\x5f\x39\x90\x43\x20\x50\xaf\xa8\xe9\xf2\xc6\x2c\xef\x57\x19\xef\x1d\xf7\xab\xe3\x32\xd3\x76\xd3\x3e\x36\x6d\xb2\xb9\x3a\x7a\xf8\xfe\xf7\xbf\x9f\x9a\xac\xdd\xe5\x0a\x52\x88\x9a\x16\xbd\x97\x2d\x69\x1f\xa2\x14\x85\xae\xf7\x4a\xfe\x66\x59\xa6\x24\xea\x66\xb6\x5b\x8b\x73\x52\x93\xae\x94\x2e\x67\x99\x9e\x54\x19\x4f\x03\x50\xb0\xe0\x3a\xd5\x22\xd9\xe1\x48\xb4\x0e\xf2\x39\xb7\xdf\xc9\x7c\xe3\x33\xe0\x6c\x92\x88\x45\xba\xf6\x11\xa0\x32\xc6\xa0\x3f\xa7\x8d\xa2\xa6\x02\x08\xb6\x8d\x16\x02\xc3\x0b\x82\x84\xd6\xd6\x75\xdf\x65\x51\x58\x94\x5e\xf6\xf3\xaa\x2e\x94\x55\x96\xa5\xc9\xf7\x32\x8f\x55\xf3\x5a\x05\x71\xc7\xcb\x07\xbb\xd2\xc6\xed\x8b\xfb\x6b\x59\xff\x76\xe5\x99\xaa\x47\x9c\xbf\x0c\xc9\x3a\x4a\x2d\xda\x30\x37\x20\xdc\xc4\xc9\x6a\xf5\x25\x80\xe9\x6c\x9d\xee\x8f\xcf\x67\x3f\x9d\xae\xab\x0f\x99\xa0\xd9\x18\x34\xdc\x81\x3c\x6d\x5e\x60\x4b\x82\xb7\x58\xd8\x6d\xff\xd9\xb0\x2c\x76\x83\x56\xb8\xa1\x7d\xbc\x66\xbb\x5a\xef\x06\x07\x1a\xd7\x0b\xc9\xb8\xf6\xca\xe7\x0d\xa3\xbb\x26\x09\xc2\xd5\xca\x03\x06\x57\x9e\xd8\xcc\xd1\x55\xdd\xc6\x76\xed\x25\x51\x57\x5b\xef\x26\xa2\x3d\xe5\xda\x56\x8d\x7c\x06\x2e\xae\xc4\x42\x2d\x0d\xdb\x58\xbf\xaa\x3e\xed\x3f\xda\xc9\xde\x9c\x9c\xc9\xee\xb3\xc2\x04\xe1\x7c\x96\x92\xfc\xce\xa0\x72\xe7\x5c\x77\x06\x9b\x71\x05\xc4\xfc\x6c\xe9\xd8\x36\x7c\xc0\x59\x9f\xad\x52\x63\xc0\x80\xb5\xc4\x4d\x89\xc8\xee\x50\x3b\x36\xc0\x62\x04\xe0\xc8\xfc\x8d\x88\xe8\x10\xc0\x08\xc0\x11\x11\x1d\x31\x73\xf3\x0b\x1c\x54\x8a\x1f\x4c\x73\xfd\x60\xd2\xd3\x77\x4f\x7b\xfa\xfe\x5c\xf1\x03\x06\x0e\x6c\x7a\x22\x3a\x64\xe6\x23\x93\xfe\xd0\xa6\x35\xf9\x8e\x89\x68\x04\xc0\x02\x17\xb7\xb5\xbf\x00\x4c\x76\x8f\x1b\x37\x19\x97\x99\x93\x7b\xb6\xfc\xca\xaf\xfc\x4a\xb0\x01\x9d\xa0\x03\xcb\x1b\xad\x5b\x64\xb0\x3e\x53\x1b\x9f\x7c\xb0\xf6\xc5\x2b\x0f\x07\x7f\x67\x7d\x96\x3d\xaf\x18\x1b\x9e\x37\x47\x5b\x56\xd8\x39\x2d\xf0\x82\x95\x80\x00\xdc\xd8\x5f\x8a\x06\xa9\x13\xfc\x10\x91\xe4\x65\x84\xcf\x73\x4d\x17\xcf\x9d\xf4\xbe\xf6\x89\xfd\xb5\x6f\x5e\x39\x1c\x5c\xc9\x6a\x0c\x21\x0e\x26\x14\x6d\xb6\xae\xaf\x80\xf6\x45\x56\x76\xbc\xb8\xbe\xb2\x20\x8e\xfd\x8a\x2a\x7b\x56\x50\xd1\xab\x69\xe3\xf3\x77\x36\x3e\x75\xf9\x68\xf0\xdb\xfd\xb9\xfa\x04\x01\x85\x25\x0c\x22\xbb\x60\x84\xc3\x36\x08\x72\x60\xd3\x29\xae\x2a\x76\x6e\x26\x07\x4d\x76\x3c\xc6\xf5\xb5\x11\xa6\x92\x27\xb8\x7e\x33\xf1\x15\x63\x63\x73\x96\x7d\xf5\x13\xfb\x6b\x7f\x73\xe7\xa4\xb8\xd4\xd3\x6a\x60\x5c\xdf\x45\x04\x4c\x5d\x78\xf9\xe5\x97\xd5\xfe\xfe\xbe\xe4\xa1\xd2\x9a\x62\x9f\xa5\x78\x78\xfc\xac\xc5\x6f\x97\x01\x17\x19\x64\xe5\x82\xcc\xea\xba\x0e\x08\xd8\x7e\x48\x8b\x4c\x01\x37\x70\x34\x00\x5d\x29\xae\x66\x39\x4f\xe7\x8a\xcb\xb4\x1a\xdb\xa5\xdc\x8a\xb7\x0e\x45\xdb\x8f\xc3\x6d\xde\x9b\x00\x2b\xcd\x4d\x22\x82\x88\xc7\xd1\x17\x64\x66\x3f\x60\x9a\x06\x02\x20\x64\x35\x15\xfd\x4a\x0d\x8b\x4a\x15\x08\x4d\xa2\xf2\x37\x08\xdf\xfd\xee\x77\x63\xb0\xd1\x15\x16\xe6\x83\xf0\xe3\xdb\xdf\x45\x69\x7e\x5e\x17\x4a\xca\x04\xfa\x51\xf2\xf9\xab\x0e\x1f\xa5\x1e\xab\x84\x45\x75\x5d\xe5\x9d\x34\xab\x5b\xb0\x52\x39\x13\x3d\x61\x5a\x15\x34\x9a\x9c\xc9\xde\x3b\x39\x9b\xfd\xb4\x2a\xe8\xd0\x01\xe9\x00\x21\x58\xc6\x1c\x21\x06\x61\xa1\x70\x3e\xef\x10\x8a\xc3\x4f\xd1\x20\x81\x83\xbc\x4b\xc7\x41\x08\x41\x38\xd6\x92\xe3\x72\x14\x79\x4b\x11\x11\x82\x22\x99\xc2\xa7\x71\x06\x15\x9b\x3a\x62\x8c\x8e\xc9\xb2\xff\x0d\x9b\x19\x6a\xdd\x91\x3f\xc0\x6b\x8d\x16\xdc\xb0\xcf\x80\x88\x1d\xd3\xad\x73\x4c\x26\x5b\xea\xe6\xe8\x42\xef\x27\xac\x30\xe1\xf0\xdc\x1d\xb7\x12\x90\xda\x7b\xf0\x2c\x03\xbe\x0b\x69\x74\x7d\x7d\xdd\x6d\x58\xc6\xd1\x19\x46\x06\x08\xb8\x93\x96\xd1\x00\x05\xe7\xb2\x31\x16\x10\x0b\x2a\x2c\xe8\xb0\x40\xc6\x02\x8f\x43\x10\x8e\x40\x38\xb4\x7f\x0c\x36\xcf\xc8\xc5\x35\xa0\x45\x82\xa0\x11\x80\x91\x01\x47\x16\xb0\xd8\xbf\xa9\x99\x94\x6b\x97\x85\xcb\x33\x89\x5c\xfb\x27\x93\x49\xb2\x4f\x7a\xbd\x9e\x7c\x1e\xbb\x44\x1c\x68\x01\x50\x5c\x7a\xd4\xbf\x7c\xe9\x51\xff\x6f\x6c\xcc\xb2\xcf\x99\x8d\xe4\x82\xfe\xb3\x8e\x9e\x06\xa8\x88\x55\x43\x01\xb8\x6e\x5b\x52\xec\xf3\x20\x2f\xf2\x50\xc8\x91\x8e\x48\x17\x96\x4b\xaa\xa8\xe9\xf2\x13\xe3\xe2\x6f\x3d\x7b\xb8\xf6\x37\x2f\x1c\xf7\x77\x94\x76\x67\x1e\xd9\xed\x0d\xe2\xb6\xe1\xd3\x9f\xfe\x74\xdc\x76\x00\xd0\xf6\x70\x42\x34\xf5\x4f\xf5\x47\xae\x34\x86\x5b\xd3\xfc\xdc\xc7\x0e\x06\x5f\x5f\x2b\xd5\xe7\x54\xb3\x4f\x4d\xe0\x2e\x65\xf6\x54\x28\xe9\x24\xd5\x76\x81\xfd\x5b\x71\x2d\x35\x4b\x2c\x47\xd2\x5a\x8b\xb0\x5f\x6d\xfc\x5e\x4d\xbb\x67\x27\xf9\x4b\xcf\x1e\x0c\xbe\x78\xe6\x34\xdf\x11\xfd\x51\x44\xed\xb2\x6e\xc1\xf8\x94\x6d\x1b\x52\x8a\x60\x0b\xf8\x74\x84\xc6\x58\xb2\x24\x92\x6d\x9a\x15\x5a\x52\xf5\x73\x60\x0c\x00\x7f\xf1\x8b\x5f\x54\x4f\x3d\xf5\x14\x10\x9a\x7e\x14\x9a\xbd\x2c\x14\x35\x7b\xb9\xf4\x88\xa8\x00\xa1\xbf\x39\xcb\x9f\xd8\x1d\xf7\xae\x6e\x96\xd9\x93\x24\xd8\xa8\x61\x3b\x90\xf7\xee\x97\xfd\xa0\x73\xbf\xf6\xeb\xb8\x81\x0d\x8f\xa0\x65\xdc\xc0\x04\x13\x46\x08\x3f\xba\x34\x45\xdb\x15\x11\xde\x1c\x2e\xe7\xc9\xd4\x8a\x27\xa3\x41\x75\xe7\xc1\xc6\xfc\x67\x93\xbe\x1e\xa1\x21\xf6\x39\xda\x4b\xa2\x19\x00\x3f\xff\xfc\xf3\xb4\xb5\xb5\x45\xb7\x6e\xdd\xb2\xcd\x8a\x69\x46\xba\x27\xe2\x38\xb1\xfb\x88\x13\xcf\x64\x9a\x55\x5c\x39\x5d\x2e\xa9\x38\xc4\xae\x9c\xd8\x65\x93\x8a\x9f\xaa\xf7\x22\xd7\x8d\x34\x21\x76\xc5\x89\xaf\xb1\x20\x6e\x97\x1b\x69\x51\x5e\xab\xb8\x87\x3a\xfb\x55\xba\x4b\x11\x22\x8f\x60\x95\x11\xdb\x53\x6e\x89\xb2\xc6\x65\x84\xac\x98\xf2\x66\x6f\xc6\xe7\x88\x91\x87\x8e\xea\xb6\x0e\x49\xf2\x5f\x84\x67\x9a\xe8\x4d\x1a\xb7\xc4\x9a\xa5\x66\x6a\xe6\xbb\x18\xf4\x22\xa7\x9a\x34\x9c\x4e\x10\x59\x82\x3e\x42\x0a\x05\x02\x77\x53\xaa\x2e\x08\xf7\x69\x75\xdd\x4b\x68\xe6\xc5\xa0\x0d\x5a\x62\x6e\xe0\xf2\xa0\xa8\x7e\xb6\xf9\x6e\x86\x3e\x05\x6d\x21\x30\x9a\xc3\x2d\xd5\xed\x87\x97\x7a\x3f\x3c\x39\x9f\xfd\x0c\x84\xb1\xb1\x6e\x8c\xd1\x2c\x81\x9e\xa1\x99\x54\x6f\x69\xb7\x86\x85\x41\xc6\xad\xf3\x5f\xff\xeb\x7f\xc5\x78\x3c\x26\xad\xb5\x44\x87\x04\xcf\x80\x63\x3e\x09\x00\x6a\x3e\x9f\x6b\x00\xd8\xda\xda\xa2\xf3\xe7\xcf\xdb\xa5\x18\x44\xe1\x6a\x23\x7b\x2d\xb7\x4f\xd0\xd4\x6c\x86\xe7\x56\xf0\xa0\x59\x8a\x6c\xeb\x58\xa2\x01\x18\x25\x1a\x17\x97\xdd\x63\x65\x4a\xcd\x29\xce\x53\x32\x4b\xbc\xd9\x6f\x20\x37\x41\x33\xf1\xd6\xee\xcb\x32\x31\x71\x4f\x4d\xdc\x12\xcd\x5e\x2d\xa5\x71\x0f\xd5\x40\xeb\x1c\x22\x0d\x00\x8f\x1e\x3d\x92\x5b\xbd\x3b\x9a\x79\xe9\xa5\x97\xd4\x95\x2b\x57\xf0\x95\xaf\x7c\xc5\x0d\x20\x6a\x16\x67\x28\x66\xce\x00\xf4\x88\xa8\xcf\xcc\x83\xb3\xa7\xbd\xb3\xcf\xed\xad\xbf\xf8\xe4\x71\xf1\x6b\x83\xb9\xba\xaa\xd0\xcc\xe3\x90\x43\xc7\x3b\x23\x45\x30\xbc\x38\x1a\x06\x01\x41\x86\xf0\xdd\x65\x16\x8f\x5c\xc1\x68\xdb\x34\x06\x50\x96\x6b\x5a\xcf\x35\xa9\x2a\xe3\xfd\xfd\x8d\xf9\xfd\xb9\xd2\x95\x49\xe2\xbe\xbb\x70\x97\x70\xaf\xd7\xc3\xab\xaf\xbe\xca\x5f\xf9\xca\x57\x94\x75\x19\xd9\xdd\x76\x0d\x6f\x50\xe6\xe3\x67\x44\x94\xd9\xc9\xc9\x00\xfa\x83\xb9\x3a\xf3\xe9\xbd\xe1\x2f\x5c\x7d\xb8\xf6\x77\xfb\xb5\xba\x0a\x3f\x9a\x7d\x9b\x48\x50\x05\x7b\x59\xd5\x92\x8f\xe6\xd7\xd2\x86\xeb\x27\xb6\x95\xf6\xf9\x01\x11\xc9\x77\xf4\xa1\x55\x07\x32\x4d\xeb\x39\x53\x3d\xcb\xf5\xde\xc9\x40\x1f\x95\xb9\x77\xad\x5a\x57\x9a\x4d\x66\xe9\xe7\x63\x1f\xfb\x18\x1d\x1f\x1f\xd3\x68\x34\x8a\xb3\x96\x74\x14\xcb\x3a\x5b\x74\x40\x53\xe6\x5a\xad\x8a\x70\x62\x2d\x43\xa2\xa3\x96\xe9\x5d\x9a\xe5\x6c\x43\xd8\x6f\x0f\x8d\x9a\xa0\xcb\x4c\x9f\xce\x15\x4f\x34\xb8\x72\x71\xa3\x8c\x28\x7e\x2e\x07\xaa\xfd\x08\x96\x09\xba\x54\x2d\xdd\xb4\x15\xdc\xce\xe4\x42\x81\x0b\x34\xc3\xe8\x5a\xda\x5b\xe4\x7b\xa5\xa9\x28\x2a\x35\xec\x19\x57\x11\xc2\x7e\x69\xdd\x13\x91\xb5\xb8\xac\xa4\xb1\x27\x9e\xaf\xe2\x2a\x4a\xbd\x8b\xef\x3f\xaa\x2b\x27\x36\xf1\x75\xa5\xed\x72\xbf\x2c\xd2\x60\xe3\xdf\x2e\x97\x51\x2a\x8f\x54\xdc\x2e\x37\xd2\xb2\xbc\x52\xf1\xe4\x37\xed\xec\xd7\x68\x92\xa2\x2c\x37\xd8\x4e\x9e\xc4\xc4\x48\x9d\x61\x3c\xdd\xcc\xee\x8c\xcf\xe7\x37\xcb\x35\x75\x8f\xc9\x6a\xe6\x1c\x98\xb7\x83\x6b\xfb\xaf\x99\x79\x0b\x3f\x98\x43\x9c\x15\xd0\x0f\xb3\xdf\x43\x45\xbc\x94\x56\x11\xf7\xc0\x17\x6a\xa2\xb2\xa9\x8f\xaf\x87\xa5\x3b\x59\x4e\x4b\xaf\x21\x0b\x1f\x6c\x24\x9b\x13\xb9\x6b\x97\x2c\xc6\x6a\xb0\xab\x42\x8c\x68\x31\x98\x25\x4d\xdd\xec\xcc\xe1\xec\xea\xcd\x60\x22\x5d\x15\x74\x38\x3e\x9b\xbd\x7d\xbc\x93\xbf\xc3\x8a\x26\xf0\x82\xdd\xba\x8a\xac\xc5\xa5\x65\xa2\xb6\x7d\xb5\xb7\xb7\x07\x03\x42\xe2\x38\x31\xff\x4c\xba\x09\xfe\xdb\x7f\xfb\x6f\xfa\xc6\x8d\x1b\xce\x6d\x24\xe6\x4a\x38\x90\x62\x2d\x30\xa6\x5e\x76\x8b\xfd\x09\x8c\xd5\xc5\xb8\x8f\xc6\x30\x96\x17\x66\x1e\x11\x91\xb5\xbc\x38\xf7\x91\x71\x03\x1d\x02\x38\xb4\xcf\xcd\xbb\x11\x8c\xb5\xc5\xe4\x23\x77\xc4\x75\xd6\x27\xf2\xbb\x07\xdb\x39\x0c\xce\x3d\x04\x34\x63\xfc\xcf\xfe\xec\xcf\x80\x36\x2f\xc0\xf7\xbe\xf7\x3d\xfd\x87\x7f\xf8\x87\xee\xac\x26\x03\xd4\xed\x75\x4e\xcd\x96\x18\x79\x4f\xab\xe2\xca\xc3\xfe\xd5\x0b\xc7\xbd\x17\xd7\xe6\xea\x2a\x35\x9a\x3b\xe2\xf1\xeb\x46\x92\x19\x77\x52\x63\x4b\x81\x16\xe2\x68\x18\xb1\x17\xd0\x8d\xcc\x68\x23\x6b\x07\x7c\xa3\x32\xc1\x80\x62\x0c\x37\x66\xd9\x73\x17\x47\xc5\x97\x77\x8f\x8b\x5d\x05\x1a\xd8\x76\x50\xb8\x89\x9e\xbd\x06\xd0\xec\x90\xfe\xab\xbf\xfa\xab\x2e\x4f\x31\xbf\xc5\xc5\x77\xca\x0b\x90\x67\x1a\x83\x33\xd3\x7c\xe7\xe9\xa3\xc1\x97\x07\x15\x5d\xa5\x66\x43\xb8\xb0\x0f\x10\x91\x89\xa1\x65\xeb\x69\xf0\x34\x26\x49\x38\x52\x6c\x48\x3e\xe2\xe0\xb9\x94\xa7\x1c\x7e\x86\x80\xbe\x33\xa6\x8d\xad\x69\xf6\xb9\x4b\xa3\xfe\x17\xce\x9c\xe6\xbb\x30\xd6\x33\xe3\x36\x52\x30\xf3\xf8\x00\xb7\x33\x32\xfe\xcd\xbf\xf9\x37\xfa\x83\x0f\x3e\x58\xe4\x0a\xb2\x21\x85\x29\x62\xb9\x03\x00\x7a\x15\xe0\x92\x12\x8e\x9d\x42\xcb\xfa\xfc\xd0\x00\x98\xf8\xc0\xaa\xc6\x64\xda\x6c\x84\x54\xce\x73\x3d\xd1\xaa\x99\xa9\x9d\xc8\xa7\xf5\x2c\xf8\x06\x8e\xe1\x26\x18\x59\x2b\x69\xc4\xd8\xed\x08\xa0\x54\x9c\xf6\x93\x78\x61\x99\x61\xdb\x50\x8c\xa2\x5f\xab\xad\x41\xa5\x06\x08\x99\x58\xdc\xaf\xab\xba\x33\x52\x42\xbb\x2b\x9f\x94\xab\x68\x59\xfc\xd8\xb4\xfd\xb8\xae\x9b\x94\x89\xef\xaf\x2b\x3c\x4e\xdd\x96\xf5\x9b\x0c\x8b\xe2\x74\xb5\x6f\x51\x1f\x2f\xcb\xc7\xd1\x8b\x31\xbb\x5b\xd7\x80\x71\x19\xd1\x64\xde\xa7\xa3\xf1\xb9\xec\xd6\xf8\x7c\x76\xb3\x2a\xe8\x88\x03\x16\xd5\xe2\x46\x80\x15\xe8\xd4\x58\x21\xcc\xd6\x49\x70\x60\x20\x66\xd0\x52\x53\xb3\x20\x5c\x72\x68\xa7\xc2\xf9\x39\x2d\x76\x29\x29\x2c\x36\x42\xb3\xdc\xd8\x5b\x23\x23\x80\xe3\x4c\x1d\xe4\xe9\xd2\x2a\x06\x64\xe9\x99\xdd\xbd\xfd\x25\x01\x80\x5c\x59\x8e\x36\xc9\xcd\xbf\x71\x02\x88\x3c\x66\x83\x13\x68\x91\xb6\x4c\xcd\x66\x7b\x55\x8f\x46\x93\xed\xec\xdd\xd1\x85\xfc\xed\xf9\x40\x1d\x21\x5c\x45\xe3\xe6\x6f\x40\xcc\x43\x12\x2e\x1d\x5c\xbf\x7e\x5d\x5f\xbf\x7e\x5d\x27\x56\x46\x2c\xa2\x83\xe4\xf8\xfa\xef\xff\xfd\xbf\xeb\x1b\x37\x6e\x98\xea\xf9\xe3\x04\xcc\x98\x08\x0e\x61\x84\xb7\xa8\xd8\xd5\x3f\x13\x34\x2e\x1d\x0b\x5c\xec\xaf\x74\xf9\x38\x90\x22\xde\x1d\x89\xf8\xee\xcf\x5a\x5c\xe0\xe7\xb4\xc4\x9b\x67\x3a\x20\x67\x79\x39\xe0\x81\xf9\x9d\x3b\x77\x62\x7a\x73\x6d\x4e\xb8\x06\x02\x97\x08\x80\xc1\x7a\x99\x6d\x5d\x1a\xf5\xff\xb7\xcd\x69\xfe\x59\xa5\x69\xc3\x6b\x92\xd1\x2a\x32\xf8\x1b\xeb\x2a\x02\xd8\x7b\xfa\x9b\x5b\x37\x7c\xc5\x23\xd3\xcf\xa1\xe0\x8f\xef\x1d\x08\xb6\x63\x4a\x94\x6b\x0c\xa7\xaa\x57\xd3\xb9\xb3\xa7\xf9\xe7\x2f\x1f\xf5\x3f\x5b\x54\x34\x00\x30\x60\x73\x54\x03\x22\xf7\x06\x11\xb9\xd5\xb5\xcf\x3e\xfb\x6c\xdc\x07\x29\x85\x36\x07\x50\x0c\xe6\x6a\xeb\xa9\xa3\xfe\xd5\xed\xd3\xfc\xf3\x99\xa6\xad\xa8\xff\x02\x13\x5f\x48\xbb\x5e\x11\x89\x2d\x24\x32\x6d\x48\x62\xbe\x87\xa5\xc4\x93\xf2\x54\xba\x8e\x03\x23\x44\x43\x67\xaa\x57\xab\x4b\xe7\x26\xf9\x73\x3b\x27\xbd\x2b\x6b\xa5\x1a\x22\xfc\xbe\x2d\x97\x8f\xed\x93\xa7\x9e\x7a\xaa\x4b\x19\x5d\xe6\x4e\x6a\xc5\x5d\xc6\xe8\x17\x69\x14\x41\x9c\xd7\x5f\x7f\xbd\xc5\xdc\x85\x86\x21\xb5\x0b\x0d\x40\xd7\x19\x97\x65\xc6\x93\x9a\xb8\x04\xa7\x90\x25\xb5\x9e\x01\x21\xf2\x26\x6e\x7f\x2c\x12\x33\xcc\x65\x97\x37\x1f\x8a\x5a\x03\xd8\xc7\x93\x8c\xdf\x15\x16\x7c\x78\x19\x8f\x00\x64\x4c\x45\xbf\xa2\xad\xc1\x5c\x6d\x98\xd3\x38\xdd\x87\x4b\x01\xaf\x8e\xd0\x05\x46\x52\x0c\x20\xf5\x3c\xce\xa3\x2b\xa4\xac\x0e\x29\xbf\xe2\xb2\xfc\x5b\xcc\x2a\x11\x37\xfe\x5b\x35\xdf\x4e\x6b\xd5\x92\x78\x5d\xf5\x48\x85\x55\x85\xce\xa2\xeb\xe4\xbb\xa7\x9f\x7e\x3a\x3e\x84\x4d\x82\x16\x6d\x4c\xfd\x72\x5e\xc3\x94\x99\xa7\x9c\xd1\x78\xba\xae\xee\x3f\xda\xcd\xdf\x9e\x9c\xc9\xde\x35\x4b\x75\xbd\x38\xb6\x86\x07\x13\x9c\x01\x5d\x0a\x7a\x08\x4d\xd4\xdd\x87\x4c\xc7\xab\x55\x21\xd5\xd8\x03\x0a\xfd\x28\x27\x37\x3f\xd8\xa6\x76\xe9\x02\x2b\x8c\x2d\x3f\xd4\x58\x03\x88\xe5\x64\x83\x61\xb0\xb1\x9e\xe1\x26\x6f\xfa\x02\xd9\x98\x4f\x02\x66\x2c\x81\x8f\x9b\xcf\x26\xd4\x0a\xf2\x14\xcc\x00\x74\x86\xc9\x74\x43\xdd\x7e\xf4\x44\xfe\xe6\xe4\x4c\x76\x87\xc1\x4d\x5f\x9b\xf9\x1b\xcc\xec\xac\x2d\x46\xc1\x92\x96\x05\x0d\x34\x42\x38\xcf\xf3\xae\xb1\x2c\xe9\xb1\x53\x90\xcb\xb4\x6f\xbc\xf1\x06\xae\x5f\xbf\xee\x2c\x2e\x96\x2f\xda\xf2\x8d\xb5\xa3\x92\xf3\x5e\xe0\x57\xf8\x58\x0b\x8c\x75\x73\x8d\x99\x79\xcc\xcd\xca\xa8\x00\x98\x98\xbf\x09\x33\xbb\x3f\x13\x7f\x62\xda\x3f\x31\x7d\x61\xc7\xa3\x9d\x6f\x23\x79\xb5\x9d\x97\xa3\x99\x19\xf7\xee\xdd\x8b\x3e\x5c\x68\x85\xfd\xfb\x7f\xff\xef\x2b\xd3\x7f\xf1\x3c\x0e\x2f\xa4\x19\x39\x81\x8a\x9d\x93\x7c\xf7\xec\xa4\xf7\xf9\xa2\x56\x3b\xe4\x5c\x44\x5e\x00\xbb\xc0\x1e\x13\x5b\xab\x8b\xdd\x0b\xc8\xca\x01\x27\x2f\x24\x0d\xc0\x0f\xf5\xd0\xac\x17\xd3\x51\x02\xbf\x43\xc8\x98\xe6\xd9\x60\x38\xcf\xae\x5c\x3c\x2e\xbe\x7c\xfe\xa4\xd8\x61\xe6\x02\x66\x0f\x1a\x63\x35\x51\xcc\xac\xb8\x59\x8c\xa2\x98\xd9\x81\x37\x7b\xea\xb3\x05\xaa\xc2\xda\xa2\xc8\x9c\x43\x04\xa0\x58\x9b\x67\xdb\x4f\x8e\x8a\xcf\x0c\x2a\x75\x15\x4c\xb9\x6b\x97\xb4\xa6\xc4\x16\x57\x73\x25\x27\xde\xba\x6b\x8e\xe2\x09\x79\x67\xe5\x2a\x8b\xf6\x86\x33\xe3\xc5\xa5\xe9\x58\x8e\xa2\x28\xa6\xc1\xb0\xcc\x9e\xdd\x19\xf7\x3e\xbe\x35\xcd\xb7\x11\x4e\x5c\x56\xb2\x4f\x60\x64\xe1\xb5\x6b\xd7\x94\x00\xbc\x40\xb7\xdc\x59\xc6\xdf\x35\x00\x95\xda\xc7\x45\x66\x12\xfb\x96\xe2\x02\xe5\xe0\xb5\x84\xdf\xca\xcc\x0c\xe6\x60\x0f\x80\x4a\x71\x59\xe6\x7a\xaa\x15\x97\x88\x06\x5d\x93\x48\xea\x9c\xfe\x4d\x90\xbf\xd5\x24\x39\xb1\x44\x12\x11\x11\x00\x80\x88\x17\x5b\xd0\x9a\xd7\xc6\x67\xe8\x34\xbc\x70\xf3\xac\x16\xcf\x65\x14\x45\xad\x36\xd6\xe6\xd9\x99\x5c\x53\x3e\xcf\x82\x55\x45\x8b\x84\xaa\x0c\x5d\x7d\xdc\xa5\xe5\xad\xea\xf2\x58\xf4\x7c\xd1\xfb\x65\xcf\x96\x59\x1f\x96\x59\x2d\x64\xdb\x96\xb5\xb1\xab\xfc\x2e\x8b\x91\x1c\x8b\x71\xbc\x2e\x41\xd3\xd5\x8f\x5d\x20\xb1\xab\x6e\xca\x98\x43\x01\xc0\x8e\x77\x4b\xbc\x76\x32\xa6\x82\x59\xde\x6a\x04\x91\x35\x9f\x17\x3a\xa7\xd1\xe4\x4c\xf6\xc1\xa3\xdd\xde\x9b\xbd\x29\x6f\x0f\x8e\xf5\xb3\x04\x28\xcb\xd3\x25\xa3\xb1\xfb\xa7\x04\x5e\x70\x6f\x20\x11\x34\x64\xc4\x3b\xc3\x4d\x56\xb5\xec\x9a\x41\x70\xfe\xef\x38\x13\x38\x08\xe1\xcb\x60\x0f\x84\xfc\x8e\x1a\xbe\x34\x4b\x3b\x8d\x4b\x8a\xfc\xbe\x4c\x2c\xc1\x8b\x67\x80\xde\xd2\x62\xe7\x2c\xc8\xfd\x24\x6c\x1d\xcd\xfb\x48\x32\xb1\x8c\x27\x0b\x31\x56\x28\x56\xa8\x66\x43\xb5\x77\xbc\x93\xbd\x3d\x3e\x9f\xbd\xa3\x73\x1a\xa1\x59\xb1\x23\x41\x80\x13\xda\xd6\x3d\x22\xbf\x6d\xe2\x10\xbd\xd4\x78\x5a\x74\x6d\xef\x5d\xfa\x87\x0f\x1f\x02\x08\x5d\x8a\xe6\xcc\x9a\x60\x4c\x19\x41\x27\xcb\x54\xa6\x8e\xce\x2d\x21\xca\x71\x2b\x5b\x82\xef\x10\x5a\x4b\x02\xe5\x51\x02\x26\x19\x4f\x00\x16\xeb\xca\xea\xea\x07\x79\xad\x01\xa8\x7f\xf5\xaf\xfe\x95\xdb\xbb\x85\x1c\x18\x6d\x00\x8b\x70\x8b\x14\x3d\x4d\x83\x0b\xa3\xfe\xd5\xf5\x52\x5d\x55\x0c\xb3\x5f\x0b\x3b\x00\x4b\x62\xfc\x09\x3c\x63\xc6\xb6\x9c\x4f\x45\x62\xa5\x91\x01\xf1\x9e\x91\x47\x7c\x3e\x86\xd3\x11\xb8\x46\x1b\xf8\x00\x36\x3f\x42\xae\xb1\x7d\x66\x9a\x3f\x77\xf9\x51\xff\xd9\x0f\xcf\xcc\xf6\x01\x14\x20\x77\x78\xaa\xfb\x1e\x2c\x4e\x11\x97\x7d\x66\xda\xe5\x40\x9c\x01\x2d\x39\x11\xe5\x99\x46\xb1\x5e\x66\xe7\xb6\x66\xf9\xb3\xb9\xa6\x2d\xaf\x3a\x78\x82\x77\xed\x45\x48\x37\x2c\x85\x64\xd0\x06\x0f\xe8\x2d\x79\x48\x2b\x0a\x40\x21\xaf\x08\xae\x23\x59\x6b\xe9\xd9\x64\x66\x65\x63\xbf\x56\xbb\x67\x27\xbd\x4f\x9c\x3d\xcd\xff\xf2\x60\x7d\x7e\x38\x57\xba\x24\xbf\xb1\xa0\x73\x17\xda\x6b\x66\xc6\x17\xbf\xf8\x45\x25\x0c\x1c\x32\x2c\x93\x81\x2d\x3e\xbd\xaa\x56\xea\x08\x28\xf1\xcc\x85\x05\x9b\x34\xb5\x36\x61\xaa\x09\x65\x99\xf1\xb4\xa6\xc6\x55\x14\xf0\x4f\xc4\x40\x39\xd4\x10\xe5\x32\x2f\xfb\x51\x43\x1b\x4a\x3b\x34\x83\xd3\x33\xf2\xc0\x9c\x63\x2e\xfc\x60\x97\x9a\xaa\x40\xe6\x0e\xdd\x3a\x11\xa0\xf2\x9a\x86\x6b\x73\xb5\x65\x57\x16\xa1\xdd\x4f\xab\x80\x17\x60\x35\x20\xf2\xf3\x84\x55\xeb\xf1\x57\x9d\x57\x17\xe3\x5b\x96\xff\xa2\x32\x16\xe5\x91\xb2\x78\x74\xa1\xfb\x55\x80\x5d\x17\x68\xef\x0c\xd7\xaf\x5f\x77\xe3\x5d\xce\x65\x80\x30\xc5\x8b\xf9\x15\xcd\x52\x58\xf0\xa4\xce\x31\x3a\xde\xc9\xde\x19\xed\xe6\x6f\xcc\x07\xb4\x07\x82\xb6\xda\x96\xd4\x8e\x2c\x90\x30\xb7\x42\x78\x8b\x77\x96\x36\x04\xe2\x31\x10\xc1\x59\x25\x1d\x33\xb2\x99\xd9\xc9\xaf\x4d\xbd\x9b\x3f\xa7\xaa\x19\x10\x63\x90\x8e\x9c\x04\xe8\x69\x87\x3d\x1d\x1b\x73\x28\x83\xc3\x73\x85\x5c\x2f\x19\xc6\x6b\xef\x48\xac\x72\x70\x34\xef\x11\x9b\x6b\x97\x53\x2a\x2c\x20\x83\x63\xe0\xdc\xac\x98\xaa\xe6\x03\xda\x1f\x9f\xcb\x6e\x1e\xef\xe4\x37\xe7\x03\x75\x08\xef\x12\x71\xcb\x7d\xc5\xdc\x96\x4a\x30\xda\x00\xbc\x24\x42\x8a\x46\x53\x63\x29\xf5\xce\x8d\x9d\xf5\xf5\x75\x77\x2d\x78\x66\x00\x2e\xe0\xc1\xae\xad\x63\xcb\x0a\x83\x06\x78\xb9\xa5\xd4\xdc\x80\x33\xe9\x02\x8a\x97\x36\xbb\x79\x2c\x08\x5d\x63\x12\xb8\xb9\x3e\xb8\x7e\xfd\xba\xfe\xf5\x5f\xff\x75\x75\xe5\xca\x95\x55\x00\x9b\x0d\x29\xab\x69\x63\x71\x01\x8a\x61\x99\x6d\xec\x8e\x7b\xbf\x50\x54\x6a\x87\x80\xdc\xae\x94\x91\x13\x4d\x53\x96\x82\xe6\xd6\x73\x5f\xcb\xcf\xed\x44\x5d\x37\xc4\x24\x80\x01\xc0\x62\xf0\x71\x22\xcf\x94\xd8\xe0\x40\x0e\x30\x88\x91\xf7\x2b\x75\x71\xe7\xa4\xf7\xc9\x5e\x4d\x03\x08\xd7\x88\xb0\x2e\xc4\xab\x4a\x9b\xbc\xbc\xa9\x42\xf6\x8b\x4b\x3f\x98\x67\x1b\xe7\x4f\xf2\xdd\xc1\x5c\x5d\x22\xa6\x82\xdd\x19\x63\x21\x7d\x08\x38\x11\x00\xb8\x80\x17\xc0\xd3\xae\xb7\x8c\x42\x12\x5d\xd0\x01\x12\xd4\xf9\x7c\x0c\x20\x74\x1a\x86\x8d\xcf\x41\x3e\x99\xc6\xd6\x66\x99\x5d\x39\x3b\xc9\x2f\x0f\xe7\x6a\x88\xf4\xca\x22\x2b\x53\x15\x11\xe1\xf5\xd7\x5f\xd7\x67\xcf\x9e\x95\xd6\xca\xb8\x6f\x3a\x3d\x3a\xf1\x7d\xea\x61\xd7\x60\x8c\x07\xf6\x22\xcd\x39\x58\xfe\x2c\x1e\x4b\x8b\x4b\x55\x9a\xad\xab\x83\x89\x41\x26\x22\x59\x86\x2a\x06\x9a\x33\x85\x39\xa1\x00\x07\x26\xdc\x47\x4e\x0d\x44\xf6\xe0\xc3\xa1\x6b\xb1\xb4\x92\x45\x3a\x79\x1d\xe2\x24\x86\x53\x23\xc5\xfb\x5e\x4d\x83\xe1\x3c\xdb\x16\xf3\x5c\xdc\x7e\x2e\xec\x00\x56\xf8\x6b\x42\x0a\xe4\x20\x71\xdf\xf5\x2c\x7e\xb7\x2c\x9f\x2e\x0b\xc2\x47\x09\x8b\xc0\xc0\x22\xe0\xd6\x65\x8d\x59\x35\x2c\x6a\x63\xd7\x58\x5e\x24\x58\x16\xd5\x43\x12\x58\xcc\xac\x53\xe5\xba\x78\x9f\xfe\xf4\xa7\x15\x80\xd6\x12\x58\x61\x7a\x8f\x05\x50\xe3\x06\x50\x34\x9e\xf7\xe9\xf0\xe1\x93\xbd\x37\x8f\x9f\xc8\xdf\x9c\x17\x74\x04\x82\xb6\xfb\x33\xb8\xb1\x2f\x54\x44\x22\xaf\x61\x59\x86\xeb\xa6\xbc\x98\x08\x52\xf7\x94\x4c\xcb\x63\xf6\x10\x40\xd8\x78\x1c\x44\xa4\xd6\xdc\x82\xd6\x44\x5e\x73\xf0\xa3\x8b\x6f\xf2\x63\xb7\x67\x84\x07\x37\x20\x78\x77\x94\x05\x41\xe2\x5d\x43\x6e\xdc\xae\x0f\xfb\x7a\x8b\xd9\x34\xf6\x81\x36\xf3\x85\xde\x7e\x74\xa1\xf7\xe6\x74\x53\xdd\x05\x41\x4e\x74\xb5\xd7\x16\x0c\x54\x16\x58\xca\xb9\x2d\x75\x5d\x8b\x86\x06\x63\x20\xfe\xee\xab\x5a\x60\x82\x3c\x4e\x4e\x4e\x82\xf1\x67\x26\xff\x9a\x6e\xe4\xd8\x22\x62\x81\xae\xb5\x0c\x49\xd7\x4e\x00\x48\xec\x5f\x04\x72\xe4\x5f\x25\x81\x0a\xf9\x0d\xe5\x9c\xb5\xe5\xfa\xf5\xeb\x7a\x7f\x7f\x1f\xf6\xa4\xe7\x3f\xf9\x93\x3f\xd1\xef\xbf\xff\x3e\xa2\x90\x12\x3e\x30\xee\x90\xc0\x25\x62\xdd\x22\x60\xe4\x04\x14\xdb\xa7\xf9\xf6\xd6\x34\x7f\x2e\x67\xda\x20\x78\x8b\x1f\x89\xb1\x11\x2b\x8b\x26\x77\x58\x22\x90\xef\x03\xf9\xca\x66\x57\x69\xf6\x20\x38\x1a\xfd\xad\x20\x66\x16\xb8\x78\x12\x5c\x9b\x51\xac\x72\x4d\x1b\x9b\xd3\xec\x13\xdb\xd3\x7c\x0b\x66\x19\xb0\xe1\xf3\x72\x5e\x87\x75\x19\x45\x65\xf8\x49\xca\xf0\x16\xb2\x9c\x99\xf3\xb5\xb9\xda\x3a\x37\xe9\x3d\x5d\xd4\xb4\x43\x60\xe5\xfa\x44\xd4\x23\xec\x87\xb6\x92\xef\xad\x27\xe4\xe5\x61\xe4\xbe\x95\xf2\xcd\xcf\x39\xf3\xa5\x04\x93\xed\xc9\xf3\x12\xaf\x9c\x88\x7e\x6c\xc0\xa6\x2a\x2a\xda\xdd\x9c\xe5\x4f\xad\x95\xd9\x16\xf9\x3d\x69\xdc\x52\x71\x29\x07\x6d\x79\xcf\x3d\xf7\x9c\xad\x96\xe4\xcf\x92\x66\xe2\x67\x49\xc5\x37\x76\x15\x2d\xd4\x14\x12\x21\x29\x94\xa4\xc9\x4f\xbc\x73\x7f\xcc\xac\xab\x8c\xcb\x59\xce\x93\x4a\xf1\x54\x72\x1e\x71\xd9\x1e\x74\xd2\xbe\x15\x40\x4e\xf1\x91\x83\xb3\x8a\x6c\xb2\xf6\x04\x3e\xb6\x44\x60\x07\x2e\x85\x66\xc8\x26\xa1\x19\x0e\x24\x0b\x74\x6a\x1e\x88\x9a\xad\xff\xfb\x95\xda\xee\x57\x6e\x65\x91\xfb\x70\x76\xc0\x0a\xed\x1b\x76\x79\x1c\xda\xc2\xd3\xf6\xe7\xe3\x5a\x5b\x52\xe0\x71\x55\x4b\xda\x5f\x45\xf9\x32\xef\x54\xfa\xae\xfc\x52\xc0\x6a\x59\xba\x45\x71\x96\xa5\x97\xe0\x7b\x59\xbe\x31\xd8\x59\x56\x4e\x90\xf7\x8d\x1b\x37\xf4\x8d\x1b\x37\xec\xa4\x34\xf7\xde\xba\x8b\xcc\xb8\xb0\x3b\xa2\x4e\x21\xb5\x52\x45\xf9\x6c\x1d\x6a\xff\xe9\xde\x9f\x67\x73\x0c\x36\x0e\xe6\x9f\xcb\xe7\xd8\x62\x86\xa2\x90\x4b\x8b\xe1\x68\x99\x7e\x6c\x6e\xf7\x07\xb1\xd9\xb8\x6e\x14\xdb\x61\x6c\xe9\xc5\x9a\xeb\x1d\xa5\x58\x4e\xe7\xcd\x1d\xcd\x81\xa5\x2c\x68\xc5\x13\xa1\x2b\xc6\x66\x0c\x06\xb3\xb7\xf0\x78\xda\x32\x75\x90\x2a\xb2\xcd\xc9\x58\x5d\x82\x13\x09\x7c\x94\x46\x2f\x6f\x98\xa6\xa9\xae\x69\xa7\x79\x5f\x15\x34\x1a\x9f\xcb\xde\x7e\xf8\x64\xef\x8d\xc9\xb6\xfa\xc0\x9c\x45\x64\x77\x89\x8d\x57\xcf\x94\xe2\x9b\x49\x4b\x07\x4e\x4e\x4e\xec\x18\x88\x95\x34\x85\xf4\x38\xea\xa2\xb7\xd8\x5a\x17\xe7\x01\x00\xea\xdf\xfe\xdb\x7f\x0b\x99\x9f\xd9\x1a\x5e\xfb\xf6\xb5\xdc\x3f\x4a\x3c\x73\xd7\x56\x38\xd8\xeb\xd8\x05\x25\xcd\xf6\xf2\x1d\x11\x41\x6b\x6d\xdb\x8d\xff\xf8\x1f\xff\x23\x00\x20\xda\x3c\x2c\x6e\x4f\x70\x2f\x77\x86\x15\xf9\x5a\xc1\x95\x13\x28\xcf\x34\x15\xe7\x4e\xf2\xdd\x41\xa5\x2e\x13\xa3\xf0\x1c\x35\x74\x3c\x72\x90\x87\x1d\x2f\xd2\x2a\xd3\x8c\xeb\x66\xfc\x46\x79\x38\x41\x0b\xf1\x54\x8c\x77\x19\xc1\x4c\xec\x46\x24\x33\x3c\x8d\x78\xf7\xa5\xd2\x18\x0c\xe7\xd9\xd5\x8b\xa3\xe2\xe2\x83\xf5\xf9\x3e\xfc\x49\xce\x96\xa6\x43\xda\x33\xee\xa1\xa8\x4f\x9c\x5c\x30\x7d\x52\xf4\x2b\xb5\xb5\x35\xcd\x2f\x66\x5a\x6d\xb5\xea\x0a\x21\xe2\x28\xaa\x9c\xa8\x5f\x80\x41\x48\x46\x15\x53\x1c\x64\x9f\x70\xb0\x61\x9e\x49\x6a\x79\x06\xc2\x2b\x0a\xfb\xce\x5a\x6b\xc1\x40\xa6\x69\x63\x30\x57\xbb\x6b\x73\xb5\x01\x46\xce\xe0\x60\x7f\x1b\xd9\x27\x76\x9e\xcb\x22\xaf\x8c\xf8\x4d\x02\x63\xf1\xae\xe5\x2a\x92\x0c\xbb\xc5\x90\x17\x14\xa4\x81\x46\xd3\x8c\x89\x08\x08\xf6\x00\x70\x4c\xa2\x52\xba\x9a\xf6\xf4\xc9\x3c\xe3\x09\xc3\x4c\x8c\x13\x99\x77\xcd\x6d\x75\xfd\xed\x01\x61\x0c\x53\xda\x89\x38\xdc\x75\xd0\xb2\xca\x40\x61\x14\x29\xd3\x13\xbb\x12\x91\x19\xcd\xca\xa2\x4a\x6d\xad\x95\xd9\x06\x9a\xd9\xe6\x01\xfa\x16\xf7\x26\x6f\xc6\x6f\xfe\xe6\x6f\x2e\xb2\xb4\x2c\xfa\x5d\x66\x71\xe8\xd2\x02\xbb\xd2\xc7\xf9\xc7\xc8\x37\x55\x86\x0d\x31\xc8\xed\x4a\xdf\x55\x9e\x1c\x63\x71\xdd\xe2\xbc\xe3\xf4\x5d\x7d\xb1\xac\x8f\x96\x3d\xef\x12\x4c\xcb\xe2\xc7\xef\x15\xd0\x72\x9d\xda\x3c\x5b\xab\x47\x60\x4c\xfe\xb0\xab\x47\x88\x26\xd3\xad\xec\xee\xfe\x95\xde\x0f\xc7\xe7\xf2\x9b\x75\x0f\x63\xa0\xd1\xa2\x9c\x26\x24\x7f\x9d\x69\x24\x80\xfe\xb0\x26\x78\x39\x74\x2d\x23\x8e\xb5\x3a\x58\xd0\xe0\xd5\x2e\x0f\x34\xd8\x02\xf8\xe6\x95\xd5\x6c\xd9\x9e\xab\x24\x34\x65\x49\xa0\xae\x6a\x80\xa0\xbf\x68\xa1\xa7\x3b\x30\x51\x34\x2b\x00\x64\x9e\x6e\x63\x4b\x93\x7b\x48\x40\xdd\xc3\xf8\xe4\x5c\x76\xf3\xe1\xa5\xde\x1b\x27\x67\xb3\xf7\x38\x6b\xb6\xb5\x87\xd8\xc3\x04\x62\x35\x11\x84\x9b\x48\x7c\x1b\x30\xb3\xdd\xa3\xa4\x0b\xac\xa6\xe8\x2a\x15\x67\x51\xba\xf8\x5a\x03\xc0\x37\xbf\xf9\x4d\x37\x6e\xe4\x3c\x18\x39\x1f\x05\x82\x87\x9a\x6b\xb7\x32\x8a\xc2\x25\xf7\x72\xe3\xb8\x54\x5a\x30\x37\xbb\xdf\x56\x55\x85\x7f\xf4\x8f\xfe\x91\xfe\xce\x77\xbe\xa3\x01\xa0\x2c\x4b\xd9\x2e\xd9\xce\xd8\xf2\xa4\x01\xe0\x77\x7f\xf7\x77\x55\xc4\xf3\xe5\x2e\xe2\x16\xa8\x17\x8a\x51\x6c\x4d\xf3\xdd\x4c\xd3\x06\xe0\xc7\x9e\x3b\xe5\x58\x28\xaa\x6e\x3c\x59\xf7\x27\xc1\x7f\x7b\x26\xe3\x02\xf2\x21\x9e\xfc\x2d\x73\x64\xc9\xeb\x09\xee\xd4\x71\x98\xb9\x1b\x16\x14\xc1\x3c\x96\xee\x52\x9b\x27\x01\x79\x51\xa9\x9d\x9d\x71\x71\x05\x62\x23\x3a\xd3\x3e\x1b\xdf\xf1\x82\x94\x95\x45\xf4\x5d\x4e\x44\x4a\x31\xf2\x7e\x45\x1b\xfd\x4a\xed\x2a\x8d\x41\x70\x5e\x9f\xad\x4b\x67\xe0\xb0\x7e\x16\xf1\x08\xb3\xa4\x5b\xe0\x12\x58\x6b\x28\x8a\x1b\x67\xcb\x2e\x9e\x4b\x63\xe9\x11\x82\x1e\x09\xc8\x98\x86\xc3\xb9\xda\x1d\x96\xd9\x76\xc6\x18\x18\x2b\x92\x94\x7f\xf1\xb8\xe8\x0a\x31\x0f\x95\xb2\x21\x0e\x1a\x89\x17\x5d\x56\x80\x45\xd7\xee\xf7\xc6\x8d\x1b\xd2\xb7\xef\x22\x0a\x74\xef\x88\xa7\x52\xa8\xa6\x79\x3d\x99\x65\x7a\xac\xc9\x1d\x6e\xe6\x43\x80\x62\xc4\xa3\xa8\xc3\x2d\x42\x0f\xba\x26\xee\x27\x37\x98\x49\xdc\x0a\xe4\x23\xe7\x10\xc8\xb2\x63\x94\x64\xda\x65\xb5\x4b\x26\x18\x8b\x0b\x6d\x0f\xe7\x6a\x83\x40\x72\x3b\x68\x39\x90\x83\xf4\xff\xe9\x3f\xfd\xa7\x94\x60\x0c\x18\x28\xda\x4c\xaf\x2b\x4d\x2a\xce\xa2\x3c\xe2\x10\xc7\x4d\xfd\x2e\xb2\xba\x2d\x4b\xdf\x15\x3f\xae\xd7\x2a\x96\x90\x45\xf1\x97\xf5\xd1\xa2\xbe\x8b\xf3\x48\x85\x65\x75\x49\x0a\x3a\x01\xda\x65\x7c\x79\x04\x80\x9f\xe7\x62\x04\x2d\xcc\xca\x90\x93\xb3\xd9\x07\x07\x57\x7a\x3f\x38\x3e\x9f\xbf\x39\xef\xe3\x10\x80\xb6\x3c\xc7\x85\x04\xa6\x76\xff\x5b\xda\xe7\xe2\x40\x14\xef\xe1\x10\x82\x9c\x06\x1f\xc9\x4d\xed\x2c\x28\xf2\xdb\xfc\xc7\x1a\x87\xd3\x08\x0d\xb8\x72\x72\xc1\x3e\x97\x79\xdb\xab\x40\xab\x14\x0c\x93\x28\xa4\x53\x34\xe0\xa9\xee\x61\x7c\xbc\x93\xbf\x79\x70\x39\xff\xf3\x93\xb3\xd9\xcf\xb4\x6a\x96\x00\x93\x3f\x7f\x27\x58\x02\x6d\x5c\x29\xad\xef\x16\x03\x06\x13\x52\xca\x40\x6c\x81\x88\xad\x10\x71\xba\x3b\xae\x76\xac\x00\x00\x20\x00\x49\x44\x41\x54\x38\x6e\xd2\xb2\xf9\x5f\xfe\xcb\x7f\x71\xcf\x7e\xf1\x17\x7f\x51\xd9\x15\x48\xb6\x5e\xf6\x5e\xd4\xc5\x01\x10\x11\x5a\xf4\x2f\x35\x5f\x99\xa7\x4d\xf0\x4f\xfe\xc9\x3f\x89\x69\x5c\xe6\x91\x6a\x7b\x92\x27\x58\xf7\x90\x68\xbb\x82\x99\x9c\x0b\x40\x65\x9a\x8a\x8d\x32\x7b\x22\x63\x04\xdb\x47\x70\x6b\x0c\x04\x99\xda\x58\x0e\x84\x58\x2b\x61\x4b\xbf\x6c\x0f\x0e\x00\x38\x40\xc7\xbf\x07\x95\x59\x0a\x64\x8a\x22\x3b\xf0\x62\xae\x29\xce\xa8\x09\x19\xa3\x18\x56\xea\x09\xb4\x97\xfe\xc6\x8a\x2a\x10\x7e\x1b\x69\x3d\x73\x56\xa8\x9e\xa6\x62\xad\xca\xb6\x8a\x9a\xb6\x14\xa8\xf0\xa0\xca\xd6\x4b\x52\xb3\x69\xbb\xa3\xf0\x00\xfe\x37\xd7\xce\xa5\xec\x81\x18\x01\xe1\x9c\x1f\x97\x37\xb5\xfa\x4b\x5a\xb4\x5a\x41\x28\x21\xb0\x1b\x47\x32\x15\xfd\x2a\xdb\xde\x28\xb3\x1d\x33\xc7\xd3\x5a\xa1\xa4\xfc\x93\x27\x83\x27\x7a\xd5\xf7\x15\xda\x34\xd1\xc5\x8b\x17\x0a\x24\x9b\x70\x91\xe6\xb1\x32\xa3\x8f\xfd\xfd\x00\x74\x99\x71\x79\x5a\xe8\x51\xad\x78\xda\xc4\x71\x71\xdb\x40\xc2\xe2\x15\xe9\xef\x17\xaf\x11\x4c\x28\x02\xbc\x46\x87\xd6\x00\xb7\x9f\xde\xce\x4a\x8f\x4d\x2f\x72\xf0\xc8\x41\x13\x55\xc7\xc6\xcd\x8b\x5a\x6d\xad\x97\xd9\xd9\xa2\x6e\x3e\x5a\x6a\x92\x12\xda\x8c\x6c\xd5\x20\x99\xc4\xe3\xa4\xff\x28\x65\x2d\xaa\x83\xfc\xfd\xff\xc3\x8a\x41\x30\x41\xd9\x87\xd2\xe2\xe2\xe6\xba\x08\xcb\x80\xb3\x16\x8c\xcf\x66\xef\xed\x3f\x53\xfc\x70\x74\xa1\xf7\x46\xb9\xa6\xf6\x99\xa0\x7d\x96\x2d\x4e\x1d\xf8\xa3\xc3\x38\x6d\x46\x15\xbe\x17\x66\x44\x9f\x9d\x5b\x59\x91\x2a\x0d\x82\x79\x3a\x6f\xaa\x10\x28\xcd\x4b\xf6\xf3\x18\x0c\xea\x6a\x7e\xb8\x65\x91\x69\x55\xc9\xe6\xdb\x62\xb0\x3e\x54\x03\x1c\x3d\xba\x90\xbf\xb6\x7f\xa5\xf8\xe1\xc9\xd9\xfc\x3d\x9d\x05\xfb\x96\xc8\xfd\x4a\xe4\x39\x51\xc1\x29\xcc\x96\xa1\x46\x7b\x90\xb4\x2c\x22\x89\x90\x02\x2c\x8f\x4b\x2b\x49\x3a\xfd\xd1\x8f\x7e\x04\xa0\xb5\xa9\xa1\x73\x19\x45\x75\x48\x82\xe7\xd8\xd2\x6d\x5f\xfc\xcf\xff\xf9\x3f\x01\x00\xff\xec\x9f\xfd\x33\x99\x75\xaa\x2d\xf1\x73\xf9\xde\xf1\xa5\xdf\xff\xfd\xdf\x5f\xd4\xd6\x66\x25\x14\x90\x13\x90\xf7\x2b\xb5\x4b\xdc\x28\x78\xde\xb8\xe1\x18\x3f\xc4\x5d\x14\x84\x25\xaf\xc3\x32\xd3\x4e\xe2\x07\x98\x04\x23\x7e\x4e\xa5\x0f\xf1\x61\xba\x1c\xd5\x09\x4d\x5b\x8b\x5e\x4d\x6e\x8e\x0b\x12\xe0\x45\x16\x1f\x4d\x99\x88\xe3\xa9\xbc\xa6\xa2\x98\xd3\x40\x69\x1a\x84\xda\x79\xdc\x66\x57\xa9\xc0\xed\x1a\xcb\x49\x3b\x2f\x94\xa2\xf6\x06\xca\x8e\x68\x7c\xab\xc7\xa4\x46\x1e\xbf\x42\xa8\x04\x99\x7e\x57\x99\xc6\xb0\xa8\x69\x33\xd7\xad\x4d\x58\x03\x5a\x5a\xc1\xea\x22\x43\x2c\x37\x5b\x63\xb3\x6b\x39\x74\x57\x66\x8b\x06\x68\xeb\x1d\x8b\x43\x16\xe5\x6c\x79\x33\x29\xae\xaa\x14\x4f\x4f\x7b\xf5\xb8\x52\x3c\xed\xd7\xd8\xf2\xe6\xe2\xb0\xe3\x6c\xa7\xc9\xd5\x09\x71\x08\x26\xf1\x91\x30\x75\x39\xff\x25\x23\xb6\xb8\x04\x8c\xd3\x32\x69\x67\x16\x13\x8a\x9f\xfc\x6a\x8e\x10\x5c\x46\xaa\x57\xd3\x70\xbd\x41\x9d\x83\x59\x5e\xe7\x62\x76\x79\x57\xe7\xe3\xef\xfd\xbd\xbf\xa7\xfe\xf8\x8f\xff\x58\xf6\x5d\xcc\x2c\x64\x9a\x55\x99\x61\x97\x9b\x64\x21\x63\x89\xca\x8b\x5d\x3e\xa9\xeb\x4e\xad\x31\xca\x33\xae\x43\x6a\x10\xc6\xf9\x2f\xaa\x53\x57\xdb\x96\x69\xc4\x5d\xe5\x3e\xce\x75\xaa\x7e\x71\x08\xd2\x64\x59\x86\xeb\xd7\xaf\x6b\x2b\x10\x23\xa1\x63\x69\xa1\x8c\x27\xb3\x01\x7e\xd7\x49\x22\xc2\x64\x4b\xdd\xd1\xd4\x43\x9d\xa3\xdc\xda\xc3\x67\xfb\x13\x7d\x51\xd5\xc8\x21\xc6\x6b\x4b\x8b\x84\x30\x1f\x3b\x13\xbb\x98\x4d\xe0\x27\xa5\x04\xe9\x02\x9b\x06\x59\xba\x48\xcc\x1b\x03\x5c\xc1\x2e\x3f\xcb\x54\x63\x27\xbd\x0d\xd2\xc4\x62\x5d\x56\x36\x33\x39\x7f\xc7\xc5\x0f\x2f\x64\x53\x99\x08\xf3\x01\xed\x1f\x5d\xc8\xdf\x38\xba\xd4\x7b\x63\xba\xa1\xee\xea\x0c\x47\x0c\xb7\xa5\xbf\x75\x11\xb9\x8d\xdc\xec\x4a\x22\xe3\x7a\xa9\x00\x77\x18\x66\xd7\xa1\x81\x8b\xc6\x58\x2a\xc4\xe3\xad\x6b\x6c\x76\x95\xe3\x82\xd6\x5a\xbe\xc7\xd6\xd6\x96\x1a\x8d\x46\xfa\x8f\xfe\xe8\x8f\x00\x00\xa3\xd1\x48\x03\x0d\xd8\x7a\xe5\x95\x57\x74\xea\x4c\x18\xfb\x5c\x82\x9f\xad\xad\x2d\xb7\x24\xd5\xec\x06\xbc\x88\x56\x53\xed\x75\xf1\x95\x52\xf8\xed\xdf\xfe\x6d\xb5\xb5\xb5\x15\x58\x7d\xec\xfc\x0e\x96\xbb\xc4\x82\xf2\xa2\x52\x83\xa2\xa6\x6d\x00\xb9\x1b\x69\xc2\x62\x17\xbb\x31\x9b\xbc\xc2\xfb\x84\x51\xc5\xf0\xe2\x48\x66\x18\xda\x69\x5c\x9a\x51\x1e\x64\xb7\x03\x10\xb4\x11\xe5\x4b\xd1\x38\x35\xb4\xa0\x7a\x35\x6d\xf5\x6b\xca\x67\x19\x2b\x50\xe0\x06\x72\xe5\x36\xc9\x24\x50\x72\xef\x5d\x7c\x22\xca\x15\x53\x91\x31\xad\x19\x50\x17\xd0\x8e\x24\x1d\xf7\x1b\x3d\x4f\xcd\x75\x88\xe9\xd4\x83\x27\x43\xab\x2d\x1f\xb1\x48\x1e\xf5\x95\xbc\x0e\x56\x06\x12\x49\xb9\xa9\x88\x3d\x68\xb1\x3c\xac\xcb\x6a\xf5\xbb\xbf\xfb\xbb\xea\xc6\x8d\x1b\xf8\xc1\x0f\x7e\x20\x1f\x2f\xe2\xcd\xf2\xd7\xc6\x6d\xed\xe3\xb2\x88\xc1\xaf\xc2\xf8\x01\xc0\x4e\x02\xb3\xfe\xad\x78\x42\x98\x03\x31\x55\xc6\xe5\x69\x4f\x8f\xab\x8c\x27\x98\x07\x19\x04\xe0\xc3\x4d\xd6\x43\xfb\x63\xa6\xb0\x4c\x8a\xc5\x76\x21\x1e\xbf\xdc\x53\xe6\x69\x19\x72\x02\x95\xb6\xb2\x21\x64\x9a\x06\xeb\xb3\x6c\x77\x58\xaa\xc1\xf1\xa0\x96\x48\x1c\xe8\xb0\xb4\xfc\xf1\x1f\xff\xb1\x8e\xde\xaf\x6c\x26\x43\x77\xff\x7f\x14\x8b\x48\x0a\x1c\x2d\x63\xdc\xcb\xca\x4a\x59\xe9\x16\xb5\x71\xd9\xf3\x54\x59\x8b\x2c\x81\xab\xe6\xff\x51\xae\xbb\xea\xd3\x4a\x63\x57\xa7\x58\xc1\x71\xed\xda\x35\x20\x14\x5e\x95\x21\xf0\x12\x21\xb1\x3b\xf0\x02\x40\xb1\x22\x4c\x37\x14\x8e\xa8\xa7\xeb\x9c\xca\x33\x7b\xd5\x73\x83\xb1\xbe\x9c\x55\x18\xb4\xb8\xb2\x08\x81\xc6\xe7\x68\xca\xdc\xc2\x30\x49\x47\x58\xcd\x68\x0f\x20\x4a\x04\x5a\xda\x45\x79\xda\x72\x7b\x1f\xc1\xab\x08\x6c\xfe\xc9\x32\x6d\xb2\x36\x19\x09\xea\x0b\xe6\xa4\xd9\x45\xdc\x3e\xad\x36\xfb\xb4\x3c\xba\x90\xbf\x71\x74\x31\x7f\x6b\x36\x54\x77\x39\xc3\x18\x44\x63\x32\x1b\xb3\xc9\x79\x2d\x66\x22\xae\x5b\x06\x1c\x4d\x7c\x8d\xf7\x2b\x49\x81\xdd\x55\xae\x11\x3d\x4b\x29\x0d\x71\xba\x55\x68\x49\x01\xd0\x16\xa8\xd8\xdf\xf3\xe7\xcf\xab\x83\x83\x03\xfd\xca\x2b\xaf\xe8\x0b\x17\x2e\xa8\x84\x8b\x0b\x40\xdb\x62\x63\xd2\x7f\xd4\x36\xb6\xf8\xd8\xbf\xfc\x97\xff\x52\x47\x13\x73\x1d\xbf\x93\xae\x23\x62\x28\xc5\xc8\x55\x23\xe4\x5c\x90\x13\x48\x9b\x61\xe8\xc7\xa4\x3f\x0c\xd4\x8f\x3d\x37\x42\x9b\x01\xdc\x16\xe6\x4d\xa6\x62\x7e\x54\x98\xce\x42\xe0\x60\x6f\xa0\x44\x90\x94\x20\x36\x51\x54\x99\xa6\x61\xaf\xa6\xa2\xcc\x58\xb1\xa7\x53\x00\xc1\x7e\x2d\x9a\xc5\xde\x3a\x42\x91\x85\x88\xe3\xfa\xc9\xc1\x72\x63\xb1\x6c\xfe\xb3\xf9\xef\x65\x11\x60\x94\x0f\x72\x5b\x50\xfa\xd0\xc2\x30\x21\x50\x89\x9b\x2a\xed\xab\xf2\x55\x10\xaf\xe3\x3a\x94\x89\xa4\x88\x91\x9b\x0d\x58\x53\x73\x7b\x0c\x80\x6c\x30\xc0\xef\xff\xfe\xef\xeb\x6f\x7c\xe3\x1b\x8b\x14\xea\x55\x64\x87\xce\x13\x0f\x63\xc2\x5b\xa6\xf5\x2e\xd4\xbe\xc9\xaf\xac\xd1\x80\x63\x14\x1a\x80\x9e\x67\x5c\x4e\x0a\x3d\x6e\x26\xe8\x46\x48\xb2\x0b\x91\xc8\xe7\x2d\x8d\x2e\x7a\x98\x40\xaf\xad\x64\x32\xaa\xbb\x97\x1a\x68\xbb\x1e\x01\x12\x05\x90\x69\x2a\xd6\xe6\x6a\x67\xbd\xcc\x36\x80\xb9\x1b\x94\x42\xe3\x08\x10\xf8\xb5\x6b\xd7\xd4\xc1\xc1\x81\x05\x2f\xab\x58\x2d\xe2\x67\x1f\x05\xa0\xa4\xf2\x5c\x54\x46\x1c\x16\x7e\xe7\x15\xca\xfc\xa8\xe9\x57\xcd\xff\xff\x2b\xc1\xf6\x43\x85\x06\xe0\x6a\x73\x5d\x0a\xa6\x16\x1c\xbd\x0b\x82\xe6\x8c\x30\xdd\x50\x5a\x67\xbd\xaa\x2a\x68\xb2\xf5\xa0\x1a\xaf\x1f\xe9\xab\xf9\x8c\xb7\xe3\x15\x3a\x3e\x9d\x00\x23\x62\x7e\x88\x5f\x85\x20\x98\xbb\x29\x28\x66\x5c\x5d\xac\xdd\x9a\xa4\x6d\xfa\x80\x66\x84\xf0\xb1\x5a\x5c\x98\x16\x0e\xd8\xc4\x02\x87\x83\x18\x7e\x3a\xa0\x15\x50\x75\x8f\xc6\xa7\x9b\xea\xf6\x68\x37\x7f\x7b\xf4\x44\xfe\xd3\x72\x8d\xee\xb3\xc2\x88\x81\x31\xb5\x5d\x44\xc1\xdc\x16\x44\x2e\x22\x5b\x6c\x02\xb4\x00\xab\x8d\xa9\x45\xb4\xd4\x65\xa9\x58\x64\x4d\x5c\x15\x14\xe1\xe0\xe0\xc0\x3d\xbc\x7f\xff\xfe\x2a\x3c\x24\xd5\xb6\x45\xe0\x3c\x15\x82\x38\xda\x98\x85\x16\x05\x2b\xb0\x18\x50\x9a\xa0\x74\x94\x87\x9f\x40\xee\xed\xe1\x1e\x53\x08\xb8\xe1\x18\xb1\x7c\x6f\x53\x34\xc1\x8e\x1d\x6a\x8d\xeb\xd0\x12\x11\x2a\xa8\x08\x5c\x30\x61\xbd\x4c\x89\xce\x40\x69\x76\x65\x26\x58\xd0\x02\xf6\x1b\xd0\x01\x1d\x16\x34\x0e\xf7\x78\x71\xef\x2a\xc5\xba\xcc\x75\xa5\x15\x57\x1e\x60\x99\x36\x04\x0a\xb7\x6f\x89\x80\x53\xae\x2f\xe2\xa7\xa9\x20\x73\x6c\x6f\x1f\x99\x96\x8f\x96\xa5\xc4\x16\xd7\x48\xfc\x36\xe0\xcd\xb7\x4d\x45\xa0\x6d\x91\x3c\xb1\x61\x19\x2d\xb4\xd2\xa7\x88\x4d\x47\xd7\xab\x0c\x72\xf7\xb1\xe4\xe6\x5b\x71\x3e\x72\xbf\x00\xa0\xd9\x3d\xf7\xa4\xa8\x8f\x67\x99\x1e\xdb\x95\x45\x8c\xd8\x33\xc3\xe1\xce\x9b\x8e\x41\x23\xb2\x92\x58\x84\x2e\xb5\x33\xa3\xff\x89\xaf\x69\x80\x7a\x70\xef\xca\x23\x91\x0c\xe1\xc0\x0e\xe6\xb8\x44\xdc\x5c\x01\xc5\xa0\x52\x3b\x9b\xd3\xfc\x9c\xd2\xcd\xd6\xd6\xf0\xcb\xa2\x03\xc4\x6d\x83\xb0\xb8\xac\x12\x52\xa6\xe9\x2e\x73\xb5\x7d\xd7\x65\x66\x93\xcf\xba\x98\x6b\x57\x48\x31\xd2\xd4\x7d\xaa\xcc\xb8\xbc\xd8\x12\xd5\xd5\x9e\x45\xf1\x16\xd5\xf7\xe7\xcd\x7b\xd5\xfc\x96\xa6\x21\x22\xf5\xd9\xcf\x7e\xd6\x2d\x05\x4c\xcc\xf7\x72\x73\x5e\xcc\xea\x22\xbb\x49\x9a\x9d\xa8\x3b\x61\xf0\x88\x33\x1a\x95\x43\xba\x7b\xfc\x44\x7e\xf3\xf0\xa9\xde\x6b\x8f\x2e\xe4\x6f\xce\xd6\xb3\x7b\x3a\x33\x93\xdb\xdd\x2a\x9f\x26\x34\x3e\x6f\xbb\xc4\x92\x05\xd9\x84\x06\xe5\x18\x9c\x04\x73\x00\xfc\xbf\x28\x0d\x39\x55\x94\x64\xb9\xb2\x7c\x93\x99\x15\x37\x16\x3c\xd9\x65\xdd\xe1\xb1\x02\x70\xf4\xec\x5c\xbb\x96\x0e\x89\xa0\x15\xaa\x72\x8d\xf6\x8f\x77\xb2\xb7\x0f\x9e\xee\xbd\x76\x74\x21\x7f\x6b\xb6\xae\xee\xb2\xc2\x08\xe2\x10\x42\xeb\x22\x62\xb1\xa5\xbd\xe9\x57\xbb\x9d\xbe\x3b\xc9\xd6\x7e\x87\x17\x5e\x78\x61\x11\x3d\xc8\xe7\x2a\xba\x4e\xc5\x91\xcf\xba\xde\xcb\x77\x5d\x79\xc7\x8c\x7d\x51\xfd\xec\x75\x3c\x9e\x53\x75\x8d\xaf\xe3\x3a\xa7\xda\x95\x7a\x0e\xa5\x94\xb2\xd6\x16\xb9\x57\x47\x34\x49\xb5\x29\x83\xa0\xb4\x62\xad\x15\x57\x68\xd1\x6c\xc2\xba\xcd\xcd\xb8\x72\x80\x5a\xc0\x9a\x66\x3c\xc3\x95\x25\x8c\xe6\x49\x01\x1b\x96\x64\x78\xb9\xdb\x0d\x5d\x58\x25\xc4\x9f\xc9\x3c\x48\xcb\x46\x66\x55\xaa\x69\x5f\xbc\x6a\x46\xf4\x83\x94\x73\x4a\x8c\x37\x5b\x67\xc5\xcc\xaa\xca\x18\xd3\x9c\x67\x95\xe2\xa9\x5b\x59\xcb\x61\x1b\x7c\xef\xd8\x4e\xf1\x4f\x5b\xf0\x9e\x3d\xcd\x41\x3c\x8b\xfb\x22\x9c\x32\x61\xa1\x8f\x90\x6f\xe6\xa9\xcd\xa6\x3d\x25\xbe\x09\x9a\xb8\x3a\xed\xd5\xa3\x71\xbf\x1e\x95\x99\xdf\x07\xc9\xf4\x43\x30\xaf\xc5\x2a\xef\x0b\xe6\x91\x2d\xa2\xad\x38\xfe\x52\x57\xd1\xe3\x3c\x6b\x09\x10\xe1\x1e\xb2\x0d\x72\x8c\x9a\x99\x75\xad\x50\x4d\x73\x3d\x99\xe5\x7a\xa4\x89\x2b\xc5\x54\xb4\x8d\x2c\xf1\x47\x6c\xfe\x3b\xad\xcd\x68\x75\x5d\x46\x18\x89\x6e\xdc\x3b\x01\x62\xbb\x34\x4a\x59\xb6\x65\xdb\xbe\x4c\x23\x0e\xec\x3e\x2f\x0c\x55\x54\x6a\xeb\xcc\x34\x7f\xa2\xa8\xa9\x98\xe6\xad\x25\x61\x5d\xcc\x00\xe2\xf9\xa2\xfe\x8c\xc1\xe3\x32\xcd\x70\x99\xb9\xad\x0b\x84\xc6\x71\x63\x46\xb9\xec\x9b\x77\xd5\x69\x99\xb6\x97\xba\x5f\xa5\xcc\x55\x41\x56\x97\x66\x9c\x6a\xef\x2a\xf9\xa5\x9e\x77\x7e\x43\x66\xd6\x6f\xbd\xf5\x16\x80\x06\xd8\xdb\xad\xd1\x4d\xb0\x96\x97\x2a\x5e\x3a\x98\x5a\x99\xc7\x8a\xf4\xbc\x0f\xad\xcf\xe5\xb3\xba\x50\x93\xf9\x80\x46\x1b\x07\xf5\xb3\x6b\xa3\xfa\x72\x56\x61\x08\x36\xc7\x04\x40\x58\x34\x5a\xdc\xab\xbd\x30\x99\x3c\x97\x72\x23\xbd\x51\x14\xec\xde\x2d\xb1\xa5\x52\xe8\x65\x02\xe8\x93\xd0\x00\x82\x52\x8c\x3a\xc9\xb6\x5d\x29\x67\xba\x01\x5a\x41\x50\xd0\x55\x8f\x26\xb3\x75\xb5\x77\x72\x36\xbb\x35\x3e\x9f\xfd\x74\xb2\x95\xdd\xa9\x7b\x74\xc4\xe0\x89\x59\x39\xe4\x00\x0b\xcc\x39\x3c\x66\x4e\x4b\x60\x6d\x21\xbf\xe5\xbd\xeb\xcf\xf7\xdf\x7f\x1f\xaf\xbe\xfa\xea\xaa\xf4\x90\x7a\x2e\xdf\xc7\x5a\x63\x57\x1e\x29\x86\x9d\x2a\xff\x71\xea\xb1\x2a\xfd\xc8\xf8\x2b\xf1\xf1\xae\xe7\x5a\x6b\xfd\xca\x2b\xaf\x00\xf0\x07\xe9\x59\x01\x25\xac\x87\x2e\xd4\xc4\xa8\x89\x83\x7c\x52\x5a\xbf\xe5\xd1\xd2\x9d\xe1\xdf\x5b\x4d\xde\x3e\xa4\x60\xfe\x05\x37\x26\x82\x4e\xa3\x7d\x93\x83\x7f\x19\x4e\x0b\x90\x54\x01\xc4\x99\x30\x80\x79\xc6\xd3\x4a\xb9\x73\xad\xe2\xf6\x7a\x6b\x8f\x99\xd7\x62\x85\xb8\x78\xee\xe2\x57\xc4\x7a\x96\xe9\x72\x9e\xf1\x94\x09\x15\x98\x8b\xc6\x43\xe0\xa9\xa0\x59\xfa\x6d\xfb\xc1\xd0\x48\x24\xef\x9c\x84\xb2\x4a\xbb\xf0\x32\x90\x8c\x28\xe9\x54\x08\x41\xd7\xea\xb8\xc3\xa2\xf8\x91\x8e\x81\x4a\xf1\x64\x34\xa8\xee\x1d\x0e\xe7\xf7\x67\xb9\x76\x2b\x83\xa5\x87\x21\xee\x97\xc4\x3c\x32\x79\xdd\x65\x71\x69\x8d\xfb\x60\xf9\x2e\x16\x13\x8d\x0d\x9d\x8c\xff\xc2\x85\x0b\xea\xfe\xfd\xfb\x5a\x54\xd6\xfa\xfa\x24\xb3\xd0\x40\xb3\x19\x17\x03\xd5\x3c\xd3\xd3\xd3\x5e\xb3\xb2\x28\xaf\x11\xf8\x3f\x53\xfe\x7b\x6b\x31\xf1\x03\x37\x11\x2f\xfa\x00\xe1\xc0\x17\xd1\x05\x65\x84\x83\x21\x32\x8d\xc5\x79\xb9\x8f\x62\x2f\x49\xe5\x9a\x86\x9b\xb3\xec\x62\xbf\x52\x83\x69\x5e\x3b\xe0\x92\x30\x23\xa6\x42\x8a\xa1\x2d\x0a\xab\x30\xa3\x55\x18\xe2\xb2\xfc\x57\xb1\x68\x7c\x24\x50\xfb\x57\x10\x96\x59\x87\xba\xc2\x2a\x63\xfc\xaf\x35\x0f\x03\x5e\xec\xad\x42\x03\xe4\x2d\x78\x89\xb5\x0c\x2b\x6c\xad\x16\x57\x31\xa0\xeb\x9c\xaa\xc9\x96\x2a\xe7\xfd\xde\x78\x36\x54\x87\x9b\xfb\x74\xb4\x7e\xa4\xaf\xf4\x4e\xf5\x39\xd5\xd0\x91\x72\x2a\x98\x01\x1f\x0e\xa0\xc4\x26\x43\x81\xe6\x99\xe5\xc8\x8f\x28\x87\xe0\x98\x2a\xdb\x73\x8e\x2c\xde\x11\xb6\x6e\x47\x4b\x46\xa8\xc4\x0a\x83\x9b\x88\xe9\xca\xa0\x90\xe6\x4c\x9d\x75\x86\x69\x39\x50\x47\xa7\x67\xb2\xdb\xe3\xb3\xd9\xbb\x93\x6d\x75\x7b\x36\x54\x0f\x38\x33\xcb\x9c\xd9\xb9\x86\xa6\x06\xc0\xc8\x6d\xee\xed\xdc\x96\x94\x7b\x48\xdb\xef\x10\xf5\x75\xd7\x98\xfa\x28\x80\x76\x59\xbc\x14\x80\xff\xa8\xb4\xb3\x88\xee\x1f\xa7\x4e\xa9\x7a\x2c\x05\x4b\x52\x8b\x4e\x4d\xca\x6c\x04\x35\xa0\xa9\x11\xfc\x0c\x68\x78\x71\x09\x20\x0d\x32\x22\x16\xdd\x0e\x76\x28\x93\x17\xe0\x04\xbb\xc7\x8b\x14\xc4\x61\xee\xde\xa2\x2f\xc6\x9c\x1b\x93\x3e\x2e\xc1\xcf\x27\x01\x00\x26\x54\x65\xae\x27\x9a\xd0\xaa\x6c\x6c\x79\x31\xb4\xda\xb9\x9a\xc6\x80\x0c\x3d\xcf\x74\x59\x66\x7a\xa2\x89\xab\x4c\xab\xc2\x5a\x38\x24\xcd\x04\x4a\x85\x28\xd7\xd7\x56\xc8\xaa\x2e\xb8\x16\xa4\x6b\xa9\xf6\xee\xc2\xcd\x39\x12\xd9\x04\x16\x1a\xdb\xb5\x0c\x94\x99\x1e\x3d\x5a\xab\xf6\x1e\xad\x55\x23\xad\xd2\xe3\xb6\x6b\x92\x2e\x96\x8f\x51\x39\x96\x75\xfc\x4c\x0a\x9f\x9f\x67\xb0\x6b\xc0\xfb\x5a\xe5\xea\x09\x39\xc7\x85\xdb\xe7\x61\xe8\x4a\x71\x79\x5a\xd4\xe3\x4a\x61\x1a\xd8\x9b\xc5\xfc\x14\x19\x1c\x03\x84\x60\xa2\x02\x11\xcb\xf7\xf2\x59\xd0\x7d\x62\xbb\x7f\x00\x02\xd1\xfa\x81\xd0\x98\xca\xda\x2b\xda\x6d\x5e\x0e\xc0\x98\x44\x99\xa6\x62\xbd\xcc\x2e\xae\xcd\xb3\x21\xfc\xde\x05\xad\xe5\xd1\x76\x20\x0b\xad\x3b\x36\xef\xa6\x42\xca\xac\xdb\x65\xaa\x8e\x19\xa1\xfc\x5d\xf6\x3c\x2e\x2f\x95\x97\x0c\x1a\xed\xba\xc5\x56\x9a\xae\xbc\x53\xcf\x97\x05\x59\x56\x5c\xce\x32\x13\x78\x57\x39\x5d\xdf\xa1\xeb\x3a\x55\x97\x38\xbd\x4a\xbc\x77\xe1\x77\x7e\xe7\x77\x5a\x74\x47\xcd\x96\xee\x1a\x62\xd9\xae\x70\x1b\xb9\xbd\x5d\xcc\xdf\x08\x84\x11\x67\x74\x54\xae\xd1\xfd\x47\xbb\xf9\x8d\x07\xcf\x14\x3f\x3c\x78\xaa\xf7\xda\xf8\x5c\xf6\x6e\xb9\x46\x87\x3a\x43\x09\x45\xda\x8d\x5f\x01\x26\xec\x32\xca\xb6\x19\x99\x22\xfa\x21\xc0\x6d\xce\xc5\xc2\x8c\x2d\x6c\x35\xb1\x54\x71\x69\xfd\xc6\x61\x31\xb3\xf5\x98\xc5\xa3\x9c\x26\xae\xb1\xec\x64\x28\xcb\x01\x1d\x8e\xcf\x66\xb7\x1e\x5e\xca\x5f\x3f\xb8\xdc\xfb\xf3\x47\x17\xf2\xb7\xa7\x1b\xd9\x1d\xad\x70\xc4\xcc\x23\x00\x23\x22\x1a\x19\x77\xda\x88\xfd\x29\xc8\x53\x6a\x76\xc9\xb5\x5b\xe3\x5b\x45\x49\x9e\xc2\x8c\xbb\x77\xef\x62\x77\x77\xb7\x8b\x86\x16\x8d\x2b\x79\xdd\x35\xd6\xbb\xc6\xdf\xaa\xe3\x75\xd1\xd8\xb2\xf7\x71\x5d\x63\xf0\x92\xaa\x43\x5c\xef\xae\x31\x1a\xe7\x1d\xc7\x6d\x84\x87\x52\x0a\x68\xb4\x68\xeb\x0a\xb1\x7f\xb1\xfb\x08\x00\x34\xb1\x3e\x29\xea\x43\x4d\x1c\xec\xdb\x95\x02\x27\x96\x17\xa3\x35\x46\x45\x3c\x82\xd8\x9f\x45\x0a\x58\x0a\x13\xb1\x90\x2c\x9c\x1c\xac\x62\x05\x30\x09\xbe\xef\xed\x12\x0c\xe8\x5a\x71\x39\xe9\xe9\x11\x8c\xd5\x4e\xb6\x13\xf0\x42\x5a\xba\xcc\xc8\x1c\x56\x29\x5c\x48\xb6\x7f\x35\x83\xcd\x3c\xcf\xfa\xa8\x56\x3c\x6d\x64\x8e\x68\x27\x7b\x39\x13\xcc\x29\x63\x6b\x1d\x8a\xfa\x85\x7d\x2c\x21\x49\xd3\xa0\x2f\xf1\x4e\xca\x3e\x0f\x06\xe3\x34\x86\x1b\x10\xeb\x69\x4f\x8f\x46\xfd\x7a\x7f\x9a\xeb\x52\xca\x76\xe9\x65\x11\x6e\x71\x00\x9d\x5b\x0e\xd8\xb0\x8c\xfe\x6c\x9c\xc7\x12\x22\xab\x08\xd8\x54\x70\x68\x49\x7c\x64\x07\x62\x6a\x85\x72\xd2\xd3\xe3\x4a\xf1\xd4\xe2\x45\x69\xd5\x90\xd0\x85\xe5\xd7\x40\x84\x04\xed\x8b\xa8\xb7\x1b\x06\xcd\x32\x86\x67\xbb\x2e\x1f\x39\xf8\x65\x62\x3f\x3f\xc0\x7d\x30\xb6\xdb\x8e\x37\x19\x58\xf4\x4e\x40\x3e\x98\xab\xdd\xad\xd3\x6c\x0b\x40\x4e\x08\xb6\x3e\x4e\x6a\x24\xff\xe0\x1f\xfc\x83\x14\xa2\xec\x62\x86\xa9\x78\xa9\x38\xa9\xfb\xd4\xf3\x58\xab\xea\x2a\x2b\xf5\x3e\xce\x3b\x8e\x1f\xe7\x2b\x7f\x1f\x07\x24\xa7\xca\x94\x7d\x94\xd2\x0a\xbb\xe2\xc4\xf1\x02\x42\x58\x52\x2f\xf9\x4d\x62\x50\x97\xea\xe3\x85\x6d\xfc\x83\x3f\xf8\x03\x3d\x9d\x4e\x5d\x5c\x41\xdc\xc1\xc6\x74\xe4\x8f\x04\xb0\x7b\xbc\x8c\xe1\x37\x56\x33\x00\x86\x46\xac\xe8\x68\xba\x99\xdd\x39\x78\xba\xf7\xfa\x83\xab\xc5\xf7\x1e\x5e\xea\xbd\x7e\x72\x36\xbb\x55\xae\xd1\xa1\xce\x69\xca\x04\xed\xd8\x1e\x8b\xad\xd1\x6d\x0d\x02\x5e\x1e\x71\x4e\x0a\x27\x3b\xba\x04\xd2\x84\x62\x37\xa2\x33\x92\x46\x32\x58\x9b\x8e\x3d\xb1\x39\xa6\x0b\x22\x37\x2d\x87\x41\xa8\x33\x2a\xe7\x03\x75\x78\xb2\x9d\xbd\xff\xe8\xc9\xfc\xf5\x83\x2b\xc5\x0f\x0e\x9f\xea\xbd\x7e\xb2\xad\xde\xab\x0b\x3a\x00\x35\x60\x85\x88\x46\xf0\xab\x87\x46\xf0\xab\x87\x62\xf7\x90\xfd\x0e\x6e\xe9\x33\x11\x61\x7f\x7f\x1f\x7f\xf6\x67\x7f\x86\xbd\xbd\xbd\x2e\xcb\x64\x7c\x2f\xc7\x6d\xea\x3a\x15\x16\x59\x73\x52\xb4\xdc\x35\x0e\xe3\x71\xda\x55\xa7\xf8\x39\xa2\xdf\xae\x7a\xa7\xe8\x37\x7e\x1e\xd7\x0f\x00\x94\x9c\x9c\x2b\x57\xd0\x88\x6b\x39\xdf\x51\xd7\x0a\xd5\xc3\xe1\x7c\xcf\x2c\xc6\x68\xd2\x8a\x71\xe8\x34\x7a\x78\x5e\x9c\x54\xd8\xc5\x10\x0d\x34\xfa\x96\xa4\xf5\xe3\xcc\xaf\x1e\x4d\xcf\xd8\x90\x72\xc2\x4d\x64\x77\xf9\x31\x98\x50\x4d\x7a\x7a\x7f\x6f\xa3\xbc\x0b\x31\x96\x16\xb8\x45\xdc\xa9\xdf\xd6\x5a\x6a\xe2\xbb\xfd\x75\x88\x48\xcf\x72\x3d\x39\x5a\xab\xf6\xcb\x8c\x47\x0d\xad\x89\xbe\x10\x7d\x12\xba\x8d\x85\x72\x2d\x5a\x2a\x27\xe0\x07\x7d\xd4\xd5\x77\x91\xed\x85\x3a\x7e\x83\x7e\x32\x65\xd4\x0a\xe5\x49\xa1\x0f\x47\x83\xea\xe1\x2c\xd7\x25\x10\x9c\xc5\x26\x41\x4c\x90\xbe\xc3\x55\x64\xef\xbb\xe8\x0c\xe2\x57\x01\x7e\x55\x03\xa2\x0c\xba\x08\x27\x16\x40\xc9\x34\xd2\x8f\x2f\x27\xc3\x91\x38\x29\xd7\x9a\xbd\x2b\xa5\xcb\x93\xa2\x1e\xcd\x33\x1e\x4b\x23\x97\x1b\x67\x08\x3f\x98\x79\xe8\x23\x19\x06\xea\x00\x89\xf9\xd2\xce\x94\x0d\xf9\x3e\xfc\x18\xde\xd5\x1e\x9f\xbd\x12\x15\x21\x3a\x3f\x1e\x28\xf6\x81\x62\xe4\x83\x4a\xed\x9c\x99\xe6\x3b\xb9\xa6\xa2\x52\x9c\xda\x9c\x28\xd0\x90\xfe\xf9\x3f\xff\xe7\x29\xa6\x27\x35\xa2\x14\xe3\x89\x43\xd7\xbb\x65\x82\x3b\x05\x34\x52\xa1\x0b\x20\x2c\x62\xda\x5d\x83\x6e\x51\xe8\xea\x8b\xf8\x5d\x0a\xfc\x2c\xea\xc7\xae\x32\x1e\xa7\x7f\xd0\xf1\xbc\x4b\x50\x2c\xaa\x17\x80\x06\xbc\x00\xee\x8c\x17\xcb\xe0\x14\x99\xf3\x8c\xcc\xbd\xb4\x5e\xc6\x7f\x6e\x7b\x77\x34\x3b\x4f\x97\xba\x47\xe5\xf8\x7c\x76\x7a\xba\x95\xed\xaf\x8d\xea\x5b\xeb\x0f\xeb\x2b\xeb\x47\xf5\xe5\xfe\x44\xef\x66\x73\xde\x50\x35\x0a\xd2\xa4\x62\x13\x79\xb8\x6a\x40\x9c\xf7\xe2\xe6\x0f\xc4\xe6\x67\x6f\xb5\xf1\x8f\x5c\x22\xc1\xc0\x21\xcc\xf9\x86\x56\xc8\xee\x80\x6a\x8a\x27\x68\x56\xa8\x6a\x3b\x8f\x65\x3b\x7b\x7f\x7c\x2e\x7b\x7f\xba\xa9\xf6\xab\x1e\x3d\x02\xd1\x94\xc1\x13\x32\xe0\x84\xfd\xb9\x43\xf2\xc4\x67\x79\xf2\xb1\x3b\x4c\xd0\xb9\xd6\xda\x4b\x9e\xbb\xc2\x22\x30\xbc\x6a\x58\x65\xdc\xa4\xca\x49\xf1\xd6\x14\x1f\x5e\x44\x77\x71\xb9\x29\x5e\x92\x0a\xcb\x00\x7e\x17\x10\x02\xe0\xb5\xe8\x48\x80\x07\x42\x1b\x00\x34\xb1\x3e\x58\xaf\x0e\xca\x5c\x1f\x0d\x2a\x75\x8e\x19\xaa\x05\x4c\x48\xb0\x75\xc4\x4e\x1e\x63\x65\xf7\xab\x27\x42\xeb\xba\xb0\x9c\x3b\x0b\x4c\x8b\xf1\x5b\x4e\xcf\xcd\xa4\x72\x6a\xe7\x93\xca\xbb\xcc\xf4\xe4\xc1\x46\xf9\xd3\xf7\xcf\x4d\x3f\x84\xa0\x43\x31\xfd\x21\x98\xcf\x69\x95\x91\x58\x70\x47\xf4\x8c\x49\xa1\x27\x0f\x36\xe6\xf7\x27\x45\xbd\xbf\x5e\x66\x97\x55\x73\x18\xa5\x89\xbb\xbc\x4f\x5a\x22\xd1\xd0\x5b\x0c\x80\x5c\xba\x08\xe7\x35\xcd\x6f\xef\xd3\x94\xec\x06\x71\x53\x29\x3d\x3e\xee\x57\xfb\xe3\x7e\x7d\x54\x93\xdf\x1f\x09\xd1\x38\x8b\x57\xd4\x2e\x09\x2b\xcb\x89\x45\x9a\xb4\xbc\x5f\x46\xc0\xad\xe7\xb1\x99\x50\xce\x6f\x61\x71\x42\x69\xa5\x78\x7a\xdc\xaf\x1e\xcd\x72\x3d\x66\x37\x71\x8b\xdc\xca\x83\x2e\x33\x97\x89\xd6\xf9\x42\x60\x0a\xb8\x99\xe8\xa9\x98\xc1\xa0\x08\x4d\x7d\x52\x1b\x10\xed\xf0\xcc\xd7\x24\xb4\xb3\xe8\xf3\x9a\x36\xce\x4d\x7a\x4f\xf5\x6a\x8a\x77\x56\x0c\xad\x3e\x6d\x77\x91\x0c\x49\x84\x89\x74\xdf\x2f\x7b\xd7\x05\x66\x16\x59\xd9\x52\xd6\x97\x38\x7d\xaa\xcc\x65\x56\xba\x2e\xe6\xb9\xc8\x74\x98\x8a\x1b\xf7\x4b\x57\x79\x8b\xe2\x74\xd5\x27\x60\xc8\x51\xdc\xb8\x2d\x32\x8f\x45\xe5\x76\xa5\x6b\x0a\x34\x4a\xab\x04\xf8\x26\x4f\x7b\xde\x8c\x3d\xed\xd7\x09\x6e\x18\xcb\x0b\x33\x1f\xa1\x71\x93\x1c\x01\x18\xa1\xb1\xc0\x1c\xd5\x05\x3d\x18\x9f\xcf\x7f\xf6\xe0\x63\xc5\x9f\xdf\xfb\x64\xff\xff\xd9\xbf\x52\xfc\xe0\xf8\x7c\xfe\xf6\x74\x43\xdd\xab\x0a\x1a\xb3\xa2\xca\x6a\x6b\x76\x67\xdc\xc0\xe8\x22\xcd\xc4\xf6\xbd\x35\xaa\x58\xfb\xbd\xe1\x8e\x0c\xc3\x25\xc5\xca\x22\x3b\xa7\xc1\x26\x72\x16\x4b\x6a\x20\x13\x13\x81\x15\xaa\xaa\xa0\xf1\x6c\x5d\xed\x8d\xcf\x67\x37\x0f\x2e\xf7\x7e\xf0\xe1\xa7\xfa\xdf\xbd\xff\xf1\xe2\x87\xe3\xf3\xd9\x3b\x55\x5f\xdd\x67\xc2\x11\x08\x47\xc6\x25\x34\x62\x66\xeb\x1e\x72\x96\x27\xeb\x4e\x8b\xdc\x43\xf2\x2f\x00\x2d\xbd\x5e\x2f\x65\x7a\x8e\xc7\xf4\xa2\xb1\x1a\xc7\x4f\x7d\xdb\xd4\x7b\xf9\x6e\x11\x1d\x21\xf1\x5c\x82\xf5\x24\x78\x58\xd2\x86\x38\x6e\xaa\x2c\xd5\x71\x9f\x4a\x1b\xf4\x4f\xd7\x1e\x32\x80\x10\xdc\x04\xad\x09\x7a\x34\xa8\x46\x27\x45\xbd\xa7\x81\x4a\xd8\xde\x5c\x68\x61\x08\x69\x44\xf7\x03\xb6\xb9\xb5\x43\x4e\x58\x69\xe4\xaf\x71\x69\x44\x79\x5b\x4e\xef\x8f\x6e\xb1\xca\x2e\x09\xfe\x2f\xa7\x1f\x68\x42\x75\xda\xd3\x47\x1f\x9e\x99\xdd\x9c\xf4\xf4\x14\x8d\x0c\x93\xe7\x5c\x39\xa0\x22\x00\x8b\xeb\x13\x69\x75\x8a\xfe\xaa\xb9\xd2\xe5\xa3\x41\x75\x74\xb4\x56\xdd\xab\x15\x4f\x53\xf8\x69\x11\x68\x09\x5d\x4b\xed\xf3\xf7\xe4\x6f\x1c\x3c\x66\x4b\x2b\xe6\x00\xbc\xa5\x4a\x98\x68\x19\x8c\x69\x4f\x8f\x46\x6b\xd5\xfe\x69\x4f\x8f\x85\x9b\x3b\x58\x39\x2c\x15\xaf\xc8\x65\xd4\x65\xe5\xec\xa2\x9d\x16\xdf\x5c\xb6\x73\x6e\x17\x31\x74\x0d\xf4\xd4\xc7\x92\xe9\x01\x81\x52\x89\xa8\xaa\x15\xaa\x49\x51\x8f\x27\x45\xbd\x5f\x13\x4a\xd5\x9c\x63\x11\x9e\x4b\x12\x7c\x39\x73\xd3\x61\x21\x94\x0a\xa2\x37\xb8\x84\x56\x94\x20\xb0\x61\xdb\x81\x23\x3e\x01\x57\x83\x90\xb2\xe7\x01\x19\xd3\xe0\xdc\x69\xef\xd9\xb5\x79\x36\x9c\xf6\xf4\x88\x85\xc0\xa3\xf0\xd4\x4c\x0d\x24\x27\x07\x3e\x6e\x58\x94\x7e\x65\x90\x19\x3d\x5f\xc6\xb0\x57\xc9\x37\x95\xd7\xe3\xa4\x5b\xe5\x3e\x95\xdf\xe3\x94\xf7\x51\xdb\x91\x7a\xbe\x6a\x3d\x5b\xf1\xff\xf1\x3f\xfe\xc7\x1a\x70\x27\x02\xbb\x49\x7d\xf0\x56\x95\x60\xd7\x69\x0a\x0f\xd2\x2b\x20\x00\x8e\xf9\x1b\x00\x18\x80\x30\xd0\x39\x4d\x27\xdb\xd9\xc9\xe4\x4c\xb6\x97\x95\x7c\x73\x30\xd6\xe7\xd6\x8f\xaa\x8b\xc3\x47\xf5\xc5\xfe\x84\x77\xb3\x92\x37\xb2\x1a\x05\xd5\x5c\x10\x43\x49\x4b\x65\x48\x7b\xf1\x46\x5f\x14\x3c\x77\xd1\xc4\x29\x71\x66\xd2\xba\xc9\x84\x1a\xc1\xa5\x50\xe9\x9c\xa6\x55\x8f\x26\xe5\x1a\x1d\x9e\x6e\x65\x1f\x9e\x9c\xcd\x3e\x3c\xdd\xcc\xf6\xab\x3e\x8d\x41\x38\x85\x38\x78\x92\xa2\x9d\x6f\xe1\xdd\x66\xf6\xda\x9e\xb0\x5d\x72\xb3\x1b\x77\x33\xe9\x3f\x5c\x8e\x1a\xd0\x59\xc7\x6e\xb1\x8b\xbe\x9f\xe4\x81\x8b\xd2\x2e\x03\xf8\x8f\x53\xa6\x8c\xf3\xb8\x34\x17\xf3\xe8\x8f\xca\x63\x16\xd5\x3b\xc8\x5b\xce\x5b\x88\x2d\xec\x80\xdb\x29\x5d\x03\xa8\x26\x85\x9e\x1e\x0e\xab\xf7\xcf\x4f\x7a\x9f\xcb\xe7\x6a\x20\x0d\x1e\x29\xc3\x07\xc9\x81\x48\xd6\x3e\x10\x09\x5b\x4a\xb3\x6a\xbb\x59\x9b\xa9\x57\xdb\xfa\x21\x6f\xc4\xea\x9d\x38\x5e\xad\x78\x3a\x5a\xab\x3e\xfc\xf0\x4c\x79\xc7\x58\x37\x35\xc1\xd3\x24\xe0\xa7\x41\x84\x2e\x9d\x70\xe3\x55\x08\xc1\x6e\xfa\xa4\x22\xa2\x6a\x9a\xeb\xf1\xfd\xcd\xf2\xfd\x27\x47\xfd\xc3\xa2\x52\x1b\x12\x20\xc8\xd5\x3c\x0c\x4f\x5f\xc2\xd9\xd0\xea\xac\x06\xcc\xa5\xdb\xdb\xb6\x9d\x8a\x2e\x70\xe5\x45\x13\xe5\x4d\xde\xd6\x9a\x53\x29\x9e\x3e\x1c\x56\xb7\x1f\xac\xcf\x3f\x3c\x29\xea\x09\xfe\x5f\xf6\xde\xfc\xd7\x8f\xe3\xb8\x17\xfd\x54\xcf\xf2\xfd\x9e\x8d\x3c\xa4\x48\x8a\xa2\x56\x5b\x8e\x65\xd9\x96\x17\x1e\xda\xb2\xe3\x97\xf8\x06\x49\x6e\xf0\xb2\xd8\x46\x82\x08\x08\x90\xc4\x40\x60\xf9\x8f\x12\x13\xc0\x36\xfc\x80\xc4\x59\x9e\xe3\x3c\xc4\x41\x5e\x80\xc4\xc9\xf5\x7e\xa9\xd5\x72\x6c\x99\xd2\xa5\x24\x8a\x22\x29\x2e\x87\x67\xf9\xae\x33\xdd\xef\x87\x99\xee\xa9\xa9\x6f\xf5\x7c\xe7\x90\xf4\xbd\xb9\xef\xde\x06\xce\xf9\xce\xf4\x54\x57\x57\x57\x57\x57\x57\x57\x6f\x95\x13\x22\x94\x07\x8b\x7a\x0b\x54\x9d\x67\x76\x10\xdd\xdb\xf9\xde\x75\x00\x9d\x04\x8e\x35\xa4\x5e\x0d\x83\x29\x93\x05\xab\xb3\x48\x30\xd9\x1d\x94\xd7\x0a\xe3\x46\x99\xa5\xa1\x48\xd9\x54\x88\xe6\x76\x6a\xcd\x31\xa2\xed\x16\x0c\x2d\xa2\x6d\x98\x2c\x56\x4c\x93\xa0\x52\xdc\xb5\x3b\x51\xe0\xd6\xe7\x5b\x1b\x73\x9f\x1c\xd2\xd5\x99\x79\xe4\xc8\x38\xd9\xdc\x1d\xce\xaf\xcd\x0d\x52\x50\xf0\xbc\x2c\x5c\x24\xe9\x1b\x7c\xd7\x88\xa5\x0e\xcb\x46\x67\x1a\x7c\x97\x92\xd4\x60\xfb\x28\xc8\x98\x72\x3d\x08\x3d\x07\x0d\x7d\xcb\xde\xd7\x2d\x7e\xb7\xe8\xea\x83\xdb\x87\xbe\x74\x85\x5d\x78\x68\x77\x12\x88\x3c\x07\x85\x81\xca\x60\x29\xea\x4e\x7e\x58\xbf\xe7\xf5\xef\xb0\xcc\xb1\xbf\x7f\xd4\xdc\x1c\x6d\xe6\x17\x4d\xe1\xd6\x57\xf6\xec\xe6\x70\xd7\x1e\x1b\x8c\xdc\xd1\x7c\x6c\x37\xb3\x89\x3d\x94\xce\xdd\x2a\x95\x2e\x37\xb6\x3a\x09\x93\xaa\x33\x89\x5a\xa7\x4b\xd7\x73\x4b\x8a\xd6\xac\x82\x33\xd5\x08\x15\x06\xd6\x19\xcc\x6c\x42\xb3\x32\xa3\xd1\x3c\xa7\xbd\xd9\x8a\xb9\x31\x5d\x33\x37\x26\xeb\xe6\xc6\x74\xcd\x6c\xcf\x07\x34\x72\xa6\x32\x56\x1c\xdc\x04\x0e\x33\xef\x39\x81\xd8\x21\x04\x76\x8b\x36\x11\x79\xcf\x4a\x38\x0d\x97\xd8\x6d\xc8\x9c\x4f\xce\x39\xfc\xc1\x1f\xfc\x81\xf9\xcb\xbf\xfc\x4b\x14\x45\x01\xf4\x6f\x0b\xa1\x4e\x94\x77\x99\x86\xc3\x2d\x53\xce\x9a\xc7\xa7\x8b\x1e\x49\x57\x1f\x78\x2d\x2d\x0f\xcb\x68\xeb\xab\xdf\x4d\x9a\xa6\x38\x7b\xf6\x6c\x58\x1a\x20\xbc\x0b\xfe\xb7\xea\xa8\x41\xc5\xcc\xd8\xc9\x1b\x47\x26\xe7\x4f\xee\xe6\x97\xb2\xc2\xac\x26\xd6\xe5\xdc\x28\x76\x61\x6b\x7c\x33\xfa\x24\xd6\x59\xf3\x43\xbd\x82\x17\x9d\x89\x64\xab\x63\xe6\x83\x5f\xee\x45\x04\x5a\x90\x5e\x94\x17\xba\x0d\x00\x0e\xce\x4e\x53\xbb\x77\x6d\x6d\x7e\x61\x67\x50\xec\xb0\xf6\xc6\x4f\x61\x96\x72\xd7\x5a\xef\xc2\x3d\x0f\xde\x80\xf3\xbf\x00\x8a\x49\x66\xf7\x2e\x1e\x9e\xbe\xfe\xc0\xf6\xf0\xfc\xea\x2c\x39\x91\x5a\x1a\x56\xdd\x58\x43\x1f\x1f\x90\x7b\xc3\xc4\x81\xf3\x45\xcc\x1e\xb4\x8c\x3c\xc0\x31\x06\x35\xc7\x24\x80\x5d\x58\xc9\xae\xc4\xe1\x07\xa7\x31\x7e\x78\xa8\xbd\x41\x79\xf9\xd2\xa1\xe9\x6b\xd7\xd7\xe6\x57\x2c\x85\x01\x44\x51\xd7\xb3\x37\x54\xfa\x0c\x06\x7c\xbc\x26\xdf\x31\xbb\xc4\x00\xfa\x1a\x97\xbe\x9d\x57\x67\x3a\xbe\xd0\x49\x18\x1c\xdc\xfa\x2c\x88\xc8\x16\xe4\x66\x3b\xc3\x62\x7b\x9e\xd8\xd1\x4a\x61\x8e\x02\x5c\x88\xd8\xe1\x44\xad\x51\x5f\xfd\x5d\x71\x94\x00\xed\xf9\xbc\x45\x2b\x53\xc1\xc3\x46\x8a\xa1\xa2\xda\xf3\x4d\x2c\x3d\xfb\xf5\xeb\x00\x2a\xc9\x32\x83\xc2\x1c\x3b\xb1\x9b\x9f\xba\x74\x68\x76\x71\x6e\xac\x76\x83\xa8\xf7\xbe\x58\x20\x18\x2d\x5a\x85\xc5\x94\x60\x4c\x89\xc6\xa6\x45\x62\x8a\x58\xcb\x43\xc6\x77\x75\xbe\xb1\xa9\x91\x2e\xe3\xa6\x8f\x3b\x3a\x46\x57\x57\x1e\x92\x8e\xbe\xae\x7f\xfe\x2d\xf6\xab\xe1\x8f\xd1\xa1\x19\xf5\x5d\x2e\x7a\x00\x30\x59\x96\xf1\x75\x61\xe1\x38\x01\xe9\x6a\x65\x6b\x08\xb8\x02\xf4\x4a\xd4\xdf\x32\x3d\xf4\xcf\xce\xb9\x21\x11\xcd\x40\x98\x00\x94\x3b\xe7\x72\x18\xe4\x65\x4e\xfb\xfb\x9b\xc9\xce\xe8\x70\x72\xd9\x94\xc8\x93\xb9\x5b\xcd\xc7\x76\x3d\x1f\xdb\xf5\x74\xea\xd6\xd3\x99\x5b\x4d\xe7\x6e\x35\x99\xbb\x61\x52\x60\x48\xd6\xa5\xd5\x9d\x24\x30\x70\xd5\x33\x00\xeb\x00\x38\x43\x85\x23\x58\xd4\x6b\x55\x6c\x4a\xb3\x22\xa5\x51\x99\xd3\xa4\xc8\x69\x34\xcf\x69\x34\x5f\x35\x3b\xd3\x15\xda\x29\x33\x9a\x58\x43\x13\x67\x30\x73\x84\x29\x88\x66\x0e\xae\x32\x56\x2a\x5d\xe0\x0f\xde\xf3\xc6\x49\xf0\xbe\xa0\xf1\xc2\xb4\x0c\x16\xd7\xdc\x39\x14\x46\xb3\x7e\x11\x24\x11\xe1\xec\xd9\xb3\x76\x6d\x6d\xcd\x14\x45\x21\x65\x4c\xab\x7b\x4d\x0e\x97\xc9\x47\x4c\x4e\xba\xda\x09\xcf\xa7\x4b\x3e\x34\x1d\xdb\x55\x06\x99\x26\x06\x2f\x43\x9f\x38\xc9\x1f\x00\xb0\x45\x51\x98\xcf\x7f\xfe\xf3\x46\xd3\xf7\xcc\x0b\x56\xdf\x0d\xe5\x0a\x47\x34\xbb\xb2\x31\xbb\xf2\xce\xfa\xec\xfc\xfa\x34\x39\xb9\x32\x4f\x8e\x86\xe9\x1e\x62\x86\x0f\x1f\x68\x86\x8e\x36\xe2\x35\x51\x74\xb3\x3c\xf3\xa2\x75\x48\x1b\xf1\x89\x21\x25\xb0\x73\x85\xac\x41\xb1\x3b\x28\xaf\x5d\x59\x9f\xbf\x51\x9a\xf6\x81\x86\xac\x6c\x16\x40\x4b\xee\x3c\x1f\xea\x78\xde\xae\xbd\x9c\xfa\x41\xc7\xcc\x12\x66\xbb\xc3\xf2\xc6\xab\xf7\x8c\x7f\x74\x74\x94\xbe\x7b\x73\x9c\x3d\xb2\xe0\x35\x61\xbb\x6c\x1b\xc3\x44\x32\x42\x7a\x50\x78\x67\x56\xdb\x2d\xdc\x3b\x45\x75\x5f\xe8\xda\x5e\xa6\xe6\x90\x57\xbf\x87\xd0\xc3\x13\xe6\xc6\x8e\xae\xad\xcd\x2f\x5c\xde\x98\x5d\xdc\xcf\xcb\x1d\x07\x37\xab\x07\x1c\x61\x9a\x56\xe1\x49\x9d\x9c\xf0\xc9\x4f\x7e\xd2\x7c\xf7\xbb\xdf\xe5\xb2\x18\xeb\x83\xfc\x77\x1e\x1f\x9e\xf9\x39\x2e\x5d\x9d\x87\x0c\x5d\x8d\x25\x10\xe9\xe3\x59\x47\x6d\x85\xd2\xb5\x00\x6c\x99\xb8\xd9\xcd\x95\xe2\xfa\x34\xb5\xdb\x6e\xea\x1e\xf0\x66\x65\x65\x3c\x04\x1e\xd7\x0b\x02\x2b\xce\x07\xa5\x1e\xe4\xb3\xae\x58\x6f\xe9\x36\xbc\x17\xa1\xb6\x2d\x15\x9f\x59\x63\x90\xb4\x5b\x82\x73\x6d\x60\x6e\x91\x33\xe2\x00\x00\x89\xa5\xd5\x7b\x46\xd9\xbb\xb2\x92\x5e\x9c\x64\x48\xdd\xe2\x0d\xa2\x81\x87\xcc\x2a\xd5\x46\x38\xf2\x37\xc6\x6b\x39\x32\xd7\x0c\x9e\x98\x91\xd9\xd7\x48\x5d\x36\x12\xeb\x1a\x95\x75\xc1\xf5\xc5\xd7\x85\xff\xa0\x34\x2c\xcb\x3f\x66\x2c\x5a\x2c\xa7\x23\x56\x86\x4e\x6f\xd6\x7c\x5e\x5d\xd4\xe5\xa7\x34\xbc\x01\x53\xb7\x21\x83\xe6\x7c\x97\x02\x08\xa3\x19\xfe\x27\xd7\x75\xcc\x00\xe4\xd4\xec\x4a\xca\xeb\xf7\xdc\x39\x57\xfd\x26\x18\x39\x20\xb5\x09\xd2\x22\x43\x3e\x1f\x26\xd9\xe8\x70\x92\x93\x75\x39\x39\xa4\xa6\x44\x6e\x4a\x97\x27\x73\x97\x27\x25\x52\x2a\x5d\x4a\x16\x29\x39\x67\xc8\xd6\xf2\x40\xb0\xd6\x90\x75\x06\x85\x33\xb0\xb5\x77\xa5\x28\x53\x9a\xd8\x04\x33\x47\x28\x9c\xa1\x99\x33\x98\x59\x83\x39\x08\x33\xb4\x0d\xad\x82\x10\xee\x11\xf2\x06\x4a\xd8\x4d\xc5\xa6\x81\x7c\x87\x11\x3c\x4c\x7c\x6a\x08\x68\x1f\x2a\xc7\x17\xe3\x1e\x39\x72\xc4\xdc\xbc\x79\xb3\xab\x1d\xf4\xf1\x30\x77\x79\x2d\x34\x43\x41\x6b\x8b\xb7\xf3\xdc\x07\xb6\x4b\x57\xc7\xe8\x5e\xa6\xbf\x97\xe5\xd9\xfa\xfd\xf2\x97\xbf\x0c\x61\x74\x07\x43\xbb\xe5\xa1\xa8\x7f\x47\x99\xdd\x7b\xeb\xf0\xec\xfc\xb1\xbd\xfc\xbd\x79\x61\xd6\x13\x87\x3c\x74\x70\x5c\xa7\xd7\xa1\x99\xad\xd0\x4e\x29\x91\x1b\x31\xe4\xa0\xb5\x7d\x56\x4c\x73\x68\x28\xf3\xe4\x33\x9c\x7e\xf1\x6f\xbd\x3e\xc6\x8e\xf3\xf2\xc6\xd5\x8d\xd9\xf9\x2b\x1b\xd3\xb7\x2d\x35\x8b\xbf\x7d\x1f\xc6\x07\x14\x40\x7b\x17\x8d\x18\xac\x1b\x5a\x34\x5a\x2a\xe3\x1b\x6e\x36\x4d\xed\xe8\xe2\xe6\xe4\xf5\xfb\x6f\xe5\x3f\x5e\x9b\x25\x27\xb2\x92\x56\x17\xa7\x9d\x3c\xa1\xcc\xf5\xd2\x62\x46\x7b\x1a\x2d\x18\x75\xde\x90\x54\xcc\x35\x87\x18\x2a\xdf\xcf\x36\x9e\x1c\x07\x60\x77\x58\x5e\xbe\x74\x78\xfa\xda\xad\x95\xe2\x8a\x25\x4c\xa8\x3d\x75\xdd\x3a\x7e\x00\x62\xc0\xf5\xe3\x1f\xff\x18\xcc\x68\x09\x7c\x41\x7c\x10\x10\x35\xd4\x53\x11\xd9\xb7\x33\xea\x82\x59\xd6\x58\x16\x94\x6e\x49\xae\xd8\x1d\x16\x3b\xe3\xcc\x6e\x5b\x42\x61\xaa\xdb\x44\x9b\xd4\x7c\x42\x2f\x18\x32\xfc\x7b\x23\x84\xa4\x4b\xbc\xc0\xb5\x38\xef\x13\xb5\xbe\x65\x5e\x1c\x6d\x2b\x32\xdc\x8c\x9b\x1f\x9a\xa4\x8f\xac\xcd\x92\xf5\xfd\x41\x99\x96\xd4\x5e\xa4\xeb\x3b\x23\x21\xf0\x3c\xc4\x94\x50\x9f\xce\x57\xbe\x77\x75\x98\x7d\x70\xc9\x70\x50\x7c\x77\x3b\xf4\x31\xa6\xef\x26\xce\xdb\xc1\x05\x2c\xca\x7b\xdf\x34\x00\x80\x7f\xfa\xa7\x7f\xc2\x6b\xaf\xbd\xc6\x3d\x30\xdc\xc8\xf5\xbb\x8e\xb8\xd1\xe2\xa7\x22\xfd\x62\xde\x9c\xaa\xf5\x2f\x33\x54\x46\x4b\x0a\x66\xbc\xb4\xe2\x08\x29\x88\x52\x6b\xbc\x9c\x92\x81\x43\x0a\x38\x03\x47\xa9\xb1\xc8\xe0\xbd\x2d\x80\xf1\x8b\xe6\x7d\x70\xde\x23\x54\x79\x5d\x0a\x67\x50\x3a\xa2\x02\x04\xaf\xd8\xb9\x92\x2f\xa8\x71\xb1\xf3\x1d\x40\x7e\xc4\x16\x0c\x17\xfe\x1d\xcc\xd0\xf1\x65\xe6\x1e\x16\x28\xfa\xeb\xe2\xc5\x8b\x00\x00\x66\xb4\xc4\x3a\xe3\x58\xe8\x32\xee\x3b\x0d\xd1\x25\x78\xfb\xc2\xdf\xa9\x4c\x76\x19\x23\x7d\xf3\x88\x79\x83\x5a\x9d\xcc\xe7\x3f\xff\x79\x23\x4e\x84\x0e\xfa\x5d\x7a\x06\x9d\x73\xb3\xd2\x60\x72\x79\x63\xfa\xd6\xc9\x8d\xfc\xfc\xea\x2c\x39\xba\x36\x33\xc7\x08\xec\x92\xd1\x2e\x65\xec\xda\x17\xf0\x02\x8a\xd1\xd2\x42\xd2\xee\x92\x9b\x25\x02\x8d\xa1\xa4\x6b\x77\x87\x22\x71\x93\xeb\x6b\xf3\x37\xde\xd8\x9c\xbc\xb2\x9f\x97\x3b\x95\xe7\x12\x5e\x36\xd5\x7b\xaf\x7c\xf9\xf9\x7a\x35\xb9\xce\xa5\xe6\x4b\x90\xeb\x4a\xde\x31\xd9\xcf\xcb\x9d\xf3\xc7\xc7\x3f\xba\x67\x3f\x7b\xe4\xd8\x28\x7b\x4f\x62\x91\xf3\x69\x1c\xe2\x45\x62\xa4\x7a\xef\x8c\x9f\x62\x5b\xbc\xf8\xdd\x3b\x02\xa8\x65\xa4\x70\x4f\x17\x37\x86\x5a\x6b\x3e\xd9\xa4\xc3\x38\x2f\x6f\xbc\x75\x78\xfa\x93\x4b\x87\xa6\xaf\x8f\x6a\x6f\x0b\x21\xb4\xdb\xd6\x74\x91\xe8\xdb\x2c\x00\xec\xed\xed\xf9\x77\x29\x27\x4b\xbd\xd2\x92\xc7\x49\x8f\x04\x4e\x89\x77\xf5\x37\x62\xcf\x8e\x7d\xc3\xb9\x73\xe7\xdc\xd6\xd6\x16\xa1\xa9\x38\x3f\x4d\x92\x38\xe7\x12\x22\x4a\x9d\x73\x29\x11\x65\x0e\xc8\x08\x58\x39\xb9\x9b\x9f\x3a\x32\xce\x1e\x49\x1c\x65\x44\xec\xa8\x63\x6a\x7b\x5f\x00\x7e\x43\x26\xb5\x4f\x37\x64\x44\x06\x47\x21\x97\x5d\xa2\x30\x55\xd4\x82\xc1\x82\x3c\xb4\x65\x5e\x69\x4c\xad\x25\x34\x35\x0c\x55\xc4\x14\xd7\xd7\xe6\x2f\x6f\xaf\x14\x37\x4a\x83\x31\x08\x73\x54\x42\x5a\xa2\xdd\xa0\xdd\xe9\xd3\xa7\xe9\xcc\x99\x33\x74\xee\xdc\xb9\x16\xff\x18\x4f\x3d\x9f\xe5\x9f\xf6\x4d\xd6\x95\x7c\xe7\x38\x79\x3e\x1a\x5e\xfe\x2b\xd9\xc5\xd3\x49\x7a\xe5\xb7\x98\x0c\x49\xba\x34\xfa\x39\x6d\x9e\x8e\x4e\xb9\x53\xca\xaa\xd1\x43\x91\x74\x32\x8d\x87\xb7\x4a\x9c\x46\x0b\x18\xec\x32\x7a\x78\xfe\xad\xb2\xdc\xbc\x79\xd3\x01\xc0\x47\x3e\xf2\x11\x32\xc6\x80\x88\x9c\x73\x8e\xa8\x5a\x7c\x65\xeb\x17\x9e\xde\xd6\xbf\x85\x73\xae\x64\x86\xc2\xbc\x56\x26\x25\x80\x39\xaa\xce\x7f\x0e\x60\x5e\x2b\xdf\x39\x1a\x45\xec\xa7\x97\xaa\x67\xa2\x29\x88\x26\x96\x30\x76\x06\x63\x97\xd2\xbe\x35\x18\xb9\xd4\xec\xdb\x94\xc2\x9f\x4b\x68\xdf\x25\x34\xb2\x06\xfb\x48\x68\x04\xa2\x11\xaa\x45\xb6\xe3\x7a\x07\xd4\x88\x88\xf6\x9d\x73\xe3\xfa\x79\xe4\xaa\x2d\xcd\x3e\x6e\xdf\x3f\x53\xbd\x18\x97\x88\xc6\x44\x34\x15\x86\xcc\x1c\x40\x49\x44\xf3\xba\x8c\x65\xcd\x97\x60\x60\x78\x65\x79\xf6\xec\x59\xfb\xb3\x9f\xfd\x4c\xb6\x0f\xcb\xde\xf9\xb3\xe7\x61\xac\x4e\x35\x3c\x9a\xac\x4a\xf9\xe0\x9a\x83\xe7\xc9\xd5\x8d\x6c\x7b\x10\xef\x3c\xf2\x34\xb4\x09\x00\x00\x20\x00\x49\x44\x41\x54\x4e\xca\x3f\xa7\xdb\x62\xb1\xad\x70\x9a\x24\x6e\x2d\x1f\x29\xc7\x1e\x4e\xd2\xcd\xcb\x03\x00\xe6\x23\x1f\xf9\x08\x3e\xfe\xf1\x8f\x13\x35\x2b\xb2\xc9\xe7\x5b\xeb\xfd\x04\x40\x42\x44\x95\xde\x87\xcb\x8a\x04\x44\x40\xb2\x3e\x4b\x0e\xad\xce\x93\xcd\xc4\x22\x07\x14\x4f\x38\x0b\x7e\xd7\x4c\x33\xbd\xe1\x5a\x73\x1f\x32\x69\x33\x65\xd5\xea\x87\x43\xa0\x05\xa3\xa5\xd1\xe7\xd6\xc0\xde\x5a\x29\x2e\xfd\xb7\x7b\x26\xcf\xbd\x7e\x64\xfa\x93\x69\xe6\x6e\x81\xe0\x65\xd6\xff\x79\x4f\x60\x89\x4a\x36\xcb\x3a\x4f\x77\xf6\xec\x59\xbb\xb5\xb5\x45\x75\xbb\x85\x73\x2e\xf0\x04\x95\x91\xe6\xdf\x93\xba\x5f\xcc\x1c\xc1\x4c\x32\x5b\x26\x96\xcc\xa1\x69\x7a\x24\x2f\xcc\x3a\x55\x03\x09\x31\x20\xaf\x0d\x10\x17\x1e\xeb\xd9\x07\x31\x0b\xa1\xd4\x74\x58\x80\xeb\x61\x7d\x7a\x30\x06\xf1\x35\x47\xf5\xef\x2c\xb1\xa3\xb7\x36\x67\x3f\xfa\xe9\xbd\xa3\xe7\xdf\x59\x9f\xbf\x59\x18\x77\x8b\x88\xf6\x01\xec\x03\x18\x13\xd1\x98\x1b\x30\xce\xb9\x12\x80\xab\xdb\xa8\x3b\x7b\xf6\xac\x3d\x79\xf2\x24\x5d\xbe\x7c\xd9\xa3\xe4\x72\xa5\xc9\x31\x18\x9c\xec\x8b\x4c\x82\xb6\x12\x05\xda\x8d\x0f\xca\x37\x2e\xb8\x52\xd0\x03\x2c\xb3\xbe\x5d\x90\xe8\xba\xb2\x88\x28\x41\x75\x09\x61\x86\x6a\xd4\x97\x91\xc3\xe0\xe8\x28\x3b\x7a\x7c\x2f\x7f\x6f\x66\x69\x85\x1f\x8e\x43\xa8\x04\x94\xdf\x85\xe2\x05\xac\x32\x16\x9a\xdc\x89\x00\x62\x73\x83\xa1\x29\x29\xae\xc1\x96\x56\x60\x42\xd0\x02\xf2\x85\xe2\xdf\xda\x9f\x83\x90\x50\x03\x67\xf6\x07\xe5\xf9\xab\x1b\xf3\xb7\x66\xa9\x1b\x81\x82\xd1\xe2\xad\xf4\x12\x08\x0d\xcb\x45\x76\x17\xc9\x8e\x8d\x57\x38\xaf\x68\xfe\x5d\x0b\x5a\x07\x2c\x3b\x6e\x8e\x5b\xe6\xad\xd1\xc4\xd3\xc9\x6f\x9c\x2e\x0d\x87\x66\xc8\xc4\xe8\xd7\xca\xc6\xdf\xbb\x70\x77\xa5\x89\xf1\x4a\x2b\x4f\x57\x5c\x5f\xbc\x31\x3c\xf2\x7b\x8b\x37\xcf\x3d\xf7\x9c\x3b\x77\xee\x9c\x3b\x77\xee\x9c\x3b\x73\xe6\x8c\x87\xa1\x5a\x19\xa0\x36\x5e\xfc\x9f\x1f\xe9\x78\x43\xa6\x20\x22\x2f\x73\xfe\x37\x18\x33\x44\x34\x45\x6d\xcc\xb0\x29\xa5\x30\x6d\x53\xaf\x33\x99\x10\xd1\x8c\x88\xc6\x00\xa6\xfe\x17\x8b\x8b\x66\xfd\xd9\x2a\xde\x60\x19\x13\xd1\x7e\x6d\x80\x04\xe3\x05\x95\x82\xf3\x77\x0a\x8d\xfd\x3b\xc3\x33\xae\xf1\x4c\x6b\x3a\x67\xb5\x12\x9c\xd7\x86\x4a\x89\xb6\x1b\xda\x11\x85\xe3\xd5\xf1\xda\x6b\xaf\xe1\xaf\xfe\xea\xaf\xec\x7d\xf7\xdd\x67\xf6\xf6\xf6\x38\x6f\x64\x7b\xe1\xcf\xdc\x28\x80\x02\xcf\xe3\x64\xa7\x1d\xab\x43\x2b\xd2\x48\x37\x38\xcf\x8b\xb7\x69\xed\xb9\x65\x24\x44\xe8\xd6\xe2\x35\xf8\x18\x6e\xad\xfc\x1a\x1f\x38\x7c\x28\xf3\x0b\x2f\xbc\xe0\x9e\x7d\xf6\x59\xb7\xb5\xb5\x45\x2c\x04\x7d\x8f\xca\x68\x31\xa8\x06\xb1\x29\x11\x65\xd6\xc0\xcc\x52\x67\x53\x4b\xd9\xfa\x2c\x39\x3c\x2c\xcc\x46\xe2\x28\x09\xb9\xd4\x94\xb4\x16\xdd\xd6\x8a\xb6\x71\x2e\xb4\x4f\x7a\x96\x27\xfd\x13\x5f\x27\xc6\x8c\x17\x2d\xb8\xfa\x5f\x95\x85\xc3\x7e\x5e\x5e\xbf\xb8\x39\xfd\xf1\xab\xc7\xc6\x3f\xda\x5e\x2d\x2e\x5b\x72\x7b\xa8\x0d\xef\xfa\x77\x4a\xcd\xb4\x91\x97\x4d\xe7\x65\xb1\x1e\xb4\xfb\x41\x87\xab\x9f\x89\x88\x5c\xdd\x80\x13\x3f\x98\xaf\xf9\x93\x80\x90\x14\xc6\x61\x9c\x97\xd3\xcc\x99\x64\x6d\x96\x6c\xe6\xa5\x59\x31\x20\x23\xba\xb0\x05\x6f\x51\x6c\x9a\x2d\x14\x2e\xf4\x8f\x75\xbf\xa8\x4e\xbb\xd5\x3c\xf7\xcf\x54\x45\x94\xc6\xcd\xde\xd9\x98\x9f\xff\xf7\x7b\xf7\x7f\x78\xe9\xf0\xf4\xb5\x69\xea\xb6\x51\x1d\x45\xe0\xdb\xb8\xd7\x0b\x33\x31\xb0\xf0\x9e\x27\x77\xee\xdc\x39\xe7\x9c\xa3\xfd\xfd\x7d\xad\xcd\xc9\xa9\x22\x4e\x9a\x94\x41\x03\xc0\x26\xec\x83\x54\xca\xbc\xc1\x71\xe3\x8b\x0b\xae\x47\xb8\xd0\x98\x99\xc7\xc5\xe3\xe2\x16\x67\x82\xca\x55\x9d\x00\xc8\x00\x0c\xc8\x51\xbe\x3a\x4f\x0e\x9d\xba\x35\x78\x6c\x50\x9a\xc3\xad\xc3\x83\xd8\x2e\x06\xee\x75\xa9\x2c\x66\xd7\x82\xe1\x0b\x8d\xaa\xe4\xde\xba\x09\x53\x39\xa1\xe2\x64\xd0\x76\x13\x55\xf1\xac\x1e\x3d\x5e\x59\xeb\x3e\x9b\xea\xc1\xcc\x13\x7b\xe5\xad\xc3\xb3\x57\xc7\x99\xdd\xa9\x0d\x17\xef\x75\xe1\xee\x42\xe7\x9c\x73\xcf\x3e\xfb\x6c\x57\x87\xe7\x83\x74\x97\x69\x69\x62\x46\x81\x27\x5f\x0a\x01\x0f\x2d\xc3\xb3\x03\xdf\xb2\xb0\x0c\xfe\xa0\xf8\x64\xe8\xa2\xe9\x4e\x71\xdf\x69\xb8\x1d\x7e\x69\x6d\x6f\x01\x0f\x6b\x4f\x0e\x95\x82\x04\x84\xe1\xca\x8c\x96\xb2\xfe\xf3\xc6\x8c\x97\x3d\xef\xce\xf5\xef\x73\xe7\x9c\x57\xc0\x73\x54\xc6\x89\x5f\x04\x3b\x45\x63\xa4\xf0\xe7\x31\x2a\xc3\x62\x52\x7b\x4f\xbc\xb1\xe1\x3d\x29\x93\x5a\x91\x8d\xd0\x78\x5d\xbc\x51\x32\x42\x73\x70\x9c\x57\x78\x7c\xbb\xf3\x9c\xd8\xf4\x90\xa7\xbb\xee\x14\x4a\x00\x65\x6d\xac\xf8\x36\x14\x3c\x4f\x17\x2e\x5c\xc0\x3f\xfd\xd3\x3f\x79\x97\xb4\xd7\x37\x9c\x87\xd2\x58\xd7\xe2\x79\xe0\x71\x7c\xb4\xa7\xc5\xf3\xa0\x19\x0e\x5d\x53\x4b\x31\x83\x56\x6b\xb7\x7d\xe2\x65\xde\x1a\x6e\xae\xcf\x17\x0c\x66\xe8\x32\x29\xf3\x5c\xf8\x65\xf2\xe9\x17\x64\xfa\x81\x6a\x30\x60\xe0\x3b\x69\x20\x99\x27\x0e\xf3\xc4\x15\x79\x61\x06\x6b\xb3\xe4\x50\x5e\x9a\x55\x83\xf6\x5d\x5d\xaa\xee\x25\xf6\x8d\xeb\x60\x02\x3b\xcb\xa4\xe9\xa0\x01\x40\xdb\x32\x5d\x13\x5a\xeb\x6d\x3f\x02\x06\xc6\x99\xdd\x7e\xfb\xf0\xec\x95\x57\x8f\x8d\x9f\xbf\xb2\x31\xbb\x50\xa4\xb8\x55\x1b\xe2\xde\xf8\xf6\x6d\xc2\xb7\xa7\x12\x4c\x3e\x9e\x79\xe6\x19\xeb\x07\x1c\x7e\xd6\xc1\x1b\x51\x9e\x1f\x8c\x27\x54\xf3\xc4\x38\xe7\x88\x40\xe9\x24\x73\xe5\x34\xb5\xd3\xcc\x9a\x6c\x75\x6e\x36\xb2\xd2\x0c\x09\x64\x84\xbb\xa8\xa9\x10\xb6\xae\xd3\x3b\x62\xab\xca\x6d\x33\x2f\x2c\xba\xf5\x4c\x6c\x6c\x9d\x86\x23\xc4\x8e\x43\x20\x87\xc2\xb8\xd9\xcd\xd5\xe2\xe2\x4f\x4f\x8c\x7e\x78\xe1\x9e\xc9\x4f\xc7\xb9\xbd\x09\xc2\x2e\x98\xa7\x05\x95\x3e\x98\x52\x33\xfd\x55\xfa\x41\x95\x37\xe4\xf6\xf6\xf6\xe8\xf5\xd7\x5f\xf7\xd4\x70\x6f\x4b\x28\x06\xb0\xd0\x47\xc9\xef\xe1\xd9\x4f\x15\x69\x0a\x53\x1a\x30\x3c\xce\xc3\xca\xef\xad\x06\xc0\x0c\x17\x4f\x0c\xff\xf3\x6b\x3f\x52\xe7\x5c\x4e\xc0\xc0\x38\xca\x1f\xba\x39\x7c\x6c\x75\x9e\x1c\x07\xbc\xc1\x8e\x96\xc4\x35\xf6\x04\x37\x30\x1a\xa9\x6c\x59\xe0\xfe\xbf\x63\x20\x44\x0b\x46\x4b\xd3\x18\x1a\x3b\x8b\x82\x11\x54\xc7\x30\x6b\x3e\xe0\xf3\x71\x8e\xd3\x56\xcd\x46\x5a\xc2\xfe\x95\x8d\xd9\x2b\x7b\x83\xf2\xa6\x35\x61\x7e\x3e\x74\x28\x00\x9c\x1f\x21\x6f\x6d\x6d\xd1\xd6\xd6\x16\x9f\x2e\xe2\x41\x4e\xd7\xc8\x78\xe9\x51\x89\x4d\x91\x70\x25\xc7\x15\xbb\xe6\x06\x8e\x75\xa4\xda\x54\x93\x46\x8f\xa6\xe0\x64\x07\xa1\x4d\x51\x49\x5c\xb2\x0c\x9e\x26\x8d\x8e\x65\x34\x71\x3a\xb4\xf2\x4b\x9a\xfa\xd2\xca\xf3\x91\x9d\x56\x57\x99\x64\xa7\xa3\x79\xc6\x42\xbe\x1f\xfa\xd0\x87\xe8\xd0\xa1\x43\xf8\xf2\x97\xbf\x6c\x4f\x9f\x3e\x5d\x99\xea\x95\x20\x7b\x63\xc5\xc9\xbf\x5a\xbe\xb8\xcc\x15\xf5\x94\x0b\x9f\x5f\xf7\x6b\x4c\xfc\x54\xd2\xac\x56\x42\xde\x58\xe1\x7f\xdc\x33\x32\x45\xa3\xc4\xfd\x14\xcf\xb4\x36\x64\xbc\x41\xe2\x3d\x31\x13\xaa\x5c\xc9\x53\xa6\xf4\xbd\x87\xc7\x1b\x2b\x9e\x06\xbe\x00\x37\x18\x2c\xdc\x28\xa3\xc6\xe3\xe4\x17\xe0\x52\x6d\xb4\xf0\xa9\x20\x59\xbf\x31\x39\x90\x83\x33\x4d\x7e\xb5\x3a\x95\xae\x6d\xad\x0d\xf2\xae\x55\xe2\x97\x32\x18\x93\x47\x6e\xf8\x90\xc0\xe9\xf3\xd0\xda\x3d\xa0\xe7\x47\x02\xa7\x2c\x87\xc6\x13\x8d\x96\x96\xfe\xff\xc5\x5f\xfc\x45\xb3\xb1\xb1\x81\x2c\xcb\x7c\x5c\xd0\xdf\xfe\xc1\x2f\x15\x40\xa5\xf3\x0d\x88\xcc\x2c\xb1\xae\x30\x28\x33\x4b\xd9\xca\xdc\xac\x67\xa5\x19\x1a\x90\xa9\xbc\xeb\x08\x0b\x6f\x1b\xbd\xcb\xae\xac\xf0\xba\xb7\xd6\xc5\xae\xca\x15\x61\x5d\x88\xab\xc9\x5f\xe8\xe4\x39\xf7\xbc\xf7\xbe\xea\x20\x26\xa9\xdd\xbb\x7c\x78\x76\xfe\xfc\xf1\xf1\x73\x17\x0f\x4f\x5f\x9d\x64\xee\x06\x08\xfb\x40\x33\x4d\x54\xcb\xf9\xb4\x96\xd7\xb2\x42\x1b\xa6\x68\xe1\xa7\xff\x4f\x9f\x3e\xed\x3d\x4f\xc1\xeb\x52\xb3\xc3\x4f\xfd\xfa\x75\x3d\xe4\x3d\x52\x44\x64\x1c\x9c\x99\x64\xb6\x9c\xa5\x76\x9c\x38\x4a\xf2\xd2\x0c\xb3\x92\xf2\xc4\xa1\x5a\xfb\xe9\xc4\x9a\x17\xaf\x06\x1c\x35\xfd\x21\x78\x5c\x63\xc6\x50\x3d\x88\x6f\x8c\x96\x66\xdf\x2e\x85\x27\xc0\x91\xc3\x3c\x71\xa3\x1b\x6b\xf3\x8b\xaf\x9c\x18\x9f\x3b\x7f\x7c\xfc\xa3\xfd\x41\x79\xc3\x11\xf6\x00\xec\xba\xe6\x36\xf6\x70\xa1\x29\xf7\x8c\xba\x66\x71\xb6\xbb\x72\xe5\x0a\x2e\x5c\xb8\x80\xdd\xdd\x5d\x60\xd1\x90\xd7\xec\x08\xa9\x8f\x17\xa6\x79\xe5\x01\x74\x9a\x60\x72\xa1\xed\x82\xd5\x16\x29\xf1\xad\x71\xda\x42\xba\xb0\x50\xc9\x02\xb3\xdd\x61\xb1\x37\xca\xed\x8d\x72\xec\x66\xa9\x38\xcf\x45\x7a\x41\x00\x2c\xbc\x57\x91\xbe\x2d\xa3\xb1\x3c\x3a\x26\x4e\x25\xde\xca\x00\xaf\x2b\x9a\x38\x0c\xc0\xad\x94\xc6\x42\xf7\x95\x8e\x20\x02\xe4\x60\x56\xe6\xe6\x81\x13\x7b\xf9\xfd\x57\xd7\xe7\x17\xe6\x69\xb9\xe3\x9a\x6d\xd0\xde\x65\xea\xd7\xfd\x84\xb9\x79\xb1\x03\x82\xf3\x59\x0b\x3c\x3e\x36\xb2\x8b\xe1\x32\x11\x98\x65\x79\xc9\x5f\xa3\xc4\x75\xc1\x6b\x38\x3d\x9e\x65\xb8\xba\xe8\xe9\x0b\x17\x2b\x1f\x87\x8f\xc9\xfa\xb2\x74\xcb\xe8\x89\xb5\x93\x2e\x1a\x43\x9a\x17\x5f\x7c\x11\x2f\xbe\xf8\x22\x7e\xe7\x77\x7e\xc7\xec\xec\xec\xe0\xf0\xe1\xc3\x01\xd6\x35\x8b\x77\x2d\xd0\x6c\xb9\xa7\x66\x21\x78\xb8\x4a\xa0\x96\xc1\xd6\x4e\x37\x19\x57\xcb\x25\xd8\x37\x2f\x2f\xa6\xce\xaf\x19\xc9\xb2\xdd\x3c\x00\x5a\x8b\x10\x49\x2c\xa0\xa5\xf6\x4e\x0c\x8b\xc5\x9b\x9b\x65\x3a\xce\x07\x7f\xaa\xf0\xc2\xc1\x8d\xde\xd3\x12\xe1\x9d\x0f\x31\xf9\xd2\xd2\x71\xf8\xbe\x32\xde\xa7\x0d\x9a\x48\x9c\xd6\x9e\xb4\x3c\x62\xed\x4e\x4b\x67\x3a\xbe\x43\xc0\x6a\x70\x92\x7f\x9d\x6d\xe9\x3b\xdf\xf9\x8e\xfd\xce\x77\xbe\xb3\xb0\x23\x4e\xc8\x83\x5f\x3c\x3e\x22\xa2\x14\x40\x5e\x24\xd8\xbb\xb2\x31\x7b\x13\x40\x6a\x89\xf0\xf0\x4d\x7c\xf0\xd0\x24\x3d\x66\x1c\xa5\x5e\xaf\x02\x7c\x40\xea\x8d\x21\x40\x6e\x8f\xe6\x1a\xbe\xb9\xfe\x85\xda\x70\x8a\x27\xbd\x3a\xcd\xd9\x61\x96\xd8\xbd\x2b\x1b\xb3\xd7\x7e\x76\x6c\xf4\xfc\x9b\x9b\x93\x57\x47\xb9\xdd\x06\x41\x1e\x82\xe8\x8d\xec\x50\x2e\xd6\x49\xb7\xce\xe4\xfa\xdc\xe7\x3e\x67\xbe\xfe\xf5\xaf\x5b\x60\xf1\x80\xc9\xfa\x77\x56\xb7\x4d\xbf\x8b\x2e\x45\xb5\x84\x22\xb5\x84\xf4\xca\xc6\xec\xad\xc2\xc0\x4e\x52\x3b\x7a\xf8\xe6\xf0\xfd\x47\x47\xd9\xa9\xbc\xc0\xb0\x36\x6e\xc0\x8f\xf5\x70\xed\xa2\x35\xbb\xa6\x02\xcf\x9a\x91\x77\xb0\x6d\x5c\xd3\x87\xfa\x19\x0e\x47\x0e\x16\xb0\xb3\xd4\x8e\xae\xad\xcd\x2f\x9e\x3f\x3e\x7e\xf6\x67\xc7\xc6\x2f\x8f\xf2\xf2\x1a\x08\x7b\xcc\xab\x1a\x78\xe1\x9a\xc3\xe7\x02\x2f\x6a\xbc\x96\x88\xf0\xdc\x73\xcf\xe1\xd2\xa5\x4b\xaa\x5e\xc3\xc1\xdb\x82\x01\xaa\xa9\x22\xff\x22\xdd\x32\xfe\x8f\x44\x22\x3e\x8a\x94\x23\xf3\x56\x38\x77\xee\x9c\x7b\xf6\xd9\x67\x5d\x6d\x79\x12\x98\xb2\xac\x17\x6c\xa5\xb5\x05\x9e\x81\x90\x97\xe4\xf2\x53\x3b\x83\x53\x47\xc6\xd9\xbb\x52\x4b\x83\xf6\x3d\x45\xc2\xf0\xe0\xf6\x09\xb8\xd0\xf2\xda\x63\x62\xcf\x4a\xd7\xf2\xa4\x84\x69\xa5\xc6\x8a\xf5\xab\xd6\x83\x35\xca\x2a\xd7\x37\x88\xaa\xa2\xeb\x67\x6a\x2f\x10\xae\x85\x25\x29\x8d\xbb\x7c\xf9\xd0\xec\xf5\x51\x6e\x77\x6b\xeb\xdc\xcf\xff\x71\x65\x1e\xf8\xf7\xed\x6f\x7f\xdb\xa6\x69\x6a\xac\xb5\x1a\x3f\xb5\x11\x10\xaf\x23\x39\xaa\xe4\x30\x32\xad\x56\xa7\xcb\xbc\x15\x1a\x1d\x72\x24\xd7\x45\x03\x4f\xcb\xe1\x25\x3d\x32\x8d\xc6\x87\x3e\x9e\x0c\x8d\x57\xda\xb3\xe4\x43\xd7\x48\x58\xc3\x19\xcb\x5f\xa3\x31\xe6\x59\xd1\xca\xc7\x47\x18\x3e\x9e\x5e\x79\xe5\x15\xfb\xf2\xcb\x2f\xbb\x47\x1f\x7d\x94\xbe\xf2\x95\xaf\xd8\x7a\x5d\x01\xf7\xb2\x78\xe5\x18\x3c\x7a\xf5\x77\x3e\x75\xe4\xa7\x5d\xfc\xe8\xa8\xf4\x9d\x0a\xea\xc5\xbb\xb5\x22\x0a\xef\xa8\x14\x94\x5f\x77\x12\xce\xb3\x40\x7b\xdb\x32\x57\x68\x53\x54\x53\x4f\x72\x01\xb0\xc7\x2f\xbd\x2b\x16\xcc\xbb\x52\x2b\x41\x57\xd3\xea\x7c\xa7\xf0\xec\xb3\xcf\xba\xa7\x9e\x7a\xca\x3c\xfe\xf8\xe3\xf4\xe3\x1f\xff\x78\x99\xb7\x02\x68\x77\xc0\x5d\xde\x39\x19\x34\xdd\xa6\xc9\xb2\xf4\x9c\x69\x9e\x1a\x1f\x34\xef\x88\x26\x8b\x32\x2c\xf3\xf4\x68\x65\xd1\xf4\x34\xc7\xd7\x92\x2b\x05\xcf\x32\x9e\xa9\x6d\xe3\xdc\xb9\x73\x5c\xdf\x73\x23\x97\x7b\x5d\x0c\x4b\x63\x4a\x72\x6e\x94\x97\xd3\x71\x6e\xc7\x89\x25\xac\xcc\xcd\x46\x5e\x9a\x21\x01\xa6\xf6\x47\xb4\x94\x9c\x47\xe6\x75\x6e\xf8\xc6\x55\xbf\x8f\x77\x2c\xbd\xd7\xfb\x4d\x1f\x5e\x17\xd0\xd9\x49\x66\x77\x2f\x1f\x9a\xbd\xfa\xca\x89\xd1\xb9\x37\x8e\x4c\x7e\xb6\x9f\xdb\xeb\xa8\xa6\x44\x46\xa8\xae\x97\xf0\xd3\xa4\xc1\x53\x88\x66\xea\xd2\xaf\xbd\x02\xf3\x9a\x9b\x9f\xfc\xe4\x27\xa1\x3e\x59\x3b\xe5\xe4\x19\x34\x0e\x29\x53\x7b\x61\x02\xef\x2d\x9c\x1b\xe7\x76\xbe\x33\x2c\x76\xe6\x89\x1b\xa7\x96\xd2\xbc\x34\xc3\xc4\x52\x6a\x00\x03\x50\xf0\x34\xf9\x7b\x97\x1a\xcf\x94\x3c\xc8\x9f\x82\x71\xe3\xea\x38\x3e\xf8\xf0\x03\xfc\xc2\xb8\xd9\x28\xb7\xdb\x97\x0f\xcf\x5f\xfb\xe9\xbd\xa3\x73\xe7\x8f\x8d\x7e\x32\xc9\xed\x0d\x54\x0b\x93\x77\xa9\xba\xe0\x75\x5c\x1b\x30\xde\x8b\xea\xdb\x72\xf0\xee\x7a\x6f\xcb\xd9\xb3\x67\xed\xce\xce\x4e\x4c\x17\x42\xc4\x73\xb9\x96\x32\xce\x0b\x03\x39\x55\x24\x9f\xe5\xbb\x44\xd2\x2b\x9c\x39\x73\xc6\x77\x06\x1e\x87\xaf\xb0\x04\x40\xe6\xaa\xed\x9b\x03\x00\xd9\xe6\x38\x3b\x7a\x62\x37\xff\x85\xac\xa4\xd5\xf6\x46\xb7\x9a\x18\xd7\x08\x69\xcb\x1a\x0f\xc4\x36\x6e\x31\x4f\x7c\xdb\xa0\xa8\x63\x89\xfb\x48\x9a\x14\xad\xc3\x78\xf8\xf1\xe7\xfe\xac\x00\x6a\x9e\x43\x43\xe1\xdb\xb1\x7d\x56\x95\xa7\x72\xff\xca\xc6\xec\xfc\xde\xb0\xbc\x6e\x4d\x63\x99\xa2\xb1\x34\xc3\xdc\xa8\x73\x0e\x67\xce\x9c\xa1\x1f\xfe\xf0\x87\x31\xe5\x25\x2b\x5b\x3e\x6b\x9d\xa3\x53\xd2\x76\x59\xb5\x9a\x42\x95\x1d\x82\x86\xb7\x4b\x61\xcb\x7c\x9d\x02\xa3\x0a\x67\x24\xc8\x46\x60\x95\x6f\xb1\xf2\xca\xf4\xcb\x78\xc5\xcb\x65\x15\xf8\xae\xfc\x63\x34\xcb\x74\x31\x43\x4a\xe3\x51\x48\xf3\xf2\xcb\x2f\x5b\xa0\x1a\x1c\x3c\xf1\xc4\x13\xf4\x67\x7f\xf6\x67\xc1\x88\x61\xeb\x40\x3a\x8d\x18\x6a\xe6\xe7\xcb\x5a\xf9\x04\x63\x06\xb5\x62\x46\xb3\x1b\xa9\x35\xad\xc3\x0d\x11\xaa\x16\xe4\x4d\xfd\x77\x6f\xe0\xa0\xd9\xea\xec\xd7\xab\x78\x9c\xfc\x58\xf0\xb2\x56\x78\xb6\x76\x33\xfb\x72\x5b\xa0\x5a\xcb\x23\x47\xb2\x2f\xbf\xfc\xb2\xab\x8d\x16\xc9\x27\x69\x48\x48\xcf\x83\xe4\x71\x5f\x03\x97\xa7\xe3\x8a\x95\xeb\x35\x29\x07\xd2\x88\xe5\x86\x80\x34\xdc\x35\x79\x88\x19\xb8\xb2\x7c\xb2\x1c\x7d\x8c\x32\x39\xd0\x88\x75\x22\x31\xbd\x02\x91\x2e\x3c\x7f\xe1\x0b\x5f\x30\xc6\x18\xf8\xa9\x11\xef\xbd\xa3\x66\x2a\x84\xd3\xeb\x3b\x6b\x72\x06\x34\xca\xca\xc9\xee\xa0\xdc\x73\x84\xc9\xa0\xa0\x61\x5e\x9a\x95\xc4\x51\x6b\x56\xc0\x4f\x95\xa0\x65\xb4\xd4\xef\xfc\x0c\xaf\x9a\xaa\x4a\x5d\xb3\xa3\xf3\x5b\xd6\x0b\x60\x09\x76\x7f\x50\xde\xb8\x70\x74\xf2\xc2\xcb\x27\xf7\xff\xeb\x9b\x9b\xd3\xd7\x26\x99\xbb\xe9\xe0\xfc\x3a\x8e\x7d\xaa\xd6\x72\xed\xa3\x32\xc4\x5b\x3b\x89\x80\x66\xad\x22\x00\xb0\xf5\x8a\xad\x3a\x66\xeb\x5d\x3c\x79\xc6\xcf\x17\xf9\x1f\xdf\x78\x6b\x99\xaf\x78\x4d\xe4\x26\xa9\x2d\x6e\xad\x94\x7b\x7b\x83\xf2\x96\x35\x6e\x96\x5a\xca\x52\x4b\x99\x71\x94\x84\x6e\x30\x74\x8a\x55\xa1\xc9\xf9\xf2\x8a\x41\x78\x20\xcc\xef\xac\xad\xe0\x2d\xc1\x4e\x53\xbb\x7f\x7d\xad\x78\xeb\xd5\x63\xe3\x17\xff\xfd\xde\xfd\xe7\x2f\x1e\x9e\x5e\x98\x67\xee\x16\x80\x5d\x54\xc6\xdb\xbe\xab\x16\xe4\xfa\xc5\xf5\x53\xdf\xf6\xbd\xc7\xa5\x6e\xc3\xa1\xed\xbe\xfe\xfa\xeb\x34\x1a\x8d\xb8\x9c\x7b\x79\xf1\xef\xb2\x9f\xe1\xed\xca\x3f\x2f\x18\x3e\x07\xbd\xab\x48\xfb\xe6\xbf\x77\x8d\x18\x64\x58\xb8\x7f\xc5\x39\x57\x00\x54\x5c\xdd\x98\xbd\x35\xcd\xec\xf6\xea\xdc\x1c\x83\xab\xf3\x60\xd6\x07\xbb\x07\x3a\x04\x2e\x29\xde\x0a\x6d\xe0\x21\x1e\x98\x61\xc2\x4d\xd4\x30\x1f\xcb\x34\x4b\x2b\x0d\xcb\x50\x5a\xf6\xb5\xd3\x84\x53\x65\x40\xe9\xea\xcc\x3c\x70\xef\xee\xe0\xc1\xeb\x6b\xc5\x85\x5b\x2b\xc5\x9e\x77\x05\xa2\x12\xfc\x0a\xac\xe6\xd9\x82\x47\x09\x0c\x55\x3f\xbe\xc6\xdc\xd3\x07\x81\x5b\x96\xcf\x32\x5a\x7e\x1e\xdf\xba\xc2\x41\xf9\x72\x37\x70\xf4\xe5\xf3\xdd\xc6\x17\x85\xfb\xd2\x97\xbe\x64\x81\xf6\x14\xca\x17\xbf\xf8\x45\xdf\x49\x48\xf9\xf2\x6d\x35\xdc\x42\x5d\x77\x2a\x00\xc2\xd4\x10\x00\x80\x75\x38\x60\x38\x0c\x16\xa7\x02\x5a\xf8\x63\xcf\xde\x1b\xc4\xe9\xaa\xd3\xaa\xd3\x13\xde\x58\xe1\x77\xe1\x74\x04\x29\x9b\xea\x94\x06\xcb\xc3\x42\xe4\x17\x49\xaf\xe9\xc0\xae\x3a\xeb\x1a\x18\x1c\xf4\x39\x16\x34\x98\x98\x8e\xee\xa2\x25\xf6\xbd\x0f\x0d\x6a\x5a\xbf\x48\xba\xbe\xf5\x9c\xe3\x0a\xf2\x56\xff\xf2\x53\xc4\x2b\x0f\x83\x81\xbd\xbe\x36\xc7\xfe\xa0\xdc\xbf\xb2\x31\xbb\xfa\xde\x77\x56\x3f\xf8\xc0\xf6\xf0\xbd\x6b\x33\xda\x34\x8e\x52\xdf\x01\xd7\x4e\x6f\xd6\xe3\xf9\xdd\x45\x6d\x1d\x4a\xf0\xc7\x66\xb4\xd7\x43\x3a\x00\x8e\x60\xe7\xc6\xcd\x6e\xad\x14\x97\x7e\x72\x62\xf4\xec\xf9\xe3\xa3\xf3\xbb\x83\xf2\x1d\x47\xd8\xf1\xeb\x37\xc4\x3a\x0e\xee\x69\xe4\x7d\x57\x90\xff\x66\x19\x4b\x9c\x87\xbe\x0d\xd4\x83\x58\x6e\xcc\x81\x3d\x1b\xd1\xee\xec\x24\x2d\x8b\x37\x8f\x4c\x26\xd7\xd6\x67\xd7\x8e\xed\xe5\xaf\x3d\x72\x63\xf8\xee\x07\xb6\x07\xef\x39\x3c\x49\x4f\xa4\x8e\xaa\xc3\x21\x83\x91\x52\x0d\xe0\x83\x47\x05\x6c\x60\x8e\xf6\x40\xbf\x24\xd8\x79\x62\x27\xbb\x83\xf2\xda\x5b\x9b\xd3\xd7\xfe\xdb\xd1\xc9\x2b\x57\x37\x66\x97\xa7\xa9\xbd\x65\xe1\x46\x04\xda\x43\x7d\xa9\x2b\x1a\xcf\x13\x3f\xd9\x7a\x46\xed\x29\xe1\x10\x22\xbb\x65\xfb\xf4\x3f\x5d\x72\x6a\x01\xfd\x1c\x17\x6e\x05\x71\xa7\x06\x1f\xf1\x79\x1e\x68\xa3\x9d\x85\xc0\x2c\x4d\x3e\xda\xf0\x5b\xe3\xfc\x94\x51\x0e\x20\x9d\xa5\x2e\x7d\x70\x7b\xf0\xc8\xfa\x2c\x39\x69\x1c\xb2\x20\xa5\x9e\x18\xa2\x36\xe7\x19\xc2\x40\x84\x34\x5a\x44\x08\xeb\x6e\x6a\xa0\x76\x05\x4b\x0f\x4e\xed\x6e\xe4\xc6\x8d\xcf\xab\x4e\xe0\xa7\x90\x7c\xfa\x46\x38\x28\x29\x8d\xbb\x7a\x75\x7d\xf6\xc6\xde\xb0\xdc\x06\x5b\xa0\xcb\x46\xc5\x7e\x74\x09\x00\xb8\x7c\xf9\x32\xed\xee\xee\xc6\xbc\x17\x5d\x21\x36\x3d\xd1\x05\x2f\x47\x7e\xb1\xc0\xd9\x12\x1b\x91\xc6\x68\xe9\x1a\xc5\xc6\xd2\xf5\x2d\x4b\xd7\x48\xb3\x2b\x4d\x0c\x4e\x7b\xd6\xdc\x95\xb1\x6f\xcb\x46\xec\x92\xd6\x2e\xdc\x07\x4e\x93\x24\x89\x71\xce\x39\x7f\x14\x81\x1f\xbd\xc1\x3b\x0d\x5d\x38\xff\xc5\xba\xe6\x5c\x18\x2e\x7f\xb6\xf6\xb8\x38\x20\xac\x35\x09\xbb\x78\xd8\x34\x53\xeb\x99\xbd\xb7\xd6\xac\x70\x37\x7a\x3d\x22\x0d\x1e\x46\x8f\x1b\x8d\x57\x25\x4c\x9b\x7a\xba\x4f\x9f\x3e\x4d\x45\x51\xd0\x3f\xfe\xe3\x3f\xfa\x32\xc4\xfe\xb8\x47\x80\xcb\xa9\xe6\xbd\xd0\x60\xbb\x70\x5b\xe5\x5d\xba\xb3\x9d\x12\x67\x3b\xf2\xe1\xcf\xb1\xba\x06\x16\xf3\xe3\xdf\x35\xd8\x2e\xfa\xa4\x77\xa7\x2b\x1d\x97\xad\x65\x65\x6f\xe5\xf3\xda\x6b\xaf\x39\x6f\xb4\xb8\xea\xec\x12\xc7\x9e\x43\x07\x4f\xed\x45\xab\xdc\xc0\x75\x85\x71\xc5\xce\xb0\xd8\x7f\xfb\xd0\xf4\xf2\x28\x2f\x6f\xa6\x8e\x60\x2a\xc9\x4d\x08\x64\xf8\x12\x54\x30\x5d\x2e\x8e\x75\x01\x9f\x2e\xa9\x60\x1c\x4a\x72\xc5\x38\xb3\x7b\xd7\xd7\xe6\x17\xcf\x1f\x1b\x3f\xff\xc2\xfd\x7b\x3f\x78\xed\x9e\xf1\x2b\xe3\xcc\xde\x00\xb0\xe7\xe0\xf6\x50\x79\x18\x76\x6b\x0f\x03\x5f\x8c\x3e\x65\x1e\x49\xee\x2d\xb7\x00\xf0\xd2\x4b\x2f\xe1\xd2\xa5\x4b\x54\x97\xa9\x55\x47\x7f\xf4\x47\x7f\x44\x69\x9a\xfa\x32\x07\x1e\xb3\xe9\x9a\xb0\x43\xae\x6e\x9b\xa1\x5d\x21\xb4\x29\x2a\xe7\x89\x9b\xef\x0c\x8b\xbd\x2b\x1b\xb3\x77\xae\x6e\xcc\x2f\xed\x0d\xca\xeb\xf3\xc4\x8e\x2d\xa1\xa8\x6f\xc2\xae\xba\x22\x61\xc9\x39\x72\xb6\x24\x94\x8e\x60\x0b\x83\x62\x9a\xda\xf1\xce\x4a\x71\xf5\xd2\xa1\xd9\xab\x3f\x3b\x3e\x7e\xf1\xe5\xfb\xf6\x9f\x7b\xf5\xd8\xf8\xa7\x37\x56\xe7\x6f\xcf\x13\x77\x0b\x95\xc7\x69\x97\x9a\x6d\xcf\x7b\x68\x76\x0a\xb6\xa6\xcb\x50\x9f\x61\xd3\xd0\x59\x85\x9f\xfd\xec\x67\x34\x9d\x4e\xb9\xfc\x70\x79\xe2\x3c\x5a\xf6\x27\x65\xd3\xc8\xbe\x5d\x5a\xe5\xcb\xde\x79\x9c\xfc\x0d\x81\x9d\xe9\x62\xd0\xec\x26\x0a\x17\xc0\x39\xe7\xd6\x01\x6c\x12\xe8\x10\x80\xa3\x9f\x7e\x75\xf3\x37\xde\xfb\xce\xea\x7f\x5e\x99\x99\xa3\xc6\x35\xdb\xc0\xf8\x4a\x72\x12\x71\xde\x5a\x88\x1d\x6b\xbc\x68\xc4\xe8\xb1\x1a\xce\x0a\x9a\x5d\x7b\x0e\x69\xa0\xb4\xd3\x7a\x5b\xcb\x92\x2b\x6e\xae\xcc\x7f\xf0\x83\x87\x76\xff\xf2\xb5\x7b\xc6\xcf\xce\x12\xbb\x5d\x0b\xc2\x88\xda\xeb\x04\x42\xc7\xd1\x71\x63\x74\xd7\xe8\xa9\x2b\x1c\x04\xf6\xa0\x69\x6e\x07\xf7\xcf\x83\x8e\xff\x1e\xb4\xfc\x47\x0c\x4b\xcb\xcc\xda\x9e\x4c\x07\x00\x6c\x24\xda\x8e\xd7\x60\x7b\x04\x2b\xf0\x71\xfc\xad\x6f\x6c\x2d\x4e\x08\x5c\xf6\xd7\xd7\xd7\xcd\xde\xde\xde\xed\xc8\xbb\x84\xef\xd2\x59\x77\xeb\x39\x16\x87\x25\xb0\x7d\x68\x8d\x85\xbb\xc1\x93\x3e\xe5\x42\x0f\xfa\x02\xdc\x70\x38\x34\x93\xc9\x84\x7b\x5c\x8c\xf8\x0b\xa7\x38\xd7\x4b\x04\x56\x51\xf5\x03\xab\x00\xd6\x01\xac\xc2\x61\x1d\xc0\x90\x80\xd5\xac\xa4\x43\xeb\xd3\xf4\x9e\x13\xbb\xd9\x89\x93\xbb\xf9\xa9\x7b\xf6\xf3\x93\x1b\xd3\xe4\xe8\xa0\xa0\xd5\xc4\x51\x6a\x1c\x19\xb2\x48\x0d\xd3\xfa\x7e\xcd\x86\x83\x83\x35\x28\x0a\xe3\x8a\xb9\xb1\x93\x49\x66\xf7\x6e\x0d\x8b\x1b\x97\x0f\xcd\xde\xb8\x74\x78\x7a\xf1\xe6\x4a\x71\x63\x96\xda\x5b\x65\xb5\x00\x77\x0f\xd5\xaf\xf7\xb4\xec\xd5\x6b\xb6\x82\xc7\x05\xed\x6b\x27\xbc\x61\x01\x22\xea\xd2\xdb\x21\x3c\xf5\xd4\x53\x66\x73\x73\x93\xf3\x4c\xf2\x25\x85\xb8\x1c\xb5\xe6\xcb\xaa\xab\xee\x1d\xab\x78\xe5\xb0\x0a\x60\x98\x38\xac\xa6\x25\xad\x0d\xca\x64\x75\x63\x92\x1c\xba\x67\x3f\x3d\x7a\x74\x94\x1d\x5b\x9f\x26\xeb\xc3\x22\x59\x4d\x2d\x0d\x13\x07\xe3\x00\x14\xc6\x15\xb3\xc4\x8e\xa6\xa9\x1b\x4d\xd2\x72\x72\x6b\xa5\xd8\xbe\xb6\x3e\xbf\xb6\x3d\x2c\xb6\x27\x99\xdd\x2b\x8d\xdb\xb7\x84\x89\x83\x1b\x81\xed\x14\xac\x7f\xc3\x51\x07\x35\x4f\x5a\x8b\x72\x19\x3f\x80\xbb\xd7\x87\x75\xca\xa6\xb6\xab\x28\x96\x10\xe2\x39\xe6\xe6\x51\x03\x57\x60\xe2\x2f\xb8\xce\x50\x9d\x77\x52\x5c\x5f\x9d\x5f\x9e\x26\x76\x6f\x48\x66\x93\xe7\x2d\x17\x86\x37\x06\x86\xe3\xc6\xe5\x42\xf0\xbe\x90\x36\x58\x07\xbc\x3f\xcf\xc5\x1b\x2b\xe1\x68\x5c\xa5\x5c\xf0\x46\xcc\xe2\xb1\xcc\x04\xa4\xc3\x79\x72\xf2\xd8\x7e\x76\xdf\x95\x8d\xd9\xfa\x7c\xd5\xed\x01\xad\xdb\xa2\xbd\xd0\x06\xa5\xfe\xc5\x2f\x7e\xd1\xdc\x86\x8b\xcd\x07\x4d\xe1\xf4\x15\x8e\x58\x5e\x5d\xb0\xb7\x63\x28\x1c\x44\xe1\x1e\x44\xa1\xff\x47\x32\x5a\x96\x75\x96\x77\x2b\x2c\xe5\xcf\x33\xcf\x3c\x63\x9f\x7c\xf2\x49\xf3\xfd\xef\x7f\xbf\x75\x24\x3b\x1b\xf5\xfa\xf4\x88\xe0\x08\x71\xb5\x6b\x3f\xfa\x1d\xc0\x82\xd1\xd2\x05\xcb\xd7\xae\x1c\x3f\x7e\xbc\x65\x20\xb1\xe3\xc1\x65\x88\x75\xfc\x3c\x3e\xd6\x56\x34\x65\x18\x83\xb5\x11\x18\x08\x18\xfe\x2b\x69\xd0\x8c\xbe\x65\x03\x41\xf9\x2d\x3a\x20\x8c\xe0\xd1\xf4\xf6\x32\xfa\x39\x1e\xf9\x3d\x66\xb8\x6a\xb0\x98\x4c\x26\x00\x80\x7f\xff\xf7\x7f\xc7\xfb\xdf\xff\x7e\x78\x6f\x04\x9b\x4a\xf1\x53\x24\x2d\xd9\x6b\xf5\x0f\xe1\xba\x08\x14\xb3\xc4\xce\xb6\x57\xe6\x93\xbd\xbc\xd8\x7e\x6b\x73\x7a\x69\x63\x9a\x1c\x3a\x3a\xca\x8e\x1d\x19\xa5\x9b\xab\xb3\x64\x7d\x58\x98\xd5\x41\x61\x56\xf3\xc2\xe4\xc6\x21\x75\x54\x5d\x3f\x61\xe1\x6c\x61\xdc\x6c\x9c\xdb\xd1\xde\xa0\xd8\xb9\x35\x2c\x6e\x6c\xaf\x94\xdb\x3b\xc3\x62\x67\x3f\x2f\xb7\x67\x89\xdd\x2f\x0d\x46\x0e\x61\x5a\x68\x42\x08\x87\xcb\xf9\xed\xfd\xdc\x68\xd1\x6e\x83\x96\xc6\xb7\xa6\x7f\x43\x7d\x7c\xed\x6b\x5f\xb3\x9f\xfb\xdc\xe7\xcc\x89\x13\x27\xb8\x87\xd1\x87\xa2\xe6\xc3\x04\x6d\x0f\x14\xea\xf7\xe6\x46\xea\xea\x62\xd2\x61\x09\x37\x29\x53\xec\xcd\xd2\x62\x38\xca\xca\xeb\xd7\xd7\xe6\x97\x33\x3b\x19\x66\x05\xe5\x99\x35\x79\x62\x29\x35\xf5\x72\x8b\x82\x5c\x51\x24\xae\x98\x27\x76\x56\x12\x8a\xd2\xb8\xd9\x3c\x71\xfb\xa5\x71\x13\x07\xcc\x40\xfe\x22\x53\x0a\x07\x4b\xba\xe6\x0c\xa6\xd6\x0d\xed\x9c\x1f\x68\xae\xdf\xf0\xfd\xb8\x26\x27\x77\x4b\xef\x05\x07\x48\xd7\x1a\x97\x58\x27\x25\x09\x59\xda\x10\xfd\x3d\x16\x62\x34\x66\xd1\x5e\xa4\x17\x18\x71\x6d\x6d\x7e\x65\x94\xdb\x1b\x1b\x53\x77\xb2\xd9\x16\xb7\x68\x39\x34\x6b\x68\x5b\x37\x57\x2c\x7a\x42\x1c\xb5\x5d\x88\x22\x48\xf8\x70\x05\x38\x1a\x4b\x49\x5d\x37\x13\xac\x96\xc5\xad\xda\x7e\x41\x58\x56\xd2\xd1\x7b\x46\xd9\x43\xeb\xd3\xe4\xe8\xf6\x6a\x71\x0d\xf5\x76\x37\x08\x8b\xbb\x6e\x00\x81\x7f\x0f\x3f\xfc\xb0\x79\xfd\xf5\xd7\x63\x0a\x4b\x6d\x18\x3d\xbe\x71\x98\x2e\x25\x08\xe5\x7b\x17\x0d\x1c\xa7\xcc\x5f\xa6\x8d\x29\xd5\xd8\x28\xaf\x8b\xf6\xdb\x51\xe6\x5d\xdf\xfb\xa6\x91\xb4\x6a\xf4\x76\x75\x38\x5d\x79\x1f\x74\xd4\x2f\xf1\x42\xc0\xe1\xfb\xdf\xff\xbe\x05\x80\x7f\xf8\x87\x7f\xc0\x1b\x6f\xbc\x61\x1f\x7d\xf4\x51\xf3\xab\xbf\xfa\xab\xbc\x5d\xf2\x9b\xa7\xa5\x07\x46\xe5\xaf\x6c\xcb\x6c\x3d\x4c\x80\xe7\x38\xfd\xbb\x34\xca\x1f\x7a\xe8\x21\x53\x96\x25\xde\x7a\xeb\x2d\x4d\x2e\xb4\x67\x49\x1b\xff\xd6\xc7\xcb\xc1\xe3\x62\x9d\x72\x9f\xce\x88\x3f\x4b\xfa\xba\x9e\x65\x39\x25\xdd\x7d\x70\xcb\x72\x6b\x46\x96\x2c\x67\x17\x8d\x32\xef\x2e\x9a\xb4\x72\x2c\xa4\xfd\x2f\xff\xe5\xbf\xd8\xc7\x1f\x7f\xbc\xd5\x3e\x98\xbc\x14\x61\xba\xbe\x92\x0d\x79\x29\x5f\xb8\x39\x19\xa0\x59\x09\x37\xb3\x19\x46\xb3\xb4\xbc\x35\xca\xcb\xeb\x37\x57\x8a\xab\xf9\x26\x0d\x53\x4b\xc3\xac\x34\x79\x5e\x2d\xe4\xcd\x53\x4b\xa6\x24\x67\x4b\x03\x6b\xc9\x15\xa5\x71\xc5\x34\xb5\xb3\x59\xe2\x26\xf3\xc4\x8e\xe6\x89\x1b\xcf\x8d\x9b\x58\x0a\x5e\x83\x09\xa1\xf1\x2e\xd4\x46\x03\xf7\x2c\xf8\x2b\x30\xb8\xd1\x12\x2e\xf5\xf4\x65\x7a\xe6\x99\x67\xec\xc6\xc6\x86\xd9\xdd\xdd\xed\xd2\x5f\x06\x00\xbe\xfe\xf5\xaf\x5b\x36\x95\xd6\x32\x7c\xea\x32\xfb\xe7\x66\x40\xdf\x1c\xa3\xef\xcf\x5e\x1a\xd6\x74\x4d\x00\xe4\x0e\xc8\xe7\xc6\xe6\x45\x42\xf9\xc4\xb9\x94\x72\x32\xe4\x60\x08\x48\xfd\xa4\x9f\x23\xc0\x11\x0a\x57\x19\x86\xfc\x66\xf5\xca\x10\x71\xcd\x2e\x41\x54\x46\x9b\xdf\x21\x18\x6e\x67\xaf\xd7\xb4\x14\x9c\x26\xcf\x0b\x6f\xb4\x14\x45\xb1\x4c\x7e\xba\xe4\xb4\x4b\xd6\x5a\x32\xb7\x6c\xaa\x48\xc6\x69\x8a\xba\x57\x47\x52\x8f\xf6\xf8\x9f\x77\x19\xae\xd6\x7f\xeb\xce\xb9\x4d\x22\xda\x5c\x99\x99\x13\xbf\xfc\xea\xe6\x67\x1f\xb9\x39\xfc\xc4\x70\x6e\x36\xa9\xc3\xea\x68\x79\x51\x5c\x63\x30\xf4\x0a\x91\xd9\x22\xbe\x33\x49\x9b\x16\xe2\x6b\x64\xb4\xa9\xa2\x6a\x3a\xab\x82\x29\xc9\xcd\x6e\xae\xcc\xff\xeb\xf3\x0f\xec\xfd\xdf\xaf\x1c\x1f\xfd\x60\x5a\x4f\x17\xa1\x6a\x2c\xea\x85\x5d\x7d\xdc\x8e\x4a\x38\x88\x65\xdb\xd7\xa0\x59\xd6\xb9\xff\xff\x3d\xdc\x69\x59\x6f\x37\xfd\xdd\xa8\xcb\x03\x87\xcf\x7c\xe6\x33\xe6\x1b\xdf\xf8\x86\x05\x16\xa7\x98\xe4\x14\x50\x57\xe0\xf2\xfb\xf4\xd3\x4f\x1b\xef\x55\x79\xec\xb1\xc7\x0c\x00\xfc\xf4\xa7\x3f\xb5\xf7\xdd\x77\x9f\x79\xfb\xed\xb7\xa3\xa3\xd3\xbb\xf8\x8c\xdb\x4c\xd7\xf5\x2c\xe9\xbd\x1d\x03\xb3\x6f\x3e\xe8\x01\x7b\x3b\xb8\xfb\xf2\x87\xbf\x1f\xb4\x9c\xfc\xfc\x12\x03\x04\xaf\x9d\x41\x75\x08\x9d\x1f\xc4\x85\x5b\xcb\xd1\x4c\x91\xf8\x65\x04\x43\x1f\xcf\x60\x72\x57\x5d\xc4\x9b\x12\x90\x1a\x07\x63\x2c\x65\xc6\xc1\x38\x02\x2c\xc1\x3a\xa0\x74\xe4\x6c\xd5\x59\x3b\x7f\x33\xf5\xac\x31\x88\x5a\x1e\x84\x11\x33\x04\x96\x4d\x87\xb4\x16\xa2\xbe\xf8\xe2\x8b\xf8\xde\xf7\xbe\xd7\xbb\x1e\x1e\x7c\xf0\x41\xf3\xe6\x9b\x6f\xb6\xa6\xd2\x18\x7f\x5a\x7d\x63\x8c\x3f\x82\x57\xe1\xd2\xd4\x3a\x3e\xe0\xf0\x1e\x52\x6e\x58\x10\xbf\xf0\x94\x5d\x7c\x59\x97\xdd\x2f\xb8\xf5\x8b\x6f\xc3\xa2\x64\xc1\x87\xe0\x70\xa8\xcb\x67\xb9\xf7\xf4\x36\xe4\xa4\xab\x6f\x51\x0d\x19\x12\x09\xfb\x84\x03\x67\xfe\xf9\xcf\x7f\xde\xe4\x79\xce\x5d\x83\x5e\x68\x7d\x45\x0c\x89\x68\xdd\x39\x77\x88\x88\x36\x8d\xc5\xd1\x8f\xbf\x7e\xe8\x57\x1e\xbf\xb2\xf6\x9f\x37\xa6\xc9\x49\x79\x0c\x34\x0f\x8b\xde\x12\x7f\xf6\x0a\x9a\x05\x5b\x68\xcf\x24\x2d\x7a\x64\xda\x11\x0b\x38\xe1\xd0\x32\x9e\x02\xc0\xa2\xe9\xc2\x0d\x1d\xff\x32\xca\xca\x0b\x3f\x3b\x3e\xfa\x7f\x7e\x74\xdf\xfe\xff\xfb\xce\xda\xec\x22\x33\x5c\x9a\x4b\xed\x98\xe1\x02\x00\xdf\xfd\xee\x77\xf1\xd2\x4b\x2f\x75\x29\x97\x65\x21\x66\xf9\xf7\x49\x77\xa7\x1d\xa1\x66\x45\xff\xf7\x30\x76\x6e\x27\x9f\x3e\x69\x96\x95\xe7\xa0\xf9\xfe\x8f\x32\xfe\x96\xe6\xfb\xd1\x8f\x7e\xd4\x3c\xf7\xdc\x73\x77\x44\x1b\xc7\x21\xf0\x2d\x33\x84\xfb\x76\xc6\x50\xd2\xc6\xc2\x41\xf2\x59\x86\x43\xe2\xf3\x21\x86\xeb\x6e\x18\x1a\xcb\x46\xa2\x5d\xb8\x63\xf9\xc8\xb8\xae\xb2\x74\x75\x26\x1e\xbe\x93\x16\x6e\xbc\xf0\x4e\xba\xee\x03\x8c\x73\x4e\xbb\xbd\x9c\x77\xd2\x43\xd4\x9d\x37\x83\xf1\x53\xee\x72\x40\x0c\x00\xb2\x93\xb6\xa2\x93\xe6\xde\x05\x7e\xb9\x28\x9f\x0a\x59\x58\xcf\x22\xfe\xf0\xcc\x33\xcf\xd8\xfb\xef\xbf\xdf\x08\x6f\x61\x2f\x39\xfd\xcc\x67\x3e\x63\x4e\x9e\x3c\x09\x00\x7e\xeb\xf3\x82\xf1\xc2\x0c\x17\xcf\x1f\xb9\x3e\x28\x67\xfd\x68\x80\x67\xc6\xa1\x36\xcb\xe1\x8d\x2f\x69\xb8\xf0\x72\xfb\xa9\x20\xc9\x87\x96\xd7\x89\xe1\xc4\xce\xce\x0e\xfe\xfc\xcf\xff\xfc\x20\x72\x7a\x10\x5d\xb0\xd0\x06\xb4\x73\x5c\x96\x85\x18\xac\xef\xaf\x17\x76\x55\xf8\x4b\xb8\xfc\xc1\x44\x35\x33\xa9\xae\x30\xaa\x2b\x27\xab\x99\x9e\x3b\xc2\x60\x7d\x96\x6e\x1c\xdf\xcf\x1f\x59\x9d\x27\x87\x8d\xa3\x24\x2c\x35\x21\x3d\x53\x1e\x4d\xf5\x9e\x66\x7f\xd6\x0a\x31\x23\x06\xb4\xb8\xfa\x5c\x3a\x74\xe4\x41\xbb\xfc\xce\x87\x66\x3b\x1e\x2d\x4c\x60\xb5\x93\xb9\x90\x96\x40\xc6\x92\xbb\x75\x6b\xa5\xb8\x78\x73\xb5\xb8\xee\xe0\xfc\x01\x5c\xad\x4b\xe3\x18\x0a\xf7\xcd\x6f\x7e\x53\x76\x8c\xdc\x6c\xf2\xef\x5d\xbb\x51\x80\xa6\xb2\x63\x75\xa6\x7d\xf3\x2b\xb9\xb5\x55\xdf\xb1\x38\x89\x4b\x3a\xab\xba\xe8\xd4\xbe\xc9\xf2\xc5\xe2\x65\x59\x34\x9e\x75\xe1\x69\x66\x18\x17\x71\x6a\xe5\xf1\xef\x92\x66\x99\x6f\x6c\x47\x0b\xc7\xa3\xd1\xc2\xe3\x65\x19\xb4\xfa\x8e\xc5\xc7\xde\x35\xba\x38\x2e\x77\xf9\xf2\xe5\x2e\x5e\xf0\x32\x44\xf3\x61\x38\xcc\xe5\xcb\x97\x2d\x4b\xc7\x69\x40\x24\x4e\xa3\x91\x97\x93\xbf\xc7\xe0\x39\x6f\x64\xe7\xcf\xeb\x5c\x96\x25\x86\x07\x02\x9f\xcf\x97\xbf\xcb\xba\x92\xdf\x64\x5b\x34\x68\xd3\x27\x65\x31\x96\x9f\x26\xb7\x5a\xbb\x94\x65\xd3\xe2\x39\x6f\x38\x2d\x3c\x9d\xd6\x76\x2c\x16\x69\xd4\xe0\x09\x80\x93\xf7\x6c\x01\x68\xed\x2a\xaa\x3b\x56\x79\xe8\xa0\x75\xcd\x81\x66\x7e\x6a\xc2\x5f\xe2\xe7\xcf\x09\xf2\x06\x87\xbf\x92\x62\xec\xaa\x63\xf9\xfd\x3d\x5a\x23\x54\x3b\x82\xf6\xd1\x1c\x9a\xe6\x6f\x34\xde\x47\xb3\xe8\xd4\x1f\xe3\x3f\x86\xb8\x7a\xa2\x2e\x5b\x41\xcd\x6e\x3c\x5f\x17\xd8\xdc\xdc\xa4\xd7\x5f\x7f\x1d\xf5\xce\x19\xc9\x63\x8b\x76\x5d\xb5\xe4\x6a\x3a\x9d\x62\x6d\x6d\x0d\x6b\x6b\x6b\x20\x0a\x3d\x4e\x38\xb7\x88\x9a\x9d\x7d\x9e\x67\x05\xe3\x4d\x51\xf3\xa1\xa0\xea\x1c\x24\x7f\x4f\xd0\xb4\xe6\x51\xb8\xa6\x83\x4f\x7b\xa1\x7d\x09\xaa\xe7\xcf\x88\x9a\x2b\x3a\xc2\xad\xec\xcc\x88\xf3\xfc\x2e\x6b\x7e\x84\xab\x0d\xfc\x14\xf3\xad\x5b\xb7\xf0\x17\x7f\xf1\x17\x5d\x72\x2a\xe5\x4d\xb6\x0d\x40\x6f\x0b\x52\x57\x78\xb9\x0b\x6b\x5c\x0e\x3a\x02\xe1\xc1\xa7\x95\x16\xd3\x02\x3e\x6f\xf9\x89\xf9\xbd\x96\xeb\xaa\xae\x80\xd9\x8d\xd5\xf9\x3b\xfb\x79\x79\xe3\xc8\x38\x7d\xc0\x38\xca\xfd\x99\x83\xdc\x00\xa9\x7d\x21\x4d\x4b\x77\x4d\x1e\xcc\xd6\x68\xd2\x04\x42\xda\x06\xc6\xc2\x2e\xa4\xf0\xbd\xca\x88\x7b\x6c\xfc\x99\x00\x8e\x8b\x6a\x83\x96\xd5\x5a\x93\x49\x62\xb1\xba\x31\x4d\x1f\x3a\x32\xca\x1e\x5c\x99\x4f\x5f\x1b\x65\xe5\x04\x95\xe5\xec\x5d\x6e\xfe\x4c\x03\x95\x6f\x4a\x9c\xe7\x75\x9f\xd1\x64\x57\xbd\x2e\xcb\x2b\x96\xb6\x6f\xba\x3b\xc1\xef\x05\x56\xca\x94\xc1\x62\x19\xb5\xf2\x6b\x7c\x59\x96\xaf\xc4\xc7\x71\xc5\x82\x56\x37\x5d\xbf\x9d\x23\xb1\x8e\x7c\x8d\x78\xe6\xf8\x34\x39\x40\x04\x5e\xab\x9b\x58\x1a\xff\x2d\x96\x46\x83\xd1\xea\xab\xab\x8c\x1a\x0d\x31\x9e\x76\xa5\x5f\x18\x95\x75\xc0\x77\xb5\x97\x65\xf0\x1a\x1c\x96\xc0\x1e\xb4\xbc\x31\x7c\x07\x6d\xcb\xcb\x78\x22\x7f\xa5\x1c\x75\xc9\x40\x4c\x8e\xd5\x36\x73\xf6\xec\xd9\x85\xb3\x5d\x98\x37\xc0\x2f\x4c\xf5\x5b\xf0\x53\xde\x17\xa0\xed\x6d\xe0\x5e\x08\x43\xcd\x7a\xc1\xd8\x55\x14\x16\x8b\xeb\x28\x5b\x87\x23\xfa\x77\xf6\x9d\xc3\x5b\x60\xe1\x0c\xa2\x3e\x67\x94\x68\xbc\x09\xef\x17\x2e\x5c\xc0\x85\x0b\x17\x00\x54\xd3\xa9\xc4\xd6\xba\x50\x73\x2d\x40\x4b\x97\xd5\xf1\xbe\xbc\x69\x3d\x85\xe3\xa7\x87\x52\x60\xe1\x6c\x1c\x53\xe3\x6b\xd1\x44\xcd\x39\x32\xc1\x30\x03\x5b\x47\xa3\xc4\xb7\xae\xee\xe0\x65\x65\x46\x8b\x94\x95\x98\xbc\x4b\x1d\x1e\xd3\xe3\x32\x5d\xab\x3f\xd0\x3c\x2e\x5d\xa3\x0f\x0d\x8e\x8f\xd0\xba\x46\x7e\x60\x56\x77\xb8\x5c\x0a\x15\xb3\xfd\x8d\xa1\xc1\x15\x66\x0d\xd2\x13\x7b\xd9\xa9\xcd\x49\x76\x2a\x2b\x69\xb5\xb2\xd0\xbd\xb7\x24\xdc\x0a\x04\x8f\xc4\x63\xab\xec\x61\xe6\x1e\x63\x0b\x03\xb9\x01\xd2\x04\x5a\x28\x85\xb6\xf3\x48\x26\xf3\xf4\xf8\x2c\x5a\x78\x5d\xf3\x50\x79\x7f\xc8\x10\xc1\x15\x89\xbb\xbe\x3b\x28\xdf\xda\x19\x16\xb7\x6a\xe1\xf0\x47\xad\x7b\xcb\xda\x8f\x38\x1c\xbb\x74\x71\x81\x8f\x8c\x24\x4d\x40\x62\xde\x15\x74\xe0\x3a\x48\x7c\x17\xfe\x3b\x0d\xc2\xbc\x5c\xf0\xd6\x80\xc5\x49\x4f\x82\xc4\xa1\xf1\x25\x46\xbb\x2c\xa7\xf4\xb4\xdc\x4e\x88\xf1\x34\xe6\xb9\x91\x30\x12\x8f\x46\x9f\xa7\xd1\xb2\x78\xe9\x2d\xb0\x1d\xf9\x68\x6d\x9b\xff\x76\x79\xb7\x1c\xe2\xf5\xc3\x43\xcc\x2b\xd7\xa5\x73\x7c\x9c\xed\xf8\x2e\xbd\x02\x5c\x5e\x62\x5e\x13\x59\xaf\x5d\xc6\x09\x29\xf0\xb2\x0c\xfe\x9b\xc4\xad\x79\xc2\xfa\xe8\x52\x59\x7e\xc9\xdf\x3e\xed\x94\x3f\x4b\x2f\x55\x97\x3e\xe1\x65\xd0\x64\x40\x2b\xb7\x65\xcf\x1a\x3f\x5b\xf9\x30\xaf\x7b\xc8\x83\x0d\x66\x5b\xb7\x9b\x7b\xef\x0b\xda\x8b\x40\xfd\xe2\x54\xee\x75\xf1\x17\x1e\xce\x50\x79\x18\x5a\xde\x06\xa0\x75\xd7\xd0\x18\xec\xd8\x7e\x62\xb7\x3c\x33\xaf\x85\xbf\x96\x85\x9f\x4b\x62\x01\xb8\xb3\x67\xcf\x86\x5b\x9f\x05\xef\xbb\x78\xdb\xa5\xab\x00\x00\xef\x7a\xd7\xbb\xe8\xab\x5f\xfd\xaa\x95\x5e\xa9\xb0\x96\xd2\xb9\x16\x6f\xd0\x5c\x9a\x6a\xc1\xae\xcf\x20\x22\xff\xec\xff\xa6\xdc\x3b\x85\xf6\x45\xa9\x53\xd4\x17\xa3\xa2\xb9\xa2\x23\xe0\x61\xde\x15\xff\x5b\xd6\xf5\x11\x16\x14\x9f\x3d\x7b\xd6\xbe\xfc\xf2\xcb\x5c\xd6\x62\x6d\x49\xf3\xe2\x69\x6d\xaa\x4b\xdf\x70\x1d\xd7\x1a\xc5\xf9\x10\xb5\x12\x23\x88\x62\xa3\xc2\x56\x78\xea\xa9\xa7\x82\x55\xec\x9a\x43\x75\x00\xc0\x2f\x1c\x0a\x16\x1e\x80\x62\x96\xd8\xc9\xf6\x4a\x79\x79\x92\xda\x1d\x57\x2d\xb6\x02\x1c\xea\xc3\xe5\xea\x13\x14\xe1\x2f\xe1\x72\xe1\xbf\xbf\x9b\xc2\x07\x47\x04\x48\xa3\xc5\xa1\x4e\xef\x5b\x0f\xc3\x4d\x35\x8d\x68\x60\xc3\xf5\xcf\x75\x84\xbf\x90\xaa\xa1\x1f\xcd\xce\x09\xff\x17\xfe\x55\x21\x2d\xe9\xd0\xe1\x71\xfa\xd0\xd1\x51\x7a\x32\x71\xd5\xdc\x24\x2a\xa3\x2d\x8c\x18\x80\xd6\x91\xd8\x00\x80\xd5\xd5\xd5\x2e\xde\x6a\x23\x6f\xed\x59\x4b\xc7\xe1\x6c\x04\x5e\xb3\x76\x25\x7e\x8d\xbe\x98\x1c\x74\xc1\xc4\x68\xd2\xf2\x5a\x86\xbb\xcf\x77\x8e\x57\x96\xd3\x3f\xc7\xf8\xa2\xe1\x58\x46\xc3\x32\x9e\x69\xf1\x1a\x0d\x32\x4d\x6c\x14\xde\x35\x3a\x97\xb8\x63\x6d\xd8\x42\xa7\x51\xc2\x4b\x1e\x68\xf2\x22\xf3\x96\x65\x8c\xd1\x26\xe9\x5a\xc6\x73\xad\x0e\x3d\xcd\x52\xb6\x78\x9c\xcc\x23\xf6\x4d\x96\x41\xb6\x3f\x2d\x3f\xad\x9c\x9a\xfc\x49\xc5\x1f\xcb\xbf\x8b\x26\xfe\xac\xf1\x70\x99\x3c\x2d\xcb\x8f\xd3\xbc\x4c\x7f\xb4\xf0\x27\x49\x62\xb6\xb7\xb7\xf9\x2e\xb3\x05\xbd\xcf\x46\xfc\x33\x6a\xef\x6c\xf1\x27\xb7\xee\x39\xe7\xf6\x88\x68\x07\xc0\x0e\x80\x1d\x22\xda\x71\xce\x6d\xfb\xb8\xfa\x79\xdb\x39\xb7\x03\x60\xcf\x39\x17\x4e\x7e\xf5\xd3\x23\x4e\x6c\xf5\xa5\xe6\x24\x58\x79\x88\xa2\x75\xce\xc1\xda\xaa\x6a\x7e\xff\xf7\x7f\xbf\x4b\x1f\x48\x7e\xc5\xf8\xda\xc2\xf1\xd7\x7f\xfd\xd7\x16\x58\xf0\xe2\xb4\x3c\x23\xb5\x21\x51\x38\xe7\x8a\x9a\x4e\x7e\x37\xd8\x84\x95\xcb\x97\x73\x0f\xd5\x34\xd0\x9e\x8c\x03\xdb\xf2\x5d\x2f\xc0\x9d\x38\xe7\xf8\x7a\x4b\xee\x81\x91\x1e\x27\x0b\x00\xa3\xd1\x28\x56\xd6\x65\xba\x40\xf2\x82\x07\x4d\x36\x35\x7c\x0b\xbb\x8a\x24\x01\x5a\x43\xd2\x94\x0c\xcf\xb8\x13\x57\xbd\x50\xcb\xdf\x40\xeb\x17\x16\xf9\x15\xd2\xeb\x00\x0e\x01\xd8\x84\x44\x10\xa6\x1c\x00\x00\x20\x00\x49\x44\x41\x54\xc3\xe6\xc3\x37\x87\xef\x39\x7d\x71\xe3\xb3\xa7\x6e\x0d\x3e\x58\xdd\x16\xdd\xbe\x11\xd3\x87\xc6\x60\x69\x59\xa9\xad\x9d\x3f\x7e\x81\x6d\x35\xc5\x23\x60\xf8\x2f\xb0\xe0\x96\x09\x26\xa5\xc8\x38\xe0\xf6\x1e\x1e\xfe\x9d\xdb\x8f\x04\x58\xc0\x8e\xf2\xf2\xb5\x57\x8f\x8d\xfe\xfe\xb9\xfb\xf7\xbe\xb9\xbd\x5a\x5c\x46\xd5\x98\xf8\x1e\x79\xd9\x68\x5a\x77\xb4\x74\x04\x4d\x29\xf6\x49\x77\x3b\x41\x2a\xdb\xbb\x01\x7f\x10\xfa\xbb\x3a\xba\x83\xd0\xe3\x83\x96\xee\x76\xe8\xd1\xda\x4b\x17\x8c\x86\x00\x33\x40\xcc\xbf\xbb\xcb\x98\xb8\xdd\xfa\xed\x03\xdb\x45\xfb\x41\xc3\xed\x96\x71\x19\xbe\x18\x7c\xcc\xf0\xea\x23\x23\x9a\x11\xd3\x45\x67\x9f\x7a\x94\xf9\xcb\x8e\x7e\x19\x5d\x7d\xe5\xfb\x20\x72\xd7\x17\x57\xd7\xbb\x0f\x7d\x64\x49\xc2\x45\xeb\xda\x2f\xdc\x85\xef\x90\xf4\x43\xeb\x0c\xd0\x5a\xcc\xeb\xfb\x0f\x03\x20\xec\x58\x52\xf2\xb6\x40\x18\x54\x5a\xd4\xd3\x1e\x40\x38\x91\xb6\xb5\xf0\xd6\x77\xce\xae\x39\x1e\x20\xa6\x83\xbb\xf8\xd5\xb7\xad\xab\x71\x7f\xfc\xc7\x7f\x6c\xbe\xf2\x95\xaf\xf0\x69\xb5\x70\x7e\x92\xb6\xe8\x56\xf0\xa2\x35\xf0\x75\x8b\xe7\x2e\xf1\x45\xcb\x9c\x3f\x0b\x37\xb9\xb3\x78\xce\x4f\x69\x5c\xf5\xa9\xeb\xdb\xd5\x5d\x9d\xf2\xad\x1d\xf9\xef\x83\x74\x37\x03\x8b\xee\x1d\xcf\x15\x8b\xb8\x9b\xc7\xe3\x0a\x5b\x2c\x6b\x5f\x21\x31\xa6\x26\x6c\xba\xc8\xdf\x16\x9d\x59\x72\xc9\xd1\xfd\xec\xde\xc3\x93\xf4\xde\xcc\x9a\x55\x7f\x18\x1c\x5f\x3f\x12\x82\x8f\xaa\xcf\x5c\x09\x2e\xc8\xf0\x99\x02\x0c\x5f\x6b\x03\xc7\xd2\x71\xef\x4c\x1b\x75\x98\x8a\xf2\x85\x21\xf6\x2d\xac\xa7\xe1\x42\xe2\xbd\xa1\x35\x3e\x83\xea\x5c\xbb\xd2\x60\x67\x6f\x50\xbe\x71\x63\xad\xb8\x89\xe6\x12\xbb\x39\xe3\x63\x98\x2e\x22\x22\xac\xaf\xaf\xd3\xeb\xaf\xbf\xbe\x6c\xba\x62\x99\xbb\xfe\x4e\x83\x41\xdb\x15\x7c\x10\xfc\xda\x74\x82\x06\xd3\xf5\xbe\xec\xdb\xed\xd0\xd3\x45\xd7\xed\xd0\x23\xa7\x05\x96\xc1\x68\xb0\x31\xb8\x3b\xa9\xdf\x3e\xb0\x5d\xb4\x1f\x34\x74\x95\x91\x2b\xa1\xbe\xf9\xc8\x29\x88\x2e\xdc\x9a\x1b\x5a\xa3\x8b\xc3\xc6\x68\x92\x53\x3f\x1a\xbc\xc1\x62\x9d\xf1\x29\x5c\x3e\x55\xb7\x2c\x5d\xac\x3c\xb1\xb2\xf3\xf4\xb2\x3c\x9c\x16\x8d\x3f\x66\x49\x3a\xc9\x2b\x5f\x86\xd8\x94\x99\xcc\xd3\x2a\x71\x0b\xf5\xed\xb7\xca\x9f\x39\x73\x86\xbc\xbe\x03\xda\x37\x9c\xa3\x3d\x2d\x52\x52\x75\x89\x9f\xbf\x0c\x74\x8e\xe6\xb8\x79\xbf\x65\x77\x8a\xea\x4a\x95\x70\xfe\x0a\xd5\x37\x9a\xb3\x29\xa6\xb9\xc7\x83\xe6\xe8\xfe\x30\x5d\x0f\x04\x6f\x90\xdc\xe2\x1b\xe3\xab\x66\x38\xc6\xda\x81\xc6\xfb\x10\x5e\x78\xe1\x05\x07\x54\xd3\x6a\xf5\xd4\x91\xdf\xc8\xe2\x17\xec\xc2\xf3\xc3\x1b\x15\x75\x59\xf8\x19\x33\x3e\xce\xef\x02\x6a\xdd\xde\xec\xa7\x7f\xd0\x5c\x41\x63\x19\x5f\x7d\x3d\xf8\x3c\xdc\x33\xcf\x3c\xa3\x4d\x91\x79\x3e\x48\xfe\x2c\x6b\x77\x7d\x07\x45\x31\xf9\x0e\x88\xba\x42\xb0\xbe\xd8\xbb\xfc\xa6\xb9\x77\x78\x08\xef\xd2\x15\x06\x04\x6b\x38\x1c\xf0\x53\xff\x15\x00\x66\x93\xd4\x8e\x6e\xae\xce\x2f\x8d\xf3\x72\xdb\xa1\x3a\x81\xb1\x9a\xfa\x69\x73\x83\x6b\x16\x42\x35\xe5\xd3\xf4\x4c\x0d\xa4\xab\xdf\x9c\x48\xec\x6a\x03\x86\x6b\x3d\x80\xe5\xe1\xda\xef\xc1\x68\x71\x1e\x9e\x16\x17\xf8\x06\xe4\x4d\xc2\xc4\xd2\xfa\xc6\x24\x7d\xe4\xd8\x7e\xf6\x48\x56\xd0\xd0\x39\x97\xd6\x53\x45\xad\x6d\x7d\x7c\x34\xf1\xad\x6f\x7d\x4b\x8e\xdc\x34\xfe\xca\x3f\x19\x64\xbc\xac\x2f\x0d\x37\xff\x16\x1b\xe9\x6a\x79\x1e\xf4\x3d\x16\xba\xca\x12\x7b\xd6\x68\xea\x93\x7f\x97\xdc\x76\xf1\xa6\x8b\x9e\xbe\x79\x75\xd5\x57\x9f\xb2\x76\xe1\xe9\xa2\x43\x7e\xef\x82\xed\xe2\x69\x17\x9f\xe5\xb3\x45\x9c\x8e\x18\xee\xbe\xb2\xe2\x71\x2f\x53\x8e\x5a\x47\xd3\x95\x8f\x6c\x7f\xfc\x59\x2b\x0f\x1f\x25\xc6\x70\xc7\xda\x93\xa4\x51\x2b\x8b\xc6\x67\xcd\xd3\xa3\xe5\x23\x79\xbb\xcc\xcb\xd6\x55\x0f\x5a\x3e\x92\x96\x58\x7d\x18\x22\x0a\xe7\xfb\xf8\xa9\x23\x3f\x2d\x43\xca\xf6\x63\x36\x65\xe2\xcf\xbe\x9a\xb0\x5f\xbe\x66\x85\x6f\x73\x0e\x67\x91\xd4\xe9\xe4\x02\xdc\x42\xc9\x67\xe1\x04\x58\x12\x07\x2b\x42\xe7\xb7\x2c\x7b\x57\x58\x0a\x4b\x44\xfc\x04\xf5\x40\x9b\x9f\xba\xf1\x3c\x12\xde\x13\xef\x45\xe2\xd3\x6e\xad\xa9\x1f\xfe\xce\xbc\x4e\xdc\xe0\xf1\xde\xa8\xae\x73\x9b\x34\xf9\xef\xdb\x47\x2c\xd3\xb3\xda\xf3\x02\xee\xa4\xfe\xa0\x8d\x46\xfa\x06\x9e\x09\x1f\x5d\x2c\x58\xa7\xbf\xfd\xdb\xbf\x6d\x36\x36\x36\x00\xf8\xf5\x46\xc4\xbd\x2f\x49\xfd\x97\x12\x51\xe2\xaa\x6d\xd1\xf9\xa0\x34\xf9\xd1\x51\x76\xff\xc6\x34\x3d\x9e\x38\x4a\xbd\xcd\x49\x0b\x37\x6a\xb1\x29\x21\xb6\x74\x97\x1b\x14\x21\x5e\x4c\xe7\x78\x63\x87\x6f\x70\x76\x00\xc8\xd5\xb7\x8b\x12\xc2\x1d\x44\x08\xf9\xd7\x79\x91\xbc\x4a\xa0\xfe\xce\xd2\x7a\x78\x00\x09\x39\xa2\x32\xc1\xce\xde\xa0\x7c\x73\x67\xa5\xdc\xa5\x66\x5b\xb4\x1f\x59\xb8\x5a\x80\x1c\x00\x6e\xe5\x76\x8d\xd0\x96\x79\x11\x64\xbc\x13\xf1\x31\xaf\x01\xff\x26\x05\x88\x8f\x26\xb5\x74\x7d\xdf\x63\xa1\xab\x2c\xfc\xd9\x40\xe7\x81\x2c\x63\x17\xde\xae\x91\x82\x36\xea\xed\xe2\x59\x1f\xbc\x5d\x69\x38\x4c\x0c\x6e\xd9\xf7\x18\xbe\xae\xef\x5d\xb0\x5d\x3c\xd5\xe2\x62\x9d\xa2\x7c\xd6\xea\x52\x7a\x28\x44\xcb\x6b\xa5\xe3\x75\x2f\xd3\x4a\x18\x09\xdb\x37\x1d\xb0\xe8\x75\x96\xc6\x4c\x4c\x76\x38\x6e\xa9\x63\xb5\xc5\xbb\x1a\x2f\x38\xfd\xbc\xcd\x69\xb0\x92\x6e\xad\x0c\x8e\x3d\x6b\x3c\x81\x88\x97\xe9\xba\xea\x81\x18\xbc\x46\xab\xe4\x89\x01\xc0\x8f\xca\xe0\x5b\xa4\xfd\x65\x85\xce\xc7\xa3\xee\xa8\xeb\x4f\xfe\x92\x4f\x87\x66\xf1\x68\xf0\xa2\xb0\x5f\x6f\xf4\xf8\x4e\xb9\xac\xd3\x97\x35\x6e\x07\x34\x5e\x1e\x9f\xed\xd9\xb3\x67\xed\x4f\x7f\xfa\x53\x9a\xcf\xe7\x9c\x3f\x84\x45\x7e\xdf\x6e\x3d\x68\xf5\xdb\xaa\xd7\x95\x95\x15\xf3\xfd\xef\x7f\xdf\xfa\xed\xe4\xb5\x57\x2a\xf0\x87\xd5\x91\x37\x00\x1d\xe3\x8d\x36\xfd\x13\x64\xb1\x86\x2d\xd9\x73\xf0\xb4\x70\x9e\x2c\x99\x26\xd3\xca\xcb\xf9\x24\x65\x28\xe6\xa1\xd1\xf4\x2b\xff\x2e\xf3\x77\xa2\xbb\xed\x0c\xd2\xca\xea\x63\xad\xab\x30\xe2\x14\xdd\x14\xcd\xa9\x7f\x7c\x9d\xcb\x21\x38\x6c\x6e\x8e\xd3\x53\x1f\xbe\xb4\xfe\xab\xef\xbd\xba\xfa\x8b\xab\xb3\xe4\x98\x36\x4b\x74\x37\xc2\x92\xeb\x8e\xc4\x56\x3b\x04\x63\xa6\x39\x23\x46\x20\x70\x40\x30\x6c\xe0\x67\x8e\x1c\x4a\x83\xd1\xcd\x95\xe2\x47\x3f\xb9\x77\xff\x2f\x9e\x7d\x60\xf7\x7b\xd6\x60\x07\xed\xb5\x2e\x7c\xa1\x9a\x05\xb0\x6c\x9d\x4b\x9f\xba\xe8\x0a\xb7\x93\xe6\x7f\x87\xff\x35\xc2\xdd\x90\x8d\xbe\x46\x4c\x97\x5e\x39\xa8\x8e\xb9\x1d\xaf\xcb\x9d\x3e\xdf\x2e\x4d\x3f\x4f\xdc\xcb\xd2\xde\x09\x4d\x07\xad\x4b\x44\xe2\x2d\x00\x1c\x3b\x76\xcc\x5c\xbb\x76\xcd\x02\xed\x53\x9b\x95\x75\x1a\xad\x78\xbe\x3e\x11\x00\xd3\xd1\x0b\x5b\xa3\x7d\xfe\x3c\x04\x7a\x3c\xcc\x33\xcf\x3c\x63\x19\x2d\xb7\xcb\xd7\x83\xf2\x47\xc3\xd5\x0a\x1d\xfc\xe1\xa7\x12\xb7\xd6\x6c\x4a\x3e\xf0\x20\x60\x5a\x77\x23\x45\xb6\x7a\x2f\x6b\xa3\xb1\x72\xfc\x5c\xda\x7f\xd7\x1a\x17\x9f\x20\x36\xca\x92\x16\x91\x36\x32\x00\x83\x0f\xa1\x9e\xbb\xab\xd7\xb5\x3a\xaa\x43\xd8\x16\xed\x9c\xcb\x88\x28\x01\x21\x73\x70\xf9\xc6\x34\x3d\x7c\x74\x94\xde\xb7\x5a\x98\xa3\xda\x71\xfe\x7c\x28\xc0\x7f\x21\x9e\x65\x22\x6e\xb6\x35\x5e\x17\x1d\x37\x3f\x84\xce\xdb\xba\xfc\x60\x3b\x07\xe6\x5a\xab\x4b\xeb\xdf\xc3\xa2\x5e\x22\x10\x90\x18\x07\x53\x24\xb8\xb1\xbd\x52\xbc\xb9\x9f\x97\x23\x3f\x07\x89\xc6\x7a\x2e\x7d\x7a\x22\xe2\x5e\x17\xcd\x3a\x97\x73\xf0\x1e\x8e\xc7\x43\xa4\x01\x8b\x8b\x8d\x10\x64\xda\x3e\xb8\x62\xa3\x31\x75\x8e\x3b\x92\x26\x36\x02\xb9\x13\x3a\xb4\xd1\x80\x06\x1f\xcb\x2b\x56\xb6\x65\x69\x64\xfa\x65\x69\xfb\x94\x6b\x59\x19\xfa\x94\xa7\x2b\x6f\xfe\x7e\xd0\x7c\xb4\x38\x0e\xef\xdf\xbb\x94\x96\xa7\x13\x68\x8f\xe0\xb5\x72\x70\x9e\x92\x02\x1f\xa3\x57\x1b\x39\x4b\xfa\x20\xe0\xfd\x1f\x22\xcf\x7d\x60\xb5\xfa\xe3\xcf\x52\x7f\x4a\x7e\x4a\x5e\x76\xd1\x21\xcb\xce\x79\xab\x75\x12\x92\x97\x4e\xa4\x93\x9e\x07\x4e\x8f\x16\x2f\x69\xb5\x22\x4d\x8b\xa6\xd1\x68\x64\xd7\xd7\xd7\xcd\xbd\xf7\xde\x4b\xff\xfc\xcf\xff\x6c\xa5\x07\x86\xe1\xf4\x1d\x46\xf0\x14\xd4\x71\xdc\x7b\xe2\xb4\x74\x00\xf8\xda\x99\x40\xbb\xf7\x2c\x5c\xbd\x7a\x95\x66\xb3\x19\xed\xec\xec\x78\x7e\xca\x3a\xd0\xf4\x9a\xac\x07\x4d\x0e\xb8\xfc\xf2\x38\xa9\x23\xa4\x9c\x87\x3a\x19\x8d\x46\xa1\x6e\xaf\x5e\xbd\x4a\xef\xbc\xf3\x0e\xbe\xf9\xcd\x6f\x5a\xef\x89\xe1\xbc\x60\x7c\x52\x79\x22\x3c\x37\x41\xbe\xce\x9f\x3f\x8f\x1f\xfc\xe0\x07\x38\x7c\xf8\x30\xed\xec\xec\x48\x59\x95\xb2\xc6\xe3\x24\x7f\xa4\x3c\x68\x72\xaa\x79\x58\xb4\xf6\x2f\xf3\x31\x80\xee\x71\xe1\x08\x7c\xb8\x9d\xd1\x90\x86\x13\x40\xcb\xe3\x02\x00\xa6\xf6\xb6\xf0\xbb\x8b\x0e\xa1\xf2\xbc\x6c\x1a\x8b\xa3\x0f\xdd\x1c\x3e\xf6\xe1\x4b\xeb\xbf\xf6\xe0\xf6\xf0\x74\x6a\x29\xe7\xc5\x0d\xc6\x46\xcb\x5a\x71\x8d\x75\xa1\x98\x22\xce\x91\xee\x5d\x11\x5e\x93\x96\x55\x0a\x84\x13\x77\xfd\xbc\x91\x37\x5c\xc0\x92\xe9\x39\xb6\xe3\x0a\x72\x7b\x37\xd6\xe6\xcf\xbe\x74\xdf\xde\xff\xf5\xd2\xa9\xfd\xe7\x51\x6d\xeb\x0b\x37\x91\xd6\x73\xb7\x16\xec\x3e\x88\xdb\xbc\xbf\x88\x87\x3e\xf5\x74\x10\xb8\x83\xe6\xf9\x3f\x22\xff\xbe\xe1\xa0\x79\xf6\x19\x69\xfc\xaf\x14\xba\xca\x2d\xf5\x89\x7c\x96\x30\x31\x1d\x83\x1e\x30\x77\xe2\xb9\x88\xd1\x74\xb7\xf3\xd1\xc2\xb2\xf2\x2f\xc3\x77\x60\x1d\x7c\x80\xef\x7d\xe2\x0f\x82\x7b\x69\xba\xe1\x70\x68\x26\x93\x89\x05\x80\xf7\xbe\xf7\xbd\xe6\x95\x57\x5e\xb1\x40\x38\xa8\x2d\x9a\x09\xf3\x3e\x58\xd7\xe1\x69\xe8\xb1\x53\x73\x99\x7c\xf4\x91\xd3\x3e\xf8\x96\x79\x61\xfa\xb4\x81\x10\xfe\xf0\x0f\xff\xd0\x7c\xf5\xab\x5f\xb5\xfc\x7e\xb0\x2f\x7e\xf1\x8b\x46\xeb\x3b\x38\x0c\xe7\xf1\x92\xb2\x2d\xab\x63\x8d\xbe\x83\x3c\x77\xc9\x1a\xf8\x37\xcd\xe3\xc2\xad\x68\x6e\x19\x2d\xb3\xfc\xbb\x46\x62\xad\x6f\xec\xa0\x9d\x60\x95\xd6\x73\x76\x06\xcd\x1d\x14\xd5\x14\x12\x90\x26\x8e\x06\x87\x26\xe9\xf1\x23\xe3\xf4\x64\x56\x9a\x15\x50\x63\x54\x04\xd1\xf4\x86\x83\x63\x9e\x8f\xb0\x5e\x85\x9f\x8e\x5b\x65\xad\x36\x00\x25\x2e\x78\x4d\x44\x29\xc3\x14\x90\x68\x20\x9a\xc7\xa7\xe5\x9d\xa9\xf9\x40\x8e\x68\x6e\xdc\x3b\x57\x37\xe6\x6f\xce\x52\x37\x61\x73\xb6\xfe\x48\xe5\x96\x45\xaa\xac\xe8\x3e\x68\xe8\xe3\x65\xe0\x45\xe0\x41\x8e\x12\x6f\x27\xcf\xbe\x69\x6f\xb7\x9c\x5d\x65\x5a\x06\x7f\x27\xe5\xea\x13\xff\x1f\x25\x1c\x94\x47\x7d\x43\x17\x4e\xce\x63\xf9\x6c\x44\xbc\xe6\x7d\x70\x1d\x30\x07\x79\x8e\x79\x5c\x38\x3d\x32\x7f\xad\x7c\x31\x3d\xa8\x29\xdc\x18\xac\xd4\x97\x3e\x6d\x5f\xba\xfd\x33\x57\x37\x31\xaf\x40\x5f\x19\x8f\xb5\xef\x3e\x7a\xa2\x4b\xff\x73\x1e\xf7\x4a\x57\x14\x45\x88\xbf\x7e\xfd\x7a\x78\x2e\xcb\x92\xfe\xfe\xef\xff\x3e\xec\x70\x39\x77\xee\x9c\x3b\x7d\xfa\x34\x9d\x3d\x7b\xd6\x7b\x1e\x5a\xf4\xfa\x03\xe3\x3c\xcc\xb9\x73\xe7\xdc\xb3\xcf\x3e\x1b\x2b\x4f\x8c\xcf\x5c\x4e\xba\xea\xc9\xc3\x72\x4f\x4b\x57\x99\xb5\x38\x49\x9b\x84\xd1\xfa\xe2\x10\x5e\x7c\xf1\xc5\xc0\xa7\x2b\x57\xae\x38\x00\x88\xf5\x1b\x1c\x86\xf3\x98\x95\x37\x46\x63\x2c\x70\xfa\xfa\xb4\x45\xe9\x85\xea\x92\xe3\x05\xde\x2c\x9b\x2a\x92\x0d\x87\x07\x9f\x79\x4c\x09\xc9\xcc\x83\x00\xb3\xbb\x2b\xbc\xd1\xe2\x89\xf7\x7b\xf5\x09\x40\x56\x4f\x19\xe5\x04\x64\xeb\xd3\x64\xf3\xc8\x28\xbd\x77\xa5\x9e\x2e\x52\xad\x69\xa0\x35\x7d\x03\xaa\x4c\x16\x30\x0f\x4b\xed\x2b\x69\xb9\x40\x2a\xe3\xa2\x6d\x80\x54\x44\xd3\xa2\xe3\x86\x5c\x63\xc5\xb4\xce\x7f\x69\x70\x72\xca\x88\xd1\xe4\x3d\x3a\x04\x32\x06\x94\x3a\xc2\x78\x6f\x58\xbe\x7a\x63\xad\xd8\xa6\x66\x8b\x5a\x58\x40\xc6\xf9\xbb\xb5\xb5\x45\xef\x7b\xdf\xfb\xe8\xa5\x97\x5e\xd2\x14\x9a\xe4\xb5\x16\xb8\xc2\x94\x4a\x94\x94\x6f\x3c\x78\xa1\x6c\xb9\x2f\x23\xf9\x6a\x8a\x39\x06\xdb\x45\xeb\xb2\xb2\xc9\xb8\x65\x74\xf1\x38\x69\xed\x6b\x3c\xed\x7a\x8e\xc1\xf3\x78\xe9\xde\x94\xca\xac\x4f\xd9\xf8\xef\x82\xbb\x74\x09\x0e\x2d\x68\xf5\xce\xf1\x1f\x84\xe7\xb1\x7a\x97\x75\x2f\x69\xe6\xbf\x40\x3b\x7f\xe9\x3e\x8f\x75\xa4\x12\x3e\xa6\x64\x79\x3d\xf3\x74\x60\xe9\x79\x1e\x31\x1e\xc4\xea\xdc\xc3\xf8\xb4\x5a\x1d\xc9\x36\x06\x51\x4e\x9e\x56\x9b\x96\x91\x53\x3c\x9c\x56\xee\x09\x90\x1d\x8f\xc4\x07\x74\xcb\x49\xac\x9c\xb1\x34\x1a\x8f\x25\x2f\x7c\x39\x24\xac\x46\x5f\x8c\xee\x90\x77\xdd\xd1\x1a\x00\xee\x13\x9f\xf8\x84\x79\xe0\x81\x07\xc8\xdf\x66\x9e\x65\x19\xfd\xed\xdf\xfe\xad\xcd\xb2\x8c\xae\x5c\xb9\x82\x6f\x7c\xe3\x1b\xf6\x13\x9f\xf8\x84\xb9\x78\xf1\xa2\x66\xac\x68\xed\x96\xf3\x50\xca\x41\x57\x19\x78\x3a\xde\x27\x4a\x1e\x68\xb2\xa7\xc9\x3d\xff\x8b\xf1\x2a\x56\x06\x02\xe0\xbc\x41\x82\xc5\x3a\x0c\x70\x57\xae\x5c\xd1\xbc\x1d\x5c\x86\x80\xc5\x3a\xe1\x79\x49\x79\x91\x3c\x90\xe5\xe5\x30\x52\xae\x34\x39\x92\x9e\xa7\x16\x6f\xe4\xae\x22\x4d\x70\x63\x0a\x57\x63\xb2\x0c\x5a\x85\xe2\xa9\xa7\x9e\x32\x83\xc1\xc0\xef\x4f\x77\xd4\x1c\xaa\x43\xd4\xdc\xbb\x90\x12\x51\x06\x20\x75\x70\xe9\xa0\x34\xab\x47\xc6\xd9\xf1\x8d\x49\x7a\xaf\x01\x25\x70\x4c\xca\xa8\xb6\x09\x80\x66\xea\xa8\xfe\xe7\x0d\x07\x4e\xb4\x14\x37\x7f\xca\x2d\x3f\x60\x2e\x5c\xc8\x58\xc3\xfb\x59\x24\x7f\x6a\x2e\x51\x63\x3c\xf1\x05\xb8\x8e\xe5\x17\x68\xf2\x4c\xf2\xe7\xc6\x54\x91\xc6\x80\xd2\x79\xe2\xde\x7c\xfb\xd0\xf4\xcd\x92\x30\x73\x70\xe1\xd2\x45\xbf\xb3\xa8\x5e\xa0\x1b\x16\xd9\xbf\xf0\xc2\x0b\x9a\x2b\x4e\xd6\x93\x26\xe0\x5a\x47\xc0\x95\x77\x57\xa7\xa5\x09\xb4\xfc\xc6\xdf\x63\x9d\x81\x26\x47\x5a\xd0\x70\x2e\x83\x59\x46\x17\x8f\x93\x70\xcb\xca\xd5\x05\xaf\xf1\x77\xd9\x7b\x8c\xe6\x18\x9d\xb2\x93\x95\x75\x25\x65\x01\x91\x77\x1f\x34\x7c\x31\x9e\xc7\x46\xed\xb1\x7a\x5f\xc6\x5b\x2d\x4f\x2e\xbf\x16\xf1\xce\x5f\xa6\x35\x22\x3d\xe7\x97\xd4\x49\x72\xa0\x15\xe3\x4b\x4c\xee\xbb\x3a\x35\xfe\x27\x3b\x2b\xb0\x32\x69\x3c\xe7\xf1\x52\x61\xf3\x38\xd9\xae\x35\xc3\x40\x96\xb3\xcb\xf0\xe1\x41\xca\x30\x4f\xc7\xf9\xc0\xe1\x35\x83\x90\x77\xda\x3c\x1d\xe7\x05\x37\xde\x24\x6e\x8d\xcf\x52\x97\x59\x00\xb8\x78\xf1\x22\x5d\xbc\x78\x31\xa4\xbf\x78\xf1\x22\x01\x70\x17\x2f\x5e\x74\x17\x2f\x5e\x74\x00\x0c\xff\x1e\xa1\x9d\xe7\xb9\x4c\x77\x48\x63\x82\x97\x55\x93\x0d\xd9\xd9\x73\x78\x89\x43\x93\x4d\x4d\xd6\x63\x75\x19\x93\x69\x99\x2e\xe6\x68\xe8\xd2\x21\xb1\x36\xcd\x65\x9b\xa7\x8b\x95\x47\xda\x16\x72\x20\xac\x19\xb1\x9a\xfe\x74\x00\x9c\xac\x44\x3e\x45\x61\x95\x38\x28\xb0\xb1\xef\x32\xf8\x82\x9a\xaf\x7d\xed\x6b\x16\x80\x3c\x99\x8f\xef\x21\xb7\xa8\x2f\xc3\x72\xce\xcd\x0a\x83\xd9\xee\xa0\xbc\xbe\xbd\x52\x5c\x9d\xa5\x76\xcf\x01\x8d\x81\x41\xb5\x34\xd4\x62\x45\x4e\xd6\x1d\xd0\x3e\xcb\x85\x05\x02\x5b\xe5\xe3\x6a\x9c\x0e\xce\x49\x0d\xe4\x5a\xeb\x59\xbc\x65\x12\xce\x1f\x90\x74\x84\x3c\x9d\x18\x87\x35\xb9\x13\x90\x0e\x0b\x73\xf2\xc4\x6e\xfe\xc4\x3d\xfb\xd9\x51\xe3\x30\xa4\xe6\xc2\xb0\x70\x42\x22\x35\xa7\x42\x62\x30\x18\xe0\x0b\x5f\xf8\x82\x54\x2a\x5a\xd0\xac\x69\x0e\xaf\x3d\x73\x18\x39\x82\xd2\x60\x62\x38\xe4\x37\x0d\x96\xff\x75\xd1\x24\xe1\x35\xdc\x12\xae\x8b\x1e\x8d\x2e\x8d\x96\x65\x38\x34\xf8\x65\xf9\xf5\x79\x8e\xd1\xc6\xeb\x7b\x19\x8f\xfb\xd0\xc5\xf1\x1f\x94\xce\x2e\xb9\x93\xfc\x8c\xd5\x9d\x86\x43\x93\xb9\xd8\xbc\x7f\x17\x1d\x1e\x9e\xe3\xeb\x2a\xff\x32\x39\x8c\xc9\xbe\x26\x0f\xb2\xbd\xc5\xda\xa1\x56\x46\x59\x86\x65\xdf\x65\xbb\xd6\xda\xae\x4c\xdb\xb7\x3d\x68\xdf\x78\xd0\xea\x83\xa7\x8f\xf5\x07\x5d\xe9\x62\xf4\xf0\xe7\x18\x2f\x62\x3a\x4c\xb6\x9b\x65\x6d\x39\x26\x0b\xb1\xba\x84\x88\xc7\xca\xca\x8a\x39\x75\xea\x94\x01\x60\x4f\x9d\x3a\xe5\x9f\x63\xf8\x0e\xa2\x73\x96\xb5\x85\xae\xb2\xf4\x91\x1f\x0d\x1f\xc4\xbb\x8c\x3f\x48\x19\x38\x7c\xac\xff\x92\xb6\x48\x8c\x76\xd3\x25\x9c\x0b\xc0\x0a\x71\x1a\x9c\x06\x2f\x89\x6a\x79\x2c\x38\x0c\x89\x03\x82\x88\xa8\x70\x70\xb3\x51\x5e\xee\xdd\x58\x9d\x5f\xde\xcf\xcb\x6b\xde\xb8\xf0\x77\x04\x51\x1b\x71\x78\xf4\x76\x82\xbf\x26\x00\x70\x20\x38\x7e\xe0\x51\x6d\xab\x54\x66\x8a\xf3\xe6\x0a\xb9\x16\x6e\xbf\x3e\xa6\xe5\xd1\xa9\xcb\x10\xe2\x5d\x93\x26\xe4\xca\x4f\xe6\x05\xaa\x73\x5d\x02\x71\x84\xc4\x62\xb8\x39\x49\x3f\x78\xea\xd6\xe0\xa1\xd4\xd2\x2a\x1c\xfc\xf5\x07\xf2\x50\xba\xc0\xdb\x3f\xfd\xd3\x3f\xb5\x47\x8e\x1c\xe1\x02\xbc\xcc\xc0\xe4\xdf\xb4\x3a\x91\xe9\x65\xe3\x97\x8d\x26\x66\xc4\x62\xc9\x37\x9e\xc7\x41\x0c\x5e\x09\x1b\xeb\xc4\x63\x46\xb7\xfc\xd5\xd2\x68\xb4\xc8\x34\x92\x4f\x9a\x22\xd1\xd2\xca\x38\xf9\xcc\x83\x6c\xe4\x1a\x6c\x2c\xdf\x65\x65\x90\x69\x35\x7e\x69\xcf\x31\x5e\x6a\xb4\x6b\xf5\x1b\x93\xbd\x58\x58\x26\x1b\x5d\x65\xe2\xef\x50\xe2\x65\xe7\xa3\xc5\x69\xb4\xc4\x64\x45\xc3\xaf\xc9\x62\x97\xec\xc4\x68\xf7\x61\x99\x21\x20\xd3\x4a\xe3\x41\x83\x89\xe5\xdb\x45\x2b\xa7\x47\xd2\xd6\x55\x67\x9a\x31\xb3\x4c\x26\x34\x5d\x13\xd3\x5f\x92\xd6\x65\x3a\x65\x59\x7d\xc8\xba\x8d\xe9\x3f\x0b\x00\x47\x8e\x1c\x31\x5e\x1f\x1f\x39\x72\x04\xe3\xf1\xd8\x5e\xba\x74\xc9\x02\xc0\xa5\x4b\x97\xec\xa5\x4b\x97\xec\x91\x23\x47\x42\xde\xf5\xb3\x4f\x8b\xd5\xd5\xd5\x58\x3d\xc4\x74\x7c\x4c\x47\x74\xc1\x48\x7e\x2f\xd3\x0b\x12\x4f\x4c\x0f\xc4\x68\xd7\xf2\x90\x41\xab\xab\x3e\x06\x96\x05\x60\x49\x00\xc8\x67\x89\x20\x86\xb4\xeb\x77\x21\xfd\xc7\x3e\xf6\x31\xf3\xc3\x1f\xfe\xd0\x8a\xf3\x5c\x0c\x9a\x0e\x7b\x88\x6a\x77\x51\x38\xd3\x25\xb1\x38\x7a\xea\xd6\xe0\x17\x3e\x74\x69\xfd\x3f\xbd\xeb\xfa\xca\x27\x52\x57\xed\x2e\x92\x1b\x88\xfc\xf4\x0c\x9f\xa3\x09\xde\x13\xd7\xb2\x6b\xc0\xd3\xb7\xbe\xb1\x74\x1e\x95\x0a\x0f\x9f\xe7\x22\x64\xf4\xea\x22\x96\x1e\xe4\x60\x81\xc9\x1b\x47\x27\x5f\xfd\xee\x23\x3b\x7f\x7b\x7d\x6d\x76\xb9\x24\xec\x80\x30\x72\xd5\x05\x5a\xfc\xb4\xc7\x50\xd1\xcf\x3c\xf3\x8c\x1d\x0c\x06\x66\x3a\x9d\x42\xa9\x97\x58\xe8\x52\x80\x07\x49\xd3\x55\xcf\x07\x49\xdf\xe7\x7d\x19\xcd\xb2\x21\x6a\xdf\xb4\xef\x5d\x23\x18\xf9\x8e\x08\x6c\x57\x58\x86\x57\xd2\xa7\xd1\xd8\x85\x33\x46\xcb\xb2\x7c\x96\xd5\xd3\x9d\xca\x48\x9f\xfa\xea\x92\x07\xad\x3e\x63\x71\x52\x06\xc1\xe0\xfa\xea\x30\x89\x0b\xca\x73\x8c\x46\x08\x98\x58\x3e\x5d\xf4\x6b\x34\x68\xf9\x6b\x78\xfa\xc8\x6a\x57\x99\xbb\x68\x8a\xe5\x75\x27\x75\x7d\x10\x1c\x1a\x4c\x9f\x36\x75\x10\x1c\x07\xe1\x67\x2b\xf8\x5d\x4f\x7e\x67\x8e\xbf\x6f\x49\x9e\xa1\xe2\x43\x2c\x4e\xee\x6e\xaa\x75\x7a\x5f\x7d\x14\x83\xe1\x70\x3e\x74\xc9\xb1\x26\xfb\x07\xd1\x2d\x5d\xed\xaf\x2f\xfd\x31\x1a\xa3\x79\x6b\x88\x34\xa2\xbb\xe2\xe4\x37\x69\x81\x2d\x64\xfa\xc3\x1f\xfe\x10\x00\xe4\x4d\xd1\xe1\xcf\xb1\x1b\x43\x5d\x7d\xc4\x73\x41\x6e\xb2\x33\x2c\xaf\x5f\x5f\x9b\x5f\x9c\x64\xe5\xf6\xc2\xa4\x22\x9b\x3a\x0a\x46\x07\x5b\xaf\xd2\x9a\xc6\xa9\x13\xb7\x60\xd0\x18\x2a\xad\x75\x2e\x22\x90\xc8\xa7\x7a\xa6\xfa\xcf\xaf\x65\xa9\x0d\x94\x90\x8f\xf7\xec\x70\x6f\x4d\xe5\xc9\x31\xc0\xf0\xf8\x7e\xfe\xf1\xfb\x6f\x0d\x1e\xca\x0b\x33\x44\xb3\xbe\xc7\xff\x72\x6b\x33\x04\x26\xe0\xfc\x1b\x37\x02\x65\x90\x02\xa6\xa5\xd5\xd2\x70\xbc\x5a\x88\xd1\xa1\xe5\xa9\x09\xa5\x66\x51\xc7\x82\x56\x3e\xdb\x11\xaf\xe1\x33\x58\x94\x51\xf9\x5d\x2b\x43\x57\xa7\x2f\x9f\xb5\xc6\x2c\x83\xc5\x22\x8d\x32\x6f\xf9\xdb\x95\x77\x2c\xf0\xb6\xb5\x0c\x57\x1f\x19\xd1\xf8\xc3\xd3\x6b\x69\x38\x2d\x06\x8b\xf5\x25\xf5\x44\xac\x8e\x65\x3e\x52\x6f\x69\xf2\xd6\x15\xb4\x32\x77\x75\xda\xcb\x3a\xcb\x65\x79\x75\xd1\x14\x33\xa0\xb4\xb6\xd1\xc5\x2b\x9e\x36\x26\x57\x32\x6d\x57\x47\x27\xe9\x97\x79\xc8\xef\x12\x5f\xac\x1d\x49\xbe\xf2\xb4\x5d\x9d\xe9\x32\x79\x84\x80\xd7\xe8\x8f\xe9\x9a\x2e\x7e\xe3\xe9\xa7\x9f\x36\x00\xc0\x8d\x16\x80\x0f\x5c\xab\xb4\xcc\xa3\x6f\x00\xb4\x0e\xc8\xf3\xbf\x67\xcf\x9e\xb5\x4f\x3f\xfd\xb4\xf1\x38\x9f\x7e\xfa\x69\xf3\x7b\xbf\xf7\x7b\x50\xc2\x32\xb9\x59\x16\xa4\xec\xaa\x65\x63\xcf\x9a\x0e\x88\xd1\xc4\xd3\x68\x36\x44\xac\xdd\xfa\x77\x4d\xd6\xf9\x37\xad\xcd\x19\xa0\x7b\x57\x91\x41\x7b\x31\x0d\x5f\xfc\xa9\xc1\x72\x46\x74\x2d\x2a\x83\xc7\x53\x5f\xae\x05\xe7\x5c\xbd\x76\x95\x00\x20\xa9\x7f\xd3\x3a\xce\x5f\x03\x90\x39\x72\x69\x56\x9a\xd5\xa3\xa3\xec\xc4\xc6\x34\xbd\xb7\xb5\x80\x36\x84\x2a\xb2\xe5\x25\x21\xb4\x17\xde\x32\x63\x85\x38\x0c\x84\xe7\x85\x9a\x02\xcb\xd5\x66\x5a\x7c\xf0\xf4\xa0\x9d\x1e\x35\x45\x8e\x16\x3d\x3e\x00\x90\x5a\x1c\x36\x96\x6e\x5e\x5b\x9f\xbf\x35\xce\xec\x9e\x33\xe0\x97\x7f\xf9\xdf\xb0\x50\x49\x5c\x03\xc0\xeb\x24\xb6\x48\x8b\x33\x27\xf6\x1e\x4b\xc3\xf1\x42\xf9\x5d\x86\xab\x4f\x1e\x31\x9a\xb5\x3c\x62\xb4\xc4\x16\xa7\xf5\xc1\x29\xf1\x73\xd9\xed\xa2\x5b\x4b\xdf\x95\x77\xdf\xf4\xb1\xf2\xc5\xe0\x0e\x92\x67\x8c\x27\x7d\xeb\xf5\x4e\xea\x9f\xf3\x95\x2f\xe6\x94\x78\xe5\x3b\xd7\x2f\x52\x07\x71\x65\x1b\x4b\x2b\xf9\xc7\xe3\x38\x4d\x4e\xc4\x77\xc9\x03\x6f\x7b\x06\x3a\x5f\x64\x79\x35\x39\x8d\xe1\xd6\xe8\x02\x83\xe1\xcf\x72\x81\xef\x32\x79\xf1\xb8\x65\x1d\x2c\xa3\xa9\x4f\x9d\x7b\x9c\xa4\xa4\x91\xcf\xb1\x7c\xf8\xf7\x18\x8e\xbe\xf9\x68\xf4\x6b\x65\xe1\xf8\x00\xc0\x3e\xf1\xc4\x13\xe6\xea\xd5\xab\x0e\x80\x93\x67\xa3\x10\x11\xb6\xb6\xb6\x88\x1d\x94\x17\xbc\x2e\xf5\x4e\x8a\xd0\xb7\xf9\xe0\x69\x25\x22\xb0\x74\xd8\xda\xda\xa2\xb3\x67\xcf\xda\x97\x5e\x7a\xc9\x3d\xfd\xf4\xd3\x86\xed\x82\xe2\x74\x6a\x75\xac\x95\x55\x83\xd5\x74\x59\x4c\x06\xb4\xbe\x5c\x4b\x27\xe9\x8b\x19\xf5\xbc\x7e\xb4\xb4\x9a\x8c\xc5\x64\x3a\xd0\xa1\xdd\x55\x04\x06\xc0\x33\x63\xdd\x79\x8b\xd8\x3e\x4a\x55\x2a\x1b\x02\xda\xdb\xa2\x59\xc5\xfa\x3f\x83\xca\x78\xa9\x6e\x8b\x06\x52\x4b\xc8\x8c\xa3\xec\xd0\x24\x3d\xb2\x39\x4e\xef\x4f\x1d\x65\x8b\x44\x53\xf0\x6e\xf8\x87\xca\xa0\x50\x2c\x06\x11\x82\xb7\x04\xfc\xdc\x97\xe6\x1b\xd0\x2c\xfe\x6d\x9d\x21\xa3\xc1\x33\xe3\x08\xae\xbd\x1e\x06\x0e\x70\xcc\x92\x22\x50\x9a\x58\x4a\x47\xb9\xbd\x70\x6b\xa5\xb8\x31\x4b\xdc\xd4\xc1\x15\xd4\xbe\xbd\xd4\xa1\xae\xc8\xad\xad\x2d\xda\xda\xda\xa2\xda\x80\xe1\x75\x11\x33\x2c\x65\x88\xd5\x79\x2c\xfe\xa0\xf8\xbb\xf0\x76\xe5\x71\x10\x7a\xee\x66\x1a\x99\xf6\x76\xd3\x2f\xc3\xdb\x37\xfe\x7f\xb6\xd0\xb7\x1c\x31\x9d\xc0\x07\x3b\x31\x45\xec\x22\xe9\xb8\x22\xd4\xe8\xd1\x8c\x0b\x69\xec\x6b\xe9\x96\xd1\xca\xe3\x63\xdf\x0f\x82\x23\x96\x36\xd6\x76\x62\x38\x62\xf8\x0e\x42\x77\x2c\x9e\x87\xdb\xc1\x2d\x75\xc8\x32\x5a\x65\xbd\x1d\xa4\x0c\xcb\x74\x8e\xa4\x25\xfc\x7e\xf2\x93\x9f\xa4\x8b\x17\x2f\xba\xdf\xfc\xcd\xdf\xa4\xe7\x9f\x7f\xde\xf9\x23\xf6\xcf\x9c\x39\x43\xfe\xc6\x66\x96\x9e\x88\x28\x61\xcf\xe1\xd7\x1b\x2d\xfe\xb7\x86\xf1\x87\xe8\x85\x38\xe7\x9c\xe3\xb8\x23\x67\xcd\xf4\x91\xd9\x83\xc0\xf2\xdf\x83\xc8\x92\xc4\x77\x37\xda\x80\xd6\xfe\xbb\xec\x07\x24\x1d\x05\xf3\x41\xb3\x88\x3c\x6c\x5f\xb7\xa9\xca\xd8\xad\xad\x2d\x73\xdf\x7d\xf7\x79\x57\x0b\x67\x56\x02\x00\xce\xb9\xa4\x7e\x4e\x00\xe4\x00\x25\x04\xca\x86\x73\xb3\x7e\xcf\x28\xbb\x6f\xa5\x48\x0e\xf3\x0c\x5a\x2e\xa1\x60\x38\xb4\xfc\x2a\xe1\x59\x23\xa8\x79\xa6\xca\xb8\x80\x30\x40\x00\x3f\xc7\x23\x0c\x15\xe2\xa8\x9b\xd8\x3a\x2e\x18\x2d\xac\x84\xe4\x28\x4c\x17\x11\x08\x89\xc5\x2a\x80\x9b\xd7\xd7\x8a\x8b\xa3\xbc\xdc\x71\x26\x18\x2d\x61\x6b\x34\x44\xa5\x9e\x3b\x77\xce\x1d\x3f\x7e\xdc\x8c\x46\x23\xff\x4d\x33\x2c\x34\xa5\xa1\x75\x12\xde\x4d\xe7\xa0\x0b\x92\x74\x3a\x01\x71\xe1\x93\x02\xca\xf1\xca\x3c\x34\x5c\xe8\x09\xa7\x19\x53\x5a\x47\xd5\xa5\xc4\x64\x63\xd1\xca\xde\x37\x7d\x8c\xb6\x98\xd2\xb4\xd0\xf9\x25\xcb\x70\x3b\x79\x6a\xb4\xc6\xc2\xed\xc0\xc5\xf8\xd6\x95\x8e\xff\xf2\xb2\x73\xe3\x43\x96\x5f\xf2\x49\x9b\x6a\xe0\xb0\x52\x4e\xa5\xdc\xc9\x7c\xf8\x5f\x4c\x9f\x49\x59\x96\xf9\x48\xf9\xd3\xfe\xfc\x37\xd9\xfe\x34\xdc\xb2\xec\x31\x3a\xb4\x36\x25\xf3\xf1\xf0\x92\x87\x1a\x4f\x64\x3e\x5a\x79\x78\xfd\x71\x78\x5f\x1e\xd9\x91\x71\x9a\xf8\x08\x5a\xab\xd7\xd8\x40\xd8\xc3\x70\x7a\x80\x76\x1d\xf4\xa1\x09\xe2\xfb\x42\x27\xfc\xa9\x4f\x7d\x8a\xde\xf3\x9e\xf7\xe0\xe3\x1f\xff\x38\xa5\x69\x8a\xad\xad\x2d\x62\x27\xf2\xfa\xbc\x93\xda\x18\xf1\x03\xff\x04\x68\x76\x82\xd6\x7f\x29\xaa\xd9\x83\x84\x1d\xae\xea\xef\x57\x0a\xbb\x45\x9b\xfb\x12\xe1\x0d\x1c\xe7\x3d\x39\x67\xce\x9c\xa1\x73\xe7\xce\xb9\xdf\xfd\xdd\xdf\x35\xb3\xd9\x0c\x37\x6f\xde\xd4\xea\x42\xd3\xbf\x80\x5e\x6f\x5a\xfb\x94\xf0\xda\x74\x24\xe7\xa7\x94\x69\xa0\x5d\x0f\x12\xf6\x20\xed\x58\x9b\xb5\xe1\x5d\x7b\xa8\x47\x39\x55\xd4\xfa\x28\x0a\x27\x95\xa9\x2c\x48\x1f\x65\xdf\x12\xa4\xb7\xdf\x7e\xdb\x9d\x39\x73\x86\x80\xe6\xce\x22\x9e\x1f\x11\x19\x36\x55\x94\x82\x90\x3b\x42\x9a\x38\x1a\xde\x33\xca\x8e\x6d\x4c\xd3\x93\x06\x95\x00\x48\x2e\xb6\x34\x8b\x5f\x38\x55\x9b\x1b\x92\x13\xe4\x61\x2a\x8b\x24\x20\x59\xb8\x93\xc8\x17\xc8\x35\xc6\x88\x0f\xf2\x9e\x23\x7e\xe9\x97\xbf\x59\x9a\xaf\x8b\x09\x53\x53\x0d\x0d\x69\xe2\xc8\x8c\xf2\xf2\xe2\xce\x4a\x79\x6d\x96\xb8\x29\xa8\x3a\xf2\x5f\x1c\x46\x17\xdc\x7e\xa7\x4f\x9f\xa6\x7f\xfb\xb7\x7f\xd3\x14\x9b\x0f\x5c\x18\x34\x85\x00\xf1\x2e\x95\x98\x84\x97\x69\x48\x81\xd5\xf2\xd1\x8c\x1f\xa9\x34\x96\x75\x1a\xda\xbb\xa6\x94\x96\x29\xe2\x2e\x7c\x77\x9a\x7e\x19\x6d\xfc\x5b\x1f\x7e\x69\xb4\x2c\xcb\xb3\x8b\xd6\x98\x71\xd1\xc7\x68\xe9\xca\x17\x88\x97\x95\xd7\xad\xec\xd4\x64\x27\x0e\x11\xc7\x3b\x3a\x40\xef\xdc\xb8\x6c\x69\xd3\x1e\x1e\x46\x93\x13\x27\xd2\x2d\x1b\xa5\x3b\xe5\x4f\xc2\xf2\x6f\x1c\x77\x57\xa7\x00\x01\x23\xcb\xde\x55\x1e\xed\x59\xc3\xcd\x69\x93\xcf\x9e\x26\x4d\x8f\x6b\x7c\xd5\x3a\xa6\xae\x3a\xd6\x0c\x13\x59\xc7\x9c\x4e\xd9\xaf\x68\xfc\x94\x65\x97\xf5\xab\xd1\xe4\xe3\x17\xe4\xf4\x57\x7e\xe5\x57\xe8\xc2\x85\x0b\xf6\xcd\x37\xdf\x74\x4f\x3e\xf9\xa4\x9f\xe6\x41\xdd\x07\xf1\x7e\x29\xa9\xef\xd4\xe3\x06\x4b\x52\x4f\x15\xa5\xb5\x31\x93\xa0\x5a\x9f\x98\xd4\xf0\x46\x3e\x8b\x3b\xfa\x7c\x5f\xe7\xc9\xf1\x9e\x1a\x77\xe6\xcc\x19\x5a\x5d\x5d\xc5\x91\x23\x47\xf0\xe3\x1f\xff\x98\xcb\x12\xe7\x17\xaf\x13\x6d\xfa\x27\xd6\x2e\x39\x0f\x81\xb8\xf1\xc8\xf9\xa9\xc9\x74\x8c\x1e\xad\x1d\x5b\x05\x8e\xd3\x2f\xd3\x41\xe4\x09\xa0\x31\x5c\x34\x81\xea\x22\xc2\xa7\xf1\x85\xed\xab\xec\x79\x63\x70\x40\xe5\x35\xa8\x8f\x6b\x96\xc2\x45\x68\xa6\xb2\xd2\xfa\x14\xdd\xd4\x51\xb5\x78\xf5\xd0\x34\x3d\x7c\x74\x94\x3d\x90\x5a\x33\xf4\x08\x7d\x06\x8d\xc1\x52\x1b\x0b\xa8\xbd\x1b\xf5\xc7\xb6\xc9\x51\x13\x44\xcd\x87\x16\x0e\x06\x4c\xa1\x04\xd4\x32\x66\xf4\xfc\x2b\x4b\x85\x80\xb0\x68\x97\xc3\x03\x95\xa1\xd4\xc4\x13\x19\x87\x81\x23\xdc\xda\x5e\x2d\xde\xde\xcf\xed\xb6\xb6\xd6\xa5\xb6\xf0\x6a\x92\x29\x76\x15\x80\x36\x5a\xfb\x79\x84\x3e\x1d\x9e\xa6\xd4\x0f\x82\x67\x99\x37\xa0\x6f\xda\xbe\x5e\x85\xbe\xf9\xf6\x09\xb7\x9b\xfe\x6e\xe4\xad\xe1\x8b\x75\x84\x77\x23\xc4\x70\xf2\x76\x1d\x1b\xf9\x69\x75\x24\xd3\xc9\x4e\x48\x7a\x97\x64\xa7\x25\x71\xc6\x3a\x2f\x9e\xae\x0f\x3e\x28\xf1\x31\xd8\x18\xbe\x65\xf0\x52\x89\x2f\xc3\x1d\x7b\xd6\x68\xd5\xca\xc3\x75\x79\x17\x3e\xce\x73\x5e\x27\x1a\x0f\x63\xf5\x1e\x2b\x43\xcc\xf8\xeb\x82\x97\x34\x1c\x94\x3f\x06\x80\xfb\xf4\xa7\x3f\x6d\xde\xfd\xee\x77\xe3\x63\x1f\xfb\x18\x71\x0f\x8b\xf7\x94\xd4\x6b\x30\x13\x6f\x7c\x30\x4f\x4b\x06\x20\xab\x0d\x91\x2c\x71\x94\x65\x25\xe5\x79\x61\xb2\xbc\xa0\x3c\x2b\x29\x4b\x2c\x25\x09\x28\x33\x96\x12\x4b\xc1\x2b\xe3\xd3\xfb\x3c\xc8\x7b\x74\x98\x07\xc6\x3f\x10\x00\x37\x1c\x0e\xc3\x14\xd2\x13\x4f\x3c\x41\x57\xaf\x5e\xed\x5a\x4f\xd2\x25\x03\x5a\x1b\xd4\xea\x32\xd6\xbe\xfa\x0c\x56\xfb\xd4\xc3\xb2\x36\x1a\x6b\x97\x00\x1a\xc3\x25\xa6\x48\x64\xd0\x8c\x19\x19\xba\x1a\xb9\xaf\x88\xc0\xf4\x4f\x7f\xfa\xd3\xe6\x9e\x7b\xee\xf1\xf8\x82\x13\x84\xcd\x0d\x06\x97\x9b\x73\x2e\x45\x7d\x9a\x6e\x5e\x98\x95\xe3\xa3\xfc\xfe\xb5\x79\x72\x54\x78\x2e\x02\x71\xad\x69\x9e\xfa\xa3\x03\x9a\xcb\x12\xeb\xe0\xdf\x43\x14\x63\x61\xb3\xd5\xba\x36\x34\x6a\xeb\x85\xd8\x19\x2d\x01\x9c\xe1\xa0\x18\xbe\x00\x47\x0b\x34\x93\x43\x9e\x38\xb8\x71\x66\xdf\xde\x1d\x96\xd7\xa6\xa9\x9d\x80\x50\xf0\x2b\x00\x98\xf7\x05\x40\xb5\xde\x45\xdc\x1e\x2d\xad\xd3\x65\x9d\xb7\xf4\x86\xc5\x46\x5e\x12\x4e\x86\x18\xac\x5c\x11\x1e\x6b\x18\x72\x94\xc5\xb9\xd7\x95\xae\x8b\x0e\xd9\x01\x68\x65\xd4\xd2\x4a\x03\x3d\xd6\x59\xca\x34\xa4\xc0\xc6\x78\xd9\x35\x0a\xec\xa2\x4d\xe6\xd9\xa7\xee\xe4\xe8\xb5\xab\x4c\x5a\x3d\xf4\xe5\x9b\x0c\x9e\x8f\x5d\x9d\x70\x8c\x4e\xa9\xf0\x64\x3c\x1f\x33\x48\x3c\xfc\x9d\xeb\x1c\x23\x9e\xb5\x76\xa3\xd5\xa7\x9c\xd2\xeb\xc2\xc3\xf3\x97\xb4\xf0\xbc\x5a\x4d\x5f\x79\xd6\xda\x8d\x4c\x27\xf3\x91\xf9\xc5\xca\x20\xe1\xa4\x5c\x78\x3a\x78\x9e\x0e\x6d\xba\x24\x7e\x09\x2f\xeb\x5d\xe2\xd6\x60\x78\xe8\x03\x2f\xcb\xda\x35\x15\xe1\x9f\x39\xed\xf6\xc9\x27\x9f\x34\xdf\xfe\xf6\xb7\x6d\xed\xf9\x07\x1a\x63\xc2\x1b\x12\x86\x1b\x2c\x61\x00\xed\x5c\x36\x28\x4d\xbe\x31\x4b\x57\x36\xc7\xc9\xfa\xd1\x71\xb6\x79\xef\x5e\x7e\xcf\xc9\xdd\xc1\xc9\xfb\x76\xf2\x07\xef\xdd\xcb\xef\x3b\xbe\x9f\x9f\x3c\xbe\x9f\x1f\x3f\xbe\x9f\x1d\xdf\x1c\x67\x1b\xeb\xb3\x64\x30\x2c\x4c\x9e\x15\x94\x1a\x90\x71\x06\xc6\x55\x6b\x79\xbd\x71\x24\xd7\xc4\x34\x53\x11\xf5\x14\xd2\xd6\xd6\x16\x7d\xf3\x9b\xdf\xb4\x1f\xf8\xc0\x07\xcc\x3b\xef\xbc\x23\x65\xca\xf3\x4a\x1a\x35\x9c\x27\x9a\x8e\x92\x72\x0c\x2c\xca\x0c\x97\x35\xd9\xe6\xb4\x36\x10\x93\x6f\x69\x98\x70\x78\x0d\xb7\x9a\x5f\x2a\x0a\x77\x90\x11\xba\xb4\xd2\x11\x79\xef\x8c\xff\xd6\xb7\xbe\x65\x1f\x7b\xec\x31\xa3\xc0\x5a\x6a\x6e\x48\x2e\x00\xcc\x88\x68\x06\x60\x32\x4f\xdc\xe8\xfa\xda\xfc\xca\xf6\xca\xfc\xe2\x91\x51\xfa\x88\x71\x48\xfd\x9a\x93\x70\x34\x3f\x53\x6d\x2d\x83\x02\x80\x23\x07\x5a\x88\x04\x7b\xaf\x8c\x14\x6f\xdc\x34\x57\x29\xf9\x77\xaa\x7f\xb5\xeb\x1b\xf9\x33\x9b\x7e\xf2\x46\x90\xc7\x14\xa6\xaf\x9a\x8c\xc9\x91\x59\x9d\x25\x0f\xdd\x7f\x6b\xf0\xc4\xf5\xb5\xe2\x8d\xfd\xbc\xdc\x29\x92\x70\x53\xb4\xe7\x85\x41\xbb\x91\x72\xbe\x6a\x8d\x75\x59\x9d\x1e\xa4\xfe\xba\x64\x44\xa3\xa3\x0b\x77\xdf\x7c\xef\x26\xec\x32\x9e\x68\xdf\xbb\x68\xee\xc2\x79\xd0\xb2\x2f\xab\xb3\xae\x72\xf4\xa5\xdb\xe7\xd1\xb7\x4c\xb1\xfc\x96\xc1\xf3\x78\xd9\x71\x1c\x84\x4f\x32\x70\x3d\xd1\x25\x8f\x1a\x2f\x79\x9b\xe9\xa2\x49\x3e\xdf\x0e\x7c\xec\x59\xf2\x5e\xe2\x8b\x95\x27\x56\x97\xf2\xbd\x4b\x27\x48\x9a\x64\xd0\x68\x95\x38\x62\x75\xb5\x0c\x3e\x56\xc6\x65\xcf\xb1\x32\xc6\xf2\xd4\xbe\x4b\xde\xb7\x70\x7e\xff\xfb\xdf\xe7\xe7\xb0\x18\xf6\xdd\xb0\xb5\x28\x86\x88\x52\x38\xa4\x06\x94\xae\x4d\x93\x7c\x7d\x9a\xac\x6f\x8e\xd3\xcd\xcd\x51\x76\x72\x7d\x66\x4e\xac\xcc\xcd\xd1\x61\x61\xee\xc9\x0b\xb3\x99\x5a\xb3\x6e\x1c\x8c\x25\x58\xc0\x59\x47\x28\xe6\xc6\xed\x8c\xb3\xf2\xda\x28\xb7\xef\x8c\xb2\xf2\xda\xde\xb0\xbc\x76\x73\xa5\xb8\xb6\xbd\x32\xdf\xd9\xcf\xcb\xd1\xdc\xa0\xf0\xfd\x9d\xd7\xf7\xf5\xda\xc6\xa2\x7e\xf6\x53\x49\x56\xb9\xf1\x59\x93\xa9\x83\xd4\x83\x06\x13\xe3\xe7\xb2\x36\xdc\xa7\xcd\xcb\xb4\x5d\xb8\x79\x99\x42\x79\x68\x09\x80\x66\x9c\xc8\x4c\x62\xca\x24\x66\xd8\xc8\x3c\x00\x84\x2b\xcb\xb9\xd0\xf8\xb3\x4c\xfc\x61\x74\xcd\x81\x74\x0e\x9b\xc3\xc2\x9c\xf8\xf0\xa5\xf5\x27\x3f\x74\x69\xed\x37\x57\x67\xc9\x31\xb9\xab\x87\x1b\x22\xdc\x26\x69\xb9\x5c\x88\x83\xd7\xc6\x0c\x5c\xe3\x11\x61\x07\x07\xb9\x70\x41\xa2\x3f\xb5\x97\xe7\xe7\xd8\xbd\x44\xd4\x18\x2d\x2c\x6d\xf3\x8c\xe6\x84\xdd\x7a\x2a\x29\xc4\x55\x66\x8f\xdd\xcf\xcb\x9f\xfc\xe4\xc4\xe8\xeb\x3f\x3e\xb9\xff\xad\xeb\xab\xf3\x4b\x00\x46\x44\x34\x02\x30\xab\xff\xbc\x30\x5b\x00\x96\x88\xc0\x04\xb9\x0f\xdf\x97\x09\x96\x8c\xbb\x1d\xa3\x76\x19\x7c\x1f\x21\x3d\x88\x0c\xdd\x29\xcd\xb7\x13\x0e\x24\xe3\x91\xef\x77\x42\x67\xdf\xfa\x5c\x46\x5b\x9f\x4e\xa3\x2f\xae\x3b\xa1\xb3\x2f\x2e\x4f\x57\xdf\x3a\xef\xcb\xe3\x3b\xe1\x43\x2c\xaf\xbe\x72\xe0\x9f\x7d\x38\x48\x39\x34\x9d\x7c\x37\xda\x7f\x97\xe1\xa0\x85\x58\xdf\xd0\xa7\x9d\xf6\xad\x3b\xed\x5d\xe6\xd1\x49\xd7\xca\xca\x8a\x19\x8f\xc7\xb6\xee\x73\x00\x80\x2f\x98\x0d\x06\x4b\xfd\x5b\x9d\xa7\x65\x91\xae\xcd\x93\xe1\xe1\x71\xba\x79\xef\x6e\xf6\xc0\xb1\xfd\xfc\xa1\x23\xe3\xf4\xd1\xb5\x69\xf2\x9e\xbc\xa4\x93\x89\xa3\x4d\x63\xe9\x10\x01\xab\x70\x94\xfb\x21\x69\x9d\xaf\x75\x84\x99\x25\xb7\x53\x12\x6e\x14\x89\xbb\x36\x49\xed\xc5\x9d\x95\xe2\x67\x57\xd6\x67\xe7\xaf\x6e\xcc\x2e\x6e\xaf\x14\xd7\x76\x07\xe5\xa8\x48\xdc\xac\x4e\x53\xd4\x87\x8f\x7a\x23\xc2\x1b\x33\xa8\xe3\xf0\xcc\x33\xcf\xd8\x47\x1f\x7d\xd4\xbc\xfa\xea\xab\x7d\x3a\x7b\xc9\xab\x58\x3b\xea\xa3\x1b\x96\xe5\x75\x90\xfa\x97\xf0\x5d\x86\x52\x78\xd6\xce\x71\x91\x6e\xfa\x98\x3b\xce\x0a\x18\xe9\x8a\xb6\x2c\xce\x88\x67\xcb\x70\xe2\xf8\xf1\xe3\xe6\xf1\xc7\x1f\x07\x10\xd6\x70\x18\x00\x60\x73\x89\xa6\x5e\x10\x55\x6d\x8f\x26\x64\x0e\x2e\x25\x87\xec\xc4\x7e\x7e\xff\xea\x2c\x39\x4a\x80\xf1\x5e\x14\x6e\x34\x34\x2e\x90\xc6\x8b\xe2\xbd\x20\x6d\x7f\x73\x1d\x47\x7e\xe5\x49\x63\x9c\xb8\xfa\x39\x18\x26\xec\x52\x45\x1f\xaa\x35\x32\xd4\xdc\x99\xc4\x0c\x1b\xcd\x80\xf1\xf1\xfc\xe4\xdf\x7a\xfa\x89\x12\x98\x41\xe2\x68\xb2\x9f\x97\x97\xb7\x57\xcb\x1b\xce\x04\xaf\x93\xe7\x6f\x10\x60\xbf\x36\x68\x6b\x6b\x8b\x8c\x31\x54\x1f\x37\x1d\x73\xe3\xc9\x3a\xe2\x2e\x5a\x5f\x47\xd2\xcd\x2a\xdd\xc5\x3c\x9e\xe3\x06\xfb\xa6\x09\xa6\x94\x03\xe9\x62\xd6\xbe\x59\xf1\x4d\xba\xca\x79\x7a\x49\x1b\xa7\x37\x46\xcb\x41\xa6\x63\x34\x38\x8d\x7f\xcb\x5c\xf6\x92\xc7\x31\x1e\xc4\x02\x87\xe1\xed\xc9\x87\x2e\x17\xae\x4c\x27\xf9\x2d\xa7\x62\xa4\x1c\x68\xfc\xe9\xa2\xdd\x30\x3c\xbc\xdd\xc7\x70\xb7\xf4\x82\xf8\xce\xcb\x27\xcb\xbd\x4c\x4e\x35\x1d\x24\xe1\xa4\x6b\x9c\xd3\xdc\xc5\x4b\x59\xc7\x50\xf8\xd9\x95\x2f\x2f\xb3\xcf\x37\xe6\x8a\x8f\xd1\x11\x33\x5a\xb8\xdc\x71\x59\xd5\xda\xbf\xc4\x07\x2c\xf2\x44\xa6\x95\x72\xed\xbf\x3b\xe5\x19\x2c\xce\xe7\x25\xdb\xba\xc6\xd7\x58\x7a\xfe\x1e\xe3\xb1\xc4\x41\x00\xdc\xfb\xdf\xff\x7e\xfa\xec\x67\x3f\x4b\x1d\x46\x4b\x5a\xf7\x37\x19\x1c\xb2\xac\xa4\x95\xa3\xe3\xec\xc8\xbb\x6e\x0c\xdf\xfd\xbe\x2b\x6b\x9f\x78\xe4\xe6\xf0\xd7\x8f\xef\xe5\xbf\x76\x68\x92\xfe\xd2\xb0\x30\x1f\xcc\xac\x79\xc0\x38\x3a\x6a\x40\x6b\xe4\x28\x27\x42\x42\xd5\x0e\xd8\x04\xa0\x94\x1c\x65\x04\x0c\x13\x67\x0e\x27\x16\x27\xf3\xd2\xbc\x7b\xa5\x30\xef\x59\x9f\x25\x8f\x1e\x19\x65\xa7\x8e\x8e\xb2\xcd\xb5\x59\x32\x70\x84\xa2\x30\xb6\x9c\x27\xe1\x62\xdd\xda\x39\x5f\xad\x6b\xac\x75\x7e\x68\x73\x5b\x5b\x5b\xf4\xf0\xc3\x0f\xe3\xea\xd5\xab\xb4\xb7\xb7\xa7\xc9\x8c\xe4\x37\x97\x65\x2f\x67\xbc\xbe\xb5\xfa\xe1\x3c\x95\x72\x25\xbf\xc9\x34\x5a\xdb\xd1\x74\x44\x4c\x3f\xf0\x32\xb4\xbe\x4b\xc3\x45\x53\xd2\xbc\x30\x5a\xc7\xa7\x75\x80\x56\xa4\x93\x02\xca\x89\x71\xa3\xd1\xc8\xb1\x45\xba\x55\x46\xcd\xf6\x33\x00\xf0\xf3\x8c\x86\x2f\xd2\x9d\xa5\x0e\xf7\xec\x67\x47\x36\x27\xd9\xfd\xa9\xa5\x41\x3d\x0f\x14\x92\x85\x33\x59\x6a\x6b\x22\x48\xb7\x3f\x28\x48\x16\xd0\xb1\x29\x22\x69\x64\x30\x98\xc6\x53\xe2\x9f\xdb\x06\x48\x3d\x17\x04\x57\x1b\x52\x35\xba\x06\x53\x6d\x3c\xb9\x1a\x8e\x18\x10\x11\x81\x1c\x65\x89\xa5\xac\x34\xee\xd6\xce\xb0\x78\x6b\x3f\xb7\x23\x50\xd8\x1a\x5d\xd6\x74\x95\x6d\xb9\x26\xf7\x77\x7f\xf7\x77\x76\x6d\x6d\xcd\xcc\xe7\xf3\x98\x72\x8f\x75\x70\xbc\x8e\x34\x21\x8e\xc5\x6b\x1d\xba\x8c\xe7\x71\x52\xb9\xc5\x94\x9c\x94\x31\x87\x36\x7d\x1e\x8f\xc5\x22\x0d\x52\x49\xcb\xd0\xf5\x5d\x2a\xf9\x58\x67\xaa\x75\xac\xbc\x13\x07\x16\xdb\x81\x56\x66\xde\xb8\x81\x45\xba\xb4\x4e\x9c\x77\x6c\x3e\x4d\xac\x2d\x6a\x3c\xe4\x65\xd0\xf2\xd5\xf8\xd3\xd5\xe1\x71\x78\xad\x53\x91\xb2\x42\xe2\x5d\xca\xa9\x86\x43\xd3\x4b\x31\xfa\xb4\x3a\x94\xb2\x2d\x15\xad\x66\xa8\x68\x79\x48\x5e\xf6\xa9\x63\xa9\xfb\x64\xdd\xc5\x78\xc1\x7f\x81\xc5\x7a\xf1\xf1\x52\x9f\xca\x0e\x44\xab\x17\x4d\xae\x65\xb1\x21\xb7\x3a\x00\x00\x20\x00\x49\x44\x41\x54\x47\x23\x75\x35\x97\x6f\x39\xb0\xe0\xed\xb1\xcb\xc8\xe5\xc1\xc3\xc8\x32\x68\x9d\x29\xa7\x9b\xe3\xd4\xf8\xca\xeb\x86\xe7\x13\xf8\xf0\xd9\xcf\x7e\xb6\xb5\xc5\x99\x79\x57\xbc\xd1\x92\x12\x51\x66\x2c\x06\xab\x73\x73\xe8\xbe\xdd\xc1\xa9\x0f\x5c\x5e\x3f\xfd\xe8\xb5\x95\xdf\x3c\x36\xca\x3e\xbb\x3a\x4b\x3e\x91\x5a\xf3\x80\x01\xad\x02\x64\xaa\x63\x2e\x5c\xd8\xe0\xe1\x77\xa8\xfa\xbe\xa7\xb5\xd4\x80\x50\xf5\x19\x0e\x79\xe2\xcc\x3d\x83\x92\xde\xb5\x3a\x4f\xde\xbb\x39\x4e\x1f\xbc\x67\x94\xaf\x25\x8e\x26\x7b\x79\x39\x2e\x12\x67\x5d\x05\xef\xd7\xbd\x00\x80\xdf\x98\x11\xea\xc2\x18\x83\x7f\xf9\x97\x7f\xb1\xf5\xb3\xa9\xbd\xf0\x52\x8e\x35\xb9\xe0\xf5\x2a\xeb\x4c\xeb\x37\xa4\xdc\xc6\xea\x0f\x1d\xcf\xb2\x0f\xe2\xdf\x78\xbe\x9a\xae\x68\xe5\x2d\x0d\x17\x4d\x99\xcb\xce\xcd\x07\x4d\xc1\x69\xd6\x7e\x8c\x49\x90\xef\xec\x70\x1f\x39\x72\x09\xfb\xe5\x6b\x03\x26\x05\x21\x29\xc9\x25\x83\xd2\xe4\xc7\xf7\xf3\x87\x07\x85\x59\xa7\xca\xc0\xf1\xb2\x11\x50\x84\x85\xb2\x75\x75\x33\xeb\xb5\x8a\x62\xf1\x41\xbe\xc4\x76\xe7\x30\xac\xe0\x06\x4f\xf0\xc2\x30\x86\x10\xea\x99\x28\x96\xaf\xa7\x27\x9c\x01\x53\x93\xe2\x69\x61\x79\x7a\x5b\xc8\x38\x1a\xa4\xce\xd8\x49\x66\xaf\x5e\x5b\x9f\x5f\xb5\xd5\x0e\xa3\x82\x1b\x2d\xde\x12\xaf\xad\x70\xb7\xb5\xb5\x45\xdf\xfb\xde\xf7\x34\x03\x63\x81\xd7\xca\xf7\x18\x8c\x06\x17\x0b\x5c\xb9\xf1\x38\xad\x83\x94\x41\x53\x74\x31\x3a\x62\x8a\xad\x0f\xad\x5d\x32\x2e\xe9\xd7\xe4\xbe\x0b\x5f\xec\x39\xe6\x45\xd0\xf8\x1d\x6b\x6f\x5d\x9d\x7b\xcc\x18\xd3\x14\xc5\xb2\x20\xeb\x2f\x46\x53\xac\x8e\x62\x41\xeb\xf4\x5b\x4d\x07\xfa\x68\xd9\x7f\x5f\x46\x17\xa7\x9f\xa7\xf1\x34\xcb\x0e\x9f\xd3\xb1\x30\x98\x52\x70\xcb\x11\x21\xef\x64\xa5\xc1\x2a\xe3\x25\x1d\xb1\x4e\x9d\xd3\xc2\xd3\x6a\x9e\x47\x69\xb4\xcb\x72\x75\x05\x8e\x3b\xa6\xdb\x35\xb9\xe1\xfc\xd2\x74\x3b\xc7\xb3\xa0\x1a\x19\x9d\x5a\x3b\xee\x1a\x00\xc4\x70\xc6\x8c\x4c\xfe\xbd\xd5\x06\xfc\x61\x72\xd4\x9c\x74\x6b\xc0\xce\x5c\xa9\x9f\x73\xe3\x68\x70\x74\x9c\x1e\x79\xec\xea\xea\x63\x1f\x7c\x7b\xfd\xd7\xef\xdb\xc9\x3f\xbb\x3e\x4b\x3e\x9d\x58\x73\x2f\x88\x12\xc9\xc0\xca\x36\xa1\x3a\x63\x6a\xfa\x99\xfa\x1b\x39\x2f\x04\x14\xf4\x3e\x39\x80\x88\x92\xc4\xd1\x46\x56\xd2\x83\xab\x73\xf3\xe8\x91\x71\xb6\xb9\x36\x33\x7b\xb7\x56\x8a\xdd\x59\x6a\x0b\x57\x25\x71\x35\xcd\xdc\xfb\x52\x75\x21\x6c\xd1\xee\x9b\x6f\xbe\x89\xf1\x78\x1c\x8c\x1c\x2c\x7a\x2f\xe4\x94\x4d\x4c\xfe\x79\x9d\xf8\x78\x4d\xbe\x81\x7e\x06\xa6\xc7\x8b\x48\xbc\x64\x27\xa7\x5b\x95\xe5\xae\x23\xff\x7d\x88\x35\x82\x65\x8a\x38\xd6\x80\x62\xca\x38\x18\x2e\x7c\xcb\x6f\x7d\x08\x9d\x17\x34\xbe\x3f\x3e\x07\x90\x4c\x33\x6b\x4f\xee\x0e\xee\x5f\x9f\x26\x27\x92\xfa\x24\x5d\x6f\xe1\x7a\x8b\x37\x78\x46\x98\xfa\x68\x84\xca\x05\x03\xc4\x87\x3a\x65\x63\xe8\x54\x34\x35\x8b\x69\xc3\xfa\x98\xda\x5b\xe2\x5c\xcb\xe8\x69\xa9\x29\x62\xcb\x77\xeb\x85\x30\x7e\x77\x92\x6b\x80\xda\xf9\x57\xa8\xb2\xc4\x52\x46\xc0\x68\x94\x97\x6f\xde\x1a\x96\x3b\xa0\x6a\xee\xb3\x4e\x64\x2b\x43\xdc\xf9\x5f\x22\x22\xb7\xb6\xb6\x46\xaf\xbf\xfe\xba\xa6\x80\x63\xa3\x2c\xa9\x24\x34\x0f\x83\x06\xab\x05\x39\x3a\x94\xdf\xba\x3a\x06\xa9\x08\xbb\x46\x6c\x12\xff\x32\x7a\xfb\x94\xd9\x87\x2e\xb8\xae\x8e\x33\x56\x2e\x4f\x6f\x4c\x91\x77\xf1\x3f\xd6\xa8\x25\x8d\x31\xe3\xa4\xcb\x20\x88\xf1\x57\x83\xd1\xd2\xca\x0e\x47\x3e\x73\xfa\xb4\xce\x28\x36\x97\x2d\x8d\x30\xe9\x09\x90\x3a\x86\x07\x3e\x02\xd4\x14\x6b\x97\x57\x41\xa3\x45\xa3\x5f\x7b\x96\x65\xd1\x8c\x15\xad\x23\x91\xf9\x73\x3e\x6b\x9d\x4d\xac\x63\x97\xc6\x4d\x4c\x86\x39\x8d\xe8\x80\xd7\xa6\xf1\x48\x7c\x93\xf1\xb2\x2e\x62\x32\xed\x04\x8c\x8c\xef\x6a\x8f\x31\x3c\xbc\x6c\x2a\x9d\x1f\xfb\xd8\xc7\xe8\xb7\x7e\xeb\xb7\xbc\x47\x5f\x1a\x2d\x7e\x59\x42\xee\x9c\x1b\x10\x68\x70\x6c\x94\x1d\x79\xff\x95\xb5\x8f\x3e\xf6\xce\xea\xef\x1e\x19\x67\xbf\x33\x28\xcc\x7b\x89\x28\x0b\x85\xf5\x03\x54\x34\xfd\x4d\x50\xf3\x68\xbc\xf5\x61\x62\x27\x0c\x4e\xd1\xd4\x20\x7b\x26\x90\x31\x0e\x87\xf2\xd2\xbc\xfb\xd0\x24\xbd\xef\xf0\x34\xdd\xb9\xb9\x5a\xdc\x9c\x64\x76\x5e\x75\x57\x55\x87\xc3\x3c\x2e\xad\x69\x23\xe7\x1c\xfe\xf5\x5f\xff\xd5\xde\x7b\xef\xbd\xb4\xb7\xb7\x27\x3d\x8b\x40\x5b\xb6\xa4\x31\xa3\xb5\xff\x98\x4c\x71\xd9\x96\x6d\xa4\xab\xce\x24\x2e\xae\xff\xb4\xa9\xce\x2e\x1d\x65\x96\x19\x2e\x5d\xca\x5b\x0a\x49\x97\x40\x71\x7c\x31\xc1\xc5\xb9\x73\xe7\xdc\xb9\x73\xe7\xfc\xa1\x74\xb5\x11\x4b\x7c\xaf\x3b\x3f\xf8\x27\x01\x21\x9b\xa5\x8e\xd6\xa7\xc9\xf0\xe8\x38\xbd\x2f\x2f\xcd\x1a\x81\xc2\x5a\x17\xbe\x56\x85\x1b\x06\x41\x88\x00\xd4\xf3\x42\x68\xac\x9a\x60\x8e\x08\x8f\x89\xb0\xa6\x9b\x37\x86\xaf\x99\x8e\xaa\xd2\x7b\x97\x61\x28\x4c\xa0\x89\xd7\x7e\x2b\x2e\xd8\x4b\x04\xe3\x30\x48\xad\x49\x0a\xe3\x6e\x5c\x3e\x34\x7b\xcb\x1a\xcc\x6b\x5e\x17\x75\x52\xbf\x3d\x3a\x78\x5d\xfe\xe6\x6f\xfe\x46\x9b\xa6\xd3\x7e\xfd\xb3\x26\x70\x5a\x87\x20\x47\x59\x5a\xe0\x4a\x5a\xfb\xd6\x95\x47\xd7\xfb\x41\x60\x25\x2d\x1a\xae\x2e\xdc\x07\x81\xeb\xc3\xbb\x65\xb8\xba\x70\x68\x65\xe8\x2a\x4b\x8c\xbe\x3e\x78\x62\xe9\xba\x7e\xfb\xe0\x91\x0a\x71\x99\xcc\x69\x38\x64\xba\x58\xa7\x25\xe7\xf0\x97\x75\xa6\x9a\x52\x96\xbf\xb2\x23\xd4\x8c\x2e\x8d\x56\x6e\xb8\x1c\x94\x3e\x0e\xa3\x19\xc2\x92\x7f\x5d\x46\xb1\xe6\xd1\x88\x19\xa0\x92\x26\x49\xab\x66\x7c\x6a\xf1\xb2\xce\x24\x9f\x20\x70\xc8\xb2\xc5\xca\xac\x19\xcc\x1c\x56\xed\x6c\x7f\xf9\x97\x7f\x99\xbe\xfb\xdd\xef\xda\x33\x67\xce\xf8\xed\xcd\x7c\x07\x11\xa1\xf6\xb2\x00\x18\x12\xd1\xe0\xd4\x4e\x7e\xfc\x89\xb7\xd7\x7f\xe9\xd1\x6b\x2b\xbf\xbf\x31\x4b\x7f\x29\x71\x74\x34\x8c\x55\xdb\x23\xdc\x66\x00\x4a\x5e\x6b\x37\x7d\x85\x27\x9a\x1a\x45\xdf\xfe\x05\xf8\x18\x18\x44\x04\xe3\x28\xcb\xad\x79\x70\x6d\x96\x3c\x74\x74\x94\xcd\xf6\x07\xe5\xcd\x51\x6e\xa7\x25\x39\xcb\x8d\x16\x00\xc1\xf3\x42\x55\x70\xe7\xce\x9d\x73\x7b\x7b\x7b\x1a\xef\xf9\x33\x18\x0f\xb5\xf6\xd4\x65\x64\xf0\x62\x49\xd9\xe8\x92\x53\x29\x33\x5d\x30\x9a\x6e\x58\x68\x67\x9a\xe1\x22\x85\xba\x4b\xe1\x70\xa1\xed\x52\xa0\x5d\x23\xa4\x05\x81\xf6\xf7\x17\x89\x3f\x2f\x68\xe1\x50\xba\xfa\x39\x2f\x8c\xc3\xf1\xfd\xfc\xbe\xf5\x59\x72\x2c\x71\x94\x11\xdf\x0b\xcd\x88\x6d\xc7\xb0\x48\x6a\xef\x20\x92\x70\xed\x96\xe9\x1a\x69\x0c\x6b\x65\x1a\x83\x84\xa7\x0a\xa2\xec\x42\x36\x21\x48\xa3\x85\x67\xc6\xe0\x92\xc4\x51\x6e\x1c\xca\x79\xe2\xde\xba\xb6\x3e\xdf\x46\x7d\x0d\x40\x4d\x8e\x3f\x94\x2e\x5c\x09\x20\xce\x75\x59\x16\x34\x6b\x59\x0b\x5d\x1d\xc6\xff\x0e\x3f\xbf\xa0\x29\x83\xff\xd9\x82\xec\x58\xfa\xe8\x09\x19\x62\xe9\x62\xb8\xbb\x3a\x52\x08\x5c\xb1\x81\x19\x18\x6c\x0c\x5e\xa3\x49\x1a\x3d\xcb\x8c\x3d\x1e\xb4\xf2\xc8\x4e\x45\xa3\x35\x56\xf6\x18\xdd\x7c\xdc\xbf\xac\x6d\xf7\x29\x83\xf6\xbc\xac\x3e\xba\xe2\x63\x65\x3e\x48\x19\x42\xfc\xc3\x0f\x3f\x4c\xbf\xf1\x1b\xbf\xc1\xc6\xa0\x0b\x47\xf3\xe7\xce\xb9\x21\x11\xe5\x0f\x6c\x0f\x4e\x7c\xe0\xf2\xfa\xa7\x1f\xdc\x1e\x7e\x6e\x6d\x9e\x7c\xd4\x38\x1c\x0a\x03\xe1\x70\xd6\x86\xff\xf1\x1a\xbe\xf1\xaa\xb7\xb4\x79\x5b\x97\x2b\x16\xa6\x38\x96\x03\xc1\x90\xa1\xc4\xe2\x9e\x61\x61\x4e\xad\xcf\xd2\xd9\xee\xb0\xbc\x36\x1a\x94\x13\x57\x79\xdc\xf9\x8c\x04\xf7\xc0\xb8\xd3\xa7\x4f\xd3\xb3\xcf\x3e\xeb\x1e\x7a\xe8\x21\xba\x75\xeb\x56\x8c\x67\x9a\xa7\x94\x87\x18\x3f\x35\xf8\x83\xc0\x4a\xf8\xa8\x37\x05\xba\x41\xda\xc2\xd7\xb5\xab\x48\x0a\x63\x8c\x98\x3e\x8a\x35\xa6\x18\x78\x7c\x20\xae\x36\x5c\x02\xd1\xec\x34\x41\x6e\x21\xfb\xf9\xc8\x74\x9a\x59\xda\x1c\xa7\x87\x37\x27\xd9\xbd\x79\x49\x6b\x04\xe6\x43\x43\x63\xf9\x48\x82\xe4\xd4\x11\x18\x3c\xc4\x1b\x01\x7e\x4e\x32\x78\x70\x48\x91\x4a\x9e\xa2\xf1\xf8\x08\x62\xd8\x23\xdf\x16\x1d\x60\xfd\x33\x08\xe4\x90\xa5\x8e\x32\x10\xed\x6f\x0f\x8b\x37\x46\x59\x39\x23\xa2\xb2\x36\x56\x2c\x98\xd7\xc5\x53\xc2\x8c\x97\x98\x61\x12\x1b\x15\x22\x92\x46\x0a\x93\x26\x5c\x5d\x2e\x6a\x4d\x76\xa4\x9b\xd9\x88\xe7\x58\xfe\xcb\xf0\x2e\xa3\xb9\x2b\x68\xf9\xc4\x68\x5f\x56\xee\x58\x19\x34\xba\xfb\x74\x48\x77\xca\xd3\x58\x59\xbb\xca\x10\x4b\xd3\x25\x23\x12\x3e\xe6\x91\xd0\x78\xa5\x29\x2f\x3e\x4e\x95\x79\x72\x18\x39\xfd\xa2\x79\x69\x34\x1e\x82\xc5\x69\x32\xdd\x05\xbf\x4c\x4e\x39\x4d\x1a\xfd\x92\x07\x92\x6e\xcd\x7b\x01\x01\xcb\x3b\x23\x40\xc7\x2f\x3b\x2c\x0f\xb7\xac\x4d\x69\xe5\x95\xcf\x31\x59\xe3\xdf\xba\xe8\xd6\xea\x8c\xd3\x11\xe3\x27\x04\x6e\x59\x66\x0b\x00\x9f\xfa\xd4\xa7\xcc\xa3\x8f\x3e\x8a\x24\x49\xbc\xf7\xde\x00\xad\xdd\x43\x39\x11\xe5\x44\x34\x38\x3c\x4a\x36\x3f\x70\x65\xed\x53\x0f\xdd\x1c\xfc\xf6\xfa\x2c\xfd\x90\x71\x38\x1c\x74\x79\x5d\x1a\x57\xe9\xe4\x9a\x02\xdf\x67\x50\xab\xb0\x41\x85\x8b\x01\xb4\x14\xe4\xca\x44\xa9\x0b\xe2\x8d\x21\xe7\x8d\x17\x32\x89\xa5\xc3\x83\xd2\x1c\xce\x4b\x33\xda\x1b\x94\xd7\xf7\x06\xe5\x18\x00\x5f\xe3\x02\xbf\x5c\xa0\x7a\x24\x77\xfa\xf4\x69\x3a\x79\xf2\x24\xc6\xe3\x31\xdd\xbc\x79\x93\x77\x7f\x5d\xf5\xa0\xb5\x35\x29\x47\x50\x60\x97\x4d\x15\xc9\x3a\xe1\xdf\x62\xf6\x85\x7f\xe6\xf9\xc9\xf6\xd8\x9c\x9b\xa2\x10\x29\xdf\x6d\xe4\x9b\x81\x9e\x5e\xc6\x7b\x1c\x32\x9d\x67\xa2\x4d\x92\xc4\x68\x87\xeb\x50\xfb\x00\x36\x8b\xe6\x3c\x93\x19\x80\x59\x69\x30\xba\x74\x68\xf6\xc6\xad\x61\x71\xb5\x20\x37\xe3\xe2\x52\x19\x07\x6d\x22\xda\xe2\x54\xbd\x78\x98\x76\x0d\xb4\xcd\x1d\x57\x1b\x26\xfe\x1e\xa2\xf0\x0b\x17\x40\x83\xfd\xcb\xf0\x78\xdc\x8e\x14\xcc\xdc\x68\xe1\x89\x9a\xb8\x74\x50\x98\x93\xf7\xee\x66\x67\xde\x7d\x7d\xe5\xfd\x06\x94\x03\xc8\xa9\x3e\x5f\x80\xfd\x69\x75\xe1\xf9\x26\x83\xed\xf8\x1e\x8b\xeb\xfa\xd5\x9e\xe5\xbb\x26\x0b\x1c\x4e\x3e\xf7\xa5\x57\x06\x2e\xaf\x31\x5a\x35\xd9\x8c\xe5\xd3\xc5\x3f\xed\x79\x59\x19\x62\x38\x0f\x82\xbb\x8b\xae\x18\x4f\x7d\x90\xfc\x59\x46\x9b\x94\xa7\x18\xde\x18\x3d\x31\x1d\x20\xf1\x49\xda\x82\x5e\xe8\xc8\x53\x83\xe1\xf1\x1c\xa7\x84\xd5\xf2\xd7\x70\x2c\x83\x97\x74\x73\x5a\xbb\xe8\xd3\xf2\x95\x74\x6b\x71\x12\x96\xf3\x78\x59\x1b\xd3\x68\xe7\xf8\xb4\xe7\xae\xf4\x5a\xfd\x68\xf2\xc2\xf5\xbc\xa4\x5b\x3e\x23\xf2\xac\xf1\xd3\x7f\x87\x06\xfb\xa9\x4f\x7d\xca\x7c\xfb\xdb\xdf\xb6\x79\x9e\xcb\xcd\x16\xde\x80\x49\x89\x2a\x7d\x9a\x58\xac\x3e\x7a\x7d\xf5\xfd\xa7\xb6\x07\xbf\xb2\x3a\x4b\x3e\x68\x1c\x0e\x55\xde\x72\x62\xfd\x43\xb3\x34\x40\xf6\xcc\x8e\x3d\xb5\x76\x90\x2a\x81\xf7\xdc\xfe\xb4\x17\x6f\x02\xb5\xcf\x45\xa5\x7c\x38\x37\xef\xbb\xff\xd6\xe0\xd7\x7f\xe1\x9d\xd5\x33\xc7\xf6\xb2\x63\xa8\xce\x35\xcb\xa9\xbe\xbf\x8f\xed\x86\xf2\xe5\xc2\xfa\xfa\x3a\xd8\xd9\x2e\x9c\x5f\x5d\xf2\x63\xb1\x58\xdf\x9a\x1c\x74\xd5\x1f\x44\x3a\x60\x11\x37\x8f\x97\x6d\xb3\x4b\xee\xc0\xde\xad\x76\xe4\xbf\xac\x13\x69\xb1\x49\x2b\xde\xa1\x6d\x89\x81\xc1\xc6\x46\x6e\x4e\xfc\x55\x91\xce\xb9\x73\xe7\xce\xb9\x3f\xf9\x93\x3f\x31\xc6\x18\x9e\xb7\x7f\xe6\x9d\xb3\xf7\xba\x64\x00\xb2\x59\x6a\xdd\xd1\x71\x76\xf4\xd0\x34\x3d\x9e\x97\xb4\xc2\x96\xe2\x82\x14\xf9\xe1\x51\xae\x86\x09\x06\x8d\x43\x6b\x11\x15\x29\xe9\xd8\xb6\xed\x1a\xbe\x59\xcb\xe2\x17\x6e\xf9\xbc\x7d\xfe\xad\x6d\xd3\x3c\x9f\xa6\xfc\x75\xbe\xdc\x0a\x22\x18\x87\x34\xb1\x66\x25\x71\x34\x1f\xe5\xf6\x8d\x5b\x2b\xc5\x2e\x10\xb6\x46\x3b\x34\xf5\xe0\x7f\xdd\xd6\xd6\x16\x7d\xe8\x43\x1f\xa2\xe7\x9f\x7f\x5e\xe3\xff\x41\x83\x66\x55\x1f\x34\x68\x23\xd4\xbe\x79\xc7\x46\xff\x9a\x12\xee\x83\x5f\xca\x66\x1f\xba\xe4\xe8\xf7\x6e\x86\xbb\x8d\xef\x4e\xf3\xea\xd2\x07\x32\x2c\xe3\x47\xcc\x2b\xa3\xf1\x9e\xc3\x52\x24\x9e\xa7\x89\xe9\x16\x39\xf2\x97\xb0\x46\xf9\xde\x45\x8b\xc4\x2f\x69\x5c\x56\x46\x99\x4f\x2c\x3e\x46\xb7\x56\xde\xae\x32\x6a\xb2\x1a\xa3\xab\x2b\x6f\x19\x0e\x02\x23\xcb\x7b\x10\x9e\x48\xcf\x40\x57\xfe\xd2\x63\x15\x60\xdf\x7c\xf3\x4d\x0b\x54\x1e\x7c\x31\x3d\x94\xa0\xb9\xff\x2e\x07\xb0\xf2\xee\xeb\xc3\x87\x1e\xbb\xba\xf6\x7f\xde\x33\xca\x3e\x99\x5b\x3a\x41\xa0\xc4\xf7\x0b\x00\x16\xfb\x10\xa1\xbb\xfd\x3b\xb9\xc6\xdf\xcf\x07\xc8\x0b\x83\x69\x56\xa4\xaa\xcf\xa9\x10\xb0\xe5\xb6\x7e\x19\x42\x96\x5a\x6c\xe4\xa5\xc1\x34\xb5\xd7\x6f\x0d\x8b\x6b\x45\xe2\xf8\xfd\x75\xa8\x07\xf6\x61\xbd\x0b\x00\xe7\xef\x35\x62\x7c\x8c\xb5\x0b\xf9\xbc\xac\x0d\xc4\xd2\xc5\x74\x46\x57\xdb\x90\x69\x63\xb0\x3c\x38\x60\xf1\x92\x45\x2d\x04\xb7\x1b\x1a\xe1\x90\x8d\xc8\x89\x6f\x1c\x96\xe3\x97\xae\x29\x35\xcf\x0f\x7f\xf8\xc3\x94\x24\x09\x77\x87\x01\x80\xdf\xe6\xc5\xdd\x7d\xe1\x0e\xa3\x22\x01\x0d\x0b\x33\x3c\x32\xce\x4e\xae\xce\xcd\x66\xe2\x2a\xc1\xe3\x85\x08\xcf\xae\x1d\x51\xc9\x89\xdf\x81\xd4\x08\xa4\x23\xb6\x1f\x3f\x08\x58\x95\xc2\x6f\x69\xab\xdf\x1a\x03\xc7\xa7\xf7\xef\xdc\x20\x42\x13\x57\xe1\x67\x5e\x96\x80\xaf\xb6\xf0\xfd\x62\xaf\x9a\x03\xc6\x21\x4b\x2d\x0d\x8d\xa3\x9b\xef\x6c\xcc\xdf\x9c\x25\x6e\xce\x3c\x51\xde\x5d\xe8\xd8\xc8\xc2\x19\x63\xc0\x04\x58\x53\x62\x9a\xab\xd0\x61\x51\xf1\xf9\x22\x48\x01\x27\x25\x0d\x0f\xd2\xe0\x89\x75\x40\xb1\xb4\x52\x71\xf3\x78\xc2\x22\x4d\xb1\xbc\x65\x7a\x4d\xa6\x63\x69\x24\x7c\x8c\x4e\x9e\x5e\x53\x04\xb1\x4e\xa4\x2f\xdd\x5d\xf8\xbb\xf2\xeb\xaa\x17\x8d\x77\x31\x99\xd0\xe8\xd6\x8c\xc7\x2e\x1e\x42\xc9\xb7\xab\x7e\x62\x74\x4a\xb9\x93\xf9\xf1\x67\x0d\x16\x2c\x8e\x7f\x8f\xb5\x0f\x4d\xce\xf9\x28\x51\x76\x9e\x5a\xba\x18\x9f\xad\x78\xe6\x65\x94\x38\x35\x79\x34\x1d\xf0\x1c\x37\x87\xe1\xf9\xcb\x7a\x90\xf5\xc4\xff\x64\x9e\x9a\x7c\x11\xc3\xd1\xc5\x43\x59\x5e\x8f\x57\x33\x6c\xba\xca\xec\xf3\x69\x95\xeb\xa3\x1f\xfd\x28\x7e\xed\xd7\x7e\x8d\x9e\x7c\xf2\xc9\x4a\xe5\x52\xb8\x03\xc8\xdf\xee\x9c\x11\xd1\xc0\x39\x37\x38\x3a\xce\x8e\x7e\xf0\xd2\xfa\x2f\xdf\xb7\x3b\xf8\xf5\x61\x61\x1e\xae\x0f\x91\x6b\x67\xc0\xfb\x05\x71\x96\x57\xd8\x51\x1a\xfa\x10\x6a\xd2\x2a\x78\x7c\xa9\x48\x41\xde\xf4\x3d\x8d\x27\xde\x38\x0c\xd2\x92\x06\x00\xc6\xfb\x03\x7b\xe5\xd6\x4a\xb1\x03\xa0\xf4\x07\xd2\xd5\xfd\x24\x9f\x42\x72\x5b\x5b\x5b\x54\xeb\x7e\xe9\xcd\xd0\xe4\xd4\x93\x28\xeb\x44\xd3\xf1\xbc\x5e\x62\x6d\x57\x7b\xd7\x64\xa6\x2b\x6d\xac\xdd\x01\x80\xf1\xc8\x34\xb7\xaa\xff\x8d\xb9\x45\x65\x58\xe6\x06\xe5\xcf\x9c\x71\x12\x9f\xf9\xd2\x97\xbe\x64\xa7\xd3\x69\x58\x4f\xe2\xd3\x51\x75\x52\xac\x3f\x45\xb6\xa0\xea\xee\xa2\xea\x0e\x23\xc2\xec\xea\xc6\xec\xad\xeb\x6b\xf3\x37\xa6\xa9\xdd\xa9\x8e\xf0\xf7\xb5\xe2\x9a\xff\x0e\xcd\x94\x0d\x6b\x22\xd4\x12\x9c\xea\x03\x9f\xc4\x09\xa0\xd4\xc0\x84\x29\x20\x86\xa8\xb9\xbc\xd1\x35\xcf\x1e\x2e\x62\x30\x79\x38\x57\xbf\xfb\xaf\x95\xe0\x7b\x5a\x90\x0f\x8b\xe4\x81\x53\x3b\x83\xff\xe3\xa1\x9b\xc3\x47\x52\x4b\xab\x70\xc8\x51\x4f\x15\xd5\x53\x47\x7c\x54\xc1\xaf\x49\x07\xe2\x2e\x62\xcd\xa5\x18\x73\xbd\x6b\x6e\xe2\x98\xfb\x5c\xe2\xd4\x82\x96\xb6\x8f\xfc\x68\xf9\xf3\xb4\x32\xef\x98\x7b\xbb\xeb\x9b\xc6\x17\x2d\x74\xf1\x44\xe2\xd1\xd2\x68\xf8\x62\x3c\x8d\xe1\xef\xca\xaf\xab\x5e\x62\x7c\x8f\xb9\xe5\x63\xae\xdb\x58\x5c\xcc\x0d\x1d\x2b\xbf\xcc\xb3\xcb\x65\x1c\x73\x5b\x1f\x84\x8e\x58\xe8\xaa\xfb\x2e\xf9\xe8\xca\x47\xea\xb9\x58\x19\x62\xf9\x20\x02\xdb\xc5\x23\xf9\x5d\xb6\x67\x1e\x62\xbc\x97\xcf\xda\xb7\x58\xd9\x34\xfa\x62\xe5\xd5\x68\x8a\xf1\xa7\xab\x1e\x2d\x00\xfb\xf8\xe3\x8f\xe3\xab\x5f\xfd\xaa\xe5\x3b\x88\xa8\x7d\x8c\x7f\x8e\x7a\xaa\xe8\xa1\x9b\x83\x87\x4e\xec\xe5\x9f\x1c\xce\xcd\x23\x04\x1a\xb6\x8d\x8d\x5a\xff\x12\xeb\x51\x5b\x6b\x12\x1b\x23\x85\x78\x42\x6a\xfa\x85\xaa\x87\x77\x7e\xcc\x5b\x7d\x26\x6e\x35\x2f\x6e\xed\x68\x7a\x1c\x07\x00\x26\x2b\xcd\xa9\x63\xfb\xd9\x47\x1e\xd8\x1e\xbc\x7f\x63\x92\x1c\x42\xb3\x5c\xc0\x4f\x15\x99\x60\x44\xb5\x75\x7f\xac\x8d\xc6\xda\xa5\xa6\x43\x65\xfb\xd2\xe4\x48\x3e\xcb\xbc\x63\xed\x44\xa6\x95\x74\xaa\xfa\x33\x76\x00\x5d\x6c\x84\xac\x8d\x1c\x64\x88\x59\x50\xfc\x1b\xb7\xd8\xa4\x55\x6e\x01\xe0\x7d\xef\x7b\x1f\x0d\x87\x43\x49\x03\x79\x58\xe6\x6d\x49\x50\x5f\x2d\x3e\x4b\x2c\x0d\xe7\xc9\xca\xe1\x49\x7a\x6c\x65\x6e\x0e\x1b\x54\x07\x05\x91\xa3\xe0\xdd\xe0\x37\x33\x4b\x23\xc2\x4b\x92\x6b\x62\x2a\xa2\xb8\xb5\xcd\xbe\x34\x6e\x44\x2e\xd5\x0e\x70\xb5\xc1\xc5\x4f\xe8\xad\x11\x35\xd7\x12\x78\x01\xae\x58\xc1\x85\x97\x98\xcb\xd0\xdf\x8b\x54\x2f\xd4\x4d\xd3\x92\xd6\x8d\xa3\xed\xeb\xeb\xf3\x8b\x93\xcc\x4e\x1c\xc1\x2f\xd4\x75\x7e\x67\x51\xcd\x43\xe7\x9c\x73\x67\xce\x9c\xd1\x76\x19\x69\x56\x71\xcc\xba\xd5\xe0\x65\x9d\xf5\xf1\x24\x40\x81\xd1\x2c\xee\xc0\x2d\x91\x8f\xe6\x01\x90\xf4\x68\xca\x38\x06\xdf\x05\x23\xf1\x76\x7d\x93\x3c\x58\x96\xaf\x36\x8a\x91\xcf\x5d\xf4\x74\x05\x59\x97\xb2\x5e\x63\xb0\x4e\x81\x89\x95\x6b\x59\xb9\x39\x2e\x3e\xca\x92\x65\xe0\x38\x20\x7e\x63\x23\x36\xf9\x8d\xd3\x69\xa1\xf3\xd6\x0a\x58\x59\xa7\x7c\x78\x11\xab\x0b\xa0\xad\x64\xbb\x78\xca\xe9\x90\x5e\x0c\x0d\x9e\xe7\x2d\x8d\x14\x9e\x8f\x43\xbb\x3e\x65\x79\x24\x1f\x62\x3c\xe7\x3a\xb7\xab\xd3\xd1\x46\xd8\x31\xb9\xe6\x65\x8b\xe9\x10\x9f\x87\x2c\x93\xa4\x29\xa6\xab\x62\x9d\x9b\x96\x8f\xfb\xe8\x47\x3f\x1a\xbc\x2d\x2c\x4f\xdf\x57\x64\x00\x72\x38\xac\xac\x14\x66\xe3\x43\x97\xd6\x7f\xe9\xd8\x7e\xf6\x9f\x32\x4b\xc7\x0c\xc8\xc0\x0f\x78\xa9\xd2\xcc\xd5\x23\xbf\x4e\x57\x17\x9e\x96\x97\xa6\x8e\xa8\x9e\x6b\xfd\x5e\x1f\xfc\xb2\xe0\xd9\xaf\xd3\x56\x9f\x6b\xe3\xc3\xd5\x53\x4d\x4c\xf7\x27\x8e\x32\x10\x46\xa3\xdc\x5e\xba\xbe\x3a\xbb\x05\xc0\xd6\x1b\x35\x4a\xaf\xff\xb9\x17\x86\x79\x5d\x38\xa9\x5c\x7e\x34\x99\x97\x32\x28\xe5\x40\xe2\x68\xf5\xdb\x22\x5e\xca\x2c\xcf\x4f\xca\x9b\xa4\x09\x22\x4d\x4b\x27\xf4\x39\xc7\x25\xa6\x2c\x97\x29\xd2\x2e\x23\x27\x66\x10\x85\x46\xf1\xf2\xcb\x2f\x3b\x71\x92\xae\x7f\xe6\xd6\x33\xd5\x2e\x3f\x03\x20\x71\x84\xc4\x11\x68\x63\x9a\x1e\x3d\x34\x4d\x8f\xd5\x6b\x5d\xc2\x94\x8f\x47\x14\x8e\xfc\xf7\xc2\xe3\x7f\x83\xe0\x91\xe0\x7e\xfb\xee\x23\xe9\x32\xf4\xae\x14\x7f\x10\x51\x15\xd5\x48\x3f\x5b\x6d\xc3\x9e\xbd\x81\xc3\x2c\x94\x00\xe3\x1a\xa1\xad\x8d\xa2\xfa\x9d\x8c\xc3\x4a\x66\x29\x2d\x8c\xbb\xb4\xbd\x52\xdc\x98\x27\x6e\x0a\x7d\x9d\x4b\x85\x8d\x9d\xac\x78\xfe\xfc\x79\x9a\x4e\xa7\x52\x49\x70\xc5\x1c\x53\x3e\x12\xde\x89\xbf\x58\xbd\x02\x8b\x72\xd2\xf5\xec\x05\x9a\xe3\x95\x8a\x56\x93\x1d\x8d\x66\x9e\x56\x83\xe7\xe5\x89\x8d\x3e\x63\xca\x52\xe2\x97\x0a\x80\xe7\x6b\xa0\x97\x87\x97\x89\x37\x7e\x49\xb3\xe4\x7b\x57\x90\xf5\xc2\x71\x76\xc1\xfa\xf7\xbe\xbc\x93\x7c\xd3\x64\x43\xc3\x21\x0d\x25\xa0\x5d\x66\x89\x53\xe3\x0d\xa7\x85\xc7\x73\xf9\x90\x9d\xb8\x26\x53\x9c\x26\xad\x4c\x92\x97\x52\x5e\x78\x9c\x66\x10\x70\x05\xec\xcb\xa1\xf1\x53\x2a\x7e\x74\xa4\x23\x16\x07\xb4\x3b\x0b\xce\x2b\x60\x11\x6f\xcc\xd0\xd3\xda\xb0\xec\xec\x24\x1f\x65\x19\xb4\x3a\x96\x86\x9e\xa4\x95\xa7\xef\x32\xee\x34\x23\x07\x1d\x69\x1c\x00\xbc\xf0\xc2\x0b\xbe\xff\x30\x40\xd8\x45\xe4\x0f\x30\xcd\x01\xe4\xc6\x61\xed\x81\x5b\x83\xfb\xde\xfb\xce\xea\x6f\xaf\xcd\xd2\x27\x0c\x68\xe0\x0d\x96\x4a\xed\x7a\xaf\x3d\xbb\xe3\xae\xce\xc2\xf7\x11\xfe\x72\x5e\x7e\x04\x87\x03\x10\xee\xc6\x03\x9a\xa9\xa4\x1a\x71\x38\xa9\x9d\x6f\xaf\xae\x4b\x10\x76\xb7\x12\x58\x5f\xe1\x0d\x18\xa4\x04\xb2\x93\xcc\x5e\xbe\xba\x31\x7f\xab\x4c\x16\x2e\x62\x74\x44\x64\xf9\xd9\x2e\xc7\x8f\x1f\xa7\xf3\xe7\xff\x3f\xea\xde\xf4\xd7\x92\xe3\xb8\x17\xfc\x45\x56\x9d\xed\xee\x7d\xbb\x9b\x6c\xee\xe2\x62\xd2\x8f\xd2\xc8\x52\x5f\x5a\x4f\x92\x21\xd9\xcf\xf6\xc8\x86\xfd\x2c\xf9\xbd\x07\x19\x82\x00\x1b\x82\x64\x12\x98\x7f\x89\x84\x30\xd6\x07\xc3\x02\x2c\x18\x32\x3c\x5f\x6c\x48\x98\x19\x8d\x25\x0c\x6c\x34\xb5\x90\x43\x89\x32\x29\x2e\xdd\x64\x93\xbd\xdd\xa5\xef\x72\x96\xaa\xcc\xf9\x50\x99\x59\x51\x71\x22\xab\xea\x36\x5b\xb2\x5f\xa2\x6f\x9f\xaa\xcc\xc8\x88\xc8\xcc\xc8\xc8\xc8\xc8\xa5\x5e\x4b\xf5\xb7\xc0\xae\x34\x32\x64\x3f\xd1\x74\x8a\xc4\x67\x14\x18\x99\x97\x7b\x73\x48\x81\xd7\x74\x83\x66\x18\x5b\x8e\x48\x06\xcd\xfa\x4a\xc1\xb5\xe1\x38\x4d\x68\x74\xb2\xc5\x62\xc1\xe3\x43\x1a\x5f\x2a\x2a\x20\x4e\x18\xed\x4d\x8a\x1b\xef\xad\xcf\xde\xbc\x3d\x2a\xae\x59\x42\x51\xd5\x02\x93\x00\xa0\xe9\x21\x41\x2d\xa4\x8d\xe3\x47\x0e\xf1\x3d\x58\xc8\x8d\xe0\xa2\x30\x79\x03\x03\xf1\x0b\xd1\x40\x90\x00\x79\x23\x2f\xc3\x5d\x8b\x7d\x34\xa9\x02\x9e\xda\x63\x53\x83\x32\x21\x36\xab\xf3\xec\xe9\x47\x76\xc7\x9f\xba\xf7\xf6\xf0\xfe\x61\x61\xd6\xc0\x96\x8c\xfc\xdf\xd2\x67\xda\x9d\x73\xd8\xdf\xdf\x97\xae\x3b\x59\xb7\x40\xb3\xdd\x53\xf0\x01\x4e\x06\x2d\x4e\x1b\xf8\x53\x41\x73\x3b\x4b\x3c\x46\xfc\xb6\xd1\x37\xec\x4f\xe6\xd5\xca\x28\xf9\xd0\x0c\x1a\x0d\xbf\xe4\x51\xe2\x4a\xf1\x99\x6a\x03\x0e\x67\xc5\xaf\x16\xba\xea\xac\x6f\xe8\x2a\x2f\x8f\x6b\xab\xb7\xd3\xd2\xe8\x92\x1b\x0d\x6f\x5f\x3a\x29\xb9\x09\x74\x35\x17\xb6\x46\x2b\x65\xdc\x6a\x41\xe2\xee\x92\x25\xcd\xc5\x9e\xaa\x4b\x89\x57\x93\x65\xee\xe2\xe7\x21\x15\xdf\x56\x66\x59\x37\x5a\x90\xfd\x4a\xd3\x1b\x1c\x4e\xbe\xb7\xf5\xc5\x54\xe0\x65\x59\xd2\x09\xcf\x3e\xfb\x6c\x83\x16\xd5\xb7\xe4\x56\x7f\x0e\xc3\xdc\xd2\xf8\x81\xbd\xf1\x63\xab\xf3\xec\xd7\x33\x87\x71\xbc\x09\x37\xe4\xf1\x8a\x97\x7b\xe9\xab\xbf\xda\x40\x09\xf6\x08\xe4\x18\x13\xb4\xba\x73\xb5\x95\xc0\x86\xe9\x2a\x4b\x3d\x99\xe6\x26\x67\x05\x5b\x6f\x40\x08\x79\xc9\xd1\x78\xbc\x30\xf7\x9f\x3b\x1a\x7c\xf8\xde\xdb\xc3\x7b\x50\x5f\x9c\x97\xa3\xda\x6c\x2c\xf5\x1d\x1e\x7a\xe8\x21\x5e\x5f\x3c\x70\x58\x29\x37\x29\x9d\x09\xf4\x6f\xab\xb6\x3e\x94\xd2\x77\x12\x4e\xd2\x89\x38\xdb\x3e\xb2\x98\x9a\x31\x86\x20\x67\x57\x1c\x07\xb7\x9c\xb4\xd9\xa3\xf6\x2c\x2d\x3d\xf3\xa3\x1f\xfd\xc8\x5e\xba\x74\xc9\x5d\xbc\x78\x31\x36\xab\x17\xc0\xb0\xd1\x2a\x5a\xd2\xce\xb9\x1c\x40\xe6\xc8\xe5\x8e\x88\xd6\xe6\xf9\xc6\xe6\x34\xbf\x67\x60\x69\x1c\xbf\x1d\xc4\x99\x8a\x56\xb5\x47\x5c\x99\xc6\xde\x23\xe3\x65\x8a\xef\xf2\xf6\x90\x54\x4b\x75\xe3\xd2\xba\x60\x82\x78\x34\x9e\x9e\xff\x74\x40\xa0\xc2\x2f\xb9\xa3\x7a\x19\x49\xba\x0d\xc3\x53\xbd\x64\x54\xe5\xf7\x66\x14\xa8\xba\x5d\x71\xc3\x38\xdc\xd8\x9b\x14\xd7\xa7\x03\x7b\x62\xc9\x95\xde\xf2\x0e\x5f\xd8\xe6\x96\xb5\x23\x22\x84\x0b\x8a\xb2\x2c\x33\x7e\x13\x97\xac\x77\x6e\xdd\x6a\x69\x9a\x35\xce\xdb\xb1\x8f\x57\x20\x04\xe9\x89\xd1\xbc\x3b\x1a\xdd\xd4\x0c\xd5\x2a\xf1\xdc\xa2\x97\x33\x70\x0d\xb7\x26\xff\x1c\x4e\x76\x36\x39\x73\xd1\xca\x17\xf2\x12\x7b\x6f\xeb\xb4\xda\x0c\x5e\xd2\xe2\x3c\x69\x75\xa1\xb5\x41\x5b\x59\x53\x79\xa4\x1c\xa4\x78\x97\x33\x5e\x59\x0e\x59\x7f\x7c\xf6\xce\xdb\x45\xcb\x6f\x45\xbc\x9c\xa9\x49\x38\x0d\x0f\x14\x38\xad\x3d\x39\x5f\xbc\x7e\xb5\xfc\xb2\x9d\x78\xfe\x54\x1e\x8d\x1f\xb0\x38\x6d\xc6\x2b\xfb\x26\xf7\x94\x48\x3a\xa9\x32\x49\x3c\x52\x66\x53\x78\xa4\x8c\xc8\x7e\x23\xeb\x47\xd6\x79\x08\x5a\x9b\x71\xfa\xdc\x30\xe7\x6d\x2a\xe1\x35\xfd\xd2\x68\x93\x95\x95\x15\xf3\x17\x7f\xf1\x17\xe4\x4f\xa5\x86\x09\x5c\xd8\x52\x10\x8e\x10\x8f\x32\x47\x93\xad\x93\xfc\xec\xd3\xd7\x56\x7f\x7b\xeb\x38\xff\x2d\x03\x1a\xf2\xbd\x2b\x21\xf0\x8f\xe7\x86\xe5\x9c\xe6\xc6\x5d\x9f\xe8\x15\x3f\x6f\x94\x2a\x39\x18\x30\x58\xf2\xa2\x34\x6a\x80\x8d\x45\xe1\xbe\xb0\x9a\x46\x3d\x56\x50\xb5\xb2\x30\x3f\x19\x94\x6f\xbf\xbb\x39\xbf\xea\xf5\x7c\x81\xea\xfb\x75\x56\xea\x7e\x22\x02\xdb\x2a\x20\xdb\x4c\x7a\x4b\x38\x57\xbc\xcd\x78\xfb\x70\x38\x52\xe0\x78\x9f\x06\x96\xe5\x52\xd3\x0b\x60\x30\x1a\x3e\xde\x57\x2c\x50\x6f\xce\x05\x4b\xe0\xef\x9a\x42\x08\x41\x9b\xc9\x74\xcd\x32\x52\x41\x9b\x61\x34\xf2\xf2\xcd\x46\x7e\x4f\x47\x70\x93\xcd\x9d\x73\x73\x22\xf2\x9b\x74\x69\xea\xbd\x2e\x6f\x1f\x8c\x8b\xf7\x2c\xc1\xba\x60\x00\x80\xd5\x12\x7f\x5f\xfa\x5a\xb4\x6b\xc0\x7a\x06\x96\x84\x2e\x1a\x2d\xce\x5b\xe4\x4c\x24\xb8\x91\x14\x3f\x05\xc0\x24\xbe\xb6\xda\x5d\xc3\xd2\x0e\xd6\x77\x6d\x10\x55\x11\x0d\x0d\x43\xc0\x68\x41\x0f\xdf\x7f\x30\xfa\x9d\x47\x77\xc7\x4f\xae\xce\xcd\x06\xf9\xfb\x5d\x50\x6f\xd4\x0d\x9b\x75\xe1\x7f\x0d\x11\xe1\xb9\xe7\x9e\x33\x65\x59\xa6\x2c\x5f\x39\xc3\xd2\xd2\xda\xe4\xa0\xcd\x1b\x23\xe3\xb5\xd9\x60\xea\xb9\xed\x9d\xc3\xa7\xe4\x4d\x96\xab\x0f\xdd\x54\xfe\xbe\x21\x35\xfb\x95\x75\x28\xeb\x44\x9b\x71\x68\xb4\xb5\xd9\x73\x57\x7f\x6d\xab\xe3\x54\x68\xab\xbb\xb6\x3c\xf2\xb7\xad\x6e\x35\x3a\x5a\x59\x52\x65\x68\x2b\x97\xf4\x06\x68\x70\x72\x36\xa9\xf1\xc3\x61\xdb\xda\xaf\x2d\xaf\x0c\x6d\xb2\xad\xcd\x74\xb5\xfa\xd1\x9e\x39\x6f\x5a\x1d\xa6\x64\x83\xe3\x69\xe3\xdd\x8a\x3f\x8e\x1f\xe2\x5d\xf2\x90\xaa\xf7\xd4\xd8\x61\x15\x38\x95\xde\x70\x38\x34\xc7\xc7\xc7\xf6\xeb\x5f\xff\xba\x75\xb5\xb7\x3c\xe8\xbe\xd0\x6e\x39\x11\xe5\x99\xa5\xe1\x99\xe3\xe1\xb9\xd5\x59\xf6\x58\xe6\x68\x25\xdc\x70\x0e\xa0\xf6\xae\xd7\xf3\x4d\x75\x2a\xee\xe2\x7f\x84\x7a\x2f\x8c\x1f\x69\x99\x8b\x9e\x7b\x72\x62\x2c\xbf\x38\x4c\x9a\x7e\x54\xe7\xab\x81\x62\xdc\x70\x54\xd0\xb9\x8d\x59\xf6\xc8\xc0\x62\x25\x94\xc9\x4f\xdc\x8d\x3f\x59\x14\xeb\xc4\x39\x87\xcf\x7d\xee\x73\x52\xbe\x53\xfd\x28\xa5\x9f\x53\xba\xab\x0d\x4e\x83\x49\xb5\xf7\x69\x64\x0e\x40\x73\xa9\xa8\xab\x30\x5a\xa7\xe8\x53\x88\x54\x68\xab\xac\x18\xf7\xfb\xbf\xff\xfb\x61\x87\x34\xbf\x29\x36\xfc\x36\x4e\x17\x01\x98\x02\x98\x16\xc6\x1d\x5f\x5b\x5b\xbc\xf5\xee\xc6\xfc\x17\xb3\xdc\x1e\x00\x10\x56\x08\x9a\xc2\x22\x43\x63\x71\xb1\x09\xce\xb3\xd4\x72\x55\xed\x19\x27\x01\x27\x49\x68\xa4\x34\xd6\x64\x22\x77\x19\x44\x78\x22\xac\x4d\xb3\x8f\x3d\x76\x63\xf2\x7b\x0f\xed\x8d\x9f\x98\x2c\xcc\x1a\x2a\xc3\x85\x2f\x1b\x35\xda\xc8\xbb\x12\xef\x24\xa4\x94\x3f\x0f\x7d\x0d\x80\xff\x48\xe1\xdf\x8b\x9f\xb6\xba\xfa\x20\x3c\x9d\xa6\xff\xfd\x7b\x04\xcd\x40\x48\x85\xd3\xf2\x9f\x92\xed\x94\xf1\xc1\x9f\xbb\x68\x69\x8a\x5f\xe2\x97\xb0\x9a\x81\x93\x1a\xe4\xef\x24\xdc\x8d\xf6\xed\x53\x0f\x6d\xfa\xbf\x0f\x3f\xd2\xf0\x48\x85\x3e\x69\x7d\xf5\x8f\x16\xc2\x4d\xb9\x39\x80\xdc\x38\x8c\xd7\x67\xd9\xf6\xa0\x30\x17\x00\x54\x4e\x93\xa0\xeb\x99\xa2\xf5\x8e\xf7\x60\x9f\xc4\xc0\xb6\x24\xfa\x34\xd7\x98\x5c\xf2\x49\x2d\x98\xa7\x25\xa2\x68\x4c\x4c\x11\x3d\x3a\x3c\xf0\x0b\x4b\x2b\x10\x07\x72\xc8\x87\xa5\x39\xb7\x31\xcd\x1f\xbe\xf7\xf6\x68\xdb\x39\x17\x2e\x24\x0d\xf2\xc6\xff\x00\x00\xff\xf4\x4f\xff\xd4\x57\xee\xba\xda\x38\xc0\x68\xa1\xab\xff\xf5\x8d\xd7\x60\x96\x70\xf7\x29\x48\x97\x92\xed\x33\xb3\xe0\x15\xd9\xa7\xb3\xc4\x0a\xfc\xce\x77\xbe\x13\xad\x67\x66\x49\x72\x2b\x2d\xec\x79\x99\x02\x98\x3a\xe7\xa6\x00\xa6\x07\xe3\x62\xef\xea\xc6\xec\xcd\xbd\x49\xf1\xae\x83\x6b\xd0\x70\x8e\x1b\x1d\x80\x13\x12\xa3\xb9\x0b\xb9\xb3\x95\x1b\x10\x95\x5c\x52\x5c\x26\x6a\x5a\x27\x95\x54\x37\xe1\xfd\x4c\xc0\xd5\x79\xb9\xf4\x86\x0d\x61\x9c\x38\xd5\x8f\x01\x0c\x54\x55\xd0\x78\xeb\x24\xff\xc4\xe3\x37\x26\x9f\xba\xf7\xf6\xf0\xc1\xac\xc4\x18\xcd\xbd\x2e\x0d\xcf\x0b\x2d\xf9\x29\x97\xda\x24\xf5\xdb\x26\xac\x9a\x01\xdb\x26\x57\x9a\x2c\x68\x38\x52\xf1\x7d\xbc\x84\x7d\xf3\xb4\xd1\xef\xe2\x27\x45\xbb\x8d\x1f\x49\xaf\x6d\xf6\xde\x95\xd6\x07\xbe\xab\x7f\xf7\x29\x43\x1f\x7e\xda\x78\xec\xc2\xd3\xc5\x57\xd7\x80\xca\x9f\x03\x6e\x8b\xe5\xfa\x95\xc6\xb7\x4c\x6b\x53\xbc\x9a\x17\xa4\x53\x77\xb5\xc0\xb6\x4d\x02\x65\x19\xd0\x03\x36\x55\x86\xb6\x89\xa8\xc6\x93\xa4\x21\xeb\xaa\xcb\x60\xe3\xf0\x6d\x06\x8b\xc4\x27\xdb\xaa\xcb\x08\xe2\x79\x23\xec\x7c\x3e\x17\x7a\xde\x85\xc9\x9a\x09\xbf\x61\xaf\x8b\x71\x34\x5e\x9b\x65\xe7\x87\x16\xdb\x01\x7e\x59\xef\x33\xaf\x09\x4f\x10\x33\xd4\xe8\x6b\x51\x66\xa6\x4b\xc6\x08\xd3\xe1\x8d\x65\x25\x12\xbf\x1e\xa6\x99\x54\xed\x7d\x34\x96\x86\x93\x45\x76\xcf\xe6\x49\x7e\xce\x6f\x34\x36\xc1\xe3\x12\x3e\x22\xe9\xcb\x0e\x60\x69\xbf\x4f\x97\x2e\xe7\x21\xd5\xef\x4e\x23\x0f\x29\xf8\x36\xbc\x9d\xfd\xb2\xed\x23\x8b\x5a\x7c\x6a\x7d\x32\xb5\xb6\x19\xe2\xe4\x5f\x48\xb3\x4a\x3e\x23\xe0\xf0\xe2\x8b\x2f\x3a\x7f\xfb\xa1\x5c\xef\x0c\xbf\x59\xf8\x25\xa2\x1c\xd5\xe9\x22\x03\x50\x36\x29\xb2\xd5\xed\x93\xfc\xbe\x81\x35\xa3\xc0\x74\xdc\xe4\x1d\x10\x88\x85\xc9\xa5\x85\x55\xf2\xb1\x62\x0d\x33\x1e\x2a\x42\x70\x16\x52\xf3\xd2\x5b\xa0\x71\x85\x73\x38\xda\xec\xd8\xd2\x54\xb0\xe4\xeb\x25\x25\x6a\xe4\x01\x5b\xc2\x92\x96\x3f\x81\x60\x1c\x56\x06\xa5\x19\x3b\x72\x7b\x47\xa3\xf2\xfa\xf1\xd0\x4e\x41\x51\xd9\x3a\xf6\x1b\x8a\xc6\xbf\x65\x24\xdb\x52\xfe\x36\xbc\x9b\x68\xae\x4b\x72\xc7\xa6\x14\xc8\x94\x73\x29\xf2\xa0\xd0\xd3\xf2\x68\xf1\x92\x1f\x0d\xbe\x6f\x9e\x36\xfa\x5d\xfc\xa4\x68\xb7\xf1\x23\xe9\x85\xbf\x25\x99\x4f\xbc\x6b\x7c\xb7\xc1\xcb\x3e\xaa\x95\xa7\xab\x0c\x7d\xf8\x69\xe3\x91\x87\x20\x2b\x29\x1a\xbc\x1e\xb4\x67\x49\x8b\xc3\x48\xdc\xb2\xee\xb5\x35\x7b\x99\x8f\xd3\xd1\x9e\x53\xf0\x92\x3f\x0e\x0b\x2c\xeb\x39\xa9\xc4\xa5\x8c\x70\x1e\x89\xe5\x4f\x95\x91\xc7\xb7\xf5\xbd\x90\x87\xe3\xec\x6a\xa7\x2e\x63\x42\x83\xe7\xc6\x0b\xa0\x97\x3d\xd5\x7e\x1a\x7c\x5b\xde\x98\x3e\x1c\x0e\x4d\x59\x96\xee\xb9\xe7\x9e\x33\x00\x40\x44\x19\x55\x67\x83\x8d\x3f\x02\x3d\x70\xce\x8d\x0c\x68\xbc\x3a\xcf\xce\x3c\x7a\x6b\xf2\x1b\xe7\x8e\x06\x9f\x30\xfe\xc2\xb9\xe6\x81\xe7\x30\xd1\xab\x3f\x96\xcb\x1b\x54\xbb\x22\xa3\x3e\xe4\xe1\x27\xa4\xd4\x1c\x23\x80\xfa\x39\x8c\x41\x71\x9f\x24\x6f\x85\x98\x6f\xc9\x94\xaa\x2e\xb7\x23\xd8\x45\xee\xf6\xf7\x26\xc5\xcf\xdf\xdd\x9c\x5f\x05\x30\x63\x5b\x27\xc2\x56\x8a\xf8\xe1\xdd\x17\x5e\x78\xc1\xd6\x98\x3b\xeb\xb5\x0d\x26\xa5\xb7\xda\xf0\xdd\x29\x7c\x8a\xa7\x98\x41\xbe\xa7\xdc\x33\xda\xcc\x23\xc4\xa7\x66\x04\x6d\xa1\x8f\x55\x6d\x80\xea\x43\x59\x4a\x1e\xcd\xeb\x12\x4f\x17\x39\x60\x7a\x38\x2a\x6f\xbd\xb7\x3e\x7f\x7b\x77\x52\x5c\xb1\xde\xeb\xb2\x54\x03\x3e\xb2\xf2\xaa\xb8\xf0\xca\x93\x20\x23\x6b\x37\x21\x87\x6f\x0a\x59\x40\xd7\xa4\xe7\xe1\xa9\xf6\xce\x68\xcb\x44\x92\x3e\xd7\x52\x4b\xf0\x8e\xcc\x64\x61\x3e\xf4\xc0\xfe\xe8\xd3\x0f\xed\x8d\x9f\x5e\x9d\x65\x1b\xf0\xdf\xb3\x40\xcb\xb7\x8c\x42\xe7\xee\x08\xa9\xf6\xfe\x8f\xbe\x24\xf1\xcb\x08\xa9\xfa\xd2\xfa\x50\xf8\xed\x53\xc7\xc0\x2f\xbf\x0e\xff\x3d\xdb\xa8\x6f\xbd\xb5\x85\xd4\x32\xcf\x69\x68\x9e\xb6\x0e\x4e\xbb\x9c\xa5\x79\x47\x52\x78\xfa\xb8\xdb\xef\xc6\x12\xa2\xd4\xcb\x7d\x61\x65\xe8\xf2\x78\xdd\x0d\xf9\xfa\xc0\x38\x84\xc7\x25\xe5\x95\xca\xc9\x61\x38\x28\x69\x3c\xac\xee\xc4\x1a\x57\x49\xda\x66\x80\x2a\x9e\x54\x0d\xcf\x21\xaa\x2c\xc1\xc0\xa9\xad\x12\x66\xb4\x30\xcf\x79\xc3\x83\xce\xd7\x90\xea\x1b\x53\x85\xa7\xc6\x79\x78\x0a\xa8\x4d\x66\xb1\x32\x2c\xcc\x46\x58\xfa\x42\xed\x4d\x92\xe5\x4f\xe9\xfa\xd3\x2e\xe1\x74\x2d\x37\x9d\x46\xa6\x4f\xab\x13\x96\x70\xa7\x2e\xa0\x93\xcf\x32\x68\xb3\x1f\x62\xbf\x96\xc5\x77\xcd\x62\x34\x5b\xa2\x31\x5b\xba\x7c\xf9\xb2\xbb\x74\xe9\x52\x38\x97\x4f\xec\xb3\xde\xa1\x79\x83\x2b\x90\x50\x37\x62\x66\xc9\x19\x90\xa3\xc9\x22\x5b\xd9\x3e\xce\x2f\x0c\xac\x19\x03\x4d\x46\x6b\x63\xc0\x79\xcf\x47\x74\xa1\x34\xd3\xc3\xf7\xc6\xc3\x7b\x80\x85\xb7\x9a\x7d\x62\xb0\xc4\xc3\x69\x20\xf5\x56\x44\x2f\xcd\x51\x66\x15\x8b\x24\xdc\x0f\xb0\xc4\x47\x80\x87\x8b\xc7\xa7\x09\x18\xe6\xd6\xac\x64\x8e\x8a\xe9\xc0\x5e\xdb\x1b\x2f\xf6\x9c\x41\xc9\x76\x98\x4b\xef\x0b\x01\xd5\x67\xd0\x9f\x7c\xf2\x49\x32\xc6\xd0\xfb\xef\xbf\xdf\xd6\xde\xc4\xfe\x52\x70\xd2\x23\x67\x44\x1e\x99\x1e\x60\xa4\x3c\x68\xbf\x5d\xb3\x80\x14\x3f\x1a\xee\x3e\x3c\x68\xcf\x6d\xca\x5b\x83\x73\x58\xae\x8b\x2e\xbe\xb5\x3a\xd3\xea\xb3\xab\x1d\x52\x74\xfa\xd4\x69\x8a\xa7\xb6\xbe\xac\xd1\x0e\xef\xdc\x5b\x00\x96\x2e\x71\x6a\x93\x26\x29\x3b\x24\xe2\x9d\x02\xcf\xe9\xa4\xca\xc9\xd3\xda\xf6\x4f\x70\xbe\x89\xc1\x6b\x1e\x16\xc9\x9f\x86\xbb\xad\x8f\x48\xcf\x8a\x56\x16\x39\x30\x6b\x75\x22\xeb\x53\x2b\x43\x78\xe6\x65\x91\x32\x2c\xdb\x4c\xf6\xcb\x54\xdf\x02\xd2\xed\x04\x2c\xd7\xbd\x26\xd7\x92\x8e\xd6\x56\x9c\x8e\x5b\x59\x59\x31\x8b\xc5\xc2\x3d\xfb\xec\xb3\xc6\xdf\x7f\x15\x4f\x9e\xa2\x9e\xbc\x0d\x89\x68\x64\x1c\xc6\xab\xf3\xec\xec\x43\xbb\xe3\xa7\xcf\x4c\x07\x4f\x03\x64\xea\x13\x9f\x4e\xf5\x76\x34\xaf\xfc\x6f\x3e\x57\xb6\x0a\x3b\x55\x1a\x32\x11\x83\x15\xf7\x80\xf1\x13\xa9\x11\xbe\xe1\x6a\xe7\x30\xd4\x80\x77\x80\x2b\x8c\x3b\xda\x5f\x29\x5e\x7b\x7b\x7b\xf6\x86\x83\x9b\xa3\xda\xeb\xb9\x70\xce\x95\xbe\x9e\xc2\xad\xc1\x00\xe0\x1e\x7c\xf0\x41\x7a\xf5\xd5\x57\xb5\xb6\x94\xb2\xc1\xe5\x48\x83\xe7\xb0\x56\xc1\x25\xdb\x0c\x0a\x5e\x0b\xbd\xbd\x39\x2c\x04\x9e\x06\x0e\x6d\x56\xd8\x77\x26\xa4\xc1\x69\xca\x27\x35\x3b\xe7\x6b\x94\x9a\xa5\xa8\xce\x60\xbc\x1b\x8c\xe3\xb0\xf0\x77\xba\xf8\xbf\x29\x11\x55\xfb\x5d\x08\xd3\xc3\x61\xb9\x77\x75\x63\xf6\xe6\xad\x95\xe2\x6d\x4b\x95\xd7\xa5\x61\x04\x84\x5f\x62\x26\x86\xf8\x8a\xb3\x93\xdd\x6e\xd9\x12\x89\x79\xe2\x17\xa4\x83\x20\x3b\x34\xaf\xf1\xa7\x3a\x4b\x44\x19\x3b\x41\xbd\x2e\x19\x0c\xa1\x06\x1f\x70\x0c\xbe\xbe\x57\x80\x40\x18\x94\x74\xee\xec\xd1\xe0\xe2\x87\x6e\x8d\xff\xf3\xbd\xb7\x87\x17\x00\x8c\xc3\x45\x4b\x50\x36\xeb\x86\xb5\xd0\x8d\x8d\x0d\xfc\xe4\x27\x3f\xe9\x3b\xbb\xd4\x14\x7b\x5b\x7a\x97\x77\x26\x25\x0f\xf2\xb7\x4b\x86\x52\xfc\x6a\xb8\x4f\x23\x9f\x46\x79\xbe\x53\xef\x53\x1f\x38\xee\x45\xd4\xf2\xc8\xf4\x14\x8e\xd0\xce\x7d\xea\xbb\x8d\x1f\x99\xde\x95\x47\xa3\x17\xf8\x48\xf1\xad\xe9\x81\xb6\xf2\xf3\x78\x23\xd2\xda\xea\x4f\xe6\xd3\xda\x4e\xf3\x96\x48\xd9\x49\x19\x38\x92\x6f\x4d\x7e\xb4\x78\x0d\x77\x4a\xf6\xbb\xf8\x93\xbf\x6d\xf8\x64\x59\x34\x59\xd7\xea\x27\x55\xa7\x6d\xf5\x2f\xf5\x7b\x5b\x79\xbb\xe0\x35\x5a\xe6\xf8\xf8\xd8\x02\x40\x58\x16\xe1\x03\x3d\x00\x90\xbf\x16\x3f\xe0\x24\x90\xa1\x4a\x27\x86\x74\x44\xcd\x4b\xf5\x29\xce\x78\xf8\x87\xe2\xa5\xfd\xcd\xab\x2b\xb8\x95\x82\x6a\x18\xa8\xc7\x0b\xd7\xb8\x72\x83\xdb\x2f\x15\x0d\x27\x06\x97\x3a\x38\x4f\x88\x9d\x8e\xe2\xc9\x15\xff\xd5\xfd\x5d\xf1\xeb\xd0\xe1\x4b\xd1\x0a\x3c\xfe\xfe\xef\xff\x3e\xd5\xf6\x5a\xfb\x41\x79\x36\x4a\x5a\x2a\xae\x4b\xee\x64\x90\x72\xd5\xa5\xf7\xac\x66\xc5\x6b\x48\xb9\x81\xa3\x09\x35\x27\xd2\xa5\xec\x25\x6e\x8d\x51\x15\xfe\xf2\xe5\xcb\x50\x8c\x16\x0b\x76\x29\x1d\xf8\x85\x74\x84\xe9\x3c\x73\x87\x37\x56\x17\x57\xdf\xd9\x9c\xbd\x76\x92\xdb\x3d\xc0\xdb\x18\x42\x5e\x1c\x6a\x19\x92\xc9\xd5\xbd\x2c\xe1\xc5\xa7\x31\x80\xca\xb8\xa1\xc6\x7b\x74\x2f\x52\x53\x88\x1c\x42\xa7\xf0\xff\x33\x9a\xa8\x2d\xe4\x4a\x60\x5d\xe0\x8b\x19\x33\x8c\x08\x37\x41\x09\x94\x4f\x16\xe6\xe1\xfb\x0e\x86\x9f\x7e\xfc\xe6\xe4\xe2\x99\xe3\x7c\x1b\xf5\x92\x51\xca\x78\x01\x00\x7c\xf1\x8b\x5f\xd4\x0c\xc7\x3e\xa1\x6b\x00\xed\x0b\x9b\x0a\xa7\xe1\xe5\xb4\xa1\x4b\xee\x25\x4c\x5b\xc7\x3b\x0d\xad\x5f\x45\x48\x19\x09\x6d\x7d\xf7\x83\xc0\xca\x3c\xa7\x09\x7d\xea\xfe\xb4\x78\xa4\x71\xa9\x4d\xd0\xba\x68\xf6\xe1\x4b\xd2\xb9\x9b\xe1\x34\xfd\xe7\xb4\x7c\x6b\x71\x7d\xe8\xa5\x78\xb8\x1b\xfd\xf4\xb4\xfa\xa2\xb5\xee\xbd\x1e\x95\x63\x57\x15\xe7\xf8\x09\x9c\xea\xa4\x25\x37\x54\xb8\x7e\xae\x8d\x14\xaa\x3e\x1d\xd3\xb8\x50\x8e\x5f\x45\x17\xe0\x1c\xf3\xa9\xd5\x1e\x15\xa7\x18\x28\x14\x8d\x24\x3e\x21\xf5\x46\x17\x37\x58\xe4\x65\x74\xbe\x1c\x1e\x5e\x2f\xa3\x1e\xb4\x3a\xeb\x63\x03\xf0\x90\x92\x99\x3e\xfa\xa2\x6b\xa2\xcb\xf3\xa7\x26\x07\x8d\x17\xcd\x4a\x92\x04\x52\x16\x37\x44\x7c\x6a\x46\xa1\x79\x76\x52\xcc\x69\xf4\xcc\x9b\x6f\xbe\x19\xbc\x12\xfc\xa4\x91\x05\x60\x9d\x73\xd1\x78\x71\xce\xc5\xe3\xd1\x96\xdc\xf4\x68\x54\xee\x5d\xd9\x9a\xbe\x79\x63\x75\xf1\x66\x49\xce\xf2\x63\x66\xb5\xd7\xa2\xe9\x05\x69\x08\x1b\x93\xc5\x70\xec\x99\x3b\x5e\x02\x89\xa1\x00\x00\x20\x00\x49\x44\x41\x54\x7c\xc3\xf5\xfe\x52\x34\x97\x64\x35\x7c\xab\xa2\x72\xc9\x54\x51\xc1\x02\xaf\x93\x25\x13\x88\xde\x15\xe9\xfa\x89\xde\x9c\xea\x24\x92\x71\xb4\xb2\x3e\xcb\x9e\x7c\x68\x77\xfc\xdb\x8f\xdf\x98\x3c\x3d\x99\xd7\x47\xa4\x9d\x73\x79\xf8\x03\x1a\x5f\xd8\xc6\xd6\xd6\x16\xa7\xda\x26\x8c\xad\xde\x30\x11\x34\x98\xbe\xf0\x29\x2f\x60\x5b\x07\xbd\x53\xdc\x80\x3e\xd3\xd3\xf2\xb5\x29\x84\x2e\xaf\x61\x2a\xbf\x06\xd3\x16\xa7\xe1\xeb\x53\x3f\x29\xba\x1a\x5c\x5b\x1d\xb7\xe5\x6b\x53\x36\x29\x99\x91\x86\x85\xf6\x2c\x67\x72\x92\x46\x4a\xd6\x78\x9a\x66\xc0\xb4\xd5\x77\x8a\xbe\x8c\x97\xbc\x48\x9e\x52\xa1\xab\x00\x24\x40\xdb\xbf\xcc\xa9\xf4\x10\x6c\x02\x4e\xe3\x45\xe2\x95\xfa\x38\x95\xaf\xeb\x39\xbc\x4b\x5e\x52\xe3\x04\x0f\x29\x79\xe8\x2a\xb3\x84\x35\x00\xcc\xe6\xe6\xa6\x01\xea\xfd\x1c\xc1\x7b\x1d\x3c\x2f\xce\x39\x13\xfe\x40\xce\x38\xc0\x58\x02\xf8\xfd\x2b\x14\x15\xbd\x8b\xaa\xb7\xf6\x95\xc3\x2f\x09\x35\xbf\x29\x17\xc7\x21\xf8\xb1\x81\xdf\x07\x16\x27\x9e\xa8\xbc\x27\x60\x06\x88\xbc\x51\x37\xd0\xf0\x78\x1b\xae\x7e\x6f\xbc\x44\x60\x82\xb5\xe4\x8a\xd2\xb8\xc2\xf1\x31\xab\xbe\xb3\xa6\x51\x7e\x00\xf8\xd2\x97\xbe\xc4\xdb\xa4\x6f\x3f\xe0\xcf\xa9\x3e\x70\x1a\xd9\xe8\xea\xeb\x10\x79\xb5\x78\x00\xcd\x0b\xe8\xb4\x01\xab\xaf\xe2\x93\xa1\x8f\xb5\xae\x0d\x16\x6d\x30\xf6\xa7\x3f\xfd\xa9\x7d\xe1\x85\x17\xf8\xda\x9d\xbc\xdb\x85\xdf\xeb\x32\xf5\x17\xd3\x4d\x0b\xe3\x8e\x6f\xae\x16\x57\xaf\x6c\xcd\x7e\x7e\x32\xb0\xb7\x00\x34\x56\xd1\x48\x1a\x18\xd1\x5b\x52\xdb\xd3\x8d\x4b\x89\x84\xa4\xb1\x5b\x0d\x63\x70\xde\x4d\x58\x1b\x17\xc1\xc2\x46\x74\x95\x70\xcb\x3e\x3c\x35\x84\x37\xe0\x0e\xab\x46\x72\x7d\x89\xaf\x6c\x79\x41\xcf\x2c\x6d\x6c\x4d\xf3\x8f\x3e\x7a\x6b\xf2\x5f\x1e\xde\x1d\x7f\x28\x2f\x69\x05\xd5\xda\xee\x90\x88\xe2\xe5\x74\x61\xa9\x28\xb8\x19\x7b\x6e\xe0\x3a\x8d\xd7\x41\x83\xed\xe3\x85\xd3\xdc\x8a\x9a\xcb\x91\xc7\xa7\x14\xa5\x11\x70\x32\x8f\x46\x5b\xca\x63\xc0\xcd\x69\x77\xd5\x55\x8a\xef\x36\x99\x57\x5d\xa2\x22\x2d\xe4\xed\x03\x27\x79\xd2\x78\xd4\xea\x47\xe2\x91\x79\x52\x38\xb4\x20\xf1\x18\xb4\xe3\xd5\xca\x25\xe1\xb9\xfc\x68\xf0\x32\x5e\x4e\x82\xb4\x7a\x4c\xf1\xdd\xc6\x8b\x66\x4c\xa5\x60\xb4\xd0\x85\x3b\x15\x17\x82\xa4\xab\x95\x47\xf2\x20\xeb\x42\x1a\x75\x5d\xf4\x0d\x74\x9c\xa9\x3a\x48\x95\x5b\x2b\x53\x8a\xbe\x2c\xb3\x2c\x9b\x05\x80\xfd\xfd\x7d\xfb\xec\xb3\xcf\x9a\xe7\x9f\x7f\xde\x02\x4d\xfd\x19\x7e\xc3\x9f\x03\xb0\xc8\x6c\xb1\xc8\xec\xd4\xc1\x15\xdc\x3c\x21\x84\x65\x1c\xa6\x77\x7d\xe0\x9e\xf8\xa6\x9e\xf6\xf9\x1c\xbb\x12\xc3\xcf\x44\xc3\x84\x38\x40\x2d\xe9\x77\x27\x3d\xf2\xd1\xd7\x23\x96\x7b\xc8\xff\x23\x38\xc0\x16\x99\x9b\x4e\x73\x3b\xc5\xb2\xf1\x10\xf0\x1b\x36\x4e\xe2\x9b\xdf\xfc\x66\x57\x3f\xee\xd2\x35\x52\xbe\xda\x64\x56\xca\x25\x3a\x70\x68\x32\xa3\xe9\xb6\x98\xd6\xd6\xa9\x24\xb0\xf6\xde\x15\xaf\x85\x3e\x56\xb4\x7c\x8e\x30\x1f\xfa\xd0\x87\x64\x5c\x28\x34\x5f\x2a\x2a\x00\xcc\xa3\x01\x43\x98\x4e\x07\xe5\xc1\xe5\xad\xe9\x2f\x6e\xac\xce\xdf\xac\xbe\x61\x14\x36\x61\x61\xc9\x5b\xb2\xbc\x85\xc5\x31\xe3\xa1\x86\xd0\xdd\x7f\xae\xbe\x49\xd7\x7b\x62\x1a\x97\x11\xc5\x10\x3e\x06\x10\x6f\x80\x59\xbe\x0e\x9a\x43\x37\x76\xa5\x3b\xc6\x23\xa1\x3e\xa6\x4d\x20\x90\xa9\xf6\xbb\xe4\x9f\xf8\xf5\x6b\x2b\xbf\x7d\xee\x70\x70\x0f\x1c\xc6\x70\x8d\x25\xa3\xf8\x89\x77\x8f\xbb\x31\x5b\x11\xe1\xb4\x06\x6a\x57\x38\xad\x6c\x9d\x06\x67\x57\xbc\xec\xac\x40\xb7\x3c\xa6\x06\x36\xf9\x7e\xa7\x46\x7e\x57\xb8\xd3\x7a\xd2\x66\xac\x92\x97\x0f\x52\xe7\x29\xa3\xa7\x8d\x9e\x8c\xeb\x33\x41\x92\xb4\xa4\xfc\xc8\xd9\x9c\x6c\xd7\x94\x91\x29\x65\x41\x33\x6c\xba\x78\xd2\xca\x2e\x79\xd0\xf8\xd2\x68\x4b\x1c\x5d\xb4\x65\x7e\xcd\x00\xe0\x30\x9a\x9e\xd5\xfa\x43\x1f\x9a\x1a\xfe\x3e\x38\x52\x38\xa5\x21\xd5\xa7\xbf\x2c\xc9\x31\x3b\xf6\xcb\x3d\x2d\xf1\x3d\xfc\x5a\x02\x66\xb9\x2b\x8e\x87\xf6\xb0\x34\x6e\x0a\x2c\x7b\xcb\x97\x36\xb9\x20\xd8\x22\xb5\xd7\x24\x2e\xe1\xb0\x5b\x70\xeb\xbd\x88\xc1\x53\xce\x26\xa6\xdc\x43\xef\x71\x35\xc6\x1e\x57\xd3\x68\xb0\xe1\x5c\x63\x6c\xb0\xe4\x8a\x69\x6e\x0f\x0e\xc6\xc5\x7e\x83\x65\x9e\x4f\x19\x9b\xbc\xd7\x25\x04\x4d\xe6\xba\x64\x86\xe7\xd3\x8c\xde\x14\xce\x3b\x91\x8b\x14\xaf\x46\x12\xd7\x98\x6b\x0b\xa7\x51\xa0\xfc\x39\xa5\xe4\x53\xd6\x7f\x23\x14\x45\x81\x60\x55\x33\x57\x58\xb4\xda\xfc\x92\xd1\xdc\x2f\x17\x4d\xe1\x97\x8c\x4a\xc2\xf1\xcd\xd5\xc5\xfb\x97\xcf\x4c\x5f\x39\x1a\x96\xb7\x1c\x60\xc3\xe8\xef\x1a\x86\x40\xf0\xca\xa5\x4c\x99\xda\x0b\xd3\xb0\x94\xf9\x9e\x17\x92\x0f\x01\x1e\xf5\xf2\x12\x88\xad\x91\x36\x3b\x4e\xc3\xc3\x13\xd3\x42\x27\x14\xde\x1e\xce\x55\x8d\x2c\x1f\x16\xe6\xfe\x7b\x6e\x0f\x7f\xf7\x37\xae\xae\x7d\x72\x5c\x34\x6f\xd5\x0d\x47\xe8\xbc\xf7\x25\x6e\xec\x02\x96\x8c\x17\x4d\x39\xb7\xb9\x05\x21\xd2\x34\x81\xd6\x9e\xdb\xe0\x34\x3c\x6d\x71\x29\x98\x54\x5a\x6a\x46\x77\x5a\xda\x1a\x0e\x39\xa8\x82\xbd\x4b\xf8\x3e\x83\x55\x8a\x5e\x1f\x1c\x92\x97\x54\xfb\xb5\xe1\xd3\x06\x4c\x8d\x1f\xfe\xac\xf5\x77\x6d\x96\xae\xf1\x01\x91\x9e\xa2\xa3\x19\x33\x32\x68\xe5\x4e\xb5\x77\x8a\x6f\xad\x0d\x53\x6d\x9b\x6a\x67\x0d\x5f\x17\x4e\xad\x2c\x29\xe3\x47\xf2\xdd\x55\x67\x3c\x4d\x93\x89\x94\x61\x04\x05\x9e\xa7\xb7\xb5\x9f\xac\x63\x59\x6e\xde\x56\x3c\x5f\xa7\x91\xf7\xec\xb3\xcf\x86\xef\x13\x35\x80\xb8\xe7\xc5\xc1\xd9\xd2\xb8\xe2\x78\x50\x1e\x2c\x8c\x3d\x06\x1a\x2b\xff\x88\xef\xfc\xf8\x50\x48\x27\x8a\x86\x85\xf3\x0a\xbd\xb1\x2f\x31\xd2\x0a\x4b\x50\x7c\xbc\x90\xe3\x06\xb1\xff\x19\x13\x6c\x73\x70\xf0\xb4\xd7\x4b\x52\x0e\xa5\xc1\xfc\x70\x54\xde\xb8\xb5\x52\xec\xa1\x1a\xf3\x2c\x50\xaf\x3e\x78\x1e\xac\x34\x5e\x98\xd7\x45\xd3\x49\x3c\x68\x7a\xb3\xcd\x88\xe9\xd3\x17\x38\x5c\x8a\x56\x97\x01\x1c\xf9\xee\xa3\x2c\xb5\x5f\x0d\x26\x05\x97\x9a\xd9\x48\xc1\x6c\x1b\x20\x63\xdc\x95\x2b\x57\xa2\xd1\xe2\x2f\xd9\xe1\xae\xa6\xf0\x89\x6f\xf9\x19\x80\x63\x10\xa6\x45\xe6\x8e\xdf\x3a\x33\x7d\xfd\xc6\xea\xe2\x17\x45\xe6\xe6\xcc\x29\xd7\xb0\x7a\x99\x4b\x4e\x0d\xf5\xde\x97\xda\x8a\x27\x72\xcd\x1b\x79\x3d\xb2\xb8\x1c\xe4\x9a\x31\x70\x95\xe0\xf3\x3d\x36\xce\xfb\x19\x2b\x61\x75\xc2\x46\x61\x47\xe3\x38\x9e\x60\xdf\x3b\x86\xbd\xe2\x7f\x38\x5e\x98\xc7\x1e\xdc\x1b\xfd\xf1\xc5\x2b\xeb\x1f\xc9\x2d\x85\xaf\x48\x0f\x83\xc1\xc2\xbf\x26\xaa\xdc\xaa\x0b\xe8\xca\xaa\xcf\x2c\x8d\xb7\x49\x0a\x27\x7f\x96\x0a\x4c\xa6\x49\x81\xb6\x4a\x1e\x49\x53\x7b\xd6\xd2\x52\xbc\x19\xb4\xd3\xd6\xf8\xd6\xca\xa0\xe5\xd7\x68\xf6\x31\x66\xb4\x01\x5a\xe3\x47\xd2\xd6\xf2\x6b\x83\x5f\x1b\x4f\x5a\x38\x4d\xfb\xa6\xe0\x8c\xf8\x6b\x33\x42\xb4\x01\x3a\xa5\x4b\x64\xba\xe4\xa7\x2d\xad\x4d\x11\xa7\x06\x71\x09\xaf\x95\x57\xa3\x29\xf9\x6d\x83\x4f\x19\x5d\x29\x19\x4c\xf5\x29\x8d\xf7\x90\x9e\x6a\x2b\x29\x6b\x29\xbe\x53\x21\xd5\x3e\x1a\x3f\x1a\x4c\xdb\xe0\x07\xa0\x32\x5a\xc2\x56\x02\x79\x1a\x87\xef\xf7\x00\x00\x4b\xce\x1e\x8e\xec\xed\x79\xee\x0e\x1a\x48\x1a\x13\x50\x36\xad\x74\xdc\xc0\x08\xbe\x72\xa0\x31\xa9\x65\xc7\x8d\xb8\xc3\x26\xdc\x86\x1e\xf5\x7c\xa0\xc3\xbc\x2d\x91\x2c\xb1\xf1\x21\xee\x83\x71\xdc\x00\xb2\xf3\xcc\x1e\x1e\x8c\xca\x1b\xfb\x93\xe2\x30\x5c\x36\x17\xca\xc8\x7f\x79\x3d\x7c\xe1\x0b\x5f\x48\x19\x08\x29\x9d\xc2\xdb\xa0\x2d\xad\xcb\x18\xed\x32\xe0\x53\x72\xd0\xa6\x33\x3a\x97\x8a\x34\xc2\x3c\xbe\x6d\xc6\xa0\x05\xad\xd2\x52\xf8\x25\x0f\x0d\x38\xee\x16\x14\xf8\xe4\x09\xa3\x69\xf8\x73\x84\xe3\x1b\x6b\xc5\xb5\x37\xb7\x4f\x5e\x39\x18\x95\xd7\x2c\xa1\x08\xa3\x7e\xc3\xea\x5d\x7e\x6c\xc6\xf9\x3d\x2d\xf1\x53\x01\xd1\x92\xae\x2d\xec\x00\x1b\x97\x83\xa4\xb5\x4d\xcc\x20\x69\xb8\x4f\xea\x65\x9f\x80\x57\x7a\x77\x1a\x3b\x6a\xc2\xfe\x1a\x6a\x60\x02\xc1\xc1\x80\x86\x2b\xf3\xec\x63\x4f\xdc\x98\xfc\xb7\xff\xf4\xfe\xca\x13\xc3\x92\xd6\xc0\x4e\x1a\x51\xf3\x63\x8c\xda\xec\x49\x86\xb6\x19\x5b\xdb\x20\xd7\x35\x00\xf6\x85\xb9\x1b\x79\xee\x36\xee\x2e\x63\xe8\x83\xd0\x4e\x0d\x3a\xa7\x8d\x6b\x8b\x3f\x0d\xdc\x07\xc5\x9d\xca\xab\x19\x52\x3c\xbd\xcb\x70\x96\x71\x9a\x31\x22\xd3\x4f\x53\x77\x29\xf8\x3e\xf9\x4e\x43\x53\xd3\xbb\x5d\x03\x4d\xdf\x70\x1a\x23\x4b\x83\xe9\x6b\xa0\xa4\x68\xa7\xda\x58\x96\x27\xa5\xd7\xef\x84\x7e\xc4\x19\x26\xb9\x61\xa0\x2f\xc9\x15\xb7\xc7\xc5\xc1\xc9\xd0\x5e\x03\xa0\x6c\x5e\xe1\x68\xea\x1b\xd1\x03\xac\x73\xd4\x30\x44\x1a\x1e\x7a\xb1\x37\x26\xde\xf1\xc5\x51\x8b\xc1\x25\xee\xb3\xe4\x87\x36\x62\x9e\x30\x16\x38\x58\x42\x71\x32\xb0\x7b\xfb\xe3\xc5\xb5\x45\xe6\xe6\x60\xf5\x23\x26\xf1\x8d\x3a\xf0\xc7\xa1\xfb\x8c\xf7\x3c\xae\xef\xc4\x29\x95\x2e\x9f\xdb\xfa\xc0\xa9\xe4\x5a\xbb\xf2\x9f\x87\x30\x6e\x1a\xf6\x2c\xd3\x42\x3a\x2f\x0c\xf7\xbc\x19\x05\x06\x2c\x4d\x63\x34\x45\xa7\x11\xfc\x85\x74\x00\xaa\x4b\xe9\x00\x10\x85\x1b\x77\xaa\xcd\xa7\x84\xca\xb3\x90\x11\x51\xe6\xcb\x3b\x98\x0d\xdc\x62\xeb\x24\xdf\x58\x9f\x65\xf7\xe4\x96\x46\xc1\x52\x96\x32\xcb\x3d\x21\x5c\xd8\xe4\xc2\x51\xb8\xaa\x3f\x64\x8a\xd7\xfe\xb3\x0b\xe4\xe0\x82\x71\xd1\xbc\x94\x8e\x5c\xd3\x95\xc8\xf1\x06\x84\xf2\xbb\xd5\xfc\x72\x3b\x9e\x40\x0d\xfe\xe2\xff\xd9\xb0\xa4\xf3\x2b\x8b\xcc\x9e\x0c\xed\xd5\xa3\x51\x79\x54\x1a\x58\x8f\x8a\xd7\x7d\x78\x77\x3b\x3b\x3b\xc4\x3e\x0b\x10\xd2\x0c\x7b\x06\x9a\xed\xca\x7f\xa1\x3c\x93\x02\xc3\x43\x4a\x66\xd0\xf1\xae\xd1\xd4\xd2\x52\xa1\x8d\xee\x9d\xe0\x4e\xe5\x97\x38\xa4\x67\xba\x4f\x1d\xa5\xe8\x68\xf1\xda\x6f\x6d\x47\xb7\xf3\x97\xc2\xd5\xc5\x43\x57\x7d\x11\x6a\x65\x48\x48\xd7\x85\x86\x9b\x12\x7f\x9c\x06\xc7\x23\xcb\x1a\x70\x12\x83\x25\x91\x4f\x6b\x9f\xa0\x9f\xf8\x3b\x44\x9a\x06\x2f\x07\x7b\x59\xf6\xb6\x7a\x90\x30\x9c\x5e\xaa\x7e\x79\x9d\x00\x7a\x39\xa5\x4e\x35\x0c\x96\xc4\xb3\x96\x4f\x96\x37\x95\x37\x3c\xf7\x29\x6f\x5b\xbc\x2c\x67\x0a\x27\x00\xd0\xe6\xe6\x26\xfd\xe0\x07\x3f\xb0\xfc\x02\x3a\x54\xe3\x02\xa1\xd2\xfb\xb9\x1f\x03\x06\x00\x86\x20\xca\x0b\xe3\x86\xdb\xc7\x83\xb3\xdb\x27\x83\x47\x8d\xc3\x70\xf9\xaa\xd0\xb4\xb0\xd4\x07\x7f\xc2\x49\x22\xaa\x01\x58\x45\x00\xa8\x27\xad\x00\xc4\xea\x53\x0d\xa7\x18\x4c\x4b\x17\xda\x81\xb0\xc8\xdd\xd1\xf5\xb5\xf9\xab\xbf\x38\x77\xf2\xa3\x83\x51\x71\x8b\x88\x4e\x9c\x73\x33\x7f\x77\xd9\xc2\x5f\xfb\x5f\x7a\x03\xcd\x85\x25\xa3\x17\x5f\x7c\x31\xa0\x0a\xf5\xd6\x57\x96\xb4\x7e\xda\x25\x03\x52\xe7\x68\xf8\xfa\xea\x42\x55\x4e\x34\x0b\xcc\x28\xbf\x21\xa3\x36\x2b\x97\xf0\x80\xde\x79\xfb\x58\x52\x6d\x33\x7f\x93\x78\x06\x10\x6f\x09\xe4\xd6\xe7\xd2\xd1\x68\xff\x77\x7c\x30\x2a\xf6\xde\xde\x9a\xbe\xb6\x3f\x29\xde\x2d\x8c\x9b\x4b\x71\x6d\xee\x6f\xa9\xad\xdf\x10\x1d\x2f\x22\x82\x6e\x6d\x03\x88\xae\xc1\xd8\xf3\x79\xb3\x35\x90\x57\x7f\xb5\x30\x3b\xee\x2d\x84\xec\x4c\xf5\x09\x22\x6f\xf0\xc4\xf5\x56\xb0\x25\xac\xc6\xa7\xcd\x91\x59\xda\xd8\x3e\x1e\xfc\xee\xd3\xef\xad\xfe\xaf\xf7\xed\x8f\x1e\x1e\x16\xd5\x49\x23\xb0\xcd\xba\xfe\xaf\x71\xcf\x8b\xd8\xef\xa2\x5a\xf2\xca\xaf\xf6\xdc\x65\x4d\xa7\x70\x77\xbd\xf7\xe5\x27\x15\xda\xe8\xde\x09\x6e\x39\x13\x91\xf5\xa7\xd1\x94\x71\x7d\xf9\xd6\xfa\x88\x15\xe9\x92\x66\x6a\xa6\xd4\x85\x2b\xc5\x83\xc6\x93\xa4\xcb\xe9\x9b\x96\x67\xce\x47\x9f\x59\x59\xaa\x7e\x53\xef\x32\x2e\xc5\xbf\xe4\xaf\x2b\xbf\x8c\x6b\x2b\xa3\xf6\x2c\xcb\x93\xa2\xdf\xa5\x53\x53\x32\xc4\xdb\x1c\xec\x59\x93\x0d\x0d\x87\x46\x53\x93\x65\x2d\x6f\xdf\x32\xa6\xe4\xa1\x6f\x5d\xd9\xfd\xfd\x7d\x7b\xee\xdc\x39\xf3\xc2\x0b\x2f\xd8\xc6\x45\x9e\xe2\xf4\x69\x78\x76\x80\x9d\xe5\xf6\xf8\xbd\xf5\xf9\xdb\xc7\x03\x7b\xc3\x01\xd6\x01\x4b\x57\x58\x34\xb4\xaf\x4f\xa3\x70\xd9\xa8\xb7\x42\xa2\xb5\x4c\x40\x38\x38\x11\x70\xf1\xc9\x64\x30\x78\xea\xed\x02\x72\xa4\x69\x86\xa6\xd1\x02\x38\x38\x3b\xcd\xcb\xbd\x9b\xab\x8b\x77\x6f\xae\x2c\xf6\xfc\x18\x17\xc6\xba\xe8\x4d\x0a\xdb\x28\x7c\xdc\xd2\x7e\x1f\x56\x97\xfc\x39\x25\x0f\x12\x1e\x4a\x5a\xaa\x6d\x24\x3e\x8d\xa6\xec\xff\xbd\xfa\x8b\x14\xe6\x94\xd2\x91\x0c\xa7\x14\xb2\xfc\xd5\x14\x22\xd0\xad\xa0\xda\x60\x0d\x00\x9b\x65\x99\x79\xfe\xf9\xe7\x6d\xd8\xa8\xab\xf0\x18\x8e\x46\xcb\xfd\x2e\x53\x6b\x70\xfc\xee\xd6\xec\xad\xab\x1b\xf3\xd7\x8e\x07\x76\xcf\xc2\xd9\xe6\x6e\xd8\xca\x44\x5e\x6a\x6e\x5a\x16\xec\x90\xe0\x98\xa1\x52\x09\x29\x3b\x89\xe4\x6a\x41\x8e\xe6\x37\x0b\xb5\x81\xe3\xb7\x09\x37\x8d\xf7\xc6\x5d\x01\x31\x6d\x09\x8d\x8b\x0c\xf2\x0f\x3d\x86\x93\x46\xc3\x82\x2e\xdc\x7b\x38\xfc\x9d\x5f\xbf\xb6\xf2\x5b\xf7\xde\x1e\x3e\x38\x28\x1b\xc6\x8b\x34\x60\x42\x3d\x47\xe3\xe5\x91\x47\x1e\x49\x19\x94\xbf\xac\xf0\xab\xa4\x75\xb7\x43\x9f\x3e\x70\xb7\x68\xdc\x49\x7a\x9b\x22\x92\xa1\x8d\x7f\xcd\xe0\x90\x65\xee\x53\x7e\x6d\xb0\x4c\xe5\x4b\x0d\xd6\x6d\x46\x8c\x96\xaf\x2f\x4f\x6d\xf1\x9a\x1e\xeb\x93\xaf\x0f\xfd\x3b\xe5\x29\x84\xb6\xc9\x62\x6a\x40\xea\xa2\x73\x5a\x18\xce\xcb\x9d\xe4\x93\xf0\x1a\x9e\x18\x77\x70\x50\x6d\x57\x09\xc6\x8a\x80\x0b\x46\x4b\xb5\x8d\x80\x50\x58\x83\xf9\xb5\xf5\xf9\xd5\xfd\xc9\xe2\x4a\x69\xaa\x3d\x8f\xb5\x5e\x95\x97\xbe\xd5\x69\x71\x63\x41\x58\xa6\x77\x68\xc0\xf2\xbb\xbe\x62\xbc\x13\x07\x40\x7c\xfa\x92\x3b\x4c\x19\x47\x42\x28\x8d\x9b\x1e\x8c\xcb\xf7\x6e\xae\x2e\xae\xcc\x72\x77\x8c\x6a\x62\xce\xb7\x46\x2c\xb5\xab\x30\x5a\x52\x75\x79\xda\xfe\xaa\xe1\x4b\x19\x26\x6d\x36\x40\x9b\x1d\xd0\x1a\xf8\x52\x91\x74\x27\x72\x02\xd2\xa5\x2a\x09\x69\x6e\x24\x8e\x4f\xe2\x4d\xd1\xb1\x2c\x3d\xd0\x95\x78\x2d\x00\x38\xe6\x52\xf0\x4b\x46\xce\xc7\x47\x37\x21\x82\xdd\xe0\x97\x8d\xfc\x6f\x06\x20\x5f\x18\x07\x00\x66\x7d\x9e\x6f\xae\x2e\xb2\xcd\xdc\xd1\x90\xfb\xf9\xa4\x91\x1a\x97\x78\x08\x71\x09\x08\xde\xa2\x0e\x5e\x90\x86\xcf\x8c\xfb\x07\xe1\xad\xde\xb0\xbc\x43\xb5\x8b\x31\x54\x5e\x30\x32\x80\xe6\x52\x52\xf4\xba\x70\x7a\xac\xd2\x6b\x1c\x1e\x7f\xdc\xf3\x22\x0b\x40\x26\x77\xb4\x3e\x2c\xcc\xc4\x38\x3a\x3a\x1e\x96\xbb\x27\x03\x3b\x75\x26\x2a\x7f\xe9\x4a\x8e\x6d\xbe\xb3\xb3\x43\x5b\x5b\x5b\x98\xcd\x66\xd8\xdd\xdd\xe5\x75\x9b\x9a\x30\x74\xb9\x02\xa5\x2b\x51\x83\xd5\x60\x78\x7e\xed\x59\xe2\x6b\xc3\x21\xe1\x52\xbc\xa5\x70\x4a\x9e\x35\x3a\x48\x94\x2f\x45\xbf\xab\x7c\x1a\xff\xa9\x20\xcb\x90\x72\x0d\x6b\xf9\x38\xac\x2c\x03\x4f\xb3\x09\x18\xb0\x67\xae\x2b\x38\x8e\x54\x9b\x84\x3e\xce\xd3\x35\xf9\x90\xe5\x03\xd2\x65\x6c\x93\x85\x36\x3a\x0d\x9d\xa3\xe4\x4f\xc9\x02\xaf\x3b\x8d\x0f\x40\xa7\xc3\xe1\xc3\xb3\x94\x43\x59\x5e\xc9\x93\x96\x2e\xcb\xa6\xc9\x69\xaa\x3f\x72\x3c\x72\xe0\x4b\xb5\x77\xaa\x2f\x4b\x1e\x90\xe0\x57\x96\x8d\xc7\x4b\x1e\x23\x4f\x59\x96\xd1\x57\xbf\xfa\x55\x62\xf7\x97\x18\xff\xbd\xa2\x86\xee\x47\x75\xb2\x72\x00\xd0\x70\x9e\x3b\xb3\x39\x1d\x6c\x6c\x9d\xe4\xf7\x0f\x4b\xb3\x4a\xf5\xdd\x12\x5e\xdf\x7a\xad\xec\xea\xcf\xb5\x34\xf4\x30\xd3\xfd\xce\x05\xbd\x5b\x1b\x34\xb5\xf1\xc1\x3e\xf7\x52\x0d\x00\xf1\x4e\x19\x5e\x01\x6c\x08\x8a\x1e\x9d\x80\xe3\x64\x60\x77\xdf\xd9\x9c\xbd\xf2\xc6\xf6\xf4\xe5\xe9\xd0\xee\x03\x38\x26\xa2\x23\xe7\xdc\x0c\xd5\x17\xa2\xc3\x52\x51\xe1\xc7\x47\x57\x15\x3d\x2e\x15\xf1\x76\xe6\x75\x19\xda\x4c\x8e\xf3\x5a\x3d\xf7\xd1\xa7\xa4\xe0\xd6\x9e\xb5\x7e\xd6\xf6\x1c\xe9\xc9\x3d\x2e\x5a\xc7\xe2\xc6\x44\xac\x53\x91\x4f\x1b\xf4\x52\x4a\x97\xbf\xf3\x02\xb7\x75\xfa\xc0\x87\xaa\xa8\x3f\xf6\xb1\x8f\x91\xa9\x56\xbd\xf8\xc7\x17\xa3\x4c\x84\xbd\x2e\x5e\x70\x0d\x00\xe3\x08\xd9\x74\x60\x8b\x71\x61\x46\xeb\xb3\xec\xcc\x78\x91\xad\x67\xd5\xf7\x2b\x82\x04\xd6\xbd\xc9\xa1\xf9\x1e\x04\x35\x1a\x24\xcd\x9e\x57\x0b\x71\xe0\x38\x5c\x66\xc4\x04\x95\x02\xa2\x7a\xcf\x78\x10\x7c\xe7\x11\x05\x38\x4f\x9e\x6f\x5a\x6f\x74\x98\x3a\x04\x3c\xda\x71\x40\x00\xa0\x7c\x60\x69\x73\x54\x98\x11\x08\x47\x27\xc3\xf2\xd6\xc9\xc0\xce\x1c\xd5\x6d\xcc\xf2\x36\x8c\x97\x95\x95\x15\x7c\xe7\x3b\xdf\xb1\x2c\xbe\x6d\xd0\xe4\x0a\x4b\xca\x82\x4c\x93\xef\xcd\x02\xe9\x46\x55\xea\x59\xe2\xd3\xe2\x25\x2d\x1e\x4f\x02\xbe\x0d\xa7\x86\x47\x2b\x43\x1b\xac\xa4\xdf\x55\x3e\xc9\x7f\x9b\x01\xc3\xeb\x4e\xc3\x93\x6a\x3f\x39\xe0\xa4\x78\xed\xd3\x8e\x9a\x1e\xb0\x0a\x5c\x78\xe7\xfa\x86\x3f\x73\x78\x3e\x10\xf3\x32\x4a\x63\xa4\x4d\x16\x24\x6c\xc3\x9b\xab\xc0\x73\x9a\x1a\xdf\x3c\x9f\xe4\xaf\xad\xfe\x64\x5e\x0e\xa7\xc9\xa2\xd6\xa6\xa9\xfa\xe7\xb8\x65\xd9\x64\xdd\xf2\x7a\x90\x3c\x69\x46\x1a\x44\xbc\x84\xe1\x83\x12\x2f\xaf\xa4\xa3\xb5\x5f\x9f\x7a\x90\x65\x03\x50\x19\x2e\xff\xfa\xaf\xff\x6a\x2f\x5d\xba\xe4\x2e\x5e\xbc\x18\x0d\x18\xbf\xc7\x91\x00\x64\xde\x80\xc9\x89\x68\x00\x42\x6e\x0d\x72\x47\xa0\xad\x93\xfc\xec\xca\x22\x3b\x9b\x59\x0c\x89\xc8\x4f\x4e\xf9\x85\x71\xac\xa2\xbc\xb2\x76\x2c\x81\x18\x4c\x63\x2c\x08\x09\xec\x4b\xba\xe4\xf3\xd5\x28\xfd\xa9\x23\xa2\x7a\x12\xec\x6a\xa3\x09\x00\x0a\xe3\xa6\xbb\x2b\xc5\x5b\x6f\x6c\x4f\x7f\x7c\x75\x73\xfe\x56\x49\xee\x90\x88\x8e\x00\x9c\x50\xf5\x7d\xbe\xb9\x73\x6e\xe1\x8d\x96\xb0\xbf\xc5\x01\x70\xe2\x20\x8b\x26\x4b\x48\xfc\x6a\x6d\x9f\xea\x03\x52\x1e\x34\x59\x02\xf4\xf6\xe3\xc6\x49\x17\xac\x01\x60\xbb\xbe\x0e\xad\x29\x37\x5e\x08\x6d\xd6\x26\x3d\x25\x12\x2f\x7f\xd7\x0c\x23\xa9\x04\x34\xcb\x8c\xe3\x33\x3f\xfc\xe1\x0f\x6d\x10\x54\x04\x43\xb8\x1e\x80\x83\xb5\x4d\xfe\x39\x27\xff\xc5\xd0\x22\x73\x28\x0d\xdc\xca\x3c\x5b\x5d\x9b\x65\x5b\x83\x92\x56\xe0\xbc\xbf\x23\xc8\x1a\x98\xdc\x01\xf5\xc7\x13\x01\x70\x4f\x08\x84\xd0\xf2\xa3\xfa\x4b\x06\x07\xbc\x81\xe2\x8d\x97\xe6\x3a\x68\xfd\xd5\xe7\x60\xcd\x10\xa8\xf1\xe1\xd0\x68\xce\x52\x5d\x4e\x07\x34\x3c\x3f\x01\xa9\x73\xcd\x2f\x57\x1b\xd0\x30\xb7\xb4\x31\x2a\x4d\x6e\x09\xb7\x8f\x87\xe5\xde\x34\xb7\x73\xd4\x4b\xb5\xa5\x17\xf8\x28\x88\x7e\xd6\xe2\xc2\x86\xdd\x47\x1f\x7d\xd4\xec\xed\xed\xa5\x2c\xec\x46\xdb\xb0\x2a\x91\xf1\x52\x8e\xb4\xfc\x5a\xbb\x6b\x46\xb0\xcc\xdb\xe6\x51\x21\xa4\xf1\x42\xc0\x6a\xf2\xdf\x56\x86\x54\xdf\xd0\xf8\xe9\xf2\xda\xb4\xf1\x29\x3b\xb6\x56\xb6\xae\x36\x69\x33\x78\xb4\x3a\xd0\x3c\x0a\x6d\x6d\xd7\x35\xb3\x43\x0b\xac\x2c\x17\xa7\x63\x15\x78\x2e\x63\xda\xcc\x9c\xd3\xd1\x74\x93\xe6\x59\xe1\xf1\x1c\x9f\xd6\x3e\x52\x77\x49\x7c\x1c\x67\xaa\xcc\x5d\xb2\xdf\xc6\x87\x26\x03\xb2\xae\x52\xf5\xc6\xf5\x6c\x17\x2c\x2f\x8f\xa4\x23\xe3\xb5\x25\x7f\x29\x97\xbc\x9c\x92\x9f\xae\xb6\xd4\xca\x4f\x3b\x3b\x3b\xf4\x47\x7f\xf4\x47\x7c\x2c\x08\x13\xd7\x30\x69\xcd\x00\x84\xc3\x1a\x43\xe7\x5c\x3e\x1b\x58\x37\x2c\xcd\x68\x63\x96\x9f\x1b\x15\xd9\x9a\xb1\x94\x85\x49\x27\x71\xee\x02\xb1\xb0\x21\xd7\xcf\x2a\xf5\x9b\x24\x58\xbc\xb7\x60\x08\x35\x4e\xaf\xda\xa3\x07\xdf\x51\x5d\x8c\x30\x36\x84\xec\x16\xce\x1e\x8e\xec\xf5\xb7\xce\x4c\x7f\xf2\xe6\xf6\xf4\xff\x3b\x1a\x97\x37\x88\xe8\x18\xc0\x91\x73\x2e\xde\x55\x06\xbf\x35\xc2\x23\x2a\x51\x2d\x8d\xe1\xec\xd9\xb3\xf4\xfa\xeb\xaf\x4b\x39\xe1\x6d\xac\xe9\x02\xcd\xe8\xd5\xfa\xbc\xd6\xb7\x53\x32\x98\xb2\x09\x34\xf9\x4e\xb5\xb5\x85\xe2\x71\xe1\x4c\x6b\x4a\x4d\x76\xfc\x94\x61\x93\xca\x27\xf1\x76\x19\x46\xb2\x13\x48\xeb\x0f\x00\xe8\xd3\x9f\xfe\x34\x9d\x39\x73\x06\x59\x96\x45\x9c\x4c\x70\x83\xd1\x02\xff\x6c\x50\xb9\x0b\x33\x00\xd9\x3c\xb7\x65\x6e\x69\xb8\x36\xcb\x37\x57\xe7\xd9\x66\x06\xca\xa3\x1b\x90\xb0\xe4\x5d\x89\x96\x31\xc0\x8e\xc8\xf1\x4b\x88\x3c\x53\x54\x0b\x66\x60\x2a\xb6\x0c\x21\x1a\x1a\x1c\xae\x32\xf2\x69\x39\x5f\xc3\x3a\x47\xf8\x7c\x51\x0c\xc4\x90\x50\x20\xe0\x33\xf3\x4e\xe0\xfb\x0f\x8c\xa5\xc9\xd0\xd2\xe6\xb0\x34\x59\x69\xdc\xee\xd1\xb0\x3c\x98\xe5\xae\xf0\xc6\x4b\xb4\xd4\x59\x5d\x46\x43\xe6\xe2\xc5\x8b\xf4\xdd\xef\x7e\x57\xb3\x8a\xe5\x80\xa0\xcd\x24\xc1\xf2\xc8\xdf\x2e\xb8\x94\xcc\xf1\xbc\x72\x56\x20\xe1\x25\x6c\x6a\x56\xc0\xf3\xa5\xfa\x82\x56\x86\xf0\x2b\x67\x83\x1a\x3f\xb2\x6c\xb2\xbe\x64\x1e\xad\x3c\x26\x91\x57\x2b\x6b\x57\x5d\x07\x7c\x92\x6f\xad\x0c\x1a\xff\x6d\x74\xfa\xe8\x8c\xbe\x32\x90\xaa\x27\x52\xe2\x52\xb8\x34\x2f\x50\x57\xd9\x52\x7f\x12\xbf\xe6\x7d\xd1\x68\x73\xbe\x35\x6f\x72\x17\x0f\x3c\x9f\x51\xe2\x4e\x2b\x5f\xa9\xfe\x90\xe2\x4f\xa3\xcf\xe9\xc9\xd0\x56\x1e\x39\x41\x4d\xc1\x6a\x74\xe2\x20\xe7\x9c\xa3\x77\xdf\x7d\xd7\xbe\xf8\xe2\x8b\x6e\x67\x67\x87\x42\xf0\xf0\xc6\xff\x11\x11\x65\x7e\x02\x9b\x13\x51\x5e\x1a\x64\xf3\xcc\x95\x6b\xb3\x6c\x6d\x6d\x9e\x6d\x0f\x4b\x9a\xc4\x73\x49\xbe\xa4\x75\x81\xdc\x92\xee\x75\xc2\x43\x1f\x21\x1d\x1a\x9e\x72\x82\xfc\x62\xb5\x2f\x00\x85\x81\x8e\x5d\x9b\xe1\x08\xe1\x9b\x7a\xb3\x81\xbb\xfd\xee\xe6\xec\x95\xd7\xcf\x9f\xfc\xe4\xfa\xda\xe2\x4a\x49\xee\x10\xd5\x32\x51\xf0\xb6\xcc\xfc\x3e\xce\x70\x8f\x59\x19\x3c\x2e\xcf\x3f\xff\xbc\x7d\xfd\xf5\xd7\xfb\xf4\xdd\x10\xb8\x7c\x4a\x03\xbc\x4f\xdf\x96\x72\xa6\xf5\x2f\x19\xfa\xf4\xab\x06\x9d\xd4\x52\x51\xca\x0a\x93\xc2\x93\x0a\xd2\xc2\x92\x05\xd3\x70\x6b\xf4\xad\x92\x67\x69\x76\x70\xf9\xf2\x65\xb7\xbe\xbe\x4e\xeb\xeb\xeb\xc8\xb2\x8c\xef\x71\x09\x81\x80\xea\x68\x1c\xb3\xbe\x09\x80\xb1\x06\x59\x91\xd9\x72\x54\x98\x95\x8d\x59\xbe\x35\x2e\xcc\x5a\x58\x70\x8a\x03\x7e\xdc\xa1\xee\x99\xa6\x4a\xc8\x22\xe2\x60\xb4\xa0\x29\xa8\x95\x90\xb3\x5b\x57\x42\xc9\xc2\x4f\x78\x16\x46\x0e\x37\x32\xa2\x2b\xd2\x01\x7c\x9f\x4d\x4d\xbb\x7a\xa2\x06\x1c\xab\xc1\x80\x8f\xe1\x07\x39\x64\xce\x4c\x46\x85\xd9\x18\x96\x86\x4a\xe3\x6e\x1d\x8d\xed\xc1\xc2\xb8\xc2\x1b\x29\xda\xe6\xbd\x8a\x25\xe6\x79\x51\xda\x0f\x02\xbe\x2b\xb4\xc9\xc2\x9d\x84\x36\x99\x6a\x83\xed\xea\x54\xa9\xd0\x07\x77\xdf\xd0\xd5\x27\xb4\xf7\xf0\xdb\x55\x87\x7d\xf9\x49\xd1\xe9\x1b\x4e\x53\xff\xd2\x78\xe8\xd2\x2d\x5c\x37\xc8\x7c\x29\xda\x7d\xf8\x4c\x95\xf9\x4e\xf9\xe6\x79\x34\x5e\x35\x03\x40\xc3\x97\x9a\x05\x6b\x6d\x2e\x07\xfc\x00\xab\xc1\xa4\xf0\xa5\xea\x24\x25\x5b\x7d\x60\x34\x5a\x5a\xbd\x4a\x1e\x52\xed\x90\x1a\x60\x97\xf8\xf0\x86\x0b\xc7\x51\xcf\x1b\x89\x32\xf2\x9f\x3c\x09\xfb\x5e\xa6\x03\x6b\x09\x44\xab\x73\xb3\x31\x29\xb2\x8d\xcc\xd2\xa0\xb1\xdf\x85\x23\x40\xd8\x85\x48\xcc\x2b\x2f\xcd\x96\xe6\xe4\x33\xe4\x63\xe8\x6a\x9c\x3e\xb2\x71\x53\xaf\x1f\xc2\x0a\x83\xf9\xf5\xb5\xc5\x2f\x5e\x3b\x7f\xf2\xc3\x77\x36\x67\xff\x36\x1f\xb8\x7d\x22\x3a\xf6\x1e\x97\x63\xe7\xdc\x89\x37\x5a\x66\xa8\x0c\x96\x32\xd4\x0b\x11\xb9\x27\x9f\x7c\x92\x5e\x7e\xf9\xe5\x94\x1c\xf3\x31\x35\x25\x07\x12\xa6\xab\x8f\x48\x18\x8d\x86\xc6\x4b\x1f\xdc\x31\x3e\x13\x11\xa9\xf5\x67\x0d\xa6\x8d\x11\xa9\x60\x64\x5a\x9b\x00\x07\xf7\x60\x6a\x7d\x5b\x5d\x03\x7f\xfb\xed\xb7\xdd\x8f\x7f\xfc\x63\xf7\xcc\x33\xcf\x68\x6e\x26\x00\xd1\x84\x36\xec\x2f\x03\x60\xe6\x79\x75\xda\x7f\x6d\x9e\x6d\xac\xcf\xb2\xed\xdc\xd1\xb0\xf6\xae\x20\xba\x05\xfd\xc8\x5d\x0b\x20\x93\xc2\xe8\x35\x89\x71\xae\xe1\x4a\x8c\x46\x0d\x83\x8b\xf0\x9e\xcb\xa6\x71\x53\x7b\x78\xa2\xc1\x14\x2c\x72\x6e\x84\xa0\xb9\xc1\x2b\x18\x5b\xdc\xd5\x19\x8d\xa0\x46\x85\x10\x65\x0e\x2b\xa3\xc2\x6c\x8d\x8b\x2c\x5b\x64\xf6\xd6\xe1\xb8\xbc\x5d\x98\xda\xf3\x22\xeb\x98\xc5\xb9\x9d\x9d\x1d\x7a\xea\xa9\xa7\xe8\xa5\x97\x5e\xea\x52\x36\xda\x3b\x67\x25\x25\x4f\x5a\xc7\xd2\x14\xba\x14\x7a\xf9\xdb\x57\xa1\xb6\xa5\x9d\xc6\x63\xd8\x87\x8e\x2c\x87\x34\xc6\x25\x0d\xe9\x59\x91\x41\xc3\xdb\x35\xc0\xf6\x51\x40\x5a\x19\xfa\xd4\xbf\x36\xc9\x90\xb4\xe4\xc4\x46\xc2\x6a\x5e\x11\x09\x93\x1a\x88\x53\xf2\xa7\x95\x33\xe5\x15\x91\xed\xc1\x07\x3f\xae\x94\x49\xc0\xa6\x8c\x85\x54\x7d\xf2\xf2\x87\x3c\xa9\xe5\x71\x97\xc8\xa7\xd5\x9b\xe4\x4b\x83\xe1\xf8\x53\x03\x4c\x57\x3d\xca\x31\x21\x25\x1f\x7d\xda\x58\x1b\xec\x52\xf2\xa3\xc9\x7c\xc4\x19\xbc\x2e\x68\xb6\x99\x01\xa2\xd7\x3d\x18\x2f\x39\x11\x65\x0e\x2e\x3f\x19\x96\x73\x00\x76\xb2\x30\x2b\x93\xc2\xac\x67\x96\x86\x7c\xe2\x59\x55\x6a\xad\x48\xeb\x09\xa6\x9f\xb8\x2e\xed\x2d\xf4\xe7\x8b\xa2\xbe\xae\x06\x94\x86\xfe\x07\xff\x8d\xe6\x10\x00\xa0\x24\x57\xec\xaf\x2c\xde\x79\xfd\xdc\xc9\x8b\x6f\x9e\x39\xf9\xd9\xe1\xc8\xde\x00\xe1\xc8\x39\x77\xc4\xf6\xb7\xcc\xfc\x95\x1f\x65\xd8\x94\x4b\x44\x25\xf9\x63\xd1\xaf\xbf\xfe\x3a\xde\x7e\xfb\x6d\xad\x7f\x4a\x0f\x57\x9b\x8e\x93\xfd\x4f\x56\x41\x4a\x66\xa4\x4d\x91\xd2\x49\x6d\xb8\x65\x70\x40\xbd\x54\x94\x12\x28\xad\x33\x48\x65\x93\x1a\x50\x52\x33\x23\x59\x38\x08\x18\x59\x91\x3c\x48\x81\x96\x79\x71\xe9\xd2\x25\x2e\xb0\xc4\xf2\x81\xc5\x65\x8d\x5f\x42\xb6\xc8\x9c\x35\x8e\xf2\xcd\xe9\x60\x6b\x65\x91\x6d\x12\xc8\xc4\x25\x23\xb8\x7a\x83\xae\xab\xc4\xb1\xf6\x96\x78\x33\xc0\x4b\x67\x74\xfb\x39\xff\x81\x2d\xf2\x66\x8e\xa3\x08\x53\xe5\x43\x14\xe8\x48\xc7\x31\x4e\x39\x90\x67\xb2\x61\x8c\xc7\x4e\xe1\x69\x38\x17\x97\xb0\x1a\x9e\x1c\xf8\x3d\x2e\x0d\xdc\x55\x3e\x02\x8c\x71\xb4\x36\x2e\xb2\x73\x2b\x8b\xcc\xcc\x72\xfb\xde\xed\x71\x79\xcc\x2e\xa8\x73\x6c\x77\x3a\x6f\x37\x02\xe0\x86\xc3\x21\xc4\x25\x75\x50\x9e\xb5\xf7\xd0\x66\xa9\x65\x89\xf0\x2e\x71\x6b\x83\x95\x54\x76\x6d\x03\x85\x16\x34\x25\x2b\xf9\x3b\x2d\x4e\x1e\x52\x33\x43\x0d\xaf\x56\x3e\x0d\x2e\x65\x6c\xf1\x3e\xaa\xb5\x47\xaa\x8d\x4e\x53\x57\xa9\xfa\xd7\xca\xc0\x07\x64\xd9\x6f\x35\xc3\x2d\xc5\x6b\xdf\xb6\x95\xf4\x52\xf9\x43\x48\xe9\x11\x4e\x87\x1b\x27\x5a\xbd\x72\xdc\xfc\x9d\x1b\x22\x6d\xfc\xca\x7a\xd3\x94\xb9\xd4\x87\x5a\x1d\x6b\xf5\xc7\xf3\x6b\xf5\xc0\xd3\x35\xbd\x2e\xeb\x85\xb0\x5c\x46\x75\x62\x23\xf2\x68\xed\xd7\xd6\xff\x53\x65\x92\x46\x12\xaf\x33\x99\xd7\xb1\xd3\xa6\xf1\x74\x51\x58\xda\x61\x1e\x97\x70\x41\xa9\x29\x33\xe0\x70\x54\x4e\x1d\xc1\x4e\x16\xd9\xca\xb8\xc8\xd6\x32\x87\x41\x30\x25\xf8\x58\x40\x4c\x8f\xd7\x85\xa4\x46\xcf\xae\x6e\x4c\x0f\xc6\x8c\x87\xa2\x65\xaf\x79\xfc\xad\x86\x09\x00\x0e\x96\x60\xf7\x26\xc5\x3b\xaf\x9d\x3f\xb9\xf4\xda\xb9\xe9\xcb\x07\x93\xe2\x7d\x67\x70\x1b\xf5\x49\xa2\x60\xb4\xcc\x88\x68\x4e\xd5\xa5\x73\xe1\x5e\x17\x07\x54\x9b\x72\xbd\xd1\xc2\xeb\x05\x1d\xf5\xaa\xb5\xbf\x94\x1f\xb0\x77\x39\xb9\xe5\x41\xca\xbd\x66\xc8\xa7\xe4\x2e\x35\x01\x23\xf8\xcd\xb9\x9a\x32\xe1\xbf\x9c\x31\xc7\x32\xf3\x4e\x06\x85\x79\x4d\x71\xb4\xcd\x6e\xfb\x0c\x76\x5a\xc7\x5b\x52\x48\xfc\x78\x74\xc8\xe7\x05\x37\x76\xa6\x20\xac\x1e\x87\x29\x8c\xa3\xd2\x38\x8c\x0a\x33\x3c\x73\x32\xb8\x30\xb0\x34\x5e\xba\xbe\xdf\x5b\x18\xc1\xeb\xc2\xd7\x35\xc3\xfd\x2b\xdc\x36\xa8\x8d\x9a\xb0\xd9\xb6\x79\x4d\x74\xc3\xb0\x00\xc4\x5e\x14\x5a\xa2\x19\xf2\x06\x7a\x95\x91\x52\x7f\x7e\xa0\x69\xeb\xa3\xf9\xc9\x74\x61\xbb\x10\x05\xfe\xc9\x64\x16\xab\x93\xc2\x9c\x5f\x9b\xe5\xe6\x68\x68\xdf\xd9\x9f\x14\x47\x3e\x8f\xf3\xde\xa6\xa4\xc2\x0e\xcb\x46\xa3\xd1\xc8\x94\x65\xa9\xb5\x59\xaa\xcd\x65\x1b\xa5\x94\x65\x17\xbe\xd4\xec\x3b\x15\x52\x46\x39\xc4\x7b\x0a\x5f\x17\x9f\x6d\x33\x56\x1e\xd7\xa7\x4f\xa4\xe8\xb6\xe5\xeb\x5b\x0f\x7d\xe8\xa4\x3c\x14\x6d\x83\xb1\x0c\x72\xf2\xa0\x29\x26\xcd\xeb\xc6\xe9\xa4\x26\x41\x5a\xdd\xcb\xf5\x74\x6d\xd6\x1e\x82\xa6\x47\x34\xaf\x84\xc4\x27\x79\xd7\xda\x26\xcc\x68\xdb\x26\x84\x1c\x67\xdb\xc0\xad\x4d\x2c\xb9\x41\xd0\x36\x3b\xe5\x3c\x6b\x83\x3e\x4f\xef\xd2\xaf\xbc\xed\x78\x7b\xa6\x66\xcf\xbc\x1e\x24\xdf\x5d\x13\x65\xcd\x8b\x95\xaa\xf7\xa5\x09\xf6\x97\xbf\xfc\x65\x1a\x0c\x06\xcc\xc0\x20\xb0\xad\x02\xf0\x46\x8c\xf1\x8f\x19\xaa\x13\x47\x54\xe4\x70\x87\xc3\xf2\xc4\x19\xd8\x95\x45\xb6\x3a\x2a\xcc\x9a\x71\xc8\x81\x70\xe2\xa7\xbe\xac\x22\x7a\xb7\xc3\x45\x74\x14\xbe\x49\x44\x71\x72\x59\xeb\x6d\x62\x07\x29\x9c\x3f\xb5\xe4\xe2\x31\x6b\x07\x20\xac\x3b\x39\x82\xdd\x9b\x2c\xae\xfc\xec\xde\xe3\xff\xf7\xe7\xe7\x4f\x5e\xda\x9f\x14\xd7\xfc\xbe\x96\xa3\xb0\x29\xd7\xff\x86\xbd\x2d\x73\x20\x7e\xd6\xc0\x79\xaf\x8b\xfb\xf8\xc7\x3f\x4e\xe3\xf1\x98\x2e\x5f\xbe\xcc\xdb\x4f\xb6\x6d\xca\x18\x94\x21\x25\xeb\x5d\xf2\x9c\x32\x46\xb4\x3e\xdd\x68\x43\x11\x17\x64\x86\x80\x6a\xa9\x48\x53\xb2\x5a\x41\x91\x88\x4b\x31\x1f\x18\x92\x86\x8f\x2c\x8c\x56\x58\x19\x34\xeb\x1d\x29\x78\x76\x1c\xae\x51\x61\x7c\xbb\x15\x55\x2d\x6c\x00\x7f\x4c\x9a\x60\xe6\xb9\x2d\xcb\x0c\xb4\x31\xcd\x57\x36\xa6\xf9\x79\xe3\x28\xab\x84\x93\x80\xda\xe3\x10\x03\x8f\x91\x5e\x93\xf0\x99\x00\xe9\xf5\x20\x9f\x31\xe6\x75\xb5\xa5\xde\x38\x15\xc4\xac\x8c\x86\x01\xe5\x18\xed\xd0\x39\xd0\x34\x5a\x9a\xe9\xcd\x8a\xd3\x42\x65\xbc\xd0\xfa\xa4\xc8\xee\x3f\x73\x92\x0f\x0e\xc6\xe5\x2f\x6e\x8f\x8b\x19\x28\x39\x9b\x0a\xef\x0e\xa8\xea\xfb\x6b\x5f\xfb\x1a\xdf\xf7\xa2\x09\xab\x8c\x97\x82\x2e\xe3\x52\x1d\x82\xe3\x4c\x29\x38\x0e\x2f\x65\x44\x2a\x67\xc9\x1f\xa7\xad\x19\x17\x29\x7c\x21\x7f\x9f\xa5\x54\x8e\x47\xab\x1f\xed\x17\x58\xa6\xd3\xd7\xd8\x43\x07\x4c\xca\x48\x90\x65\xe7\x93\x94\xd3\x28\x2b\xb9\x59\x4f\x1a\x33\x72\x30\x0b\xf1\xda\xf2\x90\xd6\xff\xa5\xe2\xd3\x8c\x22\x6d\x70\x97\x7a\x85\xf3\x93\x3a\x61\x64\x05\xac\xd4\x87\xda\xec\x95\xe3\xd4\x64\x9d\xcb\xae\x81\x5e\x17\x9c\x27\x5e\xa7\x46\xc1\xc1\xf9\x96\xb4\x65\x3d\x71\xb5\x20\xbd\x4f\x50\x60\x1d\xfb\x93\x83\x0b\x2f\x1f\xa7\x99\xe2\x5b\xd6\x87\x94\x03\xbe\x41\xf8\x54\x74\x5e\x7a\xe9\x25\xcb\x97\x8b\xfc\xd5\xff\x71\xff\xa3\xd8\x07\x49\xac\x8c\xa6\xc8\x51\xde\x1e\x95\x87\xc7\x83\xf2\x30\x2f\xc9\x4c\x8a\x6c\x2d\xb7\x66\xc4\x37\xeb\x06\x3d\xdd\xb8\x2a\xc3\xc1\x6f\x2b\x08\x70\x62\x99\xa9\xf6\xf6\x44\x05\x2d\x3d\x2f\xa5\x71\xc5\xcd\xd5\xe2\x8d\x1f\x3f\x70\xf8\xfd\x7f\x3b\x7f\xfc\xb3\xc3\x71\x79\xc3\x7b\x5a\x8e\x00\x44\xe3\xc5\x39\x37\x25\xa2\x19\xfc\xde\x16\x54\x97\xd1\xf1\x6f\x32\xe1\x87\x3f\xfc\x21\xfe\xe5\x5f\xfe\x45\x5b\xf2\xe4\x75\xc9\x4a\xd4\x68\xef\x36\xbd\xa9\xf5\x09\x08\xdc\x32\x9f\x66\xcc\xa6\xfa\xbd\xa6\x17\x1a\xfa\x92\x2f\x15\xa5\x18\xe6\xa1\x8f\x71\xc2\x2b\x49\x2a\x9a\x10\xba\x06\x38\x0d\x37\x17\xe4\x64\xc8\xb2\xcc\x7c\xf6\xb3\x9f\xa5\x73\xe7\xce\x85\xa8\x20\xb0\x12\x67\x70\x1d\x1a\xf8\x25\x23\x07\x64\x45\xe6\x4a\x4b\x8e\xce\x9c\x0c\xce\x8e\x8b\x6c\xcb\x70\xe4\x2e\x08\x60\x5d\x08\xde\xda\xdc\x58\x00\xd5\xeb\x9d\xd1\xac\x60\xe2\x11\x7b\x69\xbd\x1e\x55\x19\x3c\xa8\x8f\x2f\x3b\x00\x70\x1c\x4f\x8d\xa3\x3e\x2e\x27\x8c\x16\xc7\xd2\xb8\x21\x84\xa6\x75\xaf\x18\x31\x94\x39\x5a\x1d\x17\xe6\x81\x33\x27\x39\x0e\x26\xe5\x95\xa3\x41\xb9\x70\x06\x25\x83\xe1\xb3\xa7\x48\x31\x7c\x33\xaa\xc7\xb2\x51\xaa\xed\xa4\xb0\xa7\xe0\x9d\x80\x95\x46\x54\x4a\xce\xba\x70\x86\xc0\xe5\x58\xa3\xa3\x85\xd3\x96\xb5\x4f\xfe\x54\xf9\x52\x70\xa7\xa1\x99\xaa\x93\x3e\x38\x4f\x03\x17\x82\x66\xd8\x05\x11\x94\xa7\x5c\x90\x78\xef\x32\x40\xa4\x42\x96\xc6\xa9\xc6\x87\x1c\x08\x1d\x96\x69\xf3\xb2\xa4\xe0\x65\x48\xc9\xac\x1c\xf4\x43\xe0\xc6\x60\x1b\x1d\xc9\x93\x2c\xaf\xd4\x8d\x1a\xbc\xf4\xe0\xc8\x36\x80\x48\x97\x7c\x2c\xf5\x7d\x01\x0f\x86\x53\x1b\xe8\x52\x3c\xa5\x9e\xef\x98\x4e\x9e\xe7\xc6\x5a\xeb\x76\x76\x76\xc8\x7b\x20\x82\x1e\x8d\x77\x7d\x79\x23\x22\xac\x3a\xf0\x73\x44\x28\x32\x94\x07\x93\xf2\x78\x77\x65\xb1\x5b\x66\xee\x64\xbc\xc8\xc6\xc3\xc2\xac\x10\xa8\x31\x24\x04\xf5\xed\xfc\x0b\xd7\xab\x8d\xe7\xa0\x8b\xd9\x04\xd8\xf9\x78\x47\xd5\x7e\x96\xa3\x51\xb9\xf7\xf6\x99\xd9\x8f\x5f\x7c\xe8\xe0\xfb\x6f\x9f\x99\xfe\x62\x3a\x70\xb7\x1c\x70\x08\xc2\x6d\x00\x87\x44\xc4\xf7\xb6\x2c\x00\xcc\xc3\xb7\x89\x3c\xba\x32\x94\xf1\x85\x17\x5e\xb0\x57\xaf\x5e\x95\xf5\xaa\xd5\xa5\x94\x1f\x59\xf7\xbc\x38\x5a\x5f\x6c\x5b\xee\xe7\xf9\x64\xde\xb6\x7e\xaf\xf1\xe4\x38\xbe\x8c\x65\xd2\x66\xb3\x6d\x82\xaa\x09\x1b\x27\xa8\x15\x46\x1a\x3e\x29\xdc\xd1\x48\x85\xbe\x71\x47\xe2\x8a\xcf\xce\x39\xf7\xd6\x5b\x6f\x39\xfe\x01\x46\x51\xe8\xe0\x32\xe4\xb4\x08\x7e\xa3\x6e\x69\x1c\x2d\x32\xe7\x06\x96\x68\xfb\x24\xbf\x77\x60\xcd\x38\x52\x0c\xf6\x87\xc7\xa8\x19\x30\x35\x28\xc5\x34\x96\x75\xe9\xf4\x10\x0f\x8e\xe5\x6b\x60\x0a\x74\x94\xbc\xdc\x70\xaa\x79\xaa\x8d\x1f\x8e\x87\x47\x35\x1a\xd6\xc5\x0e\x45\x99\xa3\x95\x71\x91\xdd\xbb\x36\xcb\x16\xc7\xa3\xf2\xfd\xe3\xa1\x9d\xdb\x1e\xc6\x0b\x50\x2d\xd1\xb5\x9c\x36\xea\xe3\x0d\x08\x70\xda\xe0\xf4\xab\x08\xff\x1e\x34\xff\x3d\xc2\x9d\x4c\x50\xee\x34\xa4\x8c\x07\xd9\xc6\x29\x0f\x97\x84\x4d\xe9\x93\x36\xdc\x6d\x38\x34\x83\x46\x86\x94\x47\xaa\x6b\xc2\xd7\x35\x31\x0b\xf1\x9a\x97\x4e\xab\x8b\x3e\xe5\x4d\xf1\xa2\xc1\xb7\xf1\xd4\xb7\x5e\xfb\xe0\x4e\xf1\xd7\x87\x8e\x1c\x6b\x24\x4d\xb5\x5d\xad\xb5\xf4\xa7\x7f\xfa\xa7\xf4\xd7\x7f\xfd\xd7\x36\x1c\x8d\x06\xe2\x05\x9b\x51\x0d\x7a\xaf\x7c\xd8\x4a\x60\xf9\xd2\x92\x25\xd8\xe9\xc0\xcd\xf7\x27\xc5\xc1\xe1\xa8\xdc\xcb\x1c\xca\xdc\xd2\x20\x73\x94\x53\x65\xa6\x34\x76\xfe\x71\xa7\x7c\x1c\x13\x1c\xaa\x63\xcd\xb4\xac\xd9\x01\x87\xd2\xb8\xe2\x64\x68\x0f\xae\xad\xcf\xdf\xfc\xe9\xbd\x47\x2f\xbe\x7c\xff\xd1\x4b\x37\x56\x16\x57\x17\x39\x76\x01\xdc\x66\x46\xcb\x31\x80\x13\x00\x53\xe7\xdc\xdc\x7b\x5b\x16\xde\x68\x09\x77\xb6\x38\x00\xfc\xa3\x8a\xb2\x2e\x9b\xc4\x97\xeb\x32\x55\xf7\x48\xa4\xa7\x70\xa7\x3c\xd4\x7d\xe0\x35\xd8\x25\x1c\xda\x95\xff\xd2\x02\xd2\x82\x86\x50\x8b\x93\xcc\xa9\x1b\x6a\xb1\x5c\x50\xfe\x2c\x67\x0a\x6d\xb4\x01\xc0\x6c\x6c\x6c\xd0\x0f\x7e\xf0\x03\xcb\xf6\xba\x04\xe3\x04\xf0\x86\xb5\x77\x1d\xc6\x75\x4e\x54\x36\x83\x71\x00\x15\x99\x73\x8b\xcc\x96\x6b\xb3\x6c\x65\x63\x96\xdf\x43\x0e\x59\x3c\xfe\x2c\x2d\x06\x68\x46\x00\x4b\x73\x88\x9e\x12\xe7\xf3\x3b\xd4\x16\x38\xbf\xf7\x25\x1a\x1c\x3e\x8d\x18\x7c\x40\x56\xad\x95\x62\xc9\x98\xe1\x97\xe5\xf1\x4f\xa3\x73\xa3\x4a\xce\x06\xf8\x5f\xb8\x58\x0f\x95\xf1\xb2\x36\x2e\xcc\xb9\x49\x91\x15\xb3\xdc\xee\x9d\x0c\xcb\x93\x82\x1a\x9b\x74\xad\xaf\xbf\xb8\x69\x97\x5f\x52\xf7\xd8\x63\x8f\xd1\x2b\xaf\xbc\x12\xda\x4e\xb6\x41\x4a\xc1\x6a\x33\x66\x99\x26\x8d\x9a\x94\x0c\xc9\xa0\xc1\x69\x38\x53\xf8\x4e\x63\x74\x9d\x86\x07\xed\xb9\x4f\xe7\xee\x3b\x60\xa6\x7e\x53\x79\xb9\xbb\xb6\x6b\x00\x4f\xf1\x9d\xe2\x93\x4f\x42\xe4\x33\xd7\x3d\x61\x02\xc5\x71\xb4\x2d\xdb\x70\x18\x89\x9b\xe3\x00\x9a\x32\xa8\xc1\xa6\xca\xa5\x2d\x6f\x48\x7e\xdb\x70\x6b\xc6\x49\x57\x9d\x68\xcb\x64\xa7\x29\x7b\x17\x2f\xb2\x5e\xb9\x3a\xe8\xe2\xa9\x0f\x6e\x28\xf5\xd3\xa7\x0c\x1a\x8c\xc4\x97\x2a\x43\x23\xfd\x67\x3f\xfb\x99\xfb\xfc\xe7\x3f\x6f\xd6\xd7\xd7\x01\xc4\x8b\x34\x83\xa7\xc5\xf9\x67\x07\x00\xfe\x91\xbc\x67\x26\x7a\x69\x1c\xa1\x5c\x64\x6e\x76\x38\x2a\x8f\x6e\xac\x16\xb7\xf6\xc7\xc5\x0d\x47\x58\x10\x08\xe4\x28\xf3\x6a\xd3\x68\xcb\xf5\xa1\xd4\xfc\xea\x0c\x0b\x87\x92\x50\xcc\x72\x3b\xbd\x3d\x2a\x6f\xbe\xbf\xbe\x78\xfb\x8d\xb3\x27\xaf\xbc\x7a\xef\xf1\x4b\x57\xb6\x66\x6f\x1c\x8e\xca\x1b\xa5\x71\x7b\x00\x8e\x40\x74\x08\xe0\xd0\x39\xc7\x8f\x3f\x4f\x89\x68\xea\x3d\x2d\x0b\x54\xba\x38\x5e\x36\xe7\x9c\x73\x2f\xbc\xf0\x82\x7d\xfa\xe9\xa7\xcd\xf5\xeb\xd7\x53\x7d\xa1\xaf\x9c\xb6\x8d\xbb\x52\xee\x52\xf8\xda\xe0\xb5\xb6\x6f\xeb\xc3\x51\x36\xb4\x0b\xe8\xda\x14\x69\x1f\x85\x9b\x52\xaa\x32\x4e\x33\x3c\xb4\xc1\x44\x53\x60\x29\x5e\x1d\x00\x9a\xcd\x66\x76\x6b\x6b\xcb\x7c\xff\xfb\xdf\xb7\xec\x84\x91\xa4\xcb\x8d\x96\xb0\xeb\x3c\x03\x21\xb3\x04\x9a\xe7\xce\x39\x03\x7b\xe6\x38\x3f\x3f\x59\x64\x5b\x41\xfc\x1a\xdf\x8f\xf0\x46\x83\xf3\x67\xa0\xab\xfd\xae\xc1\x22\x61\x86\x4a\x30\x42\x7c\xfe\xb8\x61\x8b\x20\xf2\x54\x80\x7c\x13\x3a\xd0\xb4\xba\x2a\x3a\x7e\x41\x89\x19\x38\x8e\x2f\x4d\x05\x1c\x80\x38\xb2\x2d\xac\x2a\xbf\x11\x87\xbc\x85\xc3\x36\x1c\x9b\xcc\xd2\xc6\xa4\xc8\xb6\xc7\x85\x71\x0b\xe3\x0e\xa6\x03\x7b\x5c\xe4\xb5\xcb\xd1\xcf\x4e\x88\xbd\x47\x83\x63\x32\x99\x84\x65\x23\xde\x7e\xfc\x19\xe2\x59\xbe\xa7\x64\xa5\x0d\x47\x92\x35\x5a\x6c\x00\x00\x20\x00\x49\x44\x41\x54\x9b\x61\xa1\x0d\xda\x9a\xbb\x53\xc2\xf5\xc1\x2d\xe9\xf4\x49\x6b\x7b\x4e\x19\x15\x5a\x9e\x14\xbd\x25\x59\x47\xbf\x32\xc9\x36\x4b\xa5\xb7\xf1\x2d\xbd\xad\x21\x4e\x3e\x4b\x7c\x50\x60\x65\x7d\xc8\x7c\x6d\xf1\x6d\xcb\x22\x5d\x65\xd1\xca\xd5\x56\x46\xa7\xa4\xf7\xe5\x55\xe3\x5b\xd2\x91\x3a\x30\xc5\x53\x78\x06\x96\x97\xd7\xb5\x67\x8e\x23\xd5\x5f\xdb\xda\x4c\x1a\x10\x1c\x9e\xcb\x9c\x36\x38\xb6\xc9\x73\x17\xdf\xa9\x32\x2c\xd5\xcf\xab\xaf\xbe\xea\x2e\x5c\xb8\x40\x1b\x1b\x1b\x0d\x83\x04\xa8\x75\x71\x18\xf0\x99\x57\x26\x7c\xe3\x27\x7e\x49\xba\xc8\xdc\xe2\x64\x58\x1e\x1f\x4c\xca\xc3\x9b\x6b\xc5\xcd\xfd\x71\x71\x6b\x3a\x28\x6f\xcf\x73\x3b\x5d\x64\x6e\x5a\x1a\x37\xb7\xe4\xac\x25\x58\x6b\x5c\x61\x8d\xb3\x96\x5c\x69\xc9\x95\x85\x71\x8b\x79\x6e\xa7\x27\x03\x7b\x78\x38\x2a\x77\x6f\xad\x16\x57\xdf\xd9\x9c\xbd\xf1\x8b\x73\x27\xaf\xbe\x7e\x6e\xfa\xb3\x2b\x5b\xb3\xb7\xf6\x56\x8a\xab\xd3\xdc\xed\x5b\x72\xb7\x89\xe8\x08\x44\x61\x5f\x4b\x30\x5a\xa6\xa8\x36\xe3\x06\x4f\x4b\x01\xa0\xe4\xd7\xfb\xfb\x67\x5c\xba\x74\xc9\x5d\xbf\x7e\xbd\xad\x2f\xa4\xea\x52\x1b\x27\xc1\x60\xba\xe4\x2e\xf5\x9c\x6c\x1f\x85\xc7\x36\xbe\xe3\xb3\x76\x01\x9d\x74\xc7\x49\xe1\x50\x11\x29\xc4\xb4\x99\x23\xcf\x2f\x15\x56\x10\x70\x39\xc3\xd1\x0c\x98\xb6\xca\xb5\x00\x30\x9d\x4e\x1d\xd0\x38\x61\xc4\xf9\xe1\xcb\x99\x04\xc4\xb3\xfd\x15\x3d\x42\x6e\x8d\xc3\x3c\xb7\xc5\xb0\x34\xf9\x99\x93\xc1\xbd\x79\xe9\x4f\x19\x45\x63\xa2\x36\x12\x3c\x42\xcf\x44\x7d\x24\x59\x2e\xeb\xc4\x2f\x7d\x86\x0d\x5c\x9e\x2b\x9e\x27\xbc\x55\x3b\xd4\x03\xce\xda\x98\xa9\x8c\x1e\x66\xa0\x34\xaa\x97\x9f\x72\x42\x7d\x0f\x0d\x10\x8f\xf0\x55\x24\xd8\x07\x23\xbd\x91\xc5\x0d\x18\x10\xc1\x80\xb2\xdc\xd2\xd6\x64\x9e\x6d\x8d\x4b\xe3\xca\x0c\x87\x27\x83\xf2\x78\x91\xb9\xb0\x9e\xca\x03\x6f\x0f\x02\x20\x2f\xa9\xd3\x06\xe2\xae\x70\x27\x79\xdb\x60\xdb\x06\x27\x09\x97\xc2\x73\x27\xe5\xb8\x93\x90\xa2\xd1\x35\x59\x48\x05\xad\x2f\x76\x85\x0f\xd2\x66\x29\xda\x5d\x7c\xa4\x60\x53\xf9\xe4\xa4\x8a\xf7\x75\xd9\xef\x35\xb8\xbe\xa1\x8b\x17\x93\x48\x97\xba\x4a\xab\xd3\x54\xde\x94\x7e\xec\xaa\x1f\x69\x88\x6b\x65\xd0\x68\x74\xf1\x94\x9a\x29\xa7\x78\xd1\xfa\x18\x89\xf7\xd4\x44\xb8\x8b\x6f\x89\xb3\xf5\xf9\xdf\xfe\xed\xdf\xe2\xd1\x68\x65\xb2\xe5\x1f\xe3\xb3\xf5\x11\x61\xe9\xa5\x04\xc1\x82\x60\x1d\xa1\x28\x32\xb7\x38\x1e\x96\x47\xb7\x47\xe5\xfe\xad\x95\x62\xf7\xc6\xda\xe2\xfd\x1b\xab\x8b\xeb\xbb\x2b\xc5\x8d\x83\x71\x79\xeb\x70\x5c\xde\xda\x1f\x97\xb7\xf6\x27\xc5\xf5\xfd\x49\x71\x73\x7f\x52\xdc\xb8\xb9\xba\x78\xff\xea\xc6\xec\xf2\x95\xad\xd9\x1b\x6f\x6f\x4f\xdf\x78\x7b\x7b\xfa\xc6\x95\xad\xf9\x2f\xde\x5f\x9f\xbf\xb3\x3f\x29\xde\x9f\xe6\x76\xcf\x9a\x6a\x2f\x8b\xdf\xc3\x72\x08\xc4\xfb\x5a\x4e\x50\x19\x2d\xe1\x6a\xff\x45\xf8\x26\x91\xe7\xd5\x52\x75\x5b\xae\x05\x00\xf1\x5d\xa2\x54\x9d\xa5\xea\x58\x4e\xf2\xb5\xf1\xb7\xab\x6d\x8c\x78\x3f\x0d\xfd\x94\x67\x87\xbf\x57\xed\x88\xbb\x17\x34\x8f\x48\x2a\xbe\x6f\x1c\x4f\x0b\x21\x05\x93\xa4\xfb\xdc\x73\xcf\x99\x70\x76\xdf\xa7\x85\x2f\x84\xe6\x00\xc6\x44\x34\x06\x30\x76\xce\xad\x11\xd1\x9a\x73\x6e\x83\x40\x1b\x99\xc3\xd6\xf9\xc3\xe1\x43\x9f\x78\x7b\xe3\x77\x1f\xd8\x1b\x3d\x3d\x2c\x69\x25\xe1\x10\x6c\x7e\x54\x91\x10\x4f\x15\x55\x76\x81\x76\x97\x4a\xc8\xc7\xf6\xa3\x38\xd4\x4b\x36\xd1\xa8\x81\x4f\x40\x65\xf0\x88\xe6\x0e\xb8\x1b\xc7\xaa\xd9\x33\xb0\x4c\x56\xa6\x73\xa0\x60\xf0\x84\x64\x0b\x37\x3f\x19\xd8\x9f\xbf\xb7\x31\xfb\xbf\x5e\x3b\x77\xf2\x7f\xbf\x7d\x66\xfa\xda\xd1\xc8\x1e\xa0\xea\x44\xfc\x2f\x74\x1e\xeb\xeb\xda\x02\xc0\xb5\x6b\xd7\xf0\xed\x6f\x7f\x9b\x1b\xb9\x80\xde\xf6\x3c\x3e\xd5\xde\x6d\xf1\x49\xeb\x5c\xe0\x97\xe9\x1a\xdd\x2e\xd9\xec\xa2\xd1\x86\x4b\x06\x99\x3f\x04\xb9\x54\x20\x71\xcb\xb2\xf4\xe5\x33\xc5\x83\xa4\x99\xc2\xd1\x17\x2e\xc5\xab\x2c\x27\x0f\x32\x5d\x6b\x3b\x09\xdf\x97\x47\x8d\x5f\x8d\x7e\x1b\xff\x29\x5e\x65\xf9\xda\x64\x56\x93\x0b\xad\x8c\x6d\xed\xa6\x95\x57\xe3\xad\x4d\x5e\xfa\xf6\x0d\x8e\x53\xa3\xdd\x87\x0f\x9e\x5f\x96\x21\xd5\xbe\x77\xd2\xdf\xd4\xf2\x3e\xf2\xc8\x23\xe6\xa3\x1f\xfd\x28\x2e\x5c\xb8\x10\xbc\x2b\x86\xed\x71\xcc\xfd\xef\x90\x8d\x07\x43\x00\x61\x4c\x08\xe3\xc3\x0a\x7b\x1e\x3b\xe7\x86\x44\x34\x24\x87\x61\x6e\x69\x32\x2c\xcc\x70\x5c\xd0\xca\xa0\x34\x43\xe3\xc8\xc0\xc1\x10\x60\x00\x67\xad\x81\x9d\x65\x76\x3a\xf3\xde\x99\xc2\xb8\x99\x25\xcc\x1d\x5c\xf8\xc6\xd0\x9c\x88\x82\x71\x32\x05\x10\x3c\x2c\x53\xbf\x34\x34\xf7\x97\xcc\xcd\x3d\x6c\xe1\x9c\x5b\x32\x5a\x9e\x7f\xfe\xf9\x94\xfe\xec\xd3\xc6\x5d\x7a\xa2\xab\xff\x6a\xb2\x9f\xe2\x25\xd5\x57\x53\x61\x09\xbe\x6d\xa9\xa8\x6b\x76\x20\x2d\xf0\xd4\x2c\x46\xc3\xd5\x66\x65\x73\xfa\x62\xd1\xa4\x51\x80\xb6\x19\x71\xc3\x4a\xbb\x74\xe9\x52\xb8\x51\x97\x8f\xd6\xe1\x54\x51\xb4\x34\xbd\x35\x5e\x7d\xdb\xc8\xef\x77\x99\x0e\xac\x35\x8e\x68\x73\x9a\x9f\x1d\x15\xd9\xaa\x71\x94\xc5\x69\x03\xbb\xfe\xb6\x32\x52\xa8\xb9\x2c\x14\x9f\xc9\x1b\x25\x4b\x76\x0b\xc2\x5a\x0f\x37\x23\xe3\xcd\xbc\x0c\x3e\x7a\x4b\xc8\xc3\xc5\xb4\xfa\xb6\xc5\xba\xa2\xb8\xe7\xa5\xfe\x28\x64\xa8\xb1\xe0\x59\x71\xa2\x76\x25\xdf\xce\x01\x86\xbc\xe7\xa5\xc8\x36\xc7\x85\xc9\xaa\x0f\x33\xda\xc3\x45\xee\x8a\x50\x07\x54\x1f\xf3\x0b\xb3\x9a\xca\xfe\x71\xce\xad\xad\xad\xe1\x91\x47\x1e\xa1\x9f\xfe\xf4\xa7\x8e\x51\xd3\xbc\x1c\x5c\x4e\xf8\x9f\x06\xa7\xc5\xb7\x3d\xa7\x66\x0c\xda\xcc\x50\x9b\xe9\xf6\xa1\x97\x2a\x83\x0c\xa9\xbe\xc0\xeb\x47\xce\x98\x53\x33\xd8\x36\xbe\x52\x7c\x6a\x21\x55\x3f\x1a\x0e\x0d\xae\xcd\x40\xe0\x33\xb6\x90\x26\xdb\x58\x4b\xe7\xf9\xe4\xb3\x45\x73\x76\x98\xaa\xf7\xb6\xf2\x4b\x7c\x72\x06\xa8\xcd\x34\x35\xfc\x9c\xef\x36\x3a\xa9\xb6\xe4\x65\xe6\xcf\x1a\xdf\xbc\x8c\x5a\x5f\x91\x74\x24\x3c\x6f\x17\x8d\x1e\xd7\xc1\xbc\x1d\x64\x3e\xf9\x9c\x6a\xd7\x00\xa3\x79\xa1\x52\xf4\x35\x78\x4d\xb6\x34\xbe\x64\x7f\x25\x00\x6e\x7f\x7f\xdf\xfd\xfc\xe7\x3f\x77\xec\x1b\x46\x51\x3f\xb1\x67\xeb\xc7\x83\xc0\x8f\x45\x75\x4a\xc7\xb2\xe7\x12\x95\xc7\x23\xec\x2f\x59\x38\xb8\x85\x35\x98\x2e\x72\x77\x72\x32\xb4\x07\x87\xa3\xf2\xe0\xf6\xb8\xdc\x3d\x18\x15\x7b\xb7\x27\xe5\xad\x83\x51\xb1\x7b\x7b\x54\xde\x9a\x0e\xdd\xfe\x22\x77\x07\xa5\xc1\xa1\x23\x9c\x80\x70\x44\xd5\x29\xa1\x63\x54\x9b\x6f\x0f\x51\x5f\xe1\x7f\x04\x6f\xbc\xf8\xa5\xa1\x19\x55\xdf\x23\x8a\x9e\x16\xef\x11\x8a\x46\x0b\xb0\x74\xaa\xb3\xad\x8e\xa1\xc0\x85\x90\xf2\x18\x12\x96\xdb\x37\xd5\xdf\x64\x3e\x29\xdf\x92\x7e\x1f\xbd\xd0\xa0\x95\x63\x39\xa4\x2c\x27\x0d\xae\xed\x9d\xe3\x48\xa5\xb5\x59\xe1\x3c\xad\x8b\x96\x8c\x6f\x4b\xe7\xb4\x2d\x80\x02\x95\x25\x1b\xac\xef\xa9\xff\xcd\x41\xc8\x8b\xcc\x0d\xdf\x3e\x33\x7d\x7d\xfb\x38\xbf\x67\x5c\x98\xb5\xb5\x59\x76\xce\x38\xbf\x19\xab\x5e\x27\x02\x00\x3f\x78\x03\xd5\x65\x74\xc2\xab\x21\x8c\x96\xd0\x3b\xc3\xa6\xdc\xda\xd8\x20\x8e\x92\xc5\xa0\xde\x88\x0b\x7f\x6b\x2e\x4f\x6b\xc4\xb8\x3a\x85\x59\x21\x61\x6f\x0d\x8f\xae\x2d\x23\x4e\xcf\x35\x18\x36\xa0\xe1\x78\x61\x9e\xb8\x70\x7b\x98\x1b\x47\x86\x00\xbc\xb1\x3d\xfd\xf9\xd1\xb0\x3c\x08\x9b\x75\xfd\x6f\xe1\xeb\x2e\xdc\x29\x60\x00\x58\x76\x34\x3d\xb4\x41\x08\x6d\xed\xdc\x35\xd3\xd4\x42\x1f\xb9\x3d\x0d\x7c\x9b\x87\xe2\x34\x74\xfa\xe0\xe4\xe9\xa7\xc1\xff\x41\x78\xb9\x5b\xa1\xad\xaf\xa6\xc2\x07\xe5\xbb\x6d\x96\x76\xa7\x72\xd2\xa5\x97\x52\xcf\x29\x8f\x4b\x9f\xe7\xbb\x21\x63\x6d\x86\x63\x1b\xfc\x69\xeb\xbf\x0f\x1d\x2d\xbe\x0f\x9d\xd3\xca\x83\x06\xdb\xe5\xa5\xc1\xb5\x6b\xd7\x70\xcf\x3d\xf7\xc0\x7b\x2c\x42\x7c\x41\x44\x39\x96\x3d\xc7\xc1\x38\x28\xfc\x49\x9e\x39\x80\xa1\x87\x1b\x02\xc8\xbd\x77\x26\x78\xf0\x8d\xc7\x13\x68\x86\x49\x5d\x1c\x6b\xbc\xd1\x13\x7e\xa5\xd7\x7a\xca\x9f\x19\x4c\xcc\x27\xf8\xb2\xce\x39\x6d\x79\xe8\x54\x75\x82\xbb\xa3\x43\xee\xb6\xee\x6d\x95\x2f\x6d\x8f\x8b\xb4\x64\x79\x68\x9b\xb5\x75\x11\xe5\xde\x10\xcb\xde\x79\x5a\x6a\xd6\xd7\x87\x9e\x66\xed\x01\x00\xb6\xb7\xb7\xcd\x3f\xff\xf3\x3f\xf3\x53\x46\x61\x2f\x56\x18\xe1\x43\xb9\xf9\xb3\x41\x75\x44\x1a\xf3\xcc\x39\x6b\x60\xd7\x66\xd9\xc6\xea\x22\xdb\x18\x58\x1a\xc9\x7b\x6a\x1d\x80\xc6\x4e\x5c\x71\xc5\x3f\x50\x1b\x36\xd1\x48\x71\x81\xd1\xf0\xfd\x0a\xf9\xad\x0b\x34\x36\xfe\x46\x12\xde\x55\x52\x75\x8a\xda\x33\x13\xee\x69\x91\x27\x8f\xaa\xcd\xba\x95\x97\xa5\xb9\xef\xa6\xbe\xbe\xba\x31\xcd\x09\x78\x9c\x2f\x8e\x03\x08\x94\x65\x96\x36\x27\x85\x39\x3b\x59\x64\x43\x47\xd8\x3f\x1a\x95\x47\x8b\xcc\x95\xa0\xea\x94\x11\xd5\x37\xec\x86\x7d\x70\x71\x4d\xf9\xe2\xc5\x8b\xb4\xb3\xb3\x43\xec\x98\x5e\x60\x83\xcf\x6e\xa5\x97\x8d\xc7\x73\xf9\x30\x22\xaf\x9c\x1d\x43\xe0\x92\x79\x02\x4e\x28\x71\x92\x0f\x49\x4b\xd2\x91\xb8\x65\xb9\x52\x65\x6c\x83\xd1\x66\x3d\xda\xaf\xec\xab\x32\x4d\xa3\x29\xeb\x43\x9b\xd1\xcb\x3e\xa4\xbd\x77\x95\x21\xc0\xa5\x94\xa3\xac\x67\x1e\x27\xeb\x38\x25\x03\x12\xb7\x9c\xcd\xa7\xca\x2b\x71\xa4\xf2\xf1\x3a\x4e\x79\x3b\x24\x8f\x7d\x78\x02\x96\xdb\xa7\x0d\xb7\x6c\xeb\xbe\xb8\x25\x8c\xac\x37\x2d\x70\xdc\x12\x07\xe7\x57\x83\xd1\xc6\x0e\xa9\x9b\xfb\xe2\x0e\x21\x25\xeb\x1a\xee\x54\x9b\x45\xdc\x3f\xfb\xd9\xcf\xec\xa3\x8f\x3e\x4a\x2b\x2b\x2b\xf1\x24\x11\x80\xb0\xb9\x35\xee\x75\xf1\x2f\xd6\x3f\x06\xcf\x4b\xf0\xb6\x94\x61\xe9\x86\x88\x16\xec\x79\x16\x2e\x86\x23\xa2\x13\xef\x3d\x39\x21\x7f\x61\x1c\xfc\x46\xdb\x70\x4a\x28\xec\x61\xa1\xfa\xc4\xd0\xcc\xc7\x87\x0d\xb8\x33\xe7\xdc\x02\xfe\x3b\x44\x10\x46\x0b\x50\xed\x69\xf9\xfc\xe7\x3f\x6f\x5e\x7f\xfd\x75\xb2\xd6\x6a\xfd\xaf\xab\xee\xbb\xe4\x8a\xc7\xf3\x7a\xd7\xfa\xb9\x26\x8f\x6d\xfd\xbf\x0d\xb7\x26\x03\x11\xb7\x34\x5c\x34\xa5\xcc\x11\xf6\x31\x28\xf8\x80\x20\x3b\x36\x8f\x27\x25\xee\xb4\x74\x34\x43\x67\x09\xcf\xc9\xc9\x89\xdb\xdc\xdc\x34\xe1\x88\xb4\x30\x10\x88\xe5\x8b\x1d\xdf\x5b\xcf\x04\x20\x03\x21\x3f\xc9\xed\x22\x77\x84\xf5\x59\xbe\x35\x5e\xb0\x6b\xa0\x63\xc6\x70\x45\xbf\xd7\x1a\xfc\xeb\x88\xd1\x80\xa8\xc7\xb6\x38\x32\x93\x37\x26\x18\x4f\x0d\x46\x28\x18\x35\x88\x4e\x90\x60\x88\x38\x84\xbc\xa8\xae\xfc\xa7\x50\x90\xe6\x09\xa3\x18\xa8\x89\xbc\xf2\x0c\x51\xfc\x90\x63\x05\x22\x4e\x3d\x85\x7c\xd5\x43\x75\xc3\xee\x22\xbb\x67\x7d\x96\x8f\x8d\xc3\xfe\xc1\xb8\x38\x9c\x67\x6e\xc1\x36\x2e\x07\xa1\x23\x6f\xbd\x84\x9d\xfb\x44\xcb\x5f\x96\x76\x68\x0a\xba\x65\x5c\x72\x59\x94\xf2\xe0\x94\xbf\x10\x4c\x22\x5e\xc6\x05\x3e\x35\x3a\x32\x4e\xf2\x99\xe2\x87\xe3\x94\xf8\x39\x3e\x99\xc6\xdf\x53\x1d\x5c\x0e\x18\x1c\x3e\xc5\xbf\xac\x4b\xad\x3e\xb4\xfc\x29\x83\x51\xe6\x4d\xfd\x71\xb8\x14\x0e\x28\xf1\x72\xe0\xd7\xfa\x35\x87\x93\x8a\x52\xd6\x9b\xa4\x2f\x75\x83\xac\x53\xad\xad\x64\xdd\x48\x78\xad\xfe\x64\x3b\xf1\x38\xd9\xf6\x6d\x0a\x9d\xa7\x6b\x75\x29\x8d\x3e\x29\x4b\x40\x9a\x47\x19\xb4\xc9\xa3\xa4\xa3\xc9\x22\x87\x69\xa3\xa7\xc9\xae\xc4\xa5\xb5\x3f\xaf\x37\x39\xa6\x68\xc6\x8e\x56\xaf\x8d\x72\xbc\xf2\xca\x2b\x8e\xdf\xae\xee\x8d\x96\xb0\x59\xd7\x01\x00\x55\xb7\xcf\x3a\xbf\x24\x53\x80\xdd\x4c\x8b\xca\xa8\x58\x04\xa3\x85\x79\x4e\x66\x54\x7f\x3f\x68\x8a\x6a\xa9\x27\x2c\xf9\x1c\x7b\x63\x86\x1b\x2f\x33\xd4\x47\x9c\x4f\x7c\x9e\x39\x55\xdf\x1e\x9a\x03\x08\x46\x4b\x38\x3d\xd4\x30\x5a\xac\xb5\x78\xf1\xc5\x17\xdd\xab\xaf\xbe\xea\xac\xb5\x4c\xb3\x27\xe5\x5a\xb6\xab\xec\x13\xb2\xbe\x52\x46\x34\xd7\xd3\x92\x5e\x1b\x0c\x0f\x9a\xb1\xae\xf1\xa4\xca\x91\xbc\x39\x57\x22\x6d\x23\x90\x9a\xb1\xc9\xc1\x40\xb3\xfa\x64\x41\x52\xcf\x1a\x3f\x21\x48\xda\x1c\x2e\x18\x4f\x91\xe7\xd9\x6c\xe6\x80\xc6\x7e\x17\x2e\xcc\xf2\xdd\x78\x21\xae\x6e\xd4\x75\x8e\x6c\x06\x9c\x0c\xec\x7c\x5c\x9a\xd1\xda\x3c\xdf\x1a\x15\x66\x8d\xa2\x29\x22\x3e\x57\xee\x00\xe1\xda\x68\x14\xae\x36\x4a\x78\x69\xbc\xd1\xc2\x8f\x4b\xb3\x1c\xda\xd2\x51\x94\x52\x6f\x33\xd4\xde\x17\x8e\x98\x61\x72\x50\xf1\xd4\x36\x47\x1d\xcb\x69\xf3\x7c\x06\x64\xfc\x3d\x2f\xf7\x6f\xcc\xb2\xed\x71\x99\xdd\xba\xb1\xb6\xd8\x8b\xa7\x8d\xc2\x87\xb3\xfd\xd1\x3c\x66\x20\x06\x46\xdc\xce\xce\x0e\x29\x97\xd5\x49\xe5\x78\xa7\xa1\x2b\x7f\xaa\x33\x4a\xf9\x4e\xe5\xd5\x3c\x1c\x1a\xed\x54\x7f\x0a\x69\x52\x31\x6b\xf9\x64\x5e\x6d\xc0\xd2\xfa\x41\xc8\xa7\xe1\x93\x41\xa3\xa7\xf5\xd1\xbe\x41\x96\xb5\x6d\x06\x28\xf1\x77\xe9\x81\x36\xfe\x52\xf5\xa0\xd1\xe3\x7d\x3e\x25\x77\x29\x59\x48\x0d\xb4\x6d\xfc\xf1\x38\xa9\x6f\x52\x72\xc8\xe1\xb5\x81\x28\x55\xb6\x36\x9e\xfb\xc8\x16\x06\x83\x81\xf1\x03\xa1\xcc\xdf\x36\xd9\x4c\x19\xde\x3c\x3d\xd5\x7f\x52\x03\x1f\xe7\x8b\xb7\x95\xe4\x4b\x33\x76\x25\x7f\x7c\x50\x07\x00\xfc\xc6\x6f\xfc\x06\x7d\xfd\xeb\x5f\xb7\x6c\xdf\x4b\x05\x50\xef\x7d\xb1\x7e\x5f\x8b\xf3\xf7\xbd\xf0\x65\x9e\x02\xd5\xd2\x78\xe1\x0d\x8d\x05\xea\x4d\xb6\x33\x54\xc6\x4a\x78\x3e\x09\x7f\x22\xfd\x24\x6c\xbe\xc5\xf2\x61\x87\x02\xd5\xc5\x72\x61\x6f\x4d\x19\x78\x02\xaa\x8d\xb8\xde\x7b\xad\x0d\xfa\x6d\xf2\x29\xeb\x9e\xd7\x25\x8f\x97\xfa\xa3\xcd\x68\x96\xef\xd2\xa0\x69\xeb\x97\xf2\x99\xf3\x97\x6c\x57\x7e\x73\x6e\x1f\xa4\xf2\x59\x33\x5a\x24\x71\x9e\xaf\x4d\x69\xb5\x0d\x1a\xbc\xf3\xb6\x0d\x70\x9a\x90\x2f\xc1\x85\x5b\x75\xbd\x30\xc6\x25\x23\x76\xf2\xa8\xa1\xe0\x7c\x5c\x3e\xcf\x5d\x39\xcf\xec\x7c\x5c\x98\xd1\xea\x3c\xdb\x1c\x96\x66\x45\x1a\x11\x81\x72\xea\x54\x51\x88\x8b\xbd\x48\x9c\x2a\x8a\x9e\x92\x68\x6f\x34\x2d\x9f\xd4\xa9\x22\x40\x18\x42\x0c\x28\xa0\xd2\xd2\xa3\x33\x25\xf0\xad\xd0\x96\x86\x16\x01\x64\x1c\xad\x8c\x0a\x73\xdf\xd6\x49\xfe\xd0\xe6\x74\x70\xeb\xfa\xfa\xfc\xe6\x3c\x77\xb6\x2a\x3b\xf3\x1e\x31\xf7\x2b\x9a\x1d\xcb\x89\xe3\xd2\x21\x9d\x07\xcd\xa0\xe6\x8a\x9f\x77\x32\x6d\x46\xd6\xc7\xe0\x4d\x0d\x2a\x06\xcb\x74\xb4\x7e\x92\x1a\x8c\xfb\x0c\x26\x92\x1f\x69\x40\x71\x05\xa4\x0d\x1a\x6d\x86\x54\xaa\x8f\xa4\xfa\x9e\x1c\xc8\x35\x78\xad\x4e\x24\x9c\x4c\xd3\x66\x66\xbc\xdb\xf0\x3f\xad\x2d\x65\x9d\xa4\x26\x2c\x5c\xc9\x69\x3c\x6a\xde\x09\x59\xbf\xfc\x4f\x9b\xf9\xf3\x3a\x5a\x1a\x08\x15\x3a\x21\x3f\x8f\xd7\xf2\x05\xdc\x96\xc1\x3b\x91\x57\xf2\x2d\xfb\x8e\x94\x7f\x6d\xc2\xa8\xe6\x3b\x7b\xf6\x2c\xfd\xf9\x9f\xff\x79\x9c\x48\x58\x6b\xdd\xd6\xd6\x96\x99\x4e\xa7\xbc\x1e\x43\xd0\x06\x25\xd9\x3e\xb2\xfd\xa4\x11\x26\x79\xa2\xc4\xb3\x36\x68\xca\xf6\xe0\xbc\xa4\x96\x25\xe4\x4c\xce\x00\xa0\x1f\xfd\xe8\x47\x16\xa8\x26\xb3\xe1\xd3\x00\x00\xe2\xbe\x14\xe6\x81\xb1\xdc\x90\xf1\xc6\x4b\xe9\xbd\x2e\x85\x5f\xce\x99\x53\x75\xfa\x67\x86\x7a\xd9\x68\x11\x3c\x2f\xde\x33\x13\xbc\x31\x33\xaa\x2e\x91\x9b\xa3\xb9\x24\x34\xf7\x06\x51\xb8\x72\xc2\x7a\x9a\xc1\xcb\xe2\x80\xa5\x23\xcf\x5a\x7f\x90\xf2\x99\xd2\x65\x29\xb9\xe7\x86\xa8\x46\x47\xd3\x4b\x29\x23\x25\xd5\x8f\xb5\x7e\xce\xf9\xe0\xe5\x58\x2a\xaf\x41\x53\x28\x65\xe0\xe9\xf2\x57\x06\xcd\xb2\xb3\x58\x56\xac\xa9\xa0\xc1\x19\x91\x16\xf0\xb5\xe1\x09\xf9\xb8\x10\x37\x42\x38\x36\xe6\x3d\x02\x01\x67\x70\x09\x06\x6b\x37\x6c\x96\x0a\x7f\x87\x00\x8e\xaf\xaf\x2e\xde\x7f\xed\xdc\xc9\x2b\x57\x37\xe6\xaf\xcd\xf2\xf2\x10\xae\x6e\xb5\x4a\xea\x2b\x1a\x61\xbb\x0b\x80\xf8\xc0\xd3\x43\x20\xd1\x4c\x11\x57\xf8\x52\xa8\x73\xd5\x3e\x17\xc7\xb2\x2a\x6a\x93\x8f\x52\x55\xff\x8b\xb7\xc6\x30\xd0\x80\x93\xe7\x71\x0d\x20\x72\x6e\x89\x47\x17\xcb\xd2\x94\x49\xe3\xb0\xb6\x32\xcf\x2e\x7e\xe8\xe6\xf8\x7f\xfb\xcc\x6b\x5b\x7f\x78\xe1\x60\x78\x21\x2b\x69\x85\xfc\x91\x41\x00\x43\xaa\x36\xab\x55\xd7\xf9\x01\xc6\xff\x5a\xa0\x3a\xa6\xee\x51\x49\x39\x01\x74\x43\xd8\x0a\x58\x29\x17\x1a\xbc\x0c\x5c\x2e\x24\x0d\x89\x5b\xd2\xe9\xea\x2f\x12\x57\x9f\xa0\xe5\x49\x95\x8f\xc3\xa5\xea\x27\x15\x64\x5f\x92\xf9\x24\xcd\x90\xa7\xad\x7e\x52\xb4\x35\x5e\x39\xbe\x54\x1d\xa7\xca\x94\x9a\x39\x6a\x65\xd2\x70\xb6\xe5\x4b\xf1\x94\x82\x91\xf0\x1c\x9f\xe4\x45\x83\xed\x53\xff\xa9\xf6\x97\x3c\x75\xc1\x40\xc0\x5b\x00\xf8\xc4\x27\x3e\x61\x00\xd8\xaf\x7e\xf5\xab\x00\x60\x6f\xde\xbc\xb9\xc4\xd3\xde\xde\x9e\xf5\x30\xbc\x0c\x29\xd9\xd0\xe4\x44\xd2\x3e\xed\xb3\x86\x9b\x3f\xa7\xfa\x84\x7c\x86\x80\x97\x6d\x89\xbf\xfc\xcb\xbf\x34\x40\x73\x3c\xf0\x4b\x45\x16\xde\xab\x02\x6f\x98\xa0\x3e\x92\x1c\x0c\x92\x63\xbf\x0c\x74\xe8\x9c\x3b\x0c\xcf\xa8\xf6\xb3\x1c\xa2\x3a\x1d\x14\x6f\xbe\x0d\x7f\xde\xd3\x12\x6e\xc1\x0d\xcb\x43\xf1\x98\x33\x9a\x4b\x53\x08\xfc\xbd\xf0\xc2\x0b\xf6\x0f\xff\xf0\x0f\xdb\xe4\xad\xab\xbc\x5a\x5f\x49\xe9\xd5\x54\xdf\xd1\xda\xba\x75\xcc\xed\xa0\x2f\x65\x2c\x25\xd3\x31\x84\x21\x2a\xa5\x18\x52\xcc\x6a\xc2\x24\x7f\xdb\xf0\xb4\xe5\x0f\x71\x3c\x68\xf8\xfb\xf0\xc4\x71\x2d\xf1\xe4\x07\xce\x90\x1e\xce\xf3\xe7\xa8\x76\x8c\x8f\xfd\xef\x1a\xfb\xdb\x80\xc3\xc6\xb0\xa4\xed\x47\x6f\x8e\xff\xd3\x87\xdf\x5b\xfb\xc4\x85\x83\xe1\x93\x03\x6b\x86\x24\xd7\x61\x92\x81\x4d\xba\xf8\xfc\x4b\x7b\x0f\xd1\xca\xa6\x5d\x1d\x33\xbb\xcb\xc5\xb3\x13\x8f\x43\x33\xf6\x1a\xd3\xbe\x00\x27\xd8\x77\x2a\xaf\xc1\x73\x14\x52\x09\x20\x07\x07\xcc\xa7\xb9\xfb\xc5\xfb\x1b\xb3\xff\xe3\xa5\xfb\x8e\xbe\xfb\xce\xe6\xf4\xca\x6c\xe0\xc2\x5d\x04\xdc\x18\xb4\xec\x37\xcc\x6a\x00\x34\xee\x20\xb8\x93\xd0\x36\x28\x9f\x16\xcf\x07\xc5\x71\x37\xc3\xdd\xe2\xe7\x97\x5d\xae\xae\x3e\x0f\x74\x1b\x20\xa7\xd1\x3f\xa7\x81\x69\xd3\x39\x77\x82\xbb\x8f\xee\xba\x93\x32\xa6\x60\x4e\xab\xef\x3a\xf9\xfe\xca\x57\xbe\x62\xfe\xea\xaf\xfe\xca\x3e\xfb\xec\xb3\x86\xeb\x95\xd4\xe1\x80\xc4\xa9\x95\x2e\x43\xa3\x4f\x9b\x22\x01\xd3\xa7\x3f\x77\xd1\xb9\xa3\xfa\xe6\x77\x7e\xb1\xfa\xe0\x86\x77\x63\x32\xcf\xef\x84\x91\xf0\xa2\x3e\xb9\xce\x6b\xdc\x75\x05\x36\x58\x33\x9d\xd8\x80\x49\xb4\x83\xac\xa7\x3e\x75\x82\x1e\x30\xbf\xea\x3e\xda\x87\x36\x0f\x56\x5b\x2a\x32\x90\x53\xeb\xf6\x77\xe9\x8a\xd5\xdc\xd3\x29\x58\x88\x5f\x83\x7a\x4c\xb5\x68\xba\x86\xa5\x6b\x37\xc5\x07\x7f\x0e\xf0\x8d\xf2\x9d\x3f\x7f\x9e\x8e\x8f\x8f\xb9\x7b\x90\xbc\x7b\x10\xe1\x19\x00\xbf\xa8\x08\xf0\xfb\x5d\x40\x30\x25\x01\xf3\xdc\x2d\x0c\x60\xd6\xe7\xf9\xda\x64\x61\xd6\x8d\xff\x6a\x28\xdf\x44\xbb\xe4\xf2\x60\x2f\xdc\x60\xa8\x88\xb2\x92\x2e\x79\x65\xc2\xc6\x11\xc4\xbb\x57\x1a\x1b\x71\xe3\x92\x0e\xc5\x38\x20\xdc\xce\x5b\x31\xa3\x1e\xaf\xf6\x88\x08\xc2\x68\xf1\xf8\xab\x25\x23\xbe\xe9\xb8\x76\x27\xd5\x9b\x81\x09\x04\xca\x72\x8b\x8d\xc9\xc2\xdc\xbb\x3e\xcf\x47\x8e\x70\x7b\x3a\xb0\xe1\xc4\x51\x8d\xb6\xfe\xb8\x25\xa1\x9a\xd5\xc4\x52\x5f\xbc\x78\x91\x9f\x38\x92\x32\x18\xe4\x42\x73\x93\x07\xd9\xd0\x5c\x92\x9a\xdb\x5a\x83\x91\xb2\x28\x79\x90\x70\x68\x81\xd3\x5c\xb3\xd2\x1d\x2b\xdd\xae\x5a\xd9\x90\xc8\x9f\x72\xc9\x6a\xb8\xb8\x44\x49\xf8\x54\xf9\x34\xdc\xb2\xde\x64\xfe\x36\x78\xcb\x70\x77\xb9\xa7\x35\x1a\xd2\x6d\xac\xd5\x21\xb0\x8c\x5b\xd3\x17\x1a\x1f\x3c\x6f\xaa\xed\x38\x7d\xfe\x6c\x45\xfe\x36\x5e\xf9\xe0\x92\xaa\x07\x9e\x57\xf2\xaf\xcd\xac\xb5\xfa\x4b\xd5\x9b\xfd\xca\x57\xbe\x62\x7e\xf3\x37\x7f\x93\xf2\x3c\x87\xdf\x98\xca\xef\x61\x8a\xfc\xf8\x4d\xf5\x95\xf6\x20\x02\x3f\x11\xf8\x85\x2f\x7c\xc1\x5c\xb8\x70\x81\xde\x7a\xeb\x2d\x30\xfc\x56\xa1\xc9\xe3\x34\xf9\xb5\xd0\xeb\xdb\x09\x3c\xa9\x3e\x0d\x06\xab\xe9\x0a\x49\x5f\xab\xf3\x58\x6f\x67\xcf\x9e\x35\xeb\xeb\xeb\x74\xe6\xcc\x19\xac\xae\xae\x06\xdc\x11\x7f\xd8\xc0\x0b\x34\x3e\x66\xe8\xe0\xf7\x9e\xf8\xa5\xa3\x12\xfe\x1a\x7e\xd4\xfb\x53\x16\xf0\xfb\x55\x5c\xf5\x4d\x21\x7e\xe3\x6d\xd8\x74\x5b\x86\x7d\x35\x61\x53\x30\xaa\x86\xb0\xfe\x11\x2f\xbd\xf4\x12\x76\x77\x77\x69\xb1\x58\x48\x79\xd1\xe4\x80\xc7\xf1\x72\xf3\x3a\xe7\xf5\x9b\xaa\x37\x39\x8e\xb6\xf5\x11\xcd\xa8\xd2\x60\x34\xdd\x2e\x65\x5d\xb6\x3b\x97\x09\x0b\xc0\x88\x21\x72\xc9\x22\x03\x7b\xe7\x30\x5d\x33\x1b\x2d\x9f\x96\xb7\xeb\x5d\xf2\xa4\xbd\xa7\x82\x9c\x05\xa8\x3c\xb1\xe5\x0a\x6e\x4d\x07\xaf\x4b\xf0\xbc\xac\xf8\xbf\x0d\x78\xcf\x8b\xb1\xd8\xd8\x3e\x1e\x3c\xf4\xd4\xb5\x95\x8f\x3e\x79\x7d\xe5\x99\xf5\x69\x76\x8f\x61\xde\x89\xfa\x32\x39\x1f\x95\x38\x35\x14\x83\x8f\xd4\xd2\x98\x72\x51\x66\x44\x6c\x74\xaa\xc9\x37\xf0\x4a\x67\x4d\x34\x82\x7c\x1e\xd5\xbe\xe2\x74\xb5\x34\x25\xce\xc2\x15\xf3\xdc\x5e\xb9\xb9\x5a\xfc\xe0\xad\x33\xd3\xff\xf3\x8d\xed\x93\x97\x6f\xad\x2e\x6e\x94\xa6\xd5\xf3\xd2\x98\x59\x1c\x1c\x1c\xe0\x9b\xdf\xfc\xe6\x2f\xdb\xeb\xd1\x67\x76\x70\x27\xb0\xff\x11\xc3\x7f\x24\xfe\xb5\x99\x39\x7f\x4e\xa5\xa7\xf0\x74\xe1\x3b\x2d\x1f\x7d\x42\x17\xdf\x29\x3e\x43\xe8\xcb\xf7\xd2\x2c\xf3\x03\xe4\xc3\x57\xbe\xf2\x15\x33\x1c\x0e\x25\x6f\x0d\xc3\x85\x4d\xd8\xb8\x37\xa0\x81\x07\xa8\xbc\xa3\x9f\xfd\xec\x67\xcd\xf7\xbe\xf7\xbd\x2e\xbe\xa0\xc4\x9d\xb6\xcd\xee\x46\x1b\x9f\x2a\xfe\x91\x47\x1e\x31\x6f\xbd\xf5\x56\xc3\x23\xa5\xd4\x8f\x49\x3c\xa3\xe3\xd9\x0a\x1d\x6e\x53\xe9\x2d\xde\xae\xae\x32\x7f\x10\x99\x3e\x0d\xee\xbb\xfd\xdc\x1b\xb6\xed\x38\x74\x18\x9b\x64\x81\x52\xb3\x32\x9e\x4f\x7a\x5e\x8c\x88\x93\xef\x12\x07\xcf\x27\x3d\x26\x1a\x6e\x6d\x46\x29\x2d\x36\x8d\x1e\xdf\x98\xc5\x37\x91\x92\xf8\x0d\x06\x4d\xd8\x6c\x6a\x1c\x01\xf3\xcc\xd9\x22\x73\x6e\xbc\x30\xc3\xf5\x59\xb6\x9d\x97\x66\x08\x20\x1e\x51\x96\xc7\x93\xe3\xd1\x60\xc9\x28\x37\x2e\xa2\x22\x61\x46\x05\xcf\xc3\xee\x63\x71\x1e\x3b\xc5\x73\xcb\xcc\x98\x08\x1f\x83\x0c\x70\xac\x73\x10\x03\x24\xd4\xb4\xa9\x99\x35\xd2\xa5\xaa\xdc\x0d\x3e\xf8\x94\x27\xb2\x06\x32\xb9\xa5\xb5\x71\x61\xce\xaf\x2e\xb2\xcd\x61\x61\x9c\x25\x77\x3c\xcd\xdd\xac\xcc\x9c\x15\x59\x63\x76\xb6\x39\xda\x8d\xc7\x63\x08\xef\xcb\x2f\x23\x9c\x06\x77\x9b\x87\x46\x06\xad\x5f\x68\x71\x1f\x34\x70\x7e\xba\x70\xa7\xbc\x48\x6d\x78\x3f\x28\x5f\xa9\xb8\xa6\xb8\x2c\xc7\xa7\xd2\xa5\x37\xc1\x76\xc0\x77\x95\x99\xc3\xb6\xb5\x67\xc8\x9f\x82\xef\xa2\xc7\x3d\x3c\x5c\x97\xa6\xf0\xc9\x67\x2b\xf2\xf5\x29\x2f\x9f\x59\x3b\xa0\x9a\x9c\x19\x63\xe2\x32\x46\xd4\x61\xfe\xc3\xb2\x7e\x50\xce\xc0\x26\x6f\xc1\x35\xea\x61\x1a\x1e\x90\x9d\x9d\x1d\xfa\xbb\xbf\xfb\x3b\xae\x97\xbb\xea\x53\xea\xef\xae\x32\xa4\xf2\x6a\x74\x52\x7d\x41\xf3\x26\x68\x1e\x9a\x25\xf8\xfd\xfd\x7d\x02\xe0\x8e\x8f\x8f\xe9\x1f\xff\xf1\x1f\xf9\xa9\xa3\xf8\x17\xaa\xc7\x3f\xc7\xa5\x9e\x00\x17\x7e\xd9\x09\x25\x07\xbf\xe9\x56\xe0\x02\x6a\x2f\x8e\x03\xaa\xcd\xb7\x97\x2e\x5d\x72\xc7\xc7\xc7\x74\xe3\xc6\x0d\x8d\x57\xcd\x2b\xc1\xcb\xd0\xd6\x77\xda\xf2\x69\xf0\x6d\xb8\xb9\x57\xa7\x4f\x1b\x4b\x6f\x97\x84\xef\xdb\x2f\x5c\xea\x02\xba\x50\xb0\x94\x15\x96\x6a\xfc\x94\x10\xc9\x8a\xe0\x05\x4e\xe5\xed\x63\x51\x73\x85\x90\x72\x31\x69\xf8\x63\x05\xfe\xc1\x1f\xfc\x01\x6d\x6e\x6e\x36\x06\x4f\xd4\x82\xb9\x54\xe9\x54\x7f\x51\x9a\xac\x01\xe6\x99\x2b\xad\x71\x6e\x6d\x96\xaf\xad\x2e\xb2\xad\x0c\x94\x01\x4d\x2f\x47\xbd\xc4\x52\x3d\x3b\x5f\x23\xfc\x82\x38\x1e\x88\xdd\xc9\x42\x0d\x83\x23\x7c\x81\xba\x36\x2e\xb8\x31\xc2\xbf\x16\x1d\x1f\xe2\x07\x15\x19\x91\x00\x17\x6a\x01\x68\x1a\x36\xc2\xf0\x6a\x94\x21\x66\x76\x31\xb6\x41\xd7\x91\xc9\x1c\xad\x8e\x0a\x73\x7e\x75\x9e\x9d\x19\x17\x26\x07\x70\x3c\xcb\xed\xc9\x2c\xb3\xb1\x9e\x51\x75\xea\xb0\x2e\x47\xa1\xdc\x21\xed\x99\x67\x9e\x89\xa7\x1c\x9e\x79\xe6\x19\xf3\xee\xbb\xef\xf2\xb6\xd5\xe4\x07\x22\x4d\xeb\x8c\x5a\x7a\x9f\x3c\xa1\xe0\x2e\x91\xce\x95\xaf\x8c\xe7\x34\xb4\x74\x99\xa6\x3d\x43\xa1\xc3\x7f\x65\xd9\x53\x34\xbb\x14\x94\x56\x9f\x9a\xd2\x93\x69\xe1\x5d\x73\x27\x03\x7a\x7b\x75\xb5\x03\xc7\x95\x52\x78\x3c\x0f\xa0\xd7\xab\x84\x97\x6d\x98\xd2\x1d\x21\x5d\xf2\x8b\x04\xac\x86\x8f\x97\x41\xe2\xe4\xb2\x25\xcb\x20\xd3\xdb\xea\x47\xd5\x79\xcf\x3d\xf7\x9c\xd9\xd9\xd9\xa1\x8b\x17\x2f\x86\xbe\x65\xfc\xf2\x4f\x30\x4a\x8c\x37\x5a\x32\x00\xc6\x80\xb2\xd5\x79\x96\x9f\x3d\x1e\x8c\x0c\x88\x0a\xe3\x60\xab\x6f\x12\x72\x6f\x02\xf9\xa5\x8b\xd8\x3f\x7d\xdf\x94\xe5\x4c\xf5\x29\x88\xb4\xb6\xba\x97\xb0\x52\x96\xa4\x31\x27\xe5\x48\xd6\x6b\x80\xd5\xda\x58\xb6\xab\x03\x80\x1b\x37\x6e\xb8\x33\x67\xce\x98\xef\x7f\xff\xfb\x36\xdc\xfb\x22\x71\xf9\x65\xa2\xd8\xb7\xc2\xbb\xfc\x0d\x38\xfd\x04\xd6\x06\x58\xd4\x63\x4d\x3c\xe2\xfc\xf1\x8f\x7f\xdc\x5c\xbf\x7e\x9d\xae\x5f\xbf\x9e\x5a\x02\x4c\x2d\xbf\xca\x32\x6a\x75\xc6\xc7\xd6\x14\x0c\x2f\x23\x04\xbc\x94\xef\x2e\x3d\x2b\x65\x43\x8e\xff\x29\x79\x90\xfc\x35\xf8\x16\x43\xa6\xca\x24\x12\xcf\xa1\x53\xdd\x2d\x77\x6f\x17\x3e\x0d\x7f\x1b\xcf\x32\xad\x8d\x87\x3e\x4b\x46\x43\xe7\xdc\x0a\x11\xad\x40\x6c\xd6\x5d\x9d\x67\xf7\x3c\x71\x63\xf2\xe1\x8f\x5c\x5d\xfb\xe4\xf6\x71\xfe\x70\xf8\x24\x80\x5c\xda\x09\x2d\xc6\x23\xf8\x3e\x13\x6d\x03\x6d\xcc\xc3\x32\x37\xf1\x2c\x61\xf5\xde\x11\x6f\x24\xb1\x65\x26\x30\x23\x07\x9e\x5e\xb4\x6f\xd0\x94\x90\xc6\x97\xa5\x03\x30\x31\x03\xc6\x79\x38\x4d\x82\x7c\x28\xc9\x1d\x4e\x73\xfb\xda\xf5\xb5\xf9\x0f\xde\xdc\x9e\x7e\xff\xad\x33\xd3\x9f\xef\x4d\x8a\x3d\x67\xe2\xd5\xd6\x05\xfb\xb3\xec\x0f\xe1\xf7\x03\x6e\xda\xfd\x65\x04\x29\xa7\xa7\xcd\x7b\x37\xcb\x73\xb7\xf1\xfd\x32\x42\x1f\x1e\xfb\xea\x9c\xb6\x67\x89\x0f\x22\xad\xaf\x5e\xea\x82\xef\xd2\x31\x77\x93\x4e\x08\xa7\xc2\xcd\x74\x19\xc7\x13\x7f\xbd\x87\x25\xea\x39\x63\x61\xd6\x67\xd9\xf0\xf1\x1b\x93\x7b\xce\x1e\x0d\xee\xb9\xb9\xb6\x78\xf7\x95\x7b\x8f\x6f\x4c\x07\x76\xee\x9a\xd7\xde\x37\x4e\x61\x02\x6a\xff\xec\xd2\xd7\x7d\xdb\x35\x94\xbb\xab\x0e\xfb\xf4\xc7\xbe\x32\x93\x6c\xd7\x95\x95\x15\x73\x7c\x7c\x6c\x01\xe0\xd3\x9f\xfe\xb4\xf9\xc1\x0f\x7e\x10\x61\x43\x7d\xf7\x5c\x2a\x8a\xfa\x38\x2c\x03\x49\x7c\x1d\x3c\xb5\x85\xd3\xc8\x5e\x9f\x7a\xb8\x1b\x72\x7f\x9a\xba\xef\x5d\x5e\xed\x23\x8b\xd2\xe2\x97\x56\x18\xb7\xf4\x5c\x4b\x3e\x6d\x06\x07\x96\x46\x02\x86\xd3\xe1\x05\x90\x78\xb5\x19\x94\x36\x1b\x92\x7c\x71\x78\x59\x16\x3c\xf6\xd8\x63\x34\x99\x4c\x1a\x71\x61\x37\xa9\xff\x0d\x02\x47\xac\xd3\x57\x9b\x75\x8d\xb3\xd3\xa1\x5d\x0c\x4a\xca\x37\xa7\xf9\xf6\xb0\x34\x2b\x15\xf6\x70\xb3\x6e\xd8\x40\x2b\xbe\xe0\x1c\x3d\x1c\xf5\x4d\xb5\x8d\xcd\xb6\xcc\x90\xe1\xd6\x45\xd3\x56\xe0\x26\x4c\x5d\x15\xd1\x60\x8a\x9b\x6b\x9b\xf4\x63\x6e\x39\x87\x08\x27\x87\xa2\xd1\x52\x59\x30\xe4\xcf\x77\x73\x7e\x96\x8c\x16\x61\x43\x19\x47\xc3\xdc\xd2\xf6\xca\x22\xbb\x67\x6d\x96\xad\x0d\x4b\x33\x9b\xe5\xf6\x68\x9a\xdb\x85\x23\x58\x57\x7f\xe6\x31\x7a\x5e\xfc\xac\xd0\xfa\x28\xda\xd9\xd9\x69\x6c\x0e\x7c\xf4\xd1\x47\xcd\x6c\x36\xa3\xa2\x28\x52\x5e\x8b\x48\x9e\xbd\x73\x38\x6d\x46\x97\x9a\x31\xc8\x19\x81\xb4\xef\x52\xf9\x53\xb8\xad\x92\xa6\xc1\xa5\xd2\x78\x08\x0a\x3b\x55\x0f\x9c\x6f\x0d\x5f\x17\x5d\xad\xec\xb2\x1e\xdb\x70\xf0\x32\xb7\xb5\x8f\x9c\xb8\xf4\x9d\xf9\xc9\x99\x22\xe7\x51\x9b\x09\xa6\x66\x70\x5a\x5d\x69\x33\x3e\x39\xc3\x95\xfa\x51\xea\xca\x54\xfb\xa4\x66\xfa\xda\xcc\xb7\x2d\x3d\xf2\xb4\xbd\xbd\x6d\x2e\x5c\xb8\x40\x7b\x7b\x7b\x4e\x4c\xc0\xf8\xdd\x54\x06\x40\xe6\x9c\xcb\x88\x68\x00\x20\x87\x43\x3e\xb0\x34\xdc\x3e\x19\xac\x3f\x7e\x73\xf2\xf8\x87\xdf\x5b\xfb\x2f\xf7\x1c\x0d\xff\x60\x63\x9a\xd3\xcd\x95\xc5\xf5\xa3\xa1\x9d\x39\x03\x7e\xdf\x55\x38\xc0\x10\x74\xa1\xdb\xd9\xd9\xa1\x67\x9e\x79\x86\x66\xb3\x19\x1d\x1c\x1c\x50\x51\x14\x5c\x6f\x4b\x99\xe7\xba\x5a\x9b\x8d\xf3\xb6\xd2\xca\x2c\xeb\x8e\x04\x6c\xea\xaf\xab\x4d\x24\x2f\x4b\xed\xba\x58\x2c\x22\x8e\xcb\x97\x2f\xe3\x33\x9f\xf9\x0c\x3d\xf9\xe4\x93\xf4\xd8\x63\x8f\xd1\xdf\xfe\xed\xdf\xda\x33\x67\xce\xd0\xb7\xbe\xf5\x2d\x7b\xe6\xcc\x19\x9a\x4e\xa7\x58\x5b\x5b\x43\x08\x6f\xbc\xf1\x06\x76\x77\x77\xb1\xbb\xbb\x8b\xbd\xbd\x3d\xec\xee\xee\xe2\x5b\xdf\xfa\x56\x03\x1f\x74\x39\x4c\x79\xa4\x52\xfd\x4e\xf3\x58\x68\x75\x26\x61\xdb\xda\xa4\x4f\xfd\xc8\x76\x45\x0b\x3e\x1e\x64\x1f\x90\x34\x34\xde\x1d\xd0\xf4\xb8\x68\x56\x4f\xca\x0a\x6e\xcb\x23\x19\x3b\x95\x25\xa5\xd0\xfd\x65\xe6\x69\x04\xde\xe9\x59\x87\xcf\xa1\x6f\xd6\xad\xbd\x2e\xc0\x9a\xb1\xd8\x3a\x7b\x3c\x78\xe0\x63\xef\xac\x7d\xf2\xb1\x1b\x93\x8b\xd5\xcd\xba\x40\xc3\x43\x11\x8c\x01\x61\x80\x70\xcb\x6d\xc9\xd3\xc2\x82\x9a\x16\x8f\x25\xc5\xff\xa2\xc7\x84\x23\x68\x8e\xb8\xe1\x8b\xd1\xcb\x86\x0c\xdf\xcb\x12\x3c\x2d\x7c\x53\x31\xb8\x31\xc5\x18\x4f\x79\x8b\xbc\xa7\xc6\x96\xc6\xdd\x3a\x1c\x96\x2f\xbe\xb3\x39\xfb\xee\x2b\x17\x8e\xff\xe5\xe6\xea\xe2\xda\x2c\xb7\xc7\x0e\xd5\xe7\xdd\xc9\x7f\x8b\x03\x4d\xef\x0b\xe4\xef\xaf\xd8\x03\x73\x9a\xd9\x59\x0a\xe6\x4e\x67\x1f\x7d\x78\x3a\x2d\x8e\x5f\x55\x3f\xd5\x78\xe4\xfa\x43\xea\x12\x0d\x4f\x97\xee\xe9\xcb\x57\x0a\x37\xe7\xe5\xb4\xb3\x46\x2d\xaf\x46\xbf\x6f\x7d\xb6\xc9\x4a\x2f\x1c\x61\x23\x29\xdf\x2c\xea\xf3\x1a\xa0\xe1\x65\xa9\xf4\x99\x43\x3e\x2a\x68\x78\xfe\x68\xb8\xf5\xc4\xf5\x95\x27\x3f\x74\x6b\xfc\xdb\xeb\xb3\xec\xf7\x8d\xa3\x87\xe7\x99\xfd\xe7\x37\xce\x9e\xfc\xef\x2f\x3e\x78\xfb\xc5\x1b\xab\x8b\x03\x6b\x6a\xef\x68\xb8\x67\x84\x9a\x5f\x26\x96\x7d\x53\xf2\x7c\xb7\xe5\xb4\xef\xbb\x8c\x3b\xad\x1c\x9d\x86\xa7\x5f\x59\x5b\xf7\x80\x3f\xad\x8e\xe8\xea\xaf\xa7\xc9\x77\x5a\x3a\x29\xd8\x56\x5e\x32\x25\x03\xb7\xe4\xa4\x15\x2c\xad\x3d\xcd\x0b\xc2\x03\x87\x0b\x78\xb4\x67\xfe\xae\x59\xc5\x1a\x8c\x8c\xd7\x3c\x31\x5a\xd0\xd2\x0c\x50\xdd\xe4\x1a\x3e\xc4\x48\xc1\x45\xd1\xb4\x2b\x08\x4d\xeb\x2f\xe6\x77\x00\x4d\x07\xb6\x3c\x19\xda\xe3\xad\x93\xc1\xd6\x64\x91\x6d\xe6\x8e\xf2\x68\x20\x10\xd5\xcb\x2f\xd4\xcc\xdc\x44\xe6\xf7\xa4\x84\x37\x66\x10\x34\xa6\x59\x0d\x6f\x0c\xc1\xf9\xaa\xae\x6f\xe8\xe5\x00\x4d\xdc\x15\x8e\x1a\x1b\x37\x86\xf8\xb1\xe7\xea\xbd\x4e\x0d\xdf\x31\xd2\x18\xd7\x8e\x5b\x87\xfc\x04\x22\x72\xb4\x32\x2c\xcd\x03\xeb\xb3\xfc\xbe\xed\xe3\x41\x5e\x64\xee\x60\x96\xd9\xf9\x22\xf3\x5f\x9e\x6c\xb2\x4a\x40\xfd\xa9\x79\xa0\x76\x7e\x25\x3e\x17\x00\xb4\xb7\xf9\x9d\x86\x14\xbe\x3e\x74\xb4\xbe\xe1\x12\xcf\xa7\xc1\xcd\xe5\x3f\xd5\x97\x4e\x1b\x2f\x67\xa6\x7d\x43\xaa\x0d\x24\xcd\x50\x0f\xbc\x4f\x71\x3d\x23\x67\x94\x12\xb7\x9c\x35\x6b\xf0\x32\xaf\x41\xba\x4c\x0e\x3a\x1d\xad\x6e\x25\x7f\xc0\xb2\xae\x4c\xd5\xb3\x9c\x15\xa7\x9e\xad\xc8\x17\xf2\xca\x29\x42\xcc\xb7\xb6\xb6\x66\xe6\xf3\xb9\x03\x2a\xa3\x05\x40\x30\x58\xc2\x5e\x5a\xc3\xfe\x72\xbf\xf9\x76\x00\x60\x40\x0e\xa3\xf1\xc2\xac\x3c\x70\x30\xbe\xef\xc3\xef\xad\x7e\xe2\x91\xdd\xf1\x9f\xae\xce\xb3\x3f\xcc\x2c\x1e\x22\xa2\xdc\x38\x9c\x1b\x15\xc6\xce\x72\xfb\xfe\xed\x71\x79\x38\xab\x6f\xc4\x26\xaa\xbe\x97\xc3\x97\x3f\x62\xdf\xbc\x74\xe9\x92\x7b\xf4\xd1\x47\x8d\xbf\xbc\x2e\xd5\x96\x9a\x9e\x97\x75\x92\xaa\xb7\x94\x87\xa1\x2d\x9f\x6c\x53\x0e\xd3\x37\xb4\x8d\x71\x5a\x19\x25\xdf\x1a\x8f\xda\x38\xdb\x26\xd3\x1a\x8e\x14\x4d\xd9\xb7\xb8\x9c\x4a\xfa\xb2\x1d\xb8\x2e\x68\x93\x6d\x59\x27\x5a\xdd\xa7\x70\x4b\xde\x35\xbe\xa5\x4d\xd2\x68\x6b\xed\x1e\x97\x54\xe3\x73\xc6\xdb\x14\x03\x1f\xd8\xa5\xeb\x47\x53\xe2\x52\xc0\x2c\x4b\x93\x0d\xa3\x19\x42\x1a\x0f\xb2\x52\x34\x21\x91\xf0\x4b\xc6\x0b\x9a\x8d\x1c\x3b\x6e\xe0\x85\x2d\x1b\x05\x7b\x01\x87\xa3\x72\x66\x0d\xe6\x9b\xd3\x7c\x6b\xb2\x30\xeb\xc6\x21\x23\x47\xf5\xf1\x68\xcd\x0b\xe2\x0d\x1a\xee\x3d\x89\xdf\x3f\xaa\x14\x46\x63\x9f\x8a\xb6\x09\xb7\x3e\x0f\xe5\x0d\x18\x0e\x0f\xf8\x65\x27\x9f\x23\xdc\xed\xc2\x36\xb1\x04\xfb\xc4\x71\x03\xcb\xd3\x71\x8e\x19\x37\xe1\xc4\x93\xcf\xb4\x54\x49\xac\x82\xa5\xd9\x64\x40\x79\x6e\xe9\xc2\xea\x3c\xff\xd0\xf6\xf1\x60\x75\x5c\x9a\xa3\xc3\x51\x79\x32\xcf\x6c\xe1\x6a\x35\x1d\xd1\xb0\x93\x0d\x55\xc9\xea\xa5\x3a\x17\x36\x1e\xb2\xd3\x47\x6d\x9d\x1e\x4a\x5c\xca\x08\xd6\xf2\x9e\x06\x96\xc7\xb5\xe1\x68\x33\xc2\xbb\x68\x4b\x7a\x29\x45\x2c\x95\x34\x57\x10\x5c\x71\xf1\x3e\xd7\x55\x87\x29\x3e\x39\x3d\xc9\xb3\xc6\x77\x2a\x5d\xd2\x97\x46\x8b\x34\x80\x02\x8c\xcc\x2f\xf5\x82\xd4\x03\xbc\x0c\x9a\xd1\x23\xf9\x93\x93\x37\xce\x77\xca\x90\x92\xfa\x2e\x55\x1e\x8d\x17\xfe\x17\x71\x0c\x87\x43\x93\x65\x19\x9d\x9c\x9c\xd8\xe7\x9e\x7b\xce\x84\xfb\x58\x82\x97\x85\x9d\x16\x32\xa8\x6e\xac\xce\x50\x19\x2e\xd1\x68\x59\x99\x67\xeb\x4f\xdc\x9c\x3c\xfe\xbf\x5c\x5d\xfb\xbd\xfb\x0e\x86\xff\x7d\xbc\x30\x9f\x32\x8e\x36\xd8\x21\x80\x51\xe6\x68\x7b\x5c\x64\xb3\x83\x49\xf1\xde\xe1\xa8\x3c\x2c\x0d\xc2\xb2\x39\xb8\xf1\xe2\x69\x3a\xe7\x9c\x7b\xe6\x99\x67\xe8\xbb\xdf\xfd\x2e\x37\xc2\x64\x9d\xf3\x19\xb4\x94\x39\x6d\x49\x41\xc6\x87\x38\xa0\x69\xec\x49\x43\x26\xf5\x2c\x71\xf3\xbc\xbc\x4f\xf0\x20\xdb\x28\x05\x07\x01\x23\xe9\x87\x20\xfb\x42\x4a\xd6\xda\xc6\xd9\x94\xae\xd3\xc6\xc7\xd0\x5f\xa4\x31\xd2\xd6\x0e\x72\xbc\xd4\xfa\x8e\x94\x79\x5e\x87\x29\x83\x43\xea\x1e\x4e\x53\xd6\x49\x6b\x9d\xb5\xed\x71\x09\x84\x53\xd6\x2f\x9f\x58\xb7\x75\xb8\x94\x52\x82\xc8\x2f\x19\x97\xca\x2b\x65\xa0\xb4\x29\x7f\x29\xe4\xa9\x41\xa6\x81\x9b\x19\x2f\x7c\xec\x0d\xbb\xc0\x63\x1c\x3b\x26\x58\xd1\x22\x18\x10\xb0\x3f\x5e\x1c\x93\x43\xb1\x3e\xcb\xcf\x8c\x17\xd9\x1a\x81\xaa\x35\x39\xe6\x58\xa8\xa5\x8c\x1d\x91\x26\xfe\xd9\x46\x56\x31\x6c\x9f\x4a\xc0\x13\x7f\x78\x2b\xb0\xf4\x1a\xbe\xa2\xe4\xd8\x49\xef\xb8\xa4\x43\x58\xda\x47\x43\xe2\xd7\x85\x77\x86\x9f\xe2\x7f\x4d\xf2\xac\xaa\x50\xef\xe5\x11\x2c\x82\x90\x39\x5a\x1f\x2f\xcc\x13\x5b\xd3\xc1\xc3\x67\x8f\x06\x6e\x91\xb9\x83\xa3\x61\x39\x2b\xb3\x86\x6c\x71\x03\x26\xd6\x35\x3f\x36\x48\x44\x10\x9e\x97\xd4\x73\x5b\x7a\x17\xdc\x69\x61\xbb\xe2\x52\xbf\x77\x42\xbb\x2b\xb4\xe1\xea\x43\xbf\x8d\xe6\x69\xca\x18\x42\x6a\xf6\xd6\x46\x5f\x33\x14\x34\x18\x69\xcc\xa4\x74\x05\xe7\xa3\x0d\x16\x2c\xbd\xcb\xd8\xd0\x74\x5c\x4a\x41\x6b\xe5\x91\x34\x39\xee\x46\x9d\x95\x65\xe9\xca\xb2\x74\x40\xf5\xcd\x35\x66\xa8\x84\x3c\xe1\x68\x73\x30\x58\x32\x22\x1a\x3a\xe7\x46\x44\x34\xbe\xef\x60\x78\xee\xa3\xef\xae\xed\xfc\xfa\xb5\xd5\xff\xb6\x7d\x9c\xff\xf1\xb0\xcc\x9e\x24\xd0\xa0\xa1\x4b\x00\x18\x47\x1b\x83\x92\x36\x07\x96\xf6\x0f\xc6\xc5\xcd\xdb\xe3\x72\x06\xd4\x27\x60\x5c\xfd\xb5\x62\x7e\xb1\x24\xbf\x48\xb2\xad\xbc\x5a\x3b\xf4\x8d\x97\x38\x65\x5c\xdb\x73\x0a\x77\x68\x2f\xcd\x88\x94\xed\xce\x65\x8d\xc3\x4a\x18\x8e\x9b\x87\xbe\x46\x7d\xaa\xbc\x21\x1e\x58\xe6\xb1\x4d\xbe\x35\x59\xd6\xfa\x7e\xaa\xae\xba\x60\xb9\x61\x24\xcb\x91\xaa\x1f\x8d\x07\x2d\x6e\x49\x6f\x68\xc7\xa1\x65\xe5\x04\xa6\x64\xc7\xb7\x22\x2e\xd5\x98\xfc\x5d\x9b\xf1\x68\x46\x05\x89\x67\x60\xd9\xf2\xe6\x41\x36\x2c\xff\xd5\x0c\x23\x4e\x3f\xe0\x8e\xe1\x81\x07\x1e\x30\x4f\x3e\xf9\x24\xa7\xad\x39\x15\xa4\x83\x21\xee\x8b\xb1\x04\x3a\x18\x97\xc7\xc6\x91\x5d\x9b\xe7\x1b\xa3\xc2\xac\x56\x37\xeb\xf2\x3d\x25\x1e\x85\xb7\x1e\xa2\xcb\x86\x9a\x46\x80\xd4\x7e\xd1\xd8\x09\x50\x0e\x8d\xdb\x74\xeb\x02\xf3\x05\x9f\xda\x14\x6a\x98\x13\x8c\x9e\x63\xb8\xc1\x20\x09\x35\x6e\x00\x60\x87\x99\x99\xc5\x53\x07\xc7\xf2\xca\x18\xb1\xb7\x67\x90\x97\x74\x61\x75\x9e\x3d\x7e\xfe\x68\x70\x6e\x65\x91\xcd\x4e\x06\xf6\xf0\x78\x68\x4b\xd4\xec\x48\xe3\x91\x07\x02\xaa\x3b\x25\x94\x65\xa3\xff\xd9\x43\x9b\xa7\xe3\x7f\xd6\xc0\x95\x6d\x2a\xbd\x6d\x92\xa4\xe5\xd3\xfa\xbc\x84\x6f\x9b\x2d\xb6\xe1\x0e\x41\xea\x90\xae\xbc\xa9\x41\x4b\xe6\x93\x13\x3e\x59\x1e\xa9\x73\xf1\xb5\xaf\x7d\xcd\xfc\xf0\x87\x3f\x74\x40\x63\x3f\x1e\x01\xf5\x11\x67\x78\x2f\x4b\xf0\xb0\xa0\xda\x97\x37\x1a\x95\x66\xf2\x91\xab\xab\x4f\x7e\xf4\xdd\xf5\xff\xfa\xe0\xde\xf8\x7f\xac\xcd\xb3\x4f\x65\x8e\xce\x81\x5f\x42\x20\x0a\x9c\x39\x6c\x0d\x8b\x6c\x15\xc0\xde\xf1\xb0\xbc\x75\x34\x2c\xa7\xde\xe3\xec\x50\x1b\x31\x8d\xa3\xbf\x61\x32\x71\xf1\xe2\x45\xba\x7a\xf5\xaa\x2c\xaf\xae\xce\xd2\x65\xe1\x70\xb4\xe2\x00\x00\x20\x00\x49\x44\x41\x54\x97\xf1\x5a\x7d\x4a\x3d\xd1\xd5\x4e\xa9\xb6\xd6\xe0\xfb\xe0\x48\xb5\x71\x08\x52\xfe\x34\xdc\x29\x19\x48\xe1\x4e\x19\x3c\xda\x38\xab\x8d\xa5\x6d\x86\x41\x97\x51\xc1\x03\x97\x61\xb9\xba\x72\x27\xfd\xb8\xef\xf8\xbe\x74\xaa\x48\x32\xdd\x66\x6d\xa5\x0a\x21\xd3\x35\x8b\x50\xc3\xd3\x26\x24\x5a\x63\xcb\x90\xaa\x90\x2e\x83\x67\xa9\x82\xd7\xd6\xd6\xe8\xa9\xa7\x9e\x8a\xe9\xec\xbe\x91\xb0\xa0\x1b\x05\x84\x5d\xe6\x14\xef\x39\x20\x22\x2a\x8c\xa3\x93\xa1\x9d\x0d\x2c\x99\xf0\x25\x69\x83\xfa\xd6\xa2\x6a\x30\x0f\x77\xac\x78\x43\x83\x1b\x2d\xd1\xb6\x60\x55\xe2\x6a\xf8\x08\xe9\xf3\xf0\xbb\x57\x2a\x9b\x22\xce\x8c\xd8\x12\x51\xc8\x56\x5b\x21\xf1\x5e\x00\x22\x40\xdd\xbf\x99\x60\xea\xb8\x1a\xbf\xe3\xfc\x39\x8f\x80\x79\x87\x34\x4b\x4e\x5a\x19\x7c\xbf\x0e\x63\xd9\xd3\x21\x93\x39\x6c\x0c\x4b\x73\xff\xc6\x2c\xbb\x7f\x6b\x9a\x0f\x1c\x70\xfb\xf6\xa8\x9c\x96\x95\x87\x28\x6c\x38\xe4\xd5\x1f\xdd\xe2\xfe\x39\xee\x7b\xf9\xd8\xc7\x3e\x46\x41\xb1\x8b\xa0\x75\xa4\x94\xf7\x4d\x83\x6b\x1b\x08\xf9\xbb\xe6\x7e\x4e\xe1\x68\xa3\xa3\x0d\x6a\x29\x58\x6d\x60\xd6\xf8\x4c\xd1\xd5\x70\x9f\xa6\x7e\x38\x2d\x39\x38\xc9\x32\xa1\x23\x5d\xba\x95\x8d\x88\x97\x75\x28\xe3\x8d\x42\x27\x04\x5e\x26\x4d\xe1\xa6\xf8\x97\x83\x23\x87\x07\x96\x69\xa7\x64\x41\x2e\x1d\x70\x7c\xbc\x3c\xf2\x19\x5f\xfe\xf2\x97\xcd\x47\x3f\xfa\x51\xfa\xc6\x37\xbe\x61\x9f\x7d\xf6\x59\xc3\x3d\x2d\x1e\xd6\x00\xc8\xa8\xba\x97\x25\x47\xd8\xcb\x42\x34\x72\xce\x8d\xef\xbf\x3d\x3a\xf7\xf1\x2b\xeb\x9f\x7a\xe2\xc6\xca\xff\xd8\x3e\x1e\xfc\xee\xb8\x30\x8f\x19\x60\x05\x5e\x4f\xd4\x8d\x53\x3d\x51\xe8\xeb\x20\x93\x59\xda\x18\x5a\x32\x8b\xcc\xdd\xba\x3d\x2e\x6f\xcd\x73\x17\xae\xa7\x0f\xa7\x8d\x1a\x37\xc1\x12\x91\xbb\x78\xf1\x22\x9d\x3f\x7f\x1e\xc3\xe1\x90\xde\x79\xe7\x1d\x5e\x5e\x28\xf5\x20\xbd\x00\xb2\x4d\xda\xda\x98\xcb\x55\x0a\x37\x6f\xbf\x36\xd9\xd5\x64\x0f\xd0\xdb\x3d\xd5\x07\xb5\x49\x78\x4a\x96\xdb\x96\xb2\xba\x64\xba\x0b\x26\xc5\xb7\xe6\xad\x6a\xab\x1f\x29\xd3\x10\x71\x9c\x1e\xe7\x5d\xd6\x3d\x8f\x97\xf5\xc3\xe1\xb5\x25\x39\xd5\xd0\xcb\x12\x88\xba\x9e\x65\x68\x74\x34\x41\x5c\xdb\x34\xab\xe1\x6a\x2b\x60\x48\xd3\x14\x42\x5b\x05\x4b\x21\x91\xb4\x35\x4b\xd3\x1c\x1e\x1e\xda\xdd\xdd\x5d\x7a\xec\xb1\xc7\x2a\xc6\xea\x1b\x75\x9b\x9b\x53\x63\x54\x63\x29\xa3\x52\x26\x04\x37\xcf\xac\x9d\xe5\x6e\x31\x2c\x69\xb0\xba\xc8\xd6\x87\x05\xad\x84\x81\x3c\x98\x05\xd1\xf0\x08\xfb\x4d\x78\x6d\x20\x0c\xfc\xd4\xd8\xa3\x02\x8a\x66\x06\xdb\xff\x82\xc6\x66\xdd\x00\xd1\x38\x11\x84\x1a\xa6\x36\x9e\x02\xa9\xb0\x0c\x54\x1b\x4a\xf5\x07\x1b\xc3\x72\x56\x80\x6c\x5a\x98\xfc\x37\xe0\x5e\xaa\x25\x01\x5b\x1b\x69\x44\xc6\x61\x3c\x28\xcd\xd9\x95\x45\xf6\xe0\xd6\x49\xbe\xbd\x3a\xcf\x6c\x91\xb9\xe3\xa3\xb1\x5d\x00\x71\xaf\x0b\xd5\xd5\x1b\x2b\x9e\xa3\x76\xc6\x18\x24\x3c\x30\x4e\x79\x4e\x19\xb2\x1a\x9c\x8c\x4f\xbd\xf3\x5f\x2e\xfb\x5a\x9e\x36\x3a\x29\x1e\x53\xb0\xa9\xb2\x68\xf9\x4d\x4b\x5a\x1b\xed\x14\xdf\x9c\x16\xff\xd3\xf8\x94\xca\x53\x73\xe5\xcb\xfe\x2b\xf3\x73\x5d\xa0\xd1\x90\x7f\xb2\x1d\xd0\x82\x83\xf3\x27\xeb\xa2\x8d\x0e\xe7\x95\xc3\x68\x65\xd4\x06\xb4\xa5\xe7\xc7\x1f\x7f\xdc\xec\xee\xee\xba\x3f\xfb\xb3\x3f\x33\x1b\x1b\x1b\x18\x0e\x87\xe0\xfb\x59\xc2\x6d\xb7\xfc\x0f\x95\xb1\x52\xfd\x81\x46\xb9\xc5\xe4\x23\xef\xad\x3d\xf1\xf4\x7b\xab\x7f\xfc\xe0\xfe\xf8\xf3\x1b\xb3\xfc\xe3\x03\x4b\xf7\x10\x68\x18\x74\x43\xd4\x1b\x0e\x60\xb3\x9e\xa8\x5f\x08\x18\xe4\xd6\xac\xe7\x96\xca\x79\x6e\xaf\x1f\x8c\x8b\x03\x5b\x2d\xe9\x96\xde\xc3\xe2\x00\xf0\xeb\x22\x40\x44\xce\x18\x83\x7f\xf8\x87\x7f\x68\x2b\x3b\x6f\x03\xae\xc3\xb5\xbd\x17\x5a\x3d\xcb\xfc\x6d\x32\x25\xc7\xa1\xae\xfe\x1b\xf2\x6a\x46\xa6\x13\xe9\x92\xbe\x7c\x96\x74\xe4\xb8\x24\x79\x4d\xc9\x4c\xaa\xef\x70\xdc\x9c\xdf\x3e\xb2\x96\xaa\x9f\x54\xdd\xa6\xfa\x16\x4f\xd7\xfa\x16\xff\x4d\x3d\x4b\x1a\xa9\xbe\x68\x80\xfa\xca\x7f\x6e\xdd\xf4\x21\x16\x42\x5b\x43\x49\x5c\x21\x4e\x2a\x4d\xa9\x48\x35\x78\xcd\xa8\xe1\x79\xe4\xb8\xa9\x29\xc2\xb6\x32\x2d\x19\x30\xbb\xbb\xbb\xee\xd2\xa5\x4b\x72\xb3\x6e\xe4\x8b\x2f\xec\xb2\xbd\x2f\xe1\x17\x00\x8c\x23\xd0\x2c\xb7\x45\x61\x5c\x31\x2a\xcd\x60\x65\x91\xad\x0f\x4a\x1a\xd7\xbe\x96\x90\xa9\x36\x5a\x62\xa5\x79\x85\x52\xdd\xa3\x52\x99\x11\x71\x2f\xad\x5f\x13\xaa\xaf\x6a\xa1\x9a\xba\x2f\x02\x85\x75\x23\x8e\x94\xc4\x02\x12\xc3\x11\xe2\xfc\x8d\x0d\x8d\xc2\x04\x05\xc7\xd8\x54\x0d\x16\x28\x71\xa9\x4b\xee\x38\x6c\xa5\xf2\x68\x94\x97\xb4\x35\x29\xb2\x0b\x1b\xb3\xfc\xc2\xc6\x2c\x5f\x1b\x96\x66\x76\x3c\xb0\xc7\x8b\xdc\xb9\x06\x38\x67\xd7\x7f\x43\x84\x79\xc5\xda\x4e\x1e\xf1\xd0\x66\x88\xdf\x09\x9c\x0c\x77\x92\xe7\x57\x11\xee\x84\xaf\xae\x49\x8b\xec\xff\x29\x78\x2e\xa5\x72\x90\x68\x83\x95\x4a\x53\xa3\x91\xa2\x2f\xfb\x6e\x0a\x37\xd0\x0f\x9f\x46\x57\x9b\x9c\x49\x3a\x1a\x1f\x49\x98\xdd\xdd\x5d\xf7\xdc\x73\xcf\x99\xf1\x78\x1c\x8f\x38\x33\x03\xde\x00\x88\xc7\x9b\xc5\xd2\xd0\x28\x2f\x69\xe5\xde\xc3\xe1\xf9\x0f\xbf\xbf\xfa\xb1\x5f\xbb\xb6\xf2\xdf\xcf\x1f\x8d\x7e\x67\x52\x98\x5f\xcb\x1c\xd6\xe1\x28\x5b\x3a\x01\xc8\x7a\x95\x0b\x1e\x55\xd4\x7d\xd3\x38\x4c\x06\xa5\x99\x18\x60\x3e\x1d\xd8\x6b\xb7\x47\xe5\xb1\x23\x94\x1e\xcc\xb2\xef\xeb\x58\xd4\x13\x39\xc7\xfa\x9f\x56\x6e\x29\x33\x7c\xf0\x3c\x4d\x5d\xa5\xea\x5b\x1b\x47\xda\x82\x26\x07\x5c\x6d\x69\x5e\x04\x8d\xbe\x36\xc6\x69\x65\x48\xf1\xd7\xe7\x39\xd0\x5d\x1a\x97\x14\xdc\x29\xf9\x6e\x93\xcd\xb6\xba\xef\x2a\x6f\x5b\x5d\x77\xe9\xd2\x14\x4f\x4b\x6d\x4c\x2c\x41\x53\x1e\xa9\x78\x0d\xa6\x0f\xec\x07\x0d\x6d\x34\x4e\x93\x76\x6a\x5e\xfd\x9a\xb2\xfc\xe3\x77\xbc\x8c\x01\x8c\xfd\xed\xba\xf1\x7e\x17\xe7\xdc\xc6\xb8\x30\xdb\x0f\xed\x8d\x1f\x7f\xea\xda\xca\xc7\x1e\xdc\x1f\x3f\x39\x5e\x98\x0d\x79\x33\x6d\x6d\xe5\x2d\xdf\xb1\x22\xb7\x93\x34\x0c\x00\xf6\x12\x97\x85\x18\x6e\x2d\x68\xf4\xa0\xf1\xa3\x58\x1a\xd2\x16\xd2\x2c\xb6\x54\x48\xe5\x6d\xe2\x71\xd6\x12\x0e\x66\xb9\xbd\xb2\x37\x29\x7e\x74\x65\x73\xf6\xff\xbc\x7d\x66\xfa\xf2\xfb\xeb\xf3\x6b\x8b\xcc\xf1\x3b\x5f\x0a\xe7\x5c\x41\xd5\x17\x54\xc3\x29\x87\x70\xbf\x04\xc0\xda\xf7\xf2\xe5\xcb\x38\x3a\x3a\xc2\xf7\xbe\xf7\x3d\xe9\x81\xd3\x5c\x94\xfc\x19\x0c\xa6\x81\x93\x85\x36\xf9\xd7\x70\xb7\xe1\xd5\xde\xbb\xf2\xf7\x29\x83\xe4\xbd\x8d\xae\x56\xd6\xbe\xbc\xa7\xca\xdf\xc6\x1f\xc7\x25\x79\x95\xfc\xb7\xbd\xcb\xfc\xa9\x7a\xea\x82\xe5\xbc\x77\xd1\x4a\x95\x4d\xcb\x9b\xc2\x0d\x00\xb8\x78\xf1\x22\xd6\xd6\xd6\x70\xdf\x7d\xf7\x61\x63\x63\x83\x7b\x2f\x0c\x3b\xbd\x63\x5c\xf5\x15\x67\xe3\x9f\x73\x8f\x6b\x08\x20\xcf\x2d\x0d\x37\x66\xf9\xc6\xfd\xfb\xa3\x87\x1f\xda\x1b\xff\xe7\x0b\x07\x83\x4f\xae\xce\xb2\x8f\x64\x8e\xb6\x09\x94\x7b\x6d\x12\x27\x27\xfc\x8e\xa6\xae\x50\x92\x3b\xbe\x3d\x2a\x7e\xf2\xc6\xd9\xe9\x3f\xbc\x7c\xe1\xe8\x7b\x37\xd7\x16\x37\x00\x1c\x03\x98\x3a\xe7\x96\x3e\x9e\xea\xfb\x25\x0e\x0f\x0f\xf1\x37\x7f\xf3\x37\x5a\x7b\x76\xd5\x4d\xdf\x3c\x7d\x65\x42\xcb\xdf\x05\x2b\xf9\xd0\xf2\xb6\xe9\x94\x36\x79\x68\xcb\xab\xf1\xab\xf1\x93\x2a\x5b\x5b\x39\x52\x79\x35\x98\xbe\xfc\xa4\xf4\xc2\x69\x79\x69\xcb\xdf\xc8\xa3\x1d\x87\xe6\x41\xc6\xf7\xb5\xf2\x64\x48\x59\x5a\x1a\x3e\x1e\xcf\xff\xda\x2c\xc9\x50\xc0\xbe\xe5\xe8\x33\x6b\x6b\x04\xef\x79\x69\x22\xf1\x6b\xbd\x3e\x0f\xb9\xe6\xee\x7e\xef\xac\x20\x94\x06\x6e\x96\xdb\x85\x25\xd8\x51\x61\xc6\x93\x45\xb6\x9e\x39\x1a\x54\x5f\x68\xae\xad\x92\xe6\xff\x41\xcd\x34\x8d\x16\x1e\xa8\x06\xf7\x4c\x57\x96\x07\x49\x03\x04\x60\x1e\x9c\x3a\x81\x53\x6a\x5c\xef\x0f\x34\xe3\x42\x5e\xe5\x23\x91\xcd\xa3\xd9\x22\x70\xa3\xca\xff\xb7\xe4\xe1\x09\x15\x15\x0d\x27\x22\x02\x8d\x73\x4b\x5b\x93\x85\xb9\x6f\x73\x9a\xdf\xb7\x36\xcf\x56\x73\x47\xb3\xd2\xb8\x79\x91\xc1\x5a\x02\x39\xc4\x0b\xb5\x28\xec\x39\x12\x4b\x47\xf0\x6d\xe2\x36\x37\x37\x71\xee\xdc\xb9\x70\x02\x49\xce\x3e\x52\x33\x0d\x3e\xa3\xb2\xe8\x96\xad\xbe\x1e\x06\x39\x63\x93\x34\x53\xb3\x46\x1e\x27\x67\x25\x5d\x65\xd0\xe4\x5f\x83\x0b\x38\xa5\x01\xa2\xd1\x4e\xd1\x95\x33\x3c\x39\x30\x69\x7d\x36\xfc\x49\xda\x92\x7f\x09\x13\x9e\x9d\x78\x36\xca\xb3\xe9\x09\x1b\x7e\x91\x80\xe1\x7f\x01\x4e\xce\xc0\x39\x1d\xad\xfe\x97\xf8\xbe\x7a\xf5\xaa\xfb\xdc\xe7\x3e\x47\xe3\xf1\xb8\xde\x93\x56\xef\x9d\x33\xa8\xf6\x23\x6a\xcb\x42\xc3\xcc\xd1\x68\x6d\x9e\xaf\xdd\x7f\x7b\xf4\xe0\xe3\x37\x27\x3b\x4f\xdc\x98\x7c\xee\xbe\xdb\xa3\xdf\x5b\x99\x67\x1f\xce\x1c\x6d\x11\x55\xa7\x1a\xfd\xe2\x74\xec\xc3\xfc\x8e\xa9\x58\xe1\xd1\x98\x71\x70\x6c\xf6\x43\xa0\x41\x6e\x69\x25\xb7\x26\x2f\x32\x77\x73\x6f\x52\xdc\x5c\x18\xbb\xf0\xde\x66\x1b\xbc\x2c\x40\xfc\xe8\x20\x11\x91\x1b\x0e\x87\x10\x57\x16\x68\x75\x0f\xd4\x3a\x53\xf6\x35\x59\x57\x51\x65\x24\xda\x43\x6b\x63\x0d\x06\x4a\x9a\xfc\xd3\x3c\x00\x29\xf9\x02\x83\x95\xbf\x29\x79\x43\x02\x87\xa4\x9f\xea\x1b\xb2\x8c\x72\xa0\x97\xfd\xc7\x20\x5d\xce\xae\x3e\xcf\xbd\x4e\x1c\x77\x28\x9f\x84\x95\xf9\x52\xba\x28\xe4\x95\xb8\x65\x1f\x6c\xf0\x16\xbe\x08\x9a\x52\xca\x3c\xa4\x14\xb8\xa6\xb0\x64\xe0\x30\x52\x31\xf3\x3c\x21\x3d\x30\xac\x09\x32\xaf\x7c\xd9\x10\x6d\x86\x88\x51\x60\xb4\x06\xe5\xc1\x00\x70\x9f\xfc\xe4\x27\xcd\x95\x2b\x57\x96\x96\x8c\x98\xd1\x12\xde\x65\x87\xf3\x63\xb2\xc3\x22\x83\x9d\x0d\xec\xcc\x1a\xd8\xc9\xc2\x8c\xab\x3b\x5e\x28\x0f\x1b\x61\x49\x64\xe2\x48\x62\x70\xae\x5a\x26\x0a\x54\x83\x5e\x71\xcc\x20\x88\x06\x88\x6b\xec\x9b\x61\xdb\x63\x1a\x9b\x80\x83\x61\xa2\x9e\x6c\x62\x78\xe3\x86\x60\x61\x78\x84\x07\xf5\x90\x51\x8d\x2e\xd2\x8d\x11\x32\x84\x8f\x36\xfa\x74\x03\xca\x8c\xc3\xda\xb0\x34\x17\xd6\x66\xf9\x83\x9b\xb3\x6c\x73\x58\x1a\x47\xc0\xa2\x34\xce\x96\x99\xb3\x8e\x59\x7a\xec\xae\x17\x8e\x9d\xef\x8f\x71\x17\x2f\x5e\x24\xfe\xf1\xc6\x9e\xe1\x34\xb0\x21\x70\x25\x7c\x5a\x9c\x9a\x1c\x23\x11\xd7\xb7\xdf\x72\x45\xdf\x15\x38\x9c\xd6\x67\xba\x82\xa6\x98\x34\x1d\x41\x0a\x7c\x8a\x47\x99\x4f\x7b\x4e\xe1\xe1\x52\xd7\x17\x87\xd4\x05\xa9\x3a\x91\x0a\x5c\xc3\x4d\x58\xae\xc3\x08\xff\x91\x8f\x7c\x84\xae\x5d\xbb\x16\xaf\xea\x0f\x13\x1f\x7e\x47\x14\x11\xe5\x5e\x8e\xe3\x45\x72\xce\xb9\x01\x81\x46\xa3\xc2\xac\x9c\x3b\x1e\x9c\x7d\x64\x77\xfc\xf4\x13\x37\x26\x9f\x79\x78\x77\xfc\xb9\xad\x93\xc1\xa7\x06\xd6\x3c\x48\xa0\x61\x30\x42\xc2\x5e\xb9\x50\xed\x0e\x5e\x0f\x2c\xed\x81\xe3\x8a\xa4\xa9\x13\x8c\xc3\x68\x50\x9a\xd5\x81\x25\x4c\x07\xf6\xdd\x83\x49\x79\xdb\x9a\x6a\xaf\x8b\x47\x61\x51\xf7\xb9\xa0\xbf\xdd\x8b\x2f\xbe\xe8\xbe\xf4\xa5\x2f\x99\x97\x5f\x7e\xb9\xad\x1d\xb4\x01\x56\x4e\x48\xdb\x60\x1b\xf5\x8a\x76\xb9\xd3\xfa\x83\x36\x56\x74\xc9\x94\x7c\x4e\x05\x0d\x5e\xe3\xa9\xad\xef\xf0\x7c\x9a\x4c\x07\x98\xd4\x78\x89\x3b\x88\xd7\xfa\x9d\x56\xaf\x52\xd7\xa5\xea\x27\x55\xc7\xa9\x3e\x6a\x53\xf9\xb2\x04\x52\x2d\x74\x35\x4e\x9f\xc2\xa7\x04\x4e\x56\x80\x56\xa1\x1a\x9d\x2e\x45\xae\xc1\x76\xe1\x5c\x8a\xbf\x72\xe5\x0a\xfd\xd6\x6f\xfd\x16\x7d\xfb\xdb\xdf\xb6\xc1\x78\x11\x1f\x50\x24\x00\xd6\xef\xb7\x08\x1d\x36\xc4\x13\x11\x55\xc6\x4b\xee\xec\x74\x60\x17\x8e\x50\xae\x2e\xb2\xd5\xf1\x22\x5b\x33\x8e\xb2\x60\xee\x34\x96\x77\x1c\x1a\x97\xc0\x05\x6c\xf5\x46\xdd\xa6\xe1\x50\x13\x43\xf8\x1e\x62\x5c\xaf\x8e\x28\x9c\x2e\x25\x95\x6e\xab\x4f\x35\x45\x1b\x45\x1a\x3d\x2c\x3d\xf2\xc5\x8c\x93\x50\x86\x10\x43\x3c\x3e\xe2\x6d\x7e\x68\xa0\xf6\xd8\xb0\x38\x6a\x60\xc8\x73\x47\xdb\x93\x6a\xe3\xee\xbd\x6b\xf3\x7c\x32\x28\x8d\x75\x04\x6b\x8d\xb3\x65\xf8\xba\x11\xa2\xe7\xa5\x42\x5b\x7b\xc3\xf8\x7e\x24\x02\xaa\x2f\xdb\x86\x3d\x30\x61\x13\xe4\x52\xcb\x37\x95\x67\x1f\x25\xc7\xd3\x34\xe5\xa1\x29\xac\xb6\xfc\x32\x2d\x95\x5f\xe3\x99\xd3\x04\x9a\xb3\x18\x6d\x70\xe0\xb8\xc1\x9e\xe5\x4c\x52\xa3\xa5\x19\x37\x72\xe0\xe1\x22\x27\xcd\x57\x9e\xc7\x26\xf0\x71\xfe\x38\x8c\xa4\xaf\xd1\xd1\x06\x07\x4d\x2f\xb4\xd5\x0d\x44\x5e\xe9\x45\x42\x0b\xac\xec\x06\x08\x32\xf7\xec\xb3\xcf\x9a\x87\x1f\x7e\x58\x6e\xba\x8d\x06\x0b\x10\xbf\xe0\x6c\xc2\xa6\x5b\xe7\x5c\x4e\x44\xa3\x61\x69\xc6\x9b\xd3\x7c\xeb\xfe\x83\xd1\x23\x8f\xdf\x98\x3c\xf3\xd8\xcd\xc9\xef\x9f\x3f\x1c\xfe\xce\x64\x61\x3e\x9c\x81\xd6\x01\xc4\xcb\xb3\x09\xe2\x83\xaf\x0e\x08\xdb\xf2\xe2\x1e\x3a\xe6\x49\xe5\x9b\xf1\xe3\x57\xe8\x01\x84\xfd\x2e\xc3\xd2\xac\x0e\x4a\x73\xb2\x3f\x2e\xae\x1e\x8e\xca\x13\x00\x16\xd4\xd4\xdb\xcc\x98\xa1\x67\x9e\x79\x06\xdf\xf8\xc6\x37\x34\x59\x4a\xc9\xb3\x36\x5e\xf0\x3a\xe6\xf9\xe4\x7b\x6a\x62\x2b\x3d\x3a\xd2\x80\x91\x30\x80\x2e\xc7\x29\x79\xd0\x0c\x0f\x0d\x5f\xc8\xcb\xcb\xaf\x79\xfc\xb4\x81\x5c\x8e\x8f\x24\xfe\x78\xdd\x05\x7a\xa9\xc1\x9f\x97\x41\xe3\x15\x22\x8d\xb7\x1f\x97\x75\xd9\xdf\x24\x4d\xde\x5f\x65\xff\x97\x63\xb2\x86\x5b\xad\x7b\x7e\x1c\xba\x8f\x92\xee\x13\x34\xc6\xb5\xa0\x09\xb0\x56\xc9\x12\xb7\xa6\xc0\x4f\xcb\xe3\x69\xf3\xb8\xcb\x97\x2f\x3b\xa0\xbe\x9c\x8e\xaa\xbb\x0b\xb8\xd7\x85\xd8\x26\x5d\x12\x69\x95\xbb\x97\x80\x79\xe6\xca\xe3\x41\x39\x25\x90\x5d\x9d\x65\x1b\xe3\xc2\xac\x12\xc8\x34\x0c\x11\xc0\x0f\xe6\x68\x18\x06\xf1\x24\x11\xb1\x46\x72\xe1\xa3\x88\x2e\xde\x7a\x4b\xde\x82\x59\x5a\xc6\xf1\xc6\x48\xbd\xc9\xb7\x49\x27\xe2\x8c\x79\x6a\xca\xce\xbf\x6a\x7b\x68\x22\x4f\xb5\x82\x6b\x1a\x5c\x81\x27\x6f\x25\x35\xca\x19\xc0\x48\x20\x65\x69\x04\xc0\x80\x26\xc3\xd2\x3c\xb0\x36\xcf\x1e\xda\x3a\xc9\xcf\xad\xcf\xf3\x61\xe6\xc8\x95\x06\x65\x49\xce\x5a\x83\x60\xe9\x84\xb6\xa8\x51\xd7\x07\xbe\x1a\x06\xcc\xce\xce\x0e\x3d\xfa\xe8\xa3\xdc\x95\xdd\x68\x73\xf6\x2b\xfb\x44\xea\x59\x7b\x0f\x71\xb2\x93\x6a\x0a\xb6\x0d\xb7\x96\x9e\xe2\x99\xd3\x4c\x29\x42\xad\x7c\xf2\xb9\x2d\xc8\x3e\xdb\x86\x5b\xba\xc1\xe5\xb3\x86\x8f\xa7\xa5\x8c\x06\x09\xcf\xd3\xa5\x9e\xe8\x2a\x93\x84\xe5\x38\x79\x1c\x57\xc6\x7c\xd0\x90\x4b\x14\x11\x76\x7d\x7d\x9d\xe6\xf3\xb9\xdd\xd9\xd9\x31\x57\xaf\x5e\x75\x5f\xfc\xe2\x17\xc9\xeb\x10\xfe\x6d\xa1\xc6\x07\x11\xa9\xbe\x44\x6e\x40\x44\x39\xbc\x97\x25\x77\x34\x5e\x99\x67\x6b\x17\x6e\x0f\xef\x7f\xe2\xe6\xe4\x23\x4f\xdc\x58\xf9\xdd\xfb\xf7\x47\x7f\xb0\x3e\xcb\x7f\x33\xb7\xe6\x3e\xe3\x75\xba\x57\x01\x75\x05\x12\xdb\x37\x47\xa8\x6e\xc3\x26\x17\x4f\x2b\x3a\x57\xa7\x85\xcd\xf8\x44\x01\x87\xf3\xf0\x00\xaa\x23\xd2\x2b\xa3\xd2\xac\x13\xe8\xfd\xeb\xeb\x8b\x6b\x8b\xcc\x15\xa0\xb8\x49\x37\x5c\x4a\x17\x4e\x1a\x39\xa0\xbe\x6f\xe9\xbe\xfb\xee\x33\x87\x87\x87\x29\x19\x6f\x33\x82\x65\x1b\xf3\x77\x28\xbf\x9a\x9c\x48\x19\xd5\xda\xb5\x8f\x1c\x2c\xb5\xb1\x28\x07\x44\x3e\xde\xff\x20\xe8\x00\x4d\x19\x4a\xf5\x01\xc9\xab\xe4\x45\x33\x5c\xb4\xb2\x70\x7e\x65\x9c\x34\xe6\x38\x1e\x24\xf2\xcb\xf2\x6b\xc6\xa0\x5c\xda\x95\x76\x81\x51\x70\x39\x91\xa7\x51\x5e\x79\x8f\x8b\xb4\xb8\x24\xd3\x32\xb4\x59\xcb\x01\x5f\x2a\xbf\x66\x21\x87\x78\xae\x18\x78\x3c\xd0\xac\x84\x36\x25\xdb\x36\x83\x92\xe5\xd4\x3a\x4c\xaa\x7c\x0d\xe3\x45\x29\x6b\xfc\x76\x07\xd0\x3c\x7d\x04\x54\x2a\x60\x91\xbb\xf2\xf6\xa8\x9c\x66\x0e\x76\x7d\x96\x6f\x8e\x0b\xb3\x0a\x3f\xa4\xfb\x0f\xb1\xd6\xc7\x96\xd9\xb1\x1c\x59\x99\xc4\xfe\xe7\x06\x01\xff\xbc\x40\x0d\xef\xf1\x56\x48\xeb\x75\x74\x9f\xb4\xe4\x5d\x01\x10\x0d\xa5\x90\x93\xf8\x2f\x04\x66\xf1\x1e\x68\xd7\xec\x47\x20\x2e\x91\x88\x86\x14\x35\xd2\x79\xe3\xb2\x5f\x63\x1c\x6d\x8d\x0b\xf3\xa1\xf5\x69\xfe\xe8\xd6\x49\xbe\xb9\x36\xcf\x32\x02\x95\xf3\xdc\x96\x96\xe0\x4a\x8a\xf7\xe9\x70\xe3\x85\xb3\x47\xac\x8d\x88\xfc\xbd\x13\xcf\x3c\xf3\x8c\xfc\x84\x00\x0f\x32\xee\x4e\x0c\xe5\x36\x9c\x77\x8a\xab\x2f\x1f\xbc\xca\xbb\xca\xa7\xf5\x83\x2e\xbc\xf2\x59\x83\xe9\xd3\xb7\x64\x7f\x97\x83\x91\x7c\x96\xc6\x89\xa6\xf4\x35\x7c\x9a\x97\x46\xe2\x4e\xd5\x01\xd7\x39\x5c\x99\x2e\xe1\x58\x5d\x5d\xa5\xd5\xd5\x55\x3a\x38\x38\xb0\x00\xf0\x27\x7f\xf2\x27\xb4\xb3\xb3\xc3\x0d\x14\xf2\xb2\x6a\xbc\x2c\x06\x63\x25\xec\x67\xa9\xee\x63\x01\x0d\x09\x18\x0e\x4b\xb3\x72\xf6\x78\x70\xf6\xd7\xae\xaf\x3c\xf9\xd4\xb5\x95\xdf\x79\x70\x6f\xfc\x5f\xb7\xa6\xf9\x67\x46\xa5\x79\x94\x40\xe3\x06\x93\x0e\xca\xe6\x7f\x8a\x69\x75\x5f\x0e\xf7\xb8\x50\x13\x9e\xc0\xf6\xb6\x35\xfb\x3c\x81\xf2\x81\xa5\xb5\x95\x85\x99\x4c\x07\xf6\x8d\xdd\x49\x71\x60\x09\x85\x37\x58\xc2\x7e\x97\xd0\xc9\xa2\xc1\xb0\xb3\xb3\x43\x4f\x3d\xf5\x94\xbc\xed\x9a\xd7\xb5\xa6\xcf\x35\x99\xe5\x2a\xa2\x4b\x66\xe4\xc0\xd9\xd6\x07\xb4\xb1\xa8\xad\xbf\xa4\x06\x60\x59\xb6\x40\x5b\x1a\x38\x9a\x21\xd4\x25\x83\xdc\x68\x93\xf2\xae\x95\xed\xff\x67\xef\xdd\x7f\x24\x39\x8e\xfb\xc1\x88\xac\xea\xea\x9e\x9e\x9e\xd9\xd9\xd9\xd9\x07\x97\x4b\x8a\x5c\x3e\x44\xeb\x2b\x3f\x44\x51\x82\x21\xeb\xbe\x3a\x1b\x7e\x1c\xec\xf3\x41\xd0\xfd\x62\x18\x06\x6c\x03\x26\xff\x28\x12\x06\xfc\xba\x3b\x41\x07\x1b\xb6\xef\xce\x07\xd8\x3e\xc9\x3a\xd8\x82\xee\x6b\x93\xd2\x89\x16\x45\x4a\x24\xc5\xa5\xc8\xe5\x72\x76\x76\x76\xa6\xa7\xdf\x5d\x95\x79\x3f\x54\x66\x56\x64\x54\x64\x55\xf5\xec\xca\xdf\x5f\x2e\xc9\xde\xa9\xca\x8a\x8c\x8c\x7c\xc6\x27\x23\x5f\x31\x10\x22\xe5\x15\x97\x45\x6a\x33\x52\x59\xf0\xf6\x17\x6b\x53\x12\xb8\xa1\x32\x4a\x69\x17\xf1\x45\xd3\x01\x74\x5d\x5c\x5b\x87\xce\x2b\x15\x17\x96\x22\x30\x29\x13\x79\x05\xe1\x95\xab\xa9\x93\xe5\xb4\x12\x52\xe4\x19\xc6\x65\xe5\xb2\xf9\xe7\x9f\xff\xf9\x9f\x47\xa5\x14\x00\x54\x8b\x72\xdd\x19\x06\x7e\xde\x98\xde\xac\x5c\x8d\x40\x94\x9d\x36\x2a\xc6\x83\xe2\xac\x5f\x24\xc9\x85\x45\x7a\xb9\x57\x60\x06\xe0\xb6\x12\x92\x96\x89\xd5\x14\x8e\x9b\x02\xa2\xa3\x29\x3f\x2a\x32\x15\x10\x40\x20\x9d\x93\xed\x7c\xd0\x8e\xb0\xca\x83\xee\xc2\xc3\xe3\x80\xc4\x17\x8c\xbc\x68\x07\x07\x50\x3f\x6b\xa6\x0a\x0e\x74\x02\x08\x89\xbf\x93\xd5\x70\x7f\xd2\xb1\xd6\x40\x0f\x21\xa6\x61\x2a\x9e\x98\xa6\x06\x2f\x6d\xad\xd5\xd3\x17\x16\xe9\x13\xfb\xf3\x74\x77\x67\x99\x9a\x22\x31\x8b\x59\x66\xef\x3d\x02\x54\x76\x01\x2f\x17\xc7\xe6\x1b\x06\x00\xc6\x25\x83\x4e\x23\x01\x00\xf4\xfb\x7d\x85\x88\xa8\xb5\xa6\x75\x86\x03\xeb\x2e\xcf\xce\xb5\x01\xea\x4d\x14\xad\x44\x2f\x01\x7e\x89\x9e\x3a\x1e\xb6\xa9\xe3\x92\x9e\x39\x80\xe0\x3c\xa5\xb6\x2a\xc9\xd8\x44\x2f\xe5\x6b\x0c\xa4\xf0\xb4\x21\xfb\x4e\xdb\x7d\x4c\x76\x69\xba\x80\xf3\xa1\xb4\x3e\x7c\x96\x65\xaa\x28\x0a\xb3\x5e\xaf\xcd\x62\xb1\x30\x2f\xbd\xf4\x92\xa2\x80\x85\xd4\x49\x07\x5e\x14\x94\x7d\x31\xda\xa9\xa0\xc4\x18\xe3\xcf\x63\x49\x0c\x64\x5b\xeb\x64\xf7\x99\xa3\xe1\x8d\x9f\xbd\x3d\xfa\xcf\x4f\xdc\x1f\x7c\xe5\xe2\x2c\xfd\xf5\x41\xa1\x3e\xa9\x0c\x6e\x23\x94\x33\x3f\xb4\xfd\x07\x16\x51\x53\xf9\x07\x34\x64\xb1\x7d\xb0\x48\xd7\xf9\x3b\xf0\x42\x32\x89\x4c\x17\x67\x3d\x8d\x07\xc3\x55\xb2\xbc\x37\xca\x6f\xcd\x7a\x7a\x61\xb0\xbe\xde\x05\xc0\x9f\xac\x8b\x88\x68\x5e\x7e\xf9\x65\xfd\xe2\x8b\x2f\xaa\xb7\xdf\x7e\x1b\x97\xcb\x25\x57\xbe\x34\xaa\x58\x5b\xa3\x79\xce\x95\x75\x97\x3a\xd5\xd4\xc6\x78\x99\x37\xe9\x37\x0a\x20\x40\x78\x8e\xc9\x29\x01\xf8\xb6\x59\x09\xc9\xea\x04\x42\x5a\x24\x3e\x28\xfc\x62\xed\xab\x29\x3f\x25\xa0\xc8\xe5\xa4\x7f\x9b\xfa\x21\x49\xb7\x73\x9a\xc6\xbe\x50\xba\xab\x88\xba\xa6\xc8\x79\x67\x2b\x65\x1c\x2f\x54\x8e\xc4\x62\xe1\xa4\x0a\x22\xa1\x32\xc7\x27\x36\x9a\x6b\x2a\x28\xea\x27\xa1\x52\xa9\x33\xf4\xcf\xdf\xf9\xce\x77\xe8\x4d\xd2\xa5\x80\xd5\x59\x06\xc6\xbe\x57\xed\x9d\x2e\x88\xb1\x13\xcf\xeb\xc4\x14\xf7\x87\xeb\xf1\x68\x9d\xf6\xb6\x97\xc9\xc5\x9e\xc6\x0c\x01\xf9\x2c\x8b\x4f\x3c\x92\xaa\x13\x00\x0f\xfb\xad\x1a\x31\x19\xb2\x98\xb6\xa4\x0c\xee\x2a\x22\x09\xe6\xd3\x49\xc8\x56\xee\x06\xb5\x48\xc6\x2d\x84\xab\x93\x99\x6c\xe5\x0e\xd9\xd1\x00\x22\xaf\xb6\x78\x68\xba\xcb\x9d\x0e\xea\xea\x70\x9d\x3c\xb3\x37\x4f\x6f\x5e\x9e\x64\x17\x2e\x2c\x7a\xeb\x65\x4f\xcf\xa6\x59\xe1\x4c\x2e\x0a\x42\xa5\x23\x02\x18\xb0\x3b\x23\x5c\x67\xee\x80\x4b\x51\x14\xc6\x82\x16\x17\xfd\x79\x9f\x69\x12\xf8\xb3\x11\x68\x9b\xe8\x1e\x94\x86\xbb\x4d\xc3\x6e\xd2\x56\xa8\x1f\x6f\xff\x5d\xe3\xa1\x0a\x40\x92\xd3\xd1\x34\x75\x92\x31\x39\xa4\x7e\x85\xd3\x3a\x05\x2a\x29\x3e\x0e\x9e\x54\x51\x14\xfa\xc5\x17\x5f\x54\x6e\x21\xb8\x05\x2d\x14\xb0\xb8\xb0\xee\xaf\x02\x7b\xb4\x82\xb5\xb2\x64\x00\x90\x21\xe2\x60\x90\xab\xe1\x93\xc7\x83\xeb\x9f\xf9\x60\xe7\x73\xcf\xdc\x1b\x7e\xf9\x60\xda\xfb\x1f\xb7\x72\xf5\x9f\x12\x50\x3b\xee\x78\xc9\xb2\xb3\x31\x00\x58\x59\x48\xc1\x54\x20\x45\xea\x2f\x00\x7c\x7f\x65\xbf\x55\x8d\x8e\x8a\x89\x3e\xbc\xa9\x06\x3c\x0e\xd8\x18\xe8\x0f\x0a\x75\x69\xb0\x52\xf7\x0f\x77\x56\x77\x96\x3d\xbd\x34\x60\xdc\x56\x68\x7a\x28\x9d\x5f\xf3\xf2\xea\xab\xaf\x9a\xd7\x5e\x7b\xcd\x08\xa0\xc5\x89\x42\xfd\xa5\xbe\x9a\x3f\x37\x29\xda\xb6\xe7\xb6\x3a\xd1\x04\x6c\x9a\xd6\x8d\xd1\xf4\xf0\x67\xce\x3b\xd6\x26\x01\xe4\xf4\x3a\x7f\x0a\xea\x38\x1f\x0e\x00\x68\xdd\xa5\xb2\x34\xc9\xc7\x9f\xa5\x76\xd4\x96\x76\xfe\x2e\x19\x19\xba\xf4\x03\xb5\x32\x6b\x02\x2e\xbc\xf2\x50\x66\x12\x92\xe4\x0d\x5a\x42\x66\xdc\x8f\x8f\x56\x78\x21\x50\xd3\x53\xd3\xd4\x8e\x04\x3c\x40\xf8\x26\xc5\x4f\xc3\xc4\xac\x37\xa2\x7b\xfe\xf9\xe7\xcb\xbe\x81\xf4\x1f\x20\xeb\x5c\x0d\x00\xde\x22\xe3\xfe\x02\x80\x59\xa5\xa6\x38\x1e\xae\xc7\x5b\xb9\x4a\x46\xeb\xe4\x42\xaa\xb1\xaf\x00\x91\x9e\x68\x49\x06\x42\x5e\xb1\xf3\x33\x18\xfc\x8c\x92\x01\xdf\xdb\x94\x56\x0d\xbb\xde\x04\x9c\xe5\x06\x59\x66\x90\xa5\xb2\x58\x4f\x44\xa0\xe5\xad\x2c\xb5\x1d\x44\x06\x18\x40\x09\x2d\x3a\xd5\x68\xd0\x54\x91\xb0\x5c\x0a\xe2\x35\x55\x41\xd5\x76\x2a\x39\x19\x42\x19\xfb\x3d\x8d\xd7\x86\xeb\xe4\xb9\x8b\x8b\xf4\x93\x8f\x9c\x66\x97\x2f\xcd\xd3\x7c\x9e\xea\xc5\xa2\xa7\xdd\xd4\x99\x3f\x6d\xd4\x2f\xe7\xf5\x45\xe7\xf2\xd0\x5b\x5f\xfc\xed\xd3\xe7\xd8\x85\xe4\x9c\x64\x45\xe9\x1a\xee\x3c\xf1\xfd\xd7\xe2\xbb\x49\xbc\x9b\xe4\xc5\xa6\xe1\x9a\x14\x4f\x93\xa5\xaa\x8d\x77\x13\xe8\xa9\x85\xfb\xa3\x3f\xfa\x23\x7c\xed\xb5\xd7\xcc\x0b\x2f\xbc\x80\x00\xe5\x45\x88\x2e\x1c\x56\x8b\x6e\xdd\x74\x90\x82\xf2\xd0\x38\xb7\x86\x25\x43\xc4\x0c\x00\xb2\xdd\x65\x3a\x7a\xe6\xee\xf0\xf1\xe7\x3f\xd8\xf9\xa5\x4f\xde\x1d\x7e\xe5\xf2\x34\xfb\xca\x70\xa5\x7e\x31\x31\x78\x01\x00\x54\x70\x5c\x82\x15\x2b\x68\xb3\xf4\x85\xb4\x19\x00\xda\xf4\x2c\x64\x61\xbd\xb8\xe7\x49\x1b\x3a\x92\xc5\xf6\xa4\xcd\x28\x8d\x3b\x5b\x65\xbf\xf5\xf1\xf1\xf6\xfa\xde\xaa\x67\xd6\x36\xb1\x06\x00\x0a\x00\x6f\x71\x01\x44\x84\xcf\x7e\xf6\xb3\xfe\x74\xeb\xab\x57\xaf\xe2\x74\x3a\x95\x14\x1f\xcf\x57\x49\x39\x37\x29\x5f\x92\xf2\xc6\x67\xea\x1e\x16\x6f\x09\xf4\x48\xf1\x9c\xa7\x4e\x53\x10\x2d\x01\x6e\x49\xd6\x18\x98\x88\x81\x8e\x58\xfd\x6e\xb3\xce\xc4\xd2\x72\xde\xf6\x4f\x1d\xc7\x16\xe2\x25\x8b\x14\x88\xb4\x15\x32\x35\x97\x71\xbf\x98\xd9\x4a\x02\x28\xce\xaf\x69\x2f\x79\x93\x7f\x97\x8a\x12\xe3\xe3\x7e\x92\xe9\xcf\x39\x11\x88\x91\x0e\xca\x9b\x42\xc9\xf4\x10\x07\x5b\xae\x31\x83\x27\xb4\x1d\xd0\xb2\xa7\xf5\xb4\x5f\x4c\xb2\x42\xa5\x5b\xab\x64\xd4\xd3\x38\xf0\x87\xf5\x5b\x4b\x89\x1f\x11\xb9\x8e\xc8\xbe\xd3\xfb\x84\x7c\xac\x36\x15\xe8\x00\x0e\xf8\x85\x75\xe0\xfe\xc5\x4a\x28\x6b\xad\x71\x5b\x26\xab\xb0\x81\xe5\x04\x42\x10\xc1\x01\x45\xed\x9d\xfe\xb5\x11\xd2\xdd\x44\x01\xf6\xc7\x50\x26\x37\xca\x43\x42\x63\x48\xfa\x02\x5a\x97\x37\x65\x7e\x0d\xd2\x02\x2f\x6f\xe5\xea\xe9\xdd\x45\x7a\xf3\xda\x24\x3b\xd8\x9f\xf7\x30\x47\xb3\x5a\xa4\x5a\xeb\xa4\x02\x27\x76\x3d\x01\xba\xf2\xa8\xfe\x00\x02\xf8\x0b\x33\x11\x60\xa3\x6d\xd4\xd2\x48\x47\xea\xc8\x62\x53\x20\x00\x72\xfd\x8b\xc5\x23\xd5\xcb\x2e\x1d\x52\x93\x0c\x92\xf5\x52\xea\x07\x62\x56\x4e\x2e\x9f\xb4\x0b\x28\x96\x27\xbc\x73\xe6\x96\xb2\x98\x0c\xd2\x68\x98\xfe\x05\xc6\x4f\xe2\xcd\x95\x0e\xf7\x03\xc2\x0b\x01\x00\x1f\x7b\xec\x31\xfc\xed\xdf\xfe\x6d\x7c\xfd\xf5\xd7\x0d\x40\x79\x48\x25\x22\xfa\x01\x0d\xe1\x93\x38\xeb\x9f\x3d\xe5\xd6\xdf\xde\x0c\x16\xb0\x40\x69\x61\xc9\x76\x16\xc9\xee\x33\x77\x87\x4f\xfc\xec\x47\xdb\x5f\xbc\x79\xbc\xf5\xdb\x07\xd3\xde\x7f\x37\x5c\x27\x9f\x4d\x35\x5e\x46\xc0\x04\xc0\xed\xf6\x09\xcf\x54\x2a\x85\x0c\x5a\x58\xd8\x93\xd3\xc4\xb8\xf6\xed\x16\xdc\x22\xc1\x28\x86\xb6\xd9\xb0\x51\xd3\x26\xeb\x7c\xd0\x20\x26\x06\xf7\xfa\x39\x66\x79\x62\x3e\x3e\xeb\xe7\xa7\xab\x44\xaf\xa1\xbc\x12\xc0\x93\xdb\xbe\xcf\xb7\x87\xe7\x9f\x7f\x1e\xed\x81\x90\x3c\x5f\xa5\x3a\x02\x50\x2f\x97\x58\x9b\xa2\x65\x5c\x2b\xb3\x96\x78\x6a\x0a\x32\x12\xa7\x54\xd7\x68\x66\x71\xfd\x29\xb5\x15\x69\x81\x37\xff\xf1\x2d\xc6\xf4\x39\xb6\x03\x4f\xea\x1b\xa4\xe7\x58\x1b\x88\x4d\x13\x4b\xed\x98\xcb\x20\xc5\x17\x6b\xd3\x52\xde\xd2\xfc\xa1\xe1\x80\x7c\x37\x00\xd5\x01\x74\x40\x3c\x59\x75\x6f\xec\x48\x39\xe2\xe3\xa0\x25\x66\x3a\x93\x3a\xd6\x4d\x94\x82\xe4\x62\x89\x8f\x75\xae\xdc\x71\x04\xc9\xbf\x89\xe1\xd8\x42\x5d\xf7\x97\xf2\x93\xe6\xe1\x9d\xf6\xf4\x45\xb3\x4c\xf5\x7a\x96\xe9\x79\x02\x68\xb6\xd6\x6a\x98\x15\x6a\xa0\x00\x55\x75\x54\x14\x54\xeb\x55\x48\x71\xba\x75\x27\xb4\xc0\x7c\x9f\x63\x20\x9c\xfa\x01\x56\xb0\xa6\x9a\x52\x72\x56\x19\x40\xb6\x70\x97\xfc\x6b\x88\x0c\x81\xc3\x3a\x6f\x29\xbe\xa0\x53\x74\xdf\xfc\xb3\x3d\x31\xd8\x00\x9b\x2c\x83\xe8\x74\x53\x2d\xbe\xb2\x23\x4e\x94\xc1\xad\xac\x50\xd7\xb6\xd6\xc9\x93\xbb\x8b\xf4\xc9\x83\x59\xef\xf2\xde\xbc\x97\x42\x79\x64\x79\x91\xdb\x05\xbc\x0c\xc0\x50\xeb\x9b\x1b\x1d\xfb\x17\x80\xea\x2a\x81\x86\xeb\x04\x9a\xea\x7a\x0c\x40\x37\xd5\xbb\x98\x0b\xea\x52\x07\x19\x9a\x06\x05\x9c\x8f\xc4\xaf\x2d\xad\x00\x32\xf8\xe2\x1d\x3d\xe5\x27\x29\x00\xd7\x5e\x78\xfa\x78\x27\xce\xe3\xa4\x9d\xb7\x24\x43\xd3\x33\x8d\x13\x23\xfe\x9e\xf7\x67\x3e\xf3\x19\xbc\x73\xe7\x8e\x06\x00\xf3\x9b\xbf\xf9\x9b\xb8\xb3\xb3\x03\x0e\xd8\x7a\xa1\xaa\x75\x2c\xfe\x3e\x21\x67\xed\x83\x70\xe1\xad\x07\x2c\x17\x16\xe9\xe8\x99\xa3\xe1\x53\x9f\xfa\x78\xfb\x0b\x4f\x1e\x6f\xfd\xe6\xe5\x69\xf6\xab\xdb\xab\xf4\x17\x7a\x05\x5e\x53\x80\x5b\xb4\xa5\xb8\x76\x6d\xec\x3b\x3d\x69\x9b\x83\x97\xfa\xb4\xab\x9b\xf2\x21\x77\x9c\xb9\x9c\xb4\x7f\xb9\x75\xa6\x7a\x2e\xb3\x25\x68\x8b\x08\x60\x17\xeb\xee\x64\x85\x5a\x4d\x32\x7d\x34\xed\x17\xe3\x42\x95\xa7\x5a\xdb\xe0\x7e\xbd\x0b\x59\x15\x6f\xc8\x62\x78\xfa\xe3\xe5\xc4\xfb\xd0\x98\xe2\xa4\x7e\xbc\x3e\xf0\x32\xe6\x80\x96\xc7\xc3\xc1\x2f\xaf\x1b\xb1\x38\x39\x9d\x94\x8d\x12\xef\xd8\x8f\x3a\x64\xf4\xce\xaf\x4d\xee\x2e\xcf\x52\x5d\xe7\xed\xb9\x29\xbf\x01\xea\x72\x35\x95\x99\x14\xbf\xd4\x1f\xf1\x3c\xf5\xa0\x4b\x9a\x2a\xa2\xc2\x36\x75\xa8\x12\x08\xe0\x19\xce\xbf\x4b\x40\xa6\x0d\x90\xb8\x70\x12\x3d\x05\x27\xf4\x1b\xed\x08\x29\x6f\x29\x3d\x9c\x47\x93\x0c\xe2\x77\x76\x9f\x11\x2f\x70\x04\x80\xe0\x86\x63\x08\xba\x89\xf2\x5d\xa3\x31\xcb\xd4\x2c\xe7\x99\x5e\x82\x01\x33\xc8\x93\x41\x96\xab\xa1\x02\x54\x7e\x5a\x48\x00\x08\xd2\x02\x57\x1b\x5f\x30\x95\x44\xc3\x55\x5b\x1d\xd1\xfa\x5b\x70\x64\x7b\xa2\x2a\x91\xe1\x39\x30\x41\x07\xc7\x13\xc8\x13\xe4\xbe\xfa\x6d\x94\x42\xf8\xe0\xe6\x6a\x0c\x3a\x4d\xda\xf9\x86\x08\xba\x7e\xdf\x92\xc5\x5b\x7e\x2a\xcc\x5a\xab\x52\x65\x70\x94\x15\xea\xf2\x70\x95\x3c\xbe\xbb\x48\x3e\x71\x71\xde\xbb\x7a\x61\xd1\xeb\xa7\x1a\xf3\x45\xaa\x8b\x3c\xa9\xa6\x8c\xa0\xaa\x07\x7e\x14\x42\x76\x7f\xf0\xe4\x41\x07\x10\xb3\x89\xeb\xda\x0e\xa8\xdb\x84\x7e\x53\x60\x74\x9e\x78\x62\x34\xd4\x3f\x66\x01\x92\xda\x0e\x1f\xd4\x48\x72\x48\x3c\x36\x91\xb9\x89\x87\x0f\xff\xa5\x2f\x7d\x09\x6f\xdd\xba\x65\x00\x00\x7e\xe5\x57\x7e\x05\x5f\x7f\xfd\x75\xf3\xd2\x4b\x2f\xa9\x7e\xbf\x5f\x06\xaa\xa6\x80\xd0\x5a\x54\x10\xc8\x49\xb7\xf6\x5b\x0f\xcb\x83\xe4\x32\x0a\x5a\x2e\x4d\xd2\xbd\x4f\xde\x1d\x7e\xf2\xd9\xc3\xe1\x17\x9f\xb8\x3f\xf8\xb5\x2b\x93\xec\x97\x47\xcb\xf4\xe7\xb3\x02\x6f\x28\x83\xe5\x39\x4f\xa4\x7e\xfb\x46\xe2\x5b\x09\x19\x58\x18\xda\x8e\xcb\x24\x04\xd3\xb6\xc6\x1e\x6b\x80\x2e\x9c\xeb\x57\x2a\x6b\x2b\x6d\x10\x01\x50\x31\xae\xbf\xa8\x83\x17\x04\x00\x7b\x9f\xd1\x76\x62\x70\x36\xe9\xeb\xa3\x59\x75\x9f\x91\x5f\xef\x42\xf2\xd5\x75\x86\x86\xec\xe2\x8b\x59\x11\x63\xe5\x2a\xf5\xd9\xb1\x67\x89\x5f\x53\x58\x89\x37\x12\xff\x98\x7c\x94\x0f\xb5\x1a\x80\x40\x2f\xa5\x2b\x66\xf5\xe1\xf1\x70\x50\xd6\xc4\xbb\x2d\x1f\xf8\xb3\x14\x2e\xc6\x7b\x13\x59\x9d\x3f\x57\x29\x31\x9c\x21\x19\x35\x3c\x2d\xd7\x77\xdc\xac\x1a\x5b\xed\xcc\xbf\x71\xf4\x1a\x73\x31\x9e\xb1\xf0\x92\xbf\x64\x0a\x96\xc2\x35\xc9\xf2\xa0\xdf\x45\xf7\xd2\x4b\x2f\x29\x02\x18\xdc\x9a\x0a\x05\xe1\x9d\x46\xb5\x7b\x8d\x8c\x31\x23\x44\x1c\x81\x81\x51\xaa\x71\xef\xd2\xb4\xf7\xe8\xcd\x7b\x5b\xcf\x3d\x79\x3c\x78\x6e\x7f\x96\x5e\x4b\x0b\x95\x01\x82\x5f\xc7\xe2\xca\xb1\x7e\x22\x4a\xe9\xdc\x49\xb8\x14\x34\x94\xa1\x9c\x55\xc3\x8d\xb6\xd8\x3a\x19\x1f\x2c\x3c\x31\xb3\xc9\x75\x20\x79\x20\xfa\x56\x5e\x9d\x64\x34\x5a\x23\xcc\x72\x65\x0e\xe7\xbd\xe2\xdd\xfb\xc3\xfc\xcd\xbb\xdb\xeb\xef\x1f\x6d\xaf\xde\xfe\x78\x67\x75\xfb\x64\x2b\x9f\x21\xa2\xbb\xfb\xc8\xdd\xb9\xa2\xa1\xba\x7f\xc5\xad\x51\xa2\x77\x22\x01\xf5\x73\xee\xe5\x97\x5f\xd6\x00\x00\x5f\xfa\xd2\x97\xd4\x37\xbf\xf9\x4d\xa9\xde\xc6\xde\x25\xff\xa6\x76\x21\xd5\x7d\xc9\xe2\xd9\xd4\x86\x25\xde\x31\x5a\x1e\x5f\x97\x76\x47\xc3\x39\xd7\xd4\x76\x29\x1d\xa5\x6f\xe2\x47\x69\xa4\xf0\xd2\x77\x69\xc4\xed\xf9\x0f\x06\x03\xb5\x58\x2c\xf4\x97\xbe\xf4\x25\x05\x00\xf0\xe4\x93\x4f\x42\xaf\xd7\xab\x0d\x04\x68\x7c\xe4\x0e\x21\x20\xed\xbe\xd6\x07\x18\x63\xd2\x54\x63\x76\x79\x9a\xed\x5e\x3d\xcb\x1e\xbf\x3a\xce\x7e\xee\x60\xda\xfb\x4f\xdb\xab\xe4\xd9\xac\xc0\xeb\x89\xc6\x5d\x04\x1c\xf0\x1e\xbd\x04\x26\xc1\x2e\x45\x41\x9e\x92\xd2\xb8\x10\x02\xbd\x81\x3a\x63\xcf\xdb\xbd\x78\x6e\x86\x00\x96\x92\xa6\x04\x3d\x72\xa3\xd3\x68\x16\xe3\x7e\xfe\xdd\xb7\x0f\xe6\xff\xdb\x0f\xae\xce\xbe\x75\x6f\xb4\xbe\x03\x00\x0b\xf7\x73\xed\xcb\x18\xa3\x01\xaa\xfb\x8c\x0e\x0f\x0f\xe1\xbb\xdf\xfd\x2e\xdc\xba\x75\x4b\xaa\x1b\x5d\x75\x12\x2f\x93\x58\xfd\x6a\xe2\x0d\x0d\xef\x5d\x79\x34\xa5\x21\xc6\x8f\x7f\x93\xfa\x80\xa6\x34\x35\x85\xe7\x2e\xd6\x06\x9a\xfa\x8e\xb6\xf4\xd0\xb8\x25\x99\x78\x1c\x31\xda\xa6\xf8\x02\x7a\x69\xaa\xa8\x09\x35\x79\x53\x0d\xf1\x03\xe2\xc7\x9d\x64\x61\x89\xf1\x8b\x8d\xb4\x24\x94\xa9\x84\xef\x34\x4e\x20\x74\x12\x02\xe6\x05\x8f\x8c\x7e\xd3\xd1\xa9\x02\xa8\x56\xcc\xdb\x93\x30\x0d\x01\x07\x41\x9e\xf2\xc3\x99\x90\x98\x24\xb4\x02\xbd\x4c\xf5\x72\xd1\x2b\x96\x06\xa0\xe8\x17\x6a\xd0\xcf\xd5\x30\x71\x23\x2f\x4b\xd8\x08\x2c\x9c\xe5\x81\x91\xb8\x30\xde\xca\x21\x80\x16\xf9\xe4\x38\x97\x41\xe4\x42\x46\x70\x16\x8e\x80\x43\x73\x2e\x55\xec\x6c\x07\x1a\xb7\x0a\xc5\xd8\xc5\xae\x32\xe0\xe1\x59\xba\x51\x01\x66\x89\x81\x0b\x59\xa1\xae\x8e\x56\xc9\x8d\xbd\x79\xfa\xf8\xc5\x79\xef\x91\xd1\x2a\xdd\xdb\x5e\x27\x09\x02\xac\x56\xa9\x31\x1a\x21\xb1\x66\x74\x05\xe5\x08\x9a\xde\x89\x84\x36\xdf\xfc\x1a\x18\x5b\xc6\xee\x9b\x9f\x4e\x22\x77\x23\x51\xd1\xb8\xa8\x91\x5c\x0a\xea\xa1\x44\x17\x1b\x15\x35\x8d\x22\x01\xe2\x6d\xab\xcd\x49\xf1\x49\x61\xa5\xd1\xa7\xeb\x74\x68\xd1\x50\x7f\x1e\x9e\x9b\xaf\x25\xfe\x26\x42\x63\x84\x1f\x1f\x4d\x72\x99\x7c\x9e\x7c\xfe\xf3\x9f\xc7\x47\x1f\x7d\x14\xad\x02\x85\x5b\xb7\x6e\x99\xdf\xf8\x8d\xdf\xc0\x24\x49\xa8\xf2\xa6\x75\xc1\xf5\x1d\xde\xba\x42\xa7\x84\xec\x96\xe6\x0c\x00\x7a\xa8\x21\x1b\xae\xd4\xe8\xda\xa4\x7f\xf9\x89\xfb\x5b\xcf\x3d\x7d\xb4\xf5\x85\x9b\xf7\xb6\x7e\xfd\xea\x24\xfb\x6f\xb7\x57\xea\xe7\xb2\x42\x3d\x9a\x18\xb5\xab\x00\x52\x6b\x0b\x09\xac\x1a\xe5\x83\x9d\x0c\x22\x6d\xb8\xea\x81\x8d\x7f\xf5\xd6\x93\x60\x77\x10\x7a\x32\x6f\xc1\x71\xbc\x31\xb4\xe8\x56\x6c\xab\xa3\x13\xc2\xc6\xeb\xfa\x8f\x5a\xe1\xa4\xa9\x56\xa3\x5e\xa1\xcc\x3a\xd1\xf7\x27\xfd\xe2\x64\x95\x9a\x15\x94\x8b\x74\x01\x11\x0b\xb7\x16\x90\xf6\x8d\xa3\xd1\x08\xbe\xfe\xf5\xaf\xd3\xa9\x85\x20\x65\x10\x4e\xe7\x34\xd5\x69\x5a\xae\xc0\xfc\x8d\xe0\xcf\x79\x77\x9d\xc6\x50\x42\x38\x49\x76\x1e\x0f\x6f\x73\x8e\x8f\x14\x37\x8d\x8f\xcb\x2e\xe9\xde\x36\xdd\xcd\xf9\xf1\x36\xc0\x75\x30\x97\x81\x83\x88\xa6\x76\x16\x6b\xc7\x94\x5e\x91\xef\x00\x21\xa6\xe0\xf9\x50\x93\xdf\x05\xea\x82\xb6\x62\x2e\x86\x4c\x39\x4d\x9b\x95\x44\xa2\xe7\x61\xa1\xe5\xb9\x29\xbc\x24\x73\xd3\x28\xb2\x6d\xe4\x2b\xa2\xf9\x5f\xfc\xc5\x5f\x54\xdf\xfe\xf6\xb7\xb5\xbb\x7b\xc4\xfa\xfb\x11\x17\x54\x23\xaf\x0c\x00\x06\x88\x38\x00\x80\x11\x00\x0c\xed\xdf\x11\x00\x8c\x92\x02\x76\x2f\xce\x7b\x8f\x3c\x71\x3c\x78\xf6\xa9\xa3\xad\x4f\x1d\x4c\x7b\x37\x7a\x5a\x65\x00\x60\x81\x43\xf7\x9b\x5d\x01\x80\x8c\x96\x40\x04\x05\x6e\x94\xd6\x04\x1a\xc0\x40\xb8\xe5\xba\x83\xed\xa4\x03\x9c\x89\xd2\x75\x09\x2b\x01\x15\x68\x90\xcf\xb6\x00\x6d\xc0\xac\xb4\x82\x93\x55\xa2\x3f\x98\x66\xc5\x0f\xef\xec\xae\xbe\xf3\xd1\xee\xea\xed\xfb\x5b\xeb\xdb\xe3\x41\x7e\xb2\xe8\xe9\x45\x81\x90\x03\x42\x6e\xaa\x5b\xa7\xb5\x1d\x2d\xba\xf9\x7b\x00\x52\x07\x98\xf5\x25\xa8\x73\xc6\x18\x78\xe5\x95\x57\xf4\xe7\x3e\xf7\x39\xb5\x58\x2c\x00\x00\xe0\xf5\xd7\x5f\x8f\xd5\x4b\x17\x5e\x6a\x97\xfc\x7b\xac\x0e\xc7\xda\x74\xec\x3b\x30\x3a\x10\x68\x9a\x46\x82\x92\x6b\x1a\x81\xc6\xfa\x81\xa6\x51\x32\x8d\xaf\x6d\xd4\xdc\x48\x7b\xf3\xe6\x4d\xb5\xbd\xbd\xed\x89\xae\x5e\xbd\x0a\xff\xf8\x8f\xff\xa8\x5f\x7c\xf1\x45\x15\x58\x18\x00\xf8\x74\xa1\xb2\xdf\x14\xf9\xa6\x00\x2a\xeb\x8a\xfd\x9b\xa2\x86\x34\xd3\x98\x6d\x2f\x93\xd1\x85\x45\x7a\x70\x69\xda\x7b\xfc\xea\x59\xf6\xcc\xc1\xb4\xf7\xe9\xad\x55\xf2\x6c\x4f\xe3\x75\x65\x60\x04\x50\xf2\xb7\xb1\x42\xe3\x79\x00\xc4\xd5\xeb\x7c\x68\x99\x09\x2d\x34\x50\x1b\xc8\xb8\x30\x2e\x4e\xb4\x42\xd0\xb5\x6f\xd4\xca\x42\x2f\x5d\xa4\x38\x86\xf1\xd2\xab\xc4\xdc\xfe\x68\x77\xf9\xf5\x1f\x5c\x9d\xfd\x9f\xef\xed\xcf\xdf\x5c\xf6\xcc\xd8\x18\xb3\x40\xc4\x15\x00\xac\x8c\x31\x39\xd8\x36\x64\x65\xd4\x00\x95\xb5\x52\x70\x5d\xca\x5e\xa2\xe5\xae\xad\x0e\xc6\xea\x74\x97\xba\xd6\xc5\xda\x10\x1b\xdc\x37\xf1\xe8\xa2\x37\x25\x59\xda\xfa\x86\xb6\xf6\x12\x7b\x8e\xf9\x41\x07\x7f\x1a\x87\x44\x1f\x93\xbd\x26\xaf\xb3\xb8\x70\x2b\x0a\x45\x5e\x40\xde\x81\xd0\x70\x81\xa4\x0e\x88\x8e\x90\x28\x1f\x8e\x08\x39\xaa\x45\xf2\xe3\x68\x8d\x3e\x73\xd4\x48\x75\x18\x47\x89\x12\x22\x04\x42\xd7\x94\x6e\x69\x74\xca\xdf\x11\x00\xcc\x07\x1f\x7c\x60\x7e\xf9\x97\x7f\x59\xfd\xe5\x5f\xfe\xa5\xbb\xd7\x88\xe7\x41\x49\x5c\x8e\x3a\xa2\x3c\x35\x1a\xb3\xec\xe9\xf5\xbc\xa7\x17\x5a\x41\xb1\x95\xab\xc1\x60\xad\xb6\x95\xb6\x96\x17\xd7\xcb\xd0\xc0\x0d\xd7\xd4\x07\x16\x18\x14\xc2\xd8\x51\x5c\x70\x5e\x03\x11\xca\x83\x15\x1f\x38\x5c\xff\xc2\x04\x61\x96\x9a\x2a\x83\x68\x88\xe0\xd0\x3a\x43\x60\xb4\x25\xc1\x30\xa0\xef\x64\xfd\x96\x6e\x06\xc6\x82\x5d\x4f\x3c\x6f\xc0\x55\x28\x77\x04\x1f\xa6\x68\x70\xd4\xd3\x78\x65\x90\x27\x4f\xee\xcd\x7a\x4f\x1d\x4c\x7b\x8f\xec\x2e\xd2\xdd\x7e\xa1\xb2\x5e\xa1\x12\x65\x40\xd9\x40\xee\x5f\x65\x2d\x65\x4e\x59\xf9\x41\x2b\x40\xb0\x2b\x89\x0e\x96\x11\xa0\xb4\xaa\x7d\xf6\xb3\x9f\xc5\x47\x1e\x79\x04\x1e\x7b\xec\x31\x78\xec\xb1\xc7\x02\x8b\xcc\xd3\x4f\x3f\xad\x8e\x8f\x8f\xf5\x27\x3e\xf1\x09\x3c\x3d\x3d\x95\x46\x73\x7c\xa4\x43\xb3\x37\x36\x22\x6c\x1a\x29\x4a\xa3\x49\x10\xc2\x70\x8b\x05\xfd\xc6\xdb\x8c\xc4\x4b\x1a\x39\x51\xf9\x63\x23\x5a\x69\xf4\x2a\xf5\x25\x52\xbf\x40\x0b\x5f\xec\x43\x7e\xed\xd7\x7e\x0d\xbf\xf1\x8d\x6f\xe8\x2f\x7f\xf9\xcb\xf8\xd8\x63\x8f\xc1\xde\xde\x1e\x5f\x1f\x70\x68\x00\x00\x20\x00\x49\x44\x41\x54\xbc\xf0\xc2\x0b\xce\x82\xa6\x00\xaa\xf5\xdb\x10\x5a\x56\xd0\x18\xe3\x2c\x2c\x0a\xaa\xad\xcd\xe5\x1a\x16\x03\x59\xaa\x55\x7f\x6b\x9d\x6c\xef\xcf\x7b\x97\x1e\x19\xf7\x9f\x7c\xe2\x78\xf0\xb3\x4f\xdf\x1d\xfe\x37\x9f\xb8\x3f\xf8\xd5\x83\x59\xef\x8b\xc3\x75\xf2\xe9\x54\xe3\x35\x05\x6e\xf7\xa0\xa9\x1a\xa6\xb1\x22\x53\xec\x52\x43\x1b\xae\xb2\x1b\xdf\x6e\x2b\x3a\xb2\x6e\xcc\xaf\x61\x03\x40\x34\xd5\x91\x09\x25\x3a\x29\x2f\x6c\x75\x20\xc5\x87\x71\xe1\x08\x0f\x63\x0b\x0a\xa1\x3c\xc8\x12\x48\xbb\x23\xe2\xd9\x46\x82\xca\xc0\xb0\xa7\x55\x5f\x01\xcc\x67\x99\x3e\x9c\xf4\x8b\x39\x28\x2c\x6c\x39\x18\xb4\xd7\x02\x58\xfe\xc6\xe6\xa9\x89\x9c\x5a\x1d\x2b\x7b\xa9\x8e\xc7\xac\x01\xb1\x7a\x23\x29\x75\xa9\x5d\x34\xe9\x1d\x5a\xbf\xb8\xac\x92\xcc\x12\x6f\xca\xb7\x8b\xcc\x5c\x77\xf2\x34\xc7\xc2\x34\xb5\x29\xa9\x1d\x49\xcf\x3c\xdf\xa5\xb4\xc4\xfc\x79\xde\x4a\x6d\xb3\xad\xbf\x28\xeb\x10\xc9\x80\x18\xc2\x6c\xf2\xef\x62\xad\x88\xb9\xae\x96\x90\xb6\xb8\xba\xbc\xb7\xc5\xfb\xb0\x5c\x8d\xb7\xb5\xbc\xf0\x5f\x6a\xff\xd2\x35\x2f\x43\xf7\xf3\x6b\x5e\x00\x46\x4a\xc3\x68\x67\x99\x5e\x7e\xf2\xde\xe0\xd9\x67\x0f\x87\xbf\x10\x58\x5e\xac\xe3\x1d\x08\x04\xef\xd5\xbf\x00\xe1\x34\x0b\xa5\xaf\x5d\x35\x50\x7a\x06\x23\xb6\xa0\x33\xb5\x61\x02\xa0\xc4\x04\xb0\x3d\x92\xef\x90\x43\xe0\xc3\xa5\x8d\xc9\x1f\xbe\x87\xe9\x6d\xb6\xfa\xd4\x63\x88\xfb\x01\x80\xd6\x60\x16\x45\x62\xee\x2c\x52\xfd\xc3\x93\xad\xfc\x8d\xbb\xa3\xf5\x8f\xee\x8e\x56\xef\x9f\x0e\xf2\xa3\x69\x56\x8c\x17\x3d\xbd\xc8\x95\x59\x69\x05\x1a\xc2\xf5\x2f\xfe\x47\x47\x90\x50\xd5\x85\x9a\xf5\x85\xd0\x78\xd7\x30\xe2\xe4\xee\x41\xea\x70\xd3\xa8\x6d\x13\x7f\xe9\x5b\x9b\x05\xa5\x4d\xee\x2e\xfd\x0a\x34\x7c\x8b\x8e\x4a\x5f\x7c\xf1\x45\xf5\xca\x2b\xaf\x68\xb6\x0e\xcd\xc7\x5b\x5b\xef\x55\x5a\x4d\xe8\x37\x45\xfc\xa9\x85\x25\x05\x03\x4a\x19\x48\x7b\x1a\xd3\xad\x55\x32\xda\x5d\xa4\x7b\xfb\xb3\xde\xb5\x6b\x67\xbd\xa7\x2f\x4d\x7b\x3f\xbb\xbd\x4a\x9e\xcb\x72\x7c\x5c\x19\xdc\xc5\xf2\xf8\xfe\x2a\x1e\xfb\x97\x8f\xb8\xa2\xb5\xda\x02\x8e\xfa\xa0\x82\x0c\x2e\x00\xeb\x7c\x6b\x6d\xd3\xb6\x77\x03\xc1\x80\xc1\xb7\x7f\x0b\x68\xaa\x6b\x3f\xa4\xb6\x56\x31\xa5\x6b\x64\x8c\x31\xa0\x15\xcc\xc6\x83\xfc\x7b\xef\x5e\x5a\xfc\xcd\xbf\x3f\x32\xf9\xe7\xfb\x5b\xf9\x11\x20\xcc\xa0\x5c\xef\xb2\x02\x00\xb7\xa6\x8c\xb6\x1f\xa9\x0d\x9c\x57\xd7\x74\xb1\x5a\xb4\xf1\x39\x4f\x9b\x88\xc9\xd1\xc4\xa7\xc9\x52\xd1\x16\xff\x79\xf5\xee\xa6\x3a\xba\x8b\xd5\xa7\x8b\x4c\x6d\x3c\x3b\xf5\x21\xf1\x5e\x5f\x16\x0c\x3a\x08\xb1\xa9\x6b\xca\x90\xf3\x00\xa0\x58\x25\x38\x4f\xfc\x5d\xe3\x6b\xec\xbc\x1d\x78\xa1\x9d\x1e\x94\xd3\x45\xca\xce\x81\x0f\xa0\x04\x30\x43\xf2\xf3\x8b\x76\xd1\xc0\x68\x7b\x95\x5c\x7a\xf2\x68\xeb\xe9\x9f\x39\x1c\x3e\x7f\x79\xd2\x7b\x3c\xd5\x98\x01\x40\xd8\xad\xd8\x7e\x24\xe8\xa3\x58\xcf\x16\x82\x95\x6a\x90\x47\xe9\x43\x8b\x70\xe9\xe1\x59\xc4\xf8\x13\x27\x75\xc0\x4d\x9d\x71\x1b\x5d\xc0\x4f\x64\x44\x21\x1a\xe3\xe3\xd3\x4d\xce\xa4\x21\x1d\xb4\x24\x8c\x41\xc8\x35\x9a\xf1\x2a\xd1\xef\xcf\x32\xfd\xe6\xc9\xd6\xfa\xf5\xc3\xd1\xfa\xdd\xbb\xa3\xd5\xed\x93\xad\xfc\x64\x9a\xe9\x49\xae\x74\x5e\x28\xc8\x01\x20\x07\xf4\xa0\xc5\x2d\x38\xd4\x00\xe0\xa6\x8d\xb4\x9d\x72\xa8\x4d\x23\x11\x65\xa9\x4d\x00\x12\xab\x67\xd7\x91\x5f\xbc\x78\x51\x01\x00\xdc\xbf\x7f\x7f\xd3\xfa\xdc\xb5\xf3\x7d\x10\x80\xd1\x34\xd0\x71\xee\xbc\x83\x8e\xce\xfd\xca\xc5\x8b\x17\x15\xcd\x1f\x3a\xed\x03\x00\x74\xea\xc7\xcb\x46\x17\xd3\x73\xb9\xe9\x74\x10\x59\x7c\x5b\xb6\x5f\x03\xa9\x32\xa0\x12\x8d\x59\x4f\xe3\x60\x7b\x99\x0c\xf7\xe7\xe9\xfe\xd5\xb3\xfe\x8d\xcb\x67\xbd\x9f\xb9\xb0\x48\x7f\x6e\xb0\x56\xcf\xa5\x06\xaf\xa0\xc1\x01\x18\x50\xbc\xed\x54\xf5\x99\xc3\x8e\x38\x88\x91\xc1\x3c\xdf\x12\x5d\xd5\x7d\x69\x3b\xb4\x31\x74\x80\xc2\xb6\x4f\x03\x6b\x37\xb5\xc1\x0b\xa1\x77\xfc\x79\x20\x4b\x9b\x27\xe6\xe4\x78\xb8\xfe\xd6\x5b\x57\xa6\x7f\xf9\xfd\x47\x66\xdf\x5b\xa6\x7a\x0c\x00\x33\x32\x6d\x14\x4c\xc3\x82\x6d\x07\xaf\xbc\xf2\xca\xa6\xfd\x70\x9b\xa2\x84\x8e\xdf\xdb\x74\x9c\xf4\xde\x24\x57\x97\x6f\x4d\x8a\xbc\x0d\xa8\x73\xb9\xdb\x64\xa7\xfe\x9c\xb6\x49\xd6\x4d\xfb\x92\x2e\xbc\xba\xd0\x4a\x61\x01\x20\xac\xd3\x5d\x12\xb3\xa9\x8b\x09\xd1\xd4\xd1\xc5\xe8\x9d\x3b\xcf\xe8\xab\xad\x32\xc5\xf8\x6c\x92\xa6\xa8\xa3\xeb\x5d\x38\x78\xb1\x7f\x03\xf0\x62\x8c\x19\x00\xc0\xd0\x59\x5d\x00\x60\x04\x06\x46\xfd\x1c\x2f\xde\xbc\xb7\x75\xf3\xd3\x1f\x6d\xff\xe2\xc1\x2c\xbb\xd1\xcb\xcb\xdd\x07\xb6\x87\xe1\x23\xc6\xda\x3b\x35\xef\xd6\x0e\x70\x60\x23\xb9\x18\x8f\xa8\x85\x45\xea\x24\x6d\x9c\x8d\x1d\x29\x43\x11\x35\x5c\x22\x01\xaf\x8e\x20\x8c\xaa\x03\x20\xdd\x73\x6c\xbe\xdf\xcb\x4b\x47\x9e\x60\x56\x85\x32\xc7\xcb\xd4\xbc\x3d\xcd\x8a\x7f\x3f\xde\xca\x5f\xff\x78\x77\xf5\xde\xc7\xa3\xe5\xe1\xfd\x61\x3e\x5e\x27\x66\xa5\xd1\xe4\x1a\xad\x05\x06\xbd\x25\x06\x48\xa7\x0c\x50\x01\x1b\x80\xb0\xbe\xd4\xea\x0e\xdf\xa9\x44\xfc\x01\x11\x3d\x98\xf9\xf2\x97\xbf\xac\xfe\xfa\xaf\xff\xda\x87\x77\xbb\x61\x48\x90\xae\x1d\x65\x97\x6f\x31\xd7\xd6\x6f\x3c\x70\xa7\x26\xa4\xab\xe6\xcf\xd7\xa6\x34\x59\x54\xc8\x1a\x10\x0a\x6c\xa8\x65\xc5\xb7\xd7\xe0\x67\x20\x45\x00\x85\x06\xd2\x5e\xa1\xb2\xe1\x4a\x0d\x2e\xcd\x7a\x7b\x97\x27\xbd\x6b\x97\x27\xd9\xcd\x8b\xf3\xf4\x33\x5b\xab\xe4\xd3\x3d\x0d\x37\x94\xc1\x11\x00\xa4\x41\x8b\x12\x2a\x5e\x58\x5f\x43\x50\x60\x9b\xb5\xad\x8b\x32\xf4\x8f\x59\x21\x25\xbe\x04\x56\x54\x31\xd1\x36\x19\x91\x4b\xf2\xa8\xb5\xc3\xc8\x00\x66\x95\xe8\x3b\x1f\xef\xac\xfe\xfe\x7b\xd7\x27\x7f\xf9\xce\xa5\xf9\x7b\x1a\xcd\x04\x11\x17\x16\xbc\x94\xc0\xbf\x02\x30\x00\xb6\xfc\xc7\xe3\x31\x7c\xf5\xab\x5f\xed\x6a\x81\x00\xe1\xfb\xa6\x96\x81\x2e\xdf\x37\x19\x5c\x77\x05\x56\xce\x0f\x22\x7c\xba\xca\xd1\x14\xb7\xe3\xdd\xa6\x8f\x9b\xdc\x26\x03\x8c\x4d\x01\xce\xc6\xfd\x0e\xdd\x55\x44\xe7\xa7\x28\x43\x24\xfe\x8a\x3d\x23\xf9\xae\x84\xf0\xfc\xdd\xd1\xd2\xb9\x2b\xc5\xde\x69\x3c\xee\xbb\x73\x34\x41\x86\xd1\xd3\x6f\x74\xb0\x82\x10\x66\x8a\x24\x13\x8d\x9b\x7f\xe7\x8e\x7e\xef\x94\xc9\xf4\x9c\x17\xd6\xa1\x3a\x19\x35\x7b\x46\xac\x2e\x2b\x03\x28\x15\x22\x16\x0a\xf2\x7b\xdb\xeb\xf1\xa2\xaf\x4f\x87\xab\x74\x38\xc8\x93\x51\xa2\xb1\xa7\xa0\x5a\xfd\xef\xc7\x6d\x1e\x94\x58\x5f\x1f\xad\x5b\x84\x87\x81\x95\x06\xb0\x6e\x08\xae\x76\x14\x80\x0f\x13\xd0\x60\xf8\x5c\xeb\x80\x03\x99\x80\xed\x42\xf2\x91\x84\xaf\x24\x23\x82\x38\xb0\x1e\x24\x00\x28\x58\x23\x23\x41\xd9\x79\x34\x02\xad\x63\x4c\x79\xd9\xb0\x09\x1a\x1c\xf5\x0a\xf5\xf8\x70\xa5\x3e\xbd\xb7\x48\x3f\x73\x79\xda\x7b\xfa\xda\xa4\xbf\x73\x79\xd2\x1b\xec\x2c\x93\x34\xd1\x98\xac\x13\x83\x45\x62\x00\xd0\x83\x51\xb7\x50\x93\xae\x39\x70\x4a\x90\xa7\x0a\x01\xc0\x9f\xba\xec\x76\x28\x01\x6b\x6f\x6e\x5d\x80\x5b\x1b\xf3\xe6\x9b\x6f\x06\x75\x35\xcf\xf3\xb6\xf6\xc7\xfd\x9a\xe8\xdb\xda\x01\xa5\x6b\xa2\xe5\xed\x65\xe3\x38\xff\xf0\x0f\xff\x50\xbc\xb5\x9b\xa6\xd7\x1e\x02\xe9\xfb\x24\xac\x16\x6a\x18\xfb\xce\xf3\x32\x41\x44\x77\xee\x8a\x02\x7b\x04\x3f\x86\xa7\xda\xa6\xc6\x98\x14\xca\x43\xe2\x7a\xca\x40\x36\x5a\x25\x5b\xd7\xc7\xfd\x83\xa7\xee\x6d\x7d\xe2\xb9\xc3\xe1\x2f\x3c\x7d\xb4\xf5\x1b\x8f\x9d\x0e\xbe\x72\x69\xd6\xfb\x1f\xb6\xd6\xc9\x67\x52\x53\xae\x5d\x01\x7b\x78\xa4\xb1\x03\x04\x04\xf4\x03\x03\x43\xac\x16\xf4\xb8\xfd\x60\x6d\x99\xab\xa3\xac\x21\x70\x6b\x21\x87\xfc\xd5\xfa\xaf\x8a\x4f\x7d\x03\x73\xfd\x04\x6b\x0e\x3c\x78\xdb\x90\xee\x2a\x02\xda\x8e\x30\x2c\x3c\x07\x90\x12\x83\x83\x7e\xa1\x2e\x64\x85\x9a\x9c\x0c\xf3\x9f\xcc\xfa\x7a\x01\xe0\xaf\x01\x70\xb7\x47\xbb\x7e\xd1\xb2\x37\xe6\xcf\xfe\xec\xcf\xb4\x8f\x3a\x64\xcb\x75\x04\x2d\x57\x8c\x3c\xc7\x68\xa4\xba\x49\x79\x72\x1e\x92\x1e\x89\xc5\x13\xab\xd7\x52\xdb\x8e\xb5\x21\x49\x26\xc7\xa3\x49\xef\xf2\x7c\xd0\x42\x38\x10\xfe\xf2\x34\xc4\xd2\xe3\xde\xbb\xe4\x6b\x4c\x2e\xce\x4b\x7a\x96\x64\x02\x80\xb2\x71\x36\x39\xae\x94\x9b\x46\x8a\x5d\x10\x53\x93\xe9\x89\x3e\x73\x2b\x0b\x0f\xdb\x16\x9f\x24\xe7\x79\xd0\x72\x17\x39\x63\x61\x45\x27\xac\x6f\xc8\xa1\x2c\x87\x95\xfb\x46\x46\x1e\x1a\xc2\x91\x7a\x6e\x10\xf4\x3b\xfb\x8b\x77\xa6\xa9\x5e\x7c\xfa\xce\xf6\xf8\xb1\x93\xc1\xb3\xa3\x65\xb2\x9f\x68\x54\x5e\x21\x1b\x72\xa9\xa2\xc7\x2d\xe8\x47\x57\x14\xcb\xd4\xce\x6c\x21\x96\x97\xaa\xa6\x94\x01\xa5\x5d\x04\x35\xa0\x01\x41\xb7\x28\x74\x80\xb2\x3f\x75\x1c\x49\x4a\xb7\x45\xd3\x91\xa2\x14\x07\x0a\xcf\xc8\x68\x9c\x5f\xad\x37\x60\xca\x81\xc8\x35\x48\x35\x3e\x3e\x5a\x26\x8f\x6f\xaf\x92\xff\x7c\xf9\x2c\xbb\xb3\x4c\xf5\xdb\xb3\xac\x78\x73\x3c\xc8\x7f\x70\xbc\x95\xbf\x7f\xb8\xb3\x3a\xba\x3b\x5a\x8f\xcf\xfa\xf9\x42\x2b\x58\xd9\xb2\x0e\xac\x30\x00\x10\xec\x52\x72\xe5\x2d\x4d\x1b\x41\xbd\x1d\xd4\xa6\x40\x00\xda\xd7\xc7\xbc\xf8\xe2\x8b\x9e\xcf\x2b\xaf\xbc\xa2\xdd\xbb\x60\x96\xaf\xc5\x67\xdd\x26\x96\xcb\x36\x4b\xa9\x7e\xe6\x99\x67\xd4\x8f\x7e\xf4\x23\xdd\x45\x2e\x44\x0c\xd6\xa8\x00\x80\x6c\x51\x2c\xf3\x4e\x51\x3f\x44\x74\x7d\x9c\x02\x90\xd7\xab\xd0\x69\x20\xf2\x9c\x02\x00\x24\x06\xb3\x4b\xd3\xde\xf0\xea\x24\xdb\x3b\x98\xf4\xae\xef\xcd\xd3\x27\x46\xcb\xf4\x67\x86\x6b\xf5\x5c\x56\xa8\x9b\x89\x86\x7d\x70\xfd\x28\xa9\x48\xbe\xce\xb1\x5d\x3d\xe5\x0b\xd6\x1a\x4e\xc7\x8d\x44\xc1\x1a\x14\x37\x90\x40\x17\x29\x65\xe9\xf8\xbb\xb6\x4e\xe3\x62\xd6\xd7\x80\x9e\x3e\x63\x25\xb7\x07\xdf\x54\x08\x1b\x61\x89\x0c\x5d\x80\xf2\xb3\xf1\x09\x36\x69\x7f\xad\x6e\x5c\x1f\x67\xff\xfd\xcf\xde\x1e\xdd\xfd\xd6\x93\xa7\xff\xf7\xbc\xa7\xc1\x5d\xc6\x08\x55\x7d\xcf\x59\xff\x07\x7f\xf0\x07\x7f\xa0\xfe\xe4\x4f\xfe\xa4\x69\x9a\x44\x45\xbe\xb9\xbe\x53\xd2\x15\x31\x5e\x9c\x9e\xc7\x01\xe4\xbd\x8b\xc5\x24\xe6\x27\xb5\x8f\x26\xbd\xc8\x65\xa0\x34\x6d\xfa\x49\x8a\x47\x75\xa4\x91\xe4\xe2\x32\x74\x7d\xe6\x69\xe0\x7e\x52\x5f\x21\xf5\x21\xfe\x59\x6a\x2b\x3f\x0d\x33\x53\x53\x1c\xd2\xbb\x14\x07\x44\x68\x24\x1e\x9b\x9a\xc0\x9c\xdb\x34\x1d\x4d\x3c\x7c\xdc\x59\x96\xa9\xd5\x6a\xc5\xb7\x48\xbb\xbf\xee\xc7\x17\xec\xd6\x16\xed\x42\xb5\x6d\x7a\x57\x69\x18\xed\xcf\x7a\x57\x9f\xfb\x78\xf8\xe9\x27\x8e\xb7\x3e\x75\x61\x9e\x5e\x49\x35\xa6\x76\xa3\x00\x00\x40\x64\x3a\x04\x7c\xc7\x44\x47\x51\xe0\xcd\xe7\x50\x81\x1a\xd2\xd9\x06\x7c\x6a\x4c\xe3\x8e\x2f\xfa\x65\x1f\x03\x90\x14\x03\x20\x8d\x6b\x52\x22\x22\x05\xb2\x07\x87\x6b\x85\x03\x29\x13\x01\x64\x20\xc8\xc3\xbf\x03\x18\x6d\x4a\x30\xb9\xc8\x95\x39\x5c\xa6\xfa\xfd\x79\x4f\xbf\x7d\x36\xc8\x7f\x74\x3a\xc8\xdf\x3b\x1e\xe6\x87\x87\xa3\xd5\xf1\xbd\xed\xf5\x4c\xab\xc0\x24\xce\xa7\x8d\xf8\x0f\x20\xac\x8b\xfe\xd9\x54\x87\xe0\xd5\xd6\xc7\xd0\xbf\x00\x00\x9b\x80\x9b\xdf\xfb\xbd\xdf\x53\x7f\xf1\x17\x7f\x21\x7e\x6f\xfa\xd6\xe6\x68\x58\xfa\xfc\xfb\xbf\xff\xfb\xea\x4f\xff\xf4\x4f\xfd\x62\x59\xe7\x58\xda\x6a\x8e\x01\x0f\x1e\x46\x09\x34\x8a\x7d\xe7\xd3\xb5\xfe\x67\x8c\x51\x08\xa8\x7a\x45\x09\x56\x1e\x19\x67\x57\xf6\xe7\xbd\xeb\xbb\xf3\xe4\xa9\xed\x55\xfa\xf4\x56\xae\x6e\xf6\x0a\xbc\x91\x68\xdc\x53\x06\x06\x65\x38\x54\xbe\x36\x79\xa5\xed\xd2\x62\x65\x86\x10\xa7\xf0\x7a\x5d\xbe\x93\x7f\x5b\xda\x57\x95\x3f\x21\x44\xb7\xb9\xe1\xff\xa5\x32\x55\x81\x21\xb0\x8e\xf0\xbe\xc1\x58\x4f\x24\x81\x0d\x09\x57\xc5\x6a\xe3\x13\xda\x0f\x6f\x8c\x06\x0c\x68\x84\xc5\x59\x3f\xff\x2f\xff\xef\xf5\xc9\x2b\xdf\xbf\x36\x7d\x63\x95\x9a\x89\x01\x33\xc3\x6a\x8b\xf4\x8a\x00\x99\xdc\x95\xd9\x7c\x3e\x07\x52\xf7\x36\xe9\xe3\xcf\xa3\x5c\x79\xd8\xae\xfa\xa3\x2b\x68\x88\xf1\x3e\xef\x73\x97\x41\x3c\x97\xd5\xd1\x77\xe5\x4d\xf9\xb7\xc5\x71\x9e\xb4\x75\xd1\xed\xb5\x38\xda\xd4\xcf\x26\x95\xa3\xc9\x6f\x53\xbe\x6d\xf4\x5d\xe5\xe9\x52\x90\xe7\x05\x2b\xe7\x72\x31\xf0\x62\xe4\x53\x76\xdd\x09\xbb\x03\xbb\xde\xc5\x9d\xf9\xe2\x76\x1c\xed\x5e\x98\xa7\x97\x9f\xba\xb7\xf5\xec\xcd\x7b\x5b\x9f\xba\x34\xed\x5d\xcf\x72\x35\x90\xc0\x86\x55\xd3\x50\xdd\x07\x64\xfd\x49\x2f\x8a\x22\x4a\x81\x5a\xc7\x45\x69\x6a\x80\x81\xbf\xc7\x4e\xfb\x14\xe2\x90\xac\x24\xd2\x7b\xe0\xc7\x02\xb6\x8d\x5c\x03\x72\xd6\xa9\x8b\x0a\x26\x92\x4e\x47\x4f\xde\x72\x03\xb0\xd2\x0a\x66\xb9\x32\xc7\xab\x44\xdf\x9e\xf7\xf4\x7b\xd3\xac\xf8\xf1\xa4\x5f\xdc\x3e\xeb\xe7\x77\x4e\x86\xc5\xe1\xe1\x68\xe5\xac\x31\xc1\xae\xa4\x06\x20\x03\x10\xd6\xd1\xc0\x8f\x02\x98\x48\x92\x3b\xb7\xb3\x26\xc0\xd0\x75\xc7\x13\xa9\xdf\x35\x9e\x4d\xfc\x99\x93\x3a\x4f\xca\x83\xef\x02\x92\x2c\x29\x94\x57\x1d\xa0\x54\xb4\x69\x4f\xab\x74\x6f\x91\x0e\x0f\x26\xbd\xbd\xbd\x79\x7a\x30\x5a\x26\xd7\x46\xcb\xf4\xb1\xd1\x52\x3d\x3d\xc8\x93\x27\xfc\x89\xb6\x06\x32\x04\xc8\x00\x50\x89\xeb\xac\xec\x5f\xfe\x5e\x81\x87\xb0\x16\x55\x6f\x15\x68\x71\xe1\x9b\x16\x93\x87\xd0\xbb\xa5\xfd\x81\x54\x6f\xeb\xeb\x60\x24\xf9\x63\xfe\xd2\x80\x86\x5a\x71\x3c\x80\x66\xe9\x29\x14\x8c\x0f\x47\xab\xff\xfd\x5f\x1f\x1f\xff\x4f\x1f\x5e\x58\xde\x5e\x25\x66\x0c\x58\xee\x32\xb2\xc0\x25\x87\x0a\xb8\x68\x80\x5a\xbd\xdb\x14\xb8\x40\x03\x4d\x93\xd2\x3f\xef\xa0\xbc\x4d\xe9\x4b\xb4\x5d\xf8\x35\x3d\xc7\xe2\x3f\x8f\xdc\x12\xef\x26\xdd\xfb\xa0\xfa\x73\x53\x7d\xed\x5d\x9b\xc5\xe5\x61\x08\x23\xf9\x35\x65\x42\x57\x34\xd9\xd5\x02\xd4\xc6\xb7\x4b\x1a\x9a\x78\x3a\xc7\xbf\x53\x7f\x05\x00\x7a\x34\x1a\xa9\xc9\x64\xa2\x59\xe7\xee\x3a\x54\xb7\x8b\x21\xb5\x66\x6a\x77\x48\x5d\x86\xe5\x21\x75\x43\xf6\xdb\x05\x80\xa1\xd2\xb0\xbb\xb3\x4c\x2f\x3f\x7e\xbf\x7f\xf3\xa9\xa3\xad\xe7\xae\x9e\x65\x8f\x0f\x72\x35\x8a\x75\x4c\xf5\x02\x97\x35\x33\x1f\xcb\xb9\xe9\x27\x24\x5d\xad\xa3\x6a\x1a\x70\xd5\xe3\x6c\x94\xa2\x9b\xb3\x3d\x62\xb8\xa3\x21\xe4\xd4\x85\x1f\x07\x2a\x2d\xd1\x01\x40\x87\xd1\x70\xf9\x6f\x6e\x10\x56\x1a\x60\x56\x28\x33\x5e\x27\xe6\x68\x99\xea\xdb\xf3\x9e\xfe\xe0\xac\x9f\xff\x64\xd2\x2f\xee\x4c\xb2\xe2\xf0\x74\x2b\x3f\x3a\x1e\xe6\x93\x49\x09\x64\x1c\x50\xf1\x80\x86\x82\x19\x32\xc5\xe8\x00\x8b\xaf\x6f\x14\xb8\xc4\xb6\x5a\x03\xa9\x9f\x4d\x8b\xae\x1b\xc2\x77\xb1\x84\x48\xbc\x7d\x5d\x97\xac\x41\x52\x38\x6a\x25\x21\x8e\x2f\xbe\xa5\x6d\x46\x02\x2d\x81\x65\x85\x84\x49\x13\x8d\xe9\xee\x22\xc9\x2e\x4d\x7b\x7b\xbb\x8b\xf4\x60\x7b\x95\x5c\xd9\x59\x26\xd7\x47\xcb\xe4\xb1\xc1\x5a\x5d\xef\xe7\xea\x5a\x5a\xe0\x95\xc4\xe0\x48\x19\x18\x7a\xb0\x52\x4b\x73\x65\x61\xa1\x03\x81\x6e\xd8\x8c\x32\x82\x72\x6a\xd7\xd4\xf3\x85\xc7\x53\x59\x43\xc3\x32\x93\xd6\xa8\x75\x97\x25\x8e\xce\x69\x9c\x31\xe6\x41\xfc\x76\xf0\x00\x50\x1f\x04\x00\x18\xbd\x4c\xf5\x07\xb7\x2e\x2e\xfe\xe7\xd7\x1e\x3b\xfb\x87\xa3\xed\xf5\x9d\x1c\x0d\xdd\x22\xbd\x02\x00\x8d\xe4\xda\x8d\x97\x5f\x7e\x59\xff\xd6\x6f\xfd\x96\xfa\xfa\xd7\xbf\x0e\xf3\xf9\x9c\x4a\x20\x01\x5b\x49\xa7\x70\xda\x26\x00\x23\x85\x6d\x72\x6d\xa0\x4a\x7a\xe6\x61\x63\xba\xb0\x29\xce\xae\x60\x62\x13\xab\x4a\x53\xba\xda\x68\xda\x5c\x53\x39\x48\xba\x95\xc7\x53\x0b\xcf\xeb\x63\x57\xd0\x11\x8b\x78\x13\xb4\x16\x73\x9b\x58\x77\xa8\x3c\xd4\x35\xc5\xd9\x06\x60\xce\x6b\x45\xa2\xb2\x44\x2b\xe5\xce\xce\x8e\x3a\x3b\x3b\xd3\x00\x8d\xd6\x97\x14\x2a\x00\x13\xdc\x6f\x04\xe1\x94\xd1\x08\x00\x46\x68\x60\x38\x5a\x26\x97\x1f\x3d\xed\x3f\x7e\xf3\xde\xd6\x73\x8f\x9c\xf6\x6f\x6e\xaf\xd5\xae\x32\xd5\xc8\x34\xda\xb9\x81\x30\xc2\x0a\x4c\xd8\x8c\x26\x02\x70\xba\x82\x80\x98\x0b\xaf\x13\xa8\x0e\xc5\x03\xe4\x9d\x5f\xdd\xd2\x12\x8b\x53\x92\x69\x93\xb3\x5f\x5a\xad\x49\xf6\x9f\x98\xd2\x72\x9d\xb5\x01\x58\x19\x84\x85\x46\x33\xc9\x95\x39\x59\x25\xe6\x70\xd9\xd3\x77\xa6\x59\x71\xfb\xac\x5f\x7c\x34\xed\x17\x87\x8b\x54\x1f\xcf\x7a\xc5\xf8\x6c\x50\x9c\x9c\x6c\xe5\xb3\x45\x4f\x8b\xe7\xc4\x58\xd6\x01\x80\x11\xd6\xc6\x04\x75\x35\xb2\x4b\x29\x5a\x9f\xd9\x14\x8c\xb8\xc3\xc9\xd1\x75\xb0\xa0\xf8\xf6\xd9\x40\xaf\x18\xa0\x91\x76\x01\x29\xe1\x59\x02\x29\x40\x01\x0b\x1a\x50\x59\x8e\xd9\xde\x3c\x1d\x5c\x98\xf7\xf6\x86\x6b\xb5\x3f\x58\xab\xfd\xd1\x2a\xbd\xb2\xbb\x48\x1e\x1d\xae\x93\x6b\xfd\x1c\xaf\xf5\x0a\x75\x25\xd1\xb0\xab\x0c\x0e\xd1\xc0\x10\x01\xed\x59\x49\xb2\x75\xa2\x96\x17\xf6\x6f\x8c\xa6\x56\xaf\x98\x75\x90\x5a\x2e\xb0\xcc\x08\xa0\x67\xad\x48\xd6\x9d\xaa\x6e\x47\xd0\x82\x8f\xcb\x1e\x36\x67\xe9\x24\xeb\x0f\x97\x93\x4f\x63\xb9\x21\x8a\xa1\x29\xa5\x56\x16\x9a\x30\xd7\xc2\x8c\x0d\xe7\xad\x2f\x06\x0c\x40\x3e\xed\x17\xdf\x7d\xeb\xca\xec\x7f\xf9\xde\x23\x93\xff\x72\x36\x28\x0e\x0d\x82\xdb\x65\xe4\xa6\x8d\x3c\x78\xa1\x3b\xe9\x76\x77\x77\xd5\x78\x3c\xee\xaa\x30\x37\xb1\x50\xc4\x9e\x37\x0d\xb7\x89\x2c\x9b\xca\x17\xfb\xb6\x89\xa1\xe1\x61\x58\x6d\x9a\x80\xe1\xa6\xe0\x49\x0a\x2b\xc5\x53\x93\x8b\x2f\xce\x6d\x1c\xa9\xb1\x77\xc7\x48\x37\xd0\x52\xff\xf3\x66\x30\x7f\xe7\xe0\x40\x42\x64\x5d\x50\x6c\xac\x00\xbb\xe4\x41\x4c\xe6\x18\x5f\x1f\xde\x81\x16\x80\xd2\x0c\x6a\xc1\x8b\xb6\x9d\xad\x06\x00\xb0\x8d\x56\x9a\x06\x90\xe4\xd4\x06\x41\x4f\xfa\x85\x7e\x7f\x6f\x91\xaf\x12\xb3\x5a\xa6\x7a\x71\xe3\xa4\xff\xf4\xee\x22\x3d\x48\xdc\x71\xe2\x91\x1e\x55\x04\x1b\x58\x75\x78\x74\x48\x69\x28\x1f\x36\x12\xf3\x7f\xc5\x51\x5b\x5d\x61\x79\x32\x4e\x8f\x00\xc8\x7b\xe9\xc0\xb2\x53\xef\xf1\xe9\x74\x7f\x74\xab\x73\x47\x27\x82\x16\xd6\x41\xd3\x5b\x73\xe9\x35\xa5\xf5\xbd\x1b\x00\x06\x50\x29\x3b\xdd\x97\x18\xb5\x97\x6a\xb8\xde\x2f\xcc\xcd\xed\x55\x32\xdb\x9b\xa7\xe3\x5c\x99\x93\x5c\x99\xa3\x65\xaa\x8f\x16\x3d\x7d\x34\xe9\x17\x1f\x8f\xfb\xf9\xd1\x34\xd3\x47\xab\x54\x9f\xcc\x7a\x7a\x7c\xd6\xcf\x27\xb3\xac\x58\xad\x12\x93\x9b\xca\x32\xa3\x01\xc2\xb3\x61\xb0\xe1\xe0\x3b\x01\x80\xf0\x45\xc0\x8e\x8e\x02\x86\xa6\x51\x59\xa7\x29\x20\x36\x6d\xe3\xe9\x5d\x78\x0a\x44\x88\xe3\x16\x49\xfa\xac\x62\xcf\x4a\x83\xca\x72\x95\x6d\xaf\x92\xc1\x68\x95\x0c\x07\x6b\xb5\xdb\xcf\xd5\xee\x70\xad\xf6\x77\x17\xe9\x95\xdd\x45\xfa\xc8\x60\xad\xae\xf4\x73\x3c\x48\x35\x1e\x94\x6b\x55\x70\xa4\x0c\x0c\xca\x8b\x0d\x9d\x75\xc8\xd5\xb4\xea\xc0\xc6\xd8\x76\x5f\x0a\x5c\x01\xc8\xb1\xf8\x7c\x3a\xc5\x83\x8f\xfa\x7a\x2b\xca\xda\x81\x96\x32\xa0\x3d\xed\x1a\xc1\xef\xe4\xe1\x5b\xfb\x91\x37\x44\x22\xb7\x5b\xa0\x5f\x35\x17\x4a\xc7\x6b\xab\x21\x03\x85\x6a\xdd\x8a\x0b\x57\xd5\x7d\x5a\xe1\x99\x3c\xd5\x3f\x36\x5e\x7e\xdf\x12\x02\x02\xa4\x5b\xab\xe4\xb9\x4f\x1c\x0f\x7e\x79\xdc\xcf\x8f\xdf\x3e\x98\x2f\x66\x7d\xed\x36\x28\xe4\x50\x0e\xd8\x72\x52\x6f\x7c\x1d\x1e\x0c\x06\x30\x1e\x8f\x01\x36\x1f\x10\xc7\x74\x49\x93\xbe\x72\x7f\x37\x19\xb4\x36\x0d\x90\xbb\xba\x87\x01\x96\x9a\x40\x41\xd7\xf4\xb4\x81\xab\x98\x3e\x8d\xc9\xb3\x49\x1e\x4a\xfd\x41\x50\x66\x1c\xb8\x6c\x8a\xe2\x24\xab\x85\x64\x0e\x73\xcf\x52\x86\xc6\x80\x43\xdb\x77\x2e\x33\x7f\xe6\xae\xcd\xbf\x0d\xdd\x36\xf1\xa1\xb2\xb6\xa5\x31\x88\xc7\x75\xfa\x82\x79\x3e\x77\x7c\x4c\xfd\x56\x62\xaa\xbc\x72\x00\xd0\x1a\x4c\x3e\xcb\xb4\xfe\xf0\xc2\x72\xb9\x4c\x8b\xc5\x22\xd5\xb3\xc7\xef\x0f\x9e\xbd\x38\x4f\xaf\x65\x85\xca\x9a\xd4\x78\x00\x5e\x82\x8e\x98\x74\x42\xdc\xec\xcc\xd9\x39\x06\xd2\xc8\x50\x50\x6a\x75\x4b\x86\x87\x25\x9e\x00\x39\xb5\x43\x4e\x54\x60\xd2\x33\x52\x19\xeb\xa2\xf2\x00\x5c\xf0\xb8\x8f\xd4\x01\x4b\xe9\xf0\xa6\xf3\x50\x2c\x1e\x52\x81\xc1\x61\x6a\x60\x68\x0c\x1e\xf4\x8a\x72\x6d\xcc\x70\x95\x2c\x0c\x9a\x59\xa1\x60\x52\x94\x6b\x64\x0e\x97\xa9\x39\x9c\x66\xc5\xe1\x78\x90\xdf\x9d\xf4\x8b\xf1\xbc\x57\x8c\xd7\x89\x99\xac\x95\x99\xac\x52\x3d\x9b\xf7\xf4\x62\x91\xea\xd5\x32\xd5\x39\x99\x6a\x02\xa8\x5b\x67\x00\xab\x7b\x61\x00\x98\x75\x26\xb6\x98\xd7\x85\x91\x1c\x05\x2b\x6d\x0b\x69\x49\x1d\xa7\xf4\x7c\xab\xb8\xf7\x03\xa8\x6e\x59\xb6\xdf\x3c\x40\x41\x40\xa5\x34\x40\xaf\xc0\x74\x90\xa7\xd9\xd6\x5a\x0d\x07\x6b\x35\xec\x69\x1c\xf5\x72\x35\x1a\xae\xd5\xde\xce\x22\xdd\xdb\x59\x26\x97\x87\x6b\x75\xd0\xcf\xd5\x7e\xaf\x50\x57\x7a\x05\xee\x2b\x03\xbb\xca\xe0\x08\x0d\x0c\xb0\xb4\x62\x2a\x64\x35\xa5\x04\x16\xe5\xbf\x00\x58\x29\x7d\x11\xb4\x84\xc0\xc3\xb8\x7f\x05\x60\x5d\xd5\x3e\xbb\xc6\xac\x4c\x58\x00\xb4\x5d\xfd\x46\x10\xea\x72\x7d\x3a\xcd\x02\x19\x64\x6d\x16\x02\x40\x51\x2b\x13\xe7\xcb\xc3\x40\x28\xb3\xd4\x4c\xe8\xa0\xc5\x54\x82\x75\x9e\x92\x72\x79\x96\x00\x8e\x2e\x2c\xd2\xe7\x9f\x3e\x1a\xde\x99\x65\x7a\xfc\x93\xbd\xc5\x62\xd9\x83\xdc\x18\x93\x92\x7e\x50\xd9\xfe\x4e\x19\x63\xb4\xdb\x55\x06\x21\x58\x8d\xf5\xc5\x00\x72\xff\xdb\xd5\x9a\x1e\x03\x37\x9c\x37\x8f\x87\x87\xe5\xa0\x9b\xb7\x4b\x09\xd4\x68\x46\x1b\x03\x3e\x92\x2c\x31\xc7\xe3\xe6\x00\x41\xd2\xd3\x12\x3d\x97\xb3\x49\xae\x98\x61\x83\xa7\x8d\xd3\xc7\xf2\x38\xe0\x1f\xdb\x0e\x1d\x03\x0f\x5d\x2a\x40\x1b\x5a\x6c\x43\xb3\x6d\x40\xa6\x29\xbe\x2e\x99\x1b\xab\x2c\x6d\x88\xbd\x0b\x28\xa2\xb2\xc6\x2a\x7f\xc0\x83\x6e\xfb\x74\xd6\x17\xf7\x6e\x2d\x2f\xa9\xb3\xc0\xf0\x75\x09\x50\x8d\xb2\xbd\x69\x75\x99\xea\xfc\xe3\x9d\x55\xbe\x48\xf5\x62\xd6\x2b\x66\x4f\x1e\x6f\x3d\x77\x75\x92\xdd\xc8\x72\x1c\x86\x23\x27\xcb\x07\x98\x3a\xa7\xc0\xc3\x6b\xdf\x86\x7b\x89\x9c\x3f\x19\x92\x52\x33\x78\x94\x1e\xd8\xe8\xbe\x8a\x1e\xc0\x2b\x0e\x08\x3b\x4c\x49\x36\xe2\xe8\x08\xb7\x4e\x52\xc9\x16\x8e\x4e\x09\x0e\x0a\x06\xaf\x52\x2e\x09\xfc\x85\x4c\x71\x69\xa3\x23\xd1\x1a\x90\xf2\x7e\x98\x22\x40\xaa\x0c\x0c\xc1\xe0\x7e\xaa\x01\x00\x4c\xbe\x85\x6a\xa1\x01\x66\xfb\x98\xce\xb4\xea\x9f\xe4\xca\x8c\xf3\x44\x1f\xaf\x95\x39\x59\xa6\xfa\x78\x96\xe9\x7b\x67\xfd\xfc\xf8\xac\x5f\x8c\xa7\xfd\x62\xbc\x4a\xcc\xac\x50\x66\x51\xa0\x59\xad\x13\xb3\x58\x27\x26\xcf\x95\x59\xe5\xca\xe8\x3c\xd1\xba\x20\x60\x97\x4c\x1f\x6a\x0a\x28\x40\x68\x3f\x31\x50\x12\xb3\xd4\x70\x30\x42\x2d\x2e\x84\x46\x91\x78\x95\xfb\x06\x16\xb0\x28\x0d\x2a\x2d\x30\x4d\xb5\x52\x69\x81\x59\x56\xa8\xb4\x57\xe0\x20\xd5\x38\x48\x74\xf9\x77\xb8\x56\xc3\xed\x65\xba\x7b\x61\x91\xec\x6f\xaf\x92\xcb\x83\xb5\x3a\xe8\x15\x6a\xbf\xa7\x71\x3f\xd1\xb8\x97\x68\x18\x21\xc0\x10\x0d\x0e\xd1\x60\x86\x06\xb2\x12\x20\x90\x7a\x4a\xde\x28\xb0\x00\x13\xd6\x31\x4a\xe3\x3c\x10\x01\x02\x53\x9f\xa3\x71\x16\x4a\x63\x01\xaf\xaf\x54\x95\x35\x26\x98\x86\xb5\x56\x11\x17\xd6\x9f\x7f\xcb\x80\x78\x6d\x00\x80\x4e\xce\x72\x1a\x28\x06\xda\x89\xc8\xe5\xb7\x18\x7e\x77\xdf\xed\x3f\x55\x0b\xa4\x2d\xb2\x8a\x87\xd6\x7d\x32\x0d\x14\xf6\x30\x16\x8d\x39\xe0\xef\x00\x18\x80\x81\xb4\x50\x57\x2e\x4f\x7b\x5f\x78\xea\x68\xeb\x70\xd1\xd3\x27\x77\x76\x56\xab\x3c\x29\xaf\x01\x70\xf5\x00\x08\x78\x81\xb8\xc2\xef\x32\x70\x6d\xb2\x3c\x48\xfa\x28\x06\x42\x62\xfd\x78\x1b\x4d\xcc\x5a\xc1\x01\x4e\x0c\x48\xd0\x6f\x4d\xbc\x25\xfd\xdc\x14\x6f\xdb\x20\xdc\xd1\xc4\x74\x74\x0c\xd0\xb4\x81\x2d\xc9\xb5\x01\xc0\x20\x4f\x90\x7d\x68\x02\x12\x92\xd5\xa1\xc9\x0c\xd5\x66\xc1\xd8\xe4\x5b\x13\x42\x6c\xe3\xd1\x66\x2a\xeb\x6a\x5d\xfa\x69\xb9\x20\x7e\xe1\x56\x69\xfa\xcb\x80\xec\x38\xb2\xbb\x8d\x86\x10\x6e\x9b\x1e\x01\xc0\x10\x35\x8c\xb6\xd7\xc9\xa5\x47\x4f\xb2\x1b\xcf\xde\xdd\xfe\xb9\x6b\x67\xd9\x13\x83\xb5\x1a\x29\xc3\x47\x99\x20\x2a\x5f\x37\x3a\x92\x16\x54\x56\x61\xc8\x55\x03\xc0\x78\x74\x00\x08\x01\x34\xf0\x71\xb9\x4e\xbc\x0a\x44\xc3\x39\xa3\x8b\x1c\x89\xed\x24\x09\x70\xea\xec\x9a\x50\x19\x4b\x5b\x35\x62\x86\x60\xc4\xdc\x1a\x5f\xcd\x94\x53\xe7\x5d\xd3\x92\x65\x1c\xda\x20\x68\x40\xb3\x32\x00\x2b\x83\x66\xa1\x11\x66\x1a\x61\xe2\xa6\x9a\xd6\x89\x3e\x59\x25\xe6\x78\x95\xea\xd3\x59\x4f\x8f\xe7\x59\x31\x99\xf5\xf4\x6c\xde\xd3\xb3\x79\xaf\x58\xac\xd2\xf2\xb6\x6b\x8d\x66\x65\xaf\x34\xc8\x35\x82\xd6\xca\xfe\x05\xa3\x0d\x82\xd6\x68\x40\x23\x68\x83\x00\x06\x8d\xb6\x62\x68\x2a\x6e\x9b\x23\xc9\x51\x68\x50\x29\x03\x50\xfe\x50\x21\x94\xeb\x4e\xac\xbf\x4a\x0c\x2a\xa5\x31\x53\x06\x52\x55\x02\x8c\xb4\x5f\x60\x36\x58\xab\xc1\x60\x9d\x0c\x86\x6b\x35\x1a\x2d\x93\xdd\xe1\x3a\xd9\x1b\xac\xd5\xc5\x5e\x81\xbb\xa9\x56\x7b\xa9\xc6\xdd\x44\xc3\x7e\xa2\x71\x57\x81\xb5\xa2\x98\x72\x3d\x18\x96\x60\x30\x98\x88\xa9\xb2\x55\x3e\xe2\xbe\x5a\x03\x16\xd2\x7b\x1a\xdb\x06\x6a\xf7\x04\xb9\xba\xcc\x41\x86\xa3\x61\x20\xa8\xdd\xc2\x47\xde\xa4\x7a\x2c\x2c\xa4\xaa\xad\x95\x71\x96\x20\x0c\xd3\xea\x28\x82\x83\x27\x21\xac\x72\xb5\xf6\x68\xdf\xa9\xf8\xbe\x0d\xd6\xda\x38\x87\x2e\xe4\x5f\xc6\xc8\x18\x03\x46\xc1\x62\x92\x15\xff\xe5\xad\x2b\xb3\xff\xf5\x8d\x6b\xd3\x6f\xdd\x1f\xe6\x47\x00\xe5\x7a\x17\x28\x6f\x8f\x0e\x4e\xd4\x35\x26\xb8\x0e\x20\x36\x42\x6f\x53\x7c\x5d\x2d\x35\x40\xde\x63\x4e\x02\x20\x4d\x72\x74\xa5\xe1\xb4\x9b\xa6\xa1\x4d\xee\x2e\xbc\x9b\xe4\x06\x46\xd3\x55\x87\xb6\xa5\xa1\x73\x7a\x9d\xc5\xa5\x29\xf2\x18\x72\x73\x48\xac\x2d\x1c\xa5\xdf\xc4\x04\xd5\x05\x3d\x4a\x19\xc9\xe9\x38\xbf\xb6\x4a\xd4\xe4\xef\xbe\x51\xde\x4d\x68\x5a\x42\xc9\x12\x2a\x57\x00\x00\xbf\xfa\xab\xbf\x0a\x2f\xbf\xfc\xb2\x3b\x84\x4b\x1a\xed\xae\x4c\xb8\x56\x81\x8e\xa2\xc3\xe3\xe5\x15\xe8\x49\x56\xe8\x77\x0e\x16\xd3\x45\xcf\x2c\x16\x87\xc3\xc5\xa3\xa7\xfd\x9b\xa3\x55\xb2\x97\x68\x93\xd2\xa9\x19\xbf\x58\x8f\xf4\x80\x7e\xf4\x08\x15\x60\xa1\x9d\x19\xda\xde\x38\xec\x94\x89\x43\x08\x00\x4f\x13\x68\xa1\x71\xb8\xe1\x6c\x30\xc2\x2d\x23\xf7\xfe\x41\x24\xc1\xab\x6c\xe1\x08\xd8\x48\xe2\x7a\x99\x84\x8e\x9e\x03\x2c\x20\x0a\x8a\x5a\x17\x02\x51\x43\x2d\x46\x2d\x46\x4d\xe2\x07\x7e\x58\xa5\x1f\xb1\x3c\x5f\x04\x0c\xa6\x00\x30\x74\x0b\x6b\x0c\x80\xee\x03\x68\x03\x26\x37\x90\xe4\x06\x61\x01\xe5\x22\xe0\x95\x01\x58\x68\x65\xc6\x05\xc2\xb8\x50\x66\x6c\x2d\x36\x93\xb5\x82\xf1\x5a\xe9\xf9\x3a\x29\xa7\x9b\x96\xa9\x5e\xac\x12\xb3\xca\x13\xb3\x5a\x25\x26\x5f\x25\x7a\xb5\x4e\x74\xbe\x4e\x4c\x5e\xa0\xd1\x76\x0a\x0a\x00\x00\x34\x80\x36\x68\xa4\xb6\x4e\xc4\x2f\x01\x89\x13\x30\xd5\x98\x66\x05\xa6\xd6\x6a\x92\xa6\x1a\xb3\x54\x63\x9a\x16\x98\xf6\x0a\x35\x18\xe4\x38\x18\xac\x93\xdd\x2c\x57\x17\x7a\x1a\x77\x53\x8d\xc3\x44\xc3\x28\x31\x38\x4a\x34\xee\x2a\x8d\xbb\xe5\xce\x1e\x1c\xba\x29\x1e\x34\x90\x22\xd8\xa3\x03\x0c\x28\x9f\x1b\x7c\xaa\x0b\x00\xc0\xb8\x1b\xcf\xad\x74\xae\x8c\xca\x82\x12\xa6\xbb\xec\x3b\x29\x74\x67\x29\xa8\xd5\x59\x57\x4e\xa6\xe2\x5f\xd1\x84\x77\x02\xf1\x02\xa6\xbc\x28\xc8\x01\xc4\xc0\x2a\xe2\x79\x39\xe9\xb9\xa5\x0b\xa1\x5a\x8b\x56\x49\x6f\xff\x8f\x36\xcc\x80\x4f\x05\x4a\x28\x9f\x8a\x9f\xa1\x02\xd3\xb6\x15\xe2\x27\x1f\xa6\x6a\x17\xac\x6d\x10\xfa\x72\xf1\xbd\xc9\x06\xb9\x7a\xfc\xca\xa4\xf7\xd4\xed\x79\xfa\xc6\xfd\x61\x7e\x02\xe0\x0f\xff\x73\x96\x17\x5f\xdf\x22\x87\x25\x76\x05\x2a\x5d\x67\x04\x80\x85\x95\xe8\x62\x3a\x49\xe2\xcb\xc3\xd2\x70\x9b\x0c\xfc\x25\xeb\x4c\x93\x35\x25\xe6\x2f\xc5\x21\xe9\xa3\x36\x70\x27\xfd\x6d\xd3\xa3\x5d\xf3\x8a\xf2\xa4\x32\xf9\x77\x6c\x10\xb2\x89\xf9\x26\x48\x31\xf6\xde\x85\x4f\x8c\x96\xbe\xb7\xc9\xdb\x45\xbe\x36\xff\xf3\xba\x4d\x11\xa9\x77\x31\xcb\x8b\x71\x37\xd2\xd6\x0f\xaa\xf3\xbb\x8e\x8c\x31\x43\x6b\x89\x19\x41\xb9\x9d\x73\x74\x69\xda\xbb\xfa\xc9\xc3\xe1\xa7\x9e\x38\x1e\x3c\x77\x61\x9e\x5e\xe9\x05\x97\x34\x82\xd7\x92\xc1\x08\xcf\x2d\xca\xed\xb0\x7b\xa4\xdc\x0d\xd1\x80\x18\xa0\xd6\x5f\xc6\xe9\x00\xc4\xc5\x90\x12\x93\x1a\x99\x30\x92\x94\x9f\x3a\xc8\x10\xf3\x0c\xb6\x82\x76\x48\x53\x93\x90\x8d\xc1\xe8\x08\x36\xbe\x1b\x2a\x94\x81\xa4\xd5\x80\x06\x04\x6d\x00\x34\x94\x5b\xb4\x35\x00\xac\x4c\x79\x68\x5e\x79\xc9\x5d\xe9\x6f\x2d\x38\x66\x61\xd0\xcc\x34\xc2\xc2\x20\xac\x0c\x5a\x50\x84\xf6\xf0\xbc\x92\x6b\x6e\x10\x72\x4d\x06\x2e\x56\x45\x59\x10\x51\x02\x0a\x04\x00\x2c\xad\x28\x03\x34\x90\xd9\xbf\x03\xb7\x10\x56\x39\xeb\x88\x9b\xc6\x01\x18\xa0\x71\x67\x18\x95\x96\x19\x9b\xa0\x54\x48\x9a\x7f\x0d\x55\x66\x53\x4e\x86\x6b\x47\xa4\x12\x88\x5a\x3e\x1a\xf8\x32\x13\x60\xab\x6b\xac\xdb\x2c\x66\xc9\x40\x87\x91\xfa\x5f\x03\xd7\x34\x5c\xcc\x1a\x44\xe9\x82\x76\x13\x4e\x0b\x75\xc9\x97\xc6\x76\x60\xdc\xc4\x13\x25\x32\x3a\x57\x66\x3c\x1e\xe4\xaf\xbd\xb7\xbf\xfc\x3f\xde\xbc\x32\xfd\xf6\xdd\x9d\xf5\x21\x44\x2e\x61\x74\xdb\xff\x23\x16\x97\x36\xc5\x19\x73\x31\x80\x03\x02\xef\x58\xb8\x26\x7e\x12\x9f\x87\xa9\x7b\x24\x5d\xd8\xa4\x1f\x7f\x5a\xfa\x6d\x53\xff\x4d\x0c\x05\xa2\x4b\x1b\x08\x39\x02\x72\xae\x0d\xd5\x02\x74\x13\x42\xb2\x90\x74\xb1\xc0\x6c\x02\x58\x62\x05\xda\xe4\xdf\x25\xf3\xba\x66\x74\x0c\x91\xb6\x59\x74\xa2\x5b\x5b\xad\xdf\x8a\xc8\x5b\xb3\xba\x20\xbd\x6d\x15\x8c\x06\x44\x7d\xb4\xbd\xca\xe7\x8f\x16\x8b\x49\xbf\x18\x3f\x73\x77\xeb\xe7\x0e\xa6\xd9\x8d\x2c\xc7\x01\x80\xb1\x1d\x69\xdd\x72\x50\xf5\x5a\xc2\x02\x3c\xd6\x7f\x05\x6b\x55\x22\x67\x7a\x50\xf3\x72\x6d\x7b\x36\x1f\x35\x06\xb4\x42\xa7\x68\xbf\xd5\x3a\x54\x2a\x13\xd4\x5d\x3d\x3e\x86\x74\x2c\x51\x78\x44\x7a\x18\x3f\x37\xdf\x07\xb0\xc8\xa0\x7c\x8e\x05\x99\x32\xa8\x14\x02\x51\xba\x82\x3e\x08\xae\x4e\x20\x91\x8a\x23\x7f\x2e\x4b\x19\x87\x32\x06\x54\x69\x92\xc0\xcc\xcb\x60\xa8\x35\x87\x28\xa8\x12\xe8\x00\x94\x40\x87\x72\x16\xea\xb8\xd1\xe4\xbb\xd4\x57\xd4\xfd\x0c\x28\x1b\x44\x95\xd3\x79\x6c\x21\x2b\x27\x67\xd3\x87\x2e\xef\x02\x1d\x18\xe4\x0b\x53\xb8\xd4\x42\x68\x48\x59\x00\x40\x35\x8d\x51\x01\xc2\xd0\x1a\x58\x57\xdc\xc1\x42\x5a\x17\x97\x53\xc9\x86\xe4\x97\x25\x46\x82\x16\x68\x9d\xb0\x89\x2b\x43\x22\xf8\xf0\x41\x59\x10\x79\x5c\xa2\x83\x75\x35\xfc\x10\xa3\x40\x76\x08\xd3\xec\xeb\x9c\xcb\x1f\x76\xf2\x6e\x0d\x88\x4b\x79\xe8\xf2\x09\x83\x7c\x76\x19\xe7\x69\x6c\x79\x18\x52\xa9\x4a\x2b\x92\xb1\x79\x60\xc0\x20\xe8\x55\x62\x8e\xee\x8e\x56\xdf\xfa\xe1\xe5\xd9\xff\x75\xeb\xe2\xe2\xcd\xb3\x41\x31\x23\x8b\xb8\x7d\xdd\x21\x3b\x2d\xbd\x05\xb7\x83\x6b\x1b\x08\x37\x59\xbe\xf9\xe8\x5e\xe2\xd9\xa5\x0f\x07\xa8\xf7\xff\xf4\xb9\xf3\xb4\x48\x0b\x4d\x0c\x00\x74\x71\x51\xfd\x73\x0e\x1a\x27\x4b\x17\x1d\xc7\x5d\x53\x5a\x44\x19\xe8\x25\x8b\xdc\x99\xc8\x8f\x7e\xa7\xcf\x8e\xb9\x61\x7e\x28\x08\xee\x5a\x0d\xe5\xd9\xb5\xb2\x21\x84\x71\xc7\x64\x57\x82\x8c\x34\x2e\xc3\xfc\x55\x03\x0d\x97\x85\xf3\x8b\xc9\xec\x64\x75\xbc\x10\xc2\xfc\xe0\x69\xf1\xe9\xcc\xb2\x0c\xfe\xe6\x6f\xfe\x46\xbb\xcb\x19\xed\x77\x9e\xbf\xc6\x82\x95\x02\x00\x8c\xfd\xab\x01\xc0\xfd\x75\xdf\x0a\x40\x34\xeb\xd4\xe4\xf7\xb6\xd7\xa7\x67\x83\xe2\x7e\x62\xa0\x18\xe4\xc9\xa0\xa7\xd5\x40\x11\x3b\x78\x6d\x44\x68\xfb\x47\x0f\x26\x5c\xe4\x4c\x39\xbb\xe7\x92\xce\x76\x71\x82\x79\xdd\xc5\x51\x9b\xf6\x91\xe6\xed\x91\x7c\x72\xf2\x79\xd3\x3e\x57\xe0\x0c\xc2\x04\x1f\x05\xcd\xe8\x81\x16\x99\x96\xa2\xf1\x61\x8d\x94\xe8\xa5\x2a\x5d\x6e\xa1\xa2\xeb\xf0\x9d\x22\x0a\x82\xd8\xb4\x54\x0b\x96\x1d\x1d\x06\x34\xd4\x49\xf9\x56\x7b\x24\x35\xaa\x7a\x0c\x35\x24\x4a\xe1\xac\x3c\x5e\x09\x57\xb4\xce\x5b\xa1\xb5\x7a\xd8\x5f\x02\x00\x09\x06\xbf\x72\x51\xb1\xfd\x05\xdf\xc0\x5d\x58\x08\x76\x3d\x0b\x96\xd6\x42\x5f\x2d\x9c\xe8\x88\x7e\x2d\x13\xb7\x08\xf8\xfc\x8c\x94\x07\x2d\x93\x5a\xda\x7d\x18\xb4\xbc\xcb\x48\xd0\x17\x16\xad\x9b\xae\x1e\xb0\xfc\x62\xa0\xa5\x9e\x97\x0e\x50\x55\xbc\x1d\xfb\x52\x3e\x52\x1f\x6d\x82\x82\x35\x23\x84\xde\xbd\xd3\x38\x5c\x9d\xf0\xc0\x81\xd0\x56\xdb\x95\x85\x93\x6a\x4d\x55\x27\x5d\x39\x57\x7c\xd1\xc7\x55\xd1\x62\xd5\xa6\x4c\x48\x6f\x20\xcc\xa7\x6a\x61\xae\x23\xb2\xe9\xf6\xf5\xd8\x2e\x77\xb6\x05\x56\x2f\x03\x00\xad\x60\x75\x3a\xc8\xdf\xfd\xe1\x95\xd9\xdf\xbf\x76\xe3\xec\x9b\xef\x5f\x5c\xfc\x64\xde\xd3\x13\xb0\x67\xb8\x00\xc0\xda\xf6\x59\xf4\x1c\xa3\x32\x1b\x11\xe1\xe8\xe8\x08\x4f\x4f\x4f\x69\x5f\xea\x8a\x8f\xea\x0f\x57\xc5\x68\x5f\xee\xe8\xa9\x62\xe7\x7d\x6f\x95\x49\x61\x3f\x4d\xf5\x0f\xed\xee\xa8\xee\xe0\xe1\xb8\x0e\xa2\x32\x50\x39\xa4\x67\x60\x61\x8c\x10\x96\xa6\x9b\xea\x04\x60\xb4\x5c\x0f\xf3\x34\xf0\x1f\xa7\x91\xf4\x21\x97\x89\xa6\x57\xb3\x70\xc8\xbe\x71\x5d\xce\x65\xa4\xe5\xca\xd3\xeb\xe5\x68\xba\x64\xf1\x61\x4c\xc9\x3c\x0c\xcb\x45\x57\x1a\x1e\x6f\x17\x4b\x48\x13\xef\x58\xf8\x36\x34\x2a\xd1\x71\xa4\x1e\x8b\xc3\xd3\x7d\xfb\xdb\xdf\x06\x00\x00\x66\x79\xe1\xf1\xf9\x3b\x3d\x10\x71\x01\x82\x15\x06\xc2\x0e\x20\xcf\x95\xc9\x3f\xb8\xb0\x58\x4f\xb3\x62\x72\xb2\x95\x9f\xdc\xbc\xb7\xf5\xec\xfe\xac\x77\xbd\x57\xa8\x01\xed\x05\x90\x3c\xd0\xd6\x4d\xfd\x91\xfb\x8b\x4e\x9e\xe4\xa0\x7c\x2a\x4a\x5b\x8b\x51\xe0\xc7\xe4\xa8\x86\x94\x58\xe3\x21\xc5\x5a\x03\x02\x82\xdc\x2e\x6e\x1a\x48\xb6\xae\x54\x19\xe3\xc1\x08\x86\xf9\x56\x1b\x61\xd3\x67\x41\x10\x51\x3e\xe2\x49\x06\xb7\x61\xb3\x06\x96\x2f\x24\xa8\x1f\xf5\xc7\x12\x0f\x0e\x24\xc8\xbb\xbb\x62\x32\xf1\xb4\xd1\x30\xb5\xc4\x88\xe5\x06\x80\x48\xf6\xad\xf0\x74\x04\x40\x26\x3c\x00\xce\xfb\xd3\x3a\xe8\xa7\x34\x1d\x6f\xf0\x16\x06\x63\x15\x76\x70\x27\x96\x97\xa9\x12\x94\xe8\xf5\xfa\x73\x2d\x51\x10\xc8\x4d\x6a\x04\x9b\x6a\x95\x41\x0b\x9f\x2b\xa2\x6f\xdc\x12\x49\xd7\x50\xd5\xb4\x35\xdb\x66\x2e\x81\x2d\xee\xaa\x6f\x7c\xfa\xb7\xda\xfd\xe3\xe8\xfc\x62\xf7\xf2\x2b\x4d\xb0\x6d\x7e\xe8\xcb\xd7\xd7\x23\xc0\x00\x48\xb9\x3c\xd1\x60\x60\x95\xea\xc9\xdd\xd1\xfa\x87\x6f\x5c\x9d\xfe\xf3\xfb\x17\x97\x3f\x9a\xf7\x8a\x13\x8d\xb0\x22\x8b\x70\x6b\x23\x6f\x72\xbe\x95\x02\x00\x7d\xeb\xd6\xad\x26\x6b\x04\xb5\xb4\x4b\x16\x15\x4e\x0b\xc2\xf7\x18\x3f\x4e\x73\x5e\x2b\x4a\x9b\xc5\x27\x26\x93\xf4\xce\x5d\xcc\x12\x73\x1e\xf9\x9a\x5c\xcc\x52\x25\xc9\x11\xa3\xa3\xf1\xb5\x59\x75\xce\x65\x71\x71\x01\x91\xbc\x73\xc7\xbf\xc5\xe8\xb9\x55\x83\xff\xa5\x34\x9c\x77\x8c\x86\x02\x2c\x8a\x80\x25\xc4\xcb\xbf\x71\x04\xc8\xc3\xb4\x39\x09\x8d\xb6\x85\x6f\xca\x97\x9a\x7b\xed\xb5\xd7\x8c\xb5\xba\xb8\xf8\x78\x78\x7f\x35\xbc\x7d\xa7\x15\xc3\x9d\xc3\xe1\xac\x31\x00\xe5\x8e\x91\x62\xd1\xd3\xab\xd3\xad\x62\x3c\xe9\x17\x13\x34\xa0\xfb\xb9\xda\x4a\x35\x66\x58\xee\xe7\xb4\x23\x31\x86\x50\xdc\xa3\x00\x5a\x62\xdb\x31\xab\xf1\x58\x3d\x03\x98\x91\x85\xeb\xe3\x9a\x0b\xe0\xb8\xed\x11\xf9\x14\x92\xa7\x09\x3a\x59\x72\x55\x81\xeb\xdc\xc3\x7e\x58\x8e\x9b\x03\x28\x1f\xa6\x3a\x7c\xae\x96\x0f\x36\x5d\x08\x95\x39\x9d\xcb\x28\xa5\x55\x8c\x87\xc9\x87\x8c\x90\x0f\x9b\x98\xe8\xa5\x9c\xd2\x47\x26\x0b\xb7\x7e\x71\xd0\x12\x28\x42\xa2\x95\x03\x40\x11\x44\x1e\x82\x46\x9a\xc6\x4a\xb1\x62\x95\x47\x8c\x07\x05\x27\xc1\xa2\x6d\x08\xc1\x87\x03\x2d\xd4\x5a\x11\xaa\xd6\x2a\x6d\x54\x06\x09\xb4\x54\x33\x3d\x55\x3c\xa1\x43\xe1\x1b\x03\x3e\xc0\xf2\xce\xd6\x03\x9f\xbf\x0e\x68\x08\xa8\xb6\x0a\x8f\xf5\x7a\x07\x35\xf2\xca\xcf\x46\x14\xc6\x19\xba\x78\x5d\xa7\xb2\xd7\xeb\x80\xcf\x57\x9b\xe1\x15\x60\x02\x66\x41\x74\x65\x62\x65\x67\x60\xab\x50\x26\x3f\xeb\xe7\x87\xb7\xf6\x17\xdf\xfb\xee\xa3\x67\xff\xcf\x87\x17\x96\xef\x2d\x7a\xfa\xc4\x20\xcc\x00\x61\x0e\x00\x4b\x3b\xf0\x5a\x01\xc0\xda\x18\x53\x38\xeb\xb1\xef\xb7\x6c\x5f\xf6\xda\x6b\xaf\xd1\x6a\xaf\xc9\x5f\x00\x59\x6f\x48\xcf\xf5\xea\x10\xba\x2e\x3a\x47\x7a\xee\x1a\xbf\xd4\x8f\xf3\xf0\x9c\x37\xa5\x8f\xf9\x6f\x42\xdb\xe5\x39\x96\x36\x60\xb4\x4d\xf1\xc7\xf2\x84\x62\x01\xe7\xdf\x96\x2e\xef\xcf\x81\x4b\x4c\x81\xf2\x42\xe4\xf4\xfc\x5b\xac\x62\xc4\xc0\x04\x8f\x4b\x7a\xa7\x60\x88\xf3\xe4\x15\xcc\xf9\xd3\x0c\xe1\xe6\xb5\xa6\x77\xca\x8b\xa7\x21\x06\x80\x40\x78\x96\xc2\x49\xc0\x4a\xaa\xb0\x3e\xde\x8f\x3e\xfa\x08\x3f\xfe\xf8\x63\xf8\xc4\x27\x3e\x01\xc6\x18\x83\xe8\x37\x17\xd2\xb3\x31\x9c\xbf\x21\xcf\x6e\xcd\x4b\x61\x79\x95\xa3\x07\x0b\x5e\xd6\x89\xc9\xa7\x7d\x3d\x1b\x6f\x15\x67\xb9\x32\xcc\xb9\x50\xd3\x00\x00\x20\x00\x49\x44\x41\x54\xb3\xac\x50\xbd\xac\xc0\xad\x14\x54\x02\xe0\x94\x4b\xa5\x70\xa4\x8e\xd3\xd7\xb2\x88\x72\x34\x60\x6a\x00\x23\x50\x84\x2e\xbc\x1c\x5c\xa4\xf5\x61\x22\x80\xc0\x10\x8f\xc0\xb4\x4d\x3b\x70\xa2\x3b\x4c\xe8\x05\x56\x64\xa2\xb8\xad\x82\x0d\xfc\xda\x94\x4b\x15\x41\x40\xc7\x94\x48\x97\x9d\x4c\x4d\xce\x19\x9d\xc2\xb8\xed\x7b\x1b\x1f\x2f\x0b\x59\xe7\xc1\x42\x70\x65\x46\xdf\xbc\x06\xe0\x91\x10\x45\x47\xcf\xfd\xa0\x6b\x2b\xa4\x75\x55\x86\x2c\x66\x41\x00\xa6\x6c\x89\x15\x82\xd0\x57\x3b\xde\x18\xbd\x9d\x4f\xe2\x8b\x59\x29\x31\xd2\x67\x9f\x87\xc1\x49\x24\xcc\x49\x17\x94\xb6\x2d\xfa\xb5\x13\x28\x04\x84\xd1\xd3\x73\x83\x75\x33\x0e\xd8\xb0\xb4\xb9\x2c\xa5\x72\xd3\x9d\x3b\x74\x3a\x49\x5a\x00\x32\x40\xcd\xbf\x5f\xc6\x41\x4b\xb0\x4e\x08\xaa\xe3\xf8\xc5\xbc\xa4\xe5\x07\x10\x94\x0b\x07\x32\x34\x7b\x01\xca\xb5\x2c\xcb\x54\x4f\x8f\xb6\x57\xef\xbf\x7d\x79\xf1\xfa\x0f\xae\xce\xbe\x77\xb4\x9d\x7f\xb8\x4e\xcc\x29\x00\xcc\x00\x61\x6a\x8c\xf1\xc0\xc5\x18\xb3\x44\x44\xb7\x0d\x3a\x47\xc4\xc2\x18\x7f\x30\x82\x01\x00\xb8\x77\xef\x1e\x9e\x9e\x9e\xf2\xaa\x40\xfb\x79\x57\x2d\xe9\x74\x04\x10\x7f\xea\xf8\xb4\x08\xa5\xe7\x3a\x0a\xa1\xce\x9b\xfb\xd3\x30\x8e\x07\x9d\x82\x92\xe4\x96\x94\x79\x4c\x6e\xaa\x6f\xa4\x69\x26\xe9\x3b\x97\x23\xf6\xcc\xe3\x91\xf2\xa0\x69\x3a\x27\x96\xf6\x98\xfe\xa7\xcf\x34\x5f\x29\x0f\xca\x3b\xa0\x4d\x18\x73\x89\x30\x06\x66\x38\x73\x2a\xbc\x21\x3f\x9a\x70\x9a\x19\xb1\xb0\x9c\x9e\x16\x50\x13\x78\xa2\x3c\x39\x08\x91\xc0\x10\x2d\x04\x4a\xc3\x65\x95\x40\x99\x14\x07\xb7\xdc\x48\xe1\xb8\x3c\x3c\xaf\xa9\x7c\xfe\xfd\xec\xec\xcc\x1c\x1d\x1d\x99\x57\x5f\x7d\xd5\xbc\xf0\xc2\x0b\x81\xbc\x6c\x3b\xa7\x07\x2b\x84\x87\x26\x7f\xdd\xe8\xa5\x00\x00\x6d\xc0\x14\x85\x82\x62\xde\xd3\xf3\xb3\x41\x3e\x99\xf5\xf4\x34\x01\x84\x7e\xae\x06\xa9\xc6\x7e\x29\xa0\x5b\x14\x27\x6d\xed\xa4\x19\x58\x75\xd9\xd4\xdc\x8d\x42\x38\x9f\x11\x54\x09\x10\xff\xda\x56\x54\x96\x31\x81\x62\x21\x20\x23\xe8\x15\xd8\xf4\x87\xd5\x87\xf6\xb9\x54\x1c\x68\x23\xab\x59\x85\x58\xdc\x68\x03\x5a\x9d\x2b\x4e\x1f\xb1\xa0\x5e\x39\xd5\xe4\x67\x61\x29\xa8\xa3\x4a\xcf\x4b\xce\xcc\xf1\x35\x31\x49\xda\x5d\xda\x28\xa5\xaf\x15\x12\x0f\xac\x1e\x58\x08\xc2\xb3\x9e\x0e\xde\xfb\xd6\x2c\x4f\xd4\x82\x43\xbe\xd1\x05\xa1\x7c\x97\x9a\xf1\xdf\x43\x79\x48\xad\xaa\x41\xbc\xa0\x7c\x63\x79\xc4\x3e\x18\x02\x0e\xc0\x82\x09\x6e\x58\xe4\xe0\xa4\x02\x16\xa1\x82\xa6\xe9\xac\x94\x79\x28\x85\x71\xa9\x21\x20\xcd\xaf\xb5\x81\x8a\xb4\x3a\xd2\x3f\x4c\x1b\x10\xd9\x2a\x4b\x06\x3d\xfe\x9f\xfa\xdb\x7f\x51\xde\x05\x48\x81\x07\x92\x32\x28\x31\x5e\x05\x76\x68\x96\xd5\x2c\x35\xae\x2e\x05\x72\x41\x25\x8b\xf5\xcc\x13\x58\x9d\x0d\xf2\xe3\x0f\xf6\x96\xef\xfc\xf0\xca\xfc\xfb\xef\xed\xcf\x7f\x78\xba\x95\x7f\x5c\x24\x30\x01\x84\x09\x94\xa0\x65\x86\x88\x0b\x6b\x6d\x59\x22\xe2\x1a\xca\x23\x1f\x0a\xac\x0e\xd6\x74\x87\x24\x1a\x00\x80\xaf\x7f\xfd\xeb\x9a\x24\xc5\x59\x5c\x80\xf9\x51\x05\x4e\x75\x11\x32\x3f\x69\xd0\xc9\xf5\x16\xed\xe7\xa5\x70\x92\x6e\xa2\x3c\x78\xbc\x54\x6e\xbe\x16\x86\xcb\xcd\xc3\x49\x34\x52\x7c\x5c\x5e\x5f\x7c\x2c\x2f\x0c\xd4\xf3\xc7\xd1\x70\x43\x81\x8b\x53\x4a\x0b\xcd\x2f\x9e\x07\x5c\x97\x6b\x46\xe3\x64\xe3\xba\x53\x2a\x4b\xcf\x37\x21\x81\xa5\x0c\x68\x9a\xef\x92\x22\x88\x39\x0e\x0a\xa8\x80\x3c\x81\x1c\xb1\xf1\x8c\x41\xa8\xcb\x4c\x79\x73\x5e\x48\x7e\xd4\x8f\x57\x6a\x0e\x38\x62\x96\x21\x9e\xc9\xb1\xe9\x2f\x2e\x2b\x8f\x1f\x05\x7e\x08\xf1\xbc\x02\x00\x80\x57\x5f\x7d\xd5\xbc\xfa\xea\xab\x86\x2d\xda\x05\xa8\x37\xba\x82\xbc\xd3\x6f\xce\xbf\xec\x1c\x10\x0a\x8d\x46\x2f\x52\xb3\x9c\xf4\x8b\xd9\x74\x50\x4c\x00\x20\xef\x69\xd5\x4b\x0b\xcc\x94\x81\xc4\x77\x66\xac\xe3\x16\x54\x64\xf9\x84\x82\xc2\x76\x61\x59\x87\x47\x43\xfb\xd6\x84\x61\x0b\x92\x14\xb6\xa7\x8f\xd1\x52\xa5\xc2\xc2\x56\xda\x22\xfc\x4a\xc3\x4b\x05\x47\xcd\xe3\x35\x79\x48\x57\x80\x08\xf6\xae\x98\x58\xfc\xe4\x9d\x2b\x06\xe2\xea\x77\xc6\x84\x3d\x0e\x51\x8b\xb5\xb4\x51\x3a\x69\x0a\x8f\xcb\x1f\xdb\xce\x2a\x4d\x9a\x04\xbc\x7c\x79\x96\x0f\xbc\xbc\xd0\xd0\x93\x60\x4d\xad\x6e\xf0\x5e\xd5\x5b\x3c\x5c\x3e\x86\x52\xd6\xd6\x55\x54\xf2\xd7\x8f\xc3\x77\xf4\xb4\xcc\xe8\x8e\x19\xae\x80\x3d\x48\xa3\xb2\xd2\x32\x8d\x65\x20\x11\x86\x9f\xdd\x42\x65\x14\x83\x3b\x59\x29\xb0\xe1\x79\x53\xe3\xe7\xd6\xf3\xd8\x09\x37\xe3\xc0\x03\x78\x61\x79\x9e\x54\x39\x48\xe2\x24\x02\x96\xeb\x53\x6c\x64\x46\x06\x3e\x94\x11\xb7\xc0\xa2\xfd\x4f\xa3\xd1\x8b\x9e\x9e\x1e\x8d\xd6\x1f\xbe\xb7\x3f\x7f\xeb\xed\xcb\xf3\x37\x6f\x5f\x58\xbd\x37\xcd\xf4\x91\x46\x73\x86\x88\x53\x63\xcc\x19\x00\xcc\x10\x71\x6e\x8c\x99\x23\xe2\x1c\x00\x96\x00\xb0\xb4\xa0\x65\x4d\x36\x1d\x00\x40\x75\xf8\xdc\xce\xce\x8e\x5a\xad\x56\x2e\xc7\x9d\x08\x14\x44\xb8\x1f\x5f\x73\x41\xfb\x46\xe7\xb8\x3e\xe0\x7d\xb0\xa4\xd3\x24\x8b\x86\xa4\x5f\xb8\x8e\xe2\x16\x10\x2e\x2b\xd7\x5f\xdc\x9f\xc6\xc1\x75\x0c\xfd\x46\xd3\xcb\x07\xe1\x52\x9c\xd4\x0f\x18\x2d\x95\x3d\x96\xc7\x1c\xe0\x70\x7f\xc7\x03\x20\xcc\x23\x29\x7f\x68\x99\x05\xdd\x3c\xcb\x17\x94\xd6\xb8\xf0\xc4\x36\xad\xd9\x90\xcc\x42\x4d\xf4\x92\x72\xe7\x89\x8a\x81\x00\x9a\x31\x12\xff\x18\x88\x70\x19\x49\xfd\x9a\xe2\x97\x2a\x39\x7d\xa6\x72\x72\xc4\xce\x2b\xbd\x14\x8e\xca\x63\x04\x7f\x1e\xa7\x98\x97\x02\x78\x09\xe4\xa5\xd3\x45\x50\x07\x2f\x9a\xbc\x17\x80\x58\x80\x9d\x3a\x3a\xeb\x17\xd3\x69\x3f\x9f\xe4\x09\x2c\x13\x8d\x49\xaa\x55\x9a\x18\xec\x21\x60\x30\x08\x74\xb1\x39\xdd\x5f\x03\x18\x26\xf4\xe7\x53\x34\x65\xc7\x4b\xd6\x9e\x90\xf0\x48\x3c\x78\x4b\xe7\x19\x49\x1d\x4a\xcf\x36\x1e\x4e\xdd\x16\xde\xa5\xb1\x1a\x7d\x56\x0a\x21\xe4\x43\xec\x00\x48\x65\x73\xeb\x19\x42\xc6\x5c\x51\xfb\x77\xaa\xfc\xec\xa3\xb4\x25\xdb\xf3\x37\x25\x17\xaf\x70\x89\xf5\xa1\xe2\x6f\x15\x37\xd0\x74\x44\xd2\xce\xe2\xf6\xf2\x1a\xfa\xcd\xa6\x95\x15\x46\xc9\x33\x32\x75\x64\x85\xa6\xeb\x59\x68\xb8\xa8\x92\xf4\x7c\xab\x8a\x14\xec\x0a\x02\xef\xed\xcb\xc6\xa5\xbb\xb2\x40\x10\x7a\x12\x45\x68\x4d\x31\xe0\xac\x5e\xd4\xce\x13\xe4\x67\x55\xbc\x1e\x1c\xf8\x34\xb3\x4c\x95\xf2\xb1\xde\x09\x90\xa9\x39\x5b\x30\x72\x3c\x84\x89\xcb\x3f\x57\x0f\x58\x7a\xdc\x4e\x61\x74\xd3\x63\xf6\x03\xef\xf9\x5d\xfe\xd4\x8e\xf0\x67\x8d\x94\xee\xf6\x0a\x3a\x20\x5f\x6e\xa1\x7c\x06\x00\x72\xa5\xf3\xb3\x41\x71\xef\xf6\x85\xe5\x8f\xdf\x3d\x98\xff\xe0\xbd\xfd\xc5\xdb\x47\xa3\xf5\x87\xeb\xd4\x9c\x02\x82\x03\x2d\x53\x44\x9c\x22\xe2\xcc\x59\x5c\xc0\x82\x16\x28\x07\x53\x6b\x00\xbf\x26\xcf\xed\x9a\xf4\xe7\xb7\x58\xd0\x22\x59\x47\x80\xbc\x4b\x4a\xbb\x69\xea\x9e\xf3\x04\x81\x9e\xc6\x11\xb3\x8a\x28\xf6\x4c\x79\x71\xcb\x89\x14\x8e\xd3\x4a\x96\x1d\x47\xc3\xf5\x08\x8d\x93\xea\x28\xea\x62\xb2\x22\x7b\x76\xef\x5c\xd7\x19\xf6\xa3\x3c\xa5\x69\x1f\x29\x2c\x9f\x99\x80\x88\x1f\x4d\x2f\x2d\x47\x04\x00\x2d\x01\x17\x5e\x70\x52\x61\xd3\xc8\xb8\xe2\x8c\x01\x0b\xc9\xa2\x20\x29\x6a\x89\x9e\x27\xbe\x49\x1e\x1e\xde\xf1\x6e\x8a\x9f\x66\x1c\xa5\xa7\xb4\xbc\x32\x48\xf2\x73\xf0\x03\xec\xbb\x64\xc1\xe2\xf9\xd7\x04\xfc\x02\xe7\xac\x2f\xcf\x3f\xff\x3c\x40\xd9\xd8\xdd\x27\x4d\xd6\xc1\x50\x90\x52\x81\x95\x6a\xea\xa8\xaa\x88\x08\xb9\x41\xd0\xb3\xbe\x9e\x9e\xf5\xf3\xb3\x65\x4f\xcf\x01\x41\x97\x00\x06\xd3\xf2\x80\xb0\x6a\xfd\x81\x1b\xb5\x42\xf5\x27\x4c\x18\xca\xfe\xe0\xc2\x93\xaf\xf4\xf6\x5c\x8a\x58\x02\x45\x4d\xf8\x49\x80\x46\x1c\x75\x63\xa5\x54\x83\x00\x4c\x99\x01\xff\x0e\xd5\x77\xa4\x2f\x4c\xb3\x23\xfd\xd7\xe6\x47\x69\x99\x41\xaf\x5c\x5d\x30\xf7\xca\x15\x9a\x57\xc2\x2c\x8d\x3e\xff\xb8\xe2\x35\x50\x6d\x17\xc7\x4a\x51\x73\xfe\xee\x4c\x19\x3e\x62\xf7\x8d\x80\x28\x26\x9e\xaf\x9e\x9e\x76\xb3\x10\x82\x81\x7a\x3e\x84\x2f\x21\x5f\x1b\xce\xee\xb9\xad\xd2\x15\x6e\xe3\x25\x3a\xd7\x87\x73\x20\xd0\xa9\x7c\x2a\x9b\x03\x10\xac\x94\x7d\xe4\x94\x5f\x59\x8f\x8c\xdf\xfe\x0b\x58\xc9\x55\xd5\x21\x17\x77\x78\x0a\x6e\x05\x6e\xc0\x5a\x7d\xc2\xe9\x30\x68\xc8\x47\x24\x3f\xff\xcd\x10\x70\x00\x55\x9e\xd0\x7a\xee\x7f\x04\x94\xc4\xf2\xdc\xb5\x49\x70\xf9\x21\x59\x5a\x88\x84\x15\x70\x22\xd9\xe5\x64\xe2\xed\x83\xae\x97\xa1\xaa\x09\x5d\xc7\x61\x60\x99\x9a\xc9\xbd\xed\xf5\x9d\x5b\xfb\x8b\x1f\xbd\x73\x30\xff\xc1\x87\x7b\xcb\x5b\x67\x83\xe2\x50\x2b\x38\x33\xc6\x4c\x00\x60\x8a\x88\x53\xfb\x77\x06\x00\x33\x00\x58\x00\xc0\x02\x11\x57\xc6\x98\xb5\x5d\xdb\x42\x17\xe5\x6a\x97\xee\x57\x5f\x7d\xd5\x08\xd6\x16\xa9\x9f\x96\xf4\x10\xef\xeb\x25\x70\x23\xd1\xc7\x78\xd3\xfe\x99\x86\xdb\xe4\x59\xf2\xa3\xfa\xa7\x8d\x87\xb4\x0b\xc7\x85\xe5\x69\x39\x2f\x6f\x29\x9d\x31\x9d\xeb\xbe\x4b\xf1\x4b\x6b\x40\x25\xde\x31\x99\x80\xd3\x3a\xe0\x12\x53\xb4\xee\x1b\x15\x8a\x7f\xe7\xae\xc9\xbf\x2d\x3c\xaf\x1c\x9c\x3e\x66\x62\xe2\x80\x82\x66\x20\x40\x55\x18\x4d\xa0\x83\xce\xe1\x71\xdd\xc2\x41\x09\xb2\x70\x2e\x0c\xdd\xa5\x04\xec\x1b\xe7\xc9\xbf\xf1\xbe\x8d\xc7\x47\xd3\xaa\x00\xc0\x7c\xf1\x8b\x5f\x54\x9f\xfa\xd4\xa7\xf0\x6b\x5f\xfb\x9a\x3f\xef\xc5\xce\x55\xa3\x5b\xa8\xcb\xd2\xe0\x4e\xa0\xf4\x1d\x83\xb5\xcc\x14\xde\x34\x8b\x50\x00\x82\x5e\xf6\xcc\x6a\x3c\xc8\x27\xb3\x4c\x9f\xe5\x89\x59\xa3\x41\x95\x6a\x95\xa6\xda\x5a\x5f\x58\x62\xb8\xc2\xf3\xca\xc0\x03\x92\x7a\xad\x04\xa7\x80\x01\xc8\xb4\x0a\xd6\xd6\xb8\xb8\xef\x41\xed\x66\xdb\x46\x01\x20\x18\x25\x73\x65\x5e\x7e\xa8\x7a\xe3\x9a\xf5\xc8\xc9\x1b\x51\x0c\x5e\x24\x16\x8e\x9a\xdc\x1b\x01\x00\xf7\xa3\xca\xc0\xcb\xcf\x2a\x89\x61\x32\x59\x64\x23\x01\xc2\x00\x47\x04\x5d\x7b\x3d\x1e\xff\xd9\xc9\x6c\x9c\xbf\x21\x53\x82\xe1\x4e\x95\xf2\x19\xeb\xf9\x60\xe4\x13\x93\x3d\x9d\x30\x5d\xe1\xd5\x26\x2b\x63\xa7\x6f\xeb\x18\xb1\xb2\x10\x38\xb9\x39\xe8\xa4\xb2\xf1\x85\xa9\x65\x3a\x9d\x9c\xe8\x95\xb2\x54\x8f\x90\x08\x86\x84\x37\x8d\x2f\x38\xfb\x8d\x54\x6a\x3a\xc5\x54\x73\x41\xc5\x47\x5f\xdf\x9c\xa5\xc3\x87\x20\x8d\x86\xe6\x35\x07\x0e\x41\xbd\xa7\xc2\x42\x95\x36\x2a\x1e\x82\xcf\x75\x5f\x26\xe1\x95\x15\x44\x26\x9f\x0f\x8e\x1f\x06\x03\x81\x2a\x39\x06\x0a\x05\xf9\x34\x2b\x4e\x3e\xba\xb0\xbc\xf5\xce\xc1\xfc\xfb\xef\x5e\x9a\xbf\x75\x77\xb4\xbe\xbd\xea\x99\x13\x03\x66\x82\x88\xfe\x67\x8c\x99\x58\xd0\x32\xb5\x0b\x71\x1d\x68\x59\x81\xbd\x9b\xc8\xae\x69\x71\xfd\x92\x79\xe5\x95\x57\xf4\xf3\xcf\x3f\x8f\xaf\xbd\xf6\x9a\x21\xd6\x16\x80\xb0\xaf\x8d\x59\xc9\x9b\xfc\x11\xe4\xa9\x09\xde\x4c\x0c\x0b\x27\xe9\x19\x69\x6a\x27\xa6\x6b\x90\x85\xe3\x7d\x74\x4c\x47\x52\x1d\x10\x9b\x06\xa3\xdf\x25\x2b\x07\x8d\x93\xf3\xe3\xfe\x9c\x3f\x95\x5b\x4a\x57\x4c\x6e\x4e\x1f\xcb\xc3\x26\x1e\xc0\xfd\x85\x16\x16\x75\xb1\x0a\xc3\x33\x51\x42\x57\xd2\x7b\x2c\x8c\x73\x12\x7f\x4a\x1f\xe3\xdf\x16\x06\x22\xe1\xda\xe4\x6c\x72\x4d\x71\xb6\xc9\xf6\xc0\xee\x73\x9f\xfb\x9c\xfa\xd7\x7f\xfd\x57\xfd\xe2\x8b\x2f\xfa\x5b\x55\xdd\x37\x77\x45\x80\x29\xaf\x8c\x4f\x01\x40\x19\x63\x32\x44\xcc\xec\x5f\x77\x59\xa3\xbb\xa8\x71\x00\xf6\xa2\x46\x28\x8f\x61\x1f\xed\x2c\x93\x8b\x8f\x9c\x66\x37\x1e\x3b\x19\xdc\xbc\x36\xee\x3f\xbe\xb3\x4c\xf6\x7b\x05\x66\x8a\x54\x1f\x71\x4a\xa1\x7c\x89\x20\x80\xf0\x93\x57\xa0\x18\x86\xa7\xfe\x9c\x47\x18\x26\xe8\xf3\x65\x4d\x4e\x80\x92\xf7\x06\x90\x5b\x01\xf9\xc6\xa3\x97\x7c\xb8\x57\x2d\xfa\x58\x3c\x3c\x5a\x92\x8f\x4c\xf4\x30\x1f\x04\x11\xbc\xb7\x03\x22\x48\xf2\x84\xc7\x2f\xe6\x53\x0b\x6f\x2a\x5b\x43\xb9\xd6\xd0\x2a\x11\x21\x80\x23\xa4\xbc\xa5\xad\xed\x15\x25\x39\xb2\x1f\xc2\x2d\xd4\x50\x7b\xaa\xfe\x75\x99\xe1\xe9\x8d\x03\x67\x18\xa4\xa7\x96\x15\xc4\xa3\xcb\x4e\xb2\x58\xfd\x72\x92\xd0\x43\x0e\x91\x65\x4a\x6d\xa1\x37\xcb\xe3\xfa\x42\x70\xbe\x44\x39\x38\x7f\x19\xe8\xe9\xb5\x5e\x08\xf0\xe2\xf9\x08\xfc\x67\x0e\xb4\x84\x7a\x51\x2f\xea\x32\xce\x75\x62\x16\x27\x5b\xf9\xd1\x07\x7b\x8b\xb7\x6f\xed\x2f\xde\xfd\x78\xb4\xbe\xb3\x4c\xf5\xa9\x01\x33\x23\x56\x15\x67\x59\x99\x41\x79\x9c\xff\xca\x4e\x0f\x2d\xa0\x3c\x63\x6a\x65\xff\xd2\xf3\xa6\xdc\x0f\x22\x17\x2b\xf2\x67\x68\xf9\xde\xa5\xdf\x3d\x6f\x7f\xdd\x25\x9e\x07\xd5\x0f\x9b\xea\x52\x49\xa7\x76\xf5\x6f\x92\x97\xba\x2e\x38\xa0\x8b\x3e\x6f\x92\x3b\x9a\xf7\x6e\x57\x51\x0c\x65\x71\x6b\x0b\x47\x5d\x31\xf4\xc9\x91\x19\x47\x92\xd4\x71\x14\x48\xe7\xd6\x28\x2a\xe4\x71\x73\x99\xa5\x30\x54\x4e\x8a\x3a\x63\x32\x73\x79\xba\x38\x6a\x82\x93\xcc\x89\x31\xf3\x58\x8c\x57\xd7\x78\xbd\xbb\x7d\xfb\xb6\x01\x08\xce\x7c\x71\x6b\x5c\xbc\xe5\xc5\xed\x34\xb2\x1d\x95\xb1\x32\x19\xac\xb6\x4b\xd3\xa9\x23\x0d\xf6\x9e\x10\x40\x2c\x96\xa9\x59\x9d\x6e\x15\x93\xd3\x41\x7e\xbc\x4c\xf5\x2c\x31\x88\x59\xa1\x06\x69\x79\xe9\x1f\x02\x60\xb9\x56\xc0\xf7\x74\xd5\xe8\x0d\xa0\xf4\x0e\x16\x44\x5a\x4a\x7e\x7e\x5c\xa5\x44\x48\xf7\x2e\x9c\x0a\xea\x02\x20\x84\xfc\x80\xbc\x87\x67\x89\xa0\x87\xe9\x54\xb7\x06\xfd\x3b\x42\xb0\x5e\xc1\x90\x29\x0d\xb7\xa5\xb6\xda\xad\x8b\x41\x45\x73\x72\x50\x41\x02\x40\x45\x64\xf6\xd1\x0b\x23\xf3\x92\x96\x2a\xde\x4a\xb3\x96\x87\xa9\x61\x20\xaf\x8f\x96\x69\x96\x72\xaa\xaa\xe4\x58\x4d\xd1\xb0\x34\x63\x15\x2e\xb8\x75\x9b\x61\x0e\x7e\xb1\xa6\xb1\xf9\x51\x3b\xac\x8c\x02\x02\x07\x4c\x6a\x5a\xde\xad\x91\xb1\x96\x1d\x5b\x6f\xa8\x45\xc3\x6d\xa5\x75\x8b\x78\xe9\x82\x5e\xaa\x94\xab\x5b\x99\x5d\x5d\xa3\xab\x6c\x8c\x8d\xdf\xf1\x20\x16\x1e\x6f\xb9\xa0\xd3\x1f\x55\x59\x53\x60\x13\xd4\x33\x63\x4b\xc5\xa7\xd1\xa7\xd2\xca\x5d\x4d\x25\x55\x32\x57\xb5\xa4\x94\x0c\x59\x85\xaf\x83\xaf\x5a\x1c\x58\xc5\x01\x9e\x07\xf5\xc2\xca\x1f\x80\x5d\xa1\x40\x50\x90\x6b\x0f\x54\x2e\x43\x62\x75\x64\xb4\xcc\x6c\x26\x3b\xc0\xe7\xf8\x16\x08\xf9\xac\x5f\x8c\x3f\xda\x5d\xbe\xfb\x83\xab\xd3\xef\xfc\xe8\xf2\xe2\x07\x77\xb7\xd7\xb7\xf3\xd4\x9c\x1a\x30\x67\x50\x4e\x07\x4d\x00\xc0\xfd\xa6\x50\x02\x97\x39\x94\x53\x43\x73\x28\xcf\x6b\x59\x23\x62\x0d\xb4\xb8\x75\x2d\x2f\xbf\xfc\xb2\x7e\xee\xb9\xe7\xf0\x8d\x37\xde\x40\x53\x6e\x6d\xe4\x7d\x6a\x60\x81\xf6\x99\xed\x13\x1f\xf8\x4b\x7a\x41\x9a\x2a\xe2\x53\x2e\x52\x38\xea\x78\x9c\xce\x71\xde\x9c\x0f\x7d\x97\xac\x47\x94\x0f\xf7\xa7\x7c\x14\xe3\xc3\xe3\x23\xb5\x2d\x90\x57\xd2\xa5\x31\xdd\x4d\xf3\x03\x58\x3c\x3c\x9f\xa4\x38\x90\xfd\x75\xbc\xb9\x3f\xe7\x11\xcd\xfb\x44\x08\x20\x45\xdc\x04\x3e\x62\xa6\xb0\xd8\xbb\x54\x30\x00\x72\x46\x4a\x99\x0c\x84\x5e\x7a\xe7\x85\x08\xcc\x5f\xaa\x64\x4d\x05\x87\x20\x67\x22\xa5\x45\x21\x1c\x8f\x47\x6a\x30\xdc\x8f\x37\x46\x5e\xd0\x52\x21\x06\x74\xaf\xbe\xfa\xaa\xf9\xcc\x67\x3e\x83\x4a\x29\x00\x28\x8f\x77\x71\xdf\xb0\x3a\xdb\xc5\x00\x04\x07\xd7\x15\x6e\x0b\xa2\x05\x3c\x6b\x4b\xe7\xef\x3f\xd2\x0a\xd6\xb3\x4c\x2f\x4e\x86\xf9\xc9\xe9\x56\x7e\xbf\x50\xb0\xec\xe7\x6a\x90\x15\x38\xf0\xb7\x01\x43\xa5\x20\x68\xbf\xea\x95\x22\xc9\x6c\x60\x74\x95\xca\x43\xf2\xb7\x0c\xe8\x8f\x22\x47\x5a\x31\xe8\xed\x29\xf5\x16\xca\x17\xfd\x8a\x74\x35\x05\x02\x7e\x4d\x08\xdd\x02\xec\x77\xf7\xf8\x6d\xa6\xe1\x28\xde\x11\x1a\x96\xee\x20\xad\x35\x70\xc1\x55\x16\x00\x1d\x8d\x7b\x75\x84\x50\x29\x79\x9f\x72\xaa\xa8\xa1\x52\xfe\x3c\x0f\xf8\xfd\x46\x34\xff\x0c\x79\x47\x59\x59\xfb\x4a\x46\xa7\x52\x68\x7e\xd0\xb8\xa4\x75\x36\x26\x7c\xa8\x52\x60\x15\x68\x19\x79\x58\x3f\x68\xe1\x18\xca\x97\x9c\x7d\xe2\x72\x01\x2b\xb0\x00\x10\xdc\xb9\x54\xc6\x45\x40\x91\xaf\x07\x58\xd5\x9a\x0a\xc4\xd9\xb2\xa0\x80\xca\x8a\x5d\x4d\x9d\x59\xe1\xb0\x4a\x8d\xaf\xb5\x4e\x4e\x1b\x09\x5d\x70\x5b\x02\x18\x5a\x32\xe5\xa3\x3f\x65\xd6\xd2\x54\x9d\x88\x2b\x53\xc7\x27\xa8\xf4\x55\x96\x92\x82\x2c\x17\xd9\x92\xa9\x1c\xcf\xcc\xca\x87\x50\xed\xae\xb2\x99\x6d\x5c\x9e\xda\x30\xb6\x7a\xd7\xcb\xc0\xb1\xb1\x71\xaf\x13\xb3\xb8\xb7\xbd\xbe\xfd\xa3\xcb\xf3\xef\x7d\xff\xda\xf4\x7b\x3f\xd9\x5f\xde\x5a\xf4\xf4\x09\x28\x98\xd8\xb5\x2c\x13\x44\x3c\x83\x72\x3a\xc8\x4d\x0d\x2d\x00\xc0\xed\x20\x5a\x00\xc0\x1a\xca\xa3\xfd\xdd\x61\x73\x35\xd0\xe2\x0e\x9b\x7b\xfd\xf5\xd7\x8d\xa9\x5f\x52\x44\xfb\xdb\xd8\x68\x9d\x7f\xe7\x61\xb8\x4e\xe1\xdd\x03\xef\x52\x24\x0b\x04\xe5\xc7\xf5\x03\xef\xd7\x63\xe0\x02\xa0\x2e\x2b\xe7\x4f\xe5\xa3\x3c\xf9\xa0\xd8\xc9\xc1\xe3\x63\xbd\x4f\x4d\xa7\x48\x79\x23\x01\x26\x9a\x0f\x8a\xf8\x01\xa3\xe5\xfa\x29\x66\x4d\x69\x2a\xbf\x58\x99\x29\xf0\x35\x3b\xee\xa8\x39\x89\x32\xa4\xdf\xa8\xd0\x9b\x98\xd5\xba\xfa\xf1\x78\xba\xf0\xe5\xa6\xaa\x36\xf3\x62\x13\xef\x26\xd7\x25\xcd\x0f\xea\xce\x1d\x07\xb9\x61\x1a\x00\x40\xd9\xce\x4d\x41\x79\xb9\xa6\xb2\xbf\xcc\xbe\xd3\x9b\xa6\xdd\xdf\xa1\x9d\x46\x72\x53\x48\x43\x00\x18\xa2\x81\xe1\x70\x95\x5c\x78\xe4\x34\xbb\xfe\xcc\xd1\xf0\xb9\xc7\x4e\xfb\x4f\x0f\x56\x6a\xd7\x75\xd1\xb5\xa9\x1e\xa8\xb7\x9c\x26\xd7\x44\x2b\x7d\xeb\xca\xbb\x0b\xdd\xc3\xe6\xbf\x49\xba\xbb\xba\xc6\xfc\xf1\x4a\xb6\x3d\x6e\x59\x5e\x3e\x15\xd1\x2d\x6c\x34\x2e\x0a\xec\xec\x63\x60\xc5\x89\xed\xc3\x16\xf8\xf2\xa3\xe4\x03\x9e\xcc\xcf\x3d\x84\xc0\x83\xf3\x76\xe0\x21\x9e\xe6\x98\x26\x33\x81\x95\x26\x2e\x8f\x3b\x54\x2f\xb4\xbf\x08\x53\xa9\x1c\x98\xc4\xf2\x43\x48\x8b\xf1\xff\x56\xf2\x80\x21\x00\x07\x9a\xf9\x72\x00\x2e\x7d\xcf\x95\xc9\xc7\x83\xfc\xe8\x83\x0b\x8b\x77\xdf\x39\x98\xff\xf0\xe3\x9d\xd5\x9d\x65\xaf\x3c\x48\xce\x94\xb7\x39\xcf\x00\x60\xe1\x76\x0a\x91\x1d\x43\x0b\x3b\x3d\xe4\xee\x22\xf2\x16\x16\x7b\xc8\x9c\xeb\xdb\xfc\x5f\x36\x3d\x44\x9d\xa4\xdc\x62\xd3\x0b\x5d\x9e\xff\xa3\x78\x4b\xf1\x6c\xaa\x2f\x25\x9d\xd8\xb6\x34\xa2\x29\xdc\xa6\x71\x3e\x28\x6d\x57\x9a\x4e\xe1\x9a\xee\x2a\x02\x46\xac\x84\x6f\x94\x61\x17\x81\xba\x26\x52\x0b\xcf\x81\x12\x8e\xd0\x48\x72\x36\xf9\x3f\x28\xf0\x78\xd8\x60\x47\xfa\xf6\x30\x80\x91\x02\xf0\xa3\x57\x0d\x65\xc7\xe1\x00\x0c\xbd\x69\xda\x75\x2a\x03\xf7\x4e\x3a\x9c\x21\x94\xd3\x47\x2b\x00\x5c\xcd\xb2\x62\xf1\xde\xfe\x62\x76\x6f\x7b\x7d\xfc\xf1\xbd\xc1\xed\x67\x8f\xb6\x3f\x7d\x71\x9e\x5e\xeb\xe5\x38\x90\x76\x0b\x09\xd7\x2d\x06\x8e\x0f\x6f\x2a\xcf\x30\x1c\x1d\x76\xd4\xe8\x5b\xdc\xa6\x00\xaa\x12\x8e\xa8\x1a\x51\x01\x36\xc4\x29\x28\xee\xe0\xd9\xd4\x06\xd5\x22\x6f\x14\x3d\x4d\xfd\xdc\x90\x36\x45\x45\xf2\x54\xce\x87\x0a\x70\x8a\xf1\xa2\xe0\x1f\x8b\x0b\xc0\x8f\xf2\x43\x6b\x94\x30\xd5\x16\x71\x95\x61\xa1\xbe\xc8\x18\x20\x0e\x7c\xa8\xbf\xbc\x76\x86\x5a\xcd\xe8\x82\xe7\x7a\x7d\x03\x80\xda\x74\x1c\x90\xf4\xd4\xc3\x31\x8b\x61\x18\x71\x98\xf3\x04\x58\xd1\x7a\x14\x44\x47\xf3\x1d\x43\x9a\x2a\x7e\x0c\x17\x1a\xb3\x34\x23\x09\x45\x61\x1a\x9d\xc2\xa5\xce\xf9\x17\x68\xf4\x2c\x2b\xc6\x77\x76\x56\xef\xfd\x78\x7f\xf1\xf6\x87\x7b\x8b\x0f\x26\xfd\xe2\x7e\x81\x40\xd7\xb0\xf8\x75\x2c\x64\xfd\x8a\x3b\xc2\xdf\x81\x96\x9c\xfd\x34\xf9\x01\xf9\x0b\x77\xef\xde\x85\x73\xba\x58\x5f\xb9\x49\x7f\x1b\xa3\x8f\xe9\x9b\x18\xcd\x43\x53\xd2\x91\x38\xf9\x1a\x92\x58\x58\xaa\xa7\x1f\x24\x1f\xda\x00\x57\x17\xde\x9b\xf0\xe3\xe1\x02\xfa\xa6\xbb\x8a\x5c\x60\xd7\x3e\xb8\xf9\x4b\x7a\x8f\x85\x95\x78\x71\xe1\x24\x3a\x6a\x82\xe3\x66\x3d\x24\xdf\x28\xad\x86\xb0\x4d\x53\x53\x1a\x37\xeb\x35\xc9\xdf\x94\x16\xea\x8f\x0d\xdf\x24\xff\x18\x3d\x80\x9c\xee\x36\xd9\x68\x5c\xc1\x5f\xbb\x55\x1a\x11\x91\x9e\xeb\x42\xe3\x77\x79\xa0\xd9\xb3\x86\x70\xab\x74\xe1\x76\x1f\x41\x79\xd6\x42\x0e\x60\xb4\x56\x50\xac\x52\xbd\x3c\xd9\xca\xcf\xee\x0f\xf3\x7b\xb9\x32\xf3\x54\xa3\x4a\x35\x66\xca\x40\x8a\x7c\xee\xa4\x41\x5b\x39\x25\x1e\x8c\x3a\x11\xa0\xdc\x36\xca\xce\x9c\x60\xc1\x6b\x6c\xb9\xa2\xe4\xf1\xd0\xb0\x4e\x21\x7a\xa5\x22\x05\x2a\x3f\x04\xa0\x80\xc9\x2a\xf4\xfd\x25\xad\x07\x25\xe1\xa8\x9e\x66\x8b\x08\xc0\x24\x90\xe0\x64\xf4\x91\x11\xd0\xc2\xf2\xb4\x09\x48\x38\x89\xa4\xed\xc3\xee\x6b\x2d\x3d\x4d\x23\x72\x96\x77\x2e\x7f\x4c\x70\x46\x4a\x28\x5b\xb5\xc5\xb7\x94\xa4\x16\x07\xc1\x23\x58\x11\x02\x00\xb9\xf8\xcf\x80\x08\x66\x80\x59\x66\x8c\xaf\x10\x14\xb0\x91\x7f\x5d\x19\x19\xf2\x62\x85\x08\xa6\x61\x02\xb9\xa8\x75\xc3\xc5\xe7\xc0\x50\x38\xb5\x56\x92\x10\x50\xe1\xb9\x1b\xcb\x2f\x4c\x03\x06\xe1\x2a\x6a\x5a\xde\xc1\xb9\x3e\x8e\x37\xa9\xc7\xc6\x07\xe1\xd6\xa4\x10\xb4\x84\x02\x19\xdf\x90\x0c\x02\xcc\x7b\x7a\x76\xb8\xb3\x7a\xff\x87\x57\xe6\xff\xfe\xd6\xd5\xd9\x0f\x3e\xba\xb0\x7a\x7f\xd6\xd3\xc7\x1a\xcd\x19\x20\x9e\xd9\x33\x59\xdc\x8e\x21\xbf\xcd\xd9\x18\x13\x6c\x75\x86\x6a\x3d\xcb\x1a\xdc\xa9\xdd\xe4\x52\x45\xbb\xd3\x11\x5e\x79\xe5\x15\x7d\xf5\xea\x55\xfc\xc6\x37\xbe\x01\xab\xd5\x8a\xf6\x7f\x2e\x4b\x34\x84\xfd\x3c\x10\x1a\x49\x37\xd1\xb0\xc8\xc2\x41\xc4\x9f\xf6\xa1\x8e\x86\xf7\xad\xbc\x89\xa0\x40\x27\xf9\xf1\x99\x00\x49\x87\x49\x69\xe4\xfd\x3b\x95\x39\xe6\x4f\x75\x08\x95\x57\xd2\x29\xb1\xf4\x50\x7a\x0e\x1e\xb8\x7c\x52\x79\x49\xb2\x28\x16\x0f\xcd\x63\xea\xa4\x72\xf3\xf9\xc6\xbb\xa2\x98\xb9\x0c\x40\x06\x18\xd0\x40\xd3\x64\x46\xea\xfa\xbe\x09\x2a\x8b\xb9\x26\xd9\xa4\xa9\x24\x4e\x1b\x93\x69\x13\x39\x36\x31\x0f\x3e\x2c\x9e\x35\x7f\x32\x75\xc4\xad\x57\xce\xfa\x92\x92\xe7\x8c\xfd\x06\xee\x67\x8c\x19\xda\x5d\x48\x03\x30\xe5\xf4\x51\x56\xe0\xce\x68\x99\xec\x5d\x3d\xcb\xae\x3f\x76\x32\x78\xe2\xda\x59\x76\x63\xb4\x48\xf6\x7b\x1a\x33\xda\x59\xb6\xba\x96\xa9\x83\x80\x14\xaa\x93\x51\x9d\x42\xa9\xfa\xe2\xaa\x07\x37\xb5\xce\xdb\x33\xa8\x10\x2e\x0d\xdb\x14\xa6\xce\x62\x83\xb4\x55\xc4\x34\x2e\xff\xde\xc0\x48\x02\x67\xa5\xe0\x21\x0d\x05\x24\x0c\x07\x78\x72\x71\x37\x8d\xcb\xae\xee\xd9\x1f\xa6\xa7\x09\xf8\xd1\x20\x0d\xfc\x4b\x16\xf5\x1c\x0d\xd2\x4c\x12\x60\x88\x5f\x90\x37\xb5\xc8\x2a\x24\xeb\x75\x33\xd9\x6d\x04\x9b\xa4\xd9\xcb\x44\x41\x50\x3d\x1d\x1c\x08\xfb\x78\x5c\x49\x44\x22\xac\xdd\x6a\x6e\x20\x58\xb0\x8d\x9e\x06\x98\x1f\xeb\xfd\x49\x9a\xc4\x29\x36\xb6\x38\xdc\xd5\x1d\x03\x08\xab\xb4\x58\x9c\x0e\xf2\xc3\x0f\xf6\x96\xef\x7d\xb0\xb7\x7c\xff\xde\x70\x7d\x38\xcb\xf4\xfd\x5c\x99\x19\xa0\xdf\x1d\xe4\xa7\x87\xe8\xcf\x4d\x0b\xd1\x2d\xce\x76\x4a\xc8\x4d\x0f\x69\x67\xf9\xb5\x32\x68\x00\x80\xb7\xde\x7a\x0b\xbe\xf9\xcd\x6f\xc6\x74\x0f\x40\xbd\xaf\xdb\xa4\xff\xeb\xf2\x1c\x0b\xdb\xe4\x77\x9e\x78\xce\xab\xd3\x1e\x36\xef\x4d\xf3\x41\xe2\x1d\xcb\x27\xf8\x69\xc7\xc3\x2d\x2e\x1c\xf9\x39\x3f\x8e\x86\x9c\x3f\x45\x69\x5c\x20\x8e\xe8\x8c\xf0\x2d\x66\xb9\x09\x06\x1d\x2c\xac\x64\xb9\xe1\xfe\x31\x39\x9d\x1c\x34\x3c\x45\xa0\xb1\xb4\xf2\xfc\xe0\x8e\x23\x67\x49\x06\x68\xa1\x91\x78\x36\xd1\xf2\xb4\xc4\xe2\xf4\x8e\x9d\xb6\xcb\xfb\x3a\x03\x61\x19\xfa\xab\x01\xc8\xf1\xdb\x1a\xc0\x9f\x01\x53\xfe\x10\x72\x40\x28\x0a\x84\x7c\xd1\xd3\xcb\xb3\x7e\x31\x39\xd9\xca\x4f\x67\x59\x71\xa6\x15\x14\x89\x3d\xfb\x45\x19\x54\xa1\x52\x81\xc0\x2a\x42\x77\xec\x48\x09\x91\xba\x79\x7a\x7e\x08\x5b\x5b\x5a\x8d\xc6\xd1\x53\xd2\x0f\x9e\xd8\x2d\x7e\x75\x11\x55\x8b\x80\xc3\x4e\x3d\xa2\x4a\xc3\x38\x81\xaf\x99\x60\x30\x8a\x30\x41\xf6\x10\x4c\x01\x08\x8a\x94\x0f\x51\x68\x0b\xf1\x15\xdc\xa5\x99\xc8\x49\xed\x0b\x9e\x07\xd6\x0b\x9f\x46\xc0\xf3\x3a\x0a\xce\x08\x9a\x08\xac\x2a\x15\x66\xac\x85\x0b\xa7\xb2\xea\xf9\x28\xc1\x01\xef\xcf\x12\x40\xcb\xae\x96\x3f\x01\x1a\x41\x2f\x0f\xf8\x30\x64\xc9\x6c\x24\xcd\x21\x3f\xb0\x40\xd7\xed\x18\x8a\xaf\xe7\x42\x2a\x2b\x84\xe7\xcf\x18\x6b\x19\x09\xaf\x1a\xa8\xe2\x0a\xeb\x5d\x99\x86\xd0\x46\x54\x51\xd2\xb7\xca\x97\xed\xd2\xb2\xf9\x25\xd5\x1f\x9a\x02\x03\x06\x72\x65\x56\xa7\x5b\xf9\xdd\xf7\x2f\x2e\x7e\xf8\xd6\x95\xf9\x1b\xef\xed\x2f\xde\xb9\xb7\xbd\xbe\x3d\xcf\xf4\x3d\x8d\x30\x31\xe0\x8f\xec\x9f\x60\x79\x98\x9c\xb7\xb0\x50\x10\xe3\xac\x2c\xd6\xc2\xb2\x06\x77\xbd\x08\x04\xf7\xa8\x69\x80\xf2\xdc\xa9\x97\x5f\x7e\x59\x8f\xc7\x63\x5c\x2c\x16\xbc\x9f\xe4\x7d\x32\xef\xaf\xe8\x5f\x80\x50\x07\xf0\xac\x6d\x7b\xa6\x4e\xf2\xdf\x34\x1e\x49\xdf\x51\x9a\x4d\x75\xda\x26\xe9\xa1\x7e\x31\xde\x31\x1e\x9c\x9e\xea\x64\x49\x67\x70\x87\x50\xb7\x6a\x35\xd1\x53\x7f\xaa\x67\x25\xf9\xbc\xe5\x26\x36\x55\xd4\x55\xb9\xba\x84\xb4\x59\x11\xa4\x4c\xe1\xf1\x70\xa1\x01\x42\xc4\x65\x20\x8e\xf0\x24\x05\xce\x0b\x9d\xf2\xe3\xdf\x0d\xc4\x81\x8f\x24\xa7\x04\xb4\x5c\x3c\x34\x93\x39\x3f\xfe\x4d\x09\x61\xdc\x7b\x4c\x56\xf7\x0e\x2c\x8c\x24\x63\x20\xeb\x33\xcf\x3c\x83\xff\xf0\x0f\xff\xa0\x19\x80\xa1\x61\xdd\x34\x91\x7b\x2f\x00\xc0\x8d\x8a\x1c\x58\xd1\x50\xae\x75\x29\xb0\x3c\xb8\xae\xdc\x8d\x04\x46\x03\x62\x9e\x27\x66\x35\xef\x15\xb3\xf1\xa0\x98\x9e\xf5\x8b\xf1\xa2\xa7\x67\x80\x50\x24\x1a\x93\x44\x63\x8a\x60\x01\x0c\x57\x38\x61\x5f\x5c\xa5\x8e\x29\xc4\xd8\x5d\x41\x2c\x08\x53\xe0\x14\x5c\xa0\xa8\xa8\x1c\x11\x07\x21\x8e\x69\xc8\x2e\x54\x54\x95\x2f\x06\x7f\x6b\xca\xc5\x30\x05\xec\xd2\xe3\xa2\xa1\xf7\xe3\xb4\x38\xa9\x62\xf1\x44\xd5\xec\x01\x44\x60\x2e\x21\x92\x9f\xe4\xe2\x60\x06\x6b\x40\x8b\x5e\x7a\xe9\x2c\x06\xc6\x06\xf2\x5b\xdb\x89\x7c\xbe\x12\xd2\x05\xaf\xc2\xd4\x8a\x97\xc3\x38\x19\xaa\x88\x69\x23\xa2\xeb\x5b\x18\x4e\x0d\x68\x6b\x3c\xd1\xc6\x0b\x00\xd5\x16\x6c\xa6\xec\xa9\x95\x42\x58\xa0\x1b\x9e\xc3\x52\xdf\xf2\xee\x69\x11\x6a\x65\x00\x10\x5a\x5b\x90\x5f\x76\x45\xb6\x86\x43\x90\x57\x00\x40\x76\x4b\xf1\xf8\xa8\x5c\x86\x66\x8a\x1d\x2d\xac\x95\x59\x4d\xfb\xfa\xf4\xce\xee\xea\xfd\x1f\x5e\x99\x7d\xff\xdd\x83\xc5\x5b\x77\x76\x96\x1f\x4c\x33\x7d\x54\x28\x33\x36\xe5\x76\xe6\x29\x94\x3b\x86\xdc\x56\xe7\x29\x94\x3b\x87\xe6\x58\x1e\xdf\xbf\x80\x72\x3d\x0b\xdd\x31\xe4\xa6\x86\x0a\x3b\x5d\xed\xfb\x17\xc4\xf2\x18\xff\xed\xed\x6d\x1c\x8f\xc7\x78\xff\xfe\x7d\x57\x0a\x74\xc4\xcd\xfb\x44\x4a\x23\xf5\x77\x94\x9e\x26\x5f\x33\x7f\x47\x47\x69\x78\x13\x90\xc0\x8b\xc4\x5b\x8a\x87\xcb\x26\xf1\xa6\x55\xb6\x2d\x1e\x4a\xa3\x04\x7f\x3a\x75\xc3\xd3\xc5\xd3\xc2\x69\xb9\xae\x91\xba\x16\xa9\xbb\xe0\xfc\x78\xd9\x35\xa5\x97\x3b\x49\x26\x1a\x8e\xe3\x02\x4c\x58\xc0\x26\xc6\x31\xf0\x41\x85\x96\xfe\xd2\x30\x31\x5a\x80\x7a\xc1\xf0\xcc\x8c\x99\x99\x62\x00\x80\x56\x22\x5e\xf0\xbc\xb0\x68\x3a\x24\x47\x0b\x47\x02\x5e\x14\xc0\xb5\xa1\x51\xc3\x68\xe8\x3b\xe7\xc1\xe3\xa1\xef\x9c\x87\x44\x1f\xc8\x7a\x7c\x7c\xec\xdf\x1f\x7f\xfc\x71\xdc\xde\xde\x96\x78\xb9\xbf\x5a\xf8\xb9\xbb\x43\xbc\x05\xc6\x99\x80\xdd\x5f\x00\x28\x34\x98\x7c\x9d\x9a\xd5\x24\x2b\x26\xe3\xad\x62\x3c\xe9\x17\x67\xeb\xc4\xac\x94\x01\x93\x18\x4c\x95\xc1\x14\xc1\x59\xc0\xeb\x20\x80\x2b\x8b\xea\xd4\xd3\x2a\x93\x44\x17\x28\x8d\x90\x10\xd9\x83\xc4\x83\x77\xf9\x7e\x61\x31\xd3\x60\x1e\x1c\xd5\xa2\x77\xe7\x94\x10\x80\xe5\x14\x22\x54\xa0\xc4\xea\x19\x20\x49\x72\x31\x0a\xb7\x47\xd7\x23\xa2\xf1\x3b\x25\x26\x6d\xaf\x0e\x82\x32\x3e\x6c\x89\x26\xf8\xd1\x37\x5b\xec\x5b\xdb\xa5\x24\x81\x1f\x21\x33\x2d\x37\xa6\xa9\xd1\x7f\x43\x12\x97\x6f\x78\x7c\xed\x8a\x78\xea\x6e\xf9\x50\x6e\xd1\x0d\x55\xb5\x17\xcd\x4d\x8b\x18\xf7\x0e\xb6\x4c\x4c\x00\x9e\x5c\x8e\x05\xdb\xbb\x2d\x82\x46\x00\x3b\x9d\xe4\x1a\x05\x06\xf1\x38\x3e\xfe\xbb\x33\x19\x52\x20\x83\x21\xa8\xab\xaf\x05\x32\x01\x5f\x27\x68\xb5\x4d\x9a\x67\x38\x29\x2f\x9a\x2f\x3e\x91\xf5\xbc\x08\x2e\x8e\x74\x79\x6f\x2b\x74\x9e\x98\xd5\x2c\xd3\x67\x47\xa3\xf5\x47\xe5\x85\x88\xb3\x37\xdf\xbf\xb8\x7c\xe7\xa4\xbc\xc5\x79\x0c\x08\x13\x40\x3c\x73\xeb\x58\xa0\x3a\xb6\x9f\x4e\x17\x2d\xec\x29\xb8\x4b\xdb\x07\xd4\xac\x2c\x50\xf6\x0f\xee\xf8\x05\x70\x56\x16\x00\x80\x5b\xb7\x6e\x19\x6b\x69\x91\xfa\x46\x97\x24\x1d\x24\xa9\xde\xe7\x73\x5d\xc1\xfb\x63\x15\xe1\x41\x69\x81\xd1\x70\x10\x42\x79\xf0\xb0\x3c\x1e\xea\x38\x8d\x7b\xa6\x72\x4b\x03\x7a\xae\x1b\x24\x7e\x9c\xde\xc5\x4f\xd3\xc3\xe3\x91\xf2\x84\x3a\x49\xbf\x53\x3e\x92\x0e\x94\x00\x06\xa5\xa5\x3c\x24\x1c\x41\xf3\x5b\x0a\xc7\xf5\xb8\xdf\x0e\xcd\xe7\x12\x63\x4e\xb1\xf7\xd8\xba\x91\xf3\xac\xe7\x70\xfc\x24\xe0\xc2\x79\x6d\xf2\x1e\xfb\xd6\x65\xae\xae\x8d\x47\x2c\x0d\x0f\xea\xa4\xf8\x38\xef\x36\x99\x3b\xf3\x17\x4e\xdc\x55\xe4\x07\x60\xd7\xbf\x90\xd3\x77\xdd\x16\xea\x01\x00\x64\xfc\xe4\x5d\xf2\x3e\x00\x63\x06\xa9\x56\x3b\x17\xe6\xe9\xfe\xb5\xb3\xec\xc6\xa3\xa7\xfd\x1b\x97\x27\xd9\xf5\x9d\xa5\xda\xeb\x15\x6a\xa0\x0c\xa8\xda\x02\x48\xeb\x7c\x2f\x13\x3b\x46\xdd\x7e\x03\x60\xca\xd6\xfe\xc5\x1a\x1d\xc4\xf9\x00\xf8\xdd\x2f\x2e\x6c\xa5\xa0\x38\x6d\xa8\x70\xca\xb0\xc6\x2b\x4c\x1e\xb7\x8b\xbf\x96\x3e\x41\xf6\xa8\xfc\xf4\x9d\xa3\x09\x00\xd1\x12\xe5\x16\x76\x72\xd0\x56\x93\x87\x45\x18\x0c\xc8\x23\xa0\xc5\xed\xb4\x72\x19\xc5\x17\x8d\x3a\x65\x1e\xcb\xef\x46\x17\x45\x5f\xd2\xe7\xe8\xb9\xb4\xb5\x00\x3c\xcd\x04\x37\x8b\x89\x96\xce\x75\xa9\xf1\x11\xfd\x29\x2c\x0a\x7b\x6b\x5e\x27\xe9\x39\x35\x04\xe5\x31\xf9\x19\xb8\xe2\xc9\x13\xea\xa8\x45\x6a\x1e\x30\x3b\xbe\x1a\x0c\x14\xca\xe4\x8b\x9e\x9e\x8c\x07\xc5\xf1\xe1\x68\x75\xe7\xa3\xdd\xe5\xfb\x1f\xef\xac\x6e\x8f\x07\xc5\x7d\x53\xae\x61\x59\x38\x50\x02\xe4\x4e\x21\xa8\x76\x0a\xf9\x1d\x43\x60\x77\x1a\x5a\x50\xc2\x77\x0c\x01\x5d\x84\xeb\xd2\xdc\x61\xab\x73\x17\xff\x36\xd7\x16\xae\x4d\xe7\x34\xf1\xe9\x22\x53\x97\xb5\x1d\x5d\xe2\xda\x24\xce\x4d\xc2\x6d\xca\xaf\xab\x5e\xdf\x34\x2f\x37\xe1\xed\x69\x9d\xc5\x85\xa2\x99\x98\x19\xce\xd1\x51\x34\x45\xbf\x73\xc4\xc9\x91\x9c\xa3\x75\xe8\x8c\x86\x07\x16\x4e\x42\x99\x3c\xae\x20\x21\x8c\xbf\x64\xad\x89\x21\x7a\x49\x56\xc9\x62\x43\x79\xd0\x34\x50\x6b\x92\x64\xe2\xe4\x79\xca\xfd\x51\xe0\x27\xc9\x47\xf9\xf0\xa9\x22\x9a\xf7\x52\xfc\xdc\x21\x00\xe0\xcd\x9b\x37\xf1\xf3\x9f\xff\x3c\x7e\xed\x6b\x5f\xd3\x6e\xf7\x11\xa1\x77\x16\x16\xc0\xf0\x96\xe9\xc2\x5a\x5b\x9c\x9f\x46\x72\xd7\x91\x9b\x42\x02\xbf\x06\x06\x0b\xad\x60\x3d\xef\xe9\xd9\xc9\x56\x7e\x7a\x36\x28\x4e\x16\x3d\x3d\xd5\x0a\x0a\x34\x08\x89\x01\x85\x06\x13\xf4\x63\xd5\x7a\x06\x37\x29\x3f\x7a\x80\x56\x19\xb6\x5a\x53\xc0\xe9\x24\xab\x04\xcd\x10\x6e\x49\x28\xc3\x71\x95\x42\x4e\x41\x0d\xc2\x86\x23\x5e\xae\x82\xfc\x14\x09\x51\x32\x7c\x5a\x88\xa6\x9b\xab\x33\x0c\x99\x55\xdf\x2c\xb1\x94\x43\xde\xc8\x61\x7f\x54\x79\x06\x79\x4a\x23\xac\xd8\x7b\xbe\xd5\x96\x59\x62\x91\xc1\xca\x5a\x12\x80\x1b\x92\x87\x7c\xf1\x27\x06\x0f\xfc\x03\xf1\xa2\xe9\x11\x12\x86\xb5\x67\x0c\x9e\x28\x6b\x9e\xdf\x34\x60\x50\xad\x2a\xa2\x2a\xcf\xa9\xf5\x05\x22\x7c\xc8\xb7\xd2\xc2\x42\x4f\x7a\xae\x3f\x53\xc0\x44\xe9\x01\xdc\xba\x17\x3a\xfd\x53\x85\xab\x81\x5b\x0a\x10\x81\xa5\xc5\x47\xe0\x64\x2d\xa1\x76\xa1\x20\x9f\xf7\xf4\xe4\xfe\x30\xff\xf8\xc3\xbd\xd5\x7b\xef\x5e\x9a\xbf\xf5\xee\xa5\xf9\x8f\x6e\x5f\x58\xdd\x5a\x64\xe6\x14\xb0\x9c\x0e\x02\x80\x33\x28\x01\xcb\x99\xb5\xb0\xf8\x29\x21\x28\x0f\x92\x73\xeb\x58\x96\x50\x4d\x0f\xe5\x50\x4d\x25\x6b\x00\x7f\x0f\x9a\x06\x00\x78\xf9\xe5\x97\xf5\xc1\xc1\x01\x7e\xed\x6b\x5f\x8b\x4d\xf5\x4b\x7d\x25\x30\x3f\xc9\x52\xcf\xf9\xf0\x3e\x3b\xa6\x87\x62\x96\x07\x29\x7e\x1a\x8e\xeb\x17\x89\x37\x6d\xbe\x9c\x87\x14\x07\x95\x49\xd2\x09\xc0\x9e\x79\x1f\xcf\xf5\x09\xe5\x1d\x0b\xc7\x75\x85\x94\x4f\x34\x3d\x54\x3f\x37\x95\x87\xa4\xab\x38\x36\xe0\xf9\xd0\x25\x9f\x82\x72\x6d\xba\x1d\x9a\xbe\x73\x85\x19\x53\xb2\x4d\x89\xa7\x5d\x14\x07\x05\x52\xe6\x4a\xc2\x77\x01\x18\x12\x50\xa0\x95\x94\x57\x08\x29\x4e\xa9\xb2\x18\xe6\xcf\x0b\x92\x03\xb6\x26\x90\xc4\x69\xa8\xdc\x4d\xe6\xbb\x18\xef\xb6\xf8\xb9\x33\x00\x60\xee\xdf\xbf\x6f\xde\x79\xe7\x1d\x03\x00\xf0\xd4\x53\x4f\xe1\x9f\xff\xf9\x9f\x6b\xb6\x78\xd7\x75\xae\xce\xd4\xeb\x40\x0c\x98\xf2\x16\x57\x67\x0e\x76\x07\x49\xb9\x29\xa3\x02\x4a\x73\x71\xee\x01\x0d\x98\x42\x27\xb0\x9e\x64\xc5\xf4\x68\xb4\x3e\x3e\x1b\xe4\xf7\x17\x3d\x3d\xd5\x08\x39\x02\x2a\x65\x30\x41\x03\x4a\x02\x30\xbc\x82\x80\x7f\x0f\x17\x9f\xd2\xed\xb1\x60\xa0\x66\x85\x08\x74\x3f\x79\x91\xd6\x41\xf0\xdc\xaa\xd6\x24\x84\x5a\x5e\x92\x91\x82\x17\x4e\x87\x56\x7b\x93\xc9\x19\xa0\x87\x93\x81\x10\x06\x40\x48\x0b\x91\xb9\x6d\x27\x90\x8f\xdb\xbd\x38\xe1\x58\x38\x31\x0d\x41\x3c\x6c\xd1\x27\x95\x8f\xb2\x15\x76\xb1\x78\x5a\x1e\x3e\x96\x06\x1b\x98\x03\x38\xe0\x5c\x4d\x78\x9d\x83\x5d\x4d\x03\xe8\xa6\xa1\xb0\x62\x68\x00\xc1\x4d\xe9\xc8\x3b\xaf\x58\x7d\xb2\xbe\xe8\x4a\xc8\xed\x4c\x02\xb7\x9b\xcd\x04\x00\xcd\xb8\x04\x19\x00\xc4\x30\x0f\x90\x54\xb0\x10\x70\x54\x69\x09\x41\x1f\x0d\x57\x4f\xbd\x3f\xd9\x80\xe6\x9b\xb1\xdf\x6d\x32\xdd\x9e\x73\x8d\xa0\x17\x3d\x3d\xbd\x3f\x5c\x1f\x7e\xb8\xb7\x7c\xef\xdd\x83\xc5\x5b\xef\x1c\xcc\xde\xba\xbd\xb7\x7c\x7f\xd6\xd7\x47\xda\x5e\x86\x08\x00\x13\x63\x8c\x5b\xcb\x32\xb1\x0b\x71\x3d\x60\xb1\x16\x98\x15\x22\x2e\x01\x60\x65\xd7\xb0\xac\xe9\x40\xc5\x9e\x72\xeb\xa6\x93\x0d\x40\x09\x5a\x7e\xfd\xd7\x7f\x5d\xfd\xfd\xdf\xff\x7d\x93\xe5\x82\xf6\x3b\x6d\xfd\xb1\xd4\x77\x73\x7d\xc4\x07\xb4\x12\x3f\xae\xcf\x68\x58\x49\x47\xb8\xe9\x8e\x98\xbe\xa2\xfd\x37\x0f\xcf\xf9\xf0\x01\x2c\xb5\x38\x20\xd4\xf5\x80\xf4\xcc\xbb\x1b\x3e\x1d\x23\x85\xa3\x79\x44\x3b\xb3\xa6\xf4\x70\x50\x89\x2c\x3c\x9f\x56\xa3\xfc\x62\x5d\xb8\x34\x40\x07\xf6\x3d\x66\xb1\x42\x0e\x5c\x62\xa0\x81\x2b\x55\xfe\x1e\xb3\x2e\x48\x89\x90\x2c\x32\x75\x9d\x54\x7f\x97\x2c\x09\x34\xe3\x20\xc2\x83\x57\x4a\x4e\xdf\x84\x04\x63\x95\x4f\xaa\xd0\x5d\xd0\x2b\xe7\x2f\x8d\x12\x24\xc7\xf9\xf2\x38\x9a\x1a\x09\x0f\x23\xca\xf9\xc6\x1b\x6f\x18\x00\x80\x4f\x7e\xf2\x93\x98\x65\x59\x19\xa9\x1d\x31\x21\xed\xfd\xcb\x9f\xb6\x20\x86\x8e\xae\xe8\x6e\x23\xba\xf5\x71\x0d\x15\xb0\x29\x00\xa1\xd0\x0a\xf2\xb3\x41\x31\x3d\xda\x5e\x9f\x9c\x0e\xf3\xfb\x8b\x9e\x3e\xd3\x68\xd6\xca\xa0\x4a\x0c\x26\xf6\x0a\x01\x44\x76\x1c\xbc\x57\xbc\x08\xe4\x1c\x10\xb2\x14\x96\x69\xc9\xda\x5d\x48\x40\x94\x13\xab\x41\x34\x85\x2e\xce\xe0\xaa\x01\x1b\x1f\x07\x10\x4e\x26\xa7\x5f\xd0\xd2\x00\x9b\x96\x08\x81\x05\x59\x3f\x03\xf4\x0e\x24\x1b\xbf\x53\x5a\x06\x82\xad\xde\x4e\x36\x1f\xaf\x53\x80\x64\xeb\xb6\x9f\xc6\x32\x50\x1d\x79\x4f\xf2\xcd\xe5\x93\x53\x8e\x65\x39\x57\x7e\xf4\x5c\x1b\x2f\x32\x09\x47\x1b\x1d\xcd\x33\xc7\x8f\x9f\xad\x52\xeb\x1d\xe9\xa2\x5b\x43\x78\x92\xfc\xf1\xb2\x99\xaa\xac\x7c\x7a\x3c\x78\xa8\xf2\xba\x02\x95\x0e\x90\x60\x98\x27\x74\x51\xab\x45\x0e\x72\x19\x86\x60\x0b\x2d\xbf\x12\x03\x54\x75\xb1\x5a\x8b\x54\xa5\x8c\x4e\xfb\x54\xf9\x54\xcf\x7b\xfa\x4a\xf3\x24\xbe\x98\x1c\x00\x59\x60\xc4\x8a\xc2\xd7\x03\x53\x7e\x2c\xd3\x60\x5c\x1e\xe9\x55\xa2\xd7\xa7\x5b\xf9\xe1\x87\x17\x56\x3f\x7e\xe7\x60\xf6\x83\x1f\x5d\x9e\xbf\xf9\xe1\xde\xea\xd6\x34\x2b\x8e\x8d\xaa\xd6\xad\xd8\x73\x58\xce\x2c\x48\x71\xbb\x86\xe6\x50\xdd\x2f\xb4\x80\x12\xac\x04\x0b\x70\x49\x9b\x77\xfd\x82\xb7\xb2\xac\xd7\x6b\xf8\xe3\x3f\xfe\x63\x0a\x5a\x24\xa5\x48\x93\xcc\xc1\x03\xef\xbb\x24\x1d\xc3\xfb\x4f\xde\xef\x4b\xfd\x3b\x8d\x53\xd2\x61\xbc\x2f\xa6\x4a\x96\x16\x1f\x7f\x96\xd2\x16\xeb\xab\x29\x3d\x95\x53\x02\x36\x54\x0e\x49\xb7\x72\x5e\xd4\x71\xbd\xa9\x19\x2d\xd7\x87\x31\x59\xf9\x3b\x1f\x64\xc7\x64\x8d\xc9\xd5\xa4\xef\x28\xbd\x54\x7e\xc1\x1a\x97\x87\xb1\x36\x83\xbb\x18\x28\xd8\x74\x0d\x8c\x0b\x07\x1b\x86\x89\xc9\x13\x8b\x3b\x86\xf2\xa4\xe7\x2e\x7e\xd0\x40\xdb\xf6\xec\x5c\x5b\x5e\x35\xc9\x13\xfb\xce\xe3\x88\xc6\xf3\xe2\x8b\x2f\x2a\x00\x00\x44\xf4\x57\x06\x18\x63\x14\x00\xb8\x5b\xa7\x15\xda\x6b\x04\x4c\x75\xeb\x74\x0a\x00\x03\x44\xa4\xe7\xbf\xc4\xce\x82\xc9\x7a\x39\x6e\xef\xcf\x7a\x07\xd7\xc7\xd9\x8d\xeb\xa7\xfd\x1b\x97\x27\xbd\xeb\xdb\xab\x64\x2f\xd5\x68\x4f\x76\x26\x9d\x34\xb8\xd6\x16\x5e\x73\x57\x2a\x17\xa7\xc8\x43\x25\x6c\xfb\xf4\xda\xb4\x0f\xf5\xa3\x8e\xc8\xb5\x6e\x0f\x00\x00\x20\x00\x49\x44\x41\x54\xf6\x48\xd5\xdf\x4a\x85\xf8\x96\x4a\x14\x92\x5f\x4f\x52\x61\x15\x12\x9e\x2f\x85\x0d\x5b\xb9\x07\x54\x44\x39\x52\x5d\xe7\xe9\x9d\xd2\x27\xe0\x86\xcb\xe9\x1e\xa8\x25\xc7\x09\x28\x4e\xdd\x10\x17\x58\x7f\x78\x5e\x7a\x19\x68\xfe\x86\xf9\xc7\xe5\xe1\x7e\x00\xa4\x4c\x0c\xa3\x23\x84\x2e\x7e\xa7\x90\x79\x7e\x48\x89\x08\xe3\x90\xc3\x88\xef\x06\x82\x75\x4d\xee\x83\x4f\xbb\x10\x07\x2d\x7f\x7f\xae\x1d\x54\xcf\xbe\x57\x25\x79\x15\x8d\xdf\xc5\x67\x19\x7b\x6b\x09\x08\x61\x85\x72\x0f\xbf\x19\xff\x5e\x28\x93\x4f\xfb\xc5\xf1\x47\xbb\xab\x0f\x7e\xb2\xb7\x7c\xf7\xf6\xee\xf2\xce\xd9\x20\x3f\x29\x14\x4c\x21\x3c\x77\xc5\x83\x12\xa8\x16\xdc\xae\xa0\x04\x29\xee\xd9\x9f\x78\x6b\x07\x23\xfe\x19\xec\x20\xa6\xcc\xf7\xea\x72\x44\x00\x80\x5f\xfa\xa5\x5f\x52\xff\xf2\x2f\xff\x22\xf5\x43\x00\xf1\x7e\xb2\xe9\x5b\x97\x35\x23\xb1\x30\xd2\x77\xce\x4b\x0a\x2b\xf5\x9b\x9b\xf6\xe9\x4d\x71\x4a\x3c\xdb\xd2\xdd\x96\x67\x6d\x71\xb6\xe5\x11\x77\x31\xdd\x21\xf1\x93\xd2\x23\xc5\xdf\xb5\xfc\x45\xba\x5a\x5f\x20\x08\xdc\xc6\x88\x46\xba\x69\x06\x74\xf1\xe3\xf1\x74\xe1\xdb\xb5\xc2\x80\x40\xb3\x89\xfb\x69\x01\xbe\xff\xe8\x38\x1a\x9d\x70\x70\x9d\x62\x3f\x80\xea\x00\x3b\xba\x78\x57\x3a\xc4\x6e\xc8\x9e\x3d\xa8\x49\x0b\xdc\xde\x9b\xa7\xfb\x8f\x8c\xb3\x6b\x8f\x9e\xf6\x1f\xbf\x7a\x96\xdd\xd8\x59\xa4\x07\xa9\x41\x5f\x07\x64\x85\x2b\x28\x35\xc1\x75\xa1\x7b\xd8\xfc\xbb\x86\xdd\xc4\x35\xf1\xac\x2d\xa8\xdd\x90\xcf\xff\x7f\x57\x51\x43\xfc\x4c\x16\xbf\x1e\xa5\x41\x9e\xff\xc8\xbb\x8a\x0c\x94\x97\x20\x9e\x0e\xf2\xe3\x8f\x77\x56\xef\x7f\xb8\xb7\x7c\xff\xc3\x0b\xcb\xdb\xd3\x7e\x31\xd6\x60\xe6\x50\x82\x10\x0f\x4e\xc8\x21\x72\x6e\xc1\xad\xfb\xe5\xd6\x6f\x45\x0f\x8f\x03\xb2\xf0\x96\x9f\x7c\x4b\xc0\x0b\xbc\xf2\xca\x2b\xfa\x85\x17\x5e\x50\xff\xf6\x6f\xff\xd6\x06\x34\x1e\xc4\xff\x3c\x00\xe2\xbf\x16\x6f\x29\x9e\x4d\xf5\xe5\x26\xc0\xa3\x4b\xb8\x4d\xe3\x7c\x50\xda\xae\x34\x9d\xc2\x35\xdd\x55\x24\x45\xa2\x23\xcf\xd2\xbb\xc4\xab\x0b\x68\x89\xf1\xe6\x16\x02\x89\x5e\x8a\xa7\x49\x66\xce\xb3\x6b\xe6\x3b\x5e\x9b\x16\xc2\x26\x15\xa1\xab\x3c\xe7\x75\x9b\x34\x20\xe7\x3c\xbd\xed\xac\x28\x78\xa1\x9d\x5b\x0e\x25\x18\x71\x1d\xa0\x03\x2a\xee\x7d\x00\xd5\xae\x84\x0c\x4a\x00\xb3\xc8\x95\x59\xdc\xdb\x5e\x4f\x4f\x07\xf9\xf1\xed\x0b\xab\xdb\x57\x26\xbd\x2b\xd7\x4f\xfb\x37\xae\x9e\x65\x37\xf6\x66\xe9\x95\x9e\xc6\x0c\x85\xed\x33\x6d\x0a\x34\xb6\x60\x97\xd3\x9b\xc0\x2f\xa6\xb2\xe2\xe1\xa5\xb7\x36\x67\xc8\x74\x08\xe7\x12\x53\x52\x8d\xe9\x25\x26\x02\x14\x09\x08\xa9\xc0\x23\x54\xb0\x2c\x68\x03\xc8\x10\xad\x3f\xe0\x2c\x04\x64\x4d\x0f\x9d\x52\x01\x00\x40\x01\x38\x48\xe6\x93\x48\x7a\x63\x56\x1e\x47\x5d\x5a\xb0\xe4\x4c\x0c\x2c\x52\x31\x27\xc8\xe2\x76\xea\x48\xa7\xe7\x22\xff\xeb\xe9\xc2\x3c\xe6\x01\xe4\xbb\x92\xea\x90\x4a\x5a\x93\xa4\xd1\xe8\x45\xaa\x27\xc7\xc3\xf5\xe1\x9d\xdd\xd5\x07\x1f\xed\x2e\x3f\xb8\x3b\x5a\x1f\xcf\xb2\x62\x5c\x60\x68\x61\x01\xb2\x33\x08\xab\x7b\x85\x56\xf4\x67\xa7\x83\xf8\xbd\x42\xc1\x6e\x21\xb2\x53\x88\x4e\x25\xc3\x3f\xfd\xd3\x3f\x01\x00\xc0\x77\xbe\xf3\x1d\x31\x3b\x7f\xca\xee\x41\xfa\xe3\x4d\xc2\x36\xe9\x14\xca\xfb\x3c\x32\xc5\xe2\xd9\x34\xfe\x36\xda\x18\xe8\x68\xe3\xdd\x55\x67\xb7\xd1\x6f\x02\xb8\x6a\xae\x09\xdc\x6f\xaa\x44\xdb\xcc\x77\x4d\xbc\x9a\x12\x71\x5e\xc4\xd8\x55\x9e\x18\xcf\x26\x53\x21\xa5\x3f\x0f\x42\x6d\x92\x71\x13\xeb\x51\xd3\xbb\x14\x16\x40\x8e\xbf\x53\xe5\x22\xdb\xa6\xc1\x4e\x11\xd1\x78\x3d\x88\xb1\xdf\x6a\x5b\xa8\xdd\x54\x12\x58\x20\x63\xdf\xc3\xed\xd3\x00\x19\x18\x18\x28\x03\x83\x54\xe3\xf6\x70\x95\xec\xee\xcf\x7a\x07\x8f\x9e\x66\xd7\xaf\x9d\xf5\x6f\xec\xcd\xd3\x83\xc1\x5a\x8d\xf8\x49\xbc\x75\xa5\xb5\x99\x15\x20\x78\x6e\x50\xf6\x9d\x2c\x28\x06\x82\xb5\x30\x92\x6c\x31\xc6\x62\x3a\x9c\xee\xa6\x72\x53\x7d\xce\x84\x92\xa6\x4a\xea\x67\x88\x6c\x96\x37\xd2\xf7\xa6\x74\xb8\x47\x20\x72\x4a\xd7\x02\x04\x79\x4e\x89\x1b\xa2\xad\xa6\x6a\xc2\x7b\x8b\x1c\x6f\x43\x98\x22\xc9\x30\x47\x4b\x79\xf2\x28\x9b\xe0\xaa\x71\x89\x60\x7c\xba\x5a\x4b\xe2\x69\xb2\x50\x99\x94\x1b\x45\xaf\x92\x75\xca\x00\x40\x81\x26\x9f\x66\xc5\xf8\xde\xf6\xfa\xce\x9d\xdd\xd5\x07\x77\x76\x56\x87\xf7\x87\xeb\xa3\x79\x4f\x4f\x0a\x65\xe6\x06\xcb\x8b\x0f\xe9\x74\x10\x39\x7b\xc5\x81\x17\x77\x3c\x7f\x70\x19\xa2\xa9\x6e\x6e\xd6\x50\x4d\x11\x01\x80\x3f\xaa\x3f\xb0\xb4\xfc\xdd\xdf\xfd\x1d\x9c\x9d\x9d\xc1\x6c\x36\x83\xf5\x7a\x0d\x20\x0f\x36\x37\xb1\x02\x74\x99\x4e\x68\xeb\x1b\x41\x08\xc7\xc3\xf2\x38\x25\x59\xb9\x5f\x4c\x3e\x29\x1d\x12\x7d\x17\xbe\x4d\x69\xe8\x62\xf9\xe1\x74\x4d\xf1\x48\xf9\xd3\x96\x86\x36\xab\x94\x94\x16\x29\x0d\x52\x1c\x94\x56\xcc\x73\xde\xce\x62\x81\x36\x55\xb0\x6d\x4a\x39\x56\xe1\x24\xde\xb1\xc2\x6a\xca\xc4\x4d\x4d\x62\xd4\xaf\x4b\xb8\x36\x9a\x18\xff\x4d\x5c\x57\x40\xd4\x35\x9e\x07\x92\x67\x77\x77\x57\x8d\xc7\x63\x0d\x10\x4e\x1d\x91\x11\xb4\x04\x60\x52\xb7\xfe\x05\xc2\x69\x24\x3a\x75\x44\x81\x8c\x5f\x17\x63\x8c\x19\x20\xe0\x00\x4b\x00\xb3\xb5\xbd\x4a\x76\xf7\xe6\xe9\xc1\x95\x49\x76\xe5\xda\x38\xbb\xbe\x3f\xeb\x5d\x19\xae\xd4\x6e\xaa\x31\xf3\xbb\x3e\x98\x9a\xe1\xa3\x55\xb7\x16\xa0\xab\x92\xe9\x46\x13\xbf\x07\xa9\x8b\x16\x0b\xc8\x22\x8b\x33\x9c\xc2\xac\x6d\xc3\xf5\xe4\xec\x7e\x1b\x1e\xb5\x4b\x33\x59\x23\x43\xf3\xa0\x69\x8c\x2f\xed\xf6\xa9\x2d\x3e\x6e\x49\x72\x08\xc6\xa8\xf5\xa5\xce\x3b\x94\x8b\x5b\x62\xac\xc5\x43\x00\x72\x62\xac\x1c\x3d\x32\x60\x18\x03\xaa\x01\x08\xa2\x29\x30\xf4\x20\xb7\x10\x6c\x04\x31\xb3\x62\x8c\xa6\x07\x42\x5e\x92\xd8\x94\x1f\x18\x00\x8d\x00\x79\xa2\x17\x67\x59\x31\x3e\x1a\xad\xef\xdc\xd9\x59\xde\xbe\x3b\x5a\xdf\x39\xdd\xca\x4f\x16\x3d\x3d\xc9\x95\x99\x5a\xc0\xe2\xd7\xad\x00\x01\x2c\x50\x59\x54\x02\xc0\x42\xad\x2c\x64\x1a\x88\x4e\x09\xd5\x46\xe2\x6e\x2d\xcb\x63\x8f\x3d\xa6\x7e\xf2\x93\x9f\x6c\xa2\x2b\x1e\xa6\x7f\x57\xda\x8d\x06\x69\x82\xdf\x26\xcf\x9b\xf6\xd7\x5d\x78\xc7\x5c\x57\x7e\x5d\xf4\x66\x53\x9c\x9b\xe4\x7d\x17\x59\x1f\x28\x1f\xa4\x66\xbf\x89\x30\x5d\x0a\x2a\x16\x0e\xa0\x5e\xb1\xa8\x5f\x17\x04\xc8\xe5\xe8\x12\x0f\xa7\xef\x5a\xd9\x24\xd9\x36\x49\x7b\x1b\xb8\x6a\xab\x44\xe7\xa9\xc4\x5d\x2a\x61\x13\x8a\x07\x4e\xf3\xe4\x93\x4f\xaa\x1f\xff\xf8\xc7\x9a\x5a\x5f\x00\x42\x0b\x0c\x59\xb0\x4b\x41\x8c\xb7\xc2\x80\x5d\x03\x43\x2c\x30\x03\xfa\x0c\xe1\xa1\x76\x99\x31\x66\xa0\x00\x07\x69\x81\xdb\x5b\xeb\x64\x74\x61\x91\xec\x5f\x9a\xf6\x0e\xae\x9e\x65\xd7\x0f\xa6\xbd\x2b\xa3\x65\xba\x97\x15\x38\x54\x86\xa8\x05\x59\x2b\x8b\x56\x8d\x4d\x47\xca\x92\xa3\xa0\x48\xfa\x48\x4f\xd2\x8d\xdd\x5c\xdd\x5d\xae\xf0\x0b\x3d\xb1\x37\x04\x3c\xa1\xbf\x61\x04\xb1\x34\xb7\x6d\xaf\xee\x4a\xcf\x01\x57\xed\xd0\x3b\x06\x52\x1c\x30\xa8\xd1\x4a\x71\x12\x1e\xce\x83\x5a\x2b\x50\x48\x60\x93\x05\x45\x20\x6f\xa9\x17\xf5\xaf\x22\x28\x72\xdf\x22\xeb\x73\xb8\x45\x2a\xb4\xb8\x94\x79\x62\xd0\x80\x46\xd0\xab\x54\xcf\x4e\x07\xf9\xf1\xdd\xd1\xfa\xf6\xe1\xce\xea\xf0\x78\x6b\x7d\x34\x2e\xcf\x45\x9a\x14\xca\x4c\x35\x78\x2b\x8a\xbb\xec\x70\x61\x8f\xe2\x0f\x2c\x2b\xee\x87\xe5\x05\x88\xee\x2f\x3f\x3c\x8e\xfe\xca\x74\x91\x83\xe4\xe6\xf3\x39\xfc\xf3\x3f\xff\x33\x00\x00\xfc\xf8\xc7\x3f\x6e\x52\x8c\x10\x79\xdf\xa4\xdf\x74\xae\x4b\xbf\xc9\x2d\x15\xd4\xb5\x01\x99\x36\xf9\x9a\xe2\x96\xe2\x8a\x7d\xe7\x7e\x31\x39\x9a\xd2\x21\x59\x31\xda\x68\x62\x72\x4b\xe9\x95\x64\x8e\xf9\xc7\xe2\x8f\xf1\x8a\x39\x29\x5f\x68\x78\xff\xbd\x4b\xf7\x14\x03\x10\x6d\x0a\x98\x3f\xc7\xbe\xc5\x0a\x6c\x13\x85\xdd\x16\xaf\x44\x77\xde\xb8\xba\x5a\x5c\xba\xf2\xeb\xc2\xa3\x4b\x7c\x9b\xc8\xb5\x49\xdc\x51\x7e\xcf\x3f\xff\xbc\x7a\xe1\x85\x17\x6a\x61\xec\x29\xb5\x35\xf0\x62\x7f\xd4\xfa\xe2\xc0\x8b\x03\x33\xdc\x02\x93\x39\xf0\x62\xbf\x0d\xd0\x40\x96\x68\xdc\x1e\xe4\x6a\xb4\xbb\x48\xf6\xf6\xa7\xbd\x83\x2b\x93\xec\xda\xc1\xb4\x77\x65\x67\x99\xec\x0d\xd6\x6a\x98\x68\xcc\x9c\x2a\xaa\xa6\x21\xa0\xd3\xf4\x0f\x37\xdf\xb7\xb9\x2e\x53\x2e\x00\x44\x11\xd7\x64\x89\x80\x90\xa6\x38\xa9\xc5\xc1\xb9\x26\x21\x38\x48\x20\xa7\x08\x4b\xf2\xd3\x1d\x3f\xa1\x65\x83\xe4\x0e\xb3\xde\x88\xd1\xd2\x34\x0b\x20\x82\x6f\x19\x77\x91\x1a\x9b\x9e\xa0\x1c\x88\x7f\x09\x4c\xc2\x69\x13\xc1\x70\x13\x7e\x31\x16\x1c\xa1\xab\x15\x91\x92\x36\x55\xba\x29\x78\x8a\xda\xf3\x08\x10\x35\x0c\x04\x49\x31\x84\x53\x5a\x94\x3f\x3d\xcf\xa7\x7c\xd3\x68\x74\xae\x4c\x3e\xef\xe9\xc9\xe9\x56\x7e\x74\x38\x5a\x1d\x1e\x96\xd6\x95\xa3\xb3\x7e\x3e\x5e\x25\x7a\x5a\x28\x98\x19\x28\x41\x0a\x84\xa7\xda\x4a\xa7\xdc\xd2\x05\xb7\xee\xaf\x86\x70\xb7\x50\xf4\x06\x67\x80\xca\xca\xc2\xdc\x79\x06\xbb\xd2\x33\x08\x7c\x36\xa5\xdf\x44\xa6\x07\xb1\x9c\x48\x71\x6c\x62\x95\xe9\xe2\x62\xfc\xbb\xca\xd5\x45\x0f\x72\x7a\x88\x84\xd9\x24\x2f\xba\x60\x80\xa6\xfc\x6e\x1d\x4c\x63\x83\x40\x5d\xad\x18\x5d\x2a\x5c\x17\x9e\x31\xd4\xd7\x96\xa1\x6d\x32\x34\xc9\x16\xfb\xdb\x55\xae\xa6\x34\xc5\xbe\x75\xb1\x8a\x6c\xda\xe8\xba\xb8\x07\x01\x51\x9d\x40\xd1\x4b\x2f\xbd\xc4\xa7\x8e\x5c\xb8\x56\x00\x03\xf5\x9d\x48\x03\xfe\x4c\xa7\x92\xa0\x5c\x07\x93\xf5\x73\xb5\xbd\xb3\x4c\xf6\x2e\xce\x7b\x07\x17\xa7\xbd\x83\x83\x69\x7a\x65\x6f\x9e\xee\x6f\xaf\xd2\xdd\x5e\x01\x59\x79\x2f\x52\xf3\xc2\xdc\x4a\xa1\x57\x8a\xda\x60\x3b\x80\x88\xb9\x1a\x9e\x08\xf5\x67\xe5\x2f\x09\x21\xc8\x07\x4c\x36\xca\xab\x0e\x3a\x04\x4b\x45\x5c\xb3\xfb\x30\x00\x50\x6d\x53\x6e\x01\x78\x3e\x0d\x35\xab\x49\xc4\xda\x40\x9e\x6b\x62\x78\x90\x53\xfe\xad\x01\x21\xf2\x9d\xaf\xe9\xf1\xe0\xa7\x14\x5e\x16\x1a\xe4\x3c\xa1\xc0\x89\xef\xc4\x82\x20\x0f\x1c\x94\x80\x60\xfb\x33\xdd\x96\x0c\x2c\x0c\x4d\xaf\x7b\xc1\x48\x41\x1a\x4b\x54\x1e\x68\x57\x02\x98\x42\x99\x7c\x95\x98\xc5\xb4\x5f\x8c\xef\x0f\xd7\x47\x77\xb7\xd7\x87\xf7\xb6\xd7\x87\xf7\xb7\xf2\xe3\x69\x56\x9c\xe4\x89\x99\x1b\x80\x05\x20\xd0\x6d\xcb\x1e\xa8\xd0\xa9\x20\xb7\xb5\xd9\xfe\x72\xf2\x57\x0b\xc0\x05\x80\x59\x59\xe8\x16\xe7\xaf\x7c\xe5\x2b\xea\xaf\xfe\xea\xaf\xda\xfa\xbd\xb6\xd1\x7c\x97\xbe\xb3\x0b\xa0\xd8\x84\xf7\x79\xe3\x3c\x2f\xef\xf3\x0c\xd8\x37\xc9\x87\x2e\x72\x43\x44\x96\x36\xde\x9b\xe4\xdb\xc3\xe6\xdd\x94\x16\x20\xdf\xa2\x3d\xf3\xc3\xb0\x14\x34\xf1\x6b\x43\x84\xa2\xb0\x42\xb8\x18\x88\xe2\x61\x9b\xe8\xba\xa0\xf9\x56\x04\x28\xc8\x26\x7d\x8b\xf9\xb5\x21\x4d\x2e\x2f\x4f\xa7\x24\x2b\xf5\x93\xd2\xd0\x46\x2b\x55\xa4\x28\xcf\x2f\x7c\xe1\x0b\xea\x5b\xdf\xfa\x96\x06\x10\xb7\x4f\x03\x80\x3c\x85\x04\x91\x7b\x90\xe8\x42\x5e\x6a\x79\x09\xc0\x4b\xb9\x90\x37\x43\x80\x41\xa2\x71\x6b\x6b\xad\x46\x7b\xf3\x74\x6f\x7f\xd6\xbb\x72\x79\xd2\xbb\x76\x71\x96\xee\x8f\x96\xe9\xee\x20\x57\xc3\x54\x63\x56\x1e\x6c\x27\xc0\x11\x6e\x51\x68\x00\x13\x2c\x80\xe8\x82\x29\x03\x11\x08\x54\x9a\x8f\x2a\x6f\x51\x49\x43\x38\x4a\xa7\x23\xfc\xd8\x74\x05\x32\x0f\x43\x78\x47\xa7\xb3\x62\x69\xa1\x71\x77\xa1\xef\xc8\xde\x10\x42\x9e\xd5\x1b\x8a\xd8\x2a\x47\x93\xc1\xad\x6d\xfb\x78\x0c\xf4\x54\x65\x5b\xed\x19\x6a\x95\x39\x92\x30\x0d\x06\x34\x42\x9e\x27\x26\x5f\xa4\xc5\xe4\x6c\x50\x8c\x8f\xb7\xf2\xa3\xa3\xd1\xea\xf0\xde\xf6\xfa\xf0\x64\x90\x1f\x2f\x7a\x7a\xa6\x55\x79\x18\x1c\x59\x9b\x42\xa7\x84\x1c\x48\xa9\xdd\x23\x04\x16\xb0\xf0\x6d\xcd\x0e\xb8\x38\xab\x8a\x3d\x97\xc5\x2f\xbc\x75\xcf\x77\xee\xdc\x81\xbf\xfd\xdb\xbf\x6d\x1a\x41\x03\xb4\xf7\x8d\x40\xe8\x9a\xfa\xb9\x4d\x15\x1b\x08\x34\x31\x79\x9a\x14\x7b\xcc\xaf\xad\x0f\xe5\xf1\xc7\xdc\x26\x7d\x76\x57\xbd\x28\xf1\xe4\xbc\x63\xb2\x6c\xf2\xbd\x4d\x2f\x6d\x92\x1f\x5d\x41\xa9\x73\x22\x0f\xda\x8c\xba\xa0\xbb\x36\xa1\xda\xe8\xce\x1b\xee\x61\xd3\x3f\x0c\x7e\x9b\xd0\x3c\x2c\x7e\x6d\x71\x00\x9c\x2f\xbf\x1f\xba\x13\xac\x2f\x54\x26\xff\x73\x87\xd9\x01\x80\x03\x2e\x14\xc8\x38\x8b\x4b\x0a\xf2\x3a\x98\xe0\x1d\x2c\x90\x49\x35\x6e\x5d\x58\x24\x7b\x97\xa6\xbd\x2b\x07\x93\xec\xca\xfe\x2c\x3d\xb8\xb0\x48\xf7\x86\xab\x64\xd4\x2b\x70\x50\xde\x50\x5d\x5e\xee\x58\x47\x09\x10\x80\x98\xc6\x03\xd0\xa0\xdd\xbf\x11\x03\x45\xa6\x59\xfc\x54\x05\x9b\x36\xda\x54\xa1\xd7\x64\xa7\xd3\x31\x14\xc4\xb0\xdd\x2a\x76\x46\xa5\x74\x41\xd6\x34\x5b\xa1\x5a\x0c\x3b\x35\x1f\x77\x2c\xbd\xbc\xb4\x9a\x46\x1f\xa0\x35\x96\xc6\x52\xf6\x9a\x41\x63\x43\xf9\x82\xf8\x1c\xd8\x03\x6f\x6b\x89\x03\x50\x52\xba\x41\x76\x5a\x66\x15\x05\x3f\xdd\x18\x40\x23\xe8\x42\x99\x7c\x99\xea\xd9\x34\xd3\x93\xd3\xc1\xfa\xe4\x78\x98\x1f\xde\xdb\x5e\x1f\x1e\x0f\xd7\xc7\x67\xfd\xe2\x64\x9d\x9a\x39\x58\x30\x42\xc1\x89\xf4\xcc\x2c\x2c\x6e\xcd\xca\xca\xae\x5f\xf1\x07\xc7\x01\x84\xd3\x41\x50\xf5\x11\xda\xe5\xa9\x00\x58\x00\xba\x03\x87\x26\xa5\xd6\xc5\x2a\x11\xa3\xdb\xa4\xaf\xdb\x44\x56\x89\x46\x72\x9b\xf4\xa7\x12\x10\x8a\xf1\xdb\x04\x98\x75\x91\xef\x41\xd3\xde\x96\xf7\x5d\x00\x09\x08\x74\x6d\xa0\xa5\x2d\x5d\xde\x61\xec\xc3\x39\x05\x88\x85\x6d\xb2\x38\x70\x3a\x20\xef\x4d\xb2\x74\xc9\xc0\x58\x5c\x12\xff\x58\x3c\x5d\xf8\x3f\xe8\xb7\x36\xb7\x09\xdf\xf3\x34\xe0\x87\x21\x63\x2d\xfc\xef\xfe\xee\xef\xaa\xd1\x68\xc4\xbf\xd3\xe7\x00\xc0\x90\x1d\x48\xee\xaf\x03\x2d\xd2\x61\x76\xd1\xdd\x49\x50\xdd\x5c\xdd\xdf\x5a\xa9\xd1\xc5\x59\x6f\xff\xf2\xa4\x77\xe5\x60\xda\x3b\xb8\x38\x4f\x0f\xb6\x57\xc9\xee\x20\x57\xc3\x5e\xa1\x32\x65\x40\xa1\x00\x62\x44\x25\x27\x0c\xdd\x63\x3b\x63\xba\x3a\x77\x62\xae\x9f\xfe\x89\xac\xab\x08\xd8\xf2\xa9\x1e\xa8\x14\x66\x93\x75\x24\x36\x8d\xd4\xb8\x75\x3b\x62\xae\xa8\xa7\xbb\xf4\x68\xb2\x5a\x70\x25\x1e\x9d\xc2\x01\x61\x1a\x8a\x2d\xf2\xe5\x87\xbf\x49\x67\xaa\x54\x77\x0a\x49\xfc\xc2\xa9\xa7\x6a\x9d\x4a\x05\x3a\x6a\x8e\x24\xae\x96\x16\x0a\x4c\x8c\x85\x31\xec\xfc\x19\x00\x03\x06\x41\x17\x68\xf4\x3a\x31\xab\x79\x4f\x4f\xc6\x83\xfc\xe4\x78\xb8\x3e\xbc\x37\xcc\x0f\x8f\x46\xab\xa3\xd3\x41\x7e\xb2\x4a\xcb\x85\xb6\x0c\x8c\x50\x4b\x8a\x7f\x26\xdf\x73\x08\xa7\x84\xf8\xb9\x4a\xf4\xf0\x38\x6f\x61\xe1\x5b\x9c\x23\x6b\x58\x24\x77\x5e\xc5\xb3\x49\xbf\xfd\xa0\xf1\x40\x0b\x7d\x9b\xdb\x54\xd6\xf3\xf2\x79\x10\x85\x0e\x1b\xc8\x72\x1e\x4b\x4b\x93\xee\x8f\xf9\x9f\x17\x10\x76\x06\x50\x6d\x5d\x6c\x9b\x00\x9b\x28\xf9\x07\xa9\xb0\x5d\xfd\x1e\xa4\xa2\x35\x65\x3c\x40\x1c\x64\xc5\x10\x69\x53\xb8\xb6\xef\xdc\x75\x89\x5b\xa2\xed\x22\x6b\x1b\x9f\x4d\xf9\x05\xf9\xfc\x3b\xbf\xf3\x3b\xea\xab\x5f\xfd\xaa\xdf\x85\x44\xad\x30\x86\x5c\x21\xe0\xa6\x90\x24\x00\x43\xac\x2f\xfe\xd9\x54\xd7\x0b\x78\x00\x43\xac\x2f\x0e\xb8\xf8\x77\xa5\x61\x6b\xb4\x4c\x46\x97\xa6\xbd\x83\xcb\xd3\xec\x60\x7f\x96\x5e\xd9\x5d\xa4\x7b\xdb\xff\x5f\x7b\x57\xef\x23\x39\x52\xf6\x1f\x97\xdd\x3d\x3d\xbd\x33\x73\xab\xbb\x3d\x08\x10\x39\x04\x04\xc4\x04\x04\x48\x24\x5c\x88\x8e\x08\x11\x2d\x7f\xd4\x2d\xc9\x85\x20\x42\x2e\xe4\xfe\x02\x22\x40\x02\x21\x02\x24\xc4\xe9\xd5\xed\xb2\x2c\xb3\x33\x3d\x3d\xdd\xee\xf2\x1b\x74\xdb\x5d\x7e\xfc\x7c\x96\xdd\xb3\x03\xdc\x23\xcd\xb4\x5d\xf5\x7c\xd5\xf7\xcf\x55\xe5\xf2\xa6\xbc\x3a\xdb\x16\x17\xb3\x18\xaa\xc3\x47\x1e\x0f\x34\x3c\xa2\x1f\xd2\xfb\x74\x10\x13\x8e\xd3\xa7\x9e\xe4\xd3\xe1\x7d\xa0\xbb\xbf\x05\x82\x1c\x2c\x29\x3b\xc2\xa4\x44\xe2\x47\xfa\x91\x84\xc3\x60\xdf\x40\x07\x2a\x40\x02\x4d\xc9\xc0\x0f\xc0\xfb\x81\x81\x07\xe5\x47\xcf\x67\x50\x36\xf0\x62\xbf\x98\xb7\x8d\x8e\x40\x44\x41\x8e\xdd\x6c\x0a\x3f\x9b\x95\xa6\x91\xdc\x5b\xd3\xc3\x24\x07\xc8\x42\x82\x9a\x36\x1e\x62\x0c\x00\x75\x68\x36\xf7\xd5\x6e\x75\x33\x8f\xd7\x6f\xce\xeb\x57\xaf\x2e\xb6\x5f\xfe\xdf\xe5\xfd\x17\xaf\x97\xf5\x9b\x4d\x15\x57\x4d\x01\xf7\xc9\x6b\xc9\x1d\x40\x61\x66\x5a\x7a\x1b\x6d\xe1\x78\xf6\xca\x06\x6d\xb4\xed\xce\x63\x39\xec\x65\xea\x4e\xbc\x6d\xc3\x8a\xa2\x80\x18\x23\xfc\xe2\x17\xbf\x88\x6d\x7b\x3d\xc4\x4b\x0f\xae\x6d\x38\xee\xaf\xb4\x07\x55\x4c\xd6\x87\x27\xe9\xe9\x5f\xf3\x87\xf3\x1d\xeb\xc2\xfc\x5c\xff\x28\x0d\xb2\x9c\x2d\xef\x78\xc0\x85\x61\x9f\xa5\xfc\xa6\xd2\xc9\x5d\x8f\x19\xdb\x3c\x63\x92\x96\x16\x4c\x64\xda\x0a\xc6\x29\x0b\x2a\xb3\x56\xb8\x1c\xd2\x74\x5b\x6d\x49\x08\x9c\xab\xa8\xdc\x7d\x4e\xfa\xbc\x08\xf7\x14\x34\x06\x09\x4f\x4e\xc9\xfe\x17\x00\x00\x7c\x90\x1d\xf5\x97\x7e\x0f\xa9\x9b\x81\x41\x4b\x49\xdd\xdf\x21\x3c\x05\x2d\x78\xa9\xa9\x2a\x23\x9c\x3f\xd9\x94\x17\x1f\xdc\xce\xde\x7f\x76\x33\x7b\xf6\xc1\x6a\xfe\xb5\xa7\x77\xd5\xb3\x27\xf7\xe5\xd5\xa2\x2e\x96\x65\x2c\xaa\x74\xe8\x2b\xb8\x11\x9b\xa2\xc1\x08\x48\xcc\x44\xa0\xa7\xff\x9e\x18\x31\x03\x52\x60\xb5\x68\xb6\x83\x8b\xeb\xbf\x7d\xd4\x5f\x37\x62\x56\xa9\x48\xb0\x26\xed\xf3\xe8\xee\x89\xa5\x14\xd2\xf7\x34\x9d\xd0\x07\x1b\x47\x70\xd5\x3f\x95\x36\x95\x01\x80\x0e\x3c\xb4\x4a\x39\x80\x55\xf4\x45\x18\xd0\x95\x7e\xb8\x11\xcd\x7e\x25\x7c\x94\x2e\x8c\x93\x9a\xee\xfe\x90\x92\x02\x60\x1b\x9a\xcd\x7e\x29\x68\xf7\xe6\xdf\xe7\xf5\xeb\x7f\x2e\xb7\xaf\xbe\xbc\xdc\x7e\xf9\xf2\xc9\xe6\xf5\x6a\xbe\xbb\x01\x80\xf6\x28\xfe\x1a\x81\x12\xf6\xcc\x15\xe8\x6f\xb2\xe5\x66\x58\xda\x3d\x2b\x31\x39\x2c\xae\x03\x2c\x00\xd0\x1d\xcf\x0f\x00\xf0\x93\x9f\xfc\x24\xfc\xf2\x97\xbf\x94\x06\x2d\x8a\xb4\x3e\x54\x1b\xa0\x3c\xd7\xd6\x7e\xcc\xfb\x30\xdd\xf2\x6a\x3a\x2d\xe3\x86\x45\x9f\x25\x3d\x29\x59\xcb\xc1\xda\xaf\x7b\xca\x2c\x47\xbf\xc4\xaf\x61\x07\xab\x9d\xaf\xbe\x55\x44\xf0\x78\xe8\xa1\x81\xc7\xbb\x22\x2b\xa8\x75\x11\x02\x31\x21\xf9\xc5\x7f\x6d\x38\x7e\x13\x89\x7a\xa5\xba\x03\x2a\x20\x2f\x2f\x55\x00\x30\x2f\x1a\x38\x5b\x6c\xc3\xf2\xc3\xdb\xf9\xfb\x1f\xde\xcc\xbe\xf6\xc1\xed\xec\xd9\x7b\x77\xe5\xb3\xcb\xfb\xea\xe9\x62\xbb\xdf\xd4\xcb\xbd\x95\x84\x49\x03\x03\x53\x91\xa4\x53\xdb\x6c\xaa\xe9\xf9\xea\x5b\x45\x82\x7d\xe4\x0b\x5e\xae\x6a\x79\x36\x65\xdc\xdc\xcd\x76\xd7\x6f\x17\xbb\x37\x6f\xce\xb7\xaf\xff\xb9\xac\xbf\x7c\x79\xb1\x7d\xf5\xaf\xf3\xed\x9b\xbb\xf9\x7e\x66\x05\x86\x6f\xfa\xac\x93\xfb\x74\xdf\x4a\x4d\xcc\xb0\xf4\x00\x4b\x02\x4a\xd8\x73\x58\xd0\x52\x5b\x7c\xf1\xe2\x45\x7c\xfe\xfc\x79\x68\x81\x0b\xd8\x9e\x78\xa7\x00\x1a\x9c\x6e\x6f\xf8\x58\x20\xf4\x90\xba\x29\x3b\x63\x01\x00\x08\x7a\x2c\x72\x5e\x9b\x63\x79\xad\x3c\x26\xb9\xa9\xfb\x54\xd2\x88\x21\x7e\x0a\x94\x47\xf1\x71\x05\xe5\x29\x78\x1c\x26\xe9\xb4\x22\x4b\xcd\x77\x4b\x65\xd3\x1a\x80\x25\x5d\xd6\xb2\xd2\x9e\x28\x24\x62\xf3\x2d\x05\x2e\xc9\xcc\x8b\xf8\x39\x81\xe4\x2f\x7d\x13\xa9\x6a\xf6\x5f\xa4\xee\x96\x94\xe0\x38\x03\x33\x47\x33\x33\xe9\x99\x31\x15\x34\x87\x65\x26\x80\x2a\x34\x70\xb6\xd8\x96\x17\xef\xdd\x55\x4f\x9f\xdd\x56\xef\x7f\xb0\x9a\x3d\x7b\x6f\x35\x7b\xff\x72\x53\x3e\x3d\xdf\x86\x8b\x79\x1d\x16\x25\xfa\xd4\xc0\x80\xba\x27\xfe\xe1\x8c\x81\x67\x70\xd7\x88\xdc\xab\x61\x24\xd5\x1f\xc2\x2f\x32\xc8\xac\x88\x50\x9d\x80\x90\x01\xc0\x10\xf4\xa5\xe9\x06\x00\x00\xe2\xb5\xf5\xfe\xac\xd3\xf1\xbb\x42\xfd\xc3\xf8\x8c\xc0\x8b\xf1\xbb\xbd\x86\x02\x20\x16\x4d\xbc\xaf\x9a\xd5\x6a\xbf\x67\xe5\xf5\xeb\x27\xdb\x57\xaf\x97\xdb\x57\xff\x5c\xd6\x6f\xae\x17\xf5\xf5\xa6\x8a\xab\x58\xc0\x7d\x03\xb0\x01\x68\x36\x80\xf6\xa4\x34\xc3\x13\x6c\xdb\x0d\xb5\xbd\x3d\x2b\xe9\x41\x71\xc9\x75\x4c\xde\x08\x4a\x4f\xbc\x6d\xfd\x4c\xdb\x68\x77\xfd\xfb\xdf\xff\x1e\x7e\xf7\xbb\xdf\x41\xd3\x34\xb0\xdb\xed\x30\x1f\x40\xde\x43\x2a\xc5\xc7\x5d\x5b\x74\x4b\xfd\x20\xa7\x5b\xf3\x47\x03\x5b\x40\xc8\x48\xba\xb1\x9c\x25\x7f\xc6\xa6\x41\xbb\xf6\xea\x96\x64\x70\xbc\xc5\x2e\xc7\x93\xde\x5b\xc6\x33\x4e\xf7\xa0\xad\xe6\x0e\x82\x1a\x92\xcb\x1d\x30\xd3\xfb\x56\xbf\x04\x68\xbc\x68\xdf\xa2\x53\xf3\xcf\x5a\x29\x72\xc9\x83\x52\x73\x11\xad\x45\x2f\x9c\x48\x37\x0b\x60\x92\x7b\x16\xc0\x34\xf4\x67\x05\xba\x0d\xbd\x09\x70\xa1\x36\xf8\xf6\xc3\x9a\xa6\x2a\xa0\x98\x87\x06\xce\xca\x58\x2c\x16\x75\x58\x5e\xac\xab\x8b\xab\x75\x79\xf5\x74\x5d\x3d\x7d\xef\xae\x7a\x7a\x79\x5f\x3e\x7d\xb2\x29\xaf\x96\x9b\xf2\x62\xff\x8a\x35\x03\x64\x88\x3d\x27\xd6\x19\x19\x3c\x63\x90\x86\xa5\x4b\x16\xed\xbd\x57\xf7\x20\xcc\x30\x4b\x63\x19\xd8\xb9\xe5\x2e\xcc\x74\x7c\x63\x87\x5e\x7e\x11\x97\x98\x28\x3e\xc2\x7f\x6e\x29\x8b\xb6\xd7\x1c\xc2\xc8\x69\x99\x23\xa8\x3c\x5c\xc7\x6e\x73\xed\xee\xe6\x76\x1e\xaf\xdf\x2e\xea\xeb\x7f\x2f\xea\xd7\x6f\xce\xeb\x37\xff\x3a\xaf\x5f\xbf\x3d\xab\x6f\xb6\x65\xb3\xde\x85\xe6\x2e\x16\x07\x80\x52\x1c\x67\x57\xd2\x25\x21\xe2\x1a\xcf\xa6\xf4\x80\x0a\x7e\xa5\x19\x60\xf0\x86\x50\xfa\xdb\x5d\xa7\x9b\x6f\x2f\x2f\x2f\xc3\xdb\xb7\x6f\x2d\x0f\x6b\x12\x69\x63\x85\x06\x12\xa6\xba\x1e\xa3\x83\x4b\x8f\x77\x1c\xf1\xf0\x70\x72\xc0\xc8\x7a\xec\xe4\xfa\x34\x45\x7e\x73\xba\xbd\x36\x4d\x69\x28\x04\x23\x16\x67\x24\x59\x0e\x18\x58\xec\xa4\x72\x58\x87\xa5\xd0\x5a\xd2\x40\x0d\x65\xd3\xe2\xdf\x54\x03\xb8\x25\x4f\x25\x60\x34\x45\x7a\xbc\x34\x36\xfd\xac\x3c\xde\xff\x02\xfd\xb2\x64\xc1\x4b\xf2\xd7\xee\x87\x19\x1c\x6c\x87\xce\x89\xe9\x40\x0b\x9a\x91\xe9\xc5\x1f\x4e\xe9\x3d\x2b\x23\xcc\x67\x31\x2c\x16\xdb\xb0\xbc\xb8\x2f\xaf\xae\xee\xcb\x8b\xf7\xee\x66\x4f\xaf\xd6\xe5\xd3\xcb\x75\xf9\x74\xb9\x2d\x2f\x16\x75\x58\x56\xbb\xe3\xb2\x52\x6f\xf9\x01\x8d\xa2\xd4\x5e\x0b\x8a\xba\xa7\x66\x61\x66\x43\x9b\x71\xf1\xce\x2c\x48\xaf\x7f\x8b\xb3\x48\xc9\x5b\x45\x80\x7c\x3a\xee\x60\x29\x7a\x3e\xf4\x6d\x60\x2e\xec\x6d\x7f\x41\x87\xdd\xa4\x8b\xe5\x11\x82\x92\xd3\x47\xe7\xcd\x0e\x1a\xa8\xcb\x66\xb3\xae\xe2\x6a\x35\xdf\x5d\xbf\x3d\xdb\x5d\x5f\x9f\xd7\x6f\xae\xcf\x76\xd7\x6f\x17\xf5\x9b\xb7\x67\xbb\x9b\xbb\xd9\x6e\x55\x87\x66\x5d\x97\xcd\xdd\xae\x3d\x18\x0e\x8e\xcb\x3a\x08\x94\xe0\xbf\xee\xd5\x65\x48\x00\x4b\x81\xbe\xd0\x8c\x36\xda\xe2\xd9\x95\x1e\x40\x01\xd4\xc6\x3e\xff\xfc\x73\xf8\xeb\x5f\xff\x2a\x0d\x42\x1c\x51\x4f\xd0\x69\xb8\x74\x8d\x75\x8c\xbd\xe6\xfc\xf2\x3e\x68\xe6\x00\x17\x8b\x3e\x4e\x07\x28\xba\xbd\x69\x68\xef\x5b\x1a\x53\xae\x39\xd7\x9c\x4f\x9e\x70\x2a\x7f\xcc\x7e\x68\x33\x2e\x5e\xc0\xa1\x65\xa0\x55\x3f\x35\xf0\x5a\x74\x7a\x0a\x4e\xb3\x97\x86\x03\x8a\xa7\xc0\x55\x7a\x6f\x69\x24\x58\xde\x0b\x4c\x72\x2a\x3d\xf5\xeb\xf1\x5b\xd2\xdf\xea\xe1\xe4\x45\xfd\x1f\x7c\xf0\x41\xb8\xbc\xbc\x84\xbf\xfd\xed\x6f\xd4\x77\x90\xa0\x9d\x75\x69\xfa\xdf\x44\x6a\xc3\xbb\xbf\x04\xb8\x04\x18\x1e\x6e\x37\x38\xa5\x37\x5d\x62\x42\x87\xde\xf5\x0e\xc4\x83\x06\xe6\xa1\x81\xaa\x8c\xc5\xf9\x2c\x16\xf3\x79\x1d\x96\x4f\x36\x61\x79\x71\x5f\x5d\x5d\xde\x97\x57\x57\xeb\xf2\xea\xf2\x7e\x7f\x56\xcc\xf9\x36\x2c\xe7\x75\x58\xcc\x62\x31\x2f\x9a\x22\x04\x84\x2e\xa8\x8d\x9d\xc7\x5b\x6a\x00\x1f\x52\x6f\x76\x03\xf6\x37\xd2\x4c\xc3\x50\xd0\x47\x12\xd8\x92\x40\x00\x5e\xb6\xe9\x9d\xb9\x02\x7d\x9f\xd9\xbd\x28\x03\x90\x72\xc8\xa3\x9e\x6e\x38\xe6\x01\xf3\xea\xb4\xea\xeb\xe1\x2e\x16\x10\xb7\x21\x6e\xee\x67\xcd\x7a\x5d\xed\x6e\x6e\xe7\xf1\xe6\xed\x62\x0f\x54\xae\x17\xf5\xf5\xed\xd9\xee\x66\x35\x8b\xab\x4d\x15\xf7\x60\x25\x34\xf7\xb1\x68\x36\xcd\x7e\x66\x24\x5d\xe6\xe9\x00\x49\x31\xfc\x90\x61\xf7\xbd\x20\x80\xde\x79\x2b\xdd\x99\x2b\x87\xe5\x9f\xee\x74\x5b\x80\xe3\x9b\x41\x70\x6c\x3f\xed\xe6\x5b\x7c\x0d\xc9\xfe\x15\x98\xcd\x66\xe1\xf0\xd5\xe6\x96\xb4\x36\x8f\xfb\xbe\x54\x86\x92\x07\xa0\xfb\x01\xea\x9e\xd2\x87\xf9\x28\x19\xa9\xbf\x4c\x89\xf2\x3d\xd7\x2f\x8f\x8c\x85\x6f\x0a\x9f\x28\x1f\xb9\xf2\x6a\x89\x03\x4c\x9c\x2f\xd2\xb8\x45\xf9\x65\xf5\x5b\x0a\xe7\xea\xd7\xa0\xcc\xdb\x36\x2c\xa1\x40\x0d\x28\x00\xc8\x95\x08\xcb\xe0\xf0\x54\x5e\x6a\x08\xd2\x60\xeb\x45\x9f\x5c\x9a\x3c\xe9\xc1\x7c\xde\xc1\xde\x42\x39\x3a\x39\x90\x32\xc6\x7e\xae\x8e\x31\x40\x18\x00\x8e\xb3\x30\xf8\x30\x3b\x0c\x66\x00\x20\xdd\x17\xd3\x02\x97\x90\xdc\x57\xe8\x3a\xdd\xd4\x8b\x3f\x39\xc0\xfe\x36\xfb\xe5\xa4\x0a\x00\xe6\x65\x03\x67\xd5\x2e\xcc\xe7\xbb\x62\xb1\xd8\x86\xe5\x72\x53\x5e\x3c\xd9\x86\x8b\xe5\xa6\x5c\x3e\xb9\x2f\xaf\x2e\x36\xe5\xc5\x72\x53\x2e\xcf\xb7\x61\x79\x56\x87\xe5\x6c\x57\xcc\xdb\xc3\xef\xf0\xc2\x04\xbd\x84\x73\x98\x63\x90\x66\x08\x24\x20\x82\xa7\x17\x18\x5e\x7e\x96\x43\xe6\xb3\x6c\x69\x4d\x97\x63\xba\xb9\xa8\x06\x8e\xfb\x5b\xe0\x78\xd6\x0a\x20\x37\xfb\xdf\xef\x19\x9a\xc0\x5f\xa9\x26\xdf\x6c\x12\xc0\x12\x00\x40\x2c\x9a\xb8\x2b\x9a\x7a\x5b\x36\x9b\xfb\x2a\xae\xd7\x55\x5c\xad\xce\x76\x37\x6f\xe7\xbb\x9b\x9b\xb3\xdd\xf5\xea\x6c\x77\x73\x3b\x8b\x37\x77\xf3\xdd\xcd\xba\x8a\xeb\x4d\x19\xd7\x75\xd9\x6c\x76\x05\xdc\x1f\xbe\x11\xd4\xbd\x86\x0c\xc7\x37\x83\xa8\xb7\x7e\xd2\xd9\x94\x14\xb0\xe0\x73\x56\xd2\x25\xa0\x6e\x0f\xcb\xe1\x3e\x9d\x59\x89\x09\x38\xeb\xae\xd3\x73\x58\xbe\xfd\xed\x6f\x87\x3f\xfd\xe9\x4f\x9e\x27\x62\x2a\xde\xd3\x7f\x5a\xf8\x73\x1f\xba\x34\xdd\x92\x2e\x69\xfc\xc9\x49\xe7\x14\x69\xb0\xe4\xc9\x14\xfd\xee\x14\x79\xcc\x85\x4f\x9d\x3f\x66\x5e\x6a\xc6\x05\x08\xa3\x1a\xa0\x00\x90\x0d\x7a\x2b\xba\x55\x47\x4b\x52\x65\x96\xfc\xb4\xa2\x79\xcf\x00\xec\x29\x78\x2a\xce\x5b\xd1\x2c\xfa\xad\x7a\x39\xde\x29\x40\xd0\x68\x32\x2c\x25\x85\x24\x2c\x00\x0c\x3e\x33\x30\x00\x2f\x49\x18\x3e\xec\x6e\xf0\xc6\x52\x32\x3b\x83\x0f\xc7\x6b\x97\x95\x66\x55\x84\x45\xb5\x0b\xf3\xb3\x3a\x2c\xce\xb7\x61\xf9\x64\x13\x2e\xce\xb7\xe5\xc5\xc5\xa6\xbc\x78\x72\x5f\x5e\x3c\xd9\x03\x99\x8b\xb3\x3a\x2c\x66\xbb\x62\x5e\xc5\xa2\x0a\x4d\x51\x75\x87\xe0\x1d\x48\x9a\x15\x10\x30\x88\xb8\x5f\x05\x2f\xbc\x74\xcb\x3e\x68\xe6\x02\xef\x05\x81\x44\x26\x3d\xfd\x95\x85\x2d\x9d\x0e\xe1\x0d\xa5\x76\x93\x6c\x73\x48\xcf\x60\xc6\x28\x85\x3a\x42\x3a\x06\xcb\x52\xc9\xeb\xd4\xc9\x27\xb9\x9b\xbd\x8d\x78\xf8\x70\xe1\x66\x53\x36\x9b\x4d\x15\xd7\xeb\x59\x5c\xdd\xce\xf7\xb3\x2a\xb7\xf3\xfa\xe6\x76\x1e\x6f\x56\xf3\xdd\x6a\x35\xdb\xdd\xdc\xcf\xe2\x6a\x1b\x60\x53\x87\x66\x13\x43\xb3\x6d\xfa\xcb\x3f\x18\x80\x0c\x80\x4b\xba\xdc\x83\xc1\x4a\x73\x3c\x6e\x1f\x7f\x2f\xa8\xbd\x6e\x41\x4a\x07\x5a\x60\x0f\x62\x0e\xe9\xee\x2f\x0f\xa5\xb3\x2b\x0c\x71\x83\x27\x10\xe1\x9c\x9c\x87\x2c\x36\xbc\x63\x87\xe5\xc1\xda\xe3\x9b\x66\x87\xf3\xd5\x0b\x34\xa6\x00\x2e\x39\x00\x40\x92\xf7\x8e\x53\x92\x4e\xad\x8c\xad\xf9\x63\xae\x97\x69\x7f\x30\x66\x60\xb3\x84\x8b\x8e\x10\x7c\x54\x45\xb1\x0c\xfe\x96\x01\xbc\x25\x4f\xa5\xf4\xda\xcc\xc9\x0b\x29\xfd\xd8\x67\x8e\x1f\xf3\x69\xe9\xe1\xd2\x2e\xf9\x96\xc6\x59\xf4\x4b\x69\xc5\x69\x12\xe5\x7e\xfa\xd3\x9f\x86\xf3\xf3\xf3\x1e\xe3\x61\xc6\x05\xcf\xc8\x90\x9b\x7a\x0f\xbc\xe9\x86\xde\x0e\xc8\x24\xcb\x4c\x73\x18\x82\x19\xea\x24\x5f\xfc\x5a\xf6\x11\xd4\x34\x50\x85\x06\x66\x65\x2c\xaa\x32\x16\xf3\xb3\xdd\x01\xc8\xdc\x87\xe5\x93\x4d\x75\xb1\xdc\x84\xab\xe5\xb6\x9b\x8d\x59\x9c\xd5\x61\x31\xdf\x85\xf9\x1e\xcc\xc0\xbc\xdc\x03\x9a\x80\x0f\xc5\x3b\xfe\xef\x52\x3f\x08\xc1\x64\xdf\x53\x03\x50\x14\x29\x74\x30\xca\xb5\xff\xbb\x99\x14\x79\x2e\x06\x7a\x4b\x3f\x29\x82\x49\x97\x07\xa1\x03\x1d\xf4\x27\x01\x8e\xe1\x69\x18\xc0\x1e\xa0\x34\x00\x71\x17\xf6\x20\xa5\x2e\x9b\xcd\xa6\x8c\x9b\xf5\x2c\xae\xef\x66\x71\x75\x37\xdb\xad\x56\xb3\x78\x73\x37\x8b\xab\xd5\x7c\x77\x73\x3b\xdf\xdd\xdc\xed\x97\x7e\x36\xdb\xd0\xac\x63\x68\xea\x58\x34\xdb\xd8\x5f\xca\xa1\xf6\x9d\xa4\x1b\x6e\x7b\x61\xcc\x8c\x0a\xf5\x15\xe6\xde\x26\xdb\xf6\x3a\xdd\xa7\xd2\xa0\x13\x6e\x01\xa0\xfd\x9e\x10\x7c\xf1\xc5\x17\xf0\xd9\x67\x9f\xc5\xef\x7d\xef\x7b\xe1\xe5\xcb\x97\xf0\x97\xbf\xfc\xa5\xcd\x0e\xae\x9d\x59\x06\x20\x20\x64\x38\x9d\x98\x17\xeb\xf3\xf6\x6d\x9e\xc1\x90\xeb\x4f\xb0\x2e\x30\xc8\x59\xf2\x84\xf2\xcf\x63\x53\x22\x4e\xb7\x25\x4f\xbc\x69\xd7\xfc\xb6\xf4\xf5\x29\x1f\xa0\x70\xac\xc3\x03\x76\x2c\xe1\xbd\x03\xe8\xb0\x51\xeb\x00\x64\x89\xf7\x82\xa2\xd4\x71\xcd\x2f\x4f\x1c\x57\x21\xa6\xb0\xe3\x49\x23\x47\x39\xe0\xd1\x2a\x23\xe5\xab\xc5\x87\xa9\xd2\x67\xf1\xc1\x4c\xf8\x9b\x48\x68\x3f\x44\x0b\x58\x00\xfd\xf6\x80\x4c\xf2\x4a\x75\xb7\x3f\x06\xbf\x6a\x5d\xd0\xdf\x51\x0a\x30\x9c\x89\x61\xff\x8a\x06\xc2\xe1\x8d\xa5\xaa\xda\x15\x8b\xb3\x5d\x98\x2f\xea\xb0\x38\xdf\x84\xe5\x72\x5b\x2e\x17\x9b\x72\x79\x5e\x87\x8b\xf3\x6d\xb1\x5c\x6c\xcb\xc5\xa2\x0e\xcb\xb3\xba\x98\x57\x31\xcc\xab\x3d\x00\xaa\x42\x84\x10\x60\x0f\x68\x00\x00\xfa\xc0\x06\xa0\x07\x6e\xfa\x53\x2c\xbd\x25\xa7\xe3\xb1\xfb\x7b\x25\xbd\xe3\xea\xf1\x72\x0b\xe0\xd9\x10\x1c\x87\x37\xeb\xb4\x1b\x75\x87\x36\xd2\x99\x90\x02\x29\x1a\x9c\x68\xdb\x34\x87\xb0\x74\x07\x0a\x00\xec\x81\x09\x34\xb0\x9f\x41\x89\x61\xff\xcd\x9f\xba\x68\xea\x3a\x34\xf5\xb6\x8c\x9b\x4d\xd5\xac\xd7\x55\x5c\xdf\xcd\xe3\x6a\x35\xdb\xdd\xdc\xcd\x77\xab\x9b\xfd\x6c\xca\x7e\xc9\xa7\x8a\xeb\x3a\x34\x9b\x5d\x68\xea\x58\xc0\xb6\x29\x86\x20\x03\x68\xc0\xd2\x9e\x4c\x4b\x6e\xa4\x3d\xcc\xac\xc4\x66\xb8\x5f\xa5\x4e\x66\x50\x5a\xb0\x92\x1e\x0c\xd7\xfd\x75\xaf\x70\x1f\x00\x4b\xf2\xdb\xbd\x19\xf4\xa3\x1f\xfd\x28\x7c\xf6\xd9\x67\xda\xc3\x49\x6e\x9b\xb5\xf4\x01\x16\x50\xe0\xd1\x6d\xe1\x97\xc6\x1d\x0b\xd0\xf1\x92\x25\x5f\xa7\xba\xc6\x36\x3d\x0f\x91\x92\xac\x25\x1f\x24\xfe\xd6\x4e\x0e\xe8\xb3\x5c\x5b\x00\xce\xe0\x97\x7b\x98\xf2\x64\xd2\x58\xa2\xf4\x8f\x19\x8c\xbd\xa0\xc3\x63\x4b\x42\xb0\xdc\xb5\xc5\x3f\xae\xf0\x2c\xbe\x70\xf6\x35\x19\xae\x32\x72\x3e\x4a\xe1\x56\x3f\x2d\xc0\xd2\xdd\xe9\x7d\xfc\xf1\xc7\xe1\xe9\xd3\xa7\x1c\x3f\xf9\x8b\x36\xf6\x56\x49\x5c\xfa\xa9\x81\x00\x47\x40\xd2\xf2\xe5\xfc\xb5\xfa\x30\xb8\x09\x45\x03\x55\xd1\xc0\xac\xd8\xef\x7d\xa9\x66\xb1\xa8\x66\xbb\x62\xbe\xdc\x96\x8b\x8b\xfb\xf2\x6a\xbf\x47\xa6\x5c\xee\xc1\x4c\x58\xee\x67\x65\xc2\x62\xb6\x2b\xaa\x2a\xee\x97\x9a\xca\x06\x42\x88\x45\x55\x36\x45\x28\x30\xb0\x01\x00\x68\x8e\x75\x71\xd8\xe0\x89\xe5\xa9\x04\x87\x88\x4b\x53\xc9\x64\xc9\x1e\x70\x40\x87\x7a\x68\x90\x83\x77\x98\xf4\x55\x1d\x28\x36\x47\xdb\xb1\x29\xf6\x9b\x65\x63\xd1\xd4\x07\x90\x52\xd7\x01\x62\x1d\x62\xbd\x2d\x9b\xf5\xa6\x8a\x9b\x75\x15\x57\xf7\x55\xb3\xbe\xab\x76\xeb\xf5\x2c\xae\xd6\x87\x59\x95\xdb\x79\x5c\xad\x67\x71\xbd\x0d\xcd\xa6\x0e\xb1\x6e\x0a\xa8\x9b\x02\xb6\x0d\x34\x35\x40\x11\xa1\xe8\xbd\x6e\xdc\x02\x8a\x14\x8c\xb4\xcb\x3f\xed\xcc\xc8\x26\x01\x20\x2c\xd0\x81\x23\x08\xa1\xae\x21\x09\x4b\xff\x00\xfa\x75\x3b\x3d\x8b\x65\xf0\x0d\xa1\xab\xab\xab\x70\x7d\x7d\x9d\x33\x38\xe0\x70\x6f\xbf\x41\xf1\x49\x7d\xcb\x94\x34\x75\xdf\xc9\x85\x7b\x00\x40\x6e\x5f\x99\x03\x22\xb4\x72\xb0\xda\xf6\xd8\xc9\xc9\x13\xaf\x1d\x8d\x06\xbc\xb9\x4b\x45\x9c\x13\xb9\xce\x68\x05\xa1\xc9\x4f\xc9\xab\xc9\x4b\x00\xc6\x03\x8a\xb4\xce\xc4\xaa\x43\x92\xc9\xc9\xa3\x31\x95\xd1\xe2\x9b\x64\x9b\x93\x55\xf3\xb6\x3d\xb2\xfc\xe7\x3f\xff\x79\xf8\xe4\x93\x4f\xe2\xf3\xe7\xcf\xf7\x03\xf7\xf1\x49\x95\x05\x2f\x29\x88\x69\x97\x98\x0e\x20\x03\xa0\xbf\xd1\x37\x05\x1f\x29\xe0\xe1\xde\x5e\xea\x81\x16\x48\x66\x65\xda\xd9\x1d\xf4\xfa\x76\x0f\x48\x15\x0d\xcc\x00\x20\x94\x07\x30\x33\xdb\x15\xd5\xbc\x9d\xa5\xd9\x86\xe5\x62\x1b\x16\x8b\xc3\x32\xd3\x62\x1b\x16\xf3\x3a\x2c\xcf\xda\xe5\xa6\xc3\x46\xe0\x32\x42\xd8\x2f\x39\x15\x21\xc0\xe1\x83\x92\x0d\x40\xd1\x40\x15\xa0\x80\x62\xb0\x1c\xd5\x27\x12\xac\xf4\x41\x39\x74\xe5\x50\x60\xb6\xa1\x68\x53\xec\xc1\x48\x03\x4d\xdc\x03\x93\x3d\x50\x89\x87\xe5\x9d\x18\x9a\xba\x0e\xcd\x7e\x06\x25\x34\x9b\xfd\x0c\x4a\xb3\xd9\x94\xfb\x8d\xb1\xf7\x55\xb3\xb9\x3f\x2c\xf9\xdc\xce\xeb\xd5\x6a\x1e\x57\xf7\x55\x5c\x6f\xca\x3d\x7f\x2c\x9a\x78\x98\x3d\x89\x4d\x01\x3b\x18\xbe\x4e\xdc\x3b\x6d\xb6\x0d\x43\x7b\x4e\xf0\xbe\x94\x08\xc9\xcc\x4a\x0b\x64\xf0\xfe\x14\x48\x66\x58\x00\x81\x92\xc4\x5e\x7a\x60\x5c\xfb\xb1\xc3\xde\x2b\xcc\xc9\x8c\x0b\xbc\x78\xf1\x22\x26\xc7\xf1\x53\xc4\xb5\x15\xee\xc1\xca\xf2\x10\xe5\x69\x8b\x94\x7e\x4b\xdb\x1f\xd3\x77\x79\xd2\xaa\xf1\xb6\xfc\x94\x7e\xca\x1e\x00\x2d\x3f\xc6\x6f\x2e\x5e\x4b\xab\x27\xcd\x40\xe8\xe4\xd2\x2b\xa5\xd9\x63\x07\xeb\xa6\xc6\xfc\x54\x37\xf6\x91\xb5\x8b\x81\x0b\x36\x2a\x85\x63\x47\x28\xd2\x12\x6a\xd1\x95\x03\x3a\x3c\x83\xbf\x47\x8f\x37\xde\x22\x33\x15\x00\x1b\x0b\xce\xc6\xd8\x7e\xcc\xba\x07\x6f\x26\xb5\xaf\x54\x37\xc3\xd3\x7a\x53\x70\x83\x81\x4c\xfa\x21\xc8\x0e\x90\x48\x7b\x65\x9a\xe1\x99\x32\x3d\xe0\x43\x2c\x53\x0d\x74\xb4\xf6\x10\xb0\x2a\xbb\x6b\x28\x42\x68\x20\xb4\xb3\x2f\xf3\x5d\xa8\xce\xb7\x61\x71\xbe\xd9\x03\x9a\xd9\xae\xa8\x66\xbb\x50\xcd\xe2\x1e\xcc\xcc\x77\xa1\xaa\x62\x31\x9f\xc5\x62\x5e\xee\x8a\x6a\x76\xd8\x83\x53\x46\x08\x45\x37\x53\x53\x40\xd1\x7d\x35\x1b\xa0\x68\xf6\xf9\x52\xc0\x01\xf4\xa0\x4e\xa7\xb7\x7c\xb3\x9f\xe2\xe9\xae\x0f\xb3\x26\x71\xff\xf6\x0e\xd4\x31\x34\xf5\x01\x94\x1c\xff\xca\x66\x53\x07\xa8\x37\x65\xdc\xdc\x57\x71\x7d\x5f\xed\xf7\xa3\xac\x67\x71\x7d\x5f\xc6\xcd\xa6\x6c\xea\xfa\x00\x4c\x76\xe1\x08\x4c\x0e\x7f\xbb\xe4\x1a\x03\x06\xfc\xa6\x8e\x34\x33\xd2\x7b\xb3\x87\xd8\xcf\xc2\xe9\xa4\xae\xa9\x6f\x03\x75\x20\x26\xfd\xc5\xaf\x7a\x1b\xbe\xce\x6c\xed\x3b\x73\x40\x83\x87\x72\x1e\x48\xc6\xf2\x9d\xc2\xb6\x24\xeb\xed\x6f\xbd\xe5\x40\xf1\xe4\xa6\xed\xd4\x79\x98\x0b\x34\xa7\x1c\x7b\x3b\x2c\xa2\xed\xbb\x93\x90\x1a\x87\x38\x73\x9c\x91\xc2\x24\x64\xcc\xe9\xb0\x22\x4d\x20\x78\x3c\x74\x6a\xb0\xf0\x50\x36\xac\x3e\x3c\x06\x5f\x46\x91\xf6\x66\x12\x31\x3b\xd3\x03\x30\x49\x58\xfa\x1a\x36\x9e\x81\xe9\xae\x13\xa0\x02\x40\xcc\xc4\x30\xbc\x01\xeb\x41\xba\xa9\x7b\x40\xf7\xe5\x20\x6e\xbf\xc7\x26\x84\xa6\x38\xfc\x41\x28\x23\x84\xea\x30\x93\x53\xc6\x22\x94\x69\x7c\x2c\xaa\xd0\x00\x84\xfd\x6c\x0d\x14\x87\xb8\x16\xe4\x00\x34\x10\xa1\x9d\x31\x69\x62\x2c\x5a\x90\xb2\x9f\x49\x89\xa1\x89\x11\x00\xb6\xfb\x7d\x27\xf5\xf6\x00\x40\x0e\xaf\x20\xc7\x58\x40\x8c\x01\xea\xc3\x2c\x09\x39\xb0\x03\xc0\x8e\xda\x07\x02\x09\x48\x00\x00\xf6\xed\x9c\x84\xaf\xf7\x9a\x71\xb2\x41\x36\x95\xc3\xcb\x40\xe9\x51\xfa\x83\x0d\xb5\xc2\xfe\x94\xde\xab\xcb\x49\x38\x4e\x5b\xd7\x9e\x08\xc0\xe2\x69\x73\xd2\x53\xad\x74\x6d\x19\x30\x1f\x4a\xb7\x37\x5c\xb3\x63\xb9\x7e\x28\xdd\x94\x9d\xb1\xe5\x0a\x82\x1e\x8b\x9c\xd7\xe6\x58\x5e\x2b\x8f\x49\xae\x62\x18\x53\x4a\x33\x27\x32\xe1\x00\xf9\x4e\x6b\x61\xa9\x1d\x2e\xe3\x29\x90\xa3\xf1\x61\xbf\xbd\x85\x80\xf5\x53\xe0\x89\xf2\x81\xd3\xaf\xa1\x7b\xca\x26\x67\x97\xb3\xc9\xf9\x93\xca\xe1\xbc\x4e\x65\xb4\x4a\x9c\x12\x97\x97\x1c\x28\xd5\xf4\x53\x7e\x52\x32\x3d\x7b\x65\x59\x06\x00\x80\xef\x7f\xff\xfb\xf0\xf9\xe7\x9f\x0f\x9e\x70\x53\x4a\xcf\xc3\x48\x74\xe3\xa5\xa4\xee\x1a\x03\x1c\x3c\x2b\x53\x14\x45\x3a\x8b\x42\x82\x8f\x74\x66\x05\xf3\xa2\x59\x97\x54\x77\xc7\x4b\x00\xaa\x14\x6c\xe1\x03\xfa\x20\x16\x10\x62\xd1\x84\xc3\x62\x4e\xe2\xff\x0e\x60\x0f\x76\xf0\x8c\x4a\x9a\xaf\x16\x1a\xb4\xb9\xc3\xb2\xd1\x8e\x88\x4f\xeb\x55\xd7\xbf\x34\xfd\x53\x61\x7b\xe7\x98\xc0\x71\x3f\x4a\x1a\xdf\x3b\x51\x16\x8e\x4b\x37\x78\xd9\xa6\xb7\x9f\x25\x5d\x2e\x6a\xe3\xf1\x92\x4e\x0a\x80\x88\xb8\xd4\x77\x00\x80\x01\x68\x49\x96\x84\xd2\x19\x3f\x7c\x44\x3f\x7c\xfd\xeb\x5f\x0f\xaf\x5e\xbd\xda\x67\x46\x8c\xdd\x21\x72\x30\x6c\x2b\xb8\x8d\x46\x74\x0d\xe8\x3a\x95\x05\x14\xc6\xb5\xc3\x34\x1e\xb7\x35\xa9\xdd\x61\xff\xb0\x6e\xdc\xa7\xe0\x7e\x26\x8d\xa3\xfc\xe2\x7c\xa1\x08\xc7\x63\xbf\x2d\xf9\x89\x09\x8f\x83\x58\x3f\x07\x10\xd2\x7b\xa9\x5c\xa8\x7e\x52\x4a\x03\x45\x9c\x1c\xb6\x8d\xf5\x49\xe5\x27\x8d\x27\x9e\xb1\x8c\x1b\xcb\xb5\xfa\x3a\xc8\x17\x69\xc6\x85\x1a\xc8\xb4\x81\x9a\x43\x80\x9a\x6e\x2e\x1e\x87\x81\xd1\xa6\x35\x11\x12\x24\x27\x00\x00\x13\x4c\x49\x44\x41\x54\x33\x2d\x0d\xf2\x5d\x91\x36\x40\x4b\x32\xde\x38\x2f\x4d\xa1\x6b\x4a\x7f\x5c\xf4\x9d\xef\x7c\x27\xfc\xe1\x0f\x7f\x88\xc4\xec\x0b\x00\x6a\x34\xe9\x72\x12\xf4\x1b\x6b\xfb\x4b\x5e\x27\xb3\x31\x14\xa8\x20\x67\x4f\xd0\x72\x11\x29\xc7\x00\x95\x0a\xdb\x6f\xff\x92\xa5\x2e\x12\x7c\x11\xe9\x4e\xd3\x80\xdf\xd0\x12\x09\xcd\x32\xb4\x61\xbd\x57\x79\x89\xe5\x93\x54\x2e\x05\x24\x80\xc0\x4b\x8d\xc3\xe1\x08\x46\x52\x80\x93\xce\xb8\xe0\xfb\x54\xc7\x40\x0e\xd9\xef\x81\x94\xd6\x67\x62\x09\x88\x4a\x77\x1a\x8e\xf3\xa1\x77\xee\xca\xc5\xc5\x45\xb8\xb9\xb9\xa1\x06\x09\xad\x7d\x78\x78\x39\xfe\x31\x3a\x34\x3a\x85\xee\xc7\x98\x3f\x1c\x8f\xc6\x3f\x95\x3e\x4e\x56\x8b\xf7\xa6\x4d\xd3\x61\xa1\xc9\xea\x0f\x05\x5c\xc6\x38\xd6\xca\x00\xd8\x01\x05\x27\xdf\xea\x48\xe5\x72\x0b\x4f\x42\x70\x9a\x2c\x8e\xcb\x01\x00\x99\x12\x66\xed\x38\x52\x05\xd0\x2a\x93\xb5\x32\x6a\x7e\x49\xba\xad\xb2\x96\xb2\x95\x74\x49\xf5\x01\x5f\x5b\x74\x68\x75\x55\xad\x2f\xdf\xfc\xe6\x37\xc3\xdf\xff\xfe\xf7\x08\x30\xf8\xd8\x63\x7a\x32\x2f\x37\x80\x07\xc4\x17\xa8\x6b\xe8\x83\x0c\x7c\xdf\x03\x19\x70\x04\x3b\x3d\x90\xc2\x5d\x53\x3a\x18\x80\x82\x6d\x03\xf5\x8b\x96\xca\x7a\x27\x16\xa3\x81\xb8\x37\x73\x85\xee\x7b\x83\x38\x35\xb0\x27\x4b\x2a\x11\x00\x52\x30\xd2\xca\xf7\xbe\x78\x8c\x36\xb5\xaa\x33\x32\xdc\xf2\x12\x9e\xcd\xa1\x74\xa5\xe0\x04\xfb\x27\x6c\xa4\xed\x01\x93\x83\xde\x74\xe6\x04\x5e\xbc\x78\x11\x3f\xfc\xf0\xc3\xf0\xf2\xe5\x4b\xa9\x7f\xa2\xda\xa8\x14\x0e\xc9\xbd\x65\x20\x4a\xf9\x29\xbd\xb9\x36\x34\x7f\x39\x1e\xce\x06\xd7\x1f\x50\xfa\x01\x85\x61\x5b\x9a\xcd\x54\xc6\x9a\x56\x4c\x9c\x0d\xae\xac\x73\xca\x99\xb2\x67\xe9\x3f\x2d\xe9\xe2\x7c\xb7\xd6\x8b\xd4\x1e\x24\xfc\x60\x8c\xb3\xd6\x93\x7d\x7b\x84\x21\x71\xce\x49\x06\x29\xe3\x16\xb2\x0c\xca\x92\x6e\xef\xa0\xde\xea\xca\xf1\xc5\x42\x56\x7f\x4e\x69\x63\x4a\xbd\x39\xb6\x4e\xe5\xdf\x14\x36\xcd\xbe\x59\x66\x63\x84\x7b\x0c\x04\xda\x6b\x16\xcc\x08\x60\xa4\xe3\x95\x00\x0b\xa1\x93\x03\x2b\xbd\xfb\x64\x46\x69\xe0\x33\x06\x31\x54\x9a\x89\xbd\x1b\x29\x51\x1f\x00\xec\x00\x41\x32\x13\x93\x9e\x57\x12\x91\x1c\xfe\xfa\x71\x07\x70\x84\x25\x25\x6a\xef\x09\xa5\x83\x3a\x46\x7f\x10\xde\xa6\x05\xa7\x01\xa7\x15\xe5\x87\x74\xa2\xad\x34\x78\x48\xe0\xc3\xca\x2b\x01\xa1\xf4\x5a\xfb\xb5\xf8\xa1\xe9\xc6\xe4\x49\xaf\x85\xdf\x9b\x97\x16\x5f\xc7\xa6\xc1\x92\x3f\x14\x71\xe0\x45\x93\x93\xfc\xf6\xa6\x41\xe2\x69\x69\x6c\x99\x61\x5e\x60\xc2\x59\xdd\x96\xa5\x22\xca\x48\x6b\x88\x32\x2a\x15\xba\x56\x21\x24\xbb\x96\x0c\xa4\x90\x1a\xa5\x1f\x08\xfe\x31\x80\x4b\xb2\xe7\xa5\x53\xe9\xf6\x36\x02\x4a\x66\x0a\x3f\xfe\xe3\xa8\xfd\xe8\x23\x31\xe3\xc0\x82\x9b\xe4\x49\x7b\x00\x0c\xb8\x5f\x62\xc6\x06\x03\x9a\x96\xbf\x05\x32\xf8\x35\xee\x81\x9e\xc4\x1f\xbc\x64\x04\x48\x47\xcf\x7f\x7c\x9d\x02\x30\x22\xcd\x31\xe5\x6b\x29\xd9\xef\x01\x40\x80\x84\x94\xa7\xd5\x43\x01\x97\xc4\x46\xef\x9a\x00\x3f\x03\x00\x42\xc9\x22\x50\x44\xcd\x06\xf5\xf6\x3a\xe1\xd9\x14\x94\x9e\xde\xc1\x70\xcf\x9f\x3f\x0f\x2d\x58\xf9\xd6\xb7\xbe\x15\xfe\xfc\xe7\x3f\x5b\x3b\xea\x36\xce\xd5\x81\x8f\x0c\xe7\xfa\xcb\x29\xc0\x80\xd7\xa7\x5c\x00\x30\x95\xaf\x16\xdd\x90\x69\x93\x4a\xb3\x37\xbd\x14\x71\xe5\x76\x0a\x40\x41\xd5\x15\x0f\x98\xb2\xda\xd4\xc6\x6c\x00\xd0\x97\x8a\x2c\xe1\x52\xbc\x05\x84\x58\x07\x42\xad\x50\x2d\x80\x49\xd3\x07\x82\x4e\x00\xbd\xb0\x38\x7e\xea\x5a\xf3\xc1\xd3\x30\xb1\x6d\x2b\x28\xa4\x40\x20\x27\x47\x91\x25\xbf\x2d\x3e\xe7\xf2\xa5\xbe\x8d\xed\xd0\xb0\x2c\x7c\xe3\x1b\xdf\x80\x7f\xfc\xe3\x1f\x83\x7c\x49\xbf\x5e\x8d\x97\x4c\x00\xe5\x55\x02\x40\x52\xd0\x33\xf8\xc2\xf5\x61\xf0\x0e\x00\x40\x01\x09\x6a\x5f\x4a\xc0\xba\x52\xfe\x24\xae\x07\x52\x5a\xfd\xc4\x12\x57\x0b\x3a\x7a\x69\x3b\xf0\xa7\xbe\x92\xe9\xa6\x96\x8a\xd2\x65\x94\x24\x3d\x83\xaf\x19\xc3\xb1\x0c\xd2\xa5\xa3\xc1\x2b\xc5\x84\x4c\x2f\x2c\x59\xfa\x19\x00\xa3\x04\x20\xa5\xa7\xd0\xa6\x5f\x5b\x4e\xd3\xda\xf9\x9f\xfa\x92\x5c\x77\xe1\xed\xdb\x40\xdf\xfd\xee\x77\xbb\x32\xfb\xe3\x1f\xff\x08\xc9\x97\x98\xa5\x41\x0a\x50\x38\xe6\xc7\xbc\x40\xdc\x03\x8a\xa3\x74\x71\xd7\xda\xa0\x4d\xf9\x23\x91\x57\x07\x75\x6f\x95\x97\xc2\x28\xbf\xb8\xbe\x4e\xea\x9f\x29\x92\xf2\x40\xea\x0f\x29\x1e\x0a\x18\x49\xfa\xb4\x7a\x41\xe9\xe1\xca\x58\x23\x6b\xfe\x6a\xf5\x15\xcb\x59\xeb\x93\x34\x5e\x0e\xce\x9d\xb2\x82\x13\xa9\x80\xb5\xc1\x97\xd2\x65\x89\x93\x0a\x10\xdb\xd5\xee\xa5\x74\x58\x07\x50\xca\xdf\x1c\x92\xec\x59\xec\xe4\xd8\xb6\x94\x63\xca\xdb\x52\x6e\x1a\x4f\x41\x63\xf2\x7c\x72\x62\x96\x96\x00\x92\xfc\xe3\x66\x2d\x9a\xe3\xb7\x96\x30\x60\xe9\xe2\x09\xb9\x1e\x20\x61\x64\x39\x90\xc3\xf1\x75\xe1\x08\xb4\xa4\x3a\xd8\xb7\xb2\x0e\x44\x95\x49\x0a\x64\x22\xc1\x4b\xc6\xa3\xe5\x9d\x41\x98\x16\x2f\xf8\x45\x5e\x27\x69\xee\xbd\x7d\x96\xce\xa8\xf0\xc9\xee\xc8\x52\x2f\x2d\x00\x82\xd2\x37\x55\x9d\xd7\xfa\xd7\x5c\x7d\x9c\x6e\x8d\xd7\xab\x9b\x8b\xcf\xf1\x57\xb2\x33\x55\x7f\x6f\x05\x86\x39\xba\x35\xbf\xb4\x31\xf4\xd4\xba\xbd\x65\x6c\xf2\x43\x03\x2e\x12\x7a\xd4\x1c\xb3\x02\x80\xdc\x81\x9b\x1b\x74\x73\x33\x93\xab\x48\x16\xdd\x12\x5f\x7a\xef\x01\x42\x00\xfe\x4a\xa6\xf9\x04\x42\xbc\xa4\x73\xac\x2f\xa7\x90\xc9\x01\xd1\xe9\xb5\xa5\x43\x32\x95\xd7\x0f\x7e\xf0\x83\xf0\xdb\xdf\xfe\x36\x02\x00\xfc\xf8\xc7\x3f\x0e\xbf\xfe\xf5\xaf\xb9\x37\x96\x3a\x3d\xe8\x69\xbe\x77\x30\x1e\xf2\x1d\x5f\x7b\xee\x03\x07\x96\x90\x0f\x3d\x50\x22\x2c\x83\x51\x7a\x5a\x92\xca\x2a\xfd\x38\x60\x0a\x52\xba\x38\x6a\x83\x2b\x5e\x56\x6a\x75\x11\x33\x36\x83\xaf\x25\x4b\xe0\x85\x9b\x1d\x3a\xf8\x07\x00\xfd\x73\x55\xd2\xf2\x4d\xaf\xc1\xfe\x80\x25\x5d\x43\x12\x06\x02\x8f\xd4\xa7\xa4\x69\xf1\xf4\x5d\x53\x81\x0b\x8a\x2c\x20\xe3\x94\x83\x9d\xb5\x0f\x96\x64\x2d\x3e\xe5\xf6\xcd\xdc\x58\xe6\xb5\xa9\x95\xab\xb5\x9f\xcc\x49\xdb\x58\x5f\xb1\x3f\x66\x3f\xb4\xcd\xb9\x63\x07\x7a\x0f\x4d\xa1\xe3\x94\x7a\xa4\x8a\xef\x45\x8c\x2d\xa5\xfa\xac\x0d\xaa\x95\xa3\x74\x49\x3e\x59\x41\xa9\xa7\x22\x8d\xad\xac\x5a\x83\xa5\x1a\x9d\xd6\xe0\xb9\xfa\x4b\xc9\x4b\x7e\xe7\xa6\x27\x7e\xf4\xd1\x47\x01\x00\xe0\x37\xbf\xf9\x4d\x04\xd8\x2f\x2d\x01\xc0\xe0\x09\x9e\xb1\xd3\x11\xb1\xb4\xd3\x86\xf7\x66\x4e\xb8\x19\x17\x45\x86\xd2\xc1\x2d\x6d\x0d\xc0\x0f\x06\x5e\x49\x1e\x0c\xe4\x88\x25\x9a\xde\x52\x8d\xb0\x9f\x84\x94\x49\xd2\x39\xf8\x5a\x72\x6a\x27\xf1\x65\x00\x4e\xa8\x6b\xbc\x91\xf6\xa3\x8f\x3e\x0a\x87\x32\xa4\xda\x99\x54\xcf\x52\x5e\x4b\x9d\x97\xea\x6a\x2a\xcb\xd9\xc5\x71\x38\x8c\xb2\x27\xf9\xa7\xb5\x79\x2a\x3d\x94\x0e\x6e\xb0\xb4\xb4\x5b\xce\x2f\xad\x2f\x00\x21\xde\xd2\xb6\xb1\x0e\xca\x36\x4e\x93\xa5\x4f\xd1\xca\x5a\xe3\xe5\x7c\xd5\xfa\x4e\x4e\x56\xe2\xb1\xf8\xa8\xf9\x24\xa5\x47\xc3\x18\x5a\x7f\xdd\x2d\x15\x59\x91\x8e\xd6\xe8\xbc\xe4\xa9\xac\xda\x20\x0c\x20\xfb\xa1\x01\x06\x2f\x80\xf0\xa4\xdd\x93\x0e\x4b\x67\x64\x95\xd5\x64\xbc\x34\x56\x3e\xc7\x86\xc7\xe6\x18\xd9\x96\x1f\x9c\x32\x22\x2d\x97\xcb\xb0\x5a\xad\x3a\x7d\x1f\x7f\xfc\x71\xf8\xd5\xaf\x7e\xd5\xd3\xaf\xcc\xce\x60\xdf\x7a\x94\x82\x0a\x6e\x79\xc7\xa3\xcf\x10\xe7\x22\xbc\xd1\x95\x20\xe9\x50\xc0\x0e\x70\x70\x60\x26\xb1\xc3\xbd\xed\x33\x58\xea\x49\x37\xd0\x12\xa4\x75\xaa\x1a\x2f\x15\x2f\x51\x6e\x7f\x33\xb5\x4d\xeb\x20\x66\x1d\x80\xac\x40\x61\x2c\x8f\xc5\x3f\x4d\x8e\xb3\x33\xa6\xfc\x38\x40\x34\x45\xdf\x32\x45\x7d\x9c\xaa\x9e\x68\xba\xc7\x96\x25\xc9\x6b\x9d\x71\xe1\x9c\xf6\x54\x0c\x8a\xb8\x81\x82\x2a\x68\xcd\x1f\x49\xd7\x58\x20\x42\xe9\x7e\x88\x41\x5c\xa2\xb1\x83\xf4\xd4\x7a\x34\xbd\x56\x7b\xa7\xf2\xc7\x4b\x52\x07\x07\x28\x6e\xcc\x20\x22\x12\xb7\x11\x98\x98\x4d\x49\x81\x3f\xcb\x8b\xd3\x21\xe8\x94\xf6\xb2\xf4\x64\x25\xd0\x60\x20\x11\x6c\x20\xbe\x00\x0c\xd0\xc1\x61\x78\x3f\xca\xcf\x7e\xf6\xb3\xf0\xe9\xa7\x9f\xe6\x76\xb8\x1c\xe5\x96\xff\x18\xdd\xb9\x03\x6c\x2e\xbf\x77\x40\xf2\x3e\xd4\xe5\x92\x36\xd8\x8d\x29\x57\x6c\xc3\xeb\x93\x14\xe6\x01\x31\xb9\xf5\xca\x0b\x4a\xa4\xeb\xd6\x4f\xcb\xf8\x3b\x65\x1b\x10\x75\x87\x01\xfb\x91\x81\x52\x8a\xc3\xb8\x0e\xbd\xfd\x0d\x8c\x8d\x94\x97\x43\xa5\x38\x8e\xd2\x17\x09\x19\xce\x1f\xca\x7e\x2a\xab\x55\xb0\xd4\x17\x6b\xc5\x08\xc9\x35\x0e\xa3\xfc\xe0\xf8\x38\x9f\x52\xbe\xf4\x9e\x92\xe5\xec\x69\xc0\x0f\xfb\x83\x7f\x29\xdd\x94\x5e\x1c\xde\x12\x95\x0e\x8e\x1f\xa7\x0f\xe7\x97\xe4\x13\x17\x86\xfd\xa3\xfc\xe5\xea\x02\xd5\x71\x72\xbe\x73\x34\xa8\x0f\xed\xd2\x52\x3a\x33\xd0\x1c\xce\x04\xf9\xe4\x93\x4f\x62\x7b\xdd\x0a\x21\xd0\x82\x0f\x77\x1b\x9c\xf4\x7a\xa0\xee\xf8\xfb\x94\x2f\x59\x6e\xc1\xe9\x4c\xff\xd2\xaf\x20\xb7\x5f\x4c\xa6\xf2\xa6\xbb\x6e\x6d\x34\x4d\xd3\x1d\xcb\x0f\xc9\xd1\xfc\xed\x1f\x7e\x73\xa8\xdd\xdf\x92\x2e\x47\xb5\xf9\xd0\xfe\xa5\x61\xed\xac\x13\x00\xc0\x0f\x7f\xf8\xc3\x2e\x6f\x3f\xfd\xf4\x53\x2e\xef\x71\xfd\xc3\xed\x9b\x6a\x93\x52\x3f\xc4\xb5\x51\xae\xdd\x70\xba\x23\x11\x06\x28\x9c\xf3\x0f\xdb\xc1\xb6\xb1\x5f\x5c\xdb\xe1\xfa\x5d\xec\x07\xe7\x93\xe5\x9a\xcb\xd7\x1c\x7d\xd2\x20\xaa\xa5\x87\xca\x0f\xaa\x0e\x70\xb6\x39\x1e\x3c\x6e\xb4\xc4\xd5\x3b\x4c\x54\x1f\x67\x01\x42\x5a\xbe\x4a\xf5\x3e\xe5\xd1\xc6\x4f\xae\x0e\x48\xe9\x90\x7c\x94\xda\x62\x27\xaf\x7d\x64\xd1\x43\x69\xa2\x25\x24\x8c\x65\x80\xe0\xa3\x74\x58\x65\x39\x7f\x24\x3f\xfe\x93\xe9\xbf\x31\x4d\xff\xab\xe4\x2e\x4b\xe3\x32\x93\x34\x9b\x62\x92\xe7\x74\x51\xf7\x56\xb9\x03\x89\xdf\x8f\xa2\xe4\xa8\xb7\x7b\x42\x08\x21\xc6\x18\xf1\xb5\x81\xac\xfd\x54\xce\xd3\xbb\xb7\xef\x39\xa5\x6e\x4e\x76\x0a\xdd\x14\xff\x98\xf4\x7a\xcb\x41\xd3\x6d\x21\x4f\x1a\xbc\xe1\xb9\xfe\x4d\x3d\x76\xe5\xd6\x63\x8b\xbe\x31\xf6\xdd\xbc\xd4\x1e\x97\x1c\xe5\x18\x44\x00\x13\x46\x39\x25\x11\x87\x26\x39\xfb\x00\xc3\x0a\xe7\xa9\x20\x92\xcf\x5e\x7a\x97\x80\xe2\xb1\x82\x99\xc7\xea\xd7\xff\x0c\x11\x9f\x35\x00\xee\x3e\x87\x24\x1d\x1c\x78\xa2\x80\x48\x3a\xdb\xf4\xe4\xc9\x93\x70\x7b\x7b\xdb\xbb\x4e\xc3\x08\x9a\x7a\x80\xd3\xfa\xc7\x31\x03\x42\xee\x20\xf8\x2e\x80\x8b\x07\x50\x3c\x14\x70\xb1\x3e\xe4\xe6\xd8\x19\x03\x5c\x72\x75\xe7\xea\xe3\x74\x4f\x0d\xbe\xa6\x02\xe3\x94\xac\xc4\x0b\x92\x2d\xf7\xd3\x97\x40\x01\xfd\x5a\xe3\x38\x5e\x89\x5f\xe3\xc1\xf6\xa8\x5f\xac\x23\xa0\x70\x8a\x97\x92\xc1\xf2\x9a\xaf\x9c\xef\x96\x74\x4b\x7e\x49\xfe\x6a\x69\xe5\xe2\x24\x39\xcd\x77\x4b\xfe\x71\x3e\x72\x34\x26\x8f\xb5\xf2\xa2\xe2\xac\x79\x89\xef\x2d\xe5\xc7\xf9\x66\xe1\x23\x6d\x3c\x7b\xf6\x2c\xe0\xfb\xf6\x8f\x73\x06\xc7\xb5\x40\x27\x05\x3c\xd4\x2c\x4f\xbb\xbc\x45\xf1\xa7\x3a\x39\x9f\xd2\xb8\x36\xec\xec\xec\x4c\xab\x5f\xd6\x32\x00\xe2\xde\x94\x87\x02\xbf\x95\xcf\x93\x06\x8b\x2f\xd6\x7a\xa0\xf9\x28\xd5\xb1\x29\xd2\x40\xf9\x20\xf5\x23\xf8\x5a\xe3\x97\xda\x15\xd7\xb6\x35\xbf\xac\xfa\xb1\x0e\xa9\xce\x59\xd3\xe0\xa9\xd3\x5c\x1a\xf0\xbd\xb5\x5e\x48\x3e\x4b\x75\x44\x2b\x2f\xe9\x9a\xfa\x95\xfc\x18\xf8\x2e\x29\xa1\xee\x71\x9c\x14\xcf\xe9\x90\x2a\xbf\x95\x2c\x0d\xd3\xa2\xc3\x52\x49\x25\xd9\xa9\xf9\x73\xf3\x86\x2b\x7c\xab\x7d\x2e\xde\xd2\x11\x7a\x48\x93\xd1\xd2\xa1\xc9\xe6\xf8\xe4\xb5\x71\x4a\x7e\xaf\xae\xc9\xd3\x7b\x79\x79\x39\x99\xce\x10\x82\xd4\x29\x51\xd7\xd6\x78\x2b\x7f\x6e\x7d\xb3\xea\xb3\xf4\x6d\x39\x36\x35\x1a\xeb\xb7\x64\x6f\x8a\x34\x8c\x29\x3f\x0b\x79\xec\xe4\xf2\x78\xe4\x1e\x43\xbf\x33\x45\x9e\xe4\xd6\x19\x0b\x79\xf2\x58\xf5\x9b\x42\x38\x92\x61\x0d\xe8\xe4\x12\x8b\xac\x4e\x2c\x8f\xe5\x38\x20\x43\xa5\xdb\x92\x5f\x9c\x2d\xcd\x9f\xb1\x83\xb6\xb5\x43\xf5\xf8\xef\xf5\xc7\x1b\x4f\x95\x85\xc5\x8e\xd5\xcf\x53\x00\xad\xc7\x4a\x63\xca\x35\xb7\x0e\x6a\x34\x05\x88\xf0\xf2\x53\x69\x99\x0a\x14\xe5\xca\x79\xae\x73\x07\x98\x53\xe8\xd6\xfa\x44\x4b\xdc\x54\x69\xd0\x68\xea\xfc\x99\x4a\x77\x8e\x1f\xd4\xb5\x54\xaf\xa7\x6a\x3b\x1a\x4d\x51\xbf\x39\x9b\xb9\x3e\x89\x64\xcd\x20\x4b\xc5\x1e\x6b\x43\x8b\xe3\x0a\xd8\xd3\x99\x59\x1a\x9f\x07\x34\x68\xe9\xc8\xf1\x0d\x0f\xfa\x94\x5e\x8a\x4f\x92\x93\x40\x04\x96\xb1\xe4\x89\x37\x1f\x29\x59\x6b\x5d\xb2\x96\x11\x95\x1f\x9a\x4e\x4d\x4f\x7a\x2f\xd5\x3f\xca\x0e\x15\x47\x95\x93\x64\x97\xd2\xe5\xf1\xdb\x42\x9e\x3a\xc9\xe5\x83\x24\x63\xb1\x83\x6d\x50\xf7\x94\x1f\x9c\x1d\x2e\xdf\x25\x7e\xce\xb6\xd5\x8e\xa5\xee\x59\xcb\x9e\xf3\x2d\xa7\xbe\x58\xdb\xbb\x54\xb6\x9a\x7f\x9c\x7d\x4f\x9d\xa6\xf4\x49\x79\x9a\xdb\x96\x28\x59\xce\x3f\x8f\x5f\x14\x49\x32\x52\xbe\x71\xe1\x9e\x7a\xae\xf9\x8d\x7d\xd4\xec\x48\x75\x0a\x93\xc5\x26\x99\x77\x9a\x62\xac\x1c\x1b\xd1\x64\x2c\x64\xa9\x18\x52\xbc\xe6\x93\x27\x23\x25\x1b\x39\x32\x39\xf9\x94\x63\xd7\x43\xb9\xfa\xd9\x4a\x24\xe8\x9d\x2a\x2d\xb9\xba\xa5\x4e\xe9\x3f\x8d\x4e\x9d\x96\x53\x94\x55\x6e\x3f\x21\x75\x98\x92\xac\x57\xce\x53\x97\x73\xed\x68\x83\x32\xc5\xaf\xc9\x79\xc9\xd3\x87\x5b\x06\x65\x8e\xdf\xab\xcf\x7a\xad\x85\x59\x6d\x72\x3c\x94\x6e\x4d\x2e\xb7\x5c\xbd\x3e\x49\xe4\x05\x1b\xda\x35\xd6\x69\xf5\x2f\xb7\x7d\x65\xb5\xd1\x9c\xc1\xdc\xea\x44\x8e\x0e\x6b\xa7\x14\xd0\x9f\x45\x86\xb3\xc3\xc9\x69\x32\x54\xfc\x14\xa0\xc8\x02\xbe\x72\x6c\x58\x3b\x97\xc7\x3c\x20\x4e\x49\x8f\xcd\xa7\xc7\xe6\xcf\x63\x26\xef\xc0\x65\x8d\xf3\xb4\x01\x6b\xdb\xf2\x80\x2b\x8f\x8e\xa9\xe9\x94\x7d\xcb\x29\x69\x4c\x5e\x9e\x2a\x0d\xa7\xce\xcb\x5c\x10\x77\xaa\x72\xf2\x8e\xa7\x56\x3d\x93\x09\x6b\x60\x02\x87\x4f\x81\x8c\x73\x2b\x97\x65\xa0\xe7\x2a\x00\xf6\x1b\x87\x71\x40\x45\x43\xbd\x16\x94\xc9\xd9\xc2\xbc\xd8\x9e\x64\x9f\x4a\x8b\x25\xdf\x25\xbe\x1c\xa0\xe6\x6d\x40\x5a\x1e\x53\xe1\x9a\x8d\x1c\x3f\x24\x1b\xd2\xbd\x66\x93\xf3\xd9\x03\x32\xbd\x75\xd0\xaa\x03\xfb\xe7\xe9\x50\x2d\xf5\xdc\xe2\xab\xd6\xee\x3c\x65\x99\xdb\xcf\x78\xda\xb1\xe4\x0b\xd7\x96\x3c\x61\x96\x72\x95\x28\xa7\x5c\x28\x79\x2d\x8c\xd3\x65\xcd\x37\x4b\x5e\x4a\x36\x2d\xba\x3c\x7a\x25\xfd\x38\x5e\xaa\xa3\x94\x2e\x4b\x1d\xe2\xf2\xc2\xda\xde\x28\xfd\x94\x1e\x8d\x2c\xfd\xd8\x94\x6d\x7f\x20\xaf\x65\x04\xe5\x28\x77\x4f\xc9\x69\x64\x6d\xf0\x9a\x7e\x4b\xc7\x35\x45\x83\xe7\xf4\x4a\xe1\xb9\x79\xa3\xe9\xb7\xc6\x4f\x69\xeb\xb1\xd2\x63\xcd\x83\x29\xeb\xd9\x14\x34\x85\x0f\x53\xd7\x63\x4f\x9b\xf4\x80\x0a\xaf\x4f\x16\x39\x6d\x10\xf0\xa6\x21\xbd\xd7\x06\x12\x6f\x7a\x73\xed\x58\xec\x73\x64\xe9\x83\x4f\x19\xae\xf1\x7a\xf4\xe1\x01\xd8\xa3\xc3\x32\x58\x4b\x61\x56\x3b\x69\x58\x2e\x10\x19\x93\x3f\x9e\x6b\x4d\x36\xab\xac\x2d\x9d\x8a\x35\x63\xac\x89\x94\x80\x10\xa7\xcb\x6b\xef\xb1\x0c\x1c\xa7\x02\x47\x38\xce\x5a\x09\xc6\x74\xf4\x16\x5f\x2c\x65\x2b\xf9\x61\x05\x7b\xb9\x1d\x98\x25\x7e\xcc\x00\x3d\xa5\x5f\x5e\x99\x77\x09\x4e\x4e\x69\x53\x2b\x1f\xab\xcf\xde\xb4\xe5\x76\xe6\x63\xc2\x29\x3e\xef\x20\xa0\xb5\x71\xcb\x80\x39\xc5\xa0\xe6\xd5\xfd\x2e\x6c\x5a\xf4\xa4\xf1\x9e\x7e\xd4\xd3\x1f\x4c\x51\x37\xa7\x00\x7b\x1e\xfe\xb1\xed\xf2\x5d\x8e\xcb\xa3\x51\xa0\x75\x30\x9c\xa2\x02\xe4\x02\x24\x8f\x0f\x54\xe5\xd6\x3a\x13\x2f\x48\xa4\xf4\x59\x3b\x38\x7c\xaf\xe5\x17\x95\x16\x8b\xae\x31\x0d\x9b\x4b\x2f\x97\xaf\x96\x32\xd4\xfc\xa6\xca\xc0\x5a\x97\xac\xf9\xa9\xc9\x5b\xeb\x4d\xce\xc0\xad\xb5\x53\x4f\xfe\x48\x7c\x9c\xbd\x20\xfc\xe1\x78\x10\x7e\xbd\x3e\x4a\x72\x9c\x2f\x14\x0f\xe5\x23\xe7\x0b\xc5\xcb\xd5\x53\xcd\x8e\x94\xbf\x16\x1e\x4d\xce\xe2\x93\xa5\xcc\xb9\xf2\xd3\xf8\xa9\xeb\x29\xec\x70\xbc\x96\x7a\x49\xd9\xe4\x7c\xca\x29\xa7\x9c\x7a\x61\x69\xf3\x9a\x1d\xce\x27\x4f\x1b\xa3\x7c\xd6\xda\x18\x25\x2b\xb5\x41\x53\x7a\xad\x0d\x51\x0b\x97\x9c\xa6\xc2\xb5\x84\x5b\xe4\x38\x79\x4b\xa6\x7a\xec\x6b\x7e\x79\xf8\x72\x64\x1e\x9a\xde\xa5\xed\xaf\xe8\xbf\x9b\xbc\x03\x83\xa6\x03\x87\x7b\x3b\x61\xec\x87\xc5\xa6\x65\xd0\xf4\x84\xe7\xe6\x09\x35\x18\x59\xfc\xb2\xc8\x59\x7c\xe5\x78\x34\x39\xcf\x18\x32\x46\xb7\xb7\x1f\xb3\x8e\x43\x63\xae\xc7\xd4\x13\x0f\xe5\xd6\x3b\x4e\xf6\x94\x75\xdd\xa2\xe3\xc1\x69\xac\x23\x52\x67\x32\xc6\xa6\x84\xee\x34\x3f\x34\xa0\x24\x81\xa5\xa9\x81\x8b\x84\x64\xb1\x3f\x96\x0e\x7a\x0c\x79\x3a\xd8\x9c\x4e\xd6\x1b\x26\xc5\x8f\x05\xb4\xb9\x60\x54\xeb\xc0\x28\x3f\xbc\x94\x23\x6b\xc9\x1f\x4d\xb7\x56\xef\xa9\x7a\xc8\xfd\x7a\xe5\x34\x1e\xc9\x27\x8f\x0d\x6f\x1a\x38\x1f\x00\xc5\x61\x7e\xeb\xbd\xe4\x13\x65\xcb\xe3\x8b\xe4\x03\xd6\x69\xcd\x1f\xab\x3f\x5a\x7e\x6a\x36\xc7\xe4\xcf\x14\x3e\x49\xfc\x56\x9f\x28\x7e\xc9\x17\xec\x93\xa4\xdf\xd2\x76\x28\xca\x6d\x33\x39\xfc\xac\x4f\xb9\x09\xc4\x89\xb0\x84\x79\xee\x35\x9f\x2c\xb6\x2c\x99\x6f\xe5\xf7\xfa\xa5\xc9\x5a\x3a\x0f\x2d\x4c\xb3\x21\x85\x5b\x6d\x8c\x49\x67\x0e\x69\x79\xc3\xc9\x9c\x9a\xac\x36\x72\x7d\x79\xa8\xfc\xb5\x52\x4e\x39\x68\xfa\x2c\xf1\x5c\xa7\x8b\x79\xb5\xfa\x6d\xf1\x43\xb3\x63\xe1\xb1\xe8\xb3\xe4\xa3\xc7\x8e\xc7\xbe\xb5\x9f\xd5\x74\x5b\x78\x2c\x7d\xb5\x76\xed\xe1\x9f\xca\x0e\x25\x6b\xa9\x8f\xde\x34\x4c\xa1\xc3\x93\x27\x53\xe8\xe3\x68\x4c\x99\x51\x63\xaf\x45\xb7\x99\x49\x72\x02\x1b\xb7\x0e\x70\x39\x03\x00\xb6\x67\x91\xb3\x82\x12\x6f\xe3\xb4\xd0\xd8\x4e\x35\x40\x5e\x9a\xc7\xf2\x70\xbe\xbc\x0b\x7a\x6c\x03\x39\xc0\x69\x7c\x7a\x4c\xa0\xcb\x2b\xeb\xa9\x23\x96\xbe\x64\x2a\x7d\xa7\x90\x4b\x79\x28\xff\x73\x74\x7b\xf8\xa7\x06\x45\xa7\x04\x5c\x5e\xdd\xb9\xbe\x4c\xa1\x83\xe3\x19\x53\x07\x3d\x3c\x53\x97\xc3\x18\x39\x2d\x0d\x53\x97\x9f\x45\xb7\x8b\xa6\xec\x4c\x25\x87\x3d\x09\xce\xf1\xc9\x03\xa6\xb8\xce\x93\x03\x68\x94\x1d\xac\x8f\xe3\xb1\xc4\x7b\x64\x72\x2a\x88\x15\x18\x59\x40\x54\x4e\x03\xb6\x34\x68\x89\x47\x1b\x50\xa9\xf4\x4a\x94\xd3\x10\xa5\x01\x8c\x2b\x2f\xa9\xae\x71\x7e\x4a\xf9\x63\xcd\x23\x4b\xbd\xf0\xe6\xa9\xa4\x8f\xd2\x29\xa5\x5f\xca\x3b\x2d\xfd\x9a\x1d\xc9\x37\x8f\xbf\x94\x0f\xf8\x57\xea\x47\x2c\x36\x24\x3e\xca\x6f\x6b\xb8\xe6\x27\x97\x2e\x4b\xbb\xd3\xea\x3b\x67\x53\xaa\x4f\xde\x7a\x40\xc9\x69\xed\x51\xd2\xc9\x91\xd4\x66\xad\x6d\x5e\xf2\x07\xeb\xd1\xf2\x95\xb2\x2f\xd5\x29\x8a\x4f\xb2\x43\xf9\x23\xf1\x48\x65\x6e\xcd\x1f\xce\xce\x20\xbf\x2c\x05\x65\xb9\xb7\x54\x74\xab\x2d\x4b\xa5\xa5\xe4\x3d\x95\xc1\xea\x9b\x54\xb8\x9c\x9c\xd6\x21\x70\xe4\xf1\xcb\x4a\x96\x06\x3f\x85\xce\x87\xd2\x93\x53\x2f\xc6\xd8\xc8\x25\xab\x8e\xa9\xf2\xf2\x21\xf4\x5a\xea\x70\x8e\x7d\x4b\x99\x4a\x1d\x1b\xa7\x47\xeb\xaf\x28\x5d\x9e\xb4\x79\xf3\xd8\xea\xb7\x35\xde\x9a\x6f\xf8\xda\xab\x83\x23\xad\x6f\xcc\xb1\x49\xf5\xcf\x96\xb4\x59\x74\x7b\x78\x3c\x72\x53\xe7\x3d\x27\xe7\xb1\x3f\x26\xed\x53\xfa\x2d\x11\xa7\xdb\x94\x1e\x4b\x47\x21\x29\xb7\x74\x0e\x54\xbc\x94\x21\x52\x82\x28\xdb\x9c\x0f\x5a\xa7\x74\xca\x4e\xea\x21\xf5\x79\x75\x9e\x02\x1c\x4d\x05\xb0\x72\xf5\x3c\x06\x20\xe6\xb1\x35\x66\xc0\x18\x63\x77\x2a\xbe\x5c\xd9\xdc\xc1\xa6\x8d\xb3\x74\xe0\x63\x06\x18\xca\x9e\xc4\xaf\x75\xbe\x5e\x9b\x1a\xef\x18\x7d\xa7\x04\x45\x53\xe8\x98\x62\x40\xb4\x8c\x59\x16\xfe\x29\x7c\xca\xe9\x9b\xad\xba\xad\xf2\x56\x7d\x53\xb4\xa9\xdc\xeb\x6c\xf0\x63\x01\x18\x16\x27\xbc\x99\x3c\x65\xe7\xad\x55\x9e\x1c\x80\xc6\xf1\x71\x3a\x31\xb8\xc2\xfc\x16\xf2\x36\xb6\xf4\x9e\xab\x14\x38\x5e\x1b\x1c\x38\x39\x4a\x87\xb7\xc3\xe4\xf2\x9b\xe2\x91\xca\x85\xf3\x43\xf3\x4f\x4b\x8b\x25\x6f\x31\x69\x71\x5e\xd9\xdc\xce\xd2\xa2\xcb\xd2\x1e\xf0\xb5\x16\xc6\xd9\x91\xee\xa5\x70\xcb\xbd\x55\x4e\x6a\x87\x39\xed\xc5\x5a\x47\xb8\x3c\xb0\xe6\x8d\xe4\x97\xe6\x07\x77\xad\xa5\x3f\xa7\x2c\x72\xda\x10\xd5\x3f\x72\xfc\x5a\x59\x7a\xca\x16\xeb\xb1\xd8\x97\x6c\x53\x71\x9a\x0e\x89\xbc\xe5\x94\x53\x97\xb8\x3a\xa8\x5d\x63\xff\xa8\xf8\xb1\x3a\x3c\xf5\x5b\x0c\xf4\x34\x66\x51\x39\xc3\x23\x55\x1e\x4a\xde\xd3\x98\x4c\x89\x36\xd8\x1c\x43\x56\x79\xca\xdf\x29\xfd\xb0\xfa\xf0\x2e\xf5\x5a\xd3\xff\x10\x79\xf1\x10\xa4\x95\x39\xe6\x7d\x8c\x64\x4d\x83\xa7\xaf\xb0\x74\xbc\x16\x3b\x52\x98\xc5\x0f\x2b\x8f\xc6\xeb\xd5\x2d\xf5\x61\x39\xf6\x73\x79\xc7\xf8\xad\xd9\xf0\xda\xcc\xf1\x23\x47\xf7\x43\xe4\xdb\xd4\xf5\x84\xb3\x91\xa3\x7b\xaa\xfe\x48\x2a\xef\xdc\x36\xea\x62\x90\xc2\x3d\xce\xe5\x74\x6e\x52\x41\x5b\x7f\x29\x7d\x16\xd2\x3a\x47\x8b\xbe\x29\x07\x1b\xef\xc0\x3d\x45\xc7\x30\x05\x69\xa0\xd4\x03\x5a\x1f\x92\xde\x05\x90\xcc\xe9\xdc\x73\xfd\x18\xab\xc3\x2b\x93\x6b\x6f\x8c\x9f\x5a\x1f\x30\x75\x1b\xb1\xd4\xe1\x29\xfa\x8d\xb1\xf9\x90\x23\xe7\xc9\xb7\x53\xfb\xa7\xf5\xf5\x9c\xee\x53\x95\xab\x97\xdf\x5a\x4f\x3c\x76\xa6\x06\x5c\xda\xf8\xee\xa5\x87\x6a\xf3\x2e\xca\x19\x48\xa5\xc2\xb1\x02\xa2\x1c\x3e\x4e\x86\xf3\x27\xa0\x3f\x1c\x4e\xf1\x78\x6c\x5b\x80\xd7\xd8\x4a\x97\xeb\x0f\x95\x3e\x8f\x7e\x8d\x38\x5b\x9a\x2e\x29\xef\x25\x1d\xd4\xb5\x37\xde\x9a\x67\x9c\xec\xd8\xb2\xb0\xfa\xec\x49\x9f\x26\x87\xfd\x92\xc2\x72\xaf\xbd\xe9\xc8\x95\xd3\x7c\xb0\xa4\x2f\xa7\xad\x72\xf9\x2a\xf9\x2c\x95\x87\xd5\x0f\xad\x7d\x60\x1a\xdb\xff\x48\xe9\x90\xfa\x11\xa9\x4d\x5b\xf3\x9b\xf2\x87\xbb\xb6\xe6\x81\xa5\x6f\x91\xea\x8f\x45\x0e\xcb\x52\x76\x39\x1d\x16\x3f\x2c\x65\xe6\xb1\x61\x6d\x7b\x5e\x39\xab\x0f\x22\x69\x99\x66\x6d\x08\x92\x51\x6b\x27\x61\xa9\x64\xf8\xde\x52\x78\x9a\x6e\x89\x72\xe5\x1e\x9b\x0d\x8d\x3c\x65\xfc\x15\x7d\x45\x1c\x9d\xb2\x9d\x79\x3a\x37\x2f\xaf\xa7\x13\xb5\xf4\x3d\x9e\xf4\x8c\x49\xbb\x67\xe0\xce\x1d\xfc\xa7\xd2\xed\x0d\xcf\x1d\xec\xde\x85\x6e\xca\xce\xd8\x72\x95\xf4\x58\xe4\xbc\x36\xc7\xf2\x5a\x79\x4c\x72\xff\x0f\xf9\x63\xeb\x7e\x2d\x7e\x67\x93\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x08\xf7\xe8\xd3\xa5\x14\x03\x00") + +func web_uiV2AssetsMstile310x31049242d1935854126c10457d1cdb1762bPngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsMstile310x31049242d1935854126c10457d1cdb1762bPng, + "web_ui/v2/assets/mstile-310x310-49242d1935854126c10457d1cdb1762b.png", + ) +} + +func web_uiV2AssetsMstile310x31049242d1935854126c10457d1cdb1762bPng() (*asset, error) { + bytes, err := web_uiV2AssetsMstile310x31049242d1935854126c10457d1cdb1762bPngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/mstile-310x310-49242d1935854126c10457d1cdb1762b.png", size: 201893, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsMstile70x7008e1368e84f412f6ad30279d849b1df9Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x2b\x6d\xd4\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x7b\x70\x1b\xd7\x79\xef\xef\x9c\x5d\xec\x02\x20\x16\x04\x01\x10\x24\x20\x3e\xa0\x17\x29\xcb\x90\x2c\x1b\x7e\x51\x71\x43\xc5\xb1\xe5\xc4\x95\xe3\x1b\xc5\x49\xa3\xb6\xa9\xfa\x98\xea\xf6\xde\x3e\x72\xd3\xde\x4e\xa6\xcd\x74\x32\x99\xde\x4e\x26\x93\xe9\x6d\xd3\xdb\x34\x13\xb5\x79\x28\x69\xea\x3c\x5a\x25\x8e\xed\xc4\xaf\xd8\x96\xe3\x48\x7e\x88\xb2\x1e\xb4\x2c\xc2\xa4\x44\x52\x14\x48\x42\x20\x08\xe2\xb9\xbb\xd8\x3d\xe7\xfe\xb1\x80\x44\x51\x7c\x80\x14\x5f\x4a\xf8\x9b\x59\x13\x23\x63\x1f\x38\xdf\x6f\xbf\xf3\x9d\xef\xfb\xce\xf7\x01\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\x6b\x58\xc3\x1a\x7e\xb5\x40\x56\xfa\x01\x96\x0b\xd1\x68\x94\x02\x40\x30\x18\xbc\xe6\xdf\xc7\xc6\xc6\xa0\xeb\x3a\x00\xa0\xab\xab\x8b\x2d\xff\x93\xad\x2c\x7e\x69\x08\x10\x8d\x46\xa9\xcf\xe7\x83\xcf\xe7\x83\xa2\x28\x00\x40\xcb\xc7\xd4\xcf\x98\xf2\x99\x4d\xf3\x97\x01\x80\xa6\x69\x6c\x6c\x6c\x0c\x63\x63\x63\x38\x76\xec\xd8\x2f\x25\x39\x6e\x5a\x02\x74\x74\x74\xd0\x60\x30\x08\xbf\xdf\x5f\x11\x2e\x05\x20\x82\x43\x14\x19\x91\x6a\x74\xc1\xed\xd2\x84\x40\xad\x2a\x36\xc9\x06\xf1\x3b\x4a\x82\xd7\xa1\xd3\x5a\x91\x11\x3b\xe5\x44\x22\x1c\x94\x51\xae\x9b\x04\xba\x6a\x63\x19\xd5\x66\x4e\xa8\x22\x4b\xe6\x64\x73\x24\x2b\x9b\xf1\xac\x6c\xa4\x74\x91\xab\x9c\xc0\x00\xae\x1c\x4c\xd3\x34\xd6\xdf\xdf\x8f\x23\x47\x8e\xfc\x52\x10\xe2\xa6\x22\x40\x67\x67\x27\x0d\x87\xc3\x90\x65\xd9\x12\x36\x20\xd9\x4c\x62\xf7\xe5\x6d\x4d\x8d\x19\x69\x47\x63\x56\x8a\x7a\xf3\xb6\x2d\x1e\x55\xdc\x24\x9a\x24\x40\x40\xec\xf3\xfd\x81\xdc\xfa\xaf\x61\x12\xa4\x8b\x92\x39\x98\xac\x29\x9d\xbb\xec\x2a\x9d\x19\x51\xb4\xe3\x09\xa5\x14\xcb\x49\x66\x06\x04\x3a\xca\x84\x48\x26\x93\xac\xbb\xbb\x1b\xb1\x58\xec\xa6\x24\xc4\xaa\x27\x40\x34\x1a\xa5\x6d\x6d\x6d\x50\x14\x85\x02\x90\x00\x48\xb5\x45\x31\xb0\x3e\x65\xdf\xd9\x9a\xb2\xbf\x2f\x98\x91\xef\x93\x0d\xd2\x42\x40\xc4\xa5\x7c\x0e\x0e\xc0\x24\x3c\x35\xee\x2c\x9d\x18\xac\x53\x7f\x7e\xc1\xab\xbe\x38\x5c\xab\xc5\x4c\x8a\x02\x00\x1d\x00\xeb\xe9\xe9\x61\x37\x9b\x66\x58\xb5\x04\xe8\xec\xec\xa4\xed\xed\xed\x57\xde\xf4\x1a\x8d\xfa\xdb\x13\x35\xbb\x37\x5f\x76\x3c\x1a\xc8\x49\x3b\x05\x4e\xdc\x2b\xf9\x7c\x1c\xdc\x28\xd8\x58\xac\xcf\x5f\xfc\xc9\xb9\x40\xe1\x87\xc3\xb5\x5a\x8c\x13\x8b\x0c\xd9\x6c\x96\x75\x75\x75\xdd\x14\x5a\x61\xd5\x11\x60\xcf\x9e\x3d\x34\x14\x0a\x51\x00\x12\x61\x70\xb6\xa4\xed\x3b\xb6\x0d\xd7\x7c\x22\x9c\xb2\x3f\x2c\x30\xea\x5f\x75\x0f\x0c\x8b\x0c\xe3\x4e\xe3\x8d\xee\xc6\xfc\x77\xce\x35\xe4\x7f\x52\x90\x58\x0a\x80\x9a\xcd\x66\x8d\x58\x2c\xb6\xaa\x57\x17\xab\x66\x3c\x27\x0b\x5e\x30\x89\x7b\x4b\xc2\x79\xff\xed\x97\x5c\xff\xdd\x97\xb7\xed\x5c\x6a\xf5\xbe\x98\xd0\x04\x16\x3f\xd7\x90\xff\xd6\x5b\xeb\x72\xdf\x4e\x3b\x8d\x21\x94\x89\xb0\x5a\x35\xc2\x8a\x13\xa0\xa3\xa3\x83\x6e\xdb\xb6\x8d\x02\x90\x28\x83\xeb\x96\xd1\x9a\xdd\x77\x0d\x2a\x9f\xac\x55\xc5\x3b\xc9\xca\x3f\xde\x82\x61\x50\x9e\x7a\x27\x90\xff\xe6\x9b\xad\x99\x7f\xcd\xd8\xcd\x38\x00\x35\x99\x4c\x1a\x87\x0f\x1f\x5e\x55\x24\x58\xd1\x11\xde\xb7\x6f\x1f\x55\x14\x45\x02\x87\xb3\x75\xdc\x7e\xf7\x7d\xe7\x6b\x3f\xe3\xcf\xdb\xee\xbb\x99\x05\x3f\x15\x3a\x65\x89\xb7\x9a\xb2\x5f\x3a\xd1\x9c\xfd\x77\x4d\xe4\x49\x00\xfa\x99\x33\x67\xd8\x6a\xf1\x2b\xac\xc8\x48\xef\xde\xbd\x9b\x86\xc3\x61\x0a\xc0\xe9\x2e\x0a\x4d\x9d\x7d\x75\x9f\xde\x30\x66\xff\x38\x01\x91\x56\xe2\x79\x96\x1a\x1c\x40\x56\x36\xba\x5f\xdd\x90\xfe\x6c\xac\xbe\xf8\x0a\x08\x72\xd9\x6c\x56\x7f\xfc\xf1\xc7\x57\x9c\x04\xc2\x72\xdf\x70\xdf\xbe\x7d\xb4\xa1\xa1\x41\x22\x1c\x9e\x1d\x97\x5c\x8f\x3d\xfc\x8e\xff\x6b\xf5\x79\xe9\x3e\x02\xb2\xec\xcf\xb2\x5c\x20\x00\x64\x93\x06\x36\x25\x1d\x1f\x09\xe4\xa4\xa6\x78\xad\x76\x86\x38\x6d\xc5\x68\x34\xca\x00\x60\x78\x78\x98\xaf\xd4\xb3\x2d\xdb\xa0\x47\xa3\x51\xfa\xc8\x23\x8f\x08\xb2\x2c\x3b\x5c\xaa\x10\x7e\xf8\x1d\xdf\x17\x6f\x8b\xbb\xfe\x52\xe4\x74\x45\x97\x73\xcb\x09\x02\x42\xbd\x45\xdb\xf6\x2d\xa3\xce\x87\x27\xec\xc6\xf9\x94\xd3\xb8\x14\x0a\x85\x4a\xc0\xca\x91\x60\x59\xa6\x80\xb2\xca\x17\x01\x38\xc3\x63\xf6\xfb\x76\xf7\x78\xff\x9f\xb3\x24\x84\x97\xfa\xbe\x1c\x1c\x8c\x80\x69\x22\x53\x55\x91\xa9\xaa\x8d\x15\x74\x81\xeb\x8c\x72\xc6\x00\x26\x70\x88\x36\x93\x88\xb2\x41\xed\x8e\x92\xe0\x94\x0d\x62\x17\x19\x11\x81\xa5\xb7\x42\x18\xb8\x7e\x3a\x94\xfb\xbb\x97\x37\xa7\xff\x11\x40\xee\xe0\xc1\x83\x2b\x32\x1d\x2c\xf9\xf2\x6a\xef\xde\xbd\xd4\xef\xf7\x4b\x84\xc3\x7d\xf7\x80\xfb\x77\xef\x1e\x74\x7f\x56\xe0\xc4\xb9\xd8\xf7\xe1\xe0\xd0\x05\xae\x26\x6b\x4a\xc9\x11\xb7\x36\x74\xd9\x55\x8a\xa7\x9c\xa5\x78\x56\x36\x53\xaa\x8d\x4d\x70\x40\x2d\xbb\x70\xaf\x04\x7b\xca\x10\xc1\x21\x12\xc0\x6e\x33\x89\xd3\xa5\x09\xf5\x9e\xa2\x2d\x50\x9f\xb3\x85\x1a\xb2\x52\x53\x43\x4e\x6a\x74\xea\xd4\xb5\xd8\x94\x20\x80\x94\x93\xcd\x1a\x00\x4e\x00\x85\x29\xcf\xb4\x6c\x58\x52\x02\x54\xac\x7c\xd1\x24\x81\xdd\x3d\xde\xcf\x6e\xbe\xec\xf8\xfd\xc5\x1c\x48\x0e\x8e\xb4\xc3\x48\x9e\xf7\x15\x7b\x07\xbc\xea\xd9\x11\x45\xef\xd3\x45\x9e\x00\x90\x29\x1f\x85\xf2\xa1\x97\x0f\x03\xd7\x12\xc0\x0a\x22\x11\x50\x0e\x48\xba\xc8\xa5\x94\x68\xd8\x53\x35\x86\xf3\xbc\xbf\xe8\x06\xe0\xa6\x0c\x5e\x7f\xde\xb6\xbe\x65\xdc\xbe\x65\xc3\x98\x63\x4b\x43\x56\x0a\x09\x9c\xd0\xeb\x9f\x66\x7e\x38\x17\x28\x1c\xed\x6a\xce\x3e\x8f\x15\x12\x7c\x05\x4b\x46\x80\xfd\xfb\xf7\x53\x59\x96\xed\x0e\x9d\x36\xed\x79\xdb\xff\xa5\x50\x46\xfe\xc0\x62\x88\x9e\x03\x28\xda\xcc\x5c\x4f\x7d\xe1\xec\xb9\x86\xc2\x1b\x97\x5d\x7a\x0f\xa3\x48\x00\x48\x02\x48\x03\xc8\xc1\x12\xba\x8a\x49\x51\x3c\x5c\xff\xe6\x4f\xc6\xe4\xb0\xb1\x58\x3e\x24\x00\x4e\x46\xe1\x4a\x28\x25\x4f\x42\x29\x79\x8f\x37\x67\x03\xb5\xaa\xb0\x7e\xf3\x65\xe7\x9d\x5b\x47\x6b\x76\xd4\x15\x44\xff\x42\x08\x7d\xb9\x46\x1f\x7a\x69\xf3\xf8\xd7\x38\xc1\x10\x80\x5c\x36\x9b\x5d\x31\x12\x2c\xc9\x54\x57\x11\xbe\x4b\x13\x36\x3c\x7a\xc6\xff\xd5\xfa\xbc\xb4\xf3\x46\xaf\xc9\xc1\x31\x56\x53\x4a\xbc\xb5\x2e\x77\x34\x56\x5f\x38\x56\x12\xf9\x20\x80\x11\x5c\x15\x7c\xe5\x4d\xbf\x22\xf4\x64\x32\x09\x5d\xd7\x31\x3c\x3c\x3c\xa7\x3b\xb6\x92\x4f\x20\x49\x12\x42\xa1\x10\x30\x39\xc4\x5c\x26\x03\x00\x17\x00\x3f\x80\x00\x65\x68\x6a\x4e\xdb\xa3\x77\x0c\x29\xf7\x35\x8f\xcb\x1b\x28\xaa\xd3\x0a\xaa\xc8\x0a\xdf\xdf\x31\xfa\xf9\x54\x8d\xf1\x0c\x80\xf3\x00\x32\x07\x0f\x1e\x34\x16\x30\x24\x8b\x82\x45\x27\x40\x45\xf8\x8a\x2a\x6c\xfa\xf0\xe9\xfa\x6f\x78\x8b\xb6\x3b\x6e\xe4\x7a\x1c\x1c\xc9\x9a\xd2\xc8\x1b\x2d\x99\x17\x7b\xfd\xc5\x5f\x70\x8a\x41\x00\x71\x58\x82\xcf\x61\xd2\x9b\xde\xdf\xdf\x8f\x78\x3c\x8e\xee\xee\xee\x45\x7b\xa3\x3a\x3b\x3b\x69\x28\x14\xaa\x44\x23\x45\x00\x76\x58\x64\xf0\x02\x68\x04\x47\x4b\x63\x56\xba\xfd\x9e\x01\xf7\xee\xd6\x94\xbd\x8d\xce\x32\xa4\x0c\x9c\x3d\x73\xcb\xd8\xd7\x63\x81\xe2\x77\x00\x9c\x03\x90\xea\xea\xea\x32\x56\x32\x56\xb0\xa8\x04\xa8\x08\xdf\xa9\xd3\xf0\xde\x53\xf5\x87\xfc\x05\xe9\xce\x1b\xb9\x5e\x4e\x32\x33\xaf\xb5\x4e\xbc\x70\xb6\x31\xff\x12\xa3\xe8\x05\x30\x84\xab\x82\xd7\x35\x4d\x33\x96\x33\x39\xa3\xa3\xa3\x83\x86\xc3\xe1\xc9\xa1\xe9\x0a\x11\x42\xe0\xd8\xd0\x9c\x96\xef\xb9\xef\xbc\x67\x4f\x20\x67\x0b\x4d\x9d\x1a\x38\x80\xb7\xd6\x65\x5f\x7c\x65\x63\xfa\x4b\x20\x38\x09\x20\x11\x8f\xc7\xf5\xa7\x9e\x7a\x6a\x45\x6d\x80\x45\x23\x40\xc5\xda\x97\x0d\xd2\xf4\xe1\xd3\xf5\x5f\x6b\xcc\xca\xef\x5d\xe8\xb5\x18\xe1\xac\xbb\x31\x7f\xfc\xe8\xfa\x89\x1f\xaa\x36\xd6\x0d\x60\x10\x40\xc5\xb8\xd3\x57\x43\x12\xc6\x24\x6f\xa6\x88\xab\x53\x43\x13\x65\x68\xdb\x1e\x77\x7d\xb0\xa3\xbf\xf6\x01\xd9\xa4\xf6\xca\xf7\x87\x6a\xd5\xde\x1f\x6e\xbf\xfc\x39\x93\xe2\x38\x80\xa1\x6c\x36\x5b\x58\x0d\x9e\xc0\x45\x21\x40\x79\x30\x24\xca\x10\xd8\x73\xd6\xff\xf7\x1b\xc6\x1c\x8f\x2d\xf4\x5a\x13\x76\x23\xf5\x42\x5b\xea\x3f\x2f\xd6\x69\x47\x00\xf4\xc2\x52\xf7\x69\x00\x6a\x3c\x1e\x67\x2b\xfd\xc6\x4c\xc5\xa4\xbc\x05\x09\x16\x11\x1a\x01\x6c\xa8\x2d\x8a\xd1\x07\x62\x75\x1f\x6f\x4a\xcb\x9b\x0a\x12\x4b\x7f\xf7\xf6\xd1\xbf\xcd\xda\xcd\x97\x61\xcd\xfb\xb9\x95\x9c\xf7\x27\xe3\x86\x09\x10\x8d\x46\x69\x34\x1a\x15\x01\x78\x3a\x7b\x3d\x9f\xde\x71\xc9\xf5\xe7\x0b\xb1\x8c\x39\x38\xde\xf5\x17\x4f\xbf\xd8\x36\xfe\x1d\xd5\xc6\x4e\xc2\x1a\xa8\x24\x80\x42\x36\x9b\x35\x56\xc3\xdb\x32\x1b\x26\x85\xb3\xed\xb0\xa6\x85\x16\xca\xd0\x76\xd7\xa0\xfb\x83\x23\x6e\x3d\x36\xe0\x55\x9f\x06\x10\x03\x90\x7e\xf9\xe5\x97\xd9\x6a\x09\x0d\xdf\x30\x01\x0e\x1c\x38\x20\x02\x70\xdf\x32\xe2\x7c\xec\xc1\x1e\xef\x97\xe9\x02\x62\xf7\x26\xe1\xec\x58\x78\xe2\x99\xae\xe6\xec\x0f\x38\xc1\x59\x58\x2a\x3f\xa3\x69\x9a\xda\xdd\xdd\xbd\xaa\x13\x2a\xa6\xa2\xec\xfb\x10\x01\xb8\x61\x4d\x0b\x1e\x58\x86\xea\x08\x80\x54\x4f\x4f\x8f\xb1\x9a\xd2\xc6\x6e\x88\x00\x65\xa3\xcf\x55\x9f\xb3\xdd\xf1\xd1\x93\x81\xff\x92\x4c\xea\x9d\xef\x35\x34\x81\xa9\xcf\xb5\xa7\xbe\xdb\xe7\x2f\x3e\x0d\x4b\xf8\x23\x00\x72\xf1\x78\xdc\x58\x6d\xea\xbe\x5a\x4c\xce\x71\x28\x1f\x0c\x37\x90\x0f\x10\x89\x44\x68\x38\x1c\x86\x24\x49\x90\x65\x19\xd9\x6c\xb6\xaa\xa5\x6d\x35\x58\x30\x01\xca\x2a\x4f\xb2\x19\xa4\xe9\x37\x4e\x06\x1e\xf7\xe7\xe7\x6f\xf1\x17\x6c\x66\xee\xc9\x5b\x93\xff\x36\x5c\xab\x3f\x0f\x4b\x3d\x8e\x00\x50\xbb\xba\xba\xd8\xcd\xf4\xd6\xcf\x84\xb2\x6d\x04\x4d\xd3\xb0\x10\x4d\x16\x8d\x46\x69\x24\x12\x81\x2c\xcb\x15\x5f\x44\x45\xbb\x5e\x49\x55\xbf\xd1\xdc\x82\x05\x11\x20\x12\x89\xd0\x9d\x3b\x77\x8a\xe0\xf0\x76\xf6\x79\xfe\x6a\xc7\x25\xe5\xcf\xe6\x7b\xa1\xbc\x64\x66\x7e\x14\xb9\xfc\x2f\x97\x95\xd2\xcf\x60\x09\x3f\xa9\x69\x9a\x7a\xe8\xd0\xa1\x9b\x5e\xf0\x8b\x81\xb2\x71\x29\x82\xc3\xb9\x61\xcc\x7e\xef\xb6\x61\xd7\x6f\x35\x64\xa5\xed\x84\x83\x8e\xd5\x94\xce\xbd\xdd\x98\xff\xde\xb9\x40\xe1\x65\x4e\x91\xb9\x91\x4c\xa3\x05\x85\x83\x3f\xf8\xc1\x0f\x12\x51\x14\x9d\x4d\x13\xf2\xaf\xbd\xaf\xb7\xee\x0b\x74\x9e\xb1\xfc\xa2\x68\xe6\x7e\xb4\xed\xf2\x97\x2f\x2b\xa5\xe7\x01\xf4\x00\xb8\x9c\x4c\x26\xb5\xef\x7e\xf7\xbb\x6b\xc2\x87\x35\x85\x6c\xdd\xba\x55\xa4\x0c\x9e\xf7\xbf\x5b\xf7\xd7\xf7\x5d\xf0\x7c\xa9\xae\x68\xdb\x61\x63\xb4\xc1\xc6\x68\xc0\xad\x89\x5b\x37\x8e\x39\x1e\x0b\x66\xe5\xd6\xf3\xbe\xe2\x6b\xb2\xcb\xa9\x06\x83\x41\x16\x8b\xc5\xe6\x1d\x52\x9e\x37\x01\x76\xef\xde\x4d\xfd\x7e\xbf\x24\x9a\x64\xdd\x23\x6f\xfb\xff\xb9\xa6\x24\xac\x9b\xcf\xf9\xba\xc0\xf4\x1f\x47\x92\x5f\x19\xa9\x2d\x3d\x03\xcb\x1b\x36\x96\x4c\x26\xf5\xd5\x96\x2b\xb7\x92\x78\xf8\xe1\x87\x05\x00\xca\x3d\x03\xee\x3f\xba\xfd\x92\xf2\x19\x32\x8d\x9b\x99\x80\x10\x8f\x2a\x46\x14\x4d\xa8\xed\xad\x2f\x1e\x55\x14\xa5\x98\xcd\x66\x31\x36\x36\x36\x2f\x12\xcc\x3b\xaa\x55\x76\x7e\xb8\xa3\x43\xca\x27\xbc\x05\xdb\x8e\xf9\x9c\x6b\x12\xce\x5e\x68\x4b\xfd\x7b\xdc\xa3\x3f\x0b\x4b\xed\xa7\xd6\x84\x7f\x2d\x3a\x3b\x3b\x29\x00\xc9\xa9\xd3\x96\x3b\x86\x94\x4f\xce\xb5\xa4\x6e\x4b\x38\x7f\xbb\x3e\x6b\x8b\x00\xb0\x47\x22\x91\x79\xdf\x6f\x5e\x04\xd8\xb7\x6f\x1f\x05\x60\x57\x54\x61\xc3\x1d\x17\x95\x3f\x9a\xcf\xbc\xcf\xc1\xf1\x66\x4b\xe6\x99\x58\xa0\xf8\x04\xca\x73\xfe\x9a\xf0\xaf\x47\x38\x1c\x06\x00\x7b\x53\x5a\xbe\x57\x32\xa9\x7f\xae\xef\x53\x10\x69\x7d\xca\xf1\x20\x00\x67\x79\x9f\xe4\xbc\x50\xf5\x09\x6d\x6d\x6d\xd6\xfa\x96\xc3\x7d\x6f\x7f\xed\xff\x90\xab\x78\xb8\xc9\xe8\xf7\xaa\xdd\x6f\xb4\x64\xbe\x0d\x4b\xed\x27\x35\x4d\x5b\x13\xfe\x34\x28\xef\x7b\x94\x5c\x9a\xb8\xbe\xda\x73\x3c\x45\x71\x13\xac\xb8\xc4\xd2\x11\x20\x1a\x8d\x02\x80\xdd\x57\xb0\x6d\xd9\x92\x70\xce\xcb\xd5\x9b\x93\xcc\xf4\x0b\x6d\xe3\xff\xca\xa8\xb5\xce\xd7\x34\xad\xb0\x66\xed\xcf\x0a\x5a\xb4\x99\x6a\xb5\x5f\xd6\x05\x66\x60\x01\xc2\x47\xb5\x27\x5d\x79\xfb\x01\xf7\x5d\x83\xca\x1f\xce\x27\xa5\x8b\x83\xe3\xa5\x4d\xe3\xff\x91\x97\xcd\x13\xb0\xfc\xfa\x85\x63\xc7\x8e\x2d\xe4\x59\x7f\x95\xc0\xe2\xb5\x7a\x8f\x41\xb8\x3e\xd7\x17\x39\x38\xfa\xbd\xea\x29\x58\x7e\x81\x79\xa3\x2a\x02\x94\xdf\x7e\xc9\x53\x10\x37\x6d\xbe\xec\xfc\xd0\x7c\x6e\xf0\xae\xbf\x78\xbc\xcf\x5f\x7c\x16\x65\xf7\x6e\x4f\x4f\xcf\xaa\xf1\x83\xaf\x46\x68\x9a\xc6\x00\xa8\x13\x0e\xa3\xff\x5c\x43\xfe\xd5\xb9\xbe\x3f\xec\xd6\x63\x03\x75\xea\x09\x58\xee\xe6\x79\x8f\x6b\x55\x04\x28\xc7\xbf\xdd\x3b\x2e\xb9\x7e\x6b\x3e\x6f\xbf\x26\xb0\xc2\xcf\x37\xa6\xbf\x0d\x82\xf3\x00\x52\xd9\x6c\x76\x55\xf9\xc1\x57\x23\xfa\xfb\xfb\x81\x72\xec\xe0\x95\x8d\xe9\x6f\x5c\xac\x55\x67\x5c\xdc\x8f\x3b\x4a\x89\x67\xb6\x8c\x7d\xb9\x9c\x24\x53\x88\xc7\xe3\xf3\x1e\xdb\x39\xfd\x00\xbb\x77\xef\xa6\x1e\x8f\x47\xb6\x97\xe8\x86\x07\x62\xde\xff\x23\xb2\xea\x08\xc0\x01\xbc\xd1\x9a\x79\xfa\x82\x5f\xfd\x11\x80\x0b\x00\x72\x87\x0e\x1d\x32\xe7\xfb\x80\xbf\x6a\x18\x18\x18\xe0\x91\x48\x84\x89\xa2\xc8\x4c\x0a\xfd\xdd\xfa\x62\x6f\x49\x60\xa2\x5b\x15\xbc\x36\x2b\xbf\x80\xe7\x25\x96\x3d\x13\xcc\xbf\xfe\x7c\x7b\xea\x2b\x79\x3b\x7b\x1d\x96\x76\xcd\x3f\xfe\xf8\xe3\xf3\x1e\xdf\x39\x23\x77\x95\x2d\x5c\x6d\x09\xe7\x6e\xbb\x51\xbd\xe5\x9f\x97\xcc\xd4\xc9\x75\xd9\x1f\xc2\xca\xe2\xc9\xf5\xf4\xf4\xac\xbd\xf9\x55\xe2\xd8\xb1\x63\xd8\xb5\x6b\x57\x0e\x40\xbf\x21\x70\xfd\x78\x4b\x36\x71\xa2\x29\xfb\xa4\xa3\x44\xfd\x04\x84\x16\x6d\x66\xca\xa4\x88\x03\xe8\x47\x79\x7c\xcf\x9c\x39\xb3\xa0\xf1\x9d\x95\x00\xe5\xca\x5a\x22\x38\x3c\x5b\x47\x6a\x1e\x9d\xcf\x85\x4f\x34\x65\x9f\xd3\x45\x1e\x03\x90\xd2\x34\x4d\x5f\x53\xfd\xd5\xa3\x62\x23\x95\x49\x30\x08\x20\xc5\x28\x7a\xf3\x32\xab\x68\x5f\x15\x56\x76\x54\x0e\x40\xa1\xa7\xa7\x67\xc1\x01\xa1\x59\x09\xd0\xd6\xd6\x06\x00\x92\x3f\x6f\x6b\x0b\xe4\xaa\x4f\xee\x2c\xd8\xcc\xcc\xdb\x8d\xb9\xa7\x51\x8e\xee\x75\x77\x77\x2f\xe4\xd9\x7e\xa5\x11\x8b\xc5\x58\x2c\x16\x63\xfb\xf6\xed\x2b\x28\x8a\xa2\xc2\xca\x8a\xaa\xd8\x6c\x0c\x80\x91\xcd\x66\xd9\xd1\xa3\x47\x31\x30\x30\xb0\xe0\x97\x6b\x56\x02\x94\x8d\x3f\xe7\xc6\xa4\xe3\xc1\xf9\x24\x7a\x9c\x6d\xc8\xbf\xa2\xd9\xf8\x79\x00\x69\x4d\xd3\xf4\x5f\x86\xd0\xee\x4a\xa1\x9c\x09\xc5\xa2\xd1\x28\x73\xb9\x5c\x00\x80\x5c\x2e\xb7\x68\x49\x32\x33\x0a\x75\x92\xfa\x77\x6f\x4a\x3a\xee\xaf\xf6\x82\x26\xe1\xc6\xdb\xc1\xfc\xb3\xb0\x92\x38\xd7\xde\xfe\x79\xa0\x52\xcc\x72\x3a\xe1\xce\x26\xf0\x68\x34\x4a\x27\x17\xc0\xd4\x75\x1d\xfd\xfd\xfd\x55\x25\xcd\xce\x48\x80\xd6\xd6\x56\x00\x90\xdc\xaa\xd0\xe4\x2d\xd8\xb6\xcc\x75\xa1\x0a\xe2\x6e\xed\xdc\xb8\xd3\x38\x07\x4b\x65\xad\x68\xce\xfb\xcd\x80\x49\xb9\x84\x57\x8e\xf2\xb6\x71\x23\x9b\xcd\xb2\xd9\x72\x21\xa7\x14\xd2\xaa\x1c\x00\x60\x84\xc3\x61\xbd\xa3\xa3\xc3\x38\x76\xec\xd8\xac\x44\x98\x91\x00\xe5\xc0\x82\xbd\x39\x6d\xbf\x97\xf2\xea\x0a\x37\x70\x00\x3d\x0d\x85\x57\x61\xbd\xfd\x85\xfe\xfe\xfe\x35\xe1\xcf\x80\xb6\xb6\x36\xda\xd1\xd1\x01\x59\x96\xed\x92\x41\xdc\xeb\xc7\x1c\xf7\x36\x4d\xc8\xf7\x50\x46\xc4\xb1\x9a\xd2\xbb\xbd\xfe\xc2\x8b\x50\x94\x91\x03\x07\x0e\xa8\xd3\x95\x9f\xab\xa4\xe1\x0b\x0c\xae\x2d\xa3\x35\x0f\x6c\x19\x75\x7e\xc4\x9f\xb7\x6d\x31\x29\x57\x2f\xd5\xea\xc7\x4f\xad\xcb\x7e\x3b\xee\x46\xf7\xae\x5d\xbb\x0a\xc1\x60\x70\xc6\xbd\x13\xb3\xcd\xeb\x14\x80\xb3\x65\xdc\xde\x51\x6d\xd4\xcf\xa4\x5c\xbf\xe0\x2d\x1e\x03\x90\x02\x60\x3c\xf7\xdc\x73\xab\x82\x00\x93\xaa\x8a\x02\xd7\x3b\xbf\x58\x32\x99\xc4\xf0\xf0\xf0\xb2\x96\x83\xdd\xb5\x6b\x17\x05\xe0\x6c\x4d\xd9\xef\x7d\x7f\xac\xee\x8b\x8a\x26\x6e\x9f\x3c\xce\x3b\xfb\x6b\x53\xc7\x9b\x33\x7f\xf7\x7a\x6b\xe6\x5b\xed\xed\xed\x19\x00\x57\x9c\x68\x15\xe1\x3b\x75\xda\xf4\xeb\x6f\xfb\xff\x21\x94\x91\xf6\x4c\x0e\x1b\xb7\x5f\x16\xef\xdc\x9c\x74\xfc\xce\xeb\x2d\x99\xbf\x79\xbd\x35\xf3\xcd\xf6\xf6\xf6\xdc\xd8\xd8\x98\x31\xdd\x8e\xa9\x69\x09\xd0\xd1\xd1\x51\x99\xff\x5d\xc1\x8c\xb4\xb5\xda\x1f\x95\x70\xe9\xbd\x79\x89\x0d\x02\x28\x68\x9a\xb6\xe2\x79\xef\x93\xd4\xab\x08\x40\xa2\x06\xb7\x4b\x45\xe6\xa1\x26\x5c\x00\x98\x29\x22\xa7\x3b\x68\xda\xef\xf7\xeb\x7e\xbf\x5f\xdf\xb6\x6d\x9b\xb1\x1c\x7b\x0f\xf6\xef\xdf\x4f\x01\x38\x9b\xc7\xe5\x9d\x8f\xbc\xed\x7f\x5c\x64\xc4\x33\xf5\x3b\x22\x23\xde\x7b\x06\xdc\x5f\x14\x18\x71\xfd\x62\xfd\xc4\xbf\xb4\xb7\xb7\xa7\x8f\x1c\x39\xc2\xa2\xd1\x28\xf5\xfb\xfd\x22\xe1\xf0\x7e\xf0\x1d\xdf\x3f\xac\xcb\xc8\x7b\xa6\xbb\x07\xe5\xc4\x79\xef\x80\xfb\x0b\x19\xbb\x91\x7a\xa7\xb1\xf0\xa3\x68\x34\x9a\x99\xce\x1e\x9b\x96\x00\x65\x83\x42\x74\xab\x42\xa8\x46\x17\x9a\xaa\xfd\x61\x03\x75\xea\x69\x10\xa4\x00\xa8\x65\x97\xe6\x8a\xe0\x9a\xca\x63\x25\xee\xa9\x8b\x97\x1e\xa8\x1b\x36\x1e\x75\x64\xcc\x3b\xa9\x89\x00\xac\x04\x4b\x80\x40\x65\x02\x46\xf2\xb5\xc2\x1b\xe3\x21\xdb\x0f\xd3\x41\xf1\x95\x50\x28\x94\x39\x70\xe0\xc0\x92\x15\x72\x8a\x46\xa3\x54\x96\x65\x49\x60\xf0\xbf\xef\xdd\xba\xcf\x4f\x27\xfc\x0a\x08\x08\xbd\x63\x48\xf9\x74\xac\xbe\xf0\xea\x65\xa5\xf4\xc6\xfe\xfd\xfb\x0b\xb2\x2c\x03\x80\x73\xc3\x98\xe3\x81\xa6\xb4\xfc\xf0\x6c\xf7\x22\x20\x62\x47\x7f\xed\xa7\xdf\xad\x2f\xbe\x0a\x59\x56\x3b\x3a\x3a\xf4\xa9\xbf\x69\xda\x58\x40\x59\x55\x4a\xf5\x79\xa9\xad\xfa\xf9\x9f\x63\xc8\xa3\xbd\x05\xcb\x41\xb1\x62\x3e\xff\xbd\x7b\xf7\xd2\x6d\xdb\xb6\x89\x60\xdc\xe3\x1b\xd4\x3f\x76\xcb\x2b\xf9\x97\x9a\xce\x6a\x87\x5c\xe3\xe6\x5e\xc1\x44\x0b\x01\xec\x04\xa0\x04\xa0\x84\xc3\x29\x18\xd8\xe0\x1e\x33\x3f\xde\x72\x46\xfd\xde\x2d\xaf\xe4\x9f\xad\x8b\x97\x1e\x06\xe7\xee\x6d\xdb\xb6\x89\x7b\xf7\xee\xbd\xe1\x3a\x00\x53\x51\xf1\xad\xac\x9b\x90\xef\xac\x2b\x8a\x73\x66\x54\x09\x9c\x38\x6f\x19\xad\xf9\x28\x00\xd7\xa4\x1a\xc9\xae\x8d\x49\xc7\xaf\x4f\x97\x2a\x36\x15\x8a\x26\x6c\x09\xe4\x6c\xdb\x01\x48\xe5\x64\x93\x6b\x30\xd3\x05\x28\x00\xc9\x97\xb7\x6d\xae\x76\xfe\x37\x28\x57\xc7\x6a\x4a\xbd\x58\xc1\x6a\x17\x57\x0c\xa3\x12\x0f\xad\x7f\x4b\xfd\x87\xa6\xb7\xb5\xaf\xd9\x74\xde\x56\xcd\x6f\x20\x00\x24\x95\x6f\x6f\x39\xa5\x3e\xde\x72\x46\xfd\x1c\x31\xb9\xdf\xef\xf7\x4b\x8b\x4d\x82\xb2\x6f\xc5\xee\xcb\xdb\x6e\xaf\x76\x07\x55\xbd\x25\x40\x17\x2c\xe1\x5b\xd5\xd5\xd4\xea\x34\x33\x01\x81\xa2\x8a\x1b\x00\x48\xe5\x7b\x5f\x83\xd9\x08\x60\xf7\x16\xc4\x0d\x55\x3d\x21\x80\x09\x87\x11\x57\x45\x96\x44\xb9\x56\x6e\xb5\xe7\x2d\x16\x2a\xc2\xa7\x06\x0f\xad\x3f\x5e\xfc\x6a\x6d\xc2\xf8\x6d\xb2\x80\x24\x09\x02\x88\x75\x97\x8c\x3f\x09\x9f\x2c\x7e\xb1\x42\x82\xdd\xbb\x77\x2f\xb6\x26\x90\x08\x27\xf6\xb9\xbf\x66\xc1\x10\x38\x43\x65\xda\xb2\x40\x8b\x36\x56\x55\xc2\x08\x07\x90\x97\xcd\x1c\x66\x18\x8b\xeb\x6c\x80\xb2\x33\x82\x02\xb0\xd7\x15\x6c\x55\xcf\xff\x63\x4e\x63\x10\x04\x39\x00\xc6\xd8\xd8\x58\xb5\xa7\x2d\x0a\x2a\x86\x11\x38\xf7\x36\x77\xab\x9f\x75\xa5\xcd\xdd\x37\x72\x3d\x02\xc0\x9d\x30\x7f\x33\x18\xd3\xe2\xf1\x5b\xec\x5f\x0c\x87\xc3\xa9\xb6\xb6\xb6\x39\x1d\x2b\x9d\x9d\x9d\xb4\xdc\xac\x02\x00\x66\xdb\xbd\xc3\x2e\xbb\xf4\x01\x0e\x5e\x55\x39\xaa\x64\x4d\x69\x08\xd7\x26\x7c\x18\x03\x5e\xf5\xf4\xa6\xa4\xf3\xfe\xb9\xce\xd6\x45\x96\xb9\x6c\x9d\x3f\x6d\x85\x94\xeb\x08\xe0\xf3\xf9\x00\x6b\x7e\xb4\xd7\xe8\x42\xd5\xd1\xbf\x71\x67\x69\x08\x96\xfa\x5f\x76\x02\x94\xb3\x61\x9d\x9e\x61\x63\xb7\x67\xd8\xf8\xed\xc5\xb8\x26\x01\x50\x3f\x50\xfa\xb3\x4c\x40\xfc\x79\xce\x27\xbe\xdc\xd1\xd1\x91\x8b\xc5\x62\xd7\x7d\xaf\xb5\xb5\x95\xee\xda\xb5\xab\xb2\x7b\xa7\x72\x50\x00\x46\x28\x14\x32\xa2\xd1\xa8\x31\xcd\x3a\x5e\x8f\xd7\x6a\x67\xc7\x1d\xc6\x90\xb7\x38\xfb\x4b\xc6\xc0\x59\x9f\xaf\xf8\x3a\xae\x26\x7c\x30\x00\xb9\x9e\x40\xe1\xe7\x77\x0d\xba\x3f\x5e\xab\x8a\x8d\xb3\x9d\xdf\xdd\x98\x7b\x59\xb3\xb1\x04\xac\x6d\xf5\xd7\xfd\xff\xeb\xd4\x82\x24\x49\x00\x20\xca\x06\x75\xc9\xc6\xcc\x16\xea\x54\x4c\xd8\x8d\x78\xe5\x21\x97\xd3\xfb\xd7\xd1\xd1\x41\x65\x59\x96\x08\xe3\xfe\xc6\x5e\xed\x53\x0b\x51\xfb\x33\x81\x70\x48\x8d\x31\xed\x53\xe0\xdc\x2b\xcb\xb2\x18\x89\x44\xae\xb9\x76\x47\x47\x07\x7d\xe8\xa1\x87\xa8\x2c\xcb\xae\x40\xd6\xb6\xf5\x81\x9e\xba\xcf\xfd\xde\xeb\xc1\x27\xff\xe0\xb5\xe0\xb3\x1f\x3d\x59\xff\xb5\xdb\x2e\xb9\x1e\x13\x4d\xe2\x6d\x6f\x6f\x97\xca\x19\xd5\x48\x26\x93\x0c\x80\x6a\x52\x8c\xbc\xb4\x79\xfc\x5b\x06\x9d\x39\xed\x8b\x03\x38\xdb\x98\x7f\x65\xc4\xad\x9f\x84\x15\xf9\xab\x10\xa0\x50\x12\x78\xff\x4f\x6f\x19\x3b\x58\x14\xcd\xdc\x4c\xe7\x0e\x7a\xd4\x73\xc7\xc2\x99\xc7\x51\x76\xcb\x4f\x47\xe0\x99\x08\x40\x6d\x26\x71\x56\xbb\x02\x00\x80\xbc\x6c\x8e\xe2\x6a\x41\xa6\x65\x43\xd9\xaa\xb6\x2b\x49\x73\xa7\x9c\xe7\xdb\x17\xfb\xfa\x35\x69\x76\x9f\x73\x82\x6d\x05\x60\xdf\xb6\x6d\xdb\x95\x7f\x8f\x44\x22\xd6\x52\x93\xc3\x1d\xbd\xa8\xfc\xce\x6f\xbc\xd5\x70\x24\x32\xe2\xfa\xdf\xb5\xaa\xf8\x5e\x45\x13\xef\x5e\x37\x61\xff\xd8\xae\x5e\xcf\xb7\x3f\x76\x32\xf0\xb8\xa2\x0a\x1b\x14\x45\xb1\xef\xdf\xbf\x9f\x96\x33\xa1\x55\x00\x89\x8b\x75\xda\xcf\x9e\xde\x9a\x3c\x98\x93\xcc\xcc\xd4\xfb\x9a\x84\xb3\x53\xa1\xec\x2b\x2f\x6d\x1e\xff\x2a\xac\x62\x52\x85\xfe\xfe\x7e\x76\xf4\xe8\x51\x94\xcf\x1f\x1a\x71\xeb\x3f\xfb\xfe\xed\x89\x2f\xf4\xf9\x8a\xdd\x25\xca\x0c\x0e\x6b\x35\x96\x93\xcc\xcc\xeb\xad\x13\xcf\xfc\x38\x92\xfc\x82\x21\xf0\xb3\xb0\x42\xf2\xd5\x39\x82\x2a\xde\x32\xd9\xa0\x6e\xca\x51\xf5\x12\xb0\x60\x63\x29\x2c\x30\x31\xf1\x46\x50\x5e\x1a\xb9\x6a\x47\x4b\x0f\x2d\x45\xc5\x2b\x02\x88\xee\x84\xf1\x50\xc1\x23\x9c\x50\x14\xe5\xca\x0a\xa7\x9c\x27\xe9\xda\x92\x70\xee\x79\xcf\xf9\xda\xbf\xa7\xd3\xd4\x39\x26\x20\x08\xe4\xa4\xfb\x1f\x79\xdb\xff\xd5\xef\xef\x48\x7c\x02\xb2\x3c\xd2\xd9\xd9\xa9\x27\x93\x49\xe6\xf7\xfb\xd3\x00\x62\x17\x7c\xea\x0f\xbf\x7d\xe7\xf0\xbb\x9b\x92\xce\x5f\x6b\xcc\x48\x61\x91\x11\x29\x55\x53\x1a\xe9\xf3\x15\x8f\xa7\x9c\x46\x17\x08\xce\x01\x48\x68\x9a\xa6\x57\x3c\xab\xe1\x70\xd8\x08\x85\x42\x19\x00\xb1\x71\xa7\xa1\x3e\x79\x6b\xb2\xd7\x51\xa2\x2d\x2e\x4d\x68\x30\x29\xd7\x27\xec\xc6\x45\x53\xc0\x20\xac\x1a\x0b\xb3\x26\xe2\xce\xe4\x0a\xa6\x92\x41\xaa\x2e\x8e\xc8\x09\x0c\x5d\x60\x39\x2c\xb3\x06\x98\x14\xb1\x74\xd5\xa4\xd9\xbc\x76\x29\xcd\x07\x35\x69\x73\x07\xac\x65\x58\x0a\xb8\x3a\xed\x88\x26\x09\xec\xbc\x50\xfb\x99\xe9\x84\x3f\x19\xf5\x39\xdb\x7d\xb7\x8e\xd4\xec\x3d\xb5\x2e\xf7\xcd\xf6\xf6\x76\xfd\xe0\xc1\x83\x6c\xef\xde\xbd\xba\xdf\xef\x4f\x02\x30\x34\x1b\x4f\xbe\x1d\xcc\x9f\x7d\x3b\x98\x77\xc3\xd2\xca\x05\x58\xc5\x31\x46\x50\xae\x80\x36\x59\x80\x4f\x3d\xf5\x54\xe5\xfc\x14\xac\x02\x98\x89\xa2\xc4\xce\x16\x25\x66\x47\x79\x8a\x28\x9f\x97\x01\xa0\xce\x56\x90\x62\x3a\x02\x50\x00\x74\x3e\xea\x9f\x03\xcc\xa4\x57\xaa\x70\x2e\x1b\xca\x06\xab\x48\x18\x77\xd9\x54\x36\xab\x31\x74\x23\x90\x0a\xac\x09\x9c\x3b\x41\x88\xb8\x67\xcf\x1e\xa3\x7c\x5f\x7b\x30\x23\xdd\xa1\x68\x42\xdb\x5c\xe7\x13\x10\x6c\xbe\xec\x78\xe4\xd4\xba\xdc\x61\x94\x0b\x5c\x1d\x3e\x7c\x98\xed\xd9\xb3\x47\x0f\x85\x42\x49\x58\x82\x8a\xe3\xea\x52\xcf\x80\xa5\xe6\x75\x4d\xd3\xf4\xe9\xf6\x50\x1c\x3e\x7c\x98\x45\xa3\x51\x23\x12\x89\x64\x64\x59\x2e\xc0\x9a\xe7\xe9\xa4\xf3\xe7\x8c\x26\x02\xb3\x04\x83\x28\xaf\x3e\x01\x84\x13\x30\x4e\xf8\xb2\xab\xff\x8a\xbd\x42\x18\x9c\x84\x61\xd1\xcb\xcf\x56\x20\x98\x70\x11\x0e\x3b\x27\xa0\x93\x6a\x08\x4a\xb5\xaa\xb8\xa9\x5a\x2d\x59\x5b\x14\xc3\x84\xc3\xc5\x09\xc4\x68\x34\x6a\x74\x75\x75\x55\x62\x0e\x6c\xf7\xee\xdd\x2c\x1c\x0e\xab\x98\x64\x93\x65\xb3\x59\x36\x57\xbb\x99\x72\x1d\x05\x00\xd0\x3b\x3b\x3b\x8d\xca\x12\x74\x3e\x7d\x0e\x67\x9c\x02\x00\x3e\x3f\x6b\xda\xca\x5d\x5e\x99\xe8\x1f\x01\x5d\xca\x7b\x73\x02\x86\xeb\x0d\x66\xd1\x24\xd5\x8f\x91\x21\x70\xc6\xcb\x6f\xf8\xd4\xee\xa5\x93\xa2\xa6\x0b\xfe\x0d\x0b\x75\xbd\xcf\xf8\x96\x33\x52\xbd\x41\x47\x38\x68\xb5\x95\x32\x97\x02\x4c\x80\x61\x8a\x24\x47\x75\xbe\x24\x5a\xc0\x90\x48\x86\x13\x32\x75\x80\xd9\xb0\x5b\x3f\x6f\x12\x6e\x08\x55\x68\xcb\x78\xad\x16\x43\x79\x4c\x97\xc2\x4f\x52\xc9\x26\x02\xe6\xd7\x02\x77\xa6\x07\x67\x8c\x72\x83\xa3\xba\x12\x22\x04\xa0\x02\x23\x15\x07\xc8\x72\x83\x01\x44\x55\x5d\x74\xc8\x96\x32\x03\x4b\x71\x83\xa2\x8b\x0e\x82\x58\x3e\x8e\x64\x32\x09\xbf\xdf\xcf\x00\xa8\x69\x87\xd1\xdf\xef\x2d\x9e\xd8\x38\xe6\xbc\x7b\xb6\xf3\x4d\xc2\x8d\xd3\xc1\xfc\xf3\xb0\xe6\x7f\x63\xb2\x7a\x9e\x54\x06\x66\x72\x7b\xdb\xaa\x3a\x94\xb6\xb5\xb5\xd1\x68\x34\x3a\xb9\x8a\x29\x2d\x5f\xd3\x40\x95\x7d\x0c\x67\x64\xae\x26\xf2\x9c\xa5\xd7\xe7\xa6\x00\xe1\x10\x65\x83\xb8\xb0\xcc\x04\x18\x1e\x1e\x46\x28\x14\x32\x40\x50\xc8\xfa\x85\x6e\x25\x65\xde\x50\x59\xda\x99\x90\xf3\x8b\xa7\x51\x0e\x72\x1d\x3e\x7c\x98\x95\x53\xb1\x54\x10\x24\x5e\xda\x9c\xfe\x86\x2f\x2f\x85\x3d\xaa\x38\x2d\xf9\x38\x38\x5e\x6b\x9d\xf8\xd1\xa8\x5b\x3f\x01\xcb\xd8\xbb\x22\x90\x72\x91\x2d\x89\x70\xd8\x7d\x39\x5b\xa3\x2f\x6f\xdb\x40\x00\x3a\xee\x30\xfa\x13\x0a\x86\xda\xdb\xdb\xd5\x70\x38\xac\x4f\x97\xd6\x35\x29\x1d\xcc\xe9\xcf\xd9\x5a\x36\x5f\x76\xee\xf6\x16\xc4\xcd\x25\x81\x17\x2e\x7a\xd4\x9f\xf7\xd6\x17\x8f\xb6\xb7\xb7\x67\xc2\xe1\xf0\xb4\x46\x64\x05\xd3\x11\x80\x01\x60\x9a\xc8\x0a\x8c\xc0\x10\xf8\xdc\x9b\x47\x08\x08\x9c\xba\xe0\x01\x4a\x15\x16\x2f\x8b\x2d\xd0\xd5\xd5\xc5\xca\xf9\x73\xb9\x74\xa3\xed\xe7\x8d\xbd\xfa\xc7\x29\xab\xce\x77\x51\x2d\x0c\x11\xb9\x89\x80\xf8\x3a\xca\x6e\x6e\xc0\x9a\x6f\xdb\xdb\xdb\x0d\x00\xc9\x9c\x6c\x9e\xf8\xcf\x1d\x89\x2f\xbc\xef\xdd\xba\xdf\x5b\x9f\xb2\x6f\xa5\xe5\x52\xf2\x1c\x1c\x79\xc9\xcc\x1c\x5d\x3f\xf1\xe3\xb3\x0d\x85\x1f\xc0\xda\xc4\x71\x65\x83\x4c\x59\xf8\x4e\x7f\xce\xd6\x76\xff\xbb\x75\x7f\xd3\x98\x91\x3e\x40\x61\x05\x88\x38\xb8\x9e\xac\x29\xbd\x72\x64\x63\xfa\x6f\x87\xea\x70\x72\xd7\xae\x5d\x05\xe0\xea\x7e\x81\x4a\xfd\x20\xca\xe0\x79\xcf\x05\xcf\x81\x1d\x97\x5c\x7f\x39\xb9\x91\xe6\x2d\xa3\x35\x7f\x7e\xef\x80\x71\xfc\xd9\x2d\x63\x7f\x11\xaf\xc5\xc9\x03\x07\x0e\x14\x66\x2a\x4c\x79\x9d\x70\x35\x4d\x83\x2c\xcb\xac\x44\x59\xc1\xa4\x5c\x15\x4c\xe2\xaa\x66\xa0\x14\x4d\x08\x4e\x77\xbd\xa5\x86\xa6\x69\x86\x2c\xcb\x39\xdd\x49\x63\xe9\x46\xf1\x35\x6f\xdc\x58\x70\x89\xda\xe9\x30\xd6\x6c\x7b\xd1\x94\xc8\x20\xa6\x94\x75\x2f\x93\x2f\x07\xa0\x3f\x27\x9b\xec\xc9\x5b\x93\xf1\xba\xa2\xb8\xad\x31\x23\x6d\xb2\x99\xd4\x3e\xe1\x30\x46\xe2\x6e\xed\x4c\xc9\xda\x1c\xd3\x8b\x72\x4d\x84\x23\x47\x8e\xb0\x8a\xf0\x03\x59\xdb\xf6\xbd\xa7\x03\xdf\xb3\x1b\xf4\x9a\x78\x00\x01\x91\xea\xf3\xd2\x03\xff\xad\xbb\xfe\xce\x67\xb6\x8c\xfd\x41\x6f\x7d\xf1\x85\xc9\xb1\x88\xf2\x9b\xef\x7e\xcf\x05\xcf\x27\xef\x18\x72\xfd\xf5\xd4\x95\x08\x01\x50\xab\x8a\x77\x3e\x7a\xa6\xfe\x07\x87\x6f\xbb\xfc\xd1\x51\x45\x3f\xb1\x6f\xdf\xbe\x69\x4b\xd3\x5e\xb7\x37\xb0\xb9\xb9\x99\x28\x8a\x22\x32\x0a\xef\xb6\x61\xd7\x87\x64\x93\x2a\x53\xbf\x33\x1d\x52\xce\x52\xdf\xa0\x57\x7b\x05\x40\xbe\xab\xab\x6b\xd9\xf6\x00\x7a\x3c\x1e\xe2\xf7\xfb\x19\x08\x84\x42\xad\x50\xf4\x5e\x32\x3a\x17\x4b\x0b\x68\x0e\x92\x1c\xdc\xee\xf8\x47\x2e\x90\x77\x00\xa4\xbb\xbb\xbb\xcd\x4a\x6f\x9f\xe1\xe1\x61\xee\x72\xb9\xb8\xdf\xef\xd7\x01\x64\x41\x90\x52\x6d\x6c\x20\xe9\x2a\x75\x8f\xba\xf5\x37\x27\x1c\xc6\x09\x46\x71\x0e\xd6\xbe\xc8\x31\x4d\xd3\x8a\x87\x0e\x1d\x62\xd1\x68\x94\x36\x37\x37\x8b\x84\xa1\xfe\x43\x6f\xd7\x7f\xc5\xa3\x8a\x33\xd6\x75\xa1\x9c\xd8\x9b\xc7\xe5\xf7\xbc\xd3\x98\x7f\x8a\xcb\x42\xb6\xb5\xb5\xd5\xdc\xb1\x63\x07\x91\x65\xd9\x51\x9f\xb3\xdd\xf1\x40\xcc\xfb\xcf\xb3\xed\xd7\x10\x39\xa9\x09\x64\xa5\xcd\x6f\x07\xf3\x3f\x95\x2c\x5f\x01\x9f\xda\x9b\x68\xa6\x39\x9b\x71\x02\x35\x27\x9b\xd7\x87\x8f\x66\x80\xaf\x60\x0b\xc3\x2a\x93\xba\xac\x76\x40\xd9\xc8\x31\x00\x24\x4b\x0e\x7a\xf2\x62\x44\xfe\xd6\x7c\x56\x30\x33\xc1\x14\xa0\x0f\x6e\xb7\xff\x9b\x29\x91\x73\x28\x6f\x6f\x9b\x6a\x5d\x1f\x39\x72\x84\x75\x75\x75\x19\x9a\xa6\x65\x60\xed\xd1\x3b\x07\xe0\x24\x80\x13\x00\xba\x51\x2e\x77\x1b\x8f\xc7\xaf\x94\xbf\xab\xc4\x2e\x82\x59\xe9\x8e\x40\xce\x36\x67\x1f\x05\x87\x21\x34\x6d\x19\xad\xd9\x8b\x72\x09\x98\xb2\xc1\xe7\x6a\x1f\x75\x7e\x58\xa8\x22\xa7\x20\x90\xb3\xed\x0c\x4e\x48\x3b\x00\xd8\xcb\xf7\xbe\x06\xd7\x09\x6b\x78\x78\x18\xb0\xe6\x70\x3d\xed\x30\x46\xe6\xba\x41\x05\xde\x82\x2d\x4c\xb8\x55\xa6\xa4\x5c\xe8\x68\xd9\x50\xde\x18\x99\x03\x30\x38\xd1\x68\x7b\x72\xe8\x56\xf9\xbb\x8c\x2e\x9c\x04\xa6\x00\x7d\xe0\x36\xc7\xd7\xf3\x5e\xf1\x67\xb0\xf6\xe6\x15\x66\xda\xe0\xd2\xd5\xd5\xc5\x0e\x1d\x3a\xc4\x8e\x1e\x3d\x6a\xc4\xe3\xf1\x8a\x0b\x36\x9d\xcd\x66\x33\x3d\x3d\x3d\xea\xc1\x83\x07\xaf\xa9\x78\x5a\xc9\x08\x6a\xc8\x4a\xd1\x6a\x52\xba\x00\xa0\x31\x2b\xdd\x85\xab\x25\x60\x28\x00\x67\x20\x27\x55\x15\xf8\x22\x20\xb4\x21\x27\xdf\x05\xc0\x3e\x5d\x46\xd0\x75\xea\x63\x92\x61\xa5\x26\x6b\x4a\x83\xd5\xdc\x04\x00\x5c\x9a\x10\x72\x69\x82\x3f\x6b\x37\xcf\x97\x5d\xa5\xcb\x86\x63\xc7\x8e\xb1\x60\x30\x68\x94\x7d\xe3\xb1\x54\x93\xf4\xbd\x92\x83\x66\x9a\xcf\xa8\xbf\x29\xa9\xbc\xea\x90\x36\x00\xa8\x35\x34\x31\xb8\xdd\xfe\xad\x82\x47\xa8\x54\x2f\x4d\xc7\xe3\xf1\x39\x37\xb8\x74\x77\x77\xb3\x79\xec\x82\x92\x04\x56\x7d\xf7\x73\x81\x11\x17\xae\xd5\xae\x92\x49\xe7\xe1\x84\xa2\xac\xb2\x4c\xbc\x0e\x33\x4e\x01\x00\xd4\xb1\x9a\x52\x5f\xb5\x45\xe7\x04\x4e\xa4\x86\xac\x14\x01\x20\x2d\xa4\x5a\xd5\x8d\xe2\xf0\xe1\xc3\x4c\xd3\x34\xab\x28\x33\x41\x77\xd6\x2f\xfe\x57\xcf\x7d\x35\x9f\x1b\xd9\x28\xbd\x58\x92\x48\x6e\xb6\xdf\xc1\x01\xe8\x76\x92\x8e\xb7\xcb\x3f\x89\xed\x74\x7e\xae\xe0\x11\x9e\x04\x70\x16\x40\x22\x99\x4c\x2e\x49\x53\x87\x09\x87\x71\xb9\xda\xb1\x4d\xd6\xe8\x83\xb8\x76\x65\xc5\x12\x2e\xbd\xbf\x9a\x73\x4d\xc2\xf5\x81\x3a\xf5\x6d\xcc\xb0\x32\x9b\xd1\x11\x04\x4b\x03\x9c\x37\x09\xd7\xc5\x2a\x03\x43\x2d\xe3\xf6\x7b\x7a\xeb\x8b\x87\x61\xad\x77\x97\x1d\x87\x0e\x1d\x62\xfb\xf7\xef\x57\x65\x59\x1e\x01\xa0\x9a\x36\x92\x1a\x69\x93\xfb\x47\x37\x4a\x61\xd7\x98\x79\x9b\x6b\xdc\xdc\x64\xcf\x31\xbf\xa0\x73\x27\x08\x60\x48\xa4\xa0\xba\xe8\x48\xce\x2b\xc4\xf2\x75\xc2\x19\x2e\x90\x7e\x58\x2a\x7f\x04\x40\x66\x09\xcb\xd8\xe9\x17\x3d\x5a\xb7\x2a\x9a\x69\x87\x21\xcc\xaa\xa1\x0c\xca\xf5\xb3\x8d\x85\x23\xb8\xb6\x04\x4c\xe1\x6c\x63\xe1\xa5\xdb\x87\x94\xc7\x24\x46\x67\xb5\x03\x2e\x78\x8b\x27\x32\x76\x73\x10\x80\x5a\x2e\x3f\x73\x0d\xa6\xad\x10\x12\x89\x44\x20\x8a\xa2\x58\x12\xb8\xb2\x25\xe1\x7c\xd0\x61\x08\xb5\xd5\xfc\x2a\xd9\xa0\xf6\x53\xeb\x72\x3f\x02\xc1\x84\x24\x49\xe6\xd0\xd0\xd0\xb2\x77\xc3\x3c\x75\xea\x14\x0f\x06\x83\x4c\x51\x14\x0d\x40\x16\xc0\x18\x28\x19\xd1\x6b\x68\x2c\xe7\x17\xdf\x4a\x87\x6c\xaf\xa7\x9a\x6d\xaf\xa6\x9a\x6c\x2f\xa5\x83\xb6\x97\x72\x3e\xf1\x15\xdd\x49\xdf\x04\x25\xef\xc0\x32\xda\x46\x00\x64\xfb\xfb\xfb\x97\xa4\x5a\x79\x5b\x5b\x1b\x64\x59\xa6\x86\xc0\x6d\x25\x81\xbb\xc2\x29\xfb\x8c\xd9\xc1\x1c\x1c\x27\x9a\xb2\x4f\xbf\x5b\x5f\x7c\xb2\x9c\x14\x52\x84\x45\x02\xa2\xd9\x18\x51\x6d\x4c\x0e\xa7\xec\xdb\x09\xc8\xb4\x17\xc8\xca\x46\xea\x27\x5b\xc7\xfe\x51\xb7\xf1\x33\x00\xc6\xfa\xfa\xfa\xcc\x81\x81\x81\x6b\x64\x32\x2d\x01\x1a\x1a\x1a\x88\xc7\xe3\x11\x40\xe0\x0a\xe4\xa4\x3b\x02\x39\xa9\xaa\xec\x60\xc9\x20\x9e\xf3\xbe\xe2\x0b\x05\x99\x5d\x74\x3a\x9d\x5a\x77\x77\xf7\x8a\xb4\x43\x8d\xc5\x62\x3c\x9b\xcd\x72\x9f\xcf\xa7\xcb\xb2\x5c\x84\x65\x98\x8d\x01\x18\x86\x65\xad\x0f\x02\x18\x80\xe5\x9c\x19\x04\x70\x09\x56\xfc\x3d\x93\xcd\x66\xf5\x43\x87\x0e\x99\x7d\x7d\x55\xcf\x7e\xf3\x05\x69\x6e\x6e\x66\x00\xf8\xa8\xa2\xa7\x4d\xca\x9d\xa1\x8c\xbc\x89\x4e\xe9\x45\xc8\x08\x67\x27\xd7\xe5\x5e\x3a\xba\x7e\xe2\x6b\xdc\x5a\x4e\xa6\xfb\xfb\xfb\xcd\xd1\xd1\x51\xf8\xfd\x7e\x0e\xc0\x4c\xb8\x4a\xc9\x71\xa7\xa1\x37\x64\xa5\xf5\x92\x49\xec\x15\x22\x95\xf7\x68\xf4\x3e\x75\xeb\xd8\x3f\x65\x1c\xe6\xd1\xf2\x6f\x2e\x1e\x3e\x7c\xf8\xba\xe5\xf9\xb4\x53\x40\x3c\x1e\x47\x38\x1c\x36\x00\xe4\x06\x3d\xea\xc9\xad\x23\x35\x0f\x54\x13\x13\xa0\x20\x74\x73\xd2\xf9\xe0\x65\x65\xe2\x0d\x45\x51\x2a\x39\x6c\x2b\x82\x72\x81\x05\x00\xd0\x77\xef\xde\x6d\x04\x83\x41\x75\x8a\xbf\x1d\x28\x3f\x5f\x35\x7e\xf7\xc5\x42\x77\x77\x37\xdb\xb6\x6d\x9b\xa1\x28\x4a\x0a\x04\xe7\x8e\x37\x67\xbf\xd6\xe7\x2f\x9e\xde\x32\xea\xbc\xaf\x3e\x27\x35\x11\x00\x29\x67\x29\xd1\x13\x28\xbc\x96\x70\x95\x7e\x51\xce\x08\x4a\x4e\xce\x08\x0a\x85\x42\xba\xa2\x28\x49\x10\x9c\x8d\x05\x0a\xfa\x79\x5f\xb1\x6b\xdd\x84\x7c\xbb\x3f\x6f\x0b\x95\x28\xd7\x47\xdc\xda\xf9\xcb\xae\xd2\x5b\x9c\x20\x86\xb2\x07\x72\xa6\x12\x32\x33\xca\xb5\xdc\x09\x24\x50\xa3\xd1\x5d\xbf\xff\x7a\xe8\x1b\x42\x95\x76\xc0\x84\xdd\xe8\x3d\x74\xd7\xf0\xa3\x8c\xa2\xbf\xa7\xa7\x47\x5d\x2b\x0d\x33\x3d\x2a\x1d\xd6\x50\xe9\x3a\x06\x04\x60\x65\x1d\x51\x58\x4b\xda\x04\xae\xf6\x45\x54\xa7\xba\x72\x27\x9d\xef\x2e\x5f\xc3\x0b\x6b\xa9\x58\x59\x12\x27\xcb\x47\x61\xb6\x2e\x25\x33\x56\x09\x2b\xdb\x01\xb4\x24\x70\xc7\xfa\x71\xfb\x7d\x8a\x26\x56\x95\x22\x2e\x1b\xc4\x3b\xe2\xd6\x8f\xa7\x9d\x46\x9f\xa2\x28\xea\xa9\x53\xa7\x56\xac\x35\xfa\x6a\xc6\xa9\x53\xa7\x78\x5b\x5b\x9b\x39\x69\x8a\x1a\x85\x35\x15\x5d\xc4\x55\x43\x34\xad\x69\x9a\xfa\xf5\xaf\x7f\xfd\x3a\xd5\x5d\xb6\x75\x4c\x45\x51\x8a\xa8\xd8\x3a\xd6\x35\xe2\xe5\xbf\xe3\xb0\x9a\x6f\x98\xb3\x25\x87\xcc\x48\x80\xb2\x8b\x95\x80\xc0\x29\x1b\xb4\xb5\x75\xdc\x7e\x5b\x35\x3f\x8c\x80\x40\x36\xa8\xbd\xa7\xa1\xf0\x82\x28\x8a\x79\x4d\xd3\x78\x22\x91\x58\x23\xc1\x34\x28\xdb\x48\x5c\x51\x14\x5d\x96\x65\x15\xd6\x9b\x9b\x85\xd5\x28\x4b\xed\xee\xee\x36\x7f\xfa\xd3\x9f\xce\x28\xbc\x58\x2c\xc6\xbb\xba\xba\x98\xcb\xe5\x32\x65\x59\xd6\xca\x64\x52\x93\xc9\xa4\xde\xd7\xd7\x67\x3e\xf1\xc4\x13\xe6\x5c\x6d\xe9\x67\x9d\xda\x0f\x1c\x38\x20\x01\x68\xf4\x14\xc4\x0f\x7c\xe2\x78\xe3\x97\xab\x49\x7c\x00\x00\x93\x70\xf5\xf1\x3b\x46\x3f\x9c\x74\x95\x8e\x66\xb3\xd9\xdc\x6a\xef\xf8\xf5\xab\x8c\xb9\x04\x6a\x00\xc8\xa5\x1d\x46\xef\xb0\x5b\x3b\xd7\x34\x61\xaf\xaa\x20\xbd\xc0\x89\x3d\x7a\x51\xd9\xff\xec\x96\x54\xb7\xa2\x28\x6a\x5b\x5b\x9b\xb1\x56\x1e\x76\xe1\xa8\xf4\x1e\xc2\xa4\x84\x91\x64\x32\x89\xc5\x68\x9e\x39\x6b\xa5\x50\x9f\xcf\x47\x3c\x1e\x0f\x40\x20\x01\xf0\xcf\x95\xf9\x32\x19\xde\x82\x6d\x43\x5f\x7d\xf1\x85\xa2\xc4\x46\x7d\x3e\x9f\xbe\x52\x4b\xc2\x9b\x19\x7b\xf6\xec\xa1\xbb\x76\xed\x12\x3c\x1e\x8f\x2c\x19\xc4\xed\x2d\xd8\x42\x8a\x26\xfa\x4c\xca\x05\x49\x71\xf0\x70\x38\xcc\x5b\x5b\x5b\xf9\x3b\xef\xbc\xb3\xe0\xb1\x9d\x95\x00\x7d\x7d\x7d\x3c\x1a\x8d\x12\x00\xc2\x84\xdd\xe0\xb7\x8e\xd4\x3c\x68\x9b\xc3\xf3\x54\x01\x05\xb1\xb9\x34\xc1\x13\xab\x2f\xbc\x24\xcf\x10\x8a\x5c\xc3\xcc\xd8\xbb\x77\x2f\x6d\x68\x68\x90\xe4\x12\x09\xdc\x77\xc1\xf3\xc7\xbb\x7b\xbc\xff\x74\xfb\x25\xe5\x33\x91\xe1\x9a\xff\xb9\xe3\x92\xeb\x37\x7d\x05\x5b\xd3\xa8\xa2\x9f\x13\xdd\x8e\x62\x24\x12\x31\x17\x6a\x6c\xcf\x59\x2b\xb8\xad\xad\x8d\xcb\xb2\x4c\x4c\x0a\x9b\xa3\x44\xc3\xa1\x8c\x3c\x67\x1e\x7c\x05\x9e\xa2\xb8\x71\x44\xd1\x4f\x4c\x38\x8d\x7e\x9f\xcf\xa7\xad\xad\x08\xaa\xc3\x9e\x3d\x7b\x68\x43\x43\x83\xe4\xd0\x69\xcb\x47\x4e\x07\xbe\xb9\x71\xcc\xf9\xbb\x22\xa3\x5e\x02\x42\x09\x08\x15\x38\x71\xfb\xf3\xd2\xdd\x9b\x93\x8e\x07\x2e\x78\xd5\x9f\x1b\x0e\x9a\x6e\x6b\x6b\x33\x17\xa2\x65\xe7\x24\x80\x2c\xcb\x24\x14\x0a\x71\x00\x34\x6d\x37\xd8\xb6\x61\xd7\x6e\xca\xab\xeb\x12\x46\x40\x68\x63\x56\x6a\x10\x39\x0b\xf4\x00\x00\x0b\x4d\x49\x44\x41\x54\x3f\xdb\x90\xff\x29\x91\x84\x7c\x30\x18\x34\x17\xd2\xd9\xea\x57\x0d\xbb\x76\xed\x12\x00\x78\x1f\x3a\xe7\xfd\x3f\xcd\x13\xf6\x47\x66\xfa\x9e\x6c\xd2\xfa\x60\x46\xbe\xf5\x6c\x63\xfe\x19\xc9\xbe\x30\x2d\x3b\xa7\x20\x87\x87\x87\x79\x79\x1f\x1c\xd7\x6c\x5c\x70\xab\xc2\xe6\x40\x4e\x6a\xad\xf6\x06\x0e\x43\x08\x08\x9c\x18\x83\x5e\xf5\xb8\xa2\x28\xda\xda\xb2\x70\x76\xec\xdd\xbb\x97\x3a\x9d\x4e\x87\x37\x2f\x46\x3a\xfb\xea\x3e\x3f\x57\x85\xd6\x1a\x9d\xb6\x5c\x56\x4a\x27\xc7\x9d\xc6\xf9\x85\x68\xd9\xaa\xc2\xb6\xe5\x44\xc6\x02\x80\xf8\xf1\xe6\xec\x7f\xcd\xb6\xa5\x79\x3a\xec\xb8\xe4\xfa\xa3\xe6\x71\x79\x27\x00\xe7\xce\x9d\x3b\x57\x6c\xff\xc0\xcd\x80\x4a\x7d\xc6\x60\x46\xbe\xb7\x9a\x8c\x1f\x02\x82\xd6\x94\xfd\xfd\x00\x9c\x65\x57\xf7\xbc\x50\xd5\x09\x93\xd2\xae\x52\x69\x87\x71\xfa\x6c\x15\x9d\x2c\x26\x43\xe0\xc4\xfe\x60\x8f\xf7\xf3\x4e\x9d\x86\x01\x5c\xd9\x2b\xbf\x86\x19\x21\xc9\x06\xad\xaf\xfa\xcb\x26\xf1\x62\x81\xe9\x78\x55\x9f\x50\xd6\x02\x39\x10\xc4\xdf\x68\xcd\xfc\x40\x15\xd9\xb4\x85\x09\x66\x82\x5b\x13\xdb\x1e\x3a\xe7\xfb\x3b\xca\x10\x50\x14\x45\xda\xb3\x67\xcf\x1a\x09\x66\xc1\x84\xc3\xa8\x7a\xfb\x50\xb2\xa6\x14\x5f\xe8\x7d\xaa\x16\xc2\xe4\xe4\xcb\x9c\x6c\x76\x77\x35\x65\x9e\x99\xef\x44\xde\x32\x2e\x3f\xfc\xde\x3e\xcf\xa7\xc0\xe1\x09\x85\x42\xe2\x72\xe7\x0e\xde\x44\x30\x86\x6a\xb5\xb3\x45\xd1\x4c\xcf\xf5\x45\x93\x70\xa3\xd7\x5f\x7c\x1d\x58\xd8\xee\xec\x79\xb5\x8e\x95\x24\x09\x0d\x0d\x0d\x0c\x00\x4b\x28\xa5\xec\xc6\xa4\xfd\x5e\x67\x49\xa8\x3a\xb7\x8d\x80\xa0\x21\x2b\xdd\x65\x50\x9e\x1c\x76\xeb\xe7\xfc\x7e\xbf\xee\x72\xb9\xf8\xd4\x24\x85\x5f\x65\xb4\xb6\xb6\xc2\xe9\x74\x52\x53\xe0\x92\x49\xb9\xa7\x75\xdc\x7e\xdb\xcc\x09\x23\xc0\x99\x50\xfe\x85\x73\x8d\x85\x1f\x02\x88\x6b\x9a\x56\x9c\xaf\x11\x38\x2f\x02\x0c\x0d\x0d\x55\xfa\xd9\x98\x8c\x82\xa7\x9c\x86\xb9\x25\xe1\xdc\x39\x53\x46\xca\x74\x20\x20\xa4\x39\x2d\x77\x16\x24\xf3\x62\x42\x29\xf5\xfa\xfd\xfe\xd2\x1a\x09\xae\x42\x10\x84\x2b\x09\x23\x23\x8a\x9e\x16\x18\xa9\x0b\x66\xa5\x0d\x53\xc7\x98\x83\xe3\x5c\xa0\xf0\xc6\xcb\x9b\xd2\x5f\x29\xef\x3f\x48\x4d\x97\xf1\x33\xe7\xfd\xe6\xfb\x80\xa6\x69\x56\x1e\xd0\xc8\xd8\x4d\xcd\x6e\xd0\x60\x30\x2b\x57\x5d\x4f\x10\x00\x08\x88\xd0\x3a\x6e\x7f\x7f\x41\x32\x07\x12\x4a\xe9\xfc\x1a\x09\xae\x22\x91\x48\xf0\xb2\xf3\xcd\x04\x81\x76\xd1\xa3\x0d\x0e\xd6\xa9\xc3\x84\x13\x99\x72\x42\x8a\x36\x56\xb8\xe8\xd1\xfa\x5e\xdd\x30\xf1\x44\x57\x73\xf6\x3b\x8c\xe2\x0c\xac\x66\x9c\xc5\x27\x9e\x78\x62\x69\xa7\x80\xca\x03\x06\x83\x41\xae\x28\x8a\x09\x02\x33\xee\xd6\xd2\x1b\xc7\x1c\x77\x3b\x4b\x42\x55\x3b\x88\x2a\xa0\x20\x62\x38\x65\x7f\x50\x17\xd8\xe8\x88\xa2\xc7\xfc\x7e\x7f\x29\x18\x0c\xf2\x35\x47\x91\x15\x26\x8e\x44\x22\x86\x28\x8a\x2a\x08\x32\x39\xbb\x39\x74\xde\x5f\x7c\xeb\xf4\xba\xdc\xd1\xd3\xeb\x72\x3f\xeb\xad\x2f\xfe\x2c\xed\x34\x8e\xc1\xca\xf8\x19\x06\x50\x78\xf5\xd5\x57\xf9\x7c\x3b\x87\x03\x0b\x20\x00\x60\xc5\xa1\xa3\xd1\x28\x07\x50\x62\x14\xc6\xa8\x5b\xcb\x6f\x19\x75\x76\x08\x55\x7a\x08\x2b\x20\x20\x62\xcb\xb8\xfd\x41\xc9\x24\xec\x62\x9d\x76\x46\x71\x2b\xa5\xd6\xd6\x56\x76\x23\xc1\x8d\xd5\x86\xce\xce\x4e\x1a\x0e\x87\xc9\x7c\xb5\xdb\xa9\x53\xa7\x2a\x24\x28\xc2\x4a\xee\x18\x85\x95\xdb\xd7\x5f\x3e\x2e\xa1\xbc\xe5\xec\xd5\x57\x5f\xe5\x0b\x8d\x0a\x2e\x88\x00\x80\xb5\x89\xb4\xb9\xb9\xd9\x04\x50\xca\xcb\x4c\x55\x6d\x4c\x5e\x9f\xb2\x6f\xab\xb6\x64\x4a\x05\x04\x84\x06\x33\xd2\xaf\xf9\x73\xb6\xd0\x60\x9d\x76\x42\x52\x1c\xc5\x48\x24\xc2\x4d\xd3\xc4\xcd\xec\x31\xac\x44\xf2\xea\x7d\x7e\x5b\x43\x5d\xbd\xed\xf6\xbb\xa2\xdc\xe5\x72\x61\x3e\x44\x28\x1b\x74\xcc\xe7\xf3\x69\xa2\x28\x16\x60\x25\x8b\x64\xca\x7f\x8b\x3d\x3d\x3d\xe6\x13\x4f\x3c\xc1\x16\xf2\xe6\x57\x70\x43\x95\xd5\xca\xf5\xf8\x25\x00\x8d\xe0\xb8\xe3\x81\x58\xdd\x5f\x44\x46\x5c\x73\xee\x77\x9b\x09\x29\x47\xe9\xc4\xb3\x5b\x52\x9f\x1a\x75\xeb\xa7\x61\x75\xc2\x5c\x92\xd4\xec\xa5\x44\x24\x12\xa1\xd1\x68\x14\xb2\x2c\xdb\x6d\x06\xf1\x3e\x10\xf3\xfe\x29\xe5\x10\x9f\xde\x3a\xf6\x77\x20\xc8\x9d\x39\x73\xc6\x58\xce\xc6\x14\x73\x61\xc1\x1a\x00\xb0\xa6\x82\xf2\xaa\xa0\x04\x82\xd2\x60\x9d\x36\x1c\xcc\x48\xb7\xd6\xaa\xe2\x82\xf6\x86\x39\x0c\x21\x78\x4b\xa2\xe6\xc3\x8c\xf0\xec\x88\xa2\xf7\xba\xdc\x8a\x19\x89\x44\x4c\x51\x14\xc9\xcd\x10\x4a\xde\xbb\x77\x2f\x6d\x6f\x6f\x17\x45\x51\x74\x35\x66\xa4\xdb\x1f\xed\xae\x3f\xd8\x34\x61\xff\x0d\x6f\x41\xbc\x27\x2f\x99\x17\x12\x4a\xa9\xb7\xa1\xa1\x61\x55\x75\x51\xbb\x21\x02\x00\x96\x9a\x2a\xef\x25\xd4\x18\x45\x69\xc0\xab\x8e\x86\x53\x8e\xdb\x9d\x25\xa1\xaa\xba\x02\x53\x41\x39\xb1\x37\xa7\xe5\x87\xc2\xe3\xf6\x3b\x92\x35\xa5\x1e\xb5\x86\x4c\x84\x42\x21\xb3\xad\xad\x8d\xeb\xba\x4e\x6e\x44\xdd\x2d\x15\x2a\xea\xde\xe9\x74\xca\x92\x41\x02\x3b\x2f\xd4\xfe\xc9\xfd\xef\x7a\xbf\xe4\x2a\x09\x1b\x09\xac\xa5\x6f\xd3\x84\xfc\x9e\x0b\x5e\xf5\x48\x41\x62\xc9\x48\x24\x52\x5a\x2d\xa1\xf1\x1b\x26\x00\x00\x64\xb3\x59\x84\xc3\xe1\x12\x00\xad\x24\xf0\x62\xbf\xb7\x38\xba\x31\xe9\xb8\x43\x36\xa9\x63\x21\xd7\x23\x20\x70\xe9\xe2\xfa\x5b\x46\x6b\x3e\x56\x5b\x14\x3d\x97\x5d\x7a\x1f\x6a\x6c\x5a\x38\x1c\x66\x95\xfc\x84\xd5\xa0\x11\x2a\x82\x57\x14\x45\xa6\x0c\xb5\xb7\x8c\x3a\x1f\x7e\xf8\xac\xff\x2b\xe1\x71\xc7\x63\x02\x88\x3c\xf9\xbb\x02\x27\x8e\xd0\x84\xb4\xfd\x5c\x43\xe1\x59\x22\x09\x85\xd6\xd6\x56\x73\x35\x18\xbb\x8b\x42\x80\xb1\xb1\x31\xee\x72\xb9\xe0\xf7\xfb\x4b\x00\x8a\x9a\x8d\xe7\x07\xeb\xd4\xb1\x0d\x63\x8e\xdb\x64\xb3\xba\x0c\xa2\xe9\x40\x41\xa4\x40\x5e\xba\x27\x32\x52\xf3\x98\xa3\x44\x1d\xc9\x1a\x63\x90\x38\x6d\x7a\x28\x14\x62\xd1\x68\x94\xbb\x5c\xae\x79\x5b\xd7\x37\x8a\x48\x24\x42\xdf\xff\xfe\xf7\x93\x9d\x3b\x77\x0a\x8a\xa2\xc8\x84\xa3\x76\x53\xd2\xb1\xeb\x03\xe7\x7c\xff\x77\xdb\xb0\xeb\x7f\xd9\x4d\xa1\x61\x26\xc3\xca\x51\x12\x82\x2e\x5d\xa8\xe9\xf3\x15\x8f\x39\x6b\x9c\xaa\x24\x49\x7c\x25\xb6\xcf\x4d\xc6\xa2\x96\xd7\xad\xd4\xae\x81\xb5\x49\xa1\xcd\x53\x10\xdf\xfb\x68\xb7\xff\x93\x75\x45\x5b\xd5\x65\xe7\x67\x43\x89\xb2\x44\x4f\xa0\xf0\xfd\xd3\xa1\xdc\xa1\xcb\xae\xd2\x79\x6e\x55\xee\x32\x34\x4d\x33\x96\x72\x67\x4f\x34\x1a\xa5\xad\xad\xad\x95\x50\xad\x08\x40\xb2\x97\xa8\xa7\x2d\xe1\xd8\x7d\x5b\x5c\xf9\x03\x6f\x41\xbc\xbb\xda\xbd\xfe\x1c\x9c\xfd\xac\x6d\xfc\x4f\xbb\x83\xf9\xef\x02\xc8\xcc\x54\xbb\x67\xb9\xb0\xe8\xf5\x95\x2b\x9d\x3b\x00\x78\x00\x6c\x72\xa9\xc2\xce\x3d\x67\x7d\x7f\xdc\x98\x95\x5b\x16\xeb\x1e\x0c\x5c\x4f\xba\x4a\xaf\xbc\xd3\x90\xff\xc1\x05\xaf\xfa\x72\xda\x61\x24\x40\xa0\xa3\x5c\xab\x38\x9b\xcd\xb2\x6c\x36\x3b\x5b\xc3\x86\x59\xd1\xd1\xd1\x41\x7d\x3e\x1f\x26\x55\x05\x15\x01\x48\xa2\x49\x9c\xeb\x26\xe4\xad\x5b\x12\xce\x0f\xaf\x1f\x73\x7c\x48\x36\x68\xcb\x42\x06\x50\x17\x58\xea\xfb\x3b\x12\x1f\x49\xba\x4a\x27\x34\x4d\xcb\xcd\x56\xc5\x6b\xa9\xb1\x14\x05\xb6\xa7\x92\x20\x2c\x19\xe4\xce\x07\x7b\xbc\x7f\xb8\x29\xe9\xd8\x3e\x5f\x3f\xc1\x5c\x30\x09\xcf\x24\x6b\x4a\xaf\x0d\x78\xd5\x97\x2e\x7a\xd4\xa3\x09\x57\xe9\xbc\x66\xbb\x52\xb8\xba\x52\xbc\xfa\xba\x22\x8f\x93\x3e\xd3\x29\x9f\x2b\x87\x08\x0e\xc9\x53\x14\xfd\xa1\x8c\xbc\xa3\x35\x65\x7f\x5f\x73\x5a\xde\xe5\x28\xd1\x4d\xd5\xbe\xed\xb3\x21\xe9\xd4\x4f\x7c\xff\xf6\xc4\x3e\x5d\xe4\x83\xfd\xfd\xfd\xfa\x4a\xf5\x58\x5c\x12\x02\x00\x57\x72\xd9\x45\x58\x7b\xd7\x5a\x28\xc3\xf6\xbb\x07\xdd\xfb\xee\x1a\x74\x3f\x20\xf0\xa5\xa9\x2a\xca\xc1\x99\x41\x79\x72\xdc\x61\x74\x8f\xd5\x94\xce\x25\x5d\xa5\x9e\x8c\x6c\xf4\x67\x1c\x66\x5c\x15\x59\x5a\x13\x59\x41\x17\x98\xc1\x01\x06\x02\x80\x03\x02\x27\xa2\x64\x12\xd1\x5e\xa2\x6e\x47\x49\xf0\x7a\x8a\x62\xd8\x53\x14\xc3\xbe\xbc\xed\xd6\x40\x4e\xda\xea\x2c\xd1\x4d\x84\x13\xe7\x62\x0f\x14\x07\x70\xae\x21\x7f\xf0\xd9\x2d\xa9\xbf\xc2\x0a\x4e\x05\x4b\x56\xd6\xed\xb9\xe7\x9e\x63\x9d\x9d\x9d\x46\xb9\xeb\xe5\x79\x46\xa1\xbf\xd6\x9a\xc9\x8d\x2a\xfa\xe0\x03\x3d\xde\x8f\xd7\x2c\x70\x99\x38\x1b\x08\x08\xb5\x31\x12\x08\xe4\xa5\xfb\x03\x79\xe9\x7e\x24\x2a\x25\x8c\x39\xe3\x80\xce\x09\x0a\x8c\x70\x95\x13\x18\x1c\x60\x04\x10\x29\x27\x22\xe1\x70\x52\x0e\x3b\x40\xa4\x25\x7b\x23\xa6\x40\x15\xcd\xcc\x40\x9d\x7a\x01\x56\x26\xcf\x8a\x14\xd4\x00\x16\x69\x15\x30\x13\x06\x06\x06\xb8\xa6\x69\xbc\xb9\xb9\xb9\x04\xa0\x00\x82\x89\xb4\xd3\x18\x89\x05\x0a\xe7\xeb\x0a\xe2\x3a\x4f\x51\xf4\x2f\xf6\x94\x30\x15\x95\x75\x38\x01\x11\x29\x88\x43\xe0\x44\x11\x38\xa9\x15\x39\xf1\x08\x9c\xb8\x29\x27\x2e\x0a\x22\x13\x10\x61\x39\x84\xcf\xc1\x71\xd1\xa3\xf5\xfe\x38\x92\xfc\xa7\x4b\x1e\xfd\x65\x58\x3e\x7e\x6d\xa5\x9c\x43\x4b\x4a\x00\xc0\x8a\x1e\x76\x75\x75\xb1\x48\x24\x52\x12\x45\x51\x05\x90\xd1\x45\x9e\x8a\x05\x0a\xef\xe6\x25\xd3\x0c\x66\xa4\x56\x1b\xa3\xb6\xa5\x7e\x8e\xd5\x00\x4d\x60\xea\xab\x1b\x26\x7e\x72\x64\x53\xfa\xdf\x54\x89\xbf\x09\x2b\xa8\x93\x8d\xc7\xe3\xc6\x4a\x45\x41\x97\x9c\x00\x15\x9c\x3a\x75\x8a\xb7\xb6\xb6\x9a\x4e\xa7\x53\x85\x55\x58\x31\x9d\x50\x4a\x03\x3d\x81\x42\xaf\x4b\x17\xfc\x75\x05\xb1\x61\xa9\xb5\xc1\x4a\x81\x83\xa3\xcf\x5f\x3c\xfb\xd4\xad\xc9\x7f\x1d\xf0\x69\x4f\x73\x82\xd3\xb0\x2a\x94\x4c\x24\x93\xc9\xd2\x42\xe2\xf8\x8b\x85\x65\x23\x00\x00\xbc\xf3\xce\x3b\x5c\x92\x24\xde\xd0\xd0\xa0\x03\xc8\x03\x48\xeb\x22\x4f\xbe\xeb\x2f\x9e\xbb\x54\xab\x25\xbc\x05\x5b\x63\x8d\x4e\xdd\xbf\x2c\x44\xe0\xe0\xb8\xec\x2a\xc5\x9f\x6b\x1f\xff\xde\x9b\x2d\xd9\xff\xd0\x6c\xfc\x4d\x58\xa5\xe7\x46\x00\xe4\xcf\x9c\x39\x63\x3e\xff\xfc\xf3\x2b\x1a\x17\x58\xb1\x91\xde\xb7\x6f\x1f\x55\x14\x45\x84\x55\xd5\xc2\x0f\x6b\xa5\xd0\xb6\x29\xe9\xec\xbc\x7b\x50\xd9\xe5\xcb\xdb\x1a\x6f\x56\x22\x70\x70\x8c\x3b\x8d\xe4\x1b\x2d\x99\x17\x63\xf5\x85\x97\x18\x45\x2f\xac\xa2\x0f\x49\x58\x35\x87\x8d\xd5\xb2\x65\x7e\x45\x47\x38\x1a\x8d\xd2\x2b\x8d\x9f\xac\xe5\x62\x85\x08\x1b\x36\x26\x1d\xef\xb9\xfd\x92\x72\x5f\x30\x23\xb5\xdc\x2c\x44\xe0\xe0\x48\xb8\x4a\xf1\x13\x4d\xd9\x57\x7a\xeb\x0b\xbf\x30\x29\xce\xc3\x12\x7c\x02\xe5\x5e\x41\xe5\x36\x2f\xab\x42\xf8\xc0\x0a\x13\xa0\x82\xb2\xcf\x80\xc2\x6a\xa9\x52\x21\x42\x88\x70\x84\x83\x19\xe9\xb6\xc8\xb0\x6b\xe7\xc6\xa4\x63\x8b\x64\x52\xfb\xaa\x78\xe0\x29\xd0\x29\xd3\x2f\xf8\x8a\xb1\xd3\xa1\xfc\xd1\x78\xad\xd6\xc5\x09\x06\x61\x95\x6a\xa9\x08\x5e\x8d\xc7\xe3\x6c\x35\xe6\x36\xac\xaa\xf1\x2c\x27\x98\x54\x88\xe0\x82\x15\x53\x68\x04\x10\xb2\x97\x68\x78\x53\xd2\x71\xd7\xe6\xcb\xce\xed\xa1\x09\xa9\xc5\xc6\xe8\xb2\x97\xa6\x9f\x0c\x83\x72\x63\x44\xd1\x86\x7a\x02\x85\xd3\xbd\xfe\xe2\x9b\x45\x89\xf5\xc3\x4a\xd9\x1a\x81\xd5\x5e\xae\x80\x55\x2c\xf8\x0a\x56\x15\x01\x2a\x98\x44\x84\x8a\x8d\x50\xd1\x0a\x01\x00\x01\xa7\x46\x5b\x5a\xd2\xf6\x6d\x2d\xe3\xf6\xb6\xa6\xb4\xdc\xe2\xd2\x04\x0f\x5d\xe2\x9f\x52\x69\x00\x71\xa9\x56\x1f\x1c\xf0\xaa\xb1\xc1\x3a\xb5\x3b\x27\x99\x03\x20\x18\x81\xf5\xa6\xa7\x60\x15\x7b\x52\x01\xe8\xab\x5d\xf0\x15\xac\x4a\x02\x54\x50\x8e\x2e\x02\xe5\x60\x0c\xae\x92\xc1\x03\x8b\x10\x5e\xca\xe0\x77\xab\xe2\xba\xc6\xac\xb4\xa1\x21\x2b\xb5\xf8\xf2\xb6\x80\xb7\x20\x7a\x1d\x25\xc1\x45\x39\x28\xaa\xea\xcf\x7d\x15\x1c\x1c\x8c\x80\xa9\x22\x2b\xa4\x1d\x46\x3a\xe9\xd2\x47\x12\xae\xd2\xd0\xb0\x5b\x3b\x3f\xe1\x30\x2e\x9a\xf4\x4a\xf9\xb5\x54\xf9\xc8\xa1\xfc\xb6\xa3\xca\x3e\x3d\xab\x09\xab\x9a\x00\x15\x44\x22\x11\xda\xd6\xd6\x36\x39\x1c\x2b\xc2\x72\xa1\x3a\x61\x4d\x15\xee\xc9\x07\xe1\x70\xc9\x06\x75\xd7\x68\x82\xcf\xad\x09\x5e\x7b\x89\xba\xed\x06\x75\xda\x4b\xd4\x2e\x30\x22\x0a\x96\xfb\x97\x32\x0a\xc3\xa0\xdc\xd0\x44\xa6\x6a\x22\x2b\x14\x6c\x66\x26\x27\x9b\xe9\x9c\x6c\xa6\x8a\x36\x36\xce\xad\xbd\x90\x19\xe0\x9a\x63\xb2\xc0\x75\x00\x46\x32\x99\x64\xb1\x58\x0c\xd3\xf5\xe6\x5d\xed\xb8\x29\x08\x30\x19\x53\xc8\x50\x39\xa4\x49\x87\x7d\x9a\x43\xc2\x55\xe2\x54\x6c\x87\x4a\x6f\xa3\xca\x9e\x47\x7d\xd2\xa1\x4e\x73\x54\xc2\xcd\x06\xac\x22\x4d\x37\xad\xd0\x27\xe3\xa6\x23\xc0\x54\x74\x74\x74\xd0\x60\x30\x78\xa5\xe9\x35\x26\x87\x73\xa7\xff\x3c\x35\x12\xc9\xa6\x1c\xc6\x94\xbf\x0c\xb0\xda\xbe\x0f\x0f\x0f\x57\xdd\x91\xf3\x66\xc1\x4d\x4f\x80\xe9\x10\x8d\x46\xa9\xcf\xe7\x83\x24\x49\xf0\xf9\x7c\x90\x65\x19\x98\x7b\x27\x34\xd3\x34\xed\x4a\x53\xc7\x85\x26\x93\xac\x61\x0d\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\xab\x1e\xff\x1f\x26\xf5\xd6\xf1\x64\x30\x2a\xac\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x81\x22\x7c\x0b\x92\x2b\x00\x00") + +func web_uiV2AssetsMstile70x7008e1368e84f412f6ad30279d849b1df9PngBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsMstile70x7008e1368e84f412f6ad30279d849b1df9Png, + "web_ui/v2/assets/mstile-70x70-08e1368e84f412f6ad30279d849b1df9.png", + ) +} + +func web_uiV2AssetsMstile70x7008e1368e84f412f6ad30279d849b1df9Png() (*asset, error) { + bytes, err := web_uiV2AssetsMstile70x7008e1368e84f412f6ad30279d849b1df9PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/mstile-70x70-08e1368e84f412f6ad30279d849b1df9.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsSafariPinnedTabSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x56\x5d\x6f\x1c\xc9\x0d\x7c\x9f\x5f\x51\xd9\xbc\xe4\x00\xb7\xb6\x49\xf6\x67\x60\xf9\x90\xb3\x8d\x43\x80\x38\x31\x6c\xe7\x82\x7b\xdc\x48\x73\xd2\x22\xab\x0f\xec\x0e\x24\x27\xbf\x3e\x28\xf6\x48\x97\xc8\x67\x18\x9a\xd9\x9e\xee\x26\x59\x2c\x16\xf9\xfa\xfb\xaf\x37\x07\x3c\xcc\xc7\xd3\xfe\xee\xf6\x7c\x23\x67\x71\x83\xd3\xb2\xbb\xbd\xdc\x1d\xee\x6e\xe7\xf3\xcd\xed\xdd\xe6\xfb\x37\xd3\xeb\xdf\xbd\xfb\xdb\xdb\x2f\x3f\x7f\x7c\x8f\xd3\xc3\x15\x3e\xfe\xfd\x87\xbf\xfc\xf9\x2d\x36\x61\xbb\xfd\x87\xbd\xdd\x6e\xdf\x7d\x79\x87\xcf\x3f\xfd\x08\x8d\x51\x62\x8f\x69\xbb\x7d\xff\xd7\xcd\x84\xcd\xf5\xb2\xdc\xff\x71\xbb\x7d\x7c\x7c\x3c\x7b\xb4\xb3\xbb\xe3\xd5\xf6\xcb\xa7\x2d\x37\x6d\x3f\xbd\x7f\x1b\x3e\xff\xf4\x63\x78\x3e\xf1\xee\xcb\xbb\xed\xe9\xe1\x4a\xe2\xd9\xe5\x72\xb9\x79\x33\xbd\xa6\x9d\xff\xf7\xea\xeb\xcd\xe1\xf6\x74\xfe\x1b\x97\x6a\x8c\x91\x87\x37\x13\x1e\xf7\x97\xcb\xf5\xf9\x46\xca\x59\xf4\x7f\xf7\xcb\x06\xd7\xf3\xfe\xea\x7a\x79\xb1\xf8\xb0\x9f\x1f\x7f\xb8\xfb\x7a\xbe\x89\x88\x78\xfe\xf2\xeb\xdb\x66\xc2\xfd\x71\x3e\xcd\xc7\x87\xf9\x4f\xa7\xfb\xf9\x62\xf9\xb4\x5b\xf6\x77\xe7\x9b\xaf\x1f\xf6\x97\x3f\x7f\xd8\x5f\xe2\x66\x9e\x17\xfa\x79\x33\x2f\xbb\xcb\xdd\xb2\x7b\x33\xbd\x3d\xce\xbb\x65\xbe\xc4\x3f\xff\x8d\xfb\xbb\xe5\xb8\xbb\x98\x21\x67\x22\xaf\xf0\x78\xdc\x2f\xcb\x7c\xcb\x0f\x1f\xe7\x65\x3e\xe2\xf3\x7c\xd8\xdf\x5e\xcd\x47\x07\x2c\x68\x14\x9b\x5e\x6f\x7f\xbd\xe8\xf5\x15\x96\xe3\xee\xf6\xf4\xcb\xdd\xf1\xe6\x7c\xe3\xaf\x87\xdd\x32\xff\x21\xae\xbe\xbd\x7a\xf6\xf2\x3b\x9c\x2e\x76\x87\xf1\xc5\xa2\xc5\x57\xe1\xe9\xed\xbb\xcd\xf4\xcb\xfe\x70\x38\xdf\xfc\x7e\x8d\x07\xa7\xe5\x78\xf7\x2f\x4f\xe8\xed\x4c\xc7\xef\x77\xcb\x35\x2e\xcf\x37\x1f\x34\xe5\x8a\x1c\x35\xe1\x22\x08\xf8\x3f\x45\x84\x8c\xd0\x2a\x42\x43\x48\x15\xc1\x10\x7a\xf2\x5f\x12\x33\xff\x20\x88\x20\x28\x42\xd2\x29\x54\x84\x1a\xc7\xaa\x56\x84\x84\x90\x2b\x42\x47\x28\x79\xec\x6b\xbe\x55\x0b\x42\x19\xb7\x77\x84\x9c\xfd\x21\x9d\x26\x0a\x82\xa6\x38\x85\xc2\x4b\xc7\x87\xac\x08\xd2\x10\x0a\x6f\xe5\x11\x43\x50\x41\xb0\xca\x53\x5c\xcd\x92\x78\x6c\xbd\xcb\x0a\x3d\x30\x84\x52\xa6\x20\xb1\xf2\x85\xbe\x0c\x6b\x36\x1c\xa9\x1e\x1f\x77\x33\xa8\x8c\x50\x69\x81\xab\x31\x22\x34\x9a\xb2\x4e\x3b\x8a\x60\xb1\x4e\x41\x69\xd6\xc3\x5d\x03\x30\x19\xa6\x12\xd7\x33\x01\x69\x8d\xab\x09\x21\x65\x7e\xef\x8c\xbb\xa5\xb1\xb3\x29\x42\xcb\x3c\x29\x93\x23\x68\xb1\x38\x16\xdc\xdf\x11\x12\x2f\xa0\x1b\x74\xbe\x23\xf4\x3c\x82\xf6\x3b\xb9\xb3\xf4\x61\x5a\x18\x3a\xcd\x8a\x41\x64\x0a\x39\x66\x98\x5f\x43\xc0\x15\x74\xb1\x28\xfc\x5a\x03\xaf\x12\xa9\x60\x94\xf4\x8f\xa1\x27\x81\xd2\x1b\x83\xae\x9b\x98\x36\x9b\x3a\x03\xab\x11\x42\x5f\xac\x55\xa8\x32\x23\x2d\x22\xf7\x42\xef\x33\x24\xba\x1b\xb1\x0b\x9a\x0d\x73\xc4\xae\x14\x38\x02\x35\xb9\x2b\x13\x8d\x67\xe8\xe0\x07\x19\xa0\x09\x42\x9b\xa9\x42\x18\x4d\x8e\x20\xb8\xb0\xe6\xd9\x20\x3b\x34\x22\x8f\xd8\x35\xf1\x4a\x81\x49\x9f\x42\x15\xd0\x0b\x03\xef\x6f\x28\x4e\x3c\x88\xe7\xa6\x20\x91\x02\x1a\x51\x4a\x65\x68\x42\xfb\x29\xa2\x22\x77\x02\x21\x0d\x86\xec\x98\xd4\x3c\x49\x61\xdc\x05\x99\xe7\x51\x04\x92\x91\x12\x08\x8a\x42\x2b\x24\x29\x0f\x4b\x45\x23\x5e\x92\x90\x0c\x8e\x6b\x44\x4e\x90\x02\x89\x09\x56\x26\xe9\x05\xb5\xc3\x68\xb4\x1a\x72\x6a\xb0\xa8\x38\xf0\x99\x1c\xfd\x26\xb8\x08\x96\x90\x06\x38\xc4\xaa\x46\x30\xff\x09\x84\x1e\x1e\x8c\xe8\x14\x3d\x23\x0c\x47\x48\x0a\xa1\x6f\xac\x83\x4a\x20\x89\xb5\xad\x09\x74\x7e\x56\xcf\xbc\x3c\xd5\x5d\x1f\x4f\x67\xb6\xe4\x89\xdf\x74\x50\x21\xd8\x5a\x81\x46\x0e\x09\x51\xb3\x4c\x43\x55\x46\x05\x80\xde\xf9\x69\xd6\xab\x3a\xaf\xe2\xa8\x48\x8d\x79\x0a\x44\xdb\xeb\xcb\x6b\x4c\x56\x9e\x5a\x19\xa5\x9f\x5a\x81\xaf\x15\x46\x63\x1d\x23\xa5\x23\x99\x5c\xb1\x75\x45\xe2\xc4\x4d\xe6\x9b\xda\xba\xf4\xb4\x2b\x8d\x1f\x25\x3b\x01\x35\x93\xc0\x59\x98\x1b\xaa\x86\x47\xb9\x52\x3b\x21\xcb\x14\xa4\x1b\xaa\x79\xdc\xee\x9d\x6f\xe1\x25\xc5\xbd\xf3\x9d\x63\x87\x52\xc0\x23\x37\xa5\x0e\xe5\xed\x25\x66\x64\x86\x59\x9d\xe8\xc3\xba\x0b\x59\x81\x32\x2a\xc6\x98\xe8\x8e\x45\x4f\x2a\x91\x4c\x55\x79\x79\xa1\x87\x51\x91\x63\x45\x8a\x0d\x3d\x0b\x1a\x1d\x55\xb3\x49\x44\x50\x23\x8c\x84\x6b\x15\x2c\x7a\x3e\x1b\x9b\x49\x87\x41\x0d\x0d\x09\xe4\x3f\x99\xc6\x2f\x19\xc2\xc0\x95\x4b\x09\x99\xdf\x5a\x42\xaa\x93\x6a\x75\xa2\xf1\x5c\x2a\x68\x28\x4e\x0f\x0a\xad\x0a\x52\xec\xe4\x6f\xa6\x83\x5e\xde\x46\x7e\x86\x8a\x55\x5b\x8b\x0b\x89\x46\x56\xb8\x4d\xea\xd2\xdd\x5d\x00\x1a\x58\xa4\x62\xe3\x21\xa0\xed\x94\x1c\xb4\x5e\x5d\x5e\x84\xb5\x9a\x05\x4a\xa5\x14\x2d\xb0\xca\xf4\xf6\x8e\x43\x1b\x6c\x20\xf5\x59\xba\x17\x62\x0d\xd2\x28\x30\xf4\xbb\x43\x0a\x21\xee\x38\xa8\xc2\x65\xb1\xc2\x22\x2e\x58\x95\x4c\x4c\x2a\x5e\x13\x99\xd0\x4c\xee\xa6\xd3\xcd\x05\x3b\xb3\x40\x83\x61\xa0\xcd\x34\xa5\x0c\x1b\x7c\x94\x21\x2f\xbc\x31\x65\xe8\xa0\xba\x4b\xaf\x6b\x89\x4c\xc1\xb8\x90\xbb\x47\xc9\x6d\xda\xcc\xd3\xe4\x9c\xf7\xec\x0f\xfa\x24\xd7\x9a\x5c\x07\x66\x75\x14\x5c\x4b\x2e\x89\x94\x9a\x94\xa6\x20\xa9\x0c\xc2\xf5\xe2\x88\x69\x6f\xd0\x55\x48\x09\x59\x1a\x8f\x8c\xf8\x9f\xcd\xf6\x7f\x5b\x66\x4a\xb5\x30\xe9\x1d\x17\x81\x7a\xef\xf5\xe7\x24\x75\x56\xd6\x3a\x1c\x66\xa3\x11\x4a\x4c\xec\xde\xdf\xa0\xae\xe9\x56\xa6\x5e\x98\xff\xe2\x09\xd7\x58\x20\x16\x41\x54\x79\x47\x55\x98\x53\xb1\x64\x98\x7d\x63\xba\xc5\x06\xd3\x52\x09\x76\x75\x13\xde\x44\x6c\x7d\x92\x82\x5c\x2c\xa3\xbb\x8e\x36\xa3\xa3\x0d\x3a\xf1\xd9\x1c\xe9\xa4\xc9\x7a\x6a\xdd\x29\x2e\x4f\x6c\xac\x9e\x12\x01\x45\xa3\x53\x26\xcb\x68\x3f\xe4\x0e\x13\x66\xf4\x8d\xa4\x2e\x9e\x59\x49\x28\x14\x6b\x89\x30\x45\x1f\x39\x46\x8b\xac\x0f\xf1\x8a\xec\x04\x59\x1b\xd9\x9c\x1d\x60\x6f\xb6\x82\xe6\xad\xb0\xb1\x0d\xb2\x79\x88\xe7\xd4\x95\x87\x0d\xc3\xe7\x8b\x64\xe8\xf2\x12\x01\x4a\xa5\x11\x9d\x0b\x9f\x2a\x86\x24\xb2\xa7\x0f\xad\x14\xb2\x9b\x19\xd1\x9a\x9e\x3b\x28\x43\x8a\xdd\xb3\xce\x3b\xd5\x5b\x8d\xf3\x88\x4f\x21\x3e\xcc\x43\x35\xa8\x76\x67\x3a\x43\x62\xa8\xa9\x42\xc7\x2c\x62\x50\xf6\x65\x36\x1e\x37\xd6\x27\xb2\xac\xbe\x70\x4f\xd9\x9d\x4c\x72\x79\x76\xef\xa9\x75\xdb\xc8\xc5\xd0\x62\xcf\xb0\x0e\x7a\x8d\x61\x82\xac\x69\x1c\x39\x9a\xbb\xcd\x20\xaa\x97\x12\xb9\xe2\xa3\x4d\x1d\x7a\xed\x1a\xde\x9e\x68\x55\x15\xc9\xa7\x19\xea\x64\x74\xde\x30\x85\x14\xab\x49\x1b\x8b\x3b\x42\x5b\x44\x4a\x3e\xfc\x50\x2c\x83\x29\xd4\xf3\xaf\x0a\x23\x6d\x34\xc1\x7f\x8b\x82\x7c\xf6\x86\xe4\x34\xa8\xcc\x5a\xe8\x71\x1a\x3d\x3b\x0f\x16\x14\x78\xcf\x1e\x82\xc4\xea\xe9\x2f\x40\xb0\x1c\x69\xb5\x29\x67\x4a\xaa\x0c\xb3\x3b\x7a\xdd\xf0\x9e\xad\x3f\xcb\x5a\x7d\x1d\xca\x09\x8e\xb3\x56\x72\x6a\xe4\x32\x75\xe7\x07\x3f\xb1\x4d\x93\x5b\x74\xbf\xfa\xf0\x52\xdb\xaa\x7e\xd1\x75\xdf\xda\x68\x2f\x31\x0f\x7f\xd8\x53\x5e\x72\xa6\x12\x89\x54\x59\x35\xc9\xe7\x47\xee\x4b\xeb\xc0\x45\xd1\x24\xe7\x7c\xc0\x6b\x63\x82\x95\x9a\x39\x4e\xf8\x3c\x98\x98\xe9\x06\x8e\x43\x9c\x79\x28\x92\xc5\xbf\xba\xfd\xec\x25\x62\x86\xaa\x58\x71\x13\x53\x27\x95\x46\x1f\x3d\xc9\x43\x1e\x2c\xae\x39\xba\xaa\xb5\x87\xe5\x75\xa8\x6e\xaf\xa3\x7d\xc3\x74\x8b\xf4\xda\x1c\x45\x36\x6a\xc7\x8e\xac\xa1\x5e\xd2\xc5\xa0\xc9\x7b\x60\x11\x57\x43\x52\xc2\x35\x3c\x1b\x47\xaf\xc9\xcb\xda\xa7\x01\xaa\x4a\x13\x56\x1b\xcb\x90\x34\x07\xaf\xa4\x0a\x15\xc7\x83\x19\xaa\x82\xbe\xe6\xd9\x07\x4e\xeb\xab\x8f\x75\x32\x6f\xfc\xa4\xc3\x37\x5a\xc8\x3c\x56\xa5\x16\xa6\xd1\x93\x47\xbd\xb1\x0c\x57\x68\xf3\x90\x19\x9e\xa7\x77\xa6\x94\x42\x36\x81\xd8\x26\x61\x01\x52\xf2\x0d\xc2\x01\xa3\xbb\xea\x79\x99\x25\xf5\x09\xda\xa7\x7a\xfa\x23\x2c\x74\x5b\x35\xdb\x25\x88\x20\x28\xd2\x70\x69\x7b\xc5\x3f\xa7\x87\xab\x37\xd3\x7f\x03\x00\x00\xff\xff\xab\x7e\x23\x1b\xd6\x0e\x00\x00") + +func web_uiV2AssetsSafariPinnedTabSvgBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsSafariPinnedTabSvg, + "web_ui/v2/assets/safari-pinned-tab.svg", + ) +} + +func web_uiV2AssetsSafariPinnedTabSvg() (*asset, error) { + bytes, err := web_uiV2AssetsSafariPinnedTabSvgBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/safari-pinned-tab.svg", size: 3798, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsVendor314559974db7480f89eff5585c15bd34Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\xbd\xe9\x76\xe3\x46\xba\x20\xf8\x5f\x4f\x41\xa2\x6b\x50\x11\xc9\x8f\x10\xc0\x55\x84\x14\x62\xa7\xd3\xca\xaa\xbc\xe5\x5c\xae\x33\x6d\xdf\xba\x30\x4a\x05\x91\x41\x09\x4e\x10\x60\x01\x41\x2a\x65\x01\xf7\xb8\x67\xa6\x67\x3d\x67\x1e\x60\xfe\x4c\xbf\xc1\xbc\x43\xbf\x49\x7b\x5e\x64\x4e\x6c\x58\x48\x50\x99\xf6\xed\xfc\x91\x02\x81\xd8\x97\x6f\x5f\xee\xc3\x78\x99\xdc\x5b\x57\xeb\x1b\x9a\x5e\xbd\xf9\x9e\x3c\xbe\xbc\x7a\xfe\xe1\xbb\x6f\xaf\xde\xbb\x8f\xc6\x32\xeb\x87\xeb\x4d\x9a\xec\xe8\xb2\x1f\xfc\x14\x7c\x32\xdc\xae\x5d\xc0\xd5\xbf\x7c\xb8\x7a\xf3\xf5\xf5\xbb\x6f\xdf\x7e\x78\xfb\xe1\xaf\xef\x78\xc9\xaf\x03\x46\xdd\xae\x53\x14\x27\xbb\x20\xed\x44\x49\xb0\xa4\x29\x2c\xe9\x2a\x8c\x29\xa4\xf4\x1f\xdb\x30\xa5\xaf\x93\xe5\x36\x2a\x7f\xe9\xbf\x3f\x65\x90\x6e\xe3\x38\x8c\x6f\x3f\xd0\x8c\x65\xa4\xeb\x9c\xac\xb6\xf1\x82\x85\x49\xdc\x59\xa4\x34\x60\xf4\x6b\xba\x49\xe9\x22\x60\x74\x29\x5b\x40\x14\x3f\xca\x96\x11\x05\xcf\xa0\x9f\x36\x49\xca\x32\x03\x0c\xca\x67\xd0\x4f\x69\x96\x44\x3b\x9a\x9e\xea\x07\xfd\xc5\xf0\x41\xb7\x8c\x18\xa4\x10\xe3\xc7\xd8\x5a\xd2\x55\xb0\x8d\x98\xb5\xd4\x9d\x20\xe3\xbb\x2c\xb8\xa5\x9d\x64\xd5\xf9\xbb\xd1\xa3\x3d\xe3\xef\x9d\xb5\xe8\xb6\x13\x66\x9d\xb2\xd4\x12\x3a\x9b\x88\x06\x19\xed\x6c\x37\xcb\x80\xd1\x0e\x4b\x3a\x7f\x6f\xf6\xff\x77\xcb\x80\xae\x03\x8f\xe1\xd2\xdd\x1b\x99\x15\xd1\xdb\x60\xf1\xd0\xcf\xee\xc2\x75\x66\xc0\x36\x66\x61\xe4\x1a\x43\xcb\xb6\x6c\xa3\xc0\xc0\xf4\xa0\x48\xaa\x9f\x0a\x5c\xa0\x72\xec\x14\x3f\x1a\xdb\x8c\x76\x32\x96\x86\x0b\x66\x54\xcb\xc5\x10\x7e\xe4\xab\x4f\xc9\xdb\x9b\x9f\xe8\x82\x59\x72\xfd\x50\xbc\x8d\x22\x7c\x92\x52\xb6\x4d\xe3\x0e\xb5\xae\xaf\xc9\x2e\x09\x97\x1d\x1b\x96\x34\xa2\x8c\x8a\x57\x40\x0b\x5e\x35\x25\x8f\x72\xef\xdc\xc6\x16\xba\x6d\x3b\xe9\xb6\xee\xab\x7b\xb0\xbf\x6e\xf9\x54\x9c\x94\x8f\x44\x3d\x91\x46\x23\xa4\x3e\xc9\x55\x92\x22\x3e\x26\x46\x3c\x1f\x52\x12\x21\x0a\x06\x52\xc5\xb1\x01\x0c\x43\x4c\x98\x15\xd1\xf8\x96\xdd\xf5\x9d\xf3\xf8\x92\xd8\xe7\x71\xbf\x8f\x99\x17\xfb\x96\x3a\x15\xa8\x9c\x77\x6a\xc9\x6d\xd4\x5f\x0a\x90\x33\x24\x8f\x71\xf2\x22\x89\x57\x51\xb8\x60\x6e\x75\x3e\xe4\x4a\xc6\x10\x9e\xf0\x61\xc4\x9d\x30\xee\x30\xcc\xac\xbb\x20\x7b\x7b\x1f\xbf\x4b\x93\x0d\x4d\xd9\x03\x8a\xb1\x69\xa6\x6d\x2f\x51\x48\xf8\x30\x80\x7a\xa1\x4f\xa8\x7c\x8a\x7d\x92\x7a\xb1\x8f\x0b\x58\x07\x1f\xe9\xd7\x72\x67\xaf\xc4\x68\xf8\xad\x12\x17\x27\x26\x0c\x61\x08\x09\xe2\x7f\x6c\x2c\xde\x25\xc4\x33\xd4\xb4\xf9\x51\x2e\x8f\xbb\x9c\x8f\xe1\x57\x07\x20\x40\x14\xd4\xc9\x66\x77\x61\x66\x6d\xb7\xe1\x92\x84\xbd\x1e\x88\x5f\xe1\x92\x50\xf9\xb4\xa4\x9b\x8c\x74\xf5\xda\xf1\x29\xc8\xa7\x79\xe2\x32\x59\x42\xb6\x4d\x1e\x55\x6f\xee\x63\x51\xc8\x0f\x8b\x20\x8a\x6e\x82\xc5\x47\x92\xca\xdf\x77\x41\x26\xa7\x90\x3d\xcf\xbe\xa6\x1b\xd2\x75\x54\x67\xd9\xf3\x28\x0c\x32\x12\xcb\x9f\x29\x0d\x57\x21\x5d\x92\x98\xde\x77\x9e\xa7\x69\xf0\x80\x74\xef\x58\x16\xc8\x58\xc0\x28\x31\x62\x7a\x6f\x14\xe5\x7c\x32\x84\x1f\xab\x5f\x5b\x7e\x28\xca\x99\x54\xef\x23\x39\xeb\xea\xc0\x84\x24\xf6\xa8\x9f\xe7\xb1\x47\x7b\xc6\x69\x18\x2f\xe9\x27\xc3\x3f\x0f\x4d\x33\xd4\xc3\x3a\xc7\xbc\x4c\x68\x85\x4b\x51\x8c\x3f\x54\x25\xf5\x89\x09\xf3\xbc\x3a\x8e\xc0\x78\xdf\x69\x72\xdf\xe1\x53\xb8\x4a\xd3\x24\x45\xc6\x8b\x64\x1b\x2d\x3b\x71\xc2\x3a\xab\x30\x5e\x6a\x38\xa1\xc1\x46\xb8\xe6\xeb\x42\x97\x9d\x55\x9a\xac\xf9\x5b\xd6\x33\xfe\x6e\xe0\x42\x34\x06\xa9\x69\x1a\x1b\x1a\x2f\xc3\xf8\xd6\xe8\x12\x12\xca\x15\x30\x4d\x63\x15\xc6\x41\x14\xfe\x4c\x97\x8d\xd7\x28\xb4\x78\x1f\x5f\xd3\x4d\x86\x52\x0c\xa9\xb5\xd9\x66\x77\x28\xc4\x18\xc2\x6a\x25\x16\x72\x9c\xe1\x0a\x19\x16\xaf\x4d\xad\xc5\x5d\x90\x3e\x67\xc8\xc6\x58\x5f\xff\x13\xbd\x4a\x29\xa1\x56\xb6\x89\x42\x86\x8c\x53\x43\xde\xa5\xea\xa7\x95\x45\xe1\x82\x22\x1b\xfa\x0e\x3f\x8e\x36\x24\x44\x1f\x92\xf3\xf0\x22\x39\x0f\x7b\x3d\x79\x43\x02\x92\x7a\xa1\x7f\x22\xba\xb4\x0c\x42\x48\x20\xfa\xb7\x09\x21\xb1\xde\xe1\xc3\x75\x0b\x62\xbe\x68\xc1\x62\x41\xb3\xac\xb3\x09\x52\x1a\x33\xbd\x7a\xc9\xaa\x93\x26\x09\x33\xf0\x49\x6c\x6d\x92\x0d\xc2\x05\x8d\x32\xaa\xe6\x24\xda\x5f\x24\x31\x0b\xe3\x2d\xe5\x05\xf8\x22\x04\xb8\x28\xd4\xec\x62\xeb\xa7\x24\x8c\xc5\x0c\xaa\x55\x59\xf1\x73\x23\x0b\x74\x51\x97\x1f\x0d\xd3\xec\x36\xce\x06\x2e\x02\x6b\x93\x26\x2c\x61\x0f\x1b\x6a\x1d\xdc\xce\x0a\x2a\x69\xf8\x5a\xbb\x23\x1a\x9e\x9c\x70\x28\x4b\x08\xa1\x79\x6e\x24\x02\xfc\x1a\x5d\xc2\xdb\x4b\x56\x1d\xb1\xad\xaa\x8d\xda\xdb\x3c\x97\x70\x58\xec\x94\x82\xf4\x79\xde\x55\xc0\x3b\xcc\xae\x3e\x31\x1a\x67\xe1\x8d\x40\x79\x79\x8e\xca\x42\x84\xe2\x02\xea\x43\x56\x63\xa8\x0f\x94\x2f\x58\x75\x94\x08\x21\xd5\x35\xcb\x73\x83\xdf\xc7\x07\x7e\xf4\x1a\x1f\xf4\x21\x69\x9b\x9e\x84\x96\xd6\x7d\x1a\x6c\x24\xac\xce\x4c\x13\x35\x41\xc2\x61\x11\xa4\xae\x6b\x13\x76\x60\x5c\x01\x85\x07\x24\x81\x9c\x5a\x53\x5d\xc4\x0a\x36\x9b\xe8\x41\x54\x6f\x00\x90\x12\x9c\xd7\x5f\xaa\x73\x46\xec\x06\x28\xa9\x26\xdf\x0a\xa9\x4c\x53\x2e\xbe\xdc\x32\xd4\x32\x65\x42\xb1\xc2\x11\x87\x47\xc2\x34\x65\x85\xfd\xf7\x08\x43\x4b\x4b\xcd\xcd\xda\xc6\x19\xa5\xf5\xad\xda\x07\x80\x47\x41\x70\xb3\x1d\xb1\x7c\xfb\x5b\xae\x96\x84\xdf\xfe\xda\xbe\x36\xba\x28\xf7\xfe\x84\xa5\x0f\x8f\x0d\xf0\x2c\x7e\x5c\xab\x7d\x81\xfd\x4a\xbc\xdd\x42\x2c\x6b\xf4\xf0\x78\xe4\x08\xe9\x43\xa1\xaa\x51\x7e\xe1\xe9\xd2\xc0\xfb\x83\xbf\x3e\x18\xbd\x86\x4b\xea\x24\xe8\xbd\x95\x80\x08\x03\x23\xf6\x39\xbb\xa0\x1a\x08\x31\x0d\x80\x52\x42\x3d\xe6\x9f\xf0\xff\x48\xaa\x17\x7c\x5e\x3e\xb9\xfb\x78\x1f\x61\x0d\x2c\x68\x73\x44\x1a\xbc\x36\x68\x10\xbe\xa4\x7c\x4b\xc8\xf1\xe5\xd4\x40\xfc\xa4\xa2\x57\x4a\x24\x0b\x29\xb1\xcf\xd3\x0b\x8d\xeb\xce\x53\x3d\xea\x98\x30\x2f\xf5\x21\x6c\xcc\xd5\x4b\xfd\x6a\xbb\x15\x89\x26\x07\xaf\x7e\x15\x27\x25\xfa\xe7\xf0\x75\x8e\xda\x51\xb0\x0d\x61\x79\x86\x5b\x4e\x23\x76\x4b\x72\x42\xb4\xb2\x5f\x38\xf8\x48\xbf\x95\xdf\x11\x76\x35\x95\xd1\x5a\x52\x8e\x2d\xd4\x47\x35\x42\x0b\x14\x6b\x5a\x03\xeb\x07\xa0\x07\x9b\x5f\xeb\xe2\x08\x6c\xe5\x20\x83\xd4\xa9\x31\x4d\xc5\xa9\x81\x2d\x10\x03\x8a\x71\x51\x82\x83\x12\x34\x32\x60\x6a\x3c\xaf\x04\xbd\xc3\x97\xa7\xad\xa5\x55\xd9\x06\xb0\x02\x90\x24\x70\x49\x1d\xe1\x73\x92\xa2\x22\x27\x4e\x42\xd3\x14\x47\xa1\xc2\xca\x79\x8e\x82\xf4\x76\xbb\xa6\x31\xcb\xd4\x0e\x5f\x0c\x4c\xb3\x7e\x7e\x0e\x50\x5f\x10\x77\xb6\x71\xb6\xdd\x28\xd2\x40\x21\xbd\xfb\x80\xf3\x16\x7c\x04\x4b\xe8\xd0\x4f\x1b\xba\xe0\x1f\xff\xae\xb8\x9c\x70\x09\x1d\x71\x9a\x54\x71\xfc\xf7\x4e\x18\x67\x8c\x06\xcb\xce\x6d\xc2\xdc\x92\xe0\x28\x07\xc3\xb9\x11\x59\x57\xd0\x1b\xfb\x83\xc4\x20\x48\x30\x4e\x0c\x49\x52\x8c\x23\x97\x94\xaf\x1c\xf1\x7c\x0c\x7c\xb6\x24\x15\x5d\x04\xf1\x82\x63\xaa\xed\x9c\xcf\x20\x40\xa9\xd8\x17\x48\xa1\x6b\x63\x57\xbe\x92\x04\x67\xd7\xc1\xb8\xc0\x87\x68\x48\x90\x23\xf2\x96\xca\x35\x5c\xa1\x6e\x9a\xe7\xfa\x4a\xa5\x0d\xb4\x83\x52\xa2\xdb\xf4\x7c\xc8\x40\xb0\x2d\x78\x1f\x28\x33\x48\x5b\x20\xbc\x1c\x33\xa4\x85\x62\x58\xac\x40\x50\x9f\xcd\x81\xa8\x9d\x1f\x70\x2a\x62\x6f\x49\xe6\x6a\xa9\x19\xf0\x21\x70\x4a\x53\x4e\x90\x3f\x15\x15\x2b\x63\xd1\x98\xa5\x21\x2d\xb9\x97\x9f\x32\xeb\x9a\x06\x1f\xaf\x33\x4a\x63\x12\xd7\xca\x89\x43\x57\xfb\xbd\x07\xf3\x29\x7e\x94\xec\x8c\x78\x8f\x39\xa3\x88\x65\x19\xd4\xe8\x6e\x11\xd1\x20\xad\x5f\x91\x2f\x1c\x89\xe0\x22\x18\x6f\x4b\xcd\xcb\x58\x25\x89\x01\xb5\x86\x0a\x5c\xff\x74\x7a\x13\xa4\x06\x5f\xf5\xe3\x25\x82\x6c\xb9\x32\xc0\xd3\xf0\xa0\xce\x88\x68\x68\x52\xab\xae\xae\x8f\xe0\x8d\xaa\x1e\x38\xb7\x54\xfb\x75\x30\x86\x9f\xc5\x18\xea\x3b\x28\x07\x8e\x9b\x05\xff\xb1\xfd\xd9\x78\xaa\x54\xfd\x25\xa8\x1a\x9f\x8c\xb6\x09\xab\x22\x96\x6c\xd2\xb0\xe4\x18\x0c\x4b\xcd\x56\xbc\x48\xf9\x5f\xeb\x94\x97\x7c\x6a\x7d\xd6\x41\x18\xab\x16\x45\xa5\xf6\xb2\x25\x16\x12\xe5\xca\x25\xe4\x05\x34\x68\x6b\x7c\xd9\x7b\x2d\x3a\x29\xdf\xa9\x13\x53\x2d\xe8\xfe\xc9\x41\x18\x34\x2d\x4a\x4a\xaa\x53\xb6\x6c\x9a\x07\x5f\xe4\xce\x9a\x66\xf3\xc2\x99\x26\xda\xbb\x81\x8f\xfb\x9c\x7e\x43\x46\x50\xe0\x02\x0b\xbc\x84\xcb\x05\xe8\x50\x2d\x6f\x29\xdf\x84\x28\x80\x4c\xa0\xd7\x6e\xea\x05\xbe\x7c\x62\xe2\x89\x83\x8b\x2d\xa9\xe8\xe5\x72\x7c\xaa\x3b\xd3\x54\x0f\x02\x9a\x64\xa6\xb9\xd5\x64\xeb\x16\x05\x1c\x32\xf1\xf7\x89\x7e\x97\xa8\x77\x42\x2a\x45\x0e\x79\x90\x3a\xe3\xf6\x47\xa3\x17\xf4\x8c\x3f\x1a\xf8\x44\x82\xed\xc8\x5a\x24\x4b\x4a\x8c\xd7\x6f\xbf\xfe\xee\x9b\xab\xeb\x37\x6f\x3f\x5c\xbf\x7c\xfb\xdd\x9b\xaf\x0d\x88\x84\xb0\x64\x41\xf8\xd8\x1b\x14\xda\x09\x9f\x83\x67\xfb\x82\x90\x45\x0b\xbd\x66\x50\xbf\xf9\x12\x1e\x8a\x82\x8e\xcf\xa1\xa2\xe6\x37\x51\x9a\xe7\x1c\xdc\x2c\xa0\xaa\xa8\x19\x7a\x4d\xb4\xf0\x1e\x4b\xb2\x52\x53\x1c\xc9\x97\x2c\x17\x04\xc4\x3e\x0f\x2e\x34\x57\x76\x1e\xf4\x7a\x38\x44\x31\x5f\xf3\x72\x04\x05\x7a\x74\x5c\xaf\x3e\x58\x54\x47\x9d\x0d\xb1\x53\xb8\x42\x14\x0d\x07\x53\x0c\xfc\xcf\x19\xff\x33\xc0\xc0\xac\xeb\x9b\xe0\x86\x46\xef\x92\xe8\x61\x15\x46\xd1\x21\xf3\x97\xc4\xd1\x43\x27\x89\x69\x89\x60\x38\xcb\x27\xea\xf4\x37\xaa\x52\x27\xcc\x3a\x41\x14\x25\xf7\x9c\x72\x3c\xd9\x6f\x92\x74\xed\x13\xb9\x86\x86\x3c\x72\x5a\xf2\x52\x13\x85\x49\x08\x14\xe3\x47\x4e\x17\xe6\xb9\x64\xa9\xbc\xd4\x17\xaf\x1f\xef\xd3\x90\x05\x37\x11\x75\xbb\x36\x2c\x92\x78\x15\xde\x6e\x53\xfd\x7b\x17\x44\x5b\xea\xc6\x05\x2e\x62\xf4\x9e\xa5\x61\x7c\x5b\x11\x2e\x60\x6c\x82\xe5\x37\x74\xc5\x0c\x30\x0c\x6b\x13\x2c\xdf\xb3\x20\x65\x18\x8e\x94\xfc\x36\xbc\xbd\x2b\x8b\x5e\xc5\x4b\x0c\xc6\x26\xd9\x40\x4a\x77\x34\xcd\x28\x64\x77\xe1\x8a\xc1\x47\xfa\x90\xc9\x4e\x33\x50\x30\x1d\x04\x5b\xfa\x76\x05\xbc\xe0\x03\x64\xc9\x9a\xc2\x2a\x49\xaf\x82\xc5\x1d\xac\x83\x0d\xac\xc2\x88\xd1\x14\xf8\xd1\x15\xff\xbd\xe2\xc5\x21\x8c\x17\xd1\x76\x49\x33\xe0\x2c\x30\x08\xb2\x99\x4f\x6e\x11\x30\xe0\x6c\x32\x70\xe6\x7e\x41\x61\x1b\xcb\x7e\xb3\x24\x65\x10\x05\x19\x7b\xa5\x3a\x4b\xe9\x72\xbb\xa0\xea\x8f\x18\x3a\x2c\x92\xcd\xc3\x0f\x21\xbb\x0b\x63\xde\x67\x64\x68\x01\x01\x18\xd8\x52\x03\x6a\x88\x25\x3d\x5f\x30\xd7\x31\x12\x74\x05\x50\x78\xa9\x3e\x8a\xeb\x60\xdd\x84\xf1\x12\x89\x32\x9c\x5a\x28\xb0\xbc\x24\x82\xc7\x33\xb6\xb1\xa2\x7f\x2a\xfe\xf8\x36\x4a\x6e\x82\x68\x2e\xff\xb8\x6d\x25\x32\x1a\xad\xe6\xfc\xbf\xd6\xaf\x52\xae\x3d\x97\x7f\xdc\xc7\x02\x17\xf0\x38\x70\x07\x30\x1c\x4c\xdd\xe1\x60\x0a\xc3\xc1\x99\x3b\x1c\x9c\x15\x3e\x0c\xea\x67\x9e\x53\x0a\x14\x39\x43\x9b\x1f\xe6\x92\x15\x44\x83\x21\xb6\xbe\xa5\xb7\x57\x9f\x36\x16\xcd\x16\xc1\x86\x16\xf0\xe8\x0c\x6d\xd7\x19\xda\x30\x18\xba\x83\x61\xe1\xc3\x70\xbf\x1d\xd6\x42\x12\x29\xd6\xfc\x50\x1c\xa0\xae\xca\x87\x87\x0d\x95\x57\x85\xf6\x0c\x7e\x13\x84\xa8\xa4\xa3\x2b\x74\x8d\x4a\x94\x5b\x14\xf0\x58\xf8\x30\xda\xef\x56\xf1\x45\xc8\x39\xe3\xb7\xa7\x9d\x2a\x13\x9c\xcd\x56\xc8\xc5\x1b\x72\x8a\x37\xfa\x5d\xca\x89\xa0\xfd\x21\x31\xdd\x79\x4f\x74\xee\x9c\xb9\x0e\x5f\xc0\xf1\xd1\x11\x0c\xce\x30\x32\xb6\x71\xb6\x48\x36\xfc\x86\x65\x42\xd2\x24\xc9\xcf\xf2\xb2\x9c\x68\x4e\x3c\xf6\x52\xdf\x34\x29\x1a\x0d\x30\x8a\x21\x15\x68\xb1\x7d\x09\x79\x49\x4e\xf2\x75\x6d\x31\x8c\xc1\x99\xeb\x0c\xce\x60\x34\x70\x47\x83\xc2\x87\xc9\x97\xec\x83\x96\x94\x72\x2c\x82\x68\x9d\xdc\xe5\xf4\x70\x29\x99\x89\x4d\x53\x48\x7f\x0f\xb7\x27\xed\x19\x6e\x27\x8c\x17\x49\x9a\xd2\x05\xeb\x84\xf1\x2e\x59\x04\x47\xb6\x68\x7a\x6c\x81\xc6\x4e\xfb\x16\x29\xdc\xd8\xb6\x07\xf5\x63\x11\x77\x24\x16\xdf\xef\x72\xec\xb8\x63\xa7\xf0\xe1\x6c\xbf\xdf\x06\x08\x2f\x77\xc9\x99\xf1\x6d\xe1\x0f\x23\x0c\xa1\x78\x68\x1c\x1d\xcf\xb7\x2a\x58\xb0\x2f\x16\x95\x18\x28\x55\x48\x3f\x20\x21\x4a\x4a\x46\x23\x23\xbc\x50\x80\x61\x4b\x62\xc4\xf8\x43\x74\x40\x7b\x5f\x0e\xe6\xe5\x2b\x6f\xe0\x6b\xce\x77\x41\x5e\x07\xec\xce\x5a\x87\x31\x42\xa5\xa8\x26\x9a\x07\x6e\x8c\x22\x08\x30\xee\x6f\x21\xe8\x73\x2a\x83\x38\x82\xf5\xde\x5e\x64\xa6\x99\x5d\x6c\x7b\x0b\xd3\x44\x2b\xd2\x77\x60\xdb\x23\x8b\xbe\x03\x99\xf8\x83\xcf\x17\xfd\x7e\xe7\xd2\x3e\xc7\x5b\xbe\x9d\xc9\x3c\xf1\x32\x9f\x24\xde\xd6\x77\x95\x1a\x84\xbf\xe0\x85\x57\xbc\xe2\x4a\x2f\x67\x22\x0e\x98\x33\x72\x1d\x67\x04\x0e\x3f\xf0\xce\x19\x38\xce\xcc\x75\x9c\x59\xe1\xc3\xec\xbf\xcf\x02\xb7\xeb\x3d\xf4\x9a\x26\x24\xac\xc9\xcb\x83\x83\x15\x14\xcb\x1c\x5c\x3a\xb5\x75\x74\xca\x75\x4c\xf8\xe2\x07\x47\x16\x39\x22\xe5\xd2\x6e\xe7\x89\x1b\xa3\x2d\x24\xf8\x3c\xba\xcc\xce\x31\xf3\xb2\x5e\xcf\x27\xb4\x64\xb1\x9f\x5e\x08\xc7\x3e\x76\xc4\x87\xb3\xe3\x50\x48\xca\x42\xbc\x92\x06\x4a\x11\x85\xae\x03\x52\xb2\x0b\xb1\x50\xf2\xf0\x7e\x87\x33\x77\x28\x7a\x71\x8e\x42\x1a\x67\xaa\x97\xf8\x4c\x2f\xf1\xe8\xd8\x12\x6b\x19\x40\xa5\x0e\x4c\x20\x90\x6d\x65\xb0\xe5\xeb\xce\x0f\x6a\x8c\xb6\xe5\xa2\x2f\x08\x27\x59\x23\x41\x5c\x52\xd3\x4c\xba\x24\x91\x3b\x75\x1e\x5d\x2e\xce\x71\xb8\x42\x28\x23\x5b\x6f\xd1\xeb\xf9\xb8\x4b\x32\x45\x7e\x76\x6d\x21\xbd\xee\x94\x05\x17\x9c\xe8\x5a\x21\x44\xf3\x7c\xc1\x8f\xe1\x16\x9b\xe6\xd6\x5b\xf8\x84\x90\x92\x64\xe5\xdf\xf2\xdc\x56\x4b\xd2\xa5\xa6\xd9\x77\x8a\xe6\xe2\x4f\x5d\xc7\x99\xea\x4d\xe0\xcb\x72\x80\xc1\xf4\xb2\x0c\xc6\x72\x55\x46\x53\xbd\x28\x33\x7e\x9e\xd4\x32\x05\xfc\x61\xfc\xf4\xf6\x64\xc4\x21\x84\xc2\x96\x0c\xf8\x9f\x88\x0c\xf9\x9f\x05\x19\xf1\x3f\x2b\x32\xe1\x7f\x36\x64\x2c\xa4\xa8\x2b\xb8\x23\x2c\xcf\x83\x93\xc3\xf5\x0d\x60\x59\x9d\xec\x35\xec\xe0\x81\x9f\x69\x0c\xb7\x24\x46\x0f\x18\x6e\x48\x8a\x02\x58\xc2\x10\xc3\x35\x49\xd0\x6d\xb9\xee\xf7\xc4\x86\x4f\x24\x9b\xdf\x21\x06\xd7\xd8\xdd\x8a\x07\x1b\xab\xf3\x7b\x7e\x7d\x79\x7f\x7e\xaf\xd6\x74\x93\xe7\xf7\x7c\x4d\x6f\xb1\x69\xa2\x1d\xb9\x41\x6b\x72\xeb\xdd\xfb\x70\x0f\x0f\x18\x28\xe6\x65\x32\xfc\xc9\xbb\xf7\xc9\xee\x44\xec\x4a\xb8\x42\x3b\x9c\xdd\x87\x6c\x71\xc7\x0f\xc5\x22\xc8\x68\x67\xe8\xea\x9d\x3b\x11\xbf\xc7\xea\x77\x67\x2d\x7f\x4f\xf4\xef\x7b\xf9\x7b\xe0\x7e\x92\x5a\x88\xb5\x54\x54\xf0\x46\x17\x7a\xf7\x9d\x72\x21\xe6\x7d\xc7\x8d\xf2\x7c\x31\x5f\xb8\x9f\xd4\x5e\x36\x2e\x10\x38\x63\xd7\x19\xc3\x60\xec\x0e\xc6\x30\x9a\xba\xa3\x29\xdf\xd5\x03\x7a\xa2\xbc\x52\xfa\xa8\xcf\xe4\xae\xf2\xdd\x4d\x9e\x82\x2a\xc0\x77\x20\x83\x2d\x7e\x14\x38\x5c\x71\x43\x88\xca\x83\x1d\x71\x28\x9a\xa0\xa8\x5c\xf5\x0d\xd9\xce\x57\x7d\xc7\xb5\xe1\x8e\x6c\xf9\xd8\x1d\x7e\xee\x83\x8b\x01\x16\x27\xf9\x5c\x60\xa7\x0d\x5f\xec\x05\x7e\xcc\xc8\xc2\xdb\xf8\xb0\xe9\x91\xbb\x93\x9b\x94\x06\x1f\x0b\xfe\xb1\x47\xee\x60\x3b\xdf\x5c\xd8\xee\xea\x82\x6c\x0e\x90\x98\xf1\xad\xa0\x33\x39\xed\x4f\xd7\x1b\xf6\xd0\x09\x38\x4d\xd0\xb9\x0f\xd9\x5d\x27\x4e\x3a\x61\x1c\xb2\x30\x88\x3a\x82\x30\x36\xb0\xe0\x74\xce\xb7\xf3\xcd\x25\xb1\xdd\xd5\xe5\xe6\x9c\x37\x8f\xe5\x00\x4c\x13\x65\x84\xa1\x0c\xe4\x28\x20\xc2\x25\x2a\xcc\xda\x56\x7a\xe8\x0e\xab\x15\x3e\x4a\x3a\x8d\x1d\x75\x6f\xd4\x0a\x4b\x42\x26\xdb\xd0\x45\xc8\x89\x98\x23\x70\x45\x80\x6d\xdd\x3b\x7f\x63\x9a\x2d\xa4\x1e\x62\x84\x5a\x8b\x24\xce\x58\xba\x5d\xb0\x24\xc5\x79\xce\xba\x44\x52\x45\xa6\xd9\x8d\x11\xab\x68\x23\x9c\xe7\x88\x29\x20\x8d\x81\x6f\x9e\x69\x2a\x4d\x13\x62\x84\x79\xa1\xcf\xfb\x28\x4b\x60\x28\xe1\x39\x9b\x8b\x06\x5d\xd6\xa0\x90\x66\xee\x68\x06\x9a\x3a\x70\x8e\xd3\x6d\x47\x40\x67\x4d\x8c\x16\xd3\x7b\x24\xe8\x13\xc4\xb0\xe8\x62\xe4\x3a\x23\xde\xe8\x01\xf5\xd5\x8a\x12\xd5\x11\x1e\x3b\xea\x04\x4f\xf8\x09\xf6\x7c\x29\xef\x87\x80\x3c\x16\xb5\x01\x94\x7c\x04\x67\x21\xea\xf4\x87\x5a\xf2\x12\x53\x66\x24\x91\x5c\x45\x89\xec\xc0\xe1\xf8\x6f\x4f\xca\x9c\x92\xcc\x92\xbc\x11\xda\x2f\x8f\x1b\x2a\xa6\xa6\x14\x74\x5f\xbc\x25\x48\x47\x4e\xf9\x75\x02\x5c\x41\x37\x8e\xcf\x20\x24\xf6\x79\x78\xc1\x84\xa2\x34\xf6\x42\x9f\x18\x81\x67\xf4\xc2\x9e\xe1\x1b\x27\x81\xc7\xfc\x72\x4a\xc8\x78\x09\x81\x10\xa2\xe9\x55\xed\xbc\x44\x46\x4f\x6b\x32\xc1\xc0\x3d\x03\x1b\x25\xff\xcf\xeb\x22\x0a\x29\x2e\x10\x03\xad\x92\x85\x14\xbb\xa1\x90\xb1\xd0\x4a\x24\xde\x3c\x46\xa6\x89\xb6\xd5\x4f\x52\xff\x04\x5b\x81\x61\xf9\xb5\x98\xb8\xa3\x49\x75\x3a\x8e\x12\xad\x1c\x75\xc4\xe5\xa5\x60\x89\xe4\x7e\x3f\x04\xb7\x06\xdf\x4c\xe3\xb9\x5e\x4b\x83\x90\x14\x35\xa4\x97\x72\x0e\xfa\x7b\x81\xf0\x93\x37\x89\x63\x65\x3d\x9d\x4a\x5b\x37\x37\xbe\x2b\x99\x3d\x57\x6b\x5d\xe7\xc6\x9b\x6d\x14\x19\xae\x91\x89\xb1\x94\x62\x10\x94\xec\x9d\x5e\x96\x3e\xe8\x71\x50\x8f\xf9\xc5\x22\x50\xe0\xbf\x28\x10\x53\x86\x33\x1c\x2e\xc6\x18\xcf\x13\x37\x9c\xf3\x2b\xe7\x1a\x6f\xb5\xac\x0c\x05\x82\x3a\xc0\x75\x8d\x6e\x29\x72\x61\xe2\x2c\x51\x3a\xaf\x2d\x81\x1b\xd4\xef\x9f\x66\x98\x9c\x03\xc2\x5c\x59\xdf\x14\x96\x5e\xce\xa7\x49\x97\x54\x1e\x5b\xaa\x35\xf5\x67\xd0\x77\xb0\x62\x36\x9c\x2f\x23\x4a\xa7\x03\x6c\xad\xc4\x3e\x4e\xd5\x25\x9c\x0d\x25\x1a\xe1\x44\x03\x27\x0d\x26\xfc\x42\x09\x02\x0e\xb6\xfc\xae\x8e\x39\x55\x44\xd1\x78\xca\xd1\x06\x45\x8e\x6d\x73\xc4\x41\xd1\x60\xc6\x51\x06\x45\x93\x09\xb6\x56\x41\xc6\xfe\x42\x1f\xe0\x4e\x9c\x8f\x31\x86\x25\x59\xcd\x8d\xeb\x8c\x6f\x4d\xf8\x33\x35\x60\xdd\xa6\x1e\x80\x98\x6c\x38\x62\xe2\x5c\xe9\x4b\x83\xb3\x5d\xb8\xb2\x57\x0a\xbd\xd8\x17\x24\x7e\x4a\xa8\x75\xbd\x3a\x4f\xcf\x53\x92\x5a\x31\x47\xe8\xa9\xf5\x91\x10\xa6\xcb\xa6\x75\x98\xf1\x78\x4b\xd9\x8b\x0a\xc8\xba\x8d\xcb\xbb\x85\x48\xf6\xcc\xe7\x51\xfb\x92\xe2\xc7\x00\x51\x58\x00\x03\xe3\x3a\x34\x30\x50\xeb\x9a\x11\xc6\xff\x84\x24\x96\x96\x54\xfc\xc7\x4a\x9b\x50\x51\xeb\x3a\x2a\x9f\xbd\xa5\x4f\x6c\xd0\xac\x63\x6a\x9a\x19\x4a\x61\x0b\xd4\x8b\x7c\x7e\x33\x2b\x39\x1b\x5a\xd4\x44\x45\x8f\x42\x56\xeb\xb6\xaa\x42\xef\x94\x0a\x1c\x83\x98\x7b\xc8\xb7\x8b\x2f\x41\x7c\x1e\x93\xd8\x8a\x71\x6c\xa5\xa4\x6b\x73\x7a\xd9\x34\x51\x6c\x6d\x48\x6c\x6d\xac\xb8\xc4\x17\x8a\xb3\x49\xbd\xd8\x0a\xfd\x13\x31\xee\xc3\x01\x17\xaa\x98\x7b\x28\xa4\xac\xba\x8f\xc9\x1a\x71\xf0\xc2\x77\x28\x2e\xf5\x62\x56\x0c\x09\xef\xf2\x44\x77\x24\x36\xcb\x0a\x7d\x50\x03\x4b\x4c\x13\x25\x56\x4c\x42\x0c\xa1\x30\x62\xd9\x90\x04\x43\xca\x07\xc2\x39\x6b\x24\x9e\x42\xf1\x26\x2a\xdf\x44\xa2\x8c\xb7\xf4\xfb\x7d\x05\xf6\xba\xdd\xb8\xd0\x22\xb0\xc6\x30\xcb\x01\x56\x66\x2d\x10\x93\x84\xf3\x9c\xfb\x5c\x66\x3b\x77\x34\xc4\xfc\x30\xcd\x53\x2b\x76\xa5\xf2\x7b\x75\x2e\x68\x9c\x18\xa5\xd6\x0e\x52\xeb\xa3\x50\x63\xe2\xf3\xd4\x34\x53\x2b\x3d\xc7\xfc\xe4\x6d\x0a\xb8\x0b\x32\xf7\xf0\x56\x76\xbb\x6b\x54\x2d\x19\xc5\x45\x81\x61\x65\x9a\x69\x63\xbb\xd5\x35\xe0\xc7\xd3\x3d\x84\x8d\x65\x75\x6f\xe9\xf3\xea\x0b\xa1\xc2\x71\xdb\xf4\x92\x31\x84\x90\x90\xb5\xb8\x45\x25\xb7\x3a\x4f\xac\x1d\x49\x5d\x24\xb6\x39\x21\x8f\xa1\x1b\xf2\x9b\x05\x5d\x1b\xc3\x47\x97\xc1\xce\x4d\x61\xe3\x8a\x53\x14\x41\xac\x57\x21\x75\xbb\x4e\x21\xce\xb5\x30\x33\xb9\x5e\xf1\x1d\x88\xc5\x91\x8a\xf9\x23\x3f\x28\xbd\x1e\xc8\xab\xc9\x37\x52\xdc\xca\xd0\x27\x09\xc6\x40\x0b\xb8\xa5\xec\x2a\x66\xe9\x83\xbb\x86\x8c\xb2\xf7\x2c\x4d\xe2\xdb\x83\x31\x6f\xc5\x43\xf3\xb2\xc9\x35\x67\xe4\x4e\x1a\x45\xc9\x9f\xa5\x71\x59\x79\x52\x0b\x38\x6e\x28\x70\xfd\x11\x94\xc6\xfd\x3a\x3a\x67\xa6\xc9\xf8\x36\x31\x8e\xe1\x1a\xb6\x22\xd7\x4c\x9b\x26\x5c\x47\x84\x11\x36\x67\xe5\x96\x33\xeb\x7a\x85\xe7\x11\xb2\xc1\xf8\x48\x1f\x38\xd6\xa2\x73\x66\x7d\x74\x0d\x29\x96\x55\xbf\x77\xae\xc7\xf8\x71\xb0\x76\x3e\x76\x91\x1e\xb8\xe6\xa3\x91\x83\x71\x01\xe9\xdc\x50\x32\x5c\xa3\xac\x0d\x5d\xa1\x2f\x85\x85\xa0\x93\x38\x2e\xb0\x6d\xd7\xb1\x6d\x70\x06\x63\xd7\x19\x68\xa2\x7f\x30\x73\x07\x33\x10\x7c\x2e\x8c\xc7\xee\x78\x0c\xe3\xa9\x3b\x9e\xc2\xc4\x9d\xc0\x64\xe2\x4e\x26\x30\x75\xdc\xa9\x03\xd3\x81\x3b\x1d\xc0\x6c\xe8\xce\x86\x85\x0f\x83\xa3\x5c\x77\xc9\x0e\xdb\x5f\xca\x04\x0b\x7a\x46\x11\x52\x5d\xd2\x2a\x8e\xfc\x0f\x2c\xf9\xa7\xf7\x6f\xdf\x74\xc2\x2c\xfe\x23\xeb\xdc\xd2\x98\xa6\xe1\xa2\x12\x3d\xc5\xb2\xb2\x9a\xa5\xeb\xd8\x9c\x86\x70\x38\xa1\x3d\x38\xe0\xdb\x5b\x51\xd2\x4c\x51\x85\x1c\x91\xdc\x52\xf6\x03\x0d\x3e\x0a\xc4\xa4\xd8\x1b\x4e\x2c\xb6\xe0\x25\x67\x20\xf1\xd2\xc8\x51\x78\x89\xa3\x9d\x15\xd9\xa2\xb1\xe0\x64\x78\xf1\x3b\x62\x73\x44\x74\x38\x7b\x7e\x0f\xe4\x99\x97\xda\xa1\x35\x2e\xea\x18\x4a\x9d\xd0\x80\x78\x7e\x01\xbb\x76\x42\x78\x85\xa8\x15\x40\x5b\xdb\x9e\xcd\x19\x7b\x56\xe0\xe2\x64\x5d\x23\xbe\x9a\x57\xbf\xa4\x61\x77\xf2\xea\x4b\x18\x5b\xe2\x34\xe6\x39\xfe\x71\x78\x53\xd6\x29\xf8\xc5\x73\xdb\x8e\x42\xd5\x6c\x3a\x4f\x3d\xc7\x27\x4c\x1e\xfb\x40\xf2\xad\x1e\x05\xe6\xe3\xa3\x38\x80\x71\xe8\x21\x8a\x43\x8b\x11\x05\x93\x33\xa4\x25\x6a\xfb\x37\x6d\x19\x15\x58\x52\xdf\x80\x18\x27\xc0\xbb\xdd\x7f\xe3\x6c\xc8\x17\x22\xe7\x90\xf3\xa9\xbc\xf3\x55\x2b\x72\x5e\xb5\x22\xe7\xbb\x5e\xaf\x81\x8c\xf7\xb0\x70\x08\xd4\xdb\x36\xb1\x70\x8a\x56\x75\x2c\xdc\xb2\x00\x9c\xbe\x4f\x38\x8b\x53\xf2\xf3\xca\x96\x01\x51\xdd\x4a\x97\x93\xa4\xe9\x7c\x89\x16\x1a\x70\x63\x4b\xb6\x84\x28\x76\x53\xd3\x8c\x90\x06\x66\x21\x36\xcd\x12\x21\xab\x57\x2d\x5b\xfb\x3b\x3b\xbd\x0b\xb2\x96\x1e\x05\x06\x3a\x8e\x42\x12\x12\x23\x21\x86\xe9\xda\x8d\xb6\x93\xf9\x52\x90\x96\x94\x71\xae\x02\xbb\x89\xc7\xd7\xd8\x27\x29\x07\xf6\xdb\x55\xc6\x92\x94\xba\x4b\x49\xd8\xba\xce\xa0\x04\x65\x12\x7c\x8d\x1c\x77\xe4\x48\x36\xa2\x0e\xbe\xdc\x69\x05\xb6\x0e\xe4\x55\xad\xe0\x60\x64\x4b\x70\x30\x1c\x2a\xfa\x74\x24\xe1\x00\x07\x13\x81\x04\x13\x0d\x40\x30\x51\xf4\xa9\x82\x03\xc3\xb1\x24\x4f\xc7\x13\x49\x9e\x3a\xb6\x83\x05\x5d\x3a\x3a\x2a\xf2\x82\x25\x08\xe1\x94\x5c\x9e\x5b\x92\x7a\xd4\x87\x1b\x72\x0b\xd7\x64\x37\x37\x32\xca\x0c\xd7\x08\x96\x4b\x03\xee\xc9\x8d\x69\xde\xd4\xce\xcf\x27\xf2\x58\xc0\xd5\x21\x0f\x43\xee\x85\xe1\x0b\xba\x07\x0a\x86\xdc\x7e\x81\x50\x5a\x6e\x33\xe2\xdc\x3f\xa7\xe9\x31\xc7\x62\x95\x72\x4c\x72\x3d\xb6\x4b\x71\xe1\x1a\x77\x41\xf6\xef\xaa\x7f\x4b\xd9\x91\xfa\x1d\x5d\x7d\x2e\xef\x8e\x7b\xb4\x0d\xbe\x02\x47\xda\x68\xaf\x23\xce\x63\xe1\x36\xef\xf2\x53\x35\x20\x55\x75\x70\x71\xd2\x50\x97\x95\xbc\xd6\x8d\x69\xa2\x87\x3c\xbf\xd7\x8a\x48\xd3\xec\x2e\xea\xbc\x26\xe2\xd0\xfc\x06\x6b\x3b\x19\x84\xad\x98\x7e\x62\x08\x17\x18\xcb\x9d\x79\x2b\xe0\xfd\x0d\xbc\x27\x6f\xbd\x6b\x1f\x3d\xcc\x1f\x0b\xb7\x6f\x83\x83\xbb\xe4\x2d\xbc\x20\x8d\xc6\xde\x8a\xeb\xe5\xe0\x02\xc3\x73\xb2\x6a\xe8\x3c\x45\x23\x88\xc3\x15\xf8\x48\xba\x0f\xa6\xd9\xa8\x58\xd1\x2a\xb2\x33\x46\xc6\xe7\xac\xdf\x3f\xc7\x94\xf7\xc9\x2a\xca\xad\x4b\x45\x17\x7d\x9b\x03\xa8\xe7\x79\x8e\xd0\x0d\x61\x35\xe5\xbb\x24\xa0\x18\xdc\x70\x40\x2e\xa5\x0c\x77\x62\x8a\xb7\xc0\xe0\x06\x37\xb9\xe4\x12\xea\xed\x20\xf6\xae\x7d\x88\x31\xc4\x05\xc6\x35\x14\x74\x0f\xf7\x75\x09\x14\xb9\xc1\x80\x5e\xe4\xf9\x47\x6c\x9a\xe8\x0a\xe9\x73\x8a\xe1\x0a\x89\x03\x87\x61\x67\x9a\x57\x48\x1c\x1e\x8c\x01\x7d\xcc\xf3\xf7\x98\xbf\xb9\xc6\xf0\x60\x9a\xf7\xd2\xdc\xa4\x04\x6f\xea\xb7\x14\x88\xde\x90\xb5\xd5\x84\xf6\x88\x01\x85\x1d\x5c\x63\x48\x50\xfd\x0a\x2d\x31\x04\xd6\x9b\xab\xab\xaf\x49\x57\x4b\xbf\x3b\x1b\xc4\x67\x0c\x9f\x3c\xea\x93\x1b\x88\x51\x6c\xfd\xa9\x17\x5b\x3f\xf4\x62\xeb\xe5\x33\x74\xd3\x25\xb7\x18\x3e\x61\x78\xc8\xf3\xb5\x55\x52\x9e\xbc\x0a\xec\x30\xdc\x48\x3a\xc4\x71\x1d\xdb\x81\xe1\xd0\x1d\x0e\x61\x38\x76\x87\x25\x98\xb2\xdd\x91\x0d\xa3\xb1\x3b\x1a\x2b\x60\x35\x9e\xb8\xe3\x49\x0d\x64\x09\x70\x05\xb3\x91\x3b\x1b\x71\xa0\x75\x44\x1c\x5b\xc3\x6a\x3b\x9a\x66\x61\x12\xbb\xc6\xc0\x1a\x5b\xb6\x51\x9c\x68\x15\x6b\x79\x6c\xaf\xaf\xa9\x69\xa2\xeb\x6b\x4a\x52\x2c\xb9\xf5\xc1\x81\x0c\xf2\x18\xb7\x2e\x60\xe1\x6c\x70\x14\x76\x85\xf8\x51\x08\xa3\xe8\x3c\xb5\x56\xd2\x00\x02\xd9\x10\x62\xec\x0a\xeb\xd8\x90\x2f\x87\x22\x1f\x07\xee\x6c\xc0\xfb\x3e\x2a\x00\x1c\x1e\xed\x25\x56\x74\x22\xad\xcb\x1a\x2b\xf7\x02\x25\x4f\x8f\x95\x3c\xdd\x71\xf7\xc9\xcc\xb4\x46\x7b\xc9\x9b\x0f\x29\x2e\xb4\x34\xfd\xa0\x34\xef\xef\xa0\x3c\xc4\xba\xc6\xb0\xad\x06\x5f\x89\x96\x3a\x10\x56\x9e\x02\x87\x9c\x17\xd5\x36\xe7\x15\xeb\x28\x29\xd9\xa1\x2b\x50\xd6\x17\x8a\x35\x85\xbe\xe5\xeb\x80\xd1\x9a\xbd\xeb\x2d\x65\x1f\xc2\x35\x85\x70\xff\x03\x4b\x5e\xbd\x7f\x2b\xc5\x3d\x90\xb4\x92\xa7\x97\xb3\x39\x75\x0d\xdb\xe8\xd1\xba\x6c\xa3\x45\xaa\x66\xd8\xc3\xb3\x71\xdf\x9e\xf6\x07\xe3\x0f\xf6\xd4\xb5\x27\xee\x70\x66\xcd\x66\xb3\x7f\x35\xba\x24\x94\x8b\xc0\xc1\x05\x1f\x00\xea\x8f\xa9\x33\xec\x0b\x9b\xcd\x3c\xef\x36\x1a\xdb\x2f\xfa\x26\x78\xc3\x8b\xcd\x9b\x5c\x42\x37\xcc\x5e\x86\x71\xc8\x28\x8a\x2b\xe8\x8d\xb5\xaa\xfa\xdb\x20\xbe\xd5\x62\xfe\x57\xf1\x2e\x88\xc2\x65\x87\x85\x6b\xaa\xa5\xf9\x35\x83\x7f\x60\x44\x2c\xcf\x77\x1f\x5e\xbc\xdc\x46\xd1\x5f\xa5\xd1\x5a\x5a\xbe\x7c\x1d\x46\x51\x98\xd1\x45\x12\x2f\x33\xe1\x18\xc5\x2e\xec\xb9\xd1\x37\x5c\x76\x39\x9b\xcd\x66\x73\xa3\x67\xb8\x86\x51\xca\x55\x7a\xc8\xb0\xf9\x3f\xa3\x27\x74\xc7\xc1\x4d\x86\x38\x6d\x24\x45\x64\xe1\xbc\x3f\x71\xfb\x23\xdc\x33\xfa\x46\x2f\x41\x65\x17\x49\xcc\xee\x10\xee\x39\xfb\x1f\xc4\xfc\x31\xee\x19\x1f\xea\x6f\xff\x9c\x6c\xd3\x4c\xbc\x76\x1b\xad\x84\xf1\x96\xd1\x96\x0f\xef\xf5\xe0\x71\xcf\xb0\x8c\x1e\x4a\x2f\x67\xb3\x79\x2a\xb6\x34\x41\x29\x7f\xfb\xaf\x46\xe1\x86\xfc\x9c\x71\xd8\xc4\x4f\xda\x81\xdc\xb5\x1d\x20\x68\x19\xec\x51\x06\x8f\x23\x4e\x25\x0e\xed\x12\x42\x4d\xb3\x32\xf8\x10\xbf\x94\xc9\xb4\xf8\x79\xa8\xa0\x79\x55\x5a\x36\xdc\x85\x31\xab\x33\x79\x5a\xd8\x5e\x35\x47\xa5\x06\x60\x60\xbb\xce\xc0\xe6\x94\x1e\x9f\xc6\x81\x88\xf3\xe8\x28\x35\x1c\x69\x19\xc5\x8b\x80\x73\x9a\xfc\x8c\x75\xd6\x94\xdd\x25\xcb\x4e\x12\x77\x3a\x46\x8f\x1e\x98\x58\x0c\x0e\xa4\x9e\x55\x7f\x5d\x71\x31\x5b\x44\xd1\xd3\xae\xf6\x95\x6c\x9a\x92\xa1\xc7\x02\x8c\xe0\xa8\x94\x66\x5a\x14\xd8\x0a\x84\x45\x91\xde\xb5\xe1\x51\x4e\xbc\x54\x25\xd9\xd8\x5a\x26\x0b\x01\x5a\x20\x24\xa9\xf4\x1e\xe4\x37\x48\xb8\x69\x5e\x45\x94\x7f\xf9\x0c\xb7\x1e\xce\xf7\xca\x73\xa2\x5f\xb8\x86\x3c\x4a\x7c\xa6\xa5\xf7\xc3\x03\x8e\xbb\x6a\xd7\xa8\xa1\x7e\x68\x7a\x2f\x42\x98\xbd\xd3\xe0\xe9\xed\x0a\x36\xea\xf5\xab\xec\x2a\xde\xae\xa9\xb0\x92\x03\x96\x7c\x93\x2c\x82\x88\x2a\xc0\xa5\x05\xd6\xd2\x8a\xed\xed\xaa\x6e\x26\x26\xb7\x66\x78\x54\x3d\x7d\xa6\xd6\x66\xaa\x74\xf6\x67\x47\xb0\x5b\xa5\xe7\xa1\x58\x88\x1c\x57\xd2\xca\x53\xd3\x57\x01\x64\x84\x33\x4d\xb0\x25\xa1\xb5\x82\x88\xd8\xe7\xa5\xe0\x2f\x3a\xc7\x5b\x25\x2d\x87\x80\x64\x5e\xd4\xeb\xf9\x82\x42\x56\xde\x63\x0d\x03\x87\xe9\x99\x3b\x3d\x83\x33\xc7\x3d\x73\xe0\x6c\xe0\x9e\x71\x2c\x39\x3c\xaa\x87\xd5\x0c\xca\x40\x31\x28\xa3\x81\x62\x50\x46\x92\x41\x19\x8c\x39\x83\xd2\x94\x3c\xcb\xda\x11\x2c\x60\x05\x1b\xce\x8e\x98\x99\xf5\x12\x96\xe2\xef\x9f\x60\x2d\xfe\xbe\x87\x9d\xf8\xfb\x0e\x1e\xc4\xdf\xaf\xe0\x96\x2c\xe7\xa9\xbb\x9e\xa7\xc2\x9e\x11\xf1\x3f\xe4\xb1\xc0\x2e\x92\x2f\x1e\x8b\x1a\x75\x07\x37\x64\x39\x8f\xdd\x58\x16\x8d\x55\x51\xb8\x26\x35\x62\x2b\xcf\xeb\xa4\x17\xff\x2e\x24\xa8\x11\xa7\x1f\x96\xa6\x89\xb6\x84\x61\xd8\xe2\x15\x41\x68\x41\xba\x77\xa6\x79\xab\x1d\xa6\xba\x84\xdc\x7a\x91\x8f\xe7\xb7\xee\x16\x7b\x91\x0f\x1b\xc2\xa9\xde\x79\x80\x56\x9c\x55\xdc\xb5\x6a\x46\x56\xf3\x00\x35\x8c\x01\x61\x85\xdd\x15\xdc\x9a\x66\x82\x6e\x21\x82\x15\xf0\x69\x7e\x87\xe1\xc6\x8b\xfc\x2e\x59\x99\x66\x88\x6e\x20\x82\x8d\xa0\x3c\xaf\xf5\x4b\xc4\x9f\xc8\x0a\x17\x27\xa9\xb5\x48\x52\x4a\x62\xc8\xac\x97\xc4\x81\xcc\xfa\x13\x19\x40\x66\xbd\x27\x23\xc8\xac\x77\xe4\x0c\x32\xeb\x2b\xe2\x4c\x20\xb3\x7e\x20\x43\xfe\xe5\x3b\x32\xe1\x9f\xbe\x25\xce\xe0\xac\x26\x88\xc8\x0a\x78\x14\xe6\x7b\x5a\xf7\x2e\x89\xc2\x81\x3b\x1a\x94\x84\xdf\xf0\xb8\x81\x9d\x50\x80\xad\x03\xb6\xb8\x7b\x5a\x27\x4c\x4e\xad\x53\xe1\x6e\x65\x9c\x5a\xa7\x86\x47\x7d\xc4\xb0\x52\x3d\xc5\x0d\x9d\x14\xf3\x52\x9f\x74\x1d\xe8\x1e\x16\x14\x3a\xaa\xd2\xae\xa4\x52\x2a\xf1\x11\x1e\xd0\x71\xed\x63\xa9\x3a\xea\x76\x29\xaa\x35\x5c\x35\xab\x6e\xec\x97\x51\x3b\x23\x4d\x94\x2a\xab\x26\x4e\xfd\x08\x05\x92\xb6\x2d\x19\x1c\xb7\x47\xc8\xb4\xa9\x77\xc0\xef\x6d\x44\x32\x94\xc0\x16\x0c\x3e\x67\xce\xbe\x47\x9e\xed\xc3\x8a\x44\x9e\xc3\xb9\xe7\x3d\xfd\x2d\x23\x8f\x95\xeb\x8f\xb7\xf5\x49\x1b\x88\x86\x69\x97\x18\x7a\x09\x39\x63\xd3\x62\xa6\x4b\x61\x81\x21\x45\xca\xb0\xb3\x7a\xbf\x85\x01\x21\x6c\xde\x2e\xef\xd3\xc0\x44\xc9\x5e\x8a\x16\xc9\x5c\xb3\x10\x67\x3a\xeb\x5a\xc0\xc1\x99\x3b\x38\x53\xbc\xc8\xde\x51\xfb\x52\xdc\xdf\xb6\xaa\xda\x83\x4a\xe3\x67\x46\x2a\xd2\x88\x5a\xd2\x8e\xd6\x34\x11\xeb\x11\xe3\x56\x48\xcf\xc2\xdb\x38\x49\xe9\x8b\x20\xa3\xea\xb5\x14\xaa\xad\xb7\x11\x0b\xa3\x30\xd6\x6f\xd7\xe2\xed\x36\x0e\x17\xc9\x52\xbf\xdb\x8a\x77\x19\x0b\x17\x1f\x1f\xd4\xab\x07\x03\x83\x84\xa1\x02\xff\x0f\xbf\xcc\xf6\x70\x34\x6b\x1a\x02\x08\xbb\xa4\xba\x12\x52\xde\xb1\x30\x7b\x21\xf4\xf5\xef\x37\x29\x0d\x96\x1c\x0d\xb5\x5e\x38\xe1\x6a\x90\xc1\x16\x4a\xf8\x5a\xf1\xe0\x42\xb4\x43\x16\xf0\x40\x6c\xb8\x25\xdd\xee\x86\x03\x9f\x0d\xdc\xc1\x10\x9f\x3f\x5c\x44\xd2\xa8\xe5\x41\x5a\x65\xf1\xc7\x25\xb9\x9d\xdf\xa2\xad\xf7\xe0\xc3\x03\x64\xd8\x15\x4f\x6b\x7e\x39\x63\xb4\xe4\xe7\x69\x4d\x4a\x88\x88\xd6\x64\xe9\x05\x3e\x9e\x77\xbb\x6b\x37\x45\x4b\x8c\x61\x6d\x9a\xab\x4b\x1b\xef\x88\x1c\xd2\x12\x42\xb4\x2c\x0d\x6c\x76\xb0\xea\x3b\xb8\xef\x9c\x68\xe7\xe6\xdd\x25\x99\xd9\xf6\xd4\x99\xcd\x06\xe3\xd1\x74\x64\xcf\x66\xce\x01\x31\x84\x4f\x98\xb7\xf3\xc9\xb2\xd8\xf5\x7a\xc5\x43\xaf\xa7\x79\x99\x5d\xc3\xcc\x45\x9f\x31\x09\xce\x1a\xf6\x1e\xc3\x3d\x12\xa9\xd4\x24\xa9\xe5\xe6\xeb\x3f\x56\x3a\xe0\x91\xba\xc2\x53\x29\x62\x13\xdb\x22\x85\xed\x33\x7e\x5b\x1f\x0b\x58\x90\xc7\xe2\x1c\xd5\xf9\xdf\x3d\xe3\xda\x15\x6c\x64\xfb\x77\x5a\xac\x46\x36\xf3\x16\xc6\xab\x70\xb7\x1c\x04\xdc\x12\xce\xbc\xad\x80\xcd\x07\xae\x83\xe1\x86\xd8\x27\xed\x96\xd2\x0f\x4f\x99\xc4\x86\x4c\x52\x29\x5d\x43\x3a\x82\xa0\x07\x65\x9a\x71\x47\x32\xa4\xdd\x47\xf1\xf9\xdd\xe5\xcd\xf9\x8d\x32\x1c\xdb\x11\x36\xbf\x45\x01\x5a\x12\xea\xdd\xf8\x98\x03\x9e\xa5\xe7\xf8\xd8\xbd\x45\xe2\x05\x26\x84\x44\x79\xbe\x23\x84\x68\xd3\xae\xce\xae\x32\xec\x5b\x93\x07\xad\x8c\x3f\xef\xa2\x25\x59\x2b\x49\x13\xa7\xf6\x62\x7a\xae\xba\x08\xd1\x1a\x6e\x61\x69\x09\x22\x09\xd8\x91\x46\xb1\xf5\xd5\xb7\x57\xcf\xff\x42\x22\x48\xad\x6f\xaf\x3e\x7c\xf7\xed\x1b\xb2\x68\x6c\xee\xcc\x75\x06\x33\xbd\xb9\x67\xee\xe8\x0c\xc6\x43\x77\x3c\x54\x34\xf7\xe8\x08\x11\x5a\x23\xfd\x8e\x1a\xca\x9b\xa6\x0a\x04\xc3\x59\x27\x22\x8c\x6f\xb5\xed\xfc\x31\xdb\x7b\xd3\xe4\xff\xd7\x2b\x08\x63\xfc\xca\xb4\xa5\xa6\x80\x33\x30\xc2\x6d\xe2\x90\x5b\x21\x0e\xb9\x2d\xc5\x21\xa3\x23\x16\x9e\x8f\xc5\x5e\x9c\x8d\xcf\xd9\x27\xa5\x25\x04\xd6\x76\x11\xa3\xa3\x64\x68\xbb\x70\x45\x18\x36\xcc\xf7\x45\x2c\x65\xf3\x5a\xc4\xe2\x40\x88\x1b\x48\x40\xf9\xbe\x55\x46\x26\x42\x6e\xce\x09\x0d\xa1\xe3\x6b\x8a\x60\x46\x4f\x11\x97\x25\xbf\x50\xe7\xfd\x4d\x33\x2d\xdf\x2b\x26\x40\x53\xff\xbc\xbd\x03\x62\xa5\xc1\x06\x0d\x66\xd8\x34\x7f\x3b\x3b\x44\xd1\xd0\xc6\xc8\x58\x86\x3b\x03\x7f\x21\x63\xa4\x14\x9a\xb6\x3b\xb4\x41\x33\x49\xa3\xa3\xf2\x26\xcd\x24\xcd\x66\x42\xed\xf0\x84\x88\x4b\xe8\x2d\x20\x20\xac\x2e\xc0\xd4\x68\x2e\x90\xfa\xe9\x16\x0a\x34\x30\x4d\x94\x90\x9a\x17\x32\x16\x8e\xbc\xe5\x4f\xce\x8a\x25\xd8\x34\x63\xd3\xe4\x5d\x25\x18\x2a\x43\x7a\x98\xcd\xdc\xd9\x8c\x8f\xff\x8b\x3d\x0b\x34\x60\x2d\x45\x64\xa9\x96\x8c\x95\x86\xdc\x52\x40\x66\x6b\x01\x56\x3c\xa7\x08\xbb\x4a\x5e\x95\xe2\x93\xa6\xf8\x8c\x7f\x65\x9e\xed\x57\x25\x40\xfc\xdc\x93\x9b\xe9\x62\xc0\x04\x00\x6b\x94\x95\xef\xf6\xc4\x66\x8d\x0a\xc0\xbc\x41\x6b\x2d\xf9\x41\x56\x1d\x1d\xaf\x0a\xcc\x1b\x1e\xaf\x2f\xbf\x16\x7b\xe2\xb6\xb4\x76\x3f\x9f\x32\x38\xab\x9d\x08\x65\xa4\x65\xfc\x6c\x08\xa6\xe7\x80\x41\x45\x36\x9e\xcb\x32\x2d\x94\x99\xf1\x5e\x1b\x88\x71\x5e\x72\x5e\xc6\x40\x31\xb0\x5b\x1a\x7f\xd5\x5d\x5b\x46\x47\x2c\xb5\x28\x1a\x37\xac\xe0\x04\xde\x61\x49\x2a\x4c\xe0\xf6\x1d\x5c\x9e\x64\xe9\xab\x20\x20\xc2\xfc\x45\xd4\x95\x51\x29\x42\x2f\x16\xea\xd5\x06\xf1\x38\x3e\x73\xc7\x62\x60\x07\xf2\x8e\xf6\xd5\x6a\xf8\x7a\x37\x6d\x27\xd5\x8a\x88\x2f\x6a\x41\x1a\x5e\x3d\x9f\x11\x69\x08\x19\xdb\x2a\x4a\x92\xf4\xc9\x09\x0a\x2f\x16\xd3\x2c\x45\x86\xfc\x07\xff\x2c\x14\xc7\x35\x5f\x95\xf1\x13\x12\x8b\x96\x51\x1f\x38\xb6\xce\xe3\x6d\x14\xf1\x65\x74\x5b\xae\xbf\x96\x12\x8d\x8f\xe2\x00\x0d\x81\x4a\xf7\x81\x2f\xe5\xed\x6a\xbe\x0b\xc2\xf2\xbc\xa4\x09\x19\xa1\x5e\x28\x68\x42\xe6\x1a\x92\xc5\x30\x88\xd0\xe3\xe2\x03\x9b\xc0\x92\x46\x1b\x1f\xc5\x07\xed\x44\xbf\xc0\x41\x42\xf4\x5f\x31\x91\xe1\x9c\xa1\x14\xc5\x82\x92\x89\x05\x20\x60\x28\xd6\xdc\x5e\xe9\xb1\x43\x2d\x59\x5c\x79\xbb\x96\xe3\x4e\x04\x28\xd4\x24\x8d\xa0\xe9\x4b\xa2\x7e\xfc\x85\xca\x0a\xa7\xc4\xa7\x72\x2d\x6d\x87\x53\x95\x8f\xc5\x89\x74\xee\x4a\xa0\xe5\xda\x1c\x62\x13\xa9\x01\x6c\x75\x01\x03\x06\x01\x7e\xac\xc9\xd2\x49\x8a\x12\x78\xe4\x94\x97\xcb\x51\x72\x80\x0b\x0c\x21\x2f\xd7\x33\x3a\xaf\xca\x4e\xea\x1a\xa1\x86\xd7\x98\xb2\xae\xd1\x58\x79\x7c\x80\xa8\x5a\xe7\x39\x39\xa2\xa0\xe6\x7c\x71\xa0\x2c\x52\x32\x05\x2a\x84\x05\xe5\x48\x6a\xa8\xc5\x7a\x2c\xf8\x42\xcd\xa4\x8a\xfa\x60\x31\x36\xa4\x8b\x3c\xdf\xfa\x48\x1f\x32\x11\x77\xe2\x13\x33\xc2\x58\xbd\x40\x18\xc3\x5d\x0b\xcb\x2b\x96\xeb\x33\x8a\x6d\xb8\xc5\x8f\x5b\xb4\x04\x06\x6b\x29\x87\xbf\x81\x6b\xb8\x87\x4f\x07\xae\x67\x1b\xd3\xa4\x9c\x17\x7a\xa1\x89\xd3\x17\x1e\xf5\x4f\x9a\xde\x12\xd2\x5c\xca\x15\x8f\xca\xda\xe9\x40\x1d\x53\xb7\x17\xef\x2c\x4b\x73\x95\xe3\x7a\x98\xbd\x72\x70\x45\x1a\x5b\x08\x6f\x49\x65\x97\xb5\x83\xf7\x9c\x1f\x7b\x41\x6a\x07\x01\x9e\x93\x17\xde\xca\xcf\xf3\x17\x9e\xf1\x1f\xff\x63\xb9\xa4\x7e\x9e\xef\x4c\xf3\x85\xb7\xf3\xe1\x23\x79\x9e\xe7\x9f\xd0\x0e\xc3\x6b\xb2\x9b\xbf\x9d\x7f\x42\xa5\xd5\x16\x76\x3f\x6a\x9b\xb8\x77\xa4\x04\x8c\xcc\x34\x5f\x68\x45\x72\x9e\x3f\xe7\x7c\xc5\x3b\xd3\x44\xf7\x64\x81\xde\x55\xfa\x12\x8a\x31\xa7\x29\x14\x01\x55\x23\x2c\xee\x05\x43\x60\x9a\x28\x42\xf7\x70\x25\x8c\xc1\xd2\x3c\x0f\xd0\x3d\xac\x70\x9e\x27\xfc\x2f\xdc\x61\x0c\x6f\x4d\xf3\xb9\x69\xea\xd9\x75\x09\x79\x6e\xc5\xc1\x9a\x63\x85\xf7\xa4\x6b\xc3\xc7\x96\x2d\x7f\x5e\x53\xbf\x14\x22\xa8\x58\xf7\x36\xcf\xf9\xe6\x75\xdf\xf3\xd9\xf2\x75\x48\xd0\x0b\x58\xc1\x47\x0c\x19\x27\x45\x3f\x42\xe6\x5d\xf9\xe4\x0e\x76\x9c\x31\xb9\x21\x8f\xb2\x3b\xf7\xed\xfc\xa3\xfb\x09\xe9\xce\xb1\xf0\x4b\x76\x1f\xe4\x4b\xb1\xcd\x58\xbb\x27\xbb\xaf\x0b\xb8\x15\x92\xd7\x6b\x7e\x40\x6e\xb0\xf8\xf3\x22\xcf\x43\xf4\x02\xae\xe1\xc6\xbb\xf6\xb1\x74\xb0\x89\x51\x6c\xbd\x93\xaa\xda\x4d\x9e\xbf\xc7\x0d\x55\xf5\x4d\xdb\x5d\x94\x5a\x5a\x69\x40\x22\xef\xe5\x78\xe4\x8e\x47\x12\xe9\xc1\xc4\x76\x27\x36\x4c\x67\xee\x74\x56\x4a\x4c\xc6\x07\x24\x59\x53\x38\x57\xbb\x53\x31\xe9\x3a\x42\x08\x27\xad\x57\xbd\xa9\xef\xa5\x3e\xc2\x27\xa1\x02\x84\xf5\xf5\x8d\x49\xd7\x2e\x54\x9c\x94\x55\x9a\xac\x51\x08\x0d\xa3\x30\x0e\x31\x07\x45\x5d\x34\xf7\x84\xa3\x6d\x97\x99\x66\x37\x6e\x1a\xf4\x84\xf5\xc1\x24\x7c\x30\x10\x90\x44\x0e\x28\x10\x07\xe6\x70\xbb\x1f\x39\x43\xe9\x86\xd2\xeb\x95\x97\x6d\x39\x11\x41\x01\x14\x25\xf5\x81\x95\xce\xfd\x0d\x91\xe1\xf8\x80\xd8\x7a\x9a\x9f\x92\xe7\xc4\x65\x20\xc6\xd0\xed\x52\x2d\x2a\x1c\x3f\xa1\xe7\x79\xd4\x65\x8e\xd2\x2a\x5a\x01\xe0\x38\x47\xd1\x5b\x2d\xb0\x1f\x24\xd2\x69\x29\xe0\xd0\x9e\x83\xd6\x40\x7b\x40\x6c\x89\x7d\x9e\x5d\x6e\x05\xb7\x9d\x78\x21\x09\xbc\x6d\xaf\xe7\xfb\x75\xdd\xb4\x5c\x00\xe5\x3b\x27\x24\xfc\x85\xcf\x8f\xd4\x71\x76\xc9\x91\xa3\x9f\x1c\x61\x49\x05\xfd\x43\x3f\x6d\xd6\x4e\x6d\xe4\xdd\x34\xcf\x53\xe4\xd8\xf8\x72\x30\xb0\x07\x63\x6b\x34\x19\x4f\x67\xa3\x33\x7b\x32\x75\xce\xd4\x97\x8b\xb6\x2f\xfd\x01\xed\x3b\xd3\x2e\x49\x91\x7c\xc2\x6d\xd6\x35\x36\x21\x88\x92\x1e\xa7\x5b\x5d\x7a\xd9\x77\x68\x7f\x62\x9a\xf4\x82\xff\x9d\xd3\x1e\x7d\x46\x4f\x07\xae\x1e\x15\xa2\xb8\xef\x14\x6e\xaa\xe6\x70\x94\xee\x99\x8c\x4b\x5a\x6e\x93\xdc\x43\x48\x62\x34\x80\xfe\x58\x68\x32\xc4\xe3\x40\x58\x5b\xf1\x47\x67\x30\xc5\xcf\xd0\xa0\x9f\x48\xc7\xde\x01\xf4\x9d\xc1\xa4\xbe\x6d\x92\x22\x4c\x93\x6d\xab\x97\x0e\xc4\xb0\x25\xa5\x62\x56\x08\x7d\xd3\xca\xa8\xad\xb3\xbd\xc8\xe6\xd1\x33\xb4\x3d\xcd\x4e\x93\x9e\x73\x1a\xf6\x9d\xd3\x10\x3f\xcb\x9e\x25\x2e\x8a\x39\x31\x85\x9c\x5e\xc2\xdf\x6c\x71\x1f\xb1\xfe\x16\xe3\xcb\x20\xcf\xe3\x2e\x89\x79\x2d\xe7\xd4\xc6\x6e\xf4\x4c\x38\x8b\x4e\xc6\xee\x84\x73\x9b\x93\x27\xfc\xf1\xc5\x30\xa2\xe4\xd6\xd9\xb4\x91\xc4\x72\x91\xc5\x02\x9f\xa9\x05\x3e\x9b\xd3\x7e\x6d\x81\xa3\xe4\x16\x39\x3d\xaa\x59\x97\xc9\x13\x5c\xb7\x28\x9f\x2d\x82\x88\x36\x3d\xa7\xa1\x69\xa9\x60\xb7\x84\x25\xca\x73\xda\xe5\x8c\x00\xeb\x12\x96\xe7\x69\x97\xa4\x72\xc6\x79\x1e\x76\x49\x38\x7f\x13\xbc\x71\x29\x21\xc4\x39\xb5\xf3\x9c\x3f\xf4\x9d\x53\x7b\x4e\x5d\x44\xfb\x0c\x3f\x43\x61\x3f\xc6\xa7\x28\xed\x33\xdc\x8b\xf5\x38\x9f\x50\x14\xc8\x71\x86\xb7\x71\xdb\x8a\x54\x47\x4f\x8e\x89\x1f\xc0\x0b\x5b\xb8\x06\xea\xa6\x9f\x00\xc4\x23\x4e\x49\x53\x16\x18\x7b\x4e\x5f\x8e\x24\x97\xa4\x27\x4a\x40\x6c\xd0\xcc\x5d\x23\xfa\x61\x6d\x3c\x35\x4d\x05\x6c\x8f\xab\x75\x33\x54\x62\x61\xba\xa3\x31\x53\x6d\x25\x71\x86\x1e\x0b\xcc\x31\x65\xd4\x20\x78\x12\x44\x21\x05\x05\xe2\x1e\x43\xd7\x78\x6b\xf4\x3a\xbd\x5e\x00\xf7\x42\xb7\x8a\x0b\x58\xd4\xcd\x7c\xfe\x72\xf5\x57\x37\x85\x37\x57\x57\x5f\xbb\x5d\x07\x94\xc7\x8b\x7b\x08\xf6\xe3\xca\x8c\xd3\xc8\x1e\xd6\x37\x49\x54\x67\x57\xa8\x8b\xf6\xbd\x95\x3a\x74\x6e\xbc\x37\x5c\xe3\x9d\x81\x7b\x32\xbe\x4d\x28\x6c\xe5\x64\x73\x59\xad\xb9\x97\x22\x00\x4b\x57\x03\x37\xe3\xca\x38\xe1\xd4\x7a\xc9\x5d\x7b\xa9\x6f\x85\xc2\x30\xff\x07\x1a\x7c\x6c\x19\xdb\x91\x86\xbb\x76\xa3\xdd\xae\x73\xd8\xec\x7d\x01\x49\xfc\x32\xa5\xf4\x67\xda\xa6\xf9\xd8\x9a\xe6\x42\x58\x71\x99\x66\x26\x38\x22\xd5\x95\x69\xf2\x96\x40\xe2\x0d\x67\x30\x72\x9d\xc1\x48\xeb\x40\x6a\x06\xa3\x42\x3a\xc6\x8f\xd3\x71\x61\xc0\x3e\xd5\xed\xd8\x43\x75\xbe\x96\x81\x38\x63\x89\x88\xd0\x96\xa4\x34\xcf\x91\x7a\x22\x31\xbd\x47\x14\x0d\x26\x13\x8c\x39\x38\xdb\x37\x69\x92\x28\x39\xb1\x6e\x29\x43\xd2\x02\xbb\x1b\xaa\x4d\x54\x4b\x71\x92\x08\x7b\x58\xca\x21\x24\xbd\xef\xa4\xb8\x90\xf1\x4f\x43\x51\x47\xfa\x2e\x75\x83\xbd\x3a\xa1\xb2\xa1\x0d\x74\x9d\x12\x4b\xd7\x3d\x95\xa4\x3d\x6d\x02\xeb\x60\xe3\x06\x7b\x06\xc1\x75\x61\x52\x80\x54\xb0\xb5\x7d\x73\x3f\x11\xa5\x42\x99\x00\x8b\x4d\xff\x6d\x0d\x88\xe0\x7e\xca\xe8\x33\x56\x4b\x70\x68\x50\x2e\xc3\x65\x04\xc2\xc0\xaa\x6b\x63\xb5\x1a\x0c\x17\x92\x56\x6c\xdb\x2c\x19\x1f\xae\x2b\x70\x7c\xcd\xc9\xdf\x34\xd3\x96\xf8\x31\xbc\x9a\x0a\xe9\xca\xf8\x15\x8d\x45\xc3\x6d\x47\xac\x1e\xb9\xb3\xf5\x62\x49\x19\x8f\x98\x05\xfd\xb4\x69\x34\xc1\x69\xd2\xf7\x60\x7c\x4b\x57\x11\x5d\x30\x43\x45\x27\x7c\x74\xec\xa1\xeb\xd8\x43\x70\x26\xb6\xeb\x4c\x6c\x18\x4c\x26\xee\x60\x32\x91\x04\x29\x3f\x8e\x47\xc5\x40\xda\x06\xc0\x71\x86\x62\x4d\x20\x24\xa9\xf5\x7a\xcb\x44\x28\x90\xb7\x37\x19\x4d\x77\x94\xd3\x04\xd6\x0f\xf4\xe6\x2f\x21\xdb\xff\x22\x22\xeb\x6e\xd2\x64\x41\xb3\x8c\xd3\x35\xd6\xbb\x34\x59\x87\x19\x85\x8c\x18\xea\xb5\x41\xa4\x58\x02\x25\x4f\xa9\xfd\xa4\x57\xdb\x81\xa7\x2b\xc4\x42\xb1\x9f\x99\x26\x4a\x49\x62\x2d\x93\x75\x10\xca\xb0\xd5\xf4\x53\xc8\x10\x3e\xa7\xe7\x9c\xda\xa5\xd6\x2a\x06\x4a\xa8\xa0\x3c\x05\x5d\x1a\x97\xfa\xe1\x54\x13\xbc\x74\xbe\x45\xd8\x2d\x9d\x5e\xd2\xa2\xa8\x9e\x45\x8b\x31\xa3\x29\x92\x26\xbb\x19\x6e\x78\xdd\x26\xa2\xe1\x0f\xe1\xe2\x23\x8a\x70\x51\xfa\xdf\x87\xda\x0b\xaf\x6b\xc3\x8a\x68\xa9\xb6\xb2\x70\xf9\x40\x3f\xb1\x37\xc9\x92\x22\xc3\xc0\x27\xfc\xfe\x84\x28\xc2\x56\x22\x17\x0e\xad\xe0\x71\x71\x17\xa4\xc1\x82\xd1\xf4\xeb\x80\x05\x6e\xd7\x2e\xf6\x5c\x7d\x57\x16\x07\x08\x64\x41\xba\x8b\xa2\xf4\xce\x0f\x4c\x33\xb0\x54\x28\x76\xd9\xfb\x86\x94\x2f\x10\x3e\x69\xb4\xb0\xb1\xd8\x1d\x8d\xf9\x90\x65\xfd\xc6\xc7\x58\xcb\x39\xa3\xca\xeb\xb6\x6e\xe6\x28\xef\xdc\xe3\x2a\x76\x53\x10\x82\x09\x1d\xc5\x53\xb8\x22\x49\x1a\x3f\xc6\xc0\xa1\x14\x25\x31\x6c\x39\x5f\xcf\x48\xac\xe2\x03\x0c\x5d\xc7\x19\x2a\xe1\x90\x16\xee\x4f\xbe\xcc\xb3\xb3\x6e\xbc\x69\xad\xda\x64\x8e\x7c\x35\x5b\xe8\xb3\x13\xe1\x37\xb0\x91\x27\x50\x80\xac\x7d\x07\x8c\xd2\x5a\xab\x4b\x38\x49\x52\x01\xa0\x43\xd3\xad\xaf\x82\x65\x47\x1d\xe6\x4e\x4d\x54\x6f\xe0\x13\x46\x28\xc4\x24\x2d\xca\x38\xc0\x62\xed\x65\xd8\x0d\xf5\x86\x63\x6f\x61\x22\x55\x28\xa1\xa4\xb4\xc2\x9c\x1e\x90\xeb\xad\x0b\xd0\x62\x56\xa4\xe2\x23\xcc\x94\x60\x46\xa8\x35\x15\x91\x10\x64\x9c\xea\xa9\xd3\xf0\x59\x9e\x1f\x90\x16\x52\xb7\xfe\x58\x00\xe3\xff\xa5\xe4\xbd\x80\x3b\x88\x77\x64\x04\x37\x8b\x25\x5d\xdd\xde\x85\x3f\x7d\x8c\xd6\x71\xb2\xf9\x47\x9a\xb1\x4a\xf5\xce\x19\xb5\x29\xc4\x95\xa4\xb9\x35\x78\x16\xf3\xa8\x4f\x68\x81\x61\xda\x25\x9c\x4c\x01\x8a\xbd\xb4\x8c\x5d\x26\x05\x3f\xe2\x3d\xc3\x58\x39\x87\x1b\xb8\x4b\xe2\xa2\xc9\x29\x54\xd1\x63\x84\x3d\x54\x76\x18\x2c\x66\x4b\x1c\x88\x48\x6c\xad\x60\x41\x42\x6b\x25\xd9\x26\x5d\x6d\x05\x1b\x12\x54\xde\xf0\x82\x8b\xc2\x70\x47\xa2\x79\x8a\x36\x58\x3b\xcd\x47\x68\x83\xb1\xcb\xdf\xc0\x92\xdc\xe9\x86\xd7\xc4\x3e\x5f\x5e\xae\xcf\xf1\x42\x5e\x8c\x0d\xac\xc8\x9d\xb7\x96\xe6\x56\x88\x79\x2b\x9f\x6c\xbc\x95\x5f\x33\xb8\x72\x33\x71\xd4\x55\x60\x06\x49\x0b\x4c\xdd\xd1\x14\xda\xcc\xb0\xa6\x47\x63\xbf\x28\x53\xc8\xa9\xa2\x07\x86\x8a\xac\x74\xec\x01\x46\xc6\xab\x2b\x99\xa8\xc2\x68\xa0\x7d\xfc\x58\xc0\x01\x0c\x65\x20\x6e\x8f\x8d\x91\x11\xae\xd2\x60\x4d\x05\xbd\x1a\xaa\xf9\x49\x17\x64\x2b\x63\x0f\x11\xb5\x96\x61\xb6\x89\x82\x07\x62\xc4\x49\x4c\x0d\xa0\x68\x34\xc4\x56\xb0\xd9\xd0\x78\xf9\xe2\x2e\x8c\x96\x32\x48\x7b\x96\x2e\x88\xf1\x53\xb0\x0b\xb2\x45\x1a\x6e\x98\x6b\x00\x62\x24\xe5\xab\xc8\x68\xcc\x7e\x90\xfa\x56\x0d\xf5\xb0\x95\x6c\x68\x8c\x30\x30\xeb\x3e\x0d\x19\x45\xc6\x85\xac\x76\x59\xc2\xc5\x97\xea\xc8\x5e\xfc\x78\xaa\x3e\x19\xbc\xf8\x22\x4a\x32\x8a\xf8\x66\x33\xeb\xe5\x79\xdc\xef\x9f\x63\x65\x89\x9f\x55\x72\x28\x2f\xf4\x62\xbf\xc4\xc1\x19\x07\xd3\xfb\x2a\x15\x05\x77\xdb\x02\x3c\x85\xa5\xf9\xa7\x12\xb2\xcf\x51\xd0\x10\xbe\x52\xac\x08\xa3\xa0\x1e\xea\x97\xf0\xe2\x10\x7a\x89\x4f\x28\x76\x43\x92\xa1\x46\x84\x8a\xd0\x8d\x51\xa8\x14\x40\x8e\x3d\x70\x1d\x7b\xa0\x35\x86\x8e\x3b\x74\x60\x34\x74\x47\x42\xb7\x0d\xd3\xa1\x3b\x15\x00\x60\x70\xdc\x84\x41\x85\xb8\x19\x29\x21\xac\x33\xb0\xf9\x96\xb7\x2a\x34\x4f\x52\x4b\x39\xae\xcf\x5b\xbf\x1f\xd0\x4f\xe1\x0a\x09\xc9\x03\xbf\x56\xd2\x9b\x96\x83\x78\x08\x71\x4d\xec\xae\xa2\xe1\xd6\x65\x2f\xe1\x4a\x3a\x4d\x84\x71\x27\xe5\xb4\x8a\x7a\x3c\x04\x96\xcf\x45\x2c\xfc\x24\x95\x46\x0c\x65\x80\xe0\x2a\xae\x97\x94\xcc\x89\xda\xa6\x89\x54\xb8\x6b\xf1\x4e\x69\x2a\xb5\xf5\xad\xd4\xbb\x8e\x46\xee\x68\xa4\xac\x02\xa6\xc7\x55\x0a\x4a\xef\xad\x56\xee\xcc\x39\x54\x7f\xb7\x2d\x4f\x48\xf7\xc9\x3d\xe1\x9c\x56\x86\xa3\x14\x41\xc0\x58\xbb\x7c\x46\xea\xcd\x13\x25\xa0\x01\xe6\x25\x7e\xd3\x94\x57\x29\xc9\xf9\x9e\x0b\x45\xb9\x96\xd4\x4c\x9f\x56\x3d\xd4\xc7\x3d\xb1\x71\x9e\x1f\x32\x87\x12\x2c\x0a\x36\x37\x0d\xe2\x65\xb2\x46\xf8\xe4\xfa\x5a\xce\xec\x3d\x65\x8c\xa6\xd7\xd7\x4a\x9c\xcb\x4f\x2d\x3b\x88\xe0\x2a\xb3\xa5\x70\x8a\xcf\x63\x7e\x65\xfd\xab\x8c\x06\x85\x74\x92\x0f\x74\x7c\xfc\x88\x9e\x29\x85\xc8\xac\x44\x48\x53\x6d\xe5\x64\x4b\x55\xc1\xc8\x91\xaa\x82\x91\x50\x15\xa8\xd5\xbf\xa5\xac\x66\xf9\xf0\x35\x95\x97\x3f\x49\x6b\xc7\x38\x3a\xe4\xf1\xa8\x44\x01\x4c\x90\xfd\xfc\xc8\x6e\xeb\xa7\x55\x99\x46\x34\xce\x6a\x26\xde\x95\x02\x33\xd4\x8d\xad\xca\x90\x0d\x03\x3f\x75\xb8\x2e\x45\xdb\x3b\x73\x52\x6c\x2b\x4e\x9e\x00\xda\xa5\x3a\x65\x7a\x5c\x36\xa0\xfd\x94\xa7\x53\x6c\xad\x20\xac\x47\xc0\x80\x84\x1c\x68\xf9\x9a\xb6\x2a\xa6\xd9\xba\x40\x6f\x82\x35\xcd\xe6\xc7\x3f\x21\x59\x1b\xbb\x9e\xff\x39\x42\x29\x31\x4d\xc3\x93\x83\xe8\x48\x78\xed\x1b\x44\x3b\x54\xd0\x26\xea\xad\x2d\x2e\xff\xbd\x6f\x5d\xd9\x49\x74\x30\xfb\x82\x13\x35\x6e\x2c\xc3\xe7\xd4\xd7\x73\x3a\x75\xa7\xe2\xc6\x4e\x9f\x38\x42\x76\x89\xe5\x34\x3a\x36\xe4\x25\x33\xc0\x28\x01\x2f\x87\x1b\xd6\xaa\xfd\xfc\x88\x35\x68\x15\xf2\xf0\xce\x42\x49\x6e\x09\xf8\x7b\x66\xbb\x67\xe2\x48\x9f\x1d\x8e\xe7\x68\xf3\x92\x30\xca\x54\xe0\xc3\xa3\x92\xdf\x91\xb3\x17\xc4\xea\x00\x5d\x27\x07\xba\x94\x43\x8c\x75\x4b\x59\xcd\x5e\xbd\x75\x52\x54\xca\x8c\x53\x31\xb7\x39\xf5\x42\xbf\x55\x41\x5c\x37\x27\x91\xba\xaf\x32\xf2\x4f\xe3\xdb\xbc\xf1\xab\x1a\x9b\xdb\xa8\x22\x87\x37\x4f\x44\x80\x9a\x3a\x7a\xd3\xd4\x8e\xb8\x2c\x85\xcf\x97\xf8\xb3\x0b\x54\xc6\x6e\xc3\xa8\x7b\x84\xb6\x79\x32\x84\x5b\x20\xe3\x30\x72\xc0\x62\x43\xc4\x39\x71\x0e\xaa\x83\x4e\x18\x77\x32\x1c\x74\xa5\xc6\x37\x83\x00\x9b\x66\x54\x5a\xc5\x8b\x90\x5b\xda\x58\x45\x40\x6e\x5e\x84\x30\x49\x12\x9a\x26\xfa\xb7\x50\x04\x62\xcc\xf3\xb2\x4e\x09\xc8\xf7\x66\xec\x3a\x4e\x19\xb4\xae\x9c\xf7\x51\x6a\xee\x4c\x8b\x77\x9c\x43\xa3\x0f\x41\x06\xb7\xee\x32\xdf\xde\xb8\xe5\xe8\x9e\xb5\x10\x0c\xfc\xe8\x3e\x16\xad\xb6\x23\xf2\xd4\x9e\x1d\x8f\xbc\x36\x6c\x5a\xfc\x0f\x3f\x13\x3d\x2f\x21\x28\xb6\xe4\xd8\x85\x95\xbe\x48\x4c\xa4\xc2\x11\x53\x5f\xc6\xb9\x0a\x38\xe5\xcf\x50\xc2\xcf\x68\x6a\xbd\xef\xa5\xd6\xcb\x67\x0d\x93\xe7\x44\xba\x9e\xea\x28\x44\x10\x88\x79\x4a\xb3\xf5\x9a\x5f\x23\x1f\xf8\x51\x53\xf5\xb3\xfd\xd3\x74\x36\xc0\xd6\xea\x4b\xe3\x23\x56\x7c\x45\x22\x74\x01\x02\xb9\xa7\x48\x04\xf6\x2c\x19\x8b\x88\xd8\xb0\x20\x9e\x7f\xbe\xbd\x8c\xce\xb1\x82\x91\x01\x24\x95\xcf\xc5\x42\x9e\x14\x3a\xf7\x12\x08\xbc\xc4\xf7\xdd\xa0\x8e\xff\x17\xc5\x81\x8a\xa6\xa4\xfe\xcf\x8e\x9a\x8e\x4d\xa7\x4d\x66\x4f\x05\x8b\x18\xd9\xd8\x52\x52\x9e\xda\x2c\x13\xd3\x4c\xac\xe4\x3e\xfe\xcb\xc1\x39\x52\x0e\x26\xd6\x0a\x85\xc2\xec\x41\x7a\x99\x68\xd0\x3d\x67\x65\xc0\x30\x91\x1c\x80\x55\x1e\x37\x82\x54\xe1\x80\x5b\x72\x2d\x7c\xac\x47\xd1\x1d\x1f\xd4\x26\x48\x33\xfa\x32\x4a\x02\xa6\x36\xc4\xc1\x16\x4b\xc3\x75\x6d\x94\xce\x69\x8a\xf8\x97\x01\xee\x19\x7d\x9b\xb3\x79\x42\xb2\x7f\x38\x5c\x6d\xd2\xce\x2f\xb7\x38\x91\xb5\x10\xbd\x82\xc6\x0e\x4d\xd3\xe8\x73\x28\x57\xa5\x82\x9a\xf7\x6d\x37\x94\x8a\x21\x47\xdc\x4d\x7e\x39\x07\xae\xe3\x0c\x4a\x39\xc3\xd9\x51\xe1\x6b\x39\x81\x57\xf1\xde\xf0\x15\x88\x12\x84\xcd\xe9\xdf\xbc\x7e\xcf\x9f\xdb\xde\xa7\x7f\xf1\x4f\x6b\xf3\x3a\xeb\x12\x92\xa2\xb0\x67\xd8\x67\x06\xce\xf3\xc1\xa0\xfc\xfd\xc9\x99\x18\x78\xde\xc2\x77\xec\x4d\xb1\x32\xb6\x09\x81\x5d\x5e\x5e\xda\x79\x8e\x12\x8b\xd1\x8c\xa1\x10\xcf\x9d\x89\xeb\xd8\x18\x7f\x66\x72\x5f\x66\x98\x7e\xa6\x0c\xd3\x47\x13\x75\xd3\x8f\x08\xdf\x2a\x17\xef\xb0\xb4\xbb\x3f\xe0\xb9\x13\xa2\x53\x6d\x28\x35\x47\x6a\x5d\xc3\x96\x74\x9d\x73\x76\x19\x9c\x63\x94\x78\x81\x5f\xd5\xf2\x02\x7e\x5d\x08\x21\x99\xf0\xc4\xa9\x82\x33\x74\x0e\xa4\x7b\xe1\x61\x5f\x81\x00\xf2\x52\x8e\xbf\x35\xcd\x6e\x88\x6b\xd8\x3d\x91\x0e\x09\xfc\x63\x4a\x4a\x82\x04\xb6\x32\xb0\x23\x1f\x4c\xd0\xeb\x61\x11\xd7\x5e\x76\x9f\x36\x47\x26\x2e\xb2\xc4\x0d\x21\xbf\xe5\x2a\x11\xd9\x7e\x81\x5a\x8f\x29\x54\x41\x61\xaa\x20\x73\x67\x33\xf7\x6c\xc6\x37\xe3\x09\xaf\x3d\x71\xda\x6a\xa6\xad\xb3\x27\x74\xb5\xed\x74\xd8\x23\x75\xbb\x0e\xec\x5c\x41\x73\xed\x91\x63\x8f\x32\xdc\xbb\x4b\x0b\xad\xc9\x9e\x1d\x45\x49\x93\xcf\x86\xb0\x15\x6c\x8d\x9e\x37\xb2\x21\x2e\x45\x8c\x7c\xcf\x63\x2d\x53\x13\xea\xc9\x99\x3b\x11\xa1\x83\x0f\x54\xb2\x9f\xd1\xc0\xd3\x12\x4b\xb9\x5d\xe4\x98\x14\xef\x05\xaf\x47\x03\xfe\xae\x0a\x6e\x8f\x46\xfc\xb7\xd2\xdb\x97\x93\x3c\x8a\xda\x66\x47\x63\x3e\x8a\xd4\x0d\x5a\x07\x2f\x53\x21\x0a\x6a\x0a\x98\x17\xfa\x10\x37\xf9\x37\x6d\x98\x31\x3b\x8a\x8a\xb4\xc4\x7c\x34\x68\xaa\x01\xa5\x9e\x30\x4b\x17\x42\x54\x53\xba\x8b\x95\xec\x40\x46\x90\x61\xf4\x02\xac\x05\x69\xfa\x83\x81\x4f\x64\x7c\xf6\x30\xce\x36\x74\xc1\xde\x27\xdb\x74\x41\xdb\x10\x5a\xa0\xe9\xf6\x02\xd0\xd1\x30\xa9\xda\x43\xaf\x2d\xa9\x42\x70\x12\x99\x26\x0a\x51\x00\x46\x2c\xe4\x43\x79\x1e\x97\x3f\x38\xeb\x24\x78\xa4\x2e\x21\x81\x69\x22\x5d\x34\x51\xa5\x12\xf1\x71\x6e\x18\x3d\xfe\xd7\xcd\xa4\x14\x4f\x41\x37\x86\x31\xaf\x2d\x02\xbb\x08\xee\x3e\x70\xb7\xe2\x41\xff\xd2\x46\x6f\x2e\xd2\x8c\xa8\xc7\x7c\xd0\x6f\x31\x2e\x70\xe5\x61\x57\x8b\x36\x56\x2e\xd2\xa1\x7d\x5d\x5b\x04\xc3\xbb\x30\x93\x11\x7c\xbc\xc4\xcf\xf3\xa0\x61\x5e\x54\xd3\xdb\x49\xda\x43\x39\xcb\x55\xd6\x3a\x7c\xdb\xbf\xc8\x15\xad\xe6\x9a\x40\xb4\xc9\x14\x62\xad\x36\x0f\x9c\x4e\x2a\x5c\x76\x18\x53\xb8\x2c\x51\xae\xa0\x95\xd2\x4d\x14\x2c\xa8\x0c\x90\xa9\x0f\xfc\x13\x36\xdb\xa5\xb2\x79\x5f\xe4\x55\xb2\x0e\x84\xb0\xb9\xb0\xcd\xcd\x73\xe7\x94\x12\xe2\x9c\x32\x97\x76\x09\x35\x4d\xd6\x25\x4c\x77\xf1\x65\x5e\x5b\x9a\x76\x54\xa4\xe3\x40\x39\xcb\x1d\x8b\x8f\x8d\x1f\x05\x39\x08\x14\x1e\x57\x69\xb2\x3e\x0c\xcd\x04\xa9\x0c\xea\x4b\xea\x81\xed\xf6\x62\x71\x41\x19\x1b\xb6\x4b\xc8\x56\x58\xde\x6e\x2b\x11\x1c\x15\x89\x9d\x78\x41\x17\xa5\xc4\xf3\x81\xcd\x91\xc4\x4f\x21\xda\x42\x3d\x60\x38\x70\xbc\x2e\x83\x73\x37\x46\x28\xc1\x7f\x86\x28\x70\xbc\x81\x0b\x8c\x5d\x55\x4c\x7e\x82\x14\x83\xee\x03\xa5\x9c\xdb\x95\xb4\xab\x70\x60\xe1\xe8\x40\xd1\xaf\x2a\xbe\xf7\xec\xcb\x70\xf3\xf0\x48\x78\x8a\xda\x92\x25\xab\xf6\x88\x8a\x07\xe8\x92\x29\xd4\x4c\xf1\x39\xed\xf7\xcf\xb1\x90\xc3\x57\x53\xaf\xf2\xb3\x94\xd3\x60\x7a\x16\x5a\x39\x38\x3b\xca\xe4\x6a\xa3\x62\x41\x73\x1f\x08\x68\x04\x4f\xd6\xad\x82\xfa\x76\x09\x61\x87\x29\x17\x7a\x86\xdb\x59\x08\x37\xf8\x8c\xb2\x4e\x90\x75\xca\xdb\xdd\x35\x70\x53\x8f\x4c\x99\x32\x62\xb7\xb2\x3d\xbe\x18\x19\xd7\xd7\xa2\xde\xf5\xb5\x11\xc6\x8f\x45\x75\xd3\x74\xc2\xd8\xf4\xe1\x11\x29\x47\xb0\x3d\x57\x5d\x8a\xa6\x63\x6c\xad\xd0\x3e\x37\x0e\xb5\x36\xa5\xea\x73\x80\x31\x62\xe0\xf9\x18\x52\x22\x23\xe3\x96\x0c\xb1\x58\xe4\xba\x4c\x84\x74\xed\x03\x23\xd0\xfa\xdd\x0b\xa5\xcc\x89\xf3\xdb\x65\x37\x84\x49\x30\x28\x44\x9e\xe8\xb1\x80\xae\xa3\x43\x81\x63\x58\xdc\xd1\xc5\x47\x37\xac\x8e\x97\x32\x28\xe0\xe4\xf9\xd8\x9d\x8e\x45\x90\xfa\x2f\xd3\x1f\x69\x0c\x35\x55\x18\x6a\xa0\x83\xa6\x7f\x79\x14\x68\x11\x3a\xea\x24\x34\x4d\x66\x9a\x5d\xe6\x25\xbe\x69\xc6\xd6\x4a\x44\x9a\x7f\xdc\xcf\x39\xd3\xee\x4b\x23\xcc\x79\x8b\xa6\xe3\xa8\x94\xb3\x49\xb6\x43\x19\x4a\x38\xf6\x71\xbd\x48\x19\xe1\x75\xe4\xd4\x8d\xda\x1b\x11\x7b\x8f\xe1\xfc\x04\x3f\x52\x11\x8d\x9a\x92\x64\x4e\xdd\xba\x85\x6d\x28\x02\x17\x70\x02\xe0\x60\x2a\x9a\xda\x68\x0c\x5b\x62\x88\x6a\xc0\x47\x6d\xd1\xa4\x25\x87\x32\x37\x8d\x15\x49\xf0\x99\x40\xb8\x82\xa3\x46\xfc\x4f\xcd\xb4\x5e\x6b\xf3\x25\xba\x12\x9d\x7e\xc6\x89\x3f\xf5\x8c\xeb\xeb\x45\x92\xd2\xfe\x4f\xd9\x75\x76\x17\xa4\x74\x79\x7d\x6d\xc8\xa6\x5b\xbf\x08\x9f\xf9\x27\x87\x26\xb3\x10\x23\x91\x9b\xee\x51\xae\x88\x26\x65\x1d\xfb\x28\x75\x34\x6d\x20\x89\x2f\x39\x71\xa5\xac\x41\xd8\x45\x52\xdc\xe6\x18\x55\x2a\x5d\x02\xad\xb4\x25\x04\x25\x82\x85\x17\x3e\x0a\xfc\x62\x25\x8d\x4d\xe3\xc0\x59\xea\x0f\x1c\xfb\xcb\xac\xe1\x9f\x92\x85\x94\x5e\xe7\xfc\xe4\xd4\xce\x3a\x9b\xd3\x9a\xc8\xbd\xa1\x9e\x73\x4a\x4f\x22\x11\x76\x57\x81\x5c\x25\xe8\x70\xec\x27\x44\xca\x13\x25\xa3\x39\x9a\x62\xe3\x80\x96\xa8\x39\x96\x41\x46\x14\x41\xc1\x69\x0c\x2c\xd2\x41\x84\xc2\x41\x5d\xeb\x01\x4b\x7b\x45\x3b\xcf\xb7\x97\x24\x9a\xd3\xb9\x61\x28\x30\xe4\xa2\x84\x64\x82\xd7\x7e\x91\x2c\xe9\x73\x86\xb6\x18\x5f\x8c\xc7\x83\xd9\x24\xcf\x93\xcb\xf1\x64\xe8\xcc\xf2\x7c\xdb\x73\xa4\xf7\x27\x0a\xf6\x0a\xf7\x1c\x5e\x7c\x32\x1c\xd8\x79\x1e\x5c\x8e\xa7\xc3\xd1\x70\x4e\xe7\x99\x66\xde\xb7\xd8\x4d\x5c\xfe\x5b\xf2\x6d\x5b\xd8\xf6\x06\xd8\x0d\xfa\xa2\x46\x0f\x25\x7d\xd1\xd3\xc5\x85\x63\xe3\xde\x64\x3c\x1e\x4e\x94\x40\x65\xe2\x3a\xce\x44\xba\x9d\x8b\xb5\x3b\x9e\x8e\x66\xf0\xf4\xd2\x49\x17\x3c\x19\x27\xf4\x30\x33\x8d\xf2\xad\xfa\x0f\x22\xd0\x79\x67\x99\x50\x11\x26\x34\x58\x2c\xe8\x86\x75\x52\x7a\x4b\x3f\xd5\xf2\xd4\x94\x8b\xac\xee\xac\x74\x8a\x1f\x0f\xdc\xb1\x04\x12\x47\x0d\x6e\x4a\x32\x4a\x79\x2c\x0f\x84\xc3\xf8\xa9\x71\x7a\xbb\x6f\xd7\x95\x6a\xcb\xae\x40\x6f\xa9\x14\xed\x64\xc4\xb8\x30\x7a\x9a\xa4\x34\x8c\x2e\x21\xa9\x69\xa2\xac\x47\x8c\x8e\xd1\x4b\x7b\x7f\x24\xc6\x1f\x7b\x7a\x7c\x15\x55\x99\x80\x61\xfe\x63\x9b\xb0\x73\x03\xf7\xfe\x68\xfc\x11\x43\xd6\x33\x2e\x45\xce\xb8\x8b\x53\x91\xdd\xfb\xd2\x38\xe6\x7e\xa1\x85\x19\x8f\xc5\x49\x28\xa5\x7d\x81\x94\xf6\xbd\x13\xd2\xbe\xf8\x50\x4d\x25\x23\x17\xf0\x6e\x4a\x75\x39\x27\x0f\x2c\x96\x7c\x93\xdc\xd3\xf4\x45\x90\x51\x84\xf3\x5c\x27\xed\xe6\x05\xb5\xac\x76\x58\x60\xd0\x6e\x6e\x4a\x9c\xaf\x22\x0e\x34\x64\x85\x8e\x7d\xdc\x83\xac\x8c\xf0\xee\xd8\xe5\x22\x1f\x45\x14\x65\xea\x94\xe6\x2a\x37\x24\x83\x25\xfc\x49\xe6\x46\xc7\xd0\x06\x5a\x09\x86\x85\x14\x59\x85\x2b\xb4\xb8\x20\xdb\x3c\x37\x0c\x42\x22\x2d\xb1\xc8\x04\x6c\x59\x91\x45\x7f\x0b\x1b\xa2\xec\x6d\x22\x10\x2a\xbc\x05\x0d\x23\xb4\x3a\x2d\x93\x56\x94\xeb\xb4\xd1\xeb\xb0\x32\x4d\xb4\x21\x9b\x32\x97\xf9\x0a\x63\x08\xe6\x9b\x5e\xe6\x66\xbd\x8d\xbc\x18\xb6\xeb\x38\x76\x99\xcd\xa6\xbc\x20\x87\xc9\x6c\x8e\xa4\xf5\xf9\x2c\xa4\x91\x9b\x59\x01\x14\x11\x27\x0b\x42\x62\x18\x90\x48\xeb\xe7\x70\x85\x12\x0e\x49\x12\x61\xc7\xdb\x12\x42\xeb\x45\xb2\x8d\x99\xa2\x00\x6f\x68\x27\xa6\xb7\x01\x0b\x77\xd4\x50\x62\x98\xe4\xd2\x3e\x47\xc9\xe5\xe5\x25\x71\xb0\x8c\xc4\xc0\x30\x76\xcc\x84\x33\x9f\xfc\xf9\xa4\x69\xfe\xbe\x07\x0a\x8e\x27\xd4\x29\x25\xdd\x67\xcd\xd8\x1e\x42\xc4\x17\x10\xc3\x33\x7a\x49\xcf\xf0\x0d\xc8\x88\xf4\x6d\x43\xc6\xdf\xf8\x65\x08\x7a\xc6\x33\x83\xef\xbe\x7a\x2b\xdf\xfc\xc1\x68\xda\xdc\x56\x56\x97\x01\x11\xa6\x18\xe1\xa1\x19\x6f\xb7\x9b\xf0\x3b\x80\xf3\xdc\xf8\xf5\x97\xff\xf3\xbf\xfe\x67\xa3\x4b\xd4\x83\x78\x2d\xac\xbd\x84\xec\x3c\x9b\x33\xb4\x10\x51\x4a\xfd\x93\xd8\x34\x51\xe0\xc5\x3e\xd9\xd6\x2f\x58\x56\x5d\x88\x40\x58\xf3\x46\x42\x66\xd9\xee\x39\x4e\x49\x1d\x36\x81\xc3\x49\x38\x44\x85\xbf\x9c\x04\x04\x19\x18\x06\xc6\x30\x38\xf8\xb0\x95\x1f\x1a\xb1\xda\x22\xb1\xec\x52\x04\xd9\x7a\x0d\x0f\x93\xf7\xd4\xdc\xf5\x7f\x64\x3f\xc6\x3f\xee\x7e\x5c\xfd\x98\x76\xfe\xeb\x7f\xf9\x6f\xff\xf7\x2f\xff\xed\xbf\xfc\x5f\xbf\xfe\xf2\xcb\xaf\xbf\xfc\xa7\x5f\x7f\xf9\x1f\x7f\xfd\xe5\x7f\xfa\xf5\x97\xff\xf9\xd7\x5f\xfe\xf3\xaf\xbf\xfc\x2f\xbf\xfe\xf2\xbf\xfe\xfa\xcb\xff\xf6\xeb\x2f\xff\xfb\xaf\xbf\xfc\x1f\xbf\xfe\xf2\xff\xfe\xfa\x9f\xfe\x9f\xff\xef\x97\x5f\x7e\xdc\x0e\xec\xc1\x99\xf8\x7f\xf6\xe3\x76\x45\x57\x2b\x43\x65\x08\x38\x92\x5a\x06\x64\x4c\xf1\x2a\xf8\xc6\x48\x45\x58\x1d\x0d\xa5\x56\x7a\x68\xab\x50\xcb\xb6\x88\xd1\x52\x1a\x2e\xae\x48\xc4\x19\x80\x57\xeb\x35\x5d\x86\x01\xa3\xb0\x21\x91\x0c\x02\x59\xbd\xba\x23\x91\xf5\x9a\x66\x59\x70\x4b\x5f\xdc\x05\x71\x4c\x23\x58\x92\xc8\xfa\x3a\xcc\x36\x9c\x29\x80\x35\xb1\x61\xc7\x0f\xc3\xc3\x61\x48\x93\x1e\xbf\x38\xfc\xaa\xec\xf6\xa2\x00\xf0\x1d\xd2\xf1\x93\xf9\xf6\x2b\xd9\x08\x7f\x16\x09\x70\x0b\xb8\x6d\xdc\x47\x1d\xaa\x41\x58\x06\xe2\xe2\x64\x65\x9a\x9b\x3c\x47\xab\x23\x19\xb8\x3c\x1f\x62\xe2\x9c\x1f\x04\x93\x8f\xcf\x31\xdb\x97\x7c\xc6\x75\xc9\xe7\xce\xeb\xf5\xd6\x0d\xff\x9c\xa0\x2d\x8a\x29\x9d\xd3\x2a\x5c\x02\xc5\xc2\x9a\x36\x45\x6b\x0c\xeb\x02\x36\x8d\x31\xd5\x26\x56\xc0\x81\x65\xe8\x02\xcf\xd3\x46\xf1\x45\x65\x6f\x99\xa0\x07\xa0\xe0\x60\x5c\xb8\x4b\xd3\x5c\x5a\x71\x72\xbf\x57\x58\xbc\xab\x97\xbb\x9b\xa3\x90\xa0\x58\xd8\xf3\xdc\x61\x8b\x9f\xc5\x01\xc4\xe2\xaf\x63\x25\xf1\x5a\xee\x22\xb9\x85\x94\x24\x28\xb4\x36\x49\xc6\xd4\xce\x42\xc8\x5b\x70\x23\x2b\x58\x2e\xaf\x76\x34\x66\xdf\x84\x19\xa3\x31\x4d\x5b\x9d\xf2\x6b\x15\x4d\xb3\x1b\x59\xe1\x9a\x77\xf1\x5e\x58\x37\x64\x73\xd4\x1c\x65\x54\xef\x07\xd1\x9e\x61\x00\x87\x34\x05\x1c\x76\x86\x0c\x35\x44\x03\x6e\x45\x72\x6a\x37\x25\x46\x12\xa7\x34\x58\x3e\x88\xe4\xd1\x8b\x3b\x0e\x60\x8d\x30\xee\x6c\x91\x21\xad\x29\x8c\xa6\xf4\x29\x6b\x58\x73\xd5\x4a\x61\xeb\xb0\xa1\xfa\x3e\x67\x56\x4a\xd7\xc9\x8e\xca\x8a\x52\x08\x53\x06\x08\x29\x9a\xc1\x82\x32\x19\x18\x32\xd9\xb2\x72\xf5\xc1\xc6\x0d\x97\x57\xc1\xd4\xaf\x40\xe6\x88\xd8\x94\xee\xd9\x2a\x04\x88\x34\x96\x52\x72\x38\x61\x2c\x25\xc4\xeb\xe2\x8a\x1f\x8f\x5a\x25\xd1\x96\x4c\xaf\x17\x7c\x82\xb0\xcc\xb4\xf7\x19\xf2\x1d\x49\x43\x2f\x7c\x61\xcf\x63\x44\x7b\x22\x11\x97\x64\xd3\x6b\xb8\x45\xf4\x7d\x3c\xb1\x90\x46\x99\x4f\x24\xc0\xab\x45\x04\x24\x3a\x39\x78\x47\xe6\x7c\x65\xa5\xa5\x99\x22\x1a\x38\x51\x14\xb6\x20\xcd\x1f\xd2\x24\xbe\xed\xc8\xdb\x5a\x23\x3a\x1b\x48\xb0\x96\x3f\xed\x30\x69\x51\xcd\xc5\x8b\x53\x1a\x5f\xee\xee\xde\x09\xb3\x37\xc1\x1b\xe5\xa6\x65\xbb\x88\x5e\xda\xf3\xd8\x4d\x31\x2a\x9d\x85\x9c\xe3\x99\x75\x46\xd3\x2f\x64\x5d\xd2\x7d\xc2\xb9\x4c\x69\x75\x2c\xb5\xcc\xde\xbe\x1f\xd9\xec\x5a\xe4\x51\xbe\xc9\x62\xb5\x0f\x02\x13\xb9\xf6\xfe\x7e\x1f\xa5\x24\x3f\x3b\x11\x25\xfb\x4d\x1b\xb3\x11\x29\xed\x9e\x8a\x3e\xf0\x54\x5a\x53\x99\x35\x53\x4f\x43\x06\x4b\x86\x50\x1c\x96\x36\x20\x84\x62\x42\x4b\x1d\x03\x36\xcd\x6e\x8a\x42\x4d\x6a\x52\x5c\x19\x43\xb5\xc7\xa1\x16\xb5\x55\xe0\xc3\xcf\x54\xee\xfe\xfb\xba\x3f\x16\x1a\x33\x89\x77\x34\x65\x2a\x0f\x68\x87\x25\x9d\x4d\x1a\xae\x43\x4e\x21\x96\xd9\xd3\x6a\x41\x16\x9c\xcf\x64\x62\x10\x59\x9d\x07\x33\x5c\xd3\x7d\xd9\x65\xf8\xca\x06\x1d\x38\x1c\x6a\xcb\xb5\xa1\x0a\x11\x35\x18\x48\x22\x61\xa0\xf2\x04\x4d\xa4\x8f\xfb\x6c\x20\x7d\xdc\x47\x03\x19\x86\x7d\x36\x94\x51\xd8\xc5\x71\x5c\x6a\x6e\x63\x2d\x1e\xc6\x18\x76\x3a\x4d\xe6\x83\x36\x8b\xbb\x55\x02\xac\x1b\x95\xd6\xe2\x5a\x09\x56\xef\xb5\xf5\xd0\x27\x15\xaf\xea\x4a\x85\x1e\x78\xab\x3c\xeb\xdf\x97\x76\x65\x2f\x74\xe4\xaa\xe7\x4a\xa8\x04\x1f\x95\x70\x05\x5e\xab\x0c\x12\xef\xa4\x85\x0d\x7c\x10\x72\xa8\x11\x86\x6f\x45\x1e\x34\x07\xc3\x4f\xca\x83\xff\x8d\x8a\x25\xff\x8d\xce\x7d\xf4\x35\x9f\x0d\x86\x57\x84\xa2\x33\x0c\x2f\x95\xc0\xf0\x67\x22\x04\xa6\xf0\x67\xf2\xd2\x5a\xc1\x57\xe4\x67\x6b\x05\xff\x20\xb1\x55\x81\x27\xf8\x8e\xc4\x56\xb9\x93\xf0\x03\x89\xad\xef\xc2\x98\x9d\xc9\xb4\xc9\xdf\xef\x87\x0f\x81\xbf\x90\x4c\x86\x05\xf9\x6a\xbb\x5a\xd1\x14\xfe\x44\x32\xeb\xeb\x80\x05\xdf\x87\xf4\x1e\xfe\x40\x5e\x23\x1b\xc3\x5f\xc9\x6b\x34\xc0\xf0\xcf\xe4\x35\x1a\x62\xf8\x17\xf2\x1a\x8d\x30\xfc\x13\x79\x8d\xc6\x18\xfe\x95\xbc\xe6\x9b\x41\x29\x79\x87\xba\x36\x06\x26\x1e\x1c\x0c\x29\x25\xdf\x5a\x2a\xf9\x74\xcc\x9f\x45\x36\xea\x90\x3f\xe9\x5c\xd4\x09\x25\xdf\x5b\xf5\x3c\xd1\x01\x7f\xa1\x92\x45\x67\xd5\xb3\xcc\x18\xbd\xe5\x2f\x44\x02\xea\x88\x3f\x89\x24\xd3\x0b\xf1\x24\xd2\xba\xad\xf8\x63\xa9\xcf\xdb\xc8\x5f\x8d\x60\xa2\x77\x94\x7c\x6c\x38\x6d\x2f\xc5\x8b\x66\x8e\xb1\x35\x25\xcf\x91\xc1\x97\x66\x79\xdd\xf0\x2c\x80\x9d\xf8\xb2\xa4\xab\xbd\xf7\x0f\x94\x04\xd6\x8b\xb7\x6f\xde\x7f\xf8\x16\x6e\xf9\xf3\x87\xbf\xbe\xbb\xfa\x1a\x6e\xf8\xe3\xf7\xaf\xae\x7e\x80\x6b\x4a\x5e\xa3\xba\x6e\xa3\xc6\x0f\xbc\xa7\xe8\x03\xa2\x40\xbd\x1d\xf5\x05\x89\x86\xe1\x9e\xb6\x31\x2c\x1d\x87\x10\x41\x33\xfd\x20\x02\x02\xf0\x3d\x75\x26\x52\xbb\xe0\x39\x3e\xb6\x6e\xc4\xf6\x61\xcf\xf6\x0b\x0c\x9f\x28\xe9\x76\x7f\x30\xcd\x6e\xf7\x87\x5a\x44\xe8\x8c\x32\xd3\x6c\x34\x2d\xdb\x73\xa4\xbf\xd5\x63\xc1\x7b\xbf\xa2\xad\xaa\xb4\x3b\xc5\x4e\xa6\x9c\x9d\x4c\xff\x07\xad\x4a\xf8\x87\xc6\x86\xc9\x6a\x95\xd1\x7a\xaa\xe0\xb4\x80\xb7\x74\x1f\xf5\x5e\x0b\xa7\xbd\x5b\x2a\x93\x1e\x97\x60\x54\xb6\xf5\x5d\x33\x29\xb5\xd8\x02\x99\xba\xb1\xcb\x29\xb1\xf7\xfb\x03\x13\x19\xf2\x64\x8b\x6b\xd5\x22\xd6\x2d\x19\xaf\x58\x6b\x4b\x75\x67\x91\xda\x60\xa5\x37\x0a\x27\x90\x5f\xec\xf7\xa2\x83\x21\xec\xef\x13\x3c\xdf\x2f\x59\x66\x89\x22\x36\xc4\x44\x5b\xb7\x41\x48\xde\x53\x61\x3f\x76\x1e\x5f\xa6\xe7\x38\xf4\x52\x9f\x30\x2f\xed\xf5\xaa\xe4\xfc\x05\x7c\xa4\x07\x31\x9e\xfe\x2c\x1e\x8e\xc4\xc2\x92\x39\x38\x96\x5e\xea\x0b\x0f\xd2\xd7\xb4\x25\xc1\x9d\xe2\xb8\x84\xd4\xf1\x5e\xba\x44\x1f\x28\xa8\x16\x24\x3a\x92\xbc\x6a\x55\xa9\xf6\x16\xb0\x21\x2f\x90\x34\xec\xd0\x2f\x37\xa6\xd9\xfd\x84\x36\x2a\xfe\x5d\x40\x36\x12\xab\x64\xd2\x1b\x0f\x18\xb1\xcf\xbb\x22\x26\x56\x23\x5e\x1d\xeb\xf5\xb0\x72\xc3\x4b\x94\x81\xf9\x49\x46\x62\x91\x82\x73\x65\x9a\xd1\xe5\xc0\x34\xd1\x82\x6c\xd1\x62\x5f\x41\x88\x79\x93\x90\x92\x25\xca\xca\x40\x87\x62\x65\x45\x30\x8f\x14\x9f\xa7\x97\x4c\x34\x1f\x7a\xcc\x27\xab\xf9\x02\x65\x1e\xf3\x81\x61\x97\xff\xad\xad\xf4\x3b\xda\x6e\x60\x63\xb7\x99\xd6\xa4\x65\x0f\x0c\x9f\xb3\x4b\x7a\x8e\xd3\x3d\x0d\x5e\x6d\x1b\xd3\x02\x3e\xa8\x7b\xd7\xb8\x64\x1b\x5a\xc5\xf1\xf8\x41\xe4\x72\xc2\xf0\x2d\x6d\x09\xaf\xb0\xd1\x71\xab\x3e\xd0\xf9\x42\x55\x7a\x4b\x95\x5c\xc7\xd5\x4f\xf5\x10\xf2\xf0\x13\x25\x8f\x55\xf6\x6c\xb7\xf5\xe8\xbe\x6a\xb6\x04\x42\xa9\xff\x45\x79\xb2\x71\x01\x74\x47\xd3\x56\x3f\xc9\x7f\xa9\x37\xf8\x65\x09\xd1\x70\x21\x52\xfd\xb7\x1c\xe7\xaf\xd5\xc4\x5b\xe7\xb8\x0a\x23\x46\xd3\xb6\x31\xbc\x50\x9b\xf3\xd7\xdf\x31\x16\xd1\x70\xbc\x6c\x6b\xf6\x9f\x7e\xe7\xd4\xe2\xa5\xc0\x63\x6d\x4d\xfe\xeb\xef\x6b\xb2\x25\x2b\xdd\x1f\x7e\x57\x4b\xa1\x44\xb0\x6d\x43\x63\xf4\x77\xb6\xb8\x88\xb6\x4b\xda\x96\x3a\xaa\x43\x7f\x5f\x93\x1c\xb7\xb7\x1c\x8e\x2d\x7d\xea\x74\xd4\xc8\x87\x96\xba\xc9\x93\x75\xd7\xc1\xa6\x6d\xf8\xd7\xbf\x6f\xf8\x92\x56\x69\x19\x44\xf0\xe4\x20\x6a\x24\x4e\x4b\xdd\xec\x33\x75\x77\x34\xcd\x68\xab\x35\x02\x30\xa2\xeb\x54\xe0\xac\xe2\x33\x11\x3b\x15\xfa\x18\xfb\x3c\xbe\x48\xcf\xb1\x4c\x99\xe0\xc5\x3e\xc8\xbf\xbd\x9e\x2f\xdf\xf4\xfb\x4c\xbd\x63\xf5\x84\xed\x77\x61\x56\x40\x96\xac\x5b\xdd\xf4\xff\xf9\x77\xad\x1f\x27\xe8\xda\x5a\x8b\xe8\x3e\x00\xe3\x85\xb7\x37\x02\xa1\xb7\xba\x86\x97\x25\x63\x92\x56\x68\x78\x27\xb0\x70\x0d\xe5\xa3\x0f\x28\x85\x54\x60\x74\x8c\x52\x45\x41\x41\x6a\xdd\x3c\x30\xfa\x56\xd0\x33\xbd\xf0\x59\x6a\x7d\xf5\xd7\x0f\x57\xef\xaf\xdf\x5d\x7d\x7b\x7d\xf5\xcd\xd5\xeb\xab\x37\x1f\x60\x89\x50\xcd\xd1\x2c\x76\x77\x88\x41\x8c\x71\x3f\x14\x6c\xe6\x9b\x23\x24\x84\x86\x56\xfb\xa0\x1d\x84\x5f\x4c\x01\xdf\x34\x91\xb8\xfe\xac\x64\x13\x57\x14\xd5\x97\x0d\x38\x85\x2d\x53\x13\xaa\x09\xc6\x12\xc9\x87\x64\x89\xe2\x12\x45\x26\xd2\x56\x33\xec\xb1\xcb\x74\x9f\x64\xab\x04\x18\x52\xd6\x7f\x11\x9e\x63\xb9\xd1\xbd\xc4\x27\xb1\x97\xf4\x7a\x7e\x01\x5f\x53\xf2\xa8\x83\x33\x1d\x1e\xcf\x70\x1f\x4d\xed\x3b\xec\xd7\xbc\x82\x0f\x4a\xaa\xe8\x50\x87\x65\xd3\x83\xb2\x05\xbc\x3a\xb2\xaa\x92\x00\xa4\xde\x2d\xf5\x4d\x53\x3b\xec\x97\x91\x64\x99\x69\xca\xb4\x35\xa6\xa9\xe4\xee\x3d\x86\x09\x29\xad\xba\x0a\x78\x79\xa4\xdd\x57\x9c\x68\x63\xe4\x41\xba\x37\xe1\xf9\x02\x0d\xa4\x8f\x92\xfb\x95\x8a\x4c\xf0\xf3\x21\xcd\xa6\x74\x0b\x68\xaf\xb2\x69\x5e\xa3\x94\x13\xbe\x28\x05\xe5\x6b\x87\x71\x9e\x8b\x9f\x22\xed\x91\x7a\xce\xe4\xb3\x70\xe2\x2c\x2d\x1f\xd4\x37\x6d\x7a\x69\x08\x3e\xde\xd2\x3f\xd5\xd7\xca\x7c\x53\x7d\xaf\x5e\xcc\xff\xac\x46\xe7\x36\x3c\xfb\x44\x3a\xe7\x07\x9a\xe7\xe8\x67\x6b\x45\x5e\x52\x78\x69\xad\xc8\xcf\x14\x43\x82\x12\xeb\x7d\x2f\xb1\x5e\x3e\xeb\x3e\xd0\xca\x2f\xe0\xf1\x98\x9f\x98\xfb\x92\xc2\x9e\x83\xe3\xcf\x54\x04\xc8\xab\x43\x25\xb5\xa3\x82\xc7\x30\x4d\xb4\xa2\x64\xd3\x46\x02\x6d\x69\xc3\x2a\x50\x9c\xfd\x3f\x53\xb2\x41\x8f\x9c\xd6\xc1\x27\x1b\xf4\x67\x0a\x5f\x53\x0c\x2b\xfe\x70\xc7\x9f\x15\x8f\x89\x41\x7c\x7b\x14\xcc\xa0\xfb\x86\x8a\x10\x13\xdf\x50\x58\xb4\x65\x02\xc4\x8f\x45\x99\x5a\xc2\x5d\xed\x67\x9d\x70\xbf\xe5\xe3\xff\x48\x79\x7b\x86\x84\x0a\x06\x18\x37\x46\xf5\xae\x04\x10\x06\x18\x49\xf3\xfd\x37\xda\x5d\x2a\xaa\xde\x97\x2e\x54\xd4\xc0\xf0\x67\xfe\x6a\x49\x9f\xa2\xec\xf9\x61\x2e\x8e\x07\x27\xcc\xb4\x19\xe9\x82\xd0\x1e\x42\x5b\xd2\xed\x6e\xf1\xdc\x78\x11\x05\xeb\x0d\x5d\x1a\xae\x61\xe0\x9e\x8a\x2f\x07\x1b\x22\x4e\x58\x8f\xc2\x1d\x11\xe7\xab\x47\x61\x47\x62\x6f\xe1\xc3\x03\xd9\xe5\xf9\x63\x01\xb7\x64\x67\x9a\x6f\xd1\x0e\xc3\x3d\xe9\xee\xf2\xbc\x1b\x58\xcf\xbf\xfa\x5e\x26\x9d\x7b\xc1\xbf\xed\x1a\x01\xf0\x6a\x43\x51\x5c\x4a\x7a\x6c\x2e\xcd\xa2\xca\xc9\xcc\xba\x5e\x96\x30\xd8\xda\x79\x1b\x1f\xa5\xcf\x58\x2f\xb6\x12\xb8\xa7\xb8\xd0\xf4\xfc\x7e\x88\x90\xd6\x36\xab\xe0\x2a\xa2\xd5\xad\x69\xa2\x98\x20\x25\x85\x14\x91\xa2\x50\x2c\x24\xca\xb6\x1b\x5f\x0e\xc6\xe3\xf9\x60\x3c\x76\x07\xe3\xb1\x19\x63\x08\xad\x9d\x77\x27\xfb\x0e\xad\x04\xe2\x7a\xef\x02\xc3\xd4\x2d\xa2\xed\x02\x17\x27\xf7\x73\xb4\x23\x19\x6a\x0e\x00\x42\xfc\x18\x21\x0a\x3b\x58\x80\x71\xbd\x54\x09\x88\x12\x69\x3c\x09\x1b\x62\xc3\x9d\x04\xc1\x1c\x02\x28\x9e\x35\xad\xdb\xae\xfd\x25\xcf\x8d\x9a\xfc\xc5\x20\x04\x6d\xc9\x0d\x2f\x9c\xe7\xc6\x7b\x61\x11\xd4\xfc\xbc\x2d\xe5\x76\x92\x8f\x4e\xe7\xcf\x29\xda\xf1\xfb\xfd\x5a\x5d\x1e\xfe\xe3\x24\x21\x29\xdc\x71\xac\x11\x03\x93\x83\x7a\x20\x12\xb5\xc9\x13\x7a\x52\x97\x84\x4b\xbb\x8b\x87\x43\xb6\xbe\xc2\x11\xe1\x0a\xa1\x80\x3c\xf4\xef\xf0\x85\x7d\xb4\x54\x19\x08\x03\x05\x64\x89\x42\xfc\x8c\xe1\xde\xdd\xe5\xc3\xf1\x56\x33\x12\x9c\x32\x59\x2b\x23\x6b\x94\x0a\xd7\x18\x7a\xdf\xf9\x0b\x0a\x48\xf6\x4c\xa5\x5e\x5e\x21\x2a\xd6\x16\x1e\x6f\xdc\x04\x12\xf7\x0e\x22\x37\x00\xea\x66\xb0\x73\x79\xe1\x3f\xa1\x04\x17\xf8\x7c\x73\x91\x9d\xe3\xe7\x88\xc2\xa6\xd7\xe3\x3c\xd6\x0b\x52\x3b\xb8\xe4\x0a\xfd\x59\x80\x8d\x17\x50\xcf\x50\x63\xc0\x0e\x63\xb7\x99\x03\x42\x38\x44\xb5\x08\x4a\x76\xa8\x2f\xbf\xbc\x39\x48\xd2\xb7\x03\x59\x40\xe6\xf0\x96\xcf\x8e\x35\xd6\x8f\xfc\x38\x75\x6d\x9c\xe7\x47\x0e\x90\x38\x32\x27\x35\xdf\xd9\x1d\x2c\x30\xf0\x13\x33\xff\xdc\x59\x49\x9e\x3c\x2b\xc9\xbc\x64\xe2\x43\x61\x8e\xfb\x80\x52\x50\x67\x02\x42\x6d\xde\xd8\x25\x24\xde\xff\x8a\x5d\xf5\x02\xbb\x4f\x1d\x33\x55\x6a\x2d\xcc\x6f\x31\xfc\x01\xdd\x76\x09\x39\x34\x15\x9f\xbf\x47\x0f\xa5\x47\xe9\x7b\x74\x8b\xb1\xcb\xdf\x34\xcc\x7d\x45\x2f\xbb\x3c\x5f\xa1\x1d\x50\x78\xf0\xa8\xcf\x5b\xac\x6f\xe1\x0b\x48\xf3\x1c\xbd\x68\x24\x17\xdc\x61\x79\xb8\x3f\x92\x17\xde\x1d\xf5\xe1\x35\xe9\x76\x3f\x9a\x26\xaa\xe2\x78\x7e\x14\x81\x2e\x2b\xcb\x34\xf9\x1b\xc3\x3b\x52\xe2\x8e\x13\xde\xe7\x9a\x0a\x3f\x66\x7e\x42\x6e\x45\xea\x0e\xfe\x74\x53\xbd\xdc\x89\xbc\x7f\x68\x3b\x57\xdb\x8b\xbd\x25\xf5\x09\x59\xb8\x4b\x15\xcb\x34\xcf\xff\x8c\x5e\x3c\x01\xd9\x17\x1c\xa4\x7f\xf2\x16\x3e\xd9\x09\x24\xfb\xa7\x5e\x62\xfd\x20\x10\x2d\xda\x75\xc9\x83\x48\x36\x28\x90\x2f\x2c\xe0\xf1\x80\xe8\x74\x59\x51\xc7\xcd\x8d\xd3\xf9\x60\x25\x2b\xbd\x27\xc2\x9b\x6f\xa1\xcc\xba\x5f\x53\x48\x56\xee\x3b\x8e\xce\x8c\x83\x16\x0d\x19\x59\x53\x5c\x89\xc3\x8f\xfc\x84\xf0\xee\xde\xc1\x82\x63\x5e\xf8\x06\x2d\xd4\x0b\xd1\xff\x27\xca\x3b\x91\x38\xb6\xa8\x7f\xe8\xbe\x86\x85\xc0\xd0\x69\x9e\xbf\x28\xe5\xb1\x84\xac\xa8\xd8\xbb\xf2\xc5\x8a\xd6\x6b\xb5\x5c\x36\x07\x97\x2e\xcd\x62\x42\x1a\xb1\x37\x7a\x43\x2d\x92\x52\xcf\x81\x81\xbf\x27\xfb\x45\xb8\x4b\x64\xb3\xe2\x2b\x3e\xf8\x2c\xb2\xd5\x35\x1a\x7b\xb1\x57\x46\x2e\xb0\xac\x5e\x60\x31\xa4\x36\xb2\xe1\x27\xbe\xc1\xaf\xe7\x1f\xdd\x77\x7c\x05\x5e\xcb\xf5\xbd\xa3\xf0\x4e\x87\xf9\x69\x75\xf4\x6a\xe4\xee\xb6\x47\xae\x63\x8f\x4a\xdf\xd6\x91\xeb\x38\x23\xa1\xf7\x74\x9c\x31\xec\x29\x18\x4b\x9f\x5f\x9d\x2c\x57\x3a\xcd\x3b\x03\xfe\x93\xff\x1e\xba\xce\xa0\x34\x56\x2d\x63\xa1\xea\x64\x0f\xce\xc8\x71\x9d\x91\x23\x73\x69\x37\xb3\x85\xd7\x72\x5a\x1e\xf8\x62\xe8\xf4\x10\xb5\xcc\x96\x2a\x8a\xaa\x3b\xd1\x91\x54\x6b\x19\xc5\x85\x89\xb4\xf6\x63\x14\x11\x56\xcf\xdc\x33\x98\xb9\x33\xe9\xc4\x5f\xa6\xee\x75\xf6\x73\xf7\x72\xb2\xe1\xc0\x3a\xaa\xae\x30\xd2\xc6\xd3\x13\x7b\x4f\x61\x34\x52\xfa\xa2\xd9\x50\xea\x8b\x86\x63\xa9\x30\x9a\xa8\x98\xc8\x8e\xce\xdb\xeb\x9c\x69\x8d\xd1\x58\x6a\x8c\xa4\x52\x67\x5d\x9a\x38\xef\xa4\x22\xe6\x41\x87\x56\xbe\x25\x35\x4f\x78\xb8\x21\x0a\xa7\x09\x09\x4b\xd7\x80\x6b\x12\x37\xf4\x29\xf7\x24\xae\xf4\x29\x9f\x48\x2c\x32\x5a\xc0\x55\x53\x67\xf3\x96\xc4\xd6\xab\x78\x15\xc6\x21\x7b\x80\xf7\xe4\x1a\x5e\x90\x4f\x56\x70\x93\xc1\x73\xf2\x49\x44\xce\xfc\x48\x3e\x49\xb6\x1d\x5e\x93\x4f\x56\x94\xdc\xc2\x3b\xf2\xc9\xfa\xe6\xcd\x00\x3e\x90\x70\x6e\x5c\xdf\x18\x6e\x49\xa9\x7e\x2b\xde\x44\xfc\x4d\x8d\x1e\xfd\x49\xbc\x4d\xd4\x5b\x45\xbd\x9e\xe8\xc5\xee\xbc\x41\xfb\xd9\xff\x21\x50\xce\x0b\x29\x5f\xd1\xb3\x67\x69\x9f\xf5\x1d\xd8\x12\xe4\x5c\x5c\x64\xb8\xef\x40\x44\xb6\x97\x97\x0e\x2c\xc8\x60\x28\xf8\xe0\xe7\x22\xa0\xe7\x08\xf7\xc5\xc3\x74\x8a\x5d\x1b\x56\xc4\xe6\xcb\x7c\x61\xe7\xb9\xd0\xb8\x9b\xa6\x73\x4a\x2f\xec\xb9\xe3\xda\x02\xb5\x23\x4a\x5e\x20\x8a\xb1\x88\x44\x49\x09\x21\x6f\xe7\x28\x24\x22\x08\xa4\xe3\xda\x10\x93\x2d\x76\x51\x4c\x3e\xa2\xd7\x88\xe2\xd3\x77\x18\xe8\x33\x94\x10\xd1\x01\xa7\xec\x1c\x4e\xf1\xf5\xfb\x90\x3c\x23\x03\x0c\x88\xf6\x48\xdc\x8b\x2e\x89\x33\x5f\x9c\x26\xee\xe2\x19\x2f\xe7\xf4\x23\x8c\x9f\x25\x97\x64\xc0\xcb\xf6\x7a\x90\x9c\xf2\xb2\xa2\xdc\x96\x77\xa6\x7a\x51\x15\x51\x48\x10\x7d\x96\xf4\x1d\x2c\x6a\x33\x5e\x92\x44\xd8\xe5\xa3\x12\x6f\xa2\xfa\x27\x62\x63\x7c\xce\x2e\xc9\xd9\x79\xe0\xad\x7a\x3d\x9f\x70\xe2\x32\x84\xf0\x94\x0c\xc6\x13\x60\x7d\x72\x86\xcf\xf9\x34\x63\x12\x5f\x5c\xb0\x3c\x84\xac\x47\xd8\x79\x76\x69\xd7\xcb\xc7\x10\xcb\xf2\x99\x28\xaf\x85\x46\x5e\xbf\xbf\xf2\x73\xe2\x0c\xce\x9e\x6d\x20\x28\xca\x9d\xfa\x66\x6f\xa7\xca\xad\x49\xc4\xd6\x84\x7c\x6b\x02\x92\xf0\xad\xc9\x48\xd8\x9f\xc2\x96\xa4\x62\xb7\xa8\xb7\xed\xf7\x7d\x58\x10\x67\x30\x35\x23\x99\x92\xed\xf2\x92\x4c\xc5\x78\x16\x7c\x04\xcf\x16\x3d\x91\xc9\x7c\xdb\xef\xab\xc1\xc8\xc1\x2f\x4c\xde\x72\x5f\xec\xfa\xe2\xf2\x92\xf4\xb3\x6a\x22\xb1\xa8\x18\xef\x57\x0c\x57\xc8\x16\xe9\x67\x16\xc4\xe9\x07\x65\x2a\xa2\x05\x21\x24\x29\x7d\x46\x45\x90\xd1\x68\xde\x7f\xeb\xbe\x3d\x89\x7b\x44\xad\xea\xa2\x4f\x02\xe5\xbd\x81\x22\x11\x05\x14\x3f\x8b\xc5\x92\x2f\xfa\x0c\x57\x0b\xf1\x75\x23\x1d\xfe\xd0\xbf\xb8\x18\x8c\x72\xea\x0d\xfc\x8b\x0b\x67\x92\x53\xcf\xf1\x2f\x2e\xce\x72\xea\xd9\x7e\x55\xe7\x55\x55\xc7\xe3\x6b\x4f\x6b\xdf\x5e\xee\x7f\x03\x7a\x79\x79\x66\x0e\xc6\xe3\x5a\xa1\x9f\x8f\x16\xe2\x0f\xce\x44\x3f\x0d\x46\x7b\x15\xff\x5c\x1b\x2d\xbf\x6c\xe3\x01\x9c\xd5\x26\xf3\xd5\xde\xe7\xc1\x10\x46\xb5\xcf\xff\xd0\x9b\xbe\x46\xd4\xbb\xf5\x9f\x56\x0c\x29\xad\x50\x59\xf9\xbb\xa6\xc1\x72\x48\xee\x50\x2f\xc5\x5a\x2e\x44\xbd\x6f\x7d\x45\xa0\x5f\xa1\x1b\xc5\xbf\x10\xea\x7d\xf0\xad\xeb\x1b\x08\x48\xd8\xa3\xde\x4f\x3e\x64\xa5\x47\x6f\x00\x41\xaf\x32\xfd\x8c\xe7\x99\x9b\x59\x4a\x10\x89\x6a\xbd\xfe\x50\xc5\xa1\x85\x44\x9b\x63\x96\x3d\x07\x2d\x3d\x6b\xd1\x65\x56\xf6\xbe\x25\x81\xec\x3d\x22\x31\xea\x85\x1c\x84\xdb\xe7\x8b\x0b\x76\xbe\xe8\xf5\x70\xe6\x6d\x7b\x0b\x9f\x44\x5e\x32\x5f\xb8\xac\xbf\xe8\x3b\x7e\xc1\x5b\xe6\xdc\xab\xe4\xb4\xa2\x3a\x3e\xbf\x16\x74\x7d\x9e\x37\xdf\x72\xa2\xe0\x5a\x12\xf6\x79\x1e\xb5\xa8\x5d\x45\x01\x90\xc5\x4a\x92\xfe\x5a\xe4\xae\x85\x06\x31\xde\x25\xd7\x82\xb2\x2c\x70\x25\x84\xfd\x1e\xfe\x42\xd0\x75\x9b\x69\x8a\xca\xae\x7f\x2d\xdb\x7b\x8f\xee\x84\x8d\x0a\xf6\x6e\x7d\xf2\x9e\x6f\xf0\x9f\xc8\x12\xbd\xc7\xf0\x07\x62\x9f\xff\x49\x0b\x4e\xff\x70\x8e\xd1\xf7\xe4\x4f\xde\x1f\x7a\x3d\x1f\x87\x71\xe7\x3a\xcf\x33\x74\x0d\xdf\xc3\x7b\xef\x7b\x1f\x9f\x24\x79\x8e\xfe\xd2\x20\x8e\xaf\x65\x1c\xd1\xbf\x0a\xd2\xe7\x1e\xc9\x91\x0f\x30\x86\x7f\x26\xf7\xde\xad\x2f\xac\x2a\x63\x76\x76\xf2\x57\xfd\x84\x6c\x18\x38\xa3\xe9\xe8\x6c\x38\x19\x9d\x61\xa8\xde\x3b\xd5\xfb\x19\x86\xee\x5f\xad\x5b\x5d\x01\x9b\x66\xf5\xcb\xc1\x79\xbe\x45\xbc\x6d\x41\x1b\xf2\x77\x7b\x02\xda\x7f\xae\x65\x64\xa7\xc0\xf8\x9d\xe5\x97\x45\xf2\xfb\xc2\x50\xe1\x4b\x2b\x08\x96\x4a\x92\x54\xcd\x15\xd6\x4b\xdb\xdc\x1e\x2d\x47\x15\x8a\x6c\xa9\x3e\xbd\x21\x3b\xd9\x78\xe9\x3f\x6f\xcb\x18\x81\xde\xb7\x3e\x61\x05\xdc\x1f\xc8\xf7\x54\xd3\xf7\x60\x68\x94\x6e\x60\x58\x20\xca\x3b\xab\xde\x68\x2a\xc5\xfb\xd6\x87\x90\xac\x94\x35\x59\xc8\x91\x60\x78\x19\x97\x27\xfe\x40\x73\x2e\x2e\x24\x4a\x6b\x79\x7d\xe6\x71\x3f\x74\x37\x9c\xb9\x3a\xac\x57\x31\xd1\x62\xc8\x1f\x7c\x22\x13\x02\x7a\x3f\xf9\x24\x2c\xa7\x91\x16\x10\x9a\x26\xfa\x07\xba\xde\x13\x4f\x5d\x47\x06\x86\x7f\xa0\xfb\x9a\x84\xeb\xfa\xa6\x7c\x75\xa4\x64\x5d\xee\x75\x9d\x18\x18\x83\xde\xed\xdb\x83\xdd\x2e\x8f\xfa\x77\x72\xd1\x1c\xa0\xd8\xb3\x7d\xbd\x81\x22\x94\xec\xfe\x86\x1f\xa9\x23\xca\xbe\x8a\x99\x33\x39\x74\x54\x25\xaa\xe8\xa0\xae\x6a\x10\xc9\x88\x14\x0a\x61\x0a\x11\x88\x94\x46\x1c\x35\x70\x30\x5d\xf6\xfe\x7b\x9a\xec\xd4\x9b\xd4\x63\x1b\x0e\xda\xe6\xf1\x35\x52\x6d\x8d\xf6\xdb\xc2\xe5\x10\x7e\x73\xcd\xcb\xcb\x4b\x5b\xd4\x16\x81\x3e\xda\xab\x7f\x73\xb4\xba\x42\x2d\x65\xfd\xc9\xe8\xc9\xfa\x67\x07\xf5\x25\xe6\x82\xf6\xfb\xfd\x43\xb9\x71\xf0\x4a\x48\xc9\x8f\x5c\xeb\xb6\x72\xfb\x3b\x5c\x2b\xc7\xb7\xe2\x65\x5d\x6f\xed\x71\x2e\x4c\x37\xfe\xdb\x6b\xed\x6f\x58\xad\x12\x5f\xb0\x9f\x8f\x76\xf5\xdb\x6b\x1d\x6e\xd2\x5e\xb5\xaf\x8e\x57\x6b\xec\x4d\xad\x1a\xdf\x94\x3f\x1f\x54\x2b\xf0\xc9\x03\xda\x07\x7b\xf0\x80\x9a\xe0\x2a\x93\x37\x56\xd9\x26\x89\x84\x21\x75\x86\x85\x5c\x43\x5a\x32\x2c\xe4\xbe\x9e\x47\xe3\x18\x07\xaa\x78\x4c\xc5\x37\xd6\x39\x46\xc1\x2b\xd6\x78\x42\xc9\x0d\x0a\x3e\x50\x70\x7f\x25\xdf\x77\xe0\x32\x50\x1a\xd3\x34\xec\x03\x75\x0e\x64\x61\x65\x17\x90\x44\x1b\x6a\x09\x55\x20\x9f\x1b\x7f\xb5\x93\xf3\xdc\x92\x2e\xea\x36\x78\xb1\x3c\xef\x56\xbc\x18\x67\x0b\xb7\x9c\x9e\x80\x15\x31\x5e\x95\x06\x72\x35\x5b\x39\xf1\xa8\x84\xea\xf2\xcd\xab\xd2\xe6\x0a\x6a\xf6\x57\x20\x0e\x53\xf5\x5a\x3f\xab\x8d\xaf\xfd\x98\x8c\xa4\x54\xbe\x96\xc4\xfa\x7c\x71\x31\x3b\xc7\x28\x25\xb1\xb7\xf2\x16\xbd\x9e\xef\xe3\x39\x0a\x51\x2d\xf6\x17\x04\x62\x93\x9a\xef\x32\xa1\x57\x72\x23\x91\xe8\xa3\xb2\xe7\x7e\xfe\xd5\xf7\xee\x16\xa4\x2d\x9a\x1b\x81\x30\x44\x73\x03\xe0\x3b\xed\x66\xf5\xd8\xe8\xb5\xfd\x11\xeb\x7f\xc4\x9e\xdb\xd6\x26\xbd\x65\x4c\xc3\x27\xd3\x66\xa9\xb0\xb5\x86\x96\xf4\x55\x96\xd6\x73\xc3\x70\x29\x18\xf8\xda\x00\xd4\xeb\xa5\xbd\x18\x97\x92\x20\x34\x9c\xe0\xd2\x7a\x79\xf0\x54\x12\xbf\xcf\x1a\xe6\xe6\x39\xb5\xae\x59\xab\xa7\xbb\x48\x39\xbf\xde\x04\x2c\xbc\x89\x68\x27\xa5\x0b\x1a\xee\x68\x0a\x1d\xe1\x5b\xd7\x49\xe9\x3f\xb6\x61\x5a\x0f\x89\xd9\xa1\x4d\xcb\xd6\xa7\xa2\x2e\x35\x82\x76\x4d\x6c\x7d\x44\x55\xf4\xc5\xe9\x13\xb1\xb0\x54\xa0\x25\x4b\x2e\x5c\x9e\x23\xfd\x48\xc2\xf9\x63\xe1\xa6\xe5\x87\xc7\x02\x9f\x18\xd7\x06\x21\xb4\x8a\xb5\x94\xe7\x42\xf0\xc8\xf2\x3c\x40\x0c\xa8\x4e\x31\x90\x88\x68\x31\xda\x49\x7a\xea\x3a\x83\x69\x23\xa4\x46\xed\x2a\x8a\x99\xb5\x84\x03\x94\x91\x1f\x9d\xc1\x19\x6e\xa4\x75\x71\x0e\xd3\xee\x37\x9d\xab\xef\x3f\xd6\x7d\xab\xe5\x8d\xb5\xb1\x9a\x04\x24\x6d\x41\x4f\xc2\xf3\xd6\x60\x29\xad\x2e\xd8\x89\x69\x86\xf2\x67\x32\x0f\xdd\x18\x23\x75\xe0\x2c\xa3\x27\x88\x67\x15\x8d\x3f\x3d\x74\xd2\x2e\xe3\x33\x39\x87\x99\xfc\xcb\x29\x4c\x8f\xa6\xdc\x13\x26\xba\xcd\xe8\xa5\x43\x2c\x88\x5e\x55\xea\x35\x65\x77\xc9\xb2\xdd\xd1\xa0\x5b\xf9\x19\x50\x2f\xf6\xf3\x9c\xee\xe7\x8e\x0a\x3d\x7e\x78\xfd\x46\xde\x36\x29\x8f\x13\xdb\xa6\x93\xf2\x39\xc3\x86\xd5\xba\x3e\x3d\xd2\x5a\x5a\x04\xd9\x19\x63\x74\xea\xfd\xf8\xe3\xdf\xfe\xf0\xac\x37\xb7\x10\xce\xbd\x1f\xfd\xc7\xc2\x3f\xbd\x05\xe3\xc7\x1f\xff\x60\x72\x4a\x11\x31\x19\xa0\x5e\xe4\x8b\x83\x47\x9a\x2d\x82\x4d\xab\x09\x87\xcc\xd7\x87\x75\x20\x0a\x98\x8d\xdd\x99\xf0\x28\x6b\xe6\xfe\x6f\x0c\x42\x34\xff\x0e\xb4\xea\xb1\x6e\x98\x46\xd1\x19\x2e\x30\x50\x34\xc6\xc8\xa8\xde\x1b\x55\x07\x63\x77\x0c\x67\xae\x9c\xe7\xa0\xd9\xc5\x81\x04\xb0\x3e\x69\x67\x80\xd1\x48\x75\xdd\x63\xd6\xcb\x67\x5d\x7e\x1a\xc7\x18\x79\xbe\x25\x8c\xd7\x04\xf4\x2c\xc7\x74\xd4\x9e\x2d\xd5\x2c\x46\x83\xd8\x91\x4b\xe0\xd8\x63\xd7\xb1\xc7\x4a\xc6\xaa\x23\x73\x38\xcd\xdc\xfd\x4f\x2e\x85\xb0\x7b\xa3\x68\x56\x2d\x02\x7f\xb3\x37\xfd\x99\x3b\x13\xcd\x8e\x7e\xe3\xf4\x07\x47\xa6\x2f\x0d\xe7\x9a\xf3\x3f\x6e\x4c\xf7\x7b\x16\x60\xfc\x1b\x47\x2a\x7c\x44\x8c\xd2\x52\xce\x80\x90\x74\xed\x93\xb8\x13\xc6\x9e\x6f\x9a\x92\x0d\x73\xb0\x17\xfb\x75\x46\x3c\x24\x5d\xa7\xc0\x50\x4d\x31\xac\x4f\xe7\x09\xa3\xbb\xc3\x19\x7d\xc6\x04\x49\x6f\x4e\x2c\xe1\x5e\x39\x57\xbe\x3b\x62\xbe\x93\xdf\x38\x5f\x91\xfe\xa8\x6b\x9f\x88\x29\x1b\xcd\x59\x5a\xfc\x5d\x43\x14\xb1\x3f\xcf\xb8\x39\xcf\xff\xae\x53\x94\x23\x3a\x36\xcf\xe9\x6f\x9c\xa7\x4e\x53\xa1\x0f\x9e\xb4\x5b\xe4\x27\xaf\x7e\x32\xeb\xf3\x69\xb1\x6c\xfc\x77\x9c\xc3\xb3\x2f\x18\xef\x60\x2c\xc7\xab\x7d\x8f\xcb\xd8\xb0\xfb\x59\xc9\x85\x4a\x40\x00\xf9\x51\x95\x96\xfc\xa4\x0a\x9f\xd9\x15\x9e\x1a\x0d\x1d\x70\x2d\x97\x1b\x15\xd1\x34\xcb\x79\xb6\x05\x57\x4a\x75\x06\x79\x19\x38\xf5\xae\x0d\x2f\xf2\x35\x98\x8b\xe0\x49\x92\x7e\x5c\x1e\x1a\x27\xaf\xc9\xf2\x88\xed\xf6\xae\xb2\xdd\x5e\xab\x94\xf4\x5b\xb4\x91\xf6\xdb\x22\xb7\x3c\x43\x6b\x58\xb6\xdb\xfc\x0a\x5b\x6b\x4d\xb8\xdd\xe6\xf9\x1d\x91\x6a\x00\xd3\x4c\xd0\x2d\x16\xa1\xfc\x22\xe9\xbb\x89\x52\x12\xa0\x4d\xe9\x22\x7f\x9e\x5e\x3e\x9c\x3f\xf4\x7a\x38\x43\x11\x3c\xc0\x6e\xbe\x46\x1b\x91\xdf\x1e\xbb\xfc\xaf\x4a\xdb\x27\xf4\xf9\x44\x29\xd3\x36\x9c\x08\x17\x6d\x9d\x77\xd1\x82\xac\x9a\xc6\xe2\xf5\xb6\x42\xb4\x82\x35\x78\x0b\x65\xbb\xf4\xe0\xf3\xb3\xe5\x2e\xb4\x0d\xb9\x56\x9d\xab\xc1\x90\x07\x88\xd4\x81\x39\xd0\x92\xa9\x24\xe7\x23\x77\x30\xd2\x7e\x8e\x32\x2f\x60\x2d\xe1\xb9\xd0\x68\x89\x83\x35\xfb\x2d\x17\x41\x85\xd0\x8d\x89\xe7\x5b\xca\xe0\x96\x03\xb8\x6e\x6c\x9a\xce\xa9\xe7\x94\x2f\x91\x03\x7d\x1b\x5f\xd8\xb5\xbb\x81\x42\x11\x54\x5c\x5c\xa0\x18\xd7\x0e\xd0\x13\x86\xbb\xe1\x3c\x56\xb6\xa1\xe2\xc2\x54\x76\xa1\x79\x6e\xbb\x5f\x74\x8b\x84\x82\xb1\xbc\x45\xa3\xe3\xe4\x85\x26\x1c\xca\x51\xc9\x8c\xbf\x2e\x45\xa3\x19\xae\x51\x09\xa3\x99\x3b\x12\x38\xec\x30\xd3\x7a\x6b\x90\x83\xb1\xca\xd9\x35\x2d\xa9\xac\x32\x72\x79\x83\xdc\x1a\x8f\xb1\x14\xd2\x95\x43\x68\x36\x2e\xe5\x79\x2a\x2d\x85\xfc\x11\x12\x5b\x3d\x7d\x24\xac\xa8\x47\x7f\x91\xf6\xfe\xaa\x0a\x30\xf5\xf4\x51\x9b\x53\x5e\x87\xbd\x9e\x3a\x50\x5d\x9a\xe7\xe9\x25\xd1\x99\xfd\xe7\x48\xf7\xa3\xae\x4a\x8c\x1c\x8c\xdd\x18\xd9\x20\xe3\x0a\x11\xc2\xe6\xa9\x5b\x99\x1e\xb0\x39\xf5\x52\xdf\xf5\x52\xe0\x7f\x39\x63\x5f\xe5\xc0\x0c\xad\xe7\x7a\x67\x48\x28\xb9\x54\x48\xcb\xf8\x44\x69\x2d\x5b\x66\x5a\x4b\x21\x5a\x0b\x61\xcb\x29\x86\xf1\xd8\x1d\x8f\x61\x3c\x75\xc7\xd3\x8a\x4c\x1c\xfd\x26\xf2\x49\x92\xbd\x9e\x2f\x3c\xab\xea\x27\x52\x38\x8c\xea\x9c\xed\x47\x4e\x67\xd3\x62\xbb\x16\x9d\x48\x65\xaf\x51\x06\xae\x75\x3e\x10\x0c\x97\x1e\x9c\x43\x39\x23\x75\x86\xb4\xb3\xe9\x68\xf8\xdb\xe7\xa1\x34\xbb\xa1\x06\xe3\x09\x9f\x59\xc3\xc3\x8c\x74\xbb\x89\xbe\x8f\xb5\x0f\x6d\x77\x32\xa8\x66\x9d\xd4\x67\xdd\x6a\x72\x2e\x49\xfe\x40\x93\xfa\xc9\xd1\xab\x59\xfa\x1a\xcb\xb5\xc9\x48\x58\xa5\x6d\x87\x2d\xc9\xfa\x8e\x8c\xa0\x7d\x80\xd0\x45\xbc\x56\xed\x60\x8b\xb6\x10\xa3\xa6\x58\x10\xc3\xf6\xc2\x16\x85\xb2\xde\x16\x9f\x6f\x2f\x89\x7d\xbe\xed\xf7\x71\xb8\x42\x5b\xc1\x28\x9a\x26\xf3\xb6\x7e\xdd\xf1\x79\xcb\xc7\x23\x9f\xfb\xce\xfe\xa6\x68\x29\x8f\x0a\xc7\xaf\x20\x69\x05\x2e\x7e\x2b\x99\xea\x1c\x21\x53\xd7\xc1\xa6\x49\xa3\x1e\x31\xcb\xff\x1d\x84\xc1\xe8\xb7\x10\xa8\x03\xc5\x46\xbc\x17\x03\x3c\xc8\xf0\x50\x2a\xb6\x28\x2a\x13\x9f\x76\x25\x54\x2a\xcd\x6f\x28\xae\x47\x76\x6f\x50\x02\xc7\x62\x06\xb6\xfa\x1d\x89\xe8\x08\x6d\x31\x1d\xf6\xc8\x02\x8c\x4a\xbf\x24\x14\x37\x56\x86\x36\x42\xe5\x6a\xbc\xc8\x20\x96\xeb\x25\xf1\xdf\x5e\xb0\x90\xd1\x6f\x22\x6f\x87\x47\xb6\xb3\xee\xb2\xd9\xd8\xd6\x56\x47\x87\x2f\x20\x65\x1b\xfb\x2d\x94\x3e\xcd\x2d\x1f\xba\xce\xb0\xb6\xe5\xbf\x89\x76\x7d\x7a\x12\x6d\xe3\xff\xf7\x0c\xdd\xf9\xcc\xd0\xbf\x84\x8c\xd5\x43\x1f\x0d\xf7\x52\xca\x3b\x3a\x35\x8d\x23\xe8\x58\xcf\x97\xea\xda\xda\xfc\x0e\x33\x5a\x9a\xa6\x8a\xc2\x9a\x36\xce\xaa\x34\xb5\x6a\x13\x93\x24\xa8\xe6\x72\x20\x33\xb5\x96\x31\x9f\x19\xa9\x39\x45\xa4\x2e\x83\x32\xc7\x75\x86\x9b\x31\x72\xb5\x32\xaf\x52\xf9\x6e\x89\x4c\xe4\x08\x11\x07\x87\xfc\x61\x41\x12\x14\xf5\xb7\x18\x56\xca\x0c\x65\x81\x61\x43\xec\xf3\xcd\xc5\xe2\x7c\xd3\xeb\xe1\x95\xb7\xf1\x89\x0e\xbc\x43\x88\xbc\x15\x65\x2c\xb3\xde\x06\xbb\x42\x05\xb6\xed\x6d\x4a\x07\xbd\x95\xa6\x09\xb5\x45\x95\xa2\x0d\x45\xcc\x8b\x86\xbd\xd3\xd0\x1d\xc9\x1d\xf9\x4d\xf4\xdf\x00\xa3\x63\xe7\x29\x4b\xd6\x7b\xa7\xe9\x98\xef\xcc\xef\x80\x72\x63\xfb\x37\x8c\x72\x9f\xfb\x91\x2e\xf7\x62\x88\x29\xe3\xe7\xc6\x81\x01\x0c\xfd\x06\x6d\x5a\x3f\x33\x81\x28\x88\x34\x3f\x79\x60\x36\xa7\xbe\xab\xb0\x7a\x47\x30\xe8\x31\x57\x9f\x1a\xa1\x90\x28\xa7\x49\xed\xfe\xd8\xfc\x0d\x2a\xa6\x43\x13\x63\xa9\x5c\x5f\xee\x7e\xe6\x02\x67\xbc\x27\xb4\x92\x3e\xf6\x48\x8d\x07\x57\xc6\x77\xa2\xf0\xe0\xb3\x74\xf0\xd7\x01\xa3\x06\x3c\xc6\xc9\xfd\xa1\x09\x86\x50\xb3\xf3\x02\x42\x42\xf8\x21\x5c\x8b\x00\xe1\xb8\x16\xd2\xd5\x19\x1f\x17\x1c\x49\x4c\x34\xa9\x1f\x23\xc4\x1b\xab\xb9\x71\xb3\xe4\xd5\xfb\xb7\xf2\xe0\x77\x09\x49\x71\x39\x9c\xda\x07\x37\x95\x60\x7e\xe2\x0e\x26\xb5\x83\xf2\x9b\x50\xb6\x33\xd3\x02\xd1\x06\x1b\x7f\x2c\x2f\xae\x0a\x32\xab\x67\x2f\x2c\x24\x2c\x96\xfc\xd3\xfb\xb7\x6f\x10\xce\x73\xa7\x4b\xc8\xc1\x44\xf8\x47\xe5\x18\x52\x1f\xfc\x61\xe3\x82\x38\xa9\xcf\x94\xd7\x74\x0f\x88\xfa\xb4\x8c\x92\x1f\x57\x11\xd3\x8d\x78\xbb\xbe\x11\x06\x1a\x1a\x89\xe6\x79\x98\xbd\x0c\xe3\x90\x51\xc4\xf0\xbc\xb1\xa2\x08\xab\xac\x2a\xb8\x96\x3d\x4e\x5b\x55\xee\x9f\xaa\x71\xfb\x36\xea\x40\xa8\xef\x74\xb0\x0c\x4e\xc4\xef\x4d\xfe\x44\xb8\x25\xa5\x79\x2e\x94\x5a\x28\x05\x06\x14\x0d\xa6\x18\xd7\x23\xb2\x4e\xdd\xc1\xb4\x52\xd2\x8c\x27\x6d\xdd\x35\x9b\xe5\x4c\x4c\x15\x04\x21\x26\x4c\x9f\xc1\x93\xc6\xbe\xf4\x0c\xa3\x4b\x8c\x57\xf1\x2e\x88\xc2\xa5\x78\x6d\x98\xa6\x88\xd2\x8e\xd8\x91\xb0\xde\x72\x81\xe3\x9a\x7b\xce\x49\x15\xc8\x9a\xce\xd3\xda\x07\xb7\xd9\xb2\x58\x4a\x1d\xb9\xdd\x19\x4f\x3f\x2b\x34\xd5\xf6\xe3\x06\x3c\xde\x84\xf1\xd2\xa5\xc8\x99\xa8\x10\xe1\x13\xd7\xa9\x9f\xe7\x2f\x41\x98\x63\x47\x9e\xe7\xe9\xac\x2e\xdf\xbf\x0b\xb2\x57\x8a\x54\x13\x22\xfe\x43\x9b\x75\x21\x96\xec\x84\x7c\x87\x84\x0a\x07\x85\x10\x6b\x1d\xcb\x1e\xd5\x5f\x11\x6a\xdd\x3a\xa1\x96\xe7\x5d\x56\xcb\x7e\xec\xc8\x40\x2d\x48\xe7\xc1\x94\xdd\x54\xd1\x64\xea\x96\xfe\x22\x24\x99\x70\xcb\x93\x61\x91\x44\xee\xf9\x66\xc5\x1a\x1d\xdf\xd5\x44\x7c\x57\x13\xf1\xea\x04\xd5\xd2\x1e\x4b\xc3\x5b\xb1\x6a\xb3\xf6\x1d\x90\xe6\xae\x69\xcb\x52\x40\x4c\x4e\xff\xf6\x63\xf6\xac\x24\x81\x91\xf7\xb7\x0e\xf2\x9f\xe1\xd3\x13\x19\x9d\x5e\x1f\xe5\xc1\x0c\x9b\x26\x43\xa9\x0e\x5a\xff\xb9\x68\xc4\x55\x36\x05\x64\x18\x3d\xe9\xab\xba\x16\x51\x9c\x63\xec\x39\xfe\x7e\x5a\x05\xc3\x28\x14\xf9\x2a\xf3\xb8\x69\x1d\xd6\x61\xa2\xfd\xf6\x90\x8a\xe5\x09\x18\xef\x69\x73\x06\x18\x19\xaf\x83\x8d\x01\x2d\x38\xe9\x10\x18\xd1\x3d\xae\x4e\x73\x68\x76\x4d\x9e\x66\xd7\x44\xae\x7b\xb6\x7a\xb5\x7c\x30\xb7\x94\x5d\xc5\x2c\x7d\x50\x68\x0d\xc4\x20\x30\x54\x12\x2d\xce\xb3\x59\xbb\xc3\x7c\xc9\x15\xb9\x60\x2d\xe9\x6a\xaf\xba\x44\xa0\xb6\xab\x82\x67\x09\x0d\x80\x38\x14\x63\xd7\x19\x8c\x81\x03\xb5\x19\x0c\x06\xee\x40\x2e\xde\x71\x85\x8e\xb8\x37\x93\x61\x19\xd8\x29\xfb\x47\xca\x74\x44\xaf\x60\x91\x64\x77\x35\x7e\xa9\x8b\x42\xd3\x9c\x3a\x36\xa9\xfb\x18\x87\xe8\x8d\x80\xbd\xd6\xeb\xe7\xff\x72\xfd\xfd\xf3\x6f\xbe\xbb\xc2\xc2\xb3\xc6\x39\xb5\xb1\x0c\x49\xc9\xc7\xcc\xee\x0c\x78\x14\xed\xb5\xd0\x04\x32\xd8\xd5\x85\x23\x13\xd2\x5f\xce\x46\x33\x7b\x32\x98\x8c\xad\xc9\x60\x34\x18\x3b\xe3\xc9\xbc\x4c\x99\x4f\x71\x4f\x3c\x7f\xf3\x66\xe0\xa6\x88\xf6\x9d\x5e\xcc\xff\xc7\xcf\x62\x44\x7b\x0e\x6e\xa8\xb3\x26\x43\x77\x22\x40\xc8\xe4\x38\xb2\xd7\xee\xd2\x41\x16\xc6\xcd\x99\xa6\xa6\xe9\x9c\xa6\xc8\xc6\x97\xf5\x09\xf0\x62\x6e\x8d\x4b\xac\x85\x1b\x2f\xb1\x0d\xe9\x31\x6c\x9a\x76\x97\xb0\x39\xbb\xb0\xe7\x7d\x8a\xfa\x0c\x57\x59\xff\x59\xaf\x5c\x67\xc4\x9e\x31\x3e\x6a\x97\xed\x11\x0f\x93\x27\x89\x07\x39\x62\x16\xb4\x8f\x58\x88\x38\x6a\x43\xe6\xe5\xda\xe8\xb0\x32\x21\xff\x9c\x56\x83\x43\x4e\x8f\xe2\x53\xe4\xf4\x29\xc6\xa7\x83\xfd\x51\x8d\x3e\x73\x8a\xc6\x25\xf1\xa4\x3a\x5f\xdc\xb4\xd3\x80\xa9\xec\xf9\x99\xe8\x77\x93\xdc\x23\x39\xa5\x9b\x0c\x51\x0c\xce\xe9\xb0\xb9\x8f\x63\x77\x22\x70\xf1\xe4\x08\x2e\xae\x11\x6d\xba\xdf\xe8\xe7\x56\x93\x29\x44\x2f\x2f\x2f\x89\x8d\xe7\x43\xa7\x5f\x3b\xc2\xd5\xf1\xea\x59\x63\x35\xaa\x6f\xde\xfe\x69\x70\x85\xdd\xe1\xc1\x22\xb4\x62\xe8\xc6\xd6\xd0\x4f\x9b\xfd\xf1\x1c\x39\xf7\x6a\x1d\x7a\x29\x6a\x5f\xf0\xe3\x78\x54\x2e\xb8\x53\x97\x66\xa0\xb4\x5b\xf6\xbf\x76\xaa\x13\x20\x7e\x2a\x62\x51\xad\xa8\xe3\x4e\x84\xc9\xc3\xe4\xec\x4b\x57\x74\x25\x5c\x2d\x5d\x8a\x26\x83\xba\x30\x78\x32\x70\x27\x12\xc2\x1c\x41\x38\xf5\x13\x7b\x93\xed\x35\x7a\xf7\xb0\x49\xd8\x91\xc0\x06\x10\x13\x1b\x42\x62\x43\xd2\x9a\xa1\xe8\x3c\xbc\x48\xce\x71\x70\x21\x42\x0a\x56\x20\x39\xec\xf5\x7c\x8c\xe7\x28\x26\xf1\x33\xc4\x48\x70\x4a\x31\xbf\x62\x10\x10\x8a\xdd\xb8\x47\xe8\xa5\x3d\x47\x8c\xd0\xd3\x00\x3f\x63\x6e\x19\xea\x20\x20\x02\x52\xcd\x9d\x53\xdb\x0d\x9e\x55\xf7\x33\xde\xa7\xea\xa7\x4f\xaa\xe7\x45\xc5\x70\xbd\x8d\x9e\x92\x31\x29\x51\xdc\xb8\x4b\x52\x34\x1a\xcc\x46\xb3\xc9\x74\x30\x1b\xc3\x18\xe7\xf9\xa0\x5b\xc6\x32\x28\xaa\xfd\xe3\x0d\xb6\x32\xea\x3d\x8e\xb4\x7b\x1c\x5a\x4f\xc6\xe3\xe1\xd8\x4c\x21\x51\x4f\x71\x99\xc2\x2b\x0f\x9f\x25\x3d\x84\x54\x81\xcb\xcb\x4b\x67\x82\x9f\x25\xbd\xf0\x99\x7a\x15\xcb\x57\xd2\x66\xf2\xd2\x6e\x5c\xbc\x92\x08\x9e\x7e\xc6\x1e\xa0\xda\xd1\x28\xb9\x75\xec\xb6\x1b\x5f\x83\xe0\xe5\xfd\x72\xec\xab\xfd\xe5\xfd\x3c\x5b\x56\xeb\x68\xe3\x0a\xcc\xd5\x06\xf2\xa7\x9f\x51\xdb\x37\x1a\x6a\x35\xae\xac\x0d\xf8\x54\xa3\x9c\xfd\xd1\x1e\x87\x87\x7b\x9d\x64\xe1\x6d\xec\x0a\x00\xd9\x06\xd7\xa6\xc7\xe1\x9a\xbe\xe6\x1a\x3b\x97\xa0\xe5\xc9\xb3\x35\xa0\x7d\x67\xda\x25\x5d\x79\x90\xc3\xf8\x0e\xc9\x57\xb8\x76\xaa\x1a\x98\x6c\x7f\xde\x02\x12\x2b\x9c\x2c\x42\x2b\xf6\x35\x84\x72\x91\x44\xb8\xfd\x18\xf5\xf9\x5f\xfc\x4c\x42\xcf\xab\xd3\xc1\xe1\xd9\xa9\x00\xcd\xf4\x49\xa8\xd9\x3e\xc5\x72\xa8\x07\x18\xac\x8c\xe4\xc9\x87\x28\x92\xd6\xf5\x6b\xe4\x94\xba\xca\x6e\x28\x1f\xfa\x8e\x8b\x58\x3f\xc4\xa7\x22\xe2\x65\x2f\x16\x13\x29\xda\xa0\xe1\xf4\x33\x6c\x4b\x6d\x44\xe9\x36\x5e\xb4\xe3\x17\x7b\x5e\x21\x16\xb7\x0c\xff\x89\x9b\xa6\x36\xa2\xb7\x2f\x61\x6c\x46\xb6\x92\x04\x3a\x4d\x49\xe0\x68\xdc\xc8\x51\x2d\x45\x3c\x59\xe9\xd9\xb6\x25\x2a\xe7\x8a\xf0\x8b\x93\x44\xff\xa2\x91\x6c\x6f\x45\x98\x25\xe9\x36\xd8\x90\x15\xdc\x91\x55\x8d\x15\x58\x12\x43\x7e\x33\x08\x67\xb2\xd1\xd4\xc1\xe8\x0e\x63\x58\x13\x83\x57\xe6\xac\x80\xf2\x97\xac\xea\xec\x5a\x8c\xde\x64\x26\x1f\x21\x38\x34\x32\x2d\xc5\xab\x45\xed\x28\x03\x53\xd5\xc3\x47\x07\x04\x31\xb2\xfe\xff\xa9\xfb\xf7\xed\xb6\x71\x64\x7f\x14\xff\xdf\x4f\x61\x71\xf7\x66\x03\x11\xac\x10\xa4\xae\x74\x10\x7d\xd3\xb9\x4d\xf6\xee\x5c\x26\xc9\xf4\xcc\x6c\x59\xed\x45\x4b\x90\xc5\x89\x4c\xaa\x49\xca\x8e\xdb\x64\xbf\xd9\x6f\xfd\x1e\xe9\xbc\xc2\x59\x28\x00\x24\x48\x51\x76\x32\x7b\xe6\x9c\x75\x66\x3a\x16\x09\xe2\x8e\x02\x50\x28\x54\x7d\x6a\x9a\x41\x3d\x11\xf6\x17\x28\x23\x1e\xc6\xa6\x9b\x03\x07\xb2\xec\x7b\xd2\x1d\x45\x7f\x20\x7e\xe1\x90\x36\x1e\x33\xc6\x50\xa2\xbc\x15\xaa\xd8\x2e\xc6\x79\x4e\x5d\x50\xb6\xd7\x07\xb1\x77\xc1\xbb\xd2\x8e\xbd\x3f\x96\xe9\xd3\x9b\x50\x9c\x44\x6a\x69\x29\xc6\x77\x8b\x20\xe5\xc7\xc3\xa1\x0f\xbf\x93\xb1\x1f\x31\x97\x84\xac\x3f\x39\xba\x48\x78\xf0\xe5\x08\x82\x47\x13\xf9\x99\x52\xea\x47\x6c\x4c\x42\x36\x18\xa8\xef\x4b\xbe\x0a\x76\x9b\xcc\x97\x25\x77\xb3\xa2\x34\x81\x21\x3b\x96\x29\x7b\x1b\x17\x83\xf7\xcb\x15\xdb\xa9\x3e\x39\xdd\x3c\x59\x9d\x6e\xba\x5d\x71\x26\x44\x29\xdb\x99\x95\xda\x60\xfc\xa4\x3f\xce\xf3\xf4\x69\x68\xb4\xa7\x84\xaf\x57\xde\x15\xd1\x0e\xfc\x99\x96\xc5\xc2\xc9\x74\x85\xac\x63\x27\xa6\x16\xce\x73\xf1\xec\x5c\xc0\xe3\x0a\x59\x5d\xe7\x2b\xb5\x30\xbe\x5b\xb5\x0c\x63\x73\xff\x7d\x42\xe1\xe0\x21\xef\x52\x4b\x64\x34\xf3\x68\xbb\xb2\x6d\xb4\x9c\x06\xe6\xd2\xb4\xd6\x28\xa7\x95\x30\xda\xd7\x54\xd6\x61\x11\x4a\x30\x9e\x86\x20\x57\xdb\xa2\x6b\x70\x9c\x91\x90\x15\xf6\xc5\x63\x51\x8a\x90\x6f\x01\xcb\xd3\x9d\xe0\x69\x8a\xb6\xd8\xb7\xca\x23\x07\x79\xfb\xe6\x9d\x7a\x7a\x17\xbc\x23\xef\x5e\xbe\x7e\xf6\xf9\xcd\x2f\x2f\xcf\xdf\xbc\x7b\xf5\xe6\xdd\x9b\xcf\x7f\x27\x1f\xde\x7f\x7a\x53\x0f\x79\xf9\xe1\xd3\x9b\x9f\xdf\xbf\x23\x9a\x71\x27\x61\xfa\x26\xca\xf8\x25\x4f\x08\x20\xf0\x92\x30\xfd\x14\xac\xb8\x0e\x13\x45\x7d\x7a\xf6\x4a\x64\xf0\xf9\xe5\xeb\x97\x1f\xa1\xc4\x5a\x80\xe1\x97\xb3\xf4\x70\x59\xe6\x69\xea\x03\x93\x0b\xe6\x9c\x5e\x6a\xe2\xbf\x38\xbd\xe8\x76\x71\x82\xb6\xe4\x96\x5d\xce\x2e\xe6\x12\xc3\x75\x45\x6e\xb1\x6d\x6f\xc4\x2f\xd9\x89\x6f\x18\x1f\x19\x53\x94\xad\xc9\xba\x66\x06\xb4\x22\xa5\x68\x47\x75\x2a\x59\x29\x54\x65\xe5\xc5\x52\x5b\x0d\x4b\xf4\xe7\x7d\x3d\x6e\x69\xf9\x3b\xf0\xfb\x83\x83\x76\xbd\xa5\x80\x67\x74\x98\xdb\xd3\x2b\xa5\xae\xc5\x9d\xea\x67\xbf\xe4\xf5\x5d\x72\x32\x30\x99\x48\x91\xe1\xf8\x01\xb5\xc7\xbe\x83\x7b\x7a\xa0\xf6\x4a\xd0\x1f\x5a\x16\x64\x2d\x17\xac\x00\xd3\xc1\xf3\x50\x6d\xfd\x2f\xf5\x46\xc7\x0f\xb3\x39\x46\x99\x6a\x60\x7d\x8e\x06\x8e\xb9\xad\x0f\x1c\x7f\x20\xb3\x7b\x98\x99\x31\xb2\x13\x47\xdf\x96\xed\x98\x77\x18\x6f\x6c\x1c\xe3\x07\x24\xcb\x03\xa7\xdc\x4b\x0d\x96\xdb\x28\xca\x20\xeb\x43\x6a\xa1\xb6\x2d\x42\x9e\xb0\x26\x74\x73\xd1\xda\xd0\x87\xf9\xa0\xb2\xf4\xe6\x34\xf2\xf7\x4a\xa8\xb7\xf5\xe1\x23\x5f\x95\x75\x63\x42\xfa\x27\x0f\xe4\xfd\x00\x4f\x32\x1e\xd6\x4e\x57\x4a\xca\x51\xcd\xf2\x0e\xc8\xe5\xcb\xe2\xab\x0f\xb5\xb3\xd6\x78\xe8\x8f\x41\xcf\x68\xfc\xc0\x61\x6e\x3c\x3a\x58\xdc\x9b\xa8\xb5\xb0\x37\x51\xa3\xa8\x91\x3f\x06\xad\x8a\xf1\xf7\x5c\x32\x96\x88\xea\x7d\x7d\xc9\x08\xda\xed\xb4\xd7\xcb\xe2\x57\xe1\x57\xbe\x24\x81\x21\xee\x21\x29\x9b\x39\xa4\xfc\xff\x9c\xec\x34\xaf\xa0\xa3\xfb\xc7\x61\xb4\x88\x93\x84\x2f\xb2\xe3\x30\xba\x8e\x17\x81\xa8\x46\xc7\x6a\xb8\xef\x30\xb1\x54\x4f\x28\x89\x58\x76\xda\xed\x26\x4f\x86\xa7\x58\x1c\xd3\x1e\xa5\xb3\x64\x4e\xc4\x1f\x16\xfd\x27\xe5\x23\x12\xb1\x00\x45\x8f\x29\x1f\x81\xf7\x0d\xb3\x71\x95\xb3\x85\x21\x49\x98\x73\x7a\x72\x92\x3d\x65\xce\x29\x4e\xba\x0c\xe0\x41\x01\xd4\x2e\x40\xc9\x63\x2e\xda\x9b\xfc\x27\x7f\x44\xf9\xa8\x20\xab\x76\x88\xd0\x21\xc9\x98\x65\x9d\x9e\x9c\x70\xc8\x44\x70\x2e\x56\x87\xb1\x4c\xd9\xb6\xe7\xb9\xd3\x61\x2c\x9d\xf1\xb9\x3e\x84\xa9\x2b\x05\x08\x3a\x12\x69\xf5\xd5\x68\x57\x39\xb0\xb6\x1c\x8b\x8c\x4e\xf4\xb9\x0e\x77\x13\xed\xb5\x2e\xab\xbb\x68\x30\xd1\xc5\xaa\x0b\xd6\xff\x74\x19\xa3\xd3\xad\xf8\x7c\x42\x49\xf2\x88\x63\x7f\x8b\xf8\x23\x4e\xb2\xc7\x2e\x49\x70\x61\xde\x21\x81\xd6\x0b\xb2\x9c\x9e\xe3\x38\xa2\xd2\x63\x7e\x32\xd0\xa3\x82\x3c\x9c\xe7\x16\x15\xc1\xbd\x49\x19\xe8\x40\x60\xcf\x1d\x88\x70\xf1\x5b\xc5\x77\xe1\x93\x53\xff\x1f\x75\xc7\x22\x26\x72\xbe\x2e\xb9\x73\x31\xbc\xf0\x82\xd1\xb0\xef\x38\x63\x07\x1b\x59\xca\x0b\xc1\xc6\xc9\x24\x36\xb0\xc1\x4c\x42\xd6\x44\xb3\x37\x33\x24\xa8\x2d\x59\xab\xdb\x67\xb2\xc3\x64\x29\xc1\xfb\xaf\x98\x65\x91\x6b\x66\x39\x80\x36\xbe\x7c\xe2\xe4\xf9\xf2\xa9\xdb\xe2\xf9\x66\x07\x6c\xe2\xba\xc3\xd6\x8a\x4d\xb2\xde\x05\xef\x20\xd1\xfa\x09\x3b\xa1\xdc\xa5\x79\xbe\x7e\xca\xc4\x83\xe6\xa3\xd4\x68\xae\x65\x4a\x50\xb5\xb9\x62\xd6\x89\x45\xd6\xec\x64\x8d\xc9\xfa\x29\xe5\x27\x2e\x15\x64\x11\x0b\x36\xb5\x9d\x0e\x1d\x31\xaf\x4e\x93\xa7\xac\xef\x4c\x86\xa7\x38\xeb\x32\xea\x92\xe4\x31\xbc\x4a\x81\x7f\xf2\x94\xb9\xf2\x83\x08\x77\xcb\xa3\x4b\x81\xd6\x8f\xb6\xc8\x25\xc3\x09\xa1\x18\x9f\x0c\x27\xf8\x89\x33\x95\x41\x27\x19\xa1\xd8\x5f\x3f\x16\xcf\xe2\x91\xc4\x8f\x58\x7f\xe0\x78\x83\xc9\x64\xe8\x8e\xbc\x91\xd3\x9f\x0c\x09\xca\xd8\xc0\x3d\xc9\xf0\x53\x47\xd6\x67\x83\x1c\x12\x8b\x03\xc2\xf2\x34\x78\xca\x46\xa7\x78\x83\xc4\x64\x12\x67\x86\x13\x36\x92\xf0\x00\x68\x8b\xa8\x43\x02\xe9\x3a\x82\x04\x2c\x3b\xa1\x22\xb2\xeb\x9d\xe2\x05\xa2\x4f\x9e\xb8\x1e\xc4\x76\xbd\x23\x78\x0d\x30\xd9\x20\x2a\x62\x2f\x04\xd7\x7a\xcd\x56\x48\x59\xe8\xaa\xc2\x36\x80\x23\x90\x89\xcc\xe0\xa3\x39\x0f\x96\x95\x7f\x13\xb6\x7c\xea\x4c\xaf\xba\x82\xb9\xbd\xd6\x73\xe3\x09\x5b\x4e\x2d\xa7\x67\xd5\x92\x9c\xa4\xb8\x7b\xed\x5f\x97\x5e\x98\xd2\x93\x25\xee\x5a\x3d\xab\xab\x83\x44\x00\xf6\xaf\xba\xd7\xfa\x42\x4f\x3b\x65\x92\xca\x4d\xb5\x4b\x7f\x1f\xd8\x97\xf1\xf7\x5c\xf9\x7b\x03\x63\x79\x84\x55\xf1\x43\xc2\x17\x61\x1a\xc6\x35\x55\xba\x64\xff\x1c\x2e\xa7\x9b\x6a\x0b\x25\xe6\x75\x7a\x2d\x76\x78\x70\x6e\x94\x25\xb5\x1c\x7f\xf5\x7d\x80\x8c\xfe\x1f\x66\xe4\x03\x2b\x30\xde\x73\xe6\xc7\xa7\xaa\xec\x0c\xfb\xfa\x89\xf0\x96\x83\xbc\xea\xb8\xc9\x43\xea\xa3\xa2\x2f\x0c\x3c\xc1\x20\x55\x92\x8f\x51\x8d\x45\x1a\x39\xfe\x08\x38\x87\xc9\xc3\x1c\x57\x99\xd7\x22\xe1\x41\xc6\x7d\x38\x8d\x9a\x79\x09\x5e\x15\xf2\x7a\x88\xdd\xd2\xfa\x1a\xee\x04\x1b\xd9\xd6\x60\x0d\x43\x9e\x8a\x02\x94\x4c\xc9\x04\xc9\x19\x79\xfe\x08\xb8\x86\xc9\x43\x92\xa5\x6f\x28\xe6\xd6\x57\x87\xf2\xfd\x62\xf4\x75\xd7\xe4\x00\x4f\xa5\x6f\x3a\x87\x43\xdc\x8b\xa3\x57\x09\xe7\xbf\xf3\x23\x8e\xc6\x1e\x46\xd6\x0a\xde\xee\xbf\xe0\x8a\x2a\xce\xd2\xb6\x33\x14\xe1\x29\x47\x09\x8a\x30\xf6\x95\xd6\x98\xbc\x4e\x1c\x0e\xfd\xe1\x90\x8c\x3d\x7f\x2c\x1b\x7d\xe8\x16\x9c\x8e\xd4\xc5\xeb\x00\xf7\x56\xba\x1e\x87\x50\x24\x5b\x5c\x48\x9b\x50\x7f\x91\xa9\x1f\x23\x16\x7a\x2d\x7d\xd5\xea\x89\xf2\x28\x52\x55\x6a\xd8\x54\xf8\x68\x29\xfd\x5d\x70\xc5\xd3\xb6\x82\x39\x1a\x0d\xf5\x08\x8c\x86\xfe\xc8\x6c\xed\x01\x4e\x0d\xb4\x25\xd4\x35\xb3\xd1\x56\xc3\x4f\xee\xfd\x2d\x6c\xb4\x0f\xd7\x15\x10\x14\x68\x52\x59\x89\x03\xa2\xf9\x01\x2d\xcb\x0e\xd3\x97\x5f\x33\x1e\xa5\xe1\xc5\xe6\x81\x51\xaf\x60\x4b\x3b\x19\xa0\x94\xa2\x0e\xcf\x73\xae\x1d\x2a\xeb\x51\xaf\x0a\x3f\x70\xbe\xab\x15\xfe\x2a\x89\x7f\xe7\xd1\xb7\x16\x2c\xca\xcd\x73\x70\xe0\x29\xca\x6d\x2b\xd6\x75\x0e\x2c\x2f\xb5\x62\x3f\xf1\x60\xc3\x97\xff\xd2\x62\xbf\x63\x15\x0a\xc5\x02\x31\x19\x9a\x2b\xd0\x64\xe8\x4f\x86\x90\xcf\x81\x15\xa8\xa4\x9b\x71\xd5\x0e\xd0\x01\xff\x5f\x50\xcb\x98\xfa\x63\xb3\x09\x07\x56\xa5\xfb\x96\x8b\x6d\xc2\xaf\x79\x94\x29\x1a\x8a\xa3\xf4\xdf\xb0\x72\xb8\xce\x3f\xb1\x8e\xa5\x3c\xd8\xfc\x5b\xea\xf2\xf0\x61\xb2\x1c\xe7\xba\xff\x6b\x31\xe6\x13\xf0\xa0\x61\x8e\xfb\xc4\x9f\x4c\x20\xdf\x6f\xd1\xa9\x95\x2b\xe5\x5d\x71\x94\xcc\x5a\xdd\x28\xcf\x99\xf5\xbb\x45\x12\xa9\xb5\x33\x53\xde\x78\x7e\x9f\x97\x3a\x3b\xfb\xce\xb3\xef\xf3\xcc\xaf\x33\xb0\xba\x52\x17\x05\x77\xad\xb9\x55\x94\x4a\x02\xa6\x01\xaa\x16\xea\xb8\xce\x43\x07\x54\x75\x1e\x7e\x2d\x19\x9e\xc6\x41\xf8\xa1\xf3\xaf\xeb\x1c\xbe\x6b\xac\x9d\x7f\xcd\xec\xf5\xc1\xf7\xfe\xf3\xae\xeb\x3c\xc8\xcf\x91\xca\x35\xa1\x86\x91\xeb\x3b\xca\x02\x6c\xa0\x2c\xc0\x46\x0a\x45\xce\x93\x28\x72\x82\x42\x57\x52\x99\x72\x2b\x41\xe5\xd6\xd2\xd9\xbe\xf4\x39\xe4\xf4\xb5\xcf\x21\x4f\xfa\x2e\xbf\x16\x91\xc6\x18\x49\x18\xb9\xe1\x44\xfa\x1d\x9a\x38\xd2\xef\xd0\x84\x62\x72\xce\x02\xc3\x6b\xcf\x0d\x0b\x4a\xf7\x87\x5f\x59\xd0\xfb\x90\xc4\x57\x61\xca\xc9\x4b\x66\x78\xe7\xdb\xa1\x1b\x4c\xde\xd7\x50\x04\xc9\x27\x96\xb0\x5b\xf0\x49\xd4\xe9\x34\xf4\x6c\x64\x9f\x7e\xed\x25\x3c\x8d\x37\xd7\x1c\xc1\x24\x43\x59\x4d\x52\x78\x57\xe0\xd9\x9e\x5f\xe8\x39\xab\xef\xa4\xef\xc9\x7b\x5c\x68\x74\x95\x97\x79\xde\xa2\xa6\xae\xea\xfb\x91\x0b\x42\x0b\xe3\x08\x1c\xe8\x61\xdb\xce\x7a\xd9\x9a\x47\xe8\xbd\xa9\x26\x9f\x54\x5a\x3e\x45\x81\x30\x79\xc6\xe2\x69\xab\xaa\x0b\x67\x70\xd6\x16\x3f\x5f\x6d\x3b\x63\x8c\x85\x45\xbb\x52\x0c\xc4\x2c\xc8\x97\x7d\x79\xb5\xd6\x93\x42\x9d\x05\xe0\x05\xec\x6b\x6e\xa1\x8c\x71\xa8\x25\x16\xf5\x2d\xc8\xdb\x16\xac\x01\xde\x3b\x8f\xf0\x9d\xf8\xcb\x3a\x8e\x56\x2f\xea\x9d\x2f\x8e\xae\x51\x8b\xe0\x00\x30\x8f\xaf\xc5\x01\x81\x89\xa7\x94\xc4\xcc\x31\xbd\x09\x97\x0e\x32\x63\x12\xb0\x70\x9a\xf5\xe2\x2f\x7e\xd6\x5b\x05\xe1\x86\xa4\x2c\xd3\xe3\x05\x17\x02\x09\x74\x28\xd9\xb0\xac\xb7\x8c\xaf\x82\x30\x3a\x12\x23\x1b\x4c\x51\x98\xe7\xc8\x85\xec\xd7\xb6\xfd\x51\x30\x48\xe2\x91\x51\x4c\x3a\xe0\x98\x7b\x9a\xb0\xc8\x47\x1b\xdb\xde\xf4\x78\x94\xf1\x04\x89\xc1\x0f\x50\x84\x89\x0c\xfb\x1a\x66\x08\x8b\x30\xc6\x60\x1d\x11\xa3\x37\xdd\xa1\x73\x64\xa9\xa1\x3c\x59\xac\x83\x30\x3a\x5e\xdc\x2e\x36\xdc\xc2\xd8\x47\x31\xfb\x02\x72\x79\x75\x78\x4f\x00\x95\xda\x4f\x45\x98\xbf\x43\x91\xe1\x8d\x7f\x07\x32\xd5\x53\x2d\xe5\x78\x1a\x9f\xe2\x00\x25\x00\x2f\x8f\x8f\x44\xb7\xb1\xd9\x9c\xc8\xce\xa4\x24\xb3\xed\x8e\x6c\xc5\x07\x8d\x62\xf0\xa1\x36\x8c\x57\xb2\xbc\xa0\xa9\x9b\xa8\xa6\xb1\xec\xeb\x98\x7d\xd6\xee\x6f\x6d\x1b\x65\xec\xd2\x1c\x97\x97\xd3\x9b\x1e\xbf\x0a\x33\x64\xed\xa2\x75\x10\x2d\x37\x7c\x59\x12\xaa\x45\x42\xc2\xb1\x8f\x12\x16\xf4\xe2\xa8\xfc\x9e\xe8\xef\x78\x9a\xa0\x3b\xd5\x3f\x3e\x27\x09\x0f\xd2\x38\xf2\xc3\x02\x50\x0a\x03\x98\x4b\xf1\x06\x44\xa4\x3d\x2e\x66\x72\xf9\x80\xac\xbf\xe8\xcc\x8e\x55\xfa\xe3\xc4\x28\x15\x0c\xc3\xc5\x90\xbd\xcc\x73\x51\xf7\xa9\xeb\x53\x08\x09\xb4\xb1\x59\x2c\xa6\x0f\x57\x92\x8c\xac\x77\x2d\x16\xbb\xcf\x4d\xc8\x01\x49\x62\xeb\x4a\xe5\xb0\x94\x3c\x10\x20\xd1\x00\x20\x32\x16\xe0\xf7\x21\x31\x1c\x8e\x86\x2b\x84\x32\x96\x48\x3f\xa3\x40\x7b\x79\xde\xf9\x8c\x4a\x5a\x30\x94\x18\xb5\xca\x61\x41\x3e\x7e\xdb\xc0\x1c\x55\x1d\x5e\xb6\xf8\x4f\xb2\x2b\x2c\xe8\xec\x0c\x3a\xbb\xfc\xa6\xba\x09\x34\x09\xf7\xfb\x5a\x8c\x6f\x01\x2c\xd6\x3f\x5a\xae\xa3\xe0\xd6\x29\xeb\x9d\x2f\xf3\x1c\x89\x1f\xd6\x71\x08\xca\x58\xd6\x3b\xbf\xc9\xf3\x0c\xf7\xce\xaf\x19\x27\x59\xef\x3c\x65\xae\xf8\x09\x64\xb4\x40\x44\x58\x68\xb8\x59\x4c\xde\x2a\xdc\xfe\x82\xbc\x6b\xf3\xab\xc4\xb4\xc3\xd8\x4e\xd2\x3b\x5f\xe2\xbb\x44\x15\x94\xb0\x04\xca\x49\x60\x56\x86\x2b\x94\x80\x8e\xa6\x1c\xb1\x6a\x2a\x55\xee\x96\xd5\xd4\x5e\x1e\x87\x59\xca\x37\x2b\x0b\x9f\xa2\x8c\x7d\x11\x0c\xdd\xf4\xba\xe9\xb5\x3b\x62\x77\xe7\x37\x7e\x42\xce\x97\x7e\x87\x16\x50\x42\xa6\x8c\x8e\x48\x8a\xde\x91\x88\x50\x4c\x52\xf4\x0f\x78\x30\x66\xdf\x3f\x94\xde\xbc\x3c\xba\xfb\x28\x91\x7d\x90\x88\x3e\xa0\xe4\x2d\x4a\xc0\x87\xe9\x5e\x7c\xb3\x30\x48\x5a\x1c\x3d\xcf\x73\xf4\xb5\xd6\x1f\x5b\x29\x66\xf8\x4a\x74\xd3\x2c\x62\x9d\xaf\x2d\x4c\x56\x60\x87\x69\xea\x0a\x8b\xfa\x72\x24\x2a\x2a\x71\x9f\x64\x5d\xd5\xf3\x7e\xf1\xd2\x06\x42\xcc\x7e\x53\x92\xa6\x0d\x3d\x61\xc5\x90\x8f\xe5\xf4\x90\xaf\x69\x69\xf5\xb9\x84\xd5\x04\x1e\xaf\xeb\x71\xd6\x65\x1c\x69\x71\x6f\xdc\x9c\x01\x5e\x2c\xfa\x6a\x70\x52\x77\x62\x2b\x68\xd5\xb0\xf9\x84\x96\xaa\xf9\x95\x7b\xf0\xa4\x17\x7f\x61\x2d\xda\xc0\xe2\x40\x45\x12\x98\x57\xad\xc6\xde\xb6\x9d\x91\x44\x2d\xe9\x4c\x4c\x17\xf9\xe8\xd7\xea\xbd\x90\x8e\xb3\x12\x6d\xe1\x1a\xd8\xb6\x7a\x68\x7c\x48\x6d\xfb\xad\xac\x1a\xf8\xe1\xd3\x73\xb8\x20\xd0\xcb\xad\x3e\x80\x44\x3a\xd8\x9a\x55\x89\x40\x2c\x24\xda\x77\x96\x1c\xf1\x9b\xe3\xec\x48\x6b\x22\x8b\x6c\x15\xec\x9c\xde\xa7\x98\x18\x63\x70\x36\xab\x42\xc5\xac\x66\x62\xb0\x45\x60\x41\x6e\x7b\x2b\xf6\xa9\x0d\xe9\xe5\x19\xfa\x4a\x38\x06\x74\x6d\x11\xec\x27\xd2\x94\x7e\x83\x36\xbd\xd7\xdd\x4d\xef\xaf\xdd\x4d\xef\xd5\xa3\xce\x73\x72\xa7\x68\xcd\xff\x0a\x58\x06\xd4\xa1\x18\x19\x14\x28\xc3\x1c\x8c\x8c\x90\x50\x21\xb6\x68\x36\x4a\xe4\xf9\x49\xe7\x57\xd1\xee\x9d\xac\x6c\x8b\x3c\xed\x53\x4d\xe3\x1d\x39\x44\x6f\xc5\x58\x12\xba\xee\x61\x55\x5f\x99\x37\x8a\xf3\xbc\xf3\x1c\xd7\x0b\x80\x3e\x6a\xbd\xcc\x33\xef\xc8\xbf\xda\xf6\x33\xc4\x4d\xd6\x0c\x7a\x13\x4f\xb9\x7f\x51\xcd\x0d\xb3\xb0\x0e\x7a\x2e\x4e\x03\x4d\x60\x82\xaf\x3d\x69\x96\xd8\x93\x13\xec\xbd\x94\x22\x56\x15\x0a\x4c\x77\x5c\xb5\x55\x94\x08\x0a\xcf\xa4\x0b\x1d\xcd\x82\x84\xf0\x0c\x2c\x48\x5c\xdf\x53\xe5\x94\x98\xcd\x15\x6f\x43\x8f\xd6\xa0\xde\x41\x9a\x79\xa7\x2c\xee\x76\xc9\x8e\x89\x7d\x44\x52\xad\x92\x7c\x92\xa0\xdb\x25\x25\xb3\x23\x6a\x0c\xe4\x68\xa6\xdf\xe5\x39\xda\xc1\x3a\x3b\x4b\xe7\x8c\x93\x93\x93\x20\xcf\x41\x39\xa0\x90\xfb\x67\x19\x50\x94\x13\x32\xee\x71\xdb\x0e\x51\xdc\xbb\xae\x4d\x84\x24\x68\x18\xf2\x1d\x6a\x37\xb4\x35\xac\xb7\xb5\xa5\x69\xfb\x15\xaf\x3a\x2d\x12\x9b\x55\xe5\x24\x58\x54\x28\x42\x61\xbd\x42\x05\xae\xe1\x7f\x2b\xbc\xb5\x12\x07\xdc\xf3\x29\xf5\x48\x1b\x36\x90\x42\x30\xa8\x2c\x9e\x26\xbe\x37\x51\xb7\xf6\x26\x3a\x77\x85\xc1\x36\x1c\xfb\xc3\x31\x19\x4e\xfc\xe1\x84\x4c\x1c\x7f\xe2\x90\x09\xf5\x27\xb4\xc4\x62\x73\xe9\x03\xd7\xed\xca\x80\x0c\x4c\xf6\x91\xbc\x7d\xff\xc8\x57\x1b\x30\x12\xbf\x2b\xb0\xb4\x7b\x26\x71\x65\x46\x00\x01\x75\xf9\x67\xe3\x02\xa8\x66\x40\x26\x0d\x7d\x54\x96\x82\x44\x45\xf2\xda\x0a\x4c\x02\x4d\x4c\x70\xe7\xb3\x63\x11\x0a\xaa\x0e\x9e\x86\x28\x25\x99\x60\x46\x15\x6b\x2a\xdf\x94\xdc\xba\x6e\x1b\xa6\x7a\x6a\xe4\xc3\x51\x91\x3e\xa0\x09\x3f\x52\x8a\x56\x0a\xe9\x6b\x24\xd5\xac\xc4\x59\xd0\xd4\xb2\xa2\x43\x51\xa5\xb6\x9e\x29\xa7\x33\xd9\xb0\xe0\x61\xd3\xe2\x5d\xad\x57\x88\x60\x92\xf7\xcc\x8b\x17\xac\x53\xcb\x69\xd7\xec\x49\xf3\xda\x78\x93\xe7\x8b\x5a\xd7\x96\x15\x6a\x6c\x70\x11\x38\x92\x42\xca\x6f\x48\xb0\xaf\xe4\xe3\x4d\xb9\x6f\x9a\x9f\xbb\x73\x60\xb6\x17\xb6\xdd\xd9\x94\xb6\xe5\x6a\xa8\xc0\xed\x6f\x5d\x89\x4a\x5d\xe9\x48\xed\x29\xc7\x37\x90\x76\xb9\x54\x99\xa2\xb5\x30\x04\xd0\x9d\xf2\x8b\xbb\xff\x85\x64\x80\xcd\x09\x9f\xbd\x03\x9f\x49\x06\x75\x84\x38\xfd\xfb\xe2\x90\x6c\xe6\xcd\x25\x6c\xee\x8a\xcd\xa2\xdd\x66\x53\x99\x8f\xc2\x82\xa5\xec\xfa\x57\x80\xff\xcd\x6f\x50\xaa\x02\x38\x59\x61\x99\x6e\x2b\x0f\xef\x8a\x81\x58\xb3\x04\xc5\x68\x8b\xa7\x5b\xbf\x29\xa6\xc1\x64\xd9\x98\x25\x9a\xa1\x5b\x93\x0a\x60\x39\x46\x4b\x3c\x5d\xfa\xeb\xc2\xb4\x80\x6a\x25\x63\x65\xed\xe3\x8f\xca\x8b\x0f\x97\x1e\x10\x3b\x8e\xdc\x3a\x18\x8e\x02\xe0\x00\x53\xbf\x0a\xe9\x66\x6f\xa2\x2a\xd2\xe9\xd5\x6f\x2c\x50\xd6\x5b\xa1\xbb\x82\x50\x6d\x1e\x45\x0b\x5c\xbd\xb8\xcd\x09\xdd\xb8\xee\x30\x48\x2f\x21\xb1\x22\xbe\x84\x85\x48\x22\x57\x45\x28\x96\xdc\xa3\x66\x55\x7a\x2b\x15\x93\x74\x9c\xa6\x81\x50\x87\x16\xda\x00\x6a\xcf\x62\x4f\x76\x8c\xba\x43\x71\xe9\x03\x8a\x32\x52\x43\x52\x76\x4d\x05\x9b\x56\x35\x61\xc3\xb3\xd6\x26\x64\x1a\x63\x5b\x3a\x51\xaf\xc6\x11\xec\x63\x3a\x61\xcd\xb5\x17\xb6\x6d\x99\xd3\x31\x9f\x65\x73\xf3\x66\x0d\xea\x3a\xf0\x47\x03\xa8\xeb\xf7\x98\x6d\x8e\x6a\x6c\x1b\xaf\xb0\x51\x92\x1a\x36\x8a\x12\x7d\x45\x1a\xfd\x84\xcd\xe6\x70\x56\x94\xde\xd2\xb4\x93\xd6\x0c\x17\x47\x1c\x0d\xfa\x18\x45\x95\xfc\xb3\xc9\x13\x56\x10\x2a\x47\xcb\xf8\x4e\xdb\xa9\x9d\x87\x4f\x4b\x1f\xb8\x6a\x49\x50\x04\xa1\x58\xcc\x65\x1c\x81\x67\xa5\xe2\x66\x1d\x6e\x38\xea\x20\xc4\x59\x36\x2b\x21\x58\x00\xe1\x5a\xd5\xbd\x64\xb0\x55\x0e\x5c\x25\xa6\x85\xc2\xcb\xaa\x0d\x8e\x72\xdc\xd4\xaa\xf3\x75\xac\xd9\xcb\x9a\xb2\x52\xdf\x1f\xf4\xcb\x4d\xe0\x80\x20\x78\x34\x68\xce\x18\x39\x51\xcc\x92\x0f\xba\x48\x33\x69\x1c\x9b\x94\x2c\x89\x1d\x1f\x1e\xfa\x07\xf4\x90\xb4\x51\x63\x1b\x91\xd6\xaf\x9f\xda\xb5\xb9\x22\xd4\x50\x78\x86\xd2\x95\xa5\xa0\x4b\x0f\x48\x7d\x75\x5f\xe8\xd2\xfb\x54\xd9\x92\x7b\xf5\x2d\x71\x84\x8f\x42\x14\xee\xd5\xca\x34\x92\x0a\x49\x2a\xf3\xdd\x91\x0d\x59\xb4\xed\x34\xa1\x6f\xee\x33\xa5\x55\x06\x0a\x31\x63\x6c\x31\x0d\x67\xe9\xdc\x47\x3b\x96\x81\x85\x66\x8a\xf1\x34\x42\xbb\xd2\xcb\xde\x74\xd7\x33\x89\xae\xc3\xd8\xae\x77\xc9\xb3\x29\xfc\x95\xab\xed\x42\xbb\x41\xf2\x63\xb4\x61\x09\x0a\x31\x9e\x72\xb4\x21\x29\x29\xbf\xd4\x34\x02\x41\x17\xd2\x58\x6a\xa5\x0e\x64\xd9\x65\x0f\x5b\xcd\x54\x7d\xb1\x0e\xd2\x76\x01\xa6\x9c\x85\x75\xdd\x3e\x97\xde\x6b\x46\xa3\x66\xbe\xda\x63\xcc\xeb\xbf\xfd\x72\xcd\xaf\x87\xb4\xfc\x48\x27\x12\xcc\x34\x6f\x52\x87\xa8\x89\xfb\x30\x52\x54\x55\x58\x7c\x13\xfd\x37\xbf\x4d\x7d\x8e\xc6\x35\x13\x87\xf1\xc0\x1f\x03\x8d\xbb\x0f\xb1\x5d\x46\xbb\xf6\xee\xa5\xf6\xcb\xdb\x8b\x52\x6f\x21\xc0\xbf\x57\xdb\x49\x24\xb5\x19\xef\xdb\x4b\xea\x4d\xbf\xd7\x5e\x10\xae\x82\x8e\x12\xdb\xde\xab\x55\x7a\x68\x32\xc2\xa8\xf7\x16\x6b\xbe\xf8\x02\x2f\x66\xe5\x12\xf0\xcb\x2e\x42\x1f\xae\x5f\x79\xe3\xe4\x1e\xd8\xd9\xf4\x96\x3f\x52\x3a\x2b\x23\x05\x00\x21\x26\x6f\xac\x5a\x20\x26\xed\xc4\x55\xd6\x02\xf2\xea\x63\x40\xf1\x91\xf4\x4a\x55\x6f\x8d\x39\x89\x63\x31\x77\x65\x49\x2b\xb2\x25\xeb\xfd\x69\xdc\x9f\xc6\xc6\x34\xf6\xe6\x64\xc9\x92\xde\x0a\xa5\x28\xc6\x64\x03\x2c\x62\x67\x09\x02\xcc\x1d\xda\x32\xb1\xe5\x57\x66\xd1\x68\x0b\x70\x79\x6b\x7c\xb4\x64\x01\x72\xb0\x56\x91\x0b\xd1\xb2\x9a\xe6\x1d\xd4\xa1\x8c\xb1\xa5\xe1\x17\xb3\xb3\x43\x6b\x9c\xe7\x08\xad\xa0\xa8\x35\xd9\xe0\x3c\x17\x19\x60\xb9\x24\xb0\x05\xc9\x64\x38\x59\x61\xe2\x60\xc3\x1b\xda\x52\xba\xca\x47\xf0\x2b\x57\x89\x35\x59\xe0\x0a\x7b\xe6\xc0\x52\x60\x2a\x45\xc3\x8d\x3d\xb8\x37\x82\x41\x39\x70\xd5\x59\xda\x70\xe8\x41\x01\x73\x8c\xb0\x34\xd6\x80\xd5\xd4\x55\x07\x8c\x11\x86\x0b\x01\x89\xde\x4a\x76\x2c\x25\x1b\x66\x18\x84\x93\x05\x7b\x1c\x3c\xbe\x24\x2b\xf9\xb3\x05\x59\x4d\x8a\x16\xb8\xc3\xd8\x02\xb8\x70\x69\x9f\x8d\x3a\xdb\x3c\x3f\x84\xe2\xb0\x2a\xef\x7f\xc0\x0e\xdb\xc2\x73\xd6\xa1\x44\xe6\xb2\xc8\xf3\x14\xad\x30\x63\xab\x3c\xb7\x1e\x07\x8f\x43\xab\xc3\x52\xb4\x20\x56\x68\xe1\x02\x63\x7c\xd7\xc4\x65\x96\x72\x4b\xb1\x89\x9b\xc2\x8d\x94\x84\x12\xa8\x6d\x61\x00\xc6\x68\x2e\x29\xb2\xed\xd0\xb6\x6b\xa2\x0f\xc6\x58\x6a\xdb\x8b\x29\xf7\x13\xb4\x05\xf9\xd0\x0e\x78\xa9\xc5\x94\xf7\xd2\x78\x97\x2c\x38\x58\x3a\xfb\x3b\x84\x42\x56\x13\xa3\xa4\xd8\x8c\x12\x8a\x4c\x02\x0d\xd4\xe4\x0b\xfe\x5d\x42\x29\x6d\x48\x6a\xd8\x11\xac\xeb\xd7\x5d\x62\x25\x4e\xc5\x4a\x98\x12\xfe\xa0\x3d\xbb\x3e\xfa\xcc\xf8\xbc\x61\xb3\x9d\xe1\x3b\x11\xca\xa4\x35\xef\x92\x85\x68\x87\xc9\x15\x73\x4e\x97\x5a\x0a\x7f\x75\x8a\xd7\x68\x39\xbb\x82\x6b\x91\x4d\xad\x03\x52\x62\xda\xfd\x6f\x2a\x75\x7e\x0d\xe4\x9b\xe2\x42\x4b\xbd\x54\x50\x4d\xa0\xa0\xf1\x24\x0c\xc5\x7e\x6f\xe4\x7b\x23\xad\xde\x0f\x8a\xfd\x03\xd7\x1f\xb8\x75\x88\x76\x7d\xfb\xeb\x0e\x9a\xda\x34\x40\x48\xd6\xa5\xd5\x61\x8f\x7b\x8f\x2f\x7b\xab\x4d\x70\x99\xda\xb6\x46\x4a\x90\x75\x30\xef\xa3\x21\xc2\x01\x3c\x00\xa0\x6c\x53\xdb\x09\xaa\x56\x72\xea\xee\x9e\x2a\x8f\x37\x2c\xc9\x93\xd0\x1a\x12\x60\xc5\x5d\xcd\x4c\x7d\x8f\x56\x17\x62\x12\x29\x24\x2c\x69\x30\x51\xbe\x12\xfd\x64\x96\xcd\xeb\xda\x70\xe0\x3e\x31\xd4\x17\x5d\x91\xf4\x7a\x28\x1b\x89\x12\x3c\xcb\xe6\x48\xe9\x86\x46\x18\x17\x24\x99\xcb\x35\x62\xe8\x7b\x70\xb9\xed\x8e\x5a\x1b\x90\xf0\xed\x26\x58\x70\x8b\xb8\x0f\x36\x01\x9c\x44\xee\x35\x22\x2e\x1b\x11\x94\x8d\x88\x74\x23\xa2\xb6\x46\x04\x9a\xfc\x23\x12\x93\x10\xfb\x0a\xb4\x43\x55\x3e\xc6\xe0\x8d\xb2\xa5\x01\xe3\xd6\x06\xa4\x3c\x48\xfe\xbf\x32\x04\x93\xf6\x16\x6c\x37\x61\x56\x1b\x00\xe5\x26\x69\xaf\xb6\xa1\x5a\x87\x63\x16\x49\x6c\x2d\x71\x3c\x02\xdb\xb5\x85\xc5\x98\x15\x5c\x5c\x2c\xb4\x15\xcf\x63\x74\x81\x1f\x3d\xc6\x33\x3a\xcf\xf3\x7e\x87\x59\x19\x4f\xb3\xea\xdb\xd4\xc7\x8f\xc9\x09\xd5\x2e\xd9\xc1\xae\xd7\x0a\x2e\xcc\x08\x01\xa4\x2f\x23\x88\x3c\x7a\xd5\xf7\xde\x14\x8b\x7f\x46\x04\xf3\x2b\x46\xd5\x97\xa7\x34\xcf\xad\xf2\x53\x6f\x5a\x7e\xd0\xd2\xb3\x72\xf5\x7d\x8c\xf0\x74\xfa\xb8\xc7\xbf\xf2\x05\xb2\x2c\x51\xf5\xa3\xa8\x65\x29\x2f\x15\xda\x4b\xc8\xaf\x4a\x59\xd4\xb6\x61\x19\x57\xbb\xf6\x6c\x0e\x5b\x7a\x58\xa1\x9f\x1c\x97\xf7\xc4\x5c\xfb\xa3\x8d\xc8\xae\x04\xc2\x9d\xcd\xc9\x9a\x21\xde\x0b\x2f\xa3\x38\xe1\xcf\x83\x94\x4f\xad\x50\x7a\x32\x46\xbc\x77\xb5\xdb\x64\xe1\x26\x8c\xf8\xd4\xba\x2a\x03\x77\x51\xb8\x88\x97\x7c\x6a\xed\xca\xa0\x34\x0b\x17\x5f\x6e\xa7\xd6\x2d\x84\x90\x25\x73\xc8\x95\x09\x4a\x56\x99\x54\xfb\xd9\xd3\xa7\x4f\x1d\x72\xcd\x0c\x32\xd2\x5b\x05\x59\x77\xad\x4b\xe5\x15\x3d\xcd\x73\x14\x99\x91\xac\x5f\x41\xb9\x18\x22\x76\xad\x1f\xd0\xb4\x73\x76\x96\x62\x8b\xac\x31\x3e\x45\x3b\x76\x2d\x3b\x31\xc1\xd8\xb6\x3b\x08\x6d\xd8\x4e\x82\xbe\x76\x77\x33\x67\xae\xbb\xff\xe9\xd2\xb6\xd1\x56\x5d\xda\xa8\x5b\xc7\x25\x51\x31\x31\x26\x9d\xd4\xb6\x77\x06\xec\x23\xa4\x55\xcb\x05\x8a\x48\x43\xc5\x60\xc5\xe8\xe9\xea\x49\x93\xe3\x3a\x71\x4f\x57\xdd\x2e\x2e\x1b\x5f\x31\x5f\xab\xb9\x6d\xa3\xdd\x6c\x35\x67\xa5\xd2\x31\xa9\x95\x26\xeb\xf1\x44\x5f\x0f\xdb\x76\xa0\x44\x5c\x5b\xb2\x53\xb5\xa5\x58\xec\xde\x46\x9b\xc8\x92\x6d\x88\xc6\x02\x7e\xca\xae\x30\x3e\xc5\xd7\x15\xbe\x26\x63\xba\x23\x6c\xdb\x08\x2e\x81\x56\x8f\x97\x8c\x95\xe6\xed\xd3\xce\x42\xc4\x12\xf3\x46\x50\x63\x9e\xab\xae\xb2\x2c\xec\x37\x7b\x0d\xe3\xaa\xd4\xab\xe9\xb6\x54\x04\xbf\xc2\xfe\x56\xfa\xdb\xb4\x1c\x3d\x05\x94\xdc\xc1\xc1\x65\xc3\x50\x93\xca\xf7\x74\xa0\x15\x59\x4f\x67\x73\x2d\x4d\x2e\xb1\xeb\x4a\x99\xbe\x09\x3d\xa3\x9d\xf9\xb2\x6c\x6f\x69\xe6\x7a\x71\xe3\xb3\xe4\x9e\xa5\x99\xcb\xa5\x39\x6a\x2e\xcd\x1c\x96\xe6\xc8\x58\xd8\xe4\x8e\x2d\x96\xb7\xa6\x63\x80\xda\xf2\xc5\x91\xeb\x0e\x70\x29\x27\x52\x4a\xb9\x9e\x82\x4b\x75\xe1\x14\xf0\xb8\xf7\xb8\x42\x8d\x8a\x6b\xaa\x29\x92\xd7\xd8\xdf\xd1\x2b\x0d\x33\xb8\x2b\x2f\x8e\x0e\x70\x94\x82\x51\xbc\xb0\x3a\x5a\xd5\xfd\x4e\xb1\x63\x56\x60\x11\x60\x0a\x7c\xeb\xc2\x2a\x70\x81\xa7\x71\xf3\x3e\x89\xeb\x4e\xd4\x38\x5e\x8f\x4b\xc7\x22\xe5\x54\xb5\x1e\x5b\x9a\xb9\x10\x27\xe6\x29\x97\xac\x88\x2f\xf8\xc8\x1a\x2b\x28\x1b\xa0\x61\xaa\x38\x2e\xd1\x79\xb0\x5f\x35\x45\xd4\x32\x0a\xae\xb8\x6d\xc7\x2d\xac\x71\x58\x73\x4d\x2f\xd8\x15\x77\xe0\xbb\x95\xc3\x54\x83\xaf\x12\xa7\x81\x92\x7b\xf2\xbe\x0d\x0b\xf9\x7e\x74\xa2\x4f\x3c\xfb\xb7\xa1\x13\x05\xcb\x76\x6c\xf9\x1a\xb4\x90\xa8\x00\x26\x9c\x55\xe0\x42\x70\x3d\x9f\x1c\x46\x16\x72\xef\xf5\xe3\x20\xf8\x55\x71\xcc\x08\xa2\xc5\xba\xa6\xfe\xdd\xd2\xb6\xac\xd9\x38\x41\x3d\x0a\x62\x2a\x2b\x51\x00\xc7\x3e\x75\xc6\x50\xee\x7d\xc0\xc1\xba\xdc\x8b\xf0\xf2\xfb\x3a\x54\xa6\xb0\xc4\x7f\x2d\x45\xde\x27\xa2\x2d\x8b\xdc\x84\xd1\x97\xef\x2d\x54\xa6\x39\x54\xec\x7d\xf8\xb6\x65\xb1\xf1\xe6\x01\x95\xe8\xfd\x52\x0f\x97\xf8\x5d\x18\xb1\xce\x10\x20\xd1\x35\xb0\x9b\x5e\x31\xee\xc4\xc6\xfd\x21\x0e\xa3\xec\xd9\xbd\x50\xb0\x65\xf1\x43\x9f\x3a\x15\xee\x9b\xfb\x7d\xfe\x09\xe8\x58\x7b\x27\x80\x5b\x0e\xcb\xea\xf1\x68\x99\xfe\x35\xcc\xd6\x75\x54\xc3\x3e\x46\x96\xfe\x62\x61\xa3\xb6\x3a\xf0\xb0\xa1\x0d\x27\x66\xca\x7d\x54\x9a\x03\x38\xfd\x01\x4b\x0c\xec\x67\x83\x21\x8b\xa7\x81\x5f\x22\x3d\x27\x62\xf9\x0f\x30\xd9\x69\xf6\x8b\x9b\x97\x9d\xda\x32\x67\x47\x52\xec\x67\xa5\xd9\x93\xde\xd1\x49\x8a\xc5\xe6\xab\x3b\x72\xe4\x53\xa7\x81\xe5\x4c\xbc\xbe\xef\xc9\x85\xea\x3e\xd3\x50\x4d\x4d\xab\xf0\xeb\x43\x1a\xf6\x7b\xe4\x94\x65\x87\xe9\xe9\x3e\xf5\xdc\xb2\xcc\x38\xca\x16\xf1\xe6\xfb\x97\x09\x91\xd0\x22\x96\x4a\xdb\xb2\x54\x34\x31\xef\x0f\x16\x9f\x86\x0f\x59\xcf\x1c\x2c\x5d\x26\x6d\x2b\xfc\x01\xc1\x27\x40\xfa\x46\x6a\xd4\xc1\xbb\xc4\x73\x05\xf4\x40\xc2\x5a\xa8\x9e\x4d\xe6\x65\x6f\xa7\x13\xda\x36\x15\x3b\x9a\xa6\xaf\x8a\xa0\x6b\x89\x0e\x60\x2c\x09\x96\x3c\xdc\x87\x57\x8a\x99\x73\x1a\x3e\x8d\x4f\x41\x58\xc7\x59\xb7\x22\xeb\xb8\xdb\x9d\x93\x04\x71\x42\x29\xed\x53\x4a\x71\xa7\x52\x7e\x33\x0c\x2f\x79\xd7\x3a\x0e\xd3\xe3\x28\xce\x8e\x83\x63\x89\x12\x29\x56\x83\xe3\xad\xa8\x8b\x25\x76\x3e\xe0\xf0\xf8\x93\xe1\x60\xe0\x0d\xa7\xa0\x0a\x14\xa1\xc1\xc0\x9d\x0c\xbb\x08\xf1\x13\x40\x31\x1a\xe2\xa7\x4f\xa9\x83\x09\xff\x4f\xea\xb8\xfd\xee\x60\xe8\xb9\x0e\x2e\x25\x83\x19\x60\xd9\xa3\x8a\xdc\x14\xe0\x6f\xb9\x7e\x7c\x1f\x42\xbe\x33\xc2\xfb\x0b\x45\x18\x2d\x36\xbb\x25\xe0\xf3\x57\xfd\xaa\x03\x5b\xd6\xb4\x4e\xe7\x8f\x12\xd9\xd7\x48\x5c\xba\x84\xf8\x1e\x0f\x2e\xc6\x4c\x6e\xcc\xe0\x7b\x21\xf3\x35\x39\x87\x59\xb0\x09\x17\x0f\x58\x74\xec\x11\x73\x78\x70\x0a\x7f\x13\x10\xbc\xdc\x0a\x1c\x7c\x24\x9d\x39\x28\x56\xd3\xda\xb3\x52\x30\x2e\x2c\xcb\xd5\xae\xba\xb5\xdc\xf7\xe3\x50\x7a\x6d\xa8\xee\x32\xc3\x12\xf6\xfc\x69\x75\xa6\x68\xbf\x7b\xf4\x91\x60\x32\xc5\x91\x5f\x97\xd1\x2d\xbd\x3d\x90\xbd\xcb\x46\x5c\xdb\x8d\xc0\xf7\x02\xb4\xff\x5b\x36\xe1\x87\xb7\xfe\x76\x26\x67\x9d\xf0\x55\xfb\xe2\xf1\xc0\xcd\xa0\xe1\x10\x61\x5c\xde\xca\x94\x94\x9a\x04\x37\x35\x22\xad\x0c\x94\x13\xc4\x7b\x49\x70\x23\x76\xca\xc8\xd8\x9c\x5a\x91\xd6\x66\x73\x92\xc2\x7a\x90\x9e\x62\xa5\x84\xa8\x25\x04\xb3\x14\xd0\xd6\x48\xfa\x24\x16\x07\x48\xf3\x5b\x45\xd5\xe9\xbc\x52\x9d\x0c\xf6\x26\x6d\xbb\xdf\x01\xb7\x09\xf0\xde\xbc\x7c\x32\xf9\x8c\x84\x6f\x79\x90\xf9\x12\xb8\xa0\x66\x01\x5c\x65\xf7\x2d\x9b\x5e\x7a\x15\x6c\x1e\x30\x3b\xda\x1b\x3d\x95\xe6\xd0\xa4\xf9\x3e\xcf\x32\x7b\x2c\x4c\x9a\x05\x49\x76\x80\x89\xa9\xbe\xd5\x56\xa7\x2a\xf8\x5e\x46\xa6\x96\x3a\x66\x0a\x01\x51\x30\x22\xdf\xc8\xd5\x94\x44\x23\x4e\xbf\xf7\xb1\x2c\x01\x89\x2b\x96\x25\x26\x71\x37\xd0\x29\x19\x63\xc1\x37\xb1\x2c\xf7\x42\x9f\x97\xa3\x97\x25\xe1\x97\x07\x76\xef\xfd\xe1\x53\x89\x0e\x8c\x5f\x13\x51\xbc\xbd\xe0\xdd\xc5\xf7\x96\xba\x3b\xcc\x7a\x37\x71\xc9\x0f\x14\xf9\x9d\x28\xb6\x32\xc5\xa1\x22\x1f\xd8\x4f\x28\xc5\x48\xc2\x7e\x7d\x57\x99\x5e\x39\xc7\x01\x7f\x08\x4a\xfa\x96\x4d\xa4\x89\x78\xe6\x4e\xea\x7a\x07\x93\xbe\xbc\x29\x1b\x0e\x71\xef\xbf\x5f\xfe\x1d\xae\x31\x3d\x6d\xc2\xe5\x78\xd2\x86\x8b\x3a\x54\x1a\x71\x81\x8f\x4a\xed\xe8\x12\xec\xb8\xc0\x67\xe7\x1a\x1e\x86\xd2\x94\x6b\x30\x91\x96\x5c\x1e\xc0\x19\x80\xbb\x23\x30\xe1\x1a\x49\x0b\x2e\x58\x64\x2f\x34\xd6\xda\xb9\xba\x3d\xbd\x51\xba\x82\x5f\x19\x18\x12\x93\x97\xea\xd6\xf5\xbd\xba\x85\xfd\x24\xcd\x3d\xc9\x73\xf6\xb2\xb7\x22\xcf\xd8\xfb\xde\x8a\x7c\x61\x5f\x7b\x2b\xf2\x96\x65\xda\x5b\xe6\x07\x96\xf5\xfe\xeb\xd3\xfb\x77\xe4\x33\xfb\x60\xdb\x1f\x7a\x12\x23\x2d\x5c\xdd\x92\x8f\x6c\x85\xac\xf3\x75\xb8\x5c\xf2\xc8\xc2\xe4\x1f\xe2\xb5\x0e\x36\xfe\x8e\xdd\x15\xbd\xad\x52\x43\x79\x93\xbe\x94\x0a\x31\x17\x1b\x4e\x7e\x66\x3b\x64\xa5\x50\xc2\x49\xc2\x2f\xc3\x34\x4b\x6e\x2d\x4c\x5e\x54\xc1\x82\xa3\x79\x23\x5e\xe3\xed\x49\x15\xf2\x8a\xed\xd9\x18\xfe\xde\xa6\xc9\xfe\x96\xfc\x89\x65\xbd\x3f\xcb\xc8\xe4\x27\xd6\xf9\x53\x9e\x77\xfe\x54\xa5\xaa\xbf\x81\x0b\xbc\xe7\xeb\x70\xb3\x24\xbf\xb1\xc8\xb6\xd3\x16\xa9\xcb\xa8\xc3\x6e\xd0\x33\x74\x57\xc0\x7e\x78\xd7\x7e\xe1\xf6\xac\xda\x31\xd5\xae\x3d\x2a\x70\x4f\x2c\x21\xe2\x2f\x9e\x36\x2f\x28\xe4\x05\xc4\x73\xf4\x8a\x64\xf8\x28\x2a\xb5\xb0\x5e\xcd\xb2\x39\x79\xa6\x22\x91\xc8\xb6\x79\x87\xb1\x57\xb6\xfd\x4c\x44\x24\x11\x2e\xfc\x67\xe4\x2f\x2d\x56\x27\x2f\x66\x7c\xce\x6e\xd0\x5b\x43\xb5\xaf\x84\xed\xe8\x9d\x7f\x61\x9c\x64\x05\xf9\x2b\xfb\xdd\xb6\x55\x27\x1b\x1d\xd6\xd3\x9e\x40\xa7\xfb\x33\x68\x2f\x36\x2f\x1e\x54\x1d\x7f\x5b\x90\x5f\xea\xc8\x31\x51\xcd\x2e\xee\x95\x6d\xff\x82\xde\x40\x30\xb9\x05\xe6\x8a\x5d\x48\x73\x17\x72\x8b\x22\x4c\x12\xf4\x82\x64\x78\x8a\xa2\x1e\x2f\xc9\x06\x70\x1e\xc9\x47\x6c\xdb\x7c\xf6\x71\x3e\xcb\xe6\xb6\x8d\xd4\x13\x93\x1e\xcf\x6e\x50\x54\x2a\x5e\x5d\x6c\xb8\x7f\x8e\x1c\x70\x77\x82\xb1\xaf\xd2\xe6\xb9\xe8\xd8\x8f\xe4\x1c\x51\x72\x57\x60\x4c\xca\x0c\x1c\x4c\x7e\x53\x15\xc5\xfe\x33\xf5\x54\x90\xff\x6e\xc8\x66\x45\x65\x8f\x4c\xb7\xd0\x57\x60\xd8\x95\x61\xac\xa0\x60\xb5\x97\x9b\xd3\xf8\x69\x78\x8a\x7f\x41\x82\x37\x8c\x00\xf5\x95\x64\xb3\x64\x6e\x78\xf6\x25\xaf\x5b\x06\xf1\x9d\x29\xdf\x65\x17\x08\xfc\x75\x54\xda\x7b\x22\x5c\x76\x9f\xe8\x21\x2e\x91\xd8\xde\x10\x8e\xe1\x46\x1d\x65\x00\xdc\xa1\xc4\x16\xf0\xfc\x02\x1e\x54\x98\xe8\xbb\x4c\xba\xe4\x9f\xf1\x39\xce\xf3\x0c\x17\xe4\x87\x7d\xd3\x42\xce\x2e\xeb\x63\x02\x14\xa8\xf2\xcb\x20\xbf\x37\x24\xc3\x15\x05\x73\x43\xc3\x30\xaa\xc5\xab\x0d\x18\xb8\x16\xae\xc6\x07\x3a\x3d\x2a\x0a\xf2\xf7\x76\x98\x1a\x12\xb1\x2f\x48\xd4\x44\xf4\xad\xd4\xea\x3f\x8d\x0c\xfb\x3d\x28\x85\x45\xd2\x86\x2f\xcf\x33\xc6\x3e\xc2\xdf\x20\xcf\x43\xad\x39\x58\x6e\xf8\x05\xf9\xf3\xc1\x52\x80\x22\x49\xc8\xbe\xa0\x68\xfa\xc6\x97\x25\xc6\xa2\x44\x80\xf1\xd5\x25\x06\xa7\x58\x36\x8c\x85\xb3\x40\x16\x19\x41\xff\xbf\x82\xb6\xc6\xb2\xc8\x17\xb3\xac\x1a\xe4\xb8\x38\xfa\x3d\xcf\x51\x8c\xd0\x5b\xd3\x88\x45\x69\x27\xd6\x26\xcc\xbe\xaf\x68\xb9\x04\x57\xc7\x54\xe3\x2e\xbe\x63\x49\x51\x3a\x67\x8b\x7d\x7e\xa8\x5d\xc4\x4a\x0c\x0b\xa6\x48\x1e\x6f\x24\x21\x29\xd5\x92\x37\x04\xa6\x5d\x49\x27\xf2\x71\xf6\x71\x0e\x54\x86\x2a\xb2\x81\xb9\xf6\x9b\x66\xd4\xc4\x44\x8a\x70\x69\x89\x7b\x1c\xd9\xf6\x4f\xb6\xfd\x1b\x7a\xd5\xa6\xa7\x90\xf2\xcc\xcf\x0a\x4c\xfe\x02\x46\x35\xdf\x68\x29\xae\xd4\x2f\xbf\x14\x98\xbc\xec\xad\xd8\x0f\xe4\x7d\x6f\xc5\x7e\x21\x4a\x37\x45\x6c\x58\xec\xef\x84\xa3\xb1\x2b\xde\x5e\x8b\xf0\xb1\x78\xfa\xb3\x58\x39\x3b\x60\x4c\x6d\xdb\x31\x7a\x45\xac\xb6\xad\xc8\x22\xaf\x81\xc0\xb7\xbd\x55\x9b\x35\xd0\x5f\xd0\x0a\x54\x13\x31\x09\x51\xd8\x7b\xdd\x0d\x7b\x7f\xed\x86\xbd\x57\x8f\x3a\xbf\x93\x3b\x39\x3c\xfe\xdb\xa2\x5a\x0f\xfe\xc6\x4c\x8f\x0e\x24\x4c\x9f\xc3\x45\xc1\xa7\x6d\xc2\x83\x25\xec\x7c\x7a\x99\x25\xa0\x38\x40\xd4\x75\x1a\x91\x97\xd8\x44\x19\x3b\x13\xb8\x29\x22\xc6\x6e\x4a\x0c\x43\x7c\xb2\x8b\xd2\x45\xbc\x15\xd9\xa5\x35\xcc\xc6\xff\x62\xce\xe9\xdf\x34\x11\xfc\xd7\x29\x5e\xa1\xbf\xcd\xfe\x0b\xf4\x38\x74\xfd\xfe\x87\x7d\x42\x2b\xe9\x9f\x1a\x13\xce\x99\x73\xfa\x3f\x3a\x3e\xe7\xa7\x78\x8d\xfe\x67\xc6\xa5\xcb\x2e\x50\x98\xd4\x4d\x55\x94\x28\x1d\xa6\xb6\x4b\x4a\x7f\x26\xbc\xcb\x2c\x0b\x4f\x7f\x9e\xf1\xb9\x2f\xfe\xb0\xb7\x62\x90\xc9\x17\x7e\xfb\xaa\x91\x28\x5c\xa1\xbf\x1a\x57\xb2\x4b\x91\x18\x1f\x35\xc9\xbf\x26\xa1\x91\x3b\x50\xc7\xc2\x05\xd9\xa5\xfc\x13\xcf\x6a\xde\x83\xf1\xdd\x4f\xac\xe3\xc8\x4f\xe1\xd5\xd6\xd4\x26\x84\x4f\xa0\xa0\x5b\x6f\x51\x13\xb3\xe7\xfe\x0b\xb8\x6c\x7a\x83\x38\xf6\xff\x1b\xdd\x48\x65\xea\x82\x34\xb4\xc7\x7f\x21\x7b\x20\x3d\xff\x4d\x0e\xea\xe1\xfe\x40\x5a\x10\x60\xfc\xbf\x37\x42\x65\xa7\xa7\xfe\x9f\x0b\x4c\x3e\xd8\x76\x55\x7f\xd4\xf9\x1d\x54\xa0\x9a\xf7\x54\x6f\x51\x79\x47\x25\x4d\x06\xac\x0e\xfb\x8c\xe4\x42\x6f\xdd\x15\xf0\x76\x17\xf8\xbc\x30\xde\x65\x3f\x48\x1a\xc7\xc4\x12\xac\x1e\x9c\xd1\x14\x97\xd7\x1c\xb7\xf2\xa2\x90\xdb\x76\x07\x06\xd1\x58\x47\xc5\x6e\x38\xe3\x73\x12\x32\x7a\xba\xb7\x28\x85\xa7\x5a\x9b\xbb\x01\x85\xae\xab\xbc\xc7\xc5\x21\xb1\xb4\xd3\xb9\x58\x7c\x12\x96\x61\xd2\x49\x6c\xfb\x1a\x89\x95\xb6\x06\x6b\xa6\xb6\xac\x04\x2c\xac\x93\xc6\xed\x28\x26\x9d\xbf\x8a\xbd\x59\xaf\x24\x05\x26\x22\x4f\x96\x91\xcf\xea\x36\xf9\x03\x60\xf8\x14\x98\x18\x6c\xd3\xec\x1f\x73\xed\x11\xc7\x08\x25\xff\x30\xe3\x68\xac\x58\x4c\x36\xe8\x6d\x39\x43\xe0\x2d\xc8\xd6\x1a\x86\x59\x2c\x2d\x1b\xa4\x58\x68\xd5\xbb\x0a\xe1\xa2\x34\xaf\x52\x2e\xe2\xb5\xa0\x41\x83\xa0\x2a\x97\xf1\xd4\x1d\xfa\xd4\x1d\x12\xed\x43\xbf\xa1\x45\xe5\xfa\x9e\xdb\x62\x83\xa1\xa0\x52\x5d\xbf\xef\x4a\x6f\xa8\x64\x30\xf1\x07\x13\x6d\x7c\x05\xa0\x23\xa5\x85\x46\x5d\x63\x10\x80\x86\xa4\xe6\xd5\x68\xec\x8f\xc6\x1a\xc7\xc5\xf5\xc7\xae\xd4\x24\xac\xee\x14\x9b\xae\x87\x1e\x70\x4c\xa6\x9d\x7e\xb9\x6e\xcd\x74\x09\x04\xcc\x35\x97\xc7\x03\x2a\x4f\x4b\x7d\x07\x4b\x9f\xa4\x3f\xed\x56\x2b\x9e\xa8\x83\x53\x5f\x1c\x9c\xa2\xda\x87\x15\x8b\x7a\x2f\x82\x2c\xf8\x25\xe4\x37\x64\xcb\x92\xde\xb3\x9f\x7e\x01\x1d\x82\x14\x42\xd6\x6c\x61\x8c\x1c\x9c\xf4\x41\xf5\xf3\x97\x37\x2f\xff\x5a\x22\x7a\xfc\x55\x4a\xac\x77\x1d\xc6\x16\x98\xdc\x19\xd9\xfb\x0b\xad\xe0\x2f\x2d\xc7\x92\xde\xf3\xf7\xef\x3e\x7d\xfe\xa8\x3c\x89\xc9\x48\xa0\xd0\x2c\x4a\x6b\x5b\x20\xb7\xb6\xbd\x05\xa4\x87\x14\x90\x4b\x97\x5a\xb1\xba\x74\xb3\xfd\x97\xfb\xd0\xd2\x3b\x11\xbf\x39\x5e\x20\x17\x6b\xbd\x07\x0d\xd4\xd6\xbb\xb8\xcd\xf8\xcf\x25\x1a\x7f\xbd\x36\x6d\xee\xf3\xcc\x29\xbc\xb6\xed\x6a\x81\xd3\x33\x64\x2d\x27\x50\xa8\xf4\x06\x4c\x5e\x97\xa9\x40\xa3\x50\x12\x01\x80\x76\x22\x46\x2d\x46\x0d\xbf\x7b\x09\xd8\xc4\xf1\x1b\xa4\xe6\xe3\x02\x63\x14\xa0\xf4\x24\xc2\x58\x69\x85\xae\x54\x29\x4b\xf5\xa6\x74\x11\xa3\x27\xe9\x29\x06\xa5\xd7\xbf\x84\x51\x36\x46\x57\xdd\x2e\xd9\xf6\x2e\xf5\x6b\xd4\xed\x56\xf2\xba\x5d\x51\x54\xa6\xb6\x66\xfb\xeb\xa6\x8c\xda\x84\xb1\xe1\x72\xcf\x75\x7d\xea\xba\x84\xba\x9e\x4f\xdd\x7b\x6d\x99\x80\xda\x0f\xcb\x3a\x1b\x44\xd4\x91\xd4\x2e\xa8\x90\xdc\x69\xba\xf4\x25\xe5\x97\x74\xaa\x2c\x84\x5a\xaa\x00\x85\xed\xa9\xeb\x51\x97\x62\x64\x01\x7c\x8d\xe7\x5a\xa4\x7f\xbf\x18\x57\x6a\x90\xd5\x05\x1e\x32\x50\x9b\x26\x51\x9f\xba\x52\xe8\xb1\xa7\x58\x67\x14\x35\xec\x5b\x64\xfc\xaf\x2b\x6a\x4f\x03\x4e\x16\xf5\x26\xca\xe8\xb0\xae\x83\xf8\xbf\x2b\x68\xe8\x1c\x2c\xe8\x5f\xdb\x79\x4d\xbf\x45\x46\x41\xe3\xba\x52\xe2\xff\xb2\x1c\xb7\xbd\x1c\x31\x27\xfe\xc5\x5d\xe7\x1d\x2e\xe9\x5f\xdc\x77\xfd\xc3\x25\xfd\x6b\x3b\x6f\x4f\x73\xf8\x5f\x55\x50\x89\x57\x55\x95\x35\x7c\x58\xcf\x46\x6d\x83\x18\x39\x72\x23\x9c\x28\xa7\xa9\xc3\xa1\xb2\x58\xd2\xc0\x4f\xb4\xb4\x7e\x90\xc0\x4f\x03\x2d\x33\x1c\x60\xb2\x62\xb1\x58\x14\xff\xca\x83\x2f\x64\xdb\x66\x71\x43\xd6\x2c\xed\xed\x56\xc0\xee\x93\x25\xbb\x2b\xc8\x55\xdb\x19\xe7\x5f\xa0\xbb\x73\xcd\xf6\x7c\x8b\x81\x11\x05\xc7\x7a\x95\x5c\x55\xb2\xf7\x8e\xdc\x22\xd6\x68\xa1\xc4\x65\xa2\x05\xe0\x32\x0c\x5c\x55\x82\x52\xfc\xb4\x34\xc1\x9b\x97\xc6\x4f\x87\xbd\x8f\xa5\xa0\x22\xb4\x97\x1d\x51\x9e\xc7\x6e\xd9\x9e\x1e\x93\x8e\x43\xae\xc8\x35\x49\x49\xc7\x11\xe3\x78\xb4\x69\x17\xfc\x01\xe4\xff\x2d\x40\x68\x21\x0d\x72\x26\x81\x2c\xf3\x5c\xbe\x62\xb4\xc4\x64\x24\xab\xbf\xc4\x85\x60\x59\x03\x84\x12\x96\x8a\x90\xe7\xd5\xb1\x1d\x5d\xd5\x5a\x6b\xb8\xa6\xc0\x24\xee\xbd\x7b\xf9\xf2\x05\xeb\x38\x24\x42\x33\x4b\x8a\x02\x2d\x22\xce\x93\x16\xb1\x2e\x39\x5c\xe1\xf3\xcc\x9a\xef\x81\x19\x64\xec\xb6\xe6\x23\x2f\x9b\xf1\xf9\x51\x88\x32\xc2\x4d\x85\xe2\x50\x0d\x49\x86\x6d\xbb\xb3\x15\x3c\xb1\xba\xe1\x5c\x09\x7e\x5a\x3e\xc1\x36\x9c\x60\xa5\xd6\xad\x02\x67\x7c\x0e\xc9\x35\x9f\x2e\x2a\xc1\x18\x97\x36\x0b\xb1\xbe\xec\x36\x3c\x32\x92\x0c\x70\x10\x0a\xe5\x44\xd2\xa7\x62\x77\x93\x9a\x59\x2e\xf5\x5d\x2a\x35\xb3\xd4\x36\x6b\xa2\xe0\x01\xe6\x6a\xc5\x5c\x36\x5d\x4b\xb5\x32\x97\x2e\xd5\xcc\xe5\x00\x1f\x19\x83\xfb\xff\x82\xa2\x1a\xd8\x23\x2b\x67\xf3\xa4\xac\x84\xa0\x42\x30\xd8\x21\x19\xe9\xd0\x86\x0f\x3c\xa3\x3f\xa0\xc5\xdf\x03\x8a\xee\x8d\x1b\x2e\x74\x95\xa7\x79\x00\x06\x00\x6e\x7a\x50\xde\x44\x6a\x87\xb7\xab\x4d\x90\xbd\x6d\xb8\x35\x97\x67\xb7\x14\xf0\x0b\x6a\x0e\x35\x63\x29\x02\x0c\xd1\xce\xd0\x0d\x0a\xd0\x8e\x38\x98\x24\x28\x25\x3b\xb2\x23\x19\x71\x08\x6d\x7a\x09\x26\xa9\x64\xca\x06\x18\x59\xaa\x44\xc9\x8e\x69\xb6\x4b\xfb\x33\x1d\xf8\xb4\x86\x1a\x31\xf6\xbd\x31\x19\xf8\x70\x9d\xdd\xf4\xd6\xf5\x4f\xf6\x05\x40\xc7\xdf\xd3\x1b\x99\x09\xab\xa3\x0f\xd2\xe6\xc0\x13\x7d\x29\xb9\xef\x23\x3f\x40\x19\x71\x2a\xd0\x1d\x24\xba\x43\xf4\xa4\x43\x0c\xf4\x62\xea\xc7\x20\x4e\xdc\xd5\xfb\x24\xe3\x91\xea\x13\xed\xdf\xbe\xb5\x6f\xf6\xfb\xa5\xe9\xde\xeb\x81\x1b\x5b\xa9\xed\xd0\x68\xf8\x3d\x0a\x22\x87\x9d\x88\x1f\x56\x04\x51\xcd\xaa\xd4\x49\xa0\x5d\x3e\xa5\xaa\xfe\xba\xe6\x0f\x79\x78\x04\x64\xc2\x48\x1d\xfb\x34\xee\x60\x68\x62\x0d\x82\x77\x21\x14\x29\x76\x9b\xdc\x05\x69\x1b\x31\xb3\xd0\xb6\x23\x8d\x4c\x97\xa0\x6c\x9a\xf5\x2e\xc2\x68\x29\x36\x96\x52\x97\xcf\x70\xb6\x2d\x39\x7d\x00\x24\x81\x6a\x3e\x60\x5a\x69\xe8\x31\x80\xa0\x4a\x1a\xb2\x8a\xa7\x36\xe7\x1e\x32\x0a\x63\xac\x72\xe9\x61\x94\x0d\xe5\x3d\x80\xd6\xfc\x9a\xdc\x5d\x6e\xe2\x8b\x60\xe3\x43\xc7\xb4\x78\x05\x71\x9b\x5e\xbe\x38\x9a\x8c\x94\x2b\x51\x70\x7a\x3b\xf2\x27\x70\x80\x69\x7a\xf1\xe2\x68\x32\x36\xe3\x8d\xfd\x89\xec\x82\x07\x0e\x3a\xe2\xc0\xfa\x51\xba\xf9\x2c\x9d\x20\x73\xe4\x3a\x65\x5e\xa0\x96\xec\xf8\xae\xa1\xe0\xf0\xed\x9e\xab\x16\x9b\xe0\x6a\xeb\x37\xef\xca\x14\x79\x56\xea\x88\x44\x3e\x06\x5f\x01\x0f\xbc\xe1\xba\xca\x6d\xba\xae\x3a\x5c\xdc\x8b\x97\xaf\xcf\x3f\xbc\xfc\x78\xfe\xf1\xd9\x0b\xa9\xec\xf8\xe1\xcd\x63\x3a\x76\x1a\xd9\xdd\x6b\xf4\x4c\xc7\xce\x63\x95\xb4\x91\xf9\x92\x5f\x26\xbc\x7d\xa2\xf1\x47\x49\xa3\xce\x0f\x79\x98\x19\xf6\xe5\xf4\x18\xba\x7b\xae\x0f\xd3\x45\xb0\xa9\x9f\xf5\x49\x48\x62\x12\x54\x80\x03\x70\xff\xa5\x43\xeb\xce\xc5\x5c\x7f\xe8\x92\x61\xdf\x1f\xc2\xb6\xfb\x0d\x2e\x66\xb4\xd7\xbf\x60\xb9\x5c\x37\x06\x4a\x70\xca\xca\x52\x09\x4c\x5b\x62\x96\x88\x5f\x0d\x59\x05\xf6\x2e\xb8\x8b\x22\xf5\x8b\x42\x3b\xce\x51\x98\xc7\xd8\xfe\x03\x85\xdd\x18\x82\xf1\xd3\xa7\x4f\x3d\x8a\x73\xa7\xd9\x3f\xdf\xec\x7a\x2f\xbc\xda\x6d\xd6\xdf\xeb\x90\x90\x04\xa2\xae\x74\x48\x52\x16\xc1\xef\x8e\xa1\xe0\x51\xac\x6a\x1a\xc2\x13\x1d\x56\x9a\x42\x8f\xd2\x2e\xda\x41\x90\x68\xc7\xa3\x54\x45\x94\xb9\xed\x30\x7c\x69\xb6\xe0\x9b\x7d\xfe\x85\xe9\xee\xe2\x9f\xea\xdb\x13\xd5\xb7\x27\x08\xfd\x21\x3a\xf7\x0f\x14\xfe\x1a\x63\x3b\x3c\x91\x0d\x39\xd4\xb5\xdf\xec\x27\xf0\xe3\xb3\x17\x30\x5d\x5e\xbc\x7c\xed\x1b\x74\xdf\xc8\xee\x5e\x77\x81\xc6\x2c\x6b\x64\x9e\x04\xcb\x30\x68\x9a\xca\x1f\x9c\x2e\x0f\xac\x52\x86\x6f\x43\x98\x1d\x30\x81\x4c\xba\x2f\x29\xfe\x9b\x97\xa6\x34\xbc\x8c\x2e\xc2\x36\x65\x71\xe9\xe8\xaf\xc3\xf8\x94\xfb\x60\x65\x43\x1f\x73\x70\xee\xe7\xf3\xa7\x7b\x9d\xfd\xcd\x6b\xd3\xee\x9f\xa7\xe3\x92\x90\xbf\x9d\x92\xef\x21\xe5\x36\x5a\xfe\x3e\xd5\xb1\x49\x1d\xb4\xca\x05\x6e\x5d\xfa\xe9\x16\x1b\x0a\x47\xa3\xbe\xe9\x8c\xe0\xfc\x5c\x5e\xa8\xbc\x86\xab\x9e\xf3\xf3\xa6\x1c\xb3\xa7\x39\x6d\xc1\x5f\xc3\xe1\x33\x42\x19\x26\xc6\xdd\x7f\xc7\x21\x8d\xeb\xc7\xa2\x01\x50\xae\x44\xe8\x25\xff\xa9\xc4\xe0\x7d\x7f\x04\x64\xd1\xf4\x24\xf1\xef\x69\xe0\xa7\x6f\x6a\x60\xfa\x6f\x69\xe0\x03\x0c\xd9\xb8\x5f\x71\x8f\x26\xf0\x38\x8f\xb2\x24\x3c\xc4\x3d\xd6\x91\x3a\xc6\x7d\x7f\x2c\xcb\x7a\x80\xab\x1a\x0f\x34\x07\xaf\x30\xa0\x46\xca\x7d\xa4\xdb\xdf\xaf\xc0\xa1\x8b\xb5\xb4\x5d\x99\x94\x04\x62\x26\x48\x8c\xb6\x10\x1c\x4e\x26\x28\xc5\x64\xc1\xee\x0a\xb2\x62\xce\xe9\x46\x73\xb8\xab\x53\x5c\x4a\xc7\x51\xc0\x76\x28\x25\x19\xdb\xcc\x56\xa0\x43\x6a\xdb\x31\x5a\x48\x28\x31\xd5\xd8\x45\x5d\x45\xd4\xed\xfb\x6e\x5f\xf7\xb4\xf4\x03\xa1\xb1\x45\x9a\x1e\x39\xbe\x8d\x94\x40\x9b\x2b\x54\x18\x19\xb1\xe1\xc2\xe2\x5e\xb2\xda\xc4\xf1\x97\xdd\xb6\x65\xde\xe8\xa3\x1e\x98\x7b\xa8\x03\x4d\x24\xf5\x4b\x34\x62\x12\x8b\x51\x40\xd2\xea\xba\xac\x77\xc9\x33\x05\x8c\x14\xb0\x10\x05\x4d\x88\x7f\x7d\x59\x55\xf3\x0f\x22\xc8\xab\x89\x47\xd3\xf4\x15\xf2\xef\xef\x80\x96\x79\xf5\xcf\x74\x40\xfa\xaf\xea\x80\x07\x1c\xe8\xc2\x5c\xa3\xfb\xa4\x0e\xb7\x8c\xdf\x39\xd5\xbe\xc7\x36\xaa\xef\x28\x1d\x46\xb5\x6e\xc9\x43\x58\xcc\x34\xfc\x46\x7c\x91\xf2\xe4\x1a\x34\x25\x14\xfc\x47\x0d\x96\x65\x28\xe5\x92\x13\x05\x48\xdf\x77\x15\x20\xfd\x04\x93\x2d\x5b\xf5\x3e\xbe\xfc\xfc\x97\x8f\xef\xc8\xba\x4d\xec\x18\xed\x36\x1b\xc3\x1c\x35\x00\x6d\x81\x65\x8b\x46\x14\x40\x9a\x67\xb6\x8d\x00\xa4\x5b\x6b\xf7\x22\x8c\x0f\xc8\x33\xab\xc3\x77\xef\x3c\x2e\x1a\x5e\x5f\xaf\xe0\x16\x4e\x64\x15\xeb\xac\x96\x70\xfb\x4d\x6e\x1b\x77\xca\x69\xa5\xf2\xbf\xa8\x23\xf7\xc6\x8c\x13\x09\x41\x7b\x69\xc0\x0a\xcb\x7d\x59\x7a\x85\x61\xc9\x91\x68\x5e\x87\x25\xb6\x8d\x5a\xf4\x13\x93\xde\x2e\x4a\x77\x17\x62\xdd\xba\xe0\xd3\xc4\x54\x0d\x8a\xcc\x4f\x08\x17\x7e\x50\x21\xea\x2e\x58\xa2\x31\x8a\x1b\x4a\x0a\x5c\xc1\x7b\x67\xb8\xb8\x92\x75\xb2\xed\xa5\xb2\x11\x3d\xba\x35\x51\x3b\xd0\x5d\x41\xee\x8c\x22\x6a\xd2\x0f\x95\xa2\x90\x22\xc0\xcb\x16\x00\xb7\x94\xf1\xe2\xe8\x72\x2f\xc3\x88\x7f\x6d\x03\xac\x55\x69\xc0\x0a\xff\x0a\x69\x85\xb1\x84\x65\xbd\xf3\xb8\xec\xb4\x88\xad\x51\xd2\x13\x39\x80\x31\x7f\x84\xeb\x22\xc5\x84\x70\x03\x98\x19\x12\x89\x66\xae\xc2\x28\xd8\x6c\x6e\xef\xa4\xda\x08\x2f\x8a\xa2\x20\x7c\xef\x14\xbe\x57\x0d\xa8\x85\x4a\x73\x64\x56\xa6\x22\x88\x46\xc5\x20\x53\x89\x0d\x14\x95\x29\x39\x3b\x58\xbb\x65\x6b\xed\x4a\x5d\x17\xb1\x87\x17\x64\x11\x5f\x6d\x37\x3c\x3b\x84\xfe\x7a\xb8\xcf\x0e\x56\x53\xe7\x88\x45\xdd\xa6\x46\xed\xb4\xfc\xfc\xbb\x2b\xa9\xc9\xe0\xa2\x46\x06\x3b\x29\x1f\xba\x10\x6b\x54\xb9\x34\x10\xeb\x7c\x65\xe1\xde\xf9\x8a\xc1\x34\x3e\xda\xa0\x0b\x13\xbc\xba\x85\xd8\xea\x50\x78\xb7\x48\xa1\x37\x9f\xaf\x70\x41\x56\x71\xf2\x32\x58\xb4\x99\x07\x64\x86\x37\xdf\x88\xdf\xa0\x48\x63\x29\xe7\x79\xa2\x1f\x8d\xfb\x73\x38\x31\x89\x1a\x29\xf0\x8c\xac\x57\xcd\xac\x06\xc9\x66\xb2\x5f\x2a\x99\xb0\x31\xaa\xc0\x3a\x84\x8d\x79\xa9\xa9\x2d\xaa\xc6\x32\x01\xd3\x1c\xc0\x43\xbe\x90\xd6\x6d\x2d\x4d\x68\xc3\xdd\x5e\x87\xa9\x14\xa7\x5f\x90\x84\xad\x91\x58\x79\x66\xb1\xc4\x32\x2d\xb5\x84\x53\x54\x1a\x8d\x97\x0c\x48\xd4\xc0\x27\xca\xa6\x11\x00\x92\x64\xa8\xad\x9f\x8d\xc6\x83\x4b\x03\xa3\xff\x8d\x04\xe5\x09\xa3\xc4\xd8\x3f\xae\xe1\xe2\x02\xde\xbc\xec\xac\x70\x85\x56\xfb\x20\xc4\x62\x1b\x85\xd9\x2c\x31\x05\xb5\x02\x44\x81\x19\x63\x5b\xf5\x5a\xf5\x2d\x34\x51\xcf\x2a\x73\x45\xcb\xd4\x8a\xc6\x71\x91\x95\xc4\x8d\xa0\x7b\x4d\x19\x3e\xeb\xc8\xd3\x55\xbc\x6a\x35\x20\x64\x0e\xd9\x77\x0e\x4d\x12\x06\x92\x50\x94\xe1\x53\xfe\x24\x3b\xc5\xc9\x8c\xcf\x0d\xa1\x2f\xef\x76\xe7\x26\x95\xdd\x3f\x64\x75\xa4\x6b\x39\xc8\xf7\xf4\x5d\x66\x7a\xe4\x70\x4e\xa3\x12\xe0\xe2\xb4\xdb\x8d\x70\xb8\x42\x5c\x76\x5e\x32\x8b\xe6\x98\x68\xbd\x8c\x23\x7e\xb8\x0f\x32\xd5\x07\x05\x26\x8b\xda\xbc\x8b\x0f\xe8\x52\x2a\xb5\x93\xd7\xe4\xae\x9a\xc2\xfe\x85\xa1\x47\x61\xcc\xec\x56\x00\x27\xc0\x7c\x6e\x47\x7b\x96\x2a\x47\x80\xf3\x0c\x08\xcf\x00\x41\xa0\x31\x9d\x9b\x5e\xcb\xee\xe5\x4c\xb4\xb6\x50\x5f\xf1\x80\xa0\xf7\x13\x4b\x3f\x35\xa6\x14\xb2\x42\x11\x57\xeb\x59\x9b\x40\x58\x2e\x5a\x49\xb5\x5c\x94\x2b\x87\xe0\x6a\x5a\x06\xb8\x24\xc6\x0a\x93\x3e\xa8\x54\xe3\x2b\x79\x64\x8c\x32\xc2\x11\x6e\xe2\x84\x57\x5c\x5a\x81\x0b\x9f\x93\xef\x4b\x2b\xe7\x83\x4c\x5a\x5a\xc3\x48\x15\x16\xd5\xf7\x86\xe0\x1a\x70\xb3\xa1\x77\xbf\xe7\xf6\x68\xa8\x58\xec\x49\x75\xbe\xab\x3a\x32\x4b\xda\x3a\x31\xe9\xad\x4a\xa8\xa4\xa8\xba\xce\x45\x61\x8f\x4f\x35\x10\xbd\x5f\x42\x90\x63\x09\x2e\x9e\xd5\xc1\xc5\x95\xe4\xa5\x82\xfd\x86\x8a\x1f\x10\xae\x0e\x47\x06\xf2\x62\xd6\xfb\xc2\x6f\x09\xac\xe1\x3c\x93\xc0\x14\x48\x61\xf8\xbe\xe5\x59\xb0\x0c\xb2\xa0\x2e\x2e\x03\xe9\x67\x28\x25\x67\x00\x2a\x55\x71\xef\xc3\x91\x3f\x1c\x29\xad\x1e\xef\x90\x47\xb7\x03\xa5\x5f\x05\x5b\x12\x8b\x5a\x64\x71\xc2\xab\x7a\x88\x99\xd9\x5a\x0f\x99\x61\x2b\x78\xb5\xc6\xc8\xaa\x23\x58\xc3\x35\x93\xe0\xe4\x48\x40\xc4\x89\xc0\xc4\x37\x4a\xf3\xbc\x93\xf6\x64\x69\xc8\xf4\x86\x12\xae\x50\xda\x4b\xc3\xdf\xb9\x0e\x92\xc8\xba\x3b\xa9\x22\x60\xa8\xc1\xef\x74\xea\x00\x93\x4e\x67\x07\x69\xf2\x3c\xd6\xa1\x59\x6b\x0f\x1d\x90\x13\xb8\x9e\xbe\x7c\x55\x87\x88\xe1\xa8\xa6\xd7\x27\x4e\x6d\x01\x8b\x44\xd7\xa5\xe2\xa8\x05\x7d\xb8\x33\xd9\xec\x52\xa0\x19\xc0\x0b\x68\x91\x49\x87\x39\xf2\x74\xc0\x52\xbd\x7f\x84\xd0\x9e\x0d\x9c\xc9\xa3\xb2\x35\xfa\xe4\x3e\xd5\x3a\xfa\xd3\x04\xc9\xfd\x2c\xd4\x18\x2d\x1b\x8c\xb1\xbf\xf1\xc3\xe2\x28\x92\x63\x75\xc9\x33\x3d\x50\x00\x08\xda\xb2\x55\xee\x50\x28\x36\xaf\xbd\x21\x73\xf5\x90\xa5\xa8\x76\xe1\x59\xce\x51\x9f\x3a\x00\xb4\xe2\x7a\x94\x94\x5d\x58\x1e\x02\xbd\x43\xde\xf7\x6a\xa4\xa6\x21\x31\xb3\xde\x3a\x48\x81\xd4\x2e\xb9\x38\xb3\x4a\x12\x4c\xf7\xdc\x31\x87\x2b\xa4\xa8\xbc\x02\xb9\x52\xef\x0a\x37\x3d\x32\xc6\x5f\x1e\x4b\x58\x30\x4d\x11\x27\x01\x49\x4a\xf6\x50\x93\xb2\xd1\x3d\x07\x94\x2d\x10\x27\x92\x3c\x0f\x52\x74\x50\xa7\xe8\x26\x4d\x19\x1d\x72\x40\x1e\xbe\x3f\xf7\x52\xe8\x91\x2f\xfc\xd6\xa8\xe7\xfb\x9b\xe8\xa1\x91\x84\x6b\x8f\xfb\x46\x32\x6c\x1d\xc9\x3a\xf9\x1f\x90\x8d\x37\x2a\x29\x46\xe9\xde\x3a\xb6\x77\x67\xf4\x70\x77\x86\xf7\x77\x27\xd4\xf1\x80\x78\xe1\x01\xca\x12\x14\x15\x7c\x03\x45\xa9\xe5\x24\x6e\x23\xa5\xd8\xb6\x03\x80\x8b\x02\x57\xdf\xb2\xe1\xeb\x20\xbd\xbf\xd5\xc1\xc3\xad\x8e\xbf\x99\x88\x0e\xdc\x03\x34\xc6\x47\xb4\xb9\x31\x3e\xeb\x20\xfd\x7f\x6a\x7c\x0e\x5c\x31\x34\xc6\xc7\xc3\xba\x8a\x72\x8f\xa9\x76\xba\xab\x7b\x2b\x59\x06\x06\x24\xc5\x77\x72\xfa\x57\x8a\xbe\xe9\x34\xf1\x23\x2c\x56\xfc\x10\xa5\x18\x17\x95\x0f\x8a\x7a\x1d\xf7\xd4\x40\xe1\x16\x19\x94\x58\x8c\x5b\x64\xaf\xe9\xca\x50\xdd\x22\x97\xf1\xd4\x2d\xb2\x77\x8f\x07\x0f\x93\x7f\x03\x4d\x9d\xc6\x2d\xb2\xcc\x6b\xff\x16\xd9\x6b\xfa\xc6\xf8\x06\xdc\x1f\x67\xdf\x1e\x3f\xf8\x67\xe0\x7e\xbc\xa6\x13\x83\xfb\xb9\xd7\x71\x05\x7b\x40\x2a\xd8\x46\x89\x78\x16\xb0\x3d\x20\xb3\x26\x66\xad\x3c\x0d\x27\xda\xab\xd1\x79\xca\x32\x8d\x81\x9f\x6a\xc0\xd5\xe3\x16\x93\x29\x85\x58\x26\x53\x4b\x14\x40\x95\x41\x3b\x78\xbd\xda\x67\x2b\x5d\x74\xa3\x9b\xc0\x44\xe9\x59\xc3\x35\x4f\x58\xdd\x4b\x48\x60\xc5\x7b\xed\x76\x12\x7e\xc9\xbf\x6e\xb5\xb5\x5a\x56\x43\x6e\x24\x3b\x56\x61\xa6\x05\x53\x6d\xa2\x2f\xa1\xd3\x4a\xb7\x29\x1c\x93\x4d\x2b\x3c\xe2\x1f\xbb\x12\xb5\xc4\xba\xb4\xf0\x74\xe7\x5b\x97\x56\x77\x67\xf2\x06\x25\xee\x5f\x84\x78\xf5\x06\x0e\x33\x8e\x53\xb4\xa9\xf0\x2c\x94\xf2\x8d\x3b\xf6\xdd\xd2\xb6\x1f\x10\xd4\x24\x1a\x2d\x20\xf3\x03\x09\x7c\x97\x1c\xdf\x99\xec\x93\xde\x36\x58\xbe\x8c\xda\x71\xce\xbe\x4f\xf1\x06\xec\x5a\x15\xa1\x4e\x7c\xea\x4c\x0c\x42\xfd\x2e\x61\xfb\x81\x5a\x7e\xca\x82\xe4\xde\x69\xf2\xcd\xf5\x74\x0e\xd6\xf3\x01\xc4\x92\xd2\xac\xff\x67\xbe\xfa\x4e\x6d\x3e\xd1\x37\x04\xd2\x42\x3b\xac\xba\x99\xbf\xd7\xf4\x67\x70\xb0\xe4\x8f\xe1\xe5\xfa\x3b\x8b\x76\xcb\xa2\x5f\x46\xcb\xbd\x82\x5b\xb4\xfa\x87\x18\x59\x41\x7a\x1b\x2d\xde\x28\xdb\x40\x99\x48\xda\xfd\x40\xa2\x16\xfd\xfc\x61\x43\x36\xdf\x48\x71\x58\x5d\xa5\xc4\x60\xb9\x4d\x33\x7e\x65\x3d\xa8\x5c\xe4\x35\x51\xf6\xd5\xb6\x50\xaa\xb1\x9a\x5b\x43\x13\x43\x5f\x6d\x0d\xb5\xb8\x7a\x7b\x68\x42\xd8\x1b\xf9\xee\x6d\x39\x4d\x30\x79\x23\xdf\xbd\x6d\xa7\x89\x71\x5e\x61\xca\x70\x44\xfb\xb4\x74\x73\x2d\x8f\xbf\x7d\x85\x3e\xef\xc8\xd5\xb9\xaf\x40\xce\x07\xca\x10\x09\x30\x19\x76\x2c\x45\x56\x58\x0e\x0e\xd9\x88\xf7\x9a\x67\x64\xb2\x60\x81\xb4\x47\x22\x2b\x76\xf7\xfc\xd3\xa7\x8f\xbb\x0d\xff\x39\x4c\x33\xbf\xe3\x90\xe7\x9f\x3e\x7d\xca\x6e\x37\xfc\x05\x5f\x6c\x82\x24\x10\xf5\xf2\x3b\x54\x04\xff\x22\x56\x62\x19\x8d\x92\xe7\x9b\x90\x47\xd9\x47\xbe\xc8\x74\xc8\x8b\xf7\x6f\x1b\xaf\xb2\x48\x23\xe0\x73\xfc\x85\x47\xba\xa0\x17\x41\x16\x7c\x4e\x82\x28\x5d\xf1\xe4\x4d\xc6\xaf\x74\xbc\x57\xe1\xa6\x2c\xe5\x4f\x9f\xdf\xfe\xfc\x6c\xb3\x79\x1e\x6f\x36\xd2\xcd\xa5\x0e\xdc\x0f\x79\x15\x27\x57\x2f\x37\x5c\xcc\x67\x1d\xf4\x89\x8b\x38\x46\xe0\x5b\xbe\x0c\x03\x5d\xfe\xdb\xf0\x8a\x8b\x7d\x00\x3a\x42\x7c\x7d\x17\x5c\xf1\xe5\xbb\x78\xc9\xdf\x06\x5b\x78\x8f\x97\x65\xaf\x7c\x08\x42\xd1\xda\xdf\x76\x3c\x2d\x5b\xf8\x61\xb3\xbb\x0c\xa3\xea\xa9\xcc\xe8\xd3\x2f\xaf\xa5\xc1\x91\x8e\xf9\xe9\x97\xd7\xef\x76\x57\x17\x3c\x31\x02\x3e\x04\xd9\xfa\x13\xbf\x34\x43\xe2\x30\xca\x8c\xf7\x7a\xf7\x7d\xfa\xe5\xb5\xec\xad\x38\x29\xbb\xea\x13\xec\x2d\xd2\x84\xa8\x0c\x13\x83\xf7\x69\xcd\x79\xa6\xeb\xfe\x99\x7f\xcd\x3e\x27\xc1\xe2\xcb\xf3\x6a\xf8\xca\xb0\x32\x20\xde\x2d\x74\x7d\x0b\xb2\x65\x09\x5a\x61\xb2\x66\xce\xe9\xfa\x89\xc6\x8a\x3d\x5d\x77\xbb\x72\x72\x2e\xc9\x15\xdb\xce\xd6\x73\x72\xcd\x56\xb3\xab\x39\xb9\x65\xa1\xf8\xb9\x64\xb7\xb6\x6d\x5c\xdf\x88\x93\xf1\xa5\x6d\xa3\xcb\xd9\x6e\x9e\xe7\x31\xba\x24\x3b\xb2\xc0\xe4\x72\xb6\x51\xaf\x1b\x72\x85\x49\x30\xbb\x9a\xb3\x05\xb9\xc6\x58\xd0\x3e\xd8\x9a\x65\xf8\x72\xb6\x9c\xe7\x79\x84\x2e\xc9\x92\x64\xb3\xe5\x5c\x29\x25\x57\x9e\xb6\xfb\xd4\xa7\x7d\x5a\x13\xe3\x0d\xc6\xfe\x40\xdb\xff\x69\xb5\x6c\xaf\x89\xc2\xbe\x7f\x7b\x6b\x98\x43\xfd\x04\xaa\x0b\x6f\xae\xae\x04\x9d\x64\xdc\x07\x57\x12\x64\xb1\xe1\x41\x62\x06\x42\x80\xda\x8a\xa5\x97\xb9\x72\x93\x68\xe2\xae\x37\x41\x58\xb4\x23\x9c\xfe\x50\xce\xe4\x31\x28\xfe\x66\xbd\x28\xb8\x0e\x2f\xc1\xd2\x3a\x60\x9d\x4e\x6c\xdb\x8f\xdf\x7e\x7a\xf3\xf2\xb8\x77\xd6\x7b\x2c\x31\x7d\xe3\xde\x2e\xe5\xc9\xb3\x4b\x1e\x65\xb8\xc6\x7e\x55\x87\x94\x4a\x68\x67\xaa\x20\x72\x14\xa1\x90\xcc\xe6\xd2\x18\x4f\xb9\x9b\xd5\x1b\x1f\x71\x31\x69\x93\x17\x4f\x33\xff\x55\x25\x62\x07\x67\x3b\x3e\x2f\xc0\x77\xcf\xeb\x6e\xd2\xfb\x09\x1c\x5d\x05\xd0\x5b\x9f\xc3\x2b\x1e\xef\x32\x3f\x45\x70\x02\x50\xaf\x98\x88\x8e\x8c\x32\xb1\xe2\x6f\xf4\x37\xfd\xbe\xb7\x70\x93\xfe\xd0\xef\x0f\xc9\x78\xec\x8f\xe5\xa2\x38\x6a\x1a\xa5\x70\xe4\x0e\xfa\x20\xf2\x9d\x50\xf9\xe3\xc9\x1f\x57\xfe\x0c\xe4\xcf\x48\xfc\xb8\x8e\x0a\x1c\xca\x9f\xbe\x0c\x54\x3f\x2a\xdd\x44\xbe\x39\xf2\x6d\x2c\x7f\x1c\x19\x48\xe5\xcf\x40\xfe\xc8\x5c\x06\x23\xf9\x33\x91\x3f\x63\xf9\x4d\xfd\xc8\x6f\x23\x99\xcb\x58\xfd\xc8\x98\x23\xf9\x33\x96\x05\x8d\x65\xe5\xc7\xa0\x6e\x43\xc7\xb2\x2e\x63\xd9\xb0\xb1\x6c\xc3\x58\x96\x37\x96\x79\x0e\x65\x82\xa1\x6c\xd1\x50\x26\x18\xca\x04\x43\x99\x60\x28\x13\x0c\x55\x02\x59\xfa\x50\x95\x2e\x8b\x1d\xc9\x5c\x46\x32\x97\x91\xcc\x65\x24\x73\x19\xc9\x5c\x46\x32\x97\x91\xec\xc1\xbe\xec\x82\x3e\x04\xba\x03\x4f\xbe\xc9\x1e\xf4\x64\xa0\xa7\x62\xba\xf2\x67\x04\x0a\x44\x7d\xd9\xad\x9e\x0c\xf4\x64\x3a\x4f\xa5\x93\xfd\xe9\xc9\x3e\xf3\x64\xcc\xbe\xec\xf2\xbe\x2a\x41\x46\xe9\xcb\x28\x03\xf9\x6d\x20\xeb\x32\x90\x95\xd7\x3f\xb2\xf2\xb2\x66\x74\xa0\xc6\x48\x36\x45\xe6\x49\x65\x41\xb4\xaf\x02\x65\x3a\x99\x35\x1d\xa8\x28\xb2\xcf\x64\xc3\xa8\xac\x27\x95\x6d\xa0\x9e\x1c\xa3\xbe\x8a\x22\x4b\x90\xb5\xa6\xb2\xba\xd4\x93\xdd\xea\xa9\x37\x15\x45\x96\x27\x6b\x4d\x55\x47\xba\xaa\x0b\x64\x8b\x5c\xd9\x4c\x57\x76\xa4\x2b\x3b\xd2\x95\x8d\x76\x15\x61\xca\x82\x86\x32\x81\x2c\xc8\x95\x23\xed\xca\x91\x76\x65\x6b\xdd\x81\x0a\x54\x51\x64\x41\x43\xf5\x4d\x66\x26\xa9\xc7\x1d\x02\x90\xa0\x2b\x89\xc8\x1d\xa8\x5c\x64\xb1\x54\x16\x44\x65\x2e\x54\x26\xa0\x32\x26\x95\x79\x52\x99\x80\xca\xac\xa9\x2c\x96\xaa\xe4\xb2\x20\x57\xb5\x4f\x35\x5a\x26\x77\x65\x66\x92\x14\x5d\x49\x9f\xae\xa4\x4f\x4f\x96\xe7\xc9\x12\x3c\x59\x9e\x27\x4b\xf0\x64\x09\x9e\xac\x8b\x27\x4b\xf7\x54\x79\x72\xda\xbb\x13\x69\x45\x23\x97\x04\x57\xce\x38\x57\xcd\x62\xb9\x40\xb8\x6a\xf6\x8f\x54\x66\xf2\x9b\xa4\x79\x4f\x76\xb2\x27\xab\xeb\xa9\xea\xca\x69\xe1\xc9\xa9\xed\xc9\x16\x79\xba\x0d\xaa\x82\xb2\xa0\x91\x0a\x94\xfd\x22\x67\xbf\x2b\xe7\xbb\x2b\xe7\xbb\x3b\x56\x35\x93\x59\x8f\x65\x02\x39\xdf\x5d\x39\xdf\x5d\x39\xdf\x5d\xb9\x6a\xb8\x63\x39\x8f\xd4\x42\x36\x51\xad\x95\xf5\x94\x8b\x95\x27\x57\x37\x4f\xae\x52\x9e\xa3\xaa\x2b\x6b\xe6\xa8\x86\xc9\xd6\x3a\xaa\x66\xb2\x12\x72\x39\xf4\x5c\xf5\x23\x63\x0a\xc2\xac\x99\x9b\x79\xb0\xad\x79\xd4\xa7\x1e\x25\xd4\x73\x7d\xea\xb9\x84\x7a\x9e\x4f\x3d\x8f\x50\xaf\xef\x53\xaf\x4f\xa8\x37\xf0\xa9\x37\x20\xd4\x1b\xfa\xd4\x1b\x12\xea\x8d\x7c\xea\x8d\x08\xf5\xc6\x3e\xf5\xc6\x84\x7a\x13\x9f\x7a\x13\x42\xfb\x8e\x4f\xfb\x4e\xb9\x5b\xd3\xbe\xeb\xd3\xbe\x4b\x68\xdf\xf3\x69\xdf\x23\xb4\xdf\xf7\x69\xbf\x4f\x68\x7f\xe0\xd3\xfe\x80\xd0\xfe\xd0\xa7\xfd\x21\xa1\xfd\x91\x4f\xfb\x23\x42\xfb\x63\x9f\xf6\xc5\x6e\x3f\xf1\x69\x7f\x42\xe8\xc0\xf1\xe9\xc0\x21\x74\x40\x7d\x3a\xa0\x84\x0e\x5c\x9f\x0e\x5c\x42\x07\x9e\x4f\x07\x1e\xa1\x83\xbe\x4f\x07\x7d\x42\x07\x03\x9f\x0e\x06\x84\x0e\x86\x3e\x1d\x0c\x09\x1d\x8c\x7c\x3a\x18\x11\x3a\x18\xfb\x74\x30\x26\x74\x30\xf1\xe9\x60\x42\xe8\xd0\xf1\xe9\xd0\x21\x74\x48\x7d\x3a\xa4\x84\x0e\x5d\x9f\x0e\x5d\x42\x87\x9e\x4f\x87\x1e\xa1\xc3\xbe\x4f\x87\x7d\x42\x87\x03\x9f\x0e\x07\x84\x0e\x87\x3e\x1d\x0e\x09\x1d\x8e\x7c\x3a\x1c\x11\x3a\x1c\xfb\x74\x38\x26\x74\x38\xf1\xe9\x70\x42\xe8\xc8\xf1\xe9\xc8\x21\x74\x44\x7d\x3a\xa2\x84\x8e\x5c\x9f\x8e\x5c\x42\x47\x9e\x4f\x47\x1e\xa1\xa3\xbe\x4f\x47\x7d\x42\x47\x03\x9f\x8e\x06\x84\x8e\x86\x3e\x1d\x0d\x09\x1d\x8d\x7c\x3a\x1a\x11\x3a\x1a\xfb\x74\x34\x26\x74\x34\xf1\xe9\x68\x42\xe8\xd8\xf1\xe9\xd8\x21\x74\x4c\x7d\x3a\xa6\x84\x8e\x5d\x9f\x8e\x5d\x42\xc7\x9e\x4f\xc7\x1e\xa1\xe3\xbe\x4f\xc7\x7d\x42\xc7\x03\x9f\x8e\x07\x84\x8e\x87\x3e\x1d\x0f\x09\x1d\x8f\x7c\x3a\x1e\x11\x3a\x1e\xfb\x74\x3c\x26\x74\x3c\xf1\xe9\x78\x42\xe8\xc4\xf1\xe9\xc4\x21\x74\x42\x7d\x3a\xa1\x84\x4e\x5c\x9f\x4e\x5c\x42\x27\x9e\x4f\x27\x1e\xa1\x93\xbe\x4f\x27\x7d\x42\x27\x03\x9f\x4e\x06\x84\x4e\x86\x3e\x9d\x0c\x09\x9d\x8c\x7c\x3a\x19\x11\x3a\x19\xfb\x74\x32\x26\x74\x32\xf1\xe9\x64\x42\x5c\xc7\xf1\x5d\xc7\x21\xae\x43\x7d\xd7\xa1\xc4\x75\x5c\xdf\x75\x5c\xe2\x3a\x9e\xef\x3a\x1e\x71\x9d\xbe\xef\x3a\x7d\xe2\x3a\x03\xdf\x75\x06\xc4\x75\x86\xbe\xeb\x0c\x89\xeb\x8c\x7c\xd7\x19\x11\xd7\x19\xfb\xae\x33\x26\xae\x33\xf1\x5d\x67\x02\x6e\x74\x5d\xea\x80\x53\x59\x97\x52\xf0\xc4\xe9\x52\x17\x1c\x4f\xba\xd4\x03\xa7\x8e\x2e\xed\x83\xbf\x41\x97\x0e\xc0\xd3\x9f\x4b\x87\xe0\x73\xcf\xa5\x23\x70\x24\xe7\xd2\x31\x78\x7d\x73\x01\x54\xdd\xf1\x5d\xd7\x01\x6f\x69\x2e\x98\xae\xb9\xbe\xeb\xba\xe0\xee\xcb\x75\x3d\xf0\x30\xe5\xba\x7d\x52\x62\xd2\xbb\x43\xdf\x75\x87\xe0\x7d\xc6\x75\x47\xe0\xc4\xc5\x75\xc7\xe0\x0a\xc5\x75\x27\xda\x7d\xb0\xe7\xf8\xae\x57\x5d\x9d\xb8\x9e\xeb\xbb\x9e\x0b\x10\xea\xae\xe7\x01\xae\xb9\xeb\xf5\x01\x68\xdc\xf5\x06\x00\xff\xed\x7a\x43\x40\xe0\x76\xbd\x11\x40\x46\xbb\xde\x18\x60\x9c\x5d\x6f\x02\x78\xca\x6e\xdf\x01\x68\x63\xb7\x4f\x01\x69\xd7\xed\xbb\x00\x4c\xeb\xf6\x3d\xc0\x8a\x75\xfb\x7d\xc0\x4c\x75\xfb\x03\x40\x31\x75\xfb\x43\x00\xf5\x74\xfb\x23\x40\xe3\x74\xfb\x63\x80\xc7\x74\xfb\x13\xc0\x77\x74\x07\x0e\xc0\x2d\xba\x03\x0a\x18\x88\xee\xc0\x05\x60\x42\x77\xe0\x01\x6c\xa0\x3b\xe8\x03\x1e\x86\x3b\x18\x00\x52\x80\x3b\x18\x82\x11\xbf\x3b\x18\x81\x85\xbd\x3b\x18\x83\xf9\xbb\x3b\x98\x80\x75\xba\x3b\x74\xc0\x78\xdc\x1d\x52\x30\xee\x76\x87\x2e\x98\x5e\xbb\x43\x0f\x0c\xa3\xdd\x61\x1f\xec\x96\xdd\xe1\x00\x6c\x8a\xdd\xe1\x10\x4c\x22\xdd\xe1\x08\x0c\x05\xdd\xe1\x18\x8c\xe4\xdc\xe1\x04\x8c\xc2\xdc\x91\x03\x26\x56\xee\x88\x82\x0d\x93\x3b\x72\xc1\xb6\xc8\x1d\x79\x60\x20\xe4\x8e\xfa\x60\x00\xe4\x8e\x06\x60\xe0\xe3\x8e\x86\x60\x94\xe3\x8e\x46\x60\x2d\xe3\x8e\xc6\x60\xe6\xe2\x8e\x26\x60\x89\xe2\x8e\x1d\xb0\x05\x71\xc7\x14\x2c\x2f\xdc\xb1\x0b\xf6\x0b\xee\xd8\x03\x73\x01\x77\xdc\x07\x3d\x7f\x77\x3c\x00\x55\x7c\x77\x3c\x04\x4d\x7a\x77\x3c\x02\x0d\x77\x77\x3c\x06\x1d\x71\x77\x3c\x01\x55\x6a\x77\xe2\x80\xc6\xb1\x3b\xa1\xa0\x0d\xec\x4e\x5c\xd0\x8b\x75\x27\x1e\xa8\x87\xba\x93\x3e\x68\x49\xba\x93\x01\xa8\x30\xba\x93\x21\x28\x0c\xb8\x93\x11\x5c\x6d\xbb\x93\x31\xdc\x14\xbb\x93\x09\xdc\xd9\x7a\x8e\x03\x37\x93\x9e\x43\xe1\x62\xcd\x73\x5c\xb8\x4f\xf2\x1c\x0f\xae\x6c\x3c\xa7\x0f\xd7\x22\x9e\x33\x80\x2b\x02\xcf\x19\x82\x18\xde\x73\x46\x20\xea\xf6\x9c\x31\x88\xb2\x3d\x67\x02\xa2\x6a\x8f\x3a\x20\x5e\xf6\x28\x05\x51\xaf\x47\x5d\x90\xf7\x79\xe2\x30\x42\xfb\xbe\x47\xfb\x20\xb1\xf2\xe8\x00\xe4\x47\x1e\x1d\x82\x38\xc7\xa3\x23\x90\xd0\x78\x74\x0c\x72\x17\x8f\x4e\x40\x66\xe2\xb9\x0e\xc8\x43\x3c\x97\x82\xac\xc3\x73\x5d\x90\x63\x78\xae\x07\x32\x0a\xcf\xed\xc3\x59\xca\x73\x07\x70\xc8\xf1\xa4\xe4\xa6\xee\xe4\x48\x30\xea\x35\xf5\x92\xce\xbd\x72\xbd\xc4\xf4\x50\xa8\x25\xcb\x21\x8b\x7a\xf2\xa2\x43\x2b\x4c\x93\xb8\x4d\xe3\x41\x22\xd8\x4c\x15\xaa\xd5\x5d\x41\x02\x16\x97\xa8\x80\x79\x6e\xfd\x9f\xff\x53\x8a\x40\x48\xca\xe2\x5e\x4d\x64\x05\xdf\xeb\x42\x2c\xb2\x63\x71\xcf\x90\x92\x40\x14\x53\x6a\x42\x36\xcc\x8a\xa5\x9e\x6b\x75\x4e\x22\x0b\xc6\x7b\x09\xbf\xe4\x91\xcc\xe6\xe3\x2e\xca\xc2\x2b\x38\xf8\x2e\xf0\xc6\xb6\x51\xb5\xb7\x2e\xf0\x11\xdf\xa4\xfc\x0e\xb5\x27\x61\x9b\x69\x19\xd7\xbf\x2b\x70\xef\x26\x09\xb6\xec\x1c\x3a\x6a\xc5\xac\x74\x97\x6e\x79\xb4\xe4\x52\xd0\x69\x91\xad\x11\xf4\xf7\x90\x6f\x96\x16\x59\x33\x8b\x7f\xe5\x8b\x5d\x06\x42\xd1\x25\xb3\xb4\x0a\xce\xd2\x22\x57\xec\x0e\xcc\xde\x8b\xa3\xeb\x59\x30\x67\x07\x14\x6d\xa0\xb0\x5b\x3d\x26\x75\x4f\xa8\xea\x70\x8f\x6e\xd1\x67\x34\x9b\x63\x8c\x8f\x2e\x6d\xfb\xb2\xc3\x58\x64\xdb\x0a\x9b\xf6\x92\x04\xd8\xb6\xd1\x35\xbb\xd4\x9a\x78\xef\x0d\xcd\xcb\xaf\xc6\xb3\x2a\x41\x82\x59\xa1\x6b\x7c\xf4\xd2\xf8\x78\x51\x53\x13\x7b\x4f\xde\xd7\xde\x5f\x92\xf7\xb3\xdd\x9c\xbd\xec\x2d\xc3\x74\xbb\x09\x00\x8c\x8a\x59\xaf\x75\x6f\xea\x53\xab\x45\x16\xbd\x30\xdd\x0b\x6e\xd1\xd7\x6d\xd3\xa6\x69\xf8\xd2\xd3\x48\x00\x9d\x0c\x50\x9b\x18\x7b\x99\xe7\x2d\x45\x32\xc6\x50\x66\xd6\x2b\xcf\x33\xf0\x8c\x82\x71\x41\x16\xbd\xab\x20\xf9\xd2\x76\x6e\x57\x9d\x51\xf7\x75\x39\x6d\x0d\x45\x9c\xbc\xc7\x3e\xe2\xbd\xf3\x73\xe8\xaf\xf3\x73\xf6\x9e\xec\x00\x9d\x27\xcf\x11\x17\x1d\xd3\x52\x2f\x8c\x09\x3f\xd8\xf9\x17\x52\xc1\xb3\x17\x00\xbd\xed\x57\xef\xee\xfc\x3c\xb8\x09\xc2\xcc\xe7\x45\x41\x3e\xa1\xe7\xa6\x23\x6e\xe3\x65\x96\x1e\xa4\x2a\xb2\xe8\x3d\x33\xa7\x1a\x7b\x2e\x8a\x13\x21\x8d\xab\xdc\x4a\xbf\x22\xe2\x37\xc7\xcf\xd1\x79\x19\x5c\xd9\x30\xb4\x0d\x2a\xca\xf0\x34\xf4\x43\xa9\x88\xd6\x54\x4f\x32\x4c\xb2\x7a\xcb\x38\xe2\x53\x05\x85\x55\xc6\x2f\xb0\x68\xd7\x05\x26\x17\xf5\xee\xb3\xc8\xc5\x3d\x53\x85\x5c\x94\x8b\xc5\x7e\x14\x6b\x26\x17\x8a\xe3\x32\xb3\xb9\x25\xba\xe1\x0b\xbf\x4d\x5b\x28\x50\x39\x91\x86\x25\x51\x3a\x92\x56\x70\xfe\x89\x01\x88\x9a\xf0\x6b\x9e\xa4\x1c\x55\xba\x74\xc7\x89\x52\x1d\x3c\xd5\x56\xde\xa7\xa5\xf3\xc8\xde\x36\xde\x22\xa9\x99\x22\x73\xd4\xb7\x21\xca\x8b\x67\x44\x12\xe8\x0d\xd6\xa1\x24\x29\xca\x8f\x32\xc8\x21\x49\x21\xaa\x2b\x95\xf9\xd9\x67\xf2\xc1\xa0\x9e\x3b\x63\x5e\xf8\x1f\x48\xc2\xd3\x7d\x24\x0d\xb8\xc2\xdb\x26\xfc\x9a\x29\x1d\x74\xd1\xd3\xfa\x39\xe5\x51\xa9\x35\x2c\x1e\x13\x19\xac\x6b\x23\x5f\xf8\x86\x5f\x06\x19\x67\xd1\x6e\xb3\x91\x41\x57\x3c\x5b\xc7\x4b\x66\x89\xac\x2c\x19\x14\x24\x97\x3a\x75\x96\xdc\xbe\x94\x66\x3e\x3d\xa5\x8e\x8b\xde\x62\xd2\xe1\xb8\x14\xa7\x1f\x2b\xc7\xd8\xd8\x12\xeb\x37\xcb\x7a\x8b\x75\x90\x3c\xcb\x90\x83\xcb\xf5\x4b\xa2\x41\x60\xdb\xee\x84\xe9\xbb\xe0\x1d\xea\x66\x95\xe3\x2e\x0d\x29\x99\xcd\x59\x82\x0b\x92\x66\xf1\xd6\xaf\xa9\xc0\x95\x4d\x70\x8e\x8c\x4b\xcd\xaa\x5e\x33\x67\xae\x75\x22\xc3\x38\x02\x27\x78\x70\x15\x69\x81\xe6\x3f\xcc\x27\xa5\x57\x2a\xda\x55\x53\xe7\x4b\xae\x83\x4d\x41\xc4\xba\x12\x64\x8b\xf5\xcb\xaf\x0b\xbe\x05\xc1\x77\x5b\xaf\x8b\x3a\xd4\x14\xc6\x95\x16\x72\x49\x34\xca\x2f\x62\x09\x45\x02\x83\xaa\xaa\x42\x64\x9f\x72\x22\x35\x62\x59\x44\x42\xd8\xc2\x1a\x7d\x2f\x3b\x1e\x93\x4e\x27\x2c\x74\xff\xc6\xcd\xf6\x6a\x8f\x6a\xf4\x34\x7e\xca\x9c\xd3\x93\x93\x58\xab\x96\x35\x3b\x26\x9e\x93\x94\x05\xcd\xce\x49\xe2\x18\x06\x2a\x10\x51\x7f\x8e\x17\xa5\x9a\x3d\xb8\x9b\xb1\x80\xb6\xf5\xb7\x27\xac\xa4\x38\xe5\x16\x5b\x3b\xce\x0a\x88\x05\xba\xbb\x3f\xc7\x0b\xb8\x09\xa9\x82\x95\xf6\x25\x7c\x10\x79\xed\x6c\x7b\x53\x27\xde\x27\x41\x4f\xa7\xad\x0a\xaf\xc2\xc0\x0e\xa7\x11\xbf\xca\xd4\x4c\x61\x84\x82\x73\xb5\x63\x51\xdc\x77\x97\x05\x49\x41\x27\x77\xa3\x06\x58\xac\x92\x0a\x7b\x35\x4b\x6e\x8f\xd3\x2c\xc8\xe0\xa6\xe3\xf8\x26\xcc\xd6\xf1\x2e\x3b\x86\xe4\xc7\x71\x72\xac\x6a\x60\xfd\x13\x15\x2e\x8a\x82\x04\x17\xc9\x6e\xdb\x04\xb3\xa9\x80\xd6\x0e\x8e\x7c\x22\x47\x3e\x31\x7d\xda\x9a\x23\x9f\x80\xc3\xc3\x68\x7f\x14\xcb\x29\x19\xd5\x07\x4a\xc2\x01\xcb\xca\x47\x66\x35\x95\xff\xb8\xe8\xe8\x22\xe1\xc1\x97\xa2\x88\x6d\x1b\x59\xf0\x0c\xf3\x2b\xcf\xad\x45\x1c\x65\x61\xb4\xe3\xf0\x8e\x6d\x3b\xae\x4a\xb5\xed\xec\x09\x8b\x8d\xec\x6c\x1b\xc5\xb0\xf4\x68\x95\xb4\x78\x1a\x1b\xf4\xe9\xdf\x15\x95\xff\x05\x98\x3f\x9c\x04\x30\x29\x32\x12\x4f\xd1\xa1\xe5\x0a\xa6\x94\x59\x0c\xb9\xc2\x3e\x7c\x29\x75\xa5\x03\xdc\x6a\x6b\xa1\xa0\xf0\xbe\x61\xc1\x30\xda\xdc\x93\xc8\xe1\xf5\x86\x43\xe0\xb4\xaa\x0e\xa4\xf5\x2d\x95\xb8\x8a\x81\xca\x85\x87\x95\x4b\x2d\xc4\xad\x2f\xc6\x2a\x9d\xd1\x3e\x39\x39\x7d\x2b\x8a\x93\xab\x60\x53\xe5\x68\xdb\x99\x5a\x42\x65\xbc\x0c\x93\xab\x82\xac\xc2\x28\x4c\xd7\x07\x7c\x6a\x1c\x24\xab\x4c\x92\x55\xa9\xfa\xdf\x24\xab\x0c\xc8\x2a\x31\x7a\x1a\xc6\xdc\x5c\x52\xcb\x1e\x4f\x8c\x71\x25\x49\x2f\x58\x65\x3c\x11\x04\x45\xde\xa2\x44\x54\xb1\x20\x30\x89\xfe\x5d\x55\x94\x34\x08\xd5\x53\x73\x24\x39\xb8\x4b\x44\x72\xd0\x35\x8b\x04\xa3\x2e\x6a\x59\xba\xf6\x2e\x8a\xbd\x75\x21\xdc\x88\x8d\x74\xa3\x56\x82\x20\xcb\xf8\xd5\x16\x2e\xa0\xf5\x0e\x0b\x67\x87\xba\x26\x72\x54\x47\x32\x2e\xf7\xe2\x3b\x7d\xa0\xf2\x3f\x83\xad\x04\x4f\x77\x9b\x4c\xb0\xb9\x7e\x46\xc4\x98\xfe\x1c\x2f\xfc\xa8\x20\x92\xe4\xc5\x16\x5b\x51\x8a\x1e\x7a\xb5\x71\x5c\x15\x45\x51\x6e\x48\xe7\x4d\xe6\x4f\xcc\xc7\x8a\xe1\x30\x41\xa7\xbf\x4e\x33\xff\x2b\x89\x1b\x1c\x6c\x68\xb2\xa4\x01\xf0\x8e\x1f\x50\x94\xe7\x33\x03\xd7\xba\x77\x1e\x46\xd7\xf1\x17\xbe\xa7\x3c\x28\x3b\x7d\x75\xd4\x54\x93\x08\x49\x0c\x73\x2e\x62\x8c\xad\xf7\xd7\xdb\x92\xb1\x3b\x0e\xd3\xe3\x60\x93\xf0\x60\x79\x7b\x9c\xec\xa2\x48\x9c\xbd\x24\xdf\xc5\x18\x5b\x36\xa6\x6d\xa8\x32\x8a\x75\x71\x1f\x11\x86\x1d\x34\xd1\x33\x2a\x14\x34\x98\x5c\xb2\xf8\xf4\x54\x6f\x97\x49\x39\x02\xb0\xe5\x69\x37\xb4\xcf\x50\x40\xa4\x9d\x57\x0a\xa5\xa4\x8c\xb1\x2b\xac\x27\xbb\x2e\x20\x2d\x0a\x51\x03\x3d\x24\xba\x1c\x9c\x48\x36\x2c\xd1\x3c\x18\x10\x93\xde\x9b\xaa\x0a\x97\xf1\x75\x57\xac\x74\x57\xb0\xa5\xac\xe9\x51\xd2\xdb\x63\x4c\x10\x7c\x91\x1b\x96\xb1\xb4\x24\x25\x31\x24\x3d\xb9\xa3\xa0\x72\x01\x91\x29\x8e\x22\xb6\x56\x8a\xe0\x37\x5a\x27\x18\xaa\x5f\x2e\x26\x3b\x35\x07\xa0\x3a\x92\x5f\x9d\x2e\xfd\x2d\xd9\x41\xaf\xb5\xf4\x80\x52\x1f\x83\xef\x52\x85\x4c\xa6\x2a\x8a\xaa\x95\x3b\xb5\x42\x21\xd9\x2a\xbd\xb8\x29\x9e\x48\x0e\xc8\x4e\x36\xa9\x28\x10\x27\x09\x09\x30\x89\x2b\x0a\xd6\x75\x35\x4c\xb2\xee\x44\x8e\xe5\x2a\x48\xc4\x22\xcb\xb5\x03\x97\x04\x17\x95\x41\x51\x2d\xba\x2a\x11\x62\x9b\x53\xe4\x2b\xc2\x77\xd5\xdb\xcb\xda\xdb\xfb\xda\xdb\x27\x91\xe7\x4c\xed\x3a\x3a\x3f\xdd\xcb\xf3\x92\x37\x36\xcd\xa7\xb8\xe0\x69\x5b\x8e\x4b\x0a\xd0\x0e\xa6\x0d\x60\xd6\x14\x05\xae\x0a\x7a\x2e\x92\x1a\x27\x11\x4e\x22\x69\xc2\x20\xa9\xf3\x06\x65\x33\x3e\x87\xc5\xc4\x58\xc4\x3a\x8c\xa5\xc6\x22\xb6\x63\xb0\x22\x90\x0d\xdb\xc9\xb3\x46\xa9\x0b\x67\xdb\x7b\xa2\x96\x4d\xc9\x13\x6c\x88\xa5\xce\xa4\x16\x9e\x2a\x2b\x10\x6d\xc6\x81\x36\x3d\xf5\xad\xed\x1c\xa8\x26\x02\xe1\x50\xd5\x82\x34\x3e\xaa\xee\x52\x5f\xb1\xbf\x97\x77\x4b\x9e\xaa\xe6\x8c\x93\x18\xed\x70\x21\x12\x06\x28\x95\xc4\x02\x6b\xcb\xd1\x5e\x4b\xb8\x06\x8b\xb2\xed\xf2\x51\xc1\x3f\x01\x76\x74\x33\x50\xa2\x41\x25\xb8\xf4\xb6\xb5\xbf\x92\x19\x43\x11\xa2\x9a\xa9\xa2\x6a\x43\x55\x67\xc9\xfd\xcb\x85\x5e\x02\xdf\xe9\xd8\x60\x87\x09\x0d\x0c\x49\x88\xfd\x10\x61\x83\x04\x9f\x55\xc6\x21\x11\xe3\xa5\xa0\x6d\xa6\x0f\x07\x73\xbd\xe6\x25\xca\xa4\xae\x7e\x84\xab\x26\x5b\x66\x2e\x29\x55\x46\x3d\x59\x8b\xda\x71\xa3\xe4\x2e\xd4\x49\x4f\xd6\xa1\x2d\x2f\xbd\xb7\x5f\x1d\x65\xcd\xe9\x2b\x13\x8b\xae\x30\x5c\x15\x7c\x5e\xf3\x63\x5d\xf2\xf1\x32\xe6\x52\xff\x73\x9b\xc4\xd7\xe1\x92\x1f\x07\xc7\x3f\x42\xe2\x1f\x8f\x65\x5e\x56\xd9\x47\x57\x85\xdc\xa2\x6e\x50\x44\xaa\xba\xcb\x32\x70\x7d\xb7\x0e\x25\xa1\x97\xe7\xf7\xd6\x6a\x85\x92\xa5\x6a\x74\xd6\x95\xd2\x5e\x0f\xcd\x93\xa0\x60\x41\x61\xb9\x13\x33\xab\x57\x6d\xbe\x73\x16\x4b\x12\xd4\x87\x36\x69\x90\x27\xd8\x4b\xdd\x81\x9d\xaa\xa7\xee\x3b\xce\xed\x55\x03\xfb\xb1\x8f\xbe\xad\x43\xcb\xce\x94\x15\x2b\x35\x6a\xa3\x63\x45\xfd\x6d\xd9\x57\xd4\xf5\xa5\x12\x86\xdc\x49\x96\xc8\xe7\x33\x67\x5e\x1c\x51\x90\x5e\x40\xad\xf5\x59\x88\x71\x00\xed\x73\xab\x2f\x06\x9f\xc7\x67\xee\x5c\xd4\x50\xb1\x71\x8c\xcf\xbc\x39\xde\x13\x11\x28\x5f\x1b\x55\xf9\x6f\x4d\xf3\xfd\x8a\xff\xca\xf3\xbb\xe2\x28\x53\x47\x64\xbd\x96\x2b\xaf\x37\xd0\x0d\xc4\x8c\xcd\xb2\x2a\xc3\x0f\xa5\x09\x7a\x55\x2c\x9b\xe9\xb6\xc9\xc3\x6d\x31\x27\xbc\x5c\x91\xbf\x10\xa9\x64\x2c\xf9\x6e\x9e\xf2\x0c\x89\x33\x5f\x99\xe1\x67\x75\xc8\xaf\xea\x39\x0b\x60\xce\x65\x15\x89\x29\x05\x64\xa0\xc3\x16\xa1\xa6\xb4\x59\xd7\xc2\x30\xe9\x6a\x1e\xe4\x1c\xbc\x74\x3d\xa6\xe6\xf7\x09\x35\xdc\x59\x1f\x67\x5a\xcc\xd4\xed\x46\x4f\x78\x29\x6a\x0a\x57\x28\xd4\xce\xb7\x23\x03\x82\x42\xad\x87\xb3\x48\x0c\x44\x29\xd5\x39\x6a\x7c\x4f\xca\x8f\x0e\xc9\x8a\x8a\x4f\x93\x87\x24\x6d\xdb\x2d\xad\x9e\x3f\x1a\xeb\xd0\xc7\x72\x79\x53\x3b\x7b\x52\xba\x25\x2c\x0a\xb4\xbf\xd6\x4e\xb9\xbf\x17\x78\x13\x46\xcb\xf8\x66\x2a\x7f\xf6\x3f\xa7\x7c\xb3\x9a\x8a\x3f\xbe\x84\x17\xc0\x86\x74\xc8\xda\x45\xd2\x88\x6f\x69\x75\x74\x7c\xa9\x91\x3a\x55\x8a\xa9\x6d\x31\xaa\x1c\xdb\xbe\xd6\xab\x73\x07\xba\x51\xc5\x5c\xfc\x21\x40\xe9\xf5\x85\xbe\x76\x8b\xb2\x57\xf7\xab\x78\xb9\xdb\xf0\x96\xed\x53\x7e\xd0\x17\x0c\xd3\xfa\x2b\xe3\xbd\x65\xbc\x00\x8d\xb0\x69\x26\x11\x46\x9a\xc2\xa5\x4e\x15\x65\x9f\x1b\xfe\xc7\x9f\x77\x3c\xb9\x3d\x4e\xf8\x6f\xbb\x30\xe1\xe9\x71\xa0\xda\x04\x82\x88\xe3\xe0\x58\xa7\xb4\x2a\x79\x26\xe2\xb8\xf0\xe1\x2f\x7a\xb8\x4f\xa0\xeb\xef\xe9\x06\x79\xc6\x9a\xcd\x49\x64\xb4\x84\x84\x07\x2e\x32\x62\xa6\x1c\xe1\x93\x00\x4e\x5b\xd1\x22\xc8\x48\xca\x12\x58\x16\xc8\x8e\x25\x5a\x51\x9f\x6c\xd8\x5d\x41\x16\x6c\x53\x79\x79\x5f\xb1\x4d\xf3\x76\x6a\xcb\x56\xd5\xf7\x35\xdb\x4a\x6a\x51\x40\xbb\x87\x71\x8c\xdb\xaf\x1d\xac\x08\xd4\x44\xab\x8e\xe0\xbd\x28\x5e\x82\x9a\x6a\x13\x1a\xa4\x66\xd6\xc4\x6d\x9b\xc3\x59\x5b\xf6\x58\x41\x6e\x99\xe4\x29\x3b\x0e\x49\x93\x85\xf8\x89\xe2\xb7\x30\xe8\x62\xaa\x54\xe2\xc0\x4b\xf3\x20\x14\x92\x98\xa1\x8c\x65\x79\x1e\x61\x75\xba\x52\xca\xb3\xc8\x92\xa0\x45\xf2\x6c\x13\xf7\x32\xd8\x69\x48\x02\xf2\xd5\x50\x2c\xc5\xb7\x38\x99\x85\x73\xdb\x46\xf1\x2c\x9c\x33\xf1\x8c\x8f\xb2\xde\x9a\x07\xcb\x5e\xb0\xdd\x72\xe5\xb1\x0c\xc5\xb8\xb7\x0d\x12\x1e\x65\xef\xe2\xa5\xd8\xc6\xae\xe2\x6b\xae\xbf\x54\xb3\xfc\xa2\x05\x78\x85\x77\x2d\x6b\x7f\xb2\xf2\x3c\x6f\xeb\xc9\xe9\x66\xb6\xd0\xeb\xe1\x3c\xcf\x75\x32\xbf\xf4\x08\x26\x9a\x7b\xce\xda\x4d\xa8\xf8\xcd\xf1\x79\x6f\x15\xf5\xc2\x28\xcc\xe0\x4b\x41\x6e\xd8\xe3\x5f\x67\x67\xe9\xd9\xee\xd5\xcb\x57\xaf\xce\xbe\x3e\x73\xe6\xdd\xbc\xf1\xfe\xc3\xe3\xcb\x23\x83\x63\xaf\x8c\xeb\x3b\x62\x5c\xe5\xaa\x69\xc9\x3d\x8b\x57\x96\xfd\x17\x06\xd0\xf4\x15\x38\x5b\xe8\x5c\xc3\x0f\xb2\x02\x80\x3f\x15\x2c\x55\x9e\x03\x06\x75\x9e\x6b\xf2\xa8\x2e\x20\x6d\x3b\x7b\xea\xd8\x76\x76\x22\x77\x4a\x5c\x88\x9a\xb3\x73\x53\x60\xff\x8f\xdf\xc4\xec\xf4\x2d\xaf\xe7\xf5\xa8\x45\x4c\xf9\xfd\x39\x91\x15\xf1\x1d\x92\xc5\x52\x7d\x79\xff\xbe\x23\x36\x3d\xf8\x93\x26\x70\x76\x63\x94\xcc\xc8\x3e\x7f\xe2\x80\xac\x69\xc6\xbb\xb0\xaf\xc9\xc2\xe6\xbe\x0c\x9b\x17\x44\xcc\xb8\x4f\x59\xb0\xf8\xd2\x62\xbf\x7d\xde\xbb\xe2\xc9\xa5\xb4\x52\x30\x2f\xe3\x10\xb8\x79\x28\xb7\x93\x6d\xc2\xaf\xe5\x64\x63\x52\x7e\x5f\x10\xde\x44\xe3\x50\x91\xcf\x7b\xe2\x4b\x69\x36\x45\xae\x1a\x68\xac\xe6\xc1\xa7\xac\x19\x3a\xef\x5d\x05\x5b\x54\x5f\x82\x6a\xfa\xb5\xe5\xb9\x4e\x50\x0a\xc6\x05\x69\x78\xb2\x38\x94\x71\xac\x5c\xba\xd4\xf1\x9c\x45\x06\xab\x30\x49\xdb\x1c\xf6\x41\x06\xfc\x37\xe4\xe0\x82\x6c\x82\x7b\xa3\x9c\x50\x5c\x10\xfe\xdb\x21\xc0\x96\x92\xfe\xba\xbc\x8b\x60\x98\xfc\x0a\x1a\xb8\x51\xcf\xe4\x29\x73\x6c\x3b\x79\x92\x4d\x01\xe4\x7c\x96\xcc\xe7\xfe\x6c\x2e\xb2\x37\x2d\x83\x1a\xad\x2c\x47\x25\xcf\xf7\x07\x50\x0e\xbc\x9f\x92\x34\x4e\x32\x3f\xe9\x89\x1f\x70\x22\xb5\x00\x95\x6b\x78\x28\xc8\x79\x8f\x7f\xcd\x78\xb4\x64\x30\x19\xd5\x73\xd3\x76\x4c\x8a\x8e\x24\x4e\x68\x0d\x08\x59\xf0\x6e\x24\x65\x94\xec\xf6\x01\x35\x36\xac\x43\xe1\xca\xcd\xba\x88\xe3\x0d\x0f\x8c\x95\x23\xb0\x6d\xb4\x61\x41\x2d\xb3\x54\x65\xd6\xed\x62\xb2\xb7\x00\x05\x79\x7e\x85\x02\x9c\xe7\x28\x60\x77\x05\x26\x29\x63\x6c\x67\xdb\x48\xde\x73\x90\xf4\xe4\x04\x9f\xa6\x4f\x76\xa7\x22\xb5\x32\x14\xef\x30\xc4\x59\xdd\x9f\xaf\xa8\x4c\xa6\x6e\xea\x58\x30\xcb\xe6\x24\xe8\x30\x86\x22\x26\x4e\xe7\x62\x35\xd8\xd8\xb6\x38\x1c\x9d\xf7\xc2\xf4\xc3\x26\x08\x23\xe5\x08\x29\x12\x05\x87\x12\x1f\xa4\x17\xa6\x12\x27\x24\xc2\x18\x4f\x51\x38\x45\xa1\x60\xbd\x62\x96\xd8\x76\x3d\x42\x82\xa7\x89\x18\x42\x1f\xbe\x35\xf3\x84\xaf\x77\x05\x11\xd5\x60\x7a\x10\xd0\x86\xc4\xe0\x6a\xb0\x34\xd3\x14\xd5\x81\x28\xc6\xf5\x6c\x50\x8d\x1a\xba\xe3\x5f\xb7\x41\xb4\x8c\x7d\xc5\x1e\x58\x5d\xa4\x96\xa0\x2e\x20\x6a\x26\xe2\xe3\x15\xc2\xb8\xa7\xbc\x8a\xa1\xc7\x67\x2f\x1e\x5f\x12\xcb\xc2\x24\x4c\x3f\xf2\x60\x79\x2b\xb6\xad\x7d\x90\xa4\x26\xfb\x21\xa6\x72\x14\xd7\xef\xe3\x0a\x52\x6b\x53\x0b\xaa\x5a\x79\xa9\x8f\x3a\x62\x0f\xd1\x37\xb6\x32\xfe\x5c\x9c\x99\xca\x0d\x44\xf9\x2a\x64\x60\x3f\xd8\xb6\xdf\xa0\x84\xad\xf4\x2a\x60\x19\x94\x0e\x17\x16\x26\xe9\x63\xdb\x56\xfc\x41\x82\x41\xb0\x28\xea\xf9\xf2\x6a\x9b\xdd\x1e\xaa\xe7\x91\x49\x19\x1a\x3e\x41\x5b\x39\x17\x44\x32\x9d\x2f\xaf\x83\xba\xd5\xe3\x25\x74\x4a\x63\x1d\x2c\xd1\x38\x49\xc4\x1c\xb1\x8d\x8b\x4d\x0a\x28\x2f\x29\xdd\x77\x9f\x46\x4f\x12\xdb\xee\x50\x38\x32\xca\xe6\x0b\x46\x3e\x22\xe2\x07\x9f\x46\xdd\x2e\x3e\x05\x31\xa1\x48\xa6\xae\x96\x05\x77\x48\x59\x6b\x02\x0c\xd7\x11\x86\x0b\xc9\x2c\x09\xaf\xee\xdb\x3e\x2c\xcb\x47\x62\xa3\xaf\x88\xe2\x06\x5c\xec\x92\xab\xe0\x0b\x6f\x6c\x50\x06\xbc\x68\x96\xe7\xb3\xf9\x51\x93\x23\x42\x5f\x0d\x7f\x61\x53\xbd\x9f\x24\xd2\x4b\x71\x74\x69\xb2\x0b\x33\x3e\xf7\x39\xf6\xd3\x0a\x87\x0a\x93\xa4\x20\xda\xa6\xa7\x29\x35\xae\xd5\x3a\x9b\x9e\x50\x7f\xa7\xc7\x5f\x30\x45\x05\x81\xa2\x0e\x5e\x98\x75\xf5\x85\xbd\x18\x09\x12\xd6\x7a\x1f\xfa\x98\x83\xaf\x31\x96\xcd\xa2\xb2\x55\x3a\x0e\x0b\x09\x2f\xc8\x65\xc2\xf7\x31\xa7\x2b\xa0\x9e\xd9\x5c\x79\xf7\xe4\x95\xdb\xf1\x4e\x72\x1a\x3e\x89\x4f\xc3\x6e\x17\x77\x32\xc4\x67\xe1\x9c\x84\xb8\xc3\x58\x60\xdb\xca\xd3\x19\x07\xa6\x4d\xb7\xad\xb9\x3f\x1a\xf2\x72\xb1\xdc\x32\x87\xa4\x6c\x36\xaf\xd1\x51\x54\xb5\x24\x7e\x12\x9d\xc6\xdd\x2e\x56\xeb\x5d\xc8\x44\x91\xf1\x1c\xec\xee\xb1\x6d\xab\x33\x78\x28\x75\xa2\x80\x9a\x62\x49\x4d\x0f\x26\x28\x6f\xde\xe4\xee\x39\x9b\x13\x60\x4b\x76\xe1\xd2\xa7\x24\xdd\x6d\xc5\x89\xc6\x5f\x16\xad\x76\x2d\x52\x5b\x0c\xd6\xd1\x55\x34\x93\x6f\xa5\x18\x47\x70\xad\xcd\x20\x4c\x14\xd3\x60\xfd\x24\x77\x8a\x63\x69\xc7\xa5\x6c\x99\x8f\x5f\x95\xf2\x31\x41\x27\xc7\x2f\x82\x8c\x2b\xcb\x5f\xb5\x92\xc8\x35\x4a\x15\x5c\xba\x3f\x3c\xb6\x9a\xc7\xba\xcd\xac\x5c\x82\xac\x6e\xd6\xb5\xe6\xd6\x9c\x65\xbd\x2c\xfe\x39\xbe\xe1\xc9\xf3\x20\xe5\x08\x2b\x7c\xb3\x97\xfb\x1a\x24\xd5\x16\x48\x52\xb2\x23\x1b\xb2\x20\x2b\xb2\x25\x6b\xb2\x04\x87\x21\xb7\xe4\x92\x5c\x90\x73\x66\xa5\xe1\xef\xbf\x6f\xb8\xd5\xa5\x8f\xc4\xea\x29\x2a\x4b\x6e\xcc\x13\xd3\x57\xe6\x90\x97\xcc\x21\xef\x59\xc0\x11\x26\x9f\xe4\xcf\x73\xf9\xf3\xac\x9d\x5b\x16\xc7\x8e\xcc\xb6\xd1\x0a\xbc\xa3\x3a\x05\xf9\xc2\xee\x8a\xe6\x19\xe9\xad\xa0\xc8\x0f\xec\x6d\x6f\x1b\x6f\xc9\x67\xf1\x2b\x8e\x5a\x1f\xf5\xc3\x3f\xd8\x5b\x75\x22\x7b\xd7\x14\x6b\x96\x73\xc6\x21\x06\x75\x25\x4f\xa2\xd3\x44\x6e\xa8\x7c\x96\xcc\x4d\x8f\x60\x7a\x5d\x3f\xa1\x05\xf9\x99\x59\x8b\x35\x5f\x7c\xe1\xcb\x3c\x05\x53\x40\xbe\xcc\x41\xf1\x28\x0f\x76\x59\xbc\x8a\x17\xbb\x14\x9e\xb6\x9b\xe0\x36\x5f\xc4\x51\x96\xc4\x9b\x34\x5f\xf2\x15\x4f\xf2\x65\x98\x06\x17\x1b\xbe\xcc\xa5\xcb\xe8\x3c\x4c\xaf\x82\x6d\xbe\x89\xe3\x6d\x7e\xb5\xdb\x64\xe1\x76\xc3\xf3\x78\xcb\xa3\x3c\xe1\xc1\x32\x8e\x36\xb7\xb9\x3a\xfe\x2e\xf3\x74\x11\x6f\xf9\xd2\x22\x2f\x98\x35\x3b\x3b\xfb\xea\x3a\x67\x67\xd9\xd9\x59\x72\x76\x16\x9d\x9d\xad\xe6\x16\x79\xc3\x2c\x34\xf5\xcf\xce\xce\xce\x7a\xf9\xec\xec\xec\xe6\x64\x9e\xcf\x7e\x3d\x73\x4e\xce\xce\xbe\x06\xce\x1c\x77\x2d\xf2\x8a\x59\x67\x67\x33\xab\xfb\xa2\x6b\x3d\x42\x56\xf7\x4d\xd7\xc2\x68\xea\xab\xf7\xd9\xa3\x5f\x7f\xc8\x3b\x7f\xcc\xa7\x0c\xab\x90\xa9\xff\x23\xaa\x72\xfc\x55\xfc\xfe\x38\xc7\x8f\xf0\x8f\xf9\x99\xd5\xfc\x70\x66\x89\x2f\x67\x56\xae\xf2\xc5\xb9\xca\xe5\xec\x6c\x6e\x91\xdf\x99\xe5\x57\x05\x9e\x9d\x21\x84\xbe\x3f\x6b\x9c\x37\xbf\x20\x3c\x3b\x3b\x9b\xcf\x73\xab\xfb\xaa\x6b\xe1\x47\x38\xef\x3d\xc2\x67\x67\xa2\x68\xf2\x27\xd3\x5a\xfe\x45\xd7\xea\x5a\xc4\xba\xb4\x30\xf9\xc9\x0c\xb7\x7e\x85\x3a\x76\x21\xe3\x5f\x55\xa6\x73\xac\x4b\xc1\x8f\x64\x1b\xba\x3f\xa8\xc4\xbf\xb5\x24\x7e\x44\xe4\x8f\x85\xc9\x5f\xda\x3e\xa3\xd9\xd3\xee\x1f\xa2\x8a\x2f\xba\x16\x2e\xa3\xfe\xb5\x16\x95\xe9\xa8\xbf\x9e\x9d\xcd\x7f\x3c\xb3\xe6\x8f\xa6\x66\xef\x41\xd9\xbf\x98\x29\x7e\xc7\xe4\xbf\x9b\x85\xbd\xe9\x5a\x3f\x58\x98\xbc\x66\x77\x6f\x5e\xf8\xb5\x6f\xff\xa1\xba\xde\xc2\xe4\xf9\xcf\xcf\x3e\x7d\xaa\x7f\x3d\x3b\xeb\x55\xdf\x3f\x3f\x7b\x5d\xff\x2a\x3f\xe5\xb3\x47\x73\xf1\xf9\xd9\xe7\xcf\x1f\xfd\x46\xb9\xaf\x30\xf9\xf0\xe9\xe5\x5f\x5e\xbc\x6f\x7e\xf8\x1d\x93\xe7\x7f\x7a\xf3\x73\xa3\x32\x3e\x02\xaa\x86\xb3\x48\x2e\x4e\x1b\x79\x94\xad\xc5\xbf\x13\xf1\x82\x4f\xd0\x42\x1c\xdb\xf3\x78\x75\x02\x82\x6e\x49\x2e\xaa\x7f\xf8\x35\x8f\xf2\x78\xb9\xcc\x11\x9a\x75\x4f\xe6\x39\x46\x67\x67\xcb\x47\x38\xca\x2b\x8a\x55\x1f\xd4\xfb\xd9\xd9\xb2\x8b\x73\x5c\x76\x26\x90\x86\x15\x5a\x98\x08\x0e\xbd\xd1\x52\x31\x13\x7e\xee\x5a\xf8\x07\x15\x25\xe2\x7c\x99\x3e\x8f\xa3\x8c\x7f\xcd\x9a\x6d\x13\xd9\xc9\x81\xf5\xab\x5a\xf1\xdf\xf2\xcb\x2c\xdf\xc8\x16\x55\x0d\xac\xb7\x01\x4d\xfd\x93\xb3\xb3\x25\x9e\x42\xd5\x8d\x8a\xa1\x29\x9b\xfd\x7a\x32\xcf\x7f\x50\x55\x2c\xc8\x0f\xec\xb1\xa8\x55\x18\x6d\x77\x99\x5a\x69\x72\x51\x99\x20\xe1\x41\x7e\xb1\xcb\xb2\x38\xc2\x3f\x3c\x0e\xc9\xdf\xd9\xe3\x5f\xd7\x67\x4b\xf1\xf8\x67\xf6\xf8\xd7\xd9\xaf\x77\xf3\xee\xd9\xdd\x59\xfa\xe8\x6c\x16\x05\x59\x78\xcd\x8f\xcf\x6e\x1e\x93\xbf\xc9\xdc\xfe\x03\xcd\xc4\xd2\xd0\xc5\x39\x3a\xbb\xe9\xe2\xfc\xac\xa7\x03\xf0\x0f\x8f\xc9\x7f\xb1\xc7\xb3\xee\x1f\xf3\xc7\xe4\x7f\x6a\xe4\x05\x93\x6d\x76\x76\xb6\x0c\x4e\x56\xf3\x3b\x4a\x86\x05\x54\x7c\x9a\xcb\x56\xe1\xbc\x07\x95\x16\x74\xca\x0f\x5d\x86\x5b\xce\x57\xab\x9b\x9d\x0c\x07\x03\x6f\x58\x72\x03\x1d\x16\xe5\x79\x32\xcd\xfc\xe8\x89\xa3\xb0\x2f\x7a\xab\x24\xbe\x7a\xbe\x0e\x92\xe7\xf1\x92\xa3\xa8\x0b\x09\xb0\xdf\xfa\xf1\xe9\x53\xea\xe4\x83\x81\x3b\x19\x12\xea\xb8\x9e\x1d\xe5\x83\xa1\xe7\x8a\x73\x6c\xc6\xd9\x63\x34\x13\xab\xdf\x57\xba\x3a\xfb\x3a\x5a\xcd\xf3\x5f\x4f\xa6\x67\x4b\x9c\xff\x7a\xf2\x83\x5a\x17\xd5\x97\x93\xb3\xdd\xab\x57\xaf\x5e\x89\x4e\x78\x7c\x49\x92\xe6\x15\x98\x3e\x7f\x4e\xad\x33\x07\x14\x4f\xa6\xd6\xff\xf5\xff\xff\xff\x59\xbe\xf2\xa0\x89\x1c\x72\x42\x71\xd7\x3a\x3b\xb3\xba\x1c\xb4\xff\x44\xd5\x9e\x65\xa5\xf8\xfb\x84\xe2\x52\x90\x87\xe8\x10\x77\xad\x63\xcb\x97\xd1\x0b\x12\x71\xf3\xe8\xb9\x15\x67\xd8\x90\xb3\x4b\xde\xa2\x68\xda\x91\x60\xbe\x7a\x03\x01\x48\xdd\x38\xb9\xb2\xa4\x96\xae\xb5\x09\x2e\xf8\xc6\x92\xc2\x1a\x72\xb7\x0c\x13\xdf\xaa\x24\x62\x16\x68\x52\xf8\xd6\x86\x5f\xf2\x68\x69\x15\x12\xab\xf7\xa3\xe2\x75\xde\xb2\x7f\x48\x36\xf3\xa6\x07\x93\x4f\xa4\x48\x31\xa9\xbf\xbd\x9d\x99\xef\x5a\xe6\x52\x89\x11\xcb\xab\xe7\x8f\xec\x0e\xb2\xf5\xdf\x6a\x34\xb2\x7a\x7f\x6a\x97\xb3\x9c\xa8\x52\x33\x8c\x8b\x83\x3c\x2d\x37\x58\xda\x53\x3e\x4b\x14\xff\xda\xed\xce\x4f\xf1\x69\xc9\xbc\x26\x27\xd4\xbc\xd8\x8e\x79\x79\x11\x29\x35\xb8\x48\xaa\xb8\x97\xa5\xe0\x5a\xa4\x2a\x48\x7c\x13\xf1\xe4\x45\xc5\xa3\x64\xd3\xac\x6c\x8d\x3f\x91\xf7\x8e\xa0\xee\x51\x32\xf6\x1d\x43\x3a\x28\x4e\x77\xe2\x38\xf3\xd5\xb6\x27\xf2\x87\xc2\x6b\xa9\xef\x26\x2f\x42\x6c\x1b\x81\xe7\x9d\x5a\x61\x79\x9e\xf9\x37\x58\xfa\x1e\xdd\xa2\x0c\x13\x90\x8d\xae\xc9\x15\x06\x99\x38\x55\xf9\xa2\x15\xfb\x9b\xc4\xae\xe1\x18\x0b\x9e\x24\x66\xab\x19\x9d\x43\x9c\x09\x13\x65\x81\x04\x1d\x6d\x24\xec\x96\x12\xa9\xfe\x74\xfb\x66\x89\x62\x8c\x6b\x15\xd9\xf4\xc2\x25\x63\x2c\xae\x40\x85\x81\xed\xdd\x60\x12\x95\xaa\x83\x97\x20\xa2\xb8\x6c\xc9\xca\xb6\x2f\x50\x46\x36\xd8\xb6\x1f\xca\x07\xc0\x50\x67\xee\x5c\x7f\xd7\x14\x16\x11\xb3\x8a\xe9\x4f\xb7\x9f\x83\xcb\x77\xc1\x15\xa0\xf7\x11\xa8\x21\x34\xce\x9b\x63\xdb\x4e\xea\x31\x9f\x6f\x82\x34\x15\x71\xc5\x98\xb5\x7f\x79\xb0\xb4\x32\xa6\x68\x0d\x89\x0a\xd0\x91\xfa\x2d\x0d\x6c\xbb\xf3\x7c\xc6\xc5\x84\x9c\x8b\xb3\xf8\x75\x9e\x77\xae\xa5\x59\xbc\xe8\x71\x18\x0b\x18\xd3\x4b\x96\x91\x5b\xc6\x2b\x4d\x16\x25\xad\x81\xe3\xac\xa0\x19\x91\x77\x9d\xab\x96\x34\x8c\x16\x72\x6c\x9e\x65\x59\x12\x5e\xec\x32\x8e\xac\x70\x69\x61\x3c\x5d\xb0\x45\x79\x14\xcd\x38\x49\x38\xf6\x41\x29\xbf\x1e\x91\x2c\xd8\x39\x26\x29\x43\x4b\x40\x14\xc6\x9a\x4f\x4d\x4f\x4e\x4e\xf1\x72\x96\xce\x99\xf5\x1f\x56\x77\x21\x1a\xd0\xbd\xe5\x48\x84\xe0\xa3\x5b\xb6\xec\xfd\x23\x0e\x23\xe9\x0d\xfd\x92\xfd\x97\x6e\x91\x6d\x5f\x71\x94\x19\x72\x72\x9c\xe7\x99\xe8\x8b\x5b\x6c\x80\xfe\x56\x9d\x78\xd9\x03\x09\xaf\x44\xbb\x88\x93\x67\x9b\x0d\xba\x85\xee\x2b\xa7\x7a\x89\x9d\xbc\x60\x8c\x9d\x8b\x01\x92\x92\xf7\x46\x73\x8b\x12\x53\x79\x87\x78\xd9\xec\x9f\x88\xf5\x03\xb5\xb0\x56\x18\x28\x27\xaf\x38\x15\x28\x00\xa7\xea\xf0\x6d\xdc\x1a\x26\x86\x9e\x31\x57\x0a\xed\xa2\x07\xf0\xd3\xa8\xb7\x08\x16\x6b\xe5\x94\xd7\xb6\xf5\x8d\xea\x8c\xf7\xd2\x75\xb8\xca\x10\x9e\x93\x6c\x06\x71\xe7\x2c\x34\x96\x8b\x94\x9b\xea\xfc\xb3\xf3\x39\xeb\x38\x84\x57\xdf\x77\xbc\x12\x73\xae\x9b\x17\x18\xab\x90\x6f\x96\x29\xcf\x2c\xb9\xa6\x6a\x93\x8e\x3a\x76\xb2\x16\xb1\x54\x60\xd3\xc6\x30\x80\x5e\x5a\xfb\xe5\x05\xac\x0d\xe2\xe8\x6a\xd4\x76\xc3\xf7\xd7\x48\x75\xfe\xcb\x2d\x4c\x42\x56\x42\xe9\x86\x82\x4c\xa2\x5e\x90\x65\xc9\x9f\x82\x68\xb9\xe1\xb3\x64\x16\xce\xe7\xe6\x85\xf2\x82\xd7\xe4\x1d\xb6\xcd\x49\xc4\x12\xdb\xa6\xb0\xd7\xe8\xe5\x50\xbe\x67\xc6\xbb\xc6\x9f\x02\x28\xa9\x93\xcc\x7c\xab\xa3\x97\x4b\xf4\x66\xb8\xe7\x4d\x98\xc4\x37\xff\x14\x5e\x6c\xc2\xe8\x12\xae\x7a\x13\xe3\x8c\x75\x52\xc2\x05\xf3\x29\xf5\x4f\x68\x55\xcb\x15\x6f\x83\x1c\x2a\xf7\x66\x0b\x38\x24\x8b\x1d\x9e\x8d\xa2\x8b\xe1\xd6\x02\x30\xbe\xca\x7c\xb7\x87\xf2\xd5\x58\xe3\xed\xb9\x69\xc8\xd7\xaa\xdc\x24\xcf\x2d\xc9\x90\xc1\xdb\xa1\xf2\xd6\x0f\xb4\x43\xef\xe7\x62\xc7\x30\xe9\x43\xc9\xc1\xf4\xd6\x3f\xad\x36\xfb\xcc\x7c\x36\xd2\xd4\x32\x28\x13\x8a\xea\xf8\x59\xf3\x35\x4c\x5f\x18\x01\x79\x6e\x86\x74\x18\xeb\x70\xdb\x0e\x05\x39\xb7\xa5\x36\x4a\x17\x6d\x36\xbf\x19\xed\x5e\x9a\xed\x36\xb5\x86\x0c\xf6\x8a\x75\x33\x62\x7e\x02\xcd\x4d\x4d\xe3\x21\xc0\x12\xcd\xe6\x44\xd3\x36\xc9\x30\x58\xe6\x29\x4a\x0f\x04\xa5\x27\xb3\x90\xc5\xb3\x60\x2e\xd6\x72\x41\xe8\xac\x83\xa2\xf2\xd2\x10\x5c\x71\x56\x35\xba\xaa\x4d\x79\xed\x02\xbc\x23\x88\xbe\x6d\x9f\xb2\x6d\x5e\x94\x12\xd3\x84\xc5\xbc\xa7\x24\x42\xec\xae\x20\xb1\x78\x0f\xd3\xbf\xbd\xfd\xb9\xcd\x6d\x03\x78\x6c\x68\x6c\xff\x1c\x97\xc2\x11\x55\x94\x69\x0a\x66\xfd\xe9\xf3\xdb\x9f\xeb\x7b\x4b\x41\xb6\x50\x28\xcf\x74\x26\x2d\xd2\x9a\x90\x04\x8c\x4f\xf7\x0b\xf3\x6f\x4a\xe1\x96\xe4\x39\x26\x60\xff\x50\x4d\xe6\xa0\x59\x9b\x29\x5a\x32\xb4\x66\xc1\x5e\x35\xc9\x15\xeb\xc4\x68\x8d\xc9\x8d\xcc\x09\x85\x6c\xdd\x5b\xf2\x55\xb0\xdb\x64\xbf\x84\xfc\x06\x8c\x5e\xb2\x78\xdb\x61\x4c\xb0\x3e\x61\x2f\x58\x2e\x5f\x5e\x73\x09\x3f\xc4\x23\x9e\x4c\xf7\x83\x90\xb5\x8b\x36\x71\xb0\x14\x3c\x2a\xe9\x50\xec\x87\x62\xc5\x0a\x16\x6b\x88\x25\x32\x34\x5e\x91\x15\x47\x55\x74\x8c\x49\x02\xcb\x1b\x6c\x36\x29\xdb\xb5\xf1\xcd\xc7\xbc\xb7\xd0\xfb\x3f\xb3\x42\x8b\x74\x78\x63\x4b\x2e\x3f\x5b\xb8\x10\x39\xb6\x51\xc0\xc1\xbc\xcd\x5b\x68\xbd\x39\x3c\x8f\xaf\xe4\xe6\x60\x61\xac\x8a\xdb\x67\x7d\xac\x47\x96\xde\xd0\xf7\x4b\x2d\x39\x16\xf6\x67\xb9\x7d\xaf\x0f\xf1\x3e\x32\xa5\x60\xd5\x0e\x54\xb1\x7e\x51\xce\xb1\x60\xe1\xce\x49\xa7\x91\xa1\xb4\x2b\x6c\x0b\x45\xe7\xcd\x6a\x8a\xc2\xa6\x28\xea\xad\xc2\x4d\xc6\x93\xde\x9b\x17\xad\xee\x4a\xf4\x3e\xff\x3f\x84\x57\x17\xab\xad\x5d\xb8\xcf\x20\x89\xe5\xae\x28\x08\xd8\x62\x2c\xeb\x05\x34\xfd\xf7\x37\x79\x5f\xdb\xbe\xaa\xd6\xef\x06\x2f\x5b\xd5\x23\x99\xce\x92\xb9\x3f\x9b\x17\x05\xf6\xff\xf7\x2d\x91\xc5\xd5\xd7\x90\xb2\x45\x72\x09\xdf\x0f\x93\x2d\x2d\x2b\x24\x18\x5f\xa9\xc3\xf4\xaf\x68\xbb\x14\xdc\xb6\xf6\x80\x38\x48\x40\x36\x28\x91\xb8\xd8\x2d\xb5\xc2\x66\x6d\x34\x7f\x3d\x8b\xa5\x41\x61\xc8\xb2\x16\x2a\x01\x87\x2f\xce\x69\xcc\x42\x75\x3a\xfb\xe7\x4a\x50\x9c\x22\x8c\x8c\xee\x83\xcf\xcf\x5e\xb3\xf6\x59\x39\x6d\x3d\xaa\xb7\xf6\x8f\x91\xe8\xe0\x59\xc4\x87\x53\xc1\x34\xdb\x67\x7c\x2b\x07\x22\x07\x6e\xbe\xca\xab\x91\x83\x99\x83\xfe\xdc\x23\x69\x27\x74\xa7\x18\xa2\x18\x2e\x64\x4e\x31\x05\x3d\xf6\x6a\x45\x8e\x9a\x86\x9a\x91\xe6\xa0\xe3\x92\x32\x40\x94\xd7\xec\x17\xe3\xb4\xf4\x6d\x64\x53\x4f\x73\x55\xf3\x79\xd5\x76\x80\xe2\xe0\x23\x68\x36\x27\xd7\xe2\x8f\x3c\x46\x55\x6b\x54\xb3\xdf\xe0\x8e\xb3\xb1\x2c\xed\xaf\x47\x51\xc4\x13\xb1\xe7\x31\xeb\x49\x70\x1c\x2e\xd9\x8f\x56\xf7\xbc\x6b\xfd\xf8\xf4\xc9\xe3\xe0\xe9\x13\x29\xf7\xaa\x82\x4f\xce\x92\xb3\xb3\x1f\x8f\xaf\xd2\x60\xb3\x89\x6f\x16\xc1\x36\xdb\x25\x9c\xfd\xf8\xe3\xd3\x27\xf1\x56\x71\xf3\x52\x24\x0f\x61\x8f\x65\xe0\xd3\x27\x8f\x65\xf0\x53\x8b\xf0\xfd\xd1\xb5\x66\xf5\xec\x7e\x65\x3f\xfe\x38\x2f\x57\x67\xdb\xbe\x96\xc3\x61\xcd\x1e\xfd\xfa\xc3\x9c\x55\xd2\xf1\x1f\xf3\x33\xeb\x0c\xe4\xa6\xad\x99\xea\x9a\x54\x59\xe5\xb9\xce\xaa\x92\xc3\x4f\x7d\x98\x06\xb9\x14\x3e\x1e\xca\x2b\x5c\xfe\xc1\x64\xfb\xdb\x72\xfb\x83\x1d\x48\xe7\xab\x8b\x8a\x96\x34\xd5\xa7\xd6\x94\xc1\x7f\x40\x71\xdd\x47\x2d\x49\x7b\xff\xd1\xeb\xce\xba\x7f\xcc\x61\xbf\x6c\x0c\x2f\x6f\x8c\xe7\x3a\xe1\x2b\xf6\xe3\x8f\xc7\x25\x6b\xf8\xa3\x7e\xaa\x0f\x70\xeb\x77\x39\x7a\x8f\x8d\xe1\x3b\x3a\x70\x0c\x93\xac\x38\x3e\x6a\x9e\xa2\x05\x17\x6e\x11\x4b\xde\xb6\x40\x53\x4d\xea\xcb\x70\x23\x7a\x24\xb8\x00\x62\xbd\x38\x34\x0c\xe2\x3b\x5b\xb6\xd1\x06\xa4\x94\x72\xe1\xf2\x22\xc5\xc2\xc4\x85\xfd\xa0\x65\x60\x78\x04\x8d\x6c\xc9\xa9\xfc\x44\x2c\x5f\xf7\x85\x85\xc9\xde\xbc\x29\x7b\xac\xe3\x1c\x2e\xa6\xca\xe0\x5b\xcb\x69\xcb\xe6\x11\xf1\xbf\x5a\x98\xe8\x94\xa4\xf7\xc8\x17\x63\x8f\xc5\x02\x00\xf8\xc8\x3c\xd5\xf1\xf5\x62\x70\xc9\x96\xfa\x53\x9e\x2f\x7b\x37\xfc\xe2\x4b\x98\xbd\xad\xc7\x15\x1f\xae\xe2\xdf\x5b\x42\xe3\xb6\x98\x69\x23\x50\xac\x2e\x4d\x9e\x47\xf4\xca\x22\x8e\x22\x98\x78\x10\x9f\x5d\x6a\x75\x62\xb8\x79\xa9\xde\x66\x69\x47\xcc\x73\x68\xd9\xad\x6a\x59\x87\x59\xe4\x77\x41\xd5\xd7\xec\xba\xec\x30\x43\x12\x7e\xad\x44\x2b\xb9\xe0\xec\x6e\xd9\x6d\x5b\x9c\x5b\x33\x4e\xa6\xfb\x63\x09\x2a\xdd\x41\xc2\x35\x67\xfe\x21\x4e\x43\x51\x6d\x4c\x2e\x58\x96\xe7\x46\xb4\x28\x0b\xc2\x28\xc5\xd3\x36\x95\x84\x49\xed\x60\x3e\xe5\x4d\x0e\xdd\x17\x07\xf8\xac\x2e\x52\x38\x32\xee\x54\xa3\x3c\xef\xa0\x4e\x24\x85\x97\x51\x99\x91\x08\x4d\xca\xa2\xa7\xd5\x23\x8a\xb0\xcf\x0f\x55\xdd\xb6\xe9\xd0\x3e\xf8\x15\x14\x86\x9a\xfb\x25\xa8\x96\x4b\x74\x01\x66\xd6\x11\xf8\x85\xcc\xe0\x05\x3a\xda\xa3\x6f\x87\x16\xe4\x19\xcb\xa6\x7b\xf9\x70\xf3\x7e\x76\x25\x66\x81\xb4\x91\x8f\x58\xe7\x60\x9d\x4e\x3a\xd9\xa1\x4f\xe5\x56\x9b\xe7\x88\xda\x28\x62\x6d\xe7\x36\x89\xc5\xd1\x94\xe6\xe2\xe9\xe1\x4e\xc8\xb0\x4f\x71\x9e\x77\xa4\x3a\xda\x0b\x2e\x8e\x32\x7c\x29\x15\x78\xda\x53\x40\x29\xd1\x54\x34\x6f\x9d\xe7\x8d\x4a\x30\xc6\x6e\x6c\xfb\x02\xdd\x10\x8e\xa7\x27\xd4\xcf\x64\xac\xec\x50\xac\x0c\x4f\xa9\xbf\x98\xbe\x43\x0b\xc2\xf1\x89\xf8\xc9\xb0\xef\xf8\x7d\x3b\x12\xa9\x69\xdb\xf8\x1c\xea\xd7\xa4\x54\x2b\xa9\x86\x0d\x18\x1e\xe3\x35\x60\x33\x3e\x27\x29\x53\x96\xa8\x9d\x30\xcf\x3b\xa5\xb4\x18\x5a\x54\x56\x7a\x4a\xfd\x50\xbc\xc4\x6d\x15\x14\x89\x43\x53\xd2\xac\x04\x55\x47\x4a\xaf\x08\x84\x49\x26\xf5\x04\xbd\x5d\x24\xa5\x7c\x89\x8e\x94\xed\x45\x4a\x9b\x91\x4e\x83\x59\x34\x67\x8c\xa5\xb3\x68\x7e\x8a\xa3\x6e\xb7\x24\x82\xe9\x82\x23\xf1\x91\x88\x4f\xd8\x57\xf1\x6e\x44\x85\x53\xfd\x4c\x7d\xa7\x20\x6b\xec\xaf\x0b\x12\x73\xbd\xd8\xb5\xdf\x1e\xc1\x8d\x04\xd8\xa7\x48\xe8\x09\x6c\x26\x29\x97\xce\xbd\xa1\x68\x23\x41\x7d\x6f\xc0\xe1\xde\xa0\x3c\x9c\xfc\x95\x58\xec\xc7\x1f\xa8\xe0\x5b\xc8\xde\xa2\x6c\xdb\x57\x20\xeb\xce\x4a\x59\xf7\x6d\x9e\x77\x6e\xe5\x92\x93\x49\x4d\x34\x43\xfa\x9d\x61\x8c\x2b\xbf\x7a\xe5\x8a\xa9\x3c\x13\xe6\x79\xcb\x2a\x2b\x08\x55\x2f\x45\xea\x2e\xa4\x0a\x28\x97\x99\x52\x2c\x68\xc8\x90\xab\x1e\xca\xc8\x5a\x76\xcf\x8c\xcf\xf5\x76\xf5\xd4\x81\x9e\xd2\xcb\x51\x6b\xef\x3e\xd0\x4b\x17\x4a\xd9\x3a\xe6\x20\x2b\x68\x64\x71\x7f\xe2\xa3\xd2\x2a\xba\x12\xa2\x36\xf4\x67\xe6\x24\x66\xa1\x6d\x7f\x51\xc8\x02\x46\x4c\xd2\x88\x89\xa7\xd2\xa1\x48\xe7\x4a\x9f\x26\x8e\x9a\x27\x96\x78\x1a\xfb\xa6\x48\x23\xcf\x3b\x57\xd3\xc6\x09\x39\xc3\x3e\x8a\x5b\x0e\x99\x72\x20\xe3\x5e\xba\xe5\x8b\x70\x15\xf2\xe5\x54\x99\x70\x81\x7b\x03\x68\x3f\x4f\x17\xc1\x96\xb7\xe8\xfb\x37\xb4\xe3\xe4\x95\x84\x4c\x92\x24\x35\xca\xdc\x57\x94\xb4\x3e\xdd\x46\x59\xf0\xf5\x18\x62\x92\xe3\x5d\x94\xf0\x45\x7c\x19\x85\xbf\xf3\xe5\x31\xff\xba\x4d\x78\x9a\x86\x71\xe4\x1f\x5b\x5d\x95\xe5\x2e\x0a\x7f\xdb\xf1\x4f\x71\xd2\x26\xc5\x32\x8e\x52\xb0\x0a\xac\x58\x27\xe9\x2d\x79\xc6\x17\xd9\x8b\xdd\x76\x13\x2e\x82\x8c\xa7\x64\xc1\xd4\x82\xfa\x29\x13\x7c\x0b\x08\xa4\xe5\x6d\xac\x60\x60\xc4\x07\xf4\x0c\x93\x95\x06\xb2\x61\x7c\x16\xc3\x41\x0b\x76\x98\x59\x3c\x07\xd1\x95\x3a\x65\xc5\x58\x2d\x06\x20\x2f\xe7\x4a\x51\x18\x64\x87\x84\x96\x36\x7a\x0b\x69\x5e\xc6\x0b\x12\xb2\x18\x3a\xff\x33\xff\xda\xd6\x80\x84\x59\x16\xac\x94\xb1\xb1\x51\x57\xa7\x6e\x71\xd4\x8b\xf3\x7c\x22\x7f\x28\xbc\x4a\x7b\xee\x3d\xf5\x41\x30\x87\x00\x05\x84\xa8\x32\xb0\x32\x03\xa1\xda\x9c\xf1\x1e\x28\x1b\x00\x63\x78\xca\x4f\xb9\xb2\xd5\x53\x72\x76\x9c\x74\x41\xc5\xb4\xbc\xe8\xf3\x64\xd1\x7d\x73\x79\x95\x35\x05\x24\xf6\xa2\x54\x9d\x83\x7e\x93\x87\x79\xc8\xa3\x72\x7a\x93\x14\x04\x45\x52\x22\x29\x17\x98\x94\xdd\x19\x77\x2f\xfe\xc0\x21\x92\x3f\xff\x90\xf2\xdd\x32\xf6\x53\x4e\x60\x45\xf2\x5f\x93\x6a\x7a\xf8\x77\x80\xd4\xb0\x14\xbf\x09\xdf\x80\xa6\x82\x7f\x67\x3d\xb5\xfc\xfd\xeb\x6b\xa9\xba\xde\x71\x0a\x62\x1d\xb7\x7c\x2f\x88\xd5\x2d\x83\x13\x7e\x1d\xc6\xbb\x54\x35\xbf\x96\xf6\x8f\x43\x91\x8a\x82\x6c\x13\xfe\x0a\xc4\x40\xfe\x1d\xa8\xb9\xb4\x89\xaa\x66\x74\x0e\x76\x82\x75\x91\x10\xe1\x33\x6f\xce\x90\xf8\x9b\xe7\x7c\xd6\x87\xbf\x83\x79\x9e\x9b\x53\x4a\xc6\x14\x27\x35\x20\x41\x57\x90\x20\xa4\xb3\xc4\xc4\x98\x79\x73\xb8\xc3\x22\x95\x56\x41\x1f\x17\x4a\x7f\xe6\xde\x9a\xd4\x56\x18\x62\x45\xd9\x5a\x16\x40\xe7\x65\x4e\x1e\x9e\xaa\xca\xe9\xf9\x8c\xf8\xcc\x99\x8b\x7a\xf7\xe7\xac\x8b\xc4\xcf\x54\xd4\x58\x3c\x0e\xe7\x79\x4e\xb1\xef\x3e\x42\x16\xbf\xe6\x12\xbc\x03\xd2\x5a\xf1\x72\xa9\xdf\xb0\x48\x3b\x90\x69\x47\xf3\x2e\x9f\x8d\xf7\x22\xf8\xe2\xc7\xb6\x9b\x25\x16\x5a\x59\xa8\x6d\xe2\x74\x44\xf1\xb6\x2d\x7a\x47\x53\xda\xeb\x1e\xf4\x81\xba\xc3\x14\x79\x4c\xc5\x3c\xf4\xa1\x41\x53\x11\x93\xd5\x7b\xdc\x4f\x6c\xfb\x17\x19\x3d\x01\x78\x25\x16\xa0\x84\x74\x1c\x89\xb5\x54\x59\x61\x21\x0b\x5b\xe5\x75\xc2\x49\x86\x4f\xf4\x33\x86\x81\x71\x44\xbe\x4e\xd5\x87\x99\x68\xb1\x3b\xd7\x36\x5e\x10\x62\x8e\x96\x87\x71\x21\xc8\x59\x12\xd0\xe7\x67\xaf\x5b\x4c\x24\x1a\x92\xc4\xd6\x4b\x25\x25\x21\x9a\xee\x19\x40\x74\x6a\xa2\x27\x43\x7a\xaa\xef\x08\xc4\x1a\xd8\x7e\x5f\xa5\x24\x8a\x52\xf7\x6b\xbf\x5a\xef\xd5\x15\x78\x69\xa7\x91\xe7\x28\xab\xa9\xff\xa0\x5f\x4b\xfd\x35\xde\xb5\xa4\xce\x4f\xfe\x03\x06\x29\xde\x7b\xc4\xdb\x1c\x83\x64\x72\x08\x5a\x16\xb5\x45\x25\x6e\x32\x5e\xf2\xfc\x80\xf8\xb4\x29\x3a\x55\xe2\x7a\x0b\xc3\xf4\x2a\x70\x41\x1a\xb3\xb5\xa6\x4a\x5d\xd9\xa7\x6b\x18\x10\xc5\x05\xa0\xc8\x30\xf7\x91\x0a\xd7\xe1\x54\x1c\xff\x44\x67\xf9\x1d\xd1\x07\x61\x57\xac\xe4\x96\x0c\x9a\x0a\x6e\x34\xf1\x75\x8c\x69\xd8\x81\xd7\x5f\xd5\x6b\x62\xdb\x0e\x58\x67\x6b\xea\x4a\xb0\x6f\x3d\xaa\x3e\x9a\x1f\x9e\x9e\x50\xdf\xfa\xc1\xfc\x26\x89\xa8\xa2\x40\x59\xd4\x1f\x2a\x0a\x12\x2b\x44\x58\xd2\xce\x9f\xc4\x12\x08\x5a\x44\xb8\x99\x69\x2e\x53\xc0\xe6\x06\x97\x92\x61\x49\x9f\x3a\xef\x2e\x85\xdc\xbb\xd6\x89\x05\x14\xdb\x5c\x61\xb4\xe1\x8b\x86\x3e\x82\x05\x05\x06\xa5\xa2\x74\x12\x30\x6b\x13\xa4\x99\x19\x7e\xd2\xc7\x24\x65\x96\x52\xdb\x83\x6a\xe8\xde\x15\x5b\x5c\xa4\xfa\x67\xda\xa2\xd7\xd4\x31\x0f\x14\x06\x91\x8b\x9a\xec\x64\x3d\x6a\xaa\xc7\x2c\x06\xd7\x7d\x96\xb1\xc7\x59\x2d\xcb\xfe\x75\xfd\x64\x72\xcb\x52\x71\xe8\x6a\x9f\x21\xe4\x92\x75\x76\xb6\xdd\x49\xc9\x05\x93\x7e\x24\xaf\x61\x4f\x8e\x15\x03\x71\x75\x2a\x1f\xb6\x2c\x3b\xdd\xb2\xed\xec\x4a\xca\xb7\xd3\xe9\xf6\xf0\x94\xbb\xf5\x45\xc3\xb7\x4d\xde\xb7\x43\x8f\x96\xec\x8a\x59\x71\xb4\x01\x2b\x3c\x6e\xdb\x9d\xa5\x6d\xd7\x5a\x53\x94\x53\x3e\x5c\xa1\x25\x9b\x05\xd3\x6b\x63\x8b\xf7\xaf\xc1\x8b\x13\x3c\xcf\x49\x60\xdb\x97\xb2\x72\x17\x0c\xad\x19\xda\x30\xb4\x60\x68\xc5\xd0\x96\x5d\xe3\xd9\xf9\x3c\xcf\xd1\x76\x76\x3e\x67\x77\x05\xc6\xb3\xad\xe2\xbd\xde\xbc\x10\xe1\x2b\xf3\x5d\x46\xe0\x73\x00\xb8\x11\xcb\x1f\xe8\x20\x6d\x66\x74\x8e\xc5\x8f\x3b\x27\x5b\x06\xc2\xa3\x4a\x09\x6c\xb6\x9e\x9f\x6e\x59\xb7\x2b\x78\x65\xdb\x16\xbd\x92\xe7\xe8\x82\xad\x99\x83\xf3\x7c\x29\xb1\x02\xa1\x9f\xea\x1d\x61\xdb\xdd\xee\x85\x6d\x6f\xe1\x98\x79\xb7\x98\xf1\x39\x9b\x7d\x25\x6b\x72\x31\xd7\x30\x5b\xa6\x4a\x92\xc8\xcf\x6c\x54\xf6\x2f\x6a\x14\x81\x4b\xf5\x0b\x29\x8b\x40\x0f\x35\x43\x6c\x0a\xf7\x0c\x77\x07\x86\xbb\x53\x1b\xee\x3c\xef\x74\xbb\x17\x79\x0e\xad\x90\xd5\xdf\xfe\x13\x55\x17\x7d\x73\x31\xc7\x64\xdb\x11\xdd\x85\x4f\xf1\xa9\xe2\xd8\x2f\x4e\x58\x88\xa5\x44\xe7\xe2\x3f\x23\xc6\x1c\xdb\xbe\x78\x1c\x3d\x65\x4e\x51\xb4\x6c\xb2\xd5\x5d\x05\xf0\xbd\xc0\x96\xa5\xd0\x33\x51\x2f\xe5\x99\xe4\x7c\xd2\x59\xa3\x5d\xff\x37\x6f\xef\xde\xe4\xb6\x8d\xe5\x0d\xff\xdf\x9f\xc2\xe2\x7a\xf8\x00\x16\xa4\x96\x9c\x99\xad\x5d\x76\xc3\xac\x24\x76\x2e\x33\x49\x9c\x89\x9d\x49\x32\x6c\xa6\x8b\x2d\x41\x2d\x26\x14\xa9\x80\x50\x5f\xa6\xc9\xf7\xb3\xbf\x85\x73\x00\x10\xa4\x28\x27\x3b\x5b\xcf\x93\xaa\xb8\x29\x10\xc4\x1d\x07\x07\xe7\xf2\x3b\x3e\xcb\x10\x1c\x4a\xa3\xf4\x16\xeb\x67\x58\x00\xf2\xf4\x2e\xc8\x73\x72\x9d\xc6\x9a\x4b\x8c\xf2\x2e\x16\x16\x91\x3c\x11\x4c\xb0\x20\x60\x2a\x65\x7e\x5d\x03\x63\x7e\x32\x34\xa0\x8a\x7d\x6b\x00\xd1\x73\x44\xd1\x37\x2e\x04\xed\x18\xda\x00\x88\xa4\xe4\xdf\x10\xc1\xaa\x24\x4b\x69\xca\x27\x10\x40\x1a\xac\x02\x68\x4b\xc7\xce\x4f\x5d\xce\x82\x49\xfd\x36\xd7\x4c\x20\x0e\x4c\xf4\x54\x56\x2a\xaa\xc5\x48\x50\xeb\x24\x65\xc6\x27\xbc\x3e\x36\x66\xea\x4e\x14\x3d\x16\xfd\x0e\x68\x72\x96\x77\x9d\xa8\x58\xc6\x4b\x2b\x14\xc8\x59\x02\x21\x6f\x45\xcf\xc2\x8b\x54\x3c\x4b\xea\x14\x19\x92\x5a\xf7\x46\xe9\x3f\x15\xed\xf7\x85\x01\xa8\x94\x3d\x77\x81\x73\x61\x9a\x7a\x42\xc9\x15\x93\x94\x41\x22\xfc\x9c\x48\x5c\xcf\x6d\x4b\xd9\x36\xab\x87\x5d\x3c\x69\x9a\x62\x4c\x2a\xbd\x5b\x79\x4b\x99\xbd\x94\x9f\x28\x45\x0c\x19\x1e\x76\x5c\x2e\x51\xfe\x7d\x06\x6c\x4f\xca\x52\x48\x7d\xb5\x6a\x1a\xbd\x96\xba\x33\x4e\xe8\x33\x0e\xe2\xca\x67\xe5\xed\x89\x2a\xff\x66\xf8\x44\xe0\x0d\x4e\xad\x5d\xf8\x1e\x56\x2e\x3b\x6a\xe2\xe0\x58\x38\xb2\x09\x3a\x5b\x57\x10\xfb\x8f\xef\x62\x35\x87\x82\x86\xf6\x7d\x0f\xbb\x22\xd2\x2f\x74\xfd\xc3\x77\x98\x6e\x0e\x02\x22\xb9\x1c\x2c\x79\xb4\xbf\x59\x80\x32\xd0\x75\x1b\x8e\xea\xf6\x7e\x9b\x17\x82\x90\xbe\xd0\x94\x0e\x0d\xb3\x68\x27\x33\x6d\x29\x53\x99\xec\xb9\x55\x3b\x21\xb2\x98\x17\xd5\x2a\x43\x09\x6e\xf7\xac\x37\xe4\xb6\xa7\x8f\xb6\x30\xa5\x50\x47\xbe\x6e\x99\xac\xaa\x51\x37\x6d\xc1\x39\x5f\xb7\x0c\x5c\x5f\x4e\xbd\xdf\xce\xb3\x95\xbe\xe2\x19\x41\x75\x18\x92\xc9\x56\x57\xf9\x19\xf8\xcb\x34\xdd\x33\x50\xdb\xc9\x84\x58\xa8\x41\x31\xdf\x4a\xb1\x69\x9a\xff\x4f\xcc\x55\x76\x83\xc1\x0b\x5b\x66\x94\x17\xd1\x56\x90\xc9\x92\x32\xab\xc0\x80\xdf\x0b\xca\x8c\x72\x6b\x94\x0b\xff\xa0\x55\x97\x67\x4c\xa6\x5b\x21\xe6\xd6\xd5\xa7\x09\x50\x1b\xe5\xbd\xb2\x0a\xbe\x96\xd9\xa7\x71\x16\xdd\xb7\xe5\xf2\x7f\xb9\x02\xa0\x53\xcc\x58\x78\x77\xa5\x8a\xdd\x5e\x3d\x1e\x61\x04\xfe\xee\x85\x1f\xc3\xe7\x9b\x25\x71\xf9\x9f\x63\x0e\x9e\xd8\x86\x91\xd6\x4e\xdc\xe1\x30\x87\xda\x41\xe1\xbb\x15\xd9\x5a\xc8\xb1\xbe\xfd\x64\x36\x9c\x1b\x53\xda\x32\x18\xc0\xb1\xcc\xcf\x47\x32\xa3\xd5\xdc\xff\x72\x9a\x3c\xdb\x3b\x87\x4f\xd9\x25\xa9\x96\x81\x0b\xc7\xb1\x13\xec\xb0\xa8\x53\x75\x86\x61\xa0\x0c\xd4\x9d\x70\xa0\x6e\x70\x67\x20\x8a\x0f\xaf\x27\xc0\xff\x82\x43\xaf\xfd\x66\x28\x06\xb4\x9e\xf8\x6b\x71\x1c\x2a\x3f\x59\xa4\x40\xe2\x06\xaf\x3d\x69\x67\xa2\x66\x4b\x9d\x47\xfc\x36\xcc\xd1\xdd\x7b\x12\x79\xb9\x88\xe5\x54\x45\x12\x72\xde\x89\xf2\xb8\x34\xcf\x07\xee\x42\x5e\xaa\x0b\x39\xe5\x2f\xa9\x18\x1a\x1e\x88\x96\xb2\x6a\xbd\xfe\xd0\xe7\xcb\xdf\xf9\xbc\x38\xea\x4a\xdf\xab\xd4\xb5\xf5\x62\x36\xd3\xfc\xcb\x85\x2d\xa6\xec\x15\x73\xfb\x87\x8b\x99\x4e\xcb\x4b\x35\x5e\x4a\xdb\x52\xb7\xbe\x4b\xb5\xe5\xde\x6a\xff\x8d\x3d\xc9\x6c\x9d\x57\xd1\x64\x81\xd4\xe3\xa6\x7a\xd0\xcf\x9b\x1c\xc0\x4d\xd8\x3e\xab\xeb\xfb\x4a\xae\xf5\x73\xbe\xcb\x6e\x01\xf1\x84\x76\xbc\x94\x4a\xf9\x46\x10\xa3\xa2\x50\xcf\xf2\xf2\xa9\x3e\xdc\xec\x72\x08\x95\x87\x70\xd6\x47\xf9\xf7\x98\xdf\x1a\x25\xde\x89\x1e\xe8\xde\xa3\xe8\xa3\x82\x2e\x58\xcf\x1d\x22\x08\x2e\xd4\xa5\xbc\x50\xd3\x29\x2d\xa7\xe0\xd0\xdf\x47\xbb\x2b\xbb\x92\x6e\x45\xdf\x15\x47\xcd\xd7\xb9\x84\x18\xcb\x9a\x6c\x68\x6e\xaa\x69\x4a\x96\x71\x19\x86\xbe\x54\x8d\x73\x5e\xb1\x9a\xbf\xe9\xd4\x22\x0a\x09\x4f\x2f\x22\x9c\x65\x6a\x2e\x14\x38\x16\x3b\x86\x5f\x79\xca\xc5\xcc\xc9\x19\xcd\x17\xdd\x39\xf5\xa1\xfb\x9e\xe6\x7d\x6b\x50\x24\x1d\x8e\xeb\x18\xa9\x24\x0c\x85\x29\xc5\x29\x11\x7b\xd2\xcc\x0f\xb4\x2f\xdf\x20\x8b\xae\x90\x45\x57\x8e\x45\x57\x03\x16\x5d\xf5\x59\x74\x96\x87\x61\xfe\x01\xcb\x63\x8a\xb5\x36\x8d\x3a\xb3\x0e\x12\xa4\xe0\xab\xa4\xc2\x6b\x95\x7f\x25\xf1\x03\xfd\xef\x93\x97\x29\xd7\xb7\x2e\x08\xf9\x90\x54\x29\xdf\x33\x48\x3b\xee\x60\x77\xe2\xbb\xf9\xbe\xe9\x59\xb7\x76\xcc\x78\x6f\xa8\x7d\xf3\xda\x8e\xf1\x04\x19\x38\x00\x33\x25\x79\x6a\xf2\x8d\x1c\x20\x88\xa3\xe6\x2a\xbc\x16\xbe\xe4\xc0\x67\x71\x93\x94\xd5\x7c\xc1\x0e\xdd\xca\x2d\x38\xfa\x62\x2b\x87\x5f\x41\x2a\x2e\x0c\x9f\x2b\xc3\x70\x22\x49\x05\xe5\x34\x0d\xc9\xac\x84\x9e\x15\xa0\xd2\xd6\x3f\x6a\xea\x03\x43\xb8\x26\xdc\x7b\x4d\xf0\xf8\xe1\x32\x0c\x27\x9a\x19\x07\x18\xce\x7b\x41\x4a\x0a\x53\x36\xc9\x31\x2d\xd7\x69\x3a\x3f\xed\x19\x1f\x1b\x97\xe7\xc1\x62\x4c\xd9\x56\xff\xb3\xe6\x99\xed\xcb\x8e\x57\x4d\x73\x9a\x24\x2d\x60\x8f\x39\x27\xfc\x1c\x9c\xf0\x91\x93\x4e\xca\x94\x49\x4f\x9e\x4e\x54\xd3\x04\x2f\x02\x56\x77\xba\xfd\xa4\x4e\xa3\x1a\x2e\x06\x77\x7c\x22\x9a\x66\x52\x85\xa1\x8a\x77\xd1\xb5\x20\x3b\xb6\x67\x02\x5a\xc8\x1e\xb9\x8c\xf3\xa6\x21\x55\x2c\xa2\x75\xd3\x94\x34\x4e\xd2\x28\x8b\xee\xc0\xf0\x3e\x0c\x25\xb9\x63\x8f\x98\xb3\x84\xbb\x6e\xc1\xaf\x05\x79\x64\x5b\xca\x4a\x52\x30\x3d\x3d\xfa\xdd\x8a\x17\xb6\x9d\x2b\xb8\x7a\x6c\x78\x91\xac\x60\x4a\x1e\x93\x6d\xb2\x4a\xf5\xed\xe3\xce\x3c\x6d\xa8\x67\x45\x98\x37\x0d\x42\x79\x99\x89\x2f\xf4\x10\xad\x9c\x65\x84\x2b\xee\x11\x8b\x2b\x70\x12\xef\x92\x95\x2e\xe7\x2c\x87\x73\x14\x2d\xca\x0a\x76\x40\xd8\xda\xd3\x5f\x93\x82\xe7\xf1\x37\xa4\x62\x1b\x1a\xed\x75\xd2\xab\xd9\x12\xb0\xa1\x0a\xdd\xbe\x4c\xff\xd9\x50\x6a\x04\x08\x8f\xd0\x53\xce\x79\x16\x3f\x5a\xa5\xce\x9a\xd9\xa2\x69\xf4\x48\x59\x1e\x9b\x06\x64\xec\x91\x1d\x68\x64\x9d\x5f\x32\xf6\xd8\x33\x17\x7f\xe8\x93\x62\x4d\xc2\xfa\x28\x08\xe5\xdc\x6a\x30\x12\x10\x1b\x6b\x26\x00\xf0\xe7\xf5\xfd\xda\xbd\x0a\x9e\x05\x29\x3b\xf0\x2c\x5e\x46\x0b\xb6\x1a\x77\xf3\x43\xcf\xf7\x96\xd5\x4c\xb3\xb1\x9b\x13\x99\xbe\x01\xe8\x54\x7d\x21\x32\x19\xf7\xdc\x0f\x98\xe3\xc1\x1e\x4f\x32\xbd\xf4\x9b\x46\x4e\x38\x2f\xf4\x9e\x22\x8a\x4b\xda\xad\xb2\x95\xc9\x1e\x6d\xcc\x43\x87\xd7\x83\x57\xc6\xbc\x4d\x2f\x0e\x97\xd5\xc5\x01\x1d\xe3\x65\xbf\xaf\x07\xd3\x57\xba\xe7\xc9\xad\x20\x37\x82\xec\x29\x93\x34\xed\xa8\x9d\xfe\x00\xe5\xe2\x5e\x76\xeb\x64\x04\x2a\x35\x9d\x6a\x14\xd6\x94\x26\xd7\x29\x8e\x74\xce\xa7\xd3\xc3\x45\x7e\x59\xe9\x1d\xec\x57\x99\x9b\x32\x00\x73\xc2\x48\x43\xf4\xf6\x3f\xbc\x5a\x86\x21\x36\x00\x1e\xf5\xf9\xe9\xa4\x96\x87\xd9\x92\x1a\x50\x36\x62\x20\xfe\x82\x67\xa8\xad\x38\xcc\x5e\x62\x89\x71\xf0\x22\x88\x82\xa0\xf5\xb0\x63\xac\x93\x92\x64\x87\xcb\x3c\x0c\x1f\xba\x22\x0f\x2c\xd7\xa4\x44\x37\x4f\xa7\x3a\x41\xa8\x4b\x85\xe3\x9b\xb6\x7b\xcb\x12\x59\x45\x22\xb4\xd0\xfe\xb8\xf3\x23\xa8\xd8\x71\xaa\x3b\xb6\xa4\x27\x31\x01\x99\xfc\x9d\x60\x19\xaf\xf4\x29\xf3\xab\x28\xf3\x7f\x0d\xbd\x55\x8d\x8c\xc7\x07\x6d\xe0\xef\xac\x80\x1f\xc2\x07\x39\x7f\xd6\x45\xb4\x72\x4a\x53\x60\x5a\x6a\x2e\xd8\x01\x76\xa2\x6e\x80\x55\x87\x5d\xd4\x46\xf8\x99\x81\xf3\x43\x18\x4e\x48\xce\x7f\x43\xc7\xc4\x9a\x02\x50\x50\x18\x92\x9a\xd7\x76\x00\xf4\xfa\x37\x7b\xac\x69\x6a\xca\x0e\x86\x88\xf3\x24\xa5\x94\x49\x3e\x59\x32\x92\xf3\xef\x5d\x09\x80\x4e\x9b\x5b\x1f\x2d\x56\x61\x76\x87\xc3\x08\x78\x73\x50\xa8\x37\x29\xcf\xc0\xf4\xb0\xab\xd4\x89\xce\xd1\x68\x58\xb7\x9b\xea\x76\x7e\x9e\x64\xa9\xd7\xd4\x22\xc9\x52\xec\x80\x7e\xd2\x73\xd5\x34\xbf\x5f\x79\xc6\xcc\xea\x8c\xf2\x13\x95\x82\xad\x8b\x44\x58\x9a\xd6\x0d\xb0\xf5\x92\x8d\xea\xb8\x53\x83\xd1\xe8\x1d\x11\xec\x40\xdd\xd0\xb7\xac\xe6\x15\xda\x0f\xe5\xc5\x89\xe9\xd4\x93\x52\xe1\x59\xfa\xa9\x37\x99\x93\x1a\x67\x06\x35\x36\xe0\x22\xc8\x64\x77\xe2\x48\x20\x9e\x35\x7f\x10\x44\x25\x32\x85\xbd\x15\xe7\xf6\x14\x8d\x2a\xfb\x74\x41\x6a\xfe\x69\x4f\x8d\xe3\xb9\x84\x39\x89\x8f\x07\x28\xf3\x6a\xe1\x01\x79\xda\xc3\x92\x99\x70\x09\x1b\xb6\x66\x77\xec\x91\x2f\xd8\x2d\x0f\x16\x01\xbb\xe1\x55\x18\x26\x29\xbb\xd6\xed\xbf\xe7\x05\x7b\xa3\x0f\xcd\x3c\x0c\x3b\xeb\x6e\xa2\x4f\xbe\x15\x65\x6f\xf9\xc3\x94\xe3\xc5\xea\x3e\x5e\x46\x3d\x3c\xa7\xa6\x99\x2f\xd9\x3b\xfe\xc6\x34\x01\x16\xec\x0a\x51\xb5\xd0\x04\x2a\x6b\x9a\x15\xbd\xb8\x9d\x70\xfe\x2e\x0c\x0d\xdc\xcb\x86\xbf\x49\x6e\x53\x7a\x71\x3b\x9d\xe2\x19\x15\x86\xc6\x26\x60\xcd\x17\x2c\x6b\x9a\xcd\x91\xdd\xd4\xb6\x69\xc8\x9e\x6c\xf4\x3c\x4f\x76\xf4\xe2\x8e\x8b\x64\x6d\xed\xd9\xef\xc8\x46\x7f\xb4\x65\x35\xa5\x4f\x66\x59\x6f\xa8\x91\x5a\xeb\xc6\x3c\xf0\xb7\xb4\x95\x61\x48\xc8\x86\x4f\xee\x74\x65\x61\xf8\x38\x9b\xb1\x2a\x0c\x6f\x6c\x76\x0a\x2e\x97\x53\x7e\xcb\x24\x46\xba\x7a\x74\x2d\xba\xb8\xe3\xca\xd4\x76\x47\x6e\xd8\xb5\x1e\x58\xef\xa8\x7d\x7c\xb5\x40\x71\xf5\xad\x9e\xd8\x9b\xe4\x36\x6d\x9a\x6b\xf8\x97\xe8\x3f\xfc\x5b\x34\x41\x39\x50\x7a\x76\xad\xcf\xbe\x6b\xda\xda\x03\xed\xc0\xae\x29\x5b\x85\xa1\xe6\x21\xae\xdd\x2c\x86\xe1\xa3\xc3\x0c\xd2\x14\xb3\x67\x9b\x41\x0e\x9d\xed\x03\x76\x8d\x15\xfc\x9e\xb2\x9b\xb6\x73\xa2\xa8\x05\xa9\x68\x54\xb5\xa4\xd2\xd4\x90\x3a\x73\x00\x2e\xec\xa7\x75\xcb\x0e\x9d\xa1\xc0\x30\x32\x93\xf3\xcf\x76\xe8\x32\xa7\xe2\x66\xb1\x2d\x9f\xe4\x61\x98\x11\xc1\xf7\xae\x1a\xcd\x7a\x00\x9f\xc3\x25\x38\x6a\x2f\x41\xcc\x64\x36\x25\x1c\x3e\x07\xbe\xd5\x3c\xf6\xd6\x53\xe5\x3a\x37\xda\x57\x2f\xc3\x30\xf8\xf2\x35\xc4\xd7\x2a\xf8\x21\x59\xa4\xd4\x5c\xee\xff\x7b\xe0\xed\xb8\xd3\x8b\xd5\x9d\x40\x07\x50\xbb\xc3\xa1\x87\x0e\xd8\x8a\x13\xe7\xad\x41\x0a\x7b\x94\xf9\x14\x0b\xc5\x9f\x8a\x5a\x3d\x04\xed\x60\x65\xf6\xa0\x96\xee\x49\xf5\x58\x77\x9a\x1c\x2c\x65\xc2\xbb\x9d\xed\x1b\xb0\x49\x15\xff\x7c\xee\x63\x54\x58\x3f\xdf\x78\x11\x1d\x1c\x5e\xd2\x6c\x06\x7b\xe4\x90\x54\x29\xf3\x8f\x51\x80\x1f\x85\x3e\xe0\x65\x6a\xc3\xb1\x0b\x86\xcf\xca\xf9\xe6\x43\x3d\x31\x3e\xc5\x07\xcb\xea\x8c\xfb\x16\x1b\x1f\xea\x83\x65\xbe\x2a\xb6\xa4\x6c\x42\x04\xcf\x9d\xd9\xec\xa3\xd0\xcb\x75\xe8\xc0\xad\x17\x06\x93\x56\x1b\x64\xc4\xa5\xfb\xa6\xa9\x89\x60\x5b\x4a\x49\x0e\x46\x54\x4c\xb2\x89\x6a\x9a\x0f\xfb\x37\x03\xde\x96\x6f\x2a\xc4\xaf\xad\xb7\x6c\x40\xad\xa1\x90\x31\xd8\x05\xbf\xa3\x6b\x76\x6c\x6e\xc4\x27\x93\x0d\xdb\x13\xca\xfa\x46\x9c\x27\x1c\xae\x96\x1f\x30\x89\xfd\x80\xfb\xf0\x88\x2d\xbd\xbb\xc1\x8d\x99\xd4\xff\x07\xda\xcf\x07\x2c\xf8\x0f\x14\x4c\x75\x32\xc1\x81\x44\x4a\xe7\xd7\xe7\x65\xd3\x14\x46\x3e\xd5\x80\x44\x75\x2b\xf2\xdb\xad\x6a\xee\xf3\xb5\xda\x06\x6c\x78\x8d\xc1\x23\x6d\xdc\x49\x4b\xb1\xc0\xa9\x79\xfb\xf7\xdd\x78\x19\xbd\x44\x2f\xba\xce\x88\xed\xd8\x4a\x7b\xac\x5f\x20\x85\x3b\x07\x07\x0d\xaf\x27\x7d\xf3\x7c\xd8\x04\x01\x60\xf9\x05\xbf\xd3\x69\xcc\xea\x7a\x6d\xbe\x1c\xed\x64\x18\xfe\xbe\x08\xb0\x1b\x08\xeb\xee\x08\xb6\x52\xa7\xa6\xcc\x00\xcf\x0d\xda\xd4\x59\xd9\x9b\x66\x7d\x75\xd4\x20\x04\xf7\xf7\xc7\x1e\xa5\xc2\x89\x4a\xe3\xc1\x50\x47\x00\x8c\x36\x6e\x05\x58\x7a\x56\x80\xa5\x6f\x05\x48\x59\x25\x5a\x22\xe8\xd9\x35\x6c\x77\xfe\x06\x90\x15\xf7\x92\xbf\xe9\x6c\xb9\x4c\x52\x12\x44\x01\x22\x35\xee\xa5\xe3\x47\xaf\x7d\xeb\x3d\xfb\x83\xbf\xf1\x52\xd9\x35\xc2\xf8\xbe\xb1\x36\x72\xec\x1a\xbd\x63\x5f\x57\x2b\xfe\x06\x1f\xd9\x75\x67\xd1\xf9\xc6\x3d\xea\x7a\xc1\x40\xd1\x19\xc4\xbe\x31\x09\x60\x86\xf9\xf6\x08\x58\x66\x80\x4c\xe7\x2c\x48\xe4\x85\x66\xc8\x11\xe2\xf2\xbf\x27\xbe\xc1\xbc\x93\xfe\x74\x49\x96\x31\xb8\x06\x5f\xa4\x9a\x48\x0b\x2f\x68\xe1\xeb\xba\x50\x06\x2d\x7b\x77\x12\x48\x2c\x49\x47\x24\xf1\x43\x37\x7a\x31\x01\x79\xb5\xb4\x25\x7b\xf6\x74\x9f\xda\x91\x06\xa2\xdb\x23\xec\x9d\x84\xf0\xe3\x3e\x46\xda\x1f\xb4\xfd\x19\xe0\xbd\xe9\xf6\xfe\xca\xcf\x7f\xbe\x24\x49\x36\xfb\x57\x9a\xfc\x7c\x75\x7e\xb5\x78\x15\x01\xa2\x98\xba\x92\x57\xe5\xd5\x26\x7d\x41\x93\xfe\xef\xab\xf3\xf8\x15\x89\xa3\xcb\xab\xf3\xab\xe5\xab\x86\x3e\x3f\xcf\xbb\x56\x7d\x3d\x30\xba\xd9\x11\x45\xe3\xeb\xf9\xad\x14\xfb\x3e\x57\x59\x76\x36\x1f\xca\x61\xbc\x33\xb0\xb7\x95\x2d\x8d\xba\x23\x77\xec\xeb\xfe\x05\xd9\x7c\x72\x04\xcd\xa2\x3e\xf8\x69\x07\xa7\xa8\xef\xce\xa6\x8c\x6b\x73\x61\xb0\x28\x8b\xf6\xf7\x09\x1c\x23\x95\x2c\x52\x4f\x4b\x46\x04\x0f\xa2\xb2\x52\x04\x6c\xa3\x68\x40\x19\x0a\x17\xed\x09\x07\xd6\x2f\x7e\xc7\x80\x51\x18\xd8\x67\x83\x35\x52\x9c\x94\x69\x94\xa4\x51\x3f\x0b\x11\xcc\xf4\x48\x8d\xf5\xa8\xbf\xc2\x00\x27\xd8\xc3\xb5\x25\x4f\x60\x60\x39\x62\x6b\xc7\xca\x1e\x62\x6f\x8e\xe1\xfc\x3c\x33\xd4\x0e\xec\xa6\x17\xe1\xca\x03\x30\xd6\xfb\xc5\x8c\x9c\xa7\xc6\x80\xfb\x08\x5f\x5c\xa8\xcb\x12\x64\xd3\xf9\x86\x74\x9b\x9d\xe4\x89\x4a\x31\x24\x41\x27\xc0\xa4\xce\x60\xbf\x5f\x41\x92\x52\xe6\x97\x84\xe3\x42\x04\x83\x42\x3c\xdf\xc8\x57\xcb\xd8\x27\x4b\x44\xd2\x48\x3a\x5b\xbc\x31\xdb\xb4\x7e\x3d\x5f\x1b\xe8\x66\x60\x21\x27\x4b\x0a\xb8\xaf\xa3\x0a\xac\x0f\x7e\xb8\xa0\x00\xbb\x3a\xa6\x53\x9b\x98\x9c\xc7\xd6\x70\x61\xf8\xa9\x63\xdb\xf4\x80\x46\xae\x15\xd6\xe7\xda\xc0\x33\x7e\xcb\xde\x23\x7e\xd7\x55\xfd\x82\x5c\x26\x57\xf7\x57\x3f\xa4\xd3\x57\x34\xf9\xf9\x55\xfa\xa2\xf9\x0f\x0f\xc2\xeb\x82\x38\x90\xf1\xd1\x05\x9c\xb3\x0a\x8e\x97\xde\xb4\x3a\x26\xfa\xdb\x91\x36\x1a\x2e\x37\xe7\xc1\x25\x0a\x4c\x16\x69\x18\x06\xaf\xf0\xb9\x43\xb9\x4a\x3b\x00\xf2\x57\xfc\xa3\x38\x41\xd9\x0e\x58\x21\xa4\xd1\x7b\x07\x64\xd4\x34\x93\x3c\xd1\x99\xad\x49\xf3\x04\xd4\xfe\x88\x26\x1e\xeb\xab\xac\xa4\x66\xa2\x5d\x18\xbb\x0e\xe3\x59\xb9\x77\xe0\x21\x62\xe1\x90\x14\x57\x7e\x40\xaf\xeb\x58\x6f\xd2\x48\x9f\x3c\x1d\xd8\x37\xbb\xd6\xac\x61\x2d\x34\xbb\x01\x5f\x32\x65\x0d\xc2\x60\x67\x8e\x80\x34\x95\x30\xab\xec\x57\x9c\xa2\x1c\x6d\xa1\x86\xb8\xc6\x8a\x76\x68\xf5\x8a\xee\x30\x9e\x67\x9e\xd2\xd8\x3c\x10\xa5\x7f\x61\x57\xc0\xf2\x30\x67\xca\x47\x44\x85\xb8\xaf\x86\xc7\xad\x78\x39\xf4\xd8\xce\x93\x97\x69\x17\x27\x74\x91\xf2\x8a\x79\x1b\x97\x2f\x31\xb6\x47\xdb\x3b\x12\xde\xbb\x58\x7b\x68\x0d\xd2\xfb\x00\xb7\x5f\xb4\xd3\x4b\xae\x3b\x31\xe7\x10\x6b\x2c\x36\x7f\x61\x25\x92\x6b\x4d\x1b\x1d\x42\x2e\xc1\x72\x68\x4b\x3d\x91\x95\x5e\x6b\xec\x5b\x7e\x4d\x4a\x5c\xa6\xdf\xe1\x22\x45\x1e\xbc\x6e\xf6\x52\xdc\x91\x38\xfa\xbe\x54\x79\xd1\x80\x3f\xf0\x39\xfb\x85\x3f\x81\x09\x99\x14\x25\xa8\xda\xd0\xf4\xa3\x86\x58\x02\xe2\x01\xd4\x65\xfa\xb3\x7e\x3c\x81\x6f\xba\xe3\xd6\x3b\xdb\x97\x83\xb3\xfd\xc2\x29\xfa\x7a\x34\x70\x9b\xd5\x63\x40\xf0\xb6\x43\x9e\xc8\xa4\x07\x55\x3e\x4e\xdb\x10\x99\x68\x71\x21\x2e\xe5\x85\x38\xa2\x6f\x88\x15\x9f\x88\xd4\xa7\x6f\x2d\x5b\x15\x55\x2d\xea\x61\xa8\x4b\xdf\xa9\xca\x27\xc6\x20\xe9\xc9\xf8\x31\x25\x46\x26\x05\xb6\xaf\x23\x1b\x28\x11\xb0\xca\x85\x8e\x90\x26\x65\x7a\x21\xc3\x50\x6a\x8e\x63\xe0\x08\x05\x62\xdc\xce\x40\x60\xb9\x0c\x43\x92\xc5\x19\x9a\x9c\x18\x5b\xd2\xa1\x47\xfa\x89\x73\x0b\x20\x8d\xe9\x53\xe5\xf4\xbe\x7d\x11\xd8\x10\x99\xde\x69\xa2\x7a\xf4\xba\xa2\x51\x05\x76\x03\x6b\xf1\x30\x6a\x40\x11\x8f\x40\x2b\x9b\xa3\xfc\x1a\xfc\xa0\x70\xa5\x53\x07\x97\x0c\x64\xd9\xd2\x14\x4d\xb0\x22\x43\x4c\x80\x76\x99\x87\x1e\x5c\x0e\x4e\xb8\xac\xf5\x55\x5b\x2f\xbf\x8f\x8b\x82\x58\x1a\x1c\xcd\x96\x2d\xcb\xd6\xeb\x68\xd4\xb5\xeb\x08\xd7\xdf\xeb\x59\x2f\xd8\xc0\xad\x50\x84\x32\x58\x76\x94\xea\xc3\x22\x5b\xaf\x3f\x19\x06\x29\xf0\x0b\xcd\xd6\x6b\x62\x11\xac\x07\xf0\xf7\xd1\xe0\xb7\x5d\xac\x82\x82\x69\x97\x41\x17\x7e\x1a\x31\xf3\xb0\xd6\x15\xc7\xee\xa1\xd6\x6f\xcb\xa7\x89\xc6\x75\xc8\xec\xe7\xb1\x96\xbe\x25\x82\xf9\x4a\x63\xea\x72\xc3\xae\x3f\x65\x98\x3d\xfc\x0c\xe0\xad\xcb\xa1\x99\x86\xd3\x76\x08\xd6\x33\x90\xa5\x2d\xd2\x88\x53\x79\x87\xc6\xc0\xa6\xec\x8f\x8b\xe2\x64\x17\x46\x8a\xff\x50\xf6\x13\x35\xfc\x7e\x9f\xfd\x7a\xa0\xd3\xba\xa4\x3f\x30\x54\x43\xf3\x66\x08\x17\x8d\x3f\x46\xe7\xe5\x1d\x21\xfe\x24\x37\xcd\x53\x4b\xbd\xdb\x32\x44\xaa\x70\x74\x78\xf4\x7b\xff\x72\x0d\x01\x64\x0d\xa1\x1e\xc9\xac\xef\x25\x41\xbe\x91\x80\xa1\x13\xa3\xbb\x9e\x28\x1d\x58\x51\x44\x20\x83\x12\xbb\x7d\x91\x29\x11\x80\x45\x23\x77\xd9\x9a\x46\x50\x77\x54\x27\x29\x13\x3e\xf0\x24\xb8\x55\xf4\xf6\x1d\x80\x6c\x0b\x2f\xb8\xa0\xa7\xed\xf2\xa2\x6a\xa8\x8e\x45\x0c\x60\x7c\x7b\xe6\xea\x7f\xa1\xa0\x11\x96\x94\x95\x61\x78\x44\x5e\x4a\x10\x81\xb9\x8b\x41\x09\xba\x1e\x8f\x44\xbf\xd2\x24\xf3\x17\x30\x9f\xed\xed\xf7\x9c\xb2\xef\x3a\x71\x54\xde\x45\x57\x37\x5f\x77\x64\x22\xa7\x96\xb3\xfb\x8a\x9f\x27\x3f\xf7\x2e\x5b\x53\x3f\xe4\xcb\x6b\x9f\x10\x76\x1a\xc9\x2f\x3b\x4f\x3c\x2f\xf5\xb3\x41\xd0\x53\x80\xa4\x13\x61\xb8\x23\x39\xc6\xff\xdb\xe5\xb5\xa0\xb1\x0d\xb0\x45\x21\x56\x16\x30\x55\x59\x5e\x68\xbe\xd9\xe5\x55\x5b\x51\x76\x19\x61\x30\x23\x65\xc4\x73\xc8\x35\xb0\x44\x58\x99\x6a\x49\x7d\xac\xbb\xa3\x5c\xb4\x6d\xaf\xe7\x9f\x66\x45\x71\x93\xad\x7e\xed\x47\xaa\x17\x7c\x84\xb4\x1f\x93\xab\x2e\x32\xb2\xa1\x6c\xc6\x77\x96\x7c\x05\x22\x55\xd6\xb7\x13\x56\x89\x4c\xb9\x3e\x78\x99\x6a\x35\x27\xd3\xc5\x8e\x68\x99\x71\xe9\x74\x86\x02\x78\xd4\x82\x66\x65\xb6\x64\x07\x3e\x38\xed\x73\x9e\x83\x0b\x76\xb9\x02\xbf\x7a\x3e\x59\x5c\x64\xce\x46\x97\xcf\x96\xe6\xc0\xcd\xac\x98\xf6\x62\x3a\xad\x2f\x9d\x49\x32\x05\x1b\xf3\x2a\xa9\xad\xbe\x53\x26\x8b\x94\x49\xe4\x23\xc5\xbc\x56\xd5\xfe\x6d\xf9\x59\x56\xd4\x02\x34\x68\x55\x17\x3f\x65\xb2\xa4\x67\x62\xbe\x13\xbb\x4a\x3e\x82\x8a\x6a\xa2\x19\x3d\x3e\x59\x42\xe8\xf4\x8a\xcb\x38\x49\x23\x88\x60\x50\xf0\xa7\xde\xd1\xd4\x59\xec\x1a\x73\x0a\xd5\x2b\x7b\xb6\x64\x99\x3d\xac\xbd\x98\xff\xfa\xd2\xf4\x64\xc6\x56\xb2\xfe\xce\xda\x91\x52\xef\x69\x5c\xe6\x61\x08\x91\xaa\x20\x42\x48\x65\x0d\xac\xa2\x32\x0c\x4b\x77\xe3\xed\xf8\x16\x7e\x43\x4a\x1a\x86\x8a\x94\xb4\xa5\x2d\xe9\x82\xd1\x30\xd3\xb0\x83\xdd\x19\x2d\x43\xd8\xc3\x91\x7e\x98\x56\xb9\x8f\xd9\x09\x09\xcc\x05\x91\xfc\x7a\x6e\x42\x2b\x10\x85\x08\xff\xaf\x66\xcb\x0b\x5a\x59\x01\xb4\x64\x4b\xca\xe4\x25\xaf\xc3\xb0\x9e\xcd\x5a\x5b\xf5\x90\x3f\x74\x6c\x47\x57\x9c\x60\x15\xb0\x45\x95\xe7\x96\x3c\xb0\xce\xec\x0d\x3c\x28\x3b\x4d\xf1\x46\xea\x37\x92\x33\xe7\x19\x6a\xf6\xc0\x67\xb4\x97\x7b\x64\x46\x27\x55\xcb\x8a\xca\xe7\x17\x86\x05\xc9\xa6\x51\x4d\x43\xb0\x3c\x5b\xbd\xfe\x64\xb4\xb8\x49\x0e\x86\x88\xe2\x87\x5c\xf5\xe2\x79\x74\x27\x4f\x0e\x4b\x2f\x11\xcc\x6a\x58\x8c\xd6\x32\xb6\xa6\xc1\x34\x92\x69\xb7\x9e\x98\x6a\x1a\x6f\x46\x75\xd9\x23\x6d\x2d\xe6\xb6\xd2\x61\x88\x22\xef\xbb\xd1\xf6\x96\xad\x23\x03\x85\x1f\x11\xe6\xb5\xd8\x08\xd9\xfb\xc6\xa9\x2f\x93\x24\x28\x2b\x95\x6f\x1e\x03\x7d\x84\x56\xb7\x52\xd4\x75\xc0\x3c\x6a\x44\x02\xdc\x64\x01\x3d\x91\xfa\x32\x65\x49\x60\x42\xb5\x06\x2c\xd0\x04\x73\x50\x80\x26\x0e\xcf\xc6\x4b\xe9\xbf\x5a\x30\x5b\xd0\x3a\xc0\x52\x01\x45\x96\x05\x9a\xfa\xfe\xbb\x85\x2e\x99\x29\x47\x17\x9a\xb2\x92\x07\x7b\x51\xae\x81\x45\xc8\xf9\x13\x04\xef\x1f\x99\x84\xb2\x65\x59\x71\x9f\x3d\xd6\xa3\x81\xb9\xe0\x54\xe8\xe6\x05\x4f\x87\xa3\x79\x3a\x8e\x60\x6e\x97\x0d\x86\x7b\x45\x01\x80\xe6\x70\xf2\x7d\xaf\x0d\x78\x85\x72\xe5\x75\xa4\xdd\x4e\x64\x0f\x20\xf2\x04\x55\xc2\xf3\x7e\x47\x44\x52\x26\x7f\x4e\x81\xa0\xe2\xd3\x59\x95\x94\xc9\x32\x4d\xc9\x51\x8d\x39\x80\x09\x8e\x05\xc7\x3a\x83\x73\xcf\x3b\x21\xdd\x23\x5c\x07\x70\xdd\x10\xcd\x18\xeb\xb5\x64\x8f\x4d\x1b\xc1\xd7\x0c\x90\xfe\x0d\xd1\xf9\x22\x95\x94\xc9\x22\x9d\x06\x7a\x91\x07\x29\x56\x96\x43\x30\x98\xae\xca\x96\xb6\x94\x61\xcc\x52\xbc\x51\x63\x6d\x2d\xd3\x63\xe7\x1b\x45\x7a\xce\x78\x8b\x8e\x2d\xc8\x88\x33\xb7\x1b\x3a\x6d\xd8\x60\xc9\x50\xad\x17\xa6\x8a\x15\xc7\x61\xae\x8a\x33\xd4\x60\x5e\x56\xd4\x00\x4e\xf0\xd2\x0c\x51\xcd\x0e\xe0\x91\x20\xbb\xc6\x79\x21\x1a\xfb\x51\x6f\xc1\x16\x1f\xe2\x51\xce\x60\x4c\x0e\xa0\xc0\xa5\x67\x05\xe0\x5f\xfe\xd1\xe8\x7a\x70\x28\xea\xee\xb3\x1d\x29\x68\x9c\xc7\x85\x65\x3f\x32\x52\x31\xc9\x5e\xb3\x9c\x9a\xc7\x2f\x35\x47\x16\x91\x6a\x3a\x65\x1f\xce\xe4\x52\xa5\x99\x3c\x3d\x27\x54\x7f\x5b\x4e\x38\x7f\x0d\x67\xa3\xe1\x54\x0e\x5c\xf3\x2a\x8c\xe4\x4d\x23\xed\xd4\x42\x6e\x1c\x8a\xb6\x65\x2b\x9e\xc7\x85\xbf\x92\x35\x7b\x55\x10\x8f\xf9\xe9\xd6\xf0\x5c\xd8\xb8\xe5\x5f\x54\xd5\xaf\xfa\x02\x3d\xfe\x86\x08\xb6\x9a\xd7\x9a\x27\x7c\x2f\xb3\x95\xbe\xcc\x4e\x97\xaf\xb8\x3e\x43\x74\x03\xbf\x1c\x69\xa0\x34\xeb\x0c\x48\xa8\x69\xda\x99\x8a\x57\x84\x46\xc4\xab\xe5\x56\x28\x60\x35\xb1\x7a\xe2\x57\xc2\x4f\x64\x23\xe8\xd2\x2c\xd4\xfb\x7c\x27\xaa\x83\x22\x2b\x5d\xf6\x07\xb6\xa7\xde\xf3\xc9\x22\x4d\x3e\x4a\xe1\xb2\x9a\x91\x05\x13\x6c\x47\x72\x1a\xe7\xd1\x6b\x26\x7a\x43\x0e\x7c\xcf\x30\xa7\xa2\xb1\x8a\x5e\xc3\xcb\x97\x47\x2f\x4b\x1a\x97\xd1\x97\x94\xf6\xf7\x87\x79\x3c\x15\xee\x69\xc2\xf5\xb9\x6d\x8e\x06\x01\x11\xa7\xdb\x96\x55\xc7\x2c\xa4\x1c\xb1\x77\xc9\xb8\x4a\x5e\x6a\x5e\x50\x25\x7f\x49\xcf\xf2\x44\x69\x42\xc2\x33\xdd\x2a\x56\x87\x21\x3c\xf8\x74\xa5\xe4\x9a\x73\x49\x3e\x9a\x89\x34\x79\x99\x5a\x44\x2e\x9b\xf2\x91\x9f\xb2\x80\x1c\xfa\x30\x66\x76\xc8\xf4\x0f\xca\xb0\x50\xa5\x13\xf4\xc9\x47\x59\x95\xa8\x64\x91\xa6\x7c\x84\x32\xc3\x9b\x1e\x5d\xd1\xfc\xa5\x11\xe3\x45\xe3\xc7\x69\xff\x23\x9e\xb9\xe3\xb7\xa5\x2c\x77\x03\x5b\x51\x14\x87\xc2\x5e\xaa\x58\x45\x59\xd5\xb2\xfb\xad\x18\x73\xcd\x38\x0a\x7c\x27\xb9\x62\x25\xb7\x41\xe0\x58\xce\x4d\xb8\x46\xaf\x2d\x99\xb7\xe6\x08\x65\xf5\x58\xcc\xd1\x8e\xc0\xd3\x27\xb8\xe1\x21\xe1\xd4\x4f\xc3\x2a\x5f\x2d\xe3\xa3\x3a\x22\xc9\x66\x33\xd5\x34\x99\xbf\x79\xe1\xee\xd6\xb6\x10\xd2\xf8\x92\xeb\x6b\x9b\xbe\x23\x65\x48\xc1\x41\xd9\x67\x73\xb3\xcc\xec\x2b\x36\x51\x94\xb9\x53\x14\xb0\x72\xe1\x18\x25\xb4\x69\x76\x24\x4f\x64\x1a\x86\xfa\x5f\xbc\x23\x39\xcd\x70\x86\xa7\x9e\xc1\x12\x01\xdb\xab\xcf\x20\x37\xd3\xd5\xb8\xd2\xbd\x48\x53\xdd\xa2\x36\x57\xc1\x7f\xf1\xf3\x9f\xc9\x9b\xbb\xac\x68\xbe\x2c\x95\x90\x65\x56\x34\xdf\x65\xe5\xad\x68\xbe\xd3\x23\x27\xca\x95\x68\x10\x6b\xa5\x01\xb3\xf5\xef\xbf\xfb\x92\x02\x0d\x7e\x7e\x7e\x76\x8a\xbc\x70\xdf\xe6\x9b\x3e\xc1\x9d\xbb\xae\x10\x31\xc5\x3c\xce\xef\x33\x59\x86\xa1\x0a\xc3\x7f\x19\xf8\x9f\x79\x99\xed\x90\x1a\xfb\x59\x6c\x40\x5e\x57\xd3\x33\x57\x53\xf4\x2c\x98\xaa\xf9\x4e\xd4\x75\x76\x2b\x98\x42\x52\x03\x22\x8a\x6b\x14\x28\xbf\xb1\x39\xb9\x7f\xb4\xf7\x68\x8d\x4f\x56\xe1\x98\x51\x2d\x6d\x61\x58\xbe\xe8\xad\x9d\xee\x0c\xfc\x44\xef\x40\x83\x97\x3e\x80\x14\x7e\xfd\xf6\x6b\xe3\x53\xf8\x55\x95\xad\xc5\x3a\x60\x9f\x68\xd2\x36\x9a\x17\xd1\x84\x3f\xa1\xb6\xad\x04\xa3\x9d\xe2\x8f\xb1\x75\xfa\x05\xce\xb4\xa0\x18\x3c\xbc\x47\x0e\x87\xfd\x25\x82\xba\x7b\x46\xc7\xb1\xba\x40\x84\x4b\x06\xd9\x7f\xc8\x72\x15\x99\xe7\xde\x86\x23\xa8\xfd\x8f\x67\x33\x53\x30\xe4\xbc\x9e\x9b\x02\x68\xd3\x10\xf7\x83\x4f\x16\x6c\x02\x00\x0a\x61\xd8\xcb\xff\x6a\xd1\x34\x5f\x0c\x36\x45\x72\x9d\x5a\x51\x21\xe4\x83\x2e\x71\xec\x19\x0b\x4c\xf4\x71\x30\xf0\x30\x03\xf1\x4e\x6f\x81\xa6\x81\xd1\x32\xb7\x3b\xff\x0d\x18\xe9\x0e\xb0\xe8\xe6\xeb\xea\xdd\x4a\x56\x45\x11\xf7\x26\xda\xd4\x08\xc0\xbb\xc7\x60\xd0\x27\x66\xee\x38\xa3\x9d\x36\xdc\x3a\xbf\x0d\x4d\xcb\x4c\xe4\x32\xcb\x0c\x8d\xb8\x20\x70\x2e\xcf\xbc\x60\x0e\x5c\x5f\x57\x25\xca\xd3\xeb\x67\xb9\xbe\x54\x4d\x16\x4c\xd2\xdf\xa0\xc0\x9a\xc9\xa4\x4e\xd9\x64\x01\x85\xba\x48\x10\xbd\xb0\x95\xf0\xc1\x0e\x83\x67\x66\x10\xb7\xac\x00\xc9\x3a\xe9\x94\xdd\x16\xcf\x9f\x46\xa4\xe0\x8a\x1d\xab\xe8\xdc\x25\xa9\x93\x6e\x4b\x40\x5a\x34\x6a\x26\xe7\x34\xa1\xc0\x27\x98\x49\x96\xc5\x65\x54\xda\x18\x89\x75\xca\x6a\x66\x5f\x79\x8e\x12\x79\x2c\xa2\x22\x76\xb1\xdc\xa3\x43\x8c\x68\x2a\x4c\xd2\xa8\x6a\xd9\xf7\xfc\xfc\xe7\xd9\xae\x9e\x9d\xb3\x1f\xf8\xf9\x0c\xed\x02\xa8\x2f\x85\xfa\x47\x5f\xe4\x3d\x57\xd5\xf7\xfb\xbd\xb3\x28\x70\xd9\xfe\xd6\xb3\xee\xb1\x36\x63\xdf\xb3\x60\x57\xcf\x3c\x2c\x9c\x1f\xd8\x3f\xd0\x0c\xe1\xf3\xb1\xed\xd5\x57\x69\x23\x54\x92\xff\x7b\x32\xf5\x14\xde\x5d\x13\x9f\x13\x13\x1a\xdf\x04\x08\x45\x7b\x0a\xfd\x34\x7d\x3e\x3f\xe4\xeb\xe9\xb4\x85\xbf\x7c\xc9\x9e\xfb\x71\x8c\x01\xb7\x68\x4c\x44\x9e\xf8\xa5\x0d\xd0\x51\x9e\x5a\xf6\x39\xc6\x53\xf6\xc1\x18\xfb\x5f\x70\x15\x19\xe1\x3c\xc6\x21\xef\x3c\xdd\x99\x9f\x8f\x19\x63\x63\xc5\x56\x55\xb9\xc9\x6f\x0f\x12\xa4\x05\xa0\x18\xa7\x4c\xb5\xac\x16\xea\x54\xbc\x44\x54\x1b\x41\x0f\x2c\xc2\xf0\x50\x9c\xa6\x68\x9e\xfc\x8d\x28\x9a\x72\x79\xd6\x0f\xb1\x89\x6f\x4a\xda\x0f\x08\x99\x0f\x63\x31\x1f\x01\x2b\x03\x28\x49\xaf\xe2\x68\xd0\x73\x7d\x17\xeb\x25\x60\x0b\x5a\x96\xad\x56\xa2\xae\x4f\x09\xba\xbb\xe2\x9b\x46\x8d\x48\x65\x95\xc5\xe9\xd7\xb7\x92\xd8\xe9\x54\x74\x0b\x23\x54\xb1\xd4\xf8\x93\x49\xca\x3a\xd5\x66\x2c\x23\x45\x8f\x05\x4c\x3d\x15\xdc\x70\xb2\x7b\x5b\x7b\x80\x9e\x4c\x9f\x24\x27\x6a\x10\x1c\x57\x33\xb2\x20\x7b\xfe\x9b\x6e\x0b\xd7\xfd\xa5\x79\xf9\xac\x8c\x13\x95\x46\xaa\x27\xad\xa4\xbe\x09\x33\x32\x0a\x26\x54\x49\x99\xa8\x44\xa6\x69\x4b\xfc\x91\xd0\xf4\xdd\x8b\xe5\x4a\x4a\xfa\x3b\xcb\xce\x70\x83\xa6\xcc\xc1\x5b\x7d\x8d\xd9\x66\xf5\xeb\x4c\x65\x7f\x7c\xcd\x77\x7d\x0f\xc3\xc9\xb0\x3d\x4a\xb3\x57\xfa\xf3\x9f\xc0\x3f\xe1\x39\xfb\xbb\xf9\x6b\x02\x8e\x5d\x3d\xa1\xb5\xc2\x8b\xab\xb6\xb9\x4a\xec\x73\x6a\xa3\x8d\x7d\x3c\xfb\x67\xea\x53\x9a\x7f\x1e\x59\xc2\x75\x73\x3e\x8c\x4b\x02\x91\x8f\x79\xb0\xce\x54\x36\xd3\x0c\x88\xa5\x2f\x7f\x65\xc1\xec\x79\x18\x0c\xbd\xf9\x87\x0b\x0a\x02\xd4\xf6\x2c\xf4\x34\x3b\x07\x97\x3a\x39\x16\x5a\x5f\xc9\x03\x9c\x88\x70\x7d\xcd\x8a\x5a\x04\x78\xd8\x92\x40\x93\x74\xc4\x6d\x02\x70\x2a\xc1\x39\x9f\x8a\x69\x10\xc4\x53\x11\xfd\xe8\x0c\x3c\xfe\xfa\xee\xed\x37\x68\x83\x00\x7b\x86\xb6\x44\x7a\x57\xc7\xf6\xef\xde\xf2\x45\x0f\x26\x8b\x29\xdf\x99\x89\x5d\xfb\x4a\xed\xa3\x49\x34\xd9\xfe\x3e\x37\x2f\x89\xa0\x4d\xf3\x93\xf7\xab\x65\xeb\xfe\x37\xbd\xfd\xf7\xf7\x39\xee\x4f\xdb\x06\xb3\x65\x5e\x0f\x3f\xa1\x4f\x7f\x37\x9c\x94\x41\x56\xbc\xfe\x50\xa9\x3f\x0d\x4b\xbd\x3e\x59\xec\x4f\xbd\x62\x81\x39\xf1\xd4\xf8\x47\x95\x0c\xb0\xee\x51\xab\xcb\x32\x7d\x79\xae\x3c\xf3\xd3\xde\x1a\x42\x6b\x16\x4f\x95\x03\xe7\xf6\xdf\x81\x90\x54\x68\xbb\x55\x79\x6a\xef\xc9\x4f\xf8\x86\x05\x66\x10\xf5\x5a\xa9\x03\x6a\xe2\x3b\x49\xe7\x0a\x88\xfb\x38\x83\xcb\x81\xae\x87\x94\x5c\xff\x40\x4e\xba\xc3\x1c\xc3\xa5\x8a\xba\xa7\xbf\x91\xd2\x88\x51\xff\x42\x29\xfb\x27\x7a\x3d\x42\x78\xe3\xb3\x9f\x60\x29\x0c\x6b\x65\x93\x85\xb3\x45\xcc\xcd\xc3\xb1\x6c\x05\x09\x23\x5c\x71\x3d\x96\x1a\x17\x97\x8d\x51\x4f\xa3\xdf\x86\xa1\xe7\x2d\xc0\x45\xbe\x21\x95\x47\x67\x1d\xf0\xa0\xa3\x01\x44\xda\xe1\x62\x82\xd2\x58\x46\xfe\x9b\x7f\x0e\x52\xcf\x7e\xb7\x31\x10\xdd\xbe\x35\xb0\xa8\xec\xf8\x9e\x87\x6f\x74\xcf\xc7\x97\xe3\x20\x44\xfd\x51\x4d\x66\x45\xb9\x9e\x1b\xf5\xb8\x59\x53\xbf\x1d\xc4\x41\x8c\x9f\xae\x7a\x24\x3a\x23\x29\x0e\x0e\x9a\x9b\x87\x80\x4e\x03\xf8\x28\x60\x25\xff\xc9\x9d\x3f\x4c\x86\x21\xc0\x2a\x1f\x45\x44\xd7\xb9\xbc\x0d\xe0\x1b\xd4\x48\x4a\xa3\xb2\x53\xc6\x40\xb0\xb9\x96\xad\xc5\x71\xa3\xe8\x13\x84\x88\xd3\xf5\x23\x14\x2f\xbf\x9e\x43\x2e\xac\xbc\x74\x31\x9f\x20\xfc\x93\x73\x66\xe2\xd7\xf3\x6b\xc8\xa6\x6f\x82\x35\x22\xb8\x06\x79\xe9\x04\xe1\xdc\x84\x69\xf1\xbe\x29\x67\x33\x70\x90\x25\xba\x2e\x6e\xac\x55\x2d\x6a\xae\xff\x2d\x65\xe6\x80\xa9\x40\x8f\xc5\x9c\xaa\xd0\x1b\xfd\xeb\xb9\xe9\x8c\x45\x60\xa5\x94\x4d\xca\x30\x84\x0d\x0a\xea\x13\x10\x46\x10\x4d\x14\xba\x76\x8e\x87\xe2\x36\xc3\x0e\x39\x82\x33\x47\x5b\x70\x02\x24\xd0\x39\x37\xcc\x92\x3d\xa1\x72\xe6\xb4\xdc\x7c\x28\xc9\xf1\x48\x4f\xa2\xdc\x14\xcb\x14\xe3\x06\x0d\x49\xd1\xd8\x0c\x61\x3b\x5f\x5a\x95\xf3\x88\xf1\x0e\x51\x5c\x30\xc1\xf5\xc8\x32\xa9\xc7\x79\xb8\xda\x2f\x65\x6c\xe7\xd5\x52\x33\x17\x78\xc2\x71\x5d\xd1\xe8\x42\xef\xaf\x0a\xb7\xb5\xce\xfa\x2b\xc0\xec\x02\x66\x26\x57\xa0\xe5\xbb\x9d\x52\xcd\x2c\x81\x81\x4c\x37\x6f\xdd\xb6\x19\x59\x97\x1f\xde\x7a\xa3\x85\xac\x0a\x91\xc9\xbf\x7f\xb0\x1c\xb3\x60\x70\xb5\xb3\x24\x1d\x15\xf9\xf9\xbc\xdb\x92\xe5\x7d\xe1\x12\x9e\x05\x2c\xeb\x19\x55\xd5\xbe\x3c\x6d\x36\x2b\x9b\x26\xef\x5d\x89\x2b\x96\x68\xee\x08\x98\xb2\x0f\x4c\x1e\x4e\x06\xb8\xe8\x60\x0b\x11\x77\x8a\x48\x43\x0c\xaa\x24\x4b\x99\xe8\x2d\x56\x8c\x75\x02\x0b\x52\xd3\xfd\xe9\x94\x99\x5f\xb0\x06\xeb\xee\x92\x56\x13\x5f\x22\xa7\x9c\x58\x48\x08\x7e\x9e\x4c\x67\x69\xac\xb9\xa9\xf5\x8b\xab\x79\x43\xaf\xd6\x53\x12\x47\x89\x78\x93\xc2\x8b\xab\xf5\xb4\xa1\xe7\x26\x0a\x1b\x53\x82\x0f\x23\xdb\x42\x58\x5c\xca\x1b\x4a\x82\xa9\x10\xd3\x80\xc2\x1d\xef\x4f\xe9\x0b\x17\xed\x56\x0a\x9e\x04\xef\xab\x7d\xc0\x82\xef\xf2\xdb\xad\x0a\x58\xf0\x49\xa5\x54\xb5\x0b\x58\xf0\x95\xd8\xa8\x20\xed\x05\x2b\xf5\xae\x05\x41\x59\x95\xc0\x17\x11\xc1\x31\xb8\x55\xad\x1e\x0b\x88\x3a\x06\x11\xb0\x1b\xe3\xaa\xd1\x4b\xd5\x8b\xcc\x59\xcd\x0d\x20\x98\x99\xbe\x58\xb9\x52\xaf\xe7\x2b\xd8\xd4\x81\xf9\x32\xc0\x18\xa9\xc3\xeb\xbe\xb3\x6e\x65\x19\x7f\xc2\x69\xac\xf0\x96\x93\x25\x55\x6a\xab\x4f\xaa\x94\x75\x8f\x5c\xd9\x98\x36\x15\x5e\xf8\xa5\x8b\x4d\x0a\xc4\x58\xdf\xba\xbd\xdc\xba\xa0\xee\x9a\xd4\xb1\xac\x95\x18\x6b\xc4\xcb\x05\xab\x79\x79\x0c\xe4\xf9\xac\x9c\xaf\x0e\x92\xf8\xc8\xeb\x9e\xae\x7b\x65\xce\x09\xd0\xed\x1f\xb8\x5e\x12\x85\x66\x7c\x25\x60\xb0\x12\xc8\x80\xb1\xe2\x13\x95\xc6\x41\x10\x05\xfb\x87\x80\xb2\x15\x1f\xbc\x6a\x1a\xfd\x62\xc2\x79\x11\x86\xd3\x03\x0d\x43\x25\xd0\x04\xd7\x55\x81\x5e\xab\xab\x30\x5c\x25\x1f\xa5\xe0\x1c\x0e\x2c\xcd\xe1\x9c\xbf\x64\x05\x2f\x9a\x46\xa7\xb3\x15\x9f\x1e\x9a\x66\x89\xab\xfc\x1a\xc7\x02\x1a\xb8\x9a\x16\x94\x91\xe5\xac\xa2\x2f\xc8\x72\x46\x2a\xdd\xd4\xf3\x43\xd3\xcc\xff\x42\xe9\x25\x5f\x84\x21\xc9\xf8\x82\xb2\xd5\x39\xaf\xce\x56\x2f\xf8\x4b\x76\xf4\xb1\xd1\x29\xb7\x9e\x2d\xfd\x8a\x4f\x57\x4d\xa3\x6b\x5c\xe8\x93\x2c\x59\xa6\xf1\x6a\x4a\xf4\xdf\xe9\x92\xbe\x90\xc9\xcb\x34\x9a\xea\x7f\x59\xa9\x77\xd2\xfc\x50\xe6\x8a\x17\xac\x9c\xd7\x2a\x93\x8a\xaf\x58\x39\x17\xe5\x9a\x83\x0b\x36\xc8\x17\x32\x01\x6b\xc1\x4e\x54\x2d\x7c\xb4\xd9\xe1\xaa\x2b\x3d\xe7\x1f\x96\xf3\x4c\xf8\xb7\x62\xb8\xf5\xcb\xf9\x4d\xb5\x7e\xec\xc5\xe1\x90\x03\x87\x2e\xc0\x97\x30\x6b\x56\x79\x6b\x96\x7d\x28\xc6\xa3\x5b\xeb\x78\x1a\x07\x37\x45\xb5\xfa\x35\xa0\x0c\x9a\xc0\xf3\x5e\x78\xcc\xc3\x30\xfc\xa3\xe6\x1a\xd1\x8a\x60\xc1\xb2\x0e\xc8\xa3\xba\xcc\x2e\xaa\xe9\x94\x92\x12\x00\xaf\xcd\xa6\x04\x5f\xeb\xb2\xbf\x15\x99\x8a\x89\x6b\x81\x9e\x85\x5c\x2f\x76\x24\x67\xa5\xd7\x85\xa6\x41\x3c\x80\xa4\xd2\x2b\x71\x50\x08\x87\x58\x67\x01\x0a\x0c\x07\x3b\xbd\x14\x60\x06\x82\xe5\xd6\x78\xcb\x8a\xb0\xc6\x89\x57\x23\xa6\x30\xe4\x7d\xbd\x8a\x51\x90\x85\x1e\x8f\x0b\xd7\x2f\xd4\xf5\xe4\x88\xe5\xad\x7b\x38\x68\x8f\x7e\xe3\x21\xff\xf4\x8e\xef\x7a\x5b\xdd\x8f\xec\x3e\x7b\x54\x01\xb3\xb9\xcd\xd7\x63\x8a\x73\x93\x87\xb6\x4c\x55\xb7\xb7\xc5\xd8\x31\x16\xdc\x54\x55\x21\x32\x5f\xb3\x19\x1b\xae\x5c\x57\x4c\x8c\x2d\xb8\xae\xc0\x3e\x0f\xcf\xce\xd2\xd4\x12\x5f\xe3\x5f\xfb\xa1\xfd\x89\xdf\xb6\xee\x84\x28\x04\xde\xb5\x2d\x6e\x51\x03\x48\x46\x10\x1c\x7c\x25\xf8\x79\xdf\xd3\xa7\x6f\x6b\x46\xcf\x73\xb6\xd1\x9f\x3f\x6f\x7e\xde\x55\xeb\x43\x21\x9e\x37\x57\xe7\x24\x8e\x7e\xc9\xee\xb2\x46\xac\x76\x19\xad\x57\x32\xdf\xab\xf3\x9c\xed\x05\x7f\x42\x10\xb4\x28\x59\xb2\xc0\x86\xee\xd9\x1d\x0a\x95\xef\x0b\xc1\xff\x8f\x7d\xfa\x3f\xaf\x02\x16\x74\x41\x7b\x52\xa6\xb6\x22\x5b\xe3\x47\xe0\x85\x89\xef\xcd\x63\xca\x56\x55\x11\x25\x2f\xdd\xcb\xcb\x55\x55\xdc\xca\xea\xb0\xc7\x6c\xee\x97\xf7\x85\x92\xbd\x0f\x94\xde\x98\xa6\x50\x78\xf4\xb3\xae\xa3\xe4\xa3\x61\xd6\x4b\x25\x4d\x76\xf9\x6a\xe4\x9b\x6b\xe3\xe5\x17\x25\x0b\x16\x04\x2c\x08\x52\x8f\x8c\x6c\xfd\xa0\xa9\xee\x6e\xce\x7f\x27\x86\x64\x7c\x22\x0e\x20\x02\xbf\xd0\xc8\xfb\x7c\x18\x80\x27\x1e\x89\xc9\x63\x3f\x4b\x52\x36\x90\x9b\xa1\x93\x58\xec\x0c\x2a\x05\x48\x79\x65\x3f\x1c\xe7\x00\x01\x0c\x88\x9f\xbd\xc9\x5e\x96\x17\x72\x3a\xa5\xb8\x11\x45\x22\x53\x16\xdc\x16\xd5\x4d\x56\xbc\xb9\xcb\x8a\x00\x9c\x6e\x91\x3a\xa8\xe1\x3b\x4a\xdb\xbd\x98\x57\x7b\x05\xf3\xc5\xf1\x39\xaf\x4a\xb6\x17\x73\x18\x63\x9d\xa4\x36\x55\xa5\xf4\x83\x9d\x57\x78\xce\x50\x3d\xb4\x07\x0b\x80\x6c\x0d\x5f\x6c\xe1\xe7\x1a\x96\xf8\x4e\xb0\x3b\xc1\x1e\xf5\x6a\x6e\xc2\xff\x88\xaf\xee\xa7\x17\xe7\xdd\x94\xdc\x9e\x02\x20\xb2\x20\x18\x6c\xc3\x95\x21\xd5\x96\xe0\x7f\x26\xb3\x5b\xa0\xd9\xd4\x82\xfb\x2c\xd8\xba\x1b\x86\xed\xe5\xfa\x62\x8b\x06\xfe\x00\x50\xb4\x4d\x29\x62\x33\x56\x74\xa8\x35\xa8\x28\xb5\xa3\xbd\x67\x95\x87\xe0\x53\xa5\x51\xd5\x29\x0b\x1e\x05\x8a\x82\x2a\x23\x3d\xc8\x38\x20\x10\xf4\x02\x52\x0d\xfd\x83\xd7\xf9\x9d\x26\xac\x35\x27\x2b\x73\x80\x57\xb4\x69\x12\x5c\x93\xf4\x18\x00\xfe\xc0\xf7\x22\xa9\xd3\xa6\xd9\x8b\xb9\x5d\xc4\x2c\xf3\x1c\x6d\x0f\xfa\x30\xbd\x9e\x6f\xd5\xae\xf8\x56\x0a\x63\xe0\x5a\xd1\xe9\x41\x1f\xab\x2b\x70\x83\x47\xd4\x9d\x8c\x67\x1d\xce\xf0\x59\xd7\xbf\xac\x17\x16\x9e\x64\x7c\xe3\xdb\x09\xfb\x70\x9e\x3c\x08\x50\x8e\x65\x30\x50\x6c\xe7\xde\x8b\x07\x38\x06\x5d\xe4\x85\xcd\xe0\x2b\x3d\x15\x17\x15\xdf\x27\x5b\x8b\xbc\x50\x82\xdf\x8d\x31\xc6\xab\x58\x49\x5f\xcd\x96\x14\xec\x79\x0c\x40\x94\x1b\xe4\x82\x7b\x8c\x65\x35\x38\xe2\x2b\xca\x32\xbe\x15\xa4\x3f\xe8\x15\x65\x01\xd2\xb8\x00\x54\x36\x6b\x41\x32\xca\x30\x6a\xf1\x0a\x5a\x92\x25\x2b\x68\xc9\xc6\xce\xa0\x45\x19\x0c\xa8\xf3\xe6\xac\xba\xd0\x90\xed\x4e\xf0\xf2\xe4\x6a\xeb\xd5\x5d\x9e\x98\x70\x72\xd7\x15\x31\x0c\x72\x36\x0c\x5a\x66\x62\x9c\x01\xcd\x0f\x28\xbb\x13\x83\xf7\x36\xd0\x1b\x0b\xba\x90\x6f\x47\x99\x4c\xe4\x33\x3d\x04\xbb\x7e\x90\xb4\x3b\x41\xd9\x1a\x61\x30\x3f\x2d\xaa\x52\xf0\x9d\x98\xaf\xf4\x03\xcc\xe1\x64\x41\x07\xbf\xdc\xa2\xb1\xd0\x99\xba\x40\xdf\xd3\x5b\x4f\x76\x26\x45\xf6\xea\xe1\xf2\xdc\x3d\x07\x6c\x3d\x2f\x2b\xa8\xe0\x53\xfc\x8c\x4f\x26\x47\x35\x75\x65\xfb\x6e\xd8\x40\x20\x6e\xf4\x80\x0d\xe3\xd5\x5e\xeb\x93\xed\x57\xf1\x78\xce\xee\xcd\x11\xb9\xab\x0e\xb5\x68\xf6\x55\x5e\x2a\x21\x9b\x15\x7a\xd8\xee\x44\x79\x68\xd6\x32\xbb\x6d\xd6\xb2\xda\xd3\x66\x55\xe4\xab\x5f\xcf\xd9\x03\x7c\x93\xfc\x3c\x4f\x5f\x50\x7d\xf7\x9a\x93\xf9\x94\x36\xd4\xa3\x3b\x6f\x84\x0f\xd0\xef\x92\xdf\x7a\xc9\x5e\x1c\xeb\x77\xc2\xd8\x0c\xb9\x9b\x40\x0f\x12\xd5\x93\x05\x77\xdf\x7c\x3a\xc0\x35\x03\xb6\x96\xd5\x7d\xcd\xa5\xd3\xf5\x3c\x59\xed\xe5\xd1\x15\x56\x82\xcc\xb1\x6c\x1a\xc9\xa4\xbb\xc5\x2a\x0a\xc5\xd7\x50\xbc\x4a\xea\x94\x55\x1e\xcf\xa4\xf7\x1d\xe8\x49\x4b\x04\x54\xe1\x3c\x8f\x49\xce\xf5\x9d\xdb\x15\x11\x99\x17\x61\x78\xac\x7a\x92\x3a\x77\xc9\x4a\x97\xd7\xfc\xf4\x5a\x60\x60\xb8\x73\x9a\xf3\xb7\x5d\x7c\xfd\x49\xee\xdc\xed\x7d\x10\xf9\x0a\x2e\x15\x39\x23\xf9\x98\xda\xf0\x9a\xd0\x79\xb5\xd9\x10\x01\x26\x35\x63\x56\x7e\x2d\x9d\xdf\x1e\xf2\x35\xcf\xe0\x0f\xc0\xcb\xc1\xef\x6b\xf8\x33\x9d\x82\xf5\xd3\xb1\x18\x43\xdc\x89\x52\xa1\x91\x0e\xfa\x15\xe4\xac\x04\xa5\x6c\x6b\xde\xf1\x27\x3c\x02\xa3\xa7\x63\x37\xa1\x1e\x9a\xbe\x7f\x1c\x59\x34\x7b\x76\x67\xc5\x88\x14\x71\xe7\x41\xae\x3c\xdf\x42\x88\x14\x09\xfc\x3a\xa9\xb8\xa4\x36\x05\xac\x6b\xac\xab\x3e\x88\xea\x4e\xb8\x66\xdd\x08\x40\xd1\xb0\x7d\x95\x83\xbe\x32\x72\xe0\x77\xd8\xfe\x9a\x36\x8d\xf7\x0b\x60\x0d\x49\xc6\xef\x4c\x95\xa8\xce\xb6\xbf\x7a\x06\x1c\x43\xd9\xf0\xb5\x6e\x0d\x8e\x97\x92\xf9\xed\xad\x90\x10\x42\x1c\x83\xa1\xc7\xf6\x95\x66\xd1\xc1\xc9\xdd\x5e\xb6\x3d\x1b\x1e\x13\x65\x55\xdf\x7a\x89\x11\xba\x06\xd4\x57\x9f\xe9\x63\xcf\x1e\xd1\x85\x3e\xa7\xb6\x7c\xc7\x01\xe4\x08\x8f\x47\x95\x14\xa9\xc1\x59\x59\xa6\x6c\xcd\x49\x9d\xbc\x34\xa1\x58\x0c\xee\xc7\xdc\x02\x7f\x50\xb6\x0d\x43\xb2\xe1\xb6\x5d\x00\x99\x90\x15\xc9\x36\x6d\x9a\xa7\x96\x6d\x39\xc9\xe3\xcd\x7c\x2d\x0a\x71\xab\x4f\xad\xc7\xbd\x88\x36\xf3\x9b\xbc\x5c\x1b\x7c\xf7\x2d\x3b\xf9\xed\x8a\x77\x32\x66\xc0\x90\xda\xb2\x4a\xe6\xb7\x50\xc6\x0e\x95\x30\x25\x33\x33\x1a\x49\xa6\xe7\x24\xc2\x19\x62\x76\x6e\xa3\x9c\xf9\x20\x00\x11\xcc\xf4\x09\x84\x00\xe3\xa0\x4a\x99\xa6\xe2\xf5\x3e\x5b\x89\x68\x6d\x40\x4d\xe6\x01\x08\x5e\x19\xd9\xf3\x03\xf2\x30\xc4\x3c\xf2\x24\xa5\xae\x77\x9f\x56\x87\x52\xf1\x05\xdb\xe8\x63\xe1\xb0\x0f\xc3\xc9\x72\xc2\xb9\xf9\xd5\xf9\xea\xaf\x59\x46\x9b\xe6\xd8\x1c\x23\x0c\x47\x4c\x34\xb6\x2c\xa3\x94\x6d\xf4\x0b\x3d\xce\xfa\xaf\x2d\x69\x45\xd9\xca\xae\x68\xbb\x42\xfb\x09\x1c\xff\xe8\xeb\x74\xbc\xb7\x06\xfc\xfb\x7e\x7b\xa7\x53\xb6\x60\x2b\x1a\x19\xfe\x62\x05\x92\x7d\x98\x0e\xdc\x90\xba\x93\x9e\xe6\xe0\xdf\xd8\x98\x9d\xea\x2c\x0c\x7b\xdb\x34\x0c\xfd\xfd\x63\xa1\x0f\xff\xe0\x92\xcd\x37\xe4\x7f\xb5\x6a\xb1\xba\x93\x8b\x0f\xa6\x97\x93\xf2\xc3\x8b\x17\x82\x22\xb0\x9a\xd7\x10\x8b\x68\x10\xee\xe5\xea\x6a\x4e\x83\xa9\x5d\x43\x57\x57\x73\x12\x47\xf3\x17\x57\x57\xf3\x86\x06\x74\x1a\x10\xfd\xf4\x9c\x06\x00\xc0\xcf\xf7\x1e\xda\xd0\x05\x5d\xf1\x3d\x80\x0d\xe5\x61\xb8\x9b\x70\xbe\x9a\xdb\x85\xdf\x34\x00\x2a\xae\x67\x15\xd2\x71\xda\xeb\x30\x9c\xd4\xb8\x7e\x57\x73\xb7\x7c\x69\xd3\xe8\x43\x07\xf2\xd5\x2e\x88\x1d\x09\x5e\xbc\x00\xc3\xa3\xa6\x99\x74\xe9\x7a\x49\xef\x7b\x18\x43\xfe\x37\x83\x25\x33\x9b\xb1\x8d\x11\xbf\x84\xa1\x7d\xea\x56\x25\x3d\xcb\xc2\x70\xb2\xef\x74\x83\x9a\x35\xcd\xe4\xba\xba\x2f\xdd\x96\xb0\x09\xf6\xab\x35\xf3\x28\xe5\xb5\x6f\x63\x46\x04\xdb\x76\x2f\xad\xc2\x04\xb6\x61\x87\x4b\xbb\x7d\x96\x97\xcf\x0e\xd4\xce\xa5\x53\x43\x6c\xa7\x7a\x51\xc0\x32\x9d\x2c\xe8\xd9\x50\xed\x7e\x80\x15\xe9\x72\x07\x58\xc9\x33\x5c\x90\x01\x6d\xc1\x93\x64\x7f\x64\xa2\xdf\x73\x7e\xd2\xcb\xde\x2d\xa2\x4d\xfe\xa0\xcf\xce\x03\xc8\x8e\x91\xd1\x1e\xea\x27\x80\x2a\x9b\xab\x1f\xe0\x19\xd8\xda\xc0\xbb\x30\xa9\x11\x51\x0a\xd6\xd5\xea\x68\x71\xba\xb7\x46\x3a\xab\x6f\x1a\xbc\x66\x8a\x2f\x2f\xd4\xe5\xb0\x26\x00\x7c\x38\x24\xca\xb3\xfc\x34\x21\x25\xeb\x6e\x4d\x03\xbc\x3d\xca\xfa\x27\xab\xf9\x5e\x8a\xd7\xa6\xc7\x4d\x03\x53\xd5\x4b\xf3\x3c\x83\x6b\x77\xff\xb2\x6d\x34\x84\xa7\xf6\x33\xb1\x02\xe1\x27\x48\xce\xb3\x44\x4d\xa7\x29\x85\x95\x9a\xd7\xdf\xca\x6a\x9f\xdd\x02\x64\xfe\x3b\x55\xed\xf7\x62\x4d\xe8\x05\x9a\x8d\xcd\x57\x07\x29\x45\xa9\x4c\xd3\xf2\xb9\x28\xc4\x8e\x49\x5d\x4a\xc5\x73\x57\x4d\x22\xbd\xe2\xbe\xdc\xed\xc4\x3a\xcf\x94\x18\x2f\xb7\x9e\x4b\xb7\x2b\xe0\x8b\xee\xa7\xbd\x8b\xf8\xbb\x86\xd4\xa6\x96\xb7\x37\xbf\xf0\x8a\xd5\x73\x7d\xd6\xf0\x0a\xfe\x74\x36\x31\xa4\xe4\x84\x0c\x27\xa8\x72\x3b\x35\x45\x6f\x51\x2c\xa8\x69\x2a\xdb\x70\x6a\x4e\x6c\xd3\xaf\x03\x00\xf5\x6b\xce\x8c\xd4\x73\x29\xea\x43\xa1\x38\x08\xfa\xd0\x33\x59\x94\xea\x35\x32\xe9\x84\xb2\x1a\xb4\x84\x5e\x17\x89\x67\x9d\xb6\x9a\xef\xab\x5a\xd9\x99\x0a\xc3\xfe\xef\xde\xcc\x31\x5b\x13\xd8\xb1\xe0\x70\x9e\x36\x0a\x80\x05\x9e\xa4\xec\xc0\x55\x9f\x0c\xb0\x82\x8b\x39\xc6\x47\x00\x78\xe9\x30\x2c\x7c\xad\x3f\x09\xe0\x06\xe0\x03\xbe\x8b\x39\x22\xca\xbf\xe2\x4b\x63\x89\x57\x68\xce\x66\x9b\xd7\x17\x05\x2f\x7a\x9e\xb6\x20\xa3\x33\x38\x43\x7e\xb1\xb6\xd4\x49\x07\x53\x0f\xf6\x9a\x85\x0b\xe5\x6c\x16\xa6\xf1\x4a\x7c\x6a\x19\x82\xb3\x1f\x40\x1e\xe3\xc4\x3c\x59\x92\xeb\x19\x04\x4c\x47\x47\xe9\x6c\x64\xcf\x2c\xc9\x53\x5e\xf6\xb8\x83\xf8\x9a\xe4\x08\x75\x60\x5c\xfc\x0b\xf0\x65\x33\x78\x2a\xf8\xca\x04\xde\x2c\xdc\x49\x45\x99\x2e\x29\x0c\x9d\x93\xdf\x59\xe5\xa8\x62\x6d\x50\x32\xf5\x2a\x88\x8a\x6e\x1e\xaa\xd6\xd9\x27\x14\xc6\xfd\xe4\x52\xfd\xee\x57\xca\x62\xdd\x01\xa4\x27\xb0\xd0\x7a\x9d\x0c\x66\x75\xdc\x94\xee\x7a\x0e\x84\xb6\xb3\xe7\x63\x82\x3d\x89\xf2\xb0\x13\xd6\x8a\x6e\x68\x55\x07\xd6\x6d\xe0\x78\xe0\x31\xf9\xd6\x24\x44\x6f\x80\xbc\xcc\x0a\x28\xd4\xe9\xfe\xc7\xde\xf5\xb4\x37\x1f\xfe\xfc\xe8\x4d\x22\xd2\x81\x55\xdf\xc9\xfe\x19\x45\xee\xef\x74\xe9\x5e\xe6\xca\x3e\x1b\x63\x42\x90\x0d\xb7\x6c\x93\x8f\x23\x2a\x24\xce\x38\x32\x8d\x45\xa4\x29\xbe\x19\x49\x30\x12\x32\x14\x21\x7a\x2a\xaa\x6c\x1d\x3d\x95\xd5\x27\x87\x1b\x63\x93\x68\x62\x7c\x3c\x19\xf6\x7e\x64\x14\x26\x9c\xbf\x83\x98\x09\x88\xa9\xa0\xb3\xf7\x86\x62\x83\x31\x3e\xd8\x64\xd9\xb2\x1e\x7b\x12\xc0\x9b\xbc\x0c\x5a\x76\x53\x1c\xe4\x87\xea\xe0\xbd\x3a\x74\xee\x5e\x15\x3a\xe1\x74\x0d\xd5\x41\x05\x2d\x83\xad\x78\xaa\x8e\xc0\x0a\xd2\xc1\x04\x42\x17\x89\x44\x00\xad\x1e\xf5\x97\x61\xf8\xb1\x39\x03\xad\x50\xc6\x6f\x00\x64\x31\x2d\x70\xa2\xe4\x71\xbf\x79\x43\x85\x58\x90\xc1\xa1\x7d\x23\x36\x95\x14\x87\x12\x47\xde\x27\x83\xfd\x63\xbc\x13\x16\x23\x39\xd4\x04\xaa\xb7\xc8\xc0\x46\xb0\x97\x32\xc7\x4a\x41\x62\xe2\xbe\xa3\x6d\xdb\xa2\x95\xbe\xe3\x5a\x8e\x6c\x92\x47\xed\xe6\x75\x85\x63\xe6\xf4\xc6\xc6\x6b\x7e\x5c\x94\x45\xcb\xdc\xe6\x75\x0f\xac\x07\xb3\xba\x01\xec\x2d\x46\xa6\xc0\x37\x0f\xc9\x65\x3c\xb2\xcb\x2c\xba\x0d\xd8\xf2\x62\x36\x4c\xc8\x6b\x73\xf8\x7c\x8b\x47\x91\x58\x73\x87\xdd\xe7\x92\x6c\xd4\x41\xa0\xf3\xc3\x97\xe6\x6c\x13\xfe\xb8\xc5\x6f\x44\xf4\xd6\x56\x89\x87\xbc\x9d\xc1\x30\xfc\x08\x8f\x0b\xf8\xe5\x87\x68\x37\x29\xdd\x11\x11\xb9\x59\xc7\xd5\xd2\x63\x1a\x44\xff\x37\x66\x01\xdc\x4e\xb1\x76\x59\x7a\xbf\x8d\x12\x09\x87\x80\x29\xbc\x27\xc2\xdd\x13\x05\x16\x06\x7c\x40\xe5\x3b\xf1\x4e\x65\xbb\x3d\xc7\x11\xb5\x3f\x9b\xe6\x75\xa6\xc4\xbc\xac\xee\x89\x81\x52\xe9\x88\x03\xd7\x5b\xfe\x88\xc8\xf2\x27\x0f\x93\x29\x32\xaf\xd9\xf1\x88\xeb\xa1\x1a\xe3\x97\x30\xfd\x03\x8c\x0f\x66\x78\x97\xef\x0e\xd0\xcd\x68\xb2\x64\x7d\x8e\xe2\xd8\x9d\xf4\x78\x69\x9c\x9d\x5a\x07\x6f\x04\xd3\x87\xbc\x79\xed\x6a\x81\xd8\x3c\x03\xbe\xa5\x65\x03\xb6\xe5\x7f\x52\xf1\x71\xbf\x3e\x54\xf5\x11\x7f\x84\x75\x8f\x8d\xd2\xff\xa4\x11\x1f\x18\xe5\xdf\x6b\xcd\xd8\xa7\x66\x89\x8c\xb4\xb6\x75\xa8\x33\x59\xa1\xfe\x26\x1e\xf5\x61\x74\x03\xe7\x06\x60\x3b\xad\xf4\x76\x2f\xdc\x09\xb6\xcd\xca\x5b\xb1\x7e\x5f\x1d\x00\x57\x5b\xa7\x28\x59\x98\xaf\xd6\x42\x65\x79\xa1\x9f\x60\x32\xbe\xdd\x66\x35\x7c\xb4\x13\x2a\x33\x59\xf6\xd9\xad\xf8\xd1\x3e\xfc\xa4\x1f\xc0\x42\xcd\xbc\xbd\xcb\xc5\xbd\xa9\x45\xda\xbf\x9f\xea\x7d\x37\x59\xb0\x5f\x31\xcb\xaf\xe2\xd1\xa6\x98\x10\x44\xee\x09\x9b\x53\xe4\xa2\x54\x3f\x76\x8f\x50\x49\xb5\xd9\xd4\x02\x53\xf1\x11\x52\x8d\x30\xf9\xcb\xb5\xf7\x03\xce\x1b\xdd\xac\x95\x14\xa2\xfc\xb1\x7b\x84\x2f\x70\xf7\x7b\xbd\x57\x95\x91\x01\xe3\x0f\x97\x7e\xbf\xcd\xc7\x2e\x70\xdc\x72\xa3\x67\x03\xbc\x51\xc8\x1f\x86\xd7\xc2\x86\x5a\x02\x74\xde\xd8\x38\x46\xce\xed\x40\xc4\xdd\x63\x24\xe6\x6e\x2c\xdc\xf7\xbe\xc1\xf7\xfd\xa0\xac\x65\xa8\xe2\x65\xf4\x32\x54\xf1\x47\xd1\x9f\x43\x15\xbf\x8c\x16\x91\xf9\x10\xd7\x80\x15\x97\xea\xe5\xd1\x41\x11\x81\xdc\x5d\xef\x3f\x19\x05\xf0\x5c\xdd\x09\x19\x30\x78\x2c\x44\x76\x27\x6c\xf2\x41\x05\x76\x10\x4d\x76\xf3\x0b\x3f\x30\x3f\xcc\x27\xf6\x15\x1c\xe9\xfd\xc3\x66\x78\xbd\x11\x29\x7f\xea\x71\x03\x8a\x59\x71\x48\xa4\x0c\x37\x7a\x34\xd2\xe0\x1b\xd0\xa7\xb6\x80\x83\xee\xee\x58\x6e\x02\x40\xbc\x8e\xcc\x42\xd3\x0c\x11\xc1\x4a\x00\x9a\xc7\x11\xe4\xb9\xbb\x67\x31\xd9\x5d\x0a\xc7\x45\xd6\xcc\x7c\x03\x38\xc6\x47\x66\x88\xbd\xc0\x59\xd6\x02\xc9\x34\xe8\xd3\xce\x0a\x10\xd2\x5b\x56\x95\xc7\x12\xb0\x53\xd9\xd9\x52\x7f\xb0\xd9\x9c\x72\x3c\x01\xe3\xd8\x63\x82\xa9\x53\xdc\xd0\xb8\x03\xdd\x1f\x2f\x76\x4d\xc4\xe0\x06\x8f\x62\xfb\xb2\xbb\xc6\xc6\xa5\x1b\xa1\x69\x30\x0f\xa6\xde\xab\xa8\x7b\x05\xa1\x11\xf0\xee\xc3\x4a\x77\x43\x05\xea\x34\xaa\x1c\x31\x01\x3c\x00\xa7\x4f\x50\x24\x98\x9b\x0d\x60\x49\x8b\x13\x78\x7c\x20\x45\x50\x61\xd8\x39\xab\x77\x38\xa3\x00\x8d\xa1\x98\x72\xba\x14\x60\x16\x50\x60\xff\xd6\x60\x92\x9d\x54\x26\xf4\x8c\x92\x99\x44\x1b\x68\x63\xcb\xf1\x31\x18\x6c\xc4\x93\x4c\x8a\xac\xb9\x91\xcd\xaa\x2a\x1a\xb1\xbb\x11\xeb\x66\x2b\x9b\x7c\x77\xdb\x00\xc3\xd9\x14\x79\xf9\x6b\xa3\x29\x62\xb3\xcf\x64\xb6\xa3\xe4\xb4\x8d\xc7\x0b\x84\x89\xa4\x57\xe7\xaf\xce\x6f\x73\xf6\xab\xae\x00\xf5\x9d\xcd\x25\x18\xcd\x34\x97\xba\xb4\xf3\x9c\x7d\x2d\xf8\xb9\x51\xda\x5d\xd5\x2f\x48\x1c\x25\x3f\xf3\xb4\xe1\x57\xf5\x0b\xab\xcb\x9b\xd3\xf3\x9c\x7d\x2b\xf8\xf9\xcf\x57\xf5\x8b\xcb\x09\x89\xa3\xab\xe4\xd3\xd7\x1f\xbf\xff\xf8\x2a\x69\x66\x33\xda\xe8\x84\xf4\x2a\xd5\xcf\xaf\xae\xea\x17\xcf\x7d\xd7\x8e\xf7\xa2\xe7\x4d\x84\x98\x50\xfa\x44\x08\xa8\x66\xa7\x8f\xc1\xc7\x94\x0f\x58\x15\x28\xa9\xf3\x01\xec\xa8\x05\xae\x22\x01\x58\x15\x04\x34\x59\xa4\x4d\xe3\x01\x21\x7d\xd7\x8f\x80\x04\x7b\x88\x20\x15\x3c\x15\xb0\x6d\x1a\x9c\x07\x53\xc3\x41\x7a\x25\xfd\x22\x06\x1e\x20\xe7\x68\xea\xd8\x69\x80\x5d\x8c\x91\xbf\xd0\x58\xf8\x8c\xa8\xb3\xee\x8f\x2c\xab\x7c\x54\xab\x5f\xd3\x37\x62\x54\x7e\xc1\x0e\x88\xd2\x30\x88\xf4\xa8\x99\xe9\xbe\x7c\x9a\x54\x9e\xa9\x39\x65\x19\x47\x03\x0e\xd0\x7a\x17\xbc\x72\xb2\x6a\xb7\x0b\x8c\x3c\x32\x33\x9b\x87\x65\x9d\x02\x88\x15\x06\xd9\x68\xc1\x4a\x5e\x24\x79\x3a\x34\x0e\xe9\xa9\xc5\x58\xce\x74\x9e\x44\xa6\xf4\xec\xef\xfd\x36\xd5\xfc\xef\x5e\x9b\x0e\xdc\xc7\x62\xaa\x29\x33\x9e\x00\x08\x62\xe0\x46\xe2\x2b\xcf\xa0\x52\x71\xab\xcd\x4b\x52\x7d\x1b\xb0\x06\x96\x9d\x5d\xc7\x82\xed\x3b\xd7\xce\x2d\xdf\xcf\x96\xec\x0e\x50\x7a\xd9\x23\xdf\x91\x3b\x90\xd7\x3f\x36\xcd\xfe\xd5\x72\xc4\xa7\xec\x2e\x0c\x27\xbe\x72\x3b\x0c\xbf\x36\xe7\xdd\x9d\x87\xf9\xdd\xdf\xc7\x0e\x8f\x43\xcc\xc5\x6f\x24\xa7\x67\x8f\x61\x48\x20\xc6\xea\x9d\x27\xab\xca\x59\x05\x56\x16\x84\x52\xca\xbe\x12\xa4\xb2\x84\x18\x1a\xb4\x87\xf9\x22\x39\xbf\x15\x44\x13\xa0\x45\x3a\x30\x55\x98\x2c\x99\xd0\xe7\x86\xbf\x05\x40\x55\xea\x99\x5f\xf8\x2e\x2c\x15\x65\x55\xd3\x94\x46\x82\x74\xe0\xa4\x36\x60\x68\x5b\x41\x72\xcf\xbe\xe1\x3b\xe1\x02\x20\x5c\x6c\x2e\xf7\x17\x9b\xe9\x94\x16\x3c\x67\x9b\x09\xe7\x5b\x88\x15\x70\x8d\x3a\x77\x52\x30\x70\x28\xa6\xec\xa0\x6f\x14\x68\xfe\x51\xb3\xad\x7e\xe1\x8a\xa3\x94\x49\xeb\x7b\xba\x49\x59\xc1\x36\x14\xc3\xb5\xa1\xed\x44\x9d\xd4\x1d\x3e\xec\xa0\x83\xd8\xba\x9a\xfd\x22\xa8\x9e\xc4\x8b\xcd\xe5\xc1\x34\xa6\xd6\x45\x59\x53\x8b\xc2\x37\xb5\x98\xb8\x05\x5e\xf4\xed\x8e\x7a\xe6\xc4\x2b\x56\x40\xac\xa8\x79\x2d\x57\x61\x18\xa0\x55\x5b\x30\xe1\xdc\x2f\x6c\x00\x5b\x7f\x3d\xbf\x16\x77\x59\xf1\xbd\x2c\x74\x51\xf6\x19\xcb\xa0\xd1\xad\xfe\xb2\x33\x51\x71\x8e\x66\xdf\x0a\xc0\xa2\xd7\x15\x3a\xc9\x97\xb7\xa3\x5f\x8b\x23\xa4\x72\x96\x73\x15\xfb\x88\xd3\x34\x12\xac\xe2\x8b\x0b\x13\xb1\xa4\x44\xc3\x45\x30\x71\x94\x4d\xb3\x9c\xf8\xe8\xd1\xc0\x58\x14\x22\x2b\x61\x7f\x6d\x31\x9a\x59\xd9\x0b\x2f\x4a\x64\x6f\x28\xca\xa1\x8d\x2b\x05\xf3\x16\xfd\xa9\x37\x89\xbd\x32\x7a\xc6\xa9\x5e\x38\x28\xe1\x3b\x9f\xf9\xd6\x43\xe3\x31\x4f\xed\x10\x7d\x2c\x58\x70\xf9\x7c\xf9\xea\xf2\xfc\xf9\xcb\x57\x01\x62\xa1\x1e\x31\x22\x8e\xaf\xe8\xc5\x2d\x1a\x18\x7f\x80\xb6\xf5\x03\x36\xe3\x08\x65\x33\xb4\x22\xc1\x31\xf4\x41\xd8\x97\xfd\x04\xf4\xb0\x44\x7c\x7a\x22\x28\xd2\x47\xb0\x12\x5a\x51\x03\xce\x4a\x2a\x0e\x7e\xae\x74\x18\xcb\xad\xe6\x55\x52\x42\x48\x2f\xfd\xc7\xc0\xb4\x74\xc1\x04\x48\xc1\x0f\xa7\xe2\x09\x84\x61\x61\x56\x78\x6d\x18\xeb\x83\x3d\x63\x79\x6d\x9f\x22\x53\x16\xda\x71\x07\xd6\x58\x06\x7e\x37\x0d\x39\xf4\xac\x60\x78\xdd\xfb\x09\xe3\xa1\x00\xeb\x95\xa2\x50\xb9\x6a\x1a\xe8\x06\x03\xc3\x33\xbf\x83\xd5\xb0\x63\xdf\x08\x02\x3d\xd3\xfd\x32\xb6\x55\x70\x3c\xad\xec\x72\x30\x23\xe4\x2d\x22\x2f\xaa\xcc\x5a\x90\x8c\x4d\x36\x61\x08\x96\x92\xde\x3a\x5b\xa1\x07\x48\x79\xe4\xc3\xe5\x87\x56\x2b\xc1\x80\xba\xc7\xbc\xc3\x0e\xf1\xfd\xcc\x84\xdb\x24\xf9\x86\x7c\x4e\x24\x35\x30\xd0\x32\xf9\xa9\x73\x75\x85\x24\x7b\xec\x75\x6e\xcf\x36\x25\x4f\xca\x34\x1e\x70\x64\x10\x09\xad\xaf\xc3\x03\xd3\x18\xab\xc3\x3b\xf3\x2b\x30\xac\x5f\x2b\x93\xbf\x7b\xae\xcf\xc4\xff\x69\xb9\xc3\x63\xde\x7d\x0d\x41\x44\xc6\xf6\xce\x6b\xc7\x18\x8e\xeb\xae\x8f\x33\xd2\x91\x08\xb7\x26\xcf\xd0\xcf\x4f\x1c\x7b\x5b\x8b\x18\x23\x36\xa0\x6d\xb1\x31\x48\x86\xd8\xbf\xf4\x88\x81\x5d\x1a\x9d\xc7\x70\x3b\x0d\xd2\xfe\x7b\x98\xd4\x34\x28\xbb\xf3\xed\xfc\x44\xe7\xf8\x27\x8e\x5c\xa1\x68\xcb\xd0\x06\x6d\xc4\x06\xfb\x2b\x31\xb8\x26\xf5\xba\xf7\xef\x37\xf1\xbd\x1b\xcf\x9e\xfd\x1b\xb6\x73\x2f\xc5\xbf\xd5\x1c\xcb\xb9\xf5\xab\x5a\x8e\xa4\xfd\xf7\x30\xc9\x5e\xf6\xbb\x76\x9d\xa9\x79\x5e\xd6\x42\xaa\x4f\x40\x4c\xac\x89\x67\x0f\xa4\x55\x37\x14\x25\xc8\xff\xe3\x76\x42\xcd\xfe\x49\x32\x48\x38\xaa\x18\xb1\xc0\x5b\x96\x6d\x54\x5f\x7e\xfe\x7f\xad\xba\x5e\x68\x0d\x5d\xf5\x11\x02\xa3\x03\xe8\x06\xcd\xad\x39\x52\x51\x3a\x96\xa8\x94\x82\x56\x79\x18\x93\x83\x0c\xce\x54\x01\x31\x00\xf4\xc5\xbb\x67\x93\xda\xbf\x1f\x8e\x9c\x62\x5e\x7c\x0a\x23\x6e\x09\x43\x61\xe0\x3e\x38\x57\xb1\x88\x8c\x2c\x57\xb3\x3d\xa3\xae\x3f\xc0\x75\xf5\xbc\x62\xf5\x39\xfb\x07\x77\x35\x2e\x15\xe3\x36\x08\x66\x20\xc8\xbc\x7b\x3e\x70\x7d\x47\xe8\xa3\xd8\xf1\x0e\xdc\xc3\xd9\x6a\x8e\x02\x4a\x88\x30\x9c\xfc\x2a\x3a\x94\xdb\xc9\x5e\x24\xce\x38\x59\x7c\xc8\x38\x39\xa5\x4f\x82\x0f\x4d\x8f\xf5\xa2\x96\x8f\x88\xec\x6e\x2f\x17\xa0\x52\x36\x9d\x91\x46\x19\x7d\x7a\xc2\x14\x4e\x98\xd7\x6e\xae\x0b\xe5\x0b\xdf\x9e\x52\x99\x15\x66\x09\x1b\x6e\x70\xd0\x76\x9d\xa6\x40\x86\x87\xe9\x03\x64\x5a\x91\x6b\xe2\x9c\x83\x3e\xb0\xd2\x3b\xff\xd5\xfe\xf2\x3e\xf3\x90\x4a\x71\x6b\x5f\x2e\x46\x7a\x06\x81\x32\x18\x98\xcd\x98\xb6\x18\x33\x71\x13\x43\xa3\xd5\xb4\xdf\xc3\xfb\xc6\x5e\xbd\xaf\xa2\x00\x9f\x02\x4b\xb6\x74\x92\x79\x0c\x98\xbf\xb5\xa2\x00\xe9\x85\x4d\xfd\x18\x76\x73\x00\x9b\x3a\xb0\x03\xf0\x71\x51\x44\x81\x37\x18\x23\xb2\xb6\x01\x24\xb3\xe8\x39\x28\x61\x78\x1e\x00\xb3\xa9\x5c\xf0\xaf\xd9\x92\x65\x7c\x71\x91\x5d\xf2\xea\x22\xd3\xdc\x2e\x04\xf2\xab\x3c\x1f\x57\xdc\x10\x9a\xf3\xbb\x26\x79\x92\xa5\x34\x51\x29\x91\x94\xd5\x36\x7a\x28\x93\x08\xaa\xde\xdb\x9b\x1e\xc8\x72\xe9\x84\x2a\x5f\x0e\x5d\x22\xad\x1b\x64\x3c\xd9\x3f\x50\xf4\x85\x9c\x5a\x57\xc8\xcf\xfa\x46\x8e\x36\x10\x62\x8f\xdf\x74\xac\x56\x2e\xee\xbd\x68\x30\x72\x5e\xed\x45\x29\x24\x48\x87\x04\xc5\x06\x7e\x5a\xed\xf6\x07\x25\xd6\xef\xc0\xff\x4d\xd1\x96\xfd\xab\xd7\x1c\x29\x8c\x9d\x55\x13\x50\x68\x41\x27\x32\xf9\x42\x8c\x32\xc8\xd6\x9d\xd1\x32\x63\xe0\x4a\xf7\x19\xb0\xa8\x61\x48\x02\xb8\xeb\x64\x1c\x2a\xb7\xaa\x64\xe0\x09\x89\xa2\x4d\x23\x35\x29\xec\xc9\x28\x8f\x79\x69\x30\xf9\xf4\x3c\xf6\x28\x65\x93\xf5\x7c\x9f\x3f\x88\xe2\x93\xea\x01\x3a\x52\x13\x1a\x86\x5f\x1a\x42\x90\xd1\x30\xfc\x97\x79\x56\x08\x6f\x50\xcf\x21\xb0\x18\xcb\x79\x3d\xdf\xe5\xe5\x0f\xf0\xa3\xd2\x3f\xb2\x07\xfc\xd1\xa5\x7b\xa9\xf6\x3b\x9e\x31\xdd\x83\x7b\x93\x13\xd3\x4a\xff\x9b\x9c\x79\x5f\x55\xd4\x83\x7c\xc9\xe2\x6c\x1a\x04\x91\x17\x1d\xfa\x93\x9e\xe8\xe9\xa9\x87\x70\x83\x7a\xc9\x2e\xc6\x97\x43\xeb\xe7\x8a\x9e\x80\x0b\x35\x92\x13\x9b\xb1\x6d\xdb\x5e\x98\x08\x5b\xab\xc2\xb2\x57\xf4\xa9\x30\xde\x69\xab\xba\x7e\x2f\x1e\x14\x0f\xf6\x26\x22\x5c\x94\xdd\x00\x5e\xa6\xb8\x28\xc4\x46\x45\xb3\xa5\xfe\x6f\xff\x70\x01\xfd\x8d\xfe\x73\xb1\x7f\xb8\xd8\x65\xf2\x36\x2f\x67\xaa\xda\x47\xfa\xcd\x3e\x5b\xaf\xf3\xf2\x36\x5a\x5c\xdc\x54\x72\x2d\x64\xb4\x08\x00\x41\x72\xbc\x78\x1b\xf0\xef\xc2\xf8\xc5\x45\xe0\x5b\x78\x71\x53\x3d\xcc\xea\xfc\x5f\xba\x1c\x2c\x65\x76\x53\x3d\x5c\x54\x77\x42\x6e\x8a\xea\x3e\xaa\x01\xb6\xcb\xd4\x1c\x65\x07\x55\xd9\xca\xfc\x16\xf8\xed\xfc\xd3\x05\xb4\xef\x4f\x01\xbb\xe9\x7b\x0f\x14\x7d\x66\x6a\x65\xf0\xb7\x51\x0a\xd7\xdf\x19\x2b\x7a\x96\xf3\x60\xf9\xa7\x00\x4d\x86\xab\x3d\x3b\xf0\xe5\x4b\xce\xb9\x24\x6a\x8e\x6d\xf9\x4a\x6c\x14\x75\xdd\x95\xf9\xed\x56\xf1\xe0\x3f\x17\x7f\x0a\x58\xcd\x3f\xfa\x4f\x93\x15\x92\x35\xa9\x71\x29\xd0\xca\xee\x3b\x3b\x3a\x3c\xb0\xa3\x1f\xb0\x0c\x73\xaf\xe6\xa8\xd8\x81\x55\xd5\x34\x5e\x86\x9b\xfe\xcd\xb8\xa0\x6c\x85\xe8\xad\xdd\x2a\x93\xde\x11\x8d\xc1\x4b\xab\x43\xb9\x26\x00\xf9\xf2\x59\x51\x65\x10\xaf\xa3\x75\x2e\xc2\x78\xd1\x3d\x76\xf3\x00\x17\x10\x5d\xfa\xe8\x8b\xb3\x95\x73\xe5\xb4\xfd\xb9\xc9\x56\xbf\xde\x42\x5d\x9f\x16\xf9\x9e\x07\x06\x57\x5f\xcf\xa9\x5e\x1b\x7d\x17\x8a\xf1\x4f\x02\xb6\x86\xb3\x47\xc2\xdd\x19\xe6\xa3\x5f\x0e\x8c\xcd\xd8\xb7\x1d\x9a\xc6\x9a\x3d\xdd\x54\x0f\xef\x60\x59\x7d\x27\x8a\xfc\x04\xea\x35\x40\x53\xb4\xac\x4f\x4c\x4e\xe4\xab\x4d\x3e\x1b\x40\xf1\x44\xb6\x5c\x9f\xd5\x58\xe1\xd7\x6e\x9d\x9c\xc8\x7b\x68\x19\x2e\x6f\x6c\xeb\xa9\x16\x66\x6d\x4b\x69\x4b\x89\x81\x97\x03\x4f\x90\xb2\x2a\x45\x03\x12\x6b\x12\x4f\x66\xab\x44\x64\x29\x9d\x4f\xe9\x39\xfb\x5e\xbf\x9e\xcd\xce\xd9\x0f\x82\x3f\xb9\xbd\xe7\x2d\x9e\xbb\xbc\xce\x6f\xf2\x22\x57\x8f\x51\xb0\xcd\xd7\x6b\x51\x06\xcc\xee\x48\xe3\xee\xdb\xb2\x7f\x08\xfe\x54\x08\xa5\x84\x7c\xb7\xcf\x56\x7a\x87\x05\x8b\x80\x6d\xaa\x52\xfd\x00\x91\x1a\xa3\xe0\xcf\x8b\x45\xd0\xb2\xbf\x09\x9e\x04\x3f\x88\x9b\x5f\x73\x15\xb0\xe0\xeb\xea\x5f\x01\x0b\x76\x75\x90\xb2\xcf\x47\x7c\x86\x60\xcd\x98\xd3\xa2\xc3\x4a\x13\x5e\x1c\x1c\x4d\x35\xf4\x29\x51\x27\x62\x80\x72\xd6\x7b\xc5\x07\xb7\x1a\xa1\x2f\xd3\x9f\x8b\xce\x53\xc3\xdd\xe1\x39\x86\x40\xf7\x21\xe2\xa6\x56\x18\xbe\xa4\x4c\xf2\xbf\x89\x1e\x6a\x0e\xe2\x0e\xff\x4d\x24\x32\x9d\x2a\xda\x2f\xb5\x05\x96\x52\x50\xa6\xba\x6d\xf6\x93\x18\x44\x64\xb3\x46\xd4\x5d\x48\xb0\x18\xb6\xdf\x2e\x7b\x20\x0b\x56\x26\x2f\xd3\x19\x91\x4d\xb3\xa0\x74\x4a\x4a\x70\xa4\x07\xaf\xf9\xc8\x2b\xf3\xef\x63\x6e\x36\x3c\xc0\xd8\x98\x80\xbd\xb1\x8c\x16\x0c\x71\x04\x17\x18\x2e\x8b\x73\x52\xc6\x01\xd2\xc5\x20\xb2\x9b\xa5\xb3\x04\x5a\x20\xc0\x57\x76\xf9\xe7\x8b\x6c\xca\x5f\xd2\x00\x49\x98\xf5\xb2\x3e\x4c\x1d\xb4\x81\x9c\x4a\x91\x64\x80\x2e\x98\x53\xca\xca\x98\xb8\xd2\x6c\xe6\x59\x87\x83\x60\xc8\x6f\xd0\xff\xc8\x96\x3e\x39\xfe\xc0\x34\x11\xf3\x4f\x83\x1f\x30\xde\x27\x7e\x47\x23\xbf\x21\xa3\x65\x77\xa9\x80\xa6\xe6\x67\xff\x40\xc9\x51\xfd\xc7\xf2\xd9\x39\x03\x5c\x98\x57\x00\x1c\x70\x98\x72\x6f\xfa\xe0\x71\x25\xf2\x82\x88\x24\x40\xe2\x1c\x4c\xd5\xf1\x0a\x53\x6e\x85\xa5\xb3\x6a\x76\x98\xd5\xb3\xf9\x5f\x28\xd5\xfb\xdd\x4d\xf2\x8f\x83\x85\x03\x1c\x13\xcb\xb9\xe1\xb2\x4a\x7d\x66\x04\xdd\x79\xd8\x43\x9f\x70\x94\x2d\x60\x93\xa5\xce\x9a\x71\x08\xa4\x66\x39\xa0\x9c\x0e\x42\xa6\xe6\xfa\x30\xd3\x47\x67\x60\x25\xc3\x19\xcf\xc2\x90\xac\xe7\x47\x44\x92\xd0\xa6\xc9\x3b\x8c\x0c\xcd\x9f\x31\x82\xdf\x72\xce\xf3\xa6\x99\x78\x47\x48\x4e\x01\xb5\xa5\xc8\x4f\xc0\x63\x60\xf3\x30\x88\xef\x1f\x1e\x31\x86\x78\x95\x24\xe7\xbd\x9a\xf4\x9e\x99\xda\xad\xd1\x34\xa4\x1a\x5b\xef\x2c\x03\x4f\x8a\xa9\xde\x53\xdd\x58\xff\xb5\xe7\x91\xeb\xd9\x76\xfd\xd5\x0b\x79\x0f\x61\xea\xbc\x7c\x9e\x88\x79\x55\xd7\x88\x06\xf4\x54\x69\x62\xa8\x1e\xa3\xa7\x63\x5c\x42\x90\x70\x1a\x06\x1d\x26\x31\x30\x99\xdd\x75\x1d\x10\x09\x64\x1c\x2c\x83\x48\x82\xa9\x9b\x03\xc9\x88\x9e\xb2\x32\xdf\x81\xf5\xca\x97\x4a\x48\x78\x00\xdb\x60\xb4\xb0\x2c\x0e\xbb\xee\xe7\x26\x2f\x8a\xb7\xa6\x19\xfa\x67\x21\x1e\x3e\x97\xd5\xbd\x7d\x7e\xb7\x95\x79\xf9\x2b\xfc\xea\x88\xf5\x64\xc1\xf4\x1c\x7d\xe1\x7e\x55\x5d\x01\xc8\x4b\xc1\xc3\x7e\x9b\xa1\xc5\xc9\x7d\xbe\xae\xee\xe1\xe9\x5f\x5f\x42\x24\x2c\xfd\x54\x55\x3b\xb0\xba\xb4\x74\x38\x7a\x6a\x19\xac\x91\x11\x4d\x3e\xaa\xe4\x3f\x1a\x48\xbb\xff\x6b\xf0\xdb\xac\x31\x0f\xa9\x84\xd5\x00\x57\xc8\x0e\xfc\x7b\xc7\xc1\x83\x7d\x34\x1e\x1a\xf9\x86\x1c\xe0\x34\x78\x2e\x88\xbe\x8d\x66\xb8\xe4\x60\x72\x00\x68\xc4\xfb\x59\x7b\xce\xe8\x6e\x23\x64\x61\x18\xdc\x0a\x15\xe4\xf0\xd8\x49\x71\x73\x9e\x19\xf8\x26\x5c\xb1\x71\x1e\x15\x89\x4a\xcf\x3a\x89\x03\x27\x95\xf3\x25\xc4\x05\x6d\x49\xbd\xd4\x0b\x1c\xe3\x08\x12\xc9\x0d\x00\x4b\x0e\xfb\xb7\x84\xd9\x0d\x28\x43\x29\x8c\xbe\x94\x21\x49\xb4\x6f\x8c\x27\xa1\x9c\x42\x40\x80\x63\x5c\x95\xba\xc3\x55\xa1\xc7\x5c\x51\xd3\xc0\xf5\x4a\x1f\x27\xc0\xa6\x3a\x68\xb7\x8e\x2b\x0a\xf4\xf5\x49\x77\x85\x07\x79\xb9\x15\x32\x87\x4d\x12\x86\x41\x3d\x18\x05\x0e\xb2\xec\xcc\xe0\xfe\x49\x63\x26\x72\x88\x0b\x9d\xd2\xd9\x00\x33\x49\x61\x64\xb8\x44\x14\xfa\x23\x04\xcd\x1e\xf0\x8c\x99\x4e\x7b\x14\x76\x73\xea\x4f\x22\xf9\xf0\x2c\xd2\xde\x94\xf9\x33\xb5\x60\xd2\xdd\xb4\x1c\x60\x89\xa3\x9f\x00\x65\x22\x77\x59\x61\xc0\x4c\x94\xe6\x11\xfe\x21\x20\xd3\x3f\x90\xae\xe1\x86\x6c\x1a\x19\x93\xaa\x4f\x6c\x18\x60\x1d\xcb\xa6\xc9\xeb\xcf\x34\x5d\x10\xa4\xa2\x71\xd5\x34\x8b\x08\x41\xdc\x9d\x98\x23\x09\x30\x72\x75\xc0\xcc\xf9\x9c\x1e\x89\x23\xbc\xae\xf1\x21\xdd\xb0\x9b\xc5\x05\x58\xfe\xcd\x0c\xd1\x31\xd2\x10\xf8\xba\xe9\x7b\x0a\x98\x80\x7d\x27\x56\xaa\x76\x51\xe1\xf4\x56\xba\x15\xea\x13\x3d\xe3\x79\x79\xdb\x65\x21\x14\xef\x1b\xf1\x8f\x76\x58\xa2\x5c\x3f\xfd\xd0\xc3\x46\x33\xd3\xe3\xf2\xb4\xf4\x08\xe9\xd5\x9f\x57\x73\x56\x65\x7f\xf0\x7c\xaa\x28\xab\x79\x19\x86\x86\x76\x97\x2c\xf3\x3c\x7b\xb3\x30\x5c\xcf\x7b\x3c\x30\xc4\x09\xae\xdc\xbd\x28\x0c\x49\x3d\xe3\xff\xce\xc1\xeb\x4d\x68\xa5\xa7\x7b\x66\x1a\x60\x8f\x0d\x6c\x1b\x9c\xcc\xac\x3e\xde\xd1\x06\xb3\x88\xe4\x1d\x93\x06\x76\xcc\xf6\x58\x04\xd7\x61\x0f\xc1\x88\xfd\x24\xc8\x82\x49\x56\x5b\x05\x8b\x9d\x77\xef\xba\xc8\x3f\x11\x64\x3d\x3f\xbe\x1e\xb0\x91\xa3\xc4\x08\x00\xbc\x5e\xe0\xa9\xd2\x95\xd6\xad\x89\xd1\x89\xd7\x97\xf8\x19\xcc\xf6\x53\xf7\x4d\xb4\x68\x47\x66\xfe\xc3\x85\xb4\xd4\x1c\xa8\x9e\x05\x1d\xde\xc6\x83\x80\xd9\x0b\x78\x10\x30\x73\x2d\x37\x2c\xd5\xb1\x5c\xce\x6d\x04\x31\xd5\x5b\x01\xf5\x52\xdd\x22\xeb\x05\xd1\x5e\xb0\x9c\x3f\xb5\x9a\x86\x1e\x7b\x72\x4b\xeb\x87\xf8\x2c\xa0\x51\x22\xd3\x8b\xf2\xf2\xcf\xa0\x29\xcc\x13\xa1\xd9\xba\x32\xd5\xe5\x57\x49\x99\x36\x4d\x95\x94\xb3\x97\xf0\x77\xe1\xe1\x65\xb5\x3e\x8b\x6a\xc4\xb8\x7e\xe3\x34\xcd\xe3\x3f\x01\x5c\x7a\x4f\x51\x36\x24\x77\xa7\x85\xe0\x03\x41\x99\xee\x4b\x86\xcc\xfa\x10\xab\x17\x7b\xdd\x31\x80\xd6\x49\xe5\x22\xbb\xcc\x41\x18\x59\x25\x2a\xc9\xd2\xb4\x5b\x6b\xc0\x0d\xeb\x63\xca\x76\xa8\x6a\x87\xce\xcf\x32\xf6\x21\xae\x24\x8d\xba\x85\xda\x82\x5d\xdd\x31\xb8\xa5\x11\xde\xbe\xbf\x17\xa2\xe4\x7f\x15\xcc\xe7\x8d\xfa\x46\xd6\x7f\x15\x4c\xd3\xc4\x11\x17\x56\x7d\x5b\x41\xd1\x76\x21\x76\xd6\x1c\x7e\x2f\xab\x3d\x97\xd6\x08\xad\xce\xcb\x5b\xcd\x46\x5e\x9b\xe7\x0e\x19\x04\xcd\xe0\x00\x7a\xa5\xe6\xca\x9a\xf6\x66\x52\x59\x4d\xd4\x3d\xb7\x26\xea\xd6\xf2\x57\x94\x6b\x5e\xe2\x23\xe0\x6f\x55\x83\xe3\x53\x76\xc7\x67\xcb\x56\x07\x79\x2c\x39\xc7\x5e\xee\x0d\x81\xb6\xcd\x75\x4b\x45\x18\xca\x8a\x80\x39\x46\x2b\xe9\x7f\xe3\x9a\xdf\xbd\x6f\x99\x3c\x8c\x84\xaa\x60\xf2\xf7\x2a\xf3\x07\x60\xbe\x3e\x20\x1b\x68\xa2\x6d\x56\x35\xd7\x77\x60\x1c\xb3\xc4\x1b\xcb\xd4\x2a\xa4\x86\x1f\xbe\x10\x6c\xc1\x96\xe3\xef\x8c\x66\x15\x4b\xb5\x0a\xad\xea\x9e\x13\x3b\xaa\xb3\x6e\xf4\xe9\x0b\x35\xed\x7e\xf5\xcb\xab\x95\xd8\x1b\x65\x86\x9f\xd4\x59\x1e\xa1\x73\x9e\x2d\xdf\xc6\xb8\x0d\x43\xa9\x77\x58\x2c\x1d\xf6\xea\xa9\x41\x75\xef\x31\x6c\x41\xcb\x8e\x38\x76\x6f\x91\xfa\xef\x98\x5f\x1e\x7f\x72\x8e\x2f\x83\x03\xd8\xcc\x8d\x43\x76\x00\x06\x55\xb7\xd9\xd3\x85\x5a\x83\x65\x9d\x9c\x60\xa9\xa9\x05\xa1\x30\x99\xf1\x4c\x30\xef\xe2\x7e\xd6\xc8\x0a\x2f\x08\xa6\x33\x4c\x67\x01\x80\x31\xe2\xcd\x6a\x02\x80\x9a\x9a\x36\xd7\x83\xe6\x5d\xcf\x37\x0f\x30\xa6\xae\xf4\xa3\x14\x22\x68\x74\xb2\xe1\x83\x26\xfa\x52\x14\xfc\x3a\x05\x18\xed\x8e\xfa\x8d\xf6\x01\xb8\xf6\xfb\xc8\xd1\x94\x5e\x47\xe0\xdd\x14\x82\xf2\x81\x0b\x4f\x6f\xe8\xcd\xd9\xfe\xbe\xda\xf3\x91\x64\x38\x13\x9f\x86\x7d\x1e\x74\x44\x6f\x41\x48\xe8\xd9\x16\x8d\x35\xd0\x1a\xfe\x03\x8d\x79\xd2\x37\x9e\x6c\xdc\x22\xa8\x65\xf5\xbd\x3e\xb4\x8e\xdf\xcd\xff\x32\x43\x5e\xa3\xaa\x89\x78\x01\x8f\xdf\x7e\x49\xcf\x5f\x7a\xbe\x53\x01\x7c\x1b\x40\x70\xfb\x07\x7e\xb4\x20\x99\x9b\x20\xfe\x84\x60\xe4\xff\x14\x4c\x28\xa6\x14\x82\xbe\x20\x56\x5b\x53\x6f\xab\xfb\x66\x9b\xaf\x05\x7d\x7e\xce\xa4\xe2\xe7\x1d\x4a\xe7\x73\x0f\xd4\xa5\x54\x84\x3e\x09\x15\x86\x64\x82\xd1\xfb\x51\x62\x87\x1e\x4f\xbf\x1d\x44\xad\x3e\xb6\x37\xc7\xcf\x24\x22\x7b\x8d\xa6\x93\x52\xd1\xa8\x17\xfa\xa2\x34\x2d\x05\xa3\xf5\xbb\xac\xa0\xf8\x53\x81\xb7\x98\x07\xf2\x97\x2b\x9f\x4f\x18\x0f\x92\xf2\x4f\x0b\x46\xda\x52\xf6\x4f\xc1\x3b\x1f\x9e\xae\x98\x4a\x1d\x07\x9a\x7e\x42\xde\x39\x12\xe8\x85\xad\x50\xb2\x65\x8e\x73\xfe\x72\xa6\x68\x9e\xd8\x83\x7a\x4a\x24\x87\xb3\x9d\xa6\x3c\x4f\x3c\xe1\x50\xca\xfd\xa8\xc1\x24\x9f\x9b\xbb\x2d\xcf\x8d\xa2\x46\x9f\xaa\x5d\x3b\x32\x35\x66\x07\x47\x6a\x35\x57\xfa\xe4\x13\x12\xaf\x20\x49\x4a\xe7\xab\xaa\x5c\x65\xaa\xf7\x2a\x78\x11\xa4\xd4\xc0\x1b\xe6\x43\x78\x43\x40\x80\xcf\x93\x2a\x45\xfa\x27\x99\x62\xa2\x73\x25\xeb\x9a\x50\xab\x63\xfe\x40\x17\x58\x6b\x62\x66\x74\xd1\x1e\x56\xac\x8f\x27\x3b\xc7\x48\x79\xfe\xd8\x5b\x4f\x7e\xd8\x0f\x2d\xed\xc7\x0d\xcd\x37\xc4\xe2\xd7\x4c\x96\x9e\x54\xf4\x9f\xa2\x69\xf4\xc4\x32\xe9\x8b\xb7\x0a\xa4\xf1\x7a\x82\xa7\x85\x3b\x2c\x66\x80\xea\xbc\x9c\x11\x79\xde\x25\x36\xcd\xc2\x8e\x43\x81\xc3\x53\x0f\x87\xc3\xa6\xeb\x01\x91\x87\x92\x74\xfc\x4a\xed\x05\xe3\x22\x82\x25\x05\x2b\x99\x4c\x29\x2b\x2f\x97\x61\x98\xc5\x32\x22\x59\xd3\x1c\x67\x5a\xb2\x45\x6a\x9c\xae\x1d\x54\xae\x00\x3f\x61\x36\x59\x42\xf8\xd1\xda\x21\xd6\xa2\x67\xaf\x60\x7b\x90\x54\xf8\x96\xbe\x8a\xb2\x6a\xaf\xbc\xb4\xc9\x82\x3d\x19\xdb\xae\x37\x40\x3a\xa2\xa7\x96\x21\x11\x89\x8e\xb8\x94\x96\x49\xca\xac\x73\x93\xb9\x16\xe7\xa2\x8e\x94\x4b\x7c\x8b\x07\x61\x24\x99\x1b\xcc\xc8\x0d\xb7\x1d\xbe\x48\xba\x91\x64\x38\x4a\x51\x92\x32\x03\x49\xa6\x7f\xfb\x51\xf7\x9c\x8c\xd0\x70\x67\x44\xb0\x42\x9f\xb7\x10\x57\xd8\x3c\xce\x7b\x3d\x80\x25\x6c\x5e\x60\x07\xdc\xd8\xbb\xd9\x32\xae\xd4\xac\x44\xdf\xae\x91\x80\x95\x60\xb2\x11\x0f\xa6\x37\x02\x26\x36\xf7\x5d\x4c\xcf\x30\x3a\xed\x64\xe1\x8c\x26\xdc\xd4\x4b\x9c\xfa\x65\xa7\x15\x8f\xc9\x1f\x9f\x58\xa6\x52\x4a\xa3\xda\x8f\x31\x67\x93\x0d\x3f\x40\xd9\x8a\x17\x70\x04\x60\x2b\x3e\xe0\x7d\x0f\xef\x25\x7a\x5c\xe8\x1e\x70\x95\x94\xfc\x6f\x44\xd2\x94\x55\x1c\x90\x05\xfb\x9c\x79\x85\x52\x9e\x2a\x59\xda\x0c\x5c\x5f\x22\x28\x93\x26\xc4\x0e\x00\xa2\x56\xcc\xc5\xb6\xd0\x2b\xb8\x2f\xcb\x28\x41\x78\x81\xf7\x1c\x90\x5f\x50\xd7\x86\x8a\x67\xc6\x30\x8f\x54\xb4\x2b\xa3\x4c\x59\x45\xb1\x91\x4d\x43\x4c\xa5\x32\x65\x10\x46\x38\x37\xd6\x8f\x0a\x90\x58\x5b\xb2\x1a\x9d\x7b\xda\xa7\x47\x3d\xa2\xe2\x68\x53\xc1\x04\xb3\x9f\x3b\x12\xb5\x03\x20\xd5\x6a\x4f\xe1\x42\xe4\x63\x75\x17\x78\xe0\x9b\xea\xe0\x05\x85\xac\x1c\xbf\x00\x30\x17\xb4\x00\xee\x22\xdb\xed\xb2\x3d\x59\xb1\x4c\xb1\x82\xb2\x1d\xb1\x4d\x05\x96\x32\x0c\xfd\x9f\x16\xbc\xa4\xa0\xac\xe8\x22\x5c\x9a\x1c\xf6\xb7\x09\x74\x69\x52\xf5\xb3\x6d\x8e\x0d\x10\x65\x42\x5f\x9a\x54\xfd\xec\xc8\xa5\x49\xc3\x5f\xee\xa0\xdb\x09\x49\x1c\x15\x38\x30\x4b\x32\xb2\x32\xdf\x45\x05\x43\x84\x71\xbf\xcb\x2d\xa5\xac\x68\xaf\xe7\xee\x64\xed\x3c\x08\x6a\xc5\x9e\xec\x21\x11\x3d\x05\x2f\x82\x28\x19\x59\x8a\xe6\xfe\xd2\xed\x72\x74\x2a\xb6\xb7\x38\x41\xa4\x61\xac\x58\xa7\x46\xd2\xf4\x46\xb6\x69\xcb\x4c\xf1\x83\xfb\xe7\x8e\x08\x1a\x1b\x3c\x70\x3c\x9d\x22\xc1\xbb\x88\xd4\x67\xbe\xe5\xcb\x02\xdc\xc5\x06\xd6\xb5\x92\xc3\xaa\xf3\x0f\x39\x99\xf2\xfe\x4f\x44\xe7\xe9\x25\x39\x1c\x7e\x85\xf6\x88\x66\x81\xf5\xbb\x7d\xc2\x98\x9a\x6d\xac\x32\x2b\x07\xed\x9e\x15\xa1\xe9\x5f\x6c\x8f\x60\x0d\x5b\x7d\x63\x5e\x5b\xc1\x2f\xdb\xf5\xe4\xc6\x25\x5c\x95\x1d\x58\x19\x0b\x36\x0f\x9a\x9d\x0a\xb0\xbb\x60\x59\x2b\x71\xca\x9a\xc6\xc0\xc6\xc1\xc6\xec\x07\x20\x80\x08\x0a\x74\x7e\x28\x21\x75\x1d\x86\x24\x73\x3f\xf8\x82\xd5\x7a\x87\xba\xb8\x00\xcc\xff\xe1\x9f\xb0\xdd\x37\x4d\x53\x13\xda\x52\xd6\xa5\x4c\xa7\x6c\x3f\x72\x62\x8f\xa5\x75\x1f\xcd\x66\xac\x0b\xa8\x00\x6d\x34\x53\xd6\x34\x59\x3f\x50\x81\x89\xc5\x65\x89\x59\xca\x94\xea\xe9\x7f\xac\x65\x08\x50\x15\x7d\x37\x0e\x90\xf7\x04\x81\x28\xcb\x39\xe7\x64\x17\x07\x9a\x07\x0d\xa2\x00\x07\x10\x11\x07\xe0\x79\x82\xda\x9e\x3b\xcf\x2f\xfd\x4e\x53\xb4\x55\x55\xaa\xbc\x3c\x88\xb3\x1d\x9f\x2c\xda\xad\xa6\x45\x77\x61\x78\x07\xd2\x96\x4e\xe8\x50\xd2\x36\xdf\x10\x72\xe0\x23\x31\x7a\x68\xd3\x1c\xa5\x6e\x69\x67\x15\xbd\x19\xc6\xd6\x09\x43\x22\xe7\xd6\x20\x84\x27\x6b\xf7\xcc\xba\xc7\x1f\xbd\xe7\x9f\x52\x66\x66\xbd\x80\xb6\x59\x20\x66\xf0\xc4\xe8\x56\x4d\x27\x5a\xed\x50\xaf\xc9\x6a\x04\xe4\x1d\xbe\x8b\x57\xbc\x88\xc8\x01\x41\x6c\x21\xa0\xda\x10\x47\xbe\x69\x0a\x36\xf6\x39\xc3\x8f\x28\xa5\x8c\x78\xda\xb2\x55\xd3\x98\x5f\x33\xd4\xba\xeb\x34\xbc\x58\x4e\x78\x31\x0a\x3b\xbf\x29\xaa\x4c\x81\x1c\xf2\x00\x40\x53\x40\x12\x7d\x5e\xd0\x41\x4e\x17\x2d\x35\x63\x50\x00\x96\xb9\x7b\xc3\x0a\xee\xca\x5d\xc5\x41\x10\xad\x40\xb3\xe0\xa0\xb3\x7b\x2d\x02\x97\x1a\x3b\xaa\xa0\x2f\x74\xb3\xe0\x4c\x07\xc6\x56\xb3\x97\xaf\xfb\x3e\x59\xa4\xfe\x7c\xf9\x6f\x96\xfe\x9b\x9f\xfc\x37\x2f\x53\xbd\xc8\x0f\x7c\xb2\x64\x5b\xaa\x3b\x7d\x17\xdb\x9a\xf3\xf2\xd9\x5d\x18\x92\x1d\xbf\x33\x97\x22\x1a\xdd\xf9\x01\x4e\x2c\x55\x60\x4f\xd6\xba\x41\x0f\x4a\x15\x86\xc4\x7e\xc0\x27\x3b\xca\x76\x61\xe8\x4d\xea\xf1\x98\xba\x65\xb9\x6b\x1a\x33\x91\xcc\x07\xbb\xb2\xb4\x87\x6d\x3d\x4c\xfa\x92\xe9\x8d\x41\xb1\xed\x99\x22\xbb\x58\x6f\x90\x68\xc1\x4a\xb6\xa7\x0c\x8a\xbb\xd3\x9d\xd1\xbb\xe7\x60\x24\x2b\x3b\x3d\xad\x20\xd2\xb2\x29\xe6\x2f\x5f\x50\xda\xa6\x1d\x95\x1d\x86\x63\x89\xfb\x17\x07\x4b\x99\x05\x8d\xfa\x2f\x80\xe3\xb3\x46\x9a\xf5\x5e\x88\xf5\x11\xbc\x06\xf2\x99\x22\x0c\x47\x62\xf9\xf8\x4c\xb4\xa0\xd1\x93\x3d\x77\x23\xd9\x34\x13\x19\x86\xaa\x69\x76\x60\x85\x2b\x3a\x36\x57\x58\x46\x1a\xdf\xab\x30\x9c\xec\xc0\x28\x4f\x79\x21\x70\x37\x0f\xf3\x6a\xb3\x89\x4b\xc7\x12\xf3\x45\x64\x15\x64\xce\xc9\xb5\x7b\x0b\x70\xfb\xf6\x87\x1e\x49\xbc\x70\xeb\xfe\xd4\x7e\x21\x5e\x72\xd2\x25\xa7\xd1\x78\x16\xc7\xe1\x5b\x65\x5d\x89\x44\x38\x0c\x01\x17\xa9\xec\xce\x13\x7c\x82\xd0\x29\x94\x95\xf3\xaa\x58\xf3\xd2\x31\x21\xac\x7b\xf4\x4f\x09\xcd\x5a\x55\xc5\x9a\x86\x21\xfc\xed\x04\x64\xba\x04\x53\xcf\x20\x48\x89\x49\xa7\xad\xe6\xd0\x7b\x52\xe8\x4d\xb6\x16\xef\xab\xd3\xfe\xd3\x08\x6d\x83\x26\xcd\xa5\xa0\x40\x3c\x9c\x32\x9a\x2d\x2c\x82\xbb\x5e\x6a\xfa\x46\x09\xdc\x8c\x20\x4e\xb7\xad\x5a\x26\x8c\x9b\xb6\x79\x77\x4a\xc5\xc7\x87\x54\x5c\x60\xa0\x1f\x18\x51\x0c\x0a\x4e\x59\x36\x8c\xf4\xad\x78\x6d\x30\xdb\xfa\x2b\x8a\x55\xf4\x82\xe4\x0e\xcf\x1b\x00\x6d\x36\x79\x99\xd7\x5b\xa0\xc0\x0a\x38\x4d\x32\x59\xd0\xb6\x0b\x5b\x8b\xef\x79\xc6\xf4\x51\x85\x01\xb3\x60\xd4\xbc\xc0\x53\x99\x11\x76\xe2\xd0\x9a\xf7\x2c\xa3\xc3\x6b\x4f\x6f\x07\x8c\xa1\x1c\xe8\xec\xd6\xda\x12\x7f\x31\x45\xa4\x6b\xcd\x68\xa0\x16\x74\xcb\xf6\x83\xb5\x28\x83\xdd\x67\xdd\x0c\x8e\x42\xcc\x8c\x7b\x6b\x63\x23\x26\x9a\x85\xeb\x2c\xfa\x7b\xa1\x5d\x60\xe4\x81\xa9\xad\xc1\xdf\xd6\xc9\xa3\xf1\xbe\x86\x08\x5a\xfa\x5f\x68\x7a\x18\x96\x00\xcf\x45\xbb\x40\x8c\xe0\x87\x9b\x1d\x67\x94\x8e\xab\xe8\x3e\xc2\x1b\x9f\x73\xd5\xca\x67\xb3\x0b\x5a\xe9\x4f\x34\xff\x3a\xb1\xd0\x03\xae\xa5\xf0\x0a\xda\x3a\x81\x90\x75\x04\x12\xf4\xea\xc2\x49\x95\x94\x29\x4d\xe2\x2b\x0b\x9d\x98\xb3\x25\xa5\x67\x13\x15\x86\x52\x73\x15\x23\xd1\x7b\x70\xe6\x47\x24\x78\x76\x74\x89\x0b\x8b\xf3\xa1\x21\x65\xd2\x1f\x2a\x56\x72\x99\xd8\x61\x0d\x52\x88\xfb\xd1\x1f\xe5\xb4\x3f\xcc\x65\x5c\x76\xf7\x62\x44\xcb\x35\x4b\x72\xb2\x60\x83\x08\x48\x7a\x6e\x01\x26\x1c\x87\x15\xff\x7a\x4e\xba\xfa\xf8\x51\xdd\x98\x2a\x1c\x53\x85\x63\x6a\xfc\x71\xf4\x50\x2a\x33\x94\xe8\x38\x01\xba\x4d\x6f\x28\x75\x29\x6e\x18\x15\x0c\x23\xca\xd6\x16\x17\xea\x32\x03\xaf\x93\x32\x51\x69\x18\xea\x7f\x4d\x63\x7b\x3f\x3c\xda\x64\x57\xbb\xed\x54\x4b\x7b\x9a\x6f\xc3\x4d\x32\xe4\x17\x19\x72\x92\x43\xfd\xb7\x0d\x06\xb5\xd1\x55\x9c\x99\xbf\xfe\xb9\xd3\xb3\xc9\x41\x89\x75\xd3\x8c\xc5\xad\x38\x01\x4b\x81\xbb\xdb\x52\xb1\x4a\x11\x05\x23\x89\x05\xfb\x0e\x09\x75\x91\xaf\xc5\xeb\xea\xbe\x8c\x2a\x65\x78\x5c\xca\x20\xf1\xfb\x3d\x24\x41\xfb\x4d\xd2\x7b\x8c\xa8\xa1\x93\x4d\x37\x29\xd3\x74\xf7\xcb\xb2\x33\x02\xc2\x32\x5a\x48\x7f\x7b\x50\xde\x0b\x28\x09\x5f\x98\x82\xba\x77\xa6\xb8\xf6\xf7\xfd\x16\x8e\x89\xba\xed\xa5\xb2\x14\x1a\xba\x87\xab\x91\x27\x69\x27\xc1\x1d\xd2\x5c\x70\x42\x02\x7d\x35\x66\x86\x35\xd1\x93\xd4\x5e\xa8\x4b\xe9\x03\x5e\x12\xc1\xc1\x38\x9f\x18\x2b\x7d\xdc\xb8\xd2\xad\xac\xd9\x8c\x2d\xe9\x99\x74\x77\x13\x23\xf5\xae\xf6\x04\x44\xc0\x46\x1c\xec\x5d\xb5\x79\x5f\xad\x81\xed\xb0\x3c\x89\x15\x9a\x67\x12\x80\x8e\x7a\x82\x69\xbe\xfc\xc8\x7b\xed\xf7\x4c\xa8\xa6\x21\x02\xc8\x62\xa9\x08\xb5\x1f\x82\x60\xa2\x97\x0d\x8d\xa3\x99\x77\xdc\xf3\xa7\xba\xa8\xee\xa3\xff\x5c\x2c\xd8\x26\xab\x55\xf4\x72\xb1\xe8\x24\xfc\x7f\x5e\x2c\xcc\x91\xbb\x16\x9a\x29\xee\xcb\xe2\x5c\x18\x3e\x5d\x1c\x40\x5e\x3b\x36\x43\xa5\x4d\xa3\x30\x98\x10\x90\x73\x8f\xc2\x7b\x21\xfe\xbd\x03\xb4\x27\x50\x97\x4c\xd1\xb3\xf2\xb8\xf9\x68\xf6\x63\x73\xe5\x06\x4d\x6f\xa8\xc9\x3c\x85\xd0\xcf\xd4\xf1\x2b\x04\x2b\x09\x7e\x07\xfe\x1f\x55\x7a\x01\xa5\x67\x06\x4a\xa2\x83\xa2\xb3\x20\xfc\x6f\x4b\x1e\x20\x86\x24\x60\xfd\x69\x2e\x7e\xaf\x10\xf6\x5b\xac\xb9\x32\xa8\x28\x62\xcd\xc8\x87\x42\x08\xc0\xb7\x3c\x50\x81\x85\x98\x31\xf1\x03\xd8\x7a\x0e\x0f\xff\xb0\xef\xb9\xab\xa9\x35\xc6\xd0\x07\xc5\x0a\xc5\x0d\x18\x75\xa6\x94\xfc\x02\x9c\x63\xcf\x7a\x0c\x93\x4e\xff\xa0\xde\xfe\x1a\x3e\x3d\xa9\x18\x67\x1d\x62\xc6\xff\x20\xe4\x5c\xf7\xd1\xa9\x88\x8f\x47\xed\xea\xeb\x04\xba\x0b\xb0\x3e\xc2\x3f\x9a\x80\xad\xd8\x7f\xe1\x9f\x97\xfa\x0f\x3d\x72\x9f\xed\xc1\x89\xc4\xd7\x20\x19\xb5\x26\x00\xc4\xe0\xd6\xf7\x5c\xcc\x9b\x86\x68\x36\x0e\x46\x0e\xd5\xd2\x03\x3f\x39\xd0\xa8\x7b\x50\xdf\x9a\x30\x5b\x2b\xae\xf8\xa0\x22\x07\x9e\xef\xd9\x1e\x20\x19\xe7\x32\x86\xb4\xde\x48\x40\x80\xe4\xbc\xb3\x3f\xcb\x7d\x2b\xbc\x92\xe7\xce\xfe\x4c\x51\x1a\x97\x11\x19\x84\x86\x50\x4c\x4e\x83\x80\xea\xee\xe4\x9d\x5d\x58\x6e\x6f\xcd\x58\x84\x0d\x84\xa9\x0b\x30\x72\x00\x60\xf5\xf3\x72\x0d\x1d\x35\x2f\x4d\x6c\x62\xe0\x73\x6d\xf7\x23\x44\x48\x7f\x1a\xc6\xb9\x46\x7b\x5a\x7f\x39\x86\xa1\x59\xa4\x18\x98\x12\x00\x64\xec\x82\x36\x87\x9e\x59\xaa\x67\xbe\xf2\xec\x28\x54\x86\x89\xd7\x69\xf2\x72\xcd\x09\x81\x6d\xe8\xe8\x92\x1b\x2a\xd0\x94\x66\x8b\x9d\xac\x4f\xf3\x79\x47\x61\x89\xd1\x99\x91\xe7\x49\x09\x51\x43\x8e\xd1\x5f\x24\x2c\xca\xc3\x91\x1e\xd6\x0f\x9c\x0b\xac\xb5\x8a\x07\x33\x29\x8d\x46\xd1\x2b\x0b\xa5\x95\x0e\x7e\xed\x78\xe5\x60\x58\x40\xd3\xe6\xf3\xab\xfb\xe9\xf9\x2d\x1d\xe5\x18\x0a\x65\x4c\x01\xdd\xb4\x9d\x41\x52\xff\xca\xda\x8b\x72\x37\x58\xba\xce\x00\x5f\xf3\x9b\xba\xbc\x2c\x65\xf0\x2f\x08\xbf\x8c\x45\xa6\x29\x25\xce\x60\xa5\x98\xf7\x15\x65\xb9\xf5\xd6\x5b\x19\xb5\x2d\x22\x1d\x21\x3d\x6b\x2c\xf8\x41\x83\xc8\x67\x10\xdc\x6a\x63\x32\x66\x8d\x7e\xa3\x93\x3a\x2d\xee\x5e\x75\xe4\x82\x88\x41\x04\x6e\xf4\xb7\x7b\x16\x78\xca\xd2\xad\xea\xe1\x57\xf8\x9b\xda\x18\xa4\xf8\x21\x55\x8a\xac\x06\xdc\xeb\xc0\x33\x79\x5e\xfb\x25\xf4\x15\x1b\x82\xc6\x22\x1a\x73\xa5\xed\x37\xac\x1f\xa6\x6c\x7f\x8c\x82\x3b\x24\xa1\x68\x0c\xf0\x61\x12\x3a\x00\xd3\xfd\x30\x09\xf5\x3c\xdb\x12\x2c\xfe\xb3\xfc\x21\x11\x69\xd3\x88\x74\x48\x4a\x8f\xda\xf7\x6f\x92\xd2\x13\x34\x52\x1f\x31\xb6\x01\x78\xc8\xe7\x26\xc5\x9a\x76\xf6\x08\xe0\x1f\x27\x70\x68\x49\xf8\x07\x89\x99\xce\x0c\x11\x48\xf7\x96\x58\x65\x37\x68\x9f\x3d\x6e\xd6\x32\x20\x7a\x81\xca\x6e\xc0\x44\xd8\x73\x20\x8f\xc1\xbe\xf0\xcb\x52\xb3\xcd\xcb\x05\x8d\x56\xca\x22\xec\x59\xac\x10\xda\x34\x9b\xe3\x44\x40\x57\x93\x62\x13\x2f\xa2\xd9\x52\xd3\x2b\x33\x3a\xd1\xd3\xa6\x92\x51\xb0\x55\xbb\xe2\xb3\x4a\x06\x0c\x16\x67\x84\x6b\x54\x7f\x18\xe8\x69\xeb\x71\x09\x70\xc0\x78\x86\x21\x96\x79\x38\xd1\x25\xe1\x7b\x2e\x77\x7a\x7f\xd5\x77\xe0\xf7\xbd\xf7\x6d\x89\x30\x52\x0c\x39\xc1\xa1\xc9\xc9\x48\xd9\x2a\x0c\x89\x1a\x7c\xfc\x47\x6b\x19\xdc\x93\xcc\x2c\x05\x2c\x90\x22\x5b\xbf\x2d\x8b\xc7\x80\x05\xbb\xec\xe1\x2b\xd8\x1e\x01\x0b\x56\xa2\x28\x8c\x9f\x95\xf9\xf5\xad\xb1\x6f\x60\x81\xac\xee\xdf\xed\xb3\x52\xa7\x57\x85\x79\x3a\xd4\xe2\xeb\x6c\x1f\xb0\x60\x23\xb3\x9d\xf8\xc4\xd8\xb3\x5a\x37\x88\x37\x6b\x84\x60\xf6\xef\x62\x9a\x21\x71\x0b\x18\xd0\x2f\x7a\xa7\x3c\x5c\x2e\x87\xd6\x8e\xd9\x7a\xfd\x29\x4c\xdf\x88\x2d\x9b\x8f\x09\x86\x76\x8d\x3b\x22\xfa\xc0\xc3\xfd\xed\xac\x6f\x38\x26\x62\xa0\x2d\x97\x08\xef\xf6\xab\xd8\xd6\x5c\xc2\xa9\x81\xa5\x22\x8a\x03\x15\x73\x28\xe0\xe6\x28\x03\x7a\x70\xb0\xd1\xb8\x72\xbe\x55\x44\x82\x85\x82\x66\x39\x3c\x9d\x41\xf0\x2c\x98\xee\x35\xbf\x3c\xd5\xc4\xd5\xa0\xec\x2f\x2e\x2a\xae\x92\x0c\xbe\x2e\x3b\x83\xf9\x67\xc1\xb4\x82\x6c\xe0\xfa\x5e\x4e\x39\xfe\x3a\xcb\xf5\x36\xac\xf9\x1e\x82\x69\x1a\xb3\xb5\x23\xd2\xcb\x6a\x07\xb8\x84\x80\x0c\xc6\x37\xf3\xff\xc6\xd8\x79\x45\xff\xce\xf0\x4d\x8e\x40\x04\x7a\x37\x49\x4d\x12\x6c\xfb\x83\xe0\xff\xcd\x80\x43\x79\x63\xa3\xfe\x6a\xb6\xbc\xa0\x25\x2f\x1d\x52\x93\x7b\xc5\xfe\x17\xd3\x80\x37\xed\xe1\x34\x78\xda\x58\x73\xf2\xb1\xd2\xb3\x32\xd6\x77\xb7\xe1\x79\x79\x76\x2a\x98\xa6\x0a\xc3\x32\xc6\x50\xd8\xde\xaa\x36\x22\x89\xde\x54\xd1\x08\x34\xb5\x23\x93\x2b\xbb\xc9\xf5\x1a\xdc\x9b\x5c\xe9\x26\x17\x00\x94\x69\x7b\x22\x54\x27\xae\x2f\xb4\x76\xc8\x37\xa4\x44\x78\x3d\xbe\x60\x15\x37\x55\xb0\x0c\xa7\xf8\x42\xf1\x2c\xc9\x61\x52\xaa\xf9\x36\xab\xb1\x4e\x45\xe3\xaa\xd7\x6c\x45\xa3\xaa\xeb\x98\x32\xc2\xc2\x0e\xf0\x3b\x0c\xdd\x98\xa0\x1f\x8a\x5e\x43\x6e\x21\x86\xe1\x4f\x5d\x70\xfd\xe0\xfa\xda\x1d\x02\xd7\xd7\x81\x43\x82\xae\x7b\xbc\xcd\x51\x92\x9b\x5c\x65\x04\xbc\x22\x0e\x82\xc8\x17\x11\xf7\xcb\x05\x36\x88\x22\x60\x89\xe9\xd6\xf8\x16\xe4\x0b\x23\x17\xd3\x4b\x4d\xe8\xa5\x66\x57\x7a\x69\x57\xfa\x70\x7d\x13\xb3\xc0\x61\xfd\xe3\x22\x77\x6b\x59\x41\x14\x40\x1b\x7d\xed\xcc\xc5\x5b\x33\x5c\xe4\x4e\xf1\xf3\x2b\x79\x7e\xdb\xbf\x97\xde\x65\xc5\x29\xfa\x60\xd1\x53\x9c\xa8\x7b\xb0\x99\x63\x52\x72\xbd\xa2\xc6\x44\x9b\x86\xf3\xc9\xcf\x8e\x80\x7d\x34\x6d\xc3\x0b\x51\xce\xcb\xb8\xbf\xc4\xec\x22\xbc\xcb\x0a\x42\x69\x24\x68\x9c\xf3\x20\x88\x3a\x4f\x25\xb3\xe6\xf3\x38\x9f\xea\x17\xfd\x4d\x92\xa3\xb5\x0c\x5a\x7d\xe4\x63\x18\x4f\x46\xb6\xa7\xa7\x4f\x4c\x83\xa0\xa5\x94\x01\x5b\x75\x97\x15\x9e\x41\xb4\x89\xcb\x32\x4c\x1e\x07\x2e\x03\xf3\x1a\xc3\x67\x29\x1f\x29\xb8\x5b\x76\x39\x0b\xe0\x62\x05\x7e\x50\x50\x14\xde\xb3\x72\xbd\x46\x68\x94\xc7\xfd\x36\xe4\x23\x0d\xc8\x3f\x54\xfb\xed\x71\xed\x44\x72\xb4\x06\xef\xea\xa6\xb1\x3c\xe2\xb8\x89\xe4\x39\x36\x86\xc6\x0e\x52\x85\xec\x20\xdc\xb6\xb9\xb6\x4a\x3d\x58\xd2\xc6\x21\xeb\xf1\xbb\xb6\x75\x91\x0d\x82\xfb\xc7\x38\x40\xd3\x1e\x1f\xaa\x79\x02\xa6\xc7\x7b\x45\x0c\xf2\x96\x00\xc7\x2e\x64\x67\x4e\x94\x6a\x96\xa8\x8d\xa8\x5a\x03\x83\xdd\xe7\x94\x32\x6e\x84\x4c\x33\xa3\x6b\x36\x68\xa6\x35\xcf\x40\x3c\x10\x41\x24\x94\x2c\xae\xa6\xcb\xc8\x1a\x52\xa2\xf5\x06\xaf\x2e\x17\xf1\x21\xca\xe2\x0a\x4c\x41\x0f\xe8\xd9\xb1\x21\x84\xc0\x2d\xd6\x85\x19\xd1\x9c\x63\x09\x21\x50\xc3\x70\x22\x5d\xd8\x92\x30\x24\x13\xe9\x33\x66\xf6\x45\xd3\x4c\x3e\x26\xfe\x1b\x16\xd8\xe0\xb0\x01\xb5\x98\x6d\xd7\x44\x9a\x1d\xc0\x32\x77\x5e\x9e\x19\x31\xa5\x72\xe7\x4b\x7d\xe4\x1f\x75\x14\x05\xdb\x1f\x1c\xbd\x2b\x7e\x15\xd6\xe1\xc3\x37\x1d\xc5\x80\xfd\x60\x36\x9a\x79\x3d\xe3\x1d\x24\x4f\xb7\x10\x4d\x81\x18\x0b\x9b\xb2\x0a\x28\x0e\xe8\x98\x26\x0b\x37\xa3\x12\xb0\x9d\x7b\x73\xc1\x67\x4b\xca\xaa\xb6\xed\xf1\xa4\x46\xc0\xd6\x49\xf4\x06\xbc\x62\x6f\xfb\xa5\xc7\xb2\x01\x18\xaf\x23\x57\x16\x77\x63\xb5\xe8\x81\x5e\x3f\x88\xb0\x23\x0b\xb4\xb2\x6d\x3b\x19\x22\x5c\x01\xfa\x35\x02\xe6\xc9\x49\x2a\x72\x84\x9b\x6b\xd6\x75\x1c\x54\x65\x10\x59\x11\x21\x85\xab\x86\x89\xe4\xc1\x83\xaa\xb4\x41\x3d\xf2\xf2\x19\xc6\xe9\xbc\x33\x77\x76\xf3\x02\xfe\x34\x36\x30\x07\x84\xf2\x78\x7e\xce\x1e\xfb\x0d\x19\x43\xc7\x3f\x73\x1b\xd3\x60\xf8\xb1\xe3\x60\x1e\x7a\xd7\xf8\x51\x33\x8d\x2d\x14\x46\x78\x7b\xe4\x49\xde\x34\x65\xca\x6e\xf9\xc6\x50\x65\x66\x60\x79\x63\x8c\x58\x18\x29\x76\xe3\xbd\x73\x28\xd4\x90\xa1\x0b\xc3\xd4\x45\x68\x8b\x12\x8c\x51\xc5\xd7\xfc\xc0\x73\xae\x8b\x67\xfa\xe2\x9b\x0f\x1c\x72\xfd\xdf\x93\x3b\x73\xd3\xbb\x9d\x1e\xc5\x4e\xd4\x4b\xed\xb6\xe3\xdd\xe6\xc0\xb5\xe9\x34\x4e\x6e\xf8\xad\x57\x31\x9d\xa3\xfd\x01\x65\x37\x26\x4a\x1c\x65\x2b\xee\x7d\x1a\x21\x9b\xad\xe7\x6a\x7a\xab\x0f\x01\xe5\x87\x80\x51\xbd\x10\x30\xb7\xec\x38\xb2\x68\x18\x2a\x4a\xe7\x79\xfd\x1e\x9b\xc6\xab\xf8\x65\xf4\x11\xf3\x46\x81\xdf\x74\x01\x07\x99\xf2\xa2\x54\x71\xe5\x23\x7b\x8f\x85\x99\xbb\xf9\xdd\x30\x73\x28\x28\x52\x36\xc8\x94\x01\xda\x54\x26\x8a\x86\x3e\x65\x6c\x34\x8e\x9c\x32\xc9\x2d\x25\x4f\x54\x1a\xf9\x74\x40\x32\x10\x1a\x6c\x8f\x62\x93\xdd\x22\x62\x5a\xd5\x34\x93\xad\x1d\x7d\x13\x44\xcc\xfd\xb6\xb1\xaf\x20\x1c\x3d\x88\x26\xab\x30\x9c\x6c\xe7\x36\x3a\x8e\x9e\x49\xb0\x02\xc3\x50\x80\xdb\x5e\xec\xbd\xa6\xb9\x65\x76\x9e\x8b\xe9\x2d\x04\xea\xe2\x3e\x20\x18\xbd\xa8\x2f\x06\x29\x8f\x48\x01\x6b\xca\x0e\xbc\x3e\x3b\x70\xcd\x41\xf4\x81\x9a\x9a\xa6\xa4\x61\x68\xf2\x1d\x7c\x48\xaa\xa6\x39\x98\xa2\x7e\xc8\xcb\x75\x75\xdf\x34\x82\xb6\xf6\x72\x40\x6a\xfe\x08\xb7\x03\x4d\xc5\xd5\xc9\x88\x66\x6b\x5e\x33\xdc\x07\x3c\x7b\xb5\x8c\x8b\x68\xeb\xe2\x07\xea\xee\x90\xbd\x8d\x05\x77\x14\x08\x0e\xbf\x4a\x6d\xc8\xc4\xda\x46\xa7\x03\x9b\x82\xbd\x19\xc8\x9a\x49\x88\x4a\xb9\x0a\xc3\x3a\x59\xa5\xdd\x9b\x30\xfc\x9c\xd4\x14\x24\x01\x66\xbe\x7b\x9f\xa0\x5c\xd4\x85\xbd\x51\x47\x31\x3b\x3a\x41\x0b\x36\xfe\x56\xcf\xab\x1a\x09\x04\x42\x68\xd3\x6c\x9d\x0d\x8a\xb1\x11\xe8\x12\x4c\xa5\x8f\xf3\x3d\x28\xd8\x24\x6d\x9a\xc9\xe7\x00\x8a\xb0\x0a\xc3\x1d\xc9\x93\x5b\x18\xc0\x3b\xe4\xc3\xc8\x81\xe7\xd8\x0d\xa2\xff\xc2\x1a\xec\xe2\x51\xba\x1d\xcd\x6f\xd9\xa9\x11\x0f\xc3\xf5\x71\x0c\xcd\x5b\xf6\xa8\x28\xd3\x75\x11\xfa\xc1\x2f\xc7\x62\xf1\xe0\xc7\xc7\x6d\x30\xfb\xe7\x60\xdb\x7a\x00\xf8\x3c\x17\x57\xad\x36\x81\x40\x4e\xd8\x69\x38\xba\xeb\xd1\x0c\x26\x19\x4a\xf1\x07\x71\x5b\x16\x2d\x3d\x1b\xd4\x4f\x4a\x44\xdc\x53\xf4\x08\x13\xf5\x88\x7e\xfb\x32\xcf\x13\x1a\x9f\x7e\xd9\xba\xa1\xca\x22\x53\x9a\xc4\x2f\x4c\x98\xd5\x53\xc6\xc1\x9a\xe3\xf7\xdc\xc1\x9f\x8d\x95\x29\x01\x8b\xd5\x3f\xdb\xd0\x9b\x72\xb5\x25\x4f\x18\x11\xcb\x45\xaf\xc2\xe0\x55\x7e\xa8\xa9\xb1\x8a\xfb\x8a\x59\x43\x8d\xcc\xb8\x11\xc5\x5c\x80\xa0\x7e\x74\x46\x3c\xf5\x7a\xa4\x4b\x21\xa3\x70\xd8\x0f\xfd\x2c\x0d\xf4\xe3\x80\x60\x20\x83\xde\x99\xec\x95\x4c\xd1\x33\x7d\x4e\x1d\x2f\x3d\x81\xbd\x66\x7e\x5e\x46\x72\xc0\x04\x59\x02\xe4\x2c\xc6\xc1\xfc\xf7\x2b\x9e\x2d\xcf\xf2\xb8\x57\x7c\x4e\x23\x52\x8e\xae\xe5\xae\x35\xc6\x0c\x50\x17\x00\x6e\xdf\xc0\x55\xdc\x2a\x2e\xe6\x45\xb5\x42\xf7\x8e\x1b\xe5\x69\xd9\xd9\xb5\xbe\x08\xc6\xe7\x67\xd7\x73\x10\xbc\xfe\xf8\xf5\x57\xc7\xf8\x7e\x20\xbd\x51\x4d\x73\x64\x51\xe4\xe2\xb8\xe9\x45\x0b\x50\x95\x92\xc3\xca\x17\xf3\xd7\x6f\xbf\xfe\x56\x17\x28\x29\x16\xfc\x99\xac\x76\xef\xe0\x73\xe0\x24\xc4\x83\x3a\x7f\xd8\x15\x01\xed\x70\x28\xa5\x83\x0c\x76\x88\x81\x13\x40\xe9\x33\xfa\xd9\xfa\x93\xc7\xf7\xd9\xad\xbe\xf6\x90\x00\x8a\x94\x42\xca\x4a\x7a\xe6\xc8\xd7\x73\x48\x21\xc1\x97\xe5\x5d\x56\xe4\xeb\x67\x3f\x7e\xfd\x55\xf4\x2c\x98\x42\x80\x10\x18\x89\x7b\xdd\xdb\xe4\x2a\x7d\x7e\xce\x1e\xe0\x06\x1c\x5f\x95\xe7\xb7\xec\x8d\x61\xbb\xea\xc3\xcd\x2e\x57\x46\x89\xd2\xe4\xbb\xec\x56\x34\x52\xd4\x42\x35\x9b\xbc\x10\xa0\x55\x79\xfb\x41\xf5\xcb\xaf\xe2\xf1\x56\x94\xd4\x57\xb5\xbc\x53\x03\x23\xb5\x51\x9f\x6b\xb3\x5f\x3c\xc7\x7b\x05\x66\x28\x4d\x73\x6f\x65\xdd\x34\xd6\x9b\x24\xa7\x91\x2e\x71\x1a\x24\xc1\xf4\x38\x8e\x87\x93\xd5\xe7\xb1\x8a\x02\xcd\x26\xa4\x01\xcb\x2d\xb4\xbe\x0d\x21\x2e\x9b\xc6\x7e\x39\xe1\xfc\x46\xd7\x6f\x2c\xff\xfb\xb6\x57\x8a\xba\xaa\x72\x28\x49\x25\x79\x8a\x85\xc1\x72\xc9\x76\x7c\x5c\x15\x08\x90\x96\x63\x3b\x1b\x62\x0b\x2a\x42\x23\x75\x56\x26\xd6\x52\x29\xe5\xa2\x5c\x55\x6b\xf1\xfd\x77\x5f\x7e\x5a\xed\xf6\x55\x89\xa1\xf6\xa6\x01\x0f\xa6\x23\x6f\xfc\xab\x28\x6d\x8f\x47\x13\x30\xb1\xe6\xbf\xfc\x76\x10\xf2\x11\x7c\x49\xf3\xfa\xdb\x22\xcb\x4b\x67\x12\x68\x07\xbb\x07\x39\x91\xe3\x65\x5c\x73\x63\xac\xbb\x96\xbb\x51\xf3\x7c\x75\xde\x29\x22\x19\xf8\xe7\xe8\x29\x72\x37\x57\xc3\xa7\x85\x01\x1d\x58\x47\xd6\x42\xe6\x59\x31\x0e\xa6\x66\x86\x91\x18\x31\x93\xc9\x88\xfd\xa0\x00\x7a\xe1\x27\x8d\xa1\xb1\x8d\x80\xe6\xa2\xf9\x85\xd1\xb5\xa3\x4c\x4a\x98\x2d\xd4\xdd\xb4\x45\xec\x33\x7f\x46\x44\xd8\x52\x6b\xa6\x79\x54\x9c\x13\x86\xf4\x9c\xc3\xf5\x70\xe9\x31\x36\xa2\x9a\xbc\x26\x41\x64\xef\xb7\x01\x0d\xc3\xb7\x66\xf1\xf6\x64\x26\x9a\x31\x78\xa3\x3a\x90\x5c\x7c\xbb\xb2\x90\xf4\x93\xc2\x01\xe8\xd2\x96\xf6\x3b\xe7\x5b\x70\xf9\xe2\xa1\x7e\xa8\x27\x54\xf8\x0f\x04\x42\x92\xc6\x28\x0c\x92\x23\xc2\xa0\x27\xdd\x91\x08\x99\x71\x13\x25\xb2\x43\xe9\x7f\x50\x2c\xb8\x92\x57\x65\xa0\x0f\xb9\x68\x24\xab\x1c\xcf\x8a\xf8\xab\x96\x08\x7f\xaa\xf8\xf9\x9f\x5e\x2e\xce\x6f\xd9\xc7\x8a\x9f\xff\xc7\xfc\xc5\xf3\x73\xf6\xab\xe2\xe7\x24\x89\xc3\x94\x5e\xf3\xe4\xe7\x30\x7d\x71\xce\xbe\x06\xfa\x32\x7f\x11\xd3\x28\x79\x76\xa5\xd2\x17\x24\xf9\x59\x97\x98\xbe\xa0\xcf\xcf\x6f\x77\xec\x5b\x43\x7f\x3e\x7f\xf3\xbe\xf9\xe2\xcd\xc7\xaf\xf5\x85\xf0\xbd\x4e\xbb\x3a\xbf\x3a\x3f\x67\xdf\x29\xfe\xd4\xb2\x5f\xe0\xdf\x6f\x14\x0f\x5e\x9c\x07\xd6\x6d\x34\x78\x11\x50\xf6\xd5\x88\xf1\x4d\xe6\x83\xaa\xbe\xf6\xf5\xb4\x7d\x3b\xa3\x63\xf2\xef\x0c\x4a\x75\xd9\x67\xd6\x77\x75\xc1\xaa\xa1\xea\xbb\xa7\xc8\x45\x05\x83\x34\x91\x62\x4b\x5e\x19\xc1\x6f\x30\x0d\x38\xe7\x65\xb2\x48\x63\x52\xf2\xd2\x21\xa7\x34\x4d\xf0\x22\x60\xe8\xde\x26\xc0\xad\x23\x49\xa9\xb3\x2a\x97\x94\x46\xc3\x77\xc0\xf3\x4b\x3f\x6a\xca\x97\x43\x2a\x8c\x60\x1e\x82\x73\xfe\x8b\xea\x7a\x9f\x91\x1a\xdf\x1f\x1c\x36\x47\x52\xa7\x68\x3b\x89\x34\x23\xa9\xd1\xfb\xc8\x5b\x92\xe6\x93\x82\xd7\xc6\xc4\xf8\x94\x01\x6e\xd1\x34\x55\xd3\xe4\x49\x91\xc6\x55\x3c\x21\x07\x5e\xd8\x98\xfe\x11\x51\x10\x85\x58\xdf\x1f\x3a\x83\xf9\x82\xb2\x4c\xff\x33\x59\xd2\x96\xb2\x83\x83\x4a\xf3\x33\x27\x8b\x54\xf3\xde\x39\xf8\x5a\x85\x61\x06\xd3\xdc\xf5\xfb\x33\x35\xf0\x3c\xe4\xd7\xf3\xec\x97\xec\xe1\x9d\x50\x2a\x2f\x6f\xeb\xf9\xa6\xc8\x94\xf1\x10\x75\xd1\xa7\x25\x12\xff\x4e\x7c\x99\xc8\x54\x73\xf1\x79\x22\x21\x22\x6a\xd3\x90\x92\x3f\xb5\x94\x26\x32\xc5\x48\xbb\x5e\xa4\x2f\xdf\x8d\x55\xb0\x92\x32\xd1\x7e\xa5\x40\x35\xcb\x6f\xf1\xaf\x6f\x70\xb4\x52\xf9\x9d\x88\x16\xac\xc8\x6a\xf5\x75\xb5\xce\x37\xb9\x58\x83\xbb\xab\xca\xc0\xed\xd5\x6f\x6b\xf4\x74\x90\x45\x64\x0b\x01\x8e\x3a\xf8\xfc\xcd\xfb\x80\xe5\xf5\x57\xd5\x2a\x2b\x22\x34\x77\xb8\xa9\x0e\xaa\xc9\xf6\x7b\xfd\xff\xac\x56\x95\xd4\xa7\xf8\x7c\x3a\x83\x3a\xeb\xbc\x2a\xe1\x30\xd7\xe7\x7a\x73\x9f\xaf\x21\x44\xe4\xf3\x73\x23\x65\x30\xe8\x0d\xab\xaa\xa0\x0c\x43\xa8\x40\xd8\x3a\x59\x69\x26\x0c\x02\x33\x4c\x16\x2c\xab\x1f\xcb\x95\x09\x35\xab\x44\xa9\x30\x7c\xaa\xbe\x10\xe5\xc8\x62\x9d\x3f\xcc\xee\xef\xef\x67\x9b\x4a\xee\x66\x07\x59\xe0\x19\xb6\xbe\x78\xb6\xda\x6a\xb6\x45\xf1\xef\xdf\x7f\x36\xfb\xaf\x80\x69\xd6\x6e\xaf\x8c\x7b\xde\x37\x0a\xc3\x14\x20\x6b\xb4\xd7\x07\x56\x80\x10\xe7\x98\xa2\x1f\x03\xf6\xa0\x7f\xf7\x6a\xda\x15\xec\x99\xe3\xa6\xd8\x2f\x35\x40\x6b\x7a\x19\x74\x8a\xc9\xf1\x4b\x76\x97\x99\x70\x13\xad\x6d\x7b\x1d\x3d\xe9\x32\xcf\xaf\x6e\x1e\x76\xc5\xd5\xcd\x39\x56\x79\x7e\x75\xa3\xff\x9e\x63\x79\xe7\x57\x37\xfa\xef\xd5\xcd\x79\xcb\xa4\xa8\xf7\x55\x59\x8b\xcf\x72\x51\xac\xcd\xc7\x81\x4d\xfc\xf1\xeb\xaf\x02\xd3\x0b\x9b\xf4\x5e\x3c\x28\xdb\x2c\x9b\xf6\xd7\x77\x6f\xbf\xc1\x16\xdc\x09\xa9\x8c\x83\x22\x34\x31\x88\x90\x45\x44\x06\xf1\x19\xf4\x59\x0f\x34\xfe\xd4\xa5\x04\x91\xfe\x1a\x59\x4a\x93\xac\x3b\x1e\x75\xec\x6b\xcb\xbc\x25\x8d\x4b\xc6\x4e\xd5\x83\xd2\x97\x2e\xb7\xa8\x0e\x27\x0c\x48\x54\xfc\x99\x22\xb0\x71\xfa\x7b\x85\x32\x45\xa3\xcf\x14\xe9\xa7\x42\x84\x09\x9d\xd0\xc5\x7c\x79\xad\xc8\x77\x8a\x42\xe2\x7b\x99\x95\xf5\xbe\x92\x4a\x27\xfe\x62\x12\x07\xbe\xd4\x63\x02\xa5\x41\xfc\x34\xb0\xe0\x34\xe8\x0d\x03\xd7\x45\x14\xd8\x75\xdb\xfa\xb0\x27\x4f\xe0\x14\xbe\xe3\xeb\xb9\xe9\x76\xd3\xac\xd9\x5d\xf7\x33\x0c\x89\x0f\xcb\xb1\x33\xcc\x12\x8d\xaf\xc9\x8e\x46\x56\x62\xf8\xd8\x73\xf4\x67\xb7\xfc\x7a\xfe\x69\x56\x14\x37\xd9\xea\xd7\x9a\x04\x55\xb9\x12\xcf\x76\x62\x57\xc9\xc7\x80\xb2\x1b\xbe\x9e\xd7\x2a\x53\x87\xfa\x53\x88\xf2\xfd\xd4\xb2\x7b\x4d\x61\x1f\xf4\x3f\x6f\x78\x80\x01\x2e\xc5\x3a\x60\x6f\xf9\x93\x14\xd9\xfa\xf1\x9d\xd2\x97\x68\x88\x38\xfd\x9d\x59\x17\x5f\x88\x6c\x3d\x88\x98\x83\x60\x28\x08\x13\xad\x2f\x21\x18\xaa\xa4\xe6\x4f\xed\x85\xe2\x5f\x2b\xf4\x49\xcd\xe8\x05\xad\x13\x75\x0c\xa9\xcf\x55\xf2\x32\x3d\x53\xbc\x4e\x86\x9a\x92\xb6\xc7\x2f\x28\xe4\x17\x54\xab\x5b\xf3\x71\x51\xf4\x1b\x34\x06\xbf\xbb\x32\xf6\x59\x20\x76\xff\x0e\xf1\x2d\x8e\x9a\xef\x2d\x29\xac\x67\x05\x4e\x00\x0f\x47\xad\x19\x49\x6a\x1a\xc1\xee\x13\x91\x72\xa3\x96\x6c\x59\x75\x27\xa4\xcc\xd7\xe2\xeb\x7c\x87\x21\x1a\x4f\x0a\xa3\x57\xe0\x18\xb7\x33\xf9\xb8\xb0\x25\x74\x13\x34\x3e\xc6\xe0\x86\xbe\xa2\x6f\xad\xff\x9c\x48\xde\x9a\x49\xf5\xbd\x32\x14\x72\xc1\x37\xfa\x72\x9d\xe8\x7f\x99\x48\x54\x9a\xf6\x23\x40\x64\x37\x7a\xc9\x8f\x18\xb4\x34\xcd\x1b\x77\xb2\x86\x61\x3e\x87\x8c\x44\x51\xf6\x8e\x2c\xac\x0a\xb6\x05\xa6\xfe\xd1\x41\x27\xbc\xa5\x6c\x3d\x3f\xc8\x82\x13\xa2\x57\xb2\x7e\x6c\x1a\x73\x0c\xd0\x69\x10\x50\xc7\x7e\xbd\x57\xcc\x23\xe1\xd3\xe0\xfc\x3c\xd0\xdf\x82\xa4\x4b\xce\x77\x42\x6d\xab\x75\xd3\x48\x13\xe8\x6a\xed\x52\x30\x0b\x5b\x77\xc7\x2a\x27\xdd\x0f\xe0\x3f\xe8\x69\x86\x26\x08\xac\x7b\xe7\x7a\xbe\x92\x55\x5d\xbf\xae\x76\x59\x5e\xd2\xa7\x11\xf8\x6a\xcd\x6b\xe9\x7b\x72\x81\x27\x22\x74\x86\x99\x1f\xf8\x87\xf5\x0a\xe1\x5f\x0d\xfa\x33\xd5\x87\x69\x55\xab\x09\xc2\x0c\x78\x2f\x0a\x48\xef\xee\xd3\xfd\x72\x34\xe1\xcb\x37\xa6\x57\x61\xb8\x9e\x7b\x87\x5a\x17\xfa\xcd\xb1\x2a\x36\x9f\xf9\x80\xdb\x8b\x0a\xfe\xd4\x63\x2a\xb3\x35\xe0\xe1\x65\x05\xa5\xec\x4b\x4d\xf1\xd8\x9a\x49\xf6\x96\xb2\x95\x95\x0a\xbc\x05\x6e\x62\xff\x2c\x2f\xc9\xc6\x8a\x95\x75\xd5\x78\xb2\xd2\x30\x5c\x70\x4d\xb7\x80\x07\x98\x4e\x81\x75\xe8\x09\x97\x02\x20\x69\x2a\x93\xaa\x9b\x46\xfc\xd3\x47\xd9\x63\x6b\x30\x19\x30\xe1\x48\x26\xdf\x9a\xbb\x05\x66\xa5\xac\xc2\x61\xee\xa2\x6e\x81\x4a\xb3\xf7\x51\x7c\x62\x5c\x00\x85\xd2\xd0\x4d\x3c\xe8\x31\x3e\x9a\x53\x1d\xfc\xee\xa9\x0f\xce\xb1\x66\x10\xf1\x8f\x6b\xc7\xa7\x8a\x05\xd3\x40\xb3\xaf\x5b\xd3\x42\xe4\x78\xad\xc7\x0d\x65\xde\x2c\x78\xcd\xea\x04\x31\xbc\x3f\x5d\x10\xe7\x70\xca\xc9\xb5\x19\x80\x8a\xc6\x41\x18\x44\x41\x1c\xd0\xa9\x9d\x38\x34\x61\x34\xf9\x51\x5e\xbc\x9e\xaf\xb2\xd5\x16\x5c\x77\x78\xe5\x5a\xf7\xab\x62\xc1\xf3\x65\x40\xd9\x76\xbc\xc0\xe0\x9a\x07\xd3\x1b\x35\x9d\x4e\xb7\x76\x7f\x56\xf8\x98\x6f\x2c\x27\x07\xb8\x0d\x3e\x6b\x97\x54\x69\x18\xbe\x9d\x0f\x89\x26\x09\xbe\xdc\xcc\x6c\x9e\xd9\xbb\xbc\x5c\x89\x80\x1d\x7d\x09\xd2\x5a\x95\xdd\x7e\xa8\x90\x6f\xaa\x52\xcc\xbe\xd6\x5b\x20\xe8\x72\x53\xca\xbc\x85\xdf\xcd\xba\x91\x6a\x0f\xe6\x57\xfa\x3f\xe9\x78\x4d\xa6\x80\xd9\x7b\x30\x99\xee\x15\x40\xd9\xd8\x07\x1f\x03\xaf\x17\xf8\x24\x26\x59\xa4\x20\xd5\x46\x2e\x30\xe9\xbf\x49\xe3\x93\x6f\xa6\x9a\xc5\x87\x66\xfb\xc9\x71\xc0\x9e\x05\xd3\x6f\xd4\x34\xb8\x78\xf6\x1b\x5f\xcc\x17\xcb\x20\x0a\x02\x1a\x75\xc5\x20\x54\xd0\x7a\xbe\xc5\x53\x8d\x8e\x34\x73\xdf\xbd\x4e\xf6\x29\xd8\x60\xad\xe7\x18\x03\xe5\x9d\x28\xd7\x16\xf4\xc9\x4f\x43\x05\xe0\x8e\xbd\x65\x6b\xda\x34\x2b\xa7\x72\x7d\x6b\x48\x3b\x14\xf2\x86\x07\xf0\x2b\x60\xb7\x10\x14\x73\xdd\x61\x64\xb0\xb7\xe8\xe0\xbc\x9e\xd7\x07\x10\x75\xea\x14\xc0\xcd\x58\xa3\x34\x8f\xb2\x9c\x7f\xa9\x79\x27\x43\x5e\x80\x11\x78\x3b\xef\x98\x08\xbe\x64\x9b\x30\xbc\x1b\x50\x0d\x08\xe6\x92\xbc\x65\xeb\xb4\x47\x90\xd6\x73\xe0\xde\xf5\xc0\x2b\xf4\x5f\x79\x05\xa8\xda\xfc\x14\x92\x94\xed\x47\x60\xb2\x07\xb4\x65\xee\x5b\x8a\xc4\x7c\xc5\x27\x4b\x96\xcf\x6b\x7d\xa5\xb9\x67\xef\x3c\x99\x26\x1c\xa8\x6a\x2b\xab\xfb\x67\xe2\xec\x1d\x99\x2d\x21\x26\x0d\x9c\xa5\xf0\x2b\xf8\xa6\x7a\xe6\x58\x44\xff\x1a\xfe\x0e\xaf\x92\xee\x6e\x09\x5c\xde\x3d\x7b\x60\x6f\xb8\x3c\x5b\x35\x0d\x59\xe9\x4b\xe9\x21\x0c\x07\xce\x38\x07\x3d\x5c\x46\x85\x91\xf1\x5a\x53\x2b\xd6\x1b\x2c\xf5\x6a\x11\xff\x59\x5f\xb8\xb8\x7a\xc5\x5f\x2e\x16\x61\xa8\x2e\x3f\x5a\x2c\x9a\xe6\xa3\xc5\x9f\x39\xe7\x8a\x95\x61\x48\xee\x8f\xfc\xb0\x3d\x6c\x2a\x17\x65\xc5\x5e\x21\x98\x1e\x3d\xb7\x16\x2f\x82\x17\xfa\x1a\x7f\x48\x16\xe9\x05\x3d\x38\xd5\xab\x73\x09\xc1\x60\xd0\xc2\xf1\x27\x4d\x03\xc6\x29\x7d\x9e\x6b\xb0\xc3\x28\xf5\xcc\xc7\x34\xff\x51\x6b\x56\xa5\x06\xc7\x50\xfd\x2f\x52\xa7\x92\xd2\xa7\x83\xbb\x3c\xe7\xf4\xec\x46\x8a\xec\x57\x7d\xea\xe9\xc6\xe4\xe5\x33\x49\x2b\x68\x17\x30\x33\x5d\xc0\x63\x89\xbc\xe5\x01\xe3\xe4\xce\xbb\x7b\x49\x92\x4f\x83\x67\xc1\x54\xbf\x48\xe9\x53\xc5\x73\x53\x62\x06\x11\x60\x72\xda\x02\x88\x45\xa6\x6b\x70\xf6\xda\xd5\x04\xfb\x1e\x86\x5d\x53\x2a\xca\x64\x52\xa5\x2d\x59\xb3\xb7\x00\x04\x3c\x1c\xdf\x01\x46\x31\x44\xbe\x78\x6a\x21\xca\x63\x27\x15\xc0\xc3\x01\x46\x62\x95\x2c\x53\x0c\xc5\x08\xcc\x98\xd7\x64\x5a\x24\xd9\x90\xbb\xec\x75\x29\x4b\xcf\x30\xe0\xe1\xca\x4e\xcd\x45\x05\xc6\x65\x62\xde\xbf\xdb\x25\x26\x5e\xdf\x48\x3a\x70\xa5\x93\x43\x18\x02\xec\x9b\x6e\xe1\x67\x70\xf1\x09\x43\xa2\xb8\x9f\x00\xca\x1a\xdb\x03\x80\x1e\xa8\x98\x57\xb3\xae\x16\x57\x4b\xa5\x67\xc6\xc9\xa7\x91\xbe\x1d\xc2\xf0\x00\x96\xf0\x30\x3b\x24\xe3\x45\x72\x80\xf9\xa8\xd2\xa6\x29\x92\xe0\x05\x3c\x7a\x21\x7b\x0b\xb0\xca\xa9\x79\xee\xc1\xb1\xd2\x64\x99\x1a\x4c\xeb\xae\x00\x20\xa3\xae\x0c\xf8\x45\xe9\x13\x20\x2c\x67\x71\x06\x21\x7d\x23\x70\xb2\x2f\x60\x85\x91\x8a\xeb\x3c\x6c\xe5\x26\xb4\xd6\xe3\xef\xad\x2f\xc8\x9c\xe9\xea\x33\x3d\x22\xb0\xe1\x6b\xaa\x78\xe6\x4c\x14\x35\x99\xc0\xdf\x9e\xc2\x03\x45\x8f\x35\xdc\x84\x7a\x2a\x0d\x06\x7f\xa2\x2c\x16\x91\xa6\x10\x38\x7d\xb5\xa6\x0b\x1b\x59\xed\xf4\x92\x9c\x06\xcf\x54\xa5\x07\xa0\x6d\xdb\x7e\x39\x86\x8c\x06\x4c\x8f\x7b\xa4\x5a\xbd\xea\xee\xd9\x5b\x00\x33\x8a\xc9\xe0\x74\x26\x0f\xfc\xed\xd8\xee\xfb\x2a\xab\x95\x3b\x90\x11\x6f\xe4\xe8\x38\xe6\x0f\x94\x9d\xfa\x5e\x1f\xbc\xf6\x33\x73\x08\xf3\x07\x4a\xd9\x4b\x24\x32\x4d\x13\x7c\xf1\xe6\xe3\xd7\x01\x9c\x25\x9a\x85\x89\xdf\xf0\xa0\xac\x2c\x6a\x7e\x64\x68\x11\xa6\xaa\x9d\x6d\x47\x44\xde\xf0\x7b\xb8\x92\x08\xb6\xe7\xf7\xc8\xd1\x14\x7c\x42\xb6\xfc\xde\x1c\x16\xc8\x4d\xbd\x61\x13\x15\x86\x6f\x9a\x46\x9f\x3c\x66\x48\x15\x58\x52\x03\x76\x05\x1c\xd1\x70\xb1\xe1\xca\x3d\x42\x6c\x20\x22\x9b\xe6\x8d\xbe\x53\xb0\x22\x7e\xec\xc1\x7f\xed\x58\xb2\x67\x6f\xd8\xdb\x94\x46\x8f\x3e\xfe\xd7\x4e\x1f\x32\x6f\xd8\x36\xed\x0a\xd5\x37\x2c\x72\xa3\x2f\xc5\x86\x10\xf7\x8e\xa7\x22\xc6\x03\xca\x4c\x53\x04\xbf\xde\x60\x1b\xf5\x79\xc5\x8a\x78\x1f\xe9\xe2\x6e\x01\x56\xc7\xab\x24\xa5\xba\x24\x32\x38\xe9\x3e\x35\x27\xa9\x3b\xed\x66\x33\xcb\x53\x83\x46\x6c\x8c\xa3\xae\xc0\xc2\xcc\x5e\x82\xdf\xc2\xbd\xf7\xaf\xef\xde\x7e\x73\xc2\xdb\xea\xd9\xb5\xf5\xfa\x60\x92\x05\x20\x86\xa1\xf0\xcd\x3b\x90\x26\x8d\x5f\x79\xed\x37\xd6\x1e\xa5\x0b\x75\xda\xb3\xfb\xba\x15\x2a\x60\xc1\xbe\xaa\xd5\x31\x52\xf9\xc0\xbb\xaa\x1f\x2e\x61\x47\x0c\xec\x3d\x18\x12\x95\x80\x7e\x6d\xc5\x25\x28\x0c\xe9\xb0\xb4\x40\x0a\x24\x98\x31\x5b\xb2\x04\x29\xca\x71\x8f\x48\x66\xf6\x4c\x04\xc0\x16\x43\x75\x51\x18\x82\x05\xa2\x2e\xd5\x86\x3e\x1e\x33\x04\x33\x75\xfa\x55\xa1\x74\xd2\x55\x67\x07\x80\x01\xbb\xed\x49\x12\x97\x4e\xd6\xb8\x64\x48\x3b\xc0\x38\x60\xa0\x47\xba\x97\xd9\xfe\xe3\x62\xc4\x40\xd7\xbf\x7a\xc3\xc9\x43\x10\xf6\x84\x08\xee\x59\xd4\x26\x0b\xcd\x07\x2b\x7e\x6d\xf0\x79\x8f\xa2\x6a\xd3\xb9\xf8\x8d\x2c\xa8\x17\x59\xce\x66\xeb\xfb\x98\xf4\x82\x4f\xda\x92\x99\x1a\x6a\xa1\x5c\xb8\x49\x50\x1d\x5d\x08\x8c\xc5\x69\x2e\xc2\xe0\xe0\x7b\x41\x75\x03\x8f\x92\xbb\x98\xca\x2e\x12\x21\x9a\x6f\x1b\x31\x86\x1e\x87\x2f\xcb\x72\x3c\xb6\xf2\x29\xa3\x76\xcf\x63\xc1\x7d\xdf\xf7\x57\xa0\x1f\xb6\x62\x77\x06\xeb\x92\x2b\xc7\xf9\x90\xce\xe1\x3c\x96\x73\x33\x41\xa0\x4c\xf3\x62\x28\x52\x6c\xf2\x88\x34\x64\xd7\x99\xf2\x8f\x59\x70\xc8\x7e\x9b\x75\xd1\xaa\x6f\x23\x4d\x23\x2c\xff\x50\x1e\xd5\xd0\x0b\xfa\x07\xf3\x47\x04\x9d\x97\x95\x22\xc1\x4d\xb5\x7e\x0c\x8e\xc3\xd7\x76\x1e\x1d\x2e\x96\xa1\xd5\xcc\xd9\x98\xea\xb4\xed\x70\x0e\x8d\x2b\xe5\xbe\x16\x87\x75\x55\x5b\x00\xa3\x11\xf8\x8b\x41\x46\x88\xf6\x54\x08\x88\x2e\x39\xfe\x6a\xac\x90\x09\x11\xfd\xe0\x63\xf6\x27\x86\x10\xf9\x40\x28\x02\xa8\xa6\xa7\xf2\x78\xd8\x4a\xdf\x9d\x1d\xcc\x16\xba\x10\x2c\x62\xfe\xe3\xd7\x5f\x7d\xa1\xd4\xde\x5c\x8d\xfc\x40\x99\x20\x7f\xfd\x97\xe2\x4f\x0b\xf0\xcf\x5f\xbe\x7c\xf9\x51\xf4\x72\xf1\xe7\x96\x7d\xa1\x86\x7a\x95\x87\xad\x24\xf4\x4c\x5f\x74\x64\xcd\x27\x93\x2f\x54\x18\x06\xf7\xb9\xda\x7e\x2a\xc5\x5a\x94\x2a\xcf\x8a\x3a\xc8\xcb\x67\x5f\x28\xb6\x86\x0f\xf9\x17\x0a\xb2\x99\xc6\xba\x4b\x01\x39\xb2\xc6\x60\x25\xde\xcb\x74\xc9\x4d\xa3\x0b\x9e\xa8\x9e\xdc\xc9\xf2\x03\xbd\x88\xbc\xbe\xa5\x27\x57\xa6\x79\x9a\x89\x86\xa0\x8c\x04\xcd\xc1\x98\x02\x79\x94\xc2\x4b\x92\xfe\x55\x0b\x89\x2a\xf1\xf9\x3e\xab\xeb\xfb\x4a\xae\xf5\x56\x7f\xd8\x4a\x64\x06\x3b\x26\xd4\x4f\xd4\x5c\x26\xf7\x12\x2c\xd3\x69\x32\x5a\xce\x3f\x0c\xeb\xf9\x50\xaa\x39\x96\x46\xba\x4f\x74\xe5\x5e\x57\x9b\x26\x4f\x82\x1f\x67\x66\xa6\xc4\x7a\x06\x01\x38\xd3\xa6\x21\xa3\xe9\x3c\xe8\x4f\x6d\x40\x59\x4e\xeb\xe3\x6b\x70\xc6\xc0\xfa\xf9\x4c\x8e\xd1\x79\x5f\x18\x0c\x72\xfa\x92\xd7\xf3\xaa\x2c\xaa\x6c\x0d\x0f\xc0\x6e\xc0\x13\x5c\x1c\xe1\xc9\x5c\x17\xe1\x19\xee\x62\xc0\xc3\xac\xb6\x59\x79\x8b\x01\x71\x99\xb9\x1f\x83\x3f\x49\x6d\xaf\xce\x91\xe1\x5d\xd0\xcb\x64\x08\x40\x55\x1b\x76\x23\xae\xc8\x82\x99\x9c\x34\xaa\x88\x4d\x67\xb5\xc7\xd9\xe8\x17\xff\x52\x89\x4d\x4a\x9b\x66\x34\x1b\xaa\x54\x20\xcc\x44\xed\xf8\x7e\x23\xf6\x82\x37\x74\xc4\x0a\xc8\xcb\x29\x1e\x54\xfc\x74\x93\x97\x99\x7c\x8c\xba\xe4\x36\x7a\x02\xe5\x4b\x3f\x63\xcb\x20\x3e\xe4\xb1\xbc\x9d\x50\xb4\xf8\xb7\xa3\x2a\x09\x65\xe5\x60\x6c\xed\x88\x6a\x5e\x13\x7b\xde\xb9\xbb\xba\xb1\x8f\xbb\x59\x28\xa3\xd1\xb1\xf7\x26\x53\x73\x9c\xb5\x77\x53\x86\x68\x40\xa3\x22\x01\x19\x86\x25\xa0\x1d\x32\xa9\xeb\xc7\x99\x43\x49\x40\x8d\x42\x00\xd5\x13\x32\xa1\xb6\x16\xd1\x87\xfa\xb2\x01\x69\x65\x03\xed\x91\xc8\x1c\xaa\x91\xc4\xc6\xee\xe8\x29\x98\x48\xdf\xfc\xdb\xdb\x10\xe0\xb8\x6f\x4f\xa7\x39\xf2\x1b\x1c\xd5\xc7\x3d\x05\x91\x53\x3d\x62\x16\xa3\x63\xec\x14\x84\xec\x59\x4f\x87\x78\x22\x5d\xac\x76\xa3\xe9\x0f\xb3\xee\x4d\x4f\xd5\x68\x6a\x3b\xbf\xba\x21\x71\xa4\x4b\x6d\x74\x46\x8a\xc9\xa0\x5f\xec\x29\x05\x41\xbd\x67\x8a\x19\x3b\xdc\xae\x8d\x24\xf9\xcd\x5d\xa6\x4f\x5d\x26\x46\x07\xcb\xb1\x5d\xbd\x03\xb8\x43\xa8\xb0\xc2\x4f\xf3\xa4\x87\x8b\x1d\x0f\x2a\xc2\x80\x68\x86\xae\x1b\xcc\x8e\x48\x8f\xd7\x81\xae\x29\xa0\x5a\xf9\x83\x04\x5a\xb3\x19\xc1\x25\x16\xf6\x2a\xa0\x68\xc2\xf3\x64\xf4\xc6\x91\x30\x33\xfa\x29\xfe\x66\xb5\x5c\x45\x42\x53\xec\x96\xce\xab\x92\x04\x7a\xb7\x3c\x33\xd7\x9d\x3e\xed\x72\x31\xfc\xad\x05\x38\x13\x61\x58\x11\x8f\xbe\xe0\x35\xec\xcf\x8b\x3f\xc3\xc9\x86\x3f\x75\x4f\x4b\x10\x08\xf6\x70\x59\x94\x66\xf8\x3e\xb8\x60\xe1\x9c\xfc\x44\xb1\xdf\x14\x4f\x52\xf6\xbd\xe2\xe7\x84\xd3\xab\x98\xc4\x3c\x6c\x9e\xd3\xe6\x2a\x46\x8b\x43\x6f\x41\xea\x4b\xc5\x3e\xfa\xff\xd9\x7b\xf7\xee\xb6\x6d\xe4\x61\xf8\x7f\x7d\x0a\x99\x4f\x5f\x2d\xf9\x33\xac\x4a\x4e\x7a\x59\x25\xa8\x7e\xb9\x38\x6d\xda\xc4\xce\xc6\x4e\xbb\x5d\xad\x4e\x96\x96\x20\x9b\x8d\x04\xa8\x20\xe4\xc4\x8d\xf4\x7e\xf6\xe7\x60\x70\x21\x00\x82\x92\x9d\x36\xbb\xdd\xa7\x3d\x3d\x8d\x45\x12\x18\x0c\x80\xc1\x60\x30\x98\x4b\x32\xd1\x17\x8c\xea\xca\x78\x69\xee\x1b\xeb\x69\x32\x7e\x16\xca\xf2\x18\x8e\x38\xca\x52\x7f\x3f\x79\xad\x14\xd2\x9e\x3c\x4c\xc0\x7a\x83\x44\x09\x43\xb6\x01\xb7\xca\xcb\x04\x79\x6e\x11\x41\xca\x28\xd0\x12\x8b\x2e\x94\xec\x74\xd2\x57\xc6\xa8\x49\x0e\x7d\x36\x4c\x56\x7c\x9e\xd4\xe3\x17\x08\xad\x70\x86\x2b\x04\xf1\x6b\xaf\x10\xaa\x36\xb5\xa2\x3f\x91\x7f\x95\x9b\x6c\xb9\x5e\x27\xaa\x17\x60\xfc\xed\x99\x86\x98\xbb\x36\x83\xbe\x19\x51\xbc\x48\x83\x37\xd9\x30\x78\x91\x4a\x31\xd6\x7b\x83\xca\xa1\x18\x95\x63\x2c\xff\xb1\xf7\x04\xaf\xd4\x3d\xc1\x7e\x91\x0d\x82\x71\x82\xf1\x71\xae\x23\xcc\x78\x99\x1b\x04\x5d\x12\xec\xfc\x0a\xd8\xd9\x2b\x35\x95\x5e\x50\xea\xce\x7f\x8c\xeb\x37\xb0\x79\x65\xee\x59\xec\x27\xed\xb7\x79\xd9\xa6\x4c\xb4\x25\x01\xc9\x11\x43\xf9\xa8\x37\xde\x20\x7f\x34\xb0\x3a\xbb\x42\xf4\xec\x62\x8c\xe4\x3f\x5e\xe4\x5c\x6c\x9d\x1a\x37\x88\x46\xa2\x88\x5a\xa6\xc1\x86\xe0\x3d\x54\x85\x90\x48\x8b\x6c\x00\xe0\x18\xd8\x48\x42\xe7\xfd\xf1\xe6\xc1\x50\x4a\x02\x5e\x95\x97\x69\x91\x41\xfa\xb3\x05\x84\xf7\x66\x69\x0e\x87\xa9\x1c\xb3\x2a\x7f\x81\xe1\x2d\x60\x60\xad\xae\x13\xbf\x39\x83\x50\x10\x80\x2b\x4e\xd3\x87\x02\xd3\x6e\xb1\x58\xaa\x43\x14\x50\x52\xa4\x60\x2a\xa9\x4e\xca\xfe\x99\x93\x0c\x3e\xb9\x2f\x89\xed\xab\xfb\x9f\xaa\x3f\xee\x43\x82\x0e\x31\xc6\x0f\x85\x23\xff\xdb\x8b\x29\x6d\x6e\x01\x20\xe2\x3a\x83\x7a\xf4\xc1\xe1\x68\x3c\x48\xa3\x2e\xcb\xda\xd8\x41\x32\x5e\xb1\x5e\xa7\xb1\x5e\x0e\xd3\xb4\xc0\xe9\x8d\xfb\x99\x85\xf7\xae\xe7\x79\x49\xe4\x6b\xb8\x68\xa5\xd6\x18\x5a\x9b\x12\xd5\x79\x5c\x91\x65\x03\x81\x21\xe9\xe5\x1b\x93\xbd\x1f\xe5\x78\x8f\x77\x3a\xa3\x31\x62\xc3\x91\x08\x5a\x60\xa3\xfe\x38\x1b\x0f\x52\x86\x2f\x54\xf0\x56\x81\x72\x98\xd9\xdc\xa6\x44\x7b\x9d\xe6\x59\xc5\x87\x5f\x77\x17\x84\xcb\xb2\x63\xc4\xdc\x23\x56\x96\x55\x56\x1e\x5a\x03\x00\x52\x50\x63\x2c\x11\x94\xab\x08\xd5\x25\x26\xae\x27\x7b\x95\xdc\x40\xb9\x45\x51\xbc\x14\xa9\xc9\x34\x2b\x4f\xd3\xf2\xf0\xad\x9e\x7a\x48\x3e\x83\x6d\xae\x6f\x77\x32\x10\x91\xc0\xab\x90\xd4\x02\x27\x2f\x4e\x4e\xcf\xe4\x3a\x33\x31\x55\x7a\x9d\x4e\x44\x05\x52\xac\xd7\xa1\x16\x44\x59\x32\x69\xed\x64\x16\x84\xb7\x25\xd9\x7b\x56\x2d\x43\x94\x77\x65\xe9\x94\x0e\xe5\xb6\x38\x2d\xae\xbe\xb2\x21\xc2\x52\x87\x04\x21\x44\xc0\x4c\x45\x7c\x87\x13\xb1\x59\xbb\xbc\xd3\xf1\x55\x4a\x79\xed\xd4\xeb\x05\xf1\x63\xeb\xb5\xa3\xef\x06\x81\x58\x20\x32\x86\xc8\xd6\x5a\xfb\x60\x15\x57\xd5\xdd\x34\xaa\xb4\x6a\x28\x50\xc9\xb9\xca\x3d\x4f\xed\x87\xaa\x5b\xaa\x7a\x82\xbe\x30\x24\xa1\x7f\x9a\x87\x3d\x8a\x64\x91\x33\xb8\x8e\xc6\x37\x8d\xab\xa7\x2e\x38\x59\xa6\x36\x54\xa4\x7b\xac\x34\x0a\x17\xd8\x3e\x54\xd6\x0e\x3d\xab\xb2\xbf\xea\x9c\x0d\x8e\x14\x27\xf0\xb3\x39\xac\x8d\xbd\xbc\xa8\x72\xe6\xea\xac\x79\x90\xb3\x5b\x32\x4d\x34\xc3\xef\x37\xad\x44\x0a\xe1\xc5\x44\x6e\x58\xf3\x2a\x89\x9d\x93\x7b\xdc\xa4\x66\x4f\x32\x54\xda\xbc\xe3\xa9\x8a\xe6\xaa\x41\x83\x16\x13\xad\xaa\x17\x73\x48\x41\x87\xd2\x2a\xb5\xb4\x04\xbf\x5e\x27\xb3\xe2\x1d\x99\xc2\x83\xba\x21\x5f\xb9\xbb\xef\x4a\x30\xf0\x1c\x1c\xa6\x39\x4e\x29\x9e\x58\x24\xd2\x2c\x83\x3c\xeb\x85\xe4\x17\x64\x26\xb2\x41\x9a\xbb\x49\x19\x59\xb6\x5e\xf7\x90\x97\x14\x76\x05\x49\x61\x91\x8a\x28\x9c\x0a\x6c\x33\x09\x70\x2f\xb4\xac\x5c\xe4\x3a\xa8\x2f\xa4\x72\xef\x74\xd2\x99\xfc\xab\x9e\x0e\x4a\xf9\xef\x7e\x5e\x15\x91\xad\x43\x19\xf9\x43\x3f\x1f\x94\xf0\x47\x6e\x9c\xc9\xaa\x94\x9c\x56\x9e\xad\x87\xf2\xc8\x5e\xd0\x0b\xd3\xee\x2c\x1b\x4c\x60\x78\x66\x2a\x15\x91\xa3\x4e\x64\xe1\x5c\xc2\x89\xa4\x29\x46\x47\x25\x2f\x83\x76\x2d\xa6\x28\x03\xd2\x55\x50\xbb\x96\x56\x4c\xac\x51\x91\x69\xa9\x50\xc5\x3a\x08\x82\x09\xd0\x21\x6d\x52\xdf\x0c\x81\xe9\x37\x64\x03\x94\xc2\xac\xaf\xc4\x74\xfd\xfc\xd0\x7b\xc1\x96\x03\x18\xd3\x7d\xde\x5d\xe6\x17\xe4\x47\x85\x14\x92\x23\x37\x50\xe3\xa8\xbf\xfc\x5d\x7d\xd9\x64\x03\xa8\xd4\x53\x45\x7a\x1b\xe3\xeb\x8e\x96\x91\x24\xeb\xc5\xcc\xea\x3f\x4d\x50\x4b\xb7\x77\xa8\xc0\x3e\x30\x29\xac\x55\xc4\xa8\xe8\x96\xba\x6b\x24\xdb\xd2\xd7\xea\xd2\x52\xe7\x9f\xb3\x6b\xa2\x36\x08\x88\xc8\x37\xf0\xf9\x05\xa8\xfe\xd6\x6b\xde\x9d\xea\x8f\x7a\xc3\xba\xa7\x22\xd2\x62\xcc\x41\x26\x58\xaf\xd5\xef\xa0\x14\xc4\x33\xb0\x4b\x35\xb2\xaa\x95\x0e\xd7\x89\x52\x24\xcf\xcd\x2a\x1f\x49\x2d\x64\x7e\x5a\x00\x07\xb0\x88\xc3\xf2\xaa\x25\xc2\x3e\x63\x4b\x9b\x02\x3b\x43\x85\x9a\xa4\xb0\xd0\x33\x32\x13\x55\x29\x73\x93\x51\xcd\xf7\x41\x01\xff\xda\x21\x56\x39\x9b\xce\x24\x87\x86\x48\xf9\xd5\xfc\x1f\xa8\x16\xc2\xa2\x90\xce\x52\xf9\xb5\x6d\x90\x3b\x94\x37\xf4\xc1\xf0\xb5\xdf\xde\x64\xc8\x91\xbf\xc9\xa0\xba\x75\xac\x4e\x7c\xbd\x3e\x27\x1b\x3f\x8a\xac\x4d\x5c\x36\x48\x1c\x4a\x4e\x90\x4d\x74\xa6\xde\x6b\xda\x6f\x70\xb9\xf3\x8a\xc8\x7d\xa0\x55\x0b\xff\x4a\xb7\x24\x97\x84\x8b\x19\x09\x09\xd2\x7e\x5f\xa5\x24\x1b\x32\x4c\x06\x7f\x0d\x49\x80\x61\xe2\xae\x50\x37\x59\xae\xbd\x40\x1f\xb2\x91\x18\x0f\xc8\x88\x8e\x5b\x6c\xc8\x6c\xbe\xb6\x94\x0f\x99\xbb\x54\x07\x05\xe2\xc3\x62\xc0\xdc\x85\x9d\x41\x35\x5c\x6c\x20\xda\x6e\x8d\x97\x05\xc1\x82\xe5\x76\x0d\x7b\xc6\xf6\x14\xb9\x90\x22\x75\x59\xbc\x23\xf3\x17\x7a\x86\xdc\xe2\xdc\x4b\x97\x6b\x52\x6d\x8b\x0c\x99\xdc\xe7\x3c\x53\x87\x85\x6a\x5b\x19\x89\x31\xa4\x2f\x1d\xf0\x4d\xe6\x4c\xa4\x4e\x86\x6d\xf3\xf7\x02\x7d\x0f\x74\x62\x92\x7a\x70\x5e\x55\xc9\x66\x3b\x05\x91\x3e\xd9\x27\x46\xdb\x32\x10\x28\x49\x06\x09\x5b\x09\x78\xbd\x09\xa2\xbd\xc2\xec\x52\x67\x76\x9d\xc4\xfe\xe1\xb8\x49\x01\xdd\x89\x80\x6c\x25\xfa\x42\xee\xcd\x7c\xbd\x4e\xe1\xe6\xbc\x58\xaf\xf7\xd4\xd9\xc8\x64\x48\x1b\x98\xc4\xb6\x56\x14\x0d\x09\x07\x42\x10\x18\xc2\x31\x3b\x8d\x14\x43\xc1\x50\xa4\xda\xa4\x55\x2f\xb2\xa1\x18\xd9\x7e\x8e\x07\xc2\x32\xab\x90\x6b\x8d\x92\x09\x30\x4e\x28\xf6\x57\x90\x6a\x0c\x0d\x0e\x53\x86\x6b\xe5\x91\x4d\x39\x26\x80\x19\xc2\xe9\x93\xcd\xe7\xb2\x3e\x62\xde\x93\x29\x60\x52\xfe\xaa\x02\xfe\x53\xd5\x78\x66\xfc\x3b\xe4\xf8\x0c\xd5\x4a\x17\x90\x92\xd7\xa6\x2e\x54\x51\x18\xca\x6c\x23\x0f\x0c\xc3\x62\x60\x6c\x77\x20\xa8\xae\x25\x8e\xe4\x7c\xbe\xe2\x6d\x70\x9b\x6d\x6b\x5f\xda\xb6\x71\xa2\x6d\x73\x52\x16\xbf\x90\xb6\xc2\xb2\x3d\x99\x17\x93\x37\xed\xe9\xf9\x5c\xfd\x58\xb0\x55\x49\xa6\xec\x2d\x55\xbf\x56\x4b\xf5\x57\x1e\x42\xd4\x2f\x76\x45\xb8\xfe\xb5\x12\xea\x07\xa1\xc2\xbc\x9b\x93\xfc\x8a\xb4\x95\xb6\xb4\xad\xbc\x1d\xdb\xca\x4b\xb2\xfd\x86\x5c\x03\xdc\x37\xe4\x7a\xc9\x49\x59\xca\x1f\xab\x65\x5b\xdb\x98\x2f\x08\x5d\x25\x8e\x21\xc6\x4e\x21\xd7\xb9\x6e\xae\xc5\x6b\xec\x0d\x2b\xc9\x57\x69\xaf\x10\xd7\x97\x75\xe6\x66\x3b\xe2\x31\x7d\x29\xbb\xb6\xc5\x5f\xba\xea\xab\x5c\x9f\x55\x77\x53\x01\x11\x01\x42\x70\xe7\x85\xab\xae\xf3\x2f\xc8\x0d\x7a\x44\xbb\x6f\x23\x0e\xb7\x72\xb5\x2a\x41\x85\xd9\xcc\xd6\xc8\x36\xc8\xc4\x44\xd8\x91\x48\x41\xc9\xff\x3a\x21\xc2\x8a\x36\xd4\xb2\x75\xe4\x36\x5c\x0b\xd6\xe4\x34\x9f\xfc\xcf\xff\x24\x7a\x2c\xe5\x0b\x81\xc0\xde\xf9\x7f\x12\xc4\xf5\x10\x2c\x39\x7b\x77\x1d\x77\xf4\x44\xe0\xcc\x5a\x57\x7d\xc1\x91\x9e\x8c\xc4\x58\xe7\x1a\xe0\x52\x26\x76\x52\x0f\x62\xa6\x04\xd4\xea\xa0\x77\x98\xa1\xb4\x88\xa8\x79\x88\x39\x9e\x69\x27\x69\x6a\xbc\xd9\x42\x08\x10\x66\xae\x7b\xb1\x2a\xa6\x98\xb8\x7f\xd6\xeb\xd7\xf0\x77\x7f\x1f\x15\x52\x02\xbe\x64\xf3\xe9\x4b\x92\x4f\xaf\xfd\x18\x2a\x10\x4a\x36\x9f\x5e\xff\x90\x17\x62\x7f\x7f\xa0\x9f\x20\xb9\x03\x98\x04\x80\x0f\x21\xf6\x3c\x0a\x8d\x12\xe4\xdb\xd3\x93\x63\xec\x78\xa5\xbc\xb6\x8e\x8e\xf8\x01\xd4\x7d\xa2\x1b\xc2\x0b\x78\x54\x41\x27\xf0\x15\x7a\xdd\x9d\xe4\x0b\x32\x7f\x94\x97\x04\x7f\x87\x5e\x2b\x15\xf3\x39\xd4\x7f\x6b\x5d\xb4\xa1\xca\xf1\x6a\x41\x78\x31\x89\x64\x81\x50\xb5\xaa\x7b\x64\x37\x91\xbf\x70\x0d\x85\xb1\x94\xe5\xf6\x8a\xf2\x38\x3f\x4e\x89\x9b\x8a\x9c\x64\xd9\x06\x25\x06\xb2\x63\x52\x4c\x66\x05\x25\x9d\x8e\xfa\xdb\xcd\x17\x53\xf3\x3b\x4d\x94\xbf\x48\x82\x46\xe3\x48\xee\xee\xd7\x5a\xd2\xff\x41\x60\xd2\xfd\xe9\x6f\xb2\x24\xfa\x5e\xfe\xfe\xa4\xca\xb0\x42\xd9\x23\x46\x67\xf3\x62\x22\x70\xec\x20\xda\xfd\x44\x0a\x46\x70\x30\xfc\x04\x7f\x2f\x20\x49\x85\x81\x65\xbf\xe8\xc7\x1f\x44\x86\x5e\x6f\x40\x71\x64\xdf\xc9\x6a\xaf\xe5\xeb\xac\x16\x96\xdc\x11\xd1\xef\x79\x02\x9b\xb1\xbc\xd4\xac\x48\x6d\x85\x04\x95\x10\x09\xa9\x55\x42\x50\x92\x62\x94\xef\xe3\xe4\x53\x15\xb3\x74\xac\x03\x7e\x63\x26\x0b\x48\xb1\xc7\x5c\x40\xad\x0c\xa1\xaf\x5a\xea\x2b\x96\x87\xbe\xf5\xda\x5f\x43\xea\xea\x47\x40\xd8\x97\x23\xe5\xb7\xfe\x88\xad\xe6\x53\xd0\x63\xce\x0a\x3a\x6d\x2f\xd8\x74\x35\x27\x3a\x1c\x1c\x27\x3f\xaf\x0a\x4e\xa6\xed\xf3\x6b\xe5\xd3\x3e\xb8\x49\xc5\x6c\x03\xdd\xb1\x69\xd7\xe6\xb8\xec\x4e\xc9\xb2\x44\x13\x5c\x76\x8d\xb6\x1d\xcd\xb0\x84\xa5\xfc\x64\xe7\x56\xc9\xb7\xc4\xbd\x7b\xcb\xfb\xe6\xf9\xde\x72\x7f\x3f\x4b\xc8\xbb\x25\xe3\xa2\x84\xc3\xf4\x68\x39\x1e\xce\x46\xcb\x31\x5e\x0d\x12\x8d\x9d\xff\x5e\x0c\xe0\x0f\x4d\xe5\x2b\x94\x5b\x31\x60\xe2\xea\x5c\x66\x19\x5a\x6d\x24\x17\x91\xac\x4c\x92\xd7\xb4\xa2\xc1\xb7\xb0\x54\x3a\x1d\xe7\x9b\x95\x3e\xb4\x41\x7c\xa7\x93\x8c\x94\x86\xca\xbc\x19\x4b\x24\xde\x6f\xba\x82\x29\x67\x32\xc5\x28\xf4\xc7\x6c\xbd\x4e\x75\xda\xbb\x23\xb9\x4e\x9c\x9f\x10\x9e\xa5\x12\x48\xd5\xe5\xae\xff\xaa\xfb\xfa\xf5\x9c\xe5\x53\xc2\x3d\x27\xd2\xf7\x9b\x16\x69\x48\x5c\xf4\x7e\xd3\xe2\xc3\x94\xc2\x90\x63\x21\xb9\x97\xd5\x07\x43\x30\x07\x78\x3f\x1a\xbb\x1f\x20\xa2\x09\x19\x63\xba\x41\x69\x3c\xe2\x94\xde\x33\x24\xbf\xd3\xb2\x34\x16\x08\xae\x1c\xa3\x96\x13\x05\x44\x28\x86\xbf\xfb\x96\x76\x37\x48\x74\x5f\x93\xfc\xcd\x6b\xb9\x03\xe2\x02\x55\x5d\xc3\xef\xd5\x50\x0f\x08\xd2\x93\x3a\x10\x88\x93\x8b\xa2\x14\xfc\x7a\x50\x68\xeb\x65\xe2\x0c\x46\x57\x55\x40\xc2\x7d\xa7\xeb\x6e\xb2\x34\x43\x24\x4d\xfe\xf7\x62\x5e\x2c\x16\x84\x7f\x2a\x79\x63\x82\x46\x96\x90\x50\xf5\x89\xaf\xe0\x5a\xb7\x26\x8e\x27\xab\x92\xb4\x25\x23\x9b\x88\xa4\xb2\x90\xe6\x36\xea\x57\xc5\xbc\x5c\xcf\x64\x1d\xb3\x58\xe8\x2b\x56\x49\xe0\x52\x00\xd4\x0b\xe6\x74\xb5\x24\xbc\x4d\xde\x81\xe4\x22\xc1\x2d\x56\xa5\x68\x93\x42\x5c\x12\xde\x3e\x27\xe0\x49\xd5\x66\xbc\x9d\xdb\xfb\x7e\x04\xcb\x2b\xd9\xb7\xa1\x2f\x5a\x6e\x3e\x7a\x65\x2d\xa6\x75\xc2\xa9\x0e\xbd\x63\x52\x7f\x7b\xc9\xea\xdf\x6b\xf7\x72\x44\xa8\xe4\xea\xf9\xf9\x9c\x0c\xf6\xfa\xe8\x2d\x57\x31\x72\xb5\xb3\xe2\xac\xb8\x58\xe9\x6f\x10\x68\x4f\x6e\xa9\xba\x0d\x79\x28\x34\xa0\x4f\x66\xc3\xe8\x5b\x15\xd6\xbe\x61\xcf\x46\xcc\xa0\x7b\x41\xc4\xc9\x5b\xaa\xb3\xc6\x5e\xcb\x2d\x0b\x82\x6a\x82\x0f\x30\xee\xdd\xe3\xf7\x6d\xf2\x17\xbe\xbf\x9f\x51\x95\xfa\x33\x2d\xe2\xd5\x1f\x13\x75\x51\xc1\xb8\x94\xd2\xb2\xac\xd3\x29\xba\x6e\x4f\x4c\x44\x42\x79\x26\x1c\xd1\x71\xa7\xa3\xa1\x28\xea\x31\x50\xf4\x61\x72\xa3\x62\x4c\x6f\x48\xf7\x98\x4d\xc9\xe3\x93\xe7\x67\x9c\x90\x47\x66\x18\xe5\x66\xaa\x80\xb5\xea\xe9\x91\x1c\x4e\x2e\xea\x56\x1b\x36\x76\x7e\x4a\xda\x05\x2d\x45\x4e\x27\x6a\x3a\xe3\x74\xf2\x28\xa7\xe6\x5a\xa9\x9d\xb7\x21\xb0\x67\x3b\x2f\x1d\xb2\x48\xb2\x8d\x4e\x8f\x15\x8a\xb8\xb2\x11\xe2\x40\x7d\x49\x66\x84\x13\x3a\x31\xa0\x65\xad\xf6\x65\x5e\xd2\xbf\x88\xf6\x39\x21\xb4\x5d\xd0\x42\x14\xf9\xbc\x28\xc9\xb4\x7d\xd0\x2e\x25\x85\xa6\x99\x57\xc2\xdc\x6e\x99\x70\x9e\xc2\x0d\xe4\x51\x91\x7e\x6c\x41\x0c\xc9\x40\x68\x4c\x43\xb3\x37\x73\x74\x4d\x29\x22\x19\xa2\x4e\xfa\x70\x88\x9d\xf3\x4a\x8a\xc5\x65\xa9\xcf\x4a\xae\x8c\xb6\xf1\x0a\x2b\xbb\xc0\x6f\xce\x9e\x3f\x53\xb6\x81\xb5\xc4\x31\x8a\x65\xf2\x21\x87\xa8\x54\x05\x5b\x95\xa7\xc5\xf9\x5c\x9e\x5e\x09\xd8\x16\xc3\xcd\x0b\x62\x8a\x25\xdb\xb3\x9d\x5a\x52\x2f\xf3\xb7\x12\xf2\x29\x31\xba\x88\x16\xf1\x0d\x11\x99\xdc\xe5\xd4\xa6\x5d\x0c\x8b\x2e\x25\xef\x44\x05\x1d\x6c\x0c\x15\xf8\x72\x17\x02\x2d\xc7\x16\x4c\x74\x1f\x31\x3a\xe1\x44\x10\xd0\xc8\x95\x29\x41\x39\x9c\xd5\xdc\x7e\x7b\xf7\x40\x8d\x5a\xfb\xa0\x3f\xe6\xda\x88\x04\xc0\xdc\x50\xb3\xb5\x3d\xa5\x9e\x7b\x02\x92\xb1\xa5\xa2\x1b\x59\x20\x72\x84\x9a\xd6\x0e\xdd\xf8\x4c\x99\x1b\xd2\x6c\xe0\xcc\x2b\x51\xcc\x6f\xcd\x96\x7f\x6f\xc4\xef\x49\x78\x7f\xee\x1c\xff\xaf\xef\x1c\x76\xba\x8b\x8f\xc1\xf3\x49\xb7\x28\x8d\x2f\x04\x26\x5d\x4b\xde\x8f\xc0\x84\x88\x74\x17\xf9\x12\x93\x2e\x3c\x4d\xed\x47\x4c\xba\xaf\x96\xd3\x1c\x66\xeb\x2c\xbf\xb0\x05\xd4\xef\x09\x5b\x9c\x17\x94\x54\xbf\x4e\xe7\xc5\xc4\x79\x3c\xcb\x2f\x2e\xa0\xb1\xc7\x05\x17\xd7\x0e\x8c\x57\x2f\x5f\x1e\x1d\x9f\xbd\x3e\x7b\xf0\x35\x26\xdd\xef\x4f\x9e\x3d\x38\x7b\xfa\xec\x48\x3f\x3e\x3a\x39\x3e\x3d\x7b\x60\xbf\x9e\xe5\x17\x3f\xf0\x7c\xb9\x24\x1c\x90\xbe\x2a\x24\x05\x2b\x30\xa6\x22\x26\xdd\xa7\xc7\x4f\xcf\x9e\x3e\x78\xe6\x54\x97\x2f\x05\xe1\xb9\x60\xfc\xf4\x9a\x4e\x2e\x39\xa3\xc5\x2f\x1a\x88\xee\x9c\xf9\x6e\x8b\x16\x8c\x3e\xe0\xa2\x98\xe5\x13\x51\x62\xd2\xb5\x3c\xe6\x09\x67\x8b\x17\x39\x87\x97\xcf\x8a\x52\x3c\x15\x64\x81\xe5\x78\x02\x8b\x92\x8d\xca\xbf\xd5\xa0\x39\x1b\x3d\xc3\x7d\x3f\x7d\xa3\x9d\x64\x62\x43\x38\x21\x62\x77\x34\x67\x99\x75\x21\x20\x58\x2e\x62\xc6\xc5\xed\x2a\xde\x53\x9a\x49\x1a\xdb\x20\x48\xe7\x94\x77\x8b\x29\x56\x0d\x83\x90\xbe\x92\xff\xcc\x1b\x9a\x07\x06\x6d\x31\x40\x36\x5c\x12\x56\x31\xf7\x94\xc9\x05\xe6\x0d\xa8\xad\x48\x5d\xf7\x91\xf6\x90\x1b\x83\x3a\x4b\x2b\x38\xd9\x06\xdd\xb0\x6f\x69\x0f\xad\x1a\x80\x40\xe0\x0a\xe8\xa8\xed\xc6\xa4\x52\x2c\x18\x55\x91\x89\x35\x1c\x19\x36\x62\xc6\x6c\x93\xa1\x55\x58\x0a\x09\xbf\x1c\x20\x98\x0a\x59\x96\xc8\x71\x15\x9b\x10\xb0\x2d\xdf\xdb\x01\x4f\xf2\x01\xa1\x95\x0c\xea\xe4\x3a\x4f\x7b\xea\x48\x54\xc3\xd6\x56\x3a\xce\x8f\x77\x80\x3d\xce\x8f\x1d\xc0\x4b\x0d\xb8\xbf\x0b\xf0\x74\x07\x58\x81\x31\x9e\x6a\xa0\x97\x1a\xe8\xa1\x02\x8a\xa6\x98\xa1\x45\x5c\x78\x15\x36\x60\x60\x5d\x1b\xea\xc4\xf6\xb6\x1f\x47\xbd\xf1\xd0\x7d\x18\x4c\x5b\x85\x11\xf1\xf4\xda\xe1\x35\xf1\xaf\x0a\x07\xca\xba\x5c\x73\x03\x4c\x11\xb3\xe1\x31\xc0\xd2\x00\x99\xdd\xa9\x96\xc4\xef\xc3\x71\x73\x84\xac\xb9\xa6\xc9\x29\x02\x91\x4b\x29\xa4\xc4\xee\xf5\xd1\xd6\x49\x0d\x14\xda\x7e\x95\xa9\x64\x91\x9e\x91\xbf\x5b\x16\xef\xef\x4f\x37\x48\x6c\xd2\xdc\xa1\xfd\x2b\x39\xfc\xe5\xdb\x02\xac\x73\x8d\x0e\xe4\xfd\x24\x2f\x49\xbb\x37\x30\xa7\x88\x16\x3c\xf7\xcd\x33\x19\xf5\xc6\xea\xd5\xa1\x79\x75\x61\x76\x72\xf9\x0d\x91\x51\x7f\x9c\xb5\x4c\x1a\x3f\x5d\xe4\xdc\x16\xc9\x36\x9b\x49\xba\x50\xf3\x73\xdd\x4c\x07\xfe\x44\xd2\x6a\x22\xa3\xf9\x27\x9d\x90\x74\x4a\xa8\x55\x91\xaf\x41\xcd\xac\x5e\xa9\xf4\x75\xea\x45\x6d\xaa\xb7\x8c\xbb\x73\xa1\xe9\x40\x6e\xd9\x17\xdf\x7b\xd9\xc5\xf6\x30\x9e\x9a\xe0\x6e\x2e\x22\x53\xe4\x57\x50\x00\x27\x6c\xb1\x94\x42\xad\x76\xf3\xa9\x3e\xfb\x13\x5b\xd0\x3a\xb3\xd3\xb3\x1b\x76\x56\xcf\x30\xba\x68\x1a\x58\x8a\x58\x38\xb6\xf9\xd6\x45\x92\xab\x83\x04\xa6\x28\xef\x96\x64\xc2\xa8\x5c\xbf\xf9\xce\xc5\xe2\x5e\x6d\x44\x09\x1e\xf1\x90\xe4\xf5\x68\x44\x88\xbe\xba\xaa\x52\x49\x95\x79\x29\x0c\x1b\x36\xf9\x2b\x24\x62\xe6\x5d\x06\xa3\x70\x9d\xb5\x26\xe9\x85\xea\xe2\x79\xe3\x70\x84\x83\xb1\x8b\x63\x88\xfc\xa2\xbc\x11\xb7\x20\xdb\xbb\x7f\x83\xce\x5b\xd5\xad\x8e\x43\x98\x5f\x94\x88\xe2\x83\x3e\x08\x9c\x04\xf7\xee\x91\x2a\x59\x28\xd9\xdf\xcf\x04\xe6\x23\x32\xb6\x03\x43\x71\x35\x6c\x55\x7c\xb6\x36\xad\x06\xe7\x5c\x75\xf9\xf5\x8d\x07\x67\x17\xa5\x88\xfc\x02\xe8\x44\x52\x25\x08\x7d\xe4\x86\xc4\xf2\xab\xc7\x2a\x4a\x28\x0e\x1a\xc8\x0c\xa1\x4b\x23\x0e\xc8\xd5\xb2\x26\x4b\x10\x9d\x41\x59\xd6\x32\x4b\x5a\x76\x90\xa0\x10\xb8\x59\xdd\xd5\x3a\xf5\x68\xf0\xb5\x1a\xbc\xb7\xbb\x65\xb8\x0a\xf2\x4b\xbb\x31\xc1\x45\x99\xcf\x3b\x60\xa1\xdf\x44\xa6\x72\xa3\x58\xe6\x17\x48\xe0\x1a\x7c\x43\x5c\x35\x4e\x06\x97\x0f\x8e\x08\x53\xa9\x90\x9b\x78\x58\x04\x79\x2b\x2c\x65\x88\xfb\xd2\xdb\x0e\x96\xe6\x75\x5f\x09\x6c\xe8\xdd\x6f\xc8\xd2\x80\x50\x61\x4c\xf2\x4a\x46\x07\xd2\x5d\xa8\x83\x42\x8c\x6a\x77\x2f\x56\xac\x77\x5c\x0d\xb0\x65\xc5\x51\x63\x2d\xb3\x24\x3c\x4b\x89\xcf\xa7\xde\x66\xe8\xa8\x49\xbe\x8e\xd2\x86\xb3\x93\x6d\xa3\x17\xa3\x5c\xf8\x85\x4c\x31\xf8\xd8\x6a\xfa\x15\x8a\x16\x3c\x4c\xb1\x88\xd1\xd3\x92\x90\x37\x4d\x22\x88\x03\x7d\xe8\x63\x36\x08\xbe\xa7\x81\xe0\xce\x49\x6c\xea\x21\xda\x72\x00\x38\x8b\x37\xa8\x93\xce\x86\xa3\xdd\x40\xde\x44\x76\x17\xc2\x79\xbb\xe4\x5c\x05\x47\xa9\x0f\x21\x37\xf3\xd3\x72\x82\x57\xdb\xee\x41\x56\x11\x53\xc0\x7a\x1a\x60\x4c\x87\x27\x83\x34\x98\xa3\x42\x1e\xcd\x03\xba\x37\xbd\xd8\x45\x3c\x6e\x77\x14\xb4\x5a\xb3\xb1\x05\xe7\xb0\xb8\x08\x19\xf4\x90\xd0\xab\xe9\x04\x27\xf9\xf4\xfc\xce\xf9\x17\x5f\x92\x83\x3b\xd3\xc3\xc3\x83\xbb\xe4\xee\xf9\xc1\x97\x5f\x7c\x91\x1f\x7c\x7e\xa7\xff\xc5\xe4\x70\xf2\xd9\xa4\x7f\xf7\xb3\x04\xc6\xe0\xb4\x99\x3e\xd3\x8f\xa9\x64\xce\x7c\xe2\x57\xc7\x49\x51\x91\xf2\xec\x16\x27\xcb\x76\x05\x22\x3c\x01\x3e\xfa\x18\xb8\x5b\xe8\x0f\xfe\xd4\xbc\xfd\x01\x34\x6f\x12\xe9\x37\xe8\x79\xd3\x1e\x05\x77\x01\x8f\xbc\x3d\x2a\x0c\x16\xfe\x3b\xd4\x1e\xd7\xaf\x4e\x34\x6f\xb4\xb8\x3d\x61\x3c\xa5\x59\xb5\xb5\x16\x5d\x4e\x44\x5e\x50\xb5\xe7\x14\x5d\xb8\x69\x85\x5f\x6f\xc8\x35\xa6\xf2\x5f\x54\x74\x0b\xa1\xe8\x09\x73\x54\x74\x17\x64\xc1\x20\x50\xe1\x82\x05\x60\x51\x61\xd6\xf7\x83\xfa\x1e\x1c\x91\xd8\x34\x03\x35\xed\xeb\x6d\xd7\x34\xa6\x6b\x7c\xef\xe1\xef\x64\x23\xab\xd8\x8c\x5f\xe1\xb9\x8b\x98\x2a\x2f\x71\x05\x4d\x92\x8b\x50\x79\xc9\x56\xf3\xe9\x4b\xb0\x32\xab\xb3\x9f\x3d\x0f\x39\xbf\x26\x44\xdb\x8f\x1c\xdc\xab\x81\xd4\x87\x1c\x18\x4b\x10\x1a\x04\x68\x11\x21\x2b\x0c\x7a\xd1\xc0\x9d\xb9\xa5\x38\xd3\xb3\x45\xbe\xc4\x52\x1a\xe9\x4e\x8b\x89\xc8\xac\xc8\x56\xc8\xe3\x1d\xdc\xfc\x3c\x2b\xe8\x1b\x32\x95\xa0\x2b\x26\xcb\x2b\x79\xa1\x9a\xb7\x18\xe3\x2d\xca\xa3\xc5\xd2\xd7\x40\x68\x01\xa8\xaa\x2c\x98\x96\x22\xed\x20\xab\xd7\x52\x1a\x32\x00\x42\x81\x41\x97\x68\xd8\x30\x0d\x58\x65\x2b\x15\x81\xeb\xed\x96\x16\x09\x65\x51\xe7\x37\xd4\x64\x4c\x60\xc6\x6e\x44\xc6\x7e\x85\x86\xf4\x58\x8d\xe5\xdf\xe6\xe5\x29\x09\x02\x46\x28\xcd\xa3\x53\xc5\xcb\xa7\x2b\xe7\xdc\x87\xa1\x3c\x81\xb6\x80\xb0\x22\xbd\x9c\x45\xea\x8f\x36\x2a\xb0\x18\x11\xb9\x0a\xc7\x30\xe3\xcf\xe1\xfa\xd3\xa6\x2d\x33\x6e\x46\x85\x5c\x7a\x81\xdc\x52\x5d\x3b\x46\x93\x1c\xd8\xd6\xa9\xd3\x7a\x11\xb4\xce\xe4\x09\xd5\x6d\xbd\x70\x5a\x67\xde\xd2\xa5\xe1\x4d\xa7\xc8\x10\xf3\x71\xf2\x17\x5a\x88\x8b\x44\xa0\x45\x3c\x98\xdc\x38\xa2\x91\x0c\x71\x1f\x3e\x38\x6b\x04\x62\x6a\x00\xdf\x1c\x4f\x8a\x52\x38\x70\x9c\xf4\xd8\x6a\xfe\xa0\x7b\x3e\x28\x4a\xde\xc1\x52\x6d\xa4\x15\x80\x69\x4a\xc1\xf5\xa8\x47\x96\xc4\xf5\x84\x8b\xd4\x94\x05\x52\xad\xd7\x46\x67\xcd\xb2\x5a\xc0\x0d\xbc\xb5\xd0\x52\x43\x27\xa7\xe5\x85\xdc\x5a\xa1\x44\x6e\xaf\x32\xa2\x0b\x5e\x62\xdc\xb0\x2a\x6d\x4d\x24\x70\xe3\xf2\x87\x55\xeb\x71\x00\x09\xd1\x59\xb1\x43\x62\x83\xe1\x64\x83\xea\x28\x78\xcf\x8f\x05\x30\x22\xdd\x07\x6a\x51\xf4\xc6\x38\x51\x3f\x13\x24\x5f\xbf\xe0\x2b\x4a\x70\x7f\x8c\x13\xf8\xa5\x5e\x3e\x66\x94\xe0\xc3\x31\x4e\xe4\x8f\x64\x93\xa5\x6f\xd6\xeb\xf4\x0d\x84\x76\x87\x41\x78\xd9\x3c\x80\x9a\xbc\x4c\x2a\x1e\x8a\x45\xd5\xd1\x56\x30\xba\x3a\xfd\x18\x47\xc1\x48\xd2\x70\xf0\xab\xfe\xab\x2f\x93\x15\xe7\x84\x0a\x4c\xcd\xbc\x46\x46\xbe\xbc\xa6\x13\x0f\x4d\xeb\x79\xf1\x46\x8f\xc5\xbd\x7b\x99\xd1\xeb\x6a\x85\xae\xf9\x32\xd0\x53\x24\xc7\x5a\xbd\x49\x75\x54\xb7\x96\x2e\x07\x83\xe5\x16\x83\x17\x61\x29\x39\x7c\x03\xd7\x53\xca\x16\x97\x5f\xd2\x6c\x13\xf0\xad\xe9\x95\x94\xaa\xcf\xd8\x77\x24\xd0\xfa\x6a\xdc\x35\x07\xd3\xdd\x37\x5c\xac\x22\x24\x8a\xc5\x3d\xda\xe9\x80\x0c\xb1\x87\x31\xb9\x97\x51\xbd\x25\xf6\x90\x3c\xb4\xd9\xf5\x43\x35\xf5\xda\x81\xec\x74\xbc\xaf\xf5\xc5\xf9\x20\xe0\xa9\xd1\x0d\x06\xed\x46\x90\x18\x02\x2e\x66\x3a\x63\x0b\xa6\xde\x21\xb6\x14\x39\xb7\xa3\xa9\x84\x40\xe8\x8f\xc7\xf3\xa5\xa4\x84\x71\x31\xb4\xe3\xf9\x12\x78\x58\x4a\xb3\x01\x97\x7b\x54\x5a\x64\xd5\xb7\xe7\x90\xf9\x48\xdb\x32\xcb\x17\x4f\x81\xad\x49\xe9\xc9\x4c\x78\xbd\xbf\x0a\x60\xd3\x1e\x52\xf5\x88\x7b\x3d\xbe\x97\x72\xcc\x33\x2d\x15\xd9\xac\xb7\x66\x94\x1d\x06\xc6\xbd\x25\xa0\x59\x70\x0a\x9c\xd1\x08\x90\x48\x09\x7c\x91\xb9\x78\x1e\x72\xdd\x1b\xd2\x46\xd5\x20\x9c\xd0\x65\x5b\x52\xac\x84\x78\x6c\xf2\x29\x6b\x31\x07\x75\x6e\xf6\x62\xfd\x71\x98\x72\xd8\x4f\xd4\x46\x43\xf5\x6f\x05\x45\x63\xcc\x94\xd8\x27\x86\x30\x43\xc0\x8e\x32\x3d\xee\x2e\x6d\xa7\xe1\x91\xbf\x9a\x94\x1b\x0f\x78\xc5\x5f\xdc\x5e\x17\x58\x84\x9b\x16\xcd\x5a\x66\x23\x4b\x0b\x2d\x5c\x2b\x6c\x95\x5c\x8d\xe8\x90\x56\xd8\xfa\x78\x55\xb4\xd8\xb4\xb9\xd8\xa9\xf5\x90\xd4\x6c\x09\x69\x3e\x51\xef\x6c\x0d\x66\xc3\xbe\xe0\x76\xd5\xa7\x34\x67\xfd\x58\x27\x23\xc5\x70\xcc\x65\x50\x2b\x86\x27\x71\x57\x39\xa2\x9e\x44\x9e\x66\xc3\x94\xd8\x4c\x61\xf2\x28\xa1\x76\xee\x14\xc6\x27\xcb\x06\x54\x89\xe1\xdb\x3a\x06\x3b\x47\x28\xa6\x6b\x22\x9f\x2a\x9e\xa7\x34\x0b\xb5\xeb\xfc\x53\x54\xdd\xf5\x47\x2f\x95\xa5\xa0\x8d\xf1\x4c\xb6\x69\xcd\x03\x9e\xa3\xa8\x01\x41\xf4\xb0\x8c\x89\x73\x18\x16\xfe\x61\x58\x25\xab\xf5\x53\x96\xc8\x86\x22\x16\x0b\x2f\x50\xcc\xb8\xe1\x0c\x35\x58\x42\xbc\x44\x8e\xb5\x44\x0f\x55\x46\x14\x0c\x39\xb6\x15\xc7\xf9\x31\xf2\x0d\x2f\x72\xe4\x59\x65\xcc\x51\x60\xb3\x31\x43\x81\x4d\xc7\x12\xf9\x26\x1f\x97\x28\xb0\x08\x59\xa0\xd0\x64\xa4\xb6\xd6\x74\xbe\xe4\xd1\x58\xa7\x1c\xef\x81\x72\x50\x8f\x94\xb8\xcf\xef\x89\xfd\x7d\x38\x85\xa7\x14\xdc\x38\xe4\x9c\x64\x18\xe3\xa5\xa1\xc0\x65\x8b\xee\x61\x3c\xeb\x74\x0a\x75\xf3\x4d\xed\xd6\x7c\xa5\x17\xbd\x67\xc3\x12\xdd\xe3\x10\x07\xcb\x67\x4c\xf4\x2a\xba\xa7\xb5\x3f\xf4\x9e\x6a\x5a\x28\xb5\x74\xd0\xae\x50\xed\x72\x93\x01\xd9\x6e\x35\x66\x47\xb3\x78\x70\x17\x8f\x5f\x3f\x06\xb7\xec\x7f\x65\xd9\x73\x8d\x02\xb3\x9f\xd7\xa8\x6e\x19\xf4\x16\x29\x9b\xa1\xa8\x09\x81\x94\x44\xdf\x59\xb9\x3c\xb0\x35\x3a\x42\x9e\x2d\x52\x6c\x49\xed\x61\x7c\xb2\x09\x4d\xfe\xb4\xb1\xf5\x16\x83\x3f\x14\x35\x10\xac\x5e\xbe\x2d\x38\x81\x58\x35\x79\xe8\x42\xa9\xec\x3d\xe3\x06\x82\xc5\x9f\x3a\xc0\x3f\x80\x0e\xd0\x4e\x37\xfb\x18\x0a\x65\xb8\xd7\x52\x5b\x8b\x63\x9d\x8b\x49\x57\x9b\xd5\x9e\x8a\x7c\xf2\x06\x47\x4c\x92\xe5\x52\xf9\xe1\xb2\x10\x3a\xfb\x32\x89\x19\xce\x62\xd2\x7d\xfa\xf8\xe4\xf9\x23\xf0\x79\x2c\x55\x99\xea\x41\x6e\x5d\x3a\x13\xe1\x63\x39\x00\x85\xae\x12\x7f\x2b\xb7\xa9\x22\x9f\x7b\xef\x8e\xe8\x55\xc1\x19\x5d\xa8\x6d\xfa\x74\xc2\x96\x0a\xaf\xd3\x7c\x46\x94\xc7\x0a\x98\xd5\xd1\x29\xe1\x2f\x55\x8a\x5f\xcd\x3f\x0a\x7a\xf1\xfd\x73\x65\x0f\xb8\x2c\xe6\xe4\xc8\x2e\x82\xea\x9d\xdc\x30\x25\xfe\x74\x5e\x50\xf2\x3c\x9f\x70\x26\x71\x7e\x38\x67\x93\x37\xf6\xe9\x82\x88\xc7\xd7\x34\x5f\x14\x93\xef\x73\x8e\xb5\xca\xed\x31\x39\x5f\x5d\x5c\x10\x6e\xe3\x15\x81\xad\x71\xe4\x2d\x95\xeb\x7d\x5e\xfc\x02\xd1\x51\xcc\x65\xcc\x54\x96\x33\xe6\x8a\x2f\xc1\x57\x84\x28\xd0\xf9\xf4\xf1\xc9\xf3\x07\x42\xf0\xca\xf1\xdb\x50\xcc\xf3\x9c\xe6\x17\x84\x97\xd5\x17\x6b\xda\x5c\xff\xe4\xbc\x79\x7a\xfc\xe2\xd5\xd9\xeb\xef\x1f\x3c\x7b\x75\xf4\xfa\xc5\xcb\x93\x17\x47\x2f\xcf\x7e\x7c\xfd\xfc\xc1\xf1\x83\xaf\x8f\x5e\xca\x21\xf7\xc1\x63\xd2\x0d\xc1\x4a\x18\x91\x77\x8f\xd4\x10\x4e\xf5\xe0\x9c\x91\xc5\x72\x9e\x0b\xe2\x7c\x39\x05\xa7\x7d\xe7\x83\x19\xf5\xfc\x9a\xad\xe4\xb8\x9f\x2c\x27\x6c\x4a\x1e\xae\x8a\xf9\x94\xf0\xc7\xa7\xcf\x94\x31\xa3\xc9\x93\xe2\xda\x81\xbe\xe0\xc5\xa2\x10\xc5\x15\xf1\x8c\x43\x8f\x1f\x1f\x3d\x79\x7a\x7c\xf4\xf8\xf5\xcb\xa3\x27\x47\x2f\x8f\x8e\x1f\x1d\x61\xd2\x3d\x7e\xf5\xec\x99\xf7\x42\x68\x04\x9e\xe4\x92\x31\x5d\x4b\x22\x82\xa0\x48\x36\xdc\x74\xa0\x11\x58\x4e\x40\x1b\xb0\x9c\xa8\x43\x3f\xcf\x41\x0d\xc0\x73\xf5\x38\x5b\x82\x06\x60\xb6\x54\x8f\xe5\x12\xdf\x19\xe3\xa4\x34\x8f\x3d\x7c\x57\x3e\xf6\xf4\x63\x1f\x7f\x26\x1f\xfb\xea\x51\xf4\xf0\xe7\x63\x9c\x08\xfd\x55\xf4\xf1\x17\xf2\xb1\x9f\x6c\xd2\x1c\xfc\xf1\x2c\x2d\xe4\x95\x52\xa1\xc4\x94\xbc\x8d\xba\xde\x91\x34\x7b\xcf\x7c\xd5\x01\x91\x5c\x37\x17\x44\x8d\xac\xd2\xd8\xce\x8a\xf9\xfc\x78\x35\x9f\x97\x59\xfa\xc5\x61\x66\xe2\xe2\xc7\x74\x03\xf9\x74\x1a\xec\xa8\x11\xa0\x90\x65\xc9\x97\x70\x4d\x81\x9a\x05\xbe\xb9\xbf\x0e\x20\xf0\x71\x66\xb6\xe7\x4d\x0a\x71\xee\x1b\x6d\xb9\x98\x77\xf1\xc1\xff\x7b\x2e\x3e\xb6\xdb\x9a\x29\xad\x82\x52\x25\x2b\xf7\x0a\xfd\xdb\x4c\x4b\xa1\xaf\x2d\x36\x37\x98\x79\x98\xe5\xea\xb2\xf6\xeb\x55\x31\x55\xd7\x9f\xd1\x49\x16\x0c\x3c\x70\x6b\x07\xb7\xf7\x17\xab\x62\xaa\x0e\xa5\xaf\xe5\x4f\x1d\xfe\xfb\x52\xdb\xc2\x6e\xf4\x64\x55\x92\xc9\xfc\xa3\xde\x7d\x4e\x7e\xb7\x33\x6c\x51\x9c\xfd\x29\x9a\xfd\x01\x44\x33\x65\xdd\xdc\x74\x39\x6b\x4f\x0d\xd6\x41\x0c\x4d\x22\x77\x9f\x95\xdb\xd8\x6c\xb7\x25\x9b\x13\x3c\x6a\x31\xd0\xca\x0c\x32\xbc\x1a\xec\xa9\x77\xd7\x03\xc8\x2a\x44\x86\x17\x83\xca\x7b\xdd\x46\x0d\x94\x54\x36\x4d\x89\x72\x77\xbe\x4c\xc3\xab\xc6\x0b\xff\xba\x50\xb7\xb8\x80\x9b\x41\x1e\xe8\x1e\x32\x74\xd9\xcc\x98\xe7\x01\x63\x9e\xdc\x94\xf1\xa9\xe9\xac\xf6\x71\x9f\xef\xcd\xea\xd7\xb5\x1e\xca\x36\xc7\xba\x2a\x9f\x28\x68\xe0\xb0\x3f\x34\x8a\x1f\x6b\x6e\xe6\xb7\x94\xa9\xc8\x89\x91\x2f\x58\x0d\x5a\x65\xe6\x61\xec\x99\x33\x88\x19\xef\xe3\xe2\x79\x03\xc2\xb8\x2d\x33\x34\xfd\xed\x09\x04\xe0\x2e\x34\x6a\x26\x53\xc3\x95\x7e\x56\xf6\xf0\xd7\xfa\x69\xaf\x97\xa1\x0b\xf3\xbb\x9f\xa1\xf3\xe6\x7b\x88\xf9\x0e\xbb\x18\x30\xf1\xba\xb5\x6d\x8c\x60\x0f\x19\x9b\xbb\x03\x58\xd9\xa9\xf9\x7b\x8f\x2c\x17\xbd\x29\x25\xa1\x69\xcd\xeb\x3f\xb9\xeb\x1f\x84\xbb\xbe\xdd\x62\x45\xfc\xef\x30\x12\xfb\x2f\xb6\xaa\x71\xcd\x67\x96\xa0\xe3\xa5\xa8\x80\x85\x9c\xf6\x10\xf7\xf5\x9a\x99\x67\x17\xf3\xfa\xe6\xb6\xa9\x60\x48\x6e\x23\x5e\x38\x36\xe4\xb0\xde\xa1\x59\xd7\x98\x5c\x2f\x4c\x13\x77\x0f\xbe\x3b\xd6\xe5\x99\xe3\xf2\x22\x54\xca\xac\x31\x7e\x97\x8a\xfa\x1e\xf1\x55\x6f\xc8\xbb\x3f\xb1\x82\xa6\x49\x62\x2e\x71\xd5\x36\xe5\x6b\x03\x1d\xa6\xf1\xae\x62\x29\x91\x41\x24\x36\xc8\xc5\x30\x31\xb9\x93\xe5\x0e\x59\x42\x96\xbd\x7e\x34\xd2\x9b\xe8\xb2\x65\x1f\xb4\xa6\xa5\xc8\x27\x6f\xe0\x86\x08\x96\x7b\x4e\x05\x04\xe4\x37\xe1\x6a\x52\x9e\x21\x86\xa9\x8a\xb3\x8d\x72\x5c\xa4\x04\xb1\xac\xc5\x54\xc2\xb9\x34\x43\x1a\x82\xd2\x80\xe6\xd9\x26\x43\xaa\xdd\xc3\x1d\xed\x36\xb5\xd6\xf2\x00\x52\x95\xff\x5f\xc3\xfc\x6c\x07\x4c\xee\x98\x4b\x9d\x5e\x2f\xce\xd9\xbc\x0e\xb0\x82\x76\xf7\x26\x23\xa3\x3a\x2e\x61\x4c\xd8\x92\xa4\x59\xf7\xbc\xa0\x53\x03\x1b\x39\xd0\xbe\xe8\xdd\xa6\xc3\x7a\x96\x20\xaf\x61\x05\xfb\x02\x22\xfd\xc9\xd5\xf6\x3c\x5f\xa6\xd9\x88\x8e\x5b\x55\xe4\x30\x08\xb8\x0b\x7b\xf5\x29\x99\xcf\x54\xe9\x94\x66\xc1\x0c\x14\x15\x46\xfd\xbf\x6e\xc5\x48\xfe\x3d\x94\xbb\xc1\xaa\xbc\x7c\xc9\x98\x00\x1d\x54\xca\xd1\xde\x9e\xd3\xab\xcf\x7f\x45\xa7\xfc\xe1\x73\x50\x34\x98\x57\x63\xb7\xb5\x15\x3e\x0c\xda\x01\x4d\x56\xca\xd5\xe2\x69\x9c\xde\x2f\x9b\x81\xfa\x75\xbc\xf1\x37\xb0\x2b\x38\xdb\x47\x71\x6f\x2f\x5a\x3d\xc0\x6a\x78\x3d\xb8\x70\x26\x66\x17\xa9\x44\x00\xa2\x02\xc3\x5d\x7f\x09\xa4\x77\x06\x16\x5d\x90\x8c\x97\x08\xc2\xad\x9b\xa6\x3f\xce\x41\xab\x51\x4e\x80\xa8\xb9\xfc\xd0\x08\xdc\xe3\x5f\xf5\xee\xf1\x83\x83\x8c\xda\xd1\xa9\x26\x32\xec\x17\x79\xdb\x7e\x9b\xd2\x2e\x27\x57\x84\x97\x04\x52\x76\xa8\x5d\xa7\xc9\x80\xdf\x6d\xb8\xe9\x82\x2e\xa5\x18\xee\xe6\xba\x95\xa8\x81\xa9\xf3\xb0\x5e\xef\xf5\x55\x08\x30\xbb\x49\xe3\xbd\x1e\x4a\x80\x13\x27\x05\x6d\x43\x72\xc9\xae\x11\x4d\xb0\x94\x23\x1b\x37\x6d\xb8\x23\xae\x2e\x6e\x2a\x89\xdc\x0b\xb9\xc6\x3b\x1d\x92\xba\xb2\x11\xcf\x10\x85\x77\x88\x4a\xa1\xd6\x13\xf1\x4e\x3e\x96\xb2\xbb\xc9\xea\x3c\x7b\x7f\xe2\xcb\xbf\x30\x45\x8e\xe7\x83\x89\x3a\x99\xcf\x61\xc3\x7b\xa4\xde\xd2\x7c\x41\xa6\xf0\xe2\x4d\x4c\x34\x26\x71\xdb\x45\x6d\xb7\x01\x09\x1b\xa0\x05\x93\x23\x2c\xb8\x4c\x97\x05\x62\x6a\x37\x85\x1b\xd1\xe7\x2b\xd2\x9d\x71\xb6\x38\x63\xcb\xb4\x97\x81\xd1\x8a\xa2\x03\x60\x20\xe6\x0b\xdd\xef\x6b\x03\x96\xaa\x1f\x1a\x01\x82\x8a\x7d\xba\x7f\x88\x8a\xcc\xe9\x92\xfd\x46\x11\xaf\x59\xb1\xe5\xcd\x06\x8a\x0e\xf4\x5c\xd4\x8c\xce\xb6\x99\x36\xaa\x66\xc1\xb2\x22\xa8\x35\xc9\x97\x62\xc5\x23\x27\x8c\xf7\x22\xbf\x18\x98\xf3\x09\x52\xbd\x1e\x38\xa7\x38\x54\x61\x33\x08\xb1\xd3\x40\xd3\x0c\x41\xc3\x03\x07\x07\xfb\x29\x30\x36\x82\xdd\xba\xc1\x04\x41\x49\x00\xc2\x3d\x43\xca\x6d\x81\x2d\x53\xb1\x7f\x98\x6d\xd0\x51\x4a\xd0\xe8\xfd\x1b\x72\x3d\x48\x44\x7e\x91\xa0\x0b\x12\x89\x7f\x1b\x13\xcc\x46\x01\xe2\xce\x1c\x8d\x25\x82\x0a\xa6\x3e\xeb\xc6\xc1\xd6\x66\x46\x95\xde\x77\xba\xac\x63\x94\x6f\xc6\x99\xb2\xf7\x7b\x74\xd3\x55\xa2\x2a\xe2\x5e\x7c\xcd\x80\x35\x88\xf9\xf8\x1a\xfc\xa3\xec\xb7\xd7\x56\xd0\x28\x1b\x7d\xcf\xea\x0b\x00\x71\x7f\x09\xb8\xed\x08\x0f\x25\x7e\xb3\x56\xb7\x11\xb6\x63\x4d\x03\x2d\x20\x4f\x47\x60\xdd\x73\xef\xf7\xd6\x6b\xf2\x15\xe6\xc3\xc5\xa0\x42\xcd\xae\x3c\x71\x40\x0e\xfa\x37\xa5\x68\xe0\x6a\x0f\xac\x5b\x60\xe0\x50\x55\xee\x26\x24\x87\x24\x65\xcf\x9d\x68\xc7\xa9\xf3\x3a\x7a\x04\x08\xdb\x82\x2c\x40\x9a\xbe\xaa\xd7\xf1\x16\x2b\x87\x52\x67\x80\x5b\x92\x7b\xf3\x4c\x1d\x0a\xdc\x65\x59\x2f\xea\x44\xcd\x93\x94\x85\x7b\xf7\xc4\x7d\x02\x76\x03\x7c\x24\xc6\xda\xca\x47\xc8\x03\xaa\xd9\x4c\x2a\x5a\x7d\xb0\x2d\x8e\x44\x83\xe3\xff\x61\xd4\xb9\xfe\xd0\x75\xae\x3f\x1c\x0f\x0c\x27\x6d\x9d\x84\x56\x98\x17\x86\xd8\x9c\x2e\x70\x8f\xfc\x68\xf4\x16\xa5\x99\xfd\x55\x80\x6a\x06\xde\x3b\xbc\xf6\x4d\x3d\x08\x9c\x0d\xef\xa0\xc2\xc9\x6c\x07\xf3\x35\xa6\x23\x01\x18\x6b\x6b\xed\x12\xb9\xa3\x4c\x23\xc3\xa5\xd1\x75\xd0\x6c\x90\x0a\x15\xb5\xff\x29\x15\x29\x41\xfd\x5e\x96\xc9\xd5\x20\xbe\xc2\x74\xb8\x18\xc8\xb9\x8b\x74\xe5\x64\x16\x37\x57\x32\x31\x30\xd4\xb4\xbe\xf9\x30\x16\xb4\x63\xbd\xeb\xb7\x92\xeb\x95\x7e\xb1\x7c\x0e\x4a\x10\x2c\xba\x47\xcf\x5f\x9c\xfd\xf8\xfa\xc1\xcb\x97\x0f\x7e\xbc\x11\x53\xd2\xd9\x54\xeb\x6c\xe9\x56\x9c\x08\x15\xc3\xd4\x43\x6e\x3b\x66\xd9\x20\xdd\xd9\x95\xd0\x2a\x35\xee\x8a\x70\xd0\x37\x3e\xc9\x00\xca\xc6\x8a\xde\xb5\x79\x3b\xdc\x11\x2a\xfa\xdc\x11\x0e\x47\x15\xa8\x96\x69\x0b\x9c\x1a\xa3\x8c\x92\x1f\x84\xf8\x6e\x67\x93\xcf\x03\x36\xa9\x90\xa8\x73\x4c\x6f\xee\xe6\xc5\x44\x05\x94\x8d\x52\xa0\xba\x00\xed\xff\x9a\xfd\xba\xd6\xbe\x61\xa1\x80\xde\x56\x7e\x0d\x25\x62\x1c\x5b\x4d\x71\x30\xbb\xd5\x72\xb7\x9d\xba\x35\xcb\x36\x6b\x3d\x64\xda\xd4\x65\xda\x7a\x5c\xc3\xc9\x0d\x69\x78\x34\x46\xfa\x1c\xa2\x34\x86\x23\xae\xf9\x36\x88\x74\xbe\x9d\xa0\xe5\xdd\xcf\x9b\x79\xb7\x3c\x39\x34\xf3\x5d\x35\x24\xbc\xc6\x84\xa9\xbf\xf2\x0c\xbe\x0a\xdb\x45\xbe\x6c\x14\x35\xfe\x3d\x6b\xc3\x67\xb3\x5b\xd6\x07\x1f\xd1\x5d\xbb\x80\x9a\x45\xee\xb6\x42\x6b\xad\x14\x9e\x6b\x56\x53\x90\x87\x62\xc4\x47\x64\x3c\xc6\xd4\x51\xc6\x59\xed\xa1\xb7\x18\x16\xf9\xb2\x81\x9c\x94\x11\xa0\x1d\x68\xa0\xa3\xa2\x4e\x47\xf5\x81\x70\x2a\xf9\x7e\x64\x14\xf7\xee\xd1\xfb\xd6\x92\x90\x02\xa2\x64\x44\xc7\x63\x2c\x87\xa7\x42\xd0\x92\xd3\x0b\x90\x23\x4e\xab\x63\xe4\xd9\x47\xbd\x88\x7e\xf9\xbb\xd5\x06\x5b\x14\x7f\xfa\xf3\xaa\xe4\x0f\x70\x55\xa2\xb5\xc5\xbe\xc1\x52\xc5\xe4\x56\xe5\x25\x04\xe4\x54\xda\x49\x47\xbd\xdc\x6f\xa8\xc0\x96\x61\xd1\x3b\x7f\x6d\x86\xad\xcd\xbc\xc2\x2a\x77\x9b\xd0\x61\xcb\x86\x1a\xfd\x2d\xfa\x6e\x5f\x69\xc6\x9d\x4a\x77\x6e\xae\xa3\xf4\x34\xa0\x27\x92\x8a\x3d\x2d\x65\xff\x46\xda\x6c\x54\x60\xde\xf9\xff\xd3\x3b\xf7\xef\xdf\xe9\x65\x2d\xed\x0f\x95\xf2\x8e\x7a\xf1\xd5\x57\x5f\xdd\xe9\xd9\x68\x57\x5a\xff\x67\x25\xe6\x22\xf3\xfc\x9d\xfa\xb5\x02\xa1\x4e\x1f\x02\xcb\x17\x99\x5f\xed\x70\x57\x35\xad\x44\x0e\xeb\xdd\x19\x68\x6c\x8b\x10\xc1\x8b\x38\x5a\xd7\xf1\x66\xaf\x02\xa8\xfa\xf5\x42\xa5\xd8\xd5\x63\xb9\xfd\x9e\x01\x14\xe7\x4a\x43\x45\xc4\xe4\x12\xcc\x1f\x53\x9e\x1d\x50\x3b\x65\xd3\xd5\xd2\x53\xc4\x6f\xd1\xa2\xb7\x2a\x01\xce\xaa\x59\x5d\x0a\xd9\xa2\x1a\xaf\xaa\xce\x59\x3e\xf5\x6a\x6d\xd3\x7d\xdb\x5a\x80\xbd\x5b\xed\xce\x96\x6a\x75\x6d\xbf\x3a\xf2\x82\xaa\xfb\xbc\xa0\x53\x6f\x5d\xb8\xb7\x2c\x5f\x34\xaf\xbe\x27\x3c\x5f\x78\xcb\xee\xcb\xc6\x65\x57\x2b\xba\x45\x2d\x5f\x75\x51\xe5\xf5\x70\xba\xf8\x59\xc3\xc2\x26\xef\x0a\xe1\x42\xef\xd7\x73\xf8\xda\x35\x24\x5b\x51\xd7\x1a\x3a\x7b\x27\x1f\x72\x63\x04\xaa\x47\x21\x95\x4d\x5f\x65\xda\xcb\xc8\x42\xbd\xd5\x9d\x98\xd1\xfc\x1b\xd0\xca\xee\x54\x43\x6e\xe9\xdb\x52\xda\xbd\xcc\xe9\x74\x4e\x9c\x46\xb6\xf0\x94\x7a\x23\x86\x91\xd4\x6e\x6c\x68\xb7\xa0\x57\xec\x0d\x49\x09\x72\x28\xf9\xee\x16\x2e\x53\x8d\xfa\x05\x13\xcc\x1d\xf4\xbb\xb1\xf5\x04\x12\x17\x20\xc5\xfc\xa6\xef\xc1\xd1\x44\x3b\x07\x65\x29\xcb\x86\xcc\xc8\x75\x9d\x8e\x06\x5e\x64\x83\x34\xa5\x20\x31\xf1\xc0\x15\x22\x65\x59\x06\x81\x7a\xbc\xe2\xc8\x04\x2f\xf8\xa1\x10\xea\xde\xe2\x29\x84\x69\xa8\x70\x8c\xad\xd1\x0f\xc1\x71\xbd\xbe\x15\x8e\x4e\xf1\x9d\x38\x1e\x1e\xc6\x89\x57\x9f\xe8\x9c\x82\xdb\xf7\x15\x55\xfe\x4c\xcd\x11\x28\xe2\x8f\x9b\x42\x8f\x85\xc6\x53\xe9\xde\x9e\x1b\xad\xe9\x59\xf4\x2c\xba\x41\x8f\xe3\x2e\x2c\xa2\x2b\x58\xcc\x14\x5a\x9e\x49\x5a\x7a\x81\xde\xf4\xbe\xda\x5c\x49\xb3\x6d\x77\xc9\x9a\xbb\xb3\xb4\x40\x6a\xdd\x98\x0e\x3f\xdd\x62\xd9\x74\x16\x04\x5a\x7c\xb9\xc5\x3e\x81\xea\x94\xe0\x79\x59\x12\x2e\x12\x44\x9d\x08\x11\x54\xa7\x12\xe7\x55\x7c\xc5\x9f\xea\xe6\x09\x11\x2b\x63\xdf\xc5\x53\xc2\x30\xf4\x66\x1c\x7c\xb2\x54\x38\x61\xa3\xc0\xfa\x80\x74\x41\x0c\x4e\x03\xcb\xb8\xba\x5d\xac\x1b\x03\x4d\xca\xae\xba\x1d\x65\x1d\xcb\x9d\x46\x91\x0d\xaf\x2f\xf8\xf5\x7b\xaa\xb2\xdb\xa8\x54\x32\xc5\xec\x3a\xe5\x9a\x82\x9d\x64\xf6\x14\x9b\x2b\x60\xfb\x4d\xdf\x76\xe4\xfc\xa2\x1c\x8c\xc6\x68\x4a\x44\x5e\xcc\xcb\xc1\x7b\xf2\x6e\x49\x26\x82\x4c\x07\x74\x83\x94\x89\xae\xb2\xcc\x25\x1b\xb0\x86\x58\x65\xe8\xc9\xd6\xd0\x31\x67\x81\x91\xcb\xb6\x49\x2a\x8c\xef\x39\x58\x91\xc0\x7c\xfd\xb4\x5a\x2c\x0f\x8a\xd9\x01\x65\xe2\x60\xa1\x07\x35\xd1\x36\x26\x1c\x15\x0d\xf1\xaf\x2a\x3b\x93\x0f\x98\x48\x49\x12\x51\x77\x56\xb7\xad\xd6\x1e\xd1\x69\x6b\x5f\xda\xe9\x95\x47\x0d\x3b\xd5\xb4\xe2\x6a\x3c\x0b\xc3\x9d\x4e\x81\x3e\xea\x21\x4f\xbd\xde\x18\x64\x2a\x9d\xe5\x76\x7a\xf1\x66\x30\xa0\x01\xa7\x37\xdd\x82\x96\x4b\xc8\x51\x99\x8d\xd1\x4e\xa3\x6b\x35\xc5\xbf\x6c\x31\x91\xfa\x95\x13\x3c\x2d\xa6\x6a\x62\xaf\xed\xb4\x7a\x2e\x95\xb7\x9c\xca\xc0\xb7\xd5\x8c\x74\x9a\x99\xae\x7c\xd3\xa0\x0d\xaa\x7a\xe2\x6a\x82\x02\x5c\xec\xc8\xe0\x64\x9e\x9f\x93\x79\x62\xe2\xd8\x9d\x93\xb9\x7b\x8d\x6b\x0d\xea\x95\x52\xc2\xda\xda\x37\x9b\xca\x7b\x80\xa2\xb7\xbc\x91\xae\xd6\x22\x9d\xc8\x79\x6d\x0c\xb8\x21\x61\xef\x27\xed\x51\xb2\x5f\x4d\xf8\x7e\x32\x4e\x42\x1b\xc9\x5b\xd3\xd5\xad\x08\xca\xb7\xb2\x7c\xf8\xfb\xd7\x6e\xfc\xfc\xa7\x76\xe3\x0f\xa0\xdd\xb0\xd3\xfd\xea\x63\x68\xf3\xb4\xb4\xb7\x4d\x28\x27\x90\xca\x9b\x50\x48\xa6\xac\x62\xc7\x9c\x91\x77\xa2\xe1\xd4\xed\x6a\x14\x0e\xb7\x9c\x82\x63\x60\x1f\xb1\x85\x4a\x66\xb2\x1b\xf2\xb6\x43\xad\x07\x99\x2d\x09\xb5\x49\x52\x76\xc3\xbd\xd5\xf9\x75\x9b\xb5\x5a\x03\x0a\xd4\x3d\x0b\x1d\xfe\xb5\xf9\x8c\xa8\x65\x53\xee\x3f\x5b\xf5\x74\x63\x03\x60\xaf\x62\x8f\xe3\x9f\xd7\x1b\x00\x45\xb5\xdf\x48\x70\x34\x41\xb9\xf1\x00\x2c\xf5\x8f\xe0\xb0\x52\x64\xc3\x1c\x17\x06\x97\x41\x9a\xe3\x54\xc4\x4f\x29\x85\x3d\xa5\xc4\x8e\x26\x22\xcb\xc0\x49\xcb\x3f\x07\x95\x98\x55\xa0\x4b\xbc\xfb\x00\xd4\x74\xea\x41\xde\x20\x81\x91\x22\x59\xb0\x2a\x67\x0e\xa4\xe0\xb1\x43\xd5\xa0\x64\x70\x21\xb0\xa5\x0f\xc0\x1c\x05\x7e\x68\xbc\xac\x7d\x15\x5c\xd6\x42\x58\xb8\x2a\x9c\xac\x0e\x5f\xb1\xd7\x8b\x5e\x97\x6f\x8d\x4a\xe6\x85\x22\x53\x70\x5a\xda\xcd\x43\xa8\x9c\xf1\xb6\xc1\xd1\x18\x64\x13\x50\x02\x66\x7e\xcb\xb4\xd3\xf1\xc7\x3f\xbc\xda\x11\x55\x9c\xbe\xa6\x08\xee\x10\xd9\xce\x47\xc4\xf4\x66\x28\xaa\xeb\xf2\xef\x52\x92\x29\xe7\x9b\xef\x53\x92\x0d\xae\xf4\x45\xf7\xf7\x5b\x04\xb8\x57\x81\x00\xf7\x70\xab\x00\xa7\xfb\xba\xc3\xcc\x5b\xcf\x41\x25\xbc\xfd\x7c\x23\x7b\x6f\x5d\xf8\xbb\xd4\xf6\x39\xdb\x69\x73\xfd\x9d\x17\x23\xc2\x89\x10\x71\x4f\x54\xf7\x3a\x62\x7f\x3f\xdb\xeb\xef\x81\x73\x0e\x84\xc8\xa8\xac\xc1\xf5\xfe\xcd\x1d\x6b\x0d\xde\xe9\x50\xa3\x03\x36\x3d\x57\x39\x8e\x75\x42\x56\x59\x67\x40\xb5\x71\x78\x5b\x5b\xfd\x7d\xdd\xec\xf6\x12\x10\x28\xa1\x57\xe6\x8e\x91\x81\x4b\xaa\x7b\xb7\x0e\x3b\xc8\x33\x43\xc2\x0d\x7e\xb2\x4a\xc7\xd4\x9c\x7b\x2a\x01\x28\xca\x2f\x49\x19\xb6\x4c\xa7\x8f\xe4\xab\x4a\x9d\xcb\x4d\x0c\x20\x42\xaf\x40\x4d\x08\x0b\xe1\x64\xa9\x43\xab\xc8\xa5\xe8\xe5\xaf\x22\x3a\x4f\xee\x76\x4c\x8e\x4f\x03\x5c\xe4\x19\xf0\x76\xcd\x48\xd9\xa1\x66\x0d\x38\x35\x7a\xcb\xa6\x3e\xdb\x94\x65\x88\xb5\x9a\x7b\xcf\xb3\x41\xaa\xef\x02\x25\x3e\xb9\x01\xf6\x84\x41\x26\x2c\x44\xc1\x88\x9e\xbc\x6d\xff\x3d\x25\xa8\x80\x1e\x23\x03\xa1\xc2\x91\x85\x8e\x45\x11\xf4\x22\x03\x61\x93\x67\x37\x22\xc0\x65\x9b\x72\x67\x30\x28\x30\x3d\x1a\xad\x3a\x12\x79\x80\xc3\x6c\xbe\x2a\x2f\xe3\x31\x76\x40\x14\x13\xb2\x41\x94\x63\x97\xec\x90\xbe\xf1\xb7\x34\x67\x45\xb2\xbc\xd3\xe1\xf7\x73\x57\x2a\x13\x2e\xfb\xcf\xe1\xae\xbd\xec\x74\x52\x8a\x59\xd8\x0b\x3d\xfc\x68\xaf\x0f\x69\x82\x4d\x5f\xa8\xfd\x50\xba\x0c\x2f\xcd\x32\x85\xbb\x1c\x56\x29\xcf\x3a\xcd\x14\x26\xbf\xc4\xce\x65\x12\x4e\x07\x4c\x77\xa3\xaa\xc6\x76\x57\xac\xd7\x69\xf8\x12\x10\xfe\x41\xf2\x2a\x1d\xc2\x2f\xe4\xd6\xee\x34\x44\xad\x9d\xf4\x64\xa4\x66\x9a\xb3\x16\xef\x74\x52\xd3\x90\xee\x4b\x56\x35\x6d\x7a\xe7\x6c\x21\x90\x63\x02\x58\xf7\x27\x1f\xc2\x56\xec\x8c\x1c\x07\x96\x3b\xf6\xc3\x7f\x94\xe5\xa8\xf8\x56\x0f\x5c\x72\x16\x72\xee\x6b\x44\x2e\x20\x93\xc2\xdf\x74\x1b\xbf\x82\xfb\x44\x5a\xe4\xd1\x16\xb9\x6d\x51\xad\xbc\x8f\xc7\x88\xb6\x8d\xc4\x6f\xc0\xa4\x04\xfa\xb5\x6c\x0a\xe5\xad\x6d\x63\x97\x7e\x00\x1f\x8b\xe0\xc9\x51\x1e\xe2\xb9\x83\x95\x19\x26\x26\xf9\x59\x89\x03\xb2\x46\xab\x26\x96\x56\x4a\x96\x56\x06\x0e\x0c\xe5\x88\x8f\xf5\x6a\xcd\x6b\xec\x87\x66\xad\x15\xcc\x45\xbe\x95\xc5\xb9\x93\x61\x3e\xac\xe2\x2c\xae\xde\x46\x6d\x92\xea\xa3\x1d\x73\x58\x8d\xac\xf2\xf5\x1a\x2c\x7b\x22\x5f\x1a\x4d\x8a\xfe\x33\x8c\x32\x88\x77\xeb\xe3\x6a\xa4\xed\x6a\x46\x5b\xbc\x4a\xe1\x11\xf0\x35\x88\x48\x16\xf2\x35\xc9\x45\xb9\x15\xc4\xa9\x09\x3d\xa6\x55\x4f\xfa\x1c\x72\x27\x7a\x26\xac\x8e\x21\x88\xe3\xe4\x89\x9c\x32\x7d\x0a\x51\xa1\x43\xfe\x8f\xd1\xc2\x25\x2d\xd1\x55\x9a\x71\x47\x92\xe1\x66\x96\xcd\xb7\x2a\x4e\x91\x3a\xbf\x82\x00\x3c\x73\xa0\xba\xc6\x0f\x77\x77\x9e\x8c\x26\x73\x56\x92\x48\xcd\xa8\x97\x92\xbe\xff\xee\xeb\x9b\xb1\x43\x90\x00\xd8\xf2\x0e\xca\x1b\xce\xd7\x34\x43\x65\xc3\xa7\x22\x6b\xb1\xa1\x94\x9c\xa3\x5f\x59\x70\x04\x2c\xe5\x97\x80\x2d\xcb\x55\x8e\xca\x2c\x1b\xec\x28\x19\x9c\x16\x77\xf9\x11\xde\xe8\x8a\x14\x31\x5c\xa8\x8c\x29\xfe\x0c\x97\x38\xef\x4e\x9c\x19\x42\x2b\x9c\xeb\x95\x59\x4d\x2a\x9a\x63\xd2\x9d\x7a\xa6\x24\x68\x82\xa9\xd9\xd1\x4a\x54\xa0\x39\x5a\x65\xad\xc2\xf1\xb3\x94\x0c\xb1\x94\xc7\x95\xd5\x9c\x3c\x95\x08\xce\xe7\xfa\x3e\x88\xa7\x13\x44\x6d\x2a\x3c\x88\xed\x44\x8c\xc2\x2e\x9d\x64\xad\x59\xa7\x43\xba\x94\xbc\x85\xb7\x0c\x62\x04\xa6\xb3\xc8\xc9\xfb\xc7\x94\x21\x8a\x26\xf6\x96\xec\xc7\x2d\x57\x30\x92\x9d\xbf\x0a\x32\x45\x6d\x3b\xe2\x31\x7d\xb7\xc2\xba\x0b\x1d\x6c\x89\xca\xdf\xba\x03\xb8\x40\x4c\x6b\xc0\x15\x4e\xe6\x56\x86\x27\x88\x79\xa9\x85\xaa\xcb\x18\xb6\xe5\x10\xb8\xeb\x32\x46\xe3\x60\x2e\x64\x4c\x63\x55\xdc\xd4\x0b\x63\xdb\xe7\xb4\xdd\xa2\xd5\x3d\x4c\x91\x41\x68\x23\x77\x4e\x54\x29\x3b\x25\xdc\xee\x4b\x2e\xfa\xb4\x21\xdf\xd2\x87\xc7\xaf\x51\xf7\x0f\x7f\xdb\x66\x8d\xea\xcc\x95\x15\xea\x74\xa6\x62\xc7\x26\xd5\x98\xa4\x2a\x6b\x4d\xea\x18\xab\x42\x98\xb4\x22\x26\xc0\x85\x5b\xaa\xc3\x61\x6e\x70\x28\x73\x31\xa9\x9a\x73\xb0\x08\x70\xc8\x90\x93\xfe\xe8\xef\xdb\x7b\x8c\xd8\xae\x3e\xe7\x61\xf4\x2f\xee\x8c\x05\x0d\x13\x02\x15\xe1\x78\x30\x54\x5d\x95\x3a\x42\xaf\xa4\xf2\xa2\x29\xdc\xc4\x32\x17\x93\xcb\x26\x9a\x34\x03\x41\x9d\x3b\x58\xef\x96\xb7\x7e\x0b\x4c\xad\xac\x19\xf4\x45\xaf\x6c\xff\x98\x1d\x4e\xe9\x0e\xf1\xc8\x55\x39\xfa\x83\x61\xd2\x73\x6b\x8c\x5b\x8e\x49\xb9\xab\x66\x4c\x45\xa5\x67\x8c\x0f\x79\x78\x46\x67\x48\x44\xa7\x3c\x1b\xa4\x54\x87\x4d\xd7\xe3\xbd\x43\x5f\x79\xc3\xd6\x6a\x23\x02\x52\xfa\xb7\x9a\x75\xed\xba\xc1\x72\xf4\x68\x96\x88\xb1\x0f\xd0\xb5\x71\xf6\x26\x16\x15\xb1\x55\x13\x5c\x83\x25\xf7\x93\x7d\x08\x85\x2b\xc5\x92\xae\x60\xcf\xd8\x5b\xc2\x1f\xe5\x25\x49\xb3\xfd\xa4\xfd\xe9\x57\x49\xb6\x91\xb2\x08\xf8\xe7\x43\xbf\xab\x40\xf1\xef\x35\x46\x83\x02\x55\x89\xa8\x18\x38\x0c\x0e\x38\xb2\xf8\x99\x6b\xf7\xc4\x8e\x55\xb2\x19\xdc\xb4\xae\xbd\x0f\x11\x4a\x73\x15\x81\xe5\x4b\x47\xdb\xed\x9f\x8c\x5d\x9d\x92\x27\x6a\x76\x1d\x95\xbe\x7e\x87\xa8\xd1\xa8\xca\x2f\x6d\xcc\x43\x57\x84\xc8\x11\x43\x25\xda\xdb\x73\x54\xfb\x77\xb6\x1b\xa1\x54\x06\x80\x0d\x08\xb2\x5b\x62\x91\xca\xd3\x87\xf2\xbb\x87\x9d\xf4\xdb\x2d\xd6\x29\xaf\x02\xeb\x94\x6d\x7b\xae\xb1\x4e\x01\xb6\x73\xa0\x71\x08\x8d\x54\x98\x61\xcf\xae\xa1\xca\x4d\xb7\x54\xad\x67\xd0\x10\x14\x7f\xd3\x26\x6a\xb7\xb0\x43\xd1\x3b\x5b\x65\x94\xa2\x3b\xf0\xde\x98\x8b\x04\xcd\x28\x60\x69\xa6\xae\x85\x89\xde\x13\xcd\x5e\x58\xe9\x70\xff\xf1\x51\x4d\xe8\x09\xf9\xfd\xdf\x32\x0b\xf2\xe7\x35\xf3\x1f\xe0\x9a\x59\xdb\xce\xdd\x2a\x5a\x87\x39\xd7\xf8\x86\xe6\xef\xa7\x36\x4a\xed\x80\x22\x2d\x26\x0f\xa8\x15\x98\x27\x26\xc2\xad\x8a\x5c\xe3\x58\xd6\x7e\xb1\xc5\x64\x96\x1a\x93\x59\xe5\xd4\xe3\x88\x09\x34\x1b\xaa\xfe\x0e\xa2\x5b\x3a\xe8\xa4\x8a\x61\xa1\xf7\xb7\x81\x15\x9f\x8d\xed\xad\x8b\x2f\xb3\xf8\xb2\x46\x7c\x51\x21\xcf\x42\xb5\x1b\xc7\xc2\x8d\x32\xb3\xeb\x1a\x19\xfa\xd4\x7a\x61\x82\x20\xa0\xbd\x3d\x6e\x15\x02\x2f\x1c\x38\x51\x13\x65\xa3\x6b\x42\x25\x5a\xa1\x39\x9a\xa0\x19\x5a\x6a\xd8\x97\x76\xbc\xa6\xbe\x71\x39\x84\x4c\x9b\x76\xab\xae\xa2\x2b\x3c\xb5\x5d\xbc\xc6\x97\x7a\x70\x2f\xf0\x55\x77\xc9\xc9\x32\xe7\xe4\x01\xbf\x28\xd3\x05\xba\x86\xd4\x1b\x17\x2a\xe0\xfa\xb5\x3d\x4c\x72\x7c\xe1\xfa\xe5\x53\x7c\xa1\x9c\xe9\x51\x51\xf9\x9d\x31\xdc\xbb\xc7\xee\x17\xf7\xd8\xfe\x7e\x76\xa9\xb5\xc7\x23\x36\x56\x74\x7f\x69\xa2\xcd\xa0\x12\xa7\xb9\xa1\xf4\x37\xe4\xba\x4c\x69\x96\x19\x10\x3a\x57\x7e\xef\xde\xfc\x7e\x79\x6f\xbe\xbf\x9f\x4d\x30\x1d\xe5\xa3\xf9\x78\x8c\x66\x38\xf9\xdf\x64\x5f\xfe\x46\x1a\xd6\xa4\xca\xa0\x9e\xb5\xf4\xbb\x55\x86\xae\xf5\x30\x5f\xa2\xbd\x7e\xb6\xb9\x34\xc6\xfd\x55\x84\x9a\x06\x35\x85\x63\xba\xab\xf6\x6b\xe7\x5e\xdc\x3f\xc7\xaf\xea\x47\xf1\x39\x96\xf2\x26\xf7\x67\x81\x65\x99\x3b\x05\x39\xe6\xd5\x31\x52\x9e\xde\xf3\xca\xa3\x81\xd0\x2b\x44\x61\x86\x9d\x80\x3d\x68\x6f\x2f\xed\x77\x8a\x2c\x6b\xcd\xbb\x96\x2c\xf1\xa4\x7e\x0c\xe7\x24\x2d\xf5\xe6\x0c\x72\xe3\x04\xe5\x68\xe5\x10\xe8\xe7\xbb\x6c\x64\x3d\xbf\x04\xb0\x95\x35\x88\x4a\x51\xd1\xb6\x8d\x72\x5c\x04\xca\x02\x96\xb5\xf2\x88\xb2\xc0\x89\xeb\xf4\xf9\x67\x7e\x68\xe1\xee\x39\xb9\x28\x28\xac\xd6\xaf\x39\x5b\x2d\xd3\xc8\xcd\xbd\x8a\x4c\xac\x0c\xda\x1d\x48\x87\x01\xa4\x20\xb2\xcc\x27\xa9\xb5\xd9\x35\x35\xb6\x07\x0a\xba\x4d\xc7\x93\xc7\xc5\xf4\x11\x4c\x57\x93\x26\xae\xe8\x4e\x83\x22\x29\xf3\xbb\x16\xd1\xc6\xe5\x59\xac\x88\x73\x02\xce\xdd\xee\xec\x32\xd5\xf7\xba\x13\x84\xde\x31\x3d\xb3\xf4\xe5\xf4\xcf\x6d\x63\x97\x5f\xd0\xf6\x21\xf3\xe8\xdd\x69\x21\x8c\xe8\x34\x87\xe0\xd7\x4f\x24\x05\xa1\x1c\xd5\xe6\x6d\x17\x47\xbd\xf9\xbc\x85\x36\x1d\x9a\xa8\xd4\x6c\xa9\x78\xe9\x2a\x10\xb7\x44\xc4\x68\xcd\xec\x44\xa6\x0c\xc5\xec\xec\xa9\x92\xc0\xbd\xb9\xf9\x3c\xae\x37\x9d\xb0\xc5\xa2\x10\x2e\xb9\x6b\x99\x9d\x93\x46\x5b\x08\xc3\xf0\xb3\xf7\xff\xf0\x84\xf7\x15\x26\x24\x26\xbd\xaf\x94\x0a\xa2\x40\x2b\x87\x4f\x30\xb4\xb2\x9a\xb3\x1c\xad\x3c\x8e\x85\x4b\xb4\xf2\xb5\x67\xb6\x9e\xca\x57\x3b\xc7\xb9\xa4\x93\xb3\xfc\x42\xae\x70\xdd\x99\x15\x1c\x03\xe6\x43\xd7\xd8\x22\x4b\x47\x14\xcd\xc7\xd9\x80\xa2\x95\x39\x0b\xc0\xa5\xcf\x0d\x2c\x64\x1d\x81\xbe\x9a\xb1\xb8\xbe\xcd\x45\xbe\x25\x6c\x1a\x22\x14\x9a\x34\x7f\x80\xd5\xa8\x1c\xba\x9b\x5b\x20\xd3\xed\xb3\x16\xce\x58\xde\x30\x63\x7a\xa4\x72\x47\xb7\x99\x3b\x73\x57\xa0\xbc\x7b\xae\xb2\x13\x30\x94\x3b\x16\xca\x7a\xb6\xd4\xea\x49\x50\x1e\x33\x0e\xce\x6f\x37\x0f\x5b\xf5\x9c\xd5\xbc\x68\x5d\x84\xc2\xaa\x05\x26\xcd\x4a\x45\xa9\x57\x0f\x47\xd4\x59\x3d\xea\x93\x32\x4f\x0b\x0f\x59\x05\xf9\x58\xf1\xae\x18\xd9\xee\x62\x5f\x10\x5f\xbf\x27\xe5\x1e\xaa\x12\x0b\x6a\x35\xd2\xac\xe0\xa5\x4d\x39\x37\xcf\x4b\x11\x37\x82\x56\x15\x35\x97\x6f\x32\x74\xae\xa0\x07\x6a\x33\xd9\x86\x9f\xcd\xd0\xaf\x08\x05\xfc\x3a\x12\x95\x6d\x55\xe4\x77\xad\xe6\xcc\xb7\x0c\xc2\x4d\x86\x80\xca\xdf\xd1\x6c\x85\x1f\xb7\xd7\xb4\x56\x65\x57\xa7\x75\x0d\xcf\x90\xbb\xd4\xc4\x65\xf2\x05\x41\x66\x27\x1f\xf3\x54\xdd\xcc\x58\x84\xb4\x49\xa4\x69\x4d\x45\xad\xbc\x97\xab\x7c\x42\x1c\xe7\x60\x37\x7f\x5a\x9c\xcf\x0b\x7a\x11\x66\xd5\xcc\xd5\xf5\x32\xc6\xcc\xe4\xf8\xe1\xad\xbc\x1a\x3d\x38\x42\x58\xdc\x56\x24\xcc\x64\x54\xc7\x8c\x06\x98\x15\x3e\x66\x0c\xd3\x7b\x4c\x61\x26\x30\xf3\x30\x33\xb9\x39\xc1\xfb\x39\x65\xb2\x2c\xc6\x85\x4d\x9e\xd7\x62\x55\x8a\x7a\x1f\xad\xf9\x7f\x81\x5a\x62\xf2\xa7\x5a\xe2\x8f\xa0\x96\xb0\xf3\x3d\xfb\x68\x7b\xc4\xb2\x91\x3d\x66\xef\x67\x01\x73\x04\x56\x28\xa2\xd7\x58\x37\xe4\x66\x92\x21\x5f\xfe\x26\x2d\xde\x9c\x19\xa2\xe9\x2d\x1a\xd4\x52\x46\xb4\xc9\x1b\xf1\x7b\x05\x20\xe4\x63\xb7\xe4\xfd\x1a\x88\xc3\xf8\x6e\xb7\x13\xe8\xfa\x15\xa3\xf4\xab\x37\x65\x3a\xd7\x9d\x37\xe3\xb6\x68\x1a\x37\x7d\x23\x1a\x8e\x9d\x7b\x69\xef\x5c\xe8\x59\xb5\xb3\x6b\xda\x46\xdc\x14\x53\x2a\x55\xf8\xa9\x0a\xa3\x78\xa9\x3d\xb3\x34\x1f\x6f\x28\x71\x2e\x8f\x2d\x0d\xdf\x08\xbd\x32\x22\xcb\x94\x2d\x54\xca\xce\xfa\x4d\xaa\x2a\x10\xda\x15\xa8\xd2\x8f\x4f\x9e\xa7\xc1\x9d\x27\xad\x61\x66\x6e\x34\x75\x6e\x25\x07\x86\xc4\xe8\x6b\x9b\xb4\xb4\x76\x80\xaf\x8f\x80\xb6\x85\x71\x5e\x67\xf1\x81\x70\x0a\x3a\x9f\x9c\x84\x2e\x33\xc6\x9f\xaa\x6d\x48\x9d\xe5\x9c\x14\x09\x5e\x40\x56\x89\xa2\x91\x03\x37\x90\x16\xb2\x5c\xb9\xf3\xed\x1a\xcc\x61\x5b\xb8\xbe\x3d\xbb\x81\xc6\x57\xe5\x25\xf4\xf0\x8c\xe7\x93\x37\xda\xe4\x23\xc8\x08\x54\x3b\xf0\x37\x51\xb0\x4b\x4b\x31\x18\xce\x68\x37\x40\xa8\xc8\xce\xaf\x0f\x94\xd3\xb8\x70\x2c\x59\x99\x1c\xa0\x7e\xe5\x25\x5b\x46\xd6\x7f\xfd\x1e\xf3\xd4\x0d\x09\x1a\x4e\xa2\x12\x74\xe0\x62\xcb\xfa\x75\x2b\x4d\x9a\x47\x71\xc4\xe6\x69\xad\x51\x9e\xa8\x12\xd7\x06\xf8\xf9\xb4\x56\x47\x52\x4e\xe5\x95\x6f\x38\xe0\xe7\xb3\xaf\xcd\x22\xc9\xc2\xac\xf6\xb2\x88\x4d\xc5\xb8\xa5\x9d\x8b\xdf\xa0\x1d\xb7\x48\xe4\x8c\x56\x0b\xee\xd8\x8f\x06\x77\xec\x8f\x3b\x1d\xf7\xc9\x1c\xe7\xea\xd3\xdd\x72\x44\x42\xe5\x71\x90\xf2\x50\x99\x27\xf9\xdd\x7a\x0d\xaf\x55\xca\xbc\x94\x18\x7b\x68\x07\xa0\x31\x74\x6b\xea\x14\x58\xea\xd5\x7b\x24\x07\xee\x3c\xb0\xec\x20\xd9\xaf\x43\x58\x64\xc8\xc5\x56\x34\x61\x2b\xb9\x4e\x8d\xde\x6b\x13\x5c\x5b\x2f\x69\xd6\x9d\x15\x34\x9f\x17\xbf\x10\xd7\x69\xd6\x85\x2e\xa9\xdb\x87\xec\x78\x6d\x45\x4d\x10\x9d\xbb\xf1\x38\x97\x1d\xd8\x33\xf8\x94\x2d\xb4\xe8\x69\x5d\xdd\x50\x33\xe1\xf9\xbb\x54\x6d\x8b\xe2\x88\x46\xac\x3a\x6e\xb4\xe8\x6d\x3e\x6f\xa7\x85\x96\xc5\x30\x48\xb4\x5c\x5f\xd5\x1f\xb0\x8b\x2e\x1d\x93\x45\xa1\x0c\x3d\x90\x37\x2f\xae\x6f\x5c\xe8\xbb\x51\x73\x09\xfb\x35\xeb\x6b\xe8\x3e\xa8\xb8\xf2\x35\x0c\x49\x95\x16\x48\x52\xf9\xb5\x5c\x49\xad\x38\x33\xe0\x68\xaf\x17\xa2\x1b\xf8\x9f\xd5\x7c\xcb\x2b\x65\xa6\x09\xda\xbd\x6c\x90\xbf\x96\xb1\x19\x75\x12\xdb\x19\x06\xdc\xb4\x51\x93\xfa\xee\x8c\xeb\xf3\xe9\x2d\xac\x30\xf7\xb3\xbb\x3e\x23\x82\x98\x9e\xbe\x1a\xe3\xa9\x81\xd1\x39\x3b\xb7\x41\xb0\x3c\x2a\x30\x02\xb6\xbe\xac\x4d\xba\xaf\x29\x5b\x40\xac\x1e\xb5\xb6\xce\x4c\x76\x60\xe2\x6c\x5b\x1e\x51\x7b\x6b\x81\x37\xd1\xb7\x83\x99\xc9\xed\xce\x63\x98\x69\x77\xd8\x9b\x21\x67\x7d\x67\x3f\x36\x6e\x75\xd3\xd8\x28\x05\x85\xb7\x16\x49\xbd\x5e\x92\x45\x1c\x25\x52\xa7\xba\x77\x2f\x12\x05\x80\x48\xcd\x21\x2b\x66\xe4\x1b\x0f\xa2\x7d\x13\x1c\x8f\x4f\xa3\x58\x1e\x9f\xde\x06\x4f\x09\x04\xc5\xbc\xd4\x22\x86\x3c\xb7\x40\x35\xac\xaa\x30\xad\x59\x06\x6d\x43\xb4\x0e\xe2\xa6\x78\x6e\x71\xa7\xbb\x09\xae\x66\x5c\x23\xd6\x54\xb7\xc1\xb7\x1a\x59\x54\x0b\x9f\xeb\xd8\xa4\xd7\x38\xa5\x21\x73\xdf\x70\x3d\xca\x35\xe5\x39\xf0\xea\x16\xe7\x67\x75\x40\xf0\xd5\xc7\xd5\x7e\xa5\x34\xc8\xf6\x71\x5a\xf1\xb6\xd2\x8b\xcb\x51\xc2\xe6\x17\xf5\x0b\xd6\x75\x22\xd9\x88\x70\x0d\x66\xab\x98\x29\x65\x94\xce\xdb\xe6\xa4\x28\x72\x23\xa0\x8a\x11\x19\x9b\x7a\xb5\xad\xe2\xe6\x3a\xde\x0f\xd1\x6a\x6b\xeb\x53\xf8\xfd\xe1\xc7\x7d\xf9\x5d\x43\x92\x3f\x1b\xcf\xfd\x71\x99\x4b\x13\x85\xe1\x79\xd5\xe6\x06\xb3\xb0\xbf\x7f\x0b\xc2\xd2\x75\x0e\x0e\x6a\xfb\x94\x8f\x3e\xc9\xde\xf7\x8c\x4b\x8c\xae\xd3\xe9\xa4\xd5\x50\xac\xd7\xa9\x4b\x3f\xe4\x6d\x7b\x49\x2a\x21\x5b\x51\x11\x79\xdb\xbe\x84\x97\x37\xd9\x13\x6f\xd1\x1a\x71\x5b\x89\xec\xb8\x5b\x37\x6e\x8f\xa2\x6b\x6f\xd6\xeb\xd1\xb8\x4e\xf9\x46\xa6\x08\xe9\x47\x49\xd4\xf5\x36\x34\xce\xc1\x3e\x99\x26\x89\x59\xaf\xd7\x8d\x77\x72\x96\x6c\xcc\xb2\x15\x19\x9a\x93\xed\x29\x1a\xcd\x22\x9c\x44\x6e\xcf\x22\x8b\x31\xb2\x56\x9d\x9b\x3e\xb4\xd2\x47\x04\xb8\x05\xbb\x22\x19\xba\xf8\xb7\x21\x0b\x19\xba\x9b\xa3\xe0\x87\x8c\x83\x77\x3a\xdc\x65\x1c\xca\x73\x9d\xbb\x9e\xeb\x10\x32\x4a\xd3\x43\xca\x47\x62\x6c\x6c\x4a\x4d\x2f\x5b\xb5\x05\xff\xe1\xcc\x50\x9e\x4b\xf4\x98\x9d\x6f\xbd\xd2\xda\xce\x92\x41\xc7\x07\x67\x4f\xbe\xe3\xf3\x0d\xb9\xaf\x5f\xad\x3b\x63\xfc\x28\x9f\x5c\x02\x2b\x89\x1a\x00\x54\x8c\xf6\xa3\xb2\x5a\xe7\x78\x56\x21\x77\x49\xf2\x69\xa5\x75\x21\x9d\x0e\xb9\x1d\xd3\x8d\x02\x15\x79\x31\x0f\x80\xde\x8a\x01\xab\x7c\xd8\x5d\x15\x01\x2f\x4b\xf7\xfa\xc8\x28\xef\x9d\xe2\xed\x69\xc1\xc9\x44\xcc\xaf\xdb\x05\x2d\x8b\x29\x69\xe7\x6d\xd8\xc5\xdb\xf3\xa2\x14\xc9\x0d\x37\xff\xa6\x76\xdc\xf2\xb7\x6a\xa8\xc6\xd8\xb7\xb4\x01\x72\x7a\x3b\x07\xcd\x23\x65\x53\x72\xdb\x86\x42\xae\x1e\x86\xd9\x6a\x62\xcd\x61\xb9\x3a\x63\x85\x12\x9b\x54\x2d\xde\xd7\x04\x27\x8f\x4e\x9e\xbf\x38\x39\x3e\x3a\x3e\x6b\x43\x26\xf9\xa7\x67\x4f\x4f\x8e\xdb\xa3\x62\x8a\xc9\x67\x7f\x9d\x7c\xf1\xd9\x5d\x72\xf0\x79\x9f\x9c\x1f\xdc\xbd\xf3\xd7\xc3\x83\x2f\x27\x77\xf3\x83\xc3\x49\x2f\x9f\x7c\x71\x78\x3e\x9b\x4c\xef\x8e\x93\xea\xf6\xf5\x2d\x71\x12\x0f\xea\x8b\xbe\x2a\x29\xaf\xbd\xa5\x93\x34\x33\x7a\x4d\xc6\xd5\x7d\xcf\xbb\xff\x82\x3b\xc8\xa3\x3f\xef\x20\xff\x50\x77\x90\x27\x1f\xe5\x0e\xd2\x82\x3f\xbd\xf1\x5a\xa9\xa8\x0d\xbb\x29\x3c\xbf\x39\x7b\xfe\xac\x02\xf7\xe8\xe6\xe0\x6a\xd9\xb2\xe1\xf2\x50\xf6\xa3\x02\xf7\xc0\x05\xa7\x2c\xa6\x9c\x0a\x70\x93\xfa\xa6\x62\x29\xea\x6c\x74\xd2\x74\xb7\x58\x31\x88\xe7\x3a\xb0\x0a\x8c\xea\x03\x92\xd2\xcc\x18\x28\x9c\x11\xad\xc0\xd0\x05\xa4\x48\x72\xea\x16\xf8\x29\x52\xe0\x91\x5b\xe0\x38\x2c\xa0\xe2\x9b\x4a\xfe\xbc\xa2\x9c\xe4\x93\x4b\x49\x13\x59\xea\xcc\xc1\x8b\x46\x74\x5e\xfe\x76\xad\xc9\xb1\x3a\x6b\x94\xfa\x54\xee\x0f\x12\xc4\x3e\x7a\x57\xb7\x1a\x43\xdc\x8b\x5f\xa9\xb5\x53\x6e\x6c\xa3\x23\x2b\x04\x2a\xcc\xdc\x23\xbb\x73\xbb\x45\x42\x05\x57\x75\xa9\x45\x7c\x25\x12\xb7\x1a\xa4\x02\x14\xea\x8e\xfa\x08\x2e\x21\xc1\x16\x32\xf7\xca\x65\x72\x25\x79\x62\x68\xed\xf2\xb5\x8a\xef\xbb\xb7\xf7\x40\x87\x99\x00\x7a\x31\x7d\x02\x72\x04\xe3\x4e\x2c\x94\x5e\x54\x6c\xd2\x37\x24\x43\x2f\x77\xcb\xce\xd5\x48\xa2\x77\x37\x94\x9d\x77\x0e\x9b\x73\x85\x28\x52\x33\x44\x72\xf5\xd5\x86\x89\xfb\xb6\x42\xa1\xcf\x6e\x74\x28\x2c\x93\x6c\x85\x83\x42\x6d\x0a\x77\xb5\x92\xb2\x88\x1d\x93\x32\x80\x75\x97\x5b\x04\x41\xaa\xc2\x60\xb8\x43\xf9\xd3\x6f\x4d\x90\x52\x04\x54\x0e\x6d\xdf\x6b\x77\xe0\xdb\xd2\x25\xd5\x3c\xad\x92\x2d\x6f\x3d\xe2\x37\x25\x3f\x67\x63\xb2\xa3\x7e\xaa\x47\x1d\xf2\x9a\x1a\x4c\x32\x93\x12\x27\xe8\x1e\x44\xe3\x48\xe9\xf6\xd9\x61\x72\x76\xe8\xce\xd9\x29\x10\xb3\x91\x53\xc2\x51\xe4\xfe\xac\x1d\xff\x47\x17\x40\x23\x77\xa0\x71\xee\x10\x5b\xf2\x6d\xcd\x32\x40\x93\xeb\x82\xf8\xc0\xb5\xf2\xe8\x37\x59\x2b\x92\xeb\xd8\xb5\x02\x5c\xcc\x19\xf5\x6a\xf7\x7a\xf6\x5f\x20\xa5\x3e\xfe\x53\x4a\xfd\x43\x49\xa9\x4f\x3f\xae\x94\xfa\x84\xb8\x01\xfe\x55\xc4\x49\xb2\x5e\x57\x18\xaf\xd7\x5b\x33\xcc\x57\x90\x7e\x71\x21\x01\x58\x3f\xfb\xbc\x2d\xf8\x4d\xb4\x20\x08\xa4\x43\x32\x38\x55\x7f\x2d\x87\x1e\x3c\x32\x1f\xea\x90\x1e\xee\x86\xb4\x5e\xd7\xeb\xeb\x70\xad\xdb\x92\xb0\x34\xb8\x46\x5a\xf3\x7a\x09\x46\x6d\x9d\x3f\x37\xe9\xae\xb2\xf7\x4f\xad\xbc\x7c\xb3\x40\xdb\x0d\x41\x63\xf5\x2e\x44\x19\x5f\x68\x9b\x04\xc9\xec\xb4\xef\x1a\x33\x21\xf9\x43\x3f\x4a\x91\x0d\x69\x15\x78\x95\xc5\x03\x24\x50\x1b\x20\xc1\x78\x33\xf8\x81\x6b\xa0\x61\x23\x06\x37\x47\x56\x44\xb9\x64\xa9\x2b\x68\x63\x4a\x52\xcb\xa3\x5b\xb9\x73\x5f\xbb\xca\x10\x0b\x5c\x2d\x45\x65\xb1\x06\xcf\x04\x09\xc4\xd0\x0a\x95\x36\x28\xdd\xab\xdd\x1b\xe2\xd3\x6a\x43\x7c\x76\xc3\x0d\xf1\xb1\xdd\x10\x15\xdf\x8a\x45\x5e\xd0\xb2\x49\xcd\xff\xe4\x21\x63\xf3\x58\xf9\xb7\xea\x3a\x5b\x6c\xd2\xf3\x0c\xfd\xb0\x4d\xfa\x42\x45\x45\x1a\x36\x52\xce\xb3\x6d\x6e\x24\xcc\x26\x8e\x60\x66\x67\xa3\x88\x75\x57\x4b\xd8\xcd\x21\x52\x8e\xf5\xdf\x67\xf5\x4e\xde\x84\xe6\xfc\x88\x67\x37\x09\x35\x92\x67\x55\x60\x5a\x85\x94\xa1\x54\x85\x17\x98\xb6\x4f\xd9\x02\x39\xef\x8c\x63\x4f\x81\xf2\x6c\xbd\xd6\x54\x19\xea\x7b\x43\x17\x86\x30\x32\x8d\x63\xa4\xc0\x37\xa9\xa8\x09\x02\x2b\x02\x16\x41\x1e\x32\x37\xa6\x64\x70\xfa\x42\x16\x51\x6a\x48\xf9\x57\x45\x2f\xf0\xb2\x68\x84\xa1\x0c\xde\x57\x21\x35\x1a\x13\x6a\xc4\xe3\x1a\xa0\xef\xb7\xac\x8e\x80\xc2\x38\xde\xb5\x38\x6c\x36\x62\xed\x8e\xc4\x96\xa2\x58\x14\xbf\x90\xe9\xc1\x24\x5f\x89\x82\xad\xca\x03\x75\x41\x93\x20\xbe\x8d\xc6\x2c\x9f\x8a\xac\x12\x20\xa2\x45\xbe\xcc\x52\x82\x1e\x86\x6b\xab\x2e\x9c\x02\x39\xe8\xa6\x9e\x57\x91\x61\xeb\x62\xa4\xe4\x1e\xd1\xf8\x82\xce\x62\xfe\xce\xd8\xf9\xc2\xe8\xfd\x4c\x32\xf4\xdd\xbf\x79\xf8\x14\xae\x3b\x86\xef\xe6\xa3\xb0\x49\x7f\x20\x19\xfa\xfa\xdf\xd3\x09\xc1\x57\xea\x2a\xf4\x37\xa5\x81\x6f\x6e\x47\x03\x2f\x7e\x2d\x0d\x7c\x52\xa3\x81\x4f\xfe\xcd\xc3\xf7\x1b\xd0\xc0\x8b\x90\x06\xaa\x03\xcc\x8f\x5a\x58\x94\xc2\x0b\x9b\x4b\x40\x33\x96\x26\xaf\x4a\xd2\xfe\xd7\x84\x51\x41\xde\x89\x7f\xa1\x76\x4e\xa7\xed\x7f\x5d\x10\x91\xde\x5f\xe6\xe2\xf2\xab\xec\x5f\x6d\xc1\xda\x53\x72\xbe\xba\x80\x2b\xa9\xb6\x20\x8b\xe5\x3c\x17\xa4\x9b\x64\x48\xa8\xc3\x8e\xf6\xad\xf8\x1b\xc1\x3f\x12\xf4\xf7\x1d\x66\xf4\x3a\xa6\x27\x2a\xd1\x0a\x24\x6a\x5f\xca\xfa\x6d\xe5\x58\x7f\xa7\x28\xc1\xf7\xd5\x78\xf7\xb1\x49\x3e\x2f\xfd\x2c\xac\x3a\x84\x81\x11\xee\xd9\xfe\x7e\x56\x62\x3a\x4a\x73\x5c\x8c\xd8\x38\x3b\xe8\x8f\xd1\x4a\x59\xcc\x9f\x5e\x2f\xce\xd9\x3c\xcd\x33\x17\xd8\xa8\x1c\xe3\x55\x4c\x96\xdb\x92\x32\x17\x70\xb2\xe9\xa4\x01\x8c\x8a\x19\xb1\x9c\x17\x22\x4d\xe4\x20\x17\xfe\x23\xc3\xc5\xa8\x37\x06\x5f\x7c\x93\xc3\x59\x8a\x62\xb2\x91\xa3\xab\x7c\x6e\x42\x12\xac\x8c\xe4\xa7\x95\xb8\x30\x4f\x18\x63\x36\x5c\xa9\xc2\x2a\xc8\xc0\x80\x8f\xd8\x78\xb8\xc2\xf2\xcf\x40\x4a\xf4\xcc\x46\xe9\x4c\xfe\x37\xc9\x3a\x9d\x52\x7d\x97\x7f\x06\xe9\xca\x41\xda\x09\x54\x90\x63\x9a\xa1\xbc\xcb\xc9\x74\x35\x21\xf1\x73\x3f\x14\x07\xc3\xc0\x95\x1f\x02\xf3\x8b\x0f\x8a\x9d\x64\x83\x2c\xd6\xc2\x3e\xa9\x34\x83\xd4\x46\x7d\x25\x29\x51\xf8\xa6\x19\x78\xe8\xb6\xfe\x26\xdf\x58\xdc\x6d\xbc\xb1\x88\xcc\x96\xab\x7c\xce\xb6\x8c\x13\xbd\xe4\xf3\x2d\xc9\x1c\x22\x09\xff\x0c\x84\xae\x5d\x3c\x79\xf9\x22\xe7\xa2\xc8\xe7\xa9\x8d\x9e\xf8\x2d\x41\xff\x20\x88\x88\x66\xeb\xa3\x8f\xba\x56\xb2\x48\x02\xea\x2a\xe3\xb8\x44\x76\x96\x4f\x44\x83\xaf\x50\x43\xde\xfe\x3d\xbf\x6e\xb7\x28\x8f\x16\x4b\x71\x6d\x4c\xad\x2a\xce\x24\xc4\xc7\xcb\x77\xf2\xd9\xdd\x1b\x46\x9a\x11\x4e\x86\x0c\x29\x02\x16\x42\xe9\x21\x9e\x30\x9e\x52\x64\x43\xd3\x19\xd2\x72\x8e\x4b\x4f\x65\x49\x1d\x0f\x43\xcf\x79\x6e\x63\x68\x83\x3b\x89\x48\xf3\x6a\x1c\xdc\xe0\x31\xdb\xf3\xc0\x42\x42\xca\x67\x45\x29\xbc\xa4\x94\x77\x9a\x93\x52\x42\x59\xa7\x68\x34\x74\xa9\x13\x94\xd5\x9e\x25\x41\x94\x04\xe9\x39\xcd\x5a\x85\x0a\xb3\x0a\x03\x20\xe5\xf1\xee\x82\x2c\x98\x19\x01\xe5\xe7\x2d\x08\x7f\x2a\xc8\x22\x2d\xba\x6f\xc8\x35\xe2\x10\x53\x15\xd2\x8c\x41\x2e\xcf\xf4\x1f\x04\x7f\x4b\xd6\xeb\xf4\x5b\x82\xdf\x6f\xb2\x6c\xf4\x0f\xd2\x3d\x59\x12\xfa\xc8\x38\x94\x9b\xeb\xfa\xde\x18\x27\xb1\x0f\x09\xfa\x07\x91\x95\xc2\xb0\x1b\xb8\x3f\xae\xc7\xe2\x70\x0a\xbb\x21\x1d\xf0\xa1\x2a\xeb\xbe\x33\x45\x4d\xd6\xbf\x23\xab\xea\xc2\x77\xc6\x38\xa9\xbf\x56\x01\x11\x9c\xed\x56\x2d\x45\x21\xfc\xe5\xa2\xd2\x6a\x62\xb1\x41\xd4\x2f\x0a\x56\x9d\x0d\x85\xf5\xb6\x04\x7b\xc9\x19\x5c\xe3\xf3\x0d\x2a\x9a\x18\x80\x3b\x7f\x8e\x2e\x4a\x04\xa1\xa4\xc5\x88\x8f\xb3\x6e\xa5\x45\xc3\xd4\x79\x58\xaf\xf7\xfa\x88\x7a\xfa\x27\xbc\xd7\x43\x09\x4c\x6c\x52\xd0\x36\xed\x74\x52\xda\x35\x5a\x37\xbc\xd7\xcb\x50\xa3\x3e\x0a\x66\x9e\xda\x63\xb3\xc5\xda\x77\xbd\xe2\x9d\x0e\x49\x5d\xb5\x1f\xcf\x10\x85\x77\x88\x66\x48\x6c\x3c\x3e\xc0\x3e\x0a\x1f\x00\xe5\xc5\x16\xbe\xca\x44\x24\x82\x7d\x8c\xcd\xbd\xe5\xf9\x52\xd3\x56\xcd\x4e\xad\xa0\x94\x28\x4b\xff\x52\xd8\x90\xfb\xa8\x66\xe7\xc6\xd9\xa2\x06\xc1\x1a\x52\x57\x30\x56\x2e\x8c\x9a\xd9\xb3\x4e\xf1\xda\x64\x35\x04\x60\x4c\x21\xc9\x6c\x0b\x51\xa5\xb5\x17\xf9\x45\x2d\xad\x7d\xbd\xb2\xc8\x2f\x36\x1b\xa4\x6a\xe4\x42\xf0\xf2\x06\x75\xa0\x5c\x95\xa1\xbe\x6c\x1c\x71\xb9\x26\xa2\x63\x6e\x6e\x41\x60\x7c\x78\xb5\x11\xc9\x11\x99\x3b\x61\x58\x95\xcf\xe1\x24\x3a\x47\x91\xb1\xd1\x16\xb3\x46\xcc\x82\x68\x4b\xd8\x69\x0a\x15\xf8\xbd\xd9\x99\x9f\x13\x91\x0f\x68\x77\x41\x44\x8e\xd4\xca\x2c\x07\x54\xaf\xd1\x12\xd9\x6d\x7b\xb0\xd7\xdf\x98\xb0\xa6\x22\xbf\x00\x2f\x4a\x9d\xcb\xd7\x6a\xc6\xf4\x7b\x9d\x88\x57\x8a\x64\x8d\x57\x22\xd7\xc2\x5c\x89\xa0\x02\x2e\x9b\x57\x92\x2f\x73\xf1\x2c\x3f\x27\x73\x50\x3c\x0c\xd3\x95\xce\xc0\x9c\x77\xcb\x7e\x86\xce\x44\xca\xd0\x2a\x43\x2b\xc8\x1e\x2d\xff\x42\x56\x67\xf5\x71\xd5\x15\xa4\x14\x69\x52\x82\x6f\x5c\x22\x5f\xfc\xb4\x5a\x2c\x5f\xd1\x39\x29\xcb\x34\x79\x78\xf2\xf8\x47\x78\xe9\x02\x54\xc1\xb4\x2c\x1f\xf6\xd4\x1e\x2b\x30\xe5\xd2\x1d\xb4\xaa\x94\x6c\x50\x76\x3a\xe9\xee\x7a\xba\x82\x3c\x81\x39\x5f\xcb\x2c\x43\x6c\xbd\x2e\x55\x48\x84\x55\x3d\x7a\x52\xde\x2d\x7b\x19\x22\x55\x60\xf5\xb2\x7b\xbe\x9a\xcd\x08\x47\x91\xac\x3a\x4f\x45\x4a\x46\x62\x8c\x56\x59\x6b\x15\xc6\x36\x5f\xa9\xa4\x83\x4e\xbf\x55\xae\x62\x3d\x31\xb4\x9b\x97\xda\x93\x26\x32\xce\x3b\x86\xf2\xe8\xf8\x31\xbc\xf3\x6d\xcb\x61\x64\xc2\x97\xc8\xe2\x61\x2a\x85\x21\x88\x54\x8f\x99\xac\xea\x4d\x66\x29\xd8\xd2\x50\x82\x8e\xcf\xa3\xe9\xa3\x8a\xcd\x63\x5d\xd2\xd4\xf5\x1b\x15\xe9\x1c\xbd\x97\x54\x3c\x28\xd0\x65\x5e\xca\xa3\xc1\x80\x76\xf5\xaf\x3a\x65\xcb\x2d\x61\x92\x8b\x74\xf4\x5a\x8c\x95\xa9\xa2\x5c\xc2\xab\x2d\x4b\x58\xb2\xf8\x2d\x8b\xd8\x86\x8e\x39\x76\x42\x45\xeb\x95\x4d\x7f\xdd\x4a\xb6\xab\xb8\xe5\x5b\x85\x4b\xd8\xdd\xbc\xd4\x83\x59\xc7\x02\xd5\x28\x29\xab\xe5\xe1\xbe\x01\xb3\xac\xb6\x21\xbd\x05\x3d\x7c\xf5\xf5\xa0\xed\xee\x43\xff\x12\xf9\xc5\xbf\xda\x8c\xb6\x73\xda\x7e\x45\xe5\xa6\xb1\x24\xd3\x87\xab\x62\x3e\x25\x3c\xc9\x2a\x0e\x39\x6f\x1a\xde\xfa\xc8\x16\xa5\x46\xd1\xcb\x28\xa6\x28\xd8\x79\x55\xc2\x8b\x33\x15\x01\xd8\xb5\xb6\x55\x95\xdd\x0f\x0d\x07\x55\xd3\x8c\x83\x58\x31\x4b\x7d\x1c\x32\x77\xdc\x7d\xd0\xfe\x3e\x65\xb9\x5f\x1c\x9c\xfa\xe6\x41\xf3\x3a\x10\xf8\xa5\x04\x90\xec\xc6\x6b\x86\x61\xaf\x17\x1b\x84\x00\xca\x34\xec\x5f\x05\xc6\x74\xdd\xc0\x09\x06\x6d\x44\xbb\x27\xcb\xb2\xfb\x68\x5e\x10\x2a\x4e\x8b\x29\xa9\x84\x44\xf4\x6d\x4c\xa2\x44\x64\xac\xd7\xd1\xe4\xe6\x13\xad\x08\x13\x8f\xc6\xb1\xf9\xa9\x0d\x81\x95\x1c\x54\x35\x75\xe0\xd0\x88\x56\x7e\x49\xe0\x34\x23\xe7\x7c\x9c\xed\x1a\x8c\x6d\x00\x1d\x7f\x1c\x44\xd0\xed\x87\x43\x8c\x2b\x24\xe4\xa8\xcc\x6e\x21\x92\x9d\xab\xd5\x63\xb8\x0b\x30\x1a\xf9\xef\x8d\x47\x49\x9f\xab\x46\x3d\xc8\xd5\x31\xea\x8f\xe5\x81\x6f\x74\x38\x96\x9b\xf8\xe8\xce\xd8\x5c\x6d\xe8\x76\x5a\xb9\xbf\xab\xe9\x88\xe0\x29\xc9\x50\xae\x77\x0f\xfb\x2d\x85\x65\x66\x82\xc8\xef\x1e\x60\x29\xfd\x28\xbb\x79\x2e\xb1\x29\x30\x97\xd8\x30\xcc\x25\x36\x39\xe6\x12\x9b\xd2\xc7\x06\x2c\x0e\xd6\x6b\xb8\x71\x35\x46\xfa\x35\x36\xa4\xa7\xa7\x5d\x5e\x53\x91\xbf\x6b\xbf\x2d\xc4\x25\x5b\x09\xc9\x83\x8c\x0e\x32\x31\x71\xe4\x5c\xe0\x20\xea\x74\x5d\xf1\xa7\x55\x06\xc2\x87\xf2\xd9\x78\xc2\xf3\x05\x81\x27\x35\xe6\x67\xcc\xec\x64\xa5\x61\xa3\x10\x45\x94\xc8\x5e\x11\xd9\x27\x79\x7a\x28\xbb\x97\x64\xbe\x24\x9e\x9e\xaf\x52\x56\x2a\xf3\xb9\x95\x3a\xb0\x2a\x41\xa6\x0c\x37\xdc\x52\x9d\x36\xd3\x43\xf9\xd3\xdb\x7b\x9f\x9d\x1e\x25\x06\x3b\xdd\xfb\xda\x8c\xc9\xef\xd1\x09\xd3\x37\x5a\xf2\xbb\xd9\x96\x0d\x3c\x79\x90\x76\x3a\x9a\xba\x65\x74\x87\x97\x6c\x59\x8d\x87\xbb\x3f\x3b\xb6\xd5\xcb\x1d\xbb\xe7\xbf\x53\x9d\x23\x27\xd9\x1e\x38\x45\x2e\xd4\x2d\xae\xe3\x14\x91\x2f\x88\x20\x72\x3b\x8e\xae\xa8\x49\x4e\x23\x87\x0d\x89\xd6\x13\xbd\xd3\x56\x40\xd1\xfb\x0a\xdc\x20\x00\x8f\x40\x22\xb1\x18\x59\x41\xe3\xf2\x8f\x7c\xe8\x9d\x8a\x3f\x6d\x76\xfe\x48\x36\x3b\x8b\x8f\xa6\xe4\xb8\x6a\x96\x33\x16\xc1\x86\x0a\xfc\x2c\xb8\xff\xd0\xa7\x56\x7e\x41\x44\xd9\x20\x81\xa8\xd4\xf0\x11\x79\x41\xc1\x1b\x91\x31\x0e\xdc\x95\x74\xaa\xfd\x70\x07\x74\xdb\xd2\xa1\xb9\x73\x31\x20\xe8\x0c\x5e\x0d\x04\x52\xdf\x06\xbc\xee\x37\x15\xcd\x89\x82\x6c\x82\x49\x07\xb0\xd9\xd5\x15\x72\x4e\x46\x56\xe6\x9e\x1d\xc1\x78\x90\x8d\xc4\x38\xeb\xe6\x02\x15\x38\x1f\x71\x0d\x60\x7c\x40\x11\xe9\x5e\x92\x7c\x29\x89\xf2\xfc\x3a\x9f\x4e\x79\x4a\xf7\xfb\x70\x45\x68\xf9\xfc\xb5\x88\x5f\x12\x2a\xe2\xd1\xe6\xad\xb5\xd0\x12\x87\xd1\xd0\x12\x87\x6e\x68\x89\xc3\xf1\x00\xd6\xde\x05\xcf\x17\x2d\x33\x81\xdc\xd8\x84\xd4\x77\x8f\xdf\x99\x51\x62\xdd\x64\x18\xec\x48\x3c\xc3\x15\x1b\xf3\x14\x4c\x3d\x04\x04\x2e\x34\x74\x37\x15\x29\x87\x60\x30\xf5\x33\xa1\x14\x34\xe2\x76\xc4\x2a\x74\x2e\xee\x49\x99\x49\x87\x5b\x2c\x70\xef\x5e\x51\xa9\x0b\x8a\xfd\xfd\xec\x4c\xa4\x64\x54\x28\xef\xd4\xac\x55\x5a\xa9\x6a\xa3\xf6\xab\x55\x79\xf9\x74\xb1\x20\xd3\x02\x92\x6b\x59\xa9\xa9\x7b\xf4\xfc\xc5\xd9\x8f\xaf\x1f\xbc\x7c\xf9\xe0\x47\xf0\x99\x04\x4f\xc9\x95\x92\xe3\x98\x92\xe3\x72\xdc\xbb\x97\x57\xf4\x95\xab\xc6\xd8\x28\x37\x8d\x45\x5a\x58\x39\xa1\xb3\x40\x84\xa2\xd9\x26\xd6\xeb\x98\x61\x51\xfd\xd5\x07\x78\x93\x68\xf8\x1b\x65\x5b\x67\x14\x87\x80\xef\x80\xf8\xa8\x5c\xac\x72\x3e\x25\xd3\x07\x61\xbe\x6a\xcb\x08\x7c\xd1\xd1\xf6\xcb\x48\x4b\xf0\x22\x14\x20\xcf\x4c\x0c\x1b\xfd\x5d\x49\x82\x6a\x25\x4b\x61\x30\xd2\xef\x57\xc4\x86\x4f\x97\xd2\xa3\x3e\x15\x68\x39\x11\x9e\x22\xa2\xa2\xc5\xa6\x59\x5a\xd4\xfa\xcc\x98\xc0\x58\xff\xc7\xb4\xab\xe4\x45\xa7\x6b\xa9\xcb\x65\xab\xe6\x55\x6c\x1f\x73\xdb\xaf\xc6\x30\xd5\x29\x38\x8d\x1d\x88\x79\x7b\x53\xd0\x30\x80\xaa\x63\x95\x4c\xaa\x67\xc2\x15\x4b\xb9\x67\x41\xe0\xf5\x2f\x12\xdc\xa1\x81\x69\xdd\x8d\x32\xad\xbb\x2e\xd3\xba\xeb\xc6\xc3\xb1\x9a\xb4\x9e\x33\xb3\x79\xb7\x5c\xa2\xbe\xbd\x3a\x57\x8a\xae\x9e\x33\x3b\x4a\x1b\x47\x6b\x6f\x8a\xac\xd2\x2d\x99\xd3\x86\xc4\x77\xcf\x00\x73\x93\x19\x38\x30\x55\xc8\x79\xd3\xdb\x33\x9e\xd3\x32\xd7\x9b\x64\x8d\x24\xcc\xfd\xb9\x6a\xc8\x44\x5b\xd1\x74\x20\x61\x22\xbd\x96\xa8\xf9\x51\xd8\xe9\xb9\x28\x4a\x41\xb8\x2d\xee\xc4\xc9\x77\x90\xb9\x20\xc2\x96\x80\x3b\xe8\x86\x6f\x9e\x4e\xd0\xa1\x4a\xa3\xaa\x92\x0c\xf3\x54\xa4\xe0\x80\x2b\xe5\xf3\x34\xcb\x1a\xe8\x60\xc9\x96\x5e\xaf\x96\x6c\x19\xed\xac\x0a\x55\xbe\x65\x98\xaa\xb9\xf2\xc9\xc9\x1c\x1e\x63\xfc\x89\x0c\x21\x9e\x81\x3e\x25\x80\x5a\x9d\xb8\x87\x05\xe2\x9c\x0e\x32\x95\x74\x03\xf1\x4d\xba\xd5\x84\x24\x94\x65\x9c\x08\x88\x70\xce\xa1\x86\x1a\x60\xe7\x34\x81\x0b\x95\x10\xd0\x10\x44\xd1\xda\x10\xe0\xa2\xfa\xad\x6f\xeb\x48\xbe\xc4\x05\xfc\x41\x15\x87\xc3\xf6\x5b\x77\x91\xcf\xe7\x6c\x92\x46\xcd\x78\x57\xcb\xab\x9c\x97\x71\x3b\x27\xd1\x9d\x15\xf3\xf9\xf1\x6a\x3e\x2f\xeb\xb9\xf8\x39\x29\x09\xbf\x8a\xc4\x43\x50\xe1\x13\x50\x4f\xfe\x17\x09\xf4\xf4\xdb\x45\xb5\xea\x21\xfe\xa1\x52\x4b\x0f\xd1\x7a\xd5\x3b\xd1\xaa\x77\xdc\xaa\x77\xc6\x83\x5e\xab\x1a\x58\x2f\xfa\x54\xf5\x46\xd4\xde\xf0\xda\x9b\x30\x40\x4c\xcc\x0d\x3a\x8c\xcf\x97\x1e\x1e\xba\x70\x66\x05\x2d\xca\xcb\xe7\x6a\x72\xab\x89\xcf\x1c\x22\xa8\x0f\x7f\x20\x98\xb8\x73\xf6\xd9\x97\x68\x0f\x4e\x0c\xc3\xfe\x20\x9c\x39\x67\xd3\xac\x05\x1b\x70\xe8\xb6\x32\x28\xb8\xaa\x45\x42\xb2\xcc\x7e\x3b\x00\xb6\x4c\x33\x9d\x77\xcb\x5d\x24\x11\x4a\x0a\x37\xc7\xa6\x6e\x7d\xae\x23\xb6\x81\x49\x4e\x2d\x40\xc9\x96\xdd\xb6\x1e\xd2\x0c\xe0\x7d\x11\x42\xa8\x98\x7a\x13\x0a\x7f\xad\xdd\xb3\x06\x9c\xbb\x41\x01\x97\xee\xa9\x90\x7b\x72\x42\xd6\xea\x81\xc3\xc3\xfd\xfb\xfd\x4a\x50\x4b\x3f\xef\x21\x5a\x6b\x61\x0b\xbb\x6f\x40\xf3\xf3\x7e\x0d\x48\xe3\xce\x14\x1f\x9b\xcf\x3f\xab\x5f\x04\x37\xf0\xec\x06\x00\x9f\x6f\x9b\xe8\x78\x94\x51\xa7\xf6\x61\x56\xd3\xef\x7b\x7b\x59\x53\xc7\xef\xd4\x3a\x5e\xdf\xe9\x9a\xea\xde\xad\xd5\x0d\x6f\x0a\x9b\x6a\x7e\x11\xab\xe9\x19\x88\x34\x54\xfc\x32\x86\xae\xbe\xf8\x3d\xab\xed\x75\x5e\xd5\xbf\xd6\xd9\x38\x9b\x5f\x91\xe7\xf9\xf5\x39\x79\xc6\x26\xf9\xbc\xa1\xcd\x2f\xec\xdd\x85\x76\x43\x09\x31\x27\xe7\xab\x0b\x7f\x11\x5a\x89\x5b\x01\xe8\x07\x1b\x99\x5d\x90\xe1\xfb\x1c\x2c\xe4\x6a\x29\xe5\xa7\x66\x91\x52\xd1\x3c\xa6\x87\xdb\x17\xbb\x2f\xc3\xd6\x86\xc8\x6f\x02\xf8\xd8\xf7\xe1\x48\xfb\xc2\xf1\x4d\x40\x7c\x5d\x03\x11\x06\xf9\x73\xf0\xbf\x1b\x8e\x46\xd3\x80\xb3\x25\xa1\x2f\x78\xb1\x28\x44\x71\xb5\x83\xd0\x0e\xbf\xb8\x0d\xd0\xe8\x6d\x78\x13\xe4\x2f\x6f\x03\xd9\xbf\x9f\x8f\x13\xe8\x61\x48\xa0\x4d\xf1\x3e\xab\x2a\x77\xee\xdc\x26\xd8\x9a\xaa\x72\xb7\xbe\xbf\xe9\xbb\xa8\x06\x4e\xdc\xd4\x4d\x54\x98\x88\xa8\xb5\x8f\x22\x1b\xf4\x8c\xbe\xa7\xf6\x91\x3b\x07\xed\xf4\x8e\xe4\xdf\x4c\x29\x6d\xea\x14\x2f\xb1\x8a\x44\x0d\xdc\x8d\x57\x03\x56\x6e\xc3\x87\xa0\x94\x72\x36\x96\x46\x0c\xe2\xd7\x55\x0d\xad\xbb\x4d\xf4\xe5\x01\xa8\xda\xc6\xea\xfb\xc3\x96\xa8\x92\xdb\x41\x1f\x7e\x56\x33\x3c\xb2\xf9\xb7\xe3\xf4\x7a\xe7\xb3\x1d\xb2\x80\x30\x96\x92\x0d\x7b\x7f\x48\x37\xd6\xfe\xb1\xde\xa0\x16\x90\xd3\xcf\x0e\x3d\x8d\xa6\xd6\xdc\x69\xe1\x86\x95\xe8\xb3\xc3\x1a\x37\x37\x86\x92\x0d\x48\x84\xf4\xae\xcd\x20\xb7\xa0\xf0\xd9\x0e\x14\x3e\xab\xa1\x50\x12\xf1\x7d\xce\x8b\x78\x58\x35\x40\xa3\xbe\xef\x5d\xec\xac\x53\x6f\xe7\x02\x74\xe9\xa0\x8e\x6e\xda\xed\xb6\x6f\x3c\x17\x44\x04\x21\x91\xbd\xda\xf5\xad\xf2\x52\x5b\xd3\x34\x54\xa8\x8b\x6a\xa6\xc2\x0b\x79\x0e\x6c\xe2\x84\xfd\x5e\x5d\xc4\x03\x8b\x95\xa6\xf2\x75\x59\xcb\x14\x6c\xe2\xb5\x3a\x86\xe3\x8a\x4e\xea\xa3\x20\x4f\xbe\x4d\x2d\xd5\xc5\x0c\xd0\x7a\x34\x15\xaf\x8f\xd8\x74\xb5\xac\xdb\xb8\xd4\x8e\x4f\xbd\xe8\xf1\xa9\xe7\x1e\x9f\x7a\xe3\x01\xe8\x56\x3e\xfc\xc8\x57\x8b\x59\x9e\xf6\x3f\x8b\xd8\x1f\x2e\xd9\x6f\x87\x71\x3f\xd2\xe6\xe7\xb5\x31\xda\x12\xbd\xd9\x63\x40\x35\xf9\x76\x67\x18\x65\xa8\x16\x9e\x39\xc2\x6b\x0e\xef\x24\xa5\x55\x6f\xa4\x72\x38\x7c\xc1\xca\x18\xbe\x8c\x09\x95\x6f\xad\x49\x68\xeb\xff\x55\x0e\x6e\x84\x6f\x83\x58\x7e\x59\xcc\xa7\x41\x7d\x8f\x60\x23\x21\xa3\xb7\x15\xef\xd7\x44\x53\xa5\x84\x6d\xe6\x6b\x87\x77\xb6\xf3\xb5\xc3\xba\x5c\x1f\x6a\xd2\x1a\xc6\x3b\x94\x42\x02\x95\x54\xbc\xd6\xdd\xd8\x28\x59\x2d\x7a\xd3\x7a\xbb\xb3\x7d\x4b\x32\x22\x5e\x64\x8b\xec\x21\x13\x97\xbd\x55\xbe\x2d\xe0\xc4\xac\x15\xe6\xd9\xfb\x49\x5e\x12\x13\x49\x69\x40\xfe\xbf\x3e\xc6\xbd\x4e\x87\x7c\xd5\x1b\x72\x4c\x06\x26\x16\xc5\x6c\xce\x72\x01\x12\x38\xee\x67\xad\x73\x4e\xf2\x37\x2d\xa8\xa8\x23\x2a\x0d\x74\xb9\x4a\xaa\x10\xf8\xd0\x2d\x77\xce\xd8\x9c\xe4\x54\x16\xec\xad\x09\x12\xf8\x8e\xfb\x55\xeb\xf9\x07\x1c\x1f\x86\x9f\x56\x54\x5d\x45\x4e\xe5\xd7\x3b\xce\x57\x1d\x57\x7e\x50\xb3\x1e\x79\x4a\xc1\x9b\xb7\x6d\x07\xa4\xbd\xcc\xcb\x92\x4c\xdb\x82\xb5\xe5\x40\x5a\x59\x38\xc9\x36\xce\xe8\xde\x45\xe2\xfe\xfd\x3b\xbd\x75\x18\x44\x58\x19\x7d\x34\xcd\xc9\x36\x56\x6b\xd5\xbd\x4d\x27\x25\x37\x76\x75\xad\xf6\x79\x41\xa7\x71\x4a\xf2\x05\x15\x2d\x58\x43\x72\xfa\x3a\x14\x10\x3b\x9a\xf6\xe5\xfa\x0e\x26\xe5\x89\x06\x59\x22\x24\x59\xb5\xe8\x1a\x56\x68\x78\xbc\xb6\xf7\x26\x0d\xeb\xa1\xa6\x29\xd1\x8a\xdf\x86\xe2\x5f\xc6\xad\xc8\xf5\x70\xd5\x12\x1f\x38\x35\x43\xd6\xe1\x69\xa2\x9b\xc6\x69\xfb\xc2\x73\x4d\x70\x63\xb7\xb9\x1f\xae\xb5\x04\xf7\xb9\xca\xa7\xc2\xb5\x3e\x29\x30\xad\xd2\x15\x3f\xcf\xc5\x65\x77\x51\x50\x6b\x73\x6d\x71\x37\xda\x73\xa6\x22\xa1\x9a\xd7\x15\x43\x4e\x33\x6d\x83\xcc\xe0\x02\x59\x9d\x4c\xe1\x66\x63\xb6\x44\xfc\xc0\xea\x08\x2b\x81\x2d\xa5\x36\x5e\x6a\x19\xca\xde\x86\x94\x1d\xd1\xfb\xee\x21\x2a\xc1\x12\x58\xf3\xda\x9a\x02\x5f\xa3\x18\x1e\x7c\xa3\x39\x36\x4c\x08\x88\x59\x9a\x40\xa3\x09\xc6\x98\x64\x02\x1f\xb7\xc8\xbc\x24\x6d\xf9\x5e\x1b\x5b\xe9\x0f\xcf\xaa\x0f\x84\x5e\x15\x9c\x51\xb0\x1e\xd3\x5f\x1f\xc3\xd7\x06\x6b\x15\x52\xb7\x4b\x73\xe2\xa1\x25\x59\x4b\x60\x15\x3e\xae\x76\xb8\xa9\x2c\x69\xdc\x81\xf8\xac\x5f\x8b\x4f\xfe\xd3\x6a\xb1\x6c\xde\xb3\xee\xde\xdd\xbe\x67\xdd\xad\xcb\xd5\x12\xe0\xd3\x88\xee\xca\x82\xdc\x21\xde\xdf\xad\x8b\xdd\xd5\xdd\xe3\x16\xb0\x9f\xef\x00\x5b\x97\x82\xd4\x46\x11\xbb\x66\x69\x3a\xce\x85\x87\x7d\x16\x48\xcc\xf1\xea\x66\xe3\x0a\x42\x8e\x4a\x66\x19\xb7\xbc\xc0\xa3\xb1\x63\x5d\xe1\x59\xe6\x73\x0c\x86\xf9\x92\xfe\x9b\xcf\xea\x71\x34\x72\xed\xcb\x19\x0c\x82\xb2\x58\xbf\x41\x37\x54\xfd\xb0\x1b\xc0\x90\x6e\x50\xdb\x30\xae\x60\x83\xa9\x6d\x4d\xf6\xa2\xab\x61\x59\x0f\x7a\xf5\x73\xc8\x4d\xe6\xa0\x2a\xb1\x41\x97\x8e\x4d\xfa\x92\x35\x39\xe3\xc0\x9d\x92\x6c\x43\xca\xa3\x8a\x90\x94\xed\x0a\xf8\x05\x64\xd6\xa1\x47\x8b\xac\x5b\x5d\x7a\x9c\x8a\xb6\x9e\x22\xd4\xad\xd5\xdc\xbb\x06\x93\x52\xca\xd8\xbb\x3b\x26\x6f\x17\x1f\xcd\x04\xea\x5c\x60\x30\x4c\x46\xaf\x05\x4e\x3a\xda\x75\xe9\x6d\xb3\x5d\x94\xe2\x45\x1f\x78\x76\xe9\xb5\x2e\x82\xab\x48\x36\x9b\x95\xc4\xfa\x2e\xa9\x15\x53\xb7\xb1\x92\x18\x34\x59\x58\xe5\xd3\xa8\x59\x05\x54\xf1\xef\xbf\x00\x3a\x58\x5c\x55\x05\x14\xfa\x07\xfd\x1d\xfe\x62\xa4\xd2\x70\x91\x91\x83\xf8\xd8\xe8\xb5\x14\x6c\x3a\x36\x0a\x36\x80\x3e\x2a\xc6\xf7\xfc\x80\xc7\x7b\x0c\x25\x2a\x7b\x03\x99\xb6\x73\xda\x86\x6d\x44\x0e\x0f\xa8\x35\xdb\x33\xc6\xdb\xc9\x7e\x6a\xc3\xd1\xab\x46\x86\xe7\x62\x44\x46\xbd\xf1\x78\xf0\x2d\x19\x91\x51\x7f\x3c\xce\x32\xc4\x74\x3a\x67\x30\x07\x7d\xa7\xec\x81\xde\x0a\x74\x64\x7e\xa5\x7d\x87\x7c\x4e\x84\xaf\xa5\x23\xca\x9e\x9b\x28\x7b\x6e\x32\xba\x33\x6e\x9d\x89\xb4\x40\x3c\x43\x6c\xc8\x7d\x45\x5f\x4a\x11\x43\x22\x1b\x78\xaf\x53\x2a\xcf\xb8\xef\x04\x38\xcd\x9e\x8b\xee\x19\x79\x27\x02\xcf\x59\x01\x7a\xe5\x54\x36\x95\x6d\x24\x8a\xa6\xac\x8e\x48\x5f\x2b\x3e\x31\x49\x5a\xea\x35\x1c\x05\x6a\xbd\x9a\xe7\x34\xe4\xd5\x7b\xe2\xe8\x6a\x6b\xf5\x02\xa7\x27\xb7\x9e\x8e\xca\xc3\x1b\x5c\x8d\xb5\x3f\x9c\xba\x9c\x2f\xd4\x60\x32\x35\x98\xb9\x1a\x4c\xb9\x4c\x79\xf7\x32\x37\xf1\x7d\x78\x5a\x20\xea\xd9\x8c\x67\xf5\x7d\xff\x91\x22\x3a\xf5\xd8\x4e\xf6\x8b\xfd\xa4\x5d\x94\x60\x7a\x9a\xb7\x8d\x22\x71\xd0\xfe\x06\x4e\x0a\x65\x7b\x91\x5f\xc3\xb7\x73\xd2\x5e\xc9\x73\x47\x21\x39\x0a\x69\xeb\xf0\x3e\x92\x94\x16\x5d\x29\x3f\x78\xd6\x1f\x0c\xe5\x60\x65\x2e\xac\x66\x32\xe5\xdd\x39\x63\x6f\x56\xcb\x2d\xa8\x7a\x83\xe3\xb8\x49\xc4\x86\x07\x46\x83\xaa\xd1\x28\xd4\x68\x08\x47\x9d\x2d\x85\x47\x44\x7d\x88\xae\x9f\x84\x0f\x12\xe8\x76\xaf\x2f\x69\xcd\xad\x70\x66\xee\x3c\x9a\x6a\xf4\xc2\x1a\x27\xd5\x45\x42\x8d\x10\x62\x37\x17\x96\x08\x8f\x14\x88\x6f\xe3\xee\xd8\x35\x58\xcd\xae\x7d\x62\x8b\x6b\x9f\x1c\x2c\xbf\xb1\xd0\x63\xbb\xd6\x50\xdc\xfb\x2f\x84\xe1\x5e\xde\xc5\x40\xd4\xbd\xe9\xbc\x51\x53\x77\x4a\xbb\xa6\x19\xa8\x5d\xf2\xfd\x14\x96\x46\x77\x91\x4f\x38\x2b\xd3\xac\x5b\xd0\x79\x41\x89\x35\x3f\x82\xea\xeb\x35\xcf\x8c\xb5\xd4\x0b\xd1\x2d\xca\xaf\x89\x50\x71\x29\xe0\xa9\xba\xf7\x93\x52\x0e\x1d\x0a\xdf\x7e\x4e\x25\xfe\x1a\x14\xeb\x35\x8b\x7d\xea\x67\x83\xf4\x4c\x40\x1a\x75\x24\x6a\x06\x62\xd9\xc6\xeb\x1c\x9c\xdf\x6e\x48\xc2\xb0\xbc\xef\xaa\xe5\xfd\x19\x78\x9b\xd8\x15\x92\xb2\x0c\xad\xdc\xe7\x3c\x43\x73\x5c\x76\x3a\xa5\xb6\x32\x42\x13\xbc\xea\x74\x56\xfa\xa9\x15\x8c\x11\x08\x3d\xd5\x10\x29\xa3\xdc\x39\x9a\x00\x01\xc3\xf1\xe7\x74\x8b\xd7\x4f\xb8\x9b\x2a\x0f\xc1\xa8\x73\xa0\x3a\x3f\xc6\x76\x34\x1d\xa9\x8c\xbb\x87\x40\x54\xe2\xdc\x3a\xf1\xae\x70\x6e\x1d\x21\xe7\x36\x12\xc4\x04\x07\x5a\xbb\xd4\xec\xa6\xfb\x7d\x39\x4b\xad\x09\x28\x17\xc0\x64\x6b\xae\xec\x28\x32\xa4\xde\x29\xeb\xb4\xd2\x46\x4e\x79\x2d\xb2\xfd\xbe\xd3\x03\xd5\xf1\x19\xb8\xdd\xb5\x56\x9d\x8e\x53\x34\xf9\x84\x5c\xe5\xf3\x24\x43\x33\x4f\x4c\xd0\x0e\x24\x58\x37\x04\xb2\x35\xc5\x4b\xbb\xbd\xdf\xa3\x5f\xe1\xde\x3d\x7a\x70\x90\x15\xb8\x02\xb6\x1c\xd1\xb1\x24\x3d\x5d\x0b\x1d\xf4\xf7\x30\x2e\x3a\x1d\x8d\xb9\x8a\x59\x53\xec\xf7\x91\x9c\xe3\x4e\x27\x9d\x8d\x64\x8d\x31\x66\xaa\xb9\x4b\x53\xd1\xdf\xe4\x6b\x01\xc3\x2f\x51\x32\x7a\xf8\xea\xeb\x71\xfb\x29\x9d\x30\xce\xc9\x44\xb4\xc1\x11\xa0\xcd\x66\xed\x25\x2b\x0b\x39\x1f\xf9\xdc\x7a\x1d\xb5\x27\x6c\x05\x0c\x7c\x45\xa7\xed\xe9\x4a\x8a\xfc\x6d\x35\x7b\x07\x7a\x07\x3e\xd0\xbe\x9b\x49\x86\x14\x06\x97\x0a\xa1\xa9\xd3\xb7\xa4\x53\xd0\x2b\xc2\x4b\x92\x64\x68\x61\x11\x85\x1e\x4e\x4d\x0f\xd5\x3c\x4c\xf7\xfb\x68\x91\xa1\x19\x74\xb0\xaa\x36\xc6\x0b\x05\xf5\xca\x83\xaa\x15\x62\x49\x86\xae\x7d\xa8\x57\x3e\xd4\xab\xfd\x3e\xba\xae\xa0\x9a\x6a\x63\xac\x5e\xaa\xa2\x55\x00\x9e\x59\x86\x88\xa7\x4b\xd0\x66\xd0\x5c\x07\x7f\x08\x4f\xee\xb5\x80\x71\x3a\x0c\xdc\xd7\xf3\x62\xb1\x20\xfc\x31\x39\x5f\x5d\x0c\x92\xfb\xd1\x71\xfb\x2a\xd9\x68\x6b\x74\x4f\x28\x51\x4c\x1b\x35\xae\x10\x54\xa2\x95\xa4\x7f\xc9\x1d\x26\x8a\x3b\xcc\x14\x77\x58\x02\x77\x00\x0b\x67\x58\xdd\x97\x79\xe9\x58\xb9\xcc\xc0\x72\x9c\xd1\x74\x8e\x22\xce\x63\x59\x46\x31\xaf\xb8\xc7\x32\x43\x2a\xa1\xee\x52\xa4\xaa\xb4\xe4\x05\xae\x21\xb5\x24\x58\x6e\x42\xee\xdd\xbc\x19\xc4\xe3\x1e\x7a\x4c\x7e\x09\xed\x77\x0b\x65\xb2\x3b\x43\xb4\xd3\xa1\xc6\x5a\xd2\xaa\x31\x96\x9d\xce\xd2\xd1\x12\x35\x3a\xd8\x79\x02\x8d\xf5\xf8\x9d\x15\x74\xda\xb6\x76\xec\xed\x64\x7f\xae\xbd\x4e\xe2\x1b\xf1\x3c\xd3\x26\xe2\x13\xd7\x44\xfc\x9d\x15\x6b\xd2\xc9\x28\x1f\x23\x9e\xa9\xd1\xf7\x85\x3a\xb4\x04\x85\x54\x89\x97\xae\x05\xe5\x0a\xf7\xee\xad\xee\x1b\xb4\xef\xad\x7c\x70\xe5\x68\x05\xe0\x78\x28\x58\x6a\x76\xfc\x68\x6b\x94\x86\xda\xf1\x66\x25\x08\x3f\xd5\x07\x70\xe3\x8b\x79\x95\xcf\x9f\xd2\x19\x8b\xa7\xd0\xa9\xf3\x69\xdf\x7f\xc7\xd2\xa1\x40\x13\x3c\xf7\x14\x77\x86\x5f\xcf\x70\x15\xc2\x69\x89\x67\x61\xa4\xab\xcb\x1a\xe3\x36\x43\x2b\x77\xd0\xd6\x25\xac\xcc\x47\xf9\x7c\x4e\xb8\x5e\x9b\x40\x69\xce\x8b\x2c\x43\x97\xc1\xfa\x5d\x9a\x57\xc0\xef\x67\x55\xc0\x28\xc3\x99\xbc\xae\xa3\x05\xae\x0d\x0f\xba\x0a\x3c\xa9\x66\x8e\x15\xd1\xf3\x7c\x09\xe7\x61\xeb\x9d\x34\x75\xbd\x93\x0a\xbc\x18\xa5\x14\x4f\x47\x5c\x05\x1d\x63\xaa\xd3\x9a\x81\xd3\x0c\x5d\x8d\x8a\x31\x66\x92\x44\x14\x45\x44\x28\xaa\xc4\xf9\x7e\x1f\xd9\x33\x6c\xba\xc2\xcb\x91\x24\xad\x71\xd6\xe9\xa8\x9e\xa5\x25\x5a\x99\xe1\x71\xd0\xba\x6a\xe0\x5c\x73\x87\x73\xf9\xbc\x46\x57\x76\x39\x4d\x95\x6d\xc0\x3b\x4c\x98\xb8\x1a\xd8\x5f\xcc\xb0\x23\xeb\xd9\x6e\xd1\xc0\x83\x80\x7a\xc8\xd0\x98\xef\x80\x94\xc0\x75\xb9\xca\xa9\xa2\x5f\x7f\x15\xf0\x1d\x5a\x39\x5c\xc8\x33\x04\x8d\x78\xaa\x0a\x7b\xc2\x84\x53\x92\x8a\x11\x65\x76\xb8\x6e\x2e\xd2\x9e\xd1\x5d\x55\x71\x0b\x0b\x2f\x3a\x13\x68\x57\xc3\x04\x1a\x9d\x8e\xfa\xb2\x07\x11\x19\x4c\x24\x30\x82\xca\xfa\x31\xea\x2f\x8f\xd8\x6a\x3e\x6d\x5b\x4e\x93\xb7\x97\xaa\x78\x5b\x1e\xd1\xa7\xed\xe4\x2f\xfb\x64\xff\x2f\xc9\x5f\xaa\xa8\xf9\xfa\xfc\xe3\x42\xdd\x80\x33\xcc\x07\x80\xb6\x51\x91\xfd\x26\x56\xf3\x39\x04\x43\xa3\xda\x53\x83\x86\x3e\xbb\xb4\xf2\xc5\xa0\x31\x47\x0c\x1a\xb1\xa8\x03\x38\x91\x3b\x09\x78\x5f\xb7\x7d\x7f\x24\xd2\x15\x62\x19\x4c\x63\xa5\x1f\xa7\xae\xf5\x3b\x0d\xfc\x2f\xa8\x71\xa7\xa0\x95\x2f\x05\xf5\x1d\x29\x82\xfa\x9e\x0b\x85\x5a\xfa\x0f\x6e\x21\xbf\x82\x07\x15\x7f\x24\xe5\x9f\x9b\x4a\xb1\x6e\x8c\xae\x00\x44\x15\xae\x0b\x8e\x28\x22\xab\x00\x3a\x2b\x04\x96\xbc\xbe\x41\x76\x79\x9c\xf6\x1a\x13\x4d\x77\x23\x39\x66\x43\xe3\xb6\x34\xe8\xa1\xb2\xba\x1f\xa1\x28\x07\x0f\x51\x8f\x27\x84\xf0\xf3\xaf\x7a\xc6\x4f\xca\x72\x6b\x87\xbf\x95\xc0\xd8\x56\xae\x20\x0a\x1e\x98\x05\x44\x44\x7a\x98\x97\x24\xa5\x07\x5c\x6e\xca\xda\x5d\xec\x37\x95\x93\xae\x0b\x32\x9f\x2a\x7f\x36\x7e\x00\xe2\x28\x4e\xf6\xc3\xe1\xdd\x4f\x62\x82\xd4\x8f\xb2\xea\xb6\x63\xd5\x4b\x01\xe7\x5d\x24\xe4\x59\xc8\x58\xcb\x80\x45\x7a\x03\x31\x8b\x08\x31\x3f\x10\x29\x85\xc0\xc2\xee\x55\x8f\x47\x8a\xe0\x86\xcb\x96\x69\xa8\x6b\xd0\x76\xa1\x8d\x18\xb6\x84\xb5\x1d\x4d\x95\x8a\xc7\xee\xab\x3c\xd4\x4a\x99\x48\x0e\xa7\x46\xb8\x08\xa0\x1e\x09\xef\xec\xab\x17\xc4\x1b\xab\xac\x7b\xee\x28\xeb\xd0\x0b\x81\x69\xb7\x8a\xfe\x50\x56\xda\xbb\x33\xad\xfc\x85\x50\x8d\xdd\xa2\x7c\xa0\xd5\xf4\xc3\x37\x3e\x7c\x70\x7e\xd4\xe2\x93\x17\xd8\xfd\xa5\x70\x7a\xa9\x82\x23\x98\xb5\xd0\x73\x68\x8e\xb8\x7b\x2a\x78\xfc\x71\x98\x26\xbb\x6c\xb4\xcf\xdf\x1b\x3b\x04\xaf\xe8\x1b\xca\xde\xd2\x98\xcc\xac\x06\xd3\xca\xc3\x4a\x6b\x95\xd2\xa8\x6c\xea\x76\x64\x74\x2e\xba\xaa\x30\xa2\xbe\xe0\xab\x82\x61\x20\x9e\x0d\x34\x0c\xbb\x13\x0c\x79\xdd\x6e\x38\xa5\xd9\x20\xe5\xae\x0d\x58\xda\x93\xa2\xae\x63\xe0\x25\x49\x68\x93\xa1\x37\xce\x21\x80\x4e\xf2\x70\x12\x0d\x77\x81\xfe\x54\x83\x45\x83\xc1\xa2\x7a\xb0\x84\x89\x0c\x64\x0a\xc8\x26\x9e\x5b\xa5\x4c\x24\xcc\x47\x4d\x31\x69\x9f\xb5\x5a\xa8\x42\x50\x0f\xcc\xaf\x56\x4b\xea\xd9\xb8\xad\x52\x72\x10\x6a\x25\x95\x00\xb0\x45\xcb\xa8\x25\x04\xa3\x63\x6c\x6c\xd7\xeb\xe5\xd7\x64\xdb\x1c\x68\xbd\xb5\xba\x3e\xf3\xe6\x97\x66\x48\xcd\x4d\xe1\xce\x8d\xf0\xa6\xbc\x90\x32\xa2\xd7\x5a\x45\x32\xf1\x46\xf5\x50\xea\xf6\x02\xc2\x4b\xb9\x8a\x2e\x5b\xb8\xd1\x65\x45\x84\x1a\x79\x26\x97\x67\x40\x8d\x14\xf7\xee\xd1\x0a\x5b\x1a\xc1\x96\x06\xd8\xbe\x32\x86\x2a\x01\xb2\xe6\x4e\xc9\xe1\x00\x4a\x96\x0d\x08\x48\xdb\x0e\xd6\x88\xce\x18\x15\x5a\xc5\x67\xbd\x8e\xb2\x37\x6c\xac\xa9\x3e\x47\xea\x47\x23\xde\xf8\x50\x9e\x47\x19\xe5\x4f\xcd\xb7\x50\xa1\xe0\xf0\x7b\xb9\x38\xca\xa7\xd3\xe7\x45\x59\x86\x97\xce\x50\x6f\xa1\x3f\x90\xdd\x77\x4d\x36\xd8\x0a\x10\xa1\x3c\xb2\x7a\x78\xb4\x6c\x34\x85\xd5\x30\x0d\x2e\x98\xdc\xa6\x10\xd9\x4f\x94\xb8\xca\x56\x74\xaa\x42\x55\x53\xd6\x9e\xe4\x62\x72\x79\x90\xcf\xe7\x3a\xa3\xa6\x92\x1c\x78\xfb\x6d\x5e\xb6\x8d\x97\x0e\x99\x26\x19\x52\x23\xea\x00\xcc\x3c\xe4\x50\xd0\x74\x19\x6b\x4f\x5c\x92\xc6\x06\xa7\xc5\x94\xfe\x45\xe8\xc7\x76\x21\x92\x2c\x1b\x98\x16\xd5\x05\xda\x6a\x9c\xa5\x55\x83\xfa\xb6\xeb\x58\x6d\x9b\x3f\x09\xf4\xec\x8f\x4a\x21\x75\xf6\x24\x79\xbb\x2f\x20\x14\x26\xf9\xde\x28\x21\xef\x96\x3c\x41\xc5\x58\xcb\xb4\x3a\xd9\x49\x6e\x7e\x94\x8e\xc9\x8b\x64\x67\x18\x63\xbb\xd9\x64\x0c\x17\xca\x4f\xbf\x90\x3b\x49\x89\x0b\xb9\x93\x18\x55\x90\x2c\xbd\x07\xa5\xb5\x28\x50\x6f\xd2\xd6\x57\x69\x8b\x37\x4e\x44\x25\x35\x6a\x6c\x6c\x24\x8c\x8a\xac\xb5\x21\x8f\x1e\x90\xe1\x5e\x1f\x63\x9c\xf2\x3a\x39\x2a\x75\x88\xc8\xb2\x61\xd5\xe2\x80\x0f\xec\x31\x7e\xa5\xab\x52\x5c\xa7\xab\x68\x5d\x3a\xa8\x1e\xc2\xa0\xcb\x8f\xc5\xaf\xb5\xdd\xd5\x64\xfb\xc1\xf6\xc6\xb2\xfe\x33\x51\x09\x64\x92\xc3\x26\xc5\x2c\xf1\xd8\xa9\x09\xd4\xaf\x83\x60\xf5\xf7\xb6\x05\xc1\x3a\xfd\xf1\xf8\xec\xc1\xdf\xdb\x47\x2f\x5f\x9e\xbc\x1c\xb4\xff\x4f\x31\x6b\x73\xf2\xf3\xaa\xe0\xa4\x6c\xe7\x6d\x39\xc6\x73\xe2\x86\xc3\x2a\x02\x65\x43\xe1\x9d\x72\x8a\x68\xa0\x02\xd8\x1f\xe5\x47\x75\xe6\x75\x2d\xa4\xe4\x5b\x75\xf0\xed\xcb\x9f\x91\x83\x6f\xe1\xc7\x9e\xe4\x19\xa2\xc3\x54\x95\x4c\x93\xa3\xbf\x3f\x3d\x83\x32\xfe\xb1\x35\xa8\x43\xdd\x12\xa6\x86\x3e\xd8\x16\xf6\x60\x9b\x0d\xd2\x3a\x9c\x7a\x29\x07\x14\x74\xb0\x70\x0f\x1d\x45\x70\xfe\x45\x7a\x86\x56\xd0\xa7\xdf\x6e\x96\x14\xbc\xff\xf4\x4c\x3d\x9d\xfd\xbf\x35\x4b\x6f\x0b\x71\xf9\xdb\xcd\x91\x84\xf6\x11\x67\x48\xe9\x91\xb6\xcf\xd4\xe1\x0d\xd7\x14\xea\xff\x57\xce\x17\xc9\x27\x4d\xf3\x75\xcb\x91\x15\x9d\x4e\xf2\x86\x5c\x27\x18\x43\xc0\x43\xc9\xb6\xcf\x44\x2a\x46\xfd\xb1\x1a\xef\x41\xe1\x88\xd5\x2a\x8e\x89\x37\x19\xce\x70\x3b\x2e\x5b\x69\xe3\xf0\x37\x61\xf3\xf4\xec\xe8\x65\x62\x66\x17\x6c\x63\xfb\x16\x3c\x04\xaa\x37\x11\x79\xed\x70\xd9\x1a\x26\xf4\x7c\xf2\xf0\xe5\xd1\x83\xef\xdc\x22\xb6\x4a\x30\xe9\x87\x7a\x98\x15\xde\xb5\x39\x71\x00\x58\x88\x55\xc0\x7c\x7f\x86\xfe\x0b\x89\xe7\xa0\xa0\x07\xc4\x44\xc3\x8f\xd1\x90\x4e\xbb\xd2\xfa\x90\xb5\xef\x00\xdf\xc1\x02\x66\xe9\x07\xd0\xaa\xa4\x51\x83\x8a\xe4\x4d\x4c\x85\xe9\xcc\x55\x98\x4e\x89\xa9\xd1\x4b\xae\xd7\x89\x93\xdf\x2b\x91\x5f\x46\xbd\xf1\xad\xf0\x9f\x32\xa2\x4e\xfb\x22\x7f\x43\xda\x79\xfb\x5f\xc9\xbe\x84\xb1\x9f\xfc\xab\xcd\x96\xca\x8e\xb0\x75\x26\xd2\x5c\x2d\x86\x0d\x18\x42\x9f\xe9\x08\x40\x05\x7c\x6a\x62\x5a\x56\xf9\x6d\x16\xd0\x9d\xad\x0b\xc6\x73\x4b\x4a\x63\x7b\x4e\x51\xf3\x5e\x4a\x63\x94\xb8\x85\xd4\x6f\x43\x40\x92\xc1\x5b\x85\xe9\x55\xce\x1b\xf6\x77\xa0\xa3\x96\x18\x9a\x59\x7a\xa9\x18\x8b\x1a\x90\x48\x1c\x9d\xa2\xe6\x92\x91\xb2\xc6\xce\xfa\x75\x25\x9f\x0a\x8a\x6d\x32\xf4\x5e\x99\x98\x0c\x08\xd2\xf6\x38\x03\xb1\x71\xf2\x61\x6a\xd5\xe0\xbb\xe0\x04\xfe\x58\xa4\xc7\x02\x29\x79\x53\x9d\xc6\x9f\x6c\xbd\xf8\xfc\x77\xc6\xe6\x74\xe2\x71\xc6\x52\x42\x78\x31\x8f\xa6\xb5\x90\xcf\xe6\x83\x1b\x1f\x7a\x4b\x34\xed\x66\x8f\x0b\x7b\xe3\xe0\xb5\x64\xef\x7c\xd6\xeb\x34\x6d\x88\xa3\xa1\xaf\xf8\xaf\x95\xa9\x92\x36\x56\xe9\xdd\xa3\x95\x06\x96\x9a\x10\xed\x54\x52\x8a\x4d\x1b\xbd\xa9\xc5\x0e\x0d\xbb\xaf\x23\x06\x65\x99\x1b\xe0\x9c\x63\xa1\xb8\x4c\x1c\x65\x95\x9d\x45\xa4\x3c\xcb\x10\xdd\xe6\xf2\x12\xf5\x3b\x89\x0d\xaa\xcd\xdc\xb5\x5e\xa7\xc2\x2b\xa1\x29\x93\x48\xa4\x74\xdc\x75\x73\x75\x51\xeb\x4b\x96\x21\xee\x84\x0d\xfc\xc5\x58\x2a\x7f\xf3\xbb\xa1\x44\x65\xdc\xee\xc4\x58\x8e\x5e\xe9\x97\x93\x9c\x1e\x51\xc1\xaf\x5f\xb0\xa2\xd9\xb7\x1c\x60\x99\xa9\x32\xd3\x4b\xed\xfd\x53\x09\x97\xa9\xda\x0c\xab\xe5\x07\x94\xe5\x3a\x72\x3d\xa9\xe2\xd4\xdb\x18\xf6\x45\x18\x0f\x52\x62\x53\xf7\x17\x73\x5c\x4c\x00\x11\x07\x89\xc6\xc6\xdc\xb0\xb5\xae\xa2\x3e\xd6\x62\x24\x87\x87\x59\x0e\x26\x04\xa1\x33\x0a\x2b\xec\x11\xf9\x1c\x97\x76\x14\x26\xb8\xb4\xc6\x68\x33\x3c\x1a\xa3\xa5\xd1\x62\x5c\xe2\xbd\x7e\xab\x8a\x5f\xb8\x72\xe3\x17\xc2\x2e\xb9\x1a\x15\x63\x44\xbb\xf6\xb6\xa6\x84\xf4\xae\xc6\xe6\x85\x65\x59\x8e\x99\x64\xcd\x66\x36\x9b\xec\x78\x72\x44\x82\xfb\x0b\xab\xb8\x58\x76\x3a\x39\xc4\x2e\x48\x97\x38\x47\x3f\x8b\x34\x47\x73\x24\xd0\x2c\x43\x0f\x45\xca\xd0\x2c\xcb\x06\x33\xa5\x39\x62\xd9\x20\xb5\x27\xfe\xe5\x50\xbf\x1d\xfd\xe2\xdb\xaa\xe6\xe3\x6c\x10\x82\xaa\x60\x59\xb7\x23\xb7\xfd\xa0\x83\x0e\x34\xd9\xc5\x4b\xbc\xd7\x93\xc0\x96\xaa\xab\x0a\xa2\x55\xe7\x5c\xca\x81\x0a\x00\xb8\x46\xd4\x1a\x42\xdf\x36\x1c\x94\xb5\x36\xc4\xcc\xac\x31\x7d\x73\xfe\x04\x8c\xd9\x8c\xcd\x71\x3b\xf9\xcb\xbe\x6c\x7e\xff\x2f\x49\x9b\x29\xb3\x65\xc1\x96\x07\x73\x72\x45\xe6\xd6\x80\x99\xcd\x64\x31\xbe\xff\x97\xa4\xdb\x36\x70\xcb\xf6\x44\x2d\xd2\x73\xd2\x58\xf1\x2f\x59\xcb\x0e\xb1\x8d\x3a\x5c\x8d\x6e\xec\xd6\xae\x6e\x2c\x3b\x56\x59\x21\x9e\x88\x74\x66\xc9\xdd\xac\xa8\x89\x5d\x65\xf3\x4d\x2d\x31\xd7\x43\x51\x8f\xb8\x6b\xaf\x60\xee\x8e\x9b\xe2\xeb\xea\xd4\x57\x6c\xc4\xc7\xca\xb5\xae\x42\xd8\x1d\xff\x71\x86\xf2\x4c\x6d\x17\xb9\xbb\x40\x14\xc5\x53\x97\xe2\x4d\x32\xad\x51\x31\xb6\x39\xb6\x54\xff\x2b\xab\xa6\xb1\x73\x47\xf8\xb3\x30\xba\x5d\x2d\xb3\x60\x1d\xcc\xfe\xb5\x90\x47\xd5\x5d\xe3\x17\xb5\x8e\x26\x63\x23\xe4\xec\x18\x7a\xcf\x94\xd9\xaf\xa4\xee\x93\x99\x7f\x15\x68\x8b\xe8\xcc\x91\x60\x52\x2e\xb1\x7e\xd5\xac\x10\xfe\x77\xee\x0b\xdc\x04\x93\x2d\x25\x87\x72\x7c\x96\xab\xe7\x2a\xfe\x74\xf5\x0e\xdc\xc8\xaa\x47\x70\xc7\xaa\x1e\x95\x1c\x57\x15\xd6\xad\x57\x6f\xc0\x01\xab\x49\x97\x7d\x41\x84\x0d\x71\xdb\xe8\x4d\x55\xe1\x3d\x22\x07\xfd\x71\xe8\x8a\x1b\xab\xee\xec\x60\x55\x6d\x4d\x88\xad\x38\xec\x2a\x4e\xdd\x7e\x3f\x92\xff\x62\xab\xcb\x9e\x1e\xc6\x08\x7a\x17\x44\x3c\xd9\xea\xae\xa7\x46\x37\x52\x73\xbb\x97\x9f\xaa\x66\x70\xde\xe9\x5f\xe8\xe6\xaa\x54\xb8\xc6\x06\xc3\x7c\xda\x36\x12\x4e\xaa\xb5\x26\xdc\x1c\x22\x8a\x8f\x08\xdc\x04\x34\x56\x57\x04\x16\xaf\x79\xbc\xd5\x79\xd1\xb8\x3d\xd9\x04\x92\x24\x73\xfc\x19\x0b\xdf\x9f\xb1\xf0\xfd\x19\xed\x24\x3b\x8e\x8c\x81\xd8\x99\xd7\xd0\x76\x86\x55\x61\x1d\x1b\x55\xfd\x65\xdb\xa0\xd6\x25\x1f\x17\x80\x5a\x62\x91\x01\xa9\x7b\x31\x86\x92\x5b\x14\x21\xfd\x65\x1b\x42\xc6\x20\xa0\x99\xfe\xcc\x3a\x8f\x51\x6e\xac\xb2\x83\x99\xad\x1b\x43\xae\xfa\xb8\x0d\xbf\x93\xad\xde\x9f\x8a\xe5\x44\x30\xab\x3b\x8d\x3a\x68\xa9\x5a\x31\x9c\xf4\x17\x1f\xa1\x4d\x9a\xa1\x1f\x04\x1e\x25\x3f\xe5\x57\xb9\x0a\x34\x3f\x48\x50\x72\x75\x6e\x7e\x8f\xd1\xf7\xf2\xf3\x83\x04\x29\x6d\x17\x4a\x9e\x3d\x3d\xfe\x2e\x41\xc9\xd3\xe7\x5f\xcb\x7f\x9f\xbc\x7c\xf0\xfc\x48\x7e\x7c\x70\x2a\xff\x3c\x39\x79\xf9\x3c\x19\xa3\xef\x64\x9d\xa3\xe7\x0f\x8f\x1e\x27\x63\xf4\xb5\x7c\xb8\xe4\x64\x96\xa0\xa4\xe4\x93\x04\x25\xe7\xf9\xe4\xcd\x05\x97\x72\x4b\x82\x12\x15\x23\x30\x19\xa3\x4f\x64\x39\x59\x60\xec\xa4\x09\x16\xee\x1d\xfc\x81\x52\x15\x19\x8b\x79\xe1\xec\xb1\x7f\xf3\x0a\x82\x8e\x04\x63\x4c\xd6\xeb\x1f\x45\xfa\xbd\x90\xa7\xb6\x4e\xe7\x47\x91\x7e\x2d\x90\x5b\xeb\xef\xc2\x4f\x7f\x66\x43\x53\xa7\x3f\x8a\xf4\x3b\x59\x0d\x6a\x7d\x22\xfc\xa8\xf9\xdf\xfa\xd5\x74\xdb\xeb\xb5\x06\x57\x15\xfc\x87\x08\xc2\x18\x23\xa6\x3c\x2f\xa4\x7c\xa7\x50\xa4\xeb\xb5\x15\x31\xcd\x15\x5f\x9b\xca\x02\xa7\x24\xa5\x99\x7d\xd3\x15\xec\x9b\xb3\xe7\xcf\xd2\xac\xc5\xb0\x18\x42\x3a\x54\xc9\x47\xba\x82\xbd\x5a\x2e\x09\x7f\x94\x97\x24\x55\x41\x6b\xe1\x44\x97\xe3\x5f\x64\xf5\x56\x85\x22\x43\x3c\xeb\x74\xd2\x02\x6b\x5a\x9a\xb0\xf9\x13\xc6\x5f\xbd\x7c\x96\xe6\x19\xfa\x51\xa4\x3f\x08\x54\x64\xd9\x30\x59\xd1\x32\x9f\x91\x41\xb2\x9f\x0f\xfe\xae\x6a\x79\xef\xf2\xaa\x77\x84\x47\x4c\xa8\x6b\x17\x9f\x86\x06\xdb\x05\x6d\x93\x61\x5a\x62\x81\x72\x9c\x2c\x39\x5b\x26\x19\x84\x27\xe9\x0a\xf6\x8c\xbd\x35\x5d\xc8\x54\x31\x53\x04\x95\x98\x67\x03\xf9\x98\x0b\xc1\xe5\xa3\xc8\x90\xfa\x84\x31\xce\x3b\x9d\x34\x29\xc5\xb5\x8a\x17\x50\xfa\x90\xd6\xeb\x94\x62\x62\x06\x0a\x15\xb8\x44\x29\xc3\x82\x8f\xa8\x3f\x68\xe3\xac\xd3\x61\xa3\xc2\xaf\x3c\x96\x04\x63\x9b\xcd\xd0\x7b\x9b\x28\x7c\x3a\x28\x55\x76\xfb\x7c\x03\x72\x91\xe0\xf8\xfd\xc3\x57\x67\x67\x27\xc7\x83\xf7\xf0\x7e\xaf\x87\x66\x8c\x2f\x06\x7b\xbd\x0d\x7a\x7a\xfc\xe2\xd5\x59\xed\x3d\xca\x57\x72\xfc\xc1\x5f\x45\x3e\xce\x8b\x52\x40\xf1\xd3\xa3\x67\x47\x8f\xce\x06\xef\x6d\xfd\x93\x17\x67\x4f\x25\x60\xfb\xe2\xec\xe8\xef\x67\x0f\x5e\x1e\x3d\x70\x5e\x3d\x7b\xf0\xf0\xe8\x99\xf3\xfc\xe4\xe9\xd1\xb3\xc7\xa7\x47\x2e\x98\x67\x47\x5f\x1f\x1d\x3f\x76\xe1\x3e\xfc\xd6\x6b\x68\x53\x2d\x39\xce\x3f\x86\x14\x67\xc1\x53\xfe\xbb\x4d\x12\x60\x71\x2c\xf8\x9f\x59\x50\xfe\x00\x59\x50\xe0\x2c\xc6\xf1\xfb\x09\x9b\xcb\xdd\x68\x39\x78\x3f\x25\x4b\x71\x39\x38\x44\xe7\x64\xc6\x38\x19\x24\xf7\x61\xd8\xbe\xba\x6f\x4a\x7c\x95\xa0\x7c\x26\x08\x1f\x24\xf7\x3f\xb5\xef\xee\x7f\xaa\x4a\x25\x1b\xa4\x46\x59\x83\xe9\x87\x60\x9c\xca\x55\x8d\x73\x36\xbd\x6e\x6e\x18\x3e\x7b\x15\xe1\x85\x0b\x60\xc6\x98\xd8\x02\x40\x7e\xf6\x00\xc0\x0b\x17\xc0\x25\xc9\xa7\x5b\x00\xc8\xcf\x1e\x00\x78\xe1\x02\xe0\xa6\xf6\x9d\x06\xfc\xef\x0b\xee\x41\xe0\x5f\xd5\x3b\xe2\x70\xa0\x9c\x47\x6e\x8b\xb0\xe8\x2a\xe0\xfb\x74\x5f\x74\x01\x56\x8b\xab\x6c\xaf\x72\x5f\xc4\xb9\x0e\x68\xc3\x81\xc2\x54\xfa\x7c\x39\xff\x4b\x9b\x3d\xbf\xec\x4e\x2e\x8b\xf9\xf4\x98\x4d\x49\x39\xea\x8d\xb5\x85\xf8\x29\x4f\x4b\x44\x50\x91\xa1\x39\x5e\x8d\x7a\x63\x34\xc1\x2b\x30\xaf\xad\x34\x73\x8c\xa4\x04\xcd\xd1\xc4\xe1\x62\x25\x77\xf3\x77\x4f\x3c\x77\xe1\x44\x98\xf8\x32\xfc\xfa\xbd\x70\x50\x4c\xee\xdb\x4e\xab\x69\xdd\x80\xf5\x96\x84\xb4\x01\x95\xf2\xfc\x5a\xb2\x9c\x9e\xe4\x2c\x0e\xae\xe6\x3e\x4a\x73\xb5\xbe\x3e\x82\xee\xf5\x2a\x74\x56\x1f\x97\x67\xcf\xff\x0b\x78\xf6\xe4\x4f\x9e\xfd\x47\xe0\xd9\x76\xbe\x67\xbc\x12\xad\xfd\x45\x56\x5e\x5d\x7c\x95\xec\xf3\xfd\xe4\xfe\xa7\xf0\xb3\xa5\xdc\xbf\x4e\x79\x2a\xba\xb3\x82\x97\x02\x82\x67\x21\x82\x68\x86\x98\xb2\x31\xce\xc1\x90\xae\xb6\xe6\xc1\x30\xd2\xb6\xb8\xe4\x9e\x43\x83\xbf\xea\x8f\x4f\x53\x81\x92\xf2\xea\x42\xaf\x7b\xc9\x9a\x4a\xc2\xc5\x83\xe9\x4f\xf9\x84\x50\x01\xb2\x7b\xa2\x38\x18\x81\x73\xcf\xfd\x49\xc1\x27\x92\x47\x7e\xaa\x7f\x24\x59\x84\x1f\x68\x94\xe4\xc1\x87\xd7\x79\xc2\x7a\x9d\x5c\x0a\xb1\x1c\x7c\xfa\xe9\xdb\xb7\x6f\xbb\x6f\xef\x74\x19\xbf\xf8\xf4\xb0\xd7\xeb\xc9\x9e\x27\x50\xa7\xea\xb1\xb2\x09\x5c\xe6\x13\xf2\xea\xe5\x53\xe7\x9e\xf2\xf2\xe3\x32\x8f\xe9\x7f\x01\xf3\x58\xfc\xc9\x3c\xfe\x50\xcc\xe3\x6a\xdb\xf6\x3d\x2d\xae\x92\x2a\x0c\x98\xcb\x5a\x60\x2d\x25\xe0\x35\xb5\x7d\x6d\x97\x64\xc2\xe8\x34\xc9\xd0\x61\x7c\x2f\xaf\x30\xb9\xfe\x2f\x58\x1d\x17\x7f\xae\x8e\x3f\xd4\xea\x38\xff\x28\x1b\x82\x1c\x93\xd7\x1c\x6f\xdb\xb0\xd0\x5b\x8e\xdf\xcb\x55\x54\x5c\x50\x85\xf1\xa0\x8f\xa6\xa4\x9c\x0c\xfa\x48\x14\x62\x4e\x06\xfd\x0d\x7a\xc7\x03\x0a\x00\xab\xc1\x7b\xa3\xe4\x3c\x41\xc9\x79\x71\x21\xff\x9d\xb3\xc9\x9b\x9f\x57\x4c\x10\xf9\xc0\xa6\xd7\xf2\x0f\x4f\x50\x32\x01\x6b\x28\xf9\x83\x4d\xe5\xb7\xa9\x5c\xac\x72\xbd\xa3\x64\x3a\x97\xff\x88\x04\x25\x64\x01\xff\x9c\x13\xf9\xf1\xb2\x2f\xff\x39\x94\xff\xdc\x91\xff\xdc\x95\xff\x7c\x26\xff\xf9\x5c\xfe\x43\x72\x28\x24\x41\x16\xf2\xff\x85\x6c\x7e\x5e\xc0\x3f\x10\x47\x29\x41\xc9\x22\x2f\xa8\xfc\x43\x44\x9e\xa0\x84\x32\xc0\x84\xc9\xe6\x96\xf2\x7f\x2e\x11\xe1\xab\x73\x89\x64\x29\xff\x5f\xe4\x73\xf9\xb1\x5c\xe6\xb2\x5a\x29\x38\x03\x30\xa5\xe0\xc5\x1b\x59\xb6\x5c\x9d\xc3\xbf\xb2\xb6\x3a\x6a\xa0\x44\x48\xc4\x57\xf2\x7f\x59\xf5\x2a\xe7\xc9\xb8\x3b\x63\xfc\x28\x9f\x5c\xc6\x32\xd6\xbd\xe3\x23\x32\xc6\x7d\xed\x0c\x74\xc4\xf1\xa7\xa3\x7f\x8a\x83\x7f\xf2\xf6\x3f\xdf\x3d\xe8\xfd\x73\xd5\xff\xfc\x4b\xf9\xef\x97\xbd\xa3\x7f\xae\xe4\xe4\x1c\xc0\x9f\x07\xf2\xdf\xc3\x2f\xe1\xdf\xbf\xc2\xbf\x4f\xe4\xbf\x9f\x3d\xf9\xe7\xea\x4e\xaf\xd7\xfb\xe7\xea\xc9\xd1\x93\x27\xe3\x4f\xd1\x09\xc7\x4e\xd0\x5f\xeb\x69\x3e\x65\x13\xb0\xcd\x1b\xca\xf9\x1a\x98\xa7\xea\xd4\x77\xca\x8d\xe5\x82\x5c\x13\xc6\xd5\xdd\x11\xd8\x0a\x65\x69\xc4\x30\xbd\xc7\xee\x65\x05\x66\x88\x61\xd6\x75\x8c\xf0\x2c\x63\x7e\x08\xac\x18\x82\xae\x69\xe6\x37\xa2\xa8\x18\x03\x09\x3e\xe2\xe8\x01\x6f\x76\x9b\x3e\xe7\xfe\x75\xa3\xc1\xd3\x9a\x43\x11\xb1\x5a\xbe\x2a\xc9\x9c\x94\x65\x15\xc0\x22\x66\x99\x52\x2f\x58\x8b\x68\xbb\xf2\x3f\x7b\x0d\x46\x77\xa5\x58\x62\xa1\x7a\x42\x90\x4a\x48\xd5\xba\x58\xea\x38\xa1\x88\x21\xe8\x5c\x5d\x59\x10\x63\xfc\x9a\xaf\xd7\x20\xbd\x4a\x8e\x81\x28\x7e\xcb\x47\x56\xc5\x3c\x06\x35\xad\xfb\x75\xaf\x9f\x21\xde\xe9\xec\x51\xe0\x11\x40\x4c\x11\xf7\x46\xcd\x13\x00\xc9\x76\xde\x4e\xf6\xc9\x7e\x22\x99\x49\x31\x25\xed\x9c\xb6\x4f\xbf\xff\xba\x3d\x61\x54\x90\x77\x22\xf1\xa3\x6e\xc6\x87\xe0\xf8\x34\x7d\xcd\x11\xb1\x83\xbd\x6d\xb4\xc2\xcb\x44\x97\x2c\x6a\x86\x32\xfe\x67\xb0\x74\x8a\xd5\x96\xbb\x7c\x03\x04\x8d\xd1\x73\x1d\xa0\xd7\x9f\x56\xa4\x0a\xc5\xa6\xee\x8c\xbc\x13\x52\x2c\x68\xbc\x03\x0a\xba\x67\xca\xd7\xfa\x67\x53\x4c\xd5\x32\x6c\x6c\x81\xf6\xc8\x04\x05\xd4\x96\x16\xf7\xd2\xfa\x9d\x92\xfb\xc6\x2e\x14\x51\x05\xda\x34\xcb\x45\x64\xe8\xda\xac\x1c\x6d\x38\x00\x0f\xd6\xc5\x26\xb3\xf3\x76\x21\xf7\x2c\x02\x3e\xe5\x71\x4a\x0e\x12\xa0\x6c\xed\x43\x45\x1b\x2a\x33\x80\xf0\x57\xe0\x03\x21\x78\x71\xbe\x12\xe1\x94\xc9\x43\x23\x1d\xfa\x45\x20\x1c\xa3\x9c\xa9\x81\xff\x5e\x13\x84\xd8\xa4\x0f\xb8\x14\x44\xce\x38\x21\x8f\x8c\x90\x51\x30\x8a\x45\xab\xf2\x17\x13\x2d\x8a\x0b\x54\xe0\x94\xe3\x13\x9e\x75\x3a\x57\x3c\xe5\xd9\xb0\x61\x14\x79\xf6\xfe\xd2\x8e\x5f\x4b\x71\xbc\x29\xaf\xa7\xaa\xe5\x99\x13\x51\x43\x13\x97\x99\x6b\x1a\x4c\x66\x92\x64\xc8\xe6\x4d\x5f\x44\x86\xba\x99\x98\xf5\xb8\x38\x57\x53\x59\x34\x4c\x84\x5f\xdf\x4b\xa9\x2b\x01\xe8\xe3\xf6\x5e\x1f\x31\xcc\x87\xbc\xbb\xe4\xe4\xaa\x60\xab\x52\x33\xe9\x81\xe8\xce\x73\xcd\xd2\x5b\xac\xd3\x61\xae\x7c\x21\x09\x1c\xee\xa8\xf6\x7a\x21\x33\x77\x57\x96\x09\x73\xc9\x75\x08\x9c\x1c\xdf\x0e\x43\x63\xf3\x29\x45\x47\x4e\x16\xec\x8a\x00\x3a\xb1\x36\x32\x94\xc3\xdc\xd3\x6c\x20\xe7\xb7\x6e\xe8\x62\xdd\xfd\x05\xd8\xb3\x83\x62\xb0\x7a\x15\xd5\x15\x04\x47\x8c\x5d\x6b\x8c\x57\x6b\x8c\xde\x70\x8d\x15\xb7\x9c\x78\xe3\x8a\xa3\x27\xbe\x58\xaf\x13\xc9\xeb\x8b\x5b\x13\x80\x04\x64\xa3\x7b\x54\x57\x94\xce\xc5\x1a\xca\x31\xe3\x31\xc7\xc4\x7c\x78\xab\x56\x06\xb9\xec\x63\x8e\x74\xd0\x4b\x39\x47\x22\xdb\xa4\x27\x1c\xcc\xbf\x6b\x2c\x3a\x32\x55\xa0\xcf\xe1\xc1\x64\xd1\x5f\x39\x59\xab\x6a\xb2\xe6\x37\x9c\xac\xc9\x2d\x27\xab\x40\xcc\xbb\xb1\xc6\x18\x33\x3d\x61\xec\xe6\x63\x28\xa1\x0c\x7c\x39\x60\x0f\x63\x7e\x4b\x00\x33\x38\x80\xe8\x84\x56\xce\x14\xa0\xd7\x3c\x43\xa4\xfb\xf8\xe4\x79\x8d\x5d\x16\x9b\x2c\x7d\xc4\xd7\xeb\xf4\x11\xc7\xef\x37\x7a\x05\xbf\xe1\x4d\x5b\x0d\xaf\x64\x32\xcb\x24\xaf\x77\x31\x49\x2b\xb5\x71\x44\xab\x2e\x2a\xf9\x91\x6e\xdb\x88\xb6\xec\x19\x52\x50\x88\xed\x0b\x0d\xb5\x6b\x69\xbc\x24\x6f\xad\xed\x38\xea\xbd\x0f\x45\x71\xa4\x38\x1a\x12\x44\xf0\x3d\x0d\xf7\xbd\xe0\x7b\x24\x9f\x58\xa4\x4c\xa4\x37\x6a\xf6\xa5\xbc\xd1\x20\xf6\x68\x83\xfb\xd8\xd2\xb0\x7c\x83\xb2\x29\x91\x07\x45\x8c\xb1\x84\xd4\x7d\x7c\xf2\xe8\xd5\xf3\xa3\xe3\xb3\xd7\x4f\x5e\x3e\xf8\x1a\x7e\x1c\x9f\x3c\x3e\x92\x84\x33\x4c\x29\x16\xbe\xbc\xef\x6c\x15\x26\xed\xb0\xb3\x23\x28\x2c\x90\xd5\xd6\x42\x3e\xf7\x41\xba\xb5\x60\x4e\xf4\x61\x37\xd2\x53\xb9\xf9\x6c\xeb\xa9\x36\xb6\xf7\x25\xb1\x20\x60\x7c\xd0\x2e\x05\xa6\x1d\x6b\xec\x36\xb2\x68\xbd\xf6\x83\x99\x20\xf5\xf4\x75\x0d\x3d\x77\x8f\x48\x95\x20\x63\x97\xd8\x73\x1e\xa6\xda\x16\x88\x61\x82\x72\xcc\x51\x89\xf3\x61\x5e\xdb\xc1\x0b\x67\x5a\x56\xce\xd1\xa2\xb2\x68\x01\x66\x54\x59\xb3\xa8\x19\x2a\x9c\x64\xe5\x2d\x5d\x36\x1f\xa6\xc5\x2e\x6d\x1a\xcd\xd0\x0a\x3b\x6d\x66\x83\xdc\x95\x19\x64\x79\xcd\xab\x87\x69\xbe\x05\x18\x24\x38\xd5\xe0\x6a\x9d\x02\x87\x38\x6f\xec\x20\x0c\x03\xbb\x21\x3c\x16\xc2\x03\x1f\xa8\x4a\xb2\x60\x9a\xcf\xcd\x71\x39\x2c\xdd\x09\x19\x14\x0e\xc9\xb7\xc2\x01\x9b\xa3\x95\x52\x9c\xbc\xe0\xe8\x8c\xe3\x37\xbc\xf5\x82\xe3\x33\xf8\x7d\xc2\x41\xba\x3c\xf9\xb8\xe2\x25\xff\x53\xbc\xfc\xb7\x88\x97\x2f\x78\x36\x50\x73\xfc\xa7\x84\xf9\xfb\x97\x30\xcf\xb8\x42\xe1\xa5\x5c\x8c\x7f\x8a\x9a\xff\x51\x51\xf3\x8c\x83\xac\xf9\x13\xc7\x8f\x78\x4c\xde\xac\x36\xba\xe3\xff\x82\xab\x96\x67\x7f\x5e\xb5\xfc\xa1\xae\x5a\x1e\x7f\xdc\xbb\xf7\xa7\x81\xc9\x82\xe6\x97\x92\x27\x91\xba\x0a\xd8\xb0\xa7\x5f\xb8\x72\x9e\xd5\x4c\x4a\xc1\x80\x84\x65\x30\xef\x0c\xd3\x6e\x65\x0d\xab\x49\x5e\xd9\xc9\x4a\x8e\x3e\x84\xea\x2c\x1b\x3c\x51\x7f\x2b\x6c\x9e\x70\x4f\x9f\xa7\xad\xa8\x87\xb2\x83\xaf\x78\x5a\x9b\x59\x6d\xca\x9d\x80\x0d\x6d\xa2\xac\xb9\x13\x63\xff\xaa\x32\x80\x75\x3a\x09\xd0\x1d\x84\x97\x50\x83\x3b\xfc\x81\x47\xe1\x24\xca\x94\x16\xea\x75\x3a\x89\xdc\x85\x27\x02\xee\x27\x6c\xcd\xef\x39\x44\x01\x7a\xc8\x3d\xcb\xf2\x5f\x9a\xb1\xfe\x0e\xb0\x96\xbf\xbe\x81\x3a\x72\xc0\xbe\xd9\x72\xb9\xf0\x98\xd7\x73\x0a\xc4\x83\xb1\xee\xd0\x5d\xea\x80\xc6\xe0\x23\x02\x29\x18\xbc\x7c\x18\x7e\x1a\x4d\x49\x5a\x7d\x35\x7a\x15\xa5\xae\xd7\xc6\x42\x3e\x73\xd8\xbb\x4a\x37\xe1\xbc\x4d\x92\x96\xc7\x89\xaa\xb0\xc1\x5e\x35\xfd\xdb\x46\xe8\xdd\xc8\x63\xd1\xcf\x3c\x65\xd9\x7a\x5d\x84\x87\x66\xdb\x73\xc4\x50\x98\x4f\x6b\xb5\x9c\xe6\xa2\xe1\xe8\xab\xb5\xb6\x0a\x6d\xee\x74\x86\xaf\xd7\xd0\x41\x3e\xa4\x43\x18\x92\xc7\x27\xcf\xd3\x2c\x7a\xc4\xa5\x55\xeb\xd9\xa0\xb9\xac\x8b\x65\x36\x30\xf7\x3e\xd5\x67\xab\xd1\xdf\xa4\x19\x7a\xd8\xa8\xba\xb0\x34\xf3\xb8\xda\xa9\x8f\x6f\xb8\x53\x3f\xbb\xad\x72\xe2\x67\x9e\xf2\x6c\xbd\x4e\xc5\xc8\xa2\x3e\xc6\xe1\xe9\x71\x9b\x6a\x21\x38\xe7\x4a\x00\x2d\xbe\x6b\x40\xe5\x9c\x6c\x1f\xc8\x50\xbb\xb1\x7b\x8a\xfd\x1e\x20\xe8\x98\x0e\x5a\x16\x82\x97\x75\xb4\x68\xf6\x8d\x7b\xa6\xfd\x99\x3b\x4a\x88\xca\x17\xa4\xa2\x7f\xe5\xd1\xf8\x1f\x9e\x39\xab\x14\x8a\x17\x0c\x0e\x16\xff\x10\x50\xa1\x5a\x3e\x34\x54\x63\x34\x0e\x6d\xa4\xa1\xa0\xec\xcd\xda\xda\xa4\x0f\xb5\xe4\xfb\x03\x84\x18\x48\x7f\x0f\x84\x2f\xba\xb0\x05\xe0\x5f\x48\x1a\x92\xfb\x76\x5a\xb3\xe4\x0e\x5b\x1b\x00\x41\x4c\x81\x69\x15\x7b\x18\xb3\x4e\x27\xd5\xef\x31\xb3\x44\x96\xa5\x7a\xcb\x51\x03\xf1\xfd\xef\x67\x20\xb4\x68\xc8\x9d\x70\x77\xbc\xd3\xd9\xeb\xab\xbf\xa9\x14\xa6\xd4\x9e\x87\xf7\x7a\x1f\x36\x50\x2d\xea\xc0\xd8\xe3\x86\x22\xb2\xb4\xda\x4e\x33\xf4\xdd\x9f\xab\xea\xb6\xab\xea\x1b\x9e\xa1\xaf\x9b\xe4\x06\x57\xca\x75\x64\x58\xe1\xca\xb0\x29\xc5\x62\xc4\xc7\x59\xb7\x92\xbe\x31\x75\x1e\xe4\x0e\x09\x11\xed\x2b\xb9\x15\xef\xf5\x90\xa6\xe4\x82\xb6\x29\xd0\xba\x91\xd6\x25\x81\xa0\x46\x39\xb6\xfb\x86\x5c\x4b\xae\x1b\x1e\x53\xf5\x78\x18\x9d\x42\xa7\x43\x52\xf7\xb8\xc0\x21\x72\xb8\xda\x12\x90\xd8\x78\xae\xfd\x9f\x7c\x34\x8b\xa3\x1f\x39\xfa\x5b\xa3\x44\x66\x5c\x0c\x3e\x09\xe4\xb2\x72\xce\xaa\x00\x38\x93\x2a\xb2\xbc\x09\x80\x43\x4c\x6e\x0e\xac\x05\x8a\xa5\xcd\x59\x81\x8b\x4a\x9c\xe3\x8c\x39\x37\xe8\x4e\xac\xe5\x0f\xce\x27\xac\x82\xdb\x28\xb7\x60\xba\xdf\x77\xcf\x34\x98\xaa\x7c\x1d\x23\x3e\xc6\x0b\x57\x91\xe8\x29\x5e\x95\xf6\xb5\x2b\x4f\xb4\xe9\xfb\x92\xcc\x67\x03\xa1\x42\x8a\x94\x52\x96\x0f\x13\xe9\x47\x73\x1f\xdf\x30\x1d\x25\xa2\x0e\xae\xdc\xe0\xaa\x9c\x98\x31\x07\xf7\x65\xf0\x5b\x0e\x70\xa5\x21\xae\xa1\x29\x46\x11\x8b\xf2\x22\x97\xf8\x7c\xe6\xbb\x81\xcb\x39\x1c\xf5\xc6\x7a\x1a\xeb\xce\xf0\x64\x3e\xab\x07\xef\x6f\x1b\x37\xea\x34\xcc\x96\x6d\x93\x9e\x34\x9a\x57\xc8\x5a\xa1\x61\xc6\x4e\xb7\xe8\x86\x4a\x36\xfb\x4b\x13\x8a\x96\x04\x6b\x55\xab\xfc\x29\x4d\x75\x2b\x6a\xad\x27\x2c\x8f\x05\xe5\x2d\x89\xf6\x6b\xad\x95\xf6\x07\x91\x38\xe5\x7b\xb5\x84\xc1\x55\xba\x85\xdb\xb5\x11\x8e\xdf\x0d\xaa\x44\x46\xcf\xe0\x56\x2d\x5d\x52\xaf\x17\x1b\x3a\x9b\x48\xbc\xfa\x16\xa9\xe9\xa4\x9f\xa8\x57\x75\x39\x48\x7d\xbe\xa2\x55\x83\x4c\xbc\x55\x91\xc0\xee\xe7\xb2\x98\x4f\x23\xb5\xd4\x5a\xaa\xd6\x81\x0e\xa0\x9e\xd5\x38\x5a\xc0\xcf\x42\x6e\x56\x27\xcc\xf0\x68\x49\xbe\xc2\x4e\x33\xb5\x20\x7e\x2f\x73\x7a\x61\x58\xf6\xc3\x57\x5f\x0f\x4c\x90\x99\x0b\x22\xda\x9f\x28\x8b\xb0\x19\x67\x8b\x36\x64\xe9\xb8\xd7\x56\xf5\x4d\x42\x0c\x0f\x66\x64\x71\x93\xc0\x31\xbe\x24\xa1\x15\xdc\xbf\x15\x41\x0f\x33\x2c\xf4\xf1\xf0\xef\x4d\xbb\x4f\x64\xdb\x99\x5c\x92\xe9\x6a\x4e\xa6\x4f\xe5\xfe\x37\x9f\xeb\x3c\x62\x4e\xa0\x93\xb0\x80\x89\xdd\x53\x2f\xf1\x0a\x24\x11\x53\xa0\x19\x92\x5f\xae\x2a\xa0\x54\x7e\x53\x1b\x77\xa6\xf6\xa5\x06\x52\xc9\x3e\xb1\x1a\xfa\x4b\xad\xc6\x94\x18\xf5\x61\x53\x64\x15\x9b\x8a\x33\xb6\xfe\x6b\x28\x56\xb1\x0d\x22\x78\x9a\xa0\xe2\x3e\xc9\x4c\x0b\x3d\x02\xb1\x06\x6a\x3d\xf2\x1b\x08\xba\x15\x6f\xc0\x0c\x74\x30\x63\x51\x7e\xd6\x30\xfd\x7e\x38\xf4\x46\x1a\x68\x08\xa3\xa2\x8b\xfb\xf3\xbc\xb5\xf9\x38\xe9\x34\x60\x11\xd0\x4f\x1c\x89\x69\x31\x7d\x2c\xe7\x9a\x5d\xd7\x99\xa3\x43\x04\xf1\xca\x13\xb6\x58\x14\x22\x14\x4d\xac\x83\x68\x95\xb6\x0d\x4d\xd0\x0c\xc7\x29\x03\x2d\x71\x8c\x26\x40\x24\x21\xb8\x77\x8f\xdc\x9f\x19\x71\x9a\xec\xef\x67\x02\xcf\x46\x64\x8c\x96\x23\x32\xae\x48\x30\x15\x26\x35\x65\x9c\x38\xd0\x14\xc7\xc8\xc2\x11\xd1\x2e\x7d\xb5\xf3\xe5\x88\x8f\xd1\x74\xc4\xc7\x15\x15\xa6\xfa\x7e\x53\xe7\x70\x73\xc6\xc6\x89\xbe\xb6\x70\x63\x51\x2d\x46\xc5\x58\x95\x63\xd7\xa9\x49\x2a\xb9\x95\x9c\xd0\x75\xc3\x77\x33\x87\x8e\x03\xed\x95\x69\x8a\xed\xef\x67\x39\xbe\x1a\xb1\x31\x2a\xf1\xb5\xfc\x03\x37\xed\xb2\x5e\xaa\x73\x8a\x5e\xe0\x9b\x90\x11\x3a\xdf\x5a\x4c\x35\xae\xd2\x08\x5e\xb8\x69\x04\xe7\xf8\x62\xb4\x1a\xa3\x09\x3e\x97\x7f\xe6\x7a\x94\xd3\x89\xd1\xc2\x7d\xbb\x45\xed\x1a\xf2\xd9\x4b\x92\x2f\x8d\x74\xaf\x93\xa4\xf7\x0c\xf7\xf9\x9a\x57\xd9\xed\x25\xf9\xed\x4e\x4c\x7f\x41\xc4\xf9\x75\x3e\xd5\x37\xeb\x1a\x60\x95\xa8\x9e\x2d\xfb\x1f\x08\x63\xbf\xef\x42\x39\xfc\x50\x28\x87\x2e\x94\x3b\x1f\x0a\xe5\x4e\x66\x73\xe7\xfb\x76\xc2\x64\x44\xba\x0f\xe6\x73\x36\x91\x44\x8f\x7b\x63\x9c\xd8\xa7\x04\xc9\x8f\x4f\x38\x21\x53\xdc\x1f\xe3\x04\x7e\xa9\x97\x2f\x56\xfc\x82\x4c\xf1\xe1\x18\x27\xea\xa7\x7e\xcd\x0a\x2a\x08\xc7\x77\xe4\x7b\xf5\x3b\xd9\x64\xe9\x8f\x7c\xbd\x4e\x7f\x74\xcc\xc5\xfe\x71\xf3\x4d\x15\x26\xdb\x86\xf1\xd2\xb3\xad\x3f\x41\x6c\x4c\xf3\xa4\x4e\xbe\xf1\x7d\x48\x32\xa6\x3a\xeb\x92\xa0\xdd\x8c\xf5\xfb\xfb\xe3\x88\x7c\xa7\x06\xb3\xf1\x00\x00\x40\x22\x92\x4c\xad\x9a\x65\xd4\xba\x06\x48\x18\x4e\x9d\x45\x2e\xc7\xbd\xe6\x63\x20\x54\x72\x35\x60\xde\x15\xaa\xa8\x87\x74\x8e\x34\x82\x9d\xb1\xf0\x84\x2c\xf5\x6a\x1f\xdf\x41\x41\xa7\x66\x05\x2d\xca\xcb\xe7\x41\x7b\x7e\x1c\x22\x68\x56\x32\x51\xee\xa6\xdb\x6f\xb9\xdf\xf6\xfb\x63\xcc\x0f\x82\x5e\xc8\x73\x68\x93\x18\xac\x60\xd4\x06\x78\xeb\xf0\x1a\x3c\x6a\xb5\xf4\xe4\xd7\x26\xd5\x19\x2f\x82\x7a\xe8\x47\x6e\x88\x52\x0d\x97\xb8\xc1\x70\x45\xba\xc4\x22\x67\xcd\x30\x7d\xc9\x8c\x93\x26\x7c\x46\x64\xff\x70\x8c\xfb\xf5\x00\xb2\xf9\x64\xdb\xce\x88\x7b\x28\x77\xa6\xc3\x04\x02\x55\x5d\xd4\x79\x49\x75\xbe\x10\x49\x54\xce\x76\x58\xde\x93\x3d\xc9\x8a\x59\x2a\x70\xae\xa6\x31\x87\x19\x43\x29\x85\x5f\x87\xe3\x6c\x0f\x63\x39\x3a\xb0\x7c\x21\xb8\x25\x86\x17\xb0\xca\x33\x55\x06\x1f\x22\xb6\x8f\x79\x15\xd3\x52\x15\xb1\x1c\x42\xf9\xfa\x14\x58\xdc\x2b\xee\x63\xb2\xcf\x61\x4b\x5b\x8d\x8a\x03\x36\x86\x90\xa2\xad\x1c\x08\xfd\x80\xa9\xe0\xd7\xba\xba\x9e\x90\x4e\x27\x35\x9f\xb5\xf0\xad\x97\xb7\xf3\xfb\x80\xe9\xfd\x81\xd0\xdb\x71\x0c\x79\x36\xf8\x87\x56\xf7\xbc\x66\xcb\x09\x9b\x12\x78\xf7\xad\x66\x8b\xb2\x90\x11\x34\x19\xa8\xab\x44\x09\x05\x5e\x45\xef\xf3\x34\x84\x26\x2a\xd5\x2d\x98\x0e\x10\xaf\x5d\xdd\x03\xd1\xd4\x03\x27\x4f\x59\x1e\x5c\x06\x42\x90\x5b\xb5\x55\x56\x2f\x5b\x61\x87\x5f\xab\x94\xe9\x4e\x20\xe7\xd7\x82\xe7\xb4\x54\x91\xb9\x9c\xd7\x4b\xce\x2e\x78\xbe\x80\x7e\x12\x73\x97\x16\x34\x69\x74\x64\x61\xab\x98\xc6\xc6\x45\xb0\x47\x8c\x4e\x75\x12\xd3\xad\x41\x14\x65\x9b\xe7\x31\x55\x49\x78\x01\xda\xc4\x3d\x42\x44\x6b\x80\x1e\x9f\x3c\x6f\xaa\x1b\x76\xa6\x56\xf7\xe9\x94\x50\x51\x88\x58\x3c\x40\xc8\x8b\x44\x68\xb9\xe2\xe4\xeb\x55\x31\xcd\x52\x92\xed\x27\x49\xa0\x42\x20\x17\x85\x37\xbd\x7e\xfa\xa7\xda\x9c\xa0\x24\x6f\x5f\xa8\x34\x93\x6d\xe7\x35\xa4\x99\x3a\x27\x17\x2b\x8a\xda\xe7\x2b\xd1\x66\x94\xb4\xf3\x39\x27\xf9\xf4\xba\x4d\xde\x15\xa5\x28\xbb\xed\x1f\xd9\xaa\xbd\xc8\xaf\xdb\x97\xf9\x15\x69\xe7\x6d\x4a\x4a\x41\xa6\x2e\x90\x24\x8b\xd1\x00\x79\xdb\xfe\x3b\xaf\x49\xf5\xcd\x87\x33\xa7\xb2\x23\x42\xd7\xd5\x35\x5b\x0f\x60\x01\x10\x2d\x23\xd7\x81\xdc\xe2\x90\xe5\x82\x6c\xa8\xb6\xa5\x81\xdd\xa7\xa8\x18\x7c\xbf\x56\x7c\x10\x1a\xcf\x47\xc1\x18\xe8\x72\x37\x3d\x25\xe1\x10\xc6\xff\x65\xef\xdf\xbb\xdb\xb8\xb1\x05\x51\xfc\x7f\x7e\x0a\xa9\xd6\xf9\xf1\x14\x7e\x82\xca\x92\x93\x39\x33\x87\x0e\xa2\x51\x6c\x39\xd1\x6a\x5b\x72\xcb\x4a\x32\xbd\x38\x1c\x75\x89\x04\x45\xb4\x8b\x28\x36\x0a\x25\x5b\x2d\xf2\x7e\xf6\xbb\xb0\xf1\x28\xa0\x0a\x45\x51\x4e\xd2\xb7\xd7\x3d\xf7\x1f\x89\x85\xf7\x63\x63\x63\xbf\xb0\xf7\xa0\xe7\x7c\xdb\x16\xd2\x56\xbb\xb9\xd5\x65\xbc\x2d\xdb\xf3\x35\x07\xe4\x3c\x36\x23\x83\x51\xe2\xc3\x31\xf8\xc6\xc5\x5a\x5a\xaf\xd3\x00\x0f\x99\x62\xab\x72\x55\x17\xb9\xa4\x3f\xd4\xac\x90\x8c\x57\x29\x42\x6d\x4a\xa4\x5d\x24\x72\x7e\xdf\xc0\x94\x02\xb2\xde\x83\xf5\x6d\xd4\xb0\xbf\x48\x8e\xf8\xd5\xf6\x96\x7d\xa8\xf8\xbf\x82\xae\x86\xf3\x7f\x7d\x33\x3a\x4f\xfe\xf7\xff\x99\xd1\xfd\x17\x30\xa3\xcb\xff\x10\xcf\xd3\xe0\x50\xac\xef\xa8\x7b\x76\x58\x3c\xcb\x8b\xcf\xf9\x43\x75\x45\xef\xf3\x82\x29\x5c\x8f\x6d\x20\xc0\x7d\x42\xd8\x70\xc8\x06\x39\x0f\x49\xae\xb9\xc8\x97\xf4\xa3\xcc\xa7\x9f\xe0\x6a\x95\x19\xfc\xf6\x82\x1d\xb4\x49\x4b\x61\x89\xaf\x26\xcd\x3e\x50\x5f\x12\xe1\x0c\x70\x0c\x4d\xd6\x1a\x0e\x29\x63\xb4\x17\xfd\x42\xa7\xdd\xf7\x45\x41\xc4\xef\x66\x98\x5a\x7b\xa7\x2f\x93\x07\x28\xf9\x6a\x9f\x67\xac\x3a\x5b\xae\xe4\x43\x8a\x5e\x21\x73\xa2\x52\xe1\xd5\xd4\x0f\x1d\xac\x43\xf2\x14\xa1\x13\x01\xba\x86\x1a\x8e\xc1\x82\x55\xc6\xb8\xaa\xe9\x06\xa2\x26\xb5\x69\xbc\x52\x96\xdd\x7b\x51\x77\xa0\xf2\x3a\x77\xa1\x14\x0f\xb1\xab\xd9\xef\x05\xfc\xb7\xd3\xcf\x7b\x2b\xbb\x2f\xfa\x51\x50\xd0\x8a\x02\x9b\x0e\x3b\xad\xbb\xd5\xbc\xde\xd9\x97\x29\x5d\xe9\xcc\xf6\xae\xc6\xe6\x61\x67\x7e\xd9\xe5\x05\x68\x6b\x59\x36\x58\xf0\xe6\xc2\x82\x66\xb7\x5e\x55\x5e\xc7\xd3\x5a\x08\xca\xa5\xbb\xb0\x70\xcd\xe3\xf6\x18\xda\x9c\x1a\x2c\xbc\x2d\x74\x0a\xfb\xde\x81\xf3\xce\x33\x11\x84\x06\xb9\x8e\x74\x42\x24\xce\xc1\x12\x94\x68\x47\x1b\x09\xce\x61\xa3\x35\x21\xa1\x5f\xd6\x10\xe7\x88\xb6\x82\xcb\xed\x1e\xd7\x84\xeb\x58\xec\xb8\x20\x3c\x9b\x79\xd1\x75\xf0\x54\x65\x01\x90\x99\x39\xe5\x5a\xb1\x25\x28\x27\x25\xce\xe1\x40\x54\x38\xd7\xd5\x49\x8d\xf3\xa0\x3a\x51\x7d\x42\x75\x32\xc5\x79\x76\x5b\xd6\x7c\x56\x11\x86\x73\x0b\xf3\x25\x4f\x85\x3a\x78\xc2\x27\x1c\x72\xd1\x38\xd3\xef\xa3\xfa\x75\x53\x61\x59\xb5\xa9\x22\x90\x85\x88\xaa\xf5\x86\x3f\xda\x88\x2b\xd7\x6e\xa0\xc8\x77\xaa\x6f\x8b\xb5\xab\x5b\xb8\x69\x81\x93\x3a\xa4\x1a\x83\x98\x85\xb4\xca\x74\xbf\xee\xac\x4d\x73\x1a\x18\x37\x5d\x3a\xa9\x72\xab\x56\x84\x58\xb5\xca\x55\x7e\xef\xd3\xa8\x5e\x63\xad\x36\xba\xb1\xf3\x35\x79\xe8\xc7\x90\x6d\x42\x71\xde\xd5\x6c\x46\x12\xa3\x73\xbb\x51\x5f\xf8\x51\xfd\x1d\x79\x09\xaa\x59\xfd\x0d\x97\xea\x8c\xca\x9c\x15\xd5\x88\x62\xbb\x00\xa3\x60\x39\x32\x59\x6a\xcb\x04\x94\x2d\xf3\x55\xcc\x45\x8a\x1d\x64\x8a\x36\x68\xb3\xc1\x62\x93\xd6\x08\x17\x3d\x67\xc9\xbc\x95\xc0\x79\x73\x96\x8c\x24\xbf\x8a\x9d\x25\x6c\x4b\xbb\x49\x56\xe6\x40\x49\xf1\x90\xe0\x2a\x93\xf9\x1d\x51\x04\x68\x7e\x47\x44\x06\xec\x83\xba\x23\xaf\xf3\x3b\x4b\x43\x88\xec\xf5\xe5\xc5\xc7\xeb\xd3\x8b\xeb\x9b\xeb\xd3\x1f\x11\xae\x3c\x60\xe7\x0a\xd8\x79\xb8\x63\xe7\x86\xf6\xfa\x87\x7e\x8a\x24\x42\x71\x88\x21\x77\xf3\x3b\xed\xec\xca\x0a\xd7\xd3\x23\x2c\x14\x5b\x70\xcb\x38\xfd\x58\xb0\x29\x45\x21\x4c\x29\x8c\xc9\xbf\x06\x16\x0d\x8e\xf3\xeb\xb6\x30\x6a\x9c\x73\xb0\xc2\x44\x13\x8e\xbd\x01\x2f\xeb\x33\xdf\xf5\x50\x5a\x2d\x83\xc2\x2f\x46\x06\x16\xe0\x9c\xca\xc6\x11\xc8\x85\xb4\x32\x30\x40\x22\xb8\x30\xdc\x87\xa0\xf7\x78\x6a\x82\xe9\xd2\x2f\x72\xc0\xb2\x69\x41\x73\x61\x58\x80\x39\x59\xd2\x4c\xd0\xaa\x5e\x02\x29\x80\xb9\xfa\xa0\x3a\xd0\x93\x96\x1e\x3d\x28\xb4\x53\xe2\x1c\xcf\x11\x5e\x98\x5b\xfe\x1d\xe3\x9f\xe8\xec\x1d\xab\xe4\x60\x65\xef\xdf\xd4\x8b\xfb\x0d\x51\xbf\x35\x2e\xbb\x87\x16\x65\x29\xa8\x02\x3c\x23\xc5\x61\xfc\x4e\xdf\x1e\xde\x35\xb6\x70\xb9\xf4\x57\x26\xb5\x7a\xb2\xbf\x34\x43\x1b\x84\xdd\x04\x89\x11\xec\x00\xfa\x9e\x86\x3b\x12\x3f\xa3\x92\xd0\x4e\x19\xef\x92\x80\x20\x4b\xe6\xf0\xf9\x91\xaa\xbc\x64\xf2\x08\x91\xde\xb6\x34\xb2\xc1\x7c\x93\xd6\x1c\xe1\x69\xaf\xc8\x0b\x8b\xe6\xa4\x59\x9a\xca\xc8\xd8\x8c\x62\x67\x99\x8b\x4f\x54\x58\x42\x0a\x8e\x40\x45\x85\x24\xfb\xc7\x2e\xe5\x0d\x2d\xa8\xa4\x2e\x65\x99\xaf\x88\x54\x7f\x3d\x01\x16\xe3\x77\xd6\x7f\x9b\xa0\x51\x09\x96\x7e\xb8\xe4\xd3\x1b\x41\xa4\x17\xdb\xb2\x05\x42\x3d\x48\x0b\x7e\xb6\x0f\x75\x3b\xaa\xcb\xb3\xd0\xf7\x66\x4d\xd8\x49\x5a\x90\x72\xcc\x26\x28\x72\x81\x8c\xbc\x09\x02\x30\x4e\x49\x9e\xdd\x2f\xdf\x96\x42\xcf\x51\x0d\xa3\x46\x78\xae\xdb\x5c\x11\x73\x6f\x0f\xa6\x0e\xe4\x56\x0d\xc8\x31\xf4\x58\x8e\xe9\x84\xcc\x49\x13\xe9\x92\x63\x88\x82\xd7\x0b\x44\x6d\x60\x76\x85\x35\x04\xce\xb7\x56\x9e\x37\xf8\x63\x83\x70\xeb\xc1\xf2\x1c\x17\xa8\xb3\x63\x47\xed\x60\x29\x32\x0f\xa5\x65\x2d\xd9\x43\x79\xdf\xff\x66\xc2\xed\x47\xd9\xda\x81\x9c\xb0\x31\xd5\x41\xb8\xf9\x44\x3f\x8f\x18\x54\x34\xcd\x31\x3f\xe9\x5d\x7c\x84\x4b\x63\x92\x9e\x7a\x6f\x85\xcd\x54\x72\x5c\xb5\xc5\x3c\x1a\xde\x7a\x34\x26\x6a\x50\x82\xc8\x31\x9d\x0c\x84\x7f\x8b\x22\x5c\xd3\x54\xa0\x10\x28\x6d\xb7\x02\x61\xdd\xea\x9e\xaa\xd8\x81\xec\xd6\xca\xcd\x4a\x4e\x3b\x78\xdf\x88\x9e\xa3\x97\x44\x1a\x6e\xc5\x7a\x1d\x76\x60\x95\xaf\xf3\xde\x6b\xd1\xa9\xe7\x3b\x17\x63\x11\xbd\x18\x4d\x79\x84\x06\x85\xb9\x11\x0b\x56\xc9\x43\x43\x67\x16\x70\x46\x83\x40\xf3\x05\x50\x46\x3a\x2e\x2c\x9d\x11\x91\x9d\x5f\x9c\x5f\x9f\x9f\xbe\xc3\x45\x96\x0b\xc9\xe6\xf9\x54\x56\xa4\x36\xa7\xa4\x78\xc6\x95\x6a\xb1\x57\x01\x97\xb1\x7f\x15\xa2\x74\x5c\xab\x44\x3c\x9d\x20\x5c\xfc\xa6\x8b\x57\x5f\x6d\xfb\xe9\xce\x46\x96\x68\xbd\xf6\x3f\xb5\x34\x2f\x58\x01\xcd\x00\xda\xa9\xab\x71\x6a\x13\xf6\x14\x61\x6a\x5e\x51\xfc\x11\x37\xbd\x74\xee\x20\xfc\x90\x73\x6e\x1c\xf6\x8a\xf5\x87\x3a\x70\xa3\x03\x26\x35\xad\x75\xc4\x06\xff\x5a\x2f\x49\xca\xd4\xcd\x51\x2e\x51\xe4\x21\x3a\xf3\xbd\x21\xa4\xbc\x4d\xa8\xe3\x12\x73\x8f\x6e\x46\x38\x87\x5b\x78\x6a\xc0\xae\xd4\x1e\x21\x44\x66\x83\x0a\x7f\x7c\xe0\xd3\x85\x28\x39\xfb\x07\x15\xe9\xa3\xcc\x85\x62\xb8\x72\xec\xe6\x30\xaa\x36\x28\xab\x1e\xf8\xd4\xb2\x7b\xad\xfe\xda\x0f\xfe\xa3\xcc\x9f\x4f\x04\xb6\x16\x35\xc4\xe0\x7d\x68\x42\xd1\x3e\xc2\xa7\x6e\x78\x84\xba\x61\x8a\x3a\x99\xab\xd6\x00\xfa\x74\xf8\xb5\xd4\xd5\xdf\xc2\xdd\x60\x8a\x7c\x83\xdc\x07\xee\xac\xa4\x7f\x27\xea\xc0\xa2\x3a\x6e\xe5\x44\x9f\xe8\x43\x95\x8a\x5e\x3a\x1c\x9a\xd0\x31\x9d\xd8\xfc\x01\x94\x27\xa3\xbd\xe4\x40\x8c\xe9\x44\x93\xfe\x1b\x94\xfd\xad\x64\x3c\x4d\xf0\x9e\x82\x89\x2e\xfd\xc1\xd6\xeb\x94\xb5\xe8\x0f\x06\x98\x24\x79\x4c\x0e\xf8\x41\xb2\x49\xb0\x74\x34\xc7\x6a\x0b\xcd\xa1\xae\x91\x36\xd5\x71\xbf\x74\xa6\x24\x2b\xa7\xfc\xa2\x96\x8e\xfd\x09\xc8\x5a\x61\xed\xc4\xa3\x85\x0d\xc7\x4e\x44\xb6\xa0\xf9\x2c\xee\x4d\x30\x2e\x03\xb1\x35\x5b\x52\xf1\x40\xea\xd2\x23\x83\x37\x55\xb1\xd5\x96\xae\x1a\x71\xfc\x70\x98\x06\xad\x4b\x68\xd0\xf8\x9d\xeb\x88\xe0\xb7\x10\xee\xd1\xa5\x30\x38\xa8\x9d\xdc\x15\xa9\x78\xe1\x49\x17\x4f\xec\xc9\x3f\x33\xfe\x1c\xe5\xf7\x76\x0f\x1d\x85\x28\xfc\x13\x15\x57\x74\x0a\x2a\xe0\x10\x46\x78\xde\xaf\xb4\xb0\x7f\x6c\x4b\xf9\x46\xfb\xc7\x1b\xd4\x15\x45\xca\x46\x14\x49\x87\x43\x1a\xe1\xa1\xec\x3c\x06\x6a\x75\x2a\xc5\xb6\x74\xdb\x96\x1b\xe4\xa8\x47\xc7\xc0\xd1\xdf\x4b\xa2\x42\x7f\xab\x44\x85\xfe\x36\x89\x4a\x57\x55\xdf\xab\x46\xb6\x8b\xf5\x8c\x53\x20\xca\xcf\x5a\x1b\x52\x2d\xca\xba\x98\xed\x71\x7a\x4f\xc5\xde\x02\x14\xd2\x49\x9b\x44\xdc\x4d\x24\xa3\x68\xc2\x50\xbc\x02\x84\xd8\xec\xbf\xb2\x62\x6a\xf9\x87\x29\x01\xee\x9f\xc0\x3f\x4b\xde\x89\xa2\xdd\xc4\x2e\x9e\xaf\x2c\x7e\xa8\x56\x3e\x6e\xa0\xcb\x95\x7c\xe8\xb1\xdd\x57\xc5\xd3\xf1\x04\x1f\xe1\xc3\x63\x00\x4f\x23\x0a\xe8\x33\x8c\x80\xf2\xd4\x59\xf9\x1f\x61\x6b\xde\x63\xaa\x7b\xec\xaa\x96\xd8\xc7\xac\x91\x08\x31\x64\x45\xeb\x59\x48\xdc\xf8\x0d\xe6\x38\x3e\x30\x86\xf0\xab\x8e\xe5\xdb\xac\x5e\x75\x71\xdd\x57\xa2\x3a\xd3\x87\xa6\x76\x1b\x53\x36\x3d\x04\x3a\x69\x63\xa2\xf2\xf7\xeb\xf9\x18\x4b\x4f\x36\x34\xb6\x93\x0d\x1f\x23\xac\x0e\x09\x6d\x1b\x7d\xad\x28\xfd\xd4\x87\x42\xc2\xb6\xda\x46\x60\xe5\xf2\x87\xbc\xea\x37\x15\xf2\x2a\xcf\x57\x87\x6d\xc3\x36\x55\xfd\xba\x5c\xed\x52\xbb\xea\xd6\x9e\xe6\x2b\x59\x8b\x5e\x0e\xb5\x5a\x1d\x1c\x0f\x3a\xad\x19\xa8\x93\x87\x5d\x2b\x00\x10\x89\x75\x70\x99\xae\x65\x5e\x52\xb4\x38\x54\x23\x96\xdd\xba\x72\xb6\x43\xbd\x04\xd8\x0d\xcd\x22\xc1\x87\x2d\x2a\x3b\xad\xef\x68\x9f\x57\x4f\xe3\x66\x22\x1d\x6b\xd5\x5c\x89\x3b\xa4\x75\x8f\xce\xae\xda\x92\x17\x91\x84\x74\x0b\x4d\xf3\xe9\x82\xfe\x28\xca\x7a\x55\x75\x33\x15\x0f\x0c\xcf\xa0\xfa\x7a\xb7\x12\x43\xaa\xb5\x71\x86\x3d\x99\x92\x43\x23\xda\x12\xb9\xfb\x59\x1d\x79\x06\x5d\xd5\xb1\xf7\x21\xfd\x1c\xe9\xe7\x78\xeb\x03\xc6\x71\x8d\x32\x52\x7d\xee\xac\xaa\x8c\xad\x6d\xb3\x70\x46\xb4\x84\x7a\xd6\xdc\x89\x2f\x23\xc4\xd5\x9c\xca\x69\x1f\x8a\x6a\xf0\xc5\x38\x1f\xd3\x49\x1b\x59\x14\x65\x3e\xeb\xd4\xd4\x25\x89\xdf\x48\x57\x9d\x07\x9d\xfe\x02\xaf\xc3\x7b\x4e\x9b\x6e\xa6\xdb\x5f\xbb\x92\xd5\x50\xda\x6e\xbb\xe8\xf7\xad\xc8\x97\x5d\xc9\x4d\x6b\x7e\x99\xc8\xfd\xfb\xc7\xcb\x98\x5b\x53\xc5\xf9\xca\x9e\xe4\xb6\xf1\xe9\xaa\x5c\xf5\x74\x62\xaa\xcc\x57\x1e\x30\x79\xbd\x58\x84\x95\x1e\xb5\xfb\x08\xb3\x3b\x37\x51\x9c\xa5\x59\x4d\xb5\x7c\x47\x15\xf9\x50\x56\x46\x0e\xb1\x9a\x1e\x74\x0c\x9e\xf2\xa2\xe8\x43\x54\xd6\x8e\x1d\xac\xd8\xa9\x31\x0e\xb5\xc3\x5e\x4d\xdd\xf1\x90\x1d\xc1\x62\x2d\xf8\x75\x64\x54\x22\xdf\x71\x54\xba\x89\xce\x22\xae\x8c\x22\x41\xe4\xaa\xb8\x31\x84\x69\x4a\xb9\x87\x2c\x7a\x16\x1a\x03\x28\x7c\xf5\x67\x01\x8f\x88\x53\x8e\x73\x13\xa5\xff\x1a\x6c\x77\x4d\x94\x74\xfb\xf4\x0c\xb0\x5a\xa3\x4a\x5a\x41\x20\x7f\x7f\x0d\x72\x43\xa0\x22\x1c\x45\x47\x7d\x52\xdd\xea\xe9\xeb\x41\x77\xfa\xe8\x1f\xd7\x51\xe7\x00\x83\xfd\xed\xfd\xc8\xf1\x1d\x55\x53\xac\x32\xf9\x00\x2d\x23\x0f\x70\x4c\x67\x29\x45\x9b\x88\xad\xe4\x6b\x87\x2e\x3b\x6b\xed\x61\x52\xef\x08\xd8\x59\xa7\x28\x93\x39\x2b\xd2\xb6\xb6\x5f\x5b\xbf\xc5\x9b\xd5\x14\x04\xb8\xf9\x49\x93\xb3\x8b\x37\x09\x6a\x73\x4e\x29\x72\x1a\x28\xbf\x77\x85\x34\x70\x49\xd8\x09\x6f\x58\x68\x86\x46\xdc\x30\xfa\x38\x27\xdc\x8c\x06\x57\x24\x22\x83\xb3\x3b\x52\x49\x48\x00\x97\x94\x08\xd7\x30\x94\xb7\xa9\xba\xbf\x06\x3c\x14\x3a\xd7\x20\xd6\x32\xb6\xae\x50\xff\x1f\x69\x8d\xbc\xa4\x36\xc0\x42\x40\x8c\xce\x39\x12\x1d\x7d\x95\x9d\x71\xb3\x2d\x76\xc6\x06\xab\x57\x29\x82\xe5\x76\xa2\x55\xb8\xb0\x60\xfe\xaa\xad\x82\xa7\xc1\xd1\xd4\xf0\x68\xcf\x11\x82\x03\x20\xcc\x49\x9d\xb1\xd9\x99\x1a\x56\x5a\xb6\x89\x57\x2d\x39\x0c\x94\x2d\x81\xd3\x1a\x6d\x45\xc0\xf5\xbe\x0b\x10\xc6\xea\x27\x65\x03\x4f\xfa\x6f\xa7\xf0\x12\x59\x25\xc0\x13\x53\xf0\x05\x62\x4f\xcd\x43\x1d\xe3\xce\x41\x8a\x2c\xf9\xb9\xa4\xcb\x98\x91\x8a\xbb\xea\xb5\x66\x1a\xec\xdb\x71\xb8\x2a\xd1\xf6\x54\x3f\x5f\xb1\x8d\x47\x7d\xdb\x08\x63\x50\x35\xd4\x32\x96\xc1\x55\x48\xa9\x1a\x5c\x23\xda\xcd\x49\x6c\x45\xfa\xf0\xa5\x02\x75\x35\xaa\x39\x4f\x73\xbd\xeb\xd8\x9a\xef\x87\x64\x8e\xde\xba\x0a\xb5\x66\xdf\x51\xaa\x98\x8c\x2e\xd2\x6e\xe9\x44\x7b\x48\x31\x03\x21\x9e\x52\x2a\x5c\xdc\x2f\xac\x4b\xc1\xfa\x6b\x55\xae\x2c\xa0\xf7\xf7\x00\x78\x20\x8e\x86\x7a\xf4\x2e\x91\x51\x84\x3b\xec\xa4\x6b\x4c\xda\xb6\xdb\xcb\xd7\x25\x59\x9a\x15\xe9\x59\x2d\x3d\xb2\x1e\x54\xe1\xda\xef\xa3\xce\x5b\x03\xb0\x96\x48\xdd\x21\x04\x81\xfd\xe3\xe2\x15\x7f\xfd\xa2\x0d\xd9\x3d\xe8\x6b\xc8\x27\x36\xdb\xc6\xdc\x5b\x9e\xda\x7b\xf4\x68\xb4\xdb\xc0\xf2\xa8\xa7\x8d\x2e\xed\x1a\x6d\x4a\x01\x1e\x6c\x78\xa7\xb1\x28\x65\xec\x5f\x97\x1a\x5a\x3b\x97\x18\xb4\x18\x77\x27\xf0\x4c\x2e\x78\x38\xf4\xbf\x1c\x13\x6c\x7a\x0f\xbd\x16\xa4\xf6\xe9\x7b\x6b\xc0\xf4\x44\xda\x71\x8e\xda\x38\x4b\x15\x78\xd3\xb3\x94\x9e\x94\x3a\x24\x22\x6c\x6b\x83\xed\x8b\x6d\x1f\x69\xb7\x6d\xc5\xeb\x6a\x71\x55\x96\xb2\xed\xa4\xa1\xf1\x8f\xf8\x67\xa1\xdd\xa0\xa4\x8d\x0e\x44\x0e\x87\xa2\xed\xe0\x21\xd8\x09\x14\x67\x63\x04\xc2\xa2\x43\x60\x3f\xbd\xcf\xdd\x23\xbb\x2a\x57\x7d\xeb\xd4\x37\xfd\x6e\x23\x9c\x7e\x36\xda\x64\x10\xcc\x75\xce\xbe\x87\xcf\xc2\xa2\xb1\xf7\x36\xdb\x1c\xa7\x78\x00\xa2\x8a\xb5\xc7\x21\xac\x89\xf8\xdb\x52\x3c\xe1\x4c\xc5\x6f\x09\x4a\x76\x29\x97\xa8\xf9\x6a\x40\x6e\xb7\xf8\x00\x2c\x87\x43\xa9\x35\x51\x03\x1b\x63\xca\xc6\x48\x7a\xb5\x6f\x2d\x57\x15\xa5\x96\x22\x04\xca\xf2\x57\xe8\x95\x95\x44\x6a\x2d\x6a\x57\xd1\xd2\x03\xb9\xa0\x66\x23\x7d\x28\xcd\x09\xe1\x3d\x24\x65\xaf\xe6\xd0\x66\x16\xe8\xac\x30\x92\xbe\xb1\xb4\xe5\x27\x69\x15\x9a\x8d\x82\x19\x92\x1a\x98\xaa\xf3\xa8\xc6\x3f\xda\x3f\xc6\xda\xa2\x5c\x55\xda\x58\xef\xf8\xfa\x22\xd7\x06\x4b\x5e\xd9\x23\x5b\x96\x7e\xde\x5b\xc0\x7a\x9a\xab\x4b\x78\xd7\x1c\xda\x20\xcc\x76\xd2\x37\x85\x3c\xd9\x6a\x3a\x60\xf3\x54\x4b\x19\x03\xe7\x91\xd6\x37\xa9\x11\x1a\x04\x87\x7b\x35\x3d\x20\xdf\x62\x61\x64\xf2\x5d\xca\xa7\xdf\xa2\xb6\xbd\x34\x14\x53\xbd\x34\x5d\xdf\x2d\xf1\xf3\x45\x9d\x0b\xa4\x98\x86\x35\xb5\xee\x8c\x1a\x41\xeb\x2b\xf9\x3d\x39\x7a\x25\x0f\x0f\x91\xd9\x5c\x27\xfd\x00\x20\x36\xbe\x31\xc7\x72\xa2\xc8\x52\x30\x15\xc3\x6d\x01\x03\xda\xe0\x99\x6f\xf7\xbb\xda\x6a\xf4\x6b\x18\xec\xd5\x06\x57\x7e\xa1\x50\xfa\x31\x5f\x11\xea\xde\x7f\x57\xbb\x34\x58\x6d\x6f\xb0\x82\x06\xed\x6b\x18\x27\x5d\xbb\xfb\xc3\x84\xef\xb7\x5b\xde\x3d\xde\x45\x94\xb1\x31\x01\x51\xfb\xa0\xfa\xb3\xbe\x5f\x9a\x23\x6f\xc4\x87\x37\x9c\x1c\xe1\xcf\x5b\x25\xfe\x98\x75\xbb\x66\x33\x67\x79\x46\x65\xee\xc4\x89\xfc\xde\xea\x7e\x29\x97\xe2\x01\x9e\xae\x7a\x92\xb5\x22\x7f\x28\x6b\x3f\xc1\xf8\xde\xf1\x52\xc0\xf6\xc5\x97\xd9\x4d\x73\xce\xa9\x26\xed\x7f\x92\x29\xc3\x56\x64\x66\x84\x02\x84\xd9\x5f\xf6\x95\x7b\x75\x76\x9f\x17\x84\xd9\x5f\x71\xf5\x64\xa8\x9c\xec\xfa\x03\x55\x08\x2d\x6e\x56\xc0\xb1\xd4\xd6\xc5\x96\x4f\xc8\xab\x33\x37\x57\x75\x6b\x97\xcb\x15\x2b\xa8\x39\x66\x29\x57\x7c\xef\x03\xb7\x52\x90\x94\x63\x0a\x2e\xd6\xcb\x80\xcf\xba\xe5\x69\xde\x7e\x8a\xe6\x35\xdb\x4b\xf5\xb9\x12\xf6\x51\x99\xb7\xec\xfe\xf2\xc1\x7f\x6f\x98\xe6\xc4\xaa\x91\xc2\x13\xcf\xf7\x54\xe6\x29\x42\xa8\xbd\x77\xed\x21\xbd\xd3\x1b\x18\x72\xa4\x01\x51\x0c\x05\xec\x68\xcc\x7e\x77\x46\xa2\x9b\xe9\x19\x05\x16\xeb\xb5\xcc\xce\xde\x7f\xb8\xfe\xcb\xcd\xe9\xd5\xd5\xe9\x5f\x30\xb5\x03\xd3\xed\xb5\x07\x65\xfc\x58\xf5\x2d\x92\x81\x31\x3b\x26\x0b\x72\xcf\x5e\x9e\xfd\x23\xb7\x40\xa6\x8d\xf6\x40\xb6\xb2\x0b\x00\xd8\x76\x10\x1a\xca\x3b\x43\xd0\x97\xce\xf6\xcd\x81\xaa\xdd\xa7\xf1\x5e\xd9\xdf\x8d\x10\x36\x10\xfa\x28\xe9\x72\x55\xe4\x92\xaa\xc6\x47\xee\xd0\x63\x73\xee\x46\xfe\x71\xc4\x6e\x3b\x46\x0a\x11\x3b\x9b\x86\x2f\x1c\x9f\xf5\x23\x99\x7f\xb2\x51\x83\x66\x89\x0c\xfe\xe2\xf9\x92\x5e\xd1\x39\xe1\xbe\xd0\xe4\x3e\x17\xd7\x3b\x9b\xce\x41\x8d\x88\xd9\x1c\x07\xb3\x39\x36\x89\x0a\xf1\xef\x43\xa9\x78\xc7\x4d\xde\x2f\xb9\x48\x91\xb5\x65\xdb\xee\x97\x2c\x5a\xb3\xc7\xd3\xde\x2f\x79\xc4\x26\xc3\xdc\xd6\xfe\x72\xd8\x9e\x51\xc0\x0c\x99\x56\x03\xa2\x45\x2f\x55\x68\x60\x07\xa1\x2a\x10\x96\xb1\x48\x8b\x74\x4c\x33\x6b\x37\x71\x34\x21\x89\xf9\xad\x3d\xa2\x34\x7e\x47\x8f\x27\x24\x71\x5f\x3a\xf3\x5a\x5d\x6b\x2f\x27\x24\x51\x3f\x74\xd2\x6b\xb5\x3b\x1f\x29\x34\x0e\x6e\x54\xfc\x04\x5d\xe4\x0c\x5e\xaa\x37\x8f\xed\xbf\x55\x7d\x86\x69\x7e\x41\xf2\xdf\x5c\xbe\x71\xd2\x22\xca\x29\xad\x2a\xc6\xef\xce\xbd\xb0\x5e\xff\x31\x21\x49\x34\xc7\x8c\xcb\x04\x94\xf9\xef\x6a\x48\xfa\xb7\xce\x78\x63\x43\x75\xfd\x8f\x09\x49\xec\x47\x98\x05\xf1\xa3\xfe\xd3\xcb\xbe\x06\xc7\x3c\x7e\x91\xb7\x22\xbf\x83\x56\x8e\x8f\xbc\x72\x36\x55\x97\xbd\x28\x25\x60\x04\x72\xac\x96\xd2\x7e\x25\x1b\x94\x7e\xe1\xeb\x75\xfa\x85\x37\xfe\x65\x2e\x9d\x75\xda\x5c\x50\xfa\x0f\x9a\x3e\xde\x51\xb9\x77\x61\x62\x59\x35\xb0\xf9\x85\x6f\x36\x68\x40\xb3\x8f\x6c\xb9\x2a\x28\xb9\xe4\x8a\xca\x34\xb8\xe1\x6d\x3e\x95\xa5\x78\x88\x08\xe5\x68\xc6\x66\x98\x13\xaa\x91\x06\x23\x54\xa3\x30\xf7\x68\x10\xe7\x44\xac\xd7\xc9\xb4\x60\x94\xcb\xc3\xe4\xe0\x86\x1f\x1c\x58\xcc\xc3\x66\xa3\x1c\xab\x7a\x23\x8e\xf5\xe9\x1b\x75\xa5\xa1\x15\x11\x27\xd6\x83\x00\xbb\xe3\x28\x7d\xdc\x68\x4f\xdd\xdc\x02\x6a\xb9\x5e\xa7\x25\x01\xdb\xba\x55\x2e\x2a\x9a\x32\xa4\xcd\x21\x3f\xf3\x34\xc7\x8a\x5c\x2e\xd1\x06\x04\xef\x17\x3f\xbf\x7b\x77\x73\x75\xf6\xf6\xec\xea\xec\xe2\xf5\x19\xb9\xc7\x34\xfb\xf9\xe2\xcd\xd9\xdb\xf3\x8b\xb3\x37\x5e\xfa\x12\x2b\xc0\x60\x4b\x26\xd9\x3d\x6d\x60\x6b\x85\xd5\xd6\x47\x3c\x3c\xdc\x62\x9a\x69\xb2\xfd\x87\x9a\x15\x33\x2a\xde\x7c\x7c\x47\x1e\x24\xb6\xb8\x9b\x76\x2f\x56\xe9\x0b\x35\x73\x99\x4a\xef\x89\x90\xa9\x04\x7c\xb7\xfb\x80\xc3\xfe\x5a\x7f\xcc\x14\x83\xc2\xa6\xd7\x66\x73\x88\x90\x5e\x9e\x21\x4d\x5c\x26\x57\x99\xe7\xee\xb0\x19\xdf\x55\xe4\x27\x81\xbd\x03\x19\xa4\x5a\xd3\x16\x9b\xf8\x83\x4a\x84\xc0\x05\x37\xbf\x9c\xbe\xfb\xf9\xec\xe6\xc3\xd5\xe5\x87\xb3\xab\xeb\xbf\xdc\xbc\x3f\xbd\x38\xfd\xf1\xec\x8a\xfc\xaa\x4a\xcc\xe8\x3c\xaf\x0b\xe9\x3c\xe3\x9d\x7b\x89\xed\x8e\x2a\xf2\x0f\x2f\xb7\xd5\x61\x45\xde\x0a\x30\x13\xc9\x67\x6f\x2e\xdf\xab\xaa\xd1\x95\x8b\x04\x7d\xc0\xbb\x46\x78\xd8\x33\xce\xe0\x1b\xef\xeb\x25\x1a\x79\x61\x1f\xba\x99\x74\x5c\x82\xf6\xf3\x8a\xde\xb1\x4a\x52\x41\x72\x18\xff\x6d\x7d\x07\xea\x8c\xb6\x05\xbf\xeb\x51\x61\xb3\x5f\x8c\x4f\x6f\x0c\xce\x90\xde\xa8\x4a\x77\x54\xbc\xce\x8b\xe2\x36\x6f\xb9\x53\xfd\xb3\xf1\xaa\x09\xfc\x6c\x7f\x49\x28\xf8\x17\x28\x79\x47\xa5\xd9\xf2\x00\xfb\x07\x0b\xd5\xd2\x5f\x71\xa2\x98\xe1\xca\xc0\x71\x96\xcb\xf4\x28\xa0\x57\xcf\x40\x8b\x07\x10\x07\x34\xcb\x7b\xed\xca\xe0\x6f\x00\x49\xbc\x60\x9c\x9a\x94\x77\x3e\x8c\xb3\x4a\x92\x2b\x2f\xe1\xcc\x3d\x39\x27\xd7\x2a\xf9\x67\x23\x3a\xf8\xe5\x3d\xa9\x38\xac\xa4\xa2\xb8\xaf\x68\x55\x17\x92\x2c\xf8\x80\x66\xac\xfa\x98\xcf\xa9\xbe\xaf\xc8\x47\xb5\x5c\x9a\x8f\xfd\xb3\x02\x87\x33\x7e\xcf\x44\xc9\x75\x70\x69\x55\xdf\x50\x22\x6f\xe8\x1c\xa8\x6f\xcf\x50\xcd\x3e\xaa\xf9\x67\x52\x1d\x0a\x16\x2d\xd1\x21\xdd\xc1\xb4\x87\x16\xbc\xea\xf5\x8e\xf4\x9f\x4c\x21\x8d\x6f\xe8\x04\xa2\x86\xb5\xc7\xbd\x34\x07\xde\xf0\x7b\x6e\xe0\xaf\x55\xa3\x84\x83\xba\xb7\x8a\x4d\xe7\x33\xd5\xf1\x31\x5f\x2f\x72\x7e\x47\x2b\x72\x05\x18\xc3\x4b\xf8\x24\x7a\x02\x68\xfe\x4d\x40\xa3\xbf\x2e\x98\x34\x71\x2d\x23\xb4\xcf\x99\xc8\x24\xad\x2c\xc5\xd3\x89\xf1\xf4\x1e\xc0\xc3\xb7\xc7\x58\x52\x8d\xaa\xa7\x82\x4a\xfa\x83\xb6\x64\x2d\xe9\x06\x61\x9a\x26\xff\xd3\xf8\x9a\x79\x51\x4b\x56\x24\x78\x9c\xd0\x2f\xab\x52\xc8\x2a\x99\x60\xbf\xeb\xa4\xae\xe8\x5e\x25\x05\x9b\xca\x64\x60\xfd\x47\x47\xe2\xfd\x1f\xff\xe7\x7f\xfe\xe7\x8b\x2f\x05\xe3\x9f\x12\xcc\x63\x05\xfe\xd7\xfb\x77\xaa\xd0\xff\x78\xe1\xb0\x55\x82\x59\xac\xe0\xcb\xa3\xa3\xa3\x17\x5f\x96\x05\xaf\x5e\x24\xb8\x24\x8f\x09\xb4\x3a\xca\xa7\xb2\xce\x25\x4d\x46\x02\xdb\x14\x31\x15\x65\xe1\xa7\x2c\x04\x9d\x7b\x9f\xad\xdc\x6a\x51\x7e\xf6\x3e\x25\x93\x41\xb6\xc2\x92\xfa\x73\x59\x8c\x6e\xf3\x8a\x26\x23\xae\x3f\x8a\x9c\xdf\xb9\x0f\x3d\xf4\x11\xc7\x30\xc4\x11\x83\x54\x5e\x8d\xf4\xdc\x47\x6c\xd3\xc8\x4f\xf2\x3f\x02\x86\x3b\x64\xe6\xb5\x50\xe0\xa2\x48\x24\xf8\x65\x68\x28\x85\x32\x81\xbc\x84\x5f\x3a\xf1\xd7\x5c\x70\x20\x2d\xd5\x0f\x43\x0e\xaa\x8e\x81\xa6\x84\x5f\x8a\x70\x52\x7c\x2d\xcd\xde\x95\x77\xef\xe8\x3d\x2d\x88\x6c\x28\xa8\xaa\x87\xb5\x41\x8f\xb9\x3d\x58\x31\x26\xa0\x28\xef\xfa\x1f\x76\x7d\xce\xc5\x96\x67\x5f\x14\x86\xd7\x9b\x2d\x45\xde\xb9\x72\xe0\x79\xbc\x25\xba\x8a\x7e\x31\x93\x75\xaf\x35\x2d\x79\x55\x16\xf0\xe4\x22\x2b\xd4\x8c\x07\x79\xcb\xad\x03\xa9\xcd\x8f\x52\x4c\xa9\xfd\x30\xd5\x2c\x8e\x80\x9a\x71\x2b\xf1\xea\x13\x5b\xad\xe8\x2c\x76\xa0\xe9\x77\x4d\xe5\xad\x33\x73\x64\x66\xd7\xb0\x7c\x37\x37\xf3\x8f\x1b\xa4\x65\x7d\x00\x23\x98\x13\x3f\x9c\x84\x30\xba\x1e\x3d\xd0\x54\x6a\x90\x42\x96\x8d\x37\x53\x55\xfb\x98\x52\xb0\xd5\x0d\x92\x61\xa8\x1d\xb5\x15\x90\x04\xff\x8f\x4d\x00\x80\xfe\xb7\x4d\x20\x04\xcc\x7f\xf2\xf8\xd5\x01\xed\x0c\x5f\x8d\x68\xf7\xf1\xb7\x8e\x8e\x13\xf8\xba\x3e\xe0\xc0\x23\xf3\xfc\xcf\xb6\x05\xb5\x52\xf7\x08\x70\x4a\x92\x9a\x6b\x43\xef\x59\x13\x28\xca\x14\x86\x70\x59\xd5\xc8\x7c\x0d\xb4\x09\x4b\x91\x3e\x9a\x84\xd1\x14\x03\x60\x8f\x0c\x3c\x6d\xec\x23\xeb\xde\x62\xb0\x6b\x1b\x84\x57\xfe\x33\x22\xbc\x20\x47\x0d\x4a\x9d\x05\xaf\xf9\xe1\xad\x10\x39\x38\x58\x34\x5e\x63\x96\xdd\x02\xeb\x35\xe8\xbd\x5d\x91\xfb\x3f\x4a\xaa\xfd\xd0\x72\x0a\x04\xf2\xdd\x98\x2b\x20\x83\x9d\x7a\xfd\x01\x29\x06\xb4\x91\xc2\x2b\xbc\xe6\xbe\x6e\x43\xa3\xf2\xbb\xcd\x9d\xe7\x93\xe8\x01\x56\xf8\xa6\x17\x4d\xdf\x87\x98\x6d\xc6\xa6\x92\xdc\xc6\x1f\x27\xe5\xb3\x18\xc6\x4a\xf4\xa3\x2d\x2f\x66\xd8\x89\x6b\x69\x4c\x27\xc4\xda\x89\xa9\x4f\xb5\x13\x13\xe3\xf6\xf0\xc9\x37\xb3\x91\x86\xed\x1b\x58\xaf\xfd\x91\xd9\xd1\xe1\xb0\x9b\xa9\x73\xda\xa6\xd3\xa5\x38\xcb\x5b\x66\xa4\x96\x88\x71\x75\x3b\xcf\xd6\x5c\x54\x0b\x6e\x9f\x52\xc8\x83\x03\x44\x53\x31\xe6\x63\xd9\xb1\x36\xed\x37\x6f\xf6\x5b\x75\xbd\xd9\xa3\xf5\x79\xd7\x5d\xd2\x86\xc0\xce\x53\xbb\x79\xc0\x05\xba\xbf\xa8\xf3\xc5\xa7\x8d\xad\x77\x79\x0a\xe0\x9e\xa1\x75\xac\x4f\xdb\xf2\xb6\xa8\x69\x7e\x5b\x0b\x16\x98\xdc\x9b\x55\x0d\x04\x6c\xb6\xbf\x23\x42\x88\x3c\x51\xb3\xf3\x0c\x07\xc7\xf2\xf0\x78\x82\x1b\x67\x52\x3a\x9f\xee\xf8\x0a\x02\xea\x74\x7a\xdf\xb4\x94\x5d\x5f\xfe\x28\xac\x70\xd6\xbb\xd1\x5f\xc2\x8d\x36\xae\x28\x9a\x5d\x9d\x8b\x72\xd9\xe2\xaa\x03\x79\x49\xe3\xab\xd6\x02\x3a\x58\x23\x46\x08\x0d\xe1\xec\x7f\xb2\x69\x51\x72\xaa\x55\xbe\x2d\x6b\x86\x05\xcd\x63\x71\x27\x60\x6c\x37\x2a\xb3\x05\xf7\x39\xeb\xd5\x46\xdc\xa8\xcc\x96\xf8\x5e\xcd\xae\x63\xea\x00\xed\x92\xa6\x8e\x86\xeb\x1d\xf7\xd5\x04\x81\xeb\x1d\x60\xf7\x28\x68\xe0\x1c\x87\x6f\x3d\xa2\x6b\x27\xbd\x5b\xc4\x06\x01\xe8\x98\x9f\x54\xab\x70\x77\x02\x0d\x9b\x51\xf0\xdb\xe0\x86\x27\xf6\x19\x34\xcc\x13\x7b\x53\x96\x68\x94\x72\xa2\xa3\x5e\x63\xfd\x30\x93\x08\xac\xbf\x89\x84\xfb\x3e\xd5\xc6\xa6\x84\x42\xf7\xf4\x9e\xb4\x4d\xda\xac\x29\x6a\x94\xca\x84\xdc\xd6\xa1\x15\xf4\xbe\xbf\xbc\xca\x8d\x22\xd2\x4e\x15\x6b\x72\x21\xbd\x5d\x78\x65\x1d\xf1\xbd\x42\x14\x82\x0b\x98\xd7\xa6\x6d\x75\x0e\x97\x79\xe0\xde\xf1\xe9\xe6\x1e\xc1\x77\x71\x13\xca\x72\xff\x68\xe0\x1a\x37\x29\x2d\x13\xf8\x9e\xc0\xfc\xd6\x8a\xe1\x2b\x89\x39\x3f\x40\xa6\x05\x42\x7d\x11\x3a\x33\xbb\x11\x3c\x71\xa3\xf7\x27\xfa\x9f\xd9\xbe\x91\x07\xf4\x6e\x2f\x75\x09\x6c\x34\xda\x12\xeb\x6f\x95\xdf\x56\x96\x42\xe3\x7d\xc6\x18\x00\x4c\x0e\xb0\x4f\x52\xd9\x02\x19\x69\x7b\x00\xbd\x6e\x38\x12\x0f\x1a\xbb\xde\x38\xb7\x1e\x72\x3d\x6d\xe3\xb9\xa2\x49\x46\xa3\xee\x41\x5e\x09\xda\x19\x7f\x07\xc7\xe8\xf6\x02\xfb\x67\x3b\x3c\x95\x1d\x8c\xbb\x7f\xd4\x7a\x3c\xfd\xc0\x7d\x42\xfd\x5d\x81\x7f\xc1\x82\x40\x8a\x59\xaf\x13\xfd\xcf\x6c\x0a\xfc\x1b\xf9\x3d\x9b\xdd\x33\xd7\xfa\x65\xbf\x8d\x41\x07\xe1\x9b\x59\xf8\xab\x2f\x36\x9e\xab\xaa\xa8\xfd\xaf\x04\xd4\x7f\xd6\x88\xc9\x9f\x40\xfd\x32\x8a\xfa\xe5\xef\x7a\xbc\xad\x89\xd3\x45\xcc\xa0\xe7\x9f\x73\xd0\xff\xd8\xcb\xeb\x8f\xbf\x4a\xb6\x22\x70\x77\xc9\xc1\x89\xd3\xc4\xcf\x73\x91\x7a\x70\x51\xda\x36\xba\x88\xbe\xf7\xb6\x85\x05\x57\x10\xfe\x11\x00\xf0\x32\x6d\xc2\xb9\xe1\xd7\x7e\x71\xa0\xa0\x22\xe1\x85\x7f\xa5\xf9\xa7\xf7\xf9\xca\x06\xcc\xdf\x3f\x1e\x34\x6f\x30\x4c\x9e\x8d\x3b\x3d\xd6\x0e\x62\x6d\xf2\x24\x21\xc4\x92\xe8\xfe\x9e\x68\x09\xb9\xf6\x45\x41\x91\x1a\xdb\xa9\xcf\xaf\x3a\xdf\xb0\x3f\x33\x2e\xbf\x79\x09\x3b\x78\xe2\xfd\x1e\xc1\x5f\xfc\x89\xbc\x3e\x09\x15\x83\xe3\x09\x1a\x8d\x27\x03\xa7\xfc\xb8\xb0\x12\xcb\xd8\xc2\x96\x63\x6a\x5c\x0b\xa9\x85\xd4\xee\xbd\x49\x57\x88\xed\x7b\xd5\xd5\x04\xa4\x5c\xaf\x13\x5d\x5c\x61\x88\x79\xce\x8a\x5a\xd0\x04\x0e\xcf\xbb\xcb\x1f\x7f\x3c\xbb\x22\x73\x0c\x72\xb8\x3b\x2a\x48\x81\x7d\x91\x9c\xee\x88\xdd\x45\x1c\x8a\xd8\x30\x01\x86\x87\x39\x7e\x25\xbf\x6b\x5f\x72\xc0\xcd\xb0\x79\xda\x78\xf7\x6c\x2e\x37\x39\x41\xc3\xa1\xf5\xcf\xeb\xb6\x4e\x20\xd5\x1a\x27\xab\x54\x20\xac\x03\xd6\x70\x3f\x60\x0d\x1d\x97\x84\x8f\xd9\x64\x42\xc4\xb8\x74\x27\x02\x20\x7c\xce\x8a\xe2\xa2\x2e\x8a\x2a\xca\x83\x35\xd1\x04\xa9\x1f\x4b\x90\xc2\x10\xc5\x58\x4e\x88\x7f\xd5\x02\xbd\xda\x78\x5d\x07\xfd\x24\x73\x76\xf6\x90\x34\xc3\x54\x3f\xa2\x24\x9f\x31\xcd\xde\xb0\xa9\xfc\x48\x25\xb9\xc1\xd4\x30\xbb\x98\x1a\x9b\x9b\x8f\xef\xce\x5f\x9f\x91\x8f\x6a\x59\xdd\x43\x0a\x72\x06\x9f\x2d\x4f\x03\x5a\x5c\xd8\x42\xdd\x8d\x6f\x4c\x6d\x2a\x63\xdd\x63\x1a\x93\x35\x50\x74\xc1\xe9\x74\x0f\x7d\xc8\x25\xa6\xd9\x29\x39\x75\x23\x00\xab\x1f\xf2\x09\xd3\xec\xa7\xd3\x8f\x37\x17\xa7\xd7\xe7\xbf\x9c\xdd\xfc\x7a\x76\xfa\xa7\xf7\xa7\x1f\xc8\x6b\x4c\xb3\x9a\x7f\x16\xad\xa8\x75\x66\xd7\xda\x91\x8f\x3b\xb0\x95\x9c\x7d\x59\x41\xec\xd6\x3d\x18\xca\x9e\x2c\xf7\x6e\xe9\xde\x4a\xd0\x8a\x72\x99\xa0\x60\x87\x28\x14\xed\x82\xec\x4e\x1d\xc9\xb0\xad\x9a\x0b\x9a\x4f\x17\xa1\x45\x72\x20\xb0\x30\xe3\xf3\x0a\x6a\x90\x37\xaf\x4a\xa2\xa8\xeb\xf0\xdb\x4d\x4b\x67\xf1\x99\x09\x7a\x38\x2f\xc5\x32\x97\xcf\x53\x5d\x60\xde\x70\x7c\xcc\xeb\x23\x82\xac\x01\x2e\x33\x56\x69\xf8\x94\x68\x38\x94\xe3\xa3\x09\x04\x9a\x8e\x08\xe1\x15\x3c\x1c\x05\x56\x1b\x3a\x86\x81\x36\xf1\x80\x9f\xa1\xd1\xc4\xcb\xb6\xd1\x84\xf3\x40\xff\xcd\x84\x24\xf6\x43\x67\x69\x93\xab\x6f\x27\x24\xf9\x41\x3b\xcd\x32\x0d\x69\x05\x14\x18\x73\xb8\x2f\x9d\x79\xb9\xa2\xdc\xda\x9f\xfc\xc7\x84\x24\xde\xb7\x89\xe0\x53\xd4\xd5\xc2\x96\xf8\xef\x13\x92\xf8\x09\xa6\x83\xa2\xac\xa8\x2d\xf2\x3f\x54\x1f\x5e\x82\x2e\xa2\x15\xf0\xa0\x9a\xfe\xcf\x09\x49\x9a\x4f\xa3\x85\xd0\xfa\x56\xc8\xd7\x46\x1c\x4d\x82\x2e\xf1\x17\x46\x8b\x99\x36\xde\x80\x9f\xc6\x1a\xc5\x58\xaf\x1d\x43\x2c\x21\xfd\x11\xb6\x28\xee\xc8\xf1\x37\x5e\x83\xe2\x2e\x18\x90\xca\xfe\xb6\x19\x90\xcd\xbd\x16\x75\x25\x19\xbf\xd3\x03\xfa\x6f\xa0\x32\x69\x52\x3c\xcd\x89\x42\xb9\xc7\xff\x61\xb5\x27\x77\x76\x1f\x5e\x83\xf5\xc6\x47\x06\x16\xdf\xc6\x34\xfa\x18\xac\x5f\xba\x19\xba\xc6\xcf\xfc\x13\x2f\x3f\x73\x72\xac\xd6\xcf\x7c\xe8\x9c\x1f\xa9\x24\xc7\x6a\xd1\x7e\xa4\x16\x00\xf2\x87\x5b\xfa\xae\x9c\xe6\x05\x79\xa9\x16\xab\xf9\x36\x5b\xc6\xbe\x5c\x2f\x58\xa5\xa9\xe2\x5f\xe9\x7b\x2a\xee\x28\x79\x09\x41\x98\x22\x39\xba\xce\x4f\xd6\x5e\xef\xa5\x5a\x4a\xfb\x15\xe6\x7d\xc8\x45\xbe\xac\xc8\xcb\x6f\xbc\x12\x3a\xcd\xce\xc1\xdc\xa8\xe4\xe5\xb7\x30\x0b\x7b\xc1\xea\x56\x68\xb1\xa2\x82\xbc\x54\xab\xa9\x7f\x5b\xf0\xe4\xd3\x5c\x92\x97\xff\x01\xc0\xa9\x7e\xb7\xd7\xd0\x53\x8c\xbf\x0c\x17\xb1\xc9\x69\x14\x52\x97\xab\xca\xe8\xa2\x82\x43\xae\x28\x16\xbb\xc8\x2c\x95\x76\xc1\x11\xa8\x53\xd5\x1a\xab\xc4\x1f\xa9\x44\x46\x69\x0b\x83\x52\x69\xfa\xa7\x4e\x36\x73\x50\xc9\xfa\xa7\x49\xb6\x8b\x07\x19\xe6\x23\xcc\x32\x6b\xe7\x17\xd0\x49\xba\x58\xb3\x74\x7a\x6c\xe6\xcb\x0c\xc6\xcd\x57\x0f\x28\x32\x7d\x5d\xd0\x03\x0c\x55\xb0\xf9\xd4\xd9\xce\x44\xa7\xf7\xe1\x7a\x83\xca\x3b\xae\xf7\x15\x32\x13\xb0\xc0\x4d\xaf\x15\x11\xdd\x85\x76\x68\xd3\x0f\xc3\x4f\x35\x46\x94\x1e\x22\x58\xaf\x5d\xa2\x77\xda\xbd\x54\xff\xc8\x35\x72\x6d\xbe\xa5\x55\x71\x17\x69\x54\xdc\x6d\xd4\xe4\x01\xf1\xaa\x55\x51\x3f\xf4\x7a\x18\xc4\xab\x12\xf5\x4f\xbb\xf7\x1a\xf1\xea\xcd\x87\xdf\x66\x79\x2d\xe2\x85\xc5\x35\x1f\x3a\xab\xd9\x7e\x6f\xef\x1b\xc4\x6b\x9a\xd2\x5f\x3a\xd3\x47\xbc\x2a\xdb\xfb\xd6\x05\x02\xc4\xab\x4a\xf8\x09\x16\x30\x3c\xc4\xab\x41\xa3\x49\xd0\x45\x3c\xc4\xab\x0a\x34\x9f\x3a\xdb\x47\xbc\x2a\xdf\xfb\xd6\x05\x34\xde\x55\x59\xf0\xcb\x00\x92\x41\xbb\x2a\xd9\xfc\x0e\x9b\x13\x77\x41\x6b\xe2\x2e\x18\x8c\xc9\x75\x5f\x3a\x33\xc0\xb9\xb0\x51\x5e\x82\x69\xde\xa2\x5c\x66\x55\x77\x77\x76\x03\x7a\xcf\x88\xc3\xb3\x66\xcf\x9d\x49\xa5\x36\xa4\x38\x35\x14\x2d\xe1\x76\x66\xf9\x92\xb6\x5f\x94\x5a\xb2\x32\xa5\x68\xbd\xe6\x46\xb0\xad\xa3\x2d\xeb\xd2\x17\x81\xf3\x04\x1f\x40\x8f\x27\x9b\x4d\xca\xe1\xdc\xb8\x91\x54\x44\x5b\x1b\x42\x8f\x84\xe1\xd6\x91\xc2\x61\x51\x6c\x50\x9a\xa6\x6c\x6e\xf3\xe9\xa7\xdb\x5a\x70\x85\x3d\x77\xa7\x67\xc8\x8b\xff\x3d\x3b\x78\x31\x88\x1d\xcd\xae\x42\x25\x7a\xd6\x22\x7c\x9a\x57\x30\x4a\x21\x35\x75\x79\xbd\xbc\xa5\xc2\xaf\x99\x52\x34\x1c\x52\xc0\x34\xd2\xd9\xaa\xb8\xe6\xca\x40\x0e\x53\x72\xa0\x05\xd7\x6b\xf7\xf3\x1a\xdc\x33\x0e\x87\xad\x84\xb1\xfb\x7e\x4f\xe5\xa2\x9c\x4d\x36\xa1\x85\x85\x13\xb9\x42\xa0\x8b\xc3\xe3\x81\x66\x56\x8e\x30\x23\xc2\x72\x29\xfc\x3b\xf6\x8a\x1f\x90\x6f\x15\xdf\x23\xc6\x1c\xc8\xb8\xe1\x50\x8c\xf9\xc1\x31\xa0\x15\xf4\x58\x12\x3e\xb8\x15\x34\xff\xe4\x9c\x7f\x36\xdd\x54\x61\x18\x05\xd3\x85\x20\xdf\x84\xee\xb6\x74\xf3\x72\x2c\xa0\x79\xf4\xc8\x89\x38\xfc\x26\x6c\x94\x83\x4a\xa0\xee\x11\x12\xfd\x56\xb9\xe4\xe3\x26\x16\xdc\xfd\x65\xb4\xee\x4b\xbf\xee\x4b\x55\xd7\x84\x11\xfa\x7b\x4d\x6b\xfa\x03\x65\xfc\x0e\x30\x13\x9d\x39\xdd\x93\x76\x9f\xf9\x67\x95\x5f\x45\x54\x9d\xf6\xd1\x0c\x9f\xd1\x2f\x36\x00\xa3\x6e\xcd\xb5\x00\x56\x56\xd4\x7a\x4b\x94\x70\x30\x8c\xfc\xeb\xae\x28\x6f\xf3\xe2\xd2\x24\x8a\x1d\x22\x36\xe2\xd0\xaf\x98\xd7\x9f\x0d\xf5\xa7\x0b\xe0\x47\x48\x04\xa1\x1d\x36\x2e\x40\x29\x5e\x02\x2c\x8d\xe4\xa6\xab\x0d\xfb\x99\xb3\xbf\xd7\x4f\xb8\x1b\xbe\xab\xd9\xec\xad\x85\x50\xcf\x5a\x9c\x69\x01\x66\xd3\xcc\xaf\x4c\x2e\x14\x6b\x9a\x32\x6c\xdb\x19\x45\x8a\x94\xb5\x84\x52\x5f\x35\xe8\x79\xd1\xd6\xe1\xb5\x9e\xb9\x99\xb5\x06\x6b\xd0\x5b\xa0\x12\xc1\x4f\x45\x3e\x97\x54\xe0\xca\xaa\x2a\x76\xdb\x64\xa7\x4d\xeb\x42\x8a\x81\x38\xeb\x6c\x32\x02\x4a\x5e\x7a\x0b\x40\x10\x0e\xa2\xab\x98\x17\x15\x9e\x25\x4f\x4f\x93\x03\x36\x4f\x0b\xf7\xe2\x03\xe9\x50\xb3\xa9\x24\x65\xda\x05\x2b\x84\xac\x78\xf9\xbe\xfc\x04\xcb\x7e\xa9\x11\xcb\xc8\x4b\xb6\xaa\x61\x80\xe3\x57\xe2\xbb\xa2\x73\xc0\x5d\xee\x01\xf9\x16\x5b\x29\x4a\x45\x8a\xb1\x38\x38\x9e\xa0\xe1\xb0\x4e\x8b\xb1\x98\xe0\x0a\xab\x94\x97\x13\x2c\xe1\xc7\x37\x13\xff\x80\xec\x3f\xbd\x88\xdd\xf1\x67\xcb\xba\x92\x70\x61\x6f\xcf\x4d\xad\x90\x6d\xef\x78\xd0\x1c\xfd\xe1\x30\xb7\x6e\x05\x7a\x7b\xb5\xe7\xd6\x1e\xe2\xfd\x63\xed\x62\xd2\x3f\x5c\xcd\xeb\x1a\x2d\xf3\x54\x0d\xa4\xfb\x47\xa8\xed\x3d\xb1\xfa\xb5\x14\xbd\x0f\x85\x7a\x47\xf0\xfd\x91\x31\x49\x69\xf5\xd6\x76\x5b\xc3\xa7\x34\xe2\x2b\x08\x40\x9e\x1a\x20\x06\x33\x7c\x7d\x64\xec\x33\x36\x03\x7a\x55\xec\x10\x73\x84\x6b\x52\x9d\x74\x4e\xc1\xb8\x9a\x18\x8b\x0d\x05\x6b\x6e\x3d\x6b\x80\x35\x03\x9e\x92\x1c\x61\x41\x6a\x27\x61\xfb\x4e\xbc\x92\x07\xe4\xa5\x02\x97\x7a\x2c\xd5\x7d\xc0\xd0\x63\x6d\x14\x86\xa9\xc4\x2f\x91\xb9\x17\xb4\xdb\xec\x3c\xe5\xc1\x6b\xb9\xe2\xfb\xc3\xe3\x93\xb4\xb4\xe5\x0b\xfc\x2d\xc2\xfb\x47\x68\x94\xba\xa2\x7d\xd0\x83\xd0\xf7\x87\xc7\xc3\x61\x5a\x8e\x0b\x75\xb5\x81\x4c\xaa\xb3\x37\xc1\xbc\xdb\x02\xa6\x50\xab\x14\x42\xd8\x8a\xd2\x4f\x0a\x4d\xa9\x85\x70\x2f\x7e\xa5\xf5\xc5\x22\x62\x55\x7e\xfc\xf9\xfc\xcd\xcd\x9f\xce\xfe\xe2\x59\x9c\x8f\x85\x5d\xd0\x5e\xe4\xeb\xa1\xc4\xed\x78\xd8\x6c\x68\x49\x34\x29\xc0\xd0\xa0\x84\xb5\x63\xe3\xf2\xe0\xe5\x84\x08\xac\x7e\x7c\x33\x21\x1c\x8d\x58\x78\x2d\xb4\x15\x02\x6e\xc3\x3b\x1d\x3a\xcf\xff\xda\xed\xb9\xdf\xb1\x8d\xab\x8d\x73\xf7\x6a\xf8\x55\xf9\x5d\xfe\xaa\x34\x9b\x4f\xc7\xa5\xda\x7c\x61\xd7\xaa\x1e\xa7\x15\xa1\xe3\x52\x21\x0a\x35\x3e\x0e\x58\x2f\xad\xc7\x95\x1a\x24\x83\x10\x63\xe0\x6b\x00\xd7\x46\x57\x60\x06\x70\xf8\x6d\xc4\xdb\x42\x78\xc3\xf4\x8f\x9b\x74\x61\x9a\x4e\x1a\xcc\x50\x76\x60\x3e\x2d\x5d\x0b\xa3\x58\x5d\x32\x16\xb8\x73\xdf\x36\x43\x9d\xb4\x95\xb0\x0a\xaf\x76\xd5\xe4\xce\x02\xee\x04\x94\x54\xc5\x03\xbc\x76\x19\x49\x27\xd1\x8f\xb4\xe2\x21\xed\xe8\x7c\xa5\x78\xd8\xa1\xe1\x69\x2e\xa7\x0b\x05\xe9\xaa\x2e\x43\xe6\x0d\x5f\xaf\xb9\xe8\x6f\x74\x38\xa9\xa8\x9f\x80\x6a\xd3\x37\xed\xdf\xf5\x1d\xfb\xb8\xc1\xcd\xa7\xe2\x38\xce\x7d\x02\xca\xa5\x56\xa0\xc9\x15\x74\x56\x4f\x7d\x3d\x9f\xf7\x34\x55\x9d\x2b\x90\xa8\xd7\xa9\xc0\x8a\x0a\xc5\x12\xd4\x4c\x5e\x67\x51\x53\x2f\x1b\xd2\x32\xb2\x9e\xb8\xd4\x53\x37\xee\x80\xfe\xee\x60\xc7\x34\x93\xaf\xd7\xa1\xe5\x50\x4b\x0c\xfd\x97\xb2\xde\xcb\xa5\xa4\xcb\x15\x04\x24\x2d\xf7\x6c\x5f\x7b\x39\xdf\x33\xf1\x4d\x19\xdf\xcb\xf7\xa0\xe5\xbd\x34\x39\xa0\x07\x09\xda\x93\x8b\x5c\xee\xcd\x4a\x0a\x51\x04\x21\xc8\x69\x82\x14\x6f\x81\xc5\x1f\xd3\xdf\x1c\xe2\xfe\xe9\x9b\xa2\xbf\x73\x76\x92\x7b\xa7\xce\x80\x7b\x89\x46\xb9\x0f\xfe\x6d\xf7\x56\x2d\xd2\xac\xd1\x7c\x52\xe2\xae\x0e\xf3\x43\x90\xd6\x8e\xbb\xdb\xa4\x0b\x1e\xdf\x89\x57\x3a\x90\x73\xab\xca\x38\x52\x76\x82\xf7\x8f\x09\x21\x29\x0d\x36\x51\x4e\x90\xbd\xa3\x53\x84\x22\xd5\x0e\x0e\x20\xc4\xb3\xba\x12\x54\x75\x6a\x2f\xfa\x63\x8f\xb8\x88\x02\xee\xc6\x19\x8f\xc6\x35\xbe\x34\xd5\x21\x65\xf4\x0b\xfd\x57\x30\x38\x61\x5c\x73\x08\x17\xd8\xa0\x29\xb1\xc1\xf3\xd0\xc6\x7b\x45\x2a\x2a\xaf\xd9\x92\x96\xb5\x6c\x98\xdf\x45\x13\x2b\xbb\x73\x50\x9d\xbd\xad\x73\xbc\xe1\x1e\xe6\x0d\xcc\xfc\x24\xe2\xc1\x11\x56\xb4\x72\x5d\x14\x2e\xcc\x35\x0b\x73\x15\x87\xe9\x1f\x69\x34\x1c\xa6\x1c\xe2\x8c\x20\x2c\xbf\x7f\x89\xf4\xbd\xd0\xe8\xb7\xe4\xe1\x4b\x84\x75\x1c\x6e\x79\xf8\xf2\x15\x3d\x38\x40\x10\xa2\xa5\x69\x83\x1e\xbc\xb4\xe7\x6a\xcc\x14\x24\x4d\x80\x38\x98\x3d\xc5\x2b\x4a\x1d\x44\xe9\xab\x59\x46\xbd\x89\x6f\xce\x7e\xf8\xf9\x47\x17\x36\xc7\x58\xe3\x9d\x1b\x2b\xb8\x20\x8a\x34\x5b\x52\x61\x16\xff\x7c\xe6\xe7\xe4\xb5\x2c\x45\xed\xc7\x96\x0e\x90\x57\xc0\xf4\x89\xe0\xd3\x3e\x80\x83\xfb\xc5\x9a\x3d\xc7\xf2\x08\x1d\x1f\x35\x64\xb4\x1e\xdc\xc7\xc0\x3e\x52\x8f\xaf\x6a\xbe\x67\xf4\xb6\xac\xf9\x94\x52\x2f\x4d\xe1\x0d\x29\x8b\xa0\x1c\xbd\xa7\x5c\xda\x17\x66\x15\x79\xa4\x7c\xa6\x10\x37\x78\x26\x1c\x8d\x27\x06\x8d\xde\x94\xfc\x07\x88\xeb\x1c\x0c\xd1\x24\xae\xd7\x73\x57\xea\x8c\xcf\xda\x65\xce\xf8\x6c\xbd\x9e\x0f\x3c\xff\x0b\x36\xef\x66\x55\xe4\x72\x5e\x8a\xe5\x7a\xfd\xb8\xc1\x2c\xc6\x76\x0d\x58\xd6\x00\x3d\xe1\xde\x87\x8f\x12\xbd\x10\xbe\x4d\x01\x13\xca\xd7\xc4\xba\x6a\x9a\xf0\x3f\x43\xbc\x6a\x9a\xf0\x0b\xc0\x75\xcc\x8c\xde\x13\xfe\x45\xab\xac\x52\x8a\x8f\x9a\xce\x2e\x74\x71\xf7\x7b\xbd\x0e\x47\xa1\x5a\x2c\x3f\xc3\xcb\xc4\xcf\x5e\x7b\x4d\xa0\xdf\x5c\x52\x95\xa7\x90\x80\x5e\x59\xbb\x52\x84\x99\x04\x70\x96\x7e\x55\xf3\xb3\x2f\x2b\x26\xe8\xec\x5a\x6f\xbf\x6f\x67\x98\xdd\x88\x56\x76\xd3\x1c\xd4\x3e\xd5\x80\x7b\xc6\x67\xad\x7a\x21\x44\x67\x94\xcf\x52\xb4\x89\x5d\xa1\x9d\x58\xdf\x9e\x15\xac\xe5\xbd\x25\x89\x1d\x2d\x2c\xe2\x9e\x80\x82\x23\x75\x92\x0a\x67\x26\xa4\x39\x1f\x33\xe4\x14\xa1\x91\xd5\xe3\x4b\xc3\x8f\x05\xe7\xc2\x1a\x9c\xd8\xcb\xa5\x73\xb0\xc1\x16\xbf\x75\x58\x1b\x03\x25\x29\xd8\xdd\x1d\x15\x69\x02\x13\x4c\xb0\xc0\xd2\x7a\x68\xb0\x27\x41\xd1\x1a\x1d\x53\x52\x1a\x2e\xa5\x45\xcb\x3d\x0b\x00\x78\xb6\xd1\x38\xcb\xae\x3a\x9b\xf2\x99\x09\x24\xbc\xf7\x59\x73\x06\x7b\x7a\x44\xc8\x1c\xa7\xfd\xe3\xc6\xa5\x92\x22\x01\x19\x91\xe6\xbe\x42\x9b\x39\xe3\x79\x51\x3c\x3c\x72\x08\x45\xb3\x7f\x84\x8f\xe1\x6d\xab\xbd\x0f\x1d\x48\x69\xa3\xaf\x10\x97\x59\x9b\xb6\x16\x9c\x20\xeb\x75\xa9\x1f\x51\x86\xdb\xd0\xd0\x8b\xa9\x13\x2f\x04\xdb\xd4\xb8\x13\x6c\x37\x29\x3a\x9b\x01\xba\x64\x45\x42\xfb\xd8\x06\x2c\xcc\x50\xdb\xb1\x6a\x10\x73\x66\x4b\xf4\xe4\x3e\x13\x67\x8d\x0e\x75\xac\xe4\x5b\x1a\x18\x37\xfb\x2c\x5f\x0b\x7b\x2a\x0a\xd1\xb1\xca\xc0\xfe\x6c\xb3\xa0\x56\x20\xb2\x07\x0d\xec\x01\x3d\xb6\x77\x4b\xa7\x79\xad\x6e\x5d\x4d\x87\x41\x18\x66\x43\x88\x0d\x84\x33\xa1\x0a\xe7\x39\x9f\xc7\xde\xfc\x5a\xf9\x57\x7c\x7c\xfb\xbe\x6d\x03\xdf\x3e\xc6\xf9\xfc\x19\x83\xd4\xfc\xe9\xfe\xb1\x66\x93\x9b\xd0\x0c\x3c\x08\xae\xac\xe5\xc4\x72\x38\x4c\x99\x82\x4a\x6e\xb9\x7d\x81\x8f\x11\x16\x87\x87\x08\xc6\xc8\x76\x18\xd7\xd4\xee\x93\xa3\x5d\xfd\xe1\xb4\x4c\x23\xeb\x08\xa2\x5a\x18\x36\xc9\xfa\x2a\xb0\x14\x02\xc2\x12\xae\x5c\x2c\x08\x1d\x1f\x4f\x30\x27\x74\xfc\x32\x34\x79\x53\xc8\x35\x8d\x71\xd4\x7f\x2b\x63\x28\xf1\xb7\xf4\x04\x21\x81\x62\x5d\xcd\xe8\x3c\x8c\xc2\x12\x7a\x9d\xd3\x2c\x80\xe9\x18\xc8\xa5\xa6\xdb\xb6\x1b\xc9\x0e\x2b\xa4\x29\xd7\x08\x49\x29\x88\xa1\xec\xbe\x3f\x3e\x91\x87\xc7\xa3\x23\x84\x39\x39\x7e\xc5\xbf\x93\xaf\x38\x58\x2f\xf1\xc3\x63\x9f\xbe\xe3\x93\x81\x67\xa1\xd5\x5e\x08\xf0\xc8\xca\xd4\x02\xe4\x84\xa9\x05\xa8\x08\x1b\xbf\x9c\x58\x69\x03\x90\x67\x27\x0e\x23\x8e\xc2\x3b\xc3\xc0\x38\x58\x46\x59\xbc\x91\x22\x37\x9b\x94\x9a\x88\x6d\xfb\xc7\xb8\xee\x99\x31\x04\xcc\xba\x2d\xe2\x4e\x14\x7f\x97\x21\x00\x6a\x9c\xe2\xb1\x54\xfc\x08\x16\xb1\x2d\xbc\xe4\xd3\x2d\x4e\x3c\x75\x4b\xaa\xcc\x73\xb6\x32\x6c\xf3\xff\x5d\xdb\x79\xd4\xdd\xce\x86\x46\xec\x59\xc7\x22\x97\x54\xec\xb2\x80\x50\xb0\xcd\xb9\x76\x65\x20\x58\x12\x6b\xc1\x87\x73\x72\xf4\x2a\xff\x8e\xbe\xca\x0f\x0e\x90\x1c\xe7\xfe\x72\xe5\x7a\xb9\x28\x96\x3a\x92\x9c\xad\x5d\x93\x23\x5c\x58\x9e\x6c\x6a\x7f\xcc\xed\x8f\x95\xfd\xb1\xf0\xd8\x35\xc5\xd1\x54\xe8\x51\x5d\xe3\xd5\x49\x41\x64\x56\x2d\xd8\x5c\xa6\x68\xf4\x12\x52\xd2\x39\x91\x6a\xe5\x79\xba\x22\x52\xb1\x66\x27\xe9\xb4\x29\x84\xbd\x0a\xda\x4a\x7d\x9f\x90\xf9\x70\x28\xd2\x15\x1a\x0e\x57\x7b\x8c\xef\xcd\xdb\x15\xa6\x63\xf7\x35\x41\x23\x96\xae\xd0\x49\xea\x35\x83\x6b\x02\x0e\x57\xce\xb9\x4c\x9b\xc4\xe3\x23\x84\x46\x41\x67\x29\x4b\xe5\x58\x3a\xe7\x82\xc0\x33\x06\x55\x35\x15\xa0\x2a\x62\x37\x87\xc5\xb3\xe6\xb0\x40\xc3\xe1\x62\x87\x39\xf8\x0d\x0c\x34\x9b\x59\x06\x6c\x17\xc2\xcb\x0e\x79\xa4\xe8\xf0\x83\x1a\xdf\xb7\x28\xd6\x7b\x32\x3b\xf1\xe9\x66\xf1\xf0\x58\x18\x00\x9b\x2a\xce\xc3\x09\xdb\xe0\x19\xe6\xc6\xf7\x54\x18\x94\x33\xd4\x8c\xc7\xb8\xdc\xe3\x65\x9b\xa0\xb1\xac\x5b\x44\xf4\x5f\xe2\xda\xa8\x89\x76\x01\x24\x3c\xb3\xd3\xe8\x41\x08\x65\x17\x21\xd4\xe4\xf8\x55\xfd\x9d\x7c\x55\x03\xf7\x5e\x87\x08\xa1\x9e\x0c\x14\x44\x96\xa6\xbe\x02\x43\x8a\x67\xa4\x34\xbb\x3a\xd5\xb4\xe1\x82\x80\x1c\x7f\x4a\x28\x9e\x93\xd2\xed\xcf\xca\x95\x13\xe9\x1c\x9d\xcc\xc9\x74\x3c\x9f\x8c\x78\x3a\x47\xeb\x75\x5a\x66\x35\xd7\x05\xe7\x0a\x30\xa6\xa6\x2d\x84\x35\x24\xce\xc8\xca\x36\xdb\x74\xa7\x12\x08\x21\x2b\xb3\xbd\x4b\x92\xa7\x53\x3c\xef\xf0\xbf\x40\x63\x2c\xbf\x3f\x3c\x46\xa1\x05\xbc\x2b\x30\x5e\x1e\xbc\x9c\xd8\xc0\x1e\x61\xfa\x37\x93\xc1\xac\x81\xde\x99\x82\x5b\xe8\xeb\xbe\x0d\x38\xde\x8e\x76\xe8\x81\x2a\xbd\xc7\x45\x30\x22\x2c\x49\x90\x60\xc9\x22\x8a\xbf\x05\x36\x06\x8e\x05\x1c\x0a\xcc\x88\x54\x44\x02\x48\x90\x16\xc3\x61\xa1\x89\x11\x1b\xda\x70\xe6\xd4\x29\x56\x99\xa6\x29\x08\xb5\x0e\x25\xea\xcc\x48\x13\x96\x90\x89\xef\x11\xbe\xef\xbc\x67\x07\x31\x42\x1f\xdc\x99\xb0\xd2\xbb\x00\x1c\x5e\xfe\xd1\x90\xb7\x22\x14\x2f\x1d\x28\x98\x98\xc1\x33\xb2\x7f\x8c\x46\x00\x95\x2b\x0f\xf2\x16\x1e\xe4\xad\xd0\xc9\x8a\xcc\xc7\x2b\x05\x79\xab\x10\xf2\x56\x0a\x46\xe7\xa6\x2d\x05\x79\x0b\x74\x92\x2e\xc9\xc2\x36\xdb\x74\x37\xd3\x90\xb7\x40\x0a\x85\x38\xf0\x58\x7a\xe0\x91\xa7\x73\xbc\xea\x88\x67\xd0\xe0\x5e\xab\xae\xac\xaa\xb7\xc9\x1a\xdf\x1f\x7c\x33\x69\x09\x00\x02\x39\x42\x6a\x8d\x0f\xbc\x4a\x16\x6e\xee\xf1\xb7\xe6\x10\x3c\x3c\x0f\x30\x1f\xf0\x34\x18\x1f\x96\x64\x1a\xeb\xe0\x09\xc0\x9c\x0d\x87\xd3\x10\x30\x97\x0e\x30\x67\xc3\x21\x78\xcf\xbd\x0f\x00\x54\xad\x4e\x19\x99\x90\x0e\xb5\xac\x32\xf1\x03\xc2\x0f\x31\x8d\x68\x57\xfc\x61\x6e\xdd\x81\xbe\xbd\xbf\x79\x65\x7c\x4e\xf8\x80\x6f\x98\x12\x7a\x40\xbe\x45\xdb\x16\xb9\x83\x03\xe8\xc4\x58\xed\xc7\xa4\x6a\xe4\x9b\x57\xf2\xbb\xce\x1c\xdc\x13\x84\x9d\xfa\xf2\x40\x40\x4e\x8c\x0f\xc2\xa8\x44\xcf\xd5\x75\x0d\xa0\x1e\x79\x60\x4b\x7e\xd2\x51\x5a\x77\x57\x30\xc4\x8c\x90\xdd\xd1\x55\x77\x66\xd8\x64\x75\x16\x5a\x65\xc5\xa4\x3c\x4f\x6a\xb8\xf5\x3b\x92\xe0\xf9\x8c\x74\xb6\x57\x83\xb6\x51\x16\x91\xeb\x75\x63\x05\x66\x1f\x28\x9a\xf9\x9f\x4b\xba\x74\x0f\xeb\x3c\xe4\x6b\x07\x1d\x29\xe5\x9d\x84\x91\x6f\x36\xd6\x6a\xf9\x9d\x22\x1b\x61\x11\x53\x8a\x46\xfb\x69\x63\x71\xaa\x06\xb4\x4f\xb5\x9c\x09\x7e\x69\x85\x0b\x1a\x0e\x4d\xa2\x99\x73\x24\x9e\x89\x4f\x09\x77\xdf\x10\xb7\x29\xe5\xb0\xf6\x4d\xc8\x88\x1a\xe5\x63\xe4\x09\x71\x4b\xf0\x72\xd2\xb0\xb7\xba\xce\xa8\x79\x07\x61\x45\xeb\xf0\xb0\x57\x51\x9e\xbe\x9e\xb1\xd5\x7d\xc0\x70\x07\x2f\x84\x5b\x14\xd7\xc0\xda\x96\x80\x68\x2b\x45\x98\x23\x45\x4b\xf9\xef\xf8\x6c\x0f\xbe\xfe\xb2\x11\x70\x41\x65\x2d\xa4\x04\xad\x45\x5f\xed\x48\xf9\xd6\x98\x83\x43\xe2\x2f\x78\x0c\x6e\x9d\xb9\x4f\x78\x92\x2f\xe8\x17\x7b\x8c\x4d\x41\x14\x51\x14\xb4\x57\x2b\xc6\xc0\x58\xc1\x55\x63\x79\x14\x9c\x42\x14\x3b\xa0\x46\x25\xe7\x24\x99\x20\x6e\x2b\x8a\x16\x8a\xa0\x46\x88\x15\x76\xd5\xf8\x91\x3f\x32\x6e\x81\x80\x60\x7f\xd9\x55\x1e\xbd\x12\xdf\xf1\x57\x88\x7e\x4f\xe4\x98\x11\x71\x90\x96\x24\xe5\x87\x02\xbd\x78\x89\x0e\xcb\xff\xdf\xcb\xc9\x89\x20\xec\xe0\xe5\x88\x13\xe6\x5e\xc9\x7c\x0f\xf1\x38\x4f\xc4\xc1\xcb\x91\xd8\xa4\x32\x40\x52\xa1\xcb\x51\x3b\x13\x27\x15\x3a\xc2\x30\x1f\x00\x3a\x7b\x5f\x08\xda\x33\xb1\xe8\x86\x36\x67\xb3\x4b\xc6\x78\x0f\xc6\x22\x6b\xec\xac\x59\xfc\x3c\x6d\xd8\x42\xdd\xfa\x1f\x92\x63\x1c\x1b\xba\xc4\x2f\x8d\xd9\xd8\x53\xc3\xde\xb7\x4c\x45\xfb\x79\xa7\x87\x90\xa2\x12\x0a\x6d\xa1\xe9\x6c\x4c\x34\x21\xb1\xed\x7e\x51\x80\xd1\x2c\xad\x36\xaf\x69\x75\x69\xe4\xad\xf1\xc3\x6b\x43\xec\x6c\x93\x7c\xee\x13\xc2\xcc\xcb\xb9\xa3\x57\xfc\x3b\xe6\x8c\x51\x0f\x0e\x10\x1b\xf3\x09\x88\x6c\xbb\xd8\xa2\x5f\x93\xd1\xab\x80\x3b\xda\x8f\x9e\x0c\xbb\x06\x16\xa1\x18\x06\xcb\xc8\x11\x5a\x2a\x11\xdc\xa0\x83\xce\xa1\x8c\xd5\x88\x2a\xb5\xb1\x0c\xc6\x01\x5a\x5c\xa7\x82\x3d\xb2\x8b\x16\x53\xed\x39\x93\xa6\x90\xdf\x7c\xc5\xbf\x53\xc0\x3e\xe6\x93\xef\x48\xf9\x8a\x2b\x28\xa4\x44\x82\xdd\x2e\x0e\xe4\x42\x29\xd3\x12\x26\x8a\x06\x6e\x63\x8f\x9c\x1f\xf5\xf8\xf9\x6f\xaf\x7d\x0c\x2a\xbb\x1b\xd0\x4f\x6b\xec\xd2\x49\xa7\x76\x2f\x7a\x0d\x37\xfa\x09\x78\x8e\x55\x41\xfd\x2a\xdb\xf6\xa8\x9e\x98\xb8\x11\xba\xc4\x90\xaf\xaf\xea\xb2\x78\xa1\x89\x2e\xd3\xda\x4d\x2c\xc8\xfb\x5c\x2e\xb2\x65\xfe\x25\x3d\xc2\xf4\x50\x5a\x9a\xae\x35\xc4\x7e\x3a\x7d\x8b\xd2\x4f\x1d\xa6\xd6\xb4\xfa\x29\x87\x6d\x2a\xa9\xb6\x6b\x07\xb5\xf4\x24\x38\x48\xbf\x49\x75\x64\x3d\x46\x0f\x66\x99\x56\x6a\xd7\x8d\x0b\x58\x32\xd3\xef\x01\xcc\xa3\xf9\xf0\x39\x00\x4e\xa8\xa2\xed\x0e\x6b\xc9\x8a\xe6\x0b\x3c\xad\x05\x4f\x05\x14\x5a\x0c\x1e\x0b\xc0\x6b\x2c\xdd\x1e\xf8\x2b\x60\xf7\xb9\x64\xff\xa0\xc4\xba\x71\x15\x0f\x96\x23\x35\x4e\xce\x8e\x14\x72\x04\x5f\xe7\x28\x4d\x5e\x5f\x5e\x5c\x9f\x9e\x5f\x9c\x5d\xdd\x5c\xfe\x72\x76\x75\x75\xfe\xe6\x0c\x82\xe5\x6d\x35\x4b\xe0\xbf\xd5\x1e\x41\xd8\x81\x59\xc3\x81\xcf\x10\x1f\x41\xff\xd7\xf4\xb3\x51\x97\xe5\xd3\x05\xd5\x23\x9e\x31\x18\x45\x2e\x1e\x50\xca\x75\x86\x2e\x69\x3d\xf9\x69\xef\xcd\xc6\xbd\xee\xeb\xbe\x8a\x91\x62\x7e\x33\x63\x31\x71\xa6\x3b\xa0\xc8\xab\x4c\x70\x1d\xaa\x58\xe1\xb8\x03\xc4\xf2\x93\x1f\x7d\xd0\x57\xd3\x1b\x67\x83\xc1\x9c\x1b\xaf\xb9\x70\x4d\x75\x24\xe5\x9d\x70\xe2\xb5\x0e\x80\x13\x19\xcf\x51\xdb\x2f\x46\x45\x23\x21\xe5\x06\x9e\x6b\xa5\xb4\x36\x1a\x4a\xf0\xba\xdc\xb3\x46\xb0\x18\x62\xc7\x05\x55\x85\xd1\x28\x76\x6b\x53\xdd\xc1\x58\x4e\x06\xc6\xa1\x17\x8d\xb5\x39\x96\x13\x2c\x86\xc3\xd4\x95\x99\xba\x54\xbb\x1a\xc3\xa1\x68\x02\xa9\xa3\xcd\x53\x8b\xda\xd6\x1e\x2a\xa0\x3a\xe7\x7f\x33\x2e\xd6\xdb\x68\xc2\xe0\x83\x94\x92\xc7\x0d\x1a\xcb\xec\xf2\xd7\x8b\xb3\x2b\x13\x4a\x16\xaa\x76\xc8\x2d\x41\xab\xb2\xb8\x37\xc3\xff\x13\x7d\x88\xef\x7d\x38\xbe\x76\x9d\xb4\x1b\x7b\xd9\xac\xcd\xdb\x32\x42\xbf\xfd\x16\x13\x20\xab\x26\x8d\xae\x95\xa2\x67\x44\x56\x95\xb5\x98\x1a\x1e\xd4\x62\x43\x57\x9c\x7e\x59\xe5\x7c\x06\x4f\x12\xdf\x01\xac\x03\x9f\x61\xed\xc4\x06\x9c\xc8\x8d\x6f\xb2\xdb\x99\x29\xc7\x4d\x40\xc2\xd8\xfe\xb3\x90\xa8\x2a\x2d\xc5\x59\x0e\x3c\xe3\xc4\xf6\x42\xa6\x1c\x05\xb5\x82\x40\xac\x85\xd1\x7d\x60\x8a\x79\x48\x76\xc7\xfb\x27\x15\xae\x36\x6d\x97\x61\xcc\xdf\x4d\x6d\x29\xdf\x8c\xe2\x8e\x4a\x6d\x02\x9d\x4a\x9c\x54\x8c\xdf\x15\x54\x82\x4f\x30\xff\x39\xd4\x8e\xd5\xb5\xad\x80\x64\xb9\xa4\x7e\x03\x79\xa0\xe9\x06\xbd\xca\xd7\x3f\xfe\x61\xf3\xb4\x0a\x77\x59\xf8\xe3\xe9\x6e\xb1\xc4\x55\xb3\xc5\xd2\xbd\xd8\x81\x89\x54\x99\x9b\x31\xd8\xc5\x45\x8e\x04\xd4\x6f\xde\x7c\xa4\xb9\xc3\x06\x7c\x82\xd0\x49\x3e\x8a\x93\xdd\xaa\x58\x73\x0c\x52\x89\x02\x43\x83\xdc\x8e\x87\xcd\xd3\x38\xcf\x2d\x32\x6f\x31\x07\xde\x90\x85\x3f\x64\x48\xe1\xc3\xa1\xde\xe1\xe1\x50\x6f\xd5\xc6\x34\xe5\x42\x5d\xf5\xcc\x0b\xde\x2e\xda\xb9\x90\xdc\xda\x71\xa1\x1d\x47\x85\x73\x7f\x30\xfe\x18\xd5\x62\xc2\x8f\x7c\xbd\xd6\x43\xeb\x1d\xdb\xb3\x7b\xed\x5f\x0b\x6f\x1d\xf6\xc3\xce\x42\xd3\xb3\x67\x4d\x47\xcf\x83\xaf\xd7\x7a\x3e\xb6\x8b\xf5\x5a\xf7\x10\x9b\x4f\x91\x57\xd5\xa0\x63\x1a\xf4\xba\xac\x8b\x19\x98\x3b\xe8\x09\xef\x19\xe8\x48\x4c\x13\x15\x8a\xbf\xe3\xf3\x80\x1b\x98\x7c\xc5\x32\xc8\x34\x19\x25\xa8\x89\x09\xb3\x17\x35\x29\xc1\x25\x79\xdc\xe0\xca\xda\x77\x84\x6f\x8f\xac\x39\x17\xd6\x3c\x9f\xf4\x79\xbe\x72\xac\xae\x56\x05\xdf\x0a\xa7\x83\xab\xff\x09\xbc\x5b\x10\xd9\xbc\x2e\x8a\x8b\x7c\x49\x11\xae\xd6\xeb\xb4\x22\xfb\x2c\x4c\x46\x2e\x56\x84\xbd\xa5\xaa\x51\x89\xdd\xcb\xdc\x51\xb5\xd9\x40\x85\x3b\x0a\x81\x34\xdc\x5d\x56\xa5\x1c\x65\x53\x78\xea\x9e\x42\xae\x97\x23\x11\xf2\xd6\xa6\x6e\xbf\xa1\x01\x00\x6e\x8c\x11\xc1\x8b\x25\xf7\xbd\xb4\x30\xdf\x9f\x4c\x2a\x08\x1f\x33\x70\x8f\x19\xbd\x93\xcd\x43\x97\x1e\xa2\xd1\x3e\xec\xd0\x14\x5d\x43\xab\xfa\xb4\x9f\xb9\xa6\xad\xaf\xc4\xbc\x72\x4f\x07\xed\x2a\x59\xab\xd2\x26\xcc\x01\xa4\x72\xeb\xd5\x7d\x46\xaf\x8d\xcf\xa0\x90\x80\x73\x4b\x62\x92\xe3\x7e\x35\x4d\xcd\xae\x60\xd8\x61\x9f\x4e\x37\x96\x67\x0b\xba\x0e\xe7\xd8\x60\xd8\x65\xfe\xc9\x15\x4a\x9b\x49\x86\x53\xb4\xd6\x77\x7e\x8b\x2d\xb9\x31\x9c\x82\x2e\xab\xa3\x36\xf5\x2b\xdf\x2f\x80\x4d\x6a\x6b\xa9\x1a\x92\x91\x81\x01\x93\x20\x29\x25\x55\x1a\x4e\x2e\xb6\x1d\x08\x79\xad\xf8\xaf\xcb\xad\xdd\xaf\xb7\x1d\xc2\x28\x6e\x4a\xd2\x8e\x7c\xc2\xb0\xbe\xdd\xf7\x9b\x85\x32\x33\xef\x1a\x0f\xbe\xcd\x59\xa1\x5f\x03\x18\x0c\x91\x73\xe7\xdf\x73\xaf\x9c\xef\xfd\x7b\x72\x10\x19\xe7\x41\xf2\xef\xd9\xde\xfb\xb2\x92\x7b\x05\xfb\x44\x8b\x07\xa8\xb5\xd4\xe7\xb6\x78\xd8\x33\x9e\x1c\x8c\xdf\xcf\x52\xe8\x46\xef\xf3\x82\xcd\xf6\x96\x25\x3c\x39\xd0\x6c\x5b\xe6\xdc\xed\x44\xde\x5a\x7b\xa3\xbf\x61\x9c\x49\x13\x5f\xe6\xa4\x27\x5d\x93\xf9\x23\xcd\x9e\x51\x79\xa9\xce\x03\x4a\x4b\xef\x94\x20\xdc\x59\x10\x1d\x71\x5b\x1b\xe4\xbf\xf8\x3f\xe3\xff\x33\x9a\x1c\x8c\xe0\xef\xbf\xbd\x08\x0d\xeb\xbb\x0f\x5e\x62\x34\xe5\xae\x20\x33\x30\xd4\x94\x09\xd9\x21\xdc\x4f\x9f\x79\xb3\x97\x27\x11\xee\xa7\xc9\xee\x5b\x2c\x5b\x6c\x38\x4c\x8d\x01\x27\x6a\x5a\x79\x34\xbf\x46\xd4\xa5\x6d\x50\xc0\x06\xe4\x1a\xb0\x3a\x4c\x8a\x08\x0b\x04\x6c\xe3\x8d\x0c\x30\x6a\x1f\x3b\x64\x45\x40\xbb\x95\x2b\x1a\x4a\x4a\xf3\x4d\xbd\xef\xa9\x6f\x1c\x5c\x6e\x63\xb0\x70\x40\x5a\xef\x50\x72\x9e\xb3\x62\x87\x62\xd6\x60\x7f\x6b\x21\xb5\x40\x97\x5b\x0b\xc6\x50\x6a\x83\xe7\x63\x2e\x4b\xe8\xe7\x3d\x17\x8d\xb1\xcd\xc4\x9a\xd0\x33\x31\x96\xf2\xab\x09\x60\x17\xaa\xd5\x67\x7d\x7c\x37\xd3\xcd\x8a\x8d\xf9\x24\x02\x54\x8a\xd6\x93\xe1\xaa\xa9\xa4\x96\x65\x74\xcd\x23\xc3\x0f\x5e\x5c\x06\x03\x78\x06\xb0\xf8\x63\x0d\x07\x26\x27\x41\x66\x00\x24\x9d\xcc\x66\x96\xed\x1c\x3b\x29\x39\xe9\x08\x15\x54\x73\x3d\xf6\xb7\x6d\x0a\x51\x71\x93\x8a\x32\x08\x58\x0d\x45\x6f\xc4\x38\x0c\xe1\x73\x18\xda\x77\x02\x87\x57\xbd\x71\xaa\xbb\xf4\x08\xf2\xa7\x38\x47\x36\x4f\xa9\x3f\x5b\x36\xb1\x3d\x69\x9e\xd2\x08\xc4\xa8\x8f\x71\x72\xaf\x67\xc7\x66\x4a\xec\xcf\x07\x35\x17\x63\xee\x6a\x84\x9b\xe1\x17\x39\x69\x8d\x81\xec\x1f\x8d\xba\x73\x20\xb9\x7b\x70\xe7\x8b\x36\x5a\x62\xa2\x41\x9b\x1e\xe1\xc3\xa1\x2f\x50\xb6\x08\x18\x38\x32\x6b\x86\x6e\x13\x1d\x16\x35\x8a\x42\xe1\xd9\x05\x22\xcc\x3b\x22\xa8\xa9\x60\xb7\xbd\xbe\x86\x6c\x8f\xcd\xd2\x05\x9f\x46\x20\xf6\x06\x5a\x01\xa0\x3a\x79\x22\x3f\xa5\xce\xcc\x2d\x18\xf5\x49\xf0\xe5\xc6\xa5\x8a\xb7\xfd\x6b\xda\xb5\x7a\x6b\x89\xc5\xaf\x1c\xbb\x6b\xe8\xa4\x27\x7d\xc7\xb1\x76\x06\xb4\x6d\xd0\xfd\x3e\x73\xc3\xcb\x01\x7c\x51\xa6\x3d\x39\x2d\xf4\xe2\xf5\xdb\x42\xb0\x3e\x25\x1a\x97\x5c\xed\xb2\x50\x7e\x2b\x27\xfd\x59\xd0\xee\x2e\x0b\xd6\xad\xd4\x50\xe5\x11\x3b\x8e\x88\x0f\x4e\x23\x1e\xfd\x45\x11\x69\xfe\xec\x03\x8b\x0a\x01\x5a\x4a\x73\x9c\xcd\x9c\x9a\xbd\xb5\x19\x28\xc6\x21\x7a\x76\x05\x0e\xe3\x50\x0f\x4f\x3c\xea\xba\x23\xb1\x41\xbd\xc7\xb8\xad\x10\x34\x48\xf7\x6d\x29\x20\x62\x62\x38\xa9\xce\xed\x0b\xbb\xdc\x09\x87\x79\xd9\xd7\x46\xcb\x7f\x74\xd0\x4e\x07\x9b\xc8\x5e\x6c\x22\xc3\x94\x6e\x97\x29\x45\x1d\x97\xc3\x96\xb0\xe8\x8e\xe6\xb7\x38\xbf\xe9\xbb\x41\xed\xdd\x25\xb6\xac\xcf\x2e\x17\xb2\xed\xc2\xbb\x0c\x3b\x0b\x25\x7a\x17\x4a\xf4\x2e\x14\xac\x90\xe8\x19\x59\xbf\x4d\xbe\x1b\x86\x56\x3b\x0b\x6f\xa1\x84\xba\x69\xac\x3e\x5c\x0d\x53\x8b\x66\x68\x54\xd0\x61\x47\x16\xc0\x00\x9f\xa0\x56\x7b\x27\xea\xcf\x2e\x67\xb5\x91\x5e\xc2\x41\x35\x6c\x75\x68\xc8\xeb\x13\xd5\x5d\xf3\x9c\x70\x98\xaf\xd2\x18\x25\xee\x63\xbb\x4e\x0e\x19\x4f\x10\xd2\x66\x20\x8f\x56\xda\x32\x92\xd8\x32\xd2\x70\x08\x5b\xfe\x05\xfa\x06\xe3\xbd\xd8\x6c\x60\x41\x20\x17\xfb\x9e\x6a\x77\x29\x97\x73\x18\x6e\x60\x8e\x12\x0c\x0b\xda\xe3\xc8\x0f\xc1\xeb\xc3\x96\x9d\x64\xc3\x42\x8c\x59\x33\xc1\x20\xf5\xa9\xc9\xf1\xf6\xe4\xc0\x29\x62\x1f\x02\xd0\x2f\x18\x5a\xa6\x2d\x38\xef\xa3\xf9\x2b\xd2\x09\x6c\x12\x90\x38\x68\xd0\xbc\x78\xaa\xfc\x17\x4f\x29\x27\xea\x04\xa2\x70\x6f\xb5\x3d\x55\x9a\x2b\x62\x79\xdf\x0b\xc0\x18\x3f\x42\xac\x75\x84\xfc\x89\xc1\x21\xda\xe5\x6a\xf2\x2b\x0d\x87\x69\x49\xfa\xb3\xa1\xcd\xae\xf4\x21\xef\x3c\xf4\x6f\xdd\x2b\xb1\x1b\x7b\xea\x87\xef\x0b\xce\xb9\xc7\x5d\xf6\x61\x67\x16\x82\x7d\xe3\x78\xbc\x1f\x29\x5b\xc1\x5f\xe7\x6c\x7a\x42\x40\x8a\xba\xa8\xb9\x23\x44\xdc\x7a\x65\x9c\xff\x8e\x03\x6b\xc9\x2e\x63\x83\xdb\xa2\x5a\x6b\x3c\x61\xb4\xec\x07\xdb\x9c\xc5\xd7\x13\x35\x9d\xa6\x4e\xe2\xc8\x82\x76\x99\x36\xcc\x08\x57\x78\x98\xad\xd7\xa9\xfe\x19\x63\xe3\xac\xc0\x8b\x8d\xc5\x13\x4a\x2f\xba\x65\x54\xc0\x0e\x39\x97\x64\xea\xd6\xdb\xc2\x38\xf4\x50\x38\x3b\x11\x65\x31\xcd\x9f\x74\xc1\x1f\x6c\x5c\xf4\x55\x1f\x2a\x59\x90\x34\x49\x0e\xc0\x24\x44\xe4\x7c\x56\x2e\x53\x74\xd0\xbc\xf9\x56\x3c\xc9\xaa\xc8\xa7\x34\x4d\xb2\x04\x27\x09\x1a\x78\x06\x0b\x73\xec\x5b\x32\x74\x50\x9a\x7e\x4c\xc8\xc9\xca\xac\x23\x77\x4a\x1b\x83\x7e\xfd\x1b\x26\x7c\xab\x65\xd7\x4d\x55\xd5\x03\x67\x5c\x52\xc1\x51\x5a\x1e\x24\xa3\xe4\x20\x3f\x48\x0e\x93\x83\x85\x89\x44\x6c\x65\x18\x5c\x1b\x6e\xcc\xf2\xbb\xc3\x65\xbe\x7a\x96\x17\xc7\x3e\x19\x9c\x3e\x63\xf7\x54\x48\x36\xa5\x5a\x6f\x19\xf5\x8b\x17\xc6\xea\xb2\xb2\xf4\xb8\xd7\xf9\xc4\xd2\x4c\x7b\x7f\xfd\x44\x1f\xfe\xba\xc7\xaa\x3d\x41\xff\x5e\x33\x41\x67\x49\x70\x33\xb9\x7e\xd5\xe2\xa8\x2e\x8c\x2a\xb8\xcc\xee\xf3\x82\x28\xf8\x62\xf3\xb4\xe3\x65\x52\x20\x28\x7b\x36\xbb\xa3\x69\x89\x75\x3d\x81\x90\xf6\xa2\x61\xad\xc4\xf4\x33\x31\xe7\x9b\x31\x3f\x38\x88\xd5\x1a\xe7\x13\x84\xf4\xd6\xc5\x7a\xe2\x5e\x1d\x5d\x83\x23\x5c\x7a\x3d\xe9\x5e\x78\xbc\x17\x53\x43\xf5\xd1\xc1\xe4\xa6\x4c\x15\x59\x53\x58\x19\x58\x8b\xa8\x13\x29\xda\x8e\x35\x16\xae\x64\xf6\x39\x2f\x3e\x75\xd0\xbf\x2c\x57\x55\x29\x64\xb7\x9e\x6a\xcd\x85\xe2\x1b\x34\x26\x42\xb2\x6d\xb4\x1a\x03\x9b\xd0\x9d\x9b\x8e\x21\x06\x32\x35\xe3\xb0\x3e\x97\x0b\xff\x5b\xe8\xf0\xc3\x90\xb2\x4b\x38\xb8\x1e\xe0\x5a\x32\x88\x14\xbf\xf7\x89\x3e\x18\x68\xd2\xda\xa4\xa3\xb5\x37\x28\x4f\x85\xc4\x6d\x2c\x02\x43\x80\x82\x57\x9a\x4f\xf4\xc1\x37\x2b\x15\x81\x7a\xde\xcc\x8b\x1f\x68\x53\x53\x45\x34\x3c\xb2\xd9\x97\x11\xc7\x9f\xe8\xc3\x88\xe2\xfb\xbc\xb0\xe1\xf5\xca\x5a\x8e\xf6\x8f\xf1\xbc\xc8\xef\xd4\x7f\x5d\x73\xd4\xf6\x39\x66\x76\x3b\xc6\x59\x4d\x17\x74\xfa\x49\x7d\xab\x21\x99\xf7\xee\x7a\x32\xfe\x4c\xcc\xd3\x6e\xa0\x70\x3c\xf7\x9f\x19\x9b\x7d\x71\xb2\xab\x60\xd8\x6a\xcc\x90\x8d\x69\x56\xd6\xb2\x63\xa4\xa3\xa0\x24\x66\xdf\xd1\x3c\xb5\x00\x33\x1e\x08\xaa\x76\x64\xcd\x75\x43\x55\x9c\x5b\x4b\x70\xed\x01\x05\xee\x59\xc5\x64\x2a\x00\x8d\x36\xe0\xe5\x6d\x7e\x47\xce\x0a\xd3\x8f\x4b\xf5\xb4\xf4\x4c\x6f\x54\xc4\x5d\xc3\xf4\x61\x5a\xd0\xbd\x19\x95\x10\x83\x60\xb4\x97\x1c\xc8\x83\x64\xef\xbb\x43\xf5\x03\xd9\x17\x9c\xd4\x59\x10\x36\xab\x48\x7d\x72\xd1\x58\x1b\x8f\xe9\x58\x4c\x26\x5f\xd5\x19\x0c\x31\xec\x39\x5c\xbf\x66\x61\x20\x58\xba\x3b\x1a\x8d\x4e\xd7\x74\x47\x62\xdd\xe0\xd6\x3a\xaa\x9a\x01\xae\xe7\x07\xc4\x8e\x64\xa3\x43\xf1\xeb\x31\xf3\xb6\xa1\x62\xcb\x2e\x2b\x7c\xb5\xd3\x9c\xe0\xd6\xa9\xf6\x46\x6a\x93\xf4\x56\x36\x89\x54\x65\x10\x1f\x42\xe8\x77\x12\xbc\x0f\xe9\xa5\x9d\x64\xea\x78\x90\xb6\xb9\x35\xac\x49\x7c\xeb\xad\x2a\x10\x06\x64\x8d\x76\x60\xe6\xce\x0e\x47\x0d\x01\x46\x6e\x3d\xee\xc1\x59\x78\xe5\xf4\xc5\xe6\xc0\x1f\xad\x99\x7e\x32\x86\xbe\x27\x47\x80\x52\x4c\x88\x34\xe0\x11\xd4\xb8\xd0\xb4\xe4\x92\xf1\x9a\xc2\x35\x60\x86\x7a\x84\x4b\xe3\x23\x4f\x1d\x00\x42\x38\x9c\x4e\xf0\xa6\x38\x30\x1d\xfe\x5f\x56\x0f\xa6\xbe\xce\xf9\xb4\x5c\x32\x7e\xa7\x56\x1d\x2e\x07\xfb\x50\x2d\x77\x85\xbb\x9e\xf5\x6c\xa5\x6d\x4e\x55\x61\x05\x0c\x32\xa3\xee\x55\xef\x2b\xf9\xbd\x3a\x95\x87\x87\x7a\x85\x15\x21\x22\x27\x7a\x99\xd7\x6b\x6e\x47\xbe\xf5\xde\x08\x56\xdb\xe2\x18\xd0\xc9\xdb\xd3\x61\xd0\x8d\x4c\x0d\x3f\xa4\xcf\x08\xa0\x4e\xcc\xd4\x05\x6d\x55\x7e\x7d\x66\x9a\xad\x5b\x62\x07\x6f\xbb\xba\xc6\xd8\xab\x76\x70\x30\x21\x47\xeb\x9d\xe2\x85\x69\xfc\x3f\x3e\x3c\xf4\xaa\x4f\xf4\x10\x35\xd9\xa4\x4d\x59\xf3\xd5\xaa\x60\x53\xe0\x22\x5f\x00\x4b\x1d\xb3\x7e\xf5\x0b\x55\x0f\x95\xa4\xcb\x17\x5e\xd2\x8e\xc5\x0e\xad\x02\x78\x5b\x79\x4b\x5f\x6f\x2b\x43\xf9\x1d\xe3\x5b\x5b\xd1\x25\x76\xea\xd0\x14\x5d\xe5\x02\x02\x48\x44\x57\xc5\x86\xbb\x11\xd5\x8b\x59\xb9\x3c\xb4\x31\xf6\xab\x96\x05\xb0\xf5\xdf\x87\xf3\x8e\x2d\x70\x45\xe5\x19\x74\xf4\x21\xd7\x21\x3e\x15\xe7\xd5\x4a\xd1\x9f\xce\x70\xda\x26\x80\xc5\xb0\x51\xb6\x42\x84\x13\x3b\x30\xaf\xa4\x97\x6a\x45\x09\x86\xcf\xd1\x3a\xf3\x0f\x46\x5e\x91\x52\x9c\x9c\xfa\x1b\xf7\xe8\xc7\xc3\x3d\xc2\x77\x54\x8e\x22\xaf\xf0\x2c\x19\xb4\xd9\xa0\x9d\xda\x3d\x77\xeb\xbe\x53\xfb\x62\xa7\xf6\xaf\x1c\x64\xec\xd4\x28\xdf\xa9\xd1\x33\x03\x4a\x3b\x35\xc9\x9e\xd1\xe4\x33\x97\xa0\xdc\xa9\xe9\x16\xcc\xec\xd8\x76\xde\x86\xb5\xad\x7d\x54\x5f\xd9\x47\xd5\xe9\xa3\x1f\xcb\xf4\x9e\x27\x3c\x4e\x0c\x67\xe4\x4e\xa2\x09\x3f\xe4\xbe\x29\xbf\x67\xa2\xe4\xcb\xbe\xd3\x1a\x41\x4f\xdd\x53\x1a\x61\x09\x59\xe0\xef\x70\xe0\xc0\xc7\x8b\x76\x25\xd2\x47\x9e\x2f\xe9\x28\x99\x95\xcb\xeb\x66\xcc\x4d\x81\x51\x8b\x9a\x70\x01\x49\x45\xe6\x0d\x3b\x5b\xe4\xd5\x9b\xcb\xf7\xc3\x61\x7a\x84\x41\x6d\x82\xec\x2a\xd9\x85\x38\x9c\x96\xcb\x15\x2b\xa8\xb0\xb3\xb9\x2d\x4b\x59\x49\x91\xaf\x12\x04\xf2\x38\xa8\x69\x06\xf8\xac\xda\xb6\x12\xe6\x64\x56\x4e\x6b\x1d\xcc\x81\x41\x60\x70\x49\xbf\xc8\x11\xc7\x8b\xbc\xb2\x73\x1b\xc1\x50\xed\x17\xae\xa8\xf4\x72\xbc\xaf\x0d\xda\xb2\xdb\x5b\xef\x81\xa7\xde\x59\x2c\xa9\xcc\x0b\xf7\x25\x6a\x2e\xd9\x92\x6e\x05\x85\x7b\x46\x3f\x6f\xbd\xb7\xda\x57\xc3\x8e\x28\x5c\x9b\x31\xe7\x0e\x2a\xe8\x17\x49\xf9\x2c\x7d\xf4\x7a\x18\x69\x6f\x3b\x75\x25\xcb\xe5\xd9\x3d\xe5\xb2\xd2\x29\xa2\x2c\xa5\x09\x24\xa2\x13\x14\xc0\x8c\x3a\x4f\x9c\xaa\x7a\xd5\xe7\x24\xc6\xb7\x7c\xa0\x22\x4d\x0e\x63\xab\x39\x5a\xe6\x8c\x27\x50\x14\x3f\x7a\xb6\xa0\xa3\xfd\xe3\x0d\xda\xe0\x1b\x05\x05\x1f\x1f\xf8\x74\xd4\x7d\x86\x18\x68\x37\x55\x39\xaa\x63\x82\x8e\x52\x6a\x9c\xdb\xba\xc0\xd8\x54\xd6\x2b\x2b\x0f\x52\xa9\x34\xf3\xa6\x67\x54\x8e\x4d\x02\x09\xb2\x47\x9d\x6c\xcd\xdb\x37\x93\xf1\x33\x31\xcd\x8a\x52\x27\x83\x04\x33\x3d\xd2\xb6\x96\x48\xaf\x4e\x22\xca\x5a\x52\x91\x80\xa4\x58\xa8\x81\xa1\x54\xe2\xc4\x56\x49\xbc\xea\xd6\x80\x2f\xe8\xa8\x76\xb7\xd4\xb9\x87\x8f\xcc\xa3\x0e\x9a\xb1\xea\x9c\x4b\x2a\xf2\xa9\x64\xf7\x56\x25\x09\x93\x87\x9d\x7d\xc3\xaa\x55\x2e\xa7\x0b\x2a\xdc\x3b\x34\xbd\x6c\x8a\x54\x86\x26\x36\x38\x58\xaa\x51\x47\xd2\xe0\x85\xa8\x6f\xad\xaa\x6e\xef\xc6\x1a\x29\xde\xdc\x00\x97\xa8\xa7\x3b\x82\xc9\xaa\x03\x5e\x4b\x3a\x43\x69\x9f\xc3\x21\x2d\x17\x34\x6b\xa4\x21\x03\x6d\x50\x26\x68\x3e\xbb\xe4\xc5\x43\x8a\xf0\x8c\xcd\x5e\x83\x0c\xf4\xaa\x2c\xe5\x2f\x8c\x7e\x0e\x86\x68\x03\xdf\x5e\x9b\xf7\xd2\xde\xbe\xa8\xa9\xc9\x5c\xc8\xab\xb2\x96\x8c\xdf\xf9\x80\xdc\xb7\x45\x99\x5f\xc1\xad\xd8\x8c\xcd\x3e\xc2\xc4\xa1\x14\xb0\xe4\x55\xf3\xdd\x3d\x20\x61\x79\xa7\xa4\xe9\x34\x83\xfb\x87\xd1\x94\x83\x07\x97\x8b\x9c\xcf\x0a\xfa\xf3\xd5\xbb\xee\x99\xe8\x05\xb7\xe0\xb0\x04\x0d\x62\x85\x2e\x4d\x83\x20\x43\x8a\xc1\x4b\xfb\x8a\x30\xaf\xda\xec\x86\xc1\xcb\xd6\x9b\x59\x53\x5c\x6f\x1d\xe6\xad\xf1\xf8\xb0\x8c\x13\x1f\xe7\x24\x08\xb3\xce\xe0\x5b\x05\xba\xb6\x9d\x1c\xb3\x26\xaa\xa0\x9e\x96\xb5\x71\xf4\xb7\x1e\xd3\x8d\x22\x00\x82\x15\xb3\x90\x17\x5f\xb0\xac\x16\x45\x82\x36\x18\xb8\xdb\xc8\x32\xab\xb2\x83\xee\x5a\x06\x52\xd1\x1b\x67\xb5\x76\x73\xe3\x56\xca\xc7\xfe\x76\x95\xca\x7e\x24\x91\x47\x38\x24\xe6\x1e\xc5\x56\x8b\xb2\x2e\x66\x57\x94\xcf\xa8\x00\x17\x61\x3c\xbb\xfa\xf8\xcb\x87\xec\x83\x28\x97\xac\x6a\xc5\xf8\x55\xb8\xa3\x79\x02\x9b\x40\x40\x0f\x5d\x35\x31\xcf\x61\xb1\x44\x1b\x34\x92\x1b\x5c\x75\x1c\xfd\x67\x54\x88\xd2\xfa\x66\x34\x5f\x8a\xd3\x4e\xae\x45\xce\x2b\xa6\x8a\x9e\xde\x96\x42\xd2\x59\x02\x12\x2d\x45\x70\x0c\x87\x65\x76\xa3\x67\xf2\x9e\x4d\x45\x59\xb0\xdb\x4c\x23\xa6\xa6\x92\xd3\x54\x3c\x59\x32\x93\x0b\xca\xd3\x1c\x57\x48\x1b\xf6\x6f\xeb\xb9\x71\x97\x96\xd2\x6c\x49\xab\x2a\xbf\xd3\x16\x33\xb5\xb7\xd2\xa5\x87\x75\x1d\x10\xd5\x6a\x3f\xf5\x41\xc0\xa5\x77\x2e\xea\x4c\xc3\x4f\x8a\x50\x33\x90\xcd\xc6\x7b\xe1\x53\xff\x56\xd7\xef\xd6\x0e\xf6\x6f\x7f\xae\xa9\x78\x20\xa5\xf9\x61\x5f\xea\x79\x78\x9d\xb0\x08\x5d\x86\x3d\x3b\x12\x56\xfd\x20\xca\xcf\x15\x15\x26\x86\x89\xfd\x24\xfb\xfb\x5e\xe6\xa8\x95\x19\x6d\x35\x2c\x63\xb1\x97\x19\xa3\xe7\xc2\x34\x18\x9f\xf5\x0d\x6d\xd7\x97\x24\xbc\xe4\x34\x41\xfe\x18\x03\xd8\xd5\x27\xc9\x4b\x81\x91\xfa\x09\xa3\x48\x11\x2b\xb1\xf6\x12\x77\x1e\xa0\xba\x2c\x2d\x29\xa9\xbb\xb7\x5f\xa4\xc9\x18\x85\x19\xb1\x80\xc1\xae\x0d\x57\x47\x9f\x25\x1f\xff\x58\xdb\xfe\x5e\x0a\x23\x58\x18\x9f\x7a\x08\x16\xd1\xa3\x0c\xfc\xf2\x7a\xaa\xb6\xb4\x99\xb8\x4d\x46\x21\x58\x04\xc4\x41\x1a\x5b\x98\xfd\x56\x31\xb4\x51\x14\x5c\xb9\xa2\xfc\x75\x91\x57\x55\xfa\xd8\x4f\x1f\xfc\x46\x93\x9c\x81\xcc\x64\x79\xd6\x40\xa0\xda\x4a\x43\xc6\x49\x88\x94\xe6\x11\x92\x1d\x24\x8a\x5b\x95\x53\xd4\x25\x26\x83\x26\x2a\x2a\xee\xd9\x94\x8e\x0e\xed\xbe\xa9\x26\xec\xef\x48\x5d\x8f\xd8\xd5\xef\x9a\x36\x08\xd7\x81\x6a\xc6\xeb\xbd\xeb\xcb\xb4\x63\x16\xe0\x9f\x35\xef\x0a\xd3\xa7\x8e\x84\xa7\xae\x4d\xd7\x91\xee\xc6\xe1\xc6\x4a\x0a\x6e\x10\xba\xe9\x61\x95\xab\x66\xcc\x38\xb1\xb4\x5a\x82\x15\x27\x35\x67\x77\xb5\xe3\x97\x7d\xee\xf9\x38\xce\x3d\xa7\x47\x98\x67\xb7\x35\x2b\x66\x6f\xf3\x4f\xd4\x82\xc4\xaf\x4c\x2e\xde\xd0\x95\xa0\x53\x63\xe2\x61\xae\xb4\x98\x9c\x05\x56\xb1\xd1\x56\x55\xbb\x33\x63\x31\x1e\xec\x36\xbf\xa5\x45\x0f\x47\x16\xe3\xb9\xf4\x6b\xf8\xdd\x78\xb6\x90\x3f\x13\x9a\x24\xfc\x0a\x01\xa2\xf7\x58\x7f\x67\x41\xa1\x15\x25\xf4\xb1\x7c\xb8\xd2\x5e\xe5\xf0\x1c\xaf\x22\xec\xdf\x42\x03\x9f\xcc\xef\xee\xe8\xcc\xf2\xbe\xef\x98\x02\x9d\xe2\x5d\x59\x56\x14\xa5\xe3\xe4\xf0\xb6\x9e\x7e\xa2\xf2\x10\x5e\x72\xe9\x23\x35\xc1\xf1\x64\x70\xdb\x76\x8c\x97\x64\xde\xe1\x2a\x7d\xa6\x29\xb9\x2d\x67\x0f\x09\xa6\x2d\x3a\xb2\x87\xd9\xcc\x6b\x59\x2a\x56\x44\x81\xde\x8d\x8e\x0a\x54\xbd\x2f\x67\x00\x8a\x5f\xc9\x77\xfe\x9b\xbd\x0b\xfe\x8d\x54\x0e\x1b\xce\xd6\xeb\x74\xa6\x5d\x28\xc7\x44\x1b\x91\xa7\x24\x95\x43\xb0\x65\x56\xb0\x5b\x91\x0b\x46\x1b\xa6\xf6\x75\x29\xe8\x3b\x48\x7d\x48\x13\x5d\x30\x51\x84\xbc\xeb\x31\x45\xd9\xdf\xfe\x0e\xbf\x9a\x77\x17\xf9\x8c\x71\x5a\x55\x6f\xe8\x9c\x0a\x91\x17\x95\xf3\x85\x63\x99\x31\xf3\x6d\x17\xc5\xd0\x93\xde\xb2\x90\xfd\xfd\xa0\x04\xee\x94\xb0\xee\x73\x56\x82\xae\x72\x41\xdf\x96\xe2\xc7\x26\xd3\xf2\x32\xb6\xba\x29\xfc\x39\x67\xf2\x6d\x29\xde\x5c\xbe\xbf\xa2\xf9\xec\x21\x45\x1b\x0c\xc7\xdb\x9e\xd7\x2e\x13\xf0\xf5\xa4\x8e\xc3\x78\xb7\x79\x45\x0d\xce\xf2\xb9\x03\x9d\x54\x38\x10\x33\x86\x2f\x8a\x3f\x89\xcf\xa9\x03\x21\x86\xb1\x4a\xbd\x8f\xf5\xba\x36\xbf\x90\x85\x59\xc7\x07\xab\x89\x5a\xbc\x45\x67\xbe\x87\xb0\xbe\xbc\x1e\x9e\x28\x58\xb2\xd4\x5a\x95\xde\xcc\x3a\xf5\x6f\x6e\xec\xab\xc5\x80\x55\x20\x34\xfc\xde\xe0\xd6\xbe\xf8\xfd\xee\x5b\x50\xd7\xff\x33\x56\x41\x91\x93\xb2\x4d\xed\x6b\x33\x29\x23\x67\x49\x66\xe5\x12\xca\x25\x26\x66\xd3\xbf\xa5\x9a\xc9\x7e\x48\x75\xc5\x5b\xc6\x67\x69\xbb\x28\xda\x60\xfb\xd1\x59\x6c\xcf\x93\x84\xf5\x0b\x67\x05\x37\x6a\x09\xc1\x65\xf3\x95\x05\xfc\xee\x61\xee\x9e\x89\x83\x83\x0d\xce\x67\xf7\x6a\x9d\x9e\x55\xef\xf0\xd0\x8b\x3a\xd8\xcd\x56\xa7\x58\x4d\xb0\x54\x7b\x23\x9d\x95\xd3\x8c\xcd\x7e\xa0\xd3\x72\x09\x7d\x3d\x28\xb8\x57\xb8\x28\xf4\x6a\xd3\xcc\xca\xb0\x57\xa8\x23\x7f\x32\x19\x10\x56\xa0\xb3\x08\xce\x11\xdb\xa6\xaf\x5e\x54\xda\xe5\xd9\xa3\x1b\xfc\x10\xfa\xd1\x51\x69\x4e\xd1\x92\x6b\xfe\x0f\x96\xdb\x81\x9e\xd7\x03\xb8\x74\x69\x8d\x11\x44\x4a\x9e\x28\x09\x24\x53\xb9\x4a\x7e\x57\xe6\xb3\x9f\xca\xf2\x53\x85\xd2\x24\xb8\x7b\x65\xe3\x42\xa4\xbd\x47\x6e\xa2\xd2\xc6\x5c\x52\x54\x97\xa2\x44\x52\x89\xb0\xdc\x6c\x36\x18\x34\xd8\x3d\x87\x27\x7e\x4e\x06\x3b\x61\x4e\x3b\x47\x2f\xce\x4c\xb0\x38\xad\x74\x8d\x68\x35\x38\x68\x77\xf1\xe0\x94\x35\x10\x0b\x41\x2e\x4a\x29\x4e\xcc\xeb\xe4\xe4\x49\x7c\x81\x9f\x38\x7a\x6e\x8b\x13\xb4\x51\x27\x23\x80\xbc\xce\xaa\xc0\x36\xa5\x47\x98\x41\xfc\x6a\x08\x86\x8c\x52\xb4\x5e\xa7\x79\x06\xf1\x37\x56\xf9\x14\xb6\x74\x4a\xab\xea\xb4\x28\xec\xe6\x55\x54\xba\xec\x8f\x34\x17\xd3\xc5\x1b\x56\x29\x62\x6e\x86\xd2\xfd\x23\xd4\x41\xff\xa9\x0b\x31\xe5\x42\x5d\x78\x77\xc9\xc9\x96\xad\x19\xc5\x70\x1e\xf2\x01\xdf\x4a\x81\xe1\x46\xc1\xb4\x25\x54\x43\x91\x9d\x6a\xde\x41\x34\x70\xd6\x08\x2a\x9b\x83\xa4\xe1\x2b\x5a\x1f\x00\x8e\x22\x4c\x01\xde\x5a\x2b\xeb\x9d\xbf\x0d\xfe\xcc\x8a\xc2\xe0\xae\xe7\x11\x19\x4f\x2f\xf4\x71\x7b\xec\xcf\x86\xd6\x3c\xbb\x29\xca\x7c\x46\x67\xc1\xd5\xa8\xd1\xdb\x70\x98\xc6\xb3\xf5\x4e\xa2\x7e\x9a\x20\xba\x91\x5b\x33\xbd\xc7\xf9\x1d\x91\x58\xf8\xce\x20\x90\x33\xaa\x09\xa5\x46\x60\xd2\xd1\x31\x89\xce\x4d\xe9\x54\xa0\x50\x4f\x76\x2b\xba\x02\xc6\x10\x07\x6d\x50\xa6\xa1\x21\x94\x53\x8b\xf2\x73\x73\x78\xb9\x7f\x78\xe9\x06\x81\xda\x67\x10\xe7\x8e\x96\xbf\x2b\x77\x94\x7f\x15\x77\xa4\xb9\xa2\x65\xc8\x75\x43\x43\x5d\xae\x1b\x3d\xee\xa7\x3b\x33\xdc\x68\xbd\x0e\x22\x0b\xfa\x68\x77\x0b\xa0\x77\x9f\x2f\xa1\x47\x9f\x93\xf6\x85\xf5\xd8\xd2\x57\x8e\xbc\x6a\x31\xee\x8a\x8f\x3a\xb4\x0b\x6b\xea\x3c\x6a\xda\xae\x47\x34\xdb\x7d\x1f\xdc\xe2\xe4\xa1\xff\xd1\x6d\x5e\xb1\xa9\xeb\x3f\x2c\x11\x97\x4e\xe3\x2a\x6b\x09\xb9\x41\x81\xe2\x5e\x60\x84\x13\x4b\xb8\x3d\xe6\x09\xf6\x2f\x43\x2b\xc3\xf5\xfb\xb3\x62\x9a\x91\x42\xb0\x6a\x4c\xa7\xb5\x2c\xdf\x39\xd9\x4d\xb4\xe8\x22\xaf\x16\xaa\xe8\x4f\x79\xb5\x78\xaa\x28\xab\xc0\x6b\x89\x2a\xad\x7f\x3e\x51\x01\x84\x6f\xb8\xce\x2e\x4a\x4e\xa3\x45\xd3\x23\x3c\x6d\x2c\xa4\x51\xba\x40\xb8\xce\x7e\x00\xd6\x0f\xec\xd1\xe3\xa2\x13\x23\xa4\x76\x7b\xfe\x51\xa7\xb7\x56\xb1\x5d\x3a\xb9\x71\xbf\x42\x35\x8f\x42\xd7\xe9\x11\x5e\x69\x89\xba\x77\x20\x2c\xd8\x23\x83\xd0\x7d\x91\xc1\xf2\x09\x91\x41\xc7\xa2\xe6\x79\x62\x83\xb6\x18\x20\x2e\x32\x78\x06\x53\x6f\x0d\x76\xfa\x79\xf9\x08\x07\x5f\xff\xee\x1c\x7c\x41\x78\x66\x30\xa0\x39\xa8\xdc\x99\xcb\x7f\x10\xe5\x97\x87\xf7\xec\x0b\xe3\x98\x37\x46\xeb\x5e\xea\xa3\x62\xd9\xbe\x56\x25\xac\xe5\xef\x3a\xa8\xb0\x46\x7e\xc8\x47\x44\xaa\xe9\x01\x5d\xaf\x2d\x19\xe2\xeb\x8b\x5c\x01\x62\x82\x08\x5b\xc6\xd8\xd3\x39\x82\xc0\x30\x77\x73\x49\x1f\xed\xf3\x83\x11\x0d\xca\x6d\x1c\x5f\xe6\x73\x5e\xb2\x71\x34\x90\x3e\x82\x93\x0c\x20\x6f\x36\x9d\x7b\xbc\xcd\x20\x84\x7a\xa1\x3e\xfa\xfe\xa4\x93\x32\xea\x72\x15\x64\x9b\x1e\xa7\x79\x35\x2a\x52\xe9\x11\x59\x14\xa1\x60\x90\x96\x43\xe9\xd3\x9f\xf7\x6b\xce\x21\x69\x5a\x94\xd6\x20\xe6\x0d\x5d\x51\x3e\xa3\x7c\xca\xa8\x73\xfc\xda\xd1\xa6\xbb\x9d\x79\x42\x3f\x2d\x9f\xa5\x72\xfe\x8d\x42\x86\xe7\x29\xe1\x34\x38\x3c\x57\xbb\xdd\xb8\x68\xe8\x6a\xca\xc3\xae\xb5\x1d\x31\x0d\x04\xc9\x7d\xa1\x75\xe0\xb2\x7f\xbd\x60\xc5\x2c\x34\xca\xfa\x3d\xa5\xed\xf6\x75\xaa\xd3\xe0\x42\x4f\xa3\xe4\x40\x3f\xdd\xd8\xf7\xe3\xb0\xb1\xac\x2f\x66\xee\xb2\xac\xb9\xdc\x93\x0b\xba\xa7\xeb\xef\xfd\x3b\x44\x3c\xfb\x77\xbc\x77\x5b\xcb\x3d\x26\xf7\x98\x0e\x2f\x66\x57\xc9\x04\xe5\xdb\x63\xb2\xda\xd3\x98\x30\x73\x71\xf9\xda\xf4\xa0\x13\x8b\x83\x38\xad\x65\xa7\xa5\xc8\x3a\x0d\x53\x7c\x83\x7b\xc0\x35\xce\x62\x62\xd0\x91\x57\x6d\xe3\x32\x83\x8b\x5e\x8d\x43\x7a\xa2\xd1\x13\x34\x32\x5f\x97\x64\x04\xb3\x81\x70\x79\x92\xcd\x4b\x71\x96\xfb\x24\xa9\x17\x76\xb9\xb9\x45\x05\x96\x96\xcd\xb9\xf2\x5e\x44\xa6\x42\x9d\x64\xfb\xba\xfc\x69\x80\xdd\xaa\x13\x11\x5d\x3d\x86\x59\xeb\x71\x48\xdc\x00\xad\xea\xdd\xff\x35\xc2\x71\x52\x2d\x11\xa0\x65\xa3\x62\x74\x98\x1c\xa4\x22\xd4\x41\x9c\x24\xb3\x72\x99\x8c\x12\x05\xf1\x32\x41\x38\xa2\x63\x99\x0c\x44\x5b\x0b\x65\xec\x9c\xfb\x4d\x08\x9e\xb1\xa0\x66\xb9\x44\x44\xf9\xb3\x41\xbe\x07\xaf\x34\x51\xb3\x53\xc4\x48\xa8\x18\x88\x69\xe7\x83\x6a\xb0\x6c\x3b\xd5\x53\x4c\x46\xb1\x9b\xea\x0c\x5e\x91\x28\x26\xdc\xa7\x9b\x76\x1f\x60\x97\x68\xdd\x71\x62\xad\xed\x8b\xf6\x6f\x37\x3c\xd8\x7b\xb5\xcf\xad\x7e\xa7\xe5\x72\x55\x72\xdd\x59\x7f\x1d\x34\xda\xbd\x13\x0b\x46\xcf\xeb\xc6\xd4\x42\x2d\xd5\x52\xb1\x1b\x9d\x68\xcd\xa9\xfb\x0c\xfc\x9e\x70\x9d\x7c\x76\xf1\xe3\xf9\xc5\xd9\xcd\x87\xd3\xab\xb3\x8b\x6b\x2b\x51\xe9\xda\x4c\xc7\x9e\xa1\x8e\x05\xb8\xca\x69\x1b\x5c\x87\xdd\x51\xed\x94\x60\x60\xbd\x12\x86\xfd\x85\xae\x98\x83\xbc\xe4\x29\x3b\x47\xab\x72\xfa\x5a\xf2\xd8\x27\x81\xdd\xbb\xc6\x1d\xf4\x6c\xbf\xc9\x94\xbe\x6b\x28\xdf\x56\xcc\x01\x71\x5b\xb1\x92\x1f\x56\xf5\x4a\xcd\xab\x47\xa1\xf7\x1c\x15\x1b\x5e\x44\x48\xf4\xd9\xef\x4d\xa2\x9b\x50\x5c\xdc\x13\xf3\x6d\xa3\xd4\x1f\xbf\x52\x49\x16\xc8\x15\x40\xd9\xe1\x9b\x39\x5f\xe5\x7c\xb4\x7f\x8c\xad\x6b\xf4\x26\xa3\xdb\x53\xab\x9a\xd5\xbd\x75\x85\xcb\xd1\xe2\x04\x42\x2a\xfc\xd1\xca\x26\xe8\xba\x3b\x19\x90\x4a\x36\x6a\xa8\xa8\xce\xa9\x57\xfe\x12\x50\xd2\x3e\x23\xd2\xa1\x27\xc3\xa5\x36\xa4\xaf\xb7\x0e\xdb\x6d\x2d\x7d\x73\x6e\x88\xaf\xdd\xa5\xb2\x9f\x6a\xa0\x53\x01\x1a\x6a\xed\x50\x9c\x68\xb2\x02\xf8\xa0\x6c\x9a\xf8\xbb\x98\x34\x47\x07\x1e\xb7\xbf\x84\x50\xfd\x4d\x09\x1b\x71\xcc\x4f\x4b\x69\x9b\xa4\x1e\x85\xd9\x20\x22\xef\xe1\x29\x22\x14\x77\x77\x7c\xdd\x6a\xed\x71\x46\x3a\x6c\xb5\x13\x93\x75\x6a\xcb\xc6\xca\xb3\x6c\xf4\xd6\x1a\x53\x84\x59\xc4\x11\xc2\x78\x32\x70\xf1\x62\xf6\x18\xdf\xa3\x48\xda\x47\x5e\x0e\x44\x37\x29\x47\x38\x07\x26\xd0\x3d\xae\xc0\xb5\x1f\x05\x4e\x3f\x7f\x64\xfe\xf3\xc7\x1a\x1c\xaa\x8a\xc9\x04\xe7\xf0\xe4\xb8\x06\x2b\x38\x5c\xe3\x3a\xbb\xa5\xf3\x52\x50\x5c\x67\x60\xef\x87\x06\xb9\x7d\x44\x9c\xca\xd0\x7e\xed\xde\xbb\x8d\x9a\x15\x0a\xbd\xbe\xdb\x17\xfe\x80\x56\xc0\x71\xe4\x98\x4e\xac\x95\xb1\x9f\x66\x44\xd4\x90\x9b\xa6\x02\x9c\xa1\xd3\xb6\x13\x03\x53\xc2\x29\x08\x1a\x4a\x49\x18\xb5\xc0\x98\x4e\xc6\x12\xe6\xa2\xae\xbd\x4d\x4b\x26\xea\x43\xdf\x28\xe6\xe6\x2e\xb6\xfd\x3d\x05\x9b\xcd\xbe\x6f\x83\xb5\xff\x99\x44\x1b\xd5\x75\x62\xa0\xe6\x92\xf7\xc2\x46\x7a\xd0\x09\xfd\xcd\xf2\x5c\x6d\x31\xc5\x3c\x01\x88\xbd\x4e\x23\xfc\x7f\x0a\xa4\x49\xda\x3c\x51\x42\xeb\x75\xed\xde\x67\xd8\x25\x7a\x74\x92\xcf\x11\xdd\x80\x98\x6e\xd3\x80\xab\x22\x58\x08\x70\x67\xc0\xcf\x58\x66\xa4\x23\x20\xc5\x34\x62\x53\x15\x4a\x94\x43\xf7\x55\x01\xa9\xf7\xe8\x7c\x42\x5b\x43\xae\x76\x61\x4d\x48\x76\xcb\x35\x43\x52\x14\x8a\x28\x8b\x82\x0a\xcb\xdb\x69\xe9\x96\x4e\x8b\x5a\x8b\x45\xa8\x71\xf5\xff\xca\xe9\x05\xa2\x4c\x52\x9b\x20\x6f\xa8\xd4\xaf\xa8\xdd\x23\xba\xfe\xaa\x81\x58\xce\x40\x96\xab\x77\xf4\x9e\x16\xbf\x30\xfa\xd9\x92\x2a\x09\x4e\xec\x3b\x9c\xd1\x61\x59\xcb\x82\x76\x48\x6f\xd5\x83\xcb\xdb\x41\x1e\x1e\x50\xed\x76\x9d\x55\x3f\xb9\xb8\x83\x16\x02\xf1\xef\x96\x0a\xcf\xe9\xa9\x91\x32\xdf\x36\xe2\x6b\x60\x70\x99\xcf\xe0\xce\x50\xdf\xe2\x7c\x5d\xb5\xb8\x48\x3b\x6e\x70\xe8\x68\xd4\x69\x66\xb4\xa0\xdb\x05\xe7\x1e\x51\xbb\x43\x37\xf6\xb8\x1f\xce\x4b\x43\x79\xdf\x31\x7e\x67\x0f\xa1\xf3\x03\xf3\x14\xbc\x3b\x7a\x5e\xb7\x71\x98\xcf\xf2\x95\xa7\x0c\xf1\x68\xf4\x6d\x1d\xb6\x1a\x9d\xe5\x32\x6f\xb7\xe4\x3a\x7a\xa3\xaa\x9e\xea\x4c\x3f\x3d\x36\x80\xee\xc9\xee\x1f\xeb\xbc\x91\x61\xfb\x5d\xb4\x9b\x30\xb8\xe6\x50\x8b\x10\x4c\xdd\x55\xf6\xda\x66\x68\x97\x35\x68\x93\x4a\x90\x61\x2f\xcc\xab\x1a\xe0\x43\x1a\x05\x05\x98\x38\x60\x87\x72\x41\x46\x7e\xe5\x7f\x3d\x4b\x79\xd1\xac\xf2\xf3\x1e\x9c\x85\x0c\x57\x5b\x87\xe1\x77\x04\xad\xbc\x00\x57\xd4\xb9\xa4\x87\xf2\x61\xb5\xbb\xd9\x61\x87\xfb\x75\xaa\x6b\xc7\xf8\xba\x14\xd6\xd2\x36\x78\x77\x0a\xac\x91\xf3\x29\x64\x9e\x9e\x19\xdf\xcc\xf0\x01\x71\x61\xb5\xab\x32\xf5\xd9\x71\xf8\xa9\x93\x7d\x97\x8f\x41\x23\x97\xd2\x99\x1d\xde\x14\xe5\x9d\xde\x47\xb3\x17\xe6\x79\xdc\x53\xa3\x8b\xf3\x56\x6e\x5c\xdb\x5c\x23\x6f\xbc\xa9\x75\x09\x42\xdf\xc3\x5e\x18\x16\xd6\xfa\x01\xb7\x48\x39\xd9\x27\x44\x9c\x08\x70\x2a\xc4\x9d\xaf\xa3\x17\xe9\xff\xce\xd6\x37\xeb\x43\x94\xbd\xb8\xc3\x31\xa9\x42\x36\x5d\xe4\xe2\x54\xa6\xc7\x28\x93\xe5\xcf\xab\x15\x15\xaf\xf3\x8a\xa6\x68\x03\xaf\x21\xec\x32\xf7\xb8\xec\x72\x13\x34\xce\x0c\x2d\xf2\x78\x0f\xb1\x38\x55\x06\xe6\xa4\x1b\x8e\x7e\x2c\x26\xe0\x36\xd6\xfc\x06\xe3\xed\x94\x13\x6e\xec\xc2\xfc\x6d\x49\x21\x2a\x05\xa8\xea\xdd\xab\x50\x8e\x25\x08\x75\x9b\x6d\xef\x55\x5c\x84\x3b\xe0\xbb\xf8\xeb\xe4\x90\x56\xba\xf6\x64\x7a\x13\xef\x44\x3b\x6f\xe0\xe0\x23\xd8\xdb\xa0\x9c\x94\x6a\x83\x2a\x52\x8e\x8f\x27\xb8\x26\x15\x2e\x3a\x0f\x77\x9a\xbb\x0a\xe1\x29\xa9\xb3\x22\xaf\xe4\xb9\xf5\xf8\xf7\x22\x41\x78\x4e\x0e\x8f\xf7\x09\x99\x9e\xd4\x59\x65\x02\xcf\x4d\xb5\x13\xac\x41\xb0\xd9\xf9\x70\xa8\x0b\x42\xe0\xf7\x54\x92\xda\x0e\xe5\x45\x82\x90\x1f\x1a\x1e\x73\xc2\x32\x0d\xf8\xd9\x34\x5f\x31\x99\x5b\xe7\x5c\xa6\xfd\xc3\x63\xa4\x0d\x9c\x92\x2c\x41\x08\x17\x84\x79\x42\x85\xdb\x07\x58\x0e\x8e\xac\xfb\xad\x04\x50\x1f\x44\xc7\x4f\xde\xab\x9f\xa3\xa6\x75\x45\x77\xb3\xf9\x43\x9a\x6b\x1d\x41\xbd\x5e\xef\xe7\x9e\x9e\x40\x91\x62\x46\x53\x70\x6e\xfc\xdb\x3b\x37\x83\x7b\x7f\x05\xcd\xc0\x5f\xf1\xde\xb2\xae\xe4\xde\x2d\xb8\xd3\x97\x0b\xf0\xbf\xb4\xdc\xfb\xab\xc2\x3c\x23\xb5\x78\x7f\xdd\x73\x8f\x71\x1e\x5d\x65\x8a\x21\x3f\x77\x5e\x0b\x7f\x65\x72\x51\xd6\xe0\x03\x6e\x54\xe1\x19\x13\xf0\xc0\x79\x8e\xe1\x5f\x0d\x4f\x57\x47\x0e\x03\x34\xf0\x3a\xb2\xb7\x55\x72\xb0\xda\x6c\x22\xa8\x64\xb7\x93\x10\xc0\x7c\xb3\x6b\x8a\xe9\x01\x2f\x8e\x27\x2e\x6d\x2f\x97\x7b\xc9\x81\xcc\x22\xe3\x6e\x0e\xf1\xff\x56\xa7\x57\x6d\xeb\x28\x85\x53\x56\x96\xf2\x20\xc9\x92\x83\xee\xba\x6b\x5e\x08\xb5\xab\x26\x08\x27\xcb\x72\x46\x0b\x88\x9c\x0b\x43\x18\x0e\x53\x71\x40\x62\x2d\xa8\x5c\xa4\x9d\xc7\x06\x38\x33\x8a\x3e\x7c\xa7\xb9\x75\x45\xb5\x9e\xff\x22\x5f\xb6\x2b\x24\x9a\xa4\x6e\x1e\x60\xe9\x7f\x24\x49\x46\xe6\x97\xfe\xd7\x1e\xf9\x4d\x82\x1c\x1a\x72\x8f\xb4\x63\x78\x72\xb7\x05\x1c\x78\xa6\x37\x77\xcd\x43\x6f\x75\x2f\xaf\xd7\xdd\x54\xb7\x3c\x33\x3a\xcd\x97\x54\x1f\x1b\xd4\x8c\xa8\xf3\xbc\xd4\xc7\x3e\xad\xe5\x70\xaa\xbd\x00\xbf\xd1\xa6\xb1\x86\xd7\xf8\xdd\x9a\x84\xc2\xbf\x5b\x6b\xef\x15\x04\x45\x16\xbf\x0b\x44\x7a\x2f\xbd\xd5\x36\x28\x50\xbf\x69\x82\x50\x64\xa6\xcd\x9f\x68\xb1\xda\x32\xe1\xbe\xa1\xe8\x3b\xfb\x19\x43\x89\x9c\x15\xed\x36\x76\x97\x41\x2a\x2c\xb7\x63\x67\x4f\x36\xe9\xfb\x03\xed\xb4\xc9\x15\xd9\xb4\xf5\xca\xa8\x62\xbd\x22\x5c\x03\x57\x7f\x45\xef\xce\xbe\xac\xd2\xea\x20\xf9\xb7\x04\xe9\xbb\x27\xe6\x28\x71\x1a\xf8\x5c\xcd\xb5\x8b\x55\x1d\x62\x68\x1a\x84\x18\x22\xd3\x31\x9f\xe0\x5a\x7b\x1a\x2d\xd5\x45\x5c\x68\x9f\x3d\x52\xe4\xbc\x52\x47\xe4\xba\x74\xb4\xf3\xdb\xba\x28\x38\x60\x40\x5c\xa2\xc0\xfb\x6a\xb1\xc1\xdb\x2a\x44\x2d\x05\xa3\xb3\x84\xd0\x4a\xee\xce\xfa\xff\x5b\xa7\x7f\xcd\xeb\x28\xa0\x7e\x9a\x43\x9b\x57\x0b\x2a\xd4\x99\xe5\x20\xc9\xda\xe1\x1d\x51\x94\xdc\xed\xd2\xd6\xdd\x30\x99\x1d\x5a\xd7\x76\xe5\x4d\xae\xf1\xfe\x3b\x16\x00\x28\xc6\x99\x24\x07\xaa\x4e\x91\x0c\x7c\xfc\x72\xb2\x31\x62\x9a\x47\xad\x66\x1e\x27\x79\x55\x51\xd0\x4b\xb0\x0a\x8e\xab\x89\xdf\x92\xe0\xe4\x4c\x0d\x46\xdb\x56\x25\x13\xec\x58\x94\xd1\x38\x71\x26\x9a\x50\xcd\xf1\x28\xed\xaa\x2e\x23\x99\x60\xe0\xde\xdb\x35\x15\x82\x6b\x57\x52\x69\xc9\x04\x5b\xee\xb3\x5d\xc5\xf0\xaa\xed\x5a\x26\x39\x99\x6c\xfc\xb5\x37\xba\xa3\x9d\xfc\x5b\x3a\x41\xa4\xec\x44\xd6\x7e\x25\x9a\xe0\x58\xe2\xe0\xc0\x5b\xe7\xc9\x80\x67\x8d\x2d\x26\xf1\x3f\xd6\xeb\xfd\x63\xcc\x33\xdf\x72\x93\xec\x1f\xe1\xe4\x3e\x2f\x6a\x9a\x30\xbe\x07\xe1\xe6\xb2\xcf\x82\x49\x93\xd7\xef\x5d\x06\xfc\x86\x61\x05\x66\x6e\x94\xa2\x3d\x4a\x53\xf7\x0e\x62\xed\xd8\xba\x40\x67\x29\xae\x50\x9f\x3f\xe1\x9f\xbf\x47\xe3\x5c\x54\x1d\xc2\x32\x5e\xdd\x92\x26\xa5\x48\x25\x66\x68\x50\x0e\x87\x65\x30\x23\x2f\xb8\x3c\x1d\xb3\xc9\x70\xd8\x37\x03\x86\xcb\x26\xb0\xca\x46\x71\xe5\xea\xec\xc8\xb6\xeb\x7b\xcf\x3d\x57\x5b\x58\x3b\x1c\x4a\xcf\x38\xf6\xd1\x13\x77\x8f\x1e\x61\x4d\x47\xb4\x65\x16\x6b\x97\x76\xb4\x7f\x84\x5b\x06\xb4\x0a\x4a\xe4\x70\x98\x9a\x3e\x2a\x2a\x3f\xd8\xa6\x2f\xe7\x27\xd1\x54\xed\x2d\x56\x98\x90\x6f\x98\x6e\xd1\xb5\xc5\x7d\xf6\xd2\x4c\xe4\x9f\x89\xd4\x01\x38\xf5\xac\x40\x90\x1c\x9c\x61\xcc\xd1\xa3\x18\x0e\x65\xea\xad\x04\x16\x68\xc0\x21\xcd\x0b\x00\x09\xad\x18\x2c\x50\x11\x31\xa0\xd9\xaa\xac\x2a\x76\x5b\xa8\x8b\xde\xae\xcc\x15\x94\x8d\x0e\x67\x5f\xae\xd7\x49\x09\x13\x6d\x1e\x13\x4b\xff\x05\x5a\x93\x7a\x42\x47\xe0\xd9\x18\x90\x23\x39\x15\x22\x7f\xf0\x5e\x9e\x42\xaa\x7f\xea\xd4\xd6\x94\x45\x14\xb3\x05\x96\x2a\xdb\x74\xd9\x1e\x9c\xa3\xc7\x06\xea\x3d\xa7\xb9\x86\x08\xd6\x26\x73\xf4\x8b\xcc\xd8\x12\xfa\xca\x4c\xf7\x27\x82\xf4\xe6\x8d\x62\x2f\xa9\x4d\x1e\xf8\xbe\x37\xbf\xad\xb9\x8a\x5d\xa8\xc6\x77\xec\x89\x18\x53\xed\x5e\x1e\xbc\x10\x74\x9f\xed\x35\x4e\x7c\xf5\x63\x26\x81\x4c\x5c\xd1\xc7\xa2\xbc\x1b\xf1\x34\x29\xca\xbb\x04\xad\xd7\x02\x7f\xce\x05\x57\x09\xea\xbf\x4e\x01\xef\x06\x2a\x09\x7e\xe8\x34\xc6\xe7\xa5\x4a\x52\xff\x75\x0a\xdc\x12\x2a\x49\x5f\x17\x68\xbd\x0e\xb2\x35\x5e\x57\xf9\x06\xc3\xb7\x42\x20\x3a\xc7\xa8\xf0\x0e\xa7\xed\x79\x17\xaa\xa8\x15\x9f\x43\x44\x32\xf0\x21\xe9\x3d\x21\xf2\xa2\x5c\x07\x72\x09\x78\x6f\xb3\xc1\x47\x68\xb3\xd9\x78\xb7\x14\xf3\xc1\x03\x86\xfb\xc2\xc3\xea\x3d\x17\xe0\x0b\x3d\x7b\xdc\x86\xaa\xa7\x5e\xd4\xbe\xd0\x5e\x13\xc4\x56\x6c\x4f\x33\xe3\xff\xd5\x44\x10\xf8\x99\x4b\x56\x78\x86\xf1\xa4\x5d\xe0\x7c\xb6\x2d\x37\xcc\xb3\x72\xbd\x9f\xf4\x40\x1a\x79\x94\x5d\x0f\x97\xd0\x2e\xe9\xfb\xd2\xc2\xdb\x3a\x71\x2d\x6c\x1b\x65\x4f\xa1\xce\x5c\x4d\xcc\x83\xce\x1e\x99\x0d\xe8\xb3\xc9\xd8\x7a\x80\x5b\x7e\x7f\xa9\xe7\xd2\x51\xa4\xdc\x5c\x3e\xd6\xa3\x4a\x2f\xea\x32\x34\x2a\xcd\xa6\x79\xa1\xe3\xe0\x6a\x3f\xcb\xfb\x69\xe9\xe2\xe2\x81\x2b\x67\x7b\xda\x98\x76\x3d\x9d\x72\xe3\x09\x7f\x4b\xcb\xa5\xba\xd1\xb4\x8f\x67\x80\x7a\xdd\x47\xe9\xe1\xd8\xd2\x38\x23\xce\xad\x07\x51\x13\xb5\x47\x47\xba\xc8\xfd\x2f\x5c\x66\x73\x56\x00\x8f\x4e\x72\xf7\x13\x97\x59\xc1\x38\xbd\xa8\xd5\xaa\x91\xdc\xfb\xc0\xa5\xf5\x0b\x42\x72\xfb\x0b\x97\x9a\x55\xcd\xb5\xf6\xb4\xcc\xb8\xad\xc7\x6d\x9d\x69\x39\x53\xf9\xea\x1f\x2e\x37\x8e\x0f\x90\xee\x3e\x45\x29\x68\x7f\xc5\x26\x8d\x2e\xbd\x4c\x8d\x8f\xa2\x88\xd9\xa7\x53\xa9\xf5\x5d\xc1\xde\x95\x84\xb0\x0c\xa3\xa3\xd9\xc5\x25\x12\xcb\x4d\x0a\xeb\x89\x7c\x92\x58\x74\xa1\x6b\x4e\x73\x59\x0b\xed\xbd\x6e\xdb\x3d\x61\xd2\x9a\xf2\x6d\x81\xf0\x0e\xc4\xb1\xbd\x34\x78\x13\x2d\x66\x1f\xe2\x9f\x28\x2a\x4d\xff\x6f\x62\xa2\x9c\x88\xd1\xfe\xbe\xcc\xce\x2e\x7e\xc9\xce\x2e\x4e\x7f\x78\x77\x76\x73\xf9\xe1\xfa\xfc\xf2\xe2\xf4\xdd\xcd\xdb\xb3\xd3\xeb\x9f\xaf\xce\x3e\x6e\x9c\xcd\xa8\x4b\xe9\xcc\xcf\xa1\xa1\xdd\xe8\x4f\x9a\xfd\x74\x7a\xf1\xe6\xdd\xd9\xd5\x47\x02\x67\xff\x09\xd4\xc0\xf8\x7d\xf9\x29\x88\x9d\xb9\xe9\x0e\xa1\xd7\x31\xa9\xce\x86\x1b\x07\xf7\xa1\xe5\x9e\xcd\xda\x82\xa2\x75\x9a\xd4\xcf\x04\xb7\x22\xea\x16\x32\xef\xdf\x5b\xdf\x00\xaa\xb3\x60\x37\x6a\x02\xe7\xf3\x9f\x15\x6e\x53\x4c\xd9\x6a\x45\x67\x6f\x75\x4b\x6f\x8b\xfc\xae\xd2\xee\x42\x41\xeb\xf2\xd6\xb4\x4a\xc0\xc4\xad\x9d\xe4\x66\xad\xd2\x88\xb1\x22\x87\x42\x90\xa9\x0a\x0b\x4a\xff\x41\xed\xd7\x47\x9a\x17\x7e\x35\x9b\x4e\x68\xa6\x86\x04\x51\x56\xe6\x25\xa1\x99\xbe\x47\x75\xa7\xe6\xf9\x24\xf8\x41\x69\x7e\xc3\x51\x81\x34\x33\xf2\x33\x0e\xcf\xf7\xbc\x6b\xc4\x43\xd5\x16\x18\x9a\xcc\x5f\x73\xc1\x5b\xf7\x4c\xaf\x8f\xca\x48\x9d\x9d\x5d\x99\xb6\xc0\x71\xab\x2f\xcc\xfe\x81\xef\xec\xd9\xf4\x39\xdd\xb5\x97\xee\xf7\xf5\x74\xaa\x21\xfc\x77\x74\x74\xea\x76\x7f\x67\x1f\xa7\xae\xc6\x53\x1e\x48\x9f\xdb\x70\x53\x65\xb3\x41\x83\x3a\x7b\x73\xf6\xf6\xf4\xe7\x77\xd7\x0e\xcd\xe1\xda\xe1\xb7\x41\x27\x28\xb2\x22\xf0\x0c\x7c\x17\xd8\x40\xbc\xfa\x01\x27\xa0\xc0\xf6\x48\xe8\x5f\xf6\xa0\xb8\x74\x38\x42\xee\xcb\x1c\x2f\xf0\x5b\xd4\x9c\xbd\xa0\x2a\x1c\xcd\xee\x24\x1a\x0b\x94\xb6\xdd\xca\xe1\xb1\xb5\x68\x0d\x8f\x7b\x81\x23\x68\x41\x25\x3e\x89\x4e\xfa\xe8\x24\x87\xf1\x76\x44\xf4\xcd\xf9\x8f\x9c\x34\x33\xe6\x4e\x09\x8a\x1e\x25\xd9\xdf\xa7\x56\x80\xa3\x75\xe6\x69\x04\xa1\x77\xd1\x7d\x9b\x76\xde\x8e\xeb\xbf\x86\x7e\x7e\x0e\xe9\xfc\x24\x79\xdc\xba\xea\x9e\x45\x24\xef\x44\x01\x6f\x27\x7e\x83\x0b\xeb\xd9\xb2\xa3\x86\xdf\x1f\x0e\xa9\x51\xec\x12\x62\x48\xa9\x13\x6a\x03\x8c\x69\x2b\x3e\x46\x64\x9a\x8a\x2e\x7f\xa9\x1f\x4d\x0f\x87\xfa\x3f\xf2\xc4\x2c\x22\xe3\xe5\x8c\x5e\x3f\xac\xe8\x89\x30\x6d\xa1\xf5\x5a\xa6\x9d\x26\x2a\x5a\xcc\x87\x43\xf5\x37\x9e\xff\x99\xf1\x59\xf9\x79\x38\xd4\xff\x15\xf7\xb8\x5e\x2b\xda\xd9\x1e\x89\x34\xf1\x24\xe5\x09\x4a\x3d\x53\xbd\xb2\x99\x25\x84\xc4\xa7\x0d\x83\x9e\x7b\x59\x20\x15\x82\x89\x56\xb8\xee\xce\x91\x65\x20\xba\x3b\xbb\xf8\x65\x38\x6c\x7e\x37\x52\x09\xbf\xa0\x29\xa3\xb2\x1f\x37\x83\xda\xd2\x65\xa7\xef\x1a\x92\x6c\x38\x4c\xeb\x5e\x7a\x0d\xa4\x6b\x75\x76\xf6\xbf\xae\xcf\x2e\xde\xdc\x7c\xb8\xba\xbc\xbe\xbc\xfe\xcb\x07\x95\xae\xa8\xbf\xb4\x22\x91\x3c\x74\xf2\x68\x54\x53\xfb\xc7\x18\x84\x1e\xea\x87\x5d\x9e\xd1\xfe\xf1\x66\x54\x0d\x87\xfb\x47\xfb\x84\x54\xae\x68\x99\x56\x46\x3e\x8c\x4c\x1d\x95\x02\xbf\x50\x53\x57\xa5\xd9\x0f\xb4\x19\xb9\x7e\x8e\x6c\x3f\x47\x5e\x3f\x47\x1b\x5c\x67\xef\x2e\x7f\xbc\xf9\x78\x7d\xfa\xfa\x4f\xd7\x57\xa7\xaf\xcf\x6e\x2e\x2f\x6e\xde\x9c\x7d\xb8\x3a\x7b\x7d\xaa\x26\x4a\xca\xf4\x89\x12\xc8\x34\xf1\xcb\xd9\xd5\x47\xbf\x82\xf9\xb6\xd9\x3f\x9c\x5f\xbc\x39\xbf\xf8\xf1\x23\xc9\xd3\x30\x41\x15\xb8\x3a\x3d\xff\xd8\xe9\x59\x15\x8c\x65\x20\x73\x5f\xc4\x04\x2d\x21\xe4\xe9\xb0\xec\xfa\xb7\x73\x80\xd6\x49\x30\x3c\x88\x73\x68\xb7\x5f\x67\x33\xed\xe8\xc0\xf8\x28\xf3\xbc\x9f\xe1\x29\x31\xf0\xa4\xa0\x05\xcf\xc9\xa3\x11\xff\x8c\xa6\x56\x10\xb4\x5e\x33\x6c\xce\xf5\x68\x9a\x99\x5f\x2a\xd1\x98\xdf\x4c\xcd\x53\x9e\xf5\x9a\x6d\xf0\x8a\x14\x27\x8f\xda\x43\x13\xb8\x83\xaa\x5e\x2f\x44\xb9\xa4\xa3\xfd\x7d\x33\xc8\x29\x7c\x0f\x87\xf6\x5b\xdd\xc9\x39\x66\xd5\x5b\x26\xe8\xbc\xfc\x12\x95\x36\x81\x45\x71\x51\x5c\x0b\x76\x77\x47\x05\x66\xd5\x87\x45\xce\x65\xb9\xf4\x5a\xcd\x8b\xc2\x24\x62\xf7\x94\xda\xe4\xd9\x6f\x6c\xde\x62\xdb\x74\xf3\x89\xeb\x8a\x8a\xd3\x3b\xca\xa5\xcd\xe0\xf9\x3d\xbb\xcb\x65\x29\x32\x97\x85\x75\x96\x29\xb1\x19\xb9\x29\x1e\x7b\x53\x3c\xf6\xa6\x01\x1f\x6e\x98\xc7\xcd\xa0\xc0\x48\xc5\x8e\x04\x3e\x9a\xfe\x93\x77\x0f\xfc\xcb\x5e\x2a\xe9\x17\xb9\x2c\x67\x14\x25\xb6\x5b\xb0\x80\x81\x37\x2b\xbf\x90\x1a\x53\x2b\xaa\x83\x60\x59\x1e\x06\x26\xab\x00\x35\xb7\xdf\x53\xbc\x68\xde\x38\xc2\xe5\x75\x93\x5b\x0b\xae\xee\x2d\x18\xf7\xb0\xb6\x33\x37\x29\xda\x56\x3a\xa1\x99\xd5\x34\xe7\xaf\x73\x99\x17\xe5\xdd\x19\x97\x82\xd1\xea\x87\x87\x8e\x12\xce\x68\xec\x9d\xae\x9c\x0e\x87\x81\xd1\x05\xdd\xe0\xe9\x53\x6d\x68\xc6\x13\x94\x78\xa7\x28\x15\x9e\x29\xc5\xc5\xe9\xfb\xb3\x8f\x1f\x4e\x5f\x9f\x7d\x74\xbe\x6c\x4f\x51\x8a\x70\xe9\x6b\xef\x44\x44\xf3\x05\x0a\xbd\xc6\xfb\x45\xe7\xbd\x9b\xed\x15\x42\xe9\x80\x8a\xdf\x5a\xcb\xb8\x30\x59\xda\x9c\x1c\xfc\x07\x7a\xfa\x83\x34\x47\xc3\x61\xa9\x15\x7c\xea\x67\xca\x09\x1d\xe7\x13\x9c\x40\xe7\x89\x42\xbd\x6a\x94\x5a\xc0\x8e\x52\x8e\x14\x96\xd7\x16\xe9\x5d\x2d\x5b\xee\x14\xee\x25\x4e\x12\x84\xe0\xc9\x31\x6b\xb9\x50\xef\x02\xc8\x2c\x97\xf9\x36\xa8\xd8\xc5\x73\xfa\x93\x9e\xf0\x1b\x28\x69\xbf\x6b\xff\xda\x87\x31\x82\x16\x34\xaf\x8c\xed\x08\x84\xaa\xe7\xb0\x9b\x1b\x1c\xb5\x58\xb4\x81\xa4\x72\x29\x05\xbb\xad\x25\x7d\xc7\x96\x4c\x8e\xbe\xc1\xf9\x74\x4a\x57\x12\xdc\xaf\x68\x5b\x96\xfd\x23\x1c\xb6\x3d\x72\x6d\x2b\x3e\xe1\x2d\x2b\x64\xeb\x19\x86\xe7\x6d\x51\x8f\xe0\x73\x2e\xa7\x0b\x68\x51\x41\x67\xd5\xeb\x8b\xc5\xc6\xdf\xb9\xa3\xb2\x29\x9d\x1a\x7f\xc3\xba\xb1\x01\x4d\x59\xb6\xcc\x57\x5d\x60\x23\x34\xfb\xa4\xa0\x04\x33\x22\xb2\xcf\x22\x5f\xb9\x26\x52\x8e\x43\x0b\x80\x3d\x1b\x65\x27\x2b\x6f\x2b\x2a\x8c\x29\x81\x0e\x89\xa9\x65\x69\x12\x29\x50\x41\x56\xde\xe7\x4d\xae\x8c\x82\xbb\x25\xe1\x20\xe6\x8b\x68\x6d\x46\x26\xe8\xb2\xbc\xa7\x7a\x9f\xd3\x1c\x85\xef\x7b\x5a\x65\xd5\xc0\x5c\x49\x9c\x6f\xf0\x8d\x1a\xd0\x75\x09\xaa\x9f\xce\xc1\xb6\x01\xc4\x3a\x21\xe4\x28\xf8\x48\x4a\x85\x96\x97\x6a\x2d\x1d\xb5\x0e\x0c\xb2\xb9\xd6\x86\xbe\x85\xb8\x66\x60\x46\x91\x1c\x50\x84\x86\x43\xa1\x8f\x39\x38\xa0\x86\x5d\xbb\xa2\xd3\x52\xcc\xc2\x2d\xc3\x02\x33\xdd\xbd\x0e\x91\xa4\x6d\x04\x0c\x48\x54\xc6\x72\xcd\x1b\xb5\xb6\x08\xb0\x3b\x6b\x5a\x4c\x2b\x4c\x11\x2e\xdc\x43\x11\x4b\x10\x4e\x61\x39\xd3\x31\x9d\x68\x05\xc8\x9c\xd4\x9d\xfd\x76\xc1\x30\x60\x17\x4b\xbb\x8b\xba\xe5\x94\xe2\x29\x42\xb8\x04\x18\xb0\x49\x6a\x5b\x56\xe4\x71\xc6\x66\xaf\x17\x39\xbf\x0b\x94\xfc\x42\xcb\x8a\x80\xfe\xc0\x73\xbc\x02\xfb\x83\x82\x88\x57\xc5\x77\xe2\xa0\x7e\x55\x1c\x1c\xa0\xb9\x9e\xa0\x26\x34\x4f\x25\x4a\x29\x2e\x54\x83\x41\x27\x73\x17\x76\xa9\x3d\xa2\x39\x8c\x48\xa6\xe3\xd5\x04\x0d\xaa\xe1\x90\xa5\x02\x57\x48\xbb\x72\x6a\x8f\x27\xf4\xf6\xb4\x19\x78\x87\x29\x9f\xcd\x80\xdc\xbb\xd4\x8d\x0b\x94\xd6\xda\x47\xd7\x4a\x2d\xa4\xd7\x42\xfe\x34\x8c\x42\x83\x1a\x2e\x3b\x6d\x96\xaa\xc1\x72\x2b\x10\x17\x68\x83\xa5\x9a\xf1\x13\x20\x5c\x20\x5c\xfc\x06\x97\x55\xb1\xd6\x9f\x9a\xda\x06\xeb\x40\x66\xdd\x25\xdd\x3f\x56\xc8\xb0\xa8\x97\xee\x1d\xc6\x56\xac\xd5\xc6\x0d\x11\xb4\xa5\xf1\x95\x8d\x14\xd6\x86\xf9\xbc\x03\xf3\x25\xa6\x1e\x5b\x54\xa9\x35\x48\xb5\x09\x4b\x88\xb0\x54\x39\x03\xff\x75\x0f\xd4\x4a\xf0\x25\xff\x98\xf2\xef\x8f\xd6\x6b\xf6\xfd\x11\x1c\x5e\xdf\x91\xdb\x25\x9f\x76\x9c\xb9\xfd\x2e\x40\x97\xeb\xb6\x6a\x84\xe3\xab\x17\x85\xaa\x1c\x33\x5c\xa3\xcd\x06\x07\x13\x8d\x2c\x29\xef\x2c\x9a\xca\xb2\x16\x96\x60\xa0\x23\xf1\xb4\xac\xb9\x1c\x35\x86\x49\x1c\x27\x5a\x86\x93\x20\xbb\xc3\x23\xf3\xc8\xcd\xdf\x6e\x70\x92\x0e\x80\x39\xa2\x1b\xf0\xb0\x1f\xbb\x94\x5a\xce\x17\xec\x70\xd2\x1e\xd3\xff\x8e\x81\x25\x38\x42\xe8\xa1\xee\x0c\xba\x4d\xd0\x89\x2a\xb2\x25\xdf\x78\x03\x51\x88\x1b\x06\x5c\x5d\x72\x47\xb8\xa9\x2b\x51\x38\x94\x2b\x50\x88\x1f\x9d\xc6\xfe\x11\xae\xc3\x11\x0d\xe1\x52\x22\x6d\x74\x0a\x32\xc7\xa0\x95\x39\xdc\xe4\x91\x86\xf6\x14\xb5\x22\xc1\x23\xa2\xbe\x62\x1d\x02\x81\x8a\x1b\xdc\x33\xcc\x6d\xfe\x2c\xa0\x2e\xef\x21\x46\x85\x77\xdf\x3b\x81\x72\xe7\xdc\xdb\x33\xe8\xde\x28\x96\x8a\xa8\x94\x48\xb6\x89\xca\x12\x0d\x87\xcd\x14\xc6\xe5\x44\x07\xf7\xe1\x5d\x92\xb1\x54\x97\x37\xa0\x70\x06\xd4\xa2\x00\x20\xe9\xdc\x81\x31\x12\xc7\xdd\x03\x11\xcb\xbc\x47\x07\x74\xcd\x74\x34\x64\xfe\x92\x17\x35\xad\x5a\x20\xff\xda\xcb\x02\x2b\xc8\xac\x02\x4f\x7d\x7f\xa2\x0f\x9f\xd5\x40\x5a\xc5\x6d\xb2\x2e\xaa\x77\x31\xda\xee\x5b\x2f\x4b\x17\x9e\x96\x45\x29\xba\xbd\x97\x02\xb2\xbd\xc9\xfb\x43\xea\xae\xc3\xe3\xc6\x2b\x6a\x87\xb3\x75\xb9\xa2\x63\x7a\xa2\x61\x18\x58\x4c\x2e\x0f\x01\x99\x83\x1b\x37\x52\x2a\x50\x7c\x29\x1e\x60\xb0\x85\x07\xe8\xd5\x83\x3d\xc5\x2e\x3c\x9b\xed\x7c\x82\x9b\xec\x15\xde\xbf\xc9\x65\xee\x1e\x1f\xfd\x8e\xd1\xe5\xa2\x6f\x8f\xbe\x22\xbe\x9c\xcf\x63\x99\x87\x39\x2f\x9a\x47\x4b\xcb\x9c\xe7\x77\x54\x54\x2f\xf2\xdb\x4a\x8a\x7c\xba\xab\xdc\x74\x87\x98\xd2\x5a\x59\x00\x6a\x78\x23\x39\x8d\xc5\x7f\xd4\x0e\x99\x4f\xc5\x5d\x15\x11\xa9\x9b\x08\xdf\x5e\x79\x17\xc4\xc7\x46\x43\x68\x89\x94\x83\x92\x3a\xb0\xc3\xbb\xfc\xa1\xac\xb7\x17\xd4\x4d\xf6\x17\xb9\xa3\xf2\x3a\x8f\xc9\xfc\xbb\x03\xac\x57\xb3\xad\x4d\xcd\xd8\xec\x67\x28\xb2\xc3\xb0\x7e\x8e\xb5\xd5\x0a\xd3\xbc\xe3\xf6\x4e\x6b\x51\x3c\x6c\x73\xd2\xf1\x3f\x6d\x65\x41\xe7\x54\x50\xed\x1a\xa3\x49\x8c\xba\xeb\x78\xda\x49\x47\xc8\xa2\x47\x3d\x67\xbc\xf0\x1d\xb3\x84\x39\xda\xe8\xf6\x96\xf1\x19\xe3\x77\xdd\x8a\x3a\x1b\x66\x76\xd8\x4c\xb9\x92\xb9\xa4\xc6\x31\x46\x4f\x15\xe3\xf5\xf6\x30\x17\xbd\xad\xba\x55\xd8\x32\xde\xc8\xe1\xd9\xcd\x0b\x08\x9e\x75\x84\x10\xaf\xd5\x2c\x9c\xd5\xed\x1b\x85\x0d\x98\x51\xba\x7c\x28\x75\xac\x9a\xbc\x38\x35\xf4\xf8\x95\x1d\x5c\xa3\x25\xb1\x96\xc9\x4d\xe1\x0f\xb9\xc8\x97\x54\x52\x51\x45\x60\x4c\x4d\xdf\xf5\xe6\x1e\x9e\x83\x4c\xf0\xd4\x1a\x90\x75\xea\x99\x87\xe8\xfa\x54\x9d\x83\xe1\xc8\x12\x06\x2b\x73\x56\x54\xe4\x0b\x28\x7c\x44\x4f\xee\x99\x71\x4b\xb2\x83\xb3\x13\xf7\x9c\xd8\xad\x74\xf5\xe2\xd0\x00\x3c\xb8\x3d\xd9\x5e\x00\xe1\x7b\xd2\x7e\x7e\xbb\xf4\x88\xfd\x07\xff\x75\xc8\xec\x81\xe7\x4b\x36\xfd\x38\x2d\x57\x34\x45\x99\x82\x50\x35\x3a\x45\x0d\x35\x62\xb5\x0f\x82\x2d\x99\x64\xea\x4e\x33\x0b\x6f\x0d\x6b\x12\x78\xba\x73\xa2\xd0\xc0\x48\xae\xd7\xc9\x8c\xdd\x27\xa8\xd1\xa9\xdc\x05\x4f\x62\xee\xa8\xfc\x48\x8b\x79\x8a\x34\x11\x9b\x0b\x96\x5f\x95\x05\x4d\x34\x7b\x71\xdb\x83\x4d\xad\x8b\x0a\x3b\x69\x42\x63\x78\xd4\x44\x40\x0c\x94\x8e\x14\x78\x19\x8d\x67\xd2\xa0\x0d\xa4\x8d\x60\xed\xec\xd3\x07\x95\x90\x4b\x29\x2a\x97\x94\x08\x50\x3b\xde\x35\x39\xea\x60\xa9\x0c\x2d\x01\xf4\xcf\x74\x62\xc3\xc7\xdf\x66\x6c\x46\x12\x8d\x6b\x60\xbf\x6f\x9e\x80\xdf\x27\xa6\x9c\xdf\x11\x1b\xfe\xed\x96\x71\x7a\x0d\x60\x83\x1a\x5f\x78\xcd\x29\x8d\xaf\x0a\x58\x17\xc7\x54\xb5\xad\xda\x7d\x72\x0d\xd3\x82\x66\x66\x5b\x17\x42\xcc\x17\xd3\x22\xb3\x37\x78\x07\x52\xb4\x35\x9c\x8d\x98\xfc\xb9\xcf\xbe\xce\xa3\xd0\x76\x31\xae\x8b\x32\xeb\x68\x9b\x79\xd9\x53\x77\x6f\x18\x17\x1a\x9e\x9d\xd0\xe6\x39\x00\x70\x2e\x5a\x32\xa5\x46\xe7\xa3\x1a\xd0\x14\xb6\x85\x5f\x39\x2e\x48\xbd\x5e\xe7\xce\xef\x0e\x9e\x92\x62\x38\x04\x77\x20\x5e\x03\x26\x1b\xcf\x09\xcd\x14\x52\x06\x43\xc1\xe9\x70\xb8\x3f\x47\xde\x45\x6b\x9e\x19\x2a\x7e\x6d\x25\x6b\x41\x53\x84\x17\x64\xe5\x37\xd3\xec\x28\x9e\x59\x56\x50\xb7\x08\xb6\xc1\xfa\xa7\x5f\x41\x3f\x1a\xb1\xf1\xcd\x55\x7b\x8b\x6c\x5a\xf2\x69\x2e\x53\x81\xf0\xcc\xd6\x50\x7c\xda\xcc\x3a\x56\x32\xed\xb2\x79\x5a\xa3\x94\x83\x83\x92\x7c\x02\x82\xfa\x9b\x74\x81\xf0\x92\x70\xbc\x20\xe3\xc9\x00\xc2\x80\xb3\x79\x5a\x80\xac\x7d\x49\x1e\x37\x98\x91\xf7\xb9\x5c\x64\x4b\xc6\x5d\x9f\x38\x77\x9d\x97\xe4\xe8\x55\xf9\x1d\x7b\x55\x1e\x1c\xa0\xe5\x38\x1f\x97\x93\x09\x59\x8c\x4b\x6b\xf6\xf6\xd8\x8c\x7b\xb4\x00\xd6\x71\x36\x02\x4f\x32\x5e\x70\xa0\x19\x5e\xe2\x95\x1e\xae\x82\x69\xc5\xe6\xfb\x3b\x3e\x6d\xd1\x39\xde\x1d\xa5\x37\xbd\x22\x1c\x70\x20\xae\x89\x6c\xed\x3a\x9e\x12\x61\x5a\xf6\xd7\x1f\xfc\xee\xb6\x6f\x14\x05\x52\x28\x9d\xa2\x57\x69\xfb\x91\x80\x6e\x60\x91\x57\x69\xc2\x66\x10\xdb\x55\x66\x54\x93\x72\xe7\x33\x22\x33\x36\x43\x1b\x05\xaa\x6a\x2f\x32\xed\x53\xed\x17\x46\x3f\x93\x0a\x2f\xc6\x45\xf6\xd3\xe9\xc7\x9b\x1f\xde\x5d\xbe\xfe\xd3\x84\x94\x78\x91\xdd\x68\x87\x10\x46\x53\xcf\xec\x61\x35\x6e\xb5\x6a\x7b\xf4\x60\x53\xe0\x0d\xdf\x0d\x73\xf7\xd2\x47\x99\x0b\x89\xac\x93\x8d\xcc\x23\x42\xbe\xe0\x19\x1a\xe8\x65\x20\x33\x88\x6f\xb7\x4f\x48\xe5\x79\x52\xa9\x86\xc3\xca\x44\x8b\x04\x57\x9b\xe9\x0c\x61\xb8\x08\x66\xf6\xea\xd0\x1e\xf9\x42\x6f\x85\xb3\x4c\x6a\x8d\x61\x9a\x7c\x66\x85\xb9\x45\x13\x84\x67\xd9\x8d\x74\xf1\xe8\xae\xcb\x34\x59\xe4\x95\x21\x6e\x93\x48\x5c\xce\x56\x33\xe7\x5c\xdd\xd6\xae\xbc\x9e\xfb\x3d\x40\xa3\x0b\xb2\x93\x52\x3c\xc3\x53\xbc\x74\x2c\xbc\xf0\xb7\x41\xa3\x73\xb5\x13\xf7\xfa\x60\x5f\xd1\xb9\xdb\x69\x2d\x6d\xd1\x25\x22\x83\x49\x92\xfd\x60\xd6\x7d\x73\xbc\x0f\xc1\xb0\x80\x2b\xe9\x6d\x29\x48\x9b\xe5\xb2\xfa\x03\x7b\x51\xb9\x3b\x78\xbd\x36\xef\xc2\x5d\xd6\xdb\x52\xa4\xb2\xd9\x37\x2c\x10\xd2\x42\xa8\xd7\xfa\x2a\x9c\xfd\x50\x94\xd3\x4f\xe9\x2d\xe6\x28\xec\xdd\x6b\x20\x8e\xf6\x88\x7d\xef\x09\xe1\x1b\xf4\x60\x21\xc8\x24\x1d\x57\xd9\xe5\xaf\x17\x67\x57\xe6\x7d\x96\xe3\xe7\xbc\xb7\xa1\x29\xb7\xc6\xc9\x65\xac\x1d\xb5\x4e\x8d\xc6\xae\x04\xb4\xc4\x9c\xb3\x4e\x47\xd8\x24\x07\x25\x42\x27\x62\xe4\xb2\xee\x5b\x93\x30\xb4\x44\xd4\x21\x60\xb3\x28\xe3\x22\xbb\xba\xbc\xbc\xbe\xb9\x3a\x7b\x3b\x09\xeb\xf7\xf3\x51\xad\x9d\x68\x16\x98\xa9\x2f\x03\x20\xf0\xc0\xdd\xd3\xf5\xbe\x4a\x8f\x30\x04\x40\x54\x87\xd5\x86\xa6\x83\x07\xf9\x46\x6f\xc3\x33\xa7\xdf\xfa\xc1\xd0\xf3\x58\x21\x1b\x68\x10\x64\x4f\xe0\x59\xda\x7d\xda\x42\x83\x7c\x38\xb4\x18\xf2\xa4\xab\xca\xb3\x02\x27\x43\x64\x93\xf1\x04\x30\x97\x35\x23\x7b\x05\x0f\xe1\xeb\x57\x88\x11\x39\xae\x27\x38\x27\x69\x49\xa6\xd9\x69\x6b\x28\xfa\x95\x76\xca\x10\x1a\x1f\x4f\xf0\xe1\x31\x21\xa4\xca\x98\x79\x7b\x0f\xda\x4f\x2d\x4a\x4f\x73\x84\x23\xb5\x99\x36\x08\x00\x05\x46\x89\x39\x42\xb8\x3e\x3c\x7c\xd5\x6a\xc6\xa0\x3b\x10\xe3\x7e\x04\x4a\xca\xb5\x03\xa6\x85\xb3\x04\x8b\x06\x13\xa2\xf6\x28\x92\x4a\x3e\x28\x52\x71\x38\x9c\x66\xe7\xd5\x2f\x0c\xe8\x82\xd8\x00\x38\xda\xa4\x12\xe7\x98\x63\x81\x46\xa9\x88\x75\x27\x75\x77\xdc\xef\x6e\x4b\xab\x12\xda\x42\x98\x0d\x87\xd0\xdc\x1b\x4d\x21\x06\xed\x19\x9a\x90\xe1\xfd\x63\x84\x01\x3f\xea\x2d\x50\xbf\xa2\x6a\x82\x9e\x71\x99\x76\x40\x4b\x54\x0c\x87\x85\x6b\xa6\x88\x36\x33\xcd\x5e\xb7\x00\x26\x18\x35\xc5\x42\x35\xc4\xb7\x62\xd8\xb2\xeb\x56\x76\x1b\x86\xed\x1c\xa3\xb8\x90\xc1\x5c\x77\xfe\x49\xfc\xe1\xf2\xe7\x8b\x37\x1f\x27\x44\x62\x9a\xcd\x19\xcf\xe1\xd1\x78\xf7\x58\x07\x82\x86\xbe\x53\xfd\xe6\xfc\xea\xfa\x2f\x37\xd7\xa7\x3f\xf6\x1d\xeb\x88\x0f\x39\xaf\x85\x41\x70\x78\xbb\xd1\x1d\xdb\x0b\xc6\xf8\x9b\xcb\xf7\xe0\xf7\xd5\x2d\xcd\x8c\xcd\x5a\x2b\xd3\xca\xb5\xc8\xbf\x35\xc3\xb6\x7c\xc4\x39\xcd\x10\x01\xb2\xe1\x86\xf4\x02\xac\xa3\x7e\x5c\xd1\x7b\x56\xc1\x73\x8d\x10\xf3\x0c\x9a\xc5\x14\xcf\xb8\xe4\xcf\xb0\x50\x80\xa1\x98\x20\xcb\x3a\xa7\x0c\x41\xe0\xc8\x2d\x14\x0d\xc4\x3e\xf0\x47\x43\x5c\x13\x8a\xf0\xc0\x62\x5c\x64\xe7\x1f\x6f\xde\x9c\x7f\xfc\x70\x7a\xfd\xfa\xa7\xf3\x8b\x1f\x6f\x4e\xaf\xaf\xaf\x3e\x4e\xc8\xbe\x09\xd9\x6d\xf8\x03\xa6\xdf\x76\x6e\x29\x7f\x8c\x45\xb0\x9c\x5a\x16\xa4\x0e\x4b\x95\xa0\x56\xde\x15\x9d\x52\x76\x6f\x33\x23\x20\x9d\x8a\x10\xa6\x75\x63\x61\x3b\xfe\x85\xdd\x85\xf2\xb8\xcc\x0a\x98\xcc\x3e\x58\x8e\x08\xb0\xbe\x0a\x16\xbb\xab\xb0\x2b\xac\x81\xad\xb0\x7b\xdf\x12\x3b\x54\x1b\x2c\x36\xe9\xcc\x19\xc5\x34\x42\x82\x2f\xc1\xd1\x63\x6d\x71\x86\x73\x21\x68\x42\xcc\xee\x1f\x6d\x3c\xb6\xff\xec\x99\x95\x8f\x37\x68\xd3\x88\xf4\x3e\xc3\x95\x79\x09\x34\xdc\xe7\x6d\xa2\xa1\x1e\x16\xd2\x73\xb3\xa4\x49\xfa\xe7\x3e\xd4\xc2\x02\xe7\xeb\xf5\xa5\xba\xc9\x2c\xa1\xe2\x89\x1f\x98\xe2\x38\x14\xcb\x58\xe2\x6a\xfb\x3b\x26\x9e\x45\x46\xbd\xab\x3c\x1a\xfc\xc3\xef\x26\xb0\x6c\x79\xa9\x6a\x7b\xf2\xfd\x5d\x04\x7b\x3b\x94\x35\xfe\xed\x76\x76\x7a\xf5\x5e\xcd\xd0\xdb\x4e\xc3\x57\x1a\x36\x8c\x7e\x8e\xbf\x03\xfb\xe7\x8a\x08\xa2\x0c\xa3\x53\x0f\x6b\x0b\x1d\x85\xa1\x21\xe2\x45\xd6\x17\x7d\x20\xe5\x68\xc0\x4c\x48\x27\x43\x1a\x3f\x9a\xa8\x01\x6c\xd3\x58\x02\x81\xc2\xb5\x91\x0d\x05\x3c\x88\x51\xc6\xe2\xf2\x79\x9c\x84\xcc\x74\x3f\x5d\x0a\xdb\x8f\x4a\xe7\x31\x46\x1d\xfe\x21\xcf\x2e\x61\x5f\x35\xea\x33\x79\xa2\xc3\x54\xc4\xe8\x71\x8b\xea\xf4\x10\xe0\x82\x0b\xa7\x88\x4b\x22\x03\x0b\x20\xcf\xd3\x64\x30\x3e\x70\x41\xc3\xb3\x3b\xca\xa9\xc8\xa5\xe7\x10\xc6\x38\x53\x40\x8a\x76\x0a\x6a\x80\xd8\xa6\x69\x8e\x94\x96\x19\x46\xb8\x22\xc2\x71\xca\x0e\x49\x99\x81\x99\x5b\x4d\x04\xb7\x1a\xc4\x2a\xb3\x5b\x80\x2b\x84\x8d\xa3\x50\x88\x39\x66\xa6\x92\xe6\xcf\xc6\xbd\x66\x5d\x76\x24\xa8\xd0\xe3\xb3\xe8\x08\xe7\x9d\x93\x77\x57\x9d\x91\xd6\x7c\x07\x71\x42\x80\xbb\x15\x68\xaf\x4f\xeb\xd6\x0f\xd6\x47\xbb\x01\xda\xa4\x8d\x63\x32\x14\x39\xec\x7d\xb8\xfb\x99\x87\xdb\xc7\xd9\x15\xc8\x2a\xb6\x1f\xed\x4d\x2a\x7e\x0b\x52\xb6\x2e\x3c\xbf\x02\x2b\x6f\xd3\x0b\xfd\xa1\xaa\x97\xbe\x07\x1f\x95\x7f\x44\x35\x81\x68\x05\x6d\xc6\x48\x40\xe3\x37\x70\x1d\x23\x33\x3d\x75\xcf\x8d\x47\xad\x40\x92\x46\xb1\x03\xb1\xc9\x71\x85\xce\xb5\xf1\xa2\xda\x5f\xc6\xbb\x0a\x8a\x27\x64\xe4\x7a\x5c\x8a\x95\xa2\x36\x26\x6c\x43\x70\xa4\x28\x26\x15\x6f\xf2\x49\xdb\x06\x2c\x20\xa5\xf9\x16\x52\xda\x42\x82\x89\x82\xea\x8d\xa2\x25\x29\xb7\x2d\xfa\x5d\xa5\x26\xfc\xbe\xeb\x0d\x59\xef\xee\x4d\xff\xb5\x91\x94\x4f\xff\x15\x24\xe5\x3d\x72\x53\x6b\x7a\x96\xf2\x60\x1b\x82\x2f\x7d\x7d\xe9\x84\x2a\xd1\xaa\x1f\x0b\x4d\x8a\x6f\x45\xa8\x8d\x8c\x15\x76\x2d\x52\x86\x76\xbd\xe9\xfa\xef\xae\x19\x6e\xa4\x5d\xcf\xb8\xaf\xbc\xd1\xfb\x63\x2a\x5b\x18\x5f\x66\x8e\xad\xb2\xd8\x76\x67\xee\x78\x1b\xdf\xd0\x73\x73\xb4\x74\xee\x62\x93\xe6\x0e\xc3\xe2\x39\x50\xcb\x53\xbc\xfa\x97\x26\x9c\xc0\x45\x8c\xbf\xc9\x21\xa4\x18\x38\xf8\x1d\x36\x7e\xd1\xda\xf8\x4d\x3a\x85\x5b\xe8\x69\xcc\xd3\x7f\x2f\xb9\xd7\x0b\xcf\xbb\x97\x12\x8b\x29\x56\x58\x20\xef\xa9\x82\xe3\x27\x84\xfb\xa9\x9d\x26\x5b\x22\xe7\xc7\x9a\xcd\x80\xe3\xe6\x5f\x73\xa1\x99\xf8\xf5\xff\x7c\x95\xaa\xd5\x92\x82\x26\xb8\xa3\x3b\x65\x33\xe3\x1a\x3a\x8c\x63\xf7\x2c\x25\xeb\x02\x94\xac\xb2\x5c\x1d\x16\x6a\x2f\x9d\x5f\xed\x6d\x97\x4e\x3f\xab\x68\xcd\xc7\xbf\x7e\x63\xe7\x86\xee\x68\x08\xf9\x06\xbb\x11\x81\xcb\x66\x99\x79\x6c\x87\x4b\xf4\x94\x3f\x8c\x2d\x3b\x3c\x23\x3d\x37\xf0\x3f\x71\xe3\xcd\xb6\xcc\x60\x5b\xcc\xa2\xec\x48\x4f\x69\x04\xfa\x55\xf4\x54\xcb\x53\xf3\xbf\x26\xcf\xdb\x89\x49\x49\x33\x7d\x21\x04\xf4\xd0\xc5\xe5\xc5\xcd\xc7\xf3\x8b\x1f\xdf\x9d\x5d\x5f\x5e\xdc\x5c\x9d\x5d\xbc\x39\xbb\xba\x79\x7f\x7a\x71\xfa\xe3\xd9\x15\xa1\xd9\x96\xac\x53\x33\x54\xdd\xe8\x7b\x3d\x2a\x9f\x7a\xaa\x7b\x0b\xfd\x0b\xdc\x11\x5f\x83\xd9\xab\x38\x3b\xfa\x55\xf7\x7c\x73\x6f\x6f\xbd\xe6\x51\xfb\xb2\x2d\xfe\x15\x16\x6f\x2b\x49\x56\x5a\xd9\x44\xee\x64\x13\x56\x00\xe0\xb1\xd8\xc9\x41\xa9\x39\x6b\x16\xe1\xac\x51\x6a\x6a\xe2\xd2\xbb\xb5\x44\x59\xca\xcb\xe6\xca\x06\x3f\x80\x21\xe9\xd7\x2a\x01\x0f\x7e\xc4\x6a\x91\xf3\xb4\x44\x08\x9c\xdf\x39\x0e\x7f\xf3\x95\x74\x4f\xad\xae\xf2\xde\x53\x01\x94\x05\x00\xff\xbf\x3e\xe9\xec\xed\x93\xcc\x28\xbf\x07\xd9\x84\x67\x9e\x91\xcb\xf4\x08\xe1\x9a\xa4\xb9\xd9\xc5\x1e\x61\xc9\xd6\x9d\x74\x32\x92\xdc\x6d\x68\x13\xa1\x44\xbf\xb9\xaa\x1a\x3b\x9f\x3f\x66\xaf\x6b\x6c\x3a\xda\xec\x26\xc5\x08\x65\x18\x4e\x72\x34\x90\x81\xa8\x41\xf4\x90\x8c\x3b\xc8\x5e\x9a\xd6\x1b\x90\xda\x8a\x87\x35\x7d\x1d\xc1\xdf\xdb\xa5\xd0\x7a\x3e\xf9\x57\x90\x17\xf6\x6e\x2c\x5b\xe4\x85\xf6\xb1\x45\x04\xce\x7d\xc2\x22\x57\xe0\x43\x18\xce\xff\x40\xe9\x87\xda\xee\xdf\x41\xf6\xf1\x1b\xcc\x57\x7b\x0d\x7b\xe3\x17\x70\xf7\xf2\x2d\xcb\xa7\xe4\x0d\xf9\xbf\x36\x07\xe5\x94\x1a\x6d\xf3\xa4\x46\xbe\x59\x3f\x25\xbb\xf0\xd4\x80\xe5\x13\x46\xad\xb8\xf2\xe0\xee\x5e\x1b\x22\x81\xa9\x4f\xb5\xcd\xd4\xa7\xea\x31\x83\xa9\x9e\x67\xea\x53\x6d\x37\xf5\x31\x62\xd8\xc6\xc8\xa7\xc2\x5d\x03\xad\x3a\x26\x8c\xec\x03\x83\xdf\x9f\xf9\x3b\xd4\x67\x26\xc7\x8f\xc0\xd0\x8c\x44\x10\xec\xac\x2f\x7a\xff\x9e\xd8\x6c\xa2\xbc\xa2\x31\x77\xe6\x5a\x01\x65\xbf\x7e\xf7\x23\x1f\x1e\xf2\x5d\x2d\xe3\x9f\xb6\x86\x6f\x97\xdd\xc5\x3a\xbe\x43\xc1\x3f\xc3\xcf\x1a\xc8\x0f\x07\xd4\x58\x1e\x10\xda\xd8\xcf\x11\x1a\xd5\x3b\x13\xea\xec\x85\x14\xe1\x7c\xf5\xa3\x4a\x71\xb6\x06\x3e\x9a\x98\x06\x19\xa0\x77\x77\xf1\x43\x5d\x3a\x04\xad\x30\xed\x84\x45\x54\x52\x82\xf0\xca\xef\x30\x2c\x61\x93\x13\x84\x17\x7d\xa3\x0d\x6b\xc4\x8a\x24\x68\xe0\xcf\x3a\xac\xe0\xd2\x93\x86\x99\x34\x4b\x15\x16\xd4\x89\x09\xc2\x4b\x52\x65\xaf\x4b\x01\xee\xfd\xad\x9b\x80\x2a\x03\x8d\x97\x4a\xaa\x3e\xea\x37\x46\xb8\x02\x5f\xd8\x40\x14\x34\x49\xce\x54\xc5\x15\x2b\xb3\x6b\x30\x60\x3c\x85\xed\x6c\x4a\xb6\xbf\x55\x63\x3a\x58\x67\x9a\x16\xe4\xd1\xf3\xdb\x0d\x5e\x4d\xbe\xca\x4d\xc1\x78\x01\x46\x06\xf0\x73\xaa\xcd\x57\x65\xf6\x86\x09\xf9\x90\xdf\x16\xf4\x3a\xbf\xd3\x59\x2b\x9d\x55\xb7\x99\x02\x17\x94\x7d\x3c\x9b\x10\xf0\xa2\x61\xde\xfc\x00\x96\xd1\xdc\xc9\x70\xb8\x0f\x89\x85\xf9\x4a\xbd\x2f\xd2\x2d\x0e\x6e\xf5\x35\x8a\x6e\x4f\x67\x3c\x9d\x64\x33\x35\xb6\x34\x88\x82\x0e\x51\x47\x6f\xf4\xd3\xa9\x8b\x92\x9f\x35\x2f\xa3\x7c\x4c\xa6\xc3\x01\x9a\x58\x80\xd4\xb9\xfe\x2c\x0d\xf5\xb4\xd9\xa0\x31\xcb\x3e\x5c\x5d\x7e\x38\x53\x60\xfb\xe6\xfc\xcd\xcd\xeb\x9f\x4e\x2f\x7e\x3c\x9b\x04\xf8\x90\xcd\xd3\x7d\xb3\x6e\x7e\x80\x8f\xf1\x7c\x82\x05\x91\xc3\xa1\x04\xff\x94\xc3\xa1\x18\xd7\xd9\xcf\x1f\xde\x9c\x5e\x9f\x4d\x82\x8f\xd4\x50\xa7\xd6\x79\x3f\x45\x68\xb3\xc1\x85\x4a\x39\x95\x32\x4a\xa5\xb9\xf7\xae\x8a\xa9\x2b\x32\x41\xf3\xd9\x9b\xcb\xf7\x9d\xd2\x7a\x30\x36\xa6\x64\x60\x80\x07\xdb\xe4\x07\x1d\xf0\xda\x40\xa9\x04\x7b\x74\x45\x5a\x2d\xc7\x39\x3c\xfb\xbc\xf9\xd3\xd9\x5f\x26\xa4\xe3\x03\x1e\xb7\xc3\x27\x76\x1c\xc7\x2b\x38\x6c\xdb\x83\x8f\xc6\x93\xfe\x98\x55\x1d\x9c\x5b\xbd\x98\x2e\xe8\xf4\xd3\x6d\x19\x7d\xed\x17\xa7\xa0\xfa\x5f\x0e\xd9\x1b\xa3\x7a\x41\x97\x2b\x19\xa3\x8f\xb6\x38\x8b\xb1\x41\x5c\xad\x1f\x10\x0d\xb1\x23\xe7\x75\x10\x37\x46\x8b\xa3\xb1\xf5\xd3\x66\x07\x3f\xc1\x86\x30\x18\x25\x8c\xaf\x6a\x75\xf9\xb5\x0d\x1f\x47\xe3\xc4\x84\xcb\x82\x5a\x74\x06\xd1\x1e\x67\x54\x52\xb1\x64\x5c\x7b\x75\x33\x2e\x92\x66\x10\xf5\xee\xd6\xbc\x82\x84\x80\x0f\x09\x4e\xf2\x5a\x96\xf3\x72\x5a\x57\x10\x44\xed\xef\x35\x13\x50\x70\x5e\x8a\xa5\xea\xff\x61\x45\x47\x49\xb3\x9a\xb6\x29\xf0\x02\xe4\x77\xa3\x12\xda\x66\x5c\xcf\x43\x24\xd6\xa5\x85\x0d\x48\x41\x2d\x71\x92\x05\x1d\x91\xfd\xfd\x76\xc9\x70\xbe\x68\x83\xa7\x9d\x87\xf0\x3a\x28\x75\x53\xc5\x2d\x16\x8c\xeb\xdf\x52\xa4\x88\x45\xc5\xd1\x9b\x74\x08\xdc\xfd\x04\x8c\x15\x8c\x7f\x3a\x94\x65\x7f\xe8\x86\xdd\x2e\xee\xe7\x3e\x64\x6b\xc0\xd1\x0e\x60\x47\x6d\xa5\xa6\x75\xcb\x3e\x90\x74\x42\x99\x06\xe8\xf2\x04\x4f\x6b\x21\x28\x97\xbf\x2e\x28\xd7\x1e\x62\xac\xbb\x40\xc6\xef\x4e\x0b\x96\x57\x28\x4d\x4c\x99\xc3\xcf\x0b\xca\x13\xfc\xc8\x66\xa3\x50\x92\x08\x53\x6c\x5c\x38\xce\x0e\xc3\x0a\x6a\x3d\x8a\x51\xf2\x4d\x76\x94\x1d\x25\x1b\x84\xc3\xf6\xb4\x5b\x25\xc9\x64\xe1\xa2\xb2\x15\x26\xcd\xc0\xb2\xfd\x52\xb7\x9f\xfe\xad\x89\x5e\xed\x5b\x25\xd1\x1f\x09\x2e\xca\x5c\x9d\x18\x93\x6a\xbe\x1a\x88\x36\xe9\xcd\x59\x31\x6e\x86\x14\x60\xc7\x4e\xdd\x42\xd0\xb9\x3a\x50\x6a\x60\x70\x74\x8a\xf0\x78\x99\xf8\x92\x13\xdc\x31\x43\x1e\x8d\xdd\x98\x9a\x61\x04\x87\xd4\xd1\xf5\x8c\xdf\x9d\xf3\x76\xca\x65\xad\x9a\x85\x90\x9c\x7a\x9b\xa6\x05\x9b\x7e\x4a\x9e\x7f\x77\x0f\xf4\xf3\xfd\x76\x24\x18\xd7\x72\x82\x74\xc0\x65\x0d\x57\xf0\xc8\xdf\x44\xcd\xbe\x2f\x3f\x51\x88\x50\xac\x37\x78\xc4\x4d\x7c\xc5\xcc\xc4\xeb\x48\x13\x27\x45\x46\x0d\xce\xb0\xcf\xaf\x56\xb5\xa4\x33\x94\x3e\x46\xdf\x1b\xef\x1f\x6f\x70\xe5\x67\xf8\xc1\x13\x4c\xff\xd5\x1b\xd3\x24\x91\x78\x7f\x5f\x42\xec\xb6\x60\x0a\xc1\xa6\x26\x10\x84\xff\x86\x55\xa7\xb0\xea\xa3\xd6\x4d\xdc\xae\x6b\xb7\xc4\x3a\x13\xdf\x3f\x1e\x98\x48\x6c\x9d\x95\x0a\x00\x15\x3c\x92\x27\xb7\x65\x59\xd0\x3c\x1a\x01\x60\xa0\x15\xbc\xfb\xfb\x7c\xc0\x89\x0e\x45\xd7\x6e\xf0\xef\x75\x5e\xb0\x39\xa3\x33\x08\xb7\xa2\xf7\x00\xd9\x88\x6b\x7b\x89\xf7\x16\x20\xa8\x76\xd3\x2c\x76\x37\xb0\x0f\xc8\x77\x2a\x88\xea\xd3\xce\x32\xae\xcb\x66\x7f\xae\xa9\x78\xd0\x17\x6d\xa2\x03\xf5\x48\x72\xf4\x4a\x7e\xc7\x6d\xa0\x10\x79\x70\x80\xd8\x3c\x2d\x33\xbb\x88\x6f\x4b\x01\x43\x4c\x15\xab\xc0\xc7\x72\x82\x29\x66\x6e\xc5\xac\xcf\x0c\xb5\x97\x1a\xd4\xdb\x7b\x9f\x78\x47\x34\xc1\xc9\x8d\x3d\x10\x5d\x70\xd8\x6f\x3c\x75\xd8\x52\xa8\xbb\xe1\x7e\x73\x0a\x6f\xdf\xf4\x74\x6b\x57\x2a\x33\x5b\x07\x64\x75\xd0\x6d\xfc\x4c\xc4\xeb\x59\x72\x68\x7f\x9f\x9a\xf0\xd3\x0e\xca\xb4\x73\x22\xc5\x6a\xff\x40\x4f\x9f\x18\x8b\x46\x15\xcf\x1d\x4a\x82\xb4\xcf\x0d\xe1\x5e\x85\xf8\xed\x00\x34\x06\xb9\xe1\xc8\xf7\x09\x91\xa8\x75\xaa\xcc\xc8\xa5\x1a\x79\x0b\x07\xf5\xec\x5f\x82\x13\x7f\x8a\xb1\xfd\x3b\xb2\xee\xdd\xbc\x29\x04\x75\xd0\x70\xb8\xdf\x99\x63\xb3\xd3\xe6\x2a\x09\xc6\x73\xc8\x78\xd2\x1e\xe3\x65\x2d\xbf\x7e\x90\x29\x38\x30\xdd\x3e\xcc\xf5\xba\x7f\x98\x7d\xe3\x2c\x6b\x50\xdf\x19\x8c\xd9\xc6\x3c\xfb\x40\xc6\xb3\xea\x23\x5b\xae\x0a\xfa\x5a\x61\x71\x94\x52\xef\x14\x39\x6a\x3c\xe8\x75\x25\x00\x43\xbf\x31\x6f\x94\x51\x04\x31\x99\xcb\x47\x07\x49\x50\x53\x53\x38\x92\x0f\x87\xc9\x4d\x45\x8b\x79\xb2\x4f\x14\xf2\x81\x47\x9b\x5e\x4b\x29\x42\x58\x3b\x42\x6d\xb5\x76\x5b\xdf\xde\x16\x14\xde\x75\xd1\xac\x92\xe5\xea\x83\x28\x57\xf9\x5d\xae\xd7\x10\xb7\x91\x72\x83\x37\x77\xc3\xae\x6c\xde\x1a\x5a\x88\x78\xbb\xe8\x2e\x86\x25\x9f\x87\xf8\xfe\xde\x20\x3c\xcd\xb8\xa9\x62\x75\x04\x3f\x02\x09\x00\x61\xce\x1e\xbd\x3a\xa3\x0a\x0b\xdb\xf5\xa8\xdc\xf8\x4c\xd1\xbc\x80\x77\xc5\x8d\xf0\x0f\xa5\x09\xb3\x82\xb8\x92\x67\x8e\x68\x34\x4c\xee\x8d\xd5\x31\x5c\x3b\xc0\x49\x0b\x27\x82\x51\x1b\x02\x8e\x78\xda\x65\x3a\x3e\xa3\x02\xe9\x78\x0f\xbe\x18\x74\x9d\xa6\xd0\xac\x01\x58\x92\x67\x81\x44\xd1\xb6\xbb\xd9\x60\x7f\xee\x40\x61\x75\xb7\xa0\x73\xf8\x34\x0c\x36\x5b\xd4\x87\x44\x9f\xc6\x78\x2b\x73\x33\x61\x49\xa8\x7d\xe9\xca\x09\x1d\xcb\x43\x17\xa1\x76\x8f\x0f\x87\x3c\x63\x95\x77\x93\x0d\x87\xf2\xf0\x10\xeb\xf0\xfe\xa5\xf7\xda\xf3\x44\x61\x24\x39\x52\x80\x2e\xd1\xc9\x53\x88\xde\x03\xb1\x51\xfc\x94\x79\x25\x36\x08\x47\xae\xd4\xce\xca\x78\xab\x19\x99\xfd\xe3\x06\x77\xcf\xfc\xdf\x83\x1b\x1a\xe4\x07\x16\x7b\xd3\x81\x35\x4f\xd6\x90\xec\x1c\x27\xb1\x3d\xc6\xf7\x38\xe2\x6d\xc7\x49\x4c\xdd\x9f\xff\x37\x75\xff\xda\xdf\xb6\xad\x25\x8a\xc3\xef\xfd\x29\x6c\x9e\xfe\x54\xe2\x11\xac\xda\xe9\x9e\xbd\xe7\x28\x45\x74\xd2\xc4\x69\x32\xcd\xa5\xdb\x49\xda\xd9\xc3\xd1\x78\x68\x09\xb2\xb8\x23\x03\x2a\x08\x26\x71\x2d\x7d\xf7\xe7\x87\x85\x3b\x09\xca\x72\xda\xfe\xe7\x9c\x37\xb6\x08\x82\xb8\x2c\x2c\x2c\x2c\xac\x2b\x2d\xaa\x29\x61\x45\x35\x0d\x52\x49\x21\xac\x98\xda\xce\x70\xcd\x3e\x4a\xee\xbb\x70\xf8\x8a\xfd\x29\xb3\x04\xfd\x30\xf7\x89\x0c\xf5\x2d\x70\x72\x43\x77\x81\x60\x37\xf4\x3e\x74\xa5\xe7\xfd\x73\xc5\xb5\xdb\x7c\x4e\x3b\x4e\xd6\x6a\x2f\x92\xe1\xa5\xca\x76\x87\xbe\x3f\x7f\x09\x3b\xb2\x02\x9e\xd3\x74\xda\x3d\xf9\xf5\x4c\x1e\x0b\xfa\x92\x97\x73\xe0\xf9\xef\x80\xed\xfe\x70\x3b\x30\x07\x4b\x3c\xb3\x76\x87\x68\xb3\x51\xfb\x98\x10\x42\x83\x9c\x27\x74\x37\xf0\x02\xf6\xaa\xd5\x5e\x2f\xce\xb4\xa7\x80\x53\x6c\xb4\x5b\x57\x85\xb9\x94\x9c\x3c\xa4\x9e\xf3\xa4\x9a\xf3\x34\x83\xcd\x25\xe4\x6e\x41\xc1\x98\xa5\x3f\x2d\xec\xb9\xa9\x06\x68\xa3\xc0\x75\x83\x6b\x42\xa0\x4b\x47\x48\x8e\x4f\x4d\x60\x5c\x88\x6c\x97\x57\x21\xfb\x5b\x01\xdf\x0b\x7e\xa1\x42\x91\x9b\xe1\xe9\xf4\x21\x1b\x79\x65\x30\x88\x51\x6d\x04\x32\x81\x1e\x22\x41\x44\xe4\x61\x70\xc0\x0b\x39\x25\xc2\xda\x05\xf1\x2d\x0e\xd0\x70\x9c\xfd\x2f\x75\xfb\x8c\x1c\xae\xba\xb1\xd5\x8c\x5e\x22\xc1\x05\x58\x62\x00\xc2\x50\x97\xb3\x12\xf5\x21\xb7\xbd\x12\xfd\xa2\xef\x2a\xce\x01\x9d\x19\xce\x15\x74\xc1\xfe\x12\xca\x8c\x44\x36\xa4\x9c\x26\x75\x36\xd4\x54\xe7\xd8\x3b\x7d\xf7\x95\xa3\x7a\x59\x2d\x80\x7d\xf0\xef\x3b\xd4\x5f\x16\x27\x53\x64\xae\x40\x32\x4c\x1c\x7d\x40\x49\x35\x18\x54\x31\xf1\x9e\xc8\xd1\x9a\xaf\x73\x64\x92\xfa\xd5\xe3\xdb\xed\x36\x68\x3d\xa2\xa0\x10\xf3\xcc\xc4\x84\x38\x9d\xf8\x4a\x16\x07\xed\x39\x6b\x10\x22\x97\xc8\xc4\xe1\x8b\x6a\x15\x53\x48\xdf\x59\xbb\x64\xc3\x5d\xab\x89\xec\x65\xc5\x3e\x78\x49\xe6\x16\xd7\xb1\x28\xb3\x23\xb4\xb4\x8b\x14\x89\x2e\xeb\x3b\xc4\x4a\x92\x7e\x96\x17\xa5\xa0\x65\x4a\xb0\xf4\xe5\xc2\xa2\xdf\x2f\xbb\x94\xa3\x77\xf4\xb3\xb4\x9a\x84\xdb\x84\xe0\x52\x0d\xfd\x18\x86\x3e\xc5\x1d\x41\xa7\x93\x2a\xa9\x5a\x7a\x7e\x29\xb9\x8a\xe0\x30\xc1\x19\x87\x23\xc7\x08\x29\x6b\xba\xa2\x30\xea\x33\x36\x0f\x1f\x41\x19\xab\xf8\x7b\x51\xae\x33\x9c\xad\x4a\x23\x4a\x11\x99\xcd\xb0\x39\xc5\xaa\x41\x13\x9b\x9b\xaf\x6a\x93\x72\x7f\x9f\x35\x58\x54\x74\x35\xdf\x33\x2d\x55\x4b\xc6\xf7\xc7\x2f\x53\x42\x05\xaf\xd9\xbd\x38\x39\x17\x98\x37\x84\x29\xf7\xda\x8b\xc8\xe2\x45\x34\xab\xc4\x77\x89\xa3\x61\x55\x35\x30\xf6\x13\x48\xeb\x60\xd3\x46\xb6\xac\x26\xbd\xa2\xd2\x8a\x9a\xeb\xf2\x23\x75\x4b\xb4\xe0\xe2\x5a\xf3\xc5\xe6\x81\xb2\x99\x91\x66\xab\xa7\x6b\x88\x0d\x6b\x1e\x18\xb7\x2e\x35\xa6\xc0\xdc\x71\x70\xb6\xa4\xd5\xd5\x12\x52\xd7\xaa\x21\xa9\xfd\xec\x51\x61\x55\xd5\xea\x8d\x69\xf4\xba\xfc\xac\xfe\x56\xaa\xbb\xeb\x66\x25\xab\x35\xc8\xee\x0c\x92\xad\x4b\x29\x29\xa4\xc2\xaa\xab\xdf\x00\xeb\x24\x5d\x3b\x44\x52\xd7\xc1\xb9\x5c\x66\x53\xac\xd3\x8c\x66\x99\x16\x8e\xef\x25\xd4\x02\x9c\xcf\x3a\x82\x2d\xa7\x0c\xd7\xef\x3b\xfc\xb9\xbe\x26\x52\xc5\xc7\x95\x96\xdd\x2b\x0b\x9d\xd1\xf7\x48\x46\xae\xae\x3a\x6a\x7f\x58\x89\x50\x4c\x4d\xfe\xbd\x74\xfa\x84\xdc\xac\x21\x3a\x90\xe2\xe6\x56\xc7\x5f\x27\xd4\x67\x77\xdc\x86\x8d\x99\xd7\x84\xd0\x6d\x2e\x74\x0c\x77\x81\x30\x53\x5c\x8e\x82\x96\xde\x60\x06\x82\xfa\xe1\xba\xb2\x3f\xca\xcf\x3b\x76\xdd\x9c\x5f\xf7\xa9\xc8\x9d\xa0\xdc\x15\x31\xb5\xb8\x5f\x1c\x5c\xf1\xcd\x2b\x1d\x21\xb7\xde\x3b\xb6\xa2\xff\x64\x67\x78\xc5\xa7\x6f\x5e\xbd\x13\xd4\x5b\x31\x00\x42\xef\xdf\x45\xfb\xdb\x9d\x7d\xbd\xe6\x73\xfa\xe5\xfd\x89\x51\xcf\xf7\x3d\xea\x8e\x9e\x24\x38\x5f\x68\x59\xfc\x3b\xe2\xf9\x75\xa2\x0f\xb6\x2a\xd6\x37\x4c\xc2\xee\x4e\x59\x3c\xc0\x28\x8e\x21\x7b\x63\x4f\x0d\x88\x1a\x77\x19\xe4\x46\xda\xdb\xe8\x79\x09\xb9\xe5\xeb\x6f\x8e\x63\x2b\xfb\xce\xeb\xa5\xbc\x5e\x1d\xd7\xe5\xa2\xdb\x85\xab\x02\xdb\xd1\xa4\x03\xef\xab\xc3\x14\xc9\x5c\x55\xbf\xd1\x3b\xfa\x73\x64\x35\xfd\xba\xff\x28\xf2\x35\xd8\xac\xec\x7f\x4d\xcb\xd9\xf2\xb8\xea\xef\xe0\x2a\x61\x71\x66\xdf\x2d\xcb\x7a\xd9\xfb\xb2\x5a\x1c\x37\x6c\x45\x77\x4c\x6d\xc5\xbb\xb6\xe9\xf6\xdd\x75\xd3\xdf\x2d\x30\x8d\xc7\xc0\x92\xf5\xd6\x11\xb4\x9c\x73\x96\xc0\x2f\x5b\xa1\x61\x97\xbc\x01\x26\x24\x7e\x7f\xcd\xe7\xea\x26\xd6\x0f\x79\x30\x46\x9b\xf1\xd5\xf1\x82\x8b\xe3\x46\xb4\xf3\xa6\xf6\x87\x77\xc4\xd7\xf8\x23\xbe\xc1\x57\xf8\x12\x5f\xe0\x4f\xf8\x33\x3e\xc3\x6f\xf0\x5b\xfc\x04\x3f\xc6\x1f\xf0\xab\x3e\x8f\xc4\x9f\xbc\xee\xdf\xba\x20\x66\x3e\x77\x7b\x36\xa4\x5b\x08\x14\xf8\x2e\x6d\xa7\xc5\x6c\x6e\xd6\xe6\xfe\x76\x5a\x81\xa7\x7f\xa3\x8d\x64\x09\x2b\xb8\x89\x75\x84\x9b\xd8\x30\x8d\x34\x2d\x93\xea\x90\xb9\x1a\x5f\x97\x15\xcb\x50\xfc\x05\x6e\x46\x73\x1d\x74\x9e\xce\x1d\x2f\x0e\xc1\x7a\xf2\x13\xfc\xca\x99\xa6\xe5\x0d\xc2\xcd\x48\xdb\x73\x00\x53\xfe\xa4\x9c\x2d\x29\xd1\x66\x6e\xf0\x3b\x7f\x40\xbf\xc5\x29\x63\x59\x30\x22\x16\x84\x8e\x6a\xde\x88\x19\x05\xaf\x5f\x6d\xec\x5b\x69\x5b\x1e\x3d\x56\xd7\x39\xc4\x26\xc2\xb7\xba\xf6\x58\x6c\x11\xe6\xa4\x0a\xc2\x8f\x34\xa4\x32\x86\x2a\xea\xdc\xe6\x9b\x4d\x83\x02\x13\xf9\xba\x37\x26\x43\x2e\x31\xc7\x0d\x36\x37\x40\x93\xe4\x6b\x7b\xef\x21\x8b\xc1\xa0\x19\x5d\x18\xb9\xd4\x4b\x3e\x83\xe0\x98\x1f\x9a\xb5\x62\xe3\x72\x7d\x05\xd8\x6c\xa4\x97\x61\x72\xef\x4f\xc4\xd0\x30\xdb\x64\xc3\x6a\x0b\xb0\xb4\x4c\x6a\x17\x92\xa7\x29\x48\xc2\x78\x6c\x24\x2b\x3f\x22\x9b\xda\xc2\xd6\x0f\xb2\x69\x1b\xf6\x64\x62\x7f\xe4\x79\x2e\xc9\x2d\x65\x1f\xc7\xcd\x16\x39\x14\x22\x0c\xab\x1b\x9c\x48\x43\xc2\x75\x28\x5a\x1d\xc6\x33\x13\x7a\x66\x72\x54\xcd\xf5\xe4\x8c\x9f\x8e\x48\x4c\xee\x04\x27\xec\x69\x7a\x11\xc9\x05\xbc\x57\x35\x68\x2e\x23\x93\x19\xd3\x8b\xb1\x51\xca\x19\x98\x54\xa6\xa6\xa1\x4e\xca\x1d\xc3\x97\x7a\xf8\x14\x86\xbf\x4d\x8d\x8f\xda\x99\x5d\x36\xd5\x4a\xbe\x60\xaf\x2c\x7d\x22\xb7\x9a\x40\x8d\xd5\xf8\x3e\xb8\xd8\xce\xbe\xe6\x73\x4d\xe9\xc8\x6d\xb5\x18\x7f\x1e\x55\x6c\x55\x31\xfa\x62\x81\xcd\x57\x1f\xfd\x4d\x01\x0e\x88\xf1\x95\x2b\x50\x1c\xc7\x85\x7b\x52\x44\x7e\xfc\xc9\x3d\xae\xf8\xd5\xf8\xcc\x3d\x5d\x37\x72\xfc\xc6\x3d\x65\x01\x65\xae\xb3\xf1\x5b\xf7\xc2\x52\xe3\xf1\x13\x57\x64\xe8\xef\xf8\x71\x50\xa2\x4e\x0b\x37\xd4\xf7\xf0\x88\x33\x73\x3e\x8e\xd7\xbe\x9b\x63\x7b\x68\x8d\x2f\x83\xc2\xe0\xd4\x1d\xcf\x83\xf2\xf6\x49\x3b\xbe\x0e\x5e\xfa\xd3\x7c\xbc\x0c\x8a\xaf\xa8\x3c\x36\x41\x4f\x8f\x3f\x96\x22\x1b\x83\x08\xc6\x04\xb9\xfa\xb9\x14\x5b\xdc\xa4\x0d\x4c\x19\xa6\x08\xb3\xae\x9d\x72\x84\x6f\x8a\xbc\x82\xfd\x16\x8b\x02\x6f\xea\x73\xe5\x19\x17\xef\xcf\x5f\xf6\x04\xa6\x09\x3f\xe8\x21\x05\xfd\x7e\x43\x7d\xb4\x83\x62\xd9\x1a\xcb\x75\x39\x13\x3c\x0a\xf5\x6b\xf1\xb9\x5d\x27\xc8\xe4\xed\x11\xbc\x19\xad\xf9\xba\x51\xbb\xf7\x15\x54\x42\xb9\x1c\x5d\xae\xf8\xec\x43\x0d\xb0\x52\xab\x5b\x43\x00\xfb\xb0\xcf\x65\x59\xef\x34\x3f\x0e\xed\x0a\x58\xec\xd7\xb0\xdb\x6c\x39\x48\x62\x64\x68\x29\x23\x72\x74\xcd\xe7\x8d\xcd\xea\xad\x23\x03\xf7\xdb\x86\xa7\xbb\xc8\xf0\x4f\xd8\xa7\x11\x69\x9f\x50\x20\x3f\xd4\x09\x31\x28\x36\x47\x0a\x0b\xf2\x83\x8d\xb3\x21\xc3\x30\x1c\x75\xd2\x38\x37\xc9\x1c\x92\x0a\xb5\xe6\x67\x69\x21\xd9\x61\x4b\x11\x11\x75\xdd\xb9\xfd\x6c\x4c\x4d\x47\x72\x8b\x92\xb0\x73\x9e\x64\xbb\x3a\x88\x08\xab\xb1\x40\xd4\x8e\xeb\xa8\xb3\x90\x3f\x95\x42\x56\xe5\x2a\xd9\x1c\x9c\xbc\xbe\x0e\x52\xef\xf4\xba\xb4\xda\xd1\xa7\x73\xba\x29\xbd\x9e\x16\xbc\x0e\xa6\xc1\xa9\x9e\x6a\x5e\x1d\xdb\xde\xb3\xd8\x1e\xde\xe2\x40\x2e\x05\xff\x04\x3b\x13\xd2\x03\xe7\x74\x98\x1d\x56\xf5\x21\xe3\xf2\xb0\x3c\x5c\xeb\x86\xb2\xee\x2c\x35\x81\xbd\x07\xa6\x59\xc1\x76\xee\x39\x38\x93\x36\x4e\x1b\x47\xc4\x84\x5b\xcb\xc7\x73\xa1\xba\x3a\x87\x9c\xa9\x42\x6b\x6a\x33\xcd\xc3\x2a\xe6\xcf\x71\x2b\x11\x5e\x6d\xd1\x66\xb3\xf3\x33\x94\x04\x75\x72\x3e\xd5\x22\x1c\x6d\xa0\x5b\x38\x8c\xe5\x1f\x6e\x71\x6f\x3c\xeb\x46\xb1\x50\xa4\xe5\x60\xe7\xee\x33\x49\xc5\x3a\x73\x57\x8b\x55\xd9\xbe\x2a\xa3\x41\x8e\x9d\xbd\x02\x38\xb0\xc1\x20\x0d\x8a\xcd\xe6\x56\x83\x23\xfd\xa1\xda\xbf\x3e\x76\x2f\x37\x51\x8c\xad\x2a\x5f\x8f\xc6\xfa\x8a\x95\x64\x31\x0a\xcb\x9d\xe5\x33\x44\xf5\x05\x43\x00\xdf\x40\xfc\xe9\x4e\x0c\xd3\xa3\xc9\xd0\x81\xea\x00\x44\xd0\xdf\x97\x35\x9d\xb7\x3a\xd9\x76\xc1\x2e\x83\x5c\x5b\x86\xd3\xe2\x58\xe1\xbb\x73\xf5\x40\xdb\x0e\xd6\x5a\x06\x22\x71\xc2\x1c\x45\x68\xe8\x38\x8d\x82\x4e\x53\xe8\x92\x6c\xc8\x1b\x41\xa7\x9a\x51\x30\xf6\xd6\x2a\xbb\xf7\x9d\xbd\x88\xb5\x37\x9e\xe4\x4f\x38\x9b\x1b\xf9\x7c\x22\x68\xb8\x3f\x2f\x17\xa3\x54\x4d\x0b\xa9\xf6\xf9\x6b\x25\x07\xdd\x08\xb0\x0e\xb5\x67\x21\x6a\xb7\xc9\x9e\x4d\xec\x64\x32\x81\x76\xa1\x03\x87\xb1\x8e\xc5\x12\xbb\xf4\xd0\xbb\x5b\x09\xae\x65\xaa\x99\x74\xcf\x3a\x0e\xde\xef\xec\x38\x6e\x64\x67\xbf\xf3\x6a\x6e\xd2\x86\xb5\xbc\xe2\xcd\xbd\x2e\x6f\xd5\xbf\xa4\x57\x15\xeb\x44\x97\xa9\x18\x58\x43\x68\xb6\x94\x1c\x9d\x44\x81\x62\xe0\x93\x80\xc7\x88\x1b\x9c\xf1\xeb\xeb\x4a\x76\xd8\x14\x2c\xac\x23\x41\xe7\x7a\xa9\x95\x82\x3d\x2f\xd5\xdd\x53\x2b\x0c\x45\x68\x2f\x27\x0a\x39\xf5\x53\x02\x19\x2b\xed\x0c\x22\x1c\x23\xc4\x30\x59\xdd\x24\xa7\x77\xaa\x36\xe4\x36\x17\xa3\x20\xc1\x6d\x28\xe7\x7f\x97\x12\xde\x19\x02\x71\xb7\x03\xd2\x2e\x8f\xa2\x3d\x34\x46\x21\x71\x23\x74\x74\x7e\xf6\xe4\xcd\xab\x9f\xde\xbf\x3b\x0b\xfc\x7c\x30\x1d\x2d\xdb\xc7\x44\xc4\xdb\x96\x6a\x63\x19\xf5\x60\xbb\x09\xb0\x3b\xf6\xce\x3c\xe1\xbb\x4c\x5d\xb6\xc5\xe8\x99\x28\xaf\xe9\x27\x2e\x3e\xb4\xb3\x6e\x1a\x7a\x6a\x83\xc7\xfd\x0e\x17\x97\x2a\xe5\xd7\xb2\xc5\x82\x1a\xd9\x7f\xc7\xcd\xa4\x72\x6e\x26\xdb\x2d\x3a\xe0\x6d\xaf\x87\x88\xd0\x43\xcc\x47\xa3\xd0\x69\xc1\x73\x77\xf0\x09\xd3\xb9\x8b\xd6\x14\x37\xab\xb6\x45\x54\x6e\xe1\x10\xbc\x48\x9c\x58\xe4\x28\x99\x5e\xa7\x7d\x39\x89\xd3\xcb\xb5\x93\xc9\xf0\x7e\x8c\xf4\xc2\xd2\xae\x44\xb9\x8d\x84\x7b\xbb\xae\xf5\x09\xc2\x7c\x52\x4d\x75\x0d\x71\x1a\x5a\xcc\x88\x30\x2e\xe1\x15\xb1\xfb\x16\x73\x1f\xa7\xed\x20\xb0\x5f\xe4\x93\xea\xd1\xe9\x44\x76\x33\x8b\x41\x13\xa7\x2e\xea\x12\x02\x3d\xc7\x18\x8c\xe8\xd4\x37\x0f\x7a\xbf\x79\xd0\xfe\x86\x6f\x13\x89\xef\xc3\xa3\x5a\x21\x9f\x18\x01\x1d\x66\xe5\xaa\x75\xc8\xe7\xac\x75\x7a\xef\x82\x7d\x20\x89\xee\xc2\x7f\x6f\xb9\xb7\xae\x60\x72\x34\xdc\x7b\x31\x64\xb4\x18\x7a\x21\x0e\xa2\x99\xbe\x2d\x17\x54\xc3\x2e\x97\xde\x35\x3d\x09\x24\x11\xdf\x92\x77\x00\x49\xec\x0d\xa4\x50\x16\x7f\x0f\x28\xc5\x80\xe8\x03\x83\x08\xb2\x40\x3b\xdf\x1a\xc5\x23\x77\x60\x62\x67\x3e\xc9\xbc\x57\xd0\x38\x0b\x55\xb2\x69\x90\xb0\x3d\x41\x22\x30\xdb\x1b\x24\x1d\xd5\xc3\xff\x0d\xbb\xd7\x02\xc8\x1a\xc9\x8f\xc0\x78\x8b\x15\xcc\x1b\x98\xc0\x09\x11\xed\xd3\x78\x6f\x27\xf6\x68\x85\xc6\x7c\xb3\xd1\xaf\x0d\x12\x72\x34\xce\x7a\x80\xfd\x27\x6c\x52\xab\x44\xd8\xf3\xe8\xde\x5f\xcd\x76\x4f\x57\xe0\xce\x59\xff\xf8\x09\x24\xfc\xa7\xa3\x17\xaf\x7f\x7e\xf3\xe3\x99\x3f\xde\xd3\xfb\x52\x1f\xe8\xc6\x95\x1c\xb2\x7e\x04\x18\xee\x60\x11\xe6\x5a\x59\x90\x59\x71\x32\xc5\x6b\x32\x2b\x4e\xa7\x78\x49\x66\xc6\xb0\xe9\x01\xc2\x73\xb2\x1e\x5d\xac\x8d\x2e\xf4\x47\x7a\x83\xaf\x49\xa5\xf3\x4e\x58\x7b\xe7\x49\xa5\xed\xaf\xec\xf3\x78\x81\x3f\x26\x2f\xda\xe6\xee\xe6\xec\x86\x4e\x20\x79\x42\xca\x6f\x72\x8f\x74\x3e\x36\xcb\x0b\x45\x5b\x6b\xe1\x64\xf3\xc5\x40\x4a\xca\xb6\x6c\x58\xe1\x72\x2b\x4e\x9f\x18\x0c\xa2\xb1\xc8\xe2\x64\x4a\x4c\x9c\x56\x89\xe0\x11\xe2\xe6\xcb\x6d\xf8\x49\x35\x49\x0c\xac\xca\x15\x79\x41\xdb\xb1\xd8\x6c\xaa\xcd\xa6\xd9\xe6\x06\x48\xda\x8e\x01\x92\xab\x03\x90\xcc\x33\x5e\x22\x7c\x13\xe7\x3a\xcd\x6f\x48\x42\x3e\xbf\x2e\xca\xe9\x64\x95\xaf\xf1\x1a\xab\x9f\xf8\x23\x9e\x83\x4d\xac\x1c\x55\x35\x28\x86\x50\x7e\xad\x5d\x33\x82\x92\x35\x9a\xac\xf2\x85\x0b\x6f\x7a\xed\x7e\xad\xdd\x2f\x68\xa7\x8b\x7c\xa9\x1c\x8f\xa6\x64\x05\xd2\x19\x1f\x32\xd5\xfe\x52\x5f\x19\x1e\xce\x26\x42\x77\x5c\xdc\x76\x1b\x0e\x03\xaf\xa1\x5b\x54\xd4\x10\x4e\x5d\xc7\x2a\x7a\xaf\x65\xcb\x7e\xc3\xde\x18\x96\xb4\xf4\xf8\x0e\x22\x3f\xef\x26\x0e\x85\x60\x62\xee\xb6\x46\x5c\x43\x17\x66\x41\x34\xf0\x26\x12\xcd\xba\xe2\x55\x2b\x07\x37\x76\x31\x09\x9a\x78\x71\x52\x9a\x13\xb5\x32\x79\x4d\x04\x6e\x88\xfa\x8d\xc6\x3e\x79\x12\xc9\xb9\xab\x86\x54\x25\x09\x59\x2d\x4c\x06\x61\x85\x76\xe6\x67\x21\xd4\x77\x41\xe3\x84\x0f\x06\x79\x4d\xa8\x6a\x34\xca\x0a\xac\xcd\x34\x1d\x68\x2d\xf3\x24\x89\xb6\xa1\xa4\x08\x0b\x72\xf2\x50\x7c\x47\x1f\x8a\xe1\x10\xc9\x42\x4c\x7d\xe5\x42\x4c\x0f\xac\x25\xa8\xc0\x9c\xdc\x1a\xbf\x3d\x60\xb8\xeb\xb1\xc4\xab\xf2\x92\xae\xc6\x9e\xd8\xcd\x56\xbc\x6e\x04\x3d\x36\x14\x31\xca\x62\x7c\x97\xb1\xbd\x26\x79\x96\x96\xf2\xae\xe3\xc7\x21\x83\xe4\xca\xff\xe4\x15\x33\x78\x03\x05\xb8\xa8\x71\x33\xb5\xdb\xba\xca\x25\x42\x68\x8b\xb6\x3b\x29\x76\x4f\xc0\x87\x2f\xb2\x93\x48\x93\xec\xbd\x6d\x21\xf6\x0e\xf3\xd0\xcd\x1c\xa8\x81\xed\xee\xb6\x89\xe4\x80\xa9\xf3\x2f\xe0\xc0\x5c\xec\x94\x30\xb3\x96\xc0\x10\x97\xdf\xec\x26\xb5\x57\xfa\x3b\xea\xd1\x47\x1b\x92\xf0\x65\xf1\x05\x11\xc2\x65\x22\x18\x94\x0f\x32\x38\xa7\x8b\x73\xba\x20\x25\xe6\x90\x27\xae\x54\x7f\x31\xd7\x91\x41\x04\xe6\xa0\x8e\x23\x0c\x73\x13\x18\x88\x8f\x56\x65\xdd\x8d\x79\x63\xca\x41\x9b\x62\x4b\xee\xa7\xee\x89\x40\xa9\x88\x92\x2d\xeb\x08\x30\xe0\xd6\xd7\xb1\x16\x86\x3b\x1d\xa4\xba\xf0\x41\x11\xce\xe9\x02\x9b\x74\x47\x94\x7d\xb4\x7a\x07\x35\x23\x9b\xd5\x3f\x9e\x8c\x4d\xea\x6f\xa7\x82\x57\xc4\xd3\xda\x59\x20\xf5\x5c\x0d\x06\x2b\x42\x88\xd3\x66\x43\xa6\xb5\xe8\x53\xb2\xc2\x9d\x2c\x6e\x2b\x34\x23\xac\x47\x35\x92\xaf\x70\x89\xbc\x54\x14\x54\xa6\x55\x4a\xbd\x83\xf2\x15\x8a\xb2\xb9\xcd\xc8\x0a\xec\x19\x16\xc9\xd3\x3e\x51\x86\x19\xe4\xf8\x31\x89\x41\x9a\xbd\xf3\xd2\xad\xe2\x5c\x73\x41\xda\x3f\xcd\xa6\x9c\xa2\x83\x26\xcc\x35\x03\x7a\xdb\x5d\x09\x35\x51\x2e\x0d\x77\xb4\xc2\x0d\x32\xf1\x50\x6e\x41\xe7\x60\x61\x77\x64\x61\xd7\x0c\x06\x8d\xe3\x12\xac\x61\xba\xcb\x02\x67\x5f\xe1\x95\xcb\x02\xc7\xc8\xc9\x43\xf6\x9d\x78\xc8\x86\x43\x54\x92\xa6\x60\x53\x3c\x2b\xca\x29\x59\x15\x6c\x7a\x60\xab\x91\x13\x03\x3a\xc8\xb5\x03\x63\xd9\x6c\x6e\xb7\x78\xad\x0b\xfc\x6c\x37\x9b\x42\x71\x64\xde\x5a\x5e\x77\x5d\x7e\xce\xd7\x9d\xae\xd1\xc1\x12\x58\xf2\x99\x8d\xdc\xb4\xc4\xc5\x09\xb6\xf5\x1c\x6d\x5d\x23\x84\x53\x15\x57\xed\x8a\x2b\x64\xe3\xaa\xc0\xf9\x1a\xa4\xa9\x5b\xe0\x19\x96\x41\x9a\xba\x1d\x19\xee\xe6\xdb\x6d\x98\x77\xde\x84\x28\xec\xb5\xbf\x30\x76\x15\x6d\xd4\x08\x02\x24\xaa\x9d\x99\xcf\x30\xf5\x09\xcd\xbb\xfb\x89\x2c\xf0\x02\x84\x77\xa5\x36\x17\xf0\xfc\x45\xd2\xe2\xae\x6d\x7f\x75\x87\x69\xe4\x1f\x79\xcf\xf2\x32\x1f\x8f\xe0\xf6\x7a\xa5\xb8\x60\x39\x72\x57\xc0\x77\xf4\xb3\x84\xf4\xde\x08\x0e\xcf\x3c\xcb\x7a\xee\xe6\x7f\xc2\xdd\xc8\x99\x9e\x75\xcf\xd9\x94\xc8\xb2\x73\xc8\x55\xf5\x59\x39\x5b\xbe\x60\x49\x5d\xf9\x60\x40\x0b\x31\xdd\xf6\x1c\x74\xd6\xb6\x23\x36\xba\x96\x9d\x93\xc5\x63\x98\x62\x7e\x14\x83\x69\xb5\x59\x3a\x10\x85\xe5\x0e\xcf\x1e\x3f\x79\x7e\xf1\xe2\x75\xb6\x13\x13\xae\xf6\x8d\x92\xbf\x4f\x48\xa9\x5d\xe1\xe3\xee\x7f\x1b\xdc\xb9\xe0\x65\x3f\x7c\x70\xbb\xe8\x14\x39\x56\x3b\xc9\x00\x94\xf9\xef\x88\xff\x87\xd0\x41\x69\x2c\xa3\x3c\x9f\x51\xe1\x72\xb4\x2e\xe5\xd2\x97\x70\x5c\xc2\xd6\xfd\xa9\x94\x4b\x1d\x86\xa8\x1c\x55\x8c\x05\x58\x4a\xd8\xe8\xf5\xfb\x97\x2f\x2f\xce\xcf\x9e\x9d\x9d\x9f\xbd\x7e\x72\x66\xf8\x19\x53\xef\x5d\x79\x45\xc4\x08\x34\x21\x46\x3e\x6c\x21\x20\x46\x4f\xde\xbc\x7e\xfb\xee\xf1\xeb\x77\x17\xef\x1e\xff\x10\x84\x81\x6b\x67\xa5\x45\x79\x51\x19\xe6\x43\xfd\xad\xa7\xa8\x2f\x0a\x61\x09\x46\x04\x29\x16\xc2\x20\x69\x68\x77\xe4\xae\x63\x12\x4d\x72\xe6\xcf\xf3\x50\x6a\x62\x62\xfa\x98\xa9\x3e\x13\xfc\xfa\xa7\x52\xa8\x9e\x28\x66\x08\x8d\x8d\x90\x1e\xf4\x57\xe5\x1e\xbc\x88\xe5\x40\x2c\x44\xad\xc2\x36\x86\x28\xe6\x41\xe9\xbb\xf2\xca\xb2\x27\x6e\x1d\xe0\x29\x5a\xa7\xf6\xd5\xb9\x34\xee\xcd\xce\xa3\xa9\x1c\x0c\x4c\xa2\xcd\xd2\x64\x95\x2c\x27\x79\x78\x21\xa2\x2e\xa3\x2c\x9a\x18\x47\xbf\xd4\xbc\xb5\x8f\x50\x8c\x36\xb8\x0c\x40\x86\xc6\x19\x6b\xd4\x3e\x02\xd9\x1d\x5c\xf5\x53\xdf\xe8\xdb\x76\x36\x2c\x75\x36\x2d\x35\x53\x13\xab\x33\x87\xb5\x46\x68\x9c\x57\x1d\xd4\x6a\x57\x6d\xa1\x10\xc2\x09\x68\x92\x0a\x61\x97\xb9\x34\x5a\xa6\x82\xdb\xd8\x51\xd1\xfe\xd2\x77\x55\xeb\x24\xd6\x19\xb8\xe5\xfa\xfa\x17\x01\xa2\x3e\x95\xdb\x9c\xdf\xeb\x6c\xd3\x06\xc0\x9e\xa4\x4d\x23\x0b\xb6\xfb\xd0\x18\xd9\x0e\x52\xb8\xf3\xe4\x08\x6c\x8b\xef\x49\x4f\x53\xb7\xb4\x7b\x11\xcf\xee\x29\x64\x0c\xeb\x7a\xec\x40\x3c\x79\xf4\xb7\x14\x47\x4c\x34\x0d\x35\x42\x4d\x6c\x14\x0a\x48\xa7\x55\xf7\x36\x70\xbf\xb3\xe5\x07\xae\x07\x43\x9a\x79\xaf\xad\xf0\xef\x09\xce\x1a\x06\x63\xbd\x14\x25\x9b\x2d\xf7\x26\xa3\x38\x49\x3f\x21\x9f\x0e\x0e\x1a\x9b\x02\x9d\xe4\x6c\x0e\xa1\x5d\xa5\x68\xe4\xf2\x06\xc8\xff\xa2\x5c\xd5\x37\x8a\xec\xdf\xfb\x92\xe6\x66\x5b\xdd\x61\x2b\x90\x24\xc2\x25\x9a\x94\x4e\xb0\x2f\xc7\x7c\xac\x6f\x7a\x25\x34\x7c\x9f\x9b\x9e\x9a\x94\x6f\x08\x02\xc9\xc3\xec\xb4\x7b\x23\x4c\x2f\x62\x4c\x1d\x48\x62\xd2\x02\xc9\x06\x10\xf6\x12\x4d\xc5\xad\x56\xf7\xda\xd1\x2b\x3e\xdb\xa5\x27\xb1\x9a\xe8\x96\x9a\xe0\x0e\xee\xd4\xef\x7d\x58\x19\xdd\x08\x4a\x09\x63\x85\x15\xe1\xaf\xf8\xcc\x0a\x72\xd4\x01\xae\x06\xbd\x7b\xd8\x57\x5f\xa4\x04\x9b\x71\x56\xf3\xd5\x9d\x13\xb8\x4b\xef\x75\xe0\x7d\x2c\x57\xfc\x2a\x1c\xf8\xff\x80\xca\x0b\x5c\x27\xee\x0a\x65\xf6\x85\xb9\x96\x5a\x6a\x8d\xfd\x08\x64\xfd\xaa\x91\x44\xd1\x8a\x86\xbd\x6a\x92\x29\xf2\x69\x51\x4e\x37\x1b\xba\x9b\x5b\x8f\x69\x9e\x91\xfc\x54\x8b\xbc\xce\x05\xf2\xb6\x7c\xda\xd9\x21\xe6\xeb\x85\x77\x64\x50\x97\x66\x81\x9b\xa2\x32\x72\xe0\x29\x11\x05\xb3\x47\x2a\x6e\x0a\x0e\x5c\x7e\xb3\x0d\x23\x96\x38\x2e\xff\xd5\xfb\x77\x3e\x40\x89\x2b\x7d\xfb\xe6\xfd\xf9\x93\xb3\x50\x32\x5c\xb7\x2f\x22\x7c\xba\x73\xc5\x22\x87\x96\xbb\x56\xae\x9d\xd5\xe1\x77\xa8\x85\xfa\xb0\x9c\x6b\x33\x9e\x00\xbf\x43\xff\x84\xb9\x4f\x8c\x17\x38\x7a\xbb\xe0\xe9\xc6\xcf\x1b\xe4\xba\xc1\xed\x3e\xd8\x08\x7b\xdd\x30\xab\xde\xad\xc0\xdb\x37\xcc\x83\x5e\xc0\x7a\x2f\xa0\xdf\xa1\x20\x0f\xf7\xd5\xde\x84\x2e\x56\xe1\x9a\x8c\x50\x0a\x6d\x60\x0f\xa0\x9c\x75\xaf\x9a\x98\xb7\xd0\xb6\xf2\x82\xcd\x42\x3a\xb6\xcf\x09\x24\x77\x61\x94\xf3\x6e\xba\x0b\x9b\xbe\x54\xe0\x70\xc7\x0a\x8a\x8e\x0e\xa6\xff\x0e\xe9\x11\x23\x35\x23\x13\x86\xef\xae\x23\xa9\xd7\x5d\xcb\x7b\x64\xeb\xa8\xd3\x3d\xaf\xfb\x85\xf4\x61\x0c\xd2\xfd\x1c\xcd\xf7\x0a\x09\xb0\x47\x38\xca\xbd\xbd\xce\x5b\xa7\x72\xd2\xe7\x73\x97\xd5\x47\xfb\xa5\x36\x7b\x4f\xb4\x68\xa1\x75\x21\xb4\x61\x71\xc2\x7d\x93\xca\x66\x7d\xdc\xfb\x1a\x9c\x84\xf7\xf3\xf8\xfc\x92\xb4\x7e\x69\x97\xbb\x7d\xfd\x8a\x8d\x12\x70\x5f\x87\x5f\x5d\x7d\xa7\x8f\xef\x39\xe7\xce\x78\x7f\x6f\xc7\x5e\xeb\xc9\xb3\xab\x61\x79\xbf\x46\xd9\x5e\x8d\x3e\x71\x78\xbe\x57\xa3\xd5\x5e\x8d\xbe\xa3\x9f\xe5\x33\xbd\x2f\xf6\x6a\x95\xef\xdd\xea\x63\xd8\x47\x7b\x35\x5a\xee\xd5\x68\x1c\x15\x64\xbf\x96\xeb\xfd\x20\x7b\xcf\x56\x9b\xbd\x5a\x7d\x6e\xb6\xfd\x5e\x4d\xae\xf6\x6a\x72\x79\xbf\x26\x75\xf5\x9d\x2d\x9e\x85\x44\x68\xaf\x66\x67\x7b\x8d\xd4\x9b\x95\xed\xd9\xec\x22\xb0\x44\xdb\xd9\x32\xad\x67\xe5\x9a\x9e\x7d\x5e\x0b\x5a\xd7\xfb\x7b\xe4\x2f\x46\xed\x0f\x77\x43\x5a\x5e\xaf\xde\x82\xed\xde\x9e\xad\xdb\x0f\x76\xb6\x5a\xd5\xcf\xdf\xbd\x7a\x79\xaf\x76\xfd\x27\x3b\x5b\xbe\xb8\xa2\xf2\x0b\x60\x1e\x7d\xb5\x9b\x56\xba\x43\x67\xaf\xa6\xd7\x23\xfb\xc1\xce\x56\x5f\x30\x2a\xe4\xbd\x9b\x8e\xbe\xba\xa3\x7d\x67\x4f\xff\x05\xbd\x74\xbe\xdd\xbd\x04\x82\xd6\xd4\x0d\x6b\xdf\xe0\x17\xeb\x51\xeb\xbb\x9d\x7d\x04\xde\x66\x7b\xb6\xbf\x0c\x3d\xd4\x76\xb6\x5d\x7f\x41\xdb\xf5\x9e\x6d\x2f\xcb\xfa\xde\x6d\x07\xdf\xec\x0b\x93\x7d\x81\x1e\x01\x65\x37\xc4\xeb\x2f\x69\xbd\xbe\x47\xeb\xcd\x5a\x27\x5e\x3f\x77\x4c\xd9\x5e\x9d\xcc\x47\x89\x6f\xef\xee\xeb\xb1\x4f\x38\xfe\x65\x1d\x26\x1a\xb8\x2b\x66\xcb\xfd\xa2\xc1\x5c\xef\x1b\x0d\xe6\xf7\x45\x68\xb9\xde\x11\xa1\xe5\xcf\x88\x40\x73\xdd\x13\x81\xa6\x9f\xdf\x35\x5c\x3c\x15\xda\x4b\x77\xcf\x7e\x3e\x8e\xe2\xcf\x76\x93\x2c\xfa\x79\x4d\x45\xa5\x4e\xff\x72\x75\xcf\x6e\xba\x9f\xee\xec\xca\x66\x74\x74\xbc\x96\x49\xea\xb8\x67\x7f\x37\x01\xd7\x91\xba\x87\x76\xe3\x82\xdc\x2f\x5b\xc0\x3e\x41\x72\xf6\x90\xae\xa5\x2c\x79\xa1\x8a\x49\xf6\x6d\x9e\x8c\xcf\x49\x94\xc2\xab\xc8\xca\x95\xba\x08\x42\x90\xbf\x0c\x67\x6a\x7c\x19\xce\x66\x12\x62\x98\xd4\xe4\x9b\xff\x82\xf8\xf3\x9b\x6b\xde\xd4\x74\x23\x79\x33\x5b\x7e\xe3\xf3\x65\x86\xcd\xde\x5a\x0c\xa0\x73\x5d\x5e\x8f\x2b\x53\xc3\x00\x7d\xd4\xa9\x81\x6d\x89\x7e\xee\x46\x73\x24\xd4\x18\x30\xbe\x70\x02\xa6\x3b\x1b\x2d\xe4\x94\x50\x2c\xb7\xb8\x61\xf7\x69\x7e\x4e\x57\x54\xd2\xbd\x9a\xdf\x6e\xf1\x8a\xc4\x30\xee\x71\xe4\x69\xa7\x38\xd5\x86\x5a\x3a\x42\x97\x75\xeb\xb1\x23\x20\x32\x7c\x36\x39\x71\x83\x92\xc7\xe2\xaa\x26\x4c\x97\x80\xc8\x0d\x0a\x2a\xa3\xbf\x73\xf2\x13\xc2\x8d\xf2\xf0\x5a\x91\xcc\x4a\xea\xc4\x41\xa4\x34\x69\x77\xf8\x35\x31\x91\xfe\x5d\x26\x00\x62\x83\xb0\x9f\xd9\x92\x74\x36\xf8\xb0\x46\x8f\xa3\x90\x1f\x98\xc9\x66\xce\x32\x27\xca\xd9\x6c\x4c\x2e\x83\x38\xed\xbb\xcb\x6a\x04\xd3\x49\x28\x9a\xbd\x45\x52\x0b\x18\xd6\x1a\x29\x88\x2c\x9a\xae\x01\x71\x46\x65\x41\xa7\xa4\xf5\xbe\xa0\xd3\xb6\xc2\x59\x76\x46\x67\x00\x98\x56\xd2\xc4\x50\xb6\x6a\x71\x07\x05\xd7\x6a\xcb\x92\x5d\xc6\x96\xec\x76\x10\xe3\x40\x4b\x43\x23\x0f\x5d\x36\x5f\xf5\x3a\xd5\x5a\x03\x40\x8f\x38\xd6\xca\xcf\x8d\x03\xaf\x48\xa3\xbb\x74\xe1\xbe\xf1\xcc\x16\x75\x42\x8e\x2f\xec\x9b\x72\xb5\xe2\x9f\xe8\xfc\x47\x7a\x53\x43\x0e\x2e\x8b\x28\x7a\xb6\xde\xd5\x22\x21\x97\x3f\xf0\x71\x5d\x65\x14\xd0\xf5\xb6\x5a\xe4\xf5\x48\xd2\x5a\xe6\x14\xc2\xce\x05\x41\x7d\x13\xf1\xd2\x0f\x24\xc9\xb2\x6d\xb5\xc8\x25\x64\x8a\xf9\xfc\x66\x91\x67\x25\xbb\xc9\xd0\x23\x72\xe2\x63\xa9\x6b\x63\xb9\x93\x87\xe2\xbb\xd2\xae\xb9\xd0\xb1\x65\x69\x51\x16\x62\x3a\xcc\x7e\xa4\x37\xd9\x74\x30\x38\x86\xc8\xd0\xae\x29\xf5\x0e\x25\x62\xcc\xe6\x14\x3b\x7b\x72\xb4\xd9\xe8\x30\xeb\x33\x5b\xa2\x9d\x64\xe3\xe8\xea\x3a\xb8\xfa\x2a\xac\xd2\x0d\xa6\xae\xad\x11\x1a\x16\xa8\xb9\x1c\x36\xc5\x1b\x21\x47\xb8\x22\xb7\x60\x35\x4d\x6d\xf6\x93\x35\x18\xba\xe9\x68\x7b\x07\xde\x96\xdb\x19\x10\xb2\x82\x5b\x05\xc6\x24\xf5\x7a\x92\x57\x3a\x23\x26\xc3\xeb\x51\x4d\xd9\x7c\xb2\x57\x50\xf3\xd8\xce\xba\x0a\xed\xac\x75\x33\x46\xb5\xb5\xc6\x05\x9b\x7a\x6f\x09\xb4\x35\x31\xb5\x7f\x4f\xfb\xaa\x45\xdb\x3a\x45\x5b\xf4\xfb\x9b\x64\x51\x7b\xbf\xbf\x39\x0f\x73\xab\xe1\xb3\x7a\xc9\xa3\xd3\xd6\x2e\x9e\xb7\xfd\xa2\xd1\x6d\x33\x6a\x1f\x52\xd6\xa5\x99\x6e\xc1\x20\x37\x7d\xae\xf8\xf0\x8d\xbb\x5c\x38\x23\x97\x03\xb0\x07\x0e\xd3\x3d\x92\xda\xf9\xed\x84\xc7\x07\x5e\x58\x65\xc2\xda\xfe\x58\x5a\x96\x61\xe6\x02\xf1\x0e\x06\xf9\x82\xcc\x8c\x41\x41\xbe\xd4\x3f\x4f\x11\x0a\x30\x70\x4d\x96\xe3\x7c\x19\xbb\xf4\xac\xc9\xd2\xed\x2a\x6b\xf1\x59\x4c\x61\xf7\x96\xe4\xc1\xc3\xf2\x3b\xdb\xc3\xc3\x72\x38\x44\xf3\xd1\xba\xa9\x97\x39\xb4\x5d\x9a\xfa\xd7\xda\x6f\xa6\x81\x84\xf0\x91\xa9\xe7\x2a\xa7\xe0\xf9\x31\xc7\x0d\xc8\x7a\xab\x16\xf4\x2b\xed\x3c\x9f\xcc\xa0\x3b\xe7\xd7\x10\x52\xca\x9c\xcc\x10\xcf\xca\x31\x06\xcd\xa8\xb5\x42\x10\x92\xb8\xd6\xd9\xd8\x20\x3a\x6a\x2e\x70\x36\x2f\x65\x79\x1c\x23\x4a\x96\xed\x55\xf1\x38\x1b\x32\xcc\x5a\xa3\xdd\x91\xee\xb7\x6d\x5b\x77\x20\x3d\xd4\x37\x9b\x9c\x86\x0c\x84\x57\xb0\x61\x1a\x1c\xf8\xb4\x7d\xda\xb7\xcf\xbc\x3b\x92\x02\x77\xfc\x81\x67\x29\xee\xb8\x13\x14\xef\xce\x68\xbb\x8c\xcf\xe9\xb1\x0e\x03\xf2\x25\xba\x26\xab\x53\xf3\x56\xec\xa9\x30\xaa\x60\xca\xc5\xb5\x8d\x0a\xc5\xd9\x82\xf3\xcb\x52\x8c\x2f\xcb\xdf\x32\x84\xdc\x63\x46\x08\xa9\x50\x27\x00\x13\x07\xfb\xf5\xc3\x6a\x91\x67\x3a\xee\x9e\x37\x7d\x7f\x7f\xfe\x12\x31\xf2\xfe\xfc\x25\xee\x7c\x55\x7a\xab\x77\x31\x7a\xf1\xf6\xe2\xf5\x9b\xa7\x67\x9d\xe8\x1f\xd9\x13\xde\xac\xe6\x10\xe7\x62\x51\xb1\xf9\x21\x98\x95\xab\x56\x0f\xd7\xa5\xa8\x2b\x76\x75\x78\x4d\x67\xcb\x92\x55\xf5\xf5\xe1\x82\x0b\x78\xf3\xb6\x64\x95\xac\x7e\x83\xe3\x25\x43\x07\xcc\x9a\xbb\x41\xa2\x37\x94\x67\x0a\xe8\x28\x31\x9e\xed\xd6\xc4\x11\x37\x3b\xdc\x81\x2c\xd6\xf6\x5a\x8e\x7b\xb3\xc9\xab\xde\x30\xb3\xa5\x02\x5b\x35\x5a\x0a\xba\x20\x14\x57\xae\xaf\x6d\x60\xde\xe9\xb0\x17\xcc\xf9\x8d\xa7\x53\xdb\x77\x80\x42\xa8\x73\x36\x52\xd3\xa5\x39\x45\xae\x25\x84\x2d\x23\x31\xc9\xc6\xd9\x58\x26\x55\x82\x5e\x3d\xf5\x07\x18\x7f\xfd\xbe\x78\xcf\x09\x25\x95\xce\x06\xbe\x4f\xcd\xa4\x42\x32\xa1\x8e\xee\xd8\x00\xdf\xa5\xfe\xea\xec\x9f\x84\xa4\x91\xd0\x58\xca\x49\xe8\x28\xf8\x69\x22\x9d\xbd\x9d\xf1\x75\xe0\x32\xd4\x12\x24\x86\x27\xd6\xdc\xfb\x20\x1c\x68\x27\x84\x0a\x3c\xb2\x2e\xcb\xd9\x87\xcb\x46\x30\x2a\x20\xaf\x6b\xd4\xee\x8e\x8b\x94\xb9\x3e\x41\x72\x65\x73\x77\x0a\xb3\xac\x9b\xeb\x53\x2b\xd5\xba\x0f\xd0\x1f\x1d\x95\xcb\x6a\x35\x4f\x65\xce\xd7\x61\xfd\x6c\x37\x9d\x4e\x92\x5d\x74\xc9\x67\xdf\xed\x28\x68\x29\xfe\xa6\xa6\x7d\x26\x90\x89\x59\x1a\xe6\x60\x79\xe7\xa5\xd3\xa7\xc0\x5e\x56\xb5\xce\xf6\x56\x81\x8b\x05\xb7\xf9\x3f\x5f\xcc\x11\x1c\x67\xc6\x7f\x28\x84\xa1\x05\xb1\xa0\xb5\xa2\xb2\x36\x55\x01\x58\x92\x2e\x15\xa9\x3a\xa7\x8b\x55\x53\x2f\x6d\x6e\x58\x1f\x3c\xc5\x95\x5c\x08\x7a\xcd\x3f\x56\xec\x8a\x98\x6c\x3f\xe6\x5a\xc2\xd7\x70\x93\x26\xb7\xe5\xea\x53\x79\x53\x9f\x53\xeb\x42\x33\x3e\x3a\xdd\x1e\x98\x5e\x15\x3e\x75\x2f\x5d\xc2\xbc\xc9\xf5\xfc\xb0\x1d\xd8\xc1\x9c\xdf\x82\x2d\x0a\xfd\x2c\x73\xb4\xfd\xb4\xac\x56\x34\x3f\x92\xa3\x39\x67\xd4\x26\x56\x73\x73\x31\xa7\xe2\x41\xaa\x1b\xa7\x71\xb4\x19\x66\xf3\x06\x6d\xb7\x29\x1c\xaa\xea\x67\xe9\xe3\xd1\x83\x90\x10\x7a\x27\x0b\x18\xd9\x53\xeb\x01\xda\x58\x35\x94\x7d\x3c\x68\x83\xf6\xc4\x2f\x56\xb8\x24\xd0\x9d\xcf\xae\x9b\x58\x34\x33\x55\x5b\x34\x18\xe4\x39\x25\x47\x22\x8e\x45\x83\x06\x03\xa1\xe3\xeb\xe4\x8a\x77\x71\x01\x6e\x30\x55\x2f\x74\x54\x9b\x1c\x59\xf6\x54\x33\x6f\x16\xf3\xae\x3d\x99\x9f\xbb\x0b\x16\x45\x07\x73\xe3\x01\x94\x4b\x7c\x8a\xfc\xa9\xf0\x51\x71\xb1\xd6\x44\xf9\x79\x59\x43\x5a\xe4\xe8\x62\xe4\x44\xc0\xd6\x29\xca\x38\x60\xdf\x90\x93\x83\xc5\x88\xb3\x3c\x83\x91\x76\xf3\x90\x04\x02\x81\x79\x28\x02\x98\xab\xfb\xfe\x85\x0d\x6a\xe4\xd1\x2e\x57\xec\xba\x6e\x91\xb2\xf9\xfe\xed\xa9\x03\x5d\xb7\x59\xd5\x3f\xab\xb6\x72\x04\xd7\xdb\x9b\x47\xa7\x27\xe6\x7c\xbf\x21\x27\x18\xaa\x78\x50\x06\x47\x7e\xc5\xc0\x8f\x88\x1e\xea\xc5\x51\x87\x7c\xc5\xcc\xa8\x14\x8c\x74\xf6\x11\x3a\xf7\xc9\x68\x6e\x86\x43\xbc\xd0\x5e\x39\xb0\xda\x1f\xd1\xf6\x86\x58\xc0\x5c\x85\xf4\xba\x97\x38\x58\xc3\xb9\xb6\x8b\xef\xa3\x07\x83\x81\x37\xb3\x77\x2e\xbd\x0f\xa6\x93\xf0\x61\xcc\x47\x8b\x72\xb5\x52\x24\x5c\xad\x98\x95\xc6\x63\xd6\x6d\xef\xdb\x64\x7b\xdf\x4e\x07\x83\xf0\x49\x63\xf8\x85\x42\x68\x6a\xc9\x46\x60\x21\x61\x49\xd2\xc5\xc7\xa0\x37\x2b\x18\xbb\x50\x50\xad\x18\x9d\x3f\xe3\xe2\xe9\x9b\x57\x56\x3a\x76\x91\x22\x45\x9c\x9b\x60\x4e\xf0\xb8\x2a\x6b\x79\x4e\x3f\x56\x75\xc5\x19\x39\x3e\x75\x69\xce\xce\xed\x42\x9c\x43\xfd\x98\x92\xd1\xf9\xb9\x69\x25\x45\x0f\xca\xf5\x9a\xb2\xb9\x3e\x17\x14\x68\x92\xd6\x8a\x3a\x28\xf0\x3b\xbe\x7e\x49\x3f\xd2\x95\xae\x9c\xf4\x4e\x43\x70\x09\x91\xdc\x9b\xb8\x99\x7c\x9d\x17\xba\x9f\xb0\x2e\x16\x58\x76\x6e\x10\xba\xda\x3b\xde\x3b\x8c\xa6\x2f\xbb\x3f\x48\x5d\x76\x74\xd5\xea\xa8\x53\xab\x7d\x03\x75\xb6\x6e\x70\x4d\x6b\xe7\x07\x47\x26\x45\xcf\x5a\x23\x34\xdb\x6c\x66\x6d\x67\x09\x86\x70\x09\x75\x96\xb9\x45\x11\xca\x3e\x26\x90\x05\x57\x58\x60\x6e\x47\xaf\x37\x95\xea\x2e\x2f\x5b\x63\xb6\xc4\xbd\x13\x78\x2c\x4d\x1d\x5a\xdf\xea\xdb\x60\x3a\xb5\x76\xeb\x68\x3d\xe8\x22\x2f\xc8\xa7\x5b\xb7\x3d\x96\x6c\xd4\x88\xa4\x13\x4d\x74\x3b\x9a\xb6\x07\xa9\xf0\xb5\x15\x82\xed\x22\xca\x00\x97\x99\x5d\x62\xb2\x4d\x82\xc9\xf9\x8a\x96\xac\x59\x2b\x90\x3d\x53\x24\x0f\x24\x56\x5c\x11\xe8\x28\x59\x38\x05\x86\x1c\x25\xf7\xe0\x60\x40\x47\x52\x54\x57\x57\x54\xe4\x99\x0f\x06\x77\x66\xf3\x3d\x63\x75\x70\x3e\x75\x3d\x6f\x36\x51\x64\xb8\x88\x47\x8b\x06\x93\x4c\xb1\x1e\xec\x74\x64\x13\xa3\xb9\xd3\x53\x6f\x79\x2b\x1c\xd5\x4f\x96\x7a\xb3\xe3\xe3\x87\x28\x97\x44\x14\x6c\x8a\xf4\x49\x9e\x53\xa4\x2e\x20\x01\xa1\x16\xf6\xe0\x62\xf8\x14\xdd\x2d\xcb\x69\x0d\x68\xb3\xc9\x3b\xc4\xc8\x1c\xc5\x17\x6a\x6a\xe2\xf1\x6a\x05\xe4\x24\x6f\xb7\x7d\x45\xe5\xf7\xbc\x61\xf3\x3a\x75\xfd\x2f\xca\xd1\xf7\x6f\xde\xbf\x7e\xfa\x76\xea\x5c\x61\x4b\x41\x99\xcb\xca\x2d\x47\xd1\x73\x8e\xf0\xa2\x12\xb5\x7c\xcd\xe7\x74\x2c\x47\xee\x77\x8e\x30\xf8\x71\xeb\x62\xfb\x33\x47\xdb\xd6\x1a\x84\x77\xbd\x5e\x5e\x47\xed\x46\x10\x5f\x6a\x0a\xb8\xa6\x3a\xb8\x68\x9d\xa3\xd6\x65\xb1\xcd\x2a\x07\x5b\xb4\x3b\xd7\x78\x1d\x0f\x84\x96\x06\x51\x84\x4f\x09\x71\x41\xbd\x74\x7a\xac\x65\x55\x63\x23\x2d\x92\xd6\x79\x2a\x68\xbb\x0e\x38\x9c\x36\x96\x85\xd5\x12\x6c\x19\x66\xfa\x0e\x15\xa1\x94\x61\x63\x81\x08\xad\x48\xf7\x80\x70\x8e\xf4\x4e\x98\xa6\xd8\x53\x85\xa0\x8d\x63\xae\x16\xc4\x85\xd6\x98\xa9\x63\x46\xb3\x17\x91\xc6\x22\x97\x04\xe2\xbd\x7a\xf6\x6f\xb2\xb2\x93\x1c\x83\xa3\x5f\xc4\x88\x63\xfa\x88\x2c\x06\x83\x23\xa6\x30\xcf\xf2\xd8\xa3\x36\x8b\x4d\x18\xee\x7c\xa9\xbd\xae\x45\xc3\x5e\x44\xbc\x60\x2e\xb1\x09\x76\x0c\xda\x82\xd9\x66\xc3\x90\x25\x68\xd1\xf9\x29\x46\x4f\xde\x9f\x9f\x9f\x69\xc7\x1d\xe7\x3c\xd6\x38\x7e\xd1\xb0\xe3\xb3\xcd\xc6\xf1\x06\x0b\xad\xb5\x79\x68\x5d\xc1\x1f\x22\x4e\x56\x3a\x2b\x18\x2e\x49\xed\xf8\x47\x8e\x70\x6d\xb7\x61\x89\x4f\xd1\x01\x28\x11\x3a\x1b\x7a\x30\xb8\x76\x82\xd3\x9e\xc5\x0d\x23\x2e\x06\xeb\xec\x49\x49\xfb\xf0\xb7\x3b\xba\xcb\x14\x9c\x98\xdc\xda\x47\xa7\x10\xf8\xb1\x83\x6e\x8a\x5f\x26\x47\x27\x2e\xe6\x23\x75\xb4\x60\x0f\xb0\x1d\xf9\x19\xaa\x6d\x15\xb1\xe7\x36\x0f\xb1\x7a\xe1\x98\xf1\x7e\xde\x65\xdb\xda\xcd\x31\xdd\xe9\xbd\x84\x98\x0d\x17\x68\xd5\xda\x7a\xb4\x30\xf2\x65\x07\xfb\xdd\xa5\xbf\xc3\x79\xdd\xb1\x58\xdd\xa3\x37\x62\x62\x5d\x34\xd2\x37\x8a\x6f\xb0\x98\x19\xa6\x2e\x17\xee\xc3\x76\xd3\x86\x3f\xef\xbb\x97\x87\x54\x3b\x8d\x60\x9b\x4d\x67\xb5\x34\x73\xd0\x5d\xd7\x2e\x0e\xa6\xa6\x63\x17\xcd\xdc\x1b\x4c\xf6\xbd\x5d\x44\x4b\x4b\x5c\x63\xf9\x4c\xd2\x67\x4f\xe4\x41\x78\xda\x7d\xdc\xf5\x92\x81\x31\x51\xda\x6f\x4e\x60\xaa\x4e\xc6\x7d\x62\xd9\x43\x44\x12\x3a\x8a\x18\x34\x1a\x33\x32\x5a\x49\x22\x5a\x4a\xe6\xf6\x71\xa3\xa0\xd5\x12\x96\x3e\x9e\xcd\x68\x0d\x52\xd1\xff\x0e\x75\xea\xff\xed\x42\x05\x6b\xcd\x25\x24\x49\xe5\xec\xb8\xf2\xb2\xae\xc3\x40\x22\x5c\x1f\xe6\x75\x33\x5b\x1e\x96\xf5\xe1\xb3\xb2\x96\xdf\x73\x2e\xd1\x28\x53\x23\xda\xe6\xe0\x33\x97\x92\x91\xfd\xbf\x0f\xf3\x93\x3d\x60\x4e\x83\xf9\x38\x56\xd3\x73\x80\x16\x46\x29\x51\x6c\xdb\xdc\xbf\x5f\x20\x3b\xe3\x4c\x96\x15\x0b\x9c\x0a\x76\xb9\x27\xec\x21\x71\xdd\xcf\x2f\xe3\x4e\x67\x8a\x3d\x9d\x32\x76\xf8\x77\xa4\x7c\x1a\x76\xcd\xed\x4e\xef\x8a\x5d\x59\x9d\x7c\x9d\x1e\x39\xf3\x1d\xfe\x2e\x20\xe0\xee\xfb\x36\x74\x02\xbd\x8f\x8b\x45\x47\xde\xdc\x67\xc8\xd7\xba\xa4\x54\xec\x9f\x3a\xfd\x63\x9e\xd5\x54\x7c\xac\x66\x74\x6c\xc7\xd2\xc2\x8e\xb2\xc5\x6e\x42\xee\x48\xf3\xc5\x9c\x5f\x1f\x4b\x41\x29\x38\x73\x3a\xa3\x39\xb8\x7d\xf8\xf6\x43\xa0\xb3\x8f\xe1\xe7\xa9\x0e\xd5\xc7\xf6\x9a\xa6\x33\x14\xaf\x45\xf5\xb1\x94\xd5\x6f\x14\xe5\x37\x08\xbb\xf4\x22\xfd\xbd\x88\xc8\xf5\xa3\xdb\x46\xd4\x85\xfb\x10\x66\x93\xe1\x45\x8a\x1a\xf5\x7d\xa1\x36\x95\xd4\xdf\x04\xe7\x05\xc2\x2c\xa9\x10\xbb\x0f\xd4\xb5\x66\xb2\x1f\xea\x33\x63\x77\x19\x8f\x2c\x59\x05\xdf\x6a\x92\x96\x34\xcc\xb2\xfa\xa6\x48\xc7\x1b\x58\x69\xe6\x52\xfb\x86\xf5\x75\xd2\x5d\xfd\xfb\x76\x97\xa7\x80\x35\x59\xa5\x4c\x2a\xc7\xab\x3e\xc3\x4e\xa4\xc7\xa9\x78\x82\x84\xe9\x6c\x0b\xf7\xfd\x54\xd4\x96\x1c\x1f\xdb\x2d\x79\x1d\xa2\x96\xaf\xe4\x72\x1a\xb8\x8a\xcb\x1e\x1c\x8c\x9b\x0b\x3c\x85\xba\x6d\xb4\xbe\x4c\x2f\x5c\x66\xc1\x15\xaf\xbe\x29\xdb\xd5\x44\x62\x59\xee\x6e\xac\x77\xdb\x5d\x21\xbc\x4e\xc3\x66\x37\x16\xcf\x7a\xe0\x14\x7a\xfe\xed\x47\x11\xcc\x3d\xeb\x19\x17\xef\x6e\xd6\x34\xf7\xce\x32\x60\x6f\xc0\x64\x65\xd4\x1a\xf1\xe8\x4c\xae\x09\x70\xac\xff\x98\x9e\x80\xcf\xe7\x16\x06\x04\xc6\xcd\x7e\xb5\xf5\xd1\x55\xdf\x59\xd9\x1f\x97\xfc\xae\xba\xee\xd4\x2c\x93\x35\xdb\x4b\x73\x89\xb0\x73\x06\x33\x31\x26\x6e\xb4\xab\xbf\x04\x6b\x1b\x4b\x07\x5f\x42\x8e\x85\xd5\x4b\xce\x6b\x8a\xf2\x22\x40\x48\x38\xab\xa6\xb8\x5b\x84\xf0\xd5\xbd\x5a\x0a\x8e\xec\x63\x33\xa2\xb8\xdd\x64\x05\x84\x2f\xf7\xe9\x25\x00\x66\xd8\x76\xaa\x38\xcd\x2d\x19\x4f\xc7\x7d\x9d\x72\x75\xfd\x6f\xc2\x65\x4e\xd7\xb0\xa9\xaa\xfa\xf9\x06\x53\xd1\x24\xfb\x4d\xbf\xbc\xe6\x4d\xff\x97\x3d\x2c\x83\x79\x6b\x6f\x68\xe9\xb7\xbb\x5c\xd4\x2f\x4d\xba\xe1\x3b\x18\x8e\x3e\x57\xf5\x59\x5b\xf0\x1c\x85\x58\x3d\xa4\xde\x92\xf0\x38\x43\x8f\x8e\x4f\xc1\x22\x04\x88\x7d\x5f\xe8\x42\x8a\x99\xce\xda\x66\x51\xe6\x15\x95\x25\x42\xf8\xe8\xa8\x1a\x0c\x14\xea\xaf\x46\x9f\x44\xb9\x8e\x43\xc9\x39\xb3\x1f\x94\xc3\xc9\xeb\x16\x62\x54\xcb\x52\x56\xb3\xbc\xc2\x85\xc4\x90\x1a\x6b\x59\xd6\xcb\x77\xfc\xb1\xb8\xaa\x75\x5d\x90\x84\x37\xab\xd5\x14\x01\xb7\xee\x66\xb6\x88\x8d\xbe\xab\x45\x0e\x06\x8d\xf1\x8c\xbc\x3d\xa3\xb6\xf1\xe6\xdd\xa1\xbb\xf8\xb3\xbb\x60\x52\x13\xbe\x1b\x26\x1a\x02\xf5\xbe\x10\xe0\x5d\x08\xd4\xbd\x10\xc0\x95\x99\x3b\x4d\xd8\xfc\x7b\xeb\x83\xd8\xed\x20\x3a\x4e\xd7\x56\x60\x08\xf7\xf1\x28\xf7\x58\x42\x27\xd2\xe8\x2c\x20\xa3\x72\x3e\xcf\x33\x8b\xd7\xa5\x51\xbd\xc3\x57\x08\x9b\xb7\xc1\x86\x62\x26\x26\x4f\xe0\x5f\x10\xd6\xb4\x3b\xc0\x6a\x5f\xe3\xb7\x66\x6b\xf1\x11\xfc\x88\xdf\x99\x3d\x59\x8d\xe0\x47\xfc\xce\xa7\x58\x17\x23\x69\x7c\x5e\xc3\x1a\xaf\x2a\xb8\x19\xe7\x33\x45\x9f\xbb\x23\x86\xa4\x6b\xed\x01\xd3\xf0\xc3\x05\xc2\x0d\x39\x79\xd8\x7c\x67\x23\x3a\x3e\x6c\x86\x43\x94\x9f\xe0\x75\xd1\x4c\x51\x18\x64\xf1\x56\x67\x70\x1b\x53\x6c\x32\xb8\x8d\xa5\xb1\x2d\x5a\x93\xe4\xc2\x15\xd3\x7e\x1a\x18\xd1\xb4\xbb\x62\x33\x38\x12\xb1\x93\xbc\xdc\x69\x44\x16\xc1\x2f\x0a\xd0\x10\x86\x3d\xda\xb9\x0f\xb2\x70\xd8\x89\xbd\x16\x84\x09\x92\xbb\xf7\x48\x95\xdc\x23\x25\x2e\x98\xbe\x2b\x84\x7b\xa4\x6a\x53\x89\xa4\x55\x54\xff\x51\xb0\x57\xe4\xc9\x9d\x27\xd0\x9e\x19\x64\x1c\xed\xaa\xec\x12\x68\xd3\x33\x2d\xaa\xa8\x52\xf1\x5b\xc2\x00\x9e\x3a\x5d\xde\x39\x5d\x8c\x2b\x4c\xd9\xc7\x31\xc3\x0a\xc0\x63\xa1\x23\x4a\x9b\xcc\xe3\x74\x64\x66\x18\xa3\x75\x5b\x11\xc9\xbd\x45\x4c\x41\x4d\x48\xd7\x13\x7c\x1a\x40\x52\x83\x13\x37\xfe\xfd\x29\xe8\xc0\x58\x04\x7b\x19\xc2\xde\x07\xb8\xf2\x2b\x67\x46\x93\xd7\xb8\xc2\x0d\x2c\x0e\xa6\xa9\x7d\xf7\x27\x0e\x50\x60\xbe\xff\xd0\x52\x44\xac\x33\x36\xbb\x19\x0a\xb9\x6b\x64\xb5\x7f\x9f\x1a\x99\x48\x81\x8e\x27\xc6\x57\xe2\x0a\xd7\x30\xbe\x76\x78\xb2\x76\xaa\x9c\x30\x0c\xcd\x39\x5d\x68\x43\x5e\xf6\x11\xf4\xe7\x10\x08\xb9\x32\x81\x80\xb5\xac\x5a\x96\x57\x04\x78\x3a\xef\x49\x73\x4e\x17\xd6\xcc\x80\xb2\x8f\xd6\xb8\xc0\x84\x85\x96\x36\xea\x32\xa9\x52\x5a\x7f\x10\xdb\xf7\x38\x87\xa8\x51\x08\x12\x76\x63\xb5\x91\x66\x5c\xa2\xe5\x7d\xd2\xb1\x89\xac\x26\x7d\xb9\x2c\xf3\x0a\xb3\x20\x40\x7f\x22\x88\x72\x85\x26\x95\xde\x20\xbb\xcc\xd3\xb4\x60\x79\x07\xed\x30\x27\xd1\xfd\x62\xc6\xdc\x45\x9d\xf7\xe6\x4d\xfb\x88\xcc\xce\x38\x45\x21\xf3\xc7\xbf\x84\xb1\x73\x14\xa8\x4b\x8d\xb9\xe1\x58\xaa\xdd\x3c\xdb\x96\x06\x27\x77\xbc\x95\xbc\x5d\x9e\x0b\xfe\x8f\x57\xf6\xc7\x8c\x1c\x9f\x42\x92\xc3\xc1\x20\x6f\x48\x55\x9c\x4c\xf1\x8a\x54\xc5\xe9\x14\xdc\x75\x1c\x8f\x06\xa9\x6b\x10\x0e\x4a\x4c\xbe\x07\x84\xe5\x66\x93\x4b\x52\x4c\x11\x9e\x3d\x3a\x3e\xd5\xee\x36\x64\x55\xcc\xa6\x18\x9c\xa8\x46\x55\xad\x9d\xa9\xea\xc0\xef\x86\xa5\xe9\x27\xca\xd5\x68\xfd\x0e\x2f\x21\xb4\x56\x94\xd4\xa6\x46\x41\x0c\xbc\x3b\x0f\xb7\x3c\x48\x74\x63\x20\x61\xf7\x14\xcf\xa3\xc4\x37\xf6\xed\x0e\xc4\x34\xec\xd3\xbe\x88\x99\xb0\xb5\xdd\x79\xb7\xf9\x9f\x3d\xde\xe0\x50\xf3\x7c\xe1\x97\x13\x63\x78\xfa\xbf\x81\x0c\xff\x0e\xea\x7b\xd1\x0e\xbc\xef\x4b\x9f\x52\xab\x62\xff\x12\xe2\x2c\x23\xe2\x7c\x17\x31\x96\x93\xd6\x68\x08\x09\x8b\x9e\xd2\xc5\xd8\x64\x25\xef\xa6\x59\xa5\x20\xf6\x1b\x67\x43\x89\x26\x79\xab\x19\xd9\x9a\x8f\x8e\xa5\xfd\x4a\x2d\x7e\x98\x2f\x1e\xc5\xd5\x4c\x6a\x31\x43\xe0\x77\xd3\x70\x7b\x9f\xd9\x33\xe1\xd0\xdd\x86\xec\x77\xf2\xd5\xc1\xbd\x29\x61\x0e\xe6\x68\x94\x41\xaa\x9d\x58\x9c\x22\xc6\x16\x3d\x39\xae\x70\x51\x4c\xdb\x9f\x78\x84\x65\xbd\x76\x90\xd6\x9c\x5c\x8f\xf4\xb5\x41\x44\x6a\xc3\xe1\x0a\xca\x42\x1b\x6f\xf5\x4e\x58\x3b\x67\x67\xe8\xe6\x0d\x6e\xd5\xa2\x68\x03\x6d\x70\x71\xd0\x5d\xb7\x8d\xb7\xdf\x01\xf2\xa7\x63\x9f\xca\xf2\x0a\xf9\x2d\x02\xe7\x7a\x18\xf5\x14\x42\x7a\x62\x88\xe5\x39\x4d\x3a\xe7\xee\x42\xf5\x68\x8a\x16\xe9\x53\x53\xb4\xec\x89\x9f\xa2\x0d\xec\xec\xe6\x87\xb9\xcf\x6f\x84\x4b\x62\x1c\x59\x75\x0f\x75\xa6\x93\x3f\x73\x14\x26\x9f\xd0\x60\x71\x31\x51\x0f\x12\x50\x89\x23\x96\x96\x3a\x62\x69\xdb\x8e\xd0\xd8\x6a\x0c\x06\x47\xc2\x46\x76\xa4\x07\xa6\x48\x6c\x36\xd1\x0b\x58\x04\x48\xec\x6c\xb2\x75\xdb\xe3\x1d\xbc\x3f\x5b\x65\x83\x81\xab\x36\xe3\x4c\x0a\xbe\x5a\x51\x11\x56\xf4\xa5\xbe\xe3\xa0\xa3\x2d\x18\xa3\xd7\xc8\x98\xb8\x43\x5e\x85\x56\x17\xae\xba\xb5\x04\x09\x90\xa8\x99\xe8\x0d\xdf\x6f\x0c\xca\x71\xa7\x41\xbd\xfb\xad\x59\x40\x74\x08\xb9\xc4\x5c\xee\x56\x04\x9e\x15\x39\x8a\x1c\x19\x78\x4b\x00\xc4\xc9\x09\x98\x55\x05\xa7\x95\xbe\xfb\x4f\x74\x0c\x52\xd0\x69\x78\xb3\xcd\xec\xba\xac\x58\x86\xc6\xdd\xbc\x2b\x58\xc7\xbb\xe5\xb8\xda\x79\x7a\x5b\xd1\xc8\x17\xe5\x40\xdb\xe5\x3f\xb3\x87\xd0\xf1\xbe\xec\x64\x00\x51\x75\x6a\xf0\x44\xb6\x19\x5c\x12\xee\xb6\x45\x4d\x2a\x73\x0e\xe8\xa4\xc8\x79\x98\x7d\xba\x44\xed\x9c\x4f\x87\x8d\xcd\xa1\xa6\xbd\xc4\x3d\xba\x65\x68\x62\xdf\xc0\x36\x0b\xdf\x38\x9f\xf1\xd2\x18\xc4\xed\xb9\x72\xb0\x3c\xc6\x4c\x3c\xc0\xb1\x06\xab\x1b\x21\x1b\xbd\x7d\xf1\xfa\x87\x97\x67\xef\xde\xbc\xbe\x38\x3f\x7b\xfd\xf4\xec\xfc\xe2\xd5\xe3\xd7\x8f\x7f\x38\x3b\x37\x41\xe2\xef\xdb\xdc\xeb\x37\xaf\x2f\xfa\x9b\xdc\xd2\x50\x30\x76\xe7\x41\x11\xb2\x3b\xea\x86\xbb\xeb\xda\xb9\x83\x3f\xdf\x75\xa0\x94\x98\x1b\x7e\x67\x07\xee\x1a\xd1\xf5\x9e\x21\xce\xfd\x38\x92\xa6\x1b\xda\xb5\x8d\x4e\xe0\x34\x2f\x68\x71\x32\xed\x49\x4a\x97\xfd\x9f\x6c\x48\xd5\xa8\x8a\xd3\x69\x3a\x74\xac\xd7\x5e\xed\x25\xdd\xd9\x53\x44\xf6\x8b\x28\xd7\x6b\xaf\xff\xb0\x69\x64\x77\xe4\x8c\xb2\x56\xe6\x5a\x7b\x12\x7f\x87\x7c\xdc\x6c\x93\x03\x49\x20\x7b\x54\xf7\xf6\xd5\xcb\x74\x02\x2d\x35\x49\xdc\x5d\x9a\xdc\x39\xa1\xa3\x6a\x1e\xb0\x91\x9a\x01\xdd\xcb\x65\xda\xdb\xd9\x8a\xd1\x9b\x5f\x5e\x9f\x9d\x4f\xa3\x18\xdb\xa6\x2b\x17\x02\x1c\xe8\xc1\x2d\xec\xf5\xb1\xdc\xa2\x7e\x46\x2c\x11\x24\x73\x4f\xf4\x09\xa3\x3a\x45\x03\x95\xda\x8a\xfc\x2a\xf9\xde\xdb\xb7\xb5\xea\xb4\xed\xa8\x41\xaf\xfd\xe6\x13\xf3\x51\x73\x5c\xdc\x64\x09\x39\xde\x69\x18\x12\x2b\x9d\x44\xb1\xd3\x82\xd1\x76\x27\xbe\x0a\x62\x5b\x43\x40\x0e\xb1\x35\x61\x84\x6f\x77\x62\xf4\x1d\x19\xd8\x3a\x1b\xe0\x8e\x24\x31\x51\xe4\x71\x97\xbe\xfd\xb6\x9a\x8f\xb3\xf3\xcf\xcf\xeb\xef\x7f\xfc\x74\x93\x61\x90\xd7\x8d\xbf\xbe\xcd\x74\x50\xe7\x3a\x1b\x17\xd9\xc0\xab\xf8\xb2\x5a\x9d\xa3\x60\xb7\x95\x8d\x8b\xe2\xf4\x14\x9f\x4e\xa7\x10\x73\xec\xec\x63\xb9\xca\xc6\x8b\x72\x55\xd3\xed\xd7\xfa\x3e\x77\xab\x9d\x9a\x15\x0b\x36\xce\xd6\xe5\xec\x43\x79\x45\xeb\x6f\xe2\xc1\xaf\xaa\xcb\xd4\x7c\x47\xcb\xcb\x3a\xeb\x89\x3f\xe4\xab\xd3\xeb\xb5\xdc\x19\xd1\xf8\x0f\x00\xcd\xbf\xfc\x73\xfd\x80\xbf\x19\xf2\x24\x68\xda\x00\xf9\x03\x41\x01\x73\xdb\x0f\x0c\x4e\x47\xfd\xa7\x02\xe2\xe7\xff\x60\xdf\x36\x6f\x7f\x7a\x79\x5f\x1c\xf9\x0b\xce\xaa\x45\x86\x8b\xe2\xc1\x09\x2e\x32\x35\xd6\x77\x95\x5c\xd1\x6c\x3a\x35\x37\x98\xdb\x36\x52\xe1\xe2\xf4\x5f\x71\x58\x13\x03\x2c\x15\xa2\xad\x5d\x92\x31\x05\xed\x6d\xf7\x5b\x83\x90\xad\x7a\x7f\x24\x8e\x1a\x68\xef\xb7\x34\xa9\x3b\xe8\x1f\xbe\x32\xdf\xfc\x4d\xfc\x3a\xfb\xfb\xbf\xfe\xcb\x5e\x28\x6a\xc1\xeb\xef\xb4\x16\xb6\x7f\x14\x80\x74\xcb\xfb\xc1\x47\x5b\xe6\xfd\xa9\xd0\x79\x3c\x7f\x51\x7f\xf8\x66\x76\xbd\x37\x74\x1e\xfc\x0b\x0e\x75\x87\x45\x71\xfa\xbf\xf1\x09\x2e\x2c\xbe\xfe\x09\x10\x53\x50\xd8\x05\xaf\xb6\x78\xf9\x4b\x33\x67\x7d\xaa\x04\x3d\x5e\x70\x71\x5d\xca\xbd\x62\x00\xf4\xe5\x64\xeb\x17\x60\xef\x4c\xa1\x1e\xda\x31\xf4\xdd\x3c\x56\x91\x23\x38\x2d\xea\xd1\xf9\x9b\x37\xef\x2e\xce\xcf\x9e\x4d\xe1\x36\x20\x03\xbb\x80\x59\x58\x37\x2b\xa5\x14\x75\xa6\x6e\xb0\xc5\xc9\x14\x9c\x9a\x20\xbc\x5b\xae\x5d\x67\xac\x19\x3e\x9a\x40\x0f\xc5\xc9\xd4\x84\xc1\x49\xa6\x87\x0a\xbb\xc5\x52\x71\xec\x20\xd8\x55\x4b\xfa\xbd\x5e\x05\x42\x47\x2f\xea\x9f\x2b\xb0\x77\xf6\x45\x4e\xf2\x6b\x8b\x1c\xbf\xb8\x43\x4a\xdc\x71\xf2\xa2\xfe\xc2\x6d\x7c\x82\x34\xdc\x88\xe2\x93\x71\x4d\x14\x2f\x8c\x1b\x48\xd1\x65\xe4\xe0\x3a\x7b\xb9\x65\x31\x8f\x4f\x8f\x08\x69\x06\x83\x1c\x7c\x69\x9a\xa9\x9a\xec\x11\x21\x6c\xf4\x66\x5d\x8f\x7e\xa0\x72\x30\x90\xee\xf1\x55\x79\x73\x49\x5f\xf2\x59\xb9\xda\x6c\x72\x4e\xf2\x8a\xe4\x02\x3e\x42\x85\xf0\xf9\xc6\x51\x51\x05\xc9\xc7\x55\xff\x45\x33\x25\x85\x6e\x42\x87\xc2\xc3\x45\x66\x92\xa8\x4f\x71\x21\x30\x9f\x4e\x11\xc2\xc0\xab\x75\x80\x72\x0b\xc1\x2e\x92\x06\x89\x6e\x46\xe3\x60\x36\x20\x72\x2c\x28\xa6\xf8\xe8\x64\x3a\x2e\xe8\xa8\x6e\x2e\x35\x8a\xa9\xed\x8e\x70\x58\x20\x87\xa7\x08\x1f\x9d\x4e\xb7\xd8\x84\xbe\xe9\xa4\x61\x36\xd7\x5a\x5c\x12\xa1\xc1\x29\x8a\xd3\xe9\x81\x28\x1e\x4c\x41\xce\x5f\xcd\x43\x09\xff\xa1\xf3\xe5\xcd\x2b\xe7\xe8\x88\x72\x89\x4b\x84\x5c\x4e\x2e\x1d\x2a\x44\x5a\x73\xfc\x17\x73\x84\xe1\x33\x36\x2a\xe7\xf3\xb7\xa0\x41\xf1\xc1\x70\x28\x56\x5d\xe0\xca\x0a\x4e\x82\x55\x1c\x81\x0d\x0a\x5e\x90\x66\x32\x53\x5d\x44\x79\xb9\x56\xd0\xe9\x41\x56\xcb\x9b\x15\x85\x21\x42\x38\x22\xed\x44\xba\xc0\xea\x75\x56\x59\x8c\xcc\x10\x42\x18\xba\x37\x61\x26\xc2\xfe\x6b\xbc\x00\x0f\x04\x1b\x9e\x42\x5b\xa2\x98\x98\xca\x28\xcf\xe6\x55\xbd\x5e\x95\x37\xe3\x43\xc6\x19\x7d\x08\x21\xd0\x92\xd6\xff\x90\x25\xe9\xcb\xf3\xd7\x7a\x01\x3c\xc8\xc1\x20\x17\xad\x9b\x00\x64\xa4\xed\xcd\x84\x54\x69\x89\xe0\x1d\xa9\x68\xf7\x4f\xe8\xa6\x05\x71\xad\x4c\xfa\x6a\x13\xe9\xb7\x76\x50\x41\x82\x23\x39\xc9\x29\x91\xc3\xec\xb0\x05\x2c\x6d\xd6\xe3\x03\x49\xeb\xf4\x74\x31\x80\x29\x1a\x53\x34\xd6\x09\x34\x45\x27\x25\xd1\x41\x82\xb0\xdc\x26\x71\x99\x41\x5c\xaf\xe4\x12\x1b\x2c\xd1\x06\x14\xd7\xe5\x1a\xe5\x6d\xfc\x30\x17\xc5\x72\xfd\x56\xd5\xd4\x79\x2f\xb5\x5f\x4a\x54\x36\xee\x5e\x7d\x20\xe4\x1b\x9d\x2c\xb4\x10\x5e\x6d\xf0\x0e\x6d\x4c\x8f\x37\xd8\x7b\xe6\x10\x20\xc2\xa2\xf8\x58\x07\xe0\xd3\x69\xf2\x1b\x45\xdf\xae\x49\xa3\xb6\x64\xa6\x50\x7d\x31\xe9\xdb\x4a\x9a\xe2\xe0\x35\x1a\x6b\xe2\xb5\x68\xef\x26\x34\x59\x04\xdb\x48\x1d\xf8\x25\xa9\x60\x7b\x71\xbd\xa7\x16\xc8\xa7\x25\xb7\x3f\x08\x21\xeb\x89\x76\xbd\x2e\x71\x35\xe1\x05\xf7\xd4\x6f\xbc\xd0\x32\xa1\x79\x5e\xe2\x35\xbe\xee\xdf\x66\x76\x6c\xb5\x02\xab\xdd\x6d\xcb\x3e\x47\x1a\x11\x25\x47\xf9\xc2\xad\x54\x99\xad\x24\x70\x05\xb9\xed\x08\xd3\x5b\x85\x08\xb3\x6d\x12\xaf\xe7\x65\xad\xf6\xcd\x6f\x74\xee\x93\x44\x56\x3b\x3d\x72\x7e\xe7\xbe\x02\x57\x33\xd8\x3e\x4b\x93\x82\xcf\x68\x18\xa2\x81\x38\x91\x71\x3c\xbc\xd2\x66\xc5\x72\xe5\xea\xea\x8e\xc6\xd2\xb8\xb0\x4d\xde\x9a\x63\x00\x19\x1d\x91\x48\xed\x31\x3c\xef\x5d\x06\xab\xc9\xec\xc4\x75\x38\x4d\xc6\x75\x38\x0d\xe3\x44\x9c\x4e\xc7\x1a\x7c\x5f\x1a\x65\x02\xbe\xfe\x23\x68\xa9\x50\xd4\x53\x67\x85\x53\x64\x55\x67\x85\xb3\x24\x55\x23\x43\x0f\xed\xdc\x7b\x8d\x83\x15\xb6\xcb\xad\x7b\xb4\xc6\x1f\x51\xae\xb6\x90\x76\x8a\x9e\x55\xe9\xe7\x7c\x21\x27\xbc\x37\x9b\x38\x06\x96\xfd\xf8\xb2\x99\x7d\x88\xef\x56\x3b\x44\x4a\x6e\x8d\x65\x8e\x6e\xb7\xad\x1c\xda\xa9\x48\x42\x36\x6c\xad\xb7\x7c\xb7\xa2\x36\x37\x0e\x17\xbb\x56\xe7\x54\xd7\xb3\xae\x58\xb9\xaa\x7e\x83\xf3\xcc\x44\x17\x28\xeb\xfa\x9c\x2e\x02\xb5\x59\xa2\x48\x35\x11\xb8\xc8\xca\xf2\xca\xc5\x44\x4d\x08\xf0\xfa\x02\xea\x90\x78\x7c\x76\x5d\x82\x39\x1c\xc8\x51\x55\x07\x1e\x35\x83\x41\x1e\x44\x2e\xf8\x54\xad\x56\x89\xd0\x05\xd1\xfb\x27\x2b\x5a\x8a\x73\xe3\x20\x1d\x84\xcb\xa1\x73\xc7\xde\xd6\x91\x0d\xaa\x1b\xb5\x05\x4d\x38\xec\xfc\xa4\x05\x36\x64\x73\x73\x7a\x40\xca\x4e\xe0\x3d\xd1\x8f\x2a\x70\x9d\x51\x08\x32\xfb\x70\xef\x74\x9c\x46\xa5\xde\xdb\x36\xd8\xc0\xab\xd3\xf3\xcb\xa2\xad\xed\xbe\x5b\xa5\x2d\xc3\x3b\x09\xa2\xbf\x24\xb9\x99\x8d\xc3\x9c\xde\x10\x4d\x74\xe3\x72\xf4\x73\x1b\x5e\xc9\xd0\x6d\xfd\xa9\x92\xb3\x65\x6e\xa3\xd6\xa1\xdb\x59\x59\x53\x6b\x2c\x30\x86\x07\x93\x38\x76\x1c\xb7\x44\xd1\x81\x81\xef\x38\x74\xad\x6c\xaa\xf9\x33\x2e\xc0\xa7\xf2\x8e\x1c\x68\xf9\x09\x2e\x5d\x82\x6b\xf5\xc1\x44\x1f\xbf\x34\x5a\x52\x33\x3e\x3b\xb0\xff\xa3\x93\x65\xc1\xc0\x0c\x0f\xaf\x7f\x83\xc2\xc1\x6a\xa0\x0e\x4c\xdd\x39\x65\xb2\x92\x37\x6e\xe8\xab\xd6\x90\x0f\x5d\x4f\xe1\xa8\x98\xbd\x0b\xa8\x39\x6c\x73\x69\x94\x45\xd7\xfb\x8d\xac\x77\x0c\x3b\x87\xfc\xa5\x23\xdb\x9a\x2c\xfc\x3b\xe2\x23\x19\x3a\x24\x4a\xa7\x53\x30\x2e\xed\xd4\x86\x6c\x80\xc2\x0f\xf4\xe6\x19\x17\x96\xf4\x59\xf5\x9b\xf5\x7b\xaf\x29\x6d\xa7\x12\xd7\x2a\xdb\x64\x28\xb1\xb3\xeb\xb5\xbc\xe9\x8a\xef\x8f\x4e\x3b\xc6\x7b\xaf\xe8\x35\xef\x0b\xca\x19\xd7\xfc\x39\x36\x09\x68\x05\xed\x80\xf9\x19\x09\xbf\xff\x8c\xd1\xcf\x7d\xa1\xae\xed\xd4\x49\x30\x79\x7b\xc2\xd9\xc9\x5b\x03\x02\x35\x79\xd0\xbf\x3f\x22\x34\xd2\xc9\x6b\xbe\x0e\xea\xd8\x11\x82\x6b\x80\x2b\x52\xd3\x53\x25\x65\x32\x6e\x11\x2d\xa4\x53\xc8\x88\x47\x27\x93\x5c\x15\x0c\x87\x58\x0e\xb3\x4b\xfa\xe0\x6f\x7f\xfb\xdb\xbf\xfc\xed\xf8\xf2\xf2\x92\x1e\xff\xe5\xaf\x0f\x4e\x8e\xff\xf7\x62\x76\x79\xfc\xe0\xf4\x5b\xba\xf8\xcb\xb7\xdf\xce\x66\xe5\x83\x6c\x28\xd0\x18\xbe\x21\xa7\x58\xa2\x6d\xce\xb0\x84\xdc\xe3\x71\x8a\x7f\x3b\x9b\xe1\x10\xdf\x7e\xa0\x37\xe3\x12\xc3\x09\x34\xae\xf0\x35\xbd\xe6\x63\xbe\x35\xf1\xcf\x16\xfd\x2c\xec\x17\xdf\x06\x21\x62\x6f\xc0\xc5\x18\xcc\xf3\xa8\x2c\x70\xa6\xcb\xb2\xde\x5b\x5f\x87\x73\xd9\x81\x0c\xa0\x2a\xd5\xb1\x4c\x1f\xdb\x4c\xd1\x80\x1a\xd8\xf8\x78\xcf\x7a\x6f\xbd\xc0\xaa\xff\x8e\x99\xb2\x78\xa6\x1f\xe8\x8d\xe2\x1d\xee\x31\xa7\xbe\xad\x60\x11\xb4\x06\xf4\xd6\x73\x58\x12\x46\x3f\xe5\xe9\x4d\x9f\x0e\xa7\xdc\xbf\x29\x4f\x76\xef\x99\x6e\x64\xd7\x92\x31\x2e\x0f\xd5\xcc\x0f\x75\x80\xc2\x43\xce\x0e\x4b\x76\x08\x9a\x8d\x43\x38\x4c\x25\x17\x99\xd1\x1f\x46\x4c\x79\x0f\x75\x12\xde\x56\xc9\x92\xa1\xd0\xe8\x08\xf0\x75\xff\x8c\xf5\xa1\xdd\x51\x28\x63\x00\x7b\x23\xcc\xd2\x16\x47\x7a\xd8\xa9\x2b\x8f\xa5\x0a\x82\x2e\xac\xfd\x90\x21\x17\x3c\x1e\x1e\x2e\x03\x13\xe8\x56\x4a\x74\xc0\x78\x59\x5e\xc1\xd9\x58\x22\x63\x4b\x5e\xd5\x3f\x09\xfe\xf9\x46\x95\x0c\x06\x79\x19\xec\x8b\x52\x87\x13\x00\x4e\x0d\x99\xd4\xfd\x36\x13\xfc\x41\xac\x6c\x2f\x37\x1b\x1b\xbe\xf7\x08\xa4\x47\x61\xb4\x74\x52\x4f\x96\xe3\x5c\x92\x9c\x5a\xea\xad\x30\x49\x8d\xa0\x47\x2f\x7f\x58\x2a\x34\x53\xdc\xa1\x8d\x53\x38\xd1\xa2\x28\x30\xf6\x45\xe3\x65\x8b\xf9\x83\xf9\x3a\x5e\xbf\x27\x86\xa4\x8e\x13\xe7\xd6\xee\x27\x51\x5d\x57\xda\xef\xdb\x1a\x5e\xd0\x91\x22\x46\xc9\xb0\xd1\x3f\x47\x3d\xb4\x08\xa9\xad\x94\xcb\x54\x03\xaa\xe8\x9e\x63\x0b\x87\x04\x73\x4b\x8e\xe9\x55\xd8\x70\xff\x90\x5c\x03\x8a\xbe\x5e\xff\xbf\xbd\x0d\xfc\x26\x10\x77\x6c\x02\xd9\xce\x42\xd1\xbf\x17\xac\x96\x1d\x10\xbe\x98\xaa\x8b\x47\x0a\xab\x2d\xe6\x4f\x96\xe3\xd8\xec\x1b\xd2\x93\x47\x88\x3a\xcb\x4b\x2c\xd0\x78\x39\x36\x09\x18\xce\x14\xef\x0a\x95\x21\x99\x79\xb4\xc3\xec\xc9\x63\x3e\x5d\xd8\x4f\xfd\x06\x72\xd6\xb2\xe5\x68\xc1\x85\x62\x55\x27\x39\x25\xc5\x14\xbb\xe7\x3c\x64\xd4\xa8\x0d\x68\xd5\xdd\x40\x33\xb0\x16\x18\x2f\xd1\x78\xf9\xfb\x37\xd0\x7e\x48\xba\xef\xc6\x49\xb5\xf0\x05\x3b\xe7\x7e\xbb\x7a\xcf\x1d\x64\xbf\xef\x31\x44\xd1\xd7\xa4\xb5\xe0\x33\x5a\xd7\xc7\xea\xb2\x9d\xba\xc3\xed\x93\x98\xe8\xae\xd4\xb3\xbd\xd9\x77\xf7\xbc\xa9\x75\x2e\xa7\x66\xd0\xee\x72\xdd\x31\xa9\xb2\x2a\xa2\x12\x37\x90\xa0\x87\x95\xd7\xb4\xc6\xb3\xc0\x60\x75\x91\xe2\xc8\xf1\x3a\x55\x0a\xfe\xa0\x8b\x82\x8d\x1e\x9f\xff\xf0\x76\x4a\xd6\x58\x92\x93\x87\xf2\x3b\x17\xb0\x4c\x0e\x87\x48\x90\x55\x21\xa7\xb8\xd4\x01\xf5\x15\xdb\xda\xdd\x08\x79\x43\x66\x85\x98\xa2\xc1\xa0\x29\xaa\xd1\xe3\x27\xef\x5e\xbc\x79\x3d\x9d\xa8\x22\xd2\x8c\xcb\x82\xdb\x1c\xce\x83\x41\x0e\x85\x80\x23\x79\x89\x1b\x84\xf0\x5a\x15\x94\x78\x01\x95\x2d\x6d\x58\x8c\x40\xbf\x47\x66\x78\xb1\x35\x66\x71\xc0\x2b\xb9\xdc\xe3\xe7\x67\xcf\x32\x84\xeb\xbb\x88\x67\x21\x46\xaf\xde\xbf\x7b\xfc\xfd\xcb\xb3\x8b\x27\x67\x2f\x5f\x4e\x6d\x78\xc2\xa2\x9c\x5a\x9a\xaa\x8d\x8a\x65\x8a\xec\x25\x12\x14\x98\x8f\xfd\x94\x72\x7a\x27\x22\x86\x31\xcd\xbf\x54\x97\xdb\x96\x1f\xec\xca\xb1\x75\x47\x76\x64\x3d\x28\xc9\x8f\x2f\x39\x5f\xed\x2f\x41\xa0\x9d\xcc\xd6\x84\xf6\xa5\x2a\x27\x46\x4b\xf0\x7d\x59\xd3\x79\xf7\x9d\x4e\x7f\x93\xf8\x86\xb3\xb9\x31\xef\x0c\x8b\x77\xd0\x92\xf0\x6d\x58\xf8\x9a\xd6\x92\xce\xed\x39\x12\xbe\x39\xe7\x5c\xa6\xca\xfb\xea\x46\xe3\x8b\x45\x98\xaa\x73\x40\x82\x30\xdd\x58\xe3\x4b\x75\x5c\x51\x8b\xb1\xba\x30\x43\x78\x75\xaf\x84\x27\x91\x2b\x1b\x0d\x92\x5b\xda\xb4\xe2\x70\xe3\xf0\xc9\x54\xba\xa3\xec\xb9\xd7\x44\x06\x8c\x5f\x24\x7e\x16\xad\x58\x7f\x20\xdf\x34\x85\xfa\x2a\xa6\x4b\xbe\x5c\xf4\x1c\x87\xf0\xda\x65\xfe\x0f\xde\x36\xa4\x1b\xa8\xce\x05\xd8\x74\x83\x72\xb7\xe0\xc1\x80\x06\x21\xee\xd0\x66\x93\x77\xea\x7a\x09\x6b\x23\x69\x8e\x52\x71\x95\xa9\xcf\x3e\xa2\x25\xdd\x2b\x45\x81\xdb\xb8\x73\x97\xfe\xe1\xfe\x37\x68\x14\x3a\xf0\x2d\xab\xd5\x5c\xa4\x45\x31\x98\xed\x7f\xd7\xec\xc9\xbd\xe5\xda\x2f\xa8\x13\x4c\xf8\x64\x57\x2e\x3a\x69\x58\xcd\x44\x32\x0e\x94\x06\x14\x21\x2c\xad\x2a\x20\x32\xaf\x46\x90\x20\xa1\xbb\xff\x7a\xb4\xd0\x7f\x62\x0c\x3a\xa3\x49\x4e\xe4\x18\x0a\x3a\x15\xe0\x8b\xca\x6a\xe9\x84\x93\xcb\xdc\x1f\xbe\xd2\xaa\x0b\x29\xc4\x90\x66\x77\xef\x64\x5d\xdd\x6d\x63\x66\x6e\xf2\x7d\x94\xea\x2e\x85\xe2\xef\xd3\x27\x5d\x68\x8f\x19\x8d\xfc\x02\xf3\x28\xb5\x11\x28\x97\xcc\xd5\xa1\xea\xb0\xea\x6a\x04\x7f\x90\x9a\x29\x1c\x85\xdb\xd5\xc1\x40\x0e\x02\xb1\x0e\x70\xed\x1a\xd8\x41\x07\x45\x33\x8d\x20\x65\x63\xf0\x1b\xe1\x4f\xdc\x41\xbb\x79\x2b\x15\x5a\x23\x3c\xdf\x71\x96\xfc\x19\x56\x12\xb8\x24\xda\xe6\xa1\xde\xf3\x3a\xd7\x5e\x39\x3f\x3c\x86\x5d\xa1\x26\x0b\xea\x8e\x58\xb7\x97\xb4\xc7\xf0\xa2\xc4\xf5\x1f\x60\x70\x11\xad\xa6\x1b\x99\x5f\xd1\x78\x70\x8e\x54\x87\x4b\x11\x10\xd8\x03\xd9\xb9\x30\x76\xb1\x90\x01\x65\xd4\xe0\xb7\x39\xe1\x3a\xbe\x8e\x84\x0f\x06\xf6\x9a\x47\x08\x11\x13\x66\x18\xde\xb1\xcf\x78\xa4\xea\x18\x83\x1f\xb6\xd9\x84\x2c\x2f\xe1\x13\x8f\x79\xaa\xbf\xb1\xd1\x24\x85\x30\x69\x23\x60\x40\x4d\xdb\xf0\xb0\xf3\x7b\x18\x20\x69\x0f\x52\x32\x40\xca\xeb\x34\xd7\xd3\x87\x8f\x7f\x84\xa1\x81\x56\x24\x3f\xad\x84\xbc\x69\x21\x24\xc2\xd5\xe8\x42\x9f\xcc\xac\xcf\x92\xa0\x83\x30\x9d\x93\x3c\x0a\x54\x0b\x6f\x63\xda\x99\xe0\xc4\xa9\x35\xd8\xd1\xf5\xd5\x31\x64\x18\x01\x83\x26\x73\x35\x5a\x77\x68\xeb\x2e\x0d\x10\x57\xe8\x60\x37\x5b\xd9\xcb\x33\xfd\xc9\xf1\x4f\xb7\xf9\x35\xc2\x3d\x8c\x70\x72\x4c\xfc\xcb\xd7\x17\xb3\x70\x85\xb9\xa3\x11\x7b\x11\x1e\x63\x69\xd2\x63\xaf\xe5\x1a\x9b\xa2\x3e\x9c\xe0\x6a\xbe\xbc\xd7\x39\xe5\xa0\xe7\xbc\xcd\x65\x70\xd3\x35\xc2\x1c\x23\x2d\x95\xf6\x34\x06\xd3\xa7\x77\x60\x9d\x90\xa1\x31\x1b\x75\xd7\xd7\x4e\x2a\x3f\x09\xc2\xc7\xe5\x12\x19\x9d\x1e\x87\x4b\x1d\x0f\xf0\x4f\xf2\xef\x39\x5f\xf5\xa9\x16\xdc\x10\xa8\x75\x7c\x76\x00\xd8\x83\x64\xd1\x70\xb8\x66\x52\xe6\x54\x0b\x5f\x8c\xf7\x6d\x59\x0d\x03\x9a\x09\xa6\x46\x91\x9a\xd0\x36\x67\x49\xd4\x52\x28\x97\xbe\x93\x25\x71\xae\xfa\xa3\xcc\x97\x14\x06\x59\x94\xd1\x97\x55\x30\x56\x2a\x75\x12\xe0\x1e\xc4\xa9\x14\xe2\x54\xc9\x44\x90\xdc\xa5\x81\x34\xa1\x5a\x15\x63\x69\xe9\x54\x12\xa3\x38\x9a\xe4\x25\xe1\x61\x6e\xc8\x9a\x70\x93\x34\xb2\xf1\x0e\xbd\x78\x45\x6a\xf7\xbb\x9d\x16\x2f\x9f\x91\xb5\xbb\x24\x34\x78\x15\xd8\x8a\xce\xe2\xa3\xc3\x9c\x48\x33\x23\x58\x9c\xed\xc6\xce\x99\x41\xc7\x2a\x77\xcd\x63\x8e\xb6\x36\xff\xdc\x1e\x47\xaf\x06\xaa\x3d\x70\x15\x5c\xd5\x21\x1b\xce\x96\x11\xa9\x67\xeb\x4c\x77\x72\xa7\xad\xc0\xcc\xdd\x6d\xb6\xb8\xda\xea\x58\x5b\xfd\xf7\xfa\x3f\xd7\x6a\x34\x45\x6d\x8a\x72\x74\x7e\xf6\xe4\xcd\xab\x9f\xde\xbf\x3b\x53\x54\x69\xea\x4d\x45\x75\x2a\x4c\xcb\x07\xe9\xd0\x36\x77\xf0\x33\xc9\xd4\xa2\xde\x2b\xb6\x85\x47\x87\x72\xc4\xe8\x27\x63\x3e\xa3\x68\x25\x44\xab\x02\x67\xbf\x0a\x8b\x16\xeb\x7f\x97\x55\x95\x1e\xea\x5e\xeb\x14\x46\xd4\xc1\x9c\xb0\xb6\x54\xdd\x75\x06\x3a\x5f\x7b\x9f\xe8\x97\xd4\xfc\xb9\x06\x8a\x5f\xb4\xc3\xf7\xb9\x2d\xf8\x0f\x3d\x9e\x3b\xcd\xee\x55\xed\xd4\xba\x09\xa9\xd5\xff\xd4\xd9\xde\x1f\xdb\xbc\x93\x67\x93\x3a\x02\x42\xb5\xe3\x7c\x4e\x77\x93\x0a\xda\x8d\x76\xde\x77\xd7\x14\xb9\x3f\x61\xe2\xfb\x79\xfa\x76\xde\x2f\xd7\x34\xfc\x74\x6f\x74\x9a\x9d\x56\x58\x6f\xcb\x05\xd5\x36\x43\xde\x6b\xe2\x8a\xca\xa0\x38\xc1\x1e\x6e\x31\x1d\xd1\x7a\x56\xae\xe9\xd9\xe7\xb5\xa0\x75\x1d\x67\x62\x02\x7f\x0a\xcb\xe6\x3b\xfd\x90\x2e\xa6\x90\xb4\x87\x3f\x7f\xf7\xea\xa5\xf3\xb7\x30\xcf\x39\x0a\x12\x79\xd3\x20\x91\xb7\x35\xeb\xc8\xb2\x83\xd8\x51\x63\x98\x65\x07\x94\x64\xd9\x90\x6e\x9d\x10\x46\x67\xfb\x46\x13\x3a\x12\x74\xbd\x2a\x67\x7a\x03\x8e\xc1\x64\xc5\x5a\x83\xef\x72\x8e\x0e\xfb\x9d\xa8\xc6\xc7\xdd\x99\x0c\x06\xb9\xee\x56\x93\x1a\x9b\x6c\xc6\x1b\xa0\xf7\x75\xa0\x30\x69\x30\x48\xe1\x59\xe2\x78\xb2\x70\xb1\x6e\xab\xd1\x62\xf5\x08\xdc\x8d\xae\x52\x8f\x98\xd0\x94\x24\x53\xf2\xbe\x85\xcd\xb2\x61\xf0\x75\xac\x17\xd2\x43\xe9\xbb\x2b\xd8\x36\x6d\xf2\x08\x2c\xc8\x6d\x36\xc8\xc6\xd9\xa0\xbc\x5e\x3f\xcc\x70\xf6\x9d\xfa\xbd\x92\xea\xe7\x23\xf5\xf3\x4a\xfd\xfc\x3a\xfb\x7a\x9c\x0d\x7e\x6d\x38\x94\x7f\xad\xca\xff\xd7\xe7\x07\x7f\x53\x0f\xff\xad\x1f\xfe\x7a\xa2\x1e\x88\x7e\xf8\xf6\xe9\xc3\x6c\x8b\x19\xf9\xa6\x18\x7c\xf7\x28\xfb\xfa\xbf\xc9\xf4\x1b\x5c\x85\x4f\x57\xe9\x9c\xb2\xa2\xa0\x69\x1f\xf6\x58\x02\x9f\xd8\x3f\x69\xdb\xc1\x2f\xca\x16\x6c\xcc\x39\x8e\x14\xee\x80\x31\x36\xdd\x6c\xf2\x23\xc3\x05\x19\x0d\x28\x45\x9b\x0d\x38\xbd\x28\xb2\x65\x59\x4f\xab\x06\x45\x68\xbb\x45\x07\x9d\x39\xc4\xf1\xf4\xbf\xc8\x42\x32\x95\x2b\x20\xa5\xd7\xd8\x53\x75\x76\x1e\x67\x2c\xf5\x04\x3f\x90\xce\x97\x64\x47\xbd\xdd\xa8\xcd\x7d\xd2\x3b\x23\x33\x52\x87\x1b\x1d\x5d\xc8\xf2\xea\x1e\x82\x7b\xc8\x4a\x17\x48\xed\xf7\xbd\x15\xfb\xee\xfb\x33\xac\x5e\x51\xf9\x46\xac\x97\x25\xeb\xd5\xcb\xa6\x3b\xee\xd1\x73\x85\x7d\xd6\x34\x84\x99\x53\x7a\xe1\xfa\x4f\x60\x20\xb0\x08\x7a\x0e\xb9\x09\x48\x00\xaa\xf8\x07\x93\xe1\x7f\x5f\xfe\x61\x97\xe2\x00\x9c\x31\x0d\x0f\x65\xba\xad\x47\xd7\x65\xc5\xdc\xc3\xc5\x05\x20\xe3\x05\x07\xd0\xd6\x17\x17\xf1\x61\xe0\x4c\xfe\x14\xa1\x34\xdf\x14\xd2\x86\xdc\x9a\xea\xe8\x3d\x9d\xca\x22\xa9\x8e\x75\x84\xc3\x85\xe5\xd1\x0d\x4e\x89\xc4\x72\xf4\xa9\xac\xdf\xd7\x3a\xc5\xda\xad\xe9\x68\x2c\xb0\xae\x68\x65\x50\x70\x86\x43\xf8\x95\xbb\xcc\x4a\xb4\x14\x2a\xb0\x2c\xb1\x46\x9e\x1a\xad\xf7\xc1\x6a\x99\xc8\x29\xdc\x49\x9d\xb8\x0b\xf8\x7a\x0c\x1d\x16\x76\x30\xa0\x85\x1d\xd5\xd4\x20\x5a\x9f\xd6\x4c\xe7\x2f\xab\x6c\xb2\xa1\x84\x01\xbf\x4d\x18\x61\xe7\x07\x91\x2c\xac\xbd\xbe\x8b\x99\x54\x75\x93\x2d\x7b\x7b\xfd\x8b\x1d\xf2\x2f\x0f\x25\xfa\x59\x52\x16\x98\xb5\xf9\x30\x10\xff\xd7\xa8\x32\x82\xa4\xcb\x13\xcb\x3c\x06\x1b\x0f\x34\x96\x65\x5d\x57\x57\x0c\xe5\xb7\x5b\x48\x84\x89\xc6\x89\x8a\x42\xdf\x2c\x34\x21\x11\x94\xaf\x29\x83\x8b\x61\x5b\xe8\xee\x5b\x0b\x08\x4f\x62\x50\x7a\x4b\xc8\x68\xfd\xe0\xce\x63\x17\x0f\xa2\x0c\x76\x22\x4d\x01\xd6\xa9\xf3\x40\x16\xdc\x84\x32\xc1\xd5\xdd\x39\x42\xad\x38\xd6\x1c\x0c\x92\xe4\x1d\xe4\xd9\x6c\xa2\xc4\x18\xc8\xa5\x11\xe9\xa6\x74\x9f\xb8\xac\xf1\xbf\x36\x54\xdc\xbc\xa5\x2b\xaa\x16\x0f\x1c\xff\x74\xca\x39\x97\xd5\x2b\xce\xe8\xe5\x27\x97\xb5\xf3\xaa\xda\x94\x5f\x7b\xa4\xf4\xec\x24\xd9\x0e\x13\x83\xf7\x90\x74\xfd\xd2\x11\x91\x5b\x45\xef\x14\xa7\x6a\x68\x89\x09\xf6\x62\x13\xe7\x33\xc9\xed\x6f\xfd\xc5\x58\x47\xc6\xc2\x0c\x7c\xde\x8f\x25\x5f\x1f\xaf\xe8\x47\x75\xdc\xfb\xe0\x4d\xf6\x0b\x17\x15\xca\x11\x28\xb7\xa3\x62\x39\x6d\x9b\xed\x4b\x9e\xcb\xc1\xc2\x97\xa9\xfc\x6a\x09\x57\x99\x8e\x3b\xc9\x2a\x64\xc9\x0c\xbf\xd1\xe5\x5f\x52\xcc\x49\x6c\x66\x11\xbb\xd2\xef\xe4\x77\x04\xfd\xb5\xa9\x84\xe7\x7c\x66\x9c\xd5\x7c\xa5\x9e\x7d\x9a\xf8\xfb\xf8\xcf\x97\x24\xb3\x01\x38\x2a\x76\x58\x4e\x5c\xb6\x8a\x71\x89\xeb\xe8\x5d\x3d\x71\x52\xc0\x71\x8d\x9b\xe8\x5d\x33\x71\x89\x36\xc6\x0d\x9c\x4a\x90\xde\x88\x74\xae\x09\x12\xa2\xc3\xd1\xcf\x72\x54\x5d\x03\x94\x46\x60\x3f\x37\x18\xf4\xbc\xd8\x6c\x6e\xb7\x07\x8b\x51\x05\x5e\xa2\xf5\xba\x9c\x51\x75\x66\x2d\x76\xdd\x00\xe0\xbb\xcc\x86\x55\x3f\xc5\x4b\xf2\x00\xcf\xc9\x6d\x39\x9f\xbf\xe3\x2f\xab\x5a\x52\x46\x45\x9d\x72\x30\x75\x7a\x68\xad\x9a\xb7\x55\xad\x3a\xc0\x97\x40\xb8\xd8\x56\x99\xf1\x5c\x32\x8d\x6d\xf1\x85\x75\x43\x4a\x74\x19\xa6\x51\x74\x0d\x3c\x33\xf5\xe7\xf7\x1d\xc9\x81\x4d\xe5\x4a\xe3\x58\x85\x0f\x9d\xdf\xa0\x1c\x0c\x72\xef\x8e\x4e\x15\x71\x74\x2d\xa0\x44\xa3\xed\xa9\xcd\x38\x9b\x95\x12\x64\xc1\x47\x32\x39\xe4\x87\x48\x12\x9b\x4a\xf5\xa0\x6f\x62\xe4\x08\x98\x0a\xc8\x7d\xf8\x4c\xf0\xeb\x5d\x8b\x61\xe7\xa4\xc3\x17\xa8\x16\xfd\x74\xca\x87\x00\xc0\xd0\xc1\xbe\x0c\x67\x04\xb9\x6d\x39\x71\x81\x07\xfe\xf2\x90\x3f\x22\x27\x0f\xf9\x31\xf9\x0b\xaa\x16\x79\x55\xf0\x29\x81\x4b\x6c\x7e\x24\x36\x9b\xaa\xe0\xc3\xd3\xa9\x36\x3f\x50\xbf\x1f\xa8\xdf\x42\x67\x26\x2f\x8d\x62\x08\x45\x4a\xa5\xce\xca\x5a\xcd\x50\x62\x6a\xe6\x7a\x75\x90\xb8\x1b\xb3\xc1\xc0\x44\x38\x86\x5e\x11\xae\x6c\xe6\x4e\x8e\xff\x82\xb6\xaa\xfb\x24\xac\x2f\x05\x2d\x3f\x1c\x94\xa4\x34\xf0\xde\x6e\xf1\x75\x29\x67\xcb\x8a\x5d\xa5\x20\xea\x61\xe9\x08\x81\xce\x00\x5b\x9a\x43\xcb\x03\x96\xb7\x01\x2b\x09\xef\x00\x56\x90\x93\x87\xc2\xe7\xb8\x14\x43\xf2\x17\x24\x0b\x61\x40\x7a\x9d\x97\xa4\xdc\x6c\x8a\xa9\x9e\x76\xb5\xc8\xf9\x8e\x49\x70\xc2\xed\x24\x8c\x05\x3a\x00\xb8\x6e\x6a\x75\x86\xd1\xb9\x9b\xcf\x41\x38\xac\x3a\x74\x89\x85\x31\x31\x72\xf2\x90\xf9\x6c\xb0\x6c\x48\xbe\x55\x2b\x4d\x09\x21\x75\xc1\xa6\x50\xa7\x22\x27\x0f\xab\xef\xac\x31\xef\xc3\x4a\xd5\x29\x8b\x6a\xaa\xeb\x0c\x4f\xa7\x83\x41\x59\x54\x1a\x15\x54\xc1\x83\xe9\x60\x90\xab\x92\x07\xd3\x0d\x59\x3a\x8e\xb2\xdc\x62\x33\xbc\x9d\xb4\x24\x42\xdd\xe4\x8c\x60\x55\xec\x46\x2f\xc1\x3a\xbf\xaf\x2e\xd0\x1b\x3d\x7e\xea\xc7\x3f\x44\xa5\x21\x3a\x45\x65\xc0\x2d\xc5\xcd\xad\x37\xe5\x01\x16\x0b\xb9\xb4\xaa\x80\x50\xc6\x3f\x86\x38\xdf\x2c\xd4\xdb\xa9\x61\x69\xe8\xaa\xa6\x87\x7a\x47\xd9\xcf\x8f\xbf\x75\x3b\x4a\xc1\xd0\xef\x9f\xd2\xed\x9f\xc1\x00\x62\x89\xf8\xb8\x1c\x65\xc1\xa7\x68\x30\x28\x3d\x8e\x7f\x8b\xb6\x5b\xfc\x49\x61\x2e\x9d\x9f\x7d\x54\x1c\x68\x48\x21\x03\xa2\x66\xb4\xf9\x98\x91\xdb\xad\x47\x56\xd1\x46\x56\x4a\x44\x07\x59\xb5\x11\x2a\xf5\x46\xa8\xe4\x2f\x88\x15\xb4\x90\xd3\x29\x39\x3a\xd1\x21\x4f\xfb\xd1\x53\x10\x61\xd1\xd3\x40\x35\x74\x71\x60\x68\xbb\xf5\xd2\x9a\xeb\x28\x9e\xb5\xe2\x31\x0b\x31\x3c\x9d\xaa\xcd\x56\x88\xe1\x83\xe9\x81\xc7\x53\xda\xc1\xd3\x82\x29\xa0\x55\xea\xb2\xc2\x34\x30\xb9\x21\x39\x07\xc6\xe2\x5b\x21\x93\x6a\xe8\xdb\x69\xe0\x5f\xf9\x31\x8c\xc7\x19\x99\x16\x38\x39\x9f\xd8\x6c\x72\x46\x04\x16\x44\x5f\x0b\xb5\xf6\xe4\xe4\xa0\x1a\x0c\x72\xbe\x21\x6b\x84\x6f\xd4\x15\x7c\x14\x9f\x8e\xb9\x6e\x95\xa7\x0c\x74\x0f\xe9\x68\x5e\xcd\x1f\xcf\x1d\xa6\x0c\x06\xed\x92\xdc\x1c\x82\x6e\xa0\x37\x7e\x67\xec\x3f\xcc\x8a\xf4\x75\x7e\x0e\x74\xd6\xf6\x36\x49\x94\x8d\x2e\x2b\x36\x57\x6c\x73\xc8\xbd\x1d\xe8\xa9\xa6\xa8\xb4\x85\xa2\x1f\xf2\x55\x08\x5b\xb3\xfa\x97\x39\xc5\x85\x9c\x76\xea\x5e\x26\xea\xee\x35\x4f\x03\xfc\x36\x41\x49\x0c\xe7\x22\x97\x96\x89\x73\xd1\xf0\x75\x0a\x49\x4f\x1a\xb5\xa5\x49\xce\x3b\x5c\x57\x1e\x84\xa7\x28\x27\x74\xb4\xa6\xf4\xc3\x2b\x2a\xcb\x5c\xa2\x71\xe9\x35\x8c\x10\x89\xb7\x73\x94\xe4\x0c\x99\xa8\x34\xd0\x81\x0e\x97\x60\x1d\xed\x7c\xee\x24\x48\xd7\xed\xca\x8f\xbf\x7d\xd8\x28\x0a\xd1\x28\x0a\xb1\x22\xbc\x68\xa6\x78\xa6\xfe\xa9\x2d\xb1\x80\x1f\x0f\xa6\x78\x36\x18\xe4\x8b\xc1\x72\xb3\xc9\x17\x83\xf5\x60\x70\x03\x73\x5c\xe1\x19\xc2\xab\xcd\x26\x5f\x11\x89\x70\xe7\x8e\x34\x9b\x54\x13\xa1\xef\xaf\x6f\xa5\xc8\x15\x08\x2a\x34\x5e\x15\xb3\x69\x8e\xc6\xd5\x64\x66\xae\xb6\x2b\x55\x3a\xd3\x34\x70\x85\x90\x8f\x21\xe1\x41\xfa\x29\x0f\xf7\x2b\x10\xeb\x02\x82\x24\x85\xf0\x71\xc1\x67\xc1\xd3\x29\x05\x1e\x67\xb4\x13\x2d\x44\x63\x59\x86\x32\xd8\xf8\x4d\xbc\xf1\x49\x53\x30\x45\x20\x1a\xd8\xf4\xd8\x50\xf3\xa2\xc2\x7c\x1a\x1c\x37\x6a\x7c\x9f\x93\xae\xae\x9e\xf8\x9c\xc5\xf7\x19\x1e\x89\x17\xfc\x8c\xdf\x44\x61\xaf\x76\x69\x8a\xfc\x44\xe4\x04\x70\x74\x2c\xd1\xe8\x93\xa8\xac\x29\x47\x7e\x86\xc6\x3c\x32\xe3\xf0\xbd\xbc\x8d\x3c\x50\x47\x82\x96\x73\xfb\x15\x3a\xf0\xe4\x7b\x30\x70\xf7\x35\x17\xcf\x34\xa8\xab\x98\xaa\xca\xc3\x9e\x4d\x58\x21\xa7\x16\xd2\xae\xb8\x1a\x0c\x2a\x67\x9d\xe3\x1c\xda\xf4\x61\x44\xad\x31\x45\x8e\x54\x5f\xe6\xe5\xd3\x6a\xae\x33\x62\xe6\x01\x56\x0b\xcb\x51\x10\x88\xc9\x14\x4a\x98\x6c\xf1\x93\xc1\x20\x7f\x42\xca\xf8\xb2\x87\xe0\x4a\xee\x2f\x5e\xe8\xe0\xb3\xea\xec\xc9\x88\xb2\xba\x11\xf4\x85\xd1\xc6\xe6\x68\x9b\x23\x58\xc8\x27\xa1\x04\xf9\x71\xaf\xf5\xb6\xb6\x81\x5d\xd1\x52\xa4\xc3\x38\x94\xf3\x79\xac\x5c\x76\x02\x52\x63\xd8\x51\x53\xf1\x91\x8a\xb7\x54\x5a\xef\x29\x5b\x54\x83\x0f\xa1\x71\xa2\xcf\x29\x04\x5f\x2e\xca\xe9\x81\x9b\xa7\xba\x64\xa8\x12\x52\x93\xdb\xad\x8b\xd1\x1d\xf8\x11\x7b\x14\x87\x9c\x1b\x5c\x63\xed\x6d\xad\xef\xfb\x14\x7f\xa0\x37\x10\xc0\x4e\x62\xaa\x0e\x75\xf8\xcd\xb0\x3b\x63\xc7\xc5\x74\x8b\x8e\x4f\xb1\x6a\x92\x34\x08\x2b\xd2\x30\x72\x6f\x5b\x71\x1f\x20\xdb\x7e\x5b\xde\x67\x6f\x39\x7e\x4a\xc2\xea\xfd\x98\x05\x2f\x9c\xfd\x01\x10\x71\x2b\x33\xfb\x70\x48\x51\xce\x48\x2e\x88\x2c\xe8\x14\x8d\xf4\xe8\xd1\xa8\xaa\x8d\x1a\xbe\x62\x57\x9b\x0d\xf3\xcf\x74\xbe\xd9\x5c\xe4\x0c\x8b\x91\x9b\x15\x2e\xd4\xa3\x99\xee\x14\x0b\x3f\x8b\x96\x24\x01\xc6\x10\x7b\xbc\xc6\x8b\x44\x6e\x8d\x28\xc3\x4d\x89\x14\x56\x58\xf9\x81\x9c\xf8\x7d\xfe\x6a\x3f\x45\x6f\xd2\x52\x84\x02\x02\xfe\x94\xc4\x39\xe9\xdd\x81\x80\x14\x2a\x52\xa6\xf9\xc2\x6a\x4e\xc4\xe8\x87\xf7\x2f\x9e\x5e\xfc\x78\xf6\x8f\xe1\x87\xe1\x10\x27\x95\x9b\x0f\x15\x97\x08\xb7\xda\xd8\x7d\x8e\x22\xe4\xdd\x7b\xdf\xdd\xac\xa9\x71\xf1\x7d\xb7\xa4\x87\x9f\x68\xf9\xe1\xf0\xba\x5c\x1f\xce\xbc\x98\xf2\x70\xcd\x57\x37\x8b\x6a\xb5\x3a\xe4\x6c\x75\x73\x58\x37\x6b\x90\x05\x1c\x96\xec\x10\xbc\xac\x0f\xad\xb4\x32\xd3\xd7\xde\x0e\x7f\x37\x44\x15\xc9\x19\x38\xbe\xa3\xe2\x44\x51\x57\x56\x9c\x4e\x6d\x88\x01\xed\xbd\xbe\xdd\x3a\xbb\x8b\x7e\x69\x74\xb5\xc8\x5f\xe5\x12\x19\x3a\xa6\xc0\x12\x1f\x0c\xd1\x8d\xa4\x0a\x6e\x24\xb9\x20\x95\x23\x64\xbf\xd0\xf2\x43\x8e\xf4\x65\x52\x1d\xfc\x85\x85\xea\x14\x11\x42\x66\x56\xf2\xef\xa4\x90\xdb\xed\x16\xcb\x58\x06\xd7\x32\x1e\x57\x30\x7e\xd5\x0b\xd7\x17\x0c\xdc\x10\x0e\x41\x0c\x7e\xd8\xd4\x74\x7e\x58\xd6\x1e\xd2\x1f\xe8\x8d\x8b\x8e\xd7\xb6\xbb\x9f\x51\xcb\x8e\x58\x3a\xaf\x07\xef\x87\x6c\xa4\xde\xf1\x08\x97\x65\xdd\x86\xdb\x11\x00\xce\x71\x06\x06\x80\x2d\xf0\x45\x83\x50\x04\x3e\x06\x21\x6b\x83\x30\x78\x1d\x40\x31\x1e\xcb\x9c\xae\x68\x52\x44\x7d\xa4\x85\x2d\xcb\xb2\xce\x25\x1a\x0c\x72\x5d\xf1\x30\x1a\x51\xef\xb4\x75\x02\x78\xb9\x9f\xfa\xb9\xd0\xdb\xf2\x50\x35\xf2\xaa\x5c\x4f\xb3\x2d\x96\x6a\x1b\xbf\x23\x62\xf4\xfc\xf1\xdb\x8b\xd7\x8f\xdf\xbd\xf8\xf9\xec\xe2\x97\xb3\xc7\x3f\xbe\x7a\xfc\xd3\xc4\x54\x1b\xff\x74\x40\xd5\x51\xf2\x82\xbd\x13\x25\xab\xb5\x23\x60\x90\xb5\xb1\xfd\x26\xe5\x4f\x70\xa8\x70\x3e\x47\x58\x31\x06\x0a\xe4\xe7\x44\x18\x8f\xa1\x3c\xfb\xe9\xfc\xcd\x4f\x67\xe7\xef\xfe\x71\xf1\xf4\xc5\xd3\x8b\x27\xcf\x1f\xbf\xfe\xe1\x2c\x43\xf8\x9f\xe0\x5a\xf1\x18\xbf\x36\xff\x5f\x86\xa4\xe6\x69\x9e\x48\x09\x4a\xd4\x41\x1c\xf3\x8f\x2c\x62\x7b\xaa\xcd\xa6\x82\x38\x41\x95\xac\xf4\x55\xca\xed\x21\x4e\xe2\x53\x5b\x35\xf2\x8b\xe1\xa6\x72\x81\x1e\x9d\xa8\xcb\x72\x21\xa6\x07\x86\x8a\x95\x09\x23\x83\x52\x5d\x20\x81\x26\xcf\x44\xb5\x96\x5c\xa8\x67\x88\x2d\x04\x47\x7a\xfc\x04\xec\x1d\x56\x1c\x71\x5b\xd7\x0d\xd7\xbe\xaa\x7e\xcb\x1b\x31\xa3\x9e\xe0\xe7\x68\xb3\x39\x82\x64\x34\x4f\xe9\xba\xf6\x38\x6c\xd8\x93\xdf\x70\x45\x8e\x18\xdc\x9c\x18\xf9\x0d\x4e\xc7\xef\xf3\xa7\x58\x6b\x8d\x04\xc2\xea\xc5\x6f\x9a\xaf\xdf\x02\xf0\x2a\xd4\xd1\xb2\xeb\x96\x84\x43\xee\x27\xcb\xb2\x62\x00\x05\x10\x23\x1d\x84\xdb\x81\x8d\x18\x97\xd5\x42\x71\xc5\x47\xa7\xf8\x29\xda\xe6\x27\xe9\x46\x7b\xa7\x13\x8f\x5f\x0e\xb3\xf1\x25\x5d\x70\x41\x33\xc7\x59\xf9\xbc\x16\x2f\x1f\x9d\x40\x5e\xd7\x7f\x42\x0a\x4c\xcd\x53\x60\x4e\x7e\x30\xb9\x1d\x05\x42\x07\x17\xf0\xbb\xa0\x58\x4e\x15\x15\x35\x73\x44\x5b\xcf\xfa\xbd\xd8\x17\x69\x70\x88\x0d\xa0\xd7\xe4\xfd\x98\x63\xf0\xc2\x18\xd6\xdc\x07\x35\xe6\x96\xd9\x8b\x1e\x1c\x62\x24\x90\xf0\x0f\xc3\x96\xe7\x21\xb6\x3c\x37\xd8\xf2\x22\xc6\x96\xe7\x7f\x12\xb6\x9c\xe0\x17\x7f\x08\xb6\xe8\xfc\xe5\x1e\x5b\x14\x92\x4c\xf2\x8a\xbc\x0e\x71\x24\xc0\x90\x71\x80\x21\x1e\x3f\xb0\x2c\xce\xa7\x83\x81\xfa\x0b\xb1\x6b\x60\x08\xd5\xce\x21\xbc\xd5\x86\x8f\x5b\x60\x59\x9e\xe1\xdf\x2c\xb6\x3e\x77\xfc\x9d\xc5\xb8\xef\xad\xd6\xd6\xe7\xf8\x72\x21\x19\x3d\x9f\x0b\xf7\xb8\xaa\xa8\xa7\x07\xcd\x66\x93\xeb\x9f\x6a\x49\xb0\xba\x81\xa9\x92\x82\x81\x3f\x2f\xb7\x4e\xf7\x2f\x18\x2c\x2a\xf3\xd0\xd3\xc2\x0b\x2d\xa6\x2b\x84\x0e\xe8\x7c\x1f\x54\xf4\x12\x36\x75\xe2\x6e\x36\x80\x85\x98\x23\xb4\x45\xc1\x35\xff\xd7\x2f\x5b\x7a\x41\x03\xef\x43\xdf\xda\xfb\x1c\xdd\xbe\x1c\x0e\x7d\xc1\x2f\x39\xba\x3d\x3e\x7e\xf9\x1d\x51\x78\xfe\x4f\xc7\x1c\xbf\xd6\x9c\x76\x1e\x8e\xe4\x67\x7d\xb6\xbc\xcf\xb5\x54\x91\x76\xc4\x89\xbf\xe4\xe1\xce\xff\xb1\x2d\xfe\x3a\x3e\x35\x17\x5f\xea\x45\x02\xec\x91\xba\x06\x1f\x6b\xa1\x97\x54\x8c\x63\xc1\xa6\x83\x81\xd0\xbf\x86\xa7\x53\x74\x5b\x11\x76\x00\xc2\x37\xcb\xa3\x55\xbe\x8f\x1f\xfa\x82\x81\xb2\xc4\xb5\xbc\xc5\xa1\x35\xfa\x9b\x15\x29\xb4\x24\xae\x22\x8d\x1f\x57\xa5\xc6\x55\xa9\x71\xa9\xcb\x78\x35\xc5\xa5\xfa\xa7\xee\xe4\x35\xfc\x78\x30\xc5\x10\x4b\xf8\xc7\x5c\xe7\x1c\x1d\x0c\x72\xa1\xaf\x3d\xda\xbb\x19\xaf\xc2\x27\xc7\xdb\xac\x02\xf8\x7c\x65\xd9\xfe\x10\x2f\x48\x28\x8e\xf8\x47\x28\x44\xf2\x07\x2a\x10\x65\xe0\xcb\xac\xf0\xae\x45\xb5\x24\x72\x92\xfc\x23\x10\x00\xf1\x47\x27\x10\xea\x59\xba\xa3\xb4\x4e\x20\x29\x08\x7b\x62\x24\xad\x47\x92\x96\x62\xce\x3f\x19\xb5\x84\xbd\xfd\xc5\xd9\x77\xc4\xa1\x35\x32\xe6\x8b\xc3\xaf\x26\x79\x43\x04\x86\x10\x51\x0d\x6e\x99\x4f\x42\xbc\xd7\xbf\x87\x64\x45\x12\x2b\x82\x33\x58\x5d\xce\x96\xe0\x8e\x15\x70\x77\x72\x74\x61\x8c\x74\xad\xa3\x5c\x45\x41\xf3\x95\x2a\x37\x63\x43\xdb\x9c\x8e\x82\x6b\x44\x52\x6e\x29\x14\x37\xdd\xac\x07\x03\xf3\x03\x10\xdc\x0a\x6f\x08\x21\x62\xb3\x31\x77\x1b\xa1\x66\xc5\xf4\xac\x18\x1a\xc3\x14\x8d\xe4\x17\x12\x51\x51\x9f\xbb\x03\x90\x1e\xe1\x72\x30\xf8\x35\x3f\x01\xa0\xf5\x8a\x4c\x9f\x46\x9f\x1a\xa9\xe9\xd3\x6e\x7b\x8d\xd6\x26\x6d\x9f\xb5\xec\x7a\xcc\x93\x63\x43\xf1\xed\x5a\xf0\xf5\xf8\x76\xc6\xd9\xa2\xba\x6a\x20\xc0\xe0\xf8\xe8\xc4\x04\xdf\x3a\xdd\x6e\x51\xcf\xa0\x9f\xe1\x4c\x7d\x99\xe1\x9e\x4f\x1f\x6c\x11\x7e\xa6\xfa\x59\xc3\xa2\xfd\x9d\x1c\x9d\x7a\x82\xfb\xef\xc1\x39\xb2\xeb\x0e\xea\x29\x81\x07\xb0\x11\x25\x09\x9c\x40\xe2\xcd\xe6\xe4\xa0\x02\x1e\x9c\xfa\x52\xcc\x87\xa7\x08\x5b\xc1\xa6\x69\xda\x5e\xef\x12\x48\x0d\xc4\x30\x46\x6a\x06\x1c\x21\x34\x19\x3d\x18\x14\x4f\xaf\x96\xab\x15\xae\x56\xa7\x10\xc2\xe3\xf9\x0d\xfc\x6f\x96\xf9\x49\x41\x46\x3a\xc8\x48\x47\xbd\xf6\x62\xaa\xf5\x9e\x3e\xe2\xed\xf3\x92\xce\x73\xe4\xf3\x6d\xb7\xf8\x98\x83\x53\x90\xf4\xe6\xbc\x05\x50\x81\x4f\x90\x3d\xb9\x72\x50\x51\x24\xc1\x08\xfc\x79\x0c\xc6\x4a\x21\xeb\x7b\xf6\x49\xc3\x31\x7c\x32\xe7\x58\x0a\x90\x32\xa8\xe6\x21\x99\x2a\xcd\x15\xf7\x50\x3e\x3a\x1d\x0c\xba\x43\x2e\x8f\x4f\x15\x2b\xe0\xe0\xfc\x1f\x2d\x4b\xc4\x95\x36\x79\xd3\x29\x41\x68\x70\x84\x51\x7a\x3f\x5c\x4d\x61\x6a\x45\x58\x0a\x53\x59\x07\x53\x2b\x8b\xa9\x15\xa0\x99\xb9\x4b\xc2\xb1\x5d\xe7\xff\x01\x0a\x16\x75\x7a\xfa\xd1\x49\x7a\x3f\x7c\xd9\x17\x5b\x9c\x8b\x4c\x87\xbb\x55\x03\x3f\xd5\x4e\xa7\xed\x9d\x06\x88\x51\x25\x86\xad\x95\x25\xb0\x3c\x5c\x2d\x4f\xf7\x43\xae\x97\x07\x6e\xf9\x94\x7c\xf3\x5f\x79\xf1\x5f\xff\x39\x9a\x0e\xd1\x37\x9e\x66\x30\x1a\x06\x5e\xd4\x87\x75\x2e\x28\x2a\x4e\xa6\x1e\x1e\x15\xdd\x4f\xb8\x05\x3d\xf1\x3e\x13\x5b\x2b\x3b\x85\x09\xec\x1b\x4f\xb2\x2d\x4e\x75\x46\x64\xbe\xa9\x82\x06\x32\x52\x31\x89\xdf\x90\x42\x4e\xc7\xc2\x85\x66\x6a\xd9\x59\x29\x00\xa6\x9a\xb7\xc1\x1f\x7d\x07\xe1\x32\xb2\x40\xd9\xce\xbc\xb2\x7d\xa8\x58\x27\xa6\xd5\xed\x12\xdd\x32\xab\x4e\x15\xf8\x14\x19\xc6\x29\xee\x3f\x92\xcf\xfc\xa1\x9d\x5b\x8d\x8a\x0b\x7b\xdf\x9e\xb8\xe5\x49\x1f\xaf\x62\x8b\x4b\xab\xd9\x3d\xac\x8c\x45\x85\x1e\x84\xd6\x44\x9b\x5b\x0c\x55\xb7\x18\x7b\xb8\xf7\xb4\xdb\x35\x49\xbb\xf3\x63\x5d\x21\xe9\x98\xe5\x2d\x23\x7a\x80\xc2\x07\x03\xf8\x67\x55\x5f\xd1\x75\x03\x98\x4a\x01\xd7\x83\x62\x8a\xb0\xd6\xf7\x70\xaf\xef\x19\x22\x5e\xb0\xa9\xbf\xa3\x95\x31\x7b\x2a\x7a\x4c\x14\x1e\x20\x91\x97\xc0\x91\x02\x3f\x8a\xb6\xed\x0c\x96\x25\x6d\xa9\x7e\xa8\xdf\x51\x35\x8d\x6f\x13\x40\xd3\x0e\x5a\xc4\xc9\xdd\x29\x4a\x6a\x88\x94\xba\x9d\xfe\xbb\xb9\xdd\xf9\xc6\x1a\xea\xb4\x92\x70\x7f\xa3\x1d\xc1\x8e\xa2\x7d\x2d\xca\x54\x1d\x84\xd0\xf3\xbf\xfb\xae\x35\x83\x41\x9e\x73\x35\x4e\x89\x50\x5f\x1d\x47\x92\xd4\xe5\xf3\xdf\xdc\x2d\x0a\xc8\xc2\x2a\x4d\x16\xa4\x85\x43\xe8\x34\x6f\x6d\x7a\x2f\xc0\x5e\xf9\xc0\xa9\xed\xa1\xec\x93\xa1\x6f\xc1\x91\xe0\x65\xe2\x86\xb8\x44\xc9\x95\x35\xc1\x8a\xca\x66\xbc\x61\xd2\x86\xb7\x35\x4e\xe3\xc2\x7a\xe3\x97\x72\xe9\x5a\xd0\x10\x3d\xaa\x68\x1e\xc6\x80\xb1\x7c\x73\xd4\x3e\xc3\x35\xcd\xc3\x12\x3f\x07\xac\x6d\x18\x53\xb2\xed\xa4\xdd\xb4\xec\xca\x81\x43\x17\xf8\x18\x0e\x3e\x32\xcb\x45\x6c\x68\x1d\xcd\xce\x0b\x5e\x6d\xfa\x59\x8d\x26\xa1\x60\xe1\x2e\x39\xba\xf1\x48\x0d\x28\x8c\xaa\x91\x70\x43\xc9\xe1\xc0\xd0\x6a\xbe\x90\x53\xd1\x59\x26\x46\x17\x1f\xf9\xaa\x94\xd5\x8a\xa2\x6d\x0e\x7c\x8e\x55\xc8\x7e\xd0\xf2\x9f\xa8\xdf\x9c\x05\x32\x7b\x73\x29\x71\x1f\xfc\xaa\xa3\x95\x31\x2c\x40\xa6\xe1\x00\x8e\xa2\xc9\xb7\x25\xd1\x1d\xe3\xd1\x0e\x40\x9b\xdd\x2b\x89\x5b\x98\x08\x29\x36\x64\xe4\xca\xb8\xbe\xe9\x58\x22\x2b\xc2\xae\xfd\xb9\x42\x9e\xc8\xe1\x35\xe0\x5d\x8b\x5d\x00\xca\xa5\x68\xb1\xf0\x08\x59\x15\x62\xfa\xe8\x44\x71\x32\x8a\x24\x08\x1f\x20\x28\x1e\x42\x7c\x70\xb6\x43\x53\xc8\x65\x6d\x93\x31\x18\x84\xbf\xdd\xa2\x03\xc8\x63\x98\xab\xbf\x9b\xcd\x09\x1a\x1a\xfd\x00\x01\x1e\x01\xb4\x04\x3a\x2d\xa9\xcd\x21\x34\x3c\x35\x81\x26\x61\xd7\xe5\xda\xb8\x52\xee\x3a\x60\x13\xc3\x88\x66\x2c\xd1\xad\xea\x5d\x4d\x4f\xfd\x3f\x3e\xde\x77\x04\x0d\x0b\xc6\xd0\x5a\x0b\xf5\xa2\x95\xb7\x31\x08\xac\x69\x48\x86\x17\xa4\x05\xbc\x5c\x5c\x25\xc5\xb2\x8c\x2b\xc2\x0a\x3a\xc5\x2d\xa1\x80\x0b\x8e\x24\x8d\x45\xbc\x3d\xf2\xc0\xa7\x5d\x11\x9f\xe1\x10\x0b\xf0\xf3\x63\x10\x35\x5a\x10\x61\xa6\x46\xfd\xd4\x54\x5d\x98\x95\x1a\x73\x0b\xb4\x66\xc2\x69\xfe\xc1\xe1\x94\x99\x1b\x27\x95\x3a\x31\xa5\x62\xf0\x7d\xe6\x8b\x1c\xe0\x2a\x11\x58\xe0\x77\xe0\x8a\x79\x04\x54\x88\xe2\xa0\x06\x7e\x7c\x6c\x7f\x69\x51\x55\x55\x70\xd8\x19\x53\x27\xb6\xb6\x3b\x2c\x6f\x8f\x39\x71\xc2\xa3\xdb\x14\x3d\x73\x21\xba\x62\x82\x86\x5c\x2c\x10\xbd\x2d\xf7\xd8\xa8\x95\x82\xee\x24\xaa\x43\x84\x22\xd4\xa2\x5d\x15\x8d\x13\xa7\x45\x4c\x43\x4d\xd9\x41\x1a\xca\x89\xad\x0b\x47\xb0\xda\xbe\xcc\x6f\xdf\x88\xb0\x69\xc3\x3b\xe6\x99\x23\x09\x02\x97\x70\xf2\xf1\xd3\x68\xcd\xd7\xcd\x4a\x31\x6e\x8b\x05\x9d\x49\x3a\xcf\xfd\x34\x20\x0e\x78\x04\xf0\x76\xe5\x0e\x73\xe5\x3e\x06\x54\x74\x4f\xc3\x6c\x04\xde\xa7\x61\xcf\x93\xdd\xc3\xa0\x58\x0e\x4f\xb1\x40\x63\xa9\x50\xcb\x32\xdc\xcb\xca\xc7\x53\xa0\x48\xeb\xdb\x74\xd0\x7a\x1a\xa8\xc0\x1a\xa6\xa5\x20\xf3\x0c\xe1\x05\x44\x58\x5d\xef\x60\x16\xec\xa8\x67\xea\x2c\x88\x4f\xfa\x4f\xb4\xfc\xd0\x2a\x89\x99\x05\x53\x7a\x5d\x7d\xee\x70\x09\x36\x11\x5f\x5c\x0a\x83\x6f\x95\xcd\xe9\xba\x55\x32\x0b\xd9\xa0\xc4\xab\x56\x99\x2c\xaf\x3a\x05\xad\x2a\x8b\x38\x35\xb1\x29\x5c\xa9\x7a\x36\x28\x3f\x48\x1c\x5c\x96\x7f\x38\x98\xc3\xda\x86\x93\x92\x6d\x63\xf8\xb8\xc9\x94\x25\xf8\x29\xbe\xc3\xee\x34\xc5\xc7\x44\xea\xa1\xde\x48\xe6\x50\x1f\x6e\x8a\x77\x1d\xc9\xce\x0a\xbf\xaa\x15\x37\xd2\x91\xac\xc8\xae\x65\x49\xa8\x39\x33\x36\xdf\x01\x97\x5a\xe7\x31\x5f\xc1\x61\x87\x2e\x8c\x0d\x27\x47\x0f\x17\x3e\x68\x6f\xdb\x7c\x55\x90\x9c\x93\x05\xec\xa7\x1c\x21\xbb\xa8\xda\x8c\x95\xc1\xf1\x8c\x02\x0d\x38\x9b\x0e\x06\xb6\x5d\xf5\x84\x0e\x78\x48\xdd\x42\xdb\x78\x6e\xe9\x0d\x98\xfa\x87\xdc\x57\x85\xd0\x60\x70\x24\x93\xaa\x98\xc1\xa0\x01\xb7\x73\xbd\xed\xb9\xda\xf6\xd6\x88\xa2\x05\xab\xd6\x51\xd8\x6d\x2c\xe1\x75\x73\x72\x44\xf2\x07\x83\x00\xe3\x50\xc7\xee\x61\x57\x2b\xc1\x87\x1b\xf2\x60\x67\xff\x74\xde\xd3\xfd\x5f\xee\xd1\x7d\xdc\x48\xd4\xfb\x5f\xda\xbd\x47\xd0\xe9\xe9\xfb\x5f\x77\xf7\xdd\xdb\x44\xd4\xf3\xbf\xb6\x7b\x06\x63\xb7\x9e\x1e\x4f\xff\xba\xbb\xcb\xce\xb7\x51\x57\xa7\x7f\x8d\x3f\xb8\x00\xf7\xe0\x27\xc0\xa3\xbc\xf9\xc4\x5e\x95\xeb\xbe\xdd\x08\x6c\x5e\x6e\x7e\xa5\x98\x1b\xd4\x6d\xf9\x85\x76\x3d\x6c\x6d\xf1\xc0\x8b\xa1\xe5\x0f\xd2\xb1\x04\x97\x44\x14\xd4\x73\xfc\x32\x34\xe4\x6e\x75\xb7\xa8\xd8\x3c\xd5\x9f\x3a\x02\x6c\x8f\xfe\x18\xf6\x7d\x56\xdd\xed\xab\xd8\x9f\xd0\x4c\x45\xdb\xfb\xf8\x61\xb0\x83\x8a\x54\xe9\x61\x80\x4c\xed\xa9\x22\xf9\x69\x15\xb0\x5e\x8c\x0e\xd0\xf3\x0c\xce\x89\x4c\xf1\xf7\x2c\x92\x50\x05\x1c\x62\x0a\xe6\xb8\x2a\xe4\x94\x88\xd6\x41\x4e\xe9\x87\xce\x18\x5a\x50\x30\x54\x6f\x87\xcb\x88\x50\xf4\x46\x8d\xaa\x03\x8a\x16\x74\xd4\xf0\x02\xe8\x54\xa1\x33\x48\xc7\xc4\xa8\x35\xae\xfb\x62\x43\x77\x44\x60\xf6\xe7\x25\x58\x6d\x43\xff\xa3\xd3\x78\x08\x91\x5a\x38\x6d\x7e\x63\x36\x8c\xad\x68\xd7\x06\xd3\x0e\xc7\xe4\x2b\x75\x96\xdb\x4e\xcb\x1a\x24\x03\x63\xef\x8e\xd3\xa6\xe3\xb1\xd3\x71\x85\x62\xa4\xec\x03\xb4\x6d\x7b\xa5\x0e\x13\xcb\x23\x12\x42\xf2\x9a\xd4\x9b\x4d\x0a\x4d\x8a\xd5\x74\x30\xc8\xeb\x62\x05\xca\xf1\xbc\x21\xcd\x66\x53\x4c\x91\x3e\x75\x56\xb8\x2a\x56\x53\x84\x42\x4f\xa4\x58\xe3\xaa\x9d\x46\x4e\x1e\x72\x6f\xf8\xcc\xb5\x48\xab\x29\xf8\x14\x37\xe0\x38\x82\xba\x3b\xc1\x5d\xc2\x7b\xc3\xfa\xa5\x76\x02\xb0\x6a\x59\xe7\x72\x18\xdc\xe9\x7b\x9b\x83\x4f\xd3\xe3\xf8\x45\x71\x7b\xf7\x19\x86\x62\x0f\xfb\x46\xb1\xb3\x31\xf5\x61\x7a\x0c\xef\xca\xab\xfa\x5e\x63\x50\xac\x5e\xdf\x18\x76\x36\xa6\x3e\xec\x1d\x43\xef\x15\x5b\x96\x57\xbb\x62\xf9\x02\x2b\x6a\xae\x50\x9a\xa1\xd4\xf1\x7b\x7b\x46\xb7\x6b\x70\x3d\xb8\x12\x71\xc6\x7d\xa3\x8c\xf8\xe7\x9d\xe3\x8d\x39\xed\x3d\x47\xde\x33\x88\x36\xa6\x85\xb5\x76\xcc\xe6\x8e\x69\xf4\x8d\x3f\x16\xe5\x99\x3b\x55\x3c\x81\x71\xf0\xaa\xad\xef\xa1\x08\x84\x4a\x51\xfd\xf8\x8a\x21\x77\xcf\x7f\x27\x9a\xba\x63\x56\x6d\x56\xa8\xdd\xc6\xd1\x48\xb5\xd4\xa2\xb2\x3b\x76\x9c\xf9\x20\x43\xea\xb8\x93\xdd\x43\x2d\xd1\x62\x9b\x6a\x87\x5c\x40\xd8\xa4\xbe\x50\xb6\x87\xf8\x4a\x5f\xed\xf6\x1d\xa0\xbe\x09\xf6\x0e\xaf\xd3\xda\x1d\x83\x33\xcd\x75\x86\x66\x4e\x95\x44\x73\xed\xc3\xd2\xdd\x66\xee\x3a\x35\x75\x57\xfe\xe8\xa8\x40\x65\x13\x1c\x1d\x8c\xb0\x9e\xa3\xa3\x52\x47\x07\x2b\x2a\x38\x3a\xd4\x4d\x42\x16\x95\x3a\x2d\x7a\x59\x31\x80\xec\xf7\xf6\x82\xbc\x2f\x6c\x5d\x6a\xfb\x3e\xe8\x26\x5a\xbc\x03\xbe\x3e\x5b\x7e\x0f\x84\x93\x4d\x7e\x31\x8c\x6d\x77\xff\xdf\x40\x19\x4c\xbe\xba\x13\xb0\x20\x6e\x09\x28\x12\x2b\xf4\xb3\x16\x56\xec\xbb\x3e\x5a\xb6\xd1\xbb\x3a\x9d\xd6\xee\x58\x1b\xd3\x5c\x67\x65\xb4\x41\xf7\x33\xc1\xaf\x13\x2d\x1a\x6b\xef\xbd\x06\xb9\x75\xf1\x40\x21\x08\x49\x2e\x71\x01\x39\xed\x32\x23\x2c\xc9\x70\x4d\xe5\xb8\xa3\x78\x74\xb2\x14\xba\xc5\x57\x61\x85\xf6\x7c\x74\xb5\xed\x76\x8a\xb4\x9c\xca\xae\xf9\x12\xb4\xa1\x73\xb4\x0e\xb4\x95\xc5\x92\x4e\xc9\x5c\xfd\x05\x71\xd6\x9c\x92\x5b\x4b\xb0\xc7\x47\x27\xb8\x6d\xbc\x43\x59\x73\x4d\xcd\xd3\xa9\x31\xe5\xd1\xa9\x8c\xaf\x29\xb9\xd5\x01\x36\x6c\x00\xa2\x6b\x2a\xcb\x8b\x8b\x0c\xcf\x9d\xe2\x64\x3c\xa7\x5b\xfc\x91\x76\x0c\x2c\x41\x19\xe7\x9c\xb9\x42\xcf\x38\xe7\x6c\x13\x2b\x32\xb5\x81\xa9\x91\x1c\x79\x2d\xce\xa1\x38\x60\x44\x6c\xb5\x29\x03\x24\xfc\xa2\xb9\xc4\xcc\x3b\x02\xa8\xc7\x0a\xe1\x6a\xeb\x7b\xb1\x7c\x6f\xd2\x74\x3e\x5f\xd9\xab\xcd\x15\x5c\x5f\x35\xcc\xde\x2c\xf0\x0c\x9a\x37\x96\xf5\xb8\xa3\x7b\x9f\x81\x1f\x08\xb5\x01\x51\x6c\x57\xc9\xbd\x4c\xa8\x93\x00\x45\xd1\x14\xac\x69\x46\xf7\xf2\x33\x03\x5d\x91\xf4\xda\x23\x71\x20\x09\xd8\x4d\x6e\xd1\x38\xef\x0c\x86\x8e\x2e\x2e\xb4\x5c\xf2\x35\x67\x67\x6e\x01\x27\x3d\xe5\xf9\x35\x45\xe3\x3e\x4b\xb4\xc4\xe2\x22\x4c\x47\x71\x29\xe4\xc4\x4d\xcf\xda\x19\x46\xc4\x5f\x18\x27\xb0\xab\xde\xa0\x66\x51\xd6\xe3\xba\xfa\x8d\x5a\xe9\xe1\x75\x55\xd7\xd4\xc9\x12\x97\x95\x74\xbf\x57\xd5\x75\xe5\x14\xb0\xaa\x2d\x2b\x42\xfc\x40\x6f\xac\x8e\xb4\x96\x5c\x50\x45\xf8\xd4\x6a\x5e\x26\xc3\x00\xa6\xf3\x4c\xc4\x4c\xd0\x07\x7a\x33\xa1\x63\xfb\x33\xa7\xc8\xc6\x86\x87\xf6\xcd\x6a\x75\xd8\x29\x61\xc4\xf9\x7a\x0a\xc3\xa1\x0b\x28\xaf\x70\x47\xfa\x71\xeb\x1c\xe2\x02\x7c\x79\xcc\x27\x6a\x9e\xf0\x81\x91\xe4\x8f\xa3\xd2\x4e\x88\x9d\xa4\xe1\xc9\x1d\x53\x88\xb2\x6f\xc2\x90\x44\x27\xbe\xcf\x45\xb7\xed\xf0\x2b\x58\x81\x47\x6e\xc9\x6c\x10\x10\xf5\x7b\x38\xf4\x9a\x26\x23\x91\xd7\xb0\xd2\xfb\xc6\xf1\x90\x61\xa1\xd4\x8c\x71\x38\x80\x75\x23\x62\x9c\x09\x3e\xb2\x86\xc7\x1d\x94\x09\x91\xc4\xa2\x8f\x71\x84\xbb\xbc\xc3\xe4\x67\x5e\xca\x72\x5f\x83\x9f\x9e\x80\x7a\xae\x9d\x4e\x9e\xd7\x2e\x30\xc3\xba\x44\xee\xe3\xf0\xd7\x3b\x40\x3d\xbf\x0b\x4a\xbe\xf9\xaf\xe2\xf1\xf1\x7f\x7c\x35\x1d\xfd\xff\x8a\xff\x1c\x4d\xbf\xc1\x9f\x28\x90\xb2\x2b\x9a\x9f\xd2\x6f\x71\x62\xc0\x17\xd4\xc6\x0a\xdd\x22\xfc\xf9\xae\xda\x3e\x18\x43\x36\xca\xd4\x17\x67\xbd\x5f\xe8\x9d\xf4\x59\xef\x0f\x87\x70\x60\x04\x2d\x27\x74\x6c\x55\xa4\x27\x18\x32\xd1\xbd\xf9\xb2\x76\x34\x96\xb9\xc6\xe4\xf0\x14\x6d\x03\xd3\x96\xb7\xa1\xd5\xd8\x27\xdb\x84\xb7\x48\x79\x12\xbc\x87\x60\x13\xae\x1b\x38\x65\x1e\x53\x72\xab\xe5\xde\xea\x70\xb4\x5f\xa9\xdf\xda\xa5\x7c\x7c\x74\x12\x78\x50\x7f\xa0\x7d\x79\x73\x0d\xad\x17\x09\x3b\x49\xf0\x61\x0e\xad\x0f\x26\x42\x8f\x00\x4b\x34\x7e\xa2\x0e\xce\xc9\x2b\xdd\xee\xd8\x1f\x90\x89\xb4\x83\x74\xb3\x91\xea\xf8\xa7\xc9\x98\x01\x74\xd4\xb0\x0f\x8c\x7f\x62\x96\xd6\x4f\xc4\xb8\x53\x16\xd9\xfd\xbf\xa2\xb1\xa5\x17\x85\x90\x67\xf5\x7a\x55\x49\x58\xfa\x03\x6f\xdd\x55\x85\xd6\x5d\xa0\x10\xf9\x89\xe6\x0c\x05\xa6\x17\x39\x23\x1f\x68\xce\x70\x05\x46\x14\xce\xc0\x56\x0b\xa7\x4d\x3d\x17\xba\xd6\x8f\xe1\xa7\x70\xf5\xdc\xec\x03\x3b\xbe\xc1\xe0\x31\x2d\xec\x14\x03\x3b\xc0\x77\xda\xd0\xa8\x32\x8e\x22\x4f\xc0\xf8\xb0\x13\xfc\x0e\x6b\xe7\x12\x63\x80\x14\x4e\x0e\xeb\x20\xec\xeb\xdc\x66\x35\xe5\xa3\x7f\xf2\x8a\xe9\x77\x0d\x01\xd8\xd4\xa0\xa6\x71\x3e\xfa\xef\x68\xde\xe0\xd2\x18\x85\x1c\x55\x81\x6b\x25\x1b\x69\xc7\xca\xaf\x2d\x9c\x0f\x6b\x2a\x0f\x17\x65\xb5\xa2\xf3\xf1\xa1\xf1\xf5\xab\xd8\xe1\xba\x94\xcb\xc3\xec\xeb\x61\x3d\xfc\x3a\x3b\x9c\xf1\x66\x35\x3f\x64\x5c\x1e\x5e\xd2\xc3\x05\x6f\xd8\xfc\x90\x8b\xc3\x4f\x65\x7d\xe8\x32\xde\x8f\xbe\xb6\xfe\x31\x98\xeb\x71\x96\xb8\xd6\x6e\x4e\x31\xda\xed\x65\xba\x3f\xd1\xbe\xad\x1a\x24\x1e\xd5\xea\x04\xaa\xc9\xcd\x06\x6c\x3d\x64\x12\xd5\xa4\x6a\xe7\x7d\x0b\xdb\x6a\x6d\x98\x93\x6b\x8f\xc0\x32\xe6\x02\x11\x86\xd8\x3f\x15\xd6\xae\x5f\x25\x42\xe3\x54\x23\x90\xe2\x19\x07\xbe\x1c\xe7\xce\x36\xcd\xaf\x81\x5e\xd4\xa3\x13\xbd\x7f\xff\x49\xc9\x37\xff\x39\xfa\x3f\xb4\x9c\x2d\xbf\x0a\x6c\x49\x5f\xc7\x1b\xd5\x93\xb4\xdb\x0c\x1d\x88\xef\x4e\x26\x32\xf7\x61\x93\xff\x49\x71\x36\x82\xac\x9f\xe3\xe0\xc0\xf0\x5e\x16\x80\x3c\xc2\xb7\xb1\x05\xf4\x39\xe9\x4a\x5c\x75\x48\x33\x22\x46\x75\x73\xa9\xc9\x47\xce\x86\xa7\x98\x23\x8b\x78\x38\x33\x3a\xe7\xa8\x0e\x07\xdb\x91\x61\x54\x76\xa2\x98\xde\x86\xd8\xc4\x88\xb0\x17\x1f\x96\xdf\x35\x0f\x51\x5e\x93\x59\x34\x1f\xf4\xdd\xc9\xa4\xca\x73\x39\x5c\x15\xe5\x70\x38\x1d\xce\x50\x6a\x66\xd4\x55\xc0\x33\x5c\xe3\x0a\x6d\xf3\x2c\xc3\x14\x22\x2e\x7a\x80\xbf\x74\x00\xd7\x84\xc9\x19\x47\x8f\xad\x45\xbf\xaf\xfb\x94\x06\xa1\x31\xee\xf6\xdb\x65\x09\x43\xe3\xc0\x27\xb0\xd5\xb1\x74\x1d\xff\x5b\xa7\xe3\x67\x34\x15\x42\x89\x82\xf8\x9e\xb2\x39\x65\xf2\x47\x7a\x53\xc7\x9e\x80\x5e\x16\x9e\xb6\xa1\x1c\x22\x4e\xc0\x84\x92\x79\x35\x4b\xce\xb1\xc0\x39\x73\x2a\x0f\xf5\x8c\xb4\x39\x12\xc2\x2f\xd5\xec\x79\x64\xfc\xf8\xdb\xff\xf4\xb8\x8e\x4f\x11\x7e\xd1\x1d\xd7\xf3\x30\x0a\x6b\xcb\xb3\xc8\x58\x35\xa5\xfc\x1b\x0e\x8c\x01\xb3\xba\x0c\x4b\x2a\x08\x35\x09\x41\xdc\xb3\x3a\xc5\xb0\xe3\x2e\x75\x51\x4d\x25\x6a\x2b\xed\x5b\x16\x0f\xc1\x95\xcd\x58\x36\x18\x1b\x3c\xaf\xef\x8f\x00\x46\xc0\x58\x28\x2a\x32\xd5\x04\x2d\xe7\x6f\xd8\xea\x46\xd5\x10\x83\x01\x44\x9b\x96\x23\x5b\xba\x7d\x1e\x70\x5b\xc0\x7a\x7c\x85\x9f\x47\x0c\x98\x77\x05\x22\xcf\x29\x40\xe2\x7b\x4a\xc2\x2a\x9e\xa0\xfc\xda\x8f\xec\xad\x00\x24\xc1\xa5\x56\x3b\xdd\x45\xf6\x82\x2e\xae\x65\xe0\xd9\x3a\x51\x87\x66\x10\x1e\x86\x1f\x05\x4e\xff\x87\x7c\xfb\x3d\x1d\x39\x10\xf5\x89\x0c\x3c\x0c\x4f\x8c\xfb\xfd\xf7\xd4\x41\xa2\xf7\x2b\x57\x21\xfc\xca\xe6\x80\x4a\x85\xd4\x28\xa6\x1e\x24\x02\xe4\x1a\x26\xb8\x18\xda\x2a\xf4\xd5\xf1\x33\x5c\xac\x58\x8b\xc6\x74\x38\x44\xaf\x69\xee\xca\x0b\x3a\xc5\xa2\x75\x3f\x69\x2d\xb9\x1f\xce\x75\xcf\x0d\x14\xc2\x14\xb5\x7a\x9a\x78\x14\xdb\x6c\x6e\xb7\x16\x61\xa1\x09\x6a\x4c\x5f\x55\x9b\xce\xc9\x37\x61\x8c\x1a\xc3\xd3\xda\x3c\x39\x64\xf6\xbe\x16\x6d\x9a\x17\x99\xc6\xab\xa5\x0f\xa4\x1b\xc6\x39\xa3\x83\x0e\x51\x8c\x1a\xff\xbb\x10\x53\xb0\x67\x13\xce\x94\xed\x37\x1b\xec\x18\xc8\x0b\xda\x6e\x61\x1e\x57\xa9\xc0\x0f\xf1\x04\x50\x5b\xc0\x2e\xa9\xd0\x5e\x9a\x60\xe2\xa5\xb7\xff\x8d\x31\x6a\x14\xb1\x66\x2d\xd7\x2a\x63\x09\x16\xee\x95\xc6\xca\xdb\xd8\xb6\xcc\xe9\x65\x0d\x8b\x95\xee\x45\xb5\xe1\xaf\xab\x7c\x32\xa3\x63\x6e\xc2\xa3\xf7\x3b\xaf\xb6\xcf\x10\x70\x98\x8d\x7c\x58\xf1\x33\x9b\x8e\x14\x6b\x67\x6d\x0d\x95\xf6\x35\x2c\xe0\x1f\x62\xb4\xb7\x8b\x0b\x9c\xdc\xb9\x29\xd4\xac\x9c\x1a\x76\x44\xdb\x26\x31\x58\xf5\xa3\x7d\x7a\x4b\xad\xf1\xf8\xd8\x9a\xbf\xfc\x52\xc9\xe5\x5b\x8d\x34\xd1\xab\xd9\x8a\x5f\x5e\x42\x3c\x17\x7b\xae\xa9\x21\x27\x86\xd0\xb9\x49\x76\xb8\xcd\x27\x25\x53\xec\xa3\xe2\x35\xd5\x8c\x8e\x21\x18\x8a\xdd\xbd\x8a\xcf\x94\x8a\xcf\xe4\xcc\x70\xa0\xe3\xc3\xaf\x87\x8a\x8b\xa9\xd7\x74\x26\x75\x82\xa6\xef\x69\x30\x9e\x3e\x98\x69\x97\x53\xb0\x11\xfe\x95\x9a\x5b\xbc\xe5\xc3\x20\x07\x69\x40\x9f\x76\x34\x13\x02\xd3\xa1\x86\x9d\x7f\x0c\xb0\x9d\xf6\x0d\x6e\x27\x1e\xb4\x8f\x19\x1a\x46\x36\xf4\x52\x0f\xcb\x3e\x18\x8f\xe4\xf6\x57\x4c\x23\x4d\x47\x12\xd2\xf2\x88\x00\x1f\xaf\xf6\xee\xe0\xa4\xd2\xa9\xaa\xbd\xa5\x83\xe3\x0a\x0f\xca\xc1\x40\x53\xf2\xc1\x20\xaf\x09\xb7\x7e\xb2\x3d\x70\x50\xb7\x0d\x1b\xcd\x6b\x30\xa8\x09\x21\xcd\xa4\x19\xe7\x4f\xad\x03\x7d\xb9\xd9\x84\xd8\xce\x8c\x75\x86\xdb\x54\x8d\xda\x54\x0d\x7e\x61\xeb\x37\x1a\xb0\xd6\x57\xb7\x33\xb5\x2e\xa9\x4b\xb8\x93\xb7\x89\x54\x18\x7e\x45\xed\xe9\xc1\x20\xff\x2d\xde\x82\xc1\x4e\x47\xdb\x2d\xfe\x35\xbd\x1b\x69\x34\x74\xa1\x86\x2e\xa0\x72\x97\xa0\x05\x57\xed\x6a\x91\x8b\xe8\x68\xd4\xdf\x24\x7d\xa7\x82\x1e\x74\xa0\x93\xf7\x94\xdc\x6e\xf1\x2f\x3d\xd9\x78\xa4\x17\x5f\x57\xfd\x81\xd1\x77\xa6\x26\x6e\x31\x56\x58\x8c\xca\x95\x3a\xcc\x88\xc4\xa2\x7d\xbc\x41\x78\x40\xe7\xbb\xee\xa2\xa8\xe7\x12\x53\xd4\xb6\xb9\x6a\xd6\x49\x88\x68\x37\x1d\xd1\x76\x3b\x1c\x0c\x62\x9a\xd8\x0a\x49\xd3\x87\x0d\x89\x76\x7e\xdb\xd1\x8e\x73\x72\xed\x34\xb4\xab\x77\xef\xd0\xd9\xf9\x6c\x57\x67\x7d\x38\xa1\x85\x31\x0a\x85\x35\xa0\xd5\x01\xd6\xbb\x55\x5d\x4e\x87\x42\x4e\x8f\x08\x79\x4f\xe1\x7c\x95\x53\xf2\x9e\xe2\x78\x5f\x01\x49\xdb\x15\x5d\xa9\x73\x1d\xf5\x43\xe8\x8c\xfd\x2e\x0e\x4c\xb5\xfd\x33\x4d\x04\x4c\xe2\x8c\xfe\x52\xee\xfc\xec\x47\xf7\xd9\x36\xff\x2a\x10\x88\xfd\x4c\xfb\x0e\x8c\x6c\xf7\x81\xf1\x75\x36\x94\xc3\xec\xeb\xf0\xc0\xc8\x5a\x07\x86\xeb\xe4\xc7\xf6\xc5\xdc\x1f\x12\xc1\xe1\xb0\xfd\x25\x92\x35\x87\x9c\x7f\xf4\x06\x5e\x3c\x6f\x97\xc0\xb6\xfd\x01\x8c\xb0\xbf\x52\x9b\x17\x9e\xff\x41\xf1\xdf\x29\xfe\x77\x4a\xf2\x7f\x50\x12\x98\x6b\x3b\xe1\xc4\xa7\x8a\xcd\xf9\xa7\xc1\x40\xff\x1f\xad\xa9\x58\x70\x71\x5d\xb2\x19\x55\x1c\x21\xce\xff\x4e\xc9\x3f\xe8\x88\xf1\x4f\x9b\xcd\x3f\xe8\xe8\x9a\xff\xf6\xda\xfc\xfc\x44\x2f\x3f\x54\xd2\x3e\x5d\xd7\xf6\x17\x7f\xcd\x3f\xa1\xc9\xdf\xa9\x0e\x16\xfa\x8f\x38\x5a\xa8\x9e\xfd\x50\x41\xf9\x69\x29\x69\x28\x98\xfc\x37\x48\xb0\xee\x1e\xff\x43\x01\xc5\x3a\xf2\x2a\xaa\xf7\x03\x8d\xa3\x63\x1e\xfe\x1b\x35\x01\x4d\xbf\xa2\xc6\xa9\xb0\xda\x6c\xf2\xaa\xab\xbb\xc0\x42\xc1\x24\x8e\x62\x07\x11\xce\x7e\x88\x42\x9c\xe5\x8c\xfc\x00\x2e\xf0\x23\x41\xaf\xe8\x67\x2b\x03\x76\x26\xf1\xcc\xa4\x76\x74\x7b\x03\xfa\x25\x02\x8b\x2d\x04\xf1\x06\x0b\xc1\xf4\x18\x39\x11\xb9\x3a\x93\x88\x1c\x9d\xbd\xfe\x79\xf4\xf6\xdd\xf9\xfb\x27\xef\xde\x9f\x9f\x3d\xbd\xf8\xe9\xfc\xcd\xb3\x17\x2f\xcf\xa2\x53\x30\xaf\x09\x1d\x66\x0a\x9b\xb8\xe9\x12\x9b\x78\xf4\x23\x59\x5d\xd3\xbc\x46\xf6\x6c\x84\x08\x53\x10\x12\xce\x75\x8c\x57\x16\x65\x66\xf6\xc7\x82\xfc\x3b\x35\x4a\xd1\x15\x39\x79\xb8\xf2\xe2\xc9\xd5\x70\x88\x66\xa4\x2a\x56\x53\xdc\x14\xab\x29\x99\x8d\x74\x28\xa3\x9c\xe2\x05\xe6\x6e\xa2\xad\x8b\x8d\x73\xc8\x0b\xec\xb8\x5d\x0f\x1a\xb2\x55\x08\xd8\xee\x65\x19\xec\x3a\x15\xa4\xcb\x85\xa4\x20\xef\x85\x1f\x10\xe7\x86\xe3\x46\xbd\x52\x80\x08\x67\x7d\xc6\xe6\x79\x8d\xb6\x5b\x3a\x5a\xac\xca\xab\x2b\x3a\x7f\x01\x87\x0d\xe4\x11\x31\xa3\x48\xbd\xea\x21\x44\x22\x47\x7a\x7f\x50\xef\x5d\x28\xc9\xed\x15\x95\x87\x9c\x51\xd8\xfd\x5e\xc0\x2f\xb7\x5b\x2c\x64\x47\x87\xcb\xe4\x1d\x49\xc2\x02\x2f\xec\x20\x14\x20\xf8\x92\x81\xd8\xbe\x5a\xe4\x2c\x30\x63\x5d\xe4\x19\x6b\x20\xca\x7e\x10\x33\xa1\xae\x7e\xb3\xc7\xf7\x91\x7e\x32\x48\xef\xa5\x0e\x2d\xdf\x6e\x75\x33\x6a\x37\x94\x4b\x4d\xfd\x33\xd5\x40\x86\xd0\xe4\x48\x8e\x13\x9d\xe9\x35\x0b\x53\x8e\xc1\x75\xfb\x88\x26\xb2\x2f\xa7\x7a\x31\x67\x8c\xcf\x4c\x35\x18\x1c\x09\x0f\x05\x1e\x02\x0c\x40\xb2\xd9\x74\xb3\x75\x18\x5f\xc3\x6f\xfe\xf3\xed\x37\x4e\x0d\x03\x57\x1f\x49\x74\x6a\xa6\x22\xab\x6f\xd8\x2c\xc3\x99\x0e\xdb\x56\x67\x38\x33\x12\xe0\x6c\x8a\x6f\x6d\x54\xc5\xb1\x0f\xb0\x88\x55\xfd\xf1\xad\x46\xed\xf1\x7b\x0c\xb8\x36\xfe\x65\x8b\x4d\x6e\x85\xbf\x37\xb4\xa1\x63\xdf\x1c\x67\xdf\xd3\xab\x8a\x45\xf6\x08\xb5\x1c\xcd\x1a\x01\x69\xa1\x1b\xf6\x92\xf3\x35\xa1\x5b\xcc\xd9\x19\x9b\x8f\xe3\xb3\xb6\x5b\x51\x42\x45\x85\x53\xef\x4a\x71\x45\xe5\x58\x4a\x5b\xf0\x8a\xca\x25\x9f\x8f\x33\x83\x73\x59\x48\x0f\x6b\xe9\x51\xb0\x94\x10\x12\x55\x07\xe1\x2d\x65\x90\x5d\x66\x5b\x4b\x10\xc4\x27\x4e\xbe\x52\xbf\x49\x7e\x85\x6b\x09\xf4\x39\x21\xb3\xc0\xe2\x40\x8b\x26\xda\xc2\x02\x2c\x89\x0d\x3f\x89\xb5\x9a\x83\x82\x7e\x03\x44\xd5\x5e\x56\xe1\x85\xed\x9d\xb6\x05\x66\x7d\x6d\x0b\xdf\xb6\x09\xe7\x0d\xee\xdd\xa2\x60\x61\xdb\xcc\xb5\x5d\x47\x93\xab\x25\x96\x36\x9f\x82\x50\xb7\x7d\x98\x9f\x0b\x20\x4b\x4a\x89\xbb\xeb\x02\x37\xb4\x1a\x92\xc2\x34\xb4\x26\xa5\xf9\x05\x29\x31\xe0\x7b\x85\x04\x21\x80\x4a\x53\x96\x6b\xf8\xd1\x18\x7c\x25\x94\x98\x77\x36\x9f\x4c\x7a\x59\xec\xdb\xde\xa5\x59\x96\xf5\x5b\x53\x67\xfe\xae\xba\x4e\xdb\x3e\x96\x50\x4f\xbf\x36\xdd\xce\xd4\xb9\xbd\xea\x7e\x51\xc6\xaf\xec\x20\x6f\xd8\xac\x5d\x4b\x83\xc8\x86\xd8\x1d\x0c\xba\x65\x06\x5e\xf0\xb5\x8d\x70\x05\xcd\xad\x4a\x19\x27\xbe\xf1\xe3\x84\x57\xbd\xb3\xe5\xad\x1c\x32\x7f\x38\x22\xca\x51\xc3\xea\x65\xb5\x90\xb9\xdb\xe4\x08\x07\xeb\xf0\x46\x4d\xcb\x8d\x4e\xc6\x4b\xf8\x26\x9d\xe1\xa6\xf7\xf3\xd6\xe4\x18\xfd\x2c\xff\xe4\xc9\x01\x77\x72\x0a\x33\x6a\x01\x5a\x86\x68\x91\x12\x0a\x3a\xc4\x80\x4c\x51\xb5\x1c\xcd\xe9\x25\x6f\x7a\x67\x6c\xdf\xf6\xce\x56\x31\xd1\x52\xf6\xe1\xbd\x7d\xdb\xfb\xf9\x45\x39\x9f\x03\x35\x6e\x5d\x60\x40\xb5\xed\xb6\xaa\xd3\xe6\x28\xe6\xcc\x97\x9a\x98\x1d\xdd\x6a\x12\x0d\x4f\xf1\x09\xa6\xe6\xc8\x6f\xe4\x6e\x93\x87\x0b\x41\xaf\xaa\x5a\x8a\x1b\xc5\x35\x1a\x3b\x5d\x2e\xe8\xcb\xea\xf2\x85\x6a\x90\x9c\xa4\x6c\x1f\x2e\xae\xa8\x7c\x59\x5d\x8a\x52\xdc\x7c\x0f\xa1\x8b\x93\x6c\x68\xdc\x3e\x08\x10\x03\x7d\x95\x66\x9d\x98\x8e\xb7\xbb\xc8\x45\x21\xa7\x3a\x91\x9e\x4f\x74\x7a\xa8\x0a\xdb\x91\x3b\x54\x6b\x54\xec\x14\x02\xd9\x2e\x6d\x77\x4e\xee\x18\x8d\x19\x4e\x64\x88\xb7\xe1\xdc\xa7\x83\x89\x0f\x87\x08\xb7\x5a\x33\x20\x67\xf8\x04\x6b\x53\x38\x8a\x3f\x52\x51\x57\x9c\x8d\xe5\x16\x75\x42\x8c\xe8\x81\x3e\xd1\x6d\xaa\x6e\x53\xd6\x1f\xb6\x1a\x4c\xe3\xa8\x1d\x6a\x64\x4e\xcf\xbb\xf3\x8d\x6d\xb9\x13\xb3\x72\x9c\xea\x81\x04\xe7\xe9\xd6\x34\x3c\xa2\xf4\x4c\x50\xe0\x53\x64\x2d\x4a\x56\x86\x0f\x91\xfe\xa8\x9e\x79\xf6\x2e\x99\x35\xd0\x39\xfb\x80\x39\x82\xde\xca\x34\xdc\xc2\x9e\x47\x5a\xc8\x58\x11\x7b\xf1\x81\xde\xd4\xda\x7e\x5c\x9d\x8c\xaa\x27\xeb\xda\x1a\x24\xba\x86\x5a\x44\x60\xe9\xdc\x5e\x19\x96\xda\x04\x48\x33\x8d\x58\xa7\x82\x59\xdf\x81\xfa\x9d\xe0\xe8\xed\x4c\x70\x51\x54\x14\x7d\x9d\xbe\xdb\x44\x67\x2d\x68\x4d\xd9\x0c\x84\x9d\x09\xf0\x58\xe3\xb5\x5a\xba\x0d\xa7\x8d\x97\x5a\x69\xe2\x92\xe1\x84\x18\x91\x9b\x4d\x14\x7a\xdd\xb8\x76\x07\x9d\x5a\xa7\x52\xd5\x85\xcb\x58\x00\x6a\x03\xa6\xd5\x06\x3a\x4c\xa5\xef\x99\x5b\x25\x8d\x89\x19\xd7\xc2\xc0\x38\x1c\xb2\x1f\x8a\xea\xba\x35\x18\xde\x1d\x4c\x99\x18\x0c\x21\x84\x6b\xab\x63\x63\x55\xab\x9e\x70\xce\x48\x19\xd0\x3a\xf4\xe8\xf8\x34\x48\xf5\xc2\xf0\x69\x68\xea\x65\x75\xa0\xdd\x2d\x53\xd5\x67\xd7\x6b\x99\x74\x61\xb4\xb6\x70\xaa\x85\x5d\x01\x8e\xdc\x25\xdc\xd5\x8e\x03\x51\xcb\x28\xfa\x7d\x38\xad\xf6\xf4\x3b\xe4\xcb\x58\x7f\x77\x3a\x3b\x0a\x3b\x0b\xae\x4e\x1e\x78\xd5\x22\x7f\x90\xd0\x69\x05\x19\x6a\x58\x78\x0b\x35\x62\x48\x7f\x84\x9e\x4e\x41\xfa\x8a\x7c\x2e\x9e\x44\x68\x26\x0a\x91\x99\xd0\xb6\x9d\xfc\x0e\xce\xe8\x3e\x71\x93\x1a\x9e\x31\xbf\x6a\x07\xad\x8f\xa2\x8b\xd8\x54\x9b\x8c\x7e\xca\x5d\x78\x1b\x1f\x6e\xf1\x20\x38\x67\xfc\x0e\x9a\xe9\xc0\x14\x61\x19\xc2\x54\xef\x1f\x78\x61\x06\x97\xab\x52\x40\x0d\x07\x47\x4c\x0d\x0d\x5b\xde\x75\x04\x02\x3d\x01\x7b\x62\x19\xbb\xd3\xf7\xee\x5f\xb3\x65\xbf\x94\x72\xb4\x6d\x07\x3b\x28\x10\x6b\x6f\x61\x30\x45\x88\x74\x77\x9a\x16\x86\xc7\xa1\x9a\x9e\x8b\x01\xa1\x1b\xc3\x3c\xce\xe0\x50\x92\x63\x9d\xe9\xfb\x64\xec\xd3\x59\x42\xdc\x96\x12\x73\x84\x21\xdd\x99\x0c\xa6\xce\x0c\x9d\xbd\x9b\x5e\xdc\xbd\x99\x82\x41\xb2\x78\x90\x55\x72\xa3\x1d\x49\xd3\x4b\x4e\x71\x15\x44\x62\x67\x90\xc2\xca\x0d\x51\x9f\x08\x5d\x02\xd1\xde\xeb\x11\xa8\xe1\xfc\x59\x96\x75\xde\xce\x49\x7c\x8f\x8d\xab\x5d\x37\xba\xf9\x24\x52\xdb\x77\xa2\xa8\x5e\xb8\x47\x83\xf3\x44\x04\x46\x97\xb0\x99\x99\x4e\x87\x0d\x61\x58\xc0\x68\x72\x9c\xae\x9d\xc7\xd5\x70\x30\x35\x33\x8d\x5c\xb4\xf7\x78\xfa\x2c\x33\xe7\x71\x68\x69\xbb\xef\xd6\xd8\x49\x08\xec\x95\xd9\x44\x9d\x81\xc4\xa9\x96\xe3\x98\xcb\x3f\x4d\x09\x63\x24\x20\xe0\xde\x41\x64\xf4\xb8\x4b\xe1\xd2\xde\xdc\x81\x35\xec\xc4\xe6\xbd\x1f\xab\x1f\x4b\xb9\x43\x37\x61\x47\x1f\x19\x36\xe8\x6c\x02\x93\x16\x6d\x08\x32\xdb\x4a\x34\xb6\x1c\x5c\x38\x5c\xc7\xbc\x19\x9b\x3d\xd4\xd1\x2d\xdc\x0d\xf2\x14\x11\xce\x6f\xc3\x5e\xc6\x9d\x7e\x81\xcd\x95\xdb\x7c\x29\x03\xd9\xcd\x75\x28\xe9\xa2\x3e\xe6\x77\x90\x64\xac\x5d\xc3\xc4\x90\x0f\xb2\x7b\x49\x6f\x1d\x65\x55\xfb\x39\xc5\xd7\x6a\xd5\xa1\x14\x6b\xe3\x33\xc3\xa3\xb8\xef\xae\xba\xdf\xbd\x30\x15\x6f\xe2\xef\xe3\xef\x2e\xd3\xfd\x7d\xbc\xab\xbf\x0b\x99\xc8\xd3\x75\x15\xf6\x14\xa5\xdc\xfa\xb4\x7b\x78\x1f\x5b\xc3\x53\x08\xf2\xb9\xef\xb4\x0a\xbc\xa4\x16\x82\x5f\xbb\x88\x29\x92\xbb\x30\x74\x46\x2f\x14\x47\x81\xa9\x04\x85\x26\xe2\x62\x41\xcb\xf9\xcd\x3b\xfe\xf6\x86\xcd\x5a\xc1\x5b\x04\xbf\x7e\x73\xf9\xcf\x6e\xe1\x4f\xa5\x5c\xb6\xc2\xc1\x70\x5f\x31\x75\x4d\x4c\x9d\xff\xfa\x3e\x61\xa3\x21\x49\x1e\x74\xd0\xb2\xf9\xd1\x93\xd1\x51\x9b\xcd\xc4\x8e\x4e\x3a\x2e\x02\x00\x8a\x5e\x7a\x0e\x6f\x53\xe7\x94\xe4\xfd\x1f\x39\x80\xc6\x9f\xec\x56\xba\xf9\x21\x26\x7b\xeb\x26\xfb\xf8\xe8\xf3\x8e\x9b\x6f\x27\x59\xa1\x7f\x4c\xb3\x71\x96\x59\x51\x37\xa4\xa2\x1d\x19\x77\xbb\xef\xb2\x61\x10\x91\x5e\x91\xb7\x61\xf6\x28\xcf\x86\x7e\xb6\xc3\xec\xf0\xf8\xd1\xa1\x2d\x91\x7c\x98\xa1\x6c\x48\xdb\xe4\x98\x31\x3a\xeb\xfa\xbd\xe8\x20\x15\x2d\x1b\x34\x67\xbf\x60\x57\xe7\xad\x5d\x3c\x58\xb3\xe0\xfa\xac\x9e\xb1\x20\x67\x26\xd6\x1d\xc2\x79\x49\x7c\x4a\xde\x15\xe7\x1f\x9a\xb5\x8e\x16\x9c\x57\xa4\xc4\xc9\x15\x78\xe3\xec\xef\xc3\x4e\xc2\xec\x71\x3a\x2c\x05\xb5\x97\x0d\x5d\x01\x9f\x3b\x5d\xab\xc2\xa9\x0f\x10\x76\x06\x21\x7c\x23\x75\xd6\x43\x45\xf2\x32\x55\xd3\xa5\xee\xca\x50\xb4\x67\x36\x1b\x4d\x81\x42\xac\xc4\x99\xe4\x61\x7d\x45\x20\xb2\x4f\xd5\x6a\x65\x4c\xd7\x4d\x56\xec\x6c\x5e\xd5\x06\xa2\xae\xd1\x08\xaf\xa3\x8e\xf0\x51\x69\x0d\x8b\x4c\x41\x77\x3f\x1e\xb5\xf7\x62\xd5\xde\x86\x3c\xda\x81\x49\x46\xcc\x0d\x2a\x81\xb1\x57\x32\x8f\x3a\x68\x35\xbf\x17\xbc\x5c\x1b\x30\x86\xdd\x90\x4b\x4c\xf1\x34\x31\xe6\xa8\xc3\x2e\x33\x62\x25\x90\xaa\x81\x3c\x5b\x7c\x9a\x67\x9d\x2c\xdd\x7b\x7f\x7d\x59\xce\x3e\xb4\x3f\x8f\xaa\xf4\x0a\x5c\x1c\x3d\x3d\x88\x1c\xe7\x03\x19\x6a\x6e\x54\x36\x1a\x12\x17\xf0\x80\x3a\xd4\x98\x22\x9d\x6e\xdb\x64\x9a\x83\xf9\x98\x94\xc2\xed\xaa\xa9\xb9\x5e\xb4\xe5\xd9\x4e\xe9\x60\xd4\xae\x2f\xdf\xfc\x70\xf1\xfd\x8b\xd7\x4f\x5f\xbc\xfe\xe1\xad\xe3\xfe\x61\xad\xb4\x87\x42\xe8\x82\x61\x31\x32\x58\x21\xe7\x16\x11\x8f\xc5\x65\xa3\xb5\x98\xd3\x90\x18\x77\x0e\x7a\x4e\x1d\x3b\x3f\x3e\xc9\x29\xf9\x40\xf3\x12\x37\x08\xb3\xc1\xa0\x1e\xad\xf8\x55\x9e\x1d\x9a\x1c\xf4\x96\x52\xe6\x08\x67\xc7\x8f\x32\x4c\x71\x19\x23\xde\xe4\x1c\x5c\x94\x2d\xb6\x51\x34\xbe\x90\x61\x41\x17\xfd\x70\x00\xa4\xf6\xc7\x5b\x84\xc6\x6e\x15\x38\x48\xcb\x3e\x84\x55\xee\x1a\xe2\x77\xc7\x99\xce\x90\x72\x21\xd5\x8c\x92\x1b\xa7\xd5\xbf\xaa\x26\x20\x63\x87\x66\x78\x1f\xe6\xf1\xcd\x2d\x12\x9f\x49\x04\x6a\x8f\x37\xa1\x17\x84\xa2\x9f\xb4\x10\x53\x1d\x7a\x7d\x8b\xf2\xcf\x12\xdf\xaa\x2e\xc7\x09\x7a\x6a\xef\x9f\xb9\xd5\x1a\x2b\xfe\x8d\xef\xac\xe9\x62\x40\x6e\x8d\xdb\xe6\x99\x11\xd2\xc7\x27\xc8\xac\x94\xf8\x8d\x7d\x63\x72\xb5\x05\x8e\x57\x01\xc7\x97\x32\x1f\x1f\x0c\x8e\x4c\x6e\xdf\x5a\xab\x05\x07\x03\x7a\x44\xc8\xf7\x9c\xaf\x68\xc9\xf4\xc3\x1b\x13\x3c\x51\xfd\x7e\xdd\xe8\x14\xef\xea\x37\x74\xa5\x7f\x3e\x2d\x25\xd5\xbf\xf4\x9a\xe8\x04\x89\x92\xdc\x06\x6e\x59\x8f\x65\xcb\xf0\x1e\xe2\x08\x6d\x36\x10\xed\xc8\x1e\xe1\x05\x05\xe1\x18\xa9\x26\x67\x86\xfd\xae\x30\xc4\xf7\x19\xc3\xdf\xd0\xed\xe4\x83\xec\xcb\x17\xd3\x71\x01\xe5\xda\x0a\xae\xd4\xfa\x7f\x7f\x86\xe9\x04\xd7\x60\x7e\x91\xf4\xa1\x29\x27\x6c\x2c\x46\x9f\x44\xb9\xce\x19\x2e\x43\xaf\xac\xa0\x6f\x9b\x8a\xbf\x5a\x40\x6c\x37\x9f\x4f\x43\x17\x11\x42\x7e\x93\x83\x81\x1a\x82\x15\x27\x3c\x91\x07\xcc\xda\xdf\xc2\xb9\x1d\x09\xd1\xdb\xa9\x61\xfb\x26\x55\xe9\x49\x35\x30\x3b\x84\x75\x36\x1c\x9b\x10\xa0\x26\x65\x4f\x5e\x85\x84\xc7\x91\xb1\x6a\xb7\x80\x39\x82\x7c\x90\x4d\x38\x97\xe7\x74\x92\xe7\xac\x7d\xd9\x44\xc8\xb9\x19\x58\x28\xd9\x02\xdc\xd8\x5f\x48\xfd\xac\xdd\x5c\x9d\xa5\xae\xfb\x15\x7c\x5b\xbb\x6f\xf5\x2f\x34\xf6\xb5\x7c\x21\x66\x68\xcc\xb6\x90\xa2\x83\xe1\x12\x2b\xfa\x81\x30\x87\x04\x1f\xb8\x0c\x2c\x0a\x41\xc2\xa6\xa7\xeb\x44\xed\x8f\xc8\xc9\x66\x93\xe9\x6d\x43\x59\x19\x25\x20\xc9\x74\x36\x9f\xec\x9a\x8a\xab\x4e\xf9\xa4\xbb\x4a\x2e\x38\x7f\x21\xa7\x1a\x8b\x0e\x62\xbb\x0c\x1e\xd8\x65\xf0\x89\x18\x5d\x97\x1f\xa8\x96\x92\x31\x34\x7e\x23\x73\x8e\x26\xa6\x26\x0b\x6a\xb2\x09\x1f\x5b\xe4\xe7\x6a\xae\xf6\x21\x6c\x40\x51\x44\xb4\x35\x23\x29\xd1\x58\x2d\x58\x38\xcd\xe3\xd3\xfe\x01\xe3\x32\x1c\xb2\x3a\x84\x4a\x6f\x10\xa2\xfd\xec\xc4\xa8\xac\xeb\xea\x8a\xe5\xb7\x5b\x45\xf8\x1b\x62\xb2\x02\xbb\x98\x53\x0c\xb1\x36\x41\x5c\x29\x82\xf8\x56\xe6\x9c\xb0\x62\x35\x45\x93\xbc\x51\x0c\x14\x44\x9c\x82\xad\xba\x82\xad\x72\xab\x48\x3d\x14\x7a\x4b\x9f\x46\x9d\xdb\xa3\x8b\xba\x59\x03\x36\x9c\xbf\x79\xf3\x0e\xe1\x3a\x98\xdd\x5b\xc5\xc6\xc2\x4e\x71\x9b\xbe\x04\xbe\x92\xfb\xe5\xd6\x4b\x1f\x7a\x2d\x06\xfa\x11\x6b\x4b\xe2\xe8\xcc\xa3\xbf\x0d\x06\x7f\xfd\x2b\x44\x97\x9e\x2d\x4b\xf1\x84\xcf\xe9\x63\x99\xcb\xe3\xbf\xa1\x4e\xb6\xf3\x4c\xb3\xfc\x19\x96\xc7\x7f\x0d\x48\xc0\x3b\x19\x79\x62\xb7\x74\x4a\xed\xf8\x22\xfe\x70\xf1\x5a\xb2\x03\xa3\xf3\x72\x0e\xb8\xc7\x7f\x43\x38\x4a\xc9\xf3\x59\x4e\x72\x05\x11\xad\x89\x41\x23\xc9\x15\xe6\x08\xb8\xba\x7d\xd6\x61\xac\xb1\xb0\xd7\x88\x9c\x22\x9d\xe6\x46\x9d\x6a\x58\xc6\xe1\x41\x72\x40\x96\xc0\x17\xdc\x66\x02\xc6\x81\xc1\xd0\x79\x87\x42\xcb\xd1\x35\x9c\x0a\x90\x23\xb5\xf7\x26\x22\x8a\x0a\xe8\x78\x35\x9d\xc0\xea\x57\x53\x2c\x89\x2a\x44\xe3\xbc\x24\x54\xfd\x70\xbe\xa2\x7b\x25\xd9\x9a\xe4\x12\x2e\x26\xd6\xed\xde\x85\x43\xc2\x5c\x37\x87\x6f\xe7\xb4\x9e\x8d\xa5\x09\x8d\xc1\x83\x5c\x1c\xff\x6c\x4f\x02\x2c\x92\x03\xbf\x2d\x11\xfa\x6d\x41\xac\x64\xf0\xdc\x6a\x56\xab\xc8\xc9\xee\xb5\x8c\x55\x9a\xb0\x59\x12\x47\x28\x1b\x0c\x72\xd3\x27\x73\xe1\x16\x4c\xf2\xd7\xfa\x7b\x90\xaf\x5c\x5c\xe0\x4f\x12\xe1\xde\x5a\x17\x17\xf8\x2a\xf5\x5e\x07\x5b\x55\xaf\x6f\x50\x3a\x0d\x92\xef\x5b\xf4\xf7\x7d\xe9\xdb\xee\xd6\x52\x8d\xa7\xde\xfb\xbe\x3f\x86\x26\xa5\x2f\xcd\x18\x43\xdf\xb9\xdb\x2d\xae\xd5\x9f\xc6\x18\xf6\xae\x48\x31\x0d\xed\x00\xcd\x8f\x75\x68\x0a\x49\xe3\xed\x8e\x03\xf9\x4a\x70\xac\xea\x5e\x4c\x72\x74\xd7\x00\x76\xe2\x0f\xe7\xb4\x76\x6d\x7f\x7c\xec\x06\x3d\x09\xc2\xc6\x54\x05\x9d\x62\xa7\xec\xa2\xd3\xad\xce\x74\x7e\xf2\xb0\xf1\xe9\x84\x1b\xad\x07\x5f\x13\x59\x34\x53\xbc\x22\xcc\xcf\xc0\xfd\xc8\x97\x24\x9f\x91\x35\x0a\xb6\xea\x53\x39\xc9\x17\x81\x9c\x7c\x06\x99\xc4\x5c\x48\xa8\x7c\x81\x26\x4f\xe4\x38\x5f\x85\x51\xa7\xf2\x05\x9e\x21\x3c\xb3\xbe\x5c\x15\xad\x11\x1a\xcf\xd0\x11\x21\x4f\xa4\x1a\xc3\x52\x73\xa1\x73\x45\x70\x75\x36\xcc\x57\xea\x68\x82\x8f\x6d\x7e\x4c\x5f\x92\x2f\x11\xbe\x26\x8f\x65\xde\x77\xbc\xe1\x25\xf0\x15\xf8\x23\x54\xea\x9c\x72\xf6\xf5\x12\x2d\xdb\xa4\x7d\x8e\x80\x42\x83\x7e\x72\x8e\xf0\x2b\xc5\x64\xcf\xf1\xb2\x98\x4f\xf1\x09\xac\xd5\xb5\xc2\x92\x83\xce\x77\x99\xe5\xd1\x33\xd5\x40\xe9\xe5\x2f\x4b\xf7\x13\xe9\x63\x7a\x3d\xd2\xf1\xa9\x14\x4f\x9d\xdb\x87\x00\x11\xf0\x7a\x74\xf1\xa9\x92\x4b\xde\xc8\xc1\xc0\xff\x76\x82\xf4\x1b\x04\x4e\xd8\x0d\x30\x63\x14\xaf\x10\xd6\x9b\x7d\x15\x6e\xf6\x6a\x01\xb0\xb1\x52\xd6\x4c\x31\x4a\x33\xb2\xd2\xf4\xa9\x6e\x0f\x7e\xa6\xc6\xbc\x26\x65\x31\x9b\xe2\x05\xa9\xd5\xbf\xf5\x91\x62\xe6\x90\x5e\x96\x87\xeb\xc1\x60\x1d\x31\x49\xf2\x21\x5a\x93\x9c\x13\xa0\xa3\x6b\x9d\x40\x6e\xa4\x08\x15\x5e\x10\xae\xe3\x5a\xfb\xcb\xea\x3a\xc8\x53\xbe\xd8\x6c\x72\xa0\x37\x33\xbc\x40\xf8\x27\x09\x7d\x37\x71\x18\xad\x1c\xde\xfd\x03\x2a\xad\xf1\x02\x37\xc8\x69\xcc\xd9\x66\x03\xa7\x51\xa3\xa8\xf9\x4f\x32\xcf\x18\x97\x97\xbc\x61\xf3\x0c\x1a\xcb\x16\x9c\x9b\x56\x8c\x67\xf3\xd3\xb4\x6c\x53\x82\x26\xc7\xaa\xcf\x5d\x5e\x36\xe3\x36\x66\x12\xf4\x29\x3e\xdf\x9e\xa6\xd5\x22\x6f\x1e\x9d\x68\x70\xf0\xc0\x2e\xb8\x01\xd7\x6b\xf0\x84\x2e\x87\x43\x54\x13\x5a\x94\x53\xcc\x21\x15\x79\x08\x31\x39\xa9\xc7\x5a\x72\x6f\x36\x56\x6d\xc2\xf3\x9b\x80\xdb\x5c\x23\x47\x58\x64\x2d\x2a\x54\x11\xff\xc4\xa8\x08\x54\x0f\xad\x50\xde\x1a\x45\xc2\xc2\xc2\x9b\x67\x4e\xb5\x25\x9e\x29\x7d\xfd\xf8\xd5\x59\x50\xca\x46\x73\x7a\xd9\x5c\xbd\xa5\xa5\x51\x5e\xf8\x08\xd6\x60\x44\xf4\x53\x29\x64\x55\xae\x52\xd6\x36\xc6\xd8\x50\xf6\x1b\x1b\xca\x47\xa7\x13\x79\x7c\x3a\x3e\x41\x98\x91\xd3\x87\xec\x3b\x69\x8d\x0e\x8f\x4f\xd3\x66\x87\x40\x74\x85\xcd\x5d\xdc\xd5\x71\x3e\x93\xd6\x47\xf8\x0f\xb5\xf1\x72\x37\x51\xe9\x13\xf0\x48\xbb\x0e\x1d\x7d\x4a\x27\xa2\x54\xd1\x4d\x33\x2f\x26\x6c\x9c\x8b\x38\xba\x5d\xde\xe6\x9c\x3c\xe6\x6d\x36\xcc\x25\x62\x42\x89\x64\x11\x7c\x4d\x59\x57\x94\x1b\x62\x88\x6f\x6b\x92\x53\x12\xa1\x5a\xeb\x3d\x6a\x17\x44\xc8\x64\x26\xad\x2f\xa2\xbe\xc0\xa6\xc4\xb0\xaf\xa7\xd6\x55\x33\x28\x8d\x5d\x00\xb4\x99\x69\xc7\xf7\x56\x21\x40\xb8\x64\x05\x9b\xa2\x68\x9f\x08\x6b\x1c\x62\x73\x53\x45\x73\xa1\x28\x92\xd9\xb7\x12\x7b\x28\x8c\x4d\xc9\x78\x01\xad\x20\x37\xf6\x14\x77\x32\x92\xf4\xe2\x79\xea\xe3\x76\x52\xed\x39\x95\x91\xc0\x33\x4e\x8c\xe6\xae\xd7\xcc\x65\x69\x64\x5e\x19\xdd\xbe\x46\xcb\x76\xc0\x10\xcb\x22\xf8\x98\x0f\x3e\x35\x2c\xf8\x63\x14\x7c\x1a\x34\x57\xf0\xa9\xda\x1d\x26\x4b\x29\xf3\x81\x82\xb5\xc4\xc0\x22\xb4\xb9\xf8\x94\x13\x6b\xd2\x32\xd6\x0b\xf6\xf0\xf8\xb8\x7e\x44\x4e\x1e\xaa\xc3\x83\xe6\x65\x51\x4f\xa1\xef\x44\xc6\xac\x9c\x69\xb1\xd3\xad\x11\xd7\x44\xc9\x71\x58\xd7\x53\xb6\x1a\x0c\x8e\x8e\xaa\x90\x47\x68\xa9\x14\x3a\xee\x5c\x9a\x9e\xa5\x64\x8d\xb8\x32\xc8\xad\x57\x04\xfd\x51\x06\xcf\x95\x27\xa3\x02\x57\xf1\x78\xc0\x5a\xa3\xb3\xfb\x6e\xb7\x6d\x43\xec\xd6\x7a\xa9\x63\x44\x2f\x93\x9f\x2e\x43\x53\x17\xa5\x26\x2e\x36\x4b\xc7\xc2\x9d\xaa\x4f\x1b\x23\x8b\x50\xa3\x88\x5f\x9b\xa3\xc7\x25\xec\xd2\x27\x90\x3a\x7c\xb0\x2c\x6a\x68\x11\x4e\x15\xe6\x58\x0e\xfb\xcb\x71\x13\x69\x6d\x3e\x48\x18\xb7\xfa\xd6\x6d\x16\x1a\x87\xa3\x70\x09\x2b\x9e\xca\xd1\x85\xde\x75\x2f\x25\x7e\x2a\x47\x8b\x8a\x55\xf5\xd2\x6e\xa6\x77\x3a\x41\xd5\x0b\x49\x9e\x06\xe0\x3c\x78\x21\x3d\x7b\x64\x5a\xb5\xcf\xd1\x79\xf4\xc2\xf8\x83\x2b\xa2\xaf\x4d\x37\x7e\xd3\xba\xbc\xaf\x3c\xcf\xfb\x5c\xba\x68\x86\x6d\x87\x47\x4d\x99\xdc\xa5\x2e\xf4\x17\xf9\x5e\x86\x96\xc2\x29\x1d\xd4\xef\x3e\x59\x52\x71\x6a\x0a\xcb\x7a\x1f\x9f\xc2\xfd\x51\x8e\xb4\xd5\x34\x18\xd5\xa1\x31\x94\x40\x0c\x20\x78\x36\xdb\xb6\x98\xe2\xa4\xf9\x48\xe9\x22\x1d\x04\xe4\xd6\xf9\x05\x0d\x87\x0c\xbd\xa6\x60\x7b\x17\x78\xf2\xf2\xc4\xa5\x48\x5d\x3f\x83\x54\xce\x61\x22\x11\x08\x54\x61\x54\x54\x60\x28\xeb\xc2\x6b\xa8\x0b\xcd\x57\x01\x3f\x92\xbf\x97\x08\xff\x28\x8d\xc6\x32\xb0\x85\x08\xd2\x3a\xcb\x58\xaf\xa1\x2e\x28\x8c\x40\xe8\xa9\x37\x8a\xbb\xd1\xf5\x37\x1b\x6b\x21\x20\xcb\x8a\x51\xe1\x4d\x83\xb4\x36\x2f\x97\x30\xaa\x61\x36\xce\x86\xb9\x84\x51\x6d\x36\x14\xa1\xed\x6f\x32\xa9\xf3\x34\xf2\xe0\xfc\x9c\xfe\xda\x54\x82\xce\x0f\x2d\xd3\x8b\xb2\x2d\x7e\x2e\x3b\x01\x39\x7e\x0d\x8b\x62\x21\xe0\x57\xfe\x8d\x5e\x9b\x5f\x24\x09\xab\xe3\x9f\x65\xe4\x34\x88\x7f\x94\x24\x74\x2b\x3c\xf8\x45\x26\x20\x47\x9e\x53\xfc\x0b\x98\xcf\x90\x9f\xe1\x9f\x7a\x72\x6e\x9a\x3f\xfb\xdf\xaa\xdc\xf9\xcb\xfe\xec\x7f\x6b\xb7\xc4\xae\xc0\x5c\x9b\x31\xe2\xaf\xfe\x4c\xe3\x96\x7a\x46\xe4\x97\x3b\x0e\xf7\x27\x27\x36\x56\x20\xf5\xec\x4e\x7f\x61\x74\x6b\x1d\x4e\xa9\x35\x1b\x21\x0b\x35\x60\x93\x74\x39\xe2\xfe\x7f\xe7\x96\x0e\x08\x06\x60\xcb\x73\x9a\x9b\xfd\x1a\x98\x0a\xdb\x44\x29\x10\x60\xc8\xcc\xc9\xd8\xe3\x33\xac\xb8\xc5\x2d\x80\x73\xb6\xa4\xcf\xb8\x20\xbf\x52\x4c\x47\x4f\xe2\x04\xd1\x37\x0a\x25\xe8\xa8\x5c\x55\x69\xbb\x31\x1d\x27\xd4\xd8\x8b\xc1\xdd\xb6\x1b\x73\xc3\x30\x1b\x32\x15\x4b\xcb\x72\x19\xd4\x66\x6b\x8a\x0e\x98\x20\x7e\xcc\x41\x9f\xcd\x66\x51\x11\x56\x88\xe9\x94\xc8\xa2\x72\x07\x28\x68\xfc\xe7\x74\x2d\xa8\xba\x91\xff\xd4\x09\xda\x62\x44\x4c\xfd\x8b\xde\xc9\xeb\x1c\x87\x86\x6d\x47\xb0\x7d\x67\xbc\xa4\x05\x68\x98\xd2\xe1\x6b\x3f\xd8\x3a\x68\xbb\x05\x70\x55\x7d\x9e\x8b\xc6\x11\xb6\x8d\x1c\xdf\x91\x6f\x43\x77\xbd\x30\xd1\x6d\xce\x88\xc0\x42\x91\x44\x97\x11\x2b\xe9\x46\x6b\x82\x2a\x30\xcb\x2a\x49\xf0\xfb\xe5\x04\x1c\x70\xbb\x43\xae\xb6\x9e\x5a\x4f\xba\x63\xfc\x18\x24\xd5\x85\xf0\x12\x8a\xf7\x32\x1d\x6c\x67\x3a\x45\x34\xba\x15\x23\xfa\x79\x46\xd7\xff\x7f\xee\xde\xbd\xcb\x6d\xdc\xca\x17\xfd\xbf\x3e\x85\x8a\xc9\xd2\x10\x29\x94\xac\xca\xe4\xe6\x9c\xab\x32\xba\xc6\x6d\xbb\x93\x3e\xe3\xd7\xd8\xee\xe4\xcc\x51\x34\x1a\x96\x04\x95\x30\xa6\x40\x35\x48\xda\xae\x94\xf8\xdd\xef\xc2\xc6\x9b\x04\x25\x96\xbb\x27\x77\xdd\xdb\x7f\xb4\x4b\x24\x88\x37\x36\xf6\xf3\xb7\x95\xd5\x17\x33\x22\x1c\xda\x84\xf3\x3e\x67\x0d\x24\x86\x67\x98\x4b\x56\xdb\xd4\x81\xe9\x64\xe9\x66\xe9\x43\x95\x89\x8a\xfc\x1f\x1a\x4c\x5d\x26\xeb\x7d\x4f\x03\x17\x50\xf4\x60\x07\x4e\xa6\x2a\x3e\xba\xe9\x7e\xf4\xa1\xbe\x95\x37\xf4\x6d\x5f\x66\x59\xea\x23\xe2\x79\x77\xb2\x4e\x7f\x1f\xd9\x8b\xc9\xef\x12\xa2\xb3\x45\x88\x05\xba\xd1\x9e\xe5\xc9\xfc\x3f\xfe\xf6\xb7\xc9\xe2\x77\x09\x9a\xe9\x27\x0c\x41\xa6\x0e\x85\xa9\xf7\xb7\xbf\xc9\xfa\x8b\x0b\x92\xa4\x7f\xfb\xdb\x64\xf2\x3b\x74\x93\xe8\xcb\xf6\x61\x9f\x55\x15\x15\x7c\x46\x31\x04\x29\x83\xcc\xfe\x9e\xde\xbd\xfc\xba\x4f\x93\xff\x48\x2e\x8a\x8b\xe4\xb7\xf2\x53\x15\x8f\x5e\x59\x0e\xf0\x4f\x3a\xa9\x51\x86\xd4\xd8\x71\x16\x19\xfd\x4f\xbc\x8c\x8c\xbf\x9d\xb4\xa9\x37\x7e\x1a\x82\xa7\xb5\xbd\x5e\x48\xfe\xe0\x4f\xd4\x8f\x9f\x70\x93\x2e\x6f\x54\x15\xf0\x18\x71\xc4\xa0\xe0\xcd\x54\x46\x8a\x50\xf4\x40\x2b\x42\xf5\xeb\x17\xac\xdc\xcb\xed\xf4\xf6\x33\x15\x82\xad\x5b\xce\x88\xba\xdc\xdd\xb1\x72\x2e\x18\x18\x9a\x7c\xfd\xf2\xe3\xb3\xe5\x8b\x97\x1f\x9e\x93\x35\xc5\x3a\xc6\xfe\x9e\x62\xe3\xc0\x1b\x02\xfb\xc6\x45\x6d\x07\xfc\x01\x31\xcd\x36\x99\x9e\xac\x5e\xe5\xca\xb8\x93\x15\x2e\xef\x68\x05\x3e\x2b\xaf\xa9\xea\x23\xf9\xa4\xff\xf8\x2b\xab\xb6\x2f\xcc\x2d\x11\x0d\xe7\xd1\x88\x9a\x1d\x79\x9e\xdf\x88\x19\xd7\x53\x43\x3e\xca\xea\x2a\x71\xff\x81\x56\xe4\xbd\xfc\x5b\xc3\x36\x93\x8f\xee\xef\x77\x45\x7e\xbf\x61\x79\x4e\xde\x61\x88\xad\x30\x99\xc2\xc8\x67\x0c\x1e\xc1\x2e\x73\x58\xc4\x5e\xd2\x87\xe4\x14\xca\x8f\x06\xc3\x69\xa7\x61\x32\x6c\x95\x5e\xea\x4b\x5f\x06\x63\xf6\x72\x6a\xb4\x43\xbb\xca\x6f\x56\x08\xf2\xe5\x8c\x4e\x0a\xfe\xdf\x75\x59\x7a\x5c\xad\xe3\xe7\x3a\xea\x77\xc2\xd4\xe5\xa8\xf0\x53\xec\x7c\xdd\xc3\xa4\xf3\xf5\xcb\xcf\x92\x6a\x2f\xe5\x2f\x85\x95\x63\x4b\xdc\x75\x9f\x95\xe4\x16\xd3\x09\x60\x7b\x50\xf5\xe5\x49\x3d\x4e\x67\xc6\xc4\x8d\x08\x6b\x48\xd1\x6c\x0e\x6e\xf0\xac\x7c\x53\x70\x4a\x78\x85\x5d\xf4\x07\x53\x3f\xbe\xcf\x33\xfe\x89\x14\xea\xc7\x3b\x08\x21\x88\x81\xf6\x9e\x43\xac\x36\x8c\xb6\xe6\xa4\x94\xc5\xdf\x2a\x8e\x1c\x90\x8f\x9e\x61\xaa\x42\x61\xcd\x05\xa9\x1c\x3b\x4a\xf2\x13\x06\x2b\x1e\xbf\xa3\x4e\x9d\x4d\xfe\x82\xe9\x84\xf2\x75\xbb\xec\x5f\x31\x9d\x14\xfa\x54\xea\x3c\x17\x3f\x63\x07\xa7\xe6\x1c\x97\x7e\xf4\x9e\xfe\x95\xe5\xb9\x7e\xfc\x02\xd3\xc9\xbb\xf7\x6f\xdf\xbd\x7c\xff\xf1\xdf\x97\x2f\x7e\x7c\xb1\x7c\xfe\xe7\x67\x6f\xfe\xf4\x92\xbc\x87\x33\xeb\x5f\xdf\xe4\xdf\x31\x9d\x78\xc2\xd7\x6f\xe5\x21\xdc\x66\x25\x9c\xc9\x75\x8b\xbd\x61\x34\x90\xa5\xff\x8d\x9c\xc3\x76\x84\x99\xfe\x57\x7a\x4f\xfe\x37\xa6\x93\x9a\xdb\x9f\xff\x4b\x9e\x6d\xd9\xfb\x37\xc5\x9a\x92\x5c\x9e\x36\x25\x64\xf6\x66\x1c\xe9\xc9\x6e\xe2\xe3\x06\x01\x82\x5f\x90\xea\x3b\xf5\x5c\x02\xda\xe9\x41\x52\xc8\xd7\xdb\xc9\x32\xef\xf6\xaa\xdf\x0e\xa9\xa9\x19\x0d\xd0\x20\x4a\xdd\x78\xe0\x41\x05\x97\x69\xd9\x93\x30\x44\x6f\xc2\x17\x8a\x0c\x7d\x37\x6d\xce\xec\xd7\xe4\x47\x5b\x33\x79\x65\xff\xa4\xe2\x39\x64\x6c\x7e\x41\xe1\x4c\xdf\x8a\x4c\xc8\x19\xce\xe5\x96\x7a\x65\x7f\xd6\xf2\xa7\xa4\x50\x5b\xfd\x87\x4f\x09\xd7\xb0\xfd\xc4\x9a\x0a\xba\x96\xbb\x6f\x5f\x29\x6a\x19\x5b\x30\x3b\xcb\x0f\x0d\x16\xee\xc4\x63\x4e\x94\xd9\x3c\x16\x72\x30\x1e\x07\x2e\x3b\x41\x88\x90\xb2\x75\x4f\xfd\xba\xe4\xd3\x6b\xee\x8c\x97\x5c\xd1\x97\x39\x5f\x2c\x14\x79\x56\x99\x03\x6d\x6c\x1f\x36\xa9\xe0\xba\x9d\xf5\x66\xf4\x18\x47\x7c\x53\xcd\xd2\xbf\xa4\x2d\x05\xcf\x37\x30\xc6\x8a\x0b\x51\x78\x33\x3a\xa9\x45\x83\x34\xc6\x39\xfd\xba\xcf\xb8\x7f\x06\xde\xc0\x55\xa5\xe9\x96\x39\xfc\x64\x59\x45\x9e\xb6\x13\xac\x05\xae\xe0\xb7\xf2\xd9\x64\x97\xed\xd3\x9d\x73\x07\x57\x77\x8e\xad\xf5\x5e\xd6\x5a\x98\xda\x7e\xe8\x80\xb9\xe9\xaa\xbe\x18\xaf\x72\x6f\x6f\xdb\x3a\xee\xa0\x67\xd9\x7a\xad\xac\xad\xf6\xf9\x2d\x3c\x57\x85\x5b\xaf\xbe\xc0\x66\x63\x5f\x19\x27\x2f\x2a\x23\xd2\x28\xe7\xab\x3e\xc1\xe6\xcf\x86\x2e\x2e\xd9\x6e\x47\xd7\x2c\xab\x5c\x75\x6d\x0d\xdc\xd9\x09\x88\x47\x1f\xdf\xd1\x6c\x97\xef\xb5\x5d\x43\xc9\x05\x7e\x78\x34\x9d\x2c\x6f\xc3\xee\xff\xb7\xdc\x86\x90\x8c\xce\x57\x04\x59\x1f\x83\x96\x9a\xc7\xe9\x77\x70\xed\x7b\x4e\x5c\x29\x95\x67\x44\xbf\x54\x8c\xc7\xa9\xac\x7c\xba\xf0\xbe\xb8\x42\x08\x83\x12\x49\x59\x09\x6b\xa7\x20\x62\xe8\x0d\x4d\xeb\x39\x5b\x68\x60\xe9\x58\x8d\x21\xa8\xb4\xbc\xaf\x35\x74\x53\x6b\xae\x46\x52\x7c\xa0\xeb\x91\x56\xa1\x8e\x32\xab\x13\x4d\x8e\x28\x9f\x8c\xdd\x1e\x54\x50\x92\x27\x84\xad\xf2\x0f\x36\x35\x5d\x21\x08\xdb\xb3\xc7\x83\x7c\x5f\xc1\xe6\x57\xfa\xa2\x08\x3b\xfb\x77\x20\x39\xef\x5f\xfe\xdb\x4f\x3f\xbe\x7f\xf9\x82\xfc\xbd\x52\x0c\xdd\x4f\x7c\x2f\x8a\x15\x2d\x4b\xba\x6e\x27\x33\xb2\x9f\xfe\x00\x9f\x82\xbb\xca\xd1\xe2\xa0\xf1\x54\xf2\x74\x45\x57\x95\x36\x69\x92\x77\xb2\x29\xf3\xe3\x6b\x75\x46\x5b\x18\x23\x21\x06\x8f\x76\x9d\x91\x8f\x3c\xc7\x19\xc5\xbf\xfc\x29\x2f\x6e\xb3\x1c\xee\xa3\x0f\x92\x0e\xfd\xc8\xff\x0b\x92\x15\xdb\x1b\xfd\xe7\x4a\x91\xd5\x3f\x67\xe5\x5f\x18\xfd\x12\x6e\xcd\xaf\x8a\xfb\xaf\xb2\xbb\x1f\x0a\xd1\x2b\xe9\xc7\xec\x20\xd4\xda\x41\x1c\x9e\xec\xe4\xf9\xdb\x37\x1f\x3e\x3e\x7b\xf3\x71\xf9\xf1\xd9\x9f\x54\xba\x7d\x1f\x8b\x4f\xb9\xef\x08\xa5\x1b\xd7\xe9\x42\x53\x8b\xad\xfe\x36\xa5\xd8\x8a\xd6\x3c\x48\x3e\x97\x22\xed\xfe\x65\x71\x0c\x0f\x07\x85\xb1\xf6\x32\x55\x14\x4e\x0d\x80\xbc\x95\x5b\x2f\x13\x9f\x14\xb5\x7f\x56\xbe\x60\x72\x38\x1f\xb0\x45\xe4\x8e\xe8\x0a\x6c\xd6\x23\x32\x5f\x18\x64\x14\x8e\x40\x54\xc5\x19\xa9\x70\x49\x84\xf5\x67\xb4\x90\x51\xd7\x56\x3d\x8b\xd2\x9a\x94\xdf\xfd\x91\xfe\xe1\xe6\x8f\xf4\x0f\xb3\x12\xa9\x84\xe1\x35\x99\x22\x9c\x13\x66\xc4\xba\x29\xfe\x23\xfd\x03\x78\x99\x64\xb8\xb6\xcd\xe4\x08\x67\x17\xe4\x8f\xf4\x0f\xb8\xbc\x24\x35\x96\x62\xad\x7e\xf3\x27\x43\xdc\x28\xce\x9d\x4e\x0a\x8e\xd6\x9a\xad\xdf\x53\xbe\xa6\xc2\x81\x39\x65\x65\x49\x45\xf5\xa6\xa8\xd4\x0b\x87\x8b\x1c\xc9\xca\xda\x0a\x25\xeb\xf8\x35\x79\xd9\x65\xc6\xe3\x20\xb5\x4c\x88\xbb\xae\x52\x0f\x98\x35\x54\x3b\xdc\xb2\x8d\x3d\x57\xc2\x6f\xd5\xb6\x3d\x96\x40\xa6\x7c\x5d\xac\xeb\x9c\x26\xf8\x41\x79\x49\x9d\x4f\x1b\x79\xf3\xd2\x34\x01\x82\x73\x29\x8a\xba\x62\xfc\xee\x09\xfd\x5a\x3d\x59\x15\xbc\x12\x45\x9e\x53\x91\xe0\x79\x42\xbf\xee\x0b\x51\x95\x09\xd6\x25\xa5\x58\x9a\xdb\x5f\xa2\xe6\x15\xdb\x51\xf7\x5b\xd7\x53\x57\x2c\x2f\x93\x05\xee\xee\x8b\xa4\x2e\xe9\xa8\xac\x04\x5b\x55\xc9\x99\x98\x3c\xb7\x8d\xc1\x21\xd7\x96\xdc\xf4\x21\xee\xb7\x32\x9b\x27\x3f\xd7\x54\xdc\xbf\xcb\x44\xb6\x93\xf5\x7b\xbf\x20\x29\x12\x5e\xfe\xbc\x7f\x41\x73\x7a\x97\x55\xd4\x3e\x50\xec\x7a\x80\x93\x24\x1c\x76\xa6\x82\x70\x4f\xa7\xd8\xf0\x53\x97\xff\x8c\xae\x53\xb9\xc8\x5e\x5d\x28\xe5\x38\x9d\xaa\x60\x4f\x04\x27\x0a\x35\xb8\x12\x19\x2f\x99\xac\xf1\x63\xf1\xbe\xa8\x2b\x3a\x8b\xd8\xe3\xe4\x75\xe6\xbe\xd4\xae\xf0\x00\xc3\xa4\x73\x1a\x74\x6a\x39\x1c\xc2\x87\x03\x0c\x78\xea\xea\xa2\xe0\xd9\x22\xe6\xcc\xa7\xe7\x4e\xff\x98\xe9\xbd\x5f\xc8\x91\xf0\xc9\x5e\xd0\x0d\xfb\x0a\x2d\xbe\xc9\x76\xf4\x99\xb8\x43\x46\x17\x88\x1a\xac\x0f\xf6\xb7\x0f\xcb\xaf\x40\x8e\x48\xff\x96\x6c\xf5\xff\x1b\x03\x92\x9b\xdd\xea\xbf\x3b\xdb\xae\xef\x28\x88\x9a\x2f\xf3\xa2\xd8\xc3\x41\xf0\xb6\xff\x22\xc8\x86\x12\x6c\x69\x10\x58\x1d\x8e\x4c\x9a\xc8\xfa\xa8\xf8\x68\x17\xb4\xf4\x80\xc3\xa2\x67\x10\x9c\x4d\x63\x47\xcf\x14\xc8\x8b\x15\xa8\xcb\x9e\x64\x7b\xd6\xff\x92\x17\x9c\x2e\xcd\xaf\xfe\x62\xdb\xac\xdc\x0e\x29\xc6\xca\xaa\x10\xf7\x03\x4a\x66\x75\x55\xf4\x17\x2b\xef\xcb\x8a\xee\x9e\xdc\x51\x4e\x45\x56\xd1\xa5\x4f\x6c\xe2\x45\x5d\x89\xe5\xa6\xe8\x2d\xb5\x2e\xf3\xbe\x57\x6a\x01\x8e\xbe\xed\x7b\x09\xe4\x65\xb9\x57\xd4\xa6\x53\x86\x8a\xcf\x6c\x45\xcb\x27\xfa\xc1\xf1\x02\x47\x06\x08\x19\x6e\xdb\x2f\xc3\xed\x77\x9c\x4c\x77\xe9\xac\x0b\x46\x30\x0e\x93\x78\x8b\xd7\x9d\xad\xfa\x7d\xbd\xfa\x44\x2b\xa5\x19\xa4\x13\x38\x3a\xe2\x83\xea\xb5\xfe\xcd\xf8\x9d\x7b\xf0\x6f\x8e\xda\x9a\xe2\xf6\x33\xfb\xc7\x8b\x0f\xaf\x08\x44\xa3\xe8\xde\x49\x06\x42\x4a\xcb\x6a\xc1\xdd\xc1\xfb\xc1\xa4\xd6\x8b\xbc\x23\x74\xf2\xac\xae\x8a\x57\x7a\x17\x11\x3a\xf9\xb3\xda\x7f\xfe\x93\xac\xdc\x7a\x3f\xdf\x14\x9c\x7a\x3f\xed\x9f\xfa\xca\xee\xbd\x1c\x5f\xd9\x9d\xfa\xe0\x9b\x53\xa6\x7d\xf9\xfe\x0c\x11\x69\x9c\xc5\xbf\x5b\xa9\xdf\x99\x81\x15\x8b\x41\x15\xfb\x83\x1e\x58\x31\x1f\x56\x71\x38\xbf\x03\xeb\x66\x83\xea\xf6\x97\x72\x60\xc5\xc5\xa0\x8a\xbb\x1b\x67\x60\xf5\xd9\x37\x56\xff\x83\xc9\x16\x39\xb0\x95\xde\x1a\x8e\xb6\x1b\x9c\x9d\x81\x6d\x95\x83\x46\x64\x4f\xe8\xc0\x5a\xeb\x47\xd4\x3a\xb0\xca\x7c\x78\x95\x03\x6b\x5c\x0d\xaa\xd1\xa3\x5d\x03\xeb\xdd\x0c\xee\xa9\x23\x92\x03\xab\xde\x3f\x62\x5e\x1f\x57\xf3\x76\x50\xcd\x1e\xdd\x1f\x58\xef\xda\xab\x37\xc6\xb4\x84\x3c\x49\x97\x77\x01\xa7\x25\xfb\x8b\xf2\xcf\x4c\x14\x5c\x32\x74\xfd\x8c\x84\x94\x21\x4e\x8b\x10\x8e\xab\x7b\x50\x6e\x28\xb3\x88\xc2\x7b\x3c\xa6\x13\xb6\xdb\xe7\xd4\x9a\x1a\x0d\x16\x5e\xf8\xb4\xf4\x84\x61\xa1\xdd\x5a\x34\x93\x29\x02\x5d\x58\xeb\xb3\xd9\x43\x83\x2d\xcf\x33\x13\x13\x6f\x7c\x13\xf3\x18\x2f\xef\x40\x5b\xb0\xed\xce\x2e\xb0\xaf\xfa\xad\xe2\x59\xed\x57\xa8\x69\x8e\x4f\x77\xc8\x6d\x75\x27\x5e\x49\x62\x71\xe9\x2d\x5c\x94\xb6\x2c\xf7\x4b\x16\xc9\xc4\x2d\x06\x4b\x65\x5d\x6b\x4a\x4f\x80\x6d\xc9\x16\xfa\x4b\x02\xf2\x98\x27\x5b\x48\x79\x50\xd0\x8a\xfe\x18\x4c\xbc\xce\x79\xc7\xbb\xb2\x04\x23\x26\xba\x0e\x17\x64\x7a\x5d\x3c\xe5\xd7\xc5\xc5\x05\x02\x17\x50\x27\x4b\x14\x66\xb5\x41\x94\xa9\xc4\xfd\x8f\xfc\x73\xf1\x89\xa2\x34\xc3\x14\x33\xe4\x85\x12\xd5\x3e\x2a\x5e\x3a\xc5\xd9\x44\xdb\x50\x91\xf2\x70\x36\x8f\xf4\x12\x4a\x09\xc6\x3c\x02\xca\x03\xcf\x0a\x92\x0a\x0f\x4f\xcd\xb8\x52\x3b\xec\x6d\xad\x3c\xf8\xcd\x93\x84\x10\xc2\x9d\x68\xfa\x7b\x74\x93\x16\x24\x2d\xdd\xb3\x2b\x9b\xa2\xec\x37\x09\x42\xd6\x4d\x2e\x81\x2f\x05\x04\xb2\x3d\xab\x52\x2b\xd2\x5e\x21\x50\x7d\x16\xee\x73\x84\xc5\x05\x29\x2e\x18\x76\x46\x88\x54\x5c\x90\xe4\x37\xc9\x45\xa9\xbd\x00\x64\xcd\x68\x26\x2e\x08\xbb\xe0\xd8\x83\x51\xce\x03\x84\x40\xcc\x89\x9a\x1c\x53\xb7\xf5\xef\x30\xc3\x49\x54\x22\x8a\x34\x79\x02\x7f\xcd\xa7\x90\xdd\x9a\x24\x4f\x92\x0b\x0e\xdd\x90\x8d\xca\xbf\x1a\xb0\xaa\x68\x56\x04\x74\x6f\xb5\x32\xb4\xc8\x59\x85\xdf\xb9\x27\xc5\xb1\x89\xa6\x6f\xf4\x6b\x45\xf9\x3a\x7d\xb0\x07\xb0\x88\x1f\x40\x2d\xc3\xb4\x5e\xeb\xa7\xf8\x0e\x34\x7e\xad\x97\x0a\x94\x1e\xd7\x25\x15\xcf\xee\x28\xaf\x5a\xaf\xed\x73\xac\x40\x4c\x0d\xc5\xae\xea\xfd\xec\xfc\x0a\x8b\xa2\xa8\x7e\x7a\xff\x6a\x96\x3c\x49\xb0\x52\x54\x76\x44\x69\x45\x85\x74\x41\xdc\xa3\xdb\x25\xd4\x0d\x82\x11\xea\x35\x5b\x10\x6a\x07\x20\x79\xf2\x75\xb1\x82\xad\xfd\xba\x58\x53\xbc\x92\xbc\x35\x8c\x0a\x6f\x08\xb5\x8d\xec\x49\x22\x65\xc3\x04\x6f\xc9\xf9\x15\x5e\xdb\x7d\xfa\x43\x9d\xe7\x6a\x47\x73\x50\x77\xc3\xf3\xb2\xde\x03\x3d\xd1\x8b\x82\x14\x88\x07\x64\x2d\x22\x75\xba\xc1\x1c\xe1\xb5\x97\x0e\x3a\xd1\x9d\x49\xce\x92\x27\xbf\x91\x5b\x71\xdd\xda\xc4\x46\x0f\xf0\xa1\xca\x2a\x9a\x3e\xec\xb3\x6a\x3b\xab\x1a\x13\x72\x27\xfb\x66\x6a\x40\xb3\x74\x4b\xce\xa7\x18\xba\xa1\xbf\xd2\xdd\xc3\x15\x52\xb1\x42\x61\x17\x33\xb0\x79\xf2\x3b\x8a\xd2\x12\x43\xc8\x8e\x20\xb9\xeb\xa3\x38\x1c\xd4\xf1\x58\x8f\xc7\xc9\x13\x75\xc6\xc4\x8d\x6c\x31\x2b\xb7\xc9\x91\xd6\x04\x42\x30\x21\x5b\xe7\x59\x60\xee\xf1\xc6\xdb\x75\x01\xdd\xb6\x9b\x0d\x9e\x9a\x25\x72\xfb\x08\x1e\xbb\x75\x34\x3b\x85\x62\x7f\x05\x35\xd8\x93\xbf\xa6\x7a\x97\xc2\x0b\xf5\x77\x83\xce\x00\xaf\x5c\x9e\x30\xa0\x9a\xa5\x47\x35\xdb\xbb\x32\xc1\xe7\x60\x00\x50\x3b\xc0\xa8\x85\x8d\x22\x07\xdc\x4c\xd5\xb7\xc8\xb8\x93\x26\x76\x7c\xf2\x8c\x5e\xbb\x16\x18\x4e\x74\xaf\x13\x4c\x11\xee\x34\x1d\x27\xd8\x60\x7b\x63\x9c\x55\xb0\x01\x66\x65\x9a\xd8\x1f\x09\x92\xbc\x87\x9c\x85\x32\x4d\xd4\x5f\x09\xc2\xa5\x7d\x54\x9a\x47\x7a\x79\xf4\x63\xf7\x2b\x41\xb8\xe0\x3f\xed\xd7\x59\x65\xde\x79\x3f\x13\x84\x21\xaf\x84\xa9\xcd\xfe\x48\x10\xf6\x00\x64\xba\x07\x74\xf0\x4d\x04\x5c\x86\x73\xb9\x39\xc1\x27\xb5\xf4\x2e\xdf\xaa\x68\x0d\xf8\xae\x47\x30\x4b\xa2\x4d\x3c\x43\x8e\x66\xa6\x0e\x05\xac\x94\x3f\x25\xb0\x53\xbc\x55\x76\x03\x68\x2b\x03\xdd\xd8\xd0\xe1\xa0\x73\x7b\x58\xa6\x46\x7b\x49\xcb\x36\x94\xb3\xc6\x9f\x33\xbe\xce\xad\xee\x1d\xbc\x15\x81\x55\xb2\xc2\xeb\xc4\x70\x4f\x66\x8f\xc4\x09\xa9\x2e\x94\x22\x77\xd1\xe1\x8a\xd8\x1c\x05\x70\x01\x55\xea\x02\xaa\xe4\x05\x84\x01\xdb\x45\xdd\x40\x54\x25\xbb\x2e\x5b\xf5\x53\x3d\xea\xbb\xc8\xa8\xd1\x44\x0e\x81\x50\xdc\x99\x97\xac\xac\x3e\x50\x73\x38\x1a\x7f\xcb\x0e\xac\xd8\x64\x04\x55\x3d\x3b\xd9\x80\xbf\xf1\xfd\x16\x0c\x88\xcc\xae\xf8\x4c\xc1\x49\xc7\x38\x00\xa5\xfd\x8b\xa0\xb0\xfe\x21\x7b\x0a\x34\xd6\xb6\xfb\xdb\xa9\xfe\xe9\xfd\xab\x14\x48\x42\x38\x08\xd7\x35\xa4\x3c\xd1\xd2\x63\xbd\x57\x38\x85\x90\x0e\xb8\x91\x47\x11\x76\x4a\xb6\x5e\x87\xbd\x4d\x5c\x37\x93\xbe\x8e\xa3\xc6\x3b\xe2\x5d\x5b\x09\xcc\x64\xd3\x77\xd8\x8f\x4c\x54\x83\x63\xcf\xbb\x1f\x77\x3a\x64\x93\xda\xc4\xaa\x1d\x36\xa2\x53\x54\xa4\xa3\x96\xfd\xc7\x10\x12\x75\x6f\x9c\x5f\x39\x9e\xbe\x70\xb1\x04\x5f\xf5\x7f\x97\xf0\xbf\x3f\xc8\xff\xdd\x9b\x9f\xe6\xbf\xc4\x6e\xf0\x27\xf3\xaf\xf7\x8b\x27\x77\xdd\xfc\xe2\xd6\x81\x85\x5c\xfd\xf1\x77\xaf\xb3\x6a\x3b\x11\x19\x5f\x17\xbb\x14\x1d\xa6\x38\x4d\xbe\x02\x34\xd3\x4d\x35\xfb\xe7\x71\x75\xf8\x9f\xc8\x61\x00\x5d\xfd\x11\x35\xa8\x79\x0c\xa9\xd3\x1c\x47\x87\xda\x79\xb1\x1c\x71\xa7\x08\xe5\xb6\x40\xcc\x0d\x3d\x01\x7d\xf1\x07\x9a\x53\x08\xf9\x48\x6e\xb3\x52\xde\x6a\x82\x24\xc9\x99\x72\x4a\x05\x6e\xf6\x59\x55\x09\x76\x5b\x57\x34\x4d\xb6\x82\x6e\x12\xd4\x3d\xde\xf2\x4b\x38\x1d\x22\x72\xf4\x7b\x69\xee\x00\x92\xbb\x2f\xf6\xa5\xbc\x6c\xdb\x04\xd7\x5d\xc9\xb1\x0b\x30\x68\xc5\x32\x68\xb6\x11\xfd\xe4\xba\xdd\x53\x3b\xb1\x14\x49\x42\x9b\x40\xcb\x09\xe3\x23\x8b\xa8\xd5\x62\x2f\x15\x9a\x20\x70\xc4\x3e\x9b\x08\x4f\xec\xd1\x4e\x03\xf2\x03\xc6\x2a\x8f\xcf\xee\xbb\x1e\xfa\xe7\x0a\x83\x0d\x36\xab\xb6\x3c\xdb\x51\x25\xca\x05\x25\x0d\x97\xa3\x65\xba\xe0\x9d\x59\x27\x74\xc6\x21\x57\xa8\xde\xd2\x7f\x7b\xf2\xdb\x27\x38\x81\x2f\x58\xf7\xa9\xc9\xc8\x64\xdf\xb4\x7c\xa8\xd9\x45\x92\xde\x90\x27\x87\xdf\xa2\x04\xc9\xf2\x7d\xe5\x78\x5f\xb9\x27\x7f\x83\xb6\xee\xa4\x38\xe8\xac\xdc\x17\x24\xa5\x93\x92\x66\x62\xb5\x3d\x1c\x92\x04\x5d\x84\x37\x66\xf4\xe6\xf3\x50\xd6\xee\xa8\xda\x20\x29\x3a\xd3\x97\xad\x5b\x11\x8a\x30\x78\x0c\xca\x59\x54\x49\x88\x54\x04\x6d\x5d\x6e\xd5\x37\x47\xee\xc0\x5f\xd6\x44\xb0\x4f\x74\x9c\x43\x67\x1f\xfb\xa0\x90\xad\x1d\x77\xd3\xbb\xbb\x27\xb0\x5b\x67\x9a\x32\xab\xa7\x50\x73\x83\xed\xb8\x3a\x03\x11\x44\x89\x34\x14\xd7\x35\x5b\xcf\x8a\x14\x35\x9d\xfb\xd1\xb5\xe0\xe6\x47\x28\x09\x88\xda\x4b\xd9\x6b\x8f\x08\x73\x76\x05\xfd\xcc\x8a\xba\xfc\xe9\xfd\xab\xf0\x0a\xb6\x73\xfb\x6b\x74\x2a\x98\xd1\x5f\xda\xaf\x3e\xb6\xc4\x2d\xfa\xd9\x69\x0e\xa5\x4d\xb3\x7c\x7e\x54\x65\x5c\x3b\xd7\xa3\x81\x56\x25\x8b\x17\x74\x0a\xa1\xf1\x58\x23\x30\x2b\x92\xd1\xf4\xb3\x19\xa6\xad\x24\xde\x76\x2f\x8b\x61\x15\x43\x3d\xa4\xa3\x4b\x56\x1c\xe9\xf0\xd4\x24\x54\x81\xfc\x74\x09\x49\x94\xbc\xa0\x99\x12\x68\x95\x4a\x45\xeb\x7e\x8c\x7a\x25\x56\x1e\xf3\x0b\xf1\xad\x3c\xd0\x11\x96\x7c\x18\x7b\xd4\x9a\xca\xe3\xcc\xd1\xc9\x75\x38\xc1\x18\xb5\xac\xdf\xa7\xb8\xa2\xb8\x26\xf4\x11\xf2\x14\x3f\xc5\x64\x28\x95\x0b\x9c\xc3\x24\xa6\x0d\xf2\xf5\x40\xdf\x76\xa3\xc9\xba\xe1\x36\xeb\xdd\x85\x56\xb5\x1d\xdd\x62\xb4\xef\x9e\x11\xad\x7b\xa6\x5f\x46\x2a\x5b\xbd\x39\x2d\x9a\xd4\xf0\xea\x79\x96\xe7\xb7\xd9\xea\x13\xa1\x0d\xde\xc2\x0a\x0f\xad\x1e\x47\x6a\x81\x7b\xe0\x9b\x8e\x69\x70\x14\x81\x61\x8b\x4c\x14\xc2\xf2\x0c\x9d\xd8\x7f\xa0\x17\xf7\xb6\xdd\x11\x8f\x11\x2f\xe2\xd4\x73\xd1\x37\x0c\x49\xaf\xe8\x7a\x51\x49\x71\xd5\x7e\x2c\x7c\x38\x6f\x7d\xcd\xbb\xb7\x81\xf7\xbf\x64\x3a\xb1\x14\xf3\x2c\xac\xd9\x6f\xec\xd0\x21\xd1\x91\xb8\x49\x92\x59\x65\x44\x68\xe1\xc5\x28\x33\xbf\x9e\x42\xb0\x3b\xc6\x2d\x9b\x7e\x38\xa4\xd0\x71\x51\x54\xc5\xaa\xc8\x2f\x92\x27\x4f\x92\x0b\x3a\xd9\x16\x65\x05\x9c\x15\x9d\xc8\xa9\xd0\xf2\xf6\x4c\xbe\x92\xbf\x41\xe8\xa6\x46\x9b\x4e\xb4\x67\x3d\xe8\xcc\x89\x70\xda\x5f\xc2\xd5\xdf\x46\x49\x19\x85\x8a\x4e\x29\xba\x90\xf3\x70\xc1\xb5\x1f\xe7\x1d\xad\xde\x42\x27\x09\x83\x10\x98\xb6\xa2\x30\xea\xe5\x9d\x14\xdc\x13\xcd\x18\x1f\x39\x8f\x3d\xc5\x78\xd0\xef\xfe\x07\xd4\xde\x66\x5e\x63\x95\xa5\x30\xa1\x1e\x82\xdc\x33\xbe\x16\xb2\xae\xdf\x4f\x12\xc0\x97\x8b\xbf\xfd\xc3\x64\x2a\xf9\xeb\xf6\xeb\xd7\xc5\x2d\xcb\xe9\xe8\x43\xb6\xc9\x04\x53\x05\x42\x7c\xba\xe7\x5b\x51\xec\x68\xec\xcd\x5f\x81\xd8\x96\xa3\x77\x5b\xd0\xfc\xa1\xf1\xf8\xfc\x3c\xad\xc6\xe3\xc4\x32\x21\x30\x54\xed\xd8\x6e\xf5\x9f\xad\x41\x39\x1a\x21\x77\xc2\x45\x85\xa2\xd6\xa9\x8e\xe3\x4b\xc4\x97\xe9\x51\x8e\x83\x11\xe9\x93\x93\x6a\xa2\x4d\xa3\x96\xe6\x9a\xfc\x7a\xc6\x05\x6c\x06\x07\xdd\xc4\x87\xa3\x34\x59\xaa\x0e\x4d\xda\x05\x13\x84\xf5\x23\x49\x30\x4e\x7c\xa5\x2e\x74\xab\x16\xed\x2b\xed\x0b\x18\x9a\x9a\xf7\x15\x75\x6c\x82\x7e\xa2\x5c\x17\x7d\x27\xc0\xd9\xa3\x7c\xed\x7d\x40\x8f\xaa\x03\xe8\xa1\x74\xfb\x92\xb2\x95\x74\x77\x9b\x53\xe0\x91\x52\x49\x5b\x50\x98\xe5\x44\x77\x6f\xb9\x2e\x7e\x7a\xff\xca\x79\xb0\xa5\x89\xdf\xb3\x04\xc3\x97\xd6\x83\x9f\x2b\x31\x49\xc8\x55\x11\xd9\x4a\x4d\xf2\x33\x71\x57\x6a\x13\x18\x9b\x08\x33\xed\x38\x23\x6c\xb2\x2b\xd6\x34\x2f\x71\x49\xd8\xc4\xf3\xe6\xb4\x20\xc6\xae\x0f\x5e\x07\x94\x6f\xd3\xf9\xd4\xc1\x46\x4e\x96\x9f\x28\xdd\xbf\xb0\xf9\x34\x75\x3d\x7f\x51\x99\x31\xce\xa7\xb8\xb6\x4c\xf2\x5f\x59\x15\xb1\xc1\xaa\x21\xfb\x03\x8b\x8b\xfc\x1a\x30\xc3\xea\x9d\xe5\x75\x58\x8b\xfc\x87\x42\x74\x6e\x68\x63\x5b\xa4\xc1\x50\x90\xf5\x0a\xb1\xbe\xc8\x81\x65\xb9\x7c\xb6\xaa\xd8\x67\xfa\x6b\x2e\xf8\x7f\xf3\xd2\xa8\x7f\x5f\xb3\x95\x28\x72\x76\x6b\x73\xc2\xd4\x13\x33\x96\x1f\x79\x45\x79\x05\xab\x06\xda\xbe\xf1\x38\x3d\x4f\xfd\xd0\xa1\x12\xd9\xc8\x4b\x64\x80\x94\x6c\xf5\x7b\x41\xf7\x99\xa0\x9e\x03\x87\x5b\x7f\x6d\x76\xd8\x66\x79\x5e\x7c\x79\xf9\x73\x9d\xe5\x28\x2d\x71\xad\x64\x37\xbf\xd3\x08\x7c\x40\x7d\x86\xed\x24\xe1\x02\x97\xbe\x53\x06\xf5\x36\x1d\xeb\xfa\x87\x9e\x54\xc4\xb7\xa9\x58\x40\x02\xc0\xa5\x56\x89\x75\xfa\xcc\x5a\xea\xa1\xe7\xc7\x2b\xe2\xc8\xd8\xd1\x2f\xfc\x32\xee\x93\x80\x6a\x1e\xf9\x2c\x42\x34\xe5\x45\x71\xe2\xab\x77\x8a\x39\xdd\x66\x65\xcb\xa5\x98\xb6\x9d\x20\x1c\x53\x06\x77\x07\xa8\xd8\xe1\x1b\x05\xaa\x13\xa5\x89\x3a\x72\xc8\xc0\x40\xf5\x56\x15\x52\x11\x75\xb5\x58\x7c\xa3\xf1\xb8\xe8\x1e\x6e\x5c\x34\x98\x4b\x56\x32\x67\x7f\xf7\xb7\xe0\xac\x7d\x41\xf5\xb7\x19\xd9\xbf\x26\x6b\xbe\xa1\x04\x21\x9b\x3a\x64\x28\x92\x88\x17\xed\xa3\x67\xa0\xaf\x1d\xf0\x12\x33\xca\x77\x85\xe1\x8b\xd2\x0c\x33\xcd\x33\xc7\x46\x05\x6d\x67\x08\xe1\xa2\x4d\xa4\x0a\x3c\xa7\x36\xc0\x42\xe0\xf9\x83\xef\x79\x9f\x35\x0b\xc0\x4e\x37\xe7\xfd\x87\x42\xb4\x57\xd9\x84\x76\x99\x2e\xf6\x4f\x57\x38\xa4\x89\xa0\xab\xe2\x8e\xb3\xbf\x53\x31\x51\x92\x01\x84\xe7\xa5\x02\xe1\x92\x64\xf3\xcc\x85\x89\x99\xd7\xb8\xee\xc1\x4e\xf0\xa3\x12\x2b\xe7\xf4\xc0\x2f\x00\xb5\x1d\x90\x72\x1c\x69\x95\x4f\x74\x85\x92\x8f\x42\x10\xb6\x76\x6d\x5c\x2a\x9b\x54\x4e\x93\x4b\x8f\xa6\x89\x57\x0d\x22\x43\x89\x30\x6b\x93\x3e\x81\x21\x99\x64\xd1\x27\xb7\x86\xae\xc0\xfd\xec\x52\x48\x58\x7a\x89\x4a\xd5\x91\x46\x63\x9a\x6d\x68\x2d\x96\x35\x4a\x0a\x61\x65\xe4\x88\x9e\x9f\xbb\xef\xe6\x74\xd1\xe0\xb2\x0a\xfc\x99\xba\x79\x3f\x4d\xd1\x33\x7e\x38\xa4\xad\x67\xb1\x96\x11\x64\xc4\x23\xa2\xc1\xca\xfc\x7c\xb2\x6e\xc0\xac\x56\x36\x76\x48\x11\x66\x41\x45\x4c\xc4\x93\x8f\x28\x3f\x62\x70\x22\x5c\xc8\xff\xbc\x5a\xdc\xc8\xff\xcd\xc4\x89\x75\x69\xf9\xa0\x0f\x92\xeb\x3c\xbc\x9d\x78\xfc\x19\xb5\x36\x76\x57\xff\x2c\xb9\xa8\x14\x1a\x4b\x6f\x67\xc0\xd5\xfd\xd4\xbd\xa4\x14\x1a\x47\xb7\x8b\x92\x85\xa7\x98\x9f\x4c\x6e\x24\xc9\x17\xaf\x0c\xd0\x15\xe5\xd9\x6d\x4e\x5f\x15\xd9\x9a\xf1\xbb\x0f\x52\x46\xcc\x2a\x5a\xaa\x90\xf1\xf8\x3b\x8d\x34\x06\xd1\xd8\xa5\xcd\xb1\x49\xbf\xee\x73\xb6\x62\x95\x4a\x6a\xeb\x43\x2c\x16\x00\xcc\x52\x92\x2a\x96\xc1\x08\xe8\x43\x37\xf0\x0a\x77\x9d\xc0\xbe\xbb\xf2\xd6\xda\x8f\x9e\xbe\xf1\x7f\xcc\x1e\x1a\x9c\x79\xaf\x7f\xbf\xc0\x25\x49\x9e\x2c\x6b\x5e\x97\x74\xbd\x5c\xd7\xbb\xdd\xfd\x12\x90\x40\x96\x52\x26\x57\xf4\x69\x99\x5c\x54\x17\xc9\x93\x99\xca\x9a\x1e\xcd\x23\x17\x85\xc5\xe1\x90\x7a\x80\x63\x4e\x1e\x1a\x74\x6c\x3a\xc7\xe3\xb4\xd0\xe9\xc6\x2e\x92\x65\xae\xde\x26\xf8\x41\xf2\xec\x15\x64\x08\xdf\x67\x2b\x3a\xe3\x93\xf0\x41\x83\xb0\xf7\x99\xea\xdd\xc9\x8f\x94\x56\xaa\x6c\x10\xc2\xd9\x4d\x5a\xa4\x42\xe7\x83\x62\xba\x26\xdc\xfe\x00\x05\xcb\x84\x70\x62\xfa\x27\x5b\x17\x38\x31\xed\x9a\x7a\x71\xa6\x51\xeb\x5d\xef\x30\x07\xaf\x0a\x75\xc7\xa4\x08\xa1\x99\x7b\xd3\x4a\xab\x22\x05\x54\x12\xdc\x8e\x21\x82\x20\x11\x1e\x28\x0e\x80\x3b\x7a\x9d\x9b\x50\x7e\xc7\x38\xfd\x91\x6f\x0a\x54\xc8\x92\x10\x37\xd8\x53\x62\xb2\xa9\xf3\x5c\x8e\x52\x2f\xe1\xc5\x15\x52\xae\x88\xee\xfe\x04\x77\x9f\xfc\x07\x5d\x6e\x56\x34\xb8\xaf\x35\xcc\x00\xe7\xb8\xa4\x82\xc1\x35\xab\xc3\xba\x59\x38\x79\x93\x6c\xbd\x86\xbb\xf2\x87\x42\xbc\x84\x8f\xd5\xd5\x02\xb0\x84\x6c\x93\x32\x2f\xc0\x58\x47\x16\xbf\xa0\x1b\xc6\x19\xbf\x1b\x65\x23\xd8\x8b\x23\xdb\x84\x18\x15\x5c\x3f\xfb\x27\x50\xdb\xfd\xd3\xa8\xa8\xab\x92\xad\xe9\x28\xe3\x23\x55\xfd\x88\x95\x23\x5e\x54\x23\xe0\x98\xe9\x5a\x4e\x99\x51\x77\x29\x1d\x93\xfc\x43\x85\x20\x9d\x13\x52\xce\x4b\x77\xc3\x1a\xce\x3c\x3c\xb8\xd6\x64\xa7\xcf\xb7\x8e\xca\x06\xa6\xb7\x9d\x7f\xb9\x2c\x6a\xb1\x8a\x60\xfb\xfc\x82\xa3\x2b\x82\xa3\x3b\xfc\x24\xea\x3c\xcc\xb8\x52\x27\xb1\xb5\xc3\x2d\x3c\xa2\x50\x9c\xa7\xe6\xd7\xc2\xa4\x80\x6a\xf3\xf6\x24\x10\xd3\xb3\x11\xe4\x4f\x0b\x26\xce\x18\xb0\xa0\x01\x3d\xe3\xfa\xc8\x24\x4f\x92\x06\xe1\x6e\x6c\xa9\xe3\x5f\xa8\x43\x55\x20\xff\x8c\x2a\x48\x3e\x03\x39\x01\xe8\x5c\x5c\x5c\x2d\xb0\xfc\xe7\xf7\x9d\xac\xb1\x3b\x00\xc2\xb0\xf5\x6a\xb4\xac\x20\x4c\xe8\x17\xac\xc4\x96\x04\x1b\x5b\xae\x76\xfe\x59\x05\x00\xbe\xce\xf6\x29\x78\xe1\xf1\xb3\xfd\x24\x93\xc4\x6d\x4d\xe4\x1f\x4a\x6b\xb0\x23\x9a\xd2\xac\xf1\xbe\x43\x69\x3e\x13\x95\xd8\x9b\x63\x03\x04\xfb\xe3\x7a\x26\x2e\x2e\x30\x0c\xe6\x5d\xc1\x78\x35\xdb\x61\x73\x70\x67\xbb\x06\xdf\x93\x3d\x68\x4f\xcf\x92\x52\x01\x8e\xdb\xe0\xea\xfb\xf1\x38\xbd\x07\xdd\xe9\x5a\xb5\x7c\x67\xae\x9d\xdb\x21\x14\x7f\xed\x51\xfc\x2d\x10\xf2\xf3\x2b\x9c\x96\xa4\x8f\x02\xa8\x22\xd3\x3e\x0a\x41\x3e\x4b\x72\x58\x6b\x62\xbb\xc3\x21\x9d\x71\xe5\x66\x9f\x43\x22\x83\x5a\x04\xb7\x6e\x11\xdc\xdb\x06\xe1\xed\x64\x95\x67\x65\xa9\xc8\x6e\x8d\xf0\x1d\xa9\x3d\x6a\x8b\x33\x63\x7f\x8f\xf4\xaa\x44\x6a\x6e\x96\x47\x09\x5f\x22\xc5\x02\xa6\x35\x5c\x0d\xfe\xac\xc1\xba\x7b\x2f\xb3\x9c\xac\xfd\x7b\x6c\x45\xfc\x0a\xdc\xf3\xcd\xd1\x46\x57\xb2\x21\x73\x85\xe4\x9d\x7b\xad\xbd\x79\x9a\x93\xa4\x36\xc7\x1b\x84\x55\xd7\xf4\x14\xb6\x3a\xa6\x9f\xfe\xaa\xdd\xc2\x76\x95\x06\xf4\xee\x64\xa1\x1d\x5e\x1a\xbc\x6a\x49\x77\xef\xf1\x0e\xdf\xe9\xbc\xad\x67\xbe\xda\x3e\xe0\x3c\x23\xce\x51\xfe\x7a\x82\xe6\x58\x31\x7d\x4d\x4a\xd1\x78\x7c\xae\xe0\x9e\xcc\xc3\x8b\x64\x92\x5c\x54\x33\xcf\xfa\x50\xf8\x2e\xe1\x1d\x12\xf2\xfb\x28\x09\xf9\xbd\x4f\x42\x7e\x0f\x24\xc4\xcf\xbc\xfb\xcf\x0b\x5c\x10\xdd\xf1\x36\x55\xe8\x1e\x6d\x01\x47\x5e\xd2\x74\xe5\x21\xa0\x0d\x24\x1a\x75\x4e\x3d\xc4\x05\x70\x1d\xf6\xba\xf4\x9d\x84\x38\xe6\x93\x5d\xb6\x8f\x5c\x4d\x00\xed\xe1\x44\x3d\x05\xf4\x89\x70\x75\x8c\x45\x8f\x86\xb7\x0e\xb3\x41\x0e\x34\x14\xf9\x29\xfa\x37\x2a\xa6\x4c\x8a\xc5\xbe\x24\x71\x9b\x95\x6c\x95\x20\x45\x09\x7c\xd3\x9f\x11\x0a\x8d\xc7\x54\x57\x19\x9a\xa4\x66\x04\xeb\x11\x70\xba\x23\x57\x2f\x4a\x54\x30\xb5\xa0\x77\xac\xac\xa8\x88\x48\x2f\xda\x93\xbf\x2f\xe2\xb3\xc2\x51\xd1\x48\xf8\x86\x1c\x59\x4b\x8f\x7c\x74\x5c\x3a\x0a\x43\x76\xff\x1b\x24\xe9\xd2\xd7\x02\x9d\x4f\x55\xda\x19\x85\x3e\x70\x54\x86\xd4\x81\xc6\xbf\x66\x84\xce\x37\x04\x55\xf7\x01\x33\x9c\x0a\xd8\x09\xd4\xe4\x9d\xb0\x18\x29\x84\xa7\x46\xa7\xf2\xf4\x0a\x8d\xc7\xd4\x86\xf3\x78\xda\xa8\x2b\x42\x48\xe5\xa5\xd9\x06\xc3\x01\xe3\x23\x7a\xc3\xe6\x7c\xe1\x79\x5a\x53\xcc\xd1\xec\xc9\x92\xad\x7f\xfb\x64\x52\xd1\x52\xa7\x7c\xea\x14\x4a\xd8\x3a\x41\x68\xc6\xec\x43\x87\x14\x81\x54\x46\x5f\xd6\xb8\x33\xfe\xc1\x9c\x7b\x88\x2a\xd9\x66\xe5\x8b\xf6\xf3\x98\xc6\x83\x3a\x7a\x31\xcf\x17\x0d\x5c\x8d\xb9\xba\x0e\xca\xfb\xdd\x6d\x91\xa3\x34\x79\xf1\xf2\x87\x67\x3f\xbd\xfa\xb8\xfc\xf0\xf2\xfd\x8f\xcf\x5e\xfd\xf8\x7f\x5e\x26\xe8\xac\x9e\xe7\x0b\x93\x8a\x61\xd5\x89\x55\x61\x93\x67\xd0\x92\x76\x67\xc0\x6c\x02\xfe\x0f\x74\x8d\x03\xc5\xda\x43\x83\x97\x25\xf5\x54\xb3\x1d\xfb\xb9\x55\xd8\x1b\xe9\x5c\x72\x42\xb6\x3c\x59\xa7\x31\xdf\x7e\x30\xcb\x2f\x7f\xde\x2b\x9d\xad\x41\x02\x46\x6d\x80\x2f\x8a\x79\x3b\x82\x1c\xef\x54\x2a\x75\x93\x5b\x07\xdf\x6b\x5d\x8c\xdd\x71\x6f\x00\x70\x3a\xec\x1b\xbe\x8b\x86\x18\xe0\x5b\x72\x17\x3f\xe2\xf7\x08\x2f\x3b\x8e\xf7\x3e\xf2\x07\xc2\x5f\x02\xec\xb1\xa5\x33\x20\x9c\xdd\xde\xa4\xbe\xd7\xfe\x6d\xeb\x4b\x40\x97\xfd\x4c\x22\x60\x20\x00\x6a\x01\xda\x80\x30\xe5\xb6\x64\xe1\xee\xf7\xf0\x6f\xb9\x2a\xd4\x1f\x99\x3c\xfb\x8d\x4d\x84\x56\x8e\xe4\x36\x46\xb4\x9d\x38\xa6\x54\xf0\x6d\x0f\x4d\xc8\xdd\x71\x4c\xe7\xe5\x02\x8b\x79\xb9\x40\xb8\x98\x97\x2a\x5d\x1d\x00\xd2\x23\x5b\x67\x2d\xeb\x14\x48\xb4\xeb\xac\xe5\x85\x9c\xcd\x6b\x95\x1d\xb1\x5d\x35\xc3\x62\x5e\x4b\x01\xa0\x86\xaa\xeb\x05\x61\x1e\xd0\x8d\x0a\xea\xb1\xaa\x5f\x47\x9b\x3d\xa2\x86\x52\x8a\xf0\x12\xa1\xd9\x97\xf1\x38\xbd\x95\x33\x69\xa3\xb1\x51\x7a\x87\xef\x25\x4f\xbe\x54\x3c\xe2\x57\x32\x5f\xe0\x97\xb2\x0f\x6f\x0d\x04\xad\x7c\xfc\x41\xf6\xfc\x33\xfa\xdc\xee\xf9\x07\x34\x1e\x27\x35\xff\xc4\x0b\xf7\x50\x32\x1b\x1f\xc6\xe3\x44\xb9\xd9\xea\x5f\xa9\x45\x06\xf2\xf6\x05\xe0\xd8\x96\x24\xe5\xe4\xf3\xfc\xc3\x02\x4d\x60\x2d\x0e\x87\x04\xac\x54\x90\x55\xa8\x26\xf3\x85\xe4\xe7\xf8\x24\x2b\xf5\x1e\xb4\x87\xd7\x0d\xf0\x5f\xa9\xec\x09\x5e\x05\x7b\xe4\x03\xc2\x21\x06\x1f\xc4\x0f\x41\x19\x36\x79\x86\xd2\x95\xd6\x1c\x20\x84\xf0\x86\x70\xc0\x58\x3f\x1c\xe0\xad\xfc\xf3\xed\x06\xa5\x2b\x84\xf7\xa4\xaf\xd1\x74\x85\x81\xd9\xdc\x92\x7b\x80\x66\xff\x80\xd7\xe4\xa1\xe6\x6b\xba\x2a\xe0\x9a\x7d\xe1\x6f\xb8\x56\xc7\x82\xcd\xb8\xc2\xb6\xf6\xf0\xa3\xbd\xf7\xc2\x3c\x81\x6d\xbb\xc1\xb5\xc8\xff\x95\xde\xcf\x72\xbc\x17\xc5\x7e\xf6\x41\xed\x62\x0b\x65\x05\x84\x65\x8b\xc3\x23\x3c\xbb\xc7\x70\x7c\xc1\xff\x11\xef\x33\x51\x95\xb3\xda\xbf\xeb\xf4\x51\x28\x1b\xfc\x72\xfe\x61\x41\x5e\x4a\x72\xf7\x72\xbe\x5d\x90\x35\xfe\x6a\xb3\x43\xbd\x55\x7f\x7d\xb0\x58\x4b\x0f\x3f\xef\xcb\xd9\x57\xbc\xcb\xf6\xb3\x97\x78\xef\x75\xa0\x9c\xbd\xc5\x4a\x58\x98\x3d\x30\x9e\xb5\x4c\xa0\x1e\xbb\xf3\x72\x4e\x17\x67\xbb\x89\x83\xf5\xb1\xc2\xf9\xa9\x8f\xf4\x21\x88\x7c\x8b\x77\x93\xa5\xfa\xfa\xdf\xde\x99\x37\x02\x60\x09\x41\x4b\x62\x90\x7b\xcb\x6f\xad\x1b\xdc\x93\x18\xbf\xf3\x6a\x47\x0d\x04\xf6\x2e\xc1\xea\xa0\x91\x8a\x40\x9b\xae\x26\x23\x6c\xc8\xea\xb8\x55\xf1\x30\x52\xd6\x7b\x41\xa8\xfe\xe3\xcc\xd8\x45\x0e\x87\x34\x23\x29\x25\x15\x20\x74\xaa\x97\x87\x83\x49\x4e\x53\x76\x68\xec\xf2\xe7\xfd\xe4\xe7\xbd\xa4\xaf\xb5\x97\xc3\x29\xb3\x11\x9d\x5e\xde\x1a\x3f\x91\x42\x2d\x6f\x66\x0a\x26\x14\x90\x0d\xb2\x39\x57\xd4\x40\xe1\xf8\x94\x3e\xa6\x9e\x3e\xaf\xf2\x30\x17\xa4\x9c\x33\x73\x92\xc7\xe3\xb4\x98\xc0\x46\x23\x35\x6a\x1a\xdc\x5e\x91\xd6\x9c\xb8\x1b\x46\x74\x17\x8f\x4e\xba\x5b\x1c\xd6\xb3\xbb\x14\x3d\x57\xaa\x88\xad\x1a\x9d\xa8\x93\x84\x1a\xdc\x4e\x99\xd6\x41\xa6\x52\x1c\x68\xe0\x16\xd0\xf1\x3f\x8b\xc6\xdb\xa9\x63\x97\x5c\x50\xd0\x65\x9e\x0b\x6d\xd1\x78\x68\xce\x3c\xdb\x47\xdc\xf4\x3e\x51\xf3\xe0\x4c\x9c\x98\x11\x7e\xc3\x7d\x4f\xe6\x9e\x0f\xa1\x04\x2e\x88\x08\xf9\x87\x8e\xf6\xb3\xc1\x6c\xa2\x46\x36\x2f\x16\x08\x97\x64\x9f\x0a\xec\x2e\x98\x96\x4d\x5f\xd0\x75\xbd\xa2\x69\xcc\x2f\x6a\x04\x58\xdd\xe5\xbc\x5a\x60\xda\xe0\x0c\x7c\x0a\x63\x94\x3a\x96\x16\x99\x46\x0b\x77\x4c\x45\xbe\xe6\xcd\x0c\x3b\x46\x99\x29\x50\x8f\x35\xfd\xd6\x3a\xa3\x5f\xea\x5a\x97\x5a\x70\xff\xa1\x10\xd1\x5a\x3d\xe3\x77\x1f\xaf\x33\x49\x2e\xec\xbe\x83\x1b\xe7\x68\x41\x49\x53\x81\xc5\x69\x30\xc8\xcc\xee\x86\x9f\x95\x98\x7e\x8d\x58\x01\xd7\x14\x76\x8d\x52\x0c\x69\x27\x18\x76\x77\x27\x05\x3b\xf7\xca\x24\x4b\x37\xf9\x25\x00\xf2\x50\x47\x46\x85\x79\x07\x0c\x61\xe4\x6d\xc6\xf0\x8c\xfb\x80\x6a\x51\xca\xa3\x2e\x80\x89\xa1\xff\x89\x8d\x05\x09\x06\x22\xb9\x27\x85\x19\xcb\xab\x88\x9f\xb1\x46\x72\x04\x03\x92\x31\x35\xf5\x8e\xd0\x8d\xaf\xc1\x15\xdd\xed\xf3\x4c\x33\xda\x40\x91\x5b\x57\x22\x3c\xd3\xd0\x5d\x33\x9f\x4f\xb7\x48\xd1\xe1\x7e\x09\x32\x63\x46\xc6\x9b\xa0\xc9\x2e\xdb\xe3\x92\x84\x99\x83\x8c\x95\x3d\xc8\x6a\x84\x50\x1f\x3d\x65\x9b\x34\x2d\x48\x36\x97\xa4\x14\xd0\x82\x83\x86\x26\xd1\x1d\x98\x16\x08\x27\x82\x6e\x04\x2d\xb7\xaf\x0d\xfb\xe4\x6f\x6a\xdf\x45\xc4\x90\x45\x55\x3c\x45\x67\xb7\x82\x66\x9f\x1a\x93\xf5\xaa\xc1\x90\x3a\x21\xd8\xfd\x3d\xb3\xc1\x36\x69\x5b\xcf\xd4\x95\x59\x5c\x3a\x2d\xb6\x49\xbd\x29\xf4\x25\x11\x29\x87\x68\xb2\x66\xac\xf4\x3f\xf2\x4d\x21\xe5\x12\x6f\x14\xf8\x9e\x7c\x9e\x2c\xbd\x75\xfa\xa1\x10\xe9\x0e\xe1\x3b\x78\xbc\x57\x5e\xc9\x25\xbe\xf5\x41\x8b\x55\x44\x79\x05\x78\x03\x22\xdb\xc1\x6d\x8c\xd2\xcf\x78\x67\x30\xe9\xee\xe5\xfd\xe8\xcf\x7f\x0d\x4c\x69\x41\xe0\x05\x5c\x67\xd0\x3a\xf2\xb6\x3e\xce\x49\xa1\x8f\xf0\x48\x45\x3f\x99\x9f\x91\xdc\xa8\x77\xee\xad\x2c\x7c\x77\x93\xfa\x9c\x6a\x8d\x0b\x75\xc6\xf1\x86\xf4\x31\x9a\xb6\xf2\x02\x78\x53\x84\x66\xf9\x8d\x43\x9c\xdc\x10\x29\xc8\x2a\xee\x16\x72\xc8\x44\xea\xd8\x44\xea\x48\x37\xa4\x98\xc4\x79\x4f\xbc\x22\xdb\xd4\x0a\x09\xf0\x08\x41\xae\xef\xe8\x79\xef\x3d\xec\x9b\x73\x12\x34\x01\x15\x41\xa2\x70\x6f\x0d\xdf\xf2\xfc\x5e\x67\xaa\xbf\x85\xa4\x9c\x47\xb6\x78\xba\xf6\x9a\xdd\x63\xe7\xd5\x83\x6e\x6e\xc9\xf9\x74\x06\x71\xf3\x6b\x90\x72\xce\xaf\x90\x1f\xc3\x6e\xa6\x19\xaf\xc0\x19\xa6\xd5\x27\xb2\xc1\x7d\x53\x41\x08\xd9\x8c\xc7\xe7\xfc\xa8\x3f\xe2\xe1\x50\x29\xc6\x58\xa3\x71\x6e\xf0\x67\x06\xe9\x85\xa4\x64\xf9\x49\x72\xea\x87\x83\x59\x80\x06\x9d\xdd\x42\x5a\xb2\x8e\x67\x92\xda\x89\x9d\x3c\x65\x56\x71\xe9\x69\x4a\xd4\x96\xd4\x44\xe7\x4c\xff\xf4\x36\x68\x1f\x65\xc6\x89\x5e\x25\xb3\x46\x0d\xc2\xfe\xd9\x81\x14\x99\x4d\x23\x6f\x4f\x43\x49\x67\x25\xf6\xfe\xec\x73\x61\x8d\xf9\x47\x1a\xf7\xc8\x88\x0f\x26\x55\xb8\x0c\xbd\x08\x8f\xce\x81\x12\xd0\x05\x2a\x2a\x34\x34\xf6\xc7\x63\xed\x5f\xb7\x5b\xee\xfb\xf2\x5b\x7a\xa1\xc9\x65\x9f\xa3\x69\x0f\x1f\x66\x88\x2c\xb0\x84\xbd\x1e\xab\xc7\x66\xcf\xfb\xe4\x5b\xba\x5d\x52\xbe\xee\xe2\x7d\x6a\xe7\x2d\x9c\xfd\xe2\xac\x6f\xc6\x3c\xaf\xba\x1b\x5e\x3a\xad\xc9\x38\x1c\xce\xc1\x4b\x8c\x95\x1f\x69\x29\x19\x71\x94\x22\x94\xb2\x70\xb8\xb2\xbf\x7a\x9c\x0c\x57\xce\x6e\xee\xe7\x8e\xd3\x32\x92\xbe\xb9\x5d\x4a\x48\x0b\x20\xaa\x1c\x0f\x54\x5c\x4b\xcb\xe7\xc8\x97\xb5\x4a\x1f\xb0\x78\x88\xda\x6b\xd5\x2e\x25\x2f\xa0\x1c\xfc\x96\x6b\xb2\xd2\xc5\xbb\x7a\xf2\x34\xd7\x6c\x8a\xfb\x10\xbc\xa7\x62\x2c\x53\x20\x43\x27\xa8\xa5\xd4\xae\xba\xe4\x01\x9c\xf8\x3d\xe8\xfb\xb4\xba\x48\x26\xf3\x45\x82\xa9\x42\xbc\xd5\xb2\x0e\x24\x37\xac\x31\xef\xf4\x84\xd4\x4a\x76\xdc\xc4\x39\x1a\xbc\x25\x1b\x4d\xda\xcf\xc2\x0b\x60\x3b\x09\x85\x69\x5c\x29\xdf\xc4\xc8\x75\xeb\xdf\xe1\x55\xe4\x9a\x87\x44\x29\xc0\xdc\xdc\x3a\x20\x33\x0c\xc9\x01\x95\x87\xf2\x26\x9c\x97\x23\x44\x72\x23\x59\x30\x29\xc1\x57\x2a\x29\x73\x49\x0a\x2d\x67\x41\xd7\x56\x59\xbe\xaa\x73\x88\x2d\x5a\x6d\xa9\x64\xc1\xd3\x4a\x53\xcf\x50\x50\xaa\x94\xe8\x8a\x4d\x35\x08\xbc\xa6\xb5\x4c\x07\x0c\xeb\xa4\x47\xdb\xe3\x63\xaa\xd4\x98\xe2\x52\x12\x59\x29\x58\xa9\x5d\xa9\x86\xef\xee\x26\x5f\xc5\x5d\xe3\xd2\x18\x08\x61\xe7\x7a\x5b\xa8\x06\x1e\x59\x07\xcf\xf9\x90\x45\xc6\x92\x58\x6e\x8b\x3a\xd7\x90\xd7\xe6\x18\xc2\x8f\x8f\x9a\x0d\x96\x55\x28\x35\x71\x4c\x00\xd7\xf8\xe5\xa1\x47\x5e\xb0\x1c\xac\x77\x06\x45\x74\x06\x85\x9e\x41\x61\x66\xf0\x8c\xab\x9d\x91\x32\xc5\xef\x37\x58\x41\xea\x03\xc3\x2a\xaf\x99\x8d\x24\x16\xfa\x87\xa0\x6b\x26\xe8\xaa\x9a\x95\xc0\xb5\xd3\xaf\x55\x84\x29\x37\x12\x82\x62\x6e\xe1\x53\x77\x42\xe9\xd7\xaa\xc1\xa0\x9b\x88\x12\x00\x93\xf7\xd2\xcf\x46\xa0\xff\xa8\xa3\x27\x73\x97\xed\x13\xa7\xcc\xcd\x95\x82\x38\x50\x12\x10\x42\xf2\xc3\xa1\x1e\x8f\xe1\x65\x2d\xcf\xb8\x82\x08\x4f\x39\xc9\x95\x03\x49\xfa\xe4\x3f\xd2\xc9\xef\x10\x58\x42\x90\xc2\xf0\xe2\xf3\xab\x05\x2e\x15\x13\x87\x33\xd0\x18\xb3\x4d\x7a\x5e\xa8\xf4\x6c\xc8\xca\x93\x6c\xb2\x2a\xf6\xf7\x28\x55\x7a\x84\xca\xf8\x63\x80\xef\xc9\xd3\x2b\x93\x63\xd5\xc2\x9a\x76\x4f\xd9\x3c\xfc\xe6\xf2\x6a\x61\xe7\xc9\xbf\xc9\x36\x8c\xaf\x61\x2a\xd3\x42\xee\x5d\x5f\x90\x9e\x45\x25\x7f\xe5\x1e\x03\x5f\x18\xef\x42\xcd\x9b\x87\xe4\x53\x25\x06\xb1\xd5\x1f\xb9\x00\xdb\xd3\x5f\x56\x85\x90\x5c\x1e\xf4\x2d\x1a\x65\x01\x25\x4e\x99\x3f\xa2\x7a\x9a\xb3\x16\x8d\x6f\xb7\xad\xef\x32\x6e\x6c\xd5\x36\xb2\xee\x41\x76\xc6\x0d\x22\xc8\x65\xe5\x5b\x70\xd5\x16\x4c\x2e\x54\x5a\x2b\x93\xcd\x0a\x02\x7a\xc1\x92\xab\x46\xa5\x34\x88\xc8\x29\x42\x66\x35\x6e\xd1\x80\xd6\xec\x53\xcf\x08\x5f\x69\x31\xb1\xd4\x76\x34\xa5\x92\x83\xf9\x0e\x2e\xab\x81\xba\x2b\x48\x53\x1a\xd1\x5f\x19\x77\x69\xc9\xbf\x86\x57\xe5\x78\x9c\x52\xd2\x7e\x88\xb0\x88\x9b\x83\xa8\xe7\x2a\x1f\x1d\xdf\xb1\xce\x39\x84\x3f\xcf\x8c\xa1\x72\x22\xc2\xb0\xa3\xc3\xb4\x99\xba\x71\x1c\x1d\x4b\x5e\x36\xee\x92\xba\x79\x8c\x4e\x0e\xd4\x08\x67\x5c\x07\xdb\x64\xb7\x39\xb5\xa9\x01\x8a\x9b\xb5\x24\x76\x68\x46\x75\xb6\x3d\xd6\x99\x55\x97\x3c\xda\x7c\x03\x7e\x6c\xd9\x78\x9c\xb9\x4d\x79\x38\x70\x5c\x98\xc3\xab\x4e\x4f\xd9\xb6\xc5\x08\x84\x6e\xda\x65\xe6\x62\x31\x83\x9a\x7c\x0a\x29\xb9\x50\xff\x5e\xe8\x06\x2d\xc3\x6b\x85\x42\x20\xff\xf2\xf7\x5d\x2b\x21\x23\x2e\xc8\x34\xe2\xa0\x77\x56\x1c\x0e\xf1\x54\x18\x37\x8c\xd0\x99\xe1\xf9\x7c\x05\x4d\x87\xd7\xe2\x84\x22\x93\x11\xb8\xd7\x59\xb4\xbd\x96\x14\xf9\x54\xbc\x95\x8c\xc2\xc9\xe6\x7b\xf3\xc7\xd6\xa8\x0a\x18\xb8\x34\x31\x29\x31\x14\xe3\xb1\xfa\xd7\x8f\x14\x7e\x72\x87\x21\x45\xe3\x8a\xb0\x49\x51\x57\x39\xad\xf0\x9e\x30\x5f\x25\xb0\x35\xf1\x55\xe8\x6c\x25\x79\xc1\x64\x97\x31\x9e\x60\x71\x93\x96\x84\x7a\xe3\xaa\x09\x6d\x0d\xbc\x44\x33\x40\x82\x8c\x34\x57\x93\x12\x9d\xed\x0f\x87\x74\x0f\xde\x3a\x6d\xf6\x34\x8b\x1f\xaf\x12\xcd\x7a\xdf\x1c\x0e\xdd\x6a\xbc\xee\x39\x4f\x1c\xeb\x58\xb9\x87\x5b\x6a\x8f\xf7\xa4\xa7\xd2\x02\xa1\xb3\xed\x78\xbc\x97\xd4\x27\x35\xa4\x67\xab\xd6\x6e\xed\x7d\x64\x46\x3d\x4b\x2e\x6a\xe3\x28\xa8\xa7\x3f\x1f\x8f\xd3\x1d\xd9\xa4\x54\xde\x89\x39\x21\x64\xe7\xba\x04\x2b\xa3\x91\x35\x0d\xe9\x2d\xe4\x72\xcf\x32\x29\x1a\x16\xb3\x1c\xab\x15\x99\xad\x30\x78\x16\x96\x1e\xcd\x9b\xed\xad\x1a\x70\xb6\x96\x23\x5d\x56\xc5\xfe\x15\xfd\x4c\xf3\xbf\x30\xfa\xc5\x1c\x81\xa6\x51\xc4\x5e\xe5\x06\x3d\x6b\xab\x1d\x6d\xa6\x4b\x01\x40\x5a\x05\x37\x1e\xc7\x9a\xa5\x4d\x96\x25\xad\xde\x42\x1f\xca\x44\xde\x98\xac\xd4\x5f\xab\x87\x5d\xa4\x0c\x9b\xfb\xd2\xd2\x25\xc0\x13\xea\xcc\x3d\xbd\x11\xf2\xbc\x08\x42\xcd\xae\xe3\xd6\x93\x4b\x0e\xe0\xc6\xff\x11\xd9\x40\x33\x3d\x6f\x52\x8a\x13\x76\x4f\x2a\xde\xae\xdd\xcb\x54\xb8\xbc\x32\xc7\xe8\x9f\xa6\x25\x7f\xf6\x38\x0b\x2f\x83\x27\xf3\x13\x78\xb2\x79\x65\xa3\x6e\x7a\x1a\x6c\x70\xe7\x79\x9f\xbc\x46\x36\xfa\x02\x80\x24\xf1\xe3\x71\x45\x08\x29\x82\x7d\xe2\x12\xd3\x2a\x9b\x56\x67\x21\xbd\x04\x6b\x86\x08\x79\xaf\xe7\x7c\x81\xf4\x3c\xab\xac\xa3\x8a\x0e\x10\x75\xbf\x46\x4a\x13\xbd\x11\xd9\x04\xfe\x55\xdb\x51\x7d\x64\xf6\xa4\x25\x17\xb0\x35\x19\xf0\x11\xfe\xfe\x34\x61\x12\x66\x93\x1a\xfc\xa6\x41\x5b\x0d\x1d\x47\xfe\xe8\x28\xf7\x83\x07\xc7\x14\xed\x5a\x80\xe8\x4e\xdd\x77\xd3\xc8\x4c\x90\xf9\x62\x68\x7f\x1b\xcf\x89\x71\xe3\x49\x6d\xd1\x00\xaf\x6f\xf4\x3b\x9c\xaa\x18\x22\xc3\x11\x77\x83\xc4\x54\xea\xba\x4d\xea\x07\x85\xf9\x09\x9a\xaa\xb9\xb8\xe0\x8b\x26\x95\x12\xf4\x31\xfb\x5a\xa8\xaa\xbe\xbc\x72\x29\xfa\xc6\xe3\xca\xbc\x74\xbe\x55\x7b\x75\x7f\x06\xda\xcf\x1f\x0a\x41\xda\x0f\x0e\x07\x6d\x1b\xd4\x39\x1f\x48\x4b\xb2\x52\x89\xa1\xc2\x6f\xe6\xa5\x55\x82\x44\x5e\x41\x6d\x75\xdc\x37\x4f\x59\x08\x3d\x77\x91\x9b\xce\x93\x59\xda\x79\xd4\x71\x53\xe9\x94\xc0\x22\x08\xd7\xc5\xb4\xc7\xb0\x56\xa6\x22\x9c\xc7\x4e\x4d\x28\xf2\xa8\x31\x3a\x50\x49\x43\xc0\x43\xa4\x33\x68\xd9\xc5\x55\xe8\x5e\xa6\x6c\x34\x3f\xef\x4b\xcf\xf6\xb2\xf2\x75\xff\x19\x49\x0b\xb2\x02\xa5\xff\x5e\x14\x7b\x10\xe3\x70\x3e\x57\xba\xe3\x05\xc9\x6e\x6a\xf3\xf7\xac\xa3\x20\x37\x8b\x9f\xbb\x15\xdf\x7a\x46\xce\xd0\x1b\x85\xa2\x1b\xe3\x89\x42\xad\x27\xca\x8c\xba\x4f\xd7\xde\x51\x70\xce\xaa\x86\xc3\xbc\x81\x2b\xc1\x79\xcc\xe3\xc0\x0c\x23\x09\xd6\x8d\x98\x09\xe5\xd6\x8b\x66\x55\x03\x6d\xd9\x54\xe5\x3f\x49\xae\xae\x5c\x15\x82\x2a\xa7\xb5\x12\x7c\x5d\x56\x3a\x57\xd3\x73\x29\x94\xa4\x0f\x4c\x05\xe9\x6a\x1f\x4f\x48\x30\xe5\xb9\x79\xae\x4e\x39\x46\x46\xfd\x63\x43\xcf\xc8\x55\xc1\xcb\x22\x6f\x87\x5a\x7f\x93\xa7\xe4\xd1\xa4\x2f\xb1\x54\x32\x47\x53\xee\xb4\x22\xc2\x63\xa3\x5b\x6a\x30\x23\x13\xe7\x7a\x3a\x63\x4b\x9f\x2b\xe6\xbe\xe5\x8a\x49\x8d\x31\x53\xa7\xff\x85\xb3\xbb\x55\xea\x58\x2f\xf4\x03\xf6\x0c\x5e\x93\xa2\xe5\x88\x58\x38\xc7\x43\x07\xf4\xab\xb0\x5f\x7d\x0c\xa2\x25\xe3\x4c\xb9\x21\x8a\xff\x55\xf6\x60\xaf\xb6\x68\x1e\xf8\x8f\xd8\x1c\x0a\x67\xed\x7e\x3a\x7c\x51\x38\xeb\xfa\xa5\xcb\xae\xfb\x5c\xa9\x1a\xc8\xbe\xf5\xf6\x15\xcd\x3e\x53\xb2\x3f\xf3\x60\xe3\xe4\xc6\xa8\x44\x2d\x37\xde\x64\x5d\xe6\x06\x06\xa8\x3c\x1c\xe6\xfb\x85\x01\xfa\x5f\xde\xd6\x2c\x5f\xbf\xf8\xf0\x2a\x45\x67\xc2\x44\xdd\xf8\xa7\xc0\xc5\xde\xe0\x96\x03\xff\xf9\x14\x9b\x34\xc1\xa0\x39\x87\xb4\x70\x72\xa2\xc0\xf8\xd9\xd6\x4a\xb8\x9c\x9b\x95\x9f\x6b\xb3\x82\xf8\x69\x70\x1e\x07\xdd\x3e\x82\x9c\x7a\xfb\x34\x88\x82\x6b\xb0\xed\x66\x77\x92\x1f\xe2\xc1\x15\x06\xa1\x2e\xd3\x39\xde\xbe\xcf\x4a\xba\x7e\xaf\xe4\x3a\x25\x95\xf5\xc9\xec\xf2\x5f\x8f\x56\x84\xf1\x3a\x31\x80\x1d\x11\x28\x2a\x60\x0e\x2f\x77\xd9\x5e\x4b\xe8\xb4\x1b\x9d\xd0\xba\xa8\xf9\x64\xe9\x02\x4d\xbe\xbf\x87\xb2\x73\xba\x38\x1c\xd2\x9e\x37\xa4\x42\x0d\x96\xfb\xc8\xa6\x37\x49\x35\x1e\x5d\xf3\x78\xb0\x4e\xec\x2b\xff\x7e\x7a\xff\x8a\x28\x84\x05\xef\xa1\xf3\x9b\xed\xbc\x02\x2c\x1c\xf7\x74\xf9\xf3\xfe\x79\x5f\xf4\xb4\x2e\x01\x9b\x08\x72\x80\xad\xdd\x4d\x44\x2b\x2a\x74\xfa\x69\x0f\x80\x57\xde\x66\x6b\x88\xee\x2b\xd5\x5a\xad\x19\x8c\x2a\x13\xf7\x28\xa8\xd3\xcc\x91\x0a\x84\x2a\x8f\xb4\xde\x99\xcd\x78\x9c\xf7\xc9\x5e\x76\x67\xf8\x67\x55\xf8\x9d\xc9\xa2\xfd\xd0\x00\x00\xca\x0c\x6c\x35\x51\x65\x5a\x1c\xdf\xc1\xc3\x3a\xb6\x78\x81\x08\xf7\xec\xe3\x7e\xf4\xb3\x88\xaa\xe7\xfc\x9c\x02\xba\x91\x6d\x90\x06\xf7\xdd\x64\xb9\x54\xb1\x0b\xe2\x7e\xb9\x34\xdb\x5e\x48\x61\xbc\xdd\x2a\x40\x9d\x55\x99\xa8\x74\x92\x97\x88\x61\xac\x03\x64\x20\xb7\x25\xcb\x72\x05\x27\x66\xac\x5d\xa0\x99\x53\xe4\x33\x45\x3e\x9a\x14\x08\x0a\x9d\x3a\x22\x53\x83\xb0\x31\xf4\x59\x7c\x34\x95\x2e\x92\x4e\x20\x46\x09\xe9\x38\x51\xfd\x53\x9b\xb2\x54\x93\x71\x7a\xad\x81\x17\x7d\xc2\x6e\xb7\x24\x7c\x6c\x52\x36\xa5\xe8\xcc\x1a\x94\x7b\xba\x69\x26\xde\x2b\x11\x03\x9f\x47\x46\x18\x58\xfa\x13\x52\x21\x5c\x4d\x3c\x90\xb8\x96\xad\xca\x1f\x6f\x83\xf0\xf9\x14\x24\xe6\xb5\xa7\x50\xf3\x86\xf7\x55\x13\x37\xd5\x8a\xea\xc1\x87\xbc\xf8\xe2\x59\x73\xd9\xce\x41\x4b\xf2\xa2\x62\x9b\xfb\x30\x2f\x7c\x9a\xd4\x22\x4f\x9c\x59\x25\x4d\x02\xbc\x14\xed\x40\xe4\x40\x57\x10\xe6\xa1\x2c\x13\xb8\x18\xe1\x24\xe8\xab\xdc\x51\x9e\x88\xe3\x77\xdd\x3a\x79\xb2\x52\x0b\x68\x8c\xdf\x8d\xc7\xad\x67\x74\xed\x72\x30\x7a\x3c\x43\xf4\x06\x8e\x89\xde\x11\xed\xd6\x06\xe8\x9a\xdc\xab\xb5\x81\x1a\x92\xb7\x57\xed\xdf\x5e\x0f\x4a\x2a\x4a\x73\x52\xcb\x7b\x4c\x33\xe0\xc8\x97\xea\x7c\x95\xa9\x64\x94\x6d\x7a\x72\x76\x71\x81\x36\x92\x51\x7e\x9e\x6e\xf0\x0a\x0b\xc9\x2e\xa3\x49\xce\xf4\x5d\x53\xe2\x42\x8a\xc3\x30\x97\x5a\x97\x08\x52\xef\x39\x21\xb9\x2f\xad\x2b\x65\x04\xb8\x88\xb4\x8b\x2b\x91\x19\x6c\xa4\xee\x25\x3a\x83\xf4\xb8\x1e\xd0\x07\x79\x06\x1d\xc8\x11\xc2\x2b\xc2\x9b\x8d\xdd\x8d\x55\xb1\xcf\x8d\x8e\xe7\xa6\xfb\x68\x62\x17\x4c\x81\xa2\x6e\x40\x01\x97\x76\xb4\x89\xb0\xf5\x50\x70\x47\x7e\x66\xf4\xcb\xec\x52\xf5\xcf\xec\xa9\xa0\x6e\x52\x1a\x8a\x1c\x7b\xdb\x6d\x19\x3b\xfd\xd8\xa5\x47\xd3\x2e\x4d\x70\xec\x0c\x66\x09\x4d\xd6\x6c\xfd\x1c\xea\x7d\x5f\x14\xa0\xed\x89\x0c\x15\x30\x91\x94\x4a\x20\x76\x9a\xb4\x95\xef\xf8\xee\x0e\x3f\x4e\xc0\xe9\x31\x8e\xe0\x68\x50\x03\x55\xac\xfe\x93\xdf\xa4\x93\x0b\x74\xf3\x04\xcd\xa7\x8b\x20\x46\xba\x0b\x36\x66\xab\x53\x06\x8a\x76\x81\xa8\x53\x76\xec\x38\xcc\xe9\x22\xad\x20\x07\x88\x95\xbd\x5e\xa6\x0a\xc3\x16\x61\xd1\x07\x2d\xf4\xcb\x53\x9b\x2b\xb8\xb5\xfc\x34\xdc\xda\xa3\x60\xd6\x84\x82\x94\xcd\xe3\x58\x5e\x8c\x70\x4f\x87\x5c\x10\x6e\xb0\xbc\xb2\x50\xf4\x6d\x4f\xbd\xd7\xba\x0a\x08\xfb\x16\x77\x9a\x36\x2a\xd1\x69\xbf\x1a\x8f\x49\xfb\x7a\xc2\xf7\xe5\x97\xa3\xb5\x19\x7e\x3b\x7a\x9b\xf7\x0d\xe1\x08\x66\x5b\x30\x87\xe6\x4e\xf4\xe1\xca\x7b\x50\xdd\x8e\x60\xc4\x79\x53\xa7\x3f\x3c\x8a\x15\xa7\x40\x86\x8e\x3a\x2b\xfb\x77\x58\x1b\x9c\xc8\x04\x50\x44\x7d\x7f\xfa\x57\x55\xd3\x80\x68\xcf\x8e\xe0\x7c\x8d\xa2\x57\x55\x00\xf2\xd5\xf2\x29\xb6\xc0\xc4\xc1\x27\x5a\xe7\xd8\xf5\xa0\x92\x77\xf6\x09\x4d\x67\x40\x06\xa3\xd7\x80\x4b\xe4\x12\x23\xda\x3e\xa7\x7d\x52\xe2\xd0\x3d\x3a\xf3\x45\xe5\x16\x23\x6f\xdd\x04\x2a\xe5\x26\x60\x7e\x0a\xf8\x39\xaf\x16\x08\x38\x2b\x51\x73\x94\xca\x9f\x73\xb1\xc0\x89\xee\x21\xb0\x14\x03\x62\x25\xda\x8c\x3b\x88\x57\x71\xde\x65\xb9\x61\x3e\x5e\x99\x3b\xb2\x03\x23\x28\x9c\x83\xa0\x05\xf3\x73\x2e\x83\x16\xf8\xc6\x3d\x93\x5d\x91\xb2\x74\x6f\xbb\x5d\x55\xb5\x77\xf2\xd3\x20\x64\x32\x3a\xd6\x66\xb8\x50\xa6\xf8\x33\xc7\xfd\x46\x93\x5f\x1f\x61\x85\x71\x0c\xb3\xcd\xc0\x7b\xc6\x59\x86\xae\x0d\x8d\x8d\xc7\x59\x90\x26\x9e\x7a\x76\x31\x2f\x21\x13\x43\xe8\x46\x77\x26\x9a\x20\x82\xa2\x59\x2a\x48\x1b\x8b\x9a\x35\xf8\xd8\x47\x36\xe9\xa7\xe1\x4c\x04\x42\x08\x61\x6d\x6f\x66\xe3\x71\x27\xb9\x3d\x1b\x8f\xd3\x02\x5c\x0a\x78\x37\x37\x54\x81\x70\x04\x7e\x85\x4d\x14\x04\xf6\x78\x6c\xfe\x4a\x7b\xca\xd9\xcc\x14\xca\xbe\xc2\x4c\x8a\x00\xb9\x52\x00\x0e\x0c\xac\xe8\x0f\xfa\xcb\xb8\xac\x83\x45\x54\x54\xe6\xc7\xa4\xc8\x51\x1b\x7f\x85\xe1\x82\x54\xb8\x24\x1c\x6c\xb2\x11\x7d\x45\xb1\x38\xab\xc7\x63\xb0\xdf\xca\x9e\xbd\x0c\xce\x78\x5a\xcb\xad\x51\x4f\x02\xe8\x08\xa4\xc3\x89\xad\x79\xbf\xc0\x2b\x52\x9a\x95\xce\x41\x80\x14\xf2\xf8\x9b\x54\xa7\xe6\x01\x39\x9f\xe2\x15\x40\xdf\x97\x5d\x9d\x4c\x18\xf9\x8f\x4b\x17\xaa\x9f\x63\x66\x14\x7f\xc0\x04\x7b\x4d\x21\xbc\x9a\x04\xb1\xc6\x69\x81\x70\x3d\x1e\x9f\x83\x17\x57\x24\x5a\x1a\xa5\x2b\x74\x14\x9c\x68\x55\x97\x55\xb1\x73\xe8\x44\x23\x75\x17\x8f\x0a\xee\xa1\x11\x29\xb4\x22\x8d\x49\xa4\x01\x95\x15\x2a\x91\x19\x72\xa3\xd6\xd9\xb6\x7b\x62\xa9\xfb\x56\x4f\xc4\xd7\xac\x02\xfe\x4c\x58\xd8\xb8\x36\x5e\xd3\xe1\x90\x75\xe2\xc7\x1b\x43\x23\xda\xe2\xb5\x67\xae\x85\x5d\xe7\xb9\x3d\xc4\xee\xaa\xb3\x62\xe2\x36\xb0\x2e\xd1\xdd\xd1\xa9\x42\x63\xf4\x26\xc0\x15\xed\x4e\x4a\xda\xf1\x81\x90\x32\xb4\xc2\x6b\x4f\x19\xc2\xee\x8c\x0a\x9c\x78\x80\xc6\x98\xa1\xe6\xac\xd0\x40\xea\x3f\xbd\x7f\x15\xa8\xff\x18\xa1\xfe\x45\x91\xf9\x20\xd1\x3f\xbd\x7f\x05\x3a\x8c\xa0\x3d\xf7\xee\x54\x9b\xb8\xf0\x0a\x1f\x6b\x14\x84\xff\x62\x12\x48\xd3\xa1\x8e\x32\x7c\x07\x8c\x44\x31\x09\xe5\x13\xd2\x8e\x48\x11\xad\x02\xfa\xb9\x5a\xe1\xae\xed\xa9\x57\xd6\x38\x7b\xab\xc8\xa8\xfc\xdc\x77\x7f\xc1\x0c\x3d\xb0\x9b\x74\x4d\x73\x5a\xd1\x51\x35\xa7\x0b\x5c\xcd\x99\x76\xed\x5f\x18\xc0\xdd\x68\x1c\x07\xc7\xa6\x9c\x8e\x31\x46\xc6\x3c\x4f\x08\xe1\xf2\x62\x95\xd7\x66\x4f\x4c\x1b\xc7\xe0\xef\x64\x42\x93\xb9\x14\xf5\x50\x7c\x50\x71\x27\x3d\x49\x20\x15\xda\xb9\x43\x3e\xbf\xa1\xb3\x24\x93\x32\x8f\xb2\x18\xfd\xaf\x0f\x6f\xdf\x4c\xd4\xcd\xc5\x36\x52\x0e\x9a\x25\x90\x60\xab\xc7\x6e\xd7\x6a\x27\x3e\x61\x80\x94\xcb\xc7\xe3\xd6\x8c\x71\x6d\x50\xd3\x42\x4d\x4f\xd4\x8a\xc0\xdc\xcc\x18\xd7\x33\x06\x83\x3e\x1d\xda\x77\x72\xd8\xb7\x45\x91\xd3\x4c\x9b\xca\x92\x4a\xd4\x14\xb2\x4f\xcd\x12\x5e\xef\x6e\x55\x68\x7a\x75\xf3\x06\xfe\x4e\x29\x52\x1e\xac\x6f\x37\x29\x0a\x26\x0c\x96\xe4\x19\x4a\x61\xe2\xf6\x99\x28\x25\xb7\x8b\x66\x72\xca\xf6\xa2\xe6\xb4\x27\x5a\x24\xb6\xe9\xb0\xf1\xb8\x6d\x45\x37\x51\xe7\x71\xca\x46\x80\xe7\x9e\x0a\x02\xc8\x36\x73\xb6\x40\xe3\xb1\xe8\x0f\x5b\xa9\xe6\x6c\x31\x1e\xdb\x79\x67\x0b\x10\xb5\xe3\x72\x76\xcb\xab\x4a\x45\xc2\xe7\x90\xdb\x4a\x79\xbb\x81\x7a\x0c\x6e\xb8\x34\x2a\x3c\x60\xc9\x07\x6a\x0d\xe4\x5e\x14\x2b\x5a\x6a\x91\xc4\xb5\xe7\x9b\x7c\x33\x2c\x70\x89\x39\x0a\x6d\xc8\x25\x76\x69\xad\xba\x18\xbb\xea\x1b\x86\xb4\x31\x3b\x8d\xd3\xe0\x68\xb8\x49\x81\xe7\x59\x2f\xd8\x6d\xd9\x2c\x90\xa7\x40\xa8\xb5\x02\xa1\x86\x55\x3c\x35\x92\xc8\x24\x1a\x1d\xf1\x29\xbf\x41\x83\x08\x0c\x00\x15\x1d\x36\xfb\xa1\xc1\x65\x5c\x09\xd8\xae\x27\x10\xff\x03\xac\x89\x12\x65\xf3\x7a\x71\x38\xa4\x00\x1b\x51\xce\xeb\x85\xf6\x6d\x5a\x6e\xea\x3c\xbf\xff\xb0\x2a\xf6\x1d\xb0\x60\x03\x67\x78\xa4\x48\x81\xda\xe0\x17\x05\x10\xd8\xee\x9a\xb5\xf1\x82\xad\xf7\xe0\x17\x4b\x2c\x4c\x8f\xb6\xf7\x6b\x00\x4e\xe6\x92\x67\xc8\x99\xcf\xce\x97\x29\x83\x6f\xad\x2e\x3b\xe2\x43\xc0\x5a\x3e\x04\x08\x73\xed\x51\x78\xf4\x28\x76\xbf\x53\xcc\xc9\xbf\xbd\x7b\x4d\xab\x2c\xaa\xee\xd2\xe5\x3d\x57\x8f\x40\x49\x0e\x2e\x06\x0d\x6e\x9d\xe3\x98\x43\xaa\xa7\xec\x35\xe8\x7f\x38\x27\x74\x5e\x5f\x5e\x2d\xb4\x9b\x10\x09\x6c\x53\xf3\x1c\x78\x9b\x95\x63\x1e\x55\xdc\xc6\xf9\x14\xef\x09\xe0\xf5\x3d\x34\x78\x6d\x70\x3b\x94\x0e\xab\xbe\xbe\xb8\x10\x88\x6d\x0c\x56\xaf\x1b\x9c\x82\x18\x54\xda\x30\xa5\xe0\xe5\x7e\x24\x24\xbb\xb8\x40\x69\x49\xf6\x73\x70\x89\xe0\x36\x16\x52\xdf\x74\x68\x3c\x6e\x47\xcb\x80\x26\xb7\xed\x15\xbc\x9f\x67\x0b\x2c\xff\x47\x0a\xbc\x56\x7e\x74\x85\xce\x30\x69\xb6\xcf\x56\x21\x75\xa9\x04\xc0\x72\x38\x57\xda\x37\x10\xb0\x25\xd6\x80\x2d\xb1\xb5\x90\x43\x4e\xc9\xeb\x66\x85\xec\x10\xde\x49\x69\x33\xb6\x65\xe3\x88\xc3\xa1\x75\xde\xdf\x8f\xc1\x86\x30\xf8\x08\x98\x11\xeb\x27\xc2\x9f\x32\xc0\x48\x50\x41\x49\xad\x49\x5d\xcd\xf9\x02\x81\xb8\x9f\x91\x29\x2e\x49\xe1\xcf\x69\xf6\xb4\xbc\xbe\xb8\xc8\x50\x9a\x93\xb4\x56\xaf\xe6\x99\xe7\x6a\x22\xc6\xe3\x1a\x7e\x1c\x0e\x75\x04\xf0\xc0\x16\xe9\xbe\x92\x1f\xb8\x10\x53\x28\xa4\x23\xcc\xc7\x63\x29\xe4\xc5\xbe\x19\x8f\x53\x31\x8f\xbd\x58\x10\x31\xcf\x17\x58\xdf\x1c\xf2\x6f\xb9\xa1\x8f\x1d\xd0\xf8\x8d\xe6\xcd\xf1\x8a\xb4\x9c\xa5\x36\xdd\x00\x13\x6f\xd7\x7a\x3e\x39\x3d\x9b\x77\x05\x9b\x57\xef\x5d\xac\x37\xa8\xdd\xbb\x4f\x0b\xed\xcd\x63\xf6\x2d\x4e\x4b\x92\xd9\x79\xae\xc6\xe3\x4c\xcf\x73\xd6\x33\xcf\x50\x24\x36\xcf\x99\x37\xcf\x50\x48\xcf\xf3\x4d\x79\x4e\x48\xec\x13\xb9\x5f\xe7\xb1\x17\x0b\x52\xcd\x4b\x3b\xcd\xf2\x6f\x34\x4b\x6b\xa5\x03\x8e\x04\xd9\x64\xd1\x20\x9b\x4c\x07\xd9\x50\x1d\x75\x81\x70\x5f\x63\x1b\x23\x1a\xd6\x58\x0d\x1e\x67\xad\x00\x5f\xc9\x4e\xae\xb6\x74\x5d\x5b\x9f\x04\x70\xed\x88\xea\x9e\x4e\x5a\xe2\x96\x65\xf7\x1d\x51\xec\xbf\x69\xe4\xad\x14\x03\xb4\x03\x8d\x2b\x59\x2a\x8b\x1c\x4e\xb4\x1d\x3d\x6c\x23\xd1\x50\x01\x41\x5a\x84\x4e\x66\x05\x05\xbf\x12\xfb\x3e\x3a\x98\x13\x17\xac\xcd\x6d\x49\xab\x34\xf1\xb3\x33\xe0\x55\x5b\xb3\xf2\x00\x2e\x43\x5a\x8c\x54\x8a\x0a\xe3\x63\x13\x6b\xca\xbe\xfd\xe0\xa5\x26\x3c\x75\xdd\x83\x97\x48\x83\x10\xb6\x1e\x38\xe9\xf9\xd4\x21\x88\xc2\x04\xc9\xb5\xec\x5d\xa2\x88\x93\x45\xb7\xd0\x78\xac\x16\x4b\xd5\x92\xf6\x96\x3b\xba\xdc\x75\x9e\x37\x78\xb9\xcb\xc4\x27\xd0\x26\x3c\x2b\x95\x28\x1c\xd3\x30\x06\x4e\x13\x56\x7f\xc8\x4a\x78\x10\xfb\x2c\x50\x3e\xb7\xbf\x96\xc3\xcf\x69\x66\x3e\x84\xe7\xc1\xd7\xe6\xd4\xf5\x7d\xdd\x51\xf7\x44\x82\x53\x14\x3e\x0e\x78\x64\x3b\x28\x5b\xc8\xe7\xef\x39\xe6\x15\x3d\x0a\xe2\x62\x2e\x14\x67\x26\xe2\xb8\xf9\x5a\xea\x97\xef\xe7\xdc\x5a\xd4\xb2\xc3\x21\xed\xb1\x53\x4e\xc0\xd1\xe8\xf9\x96\xe5\xeb\x96\xa2\x4a\xe0\x07\xe3\x37\x38\x3b\x9f\xfa\x38\xbb\xac\x41\x68\x72\x5b\x14\x55\x8a\xb0\x6e\x89\x64\x08\x67\x81\x9b\xee\xae\x45\xd4\x35\x9d\xa6\x16\x47\xfa\x5a\x7c\x47\xa6\xd7\x97\x97\x40\xaa\x9d\x8a\x93\x91\x94\x13\x85\x63\x6c\xcc\xcb\x1a\x78\xb4\x4a\x19\xe6\xc6\x56\xd6\xc8\x8a\x3f\x93\x07\x29\xb7\x6b\x3f\x8d\xd7\x9d\xa0\x3d\x79\x6f\xeb\x7d\x16\xa1\x50\xa9\x06\x73\x6e\xad\xb2\x27\xd3\x28\xf5\x4d\x46\xe8\xdc\x75\x7b\x71\x26\x47\x16\xfa\xc4\xb2\x4d\x2a\x24\x1d\x07\x24\xb6\xbb\x94\x1a\x24\x5e\x64\x2d\x7b\xda\xa1\xe7\xae\x66\xeb\x1f\x0a\x21\x25\x71\x5c\x4c\x22\x5b\x3c\x2d\xe5\x8b\x3e\x43\x19\x4c\x00\xd6\x9c\x0e\x53\x6c\x08\xb9\xf7\xda\x33\x0e\x18\xf9\xe1\xa0\xee\x84\x21\x4d\xd6\x47\x9b\xcc\x55\x93\xa8\x69\x07\x15\xab\xa0\xb5\xf9\xc2\xaa\xb7\xce\x18\x80\x86\xb7\xb5\xc2\xd1\x67\xca\x3d\xe5\xe3\x56\x14\x5f\xf8\x4d\xf0\x6b\x46\xcf\x2a\x49\x45\x80\xe9\xab\x10\x84\xd8\xb0\xc9\x8e\x96\x65\x76\x47\xed\x0b\xfb\x04\x61\x26\x49\xdb\xea\x93\xf7\x0a\x7e\x23\x1c\x53\xa7\x9b\x32\x52\x74\xb3\x54\x18\x5a\xf7\x4d\x37\x1c\x35\x29\xc7\x09\xcc\xd3\xe8\xcb\x96\xe5\x74\xa4\x65\x3a\xc6\xef\x94\xae\x72\x36\x4a\x2e\x98\xf6\xff\x00\x01\xb7\xc1\x9a\x94\xf6\x2a\x87\xe4\x91\x3f\xb6\x91\x94\x10\xc8\xce\x09\xe1\x10\x3b\x03\x1b\xc9\x22\x3c\xbb\x94\x16\xfd\x6b\x55\xd8\xcd\x21\xc5\xf1\xfb\xe0\x7b\x4b\x0b\x6e\xd2\x23\x35\x64\xb0\xd6\xb3\x6a\xb2\x67\x9f\x0b\xa3\x82\x3c\x27\x84\x36\xa8\x69\xdc\xe1\xbe\xf7\xe0\x12\x23\xc1\x54\x2c\x08\x5d\x2a\xda\x9e\xe8\x17\xc9\x32\xb9\xb0\xa2\xd0\x6d\xca\xad\xc3\x3c\x66\xea\x1d\x2e\xd0\x4d\x31\x4b\x12\xe7\xd8\x7c\xf7\x8b\x5a\x94\x67\xd8\x34\x51\x92\xb6\xd7\x73\x71\x23\x66\x05\x78\x3d\x07\x9d\xca\x3a\xee\xd1\xec\x46\xcc\x98\x2a\x88\x4b\x74\x53\x06\x3d\xbc\x6d\x4b\xab\x95\xb3\x66\xca\xb3\x07\xbc\x6c\xf9\x5e\xb9\x9c\x65\xda\xb2\xef\x62\x9b\x04\xc4\x58\x75\x4a\x18\x8b\x40\x98\xa0\xc8\xb5\xba\x34\xda\x32\x97\x07\x81\x1b\xc4\x03\x08\x68\xa0\x3a\x40\x5b\x87\x35\x38\x4d\x3d\x9b\x68\x5d\xfd\xf3\x8c\xff\x53\x35\xd2\x4c\xc1\x48\xc1\x23\x8c\xfe\x29\xb9\x28\x2f\x92\x7f\x1a\xdd\xd2\x55\x56\x97\x74\x74\x5f\xd4\x62\x94\xed\xf7\xa3\x6d\x56\xca\xe2\x1b\xc6\x59\xb9\xa5\xeb\x91\xd3\x9b\xc8\xb3\xc1\x78\x55\x8c\x58\x55\x8e\x36\x4c\x94\x95\x3a\x2a\x93\xd1\xc7\xc2\x55\xcf\x4d\x0b\x05\x1f\xad\x01\xd0\x01\x46\xaa\x8a\x96\xa3\x75\x2d\x94\xd9\xc0\xd5\x8b\x65\xe3\xa3\x55\xc6\x47\xab\x2c\xcf\x47\xff\x09\x60\x0f\x29\xfa\x4f\x59\x43\xb5\xa5\xa3\xff\x74\x3b\xf8\x3f\x47\x8a\xd2\x8c\xf6\x59\x59\xca\xce\x15\xaa\x04\x78\x3d\x3c\xf1\xe2\xc6\x9f\xb8\xa8\xf1\xff\x1c\x6d\x8b\xe2\x53\x39\x49\x50\xa3\x54\x44\xe7\x57\x5d\xef\x28\x15\x3c\xe4\xdf\x5e\x85\xbc\xbd\x8a\xcb\x4b\x79\x7b\xad\x48\x2a\x45\xf0\x62\xe1\x5d\x59\xb9\x01\x9a\xf0\xfe\x94\xcc\x3a\x38\x78\xc9\xeb\x6c\xa5\x29\x4e\xee\x2e\xb5\x91\x6c\x2c\xd5\xc4\x9c\x10\x52\x02\x74\x7c\x8b\x8c\xcf\xa7\x0b\x84\x73\x1b\x61\x12\x21\xe8\x19\x42\xe8\xac\x96\xac\x90\x92\xf4\x3f\xcf\x4b\x50\x01\x6c\xd0\xc6\xa7\x72\x5e\x26\x27\x8e\x1c\x64\xc6\x79\x3d\x1e\x9f\x0b\x14\xd9\x28\x6f\x8a\x6a\x2b\x17\x47\x33\x3e\x30\xb5\xe1\x76\x99\x8c\x7e\xdc\xc0\x6a\xad\xd9\x5a\x17\xf3\x4a\x61\x60\x9c\x46\x30\x3c\x58\xcf\x5b\x3a\x82\xdd\xb5\x1e\xdd\xde\x8f\xd4\x14\xc8\xfa\x2b\x51\xd3\xd1\x46\x14\x3b\x6f\xb7\xe8\x89\x95\xf2\x53\xe6\xa1\x50\x63\xa8\x00\x3e\x72\x9d\xa9\x8a\xd1\x6d\x7d\x7b\x9b\x53\xb9\xa6\xf6\xa4\x7c\xe9\x48\xf2\x84\x76\xd9\x66\x39\x3d\xda\x1f\x02\x60\x1b\x33\x52\x84\x22\xa8\x14\xce\xf7\x4e\x6b\x16\x41\x41\x4c\x19\xc9\x20\x26\x8c\x95\x9a\x33\x59\xdf\x94\x73\x15\xc3\xb5\x20\x06\x38\x6f\xe6\x3f\xb2\xca\xa9\x94\x99\xe0\x7a\x0f\xad\xd5\x0e\xe1\xab\xcf\x45\x0e\x09\xb0\x63\x9b\x14\x20\xdb\x0d\x70\xa3\xa6\x4c\x6b\xfd\xf1\xbb\xac\xda\x42\x36\x16\x22\xe6\xc2\x4b\xa1\xc5\x0d\xc9\xbc\x93\xb2\x4b\xc4\x0d\xf5\xda\xd9\x72\xa8\xb5\xe5\x40\x6e\x37\x1c\x18\x7a\xdc\x4b\x97\x2e\x4e\x2b\x02\x3b\x25\xc0\x14\x94\x79\x88\x94\x21\x89\x8f\x05\x91\xfa\xe4\x19\x9d\xc9\xd3\x12\xf4\x85\xf1\x51\x09\x2a\x69\xc8\x55\xcd\x38\x35\xa2\x2d\x80\x4f\x85\x19\xe9\x5c\x8f\xca\xee\x80\xba\x83\x18\x54\xb5\x9f\x22\x2f\x56\x7f\x30\x27\xa8\x71\xeb\xfc\xd2\xbf\xec\x8e\x4b\x8b\xc2\x89\x8a\x9d\x70\xb3\x96\x9c\x48\x8d\x0c\x78\x16\x02\xbb\x1d\x0e\x22\xe6\xe0\xca\x11\x16\x11\xe1\x95\x23\x95\x4b\x64\xc7\x4a\x4a\xe8\x64\x05\xf0\x14\x6d\x29\x87\xb7\x88\x96\x01\xb1\x9c\xb4\x44\x33\x49\x78\xb4\xc3\xf2\x99\x98\x74\x85\xaf\x94\xa3\xc6\x3b\xc2\x6f\xdb\x57\x2c\xed\x58\x3e\x2a\x67\xf9\x28\x7a\x80\x93\x0b\x34\x1e\xf3\xb4\xc0\x62\x5e\x2c\x30\x03\xa3\x48\xb1\xf0\x5a\xf9\x60\xd1\x56\x3d\x0f\x1c\x48\x9a\x39\xa7\x8b\x6b\x66\x43\x1a\xaf\xa1\x4c\x2a\xe4\xf9\x55\x17\x2e\xf2\x1d\x57\x09\x21\x95\x4b\x43\x16\x74\x8a\x13\xe3\xac\x5a\x22\xa6\x38\x52\x0e\x7d\x70\x9d\x78\xee\x53\x2b\xcf\x80\xfc\xa0\x83\xeb\x85\x8e\x14\x2d\x67\x31\x8f\x86\x2f\x59\xf9\x53\x49\xd7\xb3\xf3\x2b\xa3\x01\x4d\x19\x01\xb6\xaf\xb8\x91\xc3\x53\x7f\xa2\x59\x05\xf1\x64\xc6\x5b\xc3\xf4\x09\x9b\xde\xe1\x02\xcd\xf4\x57\x6d\xb1\xca\x44\x16\x97\x93\xe5\x12\xf6\xe3\xb2\x10\xfb\x6d\xc6\xcb\xe5\xf2\x70\x48\x8f\xbc\xb5\x23\x50\xf9\x5c\x92\x4e\x81\xa4\x39\x36\x34\x48\xde\xd9\x5b\xb9\x79\x03\xc9\xe3\x70\xa8\x37\x4a\x13\xb8\xf3\x15\xd4\x4d\xe2\x07\xec\x34\xa8\xb1\x73\x22\x87\x4c\x49\x81\x1f\x9c\x63\xf2\x8c\x62\xe3\x4c\x3c\x2b\xbc\x25\x7a\x16\x26\xa3\x53\xf3\xea\x85\xc4\x1b\x5b\xe2\xe1\x90\x56\xb6\xcb\xbb\x8c\xf1\xd6\x14\x08\x9f\x73\x55\xe1\xbf\xca\xc9\xd9\x4d\xc4\x43\xd3\xe0\x0a\x35\xeb\x30\xd6\x6e\x97\xed\x7b\x75\x1b\x61\x00\x54\xda\x79\x66\x31\x31\x83\x1a\xfd\x12\xb3\xce\x37\x8d\x41\x19\xf2\x1f\xea\x3c\x4f\xea\x4d\x83\xdd\xc5\x12\xf5\x87\x98\x2f\x9c\x10\xe1\x0b\x48\xb1\x9c\x46\x5a\x8b\x4b\xe7\x62\x01\x39\xcf\x85\xf1\x7f\x39\xbf\x3a\xb3\xa8\x93\xad\xe3\xe1\x71\x6b\x15\xb9\xba\xae\x5c\x6d\x95\x71\x5f\x67\x84\xce\x2b\x75\xc7\x79\x09\xc3\x70\x41\xb6\x26\x3b\xd9\x75\x61\xbd\xc5\xcf\x25\xa1\x60\xe8\x1a\x15\x96\xa9\x16\x30\x62\xcd\x48\x09\x29\x7e\x42\x1c\xa6\xf9\x06\xa1\xc6\x0a\x6a\xff\x55\x30\x0e\xb5\x37\x41\x14\xe4\xfa\x64\x14\xa4\x89\x13\x3c\x99\x76\x36\x1e\x7a\x18\xcd\x6d\x71\x34\xfd\x2c\x6f\xe7\xb7\xf0\xef\x18\xd0\x8b\xda\x6b\x26\xf8\xe5\x29\x4e\xfb\xbd\x50\xb9\x97\xf1\xd3\x98\x27\x83\x0a\xce\x82\xbc\x92\xe6\x55\xd7\x3f\x95\x63\x05\x39\xae\x32\x07\x17\xe3\xb1\x8f\x8d\xca\xc2\xe4\xc1\x11\xc8\x62\x93\x69\xcf\x0d\xad\x27\x2b\x2b\xc7\x59\x34\xa5\x70\x86\xcb\x6e\x32\xe1\xd8\x62\xea\xf5\xf8\x96\x24\x1f\x03\x16\xad\xed\xea\x1d\xc9\x56\x93\xca\xbb\xd9\x04\x08\xfb\x4a\x07\x0b\x21\xe1\x32\xc1\xe8\xb0\xf3\xe0\x8e\x0c\x73\x25\xdc\xd0\xc9\xbe\xd8\xa7\x68\xd2\x4a\x4a\xf1\x60\x09\x97\x64\x2e\x34\xcc\x9e\xf2\x30\x9f\x51\xec\x17\x16\x8d\xce\xc3\xdf\x76\x0c\x88\xf4\x9d\x76\x94\xd7\x37\xdd\x47\x91\x50\x7a\xc3\xe0\x84\xa6\x38\x1b\x9c\x5f\xb5\x18\x5c\x48\xdd\x1f\x42\xce\xb5\xe2\x14\x21\x14\x47\xa3\xa5\x7f\x90\x25\x4d\xd4\x8d\xb6\x52\x91\x6e\xa5\xc0\x35\x0f\xcc\x5d\x5b\x20\xac\x90\x33\x63\x58\x03\x92\xf8\x71\x20\x7a\x18\xe4\x09\x93\x99\x16\xb9\x40\x96\x92\x70\x84\xb9\xc1\x7c\x67\x98\x3b\xcc\x0c\x07\x21\x9f\x72\x5c\xa2\xb3\xd6\x28\xa4\x68\x28\x87\xdf\xb1\x17\x75\x57\x43\x9e\x05\xad\x68\xfc\xc6\x94\x70\xf3\x05\x5e\x85\x79\x35\x37\x24\x49\x3c\xec\x8f\xdc\x8d\xb9\x42\x19\x29\xe4\x01\x24\xf9\xbc\x5a\x78\xa8\x3c\x2b\x29\x09\x8f\xc7\x99\xe4\x9e\x56\x37\x69\x0d\xf8\x41\x7c\x02\xe9\xf2\xde\x6e\xd2\x0c\xdd\xf0\x49\x59\xdf\x96\x95\xb0\x28\xf5\x17\x57\x68\xc6\xb1\x8f\x6d\xbf\x9a\x67\x0b\x5c\x23\x34\x0b\x1e\x4a\xf1\x1b\x6f\x2e\x48\x32\x9b\x25\x17\x1c\xb2\x32\xb8\x70\xd8\x8b\x8d\x85\x47\x61\x38\xb9\x4c\xc0\xe5\xed\x78\xde\x8c\xc8\x1c\x0a\xf2\xd0\x78\x03\xa6\xc1\x80\xc1\x93\xdb\x4b\x40\x2d\x94\x57\x9d\x0b\x12\x21\x60\xa7\xeb\xc0\x76\x46\x52\x97\x30\x22\xe6\xd3\x85\x72\x3d\x6e\x29\xc8\xa4\x1c\xeb\x54\xf8\x2a\x6d\xb4\x03\x9e\xea\xaa\x4a\x61\xf7\x4b\xa2\xea\x29\x02\xb8\x51\x04\xbc\x13\xc5\x9d\xc8\x76\xbb\xac\x62\x2b\x4f\x51\x53\x4a\x31\xfe\xa7\xf7\xaf\xa4\x6c\xcf\x8b\x4a\x8a\xf7\x20\xdc\x7f\x61\xd5\x96\x79\xde\x9e\x93\xd1\xbb\x9c\x66\x25\xbc\x05\xb9\x5d\x79\x7f\x72\x65\x44\x2d\x2b\x9a\x81\xe7\x27\x23\x19\xe8\xda\x18\x96\xa3\x22\xac\xf1\x27\xc8\x27\xcc\x31\x1c\x10\x07\x94\x03\x81\x68\xea\x88\x29\xaf\x7a\xc9\x53\x44\x60\xb0\x1e\xfa\x78\x0d\x7e\x71\xd1\xd8\xcf\x2b\xd4\xa1\x95\x02\x8d\xc7\xec\xe2\xc2\xf2\x7b\x84\x10\xa6\x91\x38\xc8\x93\xbf\x4d\x9e\xdc\x39\x96\xa7\x68\x19\x45\x48\x8b\x05\xd1\xe7\x42\xd1\x02\xe6\xc7\xac\x19\x36\x63\x8a\xc5\xc5\x15\x72\x9c\x05\x86\xf0\x51\x7b\x10\x38\x52\x29\xaa\x0b\xc2\x23\xfa\x83\x2c\xc8\x72\x43\x68\xc8\x30\xc1\xfd\x3c\x62\x3c\xa6\x37\x4f\xd3\x82\x3c\x34\x68\xce\x16\xe4\x21\xd3\x59\xae\x30\x23\x05\xd2\x5a\xeb\x73\xd6\x9e\x95\xcc\x28\xb5\x3a\x6e\xed\x72\x34\xf3\x6c\xa1\x53\xe2\xc8\xda\x1a\xa5\x82\xc8\x16\x87\x83\xa9\x5d\xe7\x15\xd1\xb8\x50\x2d\xd4\x90\x02\x84\x53\x70\x0f\xf1\xf8\xf1\xd2\x4b\x63\xd7\x41\x44\x1a\x8f\xd3\x24\x51\x2e\x7d\xc9\x13\xf8\x63\x3e\x5d\xb4\x32\x88\x29\xb6\xe9\xc9\xaa\xd8\x49\x96\xe0\x48\xd6\xb0\x38\xbf\xf5\x64\xc7\xbe\x32\x5e\xea\xef\xe5\xc1\xea\x5c\xe6\x27\x53\x43\x8f\x68\x0a\xf9\xb7\xc0\x4b\x84\x10\x83\xe3\x38\x52\x09\xa4\xfc\x04\x9d\x30\x21\xc6\xb1\xb3\x40\x1a\xef\x21\x78\x9a\x29\xc7\x71\x0b\x77\x07\xc0\xeb\xc6\xe6\x28\xe7\x60\x3f\x1e\x3b\x2b\x88\x76\xbf\x97\xd2\x71\x11\x60\x29\xe8\xf9\x30\x5d\x89\xbe\x84\x5e\x9f\xb5\xeb\xdf\x46\xea\xcf\x10\x20\xcb\xf5\xd6\x7f\x79\xf5\xbb\xe8\xeb\x34\xc3\x85\xd2\xd0\xae\x09\x4b\xf9\x7c\xbf\xc0\x7c\xbe\x5d\x20\xa3\xe3\x5a\x9b\xfe\xad\xcf\xca\x2f\xac\x5a\x6d\xd3\x3d\x7a\x58\x65\x25\xb5\x4e\x9b\x33\xf8\xa5\x3d\x35\x67\x46\x9b\xae\x7a\x0e\xaf\xf4\xa6\xf1\x5e\x29\x37\x7d\xfa\xdc\x74\x01\xe1\xa9\x2e\xab\xfc\x39\x67\xf2\xdc\x94\xc4\xf0\xfe\xb8\x26\x99\xf3\xc9\x7a\x9d\x55\xdb\xc9\x8e\xf1\xb4\xc4\x35\xc2\x2b\x32\xbd\x5e\x3d\xcd\xaf\x57\x0a\x44\xc8\x60\xb0\xa7\xc5\x7c\xb5\xc0\xd9\x7c\xb5\x70\x16\x9e\x8d\x55\xf5\xc3\xa7\xaa\x41\x3b\xaf\x33\x2b\x5e\xe8\x99\x8d\x2e\xe2\x4d\x11\x2c\xcd\x6c\xaa\x6a\x59\x4b\xb1\xc2\x1f\xe0\x1d\xad\x3e\xb2\x1d\x24\x03\x75\x7f\xa3\x33\x5d\x9f\x29\x39\x6d\x4c\xda\x11\x48\x56\xb4\x61\x9c\xae\x67\x53\xe0\xc6\x67\x57\x58\x4f\xf0\xec\xf7\x58\x4d\xee\xec\x9f\xb1\x9a\xca\xd9\x1f\x30\xcc\xd3\xec\xff\xc2\x4a\x2f\x3f\xfb\xa3\x4d\xdf\x3a\xfb\x1f\xf6\x6c\xcc\xfe\x27\x86\x10\x85\xd9\xff\x8d\x65\xff\x66\x57\xd3\xa6\x95\xb3\xd2\x6a\x3d\x2f\x2b\xa3\xcf\x10\xdf\x4d\xd1\x65\x2a\x9e\x4e\xfb\x0f\x71\x5d\xd1\xb5\xfd\x63\xb9\xcb\x56\xa2\x88\x32\xe5\xa7\xd9\xf0\x3e\x14\x16\x11\x60\x22\x9d\x0e\x16\xe5\x2e\x58\x54\x39\xcf\x51\xf0\x98\xe3\x92\xae\x3a\x16\x89\x2d\x74\x78\xa7\xc6\x2f\xeb\xdc\xf3\xea\xb9\x2f\x4b\x67\x92\xf6\x15\x46\x16\x6f\x9c\x66\x5a\xf8\xe0\x65\x92\x3f\xe0\x0b\x45\x4b\xe9\xd7\x7d\xc6\xd7\x3e\x8c\x30\x93\x07\xc1\xa5\x08\x9b\x62\x0f\x64\x92\x7e\x19\x55\x93\xe7\x7a\x2a\x2d\x8d\xef\xc4\x44\xc9\x5b\xa5\xb0\x2c\xb1\x87\x81\xc2\x20\x7c\x1c\x7c\xb2\x0c\x6f\xa2\x23\x8e\x8a\x39\x5d\x20\x7c\x2e\x52\x67\x05\xe1\x0e\xab\x33\x2c\xc9\x16\xa8\xc1\x0f\x6b\xba\xa7\x7c\x4d\x79\xf5\xaf\xf4\xbe\x9c\x15\x0d\x6a\x1a\x3a\x29\x84\x94\x1b\xf8\xda\xdc\xfb\x74\x42\x77\xfb\xea\x3e\x02\x5f\x02\xb5\x3a\x80\x0a\x7a\x91\xe8\x0e\x07\x3a\x21\xaf\x2c\x2b\x5f\xca\xaa\x50\xda\xea\x8f\xf6\x2b\x97\xfc\x60\xf5\xf2\x57\x68\xec\x7c\x68\x6b\x3c\x96\xa2\xb0\xdd\x52\xef\x60\xde\x14\x9c\x1e\x1d\xcb\x37\x55\x7e\xde\xa9\x50\xd5\x27\x69\xc3\xb7\x55\xd8\x57\x23\x00\x22\x47\x41\xc9\x8e\x55\x1a\x1a\x8e\x6d\x95\x96\xe9\x36\xf9\x25\x55\x1b\xb4\xcd\x56\x0e\x6a\x23\xba\x6b\x29\x22\x84\x08\x55\xed\x5d\x3c\xd1\xe9\x37\xd4\xf9\x9d\xad\x91\xfe\x6a\x55\x9a\x5e\xf6\xa4\x63\xfd\x86\x2a\x9f\xda\x1a\x7f\xb5\x5e\x3e\x35\xbd\x2c\x38\xfd\x6b\xd6\x7b\xe4\xb2\x9c\x65\x90\xc1\x50\x97\x4b\x75\xac\x52\xb6\x7e\xcb\xf3\x01\x5f\x99\x92\xea\x3b\x03\x81\xc6\xf8\xdd\x33\x59\x64\xc8\x86\x7e\xb8\x0b\x63\x97\x7b\xc6\x03\x08\x2d\xae\x1c\xa8\x7b\xbc\xa2\x2e\x32\x93\x4a\x9e\x97\x37\x6a\xf0\x92\xd0\x89\x74\x8a\x23\xda\x5f\x0a\xaa\xc6\x42\xf4\xbc\x3f\xa7\x2d\x8d\x55\xfb\xbe\x54\xc9\xba\x96\x03\xae\xcd\x90\x09\x0e\x81\xd7\xc2\x2b\xb5\xc3\x59\x0f\x62\xa7\xb5\x46\x94\x67\x15\xfb\x4c\x97\x8a\xe1\x7a\x7c\xc6\xda\x30\x08\x5e\x89\xb1\xa7\x2e\xb2\x4e\x60\x2f\x0d\xe0\x96\xa5\x80\x77\x38\x74\x80\x8a\xc1\x3b\xc4\x24\x3b\x93\x7d\xd3\x08\x06\xad\x0b\x6b\x4e\x55\xa6\x85\x05\x36\x9b\x0c\x50\xf2\x3a\xc9\x74\x7d\x31\xf6\xfa\xc9\xbf\xd0\x6c\xb5\xd5\x59\x70\x29\xba\x91\xb7\x9d\xc3\x6d\x9d\xc0\xdb\xc9\xef\x7e\xfb\x04\x27\x09\xc4\xfa\x52\x4c\x2f\x08\x34\x63\xb0\x59\x87\x8d\x9c\xb6\x47\x2e\x02\xe0\x6c\x8d\x43\x88\x34\x10\x61\x36\x79\x86\xd2\xca\xc1\x99\x61\x48\x10\xa4\x9f\xcb\x91\x07\x23\xb4\x5c\xad\xcd\xca\x00\x7c\x90\x1b\x78\x1e\xe6\xb3\xde\x65\xfb\x34\xb6\xc1\xd5\xf4\x35\x01\x73\x72\x7c\x64\x76\x04\xb1\x0e\x77\x16\x48\xf4\x2d\xcc\x2a\x88\x11\xab\x03\xef\x2d\xd7\x3d\xe8\x77\xa5\x17\xdf\xfb\x7a\x33\xec\xeb\x0d\xcb\x01\x0d\xa9\x5b\xc1\xde\xcf\xc3\xf2\x8b\x33\xb0\x18\xd8\xc9\xb4\xc2\x5d\x15\xac\x0e\x96\xb6\x4b\xe9\xe0\xe1\xfa\x52\x68\x04\x47\x06\xab\x6c\x16\xde\x7e\x61\x68\x3c\x66\xd1\x8f\x2f\xaf\x00\x9e\xc7\x28\x30\x28\x44\xa7\x19\x3e\x56\x92\x2a\x49\xef\xe9\xa4\xe6\xac\xe0\x8e\xb9\x2b\xeb\x5d\x0c\x99\xae\x0c\x3d\xea\xbc\x34\x83\x17\x55\x83\xa7\x38\x29\xeb\x5d\xa2\xb9\x88\xaf\x8f\xaa\x40\x09\x73\xd9\xd7\x54\x39\x92\x5f\x5e\x3d\x99\xe2\x64\x97\x7d\xd5\xb5\x31\xfe\x0d\xb5\x31\xae\x6b\x53\x95\x31\x6e\xba\xb6\x27\x2b\xf5\xef\xf7\xf7\x24\xfa\xfd\x0a\x38\x49\x75\xea\x93\x8b\x2a\xb2\x93\x7c\xd4\xb3\x4a\x73\x35\x6a\x6b\x91\x8d\xfd\xb3\x55\x7d\xdb\xdc\x6c\x0f\x2c\xf9\x7d\x04\xad\xfd\xe6\x64\xa3\xf1\x04\x87\x5e\x09\xe0\x8c\xf0\xa6\x35\x18\x06\x9d\xad\x39\xfb\x19\x50\x1f\xe5\x1f\x61\x47\xbf\x89\x9c\xab\x8d\x8c\xe3\x60\x79\x75\x2f\xc1\x0f\xb7\x71\x8d\xc6\xe3\xba\xf7\x0c\x14\x2d\xaf\x07\x7f\xb0\x02\xa1\x33\xb0\xfd\x97\x87\x43\x5a\xce\x0b\x08\xdd\x67\x66\xa3\xcb\x7d\xce\x06\xdf\x14\x98\x2a\x07\xce\x92\xae\x82\x80\xeb\x7f\x2c\x71\xe8\x12\x68\x9b\x7c\xc1\xa3\x03\xd1\x69\x14\xe8\x46\xcc\xe6\x0b\x39\x68\x22\xb4\x69\x49\xd3\xbd\x98\x01\x82\xe1\xc2\xd3\x9e\x8b\x8e\x45\x97\x93\xf3\x2b\x59\xd3\xbc\x5a\xe0\x82\x4c\xaf\x0b\x07\x27\x5e\x28\xa9\x93\xc9\x09\x27\x84\xa2\x07\x4e\xce\xa7\x3a\x73\x21\xdb\xa4\x90\xf9\x8d\x5b\x55\xaf\x97\xcc\x30\xb1\x33\x9c\x78\x63\x80\x4d\xc4\xf4\x71\x2a\x69\xf5\x82\x6d\x36\xf1\x13\x3a\x6c\x67\xea\x18\xfe\x3b\x2a\x2f\x75\x13\xcc\x2b\x7f\x55\xbd\x13\x17\x3e\xe0\xe8\x46\xc4\xa6\xce\xe8\xd2\x02\x2b\x89\x24\xa8\xf6\x7a\x16\xe1\x4d\x1d\xdf\x79\xb8\xea\xdd\x81\xab\x22\xcf\xff\xa1\xfb\xaf\xcd\xa0\xf8\xaa\x0b\x85\x59\x83\x82\x2b\x2b\x08\x80\x8e\xe4\x64\x67\x01\x02\x23\x9d\xb3\xc5\x8d\xbe\x78\x80\x26\xcc\xcc\x2d\x04\x38\x75\x9e\x71\x26\xd1\x23\x57\xc4\xba\x2c\x44\x1b\x87\x5c\xab\xa0\xcd\x43\xa7\x84\xae\x6e\xa2\x5b\xa5\xcd\x0a\x78\x70\x02\xf6\xda\xd5\xa6\x5c\x68\xce\x4f\xa4\xcb\x9d\xd7\x87\xf6\x5e\x00\x41\xa1\x41\xca\xa7\xa5\x42\x51\x6f\xf4\x53\x9b\x53\xa7\x96\x56\x70\x82\x38\x6f\x13\xc7\x0a\xe1\x15\xb1\xe9\x96\x4d\x06\xb1\xd7\xd9\xfe\x70\x48\x63\x8f\x75\x7b\x7f\xa5\xd9\xa7\xd7\x19\xa4\xac\x5c\xa9\x4d\xae\x60\xf9\x7d\xfe\xa6\xea\x85\x63\x2c\x51\x63\x8d\x8d\x9b\xf1\x78\x13\xa5\xc2\xe6\xf0\x4d\x04\xdd\x15\xae\x0f\xda\x59\xc3\x70\x0f\xa8\x31\xea\xf2\x5e\xfe\x2d\x66\x95\xd6\x96\x9a\x59\x22\xf7\x59\x35\x9f\x2e\xe4\x81\x9d\x5f\x99\xdd\x3a\x17\x98\x13\x7e\x38\x24\x59\xb9\x4a\x16\x72\xfe\x73\x74\xb6\x21\xdb\xb0\x3e\x17\x11\x20\x2b\x60\x64\x7d\x93\x98\x9b\x4f\xcc\xfc\x7b\x50\x9c\x79\x37\xa6\x97\xa8\x0d\xa5\x35\x66\x78\x8f\xf0\x1c\xfe\x95\x44\x74\x05\x6e\x7a\xb0\x34\x1b\x93\x3f\x23\xf9\x17\xf9\x1b\x0c\x1d\x78\x47\xd6\x00\x67\x38\x1b\x76\xc9\xed\x50\x74\x9f\x9a\x93\xd5\xbf\x19\x85\xe7\x85\x8e\x6b\x9c\x6b\xa7\x69\x49\x90\xab\x16\x41\xce\x48\x35\x2f\x16\xb8\x24\x99\x9c\x86\x9a\x64\xf3\xab\x05\x06\x9d\x78\x4e\x34\xea\xb8\x4e\xd1\xe3\x5f\xa2\xa5\xf6\xa3\xbc\x53\x20\x22\x25\xb2\x3a\xf3\x64\x4d\xcb\x95\x1c\x6d\x7d\x73\x79\xf5\xbb\x7c\x96\x9f\x59\xcd\x35\x42\x4d\xba\xc3\xdb\xa3\xe4\x2e\x4e\xe6\x9c\x72\x28\xb2\xa7\xf5\x66\x12\x8d\xe6\xe1\x0c\x8b\xba\x8f\x4b\xd7\xc6\x50\x5c\x7a\x7f\xc7\x84\xea\x28\x7e\xb9\x11\x85\xb5\xc4\xd9\x6b\x77\x72\x15\xb7\x4a\x30\x7e\xec\x43\xe5\x36\xad\xe3\xd9\xfa\x40\xc9\x5b\x12\xb6\x8a\x33\xf3\x62\x68\x94\xdf\x10\xb7\x0b\x77\xad\x33\x2d\xf5\x83\xc7\x2b\x1f\x1b\xa6\x39\xb1\x1f\xa1\x8b\xac\xe0\x7f\xa6\xf9\x5e\x6e\xf3\xc4\x1f\x4f\xe0\xad\xe7\xb9\x52\x65\xf1\xd9\xde\xdf\xff\xea\x73\xbb\xbf\x8f\x5a\xf4\x8e\xf8\x54\x45\x6f\x85\x58\x76\x23\x0d\x36\x72\x43\x67\xdc\xd9\x74\x78\xdb\xa6\x43\x11\xa4\xf2\xd9\xdf\xa7\x1e\x55\x1f\x29\x4d\x83\xf3\xaf\x8a\x64\xa5\x33\xd1\x59\x9b\x6e\x6e\xa5\xca\xb6\x6e\x5d\x55\xc1\x37\x40\x80\x7b\x09\xb3\x9c\x43\x85\xd0\x77\x64\x6a\x2d\x80\x3a\x9e\x20\xcc\x4d\x50\x29\x13\x7a\x46\x2a\x43\x20\xb0\x40\xca\x3e\x66\xdd\xe3\x2f\x2f\xcb\xef\xc8\xf4\x1a\x65\xf3\x72\x41\x68\x2a\xff\xd1\xbd\x6f\x4c\xf8\xc1\xb1\x29\xa8\x10\x92\xd5\xc3\x24\xa8\xcf\x6c\xd4\x42\x35\x32\x86\xa5\x62\x33\x7a\x91\x55\x14\x65\x70\xed\xc8\x3f\xd3\xca\x37\x6d\x29\xbc\x80\x42\xa4\x00\x76\x91\x91\x87\x06\x57\x48\x0b\x05\x0e\x28\x3f\x64\x16\xb4\xc6\x00\x4b\xfe\x3f\x59\x2e\x13\x15\x1b\x0f\xfe\x26\x8c\xdf\xa5\x53\xfc\x7b\xc9\x4c\x64\xf3\x7a\x41\xc4\x0d\x4d\xab\x79\x6d\xc6\x35\xab\x00\x3f\x43\x40\x14\x9b\x8e\x69\xc3\x85\x49\x0d\xe4\xa2\xb2\x80\x8c\xe0\xea\x66\xbe\xd0\x71\xc9\xe6\xaf\xb8\x79\x8b\x7e\xad\x9e\x58\x06\x43\x6e\x75\x78\xeb\x25\x78\x7c\x94\x8f\x59\xe4\x6c\x73\x62\xa0\xa4\xdc\xa4\x9c\xd1\xc9\xcb\x37\x7f\x99\xbc\xfc\xdf\x1f\x5f\xbe\x79\xb1\x7c\xf7\xfe\xed\xc7\xb7\x1f\xff\xfd\xdd\xcb\x0f\x13\x53\x14\x92\x34\x1b\xe5\x0e\xe9\x28\x60\x46\x4e\x43\x1a\xde\xc8\xd1\x2c\x05\x6a\xce\x3d\x0c\x4f\x1d\xab\x32\x97\x77\xd7\x02\xa1\x06\xf3\x49\xa1\x08\x72\x19\x6d\xab\x88\xde\xfe\xdf\xdc\xd6\xd2\x34\xf6\xe3\x4e\x47\xce\xe5\xd1\x31\x4a\x0e\xc6\x14\x8d\xe3\x41\xfa\x3d\xf7\x2b\x03\xa7\x24\x4b\x31\xe5\xa4\xa2\x34\x31\x73\xfb\x9b\xc8\x17\x23\x56\x8e\x6c\xf9\xf5\x64\xf4\x53\x49\x47\x9d\xf2\xc6\xa5\x26\xc1\x0f\x6c\x3d\x0b\xf7\x91\x24\xdb\x97\x6e\x1f\xc9\x87\xf9\x2c\xf9\xe7\xc9\x74\x32\x4d\xfa\xc6\x8c\x64\xef\x79\x7c\xc6\xf9\xaf\x31\xd7\x51\xfd\xb4\xdc\xf0\xa2\xfc\xbc\x0f\xe9\xba\x7a\xf2\xed\x3b\x1d\xcc\x08\x42\x14\x42\x03\xbd\x10\xa6\x37\xbf\xca\x4b\x74\x9b\xad\x3e\xdd\xd6\x82\x53\x11\xd8\xa3\xad\x64\x1a\x02\x95\x41\xb0\x9d\xf6\x79\x01\x1f\x23\x2f\xaa\x15\xb5\x4d\xc4\x1e\x5f\xe9\x15\xeb\x42\x40\x2a\x64\x78\x87\xac\x57\x39\x9a\xa1\x69\x56\x18\x7f\x02\x60\x32\x4b\x41\xb3\xb2\xe0\xcb\x2f\xac\xda\x2e\xa1\xfa\x25\x78\x71\xf1\xe5\x32\xc1\x3a\xd9\x38\xc5\x94\xd7\x3b\x2a\x54\x7c\xf7\x55\x83\x70\xd5\xe8\x38\x8d\xe4\x27\x6e\x5d\x16\xd7\x3f\xbd\x7f\xf5\xd2\xc4\xa3\xa9\xd0\x75\x6f\x8c\x89\x73\xc8\x7c\x76\x0b\x90\x7d\xdd\x62\xd6\x2e\xa1\x6b\xe7\x6a\xaa\x52\x97\x99\xfc\x05\x2b\xf7\x59\xb5\xda\x9a\x9c\xc0\x28\x45\xd6\xed\xec\x0c\x8c\x72\x8d\x5a\x8f\x65\xb6\x5e\x03\x6a\x67\x0a\x2b\xff\x6c\x03\x09\x63\x1c\x02\x2a\x98\x60\xf8\x86\xdd\xd5\x82\xa6\x49\x56\xde\xf3\x55\xd2\x52\xc0\x05\xf1\x00\x8a\x13\x49\x94\x57\xb1\xd2\x93\xb5\xaa\x50\x2d\xf8\xab\xe6\x57\xe0\x75\xc2\xe4\xa3\x50\x20\xf6\x26\x86\x0f\x33\x9f\x59\xa9\xfa\x36\xb6\x5e\xf4\xa3\x74\xbc\xc5\xae\xe8\x4f\x8e\xba\x29\x28\x41\xe3\x03\x94\x1c\x40\xc5\x55\xc1\xf1\x38\x15\x93\xcd\x2e\x22\xd8\x0b\xcc\xfb\x04\x7b\xe1\x04\x7b\xe5\x76\x40\xc1\xdf\x40\x00\x32\x80\x15\xec\x2d\x20\x01\xa8\xc9\x36\x3b\x67\x63\x68\xb0\x98\x7c\xe9\x92\x14\x28\xf7\x05\x59\x28\xe8\x49\x5e\xac\xfe\xdb\xfb\x95\x17\xab\xa0\x5f\xab\x6c\x47\x73\xf6\x77\xda\xd3\x3d\xf3\xda\xeb\xe5\x9a\x9e\xf8\xc6\x15\xf0\xbf\xca\xca\x2d\x15\x47\x3e\x32\xef\xbd\x6f\x6a\xcb\x55\xf7\x7c\xe4\x0a\x78\x5f\x81\xb3\x0d\xdb\x44\x6e\x2f\x35\x22\xfd\xda\xff\x22\xdb\xb3\x2a\x3b\x3a\x0b\xa6\x80\xf9\x0a\x22\x75\xda\x9b\x1d\xf8\xc9\x63\x8e\x75\xc7\x99\xf1\x70\xef\xf7\xb0\xea\x36\xa9\xc7\x5e\x14\x5f\xef\x8f\x09\x4b\x19\xe3\x54\xf4\x14\x53\x32\xc4\x30\x31\xaa\xcf\xac\xc9\xca\x4b\x70\x24\xe8\x95\xbb\xc0\xa4\x79\xda\x8b\xb0\xd7\x30\x6a\x72\x0b\xf7\x14\x80\xfa\x7b\xc6\x17\x4c\xf4\xf1\x32\x72\xf7\x2c\x8f\xaf\x48\x60\xa3\x1d\x26\x65\x9e\x12\xb4\x7a\xde\xbb\x4b\xab\xaf\xc4\x46\x50\xfa\xf7\x63\x05\x2e\x8f\x8e\x36\xcf\xfe\x7e\xbf\xcc\x0b\xc9\x2f\xc5\x3f\x57\x2c\xd1\xb1\x06\x76\xca\xad\x7a\x79\xba\xaf\xa6\xe4\xd1\x89\x53\xe1\x97\x4b\x3d\x7f\x1a\x1c\xb7\x77\x7e\x54\x1a\xaf\xbe\xd7\x3a\x70\xb3\x77\xd3\xf7\x39\xcd\x3d\xd6\x5b\x60\xa0\xfe\xe3\xd1\x8a\x0c\x43\x01\xa8\xf8\xcc\x22\x1b\xdf\x71\x89\xc3\x3c\x0c\x80\x90\xd8\x34\x40\xd1\xea\x7a\x88\x4d\x20\x80\x9d\x4e\xe3\x86\xf7\x78\x8b\xd7\x78\x87\x3f\xe3\x7b\x7c\x87\x6f\xf1\x12\x7f\xc1\x5f\xf1\x4b\xfc\x16\x7f\xc0\xcf\xf1\x33\xfc\x09\xbf\xc6\xef\xf0\x47\xfc\x1e\xff\x17\x7e\x83\x5f\x75\xf8\xd4\x92\x56\xea\x7e\x2e\x55\x58\xb6\xfb\xa1\xbc\x7d\x09\x35\x82\x38\xe9\x30\xb5\x74\xf2\xfe\xc3\x5f\xde\x11\x3a\xf9\xa0\xa6\x8d\xd0\x89\x8b\x5c\x78\x2d\xe7\x3c\x78\x42\x9c\x72\xdf\x37\x34\x19\x05\x97\xb5\xc8\x69\x1b\x9d\x67\x4c\xb4\x26\x46\x63\xbc\x74\x46\x12\xad\x29\x57\xd6\x4d\x65\x7e\x55\x66\x53\x65\xcb\xf5\x1c\xf8\x22\xee\x36\x9e\xe7\x8e\x75\xfc\x51\x5e\x45\xe0\xad\xa4\xdc\xa0\xc0\xbd\xca\xb8\x6e\x19\x37\x31\xed\x80\xa6\xfc\xda\xb4\xef\x9c\xe7\xb0\x67\xbc\x04\xe9\xe4\x9d\x3a\x18\xef\xe4\xb9\x30\x53\xa2\x53\xe2\x11\x3a\x51\xf1\x4a\x4a\x73\xf5\x41\x1d\x40\xe8\xd4\xae\xf8\x4c\x9f\xc9\x3f\x5f\xab\x83\x6c\x16\x40\xff\x7c\x69\x09\x00\xa1\x93\xb7\x96\x6e\x10\x3a\x01\x0a\x03\x55\x8b\x9a\xbf\x2a\xb2\xf5\x9f\x8b\xe2\x53\x09\xa3\x93\xbf\x64\x89\xa0\x2b\x3f\xbc\x7f\xfb\x7f\x5e\xbe\x59\xbe\x7c\xff\xfe\xed\x7b\xf9\xd3\xd0\x38\xd9\x4b\xbf\x91\xe7\x9a\x7c\x7a\xb3\xd8\x55\xbd\x11\x3a\x51\x7f\x19\xcc\x69\x3a\x79\x46\xe8\xe4\x0d\x10\x71\x33\x84\xe7\x85\xa0\x4a\xc2\x80\xbe\xcb\x3f\xa0\x47\xb2\xb0\x2c\x62\x7e\xf8\x29\xf2\x3e\xd0\x4c\xac\xb6\x2f\x58\x29\xbb\xb0\x86\x2d\xd9\xff\xce\xbe\x81\xc6\xcc\x65\xe7\xa6\x55\x36\x62\x14\xae\x04\x92\xca\xb5\x1f\xb1\xf2\xa5\x3c\x93\x76\xd7\x43\x27\x61\x39\xcc\x23\x56\xbe\xd4\xdb\x41\xdf\xd1\xb0\xa3\xf5\xa0\xe4\x55\xa3\x37\x3e\x70\x02\xc1\x84\x03\x2c\xd6\x0f\xd9\x27\xaa\xe1\x58\xee\xff\xca\xaa\xed\x0b\xb3\x31\xd5\x24\x9a\x57\xc1\x87\xea\x60\xc2\x1a\x65\x3b\xfa\xa5\x10\x9f\x5a\xb3\x68\x14\x73\x71\xf1\x8d\xe2\xe4\xad\xbe\x6a\x1f\x7c\x01\x6d\x8a\xa3\xfe\x64\xa3\xca\x48\x17\x4d\x83\xfa\xab\x6c\xf5\x65\x70\xdd\xad\xef\x8e\xb6\xf1\x41\x13\xca\x41\x55\x8b\x41\xdd\xee\x4e\xf0\xc0\xea\xf9\xa0\xea\x4f\xae\xf1\xe0\xd6\x4e\xd6\x74\xb4\x1f\x91\x1d\x38\xb0\x65\x36\x68\x9c\x8a\x97\x1d\x54\x61\x31\xa8\x42\xc3\x07\x0f\xaa\x32\x1b\xd8\x47\xcd\x43\x0f\xaa\xb3\x1c\xd6\x4d\x75\xfa\x07\xd6\x59\x0f\xaa\xf3\x99\xe2\xd4\x06\xd5\x98\x0f\xaa\xd1\x90\xad\xc1\x95\x9a\x0f\x4e\x8d\xdd\xd2\xc6\xc1\x35\xfb\x1f\x1d\xad\xbd\x4d\x8c\x07\xb7\xd0\xfe\xf0\x68\x2b\x91\x8b\x60\x70\x43\x91\x6f\x4f\x9c\x41\x27\x6e\x0d\x6a\x62\x35\x68\x71\xdf\x38\x19\x6d\x50\xad\x9b\x81\x1b\xbb\xe7\x5a\x1d\xdc\x0a\x2b\xc3\x0f\x8f\x36\xd7\x7f\xc5\x0f\x6e\x4f\xb2\xaf\xc3\x1b\x74\x0c\xc6\xc0\x06\xf6\x83\xa6\xcd\xe3\x62\x06\xd6\xbb\x1d\x54\xaf\x63\x95\x06\x56\xbb\x1e\xb8\x77\x2c\x3f\x36\xb0\xde\xdd\x30\x12\x36\xb8\xb6\x67\xc7\xeb\xf1\x79\xc8\x81\x75\x7e\x1e\xd4\xc3\x7e\xd6\xf5\x11\xcd\xf4\x55\x71\x62\x29\x8d\xfa\x61\x50\x3b\xf7\x83\x86\xf3\xd2\xd3\x03\x0c\xaa\xf6\x6e\x20\x53\x67\x15\x1d\x83\x6a\xbd\x75\x62\x43\xd3\xa0\xb3\xfe\x7a\x3d\x59\x63\x78\xd5\xde\x47\x47\x7b\xbd\x7c\x34\x93\xb3\x1c\x76\x8d\x82\xe0\x34\xb0\xca\x2f\x5a\xce\x3a\x7e\xfd\x78\x92\xd9\xe0\x7a\xfd\x8f\x8e\xcf\x83\x92\x00\x07\x57\xac\xcb\x9f\x20\x70\x4e\x35\x35\xa8\xda\xaf\x83\xa6\xb6\x23\xcd\x0e\xac\xfd\xe5\x63\x6a\x7f\x0c\x9d\x7b\x3b\xa8\x62\x23\x9e\x0f\xae\xd4\x7c\x70\xb4\xd6\x88\x2a\x60\x60\x03\x1f\x86\x11\x0b\xa3\xc0\x1b\x54\xe7\xf3\x41\x75\x76\x94\x1b\x03\x6b\x7f\x36\xa8\x76\x50\xa1\x0c\xac\xf1\x93\x52\xb8\x1c\xad\xcf\x68\x67\x06\x57\x69\x3e\x38\x51\x2b\x1f\xba\x6f\x3f\x81\x9e\xe8\x54\x1f\x1f\xd3\xbd\xe3\x62\x68\x51\x0c\x95\x51\x3e\x81\x3a\xeb\x68\x6d\xa0\xf7\x1a\x5c\x1d\x94\x3e\xbe\xba\x8f\x10\xa1\x3e\x29\xed\xdb\xd1\xfa\xee\x86\x4f\xdc\xdd\xf1\x79\xbb\xab\x86\x2f\xe8\x5d\x75\x7c\x3d\xf3\xe1\xbd\x3a\x71\x1a\xf2\x47\xf4\x2a\x3f\xd1\x2b\xa5\xea\x1c\x5c\x9d\x2a\x7e\x82\x26\x2a\x3d\xea\xe0\x3a\xcd\x07\x83\xf8\x35\xa3\xb0\x1d\x5c\x7b\xfb\xc3\xe3\x42\x27\x1f\x4a\x15\x3f\x4d\x32\x7e\xfc\xa6\x2c\x86\x32\xac\x9f\x26\xc5\x71\xc1\xb1\xac\x77\x03\xab\x7a\x3d\x29\xeb\xdd\xf1\xb3\x3b\x98\x32\xbf\x9e\xec\x18\x3f\xca\xc5\xed\xb2\xaf\xc3\xeb\xca\xbe\x9e\xa0\x29\xfb\x47\xd4\xb5\x3f\x3e\x5f\xc3\x2f\xcc\xd7\x60\x33\x38\x25\x9a\xbe\x60\x9b\xcd\xf0\x0a\x55\xf9\x53\xa3\xfd\x7e\xe8\x01\x79\xad\x0c\x1d\x47\xeb\x53\x36\x91\xc1\x15\xaa\xe2\x03\x6a\x7c\x44\x27\xcd\x07\x47\x6b\xad\x39\xfb\x79\x70\x8d\xb2\xf0\xc9\xda\x1e\xd1\x43\x55\xfc\x54\x8d\xc5\xf0\xf3\x01\xa5\x4f\x68\x31\x4d\x84\xcf\xd0\x3a\xed\x17\x27\x54\x99\x2a\x3e\x64\x68\xad\xba\xfc\x49\x15\xb1\x31\x89\x0e\xaa\xf6\xdd\x40\xcd\x45\x60\x06\x1c\x58\xf7\xc7\x41\x75\x7f\x30\x36\xda\x41\x75\xbe\x1f\x66\x10\xf8\xf0\x97\x77\x03\x2b\xfc\xaf\x81\x52\xa3\x6f\x29\x1d\x5c\x75\xf8\xd9\x09\x5d\xdd\x63\x24\x9b\x37\xc6\x8a\x7b\xb4\x4e\x65\xf2\x1d\x5c\xa5\x2a\x7e\x9c\x97\xb2\x16\xe5\x81\xb5\xbe\xf2\x8c\xd0\xa7\x28\xf4\x63\x6b\x2e\xfd\x9a\x63\x3e\x73\xc6\xfe\xf0\xeb\x42\xf9\xa0\x87\xc6\xf9\xea\x09\x4c\xe3\x81\x09\xbe\x5b\x3f\x43\x0f\x7c\x4e\x17\x84\x61\x21\xff\xb1\x6f\xc2\x00\xd5\x6a\xa2\xaa\xf0\x22\xad\x28\x16\x08\x10\x18\x3f\x67\x39\x5b\x67\x95\x9d\x31\xdb\x58\x17\x46\x50\x28\x9f\x02\x42\x95\x2b\x1f\xc4\xb2\xea\xa4\x7d\x36\x75\x63\x86\x52\x41\xb2\x79\xbd\x40\x9e\x37\x7c\xb7\xfd\xf1\x18\x22\x03\x4b\xeb\xdf\x2f\x54\x9e\xd4\xf1\x58\xc3\xf9\xea\xdf\x67\x6c\x93\x1a\x5f\x3a\xe4\x32\xfe\x05\xd9\xfe\xba\x71\x6e\x69\x41\xf8\xbc\x9c\xb3\xc5\x02\x8d\xc7\x45\x6a\xa3\x8c\xce\xa7\x16\x44\x2a\xea\xd3\xee\xdc\xa5\xdc\xba\x2e\x02\xdf\xcb\x47\x04\x5a\x40\xda\x99\x4e\xd7\x46\xd6\x24\x7c\x63\xff\x4a\x2b\x34\xa3\xed\xe8\x81\xf1\xb8\x13\x50\x70\x43\x5d\x14\x01\x60\xee\xd9\x5f\x33\xc0\xfa\x8e\x8e\xa9\xe5\x72\xd4\xdd\xb0\xb7\xd9\x2d\x95\x1b\xf6\x5f\xee\x72\xb6\xdb\x51\xf1\x44\xd0\x0d\x15\x94\x7b\xce\x2d\xb1\x3d\x3d\xd8\x73\x67\x50\x30\x8f\x3d\x04\x59\x90\xb3\x46\xc7\x71\xfc\x4f\x74\xa6\xa0\x0f\xb7\xcc\x60\xde\x1b\x1f\xff\xbf\xb2\x3c\x57\xf1\x79\xce\x65\xd2\x56\x56\x3e\xb2\xb2\x17\x6c\xdd\xae\x4b\x45\x21\xfa\x5b\xc0\xf3\xc3\x66\x41\xd4\xf5\xbe\x28\x4b\x76\x9b\xd3\xe7\x0e\x3a\xee\x3d\xec\x04\x13\xec\xe6\x50\x1f\x90\xce\xc0\xaf\x03\xc9\x18\x86\x50\x23\xca\x5d\xa8\xef\xa8\x98\xc0\x8a\x11\x86\xf5\x5f\x7f\x15\xd9\x7e\x4f\xc5\xc7\xec\x0e\x9c\xb1\xc5\xe4\x05\x13\x15\xa8\x8a\x3f\x66\x77\xa6\xd0\x73\x55\x8d\x2b\x04\x79\x59\x75\x21\x15\xc9\x56\x65\x77\x10\x1b\x9e\x21\x84\x8b\xc6\xf3\xa0\x64\x7c\x4b\x05\xab\x00\x87\x0b\xb2\x1a\x39\xb7\x79\xbd\xa6\x11\x97\x7b\x8b\x4a\x00\x51\x07\xad\x8e\xaa\xf4\xc3\x26\xb3\x5e\xab\x83\xe6\x25\x6a\x82\xa6\xd6\xac\x15\xb9\x11\xad\x18\x4a\xa5\xad\x4f\xf5\x1c\xda\x55\xec\x38\xea\xb6\xc2\x48\x55\xad\xfe\xdc\x47\xfb\xa9\x52\x91\x87\x93\x07\xa8\x1d\xac\x49\xc5\x04\x80\x6b\xd7\x1f\xb3\x3b\x14\x80\x59\x03\x37\x63\xf3\x25\xe8\x16\x34\x4c\x35\x67\x55\x24\x95\x5d\xbd\xa7\x22\x1e\xad\x71\xe6\x75\x5e\x1e\x45\xed\xe0\xaa\x7c\xb2\x40\xa5\x96\x22\x4c\x27\x5f\x04\xb3\x2b\xed\x6f\x58\xef\x22\xa8\x15\xa4\x05\x66\xe5\x47\x51\x57\xdb\xfb\x19\x84\xc8\xdd\x16\x45\xae\xa3\xdd\x60\x1a\xf0\x17\x96\xe7\x7f\xcd\xaa\xd5\xd6\x90\xeb\x48\x42\x59\x53\x7c\x92\x5c\x50\x95\x8c\x63\x99\xad\xd7\xdf\x43\x82\x1b\x17\x29\xaa\xa2\x75\x95\x6f\x7a\xa6\x63\x27\x83\x50\x52\xbf\x40\x89\x1a\xbc\x66\xeb\x9f\xf8\x97\xc7\xb7\xad\x34\xa7\x43\x9a\x0f\x03\x73\xbb\x3d\xa8\xf9\x27\x5e\xb8\xc0\xab\x48\xf3\xad\x20\x56\x6f\xff\xb0\x4d\x6a\xc2\xd8\x42\x10\x02\x00\x59\xfa\xa9\xb7\x66\x8d\xf5\xdc\x5e\x61\xb5\xb7\x25\x69\x97\xbf\xbc\x7a\xdb\x19\x3f\x0c\x3e\x13\xc4\x6d\x21\x5c\x9d\x75\x80\x10\x5a\x1d\xf5\xea\xd2\xf9\xf0\x21\xf8\x20\xce\xec\xf4\xb8\xcf\xfe\x0a\xbc\xcf\x51\x1f\x31\x7f\xe2\x7b\x98\x3b\x77\xf8\x71\xb2\xb4\xc1\x14\x0f\x26\x7e\xc2\xb0\x79\x41\x9c\x49\x08\x77\x85\x1e\x9a\x38\x17\xd8\xc2\xc9\xb2\xa1\x1a\x30\x49\x67\xe6\x4a\x09\x8f\xf9\x8e\x8a\x3b\xea\x21\x1a\xce\xe6\xf6\xb3\x05\x2e\x29\x0f\x13\x41\x2a\x9c\xdd\x5e\x84\x46\xf1\xdd\xd5\x8d\xb8\xbc\x9a\x4d\x11\x66\xe4\xea\x9a\x3d\x15\x06\xa9\xf1\xf2\xaa\x85\xd5\x08\x30\xe1\x92\x8a\xe8\xd6\x0e\x87\xe0\xe7\x9c\x2e\x0e\x87\xf3\xa9\xde\x47\xde\xd3\x30\xe3\x5c\x88\x2c\xde\x1e\xbf\xf2\x01\x4e\xd0\x59\x31\x1e\x17\x90\x00\xcb\xe6\x28\xf7\xe2\xca\x1a\xa0\x1d\xaf\xe5\x3c\xc0\xd4\x04\x03\xa6\x93\xa5\xcd\x48\x95\x52\xd3\x0f\xe2\x1e\x9b\x9c\xb2\xee\x89\x9c\x6d\x8f\xae\x8a\x63\xdb\x53\x09\x39\xdf\x82\x78\x7f\xda\xd3\x3b\xc6\xc4\x44\x62\x5d\x8a\x16\x23\x13\x24\x1e\x20\x7c\x3c\xe6\x93\x2f\x96\x61\x39\x1c\x14\x86\xab\x63\x61\x12\x5c\xaa\x42\x6b\x73\x85\x99\x32\xf6\x4e\x4b\x14\x52\x8c\x30\x01\xe9\xc9\x36\x2b\x03\x1f\x93\xd2\xb1\x10\x35\x21\xa4\x80\x34\xdf\x22\xca\x2f\xc5\xbf\xc6\x4c\xbe\xf8\x17\x05\x9b\xaa\x12\x96\x25\xb8\x92\xe4\xd3\x7f\xb1\xd2\xbd\xa9\x70\x89\x70\xac\x21\x8f\x97\xea\x69\x87\xb6\x18\x35\x0f\x4a\xc2\x4c\x9e\x90\x97\xc5\x2b\x56\x56\x94\x53\x01\x39\x20\xed\x27\x75\xef\x27\x8a\xc0\xbb\xaf\xa6\xa8\x03\xf0\xa5\x43\xa1\x63\xdc\xb9\xf1\x6d\xba\x71\x7f\x02\x7f\x3e\xaf\x16\x2d\x1c\x2e\x2f\x4d\x27\xee\x44\x3d\x9f\xd9\x94\xa2\xf2\xd8\xdd\xa4\x15\x99\x62\x4e\x18\xb9\xbc\x42\x33\xf7\x02\xe2\x55\xe5\x33\x6c\x1f\x41\xb6\x49\xf9\x48\x5e\xe9\xcb\x25\xcd\x56\xdb\xf1\xd8\xfc\x35\x69\x6d\x18\xdb\x0d\x9d\x2b\x82\xf2\x35\x58\xef\x50\x64\x09\xe7\xba\xec\x02\xe1\xea\x3b\x32\x1d\x8f\x39\xfc\xbf\xbd\x99\x9c\x8d\xd5\x5b\x2b\x9d\x18\x7c\xbe\xc0\x25\xa9\x2e\x38\x2e\x48\x75\x5d\x3c\x2d\x01\x4b\x21\x53\x02\x9b\x9c\xd9\xc2\x04\x37\x67\x0e\xfc\x9b\x4e\xdc\x31\xd2\x4c\x95\xd7\xff\x0c\xe2\xd3\x5a\x10\x65\x7a\x62\x7f\xd9\xec\x9d\xf9\x40\x10\x2b\xbc\xf1\xd6\x45\x0d\x9f\x3d\x72\xf8\x1b\x39\xfc\x82\x54\x17\x0c\x67\xa4\xba\xce\x9e\x16\xd7\xd9\xc5\x05\xda\xb8\xe1\x67\x36\xb6\x9b\xb0\xb3\xc8\xb8\xed\x91\x48\x39\xde\xf4\x2f\xaf\x2b\x36\x60\x75\xcd\x39\x74\xab\x0b\x03\xdf\x2b\x22\xb1\xa7\xf4\xd3\x6b\xe0\x27\x28\xc2\x5b\x62\xe1\x4b\xf6\x37\x7b\xb0\xab\x40\xe7\x24\x03\x9b\xa2\x59\x88\xb8\x65\x8b\x6e\xc7\xe3\xb4\x45\x72\x34\x7e\x2c\xba\x4c\x53\x90\xe2\xd9\xcd\x74\xc6\xd0\x65\x5a\x12\x05\xf7\x73\x33\x9d\x71\x84\xf0\x8a\x54\x4f\xa7\x37\xf5\x45\x35\xab\xb0\xab\x6e\x02\x79\x19\xd5\x7d\x3e\x1e\xcb\x35\x5b\x8d\xc7\xe9\x31\x1a\xe5\x7d\x90\xe0\xbd\x9e\x8c\x38\x99\x69\x15\x45\x7e\xbb\x79\xe6\x9a\xad\x2f\xaf\x9e\xae\x2e\xca\x13\x0d\xbb\x2f\x4e\xb5\x1b\x96\x94\x47\xb7\x89\xf8\x8b\x97\x38\xee\x5a\x5e\x63\xcf\x75\x3c\xc7\x54\x6d\x83\xce\x61\x01\x48\x36\xff\x95\x27\xe8\xe0\x96\x2f\x7a\x84\xff\xa7\xe3\x31\x9d\xef\x17\x8d\xdb\x1f\xd5\xa4\xbc\xdf\xdd\x02\xef\xff\xf2\xf5\xf7\x2f\xdf\x2f\x9f\xbd\x7f\xff\xec\xdf\x13\xb9\x53\x44\xc8\xd9\x58\x2f\x5f\x6c\x60\xf8\xf7\x00\x1f\x66\x90\x96\x21\x89\x08\x2e\xdc\x28\xfc\xf6\x21\xd6\x96\x3e\x9d\x1e\x0e\xf4\x3b\x6f\x23\x29\xb6\xc2\xec\x25\xe4\xd8\x5b\xd1\x82\x27\x35\xd5\x96\xad\x7a\x1d\x16\x98\xa3\x35\x3d\x88\x8d\xb9\x62\xc2\xa1\x32\x4e\xbf\xea\xb5\x8a\xcd\x52\xee\xb5\x3b\x4f\xe6\x8b\x64\xa1\xba\xec\x80\x55\xe3\xb0\xaa\x23\x95\x7c\x2a\xe0\x2d\x7d\x65\x90\xce\x74\xa5\xf0\x32\xa7\xb8\x6f\x1a\x80\x7b\x97\x35\x35\x08\x17\xfe\x51\x69\xf7\x22\xe2\x71\xaa\xaa\x9a\xa2\xc6\x07\x8f\x95\x4b\x94\x3d\xba\x92\xbe\xee\x5d\x5e\x75\x6a\xd7\x61\x8c\x31\x44\x5a\x35\x68\x87\xfd\xf5\x1d\x99\xca\x05\x00\x35\x4c\x24\x63\x06\xf7\xc0\x5c\x9e\xa5\x92\xeb\xed\xeb\x06\xa8\x1c\xe1\xa5\x01\x93\xa6\xe8\x86\x92\xe9\x8c\x3e\x95\x24\x9d\x12\x76\x41\xf5\x79\x35\x05\x2a\x74\x38\x54\xdf\xb1\x9b\x8a\xb0\x59\x05\xa5\x2a\xc2\x2e\x2a\x74\x4d\x9f\x56\xd7\x88\xcf\xb9\xde\xc9\x0b\x62\x76\xc0\xc5\x85\xc3\xf7\x6c\x20\x3f\x35\x8c\x23\xd6\xf1\x53\x5d\x75\x57\x19\xb4\x3b\x45\x58\x77\xe1\x82\x30\x00\x5d\xbb\xe6\x4f\x99\xc2\x47\xdf\xa4\xb9\xe1\xc7\x01\x2e\xce\xf4\x40\x77\xe5\xf2\xaa\xd1\x2b\xfa\xe3\xb7\x77\xc7\xeb\x8f\x9c\x14\x02\x38\x64\x15\x61\xf2\x26\xed\x74\xec\x3b\x32\xbd\xe6\x2a\xc9\xec\x80\x9e\x75\x68\x5e\xf4\x30\x94\x46\x60\xad\xe0\x44\xc6\x68\x62\xf4\xbb\x3a\xfc\xae\xc3\x54\x9e\xdc\xdf\xf0\x7e\x9b\x95\x86\x39\x34\xc0\x6d\xad\xdb\x14\x81\x5e\xf0\x68\x49\xcd\x55\x21\x38\xa7\x3d\xf4\x3a\x14\x19\x3c\xe8\x4c\x33\x0a\x88\xef\x2e\xfa\x68\x7a\xfc\xeb\x4d\xfb\x6b\xc6\x57\x79\xbd\xee\xa4\x8e\x72\x28\xfd\xdf\xba\x35\x0b\xb3\x35\x0b\xb3\x35\x29\x81\xf4\xf8\x76\x1f\xa0\xc3\x81\x9e\x13\x3a\x1e\xb3\x73\xc2\x0c\x86\xa1\x61\x21\xce\xaf\x80\x84\x02\x9a\x58\x97\x8a\xc6\x09\xa8\xe6\x83\x4c\xba\x40\xf5\x0b\x34\x99\x6b\xa3\x37\xf5\x5e\x34\x68\xf2\xb9\xc8\xb3\x8a\xe5\x34\x0d\xa9\x12\xf2\x40\xdd\xd6\x92\x20\xa9\xaf\xb4\xfe\x83\x50\x5d\xcb\x27\x7a\x6f\x51\x8a\xa0\x7f\x9e\xee\xc5\xf1\xa4\x3b\x5f\x92\xb3\x69\x6a\xae\x2f\x2f\x8b\xef\x08\xbb\x46\x69\x46\x34\xef\x6b\xd8\x89\x98\x22\x2c\x83\x2a\x8c\x06\xe6\x5f\xa9\x2f\xf5\x69\x52\x15\xe8\xc5\x3a\xe5\x9d\x04\x88\xbc\xbe\x7d\x7e\x74\xdf\xe2\x8a\xb2\x01\xdd\x6b\xeb\xcd\x8e\xf7\x70\xed\x54\x33\xe4\x61\xb9\x54\x8a\x9b\x37\x05\x77\xfc\x75\xa0\x1a\x90\x53\x3e\xa7\x3a\x1b\xb1\x94\xf7\xcb\x95\x60\xfb\xaa\x10\x4a\x4b\xdc\xe0\x96\xe0\x13\x5c\xb2\x5e\xc2\x73\xbb\xac\xb8\x20\xfc\xbb\xe9\x4d\x75\xc1\x67\x97\x57\x4a\xd9\xee\xb3\xc3\x1a\xf8\x4f\x4f\x58\x39\x62\x7c\xc4\x50\xf1\xdd\x74\x3c\x96\x33\x5a\x62\xad\x14\x2c\x5a\x5c\x5f\xc7\xda\x50\xe2\x0c\xe9\xce\xd9\xe1\xb7\xfa\x66\x85\x44\xbf\x77\x19\x61\xd0\x3b\x26\x7b\x57\x1e\xef\x1d\xd8\xd5\x0a\x94\xc9\xde\xc9\xbd\x58\x9b\xde\x65\xfd\x3c\x29\x94\xa8\x41\x9f\x79\x5c\x99\x0b\x7d\xba\xa5\x77\x8c\xab\x95\x65\xfc\xee\xb9\x5d\xd1\x94\x9e\xd6\xc8\x42\x05\x65\x55\xec\xfb\xbe\xef\xab\x3c\x92\x9d\x93\x7b\x53\x74\xc6\x0f\x87\xd4\x7f\x10\x83\xcd\x45\x98\xcf\xe9\xe2\x46\xfe\xef\xe2\x62\x96\x82\x29\xf4\x0a\xef\xd2\x8a\x04\x07\x1e\xab\x03\x8f\x03\xbe\xcb\xe7\x3d\x1b\xdc\x33\x82\x93\x9d\x1c\x8f\x65\xa3\x72\x69\x2e\x2f\xe5\x5f\x4f\x09\xec\xa1\x47\x76\xa0\xc1\xb1\x93\xd7\xe2\x24\x8f\xef\xc4\x2a\xa8\x24\xbe\x19\x5b\x75\xb4\xf7\x4b\xa5\x2c\xc2\x46\xd9\xb6\x3d\xa2\x6c\xf3\xb1\x21\xfa\xf4\xc0\x27\x35\xbf\x1a\x93\xa6\x63\x2b\x81\x38\x3c\x95\xe1\xeb\x98\x3e\xba\x03\xa0\xf1\x2b\x77\x64\xb9\x74\x2d\x2c\x95\xe9\xa6\xf8\xc2\xa9\xb0\x16\xf2\x1e\x29\x60\x12\x7c\x38\x09\xbf\x49\x51\x83\x55\x1e\xf1\x23\x72\x42\x58\x81\x4e\x3b\xae\xb8\x9e\xa5\x50\x09\xdd\x5f\x15\xab\x2c\x7f\x05\x6f\x20\xfb\xe5\xd0\xca\x0c\xd2\x80\xce\xbe\xe3\x55\x93\x42\x04\x64\xc1\x29\xaf\x66\xc9\x05\xc5\x0f\x65\x51\x8b\x15\x9d\x55\x8d\x26\x22\x2f\x14\xc8\xd1\xa3\x4c\x57\xb8\xdb\x05\xd0\xb9\x54\x13\x51\x6b\xbb\x68\xf8\xd6\xc3\x52\x6a\xf0\x26\x5b\x55\x85\xb8\xff\xa1\x10\x11\x2b\xcc\x37\x26\x83\x7c\x68\xce\xfa\x67\xc7\x35\x98\x9e\xb6\x87\x1c\x87\xd1\xec\xcf\x3f\x31\x08\xdf\x62\x28\x30\xe6\xd0\xdd\x6c\xe3\x91\xf1\x03\x2b\x9d\xd3\xd5\xec\x7c\x8a\x95\x66\x5f\xe7\xbc\xab\x0a\x7d\xf4\x54\x16\x55\xf5\xa7\x31\x5f\x06\xf0\x70\xc6\x63\x16\xa5\x3a\x45\x5e\x0c\xdd\xcd\xcd\x91\xb1\xce\x5e\x66\xca\x3f\x57\x23\xbd\xfd\x7e\x72\xf5\x3f\x26\xd3\x04\xd7\x22\x9f\x25\xdb\xaa\xda\x97\xb3\x27\x4f\xa0\x8e\xff\x2a\x25\xbb\xf8\x64\xed\xc5\x30\x3f\xf9\xfc\xfb\xc9\xd7\x27\xbf\xa9\x8a\xd5\xd2\x55\x7c\x19\x56\xdc\xf4\xc0\xb7\x75\xd0\x5d\x86\x99\xaf\x4e\x42\xbc\x7c\xfb\x92\x3c\xc8\xbe\xa8\x09\xde\x88\xe2\xef\x94\x3f\x97\xbf\xbd\xd3\x05\x58\x94\x36\x62\x6a\x3c\xf6\x7e\x58\x3c\x4a\x60\x8a\xe3\x16\x2b\x56\xfe\x00\xd5\x26\x48\x61\xef\xc2\x7e\x07\xe4\x4a\x34\x81\xfe\xd3\x14\x9d\xb9\xdc\x9a\x42\xe7\xd6\x94\xc5\x2e\x92\xd1\xba\xa0\xe5\x88\x17\xd5\x48\xc3\xbd\x8c\xe0\x13\xc6\xef\x92\x13\xc7\xc2\xc7\x9c\xf9\x35\x8c\x31\x0e\xdb\x48\xd0\x9f\x6b\x26\xe2\xc6\x98\x1e\x78\x58\x93\x5c\xd2\x19\x1a\x5c\x84\x9e\x91\x7c\xb2\xf1\x58\xe5\x6a\xb6\xa1\xe7\xa8\x3d\xb4\x18\xc8\x10\x9a\x3c\x43\x38\x4b\x8d\x8b\x88\x9f\x0b\x2d\x77\xad\xc8\x06\x6a\x93\xaf\xe0\xa1\x99\xd5\x0a\x6c\x3e\x30\x25\x78\x01\xe0\x26\x95\x39\x5c\x7e\xa1\x56\xdc\x96\x3a\x9e\x0a\xc1\xc3\xe3\x96\xd2\x9a\x65\x37\x38\xa6\x7e\x3e\x04\x5b\x1d\x64\xb9\x12\x9e\xa5\xba\x51\xfa\xc1\x96\x06\xf0\xc1\xa9\xcd\xf4\x96\x75\xba\xa9\x59\x4b\xb6\x4b\xe6\x8b\x00\x2f\xd7\x24\x1b\xec\x53\xfd\x69\xe7\x8c\x3c\x45\x58\xf3\x4d\xae\xb1\x74\x6a\x80\xed\xce\xac\xf8\x4c\x11\xae\x9a\x50\x0f\xe5\x74\x5c\xbf\x6a\x67\xa6\x98\x2b\xd5\xa6\x4d\x48\xb1\x2e\x1e\x38\x61\x98\x75\xfa\x59\x5d\x5c\x60\x98\xe3\x2f\x5b\x29\x8f\xda\x9b\x88\x85\x1d\xe7\xad\x8e\x1b\xf5\x59\x2c\x8d\xbe\xad\x03\xda\xda\x30\xbe\x4e\xbb\xeb\x07\xcb\x4c\xe5\x1d\xad\xe1\xc8\x23\x78\xeb\x4a\x0f\x20\x87\x94\xf5\x0e\xdc\xcf\x04\xdd\x52\x0a\xa8\x0c\x15\x0a\xbe\x2e\xd3\x69\xfc\xda\xc3\xe7\xb8\x94\xd2\x92\xf1\x71\xc2\x0c\x73\x95\x3f\x06\x97\x84\x99\x19\x28\xb5\x9e\x98\xac\xd2\xc2\xa4\xeb\xbf\xa3\x15\xf4\x5a\x89\xc0\x92\x84\xbf\xa6\xd5\xb6\x90\x2b\xa7\xdc\xe0\x11\x2e\x75\x91\x7e\x1e\xa7\x83\xc4\xce\x03\x8d\x4f\xa9\x0f\x80\xce\x43\xb2\xcb\xda\xcc\x97\x32\xe7\x97\x2e\xcd\x4c\x4f\xad\x8a\xce\xe8\x32\x62\xce\xa4\xac\xaa\x07\xac\xde\x41\xb6\x18\x0c\x1d\x8f\xad\x28\x54\xdb\x46\x63\xef\x28\xbe\xb5\xaa\x5a\xb9\xcc\xff\xa2\x9e\xb6\x7a\x67\x13\xdb\x70\xdd\x51\x41\xe1\xc8\x1c\x99\xd8\x56\x62\x07\x4b\x35\xa8\xe1\xf7\x7c\xeb\xbf\xed\xf4\xf7\xf7\x7d\xbc\xb1\xa9\x30\xce\x2e\x22\xd3\xa5\xef\xdb\xde\x31\x4a\x41\x3c\x90\xf4\x85\x54\x0f\x5c\x23\x87\x50\xbe\xb3\x50\x57\xaf\xf6\x35\x8c\x29\xf0\xdc\x18\xa4\x67\x8d\x1d\x21\x65\x92\xd4\xe7\xf0\xfc\x4a\x9f\x38\x8b\x8f\xed\x6c\x94\x2e\x79\x26\x1b\x8f\xcf\xd5\x91\xab\xfb\x8e\x5c\x9a\xb9\x4d\x58\x9b\x53\x87\xc6\xe3\x74\x43\x6a\x79\xfa\x6a\xe7\x0e\x10\x9e\xbf\x8d\x1a\xd9\xb1\xb5\x92\x14\xa7\x77\xa5\xe8\x67\x2a\xda\xcb\xa4\x67\x36\x42\xb0\xb4\xcb\x84\xdd\x3e\xba\xc7\xea\xb1\xf2\x49\x7b\x19\x56\x18\x76\x06\x5a\x3b\xd2\x9b\x8c\x47\xb7\xcc\x91\x35\xc2\xfd\x4b\x71\x8a\x0a\x0e\x58\x96\xd8\xaa\x1c\x5b\x8d\x4c\xce\xc0\x33\xde\x3b\xfe\x8c\x1f\x1b\xbd\x42\xc1\x9b\xb5\x75\xc6\xea\xd4\x54\xc7\x69\x45\x05\x5e\xe4\x84\xa6\x1c\x4b\xba\x6d\x3c\x5f\x75\x97\x79\x83\x19\xff\x5c\x7c\xa2\x1d\xdf\xa5\xae\x08\x66\xd1\x4e\xab\xef\xae\x6e\x2a\xe5\xbb\xc4\xc9\xd5\x35\x7f\x5a\x19\xd4\xd3\xd0\x77\x89\xab\x3c\xb3\x7a\x1b\x9c\x26\x6b\x56\xd5\x57\xc8\x45\xa9\xe6\x74\x71\x16\x71\xe2\x28\xc6\xe3\x94\xcd\xf9\x82\x98\x44\x3d\x37\x85\xa5\x56\x02\xcd\xe4\x67\xe0\x76\xaa\x06\xc8\x1a\x5c\x15\xd0\xed\x59\xc7\x5f\x74\x40\x87\x9c\x66\x9e\xce\xc5\x42\x21\xec\x36\x18\x98\xd6\x55\x9f\x9d\xb0\x3f\x5f\x0e\x64\xf7\x3b\x57\xf7\xf9\x17\x56\x6d\x8b\xba\x9a\xb5\x6d\xa9\xda\xaa\xa6\xb4\xfe\x29\xb5\x49\x6b\xc1\x12\xaa\x64\xe3\x93\xfd\x96\xbd\x56\xb9\xc8\xc5\x39\x11\xe3\x31\x3d\x97\x7f\xa7\xd5\xbc\xb2\x76\x30\x01\x50\xc2\x0d\xae\x39\xfb\xf9\x5b\x66\x46\xde\x3e\x0e\xbd\xff\xe9\x74\x3c\xa6\x06\x7e\x5e\xcd\x91\xe4\xcc\xda\xdc\xda\x31\xe3\x6a\x83\x70\xb6\x5e\x77\x1d\x34\xa2\x37\x85\xdc\x1e\xa1\xaf\x95\x93\x4b\x7c\x87\x2b\xa6\x4a\xfa\x0e\x57\xae\xa0\xe7\x75\xd5\x35\xa3\xf4\x39\x8b\x58\x07\x6e\x6d\x44\xea\xd5\xd8\xf5\xd6\x60\xcd\x01\xc6\xf8\x64\x6d\x4f\x9e\x23\xa3\x71\xeb\x81\xac\x9c\x43\x3e\x30\x9e\x22\x14\x33\x84\xdb\x9d\x6b\xab\x02\xfb\xfb\xa6\xb8\x36\x65\x0c\xf8\xff\xce\x5a\x1c\xf1\x82\x1b\xb2\x16\xa1\x4b\xd9\xb0\xe5\x38\xfd\x4d\xb8\x22\xfd\xfe\x73\x83\x56\x24\xfe\xba\x7d\xbe\x1e\x61\x11\xed\x76\xf4\xa8\x59\xb4\x3b\x17\x70\xcc\xfb\x7d\xbf\x7a\x6e\x6b\xcd\x0b\x15\x9d\x0c\x80\x26\x6f\xbe\xf3\xd5\xbb\xa1\x33\x7a\x13\xf5\x4c\x9a\x51\x72\x79\x85\x39\x49\x8b\xee\x67\xd5\x4d\x35\xab\x6e\xa2\x7a\xf8\x59\x45\x2e\xaf\xd0\xd3\xe9\xe1\xc0\xe4\xff\x8a\x4b\x76\x4e\xa6\x18\x9c\x9a\x28\xf8\x15\x28\x1e\x00\x1e\xf8\x4c\xc1\x89\xbd\x35\x5f\x24\x08\xf3\x93\x5b\xd0\xf2\x25\x6d\x6f\xaf\xfe\xdd\x36\x37\xb6\xe0\x85\xd9\x06\xfd\x4e\x67\xff\x7f\x9b\xef\xa3\x13\x64\xdd\xe2\xbc\x09\x6a\xaf\x40\xe7\x84\x85\x0b\xd0\x5b\x0c\x96\x53\xbb\xfb\x14\xa2\xfa\x3e\xc2\x37\x58\x0e\x27\xb8\x23\x35\x9b\xd1\xc9\x5b\xe5\xb8\x9a\x48\xde\x2a\xda\xc9\x5b\x45\x55\xde\x2a\x7f\x46\x33\x14\xb8\x05\x73\xf9\xa0\x9d\xc6\xaa\xc4\xb5\x65\x15\xfc\xe4\x54\xea\x86\xff\xbe\x6b\xea\xe2\xf2\x92\xc7\x2c\x66\x77\x3b\x7e\xf5\x5b\x87\xe7\x4e\x32\x4a\xdd\xbf\x02\x53\x84\xce\x32\xb0\xba\x1e\x0e\x29\x9b\x67\xe0\x4d\xc6\x15\x7f\x50\x40\x32\x4a\xe0\x3b\x15\x8f\x13\x0f\xc1\x88\xf3\xf4\x36\x43\xab\xb7\xb3\x55\xf8\x87\x62\xf3\x73\x9d\x97\x4f\xf1\xf1\x95\xe5\xe3\x33\xa2\x9d\x1b\xba\xec\x7c\x81\xcb\xd0\xd3\x01\x17\x4e\xa5\xc1\x88\xae\xbf\x24\xab\xb4\x94\x6c\x7c\xe0\xb0\x1e\xcd\xc5\xd5\x06\xca\xfe\x95\xed\x56\xbe\x61\x8a\xe2\x76\x3e\xef\x2e\x97\xa0\xca\xe8\x1d\x5d\x70\xda\xf3\xf5\x48\x19\x64\x05\x16\xee\x14\xf6\x56\x87\xcf\xa7\xa6\xc6\x4a\xb0\xbb\x3b\xda\xb5\xe0\x00\xcb\x7f\xf6\xab\x05\x41\x5c\xeb\x6c\xe5\x21\x51\x80\x54\x84\xb8\xd8\x6c\x8e\x4d\x49\xf4\xa6\x0e\x66\x65\x9b\xc5\x14\x74\xf0\x71\xe4\x32\xa4\x27\x34\xe4\x1e\x3e\xfc\xaf\x12\x43\xd3\x0b\xcd\x6c\x93\x15\xbb\x47\xed\xcd\xf2\xe8\x60\x34\x29\xa6\x2a\xbb\xc2\xec\xfc\x0a\x2b\x3b\xc2\xe9\xe8\x99\xb6\x2d\x22\x6d\xe5\x96\x77\x05\xec\xce\x51\x69\xa7\xc2\xc1\x25\xaa\xd0\x48\x39\x84\x8e\x56\x19\xe7\x45\x35\xba\xa5\xa3\x5d\xb1\x66\x1b\x46\xd7\x93\xe4\xc8\xbc\xb7\xb0\xee\x87\xda\xec\x86\xe4\x4a\x18\x0e\xb8\x1f\x29\x11\x4f\x14\x14\xb5\x6a\x78\x90\xdf\xb5\x36\x71\x24\xe0\x09\x38\x2a\xea\x6a\x54\x6c\x46\xc2\xc4\x91\xf8\xf6\x88\xda\x6c\x7a\xb6\x49\x3b\xf7\xb3\x80\xc7\x42\x5e\xc0\xe2\x3b\x2f\xec\xc7\xbb\xde\x91\xb3\x12\x15\xda\x4a\x94\x79\x2a\x2e\xe5\x87\x7f\x85\xb0\xcb\x08\x2f\x7b\x5f\xa2\xc6\x48\xc6\x4d\x2f\xb5\xb2\x2e\x9f\xd8\xb3\x50\xea\x5a\xb4\xf1\x31\xa7\x99\xe8\x5e\xb1\xed\x1d\x66\x35\x6f\x9e\xe1\x85\xea\xcd\x56\x85\xce\xb7\x90\xc6\x51\x6d\x31\xcc\x78\x49\x45\xf5\x2c\xd0\x81\xaa\x19\xa1\xdf\xf5\x35\x11\x9f\x8e\x98\xa3\x2f\xc5\x53\x3c\x17\x8b\x50\x6a\x7a\xd6\xa3\x70\x0d\xbc\x1b\xe5\x4d\xa8\x0d\x1a\xfd\x8e\xb5\xaa\xeb\x69\x5f\x3f\x31\x05\x39\xdb\x55\x55\x76\x74\x09\x96\x3f\x70\x39\xfe\xc6\xe3\xf3\x30\xad\x1e\xf5\x07\xfc\xf1\x7e\x4f\xd5\x90\x93\xd7\x75\x59\x8d\xf6\x59\x59\x8e\xc0\xf1\xdc\x83\x81\x1f\x55\x85\x7e\xe6\x43\xeb\xfd\xc6\xeb\x48\x12\x9f\xaf\xde\x91\x4c\xe5\x58\xd4\x24\xee\x8b\x7d\x7b\x62\x4e\xee\x09\xb6\x49\xa7\x81\xd3\x6a\x9d\xe7\x1a\x09\x00\x38\x09\xe3\xb7\x6e\x08\xf8\xe5\x55\xbb\x7f\x6a\xe1\x52\x7a\x79\x85\xaf\x80\x39\x29\xb7\x6c\x53\x75\x3b\xa2\x5b\xea\xdd\x3a\xed\x0e\xd0\x68\x07\xa6\x3d\xcd\x4f\x61\x41\x6b\x1e\x6d\xbc\x6f\x7b\x4c\xf5\x3e\x08\x3e\x8b\x1a\x9c\x5a\xe7\xc4\x9b\x74\x41\xa5\x34\x49\x3b\xdf\x3e\x7a\xe6\xad\x92\x4a\x27\x9e\x76\x3c\xb1\x6e\x22\x8d\xef\x0c\x79\x6a\x85\x65\xbb\x69\x74\x14\xa6\x2d\x83\x17\xe1\xd7\x03\x54\x24\x45\x2e\x30\xf6\x28\xf1\x68\x35\x2d\xfc\x89\x50\x5e\x90\x9d\xa9\x37\xde\x7a\xbc\xb7\xf2\xc3\x61\x7a\x7d\x79\x09\x0e\xd5\x28\xb6\xe8\xca\xaf\x7a\x3c\x0e\x97\x9c\x07\x9d\x6a\x30\x78\x89\x9e\x58\x78\xab\x1a\x3c\x1c\xe0\x89\x3b\x78\x29\xb5\xf1\x05\x03\x2e\xca\xe3\xa6\xfc\xd3\x17\x5b\x8c\x8d\x8d\x64\xc0\xb3\xd1\x9d\xe1\xd5\x50\xb9\x0b\xc1\x0d\x5a\xf1\xf2\xe6\x67\x4c\x34\xa8\x5c\x40\x08\xcc\x32\xf8\x1f\x86\xa9\x9c\x35\xa3\x26\x2f\xac\x23\x39\x9c\xab\x89\x6d\x07\xc2\xe6\x95\x58\x48\xf9\xba\xa7\xb2\xc8\x06\x81\xde\xfa\x4f\x22\x1d\x76\xc1\x0c\xc7\x7a\x5a\xd9\x6d\x7d\x79\x75\x5d\xc9\x3d\x54\x5d\x5e\x22\x6f\xab\x98\x8e\xce\xab\x05\xf2\x87\x7f\xa2\xbf\x47\xf7\x81\x9f\x68\xe8\x57\x8a\xf6\x8e\x8b\x2c\x81\xd6\x97\xf6\x30\x91\x14\x81\xb5\xd8\x0b\xaf\x6e\x93\xa1\x5f\x31\x11\xdb\xa8\x0a\x33\xbc\x87\x69\x25\x55\xa6\x48\x93\x37\x52\x20\xd4\x89\xfc\x11\xc1\x20\x1c\xa3\x0b\xb8\x3b\xb8\x8c\x0f\x83\xb6\x3f\xea\x64\x98\xb7\x0e\xb5\xad\x35\xed\xe1\xc0\xe3\x3b\xca\xe9\x8a\xda\x5b\xa3\xa7\x9a\xd8\x1e\xb2\xd7\x71\x47\x9f\xd5\x37\x9e\x5e\xcd\x17\x6d\xd7\x15\xd3\x59\x45\xab\x6a\xeb\x66\x6c\x4d\xb1\x04\xee\xbd\x04\xb3\xdb\x31\x43\x26\xbb\x0d\x59\x02\x8a\x3d\x77\xfd\x13\xf2\x76\x0b\x6b\x22\x90\x2c\x43\xaf\xfa\xd3\x52\xea\xb1\xba\xb6\x59\x69\x5e\xb7\x5d\x26\x4f\x08\xac\x17\x89\xd5\xf1\xc2\x19\x53\xc9\x43\xe0\xac\xf6\x6f\xea\xb0\x5c\xb0\xbf\x19\x5f\x09\x2a\x4f\x54\x0c\xeb\x22\xac\xc5\x04\x68\x09\x34\x1e\xa7\x42\x4a\x11\x9d\x13\x93\xee\x33\x51\xd2\x1f\xf2\x22\xeb\xf0\xba\x14\xc9\x6b\x15\x5d\xc8\x46\xd7\xf4\x57\x6d\xb4\xd3\x92\x6c\xe8\x12\x0c\xa3\xc5\xdd\x5d\x4e\xa3\xde\xf0\x3d\x67\xfe\xbc\xdb\xed\x06\xaf\xb2\xd5\x96\x1e\x59\x28\xf3\xde\x0f\x85\x34\x7a\xfd\x1f\x0a\xd1\xf6\x4e\xf7\xbe\xf4\x8b\x0d\xd4\x49\xb4\xd2\xb2\x7d\x9b\x73\xe4\x23\x30\xa0\xfa\xf0\x9f\x98\x77\x38\x5b\xe4\xbd\xcb\xb6\xe9\x4e\x3b\xbe\x4d\x38\x50\x0b\x11\xc0\x52\xf4\x5f\x3d\x2a\x51\xad\x46\xe6\x29\xdf\x51\xbe\x66\xfc\x6e\x06\xc8\x28\xbc\xa8\x50\x9a\xb0\xf2\x03\xad\xaa\x9c\xae\x93\xc0\x71\xcb\x3e\x56\x65\xe5\x44\x27\xac\x7c\x4f\x15\xce\x59\x02\x1a\x8d\x3a\xdf\xb0\x3c\xf2\xa5\x29\x35\x3b\xbf\xc2\x5e\x31\xf9\x53\x0f\x69\xa6\x76\x40\xaf\x5d\xb4\xeb\xb6\x19\x40\x6c\xff\x53\x39\xd2\x15\x8d\x76\x52\x4a\xbb\xa5\xa3\x92\x56\xc9\x91\x6b\x6a\x74\xec\xee\xf2\xaf\x21\x8a\x1f\x5a\x5d\x0e\xc6\xd3\x20\x2c\x26\xd5\x96\xf2\xd0\xd6\x6c\xe2\x73\x59\xa9\xbd\xc8\xe9\xfa\x70\xf0\x7e\x32\x7e\x07\xc6\xa5\x58\x73\xc6\xfb\x58\x84\x73\x35\x55\x2e\x4c\x7e\x33\x6a\x56\xbe\xad\x15\xbd\x0f\x44\x30\x1c\xdd\x46\x02\xc2\xec\x6c\xe4\x4f\x71\x82\x1a\x0b\x12\xd6\x48\x0a\x4c\xf9\x8c\xa5\x89\xfc\x37\x41\x78\x95\x55\xab\xad\xfc\x0d\x7f\x24\x08\x6f\x18\xcf\xf2\xfc\x5e\x3e\xd2\x7f\x26\xc7\x1d\x95\xdb\x49\x44\x7f\x5d\xa4\xc1\xde\x43\x66\x7c\x45\x6c\x04\x8b\xcd\x4d\xb8\x5c\x22\x0f\x32\x26\x38\x5d\xb6\x62\xef\x78\x77\xab\xb7\x6e\x12\xdc\xd4\x42\x5b\x67\xf4\x74\xca\xb3\x98\x33\xdc\x43\x83\x19\x79\xd0\x71\x11\xb3\x44\xff\xa1\xab\x80\xef\x12\xac\x06\x41\x85\x7c\xad\xfe\x4a\x70\xcd\xdd\x53\xf7\x77\x02\xca\xde\x64\x9b\x95\x61\x0d\xc5\x5e\xfe\xeb\xbe\x7f\xbb\xf7\x9f\x97\xed\x17\x65\x22\xef\xd1\xb7\xed\x97\x74\x6d\x5f\xeb\x0f\x7f\x28\xc4\xc7\xfb\x3d\xed\x7c\xaf\x9f\xfb\xd5\x74\x8a\xda\xda\x6c\x61\x66\x63\x53\x4c\x8a\xac\xc6\xc6\x91\x15\x2a\xca\x4d\xcc\x8b\x05\x51\x0b\x55\x60\x36\x2f\x16\x8e\x7a\xfa\xd1\x3f\xdd\x68\x18\xb7\x11\x8c\x5c\xd3\x99\xe8\x99\x48\xcd\xfc\x27\xc8\x4d\x3a\x3c\xd5\xd3\x8b\xfc\x79\x17\xa9\x3f\xf3\x08\xb7\x66\x5d\xbe\xdf\x66\xa5\x57\x95\x19\xb1\x7c\x63\x27\xc6\x7b\x6f\x26\x5c\xa4\x89\x9e\xdf\xc8\xc7\x65\xf0\x75\xd9\xfd\xdc\x4c\xb4\xab\xc5\x4c\x70\xa4\x32\xaf\x70\x67\xa9\x12\xa4\x57\x44\xbe\xb5\x6b\x73\xe2\xe4\xf7\x64\x5b\xed\x12\x80\x58\x92\xee\x6f\x4a\x41\xdf\x23\x80\x3f\xf8\x91\x21\xea\x6f\xdf\xc7\xda\x05\x69\xa2\xf4\x04\xe4\x56\xbf\x57\xcf\x64\xe9\x57\xdc\xbe\x9f\x8c\x3d\xc2\x2f\x43\x00\xb1\x5e\xcd\x8e\x56\x07\xc0\xdf\x60\xef\xfe\x5a\x45\x1e\xf5\x38\x86\x07\x65\x02\x1f\x71\x25\x4c\xf2\x8e\x95\x31\xfc\xc2\x9c\x9b\x4e\xc6\x7c\x7e\xe3\x7c\x07\x53\xda\xae\x85\x83\x73\x66\xf0\x58\xc5\xc6\x7c\xad\x74\xa8\x97\x2c\x82\x29\x9a\x71\x79\xaf\x28\xeb\x99\xc2\x44\xeb\x0a\xbc\x1c\xb3\x6e\x20\xd4\x34\x1a\x08\x35\xf5\x03\xa1\xa6\x8b\xd9\x43\x83\x0b\xc2\x34\x0a\x17\xce\x08\x9b\xa8\x59\xc6\xa5\x7d\xaa\x47\x6a\xbd\x68\x88\x71\x1b\xea\xcc\x49\x82\x70\x46\xb2\xc3\xa1\x63\x43\x0e\xfc\x2f\xa9\x07\x23\xc6\x36\xa9\x09\x19\xef\x4c\x20\xf3\x27\x90\x07\x15\x30\x98\x3d\x7e\x6c\xf6\x18\x42\x98\xa3\x19\xf3\x9b\x18\xc1\x2f\x1a\xee\x24\x64\xd9\x92\xe0\xf1\x99\xa7\xa3\x6d\xb4\xae\xc4\x76\xa7\x1c\x8f\xd3\xf2\xf8\xc6\xd0\x40\x30\x5a\xf9\x86\xf0\x79\x7a\x9e\x1d\x0e\xe7\x72\xee\xb4\xfa\xe0\xfc\x4a\x0e\x2c\x03\x6b\xe5\x4d\x4a\x49\x86\x7c\x40\x35\x8a\xe7\x85\xd5\x2d\x94\x08\xcd\x52\x4e\x32\x24\x9f\xa9\xf7\x1c\xcf\xfd\xd7\x08\xf5\xb1\xf6\x9d\xe4\xc2\x03\x51\x6d\xbd\x4c\xbf\xc1\x51\x24\x54\x5e\x10\x77\x91\xb7\xee\x48\xeb\x12\x51\x34\x90\x39\xd5\xe8\x33\x55\x0f\xfe\xae\xc9\x1a\xbe\xdf\xe7\x6c\xa5\xef\xdd\x93\x99\xda\x5d\x12\xf2\xc1\xca\x27\x63\xf3\xa0\x5f\x2b\xca\xd7\x69\x7c\xf2\x22\x19\xcc\x87\x5a\x0c\x7b\x72\x3d\x1f\xcd\x2c\xff\x98\x7c\xdc\xa7\xad\x8c\xe1\xe7\xc7\x0c\x8c\x38\xc3\x65\x24\x74\xaa\x37\xa0\x09\x54\x0d\x3e\xd2\x69\x6b\x32\x1d\x54\x50\x88\x7a\x2a\x7b\xc4\xef\xe8\xfa\xb9\x8b\x25\xac\x54\xbc\x47\x00\x3d\x6a\x74\xe2\xa6\x58\x54\xc2\xcd\x3c\xd5\x79\x07\xa7\x31\x6c\x07\xac\x60\x0d\xd6\xba\xfc\x6e\xad\x8a\x59\x6d\x57\x62\xfb\xe3\x59\xf2\x04\xb8\x12\x98\x88\x6e\x4f\xdd\x05\x1f\x2f\x6f\x5b\x88\x0a\xb6\x0e\xdc\xb1\xae\x57\x34\x13\xeb\xe2\x0b\xd7\xbd\x81\xfd\xd7\x7e\x78\xda\xc4\xe2\xc0\x3c\x29\x38\x36\x65\x31\x1c\x15\x49\x32\xa1\xf8\x83\xf3\xbf\x9c\x99\x4f\x9f\xb5\xd1\x07\xad\xe7\x65\x58\xc4\xb9\x5e\x36\x2e\xc8\xbc\xf5\xf1\x2c\xc7\xd1\x4f\x66\xb9\x9d\x32\xf7\x2c\x50\x52\xf4\x4c\x55\xff\x70\xb5\x8b\x02\xad\xea\x7d\x30\x83\xfe\x93\x6f\x99\xbe\x36\x76\xcd\x7f\xc3\xdc\x2d\x5b\xbb\xf3\xf4\x2e\x6a\x6f\xe7\x0e\x9b\xd2\x19\x58\xf7\x00\x08\x02\x6e\x7b\x5d\xbb\xfe\x6c\xaa\x26\xb3\xf5\x49\x6b\x6c\xda\x24\x89\x85\xbe\x05\xb5\x6a\xb4\x77\x28\x9e\x79\xc1\xed\xf5\x67\x61\x69\x65\x50\x69\x4f\x47\xff\x0e\xf9\x87\x4c\x83\xda\x41\xed\x9e\xc6\x87\xeb\x14\xc2\xde\x68\x63\xf3\x18\x16\xc4\x53\x3d\x89\x58\xb8\x3d\xdb\x6a\xf1\xf4\xde\xed\x8c\xed\x91\x7b\xf8\xf8\x7a\x07\x7b\xf9\xe8\x90\xd4\x9e\xee\x59\xe2\x5f\x32\x8c\xc1\x94\xec\x57\x1d\x49\xff\xe1\xec\x5c\x5f\x3e\x7d\x33\x77\xd1\x69\x0b\x96\x23\x3a\xda\xca\xdb\xba\xed\x00\x2f\x45\xed\xca\xb6\x02\xf0\x1b\x26\xd3\x70\xb7\x7d\x9b\x5e\xee\x3f\xe3\x69\xd3\xbe\x10\x15\x9c\x4e\x3f\xcd\x34\x5c\xb5\xb5\x56\xfb\xd7\x6b\xda\xb2\x70\xb4\x9a\x30\x50\xd7\xc7\xbb\x7f\xde\x75\xa2\xb0\xcd\x7b\xfe\x28\xa5\x51\x7f\xfe\x54\x32\x7e\x37\xd2\x8d\x8d\x0a\x3e\xca\xf8\xc8\x54\x3a\x72\xe9\x7c\x47\x4c\x45\xb5\x67\x79\x5e\x7c\xa1\xeb\x89\xbd\x4f\xf4\x97\x7d\x4e\x6f\xcb\xc7\x38\x0a\x19\x78\xf2\x88\xc3\x90\xed\x6f\xc4\x6b\x2b\x74\x3f\x58\xf6\x38\x11\xf5\x77\xe4\xe4\x9c\x46\x1c\x53\xdc\x9c\x06\x6d\x5b\xe7\x11\x59\xf7\x59\xef\x74\x9b\x62\x8f\x99\xef\xb8\x1b\x94\xf0\x22\x95\x71\x8e\x57\x67\x31\x57\x35\xe5\xe3\xd1\xf5\xb0\x70\xec\x63\x77\xcf\x76\xef\x81\x82\xcc\x17\xd8\xc3\xa3\x3c\xe5\xe3\x75\x7c\xc9\x82\x48\x41\x61\xcc\x49\x39\xa1\xd7\xf9\x53\x7a\x21\xae\xf3\x8b\x0b\x54\xe8\xa8\x5b\x1b\x0f\xd5\xe2\x61\x19\xce\x11\x52\x55\x15\x2d\xdf\xf0\x20\x22\xf7\x92\x36\xda\x52\xd5\x67\xd8\x5d\x91\xe9\xf5\xea\xa9\x81\xe5\xbc\x5e\x5d\x5c\xa0\x70\x33\x15\xf3\xd5\x02\x5f\xe1\x1a\x5d\xf7\x5b\x76\x9b\xc0\xe1\x64\x80\x27\xda\xb2\xd7\x15\xad\x7d\x12\x06\xb8\xa4\x15\x51\x97\x34\x0d\xe6\x08\x1b\x0b\xfd\x23\x5c\xd2\x96\x8f\xf1\x49\xfb\xc7\x38\x24\x2d\xa3\x1e\x49\xc3\xbc\xc1\x96\xdf\xea\x0e\xb6\x8c\xfa\x83\x01\x86\x67\xf7\x86\x0f\x5d\xba\x1c\x2c\x2b\x14\x8f\x29\xfd\xdb\xf7\x6a\x5b\xaa\xe8\x9a\x0d\x2d\xa3\xd5\x05\x5c\x54\xe1\xc4\x3d\x95\xf6\xc0\xb3\xc5\xeb\xf4\x98\x36\x5d\xe5\xa3\xfd\xa4\x71\x4c\x4c\xc1\xc7\xf8\xcc\x13\x28\x4b\x7d\x9c\x74\x9b\xd3\x76\xf5\xf5\x68\x85\x94\x1a\x62\x55\x08\xba\x34\xba\x88\xc7\xe1\xb4\x9c\xc8\x0b\xd1\x93\x2a\xeb\x31\x2a\x69\x7d\x15\x9c\xd1\xc9\xbb\xb7\x1f\x3e\x2e\x7f\x7c\xf3\xe3\x47\x13\x9f\xa4\xa2\x7f\xc5\x44\xd4\x7c\x52\xae\xb6\x74\x5d\xe7\x14\x67\x56\x75\xbd\x84\xc5\xc0\xa5\x7d\xb0\x61\x9c\x95\xdb\x77\x99\xa8\x58\x96\xe3\xda\x3e\x77\x69\x63\x04\x2d\xf6\x94\x4b\x92\xed\xb5\x16\xc2\x23\xdb\xe7\x89\x07\x2c\xb9\xb2\xdb\xfe\xfc\x2a\x1a\x77\xe2\x2d\xa1\xfd\xa8\x48\xd1\x03\x3d\x1c\x0a\x9b\x42\x2b\xa6\xbd\x4d\x39\x99\xfb\xba\xda\x85\xc5\xd1\x8a\xe0\x28\xa6\xd5\xe4\x4f\x3f\xfd\xf8\x62\xf9\xaf\x2f\xff\x7d\xf9\xee\xfd\xdb\x77\x2f\xdf\x7f\xfc\x77\x45\x56\x32\x85\x7c\x8e\xf7\x78\x8b\xd7\x78\x87\x3f\xe3\x7b\x7c\x87\x6f\xf1\x12\x7f\x21\x6d\xb8\x4b\xfc\x95\x7c\x51\x7d\x92\x37\xaf\xfe\x13\xce\x33\x66\xe3\x71\xfa\xc5\x40\x63\x01\xf6\x89\x0e\x85\xd7\xa8\xf0\xdc\x80\xa4\xe8\x58\x78\xa5\x9a\xa4\x3c\xab\xfc\x5c\x18\x78\xa5\xde\xb6\x73\x64\xe0\x0d\xa9\xc7\xe3\xda\x8e\x1e\xef\xc9\x6a\x3c\x5e\xb9\xdf\x5b\x32\xbd\xde\x3e\xcd\xcc\x95\xb6\x55\x61\x50\x6b\x92\xcd\xb7\x0b\xe8\xc1\xce\x44\x28\x7d\xa2\xf7\x65\xba\x46\xf8\x33\x99\x5e\x7f\x7e\xba\x33\x5f\x7c\xbe\xb8\x40\x77\x64\x3d\xbf\x27\xbb\xf9\xe7\xc5\x02\x6b\xe3\x85\xbc\x5b\xbe\x67\x60\xee\x47\xe9\x3d\x1a\x8f\xbf\x40\x06\x1d\xaa\x9f\x95\xe9\x3d\xbe\x43\x78\x49\x54\x44\x36\x49\x6f\xa1\xff\xf3\xfb\x05\x1a\x8f\x13\x7d\x70\x2c\x67\x72\x3b\x1e\xdf\x2a\x3b\xb3\x36\x89\xe0\x8d\x1c\x94\xb9\xef\xef\xd1\x77\x97\x57\xe3\x71\x7a\x47\x6e\x15\x37\xbe\xcb\x3e\x51\x7d\x97\xdd\x22\xa3\xcc\xbd\x43\xb3\xf6\xcb\x3b\x84\xf0\x5e\x4e\x47\xb7\x26\xa5\x40\x2b\x4b\x76\xc7\x51\xfa\xd0\xe0\x5b\x2c\x0b\x2f\x6f\x6e\x27\x25\x55\xc0\x50\x72\xb9\xd1\xcc\x05\xc8\x9f\xdb\x90\x3c\xc0\x6c\xec\x24\xa4\x39\x1c\xee\x4d\x62\xac\x1b\x3d\x56\x72\x37\xeb\x29\x0c\xd3\x73\xa6\x91\x7c\xbf\xe8\x0d\x2a\xa9\xe4\x11\x72\x38\xcf\x17\x29\xc2\x66\x73\x7d\x55\x2b\xa1\x0e\xe8\xf3\x6d\xc6\x78\x89\xd2\x2f\x7d\xd1\x7d\xb2\xea\xc4\x08\xcf\xe1\x3f\x5f\x2c\xc7\x52\x40\x98\xf1\x7b\x38\xd0\xfe\xf1\x93\x72\x65\x31\x79\x67\x8e\x3c\x50\x80\xb6\xb5\xab\xfd\x1e\x21\x2c\x4f\x76\x83\x0b\x79\x79\x32\xcf\x5f\x20\x50\x6e\x73\x42\x6d\x91\x1f\xf4\x19\x09\x78\x00\xf5\x5e\x0d\xb9\x6d\x6c\x27\xc5\x04\xae\x90\x55\x9e\x95\x2e\x56\x70\x3c\xae\x2c\x79\xa0\x87\x43\x4a\x15\xd4\x7a\xd8\x3d\x35\xcd\x9a\xae\xa5\x85\xa3\x67\xc8\xb9\xae\xa9\x07\x0d\x2e\x9a\xd4\xcb\x2b\x56\x15\x4a\x7f\x1f\x21\x85\xe6\x15\x2e\x00\x05\x6a\x43\x56\x29\x3a\xdb\xb8\x2f\x3a\x0a\x7f\xe5\x19\x31\x79\x0e\x4a\x2b\x65\x6f\xc6\x9b\x13\x13\x9d\xa6\x9c\x3c\x28\xa2\xdb\x35\x68\x55\x58\xf4\x79\x70\x56\xce\x83\x53\x90\xe9\xb5\x78\x4a\xaf\x85\xe4\x6f\xe7\xc2\xf7\xe0\x14\xd6\x83\x33\xd3\xa8\x96\x5e\x2c\x5a\xfb\x16\x6f\x1a\x34\xcf\x17\xfe\xb0\x1a\xcc\xe3\x64\x76\x40\x3a\xa2\xff\x87\xba\xb7\x6f\x6f\x1b\x47\xf2\x45\xff\xf7\xa7\x90\xb8\xb3\x6a\x62\x05\xcb\x72\x4f\xef\xee\x39\x4c\xd0\xba\x6e\xc7\x3d\x9d\xa7\x93\x38\x63\x3b\x33\x67\x8e\xa2\xd5\xd2\x22\x64\x61\x42\x91\x5a\x10\xb4\xe3\xb6\xf4\xdd\xef\x83\xc2\x3b\x49\xc9\x4e\xef\xec\xf3\xdc\xfb\x8f\x4d\xe1\xfd\xb5\x50\x05\x54\xfd\x4a\x29\x5a\x01\x88\x2d\xf6\x31\x6c\x91\x2c\xb4\x9b\x2a\x2a\xc2\x59\xb4\xa8\xa2\x09\xf7\x34\x59\x48\xfb\xd1\x75\x9f\xe3\xa2\x16\x96\xec\x88\x55\xd7\x80\xe6\x68\x4b\x8b\x5b\xba\x40\xe8\x49\xd6\xa9\x40\x21\x0c\x7d\xb3\x14\x83\x5a\x3d\x1a\x5d\xfb\x6e\x87\xfc\xe6\xc9\xc5\xf1\x0f\x6c\x1f\x2b\xee\xfe\x31\x0d\xd4\x60\x92\x9d\x9e\xe0\xda\x88\xbb\x52\xfc\xa0\x9d\x6d\x71\x4f\x85\x15\x15\xed\x68\x5c\xc6\xd6\xd3\x93\x46\xe7\x95\x5b\xd0\xe3\xe7\x20\x89\x81\xb6\xf4\x92\xcc\x0d\x0f\x93\xe9\x84\x9e\x0e\xab\x9f\xbf\xb5\x46\x9b\xf9\x82\xf5\xd9\xea\x84\x9c\xf0\xed\x36\xd6\x53\x94\x53\x41\xbd\x7e\xe3\x76\xaf\x64\x7a\x58\xb6\xb7\xac\xc8\xba\xc1\xd8\x03\xf7\x94\x7c\xa4\x8f\xcd\xed\x36\x16\xc4\xfe\x1a\x2d\x79\xb9\x8e\x85\x24\x49\x23\x51\xc6\x14\x8e\xba\xc2\x02\x17\x62\x21\xab\xe8\xa2\x2e\x6a\x92\x3a\xb0\x5d\xb4\x84\xa1\x72\x5c\x7c\x15\xb4\xa8\x58\x59\x4c\xa2\x24\x1a\x76\x47\xc5\x28\x89\x22\xf3\x52\xff\x3a\x1a\x42\xcd\x53\x31\xfa\x70\xf6\xfe\x42\xf2\x4c\x33\x83\x84\xd1\x58\x91\x9a\xdf\xd1\x16\x14\x0b\xe7\xd3\xd1\x56\x11\x23\x34\x94\xf5\x86\x56\xce\x90\x7b\x48\x87\xd1\x8f\xd1\x0e\x1e\xf2\x9b\xe4\x50\x01\xc2\x7a\x4e\x22\xc9\x12\x2f\x47\x73\x25\x4b\xcc\x15\xbf\x61\x7c\x74\xc4\x8c\x3c\x9d\xcb\xb3\x41\x39\xd3\xe2\xa3\xab\x8b\x3f\x7f\x7a\x7b\x75\xf1\x06\x87\x65\xfa\x31\xac\x82\x1c\x49\x7f\x8c\x99\xc6\x52\x03\xbd\x3c\xbf\xcf\x1a\xd4\x6e\xea\x58\x47\x13\xa4\x9f\xf1\xda\x73\xb1\x88\x9d\x71\xb5\x13\xec\x5c\xe3\x5a\xd6\x1b\x72\xd8\x5c\xb4\x5c\x64\x87\x8f\x05\xc8\xd0\x38\x82\xb1\x5f\x43\x7b\xe0\x68\xab\xd0\xae\x34\xb5\x11\x3c\x1b\x69\x7d\xee\x84\x7a\xe7\x30\xd1\x74\xdc\x4d\x49\x78\x9e\xe2\xb8\x20\x9e\xe7\xb9\x86\x7d\x7c\x98\x16\x21\x7f\xe9\x10\x8a\xb5\xa0\x5f\x50\x9e\x0a\xfa\xa7\x9a\x65\x28\x36\x80\x21\x8a\x1b\x2f\x8c\xd7\xbf\x22\xec\xbc\xee\x03\x88\xee\x4c\x57\xd6\x9a\xa5\x7f\xe4\xf1\x29\x3c\x81\xc4\x5c\x21\xf8\x5c\x50\x2c\x10\x06\xe7\xc2\xea\x64\xd5\x62\x54\x97\x4e\x80\x21\x85\x8a\x2f\x8b\x91\x9d\x91\x8e\x29\x6f\xb2\x8c\xae\x64\x18\x8b\x8e\xe2\x83\xc2\xdc\x80\xf9\x05\xa5\x0d\x6e\x14\xf7\x4f\x5d\xe9\x4a\x12\x68\x7a\xac\xe9\xe0\x9a\x8d\x0d\x5b\xff\x14\x86\xf8\x15\x7d\xa5\xae\x7f\x43\xff\x8c\xfd\xf1\x11\x25\xfe\x72\xda\x99\x5c\xae\xb2\xb7\x9a\x70\x76\xba\xe9\xf1\xc9\xaa\x69\xa3\x5c\x1a\x3f\x97\xdc\x70\x1a\x7b\xdc\xe0\x18\xa6\x71\x4a\xbd\x49\x9c\xcb\xbc\xdb\xed\xd3\x4e\x96\x33\x37\x0f\x0a\x1e\xa7\xb1\x1f\x21\x46\x39\x0c\x58\xa5\x95\xf2\x71\x7a\xde\xca\x8b\x62\xe3\x9b\xd4\xaf\x1e\x0b\x23\x02\x17\xbe\x7b\x68\x26\x65\x0b\x8a\x8c\x38\x25\x08\x9d\xb2\x4e\x59\x0a\xf8\x5f\xff\x28\x1f\x0c\x34\x32\xc4\x93\x64\xad\x12\x86\x65\x97\x12\xdd\xb5\x9d\xe7\xa5\x25\x54\xb3\x1e\xd1\x74\xb1\x6a\x34\xfa\x71\x8f\xbf\x14\x2b\xb3\x3f\xed\x3a\x30\x32\x3b\x86\x2d\xf2\x61\x24\xac\x70\xaa\xb0\x31\xd3\x69\x31\xb3\x48\x98\xea\x00\xc1\x4c\xb1\x85\x6a\x2a\xb7\xdb\x12\xed\x30\xeb\x70\xb4\xb4\x41\x47\xab\xee\x03\xc2\xa3\xb4\x2b\xbc\xd2\x6b\x1e\xbc\x88\x59\x27\xd4\x07\x6e\x7b\xf2\xf4\xb7\xc7\x79\x5e\xa6\x9d\x68\x13\xbe\x1e\xe1\x33\x3a\x34\x50\x06\xcd\x1c\xb2\x40\x59\xbc\x2b\xd3\x26\x87\xa0\x5e\x8f\x0a\x58\x87\x53\x3a\x23\x1c\x3c\x50\x4e\x67\xe0\xa4\xdc\x80\x80\x61\x36\x18\x88\x98\xa1\x1d\xa6\x23\x5e\x43\x31\xbf\x94\xe5\x97\xaa\xd3\xbd\xb9\xf1\xe6\x46\xc4\xc8\x6b\xed\xe8\x81\x15\x59\xf9\x70\x94\x76\x7a\xda\x3e\xaf\x2b\x51\xae\x41\x88\x94\xe2\x1f\xb8\x11\xf1\xc2\x62\x8a\x9f\x32\x2a\x52\x96\x27\x0c\xc3\xc2\xa2\x3b\x84\xd3\x51\xc6\xaa\x4d\x2a\x16\x2b\x95\xa8\x44\x08\x5a\x3d\x18\x40\xdb\x0f\x98\x0b\xd2\x18\x70\x0c\xad\x6b\xd0\x8b\x0f\x7f\x19\x29\xb7\x5a\xef\x2e\xcf\xde\xcc\x7f\xb9\xbc\xfc\xf5\x5a\xee\x43\x5c\x90\xa7\x9d\x37\x94\xc5\x81\x69\x73\xba\x4d\xdf\x78\x45\xd7\xa5\x1a\xda\xad\x87\xf4\x02\xcf\x96\xc0\x4d\xd2\x94\x2f\x56\x6f\x58\x25\x65\xa1\xac\x83\x0c\x97\x3b\xcd\x46\xee\x49\x48\xd1\x53\x49\xfa\x7d\xba\xd3\x37\x78\xfd\x53\xd0\x39\x6c\x68\x0f\x3d\xb1\xea\x83\xe9\x33\x70\x30\x0d\x81\x2d\x05\x1e\xe6\xfa\xe3\xd9\xf9\xc5\xb5\x5e\x48\xc0\x48\xa6\xa3\x8f\x57\x97\xe7\x17\xd7\xd7\x17\x6f\x40\x66\x37\x3c\x5a\xe7\x23\x74\xb0\xb7\xe5\x10\x5b\x64\x2b\x2f\x7c\x5d\x4a\xee\xfa\x23\xa7\x4b\xf6\xd5\x7b\x4c\xdd\x6e\xe3\xa5\xbe\x72\xf5\x19\x2a\xc9\x2b\xa7\x6b\x0a\x9b\x34\x34\xa3\xcb\xe3\x69\xc0\x98\xc6\x68\xa6\xdf\xb1\x77\x60\xb3\xd4\xba\xed\xd5\x08\x42\x5e\x47\x0d\x2a\xb2\x2b\xe2\x48\xae\xe8\xa2\xa1\xf8\x38\x15\x33\xb3\x2f\xb5\x1f\x55\xbf\x90\xf9\x4f\x7f\x9b\xbf\x7d\x33\x15\x33\x60\x76\x36\xe0\x0a\xdd\x03\xe8\x83\x51\x3c\xb5\x17\xd4\x07\xf0\x3f\x76\xe8\x28\xf5\x8f\xe4\xf8\xc9\x55\x92\x4c\x2d\x9e\xc3\x0c\x37\xeb\x4e\x9e\x94\x19\x85\x4d\xb2\xc3\x76\xd2\xb4\xe9\xcb\x82\x56\xd5\x59\x9e\x27\x19\xbe\x7d\x6c\xb8\x35\x70\x0b\x6d\xbb\xcd\x62\x84\xab\x29\x9d\xc9\xb6\x80\xff\x16\xd2\xee\x29\xae\xc9\xd3\x6e\xb4\x4a\xab\x4b\x77\x67\xe5\x2b\xb4\xf9\x0f\xdd\xb8\xb4\x6f\x34\xf6\xb8\x02\x74\xa2\x6a\x4a\x47\x7f\x2f\x59\x11\x47\xa3\x08\xcd\x08\xc7\x1c\xb1\x65\x5c\x2b\xd2\xce\x71\x8a\xe4\x4f\x46\xf8\x34\x9d\x61\x3a\x2d\x67\x24\x95\x54\x8d\x39\x91\x06\xfc\x27\xf6\x59\xb0\x54\x82\x5f\xc4\xab\x40\x39\x8f\x94\x25\xca\x32\xbc\x9d\xa0\x9e\x3d\xa7\xa1\xa0\xc1\xd0\x0c\xc9\x05\xc0\x8a\x9a\x1e\x75\x44\x92\xfe\x18\xcb\x6e\x32\x5c\xa0\x9d\xe9\x1e\x29\x1b\x4e\x4c\xb5\x11\xc5\x91\xe0\x8f\x46\x3e\xe7\x04\x8c\x88\x07\x03\xee\xb7\x61\x30\xe0\x3b\x30\x66\x91\x53\xb1\xf3\xb1\xc9\xd5\xb3\x9d\xb7\x03\x9d\x35\x2e\xc3\x25\xae\x48\x73\xa1\xe2\x3a\xb8\xb1\xd5\xae\x6e\x28\x19\xbf\xa2\xaf\xcd\x45\xf0\x2b\x3a\x1c\x22\x4e\xea\x29\x9d\xe1\xb8\x24\x7c\xb4\x58\xa5\xfc\xbc\xcc\x14\x0a\x02\xfa\x91\xfc\xdb\xbf\x0e\x06\xe5\x6b\xf2\xbf\xc7\xe0\xf1\x73\x11\x57\x98\x83\x6a\x70\x38\xba\xdc\xb7\x4e\xd9\x58\xe8\x21\xcf\x19\x68\xbf\x84\xf6\xcb\x25\x05\x1d\xf7\x26\xca\x98\x45\x1c\x71\x12\x3b\x8f\x64\x3d\x1a\x73\xe7\xb0\xce\xbb\xbe\x93\x73\x64\xf1\x1d\xfc\x82\x26\xc1\xaf\x84\xc6\x05\xda\xc5\x14\xa1\x49\x14\x57\xf5\x2d\x64\xee\x95\xcb\x5e\x34\xe4\xc3\x08\x45\x09\x37\xb7\x99\x7c\xbb\x8d\x62\xed\x8e\xbc\x07\x8f\x2d\x28\x72\xbd\x59\x05\xaf\x6e\x7e\x0d\x3e\xb1\x6a\xc6\x91\x8d\xda\xeb\x1e\x02\x7d\xe6\x49\x0f\x92\x17\xf2\xa7\xd2\x60\x2d\xae\xd2\xea\x53\xa1\x37\x28\xcd\x80\x0d\x01\xee\x4f\x2d\x56\x20\x89\x01\x09\x1e\x23\xcc\x24\x97\xf3\xa4\x85\x91\x90\x9a\x59\xf6\x10\xec\xb0\x7d\xe6\x29\x8f\xa7\xc0\x19\x16\x33\x14\x52\x4c\x49\x2e\x5f\x29\x56\x35\xa7\x29\xef\x6a\xcc\x6e\xb7\xff\x42\x93\xac\x3c\x46\x29\x3d\x78\xe2\x7a\x10\xff\xcf\x2a\xfc\x1e\x3a\x66\xbf\x05\x36\xe8\x60\x22\xdf\x0a\xff\x39\xa7\x16\xdf\xe6\xbb\xa2\x6d\xbf\xb9\x79\x3c\xa0\x26\x8c\x6b\x9c\x77\x3c\xd4\x2d\x8e\xe8\xe8\x03\x0c\x9b\xf2\x3d\x4a\x47\x67\xfe\x63\xdd\xb2\x69\x4a\xe4\x34\x84\xed\x53\xbf\x64\xbb\x8c\xd6\x70\x37\x16\x40\x07\x1a\x21\x2c\x6d\x3a\x4b\xbc\x23\x2b\x56\x46\xb2\x7b\xf5\xb1\x7a\x3a\x4f\x87\x56\x12\x90\x2b\x03\x2e\xcc\x3c\x9d\x29\x16\x28\x0a\xda\x3b\xcc\x62\xcf\x23\xb4\x67\x98\x5d\x22\x3c\x26\x84\x94\x13\xf5\x84\xa2\xcf\x5c\xcc\xf5\x33\x8f\x6e\x82\x97\x41\x79\xfa\x2d\xba\x9f\xa2\xc3\x82\xcd\xdb\x7f\xf0\x26\xd3\x89\x15\xbf\xc7\xaf\xaf\x30\x46\x22\x56\x6d\x45\x8f\x0d\x11\x60\xf3\xa8\x39\x83\x44\x61\x01\xb9\x1d\xa5\xc3\xb1\xe7\x83\xb2\x95\xc6\x8b\xc3\x8b\xc0\xa9\x89\xc7\x2e\xab\x51\xe9\x76\xd8\x1a\x8f\x71\xee\x90\x0b\x29\xf8\xf0\x46\xfa\x25\x0a\x46\x11\x6c\x2e\x37\x64\x6a\xa6\x66\x76\xb4\x54\x87\x09\xea\x64\xd1\x1b\x0d\x04\x7e\x7e\x63\x9c\x6d\x00\xcc\x98\xbf\x80\x97\x24\x5e\x90\x25\x1a\x69\x00\x66\xcd\x07\x2d\xf0\x46\x71\x1b\x2b\x3b\xa4\x8a\xc7\xff\x3f\x37\x17\x1f\xde\xcc\x3f\x5e\x5d\xde\x5c\xde\xfc\xed\xe3\xc5\xf5\x08\x4a\x99\x58\xb4\xee\x46\xe5\xb2\xb6\x33\xb2\xea\x94\xfd\xa5\x90\xb4\x43\xc9\xa1\x04\x31\x25\xd3\x19\x72\x68\x59\x4e\x4b\x66\x42\x93\xa5\xbd\x26\xda\x61\x67\xe6\x70\x06\xd4\x4f\xfd\x0d\xfa\xf9\x42\xe1\xf1\xbf\xa7\x25\xd0\xa5\x6f\xf0\x62\x42\xb7\xdf\x72\xa1\xd3\xfb\x3e\x1d\xfd\xcc\xd3\x35\x7d\x28\xf9\x17\x6d\x2c\xe6\x11\xa2\xb4\xf1\xa8\x7f\xf9\x97\x8b\xab\xab\xb7\x6f\x2e\xe6\xe7\x97\x1f\x6e\xce\xde\x7e\xb8\xb8\x92\x27\x24\x78\xc2\xd8\x93\xf0\xf2\xaf\x1f\x2e\xae\x22\x84\xeb\x43\x66\x0f\xe0\x21\x79\x0e\x0d\x3f\x37\xae\xa5\x7e\xa5\x8f\x1d\x36\x73\x07\x6d\xe4\x98\x62\xca\xa7\xe9\xcc\x57\x1b\x9a\xa6\xb3\xa3\xfd\x0f\x18\xe6\xd2\xda\x32\x00\x83\x01\x1d\x2d\xeb\x3c\x97\x5c\x1c\xa8\x83\x4c\xc5\x08\x3a\x31\xeb\x78\xad\x79\x51\x73\xaa\xb0\x39\xd5\x37\x37\x07\x2e\x37\xba\xed\xfc\xa6\xd5\x4c\x19\xf7\x95\x08\x1d\xd5\xcf\xbf\x3a\xda\x17\xc7\xf6\xb4\xd7\xde\xd2\xae\x9f\x5d\xda\xfb\xed\x7b\xbe\xc9\x76\xe7\x58\x15\xf3\x62\x73\xcb\x96\x21\x92\x95\x8c\x0e\x29\xee\x80\x8f\xc2\xee\x1b\x81\x97\xb5\x56\x2b\xe4\x1c\x6e\xa6\xe6\xb5\xe0\xc4\xb6\xce\xeb\x7e\xa1\xf9\x06\xd4\xf1\x4d\x1b\x90\x06\x51\x6b\x9b\x54\x1d\x15\xa1\x8c\xc8\xaa\x6b\x95\x47\xbf\x91\x2b\xdb\x7a\xcf\x8e\xe8\x50\x8f\x95\x79\xe0\x37\x82\x52\x74\x1b\x61\xed\x31\xcd\x6a\x58\xca\xbd\x10\x8b\x71\x91\x6e\x98\x48\x73\xf6\x1b\x25\x74\x54\x17\x19\xe5\x95\x24\x73\x84\x8e\x80\xa9\x67\xcb\x47\x70\x02\xb1\xa6\x3a\x49\x96\x56\x2b\xca\xf5\x37\xf5\x22\x1e\xa4\xfc\x59\x2e\x08\x1d\x2d\xd7\x0d\x9a\x75\x32\xed\xcd\x67\x27\x77\x52\x8c\xa2\x0f\x3d\x31\x52\xee\xfa\x4f\xe9\x1f\x71\xc7\xf9\x70\x1e\x53\x67\xb2\x94\xe2\xe8\x18\x40\xb8\x6b\x72\x12\x7f\x3e\xde\x7e\x9e\x6f\x3f\x8f\xb6\x9f\x2b\x34\x8c\x47\x68\x72\x72\x87\x73\x72\x12\xff\xc7\xf6\xf3\x09\x8a\xa7\x67\xc7\xff\x77\x86\x4e\xee\xf0\xe2\x25\xb5\x38\x98\xc7\xba\xb5\x86\x8c\xe8\x32\xe1\x23\x51\x7e\xda\x6c\x28\x3f\x4f\x2b\x0a\x8f\x70\x3b\xd7\xb4\xbc\xbb\x58\x51\xbe\x2b\x1f\x4c\x0e\xd0\x5e\x5b\x92\x93\xff\x90\x6d\x9f\xeb\x46\xe3\x0d\x39\x89\x47\xa8\xb3\x3b\x2b\xdd\x9d\xed\xe7\x11\x8a\xa7\xe9\xf1\x6f\xd0\xa3\xec\x60\x8f\xb4\xf7\x89\x7d\xce\x96\xf9\x24\x9a\x47\xc3\x8e\xae\xe0\x82\xb4\xd5\x08\x0d\x61\x1c\xc6\xc5\xa4\x68\xe5\x41\x3b\xcc\x88\xba\x7a\x11\x71\x74\xa2\x2f\x90\x05\x19\xbf\x12\xaf\x99\x91\x81\xc4\x70\x88\xd8\x54\xcc\x88\xfc\x63\x87\x6b\x89\xb9\x1b\xbb\x0d\x76\x90\x70\x4c\x5f\x1e\x9c\x78\x96\x6a\xab\x7d\x63\xeb\x35\x07\xc6\x76\x4d\x4e\x60\x98\x3e\x67\x33\xbd\x02\x86\x72\xc0\xee\xc9\x89\x1c\xdd\x6a\x78\x72\x87\x1f\xbf\x6d\x39\xac\x71\xf4\x87\xd3\xf9\x1f\xbe\xf7\x5a\x73\x8f\xa3\x79\x84\x9a\x33\x8b\xef\xdc\xd2\x93\x2d\xa8\xc7\xe3\xf3\xf1\xf1\xe7\x7a\xfc\xfd\x0f\x3f\xc3\xac\xdd\x7e\x5b\xc5\x77\x2f\xed\xf3\xbc\xd5\x67\x59\xdb\xc3\xb7\xd5\x36\x77\xdd\x6c\xf4\xcb\x5d\x30\x7d\xf5\x58\x70\x5c\x12\x01\x57\x0d\x00\xc8\x6d\x95\x98\x4b\xb4\xdd\xb6\xb4\xff\xbe\x47\x0a\xfa\x5b\x36\x48\xbd\xd7\x35\x93\x1c\x9f\x22\xcc\xc9\xe9\x2b\xfe\xba\x19\x03\xef\x79\xe5\x94\x87\xd0\xc8\x7c\xa6\x29\x89\xf7\x6c\x6b\x7a\x72\xf2\xcf\xff\x4f\x3c\x1d\x1f\xff\xef\xd9\x10\x76\x50\xf7\x3b\x3f\x11\x13\x00\x60\x7a\x5b\x88\x58\xe0\xd3\x31\x3a\x3e\x4d\xd2\xe1\x10\x6b\x6d\x8c\x98\x92\x72\x2a\x66\x68\x12\x29\x6c\xf0\x28\xb1\x72\x05\x9d\x44\x91\x82\xc7\x61\x45\xb5\xa1\x0b\xc9\xcb\xcb\x79\xb0\xa3\x74\xe1\xee\x8f\xbf\x86\x08\x6b\xde\x85\xa3\x4d\x7d\xe9\xb7\xab\x39\x9a\xa2\x7b\x34\x01\x35\xbe\x29\x9f\x28\x75\x64\xb8\xc4\x73\x6f\x82\xa7\x08\xe1\xaf\xca\x2e\xbf\xd4\xd6\x32\x68\xbb\x05\x34\x56\xdb\x82\xeb\x60\x3d\xa8\xad\x7c\x22\xb7\x8a\x97\xe6\xdc\x4b\xf3\x20\x0b\x92\x7d\xb6\xb1\x67\x5e\x6c\xd5\x8a\xfd\xe2\xc5\x2e\x5a\xb1\xef\xbd\xd8\xac\x15\xfb\xd1\x8b\x7d\x6c\xc5\xde\x78\xb1\xb7\x26\xd6\x1d\xbf\x4f\xcb\xb5\x48\x2e\x70\x5e\x2e\x92\x4b\xfc\x90\x5c\x63\x77\x3c\x25\xe7\xd8\x9e\x5b\xc9\x19\xb6\xc1\x5f\xb0\x39\xe4\x92\xf7\xd8\x1d\x7e\xc9\x47\xec\x8e\xc5\xe4\x46\x32\x67\xf2\x4c\xbb\xc0\xea\x84\xbb\xc4\xf2\xb4\xbb\xc6\xc1\x01\x78\x8e\xfd\xb3\xf1\x0c\x7b\x87\xe6\x17\xec\x1d\xa6\xef\x71\x70\xcc\x7e\xc4\xc1\x11\x7c\xb3\x43\x47\x2d\x16\x42\x9f\xf7\xcf\xa2\x57\x76\xdf\xc0\x1c\x7e\x2a\xe9\x78\x26\xd1\x82\x55\xc3\xa4\x01\x94\x93\x2a\x2a\xde\x16\x42\x0a\x38\xb9\x7b\x48\x66\xcb\xb8\x05\xb6\x6b\xdf\x91\x25\xcf\xdd\x16\xf3\x5c\xbc\x92\xef\xcb\x98\xc2\x3d\x5c\xa4\xba\x20\xc5\xf9\x30\x49\xe1\x2e\xb7\xf7\xdc\xa5\x14\x83\x41\x01\x30\xce\xee\x2d\x96\x00\x18\x8c\x8c\xbf\x5c\x92\x52\x97\xf3\x14\x4d\x35\xf2\xf6\x4f\x65\x99\xd3\xb4\x98\x45\x49\x74\xab\x3e\x23\x6c\x23\x3f\x40\xf1\x32\x4e\x57\xe4\xa2\x14\x47\x2f\xa3\x0c\x53\x67\xa3\x7e\xd6\x83\x26\x23\xed\x63\x9e\x8b\x86\xe1\x91\x71\x66\xa6\x4c\xc4\x9b\x54\x50\x19\x9e\xa5\x82\x7a\xc1\x57\xf4\xee\xe2\xeb\x46\x46\x70\x7a\x47\xbf\x6e\xbc\x28\x25\x23\xc8\x28\xcb\x21\xdb\x46\xb0\x1c\x80\xe0\xa1\x11\x2c\xa7\x39\xab\xa4\x80\x61\x9d\x20\xb4\x6f\x16\x8f\x3c\xd5\x6e\x7d\x51\xaf\xb5\xd4\x90\x1d\xed\x3c\x8f\xe4\x0c\x39\xba\x68\xa2\xe4\x62\x5e\xb2\x82\x66\x91\xc6\x45\x28\xa6\x4c\xd1\x25\x8a\x66\x4e\xcb\xcd\xcc\x9b\xf7\xc6\x49\xc4\x84\x77\x19\xca\xc4\x82\x44\xb0\x5f\x22\x94\x78\xb3\x29\x06\x83\x38\xd0\x2c\x00\x83\x99\x89\x20\x11\x95\x1f\x51\x42\x43\x6d\x2e\x5d\xb2\x4c\x60\xc2\x1b\x69\xe4\xb0\xab\xea\x60\xe0\x91\xf2\xc9\xe9\x78\xf8\xd6\xc6\x3b\x00\x39\x61\x87\x50\x38\x85\x86\x27\x07\x5c\xc4\x41\x2b\x59\xf9\x76\x17\x88\x2d\x63\xee\x23\x0a\x73\x7b\xac\xed\xd4\x86\xf0\xdc\xbd\x3a\x91\x71\x38\xe4\x3b\xf5\x2c\x3d\x9d\x99\x67\x7e\x11\x47\xf3\x39\xb4\x36\x1a\xf6\x86\xf2\xc4\x95\x9d\x92\xf2\xff\xd3\x03\x67\xc2\x40\xd9\x1c\x86\xb6\xb9\x4f\xf3\x5a\x3b\x2b\xc7\x35\x51\x1a\x0a\x29\x76\x82\x75\xd2\x82\xc6\xf1\xcb\xde\x5b\xd6\x2e\x78\xab\xb2\x6e\x2f\x7e\xa7\xd3\x6b\x35\x27\x11\x1a\x16\x4e\x11\xd8\x66\xa3\x83\x81\x56\xca\x90\x13\x6a\x56\xef\x34\x9d\x4d\xe4\x1f\x22\x92\xb8\x1a\x41\xcb\x88\x00\xad\xa8\x0e\xe5\xd8\xc9\x9e\xf0\xb8\x46\x49\xb7\xae\x2c\x05\xdc\x09\x58\x35\xfe\x83\x94\xe3\x3a\xe4\xdc\x44\x43\x3a\x8c\xd3\xe1\xfb\x54\xac\x46\xcb\xbc\x2c\x79\x0c\x9f\x3c\x2d\xb2\x72\x1d\xa3\x7f\xb1\x53\x86\x86\x32\x35\xb2\x4a\xcb\x91\xbe\xa9\x39\x6a\xbf\xfd\x58\x69\x4e\xb3\xdf\xa7\xaf\x44\x9b\x91\x12\xca\xc8\xc0\x73\x4c\x21\x39\x1c\xa5\xf0\xe1\x3f\x5d\x71\x84\x19\x19\xbf\x62\xaf\x0b\x93\x93\x0d\x87\x88\x4e\x4b\xb9\x91\x67\x33\xc2\xa7\xe5\x2c\x5c\x9e\x2b\x93\x5f\x69\xee\x6f\xb7\x1b\x9c\x91\x93\xcf\xa3\x58\x5d\x60\x6f\xe5\xe6\xff\x0c\xd7\x27\x5b\xe0\x87\xd4\x37\x3a\xc1\x6b\x62\x08\x64\x97\xbe\xf6\x3d\x59\x2b\xba\xd1\xad\x7e\xb5\x43\xf6\xa5\x37\xf2\x82\x23\xf4\xe3\xf1\xe9\xa4\x83\xd7\xcd\x46\x82\x56\x22\x5e\x1b\x5a\xe4\x7b\x0e\xb6\x3e\x1c\xc7\xde\x1a\x7d\x8c\xd1\x93\x9b\xc8\xbb\x96\x13\x5b\xb0\x82\x9b\xcf\x57\x69\x75\x2d\xbb\x29\xa9\x91\xf7\x93\xdc\xcb\x3a\xb0\x1f\xe4\x0a\xbb\x55\x5c\x9f\xfd\xcd\x2d\x1c\xa4\x77\xf1\x7f\xe4\x7d\x13\x61\x8f\xbd\xce\x17\xec\xd0\xa6\x4e\x65\xe1\xb8\xb0\xaf\x6e\xa3\x07\x9e\x6e\x36\x34\x33\xe3\x4d\x28\xe6\x23\x4d\x28\xe6\x1a\x93\xa0\x9a\xcf\xa1\x43\xcd\xc0\x8e\x94\x3f\x01\xa4\x43\x67\x7a\x13\xe5\xe5\xca\x01\x9a\x35\x2c\xde\x86\x61\xbe\x7b\xf4\x87\xad\x7f\x0a\x3d\x9d\xbf\xe4\x74\x7a\x08\x7d\x42\xf2\xc1\xc0\x78\x47\x04\xd1\x84\x6f\xb7\x7d\xfb\x7a\x49\xa7\x62\x16\xa3\xa3\xea\x81\x89\xc5\x2a\x2e\xd0\xd3\x22\xad\x68\xef\x34\xf1\xa3\xf9\x74\x3c\x43\x47\x10\xf1\x7d\x2b\x02\xf3\xe9\xa9\x89\xfd\x63\x77\x2c\xe6\xd3\xef\x4d\x92\x1f\x0e\x24\xc1\x7c\xfa\x47\x93\xee\x5f\x9f\x4b\x87\xf9\xf4\x87\x19\x3a\xd2\xa7\x97\x9f\xda\x1a\x1f\x06\x2f\xc2\x5f\x03\x49\xc7\x51\x41\x9f\x36\x76\x68\x16\xc9\x02\x61\x37\x5f\x90\x80\x7b\xc3\x97\x92\xf6\x98\xb7\xd6\x08\xe1\xeb\x97\xcc\xcc\x79\xc3\xfd\xa3\xd2\x70\x77\xfb\x06\x6a\x3a\x23\xe1\x65\x6c\x3f\xee\x68\xd7\x5f\x69\xfa\xe5\x7d\xba\x41\x8e\xbf\x54\x97\xb3\x92\x4e\xea\x38\xc3\x4a\x18\x86\x47\x07\xcf\x24\x93\xb0\xb7\xad\x86\x0c\xec\x62\x84\xbf\x74\x69\x65\x83\xa9\xf7\x11\xd5\x57\xe6\x64\xa1\x40\xa0\x2e\x1f\x0a\xca\x3b\x9f\x31\xa6\xcb\x99\x56\x17\x6a\xa6\x91\xd3\x21\xa3\x09\x20\x49\x01\x19\x87\x77\x0a\x45\x2e\xe1\x09\x43\x7d\x7e\x2c\xf3\xc7\x25\xcb\x73\xb2\x91\xc2\x03\x83\xec\x29\xef\x52\x8d\x0c\xf5\x73\x9d\x23\x71\x31\x9a\xcb\x7c\x4a\xf1\x59\x6b\xcc\xe8\x30\x0c\xb5\xd7\x35\xcb\x40\x0d\xd7\x28\x49\x93\xd4\xfc\x78\x73\x71\x7d\x4e\x2a\x2f\xca\x9a\xde\xc1\xd5\xb3\xaf\xe0\x4b\x72\x19\xa0\x14\x33\x9a\x92\x41\x9b\x23\x8c\x2d\x4b\x88\x80\x67\x6c\x32\x93\x5a\xc6\xd6\xec\xa2\x59\x8f\x32\x65\xec\xb3\x7b\xdb\x6d\xc8\x2c\xa2\xc1\x80\x7a\x4f\x09\xd4\xbc\x23\xd8\xe7\x41\xbd\xd7\x85\xda\xeb\x86\x71\x4f\xac\x4a\x08\x9b\xd2\x19\xda\x6e\xf5\x17\x89\x8a\x3a\x1a\x52\x84\x39\x6c\x4c\xc3\xcc\xbb\xe4\xa5\x4d\x5e\x42\xf2\x4a\x44\x92\xf7\xb0\x19\x8c\xd0\x60\xb7\xe8\x24\x8a\x05\xaf\x29\x8a\x92\x28\x5e\xa6\x79\x45\x51\xd4\xda\xc6\x76\x89\x4e\xa2\x58\x23\xb8\x45\x89\x0c\x55\x0f\x6e\x91\x12\xa5\x50\x94\xc0\x5a\x95\x33\xc8\xa4\xc0\x55\x00\xdf\xb2\x58\xd1\xc5\x97\x5f\xec\x81\x83\xe9\xe8\xea\xf2\xf2\x86\x3c\x4a\x79\x94\xa7\x9b\x6e\x1b\x07\x79\x90\x4d\xfa\xa2\x79\x22\x0c\x06\x77\xb1\x40\x13\x79\x32\xdd\xc6\x02\x3f\x22\x94\xa8\x53\x2a\xa1\xaa\x56\xb8\xec\x68\x4e\xf6\xef\x93\x0b\xf6\x4b\x88\xd1\x54\xf2\x47\xd1\xac\x6b\x31\x38\xfb\x18\xc9\xfa\x47\x6a\x5f\xc2\x2f\x93\x39\x1a\xaa\x84\x1d\xd4\xcd\xee\xfb\xc1\xc0\x7d\xf7\x09\x99\x23\xef\x66\xcd\xaa\xa2\xf9\xcb\xa8\x53\xe3\x17\x80\xf7\x42\x45\xac\x98\x21\xa5\x65\x6d\xca\x91\x8b\x14\x14\x8f\xd8\x0c\x39\xad\xa6\x8e\xc6\xa9\xa7\xea\xc8\x11\xc3\xde\x53\x6f\x34\x1a\xf5\x76\x11\xc2\xdc\x27\xd6\x56\x6d\xdb\x19\x6c\x4c\xb4\x1a\x31\x1b\x46\x49\x2f\x1a\xce\xb5\x1a\x17\x42\x49\x18\xc1\x8d\x3d\x61\xf4\x14\x0d\x0b\x7d\xc5\x8a\x7b\x11\x1a\x46\x3b\x78\x6d\x52\x6a\x4c\x4e\x41\xb9\xb1\x78\xac\xdc\x82\x0b\x42\x5f\x15\x4a\x4d\x9c\x1b\x3a\xa4\x08\xa3\x19\x09\x57\x48\x5c\x60\x81\x9c\x50\x53\x78\xe9\xad\x8a\xfc\xe5\x32\x2e\xac\xb1\xa3\x92\x39\xe8\x68\x91\x16\x6f\xc1\x43\x33\xf9\x2a\x45\x76\xfe\xa8\x7f\x35\x2f\x2b\xd8\x32\x56\xe7\x9d\xa9\xc4\xb0\x04\xb2\x10\x6b\x73\xda\x45\xaf\xbb\x4e\xa5\xc9\x74\x96\x5c\xa8\x57\x67\x50\xa8\xd0\xcc\xd6\xb5\xe0\xe4\x01\x53\xab\x70\x04\x17\x3e\xad\x97\xbc\x1e\x8d\x85\xef\x05\x4e\x2e\x85\x26\x08\xa4\x85\x67\x14\xed\x3d\x20\x90\x1a\x65\x4e\x84\xf3\x18\x17\x45\x9a\x19\x57\x3e\xe2\x98\xb2\xa4\x1e\x92\x08\x47\x08\x9f\xc7\x42\xae\xad\xed\x56\x86\x50\xf5\xc3\xd3\x1c\x0f\x38\x00\xd1\x79\xe8\x0b\xb7\x8e\x84\xb7\xfe\x93\x6b\xad\xe8\x0d\xc3\xf8\xcb\xd9\xf5\xfc\xc3\xd9\xcd\xdb\xbf\x5c\xcc\xff\x7a\x71\xf6\xeb\xfb\xb3\x8f\x70\x9d\xe5\x05\x7f\xbc\xba\xfc\x3f\x7f\x23\x5f\x7c\x51\xf9\x9e\xd1\x87\x0a\x30\xd3\x53\x71\x92\x0a\xc1\x3b\x2f\xac\x94\x40\xfd\x8c\x7e\xf6\xfb\x4f\x37\x67\x3f\xbd\xbb\x98\x9f\x5f\xbc\x7b\xe7\x94\xb4\x83\xd0\xf0\x6d\xdb\x8f\x8a\xd0\xde\x56\x2d\xd3\x3c\xbf\x4d\x17\x5f\x20\xf4\xb8\x0b\x51\xf2\x9b\x9a\x69\xae\x1d\xa1\x2d\xee\xf0\x46\xea\x74\xeb\x6e\x45\x59\xd0\x42\xcc\xd5\xd6\xeb\xaa\xb8\x53\xe7\xe9\x5b\xb0\x6f\xf5\x7e\x33\x9a\xc8\xb6\xce\x10\xa2\x3f\x78\x1f\x12\xe6\x89\xfb\xe7\x92\xc7\x91\xcd\x91\x44\x43\xe5\x07\x21\x4f\x1f\xcb\xfa\x70\x01\xaa\x43\x71\x24\xe8\x7a\x93\xa7\x82\x26\xb6\x94\xea\x44\x17\xb3\xeb\x18\x11\x10\xe7\xba\x86\x41\x45\xeb\x8b\xcb\xbf\xff\x57\x4d\xf9\x63\x77\x5c\xf8\x12\x1a\x44\x81\x67\xca\xb9\x51\x84\xf7\x30\x1d\xf6\xcd\x46\x10\x6d\x60\x8c\xe9\x57\xe1\xd0\x8b\x83\x14\xa6\x18\x4e\xe7\xf2\xb3\x3b\x3f\xdc\x62\xcd\x41\x03\x7e\x4f\x31\x26\xe1\x8a\xe5\x19\x14\xf4\x4c\x42\xf9\x63\x5e\x89\x54\xd0\x97\xa4\x3b\x94\xa2\x89\xcd\x7c\x60\x23\x77\x8d\xaf\x1a\xb6\xf9\x46\x19\x6f\x37\xd2\xc0\xbc\xe8\x24\xc7\x76\xa8\xbb\x0b\xd2\xed\x58\xa7\x45\x7a\xd7\x39\x4d\x07\xb6\x6e\xe7\xc4\x7f\xed\x36\x08\x70\xfa\x7f\x21\xa0\x44\x6b\x37\x99\xca\xfe\xc2\xe8\x83\x01\x71\x27\x74\xa4\xe0\x8b\xdf\xab\x66\x12\x73\x80\x9e\x9b\xce\x11\xe0\x0f\xb4\x2d\xbb\x8d\x76\xbf\x03\xfa\x65\x4a\xbb\x56\x83\x4f\xe8\x48\x56\xa6\x2c\x63\xd4\xf7\xb5\x9c\x62\x17\x7d\x2e\xd7\x87\x0c\xaf\xbc\x30\xb9\xb8\x40\xb7\xd9\x0b\x2b\x39\x95\xc9\x08\x1d\xdd\xd0\xaf\xc2\x8f\xd0\xed\x7c\x07\xed\x22\x74\x04\xb6\x21\x6f\xec\xfe\x20\xd4\x59\xf9\x5d\x8b\xc7\x9c\x7a\x98\xf5\xef\x69\x55\xa5\x77\x60\x12\x46\x85\x2c\xfe\x22\x07\x27\x25\x04\x44\xa4\xce\x80\xb7\x99\xfa\x76\x0d\x57\xbf\xaf\xca\x52\x78\x3f\xe5\xe7\x4f\x65\x0d\x86\xb6\xe7\x39\xa3\x85\xb8\x02\x78\x6c\x13\xe7\xc2\x9a\x19\xe4\x6f\x56\x5d\xb3\xf5\x26\xa7\xe7\x39\x5b\x7c\x21\x74\xf4\xf7\x3f\x4b\x52\x61\xce\x8c\x7d\x97\x76\x91\x4a\x16\xe1\x40\x5b\x68\xbc\x0f\xe0\xdb\x6a\xfa\xef\xd0\xfe\x22\x83\x96\xbc\xb0\x64\x1e\xb6\xff\x60\xf9\x41\xcf\x5f\x5c\x7e\x90\xeb\x25\xe5\x7b\xc3\xfd\xad\x95\x78\x59\x5f\xdc\x93\x60\xd2\x7f\x57\xaf\x82\x12\x9e\xab\xd7\xae\xbd\x6f\xa9\xca\x66\x7a\xae\x74\xb7\xd2\xbf\xa5\x78\x97\xeb\x25\xa3\xf6\x36\xfb\xd6\x51\x7a\x9b\xbd\xa4\x5c\xbd\x7d\xbf\xb5\x70\x9d\xed\x60\x0d\xd5\xef\xab\xa1\x7a\x79\x0d\xcf\x91\xad\x17\xd7\xf9\x5c\x41\x07\x5b\xd1\x20\xa7\x2f\xac\xb4\x78\x11\x75\x69\x10\xef\x17\x96\xcd\x5e\x54\xb6\x77\x4c\xbc\xb0\xdc\xf2\x85\x6d\x56\x27\xd1\x0b\x0b\x4d\x5f\x56\x68\xf3\xc8\x7b\x61\xe9\xd5\xcb\x4a\x6f\x1e\xb2\x2f\x2c\xbd\x7e\x51\xe9\xcd\x53\xfd\x85\x85\xe7\x2f\x2e\x1c\xd8\x87\x17\x96\xba\x78\x51\xa9\x01\x93\xf2\xc2\x92\x97\x2f\x2a\x39\x10\xd9\x5e\x56\xf0\x26\x60\xa1\x0e\x96\x1e\xf0\x5e\x2f\x2c\x7e\xf5\xa2\x76\x3b\x16\xef\xc5\xc5\xba\x2c\x2f\x68\xf3\xb9\xe3\x95\x5f\x54\x7c\xf6\x0d\xf3\xf8\xde\x70\xd8\x2f\x2a\x79\xfd\xa2\x92\xbb\x78\xe5\x17\x56\x70\xef\x55\xd0\x96\x0d\xf7\x08\x29\xdf\xa6\xbe\x1f\x8a\xd3\x1d\x92\xcd\x8b\x0c\x87\xf7\x79\x96\xa9\x68\x91\x35\x7d\x9a\x68\x27\xba\xa2\x0d\x5d\x51\x68\xe8\x0a\xf1\xe3\xe9\x44\x1c\x9f\x26\x63\x84\x4b\x72\xfa\xaa\x7c\x2d\x5e\x95\xc3\x21\x2a\xa6\x65\xa8\xf2\x56\xaa\xcb\x6d\x81\x0b\x29\xb8\x58\x7d\x5a\x7b\x77\x05\xfe\x57\x9c\xe7\x12\xfb\xda\x13\xa7\x7b\xa0\x6e\x06\x03\x31\x65\xc1\x1e\x9a\x81\xee\x83\x50\x0f\xe3\x08\x8b\x5d\x3c\xee\x00\x0e\x80\x91\x1a\x45\x43\xda\x36\x30\xa6\x08\xcc\x15\x3b\x2e\x9a\xd2\x49\x1a\xea\xc2\x15\xda\xf4\x25\xf0\x05\x13\x3f\x69\x17\x38\x69\xd3\xff\xcd\x4e\xb9\x23\x2d\xb2\xdf\x39\xb4\x8c\x9c\xbe\x62\xaf\x05\x5c\xa2\x15\x53\x16\x0e\x2d\x73\x43\xcb\xb0\x02\x08\xd4\xce\x62\x2a\x0d\x13\xa2\x7f\x4d\xe9\x4c\x99\x57\x6e\xb7\x7d\xb0\x82\xf2\x1f\x63\x0b\xa4\x6e\xff\xda\x23\x66\xfd\xc3\xa4\x83\x41\xea\x7b\x45\x49\x03\x1b\xe4\x03\xcb\xbe\xf3\x3a\xe0\xdb\xd6\x7e\xc7\x3d\xc9\xb3\x1e\x0c\xf7\xaf\xf5\x6f\x87\x0e\xd5\x2a\x93\xcc\xe3\x70\xb5\x49\xc5\x0e\x2f\x6c\xd0\xb3\x5e\x98\x4e\x5f\xe2\x85\x09\xea\x0a\x98\x69\x53\xd5\x0e\xe1\x74\xb3\xa1\x45\x06\x51\x6d\xaf\x4c\x39\x2b\xbe\x40\x54\x4c\x8d\xdd\x5a\x96\xd9\x62\x3c\xaf\x95\x36\x61\x50\x86\xb1\xb0\x83\x17\x40\xa5\x6c\x69\x5c\xf3\x99\x20\xdc\x48\xa3\x2d\x57\x0f\x4d\x7e\xd7\xa5\xd1\x3f\xc0\x75\x9e\x7a\xe4\xd0\xa4\x1c\x0c\x28\x69\x3c\x9d\xa1\x03\x2e\x8d\xbb\xf1\xde\x92\xa9\xd2\xce\x02\x3e\x2c\xc2\xee\x87\x41\x9d\x8c\x66\xdf\x0e\x35\xbb\xc3\xae\xcc\x84\xe3\x56\x99\x09\x3f\x30\x62\xe1\x35\xdd\x0b\x3d\xdc\xbc\x08\xbf\x95\x3c\x9d\xfe\x31\x89\x14\xee\xf0\x07\xfa\x90\xb3\x82\x46\xf8\xfb\x7f\x4f\xa2\x45\x5a\x2c\x68\x1e\xed\x02\xaf\x9f\xdd\xb8\xf3\xbc\x45\x43\x6d\x04\x45\xca\x38\xd9\xa5\x2c\x0b\x10\x24\xc0\x17\x55\x10\x01\x44\x3a\x42\xaf\xe2\x52\xa3\xc7\x7d\xa1\x8f\x1f\x39\xad\xaa\x48\x12\xa6\xc1\x40\xfe\x3e\xde\x98\x00\x0a\xa6\xef\xee\x84\x32\xd0\x6e\x11\x4e\x11\x0e\x22\xa8\x0c\x89\xd9\x76\x5b\xea\x6c\x71\x50\xed\x6d\x7d\x7b\x9b\xd3\x2a\x42\xdb\x6d\x31\xaa\x44\xb9\x91\xeb\x20\xbd\x4b\xd5\xbc\xa2\xfd\x4e\x49\xf9\xe8\x06\xc8\x60\xc0\x43\xe2\x27\xa5\x1e\x16\x45\x58\x0e\x09\xbb\xad\x1d\x56\x69\x32\x8d\xd2\x5a\x94\x4e\x19\x36\xc2\x2a\xa0\xe4\x5c\x29\x38\xca\x5f\xcb\x72\x51\xcb\x89\xcd\x34\x38\x47\x84\xa3\x65\xc9\xd7\x11\x8e\xd6\xe9\x57\x6d\x48\x89\xa3\x35\x2b\xec\x37\x68\x89\xaf\xca\x3c\x83\xcb\x45\x4e\xd3\xac\x2c\xf2\x47\xf8\xfc\xaf\x9a\x71\x28\xa2\xa2\xb9\xb2\x0e\x7a\xc3\x38\x35\x5a\x9b\xd5\x86\xe6\x39\x3c\xb9\x46\x92\xa6\xdf\xea\xeb\xea\x48\x30\x91\xcb\xd5\xe3\x15\xac\xdc\x03\x99\x36\x49\x3a\x65\x5b\xa3\xbd\xb2\xfe\x3e\xe8\x65\x39\x71\x9b\xb4\x12\x34\x80\xdb\xa3\x4a\x28\xfe\x8b\x1c\x4a\x67\x5a\xeb\x72\x2c\x6a\xf1\x4d\xe9\x59\xb1\x79\x51\x8e\x5d\xe0\xb1\x4e\xaf\xd4\x24\xa2\x05\xb8\x9c\xd4\x2b\x05\xbc\xa9\xca\x90\x0d\xa7\xe2\x57\xfa\x08\x89\xba\x7c\xdc\x17\x53\x3a\xfa\x42\x1f\xcf\xcb\x4c\x9d\xb2\x07\x6a\x8e\x11\x16\x81\xc9\x9e\x98\x81\x79\x68\x77\x6a\x7f\x9c\x1b\x5e\x8c\xf5\x2e\x52\xbd\xd4\x99\x35\xfb\x23\x4f\xa5\x96\x87\xed\x43\x6d\xa2\xc8\xf8\x31\xd0\x84\x21\x84\x4d\x8f\xcd\xb8\xe8\x23\x04\xb3\x58\xd3\x91\xe3\xc2\x10\x12\x7b\xba\x28\x6a\xd2\x2a\xa0\x5a\xa4\x1b\xaa\x37\xb5\x4b\x0c\x5b\xe0\x6d\xd1\x4c\x0d\xc1\xc7\x52\x02\x0c\x53\x5e\xd6\x5d\xde\x08\xf7\xf5\x09\xdb\x92\x4a\xbb\x26\x64\x51\x86\xda\x34\x6b\x75\x54\x27\x48\xfb\x69\xd3\xae\xb3\xbd\x2a\xac\x8b\x72\x9f\x50\xc9\x12\xeb\x4d\x84\x9b\x70\xf2\x9a\x00\x9a\x1a\xde\x94\x0f\x45\xbb\x8e\x66\x41\x59\xf9\x50\x1c\x2c\xea\xc0\xa9\xd2\xf5\xd4\xb2\xef\x6c\x79\xb1\xdb\xb6\x86\x43\x52\xc1\xd3\xa2\x62\x32\xdf\x4d\xd9\xb1\x47\xd4\x5c\x2d\x6a\xce\x69\x21\xe0\xf2\x00\xf3\x8e\x40\xa3\x45\x28\xbf\x81\x69\xf5\x7e\x13\x8a\x01\x8c\x8c\x7e\x65\xf6\xbf\x86\xca\xe1\x23\x58\xa2\xf2\xa4\x80\x0f\xcb\x33\x3d\x33\x24\xff\x08\x61\xac\x0b\x75\xe2\xc0\xd3\xde\x0b\x0c\xb1\xbb\x1e\x0d\xbf\xcd\x5d\xdc\x4b\x7c\xc5\xb5\x70\x80\x6b\xb2\x9f\x4d\x6a\x9d\x71\xd1\x6c\x87\xa6\xa9\x83\x68\x0f\x60\x7b\x7d\xf9\x28\x8e\x32\x96\xbd\x2d\x98\x38\x03\x39\x55\x6f\x13\x3f\xf2\x8a\x2e\x28\xbb\xa7\x3a\x7e\x87\xeb\x51\x41\x53\x4e\x2b\x71\xb9\xbc\x79\xdc\x84\xb0\x7c\x46\x99\xc3\x40\xec\xa5\x72\xe5\x48\x06\x17\x17\xa4\xa1\x34\x0f\xbd\x73\xea\xb4\xc2\x33\x15\xd2\x1a\xfa\xc2\x57\xa4\xed\x8a\xf7\xd1\x22\xd1\xee\x95\x50\xba\x23\x32\xad\xd3\x86\x90\x5b\xc1\x35\x63\xe7\x35\xff\xaf\x4c\xac\x3a\x31\x02\xf7\x76\xc2\xd4\x40\x41\xc5\xfe\x60\x1d\x9c\x72\x5a\x64\xbe\xb2\x5e\xc3\x51\x84\xbf\xab\x6c\x6a\x23\xb6\xd4\xe6\xc8\xe8\x30\x3c\xff\x1d\x52\x8b\xaa\x52\x55\x41\x41\x80\xd4\xb7\xdd\x4e\x76\xa9\x47\x7f\x68\x6a\x60\xf9\x47\x97\xd5\x65\x9a\xc4\x63\x5c\xf9\x60\x13\x41\xaa\x24\x8c\x0d\xe2\x76\x0a\xc8\x92\x16\xd9\x4d\xb9\x0f\x92\x71\xee\x6d\xd6\xed\x96\xf9\xe8\x75\xb8\x89\xcd\xc1\x89\x18\xad\xd2\xea\xcd\xe5\xfb\xc1\xa0\xa5\x0e\x43\x27\x59\xb9\x00\x06\x67\x04\xfb\xf3\x1a\xd8\xae\x92\xc7\x14\x25\xba\xcd\x76\x38\x4c\xa3\x8c\x83\x72\x83\x16\xa2\x23\xf6\xcd\xa0\xcd\x66\x6b\xba\x2d\xb3\x47\x7f\xf2\xde\x66\x1a\xe9\x7f\xb4\x64\x45\xa6\x87\xfc\x6d\xf1\x11\x56\x8a\x79\xc7\x6c\x8f\x44\xf4\x4f\x1a\x9d\xd7\x16\xe3\x70\x54\xfc\xc1\x45\xd3\xb1\x82\xe3\xf5\x03\x31\x95\xc1\xb2\x11\x0f\x2c\xcf\xdf\x02\x1b\x60\xaa\x92\x2d\x81\xcd\xde\x0c\x04\x1f\x61\x39\x4d\xf9\x95\x5a\xb3\x90\xb0\x8d\xa4\xfc\x42\x56\x32\x5c\xda\xba\x1c\xb7\xb2\x3d\x98\x66\xbf\x0d\x6e\xff\x58\x26\x01\xc2\x45\x7a\x27\xa5\x33\x33\x92\x92\xbd\x6d\x03\xb9\x06\x1a\xed\x87\xda\x66\x87\x74\xbb\x8d\x22\x0d\x45\x6a\xaa\xd0\xf8\x4f\xde\xec\x75\x60\x15\x9b\x72\x24\x57\xa1\xaf\x39\x07\x83\xb8\x1f\x73\xed\xbb\xb8\x2d\x80\x0f\x06\xd4\xaa\xad\x34\x55\x45\x92\x75\xca\x8a\x08\xa1\xed\x56\x8a\x79\xe6\x4d\xe7\xa6\xbc\xf0\x8a\x8f\x18\x60\x5b\xc5\x7c\xb4\x37\x09\xe9\x8f\x11\x8c\xed\xf3\x58\xec\x0a\xb6\x06\xe0\x35\x67\xc4\x87\x5d\x57\xcc\xa9\x2c\x44\xb9\x26\x81\xf2\xf7\x5c\xf0\xb5\x67\xd9\xcb\x63\x80\x77\x60\xc7\xa3\x8e\x13\x7e\x8f\x36\xc6\xb7\xda\x3e\xa1\x27\x5f\x24\x04\x84\x20\xe3\x6b\x5c\xf1\x65\x55\xc3\x6f\xee\x33\x4a\x3b\xcf\xf1\x18\x21\x57\xd1\x2d\xe8\x7f\xb3\x5a\xd1\x7f\x43\x25\xe5\xc5\x1c\x87\x1b\x25\xd6\xd4\xda\xa2\x4a\x64\x7a\x12\x65\xbd\x58\x55\x22\xe5\x22\x89\xe0\xfb\x5a\x7e\x47\x18\xbe\xd7\xe5\x3d\xd5\xc1\xef\xcb\x7b\xaa\x43\x69\x91\xe9\xc0\x8b\x22\xd3\x61\x5a\xb8\x50\xc1\xe7\xea\xde\x42\x72\xd0\x92\x37\x4e\x22\xcd\x4a\x43\x48\xbd\x81\xdf\x9f\x36\xf0\x0b\xd8\xfa\xc4\xdd\x33\xe0\x75\x59\x57\x54\xe5\x82\x4f\x95\x0f\x3e\x65\x4e\xf8\x90\x79\x35\x52\xde\x9a\x16\xb5\x76\x24\xfa\x55\xbc\xa7\x45\x1d\xe1\x45\xce\x16\x5f\x92\x68\xa1\xb4\x24\xb2\xdb\x5c\x07\x64\x65\x7d\x6b\x95\x27\xa0\x1c\xd5\x3d\xf8\x54\xdd\x03\xa1\x84\x15\x49\xa4\xc5\x1f\x1d\x52\xd6\x42\x07\x5d\x4a\x79\x05\x32\x00\x33\xab\x33\x5f\x28\x21\x0c\xbe\x73\x9a\xda\x42\xdf\xc9\xef\x08\x57\xf5\xed\x9a\x89\x24\x52\xff\x23\x0c\xa2\x70\x62\x24\xe2\x85\x71\x86\x6a\x3c\x31\xf2\xf4\x4e\xcf\x87\xfc\xd4\xd3\x21\x3f\x55\x80\xfa\xd6\xd5\xcb\x4f\x5d\xbb\xfc\xd4\x95\xcb\x4f\x5d\xb7\xfc\x2c\xef\x4d\xd2\xcb\x7b\x95\xb2\xdc\xc8\xdf\xe5\xc6\x94\x95\x99\x92\xb2\x68\x87\x79\x59\x9a\x23\x22\x89\xe4\xc1\x16\x1d\xba\x59\xd0\xee\x07\xea\x4d\x87\x93\x3a\x0b\x17\x9c\xea\x33\x7e\xc9\x8a\x34\x57\x62\x59\xcb\x2d\x8b\xb9\x5f\x35\xf2\x93\x5a\xa0\x20\x40\x1d\x29\x9f\x7d\xc5\x88\x55\x1f\xca\x82\xa2\x98\xa3\x09\xb8\x02\x0b\x32\x78\xed\x8e\x90\xb2\xa6\xaf\xba\x63\xe5\x49\x1f\x73\x65\xc0\x6e\xcf\x4f\x8e\x10\xdc\xcb\x02\x0c\x8b\xde\x8c\xbe\x83\x6d\x84\xfb\x7c\xc4\xaa\x38\x1a\x75\xc4\x75\x7b\x59\xfb\x54\x18\x8f\x6a\x69\x96\xf5\xbe\x6b\xe5\xfb\xae\xa7\x30\x0d\x45\xd9\x93\xcd\xeb\xe9\xe3\xa7\x17\x47\xc3\x98\x8f\x2a\xcd\xb8\x6c\xb7\x7c\x3a\x9e\x99\xa3\x0a\x0d\x23\x34\xea\xbd\x4f\xbf\xd0\x5e\x55\x73\xda\x7b\x2c\xeb\x5e\x45\x45\xcf\xeb\x9f\x2c\x4f\xac\x68\x4f\xce\x5d\xaf\xe4\xbd\xb4\xb0\x25\x83\xd7\x1a\x15\x33\x8a\x0c\x26\xa8\x9a\x1b\xad\x6e\x61\x1e\xd8\x62\x05\xbb\x01\xaa\xe9\x29\x4a\xdb\x7a\xe9\xfa\x15\x03\xe6\xfe\x17\xe5\xd2\x2a\xe6\x98\xe1\x74\xca\x66\xb8\x32\xab\x42\xc7\x74\xf8\x12\x53\x0b\x44\x96\x71\xa4\xed\x89\x94\xb5\x9b\x64\xf8\x87\x7a\x90\x23\x6c\x46\x5b\xa9\x3f\x86\x67\x92\x82\xa0\x2b\x14\x6c\x2c\xcb\x66\x38\x25\xfd\x31\x78\xe5\xdf\x7b\x5c\x4e\x18\x2c\xc2\xec\x83\x92\x03\xfc\xa8\xb8\xc4\x1c\xc1\xad\x93\x61\x33\xab\xc1\xa0\xea\x13\x22\x26\x29\x61\xa3\x79\x08\x77\x6c\xf0\xe5\x92\x72\x30\x88\x21\x5e\x5d\x4d\x69\x30\x64\x19\x8b\x10\x06\x00\xc5\x66\x8f\xa6\x59\x2a\xd2\x63\xbd\x18\xa0\x3b\xb3\xa8\x03\x6b\x45\xbd\x1b\xd1\x91\x3e\x6c\xd5\x45\xe7\xc8\x4a\x7b\x15\xae\x8c\x09\x81\x82\x46\x29\x7d\x9b\xcc\xe3\xd3\x3e\x21\x71\x41\xca\x11\x13\x14\x1c\x4b\xc0\xb9\xef\x03\xce\xc5\x51\xab\x1d\xc7\x11\x1e\x03\x34\x28\xb1\x9a\x12\xed\xa3\x75\x5a\x28\x7e\x61\x86\x06\x03\xa6\xb8\x21\xe0\xd2\x60\xfe\x8e\x4f\x09\x21\x95\xb5\xa1\x64\x50\x9a\x66\x11\x24\x07\x8e\x2b\x6d\x40\x20\xb9\x03\xb4\xc3\xcd\x55\xb7\xdf\x17\xae\xcf\x58\x05\x38\x59\x86\xc1\x0a\xcf\x48\xcd\x5e\x6d\xb7\x4e\x2b\x03\xef\x9b\xf9\x64\x8f\x55\x02\x30\x9e\xaf\xa8\x61\xf2\x2c\xb9\xa1\x9a\x38\x19\x2e\x4d\x32\x71\x7d\x3e\x15\x33\xf4\x0a\xd1\x30\x9d\x63\x6d\x1d\x34\x32\xdf\xe1\x70\x31\x35\x37\x87\x45\x57\xec\x4b\xca\x49\x9d\xab\x81\xce\x37\xd0\xb8\x54\x55\xf2\xba\x40\x60\x2d\x2c\x30\x43\x58\x74\xdc\xa3\x27\xfa\x19\x32\x58\xaa\x0c\x5e\x25\x70\xb9\xc3\x7e\xf0\x3e\x35\xec\x90\xdd\xe3\xc0\xe9\xed\x85\x66\x3e\x48\xa0\x9d\x60\xe3\xd1\x60\x8a\x46\xe5\x72\x19\xbb\xbd\xf2\x2f\xff\x02\x10\x39\xf2\xa0\x3e\x40\x98\x5f\xf0\xf0\xd3\x85\x73\x6d\x2c\xc5\x1a\x5a\x55\x28\xea\xbc\x9d\xf2\x34\x7f\x25\xc3\xb8\xe7\x5e\xae\xc5\x80\xf1\xba\x18\xcd\xd3\x2c\xfb\x73\x4d\x6b\x1a\x47\x4a\xf4\x8c\xb0\xf5\x82\x83\x70\x2b\x4d\xba\x14\x54\xcb\x63\xf0\x82\x00\x1f\xfb\x5b\x64\x98\xcc\xff\x06\x5e\x7d\x60\xe1\x16\x22\xc7\x1b\x39\x1b\x4c\x48\x0c\x3c\x31\x5b\x43\x45\x5a\x17\x56\x6e\x72\xae\x28\x81\x3c\x41\xe5\xa2\x9b\x34\x7e\x2b\x62\x73\xc3\xd3\xa2\x5a\xca\xce\x24\xd3\xc8\xf2\x39\x11\xd6\x7c\x4d\x64\x19\x1b\xfd\x9d\x2b\x1e\x26\x32\x4c\x0c\x7c\x4a\xae\x45\xa7\xcc\xa2\x3d\x40\xf3\xba\xf2\x25\xfb\x0a\x48\xf9\x53\x3a\x23\x4f\x1b\x5e\x6e\x2a\x59\xaf\xdf\x90\xd9\x6e\x87\x7c\x74\x35\xbe\x77\x94\x9b\xaa\xe8\xfb\xec\x2a\x0e\x8e\xb3\x67\x9b\x6d\x65\x7e\x1f\xe9\x0a\x73\x22\xa6\xc2\xe2\x17\x39\xef\x14\x7e\x20\x01\xa8\x2d\x2c\x1c\xa4\x95\x27\x0d\x79\x95\x17\xd6\x98\xae\x4f\xa8\x39\x6f\x7d\x26\x4d\xa7\xb0\xe6\xcc\xca\xad\x93\xc7\xca\x08\xe3\xd0\xd7\xe2\x33\xf6\x1e\x52\xe5\xa6\x78\x59\xd6\x45\xd6\x7b\x58\xd1\xa2\x27\x47\x86\x15\x77\xbd\x7a\xd3\x4b\x7b\x30\x66\x3d\x63\xa3\x31\xea\xdd\xac\x58\xd5\x63\x55\x6f\x5d\x56\xa2\x97\xb3\x2f\x34\x7f\xec\x65\x35\xf0\x44\xeb\xb4\xa8\xd3\x3c\x7f\xd4\x77\x83\x82\xa5\x42\x16\x93\x16\xda\xff\xac\xa4\x9a\xa3\xde\x35\xa5\x49\x6f\x25\xc4\x26\x39\x39\xb9\x63\x62\xc4\xca\x93\x8b\x5f\x3f\x6e\x8a\x33\x0f\x6b\xbe\x6d\x1b\x12\x0d\x39\xda\x6e\x3b\x23\x0a\xb4\x8b\x0b\x0c\x87\x91\x33\x71\x65\x60\x05\xe9\xe9\xd6\xb7\xc6\xb1\x5f\xfc\xff\x6f\x60\x0a\xd9\x23\x7d\xb4\xaa\x43\x20\x18\xa1\x98\x22\x78\x71\x3d\x94\x08\x5e\x2f\xf6\x6c\x89\xbd\x90\x41\x2f\x30\x6d\x0a\x77\x82\x31\xb5\x04\xf4\x03\xcd\xe8\x4e\xc2\x2b\x18\x8a\x12\xea\xdf\xe1\x34\x63\x77\x32\xf6\x3d\x50\xf0\xca\x19\x74\x85\xca\xfb\xed\x0b\x37\x3a\x02\xdf\xbe\xbf\xd2\x47\xb9\x5a\x24\x39\xd7\x9f\x69\x6e\x02\x17\x82\xe7\xbf\xd2\x47\xcc\x09\x1d\x3d\xac\xd8\x62\xf5\xe3\xa9\x1e\xdf\xbe\x18\x0c\xfa\x00\xff\xf3\xac\x51\x43\xdb\x56\xf0\x3b\x7d\x5d\xdf\xab\x64\x96\x9e\xe3\xeb\x7a\xeb\x54\xce\xbc\xe0\x65\x56\x2f\x68\x6f\xc1\xcb\xaa\x3a\xae\x98\xa0\x3d\x75\x5f\x23\xf3\xdc\xd7\x79\x41\x79\x7a\xcb\x72\x26\x18\xad\x5e\xf5\x36\x39\x4d\x2b\xda\xa3\x05\xc8\x04\x62\x95\x8a\x1e\x30\x69\x55\xef\x96\xca\x0c\xb7\xb0\x2a\x53\x4e\x7b\x1b\xe0\xe0\xf3\xc7\x9e\x7a\xf8\xcb\x46\xbd\x9f\x4b\xde\x5b\x97\x9c\xf6\x58\xb1\x2c\xf9\x1a\xda\x8d\x7b\xac\x58\xe4\x35\x34\x70\x55\x3e\xc8\x55\xa9\x1f\x9e\xe1\x0a\xa8\xf7\x90\xf2\x82\x15\x77\xb8\x57\x51\x0a\x8b\xb0\x4a\x4e\x4e\x60\xf2\xff\x5e\x8d\x16\xe5\xfa\x24\x73\x63\x50\x9d\xdc\x9f\x8e\xbe\x9e\xfc\x93\x28\x17\xf3\x5b\xd5\xe9\x63\xe8\xf4\xb1\xeb\xf4\xa8\x77\xad\x86\x61\xb9\xa4\x0b\x41\xb3\xa4\x17\x7d\x37\xa4\xc3\xef\xa2\xef\x76\xb8\x61\xd2\xd1\x35\x89\x07\x79\x40\xcc\x25\xa3\xac\xb7\x84\x0f\x4a\x22\xba\x31\x90\x35\x52\xe7\x94\xce\x8e\xb4\x3d\x67\xe1\x5d\x51\x0e\x06\x5c\x3b\x29\x97\x27\x32\xd7\xcd\xd3\xd6\x28\x1c\xb7\x8c\x55\x3a\xad\xfa\x8b\x99\x32\x7f\x66\x7b\x93\xca\x34\xc4\x18\xae\x56\xfb\x8a\xf4\x6e\xe6\x20\x83\xd0\xcd\xf1\x0c\x62\x3a\xea\x2f\xdb\x0a\x43\x14\x1d\x1e\x43\x64\xda\xbb\xa7\x64\x3a\x65\x33\x32\x55\xd6\xad\x9e\x6e\x53\x0b\xaf\x80\x69\xaf\x36\x5c\x8a\x24\x6a\xe7\xe4\x52\xca\xf5\x8a\x2d\x71\xd3\x06\x27\x75\x21\x57\x70\x39\x5c\xe1\x4e\xdb\x9d\x8e\xae\x56\xb2\x67\x72\x40\x5c\xb2\x18\xed\xf0\x21\xb3\xa0\x03\xa5\xb4\x53\xc7\xda\x26\x58\x91\x9d\xce\x89\xd1\x4e\x30\xe0\x56\x54\xeb\xfb\x84\x96\xa5\x7f\x79\x7b\xf1\xd7\xf9\xc5\xbb\x8b\xf7\x17\x1f\x6e\x9c\x67\x7e\x1b\x7d\xfe\xcb\xdb\x77\x6f\xe6\x90\xe8\xed\x9b\x6b\x1f\xaa\xa7\xf4\xd1\xcb\xa7\x33\x65\x53\x6e\x97\x03\xeb\xe6\x8d\xb4\xd8\x2d\x57\x77\x9f\x6d\xb7\x2c\x70\x4d\x19\xfc\xa6\xd9\x76\x0b\x72\x24\xb7\xf2\x1c\xa8\x16\x71\x83\x07\x8e\x0b\x4f\x98\xc3\xb0\x04\x38\x2e\x1c\x68\x48\xda\x00\x85\x74\x6f\x50\x6a\x62\x03\xdc\xbd\xca\xed\xe7\x54\xb9\x5e\xb3\x8f\x2b\xea\x19\xf4\x4a\x29\x69\x1c\xf9\xd6\x1b\x70\x39\xa6\xc0\x61\x62\xc9\xee\xf1\x4a\x7c\x28\x33\xaa\xb4\x8f\xc4\x45\x91\x9d\x2d\xe1\xc9\x19\xe4\x5e\x1d\x03\x28\x21\x35\xf1\x8f\x0b\x0f\x46\xc0\x5a\xc3\xeb\xcd\x36\x18\xc4\xfa\xcb\x83\xfb\xd0\xf3\xbd\xdd\xee\x8d\xba\xb6\x77\x37\x1d\x49\xca\xdf\xde\xbf\x20\x55\xf5\x82\x44\xe5\x0b\xd2\x3c\xd0\xdb\x2f\x4c\x34\x12\x76\x48\x13\xfb\xcc\x29\xdb\xc7\xfb\x6d\x7a\x4b\xf3\x08\x6c\x62\x14\xf3\xf3\x72\xe3\xe1\x66\x32\xe5\x56\xac\xf4\x48\xb8\xad\xf9\x58\x85\x68\x02\x64\xa7\x1d\x54\xce\xc0\x03\xe7\x60\x10\xc7\x05\x61\x70\xd9\x22\x0b\x43\x23\x9b\x57\x72\x35\xca\xa4\x18\x4d\x8a\x44\x27\x09\xb7\x9f\x48\xef\xee\x68\x76\xa3\x39\x9d\x77\x4c\x50\x9e\xe6\xef\xca\xb2\xa2\x28\x9e\x7a\x16\xca\xc7\xba\xe9\xd1\x0c\x77\x07\xa3\x50\x3b\x4f\x28\x00\x64\xa5\xb4\x4b\x47\xbe\x71\x34\xc8\xda\x25\xc2\x95\xec\xae\x31\x78\x36\x81\x35\x79\x52\x61\x49\x85\x5d\x35\xe9\xce\xbb\x8c\xea\xa7\x83\x41\x5c\xbb\x22\x49\x60\x55\xad\x80\xc5\x39\xbb\x4f\x05\xfb\x8d\xa2\xb8\x40\x08\xe1\xba\x83\x7b\x6b\x19\x15\xef\xc5\x7c\x7c\xb9\x3d\xb4\x4e\x00\xba\x21\xcf\xab\x00\x6b\x1a\xd4\x04\x23\x37\x6f\x13\x42\x99\x8d\xd2\x0c\x0b\x6d\xc2\xaa\x6f\x11\xf1\x13\xab\x24\xd5\x4e\xfa\x63\xac\x15\x51\xd4\x3d\xef\x22\x2f\x0b\x0a\xcf\x51\x15\x8a\x8b\x91\x8a\x42\xad\x6b\x6b\xab\x00\xf6\xfc\x43\xa6\x52\x6b\x89\x36\x9c\x1a\x41\xfc\x19\x8d\x98\x91\x4d\xaa\x9c\x54\x36\x0e\x77\xe3\x41\xb6\x1f\x3c\x40\x7b\x22\x85\x11\x28\xd2\x42\x4a\x11\x8e\xf3\xa7\xbd\xb4\x67\x67\xbc\xa7\x3d\x2d\xf4\xd2\x9e\x25\xa7\xbd\x8f\x6d\xde\xef\xb1\xac\x81\xd9\x03\xca\x29\x79\x38\xf5\xac\x3c\x8c\xa0\x80\x5e\xaa\xb9\xc0\x9e\xdd\xc1\x27\xe6\xbc\x1f\x45\x68\x87\x1d\xb7\x63\x14\x0b\x25\x77\x2b\xbb\xf1\x06\xfc\xc0\x55\x9d\x7e\x2a\x46\x4a\x57\xa6\xe9\x82\x4b\xb1\xc7\x16\xde\x5f\x0f\x5a\x0b\xf6\x1f\xd3\x91\x5c\x44\xda\xa7\xe8\x0e\x6b\x35\x94\x97\xa8\xe6\xf3\xb6\x6a\x7e\x41\x4e\x5f\x15\xaf\x05\xb8\xca\xe1\xd3\x22\x54\xcd\x2f\x66\xcf\xbf\x19\x1f\x79\x10\x78\xc6\xe1\xc7\x1e\x18\x18\x86\xac\x2d\x9c\x57\x14\x47\x3b\xbc\x4a\xbb\x46\x6a\x8f\xb3\x5e\x70\xfd\x27\x42\x17\x2d\xca\x95\x8f\x18\x19\x6e\x9a\x7e\xb2\xa0\xae\xfa\x36\x16\xc5\x0c\x85\x9e\x3f\x63\xbd\x49\xf6\xe0\xc7\xb3\x7d\x04\x41\x6f\xde\x67\x1f\x43\xdb\x79\x4e\x0c\x2d\x3c\x90\x64\xc3\xe9\xdc\xde\x7d\xed\x4d\xb5\x4a\x2b\xa3\x34\x78\x28\x19\x2b\xe6\x59\xb9\x3e\xdc\x22\xc3\xd2\xec\x7d\x2c\x6d\x9d\x51\x2a\xab\x93\x1d\x3d\xa2\xd2\x12\x3a\x38\x78\xae\x50\xa8\x4b\x4f\x3b\x87\xc0\x59\xf4\x98\x64\x4d\x2c\x2d\x68\x60\x6a\xf1\x91\xc9\x85\x94\x6e\x8f\x71\x09\x7e\x28\xd9\x2a\xad\x0c\xe7\x7f\x28\x19\x2b\xde\x5c\xbe\x6f\xa5\x70\x99\x11\xa6\xa8\x05\x2f\x54\xa0\xc1\x20\x78\x88\xe3\xe0\x92\x73\x5a\xcc\xfc\xeb\x6a\x3b\x36\xae\xd3\x16\xf9\x14\xdb\xbe\x26\xd6\xce\x14\x43\x5b\x12\xe7\xb5\xc8\xb5\x22\x71\xfe\x3f\x5c\xf7\x93\xc0\x30\xf3\xc0\xea\x74\x2b\xed\x77\x5d\xbf\x79\x30\xce\x9d\x06\x1b\xe8\x29\xb8\xe2\x91\xc5\x6a\xb2\xfc\xb7\xb2\xee\x2d\xd2\xe2\x3b\xd1\x93\xe5\x79\x99\x7b\x65\x2d\x2a\x96\xd1\x1e\xec\x62\xaa\xc9\xb2\x24\xb9\xda\xef\x56\x04\x74\xc0\xde\x99\x77\xc2\x43\x62\xa3\x04\x16\xb8\xdc\xef\xba\x58\xdf\x3d\x3f\x40\x76\xe1\x7f\xa3\x5a\xc3\x81\xd1\x7e\xe1\x81\x1e\xae\x3d\xbb\x1a\x34\x0d\x33\x2b\x8c\xe1\xe7\x07\x9f\x8f\x5a\xe3\x2e\x85\xa8\x70\xe0\x0b\x7d\xab\xa6\xaf\x38\x32\x23\xb5\xc8\x11\xef\x1a\xd0\xe7\x8b\x37\xb9\x0e\x96\xfd\x2d\xd4\x34\x24\x68\xff\x00\xca\xda\xa5\x08\xfc\xc2\xf9\xe0\xfb\xe7\xa3\x3d\x5a\xe0\x1a\xdf\xb2\x18\x56\x47\x91\x76\x3d\xf7\x34\xd3\xae\xcb\x7b\xa5\xb8\xde\xb9\xec\x83\xf7\xa4\x3e\x10\x24\x80\xa4\x07\x3e\x6e\x99\x03\x57\xfe\xd6\xf2\x1b\x28\x8e\x40\xa3\x5b\xbd\x96\x8c\xa2\xa1\xc0\x4a\x73\x25\xe1\x58\x0e\x54\x42\x77\xb8\xcb\xe0\x9d\xd7\x1a\x8e\x8c\x02\xd2\x17\xb0\x12\x0a\xc2\xeb\x1b\x27\xd0\x1c\x35\xff\x7d\x9b\xd0\xbd\xeb\xe2\xa5\x4e\x9b\x1a\xf3\xc9\xf6\xcc\x67\x89\x9f\x94\x72\xc8\xde\x09\x52\x0f\xba\x30\x45\xf4\x2b\x13\xfb\x12\xd6\x85\x9f\x34\x18\xb5\xf2\x99\x51\xf3\x4f\xfb\x7d\xc8\x4b\x2f\xa0\x34\x7b\xc9\x77\xc3\x93\x7c\x97\x37\xa0\x93\x25\x4d\x45\xcd\xbb\x39\x9a\x2e\xc5\xf0\x6e\xf3\xc5\x56\x13\x7e\xbe\x38\xbb\xf9\x74\x75\x71\x4d\xe8\xe8\xcd\xc5\xcf\x67\x9f\xde\xdd\xcc\x6d\x90\xe7\x8f\xa6\xe8\x8a\x7f\x8a\x4c\xa3\x8e\x65\x81\x9b\x0d\xcd\x8e\x05\xad\x44\x94\xf4\x4f\x4d\x33\x72\x76\xcb\x53\xce\x68\x75\xcc\x2a\xf7\xf6\xee\xa7\x60\xeb\x0d\x2f\xef\x69\x76\xec\xd8\x72\xf5\x10\xea\xa5\x81\xe5\x78\xfc\x40\xd3\x2f\xeb\x74\xe3\x47\xdc\xe5\x6c\xbd\xa6\xfc\x38\xcd\xf3\xf2\xe1\xf8\x36\x5d\x7c\x11\x3c\x5d\x7c\x61\xc5\xdd\xb1\xd9\xe5\x7e\x72\x5e\xd6\x02\xe2\xca\x5a\x50\x7e\x6c\xdc\x19\x49\x01\xcc\x0e\xe5\x1d\x2b\x68\x75\xbc\x2e\xeb\x42\x1c\x6f\x52\x9e\xae\x2b\x3f\x5e\xb9\x07\x3e\xae\x0b\xb6\x34\x0f\xb6\x50\xbe\x69\xc8\x02\x1c\x4d\xbb\x0b\x87\x63\xa3\x10\x07\xa9\xd6\x69\x91\xa5\x92\x8d\x3d\xae\xa8\x10\x61\xdb\x4c\x09\x4a\x25\x7c\x7f\x5f\x76\xfe\xac\x81\x6c\x66\xb6\x4a\x81\x95\xf7\x69\x13\x1b\xac\x9f\x0e\xe0\x30\x6d\xcc\xb5\x67\x19\x15\x65\x46\x75\x77\x5b\x44\xc2\x5d\x95\x74\x12\x0c\x6f\xb1\x36\x28\x88\xec\xd5\x6d\xcd\xfd\x9c\x8b\xb2\xa8\xca\xb6\x53\xca\xa8\x31\x2e\xb6\xec\x7b\xca\x2b\x65\x6c\xe6\x6d\xbf\xa8\x31\xc3\xf6\xb7\xff\xb2\x6e\xfb\x29\xe5\x72\x59\xc6\xb1\x31\xcb\xf8\x16\xec\x2b\xfc\xd8\xda\x44\x7f\xb9\xb8\xba\x7e\x7b\xf9\xc1\xaa\x87\x59\x6d\x13\x0b\x86\xcb\xec\xa7\x17\x5b\xb9\xd8\xaa\x1d\x1b\x60\xc9\xb2\xe0\xa7\x97\xca\x42\xd4\x32\xfb\xe9\x97\xa1\xe1\x67\x99\xf9\xf2\xe2\x0c\x5a\x29\x33\x5f\x5e\x9c\x43\x85\x64\xee\xdb\x8b\x77\xd0\x93\xcc\x7d\x7b\xf1\x0e\x8c\x92\xb9\x6f\x2f\x1e\x90\x57\x19\xfc\xf3\x42\x2d\x90\x24\xb3\x9f\x5e\x6c\xad\xc6\xa1\x0e\xfb\xaf\xf1\x81\x99\xfe\xf0\x62\xac\x34\x4e\x4a\xf7\xed\xc5\x5b\x98\xb2\xd2\x7e\x02\xa9\xbb\xc3\xb7\x24\x1d\x19\xcf\xff\x47\xb7\xa3\x34\x67\x69\x45\x52\xf5\xdf\x1f\x04\x9d\x84\xdc\x06\xb5\xaa\x40\x6b\x8e\x91\xb6\x82\x82\x71\x5c\xac\xa8\x9c\xa0\xd4\x7e\x86\x7d\xa3\x5c\x90\x5a\x7f\xf8\xe3\x97\xf2\x82\xd4\xf0\xcf\x0b\x85\x4d\x46\x6a\xf5\x3f\x08\xd7\xe2\x36\xc4\xe9\xef\xae\xf8\x9f\xeb\x62\xe1\xa7\x91\xbf\xbd\x74\xbc\x2e\xde\x16\x6f\x74\x25\xee\x87\x97\x42\x45\x3e\x19\x42\xef\xbd\x1c\x1a\xc5\xb9\x7a\xb4\x3f\x12\x9b\xa8\xbf\xa6\xbc\x23\x83\x17\xba\xf3\xd7\x2a\xe5\x77\x94\xa4\xea\x7f\xb8\xbe\xf5\x71\x42\x52\xef\x87\xbf\xff\xea\xdb\x6a\xc1\xd9\x2d\x0d\x12\x40\x8b\xae\x4d\x94\x97\xfc\x6d\x98\x84\x3c\xb9\x3c\x49\x50\x83\x2d\x37\x39\x50\x6e\x5d\x1c\x48\xf6\xc9\x45\x62\x4e\x2b\x2a\xda\x49\xae\x64\xb0\x3f\x0e\x20\x03\x90\x5a\xfd\xf7\xc2\xdf\x5f\xdc\x9c\x29\xdc\xea\xd4\x7d\x07\xe3\x27\x52\x18\x3e\x91\x86\x94\x8b\xa4\xf2\x6f\x18\xf6\x57\x26\x56\x6f\x8c\x3b\xe5\x46\x80\x97\x72\x7e\x47\xc5\xc7\x54\xac\x48\x6a\x3f\x43\xba\x47\x52\xf9\x37\xa4\x18\xd7\x10\xac\x3e\xbc\x18\x7b\xd6\x55\xf6\xb3\x23\x76\xc4\xaa\x0b\x50\x4f\xcd\x48\x3d\x62\xd5\xcf\xea\x00\xd2\x41\x7e\xcb\xc0\xd7\x97\xdc\x95\xf2\xbf\x17\x51\x16\x24\x1d\x95\xfe\x76\x4a\xb3\xec\x1d\x20\xf0\x53\xb9\x3f\xbd\x5f\xfe\x96\x00\xf1\xc0\x4b\x16\x06\xf8\x15\x57\x75\x25\xa5\x3d\x2f\x6d\x23\xc4\x5d\xbc\xcf\x1b\xa6\x74\xfb\x4b\xa9\xda\xc5\x54\xc1\x48\x17\x99\x32\x7f\x48\xdd\xb7\x17\xbf\x4a\x2b\xbf\x24\xff\x67\x40\x6d\xc4\x62\x45\x33\xad\xe8\x9c\x86\xbf\xbd\x74\xb9\xc9\xab\x28\x9a\xff\xd3\xdf\x97\xa0\xf4\x2c\xb7\x1c\x7c\x04\x31\x17\xeb\x0d\x90\x4c\xfd\x15\xc4\xfd\x94\xa7\xc5\x17\x88\x83\xaf\x20\xee\xa3\xdc\x24\x6a\xa3\x9b\xef\x90\x6e\xc9\x99\xa9\xfd\xc9\x9d\x5f\x2a\x5f\x0c\x5c\xad\x3a\xef\x97\x97\x68\xa3\x29\xb6\xf3\xf2\x4c\xd2\x8e\xc0\x8e\x1c\xce\xf2\x27\x6d\x87\xf9\xab\xee\x9e\x72\xce\x32\x7a\xbe\x4a\x59\x21\xc7\x36\x0c\xf0\x52\xde\xd2\x3b\x66\x2f\xba\x54\x39\x32\x7d\x57\xb0\x97\x8b\x16\x59\x3b\x4f\x3b\xd0\x3f\x92\x20\xc4\x99\x64\xca\xa3\xa9\x11\xe4\xf7\x37\x4f\xc5\xb2\xe4\x6b\xf2\x14\xe2\x1c\x49\x8e\x79\x95\x56\xe6\xe7\xd9\x62\x41\xab\xaa\xe4\x55\xd2\x1f\xef\x82\x93\xc7\xcf\xa4\xd4\x74\xbd\x80\xe6\x1a\xfc\x95\x3e\x9a\xe5\xf7\x2b\xf5\x63\xeb\xc2\x8b\x77\x3f\x5a\x1b\x15\x46\xf5\xaf\x1a\xbc\x33\xed\x08\x0c\x28\x85\x0c\xff\x50\x66\x40\x2d\xcc\xb7\x97\x60\xc9\x0a\x56\xad\xec\xcc\xf9\x3f\x9b\x0d\xd7\xb4\xd0\x7e\xb7\x9b\xae\x53\x78\xbf\x9a\x65\x98\xfc\xc1\xc2\x87\x66\xb3\xe2\x0e\x56\xbe\xf9\xd1\x2e\xdd\x95\x1c\x0c\xbe\xb2\x8b\x93\x21\x39\x15\xf4\x3d\x15\xe9\x91\xbf\x9b\xb5\xe4\x06\x5b\x59\x7f\x7b\xd9\x2f\xb9\x94\xab\x33\xbd\x7f\xec\x0f\xff\xe4\x49\x37\xf2\xcc\x09\x78\xbc\xf7\xe9\x26\x3c\x43\xc2\x80\xf0\xb4\x09\x56\x61\xf0\x3b\x3c\x4d\x82\x74\xd5\x9e\x74\xf4\xeb\x26\x2d\xb2\x20\x69\x33\xc8\x4b\x6d\x71\xcc\x99\xfd\x0c\x8f\x06\x43\x31\xd4\xd1\x60\x7e\xf9\x5b\x5b\x07\x69\x6a\xe8\xff\x6c\xad\x4b\xaf\xb0\x30\xa0\xe3\x00\xf1\xd2\x36\x83\x0e\xa4\xae\x3a\x92\x57\x41\x3b\x14\xb0\x07\xb4\x40\x7d\xfa\xfd\x95\xac\xef\x7b\x2a\x56\x65\x66\x18\x61\xf5\xab\xa3\xbf\x5e\x5f\xfd\xa5\xba\x5e\xd3\x8c\xa5\xc2\xef\xea\xbc\x15\xe8\xb3\x25\x00\xec\x9b\xaa\xff\xfe\x02\xd2\xe1\xef\x1b\xe1\xb7\xac\x90\x6d\x93\xff\xbc\x50\xad\x95\x46\x52\xf3\x15\xec\x9e\x3f\xe5\xe5\x6d\x9a\xeb\xad\xe7\xff\xdc\x03\xde\x66\xf3\xe2\xe8\xe2\xc3\x5f\x22\xfc\xb4\x0f\x15\xf3\xe2\xc3\x5f\x76\xa1\x39\xf3\x5e\x40\x38\xaf\x4c\x83\xaa\xbd\xb7\x58\xa3\xaf\xac\x12\xb6\x9d\x69\x37\x53\x10\xda\x6e\x85\xc7\x30\x36\x1d\xd8\x93\x3d\x8e\xed\x9f\x6f\xf9\xbb\xcb\x3f\xcd\xaf\x6f\xce\xce\x7f\xbd\xb9\x3a\x3b\xbf\x98\x5f\x7e\x98\xbf\xb9\xf8\x78\x75\x71\x7e\x76\xf3\xf6\xf2\xc3\xe1\x71\x1a\x1d\xcc\xdb\xd5\xc7\x67\x33\x91\x7e\xbf\xa3\xe3\x2f\xea\x84\x96\xe4\x5f\xd0\x64\x9d\xf2\x50\x03\xcd\xb5\xc0\xef\x6f\xce\x4f\x6f\x3f\xbc\x79\xfb\xe1\x4f\xd7\x2f\x68\x8f\x49\x7a\xa8\x41\x26\xcd\xef\x6c\x51\x59\x28\xa7\x81\xaa\x31\x40\x91\x2f\x55\x10\x56\x22\x4a\xe5\x02\xbe\xb9\xf0\x5f\xf7\xf6\x71\xbe\xdb\xa1\xa3\x67\xf3\x0b\x5a\xa9\x8b\x1f\x28\x45\xca\x00\x37\x2a\x04\xda\x56\xcb\xb6\x99\x80\xfd\x5b\x62\xfe\x93\xbd\x9f\x22\x16\x44\xd4\x8b\x7f\x57\xde\xdd\x51\x4e\x16\x1d\x51\xc6\xd3\x85\xfe\xf0\x0f\x4a\xa5\x47\xb0\xd4\x1f\x7e\x75\xe6\xe2\x01\xfc\x28\x29\xca\xb6\x1c\xb5\x03\x03\xae\xc4\x5c\x65\x04\x79\x3a\x42\x1b\x37\x15\x29\xa7\x64\x69\xbe\x82\xb8\xcd\x23\x44\x6c\x42\x76\xfb\xe2\xbf\xea\x34\x27\x4b\xf3\x15\x08\xd6\xba\x3f\xea\xc3\x8b\xd1\x8e\x44\x46\xcd\xeb\xa2\x73\xa8\x55\x59\x70\x7b\x3f\x7c\x5a\xe4\xd9\x78\x7b\x3f\x9a\x65\x43\xef\x4c\x05\xf0\xa3\x35\xce\x26\x89\xf7\xcb\x2f\xc5\xd7\xbf\x91\x05\x05\xfa\x38\x7e\x8b\x39\xb5\xf3\xe6\x7e\xf8\x0c\x42\x2a\xd8\xbd\x71\x9d\xe2\xff\x0a\x4a\xd9\x3c\xda\x5e\xab\x4f\x5f\x74\xe5\x94\xfe\xa6\xa3\xed\xb7\x1f\x7f\x75\xf9\x7f\x2f\x3e\xcc\x2f\xae\xae\x2e\xaf\x64\x12\xef\xa7\x7f\x1e\xd6\xe0\x54\x32\x18\xc0\x56\x58\x3b\xbd\x69\xb8\xff\xd3\x4b\xd5\x81\x43\x46\x96\x9d\xe8\x64\xde\x1c\x2a\x2d\x27\x39\x81\x5a\xdf\xc9\xc5\x7d\xe4\xe5\x9a\x55\x34\x58\xb3\xad\xb0\x60\x2e\x25\x43\xa0\xbb\xe3\x7e\xf8\x17\x06\xca\x45\xed\x52\x7f\x04\x6b\xd7\x74\x4e\x7f\x1d\xbd\x64\x2f\x96\xc5\xbb\x32\x95\x8d\x57\x1f\xa1\xf8\x28\x43\xc0\xf4\x86\x2c\x83\x9f\x8d\xeb\x46\x5e\xe6\x6a\x59\xb9\x1f\x9d\x29\xfc\x5d\xeb\x85\xf8\xd4\x44\xbd\x4c\x48\x72\xa2\xbe\x7c\x12\x10\x8c\xe2\xbc\x73\xfc\xae\xae\xff\xf2\x51\x92\x92\xeb\xbf\x7c\x0c\xd6\xec\x9a\x56\x9b\x14\xca\xb5\xdf\xf8\x76\x44\x41\xec\x5e\xaa\xff\xf8\x76\x54\x94\xe2\x42\x07\x99\x4f\x08\x2d\x28\x84\x14\x54\xa5\x51\xd1\xf8\x76\x74\x5b\x96\x92\x54\xc8\x7f\xf8\x56\xe9\x8c\x92\xa5\xfa\x2f\x4b\xd7\x94\x04\xfe\xe3\xdb\xd1\x9d\xcc\x78\x27\xe0\x8b\xc2\xa7\x2c\x2f\x97\xa1\xb9\x80\x2f\x0a\x9f\x32\xb4\x2c\xe8\x5f\x61\x2a\xd5\x07\xbe\x1d\x71\x9a\x66\x55\x33\xe0\xb2\xc8\x65\x22\xf3\x89\x6f\xed\x1d\x26\x2b\xee\xce\xe0\xfe\x76\xd9\x0a\xc2\xb7\xa3\xb4\x90\x33\x9e\x16\x99\xac\x4a\x4e\x5c\xc9\x21\xf4\x11\x42\x65\x39\x55\xbd\x26\x4b\xf9\x57\x76\x0c\x06\x7c\xcd\x0a\xe8\xe4\x57\xe8\xe2\xd7\x23\xf9\xbd\x81\xef\x8d\x4c\xaf\x76\x8a\xfc\x27\x7f\x51\xf1\x86\x2d\xe5\x2a\xd5\x5f\x90\x73\xf3\xd3\xa3\x4a\xff\x93\xac\x61\xc9\x72\x01\x8b\x46\x7d\xd8\x10\x48\x64\x3e\xf1\xed\xa8\x2e\xd8\x7f\x91\x25\xfc\xd3\xbf\x20\x85\xfa\x50\x21\x65\xa1\x02\x4a\xd9\x42\x78\x68\xae\x0c\xa5\xd6\xdf\xf8\xd6\xa8\xa8\x03\xcd\x87\xaf\xe7\xcf\xe6\xeb\x9b\x2b\xcd\x85\x34\x21\x7b\xe0\xc4\x96\x8c\x80\x3a\xf5\x2a\xc5\x7c\x28\x5d\x66\x08\x78\xc9\xd1\xff\xd3\xe5\xe5\xcd\xc5\x9b\x8e\xd2\x3b\x00\x81\x46\xac\xb2\x2b\xf7\x9a\xa6\x7c\xb1\x7a\xa3\x11\x04\x5d\xd5\x7b\x12\x04\x27\xbd\xf3\x41\xb2\x71\xdf\x78\x33\xfa\x85\xe6\x1b\xca\x47\x2b\xf8\x47\x36\xfa\xc3\xcb\xf8\x8b\x89\xf9\xa5\x19\x73\xbe\xa2\x8b\x2f\xb7\xe5\x57\x59\xa2\xfe\xf4\x29\x2a\xfd\x2a\x7e\x66\x34\xcf\xc8\xc6\x7d\x37\xe2\xcf\x38\x4d\x75\xb4\xfc\xf4\x19\x0f\x56\x7c\xf1\x9b\x1c\xfc\xc6\x7b\xf8\xf6\x91\xf1\xe6\x16\x6b\x77\x8e\x4e\x8b\x7a\x25\xd6\xf9\x75\xba\xa4\x6d\x48\xa0\x78\x8c\x37\x36\xda\x40\xc2\x2a\xfd\xc1\x07\xcf\x8e\x5a\x1d\x99\xb7\x29\x08\x96\xed\xc0\xed\xf6\x69\x87\xbf\xfa\x51\x37\xef\xdf\xfd\xd4\x48\xad\x83\x20\xed\x05\x79\x18\x7d\x12\x2c\xaf\xcc\x7f\x19\xba\x87\xeb\x7b\xc0\x91\x6c\x9c\xf6\x20\xa7\x18\xbe\x0d\x5c\x34\xbb\xe0\x1d\xc2\x5f\x47\xc6\xf0\x8b\x3c\xb8\xcf\x8d\xfd\xc4\x17\x23\x65\x34\x74\xf1\x15\x60\x3b\xe4\xf6\xd9\xb4\x82\xb0\xe1\xe8\xdc\x98\xb9\xf1\x71\x91\xac\x92\xdd\xd1\xd1\xee\xc7\xf3\x8b\xff\xe6\xe2\xfd\xc7\x77\x67\x37\x17\xd7\xb6\x23\x77\x92\x53\x55\x4d\x54\xfb\x69\xa3\x98\x57\x13\x74\x70\x97\x80\x5e\x83\x11\x3c\x56\x1d\x7c\x6a\x57\x9c\xbd\xde\xb1\x6f\x2d\x92\xe5\x79\x07\xa1\x8f\x71\x74\xa1\xac\x97\x6d\x0e\x7f\x1f\xfd\x81\x64\xda\x6c\xd6\xaf\x83\xd1\x87\x2e\x0e\x22\xdb\x17\xd3\xc8\xab\x16\xc2\x53\x60\xed\x96\x64\xa1\xf5\x1b\x0e\x0d\x93\x92\xac\x61\xa9\x84\x03\xa3\x1b\x17\xad\x7e\xe3\xb6\xbd\x8d\x4b\xe2\x05\xe2\xbd\x86\x35\x8d\x12\x83\x38\xec\x5b\x78\xa9\x84\xf6\x27\x0e\xec\x99\x54\xa4\xe7\xd0\xa4\x41\x11\xdc\xc8\x79\xbf\xba\xc8\x98\x76\x51\x94\x35\x43\x9a\xfc\x99\xe7\xbc\x28\x6b\x86\x04\x82\x8e\x7a\x99\x23\x6b\xfb\xe9\x73\xd1\xb5\x28\xbd\x14\xfe\x4f\x9f\x52\xa6\xd5\xca\x4b\xe5\xff\xf4\x53\xb1\x4a\x94\xfc\xd1\x4f\x18\x86\xf8\xfc\x4b\x59\x50\x2f\xa1\xff\x33\x90\x68\x0c\x57\xf5\x73\xc9\xc9\x3a\xfc\x1d\x5c\x30\xaa\x17\x75\xc7\x85\x69\x1d\x63\xb2\xde\x1f\x77\x30\x7f\x67\x46\x9f\x2b\x03\xb5\x93\x37\xd7\xef\xc8\xda\x7d\xb7\xe2\x6d\x64\x33\xc6\x44\xf8\x33\xe1\xd4\x1b\xc8\xbd\xff\xab\x3b\xcd\x5b\x0d\x5b\x18\xa6\x35\xa1\x81\x3c\x76\xc7\x0a\x99\x4c\x7d\xb4\x62\xbc\x82\xc2\x00\x8f\xd7\xd6\x57\xba\x57\xb4\x2a\x73\x75\xe1\x67\x7b\x63\x82\xee\xed\x27\x8e\xc7\x38\xe4\xad\x91\x26\x3c\x7e\x4b\x23\x1c\x34\xdc\x27\x44\x6f\x52\x91\x9e\x65\xe9\x46\x0e\xe0\xa3\xff\xab\xc1\x81\x83\x94\x0c\xef\xd4\x2e\x75\x67\xb8\xb2\x29\x5c\xa5\xb2\x21\x4a\x6f\xc4\x1c\x1c\xa0\xdd\xc3\x72\xca\x23\xa3\x6e\x6c\x08\xe3\x81\x94\x5d\xc5\xa9\x1b\x0b\x59\xc8\x1d\xd9\x53\x8e\x4e\x12\x90\x85\x4a\x90\x3b\xf8\xd7\x08\x1d\x99\x1e\xdd\x8d\xda\x7d\x87\x04\x7f\xfe\x54\x30\xe1\x52\xf9\x3f\xc3\x1b\xf5\x7a\xf3\x73\xc9\xf5\x7d\x09\xb9\x6b\x86\xa0\xfd\xb3\x15\xf9\x7a\x75\xee\x98\x2b\x46\x6f\xaf\xe7\x1f\x2e\xdf\x5c\x4c\x8a\x91\xd2\x29\x1a\x69\x3d\x24\x97\x28\x71\xd7\x97\x3a\x4e\xe9\x2c\x93\xae\x70\x97\xcd\x57\x72\xb2\xba\x41\x2f\x82\x60\x73\x0d\x8d\xbe\x1f\x9d\xfe\xaf\xd1\xf7\x91\x2a\x2b\xd0\x7c\xda\x57\x92\x46\x38\xb4\xbe\x97\xb5\xe9\x83\xca\xd6\xe9\x48\x54\xf7\x5b\x5f\xaf\x1f\x89\x49\x6c\x7f\x90\x30\x0e\x53\x3d\x48\x3a\x1c\x53\x33\x7c\x44\xa0\xc4\xcb\x06\xe6\x2c\x36\xb1\xfe\xe5\x92\xee\xd0\x11\x8d\x23\x50\x76\x3b\xe6\x74\x51\xde\x15\xec\xb7\x17\x03\xd4\x75\x38\xd1\xf6\xcd\xdc\x0d\x2a\x8a\x50\xbe\x3b\x1d\x78\xc1\x7c\x6e\xf4\xa0\xb4\x6f\x6d\x19\x84\x95\x37\xf3\xa2\x65\x31\xa7\x71\x49\xc5\x8a\x68\x30\xcb\xb5\x3e\x9d\x84\xfa\x29\xcb\xb8\x93\x7c\x1b\xdf\x1d\x15\x81\x8b\x72\xd2\x46\x4f\xd2\x38\xbf\x26\xcf\x11\x5b\xc6\x60\x60\xf7\xc0\xf2\xfc\x2c\xcb\x80\x78\x82\x0f\x90\x30\x28\xf6\x2b\x1e\x29\x4f\x14\x98\x1a\x80\x44\x13\x9e\x66\x59\x6c\x5b\x8b\x29\x92\x95\xb2\x65\x3c\x26\xc4\x3a\xa3\x6d\xdb\x3f\xfd\xad\xac\x7b\xeb\xba\x12\xbd\x55\x7a\x4f\x7b\x69\xd1\x33\x26\x39\x06\xba\xca\x8e\xe8\x26\xad\x2a\x9a\xf5\x44\xd9\xfb\x4f\x51\xfe\x67\x84\x8e\x9a\x95\x2b\x97\x0b\x5e\x0b\x70\x63\x88\xd0\x6e\x77\xd4\x44\xc5\xd0\x03\x0c\x4b\xa0\x22\x3c\xd6\x7d\x02\x67\x12\x9c\x16\x2e\x44\xf5\x9a\xd0\x5d\xc3\x1e\xd7\x03\xcb\xb1\xa5\x32\x9c\xaa\xf1\xae\x08\x1d\x82\x13\xdf\x7e\x6a\x8c\x86\x64\xdf\x8b\xb8\x82\x8c\x47\x69\x5c\xea\x4f\xdf\xf9\x7e\x1a\x5a\x4b\x32\x32\x06\x7b\x93\x82\x8c\x5f\x15\xaf\xa9\x81\x7d\x2a\x86\x43\xc4\x86\x84\x4e\x8b\x19\xf4\x57\x87\x6b\xdd\xe1\x27\x19\x94\x08\xa2\x94\x78\x04\x8f\x19\xd2\xfa\xd9\x3c\xe1\xbb\x23\xaa\x2c\x79\xcb\xa6\x41\xae\x5d\xa4\x0e\xa3\x44\xca\xe1\x71\x8e\x3c\xf4\x11\xe6\x2d\xb3\x34\xcb\x1a\xeb\xcc\x1b\xcf\x29\x05\x13\xf5\x46\x7a\x98\x27\xd2\x0d\x10\x96\x82\x4b\x7e\x16\x0b\x3d\xbd\x66\x1e\x64\x49\xa9\x86\x2f\x2b\x01\xf5\xa8\x40\x47\xc5\x60\x50\x18\xca\x07\xa0\x78\x34\x6b\x87\xc4\x02\x57\x08\xf3\xb8\xd2\xe6\xa0\x35\x39\xf9\xe7\xed\xe7\x93\x93\x3b\x1f\x98\xd9\xef\xb9\x1a\xc6\xd7\x7f\xdc\x6e\x01\xdc\x8a\x5a\x63\xe8\xe8\x9f\x23\x34\xa1\x49\x46\x17\x65\x46\x3f\x5d\xbd\xb5\x8c\x64\x4c\xd1\x88\x53\x40\xee\x8f\x6b\x4c\x8b\x66\x3c\x82\xad\xbd\x20\x27\xff\x1c\x4f\x92\xef\xe3\x49\xf2\xc3\xf6\xdf\xb6\x3f\x6d\xcf\xd1\xf6\x8f\xf1\x24\xf9\x69\xfb\x66\x7b\x86\xb6\x3f\x8c\x91\xdf\xa6\xa5\xdf\xa6\x56\x89\x7e\x8d\x0b\xdc\x6e\x91\xaa\x71\x43\x4e\xe2\xcf\x27\xdb\xcf\xa3\xed\xe7\x7f\xd9\x7e\x1e\x6e\x3f\x4f\xb6\x9f\xb7\xdb\xcf\xf1\xf6\x33\xda\x7e\x9e\x6e\x3f\xcf\xb6\x9f\x9f\xb6\x9f\x77\xdb\xcf\x9f\xd1\xc9\x1d\x5e\x91\xc0\x95\x34\xce\x0c\x69\xf3\x84\xe2\xc0\x98\xc8\x35\x76\xad\x66\x3e\x70\xaf\x6e\xd0\x79\xb7\x5b\xeb\xde\x7d\xff\xe6\x97\x7b\x5b\x6e\x7e\x95\xbb\x97\x56\xb0\xf5\x2b\xba\x28\x01\xc5\x42\x53\x04\xb9\xf5\x0d\xfb\xf8\x9f\xa3\x08\x60\x02\xfb\x99\x33\xb7\x3f\x54\x01\x2f\xef\x59\x46\x7b\xa0\xaf\xdc\xfb\xcf\x68\x28\x86\xd1\x7f\xb6\x0b\x54\x34\x92\x4e\xc5\x0c\x17\xa4\x85\x34\xcc\x27\x3c\x89\xa2\x21\x3f\xd2\x54\xad\x78\x9e\xaa\x99\x7a\xd3\xb0\xe6\x91\x87\xd9\x02\x53\x75\x4f\xa6\xb3\xa3\xfb\xe9\x78\xd6\x45\xb4\x95\x4d\x22\x58\x4d\x03\xc8\xc7\x91\xf2\xf0\x3d\x7e\xc5\x1d\x08\x1c\x1f\x0e\x51\x41\xca\xd1\x62\x95\xf2\xf3\x32\xa3\x67\x22\xe6\x08\x33\xc2\x46\x9b\x5a\xc4\x05\xee\x9f\xe2\xfe\xa9\x07\x7f\x83\xef\xa7\xa7\xcd\xca\xac\x73\x52\x99\xe5\x87\x7f\xc7\xfd\x31\xee\x8f\x91\x4c\xfa\xfd\xc1\xa4\xc7\xa7\x50\xbc\x4a\xfa\xc3\xbe\xa4\x6a\xfb\x3d\xca\x8e\x3e\x86\x1d\xf5\x36\x1f\xf4\xcf\x2e\xed\x0d\x8e\x3e\x7f\xfe\xc3\x69\x84\x76\xf8\x31\x68\xae\xc3\xf2\x9a\xfe\xc7\xc9\x6c\x88\x22\x99\xe0\xfb\xce\x04\x23\x1d\xfb\x43\x57\x6c\xa4\x1a\x75\x27\x1b\x75\x77\xb8\x51\x3b\x7c\xd7\x1e\x31\xb5\x5e\xd6\xb1\xc0\x3a\x95\x1d\xe1\x2f\xa3\x8b\x0f\xe7\x97\x6f\x2e\xe6\x67\x1f\xde\xcc\xdf\x5c\xc0\xe7\xc7\xb3\x9b\x5f\xe6\xd7\x17\x7f\x7a\x7f\xf1\xe1\xe6\x7a\xb2\x8c\x39\x4a\xb8\x2c\x76\xdf\xe8\xfa\xe5\xca\x74\x87\xba\x70\xdb\xf0\xc1\xf3\xb4\x43\x78\xde\xe1\x97\xc7\xee\xd9\x07\xcb\x60\xe8\x25\xf4\xe3\x78\x30\xf8\xe1\xdf\xe1\xb0\xf6\x16\x11\xe0\x03\x7a\xc7\xc8\x29\x52\xbb\xc4\xea\x7f\xcb\x28\x87\x67\x55\x1b\xd6\x66\x61\x8c\x23\xdc\xc9\x55\xf9\x27\x57\x49\xc6\x38\x25\x63\x7c\xfa\xfd\x20\x2e\xc9\xf7\xaf\x5f\xc7\x29\x01\x3c\xa0\x98\x91\x6a\x5a\xcc\xd0\xe4\x87\xe4\x5f\xff\x17\x21\x84\x85\xad\x99\x9c\x26\x3f\x7c\xdf\x11\xfc\x7d\x32\x46\x0a\xca\x90\x8d\xaa\x9c\x2d\x68\x7c\x8a\x70\x5c\x93\x7a\xbb\x9d\xce\x90\xc1\xad\xc0\xf1\x82\x2c\xbc\x90\x71\x9f\xc4\x3f\x0c\x4a\x84\x10\x3e\xfd\x61\x50\x0e\x06\x7c\x9a\xce\x86\x43\xac\x8f\xc7\x27\xb9\xf1\x93\x14\x2b\xff\x32\x79\xcc\x24\xc3\xa8\xc6\xfd\x09\x5c\x29\x25\xf5\x76\x3b\xc7\xd5\xaa\xac\xf3\xec\x0d\x50\xe1\x2a\x59\x6c\xb7\x73\xef\x30\xff\xda\x42\xd4\x93\x0d\x97\xc3\x3c\x18\xd0\x51\xa1\x78\x37\x42\x14\x4c\xc5\x45\xeb\x58\xc4\xcc\x38\xa1\x50\x16\x99\x9a\x09\x64\x99\xe1\xff\xa0\x34\xae\xbe\x75\x69\x85\xf9\xf5\x55\x68\x73\x56\x36\x11\xca\xb2\xdb\x70\x47\x82\xf2\x82\x44\xc6\xc8\x9d\xd3\x3b\xfa\xd5\xcc\x1c\x04\x69\x56\xa1\x0a\x02\xe5\x68\x98\x10\x8f\x0d\xba\x0c\x71\x69\x74\x2b\x26\xaa\xa3\x7d\xe8\x28\xc0\x8a\xa8\x80\xc4\x0d\x80\x3d\x61\x65\x80\x1b\xb1\xeb\x06\xe9\xc3\xa5\x01\xbe\xe4\x64\x8c\x0b\x62\x39\x20\xfe\xba\x00\xba\xc7\x00\x33\x11\x97\x92\xfc\x81\xd7\x84\x98\x29\xbe\x30\x16\xc8\x6e\xc8\x72\x77\xe1\x9d\x64\xaa\xc7\x7b\xe0\xde\xd5\x78\x18\x8c\x70\x3d\x3a\x92\xba\x5f\xd1\xbb\x8b\xaf\x9b\xd8\x1f\x44\xc3\x04\xab\x54\x3b\xec\x57\x22\xf9\xc5\x3d\xe4\xdc\x78\x88\x73\x73\x74\x64\xb1\xdb\x48\x89\xd8\x32\x96\xcc\x99\xb2\x80\xef\xa0\xf4\x6c\x19\x7f\x8d\x0b\xe2\x2d\x8c\x69\x39\xe5\xb3\x19\xc0\x5e\x58\x4e\x73\x47\xf3\x8a\xf6\x20\x2d\x0b\xd3\x86\x09\x59\xd8\xec\x4d\xbd\x07\xb7\x03\x9a\xa8\x0a\xba\xa3\x22\x0e\xea\x3a\x72\xf0\xae\xba\x16\x7b\xc0\xc1\xd0\x5d\xc4\x0c\x33\x63\xc0\xaf\x0a\xc5\x6c\x6a\x42\x66\xa4\xc0\x8a\x4d\x68\x8c\xca\xa4\xb9\x92\x8b\x11\xcb\x92\x55\xdc\x08\x46\xcd\x74\x1a\xb2\x69\xc4\x32\xed\x22\xd0\x2b\x62\xda\x08\xc0\x05\x80\xc9\x16\xe1\x28\xe8\x47\xba\x16\x4c\xab\x43\x08\x68\x4c\x5e\xdf\xe0\x02\x4c\x67\x9a\x07\x9f\x02\x82\x00\xe0\xe5\x38\xd8\x56\xe6\xc3\xb6\x5e\xc6\x3c\x98\x18\x36\x15\x72\x12\xd1\x60\x50\x6a\xdc\x24\x74\x04\x93\x78\xd9\x98\x6d\x16\xa4\x2a\xbc\x55\x0e\x75\x9f\xb7\x25\x1c\x55\x2b\xd1\x5b\x19\x20\x24\x3f\x82\xf1\x16\xa1\xdb\x2d\x98\xb4\x9b\xfd\x77\x66\x3b\x7b\x44\x89\x3b\x8c\x4f\x3e\x0f\x4f\xee\xd6\x38\xfa\xe7\xef\xc7\x52\xf8\xe2\x8f\x4f\x82\x74\xf2\xc2\xbb\x05\xec\x3d\x59\x31\x89\xa2\x9d\x3d\xff\xcf\xbd\xd1\x95\x47\xc6\x82\x6a\x8e\xb3\x19\x8c\x83\x94\xdd\x09\x5b\xe9\xe4\x40\xb4\x92\xc9\x40\x18\x90\x2f\x2d\xe7\x06\x40\xbf\xa5\x78\x77\xa4\xc4\xf4\xe9\x0c\x0b\xbd\x52\x29\x1e\x63\xc9\xd3\x8c\x81\x65\xa2\x92\x2f\xd0\xc4\x36\x24\xc2\xbc\x2c\x0d\x30\xc8\xee\xe8\xcb\x41\xa1\xc8\xdb\xf8\xc6\x68\x8a\x84\x65\xe0\x05\x89\xfe\x23\xc2\x4b\x32\x1d\xe3\x31\x1e\xcf\xf0\x06\x5a\xa3\x90\x2e\x0c\xc9\x43\x78\x25\x1b\x9a\x91\xfe\x18\xaf\xb5\x58\xa8\xc8\x03\xf5\xc9\x03\x90\x8d\x52\x1e\xa5\x0f\xf1\x0a\xc7\x05\xd0\x47\xa4\xa4\xe2\xa5\x86\x06\xae\x70\x2a\x8f\x4a\xff\xe8\x7a\xb5\x7e\x6d\xa4\xc8\x57\xeb\xe1\x10\xfd\xd0\x27\x24\xae\xc8\x6a\xba\x9e\x21\x20\xfe\x83\x41\x9c\x91\xfe\x29\xce\x49\x6e\x79\x44\xe0\x2b\xf1\x62\x48\xa2\x93\x08\xe7\xe4\x7e\xaa\xce\x89\x59\x5c\xe1\x1c\xc2\x1f\x5d\x08\x42\x47\x9b\x29\x9f\x91\x27\x23\x89\x16\xe6\xa0\xc1\xea\x38\x2d\x1b\x67\x69\xba\xdb\x65\x83\x41\xbc\xaf\x3e\x84\x73\x77\x52\x6d\x70\x6e\x4f\xb6\xc5\x30\xfa\x43\x84\x73\x7d\x62\x2d\x71\xeb\x16\x4a\x0c\x06\x9a\xd8\x82\xff\xa2\xb4\x1a\x0c\xe2\x9a\xc8\x0f\x84\x6b\xc9\xf1\xd8\x25\x32\xad\x67\xe4\xa9\xa2\x77\x00\x13\x92\xac\x8c\x10\x5d\x25\x9b\x1d\xda\xe1\x2f\x81\x74\xa4\x62\x7e\x2e\x79\x37\xdd\x20\x5e\xa9\xda\x09\x68\xd1\x96\x1d\x6e\x56\x94\xd3\x1e\xab\x7a\x45\xd9\x03\x31\xba\x27\x73\x64\xbd\x68\x48\x91\xa6\xb2\x6e\x61\xd8\x01\x34\x1b\x1c\x79\x08\xd1\xad\x48\xa0\x39\x9c\xb8\x70\x29\xe8\x48\x9a\x43\xb8\x27\x19\x84\x7d\xaa\xd4\xcd\x7a\x9b\x31\xee\xf7\x83\xee\x84\xf9\x8c\x54\xb5\x5f\x9c\xf1\xf3\xe2\x92\x44\x91\xa6\xa1\xdf\x3e\x1e\xb0\x8e\xf5\x04\x79\x3b\x22\xf5\x77\xc4\x0f\x0a\x1e\x3b\x85\x7d\xa0\x97\x72\xa9\xd6\x6c\x39\x24\x77\xd3\x42\x2f\xd1\x02\x3b\x96\x21\x3a\x89\xe4\x61\x0c\xdc\x89\xe1\x84\x4b\x99\x65\x58\x22\xe5\xfe\xca\xa3\xa2\xaa\x3c\x7d\x36\xaa\xbe\xc3\xa3\x9f\x46\xc5\x09\xd2\x22\x80\x5f\xee\x1a\x2e\x2f\xcb\xbe\xa3\x47\x73\xdd\xd3\x19\xae\x89\x0f\x6e\x48\xd5\xcc\xd7\xa0\x59\x11\x23\xac\x96\x40\xed\xcf\xbc\xe5\x30\x14\x45\x20\xb5\x3c\x6d\x90\x0c\x66\xa4\xe3\x8e\x81\x23\x2c\x8f\x16\xa4\x88\xc9\xf8\x55\xf9\xda\x08\xbc\xe0\x5c\x38\x25\x7c\x18\x4d\x67\x24\x1a\x76\xe4\x2d\xa6\xe5\xcc\x82\x7f\xa7\xfa\x10\x63\x43\x12\xed\x49\xee\x01\x85\x9b\x95\x38\x06\x64\x71\x55\xe1\x24\x8a\x92\x68\x12\x0d\x2b\x7d\x0b\x35\x88\x1a\x7b\x6f\x93\xf2\xea\x1b\x46\xcf\xde\x6f\x0d\x40\x66\x79\xda\x79\xbb\x26\xd8\x2c\x4c\x8e\xd5\x59\x1c\x73\x22\xf7\x8a\xc9\x45\x22\x84\xa6\xe3\x19\x42\x86\xa1\x29\x25\x55\x34\xfe\x94\xb1\x64\x6a\xb9\x69\x79\x4a\x22\xc1\x6b\x1a\x25\x31\xfb\xf1\xfb\xc1\x20\x9a\xce\x22\xb8\x3a\x50\x42\x0a\x3b\xfe\x5e\x2d\xab\xfe\x18\xd7\xd3\xc2\x86\x8f\xb1\x8c\x99\x6d\xb7\x71\x3d\x2d\x66\x64\x3a\x43\x08\xa7\x84\x4f\x4f\x67\x93\xb3\x58\xfe\x43\x49\x14\x21\x5c\x4e\x6a\xb8\xfe\x53\xa3\x9c\x40\xda\xd4\x0c\x60\x1d\x0e\x91\xbd\xdf\xde\x3f\x36\x9a\x35\xb2\x67\xd2\x0c\xa7\xe4\x69\x87\x6b\x45\xf3\xbd\x9b\xb0\x7f\x8a\xd0\x2b\xe0\xe9\x73\xb8\x2d\xa6\x46\x3a\x1c\xe3\x5c\xcb\x87\x0b\x3f\xf9\xc4\x24\x5f\x00\xae\xb4\x4d\xbe\x18\x9e\x62\x77\xb4\x05\xe5\x2c\x90\x71\x22\xd1\x9c\xda\x98\x23\x84\xd5\xde\xa4\xc1\xde\xa4\xb0\x37\x35\x51\x58\x12\x7a\xf4\xbc\x0c\x4e\x89\xdc\x38\x49\x4c\x1d\x27\x13\x53\x84\x97\xde\xcf\xa5\xee\xd0\xc6\xca\x1d\xb0\x56\x36\x3f\x9e\x0e\x06\xd1\x49\x44\xbc\x56\x6c\x8e\x4f\x51\x73\x3c\x64\x18\x06\xfd\x26\x13\xb2\xb4\xc8\xce\x72\xe9\xf5\x01\xbc\xca\xbf\xd8\x85\xe5\x70\x1d\x97\x98\xfa\x22\x6e\x81\xec\x6a\x03\xf9\xf9\x95\x6c\xd3\xca\x08\x46\x8c\x8c\x5f\x31\x27\x22\x30\x29\x60\x4f\xd9\xcc\xd2\xf9\xc1\x60\xa5\x2f\x7c\xa7\x6c\x86\x8e\xca\xee\x7b\x0e\xa0\x1c\x5d\x17\x1c\x54\x1d\xa4\xdb\xad\xe1\x4d\x0a\xc2\xa7\xe3\x19\x66\xb0\x22\x71\x49\xf8\xf4\x7b\xb9\x56\x44\x33\x5d\x45\x52\x99\xae\x26\xa9\x4c\x97\x93\x74\xfa\x3d\x9c\x7b\xa5\x5c\x3a\x46\x76\x28\x8f\x73\x08\x53\xf0\xd5\x7d\x42\x2a\x13\x53\x1d\x83\xcc\xc1\xfa\x84\xd4\x26\xac\x3e\x66\x86\xa5\x84\xf0\x09\x3b\xae\x13\xc8\x35\xa9\x8e\x8b\x64\xbc\x43\xbb\x78\xa5\xa6\x2c\x23\xab\xe9\xd8\x22\x64\x66\x83\x41\xe6\x0d\x48\x5c\xcb\xdf\x9a\x61\x18\x0c\xe0\xa2\xe8\x0f\x72\x3a\x6d\xa0\xde\x8a\xc7\xff\x2a\x27\x75\xa9\x19\x8e\x7d\x90\x86\x2d\x6b\x78\xe2\x18\x02\xbc\x22\x5a\xe2\x8c\xd5\x9d\xe5\x6a\xbb\xed\x6f\xda\x27\x1d\x70\x97\x3d\x05\x07\xc7\x04\x4b\x73\xf6\x1b\xcd\x22\xd3\x17\xa1\x65\xda\x15\xc2\x6b\x72\x8a\xef\x81\x0b\x38\x97\x12\x02\x80\x51\x19\x06\x7f\xe3\x1c\x98\xcb\x55\xb5\xf1\x17\x8d\x1c\x60\x60\x0b\x37\xd3\x62\xb6\x97\x0d\xc4\x15\xb9\x55\x7b\x5e\x4e\xd3\x7c\x30\x48\xe5\x3f\x38\x06\x72\x32\x7e\x95\xbb\x75\x96\x0f\x87\x48\x2e\x61\xbc\x20\xe5\x34\x9f\xc9\x7d\x33\x18\x64\xd3\xf5\x70\x28\xa7\x9e\x90\xdb\xc1\x20\xae\xc8\xd3\x0e\xe1\x67\xb7\xe2\x60\x90\x4e\xf3\xd9\xa4\x9a\x2e\x66\x64\x39\x18\x74\x08\x16\x4b\x94\xa8\xd8\xa3\x7b\x49\xe6\x2c\x0f\x69\xdd\x4d\x60\x05\x46\x91\x54\x98\x55\x6f\x1e\x8b\x74\xcd\x16\x49\xbd\x33\x8b\xe5\x7e\x17\x67\x78\x89\x53\x29\xb0\x4b\xc2\x68\xd4\x7c\xa2\xf1\xe8\x8f\xa3\x3f\x46\xcf\xb7\x50\xf6\xf3\xcb\xe8\x43\xc9\xd7\x30\x31\x9c\x3c\x15\xe6\xfb\x5a\x71\x1f\x49\x8e\x6d\xd0\xc7\x54\xac\x92\x4a\x3f\x06\xc8\x1f\x26\xcd\x32\xa4\xca\xa0\x1a\xd9\xb1\xe5\xe0\x19\xe4\x88\xc6\x65\x1c\x45\x98\x37\xde\xb1\x90\x7d\x94\xec\xd1\xd8\x5e\x13\x81\xd0\x69\x96\x20\xe1\xfa\x0d\x06\x2f\x03\x36\x61\xa1\x96\x8b\x3a\xcf\x97\xfe\x79\x5e\x91\xe5\xb4\x9c\xe1\x14\xf8\x60\xb5\xf4\x11\xae\xf0\x62\x5a\xcd\x10\x8e\x73\xc2\xdd\x63\x4c\x35\x43\x13\x1a\xcb\x7a\x64\xc5\x49\xa1\xae\xe0\x19\xae\xd1\x2e\x9e\xce\x30\x0f\xde\x4c\xc5\xc4\xf8\x09\xd3\xa2\x78\x9a\x65\x80\x45\xa3\xdd\xc4\xb9\x47\xe6\x2f\xea\x75\x59\x61\x8f\x1c\x02\x22\x6d\x3f\xd8\x46\xbc\xba\xdf\xbc\xc4\x17\xfd\x8d\xf5\x8d\xea\xa3\xb7\xb0\x3d\x02\x66\xf9\xf2\x37\x90\xb4\xe1\x4c\x44\xf9\x8d\x2c\xd5\xd0\x48\x42\x21\x4f\x06\x29\xfc\x08\xc9\x83\x76\xe2\xe0\x2a\xf7\x26\x06\xe3\x30\x74\x81\x28\xf9\xcd\x1f\xc7\x83\x01\x9d\x8a\xe3\xd3\x99\xf9\xdf\x84\x77\x8b\x3c\x2e\x33\x42\x93\x18\xde\x32\x64\x3a\x2f\x1c\x4f\x99\x79\x32\x19\x63\x21\x4f\x21\x3e\x43\xc9\x94\xc2\x05\xcc\xcc\x35\xac\xf6\xd8\x83\x10\xef\x8e\x4a\x96\x31\x2a\x6a\x50\x67\x70\x7e\x18\x25\x4d\x01\x54\xea\x28\x1a\xca\xff\x47\xe6\xfa\x29\x78\x57\x8a\x21\x9d\xb9\x10\xc1\x5c\x3d\x60\x1a\x96\xeb\x35\x07\xb6\x4b\x86\x49\xb1\x44\x97\x34\x15\x5e\xbb\x72\x43\x78\xe9\x28\x2f\xef\x06\x83\xf8\x8f\x84\xb4\x30\x22\x27\x10\x19\x47\x6e\xba\x7b\xff\x04\x4f\x2f\x49\x2f\x1a\x72\x94\xc4\x9c\x08\xac\xd2\x70\x84\xbc\xe9\x58\x78\xb8\x8d\x2d\x4f\x93\xdb\x6d\xe0\xd8\x54\xf1\x23\xdb\x6d\x7b\x28\x1a\x09\x3f\x40\xfc\xce\x7f\xdc\xf3\xa4\xa1\x3d\x57\x9b\x83\x41\x5f\xb2\x4c\x02\x56\x0d\x02\x29\xe6\x95\x2b\x62\xe3\x56\x38\x5b\xc6\x16\xf3\x0a\x14\xd6\x50\xf8\x53\x51\x08\xc5\x83\x2b\x38\x68\xcd\x05\x17\x0a\x0c\x5f\x1f\x4a\xea\x01\x8f\x1b\xdf\x10\x6d\xa4\x52\x79\x44\xc0\xe9\xa4\x0b\xef\x01\x30\x57\xef\xbb\x68\x58\x0d\xa3\xef\x46\x3d\x25\xa8\xa5\x5c\x1e\x61\xbd\x74\x21\xd8\x3d\xed\x99\x23\x30\x42\x1a\x86\xb9\x7f\xaa\x19\x16\xe7\xe0\xe2\x15\xfb\x51\xb2\x2f\xc7\xc7\x72\x59\xa5\x24\x2e\x89\x90\x5c\x8a\x21\xeb\xd0\xac\x54\x79\xf8\xa8\x06\x03\xf3\x25\x89\x10\xf8\x69\x18\xf7\x09\xf1\x02\x35\x26\x67\x8a\x0b\x73\x39\x79\x24\x8f\xa8\x9d\xba\x0c\x2d\x4d\xa9\xda\xb6\x62\x24\x56\xb4\x88\x73\xb0\x8a\x04\xe1\x08\x57\x32\x23\x20\x7f\x2a\x5b\x2e\x29\x85\x0c\x06\xd1\xa7\xc2\x92\x9b\xec\xd3\xd5\xbb\x0b\x13\x57\x4c\xc7\x33\x38\x48\xcd\x71\x2e\x39\x0e\xd9\xac\x7a\x30\xe8\x77\xe0\xbd\x7e\x28\xc5\x0a\x40\xf6\xa1\x19\x19\xbc\x73\x86\xe3\x18\xa1\x8e\xb5\xce\x4d\x07\xa9\xe9\x20\xf8\xe2\x71\x29\x57\x4d\x01\x5b\xcb\x22\x15\x79\x4a\xf3\x3c\x79\x32\x9e\xc8\x33\xf9\xa9\x4c\x68\x33\x40\xb2\x4c\xe3\x6a\x94\xe6\x39\x16\x8a\xcf\xc8\xed\x0c\xc9\x9d\x2e\x69\x00\xae\x63\xc0\x92\x2c\x0d\xd5\x00\x27\x4f\x96\xb0\x31\xb4\xdd\xc6\x39\x38\xe2\xd2\xa6\xb9\xd9\x94\xcd\x08\x95\x53\xe8\xb9\x14\x13\x72\x72\xbd\x4c\xa8\x83\x2e\xb0\x19\x1a\x0c\xc2\x40\x58\x09\x32\x2d\xe0\x9b\xab\x15\x23\x37\x85\xfb\x85\x2a\x6d\x7e\x0f\xd5\xca\x08\x2c\x5b\xa3\x88\x8f\xb7\xb3\x5c\x0e\xfb\x6e\x20\xc3\xa6\x7c\xa6\xcb\x9b\xf2\x99\x64\x57\x3a\x4b\xd3\x02\xac\xcc\xa0\x53\x1f\x48\xaa\x29\x76\x3e\x18\x54\x6e\x7e\x32\x8f\xae\x28\xe5\x45\x49\x89\xe8\xae\xe3\x0d\xdd\x42\x8e\x46\xf3\x68\x28\x1c\xc0\xbb\x6c\x1f\xdf\x6e\xe9\x54\xcc\x06\x03\xe1\xcd\xfd\x7d\xd3\xc9\x9a\x2a\xcb\x5e\xe9\xc8\xd3\x82\xcd\xcc\xf4\xc9\x74\x2e\xef\xa3\xb9\x0f\xd5\xfb\xe2\x6d\xb1\x2c\xe1\x76\xa1\x75\x4d\xfc\xb4\x33\xaf\x47\xfa\xa7\x2b\xe4\x4e\xbb\x11\xee\xc3\x41\xef\x53\xbe\x3b\xe4\xeb\xbd\xc8\x74\x5a\x6d\x0a\xb6\x83\x5e\x0e\x8a\x39\x38\x32\x41\x1b\x51\x73\x7a\x2d\xd2\xc5\x97\x1b\x9e\x2e\xe8\x64\x4f\xb8\xca\x77\xa7\x99\x8a\x4a\x86\x4b\xc6\x45\xfe\x37\xec\x92\x76\xa0\x51\x16\x44\xf8\xbf\x54\xf4\x92\xe5\x14\x1c\x99\x09\xfb\xa9\x22\x72\x56\x50\x45\xb1\x25\x91\xb2\x3f\xb4\xb2\x93\x76\xf0\x21\xcc\xd7\x76\xeb\x1d\x32\x67\xb7\x25\x17\x34\xd3\xef\x6a\x92\x2c\x90\xfd\xb1\xa6\x8a\xc2\x2b\x5e\x72\x8b\xe0\x77\x29\xa3\x3b\x8f\x1d\x01\x6f\x46\x92\x5e\xbd\x93\x1c\x50\x87\x4f\xf7\x28\x32\xb3\xad\x21\xaf\xfd\xe9\x0c\x55\xd8\x22\x75\xe9\x19\x8b\x21\x89\x46\x52\xa2\x19\x12\xe5\x24\x76\x87\x70\x16\x47\xdf\xc1\x31\xf9\x1d\xac\x4e\x00\xd6\x04\xf5\xd3\x64\xaf\x2e\x99\x5a\x0e\x47\xcf\x55\xcb\x3d\x4f\xb4\x2a\x0b\xbc\x3a\x20\x1c\x0b\x22\xe4\x27\x1a\xe9\xaa\xc0\x5d\x1d\x19\x7b\x0f\x4a\x70\xbd\xe2\x7c\xdc\x18\xd2\xad\xd3\xc7\xde\xc3\xa6\x37\x48\x71\x04\xce\x02\x7a\xce\x19\x7e\x84\x90\x22\xf7\x35\xde\x97\x45\x2b\xdb\x9a\x63\x4b\xe6\x50\x8f\x19\x6d\x3c\x60\x16\xf6\x55\x0a\xbf\x7e\x07\x7e\x74\x37\x40\xdc\x9e\x74\x49\x98\xa6\xab\x4b\x92\xdb\x8c\x9f\xe0\xe8\x49\xa8\xb9\x6c\xfe\x2b\x13\x2b\xd8\x05\x49\x58\xeb\x34\xb5\x22\x3e\x7e\x48\x2b\xbd\xbe\x92\x12\x83\x24\x99\xb0\x1d\xda\x75\xf5\x52\x59\xa1\xf4\xd4\xf9\x86\x90\xcf\xc3\x7a\x90\x9a\xcd\x61\x96\xe2\x00\x6b\x94\x04\x66\x3c\x3d\xb6\xec\x29\x01\x12\xf0\xc5\x59\x51\xd3\xee\x81\x33\xf2\xbe\x3c\x2c\x5a\x7d\x96\x8b\xad\x59\xbc\x6e\x68\x2a\xfb\x15\xa1\x2e\xa6\xb9\x39\x0f\xd3\x70\x84\x67\x23\x56\xe9\x39\xcd\x2c\x39\x3c\x94\x61\x38\x9c\x11\x8a\xf9\x76\x7b\x1f\x5b\xf9\x1d\x47\x9c\x66\x8c\xd3\x85\x88\x34\xb6\x39\xfd\x2a\xb0\x40\x38\x8d\xc3\x05\xd5\x6c\x7e\x7b\x35\xf9\xdc\xb5\xa7\x44\x13\xac\x7c\xd2\xe8\x92\x59\x46\x7a\x51\x28\x26\x45\xcf\x6f\x73\x3d\x34\x7b\x6f\xe6\x2e\xc5\x42\x37\xb5\xea\x6e\xea\x47\x5e\x2e\x28\xcd\x64\x13\x77\x3b\xec\x19\x42\x35\xa0\x37\x15\x2d\xb6\xb1\x48\xeb\x9e\x78\x8f\x6b\x9e\x64\xaa\xbd\x1b\x5a\xf7\x08\xde\xbb\xd7\x91\x81\xe6\x57\xb8\xfb\xf2\x58\x53\x9f\x5a\xbd\xa1\x10\xe0\xef\x00\x3b\x65\x42\x6e\x5e\xdd\xb2\x54\xe8\x9b\x41\x95\x4a\xfb\x25\x55\x3f\x20\x16\xec\xa5\x34\xee\xbe\x9a\xfb\xf7\x65\x46\x73\x77\x84\x75\x1e\x6b\x6a\x3c\x02\x85\x07\x18\xf1\x20\x44\x1f\x7e\x1d\xaa\x12\xea\xe0\x0c\xd4\x25\x40\x63\x14\x8e\x98\xa0\x08\x76\x5f\x0a\x63\x60\xed\x47\x54\xf4\xbf\x6a\x0a\x26\x03\x5e\x20\x33\xbb\x9a\xf4\x4f\x6d\x08\xf0\xd6\x72\x17\x41\x40\xcd\x73\x8d\x3c\x12\xd5\x9b\x2c\x15\x34\x0a\x3a\xaf\xe9\x69\xab\xe7\x60\x12\xea\x0a\xf5\x04\xe3\xfe\x18\x5b\x8c\xfb\x60\x6c\x5a\x9b\x96\x21\x2c\x1b\x1b\x7b\xa3\xc5\x90\x9d\x5b\x56\x9d\xa7\x75\x45\xb3\x9f\x1e\xa1\x0f\xac\xb8\xf3\x2b\xe9\x97\xb8\x91\xea\xad\xba\xf5\xf2\x12\x95\xc0\x69\x1e\x48\xb1\xdd\x8e\x09\x21\xa5\x1d\x3b\x24\x99\x65\x90\x2d\xbd\xd9\xe2\xfa\xa3\x3d\xf9\x3c\x10\x8c\xdb\xd3\xc9\x43\x22\x1f\xa7\x8d\x10\xc3\x83\x9a\x17\x43\x6f\xca\x79\x83\x52\x4b\x29\x1c\xe4\x04\x5c\x91\xf1\xab\xea\x35\xf8\xf6\x68\xa6\xaa\x66\xc8\xa3\x58\xaf\x86\xc3\x0a\xb5\xd7\x8c\x71\xdb\xae\x3d\xe1\xdb\x65\x63\x5d\xc7\x5e\xeb\x90\xe1\x30\x5c\xda\xdc\xd2\x83\xd0\x47\x46\xee\x56\x19\xda\x77\x24\x19\x8d\xf5\x40\xa4\x4e\x55\xa6\xde\x71\x4f\xa5\x02\xbf\x51\x70\xad\xb3\x9f\xfa\xd3\x91\x3b\xa9\xb6\x5b\xaf\xea\x49\xab\xce\x79\x9c\x23\x94\xc4\xb9\x91\x66\x8d\x48\x86\xa9\x5a\x6b\x38\xc7\x96\x48\xdb\x23\x12\xe1\x7c\x04\xed\x8a\x51\xc7\x21\xa3\x32\xca\x66\x66\xf6\x78\x39\x33\xc7\x0b\xf0\xf8\x7b\x17\xbc\x1a\x39\x47\xb4\x50\x93\x1d\xb6\x1d\x74\x97\x45\xac\xba\xf8\xca\xc4\x81\xf7\x28\xd2\x5a\x73\x47\xee\x66\x84\xf9\xd7\x22\xc3\x21\x88\x50\x71\x41\xd8\x54\xe8\xcb\x5b\x42\x08\x55\x0e\xfd\xd4\xca\x20\x84\xea\x09\xb4\xfc\x52\x7f\xbc\xc3\x7e\x8b\xe4\x21\xd0\xba\xc2\xee\xd8\xeb\xea\xb4\x50\xf1\x61\x09\x8b\x86\x62\x8c\xaf\xe3\xe9\x17\xa0\xb5\x40\xc0\x65\xac\x9f\x1f\x7c\x82\xe7\x8f\x2f\x28\x41\xa7\xec\x28\x03\x26\x78\x9f\xfa\x96\x5b\x51\xf2\x67\x12\x2b\x09\x43\x9f\x22\x21\xa9\x6d\x12\xea\x61\x94\x78\x0c\x23\xf8\x78\xd4\x6b\xdc\x78\x9d\xd5\xc7\xcc\x86\x53\xb7\x0f\x3c\xe7\x30\xaa\x92\xe0\x28\x73\x04\x7c\xdc\x24\xe0\xa7\xfe\xf9\x36\x52\x57\x26\x1e\xf5\xb3\x5c\x6a\xa3\xf7\x9c\x0a\xfe\xd8\x52\x68\xd1\x8b\x5e\xab\xb3\xf8\x05\xbb\x1e\x49\x0a\x2a\xe0\x4a\xc8\xf5\xc5\xd7\x0b\x36\x3a\x11\xc1\xb1\x32\x18\x80\xa7\xc4\x55\xa9\xe9\xbc\x8d\x40\x98\x86\x0d\x53\xa9\xba\x1e\x97\x1a\x07\x95\x1a\x9b\xc6\xca\x54\x9b\xbc\xc3\xdf\x9f\xbe\xaf\xf4\x9c\xb5\x44\xb7\x65\x99\xd3\xd4\xb3\x1d\xa2\x13\x61\x6e\xb3\x12\x18\xd9\x4d\xc7\xac\xcb\x59\x09\xe9\xb7\x79\x6d\x6d\x1d\x98\xc3\x53\x84\x3b\xd6\x6e\x99\xe7\xe5\xc3\x95\x66\x07\x2b\x7f\x0e\x5a\xc3\x7e\xb4\x7f\x53\xd8\x6c\xbe\xda\x64\x73\xfa\x27\xed\xa0\x66\xfd\x31\x4a\x5a\x24\x4e\xa0\x5d\xa3\xd1\xc6\x35\x4f\x87\xf2\xb0\x47\xcb\x63\xb3\x27\xb4\xef\x20\xbb\x47\x86\x11\x8a\xc2\x02\xf3\x32\xa4\x67\x87\x36\x18\x80\xce\xef\x62\xe4\x63\x77\xba\x65\x91\xc7\xd4\x64\xa3\x2e\x4f\xa4\x10\xbe\x69\xa6\x36\x9f\x14\x52\xe1\xf6\x60\x77\xeb\x5f\xd0\xd3\x22\x23\xb7\xed\xf5\xa3\x0d\xf1\x9b\xbb\xc3\x71\x8d\x86\x43\xdc\xe1\xaf\x1d\x3a\xd3\x17\xfb\x78\x59\x7b\x49\x0f\x76\xf7\xe1\x35\x3f\x28\x80\x1a\x22\xfc\x15\x07\xbf\x3f\x9a\xa3\xc4\x8a\x9c\xda\x87\x97\x17\x52\xa8\x6b\x88\x02\xae\x20\x50\x64\xe4\x05\x42\x08\x57\x8a\x8d\x73\xed\x5c\xc4\xf8\xdd\x17\xf6\x72\x14\x6e\x3f\xcc\xb3\x42\xd7\x11\x74\x47\x2d\xe3\x10\x38\x1b\x09\x96\x35\x15\x8b\x55\x47\x2a\x6f\x4d\xbb\x62\x9c\x6e\x14\x0a\x96\x78\xb3\x8d\xb4\xb1\x0c\x1b\xf1\x5d\x27\xa2\x12\x0d\xfc\x42\x9b\x83\xd8\x96\x4a\x11\x8e\x9b\xda\x5d\xb1\x20\x14\x39\x05\xaf\xed\xb6\xcb\x03\x13\xea\x34\x41\x14\x70\xee\x4d\xe2\xae\xca\x3b\xc2\xd4\x29\xd9\x41\xef\xf8\x48\xb1\xe2\xde\x60\xa0\x80\xbf\xd4\x4c\x3e\x4a\xa8\x9a\xe1\x66\xf2\x44\xab\x59\x1f\xd8\x78\xe0\x61\x53\xbd\x81\xa8\x97\x0c\x3b\x31\xea\x99\xa3\x49\xbc\x7c\x89\xaf\x8b\x46\xeb\xcb\x1f\x57\xc8\x77\xfa\x0e\xa8\xb1\x9c\x3e\x15\x46\xac\xda\x73\x02\x87\x39\x2a\xca\xd5\x53\xf6\xbe\xf3\xda\xbb\x0e\x0a\x32\x06\x43\xd2\xad\xb1\x60\x36\x99\xba\xc7\x33\x2d\x0f\x07\x9a\x36\x0f\x4f\x68\xfb\x7e\xe3\xc8\xc5\x8a\x2e\xbe\xfc\x5c\x72\x38\xb6\xd5\xc3\x80\xbe\xa1\x34\xec\x1a\xaf\x0b\xe5\x83\x12\xc4\xca\x5f\xca\xf2\x8b\x97\x4c\x20\xa3\xdb\x7d\x47\x05\x24\x08\x23\x53\x5b\x06\xf8\xaa\xdc\x53\x44\xa5\x52\xdd\xd2\x45\xb9\xa6\x46\x1e\x08\x93\xd4\xc1\x6e\xd9\xc3\xa9\x86\xcb\x75\xff\x2d\x99\x77\xe1\xb5\x6f\x49\x77\xed\x3d\x95\x98\xab\x3b\x85\xba\xf3\x72\x68\x59\x72\x7b\x81\xa3\x92\xb3\xee\xe4\x6a\x48\x7b\x6b\x39\x20\x36\xed\xc1\xa2\xd9\xd2\x4a\x20\x59\x0d\x3e\x98\xbe\xbb\x75\xf3\xf2\x5d\x6f\x55\x96\x5f\x6c\x49\x65\x77\x49\xef\x7f\x57\x75\xac\xe8\x7d\xb7\xee\xa8\x24\xed\xce\x0f\x33\xfd\x3b\x7b\x26\xab\x4a\xed\x4a\x69\xd4\x57\xed\x1b\x4a\xb9\x6c\x7a\x66\x9b\x82\x58\x16\x2a\x84\xf3\xf2\xa1\x47\x9b\x8c\x42\x7b\x5d\x77\xef\x3a\x7d\xd2\x4a\xb2\x63\x24\xb3\xfe\x18\x47\x0f\x2c\xcf\xf5\x52\x55\xa3\x8a\xc3\x9d\xa8\x09\x20\xaf\x8b\xeb\x55\xca\xf5\xa5\x8c\xac\x25\xa6\x38\xf2\x26\x2e\xc2\xd3\x59\xbb\x65\xe1\x6e\xd9\xbf\x7d\x25\x01\x08\x8e\x90\x4a\xa4\xd5\xea\xca\xbf\x08\x82\x3c\x87\x1a\xe3\xc6\x3b\xc2\x20\x6c\x85\x7b\x22\x70\x72\xeb\x5f\x30\xc9\x23\x78\xef\xdd\xf2\xdb\xbb\x42\xae\xef\x65\x9d\x2f\x59\x9e\x83\x41\x23\xd8\x15\xf5\xd2\x22\xeb\x19\x8b\x2f\x59\x8c\x0a\xd6\x3e\x98\x83\x31\x68\x34\xb5\xdb\x56\x5c\x9e\x04\x14\x47\x92\x65\xd6\x9e\x20\x87\x91\x5e\x35\xad\x0b\x10\xeb\xdc\xba\x19\x81\xb0\xf5\xfa\xdb\x32\x99\xf6\xd4\x9e\xcc\x4b\x13\x5b\xc6\x05\xf2\xf4\x36\xed\xdd\x37\x3c\xee\xab\x87\x27\x94\x9c\xee\x89\xc1\x7c\x3a\x9e\xa1\xe4\xfb\x43\xd1\x58\x29\x3d\x42\xb0\x7a\x00\xa5\x52\x32\x0d\xa8\x9c\xb2\xa9\x76\xaf\x5e\x2c\xb8\xd6\x02\xe3\x30\x30\xc5\xc7\x6d\x52\xc6\x0e\xbd\x06\xa8\x69\x52\xe5\xd2\xac\xb7\xe4\xe5\xba\x57\x16\xd6\x05\x9c\x9a\x34\x39\xc2\x55\x6b\xd2\xcc\x19\xb0\x9f\xf7\x0a\x8e\x9b\x6e\xa1\xb8\xfb\x2e\xbe\xa3\xc1\xfb\x28\x6e\xc7\xc1\xfb\x3b\xd7\xa9\x77\xc1\xdf\x38\xe5\x5b\xbb\xac\xc5\xa9\x34\x2e\x63\x9b\x01\x70\x6b\xdb\xda\x51\x76\x4f\x6b\x67\xe7\xae\xc6\xf0\x6c\xdc\x4f\x10\x2c\xff\x11\xbb\x27\x51\x6a\x2e\xec\xf6\x11\x07\xf3\x48\x15\xbc\x56\xd9\x50\xbf\x55\x86\xac\x69\xae\x3e\x8e\x2c\xd5\x05\xb8\x36\x41\xbf\x8a\x44\x80\x79\x43\xe2\x18\x14\xa3\xbb\x16\xac\x5e\xad\xbe\xc6\x9b\x64\x59\xbd\xad\x5c\xd7\x1b\xca\x17\x34\x0b\xd5\x77\xd9\x32\xee\xdb\x3b\x9f\xf1\x91\xf1\x8f\xaf\x2b\x26\x5a\x94\xd7\x3f\x1d\x04\x85\x6c\x84\x91\xf3\xe5\xb7\x76\x44\xda\xd4\x26\xd2\xf9\x22\x34\x18\xf4\xc5\x9e\x34\xda\x03\x94\x4c\x12\x4e\x01\x34\xed\x3f\xfa\xc2\xdd\x48\x35\x1a\x1b\xc8\x50\xa0\x53\xd4\x72\x57\xc9\xd1\x60\x40\xcd\x13\x3d\x9f\x75\x5c\x6e\xf9\x17\xbd\x76\x7e\xd0\x4e\x81\xc9\xa8\x47\x0b\xf0\x92\x8a\x62\x8a\xa7\x4f\x5f\xe8\x63\x62\xc5\x2b\xdc\x8d\xa6\x1b\x48\x6f\x7d\x42\xbe\x4e\x82\x10\x35\x67\xbe\xc4\x14\xa3\x0e\x48\xe1\x8e\xb2\x08\xdd\xed\x70\xd0\x04\xbd\xad\xf7\xb5\xc4\xbf\x8d\x69\x88\x93\x93\xae\xc0\x24\xee\x68\x5b\xa7\x34\xfa\xc2\x16\x1b\xc9\x87\x62\xba\xdb\xcd\x90\x12\xe4\x7d\x23\x39\xb3\xce\x64\x4b\x61\xf1\x5d\x06\xab\xd3\x43\x43\xb1\x27\x06\x4c\xcc\xa6\xac\x2a\x76\x9b\xd3\xf3\x12\x7c\xb6\xc8\x9d\x73\x05\xf5\x23\xcd\x6b\x7b\x9a\x01\xdc\xd9\x70\x16\xde\xe5\x38\x3c\x22\xee\x2c\x24\x9f\x18\xb1\x62\x45\x39\x13\x15\x8a\x39\x06\x8f\xf0\xcf\xf1\xfc\x9e\x66\x5d\x83\xea\x48\xea\x70\x88\x10\x79\x7b\xaa\xeb\x30\x51\x1c\xfa\xde\xf3\x04\x68\x27\xff\x46\x99\xca\xd1\x17\x58\xe2\x11\x7e\xfa\x06\x92\xe2\xed\x11\x49\x5c\xf8\x2e\xbe\x40\xf8\xfa\x7f\x78\xaa\x94\x81\x9d\xfe\xbf\xdd\x4e\x67\x2f\x9e\xae\xf6\xa1\xd9\x58\x9f\x8a\xc5\x09\xc4\x5d\x35\x7c\xda\x0f\xeb\x3d\xcb\x68\x66\xf8\xed\x3d\x13\x64\x27\x30\x9c\x8b\x0e\x69\xd5\xbf\xfa\xf1\x73\x62\x8f\xe3\xac\x70\x41\x9e\x76\x92\xc2\x2d\x62\xcf\x2a\x76\x2a\x59\x97\x19\x11\xb8\x70\x0f\x9e\xa6\x02\x1e\x3c\xb1\xb9\x60\x35\x9e\xea\x74\x96\xfc\x0c\x0b\x55\x2b\xf4\x73\xa7\xfe\xe5\xf2\xa1\x8e\x6b\x13\xff\xec\xd3\x45\xf9\x3c\x98\x51\x17\xe2\x4e\x4b\xfe\x64\xce\xb2\x3f\x9c\x8c\x04\xad\x44\xcc\xd0\xa4\x00\xd5\xa6\x11\xcb\x12\xf5\x85\x8b\x9d\x59\x3e\xe7\xff\xc3\xcb\x47\x9f\xbf\x85\x7f\xfe\xfe\xb7\x16\x90\x9a\x43\x6f\x2b\x1c\x81\xbe\x6d\x68\xc3\x95\xc6\xa2\xa1\xe8\x84\xb0\x08\xad\x65\x03\x36\xf9\xc8\x63\x34\xac\x29\x23\x59\xc7\x1c\x47\x19\xb5\xa3\x1f\xa1\xed\x16\xc2\xf4\x92\x0c\xe4\x93\x4e\x11\xa4\x00\xb9\x43\x8f\x75\x60\x9a\x1b\xa8\x88\xc7\x63\x7c\x36\xfa\x22\xcf\x37\xb0\xa3\x43\xb1\x52\xa5\xb1\xae\x9c\xed\x5d\xe3\x19\xe6\x3b\x9b\x92\x3c\x19\x62\x93\x5c\x2a\x12\x91\x9c\x63\x75\x87\x96\x5c\xef\x9a\xf6\xb2\xff\x63\xc4\x81\x70\x45\xb9\x8a\xf0\x79\x93\x07\x3f\xb1\xc5\xf3\xa9\x1c\xcc\x99\x26\x27\x07\x9e\x72\x5f\xba\x52\x40\x94\xb8\x29\xd5\x0b\x4e\x17\xf6\x82\xb2\xe4\xae\x62\x8f\xfe\x1b\x90\x01\x9f\x16\x54\x60\x10\x06\x5a\x40\x9e\x19\x68\x5c\x4a\xc1\x06\xcc\x5f\x52\xab\x04\x64\x55\x76\x82\x55\xa0\x1b\xa2\x7b\x5d\x01\xc4\x11\xc7\x35\x2e\xb4\xbe\x46\x83\x4c\x35\x92\x77\x34\x1d\x97\xb8\x52\xcd\x6f\x3b\x68\xbc\x03\xf3\x82\x47\x7c\x1b\x1c\x65\xf6\x35\x04\xe1\xb9\x55\xcf\xb5\xe4\xc7\x9f\x14\xd0\xde\xae\xc9\x18\xe7\x36\xdd\xab\xfa\x75\xfe\x6a\x38\xac\x25\x1b\x27\xa6\xf5\xcc\x7b\x93\x6c\x65\x0f\xae\xed\xd0\xd3\x9c\xd4\x47\xb7\x9c\xa6\x5f\x76\xaa\x58\x4f\x33\xb8\xfe\x91\x8c\x5f\x1d\x1f\xd7\x68\x49\xe2\x05\x91\xe5\x22\x77\xb6\x91\xf0\x2d\x67\x5a\xcf\xf0\x4a\x5d\xaa\x2f\x14\x4d\xb6\xc0\x26\x93\xfa\x47\x32\x9f\xac\x74\x6f\x81\x29\x84\x75\xf2\x8b\xcb\x1e\x2f\x31\x37\xf9\xf0\x2d\xde\xa0\x24\xce\x48\x15\x2f\x11\x5e\x35\x2f\xc0\x65\xf2\x9f\x4b\xae\x4d\x4c\xb4\x5d\x47\x33\x3f\x2e\x70\x8d\x33\x84\x92\x6f\xab\x15\x97\x83\x41\xbc\x22\xab\x86\x74\xa3\x8e\x83\x95\x63\x3a\xd6\x64\x33\x18\x6c\xec\x49\xd4\xec\xf0\x60\xb0\xf2\x64\x80\xb5\x2c\xd3\x10\x54\xc8\x67\x48\x9b\x4b\xb5\x46\xf8\x9e\x6c\x70\x2c\x47\x6a\xbb\x5d\x35\x85\x8e\x78\x03\xe8\x2a\x73\xf2\x3e\x15\xab\xd1\x9a\x15\x71\x8d\xe7\x32\xcb\x0a\x61\x36\x18\xf4\x65\xb3\xef\xc9\x7d\x67\xb3\xef\x6d\xb3\x11\xbe\x0b\x9f\xdf\xea\x42\xbd\xd9\xdd\xc3\xd9\x74\x6b\xdb\xdf\xd6\x9b\x7e\x2f\x65\x52\x5d\x8e\x86\x89\xaa\x7a\x0f\x94\x53\x8b\x0b\xb7\x4a\x01\x30\x4e\xab\xa0\x67\x6a\x76\x7a\xc6\x30\x18\xa4\x62\x70\xd8\x5e\xd6\x82\x26\xbd\x68\xe8\x40\x13\x98\x3e\xd7\x59\x71\x9f\xe6\x2c\x93\x22\x83\xb6\x74\x89\xc3\xf6\xca\x2e\xa7\xf1\x5d\x5b\x69\xc4\x0b\x00\x02\x8c\xef\xc2\xed\xda\x2e\x79\x9f\x61\xb4\x36\x06\x10\x4d\x9c\x93\xe1\x90\x1b\x9c\x13\xb0\x22\x61\x21\xd7\x18\xb7\x59\xca\x43\xab\xb5\x9b\x5e\xa4\x1e\xc5\x80\x2b\x1d\x37\x1f\x4f\xc0\xd9\xd4\xa4\x98\x16\x8e\x90\xa1\x80\xe7\xd8\xb3\xc2\x1d\x2d\x3d\x2a\x46\x9b\x72\x13\x2b\x3d\x0b\x59\x20\x5c\xd1\x18\x3d\x06\x0b\x46\xa2\x8c\x11\x14\xf7\xdc\x7c\x64\x77\x89\x6a\x12\x6b\x04\x85\x76\xaa\xa6\x8e\x24\x1a\x0c\x72\xb3\x06\xcd\x13\xd9\x99\x7d\x35\xd2\x9c\x34\xc5\x6e\xcc\x12\x81\x1d\x3f\x96\x00\xa0\x34\xc8\xf1\xb5\x86\x29\x00\x11\xdd\x1f\xee\xee\xbe\x77\x1e\x28\x46\xea\xd5\xe6\x82\x92\xdb\xc8\x2d\x47\xf6\x2a\x3f\x3e\x7e\x05\x9a\xf2\x84\x0d\x06\x14\x74\x01\x65\x95\x72\xa0\x3c\x3e\x28\x0d\xe7\x01\x57\x84\x4f\xf3\x19\x5e\xc4\x29\x42\xf5\xb4\x02\xbb\x19\x3d\xd8\x47\x66\xb0\xfb\x65\x53\xb8\xae\xf6\x00\xa6\x65\x2c\x2b\xbe\x73\xd0\x65\xb4\x28\xeb\xbb\x55\x4f\x19\xc3\x9c\x00\x94\x36\x5b\x28\x38\x33\x2a\x28\xaf\x7a\xa2\xec\x55\xa9\x60\xd5\xf2\xb1\x97\xe6\xb9\xb9\x15\xeb\xdc\x80\xca\x7e\x1f\x8c\x74\xa1\x9d\xe5\xb4\x9a\x79\x33\x12\x88\x36\x8d\x09\xd1\xa2\x4c\xad\x05\x98\x07\x8f\x2b\x7a\xbf\x57\xfd\xfc\x7d\xa0\x7e\xfe\xfe\x1f\xaf\x7e\xfe\xfe\xff\x03\xea\xe7\x0d\xd3\x94\x40\xf9\xbc\xd3\x6c\xe5\x85\xfa\xe7\xef\xbf\x4d\x0b\xf4\xe3\xff\x30\xcb\x58\x73\xb9\x4f\x6a\x9e\xff\x23\x98\x3b\xdf\x6c\xd7\x58\x4c\x2a\x9e\x68\x09\x8a\xdc\x7a\xcc\xac\xc2\x8b\x32\x91\x5a\x7a\x1b\xe6\xbd\x17\xa7\xec\xc3\xfb\xa7\x86\x57\xa8\x79\x7e\x14\x5a\x7e\xb0\x65\x0c\xd2\x06\x2b\x52\xf0\xf4\x28\x47\xe0\xa7\xc7\x4f\x57\xef\x82\x12\x57\xee\x82\x72\xe7\x58\xac\x65\x93\xc5\x52\x36\xbc\xcd\xfd\x12\x17\x64\x19\x30\x48\xde\xf6\xb1\x37\x01\x85\xbd\x06\x70\xf6\x55\x93\x2c\x2e\x91\xd3\x24\x36\x97\x3e\xcd\x00\x75\x95\x9c\x21\x80\x4f\x68\x32\x5e\x9b\xed\x96\xb5\x78\x86\x0a\x4d\xe2\x0d\x98\x07\x37\xd3\x13\x86\x92\x76\xa0\x7d\xcc\x4c\xe3\x45\x70\xc6\x2e\xc3\xa7\x89\x85\xa6\x00\xf8\xa6\x0d\xf8\x53\x6e\xdc\xc8\x5f\x35\xb5\x36\x1a\x8c\x1c\x11\xde\x0f\xcd\x03\xb8\x00\x6c\x7e\x5f\xdb\xa3\x40\x65\x70\xbf\x5d\x1e\x17\x86\xbd\xe7\xfc\x4f\x57\xef\x88\x70\xdf\x3a\xb9\xfd\x6d\xb4\x8e\x00\x5f\x49\xa5\x75\x3f\x74\x62\x17\xa0\xa9\x0a\xcb\x3c\x0d\x31\x11\xfe\xd6\x79\x82\x30\x95\xed\x81\xe5\x79\x90\x2f\x0c\xd0\x19\xc3\xc0\x06\xbe\xb0\xb0\x9f\xa6\x1a\xfd\x53\x2b\xd1\x79\x16\x87\x44\x04\x3f\x75\x7a\x3f\x08\x9b\x7b\x1c\x49\xe3\xca\x3b\x9d\x22\x2f\xef\x74\xa5\x55\x7e\x9e\xe6\xf9\x4f\xe9\xe2\x8b\x33\x46\x52\xaa\xe2\xbe\x72\x74\x4b\x63\xce\x8f\x9c\x6b\xeb\xac\x3f\x7b\x42\xa2\x1f\x5f\xe6\xd9\x75\xab\x44\xad\x41\xfb\xcb\x3e\x9d\xee\x86\x86\x2d\xb1\x9a\x63\xc6\x14\x19\xa8\x08\xb7\xb0\xde\x3a\xb6\xa2\x22\xf6\x94\xff\xff\xee\x33\x7d\x8c\x68\x24\x9d\x66\x6f\x70\x49\xd8\xa4\x33\x46\x0d\x45\xe2\x46\x05\xa7\x24\x24\x77\x71\xd9\x6c\x18\x6e\x2d\xef\x8e\x05\x2e\x37\xf7\x2a\x2e\x83\xcd\x97\x86\x17\x1e\x7a\x8b\xfe\x16\xa7\x21\x6b\x5c\x06\x3f\xd1\xa4\x02\xa8\x8f\x26\x77\xec\xfa\x10\x57\x8a\xe7\x44\x68\x12\xf3\xb6\x5e\xfa\x18\x73\x63\x2e\xde\xe8\xfc\x76\x2b\x87\xf8\x56\x39\x5e\x49\xc4\x04\xa6\xe7\x9d\x3a\x30\x52\xb0\xec\x75\xf1\x58\x8a\xd1\x87\x56\x0c\xc2\x9d\x7c\xf8\x11\x3c\x46\x38\x73\x43\x73\x61\x66\xdf\x1f\xf6\xa0\x11\x4a\x2e\x1d\x68\xfd\x94\xcf\xec\x23\x8b\xf9\x0e\x1f\x42\x7e\x51\x89\x8c\x66\xba\xfb\x46\x36\xdd\xce\xbd\x72\x1c\x1e\x6c\x39\xd4\x1d\x43\x88\xba\xfb\xac\x6f\x10\x5b\x8b\xca\x68\x4d\x77\x6f\x2d\xae\x8e\x56\xad\x48\xbe\x79\x46\xff\xa9\x6b\x54\x19\x2e\x01\x36\xee\xb0\xee\x9f\x91\x1d\x81\x97\x84\xfb\xb2\xaa\x27\x4f\x51\x00\xd6\x4f\x15\x4b\x21\x73\xbd\xea\x81\x7a\x30\xfb\x8d\x15\x77\x9e\xce\xee\x28\x42\x98\x13\x5b\x32\x73\x17\x32\x6a\xe4\xde\xc5\x72\xe5\x53\x84\xa9\xa7\x27\x1c\xf3\x0e\xdd\x50\xc2\xbb\xa8\x41\x5b\xa7\x7c\x1e\x53\x84\x50\x12\xbf\x05\xce\x82\x1a\x0d\x61\xc9\x18\xa8\x4a\xac\xb2\xef\x3e\x15\xdf\x4d\x2c\x07\xb7\xab\xb2\xfe\x18\x4f\xa3\x80\x9c\x47\x33\xc9\xe3\x04\x41\x83\x41\x23\x20\xee\x2c\x0c\xe1\x3c\x0e\x87\xfa\xe6\xea\xec\xc3\xf5\xdb\x9b\xb7\x97\x1f\x7a\xe7\x97\xef\x3f\xbe\xbb\xb8\xb9\x90\xc3\xe7\x60\x19\xbd\xcb\x2a\x83\xea\x27\x8c\xf6\x88\x08\xcc\x3c\xb7\xdb\xb8\x24\xb4\x63\x14\x71\xa8\x23\xa2\x15\xf8\x05\xa6\xb8\x9c\x96\x1d\xd5\x60\x6a\xd6\x21\xc2\x62\xb7\x53\x2d\x06\xd1\x4f\xbf\x58\x67\x71\x74\x4d\x85\xc8\xa9\xaf\xa8\xad\x97\x63\xef\x61\x45\x0b\x3f\x9c\x55\x66\x95\x80\x16\x0c\x66\xdb\xed\x41\xf8\x96\xee\x2e\xd4\x0e\x66\xa7\x0a\xd1\x55\x18\x80\xf5\x54\xd3\x62\x86\xe3\xb4\xb1\xd4\xa6\xc5\x0c\x10\x1a\xb5\x80\x9b\x2a\x1a\x00\x38\x2c\xa9\xf7\x8e\xb5\xdd\xd6\x06\x8b\xfd\x68\x13\x53\xac\x27\x3d\x3c\x8a\x23\xcc\x67\x72\x68\xc2\x50\xc9\x50\x86\x21\x71\x85\x1b\xeb\xdd\xe8\x48\xe0\x14\x73\x84\x3f\x98\xef\x0a\xc9\x18\x7b\x20\x7d\xb0\x96\x00\x83\x41\x4c\x3b\x8f\x4e\x0e\x56\xe2\x00\x3b\x10\xd6\x00\xcd\xf5\x88\x8f\xf5\xe2\x1e\xc9\x45\xad\x0a\xc2\x2a\x37\x37\x16\xe2\xd0\x99\xae\x5a\x40\x3f\xc3\xb5\xeb\x5d\xc7\x2c\x1d\x46\x56\x24\xad\xb9\x6b\x34\x37\x27\x4f\x8a\x01\xcb\xce\xb5\x54\x3f\x9d\x61\xfa\x95\x09\x9a\xc1\x97\x42\x8d\x97\x9f\x75\x61\x4c\xe6\xa7\x33\x0c\x67\xb8\x55\xca\x5c\x18\x2b\x79\x05\x63\x6c\x51\xd6\xca\xd7\x29\x60\xa9\x70\x02\x20\xab\x05\xa9\xe5\x3f\x70\xb1\xe0\xee\x43\xad\xbd\xc6\x76\x1b\x33\x20\xd3\x6c\x12\xe7\x23\x5d\xb3\x41\xf4\x94\xb9\xf2\x91\x6a\x98\xbd\x27\xe3\x08\x25\x8b\xed\xd6\x5e\x84\xf7\x65\x69\xfa\x7b\x12\x2f\xe4\xb1\x99\x8f\xc2\xee\x99\xf2\x50\x92\x8f\x6c\x8f\x2c\xb8\xa8\xea\x83\x69\x3f\x4e\xed\x02\xb7\x5d\x69\xb5\x41\xf6\xcc\x19\xb9\x2b\xe6\x86\xb4\x6a\x35\x00\x32\x3a\xc1\x88\xd3\x7b\xca\x2b\x08\xd9\xc5\xd6\xd6\x0f\x19\x78\x68\xcc\xc0\xdb\x38\x54\x64\x00\x8b\x5e\x33\xd8\x2c\xca\x49\x46\x5c\xda\x04\xd3\xc2\x91\x0b\x7b\x03\x7a\x1f\x97\x38\x82\xaa\x22\x0c\xcc\x83\x0a\x91\x39\x22\xcc\x91\x76\x1d\x40\x1d\xd7\xa7\xdb\x70\xa4\xff\x13\xa1\xbd\x03\xd0\x4e\x1e\x30\xf5\xc6\x4e\x77\x0d\xce\x32\xbf\xf9\xaa\xa3\x8d\xd6\xdf\x43\xc3\x21\xca\x6b\xb7\x6b\xea\x29\xe6\xe1\x20\x34\xc6\xb1\x51\xdc\x9b\xb8\xc6\xcd\x34\x92\xfa\xb4\xcb\x31\xcb\xa9\xb3\x00\x1d\x09\x39\xe5\x60\x35\x89\xbb\x19\x14\x10\xc7\x3b\x86\xa3\x61\xe8\x2d\x76\x86\x6e\xfa\x2f\x32\x3f\xc5\x14\xd7\xe1\xeb\x59\x40\x74\xde\x34\x61\x0b\xec\x4e\xc5\x25\x11\x56\x69\xc5\xb3\x4e\x66\x0a\xa2\x64\x30\xb8\x8f\x19\x8e\xa0\x13\x11\x2e\x10\x06\x47\x10\xce\x86\xcd\x89\xd4\x77\x00\x1f\x66\x2f\xb9\x4b\x0c\x19\xf5\x4f\x47\xa8\x90\x0a\x07\x27\x3e\x11\x2e\x9f\x29\x52\x83\x83\x0b\x64\x71\xc8\x26\xb2\x69\x89\x68\x29\x8c\x77\x4a\xd0\x29\xc2\xfd\xb1\x1b\x85\xb7\x6d\x32\xa6\xcc\x64\xa9\xb3\x97\x91\xbd\xc8\x55\x9a\x85\xe3\x6d\x96\x4d\xd2\xb6\x21\xcb\xe9\xd2\x3b\x53\x95\x5e\x80\x41\x37\xe4\xc4\xc5\xbd\xe2\xea\x61\x85\xa3\x54\x01\xc4\x2e\x35\x40\xac\x12\xb0\x2d\x85\x6a\xdf\x57\x00\x1a\xab\x72\x68\x93\xc3\xb3\x42\xf8\x36\x3a\xbf\x67\x90\xf6\xcf\xfe\x85\x78\xb8\x04\x18\x59\x78\x62\x89\x85\xbe\x8c\x37\x78\x85\xc0\xc7\xc1\x01\x73\x4f\x5c\x91\x48\x4b\xc4\x11\x01\xf4\xc1\x3e\x3d\x68\x66\x8a\xeb\xf0\xc1\x56\x72\xc6\x83\x41\x50\x06\x2e\xb7\xdb\x6a\xbb\xad\x27\x0b\x4f\xd8\x8e\xe1\x82\xc2\x4a\xea\x31\x0b\x1c\xb4\xfc\x1c\x1e\x4b\xf2\x50\x12\xd3\xf1\x6c\xbb\x8d\x4e\x22\x5c\x11\x31\x15\xde\xe5\x2c\xc0\x4b\x1a\x40\xbb\xc1\xa0\xad\x41\x15\x60\x36\x81\x55\xe8\x8d\xbe\x03\x43\xe1\xbd\x87\xef\x49\x67\x12\xe7\x31\xc5\xd1\x27\xd9\x42\xc9\x01\x43\xc2\x9e\x51\xc6\x02\xb9\xa4\x83\x93\x29\x41\x36\xfa\x12\xab\x1b\xa3\xe0\x12\x59\xad\x16\xf3\x14\x28\x8f\x3c\xaf\xee\xa4\xde\x21\x94\x28\xb8\xc3\xd4\x81\x2e\xea\x46\x9c\x09\x41\xd7\x1b\x68\xc6\xa7\xab\x77\x3e\xff\x25\xca\x5e\x34\x4c\x91\xae\xf7\x63\xfc\x54\xf3\x3c\x49\x77\x60\xd5\xd9\xc8\xb9\x37\x97\x69\xad\x1c\x61\xd7\x3e\x66\xa0\x64\x4e\x51\xab\xa1\xc0\x73\xb6\x4c\xde\xca\x80\xf8\xfc\xf6\x0f\x93\xf7\xb4\xb8\xb7\x5f\x45\xcd\xd6\xf9\x8b\xa7\x18\x37\x18\x38\xcd\xb8\xf1\x91\x0e\x12\xdb\x6d\x10\x71\x7a\xe4\x03\xc6\x87\x68\xaf\x38\x0d\x02\x94\x12\x6e\xe9\xfa\x90\x1e\xe8\x43\xd9\xd9\x07\x46\x00\x43\x5e\x03\xdc\x1c\xea\xc8\x4f\x8e\x72\x9b\xe7\x0c\x00\xf9\xe1\x88\x37\x57\x37\xd3\x86\x38\x84\x10\x0e\xb0\x39\xda\xe7\x95\xfc\x71\xe4\xbf\x83\x4c\x67\x47\x0a\xd3\x0a\xf8\x49\xc3\xb5\x3b\x3a\x62\x79\x4a\x5c\xe3\x62\x06\x04\x3a\x2e\xba\xe8\x0d\x79\xda\x19\x28\x23\x4d\xf9\x3a\x98\xb4\xe1\xb0\x44\xf9\x34\xae\x80\x41\x43\x72\x08\x67\xa4\x52\xae\x36\xb0\x41\xde\xaa\x46\xba\xf0\x7d\x35\x4d\xab\x20\xa3\x63\x8a\x76\x57\x3e\x74\xcb\x3a\xdd\x24\xa1\xf6\x7d\x70\x31\xe3\xdd\xb0\xb5\x6f\xd5\xbc\x64\xeb\x54\x8e\xcf\x33\xcf\x86\x76\x3f\xe3\x82\xf4\xc7\x40\xe6\x07\x83\x02\x28\x3d\x83\xf5\x89\xa9\xf2\xd3\x85\x9f\xd2\xca\xdd\xf9\xee\x24\xc5\x50\xdb\x9b\x01\x4c\xf8\x76\x1b\x05\x3f\x14\x96\x6b\xe4\x83\x53\x18\x78\xcc\x7f\x03\x83\x43\x03\x14\xbd\x57\xa7\xd0\xeb\x89\x49\x0b\x26\x62\xde\x2d\x75\xa0\x23\x1d\xdc\x4b\x85\x51\x9d\xf7\x49\x49\x1b\xfa\x4f\x63\x9d\x05\x76\x32\x5a\x02\x2a\x30\x45\xb8\x2f\xf6\x5c\x85\x74\xdf\xba\x25\x71\xcc\xbc\xbb\x25\x84\x3a\x6f\xad\x1a\x2c\x90\xaa\x2d\xa4\xc2\x45\x78\x1e\x7a\xb0\x2a\x84\x3d\x7b\xb3\xf2\x36\x66\x92\xbb\x2d\x9b\x77\x00\x8d\x80\xb8\xec\xbe\x03\xa0\x4e\x8c\xf6\x8c\x3f\x17\xe5\x7a\x23\xb7\x25\xc8\xc8\x68\x87\xdb\xe4\x33\x5c\xc1\xee\x16\xe7\xef\x5a\x1b\x5f\xc9\x95\xd6\x42\xd7\x31\x94\xde\xfb\x9b\xbd\x93\x53\xca\x6d\x68\xb7\xd3\x62\x55\xd3\x58\x13\x4e\xae\xc1\xc0\x87\x08\xe9\x32\xdb\x45\x9e\x54\x11\x68\x7a\xf9\xd8\x2d\x20\x01\x58\xeb\xbb\xce\x4b\x5f\xc5\xeb\xaa\xe7\x9f\xbd\xb7\xc0\xb2\xcd\x3b\xdc\x5a\x13\x4a\x31\x03\x12\x7e\xba\x7a\xd7\x81\xcc\xd4\x36\x5e\xf6\xd1\xc5\x43\x04\x63\x79\xc4\x69\x10\x63\xfc\xb3\x31\xf4\x32\xb6\xd7\x4a\x34\xc6\x96\x27\x09\x47\xad\xf1\x8e\x6b\x53\x29\xe0\x74\xd1\x03\xbf\xc0\xb2\x01\x34\x8b\x00\xd6\xc9\x70\x3a\x6d\xd2\xe4\xb8\x1e\x1a\x2c\x85\x9b\xb2\x43\x47\xf9\xe7\xd6\xcc\x63\xf0\xa5\xbe\xa6\x19\x4b\x85\x37\x52\x2f\xca\xad\x9c\x48\x71\xba\xe4\xb4\x5a\x75\x0c\x66\xf7\x3d\x39\x27\x62\x22\xda\x77\xe2\x45\x03\x5d\xe3\x48\xbf\x2a\x2a\x93\x37\xc9\x73\xa4\x3d\x5d\x55\x80\x12\xe5\x81\xec\x1f\xe0\x94\x7c\x85\xa6\x84\x6e\xb7\x00\x04\x68\x56\xdd\x3e\x36\x6a\xdf\xc3\x84\x14\xe9\x1b\x3a\x24\x3b\x6b\x47\xd8\xc1\xcb\x30\xdf\x68\x5f\x84\x0c\xad\xf0\x2d\xf7\x4b\x6b\xb9\xef\x9b\xed\x97\x76\x01\xfc\x95\x89\xd5\x4b\x66\xd5\x14\x63\x2b\x02\xca\xad\x38\xf7\xf6\x3c\x81\xb3\x83\x2a\x6e\x2e\x7d\x7c\x8a\x80\xa9\x53\x90\xd0\x85\x82\x84\xf6\x87\xd9\xe3\x3f\xcb\x1d\x0a\x1f\x34\xbc\x89\x7d\xee\x65\xc3\x59\xb6\x34\x1e\x37\x16\x1e\xd2\x3b\xe6\x24\xef\xc2\x72\xb1\x60\x1b\x69\xbc\xc0\x79\x03\x5e\x69\xe6\x69\xd4\xba\xb7\xe9\xe0\xb1\x92\xd4\xad\x93\xdb\x8a\x38\x14\x2f\xd0\x0e\x43\xb7\x5a\x54\x35\x84\xfe\xed\x18\x11\x01\x87\xf4\x37\xdd\xe8\xc3\x70\xe9\xb7\x35\x75\xdb\x61\x15\x43\x83\xb1\x2d\x7e\xf7\x90\xee\xb0\xb9\xe0\xee\xe8\x50\x78\x0a\x17\x7e\x43\x70\x45\xc2\x37\x0c\x60\x81\xab\x16\xcf\xaa\xee\x64\x24\xa7\xd5\xd8\x7e\xc6\x7d\x8a\xcf\x55\x38\xbd\xcb\x5a\xce\xf5\x58\xdf\xd9\xe6\x66\x66\x17\xaf\xd9\x60\x50\x4d\x17\xf6\x69\x86\xbe\x1a\x0e\x17\xe8\x15\x5b\xc6\x0b\x29\x09\x76\xd6\xbe\x54\x07\xc3\xd1\x32\x7c\x1c\x70\xd0\x11\x8b\xe1\x29\x02\x8f\x28\x7e\x80\x56\x09\xf8\x2d\xf6\x27\xb3\x0e\x26\xb3\xa5\xf2\xb9\xc4\x79\x6b\xdc\x6b\xe5\x84\xaf\x6b\xe8\x1b\x58\x7b\xe1\x8b\x10\x0c\x27\x07\x98\x71\x3d\xe5\x1b\x0d\x23\xfe\xb4\x3b\x4a\xe3\xcc\x5c\x89\xad\x49\xf0\xd8\x67\x6d\x72\xee\x25\x3b\xbf\x46\xeb\x26\x3b\x7f\x8f\x14\x8a\x7a\x2b\x30\xce\xa6\xf7\x33\xb2\x9e\xde\xbb\xbb\xc1\xcd\x60\xd0\x5f\x41\x55\x6e\x95\x74\xd0\xf4\x6e\x3a\x71\xd4\x40\x74\xf1\xd6\x98\x5c\x5a\x92\x84\x88\xe9\xe9\x0c\x0e\x28\x78\x5e\x48\x5a\xb8\x05\xed\x93\x77\xe3\x99\x66\x74\x3e\xb7\x9c\x02\x5e\x45\x5e\xde\x25\xea\xb8\x0f\xf0\xa2\x6f\x3d\xa8\xea\x2b\x0d\x55\x5d\xdd\x6f\x0e\x01\x55\xfb\x8e\x92\x9b\xe0\xd4\x1d\xde\x84\x81\x91\x37\x42\x56\xe9\x69\x2f\x00\x78\x82\x64\x0b\xcf\xd3\x3c\xbf\x4d\x17\x5f\x1c\x4a\xc2\x76\x1b\x77\x26\x00\xd8\x75\xb1\xa3\xa3\x25\xcb\x01\x3d\x6d\x94\x56\x8f\xc5\x82\x28\xc8\x71\xf3\x7a\xe5\xac\xf0\x08\x1d\x95\xcb\xa5\xfc\x5b\x28\x03\xb2\x25\xbb\xab\xb9\x0c\xce\xa8\xec\x06\x5b\x3e\xc2\xf7\x12\xca\xe2\x14\x58\x0e\xb8\x6d\xaf\x56\xea\x41\x26\xd3\xbf\x64\x74\x0a\x78\x54\x69\x9e\xbb\xa8\x34\xcf\x09\x55\x1e\xf5\x6f\xb4\x2f\xdd\x91\x35\x30\x1a\x2d\xd2\x4a\x40\x1b\xd3\x8d\x0f\xcc\x9d\x92\xa7\x35\xfb\xca\x8a\x2e\xb1\x02\x9a\xaa\xb8\xba\x02\xab\xd6\xab\x5f\xcb\xa5\x7b\x75\x22\xbe\xea\x01\xee\x1a\x27\xcd\x09\xd2\x1d\x6e\x08\x11\xca\xa1\xa9\xc5\x88\xe8\x3b\xe8\x08\xc7\x6e\xdd\x3c\x6e\xa8\xc1\x47\xd6\x25\x2a\xc7\x9f\xb7\xb4\x97\xda\x57\x50\xeb\x59\xb4\x54\x92\x03\x36\x9a\x0a\xaf\xe2\x82\xf0\x29\x9d\xa1\xed\x56\x7f\x91\xa9\x94\x6d\xad\xeb\x0c\x21\xc5\x67\x7b\xdf\x88\xcb\xe5\xb2\xeb\xc8\x90\x22\xbd\x2e\xd9\x00\xff\x1e\x89\x09\x78\xdc\x88\x39\x91\x52\x8b\xac\xc3\x2b\x14\x0d\x06\x4c\x3b\xdb\x8a\x39\x3e\x45\x49\xa1\xaa\xee\xd8\x4d\xe1\x03\x8c\x72\x01\xa7\x2b\x93\x85\x3a\xef\x13\x85\xef\x7d\x22\x1e\xe3\x62\xca\x66\x08\xec\x4e\x76\x3b\x5c\x91\x27\x06\xfa\x5e\x80\x81\xdf\x3f\xf5\xdc\x8d\xd5\x76\xac\xbf\xef\xb7\x81\xbc\xad\x2b\x88\x29\x9d\x1d\x69\x87\xc2\xe9\x08\xd6\x44\x5c\x19\x39\x7f\x3a\x73\xc5\x2d\x4c\x8b\x4f\x81\xa4\x2b\x3f\x8e\xfa\x2c\xdd\xa4\x8f\x79\x99\x66\x09\x18\xe1\x89\xd1\xfc\xae\x66\xd9\xaf\xf4\x11\xb3\x4c\xfe\x62\x19\x06\x90\xe5\x0f\x2a\x71\x46\x45\xca\x72\x19\xc1\x69\x55\xe7\x02\x03\xfc\xfd\xdb\x2c\x81\xe7\x1c\x99\x3a\x07\x30\x56\x31\x9a\xc3\x07\x16\x6c\x4d\xaf\x45\xba\xde\x24\x6f\xa4\xc0\x52\x94\x0f\x31\xc2\x0a\xb4\xb1\x9a\x46\xae\xfb\xc7\x0f\x4c\xac\x8e\x41\x53\x30\x9a\x4d\x1c\xd3\x6e\x0a\x42\x8a\xf8\xec\xd0\x60\x50\x51\x71\xc3\xd6\xb4\xac\x45\xdc\x24\x6f\xd8\xc0\xb2\x53\x32\x7e\x45\x5f\xdb\x43\x8e\xca\xd1\xe7\x24\x16\x24\x87\x49\xd7\x7d\x46\x23\xd9\x59\xc2\x47\x5f\xe8\xe3\x90\x8f\x58\x86\x35\x9e\xff\x9f\xfc\x60\xdd\x45\xcc\x15\x4e\x1a\xe8\x15\x28\xd5\x46\x1d\xa2\x7e\x21\x6c\xb7\x54\x6c\x60\x6b\x6c\x45\x47\xb9\xf5\x35\xb7\xc3\xff\x3a\x46\x2d\xd8\x73\xa5\x0b\xd7\x72\xc9\x05\xfa\x71\x0b\xa7\x15\xa8\x2d\x07\xcc\x02\xa0\x47\x8e\x3b\x92\xe1\xf1\xc6\x83\x38\xbe\xd4\xca\x7f\x3e\x3e\x3a\x7a\xda\x29\x1f\x29\x06\xba\x8e\x9c\xe2\x35\xf9\xde\xad\x94\x7b\x23\x6e\x2a\xe0\x42\x18\xf4\x7b\x70\x51\x2b\xeb\xb8\x77\x09\xef\x1a\x32\xaf\x12\xce\x9d\x9b\x3b\x1d\xfc\xa8\x0b\xa2\xf8\x71\xb7\x53\xb8\x98\x50\x10\x9e\x5b\x5f\xa8\xa6\xc4\x07\x33\x8b\xbe\x42\x04\x25\x73\x3c\x37\x3e\xea\x0f\x49\xd5\xae\xca\x5b\x5b\xe5\x6d\xe8\x72\xd4\xa6\x98\x13\x8a\x1f\x5c\xd4\x45\xe8\xd0\x51\x34\x06\x3c\x98\x80\xc1\x40\x06\xdd\x34\xa6\xc5\x9e\x17\x84\x2c\x27\x21\x2d\x12\xa3\xb9\x12\xa5\x09\xc9\x26\xe7\xf0\x52\xac\xf7\x0e\x4a\xbc\xb8\xf5\x44\x2e\xf5\xb2\xb8\xb0\xc3\x8e\xcf\x82\xc4\x28\xf9\x12\x0b\xa3\xb6\x63\xab\xe0\xe8\x49\x00\x22\xd2\x39\x98\xfe\x27\x97\x0a\x01\x00\x77\x80\x69\x29\x33\xa9\x1d\xda\xc1\xff\x44\x76\xe3\x71\x12\x17\x44\xcf\x10\x7e\xf4\xa6\x1c\xea\x2e\x10\x4a\x3a\xd0\x80\xf8\xa4\x49\x06\x2b\x75\x8a\xb6\xf0\x80\x0b\xd2\x3f\xc5\x4d\x90\x04\xc9\xfd\xca\xf9\xa5\xd6\x09\x04\x2e\xda\x73\x48\x41\xcb\x41\x04\x1d\x2d\xe0\x3c\x90\x7c\x5f\x5f\xf6\x58\x75\x35\x51\x1d\x6f\x74\xd9\x26\x55\x9d\x06\xdb\x71\x4d\x47\x8e\xfa\xc5\x60\xc0\x06\x03\x17\xcf\x20\x5e\x8d\x8b\x29\x51\x78\x3b\xf4\x32\xbc\x15\x97\xb3\x25\xd4\x4c\xa2\x24\x2e\x0c\xbc\x12\x27\x02\x61\x73\xa9\xbb\xdd\x3a\x9f\xdf\xa4\xf0\x41\x95\xe4\x6f\x93\x59\xad\xbb\x3b\x79\xf4\xa0\xc0\xd3\x2b\x7a\xa2\x76\x2d\xc8\x95\x66\xbe\x63\x6a\x97\x03\x7e\x1f\x53\x2f\xd3\xb9\xc1\x13\xb0\x0b\x6a\xa5\x94\x16\x54\x72\xf0\xeb\xa0\xa3\x32\x78\x32\x91\x3f\xeb\xdb\x6a\xc1\xd9\xad\x73\x85\x37\xa9\x46\x8e\x22\x0f\x06\x0b\x79\xd0\x03\xe0\x01\xcd\x22\x4c\x51\x62\x26\xfa\x3d\xa6\x7e\x8b\xcf\xf6\x55\xae\x7e\xae\xb1\xdf\x0e\x53\xc6\x75\x58\xc6\x97\xe6\xbb\x67\xd8\x40\x5c\x5a\xe0\xc7\x23\xda\xd8\x27\x6c\x5a\xce\x88\x90\xff\x86\xd9\x8c\x70\xf8\x58\xcf\x48\x01\xfd\x2c\x61\xfc\xf4\xdd\x99\xdf\xfe\x5d\xa8\x29\x6f\xc0\xb6\x1a\xd5\x16\xc4\xe4\x96\x87\x7c\x73\x78\x0a\xd8\xd4\xde\x20\x25\x91\xe2\x20\xd5\x78\xe1\x71\xbf\x6d\x57\xaa\x77\x70\x69\x3e\x52\x62\x47\xc7\xf3\xb7\xc6\x9d\xbf\x35\xf2\x47\xc4\x08\x9f\x0a\xe5\x52\x4a\x0c\x8b\x19\x66\x93\x8f\xb1\x56\xee\x40\x49\x09\xae\xe4\xba\xa6\x93\x8c\x3d\xfa\xf7\xb1\x2d\x7c\x76\x6d\x6e\xeb\xb0\xed\x28\x25\xe5\xe4\x6b\xcc\x51\x5c\xa0\xa4\xc0\x86\x54\xf5\x09\x59\x6d\xb7\x71\x0a\x9b\xe0\x2c\x16\xb8\xc1\xf0\x9d\x19\xb5\xa3\xaa\xb7\x30\xbc\xdf\x22\x2d\x8a\x52\xf4\xac\xf0\x92\x8a\x5e\x95\xae\xa9\x49\x39\x8a\x10\x4a\x64\x81\xb7\x93\x18\x1e\xe9\x81\x1c\xa5\x21\x39\x02\xf7\x08\x49\x39\xb9\x8c\x85\xec\xb4\x21\xa7\xf6\xc7\x7a\x30\x38\x83\x5f\xde\xc4\xde\x34\xf8\x34\x0d\x1a\x60\xa7\x93\xc9\x42\x06\x83\x3e\xdd\x6e\x99\x2a\xc2\xbe\x32\xf5\x5a\x3b\x61\xb1\x4a\x59\x61\x70\xea\x15\x00\x25\xfc\x55\xfa\xd3\xc1\x8a\xd4\x9e\x6e\xcd\xa1\xec\x1f\x14\xf1\x06\x73\x0b\x77\x65\xa6\xfd\x65\x55\x96\x92\x8f\x25\x64\x35\xf9\xa2\x4e\xc0\x12\x1b\x0a\x04\xfd\x98\xd0\xc4\x6d\xae\xf6\xe5\xd5\xc7\x58\x2e\x97\x02\xa7\x68\x07\x9e\x16\x65\x13\xaf\x0e\x42\x54\x17\x9a\x11\x98\x1b\x95\x36\xcf\x38\x81\x84\xa8\x59\xd0\x55\x1a\x6f\x70\x61\x90\x15\x40\x5d\xed\xb2\xb8\x52\xf2\x14\x37\x18\x9f\x9f\x2a\x56\xdc\x29\x29\x59\x89\x38\x84\x90\x37\xd8\x54\xc3\xc4\x9e\x13\xbe\x03\xc1\x0f\x92\x77\xe3\x9b\xe8\xd5\xbf\xdd\x8e\xd5\xdc\xe8\xcd\xc0\xad\x4f\xea\x75\xca\x0a\x56\xdc\x79\x21\x40\x9b\x9c\x03\x51\x03\x5f\x32\xa7\x60\xd9\x03\x37\x6d\x4d\xe0\x3e\x1b\xb5\x17\xb3\xcf\x69\xc5\xf9\x63\x65\x37\x79\x11\x90\x4b\xe3\xe4\x47\xd7\x9b\x2e\x56\x17\x85\xe0\x8f\x31\x95\x1b\x5f\xe0\xfe\x18\x1d\x99\x7b\x52\xba\xf8\xf2\x73\x9d\x5b\x20\x9a\xb8\xd9\xb2\x56\x0a\x7f\x9a\xc7\xc6\xf6\xd4\x8d\xc3\x60\x70\x1e\xfb\x2d\x0c\x46\xa5\x59\x78\x05\xa2\xeb\xfb\xf4\xf1\x96\xde\xac\x68\x91\xde\xe6\x07\xac\x48\xc8\xde\x05\x84\x53\x52\x1a\xa6\xe9\x28\x05\xb6\x29\x2e\x88\xe4\x29\x91\x61\xaf\x1c\xbd\x99\xc4\x4d\x92\xaf\x37\xb2\x12\xa3\xcf\x84\x3d\x6b\x40\xd7\xd4\x88\x26\x3c\xe0\x5f\xac\xa4\xaa\x1f\xb2\xbc\xdc\x19\xa8\x5e\x1a\xd5\xea\xd6\x2a\x9d\xc4\x17\xfa\x8d\xab\x8c\x37\x08\x53\xb7\xca\x1f\x98\x91\xe5\xcf\x44\xcc\xb0\xaa\xb2\x23\x4a\xe5\xed\xe0\xc9\x84\xc6\x40\xb4\x95\x87\xf9\xd2\x98\xa2\x0e\xb0\x61\xb7\x3c\x5a\x43\xaf\xd1\x51\x3a\x45\x89\xa0\xdf\xc1\x0c\x1a\xce\xc7\x26\xb8\x82\x11\xf4\x86\xa6\x73\x15\x64\x67\x6d\x9b\x49\xab\xb6\xe4\x2f\x79\x16\x72\x06\x1d\x24\x42\xd9\xf5\xad\x27\x67\xf0\x90\xa7\x31\x5b\x82\x96\x98\xf2\xf1\xde\x6d\xd0\x44\x5f\xf2\xb3\x77\xa3\x82\xb9\x3d\x70\x7c\x1c\xac\x7a\xf0\xfe\xdb\x28\xcd\x9f\x99\x3d\xc0\x5f\x70\x1e\x48\x4e\xa6\xc9\xa6\xfb\x80\x81\x1d\x0b\x6f\xf7\x6c\xca\xb5\x49\xd9\x42\x8e\xfd\xfb\xcb\x7b\xa4\x0e\xcd\x27\xf5\x26\xe4\xb3\x76\xf0\x52\x9f\xf0\x5d\x62\xe2\x1c\x17\xc3\x69\x5a\x95\x45\xc2\x95\xf0\xf6\x81\xc0\xed\xde\x3c\x1a\x3a\x69\x7e\x18\x1d\x47\xf8\x9d\xf6\x4d\xf2\x66\xcf\x91\xe2\xb5\x90\x65\xe4\x9d\x01\x61\x57\x3c\xb9\x25\xc4\x6d\x63\x16\x43\x9b\x83\x30\x8f\xd3\x21\xd3\x19\x6e\x9f\x9b\x60\x90\xa7\xcf\x4d\x84\x37\xda\xb7\x4b\xd7\xad\xd5\x60\xd0\xf9\x60\xe8\x31\x34\x7f\x2b\x6b\x75\x79\xb5\x49\xab\x0a\x1e\xc7\x80\x68\xf1\x9e\x53\xc1\xab\xc0\xb6\x73\xc9\x78\x25\x7a\xe6\xd4\xea\x89\x12\x42\x8d\x12\xb6\xc7\x03\x44\x68\xa7\x0d\x0a\x7c\x6d\x71\x3a\xe9\x3a\xcc\xfa\xa7\xca\xa9\x7c\x48\x3c\xb6\xdb\x98\x4b\xe9\xe5\xd2\x48\x37\x9d\xb1\x46\xf6\xf1\xde\x9d\xb5\x0c\xb8\x33\xcf\xa8\xdd\xcf\xa5\x5e\xef\x7f\x4e\x19\x38\xe4\x2a\x5d\x07\x7a\xdf\x69\xba\xf8\x5d\xd2\xfb\x98\xd3\xb4\xa2\xbd\x1a\x20\xe2\x69\xef\xbb\x82\x3e\x7c\xd7\x2b\x37\xf2\x5c\x2c\x39\x06\xee\x47\xdb\xa5\xfb\x03\x60\x18\xc2\x5b\x0a\x3c\x22\xcd\xe4\x10\xba\x8b\xc1\x11\x0c\x50\xf7\xa9\x6f\x4e\x81\xee\x57\xd0\xa3\x6a\x04\x28\x85\x3e\xff\x23\x3c\x49\xaa\x6a\x83\xe6\x63\x7b\xc1\xd4\x44\x18\x7b\x0e\xd2\x1d\x74\x11\xcc\x3d\xe9\x0b\x01\xdd\x7d\x44\x55\x37\x1e\x47\xad\x62\x3b\x8e\x0a\xee\xe3\xdc\x1d\x80\xb0\xeb\x16\xfe\x9f\xc9\xad\xad\x17\xc0\x35\x4e\x8b\xc2\xbc\x35\x57\x42\x40\x26\xf4\x56\xdc\xbd\x51\xb7\xd3\x4b\xfc\x06\x2e\xb1\x3b\xc7\xa9\xe1\xcb\x0c\xc1\xbd\xde\x95\x51\x78\x90\x92\x3c\x32\x67\x44\xa2\x5f\xae\xc0\x7a\xa4\xb1\x08\x8d\xa6\x28\x18\xbf\xfc\xbf\xec\xbd\x5b\x93\x5b\x39\x9a\x20\xf6\xce\x5f\x91\x79\xa2\xea\x14\x20\x82\x4c\x52\xaa\x52\x57\x9d\x4c\x24\x9d\xba\x55\xa9\x4b\xb7\x96\x54\x57\x26\x47\x7d\x48\x82\x49\x94\x0e\x01\x16\x0e\x28\x65\x2a\xc9\x8d\xd9\xd9\xb5\x1d\x0e\xc7\xfc\x80\x7d\xf1\x8b\x63\x9f\xbc\x2f\xe3\x58\x47\xb4\xc7\x63\x6f\xc4\xcc\xf8\xbd\xfb\x1f\x74\x6c\xec\x84\xff\x86\x03\xd7\x83\x73\x21\x53\xea\xaa\xee\x51\xcf\xae\x1e\x52\x3c\xc0\x87\xdb\x07\xe0\xc3\x77\xc3\x07\xab\x47\xb6\x0b\xe7\x35\x95\xf3\xbd\x94\xed\xa5\xaa\x85\x08\xea\xde\xdf\x31\x9a\xf6\x66\x95\x70\x59\x53\x46\x67\x60\xbf\xda\x49\xe8\xf5\x25\xac\x2a\xdc\xf8\x4b\x2e\xe9\x84\x5c\xd1\x13\x58\x3c\x61\x58\xe1\xf4\xc4\x11\x09\x1f\x61\x7f\x69\xe3\x84\xbb\xe9\x19\x8a\x11\xdc\x71\x7e\x3c\x06\x4c\x9b\x63\x1a\xb2\x4e\x4c\x56\x71\x3b\x58\xa3\xc2\x45\xf9\xd2\xbf\x35\x37\xbe\xcd\xbc\x5a\x53\x20\x9e\x38\x05\x22\xba\x13\xee\x41\xab\x20\xc6\x8f\x4a\xc9\xfa\x0d\x85\xe7\xfa\x10\xb8\xa7\xab\xbb\x8f\xde\x98\xff\x5b\x65\x5f\x3f\x7d\x12\x68\x05\x90\x65\xf6\x0b\x57\xeb\x62\x2c\xf7\xec\x62\x23\xe8\xde\xa6\xe2\x62\xe7\x60\x2e\x55\x8b\x05\x01\xd3\xbc\x87\x27\x19\xa1\x6e\x29\xa8\xe0\x47\xad\x2c\xb2\xa7\x75\x45\x79\x2c\xad\x47\x61\x55\xd9\x8e\xd2\x40\x32\xe0\xed\x3e\x44\xb9\xbb\xe8\x60\x64\x75\xae\x2d\xe3\xfa\x9d\xe6\xa2\xb0\x62\xdb\xf7\x73\x9d\x0a\x72\xfc\x15\x60\x9a\xb1\x7d\x53\x2c\x2e\xc3\x51\xde\x51\x1c\xe5\x1b\xeb\x2a\x87\x68\x2b\x8f\x63\xfd\x76\x63\xae\x15\x54\xb7\x80\x7e\x78\x71\x93\xaa\xd3\x9b\xd9\xc7\x22\x5d\x31\x7f\x2f\x78\xc8\x47\xd5\xb0\x92\x83\x13\xb0\x42\x3e\x5e\x36\x36\xea\xb2\x95\x22\xf8\xfb\xc5\x57\x93\xdc\x42\x0a\xa1\x25\x10\x87\x3a\x7d\x68\xc7\xdb\xf7\xaf\x91\x32\xfd\x86\x2a\x56\xf2\x49\xb1\xe0\x02\xbb\x22\x4c\xca\x1b\x4b\xc0\x4a\xa3\xe5\x97\x19\x2f\x37\xda\xcd\xb9\x09\xe5\xd0\x6f\x24\x71\xc4\xf5\x9e\x49\x87\x62\xa4\xc3\x7e\x38\xe7\xfe\x43\x76\x24\xc3\x37\x9d\xe9\x50\x0e\xd9\x68\x84\xd3\x21\x6b\xf7\x7d\xff\x68\xd0\x3f\xcd\xaa\x1b\x9c\x6c\x50\x3e\xa8\xb3\xb1\xb6\x8c\xa6\x6e\x40\x56\x49\xa6\x74\x7c\xee\x17\x6a\xe1\x85\xef\x0a\x62\x8c\xef\xc5\xb1\xd6\x2b\xba\x69\x25\x1b\xb8\x01\x2b\x94\xda\xd0\xbf\x70\x9b\x3f\x40\x51\x59\x43\x2d\xc5\x25\xf8\xb0\x2a\xe7\x44\xad\x6f\xfd\x5b\x3b\x6c\x0e\x35\x21\x40\xac\x58\xf7\x5f\x15\x5b\x6b\x1f\xec\x93\x50\x3d\xe9\xa4\x03\xfd\x14\x6f\x45\xf3\x7d\x27\xbc\x19\xf6\x36\xda\xfe\xd2\xb6\x05\x25\x05\xdf\x37\xa5\x93\xc1\xa0\x55\x1f\x9b\x6a\xe8\x5f\x6f\x0d\x93\x60\xe2\x83\x04\x83\x7c\xa7\x50\x09\x88\xa1\xfd\xbe\x56\xf0\xee\x08\x8e\xb0\x01\x4f\x83\xd3\xee\xcb\xab\x4f\xb0\xaf\xc1\x1d\x7d\xe2\xfb\xb3\xeb\xce\xd5\x07\x97\x35\xf9\xbe\xc5\xf9\xe5\x7b\xf2\x79\x05\x63\x3a\xc0\x86\x46\xd9\xd7\xdb\xa4\x9c\x1f\x34\xfd\xfd\xe0\xaa\x07\x9a\xd1\x77\x3b\xf0\xed\x16\xe3\x3e\xa8\x52\xc2\xe3\xeb\x71\x6c\x28\x4a\x68\x93\x1c\x5e\x1f\xc1\xf5\x3a\xfc\x0c\x89\xe8\xf0\xc6\xa8\xf5\x13\x66\x8f\x22\xbe\x7b\xf2\xae\x50\x09\x95\x84\x08\x17\xc3\xae\xa4\xd6\x41\x7f\x80\x46\x44\xbc\xa3\x22\xc8\x55\xc3\xdc\x9d\x49\xef\x1c\x4e\xe0\x07\xe1\x0b\xb2\xd6\xaa\x7d\xb9\xe4\xd6\x93\x92\x22\xa2\xe4\xfc\x84\x0c\xe9\xc8\x7a\x70\x73\xec\x8c\xca\xad\xaa\x42\x8b\x5b\xf7\x00\x67\x59\xb3\x47\x94\xa8\x68\x9a\xb8\x26\xe0\x29\x66\x5a\xb7\x54\x51\x38\xe9\x7b\x50\xe2\x02\xa5\x5d\xd7\x09\x13\x5b\x26\xdc\x23\xbf\x2a\x47\x62\x36\x46\x8f\x46\xaa\x32\xb8\x6a\x6b\xcc\xd3\x7c\xbe\x6d\x53\xd8\xda\xd4\xae\x48\x54\xf1\xef\x2a\xfb\x4e\x93\x8e\x6f\xff\x79\x49\xc7\x77\x01\x5a\x7e\xf9\xd3\xd1\xf2\xf4\xd9\xd7\x4f\x42\xef\x91\xb7\x45\xcd\xb7\x1a\x35\xfb\xfd\x10\x3b\xbe\x5f\xdf\x17\xe1\xed\x9b\x6d\xe7\x3e\xf4\x3d\x0a\x4a\x91\xe0\x7d\x17\x17\x1b\xd1\x32\x14\xc8\x74\xde\xdd\xfc\xf4\xf2\x4b\x49\x1f\x7c\x27\xb0\x07\x6a\x9e\xaf\x70\xaa\x41\xd2\xf1\xa2\x62\xa3\xf0\x28\x37\xdf\xee\xa6\x68\x95\xcd\x55\x9d\x65\xc4\x7f\xda\x3c\xf7\x10\xbf\x6a\xa6\x77\xd2\x99\x72\x5c\xc4\x6d\x0a\x68\x5e\x53\x40\xf3\x6d\x0a\x68\xee\xd4\x5c\x8b\x74\x79\x8f\x61\xda\xa8\x8e\x16\x6f\xa7\xeb\xf2\x14\xbd\xc5\x06\x80\xe2\x73\x10\xd4\x0c\xf5\x8b\xd9\x50\xdb\x5e\xaa\x5a\xd1\x05\x92\x88\x5a\x63\xcc\x7e\xdf\x29\x07\x0b\x42\x41\x91\x7e\x25\xcb\xe9\xea\x76\xaa\xd2\xea\x24\x44\x90\xca\x3b\x6b\xb5\x93\xb6\x49\x5d\xb3\x7b\xdf\x2c\xd2\xe5\x1e\x39\x5f\xea\x28\x78\x69\x49\x3f\x93\xee\xe5\x64\xc2\xd9\xd4\xab\x67\x22\x88\x84\xd9\x39\x92\x18\xaa\x82\xc4\xd5\xe7\xb9\x6f\xe5\x8a\x53\x3c\xbc\x53\xc5\x48\xf5\x18\x77\x92\x5e\xe9\xb0\xa7\x75\x30\xf3\x38\x9f\x63\x91\x38\x51\xe7\x57\xfa\x5f\xeb\x46\x30\x0e\x7b\x6f\xb7\x17\xde\xdd\x00\x02\x4a\xcd\x87\x1f\xd6\x53\xb0\xf1\xd1\xc6\x7d\x8c\xb9\x22\x9a\xbb\x98\x85\x3f\x70\x9f\xd6\x76\x10\x0a\xb6\xae\xc3\xc5\xcf\xb0\x7b\x1b\xb7\xaf\x58\xaf\x6b\x1d\xe0\x04\xd6\x37\x71\x7e\xd5\x26\x5e\xaf\x77\x19\x24\x02\x6e\xd2\xc8\x13\x7f\xc0\x9e\x37\xb8\xf0\xdb\xfe\x2d\x36\x7d\xb8\x03\xc5\x8e\x97\x7d\xc8\xeb\xbd\xb4\x4e\x1b\x36\x70\x37\x75\xb0\xfd\xd9\x45\x20\xf6\xb8\x70\x6a\x61\x43\x2b\xb4\x5c\x4f\x70\x0f\x65\xa4\xe6\x14\x65\x59\xfe\xcb\x0b\x32\x5c\x91\x11\x26\x48\xff\x68\xf7\x47\x58\xa2\xeb\x18\x63\xb0\x22\x6d\x7c\x1d\xc6\xf1\x33\x02\x4c\x4d\x33\x82\xa3\x15\x9b\x92\x99\xb6\x1d\x7b\x3c\xbe\xa6\x6c\xca\x5f\x0f\xcc\x7f\xee\x1c\x5f\x12\x3c\xd3\x51\xc0\xd0\x9c\xe0\x25\xe9\x3e\x5c\x49\x1d\x4d\xe6\xf1\x38\x27\xe2\x15\x11\xeb\xf5\x92\x74\xbf\x21\xe3\x2f\xa9\xac\x66\xa1\x69\xa9\x1d\x3f\xab\x39\xc9\x66\x71\xdc\xd4\x03\xfb\xd4\x59\x1c\x47\x43\xab\x13\xb6\x29\xa3\x08\x63\x7c\xb9\xf1\x6f\xf2\x19\xaa\x64\x33\x21\x5a\x34\x0f\xe8\x2b\xca\xe4\xa7\xb7\xb3\x74\xb1\x24\x53\xbd\xde\x9a\x5b\xa5\x8b\x25\x17\xf2\x99\x8e\x33\x98\x37\x83\x3c\x34\x51\x03\x6f\xcf\x53\xc6\x48\x10\xa4\xee\x15\x01\xf5\xd8\x3d\x3e\x25\x60\xa5\xce\x08\xea\x43\x63\x21\xb9\x20\x01\xf5\xea\x93\x1b\xc1\x6e\x39\x23\xde\xc1\xad\x70\x51\x5c\x91\x43\x3d\x81\xa0\xa7\x66\x96\x8c\x20\x50\xff\xb5\xfb\x23\x68\xbe\x9d\xe5\xc3\xa6\xba\xf5\xa1\x96\x8b\x71\xa7\x23\xe8\x05\x41\xaf\x09\x3a\x27\xe8\x2e\x41\x8f\x09\x7a\xe6\x17\x11\x9d\x81\x29\x19\x80\xbb\x04\x5b\x5c\x76\x19\x39\x97\xcf\xe9\xe4\x25\x7a\x5c\xa4\xbd\x22\x22\xa7\x9c\xe5\x5d\xc6\xa7\xa4\xbb\xd0\x12\xfd\xc1\x5f\x80\x41\x02\x4e\xa7\x6d\x78\xda\x85\x83\xd2\xef\xd3\x6b\x6b\xf5\xfb\x83\x03\x88\xca\xbb\xfd\x31\x81\x71\x1c\xf5\xd4\x5c\x3e\x26\xc3\xfe\x28\x8e\xa3\xbe\xfb\xba\x3e\x8a\x63\xd5\x8f\x9c\xc8\xfb\x0b\x7b\x0b\x0a\xaa\x9e\xd6\xd1\x7a\x97\x80\x33\x02\x37\x30\x99\x93\x01\x78\xa1\x76\xc5\x6b\x83\xd2\xb9\xce\x40\xe7\x04\x4f\xf9\x44\xef\x67\x1b\x79\xf1\x39\x39\x97\x8f\xf8\x94\x80\x28\x82\xe8\x35\xe9\x72\xb3\x42\xc1\x39\x41\x97\x93\x79\x2a\xd2\x89\x24\xe2\x4e\x2a\xd3\x64\xbf\xb7\xd9\xd2\xea\x39\x31\x8f\x21\xbe\x20\xb8\xdd\x7e\x41\x3e\xbc\xbe\x81\xc9\x82\x0c\x00\x18\x9b\xc6\xcb\x4b\x04\x76\xd5\x9a\xea\x77\x39\x73\xa1\x27\xcf\x48\x73\xbd\x63\xa2\x41\xaf\xab\xa3\x58\xda\x4a\x40\x4f\x0d\xcf\x4f\x13\xc6\x78\x46\x1a\xdf\xdd\x13\x5d\x41\x7e\x5c\x51\x11\x98\x86\x1a\x3d\x24\x41\x0f\x79\x50\x08\xa2\x57\x44\xc8\xf3\xc8\x29\x91\xf7\x31\x06\x19\xc1\xfa\xa9\xa4\xc7\xec\x01\xe7\xcb\xf5\xda\x7e\xd8\x50\x19\x30\xac\x3e\x33\xe8\x4f\xd4\xda\xaf\xa9\x77\x74\xe2\x06\x40\x9d\x8b\x6a\x04\x5d\x6d\x7d\xa8\xfe\xf8\xf8\xaa\x35\xc9\xe7\x2c\xe3\xe3\x34\xab\x87\x58\x65\xdc\x66\x25\x7b\xbf\x56\x35\xfc\x5a\x11\xc9\x5f\x9b\xa4\x5f\xef\xcd\xf8\x8a\x4d\x23\xd8\x32\xdf\x1b\xeb\xe5\x82\x27\x04\x59\x83\x4f\xd3\xa3\x08\xc1\xfe\x24\xa8\x07\x4d\x08\xf7\xdb\x6a\x3a\xd1\xc9\x96\x57\x2f\x9c\xfb\x8c\x66\xba\x8a\x8d\xfb\x52\x6d\xdc\xbc\xcb\x99\xd5\x58\x97\x7c\x53\x0a\x37\x32\x0b\x35\x9b\x35\x81\x29\x64\x6c\xa5\xca\x0d\x87\xa3\xc9\xe8\xbe\x78\xf1\xe4\xe9\xe3\x87\xf7\x9f\xdd\x7d\x71\xff\xd1\xb3\xe7\x4f\xbf\x7a\x78\xf7\xd1\xf3\x93\xe7\xf7\x1f\x3f\x7a\xf1\x02\x3a\x45\xc2\x13\xb2\x47\xd9\x1e\xc5\x57\x17\x41\x2b\x10\xb8\x5c\x47\x48\x87\xd9\x81\xb4\x7a\x75\xe5\x89\xda\xc9\x2f\x09\x78\x42\x10\x1d\x3e\x21\x23\xa3\x77\x78\x4e\x30\x00\x0c\x5f\xa6\x79\xba\x4c\x26\x04\x4d\xd2\x5c\x26\xb7\x09\x72\xef\xac\xdc\x41\xc1\x35\x86\x24\x45\x69\x96\x25\xdf\xa0\x42\xf5\x95\x7c\x89\x44\x3a\x21\xc9\xe7\x48\xc9\xb7\xc9\xaf\x50\x20\xe6\x26\xbf\x44\xf6\xf2\x44\xf2\x3d\xd2\xd7\x29\x12\x42\x90\xbf\x63\x91\xfc\x88\xfc\xdd\x8b\x64\x85\x38\x4b\x5e\x12\xed\xf6\xff\x90\x20\x27\x99\x32\xe2\xa4\x52\x4a\xd0\x22\x5d\x26\x82\x6c\xa0\x5d\x28\x27\x04\x31\x77\xe5\x23\x27\x88\xc1\x96\xbd\x54\x31\x21\xc8\xde\xb2\xb8\xad\x7e\x39\xb7\xa4\x3b\xa8\x7c\x27\x23\x45\xe6\xa6\xc6\x37\xa8\x74\x7d\xe3\x4b\x64\x2f\x75\x7c\x8e\xec\x25\x8f\x5f\xa1\xf2\xdd\x8f\x5f\xa2\xe2\x56\xc8\xf7\xc8\xdf\x14\x21\x28\xbc\x40\xf2\x23\x0a\xaf\x96\xac\x90\xbe\xc2\xf1\x92\xd8\xdb\x1b\x0f\x49\xf1\xfe\x93\x5a\xbb\xfe\x92\x0a\x55\xbf\x17\xe9\x12\x0b\xf5\xc3\x0f\x94\x04\x03\x2d\xae\xe6\x3c\x57\x7c\xaa\x04\xe6\x26\x8e\x31\x40\xd7\x89\x55\xd9\x5e\xaf\x03\x19\x78\xf1\x04\xe8\x38\xd8\xfa\x02\xd5\x30\x1d\x99\x5f\x52\xff\x32\x56\x89\x26\xf2\x65\x28\x52\x1c\xdb\x1f\xe6\x36\x5b\x1c\xaf\x9c\x11\x64\x05\x52\xed\xd8\x44\x67\x80\xbb\x34\x6e\xd3\xcc\x1d\x86\x80\x42\xdc\x36\x36\xe3\x19\x65\xfa\x11\x93\x55\x46\xf6\x3e\x8a\xda\x69\x3b\xfa\x28\x82\x2d\x43\x4f\x32\x13\xa9\x37\x7a\xf8\xf8\xce\x57\x0f\xee\xbe\x78\xf4\xf8\xf9\x8b\x7b\x8f\xbf\x7a\x74\x27\x42\xc6\x87\x7d\x82\x55\xdf\xf1\xa5\xbd\x98\x94\x5c\x6e\x36\x2d\x35\x86\x61\xcf\xbe\xaa\x36\xe9\xda\xac\x26\xf3\x1a\x05\x1a\xb6\x3f\x1a\x92\xd1\x7a\x4d\xe0\x06\x4d\x50\x51\xc0\xb1\xf0\xce\x6a\xad\x5a\x72\x99\x1b\x1f\xde\xfa\x6d\xd0\x84\x52\xdc\x3b\x4c\x8b\x9b\x23\x69\xbb\x0d\x29\x60\x0a\xd7\x85\x21\x63\x03\x20\xb8\xec\x27\xc3\xaa\x1f\x4a\xe9\xf6\x94\xe8\x8e\x2f\x24\x79\x60\x84\xae\xba\xc5\x3c\x03\x4a\x9e\xd3\x41\x5a\x10\xc3\x72\x58\x18\x4a\x6e\x5c\x03\xa2\xcd\xe0\xc1\xc7\x1d\xa6\xc4\x17\xc9\x6f\x5d\x48\xa2\x4f\xf9\xb2\xf4\x69\x87\x25\x91\x30\x95\x31\xfd\x6a\x0a\x4a\xb1\x18\xea\x00\xdc\x15\xbf\xa7\xb2\xac\x70\xe3\x1a\x90\x6d\xa1\x1a\x11\x1b\xd0\xd3\xae\x89\x10\xad\x70\x0f\x4d\x70\x7a\xdc\x1b\xb0\xce\xc7\x09\x43\x33\xdc\x3b\x9c\x1d\x4d\x0e\x67\x6d\xfc\x31\x94\x98\x0e\xcd\xdd\xf0\xdb\x7c\x4a\x4e\x24\x98\xc1\xd1\xd1\x51\xff\xd3\x75\x35\xb9\xdd\xd7\x19\xd7\xeb\x19\xd7\x55\xc6\xcd\x7a\xfa\x0d\x38\x42\xf9\x70\xd5\x6e\x8f\xb0\x3c\x3e\xee\xdf\x8c\xaf\x7f\xf2\x49\x90\xf0\x69\xf8\x7d\xfd\x93\x4f\x62\xd9\x52\xcc\x77\xaa\x24\xc7\xc6\x4e\x35\x34\xdd\x87\xa3\xe3\xe3\x8f\x4b\x95\xc0\x56\x7f\x67\x2d\xfd\xde\x96\xa1\x7d\xdc\x38\xb2\xe3\xe3\xeb\x3b\xfb\xec\xd7\x4f\xae\x66\x75\x26\xf8\xe2\xea\x79\xf5\x26\x39\x8a\xc5\x87\x37\x10\xc7\x43\x35\xbf\x3d\x94\x63\xd1\xa1\x87\xe9\x51\x7e\x98\xb6\x71\xff\xe6\x8d\x4f\x6f\x40\x6e\x94\xd7\x13\xfd\x4c\x47\xda\xd6\x89\xc7\xf9\x20\x4f\xec\x6f\x68\x86\x4b\x07\x40\x62\x32\x14\x9d\xfe\x08\xd9\x22\x6c\x28\x8f\x8f\xaf\x8f\xda\x6c\x28\x8f\x8e\x3e\x8e\x6f\xde\x18\xb5\x23\x8c\x23\x68\x9e\x3f\xa4\x1a\x3f\x40\x15\xb9\x3e\x3a\x3a\xfa\x14\xb6\x1b\x4a\xf7\x7b\xba\xf8\xf1\xb1\x29\xae\x6b\xba\x6e\x6b\x8a\x8a\x9b\x93\xbc\xfb\x03\xa7\x4c\x71\x8a\xc5\x73\xd5\x4c\x8d\x89\xaa\x3f\x7c\xbb\xa0\xa1\xb1\x34\x28\x7e\x1a\xeb\x26\x4a\x71\x74\x72\xeb\xf6\x9d\xbb\xf7\x3e\xff\xe2\xfe\x2f\xbf\x7c\xf0\xf0\xd1\xe3\x27\xbf\x7a\xfa\xec\xf9\x57\x5f\x7f\xf3\xed\x77\xdf\xa7\xe3\xc9\x94\xcc\xce\xe6\xf4\x87\x97\xd9\x82\xf1\xe5\x8f\x22\x97\xab\x57\xaf\xcf\x2f\xde\xf4\xfa\xd7\x6f\x7c\xfc\xc9\xcd\x5f\x7c\xfa\x59\x5b\x07\x47\xea\xa1\x95\x8f\x4d\x73\x98\x1f\xad\x0e\xdb\xed\x1c\xb2\x61\x3e\xc2\xe9\x30\x1f\x21\x3a\x4c\xc3\xc9\xce\xe1\x08\xe7\x05\x7b\x92\x85\x77\x22\x83\x07\x4a\x3e\xfc\xb8\xe9\xcd\x88\xfb\xe6\xd5\x05\x1b\xba\xbe\xbb\x67\xc8\x43\x70\x3f\x6f\xb1\xca\x24\x5d\x66\xfa\x25\xc7\x8f\xfd\x25\x3d\xe2\x2f\xca\x29\x7c\x5a\x74\x76\xf4\xc3\x49\x26\xa6\x2d\x44\x43\x81\xf4\xfd\xa4\x41\x2f\xf9\xb8\x23\x3e\xfc\x78\x54\xf0\x46\xfe\xfe\x99\x37\x7e\xe8\xf8\x50\x43\x45\x24\xe4\x61\x7e\x24\x0e\x73\xe3\xe7\x0e\xc8\x30\x57\x0b\xff\x66\xdc\xbf\xf9\x8b\x7e\xff\xe6\xa7\x3d\xd8\x56\x69\xed\xbe\x9a\xf9\xf8\xe6\x27\xd7\x75\x8a\x5a\xce\x2a\xf5\xfa\x08\xa2\xd4\xad\x02\xc0\x31\x85\xc7\xc7\xfd\x4f\xed\x0a\xe0\xc7\xc7\xfd\xeb\xc5\xef\x9b\xf6\xe7\xcd\x1b\x71\x10\xab\x2f\x2d\x16\x04\x1d\x46\x9d\x28\xc4\x73\x0f\x8e\xf0\xcd\xeb\x88\x0e\xa3\x17\xf5\xf4\x1b\x1b\x74\xb9\x19\xa1\xeb\x65\x1a\x5c\x52\xc9\xc1\xcb\x4d\xa8\x65\x2f\xd1\xe6\xd0\xdd\xba\x64\x59\x9d\x12\x75\x88\x7d\xf5\xf4\xfe\x6d\xbe\x58\x72\xa6\xaf\xf6\xd6\x39\x71\x2b\x28\xab\x3d\x7c\xdb\x76\x0c\xdc\xfc\xe4\x93\x1b\x37\xe0\x66\x13\xea\x9b\x4c\x6d\xb8\xc1\x23\xa8\x48\x0a\x2d\xd0\x51\xa4\x36\x41\xd4\x62\xc5\x9b\x26\xd2\xbb\x04\xac\xd7\xfd\x83\x1e\xf4\xfb\x26\xc5\x02\x8b\xf5\x5a\x1f\x56\xfa\x94\x52\xe7\xe3\x11\xee\x5f\xff\xc5\x00\xd0\x36\x26\x80\xc3\x76\x53\x3f\x35\xdb\xa0\x9b\x81\x09\x6f\xe3\xe8\xc3\xa8\xad\x92\xbc\xf8\x0f\xfa\x37\x8b\x93\xae\xad\xaa\xd9\x00\x89\x7a\xc8\x07\xa0\xda\x6c\x60\x93\xf8\x21\xe3\x58\xea\x47\xea\xec\xb1\xab\xd5\xce\x6a\x8e\x6e\x84\x73\x04\x2f\xcd\x06\x07\x11\x5b\x2e\x92\x71\x9a\x93\x9b\x1f\x77\x7e\xc8\xa3\x3a\x3f\x74\x69\x99\xa7\x84\x80\xa8\x80\x53\xad\xa3\xb0\x0a\x25\x42\x75\x08\x53\x78\x16\x9d\x8c\x4a\x72\x45\x55\x75\x78\x55\xe5\x06\x5d\x06\x8d\x24\x7d\xd4\x00\x97\x5c\xdf\x8c\xd4\x88\xd0\xf0\xc6\x08\xa2\x26\xe5\xcb\xbd\x34\x97\xb7\x38\x0f\xdd\x1a\xf5\xa2\xac\xeb\xde\x0c\x8a\x1a\x04\x0f\xc3\x5b\x0d\xcc\x7f\x1e\x95\x12\x34\xde\x05\x33\x1d\x88\x63\xf3\x7f\x37\x5d\x4c\x07\x16\x35\xc3\x11\x92\x30\xd9\xd6\xee\xc0\xfe\xdf\xbd\x9d\xd1\xe5\x98\xa7\x62\xfa\xcb\x67\xba\x0d\x52\x4d\xb1\xae\x8a\xdb\x99\xd5\xc0\x48\x15\x88\x6c\x02\x30\xcd\xa3\xca\x21\x1b\xf9\x07\x59\x86\xcc\xb3\x64\x36\x9c\x89\x4a\xc2\x97\x34\x61\x28\x4b\xf6\xfb\x28\x64\x0c\x9d\x74\xed\x9f\xdc\xa5\x9e\xd7\xa3\xa8\xf8\x2d\x20\xa2\xdd\x0c\xef\xf7\x8a\x34\xcf\x02\x76\x17\x98\x20\xd1\x9d\x60\x89\x44\x97\x36\x3e\x1b\xad\x0e\xe2\xf2\x33\xad\xda\xf7\xa4\xab\x9f\x88\x81\xeb\xb5\x35\xe4\x1b\xa4\x7a\x01\x4d\x81\x5d\x3a\x91\x21\x1d\x67\x44\x77\xde\x28\xc4\xf5\x57\x4f\x3f\x9e\xc9\xcc\x8b\x2c\xac\xe9\xd5\x3e\xed\x61\xff\x82\xe4\x0f\xcd\x74\xd7\xf1\xeb\x65\x87\x4d\x43\x28\x14\xb2\x29\x82\x66\x4c\x81\x44\x51\x1a\xe9\xd7\xa3\x55\x73\xbc\x59\xb6\xbe\xc2\x25\xc1\x59\xc1\xad\x32\x5f\x11\x22\x01\x44\x37\xc7\x37\xe0\x06\xd4\xd8\xdc\x20\xf2\x6d\xab\x1a\xfb\xb6\x16\x40\x40\x20\x86\xf5\x09\xa5\xaf\x28\x17\x63\x16\x89\xdf\x96\x62\x63\x17\x44\xc3\x1a\x7f\x76\xb1\x18\xf3\x2c\x8e\xa3\x5c\xff\xa8\x66\x74\xa9\x34\xee\xae\x83\x86\xf9\x75\xab\x7e\xd3\x78\x55\xbf\x51\xe9\xe3\x9a\xab\xfa\xe2\xf8\xf4\x7d\xf7\xbb\xc0\xe5\xc0\xf5\x2d\xf1\x0d\x5a\x57\x81\x66\x6f\x6c\x73\x50\xb9\x97\x66\xb5\x63\x95\x0c\x7d\x12\x9d\x3b\xfb\x50\x8c\x5a\xac\x5b\x2c\x2c\x1c\x7e\xac\xd7\xfb\x7d\xf3\x10\x9d\x5f\x86\x6a\x1b\x44\xe6\xa1\x6e\xca\xf6\x4c\x30\xba\xd7\x82\x4a\x9b\x07\xd1\xb6\xe5\xcc\xba\x2f\xc9\x85\xf6\xd5\xdb\x72\x3a\xb9\xd5\x16\xc7\x04\x04\x8b\x48\x6d\x3f\xa6\xd3\xf4\xcd\x00\x25\x16\x85\xb1\x90\xcb\x2e\xe8\xf0\x12\x94\x57\x8a\x7e\x1d\x87\x84\x4e\xd8\x12\x6e\x0b\x63\xa0\x85\x4f\xb5\x46\xf7\xd2\xbd\x49\xa6\x5d\xc1\xf3\x52\x30\x83\x8d\xb3\xa9\x41\x14\x3a\x74\x3e\xd6\xaf\xdb\xe4\xc0\xbd\xad\x4e\x19\x95\xcf\x48\x46\x6c\x07\x37\x5e\xec\xf5\x2f\xf1\x96\x0b\x3a\xe7\xfc\xaa\x06\xb0\xe6\xa6\x78\xdc\x6b\x74\xce\xe9\x8d\x06\xe1\x47\xe2\x1e\xfc\x48\x75\x6d\x98\xd8\x1f\xee\xa1\x1b\x26\x53\xca\x74\x30\x0b\xff\xdb\x64\x91\x05\x95\x26\x62\x86\xfd\x65\x1f\xb8\x70\x41\x2b\xcc\x0f\x9b\x48\xce\x75\x12\x39\x97\xa5\x67\x30\xb0\x0f\x40\x61\x43\x8c\x69\x3c\x90\xe9\x73\x05\x1f\x45\xfe\x21\xe0\x12\x8e\x1a\x10\xe0\x1b\x19\x04\xd5\xdc\x4b\x5f\x12\x60\xed\x5c\xa6\x33\x36\x00\x90\xc9\x36\x9a\x1c\x00\x7d\x23\x45\xa9\xad\x28\x36\x4e\xf2\x38\x12\x52\xed\x7a\xaf\x75\x76\x3f\xee\x9a\xd8\x61\xdd\x33\x22\x4f\xa4\x14\x74\xbc\x92\x04\x44\x53\x2a\x22\x7b\x57\xcb\xc4\xf5\x36\x1d\x73\xef\x61\xbf\x24\x36\xb8\x8a\x8b\x8c\xd1\xa0\x34\x26\xa5\x92\x9b\x5a\x51\x5c\x9e\xac\x6e\x3a\x9d\x6a\x6d\xd5\x03\x9a\x4b\xc2\x88\x00\xd1\x24\xa3\x93\x97\xd1\xd6\x36\xe1\x7a\xed\xc2\xe7\xa8\x5c\x35\x90\xaa\x52\xdd\x0e\xce\xb0\x2b\xa9\x20\x69\x04\xcb\x05\xba\xb9\xbc\xc8\x48\x77\xc6\x99\x7c\x46\xdf\x10\x1c\xf5\xaf\x2f\x65\xd4\x08\x33\xe6\x62\x4a\x04\x8e\x7a\xcd\xd9\xcb\x74\x3a\xa5\xec\x6c\x6b\xfe\x22\x15\x67\x94\x6d\x2f\x6e\xdd\x94\x70\x94\x8e\x73\x9e\xad\x14\x03\xd6\x00\x37\x94\x83\x48\xd0\xb3\xb9\x8c\x92\x28\x23\x33\x19\x8d\x70\xd4\xf9\xec\xb3\xcf\x3e\x5b\x9e\xdb\x63\xc2\x29\x50\x97\xe9\x19\xf9\xee\xf1\x6c\x96\x13\xb9\x5e\x6f\x9d\xf5\x7c\x22\x78\x96\x3d\xe7\xcb\x56\x53\xa7\x24\x5f\x62\xd1\x8e\x96\xe7\xb5\xbe\x94\x16\x8b\x20\xe9\x94\xb3\xec\x22\x42\x51\x0d\xbf\xc6\x93\xd2\xaf\x75\x54\x9d\xf4\xe5\x92\xb0\xa9\x7e\x39\x0f\x94\x0a\xc2\x86\xcd\x05\x7a\x88\xb9\xf3\x1c\x36\x82\x4f\xf8\xf2\x42\x81\x06\x3b\xa4\x58\x84\xdb\xf6\x60\xb0\xb4\x9c\x0d\xbd\xe8\xa0\x29\xfe\x8e\x0b\xb3\xbe\xd6\x8b\xfb\x7e\x4d\x9b\x47\xc7\xff\x2b\x23\x6e\x5b\x4f\xb6\xa3\xca\xef\x01\x13\x4d\xb0\x4c\x21\x0c\xe1\xd8\x86\x81\xab\xb0\x6c\x28\xd1\x76\x1c\xbb\xa4\xad\x34\xc8\x05\xae\x11\x17\x97\x81\xe1\x8b\x9c\x93\xc9\x6d\xbe\x58\xa4\xcc\x8e\xc8\x50\xf1\xe0\xa6\x0f\xc1\xfb\xfd\x8d\xce\x32\x21\xb0\x8c\xd3\x81\x12\x25\xcb\xcf\xad\x9b\xf4\x5a\xf3\x2e\xec\xa1\x25\xf6\xfa\x7f\xa0\xf8\x8c\x95\x8e\x7c\x1d\x25\xee\x02\xcd\xa5\x69\x39\x09\x7a\x81\xcc\xf3\xfe\x55\xf4\xf8\x28\x3a\xe1\x91\x80\x26\x19\x49\x85\x27\xf6\x26\xaf\x9c\xd6\x1d\x53\x3b\x4a\xb8\x09\x10\x57\x82\xd9\x7a\x48\x98\x56\xec\x49\x60\xbf\xba\x33\x3e\x59\xe5\x00\x22\xbb\xdf\x75\x04\x31\x7f\x22\xdb\xd5\x72\x92\x65\x4f\x53\x76\x46\xf2\x60\xb2\xa6\x24\x97\x82\x5f\x6c\x6b\xac\x44\xb4\x5d\x99\xd4\xf6\xaf\x12\xd1\xf3\x27\x9d\xe1\x7a\xd5\x44\xfe\x11\xda\x17\xee\x2c\x47\x26\xc3\xbf\x8e\x6f\xd2\xe3\x38\x9a\xac\x64\x35\xb5\xa6\x18\xfa\xc8\x29\x86\x5c\x97\xf7\x4c\xe0\x5f\x7d\xb9\x8b\x50\x39\x27\x62\xcf\xd4\xbf\xc7\xd5\xaf\x95\x8c\x3e\x32\x91\x6a\x1b\xe4\x83\xb0\x25\x8f\x0a\x69\x77\x52\xf5\x91\x7d\x3a\x03\x85\x1f\x88\x8d\x04\x5d\x0a\xa0\x01\xbc\xa1\x94\x0c\x02\xa9\x37\xa1\x80\x40\xb8\x5e\xf7\xb5\xff\x08\xe3\x53\xa2\x38\xb6\x1d\x03\xb3\x1d\x08\x07\x96\xee\x99\x3c\x4b\xd5\x3f\xd2\xc6\x08\x33\x4c\xe7\x27\xe4\xb0\xa8\x25\x96\xd2\x41\x9f\x2b\xbe\x76\x1a\xd5\x5f\x8c\xac\x37\x99\xba\x72\xdd\xf0\xce\x5c\x41\xff\x35\x13\x4a\xd2\xe9\x1e\x9f\xed\x15\x35\x17\xc5\x5c\xc7\x56\xb2\xd6\x2f\x50\xed\x98\xaf\x14\xae\xd7\x3b\x3a\xfd\x6e\xbd\xfe\x8e\xaf\xf6\x26\x29\x3b\xfd\x48\xee\x4d\x56\x72\x4f\xbf\x38\x3b\x13\x7c\xb1\x47\x0c\xe6\x72\xe3\xe3\x12\x8c\x48\xad\x92\x86\x91\xe4\x1f\xb9\x9b\xec\x8e\x77\xdc\xec\x5e\x45\x06\x6c\xb3\x19\x41\x73\x2f\xad\x50\x4a\xa4\x1b\x44\xf1\x90\x20\x01\x7e\x01\x47\xc8\x2f\x12\xd0\x64\x66\x01\x0c\xa7\x70\xc0\xfc\x9d\x23\x0a\x13\x06\xd7\x6b\x50\xd4\xc6\x4b\xb7\xaa\xc2\x6b\xbd\x02\xdc\x84\x88\x62\x01\x3e\x09\x5b\xaf\xc2\xfa\x08\xe6\x71\xbc\x2f\x1a\xde\xea\xa5\x79\x4e\xd9\x99\x33\xf7\x14\x5e\x49\x79\x64\xee\xa1\xb1\xae\x51\xc9\x82\x6d\x42\xc8\xb3\xb2\x37\x53\xa0\xb2\x35\x7a\x33\x5f\xcf\x8c\x01\xb1\xa5\x8e\xe7\x73\x2a\x1a\xab\xb8\xe7\x05\x19\xf3\xc8\xad\xda\x4e\xc1\x65\xb8\x2d\x36\x1c\x52\xe7\x3d\x55\x36\xba\xb4\xa4\x32\x9c\x54\xd2\xc8\x11\x98\x50\x68\x2e\xf6\x4e\xd1\xb6\x02\xb8\xba\xfd\xea\x4b\x87\x33\x2e\xee\xa6\x93\xb9\x53\x26\x84\x54\x66\x4b\x57\x37\xcd\x9d\x7d\xa7\x8a\xb7\x8e\xab\x36\x32\x3b\xc3\x57\x8e\x8b\x02\x7f\xd4\x8f\xf9\xf4\xc2\xfa\xa0\xf9\xba\x9a\xaf\xea\x96\xef\x1f\x57\x57\x07\xda\xfb\xe2\xf9\xc3\x07\x96\xce\x99\x8f\xdb\x3c\xb3\xc7\x1e\x52\xbb\xf5\x91\x45\x7b\xa4\x4e\xaf\x46\x2f\x53\x09\xe0\xe5\x46\x86\x61\xdc\x6b\x21\xc6\xc3\xab\xf0\x5d\xe2\x1c\x09\x09\x2e\x1e\xe0\x07\x4c\x1b\x50\x81\x8d\xae\x07\xa1\xbd\xf3\x30\x63\x89\x44\x13\x79\x9e\x08\x1b\x97\x7a\x83\x38\x9b\x90\x1d\xf5\xb7\x02\xf3\x34\xbc\x64\x5d\x3e\x9b\xe9\x7b\x14\xc8\xc5\x11\x11\x0d\x41\x44\x68\xf7\x05\xb6\xcc\xb4\xae\x93\x9a\xe8\x06\x0b\x5a\x3e\x94\xbc\x0d\x0c\x0f\x47\x26\x88\x69\x3d\x1e\x27\x12\x18\x80\x86\x81\x42\x3d\xc0\xe1\x08\xfa\x07\x7f\xcc\xfb\x33\xa2\xfa\xee\x8c\x18\xb2\x51\x77\xe6\x88\x92\xfe\x9a\xc8\xf3\xe0\x36\x99\x45\x43\x73\x80\xc3\x26\x1c\x23\x13\x30\x51\x9b\xb3\xf4\x92\x8b\x63\x09\x0b\xf3\x73\x0f\xa5\xfe\xf6\x88\x7f\xcc\x88\x0d\xb9\xea\x85\xb9\x25\x6f\x3f\xba\x2f\xcc\x27\x75\xc6\x95\xc0\x64\xe2\x02\x31\x0d\x74\x68\x46\x9a\xf8\xc7\x0b\x88\xb9\x4d\xb2\xd9\xa0\x40\x71\xbc\x85\xa8\x36\x2a\xef\x8c\xae\xa7\xa6\xc0\xa3\x58\xeb\x4f\x38\xce\x81\x0e\x9e\x93\x03\x16\x3a\xa1\x96\x55\x6a\x25\xb5\x26\x29\x54\x7c\x64\xb3\xd9\xea\xa9\xf0\x67\xac\xe2\xcb\xfe\x2b\x54\xf1\xb5\x8c\x33\xc7\x16\x35\x9f\x5a\x62\x7f\x1a\x45\x5f\xab\x72\x8f\xb8\x78\xc8\x24\xa8\xfc\x29\x99\x11\x41\xd8\xc4\xb5\xa0\xca\xee\xcd\xd3\x9c\x7d\xa4\xc8\x33\x61\x7b\xd4\xbc\xe7\x43\x73\x32\xdd\xeb\xec\xe5\xab\x25\x11\x00\x96\x20\x8c\x13\xb1\xb7\xba\xee\xcb\x86\x2b\x45\xb2\x1c\x64\xce\x3b\x4f\x93\x44\x5a\x13\x0a\x50\x3b\x43\xa3\xf5\xc5\x0b\x6f\x58\x38\x23\xf2\x89\xc3\xf4\xe3\x99\x3a\x98\x8a\x2b\x01\xe1\x3b\xd3\x15\x6d\xa6\x9a\x93\x6e\xa6\xcf\xba\xdb\x4a\xa2\x57\xdb\x93\xd5\x26\x76\x57\xb8\x58\xf3\x00\x8a\x22\x32\x5b\x98\x1d\x85\x87\x3d\x72\xbe\x14\x24\xcf\xd5\xcc\xea\xf3\xcc\xca\x21\x63\xa2\x6f\x57\xa9\x43\xab\x98\x19\xa4\x43\xfa\x47\x6d\x1f\x90\xb6\x45\xb6\xbe\xd5\x2d\xe3\x38\x5c\x62\x97\xc1\x3e\x4c\x2e\x8d\x74\x47\x4a\x06\x95\x3e\x72\x8b\x3c\xd9\xef\xa1\xb2\xe9\xa5\xb7\x51\x07\x56\x1c\x03\xdb\x46\x5e\xc2\xe9\xa0\x31\xd5\x04\x00\x0c\x66\x04\x4b\x7d\xbc\x73\xaf\x3f\x40\xd9\x3f\x93\x4a\xb8\x81\x60\x39\x2d\xf1\xc0\xfd\x30\x72\xba\xed\xea\x49\xa0\x41\xb6\x3c\x7d\x63\x1d\x26\x6f\xe0\x7e\x94\xea\x78\x5e\x55\x1f\x37\xd7\x40\xce\x75\x79\xaf\x5f\x70\xa5\xeb\xfa\x31\x5c\x98\x1e\xf1\x0a\x04\xea\x6c\x38\x08\x3e\x92\x12\x9b\xe5\x25\xd5\x60\x65\x37\x69\x46\x82\x80\x23\xe6\x5a\x8b\x65\xfa\x30\xe8\xa1\xb4\x50\x00\x29\x79\xdc\x54\xd1\x74\x6c\x74\xb9\xdd\x3a\x24\x54\x6b\xf0\xab\x5a\x25\xfe\x2d\x1c\x83\x32\x25\xe2\xd9\xa8\xdd\x26\xa1\x65\x55\x28\xd6\x8a\x7a\xe2\xa4\xc4\xa6\xe4\x50\x7d\x56\xcb\x22\xaf\xf7\xa8\x1b\x0c\x68\x50\xf3\x68\x93\x46\x30\x93\xe6\xb7\x4e\xf5\xf3\xa3\x7e\xa9\x94\x02\xe1\xe5\x59\x2a\x74\x42\xc8\x6a\x9a\x34\xc0\x26\xd4\xb9\x04\x6b\xac\x09\x2d\x8e\xe8\x00\xaf\x6a\x21\xb5\xd2\x5b\x74\x78\x1e\xa9\x33\xe0\x95\x13\x44\x73\xea\x3e\x0c\xa0\x5f\x1f\x3a\x1e\xbc\x51\x13\x71\x01\x64\xbd\x89\x26\x25\x5e\xa9\x7b\x52\x43\x90\xb7\x56\x27\xb9\x55\xd5\xb5\x70\xa0\x79\xa2\xb6\x4c\xed\x15\xa5\x9c\xaa\x73\xe4\x48\x0c\xcd\x9f\xad\x96\x4b\xfd\xae\xdf\xcf\x4d\x5f\x86\x46\x9f\x82\xb4\xf6\x62\x84\x24\x8e\x8c\x18\x14\x86\x26\x1b\x92\x51\x42\x90\xc0\xfb\xfb\x65\x8c\x5b\x25\xa7\xef\x5b\x71\xd5\xd4\x4a\x64\xe5\xab\x3b\x58\xc4\xf1\x55\x55\x98\x90\x6b\xa2\x50\x28\x78\xe6\x61\x16\x32\xd7\xd1\x34\x95\x69\xc7\xa3\xad\x13\xb5\xb5\x03\xab\x2c\x2b\x54\x84\x97\xe4\x2a\x76\x20\x01\x37\x05\x13\x3c\xf1\x8a\x8a\x1e\x44\x02\x5c\x57\x7f\xfa\x3f\xbb\xca\xc2\xad\xe6\xcf\x5a\x5b\x9c\xcd\xad\xf0\x17\xc7\xfb\xce\x88\x51\x08\xb8\xfa\xde\x07\xc9\xdd\xe8\x6b\x00\x2d\xe1\x40\xb0\xff\xe5\xb6\xc3\x7a\x2d\xba\x0b\xfe\xe6\x61\x43\x6a\xde\x90\xc8\x1b\xd2\x5e\x93\xf1\x4b\x2a\x2b\x19\x9b\x46\x65\x8b\xf5\x22\x3b\xd4\xbc\xbe\xd3\xfa\x29\x46\xe2\xb0\xc2\x6c\x04\x07\x87\xed\xb0\x2a\x61\x7f\x06\x33\x47\x5a\x04\x93\xee\x32\x55\x34\x54\xc9\xc0\x9b\xcd\x76\x45\xd0\xc7\x30\x14\x3a\x8d\xc8\xa2\x6f\x5d\x1a\x87\xa8\x8a\x30\x43\xeb\xde\x2a\x4a\xc6\xaf\x90\x70\xcc\x80\xf0\xf6\x53\xfd\x90\x75\x29\x5b\x09\x61\x56\xed\x20\xe0\x66\xd3\x1c\x22\xb3\xb5\x5d\x21\x23\x50\x8a\xf8\xbb\xa8\x64\x4c\x81\xcd\xa6\x19\xfd\xe6\x8e\xa7\xbf\x67\xda\xcc\x2d\x54\xfa\x30\xa0\xb6\xd7\xda\x98\x53\xf4\xba\x39\xbc\x34\x35\x1a\x7f\xf3\x22\x97\xdd\xca\x70\x4b\x05\xa0\x4e\x4b\xe2\x18\x04\x96\x92\x12\xdd\x3e\x51\x58\x84\xee\xe2\x52\xb8\xf8\x97\x4d\x9a\x1d\xaf\x8c\x29\x46\xbd\x81\xb0\xb2\x3a\xe0\xa5\xd4\xab\xb0\xc9\xbd\xa7\x50\x6b\xc7\x71\x49\xfc\x08\x54\x31\x71\xdc\xc7\xa1\xfe\x7a\x83\xa4\x57\x80\xd5\x1c\x77\x44\x3d\xb2\x47\xf9\xd2\x5c\x11\x27\x26\x6c\x1b\xf8\x1b\x77\x4e\xc7\xa3\xaf\xdc\x89\xf5\xda\x67\x94\xf5\x41\x26\x1b\xc6\x71\x64\x28\xbd\x92\xf5\x54\x3d\x26\x72\xb4\xbb\xd5\x2b\xad\x96\x70\xd8\x1b\x41\xa8\xfa\x6d\xe6\xa2\x01\x13\xf5\x59\x5a\xaf\x4b\x08\x31\x63\x50\x75\xcc\x58\x53\x79\xd7\x4d\xa7\xa6\xd4\x1d\xbc\x12\x17\x15\x3d\x56\xd3\x7a\xb6\x44\x53\x93\xcc\x67\x77\x1f\xdc\xbd\xfd\x3c\xf2\xd3\xf1\x28\x5d\x10\x48\xbc\xb9\x48\x31\x5f\xfa\x64\xd4\xd7\x9b\xf6\x54\x89\xfb\x8f\x9e\x7c\x55\x29\xb0\x5e\x47\xcf\xef\x7e\xfb\xfc\xe4\xe9\xdd\x93\x4a\x4d\x97\xce\x93\x76\x9b\xba\xbe\x25\x14\x37\xb7\xcb\x42\x4c\xac\x45\x0d\x98\x9f\x85\xdd\x4a\xdb\xaa\x40\x0f\xd9\x1e\x3a\x4f\x49\xa4\x6b\xb4\x16\xad\xa6\x26\x8b\x41\x6d\xf4\x9d\xad\x6a\xe7\xf4\xdb\x3c\x4c\x92\xa9\x11\x7e\x22\xa8\x48\xa8\x45\x88\x15\x7f\x1b\xad\x68\x88\x56\x1d\x0a\x4c\x0f\x61\x8b\xda\x21\xa8\x95\x78\xdb\xd4\xae\x5f\xee\x64\x75\xc3\x1b\x62\x8a\x92\x98\x82\x54\x75\x95\x15\x3e\xa2\x5e\x9f\xa7\x2d\x03\x9b\xd2\x75\x16\xfb\x14\x04\xbe\xdc\x20\x81\x2f\x2d\x77\xfc\x20\x65\x67\xab\xf4\x8c\x24\x11\x61\x11\x7a\x43\x04\xbf\xc7\xc5\x22\x95\xe6\xb1\x3a\xf5\x27\xfc\xb6\x5c\x9d\x4d\x8a\x7a\xa8\x17\x6d\x10\xab\x57\x26\xba\x95\x94\xb0\x66\xd1\x2d\x3e\xc2\x16\x44\xb7\xf8\xa8\xb4\x24\xba\xa5\x6f\xc5\x37\x5c\x8e\x2f\x24\xc9\x93\x61\x74\x2b\x42\xd1\x97\xea\xcf\x43\xf5\xe7\x73\xf5\xe7\xb9\xfa\xf3\x44\xfd\xb9\xab\xfe\x7c\xaf\xfe\x7c\x77\x2b\x1a\x21\x4a\x26\xae\x04\xd5\x45\xf4\xdf\xcf\xf5\xdf\xe7\xfa\xef\x13\xfd\xf7\xae\xfe\xfb\xbd\xfe\xfb\x1d\xbd\x15\x8d\x36\x95\xb7\x76\x8c\x0d\xc6\x46\x75\x2a\x1c\xba\xd3\x5a\x34\x71\xfb\x62\x29\x09\xa6\x48\x3f\xa6\x22\x41\xd4\x8d\x20\xca\xb0\xec\x00\xb6\x5e\xf7\x82\x48\x59\xd7\x95\x6c\xe6\x94\x89\xde\xdf\xd8\xfc\x48\xcf\xc1\x6a\xd8\x1f\x39\xdf\xe3\x4c\x47\x3a\xc9\x50\x8e\x81\x00\xe4\x1a\x48\x8d\x7f\xf2\x92\xbf\x06\xfd\x1e\xa2\x10\xc2\x83\x14\x76\x25\xbf\x47\xcf\xc9\x54\x2d\x16\x76\x2c\x3b\x34\x8e\x81\x09\xc3\xfd\x94\x9c\xdd\x3d\x5f\x82\xe8\xf4\xb4\x3b\xe8\x5d\xf6\x51\xd4\x06\xac\x03\x64\x87\x42\xd8\x8e\x36\x1f\x44\x10\xe5\x38\x77\x2f\x1d\x03\xae\xf6\x1a\x44\xf9\x26\xd4\x31\x22\x51\x1c\x7a\x7b\x36\x82\xbe\x46\x8b\xd7\x64\xb0\x60\xba\x07\xe1\x47\xe2\x42\xc1\xd4\x4b\x14\x0b\x61\x10\x7e\x24\xa2\x70\xb7\xff\x20\x82\xc7\x9d\x7e\x18\xa1\x4c\xf8\x10\x0b\xfa\x71\xff\x32\x2c\xca\xc2\x04\x10\x41\x34\x09\x13\x3a\x11\x44\x33\x1c\x45\xad\x20\x6d\xcf\x36\x01\x66\x38\xda\x8b\x90\xc0\xc2\xa3\x42\xe5\x69\x6c\x94\x7a\xb4\xb7\x1d\xfe\x83\x3d\x07\x5f\x4a\xd5\x89\xad\x54\x8b\xe2\x06\x09\x7a\x14\x28\x3f\xc2\xfd\x41\x5a\xea\xef\x71\xa7\xbf\x5e\xa7\xa5\x1e\xeb\xc6\x52\x9c\xba\x05\x15\x41\xc4\x71\x1f\x81\xfc\x28\x5b\xaf\xf3\xa3\x09\xd4\x13\xdd\x83\x28\x75\xef\xf7\x70\xd4\x43\x72\xc8\xaa\xbb\x73\x64\x13\x26\x17\x5d\xa3\x4e\x6d\xcf\x20\x52\x15\xbb\x4b\x00\x30\x49\xf1\xdb\x95\x6b\xa7\x49\xd0\x49\x68\x3b\x59\xee\x25\x74\xdd\xe9\xf4\x51\x0f\xcd\xda\x6f\x53\x73\xbd\x3f\x69\xfb\xed\x4a\xfa\x2b\x0d\x1b\xbb\x5a\xc3\x39\xfb\xb0\xb6\x8a\x4a\x91\xf1\xb5\xdf\x7f\xbf\xd7\xbb\xe6\xa6\xa7\x25\x83\xf5\x61\x0b\x03\xaa\xe7\x5b\x62\x19\xac\x8f\x0f\xed\x7c\x97\x52\x4d\xe2\x21\x60\x78\x05\xb8\x89\x8b\xdd\x80\x2b\x86\xd9\x36\x5c\xd1\xb6\xea\x31\x52\x10\x05\x2a\x18\x66\x6d\x9d\x11\x04\x1c\xac\x8f\x34\xa9\x8e\xd4\xc9\x45\x9a\x62\xcc\x32\x6e\xde\xd1\xd0\xa3\x3c\xb8\xd9\x3b\xb8\xa9\x64\xb2\x30\xd3\xe7\x76\x6e\xf6\xae\xc9\x6b\x37\x7b\x50\xc3\xd8\x2b\x11\x82\xaf\xd8\xb4\x06\xa2\xfe\x17\x85\xd9\xa6\x1d\x25\x51\x1b\x88\xa3\x7e\x6f\x10\xf5\xa2\xb6\x48\x04\x34\x49\xcc\x25\xb1\x84\xc1\x0d\x20\xa5\x9e\x8f\xed\xe2\x0f\x92\xe8\x78\xd7\xbc\x99\xfd\x2f\xeb\xe0\xb4\xab\x0e\x00\xaa\xef\xff\xe5\xfa\xd9\x7c\xbb\xe9\x26\x6a\xeb\x87\x53\xeb\xda\x0c\xd3\x5c\x2d\x60\xd2\x30\xdf\x74\xac\xe7\x36\x48\x19\x37\xad\x80\x1a\x98\xf9\x0e\x02\x36\xe2\xbc\x14\xb1\x71\x06\x78\x48\xd3\xaf\x7f\x8c\x98\xda\x0a\x95\xa4\x76\xdf\x3f\xb2\x92\xad\xd7\x3d\xf3\x5f\x76\x8c\x79\x1c\x67\x47\x29\xbc\x9c\xb4\x71\x3e\x64\x23\xc4\x8f\x7b\x71\x0c\xb2\x03\xcc\x61\x6b\x2c\x48\xfa\x72\xe3\xef\x9c\x66\x1a\x83\xed\x49\xd3\xda\xe1\x3b\x68\x6d\x95\x68\x5a\x58\x25\xba\xd7\x88\x26\x6f\x22\x82\x26\xd1\xdf\x44\x6b\x37\x13\x1a\x2e\xa6\x94\xa5\x99\x5f\x61\x10\x55\x68\x66\x9b\xfb\x9e\x97\x72\x78\x70\x17\x7d\x55\x3e\x25\x72\xb4\x42\x19\x9a\xe0\xfd\x3e\x9a\xa9\x3f\x4b\xf5\x67\xae\x36\xfd\x54\xfd\x5a\xa8\x3f\xaf\xd4\x9f\x0b\xf5\xe7\x4c\xfd\x19\xab\xdc\x17\xd8\xbf\x74\xee\xc3\x99\x69\xf1\xaa\xa7\x08\xb0\x9e\x9a\x74\xac\xb9\x37\x51\x25\xe1\x6a\xf1\xec\xf7\x34\x5a\x8c\x11\xb4\x8f\x3a\xfd\xf2\x31\xd2\xd6\x80\x71\x0c\x66\x0e\xd2\xa1\xea\xe0\xb4\x7d\x70\x66\x0e\xe1\x00\x3e\x75\xf0\xd3\xf0\x40\x4b\xbf\x8c\xe0\x31\xee\xa1\x45\x29\xf1\xa1\x49\x7c\x55\x4a\xbc\x65\x12\x2f\x4a\x89\xcf\x4d\xe2\x19\x9e\xae\xd7\x8b\xf5\xfa\xd5\x7a\x7d\x11\x36\xba\xe7\x5b\x9d\xab\x79\x86\xa5\x7e\x06\xac\xc5\xbc\x1d\xa5\xc3\x2f\x1f\xde\x7a\x3e\x1a\x44\x50\xf3\xea\xfc\xb8\xc4\xa3\xf4\xaf\xc3\x38\xde\x3f\x5b\xaf\x2f\x06\x60\xbe\x65\xee\xd3\xf1\x58\x90\x57\x54\xc7\x59\xd1\xee\x6a\x59\x46\x39\x43\xe4\xa0\x5a\x13\x4c\xf8\x51\xad\xf2\x4a\x83\x9f\xd9\xf6\x5e\xbd\x6d\x7b\xe3\xe6\xe6\x3e\xab\xb5\xf6\x59\xbd\xb1\x9b\xb6\xb1\xc5\xdb\x36\xb6\x68\x6e\xec\x26\x84\x09\x28\xb7\x76\xb3\xde\xda\x0d\xdb\xda\x54\x1d\xfc\x6f\x89\xcc\x39\x5f\xe5\x29\x9b\x56\x1b\xbc\x01\xcb\x8b\x6c\xd8\x1d\xb9\x09\x5f\x56\x97\xa5\xce\x44\x8a\x9d\x55\xfc\xe2\x16\x4e\xd7\xbc\xe3\x2b\xc2\x14\xfd\xa4\x6f\xd0\x06\x8a\x20\x5a\x0d\x40\x8e\xc1\x18\xaf\x82\xa6\xcd\xc6\x51\xac\x35\x58\x61\xb0\xc2\xab\xa2\xe5\x91\x21\x28\xae\xd6\x61\x04\x55\x43\x96\x80\xb6\x43\x4e\x99\xa2\xe0\x0b\x26\xaa\xb6\x95\xcf\x83\xd5\x9e\x8e\xf1\xb8\xe8\x40\xd7\x74\xa0\x11\x9b\x53\x92\xd1\x05\x95\x44\xe4\xdd\x29\x99\xd0\x45\x9a\xb5\xc7\xe5\x31\x26\x51\x84\x96\x71\xac\x68\xf2\xa3\xd5\x62\x4c\x04\x18\xbb\xad\x0f\xd5\x3c\x29\x8a\x02\x61\x92\x63\xd5\x25\xf3\x70\x13\xd4\xb1\xfb\x4b\x7c\x5e\x1c\x83\xe2\x1d\xd9\x3e\x54\x24\xa8\x07\x51\x56\xe4\x04\x48\xf7\xe4\x02\x9c\x4e\x21\x18\x60\x70\x3a\xbd\xbc\xb1\x81\x6d\x30\xd8\x3f\x9d\x42\xa8\x48\xc8\x07\xfd\xa8\x99\x77\x0a\xc6\xe3\x96\x46\x0e\x4d\x30\x50\x51\xc2\x88\x6e\x56\xed\x67\x30\x89\xe3\x17\x83\x48\x31\x18\x11\x6c\x83\x7d\xf3\xd9\x71\x9f\x2f\xe2\x78\x36\x88\xda\xe6\x33\x6f\x8f\xdb\x60\xbe\x5e\xeb\x2c\x03\x08\x75\x4e\x41\xa2\xb3\x22\x14\xb5\x95\x9d\x14\x89\x46\x33\x2c\x34\x79\x6e\xd1\x19\xa8\x31\x35\x70\xd2\x74\x95\xcb\x4d\x43\xa2\xa9\x53\xaf\x75\x43\xbf\x77\x6d\xc5\x2a\x20\xda\xf8\x66\xef\x9a\x9d\x11\x39\xec\x8d\xe0\xb5\x9b\x3d\x54\x49\xed\x8f\xa0\x4a\xf2\xdf\xd7\x47\xf6\xee\xb5\xab\x27\x8e\x1b\x2a\x2a\x15\xe9\x8f\x0a\x7b\xb1\x4d\x14\x70\x03\x04\xf4\xda\x12\x81\xcb\x32\xd2\x7a\x6d\x52\x0a\xb1\x07\x4e\x70\xcf\xc4\x8e\x51\x6c\x42\xd4\xd5\x4e\xab\x6f\xb7\x1a\xf5\x25\xe4\xf0\x04\xe9\x9a\x13\xc4\xa7\xbc\x65\x3d\x76\x7b\x97\xc5\xc6\xe1\x5f\xa4\x9d\x37\x27\x9d\xef\x47\x5b\x16\x53\x33\xa9\x69\x47\x60\x90\x9c\x9e\xc2\x35\x38\x3d\xdd\x52\xb0\x2a\x55\x44\x3a\xd8\xd2\xe9\x29\x84\x03\x38\x50\xc2\x5c\xfa\x13\xfa\x61\x49\xec\xcf\xd1\x8d\xfc\x27\x74\x63\xfc\xf3\x75\x63\xf5\x53\x66\x45\xfc\x7c\xfd\xc8\x70\xff\x30\x3b\xc2\x96\xbf\xf6\x5b\x64\x1f\x2c\x71\xb0\x69\x6d\xf6\x30\x1b\x55\xd9\x7a\xcd\x9e\xdb\x74\x18\xc7\x65\x1e\x37\x83\xf0\x30\x6b\xb7\xe1\xe1\x04\x2f\xd7\xeb\x3e\x9a\x5c\xc3\x33\x1b\x96\x8b\xc3\x41\xf9\xec\x4a\x4a\xd9\x69\x39\xfb\x66\x25\x3b\x2f\x67\x7f\x56\xc9\x5e\x95\xb3\xfb\xd7\x6d\x7e\x5d\x88\xec\xf6\xfa\x26\x0b\xf8\x63\xae\x13\x41\x77\x18\x79\x45\x8e\xcf\x04\x3e\xb3\xd3\x47\x3e\x15\x06\xa9\x10\x7e\x78\x7d\xd0\x4f\x3a\xba\x56\x47\x3d\x8a\xcd\x3c\xfc\x8b\x5e\xe7\xb3\xd3\xee\xc8\x73\x85\x13\xbc\x34\x9d\x9d\x10\x9a\x81\x09\x4c\x26\xc5\x6b\x21\x56\x59\x35\x41\xee\x67\x29\x0c\x41\x41\x35\x1b\x4f\xef\xc2\xbe\x68\xba\x76\xa4\xba\x15\xa2\x45\x06\x87\x6b\xf8\x88\xeb\x56\x97\xd4\x26\xdf\x41\x45\x95\xa6\xab\x09\x01\x4d\x5e\x7d\x13\x13\x49\x65\x02\x0a\x37\x40\x71\xcc\x06\x22\x61\x1b\xd4\xe9\x1f\xf4\x94\xd8\xd8\x74\xa1\xdf\x04\x5b\x51\x23\xa3\xf9\x23\xed\xb9\x92\x01\x09\x07\xd2\xa8\x77\x01\x4c\x74\xe4\xcb\xf5\xda\x1b\x1d\xe5\xa0\xe7\x34\x53\x72\xa0\x7e\x24\x8e\x98\xc3\x81\xff\x95\x90\xee\x8c\x75\x57\x6c\xa6\x09\x34\xd0\xef\xc9\xb8\x90\x71\x38\xea\x77\x3f\xe9\xde\x8c\x50\xd0\x64\xe3\x2d\xe7\x50\xd3\xcf\x37\x88\x74\x33\xbb\xd7\x0a\x68\x2d\xad\xe8\xf0\x42\xd0\x3b\x1d\x55\x36\xa6\x3a\x12\x35\x91\x97\xfc\x01\x7f\x4d\xc4\xed\x34\x27\x40\xb1\x16\xfb\xd4\xc5\x23\x12\xa3\xba\xe3\xf5\x57\xec\x25\xe3\xaf\xd9\x9e\x6b\x73\x2f\xd9\x8b\xda\x02\xb6\x6a\xf5\x63\x61\x17\xd1\x3e\x8d\x63\x55\x57\x18\xfd\x5e\x47\x30\x1e\x92\x11\x16\x1b\xdd\x57\x44\x36\x26\x2e\x13\x29\x45\x17\x75\x1e\x77\x3a\x24\x97\x80\xda\xc7\x55\x0c\xc9\x28\x1c\xf4\x9d\x54\xa6\xb8\x72\x01\x62\x9f\x04\xb7\xd4\x6b\x14\xa9\x65\x46\x47\xde\x76\x74\x85\x15\x48\x56\xda\x06\x5a\xfb\x7d\x59\x9c\x7b\xc9\xa5\x67\x7f\x92\x08\x45\xc8\x1e\x83\x49\xd4\x8d\x36\xa8\x44\x41\x0b\xc8\x24\x7a\x19\x21\x7b\xba\x24\xd1\x22\x42\x63\xf7\x7b\x1c\x21\x47\x67\x93\x48\x46\x1b\x64\xa5\xd9\x26\x47\x96\x0f\xfb\x3d\xd7\xcb\x3e\xc6\xff\xea\x5f\x01\x95\xd2\x3b\xe8\xf7\xe0\x20\x92\xf3\x28\xe9\xeb\x75\x19\xe5\x32\x32\x9c\xc8\x20\x62\xd3\x28\xb9\x61\x7e\x8a\x69\x94\x28\xa8\x0d\x72\xc4\x3a\xb9\x34\xd4\x3a\x89\x3e\x88\x36\x1b\x88\x48\xc0\x69\x94\xb0\x1d\xb2\x20\x4d\xae\x08\xc4\x3f\x73\x5f\x30\x26\x95\x0a\x82\x8c\x9d\x15\x94\x74\xf9\x95\x3a\xca\x79\x8d\xd5\x44\xbd\x6e\x2f\xda\x18\x9b\x0e\x9d\x96\x22\xcc\x57\x1d\x69\x1d\xff\xa8\xed\x58\xb6\xae\xd0\xd9\x0e\xc8\xb6\x12\xe8\x27\x9c\xe5\x3c\x23\xdd\xd7\xa9\x60\x71\x1c\x7e\x81\xc8\x6e\xe0\xee\x0f\x79\xb2\xf7\xb5\x22\x19\x7b\x34\xd7\x2e\x75\x2e\x52\xcc\x7d\xb9\x37\x4f\x73\xeb\x92\xc8\x3b\x44\x4c\xf4\xcb\x50\xc9\x5e\x84\x24\x84\x08\x48\x2c\xd5\x29\xbb\x00\x10\xfa\x30\x92\xa7\xd3\xf6\x07\x07\xce\xd2\xbe\xaf\x43\x52\x46\xfa\x06\x8b\x4b\x32\xef\x5b\x65\xb8\xbc\x3d\x80\x08\xae\xb2\xd5\x32\x83\xe5\x5c\x3c\x13\xc5\x71\x56\x3d\xb8\x51\x8e\xb3\x32\x17\x80\x18\xce\x9a\x98\x3e\x8a\xa3\x6e\xa4\x9f\x46\x6f\x92\x0b\x06\xd1\xe9\x69\x37\x4a\x9a\x33\x11\xb0\x34\x14\x4c\xb0\xf4\xe3\x1e\xfe\xc5\xe9\x74\xd4\x3e\x80\x70\xbd\xd6\x78\xc9\x57\xe3\x5c\x0a\x25\xd0\x4c\x86\xbd\x11\xc6\x98\x6b\x99\xa8\xa9\xac\x29\xfa\x41\x50\x56\xcb\x42\x3d\xd4\x29\x4a\x17\xed\xaf\xd7\x3e\xc9\xee\xc8\x20\x65\x5c\x4b\x71\xbb\x53\xb7\x5e\x62\xa7\x68\x3b\xba\xbc\xbe\x89\x20\xda\x2f\xf5\xa4\x8b\x46\x07\x67\x0a\x78\x1f\x80\x54\x75\x46\x1f\x95\x0c\x42\xff\x26\x84\xca\x4c\x8b\xe3\x72\x7f\x3f\x55\x92\x69\xb0\x00\xba\xd7\x4e\xa7\x1f\x1c\x28\x3a\x1d\xe4\xac\xa0\xde\xe0\x69\x21\xc5\x36\x94\x6c\x28\x15\xc7\x0a\xac\x5f\x05\x4b\xde\xba\xd9\x2d\x15\x40\xfd\x7c\x60\xf5\xf0\x36\xc7\xf4\x7a\x0d\x9a\x33\x4a\x5b\xba\xe4\xb6\x4e\x67\x6e\x6a\xb5\x27\x6d\xa3\x8b\x6b\x73\x9d\x2e\x64\x30\x67\xde\xc7\xb5\x70\xe5\x31\xb7\xc0\xea\xee\xb4\xa4\xb1\x05\xd2\x8e\xdc\x1e\x0e\x1d\x98\x5b\x2e\xb6\x97\xb1\x9f\x1b\x5f\x5f\xc4\xfc\xf5\x84\xe3\xe3\xe3\x1e\xa2\x58\x6f\x56\x1d\xe5\xac\xe2\xf6\x05\x65\xe0\xec\xd5\x1f\x15\x02\xdb\x21\x3d\x62\x8a\x0b\xa6\xe6\xf0\x3b\x84\xb4\xdd\xd6\xef\xec\x1e\x63\xd6\x8c\x82\xa7\x66\xc8\x6a\x04\x8b\xa5\xbc\xb0\xf1\x91\xf5\x4d\x32\xc6\x9d\x67\xb4\xb9\xaf\x17\xc1\x96\xc4\x62\x48\xdb\xed\xd1\xc6\x35\x76\x48\xdb\x6d\x68\x5a\xd3\x31\xc2\xb4\xf7\xf7\x90\x8e\xf4\xa5\x8e\xe2\x0c\xd4\xa7\xc1\x8c\x61\x1e\xde\x5c\x99\x64\x9c\x91\xa6\xd0\x26\xf6\xaa\x29\x32\x1c\x4f\xd2\x18\xcc\x24\xb7\x2e\xe0\xeb\x75\x85\x90\x17\x41\x57\xe5\x40\x26\x85\xc1\x00\x6e\x90\xe3\xa1\x1a\xdc\x03\x0b\xf7\x0c\xcd\x76\xbd\x9d\x73\xc3\x80\x24\xd9\xb6\x6e\xc0\x4d\xdd\x87\xaf\x74\xa9\xce\x30\xc6\x06\xe8\xf1\xec\x2a\xb0\xea\x8d\xcd\x3a\x8c\x63\xda\x89\xbb\xba\x93\x4e\xa7\x4d\x8e\x96\xa6\xf3\xc1\x1b\xae\x46\x7b\x4d\x4a\x37\x5e\x5c\x9d\xc3\x12\xc8\xa8\x81\x69\x0e\x6e\xa2\xb5\xe5\x35\xb1\x41\x3d\x78\x20\x6d\x0f\xf2\xd5\x58\x8a\x74\x22\x7f\x7a\x37\xae\x6a\xba\xa3\x9b\x0e\x8a\x5c\x93\x45\x37\x6c\x38\xb5\x8b\xab\x10\x78\xf5\x60\xbd\x84\x60\xfc\x14\xbd\xcb\xd7\x35\x71\x0d\xc8\x6b\x02\x1e\x00\x71\x4d\xc0\x0d\xea\xbb\x39\x98\xd2\x57\x74\xda\xe8\x8e\xfa\x73\x35\x7c\xa0\x1b\xde\x14\x0d\xce\xec\x65\x87\xa4\x41\x40\x29\xec\x05\x20\x68\x12\x76\xdd\x44\x01\x09\x9d\xac\x02\x37\x1b\xd4\xe4\xc1\x68\xa2\x52\xc5\x71\x39\x3a\x55\x1c\x83\x4a\xb8\x2a\xd2\x1c\x1e\x8b\xb0\x69\x11\xa9\x80\x59\x81\x45\xc1\xd6\xdd\xd0\xea\x91\xad\xdc\x6f\x30\x1c\x35\x84\xa3\x22\x1b\xb8\x09\xae\x4e\xd4\xdc\x51\xf0\x36\x9e\x7b\x2f\xe0\xb9\xd1\xdb\xf2\xdc\x7b\x8b\x8c\x05\x6c\xf7\xde\x22\x9b\x86\x9c\xf7\xde\x38\x63\x57\x32\xdf\x9e\xfb\xb6\x4e\x62\xf2\x08\xf7\xd7\xeb\x4f\x8d\x90\x28\x8f\xf1\xf5\x9e\x62\xbe\x49\x94\x44\x53\xd2\xc8\x67\xff\xe7\xbf\xfa\x0f\x7b\xd1\x66\xd3\xfa\xf9\x26\xaa\x16\x16\x39\x9c\xa8\xf2\x97\x67\x01\xb7\x24\x83\x68\x4c\x3a\x2c\xd3\x0e\xd7\xe0\x1d\xa6\xe3\xad\x45\xa0\x7f\xfa\xeb\x7f\x13\x4c\xc8\xff\xf7\xef\xfe\x9f\xff\xf2\x9b\xff\x31\x98\x92\x7f\xfa\xeb\x7f\xfd\x5f\xfe\xf6\x3f\x85\x93\xf2\x4f\xff\xfd\xff\xd0\x34\x27\xfe\x0c\xe8\x36\x22\xf9\xef\xff\xfd\x7b\x8c\xe2\xc9\x3c\x7f\x67\x04\xbf\xf5\x7a\x97\x34\xef\x86\x62\x26\xcd\xba\xef\x24\x69\x5e\x81\xd8\x2f\xff\xf1\xaf\xdf\x67\xcc\xbe\x3b\x62\xbb\x7f\x08\x21\x59\x50\x1e\x20\x75\x41\xd3\x10\xad\xe3\x3f\x00\xad\x77\xbe\xfc\xf2\x3d\x46\xeb\x34\xed\x4c\x5f\xfe\xf1\x96\xec\x1f\xae\x16\xb9\x02\xab\xb7\xbf\xb8\xf7\x3e\x63\x95\x74\x26\xf3\x3f\x43\xac\xfe\xe7\xbf\xfa\x0f\xef\x35\x56\xff\x78\x87\xd7\x7b\xad\xbf\xfb\xfb\xff\xf5\x3d\x9e\x15\xc2\x3a\x67\xe3\xf7\x71\xad\xff\x09\x26\xe6\xe9\xfb\x3d\x2f\x6f\xd2\x3f\xd1\x99\xf9\xf3\x4c\x8c\x62\xb3\x2d\xd2\x89\xf0\x53\x31\xe5\x51\xf2\x0b\x93\x69\x6c\x34\xd1\x82\x47\xc9\xa7\xe6\xe7\x2b\x1e\x25\x9f\xd9\x29\xe3\x6a\x9e\xf8\x9f\x21\x5d\x23\x79\xe7\xee\xb3\xff\x36\x53\xde\x54\xf1\xfe\xce\xd3\x1f\x8f\xcc\xed\xc9\xd5\xfc\x1d\xc4\x59\x29\xb2\x7f\x71\xc7\xbb\xb9\x6c\xfc\xc7\x3f\x45\x1e\x06\x88\xfd\x3c\xc4\xea\xf3\x7f\x71\x28\x9d\xd1\xf7\x11\xa5\x85\xd6\xad\x6f\x22\xd8\x29\x1a\x12\x35\xab\x54\xde\x67\x7a\x30\x13\x9d\xdb\x27\xef\x8c\xe0\x8f\xfe\x24\x2c\xe9\x5b\x23\xf8\xfd\x16\xa4\x66\xe2\x3d\x15\xa4\xde\x05\xc5\xef\x39\x8d\x10\x7f\x3c\xfc\xde\xdd\x42\x23\x1e\x8a\xe9\x4f\x25\xbc\x7b\xf7\xe4\x7b\x8c\xd4\xf9\xea\x8f\xc7\xcf\x2d\x68\x96\x96\xd5\x80\x7f\x98\x0a\xe0\xef\xff\xf6\xcf\x70\xb5\xd2\x77\x67\x12\x7e\x46\x05\xf6\x3f\xfd\xdb\x7f\xfb\x2f\x5c\x81\xfd\xc3\xbb\x8b\x8c\xef\xc0\xe3\xfe\xbf\xff\xdb\xcb\x5c\x76\x4b\x7c\x2e\xcd\x7e\xe8\x96\x39\xdd\x1f\xc4\xb4\x5b\x61\x76\x35\xd0\xbf\x34\xe6\x2c\x7b\xf5\x27\x92\xf9\x4a\xa2\xc4\xa2\x4c\x7a\xff\x9b\x5d\x0c\x44\x2c\xfb\x43\xec\x62\xff\xfc\xda\xda\x97\xe2\x7d\x40\x2a\xd8\x86\xd5\x71\x87\xf1\xc8\xbf\xfe\xd1\x00\xc0\xae\x02\xd8\x9d\x3b\xde\x5d\xb9\xca\xfd\x63\x19\xe2\x2e\xca\x86\xb8\xf2\x06\xcb\xde\x66\x83\x5d\x31\xb5\x4f\x1e\x3c\x7a\x1f\xe6\x76\x0b\x72\x97\xef\xbe\x5b\xde\x85\xbb\x29\x33\x37\xf3\x7f\xf8\x3f\x48\xfe\xb3\x72\x38\x4f\xdf\x67\xa1\x72\x29\x3b\x63\xc7\x91\x1f\x82\xf7\x92\x1a\xfd\x59\x32\x8e\x4b\xd9\x59\x1a\xde\x11\xfe\x51\x68\xc2\xef\xfe\xea\x77\xff\xf3\xef\xfe\x75\x48\x16\x7e\xfb\x77\xbf\xfd\xbf\x7e\xfb\x7f\xff\xbc\xe6\xb9\xff\xf8\x1e\x63\x58\xac\x3a\x5f\xbd\xbb\x3a\xe4\x27\x23\x38\xe4\x1e\x55\xca\xef\xfe\xf2\xb7\xff\xb1\xc4\x3f\xfe\xee\xaf\x7e\xf7\x97\x06\xf0\xdd\x31\xfe\xbb\xbf\xfc\xdd\xbf\xf9\xed\xdf\x74\xdf\x6b\xac\xff\xd9\x3a\x9c\xbc\xdf\x04\x23\x7f\x77\xb7\x88\xb7\x96\x34\x7f\xff\x9b\xff\xe5\xf7\xbf\xf9\x9b\xdf\xff\xe6\xdf\x05\xd8\xfd\xfd\x6f\xfe\xfd\xef\xff\xcf\xff\xe9\xf7\xbf\xf9\xdf\x75\xf2\xb8\x48\xb6\xa0\xe5\xfc\x02\xf3\x61\x7a\x09\xe6\xdd\x27\xe4\xf7\xbf\xf9\x4f\xef\xf1\x84\xc8\x1d\x8a\xc0\x7e\x12\x7d\x44\xd9\x84\x46\xe8\x13\xff\xeb\x53\xff\xeb\x17\xbd\x22\xb1\xf8\x79\x3d\x89\x3e\x32\xd9\xee\xc7\xf5\x9e\xfb\xf5\x89\xff\x75\x23\x89\x3e\xfa\x87\xbf\x63\x93\x7f\xf8\xbb\x08\x7d\x1c\xfc\xee\xf7\x7a\xc1\xd7\x4d\x0d\xfe\x8f\x7f\x13\xa1\xcf\x92\xe8\xa3\x15\x9b\xac\x14\x84\xff\x79\xa3\xf8\x79\x53\xfd\xfc\xc7\xbf\xb1\xc0\xc1\xc7\x06\xc9\x9f\xce\x3d\x8d\x29\x2b\x6f\xd8\x0b\x5e\xe2\x4d\x69\x76\x91\x8a\xd2\xbe\x15\x06\xa6\x61\xb1\x98\x50\xd5\xbd\xe0\x6e\x8a\xef\xab\x7d\x1e\x4c\x06\x56\x41\xa2\xaf\x87\x91\xa1\x4a\xeb\x75\xec\xef\x63\xdc\xef\xf5\x06\x0a\x55\x6c\x95\x65\xa3\x66\x22\xf0\xb7\x3f\x75\xcd\xc9\x3f\xe2\x9a\x53\xc8\xfa\xa3\x1d\x68\xbf\xfd\xcd\x15\x1c\x83\x3b\xcf\xc2\x19\xfb\xed\xdf\x68\xa0\x5d\xbb\xfb\xcf\x90\x79\x58\xbd\x0c\x98\x07\xff\x98\xb0\x01\x8b\x50\x93\x83\xb1\x7f\xc7\xc0\x42\x85\xaf\x10\x93\xc5\x98\x88\xce\x24\xa3\x9d\x7c\x4e\x17\xf9\xc1\x94\x2c\x05\x99\x98\x29\xa8\xd6\x66\x67\xd3\x96\x49\x97\xcb\x8c\x1a\xc8\xa8\x78\x2a\x61\x18\xfd\x77\x3a\xfb\x20\xcc\x1e\x6d\x90\x2b\x24\x44\x7a\xd1\x08\xae\x33\x2a\x80\x07\x8b\x95\x09\x1d\xb8\xad\x80\x07\xa8\x16\x5c\x49\x9a\xe5\x51\x72\x79\x52\x6d\x01\x45\x27\xd1\x08\xd1\xfc\xae\x4a\x33\xaf\xb1\xd7\x20\x68\x7e\x62\x7a\x83\x5e\x8b\x74\x59\xcf\x5f\xa4\x2f\xc9\x49\xa5\xbf\x13\xf7\xe2\x76\x53\x5f\x8b\xcc\x86\x02\xf9\xc1\x64\x4e\x26\x2f\xc7\xfc\x7c\x67\xd1\x02\xaa\xb1\x0e\xfd\xe2\xb3\x7e\x6b\x71\x67\x25\x05\xd8\xf6\x5a\x66\x94\x64\xd3\xb7\xa8\xc6\xc0\x85\xf5\x30\x29\x78\x96\x11\xd1\x5c\xd8\xe7\x36\x15\x39\xa0\x4c\x87\x5c\xdf\x5d\x12\x45\x16\xac\xb1\x8a\xa5\xe0\xe7\xdb\x17\x97\xcd\x2e\x4a\x4e\xc9\x78\x75\x16\x25\x97\x19\x3f\x2b\x40\x4d\x22\x8a\xcc\xff\x23\x44\x59\xbe\x24\x13\x59\x07\xb0\x19\xd1\x08\x89\x15\xab\x67\x8b\x15\xbb\xcf\xee\xd8\x4a\x5e\xa7\xa2\x01\x44\xa5\x56\xbb\x73\xe0\xc3\x9b\x9b\xef\x4e\x3a\x4d\x97\xb2\x19\xa3\xbb\x0b\x54\x2b\xd6\x21\xa9\xaf\xac\xad\x04\x15\x56\x11\x50\x05\x55\xd8\x7c\x92\xc6\xed\x5e\xa1\x21\x91\x87\x8e\x46\xc8\xff\xbe\xb7\x62\x93\x77\x2b\xad\x4a\x04\x5d\x2a\x5e\x58\x68\x1a\x4d\x90\x1b\x14\x79\xa5\xc3\x91\x36\xc1\x9b\x3b\x54\x07\x0e\xa2\x56\xe6\xa0\x99\xc8\x55\x8a\xa1\xa8\x44\xec\xce\x32\x3e\x4e\xb3\xbc\x63\x9f\x60\x68\x44\x7b\x38\xf2\x1a\x7c\x51\xd5\x9c\x64\xcb\x6d\xfb\xca\x6d\x4a\x0b\x33\x42\xe6\xc7\x0e\x10\x14\x39\x58\xdf\x00\xd5\x8f\x58\x2c\x08\x93\x8e\xa2\x17\x29\x45\x4d\x55\x28\xbd\x0d\x6c\x8a\xda\x09\x24\x27\x3b\xa1\x35\x40\x34\x42\xf9\x6a\x9c\x4f\x04\x1d\x93\x5d\xc0\x1e\x28\x1a\xa1\x15\x7b\xab\x22\x01\x58\x30\xb6\x8c\xdb\xe5\x74\x30\x4f\xf3\x79\x13\x12\x05\x5f\x49\xca\xce\x74\xbe\x07\x6f\xae\x81\xe6\x92\x8b\x46\x2a\xe3\x2b\x31\x20\xbb\xeb\x61\x9c\x35\x2e\x5c\x57\x89\xca\x6f\xaa\x61\x91\x2e\x9b\x8a\xa9\xe4\x11\x7a\x4d\xe5\xfc\x4e\x43\xd6\x81\xca\xe8\xd8\x42\x61\x65\x44\xa6\x99\x59\xbd\x6a\x5b\xa7\xd3\xa9\x8b\xba\xdd\xbc\xc4\xd5\x7e\x0c\x80\xf4\x8c\x2f\xf8\x2b\x72\x75\xa9\x32\x9c\x5a\x01\x84\x4d\xb7\x83\xab\x5c\x1d\x05\xbc\xd6\xd9\x33\xd2\x78\x46\xd8\x07\x3b\x50\x74\xa6\xd7\x97\x79\x9a\x66\x49\x84\xa4\x3a\xfc\x6d\x03\x54\x91\x5f\x6b\x63\x41\xcf\xe9\xae\xed\x6e\xf2\xab\xa5\xf8\x38\x27\x62\xcb\x2e\xf7\x0d\x7b\xa0\x11\x4a\xa7\xd3\xc7\xf6\xab\xd6\x82\x03\xb3\x08\x7f\x5c\x94\x32\x88\x7c\xab\x82\x65\xd0\x7a\x7f\x59\x27\xe3\x69\x23\x35\x0c\x79\x37\x45\xd3\x1e\x28\xb8\xca\x41\x57\x86\x11\x2b\x0d\xf4\x05\xe7\x2f\xeb\xf8\xcc\xaf\x98\x33\x4b\x13\xae\x98\xb3\xbc\x3c\x67\x48\x8a\x8b\x67\xa4\xa9\x3a\x93\x51\xeb\x85\x63\x09\xd3\x8c\xa6\xf9\x43\x22\xe7\xbc\xb6\x00\x15\xb6\x8b\x5c\x35\x47\x79\x4e\x44\xc3\xe1\x6f\xd2\xa3\x11\x9a\xa4\x93\x39\xb9\xc7\xeb\x13\x41\x99\x24\x82\xa5\x99\x9a\x08\x07\xa4\xe0\xf9\xf2\x62\x37\x2c\x5f\x2a\xc6\xf3\x6c\x45\xa7\x57\x55\x6b\x61\x82\x81\xda\x51\x6c\xc7\x75\x00\xfa\x9a\x11\xb1\x6d\x37\x95\xe7\xf6\x8c\xc8\xc7\xaf\x59\x69\x05\x99\xd2\x5b\xe6\xb5\x5c\x3a\xaf\x97\x5e\x66\xa9\x9c\x71\xb1\x50\x93\x91\xe7\xf4\x2c\x58\x55\x4b\x9e\x5d\xcc\x68\xa6\xc7\x67\xf2\x14\xd2\x74\x10\xf0\x66\x20\x93\xa7\x0e\xbd\x34\x3f\xd1\xef\x0b\x73\x91\x37\x83\xce\xd3\xdc\xbd\x29\xe6\x21\xa3\x11\x7a\x49\x2e\xb6\x14\x50\x39\x41\xb7\x15\x69\xde\x49\xb3\x0d\x40\xa5\x40\x23\x3d\x28\x95\x08\x51\x23\x56\x2c\xe3\xbc\x91\xc4\xbb\x2c\xbd\xd9\xa2\x11\x1a\x93\x33\xca\x9a\xb2\x75\x86\x02\xa0\x21\x89\x0d\xf2\x29\x9b\xea\xa5\xcb\x26\x24\x6b\x02\x30\x39\x9a\x5b\x1b\xf3\x15\x9b\x90\x26\x20\x97\x17\x8d\x10\x69\x6e\x87\xe8\x66\x7e\xe0\xcd\xbd\x54\xe9\xd1\x08\x65\xa9\x0c\xc9\x58\x91\xaf\x33\xa2\x11\x62\xe4\xbc\x11\x09\x2a\x3d\x1a\x99\x67\x1e\x1b\xb2\xb9\xe9\x5a\x3e\x99\x13\x25\x98\x37\x81\xb8\xbc\x00\xec\xf1\x96\xda\xc2\x7c\x45\x7a\xe6\x82\x4b\xd9\x5c\xab\xcb\x0b\x26\x55\x11\x60\x3a\x69\x5c\x3a\x2e\xab\x06\xbc\x43\x1e\x72\x65\x1a\x84\x21\x1b\xbd\x25\xb9\x9c\xa4\x0b\x92\xd1\x37\x41\x0f\x6d\x96\x9a\x5d\x93\xa5\x97\xc0\x92\xca\x74\x2b\x9c\xcb\x54\x90\x99\xda\x8d\xb3\x8b\x26\x38\x9b\xa5\xd6\x4b\x9a\xcf\x89\x68\xae\xce\xe7\xe9\x75\xb5\xa3\x7f\x45\x66\x34\x42\xb3\x85\x6c\x00\x99\x2d\xd4\xd4\xcf\xe5\x22\x7b\x96\xce\x9a\xea\x70\x59\x6a\x81\xf1\x49\x03\x40\xc6\x27\x9a\xab\x9c\x12\x91\x4f\xb8\x68\xaa\xa3\xc8\x54\x9c\x55\x03\xc0\xeb\x00\xf1\xee\x70\xa1\xf9\xad\x2c\x65\x2f\x0b\x68\x93\x81\x22\x9b\x61\x75\x0f\x4b\x79\xd1\x04\xa2\x33\x34\xc8\x23\xce\x48\x13\x84\x4a\xd7\x00\x4f\x14\x2b\x1d\xb2\xe6\x05\x8c\xcd\x32\x47\xe4\x7d\xf6\x8a\xbf\x6c\xa8\xca\x67\x29\x30\xfd\xac\x5c\x03\x8c\x4e\xaf\x68\x0a\x56\x3b\x25\x28\x7d\x82\x59\xa0\x11\x22\xe5\x81\xda\x33\xcc\x03\xa8\x6a\xcd\x80\x19\x97\x77\xaf\x82\x75\x30\x1a\x3c\xc4\x4e\x13\xa8\xc6\x12\xe3\x75\xde\xad\x5c\xa1\xa2\x92\x9c\x67\xbb\xa0\x54\x7e\x34\x42\x3a\xe2\xcb\x2e\x38\x0d\xa0\xc6\xfc\xe3\x2a\xdd\x59\xa1\x06\x50\x47\xfc\xce\xce\x9d\x69\x36\x56\xee\x1c\xe6\x99\x3e\xf8\x1a\x18\xd4\x00\x46\xf1\xfb\x28\xdb\x5d\x4f\xa6\xeb\xd1\x9c\xcf\x2e\x30\x0d\xa0\x49\x2e\xf9\x26\xdd\x39\x55\x06\x42\x73\xab\xe9\x74\x67\x9d\x1a\xc0\x02\x3e\x66\xd9\xce\x5a\x1d\x4c\xa0\x46\xa0\xec\xec\xe4\xaa\x6e\x57\x61\xd5\x50\x1b\x64\x8f\x70\xa0\xfa\xe0\x6a\xe0\xbe\xc2\x21\x1a\x6e\x4e\x3f\x7a\xb3\x0b\xce\x82\x68\x99\x77\xb1\x0b\x30\x5f\x2d\xd4\x32\x0b\x0f\xcb\x86\x45\xa6\xcf\xcc\x45\x7a\xbe\x7b\x25\x9e\x6b\xa0\xe5\x6e\x20\x25\x30\xe6\x5c\xec\xec\xbd\xca\x37\xac\xf9\x1d\x3a\x9b\xed\x84\x34\x20\xa6\xe1\x5b\x3b\xe7\x51\x03\x18\x40\xc7\x8f\x5d\x01\xee\xc0\xd4\x81\x40\x33\xd9\x20\xf7\x04\xf0\x06\xc2\x83\xee\xee\x8b\x83\xf1\xe0\x6f\xd3\xa3\x32\xa4\x3e\x47\xe8\x8f\xbb\x0a\xa8\x7c\x03\xc6\x77\x4e\xaf\x06\xd0\x4a\x47\x49\x44\x7e\xc5\xca\xf2\x40\x01\x81\x96\x24\x97\x07\x3b\x94\x7c\xa5\xfc\xd1\x66\xe3\x4c\x52\xdb\x1e\xde\x8d\x8a\xf7\x90\x23\x64\x1f\x37\xdd\xef\x6d\x20\x22\xe5\x57\x73\x7c\x30\x4b\xe2\x1e\x19\xb0\xf6\x05\x82\x86\xbb\x4d\x0c\x81\x81\xa1\xfa\x7c\x33\x9d\x01\x1b\xa8\x8e\x62\x36\x24\x23\xc4\x71\x74\x7f\xb1\xe4\x42\x6d\xe5\xbd\x99\xe0\x8b\x3d\x39\x27\x7b\xbf\x8e\xda\xa4\x1d\xfd\xda\x9a\x66\x8a\x30\x73\x5e\x71\x38\xed\xee\x45\x2d\x3a\x00\xbc\x8d\xa3\x27\x19\x49\x73\xb2\xa7\x9a\x51\x65\x19\x79\xed\xca\x51\x5d\x73\x9e\x9c\xb2\x53\x16\xb9\x97\x88\x95\x04\x00\x28\x6c\x7c\x30\xd0\x78\x7d\xd2\xa1\x09\xb1\xa8\x83\x18\xab\x16\x4c\x3d\x7b\x97\x7b\x51\x5b\xa5\xb5\xa3\xbd\x8d\xe9\xeb\x47\x2a\xa1\x37\x6a\x47\x1f\x9d\xb2\xc8\x04\xbe\xb2\xef\xe5\x29\xfc\x74\x5d\x80\x26\xcb\x4d\xe9\x28\xc9\x2e\xb8\xe8\x41\x04\xbb\x4b\xbe\x04\x10\xb6\x82\x26\xa2\xb6\x68\x47\x0d\x75\x6f\x36\x10\x29\xb0\x53\x16\xc1\xa4\x32\x68\xab\x62\xd4\x41\x35\x49\x3a\xed\x46\xc8\xb4\xee\x91\x05\x38\xda\xef\xa3\x4b\x3a\x4d\xaa\xf3\x56\xc0\x4c\x4d\x42\x84\x56\x4c\xd2\x2c\x89\x6e\x74\x7b\xdd\x5e\x84\x56\x22\x4b\xa2\xb9\x94\xcb\x3c\x39\x38\x38\xa3\x72\xbe\x1a\x77\x27\x7c\x71\xa0\xeb\xf9\x21\x3f\x10\xb3\x49\x7e\x30\xce\xf8\xf8\x60\x91\xe6\x52\xaf\xc6\x73\x79\xd0\xeb\xff\xe2\x66\xe7\x87\xf4\x55\x9a\x4f\x04\x5d\xca\x8e\x99\x8e\x4e\xba\xa4\xdd\xc5\x34\xda\xf8\x18\x7d\xcd\x4b\x54\x6e\x5f\xa2\x72\x03\x37\xce\xc0\xa5\xc3\x56\x9a\xbd\xa0\xc7\x5b\x7f\xf3\x49\x5e\x61\xd7\x32\x68\x3a\x29\xf2\xb6\x9a\xb4\x2c\xa4\x4a\xbd\xd2\x9a\x65\x60\x1f\x9a\xf4\xa6\x22\x85\x1d\xcb\x56\x5b\x36\x5d\x99\x44\x6b\xaf\x32\xd6\x2a\x93\xe4\x4d\x54\x3b\x0d\x54\x06\xf6\xb6\xcb\x79\x4b\xdb\x94\x2d\x65\x33\xde\xd6\x18\x65\x4a\x3d\x27\xe7\xf2\x44\x90\xf4\xad\x8d\x4f\x45\xb1\x7b\x2a\x67\xb7\xb1\xc9\x8d\xc7\x65\xbd\x95\x9d\xc9\xe2\x90\x99\x37\x9e\x77\x96\xad\x1a\x98\x82\xa9\x7e\xa2\xb2\x1a\xca\xe4\x07\xea\x0c\x6d\x9c\xf6\x67\x36\xe3\x21\x3d\xa7\xac\xd1\x2a\xe5\xf6\xe6\x78\x75\xe6\x0d\x51\xae\xbb\xfa\x4b\xab\xe4\x4c\x4a\x61\x70\x32\xe6\x26\x93\xaa\x7e\xbe\xb3\x85\xa9\x40\xa3\x86\xd3\x95\x9e\x18\xa8\xb7\x33\x2a\x99\x0a\xee\xa4\x32\xad\x17\xdb\x62\x48\xaa\x90\xa1\x8a\xa1\xa8\x92\xab\xd2\x76\x1b\x82\x4c\x81\xbb\x3e\x6b\x87\x0d\xc8\x82\x9a\xf4\xdd\x76\x1f\x03\x1a\xec\xfd\x1d\x16\x1e\x8b\x03\xf3\xf5\xd4\xe6\x6f\xb7\xe7\x18\xf0\x2f\x74\xb2\x33\xe0\x84\x69\x71\x1c\x7e\x75\x0d\xc4\xdb\x59\x6f\x4c\xc1\xfb\x65\x90\x6e\x01\x60\xcd\x36\xcd\x60\x3a\x2f\xb0\xd7\x34\x43\xf9\xfc\x92\xa1\xa6\x19\x36\x80\xb8\xda\x42\x63\x07\x9d\xe6\xf3\x07\xbc\x42\x77\x77\xd9\x64\x6c\x31\x93\xbe\xa3\x64\xc5\x0a\x63\x8a\x29\x19\xbb\x56\xa6\x6c\x77\xb1\x74\x3b\x5d\x96\x4c\x2e\x3e\xf5\x9b\x22\xb1\xa2\x84\x76\xef\x36\x57\xab\xb2\xe9\x6f\x63\x99\x31\x05\x82\x94\xaa\x11\xc6\xd2\x83\x52\xa2\xb1\xb7\x98\x1c\x6f\x5c\xd9\x69\x5a\x31\xb0\x67\x44\x56\x8c\x29\x3e\xbd\x48\xbb\xc2\x7c\x62\xd1\x52\xa2\x72\x5b\x4d\x26\x76\x8b\xd9\x8c\x92\x91\xc4\x0f\xdc\xa5\x54\x8d\x21\xe1\xc0\x5d\xe2\x95\x46\x0f\xb7\xa7\x1f\xf0\x74\x5a\x26\xa7\xde\xa0\xb1\xd3\x9c\xe1\x70\x2a\x2b\x06\x0c\x9f\x5e\xa4\x39\x93\x85\xc9\x32\x1f\x6f\x61\xa4\xb0\xe3\x2e\x52\x9c\x59\xc2\x66\xe8\x8f\xc2\x12\x61\x52\xdd\xa7\xb1\x38\xd8\x34\xbe\xbc\xf0\x96\x05\x3b\x8f\xe6\x6b\xbb\x05\xc1\x80\x19\xe6\x6b\xa7\xf1\xc0\xaf\x0b\xad\xed\xdf\x69\x29\xf0\xa8\x29\x83\xd6\xcd\x02\x7e\x80\xf4\x8c\xad\xd7\x96\xb3\x21\xe2\x8c\x38\x93\x80\x1d\x97\xfe\x40\x65\xd6\xd0\xe6\xb9\x4a\x2b\x8c\x63\xd9\x5c\x50\x01\x6d\x32\x14\x18\x33\x81\x01\x54\x3f\xb7\x5a\x05\x0c\xc8\x53\x95\xba\xdd\x10\x10\x00\x89\x1d\xba\x7f\xbf\x14\xad\xb2\xdf\x7f\x77\xf5\xb7\xd1\xf0\x07\x89\x94\x4d\x9d\x5a\xbf\x48\x35\x09\x85\x2e\xbf\xc8\x71\x49\x88\x94\xaa\x21\x6c\x6a\xb4\xf6\x45\x92\xfa\xb4\xaa\xfa\x22\x51\x7f\x1b\xfd\x7c\x91\xa8\x3e\x8d\x52\xbe\x48\x53\x9f\x85\x26\xbe\x48\x77\x49\x65\xf5\x7b\x3d\x5f\x25\x17\x3a\xf7\x22\xdf\x25\xed\x50\xb4\x5b\x4e\xcb\xa4\x5f\xad\x63\x2f\xf1\x82\x79\xad\x94\x3c\xe0\x62\x4a\x44\x03\xfb\xf0\xd8\xa4\x87\x1b\xba\xae\x8b\x2f\x0b\x7a\x36\x35\x54\xc2\x57\x00\x5c\x7a\xa1\x7d\x6f\x14\x15\x03\xb5\x7b\x29\xdf\x27\x87\xfa\xf6\x32\x84\x4f\xd7\x8a\xf6\x52\xde\x6c\x21\x0b\x0d\x7b\x29\xc7\xa5\x6a\xd5\x7a\x29\x27\xe3\x93\x50\xa7\x5e\xca\x2b\xd2\xd1\xeb\x72\xce\xeb\xad\x5a\x74\x27\xde\xe8\x2f\xaf\x38\x77\xa9\xfa\xcb\xe9\xca\x5d\xa2\xfa\x08\xd4\xe3\x2e\xd9\x7e\x07\x1a\x71\x4f\x84\xcd\xb7\x53\x82\xdb\x64\xfd\xb1\xd9\xb4\xe4\xb0\xaa\xfa\x1e\xe1\xca\xd4\xbb\x9c\x4d\xcb\x3d\xe0\x20\xf0\xd0\x6a\xb6\x03\xad\xb5\xd5\x4a\x1b\xb5\xb3\x55\x2b\x3b\xad\xb1\x53\x0a\x6b\xb5\xaf\xd1\xeb\x6a\xcd\xad\x51\xcd\x3a\xcd\xab\xd7\xab\x3a\xb5\x69\xa0\x12\x6d\x50\x73\x1a\x3d\xa6\xd6\x54\x16\x6a\x48\xa3\x67\x34\x8a\x44\xa3\x29\x34\xaa\x40\xab\xea\x2b\xf4\x78\x4e\x4d\x57\xd6\xbf\x79\xed\x5a\xa0\x39\xab\xe9\xc3\xac\xbe\xcb\xa9\xb3\x4a\x9a\x2a\xc4\x70\x0f\x51\x1f\x2e\xfc\x90\x1d\x51\xfd\x84\xa3\x7d\x26\x51\x0c\xd9\xa8\x09\xe7\x43\x3e\xc2\x65\x6c\x0f\xb9\x09\xe5\xad\xdf\xce\xdf\xa3\x6c\x4f\x42\x02\x52\x24\x87\xe9\x08\xed\xf7\xaa\x7e\xc8\x74\x06\x9c\x20\x99\xcb\xaa\xc0\x2f\x49\x5e\xa7\x01\x0a\xf0\x2a\xb5\x5a\x01\xd9\xad\xca\x39\xba\xc4\x8f\x2b\x46\xe5\x56\xf1\x48\x97\xfb\xd5\x57\x8c\x4a\x57\x38\x58\x41\x6e\x44\x02\xe9\x87\x49\x36\x6a\x3c\x04\x44\x3f\xe8\x27\xe9\x03\x6d\x46\x4e\xb2\x59\xf7\x87\x5f\xa9\xd4\x8d\x86\x10\xf9\xab\x65\x55\xdb\xd1\x7d\xfa\xec\xeb\x27\x1b\x8d\x13\x73\x54\xde\xf1\x9a\x1c\xa3\x38\xb1\x5a\x92\x03\x2f\xc6\x6c\x07\x0c\x40\x2a\xcf\x90\x44\x96\x77\x28\x22\x26\x3b\xe7\xe8\x5a\x8e\xd1\xf1\xc0\xaa\xcf\x34\x30\xef\x7d\x5d\x96\xe2\xd4\xef\x88\xaa\xec\x9e\x3d\x29\x62\x2b\x13\x78\xa8\x2f\xd9\xae\xd7\xc6\xd3\x1a\x76\x6f\xf3\x29\x79\x48\x85\xe0\x42\xd5\xbf\xd9\x84\xf7\x04\x4b\xda\x46\xe3\xdc\xcc\xd2\x57\xf4\x2c\x95\x5c\x74\x57\x39\x11\x27\x67\x9a\x66\x04\xa9\x8e\x47\x40\x02\x1f\x9c\x91\xc9\x4b\x7e\x7a\x70\x3a\x3d\xa0\x5d\x35\xdf\xe6\xed\x9d\x83\x87\xcf\xee\xdf\xdd\x3b\x9d\x1e\xf8\x34\x8a\x0f\x9e\x0b\x3a\x25\x4c\x9e\x1e\x80\x41\x32\xfc\x45\xe7\xb3\xd1\xfa\x74\x7a\x79\x1d\x6d\xe0\x69\xb7\x7b\x4d\xbc\x4a\xc0\xe9\xb4\x0d\x0f\xba\xe4\x9c\xe8\x17\x7c\x38\x66\xeb\x35\x45\x29\xe6\x71\x0c\xd8\xc0\xbf\x86\xee\x7e\x3c\xe4\x53\xb2\x5e\xdf\x4c\xa8\x7e\x7c\x2d\xc7\x07\xdf\x90\xf1\x97\x54\x9e\x1e\x14\x8d\xae\x70\x1e\xc7\x07\xbf\x92\xaa\x7f\xed\xd3\xee\xe9\xb4\x5d\xe4\x65\xf8\xe0\xf6\x5c\xf0\x05\x09\x0b\x4c\xf0\xc1\xe3\x25\x11\x69\x98\x36\xc3\x07\x27\xcb\x65\x46\xf6\x6e\x9b\x5d\x27\x6c\x56\x81\x8f\x57\x84\x4d\xb9\x80\x68\x89\x0f\x1e\xa6\x93\xbd\xc7\xcf\xf6\xbe\xdd\xeb\x9f\x4e\x4f\xef\x80\xe1\xa7\x66\x98\xa7\x53\x78\x7a\xa7\xa8\x72\x8e\x0f\x9e\xcc\x53\x26\xf9\xe2\x97\xcf\x8a\xd4\xa9\x6d\xc8\x8c\xc3\xa7\xc7\xf1\xc1\x43\x3e\xa6\x19\x39\x3d\x38\x7d\x1d\x0c\x60\x81\xa7\xeb\xf5\xc1\x09\x9b\x0a\x4e\xa7\xeb\xd7\x64\xfc\xf8\xd9\xfa\x56\x96\x4e\x5e\xde\x22\x42\x5c\xac\xf5\x38\xf6\x1e\x52\x46\xdd\x4f\x3e\xa6\xeb\xfb\x77\x4d\x5d\xc1\x6c\xbd\xd2\xf5\x3c\x4c\x27\xb6\x6a\x09\xd1\x05\x3e\x38\x1d\xdf\x16\x8f\x9f\x9d\x8e\x8b\xf6\xce\xf0\xc1\x6b\xca\x5c\x41\x09\xd1\x18\x4f\xe2\x98\xb8\x67\x20\xbe\x36\x4f\x1a\x9d\x1e\x80\xd3\xe9\x35\x85\xeb\x6b\xf0\x00\xb6\xc6\xfa\xdd\x42\xf7\x9c\xa1\x7e\xe3\x0e\x8d\xe3\x78\x7c\x8c\xfb\x9f\xc4\x31\xd0\x2f\xaa\xe6\x78\xbf\x67\xde\x54\x78\x81\x5f\xc5\x31\x58\xad\xd7\x13\x35\xe5\xfa\xf9\x87\xf1\x7a\x3d\x3e\xea\x5f\xef\xf6\xfb\x10\xa2\xd7\x58\xac\xd7\x3c\x8e\xd3\x63\xfc\x19\x3a\x57\x65\xef\xe2\xfd\x7e\xf1\xe0\xfa\x63\x13\x6b\x9d\xce\xc0\xbe\xde\x01\xe1\xb3\x49\x8f\x21\x0c\xde\x79\x32\x90\x2d\x7d\xbb\x80\x2f\xb5\x1c\x8c\x25\x96\x83\x17\x1c\x48\x98\x5c\x6e\xd0\x0b\x0e\x7e\x25\x90\x44\xfb\x7d\x88\x1e\x00\xe9\xde\xea\xb7\x8f\x41\xb5\x6a\xcf\xcd\x30\xd5\x63\xfd\x1c\xc8\x82\x02\x86\x64\x77\xc1\xa7\xf6\x95\x46\xd9\xcd\x28\x23\xcf\xc8\x32\x15\x6a\xb9\x40\x7b\x09\x7d\xca\x27\x98\xb5\xac\x66\x5f\x75\xa9\x4b\xd9\x72\x25\x9f\xc9\x8b\x8c\xe4\x43\x19\x7c\x8d\x6c\x48\xf4\x15\x36\x05\x69\xbe\xcc\xd2\x0b\x5d\xa8\xf4\xac\xb1\x7b\x4b\x5e\x83\x99\xb1\xe9\x4a\x30\x43\xb4\x9b\x4f\x04\xcf\xb2\x71\x2a\xee\xd1\x2c\x23\x02\x3f\xe4\x20\x9a\xd2\x57\x91\xe9\x63\x54\x90\x88\x8e\x87\xec\xcc\x34\x68\x04\xeb\xc5\x95\xe0\x72\x22\xa5\xa0\xe3\x95\x24\x20\x9a\x2c\x3a\x8c\x4b\xad\xf1\x23\xcc\xb8\x9f\xad\x88\x2e\x77\xb6\x92\x92\x5c\xdd\xa6\x01\x0b\x1b\x0c\x0b\xbe\x75\x6b\x0a\xd1\x77\xe8\xab\x1d\x0d\x4d\xf8\xd4\x80\xe6\x44\xf1\x02\x94\xb3\x3a\xbc\x29\xb4\xe4\x39\x55\xf9\xc9\x9e\x20\x59\x2a\xe9\x2b\x72\xb8\xf7\xa6\xa3\x9f\x72\x4b\xf6\xfa\xba\x8e\xc9\x4a\xe4\x5c\x5c\xd1\xa0\x86\xc9\x35\xfc\x82\xa4\xf9\x4a\x90\x1d\xd0\x16\xc2\x0f\xe6\xe1\x3b\x97\x78\xb6\x4c\x27\x01\xfc\xd0\xb7\x5a\xae\xb1\x82\x81\x70\x30\x05\x1e\x47\x3b\x50\xc1\x57\x52\x41\x25\x7b\x9a\xa3\xd3\xa3\xe3\xaf\xc2\x39\x1e\x86\x7d\xf0\x3d\x1b\x95\x3a\xaf\x92\xf3\x08\x6e\x6f\xc7\x4c\x15\x7d\x53\xaa\xd8\x36\x55\xae\x4a\x03\x15\xe0\xdf\xd0\xa9\x9c\x63\xf3\x4a\x6a\x77\x4e\xe8\xd9\x5c\xde\xe3\x62\x52\x5b\x84\xd5\x86\xd3\x71\xce\xb3\x95\x24\x87\x7b\xa6\x50\xb2\x17\xb5\x19\x6f\x47\xcb\xf3\xc3\xbd\xd7\xaa\xce\x64\xaf\xbf\x3c\x3f\x0c\x96\x68\x7e\xe5\xb2\xce\xfd\xe4\x7c\xae\xbf\x5d\xb7\xcc\x9e\xaa\x0c\x4d\xf7\xbe\xd2\xe7\xa2\xad\x51\xc3\x4e\x0d\xf6\x67\x6d\xab\xc8\x74\x7c\x5f\xad\xd8\x08\x45\x1d\xb3\x66\x5f\x8b\x74\xb9\xac\xb6\x59\xde\xdc\x95\xdd\x17\xd4\x5e\x6a\x3e\x82\x48\xd1\xe2\xa3\x4f\xe3\x18\xf8\x0e\x76\x73\x45\xb1\xba\x6f\x74\xab\xb8\xd3\x2f\x75\x4d\x67\x2d\xd3\xe9\x94\xb2\xb3\xa7\x6a\x78\xb8\x07\x5b\xf9\x7a\x2d\xe2\x78\xb1\x5e\x83\x00\x74\x2a\xd2\xb3\xb3\x74\x9c\x11\x7d\x36\xe8\x37\xb3\xbb\xaa\xdf\x6c\x7a\x7b\x4e\xb3\xe9\xa0\xf4\x05\xfc\xa8\x60\x42\x82\x0f\xd8\xa2\xdd\x57\x94\xbc\xbe\x27\xf8\x02\x9b\x9f\xcf\x39\x96\xdd\x19\x15\xb9\x44\xb4\x2b\x88\xe2\xb9\xc8\xf4\xeb\x02\x26\x4c\x2a\xc1\xaa\xc2\x78\x38\xd2\xa5\x98\x16\x73\x15\x88\x9b\x49\x72\x6e\x3c\x52\xed\xe6\x9a\xba\x74\x55\xea\xf1\x6c\x96\x13\xa9\x38\xfe\x6e\x96\xe6\xf2\x1b\x91\x2e\xbf\xd0\x73\x8b\x8b\x04\xb3\x5a\x15\xc8\x6a\x39\x4d\x25\x79\x40\x19\x31\x87\x66\xee\xaa\x62\x7a\x3f\xdc\x4a\xed\xca\xa6\xdd\x71\x2a\x7c\x3d\x63\x97\xdc\x0b\x49\x75\x7e\x3b\xa3\xcb\x25\xd1\x4f\x94\x9b\xf5\xf7\x68\xb5\x70\xc5\xed\xe7\x7d\xc6\x88\xa8\xa4\xdd\x9e\xa7\x45\xbb\x69\x46\xcf\xd8\x37\x74\x7a\x46\x64\x6e\x2a\xd2\x5a\xb5\xa9\x02\x72\xe5\x4c\xca\x73\x72\x2e\x7d\x8f\x4c\xd2\x13\x33\xd7\x5f\xb8\xca\x16\xe9\xb9\x1a\x5a\xe5\xf3\x81\x16\x83\x74\xdf\x6d\xca\xed\x79\xca\xce\x5c\xc7\x5f\xcf\x09\xc9\xee\x7c\x8b\xdd\xaf\xef\xdc\xaf\x67\x32\x15\xf2\xdb\xd2\xd7\x77\x7e\x6f\xcd\xe9\x4c\x9a\xf2\x39\xc9\xee\x71\x71\x5b\x9d\x16\xe7\xf2\x21\x61\x2b\x3f\xb4\x89\x42\xe9\x73\xbe\x9a\x58\x4a\xc1\xba\x94\x51\x09\x28\xdc\x00\x82\x18\xa2\xb0\xb5\x72\x8b\x29\xe4\xa1\xf5\x9b\x41\xcf\xed\xa1\xfc\xd0\xfe\x6f\x4e\x79\x35\x99\x4b\xca\xce\x5c\x9c\x1b\x7b\x56\xfb\x5a\xb4\xba\xe2\x51\xba\x20\x6d\x1c\xed\x05\x3b\x59\xe5\x47\xaa\x92\x74\x25\xf9\x8c\x4f\x56\x79\x1c\xef\x2f\xe2\x78\x65\x4e\xf0\xae\x4e\x02\x10\xbd\x71\xad\xa9\xca\x73\x99\x4a\x82\x2f\x5f\x92\x8b\x87\xe9\x32\x4f\x86\x23\xa4\xc8\x62\x96\x5e\xe8\xdf\x8a\x01\xf9\x9c\xb0\xa4\xa7\x53\x5f\x0b\x2a\x49\xb2\xdf\x47\x53\x92\xa5\x17\x94\x9d\xdd\xca\x56\x42\x2b\xc0\x55\xa2\xae\x9e\x4c\xd5\xcf\x7c\xb5\x5c\x0a\x92\xe7\x77\xa7\x54\xe6\x2a\x61\x99\xe6\x92\xdc\x67\x13\xbe\xa0\xec\x4c\x25\x4c\x56\x32\xfc\xb4\xc7\x08\x3b\x53\xf3\xaf\x5b\x50\x7b\x37\xf8\x9e\xd3\xb3\x79\xa6\x69\xa9\xe2\x58\x56\x1c\xbd\x24\x17\xcf\xc8\x8f\xfa\x8e\x2f\xca\x97\x64\x42\xd3\x4c\x2f\x39\xf3\xec\x9f\x66\x89\x32\xc3\xc3\x38\x51\x70\xa9\x44\x41\x4d\x6c\xfa\xfd\x38\xce\x89\x7c\x4e\x17\x84\xaf\x64\x28\xc8\x64\x1e\xd9\x06\x65\xda\x68\x03\x94\x18\x8c\xae\xf7\xca\x82\x9a\x7b\xc1\xd4\x16\x68\x7d\x4d\x81\xf4\xb4\x07\x45\x0b\xae\x90\xc1\x5f\xb3\x08\x7d\x2e\x01\x41\xb9\xe2\xd9\x2a\x30\xd3\x71\x36\xc9\xe8\xe4\x65\x84\x6c\xb7\x06\x1a\xb4\x72\x1b\x7a\xff\x7b\xaa\x19\x4d\xf7\xfe\x4f\x2a\x0c\xdf\x49\x67\x40\xc4\xf1\x7e\x66\x3e\xe3\x78\x9f\x0b\xe0\xbb\xa3\xe1\xdf\xd0\x82\xe9\x24\xdd\x19\x65\xd3\x6f\xb8\x98\x9e\x48\x20\x60\xeb\x0b\xa2\x80\xf9\x04\xb1\x6e\xca\x26\x73\x2e\x10\xeb\xce\x49\x3a\x85\x9b\xcd\x06\x96\x2e\x64\xdb\xe6\xd7\x6b\x5d\xdd\x06\xb6\x5e\xaf\xd7\x95\x81\x4c\xcc\xbe\x58\x10\xb6\x8a\x4a\xdd\x7f\x68\x3a\xb7\x31\xbd\x10\x88\xe1\x4b\xc2\xa6\x49\x6f\x53\xf0\xdb\x14\xc0\x4b\x19\x6e\x23\xfd\x88\x74\xf3\xf4\xc8\xda\x76\xdb\xa0\x3e\xb9\x01\x11\x50\x5c\x75\x90\x07\xbb\x84\x4d\x71\x5b\xad\x95\x3b\xa9\x24\xc1\x23\xb1\xb9\x67\xef\x8d\x6c\x20\xbb\x19\x99\xc9\xe2\x6d\x44\x7b\xcb\x5c\xa7\x76\x88\xfe\x0f\xa9\xca\x25\x5f\x76\x88\xfa\xeb\x9f\x83\xbd\x26\xda\xec\x1a\x3b\xfe\xb8\xd7\xdb\x54\xd0\x21\x55\x17\x72\x45\x4a\x02\x6c\xd0\x60\x32\xa9\x9a\xae\x8a\xd4\xdf\xdf\xd7\xcf\xe1\xae\x26\x73\xff\x98\x71\xf1\x3c\x63\xf1\x5c\xae\xce\x1f\xf6\x46\xc5\x1b\xb9\x22\x9d\xd2\x55\xfe\xed\x11\xee\xc7\xb1\xfb\xfa\xee\x08\xf7\x37\x80\x42\x78\x39\xc9\x48\x2a\x1c\x2a\x85\x99\x07\x5e\x60\xa6\x55\x46\xe9\xa5\xee\x75\xc2\x91\x62\x8e\xf4\x56\x5e\x0a\xf2\x2a\xe1\x1d\xad\xcc\x3e\xc2\x37\x7a\xbd\x01\xb3\x2f\x6b\xf6\x31\xa6\x95\x0e\x2b\x8a\x15\xd6\xa7\xd1\x57\x40\x0d\x7b\xa3\xee\x32\x3d\x23\xdf\xa2\x32\x94\xe4\xcb\x3a\xd0\x77\x70\xb3\xa9\xed\x18\x0d\xa3\xfa\x16\xa1\x6d\xcb\xa2\xd6\x07\x3d\x14\xc5\x02\x6c\xa9\x8e\xb0\x69\x50\x9b\x7b\xd1\xb3\xbc\x9e\xf4\x53\x82\x66\x8b\x49\x24\x60\x1c\x2b\x14\xec\x63\xa6\x07\x18\xc7\xfb\xcc\xb4\x12\xc7\x0e\xaf\x1d\xd6\xd5\xa8\x3c\xba\xd1\xeb\xf9\xf7\xe5\x31\xe9\x4e\x38\x17\xd3\x5c\x51\xaa\x72\x2f\x51\xa4\xc6\x1c\xc1\x16\xc7\xfb\xac\xab\x90\xbe\x5e\xe7\x80\x21\xf3\x1b\x0e\xcc\x1b\x91\x20\x45\x29\x4c\x2c\x40\x0d\xca\x82\x96\x76\x7a\x0a\x13\x5b\x74\x49\x40\xaa\x8f\x17\xd4\x83\xe8\x8e\xdb\xfd\x3e\xb5\xdd\x47\x3d\x08\x21\x22\x8a\xf9\x7b\xe6\xb8\x7a\xc0\x1d\x75\xe0\x86\x3a\x20\x52\x1c\x23\x14\x08\xb8\xa1\x60\x1b\x5e\xed\xe5\x07\x44\x6b\xd9\x96\xe5\x2c\x4f\xa1\x67\xdb\x26\x19\x25\xcc\x32\x01\x71\x0c\xe6\x9a\x84\x04\x0c\xa0\xfe\xf1\x9c\x2f\x21\x9a\x36\x66\x3d\x50\x5b\x76\xbf\x07\xd1\x77\x6a\xab\xf9\xc6\x08\x6c\xe8\xa8\xa6\xd2\xfa\xe4\x2f\xd3\xad\x33\x47\xb7\xaa\x05\xee\x3c\x7e\xf8\x50\x95\x79\x56\x1d\x42\xbd\x90\x3d\xae\xb7\x0c\xd7\x1d\xe6\x7e\x38\xb8\x9a\xa6\xc6\x81\xb5\xff\x95\xe6\x64\xef\xd9\xd2\xb9\x22\xa1\x92\x88\x66\x1a\xfd\xa3\xa6\xd1\xfa\xb4\x6e\x06\x68\x7c\x52\x2e\x38\x52\xfc\xd3\xcf\xf6\xdc\xf0\x2a\x33\xab\xc7\xb4\x9f\xf7\x44\x7a\xa6\xfe\x07\xb0\x25\xd5\x99\x25\x10\x53\x6b\xc3\x9d\x9e\xaa\xc3\xb7\xb5\x2c\xb8\x5e\x83\xa6\xe4\xab\x85\xdd\x90\xb3\x51\xe5\x0a\x19\xb8\xa8\xcf\x4b\x84\x5d\xca\x72\x22\xe4\x2d\x32\xe3\x82\x34\x36\x18\x94\xf2\x42\x2a\x84\xad\xe7\xbc\x19\x9a\x69\xf6\x4d\x42\xa4\x11\x0a\x37\xc8\x10\xc6\x10\xa5\x15\x4c\xd2\x19\xe0\x71\x0c\xf6\x89\x61\xa9\xba\x21\x07\xb3\x5e\x7b\x82\xdb\x99\x88\xa3\x7e\xaf\xe7\x15\x49\xfa\xa9\x4a\xdd\x88\xc2\xbe\x9f\xa6\xea\x59\x6e\xe7\x84\xce\x80\xec\x4e\x53\x99\x3e\x17\x29\xcb\x67\x46\x54\xd3\xcf\xf1\x46\xaa\x9d\x08\x91\xee\x59\xb8\x7d\xa1\x5e\x3d\x21\x3c\x99\xcd\xc8\x44\x9e\x64\x19\x7f\x4d\xa6\x58\xdf\x92\x7b\xa8\xe9\x69\x43\xbd\x22\x3d\xbb\xbf\xd0\x11\x34\xf6\x67\x6e\xa9\xa8\x79\xa3\x8b\xb3\x2d\x92\xef\x8c\x9e\x93\xe9\xe1\x9e\xa2\x8a\xc9\x5e\xef\x70\x4f\xf2\xa5\xfa\x3f\x82\x2d\xd1\xcd\xc5\x04\x47\xaa\x8d\x84\xaa\x4a\x0f\xce\xe8\xec\x70\x9c\xe6\xe4\xe6\xc7\xe8\x69\x2f\xfb\xfc\xf1\x9d\x6c\x7e\xf2\xab\x93\x5b\x27\xea\xdf\xed\x2f\x3e\xb9\x75\x72\xf7\xcb\x93\x93\xbb\x27\x0f\x74\x82\x4a\xbf\x7b\x72\x72\x72\xff\xf6\xf3\x93\xbb\x27\x8f\x5f\x63\x1c\xa1\x89\xe2\x14\xba\x5a\xa0\xc6\xc2\xca\xba\xb8\x1f\x4c\xb4\xdb\x4f\xa1\x98\x27\x20\x12\xdd\x17\xea\xc4\x11\x5d\xae\xa5\x2a\x4d\x4a\x76\x8c\x1e\x08\xd4\x53\x34\x73\x12\xc7\xa2\xbb\x4c\x05\x61\xf2\x11\x9f\x12\xeb\x1e\xe1\x6a\xdd\x6c\xa0\xd9\xfd\x68\x2a\xf8\x32\x31\x8c\x9c\x80\x28\x23\xe9\x2b\xd2\xbc\x15\x97\x02\x10\xb8\x31\xbc\xea\x0a\x5b\x65\x9d\x9a\x3f\xed\xa0\x07\xa0\x62\x29\x57\xfa\xf2\xdc\x6a\x59\xa6\x34\xcf\x84\x7d\x7f\xd4\x93\x1b\x03\x17\xf0\x9b\x8f\x2d\xbf\x69\x32\x34\x37\x6e\x73\x6e\x17\x39\x9a\x94\x47\xe8\x35\x07\x27\x42\x11\x48\x9b\x3c\xce\x56\x42\xa7\xbe\x14\x26\xa0\x65\xed\x35\x45\x3a\x03\x6f\xb8\x5b\x94\x5f\x53\x60\x8c\x04\xfa\x5a\x3a\x7d\x53\x3e\x9c\x0d\x9b\xa5\xa5\xef\x2d\x5c\x9d\x15\xe5\xee\x71\x40\xf5\xcb\x99\x6a\x77\x98\x51\xb9\x6a\x4d\x87\x82\x22\xf7\x54\xdf\x14\xd0\x1b\x8e\x2d\xd3\x46\x36\x00\xa2\x2f\x64\x28\xdb\x4c\x56\xe2\xf1\xb2\x3b\xe3\x62\x42\xbe\xd2\x22\x31\xde\xef\xa1\x31\x35\xef\xb5\xb2\x9a\xa4\xb4\x5e\x67\xdd\x79\x9a\xdf\x33\xe7\xdb\x20\xe8\xac\x41\x90\xa9\xf9\x7a\x0f\x26\x2f\x85\x6d\xe6\x5b\x01\xbf\x15\xaa\xd0\xe3\xd7\xcc\xbb\xd2\x2e\x61\x1c\x7f\x2b\x86\x4b\xa3\x72\x45\x72\xb8\x1c\xa1\xef\x05\x6c\x7d\xe3\xa5\xbc\x19\x65\x34\x9f\xdf\x67\x54\x2a\x96\xad\xf8\x32\x00\x5e\x62\x99\xe3\xde\xe1\xfc\x88\x31\x67\xe3\x6b\xb7\xe7\x90\xb1\xe1\xdc\xea\x72\x5b\xb7\xdc\x68\x73\x55\x4d\x59\x74\x8c\xf8\x52\xd2\x05\x7d\x43\x32\x72\x46\xc7\x34\xa3\xf2\x22\xc2\xf8\x8c\x48\x6b\x81\x98\x6a\xad\x30\x58\x39\x35\x1d\xec\x2a\x0e\xfe\xa9\xd6\x4b\x18\xd9\xd3\x67\x59\x9d\x4b\x29\x1f\x47\x0a\x75\x51\xc0\x58\x3f\x53\x7c\xac\x66\x2a\xb4\xda\x1a\x3f\x56\x2b\xf9\x21\x9f\x2a\x72\x6c\xb5\xe3\xa8\xc8\x7e\xac\x53\x20\xba\x0d\x42\xe6\xfc\x76\x51\x07\x95\x44\x94\xbc\xc4\x2d\x5d\x3d\x99\x49\xfd\x7a\x68\xf8\xa9\xd7\x8f\x66\x5d\xb4\xde\xdb\xe6\xaa\x9f\x26\x47\x3f\x3d\xac\x2a\x9d\x09\xce\x24\x25\x02\xdb\x4f\xa3\x97\x51\x9b\x42\x2d\x3a\xe4\x48\xb7\x95\x7a\xdb\x6d\x44\xcc\x1a\x8a\xe3\x5f\xca\x52\x47\x4f\x0a\x09\xf0\x91\x2c\x28\x35\x44\xaa\x6a\x3b\xda\xd2\x84\x20\x86\x45\x1c\xeb\xc7\x57\x17\xe9\x39\xf8\x24\xa0\x52\x15\xc6\x47\xeb\x43\x0e\x1e\x84\xb5\x76\x6e\xf8\xe7\x5e\x2b\xe2\xc4\x17\xcc\xf2\x71\xd4\x1f\x28\x3d\xcb\xe2\xeb\x97\xa3\xa9\x22\x8f\x67\x44\xe6\xd0\x9b\x78\x71\xef\x30\x3d\xf2\xe9\x6e\x69\xa5\xed\x36\xf4\x89\xc3\x74\x64\xc9\x69\x1c\x03\xde\xc6\x0d\x19\xbe\x43\x62\xc0\xdb\x40\x8f\x6b\x42\x68\x06\xa8\x5e\x26\xb6\xd6\x03\x06\xd7\xeb\x3e\xbc\x26\x13\xde\x96\x9b\x02\x7b\x2f\x4b\xf2\x33\x9f\x20\x81\x15\x42\x5b\xb2\x3e\xeb\x06\x4a\xe8\x5c\x25\x20\xb9\x6e\xdd\xa5\x96\xf8\x15\xb5\x3e\xb4\x8b\x67\x9b\xb6\x04\xef\xc8\xeb\x0a\xb2\xcc\xd2\x09\x01\x07\xa7\xf9\xb5\xc9\xa2\x93\x77\x4e\x9f\xb5\x0f\xce\x50\x14\xc1\x76\x31\xa1\x72\x4e\x42\x50\xf0\x17\xeb\xd3\x1c\x9e\xe6\xd7\x14\xe0\x9e\x2e\x15\x41\x74\xb7\xbc\x52\x9e\xa8\x5e\x3d\x07\x04\x22\xbd\x84\x50\x33\x09\xfc\x4a\x95\x51\xa4\xa5\x28\xf8\xbc\x41\xc9\xe0\x14\xa4\xa5\x65\x66\xd3\x5a\x4f\xb8\x62\x22\xdc\x3c\x33\xdc\x3b\x64\x47\xa2\x20\x1d\xde\xb0\x23\x86\x6c\x84\xb8\x92\x6f\x82\x63\xf1\x2a\xf5\xf3\x5e\xd4\xa6\x10\xb6\xaa\x7a\x77\x66\xf4\x8b\x11\xc6\x54\xef\xba\x90\x31\xb3\x7a\x6a\x8e\xb8\x25\x20\xe6\xa4\xae\x40\x39\x6d\xa2\x5a\x28\xed\x68\x79\x1e\xc1\x8d\xb4\xf0\xde\x46\x35\x88\xa2\xc4\x3a\x7d\x3c\x2d\x21\xf7\xe9\x0e\x1c\xd9\xd3\x5d\x57\xde\x0a\x76\x1b\x7d\xe3\xb5\xc8\x8b\x54\x9c\x51\xa6\xf9\x6c\xa9\xdb\x2e\x6a\xfe\xc1\x4a\xe5\x3d\xec\x17\x5d\xb1\xc1\x1c\x8e\xa5\x9e\x87\x60\xc1\x23\x86\xc9\xa1\xc4\x8f\x18\x60\xf0\x10\x5e\x32\x0c\xa8\x56\xff\xb2\x29\xe8\x29\x91\x04\x2a\x0a\xb4\x30\x52\x98\x50\xfb\x4a\x7f\x4e\xe6\x1d\x25\xfd\x76\x27\x73\xed\x88\x61\xea\x78\x60\xeb\xb0\xc6\xb8\xa0\x92\x96\xe8\x60\x16\xb6\xda\xf1\xf5\xa8\x4a\x01\xd3\xb2\xb4\x6e\x04\x56\xc0\x4c\x23\x6e\xe7\x16\xa3\x7d\xd4\x80\x47\x64\xa9\x64\x4b\x7a\x8d\xeb\x0b\x0a\x04\x12\x86\x6c\xaa\x63\xac\xac\x7a\xfd\x01\xf8\x94\x20\xd3\x6b\x61\x7b\x48\x34\x6f\x6f\x81\x15\xb2\x5b\xe2\xb8\x52\xa1\x16\xe4\xcb\x4d\x88\xa2\x5e\x4c\x4a\x9b\xff\x41\x31\x82\x57\x8a\xa5\x77\x1b\x65\xdb\x82\x85\x87\x9d\x3e\xc6\x32\x8e\x89\x5b\x85\x2a\x79\xe0\x0b\x62\xff\xab\x3b\xe1\x6c\x92\x4a\x30\xdc\x56\xd5\x08\x26\xf2\xb8\xd3\x8f\xe3\xfd\x52\x5d\x7a\x3f\xd4\x6b\xcb\x33\x3a\x21\x40\x1f\x36\x3e\x69\xa9\xd3\x24\xea\xc3\x60\x44\x77\x9a\xe7\x44\x36\xad\x6f\xc4\x70\xf1\xca\xbd\x39\x11\xec\xa2\x6d\xaf\xc2\x83\xc4\x51\xed\xcb\x50\xc6\x4e\xb6\xc8\xde\xe8\x15\x25\xaf\x3d\x48\x41\x32\x03\x08\x53\x4e\x77\x21\xa9\xc9\xe1\xa6\x67\xc1\xa1\x56\x6f\xc8\x80\xa8\x76\x1c\x40\xb9\x19\x93\x3f\x4e\x85\xda\xa3\x49\x41\xf2\xb4\x98\x61\xe8\xcb\x40\x24\x3d\x34\xe5\x13\xdb\x51\x66\xfb\xe4\x3e\xdb\x13\x45\x75\xdb\xb2\xb0\x74\xa0\xb2\x11\x24\x91\x15\xab\x08\x32\xf8\x35\x99\x22\x38\xb5\xee\xbb\x1b\x79\x86\xb7\x5c\x60\xe1\xec\xf9\xea\xfb\x15\x11\xb2\xc9\x6e\x19\x88\x49\x0b\xca\x3a\x85\xf9\x2f\x82\x65\x3b\xdc\x2b\x6f\x72\x89\x20\x32\xe6\xf7\xee\x9c\x0b\xfa\xe6\x8a\x5a\x9d\x89\xb1\xdf\xeb\x7d\x78\xb8\xa7\xda\xf0\x29\xf5\x46\xe6\x41\x23\x2d\x02\x94\xcc\x0e\x8c\x7e\x86\x35\xea\x29\x58\x45\x1b\x23\x01\x2b\x34\x16\x28\x52\x83\xa6\x93\x34\x8b\x2c\xbf\x4e\x1b\x2b\xa1\xe1\x6c\xaa\x3a\x68\xa8\xa9\x89\xf4\x20\x39\x93\xb6\x1a\x83\xdd\x39\x99\xbc\x24\xd3\xef\x89\xe0\xc6\x3e\xb4\xdf\x2f\xec\x84\x05\x6a\x1c\x1d\xa7\xcc\xda\x8c\xfc\x54\x14\x39\xa6\x7c\xd4\xff\x54\x9f\x2d\x7e\x36\xef\x01\x78\x59\x7c\xbd\x29\xf3\x0e\x85\xf5\xab\x74\xaa\x15\xc9\x5d\xad\x56\x05\xb0\xc6\xc6\xe9\xcc\x74\x3a\xbd\xad\x38\x8b\x38\x7e\x10\xaa\x17\x9c\x42\x68\x67\x19\xd8\x5c\xa7\xf5\xee\xf0\x09\x8a\xb1\xce\x86\xc5\x8e\xf0\x19\xd6\xd9\x23\x94\x16\xeb\x7c\x4f\x49\x5b\x22\x9b\x1a\x34\x56\x5b\xa3\xc9\x2a\x19\x33\x42\xb9\xcd\xb2\xcb\xd6\xf0\xb3\xcd\xa6\x42\x2a\x36\x15\xab\x3f\xdc\x20\xad\x91\x95\x6f\xe7\x97\xb1\x09\xe4\x5f\xb5\x07\xc3\x55\x83\xb1\x18\x18\x55\x20\x4c\xe6\x56\x07\x87\xc8\x95\x73\x73\xe7\xdd\xe7\xa6\x58\x30\x5f\x18\xa5\x8f\x5c\xaf\x81\xc4\x8a\x54\x5b\x0b\x47\xc0\x87\x38\x7b\xaa\x62\x0a\xc2\x44\xb3\x54\x5b\xb7\x8c\xca\xcd\xf1\x12\x14\xf7\x0e\xe9\xd1\xc7\x71\x2c\xf6\x1b\xea\x58\xaf\xd9\x7e\x53\x2d\x87\xb4\xdd\x86\x8d\x25\xd4\xc9\xd6\x24\x88\xc4\xf1\x2f\x15\x1b\xaa\x5a\xd7\xdd\x46\x6f\xdf\xe5\x62\xf4\xb7\x42\xe5\x61\x71\x3a\x31\x2c\x42\xb4\x19\x33\xb4\x62\x4a\x45\x89\xed\x2a\x19\xef\x81\x28\x0c\xcf\xac\x2b\x34\xa3\xa5\x79\x31\xd4\x58\xe8\x16\x97\x92\x2f\x6c\x29\xbb\xe9\x59\x77\xac\x53\x7d\xb9\xd0\xed\xc1\x16\x1f\x6b\x7f\x73\x5b\xda\x15\x50\xf0\x7b\x39\xcf\xe8\x74\x4f\x8a\x94\xe5\x46\xb9\x13\x21\xdb\x8f\x38\x76\x80\x03\x20\xea\xce\x4b\x25\x1e\x35\x1a\x67\x7c\xf2\x52\x77\xba\x11\x6e\x5e\xee\xaa\x1f\x61\x23\xf0\xeb\x10\x1b\x86\x29\x4e\xae\xec\x80\xea\xb6\xa9\x3c\x9c\xfa\x09\x7f\x45\x84\x39\x29\x1f\x91\x73\xf9\x9c\x3f\x73\xb5\x84\x50\xe1\x79\x0a\x44\xc5\x6d\x6a\xcb\x38\x1b\x80\xb6\x0c\xb2\x01\xd2\x8c\xd0\xf1\x32\x7a\xf6\xfd\x38\x77\xb5\x1e\x70\xe8\x3f\xba\xe3\xd8\x1c\xc2\xc2\xd9\x64\x44\x57\xf2\xe5\xc0\x4b\xda\x8a\xed\x94\x7c\x09\x13\xd2\x60\x42\x68\x59\xbe\x69\x96\x71\xc5\x78\x77\xb4\x93\x22\xb4\xfe\x74\x41\x8d\x76\x15\xb8\x1f\x09\x6b\x93\x66\x86\x88\xe3\x67\x8a\x60\x32\x88\x52\xf3\x8b\x3a\x3b\xad\xe8\x12\x96\xaf\x84\xe5\xe9\x72\xec\xbe\x03\x89\x60\x55\x24\x5a\xfe\xbd\x95\x1f\xf1\x01\xe0\x38\x77\xd5\xdd\xa6\xe0\x85\xfa\x3f\x87\x70\x4b\x17\x20\x4c\xcc\xd8\x29\x03\x2b\x24\xb5\x77\x88\xe2\x97\x01\x84\xc7\x38\x55\xf2\x7c\xb9\xa6\x15\x84\x9d\x2d\x35\xa1\x14\xaf\xdc\xad\xf1\x4b\xd5\xcd\x84\x23\xc9\x13\x8f\xda\x14\xf1\x76\x1f\x06\x1c\xd2\x57\xdb\x58\x56\xc5\xe1\x19\xdd\x75\xe8\x09\xb2\x5e\x17\xcc\xac\x96\x29\xb4\x28\xba\x65\x5d\xc2\xcb\x42\xb2\xfd\x12\x48\xd8\x69\xb4\xfb\xb4\x0d\xef\x1b\xb0\x17\x74\x0b\xc7\xcc\x31\x33\xeb\xd3\x28\x44\x44\x49\x11\x32\x03\xfb\x42\xeb\x3a\xe8\x74\x4a\x98\x3a\xc2\x1a\x7a\x14\xc7\x1a\xe6\xcc\x7e\x80\xe0\xcb\x2e\x5b\x6d\xfd\xe4\x66\x3d\xe5\x58\xe7\xeb\xf1\xa7\xe3\x8c\x28\x74\x14\x5a\x99\x15\xee\x1d\xae\x8e\xbc\x36\x66\xd5\x6e\xc3\x7c\xb8\x1a\x95\xea\xd9\x6c\xe9\x05\x90\x15\xbf\x29\x0d\xce\xda\xd4\x8a\xd3\xc5\xfc\x7c\x63\x85\xda\xfd\xf2\xd1\x60\x05\x96\xba\xb5\xd9\xa8\x66\xbe\x0e\x14\x78\xd6\x97\xa9\x2d\x35\x6d\xee\xf4\x61\x78\x52\xe8\x95\x6e\x87\xa0\x6d\xa3\x81\x27\x90\x0f\x3f\xe1\x3c\x09\x9b\xb5\x0f\x05\x87\x2b\x60\xdd\xcb\xcf\x48\x5c\x7b\x75\x97\x4f\x92\xc9\x08\x42\xc4\x95\x44\xed\x17\x52\x69\xba\x53\x4c\xc3\xef\x0e\x77\xfa\x2b\x16\xe8\x2a\x4a\xc4\x49\x13\xd4\xba\x83\x93\x5f\xfd\x1c\x95\x8a\x86\x95\xa7\xb0\xdd\x2f\x0a\xbb\xb3\xad\x56\x57\x3b\x45\xac\xe2\x2e\x55\x07\x1a\x38\x8c\x26\x9d\x3e\xda\xda\xd9\x72\x63\x66\x61\x3f\x55\xe7\xfc\x7e\x6f\xe3\xa6\xb5\x58\x07\x5f\x9b\xe3\xdb\x62\xc0\x5c\x1e\x02\xa1\xf0\x7a\x8f\x8b\x45\xaa\x1a\x01\x6a\x47\x69\x94\x16\xde\x64\xa1\x90\xfa\x65\xf0\x28\x69\x40\x60\xcf\x88\xbc\xa5\x44\x51\xca\xce\x6e\x6b\x8a\xf2\x94\x4c\x24\x80\xce\xa9\xc2\x9c\xeb\xbb\x80\x8a\x16\x3e\x2f\x93\xf9\x62\xb1\x19\x56\x9f\x92\xd7\x4b\x2e\x24\x96\xc8\x7e\xe7\x74\x9c\x11\xfc\x23\x60\x46\xe5\x8b\xa4\x95\x28\xc8\x94\x4a\x2e\xee\xe7\x5f\xe8\x2d\x8d\xf7\x99\xa7\x79\xe1\x32\xd1\xa0\x36\xc3\x73\x17\x8d\x94\x3e\x84\x74\x33\xdc\x24\xbc\x1a\xef\xf0\x6c\x7a\xc7\x74\xdb\x80\xce\xb4\x2a\x50\x67\x69\xeb\x04\x16\xd6\x9d\x9b\x2e\x72\x4c\x88\xcf\x34\xd7\x96\xf1\x70\x54\xe0\xe3\x83\x6d\xac\x97\x51\xd6\x68\x22\x5b\x1e\xab\xd3\x5b\x11\xa1\x17\x44\x5f\x5b\x79\xa5\x69\x38\x8e\xa5\xc3\x99\x3e\x88\x8e\xb1\xf0\xde\x8e\x61\x9e\xe4\x47\x36\xe7\x39\xf7\x6e\xf5\xa2\xee\x68\xb8\x5e\x37\x24\x1e\xfb\xa2\x50\x9d\x83\x25\xdf\x47\x9b\x15\xc7\x3d\x8c\x99\xea\x60\x41\x85\xbe\xd1\xf7\x16\x80\xe9\xb6\x0c\x70\xe3\x0e\x68\x66\x89\x11\xd3\x0b\x0a\xf1\x62\x6f\x96\x07\xd5\x29\xc8\x9d\x5b\x2f\x0f\xb5\xe6\x0f\x31\xa7\xcb\x4a\xb1\x3f\x34\x29\x0a\x87\xdd\xde\x56\x56\x31\xb5\x0e\x53\x47\x3c\x8e\x79\x27\xf8\xbe\xde\xd3\x07\xad\xef\x8f\x6d\x07\x15\x20\x8a\xf1\xb6\x48\x39\x4e\x15\x56\xcc\xef\x4e\x6a\xca\x96\xfa\xe3\xb1\x07\xd1\x5d\x5d\xef\x3d\xa7\xf5\xe7\xaa\xe7\x6f\xdc\x57\x6a\x31\xb3\xc2\x7c\x3f\x98\xc7\xf5\x3a\xdd\xf7\x33\xa0\x26\xa8\xec\x41\xba\x5f\x38\x1e\x98\x84\x10\x44\x2f\xd7\x00\x42\x7f\x1f\x96\x2c\xdf\x4d\x7b\x53\x4d\xa6\x6e\xd0\xd2\x2e\xfd\x64\x23\x2b\xba\x70\x64\x3f\x54\xf7\x06\xc0\xfc\xc6\xdf\x4a\x5b\x1d\x2a\x32\xb1\x84\x09\x28\x3e\x8f\xe5\xa0\x0c\x5c\x64\x41\xa7\xa7\x33\x49\x30\x29\xb2\x8e\xa4\x5a\xb2\xa6\x9c\xed\x96\xd1\xc2\x49\x23\x2c\xc2\x72\x8b\xc8\x75\xf4\x48\x0c\xca\xa5\x6c\x0b\xba\x6d\x07\x84\x04\x74\x6d\x3d\xe7\xc7\x62\x4b\x4b\x3d\xa4\xdb\x12\x10\x42\xd8\x72\xd0\x58\x68\x9b\x31\x47\xa9\x5b\x0c\xd6\xcd\xd7\xf0\x66\xf6\xfc\x0d\x97\x4c\x21\x94\x69\xe7\x75\x67\x98\xd3\xc6\xec\xa2\xbc\x26\xff\xd6\x03\x52\xef\x29\xbd\xe3\x57\x7a\x8f\x65\x71\x5c\xec\xfd\x6d\x7b\xf1\x0f\xdf\xdf\x65\x1e\x62\x82\x7f\xe0\xc0\x5b\x8a\xb2\xe3\x8f\xb5\xc1\xbe\x6c\x55\xf4\xac\xbd\xbd\x02\x70\xc5\xd2\x42\x14\x37\x32\x2f\x8a\x9f\x73\x35\xa3\x14\xf3\x80\x0f\x28\x5c\x0d\x57\xc0\x53\x4e\xa9\xef\x57\x3f\xa3\xe3\x8c\xb2\x33\xd7\xc3\x3c\x8e\x5f\x29\xf6\x33\x70\x14\x51\x02\xe1\x37\x73\x42\xb2\xe7\xa9\x38\x23\x12\x63\x39\xa8\x9a\x27\x4c\xcf\x13\xb9\xcd\x37\x40\x42\x24\xfc\x0d\xcb\xcc\xae\x0b\x34\x09\xb6\x00\x9a\xe1\xde\xe1\xec\x28\x73\xec\xdf\xcc\xdd\xe3\x5c\xe2\x6c\x38\xd3\x51\xb1\x96\x8e\x17\x3d\x24\x59\x4e\xf6\x74\x0a\xe3\x53\x12\xc7\xe6\xff\xa0\x71\x8c\xb9\x61\x96\x0f\xd3\x7d\x6c\x72\x0f\x61\x8a\x57\x20\x35\xe4\x61\x8e\xa9\x93\x6c\xa4\x7e\x58\x75\xa2\x2a\x29\x70\xd9\x5a\x76\x27\x5a\x69\x9f\xc7\x31\x78\xc5\x81\xff\x44\x91\x61\xb7\x22\xa8\xd5\xdd\x60\x8e\xf7\xfb\x10\x49\x02\x08\x5a\xa2\x89\x5a\xdc\x68\x1e\xc7\xe0\x89\x2a\x52\x54\x07\x51\xf8\x55\x62\xfb\x2a\xbe\x45\xcf\xc9\xb9\x1e\x00\x08\x39\xce\x89\xda\x32\x28\xb5\x03\x09\x67\x6d\xe3\x23\x7f\x4d\xf1\xaa\xe8\x44\x8b\x97\xd5\x5b\x53\x94\xc2\xcd\xa4\x8d\x97\xfa\x94\xd8\x18\xc4\x38\x84\x6c\xd4\xa6\xac\xaf\x68\x7b\xdc\x40\x74\xc5\x9a\x8d\xd4\xc6\x2d\xed\x21\x61\x67\x37\x8e\xd5\xd2\xdf\x57\xb8\x9d\x58\x0e\xc3\xe9\x50\x27\xde\x83\xee\x09\x07\x22\xf0\x46\x32\xdf\xe1\x8d\x1a\xe8\xa5\xe7\xbc\x2c\x62\x97\x75\x23\x85\xfe\xb3\x87\x56\xa6\xbf\xe5\x4b\x02\x15\x0a\x8f\x2a\x04\xbe\x42\xdf\x8d\x45\xfc\xe3\x5e\x4f\x1f\x52\x5b\x2e\x13\xec\xf7\x0a\x9e\xe4\x3b\xc3\x93\x14\xb7\xb6\xa5\x3f\x2c\x11\xc3\xfb\xbd\x43\xc0\xb6\xab\xa3\x64\x95\x3b\xda\x37\xec\xd1\x7a\x0d\xca\x32\xbd\xf6\x0b\xbe\x94\x7c\x59\x08\xb8\xdb\x2d\x1d\x9d\xa5\x66\xb1\x8c\xec\xaf\xd5\x8c\x05\x6b\x58\x10\x13\x4b\x62\x21\xda\x07\x55\x3e\xa8\xa0\x02\xdb\xf8\xa1\x32\x84\x22\x7e\x30\x8e\x0d\x7b\x76\xc8\xd4\xd6\xb8\xfc\xa5\xa2\xbd\x86\x57\xb9\xa3\x7e\x7e\xaf\x39\xbb\x2f\xb4\x03\x30\xfa\x56\xff\xb7\x51\x92\xd4\x19\x4b\x33\x40\x50\x64\x50\x1d\x95\x75\x97\xfe\x60\x0a\x1a\xac\x5e\x3a\x09\x89\x96\x3d\x5b\xb6\x40\xab\xe3\x17\x84\x6d\xba\x89\x32\x76\xba\x08\x91\x86\xa6\x51\x6d\xa8\x68\x7b\x5f\x1a\x30\xb7\x05\xfa\x39\xaf\xe3\xb0\x58\x54\xbf\x0a\x19\x5d\x46\x5e\x1b\x49\x40\x9f\x65\x1f\x98\xa3\x54\xe3\x17\x7d\xa7\x3f\xac\x29\xa6\x82\x66\x66\xd0\xcc\xa0\xb6\x5a\x32\x9a\xcf\x41\x28\x0f\x7f\x6b\x9a\xd8\x62\x1c\x2e\x8c\x0a\x5d\x6f\x5f\x32\x92\x55\x51\xa0\x41\xd3\x28\xb5\x2b\xe7\xd6\x12\x8d\xdb\x39\x84\x6f\x50\xbc\x5a\x23\x56\xd9\x42\xad\x06\xef\xb7\x5c\x55\xe1\xe2\xe8\x95\xf7\x70\x43\xc6\x1f\x40\x86\x5c\x59\x11\x2f\x80\xa2\xdc\xee\xd9\x21\xd3\xc7\xcd\x7e\xee\x75\x1f\xc6\xaf\x31\x3d\xfa\xd4\x80\xae\x70\x6e\x28\xb1\xaf\xba\x5d\x4a\xb0\xda\x6d\x8a\x57\x1d\x81\x04\x5e\x15\x54\x3a\x73\x25\xb7\x08\x7e\x2d\x8a\x33\xab\x60\xeb\x64\x0a\x8d\x1b\xc3\x43\x18\x82\x61\x51\xd5\xa1\xda\xad\xe5\xe8\x7a\x1c\x03\x8a\x1f\x49\x20\x21\x44\x60\x72\xdc\xed\xf5\xfa\xeb\xf5\xe4\xa8\xa3\x7e\x28\xb1\xe1\x2e\x05\xa6\xa0\xda\x6b\xdf\xdb\xdf\x10\xe5\x5d\x41\x72\x09\xbd\xe2\xc5\x9c\xbc\x26\x35\x3c\x7e\x55\x09\x95\x36\x9c\x8d\xe0\x26\x58\x32\xdf\x5b\x15\x0a\xa9\x39\xd6\x48\xdc\x3b\x94\x47\xa4\xea\x58\xd3\x6e\x4b\xe8\x13\x87\xd2\xf9\xcf\xe0\x52\x5a\xe5\x04\x2f\xa1\xb2\x68\x5b\x0b\x3f\x5b\xa6\xfc\x72\x83\x98\xfa\x13\xaa\xbb\x8c\x18\xaa\xb5\x60\x1c\x37\xa9\xda\xb4\xee\x8b\x1f\x72\xcc\xc3\x73\x15\xb5\xdb\x29\x14\xc3\x9a\x83\xc9\x30\x1d\x8d\x30\xb7\x7d\xd3\xca\x36\x1e\x34\xd1\xa6\x88\x6d\x2d\x13\x08\xc4\xce\x02\xad\x55\x58\x4f\x78\x9e\x7c\xa9\x18\x24\x03\xfe\x9c\xcb\xd4\x5b\x93\x9b\x94\x76\x26\x4d\x1b\x83\x45\xc9\x4e\xcb\x50\x78\x80\x35\xdb\x91\x83\x59\x94\x36\xba\x2a\x62\x05\x3e\x8d\x01\x46\x3a\x66\xc7\xcd\x1f\x2d\x62\x6a\xf8\xbc\x21\x1d\xb5\x22\x49\xce\x65\x84\x31\x1f\x50\x62\x4c\x4f\x8e\x3b\x52\x69\x69\xd1\x40\x62\xe2\xba\xeb\x64\x4e\x80\x02\x34\x33\xaf\x52\xe2\x38\x27\xf6\xda\xf5\xc6\x57\x6f\x2e\xb6\xf8\xce\x0a\x52\x52\xb2\x30\xcd\xe2\x19\xb7\x13\x6d\x9d\xd4\x09\x6f\x77\xf9\x58\x3b\x4f\x6b\x97\x90\x62\xb1\xa9\xb3\xa3\x92\xe4\x5c\x9c\x0c\x97\x66\x5a\xb0\x05\x55\x05\x7a\xb5\x86\x7c\x9c\xcb\xf2\x16\x5a\x0b\x53\xba\xc6\x79\x1d\xba\xb2\xc5\xd0\x18\x69\xd4\x66\xd4\xae\x42\x7a\x67\x33\x25\xb3\xa8\x8d\x8c\x2d\x8d\x1b\x80\xed\x85\xb0\xbd\x38\xef\x2e\x4c\x0b\x7f\x89\x59\x74\xc7\x2b\x9a\x49\x98\x50\xeb\x45\x56\x5c\x46\x2a\x75\x48\x1a\xc4\x78\x2f\x31\xc4\xb0\xed\x71\xcb\x64\xa9\x6e\x18\x2e\x1c\x98\x1f\x58\xdf\xc4\x50\xec\xc6\x4e\x94\x6a\x28\x0b\xe4\x80\x4d\x51\xc4\xba\xe3\x33\x6d\x6c\x54\x52\xb7\xfd\xb9\x5e\x1b\x7f\x1f\x9f\xee\x3f\x06\xc0\x03\x61\x5f\x12\x05\x00\x38\x28\x89\xf4\xf2\x83\x89\xd1\x19\x97\x87\x86\x45\x80\x05\xae\x57\x5c\x83\x1f\x1e\x71\x4d\x0c\xfc\xaf\x76\xb4\x17\xb5\xad\xf2\xb0\xe8\x6f\x14\xc1\xa4\x9c\xa6\x35\x53\xaa\xe1\xca\xa5\x45\x05\x33\x4e\x27\x2f\xcf\xb4\xef\x8a\x5e\xa0\xc5\x27\x94\x83\xf0\x33\xe8\xae\x4c\x40\x29\x67\x8b\xec\x55\xaa\xac\x54\xb5\xf1\x0c\x6d\x39\x69\xca\xcf\xb9\xde\x6d\xad\x12\x64\xc5\x5e\x5e\xde\x6a\x12\x3a\x8f\x28\xdd\xa2\xf1\x03\x57\x4d\xe9\xc1\x2b\x32\x64\x10\xa6\xeb\x2d\x39\x23\x96\x01\x12\xb3\x37\xf6\xab\x3b\x3b\x28\x12\x45\xb0\xb8\x08\xe6\x57\x40\xf0\xbb\x34\x17\x3e\xb5\x34\x1b\x3e\xb5\x45\xaa\x2b\x40\x2a\xc0\x62\x11\x04\x24\xec\x52\x6b\x15\xcf\x0a\x7b\x03\xab\xc9\xb8\x36\x57\x2d\xe6\xb3\xe2\x7e\x7a\xf1\x79\xcb\xa3\x73\x77\x05\xb7\x82\xe9\xaa\xa7\xf9\x4a\xf5\x58\x4c\xae\xb1\xcc\x3b\xdf\x46\x6d\x6e\x6e\x28\x78\x65\xd4\x88\x62\xbe\xf7\xa2\x76\xbd\x01\x14\x99\x3b\x0d\x1a\xbf\x4d\x66\x53\xd6\xf5\x27\x5a\x87\x75\xab\xe7\x19\x2c\x5d\xfe\x8f\xda\x75\x08\x63\xac\x41\xb4\xe2\x9b\x51\x1b\x89\xa3\x1a\x1b\x77\x26\x05\x3d\x7d\x98\x8a\x97\x44\xe8\xad\xd6\xa8\x24\x59\xaf\x39\xbc\x74\x48\x32\xce\xc0\x7e\xba\xae\x44\x90\x3d\x51\xa3\x9f\x03\x13\x11\x34\x7d\x2c\x3b\x86\xe4\x44\x7e\xc5\xc8\x94\xea\x58\xbe\x20\xad\x21\x23\x0d\x28\x66\x75\x7e\xe2\x18\xa4\xe5\x8b\xd1\x4d\xb3\x08\x51\xb3\xe9\x4b\x07\x84\xe1\xdb\x3d\xfc\xb4\xcc\x54\xc0\xe3\xb4\xd9\x7a\x15\xea\x2d\x04\x7c\x37\xf3\x55\x81\x56\x87\x33\xc5\xe6\x6c\xef\x52\x65\x41\xd5\x9c\x6a\x03\x33\x93\x46\x38\x84\x88\x7b\x5e\x35\xc7\xbd\xc3\xfc\xa8\xc6\xad\x15\x3c\x6b\xee\x98\xfd\x3a\x47\x97\x8f\x50\x86\x79\xf5\xce\xc3\x0a\x2a\x04\xae\x46\xad\x2c\x8e\xb7\x60\x67\x98\x8d\x9a\xd6\xd5\x8e\xc1\xaf\xaa\xa3\x64\xa1\xc3\x80\xcd\x8e\x60\x89\x41\xcf\x7d\xe0\x7c\x59\x18\x5b\xcd\x9d\x50\xf7\x65\x49\x7f\x61\x4f\xb6\xf4\xa8\xa0\xe2\x87\xec\x90\x61\x5a\xd8\x2c\x43\x5d\x61\x75\x46\x3c\x33\xc7\x8a\xf5\x17\xc7\x0d\x24\x8e\xc1\x4d\xe6\x3a\x57\xf4\x77\x15\x90\x59\x17\xc7\xc7\xb0\x18\xfe\x82\xaf\xe6\x0e\x2c\x7f\x41\x35\x93\x40\xdd\xa9\xaa\x07\xe6\x18\x00\x9f\xaa\x76\x8e\x27\xf4\xfe\xb0\x77\x40\xfe\x37\x34\x0c\x01\x0a\x28\x3d\xca\x1c\x3b\x8a\x64\x85\x57\xf3\x7d\x57\xa7\xc1\x44\x7f\x18\xf9\x4a\x95\xdc\xef\xa9\x02\x5a\xb4\x2a\x3b\xa0\xcb\x92\x64\xa5\x04\x4e\x5b\x54\x0b\x57\x6c\x64\x4a\xf7\x03\x84\x4c\x7c\x6f\x10\xb5\x27\x4f\x55\xd4\xe2\x8a\x84\x09\xa8\xc4\x17\x2d\xb8\xda\xfc\xc3\xf4\x28\x58\xc2\xa9\x97\x57\x87\xa9\x5a\xb2\xc5\x3a\x5c\xe9\x91\xd5\xcd\xcb\x76\x26\x61\x6b\xd5\x9d\xa7\x6c\x9a\x11\x7d\xd3\x53\xc7\x37\xc8\xd7\xeb\xac\xee\xa8\x46\xcf\x18\x17\xa4\xe3\x1f\x5b\xb4\x21\x84\x66\x04\xac\x50\x56\xbd\x12\xd9\x44\xe3\x32\x88\x68\x1c\xaf\xba\xe9\x98\xbf\x22\x83\x8a\xe2\x32\xf3\xca\xbf\xf5\x5a\x18\xc2\x97\xf0\xd2\xd6\xca\x20\xfa\x56\x5f\xd8\x12\x64\x2a\xd2\xd7\x25\x5b\xff\xac\x7c\x7c\x2b\x66\xe2\x0b\xe3\xfb\x03\x2f\x81\x28\x36\xc3\x7a\x1d\x7e\xe1\xe1\x08\xc2\xee\x72\x95\xcf\xdd\x11\x41\x0b\xbb\xa6\x91\xdf\x64\xc9\xcb\xc0\xd3\x7a\xa7\xe7\x08\x1c\x8e\xd6\x6b\x40\x3b\xb8\x7e\x04\x20\x59\xf6\xe9\x7a\x60\x6a\xda\x72\x22\xca\x92\xa1\xdb\x38\x35\x6c\x4a\xed\xe8\x15\x5e\x92\x35\x3e\x29\x9a\xb0\x32\x10\x8e\xbc\x0c\x84\x02\x5c\x18\x65\x58\xf5\x32\x40\xc3\xb1\xe5\x28\xcd\xfd\xee\x52\x70\xc9\xe5\xc5\x92\xe0\x17\x1c\x5c\x1a\x95\x5d\xd2\xc4\x2a\x07\x5e\xd0\xc7\x24\x14\x44\xdb\x7d\xed\x74\x17\x3a\x2a\x7b\x00\xab\xf0\xe9\x6b\x83\x6e\xd9\x31\xd9\x3e\xe3\x51\x75\x71\xad\x7a\x66\x55\xf3\x8d\x46\x05\xcb\x81\xf1\x77\x49\xa2\x5e\x64\x27\x96\x74\x0b\x0f\xef\x0e\x90\x03\x96\xf4\x6c\x34\x33\x5d\x3c\xf0\xa4\x28\x29\xab\x02\xd7\xaa\xf2\x20\x3a\x95\x41\x50\xab\xb2\xd2\x3c\xf6\xd6\x6e\x87\x3d\xde\xd6\xa4\xea\xb3\x61\xd2\x6b\xbe\xbf\x8d\xc3\x0f\x01\x84\x51\x98\x07\xc3\xaf\xc3\xe8\xb5\xac\x78\x7e\x7d\xee\x14\xf6\x33\x6e\x71\x64\xdc\x3a\x3c\x40\x07\x88\x00\x59\xa6\xa2\x5a\xd7\xcd\x7a\x2d\x2d\x83\x4e\x79\x19\xf0\x2a\x7a\x1a\xc7\x55\xea\xee\x96\x56\x14\x7e\xac\xe5\xad\xd1\x7d\x5a\xc9\xf8\xe1\xd4\x1c\xf7\xe2\x18\xf4\x30\x66\xf6\x6d\xfc\x37\x0e\xf0\x8b\x74\xf2\x12\x6c\xf5\xc1\xee\x41\x74\xa9\xd1\x99\xe8\xf1\x23\xeb\x0d\xa7\x57\xce\x66\x83\x72\x22\x9f\x79\xc7\xab\xd2\x96\x08\x47\xe7\x21\xf6\xf5\xa5\xd0\xc6\x2c\xec\x1c\x20\xa6\x34\x57\x64\xe9\x0b\x95\x6f\xfb\x4a\x34\xa1\xf2\xbd\xba\x95\x8a\xa0\x8e\x7a\x29\x18\xf4\xeb\x39\x5f\xd6\xbb\x65\xd6\xa4\xcb\x0f\x3a\x55\xce\xa8\x76\xe9\x6b\x22\xe4\x15\x3d\x52\x15\xd4\xca\xc0\x0d\x2a\x61\x3b\xa9\x3c\x9f\x42\xf0\xab\x38\xde\x5f\x0e\xa2\xfe\x75\xbd\x5c\xb5\xdf\x7a\xab\xb6\x3c\xe6\xcd\xfe\xee\x76\xd1\xd5\x57\xf8\x92\xeb\xd8\xb1\xe6\x30\xab\x15\x2b\xe7\xda\xab\x56\x35\x54\x62\x1b\x7a\xa7\x3a\x24\x9b\xbe\x41\x75\x44\x24\xe5\x3b\xf2\xa4\xb9\x3d\x7d\x95\xd4\x78\x82\x83\x3e\xb9\x81\x0a\xd5\x17\x28\x0c\xc0\xdb\xb4\xc6\xde\x88\x48\x32\x62\x22\x13\xf0\xc5\x13\x55\x3f\x30\xd1\x39\xb4\x2b\x96\x55\x2b\xf7\xe1\x3e\x26\x83\x2d\xbd\x70\x66\x5c\xd7\x0b\x01\x37\x70\x83\xb4\xa3\x7f\x7d\x92\x02\x04\x17\xaa\x87\x56\x45\xa6\xf5\x30\x8a\x0f\xa8\xe5\xbc\xd2\xab\x61\x83\x82\x23\x05\xa2\x7b\x57\x9c\x2f\x4e\x11\x78\x69\xf7\x5e\x0f\x99\x0d\xb9\x63\xff\xc1\xcb\x6d\x5b\x40\xe5\xd4\xc6\xb7\xd9\x84\x9d\x80\xa8\x7a\xe9\x00\x5f\x9a\x63\x29\xb9\xaf\x45\xc5\xe4\xde\x06\x7d\x5e\xc0\x5b\xcb\x12\x2e\xcf\xbb\xe4\x36\x46\x51\xe0\xd5\x64\xb8\x8c\x54\x9c\xe9\xd9\xcb\x61\xb9\x1a\x63\xad\xc1\xe1\xcb\x58\x96\xf9\x23\xb8\x77\x48\x8e\xc2\x8a\x2c\xcb\x47\xda\x6d\xf8\x1d\x55\x0c\x52\x76\x01\x8c\x6e\xa6\x00\x1a\x92\x11\x34\x37\xed\x97\x04\x3f\xee\x3e\xe1\x39\xae\x85\x6f\xa8\xc7\xfb\x5c\x92\x52\xc0\xcf\x25\x09\x22\x7e\x6a\x35\x24\x71\xa4\x12\xcb\x0d\x9a\xab\x9a\x27\x8b\x65\xbd\x72\xaf\xbc\x55\x85\x3a\x86\x6f\x5e\xaf\x49\x77\x32\xef\xc8\xee\x64\x1e\x44\x43\x9a\x86\xca\x5e\xd5\x9e\xe1\xb1\x15\x68\xc0\x23\x2f\x48\xa9\xde\xb9\xf9\x3c\xea\x0d\x64\x12\x70\xec\xaf\xb6\x41\x91\x24\xb0\x2a\x5c\x90\xe0\x76\xb5\xbb\xcb\x51\x8a\xda\x51\x8e\x1e\x76\xa2\xbd\xb4\xb4\xfa\xe1\xcc\x88\x52\x45\xef\xc7\x25\xde\xdd\x9d\xa0\x53\x3e\x09\x2f\x60\xba\xa0\x6a\x6c\xbd\x06\x0c\xf3\x6e\x4e\x32\xa7\x8d\x70\xbd\x28\x85\x0b\x5b\xaf\x23\xfd\x1d\x61\x4c\x51\xae\x0a\x2c\x33\xaa\xfd\x11\x73\x25\xbd\x98\x48\x6c\x8a\x3d\x48\xe3\x98\x75\x45\xa8\xbd\x3f\xee\x43\x3a\x03\x67\x24\x8e\xcf\xac\xba\xeb\x07\x4e\x19\xd0\x0f\x7a\x61\x6c\xc3\x40\x95\x8b\x7c\x78\x56\xba\xd1\x89\x71\x0f\x5e\xae\xf0\x70\xd4\x2a\x3c\x38\x7a\x87\xd9\x51\x19\xea\x30\x6b\xb7\xe1\xca\xac\xe8\x52\xff\x2c\xd8\x30\x1b\x29\x29\x55\x9f\xf4\xb9\xaf\xb9\xd2\x72\x1c\x83\x15\xbe\xe0\x20\x2f\x85\x19\x33\x93\x37\x24\xa3\x0d\x34\x22\x6b\x56\x2d\xd7\xe9\x1f\x66\xc7\xaa\x53\x9d\x8e\xc1\xf9\xc4\x43\x28\x91\x7b\x86\xf5\xbd\xf7\x05\x80\x68\x89\x27\x5d\xc9\x01\x6c\x4d\xba\x3a\xaa\x3a\x80\x71\xac\x7d\xd3\x8f\x7b\x83\x19\x5e\x12\x30\x33\xab\x6d\xa6\x16\xa6\xd0\x2e\xf3\x7a\x3a\x7c\xec\xb7\x38\xde\x4f\x07\x4b\x05\x69\x7c\x3a\x90\xb7\xc4\xbf\xa0\x80\x5b\x47\x8f\xd2\xa5\x53\xb4\xec\x4e\xe6\xed\x39\x07\x39\x74\x41\xad\x60\x62\x27\x44\xfb\x01\xd0\x7c\xdb\xec\xc4\x31\x98\xe1\x65\xd0\xad\x1e\x84\xce\x83\xc5\xde\xcb\xb7\xce\x09\xf7\xd5\x02\x45\x53\x6c\x9c\xd4\x67\x48\xf2\x64\x89\x54\x85\xc9\x6a\xb0\x1a\x66\x1f\xae\x6c\xd3\xa3\x24\x47\x5c\xd0\x33\xca\x12\xba\x5e\x83\x74\x60\x17\x96\x1f\x68\x10\x95\x6e\x10\x4d\x56\x32\x4a\xa2\xb6\x5e\xfd\x11\xdc\xb4\x1e\x08\xeb\x92\x35\xd5\x62\x17\x41\x91\xce\x7a\x4a\xd2\x69\x84\x08\x9a\xc2\x8d\x54\xf8\x89\xe3\xd7\x66\xa3\xa1\xaf\x84\xd1\x04\xd7\xba\x8a\xe7\x3e\x55\x5e\x2c\x29\x3b\xc3\xfb\x3d\xd4\xb8\xf6\x71\x43\xcf\x70\xe8\xca\xfb\xa2\x62\x41\x99\x64\x74\x39\xe6\xa9\x98\xde\x49\x65\x6a\xd9\xbe\x22\x41\x1d\xa2\x26\x5a\x8c\x7e\x31\x6e\x99\xa5\x94\x19\x5d\x9c\xf0\x5e\xa2\x3a\x8a\x14\x61\xd2\x3e\xbb\xa3\xb8\xc1\x2e\xcd\x9f\xda\xf8\xf8\x00\xae\xd7\xd2\xeb\x84\x2c\x13\xa0\x07\xb5\x5e\x7f\x29\x81\x0c\xef\x87\x8d\x09\x50\xb4\xa0\xe7\xcc\x51\x1a\xd7\x70\x03\x4b\xbe\x23\x16\x59\x97\x25\x9d\xa5\x76\x81\x11\x74\xa2\xbd\xa2\x43\xd7\x91\x7c\x91\x0a\xa9\x64\x3c\x56\x28\x1a\x5c\x34\x87\x9c\x64\xfa\x06\x52\x75\x73\x30\xb5\x39\x98\xdb\x1c\xd4\x43\x38\x53\x37\xa0\x3a\xb4\x55\x77\x32\x3f\xee\xf7\x7a\xeb\x35\xd3\x8e\x71\x16\xa4\xd3\x1f\x99\x5c\x63\x75\xa2\xc5\x07\x2c\x08\x9c\x0d\x74\x71\x22\x6d\x55\x10\xa5\xd8\xf8\xd9\xf2\xf2\x50\x8a\x53\xcc\x68\xe0\x2a\xd9\x8e\x9a\xe4\xe6\x0e\x82\xec\xea\x40\xc1\x8f\x6b\xd5\x74\x27\xf3\x54\x9c\x48\x90\x43\x78\xdc\xe9\xc3\xcb\x14\x7f\x2d\x00\x41\x41\xe7\x50\xa4\x31\x15\xc1\xd6\x58\x90\xf4\xa5\x25\x3d\x45\x35\x7a\xc6\xe2\xb8\x92\x60\xa2\x72\x7b\xd7\xc3\x70\xb0\x66\x7f\x3a\x67\x46\x8f\x31\x08\xb5\xb3\xea\xd6\xe6\x61\x2b\x8d\x63\xb3\x59\x4a\x2d\xa9\x0d\x13\x56\x1f\x6a\xf0\xce\x2b\x66\xee\xe1\x08\x09\xf5\xc7\x28\x94\xfc\x5c\x97\xe7\x39\xf0\x65\xc0\x55\x90\x21\x0b\xe6\x10\x71\x7c\x69\x42\x9a\x25\x4b\x02\x28\xea\x41\xa4\xf2\xf4\x87\x8e\x81\xb6\x69\x09\x4b\xc8\xd5\xca\xd7\xbf\xf4\x0c\x3f\x55\x75\xd5\xe2\xa1\xf9\xfb\x31\x9a\xdc\x48\x64\x5a\x2c\xdd\x1b\xbe\xeb\x0e\xd8\x92\xfa\x48\xf1\xbc\x13\x2e\x84\x79\x4b\x82\xcf\x66\x91\x8d\xbd\x56\x85\x29\x1e\x0f\xdf\x06\x96\x2f\x49\x96\x69\x69\x2d\x42\xd1\x2c\xcd\x72\x12\x5e\x74\x7d\x4c\xbc\xa8\x33\x59\x38\x86\x45\xed\x71\x43\x8a\x9c\x7c\xb9\xe4\x59\x46\xd9\xd9\xbd\x34\xd7\x87\x73\x98\x56\xe2\xfb\x29\x4b\x27\x93\x95\x48\x25\xf1\x51\xa6\x3c\xfc\x3c\xcd\xeb\x89\xfa\x5d\xc2\x5c\x57\x53\x32\x6b\x3f\x23\x9e\x99\x7e\xc8\x0d\x41\xd2\x0f\x1d\x5e\x15\x52\xd9\x2a\x8d\x74\x78\xa9\x20\x98\xb2\x0f\xb5\xdc\x27\x8b\x7a\x60\xe9\xf0\x6a\x36\x71\x91\xa2\xd5\xb1\x36\xcb\xf8\xeb\x64\xcf\xf8\xba\x1c\xee\x35\xc5\xa8\xb6\x6d\xdc\x08\xdb\xe8\xe9\xe8\xcd\xde\x6d\xd4\x4b\x14\x56\x1a\xef\xf7\x7a\x3d\x25\xbc\x55\x27\x4a\x07\x68\x75\xb3\x38\x2d\xc2\xd4\xd8\xdb\x89\x38\xea\xfb\xfb\x88\xe3\x2c\x9d\xbc\x8c\x20\xba\x6b\x2e\x03\x04\x21\x72\x9a\xa6\x33\x4b\x73\x79\xa2\xd7\xa5\x76\x00\xad\xa4\x59\xaf\x62\x9f\xaa\x03\x1c\x95\x01\x75\x92\x85\x2b\x58\xe7\xa6\xf9\x3f\x13\xe9\x84\x3c\x21\x82\xf2\x69\xe9\x20\x3a\x29\x1d\x44\x0b\xe9\xf5\xc3\x36\xaa\xdc\x7a\x2d\x9c\x4b\x91\xe3\xa8\x15\xdb\x66\xa4\x3b\x4f\x72\x6c\x11\x44\xf1\x5c\x02\xc5\x46\xba\x04\x8e\x4f\x28\xd0\xd7\xea\xb4\xa9\x20\x6a\x71\x4d\x78\x78\x0a\x38\x52\x2c\x34\xfc\xf0\xfa\x20\xd2\xa2\x50\x94\x18\x08\x77\xed\xea\x85\xa2\xca\x8b\x74\xa9\xc1\x50\x5a\xcc\x9a\xf5\x2c\xc1\xb6\x18\xc6\x6a\xad\x66\x59\xba\xcc\xc9\x40\x09\xf5\xd3\x24\x37\x31\x1c\x51\x1e\x84\xae\x29\xf3\xd4\xc6\x4e\x3b\x4e\x75\x7c\x49\x14\xf0\xde\x0f\x49\xc9\x81\x59\x6b\xaf\x42\x9f\x3c\x17\x75\xc9\xc8\x1d\xac\x9e\xd3\x9d\x28\x49\x51\xcd\x52\x3e\x14\x23\x2f\x86\xa8\xf6\xf5\x99\xfe\x84\xe7\x60\x19\x86\xba\xb3\x17\x08\xfa\x10\xea\x20\x21\x76\x1e\x05\xee\x19\xda\x6f\x22\x8b\xc8\xc3\x43\x86\x59\x20\xb2\x9a\x0e\xb0\xf5\x9a\x35\xf5\x2e\x9c\x29\xcd\x2a\x87\x6e\x23\xac\xe4\x73\x5c\x2f\x6c\x4e\x9e\xb2\x7b\x4d\xb9\xbb\x0d\x3e\x36\x65\x80\x21\x1d\x99\x53\xd4\x38\xbd\xf8\xa5\xf3\x84\xa8\x69\x57\x12\x7a\x10\x68\x87\x54\x5d\xc6\xf5\x91\x15\x78\x3b\x51\xec\x2e\xbf\xac\xd7\xfb\x4f\x39\x60\x45\x60\x3d\x85\xd7\x25\x01\x8f\xa9\x15\xb8\xa0\x3a\x17\x14\x1a\xcd\xbc\x31\xed\x6d\xb6\xdf\x43\x12\xb3\xf2\xc4\x28\x04\xa3\x7d\x19\x30\x03\x82\xe4\x72\x30\xe7\xc0\xfc\x72\x86\xf7\x56\xb5\x1d\x0e\x11\x0f\x19\x65\x88\xa8\x11\xaa\x52\x7c\xc3\xb9\x95\x3c\xbf\x58\x92\x81\xb4\x31\x8e\xb1\xd4\xec\x7f\xba\x5e\xf7\xf7\xb5\x2b\x92\xeb\x85\xbf\x63\x71\x63\x1f\x97\x54\xa8\xae\x0a\xc5\xea\x96\x72\x90\xbe\xae\x88\x53\x0d\xf1\x75\x9a\xad\x88\xe7\xcd\x0f\xf3\x60\x56\xf7\x31\x3b\x84\x39\x0e\x93\x5a\xce\x2c\xe8\x7c\x69\x32\xbc\x52\xbb\x2b\x2f\x84\xc0\x09\xa8\x79\x56\x75\xfa\x87\xf4\x08\x64\x03\xe7\xe1\x9e\xf4\xa0\x9e\xf4\xc2\xa0\x43\x8f\x7a\x03\x5d\x51\x92\x0d\xe9\xc8\x5e\xca\xe4\xc5\xa5\x4c\x7c\xc3\x5d\x9c\xe5\xc3\xb4\x7d\x5d\x2f\x8b\x1c\x63\xb9\x5e\xe7\x18\x0b\x27\xf7\x3c\xa6\x40\x55\x64\x50\x9e\x98\x19\x18\xd2\x11\x44\x33\x55\x6c\xd4\x66\x76\x1a\x00\x3b\xea\xad\xd7\xf9\x3e\x96\x50\x4b\x19\xaa\x4e\xc0\x06\xfd\xa4\x07\x47\x10\x2d\x09\x98\xa0\x99\xe2\x49\x8c\x87\xe0\x04\xa4\x28\x47\x42\x2f\x86\x59\xb0\x60\x66\x88\x16\x56\xc4\x25\xce\x4b\x4e\x74\x73\x9c\x0e\xea\x08\xee\x88\xa4\x77\xb8\x3c\x5c\xe2\x65\x08\xac\x37\xa1\x6a\x67\x89\x96\xe1\x34\xf5\x2a\xcb\x33\x14\xcf\xf4\x82\x69\xcd\xdb\x78\x69\x0c\x7a\x26\x5e\x82\x6d\x66\x63\xbc\xe2\xcd\x39\x4f\xf9\x2a\x77\xc6\x4b\xd5\xdb\x39\x16\x87\xd3\xc3\x29\x9e\x56\x73\x7d\x37\xa6\x68\x1a\x76\x43\xd1\x94\x6d\xfd\x68\xef\xee\x47\x10\xce\xca\x12\x4e\x7d\x88\x18\x2e\xa9\x60\x46\xe8\xc2\xd8\x6d\x82\x73\xee\x69\x08\x6f\x78\x2e\xaf\xd7\x24\xe9\x34\x04\xfd\xa1\x2c\x03\x0d\xe5\xa8\x45\xba\x39\x17\x12\x34\x6a\x61\xe6\x8a\x6a\x5a\x89\x58\xda\x1f\xda\x45\x5c\x47\x0e\x52\xf3\x5c\x98\x30\xfb\x9a\xe3\x6c\x60\x31\x4d\x0c\x2d\xa2\x05\x04\xb5\x2e\xe6\x8a\x35\x54\xb2\x35\xa2\xae\xca\x63\x6c\x23\xff\xa6\xf8\x95\xca\xb5\x4d\xfa\x7c\x94\xe3\x45\x50\x4a\xfd\x07\xd1\x0a\x73\x27\x9b\x0f\x1c\xa4\x13\x3b\x12\xee\x13\x0c\xf7\xd9\x62\x47\x4a\x4c\xee\x74\xa4\xe2\x09\x4d\x14\xa1\x4e\x87\xa1\xeb\xc8\xc6\xfc\x5d\x0d\xf2\x24\x45\xab\x41\x9a\xe4\x10\x6e\x36\x81\x2a\xcb\x4e\x47\x10\x02\xaa\x7c\xb0\x59\x98\xa1\xad\x88\x20\xb9\x5e\x13\x38\x42\x61\x84\xb2\x07\xe5\x22\xde\x2e\x64\x2d\xe9\x85\x72\x40\x75\xcf\x5c\xd5\x23\xee\xde\x70\x18\xe8\xa8\x90\x00\xcd\x69\x7f\x64\xa1\x61\xa8\x06\x33\x55\xf6\x8a\x30\x1b\xe5\x0a\x0b\x6b\xb9\xaa\xe1\x58\x0c\x96\x04\x08\xa4\xf8\x0a\x24\x4a\x0a\x09\x98\x34\x05\xc0\x25\xdd\xc9\xbc\x15\x9c\x76\x18\x2b\x86\xe5\x58\x0e\x0a\x15\x9c\x84\x89\x38\xea\x05\x09\x3d\x98\x90\x0d\x90\xa6\x11\x59\x57\x7d\x04\x43\xbc\x5f\xe1\x1a\x8e\x5d\xff\xe3\x58\x1e\x95\x87\x12\x44\xa8\x21\xd5\x6b\x15\x5e\x08\x2a\x19\xd4\xc5\x90\x8d\xb0\x41\xe2\x90\x8d\x8a\xc0\x7c\x41\x74\x9b\xaa\x2d\x78\xa2\x6f\x0c\x4c\x16\x65\xa5\xdc\x7a\x4d\xb4\x13\x25\x9b\x16\x61\xc7\xcc\xce\xd3\x87\xbf\x3b\xe2\xe6\x0a\xb3\x14\x1e\xf5\x5a\x7c\x5f\x7d\x30\xfd\x31\x00\x14\x0b\x24\x30\x83\x89\x49\x56\xad\x1d\xf5\xf4\x41\xc3\x60\xb8\xf4\x9e\x2a\xb1\x4b\x54\x93\xd8\x7a\x2d\x4a\x8e\x11\x5f\x04\x9d\xfe\x5a\xfd\x76\x4b\x52\x8f\x86\x68\xf9\x4e\x51\x8e\x54\x5c\xa8\x8d\xac\x2f\x8c\xf7\x20\x62\x41\x15\xb7\x3c\x4b\x50\xec\xe8\xe1\x08\x39\x56\xa4\x2e\x44\xaa\x33\x89\x0d\xe9\x08\x07\x6d\x08\xe7\xf2\x8b\xd4\x51\x82\x8c\xef\x88\xee\xd0\x0f\x44\xdf\x32\x76\x1d\xd1\x24\x0c\x96\xc6\xf0\x63\xcd\xb9\xa3\xd4\xaa\x8b\x05\xd6\xa2\x43\x39\xc2\x02\xb9\x5a\x69\xbd\xd6\x70\x58\x5f\x55\x31\xf3\x48\x2b\x5a\xca\x40\xdf\xd4\xd8\x21\xfb\xb8\x73\x77\xaa\x1f\x76\xc4\x73\x0e\x18\x6c\xd1\x38\xa6\xb6\x3b\x03\xc0\x86\xcc\xab\x4d\x46\x58\xa2\x2f\x5d\x1d\x30\xf9\xba\xee\xb9\xe2\x93\x2e\x3d\x5c\xe5\xf6\x5e\x38\x6c\xdb\x3a\xe2\x8a\x99\x62\x5d\xa3\x86\x6b\x09\x6c\x1f\x30\xf9\xff\x59\xfb\xb7\x25\x37\x6e\x6c\x7f\x10\xbe\xe7\x53\x88\x19\xfe\xe7\x4e\x98\x20\x45\xca\xad\xde\xbd\xb3\x0a\xc5\x70\x4b\xf2\x59\x96\xda\x92\x8f\x34\xb7\x22\x8b\x04\x8b\xd9\x4e\x26\xd8\x48\x90\xa5\x72\x25\x23\xbe\xbb\xef\x62\xde\x60\xae\x26\xe6\x51\xe6\x51\xfe\x4f\x32\x81\xb5\x70\xca\x03\x4b\xea\x1d\xe3\x0b\xab\x08\x20\x71\xc6\xc2\xc2\x3a\xfc\xd6\x1b\x5e\xbc\xda\x83\x19\x96\xff\x0d\x45\xc0\x48\x3a\xc1\xc4\x97\x62\xfd\x36\xdf\xf1\xe0\x1b\xfd\xd3\x7e\xe2\xca\xd7\xf5\xb9\x6e\x28\x2b\x39\x99\xda\x63\x12\x7d\x1a\x31\x96\xd7\x75\x34\x42\x0c\xc3\x96\xf8\xa8\x47\x48\x2b\x27\x95\xd8\x71\xb5\xcd\xcb\x1b\x7c\xec\xf2\xb5\xa6\xc8\x65\x5f\x72\x80\x07\xef\xe7\x3f\xe8\xfa\x25\x83\xc3\x38\x87\xb3\x68\x65\x5c\xa6\xdc\x0b\x14\xc2\x15\xd9\x5d\xfa\x74\x3a\x05\x4f\x35\x41\xb7\x22\xc9\x61\x01\x89\xe6\x5d\xe7\xf8\xf7\x02\xff\x09\x97\x2e\xfd\x01\xc0\x47\xb0\xe8\xa0\x31\x5d\x1e\xfb\x9f\xb6\xa7\x5a\x04\x29\x7b\x26\x69\x19\xc7\xc3\xd9\x10\x2d\x9b\x78\x26\x7f\xe0\x6b\x11\xc7\xaf\xf3\x24\x9f\x1c\x4a\xa8\xf9\x64\x4f\x09\xf5\xc3\x40\xb9\x66\xbe\x4e\xbf\xcf\xbe\x6f\xec\x17\xb7\x4b\xee\x13\xd0\x07\x45\xd7\x60\xe7\xe2\x24\x06\xc6\x03\x89\x80\x62\x64\x17\xc7\xba\xd0\x64\xb5\x3b\x5b\x4e\xb3\x6e\x8a\xf5\xfb\x8b\xde\x1b\x39\x8c\x32\xab\x47\xdb\x7a\xb4\x16\x27\x12\xc8\xf7\x25\x9b\x5e\x48\x4f\x61\xe5\x68\x44\x82\x92\x0b\xb9\x64\x86\x62\x19\x92\x2b\x97\x86\x48\x22\xaa\x3e\xa6\x18\xd9\x90\x95\x36\x83\xdd\x3a\xfe\x7d\xb2\xf4\x19\xd1\xe9\xfb\xc7\x46\x39\xda\x0e\xe9\x69\xd0\xe5\x1e\x98\x06\x28\xa5\x4b\xdb\x8d\xaa\x1f\x01\xe6\x40\x6b\x02\x65\x27\xa0\xa3\x34\x20\xa9\x3a\xd9\xe3\x4d\xbf\xd4\x3d\xff\xd5\x2c\x90\xee\xec\x75\x9e\x55\x75\xad\xd9\x1a\xe5\xa9\x2c\x0c\xab\x4d\x7a\x71\xac\x97\xd3\xf9\x78\x96\xce\xe0\xd1\x44\x74\x15\xc3\x19\x63\x0e\x0e\xaa\xae\x87\xba\x9b\x75\xfd\xa3\x84\xc1\x04\xbb\xe2\x4b\xcb\xe7\x4d\x20\x72\x6b\x95\x40\xf5\x04\x14\x50\x15\x2f\x98\x32\xd3\x90\x04\x9b\x2b\x14\xa5\x07\xc9\x55\x73\x6a\x00\x73\x92\xe3\x26\x22\x56\x64\x8f\xde\x96\x9f\xaf\x54\x7e\xcc\xd5\x1d\x46\x05\xf0\xd8\x0a\x20\x5b\xf1\x73\x81\x5b\x1b\xdd\x1d\x1b\x2c\xcb\xaf\x7d\xfe\x23\x54\xb0\xe9\x85\xb8\x54\xad\x3b\x45\x58\xae\x31\x73\x0b\xb3\x10\x4b\xb0\x5b\x6b\x91\x9a\x9e\x1b\x49\x5f\xd3\xc1\x25\x24\x96\xf4\xc0\x7e\xd1\x8d\x67\x56\x0e\x59\xc5\xb1\xe5\x8f\x8d\x05\x9f\x2d\x00\x8b\x05\xd9\xf0\x97\xce\xbc\x48\xf2\xba\x3e\x0c\x99\xfd\xba\xae\x0b\xfd\x03\x56\x50\x53\xd9\xba\x06\xc0\xd2\xe6\xf5\x44\x05\x21\x34\x5f\x08\xb7\xf1\x0f\xb4\x70\x72\xcf\x47\xf9\x1c\x2e\x2c\x15\x5c\x56\xa1\x76\xf1\x1f\x3d\x1a\xc1\x90\x61\xc2\xe7\xfd\x2e\x93\x7f\xf0\xf5\x9b\x7d\x56\xb6\x81\x8a\x1b\x79\x1d\xe3\xbe\x8a\x35\xf2\x17\x99\x9e\x9f\x0a\x93\x80\x69\x31\x9e\xec\x15\x30\xce\x75\x9d\x1c\x26\x79\xb9\x2a\x0e\x55\x7e\xe4\xdf\xf1\x8d\x9a\x63\xc6\x25\x5c\x0c\xa9\xf9\xa1\xac\x5c\xdb\x7e\xab\x44\xf3\x4b\x00\x2e\x9b\xeb\xf4\x2b\xfb\xa1\x12\x57\xf8\x19\x30\x58\x79\x1c\x27\xbf\x22\x92\x3a\x9c\x59\x8c\x29\xf0\xa2\x04\xdf\x69\x7a\x98\xf0\xf7\x9a\x57\xcf\x55\x71\xf7\x4c\xd3\x55\xbe\xc6\xcf\x9a\xf3\x70\x3f\x1e\x67\x83\x95\x28\x55\x5e\x1e\xf8\x09\x85\x29\xe0\xc7\x3f\xc9\x94\xd8\xe5\x2b\x62\xf3\x8c\x5d\x18\xe8\x26\xe9\x8a\x1d\x10\x2a\xb6\xbc\x9c\xce\x67\xe9\x78\x46\x70\x1a\xe0\x79\xdd\x1c\x41\xda\x9a\x0c\x02\xb1\x34\xbf\xd1\x0b\xb6\xa2\xe3\x92\x82\xeb\x72\xc3\xd9\x46\x80\x28\x82\x90\x6e\x56\x1c\x27\x85\x66\xfa\xc0\x0b\x5c\x4f\xdd\xe5\x74\x5e\x5c\x4e\xd3\xe2\xca\xbf\x61\xff\x81\x35\x2b\xd8\x0a\xe6\x69\x1d\x74\x16\xc8\x47\xf0\x3e\x9f\xb7\xba\x97\xb6\xfb\x8f\x4f\x77\xe8\xef\x86\x96\x74\x73\xa6\xaf\x9b\xf9\x3f\xb0\x08\x36\x8c\xc1\x6b\xec\xee\x0d\x76\xea\x2f\x3d\x3b\xb5\xac\xeb\x19\xcd\x98\xdb\xc4\x82\xe6\xa4\xae\x87\x79\x1c\x07\x49\xc3\x29\xa9\x6b\xf7\x7b\xdc\x53\x66\x2c\x10\xb7\x17\xdb\xcc\x80\xb6\xad\xb2\x52\xbd\x58\xe7\x4a\x13\xa9\xc6\x03\x27\x20\x33\xdf\x04\x64\xc6\x72\xf5\x9a\xa5\x9e\x32\xd8\x77\x73\xf3\xd8\x31\xdf\xce\xe1\xfa\xd9\x73\xf3\x8a\xd2\x8f\x2c\x18\x6c\x2a\xaf\xa6\x71\xac\x3f\x60\x4c\xb3\xd9\xe1\xf1\x6b\x3c\x58\xe6\xcd\xe7\x97\x7b\x5b\xcd\x5d\x9d\xa0\x20\xc1\x4a\x8d\x3d\x84\xb5\x01\x9e\xac\xb6\xa3\xf0\xb2\xff\x8d\x37\x11\x35\x8d\xf5\xeb\x56\xdc\xfa\xe0\x14\xed\xdc\xbd\xe4\xfb\x2c\xb8\xe1\x92\x70\x2e\xb8\x6a\xbf\x86\x4c\xf8\x2a\xf4\x7a\x2c\x8d\x1f\x7d\xf5\xe1\x80\x25\x00\x15\xe1\xee\x8a\x8f\x28\x6f\x11\xc2\xba\xef\x05\x0b\x16\xa6\x99\x24\x65\x70\x56\x9a\x8c\xbb\x43\x7b\x0b\xa8\x78\x66\xf4\x8e\x95\x79\xce\xe3\x2a\x76\x7c\xa1\xeb\xba\x02\xa1\x80\x5d\x94\xb6\x57\x35\xf1\x0e\xb9\x46\x62\x70\x91\x1c\x34\xf3\xe4\x94\xa5\x5b\x71\x8b\xa4\xe7\xe7\x2d\x2f\xdf\xd8\x10\x6b\x24\x8e\x21\x64\x8b\xb9\x17\x72\x42\x0f\x75\x2d\x21\x85\x8a\x40\x4a\x10\xb8\x4b\xaa\x26\x77\xf5\x12\x7f\xb7\x1d\x0e\x03\xdf\x8a\x2a\x2f\x6f\x0a\x43\xf7\xd0\xe4\xf0\x35\x97\xdf\x19\xd1\xbe\xec\xf7\x0f\x88\xfe\x9f\xff\x2b\xea\x09\x04\x13\x11\x82\x48\xf6\x0d\xb3\xe3\xc2\xda\x69\xd2\x3c\xf0\xbb\x2e\xf5\xff\x9b\xc9\x5d\xa3\x55\x67\x0d\x06\xa5\xc9\xa7\x01\x58\x62\xd0\x5f\xac\xa5\x9c\x08\xb5\xe5\xd2\x45\x55\xff\xb7\x7a\x1e\x7a\x7a\x54\x7c\x25\xca\x75\x26\xef\xfc\xa0\x44\xd7\xd2\x53\x34\x07\x09\x6d\x07\x43\x15\x8d\xa1\x62\xae\x1b\xb0\x68\x0e\x78\xf2\xb7\xa7\x9f\x26\xb6\x90\x1b\xb0\xfb\xc6\x98\xe6\x06\x5e\xa6\xea\x21\xc4\x15\x00\x1b\xfa\xa8\xa3\x52\x34\xc2\x21\x54\x2c\xc3\x10\x6a\x87\x10\x0c\xc9\x07\x57\xa5\x00\xf5\x30\x36\x49\x81\x6f\x31\x19\x67\x68\xb9\xeb\xe5\xca\x85\x27\x86\x0a\x04\x0b\x8a\x4d\x41\xb3\xe7\x91\xaf\x15\x69\x22\x61\x97\x84\x8a\x8f\x84\xb9\xaf\xcc\xa3\x2d\xea\xd7\x3a\x5a\xff\x14\x8e\x1e\x29\x10\xd7\x26\x1a\xa9\x96\x7f\x8a\x05\xce\x99\x1f\xc6\x3c\x95\xc6\xe9\xcb\xc7\x80\x4d\xca\xb1\x01\x37\x0d\x29\x9b\x93\x97\x1f\x31\x4a\x18\x5d\x69\x0e\x29\xa7\x8a\x80\xed\x4e\x40\xa0\xfd\x5c\xec\x93\xf0\x52\xf8\x43\x19\xc2\x0f\x5e\x47\x30\xbe\x15\xf5\x42\x97\xee\x6b\x18\x30\x00\x9d\x76\x07\xda\x8f\x0a\x25\xa3\x10\x8e\x76\x38\x33\x0c\x2d\xf7\x6c\x97\xb0\x9c\x2c\x5f\x88\xe5\x45\x92\x21\xc3\x24\xe3\x38\x03\x0e\xa8\xae\x15\x63\xe6\x17\x43\xd9\x7a\x99\x78\xb8\x48\x28\xad\x87\xe5\x04\x83\xba\xa0\xee\xf3\x8c\xc1\x3e\x39\xf2\x62\x1e\x49\x55\x44\x29\xf6\x86\xe6\x10\xb6\x2d\xaf\xeb\xb0\x8f\xa7\xe4\xf3\x3c\x59\x11\x2a\xeb\x1a\x4d\x4b\x18\x2b\xe7\x9b\xb4\x6c\x0a\x1f\xcc\x1d\xbe\xa2\x5b\xba\xa6\x3b\xb6\xd7\xcc\xbf\xd1\x0b\xe6\x9b\x44\xf3\x09\x64\xc5\x76\x74\xcb\xd6\x6c\x07\x5b\xd4\x45\xcc\x5f\xb1\x7d\xa2\xc6\x33\x6a\xf4\x82\x84\x42\x97\x98\xf5\x07\x3a\xb2\xdd\x60\xc7\x56\x74\xc5\x8e\xa7\xad\xf9\x96\xae\xd9\x0a\xb7\xeb\xc9\xec\x00\xb8\xa4\x39\x80\xe4\x54\x84\xae\x20\x7c\xe0\x4e\xff\xff\xea\x33\xcd\x2b\x25\x5b\x0a\xbf\x70\x1f\xee\x2c\x80\x2d\xdd\xb2\xca\xfd\xba\x5c\x21\xea\x09\x16\xc6\x34\x2c\x0f\x19\x84\xd8\xc1\xc7\xb1\x62\x6c\x13\xc7\xc9\x9a\x1d\x08\x4d\x86\xa2\xae\xa1\xf2\x4b\xa1\xff\x6f\x7e\x30\x26\xb0\x3a\xec\x31\xe8\x56\x90\xe7\x13\x6c\xa7\xbf\xca\xea\x7a\x65\x5a\xb9\xca\xcc\x1f\x3e\x49\x2f\x90\x45\x97\x35\x43\xbd\x32\x27\x14\x4d\x40\x56\x84\x6e\x2f\xab\xd1\xcc\x0e\x59\xf7\x1a\xfa\x49\xd7\x63\xfd\x97\x19\xe1\x89\x50\x17\x63\x90\x97\xeb\x34\xb3\x4a\x16\xe5\x8d\xd4\x14\x1a\xa9\xe5\x9b\xc4\xf2\x74\xc6\xb0\x6c\x15\x6a\x1e\xc0\xb2\x0c\x1d\x78\xef\xd1\x28\x0c\x4e\xcd\xc6\xe8\xef\xd6\xf8\xd3\x7c\x49\x77\xec\xeb\x32\xd9\x12\xa6\xff\x59\x13\x7a\x64\xcd\xba\x76\xf3\x6d\x78\xd0\x46\x33\xe4\x1e\x27\xbc\x5c\xd3\x3b\xb6\xb2\xe6\x6e\xbb\xf9\x14\xb5\x71\xd0\x36\x6a\x87\x07\xfa\x71\x7a\x84\xf9\xbe\x83\x65\x7e\x32\x4f\x8a\xe4\x88\x73\x43\x8f\x7e\x95\x8f\x6e\x95\x8b\xa4\xa2\x50\x96\xde\xe1\xf6\xb9\xb3\x59\x24\x6d\x7f\x8a\x25\xc6\x3e\xd1\x96\x74\x7f\x62\xb3\x7a\x9f\x54\x2e\x0d\x5b\xbc\x43\xf4\x9b\xe6\xad\x15\x62\xac\x94\xca\xc1\x59\x34\xcc\x3f\xbb\xd1\x4d\x41\x00\xf4\xb5\x7e\xc1\x1c\xb3\x22\x51\x93\xeb\x22\x2f\xff\xe0\xd2\x8a\xe3\x87\xd3\x81\xf2\x48\x46\xe6\x26\x02\xb0\x1c\x88\x3c\xa4\xef\xb6\xf6\x35\xfb\x77\x5d\xc3\x0f\x99\xe2\x57\xd3\xb9\xab\x8f\x55\x5c\xb9\x56\x02\x53\xb2\x07\x2b\x4f\x24\x1b\x4a\x02\x41\x42\xd0\xc2\x20\x3a\x9d\x6f\x8d\xa4\x67\xb3\xf0\x52\x79\x70\x18\xa6\xfe\x50\xef\x9c\x2b\x87\x22\x63\x62\x1b\xe1\xbe\x78\xa3\x27\x14\x80\x79\x82\xc0\x43\x97\x6d\x26\x0f\x1e\xf8\x30\xf5\x2e\xc2\x2d\x18\xa0\x2b\x7a\x2b\x12\xa1\x9a\xf2\x09\xa1\x5a\x81\x73\x10\xee\xd1\x55\xae\xac\x52\x21\x48\xb4\x8a\x5f\xc4\x38\xb2\xa9\x5d\x6e\xd3\x85\x97\x75\xe2\xc1\x00\xfa\xf0\x56\xc8\x3f\xde\xe6\x00\x80\x90\x95\x89\x82\x51\xd2\x0c\x6d\x3c\x6c\x95\x44\x93\xeb\xc5\xd2\x06\xf1\xf1\x19\x81\x1e\xa8\x81\x1e\xdb\x41\x15\x1a\x3d\x9d\x86\x31\x76\x85\x51\x09\x9d\xeb\x33\xf0\xc0\xe6\x3e\x32\xcc\x4f\x05\xf6\xc1\xc1\x41\xbe\xf2\x63\xd8\x65\xef\xbf\xb2\x53\x8c\xe1\x44\xe8\x81\x7d\x53\x82\x58\xb5\x9a\xfb\x61\x95\x24\x2d\xe1\xb9\x66\xeb\x64\x07\xf3\x87\x81\xd4\x33\xe9\xe0\x42\xc9\x2b\x78\x71\xaf\xf0\xef\xc1\x6a\xde\xcc\x64\xab\xb4\xd0\x14\xb6\x99\xd8\x74\x3f\xdd\x30\x4d\x7a\x33\x87\x9b\x6b\x9b\x75\x6a\xfd\x02\x50\xc4\x92\x61\x51\xd7\xc3\x55\x5d\x17\x1e\x20\x62\xe5\x01\x17\x8a\x10\x20\x62\x15\xfa\x78\xee\xd9\xf4\x62\xb8\x89\xe3\xfd\x65\xe6\x2f\xf2\x3d\xd9\xb0\x6c\xb1\x5f\xfa\xe6\x16\xfb\xe5\x60\x13\xc7\xb9\x71\xfe\xf3\xcb\x0a\x8c\xa5\x8b\xb4\x55\xcd\xcb\x34\x9c\x2b\x6b\x58\x18\xcc\xf9\x25\x7b\x68\xd2\xe3\x98\xeb\xf7\x27\x7e\x41\xcb\x56\xf5\xbe\xdd\xff\xf5\x94\xb1\x69\x6b\x59\x8c\x19\xca\x68\x14\x6c\x2e\xb7\x5d\xaf\x9c\x09\x2b\x9c\xc8\xe6\xe6\x05\x39\x3a\x18\x9e\x42\x14\x7d\xd3\x93\x6f\x1b\xd1\x96\x43\x9b\xc3\xe9\x85\xba\xb4\xe5\x2e\xd4\x68\x44\x7e\xd3\x45\xf3\x85\x5a\x52\x04\x7e\x21\xa7\x90\x06\x64\x5d\xe6\x59\xac\x90\x71\xf6\xd0\xc8\x10\x24\xb6\x41\x1d\x9a\x51\x87\x45\x47\x96\xed\xb4\x56\x34\xa7\xc6\x90\x9e\x66\x4c\xce\xc7\xb3\x54\x8d\x93\x80\xe0\xe4\x65\xc9\xc1\x3b\x63\x3e\xe3\x9f\xa5\x10\xcb\xac\x62\xea\xa2\xba\xca\x2e\xc6\xe3\x0a\xce\x51\x75\x69\x41\x11\xed\x34\x99\x9f\xc6\xa2\x03\x0c\xb8\x2b\x23\x2f\x3a\x34\x63\xad\x0d\x65\x5d\xe3\xf7\xee\xac\x5b\x23\x2a\x73\x26\x0a\x91\x1c\xcc\x8a\xea\x8b\x27\x08\x99\x95\x5d\xbf\xc9\xff\xe4\xe4\xc2\xb0\xc6\x9a\x97\xbb\x2a\x40\xd8\xc8\xaa\xf1\x8c\x96\xac\xf0\xa2\x44\x2b\x8f\xa6\x19\x13\x57\xa5\x25\x66\xef\xf2\xa4\xa4\x62\x3c\x23\x41\xa7\x9c\x2c\x85\x65\x7a\x8f\x94\x86\x22\x91\xb4\xb2\x3f\x08\x2d\x91\x10\x09\xaa\x1a\xd1\x7d\x61\xfb\xa1\x3f\x2d\xcd\xac\x91\x98\x66\x57\xc7\xb3\xba\x16\xb0\xed\xea\x5a\x5c\xb1\x3c\x00\x7e\x13\x97\x36\xf2\xff\x40\x36\x4f\x43\xa3\x71\x18\xfb\x68\x24\x4e\x20\x01\x4f\x4a\x4f\x84\x05\xa1\x59\xe0\xa3\xae\x1a\x88\x3e\x3e\x8a\xa9\xc3\xd4\x0a\xfc\xc3\x9b\x65\x11\xf7\x33\xc4\x87\x1a\x77\x2b\x68\x03\x47\x15\xfe\x9a\x6f\x86\xd4\xf7\x46\xdf\xcd\x74\x03\x33\x02\xc1\x51\xad\xa1\x8f\x7e\x3a\xed\x25\x8f\x68\xa4\x9f\x2f\x54\x32\x0c\xce\x38\x69\x87\x14\x9c\x9f\x49\x4f\x14\x49\x95\x85\xd4\x84\x14\x5a\xb2\x7b\x78\x57\xed\x33\x59\xf1\xaf\x4b\x95\xc8\xd0\x25\x98\x18\xd7\xa6\x6e\x2e\x8a\xff\x9c\x26\x25\xaf\xbe\xcf\xbe\x37\xde\x5e\xa4\xae\xed\x4f\x64\x4e\x8d\xb0\x2d\x1c\x1d\x2b\x09\x0d\xa4\x1b\xab\x70\x86\x4b\x31\xf6\xb7\x4c\xd3\xff\x36\xf0\xad\x6e\xae\xc9\x43\x81\xfc\xc6\x50\xfb\xb8\x1b\x62\xc3\xd7\xb6\xff\xa8\xda\xcc\x62\xf7\x54\xd7\x5e\xed\xad\x0a\x1c\xf5\xb9\x95\x8a\x9a\xa5\xbe\xdf\x65\xfb\xd4\x2d\x2a\xd8\x45\xc2\xe4\x04\x69\xf0\xfb\xd4\x0a\x24\xc7\x3b\x7e\xfc\x50\xb9\xf1\xe2\x7f\xa8\xfe\x6a\x51\x2e\xfb\xdb\xd0\x39\xd8\xce\x03\x6d\x80\x49\x9e\x69\x86\x38\x1a\xff\xef\x36\x43\x51\x10\x9f\x0e\xa7\x01\xd5\x5e\xab\x8e\x78\xf5\x4e\x27\x1d\x91\xa3\x83\x8c\xc0\xe7\x4a\x79\x33\x95\x33\xf0\x90\x1d\xee\x8e\x74\x56\x15\xac\x1a\x0d\xee\xf0\xb2\x13\x32\xe6\x01\xdc\x2b\x75\xc5\x10\xfa\xea\x7b\xdd\x90\xf9\x73\x84\x38\xa0\x73\x99\x42\x18\xe1\xc0\xad\xc2\x8c\xc1\xf0\x74\xaf\x72\x14\x8d\xc0\x18\x24\x19\x94\x10\xb2\x5c\x93\xc0\x79\xc9\x50\x9c\x1b\xc7\x65\x00\xfb\x0a\x00\x69\x25\x95\x14\x01\xb7\x9d\xbb\x4a\x33\x96\x2a\x31\x3e\x5c\x7d\x16\x35\xba\x49\xfd\xd8\x52\xa4\x11\x23\xa0\x07\xa5\x8b\xdf\x3e\xfa\x87\xb2\xf6\xbf\xd0\x3b\x1c\x9c\x89\xaf\x95\xb3\x12\xe1\xba\x18\xa0\x75\x95\xc4\x23\xf7\x03\x30\x06\x22\x62\x34\xe2\x38\xeb\xcf\x4d\xfd\x34\x47\x40\xae\x12\xc3\x39\x5b\x4c\x83\xad\x4a\x4a\x6c\xcc\xec\x27\x30\x18\xc4\x90\x67\x69\x49\x25\x5f\x19\xb3\x4b\xbd\xcf\xf2\xe0\x98\xe4\xb8\xa7\xec\x7e\xca\x27\xf8\x07\xdd\x66\x15\x9e\xc3\x2a\x1d\xce\x82\x3d\x76\xa7\x42\xad\x82\x32\xc5\xc1\x2a\x46\xdf\xb5\x70\xfb\xd0\x03\x93\xa3\xa4\x04\x9c\x26\x6f\xc7\x04\xed\x74\x61\x56\xe6\x15\x33\x79\x8b\xc3\x32\x4d\xd4\x44\xf7\x15\x60\x0c\xf4\x1f\x06\xc5\x11\xd9\xb1\x33\x1e\xb3\x84\xaa\x89\xef\x6e\x2b\x22\x78\xc8\xc3\xf4\xc6\x31\xcd\x59\x19\xc7\x40\x00\x0d\x8e\xbc\x3d\x6b\x5b\x5b\x5f\x19\xc7\x3e\xf5\x16\x11\x5d\x73\x8f\xa1\xd7\x2a\xaf\x9f\x0c\x68\x5d\xd4\xfa\x88\xe5\x03\xaf\x0a\x54\x6d\x63\x5e\xb8\x5e\xdc\xa0\xaa\x44\x33\x3c\xd3\x8b\xca\xf1\xb8\xe3\x19\x78\xd1\x18\x09\x79\x86\xa8\x35\xd9\xa2\x1a\xcd\x96\x03\x78\x8f\x64\xd7\x55\x72\xf0\x70\x93\xe6\x55\x7d\xf5\x24\x8e\x05\xb2\xc0\x2e\x77\x04\x60\x94\xe4\xf1\x93\xb1\x41\x93\x3d\x99\x12\x4e\xae\x6a\xd3\xe1\x3d\x04\xf8\xbf\xb8\x1a\xcd\x99\x86\x03\x93\x54\xec\x8c\x71\x0a\x05\x53\x75\x05\x7b\x0d\x14\xb9\x16\x69\x93\x16\xcc\x1a\xa2\xaf\x18\x18\xa6\xd3\x4d\x60\xab\xae\x67\xef\x33\xc6\x0e\xce\xdc\xd7\xf3\x8d\x9a\xf5\xdf\x5f\xfe\xe5\x62\xaf\x67\x02\x80\x8f\x8b\x38\xfe\x43\x18\xa5\x8d\xc1\xff\x32\xae\x44\x08\xa8\xf1\x46\x37\x33\x2a\x08\xb9\x20\xe3\x71\x01\x0b\x70\xd1\xc8\x5a\x5d\x9a\x9f\x2f\xca\xf5\x47\xd5\xb5\xd2\x75\x8d\x46\xf0\x54\x05\x7c\xc0\xff\xb2\x38\xe4\x2b\xb4\xb8\xc7\xba\xc6\xe1\x47\x24\x67\x87\x10\xd1\xed\x9c\xeb\xb7\x05\x6f\x13\xe7\xd0\x85\x89\x91\x0c\x3d\x13\x80\xc8\xb2\x22\x9d\x6d\x33\xc8\xd9\xd6\xaa\xbf\xb6\x0b\xe7\x0a\x50\xce\xb7\x6e\x23\xa5\xd3\x65\x7a\xad\xf0\xa1\x93\x37\xab\xea\xeb\x55\x5d\x5f\x2b\x54\x58\x68\x7e\xa4\xae\x73\x64\x44\xea\x5a\x8f\x1a\x8d\xe2\x07\x2b\x56\xd0\x62\xcc\x66\x74\x63\xbd\x0f\x4e\x30\x37\xb3\x19\x30\xc6\x5d\xcf\x64\xc3\x53\x55\x2b\xc9\x79\x59\xd7\x46\x33\x0d\xbf\x26\x85\xb8\xc9\x57\x59\xf1\xcb\xf3\xd7\x5f\xd7\x75\x37\xcd\x95\x5b\xf3\x63\xbe\xe2\x58\x6c\x18\xba\x98\xea\xe3\x07\x30\xcb\xbf\xba\x0b\xeb\x57\x11\xb0\x80\xc0\xfa\x55\xfb\xac\xf4\xbc\xdf\x59\xe2\x42\x4b\x3d\x43\x8a\x4e\xe9\xec\xec\x0c\x39\x0b\x18\x13\x21\x41\x1f\x45\x54\x73\x8c\x0d\x13\x77\x35\x3b\xf9\x50\x10\x8f\x94\xb9\x27\xbb\x63\x7b\xdc\x19\x1a\x2d\x5b\xc5\x7e\xed\x14\xd3\x29\x8e\xec\x6b\xf6\x53\x41\xa3\x9f\x4a\xc3\x6f\x2a\x5c\xb0\x4f\x25\x55\x62\x9f\x2a\x7d\xb6\x3f\x2d\x1d\xd6\x85\x39\xf3\x9f\x96\xfa\xb8\x7b\x38\x7e\x7b\xdb\x10\x7c\x11\xdf\x17\x00\xb1\xb1\x61\x25\x73\x62\xe4\x36\x72\xbd\x87\xc0\x4e\xb6\xec\xd0\xd9\x99\xc4\xf9\x30\x3f\xb4\x31\x0f\xe7\x26\xf9\x14\x9c\xb7\x61\xa1\x1f\x71\x79\x5d\x0f\x71\x53\xc6\xf1\xd0\xec\x4a\x23\xf5\x59\x77\xce\x5b\xa3\x2b\x8b\xe9\x72\x90\xb3\xf5\x1c\xa7\x6b\x8d\x32\x4b\x9c\x2c\xfc\x31\x6a\x84\xab\x86\x79\x5b\x83\xf4\xd2\xcc\xda\xda\xcc\xda\x49\x1f\x24\x4b\x9d\x76\x10\xa7\x76\x3f\x46\x5a\x09\xc5\x8f\x2c\xb7\x34\x35\x48\xbd\x63\xc9\x6e\x74\x24\x8f\x9f\xd0\x1b\x7b\xbf\xb5\x2e\x11\x8a\x94\xee\xc6\x4d\x4d\x1c\x0f\x93\xbb\xcb\x9b\xc5\x7e\x49\x80\xfa\x5d\xe8\x06\xaf\xd9\x7e\x7e\xb3\xd8\x8f\x67\xcb\x74\x4a\xdf\x31\x9d\x4b\x6f\xcd\x13\x24\x71\x33\xbc\x99\x9b\xb9\x49\x71\xb2\x88\xed\x4a\x30\xea\x04\x55\x09\x58\x18\xbe\xb7\xf3\xd9\x28\xac\xe7\xe1\xda\xce\xc1\xbb\xd3\xa0\x43\x12\x92\xdb\xc9\xb5\xb8\x39\xc0\xd5\x30\xf8\x08\xed\x29\x7c\x21\x95\xd8\xb3\x1d\xbd\x9d\x48\x23\x9a\x3f\xba\x13\x75\x7b\x72\x97\x0a\xc1\x9a\x81\x33\xb0\xec\x02\xab\x08\xa1\x38\xde\x2a\x1c\x4e\x65\x84\xcb\xba\xbf\xf9\xbc\x82\x16\xc0\xa8\xc5\x2d\x20\xa4\x9a\xbf\x2b\xbb\x98\xa7\x57\xbc\x85\x56\x91\x97\xb9\xea\xc1\x42\x82\x30\xf8\x92\x19\xa7\x35\x6a\x22\xa6\x1a\x54\x29\xf6\x86\x27\x2e\xe0\xa9\xf5\x02\xb4\xb1\x5d\x5a\x01\x1c\x2a\x1b\xc0\xea\xb7\x3c\x91\x94\xa3\xd9\x4c\xaf\x41\x26\xb9\xe1\xec\xde\x3a\x98\xa7\xc3\x19\xba\x83\x43\xd0\x21\x67\x5f\x00\x41\x28\x55\x9f\x47\x23\x48\x50\x9b\x3e\x92\xe7\x1c\x1f\xf3\xc9\x31\x2b\x0e\x9c\x75\x5d\xd8\xe9\x4e\x24\x39\x21\x4e\xaf\x34\x94\xcd\xe3\x9f\x57\xfc\x99\xd8\xdf\x3d\x3b\xd8\xb7\x93\x71\x86\x7b\xcf\x13\x49\x06\xcd\xfe\x4f\xb1\xff\xc8\xf2\x9e\x28\xf8\xa6\x03\x08\xf0\xdd\x9e\xcf\xe5\xa4\x6a\x8c\xca\xdb\xfc\x69\x0e\x56\x08\x92\xb6\x47\x63\x3b\x5d\x9e\xe9\xf3\xa9\xd1\x00\x44\x14\xe8\x71\x43\x9f\x92\xd3\x89\xf7\xc7\x14\x2d\xa9\xcf\x08\xc0\x51\xc1\xe9\x31\x6f\x41\x17\x01\xca\x17\x06\x8f\x45\x5f\xfb\x50\x24\xa7\x49\xd8\x15\xfb\x2f\xcd\x52\x86\xde\xa5\xb0\x40\x0d\x77\x53\x8b\x0c\xba\x17\x45\x91\xf8\x70\xb4\xe8\x74\xde\x40\x54\x30\x7b\xa7\xae\xc1\x77\x5e\x42\xa0\x81\x5e\xdf\x7b\x3d\xeb\x93\x4d\x56\xa9\xd7\x50\xa7\xaf\x54\x4f\x0e\xad\xdc\x2f\xb1\xbf\xb3\x3f\x7d\x0c\xac\x6e\xd3\x25\xb9\x17\x12\x5e\x30\x75\x0d\x7d\x28\x3f\xd4\x34\x22\x6e\x98\x76\x03\x31\x0f\x8d\x50\x5b\x0d\x4c\x61\xd0\x82\x32\x2d\x28\x52\xd7\x7f\xea\x27\x9f\xef\x31\x3a\xe1\xc2\xfe\x68\x7d\x64\x9d\x70\xe1\x6c\x20\xcd\x49\xa2\x8d\x14\xbb\x88\x0c\x94\xf7\xde\x05\x0b\x22\xfb\x03\x37\x98\x0b\x82\x1b\xe4\x30\xa3\xdd\xe3\xe8\x09\x9d\x4a\xb0\x69\x7b\xcb\xdf\xc3\xcb\x33\x6c\x42\x89\x88\xd0\x7b\x07\x99\x98\x36\xec\x27\x6c\x75\xd1\x89\x9c\xfa\x06\xc1\xcb\x75\x63\x08\x8d\x8e\x26\x76\x17\xd0\x8f\xeb\x32\x6c\x9d\x13\x39\xd1\xb6\x01\xd2\x19\xd8\x9f\xd5\x8e\xf6\xc4\x49\xd7\xaf\x5c\xfb\x2c\x0a\x04\xe0\xe2\x88\x86\xaa\x3f\xe7\x6a\x8b\x43\xb7\xc6\xe8\x2f\x71\x4a\xba\xc6\xb4\xa8\xc2\x27\x00\xda\x6e\x0f\xd1\x39\x76\x2b\x0b\xc0\xfe\xcf\xb1\x5b\xfa\x94\xbf\x15\xfb\xd0\x06\x26\x50\xc9\xf4\x45\x37\x1b\xcf\xa6\xe0\x91\xb4\x1f\x65\x70\x45\x0b\xab\x70\x9e\x28\xb0\xc5\xfb\xa8\xaa\x50\xfe\x05\x35\x01\x8f\x80\x96\x20\x63\xa3\x78\xf6\xfe\x1f\x27\xda\x30\x0b\x3b\x73\x7f\x04\xde\x2a\x83\xb7\x22\x54\xd3\xa1\x70\xa2\x12\xb2\x22\x14\x72\xc2\x08\x2a\x68\xc3\x8b\x3f\x51\x61\x8e\x08\xcb\x6f\x21\x9e\x48\x78\x0f\x05\xb6\x35\xa6\x00\xda\xd5\xf4\x94\x31\x70\x71\x38\x17\x26\xca\x22\x95\xbc\xe2\xcd\xcb\x0f\xde\xc7\xe8\x02\x5f\x6a\x3a\xfb\x92\x97\x87\xd7\x1c\xd6\xc7\x8c\x4c\xdf\xd4\x6e\x4f\xe5\xac\xb4\x3a\xbd\x5e\x67\x02\x63\xb1\x1e\x12\x72\x23\xbd\xce\x5b\xce\x30\x07\x96\x28\xf6\x89\x88\xe3\x24\xb0\x20\x1b\x37\xcd\xcd\x00\xea\x22\x91\xac\x6c\x5c\x89\x21\xdb\xc9\x3f\x23\x64\x1e\x8d\xa3\x54\xd6\x75\xbb\xd4\xa0\x71\x5b\x9b\xdb\xe4\x40\xcb\x76\x44\xe8\x9d\x48\x1a\x25\x11\x23\x1e\x08\x7a\xd2\x85\x0c\x38\x18\x75\x92\xe6\x73\x5a\x63\xed\x6b\x2f\x8a\x1e\xac\x0d\xed\x3f\x07\x67\x51\x0b\xd4\xe9\x44\x6f\xb8\xfa\x22\xe7\xc5\xba\x0b\xb0\xf5\xa8\xd1\xe2\x89\x56\x87\xfd\x5e\x48\x55\xbd\x15\x87\xd5\xb6\x5b\x7c\x38\x3b\x51\x18\x75\x98\x95\x6f\x92\xa8\x14\xc6\xe2\x6b\xe8\xb6\xb1\xa5\x0d\xd2\x60\xaa\x68\xe6\x7c\x57\xd7\x18\x30\xa8\x39\x5d\x44\xc9\xbb\xfb\xe6\xd8\x6d\xf8\xec\x55\xa6\x56\x5b\xbd\xcd\x4e\x27\x7a\x5d\x1c\x1a\x18\x5e\xcd\x2f\x74\x6e\x62\x77\xe8\x6b\x6b\xdc\xd4\x2e\xde\x3d\x06\xe7\x76\xfe\x54\x57\xb5\xe2\xf9\x91\xaf\xbf\x68\x0f\x19\xbe\xa9\x0a\x71\x8b\x77\xe6\x89\xda\xbf\xfb\x69\xe9\x80\x87\xc0\x13\x75\xed\x7e\xa2\x12\xbc\x35\x61\x3a\xcf\x5a\x07\x34\x03\x91\x1b\x7a\x0f\xce\x00\xad\x2d\xc8\xc3\xee\x90\x13\xb5\x17\x7a\xb7\x43\x9a\x4b\xc4\x5e\xa9\x26\x1c\xc6\x94\xaa\x46\xbf\x9e\x4c\x9b\x10\x75\xf6\xbe\xa9\x6b\x3e\x4f\x54\x07\x4a\x23\xe8\x00\x49\x13\xde\xad\xef\xaf\x53\x2a\x09\xde\x40\x67\x67\x0a\x6f\x9d\xc6\xc2\x5a\x96\xda\x9d\x12\x30\x07\xe8\x27\x38\xe0\x81\xd1\x82\xf8\xfa\x52\x24\x8a\xc4\xf1\x50\xc6\xf1\xb0\x09\xd5\xa1\x17\xa2\x89\xf9\xc3\xcf\x60\xfe\xd8\x4a\xff\xe0\x77\x6f\xf8\xbf\x9a\xe1\xdf\x4a\xfd\x5a\xd3\x27\x15\x48\x1a\x18\x45\xe9\x4e\xf4\x50\x36\xf7\x99\x79\xb4\x22\xc7\xd7\x39\xd1\x8c\x95\x75\x7d\x8c\xe3\xc7\x8b\xdf\x0f\x9b\xff\x9c\x4e\xc7\xfa\x9f\xcd\x66\xf9\x18\x81\x6b\x4a\xd2\x95\xb7\xa3\x65\x31\xec\xfc\xc4\x06\xbf\x74\xf8\x30\x21\x6a\x41\xc5\x8b\x2f\x84\x7c\xe6\x27\xce\xa3\x3f\xaf\xb6\x99\x7c\x86\xf8\x3e\x88\x08\xf0\xb7\x27\xd3\xcf\x86\x2c\xaf\x6b\x09\x24\x34\xfa\xdf\xff\xbf\xff\x23\x22\xf4\x6f\x7f\xfd\xeb\x5f\x19\xcb\x49\x48\x3f\x6c\xc3\x76\x27\xf3\xf7\x7c\xf5\x4c\xec\x76\x59\xb9\x4e\xa2\x43\xb9\x16\x11\x39\x05\x90\x40\xce\x4c\x32\x2f\x5d\x24\x5d\x6a\x7d\xf2\xc8\x45\x75\x79\x88\x63\x19\xf6\xa7\x02\xcf\xb3\x46\xc2\x05\x19\x8d\xac\x5a\x16\x36\xb3\xe9\x4f\x5b\xd9\x0d\x58\x6d\xa5\x71\xf2\xa8\x08\xb5\xed\x8d\xcd\xbb\xa1\xf0\xdb\x61\x1e\x7d\x8a\x7f\xf3\x08\xed\xa2\x5c\x9f\xf4\x2d\xa1\x6f\x07\x0b\x54\x04\x8f\x88\xab\xf1\x6c\x6e\x56\x9e\x15\x8d\xfb\x2a\x0d\x7f\x96\x61\x13\x71\x9c\x14\x67\x99\xb5\x4e\x0e\xe3\x9e\xad\x0c\x33\x51\x4a\xca\xff\x27\x6c\xa6\xc1\xa5\xa2\x18\x80\x5b\x9f\x56\xbe\xee\x10\xb6\xe0\x64\x9b\xfd\x89\x07\xdf\xde\x3f\xcd\x93\x4f\x4e\x54\x94\xdf\xf2\xbb\xd7\x92\x57\x0d\x22\xf9\xc1\x5b\xcb\x84\x86\x75\x4f\x0f\x5d\x51\xb0\x35\x1f\x78\x62\xe3\xfb\x5a\x06\xc6\xbb\xca\xd3\x8b\x03\xcb\x24\xbc\x7d\x68\xc1\xca\xbe\x70\xe8\xf9\x26\x39\xc4\xf1\x70\x45\xee\x65\x70\x4b\x85\xaf\xcb\x57\x61\x3f\xe2\x78\x3c\x63\xba\x31\x03\xb7\xa4\xc9\x4e\x96\x97\x15\xa0\xc1\x7f\xa9\x12\x49\x7f\xe2\x24\x81\x7c\xfa\x3d\x4f\x0e\x44\x3f\x46\x07\x68\xf4\x62\x5f\x81\xab\xaa\xd2\xcb\x08\x66\x7f\xcd\xbb\xc6\xe4\x0c\xce\xa4\xb3\x1e\x3b\xdd\xc8\xc0\xc3\x7d\x90\x6f\x0e\x2d\xca\x1f\xa8\xcf\xa3\xff\x4c\x43\x4b\x5e\xfc\x65\x6c\x80\x13\x0b\xad\xfb\xeb\x78\x0b\xcc\xf2\x53\x63\xf7\x1b\x84\x49\xc0\x02\xbf\x8c\xb7\xc8\x02\xdb\x12\x7f\x8e\xe1\xdc\xa4\x8f\x66\xd3\xe9\xf4\xe2\x91\x0f\x41\x01\x9f\x89\x79\x24\x6f\xae\xb3\xe4\xc9\xd3\xa7\xf4\x91\xff\xdf\x64\xfa\x94\x44\x69\xa4\x64\x56\x56\x28\xb3\x8b\xc8\x28\x6a\x41\x1e\x5d\x3c\x42\x48\xa1\xb1\xe9\xff\xb4\x93\xdf\x05\x3f\x12\xfb\x6c\x95\xab\xbb\x54\xb7\x70\xf1\x68\x93\x17\x8a\xcb\xf4\x51\x56\xec\xb7\x59\x62\xf2\xd8\x53\x72\xa1\x9f\xba\x28\x33\xf4\x42\x69\x51\x14\xbf\x22\xdf\xda\xc4\x8a\xac\xe2\xb8\x51\xe8\xad\x40\x60\xce\x35\x58\x67\x34\x48\x73\xaf\x14\xa7\xae\x13\x2b\xaa\x68\x48\x30\x1e\x45\xf8\x82\x6b\xdf\x72\xfa\x6a\x2d\xbb\xa4\xdc\x6f\x51\x84\x3b\x7d\x9b\xef\xb8\x38\xa8\xa4\x9c\xac\xb9\x42\xa7\x08\x6c\xf3\x73\x7d\xf6\xdc\xe9\x3c\x26\x84\xde\x92\xfb\x7f\xe5\x36\x8c\xdf\x2e\xc4\x23\xfd\x24\x4f\x70\x6c\x34\xda\x89\x43\xc5\x0f\xfb\x88\xee\x08\xad\xb8\xb2\xd5\xdf\xd1\x27\x53\x72\x1a\xfc\xd4\x5b\xd0\x80\x41\x86\xa5\x9f\x86\xe0\x0a\xc7\x24\x10\xcc\xe7\xfe\x11\x83\x0a\x12\xf7\x66\xef\x99\x34\x2a\xf0\x46\x1a\x25\x7c\x6e\x66\x2f\x8d\x22\x32\xb0\x33\x19\xfd\xef\xff\xff\xff\xe9\x45\x40\x82\x86\x33\xcb\xc1\x8a\x52\x7f\x4d\xdb\x6d\xb2\x59\x98\xf4\xa2\x5c\x33\xe1\x6f\xa8\x07\xa6\x3c\x54\x86\x26\xc6\xa4\xaf\x6f\xe5\x34\xa3\xd4\x7f\xd0\xf7\xb4\x7d\x54\x37\xd4\x8a\xb6\x4b\x8f\x4e\x5b\x4d\x42\x94\xdb\xa4\x8f\xc0\xb1\xc2\xbe\x01\xbb\x33\x0a\x76\xd3\x58\x2d\x81\xb5\x1f\x18\xb4\x59\x5a\x85\xcb\xde\x37\x56\x3f\x58\xd0\x6d\xb5\xeb\x8e\xe3\xe6\xc4\x5d\x4d\xe3\x18\xe6\x98\x85\xbb\x7a\x0e\x04\xf3\x60\x5d\x93\xf4\x56\x4c\x24\x49\xf9\x68\x74\x39\x9b\xce\xfb\xb6\x2a\x0b\x76\x4f\x45\x9f\x4e\xa7\x24\x6d\x9d\xaa\xd3\xe0\xc3\xdf\x3d\x99\x4e\xc9\xe9\xa4\x59\x7a\xe4\xf6\x8c\xf3\x6c\xe3\x8e\xe1\x75\x1d\xb2\x33\x80\x27\xec\xc3\x18\xa4\x37\x82\x96\x9c\xaf\x2b\x03\xfe\xe2\x10\xcf\x52\xfd\x2a\x0a\x85\xc4\x84\x3e\xfb\x37\x45\xc6\x46\x5e\x3c\x59\xe7\x47\x13\x32\xe9\x79\x7e\xf4\x02\xe1\xfc\xff\x7b\x81\x70\x4b\xf4\x29\x6d\xe4\x2e\xff\xfa\x8d\xac\xfb\x88\x2e\xf9\xef\xca\x77\xd5\x43\xf2\x5d\xd5\x27\xdf\x05\xdf\xf1\x3d\x97\x19\x34\x1e\xbe\x3c\x5b\x72\x5f\xe7\xec\x3e\xd5\xf7\x2c\xfd\x60\xcf\x4f\xa0\x24\xea\x60\x86\x0e\xd7\xa4\x07\x04\xb4\x8d\x24\x0a\x84\x14\xb0\x44\xbb\x79\x55\x0f\xca\x28\xed\x0a\xc8\x03\xe3\xfd\xd2\x6a\x01\x1a\x72\x7f\xd9\xb0\xe8\x40\x0b\xb7\x96\x98\xb9\xaf\x48\x28\x70\x3e\x2f\x9e\x37\x36\x97\xce\xa7\x29\x5b\xa9\xfc\xc8\x5f\x20\x88\xf8\x00\xe4\xe0\x21\x31\x6f\xcc\x7b\xb7\xcd\x66\xa0\x17\x2a\xdc\x33\x1d\xa8\xfa\xe9\xf4\x82\xeb\xe4\x9f\xf2\xa4\xfc\x28\x99\xf4\xc9\x96\x7d\x40\x70\xcb\x03\x6b\xd3\x4c\x65\x03\x43\x59\xbd\x20\x96\x17\xa9\xbf\xf8\x74\x91\xb4\xa4\x50\xc9\x73\xf8\xfb\xe4\x71\x31\x3c\x0b\xe7\x85\x48\x02\x25\xc2\xdf\xe5\x25\x4f\x1a\x48\xa0\x96\xd7\x2f\x69\x20\x05\x74\x88\xa0\x63\xf7\x5c\x21\x03\x01\x71\xa2\xc5\x25\x73\xb9\x68\x60\xef\xf9\x75\x5e\xb0\xef\x01\x52\x2a\x04\x0f\x15\x00\xc1\xd5\x48\x19\xf9\x5a\xad\x40\xb8\x39\x39\x36\x74\x6e\x38\x3b\x61\x4b\x7a\xf8\x66\xa2\xfa\x3e\x6f\xca\x93\xb9\x0f\x00\xe8\x6a\x18\x48\xc0\x20\x80\x7a\x98\x9c\xb8\x79\xac\xeb\xc7\xbf\x1f\x9e\x4c\xa7\xd7\xe6\x11\x8a\x45\x50\xb2\x1f\x34\x7a\x7e\x2f\x61\xa8\x99\x75\x5d\x2b\x84\x2e\x7f\xe6\x7b\x95\xc8\xa6\xa0\x9a\xc9\xe6\xfc\x19\xc9\xb5\xde\x62\x7e\xc7\x28\x71\x58\x6d\xbb\x42\x7e\x13\xf4\x3d\xa8\xfd\x45\xb9\x4e\xfc\x67\x5d\xd5\x8b\x0a\xe5\x01\x43\xd9\x10\x08\xc4\x31\x4a\x30\x0c\xc5\xd7\x9c\xda\xb7\x2a\x01\x6a\x1d\xd4\xf0\x8d\x4a\x00\x44\xdf\x4f\xf8\xfe\x2e\xa2\xb9\xfb\xa9\x1b\xcc\x3f\x4a\xee\xee\x85\x41\x74\xe8\xbc\xc4\x1f\x19\x59\x86\x13\xac\x35\xe4\x1b\x94\x9f\x17\x2c\x83\xbf\x86\x79\xc1\x05\x28\x48\x01\x26\x61\x1c\x27\x89\xa9\xaa\xae\x1d\x72\xbd\xae\xef\x35\x9e\x90\x40\x18\x4a\x5d\xde\xcb\x43\xa1\xf2\x7d\xc1\x03\xa2\xcc\x09\xc1\x7e\xb4\xbf\xeb\x0e\xd2\x1b\xce\x36\x2a\xf7\xe2\xef\xce\x19\x2d\xd9\x4b\xee\x26\x86\x1b\x50\x87\xef\x31\x5a\x67\x16\x60\x7f\x6a\xca\xda\x28\xb9\xb1\x10\xa0\xf6\x6f\x53\x6e\x60\xd1\x20\x27\xd7\xd9\xba\xae\x87\x79\x5d\xe7\xf8\xe7\x14\x40\x9d\x8e\x08\xf7\xe4\x71\xd3\x6c\xc6\xce\x65\x00\x8e\x99\x35\xf7\xfa\xdc\x37\xea\x3e\xa1\x59\x33\x19\x3e\x00\xc9\x4f\x5d\x3b\x5c\x87\xbe\xa5\xa1\x07\xc6\xf1\x8a\x7b\x26\x0e\xa5\x8a\x63\x8f\xcb\xeb\x44\x33\xe8\x34\x32\x34\xf5\x14\xac\x5a\x78\xc4\x93\xa5\x33\xd3\x58\xb1\x02\x6c\x46\xe7\xf8\xcf\x02\xff\xf1\x05\x53\x48\x18\x64\xec\xbe\x14\x6b\x9e\xae\x16\x2b\x9f\x47\xd1\xc6\x3a\x4c\x7c\xb2\x1c\x07\xbf\x3e\x5b\x9e\x2c\xde\xb2\xf9\xbe\x5a\x4c\x97\xa1\xad\xea\xe2\x89\xab\x65\x7a\x1a\x28\x79\x77\x8f\x6f\xe2\x67\xc2\x40\x5d\x52\x1b\x66\x97\x66\xfe\x0f\x9d\x11\x8a\x7d\x37\x60\x99\xef\x77\x71\x63\xf7\xcf\xf5\xbd\x6e\x2c\xc4\xda\x95\x12\xba\x71\x79\xeb\xba\xe6\x93\x6c\xbd\x46\x74\xe3\x0d\x08\x28\xcd\x65\xf6\x79\x51\x40\x6a\x05\x37\x7c\x58\x86\x1e\x30\x30\xbb\xe6\x50\xfc\x9e\x9b\x07\x85\x0e\x10\x65\x14\xcf\x85\x26\x45\x5f\x7a\xd4\x58\x30\x40\x44\x66\x72\xc7\x77\xd7\x5c\x06\x9b\x5d\xf3\xa1\xed\xf2\x67\x04\xc7\x8d\x87\x5c\x1b\x99\x96\x74\xb1\x6a\xfb\xc9\x2f\x6f\xe1\xd9\x86\xea\x22\xc3\x08\x6b\x62\x67\xf0\x99\x7a\x78\xb0\x87\xe1\x67\x4e\xe4\x04\x6f\x40\xda\x4f\x1c\x1a\x7c\xef\x5b\x91\xb4\x37\xfd\x59\x15\x57\xab\xdc\x59\x85\x97\xe6\xea\x5b\x93\xfc\x91\x64\x67\xd0\x87\x2b\xdc\xa0\x30\xfd\x20\xc3\x4d\xba\x43\x7b\x30\x87\x43\xe2\xd3\x8b\x3f\xdc\xa0\x48\xfa\xa9\x61\x3a\xf5\x75\xf9\x62\x9d\x2b\xd1\x13\x8c\xa5\x7f\x04\xe0\xe4\x1c\xd0\x8b\xa6\x70\x5a\xb1\x16\xf5\xd0\xb7\xdd\x4e\x94\x9f\x97\x2b\x5e\x29\x7c\xdf\x65\x79\xe9\x5d\x4d\x7e\x30\xf3\xbe\xce\x8f\x54\x91\x1e\x6d\xcf\xc7\xa9\x7a\x6c\x1d\x9e\x41\xec\x55\xde\xe8\x12\x56\x6f\xf3\x21\x25\xd5\x3a\x3f\x7e\x58\x3f\xf5\x90\xd2\x26\x38\x56\x78\x64\xdb\x53\x9e\x90\xb9\x93\x6f\x06\x53\x9c\x7e\xeb\xaf\xe5\x7f\xe3\x4c\x34\xc0\xa5\x3f\x5e\xd1\xf3\x48\xd9\xba\x5b\x1a\x9e\x84\xb7\x3b\x46\x9b\x7a\x24\x7e\xb6\x6e\x85\x6a\x97\x76\x37\x3f\x76\x8b\x39\x3e\xc4\x9f\x8b\x61\x1b\x7d\x5b\x27\x02\x91\x0d\xce\x45\xa7\x10\x26\xeb\x62\xee\x70\x0c\x7b\x00\xbb\x5d\x81\x4e\x35\x5f\x84\x47\xa6\x31\x1b\x2d\x85\x64\x4b\xd3\x63\x55\x3f\x01\x19\xb4\x74\xbb\x43\x07\x3f\x92\x4f\x19\x9c\xa3\xee\xc6\x8c\x53\x33\x22\x0f\x33\x2b\xa5\x2d\x73\x96\x4d\x91\x71\x5c\x82\xff\x5e\x23\xe0\xc4\x4f\x3c\x51\x56\xd8\x0c\x26\xd4\xfa\x19\x9c\x48\x64\x60\x80\xa5\x21\xd6\xc3\xb7\x7f\x6f\x82\x57\x1f\x0d\x18\xdb\xce\x46\xf0\xc3\x04\xe9\x84\x15\xb3\x83\x88\xa2\xc3\x9e\xc1\x73\x16\xbd\xda\x05\x60\x93\x58\xc1\x33\x20\xba\x48\xe7\x3a\x52\xd7\xc2\xc0\x96\x7a\x14\xef\x50\x25\x96\x1b\x27\x9e\xf0\x8b\x29\x63\x09\x67\x4a\x02\xcc\x1f\x62\xf9\x10\xb4\x95\x7f\x95\x27\x58\x50\x73\x1d\xe8\xfd\x5e\x31\x9f\x52\x42\xa0\x2a\xcd\x9e\x84\x45\x79\xa7\x28\xd7\x0c\x13\x04\x31\x0d\xa3\x9f\xa2\x3d\x3d\x34\x2b\x3c\x82\xd7\xc1\xf6\xcd\xa3\xcb\x21\xfb\xe5\x07\x44\x57\xc6\x7f\xe5\x79\x7e\x84\x1d\x8b\x4f\x7c\xe8\x48\x11\x74\xe4\x30\x9a\x99\xae\x98\x6f\x7c\x2a\x74\xa6\x0f\xd1\xd8\x22\x08\xc0\x0a\xf8\xe0\x3b\x6d\x43\x7b\x8f\xeb\x14\x45\x10\xa1\x83\x56\x26\x56\x04\xbc\xe3\xf5\x1b\x24\x03\x62\xe7\xe5\x4b\x87\x04\x0d\xb0\x67\x21\x24\xb7\x7f\x1d\xde\xb4\x23\x82\xa2\x6f\xe8\xc0\x09\x6e\xad\xbf\x52\x14\xe1\xe3\xcd\xc6\x94\xb7\x30\xc9\x46\x42\x93\xd8\x37\xe4\x0d\x8d\x22\x42\xe8\x51\xe4\xeb\x44\x8c\x98\xf1\xaf\x2f\xe8\xaa\xaf\x31\x84\x39\xc3\xe6\x56\xc4\xf0\x90\x10\x3a\x6b\xfd\x32\x93\x7f\x00\x3e\x7c\x49\xa7\xf8\x9a\x06\xe8\x26\x9a\xac\xd9\x68\xd5\x13\x5f\xe8\x11\x9f\xe4\x6b\xc6\xd6\x27\xe2\x88\x1a\xf4\x61\xe3\x9f\x43\x05\xdb\xe8\xed\x03\x78\x5d\x80\xf1\x25\x46\xec\xd6\xe2\xf6\x17\x88\xed\x51\x4c\x94\x20\x28\x63\xa9\xf4\x4b\x3d\xdf\x24\x26\x20\x05\xeb\x0e\x00\xa7\xc0\x0a\x11\x23\xab\xbc\x1d\x34\xbd\x17\x7a\x90\xce\xc1\xa2\xf7\x90\x84\x39\x60\xe8\xfb\xf8\xbf\x93\xbd\xe4\xf5\x3a\x3f\xd6\x7b\xf2\xc9\xe3\x1c\x1f\xe4\xb8\x6e\xdf\x67\x3b\x8e\x40\x15\xfa\x94\x5b\xc7\x81\xcf\xba\xcb\xba\x35\x29\x3f\x59\xc5\xf5\x70\x6b\x3b\x96\xe1\xa0\x2b\xd8\x3b\x84\x8a\x11\x33\x40\xdb\xa0\xc2\xbd\xd0\x7b\x85\xaa\x21\x93\x17\x04\xc2\xf5\x06\xa7\xc6\x7a\xdc\x9e\x12\x45\x2b\xba\xa2\x19\x2d\x08\xa1\x7b\x3d\x7f\x48\xb0\xf6\x3c\xc9\xcc\x4a\x15\xf4\x9d\x4d\x2d\x9a\x78\xc2\xe4\x62\xe3\xd4\xae\x71\xbc\x77\x7f\x5f\x90\x7c\x93\x6c\x45\xb2\x21\x8c\x6d\x45\xb2\x27\x64\x33\xd9\x8b\x7d\x42\xe8\xde\xfc\x5b\x8c\xc7\x4e\x4c\xa9\x57\x71\xc8\xf6\x8b\xe9\xd2\x38\x23\x6c\x10\xfd\x17\x8a\xdb\xbf\xb2\xd1\xc8\xe9\xa5\xb7\x6c\x4a\xd7\x6c\x4a\x77\xb0\x01\xe8\x11\xbe\xa5\x77\x5e\x53\xbd\xb3\x7a\x80\xa3\xd3\x54\x6f\x2f\xef\xe2\x78\x17\x2a\xa6\xb7\x84\xb1\x63\x33\xe1\x82\x8c\x46\x5b\xb7\xdc\x37\x0c\x86\x40\xaf\x71\x0c\xf4\x9d\x6f\xc0\xd9\x75\xeb\x73\xb8\x71\xee\x1a\xe9\x94\xd0\xeb\x30\x6b\x1f\x66\x91\x8b\xf5\xe5\xbb\x38\xbe\x09\xdb\x74\x15\xad\xc7\x33\xc2\xd8\x75\x98\x77\x1d\xe6\xe9\xae\xad\x07\x9b\xc5\x26\x00\x55\xbd\x71\x80\x88\xbe\x1a\x42\xf5\x9c\xe0\xc9\xc0\xdc\x2d\x1e\xd9\x5b\x06\x4b\xba\x25\xf4\x3d\x83\x45\xf5\x7d\xd3\xa3\x73\x15\xa4\x1e\x17\xce\x2f\x6e\x5d\xeb\x0a\xeb\x7a\xcb\x93\x5b\xfa\x9e\xcc\x93\xaf\xa4\xd9\x11\x1b\x7a\x4b\xdf\x53\x17\x94\x8a\x0e\xa7\xc4\xba\xfe\x3d\xac\xb9\xee\x17\xfe\xb4\x8d\xd6\x1e\x2e\xdc\x93\xdc\xf9\xb4\xc3\x58\x78\x11\x9c\x11\x74\x59\xad\x77\x47\xd8\xd5\x2c\x4e\x68\xff\xe7\x60\x3d\xd3\xe4\x90\x69\x9b\xa7\x26\x27\xda\xae\xbd\x1b\xf7\x73\xb5\x6b\x48\xb4\xe6\x5f\x7a\x5e\xf6\x1b\x45\xec\xdf\x24\x45\xf9\x1d\x00\x79\x64\x2a\x1b\x32\xee\x65\x7f\xa0\xe4\xb6\x1f\x5d\x73\x12\x08\x58\x74\x59\x3a\xc5\xc7\x58\x47\x5f\xd2\x50\xad\x4c\x0c\x21\x7c\x61\x72\x99\xa1\x98\xfd\xc6\x03\xf0\x45\x37\x42\x57\xcf\x80\xea\xfa\x4c\xe7\xde\x28\xa9\xe7\x53\x13\xec\x67\x66\xfb\x27\xf6\x35\x6f\xcf\xc3\x1c\x2c\x7a\xf4\x5f\xa9\x4f\x24\x74\x4a\x1e\xd6\x13\xb9\x85\x68\x8f\x09\xdb\x6c\x58\xc3\xf1\x8e\x55\xc3\x8d\x68\x99\xa8\x9d\xd7\x2b\x4d\x4f\x0d\x4d\x12\xa1\xaf\x50\xf1\xf5\x06\x11\x3b\xee\xad\xc9\x43\xfa\x8a\xd3\xd6\x45\x93\x3e\xe3\x27\xfa\x36\x54\x43\xdd\x1b\x8e\xed\xdc\xfb\xca\xc0\xf6\x35\x63\x15\x2c\x4f\x14\x01\x6b\xdb\x26\x9f\x9c\x01\x87\xe8\xb1\x1d\x40\xc7\xe2\xbe\x1b\xb2\x66\x3d\x9a\xa5\x6f\x80\x0a\x9a\x02\x8d\x34\xcf\x0d\x36\x21\x2a\xba\x25\x01\xac\xc2\xf2\x27\x61\xe7\x97\xe0\x85\xeb\x7e\xe9\x5e\xa1\xe4\x4e\x5a\xf4\xd8\xd2\xe2\x18\x5b\x99\x9e\x44\x6b\xe4\xd2\xa0\x19\x3b\x43\x47\xff\xa2\x5c\x73\xbe\x7f\x26\xf6\x8d\x99\xf3\x71\x3a\x17\x4b\xfa\x60\x37\xf9\x42\x39\x4c\xd9\xb5\x91\x08\xba\x0e\x3a\x50\xe5\x6e\x0e\x76\x67\xd0\x89\x66\xd0\x98\x57\x7d\xe8\xda\x5a\xc0\xfe\x6e\xba\x70\xa2\xcd\x1e\x72\x83\xed\x18\x36\xce\x97\x16\x6a\xd1\x2f\xaf\xb7\xff\xb4\xe6\x2f\x2d\x41\x33\x78\xe7\x32\x4e\xda\x08\xd3\xdd\x26\xa5\x5d\xbb\x92\x35\x21\xa7\x4d\x84\x09\x45\xcb\x20\xb8\x44\x1c\x6f\xd1\x84\x0b\x04\xa8\x97\x6c\x4a\x1c\xf2\x3f\xfe\x31\x9e\x9d\x4e\xf4\x87\xc6\x4e\xc7\x00\x89\x9d\x6d\x7e\x34\x73\x6c\x76\x82\x8b\xb2\x41\x4e\x54\x89\x9e\xf2\xbb\xf3\xe5\x61\x7e\xce\x9d\xa4\x20\x92\x5e\xf0\xbd\x41\x90\xf5\x25\x56\xdb\x66\xfe\x6a\x7b\xc2\xd8\xad\x37\x8a\x5e\x2b\xe3\xb1\xe5\x22\xdf\x82\xdb\x92\x0b\x46\x3d\x0d\x82\xa9\xbe\x53\xbd\x48\x2a\x34\x33\xce\xc2\xdc\x07\xdc\xb3\xf1\x65\x0e\x8c\xa3\xaf\x30\x47\x5f\xe1\x7c\x93\xa8\xcb\xc3\x3c\xc9\xd9\x94\x0a\x36\x73\xf1\xa7\x48\xaa\x2e\x8b\xb9\x60\x49\xce\xd4\xf8\x40\x46\xb3\x34\xa9\x34\x01\xb5\x32\x60\x80\xc2\x2b\xe2\x58\x57\xf3\xd9\xf2\x4a\x21\xe2\x49\x22\x58\x31\x3e\xe8\x97\x8d\xba\xd2\xb9\x49\xe6\xdc\x03\x9d\x61\x02\x9a\x7d\x40\xfb\x4f\x96\xf4\x00\xb5\x48\xc6\xc0\xb6\xa6\xe2\x12\xd0\x11\xe7\xd8\x89\xd4\x7e\x0c\x35\x49\x42\xad\x5b\x1a\xc2\xcf\xe5\x04\xfd\x77\xa1\x17\xe3\x27\x4b\xa6\x2b\x1d\x7f\xb6\xc4\xdf\xb3\x65\x50\xe1\x05\xd1\x2d\x3e\x19\x25\xd5\x98\x7d\x46\x96\x3e\xcc\x96\xe6\xe0\xad\x67\x9c\x8c\xe3\x9c\xc1\x00\xb0\xde\x4b\x3f\x5c\x3b\x50\x68\x62\xf4\x97\x65\x1c\x0f\xf5\x1f\x4f\xbb\x6d\x24\x30\xd7\x7a\x68\x6e\xec\x36\x46\xa1\xf1\xc9\x04\x91\xb9\xd1\x54\xa6\x39\xa0\xc4\x09\x6a\xe5\xd5\x69\x46\xbd\x9f\x70\x7a\xa0\xd6\x7f\x38\x0d\xed\x4c\x6e\x3d\xde\x89\x91\xba\x83\x90\xa8\x81\x0a\xc1\xee\x4f\x94\x77\x9c\xd1\x0d\x7a\x0d\x44\x6e\x22\x4d\x5a\xdb\x44\xa7\x00\xfa\xd5\xc6\x99\x50\x4b\x76\x1f\x06\x32\x54\x4d\x0c\xdc\x16\xf4\x01\x36\xf6\xfa\x0c\x70\x01\x19\xb4\x9b\xef\x8b\x9c\xa5\xbb\x71\xab\x92\x36\xbe\xc4\x32\x30\x24\x7a\x01\xbd\x80\xbe\x04\x88\x5b\x88\x88\xa2\xef\xff\x9f\x4d\x9c\xfa\x66\xce\x5b\xfe\xde\xf8\x82\x74\xb2\x3c\x8c\x4a\x13\xea\x27\xf4\x69\x6d\xc4\x0f\xde\x65\xef\xf5\x83\x3c\x10\xb3\xd0\xe6\x90\xbf\x3f\x00\x27\x52\xb5\x22\x04\xbe\x52\x9e\x7c\x18\x99\xd3\x3e\xbb\xe1\xbf\x58\x61\x59\xe2\x74\xf7\xf6\x0f\xa3\xbd\xaf\x6b\x97\x73\x2d\xd6\x77\x24\x88\x2c\x1f\xc4\x1f\xec\xaf\xfd\xd7\xff\x69\xed\x0d\xd4\x9e\x67\xaa\x01\xb6\xa9\x26\xb7\xf9\xfa\x86\x2b\x8f\x6e\x8e\x31\x48\x5c\xba\x47\xe6\xca\x49\x58\x7e\x91\x2f\x27\xd9\xb5\x38\x72\x2b\xb9\xf8\xb9\x6c\x64\x92\x01\x22\xc0\x32\x41\x2d\x1a\xc1\x88\x09\x78\x77\xeb\x89\x8d\x82\x98\x69\x72\x80\x60\x1d\x51\x21\x56\x59\x11\xd9\x90\xcb\xcf\xf2\x04\xd5\x7e\x26\x9d\xb1\x72\x9e\x8d\x58\x15\x3a\xf4\xa6\xd9\xb8\x05\x78\x62\xc4\xfb\x91\x9e\xb1\x08\xcc\xb2\x23\x9c\x43\x68\xd1\xe8\xf0\x78\x8f\x9d\xc4\x39\x7b\x4c\xdd\x24\x8c\x24\x09\x2a\x9a\x4f\x53\xbd\x4a\x64\x60\x71\x8e\xc1\x8f\xa8\x55\xe2\x15\x94\x30\x30\xb9\xec\x40\x25\x3a\xb3\x8e\xd8\xc1\x7a\x18\x99\x29\xca\x82\x29\xca\x68\x10\x1e\xe7\xf3\x10\x30\x07\x7c\xaf\x98\x13\xdc\x18\xe7\xf3\x92\x19\x97\x5e\xb0\xa7\x45\x4b\x59\x3b\x78\x49\xca\x31\xd3\xbd\xa0\xf9\x98\xbd\x09\x71\x09\xdc\x94\xca\xba\x1e\xca\x6e\x88\x3b\x04\xbd\x3d\xeb\xb6\x35\x62\xc2\x34\x3a\x42\xf0\x4e\x13\x1f\xee\xdf\x99\xd7\xd0\xcf\xbd\x1c\x67\xde\x2f\x39\x1f\x83\x6b\x57\x40\xae\xfe\x68\x40\x95\x58\xee\x0a\xf6\x4c\x3b\x3e\x23\xa1\xb0\xc1\x4b\xba\xc6\x7f\x20\xb4\x62\xde\x8c\x7d\xf3\x32\xa8\x8e\x0a\x72\xef\xc1\xd2\x12\x45\x9d\x9e\x17\xf0\x51\x72\xaa\x68\xd6\x0a\xdf\x48\x85\x07\x4c\x9f\xe3\xca\x33\xe3\xa7\x6c\xfd\x95\xcd\x86\xb0\x7d\xa9\x1a\xcd\x57\x21\x18\xcd\x01\xf9\x5f\x89\x18\xb3\xff\xeb\x89\x13\xdc\x33\xf6\x8d\x48\x24\x89\x63\x15\xc7\x26\xf7\xf2\xb0\x50\xfa\x72\x44\x38\xda\x84\xb3\xdf\x44\xa2\x6b\x18\x8f\xd5\x92\x8c\x13\x57\xc7\x7c\x9a\xce\x08\x2d\x35\x39\x4b\x39\x83\x52\xba\x9e\xcb\x43\xe0\x84\x1e\x54\x39\xb2\x55\xea\xab\x08\x5a\x65\x87\xc5\x68\xa4\xeb\x74\x55\xea\xda\x74\x9d\x71\x0c\xc2\x5e\x25\xe2\x98\x5f\x49\x60\xf9\xe6\x59\xc2\xc7\x33\x92\x66\xe0\x40\x7a\x2a\x99\x01\x72\x6f\x46\xcd\x84\xf8\x0d\x00\xfd\x53\xba\x53\x83\x71\x33\x0b\x40\x8c\x07\x79\xd6\xc1\x6e\xed\x2c\x31\x81\xd7\x57\xac\x4a\x0a\x2a\x32\x8c\xec\x10\xc6\xc1\x1a\xb2\x7f\x88\x38\x4e\x56\x08\x1c\x0d\xc5\xfe\x21\x08\xa1\xab\x20\xee\x62\x03\x69\x68\x3a\x50\x10\x8b\x0a\xfb\x15\x3a\xb5\xb7\xae\x07\xc9\x1a\x98\x01\x9f\x42\xf8\x84\xf3\xe1\x40\x9f\xe9\x51\x8c\x1a\x54\xa9\xb1\xb7\x2d\x78\x03\x82\x36\xe4\xce\x6f\x7d\x54\x9a\xbb\x3d\x0c\x45\xa7\xda\x71\x81\x6c\x60\x7f\x0b\x28\x36\x79\xff\x03\x2f\x58\x09\x28\x6e\xf9\x44\x1c\x54\x95\xaf\x11\xf0\x28\x0f\x22\xd4\xf5\x81\xfe\x41\xb4\x05\x39\xea\x25\x97\xe4\xd2\xb1\xe8\x6f\x55\x52\x5a\xc4\x7f\x3a\x9c\x52\x8b\x05\x94\xb3\x37\x79\x52\x52\x89\x0a\x03\x44\xcb\x2c\x6d\x88\xb3\x7c\x93\xe4\x57\xa2\x5b\x85\x2b\x41\x11\x2a\xaf\x19\x80\x7d\x38\xa5\x33\x32\xf0\x88\xd9\x01\xaa\x0e\x14\xcf\xc9\xc5\x85\x3d\x8d\xff\xd4\x43\xca\xe0\x3c\x4a\x42\x0f\xec\xbb\x32\xc9\xf4\xde\x39\xc4\xb1\x89\xd4\x30\xb5\x51\x31\x87\x87\xba\x1e\x26\xd5\x64\xb5\xbd\x42\xe1\xef\x64\xb5\xad\xeb\x0a\x78\x77\x97\x10\xc7\x15\x4c\x65\x10\x05\xa2\x1a\xe4\xec\x55\x9e\x64\xac\x98\x28\x61\x83\x3f\xbb\x39\xfd\xa7\xea\x0a\xeb\xf3\x31\xdc\x51\x56\x62\xff\xe4\x53\x3f\xb7\x3d\x0e\xa7\xf4\xc0\x0c\xf6\x55\x88\x1c\x5e\x36\x9c\x6e\xf7\x46\x3d\x84\x77\x24\x55\xf4\xe0\x69\x0d\x1b\x4e\xa9\xb8\xb2\x30\x14\x06\xde\x61\x5c\xa5\xe2\x12\x1c\x62\x4d\xc2\xa8\x4a\x93\x0c\xdd\xff\xc1\x9b\xf5\x84\xc7\xe8\x73\xe8\xe8\xc6\xc2\x15\xd9\x10\xf8\x8c\x67\x3a\x7d\xcb\x14\xfc\xbb\x66\x45\xb2\x27\x74\xc7\x32\x7a\x64\x45\xb2\x25\xf4\x8e\x81\xf9\x5e\x79\x75\x0c\x56\x57\xd2\x2d\xbd\xd3\x6b\x07\xdc\xf6\x05\xdc\x4e\xab\xf9\x96\xb1\x7d\x5d\x6f\x19\xab\x34\x1d\xdd\xd3\x19\x49\xb7\xe3\xfd\x25\x9b\xf9\x47\xce\x0d\x2b\x2f\xd7\x75\x5d\x8e\xd7\x97\xec\x38\x2e\xe7\xfb\x74\x4b\xaf\x59\x39\x4e\x6e\x18\xdb\xcf\xd7\xe9\x91\x5c\x00\x70\x4f\x88\xd9\x73\x83\x30\x3d\x4e\x54\x0d\xed\xdf\x50\xf8\x62\x97\xde\xd1\xeb\xcb\xf1\x6c\x3e\x9e\xa5\xd7\x57\x33\x08\x93\x09\x03\x36\x22\xda\x15\xcf\x8b\x64\xf3\xf8\x09\xa1\xb7\x6c\x3f\x7a\x67\xd4\x11\xb7\x6c\xef\xb6\xda\x7b\x36\xbd\x78\x7f\xf9\xee\x62\x34\x7a\x4f\x6e\xb1\xe7\xb7\x74\x86\x95\xbc\x60\x45\x72\x4b\x06\x2f\xae\xca\x79\xb2\x65\xb7\xf4\xc8\x5e\xd0\xe4\x8e\x65\xfa\x51\x73\x1c\xb1\x19\xff\x4c\xcf\xe8\x3b\x92\x26\x7b\x76\x4b\xd7\xec\x05\x4c\xdc\x66\xcc\xde\x85\x1b\xe7\x7b\xd5\x40\xb2\xe1\x1d\x36\xb6\x0d\x75\xe8\x73\xac\xb6\x86\xb1\x1b\x45\xee\x6f\x30\x54\xf4\x5e\xf2\xa8\xcd\x82\xff\xe5\xbf\x2e\x46\x23\x45\x6e\x54\x03\x4f\xb9\x05\x8a\xaf\xeb\xfd\x5e\xac\x79\x82\x50\x39\xad\xc2\xba\xea\x6b\x40\xff\xff\x77\x6a\x39\x35\x80\x18\x6f\x94\xd5\xa4\xde\xa8\x06\xe0\xe3\xe3\xa7\x53\x07\x18\x07\x30\xe3\xdd\xb1\xea\x47\xe2\xeb\xa0\x32\x40\x51\x0f\xa2\x38\x7f\xd7\x3f\x8d\xee\x9d\xd0\x9e\x45\x97\x61\x6c\x2a\x42\xa4\x20\xf7\x5f\x44\xa8\x74\x93\x4a\xf5\xeb\x64\xd0\x18\x90\x24\x8e\xc7\x3a\xe7\xe6\x9e\x33\x0b\xe8\x68\x21\x82\x1e\xcf\xdc\x60\xf3\xab\x27\xc1\x60\xfd\x9b\x26\x87\x1b\x71\x36\x85\x6d\xf6\x5c\xd1\xaf\x15\xfd\xc2\x84\x45\xfe\x53\xb1\xa9\xa7\x0f\x5f\x99\x87\x1a\xe8\x85\xd9\xfd\x6a\x97\x72\x40\x82\xb3\x22\x4e\x4d\x77\xf4\x7b\x13\xe7\x30\x45\x9d\x21\x5e\x2b\x34\x40\xc4\xd3\xe5\x82\xd0\x54\x08\x20\xa7\xee\xf4\x85\xa7\xb3\x10\x5d\xef\xd5\xf5\x3f\x2b\xcc\x69\x86\xa2\xfa\x0a\xc4\xdb\xb2\x37\xef\x59\x06\x32\xfd\x69\xd7\x4e\xc1\xb5\xf8\x12\xdf\x58\xd0\x55\xf7\xd8\x31\x91\x83\xed\xf3\xa4\xf9\xf3\xb5\x30\x6d\xa1\x21\x8b\xa6\x65\xeb\x74\x34\xfa\x53\x9d\xe8\x17\x6a\xfe\x85\x9a\x88\x7d\x65\xc3\xdf\xc3\xc4\x90\xd4\xa2\x00\x8a\xdb\xb2\xfa\x52\x8a\xc3\x9e\x7d\xa1\xd8\xbd\xd8\x57\xe9\xc2\x64\x2d\xe9\x9a\x17\xd9\x1d\x5f\xeb\x2e\x5f\x67\xab\x3f\xaa\x74\xb1\x0c\x8e\xe9\xdf\x1b\x08\xd6\xad\xda\x40\xd8\x02\x1e\xcf\x49\xd7\x21\x80\x4f\xda\x35\x53\xcd\x6d\xac\x05\x02\x9b\xb5\x23\xb6\x2d\xe4\x72\xb2\xca\x8a\x22\x69\x82\x2d\x5b\xa0\x49\xe1\xac\xfd\x1a\x51\x5d\x75\xfa\xa2\x5c\xa2\xce\xbd\x7f\x7d\x50\xf6\xd1\xce\xc5\x15\xba\x3c\xf7\x91\x6d\x8b\x9c\x2b\xb0\xe8\xaf\x70\x34\x0a\x46\x41\x73\x88\x9c\x76\xba\xdd\xe6\x05\x4f\xfc\x80\xc9\x89\x24\x8a\x9c\x36\x79\x99\x15\xc5\xdd\xbd\xd9\xe2\x9d\x78\x76\xc1\x90\x61\x86\x60\xac\x7a\x96\x8c\xad\x0e\x7c\x75\xd1\x98\x79\x4f\xfe\x60\x66\x68\x4f\x68\xbc\x7f\xa9\x44\xcf\x75\x47\xb8\x19\x96\x29\x99\x2e\x42\x4b\x13\xb7\x6d\xfd\xdc\x04\x3c\x29\x27\xbb\x43\xa5\xf0\xec\xc4\xf1\x27\x49\x09\xce\x1e\xa6\x94\xa1\x09\x0f\xd5\xfb\xe3\x47\xb4\xfd\xf3\x47\x94\xf9\xc9\x94\xc1\x79\x0c\xa2\x77\x36\x37\x6b\xc3\xe2\xe3\xa2\x7f\x8b\x1a\x80\x8a\xa1\x0a\xdc\x92\x9e\x15\xf9\x7e\xcf\xd7\x71\xac\xbc\x47\x12\x92\x6d\x20\x53\x60\x91\xd2\x44\x9a\x65\xfd\x25\xc7\xaa\x17\x62\x96\x2a\x43\x8b\xbe\xd0\xa4\x48\x36\xc3\xc0\x00\x5e\xac\x01\xb2\x30\xef\x4d\xcc\xdf\x65\xf2\x26\x2f\xff\x8e\x08\x52\xe3\x76\x0f\xfa\xbe\x40\x8f\x42\xc0\xde\xc5\x5e\x36\xeb\x6e\x8f\x17\xcd\x69\x34\xbf\xc3\x27\x0d\x1a\x15\xc7\xdf\x63\xaa\x5f\x7d\xc6\x27\x01\xbd\x45\x2b\x27\x47\x56\x11\xee\x0e\x14\x6f\x96\x92\x81\xdf\xb9\xa7\x63\x40\xfd\x83\xdf\xc8\x7e\x76\x8c\x6c\x9a\x65\x0c\xf7\x79\xe5\x6c\x54\x48\x5d\xcb\x96\xac\x4a\xaf\x59\x2f\x0a\xa6\x1d\x12\xe3\x8d\x3d\x5c\xf2\xdb\x47\x5f\x82\xe5\x52\x98\x7a\xaf\x9f\x24\x41\xef\x8d\xa6\x36\x6d\xf4\xe7\x44\x1b\x83\x0e\xc3\xbd\x3e\xb0\x0d\x07\xbc\x75\xa8\xe2\xf8\x1b\x9c\xdc\xeb\x4c\x5a\x39\xe3\x73\x9d\xd2\x1d\xda\xb0\x7f\x6c\x30\x99\xd9\xfa\x9f\x87\x0a\x97\xf9\xad\x60\x6b\x95\x28\x5f\x81\xff\xab\x61\x9d\x80\x7c\xf1\x67\x54\x35\xc5\x1b\x56\xbc\xd8\xa8\xb1\xd1\x3f\x33\x0b\x58\xd0\xb9\x94\xc8\xfe\xbd\x2e\x3b\x91\x82\x46\xad\xba\x47\x2b\x95\x28\x32\x52\x1d\xc4\x65\xd8\x72\xd9\xfb\x37\xee\x7a\x0c\x51\x6c\x3e\x5c\xef\x78\xa3\xeb\x25\x84\x26\xed\x39\x87\x9d\xd5\xba\x99\x09\x9a\x25\xa2\x63\xc3\xda\xbb\x77\xcb\x73\xb1\xce\x8c\x81\x5b\x18\xee\xe1\xe7\xd6\xc2\x0f\xec\x39\x68\xf4\x0b\xe8\x47\x53\xa2\x64\x4e\x78\x5e\xf6\x4e\x3e\x9e\xd8\xd6\x5c\x5c\x1a\xeb\x29\x97\x10\xc7\x6b\x99\x84\x31\xbc\xbb\xc0\xd4\xbe\x70\xbb\x36\x30\x4c\x08\x76\x42\x5b\x02\x3c\x0b\xc2\x78\xeb\x51\xc7\xb1\x75\xe5\x60\xff\x14\xe0\x4e\x3f\x74\x0c\xf1\x36\xab\xbe\x40\x37\x8c\x4e\x52\x42\xc8\xa0\x67\x92\xf5\xa9\x7d\x38\xee\x5c\xe7\x13\xfd\xdc\xed\x5f\x57\xcf\xf7\x0d\x8d\x85\x19\x52\x56\x12\xc7\x5f\xc1\x49\xf7\x1b\xd9\x53\x3a\x7f\x1a\x7f\xe9\x29\xd3\xde\x2b\x71\x5c\x2a\xb0\x1d\xea\x42\x97\x04\xec\x64\x77\x54\xe8\x8d\x09\x4e\x82\x60\x30\x21\xe3\xf8\x8e\xb7\xe3\xab\xfe\xf4\x00\xf5\xb0\x66\x8b\xa8\xa2\x6e\x77\xfd\x57\xe8\xba\xb9\x8d\x4d\xac\x21\x39\xb9\xdd\x72\x5e\x80\xf6\xe5\x17\x8b\x43\x1a\x90\x36\xef\x17\x10\xee\xa4\x61\x83\xd2\x81\x6b\x54\x50\x4d\xa3\xd2\x5f\x0d\x00\x42\xa7\x66\x4d\x9c\x7b\x1c\x7a\x9b\x8d\x0f\x0d\x0d\x7d\x63\xa2\xce\x3a\x27\xe0\x73\xf0\x57\x9d\x3a\x0d\xfe\x55\x87\xfa\x60\x3a\x0d\x5a\x23\xe0\xb3\xfe\x01\xe7\x63\x5d\x8e\xf6\x76\xbc\x51\xa2\x3b\x69\x3d\xc3\x05\x92\xd5\x9d\xd9\xfe\x01\x9f\x45\xe9\xea\x54\x8b\xac\xc5\x19\x72\x1b\xb6\x76\x76\xc0\x3a\xb3\xd1\x70\xcf\x90\xbf\xc3\x88\x76\x01\xc9\xf8\x11\xa0\xc1\x1b\x3b\xc3\xf2\xe1\x5d\x84\x64\x17\xe9\x2a\x29\x43\x11\x16\x6a\x51\x9e\x42\xdc\x76\x23\x2d\x1a\xce\x68\x66\x02\x14\x82\x31\x6b\x1c\xcb\x21\x53\x73\x04\x5b\x23\x69\x46\x0f\xec\xef\x32\xe1\x61\x0c\x32\x10\x22\xa3\x2c\xb9\x15\x9b\x6c\x4f\x41\x29\x41\xc6\x81\xaf\x63\x6f\x79\x48\x37\xa1\x97\x2c\x3e\x26\x19\x81\xdc\x95\x07\x84\x55\x5f\xfe\xab\x46\x8a\x9e\x0a\x6f\x2e\x7a\x08\x37\x73\xb2\xd5\xfd\x3c\x84\xfb\xc4\xc1\xe5\xb6\x2a\x1d\x17\xe4\x6a\x06\xa1\xbc\x20\xfc\x72\xb3\x32\xdc\x29\xc9\x3a\xac\xed\x3b\xdf\xf7\x76\x75\x3a\x6b\xbc\x6a\xd4\x37\x14\x68\x2a\x68\x15\x2a\xd9\x29\x51\xf4\xb9\x89\x7e\xdf\x62\xbb\x48\x5f\x86\x12\xad\x95\x36\xec\xa7\x26\xdf\x61\x6a\x5e\x21\x6c\x0b\xf0\xca\x4d\x5a\xd8\xc1\x44\xfe\x0d\xe2\x39\xe3\xd7\xf8\xd5\xd7\xa5\x12\x3f\xe5\xfc\xd6\x9b\x92\x1e\x9b\xf8\xfa\xa0\x02\x78\x50\xe9\x42\x73\x7c\x3c\x81\x92\x67\x04\x01\x22\x2f\xa7\xf3\x9c\x0d\xa7\x0e\xf9\x17\x53\xaf\x0c\xa6\x03\x86\x5e\x41\xea\x10\xdc\x50\x2d\x95\x61\x83\x88\xa0\x29\xc0\x70\x16\x98\x09\xe7\x71\x3c\xdc\xda\x1d\xec\xc3\x4a\x02\x0e\x03\x3a\x6c\xf7\x61\x93\x58\x00\x12\xe8\xec\x58\x06\x92\xe6\x71\x43\x50\xde\x8d\x43\xa8\x3c\xca\xae\x1e\x27\x32\xf2\xd2\x07\x93\x68\x21\x98\x28\x17\x83\xd2\x01\xa2\x3c\xd9\xbf\xbf\x88\xf4\xf2\x75\x55\x51\xcd\x60\x63\x54\x98\x15\xb6\xab\x93\xe4\x6d\xf5\x6f\xd7\x83\x5a\x90\x93\xde\x62\x26\x4c\xb0\x00\xb8\x9f\xbb\x6b\xfe\x15\x20\x95\xbc\x04\xb3\xe7\x8a\x66\x36\xf9\xc7\x72\x1b\x66\xa0\x1b\x60\x80\xaa\x74\x51\x5d\x0a\xaf\x60\xad\x88\x58\x54\x68\x62\xee\x63\x2c\xfd\x9a\x27\x3a\x95\x46\xdb\x7c\xcd\xd1\xa2\x3a\x83\x2a\x9a\xa8\xf2\xf0\x79\xd6\xfe\x1c\x62\xb4\x03\xc4\x7c\x74\x28\x4d\x05\xd2\xc9\xa6\x43\x09\x1d\x04\x85\xf1\x77\xc0\x59\x9e\x0a\x0e\x3b\x9f\x78\x89\x11\x34\xa1\x68\x64\x22\x34\x44\x54\x35\xb2\x3d\xe7\xe1\x99\x86\xc9\x26\x2f\xf3\x6a\x9b\x84\x11\xf8\x7d\x08\x0b\x2b\xd3\xb1\x5a\xce\x84\x0c\x40\x0a\x06\xde\x88\x3e\xd1\x49\x15\x40\x70\x13\xbc\x8d\xbf\x34\x55\xb5\x43\x4c\xf6\x56\x8e\xb6\x9e\x09\xa7\x99\xbc\x81\x63\x51\xf5\xb5\xd6\x53\xaa\xdd\x7c\x10\xaa\x3d\x0c\x9a\xd2\x6c\x1d\xed\x1c\xc3\x0e\x70\x53\x35\x80\x4a\x34\xfb\x00\xa6\x7a\x61\x37\xce\x94\x0d\x7b\x02\xdf\x84\x9d\xf9\xf5\x4c\x67\x1a\xe8\x95\x18\x2e\xa1\xae\xd5\xc7\xf7\xed\xdf\xee\x58\xa3\x57\xff\x70\xfa\x29\xf4\x12\xca\x4b\xce\x94\x75\xbd\xac\x14\xeb\x08\x30\xa8\x44\x55\x83\x62\xdf\xe9\xc4\x0b\xc2\x21\x78\x5c\xb9\x4e\x66\x9a\x9f\x47\x57\xfc\x04\x31\xcf\x16\x4b\x42\x8c\x74\xd0\xe9\x4e\xe4\x09\xb8\x58\x70\x1e\xca\xff\x34\xb0\x75\xba\xa9\xf9\xab\x3c\xd9\x1a\xf7\x39\x34\xad\x19\xcb\xd1\x2c\x9d\x61\xd9\x52\xac\xb9\x07\xb6\x43\xf9\x2c\xda\x82\xc1\xa9\x66\x5f\x21\xcd\x0f\x22\x75\xf7\x99\x75\xb1\xc5\x92\x0a\xa6\x2e\xc4\xa5\xbc\x10\xd6\x06\x21\x6b\x46\x17\x71\x7a\x45\x4d\x96\xc8\xa0\x64\x62\x94\x61\x28\x3a\x13\xf6\x2c\x0b\x62\x51\xb9\xe6\xbe\x51\x6d\x3e\x04\x22\xec\x99\x6b\xdc\x04\xd7\x73\x61\x3f\x13\x19\x66\x8c\xcc\xcd\x9a\xff\xc9\x6d\xb0\x94\xa9\xd5\xf4\x35\x82\x83\x95\x71\x2c\x5d\x90\x29\x17\x7b\x3e\x37\x67\xf9\x3b\x34\x92\xb9\xe6\xb2\xaa\xeb\x9e\x44\x63\x5f\xd6\xcd\x60\xca\xc7\x6e\x09\x24\x2c\x60\x44\x6d\x43\x5c\xbd\x15\xe4\x45\x1c\x7f\x51\x3a\xa5\x6d\xd0\x0f\x2e\xf5\xfa\x5a\x7b\x06\x79\x19\x44\xc5\xd2\x1f\xfd\x69\x3f\x92\xa3\x92\x5c\xf9\xbc\x39\x7c\x97\x26\x3e\x65\xc4\x4a\x6a\xab\x1d\xb1\xd2\xd7\xa9\x2e\x1b\x91\xb6\x64\xd0\xab\x66\xe3\x8d\x82\xe4\x3e\x11\x4c\x6a\x8e\x46\xea\xb6\xe9\x8c\x90\xb9\x69\xcd\x94\x32\xe6\xf8\x02\xe1\x2a\x08\xf5\xdf\x32\x14\xfc\x7c\xdf\xe8\x4f\x0a\x8d\x39\xc7\x90\xb0\x1b\x78\x2d\x5f\xd8\x06\x15\x55\x74\x7c\xb6\xbd\x29\x6d\xb5\xf8\x56\xd8\xf6\xc2\x36\xcc\xee\x0c\x2b\xd4\xcc\x6a\x38\xa0\x41\x16\xc7\xd5\xb9\x46\x32\xd3\xc8\x64\x25\xca\x55\xa6\x12\x38\x12\x99\x19\x57\x65\xda\x73\xb9\x8d\x8f\x2b\xf3\x29\xe9\x1b\x3f\x9a\x0c\xe4\xdd\x40\x44\x07\xbd\xb3\x2f\x0f\x58\xf3\xdc\xfc\x3b\x62\x65\xaa\x6c\xe2\xe8\x00\xdb\x1c\xf6\x61\x37\xc8\x0f\x60\xb1\x06\xe1\xe1\xdd\x11\xee\xdf\x9d\x83\x63\x5f\x10\xea\x73\x51\x92\xf2\x4d\x92\x43\x84\xa4\xdc\x47\x48\x32\x7f\x8e\x72\xdb\xab\xf2\x4c\xaf\xe8\x30\x51\x97\x65\x20\x26\x54\x57\xac\x6c\x06\xc5\x14\x26\xc1\x07\x6e\x72\x9c\x1b\xba\xd6\xfb\x30\x94\xe6\x82\xae\xeb\xc4\xfd\xad\x69\xe5\xc5\x78\xc6\xd8\x51\x24\x19\x95\x24\x8e\x33\x13\x3f\xa6\x41\xae\x61\x01\xee\xbb\x71\xa5\x3a\x91\x3a\x43\xfa\xd2\x8a\xa1\xa9\x89\x60\x9f\xe5\x01\x0b\x22\x43\x99\x31\xf4\xc6\xb1\xf2\x11\xab\x6c\xac\xc5\x44\xb5\x4d\xbf\xe0\xf8\x79\x4b\x86\x96\xae\xa1\x59\x96\xa2\xbe\x45\xb6\x62\x7a\xe9\x4a\xe5\xa2\x5c\x22\x5d\x0c\xea\x0a\xc2\x91\xcb\x76\x78\x1c\xc1\x4c\xcf\x69\xd6\x6a\x05\x6e\xd6\x17\x75\x2d\xd9\x39\xd2\x6b\x2c\x45\x10\x6d\x4f\x50\xd8\x19\xa9\xf4\x31\xce\x10\x7a\xb3\x3b\x4e\xcd\x39\x42\x1c\xa1\xc3\x08\x62\x08\x41\x6d\xe0\xf0\x38\x64\x38\x85\xe5\xd5\x14\xfe\x15\x18\xc1\xda\x38\x3f\x36\x26\x91\x1d\x46\xd9\x42\xe0\xb7\x63\x45\xc5\x68\x64\x63\xc9\x1c\xc6\x6a\xa0\x46\x2c\xa7\x72\xc4\x72\x74\x22\x73\x64\x58\x12\xf0\x24\x33\x75\x27\xe5\xe5\x74\x3e\x4d\x83\x26\x1a\x6d\xc8\x11\x2b\x3f\xcd\x16\x62\x0c\xe5\x66\xe9\x94\x60\x73\x54\x9f\xed\xd3\x99\xd1\x07\x61\x80\x65\x5b\xdb\xd3\x58\x44\xc9\xa6\x66\x21\x55\x8f\xd2\x4c\x81\xc2\xcc\x5c\xd6\xfa\x76\xd2\x07\x02\x22\x8c\xb8\xb3\x30\x1a\x49\x67\x8b\x17\x04\xce\x95\x7d\xaa\x13\x05\xce\xa1\x3f\xcb\x6c\x6f\x34\xd6\xac\x1f\xa2\x5c\x3f\x11\x6d\x49\x14\x73\x76\x0a\x42\xb2\x0f\x80\x11\x68\x86\x55\x57\x31\xae\x7a\xad\x5b\x7b\xf5\x1a\x88\x12\xa1\xde\xe4\x7f\xf2\xa4\x11\x9e\xd7\x9c\x2c\x7f\x1a\x7e\xcc\x13\x45\x2e\xe4\x90\xb9\x68\x08\x17\x92\xc9\x20\xd4\x0a\x78\x18\xc8\xba\x06\x18\x4d\xeb\x88\x18\xc7\x91\x92\x07\x30\x2d\xec\x3a\x7d\xe6\x37\xa5\x90\x7c\x0c\x0e\x40\x55\x04\x3a\x0b\x5f\x1d\x88\x87\xf4\xfb\x16\xa4\x1e\x26\x5a\xa4\x73\x55\x08\xe2\x95\xb6\x4f\x57\x2b\x52\xa9\xf4\x5d\x80\x21\x74\xbb\x51\x0a\x35\x36\x8e\x35\x51\x73\x2f\x1e\x4d\x14\xfb\xca\x50\xe3\x87\xed\x13\x35\x83\x2b\x98\x72\x08\x99\xc6\xa4\x2f\x73\x49\xbf\x8e\x41\x04\x63\x70\x4f\xfc\x8b\x03\x4c\x85\xe1\xba\xa2\x05\x03\x53\x2c\x41\x33\x62\x58\xa9\x19\x63\x05\x18\x1e\xc5\x71\x72\xf0\xe6\x64\x85\x41\xb0\xd2\x7c\xa6\x75\xc1\xd3\x25\x57\xe6\xed\xbd\x82\x38\xa6\xd4\x5a\xf0\xf5\x84\x31\x1d\xdb\xbc\x41\x01\x6e\x7d\xc8\x13\xb7\xe5\x6c\x80\xe1\x99\x24\x62\x5c\x84\xcf\x70\x63\xb7\xd0\x30\x7b\x23\xe3\x95\x47\xc2\x0f\x4c\x9f\x2b\xd9\x03\x85\x17\xae\x50\xf2\x9b\x7e\x0f\x72\x58\x7f\x44\x2e\x03\xe0\x87\x38\xb6\x0a\x86\x06\x1e\x44\x42\x08\x41\x60\xbc\x6d\x0e\xd0\xf5\xf0\xef\xb7\xfc\x8e\x0a\x04\x84\x25\x28\x95\x75\xcf\xd0\xb5\xcc\x6e\x6e\xc0\x73\x6b\x38\x3b\x8b\x5c\xd5\x57\x7a\x7a\xa2\xb3\xe9\x94\x78\xb6\x6d\x58\x48\xe8\xa8\xb5\x92\xcb\xf0\xe7\xa0\xba\xcd\xf5\x82\x1a\x29\x8a\x05\x0c\xfd\x39\x4f\x74\xd1\x55\x56\xf1\x47\xb3\xd4\x0a\x81\x8c\xc0\xbc\xbc\xd1\xe7\x75\xde\x9b\xaa\xd9\xcd\x72\xde\x14\x1c\x92\x7b\x31\x0f\xfa\x7e\x2b\x92\x3b\x4e\xc1\x8b\x2d\xf5\xf1\x0c\x57\x87\x0a\x74\x0e\x03\xfb\x8e\x70\x01\x85\x07\x5f\xab\x38\xfe\x5a\x4d\x54\xbe\xe3\x57\xf9\xf8\x2f\xd3\x29\x78\x55\x6c\x79\xf2\xb5\x9a\xec\x45\x45\x25\x99\x97\x2c\x52\x32\xdf\x17\x3c\x4a\x9f\xab\x38\x7e\xde\x57\xfa\xb9\x2b\x9d\x94\x2c\x5a\x8b\xc3\x75\xc1\x23\xfa\xb5\x62\xf7\xba\x6c\x9a\xd3\xbd\xa8\x52\x79\x22\xa9\xce\xc6\xd0\x3f\x11\x7d\xde\xc9\x1e\xd8\xcd\xce\x3d\x98\x29\x3b\xce\xd5\x64\xc7\x55\xf6\x2d\xbf\x4b\xd5\x64\xa5\x64\xf1\x2d\xbf\x0b\x8c\x2e\xf5\xca\x3c\x97\x62\x1f\xc7\xff\x12\x20\x2d\x6e\x82\x78\xd9\xe6\x50\xb4\x7a\x60\x01\x84\xaf\x24\x04\xd0\xdb\x92\x2d\x4f\x20\xc7\x38\x23\x1d\x96\xc4\x62\x1a\x48\x72\x39\xd5\xfb\xcf\x58\xf8\x61\xd9\x03\xb8\x23\x51\x49\xae\x5c\xde\xe5\x94\xcc\xbb\x22\xdd\x16\xdd\xa1\x07\x3f\xf3\xb4\x60\x5f\x36\xd0\xaa\x57\xe4\xbe\xc2\xc8\x31\x7d\x1b\x14\x64\x8b\xb0\x25\x20\xd5\xec\x08\xbd\x73\x3f\xc9\x9d\x61\x55\x00\xbe\x5a\x10\x9d\x91\x07\xa1\x5a\xd6\x52\x60\xba\x93\x88\x7a\x8a\xb4\xb2\x7f\x91\x51\x27\xf7\x57\x97\xfb\x2b\xb9\x9c\x4d\xe3\x38\xf9\x33\x4f\x56\x84\x0e\xcb\x38\x76\xa3\x19\x3f\x99\x4e\x2f\x0f\x71\xfc\x15\x77\x57\x3b\xad\x00\x6a\xf4\xbf\x18\xcb\xe6\xfd\xa7\xab\xe1\x62\xe0\x8e\x47\xde\xc4\xd7\x05\x70\xa1\xb4\x95\x48\x4e\x64\x70\x7e\xb2\x20\xce\x54\xcf\x64\x15\xb4\x55\x1e\x77\x4d\x4f\x62\x42\x06\x3f\x9d\x9b\xd6\x9f\xfa\xa7\xd5\x46\xa5\x5a\x91\xf4\x3c\x26\x83\xdf\x09\x99\x31\xa5\x85\x10\x36\x36\x44\x26\x2d\x58\x66\x36\xbd\xdd\x8b\x83\x1c\x94\xd8\x96\x96\xcd\x93\x03\x16\x09\x37\x31\xad\xd8\xe1\x6a\x3c\x9b\xaf\x16\x87\x65\x6a\x7c\x0d\x25\x95\x84\xa4\x49\x65\x4a\x87\x71\x33\x7c\x0a\x3a\x11\x6a\x5a\x7b\x37\xf7\x6d\x60\x68\x4b\x7b\xde\xb2\x42\xa7\x91\x92\x45\x92\xaf\x54\x04\xf6\xd7\x15\x0b\x5b\xa1\x92\x99\xbb\x76\x08\x96\xb3\xf4\xc0\xc6\x33\xef\x1f\x60\x88\x81\xf3\x99\xb0\xf0\x0d\x3f\x0b\xb9\xfe\x5c\x25\x92\x0c\x42\x2f\x0a\xe8\x44\x5d\x67\xf0\x90\x29\xd7\xf3\x3f\x79\x92\xd1\x8a\x6e\xac\x1b\xde\x06\x7d\xf0\xd2\x8d\x7b\xc6\x5a\xe2\xe4\x1a\xd8\xdb\xde\xed\x79\x82\x7e\x77\x74\x0a\x12\xfb\x8c\xba\x14\x40\x8a\x20\x1f\xd5\xf4\xde\x36\xbd\x37\x4d\xef\x0d\xac\x31\x33\x05\x24\x19\xe4\x73\xfd\xf6\x39\xe8\xd5\xb1\x10\x69\xf4\x27\x9d\xfb\x4f\x9e\xac\xec\x0b\x75\x51\x2d\x09\x3d\x10\x7a\x8f\x9b\x27\x1d\xce\xa8\x90\xf9\x4d\x5e\xa6\xd1\xa7\xb0\xc1\xa2\x13\x21\xe9\x2a\x80\x3f\xd0\x0b\x6a\x9d\x31\x5b\x84\xac\xb1\x27\x7c\x53\xf6\xed\x7c\x70\xef\x62\x9b\x76\x18\xcd\x88\xbe\x16\x1e\x6c\xde\x6e\x40\x92\xfe\x4b\x57\x79\xa0\x15\xcd\x04\x49\x93\x03\x9b\xe2\x78\x8c\x23\xea\xa2\x5a\xea\xaa\x32\xe1\xbf\x30\xa8\xe4\x18\xcf\x76\xcd\xc4\x07\xa3\xfa\xec\x42\xeb\xc4\x63\xa2\x2c\xb5\x1c\x8d\x76\x74\x15\xec\x28\xdc\x77\x7a\x75\xd1\xe8\xd6\x39\xf5\xae\xe8\x96\xf8\xb7\xb5\xbf\xe5\x1a\xb1\xa2\x74\x69\xb8\xa1\xb6\x54\x39\x95\x49\xbe\x49\xb6\x4c\x05\x35\xdf\x7b\x65\x1b\x88\xd8\x3a\x4c\x11\x05\xb6\xe9\x5d\xae\x1f\xb7\x01\x83\x45\xe5\x64\xb5\xa5\x82\xd0\x8d\xcb\x56\x61\xb6\x32\xd9\x7b\x8f\xf3\xb0\xa2\x1b\x42\xd7\x5e\x6d\x09\xbf\x77\x8d\x90\x08\x7a\xc7\x5a\xaf\x80\xa3\xcf\xe1\xf0\x16\x00\xac\xd2\x40\x25\xd7\x2c\x4f\x2e\x76\x97\xec\x78\xb1\xb3\x4f\x97\x3b\x06\x9d\xda\x99\xfe\xdc\xb0\x95\x48\xee\xe8\x9e\x0a\x32\xd8\x33\xb6\x9e\x1b\x99\xa0\x3f\x30\x3b\x7a\x03\x08\x1d\xfa\x5f\x42\xd2\x3b\xbb\x1b\x6f\x34\x9d\x3c\x5b\x16\x6a\x5d\x53\x41\x00\x10\xc5\x69\x1c\x9a\x5f\x20\xb1\xb0\x7b\xd5\x12\xb8\x9e\x2d\x9b\xe3\x31\x69\xed\x4e\xea\xf6\xed\xc9\x2b\xda\x9c\xc2\x45\x05\x32\xa7\x6b\x56\xd1\x77\xec\xda\x9e\xdb\x5b\x06\xda\x47\x7b\x7c\x86\xac\x34\x4e\x50\x9e\x30\xa1\xfd\x76\x83\x2e\x29\xc3\xde\x61\x96\x1f\xb4\xea\x50\x14\xd5\xa0\x28\x5b\x9e\xbc\xb7\x2d\xbf\x23\x57\xd3\x79\x72\xcb\xde\xa3\x93\xf9\x3b\x76\xe4\xc9\xb5\xe5\x2c\x6c\x29\x4d\xa6\x75\x11\xfb\x0d\xdb\xe9\x42\xc0\x60\xbc\x37\x6e\xe0\x27\xdc\x9a\xed\x29\x23\x83\x7c\x71\x70\xde\xe5\xd0\x9d\x77\x84\xde\xfa\x39\xce\xf5\x3c\x66\xa0\x68\x5a\xd9\x98\x04\xff\x4a\xf4\x1b\xe2\x22\x59\x19\xcb\xb0\xcd\x44\x89\xba\xc6\x5f\x97\x1b\x54\x6f\xc6\x71\x70\x61\x7f\xd9\x8a\xa9\xb1\x63\x2c\x8f\xe3\x23\x46\x5e\x9b\x3d\x9d\x06\x13\xbf\xf7\x2f\x9a\x4b\x88\x8d\x39\x1f\x3f\x99\xa6\x2e\xed\xca\x86\xc8\x9c\x3f\x99\xa6\xd3\xc1\xfe\x23\x9a\x49\x44\x8f\xda\x68\xc4\xf6\x54\xb7\xaf\x3b\x00\xc8\xc3\x8e\x8c\xdc\xe8\x23\xcf\xfb\x78\x67\xcd\x29\xed\xd8\xec\xf1\x94\xc2\x8d\x0b\x12\xcc\x10\xc5\xbf\xcb\x45\xe9\x77\x65\x44\xaf\xfb\xb2\x34\x27\xf0\x8e\xd0\x6c\xb2\xcd\x2b\x25\xe4\x1d\x1c\xcc\x37\xbc\x78\x05\x3b\x96\xb9\x67\xdb\x75\x8b\xc5\xe3\xe4\x1e\x98\xff\xf9\x51\xb3\xf2\x37\x09\xd7\x23\x78\x87\x85\x6e\x3c\xd3\xd2\xec\xf8\x3b\xda\x65\x45\x5c\xdf\xfa\xb9\x94\x77\x8e\x1b\x29\xe9\x8a\x9c\xf4\x63\x84\x96\x24\xfd\x51\xb7\x0d\xc0\xbe\x66\x4a\xe3\xf8\x4f\xc0\xfd\x37\x01\x7b\xf5\x83\xe4\x49\x0a\xa1\xd1\x4d\x4f\xf4\xb8\x5e\xe6\xeb\x75\xc1\x9f\x8b\xdb\xd2\x33\xaf\xe0\xbf\xf5\x95\x45\x22\x2b\xcf\x03\xff\x76\x59\x39\xda\x69\xf2\xb3\xf4\x76\xfe\x12\x5f\x4c\x2d\x0c\x10\xc3\xc3\xf1\x22\xbb\xcb\xcb\x9b\xbf\x17\x07\xf9\xe2\xc8\x4b\x08\x56\x74\x0e\xea\xf2\xcc\x27\x68\x3d\x79\xae\xba\x19\xfd\x43\x22\x88\xad\x7e\xd7\x9d\x5a\x3a\xa6\x43\x20\x48\xb0\x38\xa6\xb9\x7f\xce\x53\xff\xb4\xff\xb5\xfd\x82\x1f\xce\x4e\xe0\xd0\x84\x44\x7c\x53\x08\x21\x03\x9f\xe1\x9b\x83\x52\x5c\x56\xe7\x6e\x48\x1b\xbd\xd6\xe1\x62\x94\xb0\x5e\xca\x7a\xb5\x7a\x66\x52\x73\x79\x1f\x0a\x90\x97\x6f\x12\x71\x65\xcd\x36\xea\x7a\xa8\x04\x18\x8b\x58\xb1\xc6\xdf\xa1\x62\x31\x46\x0f\xd5\x71\x16\x08\x56\x9d\x04\xf1\xc0\xa6\x17\x87\x4b\x7f\x37\xda\xfe\x3b\xbd\xf1\xc1\x22\xd2\x66\x2e\x2f\x80\xaf\x3a\x80\x48\xb9\x88\xe3\xe2\xe1\x11\x5f\xd9\x48\xea\x2b\xf6\x26\x50\x66\x6d\x58\xa7\x65\x5d\xa5\x8d\xb3\x9c\x83\x5a\x81\xd3\x15\xdd\x50\x45\x28\x8c\x27\x5c\xc5\x42\x36\x94\xb9\x66\x51\x23\xac\xe9\x59\x91\xaf\xfe\x88\x34\xf3\x8a\x4e\x4e\x32\xe4\x4d\x36\x2d\x39\x85\x1e\xc5\x5e\x6a\x22\x32\x34\x02\x8a\x38\x1e\x0a\xe9\xad\x07\x41\x12\x00\xdb\x9c\x82\x63\xa1\x0c\x0e\x8e\x31\xd7\x40\x09\x01\x70\xcb\x16\xdb\xfc\xad\xcc\xca\x6a\x03\xb1\x44\x0b\x0e\x8d\x40\xcc\xaa\xc6\x6b\x96\xa0\xe8\xa7\x74\x4a\x79\x23\x5a\xf8\x22\x2f\xb8\x2e\xa5\x8f\x74\x90\x14\x78\x62\xdb\x4f\x68\xc6\x3e\x97\x32\xbb\x03\xe4\x77\x90\x08\x07\xaf\x95\xd2\xa0\x27\xba\x79\xce\x8a\x42\xdc\xea\x07\x91\xae\xed\xed\xdd\x9e\x57\x75\x3d\x9e\x0d\xd9\x51\x24\x0f\x15\xa2\x08\xea\xef\x35\x0b\xfc\xf6\x91\xef\xe2\x40\x4c\x44\x59\x88\x6c\xad\x09\x9f\xea\x06\xe9\x14\x13\xc9\xab\x43\x01\x97\xf6\xe3\xc5\xef\xef\xa7\xd3\xf1\xef\xef\xa7\x7f\xfb\xfd\xfd\x94\x8f\x7f\x7f\x3f\xdb\x2c\xef\x9f\x9c\x2c\x10\x39\x98\xa0\xb2\x28\x22\x34\x5b\x94\x4b\xc6\xe9\x68\x54\x31\xbb\x7f\x0e\x06\x0b\x44\xb2\xe7\x96\x54\x49\x42\x95\x48\xa5\x8d\x44\xd0\x02\xd3\xcb\x10\xd6\x4d\xf5\xe1\xe5\x11\xe2\xd8\x65\xc4\xb6\x3f\x0d\xbe\xb3\x88\x55\x07\x42\x7f\x6e\xc0\x32\xbe\x96\xc9\xc1\xa0\xb8\x0b\xc0\x45\xfd\xbc\x32\x02\x9c\xd3\x89\x16\x6c\x7a\x51\x5c\xe6\x17\xa3\x51\x41\x0e\x49\xb9\x28\x96\xb4\xf0\x11\x16\x54\xcf\xcb\x15\xcc\x22\xdb\xf1\x87\x24\xb9\xf2\x52\xf8\xbe\xaf\xf4\xfe\x03\xdc\xac\x7e\x5a\xd9\xb6\xb4\x0c\x89\x34\x88\x2c\xf3\x4d\x92\xb5\xf7\xe6\x8d\x8d\x7a\xf0\x16\x40\x00\xc9\xf9\x1e\x0f\x93\xe3\x9c\x9b\xd7\x63\xca\xad\xd8\x06\xf1\x1b\x57\x10\xd0\xb3\x6a\x04\xa5\xd0\xab\xfd\x6d\x63\x12\x35\xb7\xb8\x82\x2d\x8c\x33\xb6\xf2\x84\xa6\x20\x0e\x2d\x2c\x8a\xe8\x6a\x51\x58\x28\x1d\xfc\xdb\x04\x18\x95\xd9\x0d\xc4\x77\xed\x84\x88\xc8\x68\x94\x81\xfc\x32\xb2\x81\x0a\x42\x43\xde\xe6\x74\x84\x31\x08\x03\x72\xb2\x6f\x69\xb2\x74\x63\xd6\xae\x2b\xf9\x90\xe9\x4f\xdf\x67\xa1\xc1\x90\x4f\x35\xe8\xf7\xae\xd9\xad\xa1\x62\x67\x8d\xe4\x14\xb9\x7c\x82\xc0\x14\x61\x32\x53\x54\xd6\xf5\x3f\x12\x4e\xc1\x4e\x5f\x9d\xc2\xd6\xba\x0c\xd6\x90\xa9\xc6\x28\x7a\x4c\x3b\x55\xb7\x86\xae\x85\xa8\x02\x7b\xdd\x7f\xe8\x8d\x98\x6b\x1e\x07\xa4\xa6\x7e\x30\x6b\x69\x65\x98\x89\x9c\x2b\xd6\xb1\x19\x4c\xcf\xdb\xee\xe9\x61\x12\xc0\x1c\xf2\xc6\xdb\xe7\x87\x84\xe6\x9f\x3d\xd9\x81\x0e\x05\xc6\xd3\x68\x84\x29\xfa\x63\x13\x50\xa4\xc7\xde\xf3\x03\x53\x85\xf5\x7c\x68\xae\xc0\xb8\x54\x19\x3e\x7f\x27\xd9\x94\x1e\x71\xe5\x07\x62\x7e\x94\x6c\x3c\x79\xfa\x59\x2a\xf5\x5f\xb3\xa7\x69\x81\x29\xff\x99\x6e\xe2\x38\xd1\x7f\xce\x1e\x7f\x86\xb7\xca\x9d\xec\x9a\xbb\x30\x8e\x76\xc7\xcf\x79\xa1\xb2\x5f\x20\x8c\xaf\xff\xfd\x6b\xe8\x05\x0f\x16\x1f\x9a\x3b\x52\x59\x5e\xe8\xbf\xb2\xf7\x39\xa0\xfd\x7c\xf5\xea\x87\xaf\x7f\x7b\xf5\xfd\xdb\xcf\xbf\x7b\xf7\xf9\x2f\x5f\xbf\xb1\x66\x21\x50\x2e\xb0\x09\xe9\xfb\xf4\xa7\x17\x3f\xbc\xfd\xfa\x99\xf9\x70\x2e\xdd\x67\x69\xd3\x92\xc4\xf7\x88\xd0\xfb\xf7\xa9\xa2\x77\xa9\x3c\x05\x10\x47\x37\xd2\x7b\xdf\x97\xec\x0e\xae\x5e\x7d\xa3\xbd\x07\x07\xf2\xbb\x50\x57\x8a\xe2\x2d\x2b\x9c\x2b\x9c\x7d\x28\x2c\xf1\xd5\xa1\x61\xf7\xbb\x71\xb9\xa8\x1e\x73\xd9\xde\x65\x36\x8f\xe3\x02\xa4\x98\x1b\x54\x52\xc6\xf1\x31\x8e\x2b\xc2\x53\x8f\xdf\xa9\x26\x2a\x93\x37\x5c\xd1\x2d\x43\xa6\xe9\x62\x3f\x64\x87\x8b\x3d\xdb\x87\x2a\x30\x5b\x7e\xcd\xa6\x17\xeb\xcb\xad\xa5\x64\x6b\xd4\x15\x6f\x17\x6b\x44\x7e\x65\x6c\x1f\x12\x95\xd5\x41\xea\x1a\x7e\xd6\xf3\xf3\x16\x5a\x61\x7b\xe4\x9c\x1f\xf1\x13\x76\x0f\x02\x5b\xae\xd0\x24\x7d\xc8\x8e\x0e\xd2\x43\xf7\x39\x8e\xb7\xde\x0a\xb8\x69\x21\x1d\x58\xdc\x8e\xc4\xa7\x47\x49\x9b\x53\x31\x6e\x4e\x85\xbe\xfc\xd6\x1f\xaa\x0a\xfc\x49\xf2\xb0\x2e\x3c\x76\x8d\x49\x07\xdf\x12\x13\x84\x6a\x43\x0c\x3f\x8b\x50\xb0\x59\xc3\x5e\x1e\x5d\x1a\x71\xce\xdd\xd8\x60\x07\xec\x18\x74\xf8\xae\x63\x74\x7c\xc3\xee\x46\x59\xaf\x1e\x75\xb0\xbb\x9c\xce\xef\x42\x53\xf1\xbb\xd1\x6e\xfc\x74\x4a\xd2\x9b\x50\xbc\x12\x78\xbc\xde\x8c\x76\xa3\xa7\x53\x42\x1d\xc9\xbc\xb3\x68\x0b\x37\x27\x72\xda\xc9\xcb\x27\x53\x67\xc0\xd4\xe8\xf8\xbc\x35\x8e\x70\x76\x68\xd6\x70\x02\x08\xd6\xc0\xe6\x3c\xff\x85\xe5\xee\xef\x5f\x99\x38\xf3\xcc\x71\x96\x19\x8d\xb6\x2c\xff\x14\x36\x39\x6e\x94\xa0\x2a\x6c\xb4\x91\xf7\x2b\x95\x9a\x00\xb8\xb6\xe3\x58\x3d\x76\x3f\xea\x9a\xfb\xac\x5f\xe2\x98\xbb\xac\x5f\x06\xcd\xe1\x66\x1d\x37\x07\xc0\x97\x38\x4a\x96\x1c\xe5\xa7\x3b\x39\x92\xe4\x71\xb2\x93\xa3\x19\xa1\xa3\xd1\x4e\x6a\x76\xe8\x89\xbe\x14\xd2\xc4\xd5\x38\x0a\xa7\x60\xc4\x04\x09\x1f\xf8\xd7\x32\x84\xb1\xa9\x00\x71\x31\x62\x4c\x73\x9b\x62\xf3\x08\xd8\x0e\xc5\x0e\xe5\x42\x2d\x83\x77\x53\x3b\x52\x6a\x08\x22\x6a\x95\x62\x6d\x39\x30\xcd\xd9\x70\x06\x6c\x50\x5b\x9f\xe4\x1e\x92\xd5\x61\xbf\x97\xbc\xaa\x5e\xac\x73\x55\x01\x70\x46\xf3\xee\x47\x3d\xe4\x70\xa6\x89\x95\x66\xc6\x86\x2c\x17\xce\x92\xb1\x5d\xac\xa4\x67\xaa\x9d\x79\x6b\xbd\x57\x38\x2b\xf0\x68\x7d\x9d\xbf\xe7\x45\xd5\x43\xf0\xef\x64\x60\xad\xa8\x26\xef\x3f\x65\x47\x49\xd5\xe4\x0e\xff\x45\x88\xb9\x77\x12\x58\xf2\x83\xf0\x34\xf6\xb6\x47\x5b\x1e\x46\xbd\x05\x6a\x08\xb3\xbe\x2f\x13\xf7\x28\x8d\x0c\x60\x69\x34\x78\x07\x81\xba\x92\xa7\x53\xda\xf3\x1c\xc7\x2a\x50\xa0\xd3\x4a\x33\xf8\x5a\xbd\xa1\x6c\xc9\x89\x50\xc5\xf2\x51\xf4\x28\x1a\x29\x63\x25\xdd\xd6\x7e\xb6\x9d\x9e\x5d\xe5\x2f\xb3\x5e\xf7\xe7\x0d\x32\x0a\x8d\x62\x8b\x72\xa9\x9f\x8e\x88\x5b\x4e\xdc\x74\x3b\x9b\x54\xfb\xd0\xe1\xef\x95\xcc\xbe\xe5\x77\x55\x1c\x9b\x6a\x3a\x39\x14\x23\x5c\xb5\xb2\xb1\x1d\xc8\x43\xc1\x4c\x69\x57\x28\xda\x1d\x0a\x95\x47\x8c\x89\xee\xd4\x28\x42\xdd\xfc\x42\x81\x5f\xc0\x1b\xe0\x0f\x6e\x3c\xaa\xd7\x11\xc5\x49\xf0\xc5\x86\xba\x98\xa9\x73\xc8\x44\x5d\x27\x7f\xe6\x89\x24\xb4\xd4\xfb\x8f\x50\x7d\x5f\x88\x38\x7e\xfc\xfb\x7f\x7c\x62\x1e\x50\x8a\xcc\x4d\x91\xe1\x94\xa4\xc3\xa1\x08\x90\xdd\x64\x88\x79\xb3\xd5\x23\x1a\x3a\x20\xdf\xe1\x10\xc3\x34\x79\x9d\xd1\xb0\xd9\xfb\x39\x6c\xa8\xe8\x8d\xce\x1f\x47\x23\x49\x55\x43\x2c\x6f\xe6\xf6\xda\x4a\xf9\xc9\x89\xd4\xf5\x2d\x9a\x06\xaa\xb6\x00\xbf\x7b\xce\xe7\x8f\xff\xfb\x46\x2c\x3e\x1f\xff\xb6\x74\xe3\x48\xd5\x64\x27\xf4\x47\xa4\x51\x37\x39\x91\xb4\xb7\xde\x76\x29\x03\xd4\x61\xf8\x2e\x8f\xcf\xd6\xf3\xf8\x57\x5d\x95\x83\x95\x04\x60\xdc\xdb\xcb\xd9\x2c\x8e\x9f\xfc\xa7\x66\x81\x0c\xc2\x2c\xac\x2e\x36\x09\xa0\xdb\x0d\xf7\x40\x53\x66\xa0\x5a\x34\x61\xf6\x57\x40\xd5\xf2\x96\x0c\x86\x54\xbd\x37\xe6\x05\xab\x38\x4e\x74\x87\xe7\x12\x41\x0e\x86\x65\x1c\xff\xed\x6f\x18\x83\x1a\x22\xe3\xeb\x17\x98\xd5\xe4\xf9\x27\x98\x7e\x4d\x7e\x20\x6a\x1e\xa1\xb3\xbf\x0d\x75\xdb\x8f\x7f\xbf\x0e\x63\x09\x4b\x51\x55\xdb\x2c\x97\xbf\xdb\x48\x60\xaa\xf1\xd2\x79\x9e\x1f\x27\x2e\x0a\xb1\x3e\x06\xe7\xdd\xc7\xbb\x61\x0e\x61\xa2\x75\xb3\xc1\xa4\xd9\x07\x64\x5d\x27\xdf\x89\x44\xd1\xa8\xaf\x33\x51\x4b\x44\xfb\x07\xbf\x3b\xec\x23\x7d\x2e\xba\x92\x5b\x71\xe4\x32\x82\x40\xe4\xcf\x1f\xaa\xef\xa7\xfe\xfa\xba\xd2\x56\x5b\xdf\xa9\xe9\x55\xff\x06\x07\xf3\xd7\xe6\x0e\x40\xe4\x60\xf3\x8e\xf7\xb7\x83\xde\x3a\xdb\xbc\xa2\xa1\x3f\xf4\xb3\x9e\x6d\x37\x4c\x5a\x42\xa6\xba\x76\x06\x32\x6e\x75\xe1\x20\xda\x49\x3b\xea\x19\x34\x1b\x80\xd8\x93\xec\x7a\x04\x92\x27\x8b\x7b\x0c\xba\x35\x00\xe1\x7c\xe1\x78\x48\x73\x18\x50\x88\x80\x62\x5b\xdd\x8d\x95\x6e\xee\x76\x9b\xaf\xb6\xfa\xba\x35\x7f\x5e\xce\xa6\xa4\xae\x87\x66\x6b\x92\xa4\x4d\xa7\x2d\x08\x21\x50\x85\xff\x88\x46\x72\x14\xfd\x47\xf4\x61\xa2\x70\x22\x20\x27\x3b\x0f\xe7\x0c\x9b\x9f\x90\xba\x6e\xbf\xdf\x3d\xb0\x74\xd3\xa9\xe3\x73\xf9\xa0\x6c\xf9\x03\x82\x62\x42\x1b\xf0\xce\x3d\xb1\x6f\x92\x4e\x08\xfa\x04\x64\x93\x11\xfc\x8e\x28\xf7\x96\x1c\xa6\x04\x1b\x4e\xe9\xf3\x10\x21\xd3\xb0\xb0\x8d\xdd\x69\xca\x46\xce\xd4\x5d\x2f\xc2\xd9\xb8\xee\xcc\x1b\xd0\x34\x50\x2a\x9b\xe1\x88\xab\x86\x02\xa6\x71\x6f\xf7\x7d\xa0\x17\x84\x3e\x99\x12\xd2\x73\x5f\x07\x41\x77\x12\x62\xef\x9b\x00\x76\xef\xe1\x49\x87\x3e\xb6\x03\xde\xe0\xac\x5d\x17\x07\xd9\x3f\x69\x33\xfa\xdd\x47\x4f\x1a\xc1\x98\xc8\x36\x24\x4e\xf0\xd9\x75\x91\x97\x7f\x70\x79\x4e\x83\xd1\x5d\xcc\x1e\xfe\xee\x04\x6a\xb0\x10\x16\xd0\x5c\x9d\xa1\xb4\x9f\xaa\x06\x41\xf4\xa2\xe8\x21\x8a\xe2\xad\x24\xda\x2f\x62\x44\xe2\xb8\x25\xa6\x0e\x32\xa9\x6e\x18\xea\x01\x32\x00\xa5\x4c\xc8\xe1\x1d\x7c\x1c\x6e\x10\x7b\x24\x82\x0a\x12\x03\xe8\xf5\x5a\xb2\x57\xc6\x8a\xf5\x45\xb9\x66\xbd\x61\x33\xf4\x37\xf3\x3d\x4f\xb8\x07\x9d\x18\x35\x80\x11\xc6\x33\xba\xd5\x8b\x11\x1a\x1d\x8e\x92\x19\x44\x77\xf5\xa5\xe6\xdc\x62\xa6\xa5\x9a\xe5\xe7\x13\x25\x82\x57\xfe\x5b\x6f\xb3\x0d\x98\xcf\x18\x4b\x2f\xb0\x9c\xe6\x03\x9f\xa5\x44\x08\x06\xfd\x5a\x26\xca\x5f\xa7\xd0\xbd\x06\x3a\xd9\x18\xdc\x07\x21\x63\xac\xfc\x18\xc8\x78\x66\x68\xa0\x0f\x72\x64\x80\x9b\x6d\x71\xfd\xc8\x1b\x31\xa8\x7f\xb2\xda\x82\x2b\xe1\x64\xb5\x25\x16\x5d\x2d\x00\xca\xeb\xd8\xc5\x2e\x96\xd4\x31\xa5\xbc\x68\xa1\x60\x37\x00\x79\x7c\xf6\xa2\x5c\x0e\x64\x43\x69\xfe\x56\x26\xb9\x83\xa0\x26\x14\x7e\x82\x78\x53\x3f\xca\x2d\x8b\xfa\x4f\xdd\x1b\xde\x32\xeb\x09\x00\xe7\x64\x8b\x0a\xfb\x61\xea\x7f\xe7\xde\x4e\x86\xe3\x20\x57\xdb\x91\xd4\xc3\x4c\xbd\xbd\x4c\xc2\xed\xf4\xa1\x5d\x82\x2e\x19\x34\xf1\xbd\x6c\xe2\x04\xde\xaf\xb2\x72\xc5\x0b\x44\x6f\x02\x21\x3c\xce\x3b\x55\x22\xd5\x93\x18\x86\x02\xb6\x72\x75\x35\xc1\x3f\x28\x7e\xdb\x0d\xbb\x60\xaa\x64\xc3\xe9\xe9\xe4\xfc\xb1\xc0\xeb\xc1\x00\x95\xf8\xcb\xc4\x9a\x5d\x29\x7b\xed\xea\xc6\x01\xb4\x91\x82\x8f\xb7\x4d\x56\x02\x13\x25\x01\x95\x66\x12\xb8\x68\x19\xe1\xf9\x74\x88\xef\x16\xc8\xc1\x0e\xb2\x5c\xbf\x4c\x0c\x7d\x82\x20\xbd\xe8\xd4\x11\x81\x9a\x55\x4f\xcd\x0e\x7c\x19\x01\x8a\xa0\x5d\x02\xf0\x7f\x08\x2d\xdd\x70\xe6\xfa\x22\x4b\x51\x53\x51\xba\x49\x2a\xdd\x24\x95\x8d\x49\x2a\x4d\x1f\x82\x1b\xed\xbb\xf0\x4d\x0c\xc8\x08\xf7\x18\x16\xce\xa2\x1e\xd9\x63\xf2\x25\x46\x09\xa3\xdf\x49\x62\xbe\x18\x98\x2f\xfa\x9e\x9e\xe6\xab\x13\x70\x1e\x48\xa2\x1a\x43\x41\xae\x63\x17\xc7\x3a\xaf\x3b\x52\x82\xe2\xd9\xef\xdd\x65\xee\xac\x63\xdf\xa3\xd4\xaa\xcd\x21\x60\xa6\xf5\xc9\xe0\x93\x5c\x71\x69\xad\x2d\x9c\xd1\x56\x3b\x0e\xc1\x04\xe2\x03\xad\xdf\xec\xb3\xb2\xea\x60\x59\x07\x79\x5e\x75\xa0\x3c\x1f\x14\xe4\x2f\xd4\x12\x7f\xca\xc1\x50\xba\xdb\xbc\xae\xcb\x38\x36\xfa\xae\x92\x4a\x3d\x22\xf4\x6f\xf3\x9e\x81\x12\x94\x3c\xc3\xb2\xd7\x55\x24\x67\x0b\x5c\x57\x05\x5a\xa7\xd3\x92\x0a\x36\xbd\x10\x97\xa5\xef\x8e\x77\xe2\xcd\x58\xb9\x10\x4b\xd0\xe5\x22\x0a\x25\xa1\xa8\x70\xcd\x7b\x14\xac\xb9\xd1\xa6\x0e\x35\x41\x2c\xf4\x5e\xa9\x2c\xb9\x84\x90\x2a\x26\x56\x11\x78\xa5\x5f\x4d\x89\xd5\xa7\x2e\x0e\x74\xb6\xa4\x1b\x16\x96\x40\x87\xf6\x3d\xf3\x15\x29\x41\x2e\x92\x8d\xae\x69\x98\x4d\xf2\x72\x55\x1c\xaa\xfc\xc8\x0d\x18\xc3\x86\xc4\xf1\x0a\xc7\x8e\x63\x2b\xdc\x9e\xc5\xba\x4e\x84\x26\xfb\xab\xd6\xc7\x3f\xa0\x3b\xc3\x70\xdf\xfe\xba\x82\x7d\x2e\x52\xdd\xf4\x89\xd0\x1c\xd4\x71\x2b\xeb\x07\x9a\xd3\x15\xa1\x87\x11\xf3\xa1\x49\x4f\x5e\x1c\xe2\xee\x08\xbc\x0f\xc0\x2c\xbe\x47\xe3\x39\x9e\x5d\xe4\x57\x6c\x7a\x31\x1e\xe7\xe4\xb9\xde\x8d\xe6\xa8\x2d\xf2\xa5\x3f\x6d\xfa\x87\x3d\x70\xf9\x7c\x11\x45\x4b\x1b\xa7\xdc\x98\x01\x3d\x37\xef\x44\x7f\xec\x9e\xfb\xfb\x6a\x36\x6c\xa2\x61\xd6\x75\x14\xd9\x24\x08\x72\x83\x06\x6b\x61\x6f\xed\x2e\x34\xf7\xc6\xe0\x6d\x6e\xe4\x2f\xfa\x28\xcd\x83\xe8\x82\xf9\x3a\xfd\x3e\xfb\x9e\xd0\x3f\xad\x80\xe6\x0d\x72\x0f\x56\x6e\xb5\x58\x0e\x6e\xf2\x86\x91\x09\x10\x7a\xa7\xa7\x2d\x29\xb7\x66\x2a\x7a\xff\x7e\xa1\xc9\x92\xf9\xad\x2f\x94\xd2\xc2\xdf\xd9\x32\xae\x25\x60\xfd\x6d\x63\xa7\x70\xe4\x5f\x87\x04\x07\xe8\x4c\x5d\x0f\xcf\x92\x91\x86\x03\xab\x6f\x5b\xe0\xc5\x47\x33\x16\x1d\xca\xb5\xd0\x8f\xfb\x79\x3e\x59\x8b\x92\xa7\xf9\x44\xa7\x94\x9c\x56\x8d\x3c\x4c\x4c\xb1\x90\x39\x1b\x99\x8f\xdd\x55\xb2\x6c\x71\x58\x52\x39\x1f\x96\xe6\x36\xad\xeb\x72\x82\xf1\x4b\x12\x8c\x51\x93\xda\x1c\x72\x71\x18\x8d\xc8\x05\x3a\x39\xd9\x3a\xb0\xa7\x39\x18\xbd\x18\x4b\x9e\xbc\xc7\xb2\xe7\x42\xb7\x84\x31\xa7\x88\xa9\x0e\x5d\x98\x7e\xc8\x93\x92\x56\x70\xb9\x0c\x5b\x0d\x93\x20\xde\xd8\xa3\x9f\x20\xa2\x05\xbd\x07\x96\xf4\x07\xbe\x16\x60\xd2\x36\x10\xac\x3c\xe1\xe1\x5e\x2c\x07\x3f\xe4\x89\xd0\x75\x19\x74\xc2\x7b\xe3\x66\x94\x16\xf4\x86\x97\x26\x44\x6b\x9a\x4f\xfc\x0f\x38\x3b\xfe\x27\x2b\x83\x1f\x75\x3d\x1a\xe5\x93\x5d\xf6\xfe\x4b\x97\x64\x20\x91\xff\x07\x64\x1d\x88\xdb\x81\x95\xd6\xf3\xc9\x9f\xb2\x03\x9e\xb2\x83\x35\xf3\x75\x45\x0c\xad\xda\xd8\xeb\x53\xd1\x55\x1c\x0f\xe1\x66\xd8\x68\x36\x36\x9c\x9d\xc4\xae\x06\x9b\x92\x41\x81\xa3\x7f\x09\xfb\xdb\xec\xf8\x3d\x3b\xcc\xe1\xd0\x6c\x48\xba\x15\x49\x46\x06\x7f\x62\x45\x7b\xfa\x79\x89\xe5\xe8\xf0\x80\xe1\x6c\x4d\x50\xdb\x96\xa9\xa0\x09\x10\xe2\x0e\xff\x6b\x99\x6c\xc8\xc9\x1a\xb0\xf6\x9c\x27\x8c\x6f\x62\xce\xd3\xf6\x81\xf3\xb4\x21\x74\x7b\xe6\x3c\x6d\xf0\x3c\xd9\x2e\xea\xf3\x14\x9c\xa8\x2f\x3c\x2d\x99\x5a\x8d\x22\x3a\xf8\x31\x85\x8c\x1d\x33\x96\xb7\x77\x22\x09\x19\xc6\xbe\x30\x77\xde\x56\x91\x87\xc1\x47\x46\x3e\x20\xa5\x65\x61\xb9\x0f\x56\x02\xb9\x26\x30\x09\x08\x5e\xdb\xec\x24\x10\x26\x02\xf1\xce\xb9\x89\xaf\x6d\x9c\x33\xe1\xdf\xb1\x02\x34\xe2\xc0\x47\xd2\xc7\xee\x05\x48\x12\xe7\x6e\x58\x5e\x5a\x30\x3a\xe0\x82\x7f\x33\xf5\x95\xf6\x91\x13\x85\xa4\xe6\x4f\xd9\x88\x31\x80\x8b\xfa\x00\x6b\xf3\xa7\x65\x6d\x28\x9a\x0b\x3b\x46\xfe\xd2\xf4\x93\xe0\x54\x37\x1f\x2f\xe7\xde\x07\x81\x87\x4f\x12\xa4\x5f\x85\x96\xb8\xd6\x06\xc2\xc3\xf1\xd9\x96\x9c\xa1\x58\xab\x2d\x37\x63\x41\x4b\x03\xe8\x56\x4e\xa8\x32\x36\x2b\xf8\xda\x42\xf0\x6c\xb0\x59\x01\x43\x53\xd3\xc9\x51\x4e\xdd\x4b\x04\xae\xac\xc5\xd6\x62\x1d\x93\x65\x9b\x9d\x3e\x39\x7c\x11\xdf\xe9\x81\xab\xea\x0a\xb0\xd5\x4c\xa3\x9e\x47\xdf\xf3\x44\x00\x94\x40\x0b\x69\xdb\xb6\xe7\xee\xb6\x6e\x73\x84\x2a\x63\xec\xb0\x86\xd8\x89\x8d\x4b\x9a\x22\xb2\x82\xb9\xf5\x70\x53\x75\x3c\x9a\x8e\x1e\x6a\x3c\xf4\x89\x06\x43\x3b\xa8\x2a\x83\x07\x1a\xad\xd8\x70\x46\x0f\xc6\xf5\xfc\x3c\x0a\xfb\x81\xbd\xca\x93\xaf\xcb\x04\x81\xc3\x6d\x1c\x51\x5a\x22\x87\x79\x30\x2e\xe5\x3d\xcc\x25\x63\xb9\x45\x75\x73\xc8\xde\x0c\x7c\x1c\x4e\x84\x0c\xca\xa6\x39\x4e\x38\x4a\x70\x2a\xe2\x22\xe1\x64\xb0\xd1\x8d\xea\xfd\xf8\x39\x48\xe0\xcf\x76\xd2\xf5\x46\xf4\xbc\x5f\x69\x57\x90\xfa\x4f\x40\x16\xb9\x72\x1d\xfc\xce\x5e\x83\x2e\x85\x71\xda\xca\x65\xca\xa7\x04\x20\x09\x15\xc8\x30\x40\x1c\x64\x51\x4d\x9a\x60\x96\x00\x90\x34\x80\xb7\x49\xa9\x72\x2e\xbd\xce\xd4\xa7\xd9\x89\x45\x43\x8f\xbf\x4c\x0d\x02\x44\xd1\xda\xfe\x09\x4e\xf6\x58\xd8\x07\xf8\x40\x4d\x36\x87\xa2\x98\x7f\x03\xde\x6d\x98\x3c\x34\xe6\x8c\x75\xdd\x65\xac\x56\x0e\x36\x9f\xc0\x37\xa6\x5d\xbf\x88\x05\x49\x7f\x0b\xd2\x23\x13\xad\x34\xbc\xef\x2c\xc0\x0c\xa0\x98\x07\x29\x88\x89\xb3\xa9\xeb\x95\x75\x24\xc1\x63\x01\x0c\x6a\xd6\x78\xb2\x9a\x0d\x9e\xba\xad\xde\x39\x06\x83\x8d\x55\xd8\xac\xdc\xe3\x70\x4f\xf4\xcd\xe7\x26\xd9\x63\xdb\x80\x5c\xa9\x9d\x18\xbc\x32\xf6\xe4\xf4\x90\xb4\x0f\x0c\x8e\x91\x00\x2a\x5a\x92\x74\x93\x1b\x2d\x13\xfd\x16\x1e\xb7\x54\x88\x90\xa8\x7e\x25\x43\xcf\x24\xcd\x36\xc3\xa3\x46\x12\xba\xe5\xf0\xce\xb9\x9c\x3a\xcb\xbd\x41\xc9\x24\x95\x4c\x9c\xfa\x94\xad\x60\x09\x12\xd8\xcf\xe9\x13\xfd\x9d\x67\xb1\x25\xb0\xd6\x66\xde\xec\x04\xe5\xa7\x40\x6c\xf0\x77\xf9\xb0\x8f\xd4\xf7\xcd\x58\x08\x80\xef\x2f\x2d\xba\x48\x65\xd1\x95\xad\x85\x80\x9d\x42\xa7\xe1\x9e\x77\x52\xd2\x3e\x7b\x72\x7a\x60\x7b\xb0\x96\x2b\xd8\xfd\x69\x90\x8f\xe5\xd5\x01\xe0\xab\xe4\xe8\x60\x37\x4e\x68\x1c\x30\x3a\xa8\x04\xec\x51\xe5\x65\x46\xf7\x2c\xbf\x5a\x8d\x01\xd9\x5e\x5e\x56\xa4\x08\x4c\xa4\x36\xf3\x69\x2a\xdd\x0d\x92\x5f\x55\xf6\xf9\xb6\x0d\xbc\x3d\x68\xb2\x9f\xaf\xd2\x9c\x8c\x0f\x64\xb0\x1d\x32\x7d\x06\xc3\x3a\xb6\x28\xa4\x5b\x3f\x3c\x54\x08\x97\xd5\x4d\xea\x0e\x16\xac\x10\x76\x6c\xa3\x47\xab\x2f\x22\x4b\x8c\x36\xf9\x7b\xbe\xfe\x12\xae\xdf\xb9\x70\xb6\xbb\x01\x2c\x6f\x3a\x25\xf4\xc8\xca\xb1\xba\xda\xb9\xd8\xb9\xc0\x73\xab\xd1\x8e\x50\x75\x39\x9b\xce\x8b\xd0\xe4\x69\x9a\xaa\xcb\x75\x33\x29\xb0\xbe\x50\xe3\xe4\x38\x9f\xa6\xb3\x29\x21\x69\x79\xb5\x1b\xad\xc7\x9f\x05\xe3\x46\x18\xbd\x91\x2d\x32\xde\x11\x1a\x78\x0d\xff\xcb\x3d\x3e\x9c\xd5\x92\xb1\x26\xaa\xeb\x9f\x65\xc2\x2d\x32\x9c\x0a\x0e\x5a\x50\xaf\x8f\x02\xd9\x9d\xbf\x96\xf5\x59\xb7\x0c\x19\x29\x5b\xbd\xec\x54\xaf\x97\xab\xb7\x76\xdc\x88\x0d\x5b\x95\xb4\x53\x82\x8c\xc2\xc0\x2e\x3f\x82\xbc\x1c\x86\x13\x06\xf2\x47\x9b\xc0\x84\x50\xc9\x14\x2d\x99\x7a\x28\xf2\x88\x9a\xac\xb6\x73\xef\xaf\xa2\x7f\x8e\x67\x24\xd5\xdf\x35\x53\xc1\x2f\xac\xdd\x9f\xd7\xa2\x62\x8d\x43\x8c\x58\x76\xa9\x6f\x10\x95\x20\x68\xbf\xf6\x12\x32\xa9\x45\xb6\x4b\x87\xd3\x80\xda\xfc\x2c\xbb\x70\xe8\x41\x33\x08\x88\x7e\xdf\xd7\x01\xe7\x6a\x2f\x19\x06\x60\x31\xb2\x8a\xd2\xfe\xd4\x0c\x45\xde\x82\x3a\xc4\x20\x49\xb4\x6c\x43\x1d\x42\x80\x24\x08\x24\xb8\x27\x63\x65\xb0\xf9\x42\x37\x2a\xb0\x3d\xa7\x06\x81\xbf\xe1\x60\x65\x30\x0f\x4b\x87\x79\xa8\x7a\xa0\xfd\x9c\x53\x28\x9c\xb1\x3c\x58\xd9\x60\x2e\x7e\xea\x41\xfc\x40\x3f\xd0\xd0\x22\x2e\xca\xd6\xeb\x88\xd0\xa8\xda\x65\xd2\xc4\xa4\x4b\xc4\x64\x27\xd6\x1c\x60\x6d\x4a\x35\xcf\x59\x86\xd8\x64\xa9\x64\xd1\x5e\xf2\x63\xe4\x9d\x02\xda\x9e\x6b\x15\x7b\xa7\x1f\x93\x8a\xd0\x03\x2b\x44\x82\xe2\x4d\x7c\x8d\x64\x64\x50\xe1\x9b\xfd\xf3\x8d\xe2\xba\x99\xf0\xa7\xb1\xc1\x3a\x9a\xe0\xdc\xf8\xe1\x64\x07\xe6\xb0\x8f\xff\xfb\xf7\xea\xd3\xc7\x64\x31\x45\x98\x98\xba\x7e\xfc\xfb\x1b\xa3\x12\xc6\x72\xc4\x68\xee\x83\x21\x24\x05\x6b\x8c\x22\xc9\xa9\xa9\x13\xfd\x99\x56\x8e\xc7\xb4\x55\x30\x96\x8b\xba\x2e\xae\x40\xbd\x02\xc2\x06\x2b\x67\x1b\xd8\x71\x9f\x4e\x26\xba\xfa\x94\x4a\x16\x95\x42\x45\x03\xcc\x60\x4c\xce\x0b\xa6\xae\x04\x72\xd1\x73\xf4\xcf\x13\x54\x8d\x67\xa4\x31\x05\xe9\x34\x85\x09\xc7\x0f\x0e\x23\x3f\x83\xd8\xcd\x1f\xcb\x5c\xa5\x51\x75\xb8\x56\x32\x03\x77\x41\x28\x36\xee\x2f\x56\x02\x24\x95\xbf\x24\x25\x04\x15\x3f\x8c\xa4\xbe\x5c\x02\x0a\x58\x58\x77\xac\x28\xa2\x7b\x66\xe2\xa7\x36\x2b\xfc\x39\x57\xdb\xb7\xd9\xb5\x17\x6b\x6e\x43\x2f\x92\xe2\x71\x46\x2e\xb6\x17\xe3\xf1\x96\x40\xd8\xaf\xcd\x88\x45\xbf\x63\x2c\xc3\xfd\x65\x11\xc7\xc9\x66\xc4\xf6\x22\x29\xc6\x7b\x42\xe8\x66\xc8\x56\x96\x83\xfd\x4a\x26\x42\xbf\x96\x79\xa2\x4c\x30\x6e\x45\xfd\xcc\xfb\xa8\xcb\x9d\x9d\x40\x87\x53\x78\xdf\x6d\xd9\xf4\x62\x7b\x29\x7a\x94\x1a\x5b\xab\xd4\x58\xb3\x30\x7b\xb1\x85\x4d\xb2\x6e\x44\xc6\x8c\xe3\xb5\x7d\x6e\x3a\xc3\x6e\x72\xff\x2f\xfd\xec\xd8\x52\xfb\x82\x65\xad\xde\xed\x09\xb1\x71\x14\x03\xc0\xbf\x8e\xe5\x92\xd2\x2f\x05\x6b\x60\xd3\x5e\x11\x35\x17\x00\x96\x41\xbf\x33\xca\x80\x14\x62\xf5\x38\x78\xb3\x1c\xe5\xf1\x49\x99\x08\x9a\x13\x2b\x47\xb0\xaf\xd4\x1c\xc2\x16\x05\x94\xfa\xcb\x8e\xde\xc7\x69\x5e\xed\x13\xbd\x64\x8b\x25\x45\x14\x57\x07\x12\x04\x60\xae\xf6\x1b\xc1\x54\x22\x17\xf9\x92\x5c\x78\xc7\x8e\x2d\x4f\x04\xbe\x28\xb6\x22\x29\x89\x51\x78\x5d\x38\xc8\x37\x14\x40\x19\x8d\x58\x86\x25\x85\xd3\x98\xdd\xe3\x9f\x0c\x33\xec\x9c\x19\x59\x9f\x20\xa7\x6f\x5b\xce\x76\x5e\x72\x1e\x48\x4d\xd5\x15\x9b\x5e\xa8\xf1\x98\x7c\x25\x0d\xcf\x1d\x45\xb4\x5c\x28\x23\x36\x85\xbf\x94\xa0\xd1\x68\xcd\x0b\xae\x34\xf7\x0c\xd7\x56\xc8\xdf\x7d\xd2\xc3\xdf\x99\xab\x07\xd0\x4f\xb6\xb4\x62\x92\x22\x7a\x09\x15\x8d\x68\x46\xd6\xde\x97\x56\x2c\xc9\xe7\x55\x96\x1e\x32\xa2\x1f\x6b\x54\xda\xe8\x4c\xb8\x5e\x15\xbe\xbf\x81\x83\x15\x23\x49\xec\xf3\xbb\xae\xcb\x2b\xc6\x1d\x4c\x52\x95\xff\xc9\xeb\x3a\x11\xac\xa4\x43\x03\x97\x42\x4b\x42\x02\x2b\xc1\x8c\xe5\xf3\x44\x5e\x4e\xe7\x2a\x4b\xb9\x6e\x8b\xa4\xfa\xd7\x21\x7c\x7f\xa4\x53\x24\x37\x19\xab\x06\x0e\x71\x46\xd3\xb9\xd5\x36\x93\xe0\x49\x5a\x84\xa1\xf1\x56\xa2\x38\xec\x4a\x93\x0e\xb0\x04\x36\xe7\x56\xc8\xb5\x89\x29\x78\x23\xc5\x61\x0f\x65\xec\x2a\xac\xf0\xbc\x6d\x98\xcf\xa3\x7b\x16\x08\xb4\x6e\xb8\xfa\x8a\x17\x7b\x2e\x13\x45\xa1\x2a\x88\x2c\x19\x11\xba\x65\xc3\xe9\xc5\x50\x8f\x82\xd4\x75\x91\x0c\xb7\xe4\x62\xab\x5f\x77\xe6\x54\x1e\x1a\xe1\x90\x32\x52\xd7\xd1\xef\x65\x44\x77\xec\x95\x48\xd6\x74\x4f\xe6\xd1\x6d\x94\x6e\xe2\x58\xa7\x32\xb6\x9e\x47\x65\x94\x0e\x37\x9a\xb8\x57\x86\xb8\xaf\x09\x1e\x8f\x68\x0f\xa4\x46\x67\x6e\xeb\x7a\x57\xd7\xc9\x8e\x45\xba\x07\xab\x38\x5e\x0d\xd9\x8e\xdc\x5b\x66\x7d\x46\x8b\xc4\x1d\xdb\x7c\x93\xec\xe2\x38\x59\xb1\x1d\xa1\xf2\x6a\x1a\xc7\x43\xe8\xa4\x41\xde\xd5\x9d\x3c\xb2\x5f\x38\x46\xaf\x12\x34\x23\x54\xd1\x2a\xb0\x3a\x7b\x04\xf1\x81\x8f\xa4\xae\x93\xe3\x64\x9b\xab\x37\x36\x62\xd9\x31\xc0\xa9\x3c\x77\xc5\xc2\x8e\x2b\x0c\x14\xb1\x0b\xea\x68\xa3\x82\x85\x66\xc0\xbd\x81\xb7\x0c\x38\xf6\xff\x1c\x11\x77\x60\xc2\x2a\x8e\xe4\xa7\x49\x35\x86\x9d\x36\x9b\x3c\x4d\x27\x4f\xc9\xa7\x8d\x67\x0e\xfa\xd3\xba\xd0\x96\xf8\x12\xb9\x9a\xce\x1d\x36\xef\x67\x29\x82\xe1\x7e\xe6\xa3\x66\xa1\xb7\xd3\x0f\x26\xb2\x99\x89\x5d\x66\x63\xba\xe1\xec\xe2\x0b\x65\x3a\xcf\x2f\xd9\x34\xcd\xaf\x98\xb0\x18\xef\xf7\x87\x60\x2a\xed\x3a\x8d\xd8\xd3\x4f\x1d\x9e\xd5\xe1\xf4\x2a\x8c\xaf\xbc\x12\x65\xa5\xe4\x61\xa5\x84\x4c\x5f\x99\xc8\x3a\x01\x2d\x69\xa1\xdd\x98\x70\xe9\xbd\x9e\x46\x15\x57\xaf\xe0\xce\x6b\x45\x93\x3e\xfa\xd0\xde\xe6\x4e\xa4\x25\x93\x0b\xbe\x1c\xe8\xff\xc1\xed\x11\x69\x46\x22\x1a\x32\x7d\xa8\x21\x51\xd1\x5f\xe4\x64\x9b\x55\xaf\x6e\xcb\xd7\x52\xec\xb9\x54\x77\xe0\x1e\x66\x02\xc4\xd3\x5f\x74\x29\x0c\x10\x0f\x4f\x63\x72\xa2\x37\x3d\xcd\x37\x63\x39\x9b\xd6\x17\x7c\x09\xa5\x9f\x8b\xd5\xb9\xa8\xcf\x6b\xb1\x3a\xd1\x6c\xbd\xfe\x16\x4c\x3d\xdb\xd1\xb1\x01\x2e\xb4\x61\x72\xaa\xe6\x91\x26\xc6\x51\x1a\x1d\x4a\x30\x24\x89\x96\xc9\xba\x44\x27\x54\x14\x29\x74\x6a\x0a\xc9\x74\xb7\xc6\x76\xe0\x9a\xd1\x48\x42\x94\xd5\x85\x5c\x32\x3d\x4b\x10\x2d\xa8\xcc\x76\x9c\x31\x1e\x78\x8d\x81\xb6\x2d\x91\x74\x46\xe8\x70\x0a\x23\x78\x75\xe4\xb2\xc8\xee\xd2\x4f\x54\xd2\xb7\x2a\x7c\xa2\xc4\x1f\xbc\x9c\xf3\xf4\x95\xa6\x43\x2f\x85\x8d\x5d\x6e\x57\x0a\xad\xc4\x24\x46\x15\x78\xa3\xbb\x48\xd4\x56\x8a\x5b\x90\x4b\xbf\x90\x52\xc8\x24\x32\x6d\x54\x8f\x76\xd9\xdd\xa3\x52\xa8\x47\xd7\xfc\x11\x8c\x66\x73\x28\x26\x11\x19\x04\xc3\x13\xa6\xa8\x51\x84\xe8\x65\x4f\x25\xd5\xff\xbc\xd9\xf3\x55\xca\xa9\xd8\x67\xff\x3a\xf0\x54\x61\x1c\x13\xfd\xf7\xc9\x02\xb4\x42\x05\xba\xe8\x97\xbc\x1c\x8d\xe8\x37\x16\xd6\x96\x98\x29\xee\x1d\xea\x99\x69\xb6\xfd\xe8\x9b\x67\x1b\xcf\x5c\x4f\xb1\xed\x19\xdc\x50\x30\xf3\x1d\xc9\x09\x8f\xe3\xf2\xe1\xa5\xe8\xed\x3e\x28\x8f\xdc\x18\x4e\x84\x22\x9f\x08\x21\xb1\x5a\x8b\xa5\x9f\xc7\xb6\xd9\x61\x20\xb0\xb1\xdc\xd0\xb0\x29\xc4\x31\x2f\xe9\x79\xb8\x8e\x13\x60\xdd\xbf\xc6\xf7\x86\xe1\xe3\x53\x64\xad\x53\x35\x07\x8e\x39\xe0\x8a\x09\xfd\x9a\x3b\xfb\x46\xf0\x88\xfd\x49\x1a\xab\x46\xe8\x8d\xeb\xad\xb3\x38\xfd\xc0\xa4\xb7\x78\x28\xc9\xc0\x56\xe7\x61\x7c\xbe\x4d\x92\xbb\xd0\xf5\xb9\xe7\x36\xaf\x34\x13\x6e\xbb\x13\xa4\x1b\xff\x5b\xc9\xc2\xb4\x92\x35\xdb\x77\x0a\x90\x38\xfe\x11\xab\x30\x5a\x01\x1b\xb8\xd1\xc2\x39\x64\x2c\x47\xd0\x86\x2a\x88\xef\x62\xa5\xa2\x83\x40\x66\x8a\x40\xc5\x1e\xc9\xc3\x48\x44\x93\x4c\x3f\xd8\xa7\xe9\x8c\x90\xd1\x2c\x70\xb9\xae\x2e\x0e\x97\x12\x54\xff\x76\x08\x07\xca\x9d\x70\xb5\x3b\x55\x83\x29\x03\x88\x4e\xc0\x0e\x74\xe8\x6f\x96\xad\x2c\x16\xe5\xd2\xf4\x78\xb2\xda\xea\x1b\xf8\x5f\xc1\xba\x95\x96\xf3\x16\x14\x0a\x42\xd0\x7d\x14\x1e\x9e\x88\x26\x80\x6f\xf5\xd1\xff\x5c\xa5\x7d\x76\x6c\x8f\xfe\x51\xba\x15\x47\xe2\xaa\x07\x08\x5f\x54\x0f\x7f\xb0\xe7\x09\x27\xc6\xe2\xd3\xb5\xf2\xf6\x6e\xcf\x1b\x2d\x91\x7b\x0e\x7e\xbc\x7e\x93\xa1\x68\x84\x4a\xf6\x9b\xa9\xe8\x5d\x1e\x64\xdb\x28\xbe\x25\x9b\xd2\x9c\x25\xd2\xc3\x4a\x3e\x7e\x02\x3c\x01\x86\x8a\xd5\xd3\x45\x14\x93\x8b\x27\x4b\x64\xcf\xc2\x3b\x35\x63\xe5\x28\xbf\xba\x82\xb0\xa4\x49\x36\x97\x8b\x27\x9f\x66\xe3\xd9\x32\x9d\x92\x2b\x26\x48\xce\x32\xe7\xb6\x3b\x4c\x20\x73\x34\x5b\x5e\x0a\x42\xee\xa1\xc2\x4f\xb3\xd1\x93\xa5\xb9\x51\x4b\x96\x8d\x66\xa8\x8a\xa9\xf4\x49\x43\x80\xda\x57\x1b\x00\x1a\x34\xb4\xe5\x51\x44\xd2\xf1\xcc\xf2\x3a\x95\x66\x45\xd3\x29\x63\x15\xb2\x5c\xca\x21\xa5\x54\xe3\x19\x4e\x94\x26\xbe\xad\x39\x6a\x1d\x21\x4d\x3d\xbc\x33\x08\x70\x2d\xfa\xa3\xf9\x2b\xff\x77\x62\xf0\xb2\xfd\xf2\x26\x9c\x20\xf1\x21\xf0\x7d\xaa\xa0\x31\xe4\x38\xfb\x57\xd2\x56\x80\x65\x30\x2c\xf1\x62\xba\x0c\xbe\x6b\x6f\x01\x6b\x23\x07\xac\x8a\x28\xdb\x37\xb7\xf3\x30\x79\x24\x8d\x9d\x83\xd0\xef\x0d\x9a\x33\xdb\x14\x8e\xdd\xd8\x24\x77\x48\x6c\xbe\x50\x4b\x52\x2e\xf4\x3f\xcb\x38\xb6\x26\x75\xf8\xdb\xb3\xe1\x50\xca\xbf\xc2\xa6\x17\xe2\x52\x27\x59\x02\x23\x2c\x81\xc9\x18\x7e\xba\x10\xcb\xe5\x20\x73\xf5\x65\x16\x4b\x79\xb2\x85\x31\x22\xae\x65\xb9\x08\x7f\x2f\xe7\xbe\xf1\x30\x99\xa4\x3a\x41\x5f\x02\x8d\xfe\x61\x0a\x32\x76\xd6\x56\xe8\xdd\x4d\x21\xae\xb3\xa2\xd3\xab\x8a\xb9\xbc\x85\x58\x0e\xaa\xc9\x5e\xf2\x75\x92\xc3\x6a\x92\x38\x36\x68\xbc\x92\x56\x93\x63\x56\x10\xd7\x0a\xfe\xf4\x58\xa5\x7a\x8d\xde\xb8\xa7\xfe\x79\x4e\x6c\x2d\x56\x2e\x80\xac\xe1\xa9\x12\xce\xbe\x03\x43\x48\x94\x7a\xce\xa5\x79\x6e\x49\x13\xab\x37\xe5\x9a\x98\x01\x39\x40\x71\xe1\x33\x21\xe4\xba\x7f\x2b\x74\xa8\x2e\xc0\x95\xd9\x16\x5f\x9a\x16\x7d\x4b\x9a\x64\xa7\x91\xb8\xfe\x27\x62\x38\xd9\xab\x75\xde\x24\x11\x29\x74\x0a\xe8\x5d\x2a\x91\x3e\xab\xba\x46\xee\x5f\xf7\x0a\x8c\xc9\x7b\xfa\x64\x9a\xfd\xc3\x34\xdb\xac\xb4\x59\x05\x7c\xae\x1f\x60\xfd\x55\xfc\xe0\xe7\xea\x73\xe5\x08\xa4\xab\x00\x11\x33\x29\x07\xb9\xe4\x09\x70\x6b\x3f\xb7\x31\x38\x7b\xeb\xf3\xd5\x60\xc8\x35\x0a\x01\x2c\xa6\xa7\xa0\x4e\x90\x74\xbe\x09\x69\xe1\xa8\xc1\x85\x07\xd1\x9a\x4f\x14\x5f\x01\x9f\x23\x1b\xd1\xb3\x30\x10\xaf\x1b\xce\x58\x5b\x92\xc2\xdd\xed\x6b\x97\x0e\x57\xdf\xaf\x24\x86\x74\xe6\x97\xcd\x02\x73\xde\xfa\x22\xe5\x57\xe0\x19\xc6\x72\x0c\x35\x4e\x25\x6b\x50\x72\x73\xcc\x24\x73\xa4\xec\x99\x99\x02\x89\x93\x30\x3d\x33\x09\xa3\xa4\x9c\xbb\xa6\x70\xa0\xe3\x67\x79\x22\x49\xaa\x6f\x9a\x35\xdf\x64\x87\x42\x79\x7c\xdc\x1e\xde\xfe\x7b\x95\x84\x53\xe7\xbf\x72\x38\xbb\x3d\x1f\x7d\xd7\xf9\xa8\xe2\x0a\xb5\x2b\x18\xbe\xa3\x8f\x5d\x33\xdf\x7e\x2b\x83\x81\x3b\x93\x88\x8e\x02\xb8\x64\xdc\xa8\x69\x4c\x40\x10\xd0\x20\x36\x52\xd8\xfd\xc9\x87\x39\x5f\xa8\x25\x93\x74\x28\xe3\xf8\x8d\x48\x4a\xf4\x62\x6c\x96\x36\x38\xe1\xd3\x93\xe6\xd5\xc0\x34\x09\x7b\xdc\xe6\xd3\x8e\x2d\xbc\x56\xcd\x36\x30\x73\xf0\x07\x12\xb5\xd8\xae\xbc\x1e\x57\xb3\x1d\x4d\x86\x1a\x09\x0b\x4d\x00\x93\x6e\x22\xca\x40\x7e\x53\x89\x0a\x4d\x43\xe8\x1b\xd1\x2e\x4b\xba\x9f\x1b\x28\x76\x3a\x1a\x95\x30\x1c\x7d\xaa\xbe\x2e\x37\x22\x6d\x69\xf8\xfb\xb6\xb4\xbe\x8f\x9a\xbc\x6c\x07\xf9\x57\x31\x8e\xb6\x97\xbc\xb5\x4f\x1b\x45\x4f\x96\x35\x40\x9a\x95\x28\xf6\x0a\x80\x5f\x1b\x65\x6c\x78\x77\x7d\xf8\x14\x45\x37\xbe\x94\xa3\xca\x94\x1b\xcc\xb6\x70\x64\x69\x6b\xd9\xa0\xe4\xb3\x22\xab\x2a\x53\x1c\xfe\xa6\xd7\x37\x36\xcd\xfc\x45\x6f\x65\xb6\xb7\x69\xee\x6f\x7a\x9b\xaf\x6f\xb8\x82\x34\xfc\xeb\x04\xd7\xc1\x4f\x39\xbf\xdd\x0b\xd9\x73\x20\x8c\x9d\x48\x9b\x9a\x7c\x61\x4d\xbb\xdb\x19\x6f\xc5\x09\x1e\x95\x3f\x43\xf5\xe7\x91\x31\x69\x46\x01\xff\x92\xae\xe8\x86\x85\xb5\xd0\x3d\x4b\x38\x7b\xd9\x4b\x87\x09\xb1\xaa\x99\x2d\xe3\x4e\xb4\xa3\x4c\x68\x40\x1b\x4d\x88\x45\x36\x9a\x10\x84\xf0\x7c\x18\x6b\x9a\x22\x24\x74\xaf\xd8\xa2\xe2\xea\xc7\x92\xaf\x73\x95\x5d\x17\x1c\x62\xa0\x9b\x38\x4b\x61\x30\x20\x45\x68\x04\x4e\x61\x8c\x95\x64\x0f\xaf\xe5\xbd\x17\xfb\x65\xd7\xe2\xc8\x8d\xdc\xaf\xe4\x46\x64\x68\x84\x73\xee\xd5\xb0\xe9\x97\x3c\xb5\x08\x99\x07\x0d\x84\x4f\xb0\x27\x0d\x78\x83\x00\x7c\x24\xf4\xc0\xbf\x68\x74\x83\x5b\xa9\x52\x33\xcc\xf6\xd5\x1a\x44\xdf\x4a\xec\xaf\x9a\x19\x73\x33\xa6\x71\x33\x39\x3d\x53\xcf\x25\x5b\xc7\x71\xa2\xbf\x31\xba\x33\xba\x75\x25\x10\x93\x61\x17\xc7\xc9\x96\xed\xc6\x8d\x54\x72\xb2\xab\xa8\xc4\x9e\xed\x5d\xfc\x55\x48\x2a\x00\x53\xc3\xfc\x00\x6d\x1d\x8b\x22\x1a\xc1\x5f\x11\x63\xf9\x3c\xd9\xb2\x9e\x09\x69\xb6\x40\x5b\x15\x4c\xf7\xef\x23\x92\x26\x91\xae\x1c\x2a\xd9\xb2\x69\x1a\xed\x00\xfb\x2c\x42\x0f\x80\x2d\xeb\x9b\xe7\x56\xc7\x1f\x3f\x21\xcd\x8e\x62\x98\x59\x74\x39\x10\x48\x37\x33\xb6\xa5\x15\xdb\xd3\x03\x6b\x4d\x06\x2d\xd8\xbe\x35\x81\x46\xdd\x9c\xac\xd8\xdf\x65\xe2\x8e\x09\x21\x61\x10\xb5\xad\xce\x59\xb5\x63\xed\x0d\x59\x27\xd4\xa5\x2f\x85\xb1\xee\x4e\x54\xc9\xfc\xe6\x86\xcb\x57\xe5\xb7\xfc\xee\xb9\xb8\x85\x57\xf9\x2b\x49\x1a\xe9\xe0\x44\xa7\x33\x9e\xb5\x32\x7e\xdc\xa7\x6f\x24\xe5\xef\xf9\xea\x99\xd8\xed\xb2\x72\xdd\xa6\xaf\x87\x0e\x5f\xef\xa9\xe9\xa1\x5c\xf0\x30\xf0\x33\x4a\x35\x6c\xfd\x2f\x0a\xbe\x52\x32\x5f\xb5\x6f\x9f\x5b\xee\x7c\x25\x09\xdd\xe4\xe5\xfa\xb5\xa8\xbe\xea\x90\x15\xcb\x98\xcc\x06\x0a\xa4\xd0\x39\x1b\xcf\xa8\x62\xe3\xc0\x42\x51\xb0\x29\xcd\x5a\xef\xc9\x0b\x71\x09\x08\x02\x19\xfb\x24\xb8\x85\x33\x9a\x43\x9d\xc4\x8a\x49\xc1\x6a\xff\xc2\x85\x89\xa3\x3b\x71\xe4\x5f\x9d\x13\x97\x81\xf3\xa6\x34\x90\xb2\x1e\xef\xe8\xef\x77\xbe\x74\xe9\x2e\x7f\xd9\xc6\xa2\x95\x70\xe0\xf1\x63\xb0\x66\x46\xe9\xc6\xfc\x13\x99\x48\xbc\x7a\xd1\x19\x08\xc6\xed\x9d\x11\x55\xf1\x52\x1c\xf9\x4f\x79\x75\xc8\x8a\xe2\x8e\xa4\xfc\x72\x3a\x2f\x2d\x1b\x5c\x02\x1b\x7c\xa2\x95\xd0\x73\x88\xba\x9b\x07\xbb\xef\xa0\xb8\xcb\xe0\x21\x30\xa9\xc4\x8e\xab\x6d\x5e\xde\xe0\xa0\xf8\x3a\x21\xf3\xf2\x01\xbf\x62\xa7\x25\x4a\xbf\x34\x72\x8c\x90\x4b\xc0\xf5\xfa\x44\x26\x25\x95\x7e\x48\xc3\x99\xe3\x60\xf4\x10\xf0\xf2\xc9\xc1\x97\x02\x0a\x9d\x8c\xdb\x8c\xf9\x44\x89\x34\x3f\x9d\x82\x9d\xf1\xd3\xf9\x9d\x41\x05\x2b\xcf\xef\x8e\x8c\x4d\x69\xd5\xde\x1d\xd9\xa5\xba\x18\x8d\x32\x2b\x6d\xb7\x77\x52\x45\x21\x92\x5d\xa0\x92\x12\x73\xc1\x0e\x70\xfa\x53\xfc\x87\x09\x9a\x54\xec\x57\x27\xbf\xc9\xa9\xf4\xdb\xa9\x19\x76\xb0\xc2\xfd\xf4\xd3\x43\x0b\x12\x2c\x84\x8d\x09\x35\x6c\x6d\x1d\x34\x41\x87\x7d\x13\xc7\x68\xa9\xd8\xb3\x60\xd0\xe5\x07\xf7\x66\x86\xb8\x37\x24\x58\x85\xcc\x6e\xa4\x0c\x36\x92\x31\xc5\x7a\xa9\x12\x49\x33\x8b\xbc\x05\xf3\x61\x21\x4a\x6e\x44\x56\x3c\x03\x4d\x18\x18\x18\xc0\x84\x84\xa9\xc4\x46\xa6\x32\xe1\x26\x11\x04\x5e\x4f\x97\xa4\x28\x4d\xb2\xba\x5c\xa3\xb4\x51\x71\x9c\x31\x56\x36\x5f\x8a\x71\xfc\x2f\x69\x9e\xa2\xf4\x0f\xdd\x99\x83\xe9\x07\xdc\x56\x18\xe2\x92\x1e\x60\xdb\x53\xeb\x51\x13\xf8\xde\x4c\x2f\xb2\xcb\xb2\x47\xa7\x9d\x8d\x46\x24\x4c\x5f\x64\xcb\xa0\xeb\x2c\x5f\x64\x4b\xb3\xdf\x10\x37\xb6\x47\x18\xd3\x23\x95\x32\x46\x84\x20\x84\xb2\x2e\x88\x68\x07\x13\xbc\xa8\xbc\x96\x8f\x37\xb4\x7c\x17\x09\x37\x90\xf3\x75\x5d\x82\x13\x1f\x0e\x26\x8e\xe5\x7c\x3c\x96\xe9\x68\x54\x06\x64\xce\xa9\xfb\x24\xa1\x19\x7b\x25\x40\xad\x3d\xef\x51\x78\xbc\x12\x60\x81\x7c\x4a\xbd\xb6\x4f\xf4\x15\xf4\xd9\x9c\x9c\x7a\x34\x27\xc3\xb0\x40\x1c\x0f\x75\xbd\xe4\x74\x01\xea\xbe\x2c\xf1\xdd\x19\xcf\x08\xb9\x20\xe3\xb1\x09\xc8\xe6\x05\xbb\x8d\x62\xa5\x2e\xa4\xf9\xf8\x1e\xe3\x76\x74\x0d\x33\x96\xec\x28\xbd\x85\x3b\x4d\xdc\xdc\x14\x20\xdb\xbf\x95\xb9\xe2\x8d\x2e\x1a\xeb\xb9\x38\xe6\xac\x2d\xdc\x87\xc2\x75\x9d\x24\x7d\xe9\x6c\xd8\x97\x4a\xe6\xcf\x45\xe3\xa9\x67\xac\xa2\x9e\xe7\xc7\x86\x1f\xb2\xfb\x20\x22\xe9\x77\xff\xee\x17\xf4\x57\x83\x0f\x10\xb9\xc4\xb7\x30\xc2\x88\xa2\x32\xab\xaf\x63\xfa\x61\x6f\x02\x48\x9f\xd5\x58\x35\x98\xdb\x1b\xae\xbe\xc8\x79\xb1\x4e\x08\x86\xa7\x3e\x51\x8f\x7a\xd3\xad\x61\x98\x0c\x1b\xba\x02\xef\xfe\x3e\x74\x37\xc6\x2a\x2b\xd5\x8b\x75\xae\xf4\x55\x63\x38\x93\x2e\x51\x33\xf2\x1c\x6b\xc3\xa7\xc0\x86\x0f\x58\x01\xea\x96\x2a\x08\x76\x18\x5a\xf2\x35\x2c\xfd\x3a\x45\x10\xa3\x0e\xa5\xd6\x6f\x8c\xff\x47\xf8\x00\xb4\x60\x49\x8d\xa9\xb0\xd6\x92\x03\xfb\x2c\x43\x33\xc0\xc0\xae\xab\x1d\xe5\x7e\x6b\xb9\xdf\x06\x7a\xd6\xca\x28\x69\xc6\x8d\xda\x5d\xe4\x51\x8a\xf1\x45\x1b\x41\xe1\xcf\x7f\x83\x9c\x61\xf8\x14\x48\xf7\xa6\x2c\x0d\xf8\xd0\x74\xe3\x34\x43\xb4\xe9\xf0\xd2\x9d\x75\x77\x53\xf1\x79\xc2\x59\xf8\xa6\x6b\xcb\xdf\xdc\xc5\x0a\xaf\x55\x1a\x86\x06\x6c\x6c\x80\xae\x35\x20\x21\x5d\x6b\x28\x3e\xe7\x81\x7b\x83\x71\x6c\x80\x9a\x53\x6b\x38\xb9\x81\x08\x79\xae\x57\xdc\x95\x20\x20\x23\x03\x31\x87\x12\xa6\x20\x46\xbb\x97\xe0\x53\x54\xd7\x53\xbb\x65\x02\xbf\x0a\xb7\x9b\x7a\x36\xc8\x6b\x51\x31\xee\x75\x39\x52\x73\xd8\x70\xa2\x02\x5b\x00\xac\xc9\x4a\xe8\xda\x36\x85\x26\x5f\x89\x3d\x66\x83\x6d\x21\xef\xd8\x16\x9a\x62\xd2\x44\xd7\x56\xa2\x63\x63\x68\x4a\x98\xd7\x2c\x14\xb1\xb6\x86\xdc\xd9\x1a\xe2\x41\xb7\xe6\x86\x0d\x93\x5e\xd9\x30\x37\x04\x30\x83\x37\xf9\x9f\x1d\xb5\x60\x83\x29\x75\x16\x13\x01\xed\xee\xae\x58\x5d\x3f\xfe\xef\xdf\xd7\x23\x8b\x17\x84\x40\x1c\x9a\x8d\x9f\x73\x78\xd8\xa4\xfc\xe4\x0f\xaa\xec\xd8\x4e\xe0\x43\x08\xf6\x3b\x03\xed\x76\x70\x66\xcf\x95\xc6\x33\xc5\x00\x66\x2a\xe0\x6a\x43\x0b\xd7\x38\x7e\x6f\xc3\x9a\xe2\x85\x29\x3b\xe2\x88\x01\xf2\xce\x20\x8f\xca\xa9\x6c\x49\x25\xba\x8e\xc4\x46\x00\xd2\x71\x22\x36\xe9\x96\x1f\x50\x88\xd8\xe7\xd2\x17\x6a\x39\x29\xc5\x57\xb8\xf3\xc9\xfd\x6f\x9a\xf3\xc8\x69\x84\xb9\x91\xb5\x7b\x19\x8d\xf2\x93\x1e\x8b\xc5\x0d\x92\x2b\xfe\x23\xba\xac\x0f\xa7\x9a\xbe\x4b\x1a\x49\xbe\x91\xbc\xda\x46\xd4\xaa\xa8\xf5\x8b\x29\x3b\x67\x9d\xf0\xad\x72\xef\x20\x6a\xbe\x6c\x2c\x76\x2f\x79\x6b\xc7\x03\x1b\x58\x65\x72\x78\x3a\x5a\x9d\x7b\xd1\x28\xe2\x76\x9f\xa7\x16\x01\x6d\x6c\xa6\xc1\x43\xf4\x07\xf3\xb5\xa5\x37\x75\xed\x31\x3d\xc7\x6d\xe1\x2a\xb9\x9a\x3c\x25\x71\xfc\x87\xf9\xc6\xdd\x7b\x9d\xa9\xa9\x6e\xb3\xfd\x73\xd1\x79\x1c\x36\x75\x5f\x5e\xed\xb5\xda\xa1\x30\xf1\xda\x01\xed\xb4\x86\xd5\x0f\x8f\xd2\x1c\x71\xe3\x1a\x08\x43\xe4\x77\x26\x0f\xf7\x82\x9e\xbc\x5f\xec\x08\x4c\x87\xed\x8d\x4d\xa8\xc2\x9b\xe9\x6b\xdd\x20\xdc\xbb\xff\xee\x2d\x0d\x72\xba\x9f\xf1\xdc\x18\x73\xa3\x0f\x55\x61\x4e\xd9\xc9\x5f\x89\x1f\xfd\xa9\xbd\x18\xe1\x5b\x94\x0b\x7f\xe4\x97\xc6\x97\xe0\x74\xa2\x52\x24\xaf\xf0\xb8\xfe\x43\xb2\x57\x13\x23\x47\xaf\xd8\xfd\x89\xfe\xa2\x13\xf0\x9c\x23\xb4\x19\x48\xaf\x3d\x85\xfa\x26\xb0\xe9\xf2\x5f\xa2\xd5\x8f\x8c\xe3\x04\x6c\x7b\x58\x2b\x34\x56\x49\xee\xcb\x21\xfb\x4d\xc6\xb1\xf1\x67\x26\xa7\x54\xa2\x3b\xc5\x6f\xba\xbd\xaf\xcb\x5c\xb1\x7b\x25\x90\xa4\x75\xc7\x11\xb0\x63\x50\x36\x3a\x9d\x06\xdf\xc8\x24\x3a\x66\xc5\x81\x47\x34\x8a\x5a\x2e\xa2\x10\x2f\x0f\xc0\xbd\x12\xcd\xf3\x0c\xa7\x84\xea\xe2\x60\xa7\x84\xcf\x92\x76\x79\xab\xa0\x45\x23\x24\xa6\xe8\x1b\xcd\x29\xbb\x2f\xbd\x5d\x71\x44\x9f\xd0\x37\xad\x74\x6b\x1e\x0c\x40\x30\x90\x1e\x18\x6c\x44\xae\xb0\xb1\x02\x8f\xe8\x5f\x1a\x24\xef\x59\x82\x87\x80\x13\x0a\x9e\x57\xbe\xd5\x06\xec\x75\x6f\xc7\x81\xfc\x05\x08\xd9\x4c\x85\x0a\x5d\x5a\x86\x01\x2a\x07\xdc\x53\xe1\x3e\x6b\x8f\x9c\x4d\xad\xae\x5d\x58\xb0\x18\xab\x19\x57\xc6\x92\x6d\x3c\x63\x4c\x58\x23\x36\x26\x46\xce\x2b\xce\x28\x34\xf7\x3c\x29\xa9\x20\xe4\x54\x8e\x46\x27\x12\x80\x2f\xc8\x16\x02\x40\x1e\xda\xb2\x2a\x2a\x17\xf9\x12\x80\x5c\x16\xf9\xd2\xbc\x25\xf4\x5f\xab\xad\x6b\x01\x11\xbc\x61\x6e\xf7\x7c\x95\x67\x05\xbe\xc0\xe8\xe3\xc5\xef\x87\xe9\x74\x3a\x1d\xeb\x7f\x66\x1b\xfd\xff\xff\x84\xff\x67\xeb\xdf\x0f\x4f\xa6\xd3\xeb\x31\xfc\xb3\xd1\xff\x7f\xf2\x37\xf8\xff\x7f\xfd\x7e\xd8\xf0\xcd\x66\xf9\xf8\x86\xb6\x35\x3f\x0e\xf8\x31\x68\xc3\x04\xf5\xb8\x79\xf1\x7e\x9f\xa8\x49\x25\x0e\x72\xc5\x21\x08\xbe\xbe\x84\xa3\xdf\x55\x44\xe6\x51\x94\x46\xb5\xfe\x8b\x46\x37\x11\xa1\x72\x68\xf6\x74\x1c\xf3\x89\xa1\x98\x09\xe9\x76\xff\x75\x91\xad\xf8\x56\x14\xeb\x3e\xb5\x92\x82\xc0\xfc\xd5\x3e\x2b\x21\x32\xff\xff\x1d\x51\x10\x91\x97\xc7\xac\xc8\xd7\x60\xe3\x1a\x40\x4b\xaa\x5c\x15\x9c\x45\xbf\xff\x7e\x88\x46\x1e\x48\xec\x73\x95\x4c\xf5\x9b\xdb\x70\x0a\xb3\xbf\x92\x8e\xd4\x3d\x93\x79\x36\x2e\xb2\x6b\x5e\x44\xd4\x54\xa3\x29\x62\xa3\x37\xe1\x18\xdc\xde\xe4\x46\x2a\x68\x96\xc1\x1f\x88\xfd\x41\xbd\xd1\xbc\x43\x44\x77\xf3\xc8\x84\x6c\xb4\x92\xfa\x28\x05\x1f\xc0\x4c\xf2\x2c\xa2\x0d\x4c\x99\x96\x51\x9a\xaf\xe6\xd1\x2a\x2b\xc1\x2c\x2d\xb9\xe3\x8a\x3c\xba\xe6\x8f\xd0\x2b\x6f\xfd\x28\x2f\x1f\x65\x8f\xe4\xa1\x2c\xf3\xf2\xe6\x91\x6e\x41\xc8\x28\xe8\x60\x4b\xf2\x16\xd1\xe1\x0d\x66\xdc\x6e\x45\x01\x31\xab\xf1\x66\xfd\x3b\xb8\xd4\x07\xa7\x74\xcb\x77\x9a\xa6\x18\xd2\xd6\x5c\x98\x97\xfa\x94\xbe\x6e\x1c\x52\xb4\xf9\xeb\xff\x20\xf4\xa1\x5d\x97\x88\x95\x1c\x6c\x8e\x75\x99\x48\x32\xc8\xe3\x38\x07\x30\xe6\xd5\xd6\xff\x05\x26\xd1\xb4\x9c\x64\x0a\xd3\xed\x5f\x09\xa7\x79\x5d\x23\x12\xb9\x59\x08\x8b\x77\x89\x04\xc2\x53\x0e\xcb\xa0\x69\xaa\xd4\x5a\xcf\x3e\x3e\x6e\x9e\x7c\x10\xf8\x4c\xa7\x45\x0d\x00\x6d\x90\xc0\x23\xab\xb8\xcb\x4b\x0c\x76\x1a\x45\xed\x12\x98\x0e\xbd\x4b\x93\x0f\x22\x85\x99\x56\xbe\x07\x16\xf5\x0f\x47\x16\x0d\x89\xec\xc7\x06\xfb\x0a\x96\x04\x22\x86\xb8\x85\x31\xd7\x5d\x44\x17\xcb\xc6\xf0\xbf\xf3\xee\x1d\xed\xb5\x0c\x7c\xef\xf4\x86\xe8\xde\x12\xad\x68\x21\xa1\x12\x64\xfe\x6d\x60\x38\x8c\xfc\x78\x34\xd5\x53\xd1\x73\x78\x56\xe2\xc8\x8d\x4e\xf7\x7b\xfe\x5e\xbd\x15\x6f\x2c\x12\x79\x67\xb1\xbe\x6a\x74\xd0\x21\x96\x9b\x23\x16\x95\x99\xca\x8f\xbc\xb9\x49\xff\xd4\xf3\xf4\x55\x1f\x5c\x7a\x17\x16\x9e\xb7\xb9\xc4\x8f\x40\x47\x6f\x7b\xe7\xb5\x6e\x2c\x13\x0a\xbe\x33\x92\x07\xe7\x5d\xa2\x0d\x1e\x7e\x1b\xd1\x19\x7d\xdd\x53\xe7\x17\x42\xee\xb2\xae\x12\xde\x0a\x44\x4f\xc1\x47\xd5\x56\xdc\xa2\x07\xdc\xcf\x5b\x5e\xbe\xb1\x51\x7c\xa0\x53\xbf\x71\x4f\x24\x34\x7f\xe9\xc4\xad\xaf\xca\x26\xaa\x5b\xd0\x81\x9f\xf3\x8a\x3f\x13\xfb\xbb\x67\x87\xe0\x42\xb7\xa2\x96\xd6\x50\xf5\x5e\xf1\xd0\x84\x8c\xa9\x79\x02\xa0\x7b\x1d\xac\xbe\xeb\xe2\x20\x93\x46\xb0\x81\xbc\xd2\x64\x72\xcd\x86\x10\x33\xb4\x9b\x3c\xeb\xc1\xfb\xc3\x3e\x18\x27\x72\x0c\x05\xa5\x3b\x67\x3e\x02\xb6\xb6\xa7\x83\xaa\x8b\x49\x67\x98\x6d\xbf\x2c\x36\x04\x63\xe7\x2c\x58\xbc\x19\x35\x64\xc3\x04\x83\xff\x22\x4d\x23\x01\x62\x40\x10\x40\xe1\x0b\xf3\x6d\x45\x73\xa6\xe6\x3f\xe5\xe9\x27\xf9\x20\xef\x41\xea\xc7\x40\x11\x60\xad\x1c\xd1\x12\xcd\x96\x09\x3d\x5f\x52\x5f\x2d\x9a\x31\x9a\xc0\x1f\x0f\x95\x44\x70\xd0\x12\xc4\x72\x0f\x95\x2b\x78\xa6\x8f\x53\x39\x81\x3f\xce\x97\xd4\x93\x52\x4e\xf4\xbf\x9a\x2f\x01\x66\xb4\x1b\x7b\x25\xa4\xc8\xb8\x1b\xfe\x5e\xe4\xe5\x1f\x3f\x64\x8a\x47\xf4\xe9\x67\xd3\x30\x27\x94\xd7\x44\xb4\x91\x85\x2f\x44\x7d\x28\x82\x9d\x8b\x11\xd4\x9e\x05\x05\x5e\x73\xa9\x8f\x10\x2c\x56\x50\xf0\x56\xc8\x3f\x34\xc5\x8c\x80\x3c\xba\xa4\xe7\xbc\xc8\xee\x82\xb4\x4d\xa1\x4f\x56\x09\x08\x5c\x50\xc5\x33\x57\x43\xb6\x5e\xbf\x14\x6b\x0e\x66\x0a\xb0\x93\x7c\xd6\x1e\x65\x5b\x80\xe4\x18\x54\x76\x28\xd7\xe2\x39\xdf\xab\x6d\x44\x9f\x4c\x7b\xc8\xa8\x58\xb9\x70\x5d\xae\x28\x53\x66\xe3\x9a\x1c\x40\xa3\xb4\xbd\x7c\xf2\xd4\xd4\x7c\x34\xe6\x10\x76\xa2\x66\xd3\x0f\xb3\x2a\xbb\xec\xfd\x57\xf9\xcd\xb6\xd0\x93\x84\xe8\x0b\x11\x9d\xf1\xbf\x04\xc3\xd8\x89\x23\x1e\x14\xcd\xc9\xe3\x9c\xf6\xd0\xff\x73\x47\xe6\xb5\xb1\x6e\x70\x2c\x9e\xca\xae\x81\x71\x3e\xf7\xd6\x38\xf3\x8e\x9c\xa8\xec\x1a\xec\x9b\x99\xaa\xeb\x28\x32\x95\x65\x07\x25\x0c\x5e\xa9\x77\x02\xe5\x25\x7b\x05\xef\x15\x78\xb3\x29\xf8\x95\xef\xf8\x4b\x93\x32\x80\x97\x59\x5e\x42\x02\x6b\xb6\xef\x1f\x6d\x50\x41\x5d\x47\xba\xda\x08\x04\x02\x49\x2b\x93\x71\x42\x33\x79\x03\x8e\x34\x56\xec\x72\xf5\x04\xd0\xa6\xd7\x7c\xcf\xf5\xfb\x66\x95\xf3\x0a\xc3\x18\x79\xbf\x14\xb4\x8e\x45\x85\xb2\xfb\x9c\x3e\x21\x84\xf2\x12\x5e\x8a\x27\xea\x3a\xf8\xf5\xcb\x17\xad\x0e\x2a\x5f\x46\xf2\x4a\x14\xc7\xf6\x28\xfa\x81\xa8\x79\x1c\xab\x3e\x1d\x37\x67\x50\xa1\x33\xfc\xe0\x71\xdc\xfd\x16\x6c\x3d\x7b\x2b\x80\x1c\xe2\x04\x1a\xe5\x02\x53\x96\x83\x33\x20\x0c\xf7\x3a\x17\xa2\xba\x24\x9c\x5d\x0b\x84\xe0\x45\x0f\x03\x05\xff\xf8\x60\xa9\x3d\x23\x78\xfc\xdf\x8b\xdf\x6f\x7f\x1f\x2f\x47\xbf\x3f\xb6\x7f\x8c\xde\xef\x8a\x4f\x9c\x12\xc7\x6a\xff\x1a\x73\x93\x44\xd9\x7e\x5f\xe4\x2b\x10\x51\x3d\x7e\xbf\x2b\xdc\xd3\xa0\xdb\xc6\x1c\x3b\xc8\x4f\x29\xaf\x6b\xfc\x1b\x37\xc0\x49\x4f\xb8\x31\xe6\x6d\xaf\x08\x6b\x36\xe7\x01\x3e\xcb\x85\x32\xd3\x01\x61\xdc\x7d\xef\xac\x3b\x8a\x41\xfd\x78\xbc\x2f\xb2\xbc\x8c\x2c\x50\x9a\x01\x5a\xcb\x37\x89\xec\x9a\x1b\x87\x33\x9e\x33\xe9\x9b\x70\x8a\x34\xcd\xfa\xe7\x24\x6f\x7f\x29\x08\x00\x50\xf6\xa6\x2e\xa2\x77\xd1\x48\x2c\x01\xd7\x8f\x50\xfd\x7f\x96\xeb\x3f\x4f\xa0\x76\x0d\x96\x87\xaa\x86\x05\xb1\xae\xcf\xfd\x64\x61\x9e\x7e\x4b\xe9\x33\xa2\x1b\xf2\xa2\x4a\xe8\x5b\x98\x01\x4d\x05\x09\x0b\xe1\xe2\xa4\x95\xc1\x31\x80\x55\x84\x75\xa0\x5d\x43\x2f\xf0\xf2\x69\xc7\xe3\xfb\x23\xdf\xbf\x15\x2f\xca\x75\x82\x1e\x01\xe1\x81\x4a\xc2\x39\xa7\x58\xad\x59\x32\x4b\x37\x5e\xbc\x57\xbc\xac\xf4\x95\x8c\xe4\x02\x15\xcf\x3d\x6b\xff\x4e\x6f\xe1\xee\x2a\x71\x32\x97\xfa\x58\xa5\xf0\x7f\x76\x7f\x22\x7e\x30\xae\xee\x0e\xe5\x71\x14\xa2\x45\x05\x9e\x8b\xd5\xb9\x8f\x76\xf9\xd9\xaf\x8c\xac\xe6\x1b\x63\x96\x0e\xf8\x7b\x36\x4f\x33\x23\x5f\x09\xf1\x47\x83\x6c\x94\x16\x61\x8f\x60\xec\x05\xa1\x67\x03\x57\xd4\x4c\x83\xe4\x37\x79\xa5\xb8\x44\x65\x6f\x27\xc2\x41\xd7\x38\x9e\x93\xba\x4e\x04\xcc\xc1\x2b\x98\x08\x63\x05\x9e\x2e\x96\x27\x42\x21\x03\xec\x3d\x91\x9a\x61\xe5\x5f\x42\x89\xde\x26\x50\xaa\xd6\xec\x85\xc5\x8f\x81\xca\x9c\x05\x3a\xba\x60\xed\x25\x5f\xa7\x92\x1e\xb3\x22\x2d\x4f\x66\x54\x99\x1e\xd5\x4a\xfc\xbf\xdc\xfd\xdd\x76\x1b\x37\xb6\x2f\x8a\xdf\xf3\x29\xc4\x1a\x49\xad\x42\x13\xa4\x48\xc9\xb6\xac\x92\x20\xee\xc4\x71\x3a\xe9\x38\x76\x3a\xce\x47\x77\x53\x6c\xff\x8b\x55\xa0\x84\x98\x04\x98\xaa\xa2\x2c\xb5\xc8\xff\xd8\xf7\x67\x9c\x31\xf6\x23\xec\x8b\x73\x7d\x1e\x62\x3d\xc5\xb9\x5e\x4f\x72\x06\xe6\x04\x50\x40\x91\x92\xdd\xbd\xd6\xbe\x38\x9b\x17\xc5\x2a\x7c\x7f\x4e\x4c\x00\x73\xfe\xe6\xea\x0e\x24\xc9\xd9\xce\x81\x51\x77\xc8\x18\xab\x9d\xb2\x93\xc1\x1d\xb5\xe1\x9d\x78\x41\xe3\xd4\xcc\xf7\xfb\xad\x9b\x84\x12\x06\x7a\xa8\xf4\x73\x20\x64\x55\x67\x32\xd7\x84\x06\x96\x04\x90\xe8\x10\xce\xe8\xf2\x94\x10\x5a\x4e\xe4\x94\x09\x4f\xe4\xbd\xd2\xc5\x6d\x14\xd4\x76\xda\xdc\xdc\x72\x72\x2f\x0c\xe0\xf0\xbb\xaf\x04\x94\x9a\x3a\x9e\x1a\x45\xab\xce\x70\xa7\xcd\x1b\xef\xb3\x46\x7f\xce\xd3\xbc\x40\x4d\xcd\x72\xb3\x29\x71\xe9\x63\x56\x59\xb3\x66\x25\x9e\x0a\x51\xce\xd0\xcf\x95\x7e\xb3\x41\x25\x38\x4e\x21\x40\x5a\x6f\xb1\x0b\xd6\xd8\x05\x20\x88\x55\xb1\x7b\x34\x22\xfa\xc5\x62\xd1\x9e\xc3\xde\xde\x23\x69\x50\xc6\x8c\x32\xd2\xd0\xde\xa6\x37\xf8\x66\xa0\xff\x43\x91\xf5\x6b\xb4\xb7\x1e\x49\xd4\x87\x2a\x89\x10\x70\x0e\x36\xf0\x9e\xeb\x35\xcf\x8a\xc8\xa4\xfc\x5e\x2c\x16\x2d\xe1\x73\x72\x0f\x6a\xf5\xce\xa1\x36\x18\x6b\x56\xb9\xcb\x34\xe5\x3b\x87\x05\xd5\x28\x70\x05\x68\x65\xcd\x59\x95\x81\x1a\x00\x20\x0a\x2f\xf4\xb9\x5f\xd3\xb1\x05\x41\xb3\x77\x9e\x80\x93\xd2\x20\xe4\x8d\xe8\x90\x58\x89\xa3\x87\x02\xe9\x51\xb1\x0d\x44\x65\xad\x7e\x98\x01\x3e\xd6\x94\x13\xa4\xc8\x17\xbc\xe6\x1f\xaf\xb6\x9f\xd4\xca\x22\x88\x26\xc4\xd9\x20\xae\x55\xfa\x95\x35\xb9\x6f\x10\xe2\x8c\x2f\xda\x23\xb6\x99\x21\x08\xd8\xbc\x7e\x24\x37\xbe\x93\x1b\xdf\x93\x9b\x75\xb3\x09\xe3\x15\x44\xf1\x09\xe9\x7b\x1a\xa4\x8d\xda\x85\x69\x3b\x4f\x54\xa7\xf7\xb4\xe3\x17\x43\x93\x04\xab\x60\x91\xe0\x85\xfc\x10\x6e\xe1\xcb\xad\x89\x84\x2d\xfb\x60\xa9\x7e\x6c\xa9\x52\xfc\xcb\xc5\x42\x39\x9d\x76\x61\x76\x0c\x5a\xf8\xf2\x9c\xbd\xd1\xb0\x55\xd8\xce\x43\x63\x43\x42\xd1\xf5\xc6\xa4\x35\xb5\xb4\x53\x02\xb7\x7c\x3b\x5e\xda\x29\x31\xb1\x1e\x9a\x99\x81\x9f\x4d\xe7\xa1\xc0\x81\x1f\xdc\x31\xa9\xaf\x54\x0e\xc6\x9c\x5a\x21\x5b\x32\x63\xfb\x08\x89\x8d\xfe\xb2\x25\x17\xfa\x40\x64\x1f\x51\x51\xc7\xd4\xef\x9f\x90\x73\x20\xad\xd6\x68\xc9\x94\x59\xc2\x03\xb2\xb0\x6d\xec\x89\xf7\x8c\xf5\x64\x91\x55\xe9\x68\x1b\x66\xf6\x76\xf9\xaf\xe6\x28\x9b\x1c\x3f\x21\xb3\x8f\x36\xca\x03\xb9\xec\x57\xd0\x69\x08\xa1\x81\x04\x28\xd9\x2b\x99\x48\x72\x46\x50\x35\x43\x16\xc9\x48\xef\x3b\x0d\xe8\x53\x03\xac\x24\xd8\x17\x22\xd1\xcb\x3c\x13\x63\x31\x19\x4e\x07\x0b\x7e\xc3\x17\x9f\x1f\x8d\x79\x96\x48\x92\xd6\xf0\x94\xfb\x48\xea\xca\x1a\xe0\xa8\xc7\x6f\x04\x84\xa5\x0a\xed\x11\x7c\xbc\xd1\xfb\x5e\x43\xec\x4e\xcf\x8f\x36\xc5\x3f\x45\x45\x0e\xfe\xf3\x73\x16\x45\x65\x4d\x79\x77\x88\xdc\xff\xfa\xe2\x7e\xac\x38\xff\xc2\x98\xfd\xcf\x50\xbc\xfd\x14\xed\x40\x0e\xf2\xeb\x73\x58\xe4\x61\x16\x4b\xb3\x1a\x57\x3c\x2b\xf3\xeb\xe4\xf0\xf2\xed\x21\x19\xfb\x73\x24\x95\x41\x45\x7e\x5e\xb5\x6a\x00\x52\xb0\x49\x7f\x44\x11\x09\xc3\x05\x04\x29\xf5\x7d\x41\x83\x90\x3f\x64\x57\x8f\x25\x69\x95\xf7\x30\xe0\x63\x49\x36\x21\x75\x13\xec\xe9\x7d\x90\xfe\x86\x44\xf1\x7e\xcc\x06\xdd\x37\xb0\x31\x6c\x18\x14\xe4\x48\x1f\x4f\x17\x51\x64\xbc\xe0\x8f\xa7\xed\x05\xff\x55\x95\xc5\xa3\x69\x03\x0e\x0d\x04\xfd\x63\xa9\xd6\xab\x47\x13\x46\x30\x9a\x26\xf0\xa3\x09\x7b\x81\x75\x21\x1e\x4d\xd8\x16\xa2\xe0\x70\x43\x89\x97\x63\xad\xc0\x46\x4e\x3d\x68\x68\x13\xbe\xad\xb7\xea\x07\x0f\x43\xeb\x92\x7c\x34\x75\xaf\x34\x20\xd2\xfb\x78\xea\x5e\x68\x68\x94\x8f\x26\xef\x1a\xc6\xc6\xf8\x48\x06\x2e\x3c\x5e\xfb\x7f\xb1\xae\xdb\x6c\x40\x0b\x58\xc1\x82\xae\xb9\x28\xdf\xef\x16\x68\x27\x0a\x20\xce\xd9\x08\xaf\x78\x55\x7d\x34\x0f\x87\xfc\xa0\x63\x55\xbc\xac\x7f\xca\x66\x3b\xec\x44\x5b\x19\xe0\xd2\x0b\xff\x56\xcd\x77\xe2\x34\xc2\x57\x93\x29\x45\x5b\x2e\xa1\x95\x68\x20\x49\x6d\x84\xbb\x7d\xd8\x5a\x28\x51\x50\x5a\x90\x7f\x00\x68\x58\xa8\xa4\x21\x50\x16\xaf\x56\x81\x08\x36\xe9\xd4\x46\x98\x40\x25\xb2\x9f\x7d\x2e\x09\xd9\xee\x56\xa0\x02\xc9\x0e\xab\x37\xba\x53\xdf\x7d\x2a\x11\x0f\xb5\x75\xaa\x69\xb4\x53\x9c\x49\x22\xd7\x86\x11\x28\xc1\x64\xb2\x5a\xa9\x8a\xc3\x45\x77\x90\xcb\xc3\xc8\x5d\x7b\x1a\xcb\x33\x42\xf3\x10\x6a\x06\x52\x7d\xd5\xb0\x10\xc2\xdb\x46\x81\xfd\x55\x02\xb8\x1a\x7a\xef\xa4\x1a\xb0\x7d\x01\x02\x0a\x2b\x9e\x60\x70\x2a\x10\x5e\x92\xc0\xcb\xc5\x90\xec\xf3\xef\x8d\x08\x75\x6d\xfa\x63\x26\xaf\x74\x27\x18\x31\x6f\x13\xbf\x17\x3a\x1c\xc1\x6e\xd4\xcf\xe2\x88\x50\x41\xa3\x9e\x6b\xa0\xc8\x53\xe6\xb7\xd8\xdc\x4e\xf8\xc4\x2a\xef\xb7\xea\x66\x01\x00\x3b\x19\x8a\x4a\xec\x2b\xcf\x90\xf4\xf8\x3e\x2b\xf0\xbd\xcc\xa1\x67\x35\x78\x12\x4d\x21\xfb\x23\xba\xd7\x9d\x8e\x48\x58\xea\x6d\x68\xe5\x47\x50\x01\x03\xce\xdf\x47\x57\x49\x49\x34\x9f\x24\xf9\x07\xd0\x0a\x97\x05\xca\xf6\xfc\xcb\xc3\xc1\x89\xcd\x20\x80\xcd\x59\x69\x47\x82\xdc\x13\x78\x52\x4e\x3b\xad\xc6\xd9\xdb\x20\x54\x5a\xeb\x44\x46\x15\xa9\x41\x10\xb4\x43\xdf\xf0\x03\xde\x5e\xb2\x37\xa2\x06\x51\x90\x6c\x2d\x66\x1c\x55\x2b\x2e\x77\x36\xc4\x7b\x89\x88\x8c\x68\x84\xf7\x75\x1f\x91\xf6\xe7\x83\x96\x6f\x02\xf6\xf7\x25\x7b\x63\x50\x93\x02\x29\xb3\x3c\x24\x41\xa8\x9f\x8a\x76\x2a\x56\x0b\x51\x27\x87\xfd\x64\xdc\xfd\x8c\x1c\x6a\x52\x92\x70\xa6\x26\xca\x75\xf5\x94\x0e\xc9\x59\x76\xde\x38\x80\xde\x88\x41\x69\x50\x93\x0c\x8e\xaa\x0f\xff\x9e\xe4\xcb\x62\xb3\xe4\x75\xb6\x59\x92\xcf\x0e\x85\xc1\xcb\x24\x44\xb0\xee\xd0\x8d\xe3\xc3\xbf\x67\xc9\xa2\x26\x63\x3f\x40\x1d\x06\x48\xf2\x4d\x5e\x97\x8b\x4d\xae\x64\x5d\xaa\x45\x90\x56\x69\x83\xc2\xb1\xdb\xe1\xdf\xab\xe4\x5a\xcc\xeb\x20\xc8\x8e\xe4\xcb\xcf\xb2\xe4\xb9\xba\x92\xe2\x1f\xbc\x38\x58\xaa\x42\xcc\x05\x2f\x0f\xe0\x9c\xfe\x20\xea\x55\xa4\x23\xc1\xe6\x92\x3d\x4d\x01\xf9\xec\xe8\x8b\x45\xdd\x8f\x7a\xdc\x58\xbd\x65\xd1\x8b\xba\x5c\xa0\x83\x30\x0e\xcb\x02\xbf\x25\x7e\x5b\x5b\xa0\x9c\x50\xbe\x5d\xc8\xc1\x2c\xab\x44\xce\xee\x81\x8d\x88\x1a\xfe\x2a\xa2\xc8\x2c\x44\x1e\x1f\x15\xd1\x9f\x57\xda\x01\x39\xc5\x88\x02\xc7\x16\x35\x0c\x61\x44\xf5\x86\x2a\x72\x7b\xab\x88\x7e\xa3\x96\xdc\x3a\x34\x3b\xbb\x88\x1a\xc6\x30\xb2\x2c\x22\xba\xd8\xf4\xec\x7b\x44\xbf\x82\x15\x38\x8d\x7c\x1e\x23\xa2\x5f\x66\xf9\xfb\x6a\x95\xe5\x8d\x87\x95\xe4\x31\xb5\x73\x01\xa2\x9d\x10\x7a\xbd\x88\x9a\xb5\xc3\x45\xd1\xef\x69\xd4\xac\xee\xba\x2e\x9a\x23\x88\xda\x13\x3f\xa2\xdf\xc2\x22\x91\x46\xad\x51\x1d\xd1\x97\x55\x9e\x46\xad\x23\xba\x48\x8f\xf4\xc1\x2a\xff\x0a\xb3\x64\xf7\xd8\x43\x5f\x44\x69\xe4\xce\x06\x23\x8a\x8e\x5f\x61\x71\xcd\x91\x94\x75\xfd\x1b\xa0\x93\x15\xca\x15\xd5\xb9\x96\x1c\x5c\xe1\xfb\xaf\xad\x6f\xdd\xf2\x91\x6e\x4c\x7b\x74\x60\x3d\x74\xbf\x18\x77\xe8\x22\x74\xfd\x79\x15\xf9\x3d\x6b\xca\xa3\xfb\x20\xec\x60\xf4\x80\x01\xa2\x3d\x1c\x07\x6a\x7d\x70\x9c\x38\x2f\x33\x6c\x60\x94\xba\x48\x6e\x30\x18\x8f\x26\x8e\x1b\x37\x98\x58\xab\x1b\x3d\xce\xce\x95\x10\xb5\x19\x1b\x6f\x33\x42\xd0\xf7\xad\x6e\x64\xb8\xd4\xc7\xef\xaf\xa3\x34\xd2\xdb\x70\xfb\xfd\x47\xf3\xfd\x9a\xdf\xd6\x61\xeb\x5a\x9f\x1f\x4a\x7e\x13\xfa\x7c\x0d\xed\x0c\xc4\x30\xf4\xf8\xb1\xf1\xf0\xba\x74\xe2\x06\x95\x66\xe7\xac\xeb\xd4\xb9\x7e\xef\x55\xe6\x67\xd3\xd1\xcd\xd8\x09\x32\xf8\xd9\xf4\xb0\xef\xad\x9b\x6f\x8f\xfb\x3c\x5b\x2c\x34\x79\x59\x5f\x5d\xa7\x11\x4c\x70\x1c\x86\x7c\x99\xe5\xd5\x9d\x1d\x83\x5f\x47\xad\xd9\x6d\x5a\x3d\x0a\xe9\x00\xba\xfe\xb0\x67\x7c\xbc\x6e\x0f\x0e\x5d\x1c\x4c\xd5\xed\x36\x8c\xeb\x97\xce\xd5\x4f\xf4\x8b\x9d\xf1\x80\x43\x74\xdf\x60\xf8\x25\x0a\x49\x83\xdf\x34\x8d\x9f\x37\x78\xa3\x36\xd9\x30\x13\x63\x97\x26\x40\x09\x4d\x78\xb7\xd9\xb0\x05\x0f\xc7\x60\xb3\x77\xb1\xe9\x7d\x17\xa5\x91\x3d\x3c\xb7\x6e\x3f\x45\x69\x14\x72\x8f\xd6\xe7\x4d\x94\x46\x76\x89\xc5\x3e\x59\x66\x3e\x6d\x58\x16\xbb\xa4\x61\x59\xec\xa1\x0c\xcb\x62\x0f\x61\x30\x8e\x96\x0e\x2c\x8b\x80\x2c\x2c\x8b\xfd\x54\x61\x59\xd8\xe9\xdf\x72\xdd\x25\x15\xba\x28\x96\x28\x38\xd7\x60\x72\xfb\x14\x21\x9c\xdc\x01\x41\xd0\x29\x05\x04\xc1\x0e\x8b\x65\xd1\xa2\x07\xc1\x28\xfa\x28\x41\x78\x28\x94\xdf\xa5\x0f\x13\x8d\x65\x11\xd0\x8c\x65\x11\x90\x8c\x65\xf1\x00\xc5\xf0\x3c\x0c\xc1\x80\x7e\x34\x93\x61\x87\x5a\xec\xfa\x35\x1d\xbd\x4b\x2f\x96\xc5\x1e\x72\xb1\x2c\x76\x06\x66\x78\x03\x60\x3b\xcb\xab\x6a\xfb\x34\xde\x76\xfd\xc3\x54\xc7\xf8\xb6\x89\x8e\xbf\x60\xb4\x57\x97\x9d\xd1\xe1\x93\xa2\x89\xa1\x45\x34\x42\x42\x14\x4d\x61\x06\x98\xd5\x98\xdd\x8c\x83\xe9\x90\xfa\xeb\x26\x7d\x33\x90\xaa\x5c\x66\x0b\xf1\x0f\x03\xc9\xb9\xc7\xe8\xbe\x77\x47\x59\x1e\x08\x79\xc0\x51\x47\xa8\x75\x6f\x5b\x36\x92\x6a\x9a\xbd\x46\x56\x4e\x73\x59\x1b\xaf\xac\x9b\xa4\xe0\x9b\xac\x26\x75\x96\x5f\x13\x2b\x83\x51\x12\xa2\x79\x3d\x21\xd7\x80\x3c\x13\x0d\x06\x03\x84\x0e\xc1\xa9\x79\x00\xe9\xd9\x10\xdb\x46\x02\xfe\x0e\xf4\xc4\x80\x7b\x8d\x0e\x22\x42\x73\x38\xeb\x05\x9c\xb3\x5d\x90\x33\x5a\x75\x14\x63\xc2\xf1\xb0\xe3\xa4\x62\x62\xf0\x9b\x12\x12\x23\x67\x4c\x92\x14\xdc\x2c\x10\x9d\xea\x8d\x48\x10\x00\x0a\x66\x15\xb8\xeb\x49\x05\x95\x5c\x23\x16\x44\x97\x65\xbb\x9c\xe7\xb7\x32\x57\xb2\x12\x55\xcd\x65\x7d\x30\x13\xb2\x10\xf2\xaa\x3a\x98\xab\x12\xf8\x4e\x14\x5b\xd1\xe9\xb0\x6c\xeb\x55\xd5\xd5\x70\x81\x17\xc2\x7c\xb2\x98\xb2\x7a\xb2\x70\x52\x0e\x1c\xaf\x44\xe7\x9a\xd3\x5f\x28\xf5\x7e\xbd\xfa\x8e\xdf\xed\xb9\xf6\xc6\x56\x4a\x6a\x14\x94\x26\x20\x3d\x34\xae\x51\x88\x88\x53\x49\xd2\x7a\x62\xc4\x4c\x46\x8c\x31\x41\xac\x96\x9c\x82\x6d\x7e\xe4\xf5\x45\xe3\x89\xd6\xf7\x2d\x1a\x40\x97\x89\x38\x2e\x13\x61\x85\x68\x9c\xa9\x7e\x84\xaa\xf1\x3a\x1e\x25\x8c\x26\x88\x68\x86\x57\xd9\xd3\xa8\xcb\xde\xc0\xb7\x27\xe7\x64\x45\xeb\xb1\x94\x61\x12\xf6\x22\x7d\x2e\xd1\x5c\x42\xe3\x85\x16\xb1\x42\xac\xbb\x20\xc0\x1e\xd0\xbb\xdd\x54\x26\x6a\xea\x4c\x6b\x65\xc4\x41\x60\x6c\xb7\x74\xa5\x9b\x5a\x54\xdf\x9b\xcd\x43\xd8\xdc\x76\x9a\xec\x91\x0c\xe2\xe9\x5f\xd4\xc4\x99\x24\xb7\x1d\x08\x53\x3a\x02\x7d\x60\x4d\x38\xcd\x1b\x10\x07\xf3\xfe\xbd\x2a\xf4\xdb\x96\x5e\x9b\xdd\xdc\xeb\x6c\xb9\x47\xee\x20\x8f\xe3\xe3\x27\x2c\x34\x29\xaf\x37\xf0\x0d\xec\x37\x1e\x85\x07\x85\xa0\x92\x95\x1d\x0f\xa5\xa9\xcb\xa4\x35\xab\xfe\xc7\x32\x5b\x5d\x83\x99\xf5\xc4\x9a\x59\x8f\x63\x28\x22\x9a\x04\x91\x76\x5f\x24\x09\x4d\xde\x3d\x60\x7e\x1f\x6b\xe7\x22\x98\x8d\x93\x8d\x61\xc2\xa5\x8d\xe5\x76\x1d\x63\x59\x78\x11\x60\x63\x25\x09\xed\x82\xb2\x07\x00\x3e\x60\x41\xb0\x85\x5c\x40\xbb\xe3\x92\x84\x4a\xe2\xed\x74\x0b\x5f\xe5\x73\xb7\x4f\x16\x20\x64\xc3\xb7\x6f\x60\xcf\xfe\x13\xbf\xad\xbf\x28\x79\xb6\xdb\xb8\x49\xcd\xea\xf1\x3b\x95\xd4\x24\xbd\xdf\x92\x01\x28\x46\x31\x8e\xff\xb4\x5b\x0f\xac\x48\x22\x20\x09\x19\x31\x43\x90\xe3\xb3\x1e\xac\x71\xd7\x95\x19\xac\x1a\xdd\x14\x1d\x27\xf8\x4c\x02\x6f\x16\xf8\x5a\xec\xfe\x7a\xe0\x04\x17\xed\x1d\xc7\x6f\x0a\xac\x9d\x39\x77\x56\x82\xd0\xa1\xd5\x14\xbe\x0a\x15\x53\x9c\xd8\x23\x01\x53\xf8\x0e\xd8\x7b\xa6\x8a\xbb\xad\xa7\x30\x4b\xee\x4d\x35\x19\xc0\x34\xa0\xd6\x17\xc8\x75\xf1\xc1\x5c\x95\xcb\x38\x4e\x7e\x11\xe6\x9d\x46\xd5\x7a\xb6\x14\x75\x44\xa1\xc7\x50\xc8\xf7\x2d\x38\x7d\xcf\xeb\x6b\x55\x7c\xb1\x50\xb2\x91\x3d\x33\x91\x94\x26\xb3\x10\xa8\x53\x97\x77\x66\x42\x5a\x27\xe6\x9d\xf8\xc8\x04\xac\xa6\xa2\xbb\x72\xaf\xbe\x6b\xb6\xdd\xe6\x60\xb5\x83\x93\xfb\xed\xb6\x1e\xcc\x85\x14\xd5\x35\xe8\xbf\xf9\x97\x42\xf5\x40\xb3\x1f\x4c\x52\x90\x0f\xdd\xed\x76\x5f\xe8\xbd\x1e\xd4\x6a\x5f\x88\xc0\x5d\x54\xaf\xb3\xd7\x54\x82\xb4\xf9\x2a\x2b\xb9\xac\x5f\xab\x82\x1b\x8b\x59\x06\x2e\x6b\xb0\xa3\xc6\x98\x10\x34\xf6\x7e\xb7\x70\xf7\x74\xa8\xde\x61\x1a\xf6\xb3\xbd\x0d\x1b\xd9\x42\xf8\x02\x96\x3a\x94\x69\x04\x34\xa9\xd8\x7c\x33\x45\xc8\x76\xbb\x9b\x91\x54\x92\x47\x06\xd3\xe4\x4d\x70\x67\x16\xd4\x01\x8f\x6b\x91\x03\x4c\x6a\xca\x07\x92\xdf\xd6\x6f\xc5\x6c\x21\xe4\x15\xd9\x36\x90\x25\x07\x15\xae\x44\x4b\x4d\xa5\x90\x6e\xbf\xad\x4b\x9e\x2d\xdb\xd2\x8e\xd7\xa2\x1a\xac\x54\xe5\x40\x29\xca\x9a\x0d\x2d\xb4\x83\x8e\xc5\x38\x7e\x99\x33\x6f\x4d\x03\x9f\x53\x07\x25\x8c\xd7\x42\x3f\xd8\xf8\x8d\x13\x8c\x4c\x9b\xd2\xc2\x6e\x77\xd8\x70\xdb\x59\x4a\x1f\xd3\x9d\xab\xc5\x43\x9a\x9c\x2b\x55\x5d\x30\xaf\x24\x66\xa1\xd8\xd2\xea\xd1\x38\x06\x5f\xc3\xe5\xb9\xa5\x2b\xce\xdf\x3f\x14\xc1\x24\x6d\xce\x56\x6d\x1a\x64\xb3\x41\x1b\xdc\x5b\xaa\xdb\xd7\x8f\xac\x57\x4f\x13\xea\x7c\xb7\x70\xe4\xe3\x69\xf7\x7a\x64\x4b\x79\xf6\x20\x7a\xee\x03\x25\xda\x8b\x36\xcb\x89\xd1\xab\x67\x06\x50\x40\xbf\xc3\x88\xd3\xdc\xdb\x18\xff\x34\x99\xe4\x9a\xcb\x00\x11\x54\x53\xc2\x5e\xcf\xa6\x4c\x6b\x28\xce\xaf\xd7\x62\xc1\x1f\x03\x7d\x5f\xa9\xea\x0c\x5e\x78\x56\x27\x9c\x9c\x39\x24\x2a\xd7\x59\x98\x10\x00\xbf\xa5\x7b\x8e\x86\x79\x93\xce\xe1\xe4\xb2\x02\xb5\xc5\xe1\xd4\x30\x9a\x8f\x55\x1d\x80\x58\xec\x57\xa7\x9d\x2b\xdf\x52\x27\x1e\xba\x63\xba\xdd\x1b\xd9\xe1\x10\x82\x18\x1f\xe9\x02\xab\x0f\x6a\x66\x80\xed\x85\xfa\xa2\x3f\x22\xed\x41\x57\x03\x8a\xfd\x2c\xcb\xdf\xb7\x6e\x7f\x6d\x88\x3e\xe3\x5b\x8a\x57\xa4\x0f\x8d\xc5\x60\x42\x9d\x37\x13\xd2\xc2\x8c\xb4\x67\xd7\x42\xf9\xcd\x46\x9b\x08\xc1\x8c\xdd\x33\x59\xdb\x4e\x90\x1c\x79\x70\x56\x1b\xcd\x94\x7d\x91\xfa\x49\x38\xd9\xc6\xfb\xca\xe4\x7c\x83\x72\x21\x16\x2a\x6e\xf2\x5a\x70\x03\xae\x59\x5a\xa9\x39\xbc\x36\x97\xc6\x7f\x3a\x7f\xb0\x2a\x95\xee\x51\xf7\xd9\x41\xb1\x77\x00\xa8\xfe\x10\xc1\x0d\x89\x1b\x1e\xc6\x48\x15\x6f\x84\x13\xe2\x58\xe2\x38\xba\x18\x5a\xfb\x3e\x71\xdc\x1d\x75\x59\x83\x1e\xa3\x69\x02\x93\x28\x04\x83\xe6\x86\x24\x6a\x8b\x0b\xb6\x47\xf1\xab\xd4\xb3\x5a\xbd\x52\x1f\x78\xf9\x22\xab\x78\x42\x52\xbe\x05\x04\xfa\x60\x0a\x55\xeb\x59\x55\x97\x2e\x7d\xca\x9d\x62\x31\x63\xa2\x91\xac\xdf\x53\x10\x17\x12\x06\x74\xbe\x2e\xcb\x47\x94\xed\x77\x5b\xc1\x1b\x7f\xba\x41\xb6\xf4\x5a\x14\xfc\x6b\x51\x56\x75\xfb\x4a\xd1\xad\x3e\xae\x7b\x7a\x8c\x03\xcf\x61\x73\x48\xc8\x76\x2e\x64\xb6\x58\xdc\xb5\x02\xea\xb9\x64\x84\x4f\x6f\x24\x1b\xd2\x3b\xbd\xc8\xe9\xd5\x1f\xc1\x49\xf7\x2d\x71\x3a\x6e\xc5\x26\x53\x33\x04\x40\xbe\xdd\x01\x47\xd8\x35\x4e\x14\xac\xd7\xbb\x91\xdb\x4e\xa9\x92\x3b\x49\xe8\x9d\xb7\x54\x0d\x00\x9a\x96\x85\x2b\x01\x82\x0e\xf1\xdb\xd5\x42\xe4\xa2\x5e\xdc\xbd\xd0\x61\x78\x11\x82\x60\xa8\x1c\xec\x63\x32\x8e\x06\x84\xd7\xe5\x9b\x15\x90\x91\x38\xfe\x06\x94\x3c\x6b\x65\xc0\x1a\x20\x87\x88\x04\x10\x78\x20\x43\x45\x3a\x25\xd8\xf4\xf4\x83\x51\x84\x97\xa6\xe5\xa0\x56\xc4\xed\x4b\xd1\x52\x38\x15\xf8\x67\x76\x5b\xae\xfe\xbe\xf5\x7f\xc3\xd9\x35\x9e\x7a\x8b\x55\xb1\x97\x32\xc9\x06\x4b\xdd\x8c\x05\x68\x47\x21\xf4\x45\x87\x5b\x80\xa5\x5c\x2d\x16\xd9\xaa\xe2\xc5\x18\x8c\x9d\xbe\x11\x49\x46\xac\xad\xd3\x14\x54\x08\x80\xc1\xad\x06\xb5\x82\xdb\x5a\x08\x60\xc1\x57\x2a\x8b\xb2\x23\x8d\x3b\xa1\x41\x66\xec\x4d\x3b\xf7\xca\x72\xd8\x36\x6a\x58\x88\x38\xee\x7e\x23\x3d\xc4\x44\x12\xc7\x3c\x8e\x5f\x8a\x24\xa3\x2d\xd3\x36\xa8\x0b\xb3\x13\x7b\xbf\x76\x30\x69\x50\xd0\x1f\x69\xbc\x35\xfb\x56\x26\x41\xfb\x11\xba\x60\xbf\x25\x6b\xd2\x59\x5c\x34\xa2\x5e\x6d\x3b\xb9\x3b\x3e\x6c\x4d\x1f\x08\xcd\x16\xbb\x3e\x8d\xfd\x5c\xb2\x75\x7b\xc4\x3d\x55\x03\x1b\xb5\x92\x8a\x9e\xb5\xea\xe1\x57\xc2\x32\x66\x3b\x23\x97\x75\x8d\x4f\x56\xab\xa5\xc8\x4d\xb2\x3e\xaa\x96\x25\x16\xbe\x1b\xa8\x6a\xc6\xf1\x67\xe6\xaa\x56\xf3\xd1\xd6\x06\x2d\x74\x66\x69\x52\x8f\x28\x4e\x34\x42\xeb\x38\xfe\x12\x07\x3f\x50\x0a\xe0\x6f\x4d\x66\xf8\x81\xd3\x0d\xae\x4d\x83\x59\xa8\xe7\x03\xdb\x2b\x8c\xd8\x71\x90\x5e\xd1\x4c\xa9\xf7\x3a\xe3\xc8\xf0\x82\x35\x6a\xb7\x70\x36\xf2\x51\x1a\x86\x67\x62\x6f\xf7\x36\x06\xc3\x9a\xbe\x15\x53\x9a\xe9\xb9\xa1\xf6\xcc\x0d\x77\xe0\x92\xd9\xe1\x5d\x82\xfd\xb8\xb1\x4a\xdf\x88\x44\xe9\x31\x8e\x98\x51\xfd\x11\x63\xdc\xb3\x2f\xe0\x45\x84\xd9\x22\xdb\xd1\x6a\x45\x68\x10\xc7\xa1\xd1\x95\x71\xec\x5b\xc9\x6c\xb7\x92\x41\x0d\xf0\xa9\x95\x47\x91\x80\xa6\xf4\x41\x30\x93\x36\x88\xda\x0d\xad\xd2\xb3\xbd\x8c\xe3\xef\xea\xa4\xa4\xad\x14\xf0\xc6\x5e\x72\x0a\x33\x9b\x5b\x51\x16\xb6\x04\xf8\x21\x68\x0b\x5d\x93\x0f\x60\xa8\xd6\xc2\x0e\x55\xf6\x24\xd5\x8e\xdd\xfd\x78\x44\x4d\x84\xb6\x11\x68\x0a\xb3\x1c\x71\x47\x89\xb5\x44\x5b\x3b\x3b\x52\x86\x92\x99\xef\x4e\xed\x80\x9c\xac\xb4\x69\xc5\x7e\xd5\x3b\xa9\x7e\xd6\xa9\x80\x3a\x48\x90\x19\x00\x93\xba\x15\x8a\x6e\x07\xad\x87\xe0\x03\x90\x77\x4b\x0f\xaf\xbb\x33\x5e\xfc\x19\xb2\xdc\xb1\x82\x61\xad\xc5\x77\xea\xc1\x32\xbb\x9b\xf1\x6f\x44\x51\x70\xe9\x10\xc9\x8d\x65\xff\x7d\x9e\x38\xb6\x36\x1b\xeb\xf9\xb3\xbc\xf6\xbd\x1f\xf4\xf0\x6c\x37\x23\x68\x91\x57\x62\xab\x0e\x14\xd6\x16\x21\x18\xf6\xd5\xd6\x8b\x6a\x6c\x04\xdd\x28\xcf\x91\x72\x02\xd6\x9b\xfe\xc5\x36\x39\xdb\x5b\xef\xa6\x62\xdf\x3c\x5a\xad\x6d\x47\xaf\xfc\xcd\xc9\xd2\x95\x6c\x9b\x96\x06\xf8\xd1\x6b\x58\x8e\xf7\xc8\x30\xdb\x90\x89\x64\xef\x54\x22\x09\x31\x61\x99\x39\x99\x53\x6c\x12\x24\xa9\xe7\xbf\x9a\x0c\xf5\x12\x29\x0d\x04\xd7\x6b\xcf\xc4\xc9\x95\x68\x69\x34\x54\xa0\x4d\xd7\x04\x64\xd5\x20\x5f\x28\xc9\xf5\x7b\xd2\x1d\x12\x42\x15\x56\x07\x72\xf9\x0a\x4d\x42\xe2\x7f\x49\x20\x47\xe2\xd9\xe2\x19\x9e\xad\xcf\x61\xb2\xbd\xe7\x45\x43\xa8\xd6\x78\xd8\x8f\xce\x93\xf5\x74\x20\xaa\x1f\x80\x78\x5a\x5b\xa5\x19\xbb\x56\x09\xa0\xed\x4a\xfe\xe1\x60\x26\xc1\xb4\xdd\xd6\xab\x95\x51\x87\x5a\x22\x67\x62\x3a\xc6\x36\xd7\x1f\x8d\xe9\xc9\x2b\x49\xfc\x28\xd8\x3a\x3a\xc1\x3b\x09\xc0\x9d\x34\x63\xd7\xa8\x97\xd4\xc1\x76\xd7\x0d\x4a\x15\xc0\x03\x65\x17\xc3\xcd\x66\xc8\x58\x66\x98\x5e\x85\x74\xfd\xd7\x6b\x2e\x5f\x2e\x57\xf5\x9d\xcd\x4b\x01\xe5\xb0\x32\x37\xc5\xaf\x02\x96\x4a\xd5\x2c\x68\x9a\x0a\x28\xbf\x3d\x1b\xbc\x98\x49\x18\x6f\x1a\xe2\x6b\x18\x3c\x34\x3d\xe3\xe1\x00\xfc\x7b\xb5\xae\x38\xa8\x5b\x57\x9b\x8d\x9f\xe2\x27\x23\xb4\x4b\x73\x08\x83\xe8\xd6\x49\x90\x46\xe3\xc3\x4c\x27\xbb\x1a\xc0\xa8\xfc\x0a\x4f\xb6\x51\x1c\x9e\x96\x54\x91\xcd\xa6\x36\xb6\xe7\x4b\xf8\x8f\x63\x08\x53\xfa\x61\xf6\x5d\x5f\xe8\x7c\x84\xbc\x3a\x70\xe9\x1f\xe0\x52\x7b\xb0\xca\xca\x5a\x68\xa6\xf9\x00\xad\xfb\x00\x47\x73\x90\xc9\x03\x7e\x2b\x2a\x88\xa2\x24\x8f\x48\xe7\x25\xeb\x0e\xb7\x6a\x90\x15\xc5\x4f\xea\x1b\xd4\x42\x8f\xe3\x9f\x84\x33\xa2\x5e\x03\xdc\xb1\xb5\x9e\x0e\x0b\xb9\x66\xb1\x23\x38\xbb\xe2\x0b\xfa\x3a\x7b\x6d\x30\x78\xe9\xda\xda\xd6\x5c\x80\xb1\x48\x1c\x55\x00\xbd\xb4\x36\x15\xe9\x85\xe8\x18\x8b\x38\x56\x01\x1f\xb6\x78\x00\x6d\xef\x5b\x1d\x9c\xb1\x45\x9b\x0b\x8a\xe3\xa4\x82\x25\x23\x48\x66\xdd\x35\x05\x01\x2a\x0f\x9a\x43\x6d\x75\x74\x9f\xdb\x0c\xbe\xc6\xc1\x97\xd3\xe2\xab\xa7\x24\x9d\xd4\x53\x5a\xa3\x6f\xe9\x2d\x0e\x9a\x94\x6a\x1e\x8b\x7f\x38\xb8\xd5\x53\x6b\xcd\x4c\xee\xe3\x7a\x90\x5f\x03\x78\xa4\x76\xc3\x06\x18\x97\xd6\x0d\xcc\x43\xac\xb7\xad\xa2\x9b\xf6\x32\xed\xb8\xdb\x68\x35\xb9\xff\x06\x2b\x01\x75\xab\xe9\x90\x60\x12\x7a\x3a\xbd\x91\x20\xb9\x13\xc7\xbf\x88\x44\xd1\x68\x06\xa7\x83\xa8\xf2\xf6\x52\x86\x08\x22\xe4\x5e\x39\xd6\x4a\xc7\x6f\x00\x54\x93\x5b\x3d\xc7\x12\xee\xc0\x0a\x0a\x25\xed\x66\x70\xb3\xe1\x01\x86\x81\xf3\x40\x3b\xb5\x3a\x3d\x33\x84\x12\xd2\xaa\x58\xa2\xec\xb6\x8a\x2a\xc3\x55\x42\xc7\x2d\x60\x3e\xa0\xd9\xf9\xfd\xab\x7e\x38\x7b\xfe\x54\x27\x0b\xda\x6a\x9e\x46\x06\x53\x57\x2a\xab\xaa\xd7\xd9\x92\xeb\x59\x0d\xd0\x4e\xfa\xc5\x28\x4e\xde\xe1\x17\x97\x85\x7b\xcf\xab\xca\xb3\x7b\x8a\x09\x9f\xe5\xe7\xa6\xbb\xce\xf2\x5e\x8f\xfc\x4d\x67\x99\xdb\xdd\x4d\x47\x39\xa6\xf8\x33\x9e\x2c\x80\xd1\xa5\x7f\x11\xc9\xc2\x32\xb9\x5f\x14\x85\x66\x71\x17\x54\x39\x23\x47\x0a\xf6\xf1\x33\x38\x83\x85\xe5\xe5\xf1\x4d\xea\xd2\x2c\x76\xf6\xc0\x09\xc1\x50\x59\xdd\xdc\xf1\x82\x04\x25\xf7\x4d\x00\xf2\x49\x39\x35\x3c\x33\xac\xb1\xde\x6d\xcb\xbb\x00\x30\x06\xd8\x3e\x9d\x77\xe5\x29\x4d\xe9\x29\x02\x56\x1a\x56\x3f\xa8\x6a\x57\x1f\x6a\x2f\xf2\x8c\xc9\xcd\x37\xb7\xfb\xa1\x75\x60\x88\x08\x96\x1e\x72\xa5\x55\xfc\xd0\x53\x49\xb2\x49\x69\xeb\xa6\x5b\x71\xda\xb9\x12\x49\xe0\x12\x64\xdb\xa8\x31\xb7\x99\xf7\xd2\x36\xd8\x3e\x01\x6c\xeb\x37\x11\xd3\x33\x63\x91\x4a\x8f\x40\xdd\x6b\x30\x28\x4d\x93\xc1\x2c\x6d\x12\x32\x7c\x8e\xe8\xf7\xe9\x88\x10\xdf\xda\xf3\xad\x3b\x1c\xf2\xba\xca\xf6\x14\xd8\x3c\xb6\xc7\x4b\x8a\x95\x4d\xb4\x97\x1e\x76\x1d\x79\xa4\x1b\x5b\xf7\xf3\xd2\x66\xd0\xe8\x2e\x4b\xaf\x30\x6f\x64\xcb\xf8\xb3\x11\xb6\xf6\x92\x94\x84\x4f\xe4\xd4\x00\x9e\x82\x61\xfe\x86\x85\xd2\x3e\xee\x88\xca\x2b\xec\xdb\xa6\xb0\xf5\x60\xae\x69\x55\xdb\x02\x4d\xc9\xbe\xe5\xce\x20\x3e\x72\xff\x71\x0c\x36\x8d\x7d\xa7\x60\x93\x24\x6d\x94\x5a\xb5\x22\x58\x07\x3f\x38\xea\x25\xc7\xb1\x33\xb8\x7e\xe0\xe9\x8c\x99\x3c\xf2\x6b\xaa\xc0\xa4\xad\x7e\xcb\xd8\x90\x01\xff\x81\xc7\x21\x68\x9b\xbf\xda\x51\xac\x0e\xda\x5f\x1a\xc9\x7d\xbe\x67\xd3\xc7\x71\xaf\x67\x36\x7a\xa5\x07\xae\x0f\x19\x6c\x36\x49\x36\x10\x32\x5f\xac\x2b\x71\x03\x72\x27\x63\xf4\x38\x67\x75\x6a\xde\x6a\xa2\x09\x0c\x8c\x09\xb0\x18\xeb\x6d\x47\x33\xbb\x17\xed\x96\x9b\x4d\xd7\x66\xe2\xb1\x0d\xc4\x99\x58\x33\x99\x02\xf4\xb0\x97\x25\x08\xb2\x8c\xb5\xfb\x05\xe4\x58\xab\x8b\x9a\x9c\x25\x12\xec\x50\x37\x5d\x6c\x56\xa5\xcc\xd8\xe6\xa6\xc6\x96\x9f\x0e\x4f\x9c\xa6\xf0\x81\xdc\x02\x6a\x6c\x46\xe8\xfa\x7f\x49\x8b\x7d\x52\xe1\x3f\xad\xb1\x3e\xa5\xad\x3e\xbd\x83\x1e\x69\x30\xd7\x52\x3a\x68\xbf\xa6\x4d\x5d\x9a\x26\xec\xd7\x61\x23\x6a\x76\x37\x23\x74\xc1\x46\x9a\x07\xf0\xb4\x16\x69\xae\x59\x70\x74\xb2\x72\xf0\xbd\x64\x31\x16\x29\x9a\x12\x6f\xd6\xa0\x39\x1b\x9e\xcd\xcf\xbd\x63\x88\xb9\x07\x97\x9d\xac\x58\x35\x99\x4f\xc1\x1a\x7b\x72\xcd\x5e\xca\x64\x4d\x57\xa6\x41\x08\x19\x2f\xe2\x38\x59\x69\xc2\x83\xa1\xaf\x5d\x59\xf5\x5b\x2f\x27\x29\x78\x8a\x2d\xc8\xc4\xe8\x0c\x31\xb3\x75\x90\x99\x2e\xc4\x8a\x5e\x37\xa7\x12\xc9\x8a\xad\x4d\xa6\x26\xfd\x1e\xcb\xed\x79\xdc\x0a\xcf\x34\xb0\x30\x95\x57\x98\xcd\x26\x41\x3f\x96\x53\x5d\x2e\xbd\xa3\xf3\xb7\x6f\x2b\x63\xc6\xf4\x00\x43\xf5\x1e\x0c\xb6\xad\x80\xc9\x7b\x21\x93\x8a\x10\xba\x06\xee\x4e\x3b\xad\xb5\xd3\x9a\x20\xef\x59\x30\x23\xeb\xd3\x5d\x60\x0d\x96\xf4\x26\xec\x81\xfe\x91\xf6\xbe\xb9\x18\xc6\x71\xe5\xd5\x3d\x68\x68\x73\xc4\x38\x99\x4f\xb1\xae\x68\x56\x7c\x67\x6c\x40\x00\xac\x27\x5e\x45\x20\x3b\xd7\x69\x52\xbd\x81\xe4\x0a\x8c\xb5\x24\x1d\xf3\xb6\x76\x0c\x41\xd1\x10\xdb\x17\x8f\xad\x99\xbd\x5e\xed\xaf\x99\xc6\xa4\x45\x69\x0e\x98\x4a\x33\x5f\x4a\x28\x2e\x6c\xac\xec\x12\xd6\xda\x5f\x81\x98\x06\xae\x69\x35\xac\x69\x5b\xb7\x8a\x63\x4e\x63\x8e\x28\xe7\xae\x58\x5f\x04\x80\xdd\x7b\x4e\xda\x58\x3d\x81\x8d\x57\xf5\x2e\xea\xf1\x81\x28\x5a\x68\x38\x40\xae\x9b\xe3\xe8\x21\x18\x0a\x01\x3d\x20\xaf\x53\x60\x7d\x32\xc6\x37\x5e\x8b\xa4\xd4\xeb\x91\x5b\x90\xc4\x16\x37\xc3\x92\x99\xf5\xa8\x95\x01\x7c\xca\xe6\x18\xad\xcd\x14\xec\x52\xa8\x12\x29\x94\x9c\x88\xa9\x39\xa1\xca\x08\x4f\x6d\xbc\x8a\x0d\xcf\xaa\xf3\xac\x89\x57\x35\xdd\xb2\x66\xd9\xa4\x9a\xd2\x05\x1b\x9e\x2d\x9c\x96\xc5\x59\xaf\xb7\xd0\x5b\x6f\x35\x59\x4c\xdd\x3a\xbd\xb6\x33\xc0\x4a\xc3\x1d\xf0\x8e\x72\xdd\x8f\xc6\xfb\xf5\x52\x3c\x11\x53\x96\x79\x56\x30\x5d\xc3\xbf\xf7\x6e\x21\x79\x7b\x49\xf4\xd7\xfa\x5d\x33\xd0\x68\xff\x19\xfb\xbf\x39\xce\x49\x38\xe9\x84\x1b\x1e\xe8\xe9\x26\xc7\xef\xbd\xe5\xfe\x93\xd3\x0f\xf6\x3f\xad\xf4\x6b\x2f\xf1\x1f\x42\x9e\x31\xa4\xc8\xfd\x51\x3a\x6c\x82\xfe\xf4\x40\x50\x5c\x2d\x82\xa0\x3f\xb6\x4c\x82\xfb\xc7\x4e\xfd\x3a\xf8\x04\x1b\xbb\x5d\x56\xb6\xed\xb9\x72\x73\xa7\x42\x81\x9f\xc0\x57\xa5\x39\x08\xd4\x14\xa2\x68\x58\x99\x6c\x36\x50\x83\xfe\x0f\xd2\xa0\xa5\x58\x5b\x34\x7d\x85\xc0\x33\x18\xa5\x56\x54\x68\xaa\xbc\xd9\x40\x2d\xfa\x3f\x41\x70\x2b\xa0\xa6\x37\xf7\xa2\xe8\xeb\x69\xd2\xd4\xe1\xb7\x96\x12\xfd\x4b\x3d\x49\x5b\xfd\x2d\xdd\xba\x20\xa8\x35\xc7\xea\xdd\x3f\x24\x02\xb1\x9d\xdc\xa4\x6f\xf6\x5b\xd6\xe8\xdf\x18\xeb\x91\x42\xe9\xcc\x1a\xfa\xa3\xd4\xcb\xbd\x1d\xa8\xe7\x43\xb0\x60\xc8\x9c\xc3\x1e\x8e\xf0\xb5\xdf\x35\x50\xf0\xee\xd0\xe3\xfb\x5f\xed\x7a\x8f\x3c\xef\xaf\x76\xed\xed\x31\xe4\xfd\x08\xcd\x74\xbd\x55\xbb\xde\x19\x79\x6c\x56\x36\x33\x12\xc4\x3b\x77\x6a\x8f\x21\x16\x6e\x2e\x62\xf7\x0e\x89\x5e\x85\xf5\x96\x0d\x2f\xcc\xb0\x6b\xdd\x7c\xd5\x3d\x2c\x08\x9d\x63\x90\x5a\x51\x89\x9d\xd9\x04\xf8\x49\x07\x40\xc3\x8b\xf9\x05\x1b\xc6\xf1\xfc\x9c\x0d\x37\x9b\xfc\x1c\xde\x2f\x18\xb4\x23\x7e\x35\x85\x0a\x47\x71\x1c\x8b\xd6\x14\xb0\xb9\x95\xe4\x82\x0d\x53\xef\x6b\x48\x36\x1b\xcc\xe6\x9f\x4c\x0c\x6a\x27\xc9\xb9\x4d\xce\x7e\x0f\x9d\xe9\xc7\xee\xd0\xdf\xd1\x7c\x1b\x2e\x40\x67\x35\x83\xde\x3e\x23\xdc\x4e\x8c\x7e\x03\xde\xd0\x08\xb8\xba\xf8\x5f\x07\x73\xd1\xf6\xab\x64\xdf\x02\xd0\xaf\x1d\x4b\x8c\xc9\x71\x9d\x02\x54\x43\x13\xf5\x1f\x1e\xe5\xb9\x08\xb6\x9c\x0e\xa8\xc9\x87\x98\xb0\x6b\x00\x9c\x80\x48\x2f\xd0\x47\x31\x27\x6c\x31\x20\xff\xde\xa8\x29\xc1\x37\x41\xe1\x5f\xc6\x71\xdd\x1e\x8a\xe5\x0e\xf3\x1b\x2c\x2d\x62\x9e\x24\x12\x56\x96\xdd\x59\xe8\x71\x6e\x48\x54\x5c\xfb\xe3\xda\x65\x23\x34\x07\x87\x71\x3c\xb4\x61\xe3\x58\xee\x74\x3b\x1e\x35\x7e\x69\xf1\xe5\xbd\xee\x74\x15\xfa\xd2\x67\xdc\x31\x6f\xb8\x1a\x36\x1b\xcb\x32\x98\x12\xd0\x40\xb6\x6d\x20\x26\xc2\x26\xd0\x97\xd2\x00\x28\x04\x5b\xb8\xd2\x71\x77\x9a\x85\x2c\x1f\x1a\x95\x3a\xbf\x16\xff\xdb\x54\xbc\x4d\xcf\x82\xf6\xf6\x69\x9b\x6e\x58\x4d\x9a\x3d\xef\x07\x48\x5d\x57\xec\x6b\x48\x11\x30\x47\xa6\x29\x04\x6c\x45\xf4\xd3\x72\x51\x7a\xce\x8a\xbd\x0d\x0d\xa0\x58\xfb\x6a\x48\x5c\x17\x08\xaf\x0b\x4a\x95\xcc\x24\xa1\xb3\x7f\x59\x56\xe0\xc1\x9b\xd8\x4e\x23\x39\x35\x3c\x33\xc6\x8c\x5b\x27\x1e\xbd\x1e\x27\xbe\x3b\x98\x36\xc4\xe3\xbd\x4e\x4b\x60\x80\x6c\xb7\x61\x21\xf7\x5c\xa5\x06\x52\x4d\xe6\x3c\x06\x06\x0c\x98\xd6\x87\x39\xf9\xbb\x64\x6f\x06\xaf\x00\x24\x58\xb7\xf9\xbe\x6d\xa3\x37\x73\x0e\x84\x3c\x28\x49\xd9\x56\x48\x00\x43\xc0\x3a\x97\x89\x9c\x32\xe0\xfe\x3a\x6d\x59\x0c\xa9\x0a\xce\x6a\xef\x34\xeb\x67\x97\xc5\x0b\x91\xd4\xe4\x3c\x31\xb2\x14\x70\x02\x19\x1a\x60\x02\xe8\xd2\x00\xe9\x19\x8c\xb4\x71\xe4\xda\x4b\x8f\x10\xfd\x6a\xef\xba\xac\x5c\xae\xb9\x53\x74\xcc\x88\xb9\x53\xb4\x6c\x99\xb9\x20\x85\xee\xb4\x81\x70\x52\xff\xa8\x92\x40\x6a\x97\x72\xa8\x82\x93\xe6\x88\xac\x59\xd8\xf4\xa0\xe4\x0b\x00\xb2\x3e\x8b\x3a\x7c\xe0\xa1\x63\xeb\xd5\xb8\xc7\x22\x34\xbb\xd3\x07\xcc\x93\x83\x7e\xd4\xab\x77\x90\xb8\x7d\xd4\x98\x68\x75\x7b\x06\x3a\xcf\xce\x18\x8c\x49\x06\x6d\x3d\x1d\xf8\xf1\x43\xf3\xae\x41\xfc\x9f\xf4\x2e\xd5\x1d\xb2\xf3\xac\x5a\x97\x9c\x7e\xaf\x12\xc0\x5a\xa1\x13\xac\xcc\xd4\x36\xa0\xb7\x8d\x30\x77\xad\x18\xc0\x97\x54\xf5\x8d\x89\xea\x49\xf2\xbb\x24\xf4\xf7\x47\x27\xc9\x3e\xa1\x19\x77\xb9\x68\xed\xde\xd8\xab\x6a\x34\xbb\xc6\xde\x88\xa4\xf4\xae\xe0\x65\x1c\xd7\xa1\x91\x07\xe1\xb3\xb2\x82\xd4\x9a\xff\x86\x14\x34\xc9\x0f\x8e\xfb\x3a\xb5\x3b\xed\x4e\x2c\x49\x31\x16\x9d\xcd\xa5\xd7\xaf\xd2\xd8\xfe\x79\x29\x92\xb2\x31\xa2\x34\x04\xd3\x91\x60\x80\x4b\xa1\xec\x43\x5b\x3b\x1e\xc6\x6e\x49\xfb\x8a\xd0\xbf\xa1\x5c\x86\x33\xd4\xb3\xd5\xf3\xf2\xf7\x4f\xbf\xbc\xbf\x36\x46\x79\x83\x76\xf2\xda\xa4\xe3\x85\x6a\x6e\xc0\xa5\x2b\x7b\x9f\x77\x64\x1c\x27\x50\x03\x5b\xec\x9e\x04\x89\x8c\xef\xea\xa4\x0e\x0c\x15\xec\xb7\xcc\xf3\xb3\x4c\x50\x8b\x65\x4b\x0c\x4d\xf8\xc5\xd2\x84\x1d\x6a\x80\x27\xa2\xfc\xb6\x66\x9c\x7e\x8f\x25\xa0\x56\x94\xd0\x94\xb1\x1c\x1b\x53\x59\xe9\xc8\x9b\xed\xdf\x19\x3d\x7a\xff\x98\x16\x76\x48\xcd\xdc\xfd\x63\xfb\x68\xf5\xcc\xc3\x3a\x44\x41\xbc\xc3\x64\x9c\xfe\x7d\x73\x59\xf5\x08\x80\x24\x24\xb3\x2c\x7f\x7f\x55\xaa\xb5\x2c\xfa\x64\x9c\x5c\xbe\xed\x91\x43\xbb\xbb\x44\xf8\x43\xce\xb8\x53\x32\x2a\x51\x70\x8f\xf4\xac\x93\x71\xe8\x95\x9e\xac\x9e\xc5\x78\x9d\x8c\xa6\xe3\xc8\xd8\xbc\x36\x86\x1f\xf0\xdd\x88\xa5\xd4\x13\x39\x1d\xd7\x48\xee\x8e\xa6\xa9\x67\x65\x23\x82\x32\x56\x24\xea\x69\x9f\x9e\xfe\xfc\x4c\x7f\x12\x23\x18\xab\xa9\xe3\x66\x03\xff\x3d\x16\x1d\x60\xb0\x66\x02\x36\xed\xf1\x99\x6f\x26\x65\xb6\xc8\xe4\x7b\xdd\x25\x0d\x29\x73\x4e\x66\x43\xe3\x01\x42\xda\x76\xf3\x60\x25\x13\xcf\xfe\xe5\x01\x22\x41\x36\x29\x8c\xdb\x0e\x89\x41\x8d\x24\xa9\x91\x9b\x6e\x8a\xf5\x57\x4f\xed\x29\x9c\x98\xa3\x21\x9e\xd8\x4b\xc0\xac\x1d\x4e\x5b\xd9\x97\x04\x32\xb1\x93\x8f\x0f\x00\x19\xd6\x5d\x34\xd7\x28\x73\x6c\xa4\x53\xdd\x85\xcb\xce\x55\xa9\x4e\xed\x20\xea\x21\x92\x71\x2f\x3a\x98\x67\x62\xc1\x8b\x83\x5a\x1d\x64\xc5\x4d\x26\x73\x7e\x50\x81\x60\xfc\x20\xf2\xc6\xd6\x9f\xfd\x42\x5b\x47\xe1\x41\x15\x56\x88\x10\x67\xe4\x1d\xb9\x2c\xd2\x39\x08\x5a\x56\xc6\xa8\xcf\xc0\x48\x4e\x26\x84\xea\x49\x9d\x2a\x54\xfd\x30\xd0\x99\x7c\x9c\x81\xa4\x9b\x2a\x38\xcd\x49\x9a\x6f\xe1\x9e\x48\xd1\x0c\x97\x18\x5a\x31\xf4\xec\xd4\xec\x2b\x9e\x64\xd4\xda\x26\xa5\x0b\xcd\x0f\x67\xe6\x1e\x4c\xef\x6b\xb2\xba\xb9\x50\x2e\xf5\x2e\x46\xd7\x7c\x29\xf5\x6e\x82\xdf\xd6\x74\x07\xb3\x06\x4f\xab\x24\x9c\xa3\x4d\xa6\x78\x0e\x3a\x47\x61\xf6\x41\x7e\x4d\xe2\xb8\x3b\x1f\x70\xb5\x48\xc8\x19\x31\x95\x63\x58\x31\xc5\xfe\x2a\x93\x8a\xce\x69\x0e\xb8\x0a\x6b\x3c\xda\x10\x20\xcb\xe0\xa4\x5d\xc7\xeb\x54\x24\x5e\x33\xfe\xc5\xdb\x00\xc2\x11\xa9\x39\xb0\x2d\x07\x3e\x02\xbb\x99\x22\x78\xde\xd7\x94\xd8\x0f\xd2\xd4\x7f\x48\x73\xa4\x06\xae\xaa\xfb\x6a\x49\x57\x5e\x42\x3e\xa4\x7b\x1c\x4f\x74\x6c\xc4\x57\x8e\xd0\xa6\xeb\x1f\x65\xf2\x99\xde\x19\x4b\x42\x15\x39\x6b\x1a\x40\xcf\xa4\x39\xca\x98\xbb\xb4\x76\xe1\xd5\xc7\x49\xc5\xba\x23\x9a\xc5\x31\x17\xc8\x9f\x53\x88\x44\xf0\xcf\x99\x49\xa5\x6b\x63\x14\x64\xcd\xfe\x28\x93\xbf\xea\x0c\xe7\x54\xd2\x95\xce\x94\xae\xb0\x65\xae\xd9\x4a\xd3\x16\x3d\x52\x3b\xd7\xd0\x47\xd1\xb2\x1f\xf5\x92\xf5\xf8\xba\xa7\xa7\xfe\x3a\xbd\x46\x1e\xbc\x5b\x6d\x36\x79\x97\xad\x0d\xde\xeb\xe2\xdc\x74\xd6\x19\x11\xc9\x82\x39\x3b\x81\x76\x7c\x2e\x7a\x4f\xf9\x13\x42\x73\xd2\xc9\xd9\x7a\x1b\x74\xec\xd6\x25\xb0\x52\xd5\x59\x68\x13\x1e\x52\xd0\x9d\x8f\xf1\x3b\x22\x29\x74\xf7\x2f\x58\xe1\xcd\xef\x3f\xed\xa8\x35\x4e\xac\x61\x21\x3d\x84\xff\xc8\xe5\x94\x2a\x76\xbf\xed\xe0\x60\xb0\xe3\xd2\xda\xa0\xa2\x65\xdb\xca\x93\xb9\xa3\xd2\x1c\x27\x55\xbe\xf2\x20\x1a\xcb\xe5\x9e\xcd\xd1\x45\x76\xe7\xb1\xc2\x6e\x78\xb5\x83\x4c\xb2\x29\x5d\xb3\x91\x1e\x3d\x41\x29\x10\xf7\x7d\x17\xfb\xbe\x39\x0a\x5b\x9f\x2d\xce\x2d\x84\xae\x64\x62\xb2\x9e\x76\xe4\x05\x6c\x32\x0c\xeb\xb0\xa6\x23\xca\xa9\x98\xac\x7b\xa3\xa9\x1e\x40\xeb\x1e\x3b\xa2\x5e\x0f\xe8\xfd\xea\x16\x0e\xd8\xc4\x3c\xa9\x06\x6a\x95\xfd\xbe\xe6\xc4\x45\x2f\xe9\xba\x5f\x52\x0e\xd6\x8e\x4c\x69\x35\xc7\x46\xe8\x9a\x95\xbd\x23\x3c\x28\xc7\x4d\xee\xf9\xfa\xac\xec\xb1\x23\x7b\x8c\x22\x26\x65\x6f\x34\xed\xe0\x1f\x4b\xd4\x58\xe9\x01\x92\x46\x11\xe9\xb5\xd2\xda\x6e\x9b\x0b\xe9\x7b\x50\x3a\xaa\x52\x41\xe1\xba\x9c\x57\xa9\x1a\x98\x45\x0b\xae\xcd\xed\xaa\x35\x36\xb6\x2f\x9b\x5e\xfe\x5b\x68\x0a\x03\xb5\x97\xaa\xcd\xc6\xbe\x4d\x86\xd3\x2e\x6b\xf5\xbb\x6d\xb6\xcc\x48\x0a\xd7\x84\x50\xc1\xcc\x78\x09\xb6\x89\x8f\x4f\xb0\x4c\x26\xde\x78\x91\x24\x05\xd4\x2c\xc8\x0a\xf4\xd8\x41\x73\x0c\x8b\xc1\x84\x79\xa1\x62\x60\xaa\x38\x36\x7e\x2f\xf0\x93\x39\x8f\x34\xf4\x00\x4d\xbf\x20\x24\xda\xb3\x28\x19\xb3\x86\xc5\x4a\x25\x6b\x81\x2a\x82\xfe\x77\xaf\xe7\x10\x6a\x4c\xee\x4d\xbb\x19\x9a\xe0\xcd\x0e\xaf\x2a\xea\x31\x12\x06\xc3\xde\x48\x30\x30\x05\xa4\x44\x6e\x36\x43\x6a\x88\xd6\x67\x32\x11\xb4\x24\x67\x5d\x65\xc9\xd5\x5f\xb5\x8b\xd2\xab\x40\x10\x4b\xf3\xde\xbf\x48\x42\x7f\xf1\x79\x4c\x30\x33\xa3\xf6\xa8\xd8\xbd\x11\x46\xc0\x0e\xb7\x3c\x82\xdd\x6f\x69\x29\x02\xb8\x22\x29\x1a\x74\x6d\x34\xd3\x59\xfd\x61\x17\xb3\xdf\xbb\x32\xae\x03\x0a\x3c\x2e\x45\x5a\x0b\xc7\x59\x4c\xf8\x54\xf3\xdb\x13\x3e\x65\x0e\x73\x29\x39\xbc\x7c\xdb\x3b\xbc\x82\x59\xf1\x59\x1c\x11\x6f\x45\x11\xc2\x3f\xb7\x69\x84\xc0\xdc\x7d\x0c\xad\xc6\xd1\x2a\x2b\x0a\x21\xaf\xfa\x60\xed\x34\x3d\x18\x8c\x56\xb7\x11\xca\xde\x50\xc9\xee\x57\x25\x4f\x75\xc4\x55\xc9\x23\x3a\x29\x43\x79\x31\x44\x72\xa4\xc6\x94\x57\x5a\xd2\x5c\x2d\xd2\x21\x5d\xa9\x2a\x1d\xd2\x7c\x99\x72\x0a\x5a\xed\xa0\xe4\x54\xa5\x89\xda\x6c\x2a\x90\x81\xb9\xe2\x35\x22\xb4\xb7\xcc\x51\x91\x6d\xa7\xb6\xfb\x29\x5f\x5b\x1f\x39\x20\x96\x80\x55\x8d\x7a\x8c\x7f\x66\x36\xa4\x43\xd2\x88\x32\x64\x74\xcd\x84\xf1\x9f\x88\xfe\x68\x9a\xe2\x6a\xdf\x91\x30\x24\x86\x54\xa2\x08\xd7\x7b\x2e\x99\x12\xf4\x57\xdf\xe0\x94\xc9\x57\x6f\xb6\x33\xf6\x85\x48\xd6\x04\x8d\x06\xb8\x08\x95\xf0\xbe\x28\x08\xea\x0f\x96\xd9\x8a\x4d\xa6\x74\x21\x92\x35\x95\x14\xe6\xfd\x9a\xd6\x5d\xcf\xc8\x0d\xbf\xad\x79\x29\xb3\xc5\xf7\x98\x7c\x11\xc7\x6f\x20\x6d\x42\xd7\xed\x19\x15\x3a\x58\x5a\x03\x85\x30\xef\xec\x5b\xf5\x40\x28\x2a\x1b\xda\x14\x45\x3b\xa9\x37\xd4\x0a\x92\x73\x5f\x7b\x12\x74\x7e\xd4\x0b\x87\x89\x12\x0a\x07\x6f\xcb\x6c\xe5\x84\x57\xf1\x0b\x16\xa1\x21\xd5\xed\x6b\x06\xc3\x40\x6f\x9e\x65\x81\xfa\xa3\x3f\xef\x6b\x67\x4c\x4d\x8c\x13\xd7\xe5\xd0\x9a\x90\x20\x6d\xdc\xc0\x1c\x2a\xbb\xdf\x92\x34\x09\x43\x1a\xe9\x57\xcf\xc1\xbf\x84\xd4\x0e\x84\x26\xad\x74\xc2\x38\xe8\xe4\xc5\xba\xdf\x22\xc3\x50\xd9\xb3\xf1\xa6\x3a\xa0\xca\xa5\x2b\x73\x96\x1c\x5e\xce\xf2\x65\xbf\xce\x66\x97\x33\x33\x91\x17\x8d\x40\x15\xd9\x6c\x16\x83\xdf\xd7\xbc\xbc\x43\x48\x0c\x55\xc6\x71\xcb\x21\x89\x06\x18\x3f\x32\x23\xcc\xe6\xe1\x12\x61\x11\x06\x00\x83\x67\xfd\xeb\x2c\x7f\x1f\xb9\x3d\xcc\x5f\x41\x53\xa0\xe4\xb2\xb0\x46\x7d\x1c\x4b\xab\x69\x16\x27\xf8\xd7\x24\xb6\xdb\xe1\xad\x00\xbb\xfd\x4c\x65\x43\x43\x94\xf0\xb8\xd2\x8a\xae\xed\x0d\x18\x36\x90\x41\x5d\xc3\x19\x0e\x13\xcf\xd0\xa4\x83\xfb\x63\xba\x3d\xbc\xa2\x99\x20\x69\x4d\x73\x10\x75\xdc\x63\x41\x91\xce\x59\x77\xa4\x37\x28\xb9\xd5\xbe\x24\xf7\x57\x8d\x46\x77\x5e\xf2\xac\xe6\x5f\x99\xcf\xaf\xcb\xec\x0a\x75\x8f\x1d\x65\x58\xa1\x65\xca\x1c\xfa\x07\x2d\xe4\xac\x3a\xc8\x1c\xe6\x00\xdd\x98\xd4\x84\x16\xec\x7a\x7c\x8d\xdb\xd1\xfe\x2a\x75\x77\xdd\xa0\x58\x64\xae\x41\x96\xed\x3c\x7f\xe2\xb7\x70\x32\x93\x2c\xcc\x7e\x76\x45\x57\xbd\x82\x90\x8e\x8a\xe3\xec\xfc\x74\x7c\x15\x0c\x70\x4f\xbe\x76\x39\x25\x24\x0d\x7d\x8d\x05\x6c\x33\x4d\xb8\xd1\x31\x5b\xa9\xaa\x57\x50\xf0\xcb\xd5\xa2\xc7\x0a\xe3\xc6\x0a\xe0\x59\xaf\xad\x2d\xcd\x79\xb2\xea\xb1\xa2\x37\xa2\xd1\x65\x1d\x31\x76\x3d\x19\x4e\xb1\xcc\x37\xd8\xa8\x6d\x9c\xcd\x3b\x76\xd3\x87\x24\x3f\xbf\x39\x4b\x96\xec\xa1\x82\xae\x54\x72\x47\x68\xe4\x46\x22\x69\x89\xf4\x96\x0a\xac\xc8\xad\x4a\x5e\x59\x9d\xc3\x88\xd0\xe5\xae\xe0\x6f\x8d\x58\x37\x97\x08\x26\x08\x55\xb9\x6b\x2c\xd9\x5c\x96\xa6\xcc\x9b\x4d\x74\x29\x5d\xf9\x1f\x29\x58\x13\x65\x1c\xfd\xc7\xff\xf8\x3f\xa3\x34\xfa\x8f\xff\xf1\x7f\xed\x31\x71\xb9\x53\x62\x57\x16\xc8\xc2\x96\x65\x04\x65\xd1\x19\x06\xad\xb5\xdf\xd6\x66\x02\x51\x3f\x92\xf0\xbf\x3a\x02\x6c\x71\xf6\x0f\x85\x11\x0e\x05\xd0\x79\xde\x62\x99\x4d\x14\x07\xea\xad\x3b\x7d\x67\x72\x34\x03\x15\x2f\x98\xf7\x24\xed\x36\x55\x57\xb6\xf0\x71\x9c\xcc\x41\x68\xd4\x0c\x39\x1b\x02\x6e\x2c\x36\x1b\xb9\xd9\x88\xcd\x66\xbe\xd9\xac\x71\xa4\xcd\x58\xa9\x09\x03\x9c\x85\xcd\x7a\x4c\x22\x78\xe0\xac\xc7\x8c\x84\xfb\x3b\x5f\xc0\xfc\x6a\x4a\x67\x74\xdd\xa8\xd6\xc7\x71\xf2\xce\x58\x21\xad\xb0\x19\x76\x17\x88\x77\x64\xbb\xdf\xe3\x8a\x78\x6c\x75\x26\x42\x21\x90\xe8\x20\xa2\xa1\x74\x60\xff\x08\xaf\xe0\x7b\xac\xfc\xfc\x68\x0c\x3c\xfe\xbf\xff\xcf\xc8\x69\x41\xc3\x91\x50\x93\x5e\x25\x82\x83\x7c\xc7\xdf\xb9\x1d\xb8\xa1\x77\x4c\x8c\x45\x2f\x3a\xc8\x97\x7d\x38\xdc\xeb\xcf\x54\x59\xf0\x32\x4a\xa3\xb6\x8b\x23\x4b\x0b\x56\x42\xfb\xe7\x6c\xd1\x73\x77\xd1\x67\x4d\xd9\x51\x00\xc6\x9d\xb5\xce\x2d\xff\xb2\x62\xf5\x64\x0e\xf7\xb5\xab\x41\xad\x2e\x16\x71\xbc\x32\xe2\x58\x0b\x24\x07\x5b\xeb\xc5\x72\x77\x56\xd5\x2a\x6f\x07\x1c\xdc\xc1\x9c\x0e\xdd\x5f\x10\x08\x80\x2c\x1f\x5d\x13\x8a\xd2\x4f\x54\x32\x1b\xd0\x06\x5b\x30\xfd\xe6\xdf\x7c\xae\x77\x98\xf2\xae\x8c\x63\xff\x1a\xa9\x23\xf0\x52\x7e\xdf\xd0\xa3\x82\x50\x1d\x1e\x26\x5f\x68\xde\x4c\x72\x5e\x54\x2f\xb0\xd3\xdd\x6c\x8b\xe3\x44\x6c\x36\x89\x60\xfb\xc7\x43\x6b\xf0\x5b\x30\x0a\x1c\x7b\x04\x90\x6d\x77\xe6\x2e\xde\xf6\x44\xb4\x1c\x88\x82\x18\xdc\xcb\xdd\xd2\x54\xbc\xfe\x59\x5a\x6b\xb4\x89\x78\x68\xa4\x0a\xd2\x4c\x9a\xa6\x8d\x16\x22\xb4\xe8\x1a\xde\x08\x0a\x63\x33\x99\x2a\x36\x0c\xe5\x15\xa0\xc7\xe8\x82\xe6\x74\x4e\x57\xf4\xda\xc1\x3a\xd1\x82\x0d\xe9\x92\x25\x6f\xd9\x88\x46\x11\xa1\x37\xb8\xcc\x89\x79\x72\xc3\x58\x41\xee\xd7\x6c\xc1\x72\x36\x67\x15\x8b\x22\xba\xc2\xbe\xbc\x61\xa3\xc3\xe6\x16\xec\x8e\x5e\x69\xc6\x74\xc6\x86\x67\x33\x5f\x1c\x62\x86\x45\x7c\xc7\xe4\x64\x36\xa5\x1f\xd8\x3b\x2b\x88\xe8\xcb\x12\x7e\x30\xb2\x84\xef\xcc\xed\x60\x11\xc7\x1f\xbc\xfe\x1e\x5f\x61\x47\x7f\x20\xe9\x3b\x33\x3c\x0b\x77\x79\xf8\x0e\x2e\x0f\xf5\xf3\xa2\xd8\x6c\x3e\xf8\x57\x90\xef\xe0\xca\xb3\xf0\xd2\x25\x63\x73\x15\xf1\x0e\xee\x1f\xdf\xc1\x95\x63\x11\xc7\x37\x17\xe8\x90\xdc\x80\x0f\x5d\x30\xdd\x0a\x1f\x02\xa6\x66\x8d\x07\xbc\x9e\x23\x84\xa8\xf0\x64\x2c\xa9\xc6\x55\x2f\x3a\xc3\x4d\x3e\x38\x6b\xdf\x46\xc2\x3d\xa8\x5c\x92\xdb\xb4\x9a\x00\x3a\xb8\x15\x81\xb7\x45\xbf\x89\xe3\xe4\x6e\xb3\x49\xee\x3c\x9e\xb1\x09\x45\xdf\x81\x38\xed\x07\x24\x76\x71\xdc\x9d\x03\x99\xfd\x60\x6d\x27\x07\x6d\x91\x74\x57\x20\x62\x62\x65\x01\xe9\x07\x23\x62\xb2\x62\xef\x88\x6d\xd7\x0b\xd3\x14\x46\x53\x52\x37\x06\xdc\xc6\x6a\x2a\x70\x07\x83\x08\xfb\xf7\xce\xf6\xef\xac\xc7\x8e\xc8\xdd\x64\xd6\x1b\x4d\xb1\xb4\x0b\xac\xd8\xdd\x64\x36\xc5\xb3\xfb\xd5\x66\xb3\x72\xad\xdf\xa4\x70\xe5\x8f\x90\x35\xa8\x4c\xd0\x2b\x1b\x69\x05\x12\x8d\x28\x2f\x3a\x24\x30\x00\xc5\x3c\x81\x50\x89\x15\x70\xac\xd5\xf8\xba\x37\x02\xd9\x49\xd2\x2f\x9c\x88\x63\x28\x00\x49\x9b\xd0\x56\xeb\x6a\x65\xc7\x44\xb2\x62\xdd\x11\xd9\xea\xaa\x15\x17\xcc\x72\x3f\x76\x38\xdf\x36\x87\x44\xd7\xf4\x86\x98\xc9\x60\xf4\xe5\x5e\xb2\xa2\xb7\xf4\x04\x99\xba\xe6\x80\xf0\x0d\x7b\x79\x71\x3b\x5e\x3a\x52\x78\xdb\x2f\x48\xba\xec\xd4\x6e\x13\x97\xd4\xf4\x0d\xcd\xc6\x59\x6f\x9d\xae\x69\x4e\x8b\xde\x1b\xab\xf2\xcb\x6e\xc6\x8b\x34\x8a\xe8\x9c\x56\xd0\xda\x2f\x2f\xd8\x2d\xb9\x5f\x32\x9b\x98\x4e\x8a\x16\xec\xb6\x83\x54\xb9\x60\x2f\x69\xce\xa2\x68\xbb\x74\xb8\x6b\x8a\x2a\x56\x4e\xde\xf6\x7a\x53\xc0\x64\x13\x09\x7e\xd0\xda\xe3\x42\x08\x2e\xf4\x07\xb6\x96\x6f\xd9\xe8\xec\x6d\x23\x39\xf1\x56\xf7\x66\x50\xda\x56\xe2\x53\x42\x4d\xc2\xa3\x56\xc2\xde\x21\x40\x1e\xae\x72\x43\xd6\x48\x86\x83\x20\x85\x91\x0d\x8f\xe3\x48\xb3\x5d\x4e\xfe\x56\x0f\x51\x4d\x26\x37\x9b\x80\x6f\xda\x6b\x22\xdb\xcb\x6d\x2e\x1e\xbf\x0b\x38\x28\xc7\xe5\x84\x4f\x5b\x72\x94\x0a\x6e\xfc\x04\xb9\x4f\x76\xd1\xdf\x90\x76\xb2\x9a\x72\xef\x14\x0b\x68\xb8\x7f\xa8\x05\xe7\x15\x06\x27\xa8\x32\xbe\x70\xc6\x65\x4e\x32\xcc\x8d\x35\xac\xd3\xe0\x0d\x6f\xc6\x17\xee\xca\x28\x48\xf8\x95\xc4\x88\xcf\xcb\xb1\x76\x4c\x47\x1d\xd1\xdc\x74\x1b\x4d\x29\x41\xb6\x04\x0b\x4c\x25\x68\xb5\x70\xb0\x5f\x20\xaf\x70\x33\xe6\xb5\x46\xd6\x3e\x22\xe5\x54\xb1\xc9\x14\x80\xbd\x35\xa3\xa2\x1a\x91\xd9\x5f\x64\xb2\x98\x94\x53\x2a\x92\x92\x50\xd9\x5c\x13\xa0\x56\x4c\x65\x3a\x0d\xb4\xc7\x80\x20\x9a\x53\xd9\x1c\x65\x7e\x2a\x73\xc7\x31\xc7\xcf\xb5\xf9\x5c\xe9\x0e\x5d\x10\xbd\xb2\x24\x0b\x0f\xf2\xbc\x60\x18\xa2\x6f\xae\x41\x1b\x1d\x06\xab\x95\x97\x0c\x69\x96\x0c\xe9\xc2\x41\x61\x50\x0b\x09\xe5\x12\xd2\xcd\x2d\xfe\xc1\xfb\x2e\x8c\x53\x30\x32\x43\xce\x6e\xad\xfc\x84\xfa\x23\xd2\x51\xc9\x9c\xce\xb1\xf8\xd7\x84\x16\x88\xef\x0e\x49\x9b\x9b\xea\x42\x6f\x34\xec\x09\x83\x2b\x91\xf1\x5c\x12\xb7\xbb\xc8\x19\x43\xc1\xef\x11\x63\xae\x14\x2a\xc9\x69\x8e\xe7\xa5\x76\xe2\x57\x83\xfc\x9a\xf4\x56\xbd\xc0\x79\xad\x1d\xa9\x29\x75\xa2\x4b\x39\xf2\x4b\x49\x82\xae\xd9\x1f\x57\xf7\x13\x7d\x30\xbf\xc5\x64\xa8\xbb\x73\x48\x10\x64\xdd\xab\x03\x30\xfb\xae\x16\x9f\x54\x78\x9d\x58\x6f\xbe\x5b\x06\x9b\x7e\xd0\x80\xbd\x11\x2d\xb0\x5e\xf7\x9f\x52\x3a\xdd\x1f\xab\x7d\x89\x5f\x93\xce\x4e\xbb\x74\x8a\x8b\xd1\x4e\x8f\xe9\x0c\xfb\xa3\x07\xea\xf9\xd8\x04\x59\x09\x07\xfb\x83\xa0\x23\xdc\x07\x39\x60\x81\x7c\x74\xcd\x86\xc0\xee\xb7\x24\xbf\xf9\xa4\x0e\x74\xba\x68\xd9\x03\x31\x70\xa7\xe1\xee\x5f\x9f\x37\x39\x5f\x37\x39\xe7\x9a\xb3\x2b\xb9\x64\xbc\x9d\xd7\x3e\x4d\x21\x7b\x32\x3d\x91\xd3\x4e\xdd\x63\x62\x90\x5f\xaf\xe5\x7b\xbd\xf5\x4e\x88\xce\x5b\x58\xa9\x03\x11\x68\x9a\x21\xe0\x0b\x80\x82\x85\x37\xfa\x3b\x15\xde\xae\x84\x0f\xfa\xe5\x92\x7f\x10\x09\xc9\x93\xe3\xdd\x52\xec\x97\x6f\xa5\x0c\xcc\x95\xb4\xa9\x90\x64\xbc\x57\x9f\x95\xe7\xb2\xd1\xa7\x12\x3e\x84\x43\x39\xf5\xdb\xad\xdf\x54\xea\x3b\x90\xff\xfc\x8b\x48\x04\x35\x88\xc3\x51\xa0\x36\x6f\xae\x6a\xf0\x42\xca\xf2\x3b\x2d\xb8\x7f\x3d\xb1\x34\x53\xbd\xb8\xb3\x68\x51\x10\xd7\xd9\x1c\xd9\x2d\xbc\x93\x8e\x30\x22\x18\xb6\xd5\x70\xcc\xf8\xd9\x9b\x31\xce\x89\x55\x4a\xad\x9b\xb7\x76\x30\xee\xa9\x8d\xb7\xec\x6f\xe8\x8e\x06\xc3\x1b\x7e\x17\x52\x51\xf3\xf2\xf5\x4e\xc1\x9a\x24\x74\x9b\x72\x68\x53\x80\x96\x2d\x7d\xc0\x13\x3e\xf5\x25\x11\xe9\xf5\x3f\xd7\xc7\x7a\xe0\x3c\xd6\xb7\x2e\x50\x7f\x47\x01\x32\x18\xe2\x7b\xb4\xe8\x02\x7f\x58\x81\x98\xf4\xc7\x34\x48\x3f\x9c\x3b\x91\x64\xc7\x87\xd5\x54\xf4\x39\xf0\x36\x76\xa6\x81\x2a\x9e\x57\xc6\x84\x53\x15\x88\xaf\xf4\x59\xd6\x97\x6e\x7a\x30\xa6\x2c\x3e\x8a\x2b\x9e\xbd\xe9\x03\x19\x23\x2a\xfd\x69\x01\xc7\xc5\x49\xdd\x67\x8a\x38\xf9\x93\x21\x12\x51\xde\x47\x7d\x9d\xa6\x15\xea\xf3\xa3\xa7\x3b\x89\x9b\xeb\xb3\xd1\x66\xd3\x0d\x7d\x26\xc3\xa9\x67\x9f\x74\x25\x88\x53\x96\x9a\x98\x79\x60\x47\x72\x52\x99\x0a\x39\x9a\x31\x01\x13\x2a\x22\xa9\xc8\x94\xb6\x13\x0d\x46\xcf\x03\xd3\x21\xd4\x69\x79\xa0\xb3\x6a\x12\x26\x5d\x4f\x9b\x12\xf1\x4f\x99\x37\xba\x51\x9a\x63\x1e\x1a\xce\xa5\xf6\x24\xd8\x5f\x06\x19\x90\x09\x57\x14\xb8\xb0\x16\xbb\x03\x86\x29\x58\x99\xc5\xc0\x2b\x9b\x29\x92\xb1\xf0\x52\xc5\xb1\x08\x88\xd7\xc5\xd3\x61\xd3\x1e\x19\x0b\x3d\x3f\x3f\x7a\xda\x3b\x7a\x4a\x2b\x96\x9d\x55\xe7\xa1\xd7\x99\x15\x76\x37\x5d\x21\x82\x59\x5e\xd1\xaa\xc7\x8e\x9e\x12\xd2\x11\x6e\x18\xae\x9d\x64\xd8\xbe\xd1\xd7\xeb\x49\x3a\xa4\x6b\x42\xd7\x41\x07\x9a\x64\x99\x68\xd1\x9a\xcc\x0c\x09\x00\xe2\x78\xbb\x12\x8b\x45\x42\xb6\xb8\x2f\xe0\x7d\xa6\xb6\x5b\xda\xf8\xb4\xc0\x11\xbb\x7b\x47\xe8\x39\x1b\x0d\x89\x2f\xc7\xd6\x29\x94\xd1\x75\xd1\x35\xd4\x2b\xd7\x4e\x99\x79\x3b\x91\xfe\x53\xfa\x94\x18\xd1\x25\xac\x05\x18\x3f\x42\x12\x01\xff\x94\xbb\xf6\xa8\x7d\xd1\xcd\x92\xdd\x28\x17\xc9\x25\x4b\x41\x81\xa5\xe5\xe8\xe6\x6b\x6f\x44\x87\x9a\xe4\x03\xcf\x81\x43\x69\xa7\xa8\xa4\xe3\xe6\xb3\xce\xdb\x9b\x41\xb4\x9e\x52\xce\xe4\xb6\x76\xfe\x56\x6d\xfa\xc3\xb5\x58\xec\xa9\xdc\xc5\x68\xe8\x95\x26\x68\xf8\x8f\x53\xe9\xff\xba\x31\xee\x80\xc1\x3c\xa2\xa8\xfa\x1c\x7c\x05\x60\x14\xbc\x4e\x38\xcd\x68\x49\x02\x99\x76\x43\xc7\xb2\x7d\x74\x4c\x59\xac\xb6\x42\xb0\x21\x5d\x0a\xf6\x66\xf0\x95\xca\xf7\x80\x62\xbb\xd1\xe3\x9b\x56\x5e\x8a\xe6\x4a\x99\x7f\x38\x58\x36\x9b\x31\x23\x36\x04\x62\xb3\x6c\x48\xf4\xfa\x83\xc8\xd4\x9a\x63\xb2\x34\x6c\x62\xb8\xdd\x08\xaf\x88\xc9\x94\x4c\xcd\xd8\x06\xfd\x77\xbb\xea\x3a\x49\x61\xe6\x7d\x02\x8c\x87\xc1\xc3\xf2\xa1\xae\xd0\x61\xc1\x33\xf9\x47\x2e\x79\x09\x17\x09\x6c\xe4\x34\xc1\x41\x26\x80\x95\x66\xd3\xb5\xe2\x49\x49\x87\x46\xbe\xb9\xe2\x0b\xf6\x1a\x8e\xe2\x90\x5c\x21\x66\x02\x8c\xab\xf7\x22\xc1\x25\xa1\x76\x48\x74\x85\x30\xb3\x50\x15\xd6\xfc\x77\xed\x21\x1a\xf2\x15\x93\x16\xc6\xab\xe6\xb2\xd0\x45\xdb\x67\x66\x3f\x31\x92\xa3\x70\xad\xa5\xf7\xb9\x95\x66\x13\xe8\xdc\x88\x87\x23\xda\x87\xa0\xb5\xd2\x0f\x7e\x5b\xa7\x7c\x4b\xe8\x2f\x88\xe7\x47\xb1\xb4\x4a\x91\x6d\xc7\x37\x4e\xce\x66\x2a\xf1\xd7\x7b\x7a\x9f\x2b\x59\xd5\xe5\x3a\xaf\x55\x99\x2e\x05\x8c\xd8\x9d\x01\x5b\x8e\xb1\x72\x38\x8a\xfa\x4d\x37\xd0\xba\xaf\xf7\xa9\xa9\xe7\xed\x7b\xba\xd7\x9e\xa3\xfc\xb4\x59\x23\x1e\xe4\x09\x87\x6d\x13\x64\x7a\x36\x94\x3d\x6b\x7e\xac\x61\xa5\x03\x7a\x1e\x14\x8b\x96\xc4\xf2\x28\xfb\xd8\x93\x80\x33\x08\x22\x92\x2d\xb5\xf8\xcc\x7b\x50\x46\x6f\x4d\xdb\x7f\xa4\x92\x76\xc7\x0c\x20\xf0\x7c\x5c\xa7\x35\x82\xde\xf3\xcd\xc6\x1f\x06\xd6\x24\x16\xd9\xd2\xca\xe6\xf9\xd7\x3a\xd9\xcd\x76\xc5\xfd\x66\x1d\x12\xea\x40\x06\x83\x6c\xfb\xa3\xce\xab\xd2\x1f\x1c\xb5\xb1\x37\x5d\xd2\x77\xa6\xe0\x65\x60\xee\x9a\xe0\xb8\xd9\x1d\x65\x0e\x3d\xc6\x96\x2b\xa2\x7a\x4b\x9e\x76\x87\x5b\x40\x1f\xf3\x46\x59\x4d\xc8\x96\x50\xdf\xee\x57\xba\x4b\x21\xbe\x31\xc5\xe2\x14\x04\x23\xad\x38\x71\xc9\xca\xb1\xfd\xd4\xa3\x88\x4a\x6c\xfe\x7d\xc9\x58\x1e\xf1\x83\xa9\x89\x8d\xc7\x09\x6d\x52\x0c\x1a\xbe\x1c\xcb\x54\x62\xc3\x97\x0f\x36\xbc\xb1\xee\xf7\x10\xa2\xac\xf1\xfe\x06\x20\x88\x3c\x7c\xd0\x3a\x8e\xf1\xd4\xc3\xa5\x80\x41\xd2\x16\x14\xd7\xb7\xae\x94\x96\x18\xda\x9e\xe0\x4d\xe6\xaf\xd7\xcb\x59\xcb\xa2\x63\x23\xd5\xe3\x85\xc3\x2c\x7e\x11\xd5\x3a\x5b\xec\x5a\x3a\xb6\xa6\x06\x20\xb1\x36\x21\x69\x72\x25\x14\xf4\xc7\xb6\x54\xb7\xc5\x0b\xb5\x7e\x04\x24\x14\x18\x7d\x67\xa3\xf9\xa1\x60\x10\x60\x4b\xad\x2e\xd8\xa3\xc1\xfc\xb1\xba\xa5\x06\xbe\x64\x5f\xc5\x9b\xde\x85\xda\x23\x26\xce\x83\xb0\xbf\x7c\x61\xb5\x5e\x12\xe2\xe3\xf0\x03\x72\x3b\xda\x8e\x87\x79\x08\x06\xe7\x52\x6b\x62\x1e\x9d\xf0\x23\x8d\xb8\x84\x40\x9b\x4d\x54\x2b\x7c\xb1\xb3\x17\x4c\xa4\x37\x16\xc3\x69\x68\xf9\xee\xc1\xd6\xe3\x8b\x41\xa9\xc7\x71\xb5\xa5\x3b\x76\x1e\x1f\x8b\xb4\xc7\x28\x24\xd0\x07\xd3\x06\x01\x81\xc0\x89\xf1\x33\x0f\xa7\xc4\xee\x18\x18\xaf\x60\x1f\xbc\xd9\x0c\x49\xca\x89\x53\xa7\x21\xd4\xb7\x1f\xf8\x29\x49\xfb\xb3\x6d\xb3\xe1\x04\x53\x69\x19\x0f\xde\x97\xd0\x37\xbb\x09\xd5\x71\xec\xd3\x82\x3d\x09\x55\xed\x94\xc8\xfd\x97\x26\xc6\xd7\x5e\x3a\xfb\x62\x7e\x79\xf7\xf1\xb8\x77\x16\x73\xd8\x75\x15\xcc\x8f\xba\xdd\x30\x3b\xc5\xb0\x30\x1b\x96\x8c\xde\xef\xd1\x9b\xe7\xbe\xfd\x4c\x31\x91\x53\x66\x4c\x37\xba\x16\xd0\xab\x19\x8e\xbe\xa6\x51\xb9\xb5\xb0\x49\x2c\x9b\x04\xc0\x9d\x9e\x5c\xaa\x3b\xfe\xa2\xc1\xd8\x47\x9b\x08\x0d\x65\xfe\x8d\x27\xc2\x34\xeb\x96\xd0\xac\x78\xbc\x77\xbc\xed\x77\xd3\x18\x76\x57\x01\xcc\xb2\x67\x7b\xf2\xa1\xb1\x10\xe6\x2e\xa9\xf4\x4e\x79\xa1\x77\xaf\xfc\xc1\xb6\x77\xe3\x69\x17\x36\xaf\x47\x90\x15\x28\xf7\x58\x23\xb5\x2b\x41\xa9\xdb\xcc\xd8\x6c\x85\x77\x3d\x5f\x49\xa7\x66\xf5\xb8\xb6\x07\x2e\x82\xa4\x62\xfb\xcf\x2e\xca\x57\x7c\xef\x3c\xdf\x35\x3b\xfb\x5f\x56\x66\x80\x84\x80\x8b\x67\x6b\x48\xe7\xa1\xd2\x11\x0a\x4a\x29\xc2\x49\xb0\x6e\x69\xdb\xf0\xe5\x23\xfb\x8e\xc9\x94\x7a\x38\xaa\x5e\x97\x7b\x80\x4c\x72\x22\xa6\xcc\xa8\x25\xed\xda\xb5\x95\x3a\xc9\xcd\xc6\x19\xef\xdc\xcd\x7e\xef\xac\x69\x15\xc1\x66\xef\x6c\x0c\x85\xc5\xf0\x4c\xcb\x58\xaf\x89\x9a\x76\xe4\x44\x4d\x19\x72\x38\x99\x6d\xc4\x5a\xa5\x19\x34\xe2\x03\x2c\x0d\xa0\xfc\x1a\xae\xa6\xdc\xda\x8b\x8c\x38\x06\xba\x0f\x68\x4b\x1f\x29\x6a\x88\xbd\xa5\x98\xa0\x28\xd6\xee\x98\x54\xcf\x80\x67\x8d\x82\xeb\xbf\x95\x49\x65\xb0\x09\xa8\x02\x8c\xe1\x32\xf9\xa1\x4c\x2a\x90\x80\xc0\x9d\x19\x00\x2e\x53\xc5\x16\x34\xca\x40\xbf\x29\x62\xcc\xcc\xc7\x9c\x71\xaf\x67\x74\x8a\xa0\xea\x9e\xa3\xd5\xd4\xdc\x92\x8e\xf3\x61\x47\x4e\x32\x47\x5d\xe6\xe3\x45\xba\xa6\xf3\xf1\x3a\x5d\x98\x63\x7d\xdf\x77\x4d\x1b\x48\x13\xed\xf4\x93\x9e\xa7\xbc\x45\x44\xb6\x38\x44\x25\xad\x8d\x2c\x33\x6b\x66\xf2\x99\xba\xd0\x3d\xd5\xef\x13\xcb\x69\x02\x9e\x41\xa7\x1a\xff\x6a\xa6\x7e\x65\x76\x03\xf9\x32\x8e\x7f\x36\xc7\x8e\xf9\x52\x4f\xff\xb5\x2c\x54\x30\x26\xc8\xfd\xb7\x26\x11\x34\x0e\x87\x8c\xe4\xc3\x81\xc0\x3a\x9c\x4d\x69\x3f\x3d\x6b\x27\x09\xb0\x07\x98\xea\x47\x23\xa0\xf1\x39\x8c\x50\xf1\xfa\x25\xac\x28\xa0\x14\xe4\xcd\x7c\x7f\xdf\xc6\x81\x44\xec\x09\x17\x2e\xea\x18\x7a\x4b\xcd\xae\xb1\x7d\xb6\xda\x32\xb3\x60\x42\xd1\xf6\xb1\xbf\x07\xde\x07\x04\x05\x5d\x34\xe9\xc0\x01\xb2\xd9\xf4\x7a\x78\xde\x6a\x63\x04\x80\x7f\x26\x0e\xba\x85\xb1\xac\xe9\xa2\x7b\xe8\xa0\x1a\xbb\xa0\xdc\x6a\xfe\xac\xc1\x07\xdc\xb1\xd0\xd0\xda\x03\xfb\x6e\x83\x65\x76\xdb\xec\xb0\x01\xac\xbf\x7c\xff\x42\xef\xbb\x77\x52\x69\xef\xc6\xcd\x61\x87\x2e\x5b\xe3\x9a\xe8\x3e\xa1\x6d\xd7\x7d\x6c\x23\xb7\x07\xad\xb6\x24\x9a\x2b\x7d\xb3\x62\x3b\x6e\x6f\xf9\x62\x9f\xf3\x1b\x20\x10\xcc\xdb\xd0\x5b\xdf\x2b\x97\xef\x96\x8a\xaa\x55\x19\x1e\x76\xf8\x6e\x1c\xc6\x1c\x21\x6f\xd5\x18\x97\x99\x3d\x8d\x6c\xfa\x44\x77\x57\xfa\xaa\xd5\xbe\xda\x11\x67\xc1\x1e\x4f\x74\x26\x5b\x60\x1a\x77\x12\x0e\x39\xe7\x4f\xef\xc4\x4e\x0d\xb9\xb2\x57\x68\x1a\x5b\x3a\x75\x4b\xe2\x2c\x33\xd3\xda\xe4\x8d\x81\xcc\xf0\xdb\x09\xb6\xd5\xdc\x08\x20\xa2\x2f\xb2\x6a\xef\x22\x61\xda\xf2\x3b\xb7\x69\x8c\x50\x81\x5a\x33\xb4\x63\xfb\x9e\x46\x20\x6c\x13\xd1\x76\xd5\x24\x43\xe0\x47\x08\xdc\xe8\x73\xa6\x51\xa3\x44\x8a\x7e\x8d\xd6\xe7\x6e\xf2\xd6\xe7\x43\x99\xad\x8c\x3e\xa8\x66\xf8\x26\x72\x0a\x9c\xdf\x6b\x95\x94\x46\xcf\x13\xdc\x1a\xeb\x60\xbc\x51\xf7\x34\x07\x69\xa0\x3b\xda\x71\xf7\x2d\x48\x8e\x96\xea\x86\xff\x7f\xaf\x0d\xa8\xb9\x6b\x14\xf3\xa4\x2b\x9a\x3a\x37\xc0\x15\x80\x5d\x88\x57\xa5\xee\xf8\x55\x01\x50\x4d\x9d\x5f\x63\xab\xa1\xec\x8f\x0a\xed\xa9\x65\x4c\x19\x1d\x5d\xd5\xe8\xe8\x42\x5b\xfa\xc6\x03\xad\x5e\x6f\x62\xde\xe2\x38\xeb\x3a\x39\xb5\xb1\x55\xa3\xb2\x11\x32\x82\xaa\x9b\xdb\xa0\xe9\xcd\xd8\x43\x10\x84\x47\x1a\x7e\xf7\x0c\xc3\xc8\x62\xf0\x0f\x07\xbf\xa3\x56\x38\x98\x46\x04\xdc\x5c\x2b\x1f\x11\xc7\x22\x50\xe7\x57\x4e\xb0\x2f\x5b\x88\x2b\xf9\xab\x51\x4d\xd7\x73\xe5\x3b\xbc\x81\xb0\xea\xe4\x01\x60\xac\xd5\xbe\x31\xaa\xec\xa0\x28\x60\xd5\xda\x27\x53\xd2\xb4\xb7\xbd\xd1\xf8\xa2\x1e\x1b\xf3\xf0\x82\xa4\xa5\x3d\x09\x77\x7b\x86\xb2\xd9\x33\x78\xba\xef\x4d\x64\x42\xe8\x90\x0a\x7b\x17\xc2\x6a\xaa\xd0\x3e\x43\x23\x38\x21\x19\x62\x37\xf0\xe6\xc0\xb5\x03\x68\xb6\xf6\xb4\xbe\xf7\xab\x04\x79\x44\x09\x80\x0d\x46\xbc\xd3\x5e\x72\x00\x20\xec\x1e\x8d\x74\xaf\x67\xa8\xd8\xba\x13\x22\xdc\x2c\x34\x73\xc4\xf4\x55\x78\x71\x6b\xb1\x70\xa9\xc5\x37\xde\x3d\xb4\x34\x08\xdf\xf2\x91\xf3\x22\x5a\xd2\x12\xf0\x4f\xee\x56\x7a\xe7\x0f\x6b\x62\x84\xdb\xed\x2f\x8d\x0c\x62\xba\x0f\x4a\xed\xde\x07\xae\x4e\x6b\x27\x71\x58\x03\x9a\xc2\x4f\x77\x2b\x3e\xb6\x5d\x96\xd6\x84\x36\xd0\x87\x29\x1c\x1c\x35\xdf\x34\x84\x7d\x4b\xbb\x23\x8a\x78\xe6\x18\x10\xdf\xe9\x0e\x02\x36\xfa\xee\x38\x6f\x3b\xad\x4a\x73\xe6\x55\x5b\x8f\xd9\x46\xb4\x92\x6c\xa9\x03\x96\xfd\x62\x9f\x51\x2b\xd8\xd9\xd8\x73\xa3\xc4\x4f\x89\xec\x87\xff\xf4\xe0\x43\xc2\xfd\x8f\x77\x99\xa1\xf7\x3a\x67\x6e\xf4\xa2\x1c\x9f\x30\x82\x9b\x1c\x15\x99\x77\x90\x5f\x2e\xac\x4f\x6d\xc6\xb8\x45\x79\xc1\x3b\x17\x1d\xc8\xc0\xdc\x78\x9b\x21\x57\xb7\x9d\x71\x11\xb4\x89\x7f\x1c\xd9\xf1\xb8\x7d\x1e\xa0\x10\xb9\xe3\x6d\x63\x39\xc1\x68\xb9\xf8\x38\xcf\xee\xfe\xe5\xd3\xa1\xb1\x2a\xbb\x61\x30\xd0\x58\x28\x18\xb6\x06\x69\x53\xc1\x4c\x11\xd0\xfe\xe4\x05\x38\x23\x3d\x63\x6c\x6d\xa4\x30\x41\x1c\x4c\x07\xb2\xe6\x09\x9d\x07\x73\x78\xda\xe8\x74\xc1\xea\x41\x7e\xbd\xd9\x94\x71\xdc\x2d\x1b\x84\xac\xcd\xc6\xec\xec\xd7\xed\x26\x75\x41\xb6\xbd\x9e\xd8\x12\x2a\x81\x4d\xf9\x62\xb1\x68\xb5\xa9\xbd\x1a\x9c\x4c\x77\xdb\x6a\x1f\x49\xfb\x67\x86\x8c\xc1\x4e\xb4\x3b\x65\x30\xf0\xa8\x0b\x0b\x2e\xb6\x78\x84\xf2\x2d\x5d\xa9\xea\xeb\x52\xe1\xf6\x65\x77\x24\x07\xa7\xe5\x54\xb2\x7d\xfb\x69\xbb\xe4\x3c\x5c\x09\x27\x75\x20\xfc\x13\xf4\x1e\xa0\x1a\xaa\x0b\x07\xd7\x50\x33\x4e\xbb\xc3\x0e\xef\x33\x45\x7b\xbd\x72\xdb\x50\x1b\x38\x87\xaf\x89\xb1\x9d\x75\xab\x0b\xdc\x3e\xfc\xc4\x89\xd7\x9a\x6b\xf9\x75\xc7\x9a\x0b\x30\x58\x42\x50\x11\x10\x86\xbc\x3e\x1f\x36\x68\x36\x37\x8d\xf5\xa1\x4f\xad\x9d\xd7\x2e\x66\x64\x07\x7b\x9d\x9e\x91\x16\xb7\x95\xd5\xd5\xa9\xb7\x34\x57\xab\x7d\x1c\xa5\xb9\xe6\xfb\xd4\x3b\x92\xf6\x1d\xd9\x4e\x04\x53\x89\xe6\xcc\x7d\xff\x6d\xdf\x4f\x6a\x45\x6b\xff\xe6\xaf\x0e\x6f\x02\xb5\x27\x5f\x34\x47\x0d\xb5\x77\xed\x06\xfb\x85\x80\x73\xfe\x8a\xaf\xea\x6b\xb6\xc3\x50\x83\x33\xa4\x64\x59\xea\xc4\xde\x0f\x34\x00\xea\xd0\x38\x68\xd5\xe1\x2b\x95\x87\x0b\xd6\x66\x93\x80\xea\x60\xc7\xe3\xbe\xb1\xae\xfb\xef\x72\x3a\x56\x4c\xd4\x0e\x7d\x98\xc6\x78\x18\xc8\x3d\x11\xe6\x2e\xe0\x6b\x80\xc1\x54\x75\x8e\x57\xaa\xfa\xd5\x12\xb3\x76\x9f\xd0\x12\x14\xc0\x54\x61\xb7\x23\x7e\xfb\xef\x6f\x76\x6e\x56\x21\x5d\x4f\x50\xe0\xb3\x9b\x06\xbf\x91\x08\x75\x02\x46\xef\x79\xa1\x39\x96\xe6\xcb\xd7\x6a\x2c\x54\x9e\x4a\xda\x24\x98\xfa\xa9\x6b\x3a\xe3\xe2\x40\x50\x28\xb4\xb5\x8e\x91\x76\x87\x0f\xc6\x9c\x3e\x88\x04\x10\x80\x62\x96\x96\xe4\x4a\x56\x5b\xf9\x22\x07\x25\xd9\xe0\xa9\x1b\x28\x49\x80\xf5\x68\xdc\x6a\x3c\xb3\xb9\xe6\x60\x8e\xc3\x9e\xf5\x80\x1d\x10\x45\x33\xd0\x75\x84\x3b\x88\xe6\x0d\xf8\x0a\xd2\x91\x0e\xfd\x0b\x1a\xa1\x22\xb4\x11\xb2\xdb\x6e\xb7\x89\xa4\xef\x0c\xc8\x0f\x10\xda\xb5\xd4\x6d\xd0\x1e\x41\x9a\x06\xf8\xf7\xeb\x6f\xe0\x5e\x07\xed\x36\x51\xaf\xb5\xc9\x1e\x29\x9e\xb6\x01\x92\x3a\x30\x13\xf3\x9e\x17\x93\x7a\x0a\x18\x5e\xcc\x93\x80\xd4\x31\x2c\x04\x2d\x05\x81\x4a\x57\x30\x2c\x2c\xfd\x20\x13\x57\x70\x23\x7d\x8e\x16\x6d\xed\x08\x09\x87\x88\x59\x04\x26\x08\x3e\xbb\x63\x79\xa5\xb4\x2a\x3b\xa2\x20\x78\xcb\xc8\xf7\x5f\xb4\x87\x96\x0e\xd8\xbe\xcd\x31\x0e\xf3\x70\x47\xbc\x13\x10\x9d\xe1\x84\x1c\xae\xbd\x5f\xd9\x99\x1b\x12\xe5\xab\xf0\xc2\xee\x7b\x55\x3c\x78\xc7\xa5\x27\x13\x9e\x09\x15\xa2\xf6\xef\xab\xc2\x60\xf9\x72\x4b\x9b\xb3\xc9\x07\x8f\x11\xcc\x44\x1c\x1b\xc5\xd6\x24\x98\x9d\xe9\x77\xca\xdd\xe2\x39\x4a\xff\x98\x58\xe6\x5b\xbe\x42\xbd\xc7\xed\x96\x50\x5f\x24\x60\xc0\xad\x19\xa1\xc0\x55\xb7\x08\x5a\xea\x13\x2c\xd2\x1f\x07\xc8\xb5\x1e\x20\x63\x7e\xa0\x17\x81\x03\x57\xd5\x03\x4f\x8c\x20\xf2\x0c\xc8\x37\x4a\x40\xe2\x40\xc8\x03\x3f\x07\x12\x64\xd7\x02\x9a\xbb\x13\x24\x8e\x6f\x54\x72\x23\xe8\x9d\x20\xe7\xc3\x38\x4e\xde\x34\xa1\x27\x77\x62\xba\xcf\xc6\xe2\x6e\xf5\xb9\x11\xee\x84\x66\x00\x53\x73\xe5\x15\x68\x6d\x55\x64\xbb\x4d\xfc\x12\xe8\x34\x09\xf1\x0c\x13\x39\x3d\xaa\xa4\x01\x85\x48\x40\xbb\x0d\x81\xe7\xda\xf3\x0d\x8f\x83\xe5\xce\x64\x73\xe8\x26\xd6\x6b\x92\xc1\x0e\x1a\xca\xd3\x65\xc2\xf2\x80\x2a\x8e\x2b\x8f\xa4\x75\x34\xaf\xb6\xd6\x94\x14\x43\xd2\x35\xa1\xdc\xbc\x4a\xba\x06\x23\x07\xc4\x42\xe3\x05\xe0\xae\x33\xe1\x59\x03\xc8\x97\xbb\x46\x68\x7e\xba\x16\xd5\x81\x55\x5f\x3b\x10\xd5\x41\xb6\x28\x79\x56\xdc\xe9\x1e\x5a\x57\x7c\x10\x91\x0e\xd0\x15\x56\x83\x26\x07\xe3\xf4\x7d\xc2\x09\x7d\xab\x1f\xfb\x0d\xef\x6d\x36\xaf\x43\xcf\x25\xa0\x00\xfa\xab\xcb\x9f\xea\x00\x04\xec\x9d\xf0\xac\x82\xf7\x99\x39\x5a\x27\xe7\xc3\xcd\xa6\xd6\x0c\x3f\xb0\x08\x7b\x4a\xce\x4b\xae\x4b\x2c\xd5\x81\xce\xff\x20\xea\x25\x75\xcf\x46\xee\x45\x60\xdd\xff\x9a\xbb\xca\x0d\xbc\x11\x58\x32\x7e\xd6\x45\x2b\x21\xd5\x59\xc0\x77\x06\x1b\x94\x8f\x89\x5a\xd5\xe7\x8a\xdc\x97\x4c\x18\x82\x57\xf7\x99\x72\xa0\xd0\x46\xbe\xb6\x9e\x7a\x16\x36\x5a\xea\x78\x78\xed\x11\x42\xb3\x7e\xc4\x84\x0c\x77\x80\xfd\xc0\x8c\x75\x04\x73\x26\x87\x12\xc5\x94\x87\x7b\x96\x5f\x03\x52\x8b\x63\xfe\x3d\xef\x1a\x3d\x0d\xbf\xaf\x08\xb5\x7c\xbd\x2b\xe9\xed\x4e\x49\xdb\x05\x0c\x20\x7f\x1a\x03\x1f\xa8\xa4\x13\x26\xf6\x32\x80\xfb\xa8\xfb\xdc\x13\xcc\xf5\x99\x7e\x7e\x26\xcf\x24\xb3\xc2\x78\x44\x36\x92\xa0\x9e\xd1\x0c\xe1\x61\x3d\x32\x27\x90\xb7\x17\xb8\xbc\x91\xd7\xa3\x25\x9a\x68\x73\x26\xcf\x24\xb3\x32\x7d\x67\xf2\xac\x66\x92\x7a\xf9\xfa\xe8\x1e\xb2\x19\x01\x62\xda\x65\x35\xc0\x0f\x96\x3d\x16\xb8\x07\xa3\xc2\x76\x7f\xaf\x36\xc2\x10\xae\xe8\x6f\x45\x08\x7b\x0d\xde\x1d\x9e\x16\xaa\x25\x04\xb8\x23\x56\x18\xc8\xf7\xef\x8c\xc9\xa6\x31\x61\x38\x72\x26\x3a\x0d\x7c\x39\x8c\x49\x14\xff\xf7\x4a\xd9\x20\x97\xa3\x20\x63\xd7\x80\x70\x93\xe0\xce\xa0\x65\x52\x51\xda\x5d\xad\xf1\xf1\x04\xb0\x20\xef\xcc\x88\x0d\xd6\x7d\x96\xb9\x0c\x7a\xde\x38\x78\xd1\xd2\x93\x1e\xd2\x52\xef\x6f\x40\x04\x85\xd8\x9e\x72\x7b\xbf\xbd\x99\x0b\x56\xba\xcc\xf1\xce\x8c\x71\x9b\x6d\xa3\xe2\xe0\x2c\xa9\x2a\x66\x77\xb1\x67\xea\x4c\xb1\xa4\x64\x8a\xf8\xdd\x8c\x99\xa9\x87\xdb\x5b\x6f\xe1\xbd\xf6\x86\x2d\x3c\x63\x65\x93\x65\x66\xb3\x74\xa7\x0d\xae\xba\x5f\x08\x1f\x0b\x1e\xf4\xba\x42\x79\x14\xcb\xc0\xa3\xca\xd7\x22\xb3\xb3\x47\x6f\x1d\x5c\x2a\xef\x1b\x7d\x10\x60\x5c\xac\xf5\x5b\xc3\xc7\xf8\x9f\xb8\x5d\x19\x1d\x0e\x1b\x2b\xcf\xdf\xab\xe2\x27\xb1\xe4\x8d\x61\xf7\xb7\x7c\x01\x0e\x5e\x18\x7b\xf7\xd1\x5c\x85\x34\x26\x9a\xbd\x7b\x90\x20\x4c\x73\x35\x42\xcd\xd6\x27\xbc\xb5\x09\xee\x0b\x18\xdf\x6c\x3c\xd4\xe6\xef\x83\x79\x80\x57\xb7\x85\xb5\xfd\x02\x97\xb7\x3f\x94\x49\x6d\xee\x6e\x3f\x34\x66\x69\xd0\x2c\x8c\x3b\xd6\xfa\x4d\xc0\xc1\xab\x67\xb2\xa6\xb1\x46\xd3\x1b\x11\xba\xc3\x53\x7e\x24\x02\xb2\x99\x1e\xa9\xf9\xc1\x0d\xd7\x33\xde\x48\x74\x03\x06\x86\x66\xb7\xcc\xa5\x99\x95\x95\x1d\xac\xd4\x2a\xf1\x51\x01\x7e\xda\x03\x1a\x65\xb8\xcd\x8e\x08\xef\xe3\x18\xee\xd7\x15\xcd\x58\x4f\x2f\x70\x5f\x65\x35\xe8\xbe\x25\xc2\x76\x10\x93\x9b\x8d\xf0\x7b\x83\xd5\x03\xbc\xc0\x8e\xe3\xe6\x2d\x89\x7a\x51\xe3\x63\x4d\xb0\x0f\xd1\xbe\xd7\x12\xc4\xda\x9b\x31\x71\x91\xf5\x03\x0d\x4a\x53\x36\x38\x3c\xfc\x8a\x2f\xb2\xbb\xcd\x26\xfa\xc3\xde\xe4\x00\x1e\x46\x3d\x80\x3a\x3c\x4e\x7e\xb0\xb7\x42\x84\x5e\x2b\xfb\x4a\xd2\xe0\xd6\x32\x8e\xbb\x8d\x9f\x69\xc9\x71\xe3\x12\x06\xbe\x18\x81\x69\x43\xb8\xac\x0c\x3c\xfa\x47\xf6\xea\x72\x6c\x2f\xa2\xa0\x17\x82\x7c\x0d\x96\x65\x22\xa8\xd7\x9a\x8d\x26\xc5\xb5\x4a\x94\xb9\x64\xac\x48\x67\xd7\x0c\x11\xe8\xa2\x36\x6e\x95\x76\x1b\x83\x81\x28\x18\xa5\xa9\x8b\x8c\x0b\xa0\x19\xdc\x9e\xc4\xf9\x5a\x67\x21\xb0\x34\x40\x5e\xd7\x71\xbc\x76\x37\xae\x3f\xea\xc6\xaa\xf8\x82\x9a\x10\x54\xb1\x7b\x93\x60\x3a\x31\x89\x4d\x69\x33\xbd\x52\x11\xde\x3e\x9a\x5a\xe3\x3a\x7e\x26\x82\x66\x13\x0d\x55\x38\x23\xc6\xab\xba\x16\xf3\x3a\x21\x26\xe2\x64\xd8\xdc\xfd\x86\x01\xb6\x7e\xca\xa0\x1a\xe1\x4d\xf1\x5e\x4f\x84\x33\x9c\x06\x23\x8b\x89\x80\xd4\x64\x4d\xc3\x0b\x9f\xc8\xd0\x60\x40\x8b\x16\x6d\xb1\xc3\x8e\x56\x9b\x0d\x62\x0b\x99\x01\x8a\x16\xda\x3c\xee\xf1\xc7\x80\x9e\x5c\x2b\xb0\xdd\x10\xc7\xa5\xa9\x99\x7e\xe3\xbf\xaf\xb3\x45\x95\x70\x30\xd4\x68\x2d\x91\xb9\x04\x7e\xdb\x99\xa9\x6d\xeb\x28\x80\x90\x60\x38\x1f\x77\x6b\x62\x25\x40\x4a\x42\x3d\x89\x2c\x3c\xba\x41\x9e\x95\x4a\xcf\xf8\x5a\xa9\x77\xb5\xde\x91\x67\x1c\x27\x06\x52\xa2\x9d\x1b\xbb\xdf\x12\x32\x51\x53\x16\x84\xd7\x5c\x9a\xf2\xed\xb5\xbd\xb6\xac\x50\x97\xef\x67\x7f\xe8\x43\x96\xe6\xcc\xf9\xee\x0e\x5c\xf9\xb8\xd6\x5b\x0c\x1f\x3d\x97\x10\xbc\x5d\x30\x16\xc7\xca\xc6\xe2\x58\x3d\xb6\x07\x29\xe3\x1a\xb4\xa6\x53\x0f\xc5\xf6\x95\xd8\xa3\xde\xb0\x23\x0c\xe7\x56\x59\xe5\x6e\x12\x95\xa5\xaa\x06\x40\xb2\x1c\xff\xc4\x03\x33\xb7\x7c\xf5\x42\xad\xee\x50\x47\x40\x91\x54\x91\xe6\x6e\x11\xd7\x6a\x14\xba\x02\x0d\x29\x93\x86\x9b\x4f\xd5\xb6\x6d\x8e\x35\xf3\xed\xb0\x22\x74\x14\xcd\x59\x36\x59\x9b\x4d\x19\xc6\x87\x15\x2a\x37\x34\x41\xa5\xf9\xa0\x56\xb8\x38\xa1\x02\xeb\x96\xd0\x86\x69\x9c\xeb\x5d\x47\x4e\x92\x05\x9b\x5b\xf8\xe2\xbf\x63\xe7\x26\x97\x45\x8f\x7c\x76\x48\x70\x2f\x5b\x53\x14\xf4\x4d\x16\x93\xd1\x94\x90\x8b\xfe\x28\x8e\x93\x6b\x95\x54\x64\x32\x9f\xb2\x7c\x32\x9f\x52\x54\x63\x3c\xd0\xef\x7a\x7f\xe7\x0c\xeb\xb8\x56\xfe\xca\x1b\xb7\xa5\xe1\xd7\xc6\xf8\xd7\x63\x32\xad\xcf\xed\xad\x81\x39\x30\x06\x5d\xf5\xfc\x9a\xf9\xfb\xc3\x6f\xc5\x43\xc0\xbe\x8f\x58\x09\x43\x75\x11\xd7\x57\xf7\x6a\x90\xab\x95\x80\xa3\xbe\x04\x03\x31\xe5\xfa\x2a\x21\xc4\x78\xb3\xee\xb0\xe9\x00\xbc\xff\x50\x2d\x21\xaf\xaa\xd7\x23\x5f\x09\x97\xf4\xa4\xb2\x52\x91\xa6\x8c\xb4\xe5\x09\xe2\x4f\x06\xc8\x1a\x06\x82\x4e\xde\x26\x6d\x09\xf3\xae\xf5\x11\xe7\x67\xac\x90\x94\xe7\x6b\xcf\xf2\x1d\xbe\xb3\x15\x4f\x3c\xd7\x9e\xa4\x6b\x8b\x4f\x40\xe8\x5a\x2f\x00\x10\xc0\x32\x10\x12\xdc\xb4\xa7\x53\x37\xaf\xcf\x99\xf3\x27\xf7\x19\xeb\x8e\xec\xc1\x58\xb6\xd9\x24\xce\xa6\xd3\x10\xed\xbb\x0b\xdd\x2f\x1e\xff\xf0\x75\xb8\x6b\xf2\xb8\x16\xc9\x1c\xdf\x02\xfb\x47\xdf\x50\x56\x22\xfb\x25\xe9\x8f\x3a\xdf\xda\x45\xd8\x18\x6e\xa1\xdf\x36\x62\x18\xc6\x69\x5b\xaa\x64\x69\x90\x92\xfe\x21\xd8\x9b\x01\x7f\xb7\x2a\x39\x2e\xff\xf3\x6c\xbd\xa8\x59\x4b\x3d\x36\xf0\x1c\xb7\x1d\x12\xbd\x6a\xe3\x20\x05\x2d\x01\xd6\x1d\x6d\xe9\x37\x98\x6e\x55\xab\xd5\x0f\xa5\x5a\x65\x57\xb8\x80\x84\x09\xb7\x7c\xc7\x3b\x2e\x90\x74\x9e\xc9\x9c\x2f\xbe\x5c\xcf\x66\x0b\xb8\x2f\x6e\x4e\x67\xbe\xf4\x71\x1c\xec\x39\x78\x81\xa5\xfa\x01\xcb\xc8\x8b\xf1\xae\x53\x3a\x64\x2c\x28\x32\x48\x02\xfe\xde\x14\x39\x28\xe7\x3f\x74\x2e\xf4\x1b\x10\xc2\xf7\x0c\x1a\x88\xc0\xec\x51\x9d\x95\x57\x1c\xae\x63\xaa\x32\x37\x28\x40\x9e\xa1\x82\x60\x47\xf0\xe1\x5a\xe4\xd7\xbb\x3b\x82\x51\xcc\x07\xb3\x75\x5d\x2b\x39\xae\xd9\x28\x3d\xf2\x3f\x8f\xd3\x27\xee\x13\x36\x0f\x47\x84\xd0\x1b\x60\xef\xea\x72\xf1\x1d\xbf\x8b\xe3\x91\xdd\x57\x1c\xeb\x6d\x84\xce\xeb\x17\x5d\xa1\xa0\xd1\x3d\xa1\xe5\xac\x28\x80\xe3\x7b\x25\xaa\x5a\x2f\xe7\x64\xd7\x09\xf6\xfa\x5d\xcf\x4e\xab\x35\xae\x0e\xa1\x48\xf0\x95\x44\x4a\x46\x3d\x40\xf7\xf6\x54\xee\xf8\xe0\x1d\x5e\x4f\x83\x69\x70\xef\x4b\xaf\x74\x67\x89\x9c\xd4\xd3\xcd\x06\xfe\xbc\xeb\x01\x38\x8a\xfd\x4e\xaf\x19\x4d\x6b\xff\x71\x07\xcf\xc8\x25\xa5\x1b\xc1\x7d\x4c\x6a\x77\x5e\x51\x8e\xc1\x88\xb8\x61\x89\x86\x63\x0b\x2c\x45\xd2\xef\x44\x2a\x37\x9b\xef\x04\x34\xd2\x67\xd0\x48\xf3\xf9\xfe\x56\xc2\x63\xce\x76\x43\xed\x71\xdd\xd3\x56\x68\xcb\xcb\xb6\x95\xf7\xd5\x6a\xab\x83\x66\xa9\x34\xd5\xec\x22\x55\x38\x13\x3e\x50\x12\x18\xad\x01\x71\x5c\x56\x92\x7b\xa7\xe9\x28\xe8\xc8\x1d\xbb\xd3\xbf\xea\xca\x54\xe2\x4a\x66\x8b\xbd\xc6\xdf\x6c\xfa\x68\xbe\xd0\xde\xb3\x7a\x27\x31\x5f\x94\x65\x76\xe7\xad\xbb\xd0\x64\xb8\xe8\xba\x33\x53\x7a\x44\xf6\x99\xd4\x29\x27\x62\x6a\xce\x59\x11\xca\x8b\x6c\xe9\x9f\x85\x41\x4c\xb0\xfd\xf8\x17\xb1\xaf\x38\xa3\xb0\x38\xd8\xc7\x54\x7c\x6a\x69\x3a\x5f\xd7\x63\xc9\xbe\xae\x07\x85\xde\xbd\xf0\xe2\x45\xb6\x58\xcc\xb2\xfc\x7d\x95\xfe\x59\x8c\x25\xfb\xb3\x48\x13\xfd\xd4\x5b\xe6\x8a\xd7\x9a\x35\x55\xeb\x3a\xf9\x93\xa0\x43\x4f\xdf\x1e\x65\x8f\x4b\xdf\x96\x8d\x39\xda\xca\x92\x72\xa2\xa6\x24\x44\x51\xd9\x77\xda\xcc\xfd\xea\x8b\x80\xa6\xff\x49\xb8\x4b\xf2\x3f\x8b\x8e\x6b\x96\x87\xcd\x07\xf2\x49\x3d\xf5\xb1\xd8\xff\x26\x42\x89\x96\x1d\x55\x41\x9c\xfb\xf7\x00\x57\x5f\xd3\x90\x42\xef\x08\x5c\xb6\x09\xa2\x26\xab\x5b\x42\x81\xdd\x2e\x35\xab\x0c\x5a\x81\x60\x11\xea\x4b\x91\xd4\xc0\x3d\xe7\xaa\xe0\x4b\x80\xd9\xfd\x16\x2c\xab\x7b\x28\xc9\xca\xa7\x6e\xfb\x27\xe6\x20\x07\xc5\x95\x2f\xf2\x5a\xdc\x88\xfa\x0e\xad\xe2\x79\x87\xb2\x46\x34\x28\x0c\xf5\x8d\x4f\x3b\x1e\x0b\xa0\xa9\xc7\x3e\x75\x41\x63\x3a\xb8\x04\x31\x79\xa2\x37\x04\xd0\xa3\xf0\xd5\x94\xbf\x56\xc1\x4e\x16\x47\x25\x71\x94\xa3\x09\x58\x2a\xbb\x20\xda\x11\xd9\xa2\xae\xe4\xfe\x17\xe1\x24\x98\xc8\x96\x06\x41\x5b\x34\x86\xdc\x7f\xe6\x87\x05\x62\x24\x15\x3b\x1e\x52\xa1\xd8\x9b\xc1\x0f\x59\x55\xb1\xfb\x5a\xbd\x35\x26\x09\xda\x97\x1a\x1e\xec\x31\x84\x8d\xb6\x5b\xaa\x14\xbb\xc7\x2b\xef\x54\xaf\xc1\x99\x62\xf7\x56\x85\xef\x0f\x4b\xb5\xae\x78\xb4\xa5\x95\xe7\xd8\xd3\x64\x2c\xf2\x16\xb5\xb5\xb2\x23\x44\x14\x08\xfd\xb1\x56\xfe\xfc\x6b\x59\x0c\x22\xf7\x20\xb8\x64\x67\x94\x89\xd8\x28\xc1\x7a\xb3\xad\xa6\xdc\xa0\x52\x2f\x74\xed\x72\xb5\x96\xf5\x0b\xb5\x58\x2f\xdb\xcb\x13\x5a\x9b\x73\xab\xa2\xee\x41\xdc\x99\xf0\xac\xd4\x4c\xf5\xe4\xef\x97\xd5\xe5\x7a\x38\xcc\x86\x53\x60\xa9\xc1\xd3\xe2\xfd\x34\x93\x19\xc0\xb6\x33\x26\x36\x9b\xa1\x35\x2c\x52\x31\x8e\x12\x83\x6f\xe6\x49\x74\x59\x47\x46\xfa\xbe\x3a\x1f\x6e\x36\xd5\x45\x63\xaa\x39\xeb\x25\x75\x5f\x91\x4e\xd6\x63\x55\x5f\xd1\xac\xc7\xca\x7e\xf6\x79\x49\x15\xab\x7a\x23\x40\x4d\x60\x6f\xe0\xbe\x78\x6f\xf9\xdb\x3b\x1f\x97\xbd\x6a\x67\x2f\x09\x98\xb6\x56\x70\xa6\xc2\x03\x93\x24\x19\x53\x7d\x94\x29\x61\xac\xb1\xe2\x2e\x7a\x99\x57\x4c\xd9\x73\x9b\xcf\x8c\xd6\x7d\xb4\x71\x27\x7a\x3a\x26\x95\x4c\xf5\x46\x54\x7f\x95\x7d\xf1\x79\x49\x2e\x02\x43\xd4\x74\xae\xd8\x24\x8a\xbc\xe5\x75\xa5\xdc\x89\xd7\x5c\x39\xa5\x7f\x7e\x46\xe6\x06\x10\xea\x5a\x25\x73\x45\x7a\x70\x99\x67\x09\x9f\x9a\x70\xef\x8a\x03\x8e\xc6\x1c\x3f\x34\x69\x34\x94\xa6\x30\xb2\x97\xaa\xcd\xfb\x81\x20\x7e\xe2\xb3\x54\x37\x6a\xdf\xb5\x7d\xb0\x8b\x05\xf1\xdb\x72\xea\x19\xd6\xb6\x47\xab\x7d\xef\xa0\xf1\x6e\x27\xa1\xc9\xb4\x8d\x9c\x23\x7b\x3d\x52\x4e\xe4\x94\xa1\xf0\x2e\x95\xfb\x0c\x28\x5e\xe9\xf9\xe0\xdd\xa9\x29\x6f\xf5\x72\xc6\xe9\x66\xbf\xf1\xdc\xe2\x3f\x8e\x4b\x16\x7c\x27\x9c\xa4\xc9\x95\x37\x87\x18\xa7\x25\x5c\x64\x5f\x29\xd0\x7d\x7b\xa7\xc0\x24\x8a\x7f\xfc\xf8\x4e\xed\x8c\x24\xb8\xd1\x82\x2d\xfa\xfd\x96\x50\x4e\xba\x3b\x57\xa5\x92\x18\x55\xc5\x12\x65\x02\x77\x3c\x81\xe8\xb1\xc0\x76\xb8\xc7\xa0\x7e\xf0\x48\xf8\x27\xad\xba\xa3\x66\x1c\x3c\x78\xdd\x8a\xa7\xc4\x64\xbb\x2d\xc6\x0f\x74\xbf\x50\x12\x54\x58\xd9\x90\x7a\x4e\x2f\x65\xc1\xf8\xe0\x46\x33\xe6\x16\x45\x28\x05\xc3\xbe\x61\x22\x75\x79\xe7\x8f\xa3\x1c\x36\xdd\x9c\xdc\x6f\x8d\x7c\xcd\xad\x62\x87\x13\x4d\x2a\x8a\xf9\xe5\x7a\xf8\xf4\xf9\x89\x7e\x9e\x0e\xfb\xfa\x6f\xfe\xe4\x72\x3d\x7c\x36\x84\x8f\x67\xf3\xf9\xe5\xfa\x78\xf8\x44\x7f\x1c\x0f\x4f\xe1\x23\xc3\x0f\xf0\x79\x02\xc1\x9e\x14\xb3\xa7\x97\xeb\x27\x1c\x3e\x4e\xe7\x79\x7e\xb9\xce\x72\xf8\x28\x4e\xb2\xf9\xf4\x90\xbe\xd4\x64\x41\x54\xbf\xaa\xb2\x78\x71\xed\x9b\xc6\x72\xd3\xe2\xf0\xf2\x83\x03\xda\xdf\x6c\xf8\x45\xf4\xef\xff\x3d\x82\x3d\x7a\xad\x7e\x5e\xad\x78\xf9\x22\xab\x78\x42\x50\x96\xe7\x95\xfa\x60\x1d\x36\x9b\x5b\xe5\xf0\xf9\xbd\xe9\xf2\x46\xb5\x0e\x60\xbb\xdd\xa4\x1e\x54\x6a\x5d\xe6\x3e\xa5\xb9\xfc\x10\xe1\x29\xc3\x4b\xdd\xc7\xb0\x94\x9b\xc4\x52\x70\xf1\xee\xa9\x54\x70\x4d\xa3\x07\x1d\xc0\x06\xed\x0c\xb6\x9a\xc4\xb1\x66\x50\x1a\xf1\x6d\x27\xc3\xab\x63\xbe\x50\xf4\x0b\xd3\xf6\xc7\xd8\xc4\xc7\xcf\x74\x17\x3c\x79\x7e\xdc\x87\xbf\x53\xe8\x89\x11\xf4\xc4\xac\x80\x27\x74\x51\x3e\x82\xe7\x11\x3c\x9f\xc0\xf3\x29\x3c\x75\xd7\x3d\x1b\x61\x6f\x8d\x32\xfd\x7c\x32\x83\x8f\xa7\x5c\x3f\x4f\x86\xfa\x59\x3c\x03\xa7\x22\x87\x27\x87\x0f\x0e\xfd\xcc\x21\x3e\x7f\x0e\xcf\x0c\x3d\x74\xb6\x27\x23\x9d\xe1\xc9\x31\x24\x7c\xf2\x44\x27\x7c\x92\x41\x2a\x27\x33\x9d\xe4\x09\x87\x5c\x4e\xe6\xc7\x97\xeb\xe1\xf3\x11\xf8\x3c\x1f\x9d\xc2\x13\x7c\x9e\x1f\x81\xcf\xd1\x53\xfc\x38\x81\xe7\x29\x7e\xe8\x0c\x4e\xb1\xfa\xa7\x43\x5d\xa5\xd3\x63\x5d\xb2\xd3\x27\x50\xef\xd3\x27\xcf\xe1\x09\xa1\x9e\xa2\xd3\x53\x5d\xd9\xd3\x67\x10\xf6\x99\x4e\xf8\xf4\xb9\x2e\xdf\xe9\x0c\xe2\xcd\x74\x55\x4f\x73\x0c\x0a\xad\x73\x9a\x43\xec\x42\x67\x7b\xca\x21\x1a\xd7\xd1\xb2\xe1\x08\x9e\xda\x25\x83\x4c\xb3\x27\xe0\xf2\x04\x5c\x9e\x9c\xc0\xf3\x39\x3c\xa1\x1a\x19\x14\x23\x7b\x0a\x81\xa0\x31\xb3\x13\x7c\xd7\x25\xca\xa0\x14\xd9\x73\x88\x0c\x65\xc9\xb0\x14\x19\xf4\x4e\x06\xbd\x93\xe5\x90\x1e\x94\x28\x83\xb2\x64\x50\x96\x19\x94\x65\x06\xa5\x98\x1d\x73\x78\xea\xbe\x9e\x61\x33\xcc\x9e\x3c\x81\xa7\x8e\x36\x7b\xfa\x0c\x9e\x3a\xb9\x19\xb4\xc2\x0c\x5a\x61\x06\x39\xcf\xa0\xfe\xb3\x7c\x08\x4f\x08\x0f\x15\xcf\x8f\xa1\xa7\xf3\x27\x43\x78\x3e\xc3\x8f\xe7\xf0\xcc\xf0\x43\x07\xce\xa1\x71\x73\xc8\x22\x87\xc4\x73\x48\x3c\x87\x0a\xe5\x30\xfe\x72\x18\x79\x79\x0e\x61\x72\x70\x87\x8c\xf2\x02\xe2\x16\xe0\x0e\x75\xcb\xa1\x6e\x05\xd4\xa7\xc0\x9a\x14\x50\x93\x02\x32\x2b\xa0\x0e\x05\x64\x53\x40\x36\x45\x9e\xc1\x53\x67\x53\x14\x47\x10\xa1\x80\x08\x90\x6a\x01\x24\x8a\x1f\x8f\xe0\xf9\xa4\x0f\x7f\x3a\x06\x7f\x72\x02\x1f\x4f\x74\x4e\x7c\x06\xfe\x33\xf4\x9f\x9d\xc2\x73\x06\x4f\x5d\x58\x9e\x3f\x07\x0f\x28\xf3\x7c\xf4\x1c\x9e\x3a\xd0\xfc\xf8\x29\x3c\x4f\xe0\x09\x2e\x27\x50\xe6\xf9\x89\x4e\x76\xfe\x1c\x06\xe9\xfc\xf9\x13\x78\x3e\x83\x27\x84\x45\x62\x39\x3f\xc5\x0f\x18\xd7\x73\xc8\x6a\xae\xdb\x68\x34\x3c\x2a\xfa\xfa\xef\x78\x08\xcf\x23\xfc\x38\x81\xe7\x29\x3c\x33\x78\x16\xf0\xe4\xfa\xf9\xf4\x39\x3c\xc1\xf7\x29\x87\x08\xcf\x20\x36\x14\x68\x34\x3c\x79\xa2\x9f\xba\xc3\x47\xc3\xe7\x4f\xe1\x09\x39\x3d\x87\x34\x4e\xf5\xf3\xf8\xe9\xfc\x72\x3d\x3a\x19\x41\x76\x27\x23\x1d\xe1\x04\xf3\x3e\x39\x86\x8f\xa7\x47\xf0\x3c\xd6\xcf\x13\x78\x3f\x81\xf7\xd9\x09\x04\xd2\x04\x67\x74\x02\x15\x38\xc9\x4f\xc1\xa9\x00\xff\x42\x7b\x3c\x1f\xea\x19\x31\x7a\x3e\x84\x8f\x4c\x17\xf4\xf4\x48\x37\xc3\xe8\xf4\xe8\x08\x9e\x27\xf0\xd4\xf5\x38\x3d\x06\x97\x63\x48\xe4\xf4\x78\x76\xb9\x1e\x65\xa3\x13\x78\x6a\xef\x4c\x0f\xb6\x51\xf6\x54\xf7\xca\x28\xd3\x94\x6a\x94\x41\x65\x33\x3d\x30\x46\xd9\xb3\xa7\xe0\xf1\x2c\xd7\xcf\x93\x63\xf8\x38\xc1\x0f\x5d\xc3\x19\xd0\x8e\xd1\x6c\xa8\x0b\x37\x83\xaa\xcd\x8e\x9f\x81\x13\xb4\x2b\xcc\xa9\xd1\x4c\xcf\xe9\xd1\xec\x19\x94\x7a\x06\x15\x9d\x3d\x1f\xc2\x73\xa4\x9f\x19\xb4\xcc\x2c\x7b\x0a\xcf\xe7\xf0\xd4\x95\xca\x8f\x72\xed\x91\x1f\x1f\xc3\xf3\x19\x3c\x75\xd9\xf3\x02\xb2\xcd\x8b\x23\x78\x3e\x81\x0f\x3e\x84\xe7\x11\x7e\x3c\x87\xa7\x6e\xa0\x22\x87\xc0\x05\xd7\xf1\x8b\x39\x0c\x87\x42\x2f\x9a\x47\xc3\x61\x0e\xcf\x42\x3f\x21\xc9\xa3\xe1\x7c\x78\xb9\x3e\xca\xf9\x5c\x7f\xe4\xf3\xd1\xe5\xfa\xa8\xe0\xe0\x53\xe0\x0a\x7c\x94\xc1\xa2\x7b\x04\x1f\xa7\xa7\xf0\xcc\x2e\xd7\xd9\xb3\x67\x3a\x4a\xf6\x4c\x77\x66\xf6\x4c\x37\x51\xf6\xec\xa4\xd0\x4f\x9d\x62\xf6\x4c\x27\x95\x3d\xd7\xe4\x2e\x7b\x3e\x7c\x06\xcf\x99\x7e\x1e\x3d\x85\x27\xb8\x68\x82\x99\x3d\x87\xec\xb2\xe7\x10\xe1\xf4\x48\x37\x66\x76\xaa\x09\x75\x76\x0a\xf3\x2c\x3b\x7d\x0a\x3e\x30\x21\xb2\x53\x3d\x0c\xb3\xd3\xd9\x31\x3c\x31\xb0\x9e\x74\x19\x10\xe4\x2c\x03\x42\x9f\x65\x47\x5c\x3f\xf5\xd4\xcd\x32\x3d\x20\xb2\x4c\x4f\xb7\x2c\xd3\x6d\x9a\x65\x4f\x8e\xe1\x09\x11\xf4\x9a\x92\x65\xb3\x23\x88\x36\x7b\x02\xcf\x13\x78\x3e\x87\x27\x24\xa4\x29\x51\x96\xe9\x95\x30\x9b\xf1\xa7\xf0\x7c\x0e\xcf\xe2\x72\x5d\x18\x86\x63\xae\xdb\x6b\x3e\x1b\xf1\xcb\xf5\x1c\x19\x92\x39\x1f\x6a\x27\x7e\x84\x1f\xba\xce\xf3\xf9\x29\x87\xe7\x7c\x7a\xd8\x30\x0d\xef\x03\x36\x1d\xae\x76\xf5\x46\x12\xae\x77\x2f\xd8\xc9\xb3\xe7\x71\xfc\x85\xe3\x36\xbc\xab\x7b\xd5\xbe\x29\x7b\x00\xf8\x1c\xb1\xa6\x4a\x30\xcf\xdb\x98\x0f\x29\x41\x27\x28\x31\xe6\x9d\x06\x79\x55\xfd\xc4\x6f\x6b\x26\xc9\x2e\xe4\x51\x4d\xc4\x63\x00\xeb\xce\xba\x40\x4d\xbc\xf3\x76\x12\x9e\xe2\xd4\x81\x45\xe2\x20\xb9\x1a\x14\x95\x77\xaf\x54\x7e\x08\x79\x1f\x2b\x6d\xa3\xb3\x72\xf7\x08\xf5\xc5\xf0\xac\xdf\xaf\xdd\x01\x20\xa6\x68\x6e\xfe\xe0\x83\xec\x31\xb4\xfd\x53\xc8\xa6\x41\x46\x61\x91\xc8\xf6\x85\x6a\xb7\x27\x80\xdf\x8c\x1f\xd2\x3f\xdb\x17\xb8\x11\x41\x02\xc8\xf9\x97\xb2\x48\xe4\x66\xc3\x11\xde\xae\xe2\x35\x30\xda\x68\xe5\x5b\x6c\x1f\x80\xd5\x09\x6c\xe0\x7a\x2d\x6e\x33\xd0\x2c\xb7\x1c\xe8\xba\xff\xa4\x4c\x8f\x6b\xef\xc4\x37\x1d\xeb\x71\xe2\x6e\xcb\x69\x5f\x1a\x90\xc0\xee\x10\xac\x15\xa9\x1b\xae\x0b\x1a\xe9\x71\x98\xe5\x35\xa0\xe2\x5b\x0f\x2c\xb0\xef\x55\x13\x2a\xf1\x10\xe1\x47\x3c\x44\x90\x75\x26\x64\xd5\x3a\x93\x10\xf3\xe4\xd8\x57\xc2\x82\x33\x82\xda\x2f\xa1\x81\xd2\xd7\x71\x1b\x03\x9b\xd6\x25\xa9\x49\xa7\x50\x00\xe2\x3b\xda\x93\xcc\xb5\xaa\x6a\x42\x6b\xc6\x78\x83\x9e\x89\xb2\x54\xad\x4c\x3c\x4e\xfd\x37\x15\x68\x78\xbb\x56\xce\xf2\x5a\xdc\xd8\xa9\x73\x06\x5a\x3e\xa5\x52\xb5\xfd\x6f\xf9\x13\xce\xf6\xb9\xef\x19\x72\xaf\xfd\x49\x1e\x18\x2b\xfd\xfb\xe6\xf2\xb2\x22\x51\x8f\x1b\x4b\xa5\xfa\xeb\xf2\xb2\xfa\x43\x44\xb6\x60\x88\x63\x34\x8a\xe3\xe4\xb7\xc0\xb4\x98\xee\x73\x93\xd4\xfe\x82\xef\xf4\x77\x30\x8a\xec\x6e\xec\x95\xee\xb1\x72\x89\x36\x7f\xf6\x9d\x4d\x07\x06\x80\xd8\x6b\x95\xd4\x04\x0d\xe6\x18\x0b\xc1\x8d\x1c\x18\x9e\xe3\x4b\xa3\x2b\x2a\x7d\x7b\xae\xdc\x27\x3a\xee\x36\x5b\x3a\x9d\x51\x31\x96\x93\xd1\xb4\x27\xd2\x08\x2c\x6a\x7f\xa5\x0b\x95\x15\xc5\x27\x95\xaa\x83\x65\x02\xda\x58\x12\x3c\x93\xb4\x7e\x3d\x96\x94\x4e\xf7\xb4\xf6\xfb\xfe\xdb\x9d\xb3\x08\xee\x49\x46\xef\x03\x09\x29\x27\x72\x1a\xc7\xdd\xd7\x0a\x74\x9c\xac\x21\x59\x38\xea\xb2\x26\x64\xf7\x6f\xe2\xbf\x56\x46\x2e\x20\x9c\xc6\x57\xbc\x36\x3d\x55\x7d\x79\xf7\xc2\xd9\x26\x68\x68\xdd\xa7\x04\x4f\xbc\xf3\xc6\x88\xd0\xc7\x35\x2a\x06\x4d\xd8\x8e\x8c\x63\x9e\x48\x73\xbe\xf9\x0f\xc5\x8c\xae\xef\x37\x8a\x7e\xa9\xe8\xef\xaa\x65\x66\x1d\xad\xc1\x84\x6a\xc1\x9c\x59\x4b\xd6\xb6\xd2\x51\x51\x66\x57\x57\xd9\x6c\xc1\x23\xbd\x47\xdd\x6c\xc0\xe1\xab\x52\xad\xe0\x7b\x9b\x78\x12\xdc\x3f\xab\x40\x6e\xf4\x1b\x65\x8f\x39\x3c\x03\x3f\xff\xf1\xdf\xff\x8f\x88\x74\x80\x50\x7b\x76\x63\x6a\xfa\xd0\xda\x13\xdd\x46\x64\x4a\x08\x1d\x76\x99\x4f\xfd\x03\xa3\xd9\x71\x9c\x7c\xa3\x58\xed\x5b\xfb\x3e\x67\x23\x10\xda\xf2\x42\x5d\x1c\xc5\x71\x17\x6b\xfd\x9c\x90\x2d\x0e\x90\x6f\xd4\xb8\x5d\xb8\xd4\x73\xf8\xf7\xff\x69\x0c\xe6\x45\x46\xaf\x38\x3d\x10\x12\xc0\xd3\x67\x0b\x95\xbf\x3f\x3b\x30\xb6\xc3\x47\xab\xdb\xb3\x03\x63\x8e\xdc\xd8\xd2\xeb\x8f\x56\xb7\x91\x67\x17\xf8\x21\xdb\x49\x51\x70\x20\xf5\xab\x0a\xcc\xac\x7f\x69\xd5\xb6\x0f\xbe\x54\x46\x91\x09\x9a\xee\xc1\xd6\xfa\xe2\xff\xf9\xbf\xbf\x88\x88\x1e\x34\x2f\x14\x18\x72\x18\x11\x3d\xca\xbe\x54\x6b\x40\xcc\x78\x01\xf6\xcc\x7f\x84\x53\x1c\x34\xe7\xbc\xd9\xe8\x09\x31\xaf\x19\x2b\x07\xa5\x67\xd1\xdd\x0c\x08\x89\xe9\x8c\xe8\xd1\xc3\xe9\xb8\x12\x32\x89\x49\xf4\x4d\x52\xe7\xc7\x78\x37\xaa\xe8\x77\x7a\xf2\x37\x1a\x18\xec\xb8\xcb\xa2\x4b\x79\x29\x67\x56\x75\xe1\xf0\x52\x1e\xda\x6b\x80\xb1\x7f\x9c\x13\x4a\xb2\xc2\xd9\xa2\x3b\x57\xac\xcf\x99\x3c\x6b\x04\xff\x9a\x73\x18\xa9\xd7\x2f\x38\xf1\x15\x00\xed\x13\x9e\xf8\x2a\x27\x7c\x53\x1b\x83\x53\xdc\xca\xdd\x89\xfe\x88\x8c\x45\x7f\x94\x0a\x42\x9d\x8a\xfc\x1b\x34\x65\xa5\x13\xec\xb2\x6c\x9c\x98\x9b\x0d\xe5\x81\xc0\x12\x5a\xf7\x58\xd6\x1b\x91\xd4\xf9\xea\x85\x4b\xf4\x46\x9e\x18\xf0\x5e\xfc\x0c\x57\xff\xf2\x52\x8e\x37\xba\x15\xb6\xf4\x8f\x8a\x7d\x10\xb2\x50\x1f\x06\x3e\x20\xd2\xb8\x7d\x20\xd7\x24\x11\x1c\xf0\x75\x59\x78\xbe\xd7\x5e\x33\xba\xa3\x6d\x58\x14\x9d\x96\x93\xa0\xfd\x20\x79\x69\x6d\xae\x35\xc9\x84\xcc\x8f\x77\xfe\x67\x92\x4c\xba\x35\x48\x7d\xc1\x92\x6c\xf9\x53\xd2\x65\x9c\xc4\xf1\xb0\xcb\xea\x41\xae\x96\xda\xf3\xa5\x2c\x7e\x50\x42\xd6\x55\x12\x41\x59\x7f\x52\x2f\x65\x11\xc1\xfd\xcd\x67\x8a\x45\x4a\xe6\x6a\x75\x17\x09\x99\xfc\xa2\x1a\x4a\xa4\xe9\xff\x2f\xaa\x35\x81\x4c\x50\x1a\x61\x09\xce\x22\x42\x23\x5b\xa9\x86\xc3\xfd\x45\x0d\x30\x20\xa1\x7f\x55\x8d\x91\xf7\x3f\x2b\xfa\x17\x3d\x22\xdf\xf3\x3b\x4d\x70\x2b\x76\x7f\x9c\x46\x2f\x25\x30\x3e\xcf\xd3\xe8\xcb\x2c\x7f\x5f\xad\xb2\x9c\x47\xf4\x34\x8d\x7e\xca\x66\x11\x1d\x35\x01\x46\xcf\xd2\xe8\xed\xb5\x98\xd7\x11\x1d\x9d\xa4\xd1\x8b\xba\x5c\x44\x74\xf4\x3c\x8d\xbe\x58\x68\xa7\xd3\x34\xfa\x21\x5b\x57\x3c\xa2\x47\xc3\x34\x7a\x91\xad\xaa\x57\x2a\x7f\x1f\xd1\xa3\x93\x34\x7a\x59\xe5\x11\x3d\x3e\x4a\xa3\xb7\x98\xfa\xf1\xb1\x0e\x7c\xc5\x7f\x5e\x45\xf4\xf8\x09\xbe\x7f\xa5\x3e\xc8\x88\x1e\x3f\xd5\xf9\x15\x11\x3d\x7e\x96\x46\xdf\xa8\xa5\x0e\x7c\x92\x46\xaf\xb8\xce\xf6\xf8\x79\x1a\x41\x94\xd3\x34\xfa\x51\x4f\xb4\x88\x3e\x19\xa6\x11\xc6\x7c\xa2\xd3\x29\x85\xac\xdf\xe6\xa5\xfe\x7c\x9a\x46\xdf\x82\x1e\x51\x44\x9f\x3c\x4b\xa3\xaf\x10\xb7\x9d\x3e\x3d\x4d\xa3\xb3\x88\x3e\x1b\xa5\x11\x8b\xe8\xe9\x28\x8d\xbe\x57\x45\x44\x4f\x8f\xec\xcb\xb1\x79\x19\x0d\x9f\xa5\xd1\x1f\xf4\xff\x09\x04\x1d\x0d\x4f\xd3\xa8\x1f\xd1\xd1\x68\x98\x46\x03\xfd\x3f\x4a\xa3\xc3\x88\x8e\x74\x05\x6d\xea\xa3\x93\x63\x0c\xf4\xfc\x19\x64\x33\x7a\x6e\x22\x3f\x7f\x9e\x46\x54\xff\x9b\x44\x4e\x4d\x22\xa7\x26\x11\x9d\xff\xff\x2f\xa2\x47\xba\x19\x27\x11\x3d\xd2\x6d\x78\x79\xa9\x5f\x46\x69\x34\xd5\xff\x47\x69\xf4\x6f\x11\x7d\x76\x7c\xa4\xdb\x51\xb7\x82\x7e\x3d\xb6\xb5\xd7\x1f\x4f\x6c\x3b\xe9\x8f\xa7\xae\x89\x9e\x1d\x1f\x9d\x1c\x35\x45\xd4\x9f\xc7\xb6\x6d\xf5\x87\x6d\x71\xfd\xfe\xac\xe9\x17\xfd\x79\xe2\x77\xcd\xb3\xe3\xe3\xe1\x91\x6b\x54\x8f\xfd\xf8\x53\xb8\xdf\x5b\xf0\x1b\xbe\xf8\xfc\x68\xcc\x07\xb5\x4a\x51\x83\xd4\xbb\x63\x7e\x28\x2c\xc8\xc1\xe9\x28\xde\x9d\x6f\xe6\x5d\x18\x08\x1f\x13\x73\xfc\x27\x95\xd4\x93\xe1\x94\xa4\xde\xcd\x69\xfd\x70\xf0\xbf\xa9\x04\x44\x37\x49\x1a\xa8\x19\x7b\xb7\xae\x99\xcf\x90\xbd\x43\xf9\xa6\x1c\x36\x03\xec\x5b\xa9\xd9\x43\xd9\x05\x1c\xe1\x9a\xbd\x11\x89\x24\xd6\x60\xca\x17\xfa\x83\x2a\x26\xc6\x02\x59\x44\xac\x4e\x9d\x25\x92\xa4\x1c\x9e\x43\x5b\x8c\x95\xa6\xbb\xca\xdb\xf0\xca\x20\x53\x2c\x82\xb1\x61\x22\x9b\x32\x94\xc6\xc9\x64\x86\x90\x28\x9b\xcd\x90\xb1\x26\xcb\x10\xa7\x1e\x40\x37\xa4\xb1\x6c\x61\xae\x34\x2f\xdf\x1e\x12\x4d\xda\x31\x83\x46\xaf\xa7\x1e\xe4\xd7\xe7\x4c\xe1\x8b\x57\x52\xf4\xa7\xd9\x78\x98\x2a\x8f\x94\xbb\xb2\x8b\xac\x25\x2c\xe3\xca\xe2\x5a\x1d\xe4\xca\xcb\x2e\x93\x71\x5c\x9f\x7b\x51\x95\xa9\xf6\x9f\x55\x28\xa1\x50\x7e\xcc\xf0\x04\x00\x4c\x03\x82\x43\x1d\xc7\x80\xd7\xd0\xdc\x38\x36\x9e\x8c\xd5\x88\xe6\xc0\x58\xed\x71\x14\xa5\x0d\x0a\x25\x17\x58\x56\x0a\x12\xab\xd8\x84\x63\x13\xbf\x0b\x80\x10\x71\x9c\xfc\x59\xc1\x99\x02\x49\xf7\x78\x48\x42\x4b\xd2\x29\x99\xdc\xee\x69\x9b\x2c\x0b\x11\xab\xa5\x53\xd9\xef\x95\x7a\xdb\x07\x4a\x47\x66\x3f\x77\x31\x8c\xe3\xf7\xca\x28\x67\xd8\xd5\xb8\x26\x64\x1f\xef\x5d\x65\xed\x3d\x3a\x0e\x73\x1f\x24\xe7\x60\xdd\x04\xf2\xae\xaa\x55\x86\x20\x8d\x19\x13\x13\x35\xa5\x15\x33\x65\xcc\xdc\x90\xed\x97\xa9\x8e\x63\x8c\x4c\x55\x17\x99\xd1\x07\xaf\xce\xb3\xc6\x72\xd5\x01\x60\x29\x54\x8c\x65\x06\x51\x03\x5e\x1b\x6f\xc8\xa6\x22\x8c\xa9\x71\x95\x96\x17\x43\xc6\x12\xc8\xb1\xc7\xca\x29\x71\x59\xe9\x18\x06\x4f\x0f\xca\xee\x85\x09\x64\x8d\x2b\x06\x49\x34\x65\x84\x42\xeb\xd8\xb4\x3f\xd2\x1d\x63\xbe\x41\x76\x56\x3b\xf8\x06\xfc\x76\xda\x4a\x37\xbe\xb3\x43\x77\x26\xf6\x36\xbc\x20\xe4\x8c\x88\x9e\x43\x51\x3a\x10\xe7\xc3\xcd\x46\x5c\x04\x54\x63\x0c\x02\xc9\x62\xeb\x43\xbb\x35\x1b\xef\xe1\x19\x3f\x1f\x0d\xcf\x78\xaf\x47\xfe\xa2\x26\xbc\xf7\xe4\xf9\x94\xc1\xcb\xe9\xb3\x29\x43\x41\x8b\xc4\xc8\xea\x73\xf6\xec\xe9\x19\x3f\x67\xa7\x4d\x70\x1b\x04\xea\xf4\xc2\x1c\x9c\x35\xe1\x47\x3a\xf8\xe8\xa8\x49\x7d\x34\x1a\x99\xe4\x81\xe6\x4f\x59\xf4\x75\xd4\xe3\x5b\x92\x20\x81\x5a\x64\x6c\x07\x40\x23\x9a\xd9\x5f\x5d\xd5\x1f\xaa\x59\xf0\xab\xaa\xaa\xfe\xf0\xfa\xf5\xe7\x9f\x7f\xfe\x1a\x7e\xf4\x35\x7d\x3d\x72\x3f\x74\x7b\xfd\xea\xc1\xdf\xa7\xf8\x9b\x8c\x66\x0f\xfe\xa8\xce\x1e\xf2\xc7\xf4\x3e\xff\x7c\x34\x82\xd7\xd1\xab\xc7\x92\x7f\x24\x5b\xf4\x8f\x68\xcd\xa2\xd2\xfb\xd1\xf2\xf5\xeb\x25\xfc\xca\x7f\xe5\xb7\x0c\x7e\xc6\x51\xba\xdf\xe7\x52\xea\x40\xff\x52\xd2\xff\xb9\xa2\xc0\x0f\x6a\x16\x19\xa8\x0e\xb8\x27\x7d\xf0\x5e\x7a\x78\x82\x1f\xcf\xb3\x7c\x7a\x48\x25\x3b\x9c\xe8\x41\x30\x3d\xa4\x82\x1d\x4e\x5e\xfd\x58\x4e\x0f\xa9\xd2\x6f\xb3\x91\x9c\x1e\xd2\x8c\x1d\x4e\xf4\x4b\xb3\xfe\x57\x81\xd5\x0d\x98\xac\xd6\xa4\x11\x10\x64\x03\xf7\x50\x2b\x56\x6e\xdb\x17\xfa\x68\x5a\xb9\x5b\xe2\x09\xc4\xda\xc3\x37\x73\x66\x45\x69\xce\xd6\xd6\x86\xc7\x5c\xef\x84\x56\x6c\x78\xb6\x3a\xcf\xcf\x7a\xbd\x15\x99\xe3\xae\xe3\x8a\x25\x0b\xb6\xf6\x8f\x9a\x57\x84\x9c\xb3\xa3\x27\x27\x63\xb7\xc7\x59\x90\x74\xf4\xe4\xe8\xc9\x39\x5b\xc4\xf1\xe2\x9c\x8d\x9e\x1e\x3d\x19\x47\x3f\x46\xe9\xe8\xe9\xf1\x33\xe7\x78\x72\x72\x3c\x76\xe4\x60\xd1\xd7\x7e\x24\x1d\x9d\x9c\xb8\x68\x47\x47\x47\xc3\x71\x54\x46\xe9\xf3\xd1\xe9\x91\x75\x7c\x7e\x34\x3c\x1e\x47\x1f\xa2\xf4\xf9\xd1\xf0\x09\x63\x8b\x71\x34\x8b\xd2\xe8\x55\x44\x3a\x2b\xd6\x98\xa7\xbc\x66\xd1\xab\xc8\x95\xfc\x3e\x5a\x46\x8c\x25\x57\x6c\x3e\x59\x4d\xc9\x58\x3f\xd9\x75\x7a\xcd\xae\xb6\x7e\x9c\xa2\x15\x67\xe4\xc5\x89\xe3\x48\x6f\xe2\x0a\x8c\x1b\xc9\x28\x15\xd8\x8c\x57\x24\x8e\x93\x82\x5d\x51\xf0\xbf\x8a\xe3\x04\x43\xfc\x08\x86\xf2\x55\x99\xac\xd8\x88\x5e\xb3\xf9\x64\x38\xd5\x49\xf7\x47\x26\xf1\x5e\x98\xb8\xce\xeb\xda\xfc\xcf\x27\xab\xde\x68\x6a\x72\x1a\x45\x9a\x99\xed\xb2\xab\xcd\xe6\xba\x6b\xbc\x36\x9b\x68\x14\x75\x21\xbc\xd4\xff\x9b\x0d\x66\x7a\x4d\xa8\xae\x13\xe6\xda\xf4\x9b\xee\xf5\x88\x7a\xf9\x11\x4c\xfa\x75\xe4\x4e\xdc\xa3\xcf\x75\xe1\x1b\xda\xba\x64\xab\xde\xe8\x6c\x79\x9e\xc7\x31\x78\xcd\x27\xcb\xe9\x59\xaf\xb7\x24\x67\x36\xc4\x0d\x5b\xc5\x71\xd4\xc5\xe2\xf6\x75\x99\x30\xf4\xc8\x84\x1e\x43\xc9\x5f\x47\xf4\x8e\xad\xce\xee\xce\x97\x67\xbd\xde\x1d\x99\x4f\xee\xa6\xec\xa6\xb3\x62\xcb\xfe\x68\x6b\xcb\x49\x5b\xed\x7e\x03\x56\x88\x75\x11\x3b\xd1\xab\x08\x6c\x37\x42\xaa\x57\xa6\x45\x5e\xed\xb4\x3d\xd9\xa9\x32\xa8\xf2\x43\x18\xac\x30\x54\xcc\xab\x94\xf3\x5c\x4e\x09\xd6\xeb\x06\xcc\x10\x43\x86\xc9\x6a\x8c\x75\x82\x61\x45\xdf\x19\xd7\xe5\x79\x3e\xd6\x11\x70\xb0\x41\x3b\xb0\xd9\x66\xf3\x6e\xac\x4b\x14\xfd\xf8\x48\x4d\x75\xda\x1f\xe8\x2d\x48\x40\x7b\x05\x25\xa0\x7b\xe1\x97\xf2\x06\x8c\x4d\xae\x20\x54\xaf\xb7\xd2\xa1\xe2\xd8\x0f\x02\x95\x3b\xbb\x6d\x90\x9b\xab\x64\x48\x5f\xd2\x95\xaf\xa7\xf6\x86\xad\xe8\x5b\x76\x6b\xe1\x81\x82\xb4\xa2\x57\x11\x0c\xa2\x29\x26\xa4\xfd\xee\xd8\x9b\xb3\xbb\xf3\x15\x94\x26\xb3\x59\xdd\xe9\xd2\xbc\x39\xbf\x8b\xe3\x5b\x2b\x98\xfc\x96\x0e\x29\xe6\x38\xa2\x6f\xe8\x9d\x61\xcb\x5f\xb0\x3b\x93\xc3\x9d\x4e\x25\x8e\xfd\x24\xa0\x25\xce\xf6\xa4\x70\x44\x5f\xe8\x14\xe8\x1b\x63\xc9\xbb\xd7\xbb\xeb\xbc\xd1\xb1\x1f\xc8\x4d\xd7\xcf\x50\xb3\x11\x63\xb7\x8e\xff\x8d\xe3\xe4\x03\x5b\x3b\xfd\x9c\xcb\xaa\x87\x32\x84\x10\x02\xe8\xe1\x87\xe6\x34\x99\xde\x0e\xd6\x12\xb5\xe2\x6c\xcb\x0d\xa9\xe7\x4f\x08\xa1\x23\xb0\x50\x79\x4b\xf6\x25\x7f\x59\xf5\x50\xeb\x27\xc1\x20\xb5\xea\xb7\x92\x0f\x7a\x25\xef\xfb\x9e\xb9\x4e\xfd\x28\x2c\x7b\xbb\x3c\x23\x0a\xbe\xb5\xb2\xff\x84\xd0\x26\x7c\x37\x2c\x59\x90\x5b\x13\x8a\xe6\x3a\x2b\x7a\xbb\xdd\x36\x87\x66\x6f\x06\x37\xbc\xac\x84\x92\x2c\x7a\x3a\x18\x3d\x1d\x1c\x45\xf4\xcd\x96\x04\x2a\xb5\x91\x02\x29\x37\x0f\x5c\xfe\x76\xa5\xca\xba\x8a\xe3\x1d\x9f\xa5\x2a\xd6\x0b\x3e\xe6\x49\xc9\x7f\x5f\x8b\x92\x27\xd1\x60\x70\x38\x18\x1c\x2e\xc4\xec\xb0\x91\x29\x8e\x08\x49\xf7\x9c\x95\x14\x7c\x0e\x5b\x21\xfc\x1f\x64\xcb\x62\x8c\xaf\xc9\x64\x7f\x32\x53\xca\x49\xca\x93\xe6\x00\x9a\x6c\x03\x53\x1a\xd1\xba\xe2\x07\x55\x5d\x8a\xbc\x8e\x9a\x55\xb2\x76\x37\x47\xbb\x92\x75\x35\xd9\x45\xa0\xf8\x59\x62\x29\x8a\x03\x30\xf9\x79\x10\xf5\x6a\x84\x9d\xa8\xc4\x72\xb5\xe0\xba\xce\xdc\xd7\x54\x2c\xbd\xf4\xcd\x2a\x7a\x98\x8c\x53\x72\x68\x78\x80\xc8\x99\x04\x0f\xd0\x7d\xf0\xda\x66\x9c\xf0\x81\x00\x91\xeb\x17\x59\xc5\x01\xdc\x29\x12\x11\xa1\x9c\x71\x23\xed\x45\x52\xde\xb0\xaf\xd4\xbb\xf0\x49\x40\x24\xb0\x1e\x47\x51\x1a\xfd\x3d\x22\x70\xe9\x03\x97\x3f\x24\xa2\xa5\xbf\xdb\x4d\xb8\x66\xc6\x13\x3e\x90\xfc\x16\xb4\x58\xf4\x60\x21\x71\x5c\x03\x32\x74\xe0\x48\x0d\x16\xf8\x15\xbf\x65\x25\xa8\x48\x5c\xf1\x5b\x62\xd9\x88\xf7\x3c\x54\xf2\xd9\xd5\x52\xd4\xab\xc7\x8e\x9d\x9b\xe6\x1a\xce\x60\x2a\x26\x87\x97\x83\xc3\x2b\x1a\xa0\xc7\x18\x34\xc2\x40\x28\xb4\xec\xf5\x88\xa7\xa5\x18\xc7\xb0\x6b\xdc\x4d\xc4\xdb\xb3\x81\xc0\xdd\x7b\x2e\x4d\x99\x8b\xac\xce\x98\x77\x79\xd6\x40\x92\x70\xd6\xc8\x99\xa2\xe6\x5b\x97\x6f\x36\x76\x80\x77\x5d\xe1\x37\x9b\x6e\xbd\xc7\xbd\x75\x6a\x5d\x7a\x9c\x83\x7c\x58\xb6\x4e\x12\x6c\xb4\xbd\x42\x9c\x5d\x81\xc2\xaa\x75\x08\x37\x5b\xf6\x7a\xdb\x50\x56\x94\xec\x89\x1e\xc7\x65\xbf\x6f\x9b\x61\xc8\x7c\x70\x0d\x95\xd4\x54\x52\x45\x2d\x4a\x0d\x6a\xf9\xad\x34\x15\xa8\x6a\x1f\x1a\x63\xcd\xa4\xe7\xfc\x56\x0f\xfe\xea\x6c\x1d\xc7\xdd\xea\x6c\xcd\xd6\x30\x50\x48\xa2\x06\xd5\x8a\xe7\x63\x61\x5e\xe8\x1a\xfe\x48\xaa\x10\x10\x46\x53\x48\x55\x70\x02\x66\xb1\xd7\x66\x33\xc4\xaa\x31\xe2\xc5\x98\x50\x7a\xb8\x19\x9c\xa5\xa4\xa6\x98\x10\xa1\x39\x04\x83\x39\x97\x72\x6b\x1b\x3b\xab\x79\xb2\x20\x1d\xbf\xbc\xba\x40\x80\x52\xd6\x2e\x2b\xbb\x87\x3c\x16\x54\xa7\x97\x9a\xf2\x61\x7a\x39\xd5\xa5\x4f\x77\xe3\x20\x20\x99\xca\xc1\xdc\x4a\xcd\x59\x6e\x3f\x5d\x62\x5c\x16\xa9\x1a\x70\x59\xc4\x71\x99\xc0\x0b\xd1\x6e\x6f\xf3\x4c\x5a\x77\xc0\xf4\x57\x08\x7d\xfa\xd2\x0b\x08\xba\x3e\x5c\xa2\x41\xe5\x34\xd3\xeb\xe1\x6f\x4a\xc8\x71\x36\xc9\x1a\x09\xea\x34\xdb\x6e\x41\x8b\x4d\x48\xfe\x16\x28\x8c\x6e\x97\x66\x9e\x21\xa2\xa5\x09\x60\x9a\xac\xf1\xf4\xcf\xf5\x5d\xe4\x04\x01\x56\xb7\xd4\x77\x6c\x52\x04\xdb\xc7\x75\x22\x68\x04\x8d\x1c\x59\xb1\xf4\xfb\x2d\xad\x98\x18\x2c\x79\x9d\x6d\x36\xf7\x5b\xba\x66\xfe\x6e\x40\x0f\x3d\x50\x53\x5a\x74\x19\x18\xd3\x6b\x8d\xc1\x05\x71\x03\x29\x67\xd9\x64\x31\xd5\x13\x7a\xce\xc4\x64\x61\x37\x0e\x73\x3b\xaf\x57\xf6\x46\xf1\x1a\x39\xbb\xbc\x59\xbe\x64\x72\x4d\x05\x21\x34\xb9\x86\xab\x10\x59\x6f\x36\xd7\x83\x82\xeb\x37\x3d\xa6\xd6\xac\x3b\xc4\x9b\xb4\x82\xdd\x37\x43\x64\x0f\xaa\x36\xf6\xbb\xa9\x21\x5d\x19\xfc\x76\xb8\x5a\x83\xfe\xf5\x5e\x31\x09\x54\xec\x81\x3c\xd3\xf5\x78\x62\x8c\x46\x23\x14\x62\x2b\x93\x06\xe6\x02\x73\xa9\x71\xd4\xba\x5c\xea\x81\x79\x33\x59\xd5\x38\xa4\x1e\xca\xad\x36\x55\x45\xdc\xd8\x02\xee\x41\x0c\xa4\xf6\xb6\x53\x7b\xa3\x53\x2f\x0f\xfe\x60\xe5\x03\x57\xb8\xc4\x84\x83\xf9\x45\xfd\x48\x84\x50\x28\x5f\xfe\x1e\xa2\xc3\x1b\x33\x2e\x2e\x1f\xdf\x34\x69\xbd\x4b\x04\x10\xc1\x07\x08\x40\xf9\xd0\xb4\x93\x98\x35\xcc\x3d\xe9\xcf\x3d\x89\xad\x03\x98\x45\xae\x54\x63\xbf\x22\xa9\x5f\x11\x93\x8e\x89\x45\x70\xe2\xee\xe6\xba\x6d\x24\xfa\x29\x50\xfc\x74\x2f\x72\x85\x37\xe8\xa5\x01\xf5\x32\x7d\xe3\xe0\x9e\xad\x83\x05\x49\xf0\xa8\x68\xe3\x67\x01\x2e\x9a\xf8\x06\x42\xbe\x1c\xac\x54\xd5\x0b\x21\x43\xa9\xc0\x45\x68\x8b\x20\x62\xba\x9e\x16\x50\x0c\xfa\x08\x89\x89\x61\x25\x3d\x47\x62\xe1\x69\x3c\x37\xa0\x1d\x88\xfe\xea\xb4\x4a\x0d\x85\x0a\x08\x17\x0c\xa8\x0c\xad\x5e\xd0\x26\x05\xdd\x96\x58\x18\xdd\x02\xfe\xb0\x68\xa5\x36\x30\x34\x0d\x08\x77\xcb\xcd\x88\x6a\x0c\xf2\x75\x59\xc2\x3d\x1b\x30\xbe\x50\x73\x56\x22\xa5\xee\x55\x46\x0c\x83\x66\xdb\x66\x3d\xe1\x13\xd3\x8d\x53\xba\x60\xc3\xb3\xc5\xb9\x3d\x4f\x38\x5b\x58\x12\x90\xb3\xb5\xa6\x10\x73\x96\x74\x73\x58\xae\x07\x95\x5a\x6c\x36\xa5\xfe\x4b\x08\x69\xda\x29\x37\xcc\x88\x5e\xbe\xd0\x0e\xb7\x09\xaf\x07\xc8\xd8\x0e\x32\xcf\x2d\x35\xef\x9a\xb6\x8c\x93\x44\xe2\x90\xdf\x6c\xec\x9b\xa7\x95\xda\x0c\xb6\x30\x19\xe0\x89\x5c\x3a\x6a\xa5\xf7\x8a\x66\x2a\x99\x17\x7f\x60\x60\x54\xeb\x01\x98\x25\x84\x9a\xc8\xba\x1f\xe2\x18\x97\x62\xcf\x89\xe6\x96\x5d\x31\x8e\x96\x12\x48\x4b\x09\x50\x6b\xd6\x7c\x19\xbd\xe9\x9e\xa5\x13\x3f\x4b\x51\xbb\xa8\x48\x25\xfd\xa8\x80\x9a\x62\xa9\xee\xc5\x11\xe0\x79\x99\xc1\x6b\x76\x9f\xba\x07\x56\xec\xa8\x4d\x9c\x35\x55\xd6\x09\xd9\xd1\x8f\x88\x09\x80\x8e\xa0\xbd\xcc\x84\x33\x65\x87\xdd\xf1\xd6\x13\x3c\x98\x65\xf9\xfb\x9f\x57\xc9\xbc\xd9\xf1\xf4\x93\xf9\x04\x0e\x31\x46\xd6\x25\x1d\x42\xdb\x60\x02\xc3\xa9\xdd\xd0\x19\x97\x38\x36\x2f\xb8\x5e\x36\xe1\x6c\x9e\xcd\xe9\x3f\x74\x75\x82\x48\xa9\xdb\x6d\x92\x81\x48\x9c\x94\xbc\x0c\x51\x1c\x83\xbb\x2f\x3d\xb6\xe3\x18\xc9\x16\xf7\xe9\xa6\x65\x3e\x9a\x69\xb2\xdd\x5a\x2a\x1d\x2e\xc8\x6d\xf2\x12\xa0\x06\x62\xfa\xc1\x14\xc4\x44\x48\x6b\xce\x79\x5e\x89\x3f\x39\x9d\xf5\x18\x94\x6b\x91\x6e\x2d\x34\x81\xf4\xfc\x28\x94\xac\xbf\x05\x67\x24\x88\xa1\x79\x9b\x47\xf1\x51\xc5\x3c\xa9\x41\xd1\xca\x97\x73\xb3\x03\x98\xee\x26\x4d\x2e\xfa\xa3\x86\x89\xff\x21\xab\xaa\x8e\xa5\x53\x66\xa8\x39\xf4\xf9\x8a\xd5\x6e\xce\x77\x78\x0a\x47\xfe\x67\x4d\x61\x10\xa0\xc3\x09\x5d\xae\x2d\x15\x58\xb0\xca\xc0\x73\x2c\xc2\xc1\x0c\xac\x55\xe0\xf6\xed\xfc\x95\xe6\x94\x34\xd1\xb1\x14\x64\x81\xa4\x01\xc9\x14\xea\xca\xe5\x71\x9c\x4f\x86\x53\x72\x9f\xf5\xfb\x34\x59\x98\x5d\xce\xc2\x6e\x7d\x12\x5d\xce\xd0\x75\x4a\xa8\x70\xa6\x08\x72\x5f\xee\xcc\xc3\x5d\xdb\x1a\x53\xbb\x56\x9b\xf0\x7c\x38\x1e\xa6\xb6\x15\x26\xd9\x14\x46\x60\x45\xb6\x70\x5b\xe3\xf8\xa1\x25\xec\x1e\x49\xd5\x66\x99\x96\x70\x64\x35\x59\x4e\x59\x35\x59\x36\x52\x5f\xc5\xf6\x7f\xcb\x0d\x39\x1f\x2c\xd7\x8b\x5a\xac\x16\xfc\x56\xc8\xab\x16\x93\x6b\x39\xaa\x4f\xd5\x4f\x0b\x76\xb7\xcd\x95\xdf\x1e\x89\xe3\x1d\x69\x1d\xd0\xcd\xb7\x13\x31\x8e\xc5\x45\x7f\x34\x16\x3d\x3b\x86\x53\x44\x0e\x50\xac\x36\xab\xde\xd8\xca\xee\x94\x24\x6d\x56\x4d\x35\xb6\xe6\x2c\xca\x5e\x22\xc7\x9e\x4d\x8b\x74\x48\xd2\xfe\x68\xdb\xb0\xa1\x0f\xf3\xa8\x6a\x5d\xf3\x32\xdc\xeb\xd4\x86\x7a\x81\x12\xb4\x63\x13\x25\x2f\x1f\x61\x47\xcb\x9d\x04\x3d\xb6\x90\x96\x03\x70\x0d\xd3\xd5\x0b\x8a\xfb\x32\x19\x04\x6e\x80\x3e\xe1\x52\x09\xbc\x90\x54\x1a\x27\xb2\xdd\x61\xbf\x2c\x21\x54\x7e\xa4\x06\x78\xcf\x73\xec\x2c\xf4\x84\x83\x1e\x83\x0d\x78\x36\xc8\x17\xaa\xe2\x7a\x73\x81\xab\xbf\x6d\x6c\x3f\x92\x4d\xc2\xc3\xa9\x43\xfe\xc6\xd2\xcc\x64\xce\x4c\x42\x63\x99\x2c\xa8\x79\xa7\x42\xb3\x2b\x34\x1b\xac\xb2\xb2\xe2\x5f\xf1\x85\x58\x8a\x9a\x97\x95\xee\x2c\xc2\x18\xf8\xc6\x71\x77\xd7\xdf\xc9\x5d\x23\x1b\x62\x92\x23\xf4\x91\x42\x69\x52\xb5\x10\xcb\xb7\xf5\xdd\x82\xeb\x4d\x5f\xf3\xd5\x8b\x0e\xa2\x5e\xe8\xd0\x87\xf4\xa2\xce\x1c\xd1\x82\x6c\x83\xb0\x85\x93\xf6\x9a\x9b\xe3\xd5\x8a\x65\x3e\x3f\x27\x6c\x11\x1a\x6d\xcd\x76\x12\x84\xce\x5d\xd5\x76\x6a\x06\xd6\x4b\x1e\xaa\x03\xa1\x19\x7e\x99\x4a\x24\x95\xde\x9d\x9b\xe2\x37\x1e\xa9\xff\x41\x68\xe5\xf1\x7e\xa3\xc3\x21\x6d\xfa\x97\xe6\x6c\x78\x96\xfb\x10\x0c\x39\x0e\x89\x39\x5d\xb1\x72\x92\x4f\x4d\xcf\xe9\x1e\x5b\x0d\xd4\x8a\x4b\xec\x30\x62\xfb\xc6\xf6\xc3\xaa\x5d\x0d\x34\x0e\xa1\xbb\x06\xe3\xb5\x7b\x66\x65\xbf\x59\x30\xd1\x56\x76\xa7\x84\xb4\x7b\x6c\x5f\x12\x85\xf3\x85\x46\x11\x49\x87\x84\xae\x82\xbe\x5c\xb5\xfb\x32\x74\xe8\xeb\x02\x44\x20\xb6\x37\x8f\xe3\xf9\xf9\x1a\xb6\xac\x73\xb2\x5d\x77\x75\x7b\xec\xef\xde\xb5\xe9\xde\x6b\x00\x00\xb2\x3d\x8b\x93\xd6\xf6\xec\x9e\xf8\x84\x5e\xef\xf2\x26\xde\xb5\x7b\x30\x67\xc7\xbb\x33\x38\xad\x1b\x95\x02\xd3\x06\xf6\x25\xd9\x1b\x37\x35\x94\x84\x4a\x92\x22\x17\xb0\xa5\xb3\x45\x26\xdf\x87\x36\x61\x1b\x3b\x3a\x41\x22\x72\x5f\x01\x40\x76\xc4\xa5\xa1\xe7\xbd\xfb\x48\xf6\x46\x4f\xa5\xa5\x66\x81\x37\x89\x2e\xf5\x32\x16\x66\x69\x89\x49\x98\x92\x0d\x83\xa3\x3c\xc4\x68\xd9\x03\x13\x62\xc8\x56\x39\x51\xd3\x8e\xc9\x24\x83\x61\xb6\x93\x6e\x66\x8b\x14\x8e\x33\xc3\xe7\xef\xb6\xb1\x0c\xc6\x99\xa6\xa3\x20\xfb\x58\x8a\xfc\xc5\x75\x56\x56\x69\x3d\x08\xbe\x3f\xc6\xd4\x82\xf7\xf8\xde\x72\xb0\xf0\x49\x0d\x87\xdb\x6e\xf9\x6d\xea\xc2\x61\x19\xb0\x3b\xb6\xfa\xf7\x5f\xc8\x79\xcc\xd4\x07\x5e\xbe\xcb\xd5\x72\xa5\xa4\x5e\xb7\x3d\xce\x61\x87\x1f\xa1\x9f\x14\x2b\x2b\x0a\x25\x0f\x75\x69\x0f\xf1\x60\xeb\x5f\x60\x64\xfe\x89\x52\xd1\x7f\xb2\x30\xff\x24\x3b\xe4\x1d\xe9\x45\xd7\xf5\x72\x81\x70\x2a\xb3\xac\xac\xa2\xfd\x27\x7c\x6d\xfe\x29\xf1\x8f\x51\xc1\x08\xd8\xa1\x4e\x27\x22\xf4\x5e\x0f\xd1\x34\xba\xbf\x8f\x28\xcc\x82\x34\xda\x6e\x23\x3b\x1c\xbc\x38\x5e\x96\x84\xb6\x08\x6b\x6a\xec\x69\xb9\x82\x7e\xfb\xfd\xcb\x04\x73\xb9\xed\x37\x11\xfb\x35\x5f\xae\x16\x59\xcd\x23\xda\xae\x05\xf9\xdf\x92\x8f\x0d\x2f\x96\x9a\xcd\xe0\xe1\xdf\x93\x71\xaa\x39\xfb\xac\x56\xe5\xa6\x52\xf3\xcd\x7b\x7e\xf7\x41\x95\xc5\x41\xbe\xc9\xb3\x8a\x6f\x24\xff\xb0\x99\x5c\x4e\xee\xb7\x97\x09\x3d\x4b\xa7\x1b\x76\x41\x3e\x33\x98\x01\x35\xe0\x64\xfe\x74\xb7\xe2\x64\xb3\x89\x7e\x5f\x67\x95\x00\x90\x56\xeb\x1a\xc7\x87\x97\xf7\x97\xd5\x1f\x6c\x78\x6e\x96\x01\xb7\x88\x70\xbd\x46\xf6\x93\x72\xb3\x19\x12\x42\xb6\xe1\xe0\xfa\x2d\xbb\xc9\xaa\xbc\x14\x2b\xdf\x0a\x59\xb3\x54\x50\x45\x33\x56\x7a\x47\x0a\xb4\x62\x66\x0f\xa7\xf9\x6d\xdc\x09\xd2\x35\x93\x83\xdf\x2a\x25\x17\x05\x5d\x98\xd7\xcd\x66\x4d\x73\x26\x01\x50\x08\xd3\xa7\x73\x26\x07\x1f\x0c\x4a\x02\x28\x76\x55\x9b\xcd\xe1\xe4\xf2\xc3\x67\x97\xb7\xd9\xa8\x7f\xb9\x9e\xcf\xe7\xf3\xe9\x21\x5d\xf9\xe2\x51\x8d\xdc\x69\x43\xd1\x10\xeb\x48\xef\xc8\x35\x97\x11\x99\x96\x8c\x50\xd3\xa4\x66\x3c\xb1\x4e\x07\x19\x68\xac\x78\x0e\x33\xd0\xbc\xf1\x1c\xf2\x48\x6f\xed\x78\x12\xd9\xce\x89\x00\x90\x15\x72\x88\xb2\x5a\x2d\x23\x9b\x0d\x7c\x6c\x69\xc6\xee\xc5\x3c\xe5\x49\x24\xe6\x11\xa1\x20\x30\x98\xd6\xf4\x03\x18\x02\xa3\x7a\xc5\x48\x4b\x5a\xa8\xb4\xa4\x75\x79\x97\x96\x74\x2e\x64\xb6\x58\xe8\x37\x2c\x7b\x2a\x29\xec\x12\x53\x49\xed\xd6\x31\x95\x54\xf2\x0f\x3a\x49\xc9\x3f\x44\xc4\xa0\x40\xa6\x92\xc2\xed\x63\x2a\x69\xc1\x67\xeb\xab\x2b\xbd\xc0\xd1\x9b\xac\xd4\x01\x6f\x32\x5d\x4e\x30\xba\xd0\x7c\x2e\xb8\xf7\x61\xdb\x4d\xbb\xb8\x49\x40\x28\xc8\xca\x6b\x37\x78\xd1\xe1\x14\x24\x38\x87\x8a\x57\x1f\x84\xf1\xc6\x37\x88\x50\x71\x0c\x5f\x71\x28\x1b\xe2\x4a\xf1\x24\x32\xaf\xba\xfd\x64\x2a\x28\x4e\xaf\x54\xd0\xe6\x1a\x53\xbb\x96\x6b\x9e\x2a\x3a\xcf\x74\xc3\xa0\x5d\xb8\x54\xd1\xb5\xbd\x45\x4d\x15\x7d\x9d\xbd\x4e\x15\xfd\x56\xce\x85\x14\xf5\x5d\xaa\x80\x6b\xd7\xe9\xeb\x7f\x5d\x00\x30\x91\xa8\x4b\x00\x36\x08\x09\xad\xd6\x2b\x0e\x65\x86\x0e\x21\xf4\x4e\xf0\x45\x91\x4a\x8a\xf4\x42\x7b\xe0\x9b\x2e\xd8\xd2\x3a\xe1\x5b\x64\x0d\x85\x57\xa9\xa4\xd9\x87\x4c\xd4\xfa\xbf\xba\x93\x39\xa4\xa7\x5f\x22\xdc\x9f\xe7\x16\x39\xc8\x8c\x84\x9b\xac\x14\xa0\x76\x64\x47\x83\x75\xe8\x1f\x47\x5b\xba\x66\xf7\x42\xd6\xbc\x9c\x67\x39\xf7\x8b\x0a\x94\x1f\xb6\xa5\xba\x8f\xb3\x25\x07\x39\xfe\x54\x52\xa4\x60\x3a\x28\xbe\xe9\x82\xc9\xf5\x32\x70\x58\xad\x67\x0b\x91\x1b\x27\x31\x17\x5c\xf7\xd0\xaa\x14\x37\xb0\x38\xb7\x5c\x55\x8d\x86\xe5\x43\xf7\x6c\x56\xd5\x7a\xa6\xb5\x9d\xab\x54\x50\xa4\x11\x69\x45\xd1\x5a\x7c\x5a\xd1\x99\x52\x60\xd7\xb4\xa2\x99\xbc\x4b\xab\x6d\x78\xbd\xb3\x26\x70\x6f\xb3\x9e\x2c\xdc\x81\x5c\xb6\x4d\x08\xbd\x66\x87\x93\xde\x65\xff\x0f\xf1\xe7\xec\xfc\xa2\x3b\xde\xfc\xff\xff\x3e\x3d\xa4\x05\x3b\xfc\xfb\x7f\x4b\xf4\x00\xe7\xb7\xf5\x46\x14\x1b\xc0\x74\xd9\x2c\x32\x79\xb5\xce\xae\xf8\x06\x0c\xee\x19\xbd\x4b\x5e\x6e\x16\xa2\xaa\x37\x15\xaf\x37\x25\xbf\xe1\x65\xc5\x37\xb0\x7b\xde\xcc\x34\x61\xbc\x51\x79\x36\xdb\x5c\x95\xd9\xea\x9a\x44\x9e\x7c\xdb\xb2\x65\xe8\x4f\x30\x4e\x15\x2b\x7d\x20\xf5\x9b\x84\x3b\x59\x68\x30\xea\x86\xc7\x81\xba\x7f\xff\x2d\xfa\x37\xc6\xc4\x66\x13\xfd\x5b\xc4\x98\x13\xd3\x2d\x91\xc7\x16\xff\xe0\x2c\x91\x4c\xd0\x3d\x7a\x81\x54\x30\x34\x79\xb9\x8e\xe3\xe8\xbf\x81\xb6\xce\x8a\xf3\xf7\x09\x20\x6e\xe3\x56\xa3\x70\x7b\xd3\xba\x49\xef\x86\x2e\x93\x08\x49\x64\xdf\x12\x2c\x1a\x2d\x79\x9d\x99\x7b\xee\x33\x94\x88\x06\x03\x4e\x58\x4e\x38\x47\xef\x02\x0e\x38\x39\x23\x82\x75\x45\x1c\x47\x97\x97\x11\xf3\x24\x61\xc1\x38\x64\x93\x09\xd1\xb9\x98\x63\x0e\xa7\x61\x0d\xe6\x14\x5d\x20\x68\x13\xb8\x8b\x1f\x44\xa0\x91\xc4\x1b\xa9\x98\xa2\x97\x8c\xd3\x09\x7f\x39\xd5\x3d\x3a\x1d\x5f\x16\x3d\x32\x3e\x74\xb5\x59\x26\x11\x8e\x95\x88\xda\x97\xbd\x09\x45\x83\x41\xe4\x47\xaa\x56\x25\xcf\xbc\xda\x8a\x79\x72\x38\xb9\x9c\x5c\x4e\xf5\x62\x77\x49\xe8\xd9\x65\x7a\x39\x98\x9a\xc5\x4b\x78\x31\xf1\xb4\x2e\x62\x36\x79\x9e\xd5\x49\x74\x11\xa4\xcd\x2e\x22\xea\x91\x6e\x08\x3f\xf4\xc3\x1f\xde\x1e\x36\x49\x82\xd3\xaf\x20\xe3\x7d\x38\xb9\x2c\xb2\xfe\x7c\x7a\x28\xa0\xcd\xf6\x57\x2c\x4c\x49\x3d\x94\xd2\xb0\x7f\xf2\xcf\xa4\x33\x7b\x30\x9d\xd1\xa3\xc9\x1c\x5e\x16\x3b\x8d\xe4\x77\xde\x1f\x92\x71\x7a\x39\xb8\x2c\xfe\x40\xc6\xfb\xba\xf1\xe1\xe2\x1d\xfa\x73\xc0\x34\xf3\x1f\x22\x32\x4e\xbc\xf9\x70\x47\xef\x60\xe4\xe8\xed\x1d\x04\x38\xd4\x01\xf8\xa0\x7a\x2f\x56\xa0\x37\x95\x40\x06\xb9\x5a\x6a\x7a\xf7\xff\xb2\xf7\xa6\xfd\x6d\xe3\xd6\xe2\xf0\x7b\x7f\x0a\x89\xb7\x8f\x86\xa8\x20\x59\xca\x4c\x7b\x3b\x74\x10\xd5\x71\x92\x4e\xda\x6c\x8d\x33\x9d\xb6\xb2\xea\xd2\x12\x64\x61\x42\x93\x1a\x10\xb4\xe3\x5a\x7c\x3e\xfb\xff\x87\x83\x95\x8b\x6c\x39\xdb\xed\x5d\xde\xd8\x14\x89\x1d\x07\x07\x67\x3f\x01\xb6\x4f\x08\x45\x02\xa2\xf0\x8f\xd1\x24\x6c\xf5\xa5\xc3\x9c\x74\xc7\x38\x25\xdd\xb1\x39\x03\xc2\x9d\x01\x1d\x7f\x5f\x85\xe5\x84\x91\x8a\x5e\xcf\x1a\xef\xef\x05\x53\x48\x59\x9b\x92\xee\x28\x4a\x7b\xbd\x60\xa6\x0a\x84\xb2\x35\x54\x72\xd2\xe5\xe6\xcc\x88\xb2\x54\x39\x6a\xec\x82\x9d\x85\xe1\xf4\x9c\x5d\x5c\x17\x33\x14\x4e\xba\xfa\xf1\xd7\x27\x0f\x10\xea\x9f\x9c\xa9\xf5\x02\xd1\xf1\xda\x1e\xa5\xc1\x03\x39\x9d\xd0\xdb\xb4\x15\x14\xb3\x00\xe8\xc1\x22\xa6\xbe\x4a\x0c\xd6\xf9\x9f\x5b\x70\xcd\x39\x3e\x77\xa7\xf2\x3f\xaa\x9b\x51\x5b\x5f\xaa\x79\x0f\xf5\x5f\x25\x24\x6b\xc2\xc4\x7d\x87\x07\x6a\x33\xdb\xcc\x8d\xd7\xc0\xd2\x39\x29\xda\xe2\x38\x26\xeb\xe1\x5a\xcb\xa9\x9f\xe7\x4f\xd3\xe2\x82\x72\x79\x17\x86\x19\xea\xf5\xd6\x92\x1b\x36\x17\x44\xaf\x17\x0c\x83\x2e\xe1\x96\x56\x9d\x5c\x84\xb1\x8a\x31\x19\xab\x90\x10\x38\x43\xd1\x45\xe8\xdd\xaf\xde\x63\xe6\xfb\x0e\x5c\xd7\x34\x17\x0a\x60\x1c\xb6\x3c\x70\x10\xc2\x7b\xbd\x14\xdd\xf8\x78\x51\xc7\x49\x4d\x09\xe4\x37\xb0\x06\xcf\xed\x00\xeb\x45\x81\x6b\xed\xb3\x89\xa8\x35\x90\x42\x3e\x06\xb9\xc9\x7c\xb3\x09\x7e\xa5\x06\xa2\x4f\xcb\x4d\x80\xd0\x96\x21\xc9\x6a\x1a\xad\x7b\xe3\x52\x64\xbe\x07\x78\x95\x0d\x2b\xb5\x11\x6a\x38\xbd\x29\x67\xc8\x63\x3b\x4e\xd5\x88\xc5\x70\x19\x8b\x43\xce\xb3\xab\x43\x08\x0f\xea\xfd\xd4\xb2\x0d\xeb\x91\xae\x58\x05\xeb\x5a\x2a\x11\xaa\x96\x51\x28\x1f\x96\x90\x3f\x1c\xa1\x7a\x6c\xc3\xee\x58\xde\xb5\x83\xf1\x41\xf6\x88\x8c\x0e\x06\x83\xcc\x25\x8a\xd1\x0d\x6a\x63\xed\x0c\xe1\x9c\x9c\xd9\xe6\x63\x15\x78\xf1\x11\x19\xf5\x7a\xf9\xc3\x6f\x8d\x27\xce\x4d\xbf\x9f\xe9\xf5\x60\xcb\x70\x44\xc8\x60\x90\xaa\x2c\x1b\xa5\xb1\x3b\xce\x1f\x91\x6f\x65\x9d\xdf\xa2\x7e\x3f\xb5\xd6\xc8\x1a\x68\x63\x24\xaf\xc7\x91\x0a\x40\x0c\xd7\x4b\xf0\xcd\xc9\xbe\xb9\x52\x62\x73\x32\x40\xa4\x04\xd8\xc3\xeb\xb0\x2c\xe1\x55\x7d\x95\x32\xed\xb8\x7e\x45\x6e\x24\x9d\x19\x75\x47\x86\x50\xea\x8e\xb0\x01\x51\x48\x49\xa8\xe8\xa8\xee\x08\x2b\x64\x21\x9f\x80\x84\xed\x8e\x70\xfd\xc2\x8f\x2a\x41\xac\x3f\xb8\xb8\x97\x38\x33\xd1\x37\x81\x9f\xa2\x0b\x63\xaa\x3f\x57\x91\x26\x8d\xb1\xfe\xf5\x9a\x4a\x12\x47\x3e\xaf\x39\xbd\x24\x4c\x47\xdc\x4c\x97\x19\xc9\x74\x42\xc8\xd4\x24\xc1\x87\xa4\xd3\x24\xf5\xe0\xf9\x69\x33\x22\x01\xa8\x0c\xff\x12\xf3\xfc\x80\x1f\x70\xa2\x34\xa6\x08\x62\xf2\x4a\x7a\xb5\x62\x06\xe7\xa5\x6d\x1a\x6a\xd2\xce\xa4\x6f\xe2\xf4\x12\x14\x5a\x9c\xa4\xc3\xcb\x5d\x1a\x2b\x95\xfd\xb1\x16\x35\x81\x60\x5c\x4d\x55\x3d\xab\x24\x08\xfa\xfd\x5c\xa9\x37\xdc\xc2\x1d\x57\x7c\x7b\xac\xea\xc7\x2a\x1a\x0f\xa8\x84\x4a\x3a\x18\xa0\xd7\xc3\xb9\xb6\x1f\xb2\xa5\xa6\xd4\x8f\x00\x7b\xe4\x82\x17\x1e\xfb\xc1\x0b\x5d\x9e\x38\xdc\xf5\xbc\x19\x0f\xe1\xe2\x72\x3c\x7e\x65\x31\xc5\x96\x59\x3b\x3d\xea\x9e\xf5\x79\x56\x35\x5e\x2b\x46\x5a\xc2\xe5\x6b\x9d\xf8\x81\x48\xbe\x2a\xc0\xdc\xac\xb0\xca\xe3\x66\x4c\x7b\xe4\x46\x59\x68\xf6\xde\x91\x1b\xd9\x55\x44\x8d\x41\x8c\xfd\x50\x96\xe6\x4c\xc8\x36\xce\x93\xec\xac\xd6\x48\xea\xbd\x04\xbb\x0d\xf7\xb3\xde\xa8\xfb\x52\xea\xc3\xf1\x5e\x17\x51\xbc\x9a\x2a\xa7\xdf\xd8\x05\x0c\x4a\x6f\xe7\x5e\x86\xe8\x46\x4f\xda\x4c\x90\xdc\x48\xe8\x89\x6a\x6f\xe5\x11\xcb\xed\x4b\x37\x1d\xdc\x78\x45\xde\x7b\xb1\x7c\xbc\xe6\x5d\x81\x5a\xd3\x00\xa0\xb8\x3e\x8a\x7a\x21\x39\x28\x2f\x94\x8f\xef\x13\x5a\x73\xde\xb2\xdb\x88\x53\x2b\x28\xa1\x0b\x6d\xed\x1a\x8b\x00\xdc\x3a\xe9\x07\x36\x8f\x13\x95\x10\x34\xf5\x5e\xd8\xe2\x15\x59\x33\x73\x25\x0e\x24\xd1\x8f\x02\x48\x88\x0d\xb2\x1e\xa6\xce\xf5\x01\x23\x4c\x9d\xbb\x94\x30\xd7\x8c\xad\x07\xa1\x46\x3f\x84\x29\x4c\x94\xd3\xf8\x42\xa3\x92\x10\x61\x9d\x34\xd0\x16\xc5\xc2\xa5\x58\x82\x97\x44\x22\x33\x2f\xdb\x8a\xf5\x52\x33\xf0\x4a\xed\xf8\xe5\x08\xe4\xad\x87\x02\x15\xaf\xd6\x4d\x13\xe2\x5b\x3a\x74\xd6\x98\xb1\x24\xc5\xcc\x58\xab\xed\xf9\x79\x5a\x5a\xe2\x6d\x77\x84\x53\x6a\x76\x38\x21\x74\x72\x14\xa2\x28\x38\x90\x23\x98\x1c\x87\x28\x3a\x0a\x85\x4f\x38\xbc\xf2\x6d\xbe\x40\x3a\xa2\xea\xbc\x03\xaa\x03\x4e\x9b\xd1\xef\x22\x1c\x53\xfc\x73\x18\x1c\x04\x08\xbf\x45\x91\x27\x46\xb2\x55\x96\x19\xbf\x08\x10\x7e\x81\x5f\x55\x4a\x9c\x35\x4a\xa8\xef\x37\xee\x7d\x19\x20\x2c\x28\xbc\x3d\x08\xec\xb0\xd9\x12\x9e\xc3\x40\x02\x40\x40\x2c\x1c\xba\xe5\x5a\x66\xbd\x9e\x85\xce\xf9\xd4\x3d\x3a\x33\x51\x42\xde\xfa\x65\x94\x71\x4f\x88\x70\x63\xc4\x78\x49\x6b\x52\x51\x39\x8c\x6b\x2a\xdf\x65\xbc\x31\x87\x35\xd5\xd3\xb0\x34\x99\x2d\x01\xa0\x8d\xf0\xaf\x50\x64\x64\x45\xcd\x25\x82\x49\x63\x27\x4b\xfa\x19\xe8\x20\x58\x04\x68\x15\x64\x4a\xaa\xda\x0b\xf9\x31\x02\x91\xad\x91\x2b\xa9\x0f\xf6\xb5\x12\x58\xd5\x3b\x79\x29\xeb\x85\x01\xc2\xe7\xb0\x71\x48\x2d\x3c\x7e\x23\x2b\x80\x10\xa6\x5e\xe1\x4c\xed\x80\x16\x11\xd5\xa7\xf3\x54\x7d\xd5\xd2\xa2\xfa\xd7\xd7\xea\xab\x96\xd0\xd4\x5b\xce\x29\xd6\xbb\x5c\x9f\xa7\x12\x2c\xa9\xf2\xaf\x50\x74\xec\x35\xf9\xc2\x81\x9b\x97\x4b\xc7\x83\xfa\xe7\x21\xc5\x92\x95\xb1\x1f\x9f\xd4\x3f\x56\x72\xbb\x58\x13\x76\x03\x0d\x1e\x49\x43\x2c\x2a\xc8\x9d\x81\x0c\x27\x62\xf2\x97\xe8\x27\x40\x57\x61\xe0\x2e\xab\xce\x51\xf8\x52\xce\x47\xae\xe8\xdf\xc3\x9c\x62\x78\x7a\x2b\x87\x4b\x1e\x05\x08\x73\xfc\x46\xf1\x2b\x3e\x68\x98\xba\xc7\xe1\x4b\xb9\x1c\x7e\xd9\x52\xdb\x8f\x4e\x1e\x47\x3f\x18\x64\x73\x55\xb7\x79\xa1\x68\x72\x14\xa6\x6d\x00\x8a\x53\xef\xb0\x99\xb5\x14\x93\x7f\x45\xcf\x50\xa4\xc6\xad\xf6\x42\x0e\xf2\x19\x7e\x63\x81\xe1\x2d\x54\xb4\x5c\x0f\x21\x74\xb3\x31\x02\x09\xd3\xc8\x93\xe8\x05\x8a\x80\x91\xd4\x8d\xcc\x02\x84\xdf\x53\x5d\x57\x9d\x60\x4a\xc3\x3f\x63\x09\xcd\x3a\xc3\x41\x64\xe5\xf0\x12\xe7\xfc\x02\x6f\x52\x7a\xa5\xdb\x68\x51\xc2\x35\x75\x36\x20\x36\x11\x93\xa3\x90\x4e\xfe\x10\xfd\x49\x82\x05\x85\xa1\x94\x25\xc4\x44\x38\xf2\x93\x00\x3c\xab\xa8\xf3\x34\x07\x3b\x3d\x38\x29\x4f\xd0\xc9\x0c\xcf\xf6\x11\x20\xbe\xe3\xf0\x85\x57\xe7\x5f\x3b\xd6\x79\xe2\xd5\xf9\xa1\x82\x2b\xb1\x39\x9c\x28\x7a\x6c\xf2\x35\xb8\xb2\x8f\xab\xb1\x06\x46\x84\xf0\xc9\x0f\xd1\x63\xcc\xd4\xe3\x8b\xe8\x89\x09\xda\x44\x1e\xe9\x86\x5e\x62\x2e\x81\x0d\x8e\xa7\xbf\x27\x93\xfd\x93\xfe\x49\x7f\x33\x18\x18\x8d\x87\x81\x83\x89\x5e\x22\x83\x1e\x30\x93\x0b\xc3\x5a\x97\xff\x20\xe8\x12\x3a\xd1\xc0\x40\x69\xf8\x44\x82\x2c\x0e\xe6\x71\x92\x04\x50\x60\xa8\x47\xf1\x37\xf8\x55\xdb\xef\x67\xb2\x87\x99\x81\x18\x95\x41\xce\x24\x92\xb3\x53\xfe\xa5\xb2\x3c\x6a\x08\x5d\x7d\xeb\x04\xbf\xba\x09\xba\x44\xd8\x7c\xab\x26\x5f\x9d\x9c\xca\x2f\x72\xd4\x2f\xf0\x8f\xde\xea\xfd\xa8\x7d\x64\x82\xd2\x3f\x38\x8e\x0a\x74\x7c\x9f\x39\xc9\x9e\xb8\x40\xb6\xe8\x45\x69\xf2\x36\xfa\x34\x34\x87\xdc\xd4\x43\xf8\x38\xd4\x40\xfc\x2a\xf2\xe1\xe3\x2f\xbb\x57\xf3\x41\xe4\x4f\x16\xc5\x04\x2a\xf5\x4d\xe0\xc5\x64\x77\xe3\xb7\x32\xce\xa3\xf0\x07\xaf\xf6\x1f\xee\x5d\xfb\xb1\x57\xfb\x57\x6e\xc8\x41\xa4\xf7\xef\x2d\x06\x94\xfa\x43\x1b\x22\xfd\x9b\x59\xe4\x36\x24\xe5\x7a\x33\xb2\x0c\xd9\x9d\x57\xfb\xcf\x75\xc2\xc1\x36\xb1\xd9\xd8\x11\x2a\xac\x7a\x9d\xd0\x49\xd8\xde\x60\xa0\x27\x29\xf1\x8e\x7a\x9a\xfc\x35\xfa\xa3\xbc\xd1\xb4\x0c\x4e\xe3\x24\x63\x9b\xe6\x37\x54\x4c\x5c\x53\x91\xee\xa7\x1f\x74\xfc\xe6\xa1\xa5\x1a\x9b\xa9\x16\xe6\x8f\xea\xaa\x52\x42\x7f\xf5\xea\xcf\x1e\xdc\xbf\x30\x00\x2f\xcb\x55\x30\xe2\x0b\xd4\x00\xfc\xbf\x7a\x0b\x6f\x17\x42\x41\xfe\x1f\x51\xb4\x65\xe6\xd7\xd4\x4f\x9d\xf2\xc7\x96\xbd\x7b\x62\x91\xf7\x31\x10\x21\xf5\x6e\xff\xae\xf9\x55\xe7\x4d\x07\x39\x22\x8c\x97\xb2\xcd\x25\x57\x23\x9a\x0c\xde\x81\xa3\x4f\xc0\x74\x69\x09\xc9\x16\xc0\x28\x5d\xfd\xdb\x6c\x46\xa8\x3f\x96\x24\x12\xa4\x80\x37\x26\x7f\x2a\x4e\x89\x42\x3a\xf2\xd0\xfe\x2c\x71\x71\xc3\x3f\x1e\x46\xd1\x5e\xe5\x58\xb5\xe7\xc5\xcb\xa1\xcd\xf4\x10\xdf\x1e\xa4\x0f\xeb\x6c\x2b\x44\x00\x6c\xe3\x57\xbd\x90\x7f\x12\x5b\x41\xd2\x00\xb5\x30\x15\x58\x17\x9e\x82\x54\x21\x15\x3d\x9e\x57\x58\xf8\x01\x5d\x39\xd5\x87\x62\xde\xeb\xa9\x8d\x70\x37\x3e\xf3\x0b\xa6\xd4\x9d\x55\xe2\x1f\xd3\xa3\xca\x95\xc1\xe8\x6e\x87\xcc\x53\x98\xe1\xa3\x30\xf3\x7b\xca\x68\xe5\xa4\x3d\xd4\x48\xff\xef\x21\xa3\x38\x90\x04\x44\x46\x3d\xc0\xd5\x60\x9b\xb5\xc0\x4b\x4c\x3d\x76\x5e\x12\x2d\x9c\xe2\x84\xe2\xb9\xdf\x59\x5e\xed\xac\x76\x42\x72\x5a\xa7\x76\xc3\xc3\x50\x48\x30\x41\xf5\x63\x92\xbb\x41\x51\x0a\x14\xd2\x2c\xf0\xe9\x85\x82\x4a\x82\xa1\x39\xc8\x82\xb6\xe3\x95\xae\xc4\x03\x96\x44\x73\x9e\xca\xbf\x8e\xf6\xe5\xc5\x3b\xa9\x2e\x30\x64\xc4\x6f\x9c\x3a\x84\x5b\xc6\x58\x7a\x9c\x91\xbe\x46\x73\xb9\x2e\x08\x45\x66\x72\x49\xe5\xa8\x26\xbb\xed\xfc\xdc\xee\x3c\xae\x82\x51\xec\xaf\xf7\xd2\x6b\xac\xc2\x2d\xf5\x7a\x86\xe7\xf1\xda\x37\xe4\x34\x56\xdf\x14\x1b\xe5\x1a\x5b\xdb\x2e\x6b\xb4\xaa\x26\xfd\x56\x8e\xf0\xf3\x6a\xad\x68\x15\x7d\xe9\xc5\x71\xbc\xde\x05\xf5\x98\xb2\x8b\x06\x08\x1c\x85\x0b\x0a\xd4\x95\x57\xde\xb5\xbe\xa8\xee\x27\x4b\x35\xb6\xcf\x96\x00\xc7\x61\xeb\xad\xf6\x02\x28\xbc\x1f\xaa\x2d\x5d\x54\x5b\x32\x03\xba\x94\x03\xda\xbd\x59\x6f\x9c\x97\x7e\xeb\x97\xb0\x0a\x01\x92\x80\xd6\xeb\x1d\x55\x68\xc5\xeb\x6a\xcf\xbf\xbe\xa5\x8b\x6b\xe0\x20\x5b\x8f\x88\xfa\x14\x5a\x62\xcf\xb2\x0f\xe7\x96\x7d\xe0\x92\xa3\x7c\xd3\x3c\x14\xe7\xfe\x16\x55\x40\xf8\x1c\x96\x5e\x9d\xe5\xd4\x9f\xcf\x99\x07\x58\x6d\xa8\x47\x0f\xea\xd4\xaf\x73\x5a\x9d\xa7\x36\x06\xb0\x44\xe6\x29\x6d\xb2\xec\x57\xc0\xf4\xd5\xc7\x7b\xb5\xe5\x10\x6f\x23\x0e\x80\xdf\x63\xf3\x5b\xd6\xf5\x0a\xce\x63\xdb\x4d\xda\x42\x41\x1c\x85\x1f\x28\xbe\xa6\xf8\x8a\x4a\x30\x52\x0f\x28\xba\x75\xdf\x54\x09\x03\x53\x57\x0e\x31\xc8\x5b\xa2\x3e\xbd\x0f\x74\xfb\x85\xbf\xf5\xbe\xf7\x51\xc8\xd3\xdd\x01\xea\xd0\x1c\xc3\x2a\xf3\xbf\x15\xc4\x5d\xe9\xe3\xf0\x95\xd7\xe5\xeb\x0a\x08\x39\x72\x4a\xdd\x82\xc7\x14\x1f\x56\x52\x9e\x54\x07\x68\xb1\xf6\xb1\xc6\xda\x75\x6c\x0b\xd0\xa4\xe6\x51\x41\xbd\x66\x64\x12\xd4\x8e\x2a\x58\xf4\xc8\x83\xcf\x38\xbf\x93\xce\x3d\xf6\x47\x77\xe8\xd5\x5d\xf2\xec\xe2\xce\xda\xfe\x61\x7e\xef\x2f\xc4\xcc\x5b\x83\x27\xf8\x65\x25\xb4\xbb\x5f\xce\x88\x7f\x8e\x43\xc5\x3c\xcf\x40\xe8\x62\x38\xc0\xbf\x87\xff\xc2\xea\xd5\x71\xf8\x77\xc9\x59\xcd\x02\x7f\xaa\x6f\xda\x5a\x3a\x0a\xd7\x14\xbf\xa1\x4e\xc6\x25\xf7\xee\x8d\xbb\xb5\xf5\x74\xde\x1a\x89\x63\xab\x3b\x84\x8d\x1d\x78\x63\xd8\x9f\xe8\x12\x1b\x65\x62\x14\xe4\xd9\x32\xc0\xf3\x79\x34\x9d\x61\x4d\xfb\x45\x4a\xee\x19\x52\x49\xe0\x0d\x62\x3c\xc2\x01\x04\xc7\x0d\xc0\xdf\xda\x0a\x85\xa3\xd4\x09\x88\xb1\x96\xf9\xfa\xef\x7a\xbd\x9b\xcb\x5a\x31\x63\x50\x4d\x17\x91\x6c\xbc\x74\x3e\x92\xbe\x04\xbd\x61\xac\x58\x13\xb0\x0b\x5f\xc0\xee\x7f\x43\x58\xb4\x3b\xab\x42\xac\x00\x70\x79\x80\xea\x46\x30\x58\x13\x9d\x04\x20\x15\x0e\x20\xdf\x93\x2d\xa3\x34\x40\x72\xe2\xc2\x17\xc5\x56\xfc\x05\xb1\x52\x19\x22\xec\x94\x93\x5d\x72\xad\x15\x97\x10\x19\x34\xac\x06\x80\xd3\x52\x23\xdf\xa0\x44\xd8\xf8\xcc\x46\x89\x4a\x08\x9b\xf0\xc8\x33\x5d\x24\x8e\xe1\xef\x82\xe1\x4d\xbf\x1f\x74\x49\xd6\xeb\x05\x83\x81\x7c\x98\x30\x79\xc7\xcd\x17\x74\x1e\x54\xcc\x6e\x4c\x5e\x38\xab\x85\x9e\x83\x1e\x4a\x53\xfc\x84\x5a\xf9\x36\x61\xd8\x9e\x0c\x10\xd2\x48\x5a\x9a\x64\x58\x63\x60\xc8\x84\x7c\xf7\xda\xd1\xfa\xda\x8d\xd0\x01\x04\xbc\x09\x4d\x76\xb4\x49\xa6\xc4\xab\x51\x32\x79\x11\xbd\x42\x60\x2a\xa9\x33\xa8\x65\xd6\xe1\x33\x9b\x66\x4e\x3a\x2b\x9b\x3c\x40\x99\x91\xca\xee\xd5\xce\xf1\xc4\x3c\x54\x6e\x55\xde\xeb\x3d\x85\xd8\x1c\x13\x47\x39\x3f\x08\x22\x51\x96\x90\x70\x94\xe1\x0c\x4b\x6c\xd3\xee\x80\xc8\x96\xbe\x55\x10\xb9\xae\xf9\xe7\x55\x3e\x77\xc9\xa5\xf9\x3c\xd2\xf1\x33\x21\x95\xba\xcd\xfd\x8f\x33\x62\x21\x0a\x34\xc2\x40\x94\x4a\xf2\xec\xe4\x6c\xdf\x04\x45\xf7\xe2\x44\x08\x5f\x34\x7d\x50\x28\x05\xb1\xc9\xb5\x0d\x5f\x8d\x37\x1f\x21\x6f\x51\x46\x32\x10\xfa\x5b\x95\x6e\xd2\x25\x4b\xaa\x95\xbf\x46\x81\x92\x69\x8d\x02\xdc\x58\x0c\xd2\xe6\xa9\x5a\x08\xe7\x5a\x3d\x62\x8b\xd8\x2a\xf2\xbb\xd1\x44\xd8\xf2\x7b\xca\x29\x50\x95\xc6\x4b\xc2\x08\x99\xef\xb9\x7b\x6e\x41\x25\xaa\x9a\x6b\xff\x2d\x79\x5c\xfa\xa1\x2f\xa9\x72\xf0\xbc\xd9\x00\x72\x74\x2f\x26\x8a\xcd\xec\x8f\xa3\x91\x92\xa6\x4b\xa4\x2d\x79\xac\x1b\x38\x0c\xae\x45\xf7\xd1\xef\x26\x8e\xcc\xc8\xab\xbd\xb7\x39\xae\x57\x64\x67\xf5\x11\xf9\x2f\x56\xc6\x80\xd8\x6e\x26\xda\x6c\xf6\xa7\xd8\x5a\x5b\xf9\x5f\x00\xb0\xd0\x24\xdf\x6c\x62\x98\x82\x16\xdb\x77\x35\xff\xbc\xd9\x2c\x21\xbe\x69\x3a\x5c\x64\xc5\x59\x42\xb5\x0f\x28\x14\x9a\x64\xea\xb8\x4c\x32\xad\x65\xea\x87\xcb\xc9\x28\x1a\xa3\xa8\x32\x95\xc9\x28\x8a\xab\xaf\xc0\x2c\x1a\xec\x9f\xf5\xc5\x8f\x3c\x98\x9a\xc4\xd1\x83\x5f\xc7\xc8\xf9\x3e\x3c\x4f\xd7\x85\x88\x00\xfc\x74\xb5\xce\xf0\xd7\x93\xc8\xd4\x8d\x36\x27\x37\x9b\x93\x12\xfd\x6a\x1f\x03\xca\x3f\x52\xb8\x08\xbc\x41\xa3\x44\x05\x88\x0c\xf6\x7f\x1d\x54\xbe\x3e\x4d\x17\xf6\xdb\xaf\xf7\x03\x9c\xb0\x94\xea\x4f\xae\xce\x7e\x80\x97\x59\xb2\x88\x82\x33\x0e\x91\x92\xc1\x6c\xfe\x31\x8f\xe7\xef\xa9\xc8\xa3\x20\x44\xd3\xd9\x4d\xf9\xcd\x37\x27\xc1\x49\xf0\xcf\x7f\x06\x78\x45\x93\x35\xe5\x70\x43\x25\x13\x10\xce\x04\x51\xc5\xce\x5a\xc9\x6b\xc0\x5f\xa3\x80\x1f\x2f\x75\x38\x91\x0f\x6b\x4e\xf3\x9c\x65\xe9\x61\x92\x64\x57\x74\x11\x09\x9c\xbf\x67\xeb\xa7\xf6\x7d\xcb\xcd\x08\x5a\xa1\xaa\x3e\x68\x4f\x74\xc9\x8b\x5e\x4f\x74\xc9\x93\xcd\xc6\x69\x84\xc0\x83\x03\xe2\xf6\xb0\x5c\x50\xfe\x03\x0c\x33\x0c\x8c\x49\x76\x1e\xe0\xca\x28\xc1\x34\x7b\xb6\xdf\x6a\xe4\xef\x97\xf3\x2b\xb5\x16\xa6\xf3\x8b\x9d\x0a\xc7\xeb\x75\xc2\xe6\x70\x2f\xed\xdc\x81\x5f\xe7\xc3\xe0\x63\x6a\x7d\xd4\xe8\xe4\x9e\x62\xad\xea\xae\xef\x2c\xf8\x46\xdc\x3e\xcc\x4f\xa9\x9e\x2c\xfa\xb7\xd6\x4f\x16\x6d\x2d\xc0\x46\x38\x5b\xfc\xd6\xda\xee\xf3\x5d\x63\xb8\x5f\x43\xff\x23\x3d\x3d\xaa\x5e\x14\xbc\x38\xbb\x0e\x2a\xb3\xf4\x3d\x41\xfc\xc4\x01\x37\x25\xe6\x64\xe4\x27\x0e\xe0\x0f\x53\x48\x71\x2a\xa6\x74\xca\x67\x33\x62\xed\x44\x3a\x2a\x9b\x3b\xc7\x29\x11\xe1\x54\x52\x29\xb1\x3c\xa3\x71\xba\x08\x70\xf0\xf8\xe9\x1f\x9e\xbf\x0a\x70\x70\x46\xcf\x59\x2a\xff\xcb\x1b\x13\xf4\x1d\x39\x95\xff\x40\xfb\x89\x95\x35\x49\xa0\xcd\xed\x27\xf2\x31\x33\xc2\x15\xf8\xc7\xe4\xe7\xa7\xaf\x9e\xc8\x5f\xd0\x2e\x4d\xf3\x82\xcb\x8f\x60\xb3\x2f\xff\x83\xe1\x20\x94\x83\x8e\xb4\xfa\x13\x07\xa9\x4a\x19\x91\x66\xf2\x2f\x14\xe2\x14\x5a\xe7\x34\x9f\x17\x54\x45\xc3\xe7\x2e\x2a\x7e\x80\x83\x9c\x26\xb2\x1d\x30\xe1\x0f\x70\x20\x56\x54\xbe\x15\x1c\x4a\x83\x57\x00\xfc\x4f\x28\x8c\xbd\x48\x05\x4b\x02\x1c\x5c\xa9\x62\xe0\x6b\x11\xe0\x00\x0c\xfe\x65\xc7\xf0\x91\xc7\x0c\x86\x09\xce\x12\x30\x7f\x79\x6b\xc9\xe1\xc3\xe7\x24\xcb\xd6\x5a\x0b\x34\x9f\xeb\x07\xe8\x3b\x89\x2f\xce\x16\x71\x80\x25\x0b\x2b\x3f\x28\x73\x7b\xf5\x5b\x19\xd3\xc3\x33\x98\xdb\xc3\x14\x00\x00\xa1\x45\x30\x66\xd6\x2f\x4e\x39\x4d\x62\xc1\x2e\x61\x39\x41\x9c\x20\x77\xa8\x10\x99\x2e\x76\x7a\xfa\xf4\xd5\x93\xd3\x53\x78\x7a\xf6\xfc\xc5\x53\xfd\xf8\xe2\xf9\x2b\xf3\xb8\x60\xfc\xf4\x34\x80\x08\x03\x72\x97\xd5\x1a\x98\xed\xd3\xbb\xa9\xf6\xc0\x2c\x80\x59\x17\xbb\x13\x7a\x1d\xcd\xd4\xf5\x9c\xf5\xc4\x14\x80\xcc\x80\x8e\x0b\xa7\x7a\x97\x55\x13\x33\x84\x63\x72\x13\x4c\x03\x88\x66\x1f\xdc\x04\x11\x28\xec\x41\x46\xe8\xc7\x92\xcf\x6b\xb6\xf6\xce\x76\x55\x07\x60\x43\x58\xc7\x95\x72\x52\xce\x26\xf3\x62\xed\xc3\x89\x1a\x12\xbc\xa2\xbe\x2f\xb7\xa8\xb5\xbb\x46\xce\x2c\x73\x0f\x9a\xba\x85\x27\x01\x33\xba\x8a\x91\x3f\xd8\x62\x66\xda\xc8\x3f\xdb\x6c\xc0\xe8\xdf\x45\xcd\x0e\x97\x61\x66\x8d\xe4\xb1\xfa\xb8\xd9\xa8\x4a\x08\x72\x73\x5b\xeb\x68\x6d\xdf\x58\xf8\x66\xb0\x26\x6c\xa6\x9a\x22\x98\xe9\x82\x55\xb4\xa1\x74\x5b\x8a\x52\x13\xfe\xa4\xf9\x6d\x50\xb8\x30\x4b\x73\x32\x3a\x68\x96\x78\x98\x1c\x98\xc0\x58\x95\x49\x86\x01\x21\xab\xc9\xbc\x4f\xc6\x11\x50\xc2\xab\x5e\x2f\x9c\x0f\xc8\x18\xe1\xf9\xc3\x11\xb2\x56\x95\xb7\xf7\x8d\x47\x84\xcc\x5b\x57\x66\xf0\x20\xc0\xdd\x91\x5a\x8f\xb2\x4e\x7f\x96\x26\x22\xac\x5e\x20\xab\xb8\x0c\xf0\x05\x18\x64\x2a\xeb\xd7\x3c\x40\x93\x05\x51\x0e\x3b\xda\x7e\x7c\x7f\xfa\xd3\x9f\x67\xfb\xf0\x5a\xd7\xb0\x1f\x78\xe5\xbd\xe4\x7a\xcc\x97\xab\x0f\xbf\xcc\xf6\x55\x28\x57\xbf\x9f\xb1\x22\xeb\x2f\x89\x29\xf7\x8f\x93\xab\x93\x9c\xcc\xf6\x2d\xaf\x75\x39\x09\xe3\x76\x93\xe5\x4b\xd9\xdc\x25\x89\xa7\x97\x33\x84\xe5\xc4\x2f\xf1\x02\x5f\xd8\x19\xfb\x8a\xea\xd2\x98\x67\x67\xed\xe6\xd9\x15\x50\x05\x2d\x46\x06\x96\xe8\xce\xe4\xfc\xe1\x60\x32\x3d\xf9\xe7\x49\x70\xf2\xcd\x6c\x12\x4e\xe3\xc1\xbf\x0e\x07\x7f\x3f\x9d\xcc\x4e\xae\x7e\x8d\xdc\xfb\x49\x74\xb0\xf9\x15\xda\x47\xc8\x6d\x47\xc8\x48\x3a\x1d\xcf\x70\x6b\x14\x2b\xd3\x3c\x43\x13\xff\xfc\x00\x8f\x5a\x1b\xa0\x5e\xb3\xd2\x83\xee\x51\x75\x3e\xb0\x5d\x1f\x02\x34\x69\xba\x4a\x1c\x0e\x9e\xcd\xf6\xad\xf9\xff\x59\xbd\xcc\x68\x6c\xbf\x56\xfc\x22\x90\x75\x36\xa8\xfa\x30\x64\x2d\x3e\x0c\xd3\x93\xc5\xe9\x4c\xb9\x31\xc0\x63\xbf\xe6\xc9\x60\x5e\xd6\x1a\x05\x33\x81\x4c\x33\xe1\x9e\x81\xff\xc9\xf4\xe8\xe5\x6c\xb0\x8f\x0e\xd0\x41\x75\x82\x27\x27\xb5\xd1\x9f\x5c\xc1\xd8\x75\xb8\x20\xbb\x4e\xb2\xed\xa8\x65\x81\xbe\x09\xd0\x44\xc2\x4a\xf0\x8d\x44\xf6\xe0\x24\x08\xd1\xfc\xb0\x30\xeb\xf3\x4d\xf0\x8d\x2a\xf2\x4d\xf0\x8d\x2d\x32\xaa\x14\xd9\x9f\x9e\x3c\x3c\x79\x24\x61\x3d\xac\xbd\xd0\x15\xbc\x82\xfd\x93\xc1\xc9\xaf\x4f\xf6\x4f\x7a\x27\x9b\x93\xe8\xa4\x2b\x2b\xd5\x4e\x93\x02\xa6\x5f\xfd\xfe\xb4\xe2\x4b\x69\xda\xb6\x1b\x59\xf3\xb5\x94\x34\x9e\xee\x62\x72\xd2\x3d\x21\x7e\xe7\x0e\xf0\x61\x8d\x7f\xaf\xe0\xd9\x2d\xef\xef\x27\x06\x82\xab\x4d\xd6\xd6\xea\xf7\x81\xee\xc4\x8d\xa1\x36\x04\x5f\xc0\x01\x5d\xfd\xaa\xb9\xe4\x66\x82\xa7\x72\x4e\xb5\xe6\x1c\x54\x4a\xe8\xd2\x9f\xd5\xb3\xb7\xa7\x9e\xfe\x51\x79\x20\xb5\x0d\xbe\x09\x9a\xb7\x0d\xdc\x5f\x3b\xf7\x5b\x5e\x9e\x66\x77\x02\xb6\xb0\x08\x61\x23\x59\xe9\xcd\xa6\x0b\x06\xa8\x2f\x58\x2e\x40\x36\xd0\x35\x22\x84\xec\x7d\xaf\x27\x89\x33\xef\x05\x52\xb6\xec\x27\xe1\x09\xd2\xee\x52\x27\x07\xcd\x31\x72\x6d\xf9\x0d\x9d\x0c\xcc\x2e\xd5\x7c\xa5\x82\x98\x4b\xf2\x48\xcd\x9c\x48\x70\xda\xff\x75\x74\x32\xfc\xc7\xff\xf7\xf0\xd1\xff\xbf\xf1\xda\x04\x2c\x7e\x4d\x2a\xf3\x6e\x16\xb7\xe2\xbe\xa1\x9a\xd3\xf5\x66\x13\x72\x12\x0c\x03\xe4\x79\x98\x94\xde\x05\x6d\x23\x72\x91\x60\xa3\x6c\xa8\x3c\x6d\xa3\x6f\xa7\xb4\xd9\x84\x54\x5e\x5d\x0d\x79\x16\x88\x7e\x84\xf6\xb5\x83\x37\x63\x4f\xd7\xc3\x6b\x88\xcf\xf3\x77\x9b\x7a\xdf\x2c\x83\xac\xe3\xfc\xdc\x5e\x88\x24\x21\x1d\x8c\x55\xbc\x6c\x90\xe2\x08\xeb\xea\x17\xee\x50\xb5\x3f\x76\xb1\x67\x0b\x45\x1d\x79\xba\x53\x6b\x53\x6b\x73\xa8\x77\x5a\x83\x88\x51\xdf\x0b\xeb\x1e\x93\x43\x51\x48\x49\x77\x84\x55\xcf\x7e\xd7\x4b\x17\x14\xa9\xde\x31\xf8\x21\x80\x23\x07\xce\x4d\x7c\xcf\x80\xd3\x78\x31\xf8\xa5\xc8\x04\x5d\x0c\xd6\x71\x91\xd3\x45\x40\x08\xc9\xac\xa5\xb4\x11\xb1\x59\x53\xea\xac\x62\x44\x8d\x99\x82\xc5\x32\x40\xc8\xb8\xce\xc4\x84\x55\x5d\x67\x62\xa5\xd1\x4e\x37\x9b\x6e\x8e\xd0\x4d\x56\x9b\xb1\xf3\x0d\xe1\xbd\x1e\x5c\xc1\x71\xaf\xd7\xcd\xa1\x2a\x73\x0e\x36\x37\x4a\xa3\x55\x19\x8c\xb2\x2e\xb7\xbf\xb1\x72\xe7\x6d\x99\x53\x89\x70\x56\x23\x3f\x25\x65\xea\xba\xde\x9f\xfe\xfe\xe4\x57\xd6\x4d\xd1\x40\x62\x75\xb0\xb2\xd6\xdc\xd5\x2a\x73\xd2\xcd\x8d\x77\x4f\x5c\x5a\xae\xce\x53\x68\xd7\xae\xf2\x06\xa9\x2c\xc9\x75\x47\x28\xf7\x7a\xf5\x2b\x1e\x6f\xa1\x41\x76\x8a\x31\x65\x75\x2a\xd3\x62\xe6\xb4\x1b\x23\xab\x10\xd1\xce\xcf\x42\xb2\x13\xf6\xf3\x80\x7a\xd1\x00\x4a\xeb\xc5\xbe\x80\x48\x2f\xdd\x31\xd6\xc8\x4b\x39\x6f\x68\x54\x17\x75\xc7\xcd\x58\x50\x6a\xe6\x4a\x58\xef\x6b\x38\xb6\x69\x2a\x74\x28\x5a\x9c\x7b\xca\x87\xa9\x68\x3b\x00\x60\x1c\x53\x10\x48\x2d\xa3\x51\x30\x21\x79\x0b\x61\xbe\xe7\xa9\x6a\xc3\x9c\x28\x93\x4c\x83\x7e\x7d\xe3\xab\xb4\x9d\x7a\xf4\x7d\xb2\x26\xb6\xad\x68\xff\x1f\xd3\xc3\xc1\xdf\x0d\xac\x24\x68\x12\x88\xf8\x3c\x00\xed\xa6\xdf\xc1\x66\x63\x8d\x94\xbd\x77\xf6\x7e\x98\x40\x79\x4f\x2b\xa0\x82\xdc\x26\x98\xb5\x0f\x26\x41\x93\x98\x04\x6a\xc9\x82\x28\xbb\xad\x90\x8a\x96\x17\x80\x6a\xae\x4b\x92\x5e\xcf\x30\xdd\x5d\x92\x80\xc4\x50\xfb\x0a\x74\xeb\x7b\x30\x91\x57\x14\x91\x35\x84\x3d\xe5\x66\xbf\x1e\xba\xc7\x5e\x2f\x74\x43\x41\x91\xf7\xac\xe1\x32\xe4\x9b\x8d\x3c\x19\x06\x5c\xbb\x24\xd7\xea\x2d\xb5\x0c\xa4\x40\x38\xd8\x28\x3d\x48\x68\x57\x84\xb8\xcb\x13\x61\xd3\x24\x21\x31\x84\x91\x08\x4f\xa6\x27\x37\x33\x27\x3d\x16\x35\x1c\x20\xaa\x38\x40\x0e\xc0\x01\xb5\x1b\x7a\x19\x85\x66\x79\x4c\xcb\xe8\x64\x76\x52\xba\x96\x91\x3f\x79\xed\x00\xe1\x3a\xab\x7e\x02\xa2\xc0\x42\x76\xe5\xac\x10\xed\xf4\xb7\xd9\xf8\xf2\xfc\x1c\xe1\x7c\x17\xad\x4e\x2b\xe0\x77\x49\x51\xd5\xe5\xa4\x75\x5d\x0e\x73\xe3\xc3\x99\xf6\x29\x21\x24\x9e\xa6\xb3\x8a\xd9\x82\x71\x36\x01\xf9\x3c\x4d\x17\x1b\x90\x17\x6c\xe4\x4d\xb8\x01\xa1\xd1\xe6\x6a\x45\xd3\x8d\x12\xf4\xf8\x32\xfb\x7a\xd8\x28\xba\xe8\x87\xd9\x64\x14\xf9\x38\x03\xf5\xeb\x4b\x31\xf1\x3f\x47\xa3\xad\x22\x7f\x39\x12\xd5\xa7\x96\xf3\xfb\xd2\xfa\xe0\x3f\x82\x72\x5b\x44\x1a\x25\x9e\x53\x52\xba\xcf\x2d\x8e\xdc\x1e\xad\x68\x38\xd4\x71\x80\x54\xbe\x37\xfd\x6f\x5e\xf0\x7c\x4b\x39\xba\x60\x62\x1f\x30\xff\x99\x56\x2e\x7c\x9c\x68\xb3\x11\xaa\xe8\xd6\x91\xe0\x5b\x07\x70\x2f\xa1\xa8\xd1\x48\xbc\xa7\xd7\x2f\xe3\xf5\x30\x2f\xce\x12\x76\x41\xc9\xcd\x32\x4e\x12\xb1\xe2\x59\x71\xbe\x72\x36\x1e\x25\x86\x2c\xcb\xd9\xc5\x45\x9c\x2e\x72\x90\x88\xbe\xc9\x72\x08\xd4\xa0\xeb\xeb\x92\xc4\xbd\xb9\x88\xe7\x4f\xd4\x4b\xc8\xef\x17\x1c\x5d\x2c\x06\x81\x4a\x7b\x39\xf0\xdc\x60\x63\x75\x62\xc4\x50\x89\xe4\x6c\xd6\xd2\xfc\xf1\xb5\x1b\xbc\xb3\xe1\x14\x43\x9d\x50\x57\x85\x79\x96\x38\x78\x91\xcd\x75\xe5\xcd\x86\x0d\xe9\xc5\x5a\x5c\x87\x68\xe2\x1f\x48\x6d\x89\xca\x1e\x8e\x7a\xbd\x11\x21\xf2\x94\x39\x39\xd6\x3c\x61\xeb\x37\x59\x1e\xa6\x3a\x67\xdf\x60\x8c\x8c\x27\xb5\x18\x9e\x53\x48\x3c\xab\x3f\x01\x1f\x0e\x99\xcf\x64\x13\x8f\x88\xd1\x1c\x6f\x6f\xac\x3f\xc6\x7e\x54\x6e\x79\x23\x9a\x58\xe6\x05\x8c\x03\x27\x84\x41\xf4\xd1\xcc\x66\x15\x21\xa3\x83\xa2\x4b\x92\x83\xa2\x4f\x18\x9e\x9b\xd0\xaa\x4b\x49\xac\xe9\x2c\x6b\x0f\x47\x93\x62\x30\x8e\x0a\x84\xd7\x24\x38\x0d\x20\x4a\x1d\x1d\xb2\xfc\x27\xad\x1e\x0a\x97\x08\xb2\x29\x05\x99\xe2\x67\xae\x02\x42\xd6\xbd\xde\x72\x28\xb2\x1f\xd7\x6b\xca\x8f\xe2\x9c\x86\x88\xc8\x6a\xe1\x9a\x04\x3f\x81\x31\x22\x8c\x4a\x62\xb5\x40\x72\x36\x6b\x88\x15\x08\x62\xe4\x98\xac\x5d\x1a\x7f\x65\xdd\x96\xf7\x7a\x71\x97\xe8\x2c\x44\x57\x8a\xc8\x0b\x7e\x52\xbd\xc0\x2a\x17\x83\x01\x86\x17\xf2\x83\xee\x9e\x3d\x1a\xa1\x9b\x98\x04\x57\x81\x0d\xc5\xaa\xc3\xb0\x5a\xfe\xc3\xa4\x4d\x2c\x50\x19\xc2\xc6\x62\x36\x5c\xd1\x78\x81\x39\x8a\xf8\xc3\xd1\x44\x25\x12\x0c\x51\xc4\x86\x22\x0b\x51\x89\x4a\x3e\x15\xd3\xe0\x30\x11\x03\xc8\xdc\x39\x23\xc1\x79\x76\x5c\x9c\x49\xdc\xa8\x5f\xf8\x07\x20\x0e\x29\x96\x6c\x02\xb6\xb5\x54\x8a\x4f\xbf\x9a\x79\x53\xaf\x27\xab\x31\x79\x35\x4c\x01\x92\x5d\x77\x36\x8c\xed\xf1\x85\x8b\xc2\x9f\x03\xc4\x4b\x50\x97\xbd\xb4\x80\x7d\xe1\x5d\x14\x2c\x7f\x4b\xe3\xc5\xeb\x34\xb9\x0e\x51\x4d\xff\x2f\x86\xea\xc2\x91\x03\xf1\x43\x2d\x59\x97\x5a\x31\x4c\x58\xee\x72\xfd\xe6\x56\x52\x88\x19\x99\xce\x70\x46\x06\x63\x1c\x93\xd1\x41\xfc\x90\x1e\xc4\x06\x96\xf2\x96\x6a\xd3\x78\x06\x4b\xad\x3c\xc9\x73\xd8\x87\x87\xc4\xf0\x99\x05\x49\xf5\xbb\x7e\xc8\x41\x5f\x8c\x47\x68\x4f\x98\x24\x1e\x2a\xbf\x2f\xe4\x4f\x2e\x74\xde\xeb\x3e\x83\x3c\xa7\x72\x75\x02\x67\xd4\x02\x87\xa9\x50\x9b\x0c\xe5\xba\xf2\xa6\xd3\x81\xa9\x65\xf7\x51\x81\xe3\x74\xbe\xca\x78\x54\x48\x32\x9f\xe8\x4e\xc7\x65\x29\x86\x39\xf5\x47\xcc\xe4\xed\xa0\xa2\xbb\x1e\x29\xc4\x14\x6a\x3a\xe3\xb0\x10\x99\x1f\x1b\x20\x09\x2b\x46\xdd\x4c\x1d\xbc\x8c\x30\xc8\xe7\x59\x3b\xe2\x07\xac\x76\x96\x62\x3f\xc7\x33\x3a\x40\x83\x01\x53\x51\x60\xb2\x87\xb1\xb5\x22\x69\xaf\x91\xc9\xf2\xfd\x7e\xa6\xaf\xda\x1b\xc8\xd1\x6a\x81\x9c\x21\x2c\x32\xf7\x33\x43\x58\xc2\x5f\x14\x6b\xbf\x14\x06\x41\x15\x24\xa4\xe6\xfd\xe0\xc7\xb5\x04\xb6\x7c\xce\xb3\x24\x91\xa3\x85\xdf\x6d\x0a\xe6\x73\x2a\x8e\xa1\xd4\xf3\x74\x99\xe9\x5c\xdd\x92\x62\xbf\xa0\x62\xc5\xd2\x73\xb5\x7e\x74\x11\x22\x97\x3c\x5f\xf6\x7e\xa8\x73\x9d\x03\xd9\xb2\xee\x03\x22\xa3\xa9\x7e\x89\x03\xb0\xac\x0a\xd0\x1e\xb4\x7f\x04\x77\x91\x04\x34\x96\xd2\x47\x3a\x72\x82\xbf\x0b\xea\x4c\xfc\xb8\x0e\x50\x49\x87\x6a\xcc\xef\x32\xe5\xac\x0d\xcd\x0f\xa8\xb9\x2e\xde\xd1\x0f\xa6\x63\xa4\x8f\x65\xde\x57\x19\x79\x2b\xd3\xd5\x6f\xbe\xd8\x84\xed\x0c\xfb\xe3\x96\x39\x3e\xdc\x3a\x47\x18\xd7\x96\x59\xf6\x6f\x9b\xa5\x4a\x04\x3d\x08\xfa\x59\x3f\x78\x01\x73\x5d\x27\xcc\x41\xf7\xe3\x6b\x38\x37\xd5\x19\x3b\xc5\x24\x6d\x9c\x5e\x95\xe2\x9c\x91\xd1\x01\x73\x31\xc2\x59\xbf\x8f\x5c\x4c\x4c\x31\x65\x33\x8d\x3e\x25\xdc\xcb\x5f\x12\x87\xe2\x5c\x5e\x63\x2c\xa5\x07\xf9\x43\x12\xab\xa7\x7e\x3f\x47\xea\xf1\x51\xa6\xf3\xdc\x42\xa2\x52\xf5\x08\x29\x45\xe7\xab\xcd\x46\x67\x2c\xbf\xd1\x07\x36\x27\xba\xa5\x89\x84\xea\x1c\x8f\x10\x86\x13\x6d\xab\x4e\x62\xf9\x1e\x95\x12\x8e\xaa\x67\x99\x63\x49\x49\xda\x65\x79\x17\x9f\xc9\x35\xd1\x28\x03\x34\x8c\x7c\x2a\x86\x4f\xf3\x39\x09\x72\x96\x9e\x27\xd4\xd6\x7d\x97\x6d\x3b\x09\x0d\x04\x37\x9a\xd5\xfa\x0d\xc5\x50\x0d\x1d\x0b\x75\xcb\xdc\xa8\x6d\x94\x2c\xb0\xde\x27\xbb\x3d\x50\xe7\x73\x6d\xca\x8d\xdb\x91\xbd\xda\x22\xa6\x61\xa6\x37\x49\x61\x05\xb3\x88\xf2\xbd\xdc\x2e\x47\x55\x94\x00\x77\xd5\x65\xf4\x17\x11\x6e\x9c\x3f\xc9\xc1\xab\x28\x75\x30\x78\x33\x29\x95\x92\x1c\xd6\xd8\x60\xe9\xc3\xa5\x7a\xd5\xe2\x11\x59\x68\xcf\xd6\x06\xe8\xb6\x34\xf3\x98\x2e\x33\x5e\x5f\x25\xbf\x9d\x91\x5b\xda\x27\x6e\x69\x5f\xd1\x0f\xe2\xf5\x5c\xb1\xe8\xf3\x4a\x75\xe7\xfd\xea\x1d\x4c\x65\x6a\xab\x98\x24\xef\xad\xc4\xfb\x60\x04\xa7\x9c\x8c\x34\x51\xfb\x8c\xa5\x8b\x67\x45\x92\x48\x04\x2d\xf9\x77\x49\x30\xe6\x14\xa4\xb0\x23\xc8\xe1\x7f\x01\x34\x9b\x24\x13\x4d\x70\x14\x75\x65\xe8\x68\xd6\x12\x2d\x9b\x20\x0c\xd5\x5b\x28\xd4\xc9\x73\x21\x87\x2f\xce\x48\x77\xe4\x52\xf6\xe5\x6a\x68\xea\x6a\x94\x6d\xe3\x82\x64\x13\x2f\xf1\x57\x70\x72\x72\x16\xf4\xf3\x3e\xfc\x47\x51\x8e\xe7\xaa\xc6\x31\x50\xfc\x7a\x4a\x05\x66\x68\x6f\x3e\x5c\xb2\x74\xf1\x0a\xc4\x70\x13\x31\x8c\x17\x8e\x4c\x0e\xe7\xe6\x4c\xcf\x01\x3e\x50\x14\xb6\x37\x23\xa1\x7d\xc9\x78\xae\x2e\x3b\x79\x7d\x23\xe4\x35\x2b\x19\xe5\x5b\xdb\x2d\x33\xe0\x8b\xb7\x2f\xac\x5d\x57\x54\x6a\xd3\xbd\x20\x44\x37\xe5\x74\xe6\x51\x3d\xcb\x1a\xe6\x36\x68\x16\xd8\x8b\x7c\x1e\xa7\xcf\x32\xae\x8d\xb5\x42\x21\x49\x35\xb9\x03\x1c\x99\xf4\x03\x26\x04\x7c\xa3\xe4\xb8\x9a\xc4\x59\x05\x24\x9e\xaf\x08\x99\x9b\xab\x78\x6e\x03\xdb\x00\xf5\xdf\x1f\x7b\x94\x56\x65\x47\x53\x95\x10\x45\x9d\x3e\xf5\x38\x5f\xf5\xc7\x48\x07\x1e\xef\x8e\x11\xee\x8e\xf6\x04\x49\x43\xe6\xca\x31\x57\x4e\x5d\xd9\xfe\x21\x51\x39\xfb\x2d\xa4\x1f\xcf\xb3\x75\x03\x8b\x84\x14\x6d\x36\xb5\x2b\x46\x15\x3f\x4c\x92\xa0\xe5\xe4\xbd\x74\x0d\x3e\xa6\xe2\x8a\xd2\xf4\xb1\x65\x03\x2b\x67\x47\xae\xcb\x32\x14\x35\xc2\xd2\x1e\xc1\x97\x8a\x88\x7d\x97\xe9\xea\xb5\xda\xb7\xb3\x65\xdc\xe6\x86\xae\x6f\x09\x57\x08\x55\xed\x0b\xeb\xf5\x46\x5d\x77\xce\xd4\x42\xaa\x12\xc8\xc5\x65\x5f\x67\xb9\x65\xbb\xda\x5b\x93\xf0\xa0\x8b\x67\xbd\x5e\xaa\xbc\x03\x35\xf1\xe4\x36\x40\xde\x4b\xb2\x78\xa9\xe1\x70\x6d\x98\x4f\x45\x82\x47\x3e\x7a\xf4\x40\x73\xb5\x1b\x41\x6e\x89\x48\x65\x6b\x5b\xc7\xf8\xb1\xc4\xf8\x39\x19\x1d\xe4\x0f\x0d\x43\x77\x90\x1b\x8c\x5f\x90\x6c\x9a\x83\x3d\x6d\xb7\x30\x7c\xaa\xbb\x41\x12\x52\x54\x30\xff\x9c\x14\x0e\xe3\x7b\xed\x0d\xc6\xbd\x5e\x36\xcd\xfb\xe3\x99\x5f\x9c\x90\xf9\x01\x9a\x93\x62\xda\xef\xe7\x33\x57\x6f\x2f\xd6\xf2\x71\x3c\x47\x65\x69\xe8\xd5\x09\x23\xdd\x51\xa4\x3f\x55\xd1\x82\x12\xeb\xa9\x1f\xf2\xd7\x1d\xec\x07\xb0\x18\x23\x8f\x14\x3e\xc8\xfa\xe4\x81\xe1\x32\xe2\x69\x36\xc3\x85\xfc\xd7\x1f\xcf\x70\x42\x34\x55\x30\x27\x69\x58\x20\xbc\xf4\x11\x64\x82\xe7\xf2\x6c\xed\xf1\xc9\x72\x98\x67\x5c\x84\x28\xd2\x0f\x2d\x91\x1d\x09\xad\x72\xb2\x38\x05\x39\xb3\xf7\xc6\x06\x49\x51\x41\x96\x20\x14\x13\x49\x11\xa6\x0f\xc5\x64\x30\x8e\x28\x21\x42\x72\x31\xc0\x41\x54\x78\x98\x25\x96\x4b\x85\x81\x09\xa8\x5c\xcc\x89\xba\x87\xe7\x25\x2a\x99\x44\x96\xd5\x9b\x97\xaa\x0b\x59\x1e\xaa\xb5\xa5\xd6\xaf\xe2\x75\x93\x56\x17\xbb\xc3\x18\x6f\x83\x30\xcd\xd6\x55\x76\x0d\x78\x3c\x0b\x78\xbc\x05\xf0\xf8\x34\x97\x1b\x50\x81\xb0\xc1\xb8\x0a\x63\x06\x56\x1c\x29\x52\x68\xfa\xc8\x14\xb7\xbf\xe7\x2b\x4b\x96\x14\x70\xd8\x5c\x09\xf8\x35\x5f\x49\xe6\x6c\xd4\x35\xcd\x4b\x6a\xd1\x82\xfc\x66\x33\x18\xcc\x71\xf2\x28\x9b\x30\x07\x9c\x11\x73\x29\x98\xd8\x94\x79\xfa\xb9\xb9\xbc\x58\xe7\xe5\x9d\xa0\x38\x3a\xa0\x0f\x4d\xbd\x03\x6a\xa1\x90\x13\x36\xa5\x72\xc5\xd8\x94\x4a\x28\xcc\x7d\x96\xaf\xc9\xc2\x06\x38\x05\x6a\x54\xfe\x03\x32\x0b\x07\x7d\xb3\x91\x92\xb6\x78\xe4\x1f\x90\x49\x0b\x03\xdc\xcf\xe1\xaa\xf5\x4f\x91\x66\x88\x5d\x33\x51\xad\x9e\xa4\x01\x52\xd9\x73\x06\x3d\xd7\x8b\x37\x58\xdf\x18\x72\xc1\x69\xae\x47\x64\x7f\x61\xf4\x0a\x84\x21\x58\xc3\x9f\x65\xa0\x74\x13\x75\xf6\xe9\xb3\xc1\xa0\x9b\x65\x7f\x0c\xc1\xa7\xad\x33\x41\xfc\x88\x8c\x0e\xe2\xc1\xc0\xa0\x02\x3e\x8d\x25\x2a\xc8\x2b\x44\x6c\x42\x72\x1f\x20\xf7\x46\x5d\x53\x40\x02\x4c\xee\x00\xa6\x18\x0c\x70\xf1\xd0\x02\x4c\x81\x93\x5b\x00\x26\x91\x00\x93\xdc\x0d\x30\xb6\xce\x03\x13\x85\x6c\x1b\xcc\xc4\x55\x98\xe1\x84\xdc\x0a\x05\x00\x43\x83\x31\xc0\x10\xba\x75\xe3\xef\x02\xb7\x5a\xf1\xf8\x6e\x38\xd9\x02\x14\x59\x3f\xd8\x97\x10\x21\xb2\xf3\xf3\xc4\xc8\xe1\x9f\x6b\xb9\x7f\x8d\x18\x91\xc8\xd5\x2b\x15\xde\x68\x15\x07\xd8\x07\x9b\xd6\xfe\x28\x5b\xfb\x39\x63\xa9\xec\x3a\xff\x2c\x4c\x51\x95\x55\xc5\x31\x31\x9c\x10\xce\x35\x03\x29\x29\x68\xef\x4e\x74\x0d\xc8\x3b\x51\x4c\x59\xe3\x4e\x2c\x0e\x50\x41\xc4\xb4\xdf\x67\xfe\x9d\x68\x58\x2e\x10\x79\x46\x39\xa4\x06\xb5\x62\xa7\x6e\x66\xc0\xae\xd7\x8b\x81\xc7\xba\x15\x8c\x04\x04\x59\xb4\xd7\x20\x77\xd7\xa0\x37\xa3\x18\xe7\x90\x7a\x02\x0e\x80\xea\x47\xd2\x2f\x79\x05\xbd\x0a\x9c\xfb\xe8\x55\x9e\x0d\x18\xe0\x41\xf2\x90\xe4\x43\x9a\x2e\xfc\x64\x7b\xc9\x40\xec\x25\x44\xbd\x07\x0d\x5e\x1a\xce\x31\xb5\x40\x3a\x37\x52\x40\x49\xe7\xe2\xf9\x43\xea\x81\x2b\x44\xfb\xaa\x42\x61\x47\xc2\xd4\x5c\x02\xe1\xbc\x3f\xc6\xa0\xc2\xd9\x57\x69\x93\xbc\x26\x65\x53\x7e\x62\x6d\xdc\xef\x0b\x54\xb2\xea\x9d\x51\x6c\x36\xb1\xba\x19\xe2\x16\xfe\x94\xa9\x5b\xb2\x41\xcc\x02\x1f\xb8\x28\x94\xd1\x3a\x6d\xe1\xb2\xef\xdc\x84\x26\x9c\x19\x31\xa8\xce\x9b\x06\x09\xd3\x2c\x03\xd1\x90\x0d\xf0\xd9\x9e\x53\x1d\xd4\x96\xc7\xad\x01\x73\x77\x1d\x32\x47\xd1\x7b\x27\x79\xaa\xa8\xad\xb2\x7a\x34\xc2\x6b\xac\x84\xd7\xf2\xbf\x7a\xe1\x04\x48\xd5\x83\x0b\x07\xed\x1d\x1c\x5b\x1e\xa7\xf9\x3a\xcb\xa9\x76\xfe\xe0\x53\x31\x7c\xf6\x3d\x09\x24\x81\xd4\x76\x00\x57\x35\x46\xfb\xd9\xf7\x70\x1d\x98\xd2\xcf\xd3\x9c\xa6\x39\x03\x5b\xe8\x96\x8a\x9a\xd3\x1f\x3e\x7b\x40\xc0\x72\xfc\x71\x96\xbd\xbf\x88\xf9\xfb\x2d\x82\x96\x0a\x4b\x68\xca\x2a\xd7\x35\xc5\xb9\xd9\x63\xee\x38\x79\x9d\xa3\x13\xe2\xf0\x49\x26\x54\x09\xee\x52\xa7\x48\x51\xf9\x12\xc1\x66\xa2\xc2\x9d\x29\x7e\x3b\x95\xfc\x76\x59\x01\xa4\x67\x0f\xe4\x14\xd7\x9c\x5e\x7e\xc6\xe1\x0a\x9b\xcd\x5d\xa7\x61\x34\xd1\x58\xc5\x54\x78\x5e\x83\x6e\x06\x7c\x0b\x57\xc9\xd5\xb8\xb9\x1c\xf7\x9e\x30\x3e\x3e\x76\x7b\x1e\x38\xdc\xbc\x65\xf4\x77\xa0\xd4\x6d\xd3\x02\x3f\xc9\xf6\x4f\x64\x3a\x93\xeb\x3f\x3a\x48\x1d\x1e\x4e\x7d\xac\xc5\x88\x98\xa6\x56\x64\x98\xa9\x5f\x20\x32\x8c\x09\x85\x39\xbf\x94\xed\x80\xa0\x5a\x93\x9e\xb1\x4f\x7a\xb2\x65\x18\x4f\xf3\x59\xbd\x63\x74\x03\x6f\xe7\x09\x8d\x79\xe8\x54\x63\x2a\xa5\x20\xf7\x53\x0a\xf2\x69\x31\x23\x44\x96\xee\xf5\xf8\x30\x5f\x83\x58\x5c\x92\x02\x63\x63\xb5\xa3\x44\x8b\x9a\x0c\xd0\x68\x9d\x82\x8f\xe6\x3b\xfa\x41\xc8\x91\xe1\x9b\x5a\xf7\x51\x77\x84\xa1\xef\x9f\x56\x34\x7d\x2a\x4f\x3c\x88\xfb\x6a\xd0\x04\x68\x49\x6d\x0b\x14\xb6\xab\xf6\x91\x40\xb5\x25\x83\xa3\x98\x72\xb7\x12\xe6\x0b\x19\x79\x0a\x2a\x35\x06\xcd\xe8\x7f\xd4\x20\xe0\xc2\xad\x8e\xa4\x6d\xd7\xfd\x1d\xd7\xe0\x3c\xa9\xc9\x26\x15\xbe\x52\xe8\x5d\xe2\xb0\x52\xd2\x33\x7a\x5b\xd2\xc1\x40\x22\x77\xee\x69\x44\xb6\x88\x78\xe5\xac\xfe\x2c\x27\x75\xc5\x15\xe1\x92\x2b\x65\xf4\x82\x64\xfd\xe0\x4f\x9d\xc0\xcf\x1b\xa0\x55\xc3\xb7\x22\xff\xf4\x16\x0a\x75\x3a\xd3\xca\xaf\xd4\xcc\x15\x74\x60\x61\x41\xd2\x69\x3c\x43\x16\xe3\x87\xfa\x1a\x8b\x11\xce\xd4\x53\x10\x20\x14\xe9\x67\x1e\x7a\x8c\xaa\x61\xa1\xb0\x62\x6d\x10\x92\x64\x97\x46\xf9\xde\x10\x32\x1c\xc4\x3c\x2b\xc0\x83\x43\x25\xe4\x50\x7a\x41\x80\xf7\xd8\xd1\x9e\x75\x4a\x59\x8e\x8c\x4d\xe3\xd9\x4c\xeb\xe1\x20\x81\x9f\x92\x9b\x28\xde\x0a\xe7\xe8\xd1\x08\x59\x3a\x20\x14\x9a\xe7\x42\x7b\x39\x51\x32\xbb\x3a\xd5\xc8\xc3\xb9\x12\x61\x62\xfd\x7d\xae\xb0\x67\xe9\x47\x1c\xb9\x5d\xcc\x9a\x36\xc5\xac\x4d\xe9\x69\x8a\x0c\x14\x79\xd2\x53\x56\x91\x9e\x72\xa2\x61\x28\x25\x00\x40\xbe\x5e\x8c\x83\x36\x0c\xff\x52\x50\x7e\x1d\x55\x44\xa7\xa9\xd6\x8c\xb1\x66\x8c\x71\x35\xe4\xcb\x90\x6a\xec\x6b\x93\xa6\x41\x33\xe0\x64\x52\x17\x85\x32\x2c\x26\x12\x0f\x47\x0a\x27\xa3\x83\x50\x4c\x32\x4f\x12\x1a\xa9\x1f\x6f\x38\xbd\x64\x59\x91\x87\x48\x12\x04\x15\x64\x6e\xe9\xd2\xcc\x88\x5c\xb7\xf5\x93\x86\xb4\x26\x74\x8d\xa8\x67\x23\xe0\x93\x65\x08\x21\xfc\xe9\x23\xe1\xb0\xdc\xf5\xd3\x57\xb9\x7e\x50\x59\x8a\xe9\x42\xe2\xb7\xc7\xf1\xfc\x7d\x6e\x84\x93\x0b\x0a\x9a\x36\xd0\x6b\x03\xfa\x81\x22\x7f\xf2\x3e\xb5\x69\xc6\x3f\x82\x30\xc3\xc0\x52\x1a\xe8\xe7\x12\xfa\xf9\x60\x80\xea\x34\x69\x80\x01\x39\x6a\x05\x4d\x0a\x99\x6e\x1d\x0d\x2f\xf9\x24\xa5\xd6\x00\xad\xe4\x36\xb6\x07\xe6\xf0\xa3\x9c\x43\xb1\x96\xa7\xf0\x50\x83\x70\x6d\x16\x17\x21\xc5\x2d\xea\x8a\x9a\x94\xa9\xd2\x28\x68\x85\x16\xd9\x55\xfa\x71\xcd\xbe\xc8\xae\x5a\x9b\xf5\x64\xc5\xe2\x58\x21\xf2\x97\x4d\x62\xa0\x86\xea\x65\x09\xd8\xf2\xfa\x4b\x73\xb5\xe0\x96\x6f\x04\x40\xc4\xdc\x12\x61\x45\x1c\xef\x8f\xe8\xd0\xdd\x3f\xef\xb2\xed\x43\x6a\xbd\x83\xb6\x0f\x4c\x5f\x31\xa2\x01\xa9\x55\xb5\x80\xf0\x47\xf2\x93\xd3\x65\x6d\x1d\x89\x87\xc5\x5a\x46\xd2\xf2\xb2\x42\xbb\xdd\x98\xfb\xc4\x1f\x03\x53\xc6\xa9\x16\xd1\xa5\x98\x49\x0c\xac\x75\x78\x6c\x8f\x91\x14\xa7\x24\x2b\x6b\x8d\xff\x89\x25\x09\x5d\xf8\x22\xce\x14\x34\xfe\x4d\x01\x00\x66\x86\xf8\x80\x69\xfe\xd5\x48\x6e\x7e\x62\x62\xf5\x05\x16\xbc\x4e\x10\x7e\x12\xa0\x28\xfa\x5c\xff\x14\x15\xc0\xf9\x1b\xcc\x43\xb5\xf3\xb7\x38\xad\x8f\x5f\xd9\x97\xd3\xb6\x45\x93\x33\xa8\xdf\xa8\xf5\x51\xab\x92\x5a\x06\xb2\x8e\x73\x89\x08\x24\x79\x01\x5d\xff\xa1\x85\x6e\x73\x03\x3b\x82\x81\xad\xb2\xab\xe7\xe9\x11\x4d\x9b\x4a\x4f\xeb\xab\x0f\xb3\x3a\xca\x32\xbe\xc8\x95\x5e\xdf\xb3\x83\xa8\x2a\xfc\xad\xd9\xc4\x59\x26\x44\x76\x81\xf6\x1f\x0c\x1a\x96\x09\x15\x93\x8a\xfd\x07\x55\x36\x58\x12\x45\x5a\x6a\x6c\x35\xcd\xf9\x8f\xeb\xab\x98\x37\xa5\x33\x1f\x83\x71\x1b\x94\xa7\xa5\xf7\x80\xf3\xb5\x2c\xec\xa3\xca\x7d\x25\x37\xa2\xa2\x14\xac\xb0\xbb\x83\xb1\xb6\xce\x1a\xce\x57\xf2\x56\x69\xce\xc8\xca\x21\xdd\x9c\xe4\xab\xaf\x3e\xab\x9a\xfc\xe3\xb6\x49\xf5\xdb\x27\x25\xb9\x81\x6f\xe5\x54\xe4\x39\xfa\x31\x5d\x34\x80\xe6\xda\xe7\xb8\x2b\x4c\x44\xb5\x9a\xb9\xcc\xdb\xaa\x57\x2c\xd3\x5c\xbd\xc3\x24\x69\xeb\x51\xad\x8b\x21\x7d\x6a\xb9\x22\xea\xc4\x88\x50\x04\x91\xa4\xe4\x40\xfa\x26\x6f\x5e\x8f\xd2\x38\x40\x69\x95\xd4\xe7\x86\xb0\x00\x62\x9f\x6b\x6b\x3b\xcc\x7d\xf1\xda\x43\x22\xe0\xa7\x36\x0b\xb1\xdf\xe6\x2b\xfb\x65\xbe\xea\xf5\x58\xbf\xdf\xb0\xf7\xd0\x38\xaf\xba\x52\x53\x98\x70\x96\x2c\x82\xda\x87\x19\x5c\xe0\xa9\xf9\x04\x87\x78\x14\xcc\x88\x7e\xfc\xd9\x7d\x3e\x4c\x92\x40\x89\x4d\x9e\x9b\xd5\x7b\x9e\xce\x39\x24\x76\x8b\x93\x7a\xbb\x6d\x65\xde\xaa\xb4\x66\xba\x95\x1f\x64\x09\x8d\x8a\x02\x2c\x86\xcf\xbe\x55\x15\x5e\x81\x3f\xbd\x93\x3d\xd8\xbd\x92\xdb\x1b\x60\x3a\x4c\x33\x7e\x11\x27\xec\x5f\xf4\x4f\x60\x0c\x1b\x0a\xb9\x7a\xda\xee\x37\xf0\xed\x7d\xa7\x9e\xab\x68\xcd\x42\x57\x13\xc7\x26\x64\x8a\x33\xeb\x2d\xbd\xb6\x7e\x4f\x2f\xce\x28\xdf\xcf\xf8\x82\x72\xba\x18\xe4\x54\xec\x83\xa2\x3b\xc0\x53\x1d\x39\x3d\x0f\x66\x78\xab\x15\xf0\x6b\x30\x9b\xd6\x76\xd8\x2e\xb8\x37\x0e\x4e\x4f\x69\xfe\x52\x3b\xad\xdf\x40\x4a\x38\x90\xff\x6a\xb3\x61\x15\x17\x6c\x4f\x90\xa7\xb2\xf7\xe1\x6b\xd5\xfb\x31\x15\xd8\x1a\x3d\x11\xe1\x8d\x12\x06\x39\x88\x7f\x8e\x3f\xec\x0f\xb4\xa3\xfe\xfe\x9a\x67\x17\x10\x0f\xe0\x4b\x0e\xd4\xc7\x25\x36\xcc\x6b\x3d\xb5\x4a\x3b\x1a\x49\x15\x1a\x49\x87\xd4\xba\x64\x10\xff\xc7\x66\xd3\x1d\xe3\x74\x38\xcf\xd2\x25\x3b\x2f\xd4\xf7\xee\x08\x07\x30\x86\x80\x41\x52\xfa\x30\x1d\x5e\x71\x26\xf4\x37\x84\xb7\xcd\x22\x1d\xbe\xa7\xd7\x38\x45\x65\x23\x7e\x6d\xd5\xfd\x8b\xf7\x7a\x34\x14\x2e\xaf\x3e\xe6\x08\xa7\xf0\x4e\x32\x49\xa2\x2c\x43\x23\xa0\x6a\x9f\x78\xd3\x8f\xcc\xb8\xfe\x77\x43\xda\x71\xe9\x20\x3b\x02\x21\x88\xd2\xd0\x49\xe9\x55\xe7\xdd\xf5\x9a\x3e\x95\x80\x17\x06\x47\x71\x9a\x66\xa2\x33\x8f\x93\xa4\x13\x77\xc0\x25\xa6\x13\xe7\x9d\xd8\x36\x18\xa0\x12\x52\xda\x60\x8a\x70\xb3\x13\xea\xb5\xfa\x96\x2e\x29\x18\xfb\xe8\xa6\x65\xad\xce\x2a\xce\xd3\x6f\x44\xe7\x8c\xd2\xb4\xc3\x52\x26\x58\x9c\xb0\x9c\x2e\x3a\x83\x0e\x04\xa2\x08\x51\xa5\x04\x44\x88\x58\x04\x46\xdb\xdb\x85\xa0\x9b\xca\x11\xa0\x6b\xec\xef\x45\xaf\xe7\xac\xf2\xdd\xdb\x09\x8d\x84\x1e\x69\x48\x87\xa7\xa7\xb0\xa4\xa7\xa7\x9b\x8d\xde\xa2\x73\x2a\xde\x98\x55\x7e\xbd\x0c\x29\x42\x3a\xe7\x0c\x54\x71\x39\x67\x9a\x11\x87\x5d\x34\xc0\x66\xaf\xbd\x9e\x22\x7b\x88\x68\x5f\xde\x63\x39\xc9\x8e\x8b\x2d\xd4\xb9\x28\x72\xd1\xa1\x4c\xac\x28\xef\x9c\x51\x70\xd0\xec\x64\xdc\x5b\x6f\xdc\x91\xfb\x11\xf4\x4d\x0f\x92\x36\xb1\xe0\x41\xf4\x64\xe6\x9c\xc6\x82\x86\x42\x52\xc0\x0e\x76\x6e\x20\x29\x29\x2f\xe6\x22\xe3\x91\x3e\x3a\x14\x3b\x00\x8f\xba\x63\x6c\xa0\x17\xa4\x66\x1e\xa4\xcb\x33\x56\x22\x0c\x01\x16\x55\x1f\x79\x65\xc1\x26\xad\x6f\x43\xed\x53\x6d\x97\x9b\x08\x54\x86\x14\x2b\x2c\xf2\xf6\xf8\x2f\x6f\x86\x6f\x14\x56\x40\x58\x84\x14\x4f\x6f\xde\xd3\xeb\x48\xc7\xcc\x50\x03\xf4\xe0\xba\x7a\xc2\x3b\xd4\x9c\x15\xb9\x48\x44\x05\x7f\x14\xe4\x99\xfe\xec\xe6\x8d\x74\xe8\x34\xb7\xd1\x5e\x80\xb9\x27\x3a\x18\x8e\xbc\x32\xb5\x08\x43\xe1\x3a\x42\x88\x0d\x6d\xd7\x0e\x22\x36\xb2\x5e\x47\x0f\x20\x9b\xe8\xd8\xf4\x34\xcc\x60\x64\xa5\x8a\x7f\xaa\xd1\x03\x73\xa6\x2f\xf0\x4e\xb9\xcc\x11\x26\xdb\xb5\xc1\x10\xa0\x81\x2e\x21\xf1\x24\x1e\x4a\x68\x0f\x6d\xc4\xfb\x32\xf4\x36\x7a\x07\x00\xf6\x16\xc0\x44\x21\x91\xa0\xbc\x05\xac\x6d\x58\x9b\xe1\x87\x15\x27\x90\xa3\xea\xc3\x8a\x4b\x0c\x33\x43\x98\x4a\x34\xe3\x10\x3d\xbf\x03\xd1\x17\x82\x25\xf9\xfe\x39\x15\x03\x49\x4c\x50\xfe\x85\x30\xbe\x77\xf5\x34\xce\xa2\x02\x30\x96\xbf\xca\x52\x0a\xa6\x56\x95\x17\xd6\x38\x4a\xe3\x4e\xf5\xf1\xd0\x40\xf6\x7b\x7a\x9d\x03\x02\x00\x1e\xea\x6e\x86\x5e\xc2\x5e\x9d\xc5\x37\xeb\x49\xa7\x7c\x56\xee\xb4\x5e\x2c\x1f\x2c\xe3\x5c\x9c\x65\x99\xf8\xb2\x57\x64\x60\x53\xfc\x3a\x44\xf5\x2c\xce\x25\xc7\x27\xf6\x76\xbf\xce\xed\xa8\x4d\xb4\x8f\xaf\xb7\xc9\xcd\x50\xb2\xc6\x3d\x6c\xb7\xa5\x86\x84\xe9\x03\x4e\xf3\x75\x96\xe6\x54\x43\x69\xfe\x75\x67\xa0\x20\xef\xa6\x54\xf6\xeb\xd6\x59\x7e\xcf\xa9\x93\xd6\x09\x13\xa1\x40\x43\x4e\x17\xc5\x9c\xb6\x99\x45\x81\x98\x56\x95\x53\x19\x38\x48\xc8\x49\x8a\x0f\x39\x8f\xaf\x87\x2c\x87\xff\x21\x47\x13\x1e\xa9\x57\x40\xaf\x73\x84\xc0\xd0\x61\x34\xc3\x12\xf9\x28\xdf\x03\xcf\xd0\x8e\x64\x43\xc1\x99\x64\x05\xc2\x98\xc4\xc3\x9f\x33\x96\x42\xeb\xfa\x2d\xa8\x93\xa7\xd9\x8c\xc4\x12\x2f\x60\xae\x8d\xee\x24\xc3\x76\xf4\xf6\xc5\x33\x12\x9c\xf0\x93\x34\xd8\x69\x1b\x0a\x9e\x0c\x54\x3c\xbe\xca\xda\xfb\x01\x9d\x76\x3b\x2e\xb3\x5a\x58\xd2\x4f\xdf\x31\x80\x90\x1f\xdf\xbe\x20\x31\xa6\x43\x96\x3f\x2b\x92\x44\xfe\x6a\xc5\x05\xca\x1d\x3c\x45\x25\xa6\xc3\x55\x7c\x49\x8f\xe3\x0b\xfa\x43\x96\xd7\xb1\x92\x29\x4f\xe2\x50\xde\x76\x24\x0e\x05\xf4\x24\xb1\xf4\x3c\x83\x0b\xcc\xfe\x90\x2c\xeb\x2a\xcb\x85\x4a\x52\x47\x84\xfd\x01\x56\x6a\x19\x17\xaa\x74\xc6\x45\xa9\x7d\x49\xf7\xff\x11\xae\x84\x58\x6f\xe4\x9f\x1c\xed\x63\xe6\x1f\x73\x7b\x3e\x72\x9a\x2c\xc1\xa1\xb8\x81\x00\xd6\x3c\x9b\xd3\x3c\xef\xf5\x82\xa9\x22\xa8\xcc\x9b\x59\x40\x08\xb9\x29\x87\x22\x3b\xd6\xd9\x23\xe5\xad\xa4\x3f\x4a\x48\xe2\x06\xbc\x27\x3f\xbe\x7d\x11\xb1\x49\x38\xc2\xc2\xbc\x42\x61\x50\xf0\x24\x40\xd1\x22\x9b\xc3\x45\xa3\x29\x93\xa7\x2a\xf5\x76\x18\x40\x86\x65\xe7\x19\xe8\xb8\x5c\xc5\x6f\xb0\xcd\xc6\x35\x2f\x48\xa6\xf6\x25\xa4\x28\x0a\xb3\xe1\x8a\xd3\x25\xa1\x58\x90\x0c\xe9\x45\xb8\xf1\x02\xff\xc2\x57\x01\xff\x70\xea\x56\xd9\xad\x31\x4e\xdd\x12\xbb\x05\x96\x65\xe5\xfa\xaa\xd5\x95\xbf\x62\xb1\xd2\x65\xcc\x23\x4e\x87\xca\x49\x53\x9e\x3e\x78\x90\x6d\xc5\xb9\xfc\x2d\xff\xe1\x74\x0b\x1a\x92\x7f\x06\x12\xb8\x69\x2e\xaa\x10\xef\x15\xba\x60\x1f\x58\x9a\x57\xcb\xd6\xc3\x0b\x7d\x2e\x84\xa4\xb9\x39\xd5\x80\x32\xfc\x0d\xdd\xe6\xb5\x4f\x02\xd2\xdb\xee\x8a\x2c\xab\x91\xf6\xd4\xde\xd6\xb3\x6b\x3c\x1a\xf7\x7a\x8e\xee\xb1\xb9\x35\xc6\xb3\x89\xff\x23\x0a\x0e\x7f\x8e\x3f\x74\xac\xd4\xa8\xb3\x8c\x99\xe4\x05\x30\xf7\xea\x3c\x98\xed\xa9\x29\x01\x79\xad\x40\x15\x08\x1d\x81\x74\x66\xce\xf8\x3a\xc9\x62\x9b\xc2\x33\x17\xb1\x28\x72\xe2\x25\xd4\xe3\x72\x9c\xc2\xab\x49\x71\xf0\x56\xed\x42\xe7\x2a\xce\x3b\x9c\xfe\x0c\xee\x45\x9d\x33\x3a\x8f\xe5\x4c\x99\x7a\xcf\xd2\xcb\x38\x61\x8b\x00\x7f\xf7\xe0\x81\x9f\xa8\xa3\xa5\x39\x98\x47\x5c\x88\x55\xc6\xd9\xbf\xaa\x73\xf9\x6e\xe4\x67\x71\x62\xf7\x1d\x4b\x91\x53\xde\x61\x39\x70\x08\x6b\xca\x2f\x98\x90\x5f\x45\x26\x7f\x2c\x33\x7e\xd1\x01\x96\xcb\x2e\xe1\x50\x76\xf8\xad\x9f\xec\xe3\x8e\x0e\x65\x1b\x31\xb4\xc9\xd2\x79\xc6\x39\x9d\x8b\xe4\x1a\x5a\xf1\x13\x9d\xc5\xad\xad\xe4\x59\xc1\xe7\x14\x9a\x91\xc3\x5b\x66\x45\xba\x80\xaa\xdf\xf9\x09\x40\xc2\x6a\x4d\x25\x84\x7d\xb7\xa2\x9d\xb8\xba\xf9\x82\x5d\xd0\x45\x27\x2b\x44\x00\xfe\x9d\x9e\x97\xe5\x8e\x0d\xc8\x71\xc4\x67\x19\x87\x58\x82\x23\x54\x0b\x79\x53\x1b\x7d\x4b\x7d\xb5\x63\x9d\x45\x41\xe5\xfa\xc6\x1d\xc9\x2b\x25\x12\xe4\xf1\x77\xa3\xef\xfd\x44\x1c\x2a\xcf\xfd\x2e\xbb\xa8\xdb\xca\x29\xbf\x94\x3c\xa1\x12\x17\xf9\x71\xfb\x96\xfe\xb5\x53\x61\xde\xcb\x8f\xc0\x01\x12\x0c\xe1\x98\x40\xf8\xed\xe7\x0a\x7e\xd5\x0b\x8e\xe9\xf0\xc7\xd4\x80\x28\xd5\x6f\x53\x4c\x87\xcf\x32\x7e\xc6\x16\x0b\x9a\xaa\x57\x0c\xd3\xe1\xe3\x78\xa1\xa7\xa3\xde\x65\x98\x0e\x5f\x65\xe2\x99\xdc\x60\xf5\x46\xde\xa1\xef\xd8\x05\xcd\x0a\x5d\x24\x97\xdd\xcb\xc5\x57\x3f\x0b\x4c\x87\x47\x7a\xfd\xd4\x9b\x04\xd3\xe1\x31\xac\x83\xfa\x3d\x87\x5b\xd8\x8d\x78\x09\xbf\x9b\x43\x6c\xb9\x9f\xe5\xa2\x4d\x2a\xab\x95\x46\xdf\x8d\xc6\x84\x10\x5a\xaa\xbb\xbd\x3a\xa5\x9d\x9a\x60\xd1\x77\xa3\x6f\x5d\x13\x95\xc5\xdb\xa9\x01\x1e\x7d\xf7\xe0\x81\x6b\xa0\xbe\x86\x3b\xb5\x91\x45\xdf\x8d\x46\xae\x8d\xea\x9a\xef\xd4\x42\x1c\x7d\x37\xfa\xce\xb5\x50\xd9\xa3\x36\x52\xc7\xaf\x9b\xab\x3a\xde\x36\xee\xd4\x65\x11\x79\x43\xae\x6e\xfa\x4e\xf5\x93\xe8\xbb\xd1\xf7\xae\x05\x1f\x48\x76\xaa\x3f\x8f\xe8\x23\xf2\x9b\xd1\xa8\xd7\xa3\x0f\x7f\x3b\x1a\xe9\x56\x8a\xb9\xa4\x66\x5a\xa4\xed\x40\x6f\x3c\x4f\x45\x48\xf1\x78\xe4\x98\xe4\x47\xe4\x81\x6c\x42\x3c\xfc\x76\x34\xda\x6c\xbe\x85\x45\x14\x25\x16\x5b\x25\x31\xfe\xad\xe4\xf1\xe5\x7c\xbb\xe8\xc6\x2f\x96\xee\x56\x8c\xed\x56\x2c\xdb\xad\x58\xbc\x5b\xb1\x7c\xb7\x62\xc5\x4e\xc5\xf6\x92\xdd\x5a\x9b\xef\x54\xac\x9d\x7e\x69\x48\xcb\x2b\xd4\xd7\x97\xa1\xb8\xb6\x56\x30\xf1\x36\xf0\x8d\x2f\x86\x1b\xe1\x73\x2a\x9a\x31\xa1\x3a\x96\x34\x2b\x4b\x54\xa2\xbd\x96\xc9\xb5\x11\x8f\xdb\xa6\x6a\x08\x39\xff\x9d\xe2\xad\xe4\xe3\xad\xcc\xd7\x36\x06\x7a\x47\x71\xd0\xae\x3c\xe1\x6e\x72\x87\x5b\x95\x0d\x75\xd6\x50\x65\x74\xc7\x31\xce\x3f\x87\x30\xa5\x20\x2d\x01\x60\x8e\xaf\x2f\xce\x24\x0b\x17\xe4\xf0\x50\xff\x30\x64\x42\x45\x14\x9a\xb4\x20\x2c\x2b\xc7\x88\xda\xf0\xaf\x2f\xd9\x6e\x74\x07\xf9\xb1\x8d\x78\x97\x10\x62\xdf\x77\xcd\xb3\x3b\x1a\x13\x33\xb6\xc8\x76\x88\x13\xcd\x0d\xbc\xc8\xce\xcf\x29\xc7\x73\xfd\xf3\x1d\xcd\x05\x5e\x92\xfd\x7f\x78\x31\xc6\x4f\xf6\xc3\x49\x74\x99\x2e\x4e\x86\xf1\x9a\x9d\xf4\xd1\xe4\xe7\x3c\x4b\xf7\x99\xa3\xf6\xd7\x6e\xd4\xdd\x6e\x38\xc2\xb1\x63\x08\x29\xea\xf5\xba\x5d\xc3\x35\x2f\xfd\x54\x60\x9e\x60\x67\x5f\x72\x9d\xd4\x05\x47\xf2\x52\x7a\x55\x78\xef\xbc\x38\x53\x60\x10\xfa\x54\xe0\x85\x45\xe0\x06\x63\xaf\xa0\xdf\x90\x12\x59\x1d\x61\xd5\x7e\x28\x08\x45\xa6\x0f\x67\xa2\xa4\x0a\x52\x2d\x19\x19\x49\x02\x13\x61\x5a\xaa\x30\xb6\x23\xcd\x60\x08\x9a\x0b\x96\x9e\xf7\x7a\x73\x1b\xb3\xff\xa7\x58\xee\x6c\xd8\x3c\xb6\xf2\xc6\xbb\x6c\xe1\xbb\x5e\xca\xc3\x6a\x10\xd7\x0d\x84\x7e\x4a\x75\xf2\x9c\x6a\x4c\xfa\xab\xab\xab\x81\xa4\xbd\x07\x05\x4f\x68\x3a\xcf\x16\x74\x71\xd0\x91\xe3\xce\xa9\x20\x3f\xbe\x7b\x36\xf8\x5d\x80\xf5\x19\x8c\x6e\x4a\xac\x0f\x7e\xd4\xe6\x48\x07\x6c\x4f\xb6\x16\xda\x89\x4d\x80\xa9\x9f\x7c\x77\x7a\x11\xbf\xa7\x9a\x08\x09\x39\xc2\x0c\xb2\x94\xe7\x66\xc8\x35\xf1\x53\x3a\x14\x2b\xea\x69\xee\x3d\x33\x1c\x83\x15\xf6\x68\xc8\x51\x89\x86\x73\xb5\xd1\x0d\xd1\x17\x75\x25\x05\x94\x2c\xfd\x93\x1c\x75\x82\x3e\x87\x48\x57\xfd\x00\x1e\x0b\x9e\xf4\x83\x8e\xa9\x12\x78\xd1\xac\x3e\xac\x38\x49\x41\x5a\xcd\x4a\xcc\xe3\xab\xdd\xe6\x6d\xef\xf2\x96\xc9\x97\xd8\x7f\xd1\xc8\xeb\x90\x11\x25\x3c\x27\x74\x78\x41\xc5\x2a\x5b\x6c\x36\x14\x86\xba\xd9\x04\x7f\x78\xfa\x2e\xc0\x09\xb9\x51\x1f\xa2\x58\x05\x34\x8b\x71\xc1\x93\x88\xca\x49\x94\x07\xad\x0e\x8e\x3a\xf4\x97\xda\x7f\x90\xeb\x2d\x62\x11\x83\xcf\x95\xde\x59\x13\xd7\x53\xf6\xd0\x85\x50\x8a\xdd\xb0\xbb\x0e\xb9\x3c\x4f\xeb\x30\x1c\x61\xe6\x0e\x59\x86\x83\x23\xd5\xdc\x40\xb6\x17\x20\x84\xfc\x90\x59\xc4\xe9\x38\xd2\x89\x27\x0d\x8a\x8a\x30\x45\xa8\x44\x61\x8c\xd5\x71\x81\x41\x90\x3f\x1e\xbf\x7e\x35\x54\xc7\x8c\x2d\xaf\xf5\x5b\x84\xf0\x65\x9f\x8c\xb5\xe7\x77\x38\xc2\xdc\x3f\xe3\x78\xb9\x1d\x7c\x38\xba\x99\x0f\x17\x59\xea\x89\x34\x99\x42\xc8\xda\x67\x76\xb8\x8a\xd3\x45\x42\xdf\xea\xbd\x0e\x0d\x9f\x8e\xc3\x11\x4e\x5d\x2f\xf9\xf0\x9c\x8a\xc3\x24\x31\xe5\x7e\x50\xeb\x04\x8e\x16\x38\x41\x07\x20\x88\xf2\xb8\x06\x14\x16\x68\xa2\x4e\x1e\x2f\x52\x25\xd8\x54\xd9\xf6\xf1\x8d\x96\x0b\x44\x0c\x0b\xfa\x01\x62\x32\x16\x79\x14\xe3\x9f\x7f\xf9\xeb\x0f\x6f\xa3\x1c\x1b\xb0\x8b\x8a\x12\x45\x6d\x4d\xd0\x7b\x35\x51\xa2\xa1\xe4\x1f\xfd\x45\x61\x38\x46\x37\xb6\xe5\xe7\xe9\x13\x7a\x56\x9c\xfb\xb8\x24\x80\x3b\x97\x2b\xb6\x90\x40\xaa\x1d\x77\x82\xde\xd1\x0f\xa2\x34\x81\x88\xb4\x94\x0c\xe6\x6c\xd7\xb0\x5a\x16\x6d\x36\x31\x2e\x8c\x94\xad\x20\xb1\x4f\x22\x43\xc5\x49\x1c\x05\x42\xf1\x03\xd0\x1b\xc4\x31\x10\x15\x36\x2e\x0a\x80\x81\xf6\x3f\x3b\x6e\x20\x6a\xec\x22\x6d\xdf\x45\xba\x7d\x17\x73\x9c\x20\x7c\xc7\x86\xe5\xfe\x6a\x33\xbd\xda\x14\xc3\x32\xbd\x5b\xf1\xec\x2a\x8d\xe2\xfa\xda\xc7\xc9\x55\x7c\x9d\xfb\x8b\x7b\x39\x20\xe3\x16\x04\x44\x1d\x02\x82\xb3\x6b\x91\xc6\x12\x90\xce\x1c\x2f\x4b\xbc\xce\x1a\x98\xd6\xc7\x2c\x1a\x17\x87\x5a\xe0\x74\x1a\x2f\x16\xf2\x44\xbe\xcb\x5e\x2b\x5c\xf4\x0c\x14\x8f\xc1\x9b\xd7\xc7\xef\x02\x84\x4a\xbc\x2e\x3e\x47\x6b\x3f\xea\xc6\x24\xea\xfd\x0c\xcd\x1d\xbe\x3b\xfa\x01\x1a\x5c\xd0\xe4\xd3\x9b\x7b\xf2\xf4\xc5\xd3\x77\x4f\x4d\x7b\xb4\x2d\xfa\xa9\x6a\x6f\x41\x93\x76\x65\x65\x59\xa5\x8f\x55\xda\xd1\xa6\x58\x71\xb3\x19\x8c\x25\xa6\xb4\x91\x20\x20\x05\x80\xd3\xc3\x7b\x4c\x59\x18\x3c\x17\x9d\x9c\xd2\x8b\xbc\x73\x9d\x15\x1d\xc1\x99\x12\x9c\x49\x0a\xf1\x9f\x12\x42\xff\x29\x7f\xc9\x4b\xa1\x13\x77\xf4\x3c\xbb\x9d\x1f\x73\xda\x11\x2b\x59\x42\xbf\xfa\x67\x47\xe1\x7d\x38\x4e\x34\x5e\x0c\x83\xda\x3d\x03\x46\x0d\xdb\x26\xd5\xb6\x60\xad\xcb\x2d\xc9\x93\xcd\xe6\xa6\x44\x2a\x46\xa4\xc0\xb4\xc4\xa7\xe7\x54\x3c\x2b\x92\x44\x9f\x9f\x1f\xe2\x7c\xd5\x92\x90\x48\x4d\xf9\x9c\x0a\xd5\x7b\x60\x28\x77\x84\x8d\x16\xf4\x82\xf2\x73\x1a\xde\x94\xde\x15\xe9\x7f\xe0\x98\xa2\x12\xeb\x8b\xb4\xa5\x83\x8f\x14\xee\x3a\xc9\xbd\x68\x8e\x03\x0b\x79\xf8\x34\x99\x72\x56\xb0\x64\xf1\xe3\xdb\x17\x8a\x78\x11\x7a\x05\x2a\xd7\xaf\xba\x3b\xdf\xa9\x0f\xe6\x71\xb3\x51\xd9\x9e\x70\xe5\xa6\x25\x46\x2f\x0c\x8e\x41\x61\xe5\x9b\xb9\x2c\xdc\x6a\x79\x1f\xc1\xb5\xd7\xbf\xb2\xf5\xfe\xae\xb2\x22\x59\x1c\xd3\x74\x61\xf0\x98\x40\x13\x7b\x85\xeb\x29\x34\x77\x2a\xb4\x45\x64\xb3\xb6\xb4\x79\x92\x7b\x8d\x45\x89\xed\xe4\x3f\xeb\xc2\xb3\xa5\xa4\x1e\x32\xa7\xe6\x92\x17\xb8\x75\x6b\xd3\x2a\xf2\xe9\x0c\x88\x92\x55\x96\x0b\xa3\x4c\xf7\xa0\x28\xcb\x45\x80\xf6\xc0\xfe\x89\x5c\x48\x1a\x02\x6b\x4f\xa2\xd4\x18\x5f\x88\x61\x1a\x5f\x50\x70\x3e\x68\xd6\xb7\x9f\x3c\xb2\xae\xd7\x0b\x19\xb9\x08\x99\x6d\x8a\x21\x84\xfd\x60\x3a\xff\x08\xf7\xd1\x24\xe8\x33\xa4\xe2\x9b\x52\x34\xa1\x51\x58\xa3\xf3\xb9\xcd\x81\xc2\xb5\x22\x73\x1f\xf0\x4e\xf5\x6a\x8a\xea\x2c\x62\x15\x0d\x59\xf9\x90\x56\x2e\x4e\x78\x14\x6a\x82\xd2\x5a\xfd\xd5\x2e\x5b\x28\xa7\x41\x42\xd1\xf7\x47\x4a\x5c\xae\x90\x8d\xe9\x46\x9e\xf9\xe6\x67\x7f\x38\x95\x0c\x8b\x46\x29\xb6\x0c\xf5\xb8\x1a\x02\x50\x55\x03\xa1\x8c\xa8\xfb\xb8\x59\x20\x75\x91\x1d\x75\x23\x55\xf9\x67\xbd\x85\xda\xd7\x66\x75\x5f\xf6\x59\xaf\x5c\xf9\xd6\xac\x5a\x93\x7a\xd6\x6b\xd7\x3f\x37\x1b\xa8\x88\x3c\xeb\xd5\xab\x1f\x9b\x95\x1d\xad\x52\xaf\xe9\x7d\x69\x56\xab\xc8\x2c\xeb\x35\xab\x1f\x9b\x95\x3d\x71\x65\xbd\xaa\xff\x29\xc5\x54\x55\xd5\xc1\xa9\xa0\xf6\x39\x4d\x29\x8f\x05\x7d\x42\x05\xe8\x1e\x5e\xd2\x3c\x8f\xcf\xa9\x05\x92\x3d\x3b\x7c\x43\xf0\x86\x29\x96\x84\xbc\x31\x58\xcb\x80\xad\x11\xf3\xd5\x0f\x59\x2e\xf2\x2d\xf7\x78\x4d\x88\xa0\x0e\xdb\x44\x98\x33\x16\x35\x4c\x2e\xc4\x44\x48\x56\x3d\x0a\x93\xe1\x55\xcc\xd3\x30\x10\xbc\xc8\x05\x5d\x40\x27\x9d\x2c\x4d\xae\x3b\xea\xb4\xe5\x1d\x55\x35\xef\x64\xbc\xc3\xe9\x39\xfd\x40\xf3\x61\x80\x05\x0e\x58\xde\x49\x95\xc9\xdb\x30\x40\xca\x2a\xba\x89\x48\x5b\x50\x1e\x20\x0f\xc9\x48\x16\x3c\x81\x10\xb5\x12\x0f\xed\x71\x08\xdb\x1c\xe0\x94\xa4\xdb\x30\x95\xfc\xae\xf1\x52\xbd\x80\x3f\xfa\xc0\xda\x0d\x1d\x82\x0f\x2c\x60\x49\x63\x19\x80\x42\x8e\xac\xd6\xd8\xd8\x23\xd6\xf1\x28\x47\x9b\x4d\xd8\xed\xb2\xad\x96\x44\x62\xe8\x6d\x09\xb0\x5d\xa5\xac\x22\x9b\xf1\x4d\x09\x74\x2a\x53\x49\xf7\xb4\x02\x41\x0b\x06\xf3\x51\x86\x1a\xbb\xc7\x1f\x8a\x3a\x7f\xb8\xd9\x04\x70\x03\x76\x2a\xaf\x9d\x4d\x88\x0a\xd6\xbc\x12\x17\x89\x24\xf7\xe3\xaa\xb5\x53\xaf\x67\xbc\x40\x1f\x3d\xf8\xcd\x68\x12\x4c\x5f\x6b\xcd\xe3\x0b\x78\x79\xdd\xf9\xe1\xdd\xcb\x17\xb3\x20\xaa\xf1\x91\x1c\xe1\x69\x00\xeb\xdb\x39\xfc\xe3\xe1\x5f\x3b\x46\x29\x16\xf4\xc3\xd4\x11\xde\x29\x10\xde\xc0\xfa\xcb\xb1\xd0\x45\x27\x96\xe4\x38\x0e\xde\x28\x0e\xa0\x13\x06\xfd\xb8\x1f\xa0\x00\x67\x33\x8d\xe3\x4f\xd2\x00\x95\xb8\x05\x3d\xb6\x08\xd5\x34\x93\xd8\x28\x2a\xef\x40\xd9\x46\x15\xff\x6d\x6f\xa0\x5a\xce\xd4\xf6\x11\xe0\xf6\xba\x7e\x29\x53\xb3\x86\xfc\xb6\x57\xae\x15\x34\xf5\x2b\xd8\x6f\x7b\xed\x4a\x31\x53\xd7\xe3\xe2\xb6\x56\x74\x65\x4c\xad\x0a\xee\xdb\x5e\xb1\x52\xcc\xd4\xf5\x90\xdf\xf6\x9a\x5e\x21\x5b\x4f\x5d\xcc\xb7\xd4\x51\x05\x54\xf9\x26\x5b\x5c\xa9\x28\xf8\xb5\x39\x96\x00\xa9\xc6\xd6\xa4\x54\x12\x2c\xcf\x84\xa7\x2c\x71\xfb\xcd\x1f\xd5\xed\x90\x8c\x59\x17\x08\xec\xdb\xb4\x11\xbe\xc0\x3e\x2f\xd6\x6b\xc9\x50\x7f\x71\x3b\xb4\x36\xf1\xa3\x1c\x81\x5c\x61\x36\xa7\x5a\xc2\xc1\x52\x6d\xd1\x0b\x2f\xc3\x00\xb4\x02\x08\x4b\x9c\xa7\x4b\xcc\xb3\x8b\x75\x21\xe8\x62\x08\xe9\x0f\x55\x09\xdd\xc6\x50\x61\x5a\x6c\x49\xbb\x1d\xaa\x78\x64\xa0\x15\x67\xee\xd0\x91\x65\x61\x80\x6d\x6f\xbf\x26\x86\xf2\x9b\xe6\xaa\xee\x30\x80\x55\x77\xad\xa8\x74\x12\x20\x9f\xb9\x45\x77\xed\x66\x42\xcf\xe3\xf9\xf5\xbe\x85\x91\x01\x88\x23\xac\xbe\x64\xab\x46\x66\xab\x8e\xe3\xb3\x6a\xa3\x34\x45\xff\x3f\x46\x73\xb1\x57\xb5\xb6\xd1\x62\xd2\x36\x61\x27\xad\x08\x3b\xb9\x64\x11\xca\xdb\x4f\xc5\xdd\xc7\x1c\x62\xcd\x1b\xa6\x85\x54\xcc\x8c\x19\x9a\xdc\x94\x11\xc3\xe6\xa5\xb2\xc7\x64\x43\xa5\x78\x43\x13\xf3\x34\xbc\x88\xd7\x15\x51\x3a\x5b\x86\xf2\xbf\x91\x0d\x6f\x65\xcc\xb9\x31\x60\x0a\x82\xbe\x30\xe2\x35\xee\xa5\x97\x11\x45\x1e\x05\xf2\xb6\x14\x4c\x24\x34\x12\xa5\x15\x5f\xda\xd1\xc8\x61\xd4\xfb\xb7\xd1\xd9\x05\x9a\xb4\x35\x33\x84\xff\x9b\x0d\x18\xc6\x9c\xc5\xf3\xf7\x34\x5d\x68\xd1\xfc\x82\x2e\x3a\x57\x4c\xac\x3a\x71\x6a\x4c\x58\x16\x40\xab\x44\xa2\x8c\x5a\xda\x92\x23\x97\xa3\xaa\x5a\x0d\x32\x34\x99\xb6\x14\x66\xe5\x2c\x6a\x7d\xff\x51\x03\x62\xe5\x6c\xeb\x41\xe6\xf1\xd5\xd6\x53\xfa\x55\x2c\xf3\x6a\x6e\x0f\x54\xd3\xf6\xfa\xb3\xb3\x12\xe6\xf1\x95\xc6\x67\xd4\x97\x25\x6d\x99\xd5\x1d\x1a\xe1\x7f\xaf\x99\xa9\x71\xec\x3e\x3b\x7d\x51\x19\xf5\xf5\xbf\x8d\x79\xa5\xb9\xa8\x76\xb4\xaf\xf4\x55\xf0\x3b\xdf\x13\x5b\x4c\xa1\x3f\xdf\x54\xec\xa8\x27\x29\x5c\xb3\x6a\x6a\xbf\x82\x7b\xb5\x31\x0f\x48\xe2\x3e\xc8\x93\x4c\xe4\xfb\xf2\xea\xce\x52\xb9\x6f\xfb\xee\x75\xcb\xcc\xec\x0c\xfd\xca\x82\x5e\xac\x93\x58\xd0\xad\xcd\xe8\x3a\x6b\x9e\xad\x07\x90\xd9\xba\xb5\x19\xbd\xe7\xf0\xa3\xb5\x80\xd7\x3a\x64\x30\x56\xad\xb7\xdb\x0e\x98\x88\xd1\x76\x45\x86\x47\xa6\x36\xc4\x9a\x34\x6f\x0d\xcd\x82\x0b\xef\x65\x75\xe9\x71\xe2\x7d\x62\xf9\x1b\x4e\x73\xd9\xca\xdc\x7b\x9b\xa5\x78\x49\x62\x03\x3b\x37\x49\x7c\x9d\x15\x22\xb2\xba\x36\x2c\xe2\xf3\x57\x90\xe3\x3b\xc0\x72\x11\x24\xdb\x96\x47\x37\x2c\x7f\x17\xf3\x73\x2a\x8e\x93\x4c\xfc\x4d\x4e\x88\xa5\xe7\x51\x3a\x7c\x63\x4a\x0c\xcf\xb2\x2c\xc1\xa7\x90\x1d\xdc\x7f\xad\xc8\x0d\x08\x13\x09\x16\xf8\x0b\x7c\x0a\xeb\x21\xdb\xa9\x14\x84\xed\x57\xe0\x54\xe2\xd3\x05\x5b\x3c\x87\x78\xe0\xda\xae\x3b\x9a\x87\x41\xfd\x5d\x80\x1b\x07\x5f\x59\xe6\x6a\x49\x1a\x8d\x39\xcd\xc5\xeb\xa5\x6c\x3f\x74\xac\x2a\xb8\x47\x88\xe1\xa9\x1c\x92\x52\xb3\xd3\x85\x92\xa6\xc0\xe8\xbd\xf4\xc4\xa7\xf1\x5c\xc0\xa9\x90\x83\xf5\x8b\x60\xb8\xff\x95\xbd\xaf\xa4\xeb\xe4\xde\x0a\xba\xb0\xbb\x16\xc8\x1b\xd5\xd3\x12\x57\x87\x92\x55\x86\xc2\xd1\x8d\x6b\xc8\xad\x4d\x80\xb9\xb1\x41\xe7\xaa\x57\x42\x88\x1b\xc2\x9e\xab\xd3\xb6\x33\x01\x4e\xc1\xab\x33\x09\xf9\xf0\x14\xc0\xf2\x4d\xcc\xe3\x8b\x1c\x18\x6b\xff\xc5\x70\x99\xf1\xa7\xb1\xaf\x4d\x07\x26\xa3\x90\x47\x78\x1d\xf4\x39\xce\x87\xdc\xc4\xf7\xf4\x46\x57\x6d\x23\xe8\x73\x84\x4a\x40\xa2\xa7\x57\x2c\x49\x9e\xd0\x5c\xf0\xec\xda\xdb\xba\xe6\xdb\x2d\x9b\xa7\xe8\xe4\xc6\x7a\xa2\x3d\xf0\x53\x38\x5d\xd0\x6d\x5b\x02\xe6\x4b\xcb\x21\xa7\xd9\x9a\xa6\x47\x49\x9c\xe7\xe1\xcd\x3a\xcb\x99\xec\x21\x4e\xd4\x40\xa3\x69\x00\x85\x83\x59\xf5\xfa\xd8\x15\xdb\x78\x07\xf9\x53\xb0\x8d\xdf\xcc\x47\x60\x9b\x36\x1c\x62\xad\x08\x5a\x30\x48\xdc\x86\x41\x72\x92\xdd\x17\x03\xf8\x5b\x5e\x39\xb9\xb1\x24\xfb\x76\x39\xfa\x25\x3e\x5d\xc7\x9c\xa6\xe2\x2f\x8c\x5e\x45\x71\x8b\x5d\xcb\xad\x07\xb7\x44\x98\xe5\x87\x72\xff\x69\x14\x87\x81\xd7\xd6\xf0\x14\x96\x66\x38\x9d\x05\x58\x6f\x31\xde\xd2\x38\xc0\x57\xb3\x6a\x80\x86\x2c\x9d\x27\xc5\x82\xe6\xa1\x57\x0e\x9a\x42\x0a\xb8\xf2\x1d\x81\x0b\x07\xfe\x4a\xd5\x60\x2d\xbf\x15\xd6\xb4\x99\x9a\xbe\x8f\xd6\xaa\x81\x16\x50\xab\x5f\xc9\x74\xe8\xf5\x48\x98\x41\x3d\x76\xdb\x0f\x95\xf9\x87\xfe\xf5\x03\xf4\xb2\x57\x75\x0a\x30\xf4\x7f\x68\xac\x94\x2a\x8c\x4c\x3a\x54\x43\x53\x19\x73\xb6\x4f\x60\xab\x25\xe4\x8e\xd0\x2c\xa7\xd2\xa0\x0f\x6e\xed\xb1\x7a\x11\xdf\xbd\x54\xf5\xa5\x01\xe6\xac\xb2\x3c\xe6\x8c\xf8\xee\xa9\x96\x7b\x53\xd0\x12\xa5\x6d\xb0\xeb\x96\x1b\x02\x5d\x54\x6e\x8f\xaa\x58\xc8\x01\x98\x01\xbe\x78\xb1\x50\x77\x1f\x88\x95\x6a\x78\xee\xae\xca\x9c\x5e\x64\x97\xd4\xaf\xef\xdf\x6d\x6d\xdc\x73\x4b\x23\x16\xfc\x69\xab\x30\xe2\x5e\x34\xd4\x4e\xd2\x26\x3a\x74\x34\x22\xe9\x8e\x1a\x44\xee\x0f\xef\x5e\xbe\x78\x1c\xf3\x7c\x68\xba\x0b\x6f\xd8\x22\x0a\xf8\x5f\xc6\xdf\xef\x9f\x9f\x5d\x06\x18\x7a\x8c\xbe\xb9\xd1\xfc\x7b\x1e\x44\xd3\xa0\x67\xcc\x5f\x67\x90\x8e\x4c\xc0\x5d\x23\xbf\x4c\xbf\xc3\x01\x5b\x06\x78\x3a\x7d\x30\xc2\xd3\xf6\x4b\x73\x36\x9b\x29\xf7\x8e\x9b\x5a\xdd\x11\x0e\x3a\x9d\x60\x86\xa7\xe3\x31\x1e\x9b\x26\xd6\xa3\x60\x36\xc3\xfa\x79\xec\x3d\x3f\xf0\x9e\xbf\xf5\x9e\xbf\xf3\x9e\x7f\xe3\x3d\xff\xd6\x7b\xfe\x4f\xef\xf9\x77\xde\xf3\xf7\x72\x70\x33\x2c\x47\x72\x72\x92\xca\x0f\x01\xa0\x07\x2a\x28\x97\x43\x9c\x95\x30\x72\xf9\x7e\x15\xe7\x4f\x2f\xe3\x24\x88\x96\x71\x92\xd3\xf2\x1b\x7c\x41\x45\x1c\xdd\xa8\x6c\x86\x0a\xaf\xdf\x7b\x4b\x87\xab\xb3\x3c\xf8\x28\xb0\x68\xbf\x33\x3f\x3f\x58\xfc\xfd\xdb\x17\x3f\xfc\x55\x88\x3f\x6f\x01\x0b\x96\xea\x98\x2c\xf7\x80\x10\x75\xd5\xec\x06\x15\x0f\x6e\xdf\x9b\x5b\x01\xea\xd6\xaa\x9f\x77\x47\xdd\x6e\x6c\xdd\xd1\xf9\x2a\x4e\xcf\x69\x4e\xc5\x00\x54\x08\x60\x30\xea\x6e\x26\xfb\xb5\x0d\xc9\x7b\x1f\x6f\x6b\xac\xf9\xd5\x71\x9d\x5a\xc6\x76\x4b\x89\xdb\xcc\xb0\x3f\x9d\x39\xb5\x1d\x12\x93\x49\xa4\x89\xe8\x1b\xa1\x01\xaa\xde\xd1\xbe\xa5\x03\x5b\x86\x35\x41\x67\x87\xa5\x1d\x8b\xa9\x51\x6b\x8b\x9e\x79\x44\x77\x84\x19\xe9\x8e\xb1\xd5\xd4\x0b\x7e\x5d\x09\x09\x4e\xa7\xb5\xf6\x67\x21\x3a\xe8\x86\x29\x09\x63\x92\x9b\xac\xdb\x60\x1a\xa9\xf2\x98\xab\x10\xa5\x2a\x5a\x04\xc2\x5d\xb1\xd9\x18\x45\x1b\x44\x14\x39\x90\x5d\xa2\x03\xad\x9f\xa0\xe8\x86\xc9\x21\x64\x84\x96\x4b\x96\xc6\x49\x72\x0d\x2a\x8d\x6e\xda\xeb\x49\x6a\x48\x8e\xdd\x3d\x85\xc8\x16\x62\xcb\x90\x69\xab\xa8\xcc\xc6\xa3\xe1\xa5\xb2\x92\x6d\x8d\x5a\xa2\x15\x56\x9d\x58\x48\xb8\x15\x1d\x91\x75\x16\x54\x09\x70\x0b\x4e\x3b\x69\x96\x0e\x60\x86\x67\x89\xf3\xbd\x09\x50\x59\x82\x16\x55\x23\x06\x00\x51\x4d\xa8\xec\x79\x0e\x80\xd4\xf0\xd7\x59\x48\xf1\x03\x08\x05\x3f\x1d\xa9\xa4\x22\xe3\xd9\x9e\x55\xee\x78\x16\x84\x05\x9a\x54\xb5\x9b\x39\x9a\xe4\x35\xfb\x64\x77\x99\x56\xa4\x4d\x21\xc5\x55\xcb\xd5\x02\xe1\x02\x95\x28\xaa\x96\xca\xdb\x4a\x45\x9f\xd0\x69\x6b\x1f\x85\x4f\xc3\xc5\x90\x37\x6d\xa7\xd3\xbe\x95\x8c\x6b\x2f\xae\xce\xe6\x15\x8f\xd7\x3b\x15\x54\xca\xfb\xc1\x45\x91\x08\xb6\x4e\xe8\xae\xa8\x61\xfb\xc1\xff\x82\x92\xc4\x86\x0d\xd4\xa8\xd5\x06\x6a\xe4\xdb\x40\x8d\x7c\xe3\x33\xdb\x62\x6c\x33\xda\x40\xa0\xa6\x82\xc4\xc3\x94\x5e\xfd\x45\x8e\x02\x27\x24\x1e\x66\xc9\x42\xfd\x98\x43\x6a\x3c\x98\x3e\x08\x6a\xb4\x49\x18\x5e\x13\xaa\x53\xff\xb0\x70\x6d\x50\x47\x17\x8c\x77\x32\xf7\xa2\x0a\x56\x6b\x0c\xe1\x6f\x72\x6c\xba\x8a\x0a\x6c\x3a\x8a\x12\xac\xbb\x89\xe6\x58\x77\x12\x2d\xb5\x32\x67\x45\xd6\x12\x7e\x70\x82\xe7\x78\x89\x5a\x0f\xc9\x0a\x4d\x56\x0a\x3c\x9d\xfc\x31\x9a\xae\x66\x65\x59\x31\x84\xd0\x86\x70\x38\x23\x15\x35\xc1\x8e\x90\xe8\x3c\x7d\x2e\x94\x5d\x42\x1b\x91\x3f\x90\xdf\x55\x68\xa1\x9d\x00\xd0\x35\xb5\x0b\x58\x33\xb1\x1a\xe8\xf9\xb5\x31\xdf\xff\x7e\xc0\xa7\x63\x5d\xfc\x9c\x0f\x69\x2a\x38\xa3\x39\x16\xa4\xdb\x62\xcc\xba\xc5\x9a\x0f\x6d\x36\xfe\x4f\x9c\xb8\x78\x0c\x60\x28\xd6\xeb\x65\x61\x61\xaf\xae\x42\x9b\xeb\xb3\x30\xbe\x3d\xc0\x0d\x21\x92\xf9\xdd\xcb\xc2\xb9\xbc\x89\x12\x52\x05\x26\x3d\x66\xb5\x40\xe1\x1c\x59\x59\x44\x82\xac\x6e\xaa\x20\x09\x4e\xaa\xc0\x75\xe8\x81\x95\x91\x75\xc6\xc4\x0b\xba\x53\x91\x9f\x2a\x82\xe9\x0d\xa7\x4b\xf6\xa1\x1f\xec\xfb\x7b\xed\x40\xa2\x20\x92\xd8\xbb\x17\x78\xde\x8a\xd0\x6e\x41\xa2\x77\xe1\xb6\x2f\x12\xcd\xc8\xca\x8a\x18\xe0\xa1\x9c\x30\x87\x87\x0a\xc2\x1c\x1e\x4a\x08\xb3\x78\x68\x2e\x9f\x35\x1e\x5a\x12\x0e\x01\xf2\xd7\xad\xdb\x1c\x66\x58\xe3\x0d\x54\x22\x25\xe0\x0c\x97\x68\x18\xa7\xd7\x1e\x9a\x40\x56\x1d\xb8\x44\x0a\x85\xc4\x76\x97\xe3\x70\xa9\x03\xc0\xd8\x28\x4a\x38\x25\x5e\x78\xaf\x38\x49\xb0\x67\x65\x65\x21\x40\x45\xa9\xf2\x63\x7f\x7c\xe2\x39\x9a\xce\xb0\x90\x73\x95\x0c\x36\x10\x6c\xcd\xf9\x06\x67\x59\x96\xd0\x38\x0d\x08\x91\xd4\x05\xea\xf5\xa8\x0b\xd4\x04\x01\xbf\x42\x81\x03\xd5\x6b\x80\x36\x1b\xd1\x54\x34\xed\x86\xa8\x9a\x50\xa4\x4b\x67\xdc\x2b\xf6\x25\x94\xfa\x5a\xe3\x04\xb2\x3c\xc8\xb5\xb1\x88\xf3\x15\xe5\xec\x5f\x14\x43\x16\xe4\x78\xcd\x04\xe8\xb3\xed\x46\xc4\x79\xce\xce\xad\xa5\x1c\x28\x99\xb1\x24\xbe\x6e\x4a\x4f\x21\xeb\x49\x57\xb2\x30\xc6\x37\x67\x49\x9c\xbe\x8f\xdc\x59\x5d\xeb\xd3\xac\xff\x7b\x5f\xa0\x24\x3e\xa7\xc2\x04\x5a\x63\x59\x5a\x31\x6b\xff\xc4\x6d\x0f\xac\x91\x1a\x0b\xe5\x56\xeb\x70\x48\xfb\xd3\xd3\xc1\x6c\xff\x1c\x69\x8b\xb0\x4e\x80\x5a\xe5\x24\xb7\x6d\xa7\x7b\x33\x68\x86\x3c\xd9\xe5\x2e\xaa\xdc\x83\x5f\x01\x57\x58\x9a\xa5\xaa\x4b\x47\x90\x84\xa8\xb1\x03\x3a\x8c\x6c\x3c\xd4\x43\x34\xa7\xdc\xbe\xd8\x53\x39\x0a\x63\x38\xaa\x40\xe7\xc0\x00\x1c\x95\xf3\x41\x52\x39\xd6\xb6\x62\x39\xb9\x29\xa3\xa5\x6c\x72\x6d\x9b\xbc\xd1\xc4\x89\x6d\xb2\x12\x25\x91\x10\x92\x86\x2b\x6d\xe5\xb0\x20\xab\x90\x02\x01\xb3\x76\xe6\x0d\x61\x70\x54\xe4\x22\xbb\xe8\xe8\xfa\x1d\xe7\xe1\x59\xe4\xa2\x63\x46\xdc\xb1\x9e\xc0\xd6\x38\x95\xa4\xe1\x02\x21\xbc\x30\xec\x0c\xa8\x4e\x2e\x62\x61\x8c\x66\x57\x38\x0b\x6f\x16\x6e\x41\xa2\xa2\xc4\x6b\x17\xdb\xb1\x5e\x9c\x85\xe0\x8b\xd4\x5e\xa7\x72\xf4\xe2\x3c\xa7\x5c\x58\x1c\xa8\xd0\x5c\x2b\x06\x6c\x39\x78\xf7\x82\xcf\x2a\xa9\xf3\xf5\x62\x97\x7d\x32\xb1\xed\x47\xec\xf9\x68\x2f\x91\x50\x48\x0c\xc5\x11\xa6\x36\x00\x99\xb7\x90\x66\x55\xd5\x1a\xdf\x6f\x59\x81\x31\xfa\x9a\x91\xe0\xe0\xd6\xf5\x34\x99\xf2\x64\xda\xe7\x29\x9d\xd5\x26\x78\x68\x5d\x75\xee\x47\x9c\x7b\x57\x10\x50\xdf\x12\xbe\xe5\x31\xbc\x27\x56\x6b\x41\x8b\x8d\x3b\xee\x0b\x04\x64\xfb\x0a\x3c\x9f\x8e\x0c\xe0\x61\x51\x3e\xd4\x73\xa2\x28\x0c\xaa\x8b\xc6\x30\xc5\x31\x4e\x6d\x24\x5a\x89\x02\x73\xb0\xdc\xf6\x50\x6f\x8a\x73\x48\xbb\x72\xdf\xfd\xa1\x1f\xe6\x49\x91\xff\xaf\xde\x1c\x15\xfe\x1d\x7c\x90\x59\xaa\x83\xc1\xa3\xb6\x2d\x33\x04\x72\x7d\xbb\xbc\x35\x94\x7b\x05\x32\xe1\xea\x76\x65\xcd\xed\xca\x3e\x6a\xbb\xd4\x5d\xf1\xbf\x76\xaf\x30\x23\xdd\xb4\x1e\x3b\xb5\x65\xab\x32\x15\x12\x9a\x39\x61\x88\x12\xf4\xd5\x77\xce\x2c\x67\xd6\xbe\x6d\x71\x73\xdb\x62\x54\x9a\x38\x88\x15\x31\xc6\xfd\xb7\x12\xf4\x6a\xff\x77\xf2\x3e\xe9\xe4\x79\x6b\xf8\xa5\x4f\xde\x3d\x45\x9f\x5e\x4d\xc5\xa9\xcc\xe9\xee\x35\x34\x5f\xb8\x73\xf9\xb4\xa8\x18\x9a\xec\x8c\x45\x3e\x02\x54\x3f\xe2\x5e\xf9\x28\x52\xe1\x8b\x05\xd3\xd9\x1e\x20\xc9\xc0\xd5\x1b\xbb\x5f\xf7\x8e\x94\x74\x77\xe3\x2f\xf4\xd6\xee\xd4\x34\xbf\x57\xd3\xaf\x34\x14\xec\xd4\x74\x7a\xaf\xa6\x9f\x69\x80\xd9\xa9\x69\x76\xaf\xa6\x9f\x3b\xd8\xda\xa9\xf5\xec\x5e\xad\x3f\xfd\x70\xbf\xd6\xe3\x7b\xb5\x7e\x54\xa1\xd3\x76\xea\x20\xaf\xc4\xd5\xba\x2f\x12\x32\x88\xe1\x73\x5d\x18\xf7\x60\xfa\xee\xbe\x62\xfe\x1d\x45\xde\x8e\xf6\xa6\xf5\xc0\x31\xf8\xa6\xc8\xe9\x63\x2a\xae\x28\x4d\x8d\x6f\x23\x8c\xc2\xf6\xcd\x2b\x17\x4f\xea\x5f\x3c\x66\x23\xec\xad\xc3\x6f\xbf\x75\xf8\x47\xde\x3a\x06\xb3\xff\xdf\x86\xef\xbc\xe1\x07\x61\xcb\x56\xc7\x49\x92\x5d\x29\x59\xa5\x3c\x9b\xf0\xf3\x55\x96\x52\x95\x9f\x75\x08\xbf\x1f\x27\x71\xfa\x1e\x88\x11\xfb\x99\x74\x47\x4d\x7a\xe4\x16\xb0\x30\xdb\xf5\xa5\xc1\xc2\x91\x14\xff\x3d\x49\x47\x8a\x6e\x3c\x09\xb9\x71\xaf\x82\x68\x0a\x37\x66\x6e\x91\x27\x31\xdf\x85\x16\x74\x6b\xd2\x24\x05\x9b\x9d\x65\x9b\x4d\xc3\xbf\x3c\x9b\x64\x91\x69\x07\xdc\xb9\x32\x10\xaa\x4d\xd4\x3f\x12\x80\x80\x39\x88\xf4\x7f\xfb\xbd\xd7\x0b\x4d\x09\x53\x17\xe1\x26\xd1\x09\x1b\xbd\xb7\x65\xa3\x9d\x9f\x85\x7a\xf5\xa5\xd2\x32\x34\xf7\xa2\x43\x43\x81\x6e\xc2\x86\xed\xca\x67\x4c\xda\x83\x6c\xd6\x1e\x30\x2f\x84\xe1\x90\xdb\x34\x1e\x6e\x35\x28\xff\x52\x29\x3d\xb6\x2c\x85\x04\xf7\xff\x82\xc5\xb0\x3f\xf4\xf1\x24\x7c\xa7\xe5\xe1\x34\x89\xaf\x77\x54\x25\xaa\xb2\x5f\x23\xbc\xfb\x1b\x9e\x7d\xb8\xb6\x56\xe4\xa7\xa7\xd0\xf3\xe9\x69\x24\x86\x6f\x9f\xbe\x38\xfc\x1b\xb6\x83\x8b\xe0\x94\x42\x1e\x9e\xc0\x5a\x1a\xc0\x3b\x96\x32\xd1\x54\xdc\xc8\x45\xda\xa3\xd5\xd0\x46\xbe\xb7\x16\xa6\xc3\x53\xd5\xf8\xe2\x4f\xf4\x3a\x27\x37\x65\x89\x8b\xf4\x7d\x9a\xb9\x24\x3c\x5b\x9c\x76\xb5\xef\x87\x1d\x99\x1f\xba\x49\xed\xed\x5b\x39\x89\xce\x0a\x62\x8a\x77\x6c\x39\x3f\xea\x92\xab\x3d\x3c\x85\x35\x82\x20\x54\xc3\xf7\xf4\xba\x1f\x0c\x83\x3e\x45\x25\xce\xa9\xf8\x71\xeb\x78\xaa\x11\x04\x41\x43\x5a\x99\xce\x94\xce\x40\x05\x8d\xbb\xfc\x93\x06\xca\x6b\x03\x05\x04\x7a\x98\x2e\x8e\xa9\x08\xb9\x1b\x2e\x16\x08\xf3\x61\x9a\x09\xb6\xbc\x36\xa3\x3d\x82\x8a\x90\x54\xa2\xc4\x3c\x4b\x92\xb3\x78\xfe\xfe\xfe\xfb\xa4\x85\xcc\xdd\x11\xe6\xa4\x3b\xc6\x69\x9b\x11\x1b\xc3\x19\xa9\x08\x7a\x2a\x6b\x81\xda\xcd\xdb\x04\x09\x19\xc9\xaa\xe6\x6d\x07\xb2\x23\x63\xe9\x65\xf2\x21\xd1\xf6\x89\xc5\xa8\x74\x26\x6e\x5c\x0e\x30\xad\x9b\xb8\x89\x5e\x2f\xb3\x26\x6e\x59\xab\x89\x1b\x37\x9b\x52\x96\x2d\x00\xb9\x50\xee\x2e\x1f\x05\xdd\xce\x0a\x51\x85\x02\x34\xba\x77\x65\x9a\x80\x59\xfe\xf4\x97\x22\x4e\x76\x08\xc6\xa5\xeb\x55\x63\x86\x11\x42\xe8\x66\x03\x31\x56\x6e\xe5\x4e\x3e\xd9\xe8\xd3\x21\xa5\x9d\x0a\x7d\x49\x03\x2f\xb7\xa2\x99\x36\x20\xf9\x3f\xbb\xce\x7f\x6f\xbb\x4e\x67\xc8\x91\xb9\x28\xa9\x4c\x59\x70\xc6\x24\x9b\x8e\x66\x38\x27\xd9\x74\x0c\x86\x9c\x9f\xa8\xfc\xab\xf2\x11\x31\x9a\xc4\x51\xd5\x3c\x49\xbe\xda\xd9\x14\x33\xc7\x37\x65\x9b\x3d\x66\x6c\xbf\x34\x6c\xda\x7d\xd3\xd5\x30\xbb\xed\x4c\xde\x2d\x9f\x6c\x90\x0d\x5b\x4e\x9c\xf1\x73\xd9\x57\x36\xd7\x03\x91\x0d\xc0\x93\xeb\xee\x0a\x2c\x1f\xc8\xcd\xbc\xbe\xcb\x5a\xdb\x55\x48\x97\x49\x2c\x5a\x24\xa3\xf5\x82\x82\xc7\x69\xbe\xcc\xf8\xc5\x2e\x78\xe2\xe3\xcd\xc8\x95\x12\x77\x7b\x03\xda\x15\x66\x6b\x01\x11\xbf\xbf\xb5\xfb\x9d\xd0\xdd\xed\xbb\x23\x19\xbb\x94\xe6\x82\x2e\xc0\x39\x50\x62\xb8\xad\x65\x41\x41\xad\x4b\x6f\x2d\x64\x28\x00\xd3\x6a\x76\xf6\xf3\xd6\xb2\x1a\x22\xae\x98\x58\x41\x42\x94\x3b\x08\xf7\xbb\xb9\x1c\x5d\x62\x41\xe9\x7a\x20\x97\x65\xbb\xd8\xd7\xd8\x9c\xe2\x35\x5e\xe1\x05\xbe\xc0\x97\xf8\x1a\x9f\xe3\xb3\x6d\x59\x80\x4e\xb5\xbe\xbb\x81\xab\xbd\xc4\xcf\x92\xfe\xd0\xef\x35\x82\x40\x07\xe2\xa1\x79\x3e\x10\xfd\x3e\xe2\x53\x31\x23\x74\x2a\x66\x96\x7a\x32\xe8\xcd\xcb\x73\x46\xd1\xc7\x64\x45\x71\x57\xcf\xcf\x70\xf5\x5c\x55\xec\x13\x3f\x90\xe0\xd4\xdc\xd2\xf8\xa9\xfc\xa1\x8a\x07\xf8\x35\x09\x4e\x0d\xf7\x7e\x4c\x02\x45\x5e\x1f\xc5\xf3\x15\x0d\xf0\x11\x09\x4e\x2d\x2b\x1f\xe0\x43\x12\x9c\xea\x00\x9a\x01\x7e\x2f\xcb\x16\x69\xca\xd2\xf3\xbf\xf8\x86\x88\x2f\x49\x70\x46\x97\x19\xa7\xee\x6d\x80\xdf\x90\x20\x5e\x0a\xca\xfd\x77\xef\x9a\x77\x63\x77\x54\xe2\xb7\xe4\x26\x7f\xcf\xd6\xba\x24\x88\x54\xdc\x36\xfc\x6c\x70\xf4\xcf\x1f\x8b\x8c\xdf\xe1\x17\xcd\xaa\x0f\x5a\xab\x3e\xf0\xab\x3e\x00\x85\xe1\x93\x66\xdd\x6f\x5b\xeb\x7e\xeb\xd7\xfd\xd6\x97\x1c\xb6\x65\xae\xd2\xf1\x5c\x2f\x69\x2a\xe8\x02\xdf\x9c\x9e\xda\xcd\x3c\x3d\x8d\x96\xc3\xa3\x1f\x0e\x5f\xfd\xe1\xe9\xf1\xd3\x77\xd6\x92\xba\x7a\x93\x3c\xc5\x6d\x26\x92\xea\x96\x2e\x71\x77\x8c\x54\x54\xe1\x7a\xb5\xd7\x2d\xd5\x4c\x72\x55\x6d\x32\xe5\x58\x48\xf5\x4a\xff\x28\x4b\xdc\x1d\x21\x3d\x9a\x9a\x3b\xc1\xad\x83\xd1\x23\xa9\x55\xf9\x94\x81\x20\xcc\x72\x80\x95\xda\x55\xfa\x5a\x7e\x78\xc3\x59\x2e\x58\x4a\x6b\xdf\x9e\x22\x17\xe1\xac\x1e\xa7\x29\xcd\xc0\xd7\x1d\x9a\x04\x9f\x47\xed\x95\x2e\xab\x3c\x61\x92\xc5\x6a\xaf\x60\xba\xaa\xd6\x39\x3d\x8b\x39\x3d\x72\x9b\x96\xed\xbc\x4e\x6d\x2c\xab\x66\x2e\x45\x2d\x1a\xaf\x4f\xd4\x8b\xe9\x87\x19\xa1\x58\x4c\x9f\xce\xc8\x4d\x89\xc5\xf4\xb5\xfe\x7f\xac\xff\x1f\xcd\xc8\xcf\x58\x4c\x0f\x67\x24\x1c\xe1\xc2\x0d\xe7\x2d\x7e\x22\x6b\xbf\x9f\xdd\xc9\xe6\x56\xc2\x02\x5b\xce\xf4\x1e\xfc\x68\x8d\x7b\x38\xac\x85\xeb\x95\x1f\x38\x0e\x7c\x24\x10\xa0\x89\x8e\x52\x0b\xa9\x62\x15\x36\xec\x8e\x94\xd7\x01\xd5\xf9\x76\x45\x89\x22\x3b\x28\x9f\x0b\x85\xc0\x57\xd8\xa4\x01\x6c\x6a\x51\x02\x27\x41\x08\xfa\xd5\x55\xa9\x0d\xf5\x03\xc2\x10\xbb\x58\x37\x15\xa2\x12\x7b\x21\x07\x9a\x3c\x58\xad\xfa\x31\xda\xb3\xb7\x85\x24\xe4\x29\x92\x57\xc1\x50\xb3\x70\xb2\xb5\x35\xa7\xeb\x98\xd3\x16\x96\x8b\xd6\xc7\x12\xf8\xb0\x15\x20\x88\x1a\x7f\xe1\x46\x1e\xe8\xa6\x16\xa6\x84\x8b\x15\x71\xd5\x9e\x9b\xd3\x05\x7d\xa3\x53\x3e\x83\xe0\x36\xe7\x96\xa8\x14\x53\x0e\xe9\x74\xe5\xfc\xab\xdb\x95\x9b\x01\x3d\x35\x91\x63\x4b\x4c\x3f\xd0\x79\x51\x0d\x8f\x6d\x53\xdb\xba\x09\xd8\x53\xd6\xeb\x35\x3f\xc1\x59\x0b\xd0\x96\x95\xfc\x80\x70\x83\x0b\x7d\x8a\xf6\x60\x66\x8d\x50\x13\xdc\x0b\xad\x77\xe6\xcb\xf1\x39\x96\xd3\xd2\xdc\x4c\x69\x6d\x28\xd5\x1c\xf2\xf8\xb2\x6d\x1f\x74\xe8\xce\xe6\x78\x2a\xc6\xe3\x9c\xe6\x59\x72\x49\xe1\x23\x3a\x50\xae\xfe\x7a\x51\x42\x84\x2b\x96\xa4\xbe\xb9\x65\xc8\x87\xb2\x5b\x48\x55\x9a\x12\xf5\xc3\xb7\x49\x69\xe9\x21\x45\x5b\x19\x06\x31\x34\x32\x95\x50\x6e\x1d\x2a\x31\x50\x70\x77\xf3\xf3\x1f\xc0\xc0\xb6\xb9\x27\x0e\xc7\xf9\x3b\x46\xab\x9f\x90\xb7\x8a\x7b\xad\x07\xfe\xa9\x5b\x2c\x55\x5f\xe2\xe3\x7a\xa1\xd7\xc8\xda\x9b\xaa\x42\xaf\x25\x3f\x26\x81\xf2\x55\x28\x70\xad\xf0\x11\x42\x18\xec\xde\x2e\xdd\xf6\x5e\x85\x29\xc2\x0c\xe1\xa2\xf1\x3e\x43\x12\x52\xc1\x35\x64\xe1\xb9\xc1\xe1\x0c\xe1\x79\xed\x65\xe1\x84\xfe\x9d\x58\xe2\xd2\x04\xc7\x12\xb5\xce\x71\x3c\x3c\x55\x32\x9f\xbf\x30\x2e\x8a\x38\xd1\x68\x89\xd1\x3c\x44\x38\xbe\x4d\x9c\xb5\x1b\x52\x70\x5b\xe7\x47\x78\x39\x35\xaf\xff\x44\xaf\xf3\x70\xdb\x49\x3c\x96\xa7\x14\x37\x8e\x67\xcb\xcb\xd7\xf0\x52\xc7\x37\xd9\x32\x1d\x7b\xaa\x0d\x5a\xad\xc7\xaf\x1f\x11\x42\xae\xc2\x17\xc8\x10\xbd\xb7\x00\x6b\x91\x24\x46\x5c\x67\xa4\x92\xb5\x84\xd7\xe6\x92\x80\x06\xb7\x78\x7f\x34\x05\x8d\x14\xfb\x52\x52\x2a\xa9\x13\x54\x47\x54\xc6\xab\x23\xe4\xa8\x54\x26\x57\xf4\x96\x73\xd5\xec\x23\xad\xf4\x91\x42\x1f\xa8\xc4\xf1\xa2\x11\xaa\xd4\x5d\x75\x2e\xf0\x75\x38\xc2\xb9\x83\x2b\x13\x22\x2f\x25\x62\x8f\x03\x54\x5f\x5b\x54\x9b\x6a\x92\x27\xf5\xe8\x1c\x54\xda\xa0\xca\xac\xa5\x4a\x0d\xa4\xa8\x04\xfc\xd2\x25\x7c\xd9\xcb\x86\xa7\x2a\x61\xc1\x9f\xe8\x75\xf8\x14\xeb\xc4\xf2\x71\xf3\xcc\x39\x41\xc5\xca\x93\x4a\x60\x79\x39\xe0\xac\x5d\xc8\xf9\x7a\xeb\x17\x25\xd7\x5d\x17\xf9\xea\xa9\x22\x3f\xef\x44\x3c\xaf\x11\xe6\x44\x4c\xe9\x6c\xb3\xa9\xad\x49\x91\x24\x78\x3a\x43\xe0\x19\xe2\x96\xa5\x89\x36\x94\x6f\x40\xb7\x1a\x2a\x30\xb5\xf8\xca\xba\x6f\x85\x29\x32\xc2\x1e\xbf\xc1\x3d\xff\x07\x99\x66\xb3\xd2\x4a\xcb\xaa\x1d\xe7\x0d\x46\x00\x17\x9a\xf9\xcb\x1f\x8d\x27\xf9\x60\x1c\x8d\x24\x8e\x19\x1f\x24\x0f\xf3\x83\xa4\xdf\x47\xc5\x34\x19\x8c\x67\x1e\x8b\x90\xcc\xf6\x52\x32\x9d\x0d\xe7\x59\x3a\x8f\x45\x78\x1a\xc6\x08\x9f\x86\x05\x42\xda\xd5\x0d\x76\x4e\x03\xe8\xbc\xbe\x81\x78\xbe\x75\x37\xb6\x7c\x91\xbb\x01\x32\xff\xca\xc2\x32\x9c\x22\xc3\x48\x32\x9f\xca\x96\x34\x7e\x9e\xc6\xeb\x7c\x95\xb5\xa8\x4e\x9a\x18\xbd\x65\x2f\xf5\xe0\x6f\x0c\xd3\x72\xa5\x7c\x9c\xaa\x74\x87\x1f\x6c\x56\xde\xc6\x84\xda\x2b\x59\x42\xcf\x4d\x69\x99\x97\xed\x64\x8b\x3e\x49\x53\x3e\xf3\x93\xd7\x13\x3d\xad\xb4\xc9\x42\xf8\x47\xab\xd4\x54\x4d\x59\x62\x4e\x73\x91\xb5\x53\x5f\xd6\x45\x8d\x13\xaa\x83\x5f\xd6\x09\x2e\xb3\x5a\xc3\xb9\xa3\xb8\xf0\xb6\x32\x86\xe3\xb6\xd1\xb7\x3e\x95\x28\xc3\x8c\x5c\x85\xfc\x96\x9c\xeb\x29\xe1\x9e\xdc\x41\xde\x31\xbb\xe0\x9d\xbb\x48\xbe\xb4\xe5\x4a\x61\x77\xdd\x28\xe6\x42\x99\xc7\x79\x0b\x6c\x7d\x8a\x1b\x5d\x93\x24\xf4\x6e\x18\x23\xb3\xe9\xf5\x20\xa4\x6a\xed\xba\xf2\xe8\x15\xb9\x17\x96\x44\x39\x94\xab\xba\x64\x49\x25\x43\x9a\xf0\x48\xca\xc4\x27\x29\x55\xf8\x28\x49\x45\xcc\x3d\x6c\xef\x51\x11\x8d\x15\x64\x66\x35\x34\x39\x1c\x8b\x0a\x93\xb2\x0d\x55\xbe\x77\x89\x4f\x0e\x43\x39\x60\xdb\x03\x9d\x54\x07\xc5\x31\x45\x51\xb7\x9a\x2e\x04\x32\x85\x55\xef\xb7\xad\xaa\xc3\x0a\xb1\x66\xa8\x5d\x1f\xf1\xa6\x12\x1f\x49\x3c\x6a\x5b\x04\x69\x1b\x43\xfa\xde\xf3\x72\xe8\x65\x96\x3c\xe4\xc0\xcc\x3d\xf7\xe6\xac\xae\x6d\xcc\x87\x82\xb3\xf3\x73\xca\xc3\x97\xd0\x6e\x8d\xbc\x4d\x3d\x73\xc6\xb6\x16\xc6\x7e\x0b\x6f\x30\x24\xd0\xa8\xb0\x8d\x69\x8d\x6b\x74\x8e\xea\x0c\xe2\x6f\xd5\xfa\xaf\x36\x66\x12\x55\xed\x55\xc6\x60\xdb\xce\x6f\x6d\xdb\xad\x78\x23\xda\xb6\x6f\x02\xee\x51\xb5\xcd\xfb\x4d\x91\xe6\xdb\x19\x08\x77\xad\xa5\xa1\x1e\x8b\xf5\xc9\xf7\x86\xc3\xad\x24\xa9\xa1\xca\x53\xa2\x54\x64\x15\xe8\xcc\x9e\xfe\x6e\xfd\x0e\xcd\xd0\x66\x93\x95\x4e\x74\xe7\xaf\x45\x3b\x38\x81\x2f\x70\x4a\x84\x46\x35\x8c\x08\xe7\x08\x9c\xb5\xdc\x2a\xb1\x53\xa7\x87\x60\xf3\x64\x1d\xa4\xfc\xe3\x3c\xf6\x8e\x73\xaf\xa7\xca\x4d\x47\x33\x64\x1c\x62\x2c\x9d\x17\x0f\x0d\xb5\x16\x72\x73\xeb\xa5\xfe\xc5\x90\x3b\x2e\x30\xf6\xaf\xdc\xd7\x92\x00\xb2\x47\xe8\x97\x22\x4e\xe0\xe6\x9c\x80\x3e\x2e\xeb\xf5\xe2\xea\xfd\xcc\x21\xc6\x86\x47\x42\x65\x98\xe3\x2a\xee\x4e\x11\xc2\x71\xfb\x4d\xfd\x74\xeb\x17\x8e\x70\xaa\x96\xf9\x79\x3b\xb2\xd8\x2a\x64\x79\x5f\xe5\xb9\x24\x4e\xd8\x6c\x46\x7b\x62\xb3\x19\x77\x09\x49\x27\x0e\x2d\x71\x4c\xb1\x98\xa4\xfd\x71\x94\x0e\xc6\x28\x52\xd3\xea\xf0\x29\x9d\x29\x00\x06\xf2\xf7\x53\xd2\xf8\xf4\x7a\x15\xbf\xff\xbb\xd8\x43\x43\x18\x6e\x39\x0a\xe9\x70\x15\xe7\xaf\x9d\xc4\xc9\x53\x8b\xa6\x53\xaa\x29\x09\x1d\x63\xc7\x35\xc0\x34\xa1\x58\xa5\xca\x33\xd4\xeb\x75\x85\x0d\xe3\x52\x4d\x80\x05\x72\x71\xc5\x5d\xc4\x16\x48\x78\xb3\xf7\x09\xb7\xdd\x46\x59\x89\x6d\xbd\xa8\x8d\x66\x69\xf2\x82\x06\x89\x4b\xc0\x4a\x37\x9b\x50\x4e\xc2\x8f\x1a\xa7\x03\xc4\xa9\xa3\xed\x04\x57\x50\xdd\x1c\x59\x5e\x22\x84\x53\xb5\x63\x5b\xee\xe0\x76\x7b\x81\x83\xb0\x19\xbf\x61\xb7\xdb\xb7\x8d\x3b\x45\x9b\xcd\x74\xd6\x22\x8f\xf1\xf2\x11\xb4\x83\xb9\x80\x9c\x9a\x95\xd6\x3e\x8d\x04\xed\x98\x8b\xd2\x27\xb7\xaf\x20\xd1\xd2\xa9\xba\x3c\x11\x1a\x16\x29\xfb\x25\x54\x51\xf1\xf4\x49\xfe\x7c\xc9\xaa\x82\xa0\x09\xe7\x54\xde\x35\x35\xf0\x11\xa8\xd7\xb3\x27\x4e\xcc\xf6\x74\xae\xa6\x36\x72\x1e\xcc\x6a\x84\x26\xb5\xb6\x50\xfc\xcd\x74\x73\x5e\x62\x01\x25\x44\x76\x3e\x9b\xe1\x08\xaf\x7d\x0e\xd5\x4f\x22\xe6\x99\x78\x40\x2c\x76\x60\x2e\x5f\xf9\xa6\x6e\xdb\xcd\x1b\x3e\xa3\xb5\x9b\x65\x6f\x7f\xd6\xb2\x6f\x93\x25\xc6\x0a\xc0\xcd\x01\x41\xa5\x67\x91\xf7\xea\x16\x45\x37\x44\x43\xdd\x37\x51\x5d\xa6\x33\x3f\xa0\xa7\xaf\x0a\xbc\xb3\x09\xcf\x18\x96\xd3\x1c\x52\x63\x7f\x7a\x6b\x19\x1f\xc8\x16\x3e\xb2\xa9\xaa\x16\xfa\x2b\xfa\x59\x1b\xa6\xb9\x49\xcc\x3b\x15\xa9\xc4\xf2\xa3\x83\xf4\x21\x3d\x48\x41\x31\x9a\xfa\xbc\x71\x3a\x73\x76\x70\x95\x9d\x9e\xde\x94\xf6\x08\x73\x54\x73\x30\x36\x8e\xe9\x7a\x12\xe6\xa7\x3f\x59\xa7\xad\xdd\x3a\x32\xf1\x68\x3c\x11\x8a\x7f\x4f\xc9\xf8\x20\x7d\x28\xcc\x08\xab\xfc\xbb\x1b\x23\x6f\xe7\xba\x2a\xb8\x47\x25\x41\x50\xaa\x88\x5a\x5a\x04\x8a\x5a\x02\xc3\xdf\x6d\xe4\xd0\xb4\xcd\xb0\x7a\xef\xbb\x4d\x16\xbe\x7c\x54\x07\x73\xc5\x7d\x24\xc6\x6c\x53\x8e\xd5\x74\xa8\x66\x49\x42\x5a\x0f\xf2\xdc\x26\x16\x52\x6f\xda\x53\xd4\xf2\x90\xb5\xdc\x53\x14\xdd\x50\x1d\x95\x23\x18\x06\x6d\x05\x14\xf1\xce\x96\xa1\x78\xc8\x5d\x16\x6e\x6e\x13\x70\x8b\xfe\xd8\x04\xf2\x18\x06\x10\xde\x57\xc7\x3b\xc9\x08\x74\x99\x67\x5c\x84\xb7\xb2\xfd\x55\xc3\x6f\xc8\x98\x16\x32\xc9\xf6\xd7\x39\xf3\xac\xf4\x15\x8f\x26\xb4\x83\x67\x02\x70\x0f\x08\xab\xdb\xdd\x7c\xcd\x98\x02\x3b\xec\xb0\x17\xf7\xa6\x45\xf4\x69\xc4\xd0\x2d\xeb\x21\x3e\x6e\x3d\xb4\x99\x0a\x95\x64\xff\xd7\x5c\x0c\x4f\xf8\xd3\x58\x0e\x5e\x07\xf9\x06\x2d\x49\x5b\x48\x66\xee\xc5\x67\x48\xb7\xc8\x8a\xcc\x61\xf3\x55\x3c\x29\x16\xc8\x72\x9a\x8a\x7e\x96\x78\xac\x3b\x42\x9f\x7d\x95\x9d\x79\xd8\xd7\x84\xba\xcf\x8f\xaa\x30\xdb\xdd\xcc\xc4\xe7\x88\x1e\xcc\x76\x45\x72\x0d\x7e\xd9\x8f\xbe\x91\x35\x95\x27\x6a\x6f\xd2\x30\x9b\xd2\x99\x9f\xad\xd4\x4b\x38\x54\x11\x25\x08\x34\xe1\x9a\xd1\x28\xb1\x40\x51\x4d\xd9\x5e\xde\xb9\xf7\x98\x7f\x4c\xc0\x98\x5b\x6c\xf5\xfe\x3d\x8e\xde\xdd\x07\x6f\xf7\x43\x36\x15\x33\xc2\xc3\x74\x2a\xac\x1c\xb7\xfc\xa8\x53\xe4\x4c\x09\xbf\xe6\xa9\x71\xc4\x94\xe1\xaf\x28\x28\x70\x6c\x90\xef\xcd\x46\xa5\x1a\x8e\x59\x9a\xe3\xe6\xf9\xc2\x4c\x93\x5c\xe9\xa3\xf1\x24\x55\x24\x57\x46\xc6\x07\xd9\xc3\xf4\x20\xeb\xf7\x11\x9b\x66\x55\x92\x2b\xf3\x48\x2e\x63\xd1\xce\x76\x20\x9e\xaa\xb6\x92\xff\x65\xd7\x99\xd6\x96\x57\xcc\xbb\x02\x89\x58\x85\xd9\x73\xea\x6c\xbd\x48\x70\x7a\x6a\x7f\x9c\x9e\xde\x4d\xe7\x7b\xf6\xa8\x5f\x7f\x86\xdb\x90\x08\x45\x9b\x4d\x60\x2d\xae\x9b\x5f\x77\xda\x3b\x6b\x89\xbb\x93\x67\xd2\x57\xa4\x70\x5b\x69\x34\xd4\xeb\x35\xcb\x74\xbb\x21\xa4\x16\x11\x2b\x9a\x42\xde\xb8\x58\xcc\x57\xf2\x41\xdb\xbc\x57\xd3\xcc\xd5\x56\x09\x6a\xa1\xdb\x8b\x40\x83\x77\x94\xd1\x7d\x21\x54\xee\xba\xf2\x0d\x8f\xb0\xaf\x05\x4f\xdd\x86\xb0\x99\xd6\x8d\x4e\xac\x27\x58\xfd\x08\x81\x5b\x98\x3c\x3e\xf0\xb0\xcb\xd1\xa9\x5a\x36\xdf\x0d\x65\x6d\x56\xd3\x5f\x21\xeb\x98\x63\xab\x6f\xca\x5b\xd1\xa9\x44\xa3\x23\x1f\x8d\xb6\x23\x51\xd6\x64\x69\x3c\xf5\x8a\xbc\xbc\x6e\xb5\xa5\xaa\x33\x26\x92\x2d\x01\x47\x1f\xfa\x31\xec\x47\xdd\x18\xfc\xbf\xe2\x22\x6b\xc6\x77\xc3\xa9\x5e\x53\xfe\x68\x3c\xe1\xea\x8a\x62\x64\x7c\xc0\x1e\xf2\x03\xd6\xef\xa3\x74\xca\xaa\x57\x14\xb3\xab\x9b\x36\xae\xfe\x4a\x82\x76\x58\xde\x6d\x6a\xc5\x81\x52\x69\x80\x17\x06\x90\x62\x9b\x4d\xb7\x21\xe9\x16\x92\x02\x6b\xe3\x5a\xcd\x0e\x82\xba\x7f\x4a\x67\x25\xc2\x5c\x11\x17\x1f\x41\x5a\xb4\x7a\x08\x7c\x4d\x4a\xcc\xe4\x84\x66\xc4\x0f\x30\x77\x1b\x3b\xdf\x02\xd7\x9e\x26\xdf\x71\xf4\x7b\xc2\xec\xb2\x30\x5b\xf1\x58\x79\x76\x3b\x26\xb2\x44\x98\x35\xf6\x89\x56\x98\x50\xb7\x4f\xbc\xaf\xf8\xfc\xdb\x64\xde\x5a\xbc\x2b\x49\x3f\xb9\x2f\xbe\x80\xc1\x88\x0d\x06\xe3\xb6\x16\xfc\x95\x48\x6d\x59\x5e\x11\x31\xec\xd9\xd6\x19\x24\x04\x02\x9b\x01\x9c\x7e\xcc\xbe\x2b\xe7\x93\xff\x46\xc1\x19\x3f\x5a\x38\x3f\x9d\x61\x4e\x6e\x4a\x6b\x86\x97\x2a\x33\xbc\xc1\xb8\x4b\x80\x96\x55\x7b\x9b\x82\x07\xdc\x34\x9d\x11\x3a\x4d\x1d\x03\x75\xab\x67\xf5\x2d\x2e\x31\x5f\x97\x97\x11\x60\xc4\xf0\x55\x04\x5c\xbb\x80\x5a\xc2\x06\xf1\x7a\x3d\xb8\xa4\x3c\x67\x59\xba\xcf\x52\x26\x58\x9c\xb0\x7f\x51\x3e\x58\xc6\x73\x91\xf1\xaf\x8b\x62\xec\xb1\xea\x8e\x1b\x21\x22\x74\xe8\xb7\x5e\x8f\xf6\x7a\x36\x39\xbd\x42\x44\x43\xae\x93\x1f\x85\x19\x4e\xe5\xb5\xd0\x1d\x95\x65\x55\x22\xad\xec\xc4\x87\xa0\xcd\x60\xcb\x6b\xcb\x11\x27\xec\x8c\xc7\x9c\xd1\xbb\xd7\x46\x81\x10\xa7\xe7\xf4\xc3\x97\x8a\xee\xb9\x47\x87\xba\xb7\xb7\xf4\xfc\xe9\x87\x35\xd9\x3f\x59\x4c\x87\x33\xfd\x67\x1f\xd3\x61\xbe\x8a\xcd\xa7\x69\x3c\xf8\xd7\xc9\x62\x76\xf3\xbb\x72\xbf\x75\xec\xf3\x84\xad\xcf\xb2\x98\x2f\xfc\x7c\x30\xf3\x6c\x7d\x3d\x38\x2b\x84\xd8\x12\x9e\xae\x52\xaf\x35\xa3\x8c\xdf\xc2\x97\x0d\x3a\x60\x33\xda\xd5\x13\xd7\x59\x72\xc7\x25\xae\x33\x53\x82\xfd\x95\xaf\xf2\x68\x1a\xa8\xa1\x0a\x39\xce\x58\x08\xce\xce\x0a\x41\x1f\xb3\x74\xc1\xd2\x73\xf8\x6c\x26\xfa\x8e\x7e\x10\xd1\x22\x16\xb1\x9b\xfb\x40\xd0\x0f\x22\xc0\x5e\x19\xc8\x1e\xd5\x28\x05\x6f\xfd\x72\x87\xb0\x1c\xf5\x72\xb1\x62\x04\xb0\x1e\xe7\xbb\xeb\x35\x85\xe4\xd3\x01\x0e\x16\x2c\x8f\xcf\x12\xf0\xe3\x8b\x39\x8b\x07\x49\x7c\x46\x93\x00\x07\x90\x8e\x38\x98\x61\xdb\x08\x38\x25\xc9\x71\xe7\x2a\x21\xbd\xdc\x34\x48\x46\x3c\xc3\x5e\xab\x76\x25\x4c\xbb\x51\x77\x8c\xe5\x5d\x74\x1e\x0b\x7a\x94\xb0\xf9\x7b\x68\x27\xea\x8e\x70\x23\xe5\x66\xab\x26\x1a\x0b\xeb\xb2\xdc\xf0\x36\x6f\xb6\x1b\xa0\x49\x4a\xaf\x3a\x57\x2c\x5d\x64\x57\xc3\x23\x33\xf6\x3f\x1e\x87\xc1\x7f\x04\x7d\x97\x85\x8c\xaa\x2e\x9f\x2f\x02\xa4\xbc\x66\x5b\x6a\x28\x5b\x7d\x55\xb0\x61\xdc\xe6\x56\x1c\xac\xfb\x1a\xc6\x33\xd5\x55\x6b\x43\xa9\x12\x19\x0f\x81\x16\xb4\x14\xcc\xf0\x8c\xa5\x15\xc1\x92\x50\x29\xfd\xa9\x1a\xb4\xdd\x2a\xb4\xd9\xd0\x61\x4e\x53\xbd\xdb\x21\xc7\x02\x39\x57\x6b\xd5\xdc\x8b\xec\xfc\x9c\xf2\xe1\x02\x48\x22\x6a\xe3\x59\x97\x25\x64\x17\xc4\x2d\x69\x33\xbd\xe5\xdf\x3a\x9d\x00\x79\x4e\x2a\x6d\xbe\xfc\x95\x03\x6c\xfc\xf9\x59\xee\xc1\x62\x5e\xac\xe5\xa1\xaf\xf2\x57\x9f\x13\x89\x19\xf2\x8e\xe5\x76\x37\x8f\x4d\x9f\x44\xed\x73\xaf\xd7\xdc\xef\x49\xf3\xd5\x90\xe5\xb6\x66\xd3\x5b\xa8\x3b\xf6\x55\xcb\x6d\x8e\xd5\x2d\xf9\x91\xef\x89\xe1\xbe\x68\x0a\xb3\xef\x7f\x73\xd5\x4f\x57\xbf\x7d\x7c\xdf\xcc\x76\xcd\x1c\x62\x3b\x27\x0c\xbb\xdf\xf4\xb7\xe7\x0c\x4b\xd8\x60\x99\xc4\xf9\xca\xaf\x08\x2f\x4c\xb8\xfa\x6d\xb7\x8b\xaa\xd5\xda\x71\xb5\xfe\x97\x4b\x6d\x60\x1d\x06\xe3\x74\x61\x0d\x9c\xec\x4b\x48\x6b\xcc\xea\x6f\x8d\x78\xdd\xda\xc6\xf9\x5e\x87\x36\x23\x95\x44\x21\x29\xfd\x20\x70\xee\xbd\x98\xc7\xe9\x9c\x26\x0d\x48\xdd\xe1\x76\x8b\x55\xea\xd3\xee\x18\xeb\x45\x39\x16\xd7\x89\x44\xf1\x59\x26\x72\x01\x41\xc6\x2b\xf7\x5d\x7d\x01\xed\x47\xef\xd2\x8b\x13\xca\xc5\x3b\x75\xf5\xa8\xf6\xe5\xf6\x7c\x60\x02\xf2\x21\xe2\x7c\x95\x5d\xbd\xe1\xd9\x39\xa7\x79\x1e\xb1\x50\x35\x39\xf4\xdf\x06\x08\xa7\x99\x78\xaa\x6a\x44\x59\x68\x2b\xa3\x4a\xe5\xc7\x31\x8f\x78\x18\x54\x6a\xe2\xc0\xd5\x0c\x10\xd6\x15\x5d\x37\xae\xa5\x55\x9c\x3f\x86\x23\x91\x86\x81\x81\x95\xaa\x3f\xa7\x9d\x47\xcd\x0b\xd4\xb4\xa5\x6e\xd7\x9b\x5a\xb0\xc6\x9a\xc1\xd2\x4f\x4c\xac\x9e\x18\x13\x6e\x40\xb4\x7e\xe5\x20\x40\x58\x10\xb5\x62\x1d\xf8\x3b\x30\x99\x22\x82\x65\x56\xa4\xda\x7d\xda\x57\xc7\x35\x1b\xf4\x77\x0e\x9a\xec\xf5\x42\xd3\xe8\xe0\x2c\xfb\xd0\x09\x10\x0e\x82\xbe\xe8\x53\xc9\xbe\x40\xf7\x5f\x7c\x56\x55\xce\xbd\x46\x19\x1b\x81\xe4\x4e\xc4\xc1\x9e\x67\xbf\x64\x9c\x60\x65\x8f\x8d\x90\x40\xb1\x7a\xdf\xb8\xe2\x72\x25\x41\x34\x90\x08\x7a\xcc\xbd\xfa\x55\xbf\xa6\x00\xbe\xc7\x14\xf2\x6c\x97\x78\xad\x01\xea\x49\xc1\x95\xb1\x68\xfb\x62\x55\x61\xaf\xbe\x68\xce\x39\xc5\x5d\xb3\x6d\xd0\x6e\x42\x4d\x8f\xf7\x76\x5d\x66\x76\x41\x41\x6e\x36\x6a\x5f\xe8\x95\xb8\x48\x8e\xe3\x25\x0d\x03\x50\xa8\x41\x4e\xe1\xc1\xc2\x4c\xa5\x13\xf4\x69\x3f\xb8\xc8\x03\xd8\x85\xb9\x24\xac\x5a\x09\x83\x6d\xbd\x6b\xea\xe0\x75\x0a\x34\x19\xac\x68\xaf\xa7\x76\x49\x7f\x7a\x26\xcb\x99\xac\x14\xa8\xc4\x17\x59\x91\xd3\xa7\xa9\xa0\x2d\x19\x55\x5a\x17\x28\x30\x3b\x54\x15\x09\xd3\xe1\x9a\x53\x49\x6d\xc9\x13\x6e\x1b\x7e\x41\x2b\xde\x9b\x1f\xd3\x70\xb7\x22\x6c\xb6\x48\x42\xf6\x08\x01\x1d\x4d\x7f\x5b\x1c\x80\xef\x04\x51\x7c\xcb\xf2\xe0\xbc\xe1\x7d\xe9\x41\x23\x52\x46\x8a\x8d\x7a\xf7\x3f\x9c\x01\xee\x8e\x75\xce\x73\xdd\x9e\xb7\x43\x8a\x7b\xc8\xa3\x9b\x79\x92\xe5\xb4\x39\xb7\xf6\x8d\x85\x7b\xbb\x1e\x97\xd0\xde\xc0\xea\x6f\x53\x4d\xd5\xbc\xab\xab\x5a\xe0\xaf\x12\x68\x6e\x4b\x34\x06\xb9\xf5\xef\xd8\x05\xe5\x2a\x96\x9c\xb9\x3f\xba\x63\xcc\x72\x09\x04\x26\x42\xaf\x93\x62\x2c\x64\x71\x55\xfa\xf4\xbc\x60\x0b\x2f\xab\x90\xfc\xf9\x2c\xe3\xa1\xc1\xd0\xb5\x10\x03\x35\xa7\xff\xbb\x81\xa8\x0e\x26\xb9\x60\xf3\xf7\xd7\x92\x55\x50\x8c\x8c\x44\x0b\xfc\x5d\x9c\xbf\x0f\x0d\xc0\xe5\x54\x3c\xaf\x8e\x34\x94\x00\x55\xdd\xff\xe6\x20\x14\x3d\x01\xeb\xa0\x5d\x52\x9b\xc7\x09\x56\x2a\xce\xdf\x3f\xb7\x11\x96\xf6\xe8\x24\xac\xd3\x24\xa1\x09\x56\x78\x2a\x68\xcc\x17\xd9\x55\x1a\x22\xed\xb9\x6f\x97\x5a\x8d\xb8\x84\xc5\x6e\x19\x52\xd3\x35\xd9\x6c\x84\xba\xe9\x5a\xda\x52\x5d\x1a\x5f\x8e\x60\xc1\x16\x4f\x5d\xdb\x70\xa4\xee\xe3\xc9\x1f\x64\xa9\x2e\x1a\xa8\xf3\x63\x97\xb7\xb2\x4e\x2d\xef\x5a\x16\x09\xdf\xb9\xcd\x10\x18\xc0\x20\xb9\xe6\x42\xe4\x6d\x0b\x21\x8f\x76\x89\x2d\xaa\xda\xb9\xd6\xc8\x8e\x7a\x45\xe7\xef\x9f\x2f\x8f\x57\x59\x91\x2c\x0c\xb6\xb3\xf0\xb4\x95\x6d\xaf\xaf\x94\xb9\x98\xc0\xde\xbe\xe6\x9e\x20\x81\x42\x12\x59\xdc\x97\xde\xd3\xa1\xb7\xeb\xd0\x67\xf3\x6e\xb6\xc3\xb0\xab\x88\x39\x2a\x15\xbc\xbc\xbb\x7d\x88\x7b\x6d\x57\x30\xcb\xf5\x76\x4a\x36\xbb\xb9\x40\x06\xfb\xcb\xd5\xd9\x6b\x0f\x81\xa7\x70\x87\x3a\x50\xf7\x9c\xae\x77\x0e\x5a\x27\xdb\x80\x18\x39\x57\x9a\xe4\xb4\x53\x3f\x46\xa5\x76\x0e\xa9\x61\xa2\xc6\x3a\x84\x29\xbd\xea\x3c\x89\x05\x45\x72\x06\x0a\x07\x34\xba\xad\xe1\xb3\x00\x43\xca\xf7\x73\x2a\x9e\x26\xf1\x3a\x6f\x36\xad\xf5\x82\x2d\x4d\x0f\x1a\xcb\x5d\x6b\x5a\x36\xec\x1d\x92\xcf\x97\x63\xad\x05\x4e\x1a\x5b\x47\xd1\x9e\x30\xaa\x65\x0f\x4b\x09\x18\x54\xfd\x0c\x34\x11\x63\x75\x41\x42\xf4\x68\xfb\x09\xa8\x10\x15\x55\x7c\x6d\xb0\x56\x1b\xfe\xa8\x1c\x07\x39\x2a\xb3\xe1\x3b\x12\x38\xc7\x94\x5f\xb2\x39\x1d\xfe\x52\xd0\x82\x6a\x7c\x55\x4d\xe6\x0f\x61\x2a\x54\x67\x56\xce\xd3\x44\x98\x4f\x2a\x57\x44\xb0\x55\x12\xa4\x2e\xf0\x5c\xf5\x5a\x63\xb0\xdb\x73\xd1\x6d\xa1\x0f\xb6\x10\x05\x35\x4d\xf1\x97\x0b\x30\xad\x09\x68\xbd\x7c\x86\x61\xd6\x3e\x94\xf5\x38\x40\x60\x1e\x1a\x06\xb0\xc8\x43\x13\xd0\x7d\x54\x8d\x06\x24\x6f\xff\xbc\x5e\xf1\x22\x5e\x3f\xbe\xd6\x15\x03\x1c\x40\xa1\x1a\xd7\xc9\x39\x04\xfd\xfc\xb3\x2c\x52\xaf\x0e\x36\xc4\xa6\x76\xbb\x95\xd9\x70\xcd\x59\xc6\x99\xb8\x7e\x28\xec\xe3\x64\x1c\xb9\xf7\x8f\xbc\xf7\x83\x71\x34\x2a\x3f\x91\x2a\xb1\x94\x86\xa6\x39\x8d\xcb\xaf\x02\x41\x6b\x2d\xa6\xa2\x27\x7c\xb6\xd3\xee\x25\x59\x83\xfe\x69\x0a\xdd\xe9\x83\x95\xd2\xab\x0a\xa9\x4a\x91\x75\x43\x4e\x68\xcc\xf5\xeb\xbb\x1d\x8d\x02\x73\x8c\xfc\x38\x03\x26\x78\x85\x5d\x71\x68\xd3\x3a\x3a\x1b\x45\x91\xe4\xb1\xb7\xb8\x5e\x19\x27\x9c\x8f\x9c\xbb\x5d\xd2\x3b\xfc\xad\x4e\xfd\xa1\x28\x49\xa5\x1a\xe2\x9a\xd2\xf7\xcf\x18\xcf\xdb\xb2\x4c\xb4\xae\xc0\x70\x29\x4b\xab\xd3\x25\x11\xb8\x6c\xe0\x45\x7c\x8f\xfa\x49\xec\x57\x3f\xa7\x02\xb6\x47\xbd\x69\x4b\x8c\x22\x77\xd1\x74\x02\x7e\x5a\xb5\x1d\xfd\x8c\x70\xe4\x3b\x20\x6e\x61\x9d\x74\xa7\x4f\x6c\x82\x83\x1b\xe3\xf8\xcd\xfd\x40\xed\xd3\x00\xfc\x79\x02\x79\xe7\xc9\x89\xb1\x2c\x7d\x06\x1a\x4e\x06\x2f\x35\x59\xf7\xa4\x58\x27\x6c\x1e\x0b\x9a\x07\x33\x17\xf7\x46\x39\x88\x98\xe3\xbe\xbe\x0e\x19\xc2\x37\x3e\x46\x07\xa2\xb9\x74\xf1\x63\x62\xa5\xb8\xd6\x5e\xaf\x3e\xff\x1a\x23\x5c\x10\x7b\x5f\xbd\x86\x18\x7e\xaf\xf9\x13\x17\x31\xd4\xbf\xfe\x33\x1c\xe3\xc2\x45\x43\xaa\xfb\x1e\x66\x9a\x0c\xa8\xb5\x72\xbb\x17\xea\x7d\x56\xb1\xee\xa8\x6a\xa4\x5f\x45\xaa\x90\xf8\xa2\xcd\x54\x39\x8d\x84\x22\x7e\x4c\x5b\xf7\xe7\x86\xdb\x06\x53\x8f\xcd\xa3\xe7\x15\x18\x29\x79\xbf\x5d\x9a\xd5\xa4\xe2\x38\xa6\x53\x31\x43\x25\x6c\x42\x05\x1f\x84\xb7\x8c\x4b\x77\xf3\x4e\xc1\x90\x3b\xe4\xe0\x1e\xe9\x35\xb2\x2d\x0e\xb9\xfc\x33\xa5\x33\xe2\xab\x9f\x3e\xc9\xd6\x1d\x92\xa6\x79\x20\xd9\x12\xd8\xc0\x0b\xf4\xc0\xf0\x8d\xbe\xf7\x23\x8e\xe5\x5e\x45\x54\x22\x9c\x61\xbc\x58\x84\x0c\xa8\xd5\x55\x9c\x5b\xe0\x6f\x33\xa4\xaf\xa3\x0e\x75\x85\x06\xc8\x9a\x18\x83\x97\xa3\x41\xf5\xf5\xc8\x44\x4d\xcd\x21\x2c\xe7\x9b\xc6\xa9\x43\xcd\x28\x0b\xd4\x5e\xc5\x40\xc9\xc3\xd9\xf1\x47\x1b\xda\xfc\xd2\xe5\x6d\x68\x2e\x40\x10\x34\xd9\xc6\x6c\xbe\x9d\x68\xda\x41\x43\xf1\x45\x75\x43\x3f\xaf\x9e\xbc\x7f\x5a\x3c\x7d\x72\x5f\xdd\xd0\x77\x38\x60\xcb\x00\x4f\xa7\x0f\x1e\xe0\xf1\x6c\xa6\xf2\x65\xdc\xd4\x0a\x8d\x70\xd0\xe9\x04\x33\x0c\x9a\x24\x3c\x9d\x8e\xbf\xc7\x23\x3c\x9d\xcd\xf0\xf4\xc1\x08\x6b\x3d\x42\x00\x3f\x7f\xa3\x64\xb3\xa0\x09\x73\xc5\x02\x10\x44\x05\xaa\xf5\xd9\xac\xaa\x8b\x5a\xc7\x3c\xbe\xa0\x82\x72\xd9\xd5\xac\xbc\xa5\xf3\x4a\x77\x56\x54\x2e\x1b\x01\x35\x96\xd7\x2c\xf6\xe6\x25\xab\xd4\x34\x0d\xc1\xec\xd6\x99\xaa\xee\x7e\x8b\x83\x05\xbb\x94\x4f\xdf\xcb\x09\xc4\xa0\x90\x50\x72\x78\x23\x50\x96\x1f\xff\xd3\x76\xdb\xe9\xdc\xa3\x2a\x8c\x02\x4f\xc7\x23\xb9\x21\x20\xeb\x9f\x8e\x7f\x27\xaf\x95\xaa\xa8\xda\xac\x99\xea\xe7\x77\x95\xbe\x82\xca\x9b\xd6\xb5\x54\xeb\xdd\x78\x7f\x6f\x15\xe0\xae\x30\xbe\x83\x02\xb0\x26\x1e\xfc\x62\xd6\x42\xf1\x62\xb1\xa3\x63\xab\x70\x8e\xad\x9c\x8c\x0e\xf8\x43\x7a\xc0\xfb\x7d\x04\x31\x8d\x1c\x0a\xe5\xb3\x4a\xba\x47\xab\x3c\x68\x57\xae\xa8\x9b\x83\x88\xaa\x2f\x4f\x4b\x8c\x07\x88\x8c\xce\x96\x36\x65\x50\x23\xae\xa0\x8b\xbb\x52\x0f\xe6\x03\xf1\x6d\xe4\x38\xe2\x79\xbb\x2f\xa2\x47\x3e\xf6\x45\x29\x11\x98\xb3\x70\x35\x16\xa1\x9a\x0f\x48\x41\x51\x42\x8d\x94\x73\x27\xc7\xbe\xb6\x99\xb7\xf1\xe8\x55\x24\xab\xc5\xa8\xc2\x8b\xc5\x09\xa8\xf5\x4e\x90\xd1\xcc\xa3\x9e\xf0\xd7\xf7\x32\x13\xbe\xa5\x21\xf7\x88\x8a\x14\x22\x5f\x35\x54\x11\x60\x76\x08\x40\x94\x3a\x92\x6c\xe7\x69\x66\x69\xf2\x35\x4d\xe9\xfe\x27\x19\x71\xde\x2e\x74\xf8\xdf\xbd\xa6\xe4\x13\xd6\x14\x72\x3f\x0e\x14\x9e\xb2\xa6\x42\x95\xb7\x2d\x22\xa2\x00\x07\x2a\x1b\x62\xd2\x22\xee\x31\xbf\x3b\x15\x5b\xce\x30\xdd\x6c\x6e\x94\x29\xf6\x45\x2c\x70\xe6\xa2\x00\x39\x8e\xc6\x0f\x22\x14\x66\x2a\x68\x10\x56\x0b\x43\x08\xc9\xe0\x25\xc4\xac\xc4\x2c\x7f\x15\xbf\x82\x00\x31\xf6\x55\x95\xd5\xcb\x4c\x4f\x92\xb0\xa5\xfa\x59\xe5\xd0\x24\xa9\xb7\xaf\xae\xf3\xaa\xd1\x50\xda\x72\xdb\x65\x49\xa2\x58\x46\xff\xa6\xac\x7f\x6b\x5f\xad\xfb\xb4\x60\x6f\xe4\xb6\x7a\xda\x15\x68\x41\x53\xc1\xfc\xdc\x00\xf5\x12\x29\xa5\x8b\x7c\xc0\xa9\x31\x76\x6e\x8d\xbd\x6f\xed\x67\x9d\x3e\x8c\x0a\x1c\x7b\xbf\x73\x2a\x70\x5e\x4b\xa1\xa5\x6a\x7e\xcd\x34\x5a\xef\xe9\xb5\x49\xa2\xb5\x62\x8b\x05\x4d\x49\x77\xac\x7e\x32\x41\x2f\x08\xd7\xcf\xf2\x00\x90\x54\xfd\x00\xf2\x8b\x30\xdf\x36\xcc\xcd\x6a\xab\xd5\x8d\x05\xa0\x2d\x42\xb6\xb3\x62\xb9\xa4\x26\x8c\xa8\xd1\xcb\xd0\x24\x79\x01\xd5\xab\xef\x79\x7c\xf5\x5c\xd0\x8b\xbc\xfa\x96\x35\x5f\xe5\x73\x9e\x25\xc9\x0b\xba\x14\x6d\xef\xdf\x65\xeb\x5a\x7f\x09\xa3\xa9\xf8\x89\x2d\xc4\xaa\xed\xc3\x0f\x94\x9d\xaf\x6a\x2d\xe9\x60\x31\xc7\xec\x5f\xb4\xf2\x41\xbf\xd7\xc6\x1d\xcd\x69\xe5\xde\x9a\x1d\x3a\xf5\x19\x4d\x92\x97\xf1\xda\x98\x94\x6b\x31\x84\x3a\x84\x7e\x24\x1b\x54\x2a\xfb\x11\x26\x0e\x85\xe0\x5b\xe4\x6c\x12\xe2\xe4\xe7\x30\x50\x6b\x1b\xa0\xbd\xca\x52\x3b\x0a\xca\xe4\x11\x9c\xd0\xe8\x37\xcd\x95\x1b\x6d\xaa\xad\xa9\x4f\x83\x84\x2e\x85\xd3\xe8\xd9\x05\xdd\x52\x5a\x64\x6b\x5b\xd8\x5f\xe6\x7a\x71\x9a\x0b\x76\x11\x0b\xba\x18\x5c\xc9\xef\xb5\x3a\x7a\x07\xb6\x57\x5a\x41\x81\xda\xb0\x54\x90\x20\xd2\x3a\x2e\x13\x04\x0e\x84\x6c\x74\x91\xbf\xa5\xcd\xc8\x75\x06\x44\x59\xfe\x87\x84\x5d\x5c\x50\xfe\x20\xd4\x51\xda\x39\xe5\x34\x5d\xc8\x0d\xa9\xc5\xf9\x07\x35\x03\x6c\xd2\x5b\x3a\xa7\xec\x92\x36\xf6\xa9\xb2\x9d\x6a\xb8\xc5\x1a\xf2\xfa\x4a\x30\xae\xbe\x3a\x86\xb1\xbe\xc9\x94\x2d\x8b\xdc\x7d\xaf\x68\x8b\x02\xdb\x1d\x9b\xea\x9c\xe5\x87\x81\x3a\x8f\x81\xd1\x6c\x57\x4b\xc0\x19\xf2\xe5\x00\xe6\xa8\x75\x09\xa1\x76\x1d\xe4\x0b\x63\xf4\x02\x3f\xb4\x8e\x05\xae\x98\xd7\x67\x39\xe5\x97\x94\xdf\x59\x40\x21\xa2\x9b\x2b\x66\x76\xc8\x33\x1e\xf8\x93\x5c\x3a\xfd\x36\xa8\xef\x4c\x60\x03\x39\x5b\x44\x40\x4d\xe8\x68\xef\x50\x51\x0d\xef\x39\x15\x61\xa0\x86\x11\x60\x8e\x30\xef\xf5\xb8\xe4\x76\x6a\xa3\x6d\xbe\xfb\x94\x01\x96\x66\x8f\xaa\x7b\x57\x33\x90\x6a\x42\x69\xfb\x01\xae\x1c\xb9\x3d\x4b\xcf\xa8\xc4\x9f\xeb\x98\xe7\xf4\x79\x2a\x59\xa3\xf1\x08\x35\xce\xaf\x2a\xe7\xad\x84\xfb\x14\x60\x8a\xfc\x20\xd5\xed\xa7\xd6\xf5\x27\xc0\xb6\xce\xf6\x27\x1a\xfd\xbd\xcb\xd6\xaa\x58\xa3\xbb\x77\xd9\x3a\xc0\x02\xb9\x75\x39\x72\x88\x73\x0b\xfa\xf2\xe0\x78\xe8\xa1\xd9\xb0\x81\x44\x5a\x50\x84\x3f\xe8\x3a\x9e\xee\xf5\xe8\x10\x90\x0b\x69\xf9\xa8\xbe\xc8\x22\x0a\x95\xb4\x96\x51\x9f\x36\x1b\x6f\x96\xde\x67\xa5\x3e\x96\x50\xf3\x16\x90\x43\xe3\x80\xea\x05\x90\xb7\x40\xf5\x9c\x7b\x6b\xe2\x0e\x39\x94\x6b\x85\x1b\x00\x69\xb3\x64\x99\xff\x12\x9b\x3c\xcb\x06\xe5\x7b\x4b\x69\x93\x98\x51\xa7\x89\xad\x7f\x25\x3a\xfe\xa7\x24\x49\x98\x4a\x20\x44\x2a\x37\x14\x5e\xb6\xde\x51\xeb\xe6\xce\x01\xe9\x70\x28\xc2\x3a\x58\xd6\xe1\xa6\x79\x37\xb4\x6d\x2b\x5e\xb5\xc1\x46\x91\x7e\xb6\xf6\x17\xc4\x5f\xc6\x0b\xf2\x32\x16\xab\xe1\x05\x4b\x43\xd3\x80\xba\x3c\xd1\xde\x7a\x40\x2e\xf0\xaa\x2f\xff\xb8\x42\xab\xbe\x5f\x08\x67\xe1\xc2\xed\xc4\x60\xad\xd6\xf4\x92\x4c\x67\xc0\x67\x08\x32\x3a\x10\x0f\x55\xb6\x24\x46\xd6\x7d\xa1\x02\xf8\x7b\xd9\x5b\x16\x43\xc5\x8b\x1d\x4a\x52\x1b\xe1\x79\xaf\x17\x26\x64\x3e\x2d\x66\x08\x27\x93\x90\x37\x97\x42\xd1\xe2\x12\x25\x82\x3d\x6c\xc8\x76\x9c\x75\x1c\x26\x56\xac\xc6\xf5\x4f\x45\x0e\x82\x71\x8d\x7a\xf1\x9e\x5e\x07\xb8\x40\x78\x39\x2d\x66\x24\x41\xd1\xa5\xca\x91\xc7\x90\x37\x1b\x8f\xc0\xf1\x93\x41\x49\x12\x76\x39\x0d\x13\x6f\xc4\xf9\x54\xcc\x90\x24\x3f\x67\xf2\xeb\xa5\x09\x51\x7c\xc3\xc8\xe5\x70\x9d\xad\xb5\xe5\xd5\x35\xa9\xac\xc1\x5e\x7d\x85\xae\x21\x0a\xc7\x97\x5c\x06\x33\x6b\xf8\xa1\x73\xc5\x31\xf3\x53\xd0\x8b\x00\x5f\xb7\x2c\x98\x5a\x23\x65\xba\x52\xfd\x38\xaa\x76\x13\x28\x5c\x12\x75\x46\x07\x9d\x05\xcb\xd7\x49\x7c\x1d\x75\xd2\x2c\xa5\x07\x81\xbf\xae\x97\xfe\x6a\xca\x35\x9a\x8a\xd9\xde\xd7\x5d\x9c\x04\x82\x68\xe7\x61\x81\xaf\x31\x93\xcb\xa3\xe6\xe8\xd3\xb4\xbe\xfc\x3f\xd1\x0a\x20\x4b\xd3\x2e\xcb\x12\x7b\x24\x54\x8b\xbb\x89\xbe\xd3\x01\x69\xbe\xca\x16\xd4\x33\xcc\xf4\xaf\xc8\x9a\xfa\xad\x79\x87\x4e\x34\x5e\xb6\xee\x43\x35\x62\x0f\xcb\x7a\x11\xb5\xa8\xdd\x21\x8d\x5e\x4f\xd4\xde\xbe\xcb\xd6\x9b\x4d\x18\x1b\x9d\x4c\xf5\xee\xc4\xb5\xf7\xfa\x92\x33\x31\xc1\xab\x44\x01\x18\xb4\xa8\x25\x95\x08\xfe\x96\xb9\xf8\xf4\xb1\xbb\xbc\xab\x24\x30\x21\xc2\x1f\x97\x57\xa5\x3a\x30\xbf\xd2\xed\x63\x6b\x95\x42\xdf\x97\xab\xfe\x92\x1a\x9b\xb7\x47\x57\xcf\x1f\xbf\x5c\xfe\xa1\x5d\x63\x23\xc1\x2c\xc0\xb7\x2b\x6e\xd4\xc0\xd3\x58\xb0\x4b\x3a\x50\x5b\xa6\x4c\x01\x55\xd2\x85\xa9\x09\xfd\x39\xc8\xe1\x1a\xaf\x90\x5d\xd8\xa7\x89\xcc\x8f\x23\x93\x8d\xaf\xbe\xaf\xc1\xcc\x68\x52\x2a\x94\x81\xd5\x00\xf9\x80\x54\x7f\x29\xa1\xe8\x36\xdd\x50\xa5\x6b\xab\xee\xd8\xae\x49\x6a\x8c\xcc\x28\x95\xb6\x2a\x8e\x9c\x3a\xe6\x3f\x95\x66\x88\xc6\xf3\x55\xe0\x66\x24\xcf\xfa\x76\x95\x90\xab\x3d\xfe\x8d\xa7\xac\xf9\x1e\x8f\xf1\x54\xff\x04\x95\xd6\x7f\x2a\xfd\xd8\x03\x35\x5c\xf9\x11\xf0\xa9\xfc\x64\x7e\x03\xba\x9d\x41\xe9\xdf\x35\xd4\x32\x63\xa3\xaf\xd9\x59\xab\xb3\xbb\x0a\xe7\x7e\x70\xbf\x5d\x8b\x73\x4b\x3b\x2d\x60\xb8\x93\x78\x4b\xc7\x2c\xe0\x71\x9a\xdf\x2e\xc9\x82\xa5\x36\x91\x2c\x18\xcd\x5b\xd3\x00\x6b\x09\xa2\xbc\x37\xa0\xbc\x11\xdd\xa2\x30\xc8\x2e\x29\x5f\x26\xd9\x95\xe2\x60\xc0\x25\x60\x47\x91\x4f\xbb\x84\xa7\xc2\xf6\xb7\xb2\xf5\x2d\xb2\x87\xa6\x7c\x41\xbf\x89\x53\xc9\xf2\xb3\x2c\x7d\x26\xf7\xba\x26\xde\xf1\x84\x24\xb7\xf3\xdf\xbe\xf8\xa6\xc6\x2b\xfb\xa8\xa0\xc9\x55\xdd\xc6\xa0\x35\xc6\xbc\x9d\xb7\x2a\x6f\xf5\x03\x6a\x93\x24\xc1\x3b\xed\xb4\xab\x0c\x93\xf4\x97\xa3\x15\x4b\x16\xaa\x6b\x50\x51\xa9\xdb\x1d\x79\x6f\x2a\xec\x85\x96\xe5\x5d\xa7\x73\xb5\xbf\xcf\x78\x76\x01\xe3\x33\x5f\x44\xcc\xc5\xb1\x46\x35\x74\xfe\x5e\x2f\xe7\x8f\xeb\x56\xd9\xc8\x7d\xda\xbf\xcb\x37\x57\xcd\x1a\x8c\x43\x2b\xfd\xdf\x22\x58\x2b\xb1\x9b\x72\x85\x55\x9a\x54\x9c\x9c\x15\x88\x0f\x0d\x60\x13\xbd\x15\x01\x6e\x16\x9a\xb2\x19\x09\x44\x56\xcc\x57\x81\xb1\xd8\xdf\xd2\x46\x5c\x88\x2c\x50\x22\x72\x7b\x28\x51\xa5\x5b\x3c\xc2\x86\x4f\xae\x36\xb2\xd6\x52\x01\x12\xc4\x67\x79\x96\x14\xf2\x34\xb7\x14\x4b\xbc\x93\x50\xfd\x22\xdc\x81\xa8\x7e\x38\xcb\x84\xc8\x2e\xda\xbf\x71\x75\xd8\xf4\x9a\x6d\xe1\xc3\x5b\xd6\xba\x31\x68\x4e\x93\x58\xb9\x95\x6d\x2f\xad\x18\xed\x2d\x6c\x76\x3f\x58\x7f\xb8\xad\xb2\x66\xc1\xb7\x31\xe0\x50\xbd\xc4\x4d\x18\x6b\x9e\x73\x39\x55\x46\x17\xc7\xbe\x94\xa2\x7a\x48\x2d\x33\x5c\x2f\x5a\x2f\x58\x3f\xdd\x8f\xc8\xc8\x3a\x62\x98\xd1\x6f\xab\x8b\x0c\x6e\xa8\x74\xa2\xa5\x34\x4d\x62\xb4\x6d\x44\x0e\xf9\x6c\x63\x76\xe5\x8b\xad\x83\x6a\xad\x2e\x29\xd3\xfa\x79\xdf\x62\xbb\x69\xf5\x15\x02\x0c\xfa\xf3\xca\x01\x95\x87\xdb\x16\xe0\x21\xba\xd1\x1e\xe7\x9c\xfe\x52\xd0\x5c\x1c\x56\x50\xf6\x84\x36\x90\x78\x6b\xb9\x50\xd2\xea\x8d\xa2\xb9\xb2\xb8\xcf\x0a\x10\x43\xfd\x16\x95\x80\x58\x1a\x58\xa3\x05\x12\x2a\xed\xf4\x7a\xe1\xad\x63\x54\x0d\xd6\x07\xd4\xd2\x10\x8a\xc0\x0e\xd6\x8e\xa9\xad\xc8\x6d\x37\x97\xdc\x81\xbb\x16\xdf\xe2\x13\x4e\xa8\xb7\x9d\x38\xb5\x3f\x25\x78\xaa\xd8\x2e\x96\x8d\x69\x00\x4f\xaf\x97\xb6\x7f\x54\xac\x0e\xe4\xb1\xdf\x06\x77\xbc\xed\x8b\x84\xf3\xd4\x04\x7b\xa6\x43\x9f\x8f\x8c\xed\x6f\x75\xc5\xe3\x5c\x0e\x2e\x73\x42\x35\x57\xb6\xd7\x8b\x6b\xaf\x7f\xd0\x52\xb6\x30\x77\x43\xf2\x69\x88\xac\x8d\x86\x88\x11\x0e\xd9\x66\x93\xa3\x5e\xcf\x51\x28\xbc\x48\x55\xe8\x1e\x51\xf3\x91\x65\x56\x52\x59\xe7\x15\x0d\x65\x2f\x89\x24\x9c\xb7\x14\x6b\xd0\xd5\x38\xc3\x31\x2a\xdb\xad\xde\x1c\x69\xa6\xa4\xef\xf9\xfe\x39\x67\xb5\xf8\x7b\xea\xcb\xe0\x8c\xa5\x83\x75\x3c\x7f\x4f\xf9\xfe\x92\x7d\xa0\x8b\x81\x2a\x79\x3b\x91\x77\x4e\x53\xca\x63\x91\xf1\x26\x91\x67\x4c\x2e\x7c\xd3\x1e\xa7\x73\x04\xae\xd3\xc5\x84\x1b\x1d\xf0\x87\x46\x06\x08\x36\x3d\x7e\xc2\xb1\x74\x48\x95\x66\xfa\x2c\xa1\xc4\xff\xb1\xd9\x74\xc7\x38\x1d\xaa\xcc\x02\x85\xfa\xde\x1d\xe1\x00\xb4\xfd\x01\x4b\x3b\x69\xaf\x17\xa6\xc3\x2b\xae\x3c\xaf\x48\x77\x84\xf0\x36\x7b\x81\x54\xe5\xcd\x41\x65\x59\x0f\x4f\xa4\x09\x56\xa3\x73\xef\xf5\x68\x28\x86\x6b\x9e\x89\x4c\x5c\xaf\x21\x6d\x5f\x0a\xef\xe4\x86\x89\xb2\xd4\x02\x24\xb6\x65\xe2\xd0\xd6\xd7\x54\xb4\x6a\xc1\xaa\x06\xe4\x33\x96\x82\x38\x45\xb8\x0c\x67\xca\x74\xd6\x99\xbe\xc8\x41\x4d\x21\x12\x71\x50\x11\x2e\x2b\x1b\x8a\xa6\xbd\xd1\x0d\x5c\xa9\x11\xc5\x5a\xa2\x64\xfa\xd1\x97\x25\x18\x64\x96\x2a\x6b\x53\xa0\x85\xb2\xcd\xc6\x70\x75\x95\x6d\x1b\x97\x2c\x67\x67\x09\x3d\x96\x97\x04\x4b\xcf\x9f\xcb\xfa\x7a\x47\x6c\xa3\x86\x30\x68\x6f\xb7\xd9\xa6\x29\xaf\x52\x05\x98\x56\x60\x16\x6d\x4d\x34\x1b\xd0\x45\xd5\x60\xa8\x6b\x42\x4d\x78\xb7\x36\x4c\xd9\x46\x23\x20\x55\xde\x7d\x81\x94\x2e\xf5\x2f\x6a\x99\x7e\x62\x62\xc5\x34\xc4\x82\xcb\xbd\x69\xb4\x26\x7b\x6b\x6d\xde\xc5\x00\x94\x6d\xbb\x45\xd5\x1f\xb1\x4a\x74\x69\x26\x6f\xde\xaa\xf4\x51\x76\x3a\xfa\xb5\xcb\x77\xc2\xb5\xdc\xef\x0d\xfb\x40\x13\xe8\x1c\x85\x4c\xa1\xac\x12\x22\x32\x87\x3e\x73\xc7\x76\x41\x61\x17\x1e\x7a\xba\x1d\x91\xe5\x2b\x9a\x2c\x07\xc0\xac\xfc\x1f\x26\xfb\x6f\x8f\xc9\x34\x36\x32\xc4\x40\x13\x95\xfd\x0f\xc6\x62\x7e\x0a\xcf\x36\x3c\xa6\x7c\x73\xff\x0f\x93\xfd\xf7\xc2\x64\x6b\xca\xe7\x34\x15\xf1\x39\x95\x5f\x8b\x8b\x34\xff\x32\x18\xcd\x48\xf5\xb6\x0b\xe2\xfe\x97\xe2\xb6\x6c\x2b\x6e\x63\x38\xfb\x5a\xd8\x4d\x67\x8a\x66\x77\x1b\x86\xef\x59\x25\xdb\x30\xce\x73\xca\x45\x18\x1c\x26\x49\x47\xc3\x4e\xe7\xa2\xc8\x45\x47\x64\x22\x4e\x3a\xe3\xd1\xa8\x13\xf4\x63\x1c\x3f\xfa\xfe\xfb\x5e\x2f\x7e\x48\xc6\xa3\x91\xf3\xb4\xca\xc9\x74\x86\x0b\x32\xc2\x09\x19\x1d\x24\x0f\x39\x64\x4f\x56\x5a\xb4\x50\x23\x42\x36\x2d\x66\x06\x17\x66\x58\x03\x2a\xbc\x2d\x11\xee\xf7\x8b\x47\x84\xd9\x74\x90\x61\x41\x46\x5a\xe1\x6f\x0e\x5b\x4e\xf2\x6d\x58\x3a\xc7\x72\x2c\x66\x03\xd9\x67\xc6\xd3\xd0\xf6\x67\xc7\xd4\xe3\xd1\xe8\xb3\xe1\x6a\xd9\xd6\xff\x54\x6c\x0d\xeb\xf4\x39\xf1\xb5\x5a\x78\x83\xb1\x2d\x74\x4d\xe9\x6c\xa8\x61\xb2\x05\x6f\xeb\x4a\xb9\xb2\x8f\x58\x26\x59\xc6\x43\x36\xfc\xb0\x3f\x1e\x8d\x7e\x2d\xda\x30\xba\x45\xc3\x1a\xad\xdf\x7c\x88\x72\x7c\x1d\xb1\xe1\x75\xb9\x15\xc1\x67\xb7\x21\xf8\xba\x49\x6f\x53\xc1\x52\x8f\xb6\xb3\xdd\x9d\xc1\xda\xa6\xa6\xd6\x5e\x72\x8f\x93\x20\x07\x9f\x8c\x80\x10\x92\x6e\x36\x9e\x53\x4a\x3a\xa1\x2d\xc1\x70\xe8\xad\x46\xe3\x77\x5a\x1a\x6f\xd5\xaf\xb6\x0f\x9b\xfa\xda\xf4\x21\xcb\x9f\x30\x2e\xae\x95\xc6\xd5\xff\x90\x5d\xa5\xfa\x89\x2a\x60\xa2\x57\xc3\x7c\xbe\xa2\x8b\x22\xa1\x9e\x8e\xb8\x52\x09\x53\xcf\x1f\x05\x07\xc6\x10\x92\xa5\xe7\x9d\x4b\x16\x77\xea\x06\x71\x6d\xee\x2a\x77\x5f\x97\x2d\xf1\x13\xb6\xeb\xc1\x9a\x3b\x59\xa7\x13\xb6\xc4\x5a\xb7\x68\x24\x32\x52\xf8\x03\x91\xad\xff\x1f\x7b\xff\xba\xe5\x36\x8e\x24\x8a\xc2\xff\xf3\x29\x24\xee\x6a\x15\x51\x82\x94\x4a\xf7\xf7\xed\xb5\x8e\xd2\x70\xb6\xcb\x76\x4d\x7b\xa6\x7c\xd9\xb6\xab\x6a\xcf\xc8\x2a\x0f\x52\x82\x52\x18\x53\x80\x1a\x04\xf3\xe2\x14\xf7\x4b\x9c\xbf\xe7\xe9\xce\x93\x9c\x85\x1b\x09\xde\x94\x94\x52\xb6\xab\xa6\xbd\x96\x97\x93\x22\x81\x00\x10\x88\x08\x04\x02\x81\x88\xf1\xe8\x34\x22\x0b\x39\x1e\x9d\x06\x59\x12\x81\x3e\xd2\xb9\x00\xb2\x36\x9f\xbc\x7d\x0b\x42\x32\xbc\x86\x64\x78\x03\x20\xed\x23\x23\x45\xc6\x41\x5f\xf4\x83\xf5\xf5\xa9\x95\x8d\x41\x9f\xe9\x9f\x41\x0a\x49\x3d\xa9\x7f\xd9\x9e\xfd\xa5\xda\xb1\xb6\xb3\xe3\x9d\x26\xb6\x62\xa6\xc2\x99\x62\xdd\x25\xa9\xc4\x64\xb2\x56\x98\x99\xc5\xf1\x9d\x25\x47\x59\xbe\xb7\x9c\xb7\x0c\x15\x42\x86\xc4\x70\x86\x57\x24\xa2\x9f\x08\xa4\xfa\xc7\x9a\x4a\x1d\x7a\x05\x72\x34\x09\x7e\x23\xe7\x1f\xa9\xd2\xd6\x56\xaa\xc3\x2f\xf8\xa7\x00\x06\xaf\x82\x29\xc4\x68\x12\x0c\xae\xf4\xc7\x41\x00\x83\xc1\x2a\x36\x7f\xf8\x27\xfd\x97\x0f\x82\x29\x8c\x91\x77\x25\xbb\xeb\xf8\x7f\xce\x67\xfa\x06\x49\xaf\xe7\x9e\x86\xee\xc1\x9e\x63\x34\x7f\x31\x98\xc9\xcd\xe9\x49\x21\x79\xf4\x99\x1a\xf8\x98\x1c\xd1\x45\xa8\x2f\x4e\xc5\x59\xb8\x85\x4c\x77\x48\x10\x0d\x05\xb0\x9a\x03\x77\xda\x60\xe4\xb4\xc1\x19\xe2\x93\x68\xda\x4f\x14\x88\x59\x01\x84\x3c\xc3\xea\x0b\x19\xcf\xd2\x16\xd3\xee\x9d\x33\xb7\xe0\xc6\x3b\x8e\x9c\x15\x45\x64\x00\x9d\x4b\x2c\xc2\xd0\x7b\xfb\xce\xe5\xc0\x7a\xf0\x14\xc5\xb5\x1f\xfe\xfa\x14\x25\xb0\x06\xce\x93\xb7\x6f\x51\xd4\x00\x4a\x7d\x9b\x35\x40\x53\xdf\x16\x96\xa8\x34\x13\x79\x74\x08\x6c\x0c\x41\x9d\x94\x0b\x40\x66\x0a\x94\x0f\xca\xfd\x22\x14\x75\xbb\xb5\x85\xd6\x44\xc4\x6b\xa2\xc3\x30\xbe\x12\xf4\x82\x32\x7d\x9a\x6e\x63\x05\xc7\x7f\x7d\x8a\xa8\xd5\x84\xbb\x5d\x96\x93\x05\x76\x8a\x0c\xf1\xcf\x02\xcd\xc9\x17\x24\xde\x29\xa0\x30\x87\x61\x59\xc5\xb8\x54\x71\xc2\xa6\x68\x1d\xea\xfd\x69\x91\xe6\x4a\x65\x96\xa5\x32\x91\xaf\xfd\x06\x5a\xee\xe8\x00\x8a\xeb\x6b\x2d\x8a\x82\xbe\xb4\x12\x24\xab\x31\x2b\xe8\xcb\xa2\x1f\x8c\x83\xfe\x5a\xbf\xeb\x07\x7e\xb9\x45\x4d\xb9\x65\x4d\xb9\x75\xa1\x07\x2b\x2c\x05\xbd\x0e\x4f\x60\x67\xa4\xff\x9d\x40\x13\xd0\x51\xfd\x91\xfd\x00\x78\x15\x97\x35\x15\xff\x3a\xcf\xab\x66\x00\xaa\x3f\x7d\x90\xe6\x35\x08\xd2\x7c\xb6\x1e\x3c\x45\x5c\xcf\xd6\x1c\xd1\xb3\x64\xcc\xcf\xe2\x31\x3e\xf2\xa8\x0b\xcd\xf5\xd7\x15\xa2\x67\x8b\x31\x3f\x9b\x8d\x23\xff\xab\x22\xb8\x55\x0d\xe7\xad\xd6\x5c\x87\xbf\x1e\xb8\xab\x62\x83\xb5\xa0\x97\x58\x92\xe3\x59\xc4\xe3\x44\x90\x2c\xca\xf9\xe7\x0c\x2b\x6d\x5c\xb0\x3e\x7c\x88\x38\x9e\x13\x01\x05\xba\x7d\xfc\xe4\xdd\xf3\x57\x2f\x75\x90\xbf\xf4\xc8\xf6\x76\x29\x57\xd1\x39\x16\xf1\xf1\x47\x72\x73\xc5\xc5\x3c\x2e\xf7\x91\xb2\x8e\xb4\xc1\x1f\xc4\xcd\x99\x12\xd7\x82\xfc\x23\xa1\x22\x1b\xef\x9d\x10\x80\x73\xc6\x11\x3c\x51\x7b\x80\x1d\xdb\xec\xf5\xc2\x9a\x56\x5b\xc3\x02\xfe\x0d\x45\x31\x34\x38\xd8\x6d\xd2\xb4\x63\xf4\x60\x95\x44\x92\x9a\x44\x8f\xb6\xcc\x57\x4c\xcb\x66\x2f\xe2\x39\x3f\x1d\x7b\x37\xb9\x1a\x52\x03\x0a\x14\x4a\x44\xa0\xbe\x0e\x91\xdd\x1d\x94\xe0\x4c\x8e\xcd\xab\x85\xe0\xab\x50\x82\x2c\x91\x4b\x35\x36\x86\x75\x40\xd4\x03\x8f\x03\x28\x2a\x49\x1a\x0b\x15\xf2\xeb\x89\x67\x79\x82\xbd\x31\x49\x41\x4d\xe4\x79\x97\x9e\x3b\x35\x7b\x98\xf8\x69\x76\x11\xc3\x14\xe5\xee\xfa\x86\x6d\x7c\x38\x99\x06\xb0\x72\x0e\x2c\x88\x1d\xbd\x6e\xd8\xa4\x71\x6f\x08\x78\x67\xc7\x00\xaa\x89\xcd\xcd\x27\x55\xd9\x0b\xad\xaa\x63\x66\xe5\x59\xc5\x4b\x13\x58\x1c\x04\x9c\x4c\xc1\xb8\x4d\x39\x52\x4c\x0e\x5d\x8a\xfe\x51\x9c\x27\x02\xfc\x84\x85\xa3\x3c\x11\xb5\x73\xb2\x3e\x95\x0f\x89\xef\x50\x2c\x26\x72\x8a\xc8\x44\xe6\x39\x07\x9d\x59\xc0\x9b\x6d\x02\xd2\x50\x00\x00\x52\xe0\xb2\xef\x37\x23\xde\x16\xa8\xc5\x7c\x86\xf8\x50\x81\xaa\x99\x87\xc6\xe0\x00\x8d\xf3\x52\x49\x4c\xe9\xcf\xcb\x66\x33\x99\x6a\x7d\x50\x11\xa0\x04\x47\xac\x39\xc7\x91\xbe\xee\x4b\xb3\xeb\xbe\xe4\x8e\xfc\x46\x7e\x84\x65\xa9\x9d\x0c\x81\xce\x73\xd4\x9c\x4a\xac\x58\x45\xe9\x6f\x42\x55\xa9\x65\x1a\xdd\x7b\x93\xf3\xd1\x65\x5a\xa9\xf6\x38\xf8\xf0\xc1\x88\x16\x17\x9e\x27\xdf\x68\xd6\x29\x77\x77\x4a\x2b\xb5\x6f\x53\x9f\xf1\x4d\x2c\xf1\xec\xe3\x97\x97\x58\xf7\xbc\x03\x2e\x8e\xb6\xcb\x3b\x4d\x96\x95\x70\xd6\x66\xd4\x9a\x5a\x03\x37\x74\xf3\x8b\xaf\xcd\x8a\x7b\x57\xd4\x06\x0b\xa2\x56\x46\x38\x88\xb5\x84\x6a\x1b\xc8\xe4\x27\x71\xe7\x11\x85\xb8\x74\x4d\x82\x5a\x20\x45\x48\x7f\x55\x80\xc5\x64\xa4\xc9\x7c\x72\x32\x85\x1c\x89\x4a\x76\x5d\x27\x97\xec\xc5\x6e\x0a\xa9\xbd\xdc\x5d\x26\x3e\x3b\x12\xc8\xaa\x9f\xb2\x91\x40\x5e\xfd\xe8\x50\x45\xb7\x8a\xec\xb6\xa2\xe3\x0e\xb9\x51\xc3\x13\x19\x8f\x55\x8c\xc5\x15\xe9\x98\x6d\xa6\xe8\x22\x7c\xab\x5d\xc8\x87\x54\x1a\xab\x83\xda\x2a\x65\x11\x8c\x40\x2d\x44\x83\xf8\xc9\x14\x32\xd4\x1d\x69\x77\x1b\xc8\xb3\x14\x2e\xe2\x26\x13\xbd\x18\xc6\x88\x4c\x4a\xf0\xa7\x21\x38\xed\x86\x0c\x85\x18\xc5\x3a\x95\x41\x08\xc0\x70\xce\x99\xbe\x97\x2f\x8c\xe9\x17\x0f\x35\x8f\x00\xd8\x95\x9b\x8d\xc8\x2f\x6c\x49\x70\xaa\x9a\x04\xa7\x79\x2a\x14\xed\xad\xc3\x11\x49\x6d\xc2\x4b\x9d\x4d\xa5\xcb\x7a\x3d\x85\x2f\xd5\xf7\xfc\x29\x04\x59\x21\xba\x08\xa9\x35\x98\xf3\xcc\x84\x2f\x52\x13\x5b\xa5\xd6\x90\xfe\x9c\x69\x53\x4e\x07\x4b\x49\x56\x6b\xd9\x91\xbc\xa3\xc3\x67\x26\x33\x99\x08\xd2\x61\x9c\x0d\xf4\x08\xcf\xa3\xdc\x2e\x1f\x80\x34\x0d\x15\x43\x78\x53\xd4\x4a\x28\xb9\xbf\x78\xbd\x26\xac\x3e\x4b\xe5\x5e\x7a\xd7\xd6\xc8\xda\x9e\xdf\xda\x17\x5d\x53\xbd\x90\x0e\x6d\x83\xee\x30\x34\x3a\x65\x0f\xc9\x29\xd3\x41\x77\x98\x1f\x74\x87\x4d\xed\x59\x71\x28\x91\x54\x2b\x5f\x35\x39\x76\x76\x90\x11\x28\x11\x57\x8e\x91\x93\xe7\xee\xf0\xd5\x0d\x9d\xc2\x7f\xc6\xd9\x0c\xcb\x70\x52\x96\xd5\x90\x99\x05\x9a\x96\xa3\xf7\x90\xaa\xb0\x64\x95\xf8\x36\xbe\x72\x39\x94\xdc\xfc\x00\x63\x9d\x33\xd0\x99\x88\x09\x52\x03\x31\xed\x67\xd9\x90\x55\x9f\x40\x3a\x05\x20\xdd\x27\xd8\x91\x26\xad\x42\xb8\x8a\x62\x9a\xcf\xda\x20\x15\xcd\x94\xba\x43\x1e\xf7\x82\x07\xe5\xbd\x16\xbb\xc9\xb4\x1c\xdf\x88\x58\x7d\x7c\x4f\xa4\xa8\x51\x20\x59\xbd\x8f\x73\x67\xce\x9f\x66\xcc\xcc\x96\x09\xfb\xf8\xf9\xf4\x07\x0d\xde\x9a\x4e\xbe\xad\x05\x7f\x82\xb5\xc0\x5c\x95\xc5\xd7\x90\x99\xc7\x19\xa1\x51\xce\x12\x34\xc7\x2a\x2d\xdf\x6b\xe7\x48\x84\x14\x8e\x00\xc4\x68\x74\x94\x45\x3c\xcc\xc5\x47\xaf\x17\x62\x5f\xbd\xca\x6f\xde\x02\xd8\xc5\x9b\x0d\x7f\x78\x62\xe7\xd0\xde\xbf\x35\x27\xb0\x23\x98\xa0\xc1\x89\xbd\xdd\x68\x93\x0a\x87\xf8\x98\x03\x70\x1a\x3f\xc4\xa7\x20\x9a\xf4\xfb\xc9\x14\x49\xcb\x59\x31\x8c\xfb\x88\x67\x32\x2c\x4a\x1b\x98\xe5\x4e\x95\x33\x59\x05\x56\xd1\x2f\xef\x92\xea\x63\xf1\x1a\x11\x93\x35\x4c\x2b\x11\x1f\x15\x44\x00\x89\xd9\x9f\x6d\x53\x17\x1f\x94\xd4\xc5\xad\x5b\x77\x4f\x9f\x8b\x0b\x4d\xe5\xfa\xe1\x67\xd6\xf3\x76\x11\x36\x9f\x35\xd4\xd9\x37\x21\xf3\xa7\x10\x32\x4d\x29\xeb\xee\x32\x7a\x19\xe6\x38\x01\x93\x51\x65\xe7\x64\xf3\x62\x03\x97\xe1\xa3\xc2\x23\x62\x0b\x2f\x80\x2c\x62\xb5\xce\x1a\x0e\xeb\x25\x82\x33\x4a\x38\x88\xa5\xe0\x78\xed\x6d\x2e\x07\x67\xa8\xa4\xf5\xbd\x5e\x4f\xb3\xd9\xd9\x90\xe8\x89\x24\x2b\x69\x4f\xbc\xe0\x8b\x7f\x04\xdb\x17\xdd\x4f\xa9\xb2\x28\x3c\xb4\x5a\xc5\x99\xc4\xb4\xec\xa7\x76\x6f\x33\x4f\x33\x04\xeb\x49\x61\x43\x11\xdf\x95\x89\xc0\xdb\xd4\x78\x67\x30\xc5\x30\x72\x8e\x2b\xa4\x5e\xb4\xca\x2a\x80\x0d\x09\xd0\xad\x59\xe5\xcb\x16\x63\x97\xd1\xc2\x86\x32\x76\xab\xfe\x19\xa9\x71\xe4\xca\x2d\x71\xa4\xd7\xb3\x79\x45\x61\x77\x04\xc6\xa6\xa3\x7b\xce\xb0\x99\x0b\x44\x1b\x77\x13\x74\xa7\xc9\x9d\x93\xd9\xe7\xb4\xb8\xcd\x90\xf8\xb6\x94\xfd\x39\x96\xb2\xa2\x51\x62\x8b\x0a\xe7\xe9\xc3\xc6\xcc\x47\x15\x4e\x28\x62\x90\xb9\x0b\x66\x90\x22\x13\xa4\x31\xa4\x00\x76\x4d\x94\x47\x9a\x4d\x53\x16\x0a\x52\x7b\x81\xa2\x13\x00\xe9\x80\x35\x29\xb7\x56\x64\x89\xdd\xa8\x5a\xf0\xcf\x96\xd6\xfb\x1b\x39\xff\x29\xc8\xf9\x5e\x9a\xd9\xee\xdb\x16\x6a\x35\x09\x06\x52\x9d\x58\xc6\xdd\x75\xbe\xe3\xc0\xf0\xee\x53\xab\xba\xc4\x7f\xcd\x84\x6f\x34\xbb\xc1\x79\x9d\xff\xe1\x96\xa5\x36\x1e\xe8\x3c\x3b\x9f\x25\x4f\xef\x37\x4e\xf9\xef\xc9\x29\x12\x09\x77\x1e\x24\x0d\xa7\x48\x73\x1e\x24\xf3\xf3\xa0\x92\x4a\xc5\x33\xfd\xc9\xbd\xa1\xf9\x09\x91\x5b\x3a\x1a\x78\xac\xe6\x14\xe8\xfc\xe6\x35\x96\xcb\xda\xd3\x23\x73\xd1\xe0\x8e\xf3\x21\x53\xbf\x99\x43\x1d\x7c\x07\xed\x4e\xbb\x89\xad\x50\x77\x30\x67\x40\x80\xea\xe2\x49\x00\x68\x79\x76\x7f\x44\xa2\x98\xd8\xeb\x17\x96\x9a\xdd\x19\x5f\x1e\xd8\x5c\x80\xb3\x20\xbb\x70\x90\x45\x5b\x15\x67\x35\x47\xca\xc2\x37\xeb\x40\x02\x40\x9a\xcf\x31\xf3\xf4\x68\x59\xd6\xa3\x9d\x71\x1d\x0a\xbf\x4a\x45\x91\x76\x70\x53\x7b\x4c\xb0\x6d\x13\x3a\xfc\x1b\xc1\xb3\xe5\x30\xe8\x13\xc8\x9c\x77\xc3\x76\x84\x50\x93\x53\xf7\x6b\xec\x54\x4d\xcf\xbf\xe9\x17\xdf\xa4\xe6\x97\xd3\x2f\xca\x5f\x66\x38\x8a\xce\xf5\xf1\xf8\x1d\xb6\x51\x5b\x6e\x0b\x87\x64\x90\xee\x94\x6f\x59\xd1\x03\xc9\x31\xb9\x55\x26\x04\x90\xb4\x13\x05\xf2\x6b\x8a\x02\x36\x2f\x69\x5b\xdf\x64\xc1\x37\x59\xb0\x8b\x2c\x68\xe5\x51\xf3\x47\x52\x87\x5a\xab\x41\x47\x65\x09\x71\x50\x2f\xc5\xf2\x29\x57\x59\x8f\x68\xd0\xda\x1a\x5c\x2e\xb7\x2a\x6d\xa5\x93\x6f\x09\x86\x8a\xef\x7f\xd4\x9e\x01\x20\xdd\xc9\x4d\xf1\xb0\xd2\x27\x52\xc4\xfa\xb9\x9c\xb4\x21\x19\xda\x06\xbe\x19\xf1\xfe\x2c\x92\xa8\x68\xc4\x6b\x72\x7b\xae\xb3\x56\xfb\xe9\x4c\xad\xf7\x8d\x08\x75\xb4\x2e\xc5\x90\xe4\xee\xb3\xe7\x7a\x19\xc7\x9a\x4e\xba\x2a\x12\x8d\x01\x28\x3e\x8f\xf9\xa4\x3d\x43\x5d\x08\x9e\xac\xbf\xad\xe7\xff\xe4\x5c\x54\x74\x23\xdc\xea\x22\x51\x93\x99\xbf\x62\x04\x28\x06\xaf\xcf\xbd\x6f\xab\xbe\xdb\x19\xcf\x14\x53\xd0\x65\xb9\x41\x4d\xea\x56\x96\x2f\xac\xce\x88\xa2\x63\xa9\xb9\xe5\x09\x40\x31\x09\x82\x3e\x9b\x22\x6d\x97\xd4\xf3\xa3\x5d\x35\x44\xfa\xb5\x77\x2d\x15\x15\xe5\x0b\x29\x22\xa4\x95\xe6\x71\x97\x46\x21\x40\x3b\xcd\xc4\x79\xe7\x7f\x15\x9d\x60\x89\xe3\x81\x62\xd2\x96\x06\x60\xf7\xd7\x54\xf9\x02\xa7\xba\xf5\xa6\x66\x73\x13\xb9\xfe\x5c\x97\x9a\xb3\x54\x63\x44\xaa\xb8\x2f\x3e\xa8\x75\x5f\x7c\x30\xed\xf5\xfc\x5f\x90\x9b\x53\x52\x35\x4c\xa0\x2f\x3e\x53\xc7\x88\xdd\x62\x20\x7b\x0e\x09\xa4\x9e\x9d\xd2\x19\xd6\xf8\x5e\xe7\xb5\x4b\x1c\xbf\x24\xd7\xb2\x7c\x5c\x2b\xf6\x3d\xae\x55\xb3\xbb\x16\xe4\x92\xf2\xa4\xed\x79\xbc\xfb\x9b\x57\xfb\x6f\x3f\xcb\x6e\xa8\x5f\x78\xa6\x5f\xdb\x66\x0f\x36\xdb\x94\x7d\xc6\xc3\x79\xca\xbe\x1d\xce\xff\x59\x34\x92\xaf\x7b\x38\xdf\x3f\xec\xe1\x3c\x65\x92\x88\x98\xcc\xda\x2e\x51\xf7\xbd\x6d\x71\x8f\xab\x62\x75\xa7\x1f\x99\xb1\x32\x1b\xc7\x8e\xa3\xbf\xe4\x1f\xdb\x7a\xb9\xed\xc5\xd6\x0a\x7e\xc6\xd9\xa6\xcf\x6f\xde\xfe\xfa\x7a\x88\xa3\xa8\x8e\x8e\x20\x43\xa1\xa8\xb8\xcd\x09\x70\x26\x7c\xb7\x39\x01\x14\xdd\x30\x45\x69\x1c\xb1\xcc\x6d\x0e\x62\xc4\x6d\x0a\x9d\xda\xcd\x26\x06\x67\xd5\xeb\x76\xdb\xaf\xe7\x4a\x71\xf3\x5c\x8f\x21\x24\x3a\x22\x57\x7e\x6b\x44\x47\xe4\xab\xe6\x72\xa9\xd4\xc3\xa6\xde\x41\x89\xf6\xbf\x38\xfd\xcc\x97\xe1\xbf\xc9\xe0\x3f\xb8\x0c\xfe\x8c\x7b\x27\x37\xa5\x2c\x17\xd6\x01\x0c\x1a\xcf\xc2\xf5\xbe\x4e\x07\x99\xfe\xca\xf6\x92\x15\xfe\x66\x2d\xf9\xc6\x17\xff\x9c\x36\x85\x2f\x78\xb8\xa1\x16\xcc\x1f\x6f\xbc\x63\xd1\xaf\x66\x5d\x58\xe1\x6f\x7e\x95\xdf\xb8\xfd\x4f\xe0\xf7\x70\x17\xbf\xef\xe7\xf5\xf0\x85\x79\xfe\x8f\xc0\xf1\x3b\xd8\x12\x8d\xed\xe7\x82\xc8\x81\xcd\x5d\x79\x6f\x43\xd3\x2e\x57\x3f\xb2\x98\xed\xfb\x1a\x8f\x68\x69\xbb\x27\x20\x31\x71\x48\x7d\xe3\x7b\x9e\x62\xf5\x44\x89\x9b\x6e\x79\xb3\xed\x64\x0c\x45\x08\xf1\x33\x92\xdd\xc7\x12\xc0\x4b\x9f\xd9\x3f\xd9\xcb\xc4\xa4\xa6\xa2\x7c\x8d\x5c\xec\x7b\x8d\xdc\xf4\x66\x80\x3f\xd7\x0d\x46\x48\xb2\x01\x7f\x33\x33\xfd\x59\x84\xbb\x6f\x1e\xb0\x13\x52\xbe\x14\x95\x4d\x48\xf9\xce\xb4\xe7\x1d\x91\x51\x3a\x01\xfb\xde\x59\x76\x12\xa4\x76\xdb\x52\xe7\xc0\xaa\x65\xa9\xa9\x55\x5d\x18\xec\x69\xdd\xe1\xee\x2b\xdb\xee\xd5\xb8\xda\x94\x97\xae\x3f\xce\x8d\x65\x13\x34\x07\x47\x9f\x91\xe1\x6d\x0b\xdf\x18\xfe\xcf\xc8\xf0\x4d\x57\x93\x6b\xfd\xc9\x45\x5d\xc4\x71\x72\x58\x9b\xdb\x9a\xae\xeb\xe2\x50\xb6\x39\xeb\xa2\x6b\xd2\x4e\xfd\x28\x46\x62\xbc\x43\xdf\xd8\x6b\x4f\xc3\x90\x1c\xaa\xfe\x1c\x65\x4b\x75\xaf\x17\xb2\x49\xf6\x6b\xaa\xb3\x1f\x6c\xc7\xdb\x6e\x4b\xbb\x19\xfd\x6e\xf7\x7f\xd6\x82\xaf\x68\x5c\x8d\x6c\xdd\x18\xb7\x28\xbf\xde\x5a\xd4\x9a\xb4\x7b\x91\x5c\x12\x16\x0a\x30\x16\x95\xa8\x43\x07\x0a\x42\xe3\x09\x96\xfc\x06\x76\x25\x8e\x11\x43\x6e\xd5\x82\x14\x8d\x4e\xe9\x43\x79\x4a\xfb\x7d\xc0\x26\xd4\x8f\x63\x44\xa7\xb9\x4b\x46\x8d\x5f\x14\xa4\x19\x7d\x8f\x10\x42\xf4\x4c\x16\xaf\x88\x33\x3d\x4c\x7d\xb9\xd7\xa5\xd7\xdb\x47\xb9\x33\x76\xfb\x9f\x6c\xc3\x48\x40\xa2\xa9\xa6\xa0\xef\x1d\x80\x34\x76\x3b\x3b\xfe\x6f\xa9\xd1\x6f\xd5\xdb\xcd\x14\x37\xe8\xed\x83\xfd\xf4\x76\x87\xf4\x83\xe9\xee\xff\x48\x48\xf2\xd9\x39\xfc\x73\xf2\xaa\x68\xe6\x55\xe1\x78\x55\xec\xce\xab\xa2\xc2\xab\xa2\xc2\xab\x75\x17\xf4\x9b\x24\x58\x8d\xca\x59\x86\x97\x82\x71\xf5\x9d\xf1\x0b\xbe\x97\x38\xd0\x53\xac\xa5\xc0\xe1\xd6\x53\x61\x72\x47\xee\x40\x36\x3a\xc8\x8d\xa0\x71\x65\x69\xbc\xbf\xae\xa8\x3b\x83\xd8\xb7\x4b\xa2\x7f\x32\x45\xd1\xf3\x52\xb4\xf7\x3f\xf3\x63\xe1\xc9\xc9\x14\x62\xc4\x26\x0f\xa6\x47\x18\x05\xe7\x9c\x47\x04\x2b\xad\xd1\xd2\xae\x52\x1e\x5f\x2d\x42\x0c\x7a\x3d\x7c\xe4\x72\x12\xa9\xd9\xa3\x0f\x39\xc8\x73\x0d\xe0\x33\x39\x8c\x24\x19\xab\xff\x61\x84\xe8\x69\x12\x46\x90\x03\x3f\x61\x51\xa4\x85\x38\x7d\x94\x57\x9b\xe9\x6a\x17\xba\xda\x85\x84\x0b\x44\x4f\x67\xe1\x42\x55\x5b\x0c\x06\xae\xda\x22\x3b\x4a\x8e\xef\x50\x54\x77\x93\xc7\x46\x12\x7d\x33\x8c\xff\x53\x73\xc8\x97\xbc\x04\x54\x63\x05\x6f\x73\x43\x88\x32\x2a\x29\x8e\x7e\x6d\x73\x1b\x68\x97\x8b\x83\x25\xc0\x15\x8b\xba\x06\x5e\xf5\x94\xce\x0d\xeb\x35\x77\x6f\x0a\x20\x6b\xee\x1b\xca\xbd\xee\x4d\xd7\xbb\xf8\xd6\x9b\x97\x7c\x27\x6c\x67\x41\x72\x4a\x87\x4e\x5c\xd1\xee\x76\x22\xfb\x7a\xb7\x13\x05\xd1\x36\xde\x6f\xd1\x20\xbe\x89\xb1\x6f\xd1\x20\xbe\x45\x83\xd8\x16\x0d\xa2\xdb\x2a\x1a\x44\x77\x9f\x70\x10\x45\xb8\xff\xed\xa2\x41\x08\xb2\x26\x9f\xf3\x14\xcd\xc0\xff\x66\x52\xff\xb3\x08\xd0\xd6\xae\xda\xd6\xba\x6e\xd3\x38\x76\x4b\xbb\x24\x06\xce\x26\x74\x6a\x5d\x70\x8d\x81\x81\x25\x51\x04\x6f\x0d\x7a\xc6\x2c\x2d\x85\x5b\xcf\xe8\x81\xa6\x8d\xa7\x6e\xfb\x99\x0d\xc8\x25\x11\xf1\xb7\xed\xcd\x3f\x37\x59\x7f\xcd\x48\xb7\xda\x0c\xeb\xb2\x3f\x0d\x2d\x3d\x86\x00\x8c\x27\x62\xfa\x55\xfd\x5f\xe3\x65\xb2\x58\x44\x9f\xd1\x9b\xdf\x36\xf0\x4d\xfa\xff\x59\xd8\xa4\xec\x41\x41\x10\xc9\xf3\x96\x19\x5c\x16\xf6\x95\xce\x9d\x28\xbb\x9e\x93\xe9\xbe\x3a\x6e\xbc\x44\xbe\xfe\x56\x5c\x21\x24\xe8\xf5\xe4\x66\xa3\x43\xdb\x0b\xcc\xe6\x7c\x75\x2a\x1e\x9d\x9c\x02\xe6\xe7\x40\x96\x21\xf8\x41\x0c\x06\x00\x52\x44\x26\x62\x0a\xd5\x7f\x88\x4c\x98\x7a\x62\x53\x44\x33\x73\xfa\xfd\x2e\xf8\x3f\x28\x99\x01\x8f\xca\xb7\x89\x78\x83\x66\x9f\x6f\x06\x1a\xc5\x00\x07\x50\x84\x1c\x52\x3f\xba\x35\x9f\x7e\x5d\xc7\x77\x3d\xa5\xdf\x56\xc4\x7f\x6a\x56\xff\x3a\x51\x7f\xb8\x0b\x34\xaa\xf6\x3c\x5f\x95\x05\xb8\x28\x9b\x96\xbe\x31\xc1\x37\x26\x68\xcb\x04\x59\xfa\x20\x9d\x4c\x5b\x5f\x21\x84\x14\xc9\x50\x14\x94\xc5\xb0\x79\xf9\xa3\x60\xb3\x29\x9b\x8f\x34\x9a\x51\x8d\xdb\x78\x1e\x63\xa6\xfc\x45\x91\xb1\xa2\xc7\x78\x7b\x66\x85\x14\x66\x05\x9b\xf9\xcc\x83\x75\xa7\x75\x28\x2f\x5b\x75\x2b\x77\x76\xb1\x3b\x8d\x40\xb0\xc6\xba\xb3\x4f\xac\x8b\xa1\xea\x8d\xef\x6d\xbe\x8f\xc3\x7a\x01\x86\x3f\xbe\xaf\xe6\xbb\x2e\xf1\x67\xbb\x69\xfb\x4d\x3e\xfd\x37\x97\x4f\xf7\x0b\x03\xae\xdd\x40\xbe\xe6\xea\x2c\xf9\xc5\x45\xb4\xa7\xf7\xa4\xa9\xfb\x47\xf2\x9f\x34\x3d\xba\xaf\x07\x65\xfb\x30\xea\x0e\x03\x5f\x32\x15\x8d\x55\x02\x2d\x01\x3d\x00\x35\xee\x53\xe5\x95\x84\x5a\x6f\xb6\x6a\x04\x13\x77\x28\xc3\xbd\x04\xc3\x7e\x58\x2b\x2f\xde\x9b\x4e\x44\x2c\x37\x1b\xd9\x57\x0f\xe4\x6c\x34\x96\xfd\x93\xd4\xb3\xed\x73\x6f\x97\x2a\x6b\x92\x6f\x53\xc8\x20\xd7\xf9\x86\x6a\x3f\x75\xc9\x7e\x1e\x50\x66\x0e\x0e\x9c\xcb\x26\x61\xed\xd9\xe1\x8f\x1a\x77\x42\x8f\x61\xa7\x51\x5f\x51\xb9\xe4\xc9\xbe\xf1\x36\xbe\x4e\x02\x9f\xda\x74\x3c\x56\xd2\x96\x55\xc1\xe6\xbc\x3c\xb2\xe2\x25\x28\x21\x6b\x58\xab\x33\x5f\xc0\xc6\xc4\x41\xfa\x98\xeb\x4c\x8e\xa5\x8b\x90\xc8\x6c\x78\x44\xef\xee\x8b\xc5\xb5\x5a\xbf\xf7\xa1\x7a\x5b\xfd\xde\xd9\x42\xad\xbf\xee\x4e\x72\xdf\xe5\xc0\x6d\x9d\x83\xb4\x45\xee\x28\xbc\x22\x11\xfd\xb4\x75\x31\xc9\xcb\xae\xa9\xc4\xad\x4b\x9b\x64\x9f\x2d\x0a\x46\x38\x8e\xe9\xa2\x5d\x77\x5d\x52\xbf\x1d\xd2\x95\xed\x92\x40\xab\x45\xe6\x1a\x1c\x2f\x89\x68\x89\x03\x9d\xbc\xa9\x6d\x36\x9c\x9d\x92\x87\xb4\x0f\x82\xbf\x43\x8c\xec\x5d\xe2\x6f\xb6\x0c\x8e\xb5\x53\xb4\xa1\xf6\xc1\x79\xda\xc6\x83\x69\x1f\x21\xa3\xe5\xd5\xfa\x5d\x6e\x71\xdd\xff\x1a\x4c\xed\x45\x9b\xd6\x7e\xc4\xed\xfd\x22\x77\xf2\x54\x6a\x7f\xe2\xbe\xc3\xf9\xcc\x0e\xe6\xac\xb6\xdb\xca\x43\xe8\xd1\x0d\xda\x7a\x8b\x0a\x22\x51\x0b\x50\x2b\xe0\x09\x9b\x13\x11\xcf\xb8\x68\x59\xba\x65\x17\xae\x5a\x15\x72\x9a\xc7\x0e\xc1\xac\x77\xba\xbb\xdc\xda\x54\xdf\x02\xa7\x54\x46\xa4\xa5\xe4\xbd\x2b\x5c\x66\xc6\x59\x2d\x82\x2e\x66\x7f\xb3\xc8\x9d\xbb\xc6\x81\x6c\x7b\x63\xa4\x1a\x8d\x11\x52\xc8\x21\x86\x31\x4c\x60\x04\x67\x70\x01\xd7\x70\x09\xe7\x70\x05\x2f\xe1\x0d\xbc\x80\xe7\xf0\x03\xbc\x82\xd7\xf0\x19\x7c\x05\xdf\xc2\x27\xf0\x31\xfc\x08\x5f\xc0\xd7\xf0\x1d\x7c\x03\xff\x0b\xbe\x84\x3f\xc3\xa7\xf0\x39\xfc\x09\x7e\x82\x7f\x87\x3f\xc2\x7f\xc0\x5f\xe0\x6f\xf0\x57\xf8\x6f\xf0\x5f\xe0\x77\xf7\x55\x86\x1b\x2b\x3c\xd6\x5a\xca\xdf\xad\x12\x7a\x4b\x58\xb2\x32\x5b\xff\x71\x77\x04\x2f\x88\xac\x09\x10\x96\x69\x4f\xe9\x56\xc0\x4a\xa9\xd9\x09\xae\x68\x05\xf7\x89\xd5\x81\x76\x02\xcd\x5a\x82\x76\x2a\xd3\x4e\xc0\x69\x3b\xe0\x4a\xc3\xda\x09\x2e\x6f\x07\xd7\x2a\x64\x3b\x81\xc6\xed\x40\x1b\xfd\x6d\x27\xc8\x71\x6b\xc8\x89\xdc\x0d\xcd\x49\x4b\xc8\x46\x3b\xdc\x09\x74\xd4\x0a\xf4\x53\xa7\x4c\xee\x04\x7b\xd6\x0e\x36\x99\xed\x04\x75\xd1\x0e\xaa\xe0\xeb\x9d\xc0\xae\x5b\x81\xfd\x49\x2b\xab\x3f\xee\x46\x72\xcb\x1d\x40\xef\x04\x78\xde\x12\x30\x9b\xef\xd8\xe3\x55\x2b\xc0\xff\xa2\x94\xec\x1d\x21\x5f\xb6\x82\xfc\x9c\xed\x46\x13\x37\x2d\xa1\x5a\x0d\x7e\x27\xd8\x17\x2d\x61\x2b\x85\x7f\x27\xc0\xe7\xad\x00\xff\x2b\xa7\x6c\x27\xb0\x1f\x5a\x81\x7d\x81\x77\x9d\xb9\xab\xb6\x70\x77\x82\x7a\xdd\x0a\xea\x2b\xbb\x57\xd9\x09\xf4\xb3\x56\xa0\x5f\xd3\xf5\x6e\xd3\xf6\xaa\x35\xd8\xc7\xba\xe6\x4e\xc0\xdf\xb6\x02\xfe\x46\xed\x9b\x76\x82\xfb\xa4\x1d\x5c\xbd\xcd\xda\x09\xf0\xe3\x96\x80\xd5\x87\x1d\x09\xee\x63\x4b\xd0\x6a\x0f\xb7\x13\xe0\x17\x1e\xe0\x66\x7d\xf2\xad\xd9\xf2\xed\x04\xf9\x75\xab\x2e\xbf\xe5\x62\x57\x5c\xbc\x6b\x05\xf8\x1d\xde\x51\x04\xbd\x69\x07\x56\x6f\x2a\x77\x02\xfc\x5f\x3b\x00\xde\x83\x4d\x5e\xb6\x03\x6f\xf7\xb6\x3b\x81\xfe\xb9\x15\xe8\x5f\xb2\xad\xf0\x4e\xc0\x9f\xb6\x04\xbe\x2b\x3e\x9e\xb7\x82\xfb\xdb\x4e\x30\x7f\x6a\x07\xd3\xec\xcb\x77\x82\xfc\xa9\x9d\xda\x62\xb6\xf1\x3b\x41\xfe\x7b\xbb\xd5\xc4\xc6\x61\xd8\x09\xf4\x8f\xed\x58\x3b\xa2\x3b\x0a\xd0\x7f\xb4\x23\x65\x6b\x52\xd8\x09\xf4\x2f\xad\x40\xbf\x24\xd7\xbb\x61\xe2\xb7\x76\x0b\xa0\x35\x2a\xec\x04\xfa\xd7\x56\xa0\xff\x6e\x72\x61\xec\x04\xf9\xdf\xda\x42\xde\xab\xdf\xff\xd2\x0a\xfa\xff\x4a\x48\xb2\xdb\x0c\x7e\xe7\xc1\x6d\x73\x58\x53\x09\xb6\xf0\xd9\xfc\xc9\x23\x49\x6a\x0f\x81\x3b\xe4\x21\x92\xa9\x2e\xd0\xf4\x5d\x7f\xbe\x68\xac\xff\x08\xd9\x02\x4d\xdf\x35\x92\x5b\xa2\xc2\x8b\x38\xf3\xd5\x2f\xae\x7a\x07\x71\x1e\x54\x9d\xc9\xc4\xdc\x64\x13\x47\x4c\x47\xed\x76\x87\x80\xc4\xa4\x07\xac\x89\x70\x5f\x8a\x33\xa2\x81\xa4\xc0\xb8\x39\x70\xbf\xbe\x3b\xb4\xcf\x52\x97\x74\xf8\x23\x34\x3a\xe3\x63\x96\x44\xd1\x0e\x78\xcc\x8e\x60\x3f\x1b\x41\x55\x51\xe3\x47\x64\xd2\x59\x46\x74\x0f\x36\x1b\x9d\x56\x4e\x5b\x3a\xe0\xb6\xf0\x2f\x8f\x4e\xce\xc4\xe0\x64\xac\xd3\x54\x9c\xf8\x61\x60\x06\x27\xf5\x81\x60\x5c\x38\x26\x62\x6f\x5a\xb7\x45\x8d\x23\x96\x2f\x88\x1a\x8f\x1f\xf6\x0c\x69\x74\xf6\xaf\x6f\x5f\xbd\x1c\xaa\x4e\xb1\x0b\xba\xb8\x09\x09\x40\x08\x95\xde\x49\x77\x1e\x4d\xe3\x67\x6a\x84\xba\xdd\xdc\x57\xd2\xbc\xd3\x57\x31\x77\xc2\x96\x31\xba\x7f\x59\x4a\xb2\x57\xe4\x6c\xd3\xd5\x63\xff\xcd\x26\xc8\xfc\xbd\xaa\x5f\x77\x1b\x9f\x8b\x8f\xb4\xa3\xc4\xb1\x7d\xfb\xfc\x22\xa7\x29\x58\x51\xaf\x57\xf1\x10\xda\x33\x64\xd3\x6d\x5a\x13\xf1\xaf\x84\x54\x1d\x18\x09\xf4\x7a\xdb\x8a\x68\xff\x40\x90\x36\xce\x40\x22\xc9\x7c\x10\xcb\x9b\x88\x1c\x17\x7f\xd6\xe0\xbe\x82\x58\xeb\x9d\xe7\x30\xe0\xbc\x66\x21\xf3\xde\x5d\x10\x09\xa9\xf7\xdb\xb5\x02\xb9\xf7\xf2\xad\x66\x98\xe1\x52\xae\xa2\xb7\x78\x41\x20\xae\x7e\xcb\x0e\xe3\x61\x8c\xec\x1c\x7e\x24\x37\xf1\x91\x89\x53\x73\x8b\x19\x5d\x61\xd5\xb3\xe7\xda\xbd\x92\x72\xf6\x84\x27\x4c\x2a\xbd\xe0\x9c\x5f\xff\x14\x91\x6b\xef\x51\x5b\xdd\xec\xef\x57\x62\x4e\x19\x8e\xb2\x57\x33\x1e\x25\xab\xbc\xf2\xc2\xd6\x5c\x98\x6a\x57\xee\xf9\x35\x8f\xa9\xa4\x97\xc4\xfd\x7e\xbb\x14\x94\x7d\x74\xbf\x5e\x92\x0b\xec\x7f\x7d\x25\xe6\x44\x68\x1d\x45\xd0\xf9\x1b\x03\x45\x3d\x3e\xd1\x8d\xe9\x52\x9c\xc9\xdf\x08\xbd\x58\xea\x56\x23\xca\xc8\x93\x08\xaf\xd6\xee\xc7\xdf\xb3\x4f\x7c\x8d\x67\x54\xde\xe8\x47\x07\x95\x8b\xf5\x12\xb3\x58\x3d\x4a\x7c\xfe\x96\x7e\xd2\x0d\x5f\xd1\x39\xbf\xd2\x2f\x3f\x3d\x57\x6b\x98\x7e\xe2\x7c\xa5\x9b\xa3\x51\xf4\x2a\x87\x14\x4b\xbe\x2e\xfc\x14\xfc\x23\x79\x8a\xe3\x25\x5f\x2c\x62\x22\xf3\x77\x95\x42\xbf\xd1\xb9\x5c\x2a\x46\xd1\x13\x11\xa1\x49\xf0\x1b\x39\xff\x48\x65\x00\x83\x95\x22\x9c\x17\xfc\x53\x00\x83\x57\xc1\x34\x77\x2d\x9a\x79\x51\x2a\x63\xb5\xc2\x16\xae\xce\x4a\x77\x95\xa9\x56\x54\x8b\x50\x82\xb3\x20\x18\x9b\x4c\x49\x4a\x94\x8e\x8c\xc7\x5c\x32\x5c\xe2\xf8\xd5\x15\xcb\x39\x1a\xf4\x7a\xc9\x84\x4c\xcf\x82\xa0\x2f\xc7\x61\x60\x64\x72\xee\x9a\x2d\x7b\xbd\x50\x22\x39\x94\x82\xae\x42\x00\xa0\xec\x07\xeb\xeb\x00\xa4\x4a\x1a\x4f\xe4\x34\x5b\xec\x45\xc8\xc0\x99\x5a\xea\xc7\x38\x94\xa0\x1f\x8c\x83\x3e\x4b\x81\xbb\x23\x5f\x15\x09\x1d\x55\xb6\x8b\x10\x49\x81\x49\x0b\x12\x9c\x06\x20\x8d\xc3\x04\xd4\xe6\x98\x8c\xaa\x6f\x25\xb8\x4d\x26\xf5\x8a\x5b\x5f\x0e\x67\x4b\x2c\x1e\xcb\x70\x04\x86\x92\xff\xb2\x5e\x13\xf1\x04\xc7\x24\x04\x7d\x39\x8c\x93\x73\x33\xc8\xf0\xc4\x0c\x03\x4c\x91\xc2\x80\xd2\x7b\xf5\xec\x2c\xe0\x1a\x85\x0b\x54\xf6\xaf\x95\x68\x32\x3d\xd2\x13\x51\xe9\x8a\x00\xb7\xd2\x78\x22\xcf\x42\x32\x11\x53\x00\xb2\xe0\x21\x32\x1f\x5d\x86\x2a\x27\xe2\x4e\x7a\xbd\xe0\x34\xe8\x22\x24\x5c\x77\xdd\xa7\xc1\x89\xf6\x6e\xee\x23\x55\x0f\xf2\x50\x80\xd4\xf7\xb4\x75\xda\x4a\x55\x6c\x42\x89\x9c\xd3\x36\x14\x68\x74\x2a\x1e\x92\x53\xd1\xef\x03\x39\x11\xbe\x2a\x22\xa6\x56\x81\xa3\x35\x97\xb1\x17\x56\x3b\xd1\x8e\xc2\x25\x0c\xe7\xd1\xf0\x6e\x53\x17\xa0\xd2\x36\xad\x95\x1e\x31\x91\x13\x3a\x9d\x22\x5d\x7c\x42\x3d\xfa\x48\x0d\x3c\x09\xa6\x5e\x7a\x24\x3e\x5c\x5b\x42\xb4\x6d\x72\x28\xd5\x67\x92\xc9\xbf\xb7\x4a\xc8\xa2\xf5\x5d\x42\x79\xab\xe6\xdd\x2c\xbc\xcb\x92\x3a\x5f\xc4\x64\xb1\x07\x95\xf6\xe7\x84\xac\x07\x31\x91\xd5\x96\x3f\xbb\x46\x16\xc3\x24\x3f\xbe\xac\x9b\x3f\x4f\xe5\x07\xb7\x32\x0c\x26\xc5\x2e\x4f\xb5\xf7\xb9\x51\x02\x3a\x6b\x1c\xc7\x64\xde\xa1\x2c\x80\x38\x24\x8a\xc1\x6b\xca\xff\xe7\x47\x72\xf3\x9f\x9d\x55\x12\xcb\xce\x39\xe9\xe0\x8e\x15\x12\x30\x97\x16\x88\x86\x02\xe8\x28\x82\xb1\xda\x3e\xc6\xc3\x78\x1d\x51\x19\x06\xc3\x3c\xfe\x50\xe1\x1c\x9f\x42\x6e\xb8\x2a\x36\xa4\x02\x6f\x53\x00\x23\xc4\x27\xb4\x7f\xa2\xf4\xc7\x30\x06\x67\xf1\xd8\xfd\xec\xea\xdf\xb7\xe9\x38\xc9\xc5\x8d\xaa\x14\x81\x14\x12\x00\x93\xb4\x90\x39\x4c\x8d\x48\xc8\x2c\x84\x49\x4c\x24\xf4\xd2\xd3\xfe\x46\xe5\xf2\xa9\x41\x6a\x96\xa4\xd6\xa8\x01\x59\xd8\x7c\x91\xb0\xe7\xec\x29\x39\x4f\x2e\x72\x69\x8c\x6b\x75\x3b\x5a\x55\xe8\x68\xad\x0e\xa1\x76\x87\x33\xce\x16\xf4\xa2\x8e\x54\x67\x9c\xc5\x49\x34\x48\xe8\xb1\x2d\x43\xd8\x25\x15\x9c\x29\x66\x3d\xb0\x9a\xd6\x58\xc1\x12\xda\x1e\xee\x09\x95\xc1\x2e\x05\x59\x0c\x24\xcf\x3d\x3f\xcc\xef\xbd\x7c\xd3\xeb\x6e\xa3\x78\xbb\xb5\x11\x14\x4e\xe0\x59\x31\x04\x4e\xe5\x43\xf7\x7c\x2a\x8d\x48\x9a\x22\xb5\x56\xe5\xa2\xc8\x9d\x28\xe4\x7e\xed\x7e\xcc\x5f\xe1\x6b\x6d\x19\xdd\xbc\xba\x62\x44\x28\xe9\x1f\x71\xfe\x31\x59\x87\x41\x4c\xc4\x25\x9d\x91\xb1\xe0\x89\x24\xc2\x44\xc6\xc9\x34\x56\x91\x77\xb2\x1a\x0b\x16\x52\xdb\x67\xf6\xe8\xc1\x19\x1b\x3c\x50\x3b\x47\x8e\x1e\x9c\xf2\x87\xec\x94\xf7\xfb\x80\x4e\xf8\xe0\x81\x2f\xae\xb9\x11\xd7\x18\xd1\x09\xcd\x56\x88\x29\x8c\xd1\x6d\x7a\x84\x7b\x3d\x3c\xa4\xf1\xff\x4a\x88\xb8\x79\x8d\x05\x5e\xc5\xbd\x5e\x18\x23\x6a\xee\xa7\x01\xab\xf8\x79\xc3\x4f\xf4\x4a\x65\xe5\x6d\x02\x29\x80\xe6\x4d\x78\xfb\x8f\x1c\xc6\x38\x36\x57\x6a\xe2\x14\x40\x31\x4c\x44\xf4\x13\x77\x31\x43\x05\x4c\xf6\xf3\x8e\x57\x64\xf0\x8e\x37\x07\x08\x6d\xbe\xe0\x92\x19\x2e\x20\x47\x21\xad\x5c\x52\xa0\xe0\x8c\xfa\x97\x14\x28\xd0\x49\xfe\x26\x23\x85\x22\x9e\x25\xfe\x3b\xca\xfc\x54\xd6\x7a\x8c\xe5\x48\xab\x13\xb5\x40\x4d\x9d\x9f\xb4\x0c\x5d\x39\x00\x2a\x01\x53\x75\x51\x88\xbd\xc2\xaa\xd4\x56\x5e\xd8\x89\x07\xee\x7f\xb5\x2b\xa3\x66\x52\x5e\xb8\x95\x52\x90\xad\xd9\x4a\x37\x70\x77\xe2\x95\x56\xc0\x86\x39\xf7\x23\xff\xc7\x66\xd3\x3d\x81\x6c\x68\xe4\x53\x62\xbe\x77\x47\x2e\x2c\x14\x65\x1d\x9d\x7b\x73\x78\x25\xa8\xb4\xdf\x9a\x65\x0d\x53\x5b\x12\x6d\xfa\x28\xaf\x58\x36\xdd\xae\x63\xd4\x5e\x8f\x84\x52\xa9\x08\x92\x2b\x11\x0d\x05\x80\x4c\xbf\x83\x0c\x40\x59\xcd\x7b\xee\x0d\x5a\xee\x11\x8a\xf9\xcc\xff\x31\x16\x43\x89\xc5\x05\x91\xa7\x61\xe5\x7e\x5c\x37\xcc\x2f\x6d\x29\x1d\x19\x80\xda\x3b\x60\x4f\x30\x63\x5c\x76\x66\x38\x8a\x3a\xb8\xa3\x9d\xba\x3b\x38\xee\xe0\x6c\xbc\x01\x48\x81\x51\x8b\x08\x80\xfa\xfa\x94\xa2\x32\x3a\x33\x3b\x34\xdb\x00\x92\xe6\x13\xb9\x24\x4c\x22\x61\x7e\x98\xae\xd9\x58\xb4\x14\x79\xef\x86\x58\x4a\x41\xcf\x13\x49\x62\xcd\x71\x47\xfa\x5b\x22\x22\x44\x7b\x3d\x6a\xb8\xda\xe1\x5d\x86\x04\x4e\x6e\x3f\x92\x9b\x71\xb0\xc2\x37\xe7\xe4\xef\x98\xcd\x15\x65\x19\xc2\x2a\x5f\xed\x8a\x97\x3c\x89\xe6\xa6\x4c\x08\x7a\x3d\xfd\x72\x69\x7f\xa6\x29\x34\x80\xfc\x52\x35\x90\x5c\xcb\xaa\x2e\x8d\x7f\x61\x2b\x3e\xa7\x0b\x4a\xe6\x3f\x93\x85\x7c\x12\xd1\xd9\xc7\x0c\x32\x8d\x5f\x72\xf9\xfc\x82\x71\x41\xe6\x5e\x73\xf1\x4b\xfe\x4e\x0f\xf4\xc7\x08\xb3\x8f\xc5\x0f\xfe\xf9\x5e\xf1\xcb\x53\x7e\xc5\x22\x8e\xe7\x45\xe8\x3f\x53\xf6\xf1\x09\x5f\xad\x39\x23\x4c\x66\x9f\x04\x99\xf1\x0b\x46\x3f\x91\x5f\x44\xe4\x0d\x6c\xb9\x15\x39\x1f\x2e\x88\x7c\xa3\x57\x82\x10\x0c\xa5\xc0\x4c\xed\x7b\x39\x7b\xc7\xf5\xfc\xaa\x05\xe4\x17\x11\xd9\x23\xac\x37\x9c\x4b\xbd\x97\xca\xa6\x55\xc7\xdb\x26\x4c\x5a\xc5\xc4\x6b\xb5\x16\x47\x35\x9d\xc8\xa3\x56\x1a\x88\x59\xfe\xe8\x8c\xd2\xc9\xf0\x6a\x49\x67\xcb\x5e\xef\x24\xff\xa1\x4d\x9c\x52\x44\xff\x46\x6e\xd4\xe3\x8a\x48\xfc\x6f\xe4\xc6\x1f\x73\x11\xdd\xdb\x1b\xae\x12\xa0\x79\xe3\xfa\x42\x36\x9b\xe0\xc3\xb9\x86\xa3\xbb\x60\x68\x31\x1f\x69\x3e\xdf\x8d\x84\xd3\xad\x6f\x68\x12\xcc\xb1\xc4\x4e\xd8\x0e\xa8\x86\x12\x4c\x8b\xe3\x28\x9e\xfe\xee\xd5\x80\x91\xe9\xee\xe6\x60\x11\xbc\x23\xb1\x5d\x41\x0f\xe7\xb6\x62\x11\x13\x05\xda\x6c\xc4\x7b\xf7\x04\xca\x02\xf2\xe9\x5c\xe9\x21\xb9\xd1\xa9\x41\xa8\x64\x5a\xcc\xe0\x92\x92\xab\x81\x20\x17\x34\x96\xe2\x66\xbc\xc2\x94\x05\x40\x69\x0b\x04\x89\x5e\x4f\xf8\x62\xce\x2c\xd6\x85\x7e\xa5\x6e\x66\xb3\xbe\xfb\xcc\xb3\x9d\x5a\x12\x11\x41\x89\xba\x3a\x27\x15\x29\xf4\xd7\xe7\x25\xc8\xfc\x77\x5c\x6a\x9e\x54\x3b\x4f\x84\xb4\xa9\xde\x1c\x3a\xe8\x9c\x57\x4d\x8c\x06\x31\x12\xc3\x0f\x46\x4d\x73\x7f\x5f\xd0\x99\xe0\x11\x3d\xdf\x6c\xf2\x4f\xe6\xcf\x91\x54\x82\x12\xe7\x52\x40\xe4\x8f\x21\xcf\x2e\x0c\xca\x6c\xc4\x95\x16\xdb\x0c\xbb\x3a\xa6\x3c\x48\xbc\x31\x50\x84\x32\xb7\x05\x64\x6d\xe5\x98\xb9\x43\xb4\x6e\x9b\xf2\xb2\xe2\x5a\x82\xae\xfb\xb3\x7d\x0c\x05\x61\x77\x41\x64\x18\x08\x55\xed\xcd\xcf\x99\x91\x23\x38\x36\x2c\x6e\xed\x1a\xa4\x60\xd7\x20\x7d\x14\x1c\x07\x00\x92\x34\x9d\xaa\xff\x0b\x77\x9e\x45\x45\x85\xa2\x6c\x11\x91\x99\xe4\xa2\x79\x97\x9f\x17\x89\xe8\xf9\x71\x7c\x13\x4b\xb2\x6a\xf8\x48\xae\xe5\xb1\xdd\xb6\x7e\x26\x03\xf8\x9b\x24\x22\x31\x22\xc3\x98\xb2\x8b\x24\xc2\x82\x7e\x22\x88\x0c\xd7\x51\x22\xb4\xdb\xb3\x0b\x9a\x24\x87\xcf\x5d\xc7\x8a\x35\x65\xe1\x67\x83\x16\xa5\x99\x11\x06\x19\x88\x00\xde\x36\xf8\xa6\xd9\xa8\x08\x6b\x41\x66\x58\x92\x30\x30\x2f\xb2\x8a\x1d\x1a\x77\xb2\xaf\xf3\x61\xe7\x75\x44\x70\x4c\x3a\xe4\x5a\x11\x10\x95\xd1\xcd\xb8\x43\x57\x0a\xdb\x9d\xbc\x8a\xd2\xb2\x3b\xdf\x97\xb0\xfb\xfd\x69\x00\xbb\x27\xf0\x96\xce\xc7\x65\xc4\x0f\x2f\x22\x7e\x8e\xa3\x38\x80\x09\x93\x34\x1a\x07\x7f\x1d\x8e\x86\xa3\x20\x05\x3e\x12\x9a\x0f\xb4\x4d\x8f\x8d\x81\x1b\x06\x1e\x5a\x77\x1d\xb4\xb5\x91\x7b\x10\x42\xd0\x7e\xfc\xb7\x1d\xaf\x62\x27\x3d\x28\x16\x3c\xc8\x6d\xf1\x90\x11\xd4\x9e\x58\xc8\xea\xef\x86\x83\xac\xda\x81\x31\x90\xc1\x4d\x0b\x76\x2f\x8f\x40\xa0\xcf\x44\x5e\x05\x58\x64\xb5\x02\x32\xcb\x5c\x59\xe4\xad\x2d\xa2\xa6\x24\x2a\x94\xcc\x69\x94\x34\x75\xf2\xa4\x28\x4d\x4e\xc3\xee\x28\x3b\x74\x7a\xf6\xbf\xdf\x3d\x7b\xf9\xf4\xc3\xeb\x37\xaf\xde\xbd\x7a\xf7\xef\xaf\x9f\xbd\x75\x07\x9d\x95\x0f\x76\xaa\x94\xcc\xac\xa7\x08\x37\x95\xd9\x0e\x69\x1f\xaa\x28\x03\xf9\x63\x51\x46\x65\x00\xe1\xc8\x27\x04\xb3\x7f\x02\x69\x33\xd7\x54\x71\xb4\x97\x04\xa9\x60\xe9\x0f\x27\x45\xea\x31\xe5\xb5\xe6\xe1\xaa\x6a\xa8\x28\x12\x76\x76\x19\x2c\x27\xa7\x2d\xab\x6e\xc3\x52\x6b\x0e\x9c\x57\xf8\x23\x69\x99\x4a\xe9\x7e\xe1\x07\xbc\x3b\xf0\x45\x13\xb8\x1f\x71\x3a\x8b\xe6\x07\xb9\xd2\x3d\xed\x6c\xeb\x30\x12\x56\x47\x39\x0b\x29\x22\x93\xd1\x14\xea\x53\x6b\x8f\xd0\x28\x00\xe3\x90\x99\x6f\xaa\xc8\xc9\x14\x8a\x49\x60\xaf\x0b\x0e\x66\x3c\x61\x32\x98\xea\x98\x81\xd5\xd7\x00\xaa\x5d\x97\x4e\x3f\xf9\x53\xc4\xf5\x35\x7c\xed\x80\x53\xd3\x06\xe4\x67\x74\xcc\xfa\x41\x27\xe8\xd3\xba\x08\x2a\xf5\x13\x55\xa0\xe9\x3f\xe7\x54\x15\xbc\x05\x0a\x64\xab\x50\x7e\x37\x2a\x9c\xda\xd7\x4e\x3d\x3c\xbe\x0b\x25\x45\xd9\xde\x06\x14\xe5\xac\x1a\x39\x02\xb2\x83\x2b\x96\xf9\x2a\x58\x56\x32\xb3\xb5\x32\x57\x32\x33\xa7\x83\xec\x13\x23\x57\xb9\xfd\x3e\xcc\x6e\xed\xa9\x86\xf2\xfa\x59\x81\xd2\xea\x2a\x4a\xab\x6b\xde\x17\x51\x58\x91\x0b\x5d\xce\x6f\x06\xb6\x99\xc1\x02\x3a\x3f\xfb\xc1\xda\xad\xe9\x75\x3c\x9e\x4c\x8e\xbf\x3b\x86\x81\x6a\x67\x72\x1c\x7f\x77\x4c\xdd\xf3\xef\x21\xbe\xde\x48\x12\x4b\x40\xcd\xeb\xef\x4e\x88\xf9\x12\xf2\x99\xe4\xeb\xcd\x25\x15\x20\x71\x9f\x68\xf9\x0b\x2d\x7e\xc0\x11\xc5\xf1\x26\x96\x58\x26\xf1\xe6\x9c\xb3\x24\x06\x25\xa0\xe7\x09\x70\xc0\xe2\xfc\xdd\x62\x81\xa3\x8d\xe4\x2b\x2c\x01\xb7\x5f\xb9\xfb\x3a\x91\x74\x0a\x92\x95\x7d\x8d\xbd\x97\xb8\xf0\x2e\xb6\x03\xc8\xc0\x9e\x8d\xc3\xc9\xef\x8b\x29\x58\x90\x4d\x38\x89\xc4\x14\x2c\x5c\x67\xbe\x7b\x70\xe9\x0a\x2d\xe9\x25\x71\xaf\x5d\x83\xbf\x63\x42\x79\x72\x33\xdd\xfc\x23\x01\x37\x6e\x80\xae\xc2\xf5\x66\xb6\xdc\xc4\xf1\x26\x5e\x96\x87\xb6\xc2\x52\x6c\x2e\x89\x90\x1b\xca\xe6\x20\x3c\x1b\xd3\xeb\x0d\xb9\x76\xa5\xe8\x8c\x38\x8c\xaf\x36\x11\xe0\x49\x4c\xf2\x2f\xde\x07\x3a\xab\xbe\xe7\x19\x14\xc2\xb2\x57\x84\xb9\x97\xa6\xf9\x7f\x24\xf4\x93\x7b\xf3\x49\xb5\x35\x85\x8e\x9a\xd5\xf4\x1b\xe4\x98\xa2\x71\x5c\xac\xca\x00\xb9\xca\x66\xff\x2a\xae\x41\x71\xb2\x32\x2f\x43\x0c\x18\x8e\x6e\x36\xe1\x39\xc0\x9b\x70\x0e\x28\xbe\x60\x7c\x13\xae\x01\x16\x84\xc9\x25\x51\x8f\x82\xeb\x77\x31\xb8\x61\x7c\xbd\x09\x25\x58\x12\x10\xc6\x34\xde\xc4\x24\x6b\x37\xa6\xb6\x95\xdf\xb1\x82\xd7\xfc\x5d\xcf\xe0\x25\x71\xbd\x5b\x10\x6f\xda\xe2\xc2\x20\x64\xf5\x95\x9e\x75\xaf\x72\xcd\xfc\xd2\xec\xeb\x8d\xc5\x0d\x20\x22\x7f\xa9\x9f\xed\xf4\x02\x7e\x99\x7f\x50\xcf\x15\x82\x20\x85\xe6\xcb\xf3\xa9\xa6\xdc\x11\x7c\x0c\x42\x12\x83\xb3\x42\x6f\x79\xa9\x7e\x18\x2f\x79\x79\x44\x33\x41\x63\xc3\xae\x21\x8d\x37\x39\xbe\x68\xc6\xcd\xe0\x7a\x42\xc9\xd4\xd5\xba\xa6\x15\x66\x0e\x93\x78\x43\x5d\xbd\x24\x6e\x64\xdc\x4a\x07\x35\x1d\x12\xe6\x77\x27\xa3\x76\x45\xdd\x0e\x65\xd7\x39\x3b\xf8\xef\xe9\xb5\x47\xa7\x9f\x4a\x43\x9d\x63\x89\xcf\x71\xec\x0f\x77\x0a\xa9\x10\x44\xd3\xef\x6b\x4c\x85\x92\x61\x81\xd2\x06\x74\x34\x84\x35\xe1\x6b\xed\xe2\x30\x09\x56\x58\xbd\x58\x19\xce\x08\x66\x4b\x1a\xcd\x03\x68\xfe\x0a\xfb\x32\xd6\xa9\x32\x63\x72\x6d\xe6\x32\x58\xf1\x4b\xa2\xea\x70\x2b\x06\x82\x19\xbf\x0a\x60\xf0\x91\x32\x03\xf2\x13\x5f\x9d\x53\x55\xc2\x3c\x68\x5e\x4a\x98\xd6\x76\xf4\xc9\xf1\x24\x20\xff\x48\xe8\x5a\x9f\x60\xc3\x80\xb2\x05\x17\xc6\xf1\x2c\x80\x81\x30\xd1\x0d\x56\x9c\x11\x1d\x76\x71\x4d\x66\x0a\x82\x6a\x5e\x98\x87\x05\x8d\x97\xea\xf7\x92\x90\x75\x00\x83\xff\x22\x58\x87\xa2\x59\x73\x1d\x18\x61\x5a\x3d\x5f\xbf\x6b\x85\xff\x9c\xa7\x6e\x85\x5d\x75\x1e\x11\x08\x0a\x74\xfc\xfb\xfb\xf8\x87\xef\x8e\x21\x43\xc7\xe1\xe4\xfd\xd5\xf1\x60\xda\x9f\x7c\x38\x7e\x1f\x0f\xa6\x20\x9c\xe0\xc1\xa7\xf7\xf3\x69\xff\x3b\x70\x0c\xa9\xfd\xae\xbe\xf4\x41\x38\x79\x3c\xf8\x8f\xa9\xfd\xfe\x83\xfa\xce\xd1\x71\xf1\xdd\x71\xc1\x31\xa1\x74\xbe\xa7\xfd\x0a\xdd\xf9\xde\x43\xa6\xcf\xf8\xc8\xd0\x9b\x9c\x89\x9c\x88\xe9\x50\xf2\x9f\xf9\x95\xf3\x8b\x9a\xa2\xee\x28\x3f\x01\x8f\x4b\x30\x21\x43\x23\xed\x9d\x68\xa1\xb2\x87\xf4\x94\xf5\xfb\x40\x20\xa9\xc3\x72\x0f\x33\x32\x9c\x88\xc9\xa8\x02\x5a\xc7\x89\x2b\x16\x3a\xb9\xb3\xd0\x73\xa6\x43\xe6\x37\x94\x1d\x35\x94\xad\x6b\x7c\x34\xcd\x47\x96\xa8\x49\x0f\x09\x22\x9b\xcd\x6d\x0a\x7c\xa4\xa0\x02\x8a\x36\x9b\x28\x04\x7e\x13\x9a\xbf\x50\xf9\x85\x2e\x66\xc9\xc0\x9c\x1d\x69\x7d\x27\xd3\x29\x9c\x7e\x14\x6f\x36\x13\x6f\xad\xc9\x55\x2a\xfd\x3e\x83\x39\xd6\xb6\xed\xd2\xa8\xf4\x4b\x9f\xb5\xa2\x10\xa4\x47\x38\x54\x9a\x99\xf7\x1a\xc0\x58\xbf\x2a\x76\xd0\x1d\x32\x31\x55\xe4\x09\x9e\x2d\x49\x08\x52\xba\x08\xbb\x96\xd6\x4d\xbc\xb4\x5e\xaf\xf8\x5b\xa7\xed\x00\x25\x57\x41\xef\x8c\xd3\x9e\x6f\xbe\x5b\xd2\xb8\x73\x2e\xf8\x55\x4c\x44\x67\xce\x49\xdc\x61\x5c\x76\xe2\x64\xad\x37\xba\x35\x10\x61\x67\x6d\xf6\xc5\x6b\x1e\xdd\x2c\x68\xd4\x51\xbb\xa4\x0e\x89\xff\xff\x83\x78\x89\x57\xe3\xce\x52\xca\xf5\xf8\xf8\xf8\x82\xca\x21\xe5\xc7\x37\x3f\xfe\xf2\x40\x5c\x04\x5e\x80\xfa\x28\x33\x43\xd7\x00\xcf\x0d\xe8\x1f\xe6\x74\x26\x91\x4e\x3d\x32\x27\x11\x91\xc4\xbd\x83\x24\x4d\xf2\x1d\x3c\xba\xf5\xd0\x52\x39\xd0\x5b\x27\xe2\xc2\x61\xcc\x20\xd1\x57\x83\x6b\x1c\x1a\x8d\x65\x7c\xa6\x6a\xfc\x12\x93\x39\xea\x8e\x4c\xb5\x0f\xb1\x86\x32\x21\xd3\xcd\x26\x2c\xbd\xb1\xe6\x74\xdf\x94\x40\x00\x48\x4d\xc5\x5c\xb5\xde\xa5\xb5\x75\xa5\xb5\x75\xa9\xb5\xdc\xbc\xa3\xda\x4a\x61\x3e\xd2\xea\xa9\xa6\xd7\xc0\x49\x61\x38\x28\x72\x68\xb1\xf0\xd5\x8b\x14\xce\x69\xdc\x8c\x52\x57\x55\xcf\x4c\xa1\x6e\xfe\xa6\x15\x92\x8b\xf8\x6a\x8f\x2e\x7f\xe4\x6a\xe0\xfa\xe7\xb8\x78\x08\x50\x1a\xb7\x3d\x13\xae\x52\x83\xe6\x74\xc7\xde\xc6\x81\x66\x42\xa0\x2c\x89\x1f\x90\xe6\x5c\x7f\x9f\x76\x1c\x90\x6d\x0d\xf9\x32\xc2\x47\x41\x8b\x96\x70\x98\xb7\x05\x27\xa4\x0a\x3b\x17\x51\x3b\x8f\x22\x2e\xc0\x56\x5d\x9f\x2a\x88\xd9\x5c\xd4\x65\xe5\xaf\x99\x2e\xf8\xe1\xee\x1a\x76\xc1\x57\x5d\xab\x4c\x91\xff\x2a\x1b\x8d\x37\x3d\x5b\x7b\x52\x26\xb8\x0f\x6d\x6a\xd5\xf6\xc6\x55\xac\xed\x8e\x95\xf8\x0a\xdf\xa6\xae\x8f\x6d\x0c\x63\x23\xfd\x4a\x71\x8f\x8e\xe8\x22\x5c\xa2\x2e\xd9\x6c\xc4\x50\xa9\xbd\x21\x01\x70\x8e\x78\xf6\x1c\x04\x70\x59\x08\xe0\x3c\x43\xa5\x09\x86\xe1\x02\xb1\x21\xb9\x26\x33\xed\xce\x48\xdd\x23\xe8\xf5\xc2\x85\x5a\x96\xd7\x68\x31\x79\x50\x5a\x59\x0b\xe4\xe9\x2b\x17\xb3\xe9\x66\xd3\xf0\x69\x3d\xcd\x3b\xa2\x94\x8b\x55\x87\xb2\x4e\x0c\x54\x9f\x86\x2b\x1d\xa1\x79\xd5\x0f\xbe\x0b\xb2\x30\xd2\x11\x8a\x27\xab\x29\x9c\xf7\x7a\xf1\x64\x3d\xed\xf5\xc2\x08\xc9\x30\x02\x70\x85\x64\xb8\x02\x36\xd3\x58\x84\x67\x24\x54\xab\xd2\x1b\x72\xf1\xec\x7a\x1d\xae\x60\x40\x03\x00\x23\x70\xe4\xf4\x97\x4b\x84\x9d\xe6\x72\xf9\x68\xd4\xeb\x75\xc3\x15\x0a\x13\x84\x27\x97\x83\x93\x29\x98\x8c\xa6\xc0\x21\xeb\xf4\x72\x30\x00\xa7\x2e\x34\x89\x2a\x94\xa8\x15\x5a\x95\x81\x11\x4a\x8c\x8a\xe2\xda\x5c\xc1\x48\x49\x91\xdc\x94\x90\xb4\x53\x4b\xbd\x23\x85\xdd\xec\x54\x87\x3e\xaf\xbc\xe3\x80\x92\xdc\x21\x52\xab\xa6\xa5\x61\x91\x63\xc9\x9d\xd2\xbc\x06\x44\x89\xd5\xee\x40\x69\xd5\x6e\xf9\x45\x2f\x7b\x65\x81\x8c\x8d\x57\x09\x28\x1c\x1e\x14\x83\xfe\x12\x2f\xec\xf1\xdf\xdf\xbd\xf8\xf9\x47\x2c\xe2\x52\x79\xfb\x76\xa8\x86\xf3\x23\x4f\x5c\xc4\x30\x55\xb5\x58\x50\x7b\x22\x9d\xd7\x17\xad\x62\x2c\xe2\x78\x3e\xb0\xb9\x69\xe9\xa7\xda\x48\xab\xbb\x85\x8a\x46\x42\xed\xed\x04\x09\x09\xd4\x0b\xb7\xfe\xaf\x3b\xd2\x03\xec\xca\x8a\x9e\x48\xfa\x81\xf1\x1d\x37\xad\x75\x30\xeb\x78\xbd\x19\x06\xf9\x55\x09\x8b\xe2\xfc\xa2\x04\xc3\x2b\xb2\xd9\x84\xe6\x21\xcb\xbf\x40\x86\x11\x8e\xe5\x73\xeb\xfb\x11\x1c\x07\xa0\x7f\x02\x00\x14\xfb\x38\xa5\xd6\xdd\x93\xf5\x7d\x77\x45\x3f\x38\x2e\xe0\x2e\x80\xd4\xbe\x34\x6e\x15\x83\xd2\x57\x8e\x26\x53\x88\xd5\x7f\x85\x0b\x58\xa1\xc5\xd9\x7f\xc5\xc3\x0f\x04\x7f\xfc\x10\x13\xc2\x00\x4c\xd0\xe8\x34\x79\xe8\x1c\x13\x4f\x13\xe7\x8d\xa9\x04\x5f\x32\x3d\x1a\x21\x84\xa2\xc2\x60\x19\x1c\x81\x33\xee\x32\x8a\x8f\xab\x05\x28\x1c\x81\x5e\x0f\xbb\x12\x69\xd8\x34\xb0\xd1\x29\x7b\x28\xb2\x0d\x9d\xde\x22\x7a\x23\x09\x65\x28\x26\x4c\x5f\x64\x09\x09\xe4\x00\xee\x04\xc6\x60\xe6\x79\x1d\x38\xb5\x90\xd5\xd0\xe8\x0a\xcb\x65\x35\x64\xef\x79\x5b\xfb\x6f\x91\x48\x5d\xf0\x15\x2c\x97\x43\x7c\x1e\xdb\xe3\x83\x3d\x88\x03\x9f\xc7\xfb\x04\xf3\xae\x1f\xcc\x8c\x1f\x60\x34\x33\x7e\x9f\xe1\xcc\xf8\x61\xc7\xb3\x3c\xc8\x80\x96\xf7\x1b\xd1\xf2\x70\x43\x9a\xcf\xef\x33\x20\x52\x77\xd3\x25\x0f\x24\xa3\x73\x66\x86\x04\xf4\xed\x93\xea\xd5\x5e\x63\x9e\xcf\x5b\x8d\xf8\xa8\xcd\x88\x63\xda\x36\x72\xc3\x96\x39\x8c\x29\xbb\xc7\x14\xc6\x94\x1d\x6e\x06\x63\xca\x0e\x40\x94\x0a\xca\xfd\x46\x74\x40\xa2\x94\xf8\x00\x53\x24\xf1\x7d\xa6\x48\xe2\x03\x4e\x91\xc4\xec\xc1\x41\x06\xf4\x40\x8f\x08\x92\xc9\xc9\xfe\xc3\x7a\x70\xd0\x71\x1d\x80\xf4\x14\x94\xfb\xcd\xd4\xe1\x48\x6f\x76\x2e\xda\x06\x4f\x68\x1e\x91\x02\xb2\xff\x80\x54\xed\xc3\x8d\x87\xd0\xb6\xb1\x33\xb6\x8c\x87\xd0\xe8\x1e\xe3\x21\x34\x3a\xdc\x78\xa2\x4f\x7f\xbd\x3f\x2b\x69\x28\xf7\x18\x91\xaa\x7e\xb8\x21\x1d\x40\x49\xba\x97\x8e\x74\x48\x15\xe9\x20\x1a\xd2\xfd\x14\xa4\x83\xea\x47\x73\x7a\xf9\x05\xf4\xa3\xe3\x7b\xea\x47\x73\x7a\x79\xb0\x11\x93\xeb\xf5\xbd\x27\x90\x5c\xaf\xf7\x9f\x3f\x72\xbd\x3e\xe4\x60\x56\x27\x87\x18\xce\xea\xe4\x5e\x03\x5a\x9d\x1c\x6c\x48\x3a\x61\xf0\xbd\x87\x64\xd2\x0e\xef\x3d\x24\x5d\xfd\x70\x43\x12\x3c\x61\xf7\xda\x87\x98\x31\x69\x30\xf7\x18\x94\xae\x7f\xb0\x51\x2d\x6f\xd6\xfc\xfe\xba\x84\x86\x62\x6f\xe2\xaa\x17\xb0\x64\x8b\xfb\x42\x37\xc5\xf7\x4d\x94\xa4\xbb\x7f\x30\x94\xd2\x55\x72\x7f\x6d\x46\x01\xb9\xa7\x1a\xad\x40\x1c\x6c\x50\x11\xbf\x18\xec\x97\xc4\xce\x1f\x55\xc4\x2f\xf6\xa7\xfc\x88\x5f\x3c\x3b\xe4\x78\x4e\x46\x87\x18\xcf\xc9\xe8\x5e\x23\x3a\x19\x1d\x74\x48\xf7\x5f\x15\x35\x94\xfb\x0d\xe9\x70\x2b\x63\xc4\x2f\xee\xaf\x47\x2b\x20\xf7\x1a\xd0\xe1\xb4\xe8\x15\xde\xcf\xba\xef\x0f\x67\x85\xaf\xff\xbc\x92\x76\x85\xaf\x0f\x87\xcc\x03\x98\xc8\x56\x94\xfd\x89\x91\x79\x40\x03\xdd\x8a\x7f\x09\x13\xeb\x5f\xee\xb9\x85\x58\xf1\xc3\x69\x3e\x2b\x1d\x54\xe7\xb3\x0f\xf9\x87\xfb\x0e\x59\x5f\xb6\x3b\xd0\x98\xd7\xfc\xea\xf3\x0d\x59\x33\xd4\x9a\x5f\xe9\x97\xfb\x0d\x76\xcd\xaf\x0e\x36\x56\x81\xd9\x9c\xaf\x3e\xdf\xb1\xb3\x81\x8f\xe2\x6f\xd9\xbb\xff\x14\xd9\xbb\xa1\x40\x35\x09\xee\x0d\x56\x7a\xbd\x20\xd6\x0f\xe5\x0f\x19\xba\xce\xea\x9c\x24\x6c\x8e\xfc\xb4\xce\xd1\x88\x14\xc3\x9a\x96\x9a\xd3\xf1\x8b\x4d\xb7\xb9\x40\x08\x65\xef\xbb\xee\x39\xf7\x86\x3c\x73\x7d\x1b\x67\x0d\x42\x86\xdc\xea\x05\x29\x72\x5a\x01\xe4\xe8\xc1\x08\x62\x74\x3b\x27\x33\xba\xc2\x51\x3c\x1e\xa5\x47\xbe\xeb\xb0\x0b\xec\x16\x56\x02\xef\x9c\xd4\x06\xde\x39\xf1\x03\xef\x9c\x4c\xc7\x18\x0c\x1d\x68\x45\xb1\x5e\xb8\x35\x1b\xcc\x44\xe7\x7c\x0e\x12\x66\xd8\x68\x1e\x8c\x85\x71\x56\x2a\xa5\xdf\xcd\x09\x3a\x46\x5e\x14\x14\x07\xfb\x2c\x7f\x1c\xe3\xec\x11\xf6\xf5\x38\x0d\xd7\x85\x60\x28\xf9\x4f\xf4\x9a\xcc\x43\x1a\x8e\x20\x0b\x39\x8c\x01\xd0\x7e\x0e\xa4\xd7\xf3\x2f\x0d\x5a\xcf\x2c\x9d\x82\xfd\x04\x4c\x46\x6e\x2d\xee\x87\x05\x70\x3f\x24\xf5\x10\x53\x03\xf1\x41\x05\x62\xe4\x92\xba\xcf\x50\xa4\x76\x69\x0b\x14\x4d\x4e\xa6\xaa\x03\x8b\x87\x33\x53\x64\x8d\x26\x0b\x38\x9b\x1e\xcd\xd0\xda\x94\x58\x4f\x4e\xa6\xa9\x6b\x7e\x56\x1c\xcf\x0f\xe1\x62\x30\x03\x0d\x9d\xb0\x75\xee\x46\x40\xba\x5d\x74\xc6\x6d\x45\xe7\x9e\x96\x0e\x28\xf2\x24\x4f\x8e\x20\x84\x0e\x71\xda\x17\x67\xa6\xf7\xc6\xf8\x01\xc6\xa1\x40\x7d\xa1\x1d\x54\x14\xf9\x10\xd4\xd7\x0e\x6e\x3a\x2a\xaa\x8e\xdc\xc7\xf4\xaa\x19\x74\x1d\xe7\x88\xcd\x46\xfc\xe5\xa4\x8b\x46\x67\x2f\xf1\xcb\x31\x79\x38\x3a\x1b\xc8\x70\xa0\x5a\x1c\x87\x44\xfb\xcd\x19\x3f\xff\x10\xb8\x08\x87\x24\x00\xb0\x1f\x86\x44\x41\xf7\xda\xee\xeb\xad\x40\x3f\x20\x81\x7a\x3a\x99\x9e\xf5\xd5\xff\x03\x31\x1e\x08\x00\xf4\x04\xd4\x00\x02\x35\x55\xfa\x62\xac\x6b\x14\xe3\xd3\x09\x2d\xe9\xed\xff\x19\xf1\x82\x3c\xae\x93\x22\x85\x81\xf7\xe5\x48\x17\x24\xd7\xeb\x52\x19\xf3\x2e\xf5\xd7\xd6\x7b\x5a\x8e\x8c\xe1\xa8\x31\xca\x9b\xa5\x11\xd1\x92\x46\x62\x7a\x71\x7f\xf5\x5b\x01\xd9\x7f\x40\xaa\xf6\xc1\xd4\x85\x43\x1c\xb8\xdf\xeb\xbc\xbd\xed\x71\x7b\x1b\xf7\x81\xf8\x1f\x07\x38\x20\x54\x40\xee\x31\x9c\x7f\x1c\xf0\x80\x30\x4e\xce\xbf\x80\xaa\x3e\xb8\xa7\xaa\x1e\x27\xe7\x07\x1b\xf1\x21\x9c\x0b\xee\xe5\x5b\x70\x48\xd7\x82\x83\x9c\xc0\xdf\xef\x00\xfe\xa0\xe7\xef\x3a\x63\xf2\xfd\x07\xa4\xa0\xdc\x63\x44\xaa\xfa\x3e\x43\xca\x7c\x81\x5b\x05\x93\x68\x08\x9a\xff\x6d\xbb\xf3\x07\xdf\xee\xb0\x6a\x0a\x82\x6c\x9a\x8f\x9a\x12\x8a\xd8\x24\x34\x46\xb3\xe5\x88\x2a\x45\x04\x23\x3a\xd1\x31\x6d\xe5\x90\xaf\xa8\xd4\x99\x05\xb2\xf0\x1c\x5d\x84\xb8\x8e\xac\xc1\x37\x1b\xb5\xf7\x60\x21\x06\x00\x86\xf1\x59\x10\x8c\x79\x3f\xe8\x04\xa0\x8f\xab\x4e\xa5\x6b\xc1\xd7\x03\xa5\xd8\xc5\xc7\x3a\xb6\x6c\x4c\x39\x33\x39\x8b\x74\xf0\x3a\xef\x7b\x1d\x41\xc2\x2a\x94\x15\xbd\xa6\x2c\x3e\xf6\xeb\x55\x0b\x19\x97\x74\xaf\x4c\x5d\x44\x08\x1b\xb6\x33\x43\x5d\x16\x51\xaf\x90\xef\xc1\x12\xf5\x11\x1d\x0a\xc2\xd7\x84\x85\x59\xdc\x0c\x78\x4b\x19\x2d\xc4\xad\xd1\xfa\x5d\x4c\xa4\xa4\xec\x42\x11\x85\xf6\x36\xce\xc0\x2a\x5e\x57\x13\x1e\x17\xe2\xb8\xe9\xd0\x6d\x6b\xf7\x29\x00\x47\x5c\xe7\x03\x30\xfb\x24\x43\x98\x9b\x0d\x1b\x46\xfc\xe2\x82\x88\xe1\x15\x16\xcc\x44\x2b\xcd\xeb\x74\x68\xdc\xb1\x6d\xcd\x3b\x0b\x2e\x3a\x19\x76\xe3\x00\x7a\xfd\xd1\x64\xa7\xa9\x2d\x06\xa9\xbd\x53\x93\x28\xf9\xe1\x85\x9a\xcf\x36\x81\xb5\x81\x74\x3d\x0c\x37\x86\x81\xdb\x3a\x55\x65\x01\xf3\x19\x22\x61\x37\x47\xd7\xb6\x22\xb0\x35\x4c\x5b\xfe\x8e\xbc\x67\x6e\xe2\xda\x42\xcd\x6a\xdc\x89\x60\xcf\xa5\xbd\x25\xbf\xec\xc2\x6d\xc5\x75\xcc\x5b\xba\xc0\x6d\xea\xbb\xa1\x17\x96\x9d\x5b\x86\x57\x64\x1c\xd4\x77\x27\xaf\x33\xae\x49\xda\xb5\x9d\x85\x9b\x59\x3f\x8f\xda\x7e\x30\x46\x7f\xa1\xda\x2f\x30\x39\x8e\xd5\x06\xa3\x90\xcb\xe5\x82\x48\x18\x17\x7f\xfb\x61\xeb\x13\xef\xd3\x8a\x88\x0b\x02\x23\xef\x8d\x0d\x66\x3f\x73\xb7\x0f\x0c\xfc\xcd\x86\x6f\x36\x09\x5c\xa0\xdb\x46\xd1\x30\x8e\x3d\xf9\x52\x19\x6e\xb3\x48\x09\x60\xf7\x04\xc0\x78\x2d\x08\x9e\x3b\xfa\x1c\xe3\xad\xb0\x8a\x85\x03\x00\x3d\xf9\x70\x47\x37\xbc\x92\xa6\x61\xbd\x74\x61\x49\xee\x68\xd2\x15\x0b\xf2\x1a\xaf\xd8\x2f\x6b\x5d\x73\x7b\x8b\xe5\xe2\xba\xd9\xf4\x88\x64\xd2\x0d\x2d\x8e\x8c\x21\xe6\xd6\xc4\x08\xd6\xbd\x2b\x5d\x94\x2c\x4a\x51\x45\x1e\x8b\xa2\x50\xcc\x7a\x95\xa1\xb0\x48\x4c\x8e\x94\xcc\x7d\xff\x3c\xd8\x3c\x42\x88\xf6\x7a\x8b\x12\x4a\x75\x70\x29\x55\xb4\xfc\xa1\x1f\x0c\x83\xbe\x04\x00\x66\x16\x31\x0a\x4c\x02\x04\xa5\x1b\x31\x37\x58\x2e\xe2\x33\xff\xc7\xc4\x94\x99\xda\xe4\x0d\x02\x76\x47\xa5\x01\x8c\xd7\x43\x6f\xf4\x26\xb9\xe8\x47\xc6\xaf\x58\xc7\x2d\x16\x9d\xa0\x6f\xa0\x80\x23\x12\xc5\x44\x07\xd2\x16\x8e\xac\xe6\x56\x1b\x3b\xaa\x80\x79\x41\xe3\x98\xb2\x8b\x7c\x99\x71\x29\x43\x3a\x6a\x20\x69\x11\x71\x86\x90\x7d\xe9\x62\xcc\xe6\xdd\x13\x84\xd0\x22\x9b\x4a\xa5\xd7\x65\x53\xbe\xd9\xa8\xf5\x6c\x9e\x38\x23\x2a\xca\xbe\x0c\xbd\x3c\x0c\x47\x72\xb3\xc9\x30\x9e\x43\xea\xf5\xe8\x66\x33\xc9\x02\xc1\x93\xca\x9a\x5a\x93\x2e\x46\x82\x5b\xd9\xeb\xf9\x97\x83\x64\x7d\x52\x19\x33\xe3\xe1\x08\x32\x05\xf6\x29\x59\x80\x50\x4e\xc4\x14\x1c\xe5\x93\x77\x16\x2e\x2a\x04\xda\xeb\xe9\x5b\x02\xaf\xce\x63\x22\x2e\x89\x08\x05\x24\x7e\x70\xb8\xae\x52\xa7\xe8\x30\x59\xeb\x88\x22\x11\x39\x5b\x0f\xcb\xb4\x67\x16\x64\x01\x69\x75\x5a\x45\x3f\xe8\x98\x18\xdf\xfa\xb6\xff\x39\xe9\x68\x40\x64\x1e\xa8\x25\xa5\x06\x14\xd1\x70\x6a\xe8\x23\xa3\x0b\xa5\x37\x04\x7d\x05\x98\xc6\x9d\xc4\x50\x4d\xa0\xe3\x7d\xa5\x8a\xcd\xec\x5a\x88\xd6\xde\x62\x40\xdd\xd5\xff\x5b\x83\x78\xc2\x54\x17\x6c\x9b\x94\xc4\xe3\x89\x37\x07\x30\x30\xd8\x53\x35\x55\x11\x25\xa9\x4b\x6f\xaa\xcb\xe5\x6d\x9a\xc2\xb2\x8e\x95\xab\x4e\x47\xc5\x81\xea\x76\x4c\x74\x3d\x7b\x4e\x73\x9b\x1e\xe5\x2a\x56\xb9\xf9\xfa\xd9\xa6\x8b\xb0\x90\xa2\x2c\x0a\x05\x70\xc1\xeb\x9c\xa2\x44\xb2\x34\xd2\x9a\x6e\x58\x03\xdd\xe4\xd6\x6e\xd5\xbe\x00\xce\xee\x8e\x10\xc2\x3a\x34\x7e\xaf\x67\x23\x23\xb0\x89\x98\xa6\x00\xce\x4c\x4c\x7d\x2d\xd3\x72\x2c\x86\x26\x3d\x61\x1b\x7d\x0d\x92\x5c\xbb\xd8\x12\xef\xab\xb2\x7c\x1a\xa9\xb8\x4f\x16\xb5\x9f\x75\x4d\x6f\x8f\x71\x9b\x8b\xa3\xd2\xfd\xf7\xd2\x7d\x44\x90\x42\x25\x85\x8b\x02\x96\x81\x5b\x89\x82\x49\xd0\xf7\x8d\xbc\xfd\x60\x3a\x56\x62\x06\xb2\x33\x13\x64\x3b\x6b\x21\x94\x60\xec\x54\x62\x13\x7d\xf2\x8e\x81\xee\xbc\xd9\x28\xe2\xa7\xe9\x7b\x2e\xa2\x6b\xd5\x0f\x62\x05\x07\x8a\xa1\x7a\x64\x6a\x9b\x4a\xd4\x24\xa1\xe4\xa8\xac\x9a\xd8\xdd\x46\x41\x39\xb1\xca\x04\x56\xf4\x5c\x3c\xe3\xc9\x0f\xa0\x88\x77\x88\x74\x4b\xe3\x37\x56\x4e\x8f\xc9\x30\xff\x01\x45\xfe\xd6\x3d\x42\x55\x63\x4c\x74\x1b\xe9\x98\x94\x82\xb4\x58\x2e\xf4\xe0\xdd\x66\x30\xba\x23\x5b\x37\xcd\xe1\x76\x4f\xdc\xbb\x74\x12\x60\x76\x13\xc0\x00\xab\xe1\x04\x30\x38\xe7\x3c\x0a\x60\x60\xd6\xee\x80\x44\xc4\x46\x25\xd2\x86\x0c\x2f\xc6\xba\x79\xf1\xca\x26\x8d\xd4\xbc\x18\xc0\x80\x25\x51\xa4\xff\xd8\x89\x72\x49\x25\x83\x3c\x0b\x92\x39\x38\x9b\xd6\x66\x2e\xc3\x13\x32\x45\xbe\xe8\xb7\xe9\xb3\x6a\x3a\x7e\x54\xcc\x2f\xa4\x36\xbd\xa1\x04\x67\x62\x1c\x06\xae\x74\x40\x99\x4e\xc9\x96\xaf\x9b\x48\xe6\x4b\x28\xd4\xcb\x9c\xcc\x45\xbb\x2e\x99\xfd\x42\x4a\x5d\x12\xc0\x65\x4b\x52\x3d\x3b\x92\xde\x24\xa1\x5a\x0c\xe7\xf0\x75\x0c\x10\x3d\x5d\x88\xa4\x00\xe2\xa1\x46\xf0\xab\x45\xcd\xee\x5e\xa0\x24\x0c\xec\x67\x3f\xf3\x99\xaa\xac\xc9\x51\x47\x26\x28\x0d\x34\x14\x5e\x67\xb2\xa2\x59\x25\x7d\x08\x63\xc5\x96\x5f\x12\x1e\x16\x3b\x10\x0f\x39\x23\xaf\x16\x9a\x4b\x1a\x46\x96\x15\xc8\xc7\x46\xf5\xd6\x59\x1f\x12\x15\x12\xf5\x15\x93\xf8\xa5\x00\xc0\x6c\x40\x31\x22\xed\x70\x10\xe7\x48\x88\xbf\x30\x16\xb6\x62\xc0\x9f\x59\x6d\xd4\x7a\xb5\x56\x45\xef\x1e\x57\xa1\x70\xb1\xee\x97\x1b\x9f\xb3\x64\x35\x0f\x32\x2f\x51\x47\xc3\x2d\x27\xef\x6b\x10\x70\xbc\xc4\xcd\xc4\xab\x3f\xe6\x91\xfa\xf3\xe3\x75\x63\xfd\xf1\xf5\x8b\xba\x64\x87\x12\xdc\x92\x89\x9c\x2a\x16\x9e\xc8\x29\x48\xff\x2c\x04\x9d\x2b\x0a\x18\x12\x6f\x6b\x93\x6b\x2b\xc6\x0d\xf3\x82\x88\x7c\x07\x70\xf7\xba\x9e\x03\x3a\xd6\xab\x4e\x93\xb5\xbe\xc6\x16\x9a\x25\x06\x19\xb5\xd0\x1f\xfc\x76\x94\x5c\x1d\xf0\xc5\x3e\x8a\x44\x35\xac\xaf\xcd\xfe\x54\x5e\xf2\x6d\x8e\xb2\xcc\x06\x59\x6f\xcb\x85\x1c\x62\x18\xc3\x04\x46\x06\xd0\x0c\xc5\x19\xb5\x2f\x10\x0d\xb1\x0e\x46\x40\x2e\x89\xb8\xf1\x34\x54\x2f\xc7\x13\x99\xcc\xec\xce\x52\x42\xde\x57\xfa\x17\xeb\x07\xd3\x00\x0a\x38\xd3\x50\xb3\x5c\x91\xdd\x45\xaf\x97\xf4\x7a\xf9\xde\xcc\xe8\x5e\x30\x78\x76\xbd\x26\x33\x59\xdc\x17\xf2\x7e\xd0\x91\x5c\x27\x2b\x64\x1d\x8d\xae\x0e\x5f\x68\x4f\x9a\x4e\xd0\x37\x0d\xf6\x83\xce\x79\x22\xb5\x39\x9b\xe0\x79\xe7\x82\x4b\xa5\xe9\xb1\x10\x03\x18\x01\xb8\xd8\x63\x46\x3e\xe7\x74\x34\xa1\x9f\x9a\x09\x70\xee\x27\x56\xe5\x41\x08\xb1\x3c\x11\x7b\x37\xe9\xf5\x70\x05\x73\xa4\x1e\x73\xb2\x8a\xb9\x5a\x34\x51\x00\x63\x00\x93\xdd\xd0\x64\x14\xb1\xaf\x8f\x25\xd5\x0f\x82\xd9\x81\xf0\xd4\xb1\xe0\x0e\x88\x28\xa3\xaa\x7e\x7d\x44\xe9\x7e\x1c\x08\x4b\x0a\xd6\x01\x51\x94\xa9\xf1\x5f\x1d\x4b\xb4\x90\x24\xc9\x74\xeb\xde\xac\x67\x87\x77\x48\x84\xad\xb2\xbc\xf0\xec\x8f\x81\x38\x4f\xf5\x50\x63\x2a\xaa\x1e\x14\x0c\x63\xbe\x22\x75\x8a\x74\x9e\xf7\x29\x78\xf2\xea\xc5\xeb\x57\x2f\x9f\xbd\x7c\xf7\xe1\xc9\xb3\x9f\x7f\x0e\xc0\xa3\xc1\x89\xc9\x75\x5d\x57\xa6\xf3\xf4\xd9\x4f\xcf\x5f\x3e\x7f\xf7\xfc\xd5\xcb\xc0\x5b\x58\xf6\x9e\x23\x73\x10\x9e\x6d\x20\x0f\x3e\x57\x6e\xa7\xf9\xf5\x27\xca\x4f\x70\x7b\x90\x95\xc5\xa0\xce\xcc\xf7\x01\xf1\xb6\x28\x39\x4c\x7c\x2d\x7c\xf9\x66\xbc\x43\xc8\xce\xcc\x34\x72\x38\x54\x35\x1d\xa2\xb6\x31\x35\x19\x4d\xb7\xbd\x5e\xb4\x93\x4e\xdb\x5a\x8f\x68\xbd\x8e\xee\xb2\x9a\xec\x23\x48\x77\x66\xe8\xd6\x94\xdc\x6a\x1e\x6d\x1c\xb2\x96\xb8\xb3\xe6\xac\x36\x05\x5b\x93\xc3\x0e\xe3\xe2\xac\x75\x4f\x4d\x51\xfd\xb5\x55\x79\xb3\xaf\x6d\x55\xb2\x98\xd3\x63\x6b\x51\x6b\xdb\xab\xd8\x56\x1d\xcf\xc3\x52\x38\x4e\x78\x09\x6f\xe0\x05\x3c\x37\xb2\xe0\x43\xf5\xa0\xf7\xaa\x72\x7a\x7b\x5d\x3e\xaa\xfd\xb0\xd9\x5c\xc1\x67\xe8\x16\xb3\x9b\x71\x7e\x32\xa9\x59\x64\x9c\xef\x56\x15\x17\x8c\x79\xf6\xd3\x9c\x81\xe6\x7b\x59\x43\xd1\xe3\x38\x7b\x53\x34\x77\x8e\x93\xe2\x07\xd3\x85\x71\x94\xbd\x55\x03\x1e\xcf\xb2\x9f\xb9\x2d\x64\xbc\xc8\x5e\x2a\x62\x1a\xaf\xbd\x9f\x0a\xd2\x78\x99\xbd\x30\x84\x31\x9e\xe7\x2f\x98\x02\xb0\xca\x7e\x9b\x99\x18\x5f\xe4\x2f\x34\xbe\xc7\xe7\xd9\x06\xfc\xe8\x3a\x7c\x06\x6f\xad\x29\x71\x4c\x33\xd4\x9d\x53\x36\x37\xe7\x10\xcf\x00\xcc\xec\x71\xe3\xcb\xfa\x02\x9a\x36\xc6\x37\xb5\x1f\x0b\x71\x00\x9f\xed\x28\x44\x3d\xe6\xfb\xea\xcb\x0e\xcf\xb6\xde\x51\x51\x29\x4d\x74\x64\xc6\xa8\xd7\xc3\x6e\x97\x9e\x78\x87\x1c\x70\x81\x5c\xf8\xd5\xe3\x6c\xa1\x09\xdf\x5f\xfd\x00\x8e\x01\x5c\xa3\xc5\xd9\x62\x72\x32\x1d\xcf\x8e\xf6\x58\xe6\x5d\x1f\xd4\xee\x3b\xe8\xaf\x9b\xf6\xdc\x7a\x01\x73\x9e\x6a\xd1\x6e\xeb\x98\x91\x67\x5f\x1d\xf7\xf6\x8a\x01\xbd\xdf\x4a\xaf\xa0\x1c\x70\x8d\x77\x22\xfc\xab\x63\xc7\x9d\x9e\x1c\x48\x1d\x32\xd0\x0e\x88\xa8\x3f\x8e\xa6\x5d\xdc\x12\xdd\x5b\xcf\xe6\x87\xd6\xb0\x0b\x8b\xf2\x57\x43\x17\x4c\xdc\xf5\x28\x93\x3f\xd8\xda\xbd\xba\x0a\x6b\x38\xb3\x2c\x67\x1e\xbe\x55\xa3\x61\x76\x56\x9d\x9f\xf5\x84\xc0\xb9\x98\xc4\x15\xab\x61\x6c\x31\xba\xc6\x71\x4c\xe6\x1d\xca\x74\x1e\x77\x55\xc8\x1c\x81\x07\x30\x01\x30\xca\x02\x4e\xcf\xd0\x08\x2e\x50\xde\x11\x77\x5b\x7b\xf6\x70\x71\x3a\x73\x31\x5e\xd7\x5e\x81\xc9\x4c\xdf\xe9\x22\x93\x75\x66\x0c\x55\x23\x5d\xc3\xee\x09\x00\xb7\x11\xea\x8e\x8e\xce\x05\xc1\x1f\x53\x9d\xbb\xc1\xda\x5a\x97\x7e\x0b\x0d\x67\x4e\xf6\x74\x15\x94\x85\x77\x83\xdd\x94\x66\xb4\xc3\x99\x16\xda\xc4\x15\xd2\x58\x18\x77\x26\x41\x7f\x39\xfc\x2f\x4e\x59\x18\xc0\x4e\x00\xfa\xc1\xb4\x4c\x5b\x9a\xb4\x38\x80\xc9\xbe\x02\xdd\x69\x88\x5f\x9d\x17\x79\xe1\x5c\xaa\x4c\x66\x49\x13\x75\x91\x0a\x75\x35\x51\x96\x06\x7f\x37\x69\xc5\x00\x76\x4f\x8e\x0c\xb9\x27\xcd\x46\x11\xb5\xfa\xe4\x46\x8d\xa8\x41\x62\xbc\x2e\x0a\x0a\x6a\x72\x76\x98\xd9\x56\x62\x21\xf1\x66\x57\xb5\xbc\xe3\xe4\x59\x1d\xfc\x73\xcc\xdd\x05\x91\x90\xb6\x9e\xcb\xe6\x73\x89\x18\x2e\xd0\xb6\x43\x03\xad\x09\x75\x2e\xe8\x25\x61\x1d\x33\x1c\xe3\xf7\x8f\x16\xfd\x00\x56\xa8\x5d\xcf\x61\x27\xe8\xff\xeb\xdb\x57\x2f\x87\x46\x9b\xa5\x8b\x9b\x10\x9b\xa0\xd8\x41\x27\x00\xb9\x3b\x7f\xea\xdd\x66\xed\x22\x44\xc3\x59\x2b\x09\xa5\x3b\x51\xa0\xa1\xce\x3a\xc2\x34\x13\xee\x86\x7e\xb6\x92\x50\xa4\x49\xa8\xdc\x3c\x6e\x6e\x7e\x61\xab\x18\x41\xe5\xdb\xe5\x66\xa0\x7c\x9c\x43\xdd\x85\xdf\xd9\x84\x4e\xe1\x42\x89\x60\x98\x2d\x5d\xf9\x0d\xcd\xc5\x59\x37\x73\x22\x9d\x6f\x36\x61\xed\x61\xce\xeb\xe2\x74\xd0\xb8\xb3\xda\xe2\xfe\x47\x4d\x2f\xc1\x98\x4c\x62\xff\x14\x69\xa8\x3e\x2d\xec\xfc\xe7\x3c\x11\xae\xd1\xba\x68\x64\xc4\x95\xc1\x10\x47\x78\xda\x1f\x72\xe6\xaa\xb2\x86\xc3\xa7\x52\x7f\x97\x06\xf1\xd6\x87\xad\xf3\x91\xdc\x28\x9e\x22\xaa\x9b\x2c\x05\xa0\x1e\x88\xc6\xf5\x7a\x47\x3e\x6b\xca\x21\xf0\x99\x85\x64\x65\xfd\x75\x5e\x30\x5a\x61\xe1\x60\xb3\xa9\x5c\x07\xa1\xf1\xdf\xdf\xbd\xf8\xf9\x2d\x5e\x90\x90\xfb\xe2\x29\x6e\xab\xd0\x50\x4f\xf3\x33\xad\xd5\xeb\x33\x7a\xd1\xd1\x02\xeb\x68\x07\x44\x9a\xfd\xfd\xd7\x5f\x6d\x2a\xa1\x01\xee\xb9\x95\xc0\x1d\x03\x70\x47\xdd\xcf\xb2\xd9\x60\xa5\x2f\x83\xed\x94\x29\xe0\x40\x39\x15\xac\x73\xd2\x7e\xb1\x03\xf2\xcb\x1b\x02\x65\x11\xf7\xcd\xdd\xe7\x25\xd6\x14\xb7\xc4\xb1\xbe\xfa\xdd\xb5\x6f\x42\x31\x24\x4c\x0a\x4a\x62\x9d\x33\xc9\xfb\xa5\x83\xfc\xab\xe1\x4f\x73\x39\xe9\x12\x1f\x80\x89\xac\xc9\x42\x27\x48\xcc\xa3\x4b\x22\x8e\x17\x04\xcb\x44\x68\x57\xbf\xa9\xef\x7a\xeb\xe3\xab\xb9\x76\xe3\xfd\x96\xac\x84\x7b\x88\x8f\x67\x11\x8e\x63\x3a\x3b\x70\x6e\x90\xcf\x70\x37\xa6\x79\xb8\xee\xe1\x9f\x6f\xc4\xd9\x60\x8e\x67\x9c\x49\x4c\x19\x11\x83\x39\x39\x4f\x2e\x06\x78\x8e\xd7\x72\x57\x94\x38\x72\x3d\x24\x62\x6c\x6e\x0e\x77\xd4\x65\x7b\xf9\x54\x75\xf2\xb1\xe9\x63\xee\x17\x5a\x11\x84\xc6\xa8\xe4\xe5\xe6\x09\x7e\x3f\x3e\xd3\x9e\xde\xc7\xe1\xb0\x0f\x8e\x83\x3e\x31\xf9\x7e\x14\x87\x2a\x85\x49\x69\xd6\x8e\xd7\xd8\xe4\x64\xea\x05\x9a\x10\x43\x7d\xab\x68\x1e\xde\x7e\x30\xb2\xe9\x0d\xb9\xa0\xb1\x14\x37\x63\xad\x69\x95\x5d\xb5\xef\xf4\x59\xb6\x5e\xcd\x45\x58\x59\xce\xb4\xe2\x6b\x9b\x32\xf9\x45\xe1\x25\x48\xe1\x0c\xb3\x27\x58\xe2\x88\x5f\x3c\x33\x42\xe3\xc7\x1b\x6d\x84\xac\xaa\xe7\xc1\x8a\xcf\x89\x12\xee\x88\xd8\xec\x48\x5b\xfd\xa9\xe1\xec\x2e\xb0\x79\x84\xb0\xba\x0e\x0f\xcd\xcf\x97\x78\x45\x62\x1d\x93\xc6\xcc\xdf\xe3\x10\x28\x15\x5a\x55\x60\xea\xd3\x1a\xcf\x88\x2d\xfa\x5a\x90\x05\xbd\x86\x1c\x8d\xf4\x4d\x24\xbb\x61\xe5\x0f\xf1\x29\x77\x1b\xd6\x18\xc9\x09\xd7\xfb\xd4\xc1\x49\x17\xa1\x38\x3b\x61\x25\x20\xb3\x82\x85\x04\xda\x4c\x5b\x79\x03\x6b\x3e\x7f\xe1\xb5\xb1\xd9\x50\x70\x94\x28\x05\x10\xc5\x36\xf6\x05\xe9\x07\xf1\x71\x00\x86\x6b\xbe\x0e\xb5\x83\xa4\xbe\xbd\xa0\xaf\xe9\x26\xc0\xbb\xc2\xba\x1b\x4f\xdd\x2d\x46\xcd\x7a\xae\xcb\x0f\x16\x78\x26\xb9\xb8\x69\x2a\xa4\x53\x0c\xcd\xa9\xc6\x3f\x16\x37\x9f\x21\x3d\x7a\x91\xba\x5c\x12\xa6\x3c\xc0\x49\x96\x3f\xc6\x2e\x50\x6a\xe9\x2a\xbf\x43\x75\x59\x66\x8e\xac\x42\x5b\x6e\xc1\xe3\x96\x8c\x85\x49\x28\xc1\x6d\x58\xb9\x63\xdd\x0d\x89\x6f\x4f\x96\x00\xd4\xde\x23\x7e\x82\x99\xda\x4d\xce\x70\x14\x75\x70\x47\xe3\x55\x6f\x45\xb2\xf3\xcb\x00\xa4\xc0\x10\x3b\x71\x0c\xe8\x7a\x2e\x37\x9b\xca\x70\xd2\xcc\x8a\x91\x79\x98\xfb\x94\x5d\x73\x3b\xbc\x70\xa9\xc6\x87\xaf\x1d\x00\x73\x28\x4b\x1c\xd7\x25\xa4\xd2\x4a\x7f\xa1\x5e\xb1\xda\x05\x91\x75\xd5\x72\xb5\x20\x85\x24\xd5\x4c\xe6\x27\x85\x85\x1c\xd1\x61\xc2\xe6\x44\xc4\x33\x2e\x08\xc4\x88\x0e\x0d\x91\x2e\x6e\x60\x8c\xe8\x70\x8e\xe3\x25\xd1\x09\xd5\x13\x5b\xf1\x82\x48\x3f\xed\x25\x01\xb7\xe6\xbd\xda\xe1\x09\x19\x06\xff\xe9\x73\xed\x7f\x9a\xf4\x4a\xe7\xa4\xe3\x22\x22\x95\x59\xd0\x2f\x9d\xa5\x5b\x52\x45\x16\x94\x59\xe6\x54\x18\xb5\x49\xaa\x72\x09\x6e\x30\x71\x2d\x05\x9e\xb9\x1b\x2c\xcf\x34\x33\x85\x02\x92\xe2\x25\x34\x56\xcd\x0f\xda\xc9\x34\x54\xc9\x3b\xaa\xa5\x71\xe7\xfb\xa0\x4f\x86\x8b\x24\x8a\x54\x73\xfd\xe0\x7b\x9d\x01\x94\x32\xf5\x5e\xa8\x9f\x4a\x59\x55\xdb\xea\xef\xb3\xe8\x4e\xdf\x0f\x3b\x4f\xe9\xbc\x73\xc3\x93\xce\x82\x8b\x0b\xa2\xf7\xbb\xdf\xdb\x54\x52\x76\x71\x28\x83\x39\xcb\xdd\x75\x4d\x52\x49\x7d\x5f\xe9\x37\x81\xd7\xcf\xd9\x13\x85\xf8\x9f\x0c\xb3\x87\x0c\x6a\xa7\x6d\x86\x42\x2f\x55\x3e\x08\x19\x50\xfb\x35\x1f\x82\x91\xd6\x6a\x82\x8d\x35\xc1\xcc\x86\x45\xc9\x1b\x2b\x2a\xb2\x15\xca\xca\x8e\x57\x72\x49\xc4\x38\x82\x6b\x2c\x62\x8d\xdf\x82\x04\x57\x6c\x65\x3c\x55\xf4\xf7\xb9\x2a\x90\xc7\x2e\x30\xb2\xdd\x0a\x81\x2c\x9d\x3f\x73\x0f\x14\x11\x17\x37\xe8\x6f\x81\x9e\x08\x7b\xc5\x78\xfc\x37\xa5\x4a\x10\x26\x5d\x3e\xb4\x2e\x42\x36\xb2\x14\x2d\x44\x96\x32\xd7\xee\x1d\x90\xb1\x01\xa2\x8a\x71\x57\x4c\x22\x3e\x39\x99\x42\x81\xf8\x64\x34\x85\x4c\xdf\xcf\x37\x37\xf7\xcc\x6a\xa0\x7e\xfb\xf5\xa5\xb9\xc8\x2f\x50\x6c\xca\x2b\x85\x3c\x0d\x24\x59\xad\x23\xeb\x46\x26\x7a\xbd\x91\xf6\xd5\x2d\xe4\xef\xca\xaf\x8c\x1f\x07\x3a\x7b\x55\xc8\x50\xe1\x65\x9f\x41\x89\xa4\x4d\xfe\x75\x72\x02\x40\xaa\x7a\xd1\x11\x28\xf4\xd0\x30\x36\xe1\x93\x5c\x3f\xcd\xee\x94\xc1\x19\x4a\xec\x9d\xf5\x8c\x1b\x32\xe2\xb8\xcd\x11\xaf\x34\x3a\x47\x96\x63\x02\xd7\x9a\x53\xc6\xd2\xae\xd5\xe6\x67\x78\xab\xaf\x44\x88\x14\x98\xbb\x11\x22\xab\xf1\x1b\x95\x4b\x9e\x48\xbd\x48\x47\x50\xdf\x53\x66\x50\x70\x2e\xc7\x33\x68\x69\xe1\x05\x91\x4b\x6e\x9a\x0a\xec\xab\xa0\x8f\x43\x01\xd2\xd4\x15\x79\x67\x31\xa5\x28\xc6\x85\x50\x98\x9b\x0b\x8d\x5a\xc5\xa9\x53\x7b\xd4\xb2\xf4\xce\x9e\xe4\x8d\x6b\xc3\xce\x6c\x91\x04\xfd\xe0\x6f\x7a\xc7\x38\x0e\x52\xd8\xc4\x22\x55\x1d\xb7\x7b\x52\xbd\x18\xe7\xf3\x88\x15\xec\xa6\xa1\x1f\x71\x4c\xe6\x8e\x3f\xf2\x24\xb5\xed\xb5\x2e\xe6\xd6\x09\xc6\xc5\x4a\xa3\xc4\x64\x8c\x0d\x47\x50\xe4\x0c\x0b\x4a\x29\x60\x0d\xda\x50\xdd\xcb\xcd\xa6\x4d\xd5\xa1\xb9\xf6\xed\x7a\x56\xff\x55\x51\xa9\xbe\x1c\xee\xfa\x38\x27\x6b\x41\x66\xfa\x26\x62\x51\xe7\x41\x0a\x69\xd9\x08\x9a\xf3\x8c\x16\x07\xe9\x27\xf1\xad\x7c\x41\xa5\xf7\x26\x71\xf0\x87\xfa\x46\x8c\x34\xf1\x79\x25\x93\x8f\xd9\xfe\xfa\xcc\x4a\x10\xc5\xa8\x72\x32\x9a\x9e\x49\x1d\x8d\x6c\x1c\xf4\xa5\x62\x74\x97\xf5\xf2\xf8\xc3\xf1\x05\x0c\x06\x01\x18\x67\xdf\xe3\xb0\x58\xe2\xfd\x50\x15\x39\x0e\x00\x18\x93\x36\x89\x5e\x4b\xd8\xf5\x86\x5d\xfd\x82\x94\xae\x18\x80\x14\xae\xf9\x5c\x13\xd7\xcf\x9c\x7f\x4c\xd6\x8a\x03\x0d\xaa\xc7\xf5\xb7\x06\x6b\x58\xd5\x5d\x80\xf0\x25\x94\x31\xda\x28\xd5\x0a\x89\x7c\x40\xbf\xe7\xd2\xe8\xfd\xf1\x31\x0c\x02\x00\x20\xe9\x07\xc7\x66\x2b\x13\xf4\x4d\xad\xbc\x4f\xf9\x8a\x5a\x33\x0b\x77\x69\xc7\x5b\x18\xb6\xb0\xa8\x35\x21\x20\x94\x90\x78\xf8\xc9\x1c\x3e\xe2\xe7\xec\x6d\x72\x3e\xa7\xe2\xc0\x7d\xa2\x8b\x50\xf6\x51\x70\xec\x47\xfe\xc8\xc5\xb7\xde\xf2\x68\xf4\x6c\x36\x3e\x1e\x8f\x6d\xca\xd5\xba\x89\xc9\xcc\x2d\x6d\xc6\x69\x85\xe7\x33\x76\x41\x59\x3d\xd1\xd7\xb4\xd0\x0f\x8e\x89\xae\x10\xe8\xee\xd7\xed\xa0\x96\x38\x0e\x65\xb1\x27\xf5\x9a\x90\xcc\x3b\xf1\x86\x27\x92\xbc\xc0\xeb\xb6\xdd\x80\x02\xc9\x7e\x70\x2c\x54\xb5\x78\x7b\x57\xf2\xab\xc0\xdb\x94\xb2\x52\xa2\x50\xa7\x2d\xbe\x5b\x92\x8e\x6e\xa4\xb3\xc2\x6b\x7b\xdd\x5a\xe6\xf7\xb8\xcf\x49\xe7\x4a\xe0\xf5\x9a\xcc\x3b\xe7\x37\x9d\xef\xcf\x13\x1a\xcd\xf5\x50\xe2\xef\x3b\xe7\x64\xc1\x05\xb1\xa9\x3b\x29\xbb\x18\x06\x90\x0d\x69\xec\x46\xaa\xf4\xa4\x14\xae\x30\x65\x5b\x69\x9e\xd8\x25\x54\x73\x8b\x21\x07\xad\xb3\xa8\x8a\x86\x42\xea\xc8\xc0\xe1\x3e\x85\x56\x5a\x37\xb4\xe1\xed\x12\xb2\x46\x8a\xe2\x23\x34\x6d\x02\xdb\x7e\x4d\x63\xa9\x5b\xf3\xef\x64\x8e\x46\x86\xcc\x8a\x4c\x88\xbd\x61\x62\x0a\x05\xd3\x5e\x2f\x2c\x83\xa9\x94\x01\x50\xa6\x30\xdf\xdc\x18\x6a\x7f\x8d\xa5\x24\x82\xc5\x63\x33\x9f\x8a\x7d\x12\x49\xe6\x61\x65\x51\x9e\x14\x58\x25\xc7\x13\x2c\xbc\xaf\xca\x02\xbb\x56\x17\xe6\xcf\xbc\xab\xa0\x7c\x9a\x82\xa1\x20\x78\xfe\x8a\x45\x37\x21\x80\xc5\x9d\x43\x49\xea\x3a\xeb\x84\xf0\xe2\x0c\x35\x8d\x2d\x00\xbe\x5a\x3b\x82\x1c\x65\xf9\x44\xe9\x43\x7e\x4a\x9d\xf9\x01\x23\x31\xa1\xd3\xa1\xda\x5c\xba\x2d\xa4\xa2\x21\xdc\xeb\x85\xd8\x34\x33\x5b\x72\x1e\x13\x6f\x3b\x83\x21\x01\x00\x62\x9b\x95\xbc\x8e\xad\xb0\x51\x37\x31\x80\x4e\xd7\xfb\x10\xf1\x0b\xd3\x41\xb5\x3b\x80\x18\xc0\xdc\x22\x95\xa6\xb0\xdc\x46\xfd\x72\xa3\xba\xc7\xf4\x7d\x3a\x7d\xac\xdf\x45\x88\x6d\xe9\x84\xda\x83\x34\x7e\x64\x0d\x7b\xed\xc7\xab\x73\x7a\x91\xf0\x24\xee\x98\x4a\x1d\x4d\x5a\x66\x87\xa5\x76\x52\x98\xcd\xd5\x33\xeb\x07\xdf\x1b\xdd\x7e\x4b\xf3\x85\x90\x69\xdb\x7a\xe2\x10\x61\xef\x8e\x13\x6f\xcd\x3f\x1e\x84\x93\xdf\x8f\xa7\x3f\x80\xef\x8e\x61\x70\xfc\xe1\xbb\x93\x3b\x5a\xa5\xa0\x98\xfd\x38\xd3\x9d\xc2\xef\x0d\x76\x63\x3f\xcc\x84\xb5\x8f\x76\xf2\x5d\x74\x3c\xec\x3c\x36\xe1\xca\xcc\xfe\x32\xd2\x73\xd6\x09\xbe\xef\x93\xfe\xf7\x41\xe7\x6a\x49\x67\xcb\xce\x15\x36\xe7\xdb\x0b\x9e\xb0\xf9\xb0\xf3\x3a\x22\x58\x6d\x1c\x88\xc2\x95\x2a\x4a\x55\x51\xc9\xb3\x5a\xf6\x9c\x64\xf8\x3d\xec\x9e\xc0\x5b\x3a\x1f\x97\x8c\x41\xde\x2e\x7e\x6e\x8f\x48\xe2\x00\x26\x4c\xd2\x68\x1c\xfc\x75\x38\x1a\x8e\x82\x14\x40\x7a\x64\x86\x24\x12\xf6\x9c\x69\x53\xa9\xcf\xb0\xbe\x9a\x65\xb5\x8d\xe3\x09\x1e\x7c\x9a\xf6\x27\x8f\x07\xff\x31\xed\xbb\x95\xd1\x84\x8c\xfb\x30\xc3\x2b\x12\x3d\xc1\x31\x31\x01\xf7\x7e\xc3\x82\x99\x2d\x4b\x8c\xb6\x7e\xdd\x6c\x26\x53\xd8\xdd\x0e\x21\xb3\xe0\xe5\xfa\x11\x78\x34\x38\x01\xbd\x9e\xa8\x9d\xb3\xd8\x26\x85\xdf\x0e\x54\x47\xb9\xf3\x20\x1a\xff\x52\x73\x6c\xf5\x7d\xc3\x9c\xe5\xc5\x1b\x27\xef\x39\xeb\xac\x05\xb9\xa4\x8a\xe4\x2f\x89\xd0\xe1\xa5\xb4\x8b\x4a\x61\x86\x60\x07\x77\xce\x93\x8b\xce\x95\x26\x9d\x25\xbe\x24\x9d\x19\x4e\x62\xd5\xde\x92\x38\x56\xc1\x52\xb5\xa9\x46\x63\xe7\xff\x5c\x11\x85\x22\x46\x1b\xc5\x4c\x51\x6d\x47\x0f\xb1\x33\x53\x14\x63\xa6\x4c\xb3\xd8\xb0\xf3\x4e\x7d\x5c\xe2\xb8\x73\x4e\x08\xeb\x2c\xe8\x35\x99\x0f\x3b\xbf\xc4\x44\xb7\x90\x99\x72\xe6\xba\xb4\x02\x6e\xbb\xe6\x77\x40\x2e\xb1\xf4\xbb\xa8\x21\x65\x3d\xa0\x35\x23\x6d\x26\x49\xdd\x4d\xd5\x4b\xbb\xe3\x1f\x68\x41\x50\xa1\x4a\x00\x52\x90\x42\x83\xf1\xa7\x24\x9e\x09\xaa\xfd\x5a\x9a\xd6\xbb\xcc\x66\xe1\x65\x1f\xaf\xb3\x18\x49\xd8\x1d\xa9\x7d\x47\x26\x35\x2b\x61\x8b\xb2\xac\xe7\xcf\x5e\xfe\x3a\xfc\xf9\xd5\xbf\x7c\x78\xf1\xea\xe9\x2f\x3f\x3f\xfb\xf0\xe6\xd9\xdb\x57\x3f\xff\xfa\xec\xcd\x66\x23\x87\x6a\xaf\xac\xbf\xb9\x97\x4e\xd9\xc9\xcd\x1d\x67\xc1\xe4\xff\xfd\x7f\xfe\xef\x69\x30\x0e\x26\x9d\x69\x70\xc4\x3c\x9d\xde\x6d\x61\xfe\xe7\xe8\x2c\x18\x06\x63\x25\x28\x4d\x30\xc8\xff\x39\x1a\x54\x4a\x01\xeb\xe0\x32\x0c\x00\x14\x9b\x4d\x68\x97\xa8\x0a\x62\x94\xf2\x07\x67\x9c\xc5\x3c\x22\xbd\x9e\x7d\x18\x52\xb6\xe0\xc5\x5f\x21\x85\x79\x1b\x90\x41\xbd\xa3\xd7\xc7\xff\x3f\x71\x71\x3f\xb3\x3d\xab\xec\x72\xcd\xfa\x28\x1b\xd6\x47\x39\xa1\x3a\x80\xa2\x8e\x54\x22\x30\x8b\xd5\xae\xe6\x1d\xcf\x4e\x6d\x7e\x4a\xa2\x88\xe9\x29\x85\x18\x1c\xc5\x6a\xe5\x9b\xc4\x53\xa4\x26\x30\x5b\xe1\xe0\xb6\x8a\x8d\x8b\x5d\xd1\x42\x42\x52\xd5\x77\xbd\x35\x82\x14\x69\x95\x4b\xf7\xda\x49\x1b\x06\xf4\x19\x83\xfb\x49\xf5\x42\x31\x42\x3a\xc6\x23\x36\xf6\x21\x3d\xbe\x81\xb3\x58\xf5\x7a\xd9\x36\x95\xd9\x87\x7e\x66\xcd\x72\x6b\x97\xd9\xaa\x5a\x2b\x11\xef\xbb\x82\x6a\xa8\xc6\x5e\x25\x6a\x15\x43\xad\x13\x3a\x0a\x37\xd6\x29\xd7\xb1\x18\x78\x0d\xbb\x83\xe8\xb3\x62\x43\xee\x35\x18\x1b\x52\x4d\x61\xad\x6a\x5e\xc3\x66\x4d\x49\xf4\x1d\xb3\xa9\xb6\xed\xd4\x1b\xfd\x31\x23\x04\x28\xd3\x14\x1c\xcd\x6c\x50\x48\x6d\xad\x09\x6f\x6b\xec\x2d\xe5\x53\xf6\x59\xf3\xe9\x49\xed\x49\xc8\x97\x3c\xf5\xb7\x16\x39\x13\xd5\x69\xec\x07\x1b\xb0\xbb\x74\xef\x4a\x95\x75\x90\x20\xd6\xde\x7a\xe6\x1e\x42\x09\xc6\x24\xad\x09\xc6\x73\xc7\x59\xce\x97\x1b\xa8\x0b\x21\x65\x61\xd9\x18\x56\x6a\xea\xb3\x79\x27\xc3\x0f\xaa\x6b\xda\xa1\x1c\xda\xb0\x08\xf6\x1d\x24\xd5\xa1\x49\x91\xd4\x25\x23\x2e\xc6\xd5\x87\xb5\x85\x0d\x32\xcc\xbb\x19\x67\x97\x44\xc8\xed\x67\xc7\xd9\x81\x84\xf0\x45\x99\x40\x23\xc8\xb2\x78\xa1\xa7\xe2\x21\x3b\x15\xfd\x3e\xa0\x8b\x50\x07\x66\x28\x5a\xd6\xc9\x44\xe4\xde\x14\xea\x47\x36\xec\x89\x83\x30\x38\x99\xee\x95\xfa\x78\xbf\xa0\xf3\xf5\xf8\x23\xff\x48\xf0\xbd\x92\xeb\x91\xc9\x68\xaa\xf6\xb5\x93\xfd\x06\xa3\xdb\xdf\x27\xe8\x72\xfd\x70\x2e\xf6\x89\xd2\x9e\x4b\x78\x62\xec\xea\x6a\x30\xb9\xd9\x70\xc1\xc5\x8c\x98\x48\xe6\xbd\x5e\x58\x4d\xa4\xa0\x6d\x68\x36\xd2\xb9\x00\x00\x56\x4a\x30\xbd\xf3\xb2\x25\x18\x00\x00\x8a\x47\x6c\x1f\x64\x5d\xec\x15\x00\xbe\x09\x53\xfb\x64\x1f\xfc\x1a\xa8\x42\x7b\xe2\x8a\x1c\x0e\x59\x34\x1e\x54\x02\x5f\xb4\x66\x94\x62\x8a\xb3\x3c\xa1\xd9\x43\xa1\x93\x9a\x39\xf1\x51\x4a\xe9\x32\x91\x99\xf8\xe8\x9e\x1c\x65\xe1\x53\xf6\x49\x5b\x69\x40\x1e\x14\x1b\xbb\x88\x8d\xbd\xba\xfc\x4c\xcb\x05\xf1\x2d\x17\xd4\x9f\x22\x38\x7a\x69\xc1\xb4\xea\xb2\x89\x7a\xce\x90\x50\xa2\x82\x22\xe1\x89\x0a\x47\xec\x7a\x9a\x43\x06\xe9\x5d\x99\x76\x5a\x2f\x68\x7b\xe5\xa0\xfb\x0a\x62\xed\xe1\x5e\x52\x6d\xbf\xd4\x75\x4d\x98\xfa\x93\xac\x00\x0f\xf7\x5b\x01\xa2\x43\xae\x00\x8c\xcb\x9d\x84\x5e\xa3\xae\xd4\xdd\x5f\x57\x62\x5c\x6a\x7e\x31\x43\x38\xe8\xd8\xfe\x08\x3a\xf4\x68\xab\x0e\x7d\xcf\x45\x90\x71\x79\x38\xa5\x99\xd7\xba\xab\xfe\xb1\xf0\x75\xd8\x3d\x07\x17\x87\xc3\xde\xf5\x17\x40\x9f\x5d\x0d\x4b\xd8\x19\x4d\x41\xb7\x8a\xb3\x3d\xb3\x81\x5f\x1f\x02\x27\x75\xc3\xfc\x0a\x77\x10\x48\xaf\x97\x79\xe3\x29\x18\x34\x7e\xa7\xba\x74\x63\x1d\xae\xf2\x28\x62\x56\x48\xcb\xec\xc4\xb2\xbc\xa0\x3b\xf5\xeb\x6c\xd4\x45\xa8\x00\xd3\xd0\x5f\x00\xc6\xdd\x6e\xcd\xee\xde\xbb\xa8\x32\xe3\x51\x44\x8c\x05\xa4\x86\x4c\xbc\x82\x85\x2b\x2e\x94\xb3\x01\x51\x7a\xcc\x81\xdd\xe5\x6b\xef\xb4\x64\x7e\x83\xf9\x08\x05\x0c\xbc\x8e\x6b\xbc\x69\x0e\x65\xcd\xd9\x1a\x8b\x84\xe8\x57\x87\xaa\x89\x23\xb7\x33\x60\x6e\x76\xee\x82\x10\x53\x76\x91\x44\x58\xd8\xfa\xcd\x31\x17\x0b\xd8\x66\x0b\x2a\x56\xf8\x8f\x8d\xef\x3c\xc1\x44\x01\xe3\x0e\xd3\x85\x97\x38\x8a\xf8\xd5\x8f\x11\x66\x1f\x03\x90\x63\xee\xd9\x6a\x2d\x3d\xcc\x75\x47\x1a\xbd\x45\x3d\x94\xc0\x1c\x90\xd2\x49\x1b\x27\xca\x47\x59\x7b\x54\x37\xc4\xba\x6b\x81\x62\x58\x7b\x67\xe9\x33\xb8\x66\xd7\xd3\xba\xc2\x54\x8d\xd7\xeb\x0b\xbe\x22\x4c\xfe\xeb\xdb\x42\x6a\x1c\xc9\x3b\x89\x3d\x21\x7a\x8a\x25\xe9\x64\x83\x1b\x06\xc6\x3c\xcd\xf3\x29\xf4\x52\x7d\xa8\x89\xd3\x63\xfd\x89\x2b\xcc\x06\x30\x78\xf1\xe2\x45\xe7\x29\x87\x9d\x7f\xff\xf7\x7f\xff\xf7\x00\x40\x9c\x57\xf3\xc2\xb6\x0b\x38\x09\x16\xae\xc6\x5a\x90\x19\x8d\xf5\xa4\xf8\x44\x30\x05\x30\x46\x78\x68\x8a\xc1\x04\xe1\x61\x56\x10\x46\x08\x0f\xf3\xa2\x70\xd6\xd8\x88\xf1\x0e\x09\x14\xc9\xbd\x12\x3f\xba\x1f\x78\x21\x4d\xa4\x6c\xf6\x4a\x3c\xd6\xcf\x53\x13\x64\xc4\x14\x87\x6b\x34\x1b\xe6\x15\xe0\x12\xcd\x86\xba\x0a\x9c\xdb\x0f\xba\x12\x5c\xb9\x9d\x25\x5d\x84\xd1\x1d\x24\x1b\x5b\x37\xf5\x15\xa2\xfa\x0a\x42\x77\x04\xc0\x90\xc6\xbf\x2a\x34\x87\x0d\x04\x7b\x25\x38\xbb\x50\xb3\xe1\x90\xab\x66\xd5\xb8\x96\xe6\xb0\xee\x06\x63\xe8\xd7\x89\xa6\x45\xaf\x17\x2e\x10\x0d\x17\xfa\xda\xf6\x6a\x48\x63\x33\xca\x70\x01\x13\x50\x3a\xf2\x8e\x0d\x67\x3a\x24\x2e\xec\x64\x84\x1c\x00\x58\x6a\xc4\x95\x71\xcd\xac\x7b\xbd\x70\x8d\x68\xb8\xce\x9a\x79\x8b\x57\xc4\xa1\x34\x5c\x37\x36\xe6\x4f\xd4\x7a\x4b\x83\x7e\x39\xd7\xe8\xb2\xd7\x0b\x97\x88\x86\xcb\xac\x51\x3d\x51\xe1\xb2\xb1\x35\x4b\x09\xcb\x2d\x0d\xd9\x22\xae\x8d\x79\xaf\x17\xce\x11\x0d\xe7\xa5\x81\x99\x96\xe6\x5b\xc7\x65\x68\x0d\xce\xef\x18\xd6\x63\xaf\xc5\x4c\x42\x41\xeb\x86\xad\xe8\x01\x51\x7b\x65\xa2\x78\xfc\x16\xac\x34\x67\x07\xde\xbe\x9e\xfa\x3b\xbf\xca\x95\xc5\x07\xb5\x57\x16\x1f\x4c\x7b\x3d\xff\x97\x73\x43\x64\xfc\xca\xde\x0f\x2a\x53\xfa\x19\x0b\xc1\xd8\xbd\x7c\xc9\x19\x09\xa5\x7a\xa7\x64\x8e\xea\xae\x22\xd2\xb1\x93\x75\xdb\x45\x6d\xec\x24\x67\xdd\xa5\x98\x82\x10\xdd\x77\xa1\xfb\x4c\xe2\x56\x5f\xe8\x6f\x14\xb9\x1a\x37\x83\xa7\x58\xe2\x46\xa1\xfb\xd6\x94\xad\x0a\xde\x58\x5f\x84\x87\x09\x8a\x87\x6b\x2c\x97\x30\x42\xf1\xf0\x23\xb9\xf1\x85\x5e\xc8\x61\x02\x0a\x0b\xa3\x9e\x84\x19\xe8\xf5\x66\xfe\xb5\x18\x36\x34\xb9\x70\x7a\xbd\x99\x76\x97\x88\x3c\x89\xe1\xd3\xd1\x3c\x0e\xcc\x71\x9f\xf4\x56\xd6\xd9\x50\xa3\x33\xfe\x89\x8b\x30\x02\x30\x88\x70\x2c\x2d\xee\x56\x24\x8e\xf1\x05\x09\x40\x91\x5e\x95\x38\xc6\x72\xf9\x98\xcd\xff\x8d\xdc\xf8\x34\xeb\x13\xbc\x99\xc5\x39\x96\xb8\x44\xb7\x15\xa7\x60\x7d\x20\x8e\xa4\xb9\x84\x95\x9b\x2e\xb4\x59\xce\x2c\x42\x71\x00\xe0\xad\x42\xd2\x58\x7a\x87\xe8\x1f\xc9\xcd\x58\xd4\x1c\xba\xf9\xd1\xef\xae\x67\x51\x12\xff\x91\x55\xa9\x1a\x45\x8a\xc1\x80\xb2\x00\x40\x5e\xbb\xfa\x31\x38\x09\x04\x66\x17\xa4\xb2\xaa\x62\xc4\x87\xfa\x8b\xa2\x18\xee\xad\xa3\x77\x2c\x61\xb4\xd7\x1b\x98\xcc\x3c\xde\xbd\xba\xda\x15\xc7\x43\xa7\xea\xb9\xf5\x82\x7b\x80\x10\xc2\x85\x2b\x1e\x31\x12\x21\x86\x0f\x34\x71\x4f\x46\x53\x45\xda\x93\x93\x69\x46\xd9\xe6\x7a\x7a\x48\x40\x66\x66\xb7\x6f\x92\x4c\x41\x6c\x2c\x12\xe9\x56\x67\xbd\x5e\xf2\x50\x6d\x93\xc8\x43\x14\xb5\xea\x6b\x9a\x11\xf0\xd1\xb7\x04\x9f\x7f\x06\x1b\xf6\x36\xb6\x76\x2a\xe6\x1f\x81\xa7\x05\xd1\x7b\xbc\x67\xd7\x6b\x41\x62\xed\x31\xe5\x7c\x87\xea\xe3\x58\xb8\x4b\x50\x75\xbc\x4d\x15\x6f\x93\x0b\x72\x1d\xc0\xc0\x46\x9f\xa4\xec\x92\x88\xb8\x81\xd9\x55\x51\x18\xdb\xf0\x7b\x30\x41\x7c\x68\x8b\xc3\x08\x65\x0a\x40\xd2\xeb\x25\xbb\x48\x84\xb8\xd7\xeb\xe2\x5e\x8f\x4d\xe2\xa9\xf6\x70\x55\x0f\xe0\x28\x20\x2b\x4c\xf5\x3d\xe2\x58\xbf\x45\x88\x0d\xf5\x2b\xfd\xab\x6a\xc2\xb0\x5f\x87\x31\x4f\xc4\x8c\x64\x17\x81\x8b\xe3\x25\x70\x62\x86\xf5\x92\xb3\x77\xd1\x3c\x80\xc1\x8a\xaa\x87\x9f\x8d\x6d\x62\x0a\x20\x45\x62\xe8\x95\xd0\x3e\xba\x7e\x99\xa3\xc2\xc2\xc8\xeb\x32\xeb\xf3\xcd\x46\x3b\xb1\x38\x8f\xd1\x60\x82\x07\x9f\x46\x83\xff\x6b\x1a\x9e\x8d\xed\xe3\x60\xfa\x83\x7b\x09\xce\xbe\x0b\x60\x56\xe4\x56\x47\x57\x81\x69\x63\x51\x00\x8e\xa8\x75\x92\xc9\xe0\xff\x2d\x2f\xdd\xd4\xc6\xfb\xf7\x43\x10\xc0\x96\x25\xcf\x40\xbe\x00\x77\xbc\x3b\xed\x12\x06\x34\x00\x69\x48\x81\xf3\x74\x54\x2a\x29\x85\x8e\x84\xb0\xb9\xde\xde\xd5\x39\xcf\xf4\x8d\xf8\x00\x6c\x36\xb8\x32\xf7\xf6\xb6\x3c\x06\xa0\x8b\x1a\xa4\x69\xbc\xd9\x28\x4a\x54\xbc\xa4\xc4\x29\xf5\xf4\x81\xc2\x3d\xfd\x19\x66\xcf\xd9\x25\xff\x48\xb4\x91\xb4\x86\x35\x6e\x35\x55\x8c\x8f\x7f\xb7\x23\xec\xfe\x8f\xef\xfe\xd2\xfb\xfe\x87\xfe\xfb\x63\x74\xf6\xfb\x87\xff\xbc\xdd\xa4\xff\x67\x30\xed\x87\x67\xe3\xf7\xc3\xad\x25\xc0\x0f\x6d\x70\x37\x04\xfd\xbb\x26\xfb\x98\xc2\xf5\x92\x33\x32\x3e\xfe\x3d\x9c\xbc\xef\x4f\xcf\x4e\xde\xc7\x3f\x4c\x06\xef\x8f\xdf\x0f\xa7\x67\xef\xe3\x1f\xc0\x59\xf8\x3e\x0c\xdf\xcf\x6f\xff\x9a\x82\xf7\x60\x63\x9f\x40\xb1\x90\xfb\x5e\x79\xf9\xff\xd3\x2f\xc3\x70\x72\xfd\xbf\xa7\x9b\x09\x79\x36\x55\x0f\x13\xf9\x6e\x7a\x36\x51\xa5\x36\x59\xbe\x52\x5d\x6c\xf2\x3f\x7e\x78\x3f\x9f\xf6\x01\xf8\xe1\xbb\x63\x98\x88\x68\x7c\x1c\x9e\x8d\xc3\xc9\xe3\xc1\x7f\x68\x2f\x5d\x30\x56\x9d\x39\xbe\x1d\xc1\xbf\xa6\x40\x0d\xe1\xf1\xe0\x3f\xd4\x28\xec\xe3\x40\x3d\xff\x10\xbe\x1f\x4e\xde\x5f\x29\x0c\xf5\xc3\xc9\xfb\xab\x21\xfc\xdb\xd9\xef\xe8\x2f\x3d\xbc\x5a\x9f\x8e\xdf\x1f\xff\x9f\xfe\xff\x18\xdc\xa6\xd3\x1f\x26\xef\xaf\xf2\xf7\xd9\x6b\x70\x76\x76\xbc\x55\x9d\xa2\xec\x9b\x3a\xd5\x4e\x9d\x42\x6d\xd4\x29\x0f\x9d\x5f\x57\x9d\xea\xce\x36\x9b\xe4\x11\xd9\x6c\xc8\xa3\x06\x6d\xaa\xd4\xd5\x6f\xda\xd4\x7f\x23\x6d\x6a\x4b\xb8\x8a\x2d\xe6\xcd\xfb\xb3\xaf\xcb\x63\x59\xd1\x1e\x44\xfd\x5e\xd2\xeb\x72\xd0\x27\x20\x0b\x7a\xc9\x2a\x06\x10\x97\x43\x28\x64\x8f\x4e\xce\xd8\xe0\x64\x3c\x52\xec\x7f\x72\xca\x1f\x32\x1d\x55\x84\x4e\xf8\xe0\x64\xea\x99\x46\xf8\x34\xcf\xb2\x65\x02\xa3\x38\xff\x6f\x50\x8d\xea\xe5\xf5\xc3\x1e\xa2\xfc\x51\xa5\x61\xf5\x5c\xa4\x64\x46\x75\xaa\x55\x49\xfa\x41\xd5\x97\x1f\x89\xbc\x22\x84\xbd\xb0\x36\x00\x18\xd0\xd8\x28\x68\xea\x7f\x7c\x6d\xb4\x33\x96\x69\x67\x24\x63\x3f\x25\xfb\x36\x1b\x0a\xb1\xfb\x6a\x8c\xb9\x31\x62\xc3\x0a\x58\x98\x20\x36\xa4\x31\x8c\x10\x53\x7a\x1d\x9c\xa9\xbf\xf8\x3a\x3f\x44\xb0\x9a\x5d\x2e\x63\xbb\x5c\x5f\xa4\x2e\x0a\xa7\x4c\x33\x11\x4e\x8a\x36\x8b\x68\x85\x91\x45\xfd\x59\x58\xd5\xd4\xa2\x44\x68\xd2\x45\x68\xb1\xc5\x92\x6b\xb5\xd5\xac\xf5\xd8\x3b\x62\xd2\x40\x22\x50\x7e\x33\x53\x72\x66\xf1\x30\xda\x6c\x16\x8f\x66\x0d\xab\xc3\xb9\x41\x94\x77\xf8\x54\x01\x1a\x3d\x6a\xe8\x97\xe4\xfc\xed\x92\x0b\xd9\x54\x59\x5b\x90\x1e\x36\x57\xfe\x99\xb3\x8b\x5d\x8e\x52\xac\xa1\x28\xfe\xfc\x87\xa5\xb7\x1f\xb4\x76\x3b\x3e\x7e\x7f\x1b\xbe\xbf\xea\x83\xf7\xe9\xf1\x85\xbb\xa5\xe9\xdf\x2e\x09\xf4\x65\x99\x05\x25\x6a\x5b\xa1\x53\x91\x66\xdf\x7e\xf2\xd3\xb4\x3a\xc7\xe8\x3d\xc3\xbe\xdd\xa6\xc5\x13\x57\x4b\x50\xf3\xbc\x35\xa5\x73\xe7\xdf\x4c\x44\x88\x6a\x7f\x03\x90\xaa\x5e\x5a\xae\xf8\x89\xd7\xdd\x95\xbe\x77\x17\xcd\x35\x1a\xbd\x77\xb6\x0d\x85\xa5\x9e\x11\x00\x25\x48\x61\xa1\xcc\x21\x7b\x02\x05\x72\xb7\xdf\x8b\xfc\x2d\xd4\xce\xcd\x46\x74\xcc\xbd\x93\xf4\x6a\x8c\xca\xd8\x73\xec\xae\x03\x36\xb9\x5d\x57\xb9\x90\x21\x93\x00\xc0\xa2\x38\xac\x4c\x96\x36\x5d\x83\x14\xe2\xd9\x8c\xac\x25\x99\x8f\x83\x5b\x6f\xf2\xd2\x2c\xc0\x8d\xfb\x1e\x40\x7d\x6e\xd0\x58\x4c\x7d\xec\xdc\xea\x3f\x69\x00\xcd\xe9\x49\x53\x61\x7b\xc5\xf9\xd6\xfc\x55\xc5\x95\xa0\x2c\x97\x9e\x61\xf6\xbd\x29\x6e\x64\x73\x7e\x2e\xdd\xd8\x89\x8e\x7f\x76\xed\x1f\x8f\x96\x6b\xcc\x39\x89\x15\x74\x13\x7a\xf6\x96\xb3\x34\x30\xe9\x1c\x1a\x21\x1b\x05\xc4\x1e\x3d\xe9\xbd\xdc\x1d\x45\x75\xa1\x0e\x9e\xcf\xd5\x1e\x50\xd5\x59\xcb\x9b\xc6\x21\xea\xaf\x01\xd4\x9e\x5d\xef\x78\x13\x68\xfd\x59\x29\x3f\xb7\x34\x4e\x03\x48\x2e\x49\x23\x2a\xd4\xb7\x00\x66\xb6\xc0\x72\x31\x6d\xb4\xd7\xc9\xca\x95\x94\xd0\x97\x22\xc4\xbb\x25\x6e\x04\x67\x8b\x74\xe4\x12\xb3\xce\xed\x85\x4c\x0b\xb5\x5e\x89\x67\xdb\x3b\x5e\xa8\xce\x85\x37\x90\x0b\xa9\xe6\x3f\xd3\xb2\x6b\xfa\xc9\xb8\xec\xe8\xef\x73\x73\x51\x4f\x2e\x49\x27\xa2\xb1\x54\xb5\x34\xa6\x6b\xea\x64\x0b\x63\x44\xe2\x78\xdb\xb8\xd4\x77\x3b\xa8\x48\x0d\xca\x95\xbf\x73\x44\x79\xc5\xc2\x70\x22\x3d\x1c\xc6\xe5\x63\xf6\x9c\x49\x72\xb1\x85\x61\x58\x87\x9a\x12\xa6\xbc\xf1\x34\x6c\x26\x2a\x97\x59\x80\xcf\x1b\x59\x95\xcf\xe7\x01\xcc\xce\xdb\x1a\x4b\xe9\x2e\x5b\x7e\xcd\x4a\xa7\xa6\xe6\x8f\x5b\xf9\xd6\x54\x75\xdc\x9b\x97\x57\x95\xe5\x72\x3b\x05\xe9\x02\x16\xd5\x7a\x81\x4b\x03\x6b\x80\xb8\x83\x8f\x74\xa1\x6c\xf8\x6b\x1e\x53\x49\x2f\x1b\x6b\xb9\xef\x01\x5c\x25\x91\xa4\xeb\x88\xbc\x5a\x34\xb7\xe0\xca\x74\xf8\xa2\x73\x9b\x57\x50\x5d\x53\xec\xc1\x64\xa3\x04\x33\x22\xc9\x39\xba\x34\xf2\x75\x51\x22\x59\x05\xa3\x86\x60\x25\xe7\x9d\x88\xb3\x8b\x4e\xb8\xc2\xd7\x74\x95\xac\xd4\xcb\xdb\x15\xbe\x4e\x3b\xb3\x25\x16\x78\x26\x89\x88\x81\x86\xa0\xf5\x9b\x06\x10\xb1\xfa\xd6\x09\x57\x94\xe5\x30\x28\x2b\xc1\xb0\xfa\x55\xb3\x70\xd6\x9f\x6d\x4d\xcc\xe6\x95\x7e\x04\xda\x46\x73\xc7\xb4\x25\x22\x0a\x60\xe9\xc0\xbf\xa9\x8e\xe5\x6a\xb3\xfa\xea\xb9\x30\x8f\xa9\x85\x60\x14\xcd\xba\x31\x2f\x49\x47\x97\xe8\x98\xf5\xb8\x13\xe6\x01\x36\x94\x8c\x2c\x0c\x7c\xab\x22\xd7\x98\xb8\xe3\xbe\x1b\x1a\xdf\x1f\x10\x8a\x1a\x33\xb8\x0e\xec\x06\x71\x96\xc8\x44\x6d\x37\x90\x0e\x21\x86\xbb\x08\xf1\xb3\xf2\x96\xd0\xc8\xa5\x00\x52\x28\xc0\x38\x88\xa4\x2b\xfc\xa8\x5a\xd6\x49\xb3\xbc\x30\xc9\x4a\x37\x16\xce\x44\x9f\xab\x75\x91\x35\xf1\xb0\xda\x84\xb7\x0a\xe4\xe5\xb3\x56\x1e\x6e\x2b\x5f\x69\x28\xe3\x5d\x57\x7b\x54\xae\x9d\x73\xb7\xa9\xa1\x24\x9e\x2d\xfc\x97\x07\x08\x55\xca\x6b\x89\x68\x8a\xea\x05\x31\x2b\xdb\xad\x96\x35\x2b\xa6\x2e\xdc\x0d\x83\x5c\x18\xd8\x4a\x5d\x16\xe2\x63\x0e\x40\x65\x13\xe6\x95\xd4\xb5\x53\x3f\x3a\x6b\x76\x99\x32\x4b\xc7\xe2\xae\x52\xf6\x7a\x34\xfe\x89\x32\xaa\xbd\x09\x7a\xbd\x17\x58\x2e\x87\x8b\x88\x73\x61\x8c\x55\x64\x1f\x57\xd0\x6d\xc7\x2e\xd6\x93\x5d\x93\x5a\x31\xeb\x23\x8c\x1b\xcf\x64\x0a\x5b\xe3\xca\x9e\xf9\xad\x4b\xea\xe5\x16\xb2\xa9\x39\xd5\xf7\xf6\xbe\x91\xfb\xa9\x37\xca\xb3\x7c\xa3\x1c\x6d\x36\x11\x5c\xb8\xaf\x36\x6a\xe3\x5a\x87\x38\xd5\xb0\x8c\x75\x2e\xdf\xce\x16\x37\xc3\xa5\x29\xc8\xd7\x4f\x6b\xa4\xa7\x8b\x30\xb9\xc3\x5a\x99\x87\x51\xcf\x67\x24\x2c\xd7\xd8\x6c\xba\x8b\x1d\xda\xec\xd6\x84\xa1\xad\x99\xf8\x2e\x8d\x5f\xe2\x97\x21\x01\x69\xc8\x77\x80\xbe\xd6\x44\xb8\xad\x86\xd3\x39\x6c\x1d\x67\x27\x5a\xa2\xd1\xe9\xf2\xa1\x33\xad\x9e\x2e\xdd\xfd\xf5\x39\xc2\x93\xe5\x14\xae\x90\x08\xe7\x90\x42\x5e\x74\xb2\xcd\x76\x23\x2b\x67\x87\x5c\xa5\xad\xf6\xc4\x66\xe9\x9c\xdd\xd3\xc5\xb0\x52\x32\x61\x57\x02\xaf\x07\x6b\xc1\xaf\x3f\x47\x30\xd8\x56\x36\xf5\x92\xfd\x3c\x1f\x69\x40\x2f\x18\x17\x24\xb3\xa1\x73\x44\x87\xee\xab\x8e\x3e\xea\x7d\x87\x71\xc9\xcd\x89\x28\xb6\xc1\x67\x8e\xf8\x5e\x1b\xd5\x23\x8c\xc1\xb8\x5b\x24\xc8\x38\x77\xe7\xe5\xbd\x5e\x37\x69\xb0\x9f\x18\x7e\x75\x96\x75\xed\xba\xcb\x7b\xbd\x86\xd2\x56\xd1\xb1\xe5\x5b\x4d\xb0\x99\x0f\x1a\xab\xb9\x58\xd1\xb8\xed\xed\x9d\x83\xde\x5b\xef\x86\x5d\xb2\xd9\x74\xb5\xd1\x41\x2e\x09\x0b\x00\x48\xed\x25\xbd\xd2\x89\xdc\xdd\x23\x29\x50\xd6\xfe\xd7\x6a\x6c\x97\x8a\x81\x7b\xfd\xb4\xab\xaf\x55\x03\x9b\x4d\xcd\x77\x6d\xb4\xd5\x9f\xc1\x5e\x77\x00\xca\x78\xea\x90\x30\xdf\xf3\xcb\x50\x80\x33\x12\x96\x5c\xc4\x75\xc8\xd2\x00\x80\xb1\x48\xf5\x45\x47\xdd\x3a\xaa\xa6\xdf\x6f\xc1\xb1\x5f\x6e\xf6\x4d\x22\xc8\x2c\x76\x81\x89\x7d\x01\x4d\x25\x09\xf5\xa0\xae\xe5\x58\x40\x6b\x96\x1b\xb3\x82\x97\x14\xbd\xbc\x19\xcc\xf8\x9c\xac\xa8\xea\xb7\x17\x3e\xef\xb8\xf8\xe5\xf3\x8f\xa8\x94\xc7\x38\x0b\x63\x2b\xf1\x85\x09\x58\xaa\xc6\x81\x05\xc1\x01\x54\xdd\x7a\xa1\xbb\xe5\x1c\x12\x99\x6e\x56\x6d\xde\xe9\x8c\x84\x00\xce\xe9\xfc\x39\x8b\x89\x90\x36\x13\xf6\x3e\x41\xd9\xf3\x56\xbc\xf8\x61\xf9\xcb\x00\x0c\x17\x82\xaf\xde\x91\x6b\xf9\x58\x10\x1c\xe6\x65\x6c\xd2\xcb\xe7\x73\x17\x92\xd3\x7f\x1b\x00\xfb\x32\x26\x32\x59\x3f\xc9\xc0\x3d\xbb\x24\x4c\xfe\x1d\xb3\x79\x44\x44\x18\xcc\x96\xe6\x18\x52\xf7\xcc\x14\x9f\x2d\x89\x42\xdf\xaf\x0a\x77\xbf\xac\xe7\x58\x92\xf9\x63\x3d\x24\x90\xaa\xe1\xbe\x21\x6c\x4e\xc4\x1e\xe3\x4c\x34\xac\xbc\x23\x36\xd3\x54\xd8\xf0\x59\xb7\x1f\x82\x14\xd2\xf8\x57\x1a\xd3\xf3\x88\x3c\xa5\xf3\x27\xba\xbb\x76\x32\xf8\xb9\x36\xa2\x88\x30\xc8\x8a\x04\xb0\xd2\xaf\x2b\xec\x3e\x76\x91\x87\xdf\xbc\x4a\x76\x5e\x29\x12\x96\x8d\xfe\x15\x9b\x91\x30\x10\x7a\xac\x3e\x76\x24\xbf\xb8\x88\x88\xae\x4a\x23\x2a\x6f\x40\x0a\x60\x33\xc6\x4a\x11\x64\xf2\x66\xb8\x02\xef\xe1\x9c\xb0\x79\xb5\xb6\x71\x7a\xb4\x78\x80\x44\x1b\x49\xb7\x4c\x66\x25\x14\x91\x7f\x0a\xa3\x1a\x35\x59\x40\xa1\x00\x47\x65\xba\x1b\xda\x25\xd7\xf4\x46\x69\x7b\xc1\x15\x8d\xa2\xa7\x24\x96\x82\xdf\x3c\x73\xd9\x82\x75\x87\x2b\x08\xf6\xc1\x2c\x16\x1a\x4e\xaa\x7b\x5a\x37\x26\x9f\x6e\x9c\x8a\x54\xb5\x83\x43\x89\xdc\x81\x2d\x14\x68\x74\x2a\x1e\x12\x7d\xe3\x4d\x4e\x84\x7f\x80\x26\xa6\x47\x19\xfa\x0c\x78\x9f\xfe\x26\xc1\xa5\xd7\x7c\x30\x1d\xce\x38\x9b\x61\x19\x96\xa2\x52\x57\x4e\x88\x4b\x77\xf5\xed\x7b\x77\x36\x7e\x2a\x1f\xe6\xb7\xf7\xfb\x7d\x20\x26\x72\x8a\xc8\x44\xe6\x67\x79\xee\x50\xd5\x00\x56\xac\xab\xb5\x4d\x09\x00\x48\x61\x99\x7e\xaa\x67\x02\xb5\x24\x7a\x54\x43\xcb\x4a\x67\x2e\xbf\x46\x04\x12\x17\x5d\xcf\x9b\x17\x41\x16\x82\xc4\xcb\x50\xf5\xa0\x9e\x0d\x4b\x94\x5a\x81\x70\x41\xa4\x29\x18\x12\xa0\xf8\xa8\xa6\x91\x38\x2f\xa2\x49\xb5\x81\xdf\xb7\x8d\x98\x9b\x22\x01\x38\x22\xc5\xcc\x55\x04\x0c\x17\x5c\x3c\xc3\xb3\x65\xe8\x07\xcb\xd9\x22\x57\x42\x09\x75\xf8\x84\x54\x53\x6d\x4d\x77\x34\x6d\x6e\xeb\x8c\xa6\x1e\xd5\x15\x27\x37\x4a\xf8\xb0\x8c\x59\x8f\x09\xf3\x91\x6c\x36\x41\x00\x52\x58\x65\xa6\xfb\xad\x13\x43\xc9\xb3\xe5\xc0\x17\xfd\x85\x45\x23\x61\x42\x07\xda\x22\xe2\xb9\x55\x79\xea\x97\x0e\xe0\xe2\xee\x94\x5b\x29\x26\xa0\x28\x2d\xe0\x76\x09\x8c\x8f\xd5\xbb\x41\x75\xed\x86\x81\xb7\xa6\x7f\xae\x53\x67\x9b\x76\xc0\x74\x25\x5b\xc8\xf7\x4d\x8e\xe2\x34\xc3\xb8\x2e\x60\x51\x0a\xfd\x45\x78\x5c\x7b\xc0\xa3\xc1\x54\x90\x4e\x72\x95\xbf\xb8\x90\x0b\xc5\x8e\xae\xd1\xf2\xe9\x5b\x21\x12\x6f\xd6\xb3\x09\x99\xa6\xb0\xdc\xc2\x96\x48\xe8\x85\x9a\x48\x42\x99\xc2\x98\x5e\x30\x1c\x95\x06\xd0\xca\xab\xe1\xc1\x19\x1b\x3c\x30\x5e\x0d\x0f\x0a\x5e\x0d\x0f\x4a\x5e\x0d\xf9\x78\x4d\x63\x0e\xeb\xee\x35\x9c\x10\x28\xbe\xb6\x3c\xa6\x5a\x1e\x57\x99\xa4\x30\x0b\x05\xce\x28\xcc\x42\x81\x37\x22\x7c\xc3\x13\x39\x38\xa7\x6c\xb0\xc6\xb3\x8f\x44\x1c\x9f\xd3\x92\xbb\x5a\xb5\x08\x61\xb2\x94\x59\xc5\xcb\x4c\x22\x3d\x39\x7c\x45\xe7\x72\x89\xe4\x66\x63\xe3\xc9\xdb\xfd\x03\x22\x69\xdd\x7d\xe7\x4e\x81\xf2\x6b\xfc\x79\x5e\x24\xb1\x7c\xbe\x5a\x5b\x39\xd4\x09\xfa\x04\xa4\x5e\xe0\x0d\x09\x89\xf1\x40\xd3\xc5\x51\x79\x5d\x70\x00\xdf\x64\x45\xc2\xe0\x35\x16\x78\x45\x24\x11\x99\x51\xd9\x24\xa8\x18\x77\x26\x23\x6d\xc4\xd6\x41\x5a\x81\x4e\x77\x71\x85\x63\xd5\xa6\x5a\x20\xa4\x97\x6a\xc4\x24\x6a\x7c\x2c\x51\x2d\x2d\xab\xf9\x2c\x96\x37\xc6\x48\xce\x90\x70\x86\x49\xce\x94\x16\xec\x15\x59\x44\x49\xbc\x54\xdf\xf5\x43\xe9\xe3\x92\xd0\x8b\xa5\x54\x5f\xcd\x53\xe9\x33\x8d\xff\x45\xd0\x39\xd2\xaa\xa5\x7a\x2a\x7d\x36\xf4\x56\xe3\x7f\xe6\xcf\x8f\x2d\x55\xec\xf7\x0a\x5f\x3f\x31\x9f\x5f\x2d\x16\x31\x29\x8f\xd7\x8b\x31\x68\xfa\xe5\xc5\xa3\xd4\x56\xca\x15\xbe\x0e\xc5\x40\xc2\x51\x09\x7f\x97\x66\xfd\x7f\x2b\xb1\x8e\x5b\xad\xb3\x4d\xa8\xee\xd7\xbd\x2f\x0d\xc6\x18\xc9\xac\x02\xf1\x9b\x9e\x38\x55\xb3\xe6\x75\x2d\x0e\x1f\x9b\xd4\x16\x75\x89\x62\x7c\x6c\x4c\xc8\xd4\x56\x28\x76\x5c\x13\xf7\x0e\x30\x74\xf9\x74\x2b\xef\x19\xc6\x6a\xdc\x47\x6e\xdb\xdb\x7a\x98\x47\x36\x32\xb4\xe5\x3e\x17\x5a\xda\x92\xdd\xed\xf5\x58\xc0\x9b\xd2\x1e\xb7\xda\x15\x1d\x2e\x75\x70\xa1\x28\xe8\x0e\x69\xa0\x04\x46\x79\x99\x2c\x1c\x5f\x68\x95\xde\x46\x43\x37\xbc\xfb\x9b\xdf\x33\xf7\xf2\xef\x96\xb0\xa1\xb7\xea\x7d\x37\xe3\xcc\x38\xec\x69\x0b\xb7\x9f\x66\x0c\x8a\x7c\x2e\x4a\xcb\x5e\x2e\xc5\xb3\x12\xc0\x2f\x5e\x03\x3c\x8f\xda\x58\x28\x68\x38\xd1\xe3\x96\xb4\xf0\xd9\x32\x5b\x75\xf2\x43\xdf\x30\x7f\x9c\xcf\x86\x25\x97\x70\x04\xc0\x66\x73\x02\x1e\x9d\x14\xe1\xd5\xf2\x42\x79\x73\x44\x90\xe1\x27\xaa\xdf\x98\xb0\xe0\x45\xd6\xd4\x5b\x25\x97\x4e\xca\xeb\x89\x6c\xec\x49\x81\x53\x0b\xdd\x2e\xb0\x8a\x2a\xfd\x03\x2b\xf6\xb9\x8e\x09\xab\xe4\x69\x2c\xa2\x1a\x62\xdd\x20\xed\xd8\x20\x6f\xd7\x5d\x68\x03\x89\x1b\x39\x15\x02\x17\x4c\xb5\xdc\x59\x98\x18\x78\x33\x42\xa3\x50\x1c\xc7\xe0\x07\x7e\xc4\x7a\xbd\x30\xe9\x23\x0e\x6c\xea\x19\x3c\xa0\x15\x39\x95\x21\x38\x81\x11\xd0\x12\x4b\xdc\xc9\xf8\x25\xf5\xc5\xa7\xf4\x62\xf5\x06\xe1\x53\x5f\xff\xef\x56\xf0\x88\xba\x15\xa4\x51\x02\x3b\xbc\x9c\xea\x68\xad\x62\xb3\x21\x8f\x04\xe8\xf5\xf2\xc5\xd1\xa4\x85\x6a\x45\x20\xc4\x27\x90\xdb\xeb\x31\xf9\x0b\xfb\xa1\xae\xd4\x66\x04\x6f\xc6\x05\xfa\x61\xe0\x87\x9a\x59\x21\x3a\x93\x4e\x75\x41\x2b\x29\x53\x95\x7b\x29\xa4\x3e\xbc\xba\xa9\xdd\x99\x93\x35\x61\xf3\xb8\xc3\xed\x99\x30\x15\xb1\xcc\xf2\x2a\xeb\x1c\xde\x8e\x40\xe7\x72\x19\x1a\xd8\xc0\xde\x2c\x95\x45\xa4\xb9\x20\xb7\x59\x94\x90\x91\x75\xda\x2e\x92\xc7\x36\xe6\x86\x27\xf9\x0d\x14\x81\xc4\xa3\xd1\x99\x18\x9f\xc0\x9c\x14\xe5\xb1\xa8\xc5\xcd\x08\x6c\x17\xca\xf1\x92\x44\x8b\x81\x1e\x5c\x1b\xa9\xdc\x4e\x77\x33\x52\xc5\x3f\x7e\xcc\xf7\xd1\x35\x42\x18\x4a\xb7\xeb\x70\x74\x68\x93\x1f\xa2\x89\x9f\x06\x92\x41\xb6\x9b\x7c\x66\x6d\xe5\x33\xdb\x2e\x80\x4d\x7a\x4a\xd2\xeb\x65\xbb\x5f\x3d\x39\xce\xe4\xa0\x25\xba\x9a\x22\x6f\x89\xf4\x9c\xa3\x4b\xb4\x60\x6d\x38\xd2\x45\x2d\xb2\xbc\xa9\x70\xf8\x58\x86\x02\x64\xbc\x38\xbc\x7e\x34\xca\x0f\x0a\x5d\xcc\xa7\xb4\xd0\xd9\x1a\x42\xdf\xaf\xb3\xed\x88\x36\x8b\xc1\x04\x19\x72\x19\x1b\xe4\xe0\xe4\x94\x3f\x42\xa3\x5e\xaf\x1b\xd2\x47\x2e\xa6\x76\x36\x20\x0e\xbc\x11\xdd\x80\x53\x3e\x18\x00\xf6\x50\xd8\x9e\xeb\xd0\x66\xee\x87\xb9\x6b\x96\x17\x76\xe4\x4e\xfb\xac\x38\xea\xd2\x12\x5a\x8c\x5e\x5e\xa6\xa1\xa3\x2c\x8c\xb3\xb6\x11\x39\x75\x95\x80\x22\xcc\x76\x6b\x8e\x6c\x8d\x53\x09\x8e\xda\x2d\x50\x05\xd7\xd0\x0f\x35\xdd\x08\xa9\x6e\xbb\xd8\x5d\x87\xdf\x0a\x16\x98\xcb\xf2\x99\xd1\x1b\xf7\x7a\x7c\x44\x1e\x21\xda\xeb\xe9\x93\xb7\x5c\x74\x83\x90\x3a\xd9\x6d\x33\xe7\xc3\x59\x3d\x32\xdd\x3e\x78\x81\x46\x70\x8d\xf4\xf1\x35\x79\x38\x2b\x66\xca\x29\x55\x99\x90\xa9\xa6\x1b\x45\x4a\xb3\xb3\x10\xa3\x11\x8c\xd1\x08\x8c\x43\x8c\x66\x83\x13\xb8\x46\x21\xab\x6f\x6b\x82\xa7\x3e\x33\xf4\x99\x19\x02\x5c\x20\x66\x09\x46\x3b\xb4\xe7\xf4\x02\x71\xbf\x0f\x60\x84\xf0\x69\xf4\x90\xf4\x4f\x4e\x23\x77\xbc\xbc\xac\x5b\xca\x23\x00\xe7\xa8\x2a\x69\x23\xa0\x96\xf3\x79\x7f\xfd\x88\x9f\x85\x45\xf8\xfd\xac\xdd\xc4\x0c\x1f\x2e\xd0\x12\x8c\x13\xb4\x86\xcb\x47\x26\xf8\xc7\x12\xc0\xa6\xd1\x44\x53\x9d\xd4\x2c\x3b\x6d\x0d\x17\x70\x0e\x13\x18\x03\xb8\x46\x49\x7f\xee\x85\x61\x2f\xcc\xf3\xdd\x74\x99\xcd\x3b\xe4\xd0\x60\xb7\x38\xff\xaa\xb3\x11\x1a\x1d\x45\x88\x3c\x1a\xf5\x7a\xe4\x61\x7c\x56\x64\x51\xe2\x73\xe8\x38\xe7\xf2\x19\x22\xa7\xb3\x87\xf1\xe9\xcc\x08\xaa\x04\x21\x14\xd2\x7c\xba\x5c\xf5\x99\xc7\xe1\x60\x78\xa3\xb3\xbb\xd2\xe1\xcd\x20\x82\xa2\xd7\xeb\xf2\x5e\x2f\xe4\xd9\x8c\x01\x00\x93\x87\x12\xe0\x7e\xdf\x64\x13\xd4\x97\x23\xc1\xb9\x20\xf8\xe3\x91\x40\xdd\x13\x28\xfb\xf9\x9a\xc8\x61\x56\xad\x7f\xa2\x26\xd7\xe1\x08\x17\x71\x54\xa7\xbc\x14\xf3\x58\x66\x22\xcd\x1d\x3c\x23\x84\x98\x52\x61\x18\xa8\x61\x06\x06\x95\x6e\xdf\x9a\xd3\x85\x9f\xce\xb4\x84\xcf\x62\x47\x5b\xe9\xe2\x9a\xa5\xd0\x28\x17\xba\x46\xa0\xcb\x5e\x6f\x17\xe1\x03\x5b\xab\xf4\x99\xb5\xcb\x09\x0e\xbb\xd7\xce\x04\x47\x46\x48\x18\x71\x18\x23\x7a\x7a\xea\x52\xfe\xc6\xc7\x58\x67\x6f\x56\x84\x81\xf3\xf6\x0a\xba\x4c\x02\x20\x1f\x9c\xe4\x91\x5b\xb0\xd5\x91\x8b\x28\xc3\x00\xce\x50\x94\xa1\xcd\x40\xc5\x30\x8c\xd1\x6c\x78\xd3\x8f\x1c\x19\x3c\xb2\x71\x00\x4f\xe3\x47\xda\xe2\xaf\xca\x0c\x4e\xba\x68\x30\xc0\xe0\x14\xc4\x28\x9c\xa1\xb0\x0a\xba\x40\x9e\x19\xb0\xec\x3a\x6f\xaa\x30\x8e\x10\x8a\x1d\xec\x87\x88\x9c\x2a\x12\x85\xfb\x01\xc4\xee\x26\xd9\xe0\xa4\xea\xbc\x30\xc7\x12\x1f\x0f\xd6\x82\x5e\x36\x84\xbe\xa2\x6c\x11\x11\xa5\x9e\x04\x30\xf8\x9b\x7e\x75\xcc\xc5\x9c\x08\x32\x1f\xc4\x44\x66\xc5\x34\x1c\x9b\x20\xa4\xa2\x7a\xa9\x95\xaa\x60\x55\x16\x28\xcb\x65\x4e\x59\x47\x9c\x65\x42\x68\xac\x56\x72\xff\x1b\x3b\x63\xd9\x37\x97\xea\xc7\x3f\xa5\xca\x8f\xf5\x4b\xc9\x9e\xb4\x4e\x93\x05\x65\x74\x92\x97\x21\x39\x11\xd3\x23\x36\xcc\x13\xa8\x23\xff\xc7\x66\xd3\x3d\x81\xcc\xe6\x54\x4c\xcc\xf7\xee\x08\xda\xe3\x06\xd5\x1f\x35\xcb\xc3\x2b\x41\xa5\xfd\xd6\x9c\xae\x9d\xe9\xd8\x2d\x2c\x4f\x1a\x9d\x1f\x8e\xf8\x67\xf5\x1d\xd1\xeb\x29\x7d\x31\x63\x4b\xb5\x49\x64\xfa\x9d\x3e\xf4\x4b\x53\x4d\xfa\xf5\x83\x76\x4a\xec\x0a\xaf\xb5\x34\x7f\x81\xd7\x75\x89\x8a\x67\x7c\x7d\x53\x8e\xfc\x2f\x75\x05\x52\x5c\xee\x57\x78\x5d\x3d\xcb\xd1\xd2\x4b\xda\xe8\x46\x04\xa4\x3a\x3d\x18\x29\xa8\xa8\xda\x0b\xa7\x66\xa3\xa7\xf5\x35\x7d\x0a\x48\x3f\x91\x62\xa5\x59\x44\xb0\xa8\xa4\x23\x70\x12\x91\xa0\xac\x43\xc0\x14\xb5\x76\x6a\x52\xc8\x4d\xee\x03\x34\xe6\xe0\x76\x10\x4d\xd9\x3b\x41\xba\x84\xd0\xad\x60\xda\xc2\x77\x02\xb5\xf8\x6d\x07\xd4\x16\xbe\x13\x68\x21\x1b\xf4\x36\x80\x17\x44\xde\x09\xac\x90\x91\x7a\x1b\xb0\x25\xbe\x7b\xb8\x1f\xc9\x4d\x4b\x68\xaa\xe4\x9d\xe0\xe2\xb6\x03\x8d\x5b\x0c\x54\xb3\x75\xcb\xde\x99\xb2\xb5\x20\x69\x48\xe0\xe4\xf6\x23\xb9\x19\x07\x8a\xce\xf5\xed\xb2\x6a\xb2\x5a\x8f\xc5\x34\x37\xa4\x53\x60\x32\x74\xbb\xc0\x79\xb9\xaf\x93\x3b\x2d\x33\xef\x5f\x1b\x67\x32\xfd\xe5\x05\xbd\xa6\x0c\xde\xae\x88\xc4\xa5\x44\x7c\x3a\x21\x5e\x1c\x3a\x07\xa6\xa1\x2a\x12\x68\x0f\x08\x54\x71\xb5\xba\x03\xbe\x17\x9d\x29\x29\x98\xfa\x63\xb7\xbd\xbd\xb5\x0e\x6e\xb6\x0f\x6f\xde\xfe\xfa\xda\x81\x19\xda\x0c\x27\xe6\xa0\xd9\x73\xfa\x8d\x0a\xa0\xf0\x7d\x40\xcd\xea\x4f\x54\xb4\x58\x73\x93\x27\x2b\xb7\xc4\x72\xd7\xae\x09\x99\xba\x63\x2f\x7f\x22\x53\x73\x11\x14\x7b\xc9\xb3\x23\x8e\xe7\x4d\x53\xa9\x04\x62\x90\x79\xfa\xf9\x07\xbd\xb6\x9d\xa1\xa9\x1f\x5a\x67\x9f\x14\x9a\x21\xbf\x21\x33\x2e\xe6\xe3\x59\x18\xf8\xbf\x03\x00\x39\x53\x2f\xf5\x59\x09\x67\xc4\x3c\x93\x00\x40\x29\xe8\xc5\x05\x11\xea\x85\x7d\x54\x25\x16\x0b\x5d\x62\xb1\x08\x00\x5c\xe2\x58\xfd\x58\xe2\x58\x4d\xb9\x5e\x27\xd7\xa8\xe1\xec\x2a\xb3\xa3\x55\xee\xe3\x77\x7d\x03\xd4\x1b\xb2\x20\x82\xb0\x99\xb3\x42\x49\x9b\x6a\xcc\xdc\xdf\x20\xac\x43\x19\x95\x14\x47\x34\x26\xf3\xce\xa0\x63\x13\x2e\x17\x4a\xcc\x70\x14\x91\x79\x96\xe0\xb7\x2b\x37\x9b\xc0\x9c\x25\xe5\x36\x2f\xd9\xeb\xe5\xf9\x74\xf2\xb7\x67\x64\x2c\x53\x7b\x03\x31\xcf\xb3\xe8\x99\x9c\x9c\x56\xa0\xcf\xf2\x73\xd3\x89\xfe\x09\x45\x65\xc9\x75\x43\xac\x6b\xab\xd7\x33\x2a\x2d\x92\xf5\xf6\xb7\xb7\x6a\x68\x1d\x92\xc5\x2c\x31\x07\x69\x84\xea\x7b\x3b\xe7\xa4\xa3\x6a\xeb\x9b\x43\x59\x73\x50\xdf\xcd\x0a\xfa\x59\x30\xde\x23\xd2\x6c\x29\xea\xf5\xfc\xc5\xff\xd6\xb3\x08\x8d\xed\xc1\x3a\x81\xb9\x86\x32\xee\x9e\x40\xa7\x7e\x8c\xbb\x23\xe8\xab\x2a\x63\xe3\x9e\x2a\x7b\xbd\xd0\xb6\x11\x6b\xcf\x5c\x03\xfa\xd5\xe2\xac\xf6\xad\xc6\xcd\x98\x0c\x3f\x7c\xd0\xbd\xf8\xf0\x01\x49\x90\xea\x8c\xb6\x85\xb3\xa0\xc2\x0a\x63\x90\x69\xd4\xf3\x42\x72\xda\xd2\x9a\xe4\xa5\xc8\x94\x85\x64\xff\xfe\x74\x85\xb2\x94\x22\xdf\xee\x05\xa0\x48\xa1\x4c\x43\x0e\xe0\xf2\x0e\x09\xa9\x3d\xad\xc8\x1c\xde\xba\xf3\x62\xeb\x75\x15\x57\xdc\xae\x8c\x0c\x2e\x17\x73\x01\x0b\x61\xe5\x4b\x3d\x00\xce\xc2\xe0\x9c\xcc\xf0\x8a\x3c\xcf\x2f\x9a\xcb\xcc\x43\xcb\x7d\xfc\x35\xbf\x83\x9e\x42\x13\xb6\xee\xc7\x9b\xc7\x52\x0a\x7a\x9e\x48\x93\xb2\xf3\xae\x64\xaa\x9a\x16\xd7\xe1\xad\x8f\xaf\x1a\x79\x64\xd1\x13\x02\x73\xf4\x9d\x85\xef\xab\xf3\x5a\x28\x8b\xc5\xda\x8e\x05\xc0\x5c\x5c\x06\xa9\x73\x19\x2d\x27\x7e\x1d\xae\xf0\xfa\xc7\x9b\x5c\xda\xc1\x20\x8b\x0d\x08\xed\xbb\xbb\x47\x97\xf7\x1b\xc0\x84\xe9\x54\x75\x4e\x83\x6e\xca\x06\x98\x87\x26\x34\x19\x4d\x47\xdd\x3c\x4b\x9b\x97\xa6\xd7\xea\xa4\xe5\x4e\x33\x2e\xc3\xec\x72\xbf\x9f\x43\x16\xcf\xe7\xb5\x29\xe5\x2a\x57\x8d\x0d\xdc\xcc\xeb\x0b\xcf\xe7\xc6\x60\x2c\xb2\x1b\xfd\x35\x85\xad\x1f\x92\x95\xde\x65\xe2\x51\x84\x57\x6d\xdf\xd9\x0f\x17\x94\xcd\x5f\x89\x27\x5a\x5a\xd8\x0b\xd8\xb1\x67\xa3\xc6\xf3\xb9\x61\x6b\xc5\x86\x70\xb7\xc9\x2d\x55\xd6\xf0\x18\x97\x74\x71\xe3\x66\xc1\xf8\x74\x6a\x3a\xa8\xed\xc8\xf6\x64\xbb\xfe\x5c\x41\xe7\xed\xb8\xc2\x1f\x89\xf1\x13\xd1\x16\xd6\x3c\x45\xa2\x4b\x93\xa7\xb6\x3b\xa3\x53\xfe\xd0\xfd\xd6\xae\x2c\x36\xaf\x20\x9b\xf0\x29\x8c\x91\xd0\xb9\x1f\x15\xf9\x39\xa2\x83\x18\x1c\xd1\x09\x9f\xa2\x78\xb3\xb9\xc5\x6e\xb4\x63\x92\x79\x3c\x67\xdb\xe0\x0e\x4d\xa1\x20\x2b\x7e\x59\xf4\x26\x69\x9c\xbb\x2c\xef\xbd\xa9\x14\x92\x2a\x96\xef\x98\xe7\x5f\xed\xe5\x74\x2d\x5f\x2a\x0d\xe7\xa1\x18\x6a\x00\x16\x48\x5f\x10\x35\x55\x6a\xd4\xd9\x00\x03\x48\xc0\x51\x1e\xea\xab\xa8\xe8\xc0\x1d\x08\xc2\xec\x88\xd4\xe0\xb6\x51\xc1\x96\x8f\x19\x57\xa5\x29\xd4\x1b\x36\x5f\x4c\xdd\x8d\x5c\x5d\xc5\xf9\xcb\x35\xe3\xaf\x02\xb9\x05\xf6\x48\x85\x89\x1b\x90\x00\x9d\xce\xf8\x38\x54\x2b\x76\xd3\x46\x58\xc7\x02\xd2\x89\x03\xec\x2e\x56\x75\xbb\xa6\xb4\x5d\x2c\x1a\x19\x4a\x6b\x34\xb0\xb2\xb2\x95\xb6\xc8\x9e\xf6\x93\xa6\x5a\xd1\x6b\x72\xc4\xf0\xb9\xcd\x9d\x31\x28\x85\x20\xd7\xe6\xe7\xd5\x1d\x8e\x69\xfe\xa7\x67\x8f\xdf\xfd\xf2\xe6\xd9\x5b\xa0\xf6\xf2\x4c\xe9\x12\xf3\xba\x9d\x4e\x06\x68\x65\x45\x94\xd9\x15\xe9\x4c\x95\x5c\xd0\x0b\xca\x70\xa4\x97\xa8\xb3\x30\x4f\x17\x98\xd1\x6a\x3c\x91\x3a\xe9\xf8\x14\x12\xed\x15\xac\x95\x67\x8d\x94\xdf\x70\xfc\x86\x68\x73\x92\x29\x01\xc0\xd8\x82\xd6\xc2\x9d\x47\xc6\x59\xb9\xd7\x73\x15\xcf\xc9\x8c\xaf\xc8\x53\x2a\xd4\x2c\x43\x62\xdd\x4c\x8d\x22\xad\x51\x19\x87\x40\x6b\xf3\x97\xe8\xd6\xea\xa9\x6f\xa5\x8e\x62\x90\xb0\x19\x5f\xad\xa8\xd4\x81\x1b\x68\xac\x41\x28\x3d\xca\x7b\x3f\xbe\x9d\xd3\xf9\xdb\xec\x4e\xd3\xcd\x78\x05\x95\x1a\x4f\xf5\x85\x5d\x3c\x2e\xb8\x4a\x94\x47\x30\x2e\x3a\xb3\x2c\x71\x6c\x26\x7c\x9e\x91\x5a\x1c\x82\xcd\xc6\x8d\x43\x70\xa5\x21\xff\x88\x67\x1f\xd5\x22\xa0\x08\x8b\xcc\x8b\x8d\x68\x30\xd6\x3d\xb6\x0a\x09\x6e\x6b\x42\xa7\x4f\xd5\x66\xc1\x77\x3c\x0c\xd4\x10\xc8\x7c\x18\xe3\x4b\xa2\x57\x1c\x0f\x85\xc5\x21\x5d\xd1\x28\x7a\xa2\x71\x51\xea\x45\x11\x1e\x65\x3f\x45\xc6\x39\x4b\x89\x53\x05\xdd\xee\x6b\x4a\xab\x58\x48\x86\xb1\xe4\x82\x28\xf9\x99\x97\x0a\x89\x62\xe7\x7c\xf8\x5b\x9b\xaa\xe9\x7a\xbe\x7a\xde\xd1\xc9\x6c\x85\x55\x6d\x9d\x57\x5b\x72\xaf\x4b\x58\xb5\x12\xe8\x67\x2c\x95\x18\x52\x7a\xc2\x8d\x96\x6c\x6e\xd4\xe3\x5b\x1a\xbf\xc5\x97\x94\x5d\x28\xe2\xa9\xd0\x4b\x23\x72\xeb\xa6\x58\xbd\x4f\x98\x87\xc1\xeb\xda\x39\x50\xc5\xe6\x74\xde\x62\x6a\x2c\xa2\x32\x36\xa3\xfa\xba\xd7\xcf\x74\x41\x66\x37\xb3\x88\x3c\xc1\x66\xc8\xb1\xdd\xb4\xce\x55\x37\xd5\x7e\x67\x3f\xd4\xde\xdd\x4c\x06\x57\x6f\xa8\xb6\x42\xf5\xd9\xb3\x3a\x0f\x1e\x14\xb5\xf0\xe9\xf9\x30\x3d\xbd\xb5\x91\xf1\xd5\xf6\xc8\x88\x9e\x0a\x35\x56\x1b\x33\x05\xe7\xc3\x42\xa3\x69\x79\x36\x8b\xf4\x4c\x86\x66\x09\xd7\x9d\x70\xc1\x79\x04\x5f\x65\xf4\x13\x5a\x11\x06\x8d\x8c\x34\x1c\x6a\x82\x71\x2b\xb6\xd4\x18\xf7\x96\xb5\x70\x0b\xd6\xd5\x8c\xef\x4c\x49\x8d\xec\xab\x57\x13\xbf\xdb\x8e\xd2\x1b\xb9\xba\x89\x3b\x5b\x41\x2a\x32\x6d\x23\x4b\x41\x0f\x17\xed\x29\x43\x4f\x7c\x2d\xb1\x55\x60\x54\xe9\x27\xdf\xb3\x81\x34\x4d\xf3\xd5\xf1\xa6\xa4\xc3\xea\xe8\x0b\x80\x4c\xc4\xd4\x9c\x1a\xb8\x2d\x6e\xbe\x0c\x5e\x78\x4b\xf0\x4d\xe8\xd9\xe5\xb3\xed\xc3\x6d\x0a\x5d\xe6\xf0\xec\x64\x8b\x1a\xc0\xcc\x24\xc9\x16\x13\x3a\x45\xac\xd7\x73\x96\x91\xec\x3e\x34\x3b\x23\x21\x03\x63\x96\xfb\x4a\x87\x97\x40\xf5\x59\xc1\x38\x47\x17\xe1\x6d\xc6\xb8\x63\x6b\x49\xd2\x4b\xda\x4b\x72\xa5\x5d\xf1\x8f\xce\x87\x96\x3b\x86\xf9\x4c\xa2\x36\xfc\x90\x0b\x5a\x9f\x35\xf6\x85\xa2\xb7\xfd\x1f\x4a\xfd\x4d\xec\xc5\x1f\x5f\x3b\xb9\x6a\x01\xad\x8d\xb0\xc9\x00\x5e\x2b\x86\x28\x8e\xc1\x97\x0d\xe8\x0a\xe6\x28\xaa\x7c\x28\x8f\xfc\xbc\x3c\xee\xcb\xda\x22\x0d\x97\x18\x76\x44\x75\xce\xdc\x5b\x51\x6d\x79\xcc\x22\x73\xb8\x5d\x78\xce\xe9\xfc\x67\x8e\xeb\x1a\x2b\xe9\x30\x45\x67\xd0\x0f\x19\x8a\x3c\x4e\x6d\xd3\xab\x6c\x68\x0a\x82\x91\x2a\x43\x7f\x99\x43\xd7\xf0\x43\xf3\xdc\xec\x2e\xb7\x35\x9d\x3d\xf3\x6f\xfa\xda\x73\x36\x9f\xef\x42\x89\x6e\x42\x71\x56\x34\xc1\x09\x30\xbe\x4d\xa1\x04\x60\xb8\xc6\x82\x30\xa9\x55\x45\x24\xa0\x1c\xc6\xea\x49\x6d\x0e\x10\x83\x12\x48\x25\xca\x5f\xe5\x26\x8a\x90\x82\x5e\x2f\xf0\xea\x04\x5d\x84\x68\xaf\x17\x64\xd5\xdc\x8b\x32\x6f\x2b\xce\xef\xf5\x42\xf5\x07\x11\xfd\x07\x4a\xc8\xfa\xc1\x30\xe8\xd3\xdc\xc8\x29\xd3\xf0\xd6\xd9\x31\xba\x27\x90\xc6\x3f\x1b\x35\x34\xff\x41\xe6\xe6\xd9\xaa\xb1\xea\xd1\x69\x25\xfa\xb5\x41\x94\xf9\xa1\xe5\x82\x7a\xb0\x0b\xe5\xa8\x56\xc0\x57\x94\x91\x96\xea\xae\xfa\x6a\x22\x79\xe5\x5d\x1e\xd5\xeb\xcd\x76\x1d\xfd\x60\x3f\x5a\x63\xbf\xbe\xdb\x50\x25\x24\xca\x2e\x14\x0d\x19\x9a\xaa\x51\x8d\x6b\x49\xcf\x4a\xc3\x3b\x18\x22\x5b\x82\x1a\xf5\xee\x9d\x56\xb4\x8c\xbf\xb6\xa8\x8f\x76\x44\x0a\x47\xd9\x5c\x8e\x20\xb9\xae\x2c\xd6\x65\xe4\xb0\x24\x8a\xbe\x58\x47\x21\x19\x2a\x45\x33\x22\x98\x19\x13\xf8\x1d\x0a\xdc\x36\x15\x0d\x32\x2e\x7f\xe2\x09\xdb\xbe\xb8\x9b\x28\x6f\x0e\x43\x6a\x0b\x56\xdc\xb5\x99\xa1\x78\x44\xdf\x40\x5a\x8a\x0a\x75\xd9\xf1\xad\xbe\x8c\xdb\x6a\x3b\xa6\xb6\x95\x78\x8e\xd7\x92\x88\xa7\x74\xae\x59\x29\xac\xaa\x81\xab\x46\x8d\xab\x56\x45\xab\xd3\x60\xea\xc4\x74\xeb\xfd\x96\xab\x7d\x88\x7d\xd7\x7d\x35\xe4\x66\x01\x51\xb3\x41\x51\xaf\xab\x44\x00\x6e\x53\x77\x1e\x36\x1f\x9f\xdb\x0b\xa0\xf3\xf1\x07\xd7\xb9\x0a\x09\x14\x36\xee\x9e\x26\x61\x8b\x07\xbe\xb8\x1b\x15\x28\xc5\xdb\xe5\xd7\x11\x45\xad\xed\xa0\x68\x0f\xd8\x67\x4b\x7c\x80\xed\xe6\x6e\x14\xa7\xd1\x5f\x3b\xb1\xfa\x4e\xc7\x3e\x5b\xed\x9d\x37\xc2\x5f\x67\x1b\xfb\xd9\xf6\x97\x7b\x6e\x87\xef\xdc\x74\x38\x19\xe5\x2d\xdc\x75\x94\x69\x76\x9a\x6a\x77\xf9\xdc\x24\xf1\x78\x43\x22\x1d\x5f\x24\x5e\xd2\xb5\xa6\xd2\xbd\x76\x41\x73\x3a\x37\x9c\xa2\x3a\x53\xb7\x3a\x98\xb9\x31\x18\xd8\x61\x0a\x35\x4b\xd7\x6e\xc8\xff\x14\x1b\xea\x66\xde\x69\xc2\xc1\x1f\x79\x83\x9c\xb6\x22\x0e\x7d\xdf\xdb\xed\x1d\x11\x42\xf2\xac\x8e\x1c\xf4\x77\x45\x0e\xe3\x9a\xaf\x26\x84\x43\x0b\x52\x4a\x4d\xa2\xb1\x40\x70\x5e\x48\x5c\xf7\xaa\x72\x36\x69\x82\x9e\x0d\xe7\x38\x5e\x12\x41\x3f\x69\x6b\x79\x56\xfc\x6d\x1e\x13\xde\xee\xab\xb3\x5b\x28\x44\xe7\x30\xd8\x6c\xb4\xd3\x11\x0c\x96\x38\x7e\x81\xd9\x8d\x0e\x53\x37\xfc\x48\xd9\x5c\xc7\x0e\x96\x43\x17\x9b\x52\x41\x7e\x15\x0a\x9d\xc1\x5c\x6f\xaa\x9f\xa0\xe6\x03\x4b\x73\x90\xd0\xea\x34\x76\x32\x4d\xd3\xe2\x89\x36\xc1\xb3\xe5\x13\x0b\x34\xdb\x3c\xe4\x87\xe9\xfa\x96\xfa\x90\xc6\x3e\x7b\xeb\xac\x03\x1f\xc9\x8d\x56\x8b\x2f\x88\x0c\xdf\xaa\x9e\x9a\xb3\x87\x5b\xc5\x0f\x63\x09\xd5\x98\xc6\x42\x0f\x2d\x05\xfa\x3c\x22\x2d\x9c\x69\x3e\xbe\x73\x3c\x36\xa6\xbd\x7f\xee\xd1\xbe\xdf\x7a\x73\xc5\xaa\xfd\xd6\x8e\x8f\x48\x40\x82\xde\x86\x0c\x40\x39\xb4\x41\x6a\x63\x1d\x37\xce\x9e\x9f\x10\x60\x1c\x09\x0b\x1d\xfe\xd8\x6a\x02\xf8\xae\xb8\xa5\x8b\xb0\x8c\x5e\x85\x70\x8d\x5d\x7b\x43\xac\x7a\xa6\xa2\xfd\xb9\x0c\x25\x69\x3c\x1b\x12\x82\x3a\xb2\x92\xa2\x41\x68\xe3\x61\x8c\xc9\xd0\x3e\x41\x3d\x2d\x44\x4b\x2b\x68\x76\x85\x5a\x45\x21\xc3\xfc\x07\x2c\x76\x43\x7b\x6c\x84\x02\x1c\x31\x4d\xba\x48\x4d\xb2\x5e\xef\xa4\xf6\xfe\x4c\x2b\x73\xaa\xbb\xfb\xa2\x8c\xa6\x60\x96\x88\x7c\x13\x0a\xef\x3c\xf4\x1f\x7e\xa0\x4c\x12\xc1\x70\xf4\x82\xcf\x49\x34\xf4\xab\x6b\x0f\x4f\x7f\x52\x5e\x17\xfc\xc7\x1a\x1c\x2f\x8a\x00\xc7\x9a\xd3\xb5\xfa\x69\x1e\x3f\x7c\x30\xee\xb1\x2f\x39\x7b\x96\xbb\xb2\x94\x8f\xca\x26\x06\x77\x53\x44\x86\x2e\x9e\x29\x17\xe6\x1c\x28\x3f\xd0\x7f\xe1\xed\x83\x5f\xe4\x7a\xde\x0b\xb8\xc4\x66\x35\xcd\x55\xab\xb2\xff\x41\x01\x4d\x43\xbb\xf8\x16\xa2\x12\xf9\x84\x65\x7c\xb9\xea\x6a\x28\xca\xcd\xb4\x9e\x17\x9e\xe2\xf9\xc2\x6e\xb3\x5f\x64\xbb\xec\x17\x9e\xaa\xaa\xde\x1a\x0d\x45\x6f\xc3\xdf\x90\xc8\xdb\xce\xcf\x0d\xa2\xfc\xf6\xc6\xcf\x86\x7a\x5f\x64\xdd\x39\xb6\x78\x53\x18\xde\x58\x3a\x7b\x46\xc6\xc4\xa4\xc6\xd5\xa5\x66\xfe\x2b\x61\x83\xb2\x43\xb6\xa2\x93\xc2\xb6\x62\xf6\x8c\xb6\x2a\x84\xec\xce\xca\x0c\xdc\xd0\x05\x11\x14\x47\xf4\x13\xd9\x16\x53\xa3\x40\x9e\x7a\x58\x6f\x19\x5e\xc7\x4b\x2e\x43\x30\xcc\x20\x98\x73\x54\xfe\xaf\x6f\x5f\xbd\x6c\xf2\x17\x31\x9b\xa0\xac\x86\xf8\x89\x8b\x30\x18\x38\x17\x73\x9d\x67\xb2\x45\x93\x79\x12\xca\xbc\x6d\xed\x0c\x0d\xf5\x3a\x6d\x06\x66\x37\xd6\xd9\x0f\xb3\x34\x66\x3f\xcd\x3a\x9a\xfd\x34\x44\xf3\xff\xb1\xf7\xae\xdd\x6d\x23\xd7\x9a\xf0\x77\xfe\x0a\x0a\x93\x61\x50\xa3\x32\x2d\x75\xce\x59\x6b\x86\x36\xa2\xe5\xf6\x25\xed\xa4\xdd\x76\x6c\x77\xe7\xe4\x30\x3c\x1a\x98\x28\x59\x15\x53\x80\x52\x28\xda\x56\x44\xfc\xf7\x77\xd5\xae\xfb\x0d\xa4\xdc\xee\x9c\xbc\x2b\xf3\xa1\xdb\x22\x50\xa8\xeb\xae\xaa\x7d\x7d\xb6\xfc\xe9\xf3\x2b\xce\x23\x67\xda\x1c\x6e\x43\x4d\x63\x1b\x0a\x7d\x23\x73\x08\x6b\x25\xb1\x7f\x5c\xb6\xe1\xd0\x25\xf0\x58\x0d\x92\x15\x21\xb5\x83\x95\xff\xb1\x5b\x16\x24\x6b\x89\xb6\x93\x90\x3f\xdd\x1e\xf8\x5f\x29\x2c\xae\xfa\xa3\x5c\xf3\x9c\x04\x0a\xa5\xc4\x86\x84\x16\x48\xa3\xf8\xc3\xa0\x43\xee\xd7\xa2\x43\xe7\x9e\x8d\x9e\x92\x3e\xe1\x19\xf2\x8e\xbc\xa7\xad\x6f\xc5\xef\x4b\x37\xaa\x52\xdd\xa5\xac\x3a\x81\x54\x67\x3a\xf4\xe0\x61\x2b\xd1\xb1\x2a\xb2\x64\xab\x11\xff\x09\xae\xfd\x38\x48\xdb\x44\xcd\x0c\x78\x1d\xea\x2d\xb2\x0e\xc6\x01\x21\xc7\xfa\x0e\x2b\x9c\xa6\x6b\x4b\x55\x93\x92\x5b\x07\x7c\xee\x6f\x93\x43\xbb\x14\xec\x2d\xb1\x83\x25\xcb\xf7\x54\x27\x3f\xcb\xba\xb8\x39\x4e\x1e\x70\x24\x09\x82\xc8\xec\xfc\x49\xd6\x69\x39\xb9\x3f\x24\x65\xcd\xf9\x25\x69\x13\x8e\x6a\x7c\x00\xdc\xb4\xd8\x21\xd8\x02\x53\xdd\xad\x3d\xed\x1a\x9c\x6b\x90\xc8\x06\xb5\xeb\x6f\x7a\x88\x4b\xb2\x9a\x78\x4e\xad\x56\xc1\xec\xfa\x62\x45\xb0\x41\xad\xe3\x75\xc5\xee\x9d\x22\x4c\xab\xd3\x07\xf4\x21\x7b\x40\x8f\x8f\x51\xbb\xa4\x7e\x2a\x24\xba\x9a\x70\xd7\xac\xd1\xa2\x81\x5f\xee\x41\x6d\x1a\x70\xcd\x39\x0b\x25\xaf\x4d\xd7\xbe\xef\x0f\x3f\x74\x98\x76\x41\x86\x33\xdb\x7c\x2e\x05\x53\xc5\xdd\x7f\x59\x5d\x5a\x34\x80\x9a\x7a\xc2\x9f\x37\x31\x6c\x61\x93\xc0\x2b\x0c\xcf\x54\xfe\xbc\x71\x70\xbb\xa4\x93\x12\xc2\xe7\x0d\x79\xb7\x7d\xff\xbc\xbd\xe8\x62\x4a\x59\x8a\x52\x2b\xcc\x2b\x48\x7d\xb2\x54\x20\x79\x82\x89\xb5\x02\xaf\xe5\x5e\x2d\x39\x48\xae\x99\x6b\xef\xee\xb6\x5a\x4a\x29\xa0\xb0\x3b\xb2\xd0\xea\x79\x71\x80\x11\x4c\x3e\x5f\xd7\x6d\x23\x38\xcc\x55\xc4\x30\xbb\x3c\xa8\xeb\xdf\x64\x40\xb1\xf9\x92\x02\xbf\xbb\x9a\x18\x60\x6a\x19\x39\x69\x5e\x40\xa2\x35\x57\x1e\xa1\x8a\xf1\xb5\x7d\xe8\x9c\x3e\x20\x84\x3b\xcd\xf9\x63\xa6\xff\x1a\x90\x5f\x47\xf1\x6c\x53\xbf\xf7\x07\xb2\x2c\x34\x8f\x57\x80\x48\x17\xf0\x78\x90\x85\x4a\xb2\x62\xf0\xe7\x13\xad\x0e\x2c\x14\xb3\x05\x7f\xfd\x40\x3e\xc1\xbf\x92\x4b\x59\x0d\x08\xdf\x6a\x53\x06\x2c\xd3\xad\x12\x51\x5e\xf2\x4b\xc2\x9c\x6b\xe0\xe8\x04\xbf\x67\xdd\xf6\xba\x5f\xb4\x62\x2c\xe2\x70\xfa\x48\x9c\xf7\x4c\xc8\xd9\xf2\x38\xff\x56\x93\xa7\xd2\x30\x47\xdc\x6d\xde\x11\x2c\x5c\x91\x14\xde\x9f\xe3\x16\x1e\xaf\xa0\xbc\xd7\x99\xf3\xe8\x20\xdf\x5f\xb7\x52\x5c\xb8\x9f\xf7\xdf\xde\x04\x5e\xc0\x2a\x8d\xec\x18\x12\x9a\xdb\x45\x5b\x5c\x87\x7b\x02\x1f\x86\xf4\x6c\x7d\x27\x37\xe0\xa3\xa6\xb9\xf3\x4c\x99\xb5\x3f\x64\x9a\xec\xa6\x82\x39\x1a\x50\x06\xd1\xee\x95\xe3\x82\x5f\x40\x8a\x72\x7c\x3b\x16\xc5\xe3\x1f\x04\xe7\xe2\x0b\x21\xac\xbd\x9a\x33\xd2\x5d\x93\xf6\xf1\xa6\xee\xfb\xf2\x96\xf6\x52\x1c\x3a\x3a\xc1\x57\xe2\x0f\x70\xf9\x96\xe9\xd6\x6f\xae\xc5\xe4\x8c\xac\x7a\xda\xfd\x78\x6c\x91\x26\x36\xa0\x90\xcf\xa1\x3d\x31\xfd\x32\xb1\xa3\x5d\xc1\x17\xf5\xf5\x7e\xbf\xec\x14\xc6\x1e\x4a\xd3\xc0\x88\xab\xb4\x69\x50\xe6\x51\x33\xf9\xa0\xd8\x92\xac\xb4\xab\xb6\xf8\x7b\x12\xa4\xa4\x3b\x64\xac\x32\xfd\xbe\x53\x09\x98\xc8\x40\xc5\xa4\xc2\x44\x5b\x2d\x97\x1b\xdc\x06\x19\xe8\xa1\x12\x71\x42\xdf\xce\x4a\xff\x53\xb4\x80\xdf\xd6\xf1\xfa\xb9\x47\xc7\xda\x0b\xfa\xf9\xf8\x44\x48\x1f\xd6\x78\x85\x65\x1e\x47\x19\x63\xae\xdd\xfb\x75\x7f\x55\x64\xf8\x15\xe1\xf5\xb3\x8e\xd9\x30\x52\x99\x52\x4f\x8f\x84\x5e\x94\xe1\x10\xa2\x9a\x74\xd2\x3d\x5c\x6b\x05\x19\xbd\x28\x6d\xf1\xce\x7e\x6a\x22\xcf\x14\xf6\x75\x7e\xc2\x3b\x04\x87\xbe\x0c\x92\x6f\x1d\x7d\x06\xa8\x7b\x60\xd7\xb8\x4f\xe7\x86\xda\xe5\x6d\xd5\x47\x56\x79\x7b\xd3\xd0\xdd\x6e\xb9\x1a\xed\x89\xca\xc2\x57\xeb\x91\x76\xaa\xce\x5a\xd2\x8a\xd3\xd8\xfc\x82\x6e\x38\x61\x65\xcc\x2d\xb1\x78\x66\xa5\x56\x39\x20\x92\x23\xae\x27\xc7\x46\x05\xe9\x27\xbb\x5d\x5b\x39\x3f\xad\x8e\xaf\x9f\xcd\xe4\xdd\xa6\x78\xa1\x0e\xf7\x08\xf3\x39\xb0\x47\x6b\x71\x12\xc8\x08\x5f\xfb\x1b\x66\xa0\x43\xb8\x53\x21\x4e\x00\x55\xa4\xe0\x4d\xfa\x20\x96\xc1\xac\xeb\xb6\xea\xa3\xf1\x71\x1d\xd6\x1c\x8f\x8f\x27\xc7\x37\x25\x90\xa7\xdb\x0e\xe1\xb4\xaa\xaa\xad\x6a\x72\x36\x2b\xfb\x6a\x8b\x70\x07\x49\x65\xe5\x75\x5e\xcb\xbf\x41\xc7\xe8\x82\x8b\x33\xa9\xed\xea\xa4\x72\xac\x1e\xfc\xeb\xa7\x5f\x3c\xf6\x7e\x8b\xd5\xd9\xaf\xc0\xb8\xd5\x3c\xdd\x72\xe5\x30\x8b\xcb\xd5\xf0\xf3\x95\xa9\x64\x29\xf5\xa4\x2b\xcb\x47\x61\x32\x20\xd9\x49\xd2\x08\xa2\xed\x17\x8f\x70\x62\x07\x2c\x3e\x60\xc8\x19\xb8\xbf\xfb\x5f\xa4\x9b\x0c\xbb\x7a\xa6\xb5\x7f\xb2\xbf\x68\x21\x0a\x98\x5b\x4c\x7a\x40\x8b\xd7\x4e\x08\x40\x42\xe9\xb2\x87\xa3\x38\xec\xa4\x8d\x3c\xda\x41\xe1\xab\xc3\xf1\x70\xab\xf2\xe4\x99\xb6\xe4\x34\x66\x23\x42\x92\x8d\xaa\xa9\x2f\x10\x6e\xab\x93\x07\xed\x43\x9d\x55\xf7\x41\xab\x63\x3e\x68\xc5\x96\xed\x6a\x62\x9a\xa5\x68\x18\x70\x43\x38\x61\x57\xb4\xf5\x2c\x62\x89\xd6\x65\xcb\x52\x8b\xdb\x2a\x2b\x80\xc6\x95\x70\x58\x14\x86\x6d\x08\x1a\x3d\x73\x24\x0d\x38\x68\xc5\x47\xc1\xc3\xf6\xac\xe8\x5a\xf2\xb6\x7b\xd9\x92\x62\x51\x5c\xd5\xed\x8d\xfe\x3b\x59\x0c\x64\x0d\x5d\x4e\xfd\x48\x16\x84\x24\x32\xba\x20\xfc\x90\x82\x54\x5a\x9f\xf9\xf5\x28\xd0\x21\xb0\x92\xc1\xc6\x07\xbb\x83\x41\xe5\x88\x29\x0c\x14\x42\x17\x1d\xbb\xf2\x74\x12\x5f\xd6\xc1\x94\xe4\x23\x7b\xc6\xe1\x8a\xb1\x5b\x42\xb2\x32\x49\x72\xcf\xb1\x85\x21\xd9\xd9\xe9\xbc\x1b\x89\xbf\x4d\x0c\x78\x4f\x53\xc9\x39\x3a\xb8\xd5\x01\xe1\xa6\x2c\x9a\xfe\x9e\xd6\xbd\xdc\x73\xb6\xfc\x6c\xa6\x59\xcd\xf2\x36\xd2\xcd\xf8\x66\x42\x99\x44\x2c\xc1\xb4\xda\x99\x50\x61\x4b\x3d\xa4\x2a\x4d\x95\xdd\xd4\x3d\x7f\xb4\xfe\xd0\x76\x9f\x36\xa4\x79\x4f\x1a\x85\xa0\x8d\x80\xa3\x16\x4b\xfb\xb6\xba\xff\x5f\x7f\xb9\x7f\x26\xf8\xe0\xbf\xdc\x2f\x6d\xcd\x3b\xef\x68\x41\x7f\xb9\x5f\xce\xff\x17\xba\x8f\x5f\xdb\xe2\xf7\xf1\x5f\xab\xe2\x5d\xdd\x13\x27\x77\xc8\x0f\x3f\x3b\xb1\x68\xf1\x48\xaa\x9d\xa7\x82\xe4\xa1\x03\xd3\x8b\x9a\x6e\x48\x53\x4c\x94\x8a\xf0\x91\xa3\x97\xae\x8e\x4e\x54\x1c\x0e\xfc\xf4\xa2\x56\xb1\x13\x5b\x53\x91\xdd\x6e\x79\xcb\x29\xdf\x10\xdb\x82\x92\x32\x1b\xc2\x6b\xba\x59\xf0\x61\x65\x6d\x95\xdf\x8f\xc4\xa9\x57\x65\x34\xb4\x93\xe4\xd0\x4e\xdc\xa1\x9d\xac\x16\xb7\x03\x9a\xab\xa0\x36\xbd\x93\x9e\x28\xe9\xc6\x34\xfc\xc4\x3d\xfe\xd2\x64\x26\xf9\x8e\x76\xb7\xe3\x68\xb0\x51\xd5\xb9\x28\x65\xe2\xe3\x8c\x4a\x23\x50\xf5\x7d\x09\x51\xba\x3f\x64\x3f\x73\x27\xd5\xa9\xe0\x07\x5b\xc1\x0f\x92\x7e\x9e\x57\x4f\xca\x1f\x70\xf1\xf6\x92\x4c\x95\xc1\x60\x2a\xa3\xdd\x48\x03\x68\x87\xd2\xb4\x3d\x7d\x47\xd6\xf5\xb6\x27\x53\x0a\x58\xc5\x53\xeb\x74\xf1\x2c\xfe\xde\xae\x3c\xa7\x57\xa4\x99\x76\x5b\x5e\x20\xfc\xf7\xb1\x82\xa2\xce\xfa\x5d\xc7\xa4\x77\xc8\x77\x63\x45\x69\x3f\xdd\xb6\xf5\x96\x5f\x76\x8c\xfe\x1d\x8a\x7f\xbb\xa7\xf8\x45\xc7\xde\xd1\xa6\x21\x6d\x81\xf0\xdf\xe2\xb2\x6b\x48\xcf\xd7\x76\x7c\x2a\x24\x0c\x18\x34\x23\x7d\xb7\x65\x6b\x52\x20\xfc\xe3\x58\xe5\x92\xb2\xa7\xcd\x96\x4c\x79\x07\x99\x15\xdb\x8b\x0d\x5d\x8b\xe1\xfe\xe9\x2e\xdf\x49\xd5\xd7\x54\x26\xaf\x71\x2c\xf4\x3f\x95\x79\xb0\x44\x34\xfc\xa4\x16\x3b\x01\xff\x22\x8e\x7b\x89\x7c\xf0\x53\x96\x44\x3c\xc2\xf8\xc9\x03\xad\xb1\xd0\x88\x3f\x79\x6f\x12\xd8\x89\xcc\x2b\x50\x37\xcd\x9f\x28\xbf\x8c\x01\xad\x02\x51\x75\x4b\x1b\x13\x9c\x0a\x03\xd4\x99\xa9\xde\x10\x6e\x70\xeb\x68\xcf\x65\x72\xa9\xa3\xaa\x6a\x97\xcc\x48\xae\xe2\x6f\x71\x70\x18\x05\x19\xdf\xed\x94\x70\xc6\xcf\xa8\xd6\x70\x2d\xe8\xbc\xbf\xde\xd0\xb5\x90\x7b\x4e\xb0\x8e\xa0\xec\xe9\xdf\xc9\x71\x75\x2a\x61\x21\x60\x03\xfc\xe1\x5f\x11\xd6\xe8\x77\xf9\x41\xbb\x98\xba\x46\xfe\x9d\xd7\xfd\x4d\xbb\xc6\x9d\xf3\xe4\xba\xdb\xdc\x5c\x75\xec\xfa\x92\xae\x27\x4a\x82\x16\x6b\xdb\x03\xab\xf1\x93\xc2\x64\xaf\xdb\xae\xa5\xeb\x7a\xf3\x22\x7e\x07\x6a\x29\x0d\x27\xfd\x81\xdc\x54\x72\x7c\x2e\x87\xf8\x07\xf0\x66\x50\x4f\x9c\x5b\x51\xa3\x3b\xd3\xfe\x91\xe8\x56\x90\xeb\x5e\xbd\x7a\x65\xfb\x67\x0b\x74\xbb\x5d\x87\x55\x48\xaf\xbd\x1e\x5f\x10\x5e\x57\x6d\xd8\xf4\xb3\x8e\x3d\xbf\x12\x14\x44\x79\x15\xf7\xc1\x0a\xbf\xc7\x7a\x04\x58\x91\x6d\xfb\xc1\x75\x1e\xc6\x46\xbd\xe0\xfc\xbc\xac\x7b\x88\x31\x38\x3a\x35\xbf\xa5\xaa\xd5\x3c\x39\x3f\xd7\x5a\x1c\xf1\xa5\x1c\x40\x0a\x61\x4a\x17\x7b\xae\xe6\x22\x69\x21\x99\xbb\x95\x4d\x24\xe0\x88\xc6\x11\x55\x88\x9f\xc4\x5f\x6a\x7d\x31\xb9\x7b\x2c\x00\x9f\xb2\x2d\xbf\xf9\xc5\x1a\x96\x49\x55\x8e\x42\xd8\x2b\x77\x21\x9e\xd0\xe6\x09\xb9\xaa\xb9\xb6\x0e\xa7\x3b\x32\x09\x16\x57\x31\x5e\x17\x1d\x7b\xb4\xd1\xd4\xe9\x27\x51\x01\xf7\x5d\xcb\x41\x49\xf5\x97\x53\x03\xd2\x7f\x87\x1d\x28\x83\x0e\x4a\x46\xd6\xeb\x7e\xf2\xbb\x2a\xd2\xc6\xa6\x49\x49\x51\xbd\x0e\xe0\x96\x4e\x7c\xcf\xdd\x16\x9f\xb1\xee\xea\xe5\xa7\xd6\x84\x8d\xcb\x22\x8f\xf5\x66\xcc\x94\x0d\x7a\x29\xbd\x73\x81\xfa\xa2\x8e\x01\x35\xef\x83\x15\xb3\x89\x8c\xdc\xe3\x01\x8e\xf5\x07\xc4\x70\x5e\x0f\x34\x57\x46\x96\x27\xca\x26\x93\x18\x51\xc9\xd1\x10\x40\x1c\x84\x67\x8b\xac\x98\x85\x15\xb7\x15\x0b\x2a\x4e\xcf\x43\x29\x0e\x56\x6f\x40\xb2\xf4\xa3\x8d\x5f\xae\x57\x13\x56\x85\x26\x2a\x3d\x3e\x2f\x9e\x3e\xb0\x7e\x27\x1d\x9e\x93\x6d\xa6\x3b\x99\x6d\x3c\x9a\x0c\xaf\x17\x80\x0c\x69\x6a\x94\x3e\x82\xc9\x86\xfd\xc6\x32\xc0\xba\xc9\x00\x7d\xab\xa5\x4f\x2e\x1f\x89\x36\x41\xdd\x34\xd9\xd6\x7c\x85\x6e\xae\xbd\xa8\x0a\xe9\xa5\xea\x1e\x1c\xfc\xf8\x38\xd1\x6e\x66\x6e\xab\x9c\xfe\x04\x32\x6d\xb9\x57\xbf\x6d\x42\x02\xa8\x66\xeb\x2c\xc1\xf5\x80\x1d\x73\xb4\x38\xa0\xe0\xa1\x3d\x8d\xf7\x63\xb4\xfc\x97\xb5\xf4\xf9\x2b\xd3\xaf\x01\x3b\xc5\x4d\x84\x97\x70\x73\x16\x27\xc2\x08\xf9\x98\x8f\xbf\x93\x57\x59\x79\x74\x12\x03\xc6\x25\x2b\x4e\x82\x19\x39\xe7\xaa\x5e\xfa\xe0\x00\xc6\x80\x0f\x5d\xf7\x51\x79\x00\x8b\x36\x96\x35\xe7\xc5\x83\xb2\x55\x5e\x28\x1e\x37\x80\x66\x33\x3a\xb2\x12\xf1\xbe\x45\x03\x68\xdf\x95\x7d\x76\x7e\x4e\x15\x57\xe0\x39\x85\xe3\xba\xea\x96\x79\x0e\x62\x35\xa9\x77\xbb\x72\x4f\x19\x09\x0c\x59\x5a\xf6\x08\x73\xc3\x1e\xe1\x5b\xed\xf6\x78\x0b\xf7\xe4\xc2\xbd\x0b\x06\xe9\x1d\x29\x39\x69\x63\x0c\x18\x10\xc2\xf5\x1d\x47\x9a\x3a\x15\xbe\xfa\x7e\x19\x3d\x87\x83\x2d\xb3\xb7\x6c\xf2\x20\xfb\x99\x1b\x47\x43\xea\x1e\x76\x71\x86\x8c\xe3\xfe\x41\x3a\x91\x05\x25\x38\x77\xa7\x69\x6a\x8c\x56\x66\xb3\x2f\xf9\x6a\x7c\x3a\x13\x04\x71\xf8\x0d\x12\x9e\xc6\x95\xaf\x52\xf4\xee\x48\x09\x5d\xa6\x8f\xa7\x2b\x7b\x2a\x19\xe1\x51\xe2\x90\x39\x36\x69\x79\x6b\xba\x03\x05\x13\xb6\x53\xce\x5d\x80\x14\xf3\x16\x1e\x0f\xf1\xfd\x91\x18\xff\xa2\xcc\x6d\xf8\xb1\x69\x16\x23\xfb\x82\xcf\x7e\x81\xfd\xff\x25\xdd\x38\x68\x62\x0e\x66\x70\x0e\xb8\x29\x12\x1c\x43\x8a\xe7\xcc\xef\xd0\x2f\xd8\x98\xff\x54\xfb\x71\xff\x6c\xef\x9d\x30\x67\x08\x09\xbe\x8d\x1c\xb2\x21\x26\x80\x88\x38\x32\xa3\xa9\x0b\xe3\x90\x7e\x79\x1c\x6b\xb8\x9e\x01\xfe\xd5\x97\x71\xcc\x7b\x8f\xd9\xaf\x31\x27\xe3\xf7\xc0\x81\x93\x33\x5a\xc9\x01\x17\x54\x30\x5d\x07\xb3\xf6\x8f\xbb\xab\x6b\xf1\xe5\xe6\x26\x39\x2b\x9e\xac\x9c\x63\xca\x78\x2a\x05\xa4\xf6\xe3\xf6\x1d\xdb\x9d\xa1\x84\x39\xeb\x95\xee\xaf\x45\xd6\xc3\x4d\x45\xe5\xb7\xfb\x65\xee\xd4\x60\xc4\xec\x8b\x4b\x60\x49\x57\x95\x38\x5b\x3c\x75\x94\x91\x1d\x74\x1e\xdf\x68\x46\xc3\x02\x46\xbe\x96\xc5\xa5\x20\x35\x44\x50\xd2\x56\x6f\xe0\xe3\xbd\x1a\xb7\xe4\xf4\x5c\x81\x1e\x31\x94\x87\x53\x7a\xc5\xb0\x8c\x60\x8b\x12\x73\x28\x46\x2d\xae\x1b\x39\x78\x4c\xca\x16\x59\x51\x59\xc2\xf9\xe5\xc5\xe5\x04\xce\x5f\xbe\xb0\x04\x00\xf4\x3b\x50\x8b\x0e\xf4\xb2\x03\xbd\xea\x40\x8d\x32\x6c\x64\xb8\x68\x77\xa7\xf6\xaf\x74\x66\xf8\x9b\x26\xa3\xb9\x72\xe7\x5e\x52\xd4\x27\xba\xd9\x80\xaa\xeb\xe8\xd4\xf1\x3e\x5f\xae\x70\x82\xe5\x15\x9c\xe9\x1c\xdc\x1f\x21\x17\xae\x52\x4a\x0b\x76\xd5\x57\x96\x66\xa4\xf7\xee\xfa\xc6\x71\x71\x97\x16\x7a\xee\x5a\xe8\x43\xc6\xa9\xe4\xcb\x36\x64\x85\x13\x67\x43\xa4\x38\xd0\x63\xd2\xbc\x98\x1d\xe3\x89\xa3\xa6\x9d\x9f\xeb\x49\xb5\xbb\x13\x22\x65\x14\x38\x70\x4a\x73\xf4\x3d\x6d\x3f\x44\x79\x32\x95\x52\x4b\xab\x7d\x63\x05\x97\x16\xd8\xbc\x15\x4d\xbb\xed\x2b\xc6\x28\x1c\x34\x6d\x1b\xbf\x69\x2b\x64\x3a\xcd\x79\x99\x6a\x9c\xe7\x13\x87\x02\x2e\x08\x5f\x5f\x8a\xba\x82\xe0\x3c\xb7\xd7\x04\x93\xc0\x91\x9c\x78\x9e\xe4\x89\x89\x89\x35\x3a\xca\xa0\x19\xef\x07\x9f\x69\xd2\x79\x4e\xc1\xc6\xaf\x23\x14\x48\xd0\xc6\x28\xb7\xec\x03\xcc\x04\xc2\xba\x6a\x29\xee\x85\x56\x56\x93\xd4\x27\x4a\x6d\x9d\xfa\x48\xbd\x0a\x3e\xbb\xf6\x53\x36\x59\x5d\xcf\xd1\x29\x6e\xc5\xd6\xa2\x17\x25\x01\x0d\xa3\xd2\xd1\x5a\x45\xa4\x7a\xee\xe8\x78\xc8\xbc\xa9\x45\xc1\x92\x19\x82\x95\xc5\x61\xce\xe4\x5b\xcc\x11\xc2\x04\x56\xad\x17\x5c\x1a\xfc\x31\x57\x4e\x30\xfa\x6e\x72\xfb\xdf\x7f\xa2\x7c\x7d\x59\x9a\xdc\x70\xb7\xeb\xba\x27\x1a\x49\x66\xa1\x17\x77\x02\x4f\x7b\x08\x9f\xd0\x4f\x6f\x2f\x19\xb9\x58\x10\x63\xa1\x01\xf0\x90\x32\x6c\x72\x42\x67\x33\x3a\x17\x45\xf5\xbf\x3a\x9f\x8b\x28\x07\xd9\x4c\xfc\xc1\x00\x0d\xca\x92\x62\x30\x03\x3b\x2b\xb3\xe4\xe1\xae\x8a\x78\x8a\x16\xad\x75\x32\x70\xde\x9c\x26\x69\xd3\x27\x80\x90\x48\x54\xf8\x90\x5f\xe0\x0f\x16\x83\xdf\x55\xf6\x47\x58\xfc\xc6\x0f\x55\x67\xa6\xf0\x2c\x1c\xc6\x4f\x65\xbb\xd9\x8c\xf0\x1f\xce\x91\x64\xfc\x6c\x15\x53\xef\x9b\x73\xa4\xc3\xca\xc4\x43\x20\x1d\xf3\xb3\x0c\xdb\x1b\x12\x46\x18\x32\x78\x9e\xc8\xee\xbb\x61\xc0\x72\x0a\xac\xf4\x35\x9a\x8c\x20\x63\x4a\x32\xa9\x09\xac\x09\xf8\x57\x3e\x53\x11\x45\x94\xe8\xd4\xcf\xfc\xb7\xa7\x67\xfc\xde\xe9\xe2\x04\xe1\xb6\x3a\x15\xd7\x05\xdc\x13\x6c\xd9\xfa\x31\x25\xad\x89\x49\x48\x84\xbe\x28\x37\x4a\x1d\x50\xe5\x3a\x36\xfc\xd9\xf7\xeb\xba\xa0\x6d\xbd\xd9\xdc\xb8\x8e\x46\xbc\x14\x12\x3d\x9b\x9f\xf7\xdb\x77\xfd\x9a\x51\x79\x7b\xca\x24\x6b\x27\xc8\x3a\x6d\x32\x5b\xe9\x1f\xed\x69\x79\x54\xda\x95\x22\x32\x9e\x40\x45\x92\x15\x68\xb7\x4b\xbf\x03\x88\x22\x27\x42\xfd\x3f\x42\x4d\x14\xb1\x71\x37\xdc\x66\xee\x36\xf9\x89\x18\x6e\x11\xee\xe4\xcd\x53\x57\x27\x0f\xea\x87\xf4\x41\x2d\x73\x5c\x91\x65\xbd\x12\xbb\x72\x59\xaf\xd0\x6d\x57\xd5\x13\x48\x4d\x35\x28\x33\x73\x37\x9b\xb5\x47\x55\xc5\x20\x30\x83\x6a\x57\xdb\x13\xbc\x95\x99\xd0\x94\xff\x6a\x67\xbb\xb2\xa9\xe8\xbd\x0e\xaf\xab\xd3\x07\xeb\x87\x15\xd5\x89\xb4\xc8\x92\xdd\x5b\xcb\x66\xda\x7b\xeb\x15\xba\xdd\x54\xeb\x7b\xa7\xaa\xa9\xbe\x6a\xef\x6d\xee\x75\x78\x5b\x31\xf1\xaf\xf6\x01\x85\x04\x8d\xf2\xf0\x07\x45\xc9\xa2\xc3\xb5\x38\xda\x1f\x77\xdb\x96\x2f\x7a\x05\xb0\xac\x7e\x6e\x65\x66\x85\xdf\x8f\x04\x12\xbf\xd8\x82\xe5\x19\x88\x08\x07\xb1\xc5\x5f\x98\x32\x9e\x86\xb6\x4c\x4d\x04\x2a\x5b\x70\xda\x38\x6a\xfe\x92\xc6\xfc\x94\x19\x37\x7e\x04\xf6\xf5\xe8\x00\xa8\xa2\x27\x6e\x9d\x6e\xa4\xaf\xe0\xde\x12\x72\x94\x3c\x1e\x75\xf6\xed\x5c\x80\xab\x5b\x91\x0a\x08\xb3\x9a\x4e\xc3\x60\x08\xaa\xb5\x01\x8f\x7e\x3b\x71\x94\xd2\xd1\xe1\xce\x49\x68\xb7\x73\x7f\x8a\xe6\xff\xa8\xf8\x31\xaf\x97\xba\x31\x19\x64\xce\xe2\xbe\xa7\x9c\xb7\xcd\x89\x60\x78\xd8\x7b\xa7\xca\x07\xbb\x21\x9f\x5f\x5e\x80\x45\x67\xc2\x2b\xae\xf3\xd5\x33\x1d\x1e\xf5\x1f\x65\xd4\x00\xe6\x48\x25\x2f\xab\xda\x79\x48\xc0\x5a\x93\x53\x0b\x0a\x54\x79\xc9\xfe\x44\x37\x1b\xc5\xe6\xc5\x1f\xe0\x76\xee\x12\x39\x6e\xe7\x76\x03\xd8\x4b\xd0\xc0\x62\x63\x83\x51\x9f\x58\x7e\xa5\x5f\x73\xdb\x7e\x42\x9b\x2f\x6c\x9a\xcc\x66\xee\x03\xb1\x70\x11\x21\xce\xbd\x28\x1c\x15\xb1\x54\x22\x09\xec\x23\xef\x84\xd7\xe4\x7a\x53\xaf\x49\x94\x00\x81\x89\xd3\xb5\x5a\xae\x50\xdc\x67\x67\xbe\xa0\x70\x7e\xc4\xca\x27\xc6\xd9\xbe\xfe\x4a\x2d\x09\xe6\x2b\xbb\xa6\xc9\xf9\x8c\xea\xf4\x5a\x4b\xcf\xa5\xd7\x2d\x03\xc7\xee\xb3\xc2\x8b\xb4\x1c\x7d\xf2\x80\x5b\xd9\x8a\x6b\x49\x35\x45\xc7\x86\x36\x97\x5c\xcb\x59\xc1\xa4\x96\x0c\x9f\x8a\xb9\x3e\x8f\xcc\x8f\xa1\xff\xb2\x61\x55\x04\x7d\x26\xda\xf2\xc6\x1c\xb6\x22\x3d\x8e\x06\xcc\x32\x4b\x29\x77\x8a\x0a\x12\x01\x42\xd1\xc9\x14\xfd\xb5\x02\xf7\x25\x82\xc9\xb1\x26\x6c\x88\x76\x74\xe9\xa9\x40\x49\xd3\x6d\xd9\x22\x48\x8c\x90\xfd\x28\x1a\x7f\xc9\xe6\x57\xf5\x75\xfa\x0c\xf0\x7d\x52\x07\xa4\xc6\x36\x96\xa2\xc7\xa3\x79\x1d\x72\x1b\x46\x0d\xbb\xf2\x36\xe6\x55\xf1\xe4\xcd\x62\x0a\xc1\x69\x82\x84\xfe\x87\x28\x3b\x2d\x8e\x23\xdf\x5e\xc1\x5b\x21\xac\x5d\xc9\x20\x6d\x91\xf6\xab\x9c\x4b\xe4\x1d\x89\x60\x55\x20\xcc\x47\xa2\x7c\x15\x28\x4e\xa2\x4d\x55\xc4\x3c\x35\x79\x74\x12\xb9\x93\x98\x90\xf1\xbc\xec\x42\xf1\x65\x11\x8e\x00\xf8\x57\x67\x08\xd1\xd8\x04\xb7\xe2\xd6\x29\xd6\x46\xb3\x88\x98\xf8\xc2\xa8\x10\xa7\xe4\xbd\x5e\xb6\x08\xb7\xc3\x80\xf0\x7f\xfe\x0b\x7a\xb4\x49\xb9\x9d\x64\x53\x2f\xf9\xa1\x4f\xfe\x5e\xff\xff\x43\x02\x26\xac\x47\x60\x56\xbf\x9b\x9b\x40\x06\x21\x6e\x54\x54\x46\x83\x75\xc1\x85\x2f\x38\x9c\x2e\xe0\xa3\x68\xca\x89\x0f\x77\xf3\xf3\x2b\x4d\xf2\x92\x39\xeb\xe6\xe7\x8c\xf0\x9a\xb6\xa4\x79\x11\xbd\x49\x01\x65\xe2\xee\xff\xe5\x7f\xfa\xea\xf9\x9f\x94\xee\xed\x7b\x7f\xba\xfd\x09\xf6\x05\x53\x7f\x65\xce\x60\xa4\xa9\x37\xf2\x5e\x77\x93\x96\x8c\x14\x33\xf9\xd6\x20\x49\x44\xaa\x5c\x75\x11\x1d\x8f\xc4\x64\x24\xe2\x43\xa6\xf6\xc1\x1b\xac\xbe\xcc\x62\xd4\x3d\xf7\x50\x4b\xd9\x9c\xe2\x2f\x9c\x04\x1e\xaa\x69\x43\xdf\x9a\xe9\xb4\x4f\xb4\x72\xa3\x8c\xca\x56\x52\x75\x2f\x9f\xfa\x7d\xd7\xf3\x1a\xcc\x97\xa9\xca\x1f\x5b\xca\xa3\x8e\xfb\x83\xb1\x45\x12\xa1\x10\x6e\xf7\xc3\xde\xc3\x12\x41\xe6\x41\x89\x34\x73\x37\x3f\x22\x6b\xa1\x4f\x3a\x44\x80\xa9\xde\x06\x11\x9f\x25\xe4\x0a\xed\x6b\xcd\xf0\x09\xd6\xae\x1b\x41\x09\x15\xff\x77\x98\x8f\x93\x7f\xf2\xa1\x60\x48\x7b\x3d\x28\x83\x69\xcd\x94\x4f\xcc\xb1\x32\xfe\xc4\xf4\x61\x9e\xc4\x27\x62\x50\x72\x94\x7e\x32\x16\x52\x53\x59\xae\x11\x50\x62\xc2\xbb\xb4\x00\x11\x2d\xf9\xdd\x7d\x31\xc6\x9c\x39\x82\xe5\xd0\x79\xa4\x35\xf5\xc5\xec\x74\xb9\xe4\xab\x78\xdd\xee\x64\x02\x75\x38\x65\x36\x19\x23\xce\xd9\xcc\x6a\x16\x5b\x87\x95\xf6\xc9\x4f\x0b\x07\x62\x22\xdb\xdf\xde\x3b\x55\x7b\x28\x4d\xc6\x2d\x3e\x45\x77\x35\xde\x8e\x93\xec\x17\x78\x76\x7e\x81\x63\x68\x74\xe4\x8d\x3b\x86\xa6\x07\x7f\x92\x7c\x69\x64\xb7\xc4\x82\xe6\x2d\x7b\x3c\x35\x8c\xa8\x7c\x36\x5b\x61\x76\x0d\x1f\xdc\x3b\x95\x0a\xb8\xd1\xb3\xe8\x14\xb9\x21\xfe\x76\x4b\x82\x92\xce\x06\x39\x24\x85\x48\xdd\x06\x15\x52\x7d\x28\xe0\x51\x29\x46\xf2\x83\x8c\x8a\x7b\x0f\xef\x40\xf9\x84\x46\xac\x78\x6e\x52\xaa\xe4\xc5\xb9\x77\x47\x25\x36\xff\x6c\x56\x1e\xe6\xc5\x91\x3c\x06\x0e\x3c\xd3\x9c\xf3\xf1\xae\x9f\xa6\x8e\xc3\x91\x1d\xf6\x65\x1b\xeb\xb0\xfd\x64\x17\xcd\xdb\x48\x71\x0f\xf5\x2a\x47\x2f\x8c\x47\x81\xcf\xe4\xed\x9b\x89\x2a\xd4\x21\x28\xd6\x99\x98\xd3\x0f\xae\x66\xe2\x13\xb3\x1a\x1d\x2f\x19\x30\x9a\x49\x55\xc1\x92\xaf\xc2\xa9\x3c\xd0\x88\x68\x8d\xba\x29\x7b\xad\x8b\x34\x63\xac\xb5\x98\x44\xfc\x89\xd4\x0e\xe4\xac\xf0\x76\xc5\x2b\xa2\xc0\x9e\x34\x2a\x11\x32\x86\xa2\x80\x01\xb3\x16\xdf\x90\x33\x53\x15\xbc\x22\xad\xcc\x6f\xe0\x99\x81\x83\xc2\x93\xb1\x1a\x5e\xab\x18\xc9\x02\xe9\x28\x69\x07\x2d\x89\xcb\x54\x31\x31\x4e\xae\x31\xf2\x49\x16\xca\x31\x30\x2f\x1c\xcb\xd6\x79\xbf\xbe\x24\xcd\x76\x43\x9e\x89\xf7\x62\x0e\x4b\x7f\x59\xc7\xb0\xcb\x14\x3d\xa6\x64\x86\x92\xa5\xb9\x58\x7f\x39\x7c\xfb\x72\xbc\x2c\x5f\x18\x3c\xbb\x5c\xe1\x50\x21\xad\xae\x24\x40\xe3\xc2\x6d\xc2\x43\x0b\xa2\xc5\xc0\x1e\x8c\x1c\xb5\x45\x12\xe4\x4f\xba\xb4\x83\x7f\x85\xcd\xe1\x41\xd0\x24\x9d\x1e\xb0\x35\x0e\xf2\x2e\x20\x96\x52\x5c\x8d\xb8\x3c\x97\xcc\x3a\x65\xd0\xea\x04\x77\xb6\x27\xf4\x61\x07\x20\x6e\xca\x8d\x86\x00\x78\xdb\xbe\x0a\xcb\xda\xe6\x12\xcd\x95\x90\xb8\x0b\xdc\x37\xbc\x3f\x97\x1a\x88\x91\x78\x0d\x7a\x51\x1e\x89\xeb\x4b\x9e\x39\xb4\x97\xc7\x29\x41\xb3\x99\xb4\x9b\xab\xeb\xfc\x00\x3d\x2b\x59\xf2\xd5\x08\xff\xc5\xc6\xc3\x0c\x58\xe0\xba\xe3\x3e\xcb\x86\x1e\x88\xb3\x3d\x71\xb1\x67\xbc\x65\x78\x27\x07\x17\xdd\xc8\x7a\x7b\x65\xdc\xdc\xbc\xd4\xc7\xb0\xf3\x2e\x68\xdb\xa8\x63\x2b\xe1\xcf\x67\x7d\x56\xd2\x21\x84\xe1\xb6\x74\xe4\xf2\x30\x7f\x8d\x14\xd5\xe0\xec\x70\xdc\x1b\xb8\x72\x6f\x30\x09\x24\xde\xd5\xeb\x0f\xef\xb6\xac\x25\x6c\xfe\xd7\x8e\x7a\x3b\x7e\xaf\x37\x89\x14\xb5\x02\x09\xd1\x9e\x51\x47\x27\x0a\xef\xd8\xf5\xca\xf5\xbe\x18\x82\x73\x5a\x4c\x8e\xbc\x12\x12\xa7\x42\xe2\xb0\x76\x4f\xac\xcc\x5c\xcb\x89\xce\x1f\x67\xfa\xb4\xf5\x6c\xc1\xd1\x71\x0b\x43\x09\x7b\x9b\x12\x93\x22\xa6\xec\xe0\x6b\x2b\xa8\xdc\x98\xf4\x32\x33\xa1\x8f\x3a\x8f\xe1\x74\xe5\xcb\x1c\x90\x7a\x70\x41\x18\x27\x1a\x75\x5f\xd8\x15\xd0\x37\x86\x76\x77\x1a\xc1\xb3\xf4\x3f\x1b\x9c\x0f\xcd\xc3\xd1\x4b\x43\x5c\x67\xae\x31\x33\x5a\x10\x9e\x5a\x10\x9e\xd2\x7d\x04\xfe\x45\x01\x70\x97\x22\x7a\x71\x20\xbf\x56\x01\xf8\xcf\x1b\xd2\x72\x7a\x41\x35\x7e\x32\x16\x47\xfa\x99\x3e\x3c\x92\xa7\xa0\x60\x75\xa0\xc0\xbe\xfd\xc1\x82\x45\x4d\x78\xb7\x24\x9c\x5f\x1c\x8e\x70\xe2\x58\x59\x1d\xd9\x02\x2c\x46\xfb\xd4\x49\xae\x90\x13\x6a\xc4\x26\x0c\xc0\x60\xc2\x1a\x52\x0a\x57\x34\xe0\xff\x2c\xb9\xf1\xbf\xf1\x4b\x8c\x7a\xa0\x44\x6a\x38\xed\xc1\x62\x3a\x3a\xfe\xb9\x29\x66\x12\x09\xdb\x11\xfe\xde\xe8\x01\xfd\xf3\x3b\xa5\x16\x52\x60\xe5\x96\x00\x3c\x28\xa8\x85\xdc\x4d\x26\xb8\x21\xe5\xfa\xe3\xa9\xc1\x11\x66\xd2\x0c\x93\x38\xbe\xc5\xe1\xba\x50\x97\x11\xaf\xb1\xa7\x13\xd7\xe1\x14\xce\xa3\x01\x61\xad\x9e\xce\xb1\xf8\x39\xf1\x24\x5a\xbb\xb4\x1a\x1d\x45\xc4\x01\x0e\x40\x7c\x28\x7f\xa7\x88\xeb\x5f\xcb\xa0\xe1\x07\xf9\x33\xdc\x01\x2e\x00\x05\xb9\xa1\xd3\x4a\x3c\x5f\xb1\xa5\xac\x11\x01\x9f\xf0\xff\x6c\x11\xbf\x90\x2d\x02\x0e\xdd\x5c\x98\x0e\x31\xd1\xb0\x61\xf0\xaf\xde\x8d\xf1\x02\x1a\x17\x89\x6c\x18\x4c\xfc\x4d\x32\xa2\x28\xed\xfd\x18\x31\xce\x07\x04\x06\x92\xbd\x41\xbd\x49\xfd\xb6\x37\x92\xb1\x00\x3b\xff\xb3\xf1\x38\x8e\x34\xdb\x7f\xc8\x20\xf4\xe1\x34\x1a\xfb\x7b\x95\x78\x96\xdc\x66\x29\x66\x9c\xec\x8f\x1f\xbe\xbb\x21\x62\xaf\x19\xe2\xab\xcf\x7c\x28\x62\xdc\xdd\x3e\x71\x67\xeb\xc4\x9d\x8d\x13\x7b\x76\x42\x1a\x07\x39\xa4\x9f\x5f\x42\x57\x9b\x9c\x42\xe5\x34\x93\x78\xe3\x58\x42\x92\x64\xe6\x7c\x99\x3f\xed\x47\x87\x7c\xc0\x98\x13\xb1\x4f\x07\x86\x4b\x45\xda\xc0\x6c\x27\xef\xa4\x1a\x1e\x39\x17\x53\xaf\xac\x4b\xde\x51\x62\x8e\xf5\x16\x49\x7d\xa9\x59\x99\x70\xfb\x8c\xcc\x78\x8a\x63\x1b\x5f\x80\xc3\x94\xd7\x87\x1b\xac\x46\x43\x87\xbf\xf2\x95\x92\x9e\x82\xd1\x30\xe7\xc4\x76\x38\x90\x36\x7b\x2d\x44\xc6\x26\x7d\x1b\xa2\xf8\x9e\xf0\xd9\x4c\xc9\xc1\xda\x50\xaf\x5c\xdb\xc2\xbb\xb8\xe4\x67\x3c\x70\xd5\x5a\xc4\xba\xd6\x03\xac\x04\x39\x1b\xc1\x9e\x7d\x79\x77\x13\xc2\xdd\xe6\xeb\x1f\xa2\xdf\xff\xc2\x63\x27\xa5\x7b\x08\x4b\x1d\xa4\x7d\x88\xaa\xce\x68\x20\xee\x66\x49\x1d\xbf\x55\x47\x0e\xeb\x9f\x63\x03\xfd\x67\xb3\x80\xda\x51\xe5\xf4\x5a\x09\x20\xbd\x2c\x51\x9c\xb9\x2a\x0b\x51\xc5\xb7\x37\x87\x9e\x35\x0b\xc7\x73\x51\x9b\x15\x18\xe9\xbb\xcd\x47\x8d\xf8\xfe\x15\xd4\x98\x86\x90\xbe\xae\x22\x53\xa6\xec\x0d\xe1\x01\x20\x9f\x5c\x46\x45\xb6\x2f\xc6\xd8\x55\x88\xf1\x40\x21\xc6\x0f\x56\x88\x7d\x99\x3e\x2c\xa5\x0e\x2b\x11\x4e\x24\x92\xb1\x7e\x4c\xe3\x04\x91\xbc\xb0\x9d\x08\x00\x48\x42\x30\xa0\xc1\xe2\xc9\xe7\xe9\x24\xc4\x21\x67\xf9\xb2\x6e\x13\x36\xce\x66\x8f\x99\x2d\x8c\x69\xcc\x18\xa5\xee\xca\x9e\x5c\xd6\xbd\xec\xca\x61\x33\x62\xbc\x83\xe3\x85\xf8\xca\x2a\xc4\xbc\x06\x31\x23\x34\x68\x4d\x62\x56\x6e\x94\x3a\xc4\xa1\xfc\x1d\xc2\x8c\xfc\xab\x7a\xdd\xb6\xd9\x91\xa7\xee\x39\x2d\x36\x6a\x95\xd3\xdf\x49\xe3\xbb\xf9\xa5\x32\x60\x24\x70\x0f\x2f\xeb\x3e\x91\x3b\xf2\xe8\x68\xb4\xf2\x25\x59\x45\x71\xfc\x4f\xeb\xf5\x65\x06\xe9\x2c\x5b\x8f\xce\x65\xf2\x81\xdc\x88\x0b\x34\x81\x2b\x8d\x6e\x41\x73\x0e\xf8\x44\x41\xa4\xe5\x7b\xc2\xef\xda\x1e\x66\x15\x5f\x92\x95\x06\x4b\xf5\x26\x54\xa5\xb5\xf0\x31\x16\x08\xd7\xd9\x21\xf6\x27\xf3\xa0\xea\xa0\x51\x39\x2c\x5a\x27\x7b\xb9\xfd\xf0\x55\x7d\x23\x76\x69\xaf\xaa\xb6\xee\xe8\xed\x9c\x36\xe0\x93\x0e\x3d\x8c\xbc\x14\xdc\x48\x07\x4c\x65\x78\x67\xa4\x96\xb3\xec\x6e\x90\x13\xa2\xe4\x26\x73\x88\xc9\xfe\x80\x06\xc9\xb2\x50\x95\x75\xd6\x85\x93\x87\x15\xc1\x0c\x21\x4c\xc1\x0f\x8c\xaa\x04\xc6\x6e\x46\x5a\x2e\x61\xe5\x01\x6a\x07\x52\x09\xe2\x16\x73\xb4\x00\xc4\x5c\xfb\x7b\x28\x5b\x4c\xb1\x9a\x0b\x84\xbb\xd9\x4c\x59\x8a\x3b\x7c\x74\x62\x08\x92\x0d\x98\x11\x1b\xff\x2a\x55\xcf\x87\x07\x7e\x9a\x70\x4f\x4c\xff\x15\x4f\x0f\xdc\x8d\x9c\x1c\x76\x57\xe0\x38\x8f\xda\x81\x58\xe4\xb7\x0a\x0a\xc4\x01\x5c\x4f\xa2\x72\xc8\x42\xc6\x8e\xb0\xf7\x3c\x0a\x3f\x78\xde\x8c\x15\x53\xb4\x77\x68\xad\xaa\xf8\x78\x9d\xc1\x91\xaa\xbc\xdc\x88\xc7\x06\x28\xd6\x0e\x78\xb0\x16\xb7\x39\xc0\x7f\x17\xba\xd1\x99\x28\xb1\x99\x9d\xc3\x04\x5b\x0f\x09\xda\x54\x44\x6c\x7a\xa5\x25\x05\x63\xda\x4b\xb9\x6f\x2b\x16\x3c\xd0\x67\x3d\xe4\xf8\xaa\x98\xfe\x4b\x69\x1f\xf5\x21\x52\x39\x79\x6b\xd4\x00\xa3\xec\x89\x55\x9b\xcc\xa8\x98\xb8\x19\xc4\x18\x42\x57\x08\x07\x8b\xdf\x0e\xd1\x77\xfe\xf1\x86\x3e\xb1\x36\x00\x07\x49\xbd\x2c\x60\xbe\xa7\xbf\xd6\x51\x49\xb4\xed\xaf\xc9\x9a\x97\xce\x54\xa3\xe3\xe2\xd7\xd3\xcb\xba\x9f\xb6\xdd\xd4\x54\x39\x15\xc7\x50\x23\xbe\x23\xe2\xb5\xdc\x54\xcd\xbc\x08\x21\xd4\xec\x68\xe3\xe3\x43\x67\x78\xb8\xd6\x4e\x71\xce\x40\x02\x24\xd6\x68\xee\xdc\x5d\x66\x50\x59\x93\xd4\x55\x79\x37\x5b\x7a\x29\x90\x4a\xb5\xc9\x43\x2f\x1c\x75\x07\xc1\x61\x44\x96\x74\x55\x45\x7d\x8e\xea\x5a\xd2\x95\x5d\x44\x7f\x18\x66\x7b\xa5\xd8\x3d\xdc\x62\x0a\x08\x9f\x82\x12\xd3\x89\x97\x66\x33\x67\xd5\xdd\xbd\xea\xaf\xbb\xfb\x46\x45\xf1\x1e\x65\xbe\xf5\xb6\x70\xa6\x96\x90\xdf\x80\xfa\xca\x74\xae\xdb\x14\xda\x11\x42\xbb\x9d\x93\xa2\xe4\xa8\xaa\x58\x0c\x6e\x00\x09\x6a\xbe\x0a\x89\x9a\x96\xa6\x6e\x23\x59\x7a\xd5\x77\x77\xeb\x67\x8d\x52\x08\x21\x05\xc2\x9d\xff\x22\xc5\xfc\x17\x70\x11\x94\x75\xd5\xcd\x66\x47\xdd\xdc\x64\x0e\x2c\xd1\x19\x3d\xb3\x5f\x77\x32\xd3\xe8\xa2\x8b\xd2\x96\x2e\x24\xad\xd2\xb3\xe4\x02\x56\xca\xc6\x9b\x5f\x92\xaa\xc6\xb5\x4f\x6a\xea\xcc\xdd\x47\x68\xfd\x21\x94\x66\xcf\x6f\x9f\x42\xec\xf3\x34\x95\xa5\xae\x89\x64\x0d\x5f\x85\xc2\x34\x43\xf4\x4b\xd3\x97\x6a\xe7\x97\xa1\x2e\xa5\xa1\x34\x04\x05\xa1\x6e\x29\x7f\x3f\xe2\x52\xd9\x6e\x57\xd2\xb3\x5a\xf9\xfd\xcd\x69\x83\x16\xe6\x47\x48\x69\x08\x0d\xc8\x12\x9a\xb7\x82\x86\xcc\x32\xab\x12\x13\x99\x77\xff\xa6\x9c\x68\xe5\xec\xa5\xb2\x27\x46\xf5\xa4\xf1\x74\x93\x55\x25\xf2\x55\xfa\x28\x3e\x29\xf8\x71\x3f\x94\x17\xea\x4a\xa5\xf3\xf6\xaf\x71\x37\x3d\xb8\x12\xb5\x07\x4c\x1d\xfe\x98\xef\x83\x45\x39\x4f\xe0\xa2\x40\x46\xc7\x04\x30\x4a\xed\xb0\x89\xbe\xd6\xc8\xd0\xc8\xcb\x4f\x2d\x61\x67\x4e\x00\x2e\x3c\x90\x08\x8f\xeb\xae\x05\x97\x0c\x06\xf1\xdd\xce\x6f\x30\x9d\xf3\xf9\xa6\xeb\x3e\x6c\xaf\x9f\xd5\x6b\xde\xb1\x9b\xd9\xec\x88\xcf\xcf\x83\x47\x65\xf8\x28\xd2\x74\xa9\x0e\x95\xa4\xe2\xc8\xaf\x50\xc5\xdf\x13\x2f\x71\x2f\x9f\xeb\x9c\xf1\x09\x9d\x99\x7a\xc7\x6e\x76\x3b\xae\x93\xcb\xc3\x0f\x9b\x72\x5e\x7f\x9d\xaa\x5c\xb0\xdc\x80\x52\x92\xa4\x3c\x2f\x17\x43\x90\x6a\x61\x98\xf4\xae\xdf\x82\xe7\x9a\xd0\x13\x99\x43\x63\x9b\xac\x35\x91\xb4\x84\x18\xa5\x3f\x54\xc6\x23\xbe\x8f\x36\x42\xd2\x6b\x86\x07\xe5\x36\xef\x2d\xe1\x76\x08\x21\x2f\x5f\xc9\x96\xe0\x2d\x19\xcf\x58\xd2\x07\x45\x68\x56\x29\x76\x4e\x9b\xc1\x2f\xcb\xc8\x55\xc7\x09\xc4\xdb\x46\xdf\x14\x14\x34\x4d\xfc\xa6\x08\x3e\x0a\x10\xaf\x52\xa9\xb2\x1d\x8d\xb0\xd6\x04\x47\x5e\xde\x2e\xa3\x2e\x37\xa3\x71\x5d\x0e\x1a\x04\xb9\x2e\xaf\xcc\x1e\x55\xd6\x8d\xea\x2d\xfd\x66\xc6\xf4\x89\x56\x11\xad\x6a\x30\x8b\x6e\x16\x3a\xec\xf5\x68\x1c\x00\x0c\xc9\xea\x36\xc9\x19\x09\xf4\x86\x0a\x61\x00\xc8\x71\x43\x22\x3d\xc4\x7e\x82\x4c\xb2\x0b\x3a\xfd\x08\x10\x61\xe2\xa2\xb4\x03\x92\xc0\x4f\xb0\x4f\x65\xd4\x84\x72\xb9\x1a\x1e\x94\x9b\x2f\xa2\xe4\x0d\xc1\x9b\xfd\x94\xbc\x39\x94\x3a\xa7\xf9\x41\x4a\xe5\x6f\x21\xfe\x5f\x2c\x04\xd3\x35\xf8\xd5\xd2\xdc\xa2\xa4\x6b\x4b\xf1\x7c\x66\xdd\x66\x33\x51\x5f\xd0\xc0\x26\x30\x6e\x1c\xd6\xe3\xa0\x92\x2b\xe2\x43\x97\xed\xaf\x44\x7c\x11\x54\xf2\xf5\xb6\x6a\xca\xbf\x57\x70\x7b\x3d\xaf\xdb\x35\xe9\x2e\xa6\xaf\xce\x4a\x99\x65\xae\xfb\x48\xd8\x65\xbd\xdd\xdc\x33\x99\xd2\x7b\x00\x87\x20\x68\xc1\xaa\x60\xab\x63\x9e\x19\xcb\x88\x8a\x3a\xb8\x55\x11\x06\xcc\x8a\xcd\xe8\x81\xf1\x15\x16\x59\x7b\x61\xa1\x33\x92\x38\x48\x36\x63\x07\x49\x64\xdc\x12\x44\xa9\x4d\x25\x96\xc8\x4b\x74\x36\xd2\x43\xb7\x4d\x49\xdb\x77\xad\xe1\x10\x5b\x92\x3a\x97\x06\xb4\x50\x29\x7a\xc2\x1d\xb9\x77\x6c\x63\x14\xaa\x8f\xb8\x03\xda\x97\x27\xdf\xfa\x4b\x4e\xbe\x04\x07\xfb\x55\xce\xbd\xf5\x17\x9d\x7b\x6b\x82\xd7\xfb\xcf\xbd\xf5\xdd\xce\xbd\xc4\x10\xc3\x53\xaf\x2f\x06\xbf\xd6\xb1\x53\x29\x57\x5f\x50\x05\x6d\x52\x9a\x9c\x6c\x0d\x57\x61\x40\x4b\x1e\x92\x87\x36\x00\x3c\x73\xe8\x01\x98\x6e\x4d\x1c\x7f\xeb\x5f\xf2\xf8\x23\x93\x91\x23\x4e\x29\x2d\x8f\x4e\x26\xda\x93\xb8\xd2\xde\xb8\x70\x82\x28\x64\xcf\xb6\x2a\x99\xc2\xf9\x44\x26\x5d\x32\x5b\x9e\xac\x24\xb8\xe7\x48\x03\x68\xec\xe5\x6e\x07\x30\x9b\x48\xe5\x2c\xb7\xd2\x7c\x8b\x68\x95\xc5\x42\x0a\x8e\xe3\x08\x19\x69\xe2\x65\x0a\xf1\xca\x4e\xb4\x71\xe6\x51\xd9\xc1\xc2\x7e\x7b\x53\x16\xfe\xf7\x85\x13\x68\x91\x5a\xb1\x00\xfa\x95\x8a\xeb\x20\xb9\xb2\x6e\x08\x8f\xbf\x99\x68\x04\xd8\x6a\x4d\x67\x3e\x1a\x51\xaa\x66\x47\x16\x57\x16\xe0\xc3\xc8\x98\x7c\x24\xec\x26\x31\x9f\x47\x27\x55\x55\xb9\x77\x45\xd4\xe1\x51\x56\xf6\xdc\xb9\x64\xf2\xbd\xd1\x93\xa1\x6e\x9e\xf5\xa1\x2c\xac\x5b\x7b\x82\xea\xf7\x37\xa8\x38\xd3\x54\x19\x1b\x40\x54\x86\x23\x1e\xb7\xd3\xa7\x2a\x33\xf0\x5a\x40\xcb\x17\xff\x92\xa6\xa4\x6b\x8d\xf4\x5a\xf7\x3d\x7d\xdf\x6a\xc4\xd0\x2b\xc2\xde\x13\x7c\x99\x56\x76\x37\xe9\xc7\x57\xc9\xc7\x56\xf1\x00\x27\x9e\xee\xdb\x15\x59\x92\xd5\x6e\x57\xc2\xbf\x95\x84\x1e\xe0\x65\x31\xf7\x70\x49\x6f\x88\x52\x42\xb9\x9b\x3d\x4a\x1b\x87\x70\x98\x53\xaf\x94\x91\xf9\xe3\x2e\x6c\xf0\xdd\x81\xce\x51\x25\x92\x91\xc9\xef\x49\x75\x8a\xdf\x89\xff\x9d\x8f\x50\x8b\x5c\x04\x6d\xf3\x91\x50\x89\x4b\x39\xaf\xbf\xfb\xf1\xf9\x93\xf3\x3f\x3c\xfd\xf3\xaa\x7a\x4f\x8e\x8f\x8f\x0b\x3d\xb2\x7b\x20\xcf\x17\x0e\x74\xb8\xe6\x24\x1c\x63\x4f\x32\x08\xd9\x71\xb2\x3b\xd7\x46\x2b\xfb\xc4\x89\x38\x33\xa8\xa2\xb4\x57\x29\x84\x4f\x4d\xa1\x1f\xaf\x9b\x9a\xd3\xf6\xbd\x0b\xfe\xee\xbe\x77\x27\x9c\xb6\xef\xed\x2b\x1d\x71\xdd\xa8\x66\x9c\xb6\x19\xe9\x2d\x27\x09\x8a\x46\xf9\xc9\xb9\xb8\x7e\xaa\xd6\x84\xf0\x18\x5d\x95\xdb\xef\xf3\x46\x5c\x39\x8c\x34\x6f\x19\x7d\xff\x1e\x32\x60\x3a\x2f\x99\xdb\x4d\x6f\xfc\xfa\x9e\x8a\x67\xc5\x30\x58\x41\x4d\xae\x71\xd1\x7d\x93\x4c\x49\xe2\x96\x78\x77\xd1\x3f\x6f\xaa\x64\x6e\x49\xda\x7f\x07\x79\x73\x05\xf5\x78\x53\x9a\x3f\x31\x83\x19\x36\xf9\xb7\xcc\xf2\xed\x76\x05\xeb\x3a\xae\x20\xfc\x9b\x79\x5f\x7f\x24\x96\xb9\xf7\xe1\x0f\xc5\xff\x05\xc9\x98\x5a\x9e\x5e\x5d\xf3\x9b\x10\xcd\x5f\x3d\xce\x75\xca\x07\xf7\x90\x65\xc3\x0a\x54\xc8\xe3\x81\x55\xa8\xd2\xa9\x4a\x52\x17\x6b\xb6\x0e\xd2\x44\x56\x88\x27\x94\xf1\x9b\xb4\xe1\x2e\x5b\x59\xfc\x59\xd8\xb3\x37\xf5\xc7\xc3\x47\x27\x0b\x87\x55\x28\xed\xf9\x81\x75\xa8\xd2\x61\x25\x3f\x90\x4f\x07\x56\xf0\x03\xf9\x14\x7e\xfc\x53\xbd\xc9\x6b\xea\x82\xcf\xa1\x6c\x80\x5d\x2e\xa6\x68\x4c\x44\xf0\xaa\x30\xa5\x23\xd7\x9d\xd0\xa9\x51\x85\xda\xbb\x5b\x54\x3b\xe6\xc7\xdb\x41\x33\xd4\xb7\x51\xd0\x63\xe8\xb7\x7d\x49\x7b\x4c\x75\x14\x63\x83\xdd\xce\x2d\xa2\xee\x62\x75\x14\x2e\xdc\x73\x11\xd7\x4e\x9e\x75\xf9\x06\xf2\x4b\x0f\x49\x76\xdb\xa2\x89\x5c\x13\x19\xf6\x25\x0f\xfa\x5e\x6b\xd1\xfd\x9f\x25\xc7\xb5\x9b\xa8\x0a\xa1\x05\xb7\x2a\x74\xd7\x17\xcf\x3c\xf4\xcf\x76\xa7\x84\x8c\xe6\x94\x7a\xf1\x94\x51\x41\x87\xc8\xe9\x93\x96\xcb\xa3\xf4\x49\x70\xb2\x5a\x67\x00\xb7\xa1\x30\x11\x49\x9f\x72\x4b\xcd\xdc\x3a\xb4\x7f\x4d\xd4\x25\x65\x6e\x0a\x98\xc2\x2a\x03\x26\xfd\x74\x4e\xc4\xe9\xa2\x8f\x5e\xc7\x9c\xef\x9d\xc8\xed\xb3\x0d\x7d\x7f\xc9\x1f\x25\x5f\xcb\x5b\x05\x38\x55\x3f\xfa\xd8\x61\x15\xc6\x47\x60\x6e\xa8\xc4\x7d\x77\xe2\xad\x42\x18\xa6\xaa\x7e\x7a\x57\x85\x7e\x97\xca\xaa\x92\xb8\x20\x51\xd8\x6d\x71\x10\x64\xfa\xdb\x93\x56\x08\x68\x4e\x91\xd0\x21\x42\x5c\x0e\x09\x79\x54\x82\xb6\x0a\x0a\xd1\x20\xb1\x5c\xfa\x09\x39\x6c\x3a\x5c\xbc\x25\x47\x09\xf7\x68\x7d\xd9\xbf\xa9\x15\x1b\x8f\x19\x86\xe4\xfa\xd7\x1a\x0f\xc5\xeb\x03\xaf\x19\x07\x7f\xbc\xf8\x92\x88\xc9\xe4\xc4\xa8\x54\x5e\xab\xc5\x30\x1b\xa7\x74\xa7\x1e\x17\xce\x67\x10\x31\x1f\xa5\x31\xa1\xfd\xe5\xc1\xcd\x9e\x7e\x61\xb3\x61\x16\x88\x58\xf8\x50\xf3\xe6\xcf\x81\xc6\x5b\xf5\x91\x7b\x61\x41\x64\x0d\xd3\xee\x42\xad\x8a\xb1\xe9\x1a\x3b\xb2\xeb\xf7\x5e\xfa\xc1\x67\x92\x22\x64\x15\x8a\x22\x24\x5c\xd0\x88\x06\xac\xa1\xcd\xe3\x0d\xa9\x5b\x69\x9e\x46\x98\x0c\xd8\x0f\x7c\x60\xdd\x27\x59\x4c\x96\x00\x67\x75\x1c\xf7\x78\xad\x22\xbe\xf0\x54\x92\xfa\xf4\x62\x53\xbf\xef\x0b\x94\x4a\x75\x90\x58\x1f\x60\xc3\x93\xa9\x87\x82\x29\x3e\x6f\x28\x23\x6b\xbe\x91\xdb\x8c\x64\xb3\xe0\x6a\x55\xe1\x72\x35\x09\xce\x35\xd7\xa2\x1f\x59\xbb\x41\xe7\x47\xa4\x41\x13\x30\xbc\xbd\x44\x46\x98\xa5\x73\x3b\x01\xf4\x47\xd0\xcf\x7a\xb3\x39\xb8\x8b\x58\xe5\x41\x7a\x47\x8e\x8f\x01\x21\x47\x65\x3c\xe2\x0e\xf8\xa6\x64\x34\xd9\x03\x1e\xa7\x68\xe6\xf3\xfe\x92\x5e\xf0\x12\x42\xa4\xc5\x77\xad\x8b\xb3\xd3\xee\x99\xb3\x12\x61\x99\xe8\x8a\x6a\x71\xf6\xf8\xb8\xd3\x40\x3c\x74\xd9\xad\x26\xb5\x6a\xfd\x21\x58\x7b\x65\x13\x35\xc2\xb5\xe9\x94\x95\x41\x83\x59\xd8\xb6\x96\x16\x13\x5b\xd0\x61\x6b\x4b\xe7\x4c\x73\xbf\x2a\xcc\xe1\x1a\x9d\xe0\xa5\x44\x18\x30\x09\x51\x42\x29\x64\x36\x53\x49\x1a\xd8\xd6\x80\xd4\xbd\xde\xb6\xdf\x77\xdd\x75\x4e\x6e\xb1\xe5\x1d\xec\x18\x5d\x4a\x1c\xb6\x50\x4c\x0a\x68\xb8\x38\x5f\x5f\x92\xf5\x87\x67\x1d\x7b\xc9\xae\x2f\xeb\x36\x9c\xd8\x02\x85\xe7\xf9\x65\xdd\xbf\x09\x9b\x4c\x68\x92\xd2\x9d\x0b\xbc\xd4\xea\x76\x4d\x36\x89\x4a\x46\x84\x35\x67\x36\xe0\xeb\x32\xdd\x10\x1a\x93\xea\x92\x29\x6d\xc2\x0c\xf6\x99\x3e\x58\xb8\x41\xdb\x75\x83\xf1\x30\x3e\x97\x26\x23\xb8\x4b\x33\xfe\x13\x2b\x2f\x39\x00\xb2\xde\x96\x1c\x6f\xe2\xc0\x49\xdc\x2b\xf1\xc6\x5d\x3c\x5f\x8b\x13\x76\x7b\x9d\x1b\x5a\xd8\xcd\xb1\xd2\x19\x33\x53\xf6\xb8\x29\xc1\x4b\xdd\x65\x02\x32\x90\x55\xc7\xc7\xdc\x85\xac\xd2\x57\x9e\xf8\x9a\xcd\x66\x47\x2c\x81\x5d\x93\x78\xec\xc2\xc2\x1d\x9d\x0e\x5a\x4f\x39\x94\x04\xa1\xc3\x1a\x9e\x30\x7f\x06\x1d\x24\x97\xe1\x4e\x9e\x3c\xee\xb1\x6f\xd5\x0b\x87\x38\xf5\x24\xa0\x6c\x1c\xfe\xc7\x97\x35\x4c\x4f\xbd\xc3\x7a\xcf\x2d\xe3\xf5\xcf\x19\x1f\x4a\xe9\x6b\x4e\x0e\xf7\x83\x1a\x19\xf2\x98\x4b\x94\x0d\x01\xc8\x7a\x31\x39\xb5\x39\x01\x03\x61\xf6\x34\x00\x33\x48\x67\x41\x4b\xce\x1d\x15\x87\x3c\xa1\x1f\x3d\xe4\x03\x80\xa4\xf0\xa5\x18\xed\x39\x0d\xaa\x3a\xd7\xc1\x6f\xe2\x39\x30\x85\x4c\x9c\xce\x3c\xa1\xfd\x66\xff\x40\x6e\xfa\xd2\xf5\x13\x46\x08\x5f\x2b\x39\x0c\x24\x07\xec\xbd\x54\x16\xba\xad\x60\x54\xa0\x53\x28\x62\x13\x3d\x71\xe0\xdc\x4b\xb4\x47\x49\x5f\x86\x13\xed\x3b\xc8\xa5\x26\x5b\xf0\x79\x9d\xe3\xff\x15\x6a\xdb\x69\xfb\x3e\x33\xbf\x70\x73\x3a\x45\x8a\xe4\xf7\x72\x24\x19\x59\xc2\x16\x08\x25\x89\xb6\xe3\xcf\xba\x6d\x9b\x13\x42\xf4\xeb\xf0\x33\x3b\x77\x99\x0f\x6d\x81\xf0\x53\x19\xfa\x3e\xe6\x8a\xad\xb6\x4a\x2c\x0e\xaa\x03\xd1\x3c\xc0\xe1\x83\xc4\x45\x76\x59\xf7\xa3\x8d\x39\xc1\x84\x06\xd1\xc8\xa9\x71\x36\x8b\x1d\xbf\x5d\x0f\x73\xc3\xb3\xa5\xb2\xc6\x8d\x36\x6c\x1d\xce\xe5\xdd\x19\x3b\xf1\x07\x5e\xe7\xc4\xa4\x94\x75\xa7\xa0\xad\x4e\x30\xb5\x2e\xe7\xed\x43\x0a\xf9\xcd\xb4\xad\x6d\xd9\xae\x70\x5d\x11\x60\xf6\x96\x27\xab\xaa\xaa\xea\xe5\xe9\x6a\x36\x93\xd2\xe5\x94\x2d\xbb\xd5\xf0\x45\x5e\xf2\xce\xde\xe2\x71\xaf\xac\xd7\x6d\xb8\x88\xb8\xad\xae\x49\xe9\x38\xc0\x33\x84\x39\xc2\x34\x69\x72\xe8\xbc\x09\x68\x11\xae\xab\x13\xdc\x57\x9d\x1e\x6d\xfd\xb0\x87\xc4\x64\x30\xda\x6d\xd5\x2d\xeb\xd5\x84\x2e\xb7\xab\x6a\x49\x96\xdb\x15\x6e\x97\xdb\xd5\x4a\x33\xb0\x34\x4c\xcb\x0e\x5a\x20\xc8\x10\xd4\x5d\x5d\x51\x9e\x21\xe4\x4f\xa6\x40\x14\x95\x20\x6b\x78\x42\x1b\x50\x33\x66\xbe\x7f\x47\xd6\xdd\x15\x81\x12\xc5\x88\xca\x20\x3c\x6e\xdb\x10\x4e\x36\x93\xdb\xc7\x04\xb5\x82\xb9\x45\x4e\xfa\xb6\xbd\xac\xdb\x66\x43\x1a\x48\x58\x06\xa1\x5b\x1c\x61\x51\x42\x47\xa0\xa7\x52\x63\xba\xf8\x7e\x69\x67\x89\xdc\xf1\x98\xc0\x07\x94\x9f\xa5\x9a\xc9\x47\xff\x5b\x07\xc9\xf1\x86\x22\x28\x80\xf8\xde\x4b\x25\x46\x8d\x4f\xd6\xf1\x66\x82\xb4\xaa\xe1\x99\xcb\xba\xcd\x46\x88\x12\xe9\x7d\x22\xf7\x48\x70\x7b\x45\xc7\x81\xb4\x63\x25\x42\x4b\xa2\xbb\x2a\x3c\xe3\xb4\x1a\xd2\xa6\xc8\x51\xda\xcd\x02\x59\x35\xd7\x98\x3e\x2d\xd0\x0e\x18\x26\x5c\x27\xe6\xbd\x34\x48\x21\x0e\xce\x4b\x52\x01\xa6\xb4\xca\xe5\xde\x86\x0d\x14\x15\xe8\x32\xba\xcd\x86\x34\xdf\xd6\xeb\x0f\x05\x24\x08\x23\x0e\x6a\xee\x9e\xbb\x37\x5c\x09\xce\xea\xb6\xa7\xa2\x5f\x5e\x48\x8c\x56\x8a\x25\xee\xe2\x46\x19\x27\xe1\xdf\x0a\xec\x96\xcb\x93\x15\x1a\x9c\x23\xd6\x53\x23\xb7\x15\xb3\x46\x97\xe3\xe2\xde\x6f\x8b\x63\x32\x69\xba\x5b\x36\x27\x9f\x29\x9f\xcd\xe4\xbf\x8a\x4f\x64\x15\x53\xce\x3f\xf0\xf1\xf0\xe9\x92\x6e\x48\x79\xc4\x20\xf7\x96\xeb\x54\x11\x07\x4d\xe0\x5e\xff\xb1\xad\x2e\xc9\xb2\x85\x10\x86\x2d\xa2\xd5\x56\x32\x60\x3d\xee\xaa\xed\x9c\x08\x4e\x4b\x1c\xb1\x5b\xd9\x29\xe9\x5b\x41\xc1\xcb\xbf\x5a\xae\xa4\xa7\xa7\x1c\x15\x28\x0b\xe4\x99\xb9\x09\xcf\xcc\x92\x55\x6c\xb9\x59\xd6\xab\x15\x92\x55\xce\x66\x9d\xd4\x00\x30\x84\x99\x6c\x70\x36\xa3\xfa\xd1\x04\x3a\x54\xdd\xca\x8e\x2c\x28\x96\xdd\x58\x74\x18\x3a\xb1\x60\xc3\x60\x1b\x8b\x0e\x68\x71\x32\xcb\x56\x14\x44\xe4\x85\x56\x68\x7b\x8a\x62\x76\xb0\xba\xce\xfd\xac\xc0\x4c\xdf\x0c\x34\x6c\x98\x8a\x86\xa1\xcf\xaa\xe1\x03\x4f\xe0\xe0\x10\xcd\xc4\xef\x16\x8f\x38\x27\x57\xd7\x9c\x34\x53\xde\x4d\xe5\x07\x53\x22\x3e\x98\xfe\xdf\xe2\x98\x1f\x17\xff\x77\x5a\xe8\x90\xb9\xe3\xaa\xe8\xda\x69\x71\xfc\x06\x32\xe3\xca\xde\x1c\x17\x53\x20\x8f\x29\x6d\xa7\x30\x8d\xd3\x02\xb7\xc7\x15\x71\xa9\x6d\x3e\x2d\x6c\x5e\x5f\x36\x9b\x95\xa2\xa6\xc7\x00\x3b\x38\xfd\x44\xf9\xe5\x34\x8c\x38\x61\xe8\xb8\x98\x17\x08\x87\x11\x2a\x6d\xb4\x6f\xc0\x40\x10\xe5\xbf\xb6\x77\x7c\x94\x54\x95\x57\x1a\x2e\x59\xe7\xf6\x96\x28\xd3\x4b\xe6\xa6\x52\x65\xab\xc9\xa9\xd1\xdd\x84\x86\x5e\x9d\xee\x44\x27\xdf\x75\xd3\x68\xc7\x40\x21\xe1\xaa\x64\x6c\x1c\x6e\xf7\x35\x80\x86\x21\xa2\x04\xd7\x12\x7c\x6e\x38\x18\x45\x5d\xac\xe2\x7a\x76\x14\x7f\x45\x42\xfe\xca\x24\xfa\xc4\x62\x5b\xa0\x09\x31\xc9\x3c\x93\x39\xde\x73\x87\x68\xca\x56\xb1\x5f\xc0\xe4\x63\x60\x5c\xe2\x5c\x36\x58\xfa\xae\x3e\x7a\x9e\xb6\x79\x4f\xb4\xf9\x25\x6f\x10\xf7\xb9\xd0\x84\x6e\x35\x10\xf3\xc7\x7b\xc7\x6c\xef\x92\xd2\xf9\x57\x98\x20\x75\xce\xdf\x10\x21\xa8\xfd\xc3\xe6\xe0\x86\xc8\x0c\x8b\xe1\xb8\xae\xa5\x26\x3d\x12\xef\x1c\x27\xc2\x7d\xb5\x9b\x13\xc7\x4d\xf8\xcb\xd0\x84\xbb\xf2\xfb\x15\xe1\xf5\xb3\x8e\x19\x4f\x22\x86\xa4\x31\xc4\x0c\xe5\x8c\xcf\xcf\xaf\xb5\x15\xc1\x85\x15\xc7\x2d\x5a\x70\xc9\xcd\x8b\xad\xdc\x46\xba\xf9\xc4\x57\x79\xfe\x74\xa4\x4b\x04\xc1\x65\x2a\x2a\x9d\xb8\xe0\x03\x4c\x82\x0f\xc8\x65\x50\x8d\x69\xc0\x71\x71\xe2\xb6\x3a\xb5\x96\x7a\x67\x51\x7c\xe4\xdb\x74\x77\xbf\x4b\x84\x2f\x8a\xc3\x5b\x9f\x07\x2d\x20\xe9\xab\x84\x1a\x26\x73\x25\xad\x4e\x1e\x50\xeb\x02\x46\x5d\x69\x8a\xae\x26\xed\x92\xae\xb4\xf6\xa1\x13\x44\xcd\xe5\x89\xfe\x92\xfd\xb0\x15\x8b\xf3\xbc\xe5\x9d\x7f\x90\x75\x82\x15\x4e\x11\xaf\x0c\x3b\xdc\x0b\xc8\x9c\x1b\xde\xb7\xc9\x40\x60\x7b\x3b\xdd\xa9\x93\x1c\xc8\x29\xdf\xc9\x08\x55\x2d\xea\xd5\x61\x0d\x25\x15\x5b\x3a\x5d\xbc\xb5\xbc\xef\x76\x45\x0b\x15\x38\xcf\xce\xb2\xfa\xa6\x67\x1d\x7b\xde\x80\x79\x7e\x11\xbe\x3a\x0b\x1f\x2c\x42\x4b\x46\xc4\x0b\x64\xd4\x83\x8e\x57\xd2\x8b\xba\xad\xdf\x13\xa6\x1e\xd9\x6c\xae\x89\x2b\x4b\xcc\x5b\x13\xcb\x1e\xb4\x31\xfe\x5e\x8a\xd1\x95\xea\xd6\xa6\x40\xd2\xdd\xc0\x7b\xd7\xab\x77\x91\xe6\x47\x5b\xef\xe2\x06\xa4\x41\x9e\x04\x2e\x61\xb1\x19\x36\x6c\xc7\x61\xb4\x6f\xb5\xfb\xc4\xd1\x89\xef\x34\x41\xa2\x93\xdb\x95\x26\xa2\xe9\x0b\x7d\x03\x42\x07\xb5\xbb\xf6\xe6\xd4\xef\x8d\x42\x8e\xca\xc8\xe6\xa1\x70\xef\x62\xc0\xfe\x32\xaa\x4b\x4c\xaa\x84\xb6\x31\x10\xb8\x3c\x8c\x74\x4f\x8b\x89\x26\xbe\xe6\x32\x27\x53\x81\xd8\x14\x28\x39\x51\xb6\xb4\x33\xfd\xca\xbd\x40\x4f\xcd\x98\x56\x02\x87\x84\xb8\x5f\x13\x5a\x37\x92\x22\x5f\x90\xbe\xaf\xdf\x93\xb7\x5d\x4e\xa5\x1d\x78\x55\x3b\x61\x29\xb8\x00\x8a\xe9\x0b\x04\x09\xd4\x12\xf2\xbd\x64\x30\xdc\x76\xe0\xbc\x4c\xb4\x74\x68\x3b\xb2\xc6\x48\xb6\x04\x4e\xc5\x6d\xc7\x3b\x1c\x0e\xab\xda\xe4\x35\x0a\xd4\x92\x50\x6d\x1e\xd1\x62\x4f\xb5\xef\x9d\xd4\xd3\x28\x54\x3f\x5a\xf2\x7f\xde\x7e\x14\xd2\x79\xcd\x53\xfe\x22\x4a\x3f\x01\xb2\x98\x10\x41\x08\x22\x61\x42\x0e\xc3\xa8\xe7\xd7\x15\x78\x60\x93\x58\xda\x68\xbd\xea\x2b\xa2\x1a\x2f\x8c\xdd\xb1\xfe\x48\xfe\x54\x9b\x1c\x41\xe1\x9c\xd8\x5e\x67\xce\x34\xb7\x6e\xa5\xed\x30\x9b\x4b\xee\x2b\x72\x60\x53\xe1\xfb\x58\x77\x13\x2b\x65\x12\x5b\x10\x72\xf0\x18\xcd\x85\x63\x07\x4b\x28\x44\x41\x5c\x72\xfd\xca\x6d\x2a\xed\x25\x59\xb2\xd5\x4a\x9c\x4a\xf2\xaf\xac\xf2\x54\xbe\xd6\xf7\x74\x66\x97\x47\xb6\x51\x73\xb8\x24\x48\x60\xb9\x92\x79\x84\xbc\xb8\x3c\xec\x20\x53\xc5\xba\x8a\x40\x27\xdd\x57\xb5\x16\x0f\xb7\xd5\x88\xaa\x0b\x6f\x5c\x7a\xdb\xce\x66\xe5\x26\x9a\x26\x21\x56\x5e\x93\x32\x8f\xef\x03\xd1\x2e\xb2\x10\x1b\x39\x19\xdb\xea\xe4\x41\xfb\xb0\x07\x49\x8d\x56\x64\xd9\x55\xf5\xb2\x5d\xad\x30\xc4\x55\x6c\x1d\x8c\xa4\xcd\xb2\x5b\x69\x9f\x78\xda\x3f\xfd\xdb\xb6\xde\x94\x6c\xd9\xad\x30\x85\xfc\x1d\x12\xd9\xca\x3a\xd0\x05\x02\x74\x27\x79\x9d\x44\xc8\xf3\x43\xe9\xe4\x63\x6f\x8b\xe3\x62\xa1\x1e\xd1\xe6\xb8\xf8\x6d\x11\x9e\x67\xca\x79\xd9\xb7\xd4\x05\x7c\xb5\x75\x7f\x16\x62\x96\x03\x6f\xd6\x56\x39\xc6\x8d\xa3\x89\x03\x9a\x52\x55\x15\x39\x63\xc0\xf4\x6e\x5c\x2f\x45\xe9\xf5\xd0\xa2\x85\xcb\x92\x8b\x5b\x52\x96\x5d\xa7\xca\x1a\x27\x37\xa7\x4f\x15\x73\x00\xc0\x2e\x1c\x80\x03\x2b\x11\xec\x49\x9e\x61\xca\xd9\xec\x19\xd6\x7f\xdc\xbd\xb3\xfd\x54\x17\xd6\x2b\x12\x99\x7c\x1d\x7b\x41\x15\x5c\x14\x05\xec\x02\x95\x19\x57\xf2\xdc\xe7\x9e\x73\x4a\xf0\x8d\x93\xfc\x22\x70\x4b\x27\x9f\xa6\xdb\x68\x26\x11\x4a\x7b\xb1\x9b\x2e\x79\xce\xf0\x07\x75\xc8\xfb\xc2\xba\xe5\x7b\x4e\xf5\x3f\xe9\xcd\x65\xda\xf7\xde\x3b\x13\x62\x22\xc3\x0e\x9b\x0b\x5d\xdc\x99\x06\xe3\xb3\x9f\xd8\xd6\x28\xf2\xec\xb7\x03\x0f\xb5\x34\x87\x0d\x3e\xfc\xca\x89\x4b\x08\x95\x46\xcb\x15\xca\x85\x23\xd8\x5e\xd8\xc3\xe9\xb0\xf6\x5d\xd3\x61\x6c\x2f\x1c\x9b\x03\xa7\xd8\x80\x7b\xb7\x29\x7d\xff\x79\x35\x79\x24\xe2\xec\xfb\x43\x69\xc4\xf9\xc4\x25\x12\x4f\xf1\x41\x3e\x4d\x5b\x25\xd5\xa0\x64\x48\x85\xed\x43\x7c\x0c\x1f\xd6\x91\xf8\x3b\xdb\x9b\xc4\x05\x37\x36\x7f\x71\xf1\xec\x3c\x26\x6a\x76\xe6\xb3\x01\x2b\xfb\x41\xd4\x26\x63\x31\x9d\x5f\xa3\x3d\x14\x05\xb2\x7d\x82\xaf\x9d\x5e\x24\x95\x51\x07\x4e\x6a\xea\x53\x67\x5e\x93\x6a\xae\xd1\xa9\x4d\x7d\x61\xba\xea\xfa\x0e\x8d\xc3\xd8\xd8\x82\xe6\x63\x23\xfd\x65\x3e\x3d\xf2\x62\x08\x2c\xe0\x8d\x8c\x61\xd5\x66\xb8\x7b\x66\x67\x80\x05\xec\xdc\x73\x8f\xa8\x7b\xfe\x68\xfd\xa1\xed\x3e\x6d\x48\xf3\x9e\x34\x3f\xf9\xb1\x93\x4e\xf8\xb0\x45\x9d\x8a\x09\xe4\x2c\xcf\x94\xad\x16\x96\x3b\x59\x92\x95\xd2\x38\x7e\xfa\x97\x0c\x38\xfc\xbc\x0f\xf5\x36\x0e\x78\xa3\xcd\xdb\x4e\xea\x86\xf2\x8c\xdf\x95\xf4\x91\x5b\xae\xf4\x6f\xc2\x6b\x1b\x12\x90\x88\xd1\x0a\xd1\x64\x03\xfc\x1a\xd5\x62\x04\x7c\x3b\x0a\x9f\x3b\xf2\x5d\x4f\x78\x12\xea\xc7\xfd\xa2\xe2\x91\xa8\x1c\x7e\x63\x6d\xa8\xe6\x3b\xbe\xaa\x88\x3f\x0b\x06\xdf\x26\x21\x13\x07\x15\x2a\x37\x8f\xb8\x4e\x2f\xcf\x9a\xaa\x56\x67\x78\x26\x41\x16\x69\xfd\xde\x49\x1f\x1d\x48\xc9\x32\x96\x25\x35\x73\x50\x51\xa6\x95\x84\xa8\x9d\x73\x82\x94\xdf\x4e\x02\x5a\x98\x8c\x25\xe9\x04\x5f\x47\xd7\xe1\xb8\xd4\x4a\x58\x9f\x76\xf0\x27\x87\x51\x55\x02\xf5\x7e\x26\x55\x9b\xc4\x6c\x7a\x38\xe9\x19\x7c\xc0\x97\xf6\x13\xd5\x8f\x3d\x1f\xa9\x52\x96\x23\xd6\xdd\x4f\x1d\xd8\xe3\xec\xaf\x03\x5d\x27\x41\xeb\x3c\xd5\xec\x8b\xfa\x1a\x34\xf3\x53\x0a\x10\x75\x42\x6a\x20\x6c\x5a\x7f\xac\xe9\x46\x1c\x21\x05\xb2\xb8\xbc\x4f\x73\xbb\xdc\x66\xf5\xbe\x3e\x14\xb1\x9a\x11\xce\x28\x49\x06\xb4\x98\xba\x96\xc4\x78\xfb\x5b\xb1\xd9\xf1\x03\x94\x45\x80\x61\xf9\x2c\x8e\x1a\x88\x65\x18\xa5\xae\xd0\x26\x78\x55\x5f\xa7\xfc\xad\xe2\xc3\x99\x2c\xc5\xc1\xbc\x32\x46\xac\x21\xc0\x5f\x7b\x69\x62\x84\x31\xc5\x9d\x13\x90\xd1\x76\xec\x4a\x39\xb9\xf7\xd7\x5d\xdb\x93\xd2\x96\xb2\x31\xd1\x6f\x48\xa0\xc4\x77\xa0\xe5\xa2\x29\x90\x59\xfd\x43\xf4\x39\x86\x4c\x86\xbe\xd6\x91\x75\x5b\x80\x76\xb8\x25\x9f\x39\xab\xd7\x2e\x07\x22\x9b\x33\x92\xdb\x80\x70\x0b\xd1\xd0\x8f\xff\x25\x2f\xb0\x47\x7b\x48\x5b\x7c\x77\x30\x1a\xfb\xfb\xe8\x5a\x70\xce\x5d\xa8\x49\xc8\xf1\xd6\xbc\xbf\x24\x2b\xe4\x78\x74\x2d\xf9\x9e\x6b\x26\x30\xf6\x40\x8d\x98\x56\xad\xd8\x2f\x86\x4a\x28\xa0\x82\x8b\x67\x69\x1e\x8f\x4a\xd1\x3d\x11\xa0\xb6\xaf\xef\x5e\xc7\x1d\xa7\x42\xdd\x73\x31\x9f\x1f\xf6\x31\x04\x42\xa2\x78\xde\x5e\x74\x9a\x1f\xd8\x5c\xf6\xe7\xd7\x0a\x56\x5d\x1a\xe8\xd4\x0b\xe6\xbe\x20\x60\xdb\xbc\xd8\x90\xcf\xf4\xa3\xb2\x0c\xb9\x1f\x2e\xdc\x0f\xcf\xaf\x65\x5e\x73\x0d\xd6\x5e\x2d\x57\x87\x2c\x96\xb3\x2b\x64\x35\xe0\xba\xaa\x72\xa4\x97\xd6\xa5\xfb\xfb\xef\xde\x80\x35\x36\xee\x85\x32\xd4\x72\x65\xbd\x64\xa9\x57\xb1\x63\x6d\xd0\x09\x03\x36\x10\x0e\x43\xf2\x01\x4b\x55\x68\x85\x52\x11\x3a\x19\xd8\xa3\xbb\x8f\x44\xae\x6d\x6e\x30\xce\xdb\x40\xfd\x08\x95\xe6\xe9\x48\x2f\x3e\x98\x85\x69\xff\x86\x6c\x2e\x94\x0e\x84\xd3\x5a\x23\x67\x81\xda\xae\xe4\x60\x27\x16\x9d\x72\x45\x50\xd0\xfa\xcc\x66\x25\x94\x69\x77\x3b\x62\x4a\xbd\xab\x7b\xf2\x42\x33\x9b\xbb\x9d\x64\x69\xe0\x8d\x61\x41\x5d\x6e\x24\xee\xf8\xeb\xaf\xda\x71\x76\x50\xc7\x59\xb6\xe3\xec\xd0\x8e\xbb\x6b\x1b\x38\xc6\x9c\x18\x66\x2c\x24\x25\x65\xfc\x0e\x6f\xc5\xb0\x98\x62\x01\x4f\xd2\xfb\xca\x98\xd0\xc7\x03\x41\x96\x27\x2b\xdc\xca\xbf\x4e\x57\x98\xca\xbf\xbe\x59\xe1\x4e\xfe\xf5\x9b\x15\xae\xab\x5b\xc1\xe1\x2c\x6e\x69\xb3\x68\x65\x9a\x5b\x36\x0c\xae\x7b\x9c\xfa\x43\xeb\x94\xf1\xda\x73\xb6\x54\xa4\xcc\x30\x45\x67\xa5\x52\x1c\x46\xfb\x52\x6c\x2c\xad\xb2\x76\x5f\x62\xa5\x97\x76\x09\x1c\xaf\xf5\xaa\x5f\x7a\x1e\x15\xcf\x41\x5d\x8a\x16\xba\x91\x68\x87\xbb\x8d\xb0\x44\x23\x9b\x54\x23\x9b\x64\x23\xd6\x0b\xac\x53\x18\x50\x9a\x10\x65\x4e\x31\xe9\x5f\xd3\xe2\x1e\x6f\x10\x06\x8f\x41\xd1\x3a\xee\xf4\xf6\xbe\xee\xae\xb7\x1b\x70\x34\x90\x25\x3b\x5c\xe3\x0d\x5e\x87\xc1\x37\x61\xb9\xc4\x69\x04\x56\x0f\x50\xc5\xd3\x8b\x32\x48\xa4\x2f\x9f\x23\x1b\xa5\x78\xf2\x80\x3e\x94\x4f\x2d\x39\x98\xfc\xbc\xf2\xc5\x92\xae\x74\x42\x82\xa6\x79\xdb\xe9\x0e\x72\xdc\x41\x7b\x83\x01\x8f\xaa\xd5\x07\xe9\xd2\xb5\x2c\x1d\x86\x6b\x3a\x85\xd2\x63\x39\xf2\x36\xb4\x7b\xaf\xec\x76\xaa\xe7\xb4\x39\x82\x54\x1b\x8d\xc6\x72\x57\xf6\x39\x05\xf8\x26\x5e\xe0\x4e\x5c\xb4\x54\xf6\xaf\x3b\xf3\xa7\xa5\x43\x67\x9d\x06\x53\x86\x09\x5a\x28\xa7\x46\x5b\x01\x26\x68\xd1\x9e\xc5\x8f\xe5\x4e\x58\xca\xef\x56\x43\xfa\xcb\x70\xd0\x1e\x4d\xe4\x38\x86\xd9\x8c\xcb\xde\x4a\x74\xaf\x70\x29\xdb\x70\x15\xdb\xc4\x02\xb6\x76\xed\x22\x4f\xb7\x92\x60\x70\x7d\x11\xcb\x37\xcd\x97\x69\x23\x4f\xf1\xb8\x58\x66\x08\x89\x55\xa0\x82\xe7\x6d\xd5\xb8\x66\xb3\x60\x4c\x14\x9d\xc9\x77\x15\x9d\x5f\xd0\x0d\x27\x2c\x99\xcd\x4b\xae\x37\x49\x4e\xb6\x5c\x0f\xe9\x74\x80\x06\xfc\xd8\x91\x1e\xd3\x1b\x37\x92\xc2\xdc\x03\x56\x13\x5d\x78\xad\xbd\x20\xbc\x9e\xf8\xb1\x29\x64\x36\xf3\xec\x33\xe0\x32\xe5\x28\x81\xbf\xb8\xed\xf0\x66\x3a\xbc\x6d\x2d\x0e\xbe\xd8\xcb\xe3\x79\x48\xca\xe7\xeb\x7a\x9d\xc1\x9e\xd2\x4a\x36\x58\xf5\xef\x01\x1a\xfa\x31\x14\x96\xfc\xdc\xa1\x6c\x9b\x6b\x15\x03\xfb\xb9\x1d\x9d\xbe\xac\x04\xa3\x83\x8f\x4e\x2d\xb8\xba\x20\x1b\xc5\x94\x45\x14\x99\x60\xcb\xdc\x46\x26\xcc\x8f\x13\x62\x09\x17\x3e\xbb\x65\xc6\xba\x44\xf1\xd1\x09\x9a\x74\xc6\x17\x5b\x34\x45\x31\x83\x74\x10\xfb\x19\x3c\x97\x43\xd1\x49\x91\xce\x43\x8b\x19\x41\x13\x37\x81\x49\x26\x11\x52\xd4\x7f\x27\xab\x3a\xdb\x33\x82\x53\x35\x02\xd9\x43\x39\x86\x38\xde\x3f\x53\xc5\xd8\x5a\x06\x9f\x08\xea\x85\x61\x4f\x54\xda\x38\x21\xe5\x9a\x6c\x1b\x96\xd2\x96\x2d\xec\xaf\x0f\xe4\x46\x6b\x11\x8e\xe8\x6c\xc6\x8c\x46\x57\x27\x97\x4a\x8e\xa8\x45\x0b\x3a\x24\xe0\x6e\xfc\x6e\x8c\x30\x8a\x31\x31\xfb\x4b\x83\xf5\x6d\xa2\x47\x62\xee\x79\x9d\x81\x6a\x4a\x4d\x0e\x2a\x77\x19\x71\x5d\x79\x69\x21\x92\x0b\x09\x76\xe2\x5a\x65\xb4\x34\xb2\x25\x9c\x6a\xe0\x3a\x09\xbb\xce\xa4\xd2\xeb\xab\xce\xcb\x1b\x25\xb9\x97\x5a\xd9\x92\x0d\xbb\x75\x54\x55\x5b\x9d\x93\x6a\x36\x93\x56\x75\xfd\x7b\x7e\xdd\x6d\x6e\xae\x3a\x76\x7d\x49\xd7\x78\x5d\x6d\xa5\xb3\xa7\xe8\x45\x2f\xe7\xe5\xa2\xba\x55\xab\xb1\x50\x66\x71\xec\x33\xe5\x8b\x25\x59\xe1\x88\x83\x5f\x10\x9c\xe2\xfd\x17\x3c\x7a\x2c\xce\xaf\xc5\x16\x1e\xd3\xfe\x95\xed\xcd\x62\x83\x99\x6a\xb8\x28\x30\x0b\xda\x5c\xe1\x88\xf7\x5e\xac\x71\x8a\x6b\xd7\x5f\x47\x6d\x82\x8f\x15\x8b\x9a\x3d\x3a\xc5\x97\x75\xaf\x6e\x32\xf1\x2b\x12\x17\xe4\x43\xc3\x76\x2c\x8e\x4e\x87\x49\xb4\x54\x17\x08\x5f\x80\x5e\xe6\xba\xea\x21\x7f\x17\xbe\x74\xd6\xbf\xdf\x9b\xd6\xec\x1a\xe1\xa6\xba\x94\xc5\xae\xaa\xa6\xaa\xaa\x35\x64\xe9\x50\xd4\xd7\x60\x8e\x76\x3b\xf9\xf7\x1a\x5f\x6b\x5a\x29\x69\x2c\x4c\x55\x55\xd5\x9c\xd1\x40\x94\x5a\xd0\x40\x44\x41\x06\x9c\xd9\x8e\x81\x22\x2c\x69\xf9\xa3\x25\x82\xe6\x2e\x44\xd0\x7c\x45\x22\x58\x43\xc3\xd7\x3f\x87\x12\xae\xd3\x84\x70\x99\xa0\x02\xb3\x73\x2e\x83\x9d\x73\x99\xdc\x39\x2e\xc5\x9c\x24\x28\xe6\xca\x23\x98\xab\xd9\x4c\x48\x99\xd7\x01\xd9\x34\x98\xe3\x8f\xee\xfc\x9b\x1f\x6b\x7c\x2d\x7e\x7c\x0c\x85\xde\xd1\xb3\x30\xa1\xa1\x25\xfa\x64\xc5\xac\x22\x73\x35\xb3\xe6\x7c\x93\xa7\xaf\x72\x56\x91\x98\xa6\x76\x5c\x6a\xf8\xf2\x2b\x6f\xae\x1c\xa5\x65\xe9\x57\xc5\x56\xc8\xcf\xfd\xa2\x5b\xa8\x5a\xdc\x4e\xe2\x83\x9f\x4b\x9d\xf0\x07\x08\x86\xf2\xb0\x55\xdd\x7e\x94\x7e\x13\x95\xa0\xd2\x50\xad\xfb\xca\x51\xeb\xea\x7b\x50\xe3\xd6\x52\x24\x0e\xcd\xee\x03\x29\x0b\x3f\x10\xbc\x10\x67\xb4\xf2\xd1\x97\x9a\x59\xdc\x57\x12\xfe\x1f\x5c\xdb\x85\xcc\x02\x12\xda\x56\x42\x05\x7d\x27\x23\x88\x94\xe3\xf7\xff\xd0\xe5\xa6\xdd\xc5\xf4\xd7\xc5\x31\x3b\x2e\x7e\x5d\xd8\x0b\xa2\xaa\xaa\x1e\x45\x1a\x7d\xe5\x44\x67\xda\x98\xca\x51\x93\x66\xba\x6d\x55\x46\x19\x0c\x73\x37\xfd\x54\xf7\xd3\x8f\x84\xdd\x4c\x37\xf4\x03\xd9\xdc\x4c\xeb\xe9\x15\xed\x79\xfd\x81\x98\x84\x33\x65\x5f\xfd\xb9\xec\xab\x91\xb4\xbc\x3d\xde\x22\xfc\xab\xf2\x8f\x98\x23\x14\x62\x11\x99\x9b\xf8\x25\x29\xdf\x80\x97\x20\x66\x08\xcb\x21\xc3\x49\x59\xe8\x3e\xda\x0c\x37\x5c\xe6\x28\x2d\x29\x1a\x54\x19\x31\x2d\x4f\xa5\xca\x7a\xaa\x04\x65\x09\xa2\xc4\x1c\xa5\xf9\xdb\xc4\xe2\xf8\xd3\x2e\x96\xe1\x9a\x90\x0f\x8f\x36\x1b\xb9\x0a\xf5\xfc\x3c\xc8\x6a\x43\xc5\x32\xc8\xc5\x11\xa5\x84\xf4\xd9\xe2\x5e\x5c\x7a\xb9\xb5\x79\xb4\xd9\xc8\xbe\x74\x7a\xc2\xb6\xd5\x9f\xcb\xed\xd8\x84\x6d\x85\x70\x7e\xc7\x09\xeb\xbc\x09\x7b\xb4\xd9\xa4\xe6\x0b\xf3\xf9\x79\x43\x1b\x40\xfa\x24\x6a\x94\xf5\x9e\x49\xd4\x63\xf8\xd5\xad\x39\xfe\x86\xc2\x99\xd6\xd7\x2e\xa2\xab\xf2\x30\x20\xbb\x9d\x21\x3f\xb2\xdb\x15\xd2\xa9\x4c\xbc\x5c\xc4\x5e\xfc\x67\xe2\xae\x3c\x26\x70\x6b\xfd\xf5\x5f\xd2\x9a\xf0\xc3\xe8\xa8\xe5\x88\xa3\x2c\x8e\xdf\x24\xb3\x38\x7e\xe3\x66\x71\xfc\xc6\xc9\xe2\xd8\x2b\x0a\x4e\xa0\xa2\x82\xd4\x6b\x14\xeb\x32\x42\x8d\xf8\xbe\xc3\x1a\x3d\xf0\xe6\xda\x85\x4e\x05\xd0\x74\xfe\x73\x72\x19\xa6\x44\x35\xdb\xd3\x3d\x08\x0c\xa6\xe0\x59\xf0\x7b\x51\x86\x63\x8e\x86\x3b\x3f\x17\x87\x98\x4d\x56\x85\x83\x2f\xd0\x80\xff\x7a\xa7\xe4\x4b\xa2\x84\xb1\xbe\xc2\x3c\xc5\x6d\xc2\x94\x42\x55\xc8\x31\x93\x7e\xaf\xd1\x97\xa1\xd0\x2b\xd6\x7d\xbe\x99\x93\xcf\x9c\xb4\x8d\x42\x40\x80\xe0\x52\xd2\xe0\x5b\x71\xf1\x2e\xa2\x58\x37\x80\xf8\xd7\x91\x86\x42\xa6\xb3\x99\x8b\xb4\x2f\x3f\x2f\x0b\x95\x82\x5b\xa1\x0b\xab\x5f\xbb\x9d\x23\x50\x1b\x10\x56\xef\x17\xec\x19\xf5\x44\x23\x04\x9b\xa0\x0c\x29\xb0\xdb\x3f\x65\x7d\x6a\x2e\xb7\xaa\xb4\x8b\x51\x3c\x60\x46\xae\x37\xf5\x9a\x8c\x1a\x9c\xdf\x5e\x92\x29\x23\xfd\x76\xc3\xc5\x01\x54\x4f\x7b\xc2\x3e\x12\x36\xfd\xdb\x56\x5c\x44\xe5\x45\xc7\xa6\xf5\x66\x33\x8d\xbd\x67\xa7\x60\x70\x42\x53\xda\x4f\xe9\xd5\xd5\x16\x36\xf1\x7c\xfa\xb6\x9b\x5e\x75\x0d\xbd\xb8\x99\xaa\x51\xf7\x78\xba\xed\xc9\xd4\x20\xac\x17\x68\x90\xea\x63\x0d\x38\x01\x40\xf1\x4d\x59\x98\xaa\x0b\x3c\xe6\x1e\x2a\x4a\x78\x61\x47\x39\xbf\x53\xa5\x10\x9a\x33\x52\x37\x2f\xdb\xcd\x4d\x89\xb0\x44\x13\x7d\xc4\x1f\xab\x0c\xe9\x31\xf3\x14\xc6\xf0\xeb\x85\x44\x73\xfd\xad\x65\x5b\xa6\xa0\xae\x73\x62\x01\x06\x2c\x23\x36\xd2\xda\x1d\xc1\x26\xc4\x10\x01\x7a\x95\x8b\x80\x8b\x0a\xd6\x73\x62\x69\xcb\xf9\x06\xeb\xac\x00\xda\xe8\x2e\xdb\x2f\x33\x48\x80\x49\x22\xc1\x24\x05\x2b\xb5\xdb\x85\x8f\x49\x23\x9f\xc6\x7d\x38\x45\x83\x8f\x5d\x19\xb5\xc3\x31\x1f\xf0\x79\x3c\x39\xe9\x34\x4c\x70\xd5\x7b\x6b\x89\x6f\x65\x78\xdd\xe2\xe8\x64\x40\x03\x86\x0b\xd6\x0f\xce\x5b\xe4\xe3\x4b\xdc\x45\x14\x1f\xca\x3b\x46\x82\x16\x18\xad\xec\x17\xd4\x25\x3f\x75\x6b\xeb\xeb\x8f\x99\xb5\xd7\xc0\x93\x4e\x2c\x8f\x8b\x07\xea\x8c\x94\xa5\x58\x95\x5a\xcf\x88\xe6\x69\xc5\xb7\xe2\x9e\xc8\x83\x4d\xba\x7c\x46\xd4\xaa\x2a\xe4\x3c\xb7\xfc\x4b\xad\xb5\x7f\xb7\x0a\x63\x74\x01\x49\x78\xce\x1b\xda\xf7\xdd\x9a\xd6\x9c\x28\x84\x76\x95\x15\x20\x43\xec\x5a\x39\x54\x3a\x33\x96\x8f\x52\xe6\x81\xb7\xf3\x84\xcd\x66\xcc\x98\x30\x41\x51\x75\xbe\x6d\x75\xd6\x38\xd1\x01\x15\xef\x17\x1d\xd0\x57\x2a\x0e\xd0\x96\x76\x46\xa9\xa3\x01\x3f\xd1\x8d\x06\x13\x8b\x4f\xf8\x64\x3b\xe6\xce\xca\x4d\x43\xe9\xc0\x10\x07\xa4\x82\x5d\x78\x10\xfb\x5a\x3b\x36\x9d\x98\xeb\x30\x7f\xb5\x0c\x38\x60\x8d\x17\x09\x47\x3a\x71\xa6\xff\xa0\xf0\xac\xec\xf4\x0b\xb6\xa1\x40\x10\xa6\xe8\xdd\xc2\x89\x7d\x98\xa7\xf5\x6c\x72\x97\x30\x0d\xe5\x80\x86\x01\xe1\x27\xa4\xfa\x9e\xe8\x6b\xf5\x67\x5d\xa4\xd2\x22\xf0\x4c\x7d\x5c\x38\xe3\x0a\xde\xa0\xf4\xed\x7a\x74\xf2\x65\x97\xe0\x7a\x43\x49\xcb\xef\xf5\xb4\x21\x53\xd9\xd2\xb4\x04\xac\x88\xf0\x16\x0c\xee\xbf\x02\x99\x83\xee\x19\x7c\xb6\xc8\x06\xa7\xe1\xe8\xc8\xcd\xbe\x97\x67\x6f\xf8\x5a\x91\x7a\xa1\xc3\x95\x65\x83\xce\xfa\xdb\x53\x25\xfc\x34\x9c\x3c\x73\x75\xa9\x4e\xcb\xf2\xdd\x3b\xc9\x0b\xc4\xcb\x10\x0d\x8a\x6d\xdb\x79\xd7\xae\x5d\xea\xf3\xa6\x41\x10\x86\x23\xba\x3f\x77\x32\x62\x26\x33\x58\x68\xd9\x43\xc6\xc0\x01\x9a\x05\x11\xd2\x86\x09\xfb\x11\x6f\x9f\xed\x27\xb3\x04\x37\xe6\x1f\x4a\x7a\x5a\x1f\xd9\xb8\x8b\xbd\x94\x09\xac\x51\x65\xff\x74\x19\xb1\x0d\x6d\x3f\x68\xf3\xb6\xf8\x53\xbe\xfb\x1a\x9c\xd8\x1d\xc9\x2f\x3e\x97\x43\x22\x80\x1b\x57\xdc\x22\xd1\x1b\x68\xd1\x5e\x09\x64\x7e\x0e\x4f\xa2\x70\x5b\xac\xce\xd3\xf3\x30\x14\xbd\x5f\x24\x3c\x6f\x83\xdb\xa0\x27\xdc\x5e\x9e\x66\xcb\xfb\xe1\xc5\x72\x17\x4b\x75\x9b\xe6\x38\x16\x47\xa7\x58\x1c\x6a\x8b\xe7\x42\xd4\x13\x7f\x21\x0c\x53\x2d\x1f\xc0\x9f\x68\x40\xf8\x47\x90\xe8\x00\x00\x28\x45\xa3\x85\x82\x13\x29\x70\xd1\xd0\x46\x34\x54\xc0\xd9\xf5\xf7\x7d\x86\x33\x65\x37\x73\x22\x86\x3c\x5c\x54\x27\xe9\x47\x9c\x08\xe4\x5c\x6e\x24\xd2\x78\xc1\xed\x79\xab\xdb\x06\x82\x9e\x0f\x2a\xaa\x1c\x3f\x46\x4a\x28\x19\xf1\x95\x72\x26\xf0\xfb\x90\xf6\xbf\x0a\xa2\xe9\x13\x41\xf3\x41\xa0\x76\x0e\x9a\x0b\xea\xf9\x53\x1d\x65\x9e\xb8\x63\x3d\xe9\x62\x49\x25\xa8\x21\x53\xd0\x74\x12\x33\x41\xaf\x23\xcc\x80\x67\x9b\x6d\x7f\x09\xfc\xf1\x78\x91\xea\xe8\xc4\xf3\xd1\x56\xa5\x01\x59\xa7\x64\xe0\xb1\xb7\xe4\xab\xdd\x6e\xb9\x32\x7a\x76\x8d\x96\x24\x48\xcf\x42\x1b\xd7\xd0\xd9\x5e\x41\x1b\x73\xeb\xfe\x15\x39\x0d\xc0\xd3\x9c\x07\xb6\x6e\x7f\xef\xfa\x4f\x4c\x60\x69\x70\xae\x3a\xb0\x1b\xe2\x74\xc5\x81\x53\x81\x83\xb3\x01\x4e\x05\xdd\xfe\x19\x3a\xc5\x5d\x36\x17\x0b\xa0\x98\x99\x00\x4e\x0d\x0a\x94\xdc\x12\x4b\xb6\x32\x9e\x0e\xb5\x1c\x6e\xaa\x98\x51\xe0\x9e\x3c\xe8\x1f\x1a\x67\x96\xfe\xf8\x18\xc1\x27\xee\x05\xe4\x72\x81\xf5\xb2\x5f\x81\xda\x48\x66\x04\xae\xd2\x7b\x4d\x5c\x37\x5b\xe5\xd1\x23\x6b\xfa\xde\x2f\x51\x6e\x41\xa9\xe4\xc0\xa4\xfd\x0d\xd0\x6d\x52\x60\x16\xc1\xa7\x69\x2c\x59\xff\xa1\xd5\xbf\x2d\x57\xb8\x15\xff\x1b\x87\x41\xc1\x75\x35\x36\xf7\x80\x01\xe6\x33\xd9\xf5\x6e\xd7\xd9\x54\x35\xbb\x1d\xc4\x09\x97\x04\xed\x76\x25\xd3\xeb\x84\x21\xce\x1c\xfc\xb7\x21\xc5\x9d\xf3\xdc\xb0\xe7\x68\x60\xce\x24\x90\x79\x42\x3e\x2b\x19\x9a\xb4\x7e\xa1\x94\xe8\x55\xb6\x68\x48\xb8\x2c\x66\x16\x72\x04\x45\xc6\x05\xe5\x89\xb8\x1d\x6c\x90\xd9\x70\x5d\x9d\x3c\xa8\x1f\x32\x83\x51\xa6\xa7\xb4\xaf\x18\x20\x57\x5e\x94\x47\x62\x7b\xf7\xa3\x44\xdd\x96\x1e\x24\x00\x02\x17\x26\x5f\x1b\xa5\xa7\x16\x89\xfb\x8f\xb6\x5b\x32\x51\x30\x6e\xbd\x98\x49\xbf\xa4\x9c\x6f\xe9\xa3\x13\xbe\x33\x73\x6e\xdc\x11\x7a\x34\xd0\xbd\xb3\x4f\x11\xee\x0e\x98\xfd\x2e\x8a\xc9\xbf\x69\xd7\xe3\xa4\xab\x34\xc4\x55\x95\x08\xcf\x57\x87\x85\x46\x64\xd5\x36\xa8\x14\xc6\x07\x6c\x65\x00\x1d\xf5\x1c\x21\xb4\x46\xb4\xaa\xfc\x15\xd5\xcf\x65\xc8\xf5\x6e\x77\x44\xed\xe2\x77\x6a\x3f\x7f\xa4\x3d\x7d\xb7\x09\x86\xf8\x2d\xa4\xca\x11\x2d\x41\x0e\x7e\x79\x72\x74\xee\xc9\x61\x80\x4b\xfb\x15\xde\x54\xdb\x60\xcb\x00\x35\x6c\xd4\x62\xce\x66\xe5\x46\xad\x16\x56\x89\xf9\xb7\x08\x0d\xe9\x25\xa8\xd3\x07\x83\x24\xea\x31\x0f\x8b\x91\xe9\x9a\xbb\x41\x38\xb9\xd3\x8e\x48\x1f\xbc\x30\xb3\x83\xb5\x4b\x64\xa3\x3c\xa2\x13\x91\xac\x26\xdc\x03\x00\xc4\x91\x26\xc8\x47\x41\xf6\x2b\x08\x41\xaf\xf7\xb5\x25\xae\x08\xa4\x78\xf2\x98\x10\x01\x5c\xc8\x66\xb1\x64\x07\x2c\x3b\x41\x13\xd5\x9e\xbc\x1e\x83\x69\xca\x71\x5d\x32\x50\x2c\x8d\x38\x30\xd6\x9e\x37\xd8\x00\x89\x22\xbb\xaa\x04\xe9\xa8\x24\xac\x4e\xfe\x93\x07\xad\x3d\xf4\x0d\x92\x30\x05\x24\x61\x49\x90\x74\xf4\x78\x52\x67\x39\x45\x0e\x14\x80\x9f\xc0\x25\x79\xb3\xe6\x63\xf5\x92\x37\x36\xc0\x77\x8e\xbe\xaf\x96\xa1\x43\x7c\xb4\x0a\xc9\xc3\xe5\x7b\x62\x54\x52\x57\x8e\xeb\x89\x92\x24\x16\x5a\x7e\xe3\xc0\x79\xe1\x28\x5f\x95\x2b\x45\x28\x91\x19\x5e\x5b\xa5\xa5\xef\x90\xc8\xd1\x6c\xf6\x23\x44\x02\x21\xcc\x52\xfd\x7d\x16\x0f\x2f\xb3\x7f\x9f\xd8\x9e\x83\x00\xb5\x60\x78\x6c\x04\x89\xce\xbb\x1d\xc6\xfe\x3d\xb6\xe0\x81\xda\xd5\xa8\xad\xe2\xfe\x95\xad\x44\x1c\x6e\x53\xe3\x79\x94\x97\x0b\x12\xde\xb9\x2e\x5e\x6a\x7a\x02\x19\x3a\xfb\x91\x94\x0c\xd3\xea\x59\x7a\xe5\xe4\x5c\xf0\x68\xfc\x6c\xdf\x04\xec\x17\x08\xdb\x50\x20\x6c\x8d\x40\x88\x16\x77\xee\xd0\x9e\xfe\x0c\x87\x48\x56\x7a\xf3\x61\x1a\x8a\x44\xd9\xd5\x4a\x47\x88\xe4\x18\x60\x6e\xbd\x7a\xa2\x7b\x20\xe9\x39\x99\x54\x8d\x8e\xcb\x50\x98\x55\xdf\x2a\xa0\x8c\x7c\x37\x30\x40\x09\xea\x72\xa3\x93\x22\x4e\x6e\xb8\xba\x67\xb3\xa3\xc0\x3d\x30\x3a\x7c\xf9\x6a\x42\x67\x33\x22\xa3\xa6\xbc\xe8\xd9\x44\xd1\xe0\x8e\x75\x14\xbd\x69\x29\x6a\x12\x73\x2d\xa9\x01\xa6\x75\xd7\x11\xdb\xee\x9e\xf2\x3a\xd4\xc2\x3b\xc5\x25\x50\x69\xc5\x74\xca\x23\x89\x54\x6a\x8e\xe5\x92\x64\x0e\x4f\xbe\xb2\x3d\xf8\x8e\xa0\x01\xe1\xb8\xdf\xe1\x6c\x8c\xf6\x99\x24\x67\x2f\x91\x1e\x63\x94\xb4\x9d\x2e\x25\x74\x1e\x27\x87\x65\xfa\xf0\x95\x27\x27\xf8\x40\x89\xd9\x59\x5a\x14\x7a\x06\x7d\xa7\xb2\xd8\xda\xe1\x98\x57\xdf\x7a\x76\x7e\x62\x82\x76\x4c\xfa\x35\x1d\x67\x5d\x12\x37\xba\x1a\xd2\x9e\x99\x4a\xfe\x46\x46\x92\xbb\x40\xa8\xb3\x15\xde\xc8\x92\xaf\x20\x22\xc9\x67\xe4\x21\xc5\x55\x42\xde\x16\x82\x76\x86\x3b\x17\x42\xf1\x24\xac\xc7\xc4\xbc\x9a\xce\xfd\x18\xfb\x6f\xe0\xd6\xc2\xe5\xb2\x87\xad\x8e\x9a\x65\xab\x84\xe4\x21\x04\x58\xf1\xd9\x9f\xb4\xc2\xf0\xfc\x5b\x93\x9e\x09\xff\xa4\x1f\x3e\xfd\xe1\x27\xfc\x07\x92\xb0\x55\xd9\x45\xf8\x1d\xf1\x84\xdb\x6d\x49\xe2\xdc\xeb\x86\x1a\x5d\x2b\x2a\x12\xf2\x9f\xa9\xe6\x57\x24\xbc\x7b\xda\x80\x6d\xc2\x5d\xd5\x3a\x47\x55\x5d\x71\xc7\x28\xdc\x81\x7f\xd7\x92\xad\xa4\x67\x17\xc2\xdb\x4a\x39\xf2\x74\xc6\x8f\x48\xfb\xe1\xd4\x6d\x33\x95\x68\x7a\xd3\xfa\x5d\xb7\xe5\x53\x70\xf0\xd2\xe9\xd6\x44\x67\xc0\xb5\x88\xfa\xbe\x58\xe2\xbf\x3f\xb8\xfe\x57\xd6\x9d\x08\xfe\xa5\xb1\x5b\x91\x9b\xa5\xfd\xdc\xc9\x7e\xf5\xd7\x8e\x7a\xc6\x3c\x29\xce\x04\x48\xe4\x13\x32\x9b\x95\x65\x57\xbd\x24\xe5\x16\x7c\xb7\x08\x6e\xe7\xb4\xc1\x0c\x21\xed\xe8\xd1\xcc\x66\xda\x0d\xc9\xc6\x46\x60\xfd\x72\xd1\x99\x72\x83\x54\x0b\x48\x0c\x2f\x3e\x6f\x68\xf3\xa6\xd6\xa7\x42\x49\x55\x60\x45\x3f\x88\x35\xa1\x4e\xb2\x3a\x99\x49\x94\x4c\x69\xdb\xf3\xba\x5d\x93\xee\x62\xfa\x5c\x6f\xa9\xed\x5c\x85\x33\x4b\x30\xbd\xd2\xf6\x10\x4d\xb8\x55\x04\x2a\x20\xba\x92\xda\x70\x14\xfb\x52\xea\xc3\xa9\xb8\x25\x54\x52\xbc\x01\x6f\x1c\x9a\xf8\xb3\x43\x13\x9e\x93\x7f\x80\xfb\x38\xe2\xf2\xcf\x03\x6c\x2e\x71\x1d\x75\x20\xd7\x51\xb4\xdb\x85\x6c\x8f\xeb\x68\xef\x7d\xb6\x6c\x57\x26\x60\xe7\xa8\x33\xc9\x98\x26\x1f\x55\x46\x37\x6e\x09\x73\x35\xa9\x77\xbb\x32\x7c\xe8\xea\xde\x95\xbf\xb0\xf2\xf6\x7e\x51\x5f\x17\x08\x29\x1f\xf0\x5a\x41\xcf\x5b\x3f\xc3\xd9\xac\xec\x2b\xf9\x89\xeb\x1f\xde\x62\x82\x10\x3e\xea\xfd\xae\x6c\x95\x7f\xf2\x24\x0a\x29\xea\x90\x3d\x29\x36\xd5\xc9\x83\x8d\x95\x86\x8f\x8f\x37\x72\xd4\xeb\x2a\x29\xa9\x74\xcb\xcd\x0a\xda\x97\xce\xcc\xf0\x53\xac\x32\xbd\x28\xd7\xb3\xd9\x3a\x04\x3f\x13\x73\xbb\x35\xf9\xaa\x74\x16\xe7\xa3\xd3\x41\x7a\xa0\xa7\x9b\x70\xeb\x87\xca\xf5\x9d\x3b\x9b\x5d\xa4\x1b\x18\xd4\x9a\x51\xdc\x22\x9d\x59\x2f\x5c\x34\xd0\x65\x8a\x3a\xa9\xe2\x9d\x6a\x90\x5d\x07\x99\x72\xfc\x8f\xfa\x5c\x7b\x43\xd8\x47\xba\xfe\xd9\x86\x4c\x67\x87\x83\xeb\xeb\x9f\x48\xb9\x2c\x1c\xe8\x01\x0f\x4b\xa8\x10\x92\x6e\xf8\x4c\xa7\x70\x2c\x56\x06\xe3\x2d\xd4\xbf\x42\xcd\x7f\x27\xa5\x93\xaf\xd7\xa6\xb8\x6a\x48\xcb\x29\xbf\x79\x51\x5f\x43\xb1\xa7\x41\x10\xb6\xd8\xf3\x0e\x8e\x8b\x93\xe4\xf6\xf1\x9e\xa8\x20\x6f\x5a\x5f\xb9\x11\xe2\x2f\x88\x97\xa4\x2b\xd9\x92\xe4\x54\x1b\x1f\xf3\xc8\xbc\x95\xf9\x8a\x82\x8c\x6c\xe1\xb7\xb9\xd7\xaa\xbd\x67\x84\xaf\x2f\xa1\x3f\xd7\xe5\x6d\x43\x2e\xea\xed\x86\x03\xd6\x50\x6c\xfd\x5e\xae\x86\x90\xe9\xd9\x37\x7a\x8b\xf1\x90\x2d\x39\x68\x60\xdc\x45\x71\xef\xaf\x7d\xd7\xde\xab\xaf\x69\x81\xcd\x87\x8b\xa4\x1e\x58\xe2\x28\x35\xe4\x9a\x91\x75\xcd\xc9\x3d\x58\xd2\x7b\xe6\xa3\x42\xa5\xdf\x77\x46\x1e\xd9\xe1\x2d\xfe\x04\xc0\xc1\xaa\xa1\x2b\x49\x2f\x72\xbd\x52\x7d\xf4\xec\xba\x69\x9b\xa1\x2e\xe9\x4b\x9e\xea\xa9\x4a\x53\x86\xb0\x2b\xd7\x2f\x52\x22\xfd\x4b\x09\x3b\xee\xe4\x1c\xe2\x68\xb7\x4b\x99\x2e\x34\x10\xe4\x0f\x5d\x2b\x84\x39\xda\x20\xd0\x42\xd3\xc6\x84\x92\xb5\x84\xd5\x9c\x3c\x6f\x20\xb0\x17\xc1\x4d\x53\xbd\x56\x65\x3d\xff\xf3\x77\x5b\xba\xf1\x09\x46\x7c\x22\x8f\x2c\x27\x61\x97\x42\x02\xee\x2a\xea\x70\x25\xad\x19\x30\x8d\xb3\xda\x79\xa2\x93\xc1\xf6\x00\xfc\x05\x9a\xc7\xee\xfe\xae\xee\xa1\x39\xc1\x59\x22\xdc\x0d\xd8\x19\x4b\x72\xd2\xe2\xa9\x9e\x58\xb7\x57\xb1\x48\xfa\xeb\x67\x9d\x92\xec\xce\x92\x4f\x55\xc6\x33\xcc\x95\x8b\x1c\x76\xf3\x1a\x7b\x8e\x25\x7e\x56\x64\x70\x70\x73\xd0\x7b\x82\xa2\x01\xb0\x0f\xbe\xa0\x6d\x38\x0e\x97\x66\xc4\x6b\x55\x58\x2a\xfc\xed\x83\x08\x08\x45\x6a\x53\x80\x68\xa8\x09\xe1\x8a\xc0\xc6\x5b\x6c\x73\x28\xb3\x8a\xed\x76\xb7\x43\x80\x66\x6d\xcb\x9d\xfd\x8e\x18\x71\xcf\xf4\x43\xf0\x22\xd2\x63\xea\x8d\xd8\x71\xff\xc3\xbe\x9a\x16\xc7\xed\x71\x21\x93\x7b\xd0\x66\x31\x2d\x8e\x35\xe6\x02\x7c\xff\xed\x8d\x4f\x56\xc0\xd4\xe0\xf3\xcc\x88\x64\x42\x0c\x95\xc0\xd8\xf7\xfa\xd3\x12\x0f\x9c\x5b\x32\xfa\x4c\x0b\x2a\xc1\x0e\xe7\x48\xab\xd3\x5d\x8a\x70\xdc\x1f\x4d\x10\xe5\xbc\xbf\xec\xb6\x1b\x95\xfe\xd7\xa5\x00\x0d\x2a\x91\x68\x75\x01\x6a\x45\x0e\x99\x59\xdf\xb3\x6e\xdb\xaa\xcf\xcf\x1c\x46\x97\xa0\x45\x59\xc6\x45\x76\x3b\xdd\xe2\xb7\xc1\x1b\xbf\x6d\x8d\x62\x9c\x68\x1d\x7b\xad\xe8\x99\x0c\x26\x39\xe1\xbc\x19\x79\x6d\x9f\x26\xbd\xb6\x4f\x5d\xaf\xed\x53\xf0\xda\x36\xdc\xb8\xc2\xf1\x9f\xcd\xbc\x1c\x11\xa5\x79\x81\xb0\x47\x38\x60\x3a\xf3\xd7\x1e\x06\x90\x23\x22\xe2\x39\xd0\x3a\xe4\x44\xc4\x31\xa4\x06\x1a\x57\x9a\xde\x46\xc4\xda\xee\xf2\x0b\x49\x94\x2f\x14\xa0\x8a\x9c\x09\xb1\x5f\xfe\x50\xe2\xda\xc2\x9b\x6a\xb9\x09\xbf\xbd\x79\xde\x84\x0e\x1c\x56\x98\x4c\xe5\x67\x30\x7b\x33\xb2\x4f\x32\x93\x9a\xc1\xd9\x67\x2d\xe6\x4b\x6a\xf5\x1e\x9b\xd2\x11\x23\x6b\x88\x93\x90\xf2\x92\x52\xc3\x39\x9e\x8c\x76\x4a\xa1\x93\x52\x1e\x6b\xad\x8c\x06\xbe\xde\xf8\xfc\x42\x8c\x7f\xe4\xfa\x71\x35\x5b\xf1\x2e\x62\x96\xcb\x8c\xc4\x00\x6c\xb3\x35\x87\x3b\x12\x24\x4d\xea\xd4\xac\x43\x57\x34\xdd\x43\x0d\xf5\x58\xf4\x8a\xa2\x13\x19\x5b\xd4\x1f\x17\xbf\xb6\x24\xf2\x6b\x18\xe7\xaf\x8b\xaf\x12\xd6\x62\xa4\x19\x1b\xd6\x22\x38\x35\xc9\x35\xcb\x98\x16\x9d\x11\x3a\x0c\x6b\xe9\x90\x2f\x07\x4a\xf9\x8c\x9a\xac\x95\x25\xc2\xd4\xd2\xa5\xb8\x00\xfd\x7b\x01\x93\x21\x1b\xfc\xa2\x06\x5d\xa0\x41\x90\x08\x5c\x52\x52\x24\x22\x00\xa9\x00\xb7\x84\x4f\xe3\x2f\xea\xf6\x66\x91\xd6\xbf\x59\x3a\x25\x86\x4e\x13\x90\xdf\xe0\x5a\x96\xdc\x3d\x52\xdd\x22\x47\xff\x07\xe5\x83\x1b\x75\x20\x3e\xd8\xa3\x2d\x86\x1c\x95\x9b\xf7\xc2\x1c\xed\xb4\x01\x05\x8d\xa5\x1c\xea\x2e\x2c\x00\xe1\x96\x05\x34\x47\xdb\xf7\x92\xe0\x7f\xed\x1e\x1e\x0c\xe1\xae\xba\x0d\x52\x6a\x60\x45\x08\x6c\x41\xb1\x8a\x66\x5c\xf0\x01\x0b\xc2\x55\x8e\xbd\xd6\xbd\xcb\x49\x65\x5a\xd6\x08\x9f\x54\x01\x26\x0d\xb4\x3d\xef\xe9\xdf\x49\xc6\xa1\xe5\x02\x94\xc9\x6d\x23\x78\x48\xab\xa2\x03\xef\x95\x47\x9b\xcd\x2b\xa7\x16\x12\x8a\x04\xb2\x6e\xb0\xf7\x22\xe3\x5c\x50\x0f\x38\xfd\x71\x24\x7e\xed\x4b\x52\x5d\x26\x1a\xd3\x5a\x01\xc7\xf3\xc6\x6d\xe5\x59\xc7\xde\x02\xb6\x44\x2c\xbf\xc8\xef\x95\xce\x0d\x4e\x9a\xcc\xc7\xd9\xe3\x93\x4b\x1c\x00\xe6\x1e\x38\x60\xf7\x3e\x3a\x6a\x4d\x84\xe0\x6c\xd6\xce\xd7\x5d\xbd\x21\xfd\x9a\x3c\x83\xcd\xf8\xb7\x2d\xe9\x79\x8f\x3b\xab\x56\xae\x1d\x0a\x87\xa3\x27\x25\xa7\x6c\xab\x93\x07\xdb\x87\xdd\x83\xad\xb6\x1a\x6e\x2a\x48\xc3\xb9\xae\x36\xbe\x2f\xd5\xa4\x5e\x6e\x57\xd5\x1a\xf7\xcb\xf5\x9c\x36\xab\x6a\x33\xe8\x2e\x5f\x54\x27\x0f\x2e\x1e\x76\x0f\x2e\x44\x15\xf5\xf2\x62\x95\xca\xac\x2e\x76\x3a\xbc\x0b\xf2\x8d\x5b\x95\xcd\xb5\xbd\xa6\xd9\xdc\x3d\xa0\xcb\xc0\xab\x0b\x13\x1d\x7c\x8b\x26\xe6\x34\x63\xe6\x58\x73\x55\x83\x97\xe1\xe4\xa6\xa6\x20\x93\x2d\x4c\xa3\xdd\xc8\x6c\xac\xfd\xb2\x13\xc3\x86\x04\xdc\xf2\xcf\xaa\xc3\x35\xaa\xe3\xf6\x3b\x64\x66\x66\x2b\xc4\xcd\x4d\x75\x82\xd7\x36\xd9\xeb\xe6\xe1\xfa\xc1\x46\x57\x7f\x51\xf1\xe5\x66\x35\x61\xcb\x0b\x51\xe3\x6e\xb7\x95\xf4\x7d\x81\x86\xad\x2a\x3f\x9b\x35\xe5\xd6\x19\x51\x73\x98\xea\x56\x4a\x35\xe0\xb2\xd5\x55\xfd\x92\x42\xdf\x01\xdf\xc1\xe9\xaf\x98\x8a\x92\xef\x76\x8e\x83\xe9\xd3\xcf\xd7\x90\x5b\x01\xae\x13\x2a\x4e\x11\xde\x4d\xdf\x91\xe9\x35\x23\x3d\x69\xb9\xc4\xda\x25\x53\x45\x9a\xd3\x6b\xd6\x7d\xa4\x0d\x69\xf4\x19\x8d\xa7\xef\xb6\x7c\x4a\x39\xc4\xa9\xb6\x1d\x9f\x5e\x88\x13\x7f\x0e\xf1\x55\xf4\xa2\x74\x7c\x30\xae\x7c\xe2\xfc\x58\x9d\x3c\xf8\xf8\xb0\x7b\xf0\xf1\xf8\x18\x5d\x2d\x3f\xae\xaa\x7a\xf9\x71\x15\xc9\xac\xc6\x3b\xed\xa6\x6a\xe7\x82\x71\xbc\x56\xbe\xf5\xcf\x3a\xf6\xcc\xc4\xe7\x8a\xfd\x73\x85\xf0\xfb\xea\x04\xbf\xab\x6e\xf4\xd4\xbc\x7f\xf8\xee\xc1\x7b\x57\xf1\x7e\x5e\xdd\x2c\xdf\xaf\xf0\x27\xf8\x47\xef\x99\xcf\x4e\xb7\x3e\x21\xfc\xd4\xff\xf9\xb2\x3a\x79\xf0\xf2\xe1\xa7\x07\x2f\xf5\x14\xbf\xa9\xce\x97\x2f\x57\x81\xac\x31\x79\xba\x7c\xb9\xaa\xde\xe0\xcf\xf0\xcf\x9c\x36\x62\xe8\x9f\x7e\x7b\x8a\x3c\x31\xf0\x15\x29\x5b\xcc\x30\xc7\x9f\x31\x09\x6f\x5f\x8e\x6e\x2f\xc1\x79\x61\x40\xf3\x75\xcd\x03\x03\x8d\x12\x87\xd0\x80\xca\xa7\xd2\xbd\x61\x4a\x2f\x4a\xc1\x8e\x7f\xd6\xf7\xd8\xed\x75\xd9\x2f\x9f\x2e\x4f\x56\x62\xdd\xd1\x30\x48\xfd\xa9\x1e\xf9\xe3\xea\xe4\xc1\xe3\x87\xdd\x83\xc7\xc7\xc7\xe8\xba\x24\xcb\xc7\x2b\x34\x60\x90\x64\x15\xa0\x7b\x56\x22\xf7\x83\x78\x12\x12\x16\xc3\x1c\xcd\x43\x58\x7c\x7c\x4d\xc8\x87\x3d\xb2\xbe\x57\x73\x20\x8e\x89\x4a\xcf\xc6\x9b\x74\xac\x03\x4a\x64\x3d\x67\x24\x2b\x88\xd2\x66\x12\x3b\x81\x86\x4c\x1e\x0f\x46\x1b\x5c\xfe\x68\xc0\x7e\x37\xc7\xd4\x18\xaf\x89\x3c\xc2\x13\x83\x50\x2e\x8a\xea\x7e\xd3\xf1\xee\x47\x00\x4b\xa5\xad\xd9\x42\x58\x66\xd9\x96\xf6\xad\x09\x09\x26\x68\xc0\x89\x52\xc9\xde\xcb\x6e\xb7\xd9\x6e\x2b\xbd\xab\x65\x87\xdb\xb3\x36\x7d\xf8\x9f\x95\xad\xb6\xb5\xbd\xb9\x69\xd7\x26\x58\x26\xa1\x71\x21\x42\xf4\x5b\xb4\x8b\xd1\x02\xe1\x18\xf2\x19\xa0\x22\x55\xc1\x88\x5e\xd2\xc2\xf7\x24\x5a\xd0\x4c\x44\x02\x06\xde\x81\xbe\x6a\x5e\xd4\xd7\x36\xa3\x4d\xba\x15\x0d\xb1\xe3\xf0\x73\x4a\xba\xd3\xd7\xfb\x57\xe3\x58\x73\x22\x68\x86\x75\x15\xc5\x55\x02\xbe\x8c\x8a\xe5\x10\x85\xc2\x98\x6d\x24\x3c\xd2\x7d\xac\x05\x2a\xb5\xf9\x06\x70\x41\xa7\x13\x94\xf1\xf4\x74\x0c\x73\x41\x15\xd5\xb0\x0b\xae\x18\xfd\xeb\xa9\xbc\xce\xa0\x72\x57\x44\xb2\xe6\xb9\x03\xe1\x12\xe0\x5f\x16\x8b\x4b\x56\x03\x65\xc4\x25\x3d\x14\x05\x71\x67\xa0\x00\x54\x3f\x0b\xc1\x91\x6b\x91\xc9\xea\x0e\x3b\x19\xc4\x2d\x9d\x54\x70\xb7\x07\x0b\x20\x35\x50\x85\xf8\xe5\x0f\xd8\x91\x97\x14\x71\x83\x84\xac\x93\xcc\xfc\x53\xac\xb5\x4d\x0f\x79\xc0\x6a\x9b\xc2\x0a\x57\xc2\xd3\x9a\x08\x89\x47\xd6\xfe\xdf\xb9\xd0\xa6\x8b\x85\xa3\x69\x6b\x6a\x5e\x9f\xd9\x65\x57\x77\xd5\x3e\xd4\x8c\xcc\xe8\xe2\x55\x95\x6e\x4a\x87\xdd\xde\x32\x60\x87\x49\x99\x39\xfe\x70\x84\x0c\x1c\xbd\x4c\x7e\xf9\x43\x28\x0f\x6d\x9a\x96\x01\x51\x5a\xff\xf6\x9b\xb3\x92\x56\x74\xb7\xe3\xa9\x4c\x8d\x7b\x9d\xcf\x24\x52\x67\x5d\xa9\x4a\x0d\xe1\xa0\x45\xf0\x4c\x1b\x49\x53\xe4\x24\x83\xa7\x7c\x48\x90\xba\xfa\x73\x59\x8f\xd1\x4a\x8d\xfb\xac\xee\xa4\xd6\x0e\xe2\x11\x24\x48\xad\x56\x5a\x45\x4f\xe1\xad\x39\x01\x7a\x6b\x3d\x38\xa3\xf3\x38\x5a\xaa\xdc\xe2\x1e\x2d\x68\xf5\xe5\xf3\x84\x45\x0d\x98\xee\x21\x36\x39\x19\x00\xd4\xe2\xd3\x96\x26\xae\xfd\x26\x9b\xbc\xb2\x6c\x1b\x91\x8b\x71\xec\xf2\x88\xa5\xd3\x8b\x67\xf4\x62\x54\xae\x73\x76\xf9\xac\x5a\xac\x38\xd6\x88\xeb\x65\x57\xfd\xb9\xec\xc6\x16\x51\x08\x70\x7b\x70\x5d\xba\x70\x11\xa9\xc1\x75\x71\x1a\x4e\x2b\xc1\xf6\x4f\xb4\xd1\xfa\xfa\xd3\x9d\x77\x06\x21\x67\x24\x66\x75\x91\x3a\xce\x1f\x6d\x42\x35\x70\x6e\xeb\x83\x70\x0d\x78\x33\x92\x4f\x71\x40\x76\xb8\xd1\x8e\xe6\xaa\xfb\x62\xe4\x93\x94\x39\x62\x8c\x29\x26\x68\xae\xd3\x26\xcc\x7b\xda\xae\xc1\x37\x81\x05\x56\x91\xbc\xab\xf9\x09\xc2\x9b\xf2\x2d\xb1\xf3\x4a\x05\x19\x4f\x8c\x73\x47\x70\x3b\xb1\x8c\x3d\x44\x63\x0d\xe0\x0e\x9d\x95\x77\x6d\x4d\x99\x49\x58\x6c\x26\xd9\x94\x8e\x5e\x9d\x23\xb4\x28\xcb\xb8\x54\xde\x52\xe2\xf4\x0a\xcd\x66\xe3\xfd\x8a\x7a\x85\xc3\xc6\x65\xf4\xbe\xf5\xf7\x8f\x59\xdc\xc4\xa9\xe3\x23\x17\x09\x79\x28\x5b\x85\x47\x7c\xd1\x67\x8a\xfa\x12\xe6\x9a\x88\x72\x13\xdd\x88\x23\x08\x80\x93\x95\x3c\x76\x58\x2d\xbd\x28\x4f\xaa\x2a\x22\x61\x14\x79\x41\x68\x0d\x9e\x8d\x1e\x50\xbd\xc9\x11\x2b\x47\x4e\x72\x89\x8b\x20\xb0\x5b\x5d\xa7\x3f\x91\xf9\xd3\x1f\x1e\x7d\xfb\xfd\xd3\xf3\x27\x6f\xce\x9f\x3d\xff\xfe\xed\xd3\xd7\x13\x79\xc5\xc6\x99\x1b\x7f\x93\xe8\x26\xae\xbd\x19\xe9\xce\x5a\x27\xc4\xb8\xac\x31\x47\x8b\x6f\x12\x9f\x41\x4e\x40\x10\x3f\xbb\xb3\xdc\x2c\x66\xfd\xd6\x4b\xc1\xd4\x18\xf8\xf8\x3b\x7e\x28\x28\xad\x6c\xab\x76\xb7\x73\xe8\x8d\x46\x67\xad\x21\x10\xef\x76\xd2\x96\x1c\x08\xad\x87\x93\xbd\x46\x46\x0e\x7e\xae\xfd\xbc\xf3\xa2\x70\xa0\x44\x90\xc6\x01\x2d\xc4\xbf\xf1\x80\x38\x3c\x76\x27\x32\xa4\x32\x34\x21\x52\x53\x9d\xca\x90\x69\x52\xa0\xfe\x89\x6e\x36\x32\x3b\x6f\x99\xf0\x69\x91\xa2\xe5\xad\x06\x34\x5a\xb4\x56\xfb\xce\x87\x74\xfc\xb1\xd5\x90\xbf\xb2\xf5\x20\xa5\xf7\x76\x1e\xe5\xa0\x82\xdd\xd6\x7b\xf0\x53\x45\x93\x94\xaf\x8d\x9b\x91\x07\x10\x01\xb5\x9b\xea\x43\x26\x5d\x55\x75\xfc\x27\x5f\x61\x5a\xb5\x06\x10\x0a\xbc\x2a\xf5\x28\xc0\x6c\x10\x78\x5d\xf6\xd1\x79\x5f\x3b\x12\x84\x01\x84\x9f\x14\xac\xeb\xb8\x72\x24\x68\xe6\x7d\xfd\x91\x34\x85\xb8\x4b\xe6\xeb\x2d\x63\xa4\xe5\x6f\x78\xcd\xc9\xbc\x17\xff\x07\x6c\x9f\x72\x5b\xd5\x73\xda\xff\x40\x3e\x95\xe8\xac\x70\x5d\x49\x8a\x45\x0d\xda\x7d\xa8\x49\xbc\x74\xbd\x13\x8a\x45\xe1\xe6\x4b\x2e\xb0\x51\x86\x96\xbf\x12\xdc\x3f\x4c\xfa\x16\xbc\x31\x17\xf6\x95\xd8\xcf\x9e\xd7\x63\xf2\x52\xd4\x40\xf6\x72\xaf\x29\x77\x49\xa6\x51\x0a\x55\xb2\xf8\xc6\x0d\x21\xea\x09\xdf\x5e\x7b\x8e\x4d\xcf\x3a\xe6\x68\x40\x70\x9c\x10\xbb\x64\x86\xfe\xad\x7f\x64\xd0\x9d\x74\x1e\x61\x38\x12\x7d\xe7\xc9\x91\xef\xa4\x2e\x98\x1b\xc8\x87\x8c\x76\x28\x69\x96\x7a\x4d\x4a\xae\x7d\xfc\x14\xfa\x1c\x93\x08\x07\x80\x8d\xab\x14\x26\xe4\x33\xed\xc5\x05\xf5\x3c\xe5\xa3\x41\xf3\xa7\xac\x2b\x81\xc2\x75\x47\x31\x11\x33\x05\x09\xdb\x4b\x2a\xd6\x2a\xfe\x2a\x7f\x15\xb9\x07\xbe\xce\x68\x24\x51\x7f\x00\x4b\x28\x79\x21\x29\x69\x8f\xe5\xbd\x4c\xb8\xd4\xe6\xe0\xb6\x52\x97\xbf\x47\xc6\xca\xf2\xe9\x61\x7e\x6e\x65\xae\x72\xc1\x3e\x67\x4f\xe8\x30\x6d\x3d\xcb\x9f\xc9\x41\x2c\x7d\x29\xc3\x94\x8c\xc7\xf3\x0b\xfa\x99\xb6\x29\xe7\x08\xed\x90\x67\xc8\x19\xbc\x50\x2e\xa4\xa3\xdf\xb3\xce\x49\x6f\x64\x9f\x95\xc5\x15\x54\x57\x1c\x8b\x8b\x49\xe2\xb8\xaf\x21\x3f\x2b\xa8\x9c\x01\xb8\x67\x03\x28\xca\xca\x61\xd0\xfb\x40\x30\x74\x5a\x06\x78\xa5\xbd\x28\x19\x9a\xd0\x39\x23\xdd\x35\x69\x21\xd3\x6b\x79\x7b\x7e\x4e\x7b\xd9\xeb\xa3\x13\x7c\x7e\x2e\x2b\x60\x03\xc2\xdc\x04\xc9\x28\x74\x30\x51\x2d\xb6\x71\x6c\x30\x43\xae\xbb\xa2\x72\x40\xc3\x7a\x2e\x0e\x61\x3a\x1c\xfc\x30\xe4\x4c\x63\xe2\xd3\xd8\x3d\xd2\x97\x97\xb9\x9c\x9a\x33\xf5\xef\x82\x9b\xea\x4c\xe9\x83\x6a\x05\x67\x42\x15\xff\x78\x24\x8d\xca\x3a\xab\x56\xdc\x38\xda\xed\x4a\xbf\x12\x45\x02\x10\xb2\x7d\xc4\x5d\x38\x52\xe9\xb9\x2f\x4d\x41\x3f\x00\x4e\x1b\xd9\x80\x2d\x07\xec\x38\xd3\x8b\x8e\x4d\x7f\x5d\x1c\x4b\x95\x92\x32\x4e\x6b\xaa\x71\x68\xc2\x8e\x6f\xe2\xa8\x2e\x2a\xe7\xef\xdd\x8e\xe4\x7c\x49\xc3\x50\xca\xfd\xf3\xf3\x52\x66\xfd\xd2\x1d\xb1\x3b\xcb\xe9\x11\xf3\x49\x56\x91\x0a\x47\x0b\x16\x93\xa7\x79\x39\x60\x71\x69\x67\x57\x44\xc5\x54\xe5\x62\x04\xcf\x78\x1e\x14\xc9\x0b\x66\x58\xe8\x3c\xa0\x12\x91\x33\x00\x8c\x3b\x1f\xe9\x83\x4f\xa6\x7b\xc2\x04\x64\x2c\x8b\xf4\xea\x8f\x93\x85\xcb\xad\x28\x38\x01\x69\x0e\x65\xa1\x39\x94\x27\x62\x96\x4b\x06\xd1\x49\xd9\x84\x22\xb7\xb4\xf2\xb2\x88\x68\x44\x74\xa3\xc6\xa6\xd2\xa4\x27\x63\x9f\x64\x3b\xdd\xb2\x5d\x55\xc9\xc6\x54\xde\x11\x27\x1e\xaa\x1b\x02\x9c\x53\xa9\x5f\x53\xd3\x98\xad\x42\xa2\x85\x5d\xd6\xfd\x8b\xfc\x56\x0e\xa9\x89\x48\x32\x73\x8f\xbe\xb3\xa3\x23\x9e\x24\x2b\x82\x16\xe2\x55\x8e\xb0\x48\x12\xa0\x2e\x30\x51\x81\xf6\xd2\x0b\x7f\x06\x93\x41\x68\x93\xca\x33\x11\x5c\xdc\x8c\x5c\x22\xef\x64\xca\x84\xb7\xba\x16\xe2\xf9\x3c\xc8\x34\xfc\x8d\x75\xf7\x48\xb8\x5c\x1b\xab\x89\x71\xd8\x73\x28\xd1\xba\x80\xe4\xfc\xd9\x2d\xaf\x9b\xe8\x2a\x4a\x0e\xc0\xe5\x78\xa3\xec\x47\x89\x1e\x62\xae\xc9\x3d\x69\x2f\xaf\xbe\x41\xb7\xbc\xe2\x49\xf7\x62\xfc\x67\xc5\x8d\x83\x2d\x9d\x2c\xd9\xf1\xe9\x4a\x48\x12\xba\x8a\xea\x44\x9e\x12\xca\xb8\x33\xc2\x1c\x9a\x3d\x27\xa3\xd6\x6f\xdb\x8a\x2b\xe7\x63\x79\xe3\xa8\xa8\x6f\x2f\x2b\x20\x55\x91\x2f\x6d\x45\x70\xb2\x40\x51\x5f\x5f\x6f\xe8\x1a\xa6\x46\x82\x1d\x48\xd7\x70\xd1\x25\xa5\x6d\xba\x27\x29\xa6\x70\x12\x09\x38\x1d\x96\x83\x6b\xd1\x24\xf9\x74\xc0\x66\xd5\xf6\xaa\xfc\xc2\x7c\x86\x46\xb3\xe3\xa8\xf6\xac\x8a\xc5\xd4\x5b\x52\xa9\x73\x8a\x0d\x7d\x19\xcb\xdd\x08\xef\x68\xdc\x61\x5b\x38\x63\xce\x65\x10\x90\x72\x27\x1d\xb1\x5d\x6b\x75\x53\xdd\x48\xdf\x5f\xdc\x0e\x78\xa4\x9d\xbc\xef\x75\xde\x46\xca\x7d\x57\xec\x8c\x87\x4c\xc9\x02\x2b\x29\xab\x24\x15\xb2\x01\x1f\x30\x41\xfe\x75\x90\xb2\x9c\x4a\x33\x41\xc0\x20\x1e\xa4\xee\x09\x99\x4a\x07\x1c\xd3\x18\x3e\xb3\x57\xe5\x38\x27\x8f\xa5\x2c\x01\xc1\x5f\xa2\x3e\x65\xe1\xb5\x72\x63\xfe\xd2\x8f\xa3\x31\x70\x0b\x20\x4b\x32\x3f\x92\x26\x37\xb5\xd1\xcc\xa1\xee\x26\xec\x28\xdb\x8a\xce\xe5\x51\x6d\xe2\x1c\xe0\xfa\x47\xb1\x8e\xb1\xd5\x98\x68\xca\xf5\x8b\x69\x14\xfb\xa0\x42\x19\xed\xa3\xf6\xe5\x6e\x17\xd7\xef\x6d\xdb\xc3\x1b\xf2\xea\x35\xf0\xf9\x9d\x49\xb4\x52\xc6\xe1\x17\x5e\xb7\x96\xdd\x2a\xd5\x9b\xe2\xb8\x43\x9e\x76\x33\xd7\xfc\xb2\x83\xe1\xa2\x05\x54\xe6\x04\xac\x24\xab\xb5\xaf\x5d\x6c\xcb\x6c\xdd\x6e\x75\xd0\xca\x80\xbd\x33\x65\x1f\x15\x04\xc1\x36\x3f\x8f\x10\x6c\x65\xbf\x18\x2d\x38\x4d\xfc\x12\xe4\xe0\xab\xd9\x83\xb4\x33\x2a\xdc\xe7\x8d\xe9\x42\x8e\x60\xea\x55\xa6\xcb\xa0\x8e\x3b\x88\x66\x6a\x9f\x66\x54\xd3\x45\xae\x62\x53\xe0\x40\xa2\x31\xf5\x29\x9a\x91\x55\xea\x40\xa6\x9c\xec\xef\x07\x24\xa9\x8f\xec\x74\x64\xbf\xf3\x6f\x39\xb2\x0f\x2a\x76\x7f\xe8\x5f\x32\x88\xcd\xa2\x45\x26\x4e\x62\x13\xb3\x9e\x8a\x45\x73\x00\xbf\xc3\xe0\x33\xfb\xca\x28\xc7\x4b\x8b\x06\xe9\x32\x58\xa0\xa9\xc8\xc9\x1c\xa7\x86\x19\x4c\x45\xe7\x59\x5c\xbb\xbd\x42\x09\xcf\x30\x8a\x89\xf8\x46\x8e\xb9\x72\xc3\xfd\x31\xd1\xa6\xe4\xe7\xb3\xaf\xc7\xb8\xc5\xd4\x10\x70\x46\x0f\x0a\xc9\xc9\xa5\x1e\xb8\x6e\xbb\x96\xae\xeb\x4d\x89\x26\x2e\x23\xa8\xaa\xcb\xf3\xf5\xd1\xdc\x25\x39\xe9\xbb\x82\x02\xfe\x98\xaa\x2b\x9c\x92\x1c\xfa\x66\x76\x4e\x22\x16\x3a\x3f\x29\xe7\x0a\x29\xf3\x09\xb9\x20\x8c\x91\xe6\xad\xfc\xd9\x87\xd3\x23\x86\xf7\x9a\xf4\xdd\x96\xad\xc9\x73\xd0\xbd\x5d\x50\x12\x6a\x22\xe9\x45\x79\xe4\xc5\xf4\xf1\x00\xf8\x3c\xa5\x72\x73\xb2\x09\x66\xdb\x09\x23\x56\x52\x0d\xed\x0d\x63\x89\xa0\x96\x18\xc8\xab\x66\x2b\xc7\xcd\x8a\xc6\x7c\x10\x8f\x61\x40\xf8\x3f\x74\xe4\x24\xe4\x2f\xba\xae\xd7\x16\x77\xe6\xa7\xa7\xaf\xdf\x3c\x7f\xf9\xc3\xa2\xc5\x2d\x24\xae\x7a\xf2\xa6\x18\x74\x98\xe3\x86\xbe\x63\x35\xa3\xa4\xd7\x24\x62\x1e\x18\x4d\xd8\xe3\x8e\x91\xef\xe1\xe9\x4d\x59\x40\xa1\xe9\x13\x48\x58\xff\x1f\x64\xae\xaa\x96\x4c\xf2\xef\x75\x17\x40\x1b\x64\x9a\x07\xbe\xf1\xc7\xd7\xdf\x2f\x52\xbe\x1d\xfd\x27\xca\xd7\x97\x65\x8b\x6e\xd7\x75\x4f\xdc\x38\x90\x85\xbb\x46\x5b\xb6\x51\x2e\xb9\xc6\x84\x2f\x78\xba\x89\xf9\xe8\xd1\x66\x93\xfb\x02\xcc\x82\xa6\xb0\x74\x95\x48\x14\xfd\x23\x18\xbd\x00\x01\xc0\x16\xcc\xf7\xe5\x8f\x8e\x3f\x81\xfd\xc8\x24\xb3\xc9\xf4\x45\x39\x9f\xf9\x7d\xd7\x1e\x5c\x99\x6f\xac\xcf\x9a\xff\x99\xf5\x07\xca\x7c\xe8\x3a\x40\xd9\x4f\x7d\xf3\x46\xfc\xe5\x63\xe7\xbd\x33\x6f\x9e\xa5\x23\xf1\xd9\x8f\xce\x7b\xaf\x3d\xdf\x62\x12\x7f\xf8\xc4\x8d\xf7\x54\x1f\xaa\x2b\x78\x11\xcb\x1f\x3f\xbe\xfe\x5e\x5a\xde\xb4\x84\x17\x12\x56\x24\x23\x03\x8a\x65\x18\x54\x7c\xd9\xf5\x5c\x7a\xcc\xa9\x8e\xbc\x62\xe4\x82\x7e\x2e\xad\x7a\x46\x1a\x5e\xc0\x99\xa1\xe6\x3a\xc6\xa2\x24\x08\xcd\x66\x0a\x91\x92\x21\xcc\xcd\x0f\xd2\xae\xbb\x86\xfc\xf8\xfa\xf9\xe3\xee\xea\xba\x6b\x49\x2b\x24\x34\x84\x3b\x51\x60\x2b\xae\x81\x0b\x08\xd7\x6a\xab\x56\x5e\x5b\xc5\xfd\x02\xe1\x23\x3a\x9b\xb5\xb3\x59\x71\xbf\x38\xaa\xaa\x76\xbe\xbe\xac\xd9\x23\x5e\x9e\x40\xbc\x71\x55\xdc\x2f\x8e\x5b\x90\x1c\x43\xe2\x1f\x73\xd7\x35\x93\x04\xde\xde\xd8\xdb\x05\x79\xbb\x85\x9d\x5a\xf3\xcd\x1f\x13\x9e\x5f\x99\x96\xfc\x6f\xee\xd2\x47\xaf\x87\x91\x93\xe8\x61\x9f\xa5\xdc\x4b\x0f\x9d\x94\xb4\xc3\xe2\x21\x5f\x3f\x4e\xc7\x9b\xef\x9f\x57\x77\x9f\xdc\xb9\xd5\x27\xe9\xb0\xe9\x03\x3e\x96\xf4\x9d\xdc\x29\x99\xbd\xd1\x46\x2f\x5a\x7d\xb3\x48\xc5\x10\xd3\x94\xcb\x76\xbb\x92\x55\x05\x40\xfe\xcb\x6e\xdc\xff\xaf\xbf\xdc\xff\xcb\xfd\xfb\x73\x4e\x7a\x0e\xe8\xae\xf7\x2f\x39\xbf\x2e\x7b\x74\xb6\xf0\x5e\x9c\x91\x45\x71\x5f\xe6\x92\x35\xc4\x7f\x56\x14\xc7\xec\x98\x2c\xf8\xb1\xd8\x01\x44\x09\x58\xcb\x95\xa3\xee\xa0\x66\x03\xb6\xe6\x47\x8b\x30\xb5\x5b\x6b\xc0\xce\xae\x8d\x18\x4f\x3d\xe6\x37\x90\xaa\x6a\xbe\xae\xaf\x08\x68\x8e\x5c\xc3\xca\xf5\x66\xcb\xa4\x3e\x89\x01\x48\xf7\x7f\x92\xaa\xf8\x0b\xfb\x4b\x5b\x40\x87\x88\x46\x30\x17\x37\xa1\x12\x0d\x0c\x68\xc7\x7b\xc2\xa5\xff\x42\x9f\xc0\x7c\xb8\x95\x77\x30\x58\x9b\x0b\xdc\x90\x7e\xbd\x28\xc4\x9f\x03\x36\x6f\x5e\x74\x8d\xb8\xe8\x1b\xfd\xda\xfc\x76\xca\x3c\xde\x90\xba\xd5\x05\xe4\x8f\x61\x35\xe0\x86\x70\xb2\x4e\xa6\x6a\x20\x47\x55\xf5\x6a\x36\x7b\x35\x97\x45\x80\x22\xd7\xdd\x66\x7b\xd5\xf6\xb9\x69\xe2\x95\xe9\xad\xe9\xcb\xf3\xa6\x18\x56\x4a\xeb\xe9\x5a\x0c\x3c\xac\xd4\xda\xf8\x33\xa4\x52\x70\x10\x71\xef\x0b\xfa\x39\x3e\xfe\x6d\x3b\x37\x65\xbf\xa7\x57\x94\xfb\x18\x32\x5d\xb8\x4e\xd7\x94\xcb\x35\xf1\x9e\x6f\xdb\x86\xb0\x7e\xdd\x31\x52\x52\x34\x57\xb0\xf7\x65\x71\x5e\xe0\x62\x5a\x20\x34\x51\x08\xd0\x72\x2c\x54\x0e\xa4\x03\x84\x21\xae\xc2\x54\xd6\x7e\x5a\x11\xcd\xcd\x85\x8e\x2f\x0f\xbf\xb1\x96\x8f\xf3\x86\xbc\xdb\xbe\x7f\xdc\xb5\xbc\xa6\x2d\x61\x7f\x20\x37\x8e\xf1\x51\x08\xe9\x57\x10\x67\x73\x5f\x2a\xe9\xcb\xf9\xff\x42\xf7\xd1\x44\xa7\xa7\x9d\xcd\x4a\x5e\xb5\xcb\xd3\x95\x4d\x2f\x66\x35\x2e\x0a\x24\xdf\x38\xd1\x71\xe4\xf4\xf2\x31\x2c\x19\x00\x8a\xf4\x19\x81\x4a\xad\xce\x2d\x6d\x16\xde\xaa\xd0\xa6\x40\x83\x8d\xc0\x24\xf5\xfa\xd2\x38\x9e\x78\x81\xba\x6a\x6d\x78\x76\x6d\xda\x25\x5d\x79\xe8\xb8\x54\x4c\x66\xeb\x74\xf3\x0f\xe4\xe6\x53\x30\xa7\x86\xa6\x56\x26\xe3\xcc\xa3\x72\x29\x7a\xb5\x42\x7b\x7b\x65\xe9\x98\x69\x99\x66\x40\x98\xc5\xc4\xe5\x28\x2d\x65\x41\xb7\x9b\x0c\x85\x8b\x2e\xf7\x69\x62\x3a\x65\x25\xb7\xb0\x4d\x17\x26\x31\x91\xd8\xa8\x08\xdb\x1d\xaa\xdf\x5c\xd6\xfd\x13\xca\xf8\xcd\x23\x87\xf0\x67\xb3\xa3\xe8\x3b\xd8\xa8\x8b\xa3\x91\xaf\x06\x7f\xad\x93\x4a\xaa\xe2\xdd\xa6\x5e\x7f\x28\x26\xae\xf5\xcf\xb4\x72\xc6\xab\xe2\x3d\x23\xa4\x2d\xc6\x3b\x57\x42\x3d\x5b\xc8\xc6\x30\x60\x95\x77\x63\xc4\x21\xc5\x02\x54\xb6\xfe\xea\x61\x7d\x96\xa5\x1a\x5a\x09\x81\x6d\xef\x9a\xb6\x76\x4d\x1d\xf8\x94\x49\x9b\xc8\x3f\xad\xbd\x68\x5d\xb1\xbf\xa4\xf3\x4f\xac\xbe\xd6\x2c\x2b\x42\x83\x12\x6e\xea\xa6\x79\xa9\x13\x8a\x10\x99\x63\x53\x91\x8f\xf3\xb9\x92\x8c\x55\x6a\x25\xaf\xf4\xe0\xa4\x99\x72\x4f\xf2\xc4\x99\x66\xcf\x59\x99\x91\x66\x10\x03\x07\x81\xb2\x7a\x85\x89\x34\x81\xf7\xd5\x25\x26\x73\x70\x43\xab\xfe\x48\x30\x99\x3f\x79\x53\xfd\x87\xf8\xf7\x9d\x66\x43\x92\x60\xb4\xa1\xb5\xa7\x90\x79\xc1\xdc\x0c\x8b\x25\xab\x88\x29\x80\x16\x82\x73\xc5\x6d\x45\x10\x8e\xb2\x31\x42\x06\xc4\xea\x65\xd9\x22\x3d\xd5\xb7\x90\x1a\xad\x85\x4c\xb2\x56\x69\xb1\x38\x3a\x31\x31\xdc\x1a\xd9\xe4\x03\x6d\x9b\x45\x61\x3a\x5b\x28\x71\x52\x31\x51\x53\xf1\xe4\x03\xb9\x91\x3e\xc4\xfe\xbd\x60\x70\x7f\x6e\xbd\x14\x7b\xee\xae\xbe\xac\xfb\x97\x9f\x5a\x93\x80\xb1\x70\xb1\x87\xe2\xb7\xe4\xea\x1d\x69\x1a\xd2\x14\x36\x59\xbc\x8b\x4d\x94\x46\xc0\xf1\xcc\xe0\xbd\xd7\x11\x87\x83\x32\x78\x67\x5c\x9e\xd2\x12\x7d\x69\x36\xe3\xe0\x64\x98\x0a\x1b\xcc\x03\xee\xc8\xe6\x94\x9b\x78\xc9\xd1\x82\xdf\xed\x7b\xdf\xda\xc2\x83\xef\x34\x1e\xcc\x97\x55\xf6\xa5\x33\x37\x48\x2f\x6a\xc8\xce\x0a\x19\x74\x05\xf7\x1d\x10\x6e\x4c\xa2\x30\x97\x04\x13\x4d\xa3\x18\xec\xa3\xb7\x43\x4c\xa1\xa2\xa8\x34\x8e\x6b\x8f\x10\x49\xa1\xc4\x62\x0a\x24\x68\x55\xd2\xa6\xea\x8d\xa6\xcc\xef\xea\x7e\x2a\x7f\x7f\x29\x5d\x7e\xc1\x14\xf5\x69\xea\xca\x1a\xf5\xd2\xf5\x59\xa7\x13\xe5\x05\x8c\xe1\x38\x0b\x82\x38\xb2\x1e\x21\xde\xc5\xef\xb7\x57\xa0\x01\x89\xda\xbc\x0e\xeb\x45\x95\xc0\xbd\xdf\x2a\xf1\x01\xf4\x38\xd5\xef\xc5\x11\xa5\x9d\x57\xab\x4e\xfc\x52\x1c\x2f\x9c\x6a\xd5\x0f\x98\xcc\x95\x67\xa0\x7c\xf0\x1c\x93\xf9\x8f\x6d\xbd\xe5\x97\x1d\xa3\x7f\x27\xea\xe9\x77\x98\xcc\x9f\x75\xec\x1d\x80\x86\xcb\x47\xdf\x62\x32\xff\x41\xa1\x78\xc8\x27\x7f\xc3\x64\xfe\xb8\x6b\x2f\x36\x54\xa1\x39\x56\x3f\x8a\xc6\xe1\x50\x96\xbf\xff\x84\xc9\xfc\x2d\xbd\x22\xdd\x56\x15\x78\x26\xfa\xf3\xae\x63\xea\xe7\xdf\x31\x99\x13\x38\x6d\xbf\xab\xfb\xcb\xb7\x5d\x0e\x6a\xd8\x0a\x14\x5a\x65\xf7\x4a\x86\xa4\x83\xba\xd4\x85\x78\x24\x09\x1e\x36\x91\xf9\xe1\xaa\xfe\x40\x94\xb7\xca\x92\xad\xd0\x48\x66\x93\x42\xcd\xd6\xd4\x5c\x8a\x05\xae\xab\xe2\x7e\x53\xf3\xfa\xbe\xe5\x9d\xef\x43\xe8\x49\x55\x55\x7f\x9d\xcd\x4a\xe7\xab\x27\xdd\x1a\xb8\x52\xfb\x91\x38\x05\x15\x8f\xcb\x29\xdf\x90\x45\x27\x04\x81\x9a\x6e\x16\x82\x53\xc3\x52\x81\xb8\xb8\xbd\xee\x80\x10\x16\xf5\x20\x73\xa6\x01\xae\xbc\x9c\x2b\xe8\xf8\xdb\x4e\x4c\x59\x62\xae\x6e\x87\xb1\xb9\x22\xc9\xeb\x10\x70\x49\x64\xcb\xa2\x88\xfc\x6b\xae\xba\x60\xd9\x68\xff\xb9\x62\x9a\xdf\xa2\x09\x3b\x63\x15\x5b\x7e\xb3\x5a\x00\x38\x6e\x54\xae\x27\x35\x5b\x5f\x96\xaf\xc1\xc4\x5d\xfd\x55\xb9\xc6\x42\x98\xea\x92\x41\x42\x1c\x2c\xfe\x50\x7c\xc5\x5c\xce\xc6\x6e\x47\xe6\x30\x3f\xc8\x0e\xdf\xb8\x0d\xd8\xbc\xf6\x2f\x65\x7e\xca\x97\x9f\x5a\xc2\xaa\x5a\x90\x3b\xf0\xf0\xdf\xd5\xbd\x59\xaf\x97\xec\x75\x90\x04\xbe\x89\xd0\xf7\xf7\x0a\x46\x97\x75\xaf\xb3\xc5\xba\x99\xd6\xb2\xe9\xfb\x9d\xf2\xa2\xe7\xeb\x8e\x80\x5a\xb8\x7a\x2d\xba\x78\x5d\xb3\x9e\xbc\x26\xfd\x75\xd7\xf6\xe4\x3b\x52\x0b\x89\x28\xb1\x92\x29\xbc\x3b\x48\x56\x64\x34\xe2\x13\x07\x47\x18\xe0\x88\x79\xf9\x9f\x44\x2b\xaa\x99\x97\x13\x40\x97\xa4\x15\x5b\xb6\x2b\xdc\x55\x27\xb8\xae\x8e\x4e\x1f\x74\x0f\x75\x7a\x90\x07\xdd\xf1\x31\xa2\x17\xe5\xbf\xff\x6f\x48\x19\x20\x64\xfc\xc7\x5d\x43\x1e\x71\x00\x01\xad\xab\xa3\x93\xc9\x3b\x46\xea\x0f\x03\x64\x3d\x39\xaa\x2a\x13\xea\x46\xe7\xfd\xf6\x9d\xbc\x1a\xca\x13\xdc\xa1\x39\x67\xf4\xaa\x44\x78\xeb\xbd\xe9\x8e\x4f\xb1\x6e\x4b\x17\x99\x6c\x81\x14\xfa\x55\xb5\x75\xa4\x2b\x31\x63\xb4\x7f\xda\xd6\xef\x36\xa4\xa9\x1a\x4c\xe6\xaf\xbb\x4e\x7a\xd0\x56\x4f\xe1\x00\x73\x8e\xc8\xea\x5c\x4c\xa9\xba\xb6\xe5\x01\x52\xdb\x07\x72\x0e\xab\xde\x3e\x11\x77\x8c\x3a\x67\x26\x64\xee\x42\x9c\x7f\x2f\x2a\x4a\xe1\xad\x3f\x71\x8e\xd1\x24\x0c\xfe\x33\x51\xc0\x56\xfc\x7b\xec\x55\xac\x21\x38\xff\x4e\xe0\xb9\x25\x97\xea\x77\xf0\xd9\x75\xd5\xc9\x7f\xff\x44\xf9\xe5\x13\xa9\x4d\xad\xae\x05\xcb\x29\xa4\x56\xd5\x6e\x45\x38\x26\xf3\x86\x5e\x5c\xc8\x36\xfe\x23\xa8\x4b\xc7\x97\xeb\xc6\x5e\x84\x8d\x19\xf8\xcd\x0f\xee\x15\xe1\x8e\xe2\x07\x92\x4d\xb0\x5d\x9c\x9f\x13\x21\x48\x6d\x37\xa4\xc0\xb7\x90\xa2\x5b\x26\x5b\x45\x58\x96\x95\x5c\x1e\xbb\x27\x8f\x45\x8d\x17\xb9\x2c\xc8\xe7\xeb\x8e\xf1\xbe\x58\x79\xa8\x50\xc5\xb6\x27\x53\x41\x16\x6b\x5e\x4c\xee\xda\xa6\x98\x06\x35\x49\x72\x23\xaa\x0a\xb4\x46\x27\xb2\x6e\x2f\xac\x99\xd8\x45\x11\x04\x8b\xa8\x0e\x9d\x83\x1f\x32\x0e\xd6\xfe\xe9\x16\x4c\x00\x25\xca\x17\x7b\xc0\x3a\x49\x00\xb5\xe9\x61\x5f\x42\x05\xae\xb2\x5e\x3e\xf1\x00\x17\xe1\x49\x0a\xed\x47\x70\x52\x06\x32\x40\xf6\x31\x0d\x8a\x92\xec\xd8\x92\xaf\x06\x1c\x43\xff\xc5\x4a\xb0\xa3\x53\xbf\x5c\x1c\x19\xa8\xca\x69\xc3\x98\x2e\x9e\xc6\xf7\x4b\x34\x70\x92\xfb\xc2\x6b\xca\x29\xbe\x87\xee\xfa\xfb\xf2\x9e\x74\xe9\x0f\xbb\xe5\xee\x5d\x33\xfa\xb1\xe6\xc4\xa3\x4a\x60\x85\x7f\x16\x5d\x66\x3f\x70\x39\xb0\x02\xdf\xda\x1c\xf8\x62\x09\x33\x79\xcc\x3d\xb6\x6d\x18\xab\xdd\x65\xe7\x0e\xae\xdd\xfd\x68\xb4\xf6\x88\x37\x3c\xb8\x89\xe8\xcb\xd1\x76\x7c\x6e\xf3\xe0\x46\xfc\xcf\x46\x5b\xf0\x98\xd7\x83\x1b\xf0\xbe\x1a\xad\xdf\x63\x85\x0f\xae\xdf\xfb\x6a\xb4\x7e\x87\xb1\x3e\xb8\x76\xe7\x9b\xd1\xba\x5d\x26\xfd\xe0\xca\xdd\x8f\x46\x6b\xb7\x1c\xff\xe1\xd4\x6f\x3e\x19\xad\x39\x12\x1e\x0e\x6e\x20\xfa\xf2\x80\x76\x1c\xc6\xfb\x8e\xed\x38\x5f\xee\x3f\xbd\x2c\x10\x74\xe6\xfc\x32\x25\x19\xe9\x79\xe6\x68\xd3\x4f\x69\x7b\xb1\x21\x6b\xde\xb1\xe0\xb0\x93\x01\xf8\x3f\xeb\xc0\xd3\xea\x3f\x7d\x1d\x8f\xde\xc0\x76\x50\xf5\x5f\xeb\xcf\x2f\x95\x76\x20\x13\xbc\x38\xe2\x38\x35\x11\xcc\x34\xa4\xe1\x11\x4c\x3c\xe4\xe1\x70\x7e\x57\xae\x4b\xf4\xfd\x8f\x6d\x33\xaf\xaf\xe9\xb1\x68\xbb\x40\x06\xf5\xe9\x1d\xb9\xe8\x18\x79\x43\xda\xc6\x6a\x65\xed\xb3\xca\x77\xc5\x07\xc5\x10\x5c\xb8\x92\x51\x2f\x8b\x47\xeb\x35\xb9\x16\xd3\x9e\x6f\x0a\x54\x50\x32\x3b\xe9\x90\xb9\xbb\x4f\x53\x70\x3f\x98\x4b\x47\x0b\x7a\x51\x96\x27\x98\x59\x26\x18\x81\x5f\x37\xbd\xba\x66\xdd\x47\xd2\xdc\x13\x53\x08\x4a\x6b\x39\x5d\x97\x75\xff\x78\xdb\xf3\xee\x4a\x1c\xb5\x8f\xfe\x5a\x7f\x2e\x03\xa7\x99\xb1\xf9\x74\x9c\x06\xad\x25\xd2\x05\x40\xc5\x14\x5b\x57\x89\x00\xd8\x5b\xb4\xd5\xe1\xe2\x77\x4f\xdf\x16\x2a\x1b\xc4\xad\x0a\x7f\xbe\xa5\xcd\x42\x9b\xcf\x71\x01\x4a\xd6\x71\x3b\x1f\xf7\xed\x47\x4d\xdd\x5f\x12\xe6\x19\xfa\xca\x13\xdc\x5a\x53\x1f\x72\x62\x14\x53\xb8\xd0\xed\x3f\x7e\x1a\xa9\x10\xbe\x49\xe0\x25\xc8\xfd\xa8\x45\xf5\xea\x79\xcb\xe1\x34\x28\x29\xac\xf9\xad\x8a\xcd\x79\xde\xd8\x9d\x35\xba\x28\x10\x7d\x89\x7d\x47\x8f\xf4\xda\xbc\x7a\xf4\xf6\xf1\x77\x7a\x75\xa8\x0e\x7e\xf1\x07\x9a\x3a\xb9\x74\x1d\x47\x95\x84\x04\x55\x69\x7a\xc4\x23\x85\xa4\xe9\x6c\xe4\x44\x21\xf5\x66\x18\xd0\x83\x83\x16\x41\x47\xfd\x95\xb7\x57\x84\x5f\x76\x92\xcd\x86\xdd\x92\xd0\xf5\xf9\x03\x07\x9b\x34\x93\x85\x05\x6d\x9d\xa9\x41\x2f\xf6\x2e\xdb\x80\xc5\xb4\x64\x9a\xd2\xe7\x85\x53\xb3\x72\x56\x87\x74\x20\x76\x53\x54\x55\xa5\x0d\x6e\x2e\xf9\x33\x97\xfc\xe1\x8b\xb0\xd7\xdc\x86\x9d\xab\x64\x74\x95\x82\xb4\xed\xc4\x23\x1d\x6a\x5d\x3b\x4a\x9d\x36\x0c\x12\x19\x27\xaf\x1a\x53\xdc\x85\xe4\x85\xeb\xe1\x50\xba\x1e\xf0\xa5\xd4\x4f\xa4\xe6\xe8\xe0\x43\x7b\xb7\xbb\x75\x8c\x99\xf2\x00\x1d\x39\xaa\xc5\xa9\x79\xae\x67\xbd\xfb\x3d\x78\xaa\x08\x32\x15\x23\xfa\x92\x2b\xc3\xb4\xfc\x85\x37\x07\x26\x83\x27\x76\xd2\x3d\x17\xb8\xbc\x96\xc7\x2f\xef\x83\x24\x12\xcc\xbe\xc6\x15\xdd\x26\x60\x70\x70\xe2\xde\x66\xbe\x2e\x19\x27\xef\x71\x39\xb6\xbe\x63\x1c\x96\xe5\x55\xcd\xea\xab\x94\xe5\xd8\x57\xca\x62\x66\x30\x50\xc1\xf2\xfe\xf0\x1b\x03\x7b\x3c\xb1\xba\xd9\xdb\x01\xba\x25\x2a\x2f\x11\xee\xaa\x93\x07\xdd\x43\x06\x6a\xa9\x76\x49\x97\xdd\x6a\x55\x11\xf9\xaf\xd9\x0c\xe3\xb7\x6b\xf2\x5a\xf8\x4a\xf7\xeb\xad\x73\x44\x6b\x5a\x15\xfb\x51\x25\x58\x21\x18\xec\x20\x1c\x8b\x6b\x10\x1b\xe0\x07\x8a\x9d\xc3\x64\xe1\x7a\x50\x0e\x61\xd8\x71\xfd\x81\xa8\xf1\x94\x9d\x4c\x3c\x53\x1f\x72\x4b\xeb\xbb\x40\xe3\x2f\x40\x69\xe5\x2e\x99\xb8\x20\x6a\xef\xf2\xee\x87\x0c\x9a\x90\x87\xed\x15\x57\xfb\xb5\xe6\xb3\xde\x3f\x9f\x80\x05\xf4\xb6\xfb\x40\xda\x45\xab\x14\x36\x9d\x99\xdf\x3e\x35\xc1\x8f\x36\x9b\xd1\xd9\xad\xe5\xec\xf6\x63\xb3\x0b\xf9\xb1\xb0\xa9\xce\x86\xb2\xcd\x66\x65\x27\xf1\x89\xaa\x56\x19\xe9\x60\x5e\x7b\x6f\x5e\xbb\x21\x09\xcf\xf6\x95\x78\x14\x2f\x3f\xe2\xc8\xd4\x29\xf5\x96\x3f\x43\xd2\xc5\x76\x6c\x7e\xa8\x9c\x9f\x51\x76\x44\xcc\x8f\x8b\x6e\x86\x5b\xbf\xc2\xe0\xbc\x00\xbb\x76\xea\x45\xd9\x22\x77\x16\x7d\xd6\xb2\x1d\x46\x70\xc8\xfe\x69\xe6\xf2\x80\xfd\xfc\x05\x33\xaa\x51\x4b\x7e\xb1\x79\xfd\x65\xa5\x91\xc3\x4f\xcb\xde\x39\x2e\x93\xdb\x19\x38\xae\xaf\x75\x5a\xe6\x64\x1a\xff\x58\xbc\x85\x6e\x0d\xc3\x18\x46\xea\x3f\x6c\xa6\xcc\x5d\xc2\xf1\x96\x6d\x80\x04\x1d\xeb\x7a\x62\xc2\xb4\xc7\xfa\x61\x73\x26\x04\x8b\xbe\x72\x26\xcb\x1c\x75\xa1\xfb\xb5\x84\x15\xb3\x13\xdc\xe3\x1a\xf3\x00\xe6\xd4\x25\xba\x56\xce\xe9\x38\xfc\xe8\x3f\xef\x34\x5a\x0f\xfe\x7f\xe0\x44\x3a\x30\xa2\xe9\xa9\xcc\xa6\xd2\xfa\x07\x9f\x87\x1e\xb4\x95\x33\x73\x5e\x00\xc3\x41\x67\xe2\xed\x00\x98\x9e\x79\x21\x1a\xef\xbd\xa9\x5b\xec\xb7\x6b\x9a\xad\x13\x12\x52\x97\x12\xc0\xfd\x9b\xfc\xd5\xcb\x37\xfe\x55\xfe\x4b\x6b\x1d\x7e\xee\xac\x7b\x72\xe6\x81\xb3\x7e\x57\xc5\x05\xcc\x1b\x52\x99\x2c\x5b\x45\xed\xd9\x75\xa9\x0f\xd1\x56\x88\xa9\xfe\xd1\x9f\xe9\x4c\xee\xb1\x7f\x9a\x99\xf6\x02\x66\x0e\x9a\x69\x31\x55\xf1\xd0\xf3\x33\xd7\x89\x99\xf3\x9a\x41\xb8\x78\xf2\xf4\xfb\xa7\x6f\x9f\x16\x00\x90\xc1\x19\xbd\x7e\xfe\xe4\x19\xeb\xae\x32\xe1\x35\xe2\x50\x1d\x59\x1a\x38\xa9\x38\x52\xfe\x03\x10\xeb\xd2\x55\x74\xa9\x4d\xf5\xf7\x4e\x57\x58\x1e\x67\xba\xd7\x0d\x89\xc2\x67\x3a\x54\x55\x55\x7d\xe6\x7d\x55\x15\xc5\xa2\x64\x55\x87\xdb\xaa\x38\xa3\x4d\x55\x1c\xd7\xb8\x2c\x74\xff\x8a\x23\xed\x43\xa6\x14\x7e\x56\x7b\x44\xda\xa6\xff\x13\xe5\x97\x67\x32\xd7\xb2\xc9\xc1\xdc\x62\xed\xd2\x70\x4f\x7b\xea\xa0\x05\x33\xc5\x05\x8f\x33\x9b\x95\x7e\x1f\x3a\xdf\x35\x41\xbf\xa9\x4d\x11\x84\x82\x58\x84\xab\xfa\xf3\x8f\xaf\xbf\xff\x1e\x5e\x2f\xbe\x39\xf9\xb7\xff\x7d\xa0\x59\xd5\x22\x4f\xb0\xc0\x96\x7f\x58\x6a\x49\xb9\x44\x3a\xca\xc9\xed\xc5\x84\x27\x53\x75\x4b\xbf\x0f\x3a\x0f\x28\x40\xe2\x60\xb4\x0a\x9b\x5f\x3a\xd5\x70\xed\xac\x5b\x3b\xae\x54\x09\x8f\x5d\x8e\x6e\x9d\x1f\x16\xa3\x57\x7a\x8b\x24\x9b\x5a\x9e\xac\xc4\x89\xbc\x5c\x5a\xa9\x3c\xd1\x5d\xab\x4d\x8b\x43\xaf\x00\x2f\x4d\xad\xc7\x71\x3b\xd1\x4b\x73\xdc\x1d\xf3\xdf\x42\xa6\x6d\xd1\xba\x8a\x8e\x5d\xae\x10\xc2\xdd\xb1\x01\x4f\xe9\xcd\x3a\x4e\xfa\x25\x5d\x39\xee\xe6\xfd\x80\x00\xfd\xb9\x98\xd1\xa6\xff\x9f\xff\xfe\xed\xff\xfc\xf7\x27\x55\x61\xbc\x4f\x46\x7c\x82\x6b\x5b\x09\x68\xca\xf0\x25\x40\x0e\x6b\x77\x9d\x34\xbb\x02\x6b\x46\xfb\x37\xdb\xf5\x9a\xf4\xbd\x3a\x9f\x2c\xee\x80\x2d\xa1\xf3\x1a\x07\x25\x80\x6a\x5c\x9b\x6c\xd9\x2a\xcb\x91\xa7\x0b\x36\x0e\x50\x50\x46\x77\x49\x55\x86\x6b\x8d\x04\x21\x3d\x15\x9a\x27\xe0\x48\x45\x9a\x17\xa4\xef\xeb\xf7\xc4\x74\x78\xa2\xe2\x38\x89\x8c\xe3\x9c\xfe\xdb\xc9\xe9\xc2\xeb\x48\x64\xb9\x05\xb0\xe4\x89\x2a\xfc\x1b\xbf\xb0\x6f\x81\xf5\x4a\xfe\x9b\x5f\xd2\x33\xa5\x7a\x05\xff\x8f\x5f\xd0\xb3\x89\xca\x82\x3a\xc8\x90\x5e\x94\xe4\xb7\xd5\xbf\x9f\x9c\xf8\x53\xe7\xd8\x39\xa1\xfc\xe0\xbd\x75\x4d\xe9\xf2\x35\x36\x6b\x95\x0c\xbf\xf9\x6d\xf5\xcd\xc9\xc9\x6c\x46\x1e\xfe\xe6\xe4\x64\xb7\xfb\xcd\xc9\xbf\x55\x55\x45\xc4\x47\x31\xec\xa2\xf9\xe8\xdf\xbe\xf9\x46\x96\xaa\x3d\x85\xba\x83\x2e\xaa\x76\x78\x5f\xdd\x0a\x8e\x93\x60\xa9\xe7\x5e\x70\xab\xdb\x25\x9f\xa6\x2e\x0a\x35\xde\xea\xac\x4c\xd4\x55\xa9\xab\x3a\x27\x9b\x79\x2f\xc7\x50\xa5\x5a\xab\xab\xae\xa4\x98\x41\xee\xb6\x89\x8d\x28\x87\x93\x4e\x71\x49\x62\x22\x36\x92\xce\x92\x55\xb4\x55\x5d\x52\x51\x01\xbe\xe5\xe4\x33\x38\x60\x6d\xfb\x05\xc7\xf0\xc5\xdb\x4b\xd6\x7d\x02\x20\xbe\x64\xed\x5b\x80\x63\xa0\xf3\x73\xd1\x71\x7d\x09\x6e\x90\xca\xee\xf6\xfa\xe9\x9b\xb7\x1a\xc3\x5b\x14\x98\x16\xc7\xfc\xb8\x98\xf2\x6e\xaa\x10\xb2\x9c\xaf\xbc\xc9\x96\x4d\xfd\x4a\x5e\x9a\xa2\x64\xd2\x9a\xe8\x8d\x01\xfc\xe1\x27\xad\x60\xb8\x2b\x82\x5b\xd0\xaf\x57\x1c\x4b\x38\x7e\xa9\xfa\x95\x5a\xe7\x56\xea\x83\x3f\xab\xc8\x1c\x59\x60\x36\x03\x56\xfb\x48\xba\x98\xb7\x79\x95\xb1\xa8\xe3\xc1\x74\x7d\x59\xb3\x9e\xf0\x6a\xcb\x2f\xee\xfd\xef\x42\xd5\x51\xfd\xfe\xcd\xcb\x1f\xe6\xf2\x16\xa2\x17\x37\x65\xab\x10\xd2\xd4\x21\x16\xc5\xf4\x49\x8d\x7b\x02\x94\x83\x42\x17\x32\xb6\x4a\x57\xe3\x4a\x13\x47\x9c\xef\x93\x14\x58\x35\x39\xa6\x4b\xbe\x92\x67\x5e\x3b\x60\xf0\x50\xf4\x0e\x99\x94\x65\x64\xc2\xd9\xcd\xad\xb6\xdb\xfd\x4a\xba\x35\x8a\xa1\x8a\x85\x91\x99\x8b\x08\xba\x75\xbc\xfa\xd2\xc7\x57\x0e\xc8\x88\xcd\x66\x91\x6b\x3a\xc0\x27\xc9\x83\xf1\x4c\xff\xb1\x58\xde\xf6\x92\x32\x8b\xe2\x98\x60\xe9\x54\x5b\xbc\xbd\x24\xd3\x77\xf5\xfa\x03\x69\x9b\x29\x83\x96\x1a\xd2\xc8\xac\x78\x75\x3b\x25\xd2\x19\x41\x39\xde\x16\xc5\x31\x1b\x56\x03\xce\x9d\x9c\x51\x30\xbc\xde\xcf\x06\xb0\x99\x2f\x8b\xc7\x92\x30\xee\x09\xca\x28\x56\xbb\x5d\x01\x48\x9f\x53\xef\xb1\x81\xf9\xaf\x0a\x41\x67\xf7\x2f\xf9\xd5\xa6\xa8\xaa\xaa\x13\xc3\xd2\x80\xea\xff\x7e\x72\x56\x2c\x5f\x5e\x51\xce\x49\x33\x95\x1c\xc0\xcd\xf4\xbb\xb7\x2f\xbe\x5f\x15\x0b\x86\x97\x4e\x54\xff\x54\xad\xe1\xb4\x38\x2e\x21\x69\xc8\x65\xd7\x1c\x17\xd3\xe2\x18\x88\x1d\x1d\x17\x53\xd9\x1e\x69\xa6\xb5\xd8\x58\xb8\x50\x4e\x80\xd3\xb2\x38\xee\x8e\x0b\x54\x60\xba\x52\xbc\xcf\x5f\x5a\xc1\xfc\x58\xb5\x6e\x62\xbd\x6f\xc1\x88\x45\x22\x40\xc1\x09\xf8\xf3\xea\x5f\x15\x43\xce\x92\xff\xa3\x6d\x8d\x13\x5d\xfb\xb4\x83\xc5\x72\x32\x72\x6a\x94\x5e\x76\x73\x2b\x04\x4c\xff\x5a\x2f\xf9\x5c\x12\x11\x06\x89\x22\xe5\xa1\x8b\x4a\x00\x67\x7c\xb4\xd9\x04\x2f\x4a\xc1\x42\xe2\xce\xa1\x79\xc3\x61\xa9\x34\x6b\xc4\x4c\x49\x3d\x9b\xd5\x73\xda\xbb\x37\xd2\x99\x29\x56\xa3\x45\x6d\x93\xbd\xd5\xa1\xe2\xdd\x02\xc8\xd1\xb9\x73\x04\x4f\x69\xdb\xf3\xba\x5d\x8b\xfd\x01\x15\xa2\xae\xf2\x0a\x98\x2c\x61\x05\x97\x1e\x3b\x05\x38\xf8\xda\x23\x1d\x75\x8a\x6f\x75\x3d\x7a\xec\x57\xf5\xbb\x8e\x45\xdf\xec\x76\x10\x76\xa3\x66\xcd\xd4\x60\xfd\x76\xe4\xf7\x62\xb6\xbb\xaf\x3e\xdb\xca\x85\xda\xe7\x82\xf8\x9c\xa9\x3f\xdf\x92\xcf\x1c\xed\x76\xde\x24\x88\xeb\xc8\xac\x4f\x57\x11\xbd\x20\xdd\x70\x47\xeb\xf4\x01\x06\x63\x69\xcb\x65\xda\x96\xdb\xba\xb6\x5c\x1a\x18\x94\x4d\xba\x8b\x09\x44\x6e\x01\x84\xae\x81\x7f\x14\x72\x57\x80\xac\xe7\x2b\x42\x6e\x07\xcd\xcc\x51\x05\xca\x11\x02\x62\xc7\x82\x7b\x0f\x70\x1e\xa1\xc7\x01\xb8\x76\xa7\xd0\x23\xb2\x55\x78\xdf\xb8\x58\x20\xb1\xe5\x29\x2e\x0b\x10\x20\x64\x6e\xad\x39\xb3\x59\x59\x76\x55\x27\xee\x6a\xa4\x0c\x2a\xee\x6b\x31\xd8\xce\xad\x44\x41\x83\xc4\xe8\x1f\x19\xbd\x78\x97\xd6\x8b\x77\x28\xaa\xd9\xc2\x82\xf4\x15\x68\x7e\xc1\xe2\x3f\xa8\x22\x9a\x11\xed\xd5\x76\xd4\x74\xd4\x0f\x78\xd4\x6f\x41\xf3\xdc\xee\xe2\x27\x97\x4c\x39\x38\x80\xce\x29\x8f\xe6\x01\x8a\x92\x3c\x66\x87\x56\x10\xa8\xde\x01\x0b\xa3\x71\x09\xc6\x28\x97\x5b\x1f\x07\x20\x5b\xda\xf4\x40\xb1\x0e\xea\xbb\xfd\xd1\x83\xa2\xce\x25\xe6\xde\x10\xb3\x1a\x2e\x04\x8e\x41\x36\x3b\x55\x33\x53\x3f\x69\x83\x6b\x07\x46\x26\x42\x84\xc9\x2b\xf7\x8c\xdc\x90\x27\x81\xc3\x2a\x82\xff\xd5\x82\x3b\x1e\x41\x83\xc9\x98\x0f\x6c\x27\x3c\x4c\x98\x14\xdc\xcb\x47\x48\x05\x9a\xaf\x8c\x61\x2a\x2a\x73\x1b\xb5\xaa\x61\x22\xfe\xc6\x5b\x1f\xd2\x3a\x5f\x0d\xde\xeb\xb0\x11\x05\xb0\x1b\x66\xd3\xba\x5c\xa4\x51\xd3\x6f\xb5\xb8\x02\xea\x89\x80\xd4\x4b\x82\x40\x8d\xce\x2d\x54\x8c\xf3\x46\xb5\x21\xdf\x46\xdd\x13\x25\x40\xe1\x07\xaf\xfd\xe3\x55\xdc\x9c\x87\xf8\x82\xb8\x3c\x8a\x84\x83\xaa\x88\xea\x24\xe6\x92\xf3\x87\x99\xe4\x11\xd3\xcf\x7d\xa6\x9f\x28\xa6\xbf\xd4\x5c\xbf\xae\xe6\xac\xe4\x77\xe4\xfd\x79\x92\xf7\xd7\xe8\xc8\x0b\xf5\x5a\xfd\x36\xc9\x9e\xd5\xf4\x44\xac\xbf\xe4\xb1\x0e\x60\xfd\xd9\xdd\x59\x7f\x66\x58\x7f\xc0\x24\xb7\x5a\xcb\x3c\x68\x81\xa7\x30\x0d\xd7\x45\x66\xf6\x31\x0b\xd0\xab\xc9\xdf\x56\x9a\x86\x28\x10\x4b\x9f\x13\x7c\x89\xe0\xb0\x59\x2c\xdd\x3a\x29\xc6\x84\x74\x2b\xb8\x3b\x86\xb7\x69\xf9\x93\x80\x74\xcb\x62\xe9\x96\x59\x86\xaa\x06\x08\xa3\xad\x27\xdd\x32\x4f\xba\xa5\x19\xe9\x16\x02\xce\x31\xf7\xa5\x5b\x96\x92\x6e\xdd\xd9\x9c\x42\x56\xdd\x69\x71\xdc\xa3\xc3\x1c\x8a\x38\x3f\x34\x88\xc6\x70\x8d\xdc\x47\x98\x99\x52\xc8\x2c\x6e\x63\xd9\xce\xbc\x5f\x4b\xbe\x5a\xe8\x32\xb4\x7d\xb6\xa1\xef\x2f\xf9\x23\xaf\x6c\xfc\x54\x7c\x43\xe6\xe7\x00\xc7\xcd\x57\xc3\xcf\x08\xdf\x71\x57\x25\x15\x87\x2c\x43\xe5\x4d\x18\xb2\x8e\x6d\x57\x4e\x4d\x3a\xd2\x98\xda\x50\x3f\x2f\x10\xfe\xe0\xf0\xe1\x8f\x36\xd1\x5d\x90\xcb\x37\x84\x13\x18\x9f\xda\xdd\x2e\x3f\x95\xf6\x9d\x98\xb7\xa1\x6c\x31\x41\x67\x1c\xfe\x89\xa1\x4c\xac\x92\xdc\xcc\x85\x71\xd6\x02\x1d\xb2\x71\x4b\xf5\x9e\x2a\xef\x37\x79\xaf\xf9\x9e\xa9\xac\xf2\x8b\x5a\x38\x3a\xa9\x73\x60\x00\x3d\x14\x04\x42\xb3\x91\xa9\xc1\xb4\x92\xbd\xc7\x46\x2e\xd1\x55\x1a\x3d\x85\x4b\x67\x64\x55\x31\xc1\x3c\x88\x49\x68\x93\xb4\x96\x7c\xba\x24\xab\x45\xab\x68\x8d\xac\x92\x41\xf0\x3d\x69\x9b\xb2\x68\x68\xf3\x86\x70\x4d\x7e\x85\xc2\xde\x21\xb8\xdb\x34\x52\xeb\x4e\x71\xc7\xe8\x7b\xda\xd6\x1b\xf9\xbb\xc3\x92\x24\x19\x04\x58\x9b\x98\xea\x16\x76\x66\x62\x2f\x82\x11\x62\x7f\x44\x91\xf7\x14\xb0\xcb\xef\xad\x35\xec\x8c\xff\x92\xb6\x94\x4b\xb6\xfa\x1e\xc8\x0b\xf7\x7a\xc2\x3e\xd2\x75\x50\x05\x67\x75\xdb\x5f\x74\xec\xaa\xb7\x7f\x66\x4b\xb4\x5b\xf1\x38\xfb\xba\x89\x3a\xe8\xbc\x54\x91\xfd\xb9\xd7\xef\xba\x4e\x82\x18\xed\x75\x65\x4c\x84\x31\x1c\x18\xbb\x60\x25\x9d\xdc\xf3\x5c\xa5\x61\x89\xfc\xdb\xb1\x56\xfb\xfb\x1a\xa9\xe2\x9e\x04\x5e\xed\xef\x41\xb2\x91\x60\x00\x70\x28\x1f\x10\x5d\x01\x9e\xb7\x35\xee\xf1\x16\x6f\xf0\x1a\x5f\xe0\x6b\x7c\x89\x1b\x7c\x85\x3f\xe2\x9b\xe0\xf4\xa6\x17\xe5\x9d\x8f\x51\x79\xaa\x29\x4c\x47\x0d\x60\xf4\x5f\xa7\x7f\x99\x97\xcb\x93\x7b\xff\x67\xb5\x3b\x5d\x9e\xdc\xfb\x66\x85\xfe\x32\xbf\x8f\x72\x49\x3e\x1c\x4d\x92\xb8\xc9\x29\x23\xfd\xb4\xe6\xd3\x0d\xa9\x7b\x2e\x4b\x4e\x4f\xe7\xa7\xbf\x99\x9f\xc8\xcc\xee\x37\xdd\x76\x7a\x59\x7f\x24\xd3\xe2\xd8\x6b\xfc\xb8\x98\x4f\x5f\x89\x8f\xc8\x74\x7b\xfd\x9e\xd5\x0d\x11\x45\xd9\xf4\x23\x61\x3d\x68\x62\x2e\x64\x65\x78\xca\x2f\x49\x6b\xca\xd8\xd6\xe7\x05\x9a\xf0\xf9\x93\x37\x0a\x6e\x85\xcb\x7f\x31\x3c\xf2\x02\x7b\xb9\xf7\xd3\x2b\xa0\x02\x7d\xb9\xff\xdb\x2b\x62\x03\x74\x79\xf4\x48\x16\x94\x01\xc5\x5c\xfe\x2b\x1f\xd9\xc8\x63\x6e\xff\x96\xaf\x04\x25\x54\x37\xfa\x5c\x95\xcf\x14\x76\x0c\x57\x7f\xc8\x87\x7e\xbc\x32\xf7\x7f\xcb\x22\x06\xb2\x81\x9b\x3f\xe5\x0b\x1d\xfe\xbb\xf1\xdb\xf1\x40\x1d\xfc\x60\x41\xdd\xa6\x03\xf2\xe0\xc7\xfb\xc9\x02\x1e\x2e\x83\x1f\xcc\xa5\x9a\xb0\x38\x0d\x6e\x3c\x96\x7c\x19\x43\x46\x24\x02\xfe\x64\xd1\x00\x47\x22\x8c\xd9\x93\x85\x7c\x64\x89\x20\xec\x4e\x16\xf1\xa1\x26\x82\xc8\x39\x35\x8b\x0e\xf6\x84\x17\xfc\x26\x5f\xc7\x50\x13\x89\x38\x30\xb7\xa8\x8b\xb4\x90\x08\xe5\x32\x8d\xaa\x03\xa4\xba\xf6\x17\xc9\x8b\xdf\xe6\xde\x4f\x45\x5c\x4e\xf4\x35\x77\x7f\xa9\x99\x4b\xc4\xa2\xf3\xd4\x53\x8f\x26\x92\x11\xea\x7c\xec\xad\x22\x7e\x67\x7b\x04\xfb\x22\x11\xcc\xce\x13\x0f\x55\x61\xcb\xfd\x56\x17\x7a\x42\xe4\xfe\xf6\xb1\x4a\x78\xe0\x6f\x6e\xbe\x76\x66\xf4\xca\x9f\x51\x21\x4c\x39\x6f\x9b\xf8\xed\xa3\x57\xcf\x75\xe3\xeb\xe4\x5b\xe7\xf3\x4b\xbf\xc0\x5b\x7d\xdd\x55\x34\x58\xc7\x9a\x13\xfb\xb2\xf6\x5f\x4a\xf7\x05\xfb\xba\xf7\x5f\xff\x00\x77\xb2\x7d\xdd\xf9\xaf\xbf\x95\xf7\xaa\x7d\xbf\x0d\xce\x13\x75\x23\x29\xf7\x03\x39\x71\x1f\xfd\x32\x16\x91\x8a\xdb\xbf\xe5\x2b\x8d\xf8\xc3\xf5\x5f\x7a\x3d\x1d\x10\x02\xee\xfd\x94\x05\x64\xda\x15\x03\x98\x57\x31\xbf\xc5\x73\xcb\xbc\xc0\x51\xfd\x46\xb2\x2e\x55\x6b\x8a\xa5\xaf\x33\xf1\x31\x2e\x62\x18\x8f\x28\x9a\xf2\x13\xa3\x5c\xfe\x7d\x8a\xd7\x5d\x7b\x41\xdf\x6f\x99\xfe\x2d\xef\x40\x9e\x40\x03\xf1\x84\x0b\xd1\x56\x8e\x95\xcb\x71\x5e\xbf\x34\x5e\x81\x5b\x67\x49\x14\xfe\xfd\x19\x59\xc8\x48\x14\x98\x6a\xe4\xa2\xe2\x8b\x5e\x2d\x14\xc4\x60\x86\x2f\x05\x0d\xd0\x3f\x4d\xa4\xbb\xc1\x59\x38\x30\x3a\x16\x96\x2e\x1b\x11\xcb\x7c\x1c\xf8\x7f\x92\x31\x3a\x98\x6a\x07\x8e\xd2\x7c\x31\x1a\x63\x6c\xf0\xb0\x0e\xac\x55\x95\xcf\xce\x9e\xcb\x4e\xff\xb7\x00\x71\x38\x39\x9f\x94\xa5\x37\x00\xcc\x90\xaa\x94\x4c\x8e\x21\x63\x43\xdc\x3f\xbe\x3c\xe3\xfe\x8f\x19\xb7\x0f\xa1\x9e\x1e\x50\x28\x4d\x43\xbc\x9a\xf6\xe4\xf0\xbc\x06\x89\xcc\x17\x1e\x9c\xfc\x4e\x56\x58\x69\x5e\x22\xe0\x60\xf1\x81\xdc\x80\xb6\xd4\xf1\x5d\x4e\x9b\xd3\x1d\x8c\xbe\x0a\xb4\x89\x52\x19\x5b\xf7\xe6\x3e\x54\x0d\x49\x5b\x2a\x00\x01\x17\x0d\xc9\x7d\xf5\xc4\xbe\x09\xbf\x93\xa8\x79\xb2\x63\x16\x49\x92\x60\x9d\xb3\xd2\x1b\xfa\x6e\x47\x9c\x44\x2f\x19\xa7\x70\x07\xa8\xf5\x83\x84\x6e\x55\xde\x50\xa6\xef\xb2\xf1\x37\xd7\x64\x0d\x50\x9f\x65\x8b\x50\x62\x9a\x4d\x3a\x67\xe5\x0e\xe9\x8e\xfe\xb9\x19\x41\x6b\xa0\xc6\xf3\xb3\x03\xde\x56\x0e\x16\x64\xd9\x42\x10\x14\xd5\x88\x48\xb2\xf1\xf7\x84\xbf\xa8\xaf\xaf\x49\xf3\x07\x72\x53\x42\xdf\xb1\xca\x20\x3a\xe9\x21\x37\xe8\x07\x72\xa3\xa6\x34\x5e\xc7\xd9\xac\x54\xf5\xc4\xef\x54\x65\x6c\xfe\x81\xb6\x0d\x76\xe1\x17\x11\xae\xcf\x24\xa0\x52\x3d\xa7\x0d\x66\x73\xa5\x0e\x9b\x5f\x77\x9b\x9b\xab\x8e\x5d\x5f\xd2\xb5\x6a\xd2\x7c\xf5\xca\xbe\x92\xb8\xe9\x32\xe7\xff\x02\xaa\x01\x20\x3e\x30\xe5\x76\x3a\xab\x87\xf9\x50\x93\xa8\xc5\xae\x57\x39\xa6\x20\x6f\x5b\xae\x50\x66\x6d\xdd\xd9\x84\xe1\xd9\x1c\x62\x23\xf3\x48\x0f\x99\x47\xfa\x25\xf3\xd8\x8a\x79\xa4\xab\xca\x09\xb8\x2d\x93\x5e\xe2\x12\x8d\x54\x0f\xf3\x59\xc7\x08\x7d\xdf\x8a\x9e\x12\xdc\x62\x86\x45\x25\xe8\xe7\x2e\x04\x55\x0b\x61\xb7\x4a\x32\x08\xe5\x6b\x6e\x94\xa9\xfe\x3a\xb7\x4b\x7c\xdf\xe9\xff\x96\x35\x82\x89\x31\xb8\x96\x65\x8b\xc1\x5e\x0b\xc0\x54\xd2\xfb\x60\xdf\x2e\x3e\xcb\x50\xb4\x4e\xe3\x20\xe7\x63\x91\x9a\x87\x47\x2d\xc0\xc8\xd9\xba\xa2\xed\xa1\x2a\x79\xd4\x3b\xa5\x4d\x16\xb6\xf1\x62\x63\x57\x47\x78\xb2\xca\xf9\xf1\x30\x58\xa9\x33\x29\x72\x2f\x4d\xf8\xb2\x5d\x19\x2c\x60\x8a\x32\x58\x94\xb7\xb4\x01\x73\xb7\x74\x7b\x77\xd2\xb4\x41\xf0\x53\x76\x9e\x46\x6f\xba\x11\xca\x68\x0f\xa1\x8c\xf6\xcb\x28\xc3\x24\x66\xd1\x5e\x5d\x66\xf1\x9c\xd5\x85\x95\xc8\x16\x08\x38\x12\x17\x6c\x4f\xcf\x2e\x97\x27\x95\x85\x59\x86\xd4\x87\x36\x7b\x8c\x71\x54\x57\xe1\xcc\xad\x0b\xb6\xa7\x2c\x59\xed\xb2\x5b\xe1\xbe\xaa\xf3\x07\xcd\x64\xdf\x41\x53\x63\x8e\x7b\x84\xe9\xb2\x5b\x55\xbd\x36\x16\xd3\x01\xe7\x3e\x49\x78\xb4\xd1\x8b\xd2\x61\x6d\xe5\xc2\xd0\xb6\xd1\xbb\x5c\x2e\xd9\x9c\xb6\x1f\x09\xeb\x89\x74\x45\x11\xb3\x6f\x39\x12\xf7\x06\xec\x2a\x3a\x6f\x21\xee\xa3\xb2\x05\xc6\xe2\x4b\x12\xab\xdb\x61\xaa\x56\xd6\x65\x43\xd0\xa4\x9e\xcd\xa4\xcb\xc3\xb4\x5d\xd6\xab\x61\x18\xf0\x65\xdd\xeb\x21\x3e\xda\x7c\xaa\x6f\xd4\x9e\xcc\x25\x24\xac\x39\x67\x96\x5d\x31\xcc\xd7\x6c\x56\xd4\xf0\x35\x20\x33\xcc\x35\x4b\x09\xd5\xa7\x0f\x90\x5c\x03\x99\xfe\x38\xe9\xea\x32\x5d\xd8\xed\xd8\x6c\x56\x28\x1e\x56\xae\x81\x19\xb9\xdf\x8f\xe7\xfb\xfa\x90\x1d\x64\x59\xd0\x46\x0d\xd1\xd4\xbd\xdb\x15\xb4\x09\x9e\xa1\xa8\x41\xff\xc4\xfb\xb2\x86\xef\xd5\x6d\x73\x4f\x50\x52\xb2\x0b\xe6\x6d\xdc\x97\xfc\x1d\x76\xa7\x8e\x1c\x95\x80\x14\xed\xb6\x6b\x97\x1a\xc9\x31\xe7\x78\xdb\x7f\xc4\x72\x3b\xa4\x3e\x60\xe7\xb3\x5c\xdb\x32\xed\xa3\x28\x57\x78\x73\xcd\x97\xb9\xac\x19\xab\xdd\x8e\x2f\xc9\x0a\x41\x92\xd3\x94\xa4\x91\xf5\x76\xe5\x4e\x0a\x09\x06\x40\xf1\xde\x7e\x75\xcc\xf4\x1d\xba\x25\xa3\x52\x02\x43\x82\x1e\xb4\xc4\x5b\x55\x55\x07\x5b\x7d\x36\xa3\x91\xfc\x63\x33\x2a\x31\x89\x0a\xef\x9f\x52\xf9\x0f\xdd\x8c\x4a\xf2\x53\xe5\xdc\x9c\x69\x21\x3b\x6e\xeb\x9f\xcd\x70\x01\x09\xad\x7d\x10\x68\xf0\x5d\x9f\x4b\x6c\x5f\x75\x06\xea\xab\xc2\x4b\x77\x6d\xae\x82\xba\x3a\x79\x50\x5b\xdc\xd5\x5a\x5f\x05\x3d\xde\x56\x74\x59\xaf\xf0\x46\x5d\x5d\xd6\x61\xda\x2c\x91\x33\xe1\x82\xbf\xdc\x22\xbc\xae\x36\xd0\x38\xbe\xa8\x36\x26\xc7\x37\xa0\x6c\x98\x5f\x95\xfd\x13\xe0\x76\xed\x4f\x19\xec\xb2\x46\xf8\x02\x95\xbd\x53\x4c\x06\x0e\x29\x8b\x72\x8f\x2f\xd0\xa4\x5b\xd6\x2b\xc8\x53\xb1\x36\xfc\xc1\x1a\xee\x84\x01\x02\xdb\xae\x2b\x1d\xb5\x37\xb1\x89\x1b\xb3\xf3\x85\xaf\x41\x48\xc8\xad\xd8\xd7\x5c\x0a\x58\x06\x7d\x0f\x1d\x30\xa3\x14\xc1\x5d\x0c\x33\xba\x15\x52\xd4\x17\xcd\x68\x8f\xf0\x16\x95\x5d\x6e\x46\x3b\xbc\x95\x86\xf9\x4d\x65\x42\xcc\x17\xbd\x99\xd8\x5e\x4d\xec\x41\x53\xb9\x81\xa9\x1c\x1d\x58\x8e\x3f\x93\x9e\xa6\x3c\x2d\x9b\x40\xf6\x52\xc9\xa7\x69\x16\xc0\x24\x73\x6e\x1d\x50\x1d\xff\x56\x6f\x91\x97\xdd\x99\x81\x9b\x1d\x04\xdc\xa4\x54\xd9\x23\x20\xb2\x69\xab\x6f\xac\x03\xb4\x26\xd8\x3b\x98\x84\xb3\x78\x3b\x5f\x0b\x14\x8f\x45\xa0\x78\x76\x85\x34\x26\xf8\x77\x64\x73\x1d\x24\x1b\x15\x4c\x98\x71\x83\x51\xd4\x2e\x96\xe0\xe5\x85\x71\x1c\x93\xff\x86\xe4\xac\x33\x0f\xca\x3a\x75\x61\x23\xc8\x65\x32\xf4\xeb\x63\x8a\x3b\xc7\x94\x97\xb3\x5f\xdc\x60\x27\x0f\xd8\x43\xef\xe1\x03\xa6\x0f\xac\x56\xb9\xaf\x2d\xd9\x6a\x22\x01\xbd\x47\x7b\xd5\xa2\x41\xf7\x7e\x48\x74\xca\xec\x14\x17\xad\xda\x74\x4c\x31\xd0\xb6\x58\x82\x93\xb6\x2f\x25\x4b\x3d\xde\x9d\xda\xe4\xf8\xe9\x4d\x66\xaa\x5e\x74\xd1\x6c\x72\xaa\x59\x69\xe2\xee\x30\x77\x67\x3d\xa9\x79\x9d\x5e\x47\x40\xab\x0b\xdc\xca\x75\x52\x76\xb1\xa4\xf7\x2e\xbb\xee\x43\x5f\x20\xef\x3a\x37\x1c\xf1\x33\xd6\x5d\xa9\x60\x0d\xa9\x0a\x90\x3b\x51\x33\x14\xa9\x72\x20\x09\xa8\x0d\xcb\x8f\xac\xb6\xce\x86\x60\xbc\xc8\x7c\x25\x33\xcc\x30\xa4\xe4\xb2\x8a\x4b\xe9\x59\xff\x3a\xa4\xc1\xf4\x3c\xb9\xd3\x9d\xe0\x60\x6c\x40\xc3\xe1\x93\x75\xe0\x44\x4d\x9c\x14\x0e\xfb\xfa\x5e\xe4\x2a\x2b\xf0\x17\xcd\x23\x4e\x56\xf8\x07\x72\x53\x68\xb5\xc4\x41\xfd\xca\x57\x03\x28\xf0\x8e\x5c\x25\x7a\xa6\xf3\xa1\x3a\x09\x53\x05\x71\x3b\x29\x7a\x74\xe1\x2b\x5b\xd2\xc7\x92\x49\xc9\x68\xfe\x69\x4e\x10\x6c\xdf\x01\x8b\xbd\xa2\x3a\x34\x92\x3a\x23\x73\xe2\x89\x86\x73\x6b\xbe\xed\x2f\xf5\xba\x2b\xbd\xb5\x19\x0e\xd1\x89\xe4\x26\xe6\xaf\x80\xda\x46\xc3\xc9\xc6\xbb\xc4\x90\x13\x9e\xe6\xa4\x46\x8c\x6b\xbd\x3b\xec\xdc\x80\x15\x9f\x63\xfd\xda\xb2\x93\x86\x5b\x07\xeb\xcf\x49\xea\xd5\xcf\x66\x63\xb9\x99\xf4\xa5\x13\x6b\xdd\x03\xe1\xd9\xf8\x13\xbb\x75\x2f\xe9\x4a\x5c\xf7\x4b\xb2\x0a\x1f\x2b\x8e\x59\xf5\x3f\xc3\x52\x1c\x72\x6d\x01\xdc\x5e\xfa\xe2\x4a\x1d\xa6\xe6\x8a\xc2\xff\x6d\x37\x57\xb2\x5b\xee\x0d\x16\x2d\x6f\x26\xef\xf4\xf8\x0a\x7b\xfc\x9c\x5e\xe4\xb4\x5c\x45\xac\xe7\x32\x4b\x29\x4c\x48\x46\x61\xe2\xa6\xa4\x0f\x1a\x5c\x76\x2b\x83\xbc\x16\xbd\x99\x00\x45\x40\xaa\xc4\x70\x78\x65\x0d\xf6\x68\x47\x98\x0a\x30\x5d\x95\x27\xeb\xdd\x2e\xc1\x91\xf3\x1a\xce\x76\xae\x0e\x46\x3a\x7e\x7e\x72\xff\x4e\x52\x0e\xa9\x77\x38\xc3\x59\x45\x11\x66\x5e\xcc\xc5\x9e\xb6\x06\x9c\x29\x90\x08\xa4\x28\x4f\x30\x9f\xf7\xb4\x7d\xbf\xdd\xd4\x0c\x80\x6c\x61\x96\x62\x77\x06\x04\xe9\xd1\xf0\xb5\xa9\x4c\x54\x6d\xde\xe6\x6a\x76\x00\x72\x89\x7b\xa8\x05\x8b\xe3\x9f\x2d\x3e\xba\xc0\x8f\xa2\x77\x4f\xc8\x7a\x53\x33\xd2\xbc\xa8\xaf\xaf\x69\xfb\x5e\x7c\xe5\x7c\x82\x70\x44\xba\x07\xd6\xe1\x7d\x65\xb2\x46\x51\x15\x58\xa2\xa8\xe9\x39\x20\x24\x20\x85\xbe\xe2\x9a\x45\xb5\x61\x04\x61\xdb\x19\xef\x53\x7b\xc8\xca\x62\x5e\x7b\x5e\x49\x6f\xbf\xca\x44\xc5\x3e\x30\x8b\x38\xd5\x8d\x67\x8e\x28\xc1\xbc\x19\x90\x92\x1b\x1b\xb4\x15\xd6\xba\xa1\x27\xe0\x01\xb2\xe0\xc6\x7b\x6c\xb8\x87\x54\x90\x4a\x41\xe1\xb1\x95\x63\xd7\x14\x66\x5f\xc4\x87\x99\x7c\xcb\x66\x7b\x7a\xd4\x59\x3a\xb6\x03\x37\x4f\xe0\x3c\x43\xcd\x7e\xf9\xf4\x96\x7d\x95\xf9\x54\x6f\x59\xc9\x5c\xb1\xbb\xb4\xa3\x4f\x61\x60\x74\x99\x5a\x51\x3e\x38\x53\x9a\x5a\x54\x5f\x27\xa1\xe2\x35\xb5\xb9\xec\x7c\x5d\xb7\x46\x55\x59\x32\xe4\x6f\x35\xef\x82\x35\xc1\x0c\x5d\x45\xe0\xb1\x60\x6e\x40\x6b\xa1\x0c\xd0\xc6\x01\x1b\x90\x7e\x1d\x14\xa6\xb2\xc3\xad\x96\xda\x35\xb2\x4b\xca\xda\x62\x2c\x2d\xb5\x34\xdf\x97\x75\xc6\x86\x14\x9a\x4f\x5c\x36\xa0\x5e\x55\xdd\x70\xb0\x95\x9e\x06\xc6\x47\x7f\x3e\xa8\x81\x66\x73\xed\xbd\x14\xe1\xba\xea\x66\xb3\x6e\x2e\x95\xa1\xb3\xd9\x91\xfe\xd3\xcb\x97\x29\x2a\x15\x5c\x6d\x55\x55\xdd\x6e\x57\x8b\xa9\xf5\xb6\x77\x78\x89\x99\x09\x4e\x5a\xe4\xa9\x67\x8d\xa7\xa3\x06\x77\xea\xf9\xfd\x78\x93\x35\x91\x11\x7e\xc0\x6d\xd3\x8b\xb2\xd3\x98\x1d\x5f\xb2\xab\x36\x7b\x76\x55\x17\xee\xaa\xf5\x38\xb5\x7b\xe5\x85\xa4\xbb\xbe\xd3\xae\xda\x54\x6b\xb5\xab\x36\x77\x68\x67\xab\x42\x73\x36\x98\x36\x8b\x6e\x4e\x9b\x61\x08\x99\x8b\x7e\xa5\xf4\x5e\xdb\x61\x18\x0e\xb4\x6a\x87\x84\x25\x73\xc6\xbc\x09\x3e\x15\x5c\x10\x66\x0e\x95\x69\x4b\x1d\xf5\x19\xa1\xee\x70\xe2\x49\x6e\x2d\xea\x6d\x2d\x3a\x66\xc0\xac\xc7\xa8\xca\x78\x7d\xf9\x34\xa5\xf9\xdb\xde\xe1\x6f\x3b\xc3\xda\x6e\xab\x93\x07\xdb\x87\xfa\xf7\x83\xad\xe6\x6a\xff\x3f\xf6\x9e\xf7\xb7\x6d\x1c\xcb\xef\xfe\x2b\x6c\xe1\x46\x23\x22\x8c\xe3\xcc\xe2\xb0\x77\x6e\x09\x63\xb7\xd3\xc1\xed\x61\xa6\x1d\x34\x3b\x9f\xbc\xbe\x40\xb5\xe9\x98\x37\x32\x69\x50\x54\xd2\x20\xd6\xfe\xed\x07\x3e\x92\x12\x25\x53\xb6\xdc\x26\x9d\x19\xdc\x7e\x69\x15\x99\x7a\x24\x1f\x1f\x1f\x1f\xdf\xcf\x8c\x88\x79\xb1\xc0\xcb\xcf\xa2\xbd\xe5\x09\xda\xcb\xda\xb4\xb7\x3e\x4e\x13\x8d\xf6\xcb\x11\x21\xeb\xb3\x68\x6f\x49\xd6\x96\xf6\x4e\xd0\x78\xa3\x9f\x7c\x5e\x2c\x2c\xf9\x2d\x35\xf9\x65\x41\xf2\x4b\x1d\xf9\xe5\x9a\xfc\x4c\x86\xfa\x5e\x58\x6a\xa4\xa9\xef\x10\x53\x9f\x4f\xe4\x3b\x58\x83\x9e\x32\xdf\x49\x29\xb7\x2b\x22\xb8\x43\x88\x6d\x65\xdc\xe8\x68\xe5\xf7\xdb\xb1\xb0\x5d\xfd\x76\x2c\x6d\xab\xdf\x8e\x56\xbd\x42\x29\x0f\xd5\xc1\x1d\xde\xa4\x5d\x41\x48\x5f\x25\x43\x7b\x9a\xe7\xec\x8e\xbb\x02\x83\x5b\x2a\xef\x82\x89\xda\x9f\x76\x92\x6d\x53\xf9\xa8\x57\x12\xaa\x3a\x43\xcb\x95\xed\x8d\xd1\x7c\x3a\xb7\x36\xc1\x05\x6e\x09\xb1\xc7\xae\xa5\x9d\xd5\x0f\x9b\x15\xbf\x2b\x60\x74\x15\x52\x46\xd8\x8c\x68\xf5\x8d\x73\x4e\x17\xf5\xb5\xb5\x25\xd1\xe0\x94\x70\x57\x44\x55\x37\x04\xf7\x78\xaf\x60\xda\x9c\x2e\x70\x5a\x09\x3a\xb6\x10\xe4\x29\x95\x8f\x89\x12\x6e\xe5\xc5\xf0\x13\x54\xf8\xa4\x57\x01\xfb\xa1\x6a\xe0\xc0\x76\xa8\x75\x8e\xe7\x1b\x38\xa6\x44\x3a\x06\x30\x98\x05\xa1\x31\x38\x2f\x15\xca\x29\x40\x5e\xfa\x81\x4e\x70\x55\x9b\xbe\x40\xab\x2c\x07\x9d\x20\x6d\x8b\xbe\x00\x4f\x40\xeb\x0b\xca\xa6\x81\x38\xb6\x08\xa7\x81\x84\x72\x70\xb4\x60\xbd\xf1\x9a\xf4\x01\x19\xca\xcb\xd1\x02\xf9\xbd\xd7\xa4\x0f\xc8\x50\x26\x90\x16\xc8\x5f\xbc\x26\xc7\x41\x96\xde\x4e\x3a\x24\xfe\x2e\x56\x5d\x7d\x72\xc3\xf8\x5d\x9d\xd1\xa7\xab\x7a\x48\x5f\x9d\xea\x73\x74\xd1\xda\x24\x27\xc1\x83\x54\x75\x16\xf4\x83\x3d\xf3\x12\x53\x68\xed\xa2\x17\x98\xc6\x0b\x82\x6f\x6c\xb8\x67\x86\x1d\xda\x80\xa7\x17\x20\xbd\xef\x8f\xfe\xd0\x7e\x7c\xde\x1e\x42\xdb\xf3\x79\x7b\xf0\x1b\x3f\x37\x79\x36\x9b\x07\x8f\xdd\xb0\xb5\xa5\x91\xaa\xd4\xc4\x46\x8f\x26\x3e\xe4\x06\x25\x7c\x21\xe0\xeb\x3e\x76\x21\x13\x9f\xed\x94\xdf\xb6\x10\x02\x94\xf9\xb0\xc6\xdf\xe9\x7c\x51\x3a\x13\xb2\x55\x18\xfe\x44\x55\xea\x5c\xa4\xd9\x3a\xc9\xf5\xdd\x0e\xd2\x06\x90\x1c\x39\x58\x45\x2b\x53\x6b\xa2\x5b\xe3\x8c\x14\xc6\xa3\x64\x49\x8a\xda\xa3\xc4\x78\x99\x90\x0c\x2f\x01\x52\x65\x76\xb6\x97\xee\xca\xc8\xb1\xf6\x2e\x81\xb2\xba\x04\xee\xc8\x04\x6f\x48\x55\xe5\x79\xf7\x7a\xf3\x6a\xe7\x2e\x82\x2b\xbc\x25\x72\xbe\x5b\xe0\xfb\xc3\xe1\x6c\x11\x7e\x24\xf7\x66\x38\x77\xe4\xbe\xe1\xe0\x72\x87\x92\x95\xe7\xf3\xd2\xf0\x59\x59\xe1\x3b\x34\x58\xcf\x77\x0b\xf2\x58\xda\x91\xaf\xab\xb4\x76\xdd\x8a\x66\x23\x62\x82\x76\xc4\xf7\x4f\xeb\xa5\x2c\x46\xb8\xcb\xac\xa4\xc6\x19\xe3\xbf\xe6\xa8\xb7\xda\xd9\x34\xc7\x27\x54\xcd\xd4\x4f\x59\xfe\x02\xfa\x65\xdc\x47\xb1\xec\x6b\x96\xab\x41\x06\xb3\x4d\x3b\x2f\xbf\x3a\x77\x68\x7d\x33\x88\xd0\xa2\xae\x9b\x27\xab\x0a\xe4\x28\xe1\xe8\x4c\x83\xa4\xcd\x72\xc9\x88\x5f\xc4\xab\xdb\x16\xc9\x7b\xd8\x21\xb1\x77\x3d\xe0\x0b\xc8\xda\x4d\x17\xf0\x8c\x4a\x84\xd9\x29\x8b\xa3\xb5\x2e\xb9\x02\xf7\xef\x04\xa7\x6d\xbb\xf7\x11\x93\xa4\x02\x9d\x2c\x5b\x99\xac\x95\x2b\xd2\xc2\x8f\x7e\x87\xdc\xbd\xcc\xb3\x8c\x57\x76\x73\xe3\xe9\x6c\x94\xc6\x71\x3c\x82\xcf\xfb\x56\x9d\xd7\xe8\x47\x1d\x79\xeb\xbb\x0d\x63\x47\x0c\x5e\x0d\xc3\x98\xe8\x67\x18\x63\x23\x48\x39\x7a\x86\x45\x8c\x11\x81\xb0\x55\x93\x33\xeb\xc4\xd0\xc3\x3b\xa4\x65\x89\x73\x36\x53\xbd\x05\xdb\x48\x77\x1b\xb0\xa6\x79\x2f\x1a\xe6\x08\x19\xf8\xc7\x42\xc8\x50\x69\xb6\xdd\xe7\x5b\x68\x7b\x1a\x64\x4d\xd2\x9d\x2f\xb0\xcb\xce\xd3\x85\x0b\x1e\x33\xf9\x93\xe1\xd5\xe0\xc0\x2b\xdf\x80\x42\x39\x61\x21\xaf\xbd\x59\x65\xad\xed\xc0\x5e\x62\x33\xf1\x15\xf8\xe9\x57\xfa\x38\xa5\x58\x3a\x27\x9d\x34\xdf\x4c\x55\x83\x9b\xe9\xe3\x6e\xca\x4a\xc8\xb1\x1f\xc0\xac\x83\x54\x7b\x99\xf9\x0e\xbd\xcc\xfa\xe5\x8e\x1a\x9b\xb4\x40\xe8\xc9\x57\x69\x16\xee\x34\xab\x14\x9e\x19\x99\xc0\x21\x69\x4f\xb5\xec\xf5\xf2\x55\xe6\x4e\xb5\x35\x29\xe6\xd9\x62\x90\xcf\xb3\x2e\xb3\xb4\x1d\xd3\x1a\x95\xa5\xa8\x55\x7c\xc6\x3f\xd5\xad\xcd\x8f\x8c\xff\x5a\xad\x89\xdd\xca\x70\x3a\xc4\xb1\x67\x26\x87\x37\xf3\x9d\x5d\x94\x8d\xf7\xe6\x55\x9d\xa7\x12\x5e\x91\x27\x40\x1a\x5d\x4d\x37\x65\x29\x9c\x23\x85\xb0\xae\x13\x67\xd9\x85\x65\x87\x4a\xb0\xa1\xf3\xe8\x49\xc2\x2e\xdd\x6d\x97\x5a\xfa\x24\x61\xd3\x11\x21\x09\x3f\x8b\xa4\x91\x8f\x42\xc3\xd8\x95\x63\xec\xb6\x94\xc7\xd0\x32\x79\x5f\x26\x0e\x9c\xd9\xc1\x99\xb5\x0f\x3b\xeb\xf7\xee\x1f\x51\xb5\xe2\x5b\xa2\xca\x09\x7b\xc8\xf8\x50\x22\x4e\x82\xb1\x6a\x02\xd3\xc6\x71\x04\xbe\x30\x9d\xaa\xb0\xf1\x26\xcd\x13\x81\xda\x61\x49\xf5\x49\x27\x90\x4b\xcd\x63\xbf\x6e\xc8\x07\x7f\x7d\x84\x74\x07\x5d\x60\x9a\xf1\x2f\x08\x61\xcd\xa9\x39\x60\x91\x2f\x60\x6c\x35\x16\xd9\x02\x99\xe0\xa5\x7a\x2e\x9d\x35\x75\x0f\x51\x26\x5b\x59\xbb\x54\x1c\xeb\x95\x8a\xe3\x24\x91\x46\x65\x67\xc2\xb2\x12\x49\x6c\x30\x66\x64\x33\x44\xf9\xb9\xb8\x13\x4a\x24\x42\x50\xae\xd3\xb7\xf2\xf5\x1f\x87\x8b\xca\x50\xfb\xfd\x48\xf7\xba\xdf\x8f\xae\xad\xce\xd0\x8f\x7c\xb9\xdd\x16\xb9\xfa\x7c\xf0\xf5\xec\x46\x90\xb4\xb8\x05\x3d\x6c\x48\xea\x0c\x53\x05\x5d\xf4\x8a\x2a\x2a\xb7\x8c\x37\xf6\x23\x9c\xc5\xb2\x11\x12\x65\xe7\x67\x2b\xd0\x34\xa6\x91\x28\x64\x93\x5b\x37\x4d\xa4\x0a\x62\x23\xb6\x29\x7f\xfc\xbb\xd0\x4c\x53\x73\x53\xbe\xdf\xdb\x37\x8e\xbf\xf2\x0e\xbb\xbf\x27\x1c\x6a\x4c\x30\x9b\xb5\x5b\x63\x60\x5c\x05\x95\x75\x49\x20\x15\xc0\x4b\xb6\x8a\x6c\x64\x68\x9d\xfd\x77\x05\xb6\xb5\x63\x12\xa7\x17\x62\x2d\x20\x7b\xec\x40\x80\x6c\x77\x54\x4a\xd5\xac\xf2\x94\x58\x09\x0b\xe0\x45\xe2\xfa\x92\x25\x33\x11\x95\x08\x1f\xe3\x68\x46\x51\x1f\x88\x6f\x9b\x79\x50\xfd\x38\x66\x86\x25\x9a\xfa\x07\x9a\xb4\x07\x9a\xd7\xbe\x69\x72\x34\x82\xeb\x41\xb2\xe4\xf6\xbd\x93\xa1\x27\x78\x6c\xe0\x36\xd1\xef\x51\x4f\xb7\x83\x6e\x4f\x03\xdf\x21\x01\x7f\x35\xa7\x82\x10\x1f\x3c\xc3\xd5\xe0\x4c\xff\x82\x76\x70\x73\x13\x0b\x75\x58\x72\x23\x3a\x1f\x6b\x91\x13\x42\xb6\x45\x68\x4a\xbc\x9a\x92\x20\xc0\x70\xbb\x8d\xb9\xa2\x93\x5f\xf3\x6e\x17\x01\xdc\x10\x82\x18\x9a\xa9\xb9\x30\x11\xdd\x53\x78\x62\x5f\x12\x1f\xde\xd7\x7e\xde\x46\x5c\xa7\xfd\x9c\x63\xe9\x61\x31\x10\x5c\xdd\x90\x5c\x9b\x75\x61\x5f\x06\xaf\x61\x23\x39\x36\xb8\x6b\x38\x10\xb4\x50\xe4\x2b\xc0\xaa\x5b\x00\xc8\xb5\x6d\x0c\x69\x89\xc1\x93\x5e\x24\xe8\x75\x6a\xc4\xe9\xbf\xea\xfa\x57\x70\x04\x9b\x97\x98\xd7\x37\x16\x93\xf3\xed\xa0\x4c\xd9\x61\xf4\x1c\x0f\x94\xb6\x80\xcc\xef\x26\xc5\x18\x88\x05\xc0\x9f\x0f\x52\x8e\xa1\xba\x30\x10\xee\xa1\xf9\x80\xba\x40\xea\x84\xe3\xb0\xd2\xc2\xfa\x29\xc7\x61\x35\x22\x84\x7a\x08\xe2\x73\x55\x39\x0d\xeb\x67\x5c\xc5\xe4\x42\x2e\x61\xdb\x69\x87\x78\xd9\xee\xb7\x25\x5b\x7e\x59\xd7\x20\x76\xf7\xf0\xc8\xa3\x7d\x3d\xef\xaa\x86\xfa\xe6\xd0\xd1\xc0\x67\xaa\x01\xf9\x04\x16\xf3\x8e\xaa\xf7\x0f\x9c\x4a\x04\xfb\xaf\x4e\xf4\x54\x7d\x3b\x8d\x2e\xfc\xcb\x72\x47\xe5\xfc\xe7\xf5\x4b\xe8\xbe\x72\xfc\x46\x5e\x04\x25\xc2\xa7\x45\x13\x7f\xbe\x9e\x80\xd2\x29\xb3\xb1\xd5\xc0\x88\xd1\x72\x41\x78\xbf\xe4\xcb\x87\x59\x43\xff\xb8\xb1\x67\x86\x7c\x3b\x79\x23\x6d\xae\x5f\x68\x4f\xa2\x8b\x08\x22\x62\x7c\xcd\x3a\xb0\xa5\xa3\xd1\xc2\xd8\x5d\xc2\xe7\x8b\xa6\x5e\x3d\xf5\x83\x09\x15\x82\x14\xe1\xed\xc8\x93\x66\xfa\xe6\x6d\xfa\x2b\xb5\x1a\xf0\x70\x82\x73\xb8\x22\xe2\x82\x30\xcf\x3a\xd0\x50\x82\x2c\x85\xb4\x75\xd7\x20\x51\x7e\x58\x27\xff\x2a\x11\x26\x60\x00\x22\x4c\x32\x84\x97\xc6\xbb\x54\x84\x75\xe2\x12\x2f\x35\xb3\x13\x3e\x5a\x0e\x3a\x3d\x90\x00\x6b\xbb\x83\xc0\x39\x61\x10\xce\x03\x0e\x41\xfd\xb5\x88\x0c\x69\x81\x1e\xce\x56\x6b\x76\xf8\x1c\x97\xaf\xa2\x9f\x5e\xd1\x46\xaa\xf6\x52\xf5\x15\x23\x42\xb2\xc3\x92\x9b\x21\x16\x02\x5d\xa0\xb3\xf4\x90\x05\xc9\xac\x53\xd8\x91\xa1\xfb\xc3\x69\x05\x47\x15\x08\x04\xd3\x36\xb1\x15\x86\x02\xb7\x75\xb3\xba\x60\x8f\x67\x3b\xc9\x5d\xee\x96\x93\xc6\x25\x48\xfd\xeb\xf4\x79\x5d\xc6\xa5\xa2\xd3\xb8\x54\xc4\x71\x92\x1b\xcb\x52\xe1\xab\xc6\x9a\x79\xfe\xf1\x92\x4c\x20\xe8\xdb\xea\xca\x96\xaf\xd7\xaf\x96\x4e\x57\xb6\x23\xd9\x7c\xb9\xc0\x1b\xb2\xc3\x2b\x32\xba\x1e\x44\xb7\xfa\x12\xb3\x1b\x2f\x37\xa9\xfc\x8b\x4a\x26\x1a\x11\x2b\x32\x9a\xe8\x16\xb6\x46\x66\x72\x6d\xd5\xde\xdb\xe3\xb8\xdd\x80\x00\xe8\xd0\x95\x6a\xfe\xa7\x19\x46\xb2\xb5\x52\xe3\x3d\x19\xad\xec\xaa\xb2\xfc\x67\x73\xd5\xb3\xf2\xea\x16\x2b\x84\x1f\xc1\x34\xe5\x7c\x79\x47\x84\x3c\xea\xfb\xe8\xe8\x7e\xbf\x6f\x06\xfb\x3c\x5a\x78\x77\xf8\x23\xbe\x6d\x07\xe8\xd8\x90\x1f\xbc\xc5\x8f\x78\x87\xf0\x03\xb9\x35\x9b\xf9\x13\xb9\x6d\x58\xb4\x3e\xa1\xe4\x8e\xe4\xe1\xdd\x7b\x87\x3f\xc1\x54\x52\xf4\x70\xa4\x64\xe5\x7d\x1c\xc3\x8e\xaa\x95\xd5\x50\xb1\x92\x10\xc2\x06\xf7\x71\x3c\x62\x71\x3c\x32\x75\x2b\xf6\x7b\x35\xcb\x6d\x59\x87\x69\xde\x8a\x08\xa7\xa8\xac\x35\xa5\xf7\xc8\xb6\x7b\xa8\x5e\x3d\xa0\xe4\x63\xd7\x40\x3f\xe2\x07\x6b\x12\xd4\x43\x7a\x8b\xdf\xb7\xb1\x11\x62\x74\x8f\x78\x87\x15\x08\x89\x08\xdf\x90\xf7\x06\x3d\x6f\xc8\xfb\x1a\x3d\x76\x0c\x37\xf8\x4d\x1c\x27\x6f\xbb\x3a\x7f\x8b\xdf\xa0\xb2\xf4\xea\xdc\x34\x16\xb5\x2b\xdc\xae\xc1\xdf\xf5\x3d\xf1\x74\xd0\x60\xf0\xa8\xa8\xa8\x9f\x0d\x19\x1f\xaa\xc6\x65\xa3\x8b\x40\x59\x07\x81\x0a\x54\x07\x0a\x57\xa3\x13\xa1\xd3\x27\xf5\x7d\x4a\xdb\x07\x10\xe8\xde\xba\x09\x06\x73\xe2\x1b\x5c\x53\x4c\x31\xd3\xf7\x4e\xee\x72\x0a\x70\xef\xb4\x91\xde\x69\x23\x10\x2e\x6c\x08\x69\x78\x25\x14\x2e\x50\x89\xca\xf2\xb9\x82\x27\x5f\x2e\x66\x29\xa0\x99\x6a\x59\xf0\x8f\x44\xa4\xf4\x50\xa2\x70\xf4\x44\xe7\x47\xbd\x82\xfd\xec\x42\x36\xba\xcf\xd7\xb6\xf0\xb3\x02\xab\x86\x5d\xc9\x54\xfa\xdc\x3c\x0f\x5d\xd8\x71\xe3\xb2\xdb\xbe\xd5\x33\x6c\x2c\x95\xcd\x94\x5e\x69\x2b\x60\x62\xd0\x50\x29\xa4\xbe\x4a\xa1\xef\xf9\x6f\x3e\x39\xee\xf4\xed\x6f\x04\xa3\xab\x08\xa3\xc2\x6f\x77\x96\x05\xef\x10\x35\x72\xec\xdb\xa4\xc0\xa8\xd6\xb6\x4a\x85\x94\x25\x38\x3f\x8e\xd4\x83\x6b\xa5\x66\xfc\xde\xad\x52\xcc\xf3\x45\x7d\x2d\xaf\xaa\x53\x7f\x4e\x1c\x63\x01\xc0\xf0\x11\x89\x09\xc6\x04\xb9\x5b\x8e\x32\xb2\xa2\x12\x82\x0b\x13\xbb\xf1\x42\x62\x55\x46\x96\x08\x54\x64\xca\x58\x61\xb3\xd2\xb3\xd4\x2a\x2f\x0a\xaf\x6b\xa0\x7a\xbe\xa8\x2c\x7b\xef\xf0\x3f\xb4\xcb\xfd\x11\x6e\xf0\xdb\x7b\xde\x77\x51\xc4\x39\x1d\xeb\xf6\x3d\x7a\xd6\xcd\x02\x4e\xff\x47\x50\x18\xf4\xfa\x3f\x68\x1f\x76\xfb\x3f\x68\xf6\x3b\x8f\x37\x68\x95\x7e\x39\xb3\x70\xcc\x4b\x56\x3c\xf9\xfc\x0a\x2d\x5f\xb7\xd6\xcc\xa9\x92\x2a\x2f\x93\x97\x7d\x4d\x28\x5e\x8f\x25\xbd\x63\xb9\xa2\x32\x81\xac\x4b\x97\x16\x27\xd3\x6d\xca\xa0\x66\x9c\x5f\xca\x01\x35\x32\x4b\x53\xef\xd3\x5a\xb1\x57\x95\xcf\xa9\x6a\x12\xe8\xee\x43\x2d\x0d\xe2\x8a\x53\xcd\x1c\xfa\xf3\x53\x0d\x1d\xae\xab\xfa\x21\xa8\x4c\x68\x73\xc8\xf7\xb6\xf8\x23\xe3\x1a\x81\xfb\xbd\x7b\x62\x82\x0f\xd4\x78\x99\x66\x99\xc6\xa2\xa6\x65\x29\xb2\x0c\x16\xdd\xe4\xa4\xc7\xed\x1c\xf5\xb8\x6e\x2e\x45\x01\x14\x70\xba\xa5\x8f\xe0\xee\x0f\x82\xa3\xce\x49\x3d\x69\x5b\x03\xf8\x07\x21\x35\xa7\xd0\xb3\x10\x8d\x37\x83\xbc\xea\xd1\x8f\xf1\x79\xca\xc1\xa7\x55\x09\x3e\x1d\x5d\x97\x08\xd7\xad\xaa\x21\xb5\x9b\xf8\x88\xae\x41\x4d\x2f\xab\xe4\xf7\x3c\xbc\x28\x7e\x5b\xb3\xb7\x58\xb8\xa1\xa3\x36\xdb\x2a\x3d\xd1\xaa\xde\xc6\xe2\x74\xc7\x75\x63\x59\x37\x2e\x08\xc5\x19\x69\xa1\x1c\x27\xc5\x78\x93\xe6\x33\xf8\x37\xc9\xd0\x14\x1e\x3e\x00\x54\x09\xe2\x58\x92\x21\xa4\x11\xdd\xe8\xc9\x87\x60\x2b\xf9\xd8\x10\x59\x9c\xe9\x45\x34\xa1\x83\x1d\xd5\x0c\xec\x77\xbf\x93\x4c\xff\xe7\x56\x33\x80\xc9\x42\xbe\xfa\x41\x60\x6e\x5e\xfd\xae\x8e\xf9\x05\x8b\x7d\xfd\x4e\xe7\x6a\xdb\x77\x66\xe7\x0f\xd5\x0e\xfb\xed\xa6\xed\x97\x05\x69\x2b\xc7\xbd\x5b\xc1\x09\x17\x53\x8a\x9c\x07\xc9\x38\xcd\x32\xf1\xf0\xae\xc8\xb2\x83\x64\x4b\xb2\x2a\x5f\x68\x65\xf7\xc8\xcd\x9f\x10\x22\x67\x74\x5a\x3b\xd2\x10\x39\xbb\xfa\x9f\x44\xc9\x82\xee\xd5\xfe\x1a\xfd\xdb\x15\x1b\x2b\x53\xf4\x74\x1a\x59\x06\x6f\x2c\xec\xd7\x84\x10\xda\xed\xef\xd1\x10\x4b\x8f\x8c\x75\x06\xd7\x43\x5b\x72\x06\x4a\xab\x9e\x5e\x3c\x73\x1e\xfd\x91\x56\xae\xca\x7c\xe1\x96\x81\xad\x13\x0f\xe7\xca\xaf\x5f\xbf\xa2\x9f\xde\xaf\x93\xe8\xa2\x72\x15\xba\xbc\x36\x19\xbf\xa8\x55\xaa\x5e\xfe\x3b\x2c\x53\x22\x2f\xc8\x9f\x30\xa7\x0f\xc3\xef\x53\x45\x13\x3a\xce\x33\xb6\xa4\xc9\x04\x4b\x74\x11\x4d\xa3\x0b\xf7\x42\x22\x84\xa6\x75\x33\xa7\x45\xf6\x56\x53\xcd\xbc\x9f\xa7\x36\x99\x01\xdd\xef\xcd\x3d\x54\x3f\xcf\x4c\x61\x8c\xae\xb4\x1e\x4e\xa1\xe3\x97\x7d\xd7\xe0\xe2\x78\xc4\xf2\x77\xe9\xbb\x84\xa2\x19\x1d\x2b\xf1\xb7\x9b\xf7\xe6\x86\x92\x98\x6e\xfa\x2c\xb6\x93\x2a\x9e\x6d\xb9\xdd\x4f\x43\xe9\x0f\x1d\xcc\xb9\x5a\xda\xbe\xbe\x9a\x98\x87\xcb\xeb\xab\xc9\x97\x54\x12\x3d\x97\x36\x1a\xce\x6f\x51\x64\x96\x20\xb8\x18\xb0\x65\x64\xa2\x88\x29\xe4\xa4\x2f\x8b\x33\x75\x74\x81\x9e\xb1\x87\x1e\x4b\xe6\xe4\xbb\x3f\xd6\x0e\x0d\x73\x2c\x83\x0a\x4b\xb5\xdd\x89\x6d\xfa\x7d\xdc\x03\x77\xc1\x13\xf9\x2b\x16\xc8\x69\x55\xc2\xf1\x91\x05\xcb\xdf\x31\x03\x5b\x57\xf1\xe5\x07\x1d\xfd\x69\x7c\x3d\xbe\x8e\xbc\x51\x14\x32\xbb\xba\x4c\xf9\x72\x23\xe4\x65\x21\x5b\x75\xa7\xe0\xc7\x8f\x69\x4e\xe1\xa7\x67\x25\x32\x7b\xb2\x7a\x82\x48\xc5\x59\x4c\x84\xd5\x53\x72\x70\x74\x8f\x92\x06\x8f\x54\x7e\x19\x4c\x7d\x21\xb0\x45\x30\xdf\xa4\x9c\x0b\x35\xd4\x52\xff\x30\x1d\x2e\xb3\x34\xcf\x87\x69\x3e\x4c\xab\xaa\xbf\x11\x2a\x8d\xc7\x06\xa6\x2e\x2a\xe4\xb0\x2f\xea\x01\xff\x40\xd7\x54\x52\xbe\x74\x3d\xe8\x6f\x87\x9b\x34\xe7\xdf\xaa\xe1\x47\x4a\xf9\xd0\x15\x20\xcb\xe9\x6a\x78\x39\x34\x95\x37\x50\xa3\x85\x1e\x0d\x5d\x35\xfc\x63\x0f\x35\x93\x71\x5c\x17\x0a\xae\xdf\xce\xe8\x54\xd9\xaa\xbe\x09\x1d\xdf\xde\x82\x3e\xe3\xf6\x76\xbf\xb7\x38\xbf\x83\x32\xb9\x46\xc5\xf1\x7e\xad\xb9\x8d\xb9\xf1\xc0\x17\x0a\x21\xcc\xc8\xca\xe6\x46\x1c\xb3\xed\x2e\xa3\xfa\x09\xc4\x7d\x5b\xe1\xe8\xbf\xfe\xfe\xd3\x8f\x2e\x7b\x62\x12\x19\x45\xaa\xac\xd3\xfe\x9b\x46\x6f\xcd\x77\x49\xa4\xe9\x21\x42\x03\x31\xde\x48\xba\x26\x12\x33\xa8\x70\x3e\x4e\x77\x3b\xca\x57\x6f\x36\x2c\x5b\x25\x02\x95\xc6\x2a\x73\xf0\xb1\xcd\xe2\x9c\x9a\x8f\x15\x66\xe3\x8f\x62\xf5\xd8\xf8\x38\x45\x18\xb8\xab\x69\x13\x5e\x62\x5b\xfc\x72\xf8\xcb\x87\x1f\x6b\x9f\xe0\x30\x09\x72\x1c\xdd\x16\x32\x33\x3f\x56\x24\x98\x82\x2f\x7f\xb0\x1a\x74\xa3\x5c\xb3\xbf\x36\xd6\xb6\xa9\xc2\x43\xba\xd1\x8b\x3e\xa4\x9f\x76\x92\xe6\x50\x24\x75\x5b\xe4\x6a\x48\x99\xda\x50\x39\xfc\x48\x41\x9c\x1c\x0a\xe9\x91\x21\x1e\x6a\x32\x8d\x2e\x2a\xbd\xf4\x80\xd6\xba\x2a\x67\x19\xb6\x35\xa8\xc0\xdb\xb7\xfa\x11\x3f\x2d\x05\xcf\x95\x2c\x96\x4a\xc8\xa9\x9d\x12\xc5\xbe\x9c\x7f\xed\x55\xdc\x9b\xb4\x2a\xee\x4d\x20\xed\x42\x1c\xbb\x12\xb5\x79\x83\x80\x66\xc1\xb7\x80\x9b\xa9\x47\x7e\x04\xf4\x0e\x58\x79\x17\xd4\x32\xd1\x53\x70\xbc\x46\xb6\xb9\x4c\xc5\x48\x0e\x79\x4c\x21\xb3\xcb\x9c\xa6\x72\xb9\xb9\xdc\xa5\x32\xdd\xe6\x5f\x91\xd9\xb4\x2a\x81\x4c\x5e\xc9\xd7\x2a\x90\x5d\x52\xcd\xe5\x62\xc0\xc7\x35\x8e\x89\xff\xc7\x7e\x3f\xba\x06\x8b\x72\x8d\x67\x32\x9a\xe0\x08\xc6\x10\x31\x70\x10\x4c\xf8\xd8\xad\x09\x19\x4d\xba\x6f\x6e\x1c\xcc\x26\xbc\xd6\xbe\xfb\x3e\xcf\x50\x48\xdf\xa6\x41\x8c\x63\x9a\xf8\x54\x21\x11\xe6\xf0\x0e\x7c\x04\xcb\x32\x41\x98\x77\x71\x58\xa0\xf3\x97\xe4\xb0\x8e\xc1\xe2\x51\xc7\x86\x71\x7b\xd8\x19\x11\xa2\xca\x43\x43\x26\x14\xcf\x21\x9a\x29\xba\xd5\x54\x98\x4a\x15\xd9\x22\x91\xad\x94\x87\x60\x96\xa8\x76\x37\x04\xa6\x94\xa5\x09\x84\x8a\x94\xb8\xb1\x92\x54\xeb\xd3\xa6\xe6\x58\x33\x99\xea\x1b\xfd\x47\xd4\x75\x43\x6e\x76\x66\x3e\x6c\x55\x58\x77\x43\xb2\xa3\x4e\x2c\x40\x2d\xbc\xd8\x1e\x60\xb5\x96\x22\xeb\xdb\x8b\x6b\x7f\xb2\xa7\x1a\xb0\xd7\xdb\x46\xe4\xaa\xf7\x7c\x44\xae\x4e\xcf\x07\x00\x7a\x3d\x98\x1a\xec\x7d\xfb\x30\xad\x1b\xc3\xe3\x50\x2d\xb4\xff\x10\x39\x18\x0a\x7a\x0c\xd3\x00\xf6\x51\x2f\x64\x6f\x64\xe8\xb6\xa7\x51\x0e\x00\xfd\x1e\x52\xb5\x39\x67\x3e\xae\xfd\xe9\x9e\x2a\xc0\x5e\x6f\x86\x61\xf6\xed\xcb\xb4\x3e\xd9\x93\x03\xea\x13\x51\x9a\xf7\xee\x45\xb7\x3d\xbd\x3a\x00\x50\xf7\xb0\x30\xa7\xc6\x2b\xb0\xed\xd9\x32\xe2\x6f\x34\x3b\x41\x09\xf7\xe5\x56\xde\x3e\x4b\xb8\x58\x75\x9d\x25\x2f\x23\xaf\x62\x3a\xfe\xe5\xc3\x8f\x37\x80\x9d\x9f\xe1\x88\x72\x17\xc2\xff\xaf\x67\x8b\x95\x9c\x9f\xca\x2a\x24\x29\x2a\xb8\xe9\x70\x55\xcb\x4d\x3f\xa4\xb9\xfa\xab\x10\x95\x9b\x8f\xfb\x7b\x6c\xeb\xd3\xc3\x7a\x46\x68\xc0\x89\xd0\x08\x0e\xa0\x99\x99\x5f\xfc\x77\x98\xef\xf7\x49\xe7\xd1\xf6\xaf\xcb\xc3\x33\x5e\x1e\x06\x26\x8c\x22\x51\x44\x80\x17\x47\x76\x0f\x01\x71\xc8\x0a\xe9\xf0\x7e\x97\xca\x1c\xc2\xf5\x5f\x52\x62\x57\x07\x42\xec\xbf\x24\xf8\xe7\x96\xe0\xbf\x48\xf0\xb2\x8c\xd0\x91\x83\x18\xaf\x85\xdc\xa6\x2a\x69\xb5\x45\xa8\x83\xf7\x9a\x40\xc2\xc0\xca\xcb\xc3\x95\xaf\x4e\x0e\x54\x06\x18\xc6\xb1\x83\xe3\xf0\xa6\xd1\x4f\xe9\x52\x31\x18\xe5\xeb\x3d\xf9\x52\xac\xe8\x2f\x1f\xfe\xf6\x46\x6c\x77\x82\xeb\x1b\x2e\x45\x63\x49\x77\x59\xba\xa4\x50\x12\xa8\x0c\xea\x4b\x57\xf4\xf0\xbb\xea\xb3\x14\x47\xc3\x08\x79\x5f\xba\x84\xfc\x1a\x41\xf3\xe5\xa2\x45\x57\x50\x8d\x07\xeb\xe1\xce\x40\x27\xd9\xf0\x07\xa6\xc4\xe9\xb1\xaf\xbd\x14\xa4\x0a\x73\xcc\x48\x42\xf7\xfb\x28\x42\xe3\x7c\x97\x31\x95\x44\x71\x04\x15\x0d\xb1\xbe\xb4\xbb\x3a\x2c\xaf\x53\xa8\xc5\x72\x79\xfd\x3a\x51\x24\xe1\x84\xcd\xc5\x02\xd5\x4a\x76\x12\x21\x5b\x6f\xd3\xdc\xdf\x13\x99\xf0\x4a\x8f\xae\x59\x44\xfd\xb7\xba\xb8\x06\x45\xba\x05\x6d\x7d\x99\xea\xcf\x34\x3b\x41\xe5\x97\x28\x8c\x39\xa6\x0d\x09\x82\x84\x0c\xe2\xde\x79\x46\x76\x89\xc2\x56\xdc\x31\x84\x03\x08\x80\xb7\x20\xb5\x23\x9c\xfa\x6d\x22\x84\xab\x23\x7f\x24\xe3\x38\x8d\xe3\x54\xef\x30\xf0\x61\x6f\xb8\x1b\xd4\x94\x62\xe2\xd0\xec\x34\x7d\xbe\xaa\x8f\x53\x9b\xc9\xdb\x5d\x53\x12\x3d\x99\x9c\xaa\xba\xd9\xf8\xb6\xc8\x77\x58\xcd\xa2\x59\x74\xa1\xa6\x1a\x3f\x1e\x31\x69\x36\x37\x36\x61\x52\x0d\x86\xfd\x45\x60\xb9\x1b\x71\xe3\x83\xcf\x1e\xee\x21\x73\x66\x9e\x37\xb1\xc1\x0a\x51\xb0\x86\x7a\x1e\x44\x1a\x90\x84\xe3\x35\xac\x79\x91\xef\x22\x60\x94\xfe\xe6\x6f\x70\x45\x43\x09\x4c\x33\x84\x24\xd5\x0b\x14\x34\xa3\x19\x68\x8d\xa5\xee\x03\xb6\x48\x94\x16\x52\x21\x43\x65\x88\x30\x19\xcd\x13\x85\x9f\x34\xb1\x4c\x9f\xc2\xe2\xb1\xd0\xe7\x6b\x8d\x22\x74\x28\x1a\x37\x72\xba\x7b\x23\x1c\x88\xd6\x22\x50\x60\xf8\x9b\x44\x99\xf0\x50\xdd\xb2\xab\xd7\xf4\xf3\x7b\x4d\x4f\xf7\x6a\x5a\x76\xf5\xbd\xaa\xbf\x3b\x80\xbe\xdf\xdb\xa2\xe7\xfa\xe0\xe5\x36\x66\x15\x7e\x47\xed\x31\x2a\xf4\x54\x43\x72\xa5\xd2\x51\x59\x96\x2e\x3b\x77\x39\x70\xa1\xd1\xf5\x9e\x16\xe4\x6a\x3e\xfa\x36\x41\xff\x5c\xec\xbf\xf9\x6e\xb2\xff\x66\x32\xb9\xba\xc3\x29\xb9\xfa\xc7\xc5\xd5\x1d\xce\xc9\x53\x34\x8a\xa6\xd1\x37\xdf\x5d\x47\x38\xfa\x16\x9e\xfe\x1c\xe1\x28\x81\xa7\xff\x88\x70\x84\xe0\xe9\x3f\x23\x1c\xfd\x53\x3f\xfd\xf9\x6d\x84\xa3\x6f\xbe\x9b\x44\xd3\xe8\x42\x3f\x4d\xf4\xd3\x3f\x26\x51\x89\x9b\xfb\xdd\xb9\xd1\xcf\xe9\xa2\xc4\x99\x2f\x94\x2a\xf9\xf8\xe4\xd2\x05\xdc\x3c\x6e\x3f\x8a\x6c\xcc\x14\x95\xa9\x12\xb2\x5c\xa6\x6a\xb9\xa9\x3f\x1f\x5d\x83\xba\x66\x49\xa2\xdb\xdb\xd6\x79\x76\x7b\x3b\x8d\x2e\x7e\x4a\xd5\x66\x2c\x53\xbe\x12\xdb\x04\x0d\x1c\x4b\x21\x21\xa7\x7b\x7b\x4c\x0c\x28\x24\xc9\x98\xc9\x39\x5d\x18\x07\xf1\x28\xba\x50\x68\xaa\xff\x26\x73\xfd\xbc\x28\xb1\x63\x21\x8d\x09\xb9\x84\x14\x06\x0e\x4c\x8b\x69\x8a\x0a\x70\x54\xd7\x97\x67\xc2\x1c\xaa\x99\x96\x07\xe6\x93\x85\xb5\xa9\xc1\xb7\x7f\xc9\xb2\xb3\x3e\x77\xc7\x08\x82\xb8\x1a\xa6\xef\x95\x21\xa4\x9b\x2f\x0c\x14\xdd\x2c\x6f\x8c\xd2\x49\x2a\x66\x16\xde\xa4\xad\xa7\xff\x51\xf4\xd5\xf2\xf1\xfb\x07\xee\x8e\xa2\x77\xe9\x96\xe6\xc1\x78\x35\x7d\x75\x9a\xf3\xc5\xe1\x0f\x12\x3d\x39\x0e\x0d\x0e\x6f\x76\x47\x36\xff\x83\xb0\xd9\xdc\xa7\x1d\x53\x92\x68\xbe\x30\xe9\x5e\x0e\xc3\xe3\x30\xc0\x75\x8e\xff\x66\x53\x28\xf2\xc4\xe9\x27\xd5\xae\x6c\xa4\x0f\xbe\x7c\xc3\xd6\x2a\x71\x82\xf7\xd3\x4a\x70\x3a\xad\x2c\x96\xca\x32\x3c\x55\x96\x55\x96\xa4\x0c\x82\x2b\x5b\x54\xbb\x20\x01\x0d\x80\x61\x90\x6c\x0c\x30\xce\x9a\x43\x35\x03\xf5\xfb\x98\x01\xe5\x4a\xb2\xf3\xa6\xe0\x2d\xc3\x5c\x62\x88\x56\xfe\xcd\x27\x92\x41\x86\x8e\x83\xf6\xd5\xfc\x10\x66\x63\x25\xfe\xfb\xe6\xfd\xbb\x43\x18\x4f\x65\x09\xbf\x9a\x43\xfe\x00\x13\xce\x65\xd3\xed\x12\x9c\x6a\xdc\x68\xb9\x52\xea\x9d\x28\x20\x43\x0f\x27\x2a\x91\x08\x53\x32\xc1\x8c\x88\xb9\x5c\xbc\xa2\x75\x69\x54\x7a\x71\x81\x6c\x74\x0c\xbf\x88\x48\x74\xa1\x20\x53\x1c\xaa\xee\x84\xe9\xf8\x7f\x05\xe3\x20\x8f\x96\x36\x29\x7d\x50\x2a\xc4\x3b\x12\xdc\xa2\xdf\xd3\x7c\x29\xd9\x4e\x09\x59\xcb\xec\x1b\x5f\x06\x34\xac\x73\x50\x09\x20\x8e\x99\x62\xee\x1c\x05\x29\x88\x32\xf6\x68\xaa\xe5\x67\x5c\xcb\x2c\xb5\xc8\xb4\x3a\x57\xc1\xf0\xad\x7f\x22\x7e\x3b\x4c\x97\x4b\x9a\xeb\x9b\xbf\xe0\xc3\x94\x0f\xcd\xad\x7e\xa8\x36\xa9\x1a\xae\x04\xcd\xe1\x82\x59\x19\xed\x86\x8c\x2b\x2a\xd7\xe9\x92\xea\x4b\x27\xd4\xe3\x46\x65\xeb\x86\x03\xd2\x79\x40\x2d\xe6\xdb\x78\xdb\x3a\xb4\x7e\x46\x98\x67\x88\x67\xee\xd4\xa2\x61\x3a\xe6\x94\xae\x7e\x16\xd9\xe3\x9a\x65\x19\x71\x65\xee\x1e\x18\x5f\x89\x87\x38\x36\xff\x83\x86\x48\x04\x5e\xde\x34\xa4\x8c\xca\x5b\x13\xa7\xe4\x98\x4e\x0a\xe7\xa4\xd6\x13\x54\x69\x1b\x18\x2e\x48\x1e\xc7\x7a\xd9\x58\x12\x6d\x94\xda\x4d\xaf\xae\xe8\xa7\x54\x2f\xc2\x78\x29\xb6\x11\xaa\x09\x2b\xab\x36\xce\x28\x49\xf7\xfb\x3c\x8e\x0b\xd0\x81\xc4\xf1\x09\xda\x4c\x3c\xb7\xf4\xfa\x86\x81\xca\x74\x96\x78\xe1\xde\x01\x74\x09\x22\x8f\x4c\x18\x4d\xb3\x04\xcd\xbc\x04\xf3\xd3\x3c\x8e\x47\xc5\xd8\xa7\x39\x1b\xfc\xd8\xd4\xb6\xb2\xd0\xd2\x88\xa6\x57\xfc\xe0\xff\x02\x00\x00\xff\xff\xaa\xe9\xfe\x50\xa9\xf8\x12\x00") + +func web_uiV2AssetsVendor314559974db7480f89eff5585c15bd34JsBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsVendor314559974db7480f89eff5585c15bd34Js, + "web_ui/v2/assets/vendor-314559974db7480f89eff5585c15bd34.js", + ) +} + +func web_uiV2AssetsVendor314559974db7480f89eff5585c15bd34Js() (*asset, error) { + bytes, err := web_uiV2AssetsVendor314559974db7480f89eff5585c15bd34JsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/vendor-314559974db7480f89eff5585c15bd34.js", size: 1243305, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2AssetsVendorC3a9380433ef2f2efb4ed437d3b54b31Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\xdf\x8e\xe3\x2a\x0f\x7f\x95\x7c\x1a\xad\x76\x57\x6a\x46\xb4\xd3\x6e\x77\x12\xe9\xd3\x4a\xe7\xfa\x3c\x04\x09\x4e\x82\x4a\x20\x07\x48\xff\x6c\xd4\x77\x3f\x02\x42\x1a\x1a\xda\x99\xbd\x3a\x1a\xcd\x45\x8d\x6d\xec\x1f\xc6\xfe\x91\xd7\xbf\x04\x81\xbf\xa9\x94\x42\x0e\x95\xe0\x3a\xad\x70\x4b\xd9\x25\x6b\x05\x17\xaa\xc3\x25\xe4\x0d\xd0\xba\xd1\xd9\x1b\x42\xdd\x39\x2f\x05\x13\x32\x7b\x41\x08\x5d\x67\x96\x29\xa3\x1c\xd4\xd0\x61\x42\x28\xaf\xb3\x6d\x77\x4e\x82\xf5\xa4\x93\x30\xad\xa2\x64\xdb\x9d\x03\xeb\xba\xd7\x1a\x64\x5a\x51\xc6\x40\xae\xe6\x2b\xaa\x94\x82\xb1\x02\xfb\xc5\xa1\xc0\xe5\xa1\x96\xa2\xe7\x24\x1d\x43\xa9\xaa\x2a\xe2\x4c\x0d\x85\x90\x04\x64\x2a\x6d\xf0\xeb\xee\x9c\x28\xc1\x28\x49\x5e\x08\x21\x79\xc4\xcb\xde\xfc\xe5\xa7\x86\x6a\x48\x6d\xde\x19\x17\x27\x89\xbb\x45\x9a\xbc\x6f\x0b\x90\xb3\x6c\xde\x4c\xb6\xc9\xae\x3b\xe7\x2d\xe5\xe9\x89\x12\xdd\x64\x1b\x83\x95\x86\xb3\x4e\x31\xa3\x35\xcf\x6c\x14\x1e\xbc\xf7\xf7\xf7\x8f\x36\x72\x49\xb4\x58\x1e\x40\x0e\x0f\x30\x9f\xeb\xa4\xaa\x2f\x34\x83\xe1\xb6\x43\xa0\x5a\xf6\x52\x09\xe9\x21\x61\x50\x05\x88\x20\x84\xf2\x00\x2d\x2e\x38\xe4\x2e\x91\xf0\x18\x09\x3d\x06\xa7\x03\xa5\xe0\x04\xcb\xcb\x53\xff\x8a\xb2\x23\xc8\xeb\x6b\xd9\xa6\x15\xd6\x63\x2c\x49\x24\x3c\xb7\x23\xee\xb5\x18\xc3\xc9\xd0\xff\x68\xdb\x09\xa9\x31\xd7\xb3\x33\xcb\x5e\xf6\xb0\xbf\xf7\x77\x17\x9a\x93\xaa\xe1\x77\x4a\x39\x81\x73\xb6\xb6\xfa\x98\xd3\x16\x6b\x98\xd9\xc5\x36\xcd\xd3\x13\x14\x07\xaa\x47\x75\x2a\x78\x56\x30\xca\x0f\xc9\xfa\x15\xfd\x50\x89\xd2\xd0\xa9\x6f\xeb\xef\x09\xe5\x15\xe5\x54\x43\xfe\x59\xbd\x65\xd9\x99\x44\x7e\xf9\xed\x0e\x70\xa9\x24\x6e\x41\x25\xd6\xcd\xb0\x43\x5f\x96\xf5\xae\x25\xe6\xaa\xc3\x12\xb8\xbe\x5e\x7f\xfd\xb9\x89\x81\x41\xe3\x62\x20\x54\x75\x0c\x5f\x32\xca\x4d\x51\xa7\x05\x13\xe5\xc1\x55\x2c\x81\x52\x48\x97\x0e\xe5\x0d\x48\xaa\x83\x5a\x92\xbd\xbd\x87\xf1\x52\x2a\xcb\x32\xef\x84\xa2\xd6\x1a\x17\x4a\xb0\x5e\x83\xdd\x53\xa5\x04\x2a\xdc\x33\x9d\x98\x5f\x0d\x60\x32\xaf\xec\x2a\xa2\xf3\x4f\x2f\xf4\x54\xd1\xe8\x1d\x59\x15\x0e\x35\xd6\xf4\x38\xc9\xc9\x76\x6b\xe5\x6e\xd3\x9b\x7c\xf3\xbe\xb9\xde\x36\x5a\x59\xef\x5a\x0a\x5e\xbb\x26\x77\x72\x3d\x6d\x8f\x9c\x57\x68\x9d\x58\xe9\x0b\x83\x8c\x6a\xcc\x68\x69\x17\x2c\xa8\xf7\xa8\xf4\x9c\x80\x34\xa8\x5d\x47\xb7\xf4\x00\xba\x91\xa2\xaf\x9b\x85\xae\x05\x77\x5c\x8c\xe4\x78\x80\xcb\x49\x48\xe2\xa3\xde\xa3\x9f\x11\x25\xac\x45\x3b\xe5\xb5\x7e\x8f\x68\x8c\x3d\x69\xd4\x59\xff\xd8\x46\x74\x08\x54\xcf\xf1\x3e\x62\x49\x71\xc1\x20\xdd\x4c\x7a\x3b\xfc\x4c\xef\x6d\xd2\xfb\xb9\x8b\xe8\x95\xa2\x6d\x81\x6b\xaf\x84\x77\x28\xa2\x64\xd0\xe3\xf5\xa4\xb3\x5e\x3f\xd4\xb9\x85\x55\x45\x3d\xb5\xa0\xf1\x2a\x56\x45\x98\xd1\x8a\xde\xd0\xd9\xed\x62\xc1\x16\x3d\x65\x9a\x72\xaf\xf4\x86\x62\x99\x17\x12\x97\x07\xd0\xb7\x2e\xbb\x8f\x28\x69\x3c\xa5\xb3\xde\xc7\x02\xc5\x5a\x4b\x5a\xf4\xb3\xda\x46\x65\xec\x8a\xc8\xa0\x9b\x2f\xd6\x6d\x69\xde\x79\xa0\xfc\x88\x19\x25\x65\x83\x65\x04\x0a\xb0\x43\xde\x99\x48\x20\xe1\x84\x10\xad\xb9\x42\xbc\xf6\x37\xbb\x10\x5a\x8b\x36\xdb\xf8\xbb\x7d\x0d\x1b\x6c\xa2\x3a\xcc\xe7\x0e\x5a\xac\xcb\x86\xf2\xfa\x0e\x23\x54\xa1\x8f\x2c\xb9\xe0\x0f\x8c\xab\xcd\xe6\x1a\xdb\xc3\x40\x3c\x1b\x07\xb2\x2e\xf0\xb7\xcd\x6e\xb7\x5a\xef\xd0\x0a\xad\x5e\xdf\xbe\x07\x56\xb8\x34\x8d\xc1\x75\xb9\xc9\x68\x6e\xff\x02\x3f\xab\x4d\xc8\x22\x86\xa9\x89\x49\x60\xb6\xe1\xe4\xe2\x08\xb2\x62\xe2\x94\x35\x94\x10\xe0\xc1\x3c\xba\xe7\x20\x8e\xb6\x0c\x93\x89\xfb\x3d\x1b\x66\x2d\x96\x35\xe5\x1e\xe4\xf4\xcd\xd0\x85\x51\xe6\x46\xb0\x13\x8d\x24\xc3\xeb\x59\xd9\x48\xc7\xd6\x08\x7d\xc9\x45\xaf\x4d\x5e\x19\xca\x17\xf1\x86\xf1\xd0\xdf\x10\xcb\x29\x98\xfa\xc6\xfb\xd8\xc7\xe7\x13\xe3\x73\x44\xad\x99\x98\xda\x53\xfe\x16\x2c\x1e\xa7\xd5\x61\x31\x33\x72\x3f\xb8\x7f\xe4\x7e\x52\x19\x56\x72\x7d\x60\xef\x32\x40\xb9\x16\x5d\x86\xa6\xa3\x4a\xcf\xfe\xb0\x26\xc9\x65\x3c\x8b\x6b\x3c\xf8\x61\x44\x1a\xe5\x76\xb2\xa1\xb9\xe1\xbd\xab\x73\xcc\xd5\x82\xb0\xfa\xc8\xbc\xe3\xc7\x78\x0e\xe3\x96\x4f\x34\x55\x04\xa8\xd1\xca\x65\x6e\x18\xe8\xbc\x40\x3c\x8a\x6f\x11\x67\x43\xc8\x41\x65\x8b\x59\x50\x5c\x51\x86\x70\x04\xa9\x69\x89\xd9\xc8\x6b\xb5\xe8\x62\xb5\x1c\x4b\xd2\x70\xdc\x0e\x9e\x1d\xf5\x76\x7e\xa7\x50\x12\x90\x3f\x47\xcd\x4c\x09\xcc\xa4\x9e\x38\xf5\xca\x30\x60\x60\x50\x8e\xdc\x35\x6d\xc5\xef\x98\x54\x2d\x85\xf7\x82\x58\xe8\xb3\xb6\xb1\x8c\xde\x01\x3f\xd5\xcd\x94\x4c\xcc\x11\x30\x1d\xf1\xe0\x98\x68\x36\xb6\xea\x07\x1e\xdc\x0b\x6b\x54\x35\x2c\x23\x38\xeb\x10\x72\xfb\xdc\xf2\x77\x1b\x13\xda\xab\x6c\x62\xf8\x23\xad\xbf\x83\x3a\x9f\x3f\xfd\x46\xd6\xe7\x64\xa6\x75\x4c\x12\x77\xd4\x19\x0a\x9e\x2f\x9d\x84\xdc\x90\x18\x7b\xc2\xbe\x90\x6c\xc9\x8c\xd1\x79\x6b\xd7\xd5\xfd\x2f\x9f\xe6\x66\xd9\xbb\x6e\xbd\xf6\x48\x15\x2d\x18\x4c\x27\xad\x71\x97\x36\xb4\x6e\x98\x71\xbc\xa4\xb7\x93\x9e\x0d\xdd\x12\x15\xae\x53\x46\x6b\xac\x7b\x09\xca\x9d\xf8\x93\xb5\x00\x71\x93\x8e\x45\xf2\x96\x5c\x21\x01\x1f\x52\xf3\xfb\x1e\x01\xbb\xee\x60\xb0\x4a\x23\x0e\x8b\x23\x7c\x5a\x4a\xe3\x55\x0e\x9b\xd9\xa2\xb2\x96\x2f\xef\x13\x25\x35\xe8\x48\x7f\xbf\x61\x3c\x21\x6a\x5e\x3a\x77\x93\x9f\xc0\x30\x0d\x92\x48\xd5\xae\x22\x7d\x68\x15\x7f\x15\x47\x7a\xff\x6a\x39\x87\xfc\x21\x15\xe2\x6c\x24\xe6\x15\x5d\x0a\xae\x81\x5b\x51\x1e\x17\x87\x44\x00\xb0\xea\x25\x44\x20\x74\xe5\x6d\xfb\xd7\x58\x7d\x68\x31\xb9\x6d\x51\x51\x46\xb5\xef\xe9\xb1\xb7\x72\xe4\x15\xb3\x0c\xc0\x7d\xd7\xf0\x9a\x4a\x63\x4d\xcb\xeb\x83\x97\xe8\x62\xd7\x48\xdd\xc7\xdb\x75\x25\xca\x5e\x01\x79\xf0\xc4\x5d\xdd\x89\x89\xc4\x75\x64\xcf\xf1\x26\x85\xc3\xca\xb6\x3d\x08\xc9\x10\x79\x37\x7f\xd1\x00\x3e\xb6\xdd\x93\x6d\x15\xd6\x50\x29\x85\x52\x0d\xa6\xd2\xf7\xae\x49\xb0\x28\xe3\x2c\xb3\x7d\xdb\x79\xa6\x82\x2f\x8a\xec\xff\x86\x3a\x7e\x4e\x2b\xaa\xfa\x51\xac\x2e\x88\x0f\xf7\xff\xdc\xd6\x7f\xb8\xeb\x7f\x91\xba\x79\x21\x00\x96\x96\x53\x0f\x21\x9f\xc5\x79\x8c\x60\x9b\x7f\xb4\x7a\xdd\x7e\x77\x5f\x5f\x84\x2c\x21\x75\x73\xc5\x7f\x0f\x1b\xb9\xe4\xab\x99\x48\xbf\x5a\x20\x14\x27\x9d\xa4\x5c\x0f\x4f\x3e\x23\x3d\xbc\x21\xd3\xd7\x0a\xdb\x5d\xd3\x06\x97\x87\x0c\x57\xda\xbe\xe5\x6c\x63\xc8\xbe\x7e\xbd\xde\x3f\x27\x7c\x61\x9a\x19\x39\x84\x53\xee\xfa\x6f\x00\x00\x00\xff\xff\x5a\x97\xfb\x98\xed\x14\x00\x00") + +func web_uiV2AssetsVendorC3a9380433ef2f2efb4ed437d3b54b31CssBytes() ([]byte, error) { + return bindataRead( + _web_uiV2AssetsVendorC3a9380433ef2f2efb4ed437d3b54b31Css, + "web_ui/v2/assets/vendor-c3a9380433ef2f2efb4ed437d3b54b31.css", + ) +} + +func web_uiV2AssetsVendorC3a9380433ef2f2efb4ed437d3b54b31Css() (*asset, error) { + bytes, err := web_uiV2AssetsVendorC3a9380433ef2f2efb4ed437d3b54b31CssBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/assets/vendor-c3a9380433ef2f2efb4ed437d3b54b31.css", size: 5357, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2IndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\x5f\x73\xdb\xb8\x11\x7f\xcf\xa7\x40\xd9\xf1\x53\x8b\x15\xb0\xf8\x7f\xb5\x3c\xe3\x3a\xbe\xbb\x74\xce\xb1\xc7\x71\x32\x77\x4f\x19\x8a\x84\x2c\x5e\x29\x51\x25\x69\x39\xf6\xa7\xef\x2c\x40\xc9\x72\x92\xbb\x99\x4e\x1f\x0c\x2d\xb1\x8b\xdf\xfe\x5f\x60\x7c\xfa\x97\xb7\xd7\x17\x77\xbf\xdd\x5c\xb2\xd5\xb8\x6e\xcf\xde\x9c\xd2\x0f\xab\xda\x72\x18\xe6\x45\x5c\x2f\x62\xcf\xdb\xae\xac\x9b\xcd\x7d\x71\xf6\x86\xb1\xd3\x55\x2c\x6b\x22\x18\x3b\x5d\xc7\xb1\x64\xd5\xaa\xec\x87\x38\xce\x8b\x87\x71\xc9\x7d\x71\xcc\x5a\x8d\xe3\x96\xc7\xff\x3c\x34\xbb\x79\xf1\x2b\xff\x78\xce\x2f\xba\xf5\xb6\x1c\x9b\x45\x1b\x0b\x56\x75\x9b\x31\x6e\xc6\x79\xf1\xee\x72\x1e\xeb\xfb\xb8\x3f\x39\x36\x63\x1b\xcf\x2e\xba\xcd\xf0\xd0\xb2\xc5\x13\xfb\xb9\x1c\x56\xcd\x45\xd7\x6f\x4f\x67\x99\x75\xa4\x60\x53\xae\xe3\xbc\xa8\xe3\x50\xf5\xcd\x76\x6c\xba\xcd\x11\x6c\xf1\xad\xe0\xae\x89\x8f\xdb\xae\x1f\x8f\xa4\x1e\x9b\x7a\x5c\xcd\xeb\xb8\x6b\xaa\xc8\xd3\xc7\xdf\x59\xb3\x69\xc6\xa6\x6c\xf9\x50\x95\x6d\x9c\xcb\xe2\xec\x4d\x42\x7a\x73\x0c\x55\x25\xfb\xf8\x43\x33\xab\xba\xcd\xb2\xb9\x9f\xc5\xcd\xae\xe9\xbb\xcd\x3a\x6e\x8e\xe1\x4f\xdc\x3f\x4f\x10\xd7\x5d\xfd\xd0\xc6\x9b\x3e\x2e\x9b\x2f\x27\x88\x27\xea\xfc\x04\xf1\x80\x40\x3b\x78\x71\x82\x78\x04\x71\x90\xda\xf6\x5d\xfd\x50\x91\x6b\x07\xb1\xbe\xeb\xc6\x8f\xb7\xbf\x1c\x44\x66\x0f\xcd\xec\xc0\x6c\xbb\xaa\x24\xe9\xbb\xa7\x6d\x3c\x48\x94\x0f\x63\x77\x90\xb8\xa4\x94\x5e\xbe\xff\x34\x71\x93\x81\x3f\x5e\x9e\xdf\x7d\xbc\xbd\xfc\x70\xbc\x57\x0f\xbc\x59\x6f\xfb\x6e\x17\x6b\x5e\xfe\x5e\x4e\x86\x8f\xfd\x43\x3c\x71\x6f\x27\xa8\x5f\xef\x2e\xdf\xbf\xfd\x7c\x73\x7b\x7d\x77\x4d\x15\xf4\xea\xfc\xdb\x72\x9c\x2c\x58\x96\xed\x90\x0e\xed\xcf\x9d\xdf\xdc\x1c\x4b\x52\x44\xff\x24\x2c\xbb\xd8\x0f\x93\xff\x49\x02\x41\x80\xf8\x5b\x59\x59\x1f\xb5\xf3\xb4\xbd\xc7\xed\xe3\xd0\x3c\xc7\x0f\xb1\xa7\x6c\xbe\x8d\xcb\xf2\xa1\x1d\x87\x63\x4d\xcd\xe6\xf7\x98\x82\xf9\x63\x59\x8d\x5d\xdf\xc4\x3d\xd7\x10\x97\xca\xe3\xa0\x95\x52\xd8\x77\x6d\x1b\xfb\xa3\xad\xf5\xb6\xdb\x4c\xd9\x31\x2f\xee\x5c\x5c\xbf\xff\xf0\xf1\x97\xcf\x3f\xbd\xbb\xfb\xfc\xe1\xe7\xf3\x97\xa8\x1f\x59\x78\x2c\xf7\xe9\xf2\xf6\xc3\xbb\xeb\xf7\x07\x39\x09\x12\xc4\xd7\x42\x6f\xaf\x2f\x3e\x5e\x5d\xbe\xbf\x3b\xbf\x7b\x77\xfd\xfe\xf3\x71\xba\xa9\xa9\x86\x13\x75\x3e\x9b\x3d\x3e\x3e\x42\x0e\x17\x34\xdd\xac\xee\xaa\xe1\x6b\x94\x8b\xeb\x9b\xdf\x6e\xdf\xfd\xf4\xf3\xdd\x9f\x20\xac\xa8\xbf\xaa\xae\xdf\x42\xd5\xad\xff\x18\xe0\xb7\xcb\xf3\xdb\x97\x14\x08\xf9\xe2\x56\xfc\x42\x3d\x75\xbe\xdd\xb6\x4d\xae\xbd\x9f\xda\x6e\x51\xb6\xaf\x73\x5f\xb0\xd9\xd4\x8f\x6d\xb3\xf9\x37\xeb\x63\x3b\x2f\x9a\x8a\x1a\x76\x7c\xda\xc6\x79\xd1\xac\xcb\xfb\x38\xdb\x6e\xee\x0b\xb6\xea\xe3\x72\x5e\x50\x55\x97\xc3\x10\xc7\x61\xb6\x2c\x77\x24\xca\x15\x7e\x51\xc8\xad\xb6\xce\xa8\x12\x85\xa9\x6c\x69\xeb\x85\x5b\x06\x55\x8b\x5a\x2e\x4a\x25\x16\x75\x50\x90\x40\xa8\x10\x86\x79\x91\x8e\x14\xff\xb7\x66\x69\xbf\x48\xcb\xad\xc3\x4a\x49\xe5\xb4\xd5\x76\x81\x7a\x81\xca\x2c\x82\x91\xd2\x1b\x57\xd5\x65\x1d\x5f\x69\x4e\x47\xf6\xa3\x23\xab\x6e\x36\x63\xbc\xef\x9b\xf1\x69\x5e\x14\xd9\x8e\x61\x7c\x6a\xe3\xb0\x8a\x71\xfc\x8e\xf2\x5d\xdc\xd4\x5d\xcf\x2b\x55\x06\xe5\x85\x56\x2a\x2e\x71\x89\x71\xb9\xd0\xb1\xd6\xca\xd5\x6a\x61\xf4\x42\x49\xa8\x86\xe1\x95\x87\xff\xa3\x9a\x43\xc3\xf1\x65\x2d\x14\x96\xa5\xad\x75\xe5\x65\xb5\xb0\x4e\xea\x45\x1d\x9d\x90\x61\x59\x95\x46\xda\x49\x53\x1e\x86\x8c\x9d\xce\xf6\x57\xc1\xe9\xa2\xab\x9f\x26\x13\x36\x5d\x1e\xc6\xf9\x33\x6d\xd5\xcd\x8e\x25\x13\xe6\xc5\xba\xec\xef\x9b\xcd\x0f\x4c\x30\x9a\x49\xff\x28\x5e\xa4\x92\xe4\x0a\xcf\xfe\x55\xee\xca\x0f\x09\x81\xdd\xd2\xd5\xd1\xc7\xfa\x74\xb6\xc2\xaf\x04\xb7\x67\x37\x6d\x2c\x87\xc8\xe2\xa6\x5c\xb4\x91\x1d\x9d\x6a\x36\xec\xa9\x7b\xe8\xd9\x63\x5c\xb0\x45\xdf\x3d\x0e\xb1\x67\x63\xc7\x1e\x86\xc8\xa6\x4b\xe5\xe3\x3b\x38\x9d\x6d\x8f\x0c\x9c\xd5\xcd\x6e\x32\x7f\xf6\xda\xfe\xbc\x39\xec\xee\x59\xbe\x28\x0a\x69\x7d\xc1\x56\xb1\xb9\x5f\x8d\xf3\xc2\xa8\x82\x7d\x59\xb7\x9b\x61\x5e\x50\x4f\xfd\x90\x1b\xea\x51\x41\xd7\xdf\xcf\x50\x08\x31\x1b\x76\xf7\xc5\xd9\xe9\x3d\x5b\x36\x6d\x3b\x2f\xfe\x1a\x64\xf8\xf1\xdc\x17\xe9\x93\xf7\x0f\x14\x91\xb8\x8b\x9b\xae\xae\x8b\xb3\xd3\x6d\x39\xae\x58\x3d\x2f\xae\xd0\x82\x70\x9e\x29\x04\x89\xa5\x01\xe3\x2d\xcb\xab\x60\x92\x49\xa2\x9d\xe3\x06\x4c\x08\x99\x9e\x56\x41\x7c\xbe\xdf\xb1\x57\xca\x81\x10\x81\x61\x00\x85\xbe\x44\x30\x96\xa5\x25\xa3\x10\xc9\xf7\x9b\x46\x4e\x6b\xc6\x38\xc8\x5e\x69\x0b\x41\x5a\xa6\x24\x58\x1b\xbe\xc1\x00\x61\x24\x07\x94\x15\x07\x81\x1e\x84\xb5\x99\x90\x8a\x13\x0b\x50\x5e\x69\x0d\xc6\x7b\x86\x06\x84\xcd\x46\x18\x96\xd7\xbd\x2a\xeb\x90\x43\x08\x98\x2c\xf0\xd3\x9a\x99\x20\x05\x72\x04\xaf\xf3\x19\x3d\xad\x89\xc9\x34\x58\x67\xc1\x59\x5d\x81\x70\x48\x3e\x82\xf0\x64\xa7\x03\x81\x8e\xc9\x12\x41\x5b\xc5\xf2\x9a\xf1\x24\x04\x24\x28\xe1\xd4\x95\x51\x10\x14\x92\x67\x5a\x20\x19\xa6\x1d\xcb\xeb\xde\xb0\x90\x45\x73\x80\xc2\xb4\xee\x99\xc2\x6a\x12\xc9\xde\xbc\x3e\xca\x10\x82\xf6\x24\xe3\xd2\xfe\xb4\xec\x79\x12\xc9\x49\x27\x2d\x58\xab\xe9\x2f\x71\x04\x45\x0c\x10\xfd\x95\x91\xe0\xe9\x8c\x01\x29\xd4\x77\xd2\x26\x05\x61\x07\x6d\x2a\x10\x4a\x03\x4a\x0f\x42\x2b\xd0\x2a\x90\xdf\x60\x8d\xff\xae\x37\x52\x91\xa9\xe8\xdd\x95\x0e\x10\x8c\x66\x5a\x80\x94\xdf\x2a\x00\x25\x35\x97\x20\x94\x4b\x59\x05\x45\x49\x95\xe8\xc1\xa1\xe4\xc4\x64\x89\x79\xa5\x3d\x04\xa7\x99\xb4\xe0\xc3\x77\x50\x82\xe3\x0a\xb4\x77\x15\xa0\xd5\xa0\xb5\x05\xe5\x0c\xc5\x0b\x94\x74\x4c\x82\x76\xaf\xcb\x29\xa7\x07\x3d\x99\x2d\x84\x2f\x66\xaf\xfb\xc1\xa0\x65\x06\xc1\x0a\x55\x71\xa9\x41\x05\xc5\x04\xa7\x3e\xb1\x5c\x4a\x30\xd6\x4d\x1f\x68\xc0\x2b\x7b\x01\xda\x5a\x26\x11\x74\xf0\xf4\x23\x15\x25\x5b\xb2\x0c\x44\x64\x89\x06\x82\xb2\x6c\xfa\xc9\xb9\x91\xe9\x30\x33\xa0\x84\x6b\xb9\x02\x69\x1d\xd3\x20\xa5\x3b\x47\x01\xc1\x22\x9b\x7e\x44\x96\x77\xa0\x84\x66\x1e\x50\x5d\x48\x01\x32\x68\x26\x25\x38\xa9\x98\x01\xc7\xa4\x07\xea\x4e\x27\x35\x69\x75\x56\x51\x34\xa5\x66\x0e\xbc\x45\xa6\x41\x7b\x52\x27\x0c\x9d\x31\x81\xc4\x8d\xd2\xe5\xf7\xf4\xa0\x04\x1f\x28\x81\xe8\x5a\xb2\xc9\x93\x4d\xa8\x92\x07\x5e\xb2\xe9\x67\x8a\xe0\xc1\x03\xf9\x7c\x65\x25\x53\x02\xa4\xf9\x24\x1d\x15\x64\x25\xb8\xce\xe8\xd4\x50\xdc\x81\x37\x2c\x80\x0e\x13\x89\xa0\x3d\x95\xa2\x01\xa1\x3d\x28\xb4\xcc\x01\x1a\x04\x1f\x4c\xcb\xc1\x58\x6a\x38\xad\x54\x45\x96\x58\xcd\x41\x0b\xcb\x35\x58\xef\x39\xd8\x20\xb9\x05\xa3\x32\x45\x69\xb7\x8c\x94\x59\xe1\x99\x04\xc4\x89\xd4\x54\xba\x3b\x29\x40\x4b\xac\x04\x99\xe1\x89\x2f\x11\x33\x8b\x3a\x5a\xb8\x89\x96\xe0\x35\xb5\xad\x06\x65\x1d\x07\xf4\x9a\x1d\x54\xb4\x60\x72\x0c\xb3\x39\x28\x34\x18\xc7\x35\x38\xeb\xc9\x5c\x7e\x30\xfc\xc2\xaa\x34\x3c\x94\x67\x14\x0c\x03\x52\x22\xdb\x87\xe5\x79\xad\x2c\x78\x41\xdd\x53\x91\x1e\x61\x3d\x97\xe0\x05\x52\x8e\x24\xf7\xa0\x83\xca\xa4\x05\x1b\x98\x48\x3b\x9a\x2b\x70\x1a\x27\x9a\xb8\x3b\x6e\x40\x08\x4c\xd1\x15\x96\x4a\xdb\x0b\x95\x38\xec\x45\x88\x65\x08\x96\x41\x09\x42\xb1\x17\x05\x3b\x42\x50\xcf\x6b\xae\xc1\x7b\x9a\xec\xd2\x9a\x4a\x90\x67\xca\x51\x2b\x0a\xa4\xa0\x4a\xcb\x15\x58\x61\x33\x3d\xe4\x0f\x8a\x9f\x9f\xc8\xb4\xbf\x33\x34\x09\x53\x78\x51\x91\x35\x42\x60\xe2\x38\xf6\x22\xe5\x86\x8c\x44\x87\xd9\x0b\xa8\x23\x5f\x14\xfa\xe7\x35\x1a\x70\x81\x3a\xc7\x58\xbf\xca\x66\x7d\x42\x95\x86\xad\x20\x8b\x8c\xe3\xa0\x69\x4c\x18\x4f\x28\xc6\xaa\x03\x8d\x42\x32\xc1\x15\x28\xc2\x50\x48\xd1\x49\x69\xb6\xd6\xef\x24\x79\xee\xf6\x80\xd2\x81\xf3\x66\xa5\xc0\xa1\x6d\x53\x43\x90\x50\x85\xa0\x13\x34\x22\xdd\x6b\x2a\xcd\xd1\xd4\x37\x72\x4f\x2b\x40\x6d\x52\x6d\x68\x41\xf3\x42\x49\x3f\xd1\x86\x46\xe7\x8e\x06\x84\x71\xcf\x6b\xe9\x01\x2d\x37\xe0\x9c\xa9\x04\x53\xe0\x91\xcc\x94\x16\x99\x05\xe9\x91\x3b\x10\x66\x4f\x23\x08\xaf\x52\xd5\x06\x24\xe7\xbc\xe7\x16\x5c\x92\x57\xa1\x05\x4b\x41\x76\x1e\x2b\x09\x96\x86\xad\xa7\xb8\x79\x41\x9d\xa3\x49\xab\x4c\x44\x6a\x0d\x6a\x59\xea\xa5\x04\x32\x91\x12\x42\x9a\x58\xa9\x1b\x00\x69\xc3\x2b\x8a\xb9\x30\x3c\x4d\xb5\x5c\xbd\x29\x21\x29\x07\xd4\xf0\x7a\xa2\x2c\x20\xaa\x14\xd3\xe0\x29\xe1\x0e\x15\x39\xa5\x0c\x75\x68\xc0\x89\x4e\x75\x97\x82\x22\xad\x05\xd4\xc9\x2c\x93\xda\x85\x2c\xa1\x22\xa0\x3b\x83\x4b\xfa\x48\x0d\xc5\xa9\x39\x2c\xf5\x76\x20\x4d\xd6\x67\x92\x26\x8d\xa6\xe9\x4a\x96\xa7\x40\xe4\xd1\x20\xc1\x09\xba\x98\x29\xd1\x0e\x24\xa6\x0d\xba\x16\x5d\xba\x98\x49\x9f\xd6\x81\x46\xbb\x25\x3a\x50\x66\x64\xb0\x99\xb4\x74\x0d\x3c\xaf\x53\x62\x68\x80\x0b\xa5\x56\xa9\x0a\xa8\x26\xbc\xaa\x08\x56\x18\x07\x5a\xcb\xa4\x80\xfc\x34\x56\x1d\x68\x14\x34\x0e\x53\x55\x71\x70\x8a\x66\xac\xf0\x14\x2f\x6b\xfd\xbe\x90\x08\xcf\xef\x64\xa0\xa6\x5e\xf1\x5c\x56\xe4\xba\x4c\x62\x8e\x46\x85\xd6\x3a\x4f\x24\x03\x06\x43\xba\xde\x73\x83\xe2\x44\x53\x69\xe5\xe1\xa5\x85\xe3\xa9\xb4\x26\x3a\x95\xd6\xa4\xea\xf9\x8a\xc6\xb0\x72\x60\x82\xca\xd5\xec\x3f\x05\x0a\xf5\x2f\xb4\x1f\x76\xe8\x89\xf3\x4c\x97\xd8\xec\xfe\xec\x94\x5e\x81\xd3\xf3\x32\xbf\x2d\xd9\xd0\x57\xdf\x7b\xea\x2b\xa9\x8d\x09\xc1\xe9\x7a\xe1\xb4\x17\x4b\x1f\xe2\x72\x69\x8c\x37\x95\x34\x8b\x5a\x69\xf8\x7d\x28\x08\xee\xe8\x81\xfa\x47\x88\x2f\xaf\x7a\xb3\x08\xb8\xd0\x0b\xe1\xb5\x53\xbe\xb4\x95\xaf\xb5\xb5\x58\xd5\xa6\xae\xbd\x8c\xc6\x7f\x05\xfa\xf2\xba\xcf\x8f\xfa\xd3\x59\xfe\xb7\xd0\x7f\x03\x00\x00\xff\xff\x04\x9f\xf9\x4e\x27\x12\x00\x00") + +func web_uiV2IndexHtmlBytes() ([]byte, error) { + return bindataRead( + _web_uiV2IndexHtml, + "web_ui/v2/index.html", + ) +} + +func web_uiV2IndexHtml() (*asset, error) { + bytes, err := web_uiV2IndexHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/index.html", size: 4647, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _web_uiV2RobotsTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\xc8\x28\x29\x29\xb0\xd2\xd7\x2f\x2f\x2f\xd7\x2b\xca\x4f\xca\x2f\x29\x2e\xa9\x28\xd1\xcb\x2f\x4a\xe7\x0a\x2d\x4e\x2d\xd2\x4d\x4c\x4f\xcd\x2b\xb1\x52\xd0\xe2\x72\xc9\x2c\x4e\xcc\xc9\xc9\x2f\xb7\xe2\x02\x04\x00\x00\xff\xff\xa6\x16\xe6\xa9\x33\x00\x00\x00") + +func web_uiV2RobotsTxtBytes() ([]byte, error) { + return bindataRead( + _web_uiV2RobotsTxt, + "web_ui/v2/robots.txt", + ) +} + +func web_uiV2RobotsTxt() (*asset, error) { + bytes, err := web_uiV2RobotsTxtBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "web_ui/v2/robots.txt", size: 51, mode: os.FileMode(420), modTime: time.Unix(1526064805, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -771,37 +1464,70 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ - "web_ui/index.html": web_uiIndexHtml, - "web_ui/static/android-chrome-192x192.png": web_uiStaticAndroidChrome192x192Png, - "web_ui/static/android-chrome-512x512.png": web_uiStaticAndroidChrome512x512Png, - "web_ui/static/apple-touch-icon-114x114.png": web_uiStaticAppleTouchIcon114x114Png, - "web_ui/static/apple-touch-icon-120x120.png": web_uiStaticAppleTouchIcon120x120Png, - "web_ui/static/apple-touch-icon-144x144.png": web_uiStaticAppleTouchIcon144x144Png, - "web_ui/static/apple-touch-icon-152x152.png": web_uiStaticAppleTouchIcon152x152Png, - "web_ui/static/apple-touch-icon-57x57.png": web_uiStaticAppleTouchIcon57x57Png, - "web_ui/static/apple-touch-icon-60x60.png": web_uiStaticAppleTouchIcon60x60Png, - "web_ui/static/apple-touch-icon-72x72.png": web_uiStaticAppleTouchIcon72x72Png, - "web_ui/static/apple-touch-icon-76x76.png": web_uiStaticAppleTouchIcon76x76Png, - "web_ui/static/apple-touch-icon.png": web_uiStaticAppleTouchIconPng, - "web_ui/static/application.min.js": web_uiStaticApplicationMinJs, - "web_ui/static/base.css": web_uiStaticBaseCss, - "web_ui/static/base.css.map": web_uiStaticBaseCssMap, - "web_ui/static/bootstrap.min.css": web_uiStaticBootstrapMinCss, - "web_ui/static/consul-logo.png": web_uiStaticConsulLogoPng, - "web_ui/static/favicon-128.png": web_uiStaticFavicon128Png, - "web_ui/static/favicon-16x16.png": web_uiStaticFavicon16x16Png, - "web_ui/static/favicon-196x196.png": web_uiStaticFavicon196x196Png, - "web_ui/static/favicon-32x32.png": web_uiStaticFavicon32x32Png, - "web_ui/static/favicon-96x96.png": web_uiStaticFavicon96x96Png, - "web_ui/static/favicon.ico": web_uiStaticFaviconIco, - "web_ui/static/favicon.png": web_uiStaticFaviconPng, - "web_ui/static/loading-cylon-pink.svg": web_uiStaticLoadingCylonPinkSvg, - "web_ui/static/mstile-144x144.png": web_uiStaticMstile144x144Png, - "web_ui/static/mstile-150x150.png": web_uiStaticMstile150x150Png, - "web_ui/static/mstile-310x150.png": web_uiStaticMstile310x150Png, - "web_ui/static/mstile-310x310.png": web_uiStaticMstile310x310Png, - "web_ui/static/mstile-70x70.png": web_uiStaticMstile70x70Png, - "web_ui/static/safari-pinned-tab.svg": web_uiStaticSafariPinnedTabSvg, + "web_ui/v1/index.html": web_uiV1IndexHtml, + "web_ui/v1/static/android-chrome-192x192.png": web_uiV1StaticAndroidChrome192x192Png, + "web_ui/v1/static/android-chrome-512x512.png": web_uiV1StaticAndroidChrome512x512Png, + "web_ui/v1/static/apple-touch-icon-114x114.png": web_uiV1StaticAppleTouchIcon114x114Png, + "web_ui/v1/static/apple-touch-icon-120x120.png": web_uiV1StaticAppleTouchIcon120x120Png, + "web_ui/v1/static/apple-touch-icon-144x144.png": web_uiV1StaticAppleTouchIcon144x144Png, + "web_ui/v1/static/apple-touch-icon-152x152.png": web_uiV1StaticAppleTouchIcon152x152Png, + "web_ui/v1/static/apple-touch-icon-57x57.png": web_uiV1StaticAppleTouchIcon57x57Png, + "web_ui/v1/static/apple-touch-icon-60x60.png": web_uiV1StaticAppleTouchIcon60x60Png, + "web_ui/v1/static/apple-touch-icon-72x72.png": web_uiV1StaticAppleTouchIcon72x72Png, + "web_ui/v1/static/apple-touch-icon-76x76.png": web_uiV1StaticAppleTouchIcon76x76Png, + "web_ui/v1/static/apple-touch-icon.png": web_uiV1StaticAppleTouchIconPng, + "web_ui/v1/static/application.min.js": web_uiV1StaticApplicationMinJs, + "web_ui/v1/static/base.css": web_uiV1StaticBaseCss, + "web_ui/v1/static/base.css.map": web_uiV1StaticBaseCssMap, + "web_ui/v1/static/bootstrap.min.css": web_uiV1StaticBootstrapMinCss, + "web_ui/v1/static/consul-logo.png": web_uiV1StaticConsulLogoPng, + "web_ui/v1/static/favicon-128.png": web_uiV1StaticFavicon128Png, + "web_ui/v1/static/favicon-16x16.png": web_uiV1StaticFavicon16x16Png, + "web_ui/v1/static/favicon-196x196.png": web_uiV1StaticFavicon196x196Png, + "web_ui/v1/static/favicon-32x32.png": web_uiV1StaticFavicon32x32Png, + "web_ui/v1/static/favicon-96x96.png": web_uiV1StaticFavicon96x96Png, + "web_ui/v1/static/favicon.ico": web_uiV1StaticFaviconIco, + "web_ui/v1/static/favicon.png": web_uiV1StaticFaviconPng, + "web_ui/v1/static/loading-cylon-pink.svg": web_uiV1StaticLoadingCylonPinkSvg, + "web_ui/v1/static/mstile-144x144.png": web_uiV1StaticMstile144x144Png, + "web_ui/v1/static/mstile-150x150.png": web_uiV1StaticMstile150x150Png, + "web_ui/v1/static/mstile-310x150.png": web_uiV1StaticMstile310x150Png, + "web_ui/v1/static/mstile-310x310.png": web_uiV1StaticMstile310x310Png, + "web_ui/v1/static/mstile-70x70.png": web_uiV1StaticMstile70x70Png, + "web_ui/v1/static/safari-pinned-tab.svg": web_uiV1StaticSafariPinnedTabSvg, + "web_ui/v1/static/tada.png": web_uiV1StaticTadaPng, + "web_ui/v2/assets/android-chrome-192x192-501b0811835ea92d42937aaf9edfbe08.png": web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08Png, + "web_ui/v2/assets/android-chrome-512x512-707625c5eb04f602ade1f89a8868a329.png": web_uiV2AssetsAndroidChrome512x512707625c5eb04f602ade1f89a8868a329Png, + "web_ui/v2/assets/apple-touch-icon-114x114-49e20f98710f64b0cae7545628a94496.png": web_uiV2AssetsAppleTouchIcon114x11449e20f98710f64b0cae7545628a94496Png, + "web_ui/v2/assets/apple-touch-icon-120x120-c9cc4fc809a6cbff9b9c261c70309819.png": web_uiV2AssetsAppleTouchIcon120x120C9cc4fc809a6cbff9b9c261c70309819Png, + "web_ui/v2/assets/apple-touch-icon-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png": web_uiV2AssetsAppleTouchIcon144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng, + "web_ui/v2/assets/apple-touch-icon-152x152-08c9aa1c11a83650b824e3549b33a832.png": web_uiV2AssetsAppleTouchIcon152x15208c9aa1c11a83650b824e3549b33a832Png, + "web_ui/v2/assets/apple-touch-icon-57x57-ae96d6d27e61e25514af459bc8b20960.png": web_uiV2AssetsAppleTouchIcon57x57Ae96d6d27e61e25514af459bc8b20960Png, + "web_ui/v2/assets/apple-touch-icon-60x60-522fca33a44f77c679561313def843b9.png": web_uiV2AssetsAppleTouchIcon60x60522fca33a44f77c679561313def843b9Png, + "web_ui/v2/assets/apple-touch-icon-72x72-da5dd17cb4f094262b19223464fc9541.png": web_uiV2AssetsAppleTouchIcon72x72Da5dd17cb4f094262b19223464fc9541Png, + "web_ui/v2/assets/apple-touch-icon-76x76-c5fff53d5f3e96dbd2fe49c5cc472022.png": web_uiV2AssetsAppleTouchIcon76x76C5fff53d5f3e96dbd2fe49c5cc472022Png, + "web_ui/v2/assets/apple-touch-icon-d2b583b1104a1e6810fb3984f8f132ae.png": web_uiV2AssetsAppleTouchIconD2b583b1104a1e6810fb3984f8f132aePng, + "web_ui/v2/assets/consul-logo-707625c5eb04f602ade1f89a8868a329.png": web_uiV2AssetsConsulLogo707625c5eb04f602ade1f89a8868a329Png, + "web_ui/v2/assets/consul-ui-5b92b4b084738a6c8d4662cd5dd81e58.js": web_uiV2AssetsConsulUi5b92b4b084738a6c8d4662cd5dd81e58Js, + "web_ui/v2/assets/consul-ui-fd032aa6d4c81cb6714bde7019fca516.css": web_uiV2AssetsConsulUiFd032aa6d4c81cb6714bde7019fca516Css, + "web_ui/v2/assets/favicon-128-08e1368e84f412f6ad30279d849b1df9.png": web_uiV2AssetsFavicon12808e1368e84f412f6ad30279d849b1df9Png, + "web_ui/v2/assets/favicon-16x16-672c31374646b24b235b9511857cdade.png": web_uiV2AssetsFavicon16x16672c31374646b24b235b9511857cdadePng, + "web_ui/v2/assets/favicon-196x196-57be5a82d3da06c261f9e4eb972a8a3a.png": web_uiV2AssetsFavicon196x19657be5a82d3da06c261f9e4eb972a8a3aPng, + "web_ui/v2/assets/favicon-32x32-646753a205c6a6db7f93d0d1ba30bd93.png": web_uiV2AssetsFavicon32x32646753a205c6a6db7f93d0d1ba30bd93Png, + "web_ui/v2/assets/favicon-672c31374646b24b235b9511857cdade.png": web_uiV2AssetsFavicon672c31374646b24b235b9511857cdadePng, + "web_ui/v2/assets/favicon-96x96-6f8f8393df02b51582417746da41b274.png": web_uiV2AssetsFavicon96x966f8f8393df02b51582417746da41b274Png, + "web_ui/v2/assets/favicon.ico": web_uiV2AssetsFaviconIco, + "web_ui/v2/assets/loading-cylon-pink.svg": web_uiV2AssetsLoadingCylonPinkSvg, + "web_ui/v2/assets/mstile-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png": web_uiV2AssetsMstile144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng, + "web_ui/v2/assets/mstile-150x150-6b13ab220a09a9e72328a3b05d5b9eec.png": web_uiV2AssetsMstile150x1506b13ab220a09a9e72328a3b05d5b9eecPng, + "web_ui/v2/assets/mstile-310x150-ccc673174b188a92f1e78bc25aa6f3f8.png": web_uiV2AssetsMstile310x150Ccc673174b188a92f1e78bc25aa6f3f8Png, + "web_ui/v2/assets/mstile-310x310-49242d1935854126c10457d1cdb1762b.png": web_uiV2AssetsMstile310x31049242d1935854126c10457d1cdb1762bPng, + "web_ui/v2/assets/mstile-70x70-08e1368e84f412f6ad30279d849b1df9.png": web_uiV2AssetsMstile70x7008e1368e84f412f6ad30279d849b1df9Png, + "web_ui/v2/assets/safari-pinned-tab.svg": web_uiV2AssetsSafariPinnedTabSvg, + "web_ui/v2/assets/vendor-314559974db7480f89eff5585c15bd34.js": web_uiV2AssetsVendor314559974db7480f89eff5585c15bd34Js, + "web_ui/v2/assets/vendor-c3a9380433ef2f2efb4ed437d3b54b31.css": web_uiV2AssetsVendorC3a9380433ef2f2efb4ed437d3b54b31Css, + "web_ui/v2/index.html": web_uiV2IndexHtml, + "web_ui/v2/robots.txt": web_uiV2RobotsTxt, } // AssetDir returns the file names below a certain @@ -846,38 +1572,77 @@ type bintree struct { var _bintree = &bintree{nil, map[string]*bintree{ "web_ui": &bintree{nil, map[string]*bintree{ - "index.html": &bintree{web_uiIndexHtml, map[string]*bintree{}}, - "static": &bintree{nil, map[string]*bintree{ - "android-chrome-192x192.png": &bintree{web_uiStaticAndroidChrome192x192Png, map[string]*bintree{}}, - "android-chrome-512x512.png": &bintree{web_uiStaticAndroidChrome512x512Png, map[string]*bintree{}}, - "apple-touch-icon-114x114.png": &bintree{web_uiStaticAppleTouchIcon114x114Png, map[string]*bintree{}}, - "apple-touch-icon-120x120.png": &bintree{web_uiStaticAppleTouchIcon120x120Png, map[string]*bintree{}}, - "apple-touch-icon-144x144.png": &bintree{web_uiStaticAppleTouchIcon144x144Png, map[string]*bintree{}}, - "apple-touch-icon-152x152.png": &bintree{web_uiStaticAppleTouchIcon152x152Png, map[string]*bintree{}}, - "apple-touch-icon-57x57.png": &bintree{web_uiStaticAppleTouchIcon57x57Png, map[string]*bintree{}}, - "apple-touch-icon-60x60.png": &bintree{web_uiStaticAppleTouchIcon60x60Png, map[string]*bintree{}}, - "apple-touch-icon-72x72.png": &bintree{web_uiStaticAppleTouchIcon72x72Png, map[string]*bintree{}}, - "apple-touch-icon-76x76.png": &bintree{web_uiStaticAppleTouchIcon76x76Png, map[string]*bintree{}}, - "apple-touch-icon.png": &bintree{web_uiStaticAppleTouchIconPng, map[string]*bintree{}}, - "application.min.js": &bintree{web_uiStaticApplicationMinJs, map[string]*bintree{}}, - "base.css": &bintree{web_uiStaticBaseCss, map[string]*bintree{}}, - "base.css.map": &bintree{web_uiStaticBaseCssMap, map[string]*bintree{}}, - "bootstrap.min.css": &bintree{web_uiStaticBootstrapMinCss, map[string]*bintree{}}, - "consul-logo.png": &bintree{web_uiStaticConsulLogoPng, map[string]*bintree{}}, - "favicon-128.png": &bintree{web_uiStaticFavicon128Png, map[string]*bintree{}}, - "favicon-16x16.png": &bintree{web_uiStaticFavicon16x16Png, map[string]*bintree{}}, - "favicon-196x196.png": &bintree{web_uiStaticFavicon196x196Png, map[string]*bintree{}}, - "favicon-32x32.png": &bintree{web_uiStaticFavicon32x32Png, map[string]*bintree{}}, - "favicon-96x96.png": &bintree{web_uiStaticFavicon96x96Png, map[string]*bintree{}}, - "favicon.ico": &bintree{web_uiStaticFaviconIco, map[string]*bintree{}}, - "favicon.png": &bintree{web_uiStaticFaviconPng, map[string]*bintree{}}, - "loading-cylon-pink.svg": &bintree{web_uiStaticLoadingCylonPinkSvg, map[string]*bintree{}}, - "mstile-144x144.png": &bintree{web_uiStaticMstile144x144Png, map[string]*bintree{}}, - "mstile-150x150.png": &bintree{web_uiStaticMstile150x150Png, map[string]*bintree{}}, - "mstile-310x150.png": &bintree{web_uiStaticMstile310x150Png, map[string]*bintree{}}, - "mstile-310x310.png": &bintree{web_uiStaticMstile310x310Png, map[string]*bintree{}}, - "mstile-70x70.png": &bintree{web_uiStaticMstile70x70Png, map[string]*bintree{}}, - "safari-pinned-tab.svg": &bintree{web_uiStaticSafariPinnedTabSvg, map[string]*bintree{}}, + "v1": &bintree{nil, map[string]*bintree{ + "index.html": &bintree{web_uiV1IndexHtml, map[string]*bintree{}}, + "static": &bintree{nil, map[string]*bintree{ + "android-chrome-192x192.png": &bintree{web_uiV1StaticAndroidChrome192x192Png, map[string]*bintree{}}, + "android-chrome-512x512.png": &bintree{web_uiV1StaticAndroidChrome512x512Png, map[string]*bintree{}}, + "apple-touch-icon-114x114.png": &bintree{web_uiV1StaticAppleTouchIcon114x114Png, map[string]*bintree{}}, + "apple-touch-icon-120x120.png": &bintree{web_uiV1StaticAppleTouchIcon120x120Png, map[string]*bintree{}}, + "apple-touch-icon-144x144.png": &bintree{web_uiV1StaticAppleTouchIcon144x144Png, map[string]*bintree{}}, + "apple-touch-icon-152x152.png": &bintree{web_uiV1StaticAppleTouchIcon152x152Png, map[string]*bintree{}}, + "apple-touch-icon-57x57.png": &bintree{web_uiV1StaticAppleTouchIcon57x57Png, map[string]*bintree{}}, + "apple-touch-icon-60x60.png": &bintree{web_uiV1StaticAppleTouchIcon60x60Png, map[string]*bintree{}}, + "apple-touch-icon-72x72.png": &bintree{web_uiV1StaticAppleTouchIcon72x72Png, map[string]*bintree{}}, + "apple-touch-icon-76x76.png": &bintree{web_uiV1StaticAppleTouchIcon76x76Png, map[string]*bintree{}}, + "apple-touch-icon.png": &bintree{web_uiV1StaticAppleTouchIconPng, map[string]*bintree{}}, + "application.min.js": &bintree{web_uiV1StaticApplicationMinJs, map[string]*bintree{}}, + "base.css": &bintree{web_uiV1StaticBaseCss, map[string]*bintree{}}, + "base.css.map": &bintree{web_uiV1StaticBaseCssMap, map[string]*bintree{}}, + "bootstrap.min.css": &bintree{web_uiV1StaticBootstrapMinCss, map[string]*bintree{}}, + "consul-logo.png": &bintree{web_uiV1StaticConsulLogoPng, map[string]*bintree{}}, + "favicon-128.png": &bintree{web_uiV1StaticFavicon128Png, map[string]*bintree{}}, + "favicon-16x16.png": &bintree{web_uiV1StaticFavicon16x16Png, map[string]*bintree{}}, + "favicon-196x196.png": &bintree{web_uiV1StaticFavicon196x196Png, map[string]*bintree{}}, + "favicon-32x32.png": &bintree{web_uiV1StaticFavicon32x32Png, map[string]*bintree{}}, + "favicon-96x96.png": &bintree{web_uiV1StaticFavicon96x96Png, map[string]*bintree{}}, + "favicon.ico": &bintree{web_uiV1StaticFaviconIco, map[string]*bintree{}}, + "favicon.png": &bintree{web_uiV1StaticFaviconPng, map[string]*bintree{}}, + "loading-cylon-pink.svg": &bintree{web_uiV1StaticLoadingCylonPinkSvg, map[string]*bintree{}}, + "mstile-144x144.png": &bintree{web_uiV1StaticMstile144x144Png, map[string]*bintree{}}, + "mstile-150x150.png": &bintree{web_uiV1StaticMstile150x150Png, map[string]*bintree{}}, + "mstile-310x150.png": &bintree{web_uiV1StaticMstile310x150Png, map[string]*bintree{}}, + "mstile-310x310.png": &bintree{web_uiV1StaticMstile310x310Png, map[string]*bintree{}}, + "mstile-70x70.png": &bintree{web_uiV1StaticMstile70x70Png, map[string]*bintree{}}, + "safari-pinned-tab.svg": &bintree{web_uiV1StaticSafariPinnedTabSvg, map[string]*bintree{}}, + "tada.png": &bintree{web_uiV1StaticTadaPng, map[string]*bintree{}}, + }}, + }}, + "v2": &bintree{nil, map[string]*bintree{ + "assets": &bintree{nil, map[string]*bintree{ + "android-chrome-192x192-501b0811835ea92d42937aaf9edfbe08.png": &bintree{web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08Png, map[string]*bintree{}}, + "android-chrome-512x512-707625c5eb04f602ade1f89a8868a329.png": &bintree{web_uiV2AssetsAndroidChrome512x512707625c5eb04f602ade1f89a8868a329Png, map[string]*bintree{}}, + "apple-touch-icon-114x114-49e20f98710f64b0cae7545628a94496.png": &bintree{web_uiV2AssetsAppleTouchIcon114x11449e20f98710f64b0cae7545628a94496Png, map[string]*bintree{}}, + "apple-touch-icon-120x120-c9cc4fc809a6cbff9b9c261c70309819.png": &bintree{web_uiV2AssetsAppleTouchIcon120x120C9cc4fc809a6cbff9b9c261c70309819Png, map[string]*bintree{}}, + "apple-touch-icon-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png": &bintree{web_uiV2AssetsAppleTouchIcon144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng, map[string]*bintree{}}, + "apple-touch-icon-152x152-08c9aa1c11a83650b824e3549b33a832.png": &bintree{web_uiV2AssetsAppleTouchIcon152x15208c9aa1c11a83650b824e3549b33a832Png, map[string]*bintree{}}, + "apple-touch-icon-57x57-ae96d6d27e61e25514af459bc8b20960.png": &bintree{web_uiV2AssetsAppleTouchIcon57x57Ae96d6d27e61e25514af459bc8b20960Png, map[string]*bintree{}}, + "apple-touch-icon-60x60-522fca33a44f77c679561313def843b9.png": &bintree{web_uiV2AssetsAppleTouchIcon60x60522fca33a44f77c679561313def843b9Png, map[string]*bintree{}}, + "apple-touch-icon-72x72-da5dd17cb4f094262b19223464fc9541.png": &bintree{web_uiV2AssetsAppleTouchIcon72x72Da5dd17cb4f094262b19223464fc9541Png, map[string]*bintree{}}, + "apple-touch-icon-76x76-c5fff53d5f3e96dbd2fe49c5cc472022.png": &bintree{web_uiV2AssetsAppleTouchIcon76x76C5fff53d5f3e96dbd2fe49c5cc472022Png, map[string]*bintree{}}, + "apple-touch-icon-d2b583b1104a1e6810fb3984f8f132ae.png": &bintree{web_uiV2AssetsAppleTouchIconD2b583b1104a1e6810fb3984f8f132aePng, map[string]*bintree{}}, + "consul-logo-707625c5eb04f602ade1f89a8868a329.png": &bintree{web_uiV2AssetsConsulLogo707625c5eb04f602ade1f89a8868a329Png, map[string]*bintree{}}, + "consul-ui-5b92b4b084738a6c8d4662cd5dd81e58.js": &bintree{web_uiV2AssetsConsulUi5b92b4b084738a6c8d4662cd5dd81e58Js, map[string]*bintree{}}, + "consul-ui-fd032aa6d4c81cb6714bde7019fca516.css": &bintree{web_uiV2AssetsConsulUiFd032aa6d4c81cb6714bde7019fca516Css, map[string]*bintree{}}, + "favicon-128-08e1368e84f412f6ad30279d849b1df9.png": &bintree{web_uiV2AssetsFavicon12808e1368e84f412f6ad30279d849b1df9Png, map[string]*bintree{}}, + "favicon-16x16-672c31374646b24b235b9511857cdade.png": &bintree{web_uiV2AssetsFavicon16x16672c31374646b24b235b9511857cdadePng, map[string]*bintree{}}, + "favicon-196x196-57be5a82d3da06c261f9e4eb972a8a3a.png": &bintree{web_uiV2AssetsFavicon196x19657be5a82d3da06c261f9e4eb972a8a3aPng, map[string]*bintree{}}, + "favicon-32x32-646753a205c6a6db7f93d0d1ba30bd93.png": &bintree{web_uiV2AssetsFavicon32x32646753a205c6a6db7f93d0d1ba30bd93Png, map[string]*bintree{}}, + "favicon-672c31374646b24b235b9511857cdade.png": &bintree{web_uiV2AssetsFavicon672c31374646b24b235b9511857cdadePng, map[string]*bintree{}}, + "favicon-96x96-6f8f8393df02b51582417746da41b274.png": &bintree{web_uiV2AssetsFavicon96x966f8f8393df02b51582417746da41b274Png, map[string]*bintree{}}, + "favicon.ico": &bintree{web_uiV2AssetsFaviconIco, map[string]*bintree{}}, + "loading-cylon-pink.svg": &bintree{web_uiV2AssetsLoadingCylonPinkSvg, map[string]*bintree{}}, + "mstile-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png": &bintree{web_uiV2AssetsMstile144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng, map[string]*bintree{}}, + "mstile-150x150-6b13ab220a09a9e72328a3b05d5b9eec.png": &bintree{web_uiV2AssetsMstile150x1506b13ab220a09a9e72328a3b05d5b9eecPng, map[string]*bintree{}}, + "mstile-310x150-ccc673174b188a92f1e78bc25aa6f3f8.png": &bintree{web_uiV2AssetsMstile310x150Ccc673174b188a92f1e78bc25aa6f3f8Png, map[string]*bintree{}}, + "mstile-310x310-49242d1935854126c10457d1cdb1762b.png": &bintree{web_uiV2AssetsMstile310x31049242d1935854126c10457d1cdb1762bPng, map[string]*bintree{}}, + "mstile-70x70-08e1368e84f412f6ad30279d849b1df9.png": &bintree{web_uiV2AssetsMstile70x7008e1368e84f412f6ad30279d849b1df9Png, map[string]*bintree{}}, + "safari-pinned-tab.svg": &bintree{web_uiV2AssetsSafariPinnedTabSvg, map[string]*bintree{}}, + "vendor-314559974db7480f89eff5585c15bd34.js": &bintree{web_uiV2AssetsVendor314559974db7480f89eff5585c15bd34Js, map[string]*bintree{}}, + "vendor-c3a9380433ef2f2efb4ed437d3b54b31.css": &bintree{web_uiV2AssetsVendorC3a9380433ef2f2efb4ed437d3b54b31Css, map[string]*bintree{}}, + }}, + "index.html": &bintree{web_uiV2IndexHtml, map[string]*bintree{}}, + "robots.txt": &bintree{web_uiV2RobotsTxt, map[string]*bintree{}}, }}, }}, }} diff --git a/agent/config/builder.go b/agent/config/builder.go index e9cb19394..6048dab92 100644 --- a/agent/config/builder.go +++ b/agent/config/builder.go @@ -511,14 +511,6 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { } } - // Add a filter rule if needed for enabling the deprecated metric names - enableDeprecatedNames := b.boolVal(c.Telemetry.EnableDeprecatedNames) - if enableDeprecatedNames { - telemetryAllowedPrefixes = append(telemetryAllowedPrefixes, "consul.consul") - } else { - telemetryBlockedPrefixes = append(telemetryBlockedPrefixes, "consul.consul") - } - // raft performance scaling performanceRaftMultiplier := b.intVal(c.Performance.RaftMultiplier) if performanceRaftMultiplier < 1 || uint(performanceRaftMultiplier) > consul.MaxRaftMultiplier { @@ -626,6 +618,7 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { TelemetryDisableHostname: b.boolVal(c.Telemetry.DisableHostname), TelemetryDogstatsdAddr: b.stringVal(c.Telemetry.DogstatsdAddr), TelemetryDogstatsdTags: c.Telemetry.DogstatsdTags, + TelemetryPrometheusRetentionTime: b.durationVal("prometheus_retention_time", c.Telemetry.PrometheusRetentionTime), TelemetryFilterDefault: b.boolVal(c.Telemetry.FilterDefault), TelemetryAllowedPrefixes: telemetryAllowedPrefixes, TelemetryBlockedPrefixes: telemetryBlockedPrefixes, @@ -680,15 +673,17 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { RPCProtocol: b.intVal(c.RPCProtocol), RPCRateLimit: rate.Limit(b.float64Val(c.Limits.RPCRate)), RaftProtocol: b.intVal(c.RaftProtocol), + RaftSnapshotThreshold: b.intVal(c.RaftSnapshotThreshold), + RaftSnapshotInterval: b.durationVal("raft_snapshot_interval", c.RaftSnapshotInterval), ReconnectTimeoutLAN: b.durationVal("reconnect_timeout", c.ReconnectTimeoutLAN), ReconnectTimeoutWAN: b.durationVal("reconnect_timeout_wan", c.ReconnectTimeoutWAN), RejoinAfterLeave: b.boolVal(c.RejoinAfterLeave), RetryJoinIntervalLAN: b.durationVal("retry_interval", c.RetryJoinIntervalLAN), RetryJoinIntervalWAN: b.durationVal("retry_interval_wan", c.RetryJoinIntervalWAN), - RetryJoinLAN: c.RetryJoinLAN, + RetryJoinLAN: b.expandAllOptionalAddrs("retry_join", c.RetryJoinLAN), RetryJoinMaxAttemptsLAN: b.intVal(c.RetryJoinMaxAttemptsLAN), RetryJoinMaxAttemptsWAN: b.intVal(c.RetryJoinMaxAttemptsWAN), - RetryJoinWAN: c.RetryJoinWAN, + RetryJoinWAN: b.expandAllOptionalAddrs("retry_join_wan", c.RetryJoinWAN), SegmentName: b.stringVal(c.SegmentName), Segments: segments, SerfAdvertiseAddrLAN: serfAdvertiseAddrLAN, @@ -703,8 +698,8 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { Services: services, SessionTTLMin: b.durationVal("session_ttl_min", c.SessionTTLMin), SkipLeaveOnInt: skipLeaveOnInt, - StartJoinAddrsLAN: c.StartJoinAddrsLAN, - StartJoinAddrsWAN: c.StartJoinAddrsWAN, + StartJoinAddrsLAN: b.expandAllOptionalAddrs("start_join", c.StartJoinAddrsLAN), + StartJoinAddrsWAN: b.expandAllOptionalAddrs("start_join_wan", c.StartJoinAddrsWAN), SyslogFacility: b.stringVal(c.SyslogFacility), TLSCipherSuites: b.tlsCipherSuites("tls_cipher_suites", c.TLSCipherSuites), TLSMinVersion: b.stringVal(c.TLSMinVersion), @@ -966,7 +961,6 @@ func (b *Builder) checkVal(v *CheckDefinition) *structs.CheckDefinition { ServiceID: b.stringVal(v.ServiceID), Token: b.stringVal(v.Token), Status: b.stringVal(v.Status), - Script: b.stringVal(v.Script), ScriptArgs: v.ScriptArgs, HTTP: b.stringVal(v.HTTP), Header: v.Header, @@ -997,11 +991,18 @@ func (b *Builder) serviceVal(v *ServiceDefinition) *structs.ServiceDefinition { checks = append(checks, b.checkVal(v.Check).CheckType()) } + meta := make(map[string]string) + if err := structs.ValidateMetadata(v.Meta, false); err != nil { + b.err = multierror.Append(fmt.Errorf("invalid meta for service %s: %v", b.stringVal(v.Name), err)) + } else { + meta = v.Meta + } return &structs.ServiceDefinition{ ID: b.stringVal(v.ID), Name: b.stringVal(v.Name), Tags: v.Tags, Address: b.stringVal(v.Address), + Meta: meta, Port: b.intVal(v.Port), Token: b.stringVal(v.Token), EnableTagOverride: b.boolVal(v.EnableTagOverride), @@ -1124,6 +1125,43 @@ func (b *Builder) expandAddrs(name string, s *string) []net.Addr { return addrs } +// expandOptionalAddrs expands the go-sockaddr template in s and returns the +// result as a list of strings. If s does not contain a go-sockaddr template, +// the result list will contain the input string as a single element with no +// error set. In contrast to expandAddrs, expandOptionalAddrs does not validate +// if the result contains valid addresses and returns a list of strings. +// However, if the expansion of the go-sockaddr template fails an error is set. +func (b *Builder) expandOptionalAddrs(name string, s *string) []string { + if s == nil || *s == "" { + return nil + } + + x, err := template.Parse(*s) + if err != nil { + b.err = multierror.Append(b.err, fmt.Errorf("%s: error parsing %q: %s", name, s, err)) + return nil + } + + if x != *s { + // A template has been expanded, split the results from go-sockaddr + return strings.Fields(x) + } else { + // No template has been expanded, pass through the input + return []string{*s} + } +} + +func (b *Builder) expandAllOptionalAddrs(name string, addrs []string) []string { + out := make([]string, 0, len(addrs)) + for _, a := range addrs { + expanded := b.expandOptionalAddrs(name, &a) + if expanded != nil { + out = append(out, expanded...) + } + } + return out +} + // expandIPs expands the go-sockaddr template in s and returns a list of // *net.IPAddr. If one of the expanded addresses is a unix socket // address an error is set and nil is returned. diff --git a/agent/config/config.go b/agent/config/config.go index 2a14abc6b..79d274d0d 100644 --- a/agent/config/config.go +++ b/agent/config/config.go @@ -94,17 +94,14 @@ func Parse(data string, format string) (c Config, err error) { // CamelCase and snake_case. Since changing either format would break // existing setups we have to support both and slowly transition to one of // the formats. Also, there is at least one case where we use the "wrong" - // key and want to map that to the new key to support deprecation - // (`check.id` vs `service.check.CheckID`) See [GH-3179]. TranslateKeys - // maps potentially CamelCased values to the snake_case that is used in the - // config file parser. If both the CamelCase and snake_case values are set, - // the snake_case value is used and the other value is discarded. + // key and want to map that to the new key to support deprecation - + // see [GH-3179]. TranslateKeys maps potentially CamelCased values to the + // snake_case that is used in the config file parser. If both the CamelCase + // and snake_case values are set the snake_case value is used and the other + // value is discarded. TranslateKeys(m, map[string]string{ - "check_id": "id", - "checkid": "id", "deregistercriticalserviceafter": "deregister_critical_service_after", "dockercontainerid": "docker_container_id", - "enabletagoverride": "enable_tag_override", "scriptargs": "args", "serviceid": "service_id", "tlsskipverify": "tls_skip_verify", @@ -197,6 +194,8 @@ type Config struct { Ports Ports `json:"ports,omitempty" hcl:"ports" mapstructure:"ports"` RPCProtocol *int `json:"protocol,omitempty" hcl:"protocol" mapstructure:"protocol"` RaftProtocol *int `json:"raft_protocol,omitempty" hcl:"raft_protocol" mapstructure:"raft_protocol"` + RaftSnapshotThreshold *int `json:"raft_snapshot_threshold,omitempty" hcl:"raft_snapshot_threshold" mapstructure:"raft_snapshot_threshold"` + RaftSnapshotInterval *string `json:"raft_snapshot_interval,omitempty" hcl:"raft_snapshot_interval" mapstructure:"raft_snapshot_interval"` ReconnectTimeoutLAN *string `json:"reconnect_timeout,omitempty" hcl:"reconnect_timeout" mapstructure:"reconnect_timeout"` ReconnectTimeoutWAN *string `json:"reconnect_timeout_wan,omitempty" hcl:"reconnect_timeout_wan" mapstructure:"reconnect_timeout_wan"` RejoinAfterLeave *bool `json:"rejoin_after_leave,omitempty" hcl:"rejoin_after_leave" mapstructure:"rejoin_after_leave"` @@ -319,6 +318,7 @@ type ServiceDefinition struct { Name *string `json:"name,omitempty" hcl:"name" mapstructure:"name"` Tags []string `json:"tags,omitempty" hcl:"tags" mapstructure:"tags"` Address *string `json:"address,omitempty" hcl:"address" mapstructure:"address"` + Meta map[string]string `json:"meta,omitempty" hcl:"meta" mapstructure:"meta"` Port *int `json:"port,omitempty" hcl:"port" mapstructure:"port"` Check *CheckDefinition `json:"check,omitempty" hcl:"check" mapstructure:"check"` Checks []CheckDefinition `json:"checks,omitempty" hcl:"checks" mapstructure:"checks"` @@ -333,7 +333,6 @@ type CheckDefinition struct { ServiceID *string `json:"service_id,omitempty" hcl:"service_id" mapstructure:"service_id"` Token *string `json:"token,omitempty" hcl:"token" mapstructure:"token"` Status *string `json:"status,omitempty" hcl:"status" mapstructure:"status"` - Script *string `json:"script,omitempty" hcl:"script" mapstructure:"script"` ScriptArgs []string `json:"args,omitempty" hcl:"args" mapstructure:"args"` HTTP *string `json:"http,omitempty" hcl:"http" mapstructure:"http"` Header map[string][]string `json:"header,omitempty" hcl:"header" mapstructure:"header"` @@ -394,9 +393,9 @@ type Telemetry struct { FilterDefault *bool `json:"filter_default,omitempty" hcl:"filter_default" mapstructure:"filter_default"` PrefixFilter []string `json:"prefix_filter,omitempty" hcl:"prefix_filter" mapstructure:"prefix_filter"` MetricsPrefix *string `json:"metrics_prefix,omitempty" hcl:"metrics_prefix" mapstructure:"metrics_prefix"` + PrometheusRetentionTime *string `json:"prometheus_retention_time,omitempty" hcl:"prometheus_retention_time" mapstructure:"prometheus_retention_time"` StatsdAddr *string `json:"statsd_address,omitempty" hcl:"statsd_address" mapstructure:"statsd_address"` StatsiteAddr *string `json:"statsite_address,omitempty" hcl:"statsite_address" mapstructure:"statsite_address"` - EnableDeprecatedNames *bool `json:"enable_deprecated_names" hcl:"enable_deprecated_names" mapstructure:"enable_deprecated_names"` } type Ports struct { @@ -408,30 +407,6 @@ type Ports struct { Server *int `json:"server,omitempty" hcl:"server" mapstructure:"server"` } -type RetryJoinAzure struct { - ClientID *string `json:"client_id,omitempty" hcl:"client_id" mapstructure:"client_id"` - SecretAccessKey *string `json:"secret_access_key,omitempty" hcl:"secret_access_key" mapstructure:"secret_access_key"` - SubscriptionID *string `json:"subscription_id,omitempty" hcl:"subscription_id" mapstructure:"subscription_id"` - TagName *string `json:"tag_name,omitempty" hcl:"tag_name" mapstructure:"tag_name"` - TagValue *string `json:"tag_value,omitempty" hcl:"tag_value" mapstructure:"tag_value"` - TenantID *string `json:"tenant_id,omitempty" hcl:"tenant_id" mapstructure:"tenant_id"` -} - -type RetryJoinEC2 struct { - AccessKeyID *string `json:"access_key_id,omitempty" hcl:"access_key_id" mapstructure:"access_key_id"` - Region *string `json:"region,omitempty" hcl:"region" mapstructure:"region"` - SecretAccessKey *string `json:"secret_access_key,omitempty" hcl:"secret_access_key" mapstructure:"secret_access_key"` - TagKey *string `json:"tag_key,omitempty" hcl:"tag_key" mapstructure:"tag_key"` - TagValue *string `json:"tag_value,omitempty" hcl:"tag_value" mapstructure:"tag_value"` -} - -type RetryJoinGCE struct { - CredentialsFile *string `json:"credentials_file,omitempty" hcl:"credentials_file" mapstructure:"credentials_file"` - ProjectName *string `json:"project_name,omitempty" hcl:"project_name" mapstructure:"project_name"` - TagValue *string `json:"tag_value,omitempty" hcl:"tag_value" mapstructure:"tag_value"` - ZonePattern *string `json:"zone_pattern,omitempty" hcl:"zone_pattern" mapstructure:"zone_pattern"` -} - type UnixSocket struct { Group *string `json:"group,omitempty" hcl:"group" mapstructure:"group"` Mode *string `json:"mode,omitempty" hcl:"mode" mapstructure:"mode"` diff --git a/agent/config/runtime.go b/agent/config/runtime.go index f43fac24f..66e7e79e7 100644 --- a/agent/config/runtime.go +++ b/agent/config/runtime.go @@ -425,6 +425,14 @@ type RuntimeConfig struct { // hcl: telemetry { dogstatsd_tags = []string } TelemetryDogstatsdTags []string + // PrometheusRetentionTime is the retention time for prometheus metrics if greater than 0. + // A value of 0 disable Prometheus support. Regarding Prometheus, it is considered a good + // practice to put large values here (such as a few days), and at least the interval between + // prometheus requests. + // + // hcl: telemetry { prometheus_retention_time = "duration" } + TelemetryPrometheusRetentionTime time.Duration + // TelemetryFilterDefault is the default for whether to allow a metric that's not // covered by the filter. // @@ -891,6 +899,17 @@ type RuntimeConfig struct { // hcl: raft_protocol = int RaftProtocol int + // RaftSnapshotThreshold sets the minimum threshold of raft commits after which + // a snapshot is created. Defaults to 8192 + // + // hcl: raft_snapshot_threshold = int + RaftSnapshotThreshold int + + // RaftSnapshotInterval sets the interval to use when checking whether to create + // a new snapshot. Defaults to 5 seconds. + // hcl: raft_snapshot_threshold = int + RaftSnapshotInterval time.Duration + // ReconnectTimeoutLAN specifies the amount of time to wait to reconnect with // another agent before deciding it's permanently gone. This can be used to // control the time it takes to reap failed nodes from the cluster. diff --git a/agent/config/runtime_test.go b/agent/config/runtime_test.go index da62e0339..060215c35 100644 --- a/agent/config/runtime_test.go +++ b/agent/config/runtime_test.go @@ -1121,6 +1121,46 @@ func TestConfigFlagsAndEdgecases(t *testing.T) { rt.DataDir = dataDir }, }, + { + desc: "start_join address template", + args: []string{`-data-dir=` + dataDir}, + json: []string{`{ "start_join": ["{{ printf \"1.2.3.4 4.3.2.1\" }}"] }`}, + hcl: []string{`start_join = ["{{ printf \"1.2.3.4 4.3.2.1\" }}"]`}, + patch: func(rt *RuntimeConfig) { + rt.StartJoinAddrsLAN = []string{"1.2.3.4", "4.3.2.1"} + rt.DataDir = dataDir + }, + }, + { + desc: "start_join_wan address template", + args: []string{`-data-dir=` + dataDir}, + json: []string{`{ "start_join_wan": ["{{ printf \"1.2.3.4 4.3.2.1\" }}"] }`}, + hcl: []string{`start_join_wan = ["{{ printf \"1.2.3.4 4.3.2.1\" }}"]`}, + patch: func(rt *RuntimeConfig) { + rt.StartJoinAddrsWAN = []string{"1.2.3.4", "4.3.2.1"} + rt.DataDir = dataDir + }, + }, + { + desc: "retry_join address template", + args: []string{`-data-dir=` + dataDir}, + json: []string{`{ "retry_join": ["{{ printf \"1.2.3.4 4.3.2.1\" }}"] }`}, + hcl: []string{`retry_join = ["{{ printf \"1.2.3.4 4.3.2.1\" }}"]`}, + patch: func(rt *RuntimeConfig) { + rt.RetryJoinLAN = []string{"1.2.3.4", "4.3.2.1"} + rt.DataDir = dataDir + }, + }, + { + desc: "retry_join_wan address template", + args: []string{`-data-dir=` + dataDir}, + json: []string{`{ "retry_join_wan": ["{{ printf \"1.2.3.4 4.3.2.1\" }}"] }`}, + hcl: []string{`retry_join_wan = ["{{ printf \"1.2.3.4 4.3.2.1\" }}"]`}, + patch: func(rt *RuntimeConfig) { + rt.RetryJoinWAN = []string{"1.2.3.4", "4.3.2.1"} + rt.DataDir = dataDir + }, + }, // ------------------------------------------------------------ // precedence rules @@ -1811,28 +1851,10 @@ func TestConfigFlagsAndEdgecases(t *testing.T) { patch: func(rt *RuntimeConfig) { rt.DataDir = dataDir rt.TelemetryAllowedPrefixes = []string{"foo"} - rt.TelemetryBlockedPrefixes = []string{"bar", "consul.consul"} + rt.TelemetryBlockedPrefixes = []string{"bar"} }, warns: []string{`Filter rule must begin with either '+' or '-': "nix"`}, }, - { - desc: "telemetry.enable_deprecated_names adds allow rule for whitelist", - args: []string{ - `-data-dir=` + dataDir, - }, - json: []string{`{ - "telemetry": { "enable_deprecated_names": true, "filter_default": false } - }`}, - hcl: []string{` - telemetry = { enable_deprecated_names = true filter_default = false } - `}, - patch: func(rt *RuntimeConfig) { - rt.DataDir = dataDir - rt.TelemetryFilterDefault = false - rt.TelemetryAllowedPrefixes = []string{"consul.consul"} - rt.TelemetryBlockedPrefixes = []string{} - }, - }, { desc: "encrypt has invalid key", args: []string{ @@ -1883,17 +1905,17 @@ func TestConfigFlagsAndEdgecases(t *testing.T) { `-data-dir=` + dataDir, }, json: []string{ - `{ "check": { "name": "a", "script": "/bin/true" } }`, - `{ "check": { "name": "b", "script": "/bin/false" } }`, + `{ "check": { "name": "a", "args": ["/bin/true"] } }`, + `{ "check": { "name": "b", "args": ["/bin/false"] } }`, }, hcl: []string{ - `check = { name = "a" script = "/bin/true" }`, - `check = { name = "b" script = "/bin/false" }`, + `check = { name = "a" args = ["/bin/true"] }`, + `check = { name = "b" args = ["/bin/false"] }`, }, patch: func(rt *RuntimeConfig) { rt.Checks = []*structs.CheckDefinition{ - &structs.CheckDefinition{Name: "a", Script: "/bin/true"}, - &structs.CheckDefinition{Name: "b", Script: "/bin/false"}, + &structs.CheckDefinition{Name: "a", ScriptArgs: []string{"/bin/true"}}, + &structs.CheckDefinition{Name: "b", ScriptArgs: []string{"/bin/false"}}, } rt.DataDir = dataDir }, @@ -1923,20 +1945,59 @@ func TestConfigFlagsAndEdgecases(t *testing.T) { }, json: []string{ `{ "service": { "name": "a", "port": 80 } }`, - `{ "service": { "name": "b", "port": 90 } }`, + `{ "service": { "name": "b", "port": 90, "meta": {"my": "value"} } }`, }, hcl: []string{ `service = { name = "a" port = 80 }`, - `service = { name = "b" port = 90 }`, + `service = { name = "b" port = 90 meta={my="value"}}`, }, patch: func(rt *RuntimeConfig) { rt.Services = []*structs.ServiceDefinition{ &structs.ServiceDefinition{Name: "a", Port: 80}, - &structs.ServiceDefinition{Name: "b", Port: 90}, + &structs.ServiceDefinition{Name: "b", Port: 90, Meta: map[string]string{"my": "value"}}, } rt.DataDir = dataDir }, }, + { + desc: "service with wrong meta: too long key", + args: []string{ + `-data-dir=` + dataDir, + }, + json: []string{ + `{ "service": { "name": "a", "port": 80, "meta": { "` + randomString(520) + `": "metaValue" } } }`, + }, + hcl: []string{ + `service = { name = "a" port = 80, meta={` + randomString(520) + `="metaValue"} }`, + }, + err: `Key is too long`, + }, + { + desc: "service with wrong meta: too long value", + args: []string{ + `-data-dir=` + dataDir, + }, + json: []string{ + `{ "service": { "name": "a", "port": 80, "meta": { "a": "` + randomString(520) + `" } } }`, + }, + hcl: []string{ + `service = { name = "a" port = 80, meta={a="` + randomString(520) + `"} }`, + }, + err: `Value is too long`, + }, + { + desc: "service with wrong meta: too many meta", + args: []string{ + `-data-dir=` + dataDir, + }, + json: []string{ + `{ "service": { "name": "a", "port": 80, "meta": { ` + metaPairs(70, "json") + `} } }`, + }, + hcl: []string{ + `service = { name = "a" port = 80 meta={` + metaPairs(70, "hcl") + `} }`, + }, + err: `invalid meta for service a: Node metadata cannot contain more than 64 key`, + }, { desc: "translated keys", args: []string{ @@ -1947,9 +2008,9 @@ func TestConfigFlagsAndEdgecases(t *testing.T) { "service": { "name": "a", "port": 80, - "EnableTagOverride": true, + "enable_tag_override": true, "check": { - "CheckID": "x", + "id": "x", "name": "y", "DockerContainerID": "z", "DeregisterCriticalServiceAfter": "10s", @@ -1962,9 +2023,9 @@ func TestConfigFlagsAndEdgecases(t *testing.T) { `service = { name = "a" port = 80 - EnableTagOverride = true + enable_tag_override = true check = { - CheckID = "x" + id = "x" name = "y" DockerContainerID = "z" DeregisterCriticalServiceAfter = "10s" @@ -2226,7 +2287,6 @@ func TestFullConfig(t *testing.T) { "service_id": "L8G0QNmR", "token": "oo4BCTgJ", "status": "qLykAl5u", - "script": "dhGfIF8n", "args": ["f3BemRjy", "e5zgpef7"], "http": "29B93haH", "header": { @@ -2251,7 +2311,6 @@ func TestFullConfig(t *testing.T) { "service_id": "lSulPcyz", "token": "toO59sh8", "status": "9RlWsXMV", - "script": "8qbd8tWw", "args": ["4BAJttck", "4D2NPtTQ"], "http": "dohLcyQ2", "header": { @@ -2275,7 +2334,6 @@ func TestFullConfig(t *testing.T) { "service_id": "CmUUcRna", "token": "a3nQzHuy", "status": "irj26nf3", - "script": "FJsI1oXt", "args": ["9s526ogY", "gSlOHj1w"], "http": "yzhgsQ7Y", "header": { @@ -2363,6 +2421,8 @@ func TestFullConfig(t *testing.T) { }, "protocol": 30793, "raft_protocol": 19016, + "raft_snapshot_threshold": 16384, + "raft_snapshot_interval": "30s", "reconnect_timeout": "23739s", "reconnect_timeout_wan": "26694s", "recursors": [ "63.38.39.58", "92.49.18.18" ], @@ -2397,17 +2457,19 @@ func TestFullConfig(t *testing.T) { "service": { "id": "dLOXpSCI", "name": "o1ynPkp0", + "meta": { + "mymeta": "data" + }, "tags": ["nkwshvM5", "NTDWn3ek"], "address": "cOlSOhbp", "token": "msy7iWER", "port": 24237, "enable_tag_override": true, "check": { - "check_id": "RMi85Dv8", + "id": "RMi85Dv8", "name": "iehanzuq", "status": "rCvn53TH", "notes": "fti5lfF3", - "script": "rtj34nfd", "args": ["16WRUmwS", "QWk7j7ae"], "http": "dl3Fgme3", "header": { @@ -2430,7 +2492,6 @@ func TestFullConfig(t *testing.T) { "name": "sgV4F7Pk", "notes": "yP5nKbW0", "status": "7oLMEyfu", - "script": "NlUQ3nTE", "args": ["5wEZtZpv", "0Ihyk8cS"], "http": "KyDjGY9H", "header": { @@ -2452,7 +2513,6 @@ func TestFullConfig(t *testing.T) { "name": "IEqrzrsd", "notes": "SVqApqeM", "status": "XXkVoZXt", - "script": "IXLZTM6E", "args": ["wD05Bvao", "rLYB7kQC"], "http": "kyICZsn8", "header": { @@ -2481,11 +2541,10 @@ func TestFullConfig(t *testing.T) { "port": 72219, "enable_tag_override": true, "check": { - "check_id": "qmfeO5if", + "id": "qmfeO5if", "name": "atDGP7n5", "status": "pDQKEhWL", "notes": "Yt8EDLev", - "script": "MDu7wjlD", "args": ["81EDZLPa", "bPY5X8xd"], "http": "qzHYvmJO", "header": { @@ -2517,7 +2576,6 @@ func TestFullConfig(t *testing.T) { "name": "9OOS93ne", "notes": "CQy86DH0", "status": "P0SWDvrk", - "script": "6BhLJ7R9", "args": ["EXvkYIuG", "BATOyt6h"], "http": "u97ByEiW", "header": { @@ -2539,7 +2597,6 @@ func TestFullConfig(t *testing.T) { "name": "PQSaPWlT", "notes": "jKChDOdl", "status": "5qFz6OZn", - "script": "PbdxFZ3K", "args": ["NMtYWlT9", "vj74JXsm"], "http": "1LBDJhw4", "header": { @@ -2587,8 +2644,8 @@ func TestFullConfig(t *testing.T) { "dogstatsd_tags": [ "3N81zSUB","Xtj8AnXZ" ], "filter_default": true, "prefix_filter": [ "+oJotS8XJ","-cazlEhGn" ], - "enable_deprecated_names": true, "metrics_prefix": "ftO6DySn", + "prometheus_retention_time": "15s", "statsd_address": "drce87cy", "statsite_address": "HpFwKB8R" }, @@ -2663,7 +2720,6 @@ func TestFullConfig(t *testing.T) { service_id = "L8G0QNmR" token = "oo4BCTgJ" status = "qLykAl5u" - script = "dhGfIF8n" args = ["f3BemRjy", "e5zgpef7"] http = "29B93haH" header = { @@ -2688,7 +2744,6 @@ func TestFullConfig(t *testing.T) { service_id = "lSulPcyz" token = "toO59sh8" status = "9RlWsXMV" - script = "8qbd8tWw" args = ["4BAJttck", "4D2NPtTQ"] http = "dohLcyQ2" header = { @@ -2712,7 +2767,6 @@ func TestFullConfig(t *testing.T) { service_id = "CmUUcRna" token = "a3nQzHuy" status = "irj26nf3" - script = "FJsI1oXt" args = ["9s526ogY", "gSlOHj1w"] http = "yzhgsQ7Y" header = { @@ -2800,6 +2854,8 @@ func TestFullConfig(t *testing.T) { } protocol = 30793 raft_protocol = 19016 + raft_snapshot_threshold = 16384 + raft_snapshot_interval = "30s" reconnect_timeout = "23739s" reconnect_timeout_wan = "26694s" recursors = [ "63.38.39.58", "92.49.18.18" ] @@ -2834,17 +2890,19 @@ func TestFullConfig(t *testing.T) { service = { id = "dLOXpSCI" name = "o1ynPkp0" + meta = { + mymeta = "data" + } tags = ["nkwshvM5", "NTDWn3ek"] address = "cOlSOhbp" token = "msy7iWER" port = 24237 enable_tag_override = true check = { - check_id = "RMi85Dv8" + id = "RMi85Dv8" name = "iehanzuq" status = "rCvn53TH" notes = "fti5lfF3" - script = "rtj34nfd" args = ["16WRUmwS", "QWk7j7ae"] http = "dl3Fgme3" header = { @@ -2867,7 +2925,6 @@ func TestFullConfig(t *testing.T) { name = "sgV4F7Pk" notes = "yP5nKbW0" status = "7oLMEyfu" - script = "NlUQ3nTE" args = ["5wEZtZpv", "0Ihyk8cS"] http = "KyDjGY9H" header = { @@ -2889,7 +2946,6 @@ func TestFullConfig(t *testing.T) { name = "IEqrzrsd" notes = "SVqApqeM" status = "XXkVoZXt" - script = "IXLZTM6E" args = ["wD05Bvao", "rLYB7kQC"] http = "kyICZsn8" header = { @@ -2918,11 +2974,10 @@ func TestFullConfig(t *testing.T) { port = 72219 enable_tag_override = true check = { - check_id = "qmfeO5if" + id = "qmfeO5if" name = "atDGP7n5" status = "pDQKEhWL" notes = "Yt8EDLev" - script = "MDu7wjlD" args = ["81EDZLPa", "bPY5X8xd"] http = "qzHYvmJO" header = { @@ -2954,7 +3009,6 @@ func TestFullConfig(t *testing.T) { name = "9OOS93ne" notes = "CQy86DH0" status = "P0SWDvrk" - script = "6BhLJ7R9" args = ["EXvkYIuG", "BATOyt6h"] http = "u97ByEiW" header = { @@ -2976,7 +3030,6 @@ func TestFullConfig(t *testing.T) { name = "PQSaPWlT" notes = "jKChDOdl" status = "5qFz6OZn" - script = "PbdxFZ3K" args = ["NMtYWlT9", "vj74JXsm"] http = "1LBDJhw4" header = { @@ -3024,8 +3077,8 @@ func TestFullConfig(t *testing.T) { dogstatsd_tags = [ "3N81zSUB","Xtj8AnXZ" ] filter_default = true prefix_filter = [ "+oJotS8XJ","-cazlEhGn" ] - enable_deprecated_names = true metrics_prefix = "ftO6DySn" + prometheus_retention_time = "15s" statsd_address = "drce87cy" statsite_address = "HpFwKB8R" } @@ -3239,7 +3292,6 @@ func TestFullConfig(t *testing.T) { ServiceID: "lSulPcyz", Token: "toO59sh8", Status: "9RlWsXMV", - Script: "8qbd8tWw", ScriptArgs: []string{"4BAJttck", "4D2NPtTQ"}, HTTP: "dohLcyQ2", Header: map[string][]string{ @@ -3263,7 +3315,6 @@ func TestFullConfig(t *testing.T) { ServiceID: "CmUUcRna", Token: "a3nQzHuy", Status: "irj26nf3", - Script: "FJsI1oXt", ScriptArgs: []string{"9s526ogY", "gSlOHj1w"}, HTTP: "yzhgsQ7Y", Header: map[string][]string{ @@ -3287,7 +3338,6 @@ func TestFullConfig(t *testing.T) { ServiceID: "L8G0QNmR", Token: "oo4BCTgJ", Status: "qLykAl5u", - Script: "dhGfIF8n", ScriptArgs: []string{"f3BemRjy", "e5zgpef7"}, HTTP: "29B93haH", Header: map[string][]string{ @@ -3363,6 +3413,8 @@ func TestFullConfig(t *testing.T) { RPCRateLimit: 12029.43, RPCMaxBurst: 44848, RaftProtocol: 19016, + RaftSnapshotThreshold: 16384, + RaftSnapshotInterval: 30 * time.Second, ReconnectTimeoutLAN: 23739 * time.Second, ReconnectTimeoutWAN: 26694 * time.Second, RejoinAfterLeave: true, @@ -3407,7 +3459,6 @@ func TestFullConfig(t *testing.T) { Name: "atDGP7n5", Status: "pDQKEhWL", Notes: "Yt8EDLev", - Script: "MDu7wjlD", ScriptArgs: []string{"81EDZLPa", "bPY5X8xd"}, HTTP: "qzHYvmJO", Header: map[string][]string{ @@ -3440,7 +3491,6 @@ func TestFullConfig(t *testing.T) { Name: "9OOS93ne", Notes: "CQy86DH0", Status: "P0SWDvrk", - Script: "6BhLJ7R9", ScriptArgs: []string{"EXvkYIuG", "BATOyt6h"}, HTTP: "u97ByEiW", Header: map[string][]string{ @@ -3462,7 +3512,6 @@ func TestFullConfig(t *testing.T) { Name: "PQSaPWlT", Notes: "jKChDOdl", Status: "5qFz6OZn", - Script: "PbdxFZ3K", ScriptArgs: []string{"NMtYWlT9", "vj74JXsm"}, HTTP: "1LBDJhw4", Header: map[string][]string{ @@ -3487,6 +3536,7 @@ func TestFullConfig(t *testing.T) { Tags: []string{"nkwshvM5", "NTDWn3ek"}, Address: "cOlSOhbp", Token: "msy7iWER", + Meta: map[string]string{"mymeta": "data"}, Port: 24237, EnableTagOverride: true, Checks: structs.CheckTypes{ @@ -3495,7 +3545,6 @@ func TestFullConfig(t *testing.T) { Name: "sgV4F7Pk", Notes: "yP5nKbW0", Status: "7oLMEyfu", - Script: "NlUQ3nTE", ScriptArgs: []string{"5wEZtZpv", "0Ihyk8cS"}, HTTP: "KyDjGY9H", Header: map[string][]string{ @@ -3517,7 +3566,6 @@ func TestFullConfig(t *testing.T) { Name: "IEqrzrsd", Notes: "SVqApqeM", Status: "XXkVoZXt", - Script: "IXLZTM6E", ScriptArgs: []string{"wD05Bvao", "rLYB7kQC"}, HTTP: "kyICZsn8", Header: map[string][]string{ @@ -3539,7 +3587,6 @@ func TestFullConfig(t *testing.T) { Name: "iehanzuq", Status: "rCvn53TH", Notes: "fti5lfF3", - Script: "rtj34nfd", ScriptArgs: []string{"16WRUmwS", "QWk7j7ae"}, HTTP: "dl3Fgme3", Header: map[string][]string{ @@ -3585,9 +3632,10 @@ func TestFullConfig(t *testing.T) { TelemetryDogstatsdAddr: "0wSndumK", TelemetryDogstatsdTags: []string{"3N81zSUB", "Xtj8AnXZ"}, TelemetryFilterDefault: true, - TelemetryAllowedPrefixes: []string{"oJotS8XJ", "consul.consul"}, + TelemetryAllowedPrefixes: []string{"oJotS8XJ"}, TelemetryBlockedPrefixes: []string{"cazlEhGn"}, TelemetryMetricsPrefix: "ftO6DySn", + TelemetryPrometheusRetentionTime: 15 * time.Second, TelemetryStatsdAddr: "drce87cy", TelemetryStatsiteAddr: "HpFwKB8R", TLSCipherSuites: []uint16{tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305, tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384}, @@ -3958,7 +4006,6 @@ func TestSanitize(t *testing.T) { "Method": "", "Name": "zoo", "Notes": "", - "Script": "", "ScriptArgs": [], "ServiceID": "", "Shell": "", @@ -4048,6 +4095,8 @@ func TestSanitize(t *testing.T) { "RPCProtocol": 0, "RPCRateLimit": 0, "RaftProtocol": 0, + "RaftSnapshotInterval": "0s", + "RaftSnapshotThreshold": 0, "ReconnectTimeoutLAN": "0s", "ReconnectTimeoutWAN": "0s", "RejoinAfterLeave": false, @@ -4090,7 +4139,6 @@ func TestSanitize(t *testing.T) { "Method": "", "Name": "blurb", "Notes": "", - "Script": "", "ScriptArgs": [], "Shell": "", "Status": "", @@ -4140,6 +4188,7 @@ func TestSanitize(t *testing.T) { "TelemetryDogstatsdTags": [], "TelemetryFilterDefault": false, "TelemetryMetricsPrefix": "", + "TelemetryPrometheusRetentionTime": "0s", "TelemetryStatsdAddr": "", "TelemetryStatsiteAddr": "", "TranslateWANAddrs": false, diff --git a/agent/consul/acl.go b/agent/consul/acl.go index bea2a5617..1e95e62e4 100644 --- a/agent/consul/acl.go +++ b/agent/consul/acl.go @@ -41,7 +41,6 @@ type aclCacheEntry struct { // assumes its running in the ACL datacenter, or in a non-ACL datacenter when // using its replicated ACLs during an outage. func (s *Server) aclLocalFault(id string) (string, string, error) { - defer metrics.MeasureSince([]string{"consul", "acl", "fault"}, time.Now()) defer metrics.MeasureSince([]string{"acl", "fault"}, time.Now()) // Query the state store. @@ -75,7 +74,6 @@ func (s *Server) resolveToken(id string) (acl.ACL, error) { if len(authDC) == 0 { return nil, nil } - defer metrics.MeasureSince([]string{"consul", "acl", "resolveToken"}, time.Now()) defer metrics.MeasureSince([]string{"acl", "resolveToken"}, time.Now()) // Handle the anonymous token @@ -159,11 +157,9 @@ func (c *aclCache) lookupACL(id, authDC string) (acl.ACL, error) { // Check for live cache. if cached != nil && time.Now().Before(cached.Expires) { - metrics.IncrCounter([]string{"consul", "acl", "cache_hit"}, 1) metrics.IncrCounter([]string{"acl", "cache_hit"}, 1) return cached.ACL, nil } - metrics.IncrCounter([]string{"consul", "acl", "cache_miss"}, 1) metrics.IncrCounter([]string{"acl", "cache_miss"}, 1) // Attempt to refresh the policy from the ACL datacenter via an RPC. @@ -226,7 +222,6 @@ func (c *aclCache) lookupACL(id, authDC string) (acl.ACL, error) { // Fake up an ACL datacenter reply and inject it into the cache. // Note we use the local TTL here, so this'll be used for that // amount of time even once the ACL datacenter becomes available. - metrics.IncrCounter([]string{"consul", "acl", "replication_hit"}, 1) metrics.IncrCounter([]string{"acl", "replication_hit"}, 1) reply.ETag = makeACLETag(parent, policy) reply.TTL = c.config.ACLTTL @@ -678,6 +673,7 @@ func vetRegisterWithACL(rule acl.ACL, subj *structs.RegisterRequest, ID: subj.Service.ID, Service: subj.Service.Service, Tags: subj.Service.Tags, + Meta: subj.Service.Meta, Address: subj.Service.Address, Port: subj.Service.Port, EnableTagOverride: subj.Service.EnableTagOverride, diff --git a/agent/consul/acl_endpoint.go b/agent/consul/acl_endpoint.go index 2a8b4b234..c4f1d07a7 100644 --- a/agent/consul/acl_endpoint.go +++ b/agent/consul/acl_endpoint.go @@ -145,7 +145,6 @@ func (a *ACL) Apply(args *structs.ACLRequest, reply *string) error { if done, err := a.srv.forward("ACL.Apply", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "acl", "apply"}, time.Now()) defer metrics.MeasureSince([]string{"acl", "apply"}, time.Now()) // Verify we are allowed to serve this request diff --git a/agent/consul/acl_replication.go b/agent/consul/acl_replication.go index 38d5f25fc..b008aa87a 100644 --- a/agent/consul/acl_replication.go +++ b/agent/consul/acl_replication.go @@ -149,7 +149,6 @@ func (s *Server) fetchLocalACLs() (structs.ACLs, error) { // datacenter. The lastIndex parameter is a hint about which remote index we // have replicated to, so this is expected to block until something changes. func (s *Server) fetchRemoteACLs(lastRemoteIndex uint64) (*structs.IndexedACLs, error) { - defer metrics.MeasureSince([]string{"consul", "leader", "fetchRemoteACLs"}, time.Now()) defer metrics.MeasureSince([]string{"leader", "fetchRemoteACLs"}, time.Now()) args := structs.DCSpecificRequest{ @@ -170,7 +169,6 @@ func (s *Server) fetchRemoteACLs(lastRemoteIndex uint64) (*structs.IndexedACLs, // UpdateLocalACLs is given a list of changes to apply in order to bring the // local ACLs in-line with the remote ACLs from the ACL datacenter. func (s *Server) updateLocalACLs(changes structs.ACLRequests) error { - defer metrics.MeasureSince([]string{"consul", "leader", "updateLocalACLs"}, time.Now()) defer metrics.MeasureSince([]string{"leader", "updateLocalACLs"}, time.Now()) minTimePerOp := time.Second / time.Duration(s.config.ACLReplicationApplyLimit) @@ -218,7 +216,6 @@ func (s *Server) replicateACLs(lastRemoteIndex uint64) (uint64, error) { // Measure everything after the remote query, which can block for long // periods of time. This metric is a good measure of how expensive the // replication process is. - defer metrics.MeasureSince([]string{"consul", "leader", "replicateACLs"}, time.Now()) defer metrics.MeasureSince([]string{"leader", "replicateACLs"}, time.Now()) local, err := s.fetchLocalACLs() diff --git a/agent/consul/autopilot.go b/agent/consul/autopilot.go index 5c5cf6ffe..59741efc9 100644 --- a/agent/consul/autopilot.go +++ b/agent/consul/autopilot.go @@ -55,13 +55,10 @@ func (d *AutopilotDelegate) IsServer(m serf.Member) (*autopilot.ServerInfo, erro // Heartbeat a metric for monitoring if we're the leader func (d *AutopilotDelegate) NotifyHealth(health autopilot.OperatorHealthReply) { if d.server.raft.State() == raft.Leader { - metrics.SetGauge([]string{"consul", "autopilot", "failure_tolerance"}, float32(health.FailureTolerance)) metrics.SetGauge([]string{"autopilot", "failure_tolerance"}, float32(health.FailureTolerance)) if health.Healthy { - metrics.SetGauge([]string{"consul", "autopilot", "healthy"}, 1) metrics.SetGauge([]string{"autopilot", "healthy"}, 1) } else { - metrics.SetGauge([]string{"consul", "autopilot", "healthy"}, 0) metrics.SetGauge([]string{"autopilot", "healthy"}, 0) } } diff --git a/agent/consul/catalog_endpoint.go b/agent/consul/catalog_endpoint.go index 5cfb3ff51..0c1cbe3de 100644 --- a/agent/consul/catalog_endpoint.go +++ b/agent/consul/catalog_endpoint.go @@ -24,7 +24,6 @@ func (c *Catalog) Register(args *structs.RegisterRequest, reply *struct{}) error if done, err := c.srv.forward("Catalog.Register", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "catalog", "register"}, time.Now()) defer metrics.MeasureSince([]string{"catalog", "register"}, time.Now()) // Verify the args. @@ -117,7 +116,6 @@ func (c *Catalog) Deregister(args *structs.DeregisterRequest, reply *struct{}) e if done, err := c.srv.forward("Catalog.Deregister", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "catalog", "deregister"}, time.Now()) defer metrics.MeasureSince([]string{"catalog", "deregister"}, time.Now()) // Verify the args @@ -242,7 +240,7 @@ func (c *Catalog) ServiceNodes(args *structs.ServiceSpecificRequest, reply *stru } // Verify the arguments - if args.ServiceName == "" { + if args.ServiceName == "" && args.ServiceAddress == "" { return fmt.Errorf("Must provide service name") } @@ -258,6 +256,9 @@ func (c *Catalog) ServiceNodes(args *structs.ServiceSpecificRequest, reply *stru } else { index, services, err = state.ServiceNodes(ws, args.ServiceName) } + if args.ServiceAddress != "" { + index, services, err = state.ServiceAddressNodes(ws, args.ServiceAddress) + } if err != nil { return err } @@ -279,19 +280,13 @@ func (c *Catalog) ServiceNodes(args *structs.ServiceSpecificRequest, reply *stru // Provide some metrics if err == nil { - metrics.IncrCounterWithLabels([]string{"consul", "catalog", "service", "query"}, 1, - []metrics.Label{{Name: "service", Value: args.ServiceName}}) metrics.IncrCounterWithLabels([]string{"catalog", "service", "query"}, 1, []metrics.Label{{Name: "service", Value: args.ServiceName}}) if args.ServiceTag != "" { - metrics.IncrCounterWithLabels([]string{"consul", "catalog", "service", "query-tag"}, 1, - []metrics.Label{{Name: "service", Value: args.ServiceName}, {Name: "tag", Value: args.ServiceTag}}) metrics.IncrCounterWithLabels([]string{"catalog", "service", "query-tag"}, 1, []metrics.Label{{Name: "service", Value: args.ServiceName}, {Name: "tag", Value: args.ServiceTag}}) } if len(reply.ServiceNodes) == 0 { - metrics.IncrCounterWithLabels([]string{"consul", "catalog", "service", "not-found"}, 1, - []metrics.Label{{Name: "service", Value: args.ServiceName}}) metrics.IncrCounterWithLabels([]string{"catalog", "service", "not-found"}, 1, []metrics.Label{{Name: "service", Value: args.ServiceName}}) } diff --git a/agent/consul/client.go b/agent/consul/client.go index 84e1a7319..cd25811ad 100644 --- a/agent/consul/client.go +++ b/agent/consul/client.go @@ -73,6 +73,9 @@ type Client struct { shutdown bool shutdownCh chan struct{} shutdownLock sync.Mutex + + // embedded struct to hold all the enterprise specific data + EnterpriseClient } // NewClient is used to construct a new Consul client from the @@ -131,7 +134,12 @@ func NewClientLogger(config *Config, logger *log.Logger) (*Client, error) { shutdownCh: make(chan struct{}), } - c.rpcLimiter.Store(rate.NewLimiter(config.RPCRate, config.RPCMaxBurst)) + c.rpcLimiter.Store(rate.NewLimiter(config.RPCRate, config.RPCMaxBurst)) + + if err := c.initEnterprise(); err != nil { + c.Shutdown() + return nil, err + } // Initialize the LAN Serf c.serf, err = c.setupSerf(config.SerfLANConfig, @@ -149,6 +157,11 @@ func NewClientLogger(config *Config, logger *log.Logger) (*Client, error) { // handlers depend on the router and the router depends on Serf. go c.lanEventHandler() + if err := c.startEnterprise(); err != nil { + c.Shutdown() + return nil, err + } + return c, nil } @@ -251,10 +264,8 @@ TRY: } // Enforce the RPC limit. - metrics.IncrCounter([]string{"consul", "client", "rpc"}, 1) metrics.IncrCounter([]string{"client", "rpc"}, 1) if !c.rpcLimiter.Load().(*rate.Limiter).Allow() { - metrics.IncrCounter([]string{"consul", "client", "rpc", "exceeded"}, 1) metrics.IncrCounter([]string{"client", "rpc", "exceeded"}, 1) return structs.ErrRPCRateExceeded } @@ -295,10 +306,8 @@ func (c *Client) SnapshotRPC(args *structs.SnapshotRequest, in io.Reader, out io } // Enforce the RPC limit. - metrics.IncrCounter([]string{"consul", "client", "rpc"}, 1) metrics.IncrCounter([]string{"client", "rpc"}, 1) if !c.rpcLimiter.Load().(*rate.Limiter).Allow() { - metrics.IncrCounter([]string{"consul", "client", "rpc", "exceeded"}, 1) metrics.IncrCounter([]string{"client", "rpc", "exceeded"}, 1) return structs.ErrRPCRateExceeded } @@ -348,6 +357,17 @@ func (c *Client) Stats() map[string]map[string]string { "serf_lan": c.serf.Stats(), "runtime": runtimeStats(), } + + for outerKey, outerValue := range c.enterpriseStats() { + if _, ok := stats[outerKey]; ok { + for innerKey, innerValue := range outerValue { + stats[outerKey][innerKey] = innerValue + } + } else { + stats[outerKey] = outerValue + } + } + return stats } diff --git a/agent/consul/client_serf.go b/agent/consul/client_serf.go index c47811bb5..a133626d3 100644 --- a/agent/consul/client_serf.go +++ b/agent/consul/client_serf.go @@ -135,6 +135,8 @@ func (c *Client) localEvent(event serf.UserEvent) { c.config.UserEventHandler(event) } default: - c.logger.Printf("[WARN] consul: Unhandled local event: %v", event) + if !c.handleEnterpriseUserEvents(event) { + c.logger.Printf("[WARN] consul: Unhandled local event: %v", event) + } } } diff --git a/agent/consul/config.go b/agent/consul/config.go index a8a7f249b..6966b5628 100644 --- a/agent/consul/config.go +++ b/agent/consul/config.go @@ -448,8 +448,11 @@ func DefaultConfig() *Config { // Disable shutdown on removal conf.RaftConfig.ShutdownOnRemove = false - // Check every 5 seconds to see if there are enough new entries for a snapshot - conf.RaftConfig.SnapshotInterval = 5 * time.Second + // Check every 5 seconds to see if there are enough new entries for a snapshot, can be overridden + conf.RaftConfig.SnapshotInterval = 30 * time.Second + + // Snapshots are created every 16384 entries by default, can be overridden + conf.RaftConfig.SnapshotThreshold = 16384 return conf } diff --git a/agent/consul/enterprise_client_oss.go b/agent/consul/enterprise_client_oss.go new file mode 100644 index 000000000..9f3a4cfe6 --- /dev/null +++ b/agent/consul/enterprise_client_oss.go @@ -0,0 +1,25 @@ +// +build !ent + +package consul + +import ( + "github.com/hashicorp/serf/serf" +) + +type EnterpriseClient struct{} + +func (c *Client) initEnterprise() error { + return nil +} + +func (c *Client) startEnterprise() error { + return nil +} + +func (c *Client) handleEnterpriseUserEvents(event serf.UserEvent) bool { + return false +} + +func (c *Client) enterpriseStats() map[string]map[string]string { + return nil +} diff --git a/agent/consul/enterprise_server_oss.go b/agent/consul/enterprise_server_oss.go new file mode 100644 index 000000000..84b49403b --- /dev/null +++ b/agent/consul/enterprise_server_oss.go @@ -0,0 +1,32 @@ +// +build !ent + +package consul + +import ( + "net" + + "github.com/hashicorp/consul/agent/pool" + "github.com/hashicorp/serf/serf" +) + +type EnterpriseServer struct{} + +func (s *Server) initEnterprise() error { + return nil +} + +func (s *Server) startEnterprise() error { + return nil +} + +func (s *Server) handleEnterpriseUserEvents(event serf.UserEvent) bool { + return false +} + +func (s *Server) handleEnterpriseRPCConn(rtype pool.RPCType, conn net.Conn, isTLS bool) bool { + return false +} + +func (s *Server) enterpriseStats() map[string]map[string]string { + return nil +} diff --git a/agent/consul/fsm/commands_oss.go b/agent/consul/fsm/commands_oss.go index 2029f1723..ede04eef6 100644 --- a/agent/consul/fsm/commands_oss.go +++ b/agent/consul/fsm/commands_oss.go @@ -23,7 +23,6 @@ func init() { } func (c *FSM) applyRegister(buf []byte, index uint64) interface{} { - defer metrics.MeasureSince([]string{"consul", "fsm", "register"}, time.Now()) defer metrics.MeasureSince([]string{"fsm", "register"}, time.Now()) var req structs.RegisterRequest if err := structs.Decode(buf, &req); err != nil { @@ -39,7 +38,6 @@ func (c *FSM) applyRegister(buf []byte, index uint64) interface{} { } func (c *FSM) applyDeregister(buf []byte, index uint64) interface{} { - defer metrics.MeasureSince([]string{"consul", "fsm", "deregister"}, time.Now()) defer metrics.MeasureSince([]string{"fsm", "deregister"}, time.Now()) var req structs.DeregisterRequest if err := structs.Decode(buf, &req); err != nil { @@ -73,8 +71,6 @@ func (c *FSM) applyKVSOperation(buf []byte, index uint64) interface{} { if err := structs.Decode(buf, &req); err != nil { panic(fmt.Errorf("failed to decode request: %v", err)) } - defer metrics.MeasureSinceWithLabels([]string{"consul", "fsm", "kvs"}, time.Now(), - []metrics.Label{{Name: "op", Value: string(req.Op)}}) defer metrics.MeasureSinceWithLabels([]string{"fsm", "kvs"}, time.Now(), []metrics.Label{{Name: "op", Value: string(req.Op)}}) switch req.Op { @@ -120,8 +116,6 @@ func (c *FSM) applySessionOperation(buf []byte, index uint64) interface{} { if err := structs.Decode(buf, &req); err != nil { panic(fmt.Errorf("failed to decode request: %v", err)) } - defer metrics.MeasureSinceWithLabels([]string{"consul", "fsm", "session"}, time.Now(), - []metrics.Label{{Name: "op", Value: string(req.Op)}}) defer metrics.MeasureSinceWithLabels([]string{"fsm", "session"}, time.Now(), []metrics.Label{{Name: "op", Value: string(req.Op)}}) switch req.Op { @@ -143,8 +137,6 @@ func (c *FSM) applyACLOperation(buf []byte, index uint64) interface{} { if err := structs.Decode(buf, &req); err != nil { panic(fmt.Errorf("failed to decode request: %v", err)) } - defer metrics.MeasureSinceWithLabels([]string{"consul", "fsm", "acl"}, time.Now(), - []metrics.Label{{Name: "op", Value: string(req.Op)}}) defer metrics.MeasureSinceWithLabels([]string{"fsm", "acl"}, time.Now(), []metrics.Label{{Name: "op", Value: string(req.Op)}}) switch req.Op { @@ -177,8 +169,6 @@ func (c *FSM) applyTombstoneOperation(buf []byte, index uint64) interface{} { if err := structs.Decode(buf, &req); err != nil { panic(fmt.Errorf("failed to decode request: %v", err)) } - defer metrics.MeasureSinceWithLabels([]string{"consul", "fsm", "tombstone"}, time.Now(), - []metrics.Label{{Name: "op", Value: string(req.Op)}}) defer metrics.MeasureSinceWithLabels([]string{"fsm", "tombstone"}, time.Now(), []metrics.Label{{Name: "op", Value: string(req.Op)}}) switch req.Op { @@ -199,7 +189,6 @@ func (c *FSM) applyCoordinateBatchUpdate(buf []byte, index uint64) interface{} { if err := structs.Decode(buf, &updates); err != nil { panic(fmt.Errorf("failed to decode batch updates: %v", err)) } - defer metrics.MeasureSince([]string{"consul", "fsm", "coordinate", "batch-update"}, time.Now()) defer metrics.MeasureSince([]string{"fsm", "coordinate", "batch-update"}, time.Now()) if err := c.state.CoordinateBatchUpdate(index, updates); err != nil { return err @@ -215,8 +204,6 @@ func (c *FSM) applyPreparedQueryOperation(buf []byte, index uint64) interface{} panic(fmt.Errorf("failed to decode request: %v", err)) } - defer metrics.MeasureSinceWithLabels([]string{"consul", "fsm", "prepared-query"}, time.Now(), - []metrics.Label{{Name: "op", Value: string(req.Op)}}) defer metrics.MeasureSinceWithLabels([]string{"fsm", "prepared-query"}, time.Now(), []metrics.Label{{Name: "op", Value: string(req.Op)}}) switch req.Op { @@ -235,7 +222,6 @@ func (c *FSM) applyTxn(buf []byte, index uint64) interface{} { if err := structs.Decode(buf, &req); err != nil { panic(fmt.Errorf("failed to decode request: %v", err)) } - defer metrics.MeasureSince([]string{"consul", "fsm", "txn"}, time.Now()) defer metrics.MeasureSince([]string{"fsm", "txn"}, time.Now()) results, errors := c.state.TxnRW(index, req.Ops) return structs.TxnResponse{ @@ -249,7 +235,6 @@ func (c *FSM) applyAutopilotUpdate(buf []byte, index uint64) interface{} { if err := structs.Decode(buf, &req); err != nil { panic(fmt.Errorf("failed to decode request: %v", err)) } - defer metrics.MeasureSince([]string{"consul", "fsm", "autopilot"}, time.Now()) defer metrics.MeasureSince([]string{"fsm", "autopilot"}, time.Now()) if req.CAS { diff --git a/agent/consul/fsm/snapshot.go b/agent/consul/fsm/snapshot.go index 3721f0756..51b58d290 100644 --- a/agent/consul/fsm/snapshot.go +++ b/agent/consul/fsm/snapshot.go @@ -57,7 +57,6 @@ func registerRestorer(msg structs.MessageType, fn restorer) { // Persist saves the FSM snapshot out to the given sink. func (s *snapshot) Persist(sink raft.SnapshotSink) error { - defer metrics.MeasureSince([]string{"consul", "fsm", "persist"}, time.Now()) defer metrics.MeasureSince([]string{"fsm", "persist"}, time.Now()) // Write the header diff --git a/agent/consul/health_endpoint.go b/agent/consul/health_endpoint.go index 1cf746044..db59356c8 100644 --- a/agent/consul/health_endpoint.go +++ b/agent/consul/health_endpoint.go @@ -139,19 +139,13 @@ func (h *Health) ServiceNodes(args *structs.ServiceSpecificRequest, reply *struc // Provide some metrics if err == nil { - metrics.IncrCounterWithLabels([]string{"consul", "health", "service", "query"}, 1, - []metrics.Label{{Name: "service", Value: args.ServiceName}}) metrics.IncrCounterWithLabels([]string{"health", "service", "query"}, 1, []metrics.Label{{Name: "service", Value: args.ServiceName}}) if args.ServiceTag != "" { - metrics.IncrCounterWithLabels([]string{"consul", "health", "service", "query-tag"}, 1, - []metrics.Label{{Name: "service", Value: args.ServiceName}, {Name: "tag", Value: args.ServiceTag}}) metrics.IncrCounterWithLabels([]string{"health", "service", "query-tag"}, 1, []metrics.Label{{Name: "service", Value: args.ServiceName}, {Name: "tag", Value: args.ServiceTag}}) } if len(reply.Nodes) == 0 { - metrics.IncrCounterWithLabels([]string{"consul", "health", "service", "not-found"}, 1, - []metrics.Label{{Name: "service", Value: args.ServiceName}}) metrics.IncrCounterWithLabels([]string{"health", "service", "not-found"}, 1, []metrics.Label{{Name: "service", Value: args.ServiceName}}) } diff --git a/agent/consul/kvs_endpoint.go b/agent/consul/kvs_endpoint.go index ced5c4119..b5f3fbb57 100644 --- a/agent/consul/kvs_endpoint.go +++ b/agent/consul/kvs_endpoint.go @@ -81,7 +81,6 @@ func (k *KVS) Apply(args *structs.KVSRequest, reply *bool) error { if done, err := k.srv.forward("KVS.Apply", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "kvs", "apply"}, time.Now()) defer metrics.MeasureSince([]string{"kvs", "apply"}, time.Now()) // Perform the pre-apply checks. diff --git a/agent/consul/leader.go b/agent/consul/leader.go index f5a1f237e..d950d71ba 100644 --- a/agent/consul/leader.go +++ b/agent/consul/leader.go @@ -116,7 +116,6 @@ RECONCILE: s.logger.Printf("[ERR] consul: failed to wait for barrier: %v", err) goto WAIT } - metrics.MeasureSince([]string{"consul", "leader", "barrier"}, start) metrics.MeasureSince([]string{"leader", "barrier"}, start) // Check if we need to handle initial leadership actions @@ -183,7 +182,6 @@ WAIT: // previously inflight transactions have been committed and that our // state is up-to-date. func (s *Server) establishLeadership() error { - defer metrics.MeasureSince([]string{"consul", "leader", "establish_leadership"}, time.Now()) // This will create the anonymous token and master token (if that is // configured). if err := s.initializeACL(); err != nil { @@ -219,7 +217,6 @@ func (s *Server) establishLeadership() error { // revokeLeadership is invoked once we step down as leader. // This is used to cleanup any state that may be specific to a leader. func (s *Server) revokeLeadership() error { - defer metrics.MeasureSince([]string{"consul", "leader", "revoke_leadership"}, time.Now()) // Disable the tombstone GC, since it is only useful as a leader s.tombstoneGC.SetEnabled(false) @@ -444,7 +441,6 @@ func (s *Server) reconcileMember(member serf.Member) error { s.logger.Printf("[WARN] consul: skipping reconcile of node %v", member) return nil } - defer metrics.MeasureSince([]string{"consul", "leader", "reconcileMember"}, time.Now()) defer metrics.MeasureSince([]string{"leader", "reconcileMember"}, time.Now()) var err error switch member.Status { @@ -805,7 +801,6 @@ func (s *Server) removeConsulServer(m serf.Member, port int) error { // through Raft to ensure consistency. We do this outside the leader loop // to avoid blocking. func (s *Server) reapTombstones(index uint64) { - defer metrics.MeasureSince([]string{"consul", "leader", "reapTombstones"}, time.Now()) defer metrics.MeasureSince([]string{"leader", "reapTombstones"}, time.Now()) req := structs.TombstoneRequest{ Datacenter: s.config.Datacenter, diff --git a/agent/consul/prepared_query/template_test.go b/agent/consul/prepared_query/template_test.go index a14fb44ad..05cbc17da 100644 --- a/agent/consul/prepared_query/template_test.go +++ b/agent/consul/prepared_query/template_test.go @@ -6,6 +6,7 @@ import ( "testing" "github.com/hashicorp/consul/agent/structs" + "github.com/hashicorp/consul/types" "github.com/mitchellh/copystructure" ) @@ -32,6 +33,15 @@ var ( "${agent.segment}", }, }, + IgnoreCheckIDs: []types.CheckID{ + "${name.full}", + "${name.prefix}", + "${name.suffix}", + "${match(0)}", + "${match(1)}", + "${match(2)}", + "${agent.segment}", + }, Tags: []string{ "${name.full}", "${name.prefix}", @@ -124,6 +134,7 @@ func TestTemplate_Compile(t *testing.T) { query.Template.Type = structs.QueryTemplateTypeNamePrefixMatch query.Template.Regexp = "^(hello)there$" query.Service.Service = "${name.full}" + query.Service.IgnoreCheckIDs = []types.CheckID{"${match(1)}", "${agent.segment}"} query.Service.Tags = []string{"${match(1)}", "${agent.segment}"} backup, err := copystructure.Copy(query) if err != nil { @@ -151,6 +162,10 @@ func TestTemplate_Compile(t *testing.T) { }, Service: structs.ServiceQuery{ Service: "hellothere", + IgnoreCheckIDs: []types.CheckID{ + "hello", + "segment-foo", + }, Tags: []string{ "hello", "segment-foo", diff --git a/agent/consul/prepared_query_endpoint.go b/agent/consul/prepared_query_endpoint.go index ff7fa4d38..a56ddd35a 100644 --- a/agent/consul/prepared_query_endpoint.go +++ b/agent/consul/prepared_query_endpoint.go @@ -32,7 +32,6 @@ func (p *PreparedQuery) Apply(args *structs.PreparedQueryRequest, reply *string) if done, err := p.srv.forward("PreparedQuery.Apply", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "prepared-query", "apply"}, time.Now()) defer metrics.MeasureSince([]string{"prepared-query", "apply"}, time.Now()) // Validate the ID. We must create new IDs before applying to the Raft @@ -287,7 +286,6 @@ func (p *PreparedQuery) Explain(args *structs.PreparedQueryExecuteRequest, if done, err := p.srv.forward("PreparedQuery.Explain", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "prepared-query", "explain"}, time.Now()) defer metrics.MeasureSince([]string{"prepared-query", "explain"}, time.Now()) // We have to do this ourselves since we are not doing a blocking RPC. @@ -335,7 +333,6 @@ func (p *PreparedQuery) Execute(args *structs.PreparedQueryExecuteRequest, if done, err := p.srv.forward("PreparedQuery.Execute", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "prepared-query", "execute"}, time.Now()) defer metrics.MeasureSince([]string{"prepared-query", "execute"}, time.Now()) // We have to do this ourselves since we are not doing a blocking RPC. @@ -393,6 +390,31 @@ func (p *PreparedQuery) Execute(args *structs.PreparedQueryExecuteRequest, // Respect the magic "_agent" flag. if qs.Node == "_agent" { qs.Node = args.Agent.Node + } else if qs.Node == "_ip" { + if args.Source.Ip != "" { + _, nodes, err := state.Nodes(nil) + if err != nil { + return err + } + + for _, node := range nodes { + if args.Source.Ip == node.Address { + qs.Node = node.Node + break + } + } + } else { + p.srv.logger.Printf("[WARN] Prepared Query using near=_ip requires " + + "the source IP to be set but none was provided. No distance " + + "sorting will be done.") + + } + + // Either a source IP was given but we couldnt find the associated node + // or no source ip was given. In both cases we should wipe the Node value + if qs.Node == "_ip" { + qs.Node = "" + } } // Perform the distance sort @@ -446,7 +468,6 @@ func (p *PreparedQuery) ExecuteRemote(args *structs.PreparedQueryExecuteRemoteRe if done, err := p.srv.forward("PreparedQuery.ExecuteRemote", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "prepared-query", "execute_remote"}, time.Now()) defer metrics.MeasureSince([]string{"prepared-query", "execute_remote"}, time.Now()) // We have to do this ourselves since we are not doing a blocking RPC. @@ -496,7 +517,8 @@ func (p *PreparedQuery) execute(query *structs.PreparedQuery, } // Filter out any unhealthy nodes. - nodes = nodes.Filter(query.Service.OnlyPassing) + nodes = nodes.FilterIgnore(query.Service.OnlyPassing, + query.Service.IgnoreCheckIDs) // Apply the node metadata filters, if any. if len(query.Service.NodeMeta) > 0 { diff --git a/agent/consul/prepared_query_endpoint_test.go b/agent/consul/prepared_query_endpoint_test.go index 6543ba9f0..e4bc49e51 100644 --- a/agent/consul/prepared_query_endpoint_test.go +++ b/agent/consul/prepared_query_endpoint_test.go @@ -17,6 +17,7 @@ import ( "github.com/hashicorp/consul/api" "github.com/hashicorp/consul/testrpc" "github.com/hashicorp/consul/testutil/retry" + "github.com/hashicorp/consul/types" "github.com/hashicorp/net-rpc-msgpackrpc" "github.com/hashicorp/serf/coordinate" ) @@ -2076,6 +2077,41 @@ func TestPreparedQuery_Execute(t *testing.T) { } } + // Make the query ignore all our health checks (which have "failing" ID + // implicitly from their name). + query.Query.Service.IgnoreCheckIDs = []types.CheckID{"failing"} + if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Apply", &query, &query.Query.ID); err != nil { + t.Fatalf("err: %v", err) + } + + // We should end up with 10 nodes again + { + req := structs.PreparedQueryExecuteRequest{ + Datacenter: "dc1", + QueryIDOrName: query.Query.ID, + QueryOptions: structs.QueryOptions{Token: execToken}, + } + + var reply structs.PreparedQueryExecuteResponse + if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Execute", &req, &reply); err != nil { + t.Fatalf("err: %v", err) + } + + if len(reply.Nodes) != 10 || + reply.Datacenter != "dc1" || + reply.Service != query.Query.Service.Service || + !reflect.DeepEqual(reply.DNS, query.Query.DNS) || + !reply.QueryMeta.KnownLeader { + t.Fatalf("bad: %v", reply) + } + } + + // Undo that so all the following tests aren't broken! + query.Query.Service.IgnoreCheckIDs = nil + if err := msgpackrpc.CallWithCodec(codec1, "PreparedQuery.Apply", &query, &query.Query.ID); err != nil { + t.Fatalf("err: %v", err) + } + // Make the query more picky by adding a tag filter. This just proves we // call into the tag filter, it is tested more thoroughly in a separate // test. diff --git a/agent/consul/rpc.go b/agent/consul/rpc.go index 678b80514..b983a868c 100644 --- a/agent/consul/rpc.go +++ b/agent/consul/rpc.go @@ -59,7 +59,6 @@ func (s *Server) listen(listener net.Listener) { } go s.handleConn(conn, false) - metrics.IncrCounter([]string{"consul", "rpc", "accept_conn"}, 1) metrics.IncrCounter([]string{"rpc", "accept_conn"}, 1) } } @@ -97,7 +96,6 @@ func (s *Server) handleConn(conn net.Conn, isTLS bool) { s.handleConsulConn(conn) case pool.RPCRaft: - metrics.IncrCounter([]string{"consul", "rpc", "raft_handoff"}, 1) metrics.IncrCounter([]string{"rpc", "raft_handoff"}, 1) s.raftLayer.Handoff(conn) @@ -117,9 +115,10 @@ func (s *Server) handleConn(conn net.Conn, isTLS bool) { s.handleSnapshotConn(conn) default: - s.logger.Printf("[ERR] consul.rpc: unrecognized RPC byte: %v %s", typ, logConn(conn)) - conn.Close() - return + if !s.handleEnterpriseRPCConn(typ, conn, isTLS) { + s.logger.Printf("[ERR] consul.rpc: unrecognized RPC byte: %v %s", typ, logConn(conn)) + conn.Close() + } } } @@ -156,12 +155,10 @@ func (s *Server) handleConsulConn(conn net.Conn) { if err := s.rpcServer.ServeRequest(rpcCodec); err != nil { if err != io.EOF && !strings.Contains(err.Error(), "closed") { s.logger.Printf("[ERR] consul.rpc: RPC error: %v %s", err, logConn(conn)) - metrics.IncrCounter([]string{"consul", "rpc", "request_error"}, 1) metrics.IncrCounter([]string{"rpc", "request_error"}, 1) } return } - metrics.IncrCounter([]string{"consul", "rpc", "request"}, 1) metrics.IncrCounter([]string{"rpc", "request"}, 1) } } @@ -288,8 +285,6 @@ func (s *Server) forwardDC(method, dc string, args interface{}, reply interface{ return structs.ErrNoDCPath } - metrics.IncrCounterWithLabels([]string{"consul", "rpc", "cross-dc"}, 1, - []metrics.Label{{Name: "datacenter", Value: dc}}) metrics.IncrCounterWithLabels([]string{"rpc", "cross-dc"}, 1, []metrics.Label{{Name: "datacenter", Value: dc}}) if err := s.connPool.RPC(dc, server.Addr, server.Version, method, server.UseTLS, args, reply); err != nil { @@ -401,7 +396,6 @@ RUN_QUERY: } // Run the query. - metrics.IncrCounter([]string{"consul", "rpc", "query"}, 1) metrics.IncrCounter([]string{"rpc", "query"}, 1) // Operate on a consistent set of state. This makes sure that the @@ -452,7 +446,6 @@ func (s *Server) setQueryMeta(m *structs.QueryMeta) { // consistentRead is used to ensure we do not perform a stale // read. This is done by verifying leadership before the read. func (s *Server) consistentRead() error { - defer metrics.MeasureSince([]string{"consul", "rpc", "consistentRead"}, time.Now()) defer metrics.MeasureSince([]string{"rpc", "consistentRead"}, time.Now()) future := s.raft.VerifyLeader() if err := future.Error(); err != nil { diff --git a/agent/consul/segment_oss.go b/agent/consul/segment_oss.go index 44f447124..21a89e807 100644 --- a/agent/consul/segment_oss.go +++ b/agent/consul/segment_oss.go @@ -59,7 +59,6 @@ func (s *Server) floodSegments(config *Config) { // all live nodes are registered, all failed nodes are marked as such, and all // left nodes are de-registered. func (s *Server) reconcile() (err error) { - defer metrics.MeasureSince([]string{"consul", "leader", "reconcile"}, time.Now()) defer metrics.MeasureSince([]string{"leader", "reconcile"}, time.Now()) members := s.serfLAN.Members() knownMembers := make(map[string]struct{}) diff --git a/agent/consul/server.go b/agent/consul/server.go index b1aca96a6..1205e63be 100644 --- a/agent/consul/server.go +++ b/agent/consul/server.go @@ -208,6 +208,9 @@ type Server struct { shutdown bool shutdownCh chan struct{} shutdownLock sync.Mutex + + // embedded struct to hold all the enterprise specific data + EnterpriseServer } func NewServer(config *Config) (*Server, error) { @@ -297,6 +300,12 @@ func NewServerLogger(config *Config, logger *log.Logger, tokens *token.Store) (* shutdownCh: shutdownCh, } + // Initialize enterprise specific server functionality + if err := s.initEnterprise(); err != nil { + s.Shutdown() + return nil, err + } + // Initialize the stats fetcher that autopilot will use. s.statsFetcher = NewStatsFetcher(logger, s.connPool, s.config.Datacenter) @@ -338,6 +347,12 @@ func NewServerLogger(config *Config, logger *log.Logger, tokens *token.Store) (* return nil, fmt.Errorf("Failed to start Raft: %v", err) } + // Start enterprise specific functionality + if err := s.startEnterprise(); err != nil { + s.Shutdown() + return nil, err + } + // Serf and dynamic bind ports // // The LAN serf cluster announces the port of the WAN serf cluster @@ -1019,6 +1034,17 @@ func (s *Server) Stats() map[string]map[string]string { if s.serfWAN != nil { stats["serf_wan"] = s.serfWAN.Stats() } + + for outerKey, outerValue := range s.enterpriseStats() { + if _, ok := stats[outerKey]; ok { + for innerKey, innerValue := range outerValue { + stats[outerKey][innerKey] = innerValue + } + } else { + stats[outerKey] = outerValue + } + } + return stats } diff --git a/agent/consul/server_serf.go b/agent/consul/server_serf.go index 5d46b74ee..e0781d912 100644 --- a/agent/consul/server_serf.go +++ b/agent/consul/server_serf.go @@ -198,7 +198,9 @@ func (s *Server) localEvent(event serf.UserEvent) { s.config.UserEventHandler(event) } default: - s.logger.Printf("[WARN] consul: Unhandled local event: %v", event) + if !s.handleEnterpriseUserEvents(event) { + s.logger.Printf("[WARN] consul: Unhandled local event: %v", event) + } } } diff --git a/agent/consul/session_endpoint.go b/agent/consul/session_endpoint.go index 54bb32f81..3817460b2 100644 --- a/agent/consul/session_endpoint.go +++ b/agent/consul/session_endpoint.go @@ -23,7 +23,6 @@ func (s *Session) Apply(args *structs.SessionRequest, reply *string) error { if done, err := s.srv.forward("Session.Apply", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "session", "apply"}, time.Now()) defer metrics.MeasureSince([]string{"session", "apply"}, time.Now()) // Verify the args @@ -222,7 +221,6 @@ func (s *Session) Renew(args *structs.SessionSpecificRequest, if done, err := s.srv.forward("Session.Renew", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "session", "renew"}, time.Now()) defer metrics.MeasureSince([]string{"session", "renew"}, time.Now()) // Get the session, from local state. diff --git a/agent/consul/session_ttl.go b/agent/consul/session_ttl.go index 99247366f..71265f0b1 100644 --- a/agent/consul/session_ttl.go +++ b/agent/consul/session_ttl.go @@ -84,7 +84,6 @@ func (s *Server) createSessionTimer(id string, ttl time.Duration) { // invalidateSession is invoked when a session TTL is reached and we // need to invalidate the session. func (s *Server) invalidateSession(id string) { - defer metrics.MeasureSince([]string{"consul", "session_ttl", "invalidate"}, time.Now()) defer metrics.MeasureSince([]string{"session_ttl", "invalidate"}, time.Now()) // Clear the session timer @@ -134,7 +133,6 @@ func (s *Server) sessionStats() { for { select { case <-time.After(5 * time.Second): - metrics.SetGauge([]string{"consul", "session_ttl", "active"}, float32(s.sessionTimers.Len())) metrics.SetGauge([]string{"session_ttl", "active"}, float32(s.sessionTimers.Len())) case <-s.shutdownCh: diff --git a/agent/consul/state/catalog.go b/agent/consul/state/catalog.go index 36fa42a54..2a81c1071 100644 --- a/agent/consul/state/catalog.go +++ b/agent/consul/state/catalog.go @@ -855,6 +855,36 @@ func serviceTagFilter(sn *structs.ServiceNode, tag string) bool { return true } +// ServiceAddressNodes returns the nodes associated with a given service, filtering +// out services that don't match the given serviceAddress +func (s *Store) ServiceAddressNodes(ws memdb.WatchSet, address string) (uint64, structs.ServiceNodes, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + // List all the services. + services, err := tx.Get("services", "id") + if err != nil { + return 0, nil, fmt.Errorf("failed service lookup: %s", err) + } + ws.Add(services.WatchCh()) + + // Gather all the services and apply the tag filter. + var results structs.ServiceNodes + for service := services.Next(); service != nil; service = services.Next() { + svc := service.(*structs.ServiceNode) + if svc.ServiceAddress == address { + results = append(results, svc) + } + } + + // Fill in the node details. + results, err = s.parseServiceNodes(tx, ws, results) + if err != nil { + return 0, nil, fmt.Errorf("failed parsing service nodes: %s", err) + } + return 0, results, nil +} + // parseServiceNodes iterates over a services query and fills in the node details, // returning a ServiceNodes slice. func (s *Store) parseServiceNodes(tx *memdb.Txn, ws memdb.WatchSet, services structs.ServiceNodes) (structs.ServiceNodes, error) { @@ -1089,6 +1119,21 @@ func (s *Store) EnsureCheck(idx uint64, hc *structs.HealthCheck) error { return nil } +// updateAllServiceIndexesOfNode updates the Raft index of all the services associated with this node +func (s *Store) updateAllServiceIndexesOfNode(tx *memdb.Txn, idx uint64, nodeID string) error { + services, err := tx.Get("services", "node", nodeID) + if err != nil { + return fmt.Errorf("failed updating services for node %s: %s", nodeID, err) + } + for service := services.Next(); service != nil; service = services.Next() { + svc := service.(*structs.ServiceNode).ToNodeService() + if err := tx.Insert("index", &IndexEntry{serviceIndexName(svc.Service), idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + } + return nil +} + // ensureCheckTransaction is used as the inner method to handle inserting // a health check into the state store. It ensures safety against inserting // checks with no matching node or service. @@ -1142,15 +1187,9 @@ func (s *Store) ensureCheckTxn(tx *memdb.Txn, idx uint64, hc *structs.HealthChec } } else { // Update the status for all the services associated with this node - services, err := tx.Get("services", "node", hc.Node) + err = s.updateAllServiceIndexesOfNode(tx, idx, hc.Node) if err != nil { - return fmt.Errorf("failed updating services for node %s: %s", hc.Node, err) - } - for service := services.Next(); service != nil; service = services.Next() { - svc := service.(*structs.ServiceNode).ToNodeService() - if err := tx.Insert("index", &IndexEntry{serviceIndexName(svc.Service), idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) - } + return err } } @@ -1393,19 +1432,20 @@ func (s *Store) deleteCheckTxn(tx *memdb.Txn, idx uint64, node string, checkID t return nil } existing := hc.(*structs.HealthCheck) - if existing != nil && existing.ServiceID != "" { - service, err := tx.First("services", "id", node, existing.ServiceID) - if err != nil { - return fmt.Errorf("failed service lookup: %s", err) - } - if service == nil { - return ErrMissingService - } - - // Updated index of service - svc := service.(*structs.ServiceNode) - if err = tx.Insert("index", &IndexEntry{serviceIndexName(svc.ServiceName), idx}); err != nil { - return fmt.Errorf("failed updating index: %s", err) + if existing != nil { + // When no service is linked to this service, update all services of node + if existing.ServiceID != "" { + if err = tx.Insert("index", &IndexEntry{serviceIndexName(existing.ServiceName), idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + } else { + err = s.updateAllServiceIndexesOfNode(tx, idx, existing.Node) + if err != nil { + return fmt.Errorf("Failed to update services linked to deleted healthcheck: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"services", idx}); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } } } diff --git a/agent/consul/state/catalog_test.go b/agent/consul/state/catalog_test.go index 3fbb8124f..a2b56cad8 100644 --- a/agent/consul/state/catalog_test.go +++ b/agent/consul/state/catalog_test.go @@ -2132,6 +2132,7 @@ func TestStateStore_DeleteCheck(t *testing.T) { // Register a node and a node-level health check. testRegisterNode(t, s, 1, "node1") testRegisterCheck(t, s, 2, "node1", "", "check1", api.HealthPassing) + testRegisterService(t, s, 2, "node1", "service1") // Make sure the check is there. ws := memdb.NewWatchSet() @@ -2143,13 +2144,23 @@ func TestStateStore_DeleteCheck(t *testing.T) { t.Fatalf("bad: %#v", checks) } + ensureServiceVersion(t, s, ws, "service1", 2, 1) + // Delete the check. if err := s.DeleteCheck(3, "node1", "check1"); err != nil { t.Fatalf("err: %s", err) } + if idx, check, err := s.NodeCheck("node1", "check1"); idx != 3 || err != nil || check != nil { + t.Fatalf("Node check should have been deleted idx=%d, node=%v, err=%s", idx, check, err) + } + if idx := s.maxIndex("checks"); idx != 3 { + t.Fatalf("bad index for checks: %d", idx) + } if !watchFired(ws) { t.Fatalf("bad") } + // All services linked to this node should have their index updated + ensureServiceVersion(t, s, ws, "service1", 3, 1) // Check is gone ws = memdb.NewWatchSet() diff --git a/agent/consul/txn_endpoint.go b/agent/consul/txn_endpoint.go index 7085548c8..1822a7497 100644 --- a/agent/consul/txn_endpoint.go +++ b/agent/consul/txn_endpoint.go @@ -46,7 +46,6 @@ func (t *Txn) Apply(args *structs.TxnRequest, reply *structs.TxnResponse) error if done, err := t.srv.forward("Txn.Apply", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "txn", "apply"}, time.Now()) defer metrics.MeasureSince([]string{"txn", "apply"}, time.Now()) // Run the pre-checks before we send the transaction into Raft. @@ -90,7 +89,6 @@ func (t *Txn) Read(args *structs.TxnReadRequest, reply *structs.TxnReadResponse) if done, err := t.srv.forward("Txn.Read", args, args, reply); done { return err } - defer metrics.MeasureSince([]string{"consul", "txn", "read"}, time.Now()) defer metrics.MeasureSince([]string{"txn", "read"}, time.Now()) // We have to do this ourselves since we are not doing a blocking RPC. diff --git a/agent/dns.go b/agent/dns.go index d50383449..1d3c46d97 100644 --- a/agent/dns.go +++ b/agent/dns.go @@ -12,6 +12,7 @@ import ( "regexp" "github.com/armon/go-metrics" + "github.com/coredns/coredns/plugin/pkg/dnsutil" "github.com/hashicorp/consul/agent/config" "github.com/hashicorp/consul/agent/consul" "github.com/hashicorp/consul/agent/structs" @@ -158,8 +159,6 @@ START: func (d *DNSServer) handlePtr(resp dns.ResponseWriter, req *dns.Msg) { q := req.Question[0] defer func(s time.Time) { - metrics.MeasureSinceWithLabels([]string{"consul", "dns", "ptr_query"}, s, - []metrics.Label{{Name: "node", Value: d.agent.config.NodeName}}) metrics.MeasureSinceWithLabels([]string{"dns", "ptr_query"}, s, []metrics.Label{{Name: "node", Value: d.agent.config.NodeName}}) d.logger.Printf("[DEBUG] dns: request for %v (%v) from client %s (%s)", @@ -209,6 +208,34 @@ func (d *DNSServer) handlePtr(resp dns.ResponseWriter, req *dns.Msg) { } } + // only look into the services if we didn't find a node + if len(m.Answer) == 0 { + // lookup the service address + serviceAddress := dnsutil.ExtractAddressFromReverse(qName) + sargs := structs.ServiceSpecificRequest{ + Datacenter: datacenter, + QueryOptions: structs.QueryOptions{ + Token: d.agent.tokens.UserToken(), + AllowStale: d.config.AllowStale, + }, + ServiceAddress: serviceAddress, + } + + var sout structs.IndexedServiceNodes + if err := d.agent.RPC("Catalog.ServiceNodes", &sargs, &sout); err == nil { + for _, n := range sout.ServiceNodes { + if n.ServiceAddress == serviceAddress { + ptr := &dns.PTR{ + Hdr: dns.RR_Header{Name: q.Name, Rrtype: dns.TypePTR, Class: dns.ClassINET, Ttl: 0}, + Ptr: fmt.Sprintf("%s.service.%s", n.ServiceName, d.domain), + } + m.Answer = append(m.Answer, ptr) + break + } + } + } + } + // nothing found locally, recurse if len(m.Answer) == 0 { d.handleRecurse(resp, req) @@ -230,8 +257,6 @@ func (d *DNSServer) handlePtr(resp dns.ResponseWriter, req *dns.Msg) { func (d *DNSServer) handleQuery(resp dns.ResponseWriter, req *dns.Msg) { q := req.Question[0] defer func(s time.Time) { - metrics.MeasureSinceWithLabels([]string{"consul", "dns", "domain_query"}, s, - []metrics.Label{{Name: "node", Value: d.agent.config.NodeName}}) metrics.MeasureSinceWithLabels([]string{"dns", "domain_query"}, s, []metrics.Label{{Name: "node", Value: d.agent.config.NodeName}}) d.logger.Printf("[DEBUG] dns: request for name %v type %v class %v (took %v) from client %s (%s)", @@ -270,7 +295,7 @@ func (d *DNSServer) handleQuery(resp dns.ResponseWriter, req *dns.Msg) { m.SetRcode(req, dns.RcodeNotImplemented) default: - d.dispatch(network, req, m) + d.dispatch(network, resp.RemoteAddr(), req, m) } // Handle EDNS @@ -362,7 +387,7 @@ func (d *DNSServer) nameservers(edns bool) (ns []dns.RR, extra []dns.RR) { } // dispatch is used to parse a request and invoke the correct handler -func (d *DNSServer) dispatch(network string, req, resp *dns.Msg) { +func (d *DNSServer) dispatch(network string, remoteAddr net.Addr, req, resp *dns.Msg) { // By default the query is in the default datacenter datacenter := d.agent.config.Datacenter @@ -439,7 +464,7 @@ PARSE: // Allow a "." in the query name, just join all the parts. query := strings.Join(labels[:n-1], ".") - d.preparedQueryLookup(network, datacenter, query, req, resp) + d.preparedQueryLookup(network, datacenter, query, remoteAddr, req, resp) case "addr": if n != 2 { @@ -542,7 +567,6 @@ RPC: d.logger.Printf("[WARN] dns: Query results too stale, re-requesting") goto RPC } else if out.LastContact > staleCounterThreshold { - metrics.IncrCounter([]string{"consul", "dns", "stale_queries"}, 1) metrics.IncrCounter([]string{"dns", "stale_queries"}, 1) } } @@ -717,15 +741,39 @@ func syncExtra(index map[string]dns.RR, resp *dns.Msg) { resp.Extra = extra } +// dnsBinaryTruncate find the optimal number of records using a fast binary search and return +// it in order to return a DNS answer lower than maxSize parameter. +func dnsBinaryTruncate(resp *dns.Msg, maxSize int, index map[string]dns.RR, hasExtra bool) int { + originalAnswser := resp.Answer + startIndex := 0 + endIndex := len(resp.Answer) + 1 + for endIndex-startIndex > 1 { + median := startIndex + (endIndex-startIndex)/2 + + resp.Answer = originalAnswser[:median] + if hasExtra { + syncExtra(index, resp) + } + aLen := resp.Len() + if aLen <= maxSize { + if maxSize-aLen < 10 { + // We are good, increasing will go out of bounds + return median + } + startIndex = median + } else { + endIndex = median + } + } + return startIndex +} + // trimTCPResponse limit the MaximumSize of messages to 64k as it is the limit // of DNS responses func (d *DNSServer) trimTCPResponse(req, resp *dns.Msg) (trimmed bool) { hasExtra := len(resp.Extra) > 0 // There is some overhead, 65535 does not work - maxSize := 65533 // 64k - 2 bytes - // In order to compute properly, we have to avoid compress first - compressed := resp.Compress - resp.Compress = false + maxSize := 65523 // 64k - 12 bytes DNS raw overhead // We avoid some function calls and allocations by only handling the // extra data when necessary. @@ -733,12 +781,13 @@ func (d *DNSServer) trimTCPResponse(req, resp *dns.Msg) (trimmed bool) { originalSize := resp.Len() originalNumRecords := len(resp.Answer) - // Beyond 2500 records, performance gets bad - // Limit the number of records at once, anyway, it won't fit in 64k - // For SRV Records, the max is around 500 records, for A, less than 2k - truncateAt := 2048 + // It is not possible to return more than 4k records even with compression + // Since we are performing binary search it is not a big deal, but it + // improves a bit performance, even with binary search + truncateAt := 4096 if req.Question[0].Qtype == dns.TypeSRV { - truncateAt = 640 + // More than 1024 SRV records do not fit in 64k + truncateAt = 1024 } if len(resp.Answer) > truncateAt { resp.Answer = resp.Answer[:truncateAt] @@ -750,9 +799,15 @@ func (d *DNSServer) trimTCPResponse(req, resp *dns.Msg) (trimmed bool) { truncated := false // This enforces the given limit on 64k, the max limit for DNS messages - for len(resp.Answer) > 0 && resp.Len() > maxSize { + for len(resp.Answer) > 1 && resp.Len() > maxSize { truncated = true - resp.Answer = resp.Answer[:len(resp.Answer)-1] + // More than 100 bytes, find with a binary search + if resp.Len()-maxSize > 100 { + bestIndex := dnsBinaryTruncate(resp, maxSize, index, hasExtra) + resp.Answer = resp.Answer[:bestIndex] + } else { + resp.Answer = resp.Answer[:len(resp.Answer)-1] + } if hasExtra { syncExtra(index, resp) } @@ -762,8 +817,6 @@ func (d *DNSServer) trimTCPResponse(req, resp *dns.Msg) (trimmed bool) { req.Question, len(resp.Answer), originalNumRecords, resp.Len(), originalSize) } - // Restore compression if any - resp.Compress = compressed return truncated } @@ -793,7 +846,10 @@ func trimUDPResponse(req, resp *dns.Msg, udpAnswerLimit int) (trimmed bool) { // This cuts UDP responses to a useful but limited number of responses. maxAnswers := lib.MinInt(maxUDPAnswerLimit, udpAnswerLimit) + compress := resp.Compress if maxSize == defaultMaxUDPSize && numAnswers > maxAnswers { + // We disable computation of Len ONLY for non-eDNS request (512 bytes) + resp.Compress = false resp.Answer = resp.Answer[:maxAnswers] if hasExtra { syncExtra(index, resp) @@ -806,14 +862,22 @@ func trimUDPResponse(req, resp *dns.Msg, udpAnswerLimit int) (trimmed bool) { // that will not exceed 512 bytes uncompressed, which is more conservative and // will allow our responses to be compliant even if some downstream server // uncompresses them. - compress := resp.Compress - resp.Compress = false - for len(resp.Answer) > 0 && resp.Len() > maxSize { - resp.Answer = resp.Answer[:len(resp.Answer)-1] + // Even when size is too big for one single record, try to send it anyway + // (usefull for 512 bytes messages) + for len(resp.Answer) > 1 && resp.Len() > maxSize { + // More than 100 bytes, find with a binary search + if resp.Len()-maxSize > 100 { + bestIndex := dnsBinaryTruncate(resp, maxSize, index, hasExtra) + resp.Answer = resp.Answer[:bestIndex] + } else { + resp.Answer = resp.Answer[:len(resp.Answer)-1] + } if hasExtra { syncExtra(index, resp) } } + // For 512 non-eDNS responses, while we compute size non-compressed, + // we send result compressed resp.Compress = compress return len(resp.Answer) < numAnswers @@ -852,7 +916,6 @@ func (d *DNSServer) lookupServiceNodes(datacenter, service, tag string) (structs } if args.AllowStale && out.LastContact > staleCounterThreshold { - metrics.IncrCounter([]string{"consul", "dns", "stale_queries"}, 1) metrics.IncrCounter([]string{"dns", "stale_queries"}, 1) } @@ -917,8 +980,25 @@ func (d *DNSServer) serviceLookup(network, datacenter, service, tag string, req, } } +func ednsSubnetForRequest(req *dns.Msg) *dns.EDNS0_SUBNET { + // IsEdns0 returns the EDNS RR if present or nil otherwise + edns := req.IsEdns0() + + if edns == nil { + return nil + } + + for _, o := range edns.Option { + if subnet, ok := o.(*dns.EDNS0_SUBNET); ok { + return subnet + } + } + + return nil +} + // preparedQueryLookup is used to handle a prepared query. -func (d *DNSServer) preparedQueryLookup(network, datacenter, query string, req, resp *dns.Msg) { +func (d *DNSServer) preparedQueryLookup(network, datacenter, query string, remoteAddr net.Addr, req, resp *dns.Msg) { // Execute the prepared query. args := structs.PreparedQueryExecuteRequest{ Datacenter: datacenter, @@ -939,6 +1019,21 @@ func (d *DNSServer) preparedQueryLookup(network, datacenter, query string, req, }, } + subnet := ednsSubnetForRequest(req) + + if subnet != nil { + args.Source.Ip = subnet.Address.String() + } else { + switch v := remoteAddr.(type) { + case *net.UDPAddr: + args.Source.Ip = v.IP.String() + case *net.TCPAddr: + args.Source.Ip = v.IP.String() + case *net.IPAddr: + args.Source.Ip = v.IP.String() + } + } + // TODO (slackpad) - What's a safe limit we can set here? It seems like // with dup filtering done at this level we need to get everything to // match the previous behavior. We can optimize by pushing more filtering @@ -971,7 +1066,6 @@ RPC: d.logger.Printf("[WARN] dns: Query results too stale, re-requesting") goto RPC } else if out.LastContact > staleCounterThreshold { - metrics.IncrCounter([]string{"consul", "dns", "stale_queries"}, 1) metrics.IncrCounter([]string{"dns", "stale_queries"}, 1) } } @@ -1194,7 +1288,7 @@ func (d *DNSServer) resolveCNAME(name string) []dns.RR { resp := &dns.Msg{} req.SetQuestion(name, dns.TypeANY) - d.dispatch("udp", req, resp) + d.dispatch("udp", nil, req, resp) return resp.Answer } diff --git a/agent/dns_test.go b/agent/dns_test.go index 2ac630625..41aca8e0e 100644 --- a/agent/dns_test.go +++ b/agent/dns_test.go @@ -14,8 +14,10 @@ import ( "github.com/hashicorp/consul/api" "github.com/hashicorp/consul/lib" "github.com/hashicorp/consul/testutil/retry" + "github.com/hashicorp/serf/coordinate" "github.com/miekg/dns" "github.com/pascaldekloe/goe/verify" + "github.com/stretchr/testify/require" ) const ( @@ -669,6 +671,196 @@ func TestDNS_ReverseLookup_IPV6(t *testing.T) { } } +func TestDNS_ServiceReverseLookup(t *testing.T) { + t.Parallel() + a := NewTestAgent(t.Name(), "") + defer a.Shutdown() + + // Register a node with a service. + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "127.0.0.1", + Service: &structs.NodeService{ + Service: "db", + Tags: []string{"master"}, + Port: 12345, + Address: "127.0.0.2", + }, + } + + var out struct{} + if err := a.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + m := new(dns.Msg) + m.SetQuestion("2.0.0.127.in-addr.arpa.", dns.TypeANY) + + c := new(dns.Client) + in, _, err := c.Exchange(m, a.DNSAddr()) + if err != nil { + t.Fatalf("err: %v", err) + } + + if len(in.Answer) != 1 { + t.Fatalf("Bad: %#v", in) + } + + ptrRec, ok := in.Answer[0].(*dns.PTR) + if !ok { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + if ptrRec.Ptr != "db.service.consul." { + t.Fatalf("Bad: %#v", ptrRec) + } +} + +func TestDNS_ServiceReverseLookup_IPV6(t *testing.T) { + t.Parallel() + a := NewTestAgent(t.Name(), "") + defer a.Shutdown() + + // Register a node with a service. + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "2001:db8::1", + Service: &structs.NodeService{ + Service: "db", + Tags: []string{"master"}, + Port: 12345, + Address: "2001:db8::ff00:42:8329", + }, + } + + var out struct{} + if err := a.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + m := new(dns.Msg) + m.SetQuestion("9.2.3.8.2.4.0.0.0.0.f.f.0.0.0.0.0.0.0.0.0.0.0.0.8.b.d.0.1.0.0.2.ip6.arpa.", dns.TypeANY) + + c := new(dns.Client) + in, _, err := c.Exchange(m, a.DNSAddr()) + if err != nil { + t.Fatalf("err: %v", err) + } + + if len(in.Answer) != 1 { + t.Fatalf("Bad: %#v", in) + } + + ptrRec, ok := in.Answer[0].(*dns.PTR) + if !ok { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + if ptrRec.Ptr != "db.service.consul." { + t.Fatalf("Bad: %#v", ptrRec) + } +} + +func TestDNS_ServiceReverseLookup_CustomDomain(t *testing.T) { + t.Parallel() + a := NewTestAgent(t.Name(), ` + domain = "custom" + `) + defer a.Shutdown() + + // Register a node with a service. + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "127.0.0.1", + Service: &structs.NodeService{ + Service: "db", + Tags: []string{"master"}, + Port: 12345, + Address: "127.0.0.2", + }, + } + + var out struct{} + if err := a.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + m := new(dns.Msg) + m.SetQuestion("2.0.0.127.in-addr.arpa.", dns.TypeANY) + + c := new(dns.Client) + in, _, err := c.Exchange(m, a.DNSAddr()) + if err != nil { + t.Fatalf("err: %v", err) + } + + if len(in.Answer) != 1 { + t.Fatalf("Bad: %#v", in) + } + + ptrRec, ok := in.Answer[0].(*dns.PTR) + if !ok { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + if ptrRec.Ptr != "db.service.custom." { + t.Fatalf("Bad: %#v", ptrRec) + } +} + +func TestDNS_ServiceReverseLookupNodeAddress(t *testing.T) { + t.Parallel() + a := NewTestAgent(t.Name(), "") + defer a.Shutdown() + + // Register a node with a service. + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "foo", + Address: "127.0.0.1", + Service: &structs.NodeService{ + Service: "db", + Tags: []string{"master"}, + Port: 12345, + Address: "127.0.0.1", + }, + } + + var out struct{} + if err := a.RPC("Catalog.Register", args, &out); err != nil { + t.Fatalf("err: %v", err) + } + } + + m := new(dns.Msg) + m.SetQuestion("1.0.0.127.in-addr.arpa.", dns.TypeANY) + + c := new(dns.Client) + in, _, err := c.Exchange(m, a.DNSAddr()) + if err != nil { + t.Fatalf("err: %v", err) + } + + if len(in.Answer) != 1 { + t.Fatalf("Bad: %#v", in) + } + + ptrRec, ok := in.Answer[0].(*dns.PTR) + if !ok { + t.Fatalf("Bad: %#v", in.Answer[0]) + } + if ptrRec.Ptr != "foo.node.dc1.consul." { + t.Fatalf("Bad: %#v", ptrRec) + } +} + func TestDNS_ServiceLookup(t *testing.T) { t.Parallel() a := NewTestAgent(t.Name(), "") @@ -1835,6 +2027,247 @@ func TestDNS_ServiceLookup_TagPeriod(t *testing.T) { } } +func TestDNS_PreparedQueryNearIPEDNS(t *testing.T) { + ipCoord := lib.GenerateCoordinate(1 * time.Millisecond) + serviceNodes := []struct { + name string + address string + coord *coordinate.Coordinate + }{ + {"foo1", "198.18.0.1", lib.GenerateCoordinate(1 * time.Millisecond)}, + {"foo2", "198.18.0.2", lib.GenerateCoordinate(10 * time.Millisecond)}, + {"foo3", "198.18.0.3", lib.GenerateCoordinate(30 * time.Millisecond)}, + } + + t.Parallel() + a := NewTestAgent(t.Name(), "") + defer a.Shutdown() + + added := 0 + + // Register nodes with a service + for _, cfg := range serviceNodes { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: cfg.name, + Address: cfg.address, + Service: &structs.NodeService{ + Service: "db", + Port: 12345, + }, + } + + var out struct{} + err := a.RPC("Catalog.Register", args, &out) + require.NoError(t, err) + + // Send coordinate updates + coordArgs := structs.CoordinateUpdateRequest{ + Datacenter: "dc1", + Node: cfg.name, + Coord: cfg.coord, + } + err = a.RPC("Coordinate.Update", &coordArgs, &out) + require.NoError(t, err) + + added += 1 + } + + fmt.Printf("Added %d service nodes\n", added) + + // Register a node without a service + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "bar", + Address: "198.18.0.9", + } + + var out struct{} + err := a.RPC("Catalog.Register", args, &out) + require.NoError(t, err) + + // Send coordinate updates for a few nodes. + coordArgs := structs.CoordinateUpdateRequest{ + Datacenter: "dc1", + Node: "bar", + Coord: ipCoord, + } + err = a.RPC("Coordinate.Update", &coordArgs, &out) + require.NoError(t, err) + } + + // Register a prepared query Near = _ip + { + args := &structs.PreparedQueryRequest{ + Datacenter: "dc1", + Op: structs.PreparedQueryCreate, + Query: &structs.PreparedQuery{ + Name: "some.query.we.like", + Service: structs.ServiceQuery{ + Service: "db", + Near: "_ip", + }, + }, + } + + var id string + err := a.RPC("PreparedQuery.Apply", args, &id) + require.NoError(t, err) + } + retry.Run(t, func(r *retry.R) { + m := new(dns.Msg) + m.SetQuestion("some.query.we.like.query.consul.", dns.TypeA) + m.SetEdns0(4096, false) + o := new(dns.OPT) + o.Hdr.Name = "." + o.Hdr.Rrtype = dns.TypeOPT + e := new(dns.EDNS0_SUBNET) + e.Code = dns.EDNS0SUBNET + e.Family = 1 + e.SourceNetmask = 32 + e.SourceScope = 0 + e.Address = net.ParseIP("198.18.0.9").To4() + o.Option = append(o.Option, e) + m.Extra = append(m.Extra, o) + + c := new(dns.Client) + in, _, err := c.Exchange(m, a.DNSAddr()) + if err != nil { + r.Fatalf("Error with call to dns.Client.Exchange: %s", err) + } + + if len(serviceNodes) != len(in.Answer) { + r.Fatalf("Expecting %d A RRs in response, Actual found was %d", len(serviceNodes), len(in.Answer)) + } + + for i, rr := range in.Answer { + if aRec, ok := rr.(*dns.A); ok { + if actual := aRec.A.String(); serviceNodes[i].address != actual { + r.Fatalf("Expecting A RR #%d = %s, Actual RR was %s", i, serviceNodes[i].address, actual) + } + } else { + r.Fatalf("DNS Answer contained a non-A RR") + } + } + }) +} + +func TestDNS_PreparedQueryNearIP(t *testing.T) { + ipCoord := lib.GenerateCoordinate(1 * time.Millisecond) + serviceNodes := []struct { + name string + address string + coord *coordinate.Coordinate + }{ + {"foo1", "198.18.0.1", lib.GenerateCoordinate(1 * time.Millisecond)}, + {"foo2", "198.18.0.2", lib.GenerateCoordinate(10 * time.Millisecond)}, + {"foo3", "198.18.0.3", lib.GenerateCoordinate(30 * time.Millisecond)}, + } + + t.Parallel() + a := NewTestAgent(t.Name(), "") + defer a.Shutdown() + + added := 0 + + // Register nodes with a service + for _, cfg := range serviceNodes { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: cfg.name, + Address: cfg.address, + Service: &structs.NodeService{ + Service: "db", + Port: 12345, + }, + } + + var out struct{} + err := a.RPC("Catalog.Register", args, &out) + require.NoError(t, err) + + // Send coordinate updates + coordArgs := structs.CoordinateUpdateRequest{ + Datacenter: "dc1", + Node: cfg.name, + Coord: cfg.coord, + } + err = a.RPC("Coordinate.Update", &coordArgs, &out) + require.NoError(t, err) + + added += 1 + } + + fmt.Printf("Added %d service nodes\n", added) + + // Register a node without a service + { + args := &structs.RegisterRequest{ + Datacenter: "dc1", + Node: "bar", + Address: "198.18.0.9", + } + + var out struct{} + err := a.RPC("Catalog.Register", args, &out) + require.NoError(t, err) + + // Send coordinate updates for a few nodes. + coordArgs := structs.CoordinateUpdateRequest{ + Datacenter: "dc1", + Node: "bar", + Coord: ipCoord, + } + err = a.RPC("Coordinate.Update", &coordArgs, &out) + require.NoError(t, err) + } + + // Register a prepared query Near = _ip + { + args := &structs.PreparedQueryRequest{ + Datacenter: "dc1", + Op: structs.PreparedQueryCreate, + Query: &structs.PreparedQuery{ + Name: "some.query.we.like", + Service: structs.ServiceQuery{ + Service: "db", + Near: "_ip", + }, + }, + } + + var id string + err := a.RPC("PreparedQuery.Apply", args, &id) + require.NoError(t, err) + } + + retry.Run(t, func(r *retry.R) { + m := new(dns.Msg) + m.SetQuestion("some.query.we.like.query.consul.", dns.TypeA) + + c := new(dns.Client) + in, _, err := c.Exchange(m, a.DNSAddr()) + if err != nil { + r.Fatalf("Error with call to dns.Client.Exchange: %s", err) + } + + if len(serviceNodes) != len(in.Answer) { + r.Fatalf("Expecting %d A RRs in response, Actual found was %d", len(serviceNodes), len(in.Answer)) + } + + for i, rr := range in.Answer { + if aRec, ok := rr.(*dns.A); ok { + if actual := aRec.A.String(); serviceNodes[i].address != actual { + r.Fatalf("Expecting A RR #%d = %s, Actual RR was %s", i, serviceNodes[i].address, actual) + } + } else { + r.Fatalf("DNS Answer contained a non-A RR") + } + } + }) +} + func TestDNS_ServiceLookup_PreparedQueryNamePeriod(t *testing.T) { t.Parallel() a := NewTestAgent(t.Name(), "") @@ -2740,6 +3173,46 @@ func TestDNS_ServiceLookup_Randomize(t *testing.T) { } } +func TestBinarySearch(t *testing.T) { + t.Parallel() + msgSrc := new(dns.Msg) + msgSrc.Compress = true + msgSrc.SetQuestion("redis.service.consul.", dns.TypeSRV) + + for i := 0; i < 5000; i++ { + target := fmt.Sprintf("host-redis-%d-%d.test.acme.com.node.dc1.consul.", i/256, i%256) + msgSrc.Answer = append(msgSrc.Answer, &dns.SRV{Hdr: dns.RR_Header{Name: "redis.service.consul.", Class: 1, Rrtype: dns.TypeSRV, Ttl: 0x3c}, Port: 0x4c57, Target: target}) + msgSrc.Extra = append(msgSrc.Extra, &dns.CNAME{Hdr: dns.RR_Header{Name: target, Class: 1, Rrtype: dns.TypeCNAME, Ttl: 0x3c}, Target: fmt.Sprintf("fx.168.%d.%d.", i/256, i%256)}) + } + for _, compress := range []bool{true, false} { + for idx, maxSize := range []int{12, 256, 512, 8192, 65535} { + t.Run(fmt.Sprintf("binarySearch %d", maxSize), func(t *testing.T) { + msg := new(dns.Msg) + msgSrc.Compress = compress + msgSrc.SetQuestion("redis.service.consul.", dns.TypeSRV) + msg.Answer = msgSrc.Answer + msg.Extra = msgSrc.Extra + index := make(map[string]dns.RR, len(msg.Extra)) + indexRRs(msg.Extra, index) + blen := dnsBinaryTruncate(msg, maxSize, index, true) + msg.Answer = msg.Answer[:blen] + syncExtra(index, msg) + predicted := msg.Len() + buf, err := msg.Pack() + if err != nil { + t.Error(err) + } + if predicted < len(buf) { + t.Fatalf("Bug in DNS library: %d != %d", predicted, len(buf)) + } + if len(buf) > maxSize || (idx != 0 && len(buf) < 16) { + t.Fatalf("bad[%d]: %d > %d", idx, len(buf), maxSize) + } + }) + } + } +} + func TestDNS_TCP_and_UDP_Truncate(t *testing.T) { t.Parallel() a := NewTestAgent(t.Name(), ` @@ -2756,7 +3229,7 @@ func TestDNS_TCP_and_UDP_Truncate(t *testing.T) { args := &structs.RegisterRequest{ Datacenter: "dc1", Node: fmt.Sprintf("%s-%d.acme.com", service, i), - Address: fmt.Sprintf("127.%d.%d.%d", index, (i / 255), i%255), + Address: fmt.Sprintf("127.%d.%d.%d", 0, (i / 255), i%255), Service: &structs.NodeService{ Service: service, Port: 8000, @@ -2797,33 +3270,39 @@ func TestDNS_TCP_and_UDP_Truncate(t *testing.T) { "tcp", "udp", } - for _, qType := range []uint16{dns.TypeANY, dns.TypeA, dns.TypeSRV} { - for _, question := range questions { - for _, protocol := range protocols { - for _, compress := range []bool{true, false} { - t.Run(fmt.Sprintf("lookup %s %s (qType:=%d) compressed=%v", question, protocol, qType, compress), func(t *testing.T) { - m := new(dns.Msg) - m.SetQuestion(question, dns.TypeANY) - if protocol == "udp" { - m.SetEdns0(8192, true) - } - c := new(dns.Client) - c.Net = protocol - m.Compress = compress - in, out, err := c.Exchange(m, a.DNSAddr()) - if err != nil && err != dns.ErrTruncated { - t.Fatalf("err: %v", err) - } + for _, maxSize := range []uint16{8192, 65535} { + for _, qType := range []uint16{dns.TypeANY, dns.TypeA, dns.TypeSRV} { + for _, question := range questions { + for _, protocol := range protocols { + for _, compress := range []bool{true, false} { + t.Run(fmt.Sprintf("lookup %s %s (qType:=%d) compressed=%v", question, protocol, qType, compress), func(t *testing.T) { + m := new(dns.Msg) + m.SetQuestion(question, dns.TypeANY) + maxSz := maxSize + if protocol == "udp" { + maxSz = 8192 + } + m.SetEdns0(uint16(maxSz), true) + c := new(dns.Client) + c.Net = protocol + m.Compress = compress + in, _, err := c.Exchange(m, a.DNSAddr()) + if err != nil && err != dns.ErrTruncated { + t.Fatalf("err: %v", err) + } - // Check for the truncate bit - shouldBeTruncated := numServices > 4095 - - if shouldBeTruncated != in.Truncated || len(in.Answer) > 2000 || len(in.Answer) < 1 || in.Len() > 65535 { + // Check for the truncate bit + buf, err := m.Pack() info := fmt.Sprintf("service %s question:=%s (%s) (%d total records) sz:= %d in %v", - service, question, protocol, numServices, len(in.Answer), out) - t.Fatalf("Should have truncated:=%v for %s", shouldBeTruncated, info) - } - }) + service, question, protocol, numServices, len(in.Answer), in) + if err != nil { + t.Fatalf("Error while packing: %v ; info:=%s", err, info) + } + if len(buf) > int(maxSz) { + t.Fatalf("len(buf) := %d > maxSz=%d for %v", len(buf), maxSz, info) + } + }) + } } } } @@ -3068,17 +3547,17 @@ func testDNSServiceLookupResponseLimits(t *testing.T, answerLimit int, qType uin case 0: if (expectedService > 0 && len(in.Answer) != expectedService) || (expectedService < -1 && len(in.Answer) < lib.AbsInt(expectedService)) { - return false, fmt.Errorf("%d/%d answers received for type %v for %s", len(in.Answer), answerLimit, qType, question) + return false, fmt.Errorf("%d/%d answers received for type %v for %s, sz:=%d", len(in.Answer), answerLimit, qType, question, in.Len()) } case 1: if (expectedQuery > 0 && len(in.Answer) != expectedQuery) || (expectedQuery < -1 && len(in.Answer) < lib.AbsInt(expectedQuery)) { - return false, fmt.Errorf("%d/%d answers received for type %v for %s", len(in.Answer), answerLimit, qType, question) + return false, fmt.Errorf("%d/%d answers received for type %v for %s, sz:=%d", len(in.Answer), answerLimit, qType, question, in.Len()) } case 2: if (expectedQueryID > 0 && len(in.Answer) != expectedQueryID) || (expectedQueryID < -1 && len(in.Answer) < lib.AbsInt(expectedQueryID)) { - return false, fmt.Errorf("%d/%d answers received for type %v for %s", len(in.Answer), answerLimit, qType, question) + return false, fmt.Errorf("%d/%d answers received for type %v for %s, sz:=%d", len(in.Answer), answerLimit, qType, question, in.Len()) } default: panic("abort") @@ -3230,7 +3709,7 @@ func TestDNS_ServiceLookup_ARecordLimits(t *testing.T) { t.Parallel() err := checkDNSService(t, test.numNodesTotal, test.aRecordLimit, qType, test.expectedAResults, test.udpSize, test.udpAnswerLimit) if err != nil { - t.Errorf("Expected lookup %s to pass: %v", test.name, err) + t.Fatalf("Expected lookup %s to pass: %v", test.name, err) } }) } @@ -3239,7 +3718,7 @@ func TestDNS_ServiceLookup_ARecordLimits(t *testing.T) { t.Parallel() err := checkDNSService(t, test.expectedSRVResults, test.aRecordLimit, dns.TypeSRV, test.numNodesTotal, test.udpSize, test.udpAnswerLimit) if err != nil { - t.Errorf("Expected service SRV lookup %s to pass: %v", test.name, err) + t.Fatalf("Expected service SRV lookup %s to pass: %v", test.name, err) } }) } @@ -3285,27 +3764,27 @@ func TestDNS_ServiceLookup_AnswerLimits(t *testing.T) { } for _, test := range tests { test := test // capture loop var - t.Run("A lookup", func(t *testing.T) { + t.Run(fmt.Sprintf("A lookup %v", test), func(t *testing.T) { t.Parallel() ok, err := testDNSServiceLookupResponseLimits(t, test.udpAnswerLimit, dns.TypeA, test.expectedAService, test.expectedAQuery, test.expectedAQueryID) if !ok { - t.Errorf("Expected service A lookup %s to pass: %v", test.name, err) + t.Fatalf("Expected service A lookup %s to pass: %v", test.name, err) } }) - t.Run("AAAA lookup", func(t *testing.T) { + t.Run(fmt.Sprintf("AAAA lookup %v", test), func(t *testing.T) { t.Parallel() ok, err := testDNSServiceLookupResponseLimits(t, test.udpAnswerLimit, dns.TypeAAAA, test.expectedAAAAService, test.expectedAAAAQuery, test.expectedAAAAQueryID) if !ok { - t.Errorf("Expected service AAAA lookup %s to pass: %v", test.name, err) + t.Fatalf("Expected service AAAA lookup %s to pass: %v", test.name, err) } }) - t.Run("ANY lookup", func(t *testing.T) { + t.Run(fmt.Sprintf("ANY lookup %v", test), func(t *testing.T) { t.Parallel() ok, err := testDNSServiceLookupResponseLimits(t, test.udpAnswerLimit, dns.TypeANY, test.expectedANYService, test.expectedANYQuery, test.expectedANYQueryID) if !ok { - t.Errorf("Expected service ANY lookup %s to pass: %v", test.name, err) + t.Fatalf("Expected service ANY lookup %s to pass: %v", test.name, err) } }) } diff --git a/agent/enterprise_delegate_oss.go b/agent/enterprise_delegate_oss.go new file mode 100644 index 000000000..3fdf3fce3 --- /dev/null +++ b/agent/enterprise_delegate_oss.go @@ -0,0 +1,6 @@ +// +build !ent + +package agent + +// enterpriseDelegate has no functions in OSS +type enterpriseDelegate interface{} diff --git a/agent/http.go b/agent/http.go index fbd077a3d..b9791232d 100644 --- a/agent/http.go +++ b/agent/http.go @@ -7,17 +7,18 @@ import ( "net/http" "net/http/pprof" "net/url" + "os" "regexp" "strconv" "strings" "time" + "github.com/NYTimes/gziphandler" "github.com/armon/go-metrics" "github.com/hashicorp/consul/acl" "github.com/hashicorp/consul/agent/structs" "github.com/hashicorp/go-cleanhttp" "github.com/mitchellh/mapstructure" - "github.com/NYTimes/gziphandler" ) // MethodNotAllowedError should be returned by a handler when the HTTP method is not allowed. @@ -30,6 +31,15 @@ func (e MethodNotAllowedError) Error() string { return fmt.Sprintf("method %s not allowed", e.Method) } +// BadRequestError should be returned by a handler when parameters or the payload are not valid +type BadRequestError struct { + Reason string +} + +func (e BadRequestError) Error() string { + return fmt.Sprintf("Bad request: %s", e.Reason) +} + // HTTPServer provides an HTTP api for an agent. type HTTPServer struct { *http.Server @@ -41,6 +51,18 @@ type HTTPServer struct { proto string } +type redirectFS struct { + fs http.FileSystem +} + +func (fs *redirectFS) Open(name string) (http.File, error) { + file, err := fs.fs.Open(name) + if err != nil { + file, err = fs.fs.Open("/index.html") + } + return file, err +} + // endpoint is a Consul-specific HTTP handler that takes the usual arguments in // but returns a response object and error, both of which are handled in a // common manner by Consul's HTTP server. @@ -110,7 +132,6 @@ func (s *HTTPServer) handler(enableDebug bool) http.Handler { start := time.Now() handler(resp, req) key := append([]string{"http", req.Method}, parts...) - metrics.MeasureSince(append([]string{"consul"}, key...), start) metrics.MeasureSince(key, start) } @@ -135,11 +156,32 @@ func (s *HTTPServer) handler(enableDebug bool) http.Handler { handleFuncMetrics("/debug/pprof/symbol", pprof.Symbol) } - // Use the custom UI dir if provided. - if s.agent.config.UIDir != "" { - mux.Handle("/ui/", http.StripPrefix("/ui/", http.FileServer(http.Dir(s.agent.config.UIDir)))) - } else if s.agent.config.EnableUI { - mux.Handle("/ui/", http.StripPrefix("/ui/", http.FileServer(assetFS()))) + if s.IsUIEnabled() { + new_ui, err := strconv.ParseBool(os.Getenv("CONSUL_UI_BETA")) + if err != nil { + new_ui = false + } + var uifs http.FileSystem + + // Use the custom UI dir if provided. + if s.agent.config.UIDir != "" { + uifs = http.Dir(s.agent.config.UIDir) + } else { + fs := assetFS() + + if new_ui { + fs.Prefix += "/v2/" + } else { + fs.Prefix += "/v1/" + } + uifs = fs + } + + if new_ui { + uifs = &redirectFS{fs: uifs} + } + + mux.Handle("/ui/", http.StripPrefix("/ui/", http.FileServer(uifs))) } // Wrap the whole mux with a handler that bans URLs with non-printable @@ -216,6 +258,11 @@ func (s *HTTPServer) wrap(handler endpoint, methods []string) http.HandlerFunc { return ok } + isBadRequest := func(err error) bool { + _, ok := err.(BadRequestError) + return ok + } + addAllowHeader := func(methods []string) { resp.Header().Add("Allow", strings.Join(methods, ",")) } @@ -236,6 +283,9 @@ func (s *HTTPServer) wrap(handler endpoint, methods []string) http.HandlerFunc { addAllowHeader(err.(MethodNotAllowedError).Allow) resp.WriteHeader(http.StatusMethodNotAllowed) // 405 fmt.Fprint(resp, err.Error()) + case isBadRequest(err): + resp.WriteHeader(http.StatusBadRequest) + fmt.Fprint(resp, err.Error()) default: resp.WriteHeader(http.StatusInternalServerError) fmt.Fprint(resp, err.Error()) @@ -498,11 +548,35 @@ func (s *HTTPServer) parseToken(req *http.Request, token *string) { *token = s.agent.tokens.UserToken() } +func sourceAddrFromRequest(req *http.Request) string { + xff := req.Header.Get("X-Forwarded-For") + forwardHosts := strings.Split(xff, ",") + if len(forwardHosts) > 0 { + forwardIp := net.ParseIP(strings.TrimSpace(forwardHosts[0])) + if forwardIp != nil { + return forwardIp.String() + } + } + + host, _, err := net.SplitHostPort(req.RemoteAddr) + if err != nil { + return "" + } + + ip := net.ParseIP(host) + if ip != nil { + return ip.String() + } else { + return "" + } +} + // parseSource is used to parse the ?near= query parameter, used for // sorting by RTT based on a source node. We set the source's DC to the target // DC in the request, if given, or else the agent's DC. func (s *HTTPServer) parseSource(req *http.Request, source *structs.QuerySource) { s.parseDC(req, &source.Datacenter) + source.Ip = sourceAddrFromRequest(req) if node := req.URL.Query().Get("near"); node != "" { if node == "_agent" { source.Node = s.agent.config.NodeName diff --git a/agent/http_oss_test.go b/agent/http_oss_test.go index 1d772f337..8627a1dfd 100644 --- a/agent/http_oss_test.go +++ b/agent/http_oss_test.go @@ -60,6 +60,7 @@ func TestHTTPAPI_MethodNotAllowed_OSS(t *testing.T) { if err != nil { t.Fatal("client.Do failed: ", err) } + defer resp.Body.Close() allowed := method == "OPTIONS" for _, allowedMethod := range allowedMethods { diff --git a/agent/prepared_query_endpoint_test.go b/agent/prepared_query_endpoint_test.go index 58e27df2a..e58e48fbb 100644 --- a/agent/prepared_query_endpoint_test.go +++ b/agent/prepared_query_endpoint_test.go @@ -10,6 +10,7 @@ import ( "testing" "github.com/hashicorp/consul/agent/structs" + "github.com/hashicorp/consul/types" ) // MockPreparedQuery is a fake endpoint that we inject into the Consul server @@ -87,9 +88,10 @@ func TestPreparedQuery_Create(t *testing.T) { NearestN: 4, Datacenters: []string{"dc1", "dc2"}, }, - OnlyPassing: true, - Tags: []string{"foo", "bar"}, - NodeMeta: map[string]string{"somekey": "somevalue"}, + IgnoreCheckIDs: []types.CheckID{"broken_check"}, + OnlyPassing: true, + Tags: []string{"foo", "bar"}, + NodeMeta: map[string]string{"somekey": "somevalue"}, }, DNS: structs.QueryDNSOptions{ TTL: "10s", @@ -122,9 +124,10 @@ func TestPreparedQuery_Create(t *testing.T) { "NearestN": 4, "Datacenters": []string{"dc1", "dc2"}, }, - "OnlyPassing": true, - "Tags": []string{"foo", "bar"}, - "NodeMeta": map[string]string{"somekey": "somevalue"}, + "IgnoreCheckIDs": []string{"broken_check"}, + "OnlyPassing": true, + "Tags": []string{"foo", "bar"}, + "NodeMeta": map[string]string{"somekey": "somevalue"}, }, "DNS": map[string]interface{}{ "TTL": "10s", @@ -325,6 +328,138 @@ func TestPreparedQuery_Execute(t *testing.T) { } }) + t.Run("", func(t *testing.T) { + a := NewTestAgent(t.Name(), "") + defer a.Shutdown() + + m := MockPreparedQuery{ + executeFn: func(args *structs.PreparedQueryExecuteRequest, reply *structs.PreparedQueryExecuteResponse) error { + expected := &structs.PreparedQueryExecuteRequest{ + Datacenter: "dc1", + QueryIDOrName: "my-id", + Limit: 5, + Source: structs.QuerySource{ + Datacenter: "dc1", + Node: "_ip", + Ip: "127.0.0.1", + }, + Agent: structs.QuerySource{ + Datacenter: a.Config.Datacenter, + Node: a.Config.NodeName, + }, + QueryOptions: structs.QueryOptions{ + Token: "my-token", + RequireConsistent: true, + }, + } + if !reflect.DeepEqual(args, expected) { + t.Fatalf("bad: %v", args) + } + + // Just set something so we can tell this is returned. + reply.Failovers = 99 + return nil + }, + } + if err := a.registerEndpoint("PreparedQuery", &m); err != nil { + t.Fatalf("err: %v", err) + } + + body := bytes.NewBuffer(nil) + req, _ := http.NewRequest("GET", "/v1/query/my-id/execute?token=my-token&consistent=true&near=_ip&limit=5", body) + req.Header.Add("X-Forwarded-For", "127.0.0.1") + resp := httptest.NewRecorder() + obj, err := a.srv.PreparedQuerySpecific(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + if resp.Code != 200 { + t.Fatalf("bad code: %d", resp.Code) + } + r, ok := obj.(structs.PreparedQueryExecuteResponse) + if !ok { + t.Fatalf("unexpected: %T", obj) + } + if r.Failovers != 99 { + t.Fatalf("bad: %v", r) + } + }) + + t.Run("", func(t *testing.T) { + a := NewTestAgent(t.Name(), "") + defer a.Shutdown() + + m := MockPreparedQuery{ + executeFn: func(args *structs.PreparedQueryExecuteRequest, reply *structs.PreparedQueryExecuteResponse) error { + expected := &structs.PreparedQueryExecuteRequest{ + Datacenter: "dc1", + QueryIDOrName: "my-id", + Limit: 5, + Source: structs.QuerySource{ + Datacenter: "dc1", + Node: "_ip", + Ip: "198.18.0.1", + }, + Agent: structs.QuerySource{ + Datacenter: a.Config.Datacenter, + Node: a.Config.NodeName, + }, + QueryOptions: structs.QueryOptions{ + Token: "my-token", + RequireConsistent: true, + }, + } + if !reflect.DeepEqual(args, expected) { + t.Fatalf("bad: %v", args) + } + + // Just set something so we can tell this is returned. + reply.Failovers = 99 + return nil + }, + } + if err := a.registerEndpoint("PreparedQuery", &m); err != nil { + t.Fatalf("err: %v", err) + } + + body := bytes.NewBuffer(nil) + req, _ := http.NewRequest("GET", "/v1/query/my-id/execute?token=my-token&consistent=true&near=_ip&limit=5", body) + req.Header.Add("X-Forwarded-For", "198.18.0.1") + resp := httptest.NewRecorder() + obj, err := a.srv.PreparedQuerySpecific(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + if resp.Code != 200 { + t.Fatalf("bad code: %d", resp.Code) + } + r, ok := obj.(structs.PreparedQueryExecuteResponse) + if !ok { + t.Fatalf("unexpected: %T", obj) + } + if r.Failovers != 99 { + t.Fatalf("bad: %v", r) + } + + req, _ = http.NewRequest("GET", "/v1/query/my-id/execute?token=my-token&consistent=true&near=_ip&limit=5", body) + req.Header.Add("X-Forwarded-For", "198.18.0.1, 198.19.0.1") + resp = httptest.NewRecorder() + obj, err = a.srv.PreparedQuerySpecific(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + if resp.Code != 200 { + t.Fatalf("bad code: %d", resp.Code) + } + r, ok = obj.(structs.PreparedQueryExecuteResponse) + if !ok { + t.Fatalf("unexpected: %T", obj) + } + if r.Failovers != 99 { + t.Fatalf("bad: %v", r) + } + }) + // Ensure the proper params are set when no special args are passed t.Run("", func(t *testing.T) { a := NewTestAgent(t.Name(), "") diff --git a/agent/retry_join.go b/agent/retry_join.go index 8a5c418a3..c5a1c41bc 100644 --- a/agent/retry_join.go +++ b/agent/retry_join.go @@ -6,6 +6,7 @@ import ( "strings" "time" + "github.com/hashicorp/consul/lib" discover "github.com/hashicorp/go-discover" ) @@ -67,7 +68,11 @@ func (r *retryJoiner) retryJoin() error { return nil } - disco := discover.Discover{} + disco, err := discover.New(discover.WithUserAgent(lib.UserAgent())) + if err != nil { + return err + } + r.logger.Printf("[INFO] agent: Retry join %s is supported for: %s", r.cluster, strings.Join(disco.Names(), " ")) r.logger.Printf("[INFO] agent: Joining %s cluster...", r.cluster) attempt := 0 diff --git a/agent/retry_join_test.go b/agent/retry_join_test.go index 55a4d42c8..d30bf686d 100644 --- a/agent/retry_join_test.go +++ b/agent/retry_join_test.go @@ -8,9 +8,12 @@ import ( ) func TestGoDiscoverRegistration(t *testing.T) { - d := discover.Discover{} + d, err := discover.New() + if err != nil { + t.Fatal(err) + } got := d.Names() - want := []string{"aliyun", "aws", "azure", "digitalocean", "gce", "os", "scaleway", "softlayer"} + want := []string{"aliyun", "aws", "azure", "digitalocean", "gce", "os", "scaleway", "softlayer", "triton"} if !reflect.DeepEqual(got, want) { t.Fatalf("got go-discover providers %v want %v", got, want) } diff --git a/agent/structs/check_definition.go b/agent/structs/check_definition.go index 364c6b3d6..0ee6c2049 100644 --- a/agent/structs/check_definition.go +++ b/agent/structs/check_definition.go @@ -21,7 +21,6 @@ type CheckDefinition struct { // // ID (CheckID), Name, Status, Notes // - Script string ScriptArgs []string HTTP string Header map[string][]string @@ -63,7 +62,6 @@ func (c *CheckDefinition) CheckType() *CheckType { Status: c.Status, Notes: c.Notes, - Script: c.Script, ScriptArgs: c.ScriptArgs, HTTP: c.HTTP, GRPC: c.GRPC, diff --git a/agent/structs/check_definition_test.go b/agent/structs/check_definition_test.go index c7fdae81c..af240aa95 100644 --- a/agent/structs/check_definition_test.go +++ b/agent/structs/check_definition_test.go @@ -83,7 +83,7 @@ func TestCheckDefinitionToCheckType(t *testing.T) { ServiceID: "svcid", Token: "tok", - Script: "/bin/foo", + ScriptArgs: []string{"/bin/foo"}, HTTP: "someurl", TCP: "host:port", Interval: 1 * time.Second, @@ -100,7 +100,7 @@ func TestCheckDefinitionToCheckType(t *testing.T) { Status: "green", Notes: "notes", - Script: "/bin/foo", + ScriptArgs: []string{"/bin/foo"}, HTTP: "someurl", TCP: "host:port", Interval: 1 * time.Second, diff --git a/agent/structs/check_type.go b/agent/structs/check_type.go index ea5b10aa0..23a683077 100644 --- a/agent/structs/check_type.go +++ b/agent/structs/check_type.go @@ -25,7 +25,6 @@ type CheckType struct { // fields copied to CheckDefinition // Update CheckDefinition when adding fields here - Script string ScriptArgs []string HTTP string Header map[string][]string @@ -70,7 +69,7 @@ func (c *CheckType) Empty() bool { // IsScript checks if this is a check that execs some kind of script. func (c *CheckType) IsScript() bool { - return c.Script != "" || len(c.ScriptArgs) > 0 + return len(c.ScriptArgs) > 0 } // IsTTL checks if this is a TTL type diff --git a/agent/structs/prepared_query.go b/agent/structs/prepared_query.go index 7967b8539..8171aaefe 100644 --- a/agent/structs/prepared_query.go +++ b/agent/structs/prepared_query.go @@ -1,5 +1,7 @@ package structs +import "github.com/hashicorp/consul/types" + // QueryDatacenterOptions sets options about how we fail over if there are no // healthy nodes in the local datacenter. type QueryDatacenterOptions struct { @@ -34,6 +36,12 @@ type ServiceQuery struct { // discarded) OnlyPassing bool + // IgnoreCheckIDs is an optional list of health check IDs to ignore when + // considering which nodes are healthy. It is useful as an emergency measure + // to temporarily override some health check that is producing false negatives + // for example. + IgnoreCheckIDs []types.CheckID + // Near allows the query to always prefer the node nearest the given // node. If the node does not exist, results are returned in their // normal randomly-shuffled order. Supplying the magic "_agent" value diff --git a/agent/structs/service_definition_test.go b/agent/structs/service_definition_test.go index 12a9ef99a..d3bab4a08 100644 --- a/agent/structs/service_definition_test.go +++ b/agent/structs/service_definition_test.go @@ -14,8 +14,8 @@ func TestAgentStructs_CheckTypes(t *testing.T) { // Singular Check field works svc.Check = CheckType{ - Script: "/foo/bar", - Interval: 10 * time.Second, + ScriptArgs: []string{"/foo/bar"}, + Interval: 10 * time.Second, } // Returns HTTP checks @@ -26,8 +26,8 @@ func TestAgentStructs_CheckTypes(t *testing.T) { // Returns Script checks svc.Checks = append(svc.Checks, &CheckType{ - Script: "/foo/bar", - Interval: 10 * time.Second, + ScriptArgs: []string{"/foo/bar"}, + Interval: 10 * time.Second, }) // Returns TTL checks diff --git a/agent/structs/structs.go b/agent/structs/structs.go index 9661e5ac1..77075b3e3 100644 --- a/agent/structs/structs.go +++ b/agent/structs/structs.go @@ -258,6 +258,7 @@ type QuerySource struct { Datacenter string Segment string Node string + Ip string } // DCSpecificRequest is used to query about a specific DC @@ -278,6 +279,7 @@ type ServiceSpecificRequest struct { NodeMetaFilters map[string]string ServiceName string ServiceTag string + ServiceAddress string TagFilter bool // Controls tag filtering Source QuerySource QueryOptions @@ -580,16 +582,33 @@ func (nodes CheckServiceNodes) Shuffle() { // check if that option is selected). Note that this returns the filtered // results AND modifies the receiver for performance. func (nodes CheckServiceNodes) Filter(onlyPassing bool) CheckServiceNodes { + return nodes.FilterIgnore(onlyPassing, nil) +} + +// FilterIgnore removes nodes that are failing health checks just like Filter. +// It also ignores the status of any check with an ID present in ignoreCheckIDs +// as if that check didn't exist. Note that this returns the filtered results +// AND modifies the receiver for performance. +func (nodes CheckServiceNodes) FilterIgnore(onlyPassing bool, + ignoreCheckIDs []types.CheckID) CheckServiceNodes { n := len(nodes) OUTER: for i := 0; i < n; i++ { node := nodes[i] + INNER: for _, check := range node.Checks { + for _, ignore := range ignoreCheckIDs { + if check.CheckID == ignore { + // Skip this _check_ but keep looking at other checks for this node. + continue INNER + } + } if check.Status == api.HealthCritical || (onlyPassing && check.Status != api.HealthPassing) { nodes[i], nodes[n-1] = nodes[n-1], CheckServiceNode{} n-- i-- + // Skip this _node_ now we've swapped it off the end of the list. continue OUTER } } diff --git a/agent/structs/structs_test.go b/agent/structs/structs_test.go index e1cb8ed8a..dcb8e0c4e 100644 --- a/agent/structs/structs_test.go +++ b/agent/structs/structs_test.go @@ -441,6 +441,20 @@ func TestStructs_CheckServiceNodes_Filter(t *testing.T) { }, }, }, + CheckServiceNode{ + Node: &Node{ + Node: "node4", + Address: "127.0.0.4", + }, + Checks: HealthChecks{ + // This check has a different ID to the others to ensure it is not + // ignored by accident + &HealthCheck{ + CheckID: "failing2", + Status: api.HealthCritical, + }, + }, + }, } // Test the case where warnings are allowed. @@ -473,6 +487,26 @@ func TestStructs_CheckServiceNodes_Filter(t *testing.T) { t.Fatalf("bad: %v", filtered) } } + + // Allow failing checks to be ignored (note that the test checks have empty + // CheckID which is valid). + { + twiddle := make(CheckServiceNodes, len(nodes)) + if n := copy(twiddle, nodes); n != len(nodes) { + t.Fatalf("bad: %d", n) + } + filtered := twiddle.FilterIgnore(true, []types.CheckID{""}) + expected := CheckServiceNodes{ + nodes[0], + nodes[1], + nodes[2], // Node 3's critical check should be ignored. + // Node 4 should still be failing since it's got a critical check with a + // non-ignored ID. + } + if !reflect.DeepEqual(filtered, expected) { + t.Fatalf("bad: %v", filtered) + } + } } func TestStructs_DirEntry_Clone(t *testing.T) { diff --git a/agent/ui_endpoint.go b/agent/ui_endpoint.go index e13f3ebb6..6e5c04250 100644 --- a/agent/ui_endpoint.go +++ b/agent/ui_endpoint.go @@ -13,6 +13,7 @@ import ( // ServiceSummary is used to summarize a service type ServiceSummary struct { Name string + Tags []string Nodes []string ChecksPassing int ChecksWarning int @@ -147,6 +148,7 @@ func summarizeServices(dump structs.NodeDump) []*ServiceSummary { nodeServices := make([]*ServiceSummary, len(node.Services)) for idx, service := range node.Services { sum := getService(service.Service) + sum.Tags = service.Tags sum.Nodes = append(sum.Nodes, node.Node) nodeServices[idx] = sum } diff --git a/agent/ui_endpoint_test.go b/agent/ui_endpoint_test.go index df1a22d01..b01613118 100644 --- a/agent/ui_endpoint_test.go +++ b/agent/ui_endpoint_test.go @@ -156,9 +156,11 @@ func TestSummarizeServices(t *testing.T) { Services: []*structs.NodeService{ &structs.NodeService{ Service: "api", + Tags: []string{"tag1", "tag2"}, }, &structs.NodeService{ Service: "web", + Tags: []string{}, }, }, Checks: []*structs.HealthCheck{ @@ -182,6 +184,7 @@ func TestSummarizeServices(t *testing.T) { Services: []*structs.NodeService{ &structs.NodeService{ Service: "web", + Tags: []string{}, }, }, Checks: []*structs.HealthCheck{ @@ -197,6 +200,7 @@ func TestSummarizeServices(t *testing.T) { Services: []*structs.NodeService{ &structs.NodeService{ Service: "cache", + Tags: []string{}, }, }, }, @@ -209,6 +213,7 @@ func TestSummarizeServices(t *testing.T) { expectAPI := &ServiceSummary{ Name: "api", + Tags: []string{"tag1", "tag2"}, Nodes: []string{"foo"}, ChecksPassing: 1, ChecksWarning: 1, @@ -220,6 +225,7 @@ func TestSummarizeServices(t *testing.T) { expectCache := &ServiceSummary{ Name: "cache", + Tags: []string{}, Nodes: []string{"zip"}, ChecksPassing: 0, ChecksWarning: 0, @@ -231,6 +237,7 @@ func TestSummarizeServices(t *testing.T) { expectWeb := &ServiceSummary{ Name: "web", + Tags: []string{}, Nodes: []string{"bar", "foo"}, ChecksPassing: 2, ChecksWarning: 0, diff --git a/api/agent.go b/api/agent.go index b42baed41..23690d48a 100644 --- a/api/agent.go +++ b/api/agent.go @@ -23,6 +23,7 @@ type AgentService struct { ID string Service string Tags []string + Meta map[string]string Port int Address string EnableTagOverride bool @@ -85,7 +86,6 @@ type AgentServiceCheck struct { CheckID string `json:",omitempty"` Name string `json:",omitempty"` Args []string `json:"ScriptArgs,omitempty"` - Script string `json:",omitempty"` // Deprecated, use Args. DockerContainerID string `json:",omitempty"` Shell string `json:",omitempty"` // Only supported for Docker. Interval string `json:",omitempty"` diff --git a/api/agent_test.go b/api/agent_test.go index e5ccdb0ef..b195fed29 100644 --- a/api/agent_test.go +++ b/api/agent_test.go @@ -73,7 +73,7 @@ func TestAPI_AgentReload(t *testing.T) { agent := c.Agent() // Update the config file with a service definition - config := `{"service":{"name":"redis", "port":1234}}` + config := `{"service":{"name":"redis", "port":1234, "Meta": {"some": "meta"}}}` err = ioutil.WriteFile(configFile.Name(), []byte(config), 0644) if err != nil { t.Fatalf("err: %v", err) @@ -95,6 +95,9 @@ func TestAPI_AgentReload(t *testing.T) { if service.Port != 1234 { t.Fatalf("bad: %v", service.Port) } + if service.Meta["some"] != "meta" { + t.Fatalf("Missing metadata some:=meta in %v", service) + } } func TestAPI_AgentMembersOpts(t *testing.T) { @@ -691,7 +694,7 @@ func TestAPI_AgentChecks_Docker(t *testing.T) { ServiceID: "redis", AgentServiceCheck: AgentServiceCheck{ DockerContainerID: "f972c95ebf0e", - Script: "/bin/true", + Args: []string{"/bin/true"}, Shell: "/bin/bash", Interval: "10s", }, diff --git a/api/prepared_query.go b/api/prepared_query.go index 9020b720e..d322dd867 100644 --- a/api/prepared_query.go +++ b/api/prepared_query.go @@ -34,6 +34,12 @@ type ServiceQuery struct { // local datacenter. Failover QueryDatacenterOptions + // IgnoreCheckIDs is an optional list of health check IDs to ignore when + // considering which nodes are healthy. It is useful as an emergency measure + // to temporarily override some health check that is producing false negatives + // for example. + IgnoreCheckIDs []string + // If OnlyPassing is true then we will only include nodes with passing // health checks (critical AND warning checks will cause a node to be // discarded) diff --git a/api/prepared_query_test.go b/api/prepared_query_test.go index f06218001..1db2ce4bd 100644 --- a/api/prepared_query_test.go +++ b/api/prepared_query_test.go @@ -116,6 +116,53 @@ func TestAPI_PreparedQuery(t *testing.T) { t.Fatalf("bad datacenter: %v", results) } + // Add new node with failing health check. + reg2 := reg + reg2.Node = "failingnode" + reg2.Check = &AgentCheck{ + Node: "failingnode", + ServiceID: "redis1", + ServiceName: "redis", + Name: "failingcheck", + Status: "critical", + } + retry.Run(t, func(r *retry.R) { + if _, err := catalog.Register(reg2, nil); err != nil { + r.Fatal(err) + } + if _, _, err := catalog.Node("failingnode", nil); err != nil { + r.Fatal(err) + } + }) + + // Execute by ID. Should return only healthy node. + results, _, err = query.Execute(def.ID, nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if len(results.Nodes) != 1 || results.Nodes[0].Node.Node != "foobar" { + t.Fatalf("bad: %v", results) + } + if wan, ok := results.Nodes[0].Node.TaggedAddresses["wan"]; !ok || wan != "127.0.0.1" { + t.Fatalf("bad: %v", results) + } + + // Update PQ with ignore rule for the failing check + def.Service.IgnoreCheckIDs = []string{"failingcheck"} + _, err = query.Update(def, nil) + if err != nil { + t.Fatalf("err: %s", err) + } + + // Execute by ID. Should return BOTH nodes ignoring the failing check. + results, _, err = query.Execute(def.ID, nil) + if err != nil { + t.Fatalf("err: %s", err) + } + if len(results.Nodes) != 2 { + t.Fatalf("got %d nodes, want 2", len(results.Nodes)) + } + // Delete it. _, err = query.Delete(def.ID, nil) if err != nil { diff --git a/command/agent/agent.go b/command/agent/agent.go index 40bfbef20..90a040db8 100644 --- a/command/agent/agent.go +++ b/command/agent/agent.go @@ -15,6 +15,7 @@ import ( "github.com/armon/go-metrics" "github.com/armon/go-metrics/circonus" "github.com/armon/go-metrics/datadog" + "github.com/armon/go-metrics/prometheus" "github.com/hashicorp/consul/agent" "github.com/hashicorp/consul/agent/config" "github.com/hashicorp/consul/command/flags" @@ -60,7 +61,6 @@ type cmd struct { versionPrerelease string versionHuman string shutdownCh <-chan struct{} - args []string flagArgs config.Flags logFilter *logutils.LevelFilter logOutput io.Writer @@ -84,14 +84,6 @@ func (c *cmd) Run(args []string) int { // readConfig is responsible for setup of our configuration using // the command line and any file configs func (c *cmd) readConfig() *config.RuntimeConfig { - if err := c.flags.Parse(c.args); err != nil { - if !strings.Contains(err.Error(), "help requested") { - c.UI.Error(fmt.Sprintf("error parsing flags: %v", err)) - } - return nil - } - c.flagArgs.Args = c.flags.Args() - b, err := config.NewBuilder(c.flagArgs) if err != nil { c.UI.Error(err.Error()) @@ -208,6 +200,20 @@ func dogstatdSink(config *config.RuntimeConfig, hostname string) (metrics.Metric return sink, nil } +func prometheusSink(config *config.RuntimeConfig, hostname string) (metrics.MetricSink, error) { + if config.TelemetryPrometheusRetentionTime.Nanoseconds() < 1 { + return nil, nil + } + prometheusOpts := prometheus.PrometheusOpts{ + Expiration: config.TelemetryPrometheusRetentionTime, + } + sink, err := prometheus.NewPrometheusSinkFrom(prometheusOpts) + if err != nil { + return nil, err + } + return sink, nil +} + func circonusSink(config *config.RuntimeConfig, hostname string) (metrics.MetricSink, error) { if config.TelemetryCirconusAPIToken == "" && config.TelemetryCirconusSubmissionURL == "" { return nil, nil @@ -284,6 +290,9 @@ func startupTelemetry(conf *config.RuntimeConfig) (*metrics.InmemSink, error) { if err := addSink("circonus", circonusSink); err != nil { return nil, err } + if err := addSink("prometheus", prometheusSink); err != nil { + return nil, err + } if len(sinks) > 0 { sinks = append(sinks, memSink) @@ -297,7 +306,13 @@ func startupTelemetry(conf *config.RuntimeConfig) (*metrics.InmemSink, error) { func (c *cmd) run(args []string) int { // Parse our configs - c.args = args + if err := c.flags.Parse(args); err != nil { + if !strings.Contains(err.Error(), "help requested") { + c.UI.Error(fmt.Sprintf("error parsing flags: %v", err)) + } + return 1 + } + c.flagArgs.Args = c.flags.Args() config := c.readConfig() if config == nil { return 1 @@ -385,7 +400,6 @@ func (c *cmd) run(args []string) int { // wait for signal signalCh := make(chan os.Signal, 10) - signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP) signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGPIPE) for { @@ -489,7 +503,7 @@ func (c *cmd) handleReload(agent *agent.Agent, cfg *config.RuntimeConfig) (*conf "Failed to reload configs: %v", err)) } - return cfg, errs + return newCfg, errs } func (c *cmd) Synopsis() string { diff --git a/command/helpers/helpers.go b/command/helpers/helpers.go new file mode 100644 index 000000000..6ad7ed2b7 --- /dev/null +++ b/command/helpers/helpers.go @@ -0,0 +1,42 @@ +package helpers + +import ( + "bytes" + "fmt" + "io" + "io/ioutil" + "os" +) + +func LoadDataSource(data string, testStdin io.Reader) (string, error) { + var stdin io.Reader = os.Stdin + if testStdin != nil { + stdin = testStdin + } + + // Handle empty quoted shell parameters + if len(data) == 0 { + return "", nil + } + + switch data[0] { + case '@': + data, err := ioutil.ReadFile(data[1:]) + if err != nil { + return "", fmt.Errorf("Failed to read file: %s", err) + } else { + return string(data), nil + } + case '-': + if len(data) > 1 { + return data, nil + } + var b bytes.Buffer + if _, err := io.Copy(&b, stdin); err != nil { + return "", fmt.Errorf("Failed to read stdin: %s", err) + } + return b.String(), nil + default: + return data, nil + } +} diff --git a/command/kv/del/kv_delete.go b/command/kv/del/kv_delete.go index a0716c599..f5546e7e1 100644 --- a/command/kv/del/kv_delete.go +++ b/command/kv/del/kv_delete.go @@ -84,6 +84,7 @@ func (c *cmd) Run(args []string) int { // Specifying a ModifyIndex for a non-CAS operation is not possible. if c.modifyIndex != 0 && !c.cas { c.UI.Error("Cannot specify -modify-index without -cas!") + return 1 } // It is not valid to use a CAS and recurse in the same call diff --git a/command/kv/put/kv_put.go b/command/kv/put/kv_put.go index 98be3c001..abe51a538 100644 --- a/command/kv/put/kv_put.go +++ b/command/kv/put/kv_put.go @@ -1,16 +1,14 @@ package put import ( - "bytes" "encoding/base64" "flag" "fmt" "io" - "io/ioutil" - "os" "github.com/hashicorp/consul/api" "github.com/hashicorp/consul/command/flags" + "github.com/hashicorp/consul/command/helpers" "github.com/mitchellh/cli" ) @@ -173,11 +171,6 @@ func (c *cmd) Run(args []string) int { } func (c *cmd) dataFromArgs(args []string) (string, string, error) { - var stdin io.Reader = os.Stdin - if c.testStdin != nil { - stdin = c.testStdin - } - switch len(args) { case 0: return "", "", fmt.Errorf("Missing KEY argument") @@ -189,30 +182,11 @@ func (c *cmd) dataFromArgs(args []string) (string, string, error) { } key := args[0] - data := args[1] + data, err := helpers.LoadDataSource(args[1], c.testStdin) - // Handle empty quoted shell parameters - if len(data) == 0 { - return key, "", nil - } - - switch data[0] { - case '@': - data, err := ioutil.ReadFile(data[1:]) - if err != nil { - return "", "", fmt.Errorf("Failed to read file: %s", err) - } - return key, string(data), nil - case '-': - if len(data) > 1 { - return key, data, nil - } - var b bytes.Buffer - if _, err := io.Copy(&b, stdin); err != nil { - return "", "", fmt.Errorf("Failed to read stdin: %s", err) - } - return key, b.String(), nil - default: + if err != nil { + return "", "", err + } else { return key, data, nil } } diff --git a/command/validate/validate.go b/command/validate/validate.go index 96a84d614..fe3e64653 100644 --- a/command/validate/validate.go +++ b/command/validate/validate.go @@ -45,12 +45,12 @@ func (c *cmd) Run(args []string) int { c.UI.Error("Must specify at least one config file or directory") return 1 } - + if c.configFormat != "" && c.configFormat != "json" && c.configFormat != "hcl" { c.UI.Error("-config-format must be either 'hcl' or 'json") - return 1 + return 1 } - + b, err := config.NewBuilder(config.Flags{ConfigFiles: configFiles, ConfigFormat: &c.configFormat}) if err != nil { c.UI.Error(fmt.Sprintf("Config validation failed: %v", err.Error())) diff --git a/command/validate/validate_test.go b/command/validate/validate_test.go index c3f3dacc6..362a9bb81 100644 --- a/command/validate/validate_test.go +++ b/command/validate/validate_test.go @@ -7,9 +7,9 @@ import ( "strings" "testing" - require "github.com/stretchr/testify/require" "github.com/hashicorp/consul/testutil" "github.com/mitchellh/cli" + require "github.com/stretchr/testify/require" ) func TestValidateCommand_noTabs(t *testing.T) { @@ -72,7 +72,6 @@ func TestValidateCommand_SucceedWithMinimalHCLConfigFormat(t *testing.T) { err := ioutil.WriteFile(fp, []byte("bind_addr = \"10.0.0.1\"\ndata_dir = \""+td+"\""), 0644) require.Nilf(t, err, "err: %s", err) - cmd := New(cli.NewMockUi()) args := []string{"--config-format", "hcl", fp} diff --git a/demo/vagrant-cluster/Vagrantfile b/demo/vagrant-cluster/Vagrantfile index b3aaa9794..0ac0f199c 100644 --- a/demo/vagrant-cluster/Vagrantfile +++ b/demo/vagrant-cluster/Vagrantfile @@ -5,7 +5,7 @@ $script = < + + + {{content-for "body-footer"}} + + diff --git a/ui-v2/app/mixins/acl/with-actions.js b/ui-v2/app/mixins/acl/with-actions.js new file mode 100644 index 000000000..90e8c4b38 --- /dev/null +++ b/ui-v2/app/mixins/acl/with-actions.js @@ -0,0 +1,92 @@ +import Mixin from '@ember/object/mixin'; +import { get } from '@ember/object'; +import { inject as service } from '@ember/service'; +import WithFeedback from 'consul-ui/mixins/with-feedback'; + +export default Mixin.create(WithFeedback, { + settings: service('settings'), + actions: { + create: function(item) { + get(this, 'feedback').execute( + () => { + return get(this, 'repo') + .persist(item) + .then(item => { + return this.transitionTo('dc.acls'); + }); + }, + `Your ACL token has been added.`, + `There was an error adding your ACL token.` + ); + }, + update: function(item) { + get(this, 'feedback').execute( + () => { + return get(this, 'repo') + .persist(item) + .then(() => { + return this.transitionTo('dc.acls'); + }); + }, + `Your ACL token was saved.`, + `There was an error saving your ACL token.` + ); + }, + delete: function(item) { + get(this, 'feedback').execute( + () => { + return ( + get(this, 'repo') + // ember-changeset doesn't support `get` + // and `data` returns an object not a model + .remove(item) + .then(() => { + switch (this.routeName) { + case 'dc.acls.index': + return this.refresh(); + default: + return this.transitionTo('dc.acls'); + } + }) + ); + }, + `Your ACL token was deleted.`, + `There was an error deleting your ACL token.` + ); + }, + cancel: function(item) { + this.transitionTo('dc.acls'); + }, + use: function(item) { + get(this, 'feedback').execute( + () => { + return get(this, 'settings') + .persist({ token: get(item, 'ID') }) + .then(() => { + this.transitionTo('dc.services'); + }); + }, + `Now using new ACL token`, + `There was an error using that ACL token` + ); + }, + clone: function(item) { + get(this, 'feedback').execute( + () => { + return get(this, 'repo') + .clone(item) + .then(item => { + switch (this.routeName) { + case 'dc.acls.index': + return this.refresh(); + default: + return this.transitionTo('dc.acls'); + } + }); + }, + `Your ACL token was cloned.`, + `There was an error cloning your ACL token.` + ); + }, + }, +}); diff --git a/ui-v2/app/mixins/click-outside.js b/ui-v2/app/mixins/click-outside.js new file mode 100644 index 000000000..c7c216b06 --- /dev/null +++ b/ui-v2/app/mixins/click-outside.js @@ -0,0 +1,33 @@ +import Mixin from '@ember/object/mixin'; + +import { next } from '@ember/runloop'; +import { get } from '@ember/object'; +const isOutside = function(element, e) { + const isRemoved = !e.target || !document.contains(e.target); + const isInside = element === e.target || element.contains(e.target); + return !isRemoved && !isInside; +}; +const handler = function(e) { + const el = get(this, 'element'); + if (isOutside(el, e)) { + this.onblur(e); + } +}; +export default Mixin.create({ + init: function() { + this._super(...arguments); + this.handler = handler.bind(this); + }, + onchange: function() {}, + onblur: function() {}, + didInsertElement: function() { + this._super(...arguments); + next(this, () => { + document.addEventListener('click', this.handler); + }); + }, + willDestroyElement: function() { + this._super(...arguments); + document.removeEventListener('click', this.handler); + }, +}); diff --git a/ui-v2/app/mixins/kv/with-actions.js b/ui-v2/app/mixins/kv/with-actions.js new file mode 100644 index 000000000..e9abd5786 --- /dev/null +++ b/ui-v2/app/mixins/kv/with-actions.js @@ -0,0 +1,80 @@ +import Mixin from '@ember/object/mixin'; +import { get, set } from '@ember/object'; +import WithFeedback from 'consul-ui/mixins/with-feedback'; + +const transitionToList = function(key = '/', transitionTo) { + if (key === '/') { + return transitionTo('dc.kv.index'); + } else { + return transitionTo('dc.kv.folder', key); + } +}; + +export default Mixin.create(WithFeedback, { + actions: { + create: function(item, parent) { + get(this, 'feedback').execute( + () => { + return get(this, 'repo') + .persist(item) + .then(item => { + return transitionToList(get(parent, 'Key'), this.transitionTo.bind(this)); + }); + }, + `Your key has been added.`, + `There was an error adding your key.` + ); + }, + update: function(item, parent) { + get(this, 'feedback').execute( + () => { + return get(this, 'repo') + .persist(item) + .then(() => { + return transitionToList(get(parent, 'Key'), this.transitionTo.bind(this)); + }); + }, + `Your key has been saved.`, + `There was an error saving your key.` + ); + }, + delete: function(item, parent) { + get(this, 'feedback').execute( + () => { + return get(this, 'repo') + .remove(item) + .then(() => { + switch (this.routeName) { + case 'dc.kv.folder': + case 'dc.kv.index': + return this.refresh(); + default: + return transitionToList(get(parent, 'Key'), this.transitionTo.bind(this)); + } + }); + }, + `Your key was deleted.`, + `There was an error deleting your key.` + ); + }, + cancel: function(item, parent) { + return transitionToList(get(parent, 'Key'), this.transitionTo.bind(this)); + }, + invalidateSession: function(item) { + const controller = this.controller; + const repo = get(this, 'sessionRepo'); + get(this, 'feedback').execute( + () => { + return repo.remove(item).then(() => { + const item = get(controller, 'item'); + set(item, 'Session', null); + delete item.Session; + set(controller, 'session', null); + }); + }, + `The session was invalidated.`, + `There was an error invalidating the session.` + ); + }, + }, +}); diff --git a/ui-v2/app/mixins/with-feedback.js b/ui-v2/app/mixins/with-feedback.js new file mode 100644 index 000000000..2aaeaa7cf --- /dev/null +++ b/ui-v2/app/mixins/with-feedback.js @@ -0,0 +1,13 @@ +import Mixin from '@ember/object/mixin'; +import { inject as service } from '@ember/service'; +import { get, set } from '@ember/object'; + +export default Mixin.create({ + feedback: service('feedback'), + init: function() { + this._super(...arguments); + set(this, 'feedback', { + execute: get(this, 'feedback').execute.bind(this), + }); + }, +}); diff --git a/ui-v2/app/mixins/with-filtering.js b/ui-v2/app/mixins/with-filtering.js new file mode 100644 index 000000000..42dc8c888 --- /dev/null +++ b/ui-v2/app/mixins/with-filtering.js @@ -0,0 +1,47 @@ +import Mixin from '@ember/object/mixin'; +import { computed, get, set } from '@ember/object'; + +const toKeyValue = function(el) { + const key = el.name; + let value = ''; + switch (el.type) { + case 'radio': + case 'search': + case 'text': + value = el.value; + break; + } + return { [key]: value }; +}; +export default Mixin.create({ + filters: {}, + filtered: computed('items', 'filters', function() { + const filters = get(this, 'filters'); + return get(this, 'items').filter(item => { + return this.filter(item, filters); + }); + }), + setProperties: function() { + this._super(...arguments); + const query = get(this, 'queryParams'); + query.forEach((item, i, arr) => { + const filters = get(this, 'filters'); + Object.keys(item).forEach(key => { + set(filters, key, get(this, key)); + }); + set(this, 'filters', filters); + }); + }, + actions: { + filter: function(e) { + const obj = toKeyValue(e.target); + Object.keys(obj).forEach((key, i, arr) => { + set(this, key, obj[key] != '' ? obj[key] : null); + }); + set(this, 'filters', { + ...this.get('filters'), + ...obj, + }); + }, + }, +}); diff --git a/ui-v2/app/mixins/with-health-filtering.js b/ui-v2/app/mixins/with-health-filtering.js new file mode 100644 index 000000000..6fd4ca26b --- /dev/null +++ b/ui-v2/app/mixins/with-health-filtering.js @@ -0,0 +1,50 @@ +import Mixin from '@ember/object/mixin'; +import WithFiltering from 'consul-ui/mixins/with-filtering'; +import { computed, get } from '@ember/object'; +import ucfirst from 'consul-ui/utils/ucfirst'; +import numeral from 'numeral'; + +const countStatus = function(items, status) { + if (status === '') { + return get(items, 'length'); + } + const key = `Checks${ucfirst(status)}`; + return items.reduce(function(prev, item, i, arr) { + const num = get(item, key); + return ( + prev + + (typeof num !== 'undefined' + ? num + : get(item, 'Checks').filter(function(item) { + return item.Status === status; + }).length) || 0 + ); + }, 0); +}; +export default Mixin.create(WithFiltering, { + queryParams: { + status: { + as: 'status', + }, + s: { + as: 'filter', + }, + }, + healthFilters: computed('items', function() { + const items = get(this, 'items'); + const objs = ['', 'passing', 'warning', 'critical'].map(function(item) { + const count = countStatus(items, item); + return { + count: count, + label: `${item === '' ? 'All' : ucfirst(item)} (${numeral(count).format()})`, + value: item, + }; + }); + objs[0].label = `All (${numeral( + objs.slice(1).reduce(function(prev, item, i, arr) { + return prev + item.count; + }, 0) + ).format()})`; + return objs; + }), +}); diff --git a/ui-v2/app/models/acl.js b/ui-v2/app/models/acl.js new file mode 100644 index 000000000..e467b4377 --- /dev/null +++ b/ui-v2/app/models/acl.js @@ -0,0 +1,16 @@ +import Model from 'ember-data/model'; +import attr from 'ember-data/attr'; + +export const PRIMARY_KEY = 'uid'; +export const SLUG_KEY = 'ID'; + +export default Model.extend({ + [PRIMARY_KEY]: attr('string'), + [SLUG_KEY]: attr('string'), + Name: attr('string'), + Type: attr('string'), + Rules: attr('string'), + CreateIndex: attr('number'), + ModifyIndex: attr('number'), + Datacenter: attr('string'), +}); diff --git a/ui-v2/app/models/coordinate.js b/ui-v2/app/models/coordinate.js new file mode 100644 index 000000000..7d82dcb05 --- /dev/null +++ b/ui-v2/app/models/coordinate.js @@ -0,0 +1,12 @@ +import Model from 'ember-data/model'; +import attr from 'ember-data/attr'; + +export const PRIMARY_KEY = 'uid'; +export const SLUG_KEY = 'Node'; + +export default Model.extend({ + [PRIMARY_KEY]: attr('string'), + [SLUG_KEY]: attr('string'), + Coord: attr(), + Segment: attr('string'), +}); diff --git a/ui-v2/app/models/dc.js b/ui-v2/app/models/dc.js new file mode 100644 index 000000000..d48bc182b --- /dev/null +++ b/ui-v2/app/models/dc.js @@ -0,0 +1,14 @@ +import Model from 'ember-data/model'; +import attr from 'ember-data/attr'; +import { hasMany } from 'ember-data/relationships'; + +export const PRIMARY_KEY = 'uid'; +export const FOREIGN_KEY = 'Datacenter'; +export const SLUG_KEY = 'Name'; + +export default Model.extend({ + [PRIMARY_KEY]: attr('string'), + [SLUG_KEY]: attr('string'), + Services: hasMany('service'), + Nodes: hasMany('node'), +}); diff --git a/ui-v2/app/models/kv.js b/ui-v2/app/models/kv.js new file mode 100644 index 000000000..66e3a2126 --- /dev/null +++ b/ui-v2/app/models/kv.js @@ -0,0 +1,25 @@ +import Model from 'ember-data/model'; +import attr from 'ember-data/attr'; +import { computed, get } from '@ember/object'; +import isFolder from 'consul-ui/utils/isFolder'; + +export const PRIMARY_KEY = 'uid'; +// not really a slug as it contains slashes but all intents and purposes +// its my 'slug' +export const SLUG_KEY = 'Key'; + +export default Model.extend({ + [PRIMARY_KEY]: attr('string'), + [SLUG_KEY]: attr('string'), + LockIndex: attr('number'), + Flags: attr('number'), + Value: attr('string'), + CreateIndex: attr('string'), + ModifyIndex: attr('string'), + Session: attr('string'), + Datacenter: attr('string'), + + isFolder: computed('Key', function() { + return isFolder(get(this, 'Key') || ''); + }), +}); diff --git a/ui-v2/app/models/node.js b/ui-v2/app/models/node.js new file mode 100644 index 000000000..cbe4272a5 --- /dev/null +++ b/ui-v2/app/models/node.js @@ -0,0 +1,33 @@ +import Model from 'ember-data/model'; +import attr from 'ember-data/attr'; +import { computed, get } from '@ember/object'; +import sumOfUnhealthy from 'consul-ui/utils/sumOfUnhealthy'; +import hasStatus from 'consul-ui/utils/hasStatus'; + +export const PRIMARY_KEY = 'uid'; +export const SLUG_KEY = 'ID'; + +export default Model.extend({ + [PRIMARY_KEY]: attr('string'), + [SLUG_KEY]: attr('string'), + Address: attr('string'), + Node: attr('string'), + Meta: attr(), + Services: attr(), + Checks: attr(), + CreateIndex: attr('number'), + ModifyIndex: attr('number'), + TaggedAddresses: attr(), + Datacenter: attr('string'), + Segment: attr(), + Coord: attr(), + hasStatus: function(status) { + return hasStatus(get(this, 'Checks'), status); + }, + isHealthy: computed('Checks', function() { + return sumOfUnhealthy(get(this, 'Checks')) === 0; + }), + isUnhealthy: computed('Checks', function() { + return sumOfUnhealthy(get(this, 'Checks')) > 0; + }), +}); diff --git a/ui-v2/app/models/service.js b/ui-v2/app/models/service.js new file mode 100644 index 000000000..81aaab38c --- /dev/null +++ b/ui-v2/app/models/service.js @@ -0,0 +1,59 @@ +import Model from 'ember-data/model'; +import attr from 'ember-data/attr'; +import { computed, get } from '@ember/object'; + +export const PRIMARY_KEY = 'uid'; +export const SLUG_KEY = 'Name'; + +export default Model.extend({ + [PRIMARY_KEY]: attr('string'), + [SLUG_KEY]: attr('string'), + Tags: attr({ + defaultValue: function() { + return []; + }, + }), + Address: attr('string'), + Port: attr('number'), + EnableTagOverride: attr('boolean'), + CreateIndex: attr('number'), + ModifyIndex: attr('number'), + ChecksPassing: attr(), + ChecksCritical: attr(), + ChecksWarning: attr(), + Nodes: attr(), + Datacenter: attr('string'), + Node: attr(), + Service: attr(), + Checks: attr(), + passing: computed('ChecksPassing', 'Checks', function() { + let num = 0; + // TODO: use typeof + if (get(this, 'ChecksPassing') !== undefined) { + num = get(this, 'ChecksPassing'); + } else { + num = get(get(this, 'Checks').filterBy('Status', 'passing'), 'length'); + } + return { + length: num, + }; + }), + hasStatus: function(status) { + let num = 0; + switch (status) { + case 'passing': + num = get(this, 'ChecksPassing'); + break; + case 'critical': + num = get(this, 'ChecksCritical'); + break; + case 'warning': + num = get(this, 'ChecksWarning'); + break; + case '': // all + num = 1; + break; + } + return num > 0; + }, +}); diff --git a/ui-v2/app/models/session.js b/ui-v2/app/models/session.js new file mode 100644 index 000000000..1ce2ba997 --- /dev/null +++ b/ui-v2/app/models/session.js @@ -0,0 +1,23 @@ +import Model from 'ember-data/model'; +import attr from 'ember-data/attr'; + +export const PRIMARY_KEY = 'uid'; +export const SLUG_KEY = 'ID'; + +export default Model.extend({ + [PRIMARY_KEY]: attr('string'), + [SLUG_KEY]: attr('string'), + Name: attr('string'), + Node: attr('string'), + CreateIndex: attr('number'), + ModifyIndex: attr('number'), + LockDelay: attr('number'), + Behavior: attr('string'), + TTL: attr('number'), + Checks: attr({ + defaultValue: function() { + return []; + }, + }), + Datacenter: attr('string'), +}); diff --git a/ui-v2/app/resolver.js b/ui-v2/app/resolver.js new file mode 100644 index 000000000..2fb563d6c --- /dev/null +++ b/ui-v2/app/resolver.js @@ -0,0 +1,3 @@ +import Resolver from 'ember-resolver'; + +export default Resolver; diff --git a/ui-v2/app/router.js b/ui-v2/app/router.js new file mode 100644 index 000000000..0d99ec539 --- /dev/null +++ b/ui-v2/app/router.js @@ -0,0 +1,45 @@ +import EmberRouter from '@ember/routing/router'; +import config from './config/environment'; + +const Router = EmberRouter.extend({ + location: config.locationType, + rootURL: config.rootURL, +}); +Router.map(function() { + // Our parent datacenter resource sets the namespace + // for the entire application + this.route('dc', { path: '/:dc' }, function() { + // Services represent a consul service + this.route('services', { path: '/services' }, function() { + // Show an individual service + this.route('show', { path: '/*name' }); + }); + // Nodes represent a consul node + this.route('nodes', { path: '/nodes' }, function() { + // Show an individual node + this.route('show', { path: '/:name' }); + }); + // Key/Value + this.route('kv', { path: '/kv' }, function() { + this.route('folder', { path: '/*key' }); + this.route('edit', { path: '/*key/edit' }); + this.route('create', { path: '/*key/create' }); + this.route('root-create', { path: '/create' }); + }); + // ACLs + this.route('acls', { path: '/acls' }, function() { + this.route('edit', { path: '/:id' }); + this.route('create', { path: '/create' }); + }); + }); + + // Shows a datacenter picker. If you only have one + // it just redirects you through. + this.route('index', { path: '/' }); + + // The settings page is global. + this.route('settings', { path: '/settings' }); + this.route('notfound', { path: '/*path' }); +}); + +export default Router; diff --git a/ui-v2/app/routes/application.js b/ui-v2/app/routes/application.js new file mode 100644 index 000000000..0fd78fb06 --- /dev/null +++ b/ui-v2/app/routes/application.js @@ -0,0 +1,66 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get } from '@ember/object'; +import { next } from '@ember/runloop'; +const $html = document.documentElement; +export default Route.extend({ + init: function() { + this._super(...arguments); + }, + repo: service('dc'), + actions: { + loading: function(transition, originRoute) { + let dc = null; + if (originRoute.routeName !== 'dc') { + const model = this.modelFor('dc') || { dcs: null, dc: { Name: null } }; + dc = get(this, 'repo').getActive(model.dc.Name, model.dcs); + } + hash({ + loading: !$html.classList.contains('ember-loading'), + dc: dc, + }).then(model => { + next(() => { + const controller = this.controllerFor('application'); + controller.setProperties(model); + transition.promise.finally(function() { + $html.classList.remove('ember-loading'); + controller.setProperties({ + loading: false, + dc: model.dc, + }); + }); + }); + }); + return true; + }, + error: function(e, transition) { + let error = { + status: e.code || '', + message: e.message || e.detail || 'Error', + }; + if (e.errors && e.errors[0]) { + error = e.errors[0]; + error.message = error.title || error.detail || 'Error'; + } + if (error.status === '') { + error.message = 'Error'; + } + hash({ + error: error, + dc: error.status.toString().indexOf('5') !== 0 ? get(this, 'repo').getActive() : null, + }) + .then(model => { + next(() => { + this.controllerFor('error').setProperties(model); + }); + }) + .catch(e => { + next(() => { + this.controllerFor('error').setProperties({ error: error }); + }); + }); + return true; + }, + }, +}); diff --git a/ui-v2/app/routes/dc.js b/ui-v2/app/routes/dc.js new file mode 100644 index 000000000..5d51eb057 --- /dev/null +++ b/ui-v2/app/routes/dc.js @@ -0,0 +1,25 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get } from '@ember/object'; +export default Route.extend({ + repo: service('dc'), + settings: service('settings'), + model: function(params) { + const repo = get(this, 'repo'); + return hash({ + dcs: repo.findAll(), + }).then(function(model) { + return hash({ + ...model, + ...{ + dc: repo.findBySlug(params.dc, model.dcs), + }, + }); + }); + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, +}); diff --git a/ui-v2/app/routes/dc/acls/create.js b/ui-v2/app/routes/dc/acls/create.js new file mode 100644 index 000000000..ee36d0603 --- /dev/null +++ b/ui-v2/app/routes/dc/acls/create.js @@ -0,0 +1,33 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get, set } from '@ember/object'; + +import WithAclActions from 'consul-ui/mixins/acl/with-actions'; + +export default Route.extend(WithAclActions, { + templateName: 'dc/acls/edit', + repo: service('acls'), + beforeModel: function() { + get(this, 'repo').invalidate(); + }, + model: function(params) { + this.item = get(this, 'repo').create(); + set(this.item, 'Datacenter', this.modelFor('dc').dc.Name); + return hash({ + create: true, + isLoading: false, + item: this.item, + types: ['management', 'client'], + }); + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, + deactivate: function() { + if (get(this.item, 'isNew')) { + this.item.destroyRecord(); + } + }, +}); diff --git a/ui-v2/app/routes/dc/acls/edit.js b/ui-v2/app/routes/dc/acls/edit.js new file mode 100644 index 000000000..078aa4afc --- /dev/null +++ b/ui-v2/app/routes/dc/acls/edit.js @@ -0,0 +1,22 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get } from '@ember/object'; + +import WithAclActions from 'consul-ui/mixins/acl/with-actions'; + +export default Route.extend(WithAclActions, { + repo: service('acls'), + settings: service('settings'), + model: function(params) { + return hash({ + isLoading: false, + item: get(this, 'repo').findBySlug(params.id, this.modelFor('dc').dc.Name), + types: ['management', 'client'], + }); + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, +}); diff --git a/ui-v2/app/routes/dc/acls/index.js b/ui-v2/app/routes/dc/acls/index.js new file mode 100644 index 000000000..37e758988 --- /dev/null +++ b/ui-v2/app/routes/dc/acls/index.js @@ -0,0 +1,26 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get } from '@ember/object'; + +import WithAclActions from 'consul-ui/mixins/acl/with-actions'; + +export default Route.extend(WithAclActions, { + repo: service('acls'), + queryParams: { + s: { + as: 'filter', + replace: true, + }, + }, + model: function(params) { + return hash({ + isLoading: false, + items: get(this, 'repo').findAllByDatacenter(this.modelFor('dc').dc.Name), + }); + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, +}); diff --git a/ui-v2/app/routes/dc/kv/create.js b/ui-v2/app/routes/dc/kv/create.js new file mode 100644 index 000000000..37ab4e038 --- /dev/null +++ b/ui-v2/app/routes/dc/kv/create.js @@ -0,0 +1,35 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get, set } from '@ember/object'; +import WithKvActions from 'consul-ui/mixins/kv/with-actions'; + +export default Route.extend(WithKvActions, { + templateName: 'dc/kv/edit', + repo: service('kv'), + beforeModel: function() { + get(this, 'repo').invalidate(); + }, + model: function(params) { + const key = params.key || '/'; + const repo = get(this, 'repo'); + const dc = this.modelFor('dc').dc.Name; + this.item = repo.create(); + set(this.item, 'Datacenter', dc); + return hash({ + create: true, + isLoading: false, + item: this.item, + parent: repo.findBySlug(key, dc), + }); + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, + deactivate: function() { + if (get(this.item, 'isNew')) { + this.item.destroyRecord(); + } + }, +}); diff --git a/ui-v2/app/routes/dc/kv/edit.js b/ui-v2/app/routes/dc/kv/edit.js new file mode 100644 index 000000000..2cae40954 --- /dev/null +++ b/ui-v2/app/routes/dc/kv/edit.js @@ -0,0 +1,38 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get } from '@ember/object'; +import WithKvActions from 'consul-ui/mixins/kv/with-actions'; + +import ascend from 'consul-ui/utils/ascend'; + +export default Route.extend(WithKvActions, { + repo: service('kv'), + sessionRepo: service('session'), + model: function(params) { + const key = params.key; + const dc = this.modelFor('dc').dc.Name; + const repo = get(this, 'repo'); + return hash({ + isLoading: false, + parent: repo.findBySlug(ascend(key, 1) || '/', dc), + item: repo.findBySlug(key, dc), + }).then(model => { + // TODO: Consider loading this after initial page load + const session = get(model.item, 'Session'); + if (session) { + return hash({ + ...model, + ...{ + session: get(this, 'sessionRepo').findByKey(session, dc), + }, + }); + } + return model; + }); + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, +}); diff --git a/ui-v2/app/routes/dc/kv/folder.js b/ui-v2/app/routes/dc/kv/folder.js new file mode 100644 index 000000000..aae571ea1 --- /dev/null +++ b/ui-v2/app/routes/dc/kv/folder.js @@ -0,0 +1,13 @@ +// import Route from '@ember/routing/route'; +import Route from './index'; + +export default Route.extend({ + templateName: 'dc/kv/index', + beforeModel: function(transition) { + this._super(...arguments); + const params = this.paramsFor('dc.kv.folder'); + if (params.key === '/' || params.key == null) { + return this.transitionTo('dc.kv.index'); + } + }, +}); diff --git a/ui-v2/app/routes/dc/kv/index.js b/ui-v2/app/routes/dc/kv/index.js new file mode 100644 index 000000000..a39615aa8 --- /dev/null +++ b/ui-v2/app/routes/dc/kv/index.js @@ -0,0 +1,39 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get } from '@ember/object'; +import WithKvActions from 'consul-ui/mixins/kv/with-actions'; + +export default Route.extend(WithKvActions, { + repo: service('kv'), + model: function(params) { + const key = params.key || '/'; + const dc = this.modelFor('dc').dc.Name; + const repo = get(this, 'repo'); + return hash({ + isLoading: false, + parent: repo.findBySlug(key, dc), + }).then(model => { + return hash({ + ...model, + ...{ + items: repo.findAllBySlug(get(model.parent, 'Key'), dc).catch(e => { + return this.transitionTo('dc.kv.index'); + }), + }, + }); + }); + }, + actions: { + error: function(e) { + if (e.errors && e.errors[0] && e.errors[0].status == '404') { + return this.transitionTo('dc.kv.index'); + } + throw e; + }, + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, +}); diff --git a/ui-v2/app/routes/dc/kv/root-create.js b/ui-v2/app/routes/dc/kv/root-create.js new file mode 100644 index 000000000..1e5d65859 --- /dev/null +++ b/ui-v2/app/routes/dc/kv/root-create.js @@ -0,0 +1,3 @@ +import Route from './create'; + +export default Route.extend(); diff --git a/ui-v2/app/routes/dc/nodes/index.js b/ui-v2/app/routes/dc/nodes/index.js new file mode 100644 index 000000000..6b71d287a --- /dev/null +++ b/ui-v2/app/routes/dc/nodes/index.js @@ -0,0 +1,23 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get } from '@ember/object'; + +export default Route.extend({ + repo: service('nodes'), + queryParams: { + s: { + as: 'filter', + replace: true, + }, + }, + model: function(params) { + return hash({ + items: get(this, 'repo').findAllByDatacenter(this.modelFor('dc').dc.Name), + }); + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, +}); diff --git a/ui-v2/app/routes/dc/nodes/show.js b/ui-v2/app/routes/dc/nodes/show.js new file mode 100644 index 000000000..75da2ab0d --- /dev/null +++ b/ui-v2/app/routes/dc/nodes/show.js @@ -0,0 +1,66 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get, set } from '@ember/object'; + +import distance from 'consul-ui/utils/distance'; +import tomographyFactory from 'consul-ui/utils/tomography'; +import WithFeedback from 'consul-ui/mixins/with-feedback'; + +const tomography = tomographyFactory(distance); + +export default Route.extend(WithFeedback, { + repo: service('nodes'), + sessionRepo: service('session'), + queryParams: { + s: { + as: 'filter', + replace: true, + }, + }, + model: function(params) { + const dc = this.modelFor('dc').dc.Name; + const repo = get(this, 'repo'); + const sessionRepo = get(this, 'sessionRepo'); + return hash({ + item: repo.findBySlug(params.name, dc), + }).then(function(model) { + // TODO: Consider loading this after initial page load + const coordinates = get(model.item, 'Coordinates'); + return hash({ + ...model, + ...{ + tomography: + get(coordinates, 'length') > 1 + ? tomography(params.name, coordinates.map(item => get(item, 'data'))) + : null, + items: get(model.item, 'Services'), + sessions: sessionRepo.findByNode(get(model.item, 'Node'), dc), + }, + }); + }); + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, + actions: { + invalidateSession: function(item) { + const dc = this.modelFor('dc').dc.Name; + const controller = this.controller; + const repo = get(this, 'sessionRepo'); + get(this, 'feedback').execute( + () => { + const node = get(item, 'Node'); + return repo.remove(item).then(() => { + return repo.findByNode(node, dc).then(function(sessions) { + set(controller, 'sessions', sessions); + }); + }); + }, + `The session was invalidated.`, + `There was an error invalidating the session.` + ); + }, + }, +}); diff --git a/ui-v2/app/routes/dc/services/index.js b/ui-v2/app/routes/dc/services/index.js new file mode 100644 index 000000000..22fcad990 --- /dev/null +++ b/ui-v2/app/routes/dc/services/index.js @@ -0,0 +1,24 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get } from '@ember/object'; + +export default Route.extend({ + repo: service('services'), + queryParams: { + s: { + as: 'filter', + replace: true, + }, + }, + model: function(params) { + const repo = get(this, 'repo'); + return hash({ + items: repo.findAllByDatacenter(this.modelFor('dc').dc.Name), + }); + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, +}); diff --git a/ui-v2/app/routes/dc/services/show.js b/ui-v2/app/routes/dc/services/show.js new file mode 100644 index 000000000..2fa74c8dd --- /dev/null +++ b/ui-v2/app/routes/dc/services/show.js @@ -0,0 +1,31 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get } from '@ember/object'; + +export default Route.extend({ + repo: service('services'), + queryParams: { + s: { + as: 'filter', + replace: true, + }, + }, + model: function(params) { + const repo = get(this, 'repo'); + return hash({ + item: repo.findBySlug(params.name, this.modelFor('dc').dc.Name), + }).then(function(model) { + return { + ...model, + ...{ + items: model.item.Nodes, + }, + }; + }); + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, +}); diff --git a/ui-v2/app/routes/index.js b/ui-v2/app/routes/index.js new file mode 100644 index 000000000..05776118e --- /dev/null +++ b/ui-v2/app/routes/index.js @@ -0,0 +1,16 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get } from '@ember/object'; + +export default Route.extend({ + repo: service('dc'), + model: function(params) { + return hash({ + item: get(this, 'repo').getActive(), + }); + }, + afterModel: function({ item }, transition) { + this.transitionTo('dc.services', get(item, 'Name')); + }, +}); diff --git a/ui-v2/app/routes/notfound.js b/ui-v2/app/routes/notfound.js new file mode 100644 index 000000000..8ec8e2528 --- /dev/null +++ b/ui-v2/app/routes/notfound.js @@ -0,0 +1,10 @@ +import Route from '@ember/routing/route'; +import Error from '@ember/error'; + +export default Route.extend({ + beforeModel: function() { + const e = new Error('Page not found'); + e.code = 404; + throw e; + }, +}); diff --git a/ui-v2/app/routes/settings.js b/ui-v2/app/routes/settings.js new file mode 100644 index 000000000..cffbeb8aa --- /dev/null +++ b/ui-v2/app/routes/settings.js @@ -0,0 +1,47 @@ +import Route from '@ember/routing/route'; +import { inject as service } from '@ember/service'; +import { hash } from 'rsvp'; +import { get } from '@ember/object'; + +import WithFeedback from 'consul-ui/mixins/with-feedback'; +export default Route.extend(WithFeedback, { + dcRepo: service('dc'), + repo: service('settings'), + model: function(params) { + return hash({ + item: get(this, 'repo').findAll(), + dcs: get(this, 'dcRepo').findAll(), + }).then(model => { + return hash({ + ...model, + ...{ + dc: get(this, 'dcRepo').getActive(null, model.dcs), + }, + }); + }); + }, + setupController: function(controller, model) { + this._super(...arguments); + controller.setProperties(model); + }, + actions: { + update: function(item) { + get(this, 'feedback').execute( + () => { + return get(this, 'repo').persist(item); + }, + `Your settings were saved.`, + `There was an error saving your settings.` + ); + }, + delete: function(key) { + get(this, 'feedback').execute( + () => { + return get(this, 'repo').remove(key); + }, + `You settings have been reset.`, + `There was an error resetting your settings.` + ); + }, + }, +}); diff --git a/ui-v2/app/serializers/acl.js b/ui-v2/app/serializers/acl.js new file mode 100644 index 000000000..7fb50ad4d --- /dev/null +++ b/ui-v2/app/serializers/acl.js @@ -0,0 +1,6 @@ +import Serializer from './application'; +import { PRIMARY_KEY } from 'consul-ui/models/acl'; + +export default Serializer.extend({ + primaryKey: PRIMARY_KEY, +}); diff --git a/ui-v2/app/serializers/application.js b/ui-v2/app/serializers/application.js new file mode 100644 index 000000000..d7468ee8f --- /dev/null +++ b/ui-v2/app/serializers/application.js @@ -0,0 +1,21 @@ +import Serializer from 'ember-data/serializers/rest'; + +export default Serializer.extend({ + // this could get confusing if you tried to override + // say `normalizeQueryResponse` + // TODO: consider creating a method for each one of the `normalize...Response` family + normalizeResponse: function(store, primaryModelClass, payload, id, requestType) { + return this._super( + store, + primaryModelClass, + { + [primaryModelClass.modelName]: this.normalizePayload(payload, id, requestType), + }, + id, + requestType + ); + }, + normalizePayload: function(payload, id, requestType) { + return payload; + }, +}); diff --git a/ui-v2/app/serializers/coordinate.js b/ui-v2/app/serializers/coordinate.js new file mode 100644 index 000000000..aeb0b3a3d --- /dev/null +++ b/ui-v2/app/serializers/coordinate.js @@ -0,0 +1,6 @@ +import Serializer from './application'; +import { PRIMARY_KEY } from 'consul-ui/models/coordinate'; + +export default Serializer.extend({ + primaryKey: PRIMARY_KEY, +}); diff --git a/ui-v2/app/serializers/dc.js b/ui-v2/app/serializers/dc.js new file mode 100644 index 000000000..7482c86f6 --- /dev/null +++ b/ui-v2/app/serializers/dc.js @@ -0,0 +1,17 @@ +import Serializer from './application'; +import { get } from '@ember/object'; + +export default Serializer.extend({ + primaryKey: 'Name', + normalizePayload: function(payload, id, requestType) { + switch (requestType) { + case 'findAll': + return payload.map(item => { + return { + [get(this, 'primaryKey')]: item, + }; + }); + } + return payload; + }, +}); diff --git a/ui-v2/app/serializers/kv.js b/ui-v2/app/serializers/kv.js new file mode 100644 index 000000000..b244f4779 --- /dev/null +++ b/ui-v2/app/serializers/kv.js @@ -0,0 +1,6 @@ +import Serializer from './application'; +import { PRIMARY_KEY } from 'consul-ui/models/kv'; + +export default Serializer.extend({ + primaryKey: PRIMARY_KEY, +}); diff --git a/ui-v2/app/serializers/node.js b/ui-v2/app/serializers/node.js new file mode 100644 index 000000000..ec383108e --- /dev/null +++ b/ui-v2/app/serializers/node.js @@ -0,0 +1,6 @@ +import Serializer from './application'; +import { PRIMARY_KEY } from 'consul-ui/models/node'; + +export default Serializer.extend({ + primaryKey: PRIMARY_KEY, +}); diff --git a/ui-v2/app/serializers/service.js b/ui-v2/app/serializers/service.js new file mode 100644 index 000000000..ff0ff54b1 --- /dev/null +++ b/ui-v2/app/serializers/service.js @@ -0,0 +1,6 @@ +import Serializer from './application'; +import { PRIMARY_KEY } from 'consul-ui/models/service'; + +export default Serializer.extend({ + primaryKey: PRIMARY_KEY, +}); diff --git a/ui-v2/app/serializers/session.js b/ui-v2/app/serializers/session.js new file mode 100644 index 000000000..a4b67fc3f --- /dev/null +++ b/ui-v2/app/serializers/session.js @@ -0,0 +1,6 @@ +import Serializer from './application'; +import { PRIMARY_KEY } from 'consul-ui/models/session'; + +export default Serializer.extend({ + primaryKey: PRIMARY_KEY, +}); diff --git a/ui-v2/app/services/acls.js b/ui-v2/app/services/acls.js new file mode 100644 index 000000000..a70f3e54f --- /dev/null +++ b/ui-v2/app/services/acls.js @@ -0,0 +1,54 @@ +import Service, { inject as service } from '@ember/service'; +import { get, set } from '@ember/object'; +import { typeOf } from '@ember/utils'; +import { PRIMARY_KEY } from 'consul-ui/models/acl'; +export default Service.extend({ + store: service('store'), + clone: function(item) { + return get(this, 'store').clone('acl', get(item, PRIMARY_KEY)); + }, + findAllByDatacenter: function(dc) { + return get(this, 'store') + .query('acl', { + dc: dc, + }) + .then(function(items) { + // TODO: Sort with anonymous first + return items.forEach(function(item, i, arr) { + set(item, 'Datacenter', dc); + }); + }); + }, + findBySlug: function(slug, dc) { + return get(this, 'store') + .queryRecord('acl', { + id: slug, + dc: dc, + }) + .then(function(item) { + set(item, 'Datacenter', dc); + return item; + }); + }, + create: function() { + return get(this, 'store').createRecord('acl'); + }, + persist: function(item) { + return item.save(); + }, + remove: function(obj) { + let item = obj; + if (typeof obj.destroyRecord === 'undefined') { + item = obj.get('data'); + } + if (typeOf(item) === 'object') { + item = get(this, 'store').peekRecord('acl', item[PRIMARY_KEY]); + } + return item.destroyRecord().then(item => { + return get(this, 'store').unloadRecord(item); + }); + }, + invalidate: function() { + get(this, 'store').unloadAll('acl'); + }, +}); diff --git a/ui-v2/app/services/atob.js b/ui-v2/app/services/atob.js new file mode 100644 index 000000000..d01d37e1b --- /dev/null +++ b/ui-v2/app/services/atob.js @@ -0,0 +1,7 @@ +import Service from '@ember/service'; +import atob from 'consul-ui/utils/atob'; +export default Service.extend({ + execute: function() { + return atob(...arguments); + }, +}); diff --git a/ui-v2/app/services/btoa.js b/ui-v2/app/services/btoa.js new file mode 100644 index 000000000..d3d0c131e --- /dev/null +++ b/ui-v2/app/services/btoa.js @@ -0,0 +1,7 @@ +import Service from '@ember/service'; +import btoa from 'consul-ui/utils/btoa'; +export default Service.extend({ + execute: function() { + return btoa(...arguments); + }, +}); diff --git a/ui-v2/app/services/confirm.js b/ui-v2/app/services/confirm.js new file mode 100644 index 000000000..16411bddd --- /dev/null +++ b/ui-v2/app/services/confirm.js @@ -0,0 +1,8 @@ +import Service from '@ember/service'; +import confirm from 'consul-ui/utils/confirm'; + +export default Service.extend({ + execute: function(message) { + return confirm(message); + }, +}); diff --git a/ui-v2/app/services/coordinates.js b/ui-v2/app/services/coordinates.js new file mode 100644 index 000000000..85dea8ea6 --- /dev/null +++ b/ui-v2/app/services/coordinates.js @@ -0,0 +1,9 @@ +import Service, { inject as service } from '@ember/service'; +import { get } from '@ember/object'; + +export default Service.extend({ + store: service('store'), + findAllByDatacenter: function(dc) { + return get(this, 'store').query('coordinate', { dc: dc }); + }, +}); diff --git a/ui-v2/app/services/dc.js b/ui-v2/app/services/dc.js new file mode 100644 index 000000000..43e96c99b --- /dev/null +++ b/ui-v2/app/services/dc.js @@ -0,0 +1,44 @@ +import Service, { inject as service } from '@ember/service'; +import { get } from '@ember/object'; +import Error from '@ember/error'; + +export default Service.extend({ + store: service('store'), + settings: service('settings'), + findBySlug: function(name, items) { + if (name != null) { + const item = items.findBy('Name', name); + if (item) { + return get(this, 'settings') + .persist({ dc: get(item, 'Name') }) + .then(function() { + // TODO: create a model + return { Name: get(item, 'Name') }; + }); + } + } + const e = new Error(); + e.status = '404'; + e.detail = 'Page not found'; + return Promise.reject({ errors: [e] }); + }, + getActive: function(name, items) { + const settings = get(this, 'settings'); + return Promise.all([name || settings.findBySlug('dc'), items || this.findAll()]).then( + ([name, items]) => { + return this.findBySlug(name, items).catch(function() { + const item = get(items, 'firstObject'); + settings.persist({ dc: get(item, 'Name') }); + return item; + }); + } + ); + }, + findAll: function() { + return get(this, 'store') + .findAll('dc') + .then(function(items) { + return items.sortBy('Name'); + }); + }, +}); diff --git a/ui-v2/app/services/error.js b/ui-v2/app/services/error.js new file mode 100644 index 000000000..7126e08c7 --- /dev/null +++ b/ui-v2/app/services/error.js @@ -0,0 +1,8 @@ +import Service from '@ember/service'; + +import error from 'consul-ui/utils/error'; +export default Service.extend({ + execute: function(obj) { + return error(obj); + }, +}); diff --git a/ui-v2/app/services/feedback.js b/ui-v2/app/services/feedback.js new file mode 100644 index 000000000..09bfaf51d --- /dev/null +++ b/ui-v2/app/services/feedback.js @@ -0,0 +1,35 @@ +import Service from '@ember/service'; +import { inject as service } from '@ember/service'; +import { get } from '@ember/object'; + +export default Service.extend({ + // TODO: Why can't I name this `notify`? + flashMessages: service('flashMessages'), + execute: function(handle, success, error) { + const controller = this.controller; + controller.set('isLoading', true); + return handle() + .then(() => { + get(this, 'flashMessages').add({ + type: 'success', + message: success, + }); + }) + .catch(e => { + if (e.name === 'TransitionAborted') { + get(this, 'flashMessages').add({ + type: 'success', + message: success, + }); + } else { + get(this, 'flashMessages').add({ + type: 'error', + message: error, + }); + } + }) + .finally(function() { + controller.set('isLoading', false); + }); + }, +}); diff --git a/ui-v2/app/services/kv.js b/ui-v2/app/services/kv.js new file mode 100644 index 000000000..ef31e1bc8 --- /dev/null +++ b/ui-v2/app/services/kv.js @@ -0,0 +1,86 @@ +import Service, { inject as service } from '@ember/service'; +import { typeOf } from '@ember/utils'; +import { Promise } from 'rsvp'; +import isFolder from 'consul-ui/utils/isFolder'; +import { get, set } from '@ember/object'; +import { PRIMARY_KEY } from 'consul-ui/models/kv'; + +export default Service.extend({ + store: service('store'), + // this one gives you the full object so key,values and meta + findBySlug: function(key, dc) { + if (isFolder(key)) { + const id = JSON.stringify([dc, key]); + let item = get(this, 'store').peekRecord('kv', id); + if (!item) { + item = this.create(); + set(item, 'Key', key); + set(item, 'Datacenter', dc); + } + return Promise.resolve(item); + } + return get(this, 'store') + .queryRecord('kv', { + id: key, + dc: dc, + }) + .then(function(item) { + set(item, 'Datacenter', dc); + return item; + }); + }, + // this one only gives you keys + // https://www.consul.io/api/kv.html + findAllBySlug: function(key, dc) { + if (key === '/') { + key = ''; + } + return this.get('store') + .query('kv', { + id: key, + dc: dc, + separator: '/', + }) + .then(function(items) { + return items + .filter(function(item) { + return key !== get(item, 'Key'); + }) + .map(function(item, i, arr) { + set(item, 'Datacenter', dc); + return item; + }); + }) + .catch(e => { + if (e.errors && e.errors[0] && e.errors[0].status == '404') { + const id = JSON.stringify([dc, key]); + const record = get(this, 'store').peekRecord('kv', id); + if (record) { + record.destroyRecord(); + } + } + throw e; + }); + }, + create: function() { + return get(this, 'store').createRecord('kv'); + }, + persist: function(item) { + return item.save(); + }, + remove: function(obj) { + let item = obj; + if (typeof obj.destroyRecord === 'undefined') { + item = obj.get('data'); + } + if (typeOf(item) === 'object') { + item = get(this, 'store').peekRecord('kv', item[PRIMARY_KEY]); + } + return item.destroyRecord().then(item => { + return get(this, 'store').unloadRecord(item); + }); + }, + invalidate: function() { + return get(this, 'store').unloadAll('kv'); + }, +}); diff --git a/ui-v2/app/services/nodes.js b/ui-v2/app/services/nodes.js new file mode 100644 index 000000000..e7ed82fac --- /dev/null +++ b/ui-v2/app/services/nodes.js @@ -0,0 +1,24 @@ +import Service, { inject as service } from '@ember/service'; +import { get } from '@ember/object'; +export default Service.extend({ + store: service('store'), + coordinates: service('coordinates'), + findAllByDatacenter: function(dc) { + return get(this, 'store').query('node', { dc: dc }); + }, + findBySlug: function(slug, dc) { + return get(this, 'store') + .queryRecord('node', { + id: slug, + dc: dc, + }) + .then(node => { + return get(this, 'coordinates') + .findAllByDatacenter(dc) + .then(function(res) { + node.Coordinates = res; + return node; + }); + }); + }, +}); diff --git a/ui-v2/app/services/services.js b/ui-v2/app/services/services.js new file mode 100644 index 000000000..62cf2fa4d --- /dev/null +++ b/ui-v2/app/services/services.js @@ -0,0 +1,28 @@ +import Service, { inject as service } from '@ember/service'; +import { get, set } from '@ember/object'; + +export default Service.extend({ + store: service('store'), + findAllByDatacenter: function(dc) { + return get(this, 'store') + .query('service', { dc: dc }) + .then(function(items) { + return items.forEach(function(item) { + set(item, 'Datacenter', dc); + }); + }); + }, + findBySlug: function(slug, dc) { + return get(this, 'store') + .queryRecord('service', { + id: slug, + dc: dc, + }) + .then(function(item) { + const nodes = get(item, 'Nodes'); + const service = get(nodes, 'firstObject'); + set(service, 'Nodes', nodes); + return service; + }); + }, +}); diff --git a/ui-v2/app/services/session.js b/ui-v2/app/services/session.js new file mode 100644 index 000000000..28e872da2 --- /dev/null +++ b/ui-v2/app/services/session.js @@ -0,0 +1,35 @@ +import Service, { inject as service } from '@ember/service'; +import { get, set } from '@ember/object'; + +export default Service.extend({ + store: service('store'), + findByNode: function(node, dc) { + return get(this, 'store') + .query('session', { + id: node, + dc: dc, + }) + .then(function(items) { + return items.map(function(item, i, arr) { + set(item, 'Datacenter', dc); + return item; + }); + }); + }, + findByKey: function(slug, dc) { + return get(this, 'store') + .queryRecord('session', { + id: slug, + dc: dc, + }) + .then(function(item) { + set(item, 'Datacenter', dc); + return item; + }); + }, + remove: function(item) { + return item.destroyRecord().then(item => { + return get(this, 'store').unloadRecord(item); + }); + }, +}); diff --git a/ui-v2/app/services/settings.js b/ui-v2/app/services/settings.js new file mode 100644 index 000000000..bc7c6456d --- /dev/null +++ b/ui-v2/app/services/settings.js @@ -0,0 +1,30 @@ +import Service from '@ember/service'; +import { Promise } from 'rsvp'; +import { get } from '@ember/object'; + +export default Service.extend({ + // TODO: change name + storage: window.localStorage, + findHeaders: function() { + // TODO: if possible this should be a promise + return { + 'X-Consul-Token': get(this, 'storage').getItem('token'), + }; + }, + findAll: function(key) { + return Promise.resolve({ token: get(this, 'storage').getItem('token') }); + }, + findBySlug: function(slug) { + return Promise.resolve(get(this, 'storage').getItem(slug)); + }, + persist: function(obj) { + const storage = get(this, 'storage'); + Object.keys(obj).forEach((item, i) => { + storage.setItem(item, obj[item]); + }); + return Promise.resolve(obj); + }, + delete: function(obj) { + return Promise.resolve(get(this, 'storage').removeItem('token')); + }, +}); diff --git a/ui-v2/app/services/store.js b/ui-v2/app/services/store.js new file mode 100644 index 000000000..b5be6b849 --- /dev/null +++ b/ui-v2/app/services/store.js @@ -0,0 +1,19 @@ +import Store from 'ember-data/store'; + +export default Store.extend({ + // cloning immediately refreshes the view + clone: function(modelName, id) { + // TODO: no normalization, type it properly for the moment + const adapter = this.adapterFor(modelName); + // passing empty options gives me a snapshot - ? + const options = {}; + // _internalModel starts with _ but isn't marked as private ? + return adapter.clone( + this, + { modelName: modelName }, + id, + this._internalModelForId(modelName, id).createSnapshot(options) + ); + // TODO: See https://github.com/emberjs/data/blob/7b8019818526a17ee72747bd3c0041354e58371a/addon/-private/system/promise-proxies.js#L68 + }, +}); diff --git a/ui-v2/app/services/timeout.js b/ui-v2/app/services/timeout.js new file mode 100644 index 000000000..833bf1b49 --- /dev/null +++ b/ui-v2/app/services/timeout.js @@ -0,0 +1,9 @@ +import Service from '@ember/service'; +import promisedTimeoutFactory from 'consul-ui/utils/promisedTimeout'; +import { Promise } from 'rsvp'; +const promisedTimeout = promisedTimeoutFactory(Promise); +export default Service.extend({ + execute: function(milliseconds, cb) { + return promisedTimeout(milliseconds, cb); + }, +}); diff --git a/ui-v2/app/styles/app.scss b/ui-v2/app/styles/app.scss new file mode 100644 index 000000000..cebc321f1 --- /dev/null +++ b/ui-v2/app/styles/app.scss @@ -0,0 +1,61 @@ +@charset 'utf-8'; + +@import 'variables/index'; + +@import 'ember-bulma-css/utilities/initial-variables.sass'; +@import 'ember-bulma-css/utilities/functions.sass'; +@import 'ember-bulma-css/utilities/derived-variables.sass'; +@import 'ember-bulma-css/utilities/mixins.sass'; +@import 'ember-bulma-css/utilities/controls.sass'; +@import 'ember-bulma-css/base/minireset.sass'; +@import 'ember-bulma-css/base/generic.sass'; + +%user-select-none { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +@import 'core/reset'; +@import 'core/typography'; +@import 'core/layout'; + +@import 'components/loader'; +@import 'components/main-header'; +@import 'components/footer'; +@import 'components/breadcrumbs'; +@import 'components/button'; +@import 'components/tabs'; +@import 'components/healthcheck-status'; +@import 'components/healthchecked-resource'; +@import 'components/expanded-single-select'; +@import 'components/app-view'; +@import 'components/tabular-collection'; +@import 'components/list-collection'; +@import 'components/table'; +@import 'components/freetext-filter'; +@import 'components/tomography-graph'; +@import 'components/action-group'; +@import 'components/flash-message'; +@import 'components/code-editor'; +@import 'components/confirmation-dialog'; +@import 'components/feedback-dialog'; +@import 'components/notice'; + +@import 'routes/dc/service/index'; +@import 'routes/dc/kv/index'; + +main a { + color: $text; +} +main a[rel*='help'] { + @extend %with-info; +} +main label a[rel*='help'] { + color: $text-note; +} +[role='tabpanel'] > p:only-child [rel*='help']::after { + content: none; +} diff --git a/ui-v2/app/styles/components/action-group.scss b/ui-v2/app/styles/components/action-group.scss new file mode 100644 index 000000000..51685c970 --- /dev/null +++ b/ui-v2/app/styles/components/action-group.scss @@ -0,0 +1,105 @@ +.action-group { + @extend %action-group; +} +%action-group label { + border-radius: $radius-small; + cursor: pointer; +} + +%action-group input[type='radio']:checked + label:first-of-type, +%action-group label:first-of-type:hover { + background-color: $gray; +} +%action-group label span { + display: none; +} +%action-group label::after, +%action-group label::before, +%action-group::before { + @extend %with-dot; +} +%action-group::before { + margin-left: -1px; +} +%action-group label::after { + margin-left: 5px; +} +%action-group label::before { + margin-left: -7px; +} +%action-group ul { + border: 1px solid; + border-radius: $radius-small; + box-shadow: 0 2px 7px rgba(0, 0, 0, 0.21); +} +%action-group ul::before { + border-top: 1px solid; + border-left: 1px solid; +} +%action-group ul, +%action-group ul::before { + border-color: $blue; +} +%action-group li a:hover { + background-color: $blue; + color: $white; +} +%action-group ul, +%action-group ul::before { + background-color: $white; +} +%action-group { +} +%action-group { + width: 30px; + height: 30px; + position: absolute; + top: 8px; + right: 15px; +} +%action-group label { + display: block; + height: 100%; +} +%action-group label:last-of-type { + position: absolute; + width: 100%; + z-index: -1; + top: 0; +} +%action-group ul { + position: absolute; + right: -10px; + top: 35px; + padding: 1px; +} +%action-group ul::before { + position: absolute; + right: 18px; + top: -6px; + content: ''; + display: block; + width: 10px; + height: 10px; + transform: rotate(45deg); +} +%action-group li { + position: relative; + z-index: 1; +} +%action-group li a { + width: 170px; + padding: 10px 10px; +} +%action-group input[type='radio'], +%action-group input[type='radio'] ~ ul, +%action-group input[type='radio'] ~ .with-confirmation > ul { + display: none; +} +%action-group input[type='radio']:checked ~ ul, +%action-group input[type='radio']:checked ~ .with-confirmation > ul { + display: block; +} +%action-group input[type='radio']:checked ~ label:last-of-type { + z-index: 1; +} diff --git a/ui-v2/app/styles/components/app-view.scss b/ui-v2/app/styles/components/app-view.scss new file mode 100644 index 000000000..265b981af --- /dev/null +++ b/ui-v2/app/styles/components/app-view.scss @@ -0,0 +1,98 @@ +@import './filter-bar'; +@import './form-elements'; +main { + @extend %app-view; +} +%app-view > div > div { + @extend %app-content; +} +%app-view header form { + @extend %filter-bar; +} +%app-view h2, +%app-view header > div:last-of-type { + border-bottom: 1px solid; +} +%app-view header > div:last-of-type, +%app-view h2 { + border-color: $keyline-light; +} +%app-content div > dl > dd { + color: $text-light; +} +%app-view { + position: relative; + margin-top: 50px; +} +%app-view header + div > *:first-child { + margin-top: 1.25em; +} +%app-view h2 { + padding-bottom: 0.2em; + margin-bottom: 1.1em; +} +%app-view header > div:last-of-type > div:first-child { + flex-grow: 1; +} +%app-view header .actions { + float: right; + display: flex; + align-items: flex-start; +} +%app-view header .actions > *:not(:last-child) { + margin-right: 7px; +} +%app-view header .actions a, +%app-view header .actions button { + @extend %button; + padding: calc(0.375em - 1px) calc(2.2em - 1px); + height: 2.25em; +} + +// content +%app-content > p:only-child, +[role='tabpanel'] > p:only-child, +%app-view > div.disabled > div, +.template-error > div { + background-color: $lightest-gray; + color: $text-blue; + font-size: $size-8; + margin-top: 0; + padding: 50px; + text-align: center; +} +[role='tabpanel'] > *:first-child { + margin-top: 1.25em; +} +%filter-bar, +%tab-section, +%app-view > div.disabled > div { + margin-top: 0 !important; +} +%app-content .type-text, +%app-content .type-toggle { + @extend %form-element; +} +%app-content [role='radiogroup'] { + @extend %radio-group; +} +%app-content form:not(:last-child) { + margin-bottom: 2.2em; +} +%app-content div > dl { + position: relative; +} +%app-content div > dt { + font-weight: bold; +} +%app-content div > dl > dt { + width: 120px; + position: absolute; +} +%app-content div > dl > dd { + padding-left: 120px; +} +%app-content div > dl > * { + min-height: 1em; + margin-bottom: 0.3em; +} diff --git a/ui-v2/app/styles/components/breadcrumbs.scss b/ui-v2/app/styles/components/breadcrumbs.scss new file mode 100644 index 000000000..071467acf --- /dev/null +++ b/ui-v2/app/styles/components/breadcrumbs.scss @@ -0,0 +1,18 @@ +main header nav:first-child { + @extend %breadcrumbs; +} +%breadcrumbs a { + @extend %with-chevron; + color: $blue; +} +%breadcrumbs { + position: absolute; + top: -35px; // %app-view:margin-top - 15px; +} +%breadcrumbs ol { + list-style-type: none; + display: flex; +} +%breadcrumbs li { + margin-right: 5px; +} diff --git a/ui-v2/app/styles/components/button.scss b/ui-v2/app/styles/components/button.scss new file mode 100644 index 000000000..d6d47bdbd --- /dev/null +++ b/ui-v2/app/styles/components/button.scss @@ -0,0 +1,120 @@ +button, +a[rel='back'], +html.template-error div > a { + @extend %button; +} +%button.type-delete { + @extend %dangerous-button; +} +// no % all copy buttons WILL be buttons +button.copy-btn { + @extend %copy-button; +} +main p a, +main dd a { + @extend %link; +} +%button[type='submit'], +%button.type-create { + @extend %primary-button; +} +%link:hover, +%link:focus { + text-decoration: underline; +} +%button { + @extend %user-select-none; + white-space: nowrap; + border: 1px solid; + border-radius: $radius-small; + box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.12); + cursor: pointer; +} +%primary-button { + border: 0; +} +%copy-button { + border: 0 !important; + box-shadow: none !important; +} +%copy-button { + @extend %with-clipboard; +} +%button:not([type='submit']), +a[rel='back'] { + border-color: currentColor; +} +%link, +%link:hover, +%link:focus, +%link:active { + color: $blue; +} +%button { + color: $gray-500; +} +%button:hover, +%button:focus { + color: $gray-700; +} +%button:active { + color: $gray-700; +} +%copy-button { + color: $blue !important; + background-color: $transparent; +} +%copy-button:hover, +%copy-button:focus { + background-color: $gray-050; +} +%copy-button:active { + background-color: $gray-100; +} +%primary-button { + background-color: $blue-500; + color: $white !important; +} +%primary-button:hover, +%primary-button:focus { + background-color: $blue-700; +} +%primary-button:disabled { + color: rgba($white, 0.5); + background-color: rgba($blue-700, 0.5); + box-shadow: none; +} +%primary-button:active { + background-color: $blue-900; +} +%dangerous-button { + color: $dangerous-red; +} +%dangerous-button:hover, +%dangerous-button:focus { + background-color: $red-500; + color: $white; + border-color: $red-500; +} +%dangerous-button:disabled { + color: rgba($red-500, 0.5); + border-color: rgba($red-500, 0.5); + background-color: $white; + box-shadow: none; +} +%dangerous-button:active { + background-color: $red-700; + color: $white; + border-color: $red-700; +} +%button { + display: inline-flex; + text-align: center; + justify-content: center; + align-items: center; + padding: calc(0.375em - 1px) calc(2.2em - 1px); + height: 2.5em; +} +%button:not(:last-child) { + margin-right: 7px; +} diff --git a/ui-v2/app/styles/components/code-editor.scss b/ui-v2/app/styles/components/code-editor.scss new file mode 100644 index 000000000..4fecca03f --- /dev/null +++ b/ui-v2/app/styles/components/code-editor.scss @@ -0,0 +1,175 @@ +$syntax-light-grey: #dde3e7; +$syntax-light-gray: #a4a4a4; +$syntax-light-grey-blue: #6c7b81; +$syntax-dark-grey: #788290; +$syntax-faded-gray: #eaeaea; +// Product colors +$syntax-atlas: #127eff; +$syntax-vagrant: #2f88f7; +$syntax-consul: #69499a; +$syntax-terraform: #822ff7; +$syntax-serf: #dd4e58; +$syntax-packer: #1ddba3; + +// Our colors +$syntax-gray: lighten($black, 89%); +$syntax-red: #ff3d3d; +$syntax-green: #39b54a; +$syntax-dark-gray: #535f73; + +$syntax-gutter-grey: #2a2f36; +$syntax-yellow: $yellow; + +.CodeMirror-lint-tooltip { + background-color: #f9f9fa; + border: 1px solid $syntax-light-gray; + border-radius: 0; + color: lighten($black, 13%); + font-family: $family-monospace; + font-size: 13px; + padding: 7px 8px 9px; +} + +.cm-s-hashi { + &.CodeMirror { + width: 100%; + background-color: $black !important; + color: #cfd2d1 !important; + border: none; + font-family: $family-monospace; + -webkit-font-smoothing: auto; + line-height: 1.4; + } + + .CodeMirror-gutters { + color: $syntax-dark-grey; + background-color: $syntax-gutter-grey; + border: none; + } + + .CodeMirror-cursor { + border-left: solid thin #f8f8f0; + } + + .CodeMirror-linenumber { + color: #6d8a88; + } + + &.CodeMirror-focused div.CodeMirror-selected { + background: rgba(255, 255, 255, 0.1); + } + + .CodeMirror-line::selection, + .CodeMirror-line > span::selection, + .CodeMirror-line > span > span::selection { + background: rgba(255, 255, 255, 0.1); + } + + .CodeMirror-line::-moz-selection, + .CodeMirror-line > span::-moz-selection, + .CodeMirror-line > span > span::-moz-selection { + background: rgba(255, 255, 255, 0.1); + } + + span.cm-comment { + color: $syntax-light-grey; + } + + span.cm-string, + span.cm-string-2 { + color: $syntax-packer; + } + + span.cm-number { + color: $syntax-serf; + } + + span.cm-variable { + color: lighten($syntax-consul, 20%); + } + + span.cm-variable-2 { + color: lighten($syntax-consul, 20%); + } + + span.cm-def { + color: $syntax-packer; + } + + span.cm-operator { + color: $syntax-gray; + } + span.cm-keyword { + color: $syntax-yellow; + } + + span.cm-atom { + color: $syntax-serf; + } + + span.cm-meta { + color: $syntax-packer; + } + + span.cm-tag { + color: $syntax-packer; + } + + span.cm-attribute { + color: #9fca56; + } + + span.cm-qualifier { + color: #9fca56; + } + + span.cm-property { + color: lighten($syntax-consul, 20%); + } + + span.cm-variable-3 { + color: #9fca56; + } + + span.cm-builtin { + color: #9fca56; + } + + .CodeMirror-activeline-background { + background: #101213; + } + + .CodeMirror-matchingbracket { + text-decoration: underline; + color: white !important; + } +} + +.readonly-codemirror { + .CodeMirror-cursors { + display: none; + } + + .cm-s-hashi { + span { + color: $syntax-light-grey; + } + + span.cm-string, + span.cm-string-2 { + color: $syntax-faded-gray; + } + + span.cm-number { + color: lighten($syntax-dark-gray, 30%); + } + + span.cm-property { + color: white; + } + + span.cm-variable-2 { + color: $syntax-light-grey-blue; + } + } +} diff --git a/ui-v2/app/styles/components/confirmation-dialog.scss b/ui-v2/app/styles/components/confirmation-dialog.scss new file mode 100644 index 000000000..0e4e1dec8 --- /dev/null +++ b/ui-v2/app/styles/components/confirmation-dialog.scss @@ -0,0 +1,25 @@ +div.with-confirmation { + @extend %confirmation-dialog, %confirmation-dialog-inline; +} +table div.with-confirmation.confirming { + background-color: $white; +} +%confirmation-dialog-inline p { + color: $text-note; +} +%confirmation-dialog { + float: right; +} +%confirmation-dialog-inline p { + margin-right: 1em; + margin-bottom: 0; +} +%confirmation-dialog-inline { + display: flex; + align-items: center; + line-height: 1; +} +table div.with-confirmation.confirming { + position: absolute; + right: 0; +} diff --git a/ui-v2/app/styles/components/expanded-single-select.scss b/ui-v2/app/styles/components/expanded-single-select.scss new file mode 100644 index 000000000..b0f36de02 --- /dev/null +++ b/ui-v2/app/styles/components/expanded-single-select.scss @@ -0,0 +1,32 @@ +%expanded-single-select label { + cursor: pointer; +} +%expanded-single-select input[type='radio']:checked + *, +%expanded-single-select input[type='radio']:hover + *, +%expanded-single-select input[type='radio']:focus + * { + background-color: $white; + box-shadow: 0 4px 8px 0 rgba($black, 0.05); +} +%expanded-single-select, +%expanded-single-select label { + height: 100%; +} +@media #{$--horizontal-selects} { + %expanded-single-select { + display: flex; + } + %expanded-single-select label { + flex-grow: 1; + } +} +%expanded-single-select label { + display: block; +} +%expanded-single-select label span { + display: block; + height: 100%; + padding: 5px 14px; +} +%expanded-single-select input[type='radio'] { + display: none; +} diff --git a/ui-v2/app/styles/components/feedback-dialog.scss b/ui-v2/app/styles/components/feedback-dialog.scss new file mode 100644 index 000000000..858f76ee2 --- /dev/null +++ b/ui-v2/app/styles/components/feedback-dialog.scss @@ -0,0 +1,39 @@ +main .with-feedback { + @extend %feedback-dialog-inline; +} +%feedback-dialog-inline p, +%feedback-dialog-inline p::after { + color: $white; + background-color: $carbon; +} +// %feedback-dialog-inline p { +// animation-name: feedback-dialog-out; +// animation-fill-mode: forwards; +// } +// @keyframes feedback-dialog-out { +// 90% { opacity: 1; } +// 100% { opacity: 0; } +// } +%feedback-dialog-inline { + position: relative; + display: flex; + justify-content: center; +} +%feedback-dialog-inline p::after { + content: ''; + display: block; + position: absolute; + left: 50%; + margin-left: -5px; + bottom: -5px; + width: 10px; + height: 10px; + transform: rotate(45deg); +} +%feedback-dialog-inline p { + padding: 10px; + position: absolute; + bottom: 100%; + text-align: center; + white-space: nowrap; //temp +} diff --git a/ui-v2/app/styles/components/filter-bar.scss b/ui-v2/app/styles/components/filter-bar.scss new file mode 100644 index 000000000..96365857b --- /dev/null +++ b/ui-v2/app/styles/components/filter-bar.scss @@ -0,0 +1,96 @@ +@import './expanded-single-select'; +@import './icons'; +.filter-bar { + @extend %filter-bar; +} + +// decoration/color +%filter-bar > * { + border: 1px solid; + border-radius: $radius-small; +} +// TODO: Move this elsewhere +@media #{$--horizontal-selects} { + %filter-bar label:not(:last-child) { + border-right: 1px solid; + } +} +@media #{$--lt-horizontal-selects} { + %filter-bar label:not(:last-child) { + border-bottom: 1px solid; + } +} +%filter-bar, +%filter-bar > * { + background-color: $lightest-gray; +} +%filter-bar > *, +%filter-bar label:not(:last-child) { + border-color: $border-blue !important; +} + +// layout +%filter-bar { + padding: 14px; + display: block; +} +@media #{$--horizontal-filters} { + %filter-bar { + display: flex; + flex-direction: row-reverse; + justify-content: space-between; + } + %filter-bar > *:first-child { + margin-left: 12px; + } + %filter-bar fieldset { + width: auto; + } +} +@media #{$--lt-horizontal-filters} { + %filter-bar > *:first-child { + margin-bottom: 12px; + } +} +%filter-bar [role='radiogroup'] { + @extend %expanded-single-select; +} +%filter-bar [role='radiogroup'] label { + color: $text-note; + cursor: pointer; + line-height: 1.7; + white-space: nowrap; +} +// icons +%filter-bar [role='radiogroup'] label span::before { + left: 11px; + top: 50%; + margin-top: -0.5em; +} +%filter-bar .value-passing span, +%filter-bar .value-warning span, +%filter-bar .value-critical span { + position: relative; + text-indent: 23px; +} +%filter-bar .value-passing span { + @extend %with-passing; +} +%filter-bar .value-warning span { + @extend %with-warning; +} +%filter-bar .value-warning span::before { + @extend %with-warning-icon-grey; +} +%filter-bar .value-critical span { + @extend %with-critical; +} +%filter-bar .value-warning span::after { + left: 0.7em; + top: 50%; + margin-top: -8px; + border-color: $lightest-gray; +} +%filter-bar .value-warning input:checked + span::after { + border-color: $white; +} diff --git a/ui-v2/app/styles/components/flash-message.scss b/ui-v2/app/styles/components/flash-message.scss new file mode 100644 index 000000000..2bbcfea58 --- /dev/null +++ b/ui-v2/app/styles/components/flash-message.scss @@ -0,0 +1,49 @@ +.flash-message { + @extend %flash-message; +} +%flash-message p.success strong { + @extend %with-passing; +} +%flash-message p.success { + border-color: $green; + background-color: rgba($green, 0.1); +} +%flash-message p { + color: $green; +} +%flash-message p.error strong { + @extend %with-critical; +} +%flash-message p.error { + border-color: $red; + background-color: rgba($red, 0.1); +} +%flash-message p.error { + color: $red; +} + +%flash-message p { + border-radius: $radius-small; + border: 1px solid; +} +%flash-message { + display: flex; + position: relative; + justify-content: center; +} +%flash-message p { + bottom: -10px; + position: absolute; + padding: 9px 15px; +} +%flash-message p strong { + color: inherit; +} +%flash-message p strong { + position: relative; + display: inline-block; + padding-left: 20px; +} +%flash-message p strong::before { + left: 0; +} diff --git a/ui-v2/app/styles/components/footer.scss b/ui-v2/app/styles/components/footer.scss new file mode 100644 index 000000000..d81bd65ff --- /dev/null +++ b/ui-v2/app/styles/components/footer.scss @@ -0,0 +1,31 @@ +#wrapper > footer { + @extend %footer; +} +%footer { + border-top: 1px solid; +} +%footer { + border-color: $keyline-darker; + background-color: $white; +} +%footer { + max-width: 1150px; +} +%footer > * { + font-size: inherit; + color: $text-note; +} +%footer > a:first-child { + @extend %with-hashicorp; +} +%footer { + display: flex; + justify-content: center; + position: relative; + z-index: 1; + padding: 25px; +} +%footer > * { + display: block; + padding: 11px; +} diff --git a/ui-v2/app/styles/components/form-elements.scss b/ui-v2/app/styles/components/form-elements.scss new file mode 100644 index 000000000..683678c07 --- /dev/null +++ b/ui-v2/app/styles/components/form-elements.scss @@ -0,0 +1,163 @@ +.type-toggle { + @extend %toggle; + float: right; + margin-bottom: 0 !important; +} +%form-element > span { + display: block; + margin-bottom: 0.5em; +} +[type='radio'] { + cursor: pointer; +} +%form-element textarea { + display: block; + max-width: 100%; + min-width: 100%; + padding: 0.625em; + resize: vertical; +} +%form-element [type='text'], +%form-element [type='password'] { + max-width: 100%; + width: 100%; + display: inline-flex; + justify-content: flex-start; + height: 2.25em; + line-height: 1.5; +} +%form-element [type='text'], +%form-element [type='password'] { + border: 1px solid; + -moz-appearance: none; + -webkit-appearance: none; +} +%form-element [type='text'], +%form-element [type='password'] { + box-shadow: none; + border-radius: $radius-small; +} +.has-error > input { + border: 1px solid; +} +%form-element > span { + color: $text-gray; +} +%form-element [type='text'], +%form-element [type='password'] { + color: $user-text-gray; +} +%form-element [type='text'], +%form-element [type='password'], +%form-element textarea { + background-color: $gray-050; +} +%form-element [type='text'], +%form-element [type='password'], +%form-element textarea { + border-color: $border-mid; +} +%form-element [type='text']:hover, +%form-element [type='password']:hover, +%form-element textarea:hover { + border-color: $blue; +} +%form-element [type='text']:focus, +%form-element [type='password']:focus, +%form-element textarea:focus { + outline: none; + box-shadow: none; + border-color: $border-dark; +} +.has-error > input { + border-color: $dangerous-red !important; +} +%toggle input:checked + span::before { + background-color: $green; +} +%toggle span { + color: $text; +} +%form-element > em { + color: $text-note; +} +%toggle span::after { + border-radius: 100%; + background-color: $white; +} +%toggle span::before { + background-color: $border-blue; + border-radius: 7px; +} +%form-element, +%form-element > em { + display: block; +} +%form-element > em { + margin-left: 8px; + margin-top: 10px; +} +%form-element, +%radio-group { + margin-bottom: 1.55em; +} +%form-element > span { + margin-bottom: 0.4em !important; +} +%radio-group { + overflow: hidden; + padding-left: 1px; +} +%radio-group label { + @extend %form-element; + float: left; +} +%radio-group label:not(:last-child) { + margin-right: 25px; +} +%radio-group label > span { + margin-left: 1em; + margin-top: 0.2em; + float: right; +} +%radio-group label, +%radio-group label > span { + margin-bottom: 0 !important; +} +%form-element [type='text'], +%form-element [type='password'] { + padding: 17px 15px; +} +%toggle { + position: relative; +} +%toggle input { + display: none; +} +%toggle span { + display: inline-block; + padding-left: 25px; +} +%toggle span::before, +%toggle span::after { + position: absolute; + display: block; + content: ''; + top: 50%; + cursor: pointer; +} +%toggle span::before { + left: 0px; + width: 20px; + height: 12px; + margin-top: -8px; +} +%toggle span::after { + left: 2px; + margin-top: -6px; + width: 8px; + height: 8px; +} +%toggle input:checked + span::after { + left: 10px; +} diff --git a/ui-v2/app/styles/components/freetext-filter.scss b/ui-v2/app/styles/components/freetext-filter.scss new file mode 100644 index 000000000..28164c48b --- /dev/null +++ b/ui-v2/app/styles/components/freetext-filter.scss @@ -0,0 +1,43 @@ +@import './icons'; +.freetext-filter { + @extend %freetext-filter; +} +%freetext-filter { + cursor: pointer; +} +%freetext-filter input { + -webkit-appearance: none; + border: none; + border-right: 1px solid; +} +%freetext-filter span { + @extend %with-magnifier; + visibility: hidden; +} +%freetext-filter { + background-color: $white; +} +%freetext-filter span { + color: $border-blue; +} +%freetext-filter input { + border-color: 1px $border-blue; +} +%freetext-filter input, +%freetext-filter input::placeholder { + color: $text-note; +} +%freetext-filter label { + display: block; + height: 33px; +} +%freetext-filter input { + width: calc(100% - 2.7em); + height: 100%; + padding: 8px 10px; +} +%freetext-filter span { + width: 2.7em; + height: 100%; + float: right; +} diff --git a/ui-v2/app/styles/components/header-nav.scss b/ui-v2/app/styles/components/header-nav.scss new file mode 100644 index 000000000..dd1a4775e --- /dev/null +++ b/ui-v2/app/styles/components/header-nav.scss @@ -0,0 +1,180 @@ +@import './icons'; +%header-nav-toggle-button span { + visibility: hidden; +} +%header-nav-toggle-button::before, +%header-nav-toggle-button::after, +%header-nav-toggle-button span::before { + @extend %with-dot; + right: 10px; + left: auto !important; + top: 23px !important; +} +%header-nav-toggle-button::before { + margin-top: -6px; +} +%header-nav-toggle-button::after { + margin-top: 6px; +} +%header-nav-toggle { + display: none; +} +%header-nav-toggle-button { + top: 0; + position: absolute; +} +@media #{$--lt-horizontal-nav} { + %header-nav-panel { + background-color: $magenta-600; + } + %header-nav-panel label span { + visibility: visible !important; + display: inline-block; + padding-right: 47px; + padding-top: 13px; + } + %header-nav-panel { + transition-timing-function: cubic-bezier(0.1, 0.1, 0.25, 0.9); + transition-duration: 0.2s; + transition-property: width right; + } + %header-nav-panel { + box-sizing: border-box; + padding: 15px 35px; + z-index: 10000; + text-align: right; + } + %header-nav-toggle-button { + position: absolute; + right: 0px; + width: 100px; + height: 40px; + z-index: 2; + cursor: pointer; + } + %header-nav-panel { + width: 0%; + overflow: auto; + height: 100%; + position: absolute; + top: 0px; + z-index: 3; + padding: 0; + padding-top: 15px; + right: -100%; + } + %header-nav-toggle:checked ~ div { + width: 250px; + right: 0; + padding: 15px 35px; + } + %header-nav-toggle:checked + label { + background-color: rgba($black, 0.4); + width: 100vw; + height: 100%; + left: 0; + top: 0; + } + %primary-nav { + margin-top: 45px; + } +} +@media #{$--horizontal-nav} { + %header-nav-panel { + display: flex; + } + %header-nav-panel { + justify-content: space-between; + flex-grow: 1; + } + %header-nav-toggle-button { + display: none; + } +} +%primary-nav ul ul { + @extend %header-drop-nav; +} +%primary-nav, +%secondary-nav { + @extend %header-nav; +} +%header-drop-nav a:hover, +%header-drop-nav a:focus, +%header-drop-nav a:active, +%header-drop-nav a.selected { + background-color: $lightest-gray; +} +%header-nav a, +%header-nav-toggle-button { + color: $magenta-50; +} +%header-nav a { + display: block; + padding: 3px 12px; + border-radius: $radius; + white-space: nowrap; +} +@media #{$--lt-horizontal-nav} { + %secondary-nav li:first-child { + display: none; + } + %header-drop-nav { + width: 180px; + } + %header-nav > ul > li > a { + padding-top: 15px; + padding-bottom: 15px; + display: block; + } + %primary-nav > ul > li.is-active > a { + font-weight: $weight-bold; + } +} +%header-nav > ul > li > a:hover, +%header-nav > ul > li > a:focus, +%header-nav > ul > li > a:active, +%header-nav > ul > li.is-active > a { + color: $white; +} +@media #{$--horizontal-nav} { + %header-nav > ul > li:not(:first-child).is-active > a { + background-color: $magenta-800; + } + %header-nav ul { + display: flex; + } + %header-drop-nav { + min-width: 266px; + } +} +%header-drop-nav { + border: 1px solid $border-blue; + background-color: $white; + box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.21); +} +%header-drop-nav a { + color: $text !important; +} +%header-drop-nav .is-active a::after { + @extend %with-inverted-tick; + position: absolute; + top: 50%; + margin-top: -8px; + right: 10px; +} +%header-drop-nav li { + border-bottom: 1px solid; +} +%header-drop-nav li { + border-color: $border-blue; +} +%header-drop-nav { + display: block; + position: absolute; + z-index: 100; +} +%header-drop-nav a { + text-align: left; + position: relative; + padding: 12px 25px; +} diff --git a/ui-v2/app/styles/components/healthcheck-status.scss b/ui-v2/app/styles/components/healthcheck-status.scss new file mode 100644 index 000000000..55b34acf5 --- /dev/null +++ b/ui-v2/app/styles/components/healthcheck-status.scss @@ -0,0 +1,68 @@ +@import './icons'; +.healthcheck-status { + @extend %healthcheck-status; +} +%healthcheck-status { + border: 1px solid; +} +%healthcheck-status, +%healthcheck-status pre { + border-radius: $radius-small; +} +%healthcheck-status dd:first-of-type { + color: $text-note; +} +%healthcheck-status pre { + background-color: $black; + color: $white; +} +%healthcheck-status::before { + background-size: 55%; + width: 25px !important; + height: 25px !important; + left: 17px; + top: 20px !important; + margin-top: 0 !important; +} +%healthcheck-status.passing { + @extend %with-passing; + border-color: $border-blue; +} +%healthcheck-status.passing::before { + background-color: $green !important; +} +%healthcheck-status.critical { + @extend %with-critical; + border-color: $red; + background-color: rgba($red, 0.1); +} +%healthcheck-status.critical::before { + background-color: $red !important; +} +%healthcheck-status.warning { + @extend %with-warning; + border-color: $orange; + background-color: rgba($orange, 0.1); +} +%healthcheck-status.warning::before { + background-size: 100%; +} +%healthcheck-status { + padding: 20px 24px; + padding-bottom: 26px; + padding-left: 57px; + margin-bottom: 24px; + position: relative; +} +%healthcheck-status pre { + padding: 12px; +} +%healthcheck-status .with-feedback { + float: right; +} +%healthcheck-status dt { + margin-bottom: 0.2em; +} +%healthcheck-status dd:first-of-type { + margin-bottom: 0.6em; +} diff --git a/ui-v2/app/styles/components/healthchecked-resource.scss b/ui-v2/app/styles/components/healthchecked-resource.scss new file mode 100644 index 000000000..14e7b1c14 --- /dev/null +++ b/ui-v2/app/styles/components/healthchecked-resource.scss @@ -0,0 +1,100 @@ +@import './icons'; +.healthchecked-resource { + @extend %healthchecked-resource; +} +%healthchecked-resource { + border: 1px solid; + box-shadow: 0 4px 8px 0 rgba($black, 0.05); +} +%healthchecked-resource:hover, +%healthchecked-resource:focus { + box-shadow: 0 8px 10px 0 rgba($black, 0.1); +} +%healthchecked-resource li { + border-top: 1px solid; +} +%healthchecked-resource header span, +%healthchecked-resource li:not(:last-child) span { + overflow: hidden; + display: inline-block; + white-space: nowrap; + text-overflow: ellipsis; + max-width: 100%; +} +%healthchecked-resource li:last-child:not(:only-child) { + overflow: hidden; + white-space: nowrap; +} +%healthchecked-resource, +%healthchecked-resource li { + border-color: $border-blue; +} +%healthchecked-resource { + position: relative; + border-radius: $radius-small; +} +%healthchecked-resource header { + margin-bottom: 2em; + position: relative; +} + +%healthchecked-resource header strong { + position: absolute; + bottom: -0.6em; + left: 15px; +} +%healthchecked-resource a, +%healthchecked-resource header a > * { + display: block; +} +%healthchecked-resource li { + position: relative; +} +%healthchecked-resource li::before { + left: 11px; + top: 50%; + margin-top: -0.49em !important; +} +%healthchecked-resource li.passing { + @extend %with-passing; + color: $green; +} +%healthchecked-resource li.warning { + @extend %with-warning; + color: $orange; +} +%healthchecked-resource li.critical { + @extend %with-critical; + color: $red; +} +.healthy .healthchecked-resource header span { + padding-right: 20px; +} +.healthy .healthchecked-resource li { + position: absolute; + top: 8px; + right: 16px; + border: none; +} +.healthy .healthchecked-resource li::before { + left: 0; +} +.healthy .healthchecked-resource li span { + display: none; +} +.healthy .healthchecked-resource li a { + padding-left: 0; +} +%healthchecked-resource header a { + padding: 12px 15px; +} +%healthchecked-resource li a { + padding: 3px 15px; + padding-top: 4px; + padding-left: 39px; + height: 31px; +} +%healthchecked-resource li:not(:last-child) strong, +.healthy .healthchecked-resource li:only-child strong { + display: none; +} diff --git a/ui-v2/app/styles/components/icons.scss b/ui-v2/app/styles/components/icons.scss new file mode 100644 index 000000000..06dd4fac6 --- /dev/null +++ b/ui-v2/app/styles/components/icons.scss @@ -0,0 +1,156 @@ +%pseudo-icon { + width: 1em; + height: 1em; + position: absolute; + top: 50%; + margin-top: -0.6em; + display: block; + content: ''; + background-repeat: no-repeat; + background-position: center center; + background-color: currentColor; + visibility: visible; +} +%with-dot { + content: ''; + display: block; + position: absolute; + border-radius: 100%; + width: 3px; + height: 3px; + background-color: currentColor; + visibility: visible; + top: 50%; + left: 50%; + pointer-events: none; +} +%with-folder { + position: relative; + text-indent: 30px; +} +%with-hashicorp, +%with-chevron, +%with-clipboard { + position: relative; +} +%with-chevron { + padding-left: 10px; + display: inline-block; +} +%with-hashicorp::before { + @extend %pseudo-icon; + background-image: url('data:image/svg+xml;charset=UTF-8,'); + width: 23px; + height: 22px; + left: -25px; + margin-top: -11px; + background-color: transparent; +} +%with-clipboard { + padding-left: 38px !important; +} +%with-clipboard::before { + @extend %pseudo-icon; + background-image: url('data:image/svg+xml;charset=UTF-8,'); + width: 16px; + height: 17px; + left: 12px; + margin-top: -8px; + background-color: transparent; +} +%with-chevron::before { + @extend %pseudo-icon; + background-image: url('data:image/svg+xml;charset=UTF-8,'); + width: 6px; + height: 9px; + left: 0; + margin-top: -4px; + background-color: transparent; +} +%with-folder::before { + @extend %pseudo-icon; + width: 12px; + height: 12px; + top: 50%; + margin-top: -6px; + left: 2px; + background-image: url('data:image/svg+xml;charset=UTF-8,'); + background-color: transparent; +} +%with-magnifier { + position: relative; +} +%with-magnifier::before { + @extend %pseudo-icon; + cursor: pointer; // autosearch + top: 50%; + left: 50%; + margin-left: -0.2em; + margin-top: -0.2em; + font-size: 3em; + width: 0.35em; + height: 0.35em; + border: 0.05em solid; + border-radius: 0.35em; + border-color: currentColor; + background-color: transparent; +} +%with-magnifier::after { + @extend %pseudo-icon; + font-size: 3em; + top: 50%; + left: 50%; + margin-top: 0.13em; + margin-left: 0.07em; + border-width: 0; + width: 0.18em; + height: 0.05em; + transform: rotate(45deg); +} +%with-info { + position: relative; + padding-right: 23px; +} +%with-info::after { + @extend %pseudo-icon; + right: 0; + background-image: url('data:image/svg+xml;charset=UTF-8,'); + background-color: transparent; + width: 16px; + height: 16px; +} +%with-tick { + @extend %pseudo-icon; + background-image: url('data:image/svg+xml;charset=UTF-8,'); +} +%with-inverted-tick { + @extend %pseudo-icon; + background-color: transparent; + background-image: url('data:image/svg+xml;charset=UTF-8,'); + height: 20px !important; + width: 16px !important; +} +%with-cross { + @extend %pseudo-icon; + background-image: url('data:image/svg+xml;charset=UTF-8,'); +} +%with-warning-icon-orange { + @extend %pseudo-icon; + background-image: url('data:image/svg+xml;charset=UTF-8,'); +} +%with-warning-icon-grey { + @extend %pseudo-icon; + background-image: url('data:image/svg+xml;charset=UTF-8,'); +} +%with-passing::before { + @extend %with-tick; + border-radius: 100%; +} +%with-warning::before { + @extend %with-warning-icon-orange; + background-color: transparent; +} +%with-critical::before { + @extend %with-cross; + border-radius: 20%; +} diff --git a/ui-v2/app/styles/components/list-collection.scss b/ui-v2/app/styles/components/list-collection.scss new file mode 100644 index 000000000..05bfc7183 --- /dev/null +++ b/ui-v2/app/styles/components/list-collection.scss @@ -0,0 +1,26 @@ +.list-collection { + height: 500px; + position: relative; +} +.unhealthy > div, +.healthy > div { + @extend %card-grid; +} +.healthy > div { + width: calc(100% + 23px); +} +%card-grid { + margin-bottom: 20px; +} +%card-grid > ul, +%card-grid > ol { + list-style-type: none; + display: grid; + grid-gap: 20px 2%; + grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); + grid-auto-rows: 12px; +} +.healthy > div > ul > li { + padding-right: 23px; + padding-bottom: 20px; +} diff --git a/ui-v2/app/styles/components/loader.scss b/ui-v2/app/styles/components/loader.scss new file mode 100644 index 000000000..4847a2c0a --- /dev/null +++ b/ui-v2/app/styles/components/loader.scss @@ -0,0 +1,42 @@ +html.template-loading main > div { + @extend %loader; +} +%loader { + display: flex; + align-items: center; + justify-content: center; + height: calc(100vh - 90px - 48px - 50px); +} +%loader circle { + animation: loader-animation 1.5s infinite ease-in-out; + transform-origin: 50% 50%; + fill: #efc4d8; +} + +%loader g:nth-last-child(2) circle { + animation-delay: 0.2s; +} + +%loader g:nth-last-child(3) circle { + animation-delay: 0.3s; +} + +%loader g:nth-last-child(4) circle { + animation-delay: 0.4s; +} + +%loader g:nth-last-child(5) circle { + animation-delay: 0.5s; + border: 1px solid red; +} + +@keyframes loader-animation { + 0%, + 100% { + transform: scale3D(1, 1, 1); + } + + 33% { + transform: scale3D(0, 0, 1); + } +} diff --git a/ui-v2/app/styles/components/main-header.scss b/ui-v2/app/styles/components/main-header.scss new file mode 100644 index 000000000..6b68d38fd --- /dev/null +++ b/ui-v2/app/styles/components/main-header.scss @@ -0,0 +1,44 @@ +@import './header-nav'; +[role='banner'] { + @extend %main-header; +} +%main-header > div { + @extend %header-nav-panel; +} +%main-header label[for='main-nav-toggle'] { + @extend %header-nav-toggle-button; +} +%main-header > input { + @extend %header-nav-toggle; +} +%main-header nav:first-of-type { + @extend %primary-nav; +} +%main-header nav:last-of-type { + @extend %secondary-nav; +} + +%main-header::before { + background-color: $magenta-600; +} +%main-header { + display: flex; +} +%main-header { + align-items: center; + height: 48px; +} +%main-header::before { + content: ''; + position: absolute; + z-index: -1; + left: 0; + width: 100vw; + height: 48px; +} +%main-header > a { + display: block; + margin-right: 12px; + line-height: 0; + font-size: 0; +} diff --git a/ui-v2/app/styles/components/notice.scss b/ui-v2/app/styles/components/notice.scss new file mode 100644 index 000000000..ec4d63d5c --- /dev/null +++ b/ui-v2/app/styles/components/notice.scss @@ -0,0 +1,24 @@ +.notice { + @extend %notice; +} +%notice { + @extend %with-warning; +} +%notice::before { + left: 20px; + top: 18px; + margin-top: 0; +} +%notice { + border: 1px solid; + border-radius: $radius-small; +} +%notice.warning { + background-color: $yellow-050; + border-color: $yellow-500; +} +%notice { + position: relative; + padding: 1em; + padding-left: 45px; +} diff --git a/ui-v2/app/styles/components/table.scss b/ui-v2/app/styles/components/table.scss new file mode 100644 index 000000000..49578096e --- /dev/null +++ b/ui-v2/app/styles/components/table.scss @@ -0,0 +1,121 @@ +@import './icons'; +th { + color: $text-light !important; +} +th, +td { + border-bottom: 1px solid; +} +th { + border-color: $keyline-dark; +} +td { + border-color: $keyline-mid; +} +td.folder { + @extend %with-folder; +} +table { + width: 100%; +} +td button { + position: relative; + top: -6px; +} +th.actions input { + display: none; +} +th.actions { + text-align: right; +} +td.actions .with-confirmation.confirming { + position: absolute; + right: 0; +} +table th { + padding-bottom: 0.6em; +} +table td, +table td a { + padding: 0.9em 0; +} +table th, +table td:not(.actions), +table td a { + padding-right: 0.9em; +} +table:not(.sessions) td:first-child { + padding: 0; +} +table td a { + display: block; +} +tbody { + overflow-x: visible !important; +} +td strong { + display: inline-block; + background-color: $gray; + padding: 1px 5px; + border-radius: $radius-small; +} +th, +td:not(.actions), +td:not(.actions) a { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} +// TODO: this isn't specific to table +td dl { + height: 100%; +} +td dl { + display: flex; +} +td dl > * { + display: block; +} +td dt.zero { + display: none; +} +td dd.zero { + visibility: hidden; +} +td dt { + text-indent: -9000px; +} +td dt.passing, +td dt.passing + dd { + color: $green; +} +td dt.warning, +td dt.warning + dd { + color: $orange; +} +td dt.critical, +td dt.critical + dd { + color: $red; +} +td dt.passing { + @extend %with-passing; +} +td dt.warning { + overflow: visible; + @extend %with-warning; +} +td dt.warning::before { + top: 7px; +} +td dt.warning::after { + left: -2px; + top: -1px; +} +td dt.critical { + @extend %with-critical; +} +td dd { + box-sizing: content-box; + margin-left: 22px; + padding-right: 10px; +} diff --git a/ui-v2/app/styles/components/tabs.scss b/ui-v2/app/styles/components/tabs.scss new file mode 100644 index 000000000..94998d252 --- /dev/null +++ b/ui-v2/app/styles/components/tabs.scss @@ -0,0 +1,61 @@ +main header nav:last-child { + @extend %tab-nav; +} +.tab-section { + @extend %tab-section; +} +%tab-nav label { + cursor: pointer; +} +%tab-nav ul { + border: 0; +} +%tab-nav a { + border-bottom: $tabs-border-bottom-width $tabs-border-bottom-style; +} +%tab-nav a { + border-color: $tabs-border-bottom-color; + color: $tabs-link-color; +} +%tab-nav a:hover, +%tab-nav a:focus, +%tab-nav a:active, +%tab-nav .selected a { + border-color: $tabs-border-active-bottom-color; + color: $tabs-link-active-color; +} + +%tab-nav a { + white-space: nowrap; +} +@media #{$--horizontal-tabs} { + %tab-nav ul { + display: flex; + align-items: center; + } + %tab-nav ul li:not(:first-child) { + margin-left: 37px; + } + %tab-nav a { + padding-left: 5px; + padding-right: 5px; + } +} +@media #{$--lt-horizontal-tabs} { + %tab-nav li { + width: 100%; + } +} +%tab-nav a { + display: block; + padding-top: 12px; + padding-bottom: 12px; +} +%tab-nav input[type='radio'], +%tab-section > input[type='radio'], +%tab-section > input[type='radio'] + * { + display: none; +} +%tab-section > input[type='radio']:checked + * { + display: block; +} diff --git a/ui-v2/app/styles/components/tabular-collection.scss b/ui-v2/app/styles/components/tabular-collection.scss new file mode 100644 index 000000000..3f1d9ca71 --- /dev/null +++ b/ui-v2/app/styles/components/tabular-collection.scss @@ -0,0 +1,91 @@ +table:not(.sessions) tr { + cursor: pointer; +} +table { + position: relative; +} +table tbody { + width: 100%; + height: 100%; + top: 29px !important; +} +table tr { + display: flex; +} +table tr > * { + flex: 1 0 auto; +} + +html.template-service.template-list main table tr { + @extend %services-row; +} +html.template-kv.template-list main table tr { + @extend %kvs-row; +} +html.template-acl.template-list main table tr { + @extend %acls-row; +} +html.template-node.template-show main table tr { + @extend %node-services-row; +} +html.template-node.template-show main table.sessions tr { + @extend %node-sessions-row; +} + +@media #{$--horizontal-session-list} { + %node-sessions-row > * { + // (100% / 7) - (300px / 6) - (120px / 6) + width: calc(14.2857% - 50px - 20px); + } + %node-sessions-row > *:nth-child(2) { + width: 300px; + } + %node-sessions-row > *:nth-last-child(1) { + width: 120px; + } +} +@media #{$--lt-horizontal-session-list} { + %node-sessions-row > * { + // (100% / 2) - (300px / 2) - (120px / 2) + width: calc(50% - 150px - 60px); + } + %node-sessions-row > *:nth-child(2) { + width: 300px; + } + %node-sessions-row > *:nth-last-child(1) { + width: 120px; + } + %node-sessions-row > *:nth-child(3), + %node-sessions-row > *:nth-child(4), + %node-sessions-row > *:nth-child(5), + %node-sessions-row > *:nth-child(6) { + display: none; + } +} +tr > * dl { + float: left; +} +%kvs-row > *:first-child { + width: calc(100% - 60px); +} +%kvs-row > *:last-child { + width: 60px; +} +%node-services-row > * { + width: 33%; +} +%acls-row > * { + width: calc(50% - 30px); +} +%acls-row > *:last-child { + width: 60px; +} +// this will get auto calculated later in tabular-collection.js +// keeping this here for reference +%services-row > * { + // (100% / 2) - (160px / 2) + // width: calc(50% - 160px); +} +%services-row > * { + width: auto; +} diff --git a/ui-v2/app/styles/components/tomography-graph.scss b/ui-v2/app/styles/components/tomography-graph.scss new file mode 100644 index 000000000..6481d4616 --- /dev/null +++ b/ui-v2/app/styles/components/tomography-graph.scss @@ -0,0 +1,31 @@ +.tomography .background { + fill: $lightest-gray; +} +.tomography .axis { + fill: none; + stroke: $border-blue; + stroke-dasharray: 4 4; +} +.tomography .border { + fill: none; + stroke: $border-blue; +} +.tomography .point { + stroke: $text-note; + fill: $magenta-600; +} +.tomography .lines line { + stroke: $magenta-600; +} +.tomography .lines line:hover { + stroke: $border-blue; + stroke-width: 2px; +} +.tomography .tick line { + stroke: $border-blue; +} +.tomography .tick text { + font-size: $size-normal; + text-anchor: start; + color: $text; +} diff --git a/ui-v2/app/styles/core/layout.scss b/ui-v2/app/styles/core/layout.scss new file mode 100644 index 000000000..442993f7d --- /dev/null +++ b/ui-v2/app/styles/core/layout.scss @@ -0,0 +1,66 @@ +html.template-with-vertical-menu, +html.template-with-vertical-menu body { + overflow: hidden; +} +#wrapper { + margin: 0 auto; + position: static; + max-width: 1260px; + padding: 0 1.9047619047619049%; // 24px + padding: 0 1.9047619047619049vw; // 24px + width: auto; // stop bulma jumping around + + display: flex; + min-height: 100vh; + flex-direction: column; +} +@media #{$--min-padding} { + #wrapper { + padding: 0 10px; + } + main, + #wrapper > footer { + padding: 0 33px; + } +} +@media #{$--max-padding} { + #wrapper { + padding: 0 24px; + } + main, + #wrapper > footer { + padding: 0 33px; + } +} +main { + max-width: 1150px; +} +main, +#wrapper > footer { + padding: 0 2.619047619047619%; //33px; + padding: 0 1.9047619047619049vw; +} +main { + flex: 1; +} +// workaround bulma's sweeping box-sizing +#wrapper { + box-sizing: content-box; +} +main > * { + box-sizing: border-box; +} +main p { + margin-bottom: 1em; +} +html body > svg { + display: none; + position: absolute; + top: 50%; + margin-top: -26px; + left: 50%; + margin-left: -84px; +} +html.ember-loading body > svg { + display: block; +} diff --git a/ui-v2/app/styles/core/reset.css b/ui-v2/app/styles/core/reset.css new file mode 100644 index 000000000..24f405788 --- /dev/null +++ b/ui-v2/app/styles/core/reset.css @@ -0,0 +1,7 @@ +fieldset { + border: 0; + width: 100%; +} +label span { + @extend %user-select-none; +} diff --git a/ui-v2/app/styles/core/typography.scss b/ui-v2/app/styles/core/typography.scss new file mode 100644 index 000000000..43ccd83c3 --- /dev/null +++ b/ui-v2/app/styles/core/typography.scss @@ -0,0 +1,91 @@ +%button { + font-family: $body-family; +} +%button { + line-height: 1.5; +} +%radio-group label { + line-height: 1.25; +} +h1 { + letter-spacing: 1px; +} +%header-nav, +%tab-nav { + letter-spacing: 0.03em; +} +%footer { + letter-spacing: -0.05em; +} +h1, +%header-drop-nav .is-active { + font-weight: $weight-bold; +} +h2, +%header-nav, +%healthchecked-resource header span, +%healthcheck-status dt, +%copy-button, +%form-element > span, +%app-content div > dl > dt, +td a { + font-weight: $weight-semibold; +} +%button { + font-weight: $weight-semibold !important; +} +th, +%breadcrumbs a, +%action-group a, +%tab-nav { + font-weight: $weight-medium; +} +main label a[rel*='help'], +%healthchecked-resource strong { + font-weight: $weight-normal; +} +%form-element > em { + font-style: normal; +} +%form-element > span { + text-transform: uppercase; +} +%form-element > span > * { + text-transform: none; +} +h1 { + font-size: $size-4; +} +h2, +%header-drop-nav .is-active { + font-size: $size-5; +} +body, +pre code, +input, +td { + font-size: $size-6; +} +th, +%healthchecked-resource strong, +%footer { + font-size: $size-7; +} +%toggle span { + font-size: $size-7 !important; +} +%button, +.with-confirmation p, +%form-element > em, +%form-element > span, +%feedback-dialog-inline p { + font-size: $size-8; +} +th, +button, +td strong { + font-weight: normal; +} +td:first-child { + font-weight: bold; +} diff --git a/ui-v2/app/styles/routes/dc/kv/index.scss b/ui-v2/app/styles/routes/dc/kv/index.scss new file mode 100644 index 000000000..fbfd50286 --- /dev/null +++ b/ui-v2/app/styles/routes/dc/kv/index.scss @@ -0,0 +1,4 @@ +html.template-kv.template-edit div > .with-confirmation { + float: none; + margin-top: 1.7em; +} diff --git a/ui-v2/app/styles/routes/dc/service/index.scss b/ui-v2/app/styles/routes/dc/service/index.scss new file mode 100644 index 000000000..975da4ad7 --- /dev/null +++ b/ui-v2/app/styles/routes/dc/service/index.scss @@ -0,0 +1,9 @@ +html.template-service.template-show main dl { + display: flex; + margin-bottom: 1.4em; +} +html.template-service.template-show main dt::after { + content: ':'; + display: inline-block; + margin-right: 0.2em; +} diff --git a/ui-v2/app/styles/variables/color.scss b/ui-v2/app/styles/variables/color.scss new file mode 100644 index 000000000..63f0fbabb --- /dev/null +++ b/ui-v2/app/styles/variables/color.scss @@ -0,0 +1,32 @@ +$magenta-50: #f9ebf2; +$magenta-600: #9e2159; +$magenta-800: #5a1434; + +$red-500: #c73445; +$red-700: #7f222c; + +$blue-500: #1563ff; +$blue-700: #0e40a3; +$blue-900: #061b46; + +$yellow-050: #fef9e8; +$yellow-500: #fa8f37; + +$gray-050: #f5f6f7; +$gray-100: #e1e4e7; +$gray-500: #919fa8; +$gray-700: #5d666b; + +$white: #fff; +$black: #000; +$carbon: #42494d; +$red: #d73445; +$blue: #0068ff; +$green: #2eb039; +$orange: #fa8f37; +$gray: #cdd3d7; +$transparent: transparent; + +$magenta-800-url-encoded: %235a1434; +$lightest-gray: #f9f9f9; // bg grays +$dangerous-red: #b94a3c; diff --git a/ui-v2/app/styles/variables/custom-query.scss b/ui-v2/app/styles/variables/custom-query.scss new file mode 100644 index 000000000..1d5187b59 --- /dev/null +++ b/ui-v2/app/styles/variables/custom-query.scss @@ -0,0 +1,18 @@ +$ideal-width: 1260px; +$--horizontal-filters: '(min-width: 850px)'; +$--lt-horizontal-filters: '(max-width: 849px)'; + +$--horizontal-selects: '(min-width: 615px)'; +$--lt-horizontal-selects: '(max-width: 614px)'; + +$--horizontal-nav: '(min-width: 850px)'; +$--lt-horizontal-nav: '(max-width: 849px)'; + +$--horizontal-tabs: '(min-width: 615px)'; +$--lt-horizontal-tabs: '(max-width: 614px)'; + +$--horizontal-session-list: '(min-width: 900px)'; +$--lt-horizontal-session-list: '(max-width: 899px)'; + +$--min-padding: '(max-width: 600px)'; +$--max-padding: '(min-width: 1260px)'; diff --git a/ui-v2/app/styles/variables/index.scss b/ui-v2/app/styles/variables/index.scss new file mode 100644 index 000000000..e394da2f1 --- /dev/null +++ b/ui-v2/app/styles/variables/index.scss @@ -0,0 +1,61 @@ +@import './custom-query'; +@import './color'; + +// decoration +$radius-small: 2px; +$radius: 4px; + +// colors + +$keyline-light: rgba(#bdc4d0, 0.5); // h1 +$keyline-mid: #cdd3d7; // td +$keyline-dark: #a5b0b7; // th +$keyline-darker: #b9c1c7; //footer + +$border-mid: #b9c4d2; +$border-dark: #8d9fad; + +$border-blue: #bbc4d1; + +$text-blue: #919fa8; +$text-field-blue: #b9c4d2; +$user-text-gray: #677877; +// #6a7786; +// #677887 input labels +$text-gray: #77838a; // tab text +$text-light: #828b9a; +$text: #282828; + +$text-note: #929dab; // used for confirmations and footer + +$primary: $blue-500; +$body-background-color: transparent; +$navbar-background-color: $body-background-color; + +$tabs-border-active-bottom-color: $magenta-600; +$tabs-link-color: $text-gray; +$tabs-link-active-color: $magenta-600; +$tabs-border-bottom-style: solid; +$tabs-border-bottom-width: 3px; +$tabs-border-bottom-color: transparent; + +// fonts + +/** + * Sizes don't use auto rem to px calculating +*/ +html { + font-size: 16px; +} +// follow bulma and use 1, 2, 3, 4 etc for font sizes... +$size-4: 1.5rem; // $size-large? 24 +$size-5: 1.125rem; // $size-medium? // 18 +$size-6: 0.875rem; // $size-normal? // 14 +$size-7: 0.8125rem; // $size-small? // 13 +$size-8: 0.75rem; // $size-small? // 12 +.is-size-8 { + font-size: $size-8; +} +$weight-medium: 500; +$weight-semibold: 600; +$weight-bold: 700; diff --git a/ui-v2/app/templates/-consul-loading.hbs b/ui-v2/app/templates/-consul-loading.hbs new file mode 100644 index 000000000..871f2b2ac --- /dev/null +++ b/ui-v2/app/templates/-consul-loading.hbs @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui-v2/app/templates/application.hbs b/ui-v2/app/templates/application.hbs new file mode 100644 index 000000000..1eba47bd5 --- /dev/null +++ b/ui-v2/app/templates/application.hbs @@ -0,0 +1,11 @@ +{{#if (not loading)}} + {{outlet}} +{{else}} +{{#hashicorp-consul id="wrapper" dc=dc}} + {{#app-view class="loading show"}} + {{#block-slot 'content'}} + {{partial 'consul-loading'}} + {{/block-slot}} + {{/app-view}} +{{/hashicorp-consul}} +{{/if}} diff --git a/ui-v2/app/templates/components/acl-filter.hbs b/ui-v2/app/templates/components/acl-filter.hbs new file mode 100644 index 000000000..04e4467be --- /dev/null +++ b/ui-v2/app/templates/components/acl-filter.hbs @@ -0,0 +1,4 @@ +{{!
}} + {{freetext-filter onchange=(action onchange) value=search placeholder="Search by name"}} + {{radio-group name="type" value=type items=filters onchange=(action onchange)}} +{{!
}} diff --git a/ui-v2/app/templates/components/action-group.hbs b/ui-v2/app/templates/components/action-group.hbs new file mode 100644 index 000000000..5c44421b4 --- /dev/null +++ b/ui-v2/app/templates/components/action-group.hbs @@ -0,0 +1,8 @@ + + + +{{yield}} diff --git a/ui-v2/app/templates/components/app-view.hbs b/ui-v2/app/templates/components/app-view.hbs new file mode 100644 index 000000000..be624ad5a --- /dev/null +++ b/ui-v2/app/templates/components/app-view.hbs @@ -0,0 +1,30 @@ +{{yield}} +{{#if (not loading)}} +
+{{#each flashMessages.queue as |flash|}} + {{#flash-message flash=flash as |component flash|}} + {{! flashes automatically ucfirst the type }} +

{{if (eq component.flashType 'Success') 'Success!' 'Error!'}} {{flash.message}}

+ {{/flash-message}} +{{/each}} +
+
+ {{#yield-slot 'actions'}}{{yield}}{{/yield-slot}} +
+
+ + {{#yield-slot 'header'}}{{yield}}{{/yield-slot}} +
+
+ {{#yield-slot 'toolbar'}}{{yield}}{{/yield-slot}} +
+{{/if}} +
+ {{#if loading}} + {{partial 'consul-loading'}} + {{else}} + {{#yield-slot 'content'}}{{yield}}{{/yield-slot}} + {{/if}} +
diff --git a/ui-v2/app/templates/components/catalog-filter.hbs b/ui-v2/app/templates/components/catalog-filter.hbs new file mode 100644 index 000000000..d69ecbad0 --- /dev/null +++ b/ui-v2/app/templates/components/catalog-filter.hbs @@ -0,0 +1,4 @@ +{{!
}} + {{freetext-filter value=search placeholder="Search by name" onchange=(action onchange)}} + {{radio-group name="status" value=status items=filters onchange=(action onchange)}} +{{!
}} diff --git a/ui-v2/app/templates/components/code-editor.hbs b/ui-v2/app/templates/components/code-editor.hbs new file mode 100644 index 000000000..57e0ea0dd --- /dev/null +++ b/ui-v2/app/templates/components/code-editor.hbs @@ -0,0 +1,8 @@ +{{ivy-codemirror + value=value + readonly=readonly + name=name + class=class + options=(hash lineNumbers=true mode=mode theme='hashi') + valueUpdated=(action onkeyup) +}} diff --git a/ui-v2/app/templates/components/confirmation-dialog.hbs b/ui-v2/app/templates/components/confirmation-dialog.hbs new file mode 100644 index 000000000..05602bba7 --- /dev/null +++ b/ui-v2/app/templates/components/confirmation-dialog.hbs @@ -0,0 +1,11 @@ +{{yield}} +{{#if (or permanent (not confirming))}} +{{#yield-slot 'action' (block-params confirm cancel)}} + {{yield}} +{{/yield-slot}} +{{/if}} +{{#if confirming }} +{{#yield-slot 'dialog' (block-params execute cancel message actionName)}} + {{yield}} +{{/yield-slot}} +{{/if}} \ No newline at end of file diff --git a/ui-v2/app/templates/components/datacenter-picker.hbs b/ui-v2/app/templates/components/datacenter-picker.hbs new file mode 100644 index 000000000..992243801 --- /dev/null +++ b/ui-v2/app/templates/components/datacenter-picker.hbs @@ -0,0 +1,7 @@ +{{!}} \ No newline at end of file diff --git a/ui-v2/app/templates/components/feedback-dialog.hbs b/ui-v2/app/templates/components/feedback-dialog.hbs new file mode 100644 index 000000000..87ca58c99 --- /dev/null +++ b/ui-v2/app/templates/components/feedback-dialog.hbs @@ -0,0 +1,9 @@ +{{yield}} +{{#if (eq state 'success') }} + {{#yield-slot 'success'}}{{yield}}{{/yield-slot}} +{{else if (eq state 'error') }} + {{#yield-slot 'error'}}{{yield}}{{/yield-slot}} +{{/if}} +{{#if (or permanent (eq state 'ready')) }} + {{#yield-slot 'action' (block-params success error)}}{{yield}}{{message}}{{/yield-slot}} +{{/if}} \ No newline at end of file diff --git a/ui-v2/app/templates/components/freetext-filter.hbs b/ui-v2/app/templates/components/freetext-filter.hbs new file mode 100644 index 000000000..590726e08 --- /dev/null +++ b/ui-v2/app/templates/components/freetext-filter.hbs @@ -0,0 +1,6 @@ +{{!
}} + +{{!
}} \ No newline at end of file diff --git a/ui-v2/app/templates/components/hashicorp-consul.hbs b/ui-v2/app/templates/components/hashicorp-consul.hbs new file mode 100644 index 000000000..cecae95c7 --- /dev/null +++ b/ui-v2/app/templates/components/hashicorp-consul.hbs @@ -0,0 +1,59 @@ +
+ + + +
+ + + +
+
+
+{{yield}} +
+ \ No newline at end of file diff --git a/ui-v2/app/templates/components/healthcheck-status.hbs b/ui-v2/app/templates/components/healthcheck-status.hbs new file mode 100644 index 000000000..c6a507ee1 --- /dev/null +++ b/ui-v2/app/templates/components/healthcheck-status.hbs @@ -0,0 +1,25 @@ +{{#feedback-dialog type='inline'}} + {{#block-slot 'action' as |success error|}} + {{#copy-button success=(action success) error=(action error) clipboardText=output title='copy output to clipboard'}} + Copy Output + {{/copy-button}} + {{/block-slot}} + {{#block-slot 'success'}} +

+ Copied output! +

+ {{/block-slot}} + {{#block-slot 'error'}} +

+ Sorry, something went wrong! +

+ {{/block-slot}} +{{/feedback-dialog}} +
+
{{name}}
+
{{notes}}
+
Output
+
+
{{output}}
+
+
\ No newline at end of file diff --git a/ui-v2/app/templates/components/healthchecked-resource.hbs b/ui-v2/app/templates/components/healthchecked-resource.hbs new file mode 100644 index 000000000..cf9d9dc7a --- /dev/null +++ b/ui-v2/app/templates/components/healthchecked-resource.hbs @@ -0,0 +1,32 @@ +
+ {{address}} + + {{name}} + +
+ \ No newline at end of file diff --git a/ui-v2/app/templates/components/list-collection.hbs b/ui-v2/app/templates/components/list-collection.hbs new file mode 100644 index 000000000..9bc42e3b6 --- /dev/null +++ b/ui-v2/app/templates/components/list-collection.hbs @@ -0,0 +1,6 @@ +{{#ember-native-scrollable tagName='ul' content-size=_contentSize scroll-left=_scrollLeft scroll-top=_scrollTop scrollChange=(action "scrollChange") clientSizeChange=(action "clientSizeChange")}} +
  • + {{~#each _cells as |cell|~}} +
  • {{yield cell.item cell.index }}
  • + {{~/each~}} +{{/ember-native-scrollable}} \ No newline at end of file diff --git a/ui-v2/app/templates/components/radio-group.hbs b/ui-v2/app/templates/components/radio-group.hbs new file mode 100644 index 000000000..e835213e2 --- /dev/null +++ b/ui-v2/app/templates/components/radio-group.hbs @@ -0,0 +1,10 @@ +{{!
    }} +
    {{! menu?}} +{{#each items as |item|}} + +{{/each}} +
    +{{!
    }} diff --git a/ui-v2/app/templates/components/tab-nav.hbs b/ui-v2/app/templates/components/tab-nav.hbs new file mode 100644 index 000000000..f11a3ff39 --- /dev/null +++ b/ui-v2/app/templates/components/tab-nav.hbs @@ -0,0 +1,11 @@ +{{!}} \ No newline at end of file diff --git a/ui-v2/app/templates/components/tab-section.hbs b/ui-v2/app/templates/components/tab-section.hbs new file mode 100644 index 000000000..c3f0ae554 --- /dev/null +++ b/ui-v2/app/templates/components/tab-section.hbs @@ -0,0 +1,4 @@ + +
    + {{yield}} +
    \ No newline at end of file diff --git a/ui-v2/app/templates/components/tabular-collection.hbs b/ui-v2/app/templates/components/tabular-collection.hbs new file mode 100644 index 000000000..5acb52bba --- /dev/null +++ b/ui-v2/app/templates/components/tabular-collection.hbs @@ -0,0 +1,22 @@ +{{yield}} + + + {{#yield-slot 'header'}}{{yield}}{{/yield-slot}} +{{#if hasActions }} + Actions +{{/if}} + + + {{#ember-native-scrollable tagName='tbody' content-size=_contentSize scroll-left=_scrollLeft scroll-top=_scrollTop scrollChange=(action "scrollChange") clientSizeChange=(action "clientSizeChange")}} + +{{~#each _cells as |cell|~}} + + {{#yield-slot 'row'}}{{yield cell.item cell.index}}{{/yield-slot}} +{{#if hasActions }} + + {{#yield-slot 'actions' (block-params (concat cell.index) change checked)}}{{yield cell.item cell.index}}{{/yield-slot}} + +{{/if}} + +{{~/each~}} + {{/ember-native-scrollable}} \ No newline at end of file diff --git a/ui-v2/app/templates/components/tomography-graph.hbs b/ui-v2/app/templates/components/tomography-graph.hbs new file mode 100644 index 000000000..10e08afd5 --- /dev/null +++ b/ui-v2/app/templates/components/tomography-graph.hbs @@ -0,0 +1,35 @@ + + + + + + + + + + + {{#each distances as |item|}} + + {{/each}} + + + + + + {{format-number milliseconds.[0] format='0,000.00'}}ms + + + + {{format-number milliseconds.[1] format='0,000.00'}}ms + + + + {{format-number milliseconds.[2] format='0,000.00'}}ms + + + + {{format-number milliseconds.[3] format='0,000.00'}}ms + + + + diff --git a/ui-v2/app/templates/dc.hbs b/ui-v2/app/templates/dc.hbs new file mode 100644 index 000000000..1af418f52 --- /dev/null +++ b/ui-v2/app/templates/dc.hbs @@ -0,0 +1,3 @@ +{{#hashicorp-consul id="wrapper" dcs=dcs dc=dc}} + {{outlet}} +{{/hashicorp-consul}} diff --git a/ui-v2/app/templates/dc/acls/-form.hbs b/ui-v2/app/templates/dc/acls/-form.hbs new file mode 100644 index 000000000..f9ea411ff --- /dev/null +++ b/ui-v2/app/templates/dc/acls/-form.hbs @@ -0,0 +1,50 @@ +
    +
    + +
    + {{#each types as |type|}} + + {{/each}} +
    + +{{#if create }} + +{{/if}} +
    +
    +{{#if create }} + +{{ else }} + +{{/if}} + +{{# if (and item.ID (not-eq item.ID 'anonymous')) }} + {{#confirmation-dialog message='Are you sure you want to delete this ACL token?'}} + {{#block-slot 'action' as |confirm|}} + + {{/block-slot}} + {{#block-slot 'dialog' as |execute cancel message|}} +

    + {{message}} +

    + + + {{/block-slot}} + {{/confirmation-dialog}} +{{/if}} +
    +
    + diff --git a/ui-v2/app/templates/dc/acls/edit.hbs b/ui-v2/app/templates/dc/acls/edit.hbs new file mode 100644 index 000000000..9ab41201b --- /dev/null +++ b/ui-v2/app/templates/dc/acls/edit.hbs @@ -0,0 +1,53 @@ +{{#app-view class="acl edit" loading=isLoading}} + {{#block-slot 'breadcrumbs'}} +
      +
    1. All Tokens
    2. +
    + {{/block-slot}} + {{#block-slot 'header'}} +

    +{{#if item.Name }} + {{item.Name}} +{{else}} + New token +{{/if}} +

    + {{/block-slot}} + {{#block-slot 'actions'}} +{{#if (not create) }} + {{#feedback-dialog type='inline'}} + {{#block-slot 'action' as |success error|}} + {{#copy-button success=(action success) error=(action error) clipboardText=item.ID title='copy token ID to clipboard'}} + Copy token ID + {{/copy-button}} + {{/block-slot}} + {{#block-slot 'success'}} +

    + Copied token ID! +

    + {{/block-slot}} + {{#block-slot 'error'}} +

    + Sorry, something went wrong! +

    + {{/block-slot}} + {{/feedback-dialog}} + + {{#confirmation-dialog message='Are you sure you want to use this ACL token?'}} + {{#block-slot 'action' as |confirm|}} + + {{/block-slot}} + {{#block-slot 'dialog' as |execute cancel message|}} +

    + {{message}} +

    + + + {{/block-slot}} + {{/confirmation-dialog}} +{{/if}} + {{/block-slot}} + {{#block-slot 'content'}} + {{ partial 'dc/acls/form'}} + {{/block-slot}} +{{/app-view}} \ No newline at end of file diff --git a/ui-v2/app/templates/dc/acls/index.hbs b/ui-v2/app/templates/dc/acls/index.hbs new file mode 100644 index 000000000..49a51ab80 --- /dev/null +++ b/ui-v2/app/templates/dc/acls/index.hbs @@ -0,0 +1,82 @@ +{{#app-view class="acl list" loading=isLoading}} + {{#block-slot 'header'}} +

    + ACL Tokens +

    + {{/block-slot}} + {{#block-slot 'actions'}} + Create + {{/block-slot}} + {{#block-slot 'toolbar'}} +{{#if (gt items.length 0) }} + {{acl-filter filters=typeFilters search=filters.s type=filters.type onchange=(action 'filter')}} +{{/if}} + {{/block-slot}} + {{#block-slot 'content'}} +{{#if (gt filtered.length 0)}} + {{#tabular-collection + items=filtered as |item index| + }} + {{#block-slot 'header'}} + Name + Type + {{/block-slot}} + {{#block-slot 'row'}} + + {{item.Name}} + + + {{#if (eq item.Type 'management')}} + {{item.Type}} + {{else}} + {{item.Type}} + {{/if}} + + {{/block-slot}} + {{#block-slot 'actions' as |index change checked|}} + {{#confirmation-dialog confirming=false index=index}} + {{#block-slot 'action' as |confirm|}} + {{#action-group index=index onchange=(action change) checked=(if (eq checked index) 'checked')}} + + {{/action-group}} + {{/block-slot}} + {{#block-slot 'dialog' as |execute cancel message name|}} +

    + {{#if (eq name 'delete')}} + Are you sure you want to delete this ACL token? + {{ else if (eq name 'use')}} + Are you sure you want to use this ACL token? + {{/if}} +

    + + + {{/block-slot}} + {{/confirmation-dialog}} + {{/block-slot}} + {{/tabular-collection}} +{{else}} +

    + There are no ACLs. +

    +{{/if}} + {{/block-slot}} +{{/app-view}} \ No newline at end of file diff --git a/ui-v2/app/templates/dc/kv/-form.hbs b/ui-v2/app/templates/dc/kv/-form.hbs new file mode 100644 index 000000000..a001faeae --- /dev/null +++ b/ui-v2/app/templates/dc/kv/-form.hbs @@ -0,0 +1,46 @@ +
    +
    +{{#if create }} + +{{/if}} +{{#if (or (eq (left-trim item.Key parent.Key) '') (not-eq (last item.Key) '/')) }} +
    + + +
    +{{/if}} +
    +{{#if create }} + +{{ else }} + + + {{#confirmation-dialog message='Are you sure you want to delete this key?'}} + {{#block-slot 'action' as |confirm|}} + + {{/block-slot}} + {{#block-slot 'dialog' as |execute cancel message|}} +

    + {{message}} +

    + + + {{/block-slot}} + {{/confirmation-dialog}} +{{/if}} +
    + diff --git a/ui-v2/app/templates/dc/kv/edit.hbs b/ui-v2/app/templates/dc/kv/edit.hbs new file mode 100644 index 000000000..c156c1849 --- /dev/null +++ b/ui-v2/app/templates/dc/kv/edit.hbs @@ -0,0 +1,70 @@ +{{#app-view class="kv edit" loading=isLoading}} + {{#block-slot 'breadcrumbs'}} +
      +
    1. Key / Values
    2. +{{#if (not-eq parent.Key '/') }} +{{#each (slice 0 -1 (split parent.Key '/')) as |breadcrumb index|}} +
    3. {{breadcrumb}}
    4. +{{/each}} +{{/if}} +
    + {{/block-slot}} + {{#block-slot 'header'}} +

    +{{#if item.Key }} + {{left-trim item.Key parent.Key }} +{{else}} + New Key / Value +{{/if}} +

    + {{/block-slot}} + {{#block-slot 'content'}} + {{#if session}} +

    Warning. This KV has a lock session. You can edit KV's with lock sessions, but we recommend doing so with care, or not doing so at all. It may negatively impact the active node it's associated with. See below for more details on the Lock Session and see our documentation for more information.

    + {{/if}} + {{partial 'dc/kv/form'}} + {{#if session}} +
    +

    Lock Session

    +
    +
    Name
    +
    {{session.Name}}
    +
    Agent
    +
    + {{session.Node}} +
    +
    ID
    +
    {{session.ID}}
    +
    Behavior
    +
    <{{session.Behavior}}/dd> +{{#if session.Delay }} +
    Delay
    +
    <{{session.LockDelay}}/dd> +{{/if}} +{{#if session.TTL }} +
    TTL
    +
    {{session.TTL}}
    +{{/if}} +{{#if (gt session.Checks.length 0)}} +
    Health Checks
    +
    + {{ join ', ' session.Checks}} +
    +{{/if}} +
    + {{#confirmation-dialog message='Are you sure you want to invalidate this session?'}} + {{#block-slot 'action' as |confirm|}} + + {{/block-slot}} + {{#block-slot 'dialog' as |execute cancel message|}} +

    + {{message}} +

    + + + {{/block-slot}} + {{/confirmation-dialog}} +
    + {{/if}} + {{/block-slot}} +{{/app-view}} \ No newline at end of file diff --git a/ui-v2/app/templates/dc/kv/index.hbs b/ui-v2/app/templates/dc/kv/index.hbs new file mode 100644 index 000000000..20ce7c747 --- /dev/null +++ b/ui-v2/app/templates/dc/kv/index.hbs @@ -0,0 +1,69 @@ +{{#app-view class="kv list" loading=isLoading}} + {{#block-slot 'breadcrumbs'}} +
      +{{#if (not-eq parent.Key '/') }} +
    1. Key / Values
    2. +{{/if}} +{{#each (slice 0 -2 (split parent.Key '/')) as |breadcrumb index|}} +
    3. {{breadcrumb}}
    4. +{{/each}} +
    + {{/block-slot}} + {{#block-slot 'header'}} +

    + {{#if (eq parent.Key '/') }} + Key / Value + {{else}} + {{ take 1 (drop 1 (reverse (split parent.Key '/'))) }} + {{/if}} +

    + {{/block-slot}} + {{#block-slot 'actions'}} +{{#if (not-eq parent.Key '/') }} + Create +{{else}} + Create +{{/if}} + {{/block-slot}} + {{#block-slot 'content'}} +{{#if (gt items.length 0)}} + {{#tabular-collection + items=(sort-by 'isFolder:desc' items) as |item index| + }} + {{#block-slot 'header'}} + Name + {{/block-slot}} + {{#block-slot 'row'}} + + {{right-trim (left-trim item.Key parent.Key) '/'}} + + {{/block-slot}} + {{#block-slot 'actions' as |index change checked|}} + {{#confirmation-dialog confirming=false index=index message='Are you sure you want to delete this key?'}} + {{#block-slot 'action' as |confirm|}} + {{#action-group index=index onchange=(action change) checked=(if (eq checked index) 'checked')}} + + {{/action-group}} + {{/block-slot}} + {{#block-slot 'dialog' as |execute cancel message|}} +

    + {{message}} +

    + + + {{/block-slot}} + {{/confirmation-dialog}} + {{/block-slot}} + {{/tabular-collection}} +{{else}} +

    There are no Key / Value pairs.

    +{{/if}} + {{/block-slot}} +{{/app-view}} \ No newline at end of file diff --git a/ui-v2/app/templates/dc/nodes/-healthchecks.hbs b/ui-v2/app/templates/dc/nodes/-healthchecks.hbs new file mode 100644 index 000000000..772989797 --- /dev/null +++ b/ui-v2/app/templates/dc/nodes/-healthchecks.hbs @@ -0,0 +1,6 @@ + + diff --git a/ui-v2/app/templates/dc/nodes/-rtt.hbs b/ui-v2/app/templates/dc/nodes/-rtt.hbs new file mode 100644 index 000000000..b08c14abf --- /dev/null +++ b/ui-v2/app/templates/dc/nodes/-rtt.hbs @@ -0,0 +1,22 @@ +
    +
    + Minimum +
    +
    + {{ format-number tomography.min format='0,000.00' }}ms +
    +
    + Median +
    +
    + {{ format-number tomography.median format='0,000.00' }}ms +
    +
    + Maximum +
    +
    + {{ format-number tomography.max format='0,000.00' }}ms +
    +
    +{{tomography-graph tomography=tomography}} + diff --git a/ui-v2/app/templates/dc/nodes/-services.hbs b/ui-v2/app/templates/dc/nodes/-services.hbs new file mode 100644 index 000000000..d1efe5dc9 --- /dev/null +++ b/ui-v2/app/templates/dc/nodes/-services.hbs @@ -0,0 +1,33 @@ +{{#if (gt items.length 0) }} +
    + {{freetext-filter onchange=(action 'filter') value=filter.s placeholder="Search by name"}} +
    +{{/if}} +{{#if (gt filtered.length 0)}} + {{#tabular-collection + items=filtered as |item index| + }} + {{#block-slot 'header'}} + Service + Port + Tags + {{/block-slot}} + {{#block-slot 'row'}} + + {{item.Service}} + + + {{item.Port}} + + + {{#if (gt item.Tags.length 0)}} + {{join ', ' item.Tags}} + {{/if}} + + {{/block-slot}} + {{/tabular-collection}} +{{else}} +

    + There are no services. +

    +{{/if}} diff --git a/ui-v2/app/templates/dc/nodes/-sessions.hbs b/ui-v2/app/templates/dc/nodes/-sessions.hbs new file mode 100644 index 000000000..322cb9411 --- /dev/null +++ b/ui-v2/app/templates/dc/nodes/-sessions.hbs @@ -0,0 +1,57 @@ +{{#if (gt sessions.length 0)}} + {{#tabular-collection + class="sessions" + items=sessions as |item index| + }} + {{#block-slot 'header'}} + Name + ID + Delay + TTL + Behavior + Checks +   + {{/block-slot}} + {{#block-slot 'row'}} + + {{item.Name}} + + + {{item.ID}} + + + {{item.LockDelay}} + + + {{item.TTL}} + + + {{item.Behavior}} + + +{{#if (gt item.Checks.length 0)}} + {{ join ', ' item.Checks}} +{{/if}} + + + {{#confirmation-dialog message='Are you sure you want to invalidate this session?'}} + {{#block-slot 'action' as |confirm|}} + + {{/block-slot}} + {{#block-slot 'dialog' as |execute cancel message|}} +

    + {{message}} +

    + + + {{/block-slot}} + {{/confirmation-dialog}} + + {{/block-slot}} + {{/tabular-collection}} +{{else}} +

    + There are no Lock Sessions for this Node. For more information, view our documentation +

    +{{/if}} + diff --git a/ui-v2/app/templates/dc/nodes/index.hbs b/ui-v2/app/templates/dc/nodes/index.hbs new file mode 100644 index 000000000..68c3c7b5c --- /dev/null +++ b/ui-v2/app/templates/dc/nodes/index.hbs @@ -0,0 +1,56 @@ +{{#app-view class="node list"}} + {{#block-slot 'header'}} +

    + Nodes +

    + {{/block-slot}} + {{#block-slot 'toolbar'}} +{{#if (gt items.length 0) }} + {{catalog-filter filters=healthFilters search=filters.s status=filters.status onchange=(action 'filter')}} +{{/if}} + {{/block-slot}} + {{#block-slot 'content'}} +{{#if (gt unhealthy.length 0) }} +
    +

    Unhealthy Nodes

    +
    + {{! think about 2 differing views here }} +
      + {{#each unhealthy as |item|}} + {{healthchecked-resource + tagName='li' + data-test-node=item.Node + href=(href-to 'dc.nodes.show' item.Node) + name=item.Node + address=item.Address + checks=item.Checks + }} + {{/each}} +
    +
    +
    +{{/if}} +{{#if (gt healthy.length 0) }} +
    +

    Healthy Nodes

    + {{#list-collection + items=healthy + cell-layout=(percentage-columns-layout healthy.length columns 100) as |item index| + }} + {{healthchecked-resource + data-test-node=item.Node + href=(href-to 'dc.nodes.show' item.Node) + name=item.Node + address=item.Address + status=item.Checks.[0].Status + }} + {{/list-collection}} +
    +{{/if}} +{{#if (and (eq healthy.length 0) (eq unhealthy.length 0)) }} +

    + There are no nodes. +

    +{{/if}} + {{/block-slot}} +{{/app-view}} \ No newline at end of file diff --git a/ui-v2/app/templates/dc/nodes/show.hbs b/ui-v2/app/templates/dc/nodes/show.hbs new file mode 100644 index 000000000..66764222c --- /dev/null +++ b/ui-v2/app/templates/dc/nodes/show.hbs @@ -0,0 +1,53 @@ +{{#app-view class="node show"}} + {{#block-slot 'breadcrumbs'}} +
      +
    1. All Nodes
    2. +
    + {{/block-slot}} + {{#block-slot 'header'}} +

    + {{ item.Node }} +

    + {{tab-nav + items=(compact + (array 'Health Checks' 'Services' (if tomography 'Round Trip Time' '') 'Lock Sessions') + ) + selected=(if selectedTab selectedTab 'health-checks') + }} + {{/block-slot}} + {{#block-slot 'actions'}} + {{#feedback-dialog type='inline'}} + {{#block-slot 'action' as |success error|}} + {{#copy-button success=(action success) error=(action error) clipboardText=item.Address title='copy IP address to clipboard'}} + {{item.Address}} + {{/copy-button}} + {{/block-slot}} + {{#block-slot 'success'}} +

    + Copied IP Address! +

    + {{/block-slot}} + {{#block-slot 'error'}} +

    + Sorry, something went wrong! +

    + {{/block-slot}} + {{/feedback-dialog}} + {{/block-slot}} + {{#block-slot 'content'}} + {{#each + (compact + (array + (hash id=(slugify 'Health Checks') partial='dc/nodes/healthchecks') + (hash id=(slugify 'Services') partial='dc/nodes/services') + (if tomography (hash id=(slugify 'Round Trip Time') partial='dc/nodes/rtt') '') + (hash id=(slugify 'Lock Sessions') partial='dc/nodes/sessions') + ) + ) as |panel| + }} + {{#tab-section id=panel.id selected=(eq (if selectedTab selectedTab 'health-checks') panel.id) onchange=(action (mut selectedTab) value="target.value")}} + {{partial panel.partial}} + {{/tab-section}} + {{/each}} + {{/block-slot}} +{{/app-view}} diff --git a/ui-v2/app/templates/dc/services/index.hbs b/ui-v2/app/templates/dc/services/index.hbs new file mode 100644 index 000000000..067c63107 --- /dev/null +++ b/ui-v2/app/templates/dc/services/index.hbs @@ -0,0 +1,52 @@ +{{#app-view class="service list"}} + {{#block-slot 'header'}} +

    + Services +

    + {{/block-slot}} + {{#block-slot 'toolbar'}} +{{#if (gt items.length 0) }} + {{catalog-filter filters=healthFilters search=filters.s status=filters.status onchange=(action 'filter')}} +{{/if}} + {{/block-slot}} + {{#block-slot 'content'}} +{{#if (gt filtered.length 0) }} + {{#tabular-collection + route='dc.services.show' + key='Name' + items=filtered as |item index| + }} + {{#block-slot 'header'}} + Service + Node Health + Tags + {{/block-slot}} + {{#block-slot 'row'}} + + {{item.Name}} + + +
    +
    Healthchecks Passing
    +
    {{format_number item.ChecksPassing}}
    +
    Healthchecks Warning
    +
    {{format_number item.ChecksWarning}}
    +
    Healthchecks Critical
    +
    {{format_number item.ChecksCritical}}
    +
    + + + {{#if (gt item.Tags.length 0)}} + {{join ', ' item.Tags}} + {{/if}} + + {{/block-slot}} + {{/tabular-collection}} +{{else}} +

    + There are no services. +

    +{{/if}} + {{/block-slot}} +{{/app-view}} + diff --git a/ui-v2/app/templates/dc/services/show.hbs b/ui-v2/app/templates/dc/services/show.hbs new file mode 100644 index 000000000..5f6ba6a21 --- /dev/null +++ b/ui-v2/app/templates/dc/services/show.hbs @@ -0,0 +1,64 @@ +{{#app-view class="service show"}} + {{#block-slot 'breadcrumbs'}} +
      +
    1. All Services
    2. +
    + {{/block-slot}} + {{#block-slot 'header'}} +

    + {{ item.Service.Service }} +

    + {{/block-slot}} + {{#block-slot 'toolbar'}} +{{#if (gt items.length 0) }} + {{catalog-filter filters=healthFilters search=filters.s status=filters.status onchange=(action 'filter')}} +{{/if}} + {{/block-slot}} + {{#block-slot 'content'}} +{{#if (gt item.Service.Tags.length 0)}} +
    +
    Tags
    +
    + {{join ', ' item.Service.Tags}} +
    +
    +{{/if}} +{{#if (gt unhealthy.length 0) }} +
    +

    Unhealthy Nodes

    +
    +
      + {{#each unhealthy as |item|}} + {{healthchecked-resource + tagName='li' + data-test-node=item.Node.Node + href=(href-to 'dc.nodes.show' item.Node.Node) + name=item.Node.Node + address=item.Node.Address + checks=item.Checks + }} + {{/each}} +
    +
    +
    +{{/if}} +{{#if (gt healthy.length 0) }} +
    +

    Healthy Nodes

    + {{#list-collection + items=healthy + cell-layout=(percentage-columns-layout healthy.length columns 100) as |item index| + }} + {{healthchecked-resource + href=(href-to 'dc.nodes.show' item.Node.Node) + data-test-node=item.Node.Node + name=item.Node.Node + address=item.Node.Address + checks=item.Checks + status=item.Checks.[0].Status + }} + {{/list-collection}} +
    +{{/if}} + {{/block-slot}} +{{/app-view}} diff --git a/ui-v2/app/templates/error.hbs b/ui-v2/app/templates/error.hbs new file mode 100644 index 000000000..3cd244eeb --- /dev/null +++ b/ui-v2/app/templates/error.hbs @@ -0,0 +1,23 @@ +{{#hashicorp-consul id="wrapper" dcs=dcs dc=dc}} + {{#app-view class="error show"}} + {{#block-slot 'header'}} +

    +{{#if error.status }} + {{error.status}} ({{error.message}}) +{{else}} + {{error.message}} +{{/if}} +

    + {{/block-slot}} + {{#block-slot 'content'}} +

    + Consul returned an error. + You may have visited a URL that is loading an unknown resource, so you can try going back to the root. + If your ACL token was not found you can reset it, and then you will be redirected to the settings page to enter a new ACL token. + Try looking in our documentation +

    + Reset ACL token + Go back to root + {{/block-slot}} + {{/app-view}} +{{/hashicorp-consul}} diff --git a/ui-v2/app/templates/loading.hbs b/ui-v2/app/templates/loading.hbs new file mode 100644 index 000000000..e69de29bb diff --git a/ui-v2/app/templates/notfound.hbs b/ui-v2/app/templates/notfound.hbs new file mode 100644 index 000000000..e69de29bb diff --git a/ui-v2/app/templates/settings.hbs b/ui-v2/app/templates/settings.hbs new file mode 100644 index 000000000..8b84f3e86 --- /dev/null +++ b/ui-v2/app/templates/settings.hbs @@ -0,0 +1,24 @@ +{{#hashicorp-consul id="wrapper" dcs=dcs dc=dc}} + {{#app-view class="settings show"}} + {{#block-slot 'header'}} +

    + Settings +

    + {{/block-slot}} + {{#block-slot 'content'}} +

    + These settings allow you to configure your browser for the Consul Web UI. Everything is saved to localstorage, and persists through visits and browser usage. +

    +
    +
    + +
    + +
    + {{/block-slot}} + {{/app-view}} +{{/hashicorp-consul}} \ No newline at end of file diff --git a/ui-v2/app/utils/ascend.js b/ui-v2/app/utils/ascend.js new file mode 100644 index 000000000..761c37594 --- /dev/null +++ b/ui-v2/app/utils/ascend.js @@ -0,0 +1,9 @@ +export default function(path, num) { + const parts = path.split('/'); + return parts.length > num + ? parts + .slice(0, -num) + .concat('') + .join('/') + : ''; +} diff --git a/ui-v2/app/utils/atob.js b/ui-v2/app/utils/atob.js new file mode 100644 index 000000000..edac64c91 --- /dev/null +++ b/ui-v2/app/utils/atob.js @@ -0,0 +1,7 @@ +import TextEncoderLite from 'npm:text-encoder-lite'; +import base64js from 'npm:base64-js'; +export default function(str, encoding = 'utf-8') { + //decode + const bytes = base64js.toByteArray(str); + return new (TextDecoder || TextEncoderLite)(encoding).decode(bytes); +} diff --git a/ui-v2/app/utils/btoa.js b/ui-v2/app/utils/btoa.js new file mode 100644 index 000000000..3dddf02bf --- /dev/null +++ b/ui-v2/app/utils/btoa.js @@ -0,0 +1,7 @@ +import TextEncoderLite from 'npm:text-encoder-lite'; +import base64js from 'npm:base64-js'; +export default function(str, encoding = 'utf-8') { + // encode + const bytes = new (TextEncoder || TextEncoderLite)(encoding).encode(str); + return base64js.fromByteArray(bytes); +} diff --git a/ui-v2/app/utils/confirm.js b/ui-v2/app/utils/confirm.js new file mode 100644 index 000000000..cb9bf7a9f --- /dev/null +++ b/ui-v2/app/utils/confirm.js @@ -0,0 +1,4 @@ +import { Promise } from 'rsvp'; +export default function(message, confirmation = confirm) { + return Promise.resolve(confirmation(message)); +} diff --git a/ui-v2/app/utils/createURL.js b/ui-v2/app/utils/createURL.js new file mode 100644 index 000000000..4bd8a5780 --- /dev/null +++ b/ui-v2/app/utils/createURL.js @@ -0,0 +1,27 @@ +/** + * Creates a safe url encoded url + * + * @param {string[]} encoded - Pre-encoded parts for the url + * @param {string[]} raw - Possibly unsafe (not encoded) parts for the url + * @param {object} query - A 'query object' the values of which are possibly unsafe and will be passed through encode + * @param {function} [encode=encodeURIComponent] - Injectable encode function, defaulting to the browser default encodeURIComponent + * + * @example + * // returns 'a/nice-url/with%20some/non%20encoded?sortBy=the%20name&page=1' + * createURL(['a/nice-url'], ['with some', 'non encoded'], {sortBy: "the name", page: 1}) + */ +export default function(encoded, raw, query = {}, encode = encodeURIComponent) { + return [ + encoded.concat(raw).join('/'), + Object.keys(query) + .map(function(key, i, arr) { + if (query[key] != null) { + return `${encode(key)}=${encode(query[key])}`; + } + return key; + }) + .join('&'), + ] + .filter(item => item !== '') + .join('?'); +} diff --git a/ui-v2/app/utils/distance.js b/ui-v2/app/utils/distance.js new file mode 100644 index 000000000..736153763 --- /dev/null +++ b/ui-v2/app/utils/distance.js @@ -0,0 +1,16 @@ +export default function(a, b) +{ + a = a.Coord; + b = b.Coord; + let sum = 0; + for (let i = 0; i < a.Vec.length; i++) { + var diff = a.Vec[i] - b.Vec[i]; + sum += diff * diff; + } + let rtt = Math.sqrt(sum) + a.Height + b.Height; + const adjusted = rtt + a.Adjustment + b.Adjustment; + if (adjusted > 0.0) { + rtt = adjusted; + } + return Math.round(rtt * 100000.0) / 100.0; +} diff --git a/ui-v2/app/utils/error.js b/ui-v2/app/utils/error.js new file mode 100644 index 000000000..76b62f931 --- /dev/null +++ b/ui-v2/app/utils/error.js @@ -0,0 +1,5 @@ +/* eslint no-console: "off" */ +export default function(e) { + /* istanbul ignore next */ + console.error(e); +} diff --git a/ui-v2/app/utils/hasStatus.js b/ui-v2/app/utils/hasStatus.js new file mode 100644 index 000000000..92877847b --- /dev/null +++ b/ui-v2/app/utils/hasStatus.js @@ -0,0 +1,15 @@ +import { get } from '@ember/object'; +export default function(checks, status) { + let num = 0; + switch (status) { + case 'passing': + case 'critical': + case 'warning': + num = get(checks.filterBy('Status', status), 'length'); + break; + case '': // all + num = 1; + break; + } + return num > 0; +} diff --git a/ui-v2/app/utils/http/method.js b/ui-v2/app/utils/http/method.js new file mode 100644 index 000000000..a8da261ae --- /dev/null +++ b/ui-v2/app/utils/http/method.js @@ -0,0 +1,2 @@ +export const PUT = 'PUT'; +export const DELETE = 'DELETE'; diff --git a/ui-v2/app/utils/http/status.js b/ui-v2/app/utils/http/status.js new file mode 100644 index 000000000..5dd7b56f4 --- /dev/null +++ b/ui-v2/app/utils/http/status.js @@ -0,0 +1,2 @@ +export const OK = 200; +export const UNAUTHORIZED = 401; diff --git a/ui-v2/app/utils/injectableRequestToJQueryAjaxHash.js b/ui-v2/app/utils/injectableRequestToJQueryAjaxHash.js new file mode 100644 index 000000000..c4afd0cb4 --- /dev/null +++ b/ui-v2/app/utils/injectableRequestToJQueryAjaxHash.js @@ -0,0 +1,32 @@ +// prettier-ignore +export default function(JSON) { + // Has to be a property on an object so babel knocks the indentation in + return { + _requestToJQueryAjaxHash: function(request) { + let hash = {}; + + hash.type = request.method; + hash.url = request.url; + hash.dataType = 'json'; + hash.context = this; + + if (request.data) { + if (request.method !== 'GET') { + hash.contentType = 'application/json; charset=utf-8'; + hash.data = JSON.stringify(request.data); + } else { + hash.data = request.data; + } + } + + let headers = request.headers; + if (headers !== undefined) { + hash.beforeSend = function(xhr) { + Object.keys(headers).forEach((key) => xhr.setRequestHeader(key, headers[key])); + }; + } + + return hash; + } + }._requestToJQueryAjaxHash; +} diff --git a/ui-v2/app/utils/isFolder.js b/ui-v2/app/utils/isFolder.js new file mode 100644 index 000000000..3a8d795da --- /dev/null +++ b/ui-v2/app/utils/isFolder.js @@ -0,0 +1,5 @@ +// Boolean if the key is a "folder" or not, i.e is a nested key +// that feels like a folder. +export default function(path = '') { + return path.slice(-1) === '/'; +} diff --git a/ui-v2/app/utils/keyToArray.js b/ui-v2/app/utils/keyToArray.js new file mode 100644 index 000000000..f5fb26944 --- /dev/null +++ b/ui-v2/app/utils/keyToArray.js @@ -0,0 +1,12 @@ +/** + * Turns a separated path or 'key name' in this case to + * an array. If the key name is simply the separator (for example '/') + * then the array should contain a single empty string value + * + * @param {string} key - The separated path/key + * @param {string} [separator=/] - The separator + * @returns {string[]} + */ +export default function(key, separator = '/') { + return (key === separator ? '' : key).split(separator); +} diff --git a/ui-v2/app/utils/makeAttrable.js b/ui-v2/app/utils/makeAttrable.js new file mode 100644 index 000000000..b6f6b85fd --- /dev/null +++ b/ui-v2/app/utils/makeAttrable.js @@ -0,0 +1,9 @@ +// Used to make an pojo 'attr-able' +// i.e. you can call pojo.attr('key') on it +export default function(obj) { + return { + attr: function(prop) { + return obj[prop]; + }, + }; +} diff --git a/ui-v2/app/utils/promisedTimeout.js b/ui-v2/app/utils/promisedTimeout.js new file mode 100644 index 000000000..be616e103 --- /dev/null +++ b/ui-v2/app/utils/promisedTimeout.js @@ -0,0 +1,14 @@ +export default function(P = Promise, timeout = setTimeout) { + // var interval; + return function(milliseconds, cb) { + // clearInterval(interval); + // const cb = typeof _cb !== 'function' ? (i) => { clearInterval(interval);interval = i; } : _cb; + return new P((resolve, reject) => { + cb( + timeout(function() { + resolve(milliseconds); + }, milliseconds) + ); + }); + }; +} diff --git a/ui-v2/app/utils/sumOfUnhealthy.js b/ui-v2/app/utils/sumOfUnhealthy.js new file mode 100644 index 000000000..956ddb058 --- /dev/null +++ b/ui-v2/app/utils/sumOfUnhealthy.js @@ -0,0 +1,7 @@ +import { get } from '@ember/object'; +export default function(items) { + return items.reduce(function(sum, check) { + const status = get(check, 'Status'); + return status === 'critical' || status === 'warning' ? sum + 1 : sum; + }, 0); +} diff --git a/ui-v2/app/utils/tomography.js b/ui-v2/app/utils/tomography.js new file mode 100644 index 000000000..0b080fdd4 --- /dev/null +++ b/ui-v2/app/utils/tomography.js @@ -0,0 +1,50 @@ +export default function(distance) { + return function(name, coordinates) { + var min = 999999999; + var max = -999999999; + var distances = []; + coordinates.forEach(function(node) { + if (name == node.Node) { + var segment = node.Segment; + coordinates.forEach(function(other) { + if (node.Node != other.Node && other.Segment == segment) { + var dist = distance(node, other); + distances.push({ node: other.Node, distance: dist, segment: segment }); + if (dist < min) { + min = dist; + } + if (dist > max) { + max = dist; + } + } + }); + distances.sort(function(a, b) { + return a.distance - b.distance; + }); + } + }); + var n = distances.length; + var halfN = Math.floor(n / 2); + var median; + + if (n > 0) { + if (n % 2) { + // odd + median = distances[halfN].distance; + } else { + median = (distances[halfN - 1].distance + distances[halfN].distance) / 2; + } + } else { + median = 0; + min = 0; + max = 0; + } + return { + distances: distances, + n: distances.length, + min: parseInt(min * 100) / 100, + median: parseInt(median * 100) / 100, + max: parseInt(max * 100) / 100, + }; + }; +} diff --git a/ui-v2/app/utils/ucfirst.js b/ui-v2/app/utils/ucfirst.js new file mode 100644 index 000000000..346ae8c3e --- /dev/null +++ b/ui-v2/app/utils/ucfirst.js @@ -0,0 +1,3 @@ +export default function(str) { + return `${str.substr(0, 1).toUpperCase()}${str.substr(1)}`; +} diff --git a/ui-v2/app/validations/acl.js b/ui-v2/app/validations/acl.js new file mode 100644 index 000000000..876089487 --- /dev/null +++ b/ui-v2/app/validations/acl.js @@ -0,0 +1,6 @@ +import { validatePresence, validateLength } from 'ember-changeset-validations/validators'; +export default { + Name: [validatePresence(true), validateLength({ min: 1 })], + Type: validatePresence(true), + ID: validateLength({ min: 1 }), +}; diff --git a/ui-v2/app/validations/kv.js b/ui-v2/app/validations/kv.js new file mode 100644 index 000000000..859359c37 --- /dev/null +++ b/ui-v2/app/validations/kv.js @@ -0,0 +1,5 @@ +import { validatePresence, validateLength } from 'ember-changeset-validations/validators'; +export default { + Key: [validatePresence(true), validateLength({ min: 1 })], + Value: validatePresence(true), +}; diff --git a/ui-v2/config/environment.js b/ui-v2/config/environment.js new file mode 100644 index 000000000..d1ac0949b --- /dev/null +++ b/ui-v2/config/environment.js @@ -0,0 +1,82 @@ +'use strict'; +const fs = require('fs'); +const path = require('path'); +module.exports = function(environment) { + let ENV = { + modulePrefix: 'consul-ui', + environment, + rootURL: '/ui/', + locationType: 'auto', + EmberENV: { + FEATURES: { + // Here you can enable experimental features on an ember canary build + // e.g. 'with-controller': true + 'ds-improved-ajax': true, + }, + EXTEND_PROTOTYPES: { + // Prevent Ember Data from overriding Date.parse. + Date: false, + }, + }, + + APP: { + // Here you can pass flags/options to your application instance + // when it is created + }, + resizeServiceDefaults: { + injectionFactories: ['view', 'controller', 'component'], + }, + }; + ENV = Object.assign({}, ENV, { + CONSUL_GIT_SHA: (function() { + return require('child_process') + .execSync('git rev-parse --short HEAD') + .toString() + .trim(); + })(), + CONSUL_VERSION: (function() { + // see /scripts/dist.sh:8 + const version_go = `${path.dirname(path.dirname(__dirname))}/version/version.go`; + const contents = fs.readFileSync(version_go).toString(); + return contents + .split('\n') + .find(function(item, i, arr) { + return item.indexOf('Version =') !== -1; + }) + .trim() + .split('"')[1]; + })(), + CONSUL_DOCUMENTATION_URL: 'https://www.consul.io/docs', + CONSUL_COPYRIGHT_URL: 'https://www.hashicorp.com', + CONSUL_COPYRIGHT_YEAR: '2018', + }); + + if (environment === 'development') { + // ENV.APP.LOG_RESOLVER = true; + // ENV.APP.LOG_ACTIVE_GENERATION = true; + // ENV.APP.LOG_TRANSITIONS = true; + // ENV.APP.LOG_TRANSITIONS_INTERNAL = true; + // ENV.APP.LOG_VIEW_LOOKUPS = true; + // ENV['ember-cli-mirage'] = { + // enabled: false, + // }; + } + + if (environment === 'test') { + // Testem prefers this... + ENV.locationType = 'none'; + + // keep test console output quieter + ENV.APP.LOG_ACTIVE_GENERATION = false; + ENV.APP.LOG_VIEW_LOOKUPS = false; + + ENV.APP.rootElement = '#ember-testing'; + ENV.APP.autoboot = false; + } + + if (environment === 'production') { + // here you can enable a production-specific feature + } + + return ENV; +}; diff --git a/ui-v2/config/targets.js b/ui-v2/config/targets.js new file mode 100644 index 000000000..972d2655a --- /dev/null +++ b/ui-v2/config/targets.js @@ -0,0 +1,8 @@ +module.exports = { + browsers: [ + 'ie 11', + 'last 1 Chrome versions', + 'last 1 Firefox versions', + 'last 1 Safari versions', + ], +}; diff --git a/ui-v2/ember-cli-build.js b/ui-v2/ember-cli-build.js new file mode 100644 index 000000000..9a96a6772 --- /dev/null +++ b/ui-v2/ember-cli-build.js @@ -0,0 +1,48 @@ +'use strict'; + +const EmberApp = require('ember-cli/lib/broccoli/ember-app'); + +module.exports = function(defaults) { + let app = new EmberApp(defaults, { + 'ember-cli-babel': { + includePolyfill: true + }, + 'babel': { + plugins: [ + 'transform-object-rest-spread' + ] + }, + 'codemirror': { + modes: ['javascript','ruby'], + keyMaps: ['sublime'] + }, + 'ember-cli-uglify': { + uglify: { + compress: { + keep_fargs: false, + }, + }, + }, + 'autoprefixer': { + grid: true, + browsers: [ + "defaults", + "ie 11" + ] + }, + }); + // Use `app.import` to add additional libraries to the generated + // output files. + // + // If you need to use different assets in different + // environments, specify an object as the first parameter. That + // object's keys should be the environment name and the values + // should be the asset to use in that environment. + // + // If the library that you are including contains AMD or ES6 + // modules that you would like to import into your application + // please specify an object with the list of modules as keys + // along with the exports of each module as its value. + + return app.toTree(); +}; diff --git a/ui-v2/package.json b/ui-v2/package.json new file mode 100644 index 000000000..10ad4b70f --- /dev/null +++ b/ui-v2/package.json @@ -0,0 +1,85 @@ +{ + "name": "consul-ui", + "version": "2.0.0", + "private": true, + "description": "The web ui for Consul, by HashiCorp.", + "directories": { + "doc": "doc", + "test": "tests" + }, + "repository": "", + "scripts": { + "build": "ember build --environment production", + "lint:dev:js": "eslint -c .dev.eslintrc.js --fix ./*.js ./.*.js app config lib server tests", + "lint:js": "eslint -c .eslintrc.js --fix ./*.js ./.*.js app config lib server tests", + "format:js": "prettier --write \"{app,config,lib,server,tests}/**/*.js\" ./*.js ./.*.js", + "start": "ember serve", + "test": "ember test", + "precommit": "lint-staged" + }, + "lint-staged": { + "{app,config,lib,server,tests}/**/*.js": [ + "prettier --write", + "git add" + ], + "app/styles/**/*.*": [ + "prettier --write", + "git add" + ] + }, + "devDependencies": { + "babel-plugin-transform-object-rest-spread": "^6.26.0", + "base64-js": "^1.3.0", + "broccoli-asset-rev": "^2.4.5", + "ember-ajax": "^3.0.0", + "ember-block-slots": "^1.1.11", + "ember-browserify": "^1.2.2", + "ember-bulma-css": "^0.2.1", + "ember-changeset-validations": "^1.2.11", + "ember-cli": "~2.18.2", + "ember-cli-app-version": "^3.0.0", + "ember-cli-autoprefixer": "^0.8.1", + "ember-cli-babel": "^6.6.0", + "ember-cli-clipboard": "^0.9.0", + "ember-cli-code-coverage": "^1.0.0-beta.4", + "ember-cli-dependency-checker": "^2.0.0", + "ember-cli-eslint": "^4.2.1", + "ember-cli-flash": "^1.6.3", + "ember-cli-format-number": "^2.0.0", + "ember-cli-htmlbars": "^2.0.1", + "ember-cli-htmlbars-inline-precompile": "^1.0.0", + "ember-cli-inject-live-reload": "^1.4.1", + "ember-cli-page-object": "^1.15.0-beta.2", + "ember-cli-qunit": "^4.1.1", + "ember-cli-sass": "^7.1.4", + "ember-cli-shims": "^1.2.0", + "ember-cli-sri": "^2.1.0", + "ember-cli-uglify": "^2.0.0", + "ember-collection": "^1.0.0-alpha.7", + "ember-composable-helpers": "^2.1.0", + "ember-computed-style": "^0.2.0", + "ember-data": "^3.0.2", + "ember-export-application-global": "^2.0.0", + "ember-href-to": "^1.15.1", + "ember-load-initializers": "^1.0.0", + "ember-math-helpers": "^2.4.0", + "ember-pluralize": "^0.2.0", + "ember-resolver": "^4.0.0", + "ember-sinon-qunit": "^2.1.0", + "ember-source": "~2.18.2", + "ember-test-selectors": "^0.3.9", + "ember-truth-helpers": "^2.0.0", + "ember-url": "^0.6.0", + "eslint-plugin-ember": "^5.0.0", + "husky": "^0.14.3", + "ivy-codemirror": "^2.1.0", + "lint-staged": "^6.1.0", + "loader.js": "^4.2.3", + "prettier": "^1.10.2", + "svgo": "^1.0.5", + "text-encoder-lite": "^1.0.1" + }, + "engines": { + "node": "^4.5 || 6.* || >= 7.*" + } +} diff --git a/ui-v2/public/assets/android-chrome-192x192.png b/ui-v2/public/assets/android-chrome-192x192.png new file mode 100644 index 000000000..526497a28 --- /dev/null +++ b/ui-v2/public/assets/android-chrome-192x192.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb5ef2e7cd6161dc83fc8b27062910183050877219ca05712e399141bb932382 +size 18250 diff --git a/ui-v2/public/assets/android-chrome-512x512.png b/ui-v2/public/assets/android-chrome-512x512.png new file mode 100644 index 000000000..ceb3161d7 --- /dev/null +++ b/ui-v2/public/assets/android-chrome-512x512.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2e3be2f3444c85236f3fb6bdf3c3bd070f2747d0bdda7151f28623eb8861d1 +size 58433 diff --git a/ui-v2/public/assets/apple-touch-icon-114x114.png b/ui-v2/public/assets/apple-touch-icon-114x114.png new file mode 100644 index 000000000..73ebdc650 --- /dev/null +++ b/ui-v2/public/assets/apple-touch-icon-114x114.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f56b0a33a2d728ccd7a8146731f28b1a2c58be987f7284dc05525c36711da8a6 +size 15576 diff --git a/ui-v2/public/assets/apple-touch-icon-120x120.png b/ui-v2/public/assets/apple-touch-icon-120x120.png new file mode 100644 index 000000000..8ef87d449 --- /dev/null +++ b/ui-v2/public/assets/apple-touch-icon-120x120.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ee41dc3a402144eee3cefc86fdfca8a9e62c9655b0a4fafb40b1cc2d8a9999 +size 16251 diff --git a/ui-v2/public/assets/apple-touch-icon-144x144.png b/ui-v2/public/assets/apple-touch-icon-144x144.png new file mode 100644 index 000000000..872b2bb81 --- /dev/null +++ b/ui-v2/public/assets/apple-touch-icon-144x144.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd97deabe0e5f980e4794e61d9b38a133e1721dc7f6ac87d3d84eff1b5e67ae +size 20027 diff --git a/ui-v2/public/assets/apple-touch-icon-152x152.png b/ui-v2/public/assets/apple-touch-icon-152x152.png new file mode 100644 index 000000000..fcdfd7da7 --- /dev/null +++ b/ui-v2/public/assets/apple-touch-icon-152x152.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b18b3c5356b655573534034abe76eb3d964317d17c1770812f727f0da659a35 +size 23769 diff --git a/ui-v2/public/assets/apple-touch-icon-57x57.png b/ui-v2/public/assets/apple-touch-icon-57x57.png new file mode 100644 index 000000000..1f0d81236 --- /dev/null +++ b/ui-v2/public/assets/apple-touch-icon-57x57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b7d34fb6a9b699ea9bbdfd33430de2f3a145ae4dfe9e3e4d277aa849e227d7b +size 5158 diff --git a/ui-v2/public/assets/apple-touch-icon-60x60.png b/ui-v2/public/assets/apple-touch-icon-60x60.png new file mode 100644 index 000000000..022b88e3d --- /dev/null +++ b/ui-v2/public/assets/apple-touch-icon-60x60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e09a9ffd4380ebe44f5c1ad2208f3e02fd5f58d8dd33a4d715ba8eb9ec879e0 +size 5522 diff --git a/ui-v2/public/assets/apple-touch-icon-72x72.png b/ui-v2/public/assets/apple-touch-icon-72x72.png new file mode 100644 index 000000000..127b9105e --- /dev/null +++ b/ui-v2/public/assets/apple-touch-icon-72x72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c7657089f97ccd0f1c819d19e265d9995380ea738f1dd9a22ef7968dbf69b9 +size 7289 diff --git a/ui-v2/public/assets/apple-touch-icon-76x76.png b/ui-v2/public/assets/apple-touch-icon-76x76.png new file mode 100644 index 000000000..5ee5f4fe1 --- /dev/null +++ b/ui-v2/public/assets/apple-touch-icon-76x76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6fbfd67674a7a38ac30f8e05fbbcb9b3f41f73261f3ef85d1c4b7b90ef272a3 +size 8031 diff --git a/ui-v2/public/assets/apple-touch-icon.png b/ui-v2/public/assets/apple-touch-icon.png new file mode 100644 index 000000000..231bf5265 --- /dev/null +++ b/ui-v2/public/assets/apple-touch-icon.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe445e6038e9d6a188d91eadf8f3c8923231dbca972a02d3d5355574abe31fc6 +size 8285 diff --git a/ui-v2/public/assets/consul-logo.png b/ui-v2/public/assets/consul-logo.png new file mode 100644 index 000000000..ceb3161d7 --- /dev/null +++ b/ui-v2/public/assets/consul-logo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2e3be2f3444c85236f3fb6bdf3c3bd070f2747d0bdda7151f28623eb8861d1 +size 58433 diff --git a/ui-v2/public/assets/favicon-128.png b/ui-v2/public/assets/favicon-128.png new file mode 100644 index 000000000..274058a14 --- /dev/null +++ b/ui-v2/public/assets/favicon-128.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a19ef133df54abd8a7d032eab67f4737bf545ce4c7a4fe79659e595db4c185 +size 11154 diff --git a/ui-v2/public/assets/favicon-16x16.png b/ui-v2/public/assets/favicon-16x16.png new file mode 100644 index 000000000..a387137f2 --- /dev/null +++ b/ui-v2/public/assets/favicon-16x16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce672014cebd6fd6f06b5c374de806391df3b97a7ef908902074c84a94cad23e +size 821 diff --git a/ui-v2/public/assets/favicon-196x196.png b/ui-v2/public/assets/favicon-196x196.png new file mode 100644 index 000000000..010b223ec --- /dev/null +++ b/ui-v2/public/assets/favicon-196x196.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7457aaa2184e55b1997ec892a0f8f83f4f0bff2b73349934f06a0c892a51658b +size 37174 diff --git a/ui-v2/public/assets/favicon-32x32.png b/ui-v2/public/assets/favicon-32x32.png new file mode 100644 index 000000000..9a4c50fbe --- /dev/null +++ b/ui-v2/public/assets/favicon-32x32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13db72acbeed9b40ea108e31f87d921a53849d29d7a52cf011cd4a3e8b637675 +size 2075 diff --git a/ui-v2/public/assets/favicon-96x96.png b/ui-v2/public/assets/favicon-96x96.png new file mode 100644 index 000000000..625850efb --- /dev/null +++ b/ui-v2/public/assets/favicon-96x96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc71c31c35039abb54be3b818b86979a37bb316db7e22d587c5b8af1de2c888 +size 10171 diff --git a/ui-v2/public/assets/favicon.ico b/ui-v2/public/assets/favicon.ico new file mode 100644 index 000000000..064f9edd6 --- /dev/null +++ b/ui-v2/public/assets/favicon.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fb05c89896b5a6e56ed6ceb1c1fe8ac86d65c49c307cd146ba66cbbc65c3428 +size 34494 diff --git a/ui-v2/public/assets/favicon.png b/ui-v2/public/assets/favicon.png new file mode 100644 index 000000000..a387137f2 --- /dev/null +++ b/ui-v2/public/assets/favicon.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce672014cebd6fd6f06b5c374de806391df3b97a7ef908902074c84a94cad23e +size 821 diff --git a/ui-v2/public/assets/loading-cylon-pink.svg b/ui-v2/public/assets/loading-cylon-pink.svg new file mode 100644 index 000000000..1f2d83ae3 --- /dev/null +++ b/ui-v2/public/assets/loading-cylon-pink.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/ui-v2/public/assets/mstile-144x144.png b/ui-v2/public/assets/mstile-144x144.png new file mode 100644 index 000000000..872b2bb81 --- /dev/null +++ b/ui-v2/public/assets/mstile-144x144.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd97deabe0e5f980e4794e61d9b38a133e1721dc7f6ac87d3d84eff1b5e67ae +size 20027 diff --git a/ui-v2/public/assets/mstile-150x150.png b/ui-v2/public/assets/mstile-150x150.png new file mode 100644 index 000000000..6b05fac13 --- /dev/null +++ b/ui-v2/public/assets/mstile-150x150.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7143fda5c67f714e2a2a1340d1fe0f0c4e5da277ec9e48b42273921b5bcb4b2a +size 64646 diff --git a/ui-v2/public/assets/mstile-310x150.png b/ui-v2/public/assets/mstile-310x150.png new file mode 100644 index 000000000..60d7e6a8d --- /dev/null +++ b/ui-v2/public/assets/mstile-310x150.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204e9e8223a44c27dbcf6a9cf229fabdbe51853f4053bf3af318eb68d30bede1 +size 112362 diff --git a/ui-v2/public/assets/mstile-310x310.png b/ui-v2/public/assets/mstile-310x310.png new file mode 100644 index 000000000..44b51c30b --- /dev/null +++ b/ui-v2/public/assets/mstile-310x310.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983cc6b1f554d40596d72836b95476a9e3dc517975d7cd35bf0a5a09b1c6c1b0 +size 201893 diff --git a/ui-v2/public/assets/mstile-70x70.png b/ui-v2/public/assets/mstile-70x70.png new file mode 100644 index 000000000..274058a14 --- /dev/null +++ b/ui-v2/public/assets/mstile-70x70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a19ef133df54abd8a7d032eab67f4737bf545ce4c7a4fe79659e595db4c185 +size 11154 diff --git a/ui-v2/public/assets/safari-pinned-tab.svg b/ui-v2/public/assets/safari-pinned-tab.svg new file mode 100644 index 000000000..010e88a90 --- /dev/null +++ b/ui-v2/public/assets/safari-pinned-tab.svg @@ -0,0 +1,61 @@ + + + + +Created by potrace 1.11, written by Peter Selinger 2001-2013 + + + + + + + + + + + + + diff --git a/ui-v2/public/robots.txt b/ui-v2/public/robots.txt new file mode 100644 index 000000000..f5916452e --- /dev/null +++ b/ui-v2/public/robots.txt @@ -0,0 +1,3 @@ +# http://www.robotstxt.org +User-agent: * +Disallow: diff --git a/ui-v2/testem.js b/ui-v2/testem.js new file mode 100644 index 000000000..234f37bf3 --- /dev/null +++ b/ui-v2/testem.js @@ -0,0 +1,20 @@ +module.exports = { + test_page: 'tests/index.html?hidepassed', + disable_watching: true, + launch_in_ci: ['Chrome'], + launch_in_dev: ['Chrome'], + browser_args: { + Chrome: { + mode: 'ci', + args: [ + // --no-sandbox is needed when running Chrome inside a container + process.env.TRAVIS ? '--no-sandbox' : null, + + '--disable-gpu', + '--headless', + '--remote-debugging-port=0', + '--window-size=1440,900', + ].filter(Boolean), + }, + }, +}; diff --git a/ui-v2/tests/helpers/destroy-app.js b/ui-v2/tests/helpers/destroy-app.js new file mode 100644 index 000000000..28dec908e --- /dev/null +++ b/ui-v2/tests/helpers/destroy-app.js @@ -0,0 +1,8 @@ +import { run } from '@ember/runloop'; + +export default function destroyApp(application) { + run(application, 'destroy'); + if (window.server) { + window.server.shutdown(); + } +} diff --git a/ui-v2/tests/helpers/flash-message.js b/ui-v2/tests/helpers/flash-message.js new file mode 100644 index 000000000..56646e876 --- /dev/null +++ b/ui-v2/tests/helpers/flash-message.js @@ -0,0 +1,3 @@ +import FlashObject from 'ember-cli-flash/flash/object'; + +FlashObject.reopen({ init() {} }); diff --git a/ui-v2/tests/helpers/module-for-acceptance.js b/ui-v2/tests/helpers/module-for-acceptance.js new file mode 100644 index 000000000..364089288 --- /dev/null +++ b/ui-v2/tests/helpers/module-for-acceptance.js @@ -0,0 +1,21 @@ +import { module } from 'qunit'; +import { resolve } from 'rsvp'; +import startApp from '../helpers/start-app'; +import destroyApp from '../helpers/destroy-app'; + +export default function(name, options = {}) { + module(name, { + beforeEach() { + this.application = startApp(); + + if (options.beforeEach) { + return options.beforeEach.apply(this, arguments); + } + }, + + afterEach() { + let afterEach = options.afterEach && options.afterEach.apply(this, arguments); + return resolve(afterEach).then(() => destroyApp(this.application)); + }, + }); +} diff --git a/ui-v2/tests/helpers/start-app.js b/ui-v2/tests/helpers/start-app.js new file mode 100644 index 000000000..99d35dcf4 --- /dev/null +++ b/ui-v2/tests/helpers/start-app.js @@ -0,0 +1,17 @@ +import Application from '../../app'; +import config from '../../config/environment'; +import { merge } from '@ember/polyfills'; +import { run } from '@ember/runloop'; + +export default function startApp(attrs) { + let attributes = merge({}, config.APP); + attributes.autoboot = true; + attributes = merge(attributes, attrs); // use defaults, but you can override; + + return run(() => { + let application = Application.create(attributes); + application.setupForTesting(); + application.injectTestHelpers(); + return application; + }); +} diff --git a/ui-v2/tests/helpers/stub-super.js b/ui-v2/tests/helpers/stub-super.js new file mode 100644 index 000000000..af19a4816 --- /dev/null +++ b/ui-v2/tests/helpers/stub-super.js @@ -0,0 +1,52 @@ +/** + * super stubber + * Ember's `_super` functionality is a little challenging to stub. + * The following will essentially let you stub `_super`, letting + * you test single units of code that use `_super` + * The return value is a function with the same signature as + * traditional `test` or `it` test functions. Any test code + * used within the cb 'sandbox' will use the stubbed `_super`. + * It's done this way to attempt to make it easy to reuse for various tests + * using the same stub in a recognisable way. + * + * @param {object} obj - The instance with the that `_super` belongs to + * @param {object} [stub=function(){return arguments}] - + * The stub to use in place of `_super`, if not specified `_super` will + * simply return the `arguments` passed to it + * + * @returns {function} + */ +export default function(obj, stub) { + const _super = + typeof stub === 'undefined' + ? function() { + return arguments; + } + : stub; + /** + * @param {string} message - Message to accompany the test concept (currently unused) + * @param {function} cb - Callback that performs the test, will use the stubbed `_super` + * @returns The result of `cb`, and therefore maintain the same API + */ + return function(message, _cb) { + const cb = typeof message === 'function' ? message : _cb; + + let orig = obj._super; + Object.defineProperty(Object.getPrototypeOf(obj), '_super', { + set: function() {}, + get: function() { + return _super; + }, + }); + const actual = cb(); + Object.defineProperty(Object.getPrototypeOf(obj), '_super', { + set: function(val) { + orig = val; + }, + get: function() { + return orig; + }, + }); + return actual; + }; +} diff --git a/ui-v2/tests/index.html b/ui-v2/tests/index.html new file mode 100644 index 000000000..1a85be183 --- /dev/null +++ b/ui-v2/tests/index.html @@ -0,0 +1,33 @@ + + + + + + ConsulUi Tests + + + + {{content-for "head"}} + {{content-for "test-head"}} + + + + + + {{content-for "head-footer"}} + {{content-for "test-head-footer"}} + + + {{content-for "body"}} + {{content-for "test-body"}} + + + + + + + + {{content-for "body-footer"}} + {{content-for "test-body-footer"}} + + diff --git a/ui-v2/tests/integration/components/acl-filter-test.js b/ui-v2/tests/integration/components/acl-filter-test.js new file mode 100644 index 000000000..9b131da75 --- /dev/null +++ b/ui-v2/tests/integration/components/acl-filter-test.js @@ -0,0 +1,32 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('acl-filter', 'Integration | Component | acl filter', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{acl-filter}}`); + + assert.equal( + this.$() + .text() + .trim(), + 'Search' + ); + + // Template block usage: + this.render(hbs` + {{#acl-filter}}{{/acl-filter}} + `); + + assert.equal( + this.$() + .text() + .trim(), + 'Search' + ); +}); diff --git a/ui-v2/tests/integration/components/action-group-test.js b/ui-v2/tests/integration/components/action-group-test.js new file mode 100644 index 000000000..dd0ffa5fb --- /dev/null +++ b/ui-v2/tests/integration/components/action-group-test.js @@ -0,0 +1,34 @@ +import { moduleForComponent, test, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('action-group', 'Integration | Component | action group', { + integration: true, +}); + +skip("it doesn't render anything when used inline"); +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + // this.render(hbs`{{action-group}}`); + + // assert.equal( + // this.$() + // .text() + // .trim(), + // '' + // ); + + // Template block usage: + this.render(hbs` + {{#action-group}}{{/action-group}} + `); + + assert.notEqual( + this.$() + .text() + .trim() + .indexOf('Open'), + -1 + ); +}); diff --git a/ui-v2/tests/integration/components/app-view-test.js b/ui-v2/tests/integration/components/app-view-test.js new file mode 100644 index 000000000..475c196cf --- /dev/null +++ b/ui-v2/tests/integration/components/app-view-test.js @@ -0,0 +1,34 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('app-view', 'Integration | Component | app view', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{app-view}}`); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); + + // Template block usage: + this.render(hbs` + {{#app-view}} + template block text + {{/app-view}} + `); + + assert.equal( + this.$() + .text() + .trim(), + 'template block text' + ); +}); diff --git a/ui-v2/tests/integration/components/catalog-filter-test.js b/ui-v2/tests/integration/components/catalog-filter-test.js new file mode 100644 index 000000000..e4ba4793f --- /dev/null +++ b/ui-v2/tests/integration/components/catalog-filter-test.js @@ -0,0 +1,32 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('catalog-filter', 'Integration | Component | catalog filter', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{catalog-filter}}`); + + assert.equal( + this.$() + .text() + .trim(), + 'Search' + ); + + // Template block usage: + this.render(hbs` + {{#catalog-filter}}{{/catalog-filter}} + `); + + assert.equal( + this.$() + .text() + .trim(), + 'Search' + ); +}); diff --git a/ui-v2/tests/integration/components/code-editor-test.js b/ui-v2/tests/integration/components/code-editor-test.js new file mode 100644 index 000000000..6e2031331 --- /dev/null +++ b/ui-v2/tests/integration/components/code-editor-test.js @@ -0,0 +1,32 @@ +import { moduleForComponent, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('code-editor', 'Integration | Component | code editor', { + integration: true, +}); + +skip('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{code-editor}}`); + + assert.equal( + this.$() + .text() + .trim(), + '1' // this comes with some strange whitespace + ); + + // Template block usage: + this.render(hbs` + {{#code-editor}}{{/code-editor}} + `); + + assert.equal( + this.$() + .text() + .trim(), + '1' + ); +}); diff --git a/ui-v2/tests/integration/components/confirmation-dialog-test.js b/ui-v2/tests/integration/components/confirmation-dialog-test.js new file mode 100644 index 000000000..8fb5119ef --- /dev/null +++ b/ui-v2/tests/integration/components/confirmation-dialog-test.js @@ -0,0 +1,34 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('confirmation-dialog', 'Integration | Component | confirmation dialog', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{confirmation-dialog}}`); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); + + // Template block usage: + this.render(hbs` + {{#confirmation-dialog}} + template block text + {{/confirmation-dialog}} + `); + + assert.equal( + this.$() + .text() + .trim(), + 'template block text' + ); +}); diff --git a/ui-v2/tests/integration/components/datacenter-picker-test.js b/ui-v2/tests/integration/components/datacenter-picker-test.js new file mode 100644 index 000000000..ef830efe5 --- /dev/null +++ b/ui-v2/tests/integration/components/datacenter-picker-test.js @@ -0,0 +1,32 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('datacenter-picker', 'Integration | Component | datacenter picker', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{datacenter-picker}}`); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); + + // Template block usage: + this.render(hbs` + {{#datacenter-picker}}{{/datacenter-picker}} + `); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); +}); diff --git a/ui-v2/tests/integration/components/feedback-dialog-test.js b/ui-v2/tests/integration/components/feedback-dialog-test.js new file mode 100644 index 000000000..9d368ff82 --- /dev/null +++ b/ui-v2/tests/integration/components/feedback-dialog-test.js @@ -0,0 +1,38 @@ +import { moduleForComponent, test, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('feedback-dialog', 'Integration | Component | feedback dialog', { + integration: true, +}); + +skip("it doesn't render anything when used inline"); +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + // this.render(hbs`{{feedback-dialog}}`); + + // assert.equal( + // this.$() + // .text() + // .trim(), + // '' + // ); + + // Template block usage: + this.render(hbs` + {{#feedback-dialog}} + {{#block-slot 'success'}} + {{/block-slot}} + {{#block-slot 'error'}} + {{/block-slot}} + {{/feedback-dialog}} + `); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); +}); diff --git a/ui-v2/tests/integration/components/freetext-filter-test.js b/ui-v2/tests/integration/components/freetext-filter-test.js new file mode 100644 index 000000000..bec99fb36 --- /dev/null +++ b/ui-v2/tests/integration/components/freetext-filter-test.js @@ -0,0 +1,32 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('freetext-filter', 'Integration | Component | freetext filter', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{freetext-filter}}`); + + assert.equal( + this.$() + .text() + .trim(), + 'Search' + ); + + // Template block usage: + this.render(hbs` + {{#freetext-filter}}{{/freetext-filter}} + `); + + assert.equal( + this.$() + .text() + .trim(), + 'Search' + ); +}); diff --git a/ui-v2/tests/integration/components/hashicorp-consul-test.js b/ui-v2/tests/integration/components/hashicorp-consul-test.js new file mode 100644 index 000000000..6aea1dc7c --- /dev/null +++ b/ui-v2/tests/integration/components/hashicorp-consul-test.js @@ -0,0 +1,33 @@ +import { moduleForComponent, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('hashicorp-consul', 'Integration | Component | hashicorp consul', { + integration: true, +}); + +skip('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{hashicorp-consul}}`); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); + + // Template block usage: + this.render(hbs` + {{#hashicorp-consul}} + {{/hashicorp-consul}} + `); + + assert.equal( + this.$() + .text() + .trim(), + 'template block text' + ); +}); diff --git a/ui-v2/tests/integration/components/healthcheck-status-test.js b/ui-v2/tests/integration/components/healthcheck-status-test.js new file mode 100644 index 000000000..b19207e5a --- /dev/null +++ b/ui-v2/tests/integration/components/healthcheck-status-test.js @@ -0,0 +1,34 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('healthcheck-status', 'Integration | Component | healthcheck status', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{healthcheck-status}}`); + + assert.notEqual( + this.$() + .text() + .trim() + .indexOf('Output'), + -1 + ); + + // Template block usage: + this.render(hbs` + {{#healthcheck-status}}{{/healthcheck-status}} + `); + + assert.notEqual( + this.$() + .text() + .trim() + .indexOf('Output'), + -1 + ); +}); diff --git a/ui-v2/tests/integration/components/healthchecked-resource-test.js b/ui-v2/tests/integration/components/healthchecked-resource-test.js new file mode 100644 index 000000000..a021a91ab --- /dev/null +++ b/ui-v2/tests/integration/components/healthchecked-resource-test.js @@ -0,0 +1,32 @@ +import { moduleForComponent, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('healthchecked-resource', 'Integration | Component | healthchecked resource', { + integration: true, +}); + +skip('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{healthchecked-resource}}`); + + assert.ok( + this.$() + .text() + .trim() + .indexOf('other passing checks') !== -1 + ); + + // Template block usage: + this.render(hbs` + {{#healthchecked-resource}}{{/healthchecked-resource}} + `); + + assert.ok( + this.$() + .text() + .trim() + .indexOf('other passing checks') !== -1 + ); +}); diff --git a/ui-v2/tests/integration/components/list-collection-test.js b/ui-v2/tests/integration/components/list-collection-test.js new file mode 100644 index 000000000..b2aebcc05 --- /dev/null +++ b/ui-v2/tests/integration/components/list-collection-test.js @@ -0,0 +1,32 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('consul-list-collection', 'Integration | Component | list collection', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{list-collection cell-layout=(fixed-grid-layout 800 50)}}`); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); + + // Template block usage: + this.render(hbs` + {{#list-collection cell-layout=(fixed-grid-layout 800 50)}}{{/list-collection}} + `); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); +}); diff --git a/ui-v2/tests/integration/components/radio-group-test.js b/ui-v2/tests/integration/components/radio-group-test.js new file mode 100644 index 000000000..b2f1a49ec --- /dev/null +++ b/ui-v2/tests/integration/components/radio-group-test.js @@ -0,0 +1,32 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('radio-group', 'Integration | Component | radio group', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{radio-group}}`); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); + + // Template block usage: + this.render(hbs` + {{#radio-group}}{{/radio-group}} + `); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); +}); diff --git a/ui-v2/tests/integration/components/tab-nav-test.js b/ui-v2/tests/integration/components/tab-nav-test.js new file mode 100644 index 000000000..449ab1920 --- /dev/null +++ b/ui-v2/tests/integration/components/tab-nav-test.js @@ -0,0 +1,32 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('tab-nav', 'Integration | Component | tab nav', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{tab-nav}}`); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); + + // Template block usage: + this.render(hbs` + {{#tab-nav}}{{/tab-nav}} + `); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); +}); diff --git a/ui-v2/tests/integration/components/tab-section-test.js b/ui-v2/tests/integration/components/tab-section-test.js new file mode 100644 index 000000000..d5d35ea20 --- /dev/null +++ b/ui-v2/tests/integration/components/tab-section-test.js @@ -0,0 +1,34 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('tab-section', 'Integration | Component | tab section', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{tab-section}}`); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); + + // Template block usage: + this.render(hbs` + {{#tab-section}} + template block text + {{/tab-section}} + `); + + assert.equal( + this.$() + .text() + .trim(), + 'template block text' + ); +}); diff --git a/ui-v2/tests/integration/components/tabular-collection-test.js b/ui-v2/tests/integration/components/tabular-collection-test.js new file mode 100644 index 000000000..1b2540268 --- /dev/null +++ b/ui-v2/tests/integration/components/tabular-collection-test.js @@ -0,0 +1,32 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('consul-collection', 'Integration | Component | tabular collection', { + integration: true, +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{tabular-collection cell-layout=(fixed-grid-layout 800 50)}}`); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); + + // Template block usage: + this.render(hbs` + {{#tabular-collection cell-layout=(fixed-grid-layout 800 50)}}{{/tabular-collection}} + `); + + assert.equal( + this.$() + .text() + .trim(), + '' + ); +}); diff --git a/ui-v2/tests/integration/components/tomography-graph-test.js b/ui-v2/tests/integration/components/tomography-graph-test.js new file mode 100644 index 000000000..ea4358ce2 --- /dev/null +++ b/ui-v2/tests/integration/components/tomography-graph-test.js @@ -0,0 +1,22 @@ +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('tomography-graph', 'Integration | Component | tomography graph', { + integration: true +}); + +test('it renders', function(assert) { + // Set any properties with this.set('myProperty', 'value'); + // Handle any actions with this.on('myAction', function(val) { ... }); + + this.render(hbs`{{tomography-graph}}`); + + assert.ok(this.$().text().trim().indexOf('ms') !== -1); + + // Template block usage: + this.render(hbs` + {{#tomography-graph}}{{/tomography-graph}} + `); + + assert.ok(this.$().text().trim().indexOf('ms') !== -1); +}); diff --git a/ui-v2/tests/integration/helpers/atob-test.js b/ui-v2/tests/integration/helpers/atob-test.js new file mode 100644 index 000000000..decd54234 --- /dev/null +++ b/ui-v2/tests/integration/helpers/atob-test.js @@ -0,0 +1,16 @@ + +import { moduleForComponent, test } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('atob', 'helper:atob', { + integration: true +}); + +// Replace this with your real tests. +test('it renders', function(assert) { + this.set('inputValue', 'MTIzNA=='); + + this.render(hbs`{{atob inputValue}}`); + assert.equal(this.$().text().trim(), '1234'); +}); + diff --git a/ui-v2/tests/integration/helpers/env-test.js b/ui-v2/tests/integration/helpers/env-test.js new file mode 100644 index 000000000..524c26204 --- /dev/null +++ b/ui-v2/tests/integration/helpers/env-test.js @@ -0,0 +1,20 @@ +import { moduleForComponent, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('env', 'helper:env', { + integration: true, +}); + +// Replace this with your real tests. +skip('it renders', function(assert) { + this.set('inputValue', '1234'); + + this.render(hbs`{{env inputValue}}`); + + assert.equal( + this.$() + .text() + .trim(), + '1234' + ); +}); diff --git a/ui-v2/tests/integration/helpers/is-href-test.js b/ui-v2/tests/integration/helpers/is-href-test.js new file mode 100644 index 000000000..d75830beb --- /dev/null +++ b/ui-v2/tests/integration/helpers/is-href-test.js @@ -0,0 +1,20 @@ +import { moduleForComponent, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('is-href', 'helper:is-href', { + integration: true, +}); + +// Replace this with your real tests. +skip('it renders', function(assert) { + this.set('inputValue', '1234'); + + this.render(hbs`{{is-href inputValue}}`); + + assert.equal( + this.$() + .text() + .trim(), + '1234' + ); +}); diff --git a/ui-v2/tests/integration/helpers/last-test.js b/ui-v2/tests/integration/helpers/last-test.js new file mode 100644 index 000000000..b37d4ddac --- /dev/null +++ b/ui-v2/tests/integration/helpers/last-test.js @@ -0,0 +1,20 @@ +import { moduleForComponent, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('last', 'helper:last', { + integration: true, +}); + +// Replace this with your real tests. +skip('it renders', function(assert) { + this.set('inputValue', '1234'); + + this.render(hbs`{{last inputValue}}`); + + assert.equal( + this.$() + .text() + .trim(), + '1234' + ); +}); diff --git a/ui-v2/tests/integration/helpers/left-trim-test.js b/ui-v2/tests/integration/helpers/left-trim-test.js new file mode 100644 index 000000000..587e789a1 --- /dev/null +++ b/ui-v2/tests/integration/helpers/left-trim-test.js @@ -0,0 +1,20 @@ +import { moduleForComponent, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('left trim', 'helper:left-trim', { + integration: true, +}); + +// Replace this with your real tests. +skip('it renders', function(assert) { + this.set('inputValue', '1234'); + + this.render(hbs`{{left-trim inputValue}}`); + + assert.equal( + this.$() + .text() + .trim(), + '1234' + ); +}); diff --git a/ui-v2/tests/integration/helpers/right-trim-test.js b/ui-v2/tests/integration/helpers/right-trim-test.js new file mode 100644 index 000000000..7e0ccac8a --- /dev/null +++ b/ui-v2/tests/integration/helpers/right-trim-test.js @@ -0,0 +1,20 @@ +import { moduleForComponent, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('right-trim', 'helper:right-trim', { + integration: true, +}); + +// Replace this with your real tests. +skip('it renders', function(assert) { + this.set('inputValue', '1234'); + + this.render(hbs`{{right-trim inputValue}}`); + + assert.equal( + this.$() + .text() + .trim(), + '1234' + ); +}); diff --git a/ui-v2/tests/integration/helpers/slugify-test.js b/ui-v2/tests/integration/helpers/slugify-test.js new file mode 100644 index 000000000..27040794c --- /dev/null +++ b/ui-v2/tests/integration/helpers/slugify-test.js @@ -0,0 +1,20 @@ +import { moduleForComponent, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('slugify', 'helper:slugify', { + integration: true, +}); + +// Replace this with your real tests. +skip('it renders', function(assert) { + this.set('inputValue', '1234'); + + this.render(hbs`{{slugify inputValue}}`); + + assert.equal( + this.$() + .text() + .trim(), + '1234' + ); +}); diff --git a/ui-v2/tests/integration/helpers/split-test.js b/ui-v2/tests/integration/helpers/split-test.js new file mode 100644 index 000000000..df311199d --- /dev/null +++ b/ui-v2/tests/integration/helpers/split-test.js @@ -0,0 +1,20 @@ +import { moduleForComponent, skip } from 'ember-qunit'; +import hbs from 'htmlbars-inline-precompile'; + +moduleForComponent('split', 'helper:split', { + integration: true, +}); + +// Replace this with your real tests. +skip('it renders', function(assert) { + this.set('inputValue', '1234'); + + this.render(hbs`{{split inputValue}}`); + + assert.equal( + this.$() + .text() + .trim(), + '1234' + ); +}); diff --git a/ui-v2/tests/lib/page-object/radiogroup.js b/ui-v2/tests/lib/page-object/radiogroup.js new file mode 100644 index 000000000..b5344ce7a --- /dev/null +++ b/ui-v2/tests/lib/page-object/radiogroup.js @@ -0,0 +1,27 @@ +import { is, clickable } from 'ember-cli-page-object'; +import ucfirst from 'consul-ui/utils/ucfirst'; +export default function(name, items) { + return items.reduce(function(prev, item, i, arr) { + // if item is empty then it means 'all' + // otherwise camelCase based on something-here = somethingHere for the key + const key = + item === '' + ? 'all' + : item.split('-').reduce(function(prev, item, i, arr) { + if (i === 0) { + return item; + } + return prev + ucfirst(item); + }); + return { + ...prev, + ...{ + [`${key}IsSelected`]: is( + ':checked', + `[data-test-radiobutton="${name}_${item}"] > input[type="radio"]` + ), + [key]: clickable(`[data-test-radiobutton="${name}_${item}"]`), + }, + }; + }, {}); +} diff --git a/ui-v2/tests/pages.js b/ui-v2/tests/pages.js new file mode 100644 index 000000000..1c96d8b94 --- /dev/null +++ b/ui-v2/tests/pages.js @@ -0,0 +1,23 @@ +import index from 'consul-ui/tests/pages/index'; +import dcs from 'consul-ui/tests/pages/dc'; +import services from 'consul-ui/tests/pages/dc/services/index'; +import service from 'consul-ui/tests/pages/dc/services/show'; +import nodes from 'consul-ui/tests/pages/dc/nodes/index'; +import node from 'consul-ui/tests/pages/dc/nodes/show'; +import kvs from 'consul-ui/tests/pages/dc/kv/index'; +import kv from 'consul-ui/tests/pages/dc/kv/edit'; +import acls from 'consul-ui/tests/pages/dc/acls/index'; +import acl from 'consul-ui/tests/pages/dc/acls/edit'; + +export default { + index, + dcs, + services, + service, + nodes, + node, + kvs, + kv, + acls, + acl, +}; diff --git a/ui-v2/tests/pages/components/acl-filter.js b/ui-v2/tests/pages/components/acl-filter.js new file mode 100644 index 000000000..057c5bc1f --- /dev/null +++ b/ui-v2/tests/pages/components/acl-filter.js @@ -0,0 +1,9 @@ +import { triggerable } from 'ember-cli-page-object'; +import radiogroup from 'consul-ui/tests/lib/page-object/radiogroup'; +export default { + ...radiogroup('type', ['', 'management', 'client']), + ...{ + scope: '[data-test-acl-filter]', + search: triggerable('keypress', '[name="s"]'), + }, +}; diff --git a/ui-v2/tests/pages/components/catalog-filter.js b/ui-v2/tests/pages/components/catalog-filter.js new file mode 100644 index 000000000..315471186 --- /dev/null +++ b/ui-v2/tests/pages/components/catalog-filter.js @@ -0,0 +1,9 @@ +import { triggerable } from 'ember-cli-page-object'; +import radiogroup from 'consul-ui/tests/lib/page-object/radiogroup'; +export default { + ...radiogroup('status', ['', 'passing', 'warning', 'critical']), + ...{ + scope: '[data-test-catalog-filter]', + search: triggerable('keypress', '[name="s"]'), + }, +}; diff --git a/ui-v2/tests/pages/components/page.js b/ui-v2/tests/pages/components/page.js new file mode 100644 index 000000000..507dcaca9 --- /dev/null +++ b/ui-v2/tests/pages/components/page.js @@ -0,0 +1,25 @@ +import { clickable } from 'ember-cli-page-object'; +export default { + navigation: ['services', 'nodes', 'kvs', 'acls', 'docs', 'settings'].reduce( + function(prev, item, i, arr) { + const key = item; + return Object.assign({}, prev, { + [key]: clickable(`[data-test-main-nav-${item}] a`), + }); + }, + { + scope: '[data-test-navigation]', + } + ), + footer: ['copyright', 'docs'].reduce( + function(prev, item, i, arr) { + const key = item; + return Object.assign({}, prev, { + [key]: clickable(`[data-test-main-nav-${item}`), + }); + }, + { + scope: '[data-test-footer]', + } + ), +}; diff --git a/ui-v2/tests/pages/dc.js b/ui-v2/tests/pages/dc.js new file mode 100644 index 000000000..f181c0b4c --- /dev/null +++ b/ui-v2/tests/pages/dc.js @@ -0,0 +1,9 @@ +import { create, visitable, attribute, collection, clickable } from 'ember-cli-page-object'; + +export default create({ + visit: visitable('/:dc/services/'), + dcs: collection('[data-test-datacenter-picker]'), + showDatacenters: clickable('[data-test-datacenter-selected]'), + selectedDc: attribute('data-test-datacenter-selected', '[data-test-datacenter-selected]'), + selectedDatacenter: attribute('data-test-datacenter-selected', '[data-test-datacenter-selected]'), +}); diff --git a/ui-v2/tests/pages/dc/acls/edit.js b/ui-v2/tests/pages/dc/acls/edit.js new file mode 100644 index 000000000..2fb136786 --- /dev/null +++ b/ui-v2/tests/pages/dc/acls/edit.js @@ -0,0 +1,7 @@ +import { create, visitable, fillable, clickable } from 'ember-cli-page-object'; + +export default create({ + visit: visitable('/:dc/acls/:acl'), + fillIn: fillable('input, textarea, [contenteditable]'), + submit: clickable('[type=submit]'), +}); diff --git a/ui-v2/tests/pages/dc/acls/index.js b/ui-v2/tests/pages/dc/acls/index.js new file mode 100644 index 000000000..be5881be8 --- /dev/null +++ b/ui-v2/tests/pages/dc/acls/index.js @@ -0,0 +1,11 @@ +import { create, visitable, collection, attribute, clickable } from 'ember-cli-page-object'; + +import filter from 'consul-ui/tests/pages/components/acl-filter'; +export default create({ + visit: visitable('/:dc/acls'), + acls: collection('[data-test-acl]', { + name: attribute('data-test-acl'), + acl: clickable('a'), + }), + filter: filter, +}); diff --git a/ui-v2/tests/pages/dc/kv/edit.js b/ui-v2/tests/pages/dc/kv/edit.js new file mode 100644 index 000000000..8dab1a326 --- /dev/null +++ b/ui-v2/tests/pages/dc/kv/edit.js @@ -0,0 +1,7 @@ +import { create, visitable, fillable, clickable } from 'ember-cli-page-object'; + +export default create({ + visit: visitable('/:dc/kv/:kv'), + fillIn: fillable('input, textarea, [contenteditable]'), + submit: clickable('[type=submit]'), +}); diff --git a/ui-v2/tests/pages/dc/kv/index.js b/ui-v2/tests/pages/dc/kv/index.js new file mode 100644 index 000000000..fb11214ea --- /dev/null +++ b/ui-v2/tests/pages/dc/kv/index.js @@ -0,0 +1,6 @@ +import { create, visitable, collection } from 'ember-cli-page-object'; + +export default create({ + visit: visitable('/:dc/kv'), + kvs: collection('[data-test-kv]'), +}); diff --git a/ui-v2/tests/pages/dc/nodes/index.js b/ui-v2/tests/pages/dc/nodes/index.js new file mode 100644 index 000000000..963186306 --- /dev/null +++ b/ui-v2/tests/pages/dc/nodes/index.js @@ -0,0 +1,11 @@ +import { create, visitable, collection, attribute, clickable } from 'ember-cli-page-object'; +import filter from 'consul-ui/tests/pages/components/catalog-filter'; + +export default create({ + visit: visitable('/:dc/nodes'), + nodes: collection('[data-test-node]', { + name: attribute('data-test-node'), + node: clickable('header a'), + }), + filter: filter, +}); diff --git a/ui-v2/tests/pages/dc/nodes/show.js b/ui-v2/tests/pages/dc/nodes/show.js new file mode 100644 index 000000000..b10f8f9e5 --- /dev/null +++ b/ui-v2/tests/pages/dc/nodes/show.js @@ -0,0 +1,7 @@ +import { create, visitable } from 'ember-cli-page-object'; + +import radiogroup from 'consul-ui/tests/lib/page-object/radiogroup'; +export default create({ + visit: visitable('/:dc/nodes/:node'), + tabs: radiogroup('tab', ['health-checks', 'services', 'round-trip-time', 'lock-sessions']), +}); diff --git a/ui-v2/tests/pages/dc/services/index.js b/ui-v2/tests/pages/dc/services/index.js new file mode 100644 index 000000000..acfd554ce --- /dev/null +++ b/ui-v2/tests/pages/dc/services/index.js @@ -0,0 +1,16 @@ +import { create, visitable, collection, attribute, clickable } from 'ember-cli-page-object'; + +import page from 'consul-ui/tests/pages/components/page'; +import filter from 'consul-ui/tests/pages/components/catalog-filter'; + +export default create({ + visit: visitable('/:dc/services'), + services: collection('[data-test-service]', { + name: attribute('data-test-service'), + service: clickable('a'), + }), + dcs: collection('[data-test-datacenter-picker]'), + navigation: page.navigation, + + filter: filter, +}); diff --git a/ui-v2/tests/pages/dc/services/show.js b/ui-v2/tests/pages/dc/services/show.js new file mode 100644 index 000000000..136db28e7 --- /dev/null +++ b/ui-v2/tests/pages/dc/services/show.js @@ -0,0 +1,10 @@ +import { create, visitable, collection, attribute } from 'ember-cli-page-object'; +import filter from 'consul-ui/tests/pages/components/catalog-filter'; + +export default create({ + visit: visitable('/:dc/services/:service'), + nodes: collection('[data-test-node]', { + name: attribute('data-test-node'), + }), + filter: filter, +}); diff --git a/ui-v2/tests/pages/index.js b/ui-v2/tests/pages/index.js new file mode 100644 index 000000000..28842ef3b --- /dev/null +++ b/ui-v2/tests/pages/index.js @@ -0,0 +1,6 @@ +import { create, visitable, collection } from 'ember-cli-page-object'; + +export default create({ + visit: visitable('/'), + dcs: collection('[data-test-datacenter-list]'), +}); diff --git a/ui-v2/tests/test-helper.js b/ui-v2/tests/test-helper.js new file mode 100644 index 000000000..27708aefc --- /dev/null +++ b/ui-v2/tests/test-helper.js @@ -0,0 +1,9 @@ +import Application from '../app'; +import config from '../config/environment'; +import { setApplication } from '@ember/test-helpers'; +import { start } from 'ember-qunit'; +import './helpers/flash-message'; + +setApplication(Application.create(config.APP)); + +start(); diff --git a/ui-v2/tests/unit/adapters/acl-test.js b/ui-v2/tests/unit/adapters/acl-test.js new file mode 100644 index 000000000..faccc4787 --- /dev/null +++ b/ui-v2/tests/unit/adapters/acl-test.js @@ -0,0 +1,12 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; + +module('Unit | Adapter | acl', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let adapter = this.owner.lookup('adapter:acl'); + assert.ok(adapter); + }); +}); diff --git a/ui-v2/tests/unit/adapters/application-test.js b/ui-v2/tests/unit/adapters/application-test.js new file mode 100644 index 000000000..eff23bb94 --- /dev/null +++ b/ui-v2/tests/unit/adapters/application-test.js @@ -0,0 +1,12 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; + +module('Unit | Adapter | application', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let adapter = this.owner.lookup('adapter:application'); + assert.ok(adapter); + }); +}); diff --git a/ui-v2/tests/unit/adapters/coordinate-test.js b/ui-v2/tests/unit/adapters/coordinate-test.js new file mode 100644 index 000000000..dd0fe72ba --- /dev/null +++ b/ui-v2/tests/unit/adapters/coordinate-test.js @@ -0,0 +1,12 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; + +module('Unit | Adapter | coordinate', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let adapter = this.owner.lookup('adapter:coordinate'); + assert.ok(adapter); + }); +}); diff --git a/ui-v2/tests/unit/adapters/dc-test.js b/ui-v2/tests/unit/adapters/dc-test.js new file mode 100644 index 000000000..253923871 --- /dev/null +++ b/ui-v2/tests/unit/adapters/dc-test.js @@ -0,0 +1,12 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; + +module('Unit | Adapter | dc', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let adapter = this.owner.lookup('adapter:dc'); + assert.ok(adapter); + }); +}); diff --git a/ui-v2/tests/unit/adapters/kv-test.js b/ui-v2/tests/unit/adapters/kv-test.js new file mode 100644 index 000000000..c0f03b174 --- /dev/null +++ b/ui-v2/tests/unit/adapters/kv-test.js @@ -0,0 +1,115 @@ +import { module, skip } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import test from 'ember-sinon-qunit/test-support/test'; +import stubSuper from 'consul-ui/tests/helpers/stub-super'; + +module('Unit | Adapter | kv', function(hooks) { + setupTest(hooks); + + skip('what should handleResponse return when createRecord is called with a `false` payload'); + + // Replace this with your real tests. + test('it exists', function(assert) { + const adapter = this.owner.lookup('adapter:kv'); + assert.ok(adapter); + }); + test('handleResponse with single type requests', function(assert) { + const adapter = this.owner.lookup('adapter:kv'); + const expected = 'key/name'; + const dc = 'dc1'; + const url = `/v1/kv/${expected}?dc=${dc}`; + // handleResponse calls `urlForCreateRecord`, so stub that out + // so we are testing a single unit of code + const urlForCreateRecord = this.stub(adapter, 'urlForCreateRecord'); + urlForCreateRecord.returns(url); + // handleResponse calls `this._super`, so stub that out also + // so we only test a single unit + // calling `it() will now create a 'sandbox' with a stubbed `_super` + const it = stubSuper(adapter, function(status, headers, response, requestData) { + return response; + }); + + // right now, the message here is more for documentation purposes + // and to replicate the `test`/`it` API + // it does not currently get printed to the QUnit test runner output + + // the following tests use our stubbed `_super` sandbox + it('returns a KV uid pojo when createRecord is called with a `true` payload', function() { + const uid = { + uid: JSON.stringify([dc, expected]), + }; + const headers = {}; + const actual = adapter.handleResponse(200, headers, true, { url: url }); + assert.deepEqual(actual, uid); + }); + it("returns the original payload plus the uid if it's not a Boolean", function() { + const uid = { + uid: JSON.stringify([dc, expected]), + }; + const actual = adapter.handleResponse(200, {}, uid, { url: url }); + assert.deepEqual(actual, uid); + }); + }); + skip('handleRequest for multiple type requests'); + test('dataForRequest returns', function(assert) { + const adapter = this.owner.lookup('adapter:kv'); + // dataForRequest goes through window.atob + adapter.decoder = { + execute: this.stub().returnsArg(0), + }; + // + const expected = 'value'; + const deep = { + kv: { + Value: expected, + }, + }; + const it = stubSuper(adapter, this.stub().returns(deep)); + it('returns string KV value when calling update/create record', function() { + const requests = [ + { + request: 'updateRecord', + expected: expected, + }, + { + request: 'createRecord', + expected: expected, + }, + ]; + requests.forEach(function(item, i, arr) { + const actual = adapter.dataForRequest({ + requestType: item.request, + }); + assert.equal(actual, expected); + }); + }); + // not included in the above forEach as it's a slightly different concept + it('returns string KV object when calling queryRecord (or anything else) record', function() { + const actual = adapter.dataForRequest({ + requestType: 'queryRecord', + }); + assert.equal(actual, null); + }); + }); + test('methodForRequest returns the correct method', function(assert) { + const adapter = this.owner.lookup('adapter:kv'); + const requests = [ + { + request: 'deleteRecord', + expected: 'DELETE', + }, + { + request: 'createRecord', + expected: 'PUT', + }, + { + request: 'anythingElse', + expected: 'GET', + }, + ]; + requests.forEach(function(item) { + const actual = adapter.methodForRequest({ requestType: item.request }); + assert.equal(actual, item.expected); + }); + }); +}); diff --git a/ui-v2/tests/unit/adapters/node-test.js b/ui-v2/tests/unit/adapters/node-test.js new file mode 100644 index 000000000..9ab8c4f51 --- /dev/null +++ b/ui-v2/tests/unit/adapters/node-test.js @@ -0,0 +1,12 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; + +module('Unit | Adapter | node', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let adapter = this.owner.lookup('adapter:node'); + assert.ok(adapter); + }); +}); diff --git a/ui-v2/tests/unit/adapters/session-test.js b/ui-v2/tests/unit/adapters/session-test.js new file mode 100644 index 000000000..c76eec5eb --- /dev/null +++ b/ui-v2/tests/unit/adapters/session-test.js @@ -0,0 +1,12 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; + +module('Unit | Adapter | session', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let adapter = this.owner.lookup('adapter:session'); + assert.ok(adapter); + }); +}); diff --git a/ui-v2/tests/unit/controllers/dc-test.js b/ui-v2/tests/unit/controllers/dc-test.js new file mode 100644 index 000000000..89be52666 --- /dev/null +++ b/ui-v2/tests/unit/controllers/dc-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('controller:dc', 'Unit | Controller | dc', { + // Specify the other units that are required for this test. + // needs: ['controller:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let controller = this.subject(); + assert.ok(controller); +}); diff --git a/ui-v2/tests/unit/controllers/dc/acls/edit-test.js b/ui-v2/tests/unit/controllers/dc/acls/edit-test.js new file mode 100644 index 000000000..6a6fb1edc --- /dev/null +++ b/ui-v2/tests/unit/controllers/dc/acls/edit-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('controller:dc/acls/edit', 'Unit | Controller | dc/acls/edit', { + // Specify the other units that are required for this test. + // needs: ['controller:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let controller = this.subject(); + assert.ok(controller); +}); diff --git a/ui-v2/tests/unit/controllers/dc/acls/index-test.js b/ui-v2/tests/unit/controllers/dc/acls/index-test.js new file mode 100644 index 000000000..3772df42f --- /dev/null +++ b/ui-v2/tests/unit/controllers/dc/acls/index-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('controller:dc/acls/index', 'Unit | Controller | dc/acls/index', { + // Specify the other units that are required for this test. + // needs: ['controller:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let controller = this.subject(); + assert.ok(controller); +}); diff --git a/ui-v2/tests/unit/controllers/dc/kv/create-test.js b/ui-v2/tests/unit/controllers/dc/kv/create-test.js new file mode 100644 index 000000000..723ab126a --- /dev/null +++ b/ui-v2/tests/unit/controllers/dc/kv/create-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('controller:dc/kv/create', 'Unit | Controller | dc/kv/create', { + // Specify the other units that are required for this test. + needs: ['service:btoa'], +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let controller = this.subject(); + assert.ok(controller); +}); diff --git a/ui-v2/tests/unit/controllers/dc/kv/edit-test.js b/ui-v2/tests/unit/controllers/dc/kv/edit-test.js new file mode 100644 index 000000000..02c0b816f --- /dev/null +++ b/ui-v2/tests/unit/controllers/dc/kv/edit-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('controller:dc/kv/edit', 'Unit | Controller | dc/kv/edit', { + // Specify the other units that are required for this test. + needs: ['service:btoa'], +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let controller = this.subject(); + assert.ok(controller); +}); diff --git a/ui-v2/tests/unit/controllers/dc/kv/root-create-test.js b/ui-v2/tests/unit/controllers/dc/kv/root-create-test.js new file mode 100644 index 000000000..845c1ed47 --- /dev/null +++ b/ui-v2/tests/unit/controllers/dc/kv/root-create-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('controller:dc/kv/root-create', 'Unit | Controller | dc/kv/root-create', { + // Specify the other units that are required for this test. + needs: ['service:btoa'], +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let controller = this.subject(); + assert.ok(controller); +}); diff --git a/ui-v2/tests/unit/controllers/dc/nodes/index-test.js b/ui-v2/tests/unit/controllers/dc/nodes/index-test.js new file mode 100644 index 000000000..a24ec182f --- /dev/null +++ b/ui-v2/tests/unit/controllers/dc/nodes/index-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('controller:dc/nodes/index', 'Unit | Controller | dc/nodes/index', { + // Specify the other units that are required for this test. + // needs: ['controller:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let controller = this.subject(); + assert.ok(controller); +}); diff --git a/ui-v2/tests/unit/controllers/dc/nodes/show-test.js b/ui-v2/tests/unit/controllers/dc/nodes/show-test.js new file mode 100644 index 000000000..12974449f --- /dev/null +++ b/ui-v2/tests/unit/controllers/dc/nodes/show-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('controller:dc/nodes/show', 'Unit | Controller | dc/nodes/show', { + // Specify the other units that are required for this test. + // needs: ['controller:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let controller = this.subject(); + assert.ok(controller); +}); diff --git a/ui-v2/tests/unit/controllers/dc/services/index-test.js b/ui-v2/tests/unit/controllers/dc/services/index-test.js new file mode 100644 index 000000000..c9e423e1d --- /dev/null +++ b/ui-v2/tests/unit/controllers/dc/services/index-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('controller:dc/services/index', 'Unit | Controller | dc/services/index', { + // Specify the other units that are required for this test. + // needs: ['controller:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let controller = this.subject(); + assert.ok(controller); +}); diff --git a/ui-v2/tests/unit/controllers/dc/services/show-test.js b/ui-v2/tests/unit/controllers/dc/services/show-test.js new file mode 100644 index 000000000..6e90df4d1 --- /dev/null +++ b/ui-v2/tests/unit/controllers/dc/services/show-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('controller:dc/services/show', 'Unit | Controller | dc/services/show', { + // Specify the other units that are required for this test. + // needs: ['controller:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let controller = this.subject(); + assert.ok(controller); +}); diff --git a/ui-v2/tests/unit/mixins/acl/with-actions-test.js b/ui-v2/tests/unit/mixins/acl/with-actions-test.js new file mode 100644 index 000000000..d92d1c86f --- /dev/null +++ b/ui-v2/tests/unit/mixins/acl/with-actions-test.js @@ -0,0 +1,20 @@ +import EmberObject from '@ember/object'; +import AclWithActionsMixin from 'consul-ui/mixins/acl/with-actions'; +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('mixin:acl/with-actions', 'Unit | Mixin | acl/with actions', { + // Specify the other units that are required for this test. + needs: ['mixin:with-feedback'], + subject: function() { + const AclWithActionsObject = EmberObject.extend(AclWithActionsMixin); + this.register('test-container:acl/with-actions-object', AclWithActionsObject); + // TODO: May need to actually get this from the container + return AclWithActionsObject; + }, +}); + +// Replace this with your real tests. +test('it works', function(assert) { + const subject = this.subject(); + assert.ok(subject); +}); diff --git a/ui-v2/tests/unit/mixins/click-outside-test.js b/ui-v2/tests/unit/mixins/click-outside-test.js new file mode 100644 index 000000000..995e03c8b --- /dev/null +++ b/ui-v2/tests/unit/mixins/click-outside-test.js @@ -0,0 +1,12 @@ +import EmberObject from '@ember/object'; +import ClickOutsideMixin from 'consul-ui/mixins/click-outside'; +import { module, test } from 'qunit'; + +module('Unit | Mixin | click outside'); + +// Replace this with your real tests. +test('it works', function(assert) { + let ClickOutsideObject = EmberObject.extend(ClickOutsideMixin); + let subject = ClickOutsideObject.create(); + assert.ok(subject); +}); diff --git a/ui-v2/tests/unit/mixins/kv/with-actions-test.js b/ui-v2/tests/unit/mixins/kv/with-actions-test.js new file mode 100644 index 000000000..eccc3a141 --- /dev/null +++ b/ui-v2/tests/unit/mixins/kv/with-actions-test.js @@ -0,0 +1,20 @@ +import EmberObject from '@ember/object'; +import KvWithActionsMixin from 'consul-ui/mixins/kv/with-actions'; +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('mixin:kv/with-actions', 'Unit | Mixin | kv/with actions', { + // Specify the other units that are required for this test. + needs: ['mixin:with-feedback'], + subject: function() { + const KvWithActionsObject = EmberObject.extend(KvWithActionsMixin); + this.register('test-container:kv/with-actions-object', KvWithActionsObject); + // TODO: May need to actually get this from the container + return KvWithActionsObject; + }, +}); + +// Replace this with your real tests. +test('it works', function(assert) { + const subject = this.subject(); + assert.ok(subject); +}); diff --git a/ui-v2/tests/unit/mixins/with-feedback-test.js b/ui-v2/tests/unit/mixins/with-feedback-test.js new file mode 100644 index 000000000..6e79cf62f --- /dev/null +++ b/ui-v2/tests/unit/mixins/with-feedback-test.js @@ -0,0 +1,20 @@ +import EmberObject from '@ember/object'; +import WithFeedbackMixin from 'consul-ui/mixins/with-feedback'; +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('mixin:with-feedback', 'Unit | Mixin | with feedback', { + // Specify the other units that are required for this test. + needs: ['service:feedback'], + subject: function() { + const WithFeedbackObject = EmberObject.extend(WithFeedbackMixin); + this.register('test-container:with-feedback-object', WithFeedbackObject); + // TODO: May need to actually get this from the container + return WithFeedbackObject; + }, +}); + +// Replace this with your real tests. +test('it works', function(assert) { + const subject = this.subject(); + assert.ok(subject); +}); diff --git a/ui-v2/tests/unit/mixins/with-filtering-test.js b/ui-v2/tests/unit/mixins/with-filtering-test.js new file mode 100644 index 000000000..f6207f433 --- /dev/null +++ b/ui-v2/tests/unit/mixins/with-filtering-test.js @@ -0,0 +1,12 @@ +import EmberObject from '@ember/object'; +import WithFilteringMixin from 'consul-ui/mixins/with-filtering'; +import { module, test } from 'qunit'; + +module('Unit | Mixin | with filtering'); + +// Replace this with your real tests. +test('it works', function(assert) { + let WithFilteringObject = EmberObject.extend(WithFilteringMixin); + let subject = WithFilteringObject.create(); + assert.ok(subject); +}); diff --git a/ui-v2/tests/unit/mixins/with-health-filtering-test.js b/ui-v2/tests/unit/mixins/with-health-filtering-test.js new file mode 100644 index 000000000..3cdb5cc8f --- /dev/null +++ b/ui-v2/tests/unit/mixins/with-health-filtering-test.js @@ -0,0 +1,12 @@ +import EmberObject from '@ember/object'; +import WithHealthFilteringMixin from 'consul-ui/mixins/with-health-filtering'; +import { module, test } from 'qunit'; + +module('Unit | Mixin | with health filtering'); + +// Replace this with your real tests. +test('it works', function(assert) { + let WithHealthFilteringObject = EmberObject.extend(WithHealthFilteringMixin); + let subject = WithHealthFilteringObject.create(); + assert.ok(subject); +}); diff --git a/ui-v2/tests/unit/models/acl-test.js b/ui-v2/tests/unit/models/acl-test.js new file mode 100644 index 000000000..24df7d51e --- /dev/null +++ b/ui-v2/tests/unit/models/acl-test.js @@ -0,0 +1,14 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Model | acl', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let model = run(() => store.createRecord('acl', {})); + assert.ok(model); + }); +}); diff --git a/ui-v2/tests/unit/models/coordinate-test.js b/ui-v2/tests/unit/models/coordinate-test.js new file mode 100644 index 000000000..905affc8f --- /dev/null +++ b/ui-v2/tests/unit/models/coordinate-test.js @@ -0,0 +1,14 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Model | coordinate', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let model = run(() => store.createRecord('coordinate', {})); + assert.ok(model); + }); +}); diff --git a/ui-v2/tests/unit/models/dc-test.js b/ui-v2/tests/unit/models/dc-test.js new file mode 100644 index 000000000..a35d1ea86 --- /dev/null +++ b/ui-v2/tests/unit/models/dc-test.js @@ -0,0 +1,14 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Model | dc', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let model = run(() => store.createRecord('dc', {})); + assert.ok(model); + }); +}); diff --git a/ui-v2/tests/unit/models/kv-test.js b/ui-v2/tests/unit/models/kv-test.js new file mode 100644 index 000000000..e12f8a1ca --- /dev/null +++ b/ui-v2/tests/unit/models/kv-test.js @@ -0,0 +1,14 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Model | kv', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let model = run(() => store.createRecord('kv', {})); + assert.ok(model); + }); +}); diff --git a/ui-v2/tests/unit/models/node-test.js b/ui-v2/tests/unit/models/node-test.js new file mode 100644 index 000000000..99ae19bad --- /dev/null +++ b/ui-v2/tests/unit/models/node-test.js @@ -0,0 +1,14 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Model | node', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let model = run(() => store.createRecord('node', {})); + assert.ok(model); + }); +}); diff --git a/ui-v2/tests/unit/models/service-test.js b/ui-v2/tests/unit/models/service-test.js new file mode 100644 index 000000000..71ddbac40 --- /dev/null +++ b/ui-v2/tests/unit/models/service-test.js @@ -0,0 +1,14 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Model | service', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let model = run(() => store.createRecord('service', {})); + assert.ok(model); + }); +}); diff --git a/ui-v2/tests/unit/models/session-test.js b/ui-v2/tests/unit/models/session-test.js new file mode 100644 index 000000000..3db4573c4 --- /dev/null +++ b/ui-v2/tests/unit/models/session-test.js @@ -0,0 +1,14 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Model | session', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let model = run(() => store.createRecord('session', {})); + assert.ok(model); + }); +}); diff --git a/ui-v2/tests/unit/routes/application-test.js b/ui-v2/tests/unit/routes/application-test.js new file mode 100644 index 000000000..386b5f1fc --- /dev/null +++ b/ui-v2/tests/unit/routes/application-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:application', 'Unit | Route | application', { + // Specify the other units that are required for this test. + needs: ['service:dc'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc-test.js b/ui-v2/tests/unit/routes/dc-test.js new file mode 100644 index 000000000..16c9f1881 --- /dev/null +++ b/ui-v2/tests/unit/routes/dc-test.js @@ -0,0 +1,12 @@ +import { moduleFor } from 'ember-qunit'; +import test from 'ember-sinon-qunit/test-support/test'; + +moduleFor('route:dc', 'Unit | Route | dc', { + // Specify the other units that are required for this test. + needs: ['service:dc', 'service:settings'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc/acls/create-test.js b/ui-v2/tests/unit/routes/dc/acls/create-test.js new file mode 100644 index 000000000..9488d05a7 --- /dev/null +++ b/ui-v2/tests/unit/routes/dc/acls/create-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:dc/acls/create', 'Unit | Route | dc/acls/create', { + // Specify the other units that are required for this test. + needs: ['service:acls', 'service:feedback', 'service:settings', 'service:flashMessages'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc/acls/edit-test.js b/ui-v2/tests/unit/routes/dc/acls/edit-test.js new file mode 100644 index 000000000..c6df83594 --- /dev/null +++ b/ui-v2/tests/unit/routes/dc/acls/edit-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:dc/acls/edit', 'Unit | Route | dc/acls/edit', { + // Specify the other units that are required for this test. + needs: ['service:acls', 'service:settings', 'service:feedback', 'service:flashMessages'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc/acls/index-test.js b/ui-v2/tests/unit/routes/dc/acls/index-test.js new file mode 100644 index 000000000..7ab2ac7d8 --- /dev/null +++ b/ui-v2/tests/unit/routes/dc/acls/index-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:dc/acls/index', 'Unit | Route | dc/acls/index', { + // Specify the other units that are required for this test. + needs: ['service:acls', 'service:feedback', 'service:settings', 'service:flashMessages'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc/kv/create-test.js b/ui-v2/tests/unit/routes/dc/kv/create-test.js new file mode 100644 index 000000000..4c8ce699a --- /dev/null +++ b/ui-v2/tests/unit/routes/dc/kv/create-test.js @@ -0,0 +1,11 @@ +import { moduleFor, skip } from 'ember-qunit'; + +moduleFor('route:dc/kv/create', 'Unit | Route | dc/kv/create', { + // Specify the other units that are required for this test. + needs: ['service:kv', 'service:feedback'] +}); + +skip('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc/kv/edit-test.js b/ui-v2/tests/unit/routes/dc/kv/edit-test.js new file mode 100644 index 000000000..3839b4452 --- /dev/null +++ b/ui-v2/tests/unit/routes/dc/kv/edit-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:dc/kv/edit', 'Unit | Route | dc/kv/edit', { + // Specify the other units that are required for this test. + needs: ['service:kv', 'service:session', 'service:feedback', 'service:flashMessages'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc/kv/index-test.js b/ui-v2/tests/unit/routes/dc/kv/index-test.js new file mode 100644 index 000000000..bf82dd2b2 --- /dev/null +++ b/ui-v2/tests/unit/routes/dc/kv/index-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:dc/kv/index', 'Unit | Route | dc/kv/index', { + // Specify the other units that are required for this test. + needs: ['service:kv', 'service:feedback', 'service:flashMessages'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc/kv/root-create-test.js b/ui-v2/tests/unit/routes/dc/kv/root-create-test.js new file mode 100644 index 000000000..97b7391a0 --- /dev/null +++ b/ui-v2/tests/unit/routes/dc/kv/root-create-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:dc/kv/root-create', 'Unit | Route | dc/kv/root create', { + // Specify the other units that are required for this test. + needs: ['service:kv', 'service:feedback', 'service:flashMessages'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc/nodes/index-test.js b/ui-v2/tests/unit/routes/dc/nodes/index-test.js new file mode 100644 index 000000000..b41bf938e --- /dev/null +++ b/ui-v2/tests/unit/routes/dc/nodes/index-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:dc/nodes/index', 'Unit | Route | dc/nodes/index', { + // Specify the other units that are required for this test. + needs: ['service:nodes'] +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc/nodes/show-test.js b/ui-v2/tests/unit/routes/dc/nodes/show-test.js new file mode 100644 index 000000000..ce848211f --- /dev/null +++ b/ui-v2/tests/unit/routes/dc/nodes/show-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:dc/nodes/show', 'Unit | Route | dc/nodes/show', { + // Specify the other units that are required for this test. + needs: ['service:nodes', 'service:session', 'service:feedback', 'service:flashMessages'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc/services/index-test.js b/ui-v2/tests/unit/routes/dc/services/index-test.js new file mode 100644 index 000000000..9fe5f2c7a --- /dev/null +++ b/ui-v2/tests/unit/routes/dc/services/index-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:dc/services/index', 'Unit | Route | dc/services/index', { + // Specify the other units that are required for this test. + needs: ['service:services'] +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/dc/services/show-test.js b/ui-v2/tests/unit/routes/dc/services/show-test.js new file mode 100644 index 000000000..cf6d08da9 --- /dev/null +++ b/ui-v2/tests/unit/routes/dc/services/show-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:dc/services/show', 'Unit | Route | dc/services/show', { + // Specify the other units that are required for this test. + needs: ['service:services'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/index-test.js b/ui-v2/tests/unit/routes/index-test.js new file mode 100644 index 000000000..c63d14762 --- /dev/null +++ b/ui-v2/tests/unit/routes/index-test.js @@ -0,0 +1,38 @@ +import { moduleFor } from 'ember-qunit'; +// import Service from '@ember/service'; +import test from 'ember-sinon-qunit/test-support/test'; + +moduleFor('route:index', 'Unit | Route | index', { + // Specify the other units that are required for this test. + needs: ['service:dc'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); +// test('model calls findAll', function(assert) { +// const expected = true; +// const findAll = this.stub(); +// findAll.returns(expected); +// this.register( +// 'service:dc', +// Service.extend({ +// findAll: findAll, +// }) +// ); +// const route = this.subject(); +// const actual = route.model(); +// assert.equal(actual, expected); +// assert.ok(findAll.calledOnce); +// }); +// test('it transitions straight away if there is only one datacenter', function(assert) { +// const route = this.subject(); +// const transitionTo = this.stub(route, 'transitionTo'); +// const get = this.stub(); +// get.returns(1); +// route.afterModel({ get: get }); +// get.returns(2); +// route.afterModel({ get: get }); +// assert.ok(transitionTo.calledOnce); +// }); diff --git a/ui-v2/tests/unit/routes/notfound-test.js b/ui-v2/tests/unit/routes/notfound-test.js new file mode 100644 index 000000000..ff5320697 --- /dev/null +++ b/ui-v2/tests/unit/routes/notfound-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:notfound', 'Unit | Route | notfound', { + // Specify the other units that are required for this test. + // needs: ['controller:foo'] +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/routes/settings-test.js b/ui-v2/tests/unit/routes/settings-test.js new file mode 100644 index 000000000..3cb8801ef --- /dev/null +++ b/ui-v2/tests/unit/routes/settings-test.js @@ -0,0 +1,11 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('route:settings', 'Unit | Route | settings', { + // Specify the other units that are required for this test. + needs: ['service:dc', 'service:settings', 'service:feedback', 'service:flashMessages'], +}); + +test('it exists', function(assert) { + let route = this.subject(); + assert.ok(route); +}); diff --git a/ui-v2/tests/unit/serializers/acl-test.js b/ui-v2/tests/unit/serializers/acl-test.js new file mode 100644 index 000000000..ee548017f --- /dev/null +++ b/ui-v2/tests/unit/serializers/acl-test.js @@ -0,0 +1,24 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Serializer | acl', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let serializer = store.serializerFor('acl'); + + assert.ok(serializer); + }); + + test('it serializes records', function(assert) { + let store = this.owner.lookup('service:store'); + let record = run(() => store.createRecord('acl', {})); + + let serializedRecord = record.serialize(); + + assert.ok(serializedRecord); + }); +}); diff --git a/ui-v2/tests/unit/serializers/application-test.js b/ui-v2/tests/unit/serializers/application-test.js new file mode 100644 index 000000000..f875eb315 --- /dev/null +++ b/ui-v2/tests/unit/serializers/application-test.js @@ -0,0 +1,14 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; + +module('Unit | Serializer | application', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let serializer = store.serializerFor('application'); + + assert.ok(serializer); + }); +}); diff --git a/ui-v2/tests/unit/serializers/coordinate-test.js b/ui-v2/tests/unit/serializers/coordinate-test.js new file mode 100644 index 000000000..7a0f2449b --- /dev/null +++ b/ui-v2/tests/unit/serializers/coordinate-test.js @@ -0,0 +1,24 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Serializer | coordinate', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let serializer = store.serializerFor('coordinate'); + + assert.ok(serializer); + }); + + test('it serializes records', function(assert) { + let store = this.owner.lookup('service:store'); + let record = run(() => store.createRecord('coordinate', {})); + + let serializedRecord = record.serialize(); + + assert.ok(serializedRecord); + }); +}); diff --git a/ui-v2/tests/unit/serializers/dc-test.js b/ui-v2/tests/unit/serializers/dc-test.js new file mode 100644 index 000000000..658877af2 --- /dev/null +++ b/ui-v2/tests/unit/serializers/dc-test.js @@ -0,0 +1,24 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Serializer | dc', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let serializer = store.serializerFor('dc'); + + assert.ok(serializer); + }); + + test('it serializes records', function(assert) { + let store = this.owner.lookup('service:store'); + let record = run(() => store.createRecord('dc', {})); + + let serializedRecord = record.serialize(); + + assert.ok(serializedRecord); + }); +}); diff --git a/ui-v2/tests/unit/serializers/kv-test.js b/ui-v2/tests/unit/serializers/kv-test.js new file mode 100644 index 000000000..0470f6d37 --- /dev/null +++ b/ui-v2/tests/unit/serializers/kv-test.js @@ -0,0 +1,24 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Serializer | kv', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let serializer = store.serializerFor('kv'); + + assert.ok(serializer); + }); + + test('it serializes records', function(assert) { + let store = this.owner.lookup('service:store'); + let record = run(() => store.createRecord('kv', {})); + + let serializedRecord = record.serialize(); + + assert.ok(serializedRecord); + }); +}); diff --git a/ui-v2/tests/unit/serializers/node-test.js b/ui-v2/tests/unit/serializers/node-test.js new file mode 100644 index 000000000..227504937 --- /dev/null +++ b/ui-v2/tests/unit/serializers/node-test.js @@ -0,0 +1,24 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Serializer | node', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let serializer = store.serializerFor('node'); + + assert.ok(serializer); + }); + + test('it serializes records', function(assert) { + let store = this.owner.lookup('service:store'); + let record = run(() => store.createRecord('node', {})); + + let serializedRecord = record.serialize(); + + assert.ok(serializedRecord); + }); +}); diff --git a/ui-v2/tests/unit/serializers/service-test.js b/ui-v2/tests/unit/serializers/service-test.js new file mode 100644 index 000000000..2899694b6 --- /dev/null +++ b/ui-v2/tests/unit/serializers/service-test.js @@ -0,0 +1,24 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Serializer | service', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let serializer = store.serializerFor('service'); + + assert.ok(serializer); + }); + + test('it serializes records', function(assert) { + let store = this.owner.lookup('service:store'); + let record = run(() => store.createRecord('service', {})); + + let serializedRecord = record.serialize(); + + assert.ok(serializedRecord); + }); +}); diff --git a/ui-v2/tests/unit/serializers/session-test.js b/ui-v2/tests/unit/serializers/session-test.js new file mode 100644 index 000000000..4cdd32916 --- /dev/null +++ b/ui-v2/tests/unit/serializers/session-test.js @@ -0,0 +1,24 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Serializer | session', function(hooks) { + setupTest(hooks); + + // Replace this with your real tests. + test('it exists', function(assert) { + let store = this.owner.lookup('service:store'); + let serializer = store.serializerFor('session'); + + assert.ok(serializer); + }); + + test('it serializes records', function(assert) { + let store = this.owner.lookup('service:store'); + let record = run(() => store.createRecord('session', {})); + + let serializedRecord = record.serialize(); + + assert.ok(serializedRecord); + }); +}); diff --git a/ui-v2/tests/unit/services/acls-test.js b/ui-v2/tests/unit/services/acls-test.js new file mode 100644 index 000000000..579d6ebde --- /dev/null +++ b/ui-v2/tests/unit/services/acls-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:acls', 'Unit | Service | acls', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/atob-test.js b/ui-v2/tests/unit/services/atob-test.js new file mode 100644 index 000000000..266d16fe6 --- /dev/null +++ b/ui-v2/tests/unit/services/atob-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:atob', 'Unit | Service | atob', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/btoa-test.js b/ui-v2/tests/unit/services/btoa-test.js new file mode 100644 index 000000000..55e231a1c --- /dev/null +++ b/ui-v2/tests/unit/services/btoa-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:btoa', 'Unit | Service | btoa', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/confirm-test.js b/ui-v2/tests/unit/services/confirm-test.js new file mode 100644 index 000000000..87fbc822f --- /dev/null +++ b/ui-v2/tests/unit/services/confirm-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:confirm', 'Unit | Service | confirm', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/coordinates-test.js b/ui-v2/tests/unit/services/coordinates-test.js new file mode 100644 index 000000000..745267dfb --- /dev/null +++ b/ui-v2/tests/unit/services/coordinates-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:coordinates', 'Unit | Service | coordinates', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/dc-test.js b/ui-v2/tests/unit/services/dc-test.js new file mode 100644 index 000000000..529881ce5 --- /dev/null +++ b/ui-v2/tests/unit/services/dc-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:dc', 'Unit | Service | dc', { + // Specify the other units that are required for this test. + needs: ['service:settings'], +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/error-test.js b/ui-v2/tests/unit/services/error-test.js new file mode 100644 index 000000000..75d8007a3 --- /dev/null +++ b/ui-v2/tests/unit/services/error-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:error', 'Unit | Service | error', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/feedback-test.js b/ui-v2/tests/unit/services/feedback-test.js new file mode 100644 index 000000000..fc652d97c --- /dev/null +++ b/ui-v2/tests/unit/services/feedback-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:feedback', 'Unit | Service | feedback', { + // Specify the other units that are required for this test. + needs: ['service:flashMessages'], +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/kv-test.js b/ui-v2/tests/unit/services/kv-test.js new file mode 100644 index 000000000..aff16d72d --- /dev/null +++ b/ui-v2/tests/unit/services/kv-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:kv', 'Unit | Service | kv', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/nodes-test.js b/ui-v2/tests/unit/services/nodes-test.js new file mode 100644 index 000000000..fa03f80f8 --- /dev/null +++ b/ui-v2/tests/unit/services/nodes-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:nodes', 'Unit | Service | nodes', { + // Specify the other units that are required for this test. + needs: ['service:coordinates'], +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/services-test.js b/ui-v2/tests/unit/services/services-test.js new file mode 100644 index 000000000..3d8485cc9 --- /dev/null +++ b/ui-v2/tests/unit/services/services-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:services', 'Unit | Service | services', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/session-test.js b/ui-v2/tests/unit/services/session-test.js new file mode 100644 index 000000000..a027c0537 --- /dev/null +++ b/ui-v2/tests/unit/services/session-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:session', 'Unit | Service | session', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/settings-test.js b/ui-v2/tests/unit/services/settings-test.js new file mode 100644 index 000000000..174c8c8c9 --- /dev/null +++ b/ui-v2/tests/unit/services/settings-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:settings', 'Unit | Service | settings', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/store-test.js b/ui-v2/tests/unit/services/store-test.js new file mode 100644 index 000000000..46fc6f29c --- /dev/null +++ b/ui-v2/tests/unit/services/store-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:store', 'Unit | Service | store', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/services/timeout-test.js b/ui-v2/tests/unit/services/timeout-test.js new file mode 100644 index 000000000..a70215eb0 --- /dev/null +++ b/ui-v2/tests/unit/services/timeout-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:timeout', 'Unit | Service | timeout', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +}); diff --git a/ui-v2/tests/unit/utils/ascend-test.js b/ui-v2/tests/unit/utils/ascend-test.js new file mode 100644 index 000000000..9067b4154 --- /dev/null +++ b/ui-v2/tests/unit/utils/ascend-test.js @@ -0,0 +1,20 @@ +import { module } from 'ember-qunit'; +import test from 'ember-sinon-qunit/test-support/test'; +import ascend from 'consul-ui/utils/ascend'; +module('Unit | Utils | ascend', {}); + +test('it returns a parent path (ascension of 1)', function(assert) { + const expected = '/quite/a/deep/path/for/'; + const actual = ascend(expected + 'parent', 1); + assert.equal(actual, expected); +}); +test('it returns a grand parent path (ascension of 2)', function(assert) { + const expected = 'quite/a/deep/path/for/'; + const actual = ascend(expected + 'grand/parent', 2); + assert.equal(actual, expected); +}); +test('ascending past root returns ""', function(assert) { + const expected = ''; + const actual = ascend('/short', 2); + assert.equal(actual, expected); +}); diff --git a/ui-v2/tests/unit/utils/confirm-test.js b/ui-v2/tests/unit/utils/confirm-test.js new file mode 100644 index 000000000..8cd6b6473 --- /dev/null +++ b/ui-v2/tests/unit/utils/confirm-test.js @@ -0,0 +1,16 @@ +import { module } from 'ember-qunit'; +import test from 'ember-sinon-qunit/test-support/test'; +import confirm from 'consul-ui/utils/confirm'; +module('Unit | Utils | confirm', {}); + +test('it resolves the result of the confirmation', function(assert) { + const expected = 'message'; + // split this off into separate testing + const confirmation = function(actual) { + assert.equal(actual, expected); + return true; + }; + return confirm(expected, confirmation).then(function(res) { + assert.ok(res); + }); +}); diff --git a/ui-v2/tests/unit/utils/createURL-test.js b/ui-v2/tests/unit/utils/createURL-test.js new file mode 100644 index 000000000..531726670 --- /dev/null +++ b/ui-v2/tests/unit/utils/createURL-test.js @@ -0,0 +1,41 @@ +import { module, skip } from 'ember-qunit'; +import test from 'ember-sinon-qunit/test-support/test'; +import createURL from 'consul-ui/utils/createURL'; +module('Unit | Utils | createURL', {}); + +skip("it isn't isolated enough, mock encodeURIComponent"); +test('it passes the values to encode', function(assert) { + [ + { + args: [ + ['/v1/url'], + ['raw', 'values', 'to', 'encode'], + { + query: 'to encode', + ['key with']: ' spaces ', + }, + ], + expected: '/v1/url/raw/values/to/encode?query=to%20encode&key%20with=%20spaces%20', + }, + ].forEach(function(item) { + const actual = createURL(...item.args); + assert.equal(actual, item.expected); + }); +}); +test('it adds a query string key without an `=` if the query value is `null`', function(assert) { + [ + { + args: [ + ['/v1/url'], + ['raw', 'values', 'to', 'encode'], + { + query: null, + }, + ], + expected: '/v1/url/raw/values/to/encode?query', + }, + ].forEach(function(item) { + const actual = createURL(...item.args); + assert.equal(actual, item.expected); + }); +}); diff --git a/ui-v2/tests/unit/utils/injectableRequestToJQueryAjaxHash-test.js b/ui-v2/tests/unit/utils/injectableRequestToJQueryAjaxHash-test.js new file mode 100644 index 000000000..d593f1cff --- /dev/null +++ b/ui-v2/tests/unit/utils/injectableRequestToJQueryAjaxHash-test.js @@ -0,0 +1,17 @@ +import { module } from 'ember-qunit'; +import test from 'ember-sinon-qunit/test-support/test'; +import Adapter from 'ember-data/adapters/rest'; +import injectableRequestToJQueryAjaxHash from 'consul-ui/utils/injectableRequestToJQueryAjaxHash'; +module('Unit | Utils | injectableRequestToJQueryAjaxHash', {}); +test('it is exactly the same code as RestAdapter', function(assert) { + // This will fail when using istanbul/ember-cli-code-coverage as it + // injects further code into `injectableRequestToJQueryAjaxHash` for instrumentation + // purposes. It 'looks' like this isn't preventable/ignorable + const expected = Adapter.create()._requestToJQueryAjaxHash.toString(); + const actual = injectableRequestToJQueryAjaxHash({ + stringify: function(obj) { + return JSON.stringify(obj); + }, + }).toString(); + assert.equal(actual, expected); +}); diff --git a/ui-v2/tests/unit/utils/isFolder-test.js b/ui-v2/tests/unit/utils/isFolder-test.js new file mode 100644 index 000000000..dfe87331d --- /dev/null +++ b/ui-v2/tests/unit/utils/isFolder-test.js @@ -0,0 +1,28 @@ +import { module } from 'ember-qunit'; +import test from 'ember-sinon-qunit/test-support/test'; +import isFolder from 'consul-ui/utils/isFolder'; +module('Unit | Utils | isFolder', {}); + +test('it detects if a string ends in a slash', function(assert) { + [ + { + test: 'hello/world', + expected: false, + }, + { + test: 'hello/world/', + expected: true, + }, + { + test: '/hello/world', + expected: false, + }, + { + test: '//', + expected: true, + }, + ].forEach(function(item) { + const actual = isFolder(item.test); + assert.equal(actual, item.expected); + }); +}); diff --git a/ui-v2/tests/unit/utils/keyToArray-test.js b/ui-v2/tests/unit/utils/keyToArray-test.js new file mode 100644 index 000000000..b6ee5f0ce --- /dev/null +++ b/ui-v2/tests/unit/utils/keyToArray-test.js @@ -0,0 +1,28 @@ +import { module } from 'ember-qunit'; +import test from 'ember-sinon-qunit/test-support/test'; +import keyToArray from 'consul-ui/utils/keyToArray'; +module('Unit | Utils | keyToArray', {}); + +test('it splits a string by a separator, unless the string is the separator', function(assert) { + [ + { + test: '/', + expected: [''], + }, + { + test: 'hello/world', + expected: ['hello', 'world'], + }, + { + test: '/hello/world', + expected: ['', 'hello', 'world'], + }, + { + test: '//', + expected: ['', '', ''], + }, + ].forEach(function(item) { + const actual = keyToArray(item.test); + assert.deepEqual(actual, item.expected); + }); +}); diff --git a/ui-v2/tests/unit/utils/makeAttrable-test.js b/ui-v2/tests/unit/utils/makeAttrable-test.js new file mode 100644 index 000000000..f34a871be --- /dev/null +++ b/ui-v2/tests/unit/utils/makeAttrable-test.js @@ -0,0 +1,13 @@ +import { module } from 'ember-qunit'; +import test from 'ember-sinon-qunit/test-support/test'; +import makeAttrable from 'consul-ui/utils/makeAttrable'; +module('Unit | Utils | makeAttrable', {}); + +test('it adds a `attr` method, which returns the value of the property', function(assert) { + const obj = { + prop: true, + }; + const actual = makeAttrable(obj); + assert.equal(typeof actual.attr, 'function'); + assert.ok(actual.attr('prop')); +}); diff --git a/ui-v2/tests/unit/utils/promisedTimeout-test.js b/ui-v2/tests/unit/utils/promisedTimeout-test.js new file mode 100644 index 000000000..a24dda170 --- /dev/null +++ b/ui-v2/tests/unit/utils/promisedTimeout-test.js @@ -0,0 +1,21 @@ +import { module, skip } from 'ember-qunit'; +import test from 'ember-sinon-qunit/test-support/test'; +import promisedTimeout from 'consul-ui/utils/promisedTimeout'; +module('Unit | Utils | promisedTimeout', {}); + +test('it calls setTimeout with the correct milliseconds', function(assert) { + const expected = 1000; + const P = function(cb) { + cb(function(milliseconds) { + assert.equal(milliseconds, expected); + }); + }; + const setTimeoutDouble = function(cb, milliseconds) { + assert.equal(milliseconds, expected); + cb(); + return 1; + }; + const timeout = promisedTimeout(P, setTimeoutDouble); + timeout(expected, function() {}); +}); +skip('it still clears the interval if there is no callback'); diff --git a/ui-v2/tests/unit/utils/ucfirst-test.js b/ui-v2/tests/unit/utils/ucfirst-test.js new file mode 100644 index 000000000..b7f74e085 --- /dev/null +++ b/ui-v2/tests/unit/utils/ucfirst-test.js @@ -0,0 +1,28 @@ +import { module } from 'ember-qunit'; +import test from 'ember-sinon-qunit/test-support/test'; +import ucfirst from 'consul-ui/utils/ucfirst'; +module('Unit | Utils | ucfirst', {}); + +test('it returns the first letter in uppercase', function(assert) { + [ + { + test: 'hello world', + expected: 'Hello world', + }, + { + test: 'hello World', + expected: 'Hello World', + }, + { + test: 'HELLO WORLD', + expected: 'HELLO WORLD', + }, + { + test: 'hELLO WORLD', + expected: 'HELLO WORLD', + }, + ].forEach(function(item) { + const actual = ucfirst(item.test); + assert.equal(actual, item.expected); + }); +}); diff --git a/ui-v2/yarn.lock b/ui-v2/yarn.lock new file mode 100644 index 000000000..5a0db64a7 --- /dev/null +++ b/ui-v2/yarn.lock @@ -0,0 +1,9185 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ember/ordered-set@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@ember/ordered-set/-/ordered-set-1.0.0.tgz#cf9ab5fd7510bcad370370ebcded705f6d1c542b" + dependencies: + ember-cli-babel "6.12.0" + ember-compatibility-helpers "^1.0.0-beta.2" + +"@ember/test-helpers@^0.7.18": + version "0.7.20" + resolved "https://registry.yarnpkg.com/@ember/test-helpers/-/test-helpers-0.7.20.tgz#488b1c8ef23626f8831e5cb750ffca86e017e6dc" + dependencies: + broccoli-funnel "^2.0.1" + ember-cli-babel "^6.10.0" + ember-cli-htmlbars-inline-precompile "^1.0.0" + +"@glimmer/di@^0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@glimmer/di/-/di-0.2.0.tgz#73bfd4a6ee4148a80bf092e8a5d29bcac9d4ce7e" + +"@glimmer/resolver@^0.4.1": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@glimmer/resolver/-/resolver-0.4.3.tgz#b1baae5c3291b4621002ccf8d7870466097e841d" + dependencies: + "@glimmer/di" "^0.2.0" + +"@sinonjs/formatio@^2.0.0": + version "2.0.0" + resolved "http://registry.npmjs.org/@sinonjs/formatio/-/formatio-2.0.0.tgz#84db7e9eb5531df18a8c5e0bfb6e449e55e654b2" + dependencies: + samsam "1.3.0" + +JSONStream@^1.0.3: + version "1.3.2" + resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.2.tgz#c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea" + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + +accepts@~1.3.4, accepts@~1.3.5: + version "1.3.5" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" + dependencies: + mime-types "~2.1.18" + negotiator "0.6.1" + +acorn-jsx@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" + dependencies: + acorn "^3.0.4" + +acorn-node@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.3.0.tgz#5f86d73346743810ef1269b901dbcbded020861b" + dependencies: + acorn "^5.4.1" + xtend "^4.0.1" + +acorn@^3.0.4: + version "3.3.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" + +acorn@^4.0.3: + version "4.0.13" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" + +acorn@^5.0.3, acorn@^5.2.1, acorn@^5.4.1, acorn@^5.5.0: + version "5.5.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" + +after@0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" + +ajv-keywords@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" + +ajv@^4.9.1: + version "4.11.8" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" + dependencies: + co "^4.6.0" + json-stable-stringify "^1.0.1" + +ajv@^5.1.0, ajv@^5.2.3, ajv@^5.3.0: + version "5.5.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" + dependencies: + co "^4.6.0" + fast-deep-equal "^1.0.0" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.3.0" + +align-text@^0.1.1, align-text@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" + dependencies: + kind-of "^3.0.2" + longest "^1.0.1" + repeat-string "^1.5.2" + +alter@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/alter/-/alter-0.2.0.tgz#c7588808617572034aae62480af26b1d4d1cb3cd" + dependencies: + stable "~0.1.3" + +amd-name-resolver@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/amd-name-resolver/-/amd-name-resolver-0.0.7.tgz#814301adfe8a2f109f6e84d5e935196efb669615" + dependencies: + ensure-posix-path "^1.0.1" + +amd-name-resolver@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/amd-name-resolver/-/amd-name-resolver-1.0.0.tgz#0e593b28d6fa3326ab1798107edaea961046e8d8" + dependencies: + ensure-posix-path "^1.0.1" + +amdefine@>=0.0.4: + version "1.0.1" + resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + +ansi-escapes@^1.0.0, ansi-escapes@^1.1.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" + +ansi-escapes@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" + +ansi-regex@^0.2.0, ansi-regex@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-0.2.1.tgz#0d8e946967a3d8143f93e24e298525fc1b2235f9" + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + +ansi-styles@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.1.0.tgz#eaecbf66cd706882760b2f4691582b8f55d7a7de" + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + +ansi-styles@^3.0.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + dependencies: + color-convert "^1.9.0" + +ansicolors@~0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef" + +any-observable@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.2.0.tgz#c67870058003579009083f54ac0abafb5c33d242" + +anymatch@^1.3.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" + dependencies: + micromatch "^2.1.5" + normalize-path "^2.0.0" + +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" + +aot-test-generators@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/aot-test-generators/-/aot-test-generators-0.1.0.tgz#43f0f615f97cb298d7919c1b0b4e6b7310b03cd0" + dependencies: + jsesc "^2.5.0" + +app-root-path@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" + +append-transform@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" + dependencies: + default-require-extensions "^1.0.0" + +aproba@^1.0.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + +are-we-there-yet@~1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + dependencies: + sprintf-js "~1.0.2" + +arr-diff@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" + dependencies: + arr-flatten "^1.0.1" + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + +arr-flatten@^1.0.1, arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + +array-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + +array-filter@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" + +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + +array-map@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" + +array-reduce@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" + +array-to-error@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-to-error/-/array-to-error-1.1.1.tgz#d68812926d14097a205579a667eeaf1856a44c07" + dependencies: + array-to-sentence "^1.1.0" + +array-to-sentence@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/array-to-sentence/-/array-to-sentence-1.1.0.tgz#c804956dafa53232495b205a9452753a258d39fc" + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + dependencies: + array-uniq "^1.0.1" + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + +array-unique@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + +arraybuffer.slice@~0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" + +arrify@^1.0.0, arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + +asn1.js@^4.0.0: + version "4.10.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +asn1@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + +assert-plus@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" + +assert@^1.4.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + dependencies: + util "0.10.3" + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + +ast-traverse@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ast-traverse/-/ast-traverse-0.1.1.tgz#69cf2b8386f19dcda1bb1e05d68fe359d8897de6" + +ast-types@0.8.12: + version "0.8.12" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.12.tgz#a0d90e4351bb887716c83fd637ebf818af4adfcc" + +ast-types@0.8.15: + version "0.8.15" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.15.tgz#8eef0827f04dff0ec8857ba925abe3fea6194e52" + +ast-types@0.9.6: + version "0.9.6" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.6.tgz#102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9" + +astw@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/astw/-/astw-2.2.0.tgz#7bd41784d32493987aeb239b6b4e1c57a873b917" + dependencies: + acorn "^4.0.3" + +async-disk-cache@^1.2.1: + version "1.3.3" + resolved "https://registry.yarnpkg.com/async-disk-cache/-/async-disk-cache-1.3.3.tgz#6040486660b370e4051cd9fa9fee275e1fae3728" + dependencies: + debug "^2.1.3" + heimdalljs "^0.2.3" + istextorbinary "2.1.0" + mkdirp "^0.5.0" + rimraf "^2.5.3" + rsvp "^3.0.18" + username-sync "1.0.1" + +async-each@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + +async-foreach@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" + +async-limiter@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" + +async-promise-queue@^1.0.3, async-promise-queue@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/async-promise-queue/-/async-promise-queue-1.0.4.tgz#308baafbc74aff66a0bb6e7f4a18d4fe8434440c" + dependencies: + async "^2.4.1" + debug "^2.6.8" + +async@^1.4.0, async@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" + +async@^2.1.4, async@^2.4.1: + version "2.6.0" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" + dependencies: + lodash "^4.14.0" + +async@~0.2.9: + version "0.2.10" + resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" + +async@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/async/-/async-1.0.0.tgz#f8fc04ca3a13784ade9e1641af98578cfbd647a9" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + +atob@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.0.tgz#ab2b150e51d7b122b9efc8d7340c06b6c41076bc" + +autoprefixer@^7.0.0: + version "7.2.6" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.2.6.tgz#256672f86f7c735da849c4f07d008abb056067dc" + dependencies: + browserslist "^2.11.3" + caniuse-lite "^1.0.30000805" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^6.0.17" + postcss-value-parser "^3.2.3" + +aws-sign2@~0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + +aws4@^1.2.1, aws4@^1.6.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" + +babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + +babel-core@^5.0.0: + version "5.8.38" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-5.8.38.tgz#1fcaee79d7e61b750b00b8e54f6dfc9d0af86558" + dependencies: + babel-plugin-constant-folding "^1.0.1" + babel-plugin-dead-code-elimination "^1.0.2" + babel-plugin-eval "^1.0.1" + babel-plugin-inline-environment-variables "^1.0.1" + babel-plugin-jscript "^1.0.4" + babel-plugin-member-expression-literals "^1.0.1" + babel-plugin-property-literals "^1.0.1" + babel-plugin-proto-to-assign "^1.0.3" + babel-plugin-react-constant-elements "^1.0.3" + babel-plugin-react-display-name "^1.0.3" + babel-plugin-remove-console "^1.0.1" + babel-plugin-remove-debugger "^1.0.1" + babel-plugin-runtime "^1.0.7" + babel-plugin-undeclared-variables-check "^1.0.2" + babel-plugin-undefined-to-void "^1.1.6" + babylon "^5.8.38" + bluebird "^2.9.33" + chalk "^1.0.0" + convert-source-map "^1.1.0" + core-js "^1.0.0" + debug "^2.1.1" + detect-indent "^3.0.0" + esutils "^2.0.0" + fs-readdir-recursive "^0.1.0" + globals "^6.4.0" + home-or-tmp "^1.0.0" + is-integer "^1.0.4" + js-tokens "1.0.1" + json5 "^0.4.0" + lodash "^3.10.0" + minimatch "^2.0.3" + output-file-sync "^1.1.0" + path-exists "^1.0.0" + path-is-absolute "^1.0.0" + private "^0.1.6" + regenerator "0.8.40" + regexpu "^1.3.0" + repeating "^1.1.2" + resolve "^1.1.6" + shebang-regex "^1.0.0" + slash "^1.0.0" + source-map "^0.5.0" + source-map-support "^0.2.10" + to-fast-properties "^1.0.0" + trim-right "^1.0.0" + try-resolve "^1.0.0" + +babel-core@^6.14.0, babel-core@^6.24.1, babel-core@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" + dependencies: + babel-code-frame "^6.26.0" + babel-generator "^6.26.0" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.26.0" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + convert-source-map "^1.5.0" + debug "^2.6.8" + json5 "^0.5.1" + lodash "^4.17.4" + minimatch "^3.0.4" + path-is-absolute "^1.0.1" + private "^0.1.7" + slash "^1.0.0" + source-map "^0.5.6" + +babel-generator@^6.18.0, babel-generator@^6.26.0: + version "6.26.1" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" + dependencies: + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + detect-indent "^4.0.0" + jsesc "^1.3.0" + lodash "^4.17.4" + source-map "^0.5.7" + trim-right "^1.0.1" + +babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" + dependencies: + babel-helper-explode-assignable-expression "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-call-delegate@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-define-map@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-explode-assignable-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + dependencies: + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-get-function-arity@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-hoist-variables@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-optimise-call-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-regex@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" + dependencies: + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-remap-async-to-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-replace-supers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" + dependencies: + babel-helper-optimise-call-expression "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helpers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-check-es2015-constants@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-constant-folding@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz#8361d364c98e449c3692bdba51eff0844290aa8e" + +babel-plugin-dead-code-elimination@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz#5f7c451274dcd7cccdbfbb3e0b85dd28121f0f65" + +babel-plugin-debug-macros@^0.1.10, babel-plugin-debug-macros@^0.1.11: + version "0.1.11" + resolved "https://registry.yarnpkg.com/babel-plugin-debug-macros/-/babel-plugin-debug-macros-0.1.11.tgz#6c562bf561fccd406ce14ab04f42c218cf956605" + dependencies: + semver "^5.3.0" + +babel-plugin-ember-modules-api-polyfill@^1.4.2: + version "1.6.0" + resolved "https://registry.yarnpkg.com/babel-plugin-ember-modules-api-polyfill/-/babel-plugin-ember-modules-api-polyfill-1.6.0.tgz#abd1afa4237b3121cb51222f9bf3283cad8990aa" + dependencies: + ember-rfc176-data "^0.2.0" + +babel-plugin-ember-modules-api-polyfill@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-ember-modules-api-polyfill/-/babel-plugin-ember-modules-api-polyfill-2.3.0.tgz#0c01f359658cfb9c797f705af6b09f6220205ae0" + dependencies: + ember-rfc176-data "^0.3.0" + +babel-plugin-eval@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz#a2faed25ce6be69ade4bfec263f70169195950da" + +babel-plugin-feature-flags@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/babel-plugin-feature-flags/-/babel-plugin-feature-flags-0.3.1.tgz#9c827cf9a4eb9a19f725ccb239e85cab02036fc1" + +babel-plugin-filter-imports@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/babel-plugin-filter-imports/-/babel-plugin-filter-imports-0.3.1.tgz#e7859b56886b175dd2616425d277b219e209ea8b" + +babel-plugin-htmlbars-inline-precompile@^0.2.3: + version "0.2.4" + resolved "https://registry.yarnpkg.com/babel-plugin-htmlbars-inline-precompile/-/babel-plugin-htmlbars-inline-precompile-0.2.4.tgz#54b48168432bbc03f1f26f2e9090cb222bc78c75" + +babel-plugin-inline-environment-variables@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz#1f58ce91207ad6a826a8bf645fafe68ff5fe3ffe" + +babel-plugin-istanbul@^4.1.6: + version "4.1.6" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" + dependencies: + babel-plugin-syntax-object-rest-spread "^6.13.0" + find-up "^2.1.0" + istanbul-lib-instrument "^1.10.1" + test-exclude "^4.2.1" + +babel-plugin-jscript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz#8f342c38276e87a47d5fa0a8bd3d5eb6ccad8fcc" + +babel-plugin-member-expression-literals@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz#cc5edb0faa8dc927170e74d6d1c02440021624d3" + +babel-plugin-property-literals@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz#0252301900192980b1c118efea48ce93aab83336" + +babel-plugin-proto-to-assign@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz#c49e7afd02f577bc4da05ea2df002250cf7cd123" + dependencies: + lodash "^3.9.3" + +babel-plugin-react-constant-elements@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz#946736e8378429cbc349dcff62f51c143b34e35a" + +babel-plugin-react-display-name@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz#754fe38926e8424a4e7b15ab6ea6139dee0514fc" + +babel-plugin-remove-console@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz#d8f24556c3a05005d42aaaafd27787f53ff013a7" + +babel-plugin-remove-debugger@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz#fd2ea3cd61a428ad1f3b9c89882ff4293e8c14c7" + +babel-plugin-runtime@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz#bf7c7d966dd56ecd5c17fa1cb253c9acb7e54aaf" + +babel-plugin-syntax-async-functions@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" + +babel-plugin-syntax-exponentiation-operator@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" + +babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" + +babel-plugin-syntax-trailing-function-commas@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" + +babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" + dependencies: + babel-helper-remap-async-to-generator "^6.24.1" + babel-plugin-syntax-async-functions "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-arrow-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoping@^6.23.0, babel-plugin-transform-es2015-block-scoping@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" + dependencies: + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-plugin-transform-es2015-classes@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" + dependencies: + babel-helper-define-map "^6.24.1" + babel-helper-function-name "^6.24.1" + babel-helper-optimise-call-expression "^6.24.1" + babel-helper-replace-supers "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-computed-properties@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-destructuring@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-duplicate-keys@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-for-of@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-function-name@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" + dependencies: + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" + dependencies: + babel-plugin-transform-strict-mode "^6.24.1" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-types "^6.26.0" + +babel-plugin-transform-es2015-modules-systemjs@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-umd@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" + dependencies: + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-object-super@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" + dependencies: + babel-helper-replace-supers "^6.24.1" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-parameters@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" + dependencies: + babel-helper-call-delegate "^6.24.1" + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-shorthand-properties@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-spread@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-sticky-regex@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-template-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-typeof-symbol@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-unicode-regex@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + regexpu-core "^2.0.0" + +babel-plugin-transform-exponentiation-operator@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" + dependencies: + babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" + babel-plugin-syntax-exponentiation-operator "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-object-rest-spread@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" + dependencies: + babel-plugin-syntax-object-rest-spread "^6.8.0" + babel-runtime "^6.26.0" + +babel-plugin-transform-regenerator@^6.22.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" + dependencies: + regenerator-transform "^0.10.0" + +babel-plugin-transform-strict-mode@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-undeclared-variables-check@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz#5cf1aa539d813ff64e99641290af620965f65dee" + dependencies: + leven "^1.0.2" + +babel-plugin-undefined-to-void@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz#7f578ef8b78dfae6003385d8417a61eda06e2f81" + +babel-polyfill@^6.16.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" + dependencies: + babel-runtime "^6.26.0" + core-js "^2.5.0" + regenerator-runtime "^0.10.5" + +babel-preset-env@^1.5.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" + dependencies: + babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-to-generator "^6.22.0" + babel-plugin-transform-es2015-arrow-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoping "^6.23.0" + babel-plugin-transform-es2015-classes "^6.23.0" + babel-plugin-transform-es2015-computed-properties "^6.22.0" + babel-plugin-transform-es2015-destructuring "^6.23.0" + babel-plugin-transform-es2015-duplicate-keys "^6.22.0" + babel-plugin-transform-es2015-for-of "^6.23.0" + babel-plugin-transform-es2015-function-name "^6.22.0" + babel-plugin-transform-es2015-literals "^6.22.0" + babel-plugin-transform-es2015-modules-amd "^6.22.0" + babel-plugin-transform-es2015-modules-commonjs "^6.23.0" + babel-plugin-transform-es2015-modules-systemjs "^6.23.0" + babel-plugin-transform-es2015-modules-umd "^6.23.0" + babel-plugin-transform-es2015-object-super "^6.22.0" + babel-plugin-transform-es2015-parameters "^6.23.0" + babel-plugin-transform-es2015-shorthand-properties "^6.22.0" + babel-plugin-transform-es2015-spread "^6.22.0" + babel-plugin-transform-es2015-sticky-regex "^6.22.0" + babel-plugin-transform-es2015-template-literals "^6.22.0" + babel-plugin-transform-es2015-typeof-symbol "^6.23.0" + babel-plugin-transform-es2015-unicode-regex "^6.22.0" + babel-plugin-transform-exponentiation-operator "^6.22.0" + babel-plugin-transform-regenerator "^6.22.0" + browserslist "^2.1.2" + invariant "^2.2.2" + semver "^5.3.0" + +babel-register@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" + dependencies: + babel-core "^6.26.0" + babel-runtime "^6.26.0" + core-js "^2.5.0" + home-or-tmp "^2.0.0" + lodash "^4.17.4" + mkdirp "^0.5.1" + source-map-support "^0.4.15" + +babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + dependencies: + babel-runtime "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + lodash "^4.17.4" + +babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + dependencies: + babel-code-frame "^6.26.0" + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + debug "^2.6.8" + globals "^9.18.0" + invariant "^2.2.2" + lodash "^4.17.4" + +babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + dependencies: + babel-runtime "^6.26.0" + esutils "^2.0.2" + lodash "^4.17.4" + to-fast-properties "^1.0.3" + +babel6-plugin-strip-class-callcheck@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/babel6-plugin-strip-class-callcheck/-/babel6-plugin-strip-class-callcheck-6.0.0.tgz#de841c1abebbd39f78de0affb2c9a52ee228fddf" + +babel6-plugin-strip-heimdall@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/babel6-plugin-strip-heimdall/-/babel6-plugin-strip-heimdall-6.0.1.tgz#35f80eddec1f7fffdc009811dfbd46d9965072b6" + +babylon@^5.8.38: + version "5.8.38" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-5.8.38.tgz#ec9b120b11bf6ccd4173a18bf217e60b79859ffd" + +babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + +backbone@^1.1.2: + version "1.3.3" + resolved "https://registry.yarnpkg.com/backbone/-/backbone-1.3.3.tgz#4cc80ea7cb1631ac474889ce40f2f8bc683b2999" + dependencies: + underscore ">=1.8.3" + +backo2@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + +base64-arraybuffer@0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" + +base64-js@^1.0.2, base64-js@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" + +base64id@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +basic-auth@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.0.tgz#015db3f353e02e56377755f962742e8981e7bbba" + dependencies: + safe-buffer "5.1.1" + +bcrypt-pbkdf@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" + dependencies: + tweetnacl "^0.14.3" + +better-assert@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" + dependencies: + callsite "1.0.0" + +binary-extensions@^1.0.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" + +"binaryextensions@1 || 2": + version "2.1.1" + resolved "https://registry.yarnpkg.com/binaryextensions/-/binaryextensions-2.1.1.tgz#3209a51ca4a4ad541a3b8d3d6a6d5b83a2485935" + +blank-object@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/blank-object/-/blank-object-1.0.2.tgz#f990793fbe9a8c8dd013fb3219420bec81d5f4b9" + +blob@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" + +block-stream@*: + version "0.0.9" + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + dependencies: + inherits "~2.0.0" + +bluebird@^2.9.33: + version "2.11.0" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" + +bluebird@^3.1.1, bluebird@^3.4.6: + version "3.5.1" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: + version "4.11.8" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" + +body-parser@1.18.2, body-parser@^1.15.0: + version "1.18.2" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" + dependencies: + bytes "3.0.0" + content-type "~1.0.4" + debug "2.6.9" + depd "~1.1.1" + http-errors "~1.6.2" + iconv-lite "0.4.19" + on-finished "~2.3.0" + qs "6.5.1" + raw-body "2.3.2" + type-is "~1.6.15" + +body@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/body/-/body-5.1.0.tgz#e4ba0ce410a46936323367609ecb4e6553125069" + dependencies: + continuable-cache "^0.3.1" + error "^7.0.0" + raw-body "~1.1.0" + safe-json-parse "~1.0.1" + +boolbase@^1.0.0, boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + +boom@2.x.x: + version "2.10.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" + dependencies: + hoek "2.x.x" + +boom@4.x.x: + version "4.3.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" + dependencies: + hoek "4.x.x" + +boom@5.x.x: + version "5.2.0" + resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" + dependencies: + hoek "4.x.x" + +bower-config@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/bower-config/-/bower-config-1.4.1.tgz#85fd9df367c2b8dbbd0caa4c5f2bad40cd84c2cc" + dependencies: + graceful-fs "^4.1.3" + mout "^1.0.0" + optimist "^0.6.1" + osenv "^0.1.3" + untildify "^2.1.0" + +bower-endpoint-parser@0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/bower-endpoint-parser/-/bower-endpoint-parser-0.2.2.tgz#00b565adbfab6f2d35addde977e97962acbcb3f6" + +brace-expansion@^1.0.0, brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^1.8.2: + version "1.8.5" + resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" + dependencies: + expand-range "^1.8.1" + preserve "^0.2.0" + repeat-element "^1.1.2" + +braces@^2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +breakable@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/breakable/-/breakable-1.0.0.tgz#784a797915a38ead27bad456b5572cb4bbaa78c1" + +broccoli-asset-rev@^2.4.5: + version "2.7.0" + resolved "https://registry.yarnpkg.com/broccoli-asset-rev/-/broccoli-asset-rev-2.7.0.tgz#c73da1d97c4180366fa442a87624ca1b7fb99161" + dependencies: + broccoli-asset-rewrite "^1.1.0" + broccoli-filter "^1.2.2" + broccoli-persistent-filter "^1.4.3" + json-stable-stringify "^1.0.0" + minimatch "^3.0.4" + rsvp "^3.0.6" + +broccoli-asset-rewrite@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/broccoli-asset-rewrite/-/broccoli-asset-rewrite-1.1.0.tgz#77a5da56157aa318c59113245e8bafb4617f8830" + dependencies: + broccoli-filter "^1.2.3" + +broccoli-autoprefixer@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/broccoli-autoprefixer/-/broccoli-autoprefixer-5.0.0.tgz#68c9f3bfdfff9df2d39e46545b9cf9d4443d6a16" + dependencies: + autoprefixer "^7.0.0" + broccoli-persistent-filter "^1.1.6" + postcss "^6.0.1" + +broccoli-babel-transpiler@^5.4.5, broccoli-babel-transpiler@^5.6.2: + version "5.7.4" + resolved "https://registry.yarnpkg.com/broccoli-babel-transpiler/-/broccoli-babel-transpiler-5.7.4.tgz#2b0611ce9e5d98b8d8d2b49ae1219af2f52767e3" + dependencies: + babel-core "^5.0.0" + broccoli-funnel "^1.0.0" + broccoli-merge-trees "^1.0.0" + broccoli-persistent-filter "^1.4.2" + clone "^0.2.0" + hash-for-dep "^1.0.2" + heimdalljs-logger "^0.1.7" + json-stable-stringify "^1.0.0" + rsvp "^3.5.0" + workerpool "^2.3.0" + +broccoli-babel-transpiler@^6.0.0, broccoli-babel-transpiler@^6.1.2: + version "6.1.4" + resolved "https://registry.yarnpkg.com/broccoli-babel-transpiler/-/broccoli-babel-transpiler-6.1.4.tgz#8be8074c42abf2e17ff79b2d2a21df5c51143c82" + dependencies: + babel-core "^6.14.0" + broccoli-funnel "^1.0.0" + broccoli-merge-trees "^1.0.0" + broccoli-persistent-filter "^1.4.0" + clone "^2.0.0" + hash-for-dep "^1.0.2" + heimdalljs-logger "^0.1.7" + json-stable-stringify "^1.0.0" + rsvp "^3.5.0" + workerpool "^2.3.0" + +broccoli-brocfile-loader@^0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/broccoli-brocfile-loader/-/broccoli-brocfile-loader-0.18.0.tgz#2e86021c805c34ffc8d29a2fb721cf273e819e4b" + dependencies: + findup-sync "^0.4.2" + +broccoli-builder@^0.18.8: + version "0.18.11" + resolved "https://registry.yarnpkg.com/broccoli-builder/-/broccoli-builder-0.18.11.tgz#a42393c7b10bb0380df255a616307945f5e26efb" + dependencies: + heimdalljs "^0.2.0" + promise-map-series "^0.2.1" + quick-temp "^0.1.2" + rimraf "^2.2.8" + rsvp "^3.0.17" + silent-error "^1.0.1" + +broccoli-caching-writer@^2.2.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/broccoli-caching-writer/-/broccoli-caching-writer-2.3.1.tgz#b93cf58f9264f003075868db05774f4e7f25bd07" + dependencies: + broccoli-kitchen-sink-helpers "^0.2.5" + broccoli-plugin "1.1.0" + debug "^2.1.1" + rimraf "^2.2.8" + rsvp "^3.0.17" + walk-sync "^0.2.5" + +broccoli-caching-writer@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/broccoli-caching-writer/-/broccoli-caching-writer-3.0.3.tgz#0bd2c96a9738d6a6ab590f07ba35c5157d7db476" + dependencies: + broccoli-kitchen-sink-helpers "^0.3.1" + broccoli-plugin "^1.2.1" + debug "^2.1.1" + rimraf "^2.2.8" + rsvp "^3.0.17" + walk-sync "^0.3.0" + +broccoli-clean-css@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/broccoli-clean-css/-/broccoli-clean-css-1.1.0.tgz#9db143d9af7e0ae79c26e3ac5a9bb2d720ea19fa" + dependencies: + broccoli-persistent-filter "^1.1.6" + clean-css-promise "^0.1.0" + inline-source-map-comment "^1.0.5" + json-stable-stringify "^1.0.0" + +broccoli-concat@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/broccoli-concat/-/broccoli-concat-3.2.2.tgz#86ffdc52606eb590ba9f6b894c5ec7a016f5b7b9" + dependencies: + broccoli-kitchen-sink-helpers "^0.3.1" + broccoli-plugin "^1.3.0" + broccoli-stew "^1.3.3" + ensure-posix-path "^1.0.2" + fast-sourcemap-concat "^1.0.1" + find-index "^1.1.0" + fs-extra "^1.0.0" + fs-tree-diff "^0.5.6" + lodash.merge "^4.3.0" + lodash.omit "^4.1.0" + lodash.uniq "^4.2.0" + walk-sync "^0.3.1" + +broccoli-config-loader@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/broccoli-config-loader/-/broccoli-config-loader-1.0.1.tgz#d10aaf8ebc0cb45c1da5baa82720e1d88d28c80a" + dependencies: + broccoli-caching-writer "^3.0.3" + +broccoli-config-replace@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/broccoli-config-replace/-/broccoli-config-replace-1.1.2.tgz#6ea879d92a5bad634d11329b51fc5f4aafda9c00" + dependencies: + broccoli-kitchen-sink-helpers "^0.3.1" + broccoli-plugin "^1.2.0" + debug "^2.2.0" + fs-extra "^0.24.0" + +broccoli-debug@^0.6.1, broccoli-debug@^0.6.2, broccoli-debug@^0.6.3: + version "0.6.4" + resolved "https://registry.yarnpkg.com/broccoli-debug/-/broccoli-debug-0.6.4.tgz#986eb3d2005e00e3bb91f9d0a10ab137210cd150" + dependencies: + broccoli-plugin "^1.2.1" + fs-tree-diff "^0.5.2" + heimdalljs "^0.2.1" + heimdalljs-logger "^0.1.7" + symlink-or-copy "^1.1.8" + tree-sync "^1.2.2" + +broccoli-file-creator@^1.0.0, broccoli-file-creator@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/broccoli-file-creator/-/broccoli-file-creator-1.1.1.tgz#1b35b67d215abdfadd8d49eeb69493c39e6c3450" + dependencies: + broccoli-kitchen-sink-helpers "~0.2.0" + broccoli-plugin "^1.1.0" + broccoli-writer "~0.1.1" + mkdirp "^0.5.1" + rsvp "~3.0.6" + symlink-or-copy "^1.0.1" + +broccoli-filter@^1.2.2, broccoli-filter@^1.2.3: + version "1.3.0" + resolved "https://registry.yarnpkg.com/broccoli-filter/-/broccoli-filter-1.3.0.tgz#71e3a8e32a17f309e12261919c5b1006d6766de6" + dependencies: + broccoli-kitchen-sink-helpers "^0.3.1" + broccoli-plugin "^1.0.0" + copy-dereference "^1.0.0" + debug "^2.2.0" + mkdirp "^0.5.1" + promise-map-series "^0.2.1" + rsvp "^3.0.18" + symlink-or-copy "^1.0.1" + walk-sync "^0.3.1" + +broccoli-funnel-reducer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/broccoli-funnel-reducer/-/broccoli-funnel-reducer-1.0.0.tgz#11365b2a785aec9b17972a36df87eef24c5cc0ea" + +broccoli-funnel@^0.2.3: + version "0.2.15" + resolved "https://registry.yarnpkg.com/broccoli-funnel/-/broccoli-funnel-0.2.15.tgz#4d0c128bef746e02f91038415aac4adbfaae222d" + dependencies: + array-equal "^1.0.0" + blank-object "^1.0.1" + broccoli-plugin "^1.0.0" + debug "^2.2.0" + fast-ordered-set "^1.0.0" + fs-tree-diff "^0.3.0" + minimatch "^2.0.1" + mkdirp "^0.5.0" + path-posix "^1.0.0" + rimraf "^2.4.3" + symlink-or-copy "^1.0.0" + walk-sync "^0.2.6" + +broccoli-funnel@^1.0.0, broccoli-funnel@^1.0.1, broccoli-funnel@^1.1.0, broccoli-funnel@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/broccoli-funnel/-/broccoli-funnel-1.2.0.tgz#cddc3afc5ff1685a8023488fff74ce6fb5a51296" + dependencies: + array-equal "^1.0.0" + blank-object "^1.0.1" + broccoli-plugin "^1.3.0" + debug "^2.2.0" + exists-sync "0.0.4" + fast-ordered-set "^1.0.0" + fs-tree-diff "^0.5.3" + heimdalljs "^0.2.0" + minimatch "^3.0.0" + mkdirp "^0.5.0" + path-posix "^1.0.0" + rimraf "^2.4.3" + symlink-or-copy "^1.0.0" + walk-sync "^0.3.1" + +broccoli-funnel@^2.0.0, broccoli-funnel@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/broccoli-funnel/-/broccoli-funnel-2.0.1.tgz#6823c73b675ef78fffa7ab800f083e768b51d449" + dependencies: + array-equal "^1.0.0" + blank-object "^1.0.1" + broccoli-plugin "^1.3.0" + debug "^2.2.0" + fast-ordered-set "^1.0.0" + fs-tree-diff "^0.5.3" + heimdalljs "^0.2.0" + minimatch "^3.0.0" + mkdirp "^0.5.0" + path-posix "^1.0.0" + rimraf "^2.4.3" + symlink-or-copy "^1.0.0" + walk-sync "^0.3.1" + +broccoli-kitchen-sink-helpers@^0.2.5, broccoli-kitchen-sink-helpers@~0.2.0: + version "0.2.9" + resolved "https://registry.yarnpkg.com/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.2.9.tgz#a5e0986ed8d76fb5984b68c3f0450d3a96e36ecc" + dependencies: + glob "^5.0.10" + mkdirp "^0.5.1" + +broccoli-kitchen-sink-helpers@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.3.1.tgz#77c7c18194b9664163ec4fcee2793444926e0c06" + dependencies: + glob "^5.0.10" + mkdirp "^0.5.1" + +broccoli-lint-eslint@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/broccoli-lint-eslint/-/broccoli-lint-eslint-4.2.1.tgz#f780dc083a7357a9746a9cfa8f76feb092777477" + dependencies: + aot-test-generators "^0.1.0" + broccoli-concat "^3.2.2" + broccoli-persistent-filter "^1.4.3" + eslint "^4.0.0" + json-stable-stringify "^1.0.1" + lodash.defaultsdeep "^4.6.0" + md5-hex "^2.0.0" + +broccoli-merge-trees@^1.0.0, broccoli-merge-trees@^1.1.0, broccoli-merge-trees@^1.1.1, broccoli-merge-trees@^1.1.2: + version "1.2.4" + resolved "https://registry.yarnpkg.com/broccoli-merge-trees/-/broccoli-merge-trees-1.2.4.tgz#a001519bb5067f06589d91afa2942445a2d0fdb5" + dependencies: + broccoli-plugin "^1.3.0" + can-symlink "^1.0.0" + fast-ordered-set "^1.0.2" + fs-tree-diff "^0.5.4" + heimdalljs "^0.2.1" + heimdalljs-logger "^0.1.7" + rimraf "^2.4.3" + symlink-or-copy "^1.0.0" + +broccoli-merge-trees@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/broccoli-merge-trees/-/broccoli-merge-trees-2.0.0.tgz#10aea46dd5cebcc8b8f7d5a54f0a84a4f0bb90b9" + dependencies: + broccoli-plugin "^1.3.0" + merge-trees "^1.0.1" + +broccoli-middleware@^1.0.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/broccoli-middleware/-/broccoli-middleware-1.2.1.tgz#a21f255f8bfe5a21c2f0fbf2417addd9d24c9436" + dependencies: + handlebars "^4.0.4" + mime-types "^2.1.18" + +broccoli-persistent-filter@^1.0.3, broccoli-persistent-filter@^1.1.6, broccoli-persistent-filter@^1.4.0, broccoli-persistent-filter@^1.4.2, broccoli-persistent-filter@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/broccoli-persistent-filter/-/broccoli-persistent-filter-1.4.3.tgz#3511bc52fc53740cda51621f58a28152d9911bc1" + dependencies: + async-disk-cache "^1.2.1" + async-promise-queue "^1.0.3" + broccoli-plugin "^1.0.0" + fs-tree-diff "^0.5.2" + hash-for-dep "^1.0.2" + heimdalljs "^0.2.1" + heimdalljs-logger "^0.1.7" + mkdirp "^0.5.1" + promise-map-series "^0.2.1" + rimraf "^2.6.1" + rsvp "^3.0.18" + symlink-or-copy "^1.0.1" + walk-sync "^0.3.1" + +broccoli-plugin@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/broccoli-plugin/-/broccoli-plugin-1.1.0.tgz#73e2cfa05f8ea1e3fc1420c40c3d9e7dc724bf02" + dependencies: + promise-map-series "^0.2.1" + quick-temp "^0.1.3" + rimraf "^2.3.4" + symlink-or-copy "^1.0.1" + +broccoli-plugin@^1.0.0, broccoli-plugin@^1.1.0, broccoli-plugin@^1.2.0, broccoli-plugin@^1.2.1, broccoli-plugin@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz#bee704a8e42da08cb58e513aaa436efb7f0ef1ee" + dependencies: + promise-map-series "^0.2.1" + quick-temp "^0.1.3" + rimraf "^2.3.4" + symlink-or-copy "^1.1.8" + +broccoli-rollup@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/broccoli-rollup/-/broccoli-rollup-1.3.0.tgz#43a0a7798555bab54217009eb470a4ff5a056df0" + dependencies: + broccoli-plugin "^1.2.1" + es6-map "^0.1.4" + fs-extra "^0.30.0" + fs-tree-diff "^0.5.2" + heimdalljs "^0.2.1" + heimdalljs-logger "^0.1.7" + md5-hex "^1.3.0" + node-modules-path "^1.0.1" + rollup "^0.41.4" + symlink-or-copy "^1.1.8" + walk-sync "^0.3.1" + +broccoli-sass-source-maps@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/broccoli-sass-source-maps/-/broccoli-sass-source-maps-2.2.0.tgz#1f1a0794136152b096188638b59b42b17a4bdc68" + dependencies: + broccoli-caching-writer "^3.0.3" + include-path-searcher "^0.1.0" + mkdirp "^0.3.5" + node-sass "^4.7.2" + object-assign "^2.0.0" + rsvp "^3.0.6" + +broccoli-slow-trees@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/broccoli-slow-trees/-/broccoli-slow-trees-3.0.1.tgz#9bf2a9e2f8eb3ed3a3f2abdde988da437ccdc9b4" + dependencies: + heimdalljs "^0.2.1" + +broccoli-source@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/broccoli-source/-/broccoli-source-1.1.0.tgz#54f0e82c8b73f46580cbbc4f578f0b32fca8f809" + +broccoli-sri-hash@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/broccoli-sri-hash/-/broccoli-sri-hash-2.1.2.tgz#bc69905ed7a381ad325cc0d02ded071328ebf3f3" + dependencies: + broccoli-caching-writer "^2.2.0" + mkdirp "^0.5.1" + rsvp "^3.1.0" + sri-toolbox "^0.2.0" + symlink-or-copy "^1.0.1" + +broccoli-stew@^1.2.0, broccoli-stew@^1.3.3, broccoli-stew@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/broccoli-stew/-/broccoli-stew-1.5.0.tgz#d7af8c18511dce510e49d308a62e5977f461883c" + dependencies: + broccoli-debug "^0.6.1" + broccoli-funnel "^1.0.1" + broccoli-merge-trees "^1.0.0" + broccoli-persistent-filter "^1.1.6" + broccoli-plugin "^1.3.0" + chalk "^1.1.3" + debug "^2.4.0" + ensure-posix-path "^1.0.1" + fs-extra "^2.0.0" + minimatch "^3.0.2" + resolve "^1.1.6" + rsvp "^3.0.16" + symlink-or-copy "^1.1.8" + walk-sync "^0.3.0" + +broccoli-uglify-sourcemap@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/broccoli-uglify-sourcemap/-/broccoli-uglify-sourcemap-2.1.1.tgz#33005537e18a322a181a5aea3e46d145b3355630" + dependencies: + async-promise-queue "^1.0.4" + broccoli-plugin "^1.2.1" + debug "^3.1.0" + lodash.defaultsdeep "^4.6.0" + matcher-collection "^1.0.5" + mkdirp "^0.5.0" + source-map-url "^0.4.0" + symlink-or-copy "^1.0.1" + uglify-es "^3.1.3" + walk-sync "^0.3.2" + workerpool "^2.3.0" + +broccoli-unwatched-tree@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/broccoli-unwatched-tree/-/broccoli-unwatched-tree-0.1.3.tgz#ab0fb820f613845bf67a803baad820f68b1e3aae" + dependencies: + broccoli-source "^1.1.0" + +broccoli-writer@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/broccoli-writer/-/broccoli-writer-0.1.1.tgz#d4d71aa8f2afbc67a3866b91a2da79084b96ab2d" + dependencies: + quick-temp "^0.1.0" + rsvp "^3.0.6" + +brorand@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + +browser-pack@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.1.0.tgz#c34ba10d0b9ce162b5af227c7131c92c2ecd5774" + dependencies: + JSONStream "^1.0.3" + combine-source-map "~0.8.0" + defined "^1.0.0" + safe-buffer "^5.1.1" + through2 "^2.0.0" + umd "^3.0.0" + +browser-resolve@^1.11.0, browser-resolve@^1.7.0: + version "1.11.2" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" + dependencies: + resolve "1.1.7" + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.1.tgz#3343124db6d7ad53e26a8826318712bdc8450f9c" + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + +browserify-rsa@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + dependencies: + bn.js "^4.1.1" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.2" + elliptic "^6.0.0" + inherits "^2.0.1" + parse-asn1 "^5.0.0" + +browserify-zlib@~0.1.2: + version "0.1.4" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" + dependencies: + pako "~0.2.0" + +browserify@^13.0.0: + version "13.3.0" + resolved "https://registry.yarnpkg.com/browserify/-/browserify-13.3.0.tgz#b5a9c9020243f0c70e4675bec8223bc627e415ce" + dependencies: + JSONStream "^1.0.3" + assert "^1.4.0" + browser-pack "^6.0.1" + browser-resolve "^1.11.0" + browserify-zlib "~0.1.2" + buffer "^4.1.0" + cached-path-relative "^1.0.0" + concat-stream "~1.5.1" + console-browserify "^1.1.0" + constants-browserify "~1.0.0" + crypto-browserify "^3.0.0" + defined "^1.0.0" + deps-sort "^2.0.0" + domain-browser "~1.1.0" + duplexer2 "~0.1.2" + events "~1.1.0" + glob "^7.1.0" + has "^1.0.0" + htmlescape "^1.1.0" + https-browserify "~0.0.0" + inherits "~2.0.1" + insert-module-globals "^7.0.0" + labeled-stream-splicer "^2.0.0" + module-deps "^4.0.8" + os-browserify "~0.1.1" + parents "^1.0.1" + path-browserify "~0.0.0" + process "~0.11.0" + punycode "^1.3.2" + querystring-es3 "~0.2.0" + read-only-stream "^2.0.0" + readable-stream "^2.0.2" + resolve "^1.1.4" + shasum "^1.0.0" + shell-quote "^1.6.1" + stream-browserify "^2.0.0" + stream-http "^2.0.0" + string_decoder "~0.10.0" + subarg "^1.0.0" + syntax-error "^1.1.1" + through2 "^2.0.0" + timers-browserify "^1.0.1" + tty-browserify "~0.0.0" + url "~0.11.0" + util "~0.10.1" + vm-browserify "~0.0.1" + xtend "^4.0.0" + +browserslist@^2.1.2, browserslist@^2.11.3: + version "2.11.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2" + dependencies: + caniuse-lite "^1.0.30000792" + electron-to-chromium "^1.3.30" + +bser@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" + dependencies: + node-int64 "^0.4.0" + +buffer-from@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + +buffer@^4.1.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +build@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/build/-/build-0.1.4.tgz#707fe026ffceddcacbfdcdf356eafda64f151046" + dependencies: + cssmin "0.3.x" + jsmin "1.x" + jxLoader "*" + moo-server "*" + promised-io "*" + timespan "2.x" + uglify-js "1.x" + walker "1.x" + winston "*" + wrench "1.3.x" + +builtin-modules@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + +builtins@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" + +bulma@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/bulma/-/bulma-0.6.2.tgz#f4b1d11d5acc51a79644eb0a2b0b10649d3d71f5" + +bytes@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-1.0.0.tgz#3569ede8ba34315fab99c3e92cb04c7220de1fa8" + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +cached-path-relative@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.1.tgz#d09c4b52800aa4c078e2dd81a869aac90d2e54e7" + +calculate-cache-key-for-tree@^1.0.0, calculate-cache-key-for-tree@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/calculate-cache-key-for-tree/-/calculate-cache-key-for-tree-1.1.0.tgz#0c3e42c9c134f3c9de5358c0f16793627ea976d6" + dependencies: + json-stable-stringify "^1.0.1" + +caller-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" + dependencies: + callsites "^0.2.0" + +callsite@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" + +callsites@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" + +camelcase-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + dependencies: + camelcase "^2.0.0" + map-obj "^1.0.0" + +camelcase@^1.0.2, camelcase@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + +camelcase@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + +camelcase@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" + +can-symlink@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/can-symlink/-/can-symlink-1.0.0.tgz#97b607d8a84bb6c6e228b902d864ecb594b9d219" + dependencies: + tmp "0.0.28" + +caniuse-lite@^1.0.30000792: + version "1.0.30000828" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000828.tgz#048f98de213f7a3c047bf78a9523c611855d4fdd" + +caniuse-lite@^1.0.30000805: + version "1.0.30000832" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000832.tgz#22a277f1d623774cc9aea2f7c1a65cb1603c63b8" + +capture-exit@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" + dependencies: + rsvp "^3.3.3" + +cardinal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-1.0.0.tgz#50e21c1b0aa37729f9377def196b5a9cec932ee9" + dependencies: + ansicolors "~0.2.1" + redeyed "~1.0.0" + +caseless@~0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + +ceibo@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ceibo/-/ceibo-2.0.0.tgz#9a61eb054a91c09934588d4e45d9dd2c3bf04eee" + +center-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" + dependencies: + align-text "^0.1.3" + lazy-cache "^1.0.3" + +chalk@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.5.1.tgz#663b3a648b68b55d04690d49167aa837858f2174" + dependencies: + ansi-styles "^1.1.0" + escape-string-regexp "^1.0.0" + has-ansi "^0.1.0" + strip-ansi "^0.3.0" + supports-color "^0.2.0" + +chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65" + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^2.3.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.0.tgz#a060a297a6b57e15b61ca63ce84995daa0fe6e52" + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chardet@^0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" + +charm@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/charm/-/charm-1.0.2.tgz#8add367153a6d9a581331052c4090991da995e35" + dependencies: + inherits "^2.0.1" + +chokidar@1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" + dependencies: + anymatch "^1.3.0" + async-each "^1.0.0" + glob-parent "^2.0.0" + inherits "^2.0.1" + is-binary-path "^1.0.0" + is-glob "^2.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.0.0" + optionalDependencies: + fsevents "^1.0.0" + +ci-info@^1.0.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +circular-json@^0.3.1: + version "0.3.3" + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +clean-base-url@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/clean-base-url/-/clean-base-url-1.0.0.tgz#c901cf0a20b972435b0eccd52d056824a4351b7b" + +clean-css-promise@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/clean-css-promise/-/clean-css-promise-0.1.1.tgz#43f3d2c8dfcb2bf071481252cd9b76433c08eecb" + dependencies: + array-to-error "^1.0.0" + clean-css "^3.4.5" + pinkie-promise "^2.0.0" + +clean-css@^3.4.5: + version "3.4.28" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.28.tgz#bf1945e82fc808f55695e6ddeaec01400efd03ff" + dependencies: + commander "2.8.x" + source-map "0.4.x" + +cli-cursor@^1.0.1, cli-cursor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" + dependencies: + restore-cursor "^1.0.1" + +cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + dependencies: + restore-cursor "^2.0.0" + +cli-spinners@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" + +cli-spinners@^1.1.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.3.1.tgz#002c1990912d0d59580c93bd36c056de99e4259a" + +cli-table2@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/cli-table2/-/cli-table2-0.2.0.tgz#2d1ef7f218a0e786e214540562d4bd177fe32d97" + dependencies: + lodash "^3.10.1" + string-width "^1.0.1" + optionalDependencies: + colors "^1.1.2" + +cli-table@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23" + dependencies: + colors "1.0.3" + +cli-truncate@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" + dependencies: + slice-ansi "0.0.4" + string-width "^1.0.1" + +cli-width@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" + +clipboard@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.1.tgz#a12481e1c13d8a50f5f036b0560fe5d16d74e46a" + dependencies: + good-listener "^1.2.2" + select "^1.1.2" + tiny-emitter "^2.0.0" + +cliui@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" + dependencies: + center-align "^0.1.1" + right-align "^0.1.1" + wordwrap "0.0.2" + +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + +clone@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + +clone@^2.0.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + +coa@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.1.tgz#f3f8b0b15073e35d70263fb1042cb2c023db38af" + dependencies: + q "^1.1.2" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + +codemirror@~5.15.0: + version "5.15.2" + resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.15.2.tgz#58b3dc732c6d10d7aae806f4c7cdd56a9b87fe8f" + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" + dependencies: + color-name "^1.1.1" + +color-name@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + +colors@1.0.3, colors@1.0.x: + version "1.0.3" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" + +colors@^1.1.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.2.1.tgz#f4a3d302976aaf042356ba1ade3b1a2c62d9d794" + +colors@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" + +combine-source-map@^0.8.0, combine-source-map@~0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.8.0.tgz#a58d0df042c186fcf822a8e8015f5450d2d79a8b" + dependencies: + convert-source-map "~1.1.0" + inline-source-map "~0.6.0" + lodash.memoize "~3.0.3" + source-map "~0.5.3" + +combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" + dependencies: + delayed-stream "~1.0.0" + +commander@2.12.2: + version "2.12.2" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.12.2.tgz#0f5946c427ed9ec0d91a46bb9def53e54650e555" + +commander@2.8.x: + version "2.8.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" + dependencies: + graceful-readlink ">= 1.0.0" + +commander@^2.11.0, commander@^2.5.0, commander@^2.6.0, commander@^2.9.0: + version "2.15.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" + +commander@~2.13.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" + +common-tags@^1.4.0: + version "1.7.2" + resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.7.2.tgz#24d9768c63d253a56ecff93845b44b4df1d52771" + dependencies: + babel-runtime "^6.26.0" + +commoner@~0.10.3: + version "0.10.8" + resolved "https://registry.yarnpkg.com/commoner/-/commoner-0.10.8.tgz#34fc3672cd24393e8bb47e70caa0293811f4f2c5" + dependencies: + commander "^2.5.0" + detective "^4.3.1" + glob "^5.0.15" + graceful-fs "^4.1.2" + iconv-lite "^0.4.5" + mkdirp "^0.5.0" + private "^0.1.6" + q "^1.1.2" + recast "^0.11.17" + +compare-versions@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.1.0.tgz#43310256a5c555aaed4193c04d8f154cf9c6efd5" + +component-bind@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" + +component-emitter@1.2.1, component-emitter@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + +component-inherit@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" + +compressible@~2.0.13: + version "2.0.13" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.13.tgz#0d1020ab924b2fdb4d6279875c7d6daba6baa7a9" + dependencies: + mime-db ">= 1.33.0 < 2" + +compression@^1.4.4: + version "1.7.2" + resolved "http://registry.npmjs.org/compression/-/compression-1.7.2.tgz#aaffbcd6aaf854b44ebb280353d5ad1651f59a69" + dependencies: + accepts "~1.3.4" + bytes "3.0.0" + compressible "~2.0.13" + debug "2.6.9" + on-headers "~1.0.1" + safe-buffer "5.1.1" + vary "~1.1.2" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + +concat-stream@^1.4.6, concat-stream@^1.4.7, concat-stream@^1.6.0, concat-stream@^1.6.1: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +concat-stream@~1.5.0, concat-stream@~1.5.1: + version "1.5.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" + dependencies: + inherits "~2.0.1" + readable-stream "~2.0.0" + typedarray "~0.0.5" + +configstore@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" + dependencies: + dot-prop "^4.1.0" + graceful-fs "^4.1.2" + make-dir "^1.0.0" + unique-string "^1.0.0" + write-file-atomic "^2.0.0" + xdg-basedir "^3.0.0" + +console-browserify@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + dependencies: + date-now "^0.1.4" + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + +console-ui@^2.0.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/console-ui/-/console-ui-2.2.2.tgz#b294a2934de869dd06789ab4be69555411edef29" + dependencies: + chalk "^2.1.0" + inquirer "^2" + json-stable-stringify "^1.0.1" + ora "^2.0.0" + through "^2.3.8" + user-info "^1.0.0" + +consolidate@^0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/consolidate/-/consolidate-0.14.5.tgz#5a25047bc76f73072667c8cb52c989888f494c63" + dependencies: + bluebird "^3.1.1" + +constants-browserify@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + +content-disposition@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" + +content-type@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + +continuable-cache@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/continuable-cache/-/continuable-cache-0.3.1.tgz#bd727a7faed77e71ff3985ac93351a912733ad0f" + +convert-source-map@^1.1.0, convert-source-map@^1.5.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" + +convert-source-map@~1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + +cookie@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + +copy-dereference@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/copy-dereference/-/copy-dereference-1.0.0.tgz#6b131865420fd81b413ba994b44d3655311152b6" + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + +core-js@^1.0.0: + version "1.2.7" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" + +core-js@^2.4.0, core-js@^2.5.0: + version "2.5.5" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.5.tgz#b14dde936c640c0579a6b50cabcc132dd6127e3b" + +core-object@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/core-object/-/core-object-1.1.0.tgz#86d63918733cf9da1a5aae729e62c0a88e66ad0a" + +core-object@^3.1.3: + version "3.1.5" + resolved "https://registry.yarnpkg.com/core-object/-/core-object-3.1.5.tgz#fa627b87502adc98045e44678e9a8ec3b9c0d2a9" + dependencies: + chalk "^2.0.0" + +core-util-is@1.0.2, core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + +cosmiconfig@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-4.0.0.tgz#760391549580bbd2df1e562bc177b13c290972dc" + dependencies: + is-directory "^0.3.1" + js-yaml "^3.9.0" + parse-json "^4.0.0" + require-from-string "^2.0.1" + +create-ecdh@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-hash@^1.1.0, create-hash@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +cross-spawn@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" + dependencies: + lru-cache "^4.0.1" + which "^1.2.9" + +cross-spawn@^5.0.1, cross-spawn@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^6.0.0: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cryptiles@2.x.x: + version "2.0.5" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" + dependencies: + boom "2.x.x" + +cryptiles@3.x.x: + version "3.1.2" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" + dependencies: + boom "5.x.x" + +crypto-browserify@^3.0.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +crypto-random-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" + +css-select-base-adapter@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.0.tgz#0102b3d14630df86c3eb9fa9f5456270106cf990" + +css-select@~1.3.0-rc0: + version "1.3.0-rc0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.3.0-rc0.tgz#6f93196aaae737666ea1036a8cb14a8fcb7a9231" + dependencies: + boolbase "^1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "^1.0.1" + +css-tree@1.0.0-alpha.27: + version "1.0.0-alpha.27" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.27.tgz#f211526909c7dc940843d83b9376ed98ddb8de47" + dependencies: + mdn-data "^1.0.0" + source-map "^0.5.3" + +css-tree@1.0.0-alpha25: + version "1.0.0-alpha25" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha25.tgz#1bbfabfbf6eeef4f01d9108ff2edd0be2fe35597" + dependencies: + mdn-data "^1.0.0" + source-map "^0.5.3" + +css-url-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/css-url-regex/-/css-url-regex-1.1.0.tgz#83834230cc9f74c457de59eebd1543feeb83b7ec" + +css-what@2.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" + +cssmin@0.3.x: + version "0.3.2" + resolved "https://registry.yarnpkg.com/cssmin/-/cssmin-0.3.2.tgz#ddce4c547b510ae0d594a8f1fbf8aaf8e2c5c00d" + +csso@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/csso/-/csso-3.5.0.tgz#acdbba5719e2c87bc801eadc032764b2e4b9d4e7" + dependencies: + css-tree "1.0.0-alpha.27" + +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + dependencies: + array-find-index "^1.0.1" + +cycle@1.0.x: + version "1.0.3" + resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2" + +d@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" + dependencies: + es5-ext "^0.10.9" + +dag-map@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/dag-map/-/dag-map-2.0.2.tgz#9714b472de82a1843de2fba9b6876938cab44c68" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + dependencies: + assert-plus "^1.0.0" + +date-fns@^1.27.2: + version "1.29.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" + +date-now@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + +debug@2.6.9, debug@^2.1.0, debug@^2.1.1, debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.4.0, debug@^2.6.8: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + dependencies: + ms "2.0.0" + +debug@^3.1.0, debug@~3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" + dependencies: + ms "2.0.0" + +decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + +dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + +deep-extend@~0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + +default-require-extensions@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" + dependencies: + strip-bom "^2.0.0" + +defaults@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + dependencies: + clone "^1.0.2" + +define-properties@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" + dependencies: + foreach "^2.0.5" + object-keys "^1.0.8" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +defined@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + +defs@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/defs/-/defs-1.1.1.tgz#b22609f2c7a11ba7a3db116805c139b1caffa9d2" + dependencies: + alter "~0.2.0" + ast-traverse "~0.1.1" + breakable "~1.0.0" + esprima-fb "~15001.1001.0-dev-harmony-fb" + simple-fmt "~0.1.0" + simple-is "~0.2.0" + stringmap "~0.2.2" + stringset "~0.2.1" + tryor "~0.1.2" + yargs "~3.27.0" + +del@^2.0.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" + dependencies: + globby "^5.0.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + rimraf "^2.2.8" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + +delegate@^3.1.2: + version "3.2.0" + resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166" + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + +depd@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" + +depd@~1.1.1, depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + +deps-sort@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" + dependencies: + JSONStream "^1.0.3" + shasum "^1.0.0" + subarg "^1.0.0" + through2 "^2.0.0" + +derequire@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/derequire/-/derequire-2.0.6.tgz#31a414bb7ca176239fa78b116636ef77d517e768" + dependencies: + acorn "^4.0.3" + concat-stream "^1.4.6" + escope "^3.6.0" + through2 "^2.0.0" + yargs "^6.5.0" + +des.js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + +detect-file@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" + dependencies: + fs-exists-sync "^0.1.0" + +detect-file@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" + +detect-indent@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-3.0.1.tgz#9dc5e5ddbceef8325764b9451b02bc6d54084f75" + dependencies: + get-stdin "^4.0.1" + minimist "^1.1.0" + repeating "^1.1.0" + +detect-indent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" + dependencies: + repeating "^2.0.0" + +detect-libc@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + +detective@^4.0.0, detective@^4.3.1: + version "4.7.1" + resolved "https://registry.yarnpkg.com/detective/-/detective-4.7.1.tgz#0eca7314338442febb6d65da54c10bb1c82b246e" + dependencies: + acorn "^5.2.1" + defined "^1.0.0" + +diff@^3.1.0, diff@^3.2.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + +diffie-hellman@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + dependencies: + esutils "^2.0.2" + +dom-serializer@0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" + dependencies: + domelementtype "~1.1.1" + entities "~1.1.1" + +domain-browser@~1.1.0: + version "1.1.7" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" + +domelementtype@1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" + +domelementtype@~1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-prop@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" + dependencies: + is-obj "^1.0.0" + +duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" + dependencies: + readable-stream "^2.0.2" + +ecc-jsbn@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" + dependencies: + jsbn "~0.1.0" + +editions@^1.1.1: + version "1.3.4" + resolved "https://registry.yarnpkg.com/editions/-/editions-1.3.4.tgz#3662cb592347c3168eb8e498a0ff73271d67f50b" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + +electron-to-chromium@^1.3.30: + version "1.3.42" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.42.tgz#95c33bf01d0cc405556aec899fe61fd4d76ea0f9" + +elegant-spinner@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" + +elliptic@^6.0.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + hmac-drbg "^1.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.0" + +ember-ajax@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/ember-ajax/-/ember-ajax-3.1.0.tgz#3db36e67357ef447639517656aeac4bb13e73a9c" + dependencies: + ember-cli-babel "^6.6.0" + +ember-block-slots@^1.1.11: + version "1.1.11" + resolved "https://registry.yarnpkg.com/ember-block-slots/-/ember-block-slots-1.1.11.tgz#71ddebfde834a661f94a50bc2d7309b297213fef" + dependencies: + ember-cli-babel "^5.1.6" + ember-cli-htmlbars "^1.0.3" + ember-prop-types ">=2.0.0 <4.0.0" + ember-runtime-enumerable-includes-polyfill "^2.0.0" + +ember-browserify@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/ember-browserify/-/ember-browserify-1.2.2.tgz#598e76640bfa7fa124e9564c9c5be91ccfb533c1" + dependencies: + acorn "^5.0.3" + broccoli-caching-writer "^3.0.3" + broccoli-kitchen-sink-helpers "^0.3.1" + broccoli-merge-trees "^1.1.2" + broccoli-plugin "^1.2.1" + browserify "^13.0.0" + core-object "^1.1.0" + debug "^2.2.0" + derequire "^2.0.3" + ember-cli-version-checker "^2.1.0" + fs-tree "^1.0.0" + fs-tree-diff "^0.5.0" + lodash "^4.5.1" + md5-hex "^1.3.0" + mkdirp "^0.5.0" + promise-map-series "^0.2.0" + quick-temp "^0.1.2" + rimraf "^2.2.8" + rsvp "^3.0.14" + symlink-or-copy "^1.0.0" + through2 "^2.0.0" + walk-sync "^0.2.7" + +ember-bulma-css@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/ember-bulma-css/-/ember-bulma-css-0.2.1.tgz#4b168a74191c127d5bfec21dd3ceb0b279c72b1c" + dependencies: + bulma "^0.6.2" + ember-cli-babel "^6.6.0" + ember-cli-sass "^7.2.0" + +ember-changeset-validations@^1.2.11: + version "1.2.11" + resolved "https://registry.yarnpkg.com/ember-changeset-validations/-/ember-changeset-validations-1.2.11.tgz#b769c3557f42fae05398869f3904200e21a005d7" + dependencies: + ember-changeset "1.4.2-beta.1" + ember-cli-babel "^6.0.0" + ember-cli-htmlbars "^1.1.1" + ember-get-config "^0.2.4" + ember-validators "^1.0.0" + +ember-changeset@1.4.2-beta.1: + version "1.4.2-beta.1" + resolved "https://registry.yarnpkg.com/ember-changeset/-/ember-changeset-1.4.2-beta.1.tgz#c6d750a3e6682f4a07f01d221eacd890b22e7250" + dependencies: + ember-cli-babel "^6.8.2" + ember-deep-set "^0.1.3" + +ember-cli-app-version@^3.0.0: + version "3.1.3" + resolved "https://registry.yarnpkg.com/ember-cli-app-version/-/ember-cli-app-version-3.1.3.tgz#26d25f5e653ff0106f0b39da6d75518ba8ed282d" + dependencies: + ember-cli-babel "^6.8.0" + git-repo-version "^1.0.0" + +ember-cli-autoprefixer@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/ember-cli-autoprefixer/-/ember-cli-autoprefixer-0.8.1.tgz#071dd9574451057b03dcc03b71f5bd9cb07ef332" + dependencies: + broccoli-autoprefixer "^5.0.0" + lodash "^4.0.0" + +ember-cli-babel@5.1.5: + version "5.1.5" + resolved "https://registry.yarnpkg.com/ember-cli-babel/-/ember-cli-babel-5.1.5.tgz#c9a5cf9a00781c5570fc434229e9ab85a55661b0" + dependencies: + broccoli-babel-transpiler "^5.4.5" + broccoli-funnel "^0.2.3" + clone "^1.0.2" + ember-cli-version-checker "^1.0.2" + resolve "^1.1.2" + +ember-cli-babel@6.12.0, ember-cli-babel@^6.0.0, ember-cli-babel@^6.0.0-beta.7, ember-cli-babel@^6.10.0, ember-cli-babel@^6.11.0, ember-cli-babel@^6.12.0, ember-cli-babel@^6.3.0, ember-cli-babel@^6.6.0, ember-cli-babel@^6.7.2, ember-cli-babel@^6.8.0, ember-cli-babel@^6.8.1, ember-cli-babel@^6.8.2, ember-cli-babel@^6.9.0, ember-cli-babel@^6.9.2: + version "6.12.0" + resolved "https://registry.yarnpkg.com/ember-cli-babel/-/ember-cli-babel-6.12.0.tgz#3adcdbe1278da1fcd0b9038f1360cb4ac5d4414c" + dependencies: + amd-name-resolver "0.0.7" + babel-plugin-debug-macros "^0.1.11" + babel-plugin-ember-modules-api-polyfill "^2.3.0" + babel-plugin-transform-es2015-modules-amd "^6.24.0" + babel-polyfill "^6.16.0" + babel-preset-env "^1.5.1" + broccoli-babel-transpiler "^6.1.2" + broccoli-debug "^0.6.2" + broccoli-funnel "^1.0.0" + broccoli-source "^1.1.0" + clone "^2.0.0" + ember-cli-version-checker "^2.1.0" + semver "^5.4.1" + +ember-cli-babel@^5.1.5, ember-cli-babel@^5.1.6, ember-cli-babel@^5.1.7, ember-cli-babel@^5.2.4: + version "5.2.8" + resolved "https://registry.yarnpkg.com/ember-cli-babel/-/ember-cli-babel-5.2.8.tgz#0356b03cc3fdff5d0f2ecaa46a0e1cfaebffd876" + dependencies: + broccoli-babel-transpiler "^5.6.2" + broccoli-funnel "^1.0.0" + clone "^2.0.0" + ember-cli-version-checker "^1.0.2" + resolve "^1.1.2" + +ember-cli-broccoli-sane-watcher@^2.0.4: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ember-cli-broccoli-sane-watcher/-/ember-cli-broccoli-sane-watcher-2.1.1.tgz#1687adada9022de26053fba833dc7dd10f03dd08" + dependencies: + broccoli-slow-trees "^3.0.1" + heimdalljs "^0.2.1" + heimdalljs-logger "^0.1.7" + rsvp "^3.0.18" + sane "^2.4.1" + +ember-cli-clipboard@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/ember-cli-clipboard/-/ember-cli-clipboard-0.9.0.tgz#c0cfce1a8a81ba1646e54bff9d41249b8bc507f7" + dependencies: + broccoli-funnel "^1.1.0" + clipboard "^2.0.0" + ember-cli-babel "^6.8.0" + ember-cli-htmlbars "^2.0.2" + fastboot-transform "0.1.1" + +ember-cli-code-coverage@^1.0.0-beta.4: + version "1.0.0-beta.4" + resolved "https://registry.yarnpkg.com/ember-cli-code-coverage/-/ember-cli-code-coverage-1.0.0-beta.4.tgz#8726d5e754d395702be1b23b0ea9cc08618720e5" + dependencies: + babel-core "^6.24.1" + babel-plugin-istanbul "^4.1.6" + babel-plugin-transform-async-to-generator "^6.24.1" + body-parser "^1.15.0" + co "^4.6.0" + ember-cli-babel "^6.6.0" + ember-cli-htmlbars "^2.0.1" + ember-cli-version-checker "^2.0.0" + extend "^3.0.0" + fs-extra "^5.0.0" + istanbul-api "^1.1.14" + lodash.concat "^4.5.0" + node-dir "^0.1.16" + rsvp "^4.8.1" + walk-sync "^0.3.2" + +ember-cli-dependency-checker@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ember-cli-dependency-checker/-/ember-cli-dependency-checker-2.1.0.tgz#9d66286a7c778e94733eaf21320d129c4fd0dd64" + dependencies: + chalk "^1.1.3" + is-git-url "^1.0.0" + resolve "^1.5.0" + semver "^5.3.0" + +ember-cli-eslint@^4.2.1: + version "4.2.3" + resolved "https://registry.yarnpkg.com/ember-cli-eslint/-/ember-cli-eslint-4.2.3.tgz#2844d3f5e8184f19b2d7132ba99eb0b370b55598" + dependencies: + broccoli-lint-eslint "^4.2.1" + ember-cli-version-checker "^2.1.0" + rsvp "^4.6.1" + walk-sync "^0.3.0" + +ember-cli-flash@^1.6.3: + version "1.6.3" + resolved "https://registry.yarnpkg.com/ember-cli-flash/-/ember-cli-flash-1.6.3.tgz#837951a3a2c3c70f17cdf553c0ab4e41da62a73d" + dependencies: + ember-cli-babel "^6.10.0" + ember-cli-htmlbars "^2.0.1" + ember-runtime-enumerable-includes-polyfill "^2.0.0" + +ember-cli-format-number@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ember-cli-format-number/-/ember-cli-format-number-2.0.0.tgz#db744b0578484529b68c0068bbd057e637007ec0" + dependencies: + ember-cli-babel "^5.1.5" + ember-cli-node-assets "^0.1.4" + numeral "^1.5.3" + +ember-cli-get-component-path-option@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ember-cli-get-component-path-option/-/ember-cli-get-component-path-option-1.0.0.tgz#0d7b595559e2f9050abed804f1d8eff1b08bc771" + +ember-cli-get-dependency-depth@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ember-cli-get-dependency-depth/-/ember-cli-get-dependency-depth-1.0.0.tgz#e0afecf82a2d52f00f28ab468295281aec368d11" + +ember-cli-htmlbars-inline-precompile@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/ember-cli-htmlbars-inline-precompile/-/ember-cli-htmlbars-inline-precompile-1.0.2.tgz#5b544f664d5d9911f08cd979c5f70d8cb0ca2add" + dependencies: + babel-plugin-htmlbars-inline-precompile "^0.2.3" + ember-cli-version-checker "^2.0.0" + hash-for-dep "^1.0.2" + heimdalljs-logger "^0.1.7" + silent-error "^1.1.0" + +ember-cli-htmlbars@^1.0.1, ember-cli-htmlbars@^1.0.3, ember-cli-htmlbars@^1.1.1: + version "1.3.4" + resolved "https://registry.yarnpkg.com/ember-cli-htmlbars/-/ember-cli-htmlbars-1.3.4.tgz#461289724b34af372a6a0c4b6635819156963353" + dependencies: + broccoli-persistent-filter "^1.0.3" + ember-cli-version-checker "^1.0.2" + hash-for-dep "^1.0.2" + json-stable-stringify "^1.0.0" + strip-bom "^2.0.0" + +ember-cli-htmlbars@^2.0.1, ember-cli-htmlbars@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/ember-cli-htmlbars/-/ember-cli-htmlbars-2.0.3.tgz#e116e1500dba12f29c94b05b9ec90f52cb8bb042" + dependencies: + broccoli-persistent-filter "^1.0.3" + hash-for-dep "^1.0.2" + json-stable-stringify "^1.0.0" + strip-bom "^3.0.0" + +ember-cli-inject-live-reload@^1.4.1: + version "1.7.0" + resolved "https://registry.yarnpkg.com/ember-cli-inject-live-reload/-/ember-cli-inject-live-reload-1.7.0.tgz#af94336e015336127dfb98080ad442bb233e37ed" + +ember-cli-is-package-missing@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ember-cli-is-package-missing/-/ember-cli-is-package-missing-1.0.0.tgz#6e6184cafb92635dd93ca6c946b104292d4e3390" + +ember-cli-legacy-blueprints@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/ember-cli-legacy-blueprints/-/ember-cli-legacy-blueprints-0.2.1.tgz#480f37cb83f1eda2d46bbc7d07c59ea2e8ce9b84" + dependencies: + chalk "^2.3.0" + ember-cli-get-component-path-option "^1.0.0" + ember-cli-get-dependency-depth "^1.0.0" + ember-cli-is-package-missing "^1.0.0" + ember-cli-lodash-subset "^2.0.1" + ember-cli-normalize-entity-name "^1.0.0" + ember-cli-path-utils "^1.0.0" + ember-cli-string-utils "^1.0.0" + ember-cli-test-info "^1.0.0" + ember-cli-valid-component-name "^1.0.0" + ember-cli-version-checker "^2.1.0" + ember-router-generator "^1.0.0" + exists-sync "0.0.3" + fs-extra "^4.0.0" + inflection "^1.7.1" + rsvp "^4.7.0" + silent-error "^1.0.0" + +ember-cli-lodash-subset@^1.0.7: + version "1.0.12" + resolved "https://registry.yarnpkg.com/ember-cli-lodash-subset/-/ember-cli-lodash-subset-1.0.12.tgz#af2e77eba5dcb0d77f3308d3a6fd7d3450f6e537" + +ember-cli-lodash-subset@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ember-cli-lodash-subset/-/ember-cli-lodash-subset-2.0.1.tgz#20cb68a790fe0fde2488ddfd8efbb7df6fe766f2" + +ember-cli-node-assets@^0.1.4: + version "0.1.6" + resolved "https://registry.yarnpkg.com/ember-cli-node-assets/-/ember-cli-node-assets-0.1.6.tgz#6488a2949048c801ad6d9e33753c7bce32fc1146" + dependencies: + broccoli-funnel "^1.0.1" + broccoli-merge-trees "^1.1.1" + broccoli-unwatched-tree "^0.1.1" + debug "^2.2.0" + lodash "^4.5.1" + resolve "^1.1.7" + +ember-cli-node-assets@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/ember-cli-node-assets/-/ember-cli-node-assets-0.2.2.tgz#d2d55626e7cc6619f882d7fe55751f9266022708" + dependencies: + broccoli-funnel "^1.0.1" + broccoli-merge-trees "^1.1.1" + broccoli-source "^1.1.0" + debug "^2.2.0" + lodash "^4.5.1" + resolve "^1.1.7" + +ember-cli-normalize-entity-name@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ember-cli-normalize-entity-name/-/ember-cli-normalize-entity-name-1.0.0.tgz#0b14f7bcbc599aa117b5fddc81e4fd03c4bad5b7" + dependencies: + silent-error "^1.0.0" + +ember-cli-page-object@^1.15.0-beta.2: + version "1.15.0-beta.2" + resolved "https://registry.yarnpkg.com/ember-cli-page-object/-/ember-cli-page-object-1.15.0-beta.2.tgz#e4f004f60b32de2d0581090988c71fb991f9e098" + dependencies: + ceibo "~2.0.0" + ember-cli-babel "^6.6.0" + ember-cli-node-assets "^0.2.2" + ember-native-dom-helpers "^0.5.3" + jquery "^3.2.1" + rsvp "^4.7.0" + +ember-cli-path-utils@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ember-cli-path-utils/-/ember-cli-path-utils-1.0.0.tgz#4e39af8b55301cddc5017739b77a804fba2071ed" + +ember-cli-preprocess-registry@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/ember-cli-preprocess-registry/-/ember-cli-preprocess-registry-3.1.1.tgz#38456c21c4d2b64945850cf9ec68db6ba769288a" + dependencies: + broccoli-clean-css "^1.1.0" + broccoli-funnel "^1.0.0" + broccoli-merge-trees "^1.0.0" + debug "^2.2.0" + ember-cli-lodash-subset "^1.0.7" + exists-sync "0.0.3" + process-relative-require "^1.0.0" + silent-error "^1.0.0" + +ember-cli-qunit@^4.1.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ember-cli-qunit/-/ember-cli-qunit-4.3.2.tgz#cfd89ad3b0dbc28a9c2223d532b52eeade7c602c" + dependencies: + ember-cli-babel "^6.11.0" + ember-qunit "^3.3.2" + +ember-cli-sass@^7.1.4: + version "7.1.7" + resolved "https://registry.yarnpkg.com/ember-cli-sass/-/ember-cli-sass-7.1.7.tgz#66899134788ec8d2406a45f5346d4db47a2aa012" + dependencies: + broccoli-funnel "^1.0.0" + broccoli-merge-trees "^1.1.0" + broccoli-sass-source-maps "^2.1.0" + ember-cli-version-checker "^2.1.0" + +ember-cli-sass@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/ember-cli-sass/-/ember-cli-sass-7.2.0.tgz#293d1a94c43c1fdbb3835378e43d255e8ad5c961" + dependencies: + broccoli-funnel "^1.0.0" + broccoli-merge-trees "^1.1.0" + broccoli-sass-source-maps "^2.1.0" + ember-cli-version-checker "^2.1.0" + +ember-cli-shims@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/ember-cli-shims/-/ember-cli-shims-1.2.0.tgz#0f53aff0aab80b5f29da3a9731bac56169dd941f" + dependencies: + broccoli-file-creator "^1.1.1" + broccoli-merge-trees "^2.0.0" + ember-cli-version-checker "^2.0.0" + ember-rfc176-data "^0.3.1" + silent-error "^1.0.1" + +ember-cli-sri@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ember-cli-sri/-/ember-cli-sri-2.1.1.tgz#971620934a4b9183cf7923cc03e178b83aa907fd" + dependencies: + broccoli-sri-hash "^2.1.0" + +ember-cli-string-utils@^1.0.0, ember-cli-string-utils@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ember-cli-string-utils/-/ember-cli-string-utils-1.1.0.tgz#39b677fc2805f55173735376fcef278eaa4452a1" + +ember-cli-test-info@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ember-cli-test-info/-/ember-cli-test-info-1.0.0.tgz#ed4e960f249e97523cf891e4aed2072ce84577b4" + dependencies: + ember-cli-string-utils "^1.0.0" + +ember-cli-test-loader@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ember-cli-test-loader/-/ember-cli-test-loader-2.2.0.tgz#3fb8d5d1357e4460d3f0a092f5375e71b6f7c243" + dependencies: + ember-cli-babel "^6.8.1" + +ember-cli-uglify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ember-cli-uglify/-/ember-cli-uglify-2.1.0.tgz#4a0641fe4768d7ab7d4807aca9924cc77c544184" + dependencies: + broccoli-uglify-sourcemap "^2.1.1" + lodash.defaultsdeep "^4.6.0" + +ember-cli-valid-component-name@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ember-cli-valid-component-name/-/ember-cli-valid-component-name-1.0.0.tgz#71550ce387e0233065f30b30b1510aa2dfbe87ef" + dependencies: + silent-error "^1.0.0" + +ember-cli-version-checker@^1.0.2: + version "1.3.1" + resolved "https://registry.yarnpkg.com/ember-cli-version-checker/-/ember-cli-version-checker-1.3.1.tgz#0bc2d134c830142da64bf9627a0eded10b61ae72" + dependencies: + semver "^5.3.0" + +ember-cli-version-checker@^2.0.0, ember-cli-version-checker@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ember-cli-version-checker/-/ember-cli-version-checker-2.1.0.tgz#fc79a56032f3717cf844ada7cbdec1a06fedb604" + dependencies: + resolve "^1.3.3" + semver "^5.3.0" + +ember-cli@~2.18.2: + version "2.18.2" + resolved "https://registry.yarnpkg.com/ember-cli/-/ember-cli-2.18.2.tgz#bb15313a15139a85248a86d203643f918ba40f57" + dependencies: + amd-name-resolver "1.0.0" + babel-plugin-transform-es2015-modules-amd "^6.24.0" + bower-config "^1.3.0" + bower-endpoint-parser "0.2.2" + broccoli-babel-transpiler "^6.0.0" + broccoli-brocfile-loader "^0.18.0" + broccoli-builder "^0.18.8" + broccoli-concat "^3.2.2" + broccoli-config-loader "^1.0.0" + broccoli-config-replace "^1.1.2" + broccoli-debug "^0.6.3" + broccoli-funnel "^2.0.0" + broccoli-funnel-reducer "^1.0.0" + broccoli-merge-trees "^2.0.0" + broccoli-middleware "^1.0.0" + broccoli-source "^1.1.0" + broccoli-stew "^1.2.0" + calculate-cache-key-for-tree "^1.0.0" + capture-exit "^1.1.0" + chalk "^2.0.1" + clean-base-url "^1.0.0" + compression "^1.4.4" + configstore "^3.0.0" + console-ui "^2.0.0" + core-object "^3.1.3" + dag-map "^2.0.2" + diff "^3.2.0" + ember-cli-broccoli-sane-watcher "^2.0.4" + ember-cli-is-package-missing "^1.0.0" + ember-cli-legacy-blueprints "^0.2.0" + ember-cli-lodash-subset "^2.0.1" + ember-cli-normalize-entity-name "^1.0.0" + ember-cli-preprocess-registry "^3.1.0" + ember-cli-string-utils "^1.0.0" + ember-try "^0.2.15" + ensure-posix-path "^1.0.2" + execa "^0.8.0" + exists-sync "0.0.4" + exit "^0.1.2" + express "^4.12.3" + filesize "^3.1.3" + find-up "^2.1.0" + fs-extra "^4.0.0" + fs-tree-diff "^0.5.2" + get-caller-file "^1.0.0" + git-repo-info "^1.4.1" + glob "7.1.1" + heimdalljs "^0.2.3" + heimdalljs-fs-monitor "^0.1.0" + heimdalljs-graph "^0.3.1" + heimdalljs-logger "^0.1.7" + http-proxy "^1.9.0" + inflection "^1.7.0" + is-git-url "^1.0.0" + isbinaryfile "^3.0.0" + js-yaml "^3.6.1" + json-stable-stringify "^1.0.1" + leek "0.0.24" + lodash.template "^4.2.5" + markdown-it "^8.3.0" + markdown-it-terminal "0.1.0" + minimatch "^3.0.0" + morgan "^1.8.1" + node-modules-path "^1.0.0" + nopt "^3.0.6" + npm-package-arg "^6.0.0" + portfinder "^1.0.7" + promise-map-series "^0.2.1" + quick-temp "^0.1.8" + resolve "^1.3.0" + rsvp "^4.7.0" + sane "^2.2.0" + semver "^5.1.1" + silent-error "^1.0.0" + sort-package-json "^1.4.0" + symlink-or-copy "^1.1.8" + temp "0.8.3" + testem "^2.0.0" + tiny-lr "^1.0.3" + tree-sync "^1.2.1" + uuid "^3.0.0" + validate-npm-package-name "^3.0.0" + walk-sync "^0.3.0" + yam "0.0.22" + +ember-collection@^1.0.0-alpha.7: + version "1.0.0-alpha.7" + resolved "https://registry.yarnpkg.com/ember-collection/-/ember-collection-1.0.0-alpha.7.tgz#172c2ddaa7d3482fac0781686b434c9c9c42d79a" + dependencies: + ember-cli-babel "^5.1.5" + ember-cli-htmlbars "^1.0.1" + layout-bin-packer "^1.2.0" + +ember-compatibility-helpers@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/ember-compatibility-helpers/-/ember-compatibility-helpers-1.0.0-beta.2.tgz#00cb134af45f9562fa47a23f4da81a63aad41943" + dependencies: + babel-plugin-debug-macros "^0.1.11" + ember-cli-version-checker "^2.0.0" + semver "^5.4.1" + +ember-composable-helpers@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ember-composable-helpers/-/ember-composable-helpers-2.1.0.tgz#71f75ab2de1c696d21939b5f9dcc62eaf2c947e5" + dependencies: + broccoli-funnel "^1.0.1" + ember-cli-babel "^6.6.0" + +ember-computed-style@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/ember-computed-style/-/ember-computed-style-0.2.0.tgz#6ceb2f1f10f9555fa5b5092f5668dde2c9df5440" + dependencies: + ember-cli-babel "^5.1.7" + +ember-data@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/ember-data/-/ember-data-3.1.1.tgz#8c17c97a4932b0a0a405cc3e38c43140880366d2" + dependencies: + "@ember/ordered-set" "^1.0.0" + amd-name-resolver "0.0.7" + babel-plugin-ember-modules-api-polyfill "^1.4.2" + babel-plugin-feature-flags "^0.3.1" + babel-plugin-filter-imports "^0.3.1" + babel-plugin-transform-es2015-block-scoping "^6.24.1" + babel6-plugin-strip-class-callcheck "^6.0.0" + babel6-plugin-strip-heimdall "^6.0.1" + broccoli-babel-transpiler "^6.0.0" + broccoli-debug "^0.6.2" + broccoli-file-creator "^1.0.0" + broccoli-funnel "^1.2.0" + broccoli-merge-trees "^2.0.0" + broccoli-rollup "^1.2.0" + calculate-cache-key-for-tree "^1.1.0" + chalk "^1.1.1" + ember-cli-babel "^6.8.2" + ember-cli-path-utils "^1.0.0" + ember-cli-string-utils "^1.0.0" + ember-cli-test-info "^1.0.0" + ember-cli-version-checker "^2.1.0" + ember-inflector "^2.0.0" + ember-runtime-enumerable-includes-polyfill "^2.0.0" + exists-sync "0.0.3" + git-repo-info "^1.1.2" + heimdalljs "^0.3.0" + inflection "^1.8.0" + npm-git-info "^1.0.0" + resolve "^1.5.0" + semver "^5.1.0" + silent-error "^1.0.0" + +ember-deep-set@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/ember-deep-set/-/ember-deep-set-0.1.3.tgz#852dbcf189419d33e57af724ff2d6d8f404d7b73" + dependencies: + ember-cli-babel "^6.6.0" + +ember-export-application-global@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ember-export-application-global/-/ember-export-application-global-2.0.0.tgz#8d6d7619ac8a1a3f8c43003549eb21ebed685bd2" + dependencies: + ember-cli-babel "^6.0.0-beta.7" + +ember-get-config@^0.2.2, ember-get-config@^0.2.4: + version "0.2.4" + resolved "https://registry.yarnpkg.com/ember-get-config/-/ember-get-config-0.2.4.tgz#118492a2a03d73e46004ed777928942021fe1ecd" + dependencies: + broccoli-file-creator "^1.1.1" + ember-cli-babel "^6.3.0" + +ember-href-to@^1.15.1: + version "1.15.1" + resolved "https://registry.yarnpkg.com/ember-href-to/-/ember-href-to-1.15.1.tgz#1ba20ec201245c7cae7e2aa3eec50eb2aa25b729" + dependencies: + ember-cli-babel "^6.8.2" + ember-router-service-polyfill "^1.0.2" + +ember-inflector@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ember-inflector/-/ember-inflector-2.2.0.tgz#edd273dfd1a29be27f14b195e2f0ed70e812d9e0" + dependencies: + ember-cli-babel "^6.0.0" + +ember-load-initializers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ember-load-initializers/-/ember-load-initializers-1.0.0.tgz#4919eaf06f6dfeca7e134633d8c05a6c9921e6e7" + dependencies: + ember-cli-babel "^6.0.0-beta.7" + +ember-math-helpers@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/ember-math-helpers/-/ember-math-helpers-2.4.1.tgz#fcfc1c74c1d6d1e34f2346d655d89284637e4bcd" + dependencies: + broccoli-funnel "^2.0.0" + ember-cli-babel "^6.6.0" + ember-cli-htmlbars "^2.0.1" + +ember-native-dom-helpers@^0.5.3: + version "0.5.10" + resolved "https://registry.yarnpkg.com/ember-native-dom-helpers/-/ember-native-dom-helpers-0.5.10.tgz#9c7172e4ddfa5dd86830c46a936e2f8eca3e5896" + dependencies: + broccoli-funnel "^1.1.0" + ember-cli-babel "^6.6.0" + +ember-pluralize@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/ember-pluralize/-/ember-pluralize-0.2.0.tgz#2c152ddaff13bf560de42d75f8ea7e5d6ce7c5c8" + dependencies: + ember-cli-babel "5.1.5" + +"ember-prop-types@>=2.0.0 <4.0.0": + version "3.14.2" + resolved "https://registry.yarnpkg.com/ember-prop-types/-/ember-prop-types-3.14.2.tgz#59ee8f7672aa67fce8aa0cdf2d9527c4e13c3e42" + dependencies: + ember-cli-babel "^5.1.7" + ember-get-config "^0.2.2" + npm-install-security-check "^1.0.0" + +ember-qunit@^3.3.2: + version "3.4.0" + resolved "https://registry.yarnpkg.com/ember-qunit/-/ember-qunit-3.4.0.tgz#47a60c2b889cd4b4a46380bf9da2b10115c0eae7" + dependencies: + "@ember/test-helpers" "^0.7.18" + broccoli-funnel "^2.0.1" + broccoli-merge-trees "^2.0.0" + common-tags "^1.4.0" + ember-cli-babel "^6.3.0" + ember-cli-test-loader "^2.2.0" + qunit "^2.5.0" + +ember-require-module@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/ember-require-module/-/ember-require-module-0.2.0.tgz#eafe436737ead4762220a9166b78364abf754274" + dependencies: + ember-cli-babel "^6.9.2" + +ember-resolver@^4.0.0: + version "4.5.5" + resolved "https://registry.yarnpkg.com/ember-resolver/-/ember-resolver-4.5.5.tgz#6fef0597a42724e4960f37588df8a208ffd3365a" + dependencies: + "@glimmer/resolver" "^0.4.1" + babel-plugin-debug-macros "^0.1.10" + broccoli-funnel "^1.1.0" + broccoli-merge-trees "^2.0.0" + ember-cli-babel "^6.8.1" + ember-cli-version-checker "^2.0.0" + resolve "^1.3.3" + +ember-rfc176-data@^0.2.0, ember-rfc176-data@^0.2.7: + version "0.2.7" + resolved "https://registry.yarnpkg.com/ember-rfc176-data/-/ember-rfc176-data-0.2.7.tgz#bd355bc9b473e08096b518784170a23388bc973b" + +ember-rfc176-data@^0.3.0, ember-rfc176-data@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/ember-rfc176-data/-/ember-rfc176-data-0.3.2.tgz#bde5538939529b263c142b53a47402f8127f8dce" + +ember-router-generator@^1.0.0, ember-router-generator@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/ember-router-generator/-/ember-router-generator-1.2.3.tgz#8ed2ca86ff323363120fc14278191e9e8f1315ee" + dependencies: + recast "^0.11.3" + +ember-router-service-polyfill@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/ember-router-service-polyfill/-/ember-router-service-polyfill-1.0.2.tgz#6e5565f196fa7045cbe06a6fab861f9e766fe62a" + dependencies: + ember-cli-babel "^6.8.2" + +ember-runtime-enumerable-includes-polyfill@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ember-runtime-enumerable-includes-polyfill/-/ember-runtime-enumerable-includes-polyfill-2.1.0.tgz#dc6d4a028471e4acc350dfd2a149874fb20913f5" + dependencies: + ember-cli-babel "^6.9.0" + ember-cli-version-checker "^2.1.0" + +ember-sinon-qunit@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ember-sinon-qunit/-/ember-sinon-qunit-2.1.0.tgz#85fd64e73db40148816a46a64f9f78b170b72cb2" + dependencies: + ember-cli-babel "^6.7.2" + ember-sinon "~1.0.0" + +ember-sinon@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ember-sinon/-/ember-sinon-1.0.1.tgz#056390eacc9367b4c3955ce1cb5a04246f8197f5" + dependencies: + broccoli-funnel "^2.0.0" + broccoli-merge-trees "^2.0.0" + ember-cli-babel "^6.3.0" + sinon "^3.2.1" + +ember-source@~2.18.2: + version "2.18.2" + resolved "https://registry.yarnpkg.com/ember-source/-/ember-source-2.18.2.tgz#75d00eef5488bfe504044b025c752ba924eaf87f" + dependencies: + broccoli-funnel "^2.0.1" + broccoli-merge-trees "^2.0.0" + ember-cli-get-component-path-option "^1.0.0" + ember-cli-is-package-missing "^1.0.0" + ember-cli-normalize-entity-name "^1.0.0" + ember-cli-path-utils "^1.0.0" + ember-cli-string-utils "^1.1.0" + ember-cli-test-info "^1.0.0" + ember-cli-valid-component-name "^1.0.0" + ember-cli-version-checker "^2.1.0" + ember-router-generator "^1.2.3" + inflection "^1.12.0" + jquery "^3.2.1" + resolve "^1.3.3" + +ember-test-selectors@^0.3.9: + version "0.3.9" + resolved "https://registry.yarnpkg.com/ember-test-selectors/-/ember-test-selectors-0.3.9.tgz#dbe0a815cf04cad83c555f232cd69f50e95b342a" + dependencies: + ember-cli-babel "^6.8.2" + ember-cli-version-checker "^2.0.0" + +ember-truth-helpers@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ember-truth-helpers/-/ember-truth-helpers-2.0.0.tgz#f3e2eef667859197f1328bb4f83b0b35b661c1ac" + dependencies: + ember-cli-babel "^6.8.2" + +ember-try-config@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ember-try-config/-/ember-try-config-2.2.0.tgz#6be0af6c71949813e02ac793564fddbf8336b807" + dependencies: + lodash "^4.6.1" + node-fetch "^1.3.3" + rsvp "^3.2.1" + semver "^5.1.0" + +ember-try@^0.2.15: + version "0.2.23" + resolved "https://registry.yarnpkg.com/ember-try/-/ember-try-0.2.23.tgz#39b57141b4907541d0ac8b503d211e6946b08718" + dependencies: + chalk "^1.0.0" + cli-table2 "^0.2.0" + core-object "^1.1.0" + debug "^2.2.0" + ember-try-config "^2.2.0" + extend "^3.0.0" + fs-extra "^0.26.0" + promise-map-series "^0.2.1" + resolve "^1.1.6" + rimraf "^2.3.2" + rsvp "^3.0.17" + semver "^5.1.0" + +ember-url@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/ember-url/-/ember-url-0.6.0.tgz#332a363528cff67d23e39bde4f70c6d684e32b89" + dependencies: + ember-cli-babel "^6.12.0" + +ember-validators@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ember-validators/-/ember-validators-1.1.1.tgz#34b06f7c4bde4e57c30cb9dfc6566647c1c140c1" + dependencies: + ember-cli-babel "^6.9.2" + ember-require-module "^0.2.0" + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + +encoding@^0.1.11: + version "0.1.12" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" + dependencies: + iconv-lite "~0.4.13" + +engine.io-client@~3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.2.1.tgz#6f54c0475de487158a1a7c77d10178708b6add36" + dependencies: + component-emitter "1.2.1" + component-inherit "0.0.3" + debug "~3.1.0" + engine.io-parser "~2.1.1" + has-cors "1.1.0" + indexof "0.0.1" + parseqs "0.0.5" + parseuri "0.0.5" + ws "~3.3.1" + xmlhttprequest-ssl "~1.5.4" + yeast "0.1.2" + +engine.io-parser@~2.1.0, engine.io-parser@~2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.1.2.tgz#4c0f4cff79aaeecbbdcfdea66a823c6085409196" + dependencies: + after "0.8.2" + arraybuffer.slice "~0.0.7" + base64-arraybuffer "0.1.5" + blob "0.0.4" + has-binary2 "~1.0.2" + +engine.io@~3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-3.2.0.tgz#54332506f42f2edc71690d2f2a42349359f3bf7d" + dependencies: + accepts "~1.3.4" + base64id "1.0.0" + cookie "0.3.1" + debug "~3.1.0" + engine.io-parser "~2.1.0" + ws "~3.3.1" + +ensure-posix-path@^1.0.0, ensure-posix-path@^1.0.1, ensure-posix-path@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/ensure-posix-path/-/ensure-posix-path-1.0.2.tgz#a65b3e42d0b71cfc585eb774f9943c8d9b91b0c2" + +entities@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" + +error-ex@^1.2.0, error-ex@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" + dependencies: + is-arrayish "^0.2.1" + +error@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/error/-/error-7.0.2.tgz#a5f75fff4d9926126ddac0ea5dc38e689153cb02" + dependencies: + string-template "~0.2.1" + xtend "~4.0.0" + +es-abstract@^1.5.1, es-abstract@^1.6.1: + version "1.11.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.11.0.tgz#cce87d518f0496893b1a30cd8461835535480681" + dependencies: + es-to-primitive "^1.1.1" + function-bind "^1.1.1" + has "^1.0.1" + is-callable "^1.1.3" + is-regex "^1.0.4" + +es-to-primitive@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" + dependencies: + is-callable "^1.1.1" + is-date-object "^1.0.1" + is-symbol "^1.0.1" + +es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: + version "0.10.42" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.42.tgz#8c07dd33af04d5dcd1310b5cef13bea63a89ba8d" + dependencies: + es6-iterator "~2.0.3" + es6-symbol "~3.1.1" + next-tick "1" + +es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" + dependencies: + d "1" + es5-ext "^0.10.35" + es6-symbol "^3.1.1" + +es6-map@^0.1.3, es6-map@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-set "~0.1.5" + es6-symbol "~3.1.1" + event-emitter "~0.3.5" + +es6-set@~0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-symbol "3.1.1" + event-emitter "~0.3.5" + +es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" + dependencies: + d "1" + es5-ext "~0.10.14" + +es6-weak-map@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" + dependencies: + d "1" + es5-ext "^0.10.14" + es6-iterator "^2.0.1" + es6-symbol "^3.1.1" + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + +escape-string-regexp@^1.0.0, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + +escope@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" + dependencies: + es6-map "^0.1.3" + es6-weak-map "^2.0.1" + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-plugin-ember@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-ember/-/eslint-plugin-ember-5.1.0.tgz#fb96abd2d8bf105678a0aa81dadd99d7ca441ba1" + dependencies: + ember-rfc176-data "^0.2.7" + require-folder-tree "^1.4.5" + snake-case "^2.1.0" + +eslint-scope@^3.7.1: + version "3.7.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-visitor-keys@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" + +eslint@^4.0.0: + version "4.19.1" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" + dependencies: + ajv "^5.3.0" + babel-code-frame "^6.22.0" + chalk "^2.1.0" + concat-stream "^1.6.0" + cross-spawn "^5.1.0" + debug "^3.1.0" + doctrine "^2.1.0" + eslint-scope "^3.7.1" + eslint-visitor-keys "^1.0.0" + espree "^3.5.4" + esquery "^1.0.0" + esutils "^2.0.2" + file-entry-cache "^2.0.0" + functional-red-black-tree "^1.0.1" + glob "^7.1.2" + globals "^11.0.1" + ignore "^3.3.3" + imurmurhash "^0.1.4" + inquirer "^3.0.6" + is-resolvable "^1.0.0" + js-yaml "^3.9.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.4" + minimatch "^3.0.2" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.2" + path-is-inside "^1.0.2" + pluralize "^7.0.0" + progress "^2.0.0" + regexpp "^1.0.1" + require-uncached "^1.0.3" + semver "^5.3.0" + strip-ansi "^4.0.0" + strip-json-comments "~2.0.1" + table "4.0.2" + text-table "~0.2.0" + +espree@^3.5.4: + version "3.5.4" + resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" + dependencies: + acorn "^5.5.0" + acorn-jsx "^3.0.0" + +esprima-fb@~15001.1001.0-dev-harmony-fb: + version "15001.1001.0-dev-harmony-fb" + resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz#43beb57ec26e8cf237d3dd8b33e42533577f2659" + +esprima@^2.6.0: + version "2.7.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" + +esprima@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" + +esprima@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.0.0.tgz#53cf247acda77313e551c3aa2e73342d3fb4f7d9" + +esprima@~3.1.0: + version "3.1.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" + +esquery@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" + dependencies: + estraverse "^4.0.0" + +esrecurse@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" + dependencies: + estraverse "^4.1.0" + +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + +esutils@^2.0.0, esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + +event-emitter@~0.3.5: + version "0.3.5" + resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" + dependencies: + d "1" + es5-ext "~0.10.14" + +eventemitter3@1.x.x: + version "1.2.0" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" + +events-to-array@^1.0.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/events-to-array/-/events-to-array-1.1.2.tgz#2d41f563e1fe400ed4962fe1a4d5c6a7539df7f6" + +events@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +exec-file-sync@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/exec-file-sync/-/exec-file-sync-2.0.2.tgz#58d441db46e40de6d1f30de5be022785bd89e328" + dependencies: + is-obj "^1.0.0" + object-assign "^4.0.1" + spawn-sync "^1.0.11" + +exec-sh@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" + dependencies: + merge "^1.1.3" + +execa@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz#ff456a8f53f90f8eccc71a96d11bdfc7f082cb50" + dependencies: + cross-spawn "^6.0.0" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +exists-stat@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/exists-stat/-/exists-stat-1.0.0.tgz#0660e3525a2e89d9e446129440c272edfa24b529" + +exists-sync@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/exists-sync/-/exists-sync-0.0.3.tgz#b910000bedbb113b378b82f5f5a7638107622dcf" + +exists-sync@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/exists-sync/-/exists-sync-0.0.4.tgz#9744c2c428cc03b01060db454d4b12f0ef3c8879" + +exit-hook@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" + +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + +expand-brackets@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" + dependencies: + is-posix-bracket "^0.1.0" + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +expand-range@^1.8.1: + version "1.8.2" + resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + dependencies: + fill-range "^2.1.0" + +expand-tilde@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" + dependencies: + os-homedir "^1.0.1" + +expand-tilde@^2.0.0, expand-tilde@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" + dependencies: + homedir-polyfill "^1.0.1" + +express@^4.10.7, express@^4.12.3: + version "4.16.3" + resolved "https://registry.yarnpkg.com/express/-/express-4.16.3.tgz#6af8a502350db3246ecc4becf6b5a34d22f7ed53" + dependencies: + accepts "~1.3.5" + array-flatten "1.1.1" + body-parser "1.18.2" + content-disposition "0.5.2" + content-type "~1.0.4" + cookie "0.3.1" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~1.1.2" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.1.1" + fresh "0.5.2" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.2" + path-to-regexp "0.1.7" + proxy-addr "~2.0.3" + qs "6.5.1" + range-parser "~1.2.0" + safe-buffer "5.1.1" + send "0.16.2" + serve-static "1.13.2" + setprototypeof "1.1.0" + statuses "~1.4.0" + type-is "~1.6.16" + utils-merge "1.0.1" + vary "~1.1.2" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extend@^3.0.0, extend@~3.0.0, extend@~3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" + +external-editor@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b" + dependencies: + extend "^3.0.0" + spawn-sync "^1.0.15" + tmp "^0.0.29" + +external-editor@^2.0.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" + dependencies: + chardet "^0.4.0" + iconv-lite "^0.4.17" + tmp "^0.0.33" + +extglob@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" + dependencies: + is-extglob "^1.0.0" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + +extsprintf@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + +eyes@0.1.x: + version "0.1.8" + resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" + +fast-deep-equal@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" + +fast-json-stable-stringify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + +fast-ordered-set@^1.0.0, fast-ordered-set@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/fast-ordered-set/-/fast-ordered-set-1.0.3.tgz#3fbb36634f7be79e4f7edbdb4a357dee25d184eb" + dependencies: + blank-object "^1.0.1" + +fast-sourcemap-concat@^1.0.1: + version "1.2.5" + resolved "https://registry.yarnpkg.com/fast-sourcemap-concat/-/fast-sourcemap-concat-1.2.5.tgz#196db60ffefa9c616291512cd89113210e3cb747" + dependencies: + chalk "^0.5.1" + fs-extra "^0.30.0" + heimdalljs-logger "^0.1.7" + memory-streams "^0.1.0" + mkdirp "^0.5.0" + source-map "^0.4.2" + source-map-url "^0.3.0" + sourcemap-validator "^1.0.5" + +fastboot-transform@0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/fastboot-transform/-/fastboot-transform-0.1.1.tgz#de55550d85644ec94cb11264c2ba883e3ea3b255" + dependencies: + broccoli-stew "^1.5.0" + +faye-websocket@~0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" + dependencies: + websocket-driver ">=0.5.1" + +fb-watchman@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" + dependencies: + bser "^2.0.0" + +figures@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" + dependencies: + flat-cache "^1.2.1" + object-assign "^4.0.1" + +filename-regex@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" + +fileset@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" + dependencies: + glob "^7.0.3" + minimatch "^3.0.3" + +filesize@^3.1.3: + version "3.6.1" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" + +fill-range@^2.1.0: + version "2.2.3" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" + dependencies: + is-number "^2.1.0" + isobject "^2.0.0" + randomatic "^1.1.3" + repeat-element "^1.1.2" + repeat-string "^1.5.2" + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +finalhandler@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105" + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.2" + statuses "~1.4.0" + unpipe "~1.0.0" + +find-index@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/find-index/-/find-index-1.1.0.tgz#53007c79cd30040d6816d79458e8837d5c5705ef" + +find-parent-dir@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + dependencies: + locate-path "^2.0.0" + +findup-sync@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" + dependencies: + detect-file "^1.0.0" + is-glob "^3.1.0" + micromatch "^3.0.4" + resolve-dir "^1.0.1" + +findup-sync@^0.4.2: + version "0.4.3" + resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.3.tgz#40043929e7bc60adf0b7f4827c4c6e75a0deca12" + dependencies: + detect-file "^0.1.0" + is-glob "^2.0.1" + micromatch "^2.3.7" + resolve-dir "^0.1.0" + +fireworm@^0.7.0: + version "0.7.1" + resolved "https://registry.yarnpkg.com/fireworm/-/fireworm-0.7.1.tgz#ccf20f7941f108883fcddb99383dbe6e1861c758" + dependencies: + async "~0.2.9" + is-type "0.0.1" + lodash.debounce "^3.1.1" + lodash.flatten "^3.0.2" + minimatch "^3.0.2" + +flat-cache@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" + dependencies: + circular-json "^0.3.1" + del "^2.0.2" + graceful-fs "^4.1.2" + write "^0.2.1" + +for-in@^1.0.1, for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + +for-own@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + dependencies: + for-in "^1.0.1" + +foreach@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + +form-data@~2.1.1: + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.12" + +form-data@~2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" + dependencies: + asynckit "^0.4.0" + combined-stream "1.0.6" + mime-types "^2.1.12" + +formatio@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.2.0.tgz#f3b2167d9068c4698a8d51f4f760a39a54d818eb" + dependencies: + samsam "1.x" + +forwarded@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + dependencies: + map-cache "^0.2.2" + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + +fs-exists-sync@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" + +fs-extra@^0.24.0: + version "0.24.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.24.0.tgz#d4e4342a96675cb7846633a6099249332b539952" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + path-is-absolute "^1.0.0" + rimraf "^2.2.8" + +fs-extra@^0.26.0: + version "0.26.7" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.26.7.tgz#9ae1fdd94897798edab76d0918cf42d0c3184fa9" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + path-is-absolute "^1.0.0" + rimraf "^2.2.8" + +fs-extra@^0.30.0: + version "0.30.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + path-is-absolute "^1.0.0" + rimraf "^2.2.8" + +fs-extra@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + +fs-extra@^2.0.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + +fs-extra@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-readdir-recursive@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz#315b4fb8c1ca5b8c47defef319d073dad3568059" + +fs-tree-diff@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/fs-tree-diff/-/fs-tree-diff-0.3.1.tgz#41a84ee34994bd564c63d9852f1109c5de7f9290" + dependencies: + debug "^2.2.0" + fast-ordered-set "^1.0.2" + +fs-tree-diff@^0.5.0, fs-tree-diff@^0.5.2, fs-tree-diff@^0.5.3, fs-tree-diff@^0.5.4, fs-tree-diff@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/fs-tree-diff/-/fs-tree-diff-0.5.7.tgz#315e2b098d5fe7f622880ac965b1b051868ac871" + dependencies: + heimdalljs-logger "^0.1.7" + object-assign "^4.1.0" + path-posix "^1.0.0" + symlink-or-copy "^1.1.8" + +fs-tree@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-tree/-/fs-tree-1.0.0.tgz#ef64da3e6dd32cc0df27c3b3e0c299ffa575c026" + dependencies: + mkdirp "~0.5.0" + rimraf "~2.2.8" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + +fsevents@^1.0.0, fsevents@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" + dependencies: + nan "^2.3.0" + node-pre-gyp "^0.6.39" + +fstream-ignore@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" + dependencies: + fstream "^1.0.0" + inherits "2" + minimatch "^3.0.0" + +fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: + version "1.0.11" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" + dependencies: + graceful-fs "^4.1.2" + inherits "~2.0.0" + mkdirp ">=0.5 0" + rimraf "2" + +function-bind@^1.0.2, function-bind@^1.1.0, function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +gaze@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" + dependencies: + globule "^1.0.0" + +generate-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" + +generate-object-property@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" + dependencies: + is-property "^1.0.0" + +get-caller-file@^1.0.0, get-caller-file@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" + +get-own-enumerable-property-symbols@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-2.0.1.tgz#5c4ad87f2834c4b9b4e84549dc1e0650fb38c24b" + +get-stdin@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + dependencies: + assert-plus "^1.0.0" + +git-repo-info@^1.1.2, git-repo-info@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/git-repo-info/-/git-repo-info-1.4.1.tgz#2a072823254aaf62fcf0766007d7b6651bd41943" + +git-repo-version@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/git-repo-version/-/git-repo-version-1.0.2.tgz#2c8e9bee5d970cafc0dd58480f9dc56d9afe8e4f" + dependencies: + git-repo-info "^1.4.1" + +glob-base@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" + dependencies: + glob-parent "^2.0.0" + is-glob "^2.0.0" + +glob-parent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" + dependencies: + is-glob "^2.0.0" + +glob@7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.2" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^5.0.10, glob@^5.0.15: + version "5.0.15" + resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" + dependencies: + inflight "^1.0.4" + inherits "2" + minimatch "2 || 3" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^6.0.4: + version "6.0.4" + resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" + dependencies: + inflight "^1.0.4" + inherits "2" + minimatch "2 || 3" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.0.0, glob@^7.0.3, glob@^7.0.4, glob@^7.0.5, glob@^7.1.0, glob@^7.1.2, glob@~7.1.1: + version "7.1.2" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-modules@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" + dependencies: + global-prefix "^0.1.4" + is-windows "^0.2.0" + +global-modules@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" + dependencies: + global-prefix "^1.0.1" + is-windows "^1.0.1" + resolve-dir "^1.0.0" + +global-prefix@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" + dependencies: + homedir-polyfill "^1.0.0" + ini "^1.3.4" + is-windows "^0.2.0" + which "^1.2.12" + +global-prefix@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" + dependencies: + expand-tilde "^2.0.2" + homedir-polyfill "^1.0.1" + ini "^1.3.4" + is-windows "^1.0.1" + which "^1.2.14" + +globals@^11.0.1: + version "11.4.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.4.0.tgz#b85c793349561c16076a3c13549238a27945f1bc" + +globals@^6.4.0: + version "6.4.1" + resolved "https://registry.yarnpkg.com/globals/-/globals-6.4.1.tgz#8498032b3b6d1cc81eebc5f79690d8fe29fabf4f" + +globals@^9.18.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + +globby@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" + dependencies: + array-union "^1.0.1" + arrify "^1.0.0" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +globule@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.0.tgz#1dc49c6822dd9e8a2fa00ba2a295006e8664bd09" + dependencies: + glob "~7.1.1" + lodash "~4.17.4" + minimatch "~3.0.2" + +good-listener@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" + dependencies: + delegate "^3.1.2" + +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: + version "4.1.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" + +"graceful-readlink@>= 1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" + +growly@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + +handlebars@^4.0.3, handlebars@^4.0.4: + version "4.0.11" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" + dependencies: + async "^1.4.0" + optimist "^0.6.1" + source-map "^0.4.4" + optionalDependencies: + uglify-js "^2.6" + +har-schema@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + +har-validator@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" + dependencies: + chalk "^1.1.1" + commander "^2.9.0" + is-my-json-valid "^2.12.4" + pinkie-promise "^2.0.0" + +har-validator@~4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" + dependencies: + ajv "^4.9.1" + har-schema "^1.0.5" + +har-validator@~5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" + dependencies: + ajv "^5.1.0" + har-schema "^2.0.0" + +has-ansi@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-0.1.0.tgz#84f265aae8c0e6a88a12d7022894b7568894c62e" + dependencies: + ansi-regex "^0.2.0" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + dependencies: + ansi-regex "^2.0.0" + +has-binary2@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.2.tgz#e83dba49f0b9be4d026d27365350d9f03f54be98" + dependencies: + isarray "2.0.1" + +has-cors@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" + +has-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +has@^1.0.0, has@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" + dependencies: + function-bind "^1.0.2" + +hash-base@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +hash-for-dep@^1.0.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/hash-for-dep/-/hash-for-dep-1.2.3.tgz#5ec69fca32c23523972d52acb5bb65ffc3664cab" + dependencies: + broccoli-kitchen-sink-helpers "^0.3.1" + heimdalljs "^0.2.3" + heimdalljs-logger "^0.1.7" + resolve "^1.4.0" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.0" + +hawk@3.1.3, hawk@~3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" + dependencies: + boom "2.x.x" + cryptiles "2.x.x" + hoek "2.x.x" + sntp "1.x.x" + +hawk@~6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" + dependencies: + boom "4.x.x" + cryptiles "3.x.x" + hoek "4.x.x" + sntp "2.x.x" + +heimdalljs-fs-monitor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/heimdalljs-fs-monitor/-/heimdalljs-fs-monitor-0.1.1.tgz#acaf5ebf7137bc2fc98e811e31ae4b121c3a75a3" + dependencies: + heimdalljs "^0.2.0" + heimdalljs-logger "^0.1.7" + +heimdalljs-graph@^0.3.1: + version "0.3.4" + resolved "https://registry.yarnpkg.com/heimdalljs-graph/-/heimdalljs-graph-0.3.4.tgz#0bd75797beeaa20b0ed59017aed3b2d95312acee" + +heimdalljs-logger@^0.1.7: + version "0.1.9" + resolved "https://registry.yarnpkg.com/heimdalljs-logger/-/heimdalljs-logger-0.1.9.tgz#d76ada4e45b7bb6f786fc9c010a68eb2e2faf176" + dependencies: + debug "^2.2.0" + heimdalljs "^0.2.0" + +heimdalljs@^0.2.0, heimdalljs@^0.2.1, heimdalljs@^0.2.3: + version "0.2.5" + resolved "https://registry.yarnpkg.com/heimdalljs/-/heimdalljs-0.2.5.tgz#6aa54308eee793b642cff9cf94781445f37730ac" + dependencies: + rsvp "~3.2.1" + +heimdalljs@^0.3.0: + version "0.3.3" + resolved "https://registry.yarnpkg.com/heimdalljs/-/heimdalljs-0.3.3.tgz#e92d2c6f77fd46d5bf50b610d28ad31755054d0b" + dependencies: + rsvp "~3.2.1" + +hmac-drbg@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hoek@2.x.x: + version "2.16.3" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" + +hoek@4.x.x: + version "4.2.1" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" + +home-or-tmp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-1.0.0.tgz#4b9f1e40800c3e50c6c27f781676afcce71f3985" + dependencies: + os-tmpdir "^1.0.1" + user-home "^1.1.1" + +home-or-tmp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.1" + +homedir-polyfill@^1.0.0, homedir-polyfill@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" + dependencies: + parse-passwd "^1.0.0" + +hosted-git-info@^2.1.4, hosted-git-info@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" + +htmlescape@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" + +http-errors@1.6.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" + dependencies: + depd "1.1.1" + inherits "2.0.3" + setprototypeof "1.0.3" + statuses ">= 1.3.1 < 2" + +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + +http-parser-js@>=0.4.0: + version "0.4.11" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.11.tgz#5b720849c650903c27e521633d94696ee95f3529" + +http-proxy@^1.13.1, http-proxy@^1.9.0: + version "1.16.2" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" + dependencies: + eventemitter3 "1.x.x" + requires-port "1.x.x" + +http-signature@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" + dependencies: + assert-plus "^0.2.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-browserify@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" + +husky@^0.14.3: + version "0.14.3" + resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" + dependencies: + is-ci "^1.0.10" + normalize-path "^1.0.0" + strip-indent "^2.0.0" + +iconv-lite@0.4.19: + version "0.4.19" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" + +iconv-lite@^0.4.17, iconv-lite@^0.4.5, iconv-lite@~0.4.13: + version "0.4.21" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.21.tgz#c47f8733d02171189ebc4a400f3218d348094798" + dependencies: + safer-buffer "^2.1.0" + +ieee754@^1.1.4: + version "1.1.11" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.11.tgz#c16384ffe00f5b7835824e67b6f2bd44a5229455" + +ignore@^3.3.3: + version "3.3.7" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + +in-publish@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" + +include-path-searcher@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/include-path-searcher/-/include-path-searcher-0.1.0.tgz#c0cf2ddfa164fb2eae07bc7ca43a7f191cb4d7bd" + +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + dependencies: + repeating "^2.0.0" + +indent-string@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" + +indexof@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + +inflection@^1.12.0, inflection@^1.7.0, inflection@^1.7.1, inflection@^1.8.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.12.0.tgz#a200935656d6f5f6bc4dc7502e1aecb703228416" + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + +ini@^1.3.4, ini@~1.3.0: + version "1.3.5" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + +inline-source-map-comment@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/inline-source-map-comment/-/inline-source-map-comment-1.0.5.tgz#50a8a44c2a790dfac441b5c94eccd5462635faf6" + dependencies: + chalk "^1.0.0" + get-stdin "^4.0.1" + minimist "^1.1.1" + sum-up "^1.0.1" + xtend "^4.0.0" + +inline-source-map@~0.6.0: + version "0.6.2" + resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" + dependencies: + source-map "~0.5.3" + +inquirer@^2: + version "2.0.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-2.0.0.tgz#e1351687b90d150ca403ceaa3cefb1e3065bef4b" + dependencies: + ansi-escapes "^1.1.0" + chalk "^1.0.0" + cli-cursor "^1.0.1" + cli-width "^2.0.0" + external-editor "^1.1.0" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.6" + pinkie-promise "^2.0.0" + run-async "^2.2.0" + rx "^4.1.0" + string-width "^2.0.0" + strip-ansi "^3.0.0" + through "^2.3.6" + +inquirer@^3.0.6: + version "3.3.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.0.4" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rx-lite "^4.0.8" + rx-lite-aggregates "^4.0.8" + string-width "^2.1.0" + strip-ansi "^4.0.0" + through "^2.3.6" + +insert-module-globals@^7.0.0: + version "7.0.6" + resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.6.tgz#15a31d9d394e76d08838b9173016911d7fd4ea1b" + dependencies: + JSONStream "^1.0.3" + combine-source-map "^0.8.0" + concat-stream "^1.6.1" + is-buffer "^1.1.0" + lexical-scope "^1.2.0" + path-is-absolute "^1.0.1" + process "~0.11.0" + through2 "^2.0.0" + xtend "^4.0.0" + +invariant@^2.2.2: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + dependencies: + loose-envify "^1.0.0" + +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + +ipaddr.js@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.6.0.tgz#e3fa357b773da619f26e95f049d055c72796f86b" + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + dependencies: + kind-of "^6.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + dependencies: + binary-extensions "^1.0.0" + +is-buffer@^1.1.0, is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + +is-builtin-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + dependencies: + builtin-modules "^1.0.0" + +is-callable@^1.1.1, is-callable@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" + +is-ci@^1.0.10: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" + dependencies: + ci-info "^1.0.0" + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + dependencies: + kind-of "^6.0.0" + +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + +is-dotfile@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" + +is-equal-shallow@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" + dependencies: + is-primitive "^2.0.0" + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + +is-extglob@^2.1.0, is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + +is-finite@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + +is-git-url@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-git-url/-/is-git-url-1.0.0.tgz#53f684cd143285b52c3244b4e6f28253527af66b" + +is-glob@^2.0.0, is-glob@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + dependencies: + is-extglob "^1.0.0" + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + dependencies: + is-extglob "^2.1.0" + +is-glob@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" + dependencies: + is-extglob "^2.1.1" + +is-integer@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-integer/-/is-integer-1.0.7.tgz#6bde81aacddf78b659b6629d629cadc51a886d5c" + dependencies: + is-finite "^1.0.0" + +is-my-ip-valid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824" + +is-my-json-valid@^2.12.4: + version "2.17.2" + resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.17.2.tgz#6b2103a288e94ef3de5cf15d29dd85fc4b78d65c" + dependencies: + generate-function "^2.0.0" + generate-object-property "^1.1.0" + is-my-ip-valid "^1.0.0" + jsonpointer "^4.0.0" + xtend "^4.0.0" + +is-number@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + dependencies: + kind-of "^3.0.2" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + dependencies: + kind-of "^3.0.2" + +is-number@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" + +is-obj@^1.0.0, is-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + +is-observable@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" + dependencies: + symbol-observable "^0.2.2" + +is-odd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" + dependencies: + is-number "^4.0.0" + +is-path-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" + +is-path-in-cwd@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" + dependencies: + is-path-inside "^1.0.0" + +is-path-inside@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" + dependencies: + path-is-inside "^1.0.1" + +is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + dependencies: + isobject "^3.0.1" + +is-posix-bracket@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" + +is-primitive@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" + +is-promise@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + +is-property@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" + +is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + dependencies: + has "^1.0.1" + +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + +is-resolvable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" + +is-stream@^1.0.1, is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + +is-symbol@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" + +is-type@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/is-type/-/is-type-0.0.1.tgz#f651d85c365d44955d14a51d8d7061f3f6b4779c" + dependencies: + core-util-is "~1.0.0" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + +is-windows@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" + +is-windows@^1.0.1, is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + +isarray@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" + +isarray@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.4.tgz#38e7bcbb0f3ba1b7933c86ba1894ddfc3781bbb7" + +isbinaryfile@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + +isstream@0.1.x, isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + +istanbul-api@^1.1.14: + version "1.3.1" + resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" + dependencies: + async "^2.1.4" + compare-versions "^3.1.0" + fileset "^2.0.2" + istanbul-lib-coverage "^1.2.0" + istanbul-lib-hook "^1.2.0" + istanbul-lib-instrument "^1.10.1" + istanbul-lib-report "^1.1.4" + istanbul-lib-source-maps "^1.2.4" + istanbul-reports "^1.3.0" + js-yaml "^3.7.0" + mkdirp "^0.5.1" + once "^1.4.0" + +istanbul-lib-coverage@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" + +istanbul-lib-hook@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.0.tgz#ae556fd5a41a6e8efa0b1002b1e416dfeaf9816c" + dependencies: + append-transform "^0.4.0" + +istanbul-lib-instrument@^1.10.1: + version "1.10.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" + dependencies: + babel-generator "^6.18.0" + babel-template "^6.16.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + babylon "^6.18.0" + istanbul-lib-coverage "^1.2.0" + semver "^5.3.0" + +istanbul-lib-report@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" + dependencies: + istanbul-lib-coverage "^1.2.0" + mkdirp "^0.5.1" + path-parse "^1.0.5" + supports-color "^3.1.2" + +istanbul-lib-source-maps@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.4.tgz#cc7ccad61629f4efff8e2f78adb8c522c9976ec7" + dependencies: + debug "^3.1.0" + istanbul-lib-coverage "^1.2.0" + mkdirp "^0.5.1" + rimraf "^2.6.1" + source-map "^0.5.3" + +istanbul-reports@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" + dependencies: + handlebars "^4.0.3" + +istextorbinary@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/istextorbinary/-/istextorbinary-2.1.0.tgz#dbed2a6f51be2f7475b68f89465811141b758874" + dependencies: + binaryextensions "1 || 2" + editions "^1.1.1" + textextensions "1 || 2" + +ivy-codemirror@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ivy-codemirror/-/ivy-codemirror-2.1.0.tgz#c06f1606c375610bf62b007a21a9e63f5854175e" + dependencies: + codemirror "~5.15.0" + ember-cli-babel "^6.0.0" + ember-cli-node-assets "^0.2.2" + +jest-get-type@^21.2.0: + version "21.2.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" + +jest-validate@^21.1.0: + version "21.2.1" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" + dependencies: + chalk "^2.0.1" + jest-get-type "^21.2.0" + leven "^2.1.0" + pretty-format "^21.2.1" + +jquery@^3.2.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.3.1.tgz#958ce29e81c9790f31be7792df5d4d95fc57fbca" + +js-base64@^2.1.8: + version "2.4.3" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.3.tgz#2e545ec2b0f2957f41356510205214e98fad6582" + +js-reporters@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/js-reporters/-/js-reporters-1.2.1.tgz#f88c608e324a3373a95bcc45ad305e5c979c459b" + +js-tokens@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-1.0.1.tgz#cc435a5c8b94ad15acb7983140fc80182c89aeae" + +js-tokens@^3.0.0, js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + +js-yaml@0.3.x: + version "0.3.7" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-0.3.7.tgz#d739d8ee86461e54b354d6a7d7d1f2ad9a167f62" + +js-yaml@^3.2.5, js-yaml@^3.2.7, js-yaml@^3.6.1, js-yaml@^3.7.0, js-yaml@^3.9.0, js-yaml@^3.9.1: + version "3.11.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + +jsesc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" + +jsesc@^2.5.0: + version "2.5.1" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" + +jsesc@~0.3.x: + version "0.3.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.3.0.tgz#1bf5ee63b4539fe2e26d0c1e99c240b97a457972" + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + +jsmin@1.x: + version "1.0.1" + resolved "https://registry.yarnpkg.com/jsmin/-/jsmin-1.0.1.tgz#e7bd0dcd6496c3bf4863235bf461a3d98aa3b98c" + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + +json-schema-traverse@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + +json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + dependencies: + jsonify "~0.0.0" + +json-stable-stringify@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" + dependencies: + jsonify "~0.0.0" + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + +json5@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" + +json5@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + +jsonpointer@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" + +jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +just-extend@^1.1.27: + version "1.1.27" + resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-1.1.27.tgz#ec6e79410ff914e472652abfa0e603c03d60e905" + +jxLoader@*: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jxLoader/-/jxLoader-0.1.1.tgz#0134ea5144e533b594fc1ff25ff194e235c53ecd" + dependencies: + js-yaml "0.3.x" + moo-server "1.3.x" + promised-io "*" + walker "1.x" + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + optionalDependencies: + graceful-fs "^4.1.9" + +labeled-stream-splicer@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.1.tgz#9cffa32fd99e1612fd1d86a8db962416d5292926" + dependencies: + inherits "^2.0.1" + isarray "^2.0.4" + stream-splicer "^2.0.0" + +layout-bin-packer@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/layout-bin-packer/-/layout-bin-packer-1.3.0.tgz#6f232f67db7606b2a405f39ae7197f2931a26c0c" + dependencies: + ember-cli-babel "^5.2.4" + +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + dependencies: + invert-kv "^1.0.0" + +leek@0.0.24: + version "0.0.24" + resolved "https://registry.yarnpkg.com/leek/-/leek-0.0.24.tgz#e400e57f0e60d8ef2bd4d068dc428a54345dbcda" + dependencies: + debug "^2.1.0" + lodash.assign "^3.2.0" + rsvp "^3.0.21" + +leven@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/leven/-/leven-1.0.2.tgz#9144b6eebca5f1d0680169f1a6770dcea60b75c3" + +leven@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +lexical-scope@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" + dependencies: + astw "^2.0.0" + +linkify-it@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.0.3.tgz#d94a4648f9b1c179d64fa97291268bdb6ce9434f" + dependencies: + uc.micro "^1.0.1" + +lint-staged@^6.1.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-6.1.1.tgz#cd08c4d9b8ccc2d37198d1c47ce77d22be6cf324" + dependencies: + app-root-path "^2.0.0" + chalk "^2.1.0" + commander "^2.11.0" + cosmiconfig "^4.0.0" + debug "^3.1.0" + dedent "^0.7.0" + execa "^0.8.0" + find-parent-dir "^0.3.0" + is-glob "^4.0.0" + jest-validate "^21.1.0" + listr "^0.13.0" + lodash "^4.17.4" + log-symbols "^2.0.0" + minimatch "^3.0.0" + npm-which "^3.0.1" + p-map "^1.1.1" + path-is-inside "^1.0.2" + pify "^3.0.0" + staged-git-files "1.0.0" + stringify-object "^3.2.0" + +listr-silent-renderer@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" + +listr-update-renderer@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.4.0.tgz#344d980da2ca2e8b145ba305908f32ae3f4cc8a7" + dependencies: + chalk "^1.1.3" + cli-truncate "^0.2.1" + elegant-spinner "^1.0.1" + figures "^1.7.0" + indent-string "^3.0.0" + log-symbols "^1.0.2" + log-update "^1.0.2" + strip-ansi "^3.0.1" + +listr-verbose-renderer@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#8206f4cf6d52ddc5827e5fd14989e0e965933a35" + dependencies: + chalk "^1.1.3" + cli-cursor "^1.0.2" + date-fns "^1.27.2" + figures "^1.7.0" + +listr@^0.13.0: + version "0.13.0" + resolved "https://registry.yarnpkg.com/listr/-/listr-0.13.0.tgz#20bb0ba30bae660ee84cc0503df4be3d5623887d" + dependencies: + chalk "^1.1.3" + cli-truncate "^0.2.1" + figures "^1.7.0" + indent-string "^2.1.0" + is-observable "^0.2.0" + is-promise "^2.1.0" + is-stream "^1.1.0" + listr-silent-renderer "^1.1.1" + listr-update-renderer "^0.4.0" + listr-verbose-renderer "^0.4.0" + log-symbols "^1.0.2" + log-update "^1.0.2" + ora "^0.2.3" + p-map "^1.1.1" + rxjs "^5.4.2" + stream-to-observable "^0.2.0" + strip-ansi "^3.0.1" + +livereload-js@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.3.0.tgz#c3ab22e8aaf5bf3505d80d098cbad67726548c9a" + +load-json-file@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" + +loader.js@^4.2.3: + version "4.7.0" + resolved "https://registry.yarnpkg.com/loader.js/-/loader.js-4.7.0.tgz#a1a52902001c83631efde9688b8ab3799325ef1f" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +lodash._baseassign@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" + dependencies: + lodash._basecopy "^3.0.0" + lodash.keys "^3.0.0" + +lodash._basebind@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._basebind/-/lodash._basebind-2.3.0.tgz#2b5bc452a0e106143b21869f233bdb587417d248" + dependencies: + lodash._basecreate "~2.3.0" + lodash._setbinddata "~2.3.0" + lodash.isobject "~2.3.0" + +lodash._basecopy@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" + +lodash._basecreate@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-2.3.0.tgz#9b88a86a4dcff7b7f3c61d83a2fcfc0671ec9de0" + dependencies: + lodash._renative "~2.3.0" + lodash.isobject "~2.3.0" + lodash.noop "~2.3.0" + +lodash._basecreatecallback@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._basecreatecallback/-/lodash._basecreatecallback-2.3.0.tgz#37b2ab17591a339e988db3259fcd46019d7ac362" + dependencies: + lodash._setbinddata "~2.3.0" + lodash.bind "~2.3.0" + lodash.identity "~2.3.0" + lodash.support "~2.3.0" + +lodash._basecreatewrapper@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._basecreatewrapper/-/lodash._basecreatewrapper-2.3.0.tgz#aa0c61ad96044c3933376131483a9759c3651247" + dependencies: + lodash._basecreate "~2.3.0" + lodash._setbinddata "~2.3.0" + lodash._slice "~2.3.0" + lodash.isobject "~2.3.0" + +lodash._baseflatten@^3.0.0: + version "3.1.4" + resolved "https://registry.yarnpkg.com/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz#0770ff80131af6e34f3b511796a7ba5214e65ff7" + dependencies: + lodash.isarguments "^3.0.0" + lodash.isarray "^3.0.0" + +lodash._bindcallback@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" + +lodash._createassigner@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" + dependencies: + lodash._bindcallback "^3.0.0" + lodash._isiterateecall "^3.0.0" + lodash.restparam "^3.0.0" + +lodash._createwrapper@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._createwrapper/-/lodash._createwrapper-2.3.0.tgz#d1aae1102dadf440e8e06fc133a6edd7fe146075" + dependencies: + lodash._basebind "~2.3.0" + lodash._basecreatewrapper "~2.3.0" + lodash.isfunction "~2.3.0" + +lodash._escapehtmlchar@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._escapehtmlchar/-/lodash._escapehtmlchar-2.3.0.tgz#d03da6bd82eedf38dc0a5b503d740ecd0e894592" + dependencies: + lodash._htmlescapes "~2.3.0" + +lodash._escapestringchar@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._escapestringchar/-/lodash._escapestringchar-2.3.0.tgz#cce73ae60fc6da55d2bf8a0679c23ca2bab149fc" + +lodash._getnative@^3.0.0: + version "3.9.1" + resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" + +lodash._htmlescapes@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._htmlescapes/-/lodash._htmlescapes-2.3.0.tgz#1ca98863cadf1fa1d82c84f35f31e40556a04f3a" + +lodash._isiterateecall@^3.0.0: + version "3.0.9" + resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" + +lodash._objecttypes@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._objecttypes/-/lodash._objecttypes-2.3.0.tgz#6a3ea3987dd6eeb8021b2d5c9c303549cc2bae1e" + +lodash._reinterpolate@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-2.3.0.tgz#03ee9d85c0e55cbd590d71608a295bdda51128ec" + +lodash._reinterpolate@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" + +lodash._renative@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._renative/-/lodash._renative-2.3.0.tgz#77d8edd4ced26dd5971f9e15a5f772e4e317fbd3" + +lodash._reunescapedhtml@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._reunescapedhtml/-/lodash._reunescapedhtml-2.3.0.tgz#db920b55ac7f3ff825939aceb9ba2c231713d24d" + dependencies: + lodash._htmlescapes "~2.3.0" + lodash.keys "~2.3.0" + +lodash._setbinddata@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._setbinddata/-/lodash._setbinddata-2.3.0.tgz#e5610490acd13277d59858d95b5f2727f1508f04" + dependencies: + lodash._renative "~2.3.0" + lodash.noop "~2.3.0" + +lodash._shimkeys@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._shimkeys/-/lodash._shimkeys-2.3.0.tgz#611f93149e3e6c721096b48769ef29537ada8ba9" + dependencies: + lodash._objecttypes "~2.3.0" + +lodash._slice@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash._slice/-/lodash._slice-2.3.0.tgz#147198132859972e4680ca29a5992c855669aa5c" + +lodash.assign@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" + dependencies: + lodash._baseassign "^3.0.0" + lodash._createassigner "^3.0.0" + lodash.keys "^3.0.0" + +lodash.assign@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" + +lodash.assignin@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" + +lodash.bind@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-2.3.0.tgz#c2a8e18b68e5ecc152e2b168266116fea5b016cc" + dependencies: + lodash._createwrapper "~2.3.0" + lodash._renative "~2.3.0" + lodash._slice "~2.3.0" + +lodash.castarray@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.castarray/-/lodash.castarray-4.4.0.tgz#c02513515e309daddd4c24c60cfddcf5976d9115" + +lodash.clonedeep@^4.3.2, lodash.clonedeep@^4.4.1: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + +lodash.concat@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.concat/-/lodash.concat-4.5.0.tgz#b053ae02e4a8008582e7256b9d02bda6d0380395" + +lodash.debounce@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-3.1.1.tgz#812211c378a94cc29d5aa4e3346cf0bfce3a7df5" + dependencies: + lodash._getnative "^3.0.0" + +lodash.defaults@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-2.3.0.tgz#a832b001f138f3bb9721c2819a2a7cc5ae21ed25" + dependencies: + lodash._objecttypes "~2.3.0" + lodash.keys "~2.3.0" + +lodash.defaultsdeep@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.0.tgz#bec1024f85b1bd96cbea405b23c14ad6443a6f81" + +lodash.escape@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-2.3.0.tgz#844c38c58f844e1362ebe96726159b62cf5f2a58" + dependencies: + lodash._escapehtmlchar "~2.3.0" + lodash._reunescapedhtml "~2.3.0" + lodash.keys "~2.3.0" + +lodash.find@^4.5.1: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.find/-/lodash.find-4.6.0.tgz#cb0704d47ab71789ffa0de8b97dd926fb88b13b1" + +lodash.flatten@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-3.0.2.tgz#de1cf57758f8f4479319d35c3e9cc60c4501938c" + dependencies: + lodash._baseflatten "^3.0.0" + lodash._isiterateecall "^3.0.0" + +lodash.foreach@~2.3.x: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-2.3.0.tgz#083404c91e846ee77245fdf9d76519c68b2af168" + dependencies: + lodash._basecreatecallback "~2.3.0" + lodash.forown "~2.3.0" + +lodash.forown@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.forown/-/lodash.forown-2.3.0.tgz#24fb4aaf800d45fc2dc60bfec3ce04c836a3ad7f" + dependencies: + lodash._basecreatecallback "~2.3.0" + lodash._objecttypes "~2.3.0" + lodash.keys "~2.3.0" + +lodash.get@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + +lodash.identity@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.identity/-/lodash.identity-2.3.0.tgz#6b01a210c9485355c2a913b48b6711219a173ded" + +lodash.isarguments@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" + +lodash.isarray@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" + +lodash.isfunction@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-2.3.0.tgz#6b2973e47a647cf12e70d676aea13643706e5267" + +lodash.isobject@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-2.3.0.tgz#2e16d3fc583da9831968953f2d8e6d73434f6799" + dependencies: + lodash._objecttypes "~2.3.0" + +lodash.keys@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" + dependencies: + lodash._getnative "^3.0.0" + lodash.isarguments "^3.0.0" + lodash.isarray "^3.0.0" + +lodash.keys@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-2.3.0.tgz#b350f4f92caa9f45a4a2ecf018454cf2f28ae253" + dependencies: + lodash._renative "~2.3.0" + lodash._shimkeys "~2.3.0" + lodash.isobject "~2.3.0" + +lodash.memoize@~3.0.3: + version "3.0.4" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" + +lodash.merge@^4.3.0, lodash.merge@^4.4.0, lodash.merge@^4.6.0: + version "4.6.1" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" + +lodash.mergewith@^4.6.0: + version "4.6.1" + resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz#639057e726c3afbdb3e7d42741caa8d6e4335927" + +lodash.noop@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.noop/-/lodash.noop-2.3.0.tgz#3059d628d51bbf937cd2a0b6fc3a7f212a669c2c" + +lodash.omit@^4.1.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-4.5.0.tgz#6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60" + +lodash.restparam@^3.0.0: + version "3.6.1" + resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" + +lodash.support@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.support/-/lodash.support-2.3.0.tgz#7eaf038af4f0d6aab776b44aa6dcfc80334c9bfd" + dependencies: + lodash._renative "~2.3.0" + +lodash.template@^4.2.5: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" + dependencies: + lodash._reinterpolate "~3.0.0" + lodash.templatesettings "^4.0.0" + +lodash.template@~2.3.x: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-2.3.0.tgz#4e3e29c433b4cfea675ec835e6f12391c61fd22b" + dependencies: + lodash._escapestringchar "~2.3.0" + lodash._reinterpolate "~2.3.0" + lodash.defaults "~2.3.0" + lodash.escape "~2.3.0" + lodash.keys "~2.3.0" + lodash.templatesettings "~2.3.0" + lodash.values "~2.3.0" + +lodash.templatesettings@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" + dependencies: + lodash._reinterpolate "~3.0.0" + +lodash.templatesettings@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-2.3.0.tgz#303d132c342710040d5a18efaa2d572fd03f8cdc" + dependencies: + lodash._reinterpolate "~2.3.0" + lodash.escape "~2.3.0" + +lodash.uniq@^4.2.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + +lodash.uniqby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302" + +lodash.values@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/lodash.values/-/lodash.values-2.3.0.tgz#ca96fbe60a20b0b0ec2ba2ba5fc6a765bd14a3ba" + dependencies: + lodash.keys "~2.3.0" + +lodash@3.8.0: + version "3.8.0" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.8.0.tgz#376eb98bdcd9382a9365c33c4cb8250de1325b91" + +lodash@^3.10.0, lodash@^3.10.1, lodash@^3.9.3: + version "3.10.1" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" + +lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.3.0, lodash@^4.5.1, lodash@^4.6.1, lodash@~4.17.4: + version "4.17.5" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" + +log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + dependencies: + chalk "^1.0.0" + +log-symbols@^2.0.0, log-symbols@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + dependencies: + chalk "^2.0.1" + +log-update@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" + dependencies: + ansi-escapes "^1.0.0" + cli-cursor "^1.0.2" + +lolex@^2.1.2, lolex@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/lolex/-/lolex-2.3.2.tgz#85f9450425103bf9e7a60668ea25dc43274ca807" + +longest@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" + +loose-envify@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" + dependencies: + js-tokens "^3.0.0" + +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + +lower-case@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" + +lru-cache@^4.0.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +make-dir@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b" + dependencies: + pify "^3.0.0" + +makeerror@1.0.x: + version "1.0.11" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" + dependencies: + tmpl "1.0.x" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + +map-obj@^1.0.0, map-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + dependencies: + object-visit "^1.0.0" + +markdown-it-terminal@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/markdown-it-terminal/-/markdown-it-terminal-0.1.0.tgz#545abd8dd01c3d62353bfcea71db580b51d22bd9" + dependencies: + ansi-styles "^3.0.0" + cardinal "^1.0.0" + cli-table "^0.3.1" + lodash.merge "^4.6.0" + markdown-it "^8.3.1" + +markdown-it@^8.3.0, markdown-it@^8.3.1: + version "8.4.1" + resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-8.4.1.tgz#206fe59b0e4e1b78a7c73250af9b34a4ad0aaf44" + dependencies: + argparse "^1.0.7" + entities "~1.1.1" + linkify-it "^2.0.0" + mdurl "^1.0.1" + uc.micro "^1.0.5" + +matcher-collection@^1.0.0, matcher-collection@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/matcher-collection/-/matcher-collection-1.0.5.tgz#2ee095438372cb8884f058234138c05c644ec339" + dependencies: + minimatch "^3.0.2" + +md5-hex@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" + dependencies: + md5-o-matic "^0.1.1" + +md5-hex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" + dependencies: + md5-o-matic "^0.1.1" + +md5-o-matic@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" + +md5.js@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +mdn-data@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.1.tgz#79586c90321787e5a2e51eb6823bb448949bc1ab" + +mdurl@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + +memory-streams@^0.1.0: + version "0.1.3" + resolved "https://registry.yarnpkg.com/memory-streams/-/memory-streams-0.1.3.tgz#d9b0017b4b87f1d92f55f2745c9caacb1dc93ceb" + dependencies: + readable-stream "~1.0.2" + +meow@^3.4.0, meow@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + dependencies: + camelcase-keys "^2.0.0" + decamelize "^1.1.2" + loud-rejection "^1.0.0" + map-obj "^1.0.1" + minimist "^1.1.3" + normalize-package-data "^2.3.4" + object-assign "^4.0.1" + read-pkg-up "^1.0.1" + redent "^1.0.0" + trim-newlines "^1.0.0" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + +merge-trees@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-trees/-/merge-trees-1.0.1.tgz#ccbe674569787f9def17fd46e6525f5700bbd23e" + dependencies: + can-symlink "^1.0.0" + fs-tree-diff "^0.5.4" + heimdalljs "^0.2.1" + heimdalljs-logger "^0.1.7" + rimraf "^2.4.3" + symlink-or-copy "^1.0.0" + +merge@^1.1.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + +micromatch@^2.1.5, micromatch@^2.3.7: + version "2.3.11" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" + dependencies: + arr-diff "^2.0.0" + array-unique "^0.2.1" + braces "^1.8.2" + expand-brackets "^0.1.4" + extglob "^0.3.1" + filename-regex "^2.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.1" + kind-of "^3.0.2" + normalize-path "^2.0.1" + object.omit "^2.0.0" + parse-glob "^3.0.4" + regex-cache "^0.4.2" + +micromatch@^3.0.4, micromatch@^3.1.4, micromatch@^3.1.8: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +"mime-db@>= 1.33.0 < 2", mime-db@~1.33.0: + version "1.33.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" + +mime-types@^2.1.12, mime-types@^2.1.18, mime-types@~2.1.17, mime-types@~2.1.18, mime-types@~2.1.7: + version "2.1.18" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" + dependencies: + mime-db "~1.33.0" + +mime@1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" + +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + +minimalistic-assert@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + +minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + +"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@~3.0.2: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + dependencies: + brace-expansion "^1.1.7" + +minimatch@^2.0.1, minimatch@^2.0.3: + version "2.0.10" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" + dependencies: + brace-expansion "^1.0.0" + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + +minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + +minimist@~0.0.1: + version "0.0.10" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" + +mixin-deep@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + dependencies: + minimist "0.0.8" + +mkdirp@^0.3.5: + version "0.3.5" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.5.tgz#de3e5f8961c88c787ee1368df849ac4413eca8d7" + +mktemp@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/mktemp/-/mktemp-0.4.0.tgz#6d0515611c8a8c84e484aa2000129b98e981ff0b" + +module-deps@^4.0.8: + version "4.1.1" + resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.1.1.tgz#23215833f1da13fd606ccb8087b44852dcb821fd" + dependencies: + JSONStream "^1.0.3" + browser-resolve "^1.7.0" + cached-path-relative "^1.0.0" + concat-stream "~1.5.0" + defined "^1.0.0" + detective "^4.0.0" + duplexer2 "^0.1.2" + inherits "^2.0.1" + parents "^1.0.0" + readable-stream "^2.0.2" + resolve "^1.1.3" + stream-combiner2 "^1.1.1" + subarg "^1.0.0" + through2 "^2.0.0" + xtend "^4.0.0" + +moo-server@*, moo-server@1.3.x: + version "1.3.0" + resolved "https://registry.yarnpkg.com/moo-server/-/moo-server-1.3.0.tgz#5dc79569565a10d6efed5439491e69d2392e58f1" + +morgan@^1.8.1: + version "1.9.0" + resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.9.0.tgz#d01fa6c65859b76fcf31b3cb53a3821a311d8051" + dependencies: + basic-auth "~2.0.0" + debug "2.6.9" + depd "~1.1.1" + on-finished "~2.3.0" + on-headers "~1.0.1" + +mout@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mout/-/mout-1.1.0.tgz#0b29d41e6a80fa9e2d4a5be9d602e1d9d02177f6" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + +mustache@^2.2.1: + version "2.3.0" + resolved "https://registry.yarnpkg.com/mustache/-/mustache-2.3.0.tgz#4028f7778b17708a489930a6e52ac3bca0da41d0" + +mute-stream@0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" + +mute-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + +nan@^2.10.0, nan@^2.3.0: + version "2.10.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" + +nanomatch@^1.2.9: + version "1.2.9" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-odd "^2.0.0" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +native-promise-only@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/native-promise-only/-/native-promise-only-0.8.1.tgz#20a318c30cb45f71fe7adfbf7b21c99c1472ef11" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + +negotiator@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" + +next-tick@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" + +nice-try@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4" + +nise@^1.0.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/nise/-/nise-1.3.2.tgz#fd6fd8dc040dfb3c0a45252feb6ff21832309b14" + dependencies: + "@sinonjs/formatio" "^2.0.0" + just-extend "^1.1.27" + lolex "^2.3.2" + path-to-regexp "^1.7.0" + text-encoding "^0.6.4" + +no-case@^2.2.0: + version "2.3.2" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" + dependencies: + lower-case "^1.1.1" + +node-dir@^0.1.16: + version "0.1.17" + resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" + dependencies: + minimatch "^3.0.2" + +node-fetch@^1.3.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" + dependencies: + encoding "^0.1.11" + is-stream "^1.0.1" + +node-gyp@^3.3.1: + version "3.6.2" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60" + dependencies: + fstream "^1.0.0" + glob "^7.0.3" + graceful-fs "^4.1.2" + minimatch "^3.0.2" + mkdirp "^0.5.0" + nopt "2 || 3" + npmlog "0 || 1 || 2 || 3 || 4" + osenv "0" + request "2" + rimraf "2" + semver "~5.3.0" + tar "^2.0.0" + which "1" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + +node-modules-path@^1.0.0, node-modules-path@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/node-modules-path/-/node-modules-path-1.0.1.tgz#40096b08ce7ad0ea14680863af449c7c75a5d1c8" + +node-notifier@^5.0.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" + dependencies: + growly "^1.3.0" + semver "^5.4.1" + shellwords "^0.1.1" + which "^1.3.0" + +node-pre-gyp@^0.6.39: + version "0.6.39" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" + dependencies: + detect-libc "^1.0.2" + hawk "3.1.3" + mkdirp "^0.5.1" + nopt "^4.0.1" + npmlog "^4.0.2" + rc "^1.1.7" + request "2.81.0" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^2.2.1" + tar-pack "^3.4.0" + +node-sass@^4.7.2: + version "4.8.3" + resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.8.3.tgz#d077cc20a08ac06f661ca44fb6f19cd2ed41debb" + dependencies: + async-foreach "^0.1.3" + chalk "^1.1.1" + cross-spawn "^3.0.0" + gaze "^1.0.0" + get-stdin "^4.0.1" + glob "^7.0.3" + in-publish "^2.0.0" + lodash.assign "^4.2.0" + lodash.clonedeep "^4.3.2" + lodash.mergewith "^4.6.0" + meow "^3.7.0" + mkdirp "^0.5.1" + nan "^2.10.0" + node-gyp "^3.3.1" + npmlog "^4.0.0" + request "~2.79.0" + sass-graph "^2.2.4" + stdout-stream "^1.4.0" + "true-case-path" "^1.0.2" + +"nopt@2 || 3", nopt@^3.0.6: + version "3.0.6" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" + dependencies: + abbrev "1" + +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + dependencies: + abbrev "1" + osenv "^0.1.4" + +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: + version "2.4.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" + +normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + +npm-git-info@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/npm-git-info/-/npm-git-info-1.0.3.tgz#a933c42ec321e80d3646e0d6e844afe94630e1d5" + +npm-install-security-check@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/npm-install-security-check/-/npm-install-security-check-1.0.4.tgz#ec419cc8280eb37abb0d879f4aef7f03b9990b08" + +npm-package-arg@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.0.tgz#15ae1e2758a5027efb4c250554b85a737db7fcc1" + dependencies: + hosted-git-info "^2.6.0" + osenv "^0.1.5" + semver "^5.5.0" + validate-npm-package-name "^3.0.0" + +npm-path@^2.0.2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz#c641347a5ff9d6a09e4d9bce5580c4f505278e64" + dependencies: + which "^1.2.10" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + dependencies: + path-key "^2.0.0" + +npm-which@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" + dependencies: + commander "^2.9.0" + npm-path "^2.0.2" + which "^1.2.10" + +"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +nth-check@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" + dependencies: + boolbase "~1.0.0" + +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + +numeral@^1.5.3: + version "1.5.6" + resolved "https://registry.yarnpkg.com/numeral/-/numeral-1.5.6.tgz#3831db968451b9cf6aff9bf95925f1ef8e37b33f" + +oauth-sign@~0.8.1, oauth-sign@~0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" + +object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + +object-assign@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa" + +object-component@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-keys@^1.0.8: + version "1.0.11" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + dependencies: + isobject "^3.0.0" + +object.getownpropertydescriptors@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.5.1" + +object.omit@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + dependencies: + for-own "^0.1.4" + is-extendable "^0.1.1" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + dependencies: + isobject "^3.0.1" + +object.values@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.6.1" + function-bind "^1.1.0" + has "^1.0.1" + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" + +once@^1.3.0, once@^1.3.3, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + dependencies: + wrappy "1" + +onetime@^1.0.0: + version "1.1.0" + resolved "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" + +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + dependencies: + mimic-fn "^1.0.0" + +optimist@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +optionator@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + +ora@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" + dependencies: + chalk "^1.1.1" + cli-cursor "^1.0.2" + cli-spinners "^0.1.2" + object-assign "^4.0.1" + +ora@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ora/-/ora-2.0.0.tgz#8ec3a37fa7bffb54a3a0c188a1f6798e7e1827cd" + dependencies: + chalk "^2.3.1" + cli-cursor "^2.1.0" + cli-spinners "^1.1.0" + log-symbols "^2.2.0" + strip-ansi "^4.0.0" + wcwidth "^1.0.1" + +os-browserify@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.1.2.tgz#49ca0293e0b19590a5f5de10c7f265a617d8fe54" + +os-homedir@^1.0.0, os-homedir@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + +os-locale@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + dependencies: + lcid "^1.0.0" + +os-shim@^0.1.2: + version "0.1.3" + resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" + +os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + +osenv@0, osenv@^0.1.3, osenv@^0.1.4, osenv@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +output-file-sync@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" + dependencies: + graceful-fs "^4.1.4" + mkdirp "^0.5.1" + object-assign "^4.1.0" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + +p-limit@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" + dependencies: + p-try "^1.0.0" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + dependencies: + p-limit "^1.1.0" + +p-map@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" + +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + +pako@~0.2.0: + version "0.2.9" + resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" + +parents@^1.0.0, parents@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" + dependencies: + path-platform "~0.11.15" + +parse-asn1@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.1.tgz#f6bf293818332bd0dab54efb16087724745e6ca8" + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + +parse-glob@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" + dependencies: + glob-base "^0.3.0" + is-dotfile "^1.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.0" + +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + dependencies: + error-ex "^1.2.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse-passwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + +parseqs@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" + dependencies: + better-assert "~1.0.0" + +parseuri@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" + dependencies: + better-assert "~1.0.0" + +parseurl@~1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + +passwd-user@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/passwd-user/-/passwd-user-1.2.1.tgz#a01a5dc639ef007dc56364b8178569080ad3a7b8" + dependencies: + exec-file-sync "^2.0.0" + +path-browserify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + +path-exists@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" + +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + dependencies: + pinkie-promise "^2.0.0" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + +path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + +path-is-inside@^1.0.1, path-is-inside@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + +path-parse@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" + +path-platform@~0.11.15: + version "0.11.15" + resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" + +path-posix@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/path-posix/-/path-posix-1.0.0.tgz#06b26113f56beab042545a23bfa88003ccac260f" + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + +path-to-regexp@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" + dependencies: + isarray "0.0.1" + +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +pbkdf2@^3.0.3: + version "3.0.16" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.16.tgz#7404208ec6b01b62d85bf83853a8064f8d9c2a5c" + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +performance-now@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + +pify@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + +pluralize@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" + +portfinder@^1.0.7: + version "1.0.13" + resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" + dependencies: + async "^1.5.2" + debug "^2.2.0" + mkdirp "0.5.x" + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + +postcss-value-parser@^3.2.3: + version "3.3.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" + +postcss@^6.0.1, postcss@^6.0.17: + version "6.0.22" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.22.tgz#e23b78314905c3b90cbd61702121e7a78848f2a3" + dependencies: + chalk "^2.4.1" + source-map "^0.6.1" + supports-color "^5.4.0" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + +preserve@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + +prettier@^1.10.2: + version "1.12.0" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.12.0.tgz#d26fc5894b9230de97629b39cae225b503724ce8" + +pretty-format@^21.2.1: + version "21.2.1" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" + dependencies: + ansi-regex "^3.0.0" + ansi-styles "^3.2.0" + +printf@^0.2.3: + version "0.2.5" + resolved "https://registry.yarnpkg.com/printf/-/printf-0.2.5.tgz#c438ca2ca33e3927671db4ab69c0e52f936a4f0f" + +private@^0.1.6, private@^0.1.7, private@~0.1.5: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + +process-nextick-args@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + +process-nextick-args@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" + +process-relative-require@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/process-relative-require/-/process-relative-require-1.0.0.tgz#1590dfcf5b8f2983ba53e398446b68240b4cc68a" + dependencies: + node-modules-path "^1.0.0" + +process@~0.11.0: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + +progress@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" + +promise-map-series@^0.2.0, promise-map-series@^0.2.1: + version "0.2.3" + resolved "https://registry.yarnpkg.com/promise-map-series/-/promise-map-series-0.2.3.tgz#c2d377afc93253f6bd03dbb77755eb88ab20a847" + dependencies: + rsvp "^3.0.14" + +promised-io@*: + version "0.3.5" + resolved "https://registry.yarnpkg.com/promised-io/-/promised-io-0.3.5.tgz#4ad217bb3658bcaae9946b17a8668ecd851e1356" + +proxy-addr@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.3.tgz#355f262505a621646b3130a728eb647e22055341" + dependencies: + forwarded "~0.1.2" + ipaddr.js "1.6.0" + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + +public-encrypt@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.2.tgz#46eb9107206bf73489f8b85b69d91334c6610994" + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + +punycode@^1.3.2, punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + +q@^1.1.2: + version "1.5.1" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" + +qs@6.5.1, qs@^6.4.0, qs@~6.5.1: + version "6.5.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" + +qs@~6.3.0: + version "6.3.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" + +qs@~6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" + +querystring-es3@~0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + +quick-temp@^0.1.0, quick-temp@^0.1.2, quick-temp@^0.1.3, quick-temp@^0.1.5, quick-temp@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/quick-temp/-/quick-temp-0.1.8.tgz#bab02a242ab8fb0dd758a3c9776b32f9a5d94408" + dependencies: + mktemp "~0.4.0" + rimraf "^2.5.4" + underscore.string "~3.3.4" + +qunit@^2.5.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/qunit/-/qunit-2.6.0.tgz#347b34686e2aa67a9f81f81d39f0771603ed628c" + dependencies: + chokidar "1.7.0" + commander "2.12.2" + exists-stat "1.0.0" + findup-sync "2.0.0" + js-reporters "1.2.1" + resolve "1.5.0" + walk-sync "0.3.2" + +randomatic@^1.1.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" + dependencies: + safe-buffer "^5.1.0" + +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +range-parser@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" + +raw-body@2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" + dependencies: + bytes "3.0.0" + http-errors "1.6.2" + iconv-lite "0.4.19" + unpipe "1.0.0" + +raw-body@~1.1.0: + version "1.1.7" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-1.1.7.tgz#1d027c2bfa116acc6623bca8f00016572a87d425" + dependencies: + bytes "1" + string_decoder "0.10" + +rc@^1.1.7: + version "1.2.6" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.6.tgz#eb18989c6d4f4f162c399f79ddd29f3835568092" + dependencies: + deep-extend "~0.4.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +read-only-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" + dependencies: + readable-stream "^2.0.2" + +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + dependencies: + find-up "^1.0.0" + read-pkg "^1.0.0" + +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + +readable-stream@^2, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3: + version "2.3.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@~1.0.2: + version "1.0.34" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@~2.0.0: + version "2.0.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~0.10.x" + util-deprecate "~1.0.1" + +readdirp@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" + dependencies: + graceful-fs "^4.1.2" + minimatch "^3.0.2" + readable-stream "^2.0.2" + set-immediate-shim "^1.0.1" + +recast@0.10.33: + version "0.10.33" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.33.tgz#942808f7aa016f1fa7142c461d7e5704aaa8d697" + dependencies: + ast-types "0.8.12" + esprima-fb "~15001.1001.0-dev-harmony-fb" + private "~0.1.5" + source-map "~0.5.0" + +recast@^0.10.10: + version "0.10.43" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.43.tgz#b95d50f6d60761a5f6252e15d80678168491ce7f" + dependencies: + ast-types "0.8.15" + esprima-fb "~15001.1001.0-dev-harmony-fb" + private "~0.1.5" + source-map "~0.5.0" + +recast@^0.11.17, recast@^0.11.3: + version "0.11.23" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.23.tgz#451fd3004ab1e4df9b4e4b66376b2a21912462d3" + dependencies: + ast-types "0.9.6" + esprima "~3.1.0" + private "~0.1.5" + source-map "~0.5.0" + +redent@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + dependencies: + indent-string "^2.1.0" + strip-indent "^1.0.1" + +redeyed@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-1.0.1.tgz#e96c193b40c0816b00aec842698e61185e55498a" + dependencies: + esprima "~3.0.0" + +regenerate@^1.2.1: + version "1.3.3" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" + +regenerator-runtime@^0.10.5: + version "0.10.5" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" + +regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + +regenerator-transform@^0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" + dependencies: + babel-runtime "^6.18.0" + babel-types "^6.19.0" + private "^0.1.6" + +regenerator@0.8.40: + version "0.8.40" + resolved "https://registry.yarnpkg.com/regenerator/-/regenerator-0.8.40.tgz#a0e457c58ebdbae575c9f8cd75127e93756435d8" + dependencies: + commoner "~0.10.3" + defs "~1.1.0" + esprima-fb "~15001.1001.0-dev-harmony-fb" + private "~0.1.5" + recast "0.10.33" + through "~2.3.8" + +regex-cache@^0.4.2: + version "0.4.4" + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" + dependencies: + is-equal-shallow "^0.1.3" + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regexpp@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" + +regexpu-core@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regexpu@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/regexpu/-/regexpu-1.3.0.tgz#e534dc991a9e5846050c98de6d7dd4a55c9ea16d" + dependencies: + esprima "^2.6.0" + recast "^0.10.10" + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regjsgen@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" + +regjsparser@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" + dependencies: + jsesc "~0.5.0" + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + +repeat-element@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" + +repeat-string@^1.5.2, repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + +repeating@^1.1.0, repeating@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" + dependencies: + is-finite "^1.0.0" + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + dependencies: + is-finite "^1.0.0" + +request@2: + version "2.85.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.85.0.tgz#5a03615a47c61420b3eb99b7dba204f83603e1fa" + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.6.0" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.1" + forever-agent "~0.6.1" + form-data "~2.3.1" + har-validator "~5.0.3" + hawk "~6.0.2" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.17" + oauth-sign "~0.8.2" + performance-now "^2.1.0" + qs "~6.5.1" + safe-buffer "^5.1.1" + stringstream "~0.0.5" + tough-cookie "~2.3.3" + tunnel-agent "^0.6.0" + uuid "^3.1.0" + +request@2.81.0: + version "2.81.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~2.1.1" + har-validator "~4.2.1" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + oauth-sign "~0.8.1" + performance-now "^0.2.0" + qs "~6.4.0" + safe-buffer "^5.0.1" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "^0.6.0" + uuid "^3.0.0" + +request@~2.79.0: + version "2.79.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + caseless "~0.11.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~2.1.1" + har-validator "~2.0.6" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + oauth-sign "~0.8.1" + qs "~6.3.0" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "~0.4.1" + uuid "^3.0.0" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + +require-folder-tree@^1.4.5: + version "1.4.5" + resolved "https://registry.yarnpkg.com/require-folder-tree/-/require-folder-tree-1.4.5.tgz#dfe553cbab98cc88e1c56a3f2f358f06ef85bcb0" + dependencies: + lodash "3.8.0" + +require-from-string@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + +require-uncached@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" + dependencies: + caller-path "^0.1.0" + resolve-from "^1.0.0" + +requires-port@1.x.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + +resolve-dir@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" + dependencies: + expand-tilde "^1.2.2" + global-modules "^0.2.3" + +resolve-dir@^1.0.0, resolve-dir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" + dependencies: + expand-tilde "^2.0.0" + global-modules "^1.0.0" + +resolve-from@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + +resolve@1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" + +resolve@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" + dependencies: + path-parse "^1.0.5" + +resolve@^1.1.2, resolve@^1.1.3, resolve@^1.1.4, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.3.0, resolve@^1.3.3, resolve@^1.4.0, resolve@^1.5.0: + version "1.7.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3" + dependencies: + path-parse "^1.0.5" + +restore-cursor@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" + dependencies: + exit-hook "^1.0.0" + onetime "^1.0.0" + +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + +right-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" + dependencies: + align-text "^0.1.1" + +rimraf@2, rimraf@^2.2.8, rimraf@^2.3.2, rimraf@^2.3.4, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.1, rimraf@^2.5.3, rimraf@^2.5.4, rimraf@^2.6.1: + version "2.6.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" + dependencies: + glob "^7.0.5" + +rimraf@~2.2.6, rimraf@~2.2.8: + version "2.2.8" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +rollup@^0.41.4: + version "0.41.6" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.41.6.tgz#e0d05497877a398c104d816d2733a718a7a94e2a" + dependencies: + source-map-support "^0.4.0" + +rsvp@^3.0.14, rsvp@^3.0.16, rsvp@^3.0.17, rsvp@^3.0.18, rsvp@^3.0.21, rsvp@^3.0.6, rsvp@^3.1.0, rsvp@^3.2.1, rsvp@^3.3.3, rsvp@^3.5.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" + +rsvp@^4.6.1, rsvp@^4.7.0, rsvp@^4.8.1: + version "4.8.2" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.2.tgz#9d5647108735784eb13418cdddb56f75b919d722" + +rsvp@~3.0.6: + version "3.0.21" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.0.21.tgz#49c588fe18ef293bcd0ab9f4e6756e6ac433359f" + +rsvp@~3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.2.1.tgz#07cb4a5df25add9e826ebc67dcc9fd89db27d84a" + +run-async@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" + dependencies: + is-promise "^2.1.0" + +rx-lite-aggregates@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" + dependencies: + rx-lite "*" + +rx-lite@*, rx-lite@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" + +rx@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" + +rxjs@^5.4.2: + version "5.5.10" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.10.tgz#fde02d7a614f6c8683d0d1957827f492e09db045" + dependencies: + symbol-observable "1.0.1" + +safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" + +safe-buffer@^5.1.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + +safe-json-parse@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/safe-json-parse/-/safe-json-parse-1.0.1.tgz#3e76723e38dfdda13c9b1d29a1e07ffee4b30b57" + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + dependencies: + ret "~0.1.10" + +safer-buffer@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + +samsam@1.3.0, samsam@1.x, samsam@^1.1.3: + version "1.3.0" + resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.3.0.tgz#8d1d9350e25622da30de3e44ba692b5221ab7c50" + +sane@^2.2.0, sane@^2.4.1: + version "2.5.0" + resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.0.tgz#6359cd676f5efd9988b264d8ce3b827dd6b27bec" + dependencies: + anymatch "^2.0.0" + exec-sh "^0.2.0" + fb-watchman "^2.0.0" + micromatch "^3.1.4" + minimist "^1.1.1" + walker "~1.0.5" + watch "~0.18.0" + optionalDependencies: + fsevents "^1.1.1" + +sass-graph@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49" + dependencies: + glob "^7.0.0" + lodash "^4.0.0" + scss-tokenizer "^0.2.3" + yargs "^7.0.0" + +sax@~1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + +scss-tokenizer@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" + dependencies: + js-base64 "^2.1.8" + source-map "^0.4.2" + +select@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" + +"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.1.1, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" + +semver@~5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" + +send@0.16.2: + version "0.16.2" + resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" + dependencies: + debug "2.6.9" + depd "~1.1.2" + destroy "~1.0.4" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "~1.6.2" + mime "1.4.1" + ms "2.0.0" + on-finished "~2.3.0" + range-parser "~1.2.0" + statuses "~1.4.0" + +serve-static@1.13.2: + version "1.13.2" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.2" + send "0.16.2" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + +set-immediate-shim@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" + +set-value@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.1" + to-object-path "^0.3.0" + +set-value@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +setprototypeof@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + +sha.js@^2.4.0, sha.js@^2.4.8, sha.js@~2.4.4: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shasum@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" + dependencies: + json-stable-stringify "~0.0.0" + sha.js "~2.4.4" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + +shell-quote@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" + dependencies: + array-filter "~0.0.0" + array-map "~0.0.0" + array-reduce "~0.0.0" + jsonify "~0.0.0" + +shellwords@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + +silent-error@^1.0.0, silent-error@^1.0.1, silent-error@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/silent-error/-/silent-error-1.1.0.tgz#2209706f1c850a9f1d10d0d840918b46f26e1bc9" + dependencies: + debug "^2.2.0" + +simple-fmt@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/simple-fmt/-/simple-fmt-0.1.0.tgz#191bf566a59e6530482cb25ab53b4a8dc85c3a6b" + +simple-is@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/simple-is/-/simple-is-0.2.0.tgz#2abb75aade39deb5cc815ce10e6191164850baf0" + +sinon@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/sinon/-/sinon-3.3.0.tgz#9132111b4bbe13c749c2848210864250165069b1" + dependencies: + build "^0.1.4" + diff "^3.1.0" + formatio "1.2.0" + lodash.get "^4.4.2" + lolex "^2.1.2" + native-promise-only "^0.8.1" + nise "^1.0.1" + path-to-regexp "^1.7.0" + samsam "^1.1.3" + text-encoding "0.6.4" + type-detect "^4.0.0" + +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + +slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + +slice-ansi@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" + dependencies: + is-fullwidth-code-point "^2.0.0" + +snake-case@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-2.1.0.tgz#41bdb1b73f30ec66a04d4e2cad1b76387d4d6d9f" + dependencies: + no-case "^2.2.0" + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +sntp@1.x.x: + version "1.0.9" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" + dependencies: + hoek "2.x.x" + +sntp@2.x.x: + version "2.1.0" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" + dependencies: + hoek "4.x.x" + +socket.io-adapter@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz#2a805e8a14d6372124dd9159ad4502f8cb07f06b" + +socket.io-client@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.1.0.tgz#0d0b21d460dc4ed36e57085136f2be0137ff20ff" + dependencies: + backo2 "1.0.2" + base64-arraybuffer "0.1.5" + component-bind "1.0.0" + component-emitter "1.2.1" + debug "~3.1.0" + engine.io-client "~3.2.0" + has-binary2 "~1.0.2" + has-cors "1.1.0" + indexof "0.0.1" + object-component "0.0.3" + parseqs "0.0.5" + parseuri "0.0.5" + socket.io-parser "~3.2.0" + to-array "0.1.4" + +socket.io-parser@~3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.2.0.tgz#e7c6228b6aa1f814e6148aea325b51aa9499e077" + dependencies: + component-emitter "1.2.1" + debug "~3.1.0" + isarray "2.0.1" + +socket.io@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-2.1.0.tgz#de77161795b6303e7aefc982ea04acb0cec17395" + dependencies: + debug "~3.1.0" + engine.io "~3.2.0" + has-binary2 "~1.0.2" + socket.io-adapter "~1.1.0" + socket.io-client "2.1.0" + socket.io-parser "~3.2.0" + +sort-object-keys@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sort-object-keys/-/sort-object-keys-1.1.2.tgz#d3a6c48dc2ac97e6bc94367696e03f6d09d37952" + +sort-package-json@^1.4.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/sort-package-json/-/sort-package-json-1.12.0.tgz#cb5c8b583270e23624f1780cf4ba025299403a96" + dependencies: + sort-object-keys "^1.1.1" + +source-map-resolve@^0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" + dependencies: + atob "^2.0.0" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-support@^0.2.10: + version "0.2.10" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.2.10.tgz#ea5a3900a1c1cb25096a0ae8cc5c2b4b10ded3dc" + dependencies: + source-map "0.1.32" + +source-map-support@^0.4.0, source-map-support@^0.4.15: + version "0.4.18" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" + dependencies: + source-map "^0.5.6" + +source-map-url@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.3.0.tgz#7ecaf13b57bcd09da8a40c5d269db33799d4aaf9" + +source-map-url@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + +source-map@0.1.32: + version "0.1.32" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.32.tgz#c8b6c167797ba4740a8ea33252162ff08591b266" + dependencies: + amdefine ">=0.0.4" + +source-map@0.4.x, source-map@^0.4.2, source-map@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + dependencies: + amdefine ">=0.0.4" + +source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.0, source-map@~0.5.1, source-map@~0.5.3: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + +source-map@^0.6.1, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + +source-map@~0.1.x: + version "0.1.43" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" + dependencies: + amdefine ">=0.0.4" + +sourcemap-validator@^1.0.5: + version "1.1.0" + resolved "https://registry.yarnpkg.com/sourcemap-validator/-/sourcemap-validator-1.1.0.tgz#00454547d1682186e1498a7208e022e8dfa8738f" + dependencies: + jsesc "~0.3.x" + lodash.foreach "~2.3.x" + lodash.template "~2.3.x" + source-map "~0.1.x" + +spawn-args@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/spawn-args/-/spawn-args-0.2.0.tgz#fb7d0bd1d70fd4316bd9e3dec389e65f9d6361bb" + +spawn-sync@^1.0.11, spawn-sync@^1.0.15: + version "1.0.15" + resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" + dependencies: + concat-stream "^1.4.7" + os-shim "^0.1.2" + +spdx-correct@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" + +spdx-expression-parse@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + dependencies: + extend-shallow "^3.0.0" + +sprintf-js@^1.0.3: + version "1.1.1" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.1.tgz#36be78320afe5801f6cea3ee78b6e5aab940ea0c" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + +sri-toolbox@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/sri-toolbox/-/sri-toolbox-0.2.0.tgz#a7fea5c3fde55e675cf1c8c06f3ebb5c2935835e" + +sshpk@^1.7.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + dashdash "^1.12.0" + getpass "^0.1.1" + optionalDependencies: + bcrypt-pbkdf "^1.0.0" + ecc-jsbn "~0.1.1" + jsbn "~0.1.0" + tweetnacl "~0.14.0" + +stable@~0.1.3, stable@~0.1.6: + version "0.1.7" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.7.tgz#06e1e4213460252e4f20da89a32cb4a0dbe5f2b2" + +stack-trace@0.0.x: + version "0.0.10" + resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" + +staged-git-files@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-1.0.0.tgz#cdb847837c1fcc52c08a872d4883cc0877668a80" + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +"statuses@>= 1.3.1 < 2", "statuses@>= 1.4.0 < 2": + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + +statuses@~1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" + +stdout-stream@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b" + dependencies: + readable-stream "^2.0.1" + +stream-browserify@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-combiner2@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" + dependencies: + duplexer2 "~0.1.0" + readable-stream "^2.0.2" + +stream-http@^2.0.0: + version "2.8.1" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.1.tgz#d0441be1a457a73a733a8a7b53570bebd9ef66a4" + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.3.3" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +stream-splicer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.2" + +stream-to-observable@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.2.0.tgz#59d6ea393d87c2c0ddac10aa0d561bc6ba6f0e10" + dependencies: + any-observable "^0.2.0" + +string-template@~0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add" + +string-width@^1.0.1, string-width@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string_decoder@0.10, string_decoder@~0.10.0, string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + dependencies: + safe-buffer "~5.1.0" + +stringify-object@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.2.2.tgz#9853052e5a88fb605a44cd27445aa257ad7ffbcd" + dependencies: + get-own-enumerable-property-symbols "^2.0.1" + is-obj "^1.0.1" + is-regexp "^1.0.0" + +stringmap@~0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/stringmap/-/stringmap-0.2.2.tgz#556c137b258f942b8776f5b2ef582aa069d7d1b1" + +stringset@~0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/stringset/-/stringset-0.2.1.tgz#ef259c4e349344377fcd1c913dd2e848c9c042b5" + +stringstream@~0.0.4, stringstream@~0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" + +strip-ansi@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.3.0.tgz#25f48ea22ca79187f3174a4db8759347bb126220" + dependencies: + ansi-regex "^0.2.1" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + dependencies: + ansi-regex "^3.0.0" + +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + dependencies: + is-utf8 "^0.2.0" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + +strip-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + dependencies: + get-stdin "^4.0.1" + +strip-indent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + +styled_string@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/styled_string/-/styled_string-0.0.1.tgz#d22782bd81295459bc4f1df18c4bad8e94dd124a" + +subarg@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" + dependencies: + minimist "^1.1.0" + +sum-up@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sum-up/-/sum-up-1.0.3.tgz#1c661f667057f63bcb7875aa1438bc162525156e" + dependencies: + chalk "^1.0.0" + +supports-color@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + +supports-color@^3.1.2: + version "3.2.3" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" + dependencies: + has-flag "^1.0.0" + +supports-color@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" + dependencies: + has-flag "^3.0.0" + +supports-color@^5.4.0: + version "5.4.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" + dependencies: + has-flag "^3.0.0" + +svgo@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.0.5.tgz#7040364c062a0538abacff4401cea6a26a7a389a" + dependencies: + coa "~2.0.1" + colors "~1.1.2" + css-select "~1.3.0-rc0" + css-select-base-adapter "~0.1.0" + css-tree "1.0.0-alpha25" + css-url-regex "^1.1.0" + csso "^3.5.0" + js-yaml "~3.10.0" + mkdirp "~0.5.1" + object.values "^1.0.4" + sax "~1.2.4" + stable "~0.1.6" + unquote "~1.1.1" + util.promisify "~1.0.0" + +symbol-observable@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" + +symbol-observable@^0.2.2: + version "0.2.4" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" + +symlink-or-copy@^1.0.0, symlink-or-copy@^1.0.1, symlink-or-copy@^1.1.8: + version "1.2.0" + resolved "https://registry.yarnpkg.com/symlink-or-copy/-/symlink-or-copy-1.2.0.tgz#5d49108e2ab824a34069b68974486c290020b393" + +syntax-error@^1.1.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.4.0.tgz#2d9d4ff5c064acb711594a3e3b95054ad51d907c" + dependencies: + acorn-node "^1.2.0" + +table@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" + dependencies: + ajv "^5.2.3" + ajv-keywords "^2.1.0" + chalk "^2.1.0" + lodash "^4.17.4" + slice-ansi "1.0.0" + string-width "^2.1.1" + +tap-parser@^5.1.0: + version "5.4.0" + resolved "https://registry.yarnpkg.com/tap-parser/-/tap-parser-5.4.0.tgz#6907e89725d7b7fa6ae41ee2c464c3db43188aec" + dependencies: + events-to-array "^1.0.1" + js-yaml "^3.2.7" + optionalDependencies: + readable-stream "^2" + +tar-pack@^3.4.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" + dependencies: + debug "^2.2.0" + fstream "^1.0.10" + fstream-ignore "^1.0.5" + once "^1.3.3" + readable-stream "^2.1.4" + rimraf "^2.5.1" + tar "^2.2.1" + uid-number "^0.0.6" + +tar@^2.0.0, tar@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" + dependencies: + block-stream "*" + fstream "^1.0.2" + inherits "2" + +temp@0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" + dependencies: + os-tmpdir "^1.0.0" + rimraf "~2.2.6" + +test-exclude@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" + dependencies: + arrify "^1.0.1" + micromatch "^3.1.8" + object-assign "^4.1.0" + read-pkg-up "^1.0.1" + require-main-filename "^1.0.1" + +testem@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/testem/-/testem-2.2.1.tgz#7bcda44eeb34287d918b3c8b9c6863d26a616557" + dependencies: + backbone "^1.1.2" + bluebird "^3.4.6" + charm "^1.0.0" + commander "^2.6.0" + consolidate "^0.14.0" + execa "^0.10.0" + express "^4.10.7" + fireworm "^0.7.0" + glob "^7.0.4" + http-proxy "^1.13.1" + js-yaml "^3.2.5" + lodash.assignin "^4.1.0" + lodash.castarray "^4.4.0" + lodash.clonedeep "^4.4.1" + lodash.find "^4.5.1" + lodash.uniqby "^4.7.0" + mkdirp "^0.5.1" + mustache "^2.2.1" + node-notifier "^5.0.1" + npmlog "^4.0.0" + printf "^0.2.3" + rimraf "^2.4.4" + socket.io "^2.1.0" + spawn-args "^0.2.0" + styled_string "0.0.1" + tap-parser "^5.1.0" + xmldom "^0.1.19" + +text-encoder-lite@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/text-encoder-lite/-/text-encoder-lite-1.0.1.tgz#121c5ee74dfeb307037770ec75748c6824ac0518" + +text-encoding@0.6.4, text-encoding@^0.6.4: + version "0.6.4" + resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19" + +text-table@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + +"textextensions@1 || 2": + version "2.2.0" + resolved "https://registry.yarnpkg.com/textextensions/-/textextensions-2.2.0.tgz#38ac676151285b658654581987a0ce1a4490d286" + +through2@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" + dependencies: + readable-stream "^2.1.5" + xtend "~4.0.1" + +"through@>=2.2.7 <3", through@^2.3.6, through@^2.3.8, through@~2.3.8: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + +timers-browserify@^1.0.1: + version "1.4.2" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" + dependencies: + process "~0.11.0" + +timespan@2.x: + version "2.3.0" + resolved "https://registry.yarnpkg.com/timespan/-/timespan-2.3.0.tgz#4902ce040bd13d845c8f59b27e9d59bad6f39929" + +tiny-emitter@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.0.2.tgz#82d27468aca5ade8e5fd1e6d22b57dd43ebdfb7c" + +tiny-lr@^1.0.3: + version "1.1.1" + resolved "https://registry.yarnpkg.com/tiny-lr/-/tiny-lr-1.1.1.tgz#9fa547412f238fedb068ee295af8b682c98b2aab" + dependencies: + body "^5.1.0" + debug "^3.1.0" + faye-websocket "~0.10.0" + livereload-js "^2.3.0" + object-assign "^4.1.0" + qs "^6.4.0" + +tmp@0.0.28: + version "0.0.28" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.28.tgz#172735b7f614ea7af39664fa84cf0de4e515d120" + dependencies: + os-tmpdir "~1.0.1" + +tmp@^0.0.29: + version "0.0.29" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" + dependencies: + os-tmpdir "~1.0.1" + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + dependencies: + os-tmpdir "~1.0.2" + +tmpl@1.0.x: + version "1.0.4" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" + +to-array@0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + +to-fast-properties@^1.0.0, to-fast-properties@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +tough-cookie@~2.3.0, tough-cookie@~2.3.3: + version "2.3.4" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" + dependencies: + punycode "^1.4.1" + +tree-sync@^1.2.1, tree-sync@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/tree-sync/-/tree-sync-1.2.2.tgz#2cf76b8589f59ffedb58db5a3ac7cb013d0158b7" + dependencies: + debug "^2.2.0" + fs-tree-diff "^0.5.6" + mkdirp "^0.5.1" + quick-temp "^0.1.5" + walk-sync "^0.2.7" + +trim-newlines@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + +trim-right@^1.0.0, trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + +"true-case-path@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-1.0.2.tgz#7ec91130924766c7f573be3020c34f8fdfd00d62" + dependencies: + glob "^6.0.4" + +try-resolve@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912" + +tryor@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/tryor/-/tryor-0.1.2.tgz#8145e4ca7caff40acde3ccf946e8b8bb75b4172b" + +tty-browserify@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + dependencies: + safe-buffer "^5.0.1" + +tunnel-agent@~0.4.1: + version "0.4.3" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + dependencies: + prelude-ls "~1.1.2" + +type-detect@^4.0.0: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + +type-is@~1.6.15, type-is@~1.6.16: + version "1.6.16" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194" + dependencies: + media-typer "0.3.0" + mime-types "~2.1.18" + +typedarray@^0.0.6, typedarray@~0.0.5: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + +uc.micro@^1.0.1, uc.micro@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.5.tgz#0c65f15f815aa08b560a61ce8b4db7ffc3f45376" + +uglify-es@^3.1.3: + version "3.3.9" + resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677" + dependencies: + commander "~2.13.0" + source-map "~0.6.1" + +uglify-js@1.x: + version "1.3.5" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-1.3.5.tgz#4b5bfff9186effbaa888e4c9e94bd9fc4c94929d" + +uglify-js@^2.6: + version "2.8.29" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" + dependencies: + source-map "~0.5.1" + yargs "~3.10.0" + optionalDependencies: + uglify-to-browserify "~1.0.0" + +uglify-to-browserify@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" + +uid-number@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + +ultron@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" + +umd@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.3.tgz#aa9fe653c42b9097678489c01000acb69f0b26cf" + +underscore.string@~3.3.4: + version "3.3.4" + resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-3.3.4.tgz#2c2a3f9f83e64762fdc45e6ceac65142864213db" + dependencies: + sprintf-js "^1.0.3" + util-deprecate "^1.0.2" + +underscore@>=1.8.3: + version "1.8.3" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" + +union-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^0.4.3" + +unique-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" + dependencies: + crypto-random-string "^1.0.0" + +universalify@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + +unquote@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +untildify@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/untildify/-/untildify-2.1.0.tgz#17eb2807987f76952e9c0485fc311d06a826a2e0" + dependencies: + os-homedir "^1.0.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + +url@~0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +use@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" + dependencies: + kind-of "^6.0.2" + +user-home@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" + +user-info@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/user-info/-/user-info-1.0.0.tgz#81c82b7ed63e674c2475667653413b3c76fde239" + dependencies: + os-homedir "^1.0.1" + passwd-user "^1.2.1" + username "^1.0.1" + +username-sync@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/username-sync/-/username-sync-1.0.1.tgz#1cde87eefcf94b8822984d938ba2b797426dae1f" + +username@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/username/-/username-1.0.1.tgz#e1f72295e3e58e06f002c6327ce06897a99cd67f" + dependencies: + meow "^3.4.0" + +util-deprecate@^1.0.2, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + +util.promisify@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" + dependencies: + define-properties "^1.1.2" + object.getownpropertydescriptors "^2.0.3" + +util@0.10.3, util@~0.10.1: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + dependencies: + inherits "2.0.1" + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + +uuid@^3.0.0, uuid@^3.1.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" + +validate-npm-package-license@^3.0.1: + version "3.0.3" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +validate-npm-package-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" + dependencies: + builtins "^1.0.3" + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +vm-browserify@~0.0.1: + version "0.0.4" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + dependencies: + indexof "0.0.1" + +walk-sync@0.3.2, walk-sync@^0.3.0, walk-sync@^0.3.1, walk-sync@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/walk-sync/-/walk-sync-0.3.2.tgz#4827280afc42d0e035367c4a4e31eeac0d136f75" + dependencies: + ensure-posix-path "^1.0.0" + matcher-collection "^1.0.0" + +walk-sync@^0.2.5, walk-sync@^0.2.6, walk-sync@^0.2.7: + version "0.2.7" + resolved "https://registry.yarnpkg.com/walk-sync/-/walk-sync-0.2.7.tgz#b49be4ee6867657aeb736978b56a29d10fa39969" + dependencies: + ensure-posix-path "^1.0.0" + matcher-collection "^1.0.0" + +walker@1.x, walker@~1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" + dependencies: + makeerror "1.0.x" + +watch@~0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" + dependencies: + exec-sh "^0.2.0" + minimist "^1.2.0" + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + dependencies: + defaults "^1.0.3" + +websocket-driver@>=0.5.1: + version "0.7.0" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb" + dependencies: + http-parser-js ">=0.4.0" + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" + +which-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + +which@1, which@^1.2.10, which@^1.2.12, which@^1.2.14, which@^1.2.9, which@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" + dependencies: + string-width "^1.0.2" + +window-size@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + +window-size@^0.1.2: + version "0.1.4" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" + +winston@*: + version "2.4.1" + resolved "https://registry.yarnpkg.com/winston/-/winston-2.4.1.tgz#a3a9265105564263c6785b4583b8c8aca26fded6" + dependencies: + async "~1.0.0" + colors "1.0.x" + cycle "1.0.x" + eyes "0.1.x" + isstream "0.1.x" + stack-trace "0.0.x" + +wordwrap@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" + +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + +workerpool@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-2.3.0.tgz#86c5cbe946b55e7dc9d12b1936c8801a6e2d744d" + dependencies: + object-assign "4.1.1" + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + +wrench@1.3.x: + version "1.3.9" + resolved "https://registry.yarnpkg.com/wrench/-/wrench-1.3.9.tgz#6f13ec35145317eb292ca5f6531391b244111411" + +write-file-atomic@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +write@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" + dependencies: + mkdirp "^0.5.1" + +ws@~3.3.1: + version "3.3.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" + dependencies: + async-limiter "~1.0.0" + safe-buffer "~5.1.0" + ultron "~1.1.0" + +xdg-basedir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" + +xmldom@^0.1.19: + version "0.1.27" + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" + +xmlhttprequest-ssl@~1.5.4: + version "1.5.5" + resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" + +xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0, xtend@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + +y18n@^3.2.0, y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + +yam@0.0.22: + version "0.0.22" + resolved "https://registry.yarnpkg.com/yam/-/yam-0.0.22.tgz#38a76cb79a19284d9206ed49031e359a1340bd06" + dependencies: + fs-extra "^0.30.0" + lodash.merge "^4.4.0" + +yargs-parser@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" + dependencies: + camelcase "^3.0.0" + +yargs-parser@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" + dependencies: + camelcase "^3.0.0" + +yargs@^6.5.0: + version "6.6.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^4.2.0" + +yargs@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^5.0.0" + +yargs@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" + dependencies: + camelcase "^1.0.2" + cliui "^2.1.0" + decamelize "^1.0.0" + window-size "0.1.0" + +yargs@~3.27.0: + version "3.27.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.27.0.tgz#21205469316e939131d59f2da0c6d7f98221ea40" + dependencies: + camelcase "^1.2.1" + cliui "^2.1.0" + decamelize "^1.0.0" + os-locale "^1.4.0" + window-size "^0.1.2" + y18n "^3.2.0" + +yeast@0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" diff --git a/ui/Gemfile.lock b/ui/Gemfile.lock index 13c550510..3221f9563 100644 --- a/ui/Gemfile.lock +++ b/ui/Gemfile.lock @@ -1,17 +1,23 @@ GEM remote: https://rubygems.org/ specs: - execjs (2.3.0) - json (1.8.2) - libv8 (3.16.14.15) - ref (1.0.5) - sass (3.4.11) - therubyracer (0.12.1) - libv8 (~> 3.16.14.0) + execjs (2.7.0) + ffi (1.9.23) + libv8 (3.16.14.19) + rb-fsevent (0.10.3) + rb-inotify (0.9.10) + ffi (>= 0.5.0, < 2) + ref (2.0.0) + sass (3.5.6) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + therubyracer (0.12.3) + libv8 (~> 3.16.14.15) ref - uglifier (2.7.0) - execjs (>= 0.3.0) - json (>= 1.8.0) + uglifier (4.1.9) + execjs (>= 0.3.0, < 3) PLATFORMS ruby @@ -22,4 +28,4 @@ DEPENDENCIES uglifier BUNDLED WITH - 1.12.5 + 1.16.0 diff --git a/ui/index.html b/ui/index.html index 3aa423d5c..f477dea5f 100644 --- a/ui/index.html +++ b/ui/index.html @@ -140,6 +140,28 @@ # Remove the backup file from sed rm $DEPLOY/index.htmlbak -pushd $DEPLOY >/dev/null 2>&1 -zip -r ../web_ui.zip ./* -popd >/dev/null 2>&1 +# pushd $(dirname $DEPLOY) >/dev/null 2>&1 +# zip -r ../web_ui.zip ./* +# popd >/dev/null 2>&1 diff --git a/ui/static/base.css.map b/ui/static/base.css.map index b14889d8d..221f63f8e 100644 --- a/ui/static/base.css.map +++ b/ui/static/base.css.map @@ -1,7 +1,7 @@ { "version": 3, -"mappings": "AAAA,IAAK;EACD,sBAAsB,EAAC,WAAW;EAClC,SAAS,EAAE,IAAI;EACf,KAAK,ECwBmB,IAAI;;ADrBhC,CAAE;EACE,KAAK,ECQmB,OAAwB;EDPhD,WAAW,EAAE,GAAG;EEPlB,kBAAkB,EFQI,sBAAqB;EEPxC,eAAe,EFOI,sBAAqB;EENvC,cAAc,EFMI,sBAAqB;EELtC,aAAa,EFKI,sBAAqB;EEJnC,UAAU,EFII,sBAAqB;EAEzC,OAAQ;IACJ,eAAe,EAAE,IAAI;IACrB,KAAK,EAAE,OAAkB;EAG7B,QAAS;IACL,KAAK,EAAE,OAAO;IAEd,cAAQ;MACJ,KAAK,ECLW,OAAwB;;ADUpD,IAAK;EACD,KAAK,ECZmB,OAAO;EDa/B,gBAAgB,ECpBQ,OAAO;;ADuBnC,WAAY;EACR,SAAS,EAAE,IAAI;EACf,KAAK,EC1BmB,OAAO;;AD6BnC,KAAM;EACF,KAAK,EC/BmB,IAAI;;ADkChC,kBAAmB;EACf,KAAK,ECpCmB,IAAI;;ADuChC,EAAG;EACC,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,KAAK,ECxCmB,OAAO;;AD2CnC,cAAe;EACX,cAAc,EAAE,GAAG;EACnB,cAAc,EAAE,SAAS;EACzB,gBAAE;IACE,KAAK,EC/Ce,OAAO;;ADmDnC,GAAI;EACA,gBAAgB,ECrDQ,IAAI;EDsD5B,KAAK,EAAE,KAAK;EACZ,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;;AAGnB,KAAM;EACF,WAAW,EAAE,GAAG;;AAGpB,MAAO;EACH,KAAK,EChEmB,IAAI;;AELhC,MAAO;EACH,YAAY,EAAE,GAAG;EACjB,YAAY,EFKY,OAAO;ECNjC,kBAAkB,ECEI,iCAAgC;EDDnD,eAAe,ECCI,iCAAgC;EDAlD,cAAc,ECAI,iCAAgC;EDCjD,aAAa,ECDI,iCAAgC;EDE9C,UAAU,ECFI,iCAAgC;EAEpD,qBAAe;IACX,OAAO,EAAE,QAAQ;IACjB,gBAAgB,EAAE,WAAW;IAC7B,YAAY,EAAE,GAAG;IACjB,YAAY,EFFQ,OAAO;EEK/B,qBAAe;IACX,OAAO,EAAE,gBAAgB;IACzB,SAAS,EAAE,IAAI;IACf,KAAK,EFTe,OAAO;IEU3B,KAAK,EFZe,IAAI;IEaxB,aAAa,EAAE,GAAG;IAClB,OAAO,EAAE,GAAG;IAEZ,2BAAM;MACF,SAAS,EAAE,IAAI;MACf,cAAc,EAAE,SAAS;MACzB,WAAW,EAAE,GAAG;MAChB,WAAW,EAAE,GAAG;MAChB,WAAW,EAAE,GAAG;IAIpB,8BAAS;MACP,cAAc,EAAE,IAAI;IAGtB,iCAAY;MACR,UAAU,EAAE,GAAG;MACf,KAAK,EAAE,KAAK;MACZ,WAAW,EAAE,GAAG;MAChB,KAAK,EF/BW,OAAO;MEgCvB,SAAS,EAAE,IAAI;EAKvB,qBAAe;IACX,OAAO,EAAE,eAAe;IACxB,SAAS,EAAE,IAAI;IACf,KAAK,EFxCe,OAAO;IEyC3B,KAAK,EF3Ce,IAAI;IE4CxB,aAAa,EAAE,GAAG;IAElB,2BAAM;MACF,SAAS,EAAE,IAAI;MACf,WAAW,EAAE,GAAG;IAGpB,iCAAY;MACR,UAAU,EAAE,GAAG;MACf,KAAK,EAAE,KAAK;MACZ,WAAW,EAAE,GAAG;MAChB,KAAK,EFrDW,OAAO;MEsDvB,SAAS,EAAE,IAAI;EAIvB,kBAAY;IACR,OAAO,EAAE,eAAe;IACxB,oBAAE;MACE,SAAS,EAAE,IAAI;MACf,KAAK,EFzCW,IAAI;IE2CxB,qBAAG;MACC,SAAS,EAAE,IAAI;IAEnB,2BAAS;MACL,SAAS,EAAE,IAAI;IAEnB,6BAAa;MACT,cAAc,EAAE,IAAI;EAI5B,iBAAW;IACP,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IDlFlB,kBAAkB,ECmFQ,4BAA2B;IDlFlD,eAAe,ECkFQ,4BAA2B;IDjFjD,cAAc,ECiFQ,4BAA2B;IDhFhD,aAAa,ECgFQ,4BAA2B;ID/E7C,UAAU,EC+EQ,4BAA2B;EAGnD,iBAAa;IACT,mBAAmB,EAAE,GAAG;EAIxB,oBAAG;IACC,MAAM,EAAE,CAAC;IACT,uBAAG;MACC,MAAM,EAAE,CAAC;MACT,MAAM,EAAE,CAAC;EAIrB,4BAAsB;IAClB,KAAK,EAAE,IAAI;IACX,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,YAAY,EAAE,IAAI;IAClB,OAAO,EAAE,KAAK;EAGlB,kBAAc;IACV,mBAAmB,EAAE,GAAG;EAG5B,uBAAmB;IACf,MAAM,EAAE,OAAO;IACf,gBAAgB,EAAE,OAA6B;EAGnD,aAAS;IDpHX,kBAAkB,ECyHQ,wBAAuB;IDxH9C,eAAe,ECwHQ,wBAAuB;IDvH7C,cAAc,ECuHQ,wBAAuB;IDtH5C,aAAa,ECsHQ,wBAAuB;IDrHzC,UAAU,ECqHQ,wBAAuB;IAC3C,YAAY,EF5GQ,OAAwB;IEuG5C,8BAAgB;MACZ,YAAY,EFxGI,OAAwB;IE8G5C,wBAAW;MD5HjB,kBAAkB,EC6HQ,4BAA2B;MD5HlD,eAAe,EC4HQ,4BAA2B;MD3HjD,cAAc,EC2HQ,4BAA2B;MD1HhD,aAAa,EC0HQ,4BAA2B;MDzH7C,UAAU,ECyHQ,4BAA2B;MAC3C,gBAAgB,EFhHA,OAAwB;;AGdpD,UAAW;EACP,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,8CAA8C;EAC1D,eAAe,EAAE,SAAS;EAC1B,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;;AAIhB,OAAQ;EACJ,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,IAAI;EACpB,aAAa,EAAE,IAAI;EACnB,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,cAAc;EAE7B,YAAK;IACD,UAAU,EAAE,IAAI;IAChB,SAAS,EAAE,KAAK;EAGpB,qBAAc;IACV,KAAK,EAAE,IAAI;EAMP,6BAAE;IACE,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,GAAG;IAChB,SAAS,EAAE,IAAI;IACf,KAAK,EH7BO,IAAI;ICJ9B,kBAAkB,EEkCgB,iCAAgC;IFjC/D,eAAe,EEiCgB,iCAAgC;IFhC9D,cAAc,EEgCgB,iCAAgC;IF/B7D,aAAa,EE+BgB,iCAAgC;IF9B1D,UAAU,EE8BgB,iCAAgC;IAEpD,mCAAQ;MACJ,KAAK,EAAE,OAAkB;MACzB,gBAAgB,EAAE,OAA6B;;ACvCnE,IAAK;EACD,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;EACf,YAAY,EAAE,GAAG;EACjB,KAAK,EJAmB,IAAI;ECJ9B,kBAAkB,EGKI,iCAAgC;EHJnD,eAAe,EGII,iCAAgC;EHHlD,cAAc,EGGI,iCAAgC;EHFjD,aAAa,EGEI,iCAAgC;EHD9C,UAAU,EGCI,iCAAgC;EHLtD,kBAAkB,EGMI,6BAA4B;EHL/C,eAAe,EGKI,6BAA4B;EHJ9C,cAAc,EGII,6BAA4B;EHH7C,aAAa,EGGI,6BAA4B;EHF1C,UAAU,EGEI,6BAA4B;EHNlD,kBAAkB,EGOI,sBAAqB;EHNxC,eAAe,EGMI,sBAAqB;EHLvC,cAAc,EGKI,sBAAqB;EHJtC,aAAa,EGII,sBAAqB;EHHnC,UAAU,EGGI,sBAAqB;EACzC,OAAO,EAAE,IAAI;EACb,aAAa,EAAE,KAAK;EACpB,WAAW,EAAE,MAAM;EACnB,QAAQ,EAAE,MAAM;EAChB,aAAa,EAAE,QAAQ;EACvB,iBAAiB,EAAE,aAAa;EAEhC,UAAQ;IACJ,KAAK,EAAE,OAAkB;IACzB,gBAAgB,EAAE,OAA6B;EAGnD,UAAQ;IACJ,OAAO,EAAE,IAAI;IACb,aAAa,EAAE,KAAK;IACpB,OAAO,EAAE,IAAI;IACb,UAAU,EAAE,IAAI;EAGpB,WAAS;IACL,aAAa,EAAE,KAAK;IACpB,OAAO,EAAE,IAAI;IACb,UAAU,EAAE,IAAI;EAGpB,gBAAc;IACV,KAAK,EJrBe,OAAO;IIsB3B,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,iBAAe;IAEvB,sBAAQ;MACJ,gBAAgB,EJxBA,OAAO;MIyBvB,KAAK,EAAE,OAAkB;EAIjC,gBAAc;IACV,KAAK,EJtBe,OAAO;IIuB3B,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,iBAAuB;IAE/B,sBAAQ;MACJ,gBAAgB,EAAE,OAA2B;MAC7C,KAAK,EAAE,OAA0B;EAKzC,gBAAc;IACV,KAAK,EJrCe,OAAO;IIsC3B,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,iBAAqB;IAE7B,sBAAQ;MACJ,gBAAgB,EAAE,OAA0B;MAC5C,KAAK,EAAE,OAAwB;EAIvC,eAAa;IACT,KAAK,EJ/Ce,OAAI;IIgDxB,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,iBAAc;IAEtB,qBAAQ;MACJ,gBAAgB,EAAE,OAAkB;MACpC,KAAK,EAAE,OAAiB;EAKhC,WAAS;IACL,KAAK,EJnEe,OAAO;IIoE3B,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,iBAAe;IAEvB,iBAAQ;MACJ,gBAAgB,EJtEA,OAAO;MIuEvB,KAAK,EAAE,OAAkB;IAG7B,wBAAe;MACX,KAAK,EAAE,OAAO;MACd,gBAAgB,EAAE,OAAO;MACzB,MAAM,EAAE,cAAc;EAK9B,aAAW;IACP,SAAS,EAAE,IAAI;IACf,OAAO,EAAE,GAAG;EAGhB,aAAW;IACP,SAAS,EAAE,IAAI;IACf,OAAO,EAAE,eAAe;IACxB,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;AAMxB,iBAAU;EACR,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,KAAK;EACd,qBAAI;IACF,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE,YAAY;;ACvHxB,gBAAiB;EACb,OAAO,EAAE,CAAC;EACV,YAAY,EAAE,GAAG;EACjB,mBAAmB,EAAE,GAAG;EACxB,aAAa,EAAE,GAAG;EAClB,aAAa,EAAE,IAAI;EACnB,UAAU,EAAE,IAAI;EJLlB,kBAAkB,EIMI,iCAAgC;EJLnD,eAAe,EIKI,iCAAgC;EJJlD,cAAc,EIII,iCAAgC;EJHjD,aAAa,EIGI,iCAAgC;EJF9C,UAAU,EIEI,iCAAgC;EAEpD,wEAAuC;IACnC,MAAM,EAAE,mBAAmB;IAC3B,OAAO,EAAE,eAAe;EAG5B,6BAAa;IACT,YAAY,EAAE,GAAG;IACjB,KAAK,ELXe,IAAI;IKYxB,SAAS,EAAE,IAAI;EAGnB,yCAAyB;IACrB,aAAa,EAAE,cAAc;IAC7B,KAAK,ELlBe,IAAI;IKoBxB,yDAAgB;MACZ,KAAK,EAAE,KAAK;MACZ,WAAW,EAAE,GAAG;MAChB,KAAK,ELrBW,OAAO;MKsBvB,SAAS,EAAE,IAAI;EAIvB,0BAAU;IACN,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;EAGhB,gCAAkB;IACd,MAAM,EAAE,OAAO;IACf,gBAAgB,EAAE,OAA6B;EAGnD,0CAA4B;IACxB,MAAM,EAAE,OAAO;IACf,gBAAgB,EAAE,OAA6B;EAGnD,qEAAwC;IACpC,YAAY,ELzCQ,OAAO;IK0C3B,aAAa,EAAE,GAAG;IAClB,UAAU,EAAE,GAAG;IAEf,MAAM,EAAE,IAAI;IAMZ,WAAW,EAAE,GAAG;IAJhB,6FAAc;MACV,MAAM,EAAE,IAAI;IAKhB,iFAAM;MACF,SAAS,EAAE,IAAI;MACf,WAAW,EAAE,GAAG;MAEhB,2FAAK;QACD,WAAW,EAAE,MAAM;QACnB,QAAQ,EAAE,MAAM;QAChB,aAAa,EAAE,QAAQ;QACvB,SAAS,EAAE,GAAG;QACd,KAAK,EAAE,IAAI;QACX,OAAO,EAAC,YAAY;QACpB,aAAa,EAAE,GAAG;MAGtB,6FAAM;QACF,OAAO,EAAE,YAAY;QACrB,aAAa,EAAE,GAAG;QAClB,WAAW,EAAE,GAAG;QAChB,SAAS,EAAE,IAAI;QACf,KAAK,ELzEO,OAAO;IK6E3B,yFAAU;MACN,OAAO,EAAE,KAAK;MACd,SAAS,EAAE,IAAI;MACf,KAAK,EAAE,IAAI;MACX,KAAK,ELjFW,OAAO;IKoF3B,mFAAO;MAKH,MAAM,EAAE,CAAC;MACT,SAAS,EAAE,IAAI;MACf,KAAK,EL3FW,OAAO;MK4FvB,QAAQ,EAAE,IAAI;MAPd,yFAAG;QACC,OAAO,EAAE,CAAC;MAQd,yHAAqB;QACjB,OAAO,EAAE,IAAI;QACb,kBAAkB,EAAE,IAAI;EAKpC,qCAAqB;IACjB,KAAK,EAAE,IAAI;IACX,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,YAAY,EAAE,IAAI;EAItB,uBAAS;IJlHX,kBAAkB,EImHQ,wBAAuB;IJlH9C,eAAe,EIkHQ,wBAAuB;IJjH7C,cAAc,EIiHQ,wBAAuB;IJhH5C,aAAa,EIgHQ,wBAAuB;IJ/GzC,UAAU,EI+GQ,wBAAuB;IAC3C,YAAY,ELtGQ,OAAwB;IKwG5C,+EAAgC;MJtHtC,kBAAkB,EIuHY,4BAA2B;MJtHtD,eAAe,EIsHY,4BAA2B;MJrHrD,cAAc,EIqHY,4BAA2B;MJpHpD,aAAa,EIoHY,4BAA2B;MJnHjD,UAAU,EImHY,4BAA2B;MAC/C,gBAAgB,EL1GA,OAAwB;;AMdhD,yBAAc;ELAhB,kBAAkB,EKCQ,6BAA4B;ELAnD,eAAe,EKAQ,6BAA4B;ELClD,cAAc,EKDQ,6BAA4B;ELEjD,aAAa,EKFQ,6BAA4B;ELG9C,UAAU,EKHQ,6BAA4B;ELDtD,kBAAkB,EKEQ,2BAA0B;ELDjD,eAAe,EKCQ,2BAA0B;ELAhD,cAAc,EKAQ,2BAA0B;ELC/C,aAAa,EKDQ,2BAA0B;ELE5C,UAAU,EKFQ,2BAA0B;ELFpD,kBAAkB,EKGQ,6BAA4B;ELFnD,eAAe,EKEQ,6BAA4B;ELDlD,cAAc,EKCQ,6BAA4B;ELAjD,aAAa,EKAQ,6BAA4B;ELC9C,UAAU,EKDQ,6BAA4B;EAEhD,2CAAoB;IAChB,SAAS,EAAE,IAAI;AAKnB,+BAAc;EACV,YAAY,ENOI,OAAO;EMNvB,UAAU,EAAE,eAAoB;AAMhC,0CAAc;EACV,YAAY,ENDA,OAAO;EMEnB,UAAU,EAAE,eAAoB;AAKpC,wCAAc;EACV,YAAY,ENNA,OAAI;EMOhB,UAAU,EAAE,eAAkB;AAK1C,8BAAmB;EACf,gBAAgB,EN5BI,OAAO;;AMgCnC,qBAAsB;EAClB,WAAW,EAAE,SAAS;EACtB,MAAM,EAAE,KAAK;EACb,iBAAiB,EAAE,aAAa;;AAGpC,cAAe;EACX,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;EACf,KAAK,EN5CmB,IAAI;EM6C5B,WAAW,EAAE,IAAI;EAEjB,oBAAM;IACF,YAAY,EAAE,GAAG;;ACrDzB,OAAQ;EACJ,QAAQ,EAAE,KAAK;EACf,UAAU,EAAE,OAAmB;EAC/B,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,IAAI;EACb,SAAS,EAAE,KAAK;EAChB,cAAc,EAAE,IAAI;EACpB,KAAK,EAAE,yBAAsB;EAC7B,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,GAAG;;AAGhB,eAAgB;EACZ,cAAc,EAAE,IAAI;;AAGxB,SAAU;EACN,KAAK,EAAE,OAAO;EACd,OAAO,EAAE,GAAG;EACZ,WAAW,EAAE,GAAG;;AAGpB;eACgB;EACZ,OAAO,EAAE,CAAC;;AAGd,SAAU;EACN,MAAM,EAAE,CAAC;;AAGb;kBACmB;EACf,cAAc,EAAE,IAAI;;AAGxB,SAAU;EACN,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,GAAG;EACV,GAAG,EAAE,GAAG;EACR,QAAQ,EAAE,MAAM;EAChB,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,OAAO;EACf,2BAA2B,EAAE,MAAM;EACnC,mBAAmB,EAAE,MAAM;;AAG/B;eACgB;EACZ,OAAO,EAAE,IAAI;;AAGjB;gBACiB;EACb,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,UAAU,EAAE,KAAK;;AAGrB;sBACuB;EACnB,UAAU,EAAE,IAAI;;AAGpB,iBAAkB;EACd,iBAAiB,EAAE,mCAAkC;EACrD,SAAS,EAAE,mCAAkC;;AAGjD,gBAAiB;EACb,iBAAiB,EAAE,oCAAmC;EACtD,SAAS,EAAE,oCAAmC;;;AAMlD,SAAU;EACN,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,IAAI;EACV,SAAS,EAAE,KAAK;EAChB,aAAa,EAAE,GAAG;;AAGtB,WAAY;EACR,MAAM,EAAE,CAAC;EACT,WAAW,EAAE,GAAG;;AAGpB;uCACwC;EACpC,2BAA2B,EAAE,OAAO;EACpC,mBAAmB,EAAE,OAAO;;;AAKhC,gBAAiB;EACb,GAAG,EAAE,IAAI;;AAGb;uCACwC;EACpC,UAAU,EAAE,IAAI;;AAGpB,wBAAyB;EACrB,sBAAsB,EAAE,gBAAgB;EACxC,cAAc,EAAE,gBAAgB;EAChC,0BAA0B,EAAE,EAAE;EAC9B,kBAAkB,EAAE,EAAE;EACtB,iCAAiC,EAAE,MAAM;EACzC,yBAAyB,EAAE,MAAM;;AAGrC,mCA8DC;EA7DG,EAAG;IAAE,iBAAiB,EAAE,4DAA4D;IAAE,SAAS,EAAE,4DAA4D;EAC7J,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,EAAG;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EACnL,SAAU;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACtL,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,GAAI;IAAE,iBAAiB,EAAE,sEAAsE;IAAE,SAAS,EAAE,sEAAsE;EAClL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,GAAI;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EAChL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EAChL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EAC9K,UAAW;IAAE,iBAAiB,EAAE,mEAAmE;IAAE,SAAS,EAAE,mEAAmE;EACnL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EAC9K,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,6DAA6D;IAAE,SAAS,EAAE,6DAA6D;EACvK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,IAAK;IAAE,iBAAiB,EAAE,wDAAwD;IAAE,SAAS,EAAE,wDAAwD;AAG3J,2BA8DC;EA7DG,EAAG;IAAE,iBAAiB,EAAE,4DAA4D;IAAE,SAAS,EAAE,4DAA4D;EAC7J,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,EAAG;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EACnL,SAAU;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACtL,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,GAAI;IAAE,iBAAiB,EAAE,sEAAsE;IAAE,SAAS,EAAE,sEAAsE;EAClL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,GAAI;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EAChL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EAChL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EAC9K,UAAW;IAAE,iBAAiB,EAAE,mEAAmE;IAAE,SAAS,EAAE,mEAAmE;EACnL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EAC9K,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,6DAA6D;IAAE,SAAS,EAAE,6DAA6D;EACvK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,IAAK;IAAE,iBAAiB,EAAE,wDAAwD;IAAE,SAAS,EAAE,wDAAwD;AAG3J,wBAAyB;EACrB,sBAAsB,EAAE,SAAS;EACjC,cAAc,EAAE,SAAS;EACzB,0BAA0B,EAAE,KAAK;EACjC,kBAAkB,EAAE,KAAK;;AAG7B,4BAGC;EAFG,EAAG;IAAE,iBAAiB,EAAE,iDAA6C;EACrE,IAAK;IAAE,iBAAiB,EAAE,oBAAkB;AAGhD,oBAGC;EAFG,EAAG;IAAE,iBAAiB,EAAE,iDAA6C;IAAE,SAAS,EAAE,iDAA6C;EAC/H,IAAK;IAAE,iBAAiB,EAAE,oBAAkB;IAAE,SAAS,EAAE,oBAAkB;AC/P/E,UAAW;EACT,MAAM,EAAE,IAAI;;AAGd,QAAS;EACP,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,eAAe;;EACvB,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,YAAY;;;AAGtB,cAAe;EACb,MAAM,EAAE,IAAI;;;AAGd,0BAA2B;EACzB,UAAW;IACT,KAAK,EAAE,MAAM;AAIjB,0BAA2B;EACzB,UAAW;IACT,KAAK,EAAE,MAAM;AAIjB,0BAA2B;EACzB,UAAW;IACT,KAAK,EAAE,MAAM;AAKb,eAAc;EACV,OAAO,EAAE,IAAI;;AAIrB,aAAc;EACZ,MAAM,EAAE,IAAI;;AAGd,yBAA0B;EACxB,YAAa;IACX,WAAW,EAAE,iBAA0B;IACvC,2BAAc;MACZ,YAAY,EAAE,IAAI;AAIxB,oBAAqB;EACnB,aAAa,EAAE,IAAI;;AAGrB,UAAW;EACP,MAAM,EAAE,CAAC;;AAGb,gBAAiB;EACb,UAAU,EAAE,KAAK;;AAGrB,cAAe;EACX,GAAG,EAAE,IAAI;EACT,QAAQ,EAAE,MAAM;EAChB,QAAQ,EAAE,cAAc;EACxB,QAAQ,EAAE,MAAM;;AAIhB,YAAU;EACN,gBAAgB,ERlEI,OAAO;;AQsEnC,SAAU;EACN,WAAW,EAAE,iBAA0B;;AAI3C,QAAS;EACL,gBAAgB,ER7EQ,OAAwB;;AQgFpD,cAAe;EACX,gBAAgB,ERhFQ,OAAO;;AQmFnC,UAAW;EACP,gBAAgB,ER5EQ,OAAO;;AQ+EnC,SAAU;EACN,gBAAgB,ERpFQ,OAAO;;AQuFnC,cAAe;EACX,gBAAgB,ERvFQ,OAAO;;AQ0FnC,OAAQ;EACJ,gBAAgB,ER1FQ,OAAI;;AQ6FhC,QAAS;EACL,gBAAgB,ER9GQ,OAAO;;AQiHnC,cAAe;EACX,gBAAgB,ERjHQ,OAAO;;AQoHnC,WAAY;EACV,UAAU,EAAE,IAAI;EAChB,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,IAAI;;AAGtB,gBAAiB;EACf,QAAQ,EAAE,IAAI;EACd,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,IAAI;;AAGrB,qBAAsB;EACpB,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;;AAGb,WAAY;EACV,QAAQ,EAAE,IAAI;EACd,MAAM,EAAE,KAAK;EACb,aAAa,EAAE,IAAI;;AAGrB,cAAe;EACb,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,MAAM;EAChB,WAAW,EAAE,MAAM;EACnB,aAAa,EAAE,QAAQ;;AAGzB,QAAS;EACP,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,IAAI;;AAGlB,uBAAwB;EACpB,IAAI,ERxJoB,OAAO;;AQ0JnC,iBAAkB;EACd,IAAI,EAAE,IAAI;EACV,MAAM,ER7JkB,OAAO;EQ8J/B,gBAAgB,EAAE,GAAG;;AAEzB,mBAAoB;EAChB,IAAI,EAAE,IAAI;EACV,MAAM,ERpKkB,IAAI;;AQsKhC,kBAAmB;EACf,MAAM,ERvKkB,IAAI;EQwK5B,IAAI,ERxJoB,OAAO;;AQ0JnC,uBAAwB;EACpB,MAAM,ERzJkB,OAAI;;AQ2JhC,6BAA8B;EAC1B,MAAM,ER9KkB,IAAI;EQ+K5B,YAAY,EAAE,GAAG;;AAErB,sBAAuB;EACnB,MAAM,ERhLkB,OAAO;;AQkLnC,sBAAuB;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,KAAK", -"sources": ["../styles/_type.scss","../styles/_variables.scss","../styles/_mixins.scss","../styles/_panels.scss","../styles/_nav.scss","../styles/_buttons.scss","../styles/_lists.scss","../styles/_forms.scss","../styles/_notifications.scss","../styles/base.scss"], +"mappings": "AAAA,IAAK;EACD,sBAAsB,EAAC,WAAW;EAClC,SAAS,EAAE,IAAI;EACf,KAAK,ECwBmB,IAAI;;ADrBhC,CAAE;EACE,KAAK,ECQmB,OAAwB;EDPhD,WAAW,EAAE,GAAG;EEPlB,kBAAkB,EFQI,sBAAqB;EEPxC,eAAe,EFOI,sBAAqB;EENvC,cAAc,EFMI,sBAAqB;EELtC,aAAa,EFKI,sBAAqB;EEJnC,UAAU,EFII,sBAAqB;EAEzC,OAAQ;IACJ,eAAe,EAAE,IAAI;IACrB,KAAK,EAAE,OAAkB;EAG7B,QAAS;IACL,KAAK,EAAE,OAAO;IAEd,cAAQ;MACJ,KAAK,ECLW,OAAwB;;ADUpD,IAAK;EACD,KAAK,ECZmB,OAAO;EDa/B,gBAAgB,ECpBQ,OAAO;;ADuBnC,WAAY;EACR,SAAS,EAAE,IAAI;EACf,KAAK,EC1BmB,OAAO;;AD6BnC,KAAM;EACF,KAAK,EC/BmB,IAAI;;ADkChC,kBAAmB;EACf,KAAK,ECpCmB,IAAI;;ADuChC,EAAG;EACC,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,KAAK,ECxCmB,OAAO;;AD2CnC,cAAe;EACX,cAAc,EAAE,GAAG;EACnB,cAAc,EAAE,SAAS;EACzB,gBAAE;IACE,KAAK,EC/Ce,OAAO;;ADmDnC,GAAI;EACA,gBAAgB,ECrDQ,IAAI;EDsD5B,KAAK,EAAE,KAAK;EACZ,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;;AAGnB,KAAM;EACF,WAAW,EAAE,GAAG;;AAGpB,MAAO;EACH,KAAK,EChEmB,IAAI;;AELhC,MAAO;EACH,YAAY,EAAE,GAAG;EACjB,YAAY,EFKY,OAAO;ECNjC,kBAAkB,ECEI,iCAAgC;EDDnD,eAAe,ECCI,iCAAgC;EDAlD,cAAc,ECAI,iCAAgC;EDCjD,aAAa,ECDI,iCAAgC;EDE9C,UAAU,ECFI,iCAAgC;EAEpD,qBAAe;IACX,OAAO,EAAE,QAAQ;IACjB,gBAAgB,EAAE,WAAW;IAC7B,YAAY,EAAE,GAAG;IACjB,YAAY,EFFQ,OAAO;EEK/B,qBAAe;IACX,OAAO,EAAE,gBAAgB;IACzB,SAAS,EAAE,IAAI;IACf,KAAK,EFTe,OAAO;IEU3B,KAAK,EFZe,IAAI;IEaxB,aAAa,EAAE,GAAG;IAClB,OAAO,EAAE,GAAG;IAEZ,2BAAM;MACF,SAAS,EAAE,IAAI;MACf,cAAc,EAAE,SAAS;MACzB,WAAW,EAAE,GAAG;MAChB,WAAW,EAAE,GAAG;MAChB,WAAW,EAAE,GAAG;IAIpB,8BAAS;MACP,cAAc,EAAE,IAAI;IAGtB,iCAAY;MACR,UAAU,EAAE,GAAG;MACf,KAAK,EAAE,KAAK;MACZ,WAAW,EAAE,GAAG;MAChB,KAAK,EF/BW,OAAO;MEgCvB,SAAS,EAAE,IAAI;EAKvB,qBAAe;IACX,OAAO,EAAE,eAAe;IACxB,SAAS,EAAE,IAAI;IACf,KAAK,EFxCe,OAAO;IEyC3B,KAAK,EF3Ce,IAAI;IE4CxB,aAAa,EAAE,GAAG;IAElB,2BAAM;MACF,SAAS,EAAE,IAAI;MACf,WAAW,EAAE,GAAG;IAGpB,iCAAY;MACR,UAAU,EAAE,GAAG;MACf,KAAK,EAAE,KAAK;MACZ,WAAW,EAAE,GAAG;MAChB,KAAK,EFrDW,OAAO;MEsDvB,SAAS,EAAE,IAAI;EAIvB,kBAAY;IACR,OAAO,EAAE,eAAe;IACxB,oBAAE;MACE,SAAS,EAAE,IAAI;MACf,KAAK,EFzCW,IAAI;IE2CxB,qBAAG;MACC,SAAS,EAAE,IAAI;IAEnB,2BAAS;MACL,SAAS,EAAE,IAAI;IAEnB,6BAAa;MACT,cAAc,EAAE,IAAI;EAI5B,iBAAW;IACP,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IDlFlB,kBAAkB,ECmFQ,4BAA2B;IDlFlD,eAAe,ECkFQ,4BAA2B;IDjFjD,cAAc,ECiFQ,4BAA2B;IDhFhD,aAAa,ECgFQ,4BAA2B;ID/E7C,UAAU,EC+EQ,4BAA2B;EAGnD,iBAAa;IACT,mBAAmB,EAAE,GAAG;EAIxB,oBAAG;IACC,MAAM,EAAE,CAAC;IACT,uBAAG;MACC,MAAM,EAAE,CAAC;MACT,MAAM,EAAE,CAAC;EAIrB,4BAAsB;IAClB,KAAK,EAAE,IAAI;IACX,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,YAAY,EAAE,IAAI;IAClB,OAAO,EAAE,KAAK;EAGlB,kBAAc;IACV,mBAAmB,EAAE,GAAG;EAG5B,uBAAmB;IACf,MAAM,EAAE,OAAO;IACf,gBAAgB,EAAE,OAA6B;EAGnD,aAAS;IDpHX,kBAAkB,ECyHQ,wBAAuB;IDxH9C,eAAe,ECwHQ,wBAAuB;IDvH7C,cAAc,ECuHQ,wBAAuB;IDtH5C,aAAa,ECsHQ,wBAAuB;IDrHzC,UAAU,ECqHQ,wBAAuB;IAC3C,YAAY,EF5GQ,OAAwB;IEuG5C,8BAAgB;MACZ,YAAY,EFxGI,OAAwB;IE8G5C,wBAAW;MD5HjB,kBAAkB,EC6HQ,4BAA2B;MD5HlD,eAAe,EC4HQ,4BAA2B;MD3HjD,cAAc,EC2HQ,4BAA2B;MD1HhD,aAAa,EC0HQ,4BAA2B;MDzH7C,UAAU,ECyHQ,4BAA2B;MAC3C,gBAAgB,EFhHA,OAAwB;;AGdpD,UAAW;EACP,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,8CAA8C;EAC1D,eAAe,EAAE,SAAS;EAC1B,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;;AAIhB,OAAQ;EACJ,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,IAAI;EACpB,aAAa,EAAE,IAAI;EACnB,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,cAAc;EAE7B,YAAK;IACD,UAAU,EAAE,IAAI;IAChB,SAAS,EAAE,KAAK;EAGpB,qBAAc;IACV,KAAK,EAAE,IAAI;EAMP,6BAAE;IACE,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,GAAG;IAChB,SAAS,EAAE,IAAI;IACf,KAAK,EH7BO,IAAI;ICJ9B,kBAAkB,EEkCgB,iCAAgC;IFjC/D,eAAe,EEiCgB,iCAAgC;IFhC9D,cAAc,EEgCgB,iCAAgC;IF/B7D,aAAa,EE+BgB,iCAAgC;IF9B1D,UAAU,EE8BgB,iCAAgC;IAEpD,mCAAQ;MACJ,KAAK,EAAE,OAAkB;MACzB,gBAAgB,EAAE,OAA6B;;ACvCnE,IAAK;EACD,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;EACf,YAAY,EAAE,GAAG;EACjB,KAAK,EJAmB,IAAI;ECJ9B,kBAAkB,EGKI,iCAAgC;EHJnD,eAAe,EGII,iCAAgC;EHHlD,cAAc,EGGI,iCAAgC;EHFjD,aAAa,EGEI,iCAAgC;EHD9C,UAAU,EGCI,iCAAgC;EHLtD,kBAAkB,EGMI,6BAA4B;EHL/C,eAAe,EGKI,6BAA4B;EHJ9C,cAAc,EGII,6BAA4B;EHH7C,aAAa,EGGI,6BAA4B;EHF1C,UAAU,EGEI,6BAA4B;EHNlD,kBAAkB,EGOI,sBAAqB;EHNxC,eAAe,EGMI,sBAAqB;EHLvC,cAAc,EGKI,sBAAqB;EHJtC,aAAa,EGII,sBAAqB;EHHnC,UAAU,EGGI,sBAAqB;EACzC,OAAO,EAAE,IAAI;EACb,aAAa,EAAE,KAAK;EACpB,WAAW,EAAE,MAAM;EACnB,QAAQ,EAAE,MAAM;EAChB,aAAa,EAAE,QAAQ;EACvB,iBAAiB,EAAE,aAAa;EAEhC,UAAQ;IACJ,KAAK,EAAE,OAAkB;IACzB,gBAAgB,EAAE,OAA6B;EAGnD,UAAQ;IACJ,OAAO,EAAE,IAAI;IACb,aAAa,EAAE,KAAK;IACpB,OAAO,EAAE,IAAI;IACb,UAAU,EAAE,IAAI;EAGpB,WAAS;IACL,aAAa,EAAE,KAAK;IACpB,OAAO,EAAE,IAAI;IACb,UAAU,EAAE,IAAI;EAGpB,gBAAc;IACV,KAAK,EJrBe,OAAO;IIsB3B,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,iBAAe;IAEvB,sBAAQ;MACJ,gBAAgB,EJxBA,OAAO;MIyBvB,KAAK,EAAE,OAAkB;EAIjC,gBAAc;IACV,KAAK,EJtBe,OAAO;IIuB3B,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,iBAAuB;IAE/B,sBAAQ;MACJ,gBAAgB,EAAE,OAA2B;MAC7C,KAAK,EAAE,OAA0B;EAKzC,gBAAc;IACV,KAAK,EJrCe,OAAO;IIsC3B,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,iBAAqB;IAE7B,sBAAQ;MACJ,gBAAgB,EAAE,OAA0B;MAC5C,KAAK,EAAE,OAAwB;EAIvC,eAAa;IACT,KAAK,EJ/Ce,OAAI;IIgDxB,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,iBAAc;IAEtB,qBAAQ;MACJ,gBAAgB,EAAE,OAAkB;MACpC,KAAK,EAAE,OAAiB;EAKhC,WAAS;IACL,KAAK,EJnEe,OAAO;IIoE3B,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,iBAAe;IAEvB,iBAAQ;MACJ,gBAAgB,EJtEA,OAAO;MIuEvB,KAAK,EAAE,OAAkB;IAG7B,wBAAe;MACX,KAAK,EAAE,OAAO;MACd,gBAAgB,EAAE,OAAO;MACzB,MAAM,EAAE,cAAc;EAK9B,aAAW;IACP,SAAS,EAAE,IAAI;IACf,OAAO,EAAE,GAAG;EAGhB,aAAW;IACP,SAAS,EAAE,IAAI;IACf,OAAO,EAAE,eAAe;IACxB,YAAY,EAAE,GAAG;IACjB,aAAa,EAAE,GAAG;;AAMxB,iBAAU;EACR,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,KAAK;EACd,qBAAI;IACF,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE,YAAY;;ACvHxB,gBAAiB;EACb,OAAO,EAAE,CAAC;EACV,YAAY,EAAE,GAAG;EACjB,mBAAmB,EAAE,GAAG;EACxB,aAAa,EAAE,GAAG;EAClB,aAAa,EAAE,IAAI;EACnB,UAAU,EAAE,IAAI;EJLlB,kBAAkB,EIMI,iCAAgC;EJLnD,eAAe,EIKI,iCAAgC;EJJlD,cAAc,EIII,iCAAgC;EJHjD,aAAa,EIGI,iCAAgC;EJF9C,UAAU,EIEI,iCAAgC;EAEpD,wEAAuC;IACnC,MAAM,EAAE,mBAAmB;IAC3B,OAAO,EAAE,eAAe;EAG5B,6BAAa;IACT,YAAY,EAAE,GAAG;IACjB,KAAK,ELXe,IAAI;IKYxB,SAAS,EAAE,IAAI;EAGnB,yCAAyB;IACrB,aAAa,EAAE,cAAc;IAC7B,KAAK,ELlBe,IAAI;IKoBxB,yDAAgB;MACZ,KAAK,EAAE,KAAK;MACZ,WAAW,EAAE,GAAG;MAChB,KAAK,ELrBW,OAAO;MKsBvB,SAAS,EAAE,IAAI;EAIvB,0BAAU;IACN,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;EAGhB,gCAAkB;IACd,MAAM,EAAE,OAAO;IACf,gBAAgB,EAAE,OAA6B;EAGnD,0CAA4B;IACxB,MAAM,EAAE,OAAO;IACf,gBAAgB,EAAE,OAA6B;EAGnD,qEAAwC;IACpC,YAAY,ELzCQ,OAAO;IK0C3B,aAAa,EAAE,GAAG;IAClB,UAAU,EAAE,GAAG;IAEf,MAAM,EAAE,IAAI;IAMZ,WAAW,EAAE,GAAG;IAJhB,6FAAc;MACV,MAAM,EAAE,IAAI;IAKhB,iFAAM;MACF,SAAS,EAAE,IAAI;MACf,WAAW,EAAE,GAAG;MAEhB,2FAAK;QACD,WAAW,EAAE,MAAM;QACnB,QAAQ,EAAE,MAAM;QAChB,aAAa,EAAE,QAAQ;QACvB,SAAS,EAAE,GAAG;QACd,KAAK,EAAE,IAAI;QACX,OAAO,EAAC,YAAY;QACpB,aAAa,EAAE,GAAG;MAGtB,6FAAM;QACF,OAAO,EAAE,YAAY;QACrB,aAAa,EAAE,GAAG;QAClB,WAAW,EAAE,GAAG;QAChB,SAAS,EAAE,IAAI;QACf,KAAK,ELzEO,OAAO;IK6E3B,yFAAU;MACN,OAAO,EAAE,KAAK;MACd,SAAS,EAAE,IAAI;MACf,KAAK,EAAE,IAAI;MACX,KAAK,ELjFW,OAAO;IKoF3B,mFAAO;MAKH,MAAM,EAAE,CAAC;MACT,SAAS,EAAE,IAAI;MACf,KAAK,EL3FW,OAAO;MK4FvB,QAAQ,EAAE,IAAI;MAPd,yFAAG;QACC,OAAO,EAAE,CAAC;MAQd,yHAAqB;QACjB,OAAO,EAAE,IAAI;QACb,kBAAkB,EAAE,IAAI;EAKpC,qCAAqB;IACjB,KAAK,EAAE,IAAI;IACX,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,YAAY,EAAE,IAAI;EAItB,uBAAS;IJlHX,kBAAkB,EImHQ,wBAAuB;IJlH9C,eAAe,EIkHQ,wBAAuB;IJjH7C,cAAc,EIiHQ,wBAAuB;IJhH5C,aAAa,EIgHQ,wBAAuB;IJ/GzC,UAAU,EI+GQ,wBAAuB;IAC3C,YAAY,ELtGQ,OAAwB;IKwG5C,+EAAgC;MJtHtC,kBAAkB,EIuHY,4BAA2B;MJtHtD,eAAe,EIsHY,4BAA2B;MJrHrD,cAAc,EIqHY,4BAA2B;MJpHpD,aAAa,EIoHY,4BAA2B;MJnHjD,UAAU,EImHY,4BAA2B;MAC/C,gBAAgB,EL1GA,OAAwB;;AMdhD,yBAAc;ELAhB,kBAAkB,EKCQ,6BAA4B;ELAnD,eAAe,EKAQ,6BAA4B;ELClD,cAAc,EKDQ,6BAA4B;ELEjD,aAAa,EKFQ,6BAA4B;ELG9C,UAAU,EKHQ,6BAA4B;ELDtD,kBAAkB,EKEQ,2BAA0B;ELDjD,eAAe,EKCQ,2BAA0B;ELAhD,cAAc,EKAQ,2BAA0B;ELC/C,aAAa,EKDQ,2BAA0B;ELE5C,UAAU,EKFQ,2BAA0B;ELFpD,kBAAkB,EKGQ,6BAA4B;ELFnD,eAAe,EKEQ,6BAA4B;ELDlD,cAAc,EKCQ,6BAA4B;ELAjD,aAAa,EKAQ,6BAA4B;ELC9C,UAAU,EKDQ,6BAA4B;EAEhD,2CAAoB;IAChB,SAAS,EAAE,IAAI;AAKnB,+BAAc;EACV,YAAY,ENOI,OAAO;EMNvB,UAAU,EAAE,eAAoB;AAMhC,0CAAc;EACV,YAAY,ENDA,OAAO;EMEnB,UAAU,EAAE,eAAoB;AAKpC,wCAAc;EACV,YAAY,ENNA,OAAI;EMOhB,UAAU,EAAE,eAAkB;AAK1C,8BAAmB;EACf,gBAAgB,EN5BI,OAAO;;AMgCnC,qBAAsB;EAClB,WAAW,EAAE,SAAS;EACtB,MAAM,EAAE,KAAK;EACb,iBAAiB,EAAE,aAAa;;AAGpC,cAAe;EACX,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;EACf,KAAK,EN5CmB,IAAI;EM6C5B,WAAW,EAAE,IAAI;EAEjB,oBAAM;IACF,YAAY,EAAE,GAAG;;ACrDzB,OAAQ;EACJ,QAAQ,EAAE,KAAK;EACf,UAAU,EAAE,OAAmB;EAC/B,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,IAAI;EACb,SAAS,EAAE,KAAK;EAChB,cAAc,EAAE,IAAI;EACpB,KAAK,EAAE,yBAAsB;EAC7B,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,GAAG;;AAGhB,eAAgB;EACZ,cAAc,EAAE,IAAI;;AAGxB,SAAU;EACN,KAAK,EAAE,OAAO;EACd,OAAO,EAAE,GAAG;EACZ,WAAW,EAAE,GAAG;;AAGpB;eACgB;EACZ,OAAO,EAAE,CAAC;;AAGd,SAAU;EACN,MAAM,EAAE,CAAC;;AAGb;kBACmB;EACf,cAAc,EAAE,IAAI;;AAGxB,SAAU;EACN,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,GAAG;EACV,GAAG,EAAE,GAAG;EACR,QAAQ,EAAE,MAAM;EAChB,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,OAAO;EACf,2BAA2B,EAAE,MAAM;EACnC,mBAAmB,EAAE,MAAM;;AAG/B;eACgB;EACZ,OAAO,EAAE,IAAI;;AAGjB;gBACiB;EACb,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,UAAU,EAAE,KAAK;;AAGrB;sBACuB;EACnB,UAAU,EAAE,IAAI;;AAGpB,iBAAkB;EACd,iBAAiB,EAAE,mCAAkC;EACrD,SAAS,EAAE,mCAAkC;;AAGjD,gBAAiB;EACb,iBAAiB,EAAE,oCAAmC;EACtD,SAAS,EAAE,oCAAmC;;AAIlD,+BAA+B;AAE/B,SAAU;EACN,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,IAAI;EACV,SAAS,EAAE,KAAK;EAChB,aAAa,EAAE,GAAG;;AAGtB,WAAY;EACR,MAAM,EAAE,CAAC;EACT,WAAW,EAAE,GAAG;;AAGpB;uCACwC;EACpC,2BAA2B,EAAE,OAAO;EACpC,mBAAmB,EAAE,OAAO;;AAIhC,WAAW;AACX,gBAAiB;EACb,GAAG,EAAE,IAAI;;AAGb;uCACwC;EACpC,UAAU,EAAE,IAAI;;AAGpB,wBAAyB;EACrB,sBAAsB,EAAE,gBAAgB;EACxC,cAAc,EAAE,gBAAgB;EAChC,0BAA0B,EAAE,EAAE;EAC9B,kBAAkB,EAAE,EAAE;EACtB,iCAAiC,EAAE,MAAM;EACzC,yBAAyB,EAAE,MAAM;;AAGrC,mCA8DC;EA7DG,EAAG;IAAE,iBAAiB,EAAE,4DAA4D;IAAE,SAAS,EAAE,4DAA4D;EAC7J,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,EAAG;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EACnL,SAAU;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACtL,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,GAAI;IAAE,iBAAiB,EAAE,sEAAsE;IAAE,SAAS,EAAE,sEAAsE;EAClL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,GAAI;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EAChL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EAChL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EAC9K,UAAW;IAAE,iBAAiB,EAAE,mEAAmE;IAAE,SAAS,EAAE,mEAAmE;EACnL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EAC9K,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,6DAA6D;IAAE,SAAS,EAAE,6DAA6D;EACvK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,IAAK;IAAE,iBAAiB,EAAE,wDAAwD;IAAE,SAAS,EAAE,wDAAwD;AAG3J,2BA8DC;EA7DG,EAAG;IAAE,iBAAiB,EAAE,4DAA4D;IAAE,SAAS,EAAE,4DAA4D;EAC7J,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,EAAG;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EACnL,SAAU;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACtL,SAAU;IAAE,iBAAiB,EAAE,uEAAuE;IAAE,SAAS,EAAE,uEAAuE;EAC1L,GAAI;IAAE,iBAAiB,EAAE,sEAAsE;IAAE,SAAS,EAAE,sEAAsE;EAClL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,GAAI;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EAChL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EAChL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,qEAAqE;IAAE,SAAS,EAAE,qEAAqE;EACvL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EAC9K,UAAW;IAAE,iBAAiB,EAAE,mEAAmE;IAAE,SAAS,EAAE,mEAAmE;EACnL,UAAW;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EACrL,GAAI;IAAE,iBAAiB,EAAE,oEAAoE;IAAE,SAAS,EAAE,oEAAoE;EAC9K,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,6DAA6D;IAAE,SAAS,EAAE,6DAA6D;EACvK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EAClK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,UAAW;IAAE,iBAAiB,EAAE,8DAA8D;IAAE,SAAS,EAAE,8DAA8D;EACzK,GAAI;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EACpK,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,UAAW;IAAE,iBAAiB,EAAE,+DAA+D;IAAE,SAAS,EAAE,+DAA+D;EAC3K,IAAK;IAAE,iBAAiB,EAAE,wDAAwD;IAAE,SAAS,EAAE,wDAAwD;AAG3J,wBAAyB;EACrB,sBAAsB,EAAE,SAAS;EACjC,cAAc,EAAE,SAAS;EACzB,0BAA0B,EAAE,KAAK;EACjC,kBAAkB,EAAE,KAAK;;AAG7B,4BAGC;EAFG,EAAG;IAAE,iBAAiB,EAAE,iDAA6C;EACrE,IAAK;IAAE,iBAAiB,EAAE,oBAAkB;AAGhD,oBAGC;EAFG,EAAG;IAAE,iBAAiB,EAAE,iDAA6C;IAAE,SAAS,EAAE,iDAA6C;EAC/H,IAAK;IAAE,iBAAiB,EAAE,oBAAkB;IAAE,SAAS,EAAE,oBAAkB;ACzQ/E,gBAAiB;EACf,KAAK,EAAE,KAAK;EACZ,gBAAgB,EAAE,OAAO;;AAE3B,kBAAmB;EACjB,SAAS,EAAE,IAAI;EACf,YAAY,EAAE,GAAG;;AAEnB;0BAC2B;EACzB,OAAO,EAAE,IAAI;;AAEf,kCAAmC;EACjC,OAAO,EAAE,KAAK;;AAEhB,gBAAiB;EACf,KAAK,EAAE,KAAK;EACZ,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,GAAG;EACT,WAAW,EAAE,KAAK;;AAEpB,sBAAuB;EACrB,MAAM,EAAE,OAAO;;AAEjB,6BAA8B;EAC5B,OAAO,EAAE,EAAE;EACX,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,mBAAmB,EAAE,OAAO;EAC5B,iBAAiB,EAAE,SAAS;EAC5B,gBAAgB,EAAE,4YAA4Y;;AAGha,iCAAkC;EAChC,OAAO,EAAE,IAAI;;AAEf,kBAAmB;EACjB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,GAAG;;AAEnB,kBAAmB;EACjB,SAAS,EAAE,IAAI;;AAEjB,yBAA0B;EACxB,wCAAyC;IACvC,YAAY,EAAE,IAAI;;EAEpB,kBAAmB;IACjB,SAAS,EAAE,KAAK;;EAElB,yCAA0C;IACxC,OAAO,EAAE,EAAE;IACX,OAAO,EAAE,KAAK;IACd,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,GAAG,EAAE,GAAG;IACR,UAAU,EAAE,KAAK;IACjB,WAAW,EAAE,KAAK;IAClB,gBAAgB,EAAE,eAAe;AAGrC,yBAA0B;EACxB,2BAA4B;IAC1B,KAAK,EAAE,IAAI;IACX,WAAW,EAAE,CAAC;IACd,UAAU,EAAE,MAAM;IAClB,OAAO,EAAE,CAAC;;EAEZ,kBAAmB;IACjB,KAAK,EAAE,IAAI;;EAEb,kBAAmB;IACjB,MAAM,EAAE,MAAM;AAGlB,yBAA0B;EACxB,uBAAwB;IACtB,OAAO,EAAE,IAAI;;EAEf,sCAAuC;IACrC,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,IAAI;IACT,KAAK,EAAE,CAAC;;EAEV,sBAAuB;IACrB,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,CAAC;IACN,KAAK,EAAE,IAAI;AChFf,UAAW;EACT,MAAM,EAAE,IAAI;;AAGd,QAAS;EACP,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,eAAe;EAAE,+EAA+E;EACxG,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,YAAY;EAAE,oEAAoE;;AAG5F,cAAe;EACb,MAAM,EAAE,IAAI;EAAE,8CAA8C;;AAG9D,0BAA2B;EACzB,UAAW;IACT,KAAK,EAAE,MAAM;AAIjB,0BAA2B;EACzB,UAAW;IACT,KAAK,EAAE,MAAM;AAIjB,0BAA2B;EACzB,UAAW;IACT,KAAK,EAAE,MAAM;AAKb,eAAc;EACV,OAAO,EAAE,IAAI;;AAIrB,aAAc;EACZ,MAAM,EAAE,IAAI;;AAGd,yBAA0B;EACxB,YAAa;IACX,WAAW,EAAE,iBAA0B;IACvC,2BAAc;MACZ,YAAY,EAAE,IAAI;AAIxB,oBAAqB;EACnB,aAAa,EAAE,IAAI;;AAGrB,UAAW;EACP,MAAM,EAAE,CAAC;;AAGb,gBAAiB;EACb,UAAU,EAAE,KAAK;;AAGrB,cAAe;EACX,GAAG,EAAE,IAAI;EACT,QAAQ,EAAE,MAAM;EAChB,QAAQ,EAAE,cAAc;EACxB,QAAQ,EAAE,MAAM;;AAIhB,YAAU;EACN,gBAAgB,ETnEI,OAAO;;ASuEnC,SAAU;EACN,WAAW,EAAE,iBAA0B;;AAI3C,QAAS;EACL,gBAAgB,ET9EQ,OAAwB;;ASiFpD,cAAe;EACX,gBAAgB,ETjFQ,OAAO;;ASoFnC,UAAW;EACP,gBAAgB,ET7EQ,OAAO;;ASgFnC,SAAU;EACN,gBAAgB,ETrFQ,OAAO;;ASwFnC,cAAe;EACX,gBAAgB,ETxFQ,OAAO;;AS2FnC,OAAQ;EACJ,gBAAgB,ET3FQ,OAAI;;AS8FhC,QAAS;EACL,gBAAgB,ET/GQ,OAAO;;ASkHnC,cAAe;EACX,gBAAgB,ETlHQ,OAAO;;ASqHnC,WAAY;EACV,UAAU,EAAE,IAAI;EAChB,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,IAAI;;AAGtB,gBAAiB;EACf,QAAQ,EAAE,IAAI;EACd,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,IAAI;;AAGrB,qBAAsB;EACpB,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;;AAGb,WAAY;EACV,QAAQ,EAAE,IAAI;EACd,MAAM,EAAE,KAAK;EACb,aAAa,EAAE,IAAI;;AAGrB,cAAe;EACb,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,MAAM;EAChB,WAAW,EAAE,MAAM;EACnB,aAAa,EAAE,QAAQ;;AAGzB,QAAS;EACP,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,IAAI;;AAGlB,uBAAwB;EACpB,IAAI,ETzJoB,OAAO;;AS2JnC,iBAAkB;EACd,IAAI,EAAE,IAAI;EACV,MAAM,ET9JkB,OAAO;ES+J/B,gBAAgB,EAAE,GAAG;;AAEzB,mBAAoB;EAChB,IAAI,EAAE,IAAI;EACV,MAAM,ETrKkB,IAAI;;ASuKhC,kBAAmB;EACf,MAAM,ETxKkB,IAAI;ESyK5B,IAAI,ETzJoB,OAAO;;AS2JnC,uBAAwB;EACpB,MAAM,ET1JkB,OAAI;;AS4JhC,6BAA8B;EAC1B,MAAM,ET/KkB,IAAI;ESgL5B,YAAY,EAAE,GAAG;;AAErB,sBAAuB;EACnB,MAAM,ETjLkB,OAAO;;ASmLnC,sBAAuB;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,KAAK", +"sources": ["../styles/_type.scss","../styles/_variables.scss","../styles/_mixins.scss","../styles/_panels.scss","../styles/_nav.scss","../styles/_buttons.scss","../styles/_lists.scss","../styles/_forms.scss","../styles/_notifications.scss","../styles/_v2-notification.scss","../styles/base.scss"], "names": [], "file": "base.css" } diff --git a/ui/static/tada.png b/ui/static/tada.png new file mode 100644 index 000000000..bbfa0ba07 --- /dev/null +++ b/ui/static/tada.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a60989b52f6d581f8196a6c0688b4cf1b05afa452b1f6f3d8ae91a2f193a65a0 +size 1767 diff --git a/ui/styles/_v2-notification.scss b/ui/styles/_v2-notification.scss new file mode 100644 index 000000000..6962a8938 --- /dev/null +++ b/ui/styles/_v2-notification.scss @@ -0,0 +1,94 @@ +#v2-notification { + color: white; + background-color: #7c1d48; +} +#v2-notification a { + font-size: 10px; + border-width: 1px; +} +#v2-notification input, +#v2-notification input + * { + display: none; +} +#v2-notification input:checked + * { + display: block; +} +#v2-notification { + width: 100vw; + position: relative; + left: 50%; + margin-left: -50vw; +} +#v2-notification label { + cursor: pointer; +} +#v2-notification label::after { + content: ''; + display: block; + width: 21px; + height: 16px; + background-position: 5px 0px; + background-repeat: no-repeat; + background-image: url('data:image/svg+xml;charset=UTF-8,'); + +} +#v2-notification .col-md-12 > div { + padding: 15px; +} +#v2-notification p { + font-size: 15px; + font-weight: 500; + margin-left: 15px; + margin-right: 9px; +} +#v2-notification a { + min-width: 95px; +} +@media (min-width: 768px) { + #v2-notification .row > div:nth-child(2) { + padding-left: 10px; + } + #v2-notification a { + max-width: 106px; + } + #v2-notification .col-md-12 > div::before { + content: ''; + display: block; + position: absolute; + width: 30px; + height: 30px; + top: 50%; + margin-top: -20px; + margin-left: -13px; + background-image: url('tada.png'); + } +} +@media (max-width: 767px) { + #v2-notification .row > div { + width: 100%; + margin-left: 0; + text-align: center; + padding: 0; + } + #v2-notification a { + width: 100%; + } + #v2-notification a { + margin: 0 auto; + } +} +@media (max-width: 991px) { + #v2-notification p span { + display: none; + } + #v2-notification .row > div:last-child { + position: absolute; + top: 15px; + right: 0; + } + #v2-notification label { + position: absolute; + top: 0; + right: 15px; + } +} diff --git a/ui/styles/base.scss b/ui/styles/base.scss index a69bb50b1..e1cda59f7 100644 --- a/ui/styles/base.scss +++ b/ui/styles/base.scss @@ -7,6 +7,7 @@ @import "lists"; @import "forms"; @import "notifications"; +@import "v2-notification"; html, body { height: 100%; diff --git a/vendor/cloud.google.com/go/LICENSE b/vendor/cloud.google.com/go/LICENSE new file mode 100644 index 000000000..a4c5efd82 --- /dev/null +++ b/vendor/cloud.google.com/go/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2014 Google Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/Azure/azure-sdk-for-go/LICENSE b/vendor/github.com/Azure/azure-sdk-for-go/LICENSE new file mode 100644 index 000000000..af39a91e7 --- /dev/null +++ b/vendor/github.com/Azure/azure-sdk-for-go/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2016 Microsoft Corporation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/Azure/azure-sdk-for-go/NOTICE b/vendor/github.com/Azure/azure-sdk-for-go/NOTICE new file mode 100644 index 000000000..2d1d72608 --- /dev/null +++ b/vendor/github.com/Azure/azure-sdk-for-go/NOTICE @@ -0,0 +1,5 @@ +Microsoft Azure-SDK-for-Go +Copyright 2014-2017 Microsoft + +This product includes software developed at +the Microsoft Corporation (https://www.microsoft.com). diff --git a/vendor/github.com/Azure/go-autorest/LICENSE b/vendor/github.com/Azure/go-autorest/LICENSE new file mode 100644 index 000000000..b9d6a27ea --- /dev/null +++ b/vendor/github.com/Azure/go-autorest/LICENSE @@ -0,0 +1,191 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright 2015 Microsoft Corporation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/armon/go-metrics/inmem.go b/vendor/github.com/armon/go-metrics/inmem.go index cd1773042..4e2d6a709 100644 --- a/vendor/github.com/armon/go-metrics/inmem.go +++ b/vendor/github.com/armon/go-metrics/inmem.go @@ -70,7 +70,7 @@ func NewIntervalMetrics(intv time.Time) *IntervalMetrics { // about a sample type AggregateSample struct { Count int // The count of emitted pairs - Rate float64 `json:"-"` // The count of emitted pairs per time unit (usually 1 second) + Rate float64 // The values rate per time unit (usually 1 second) Sum float64 // The sum of values SumSq float64 `json:"-"` // The sum of squared values Min float64 // Minimum value @@ -107,7 +107,7 @@ func (a *AggregateSample) Ingest(v float64, rateDenom float64) { if v > a.Max || a.Count == 1 { a.Max = v } - a.Rate = float64(a.Count) / rateDenom + a.Rate = float64(a.Sum) / rateDenom a.LastUpdated = time.Now() } @@ -232,8 +232,37 @@ func (i *InmemSink) Data() []*IntervalMetrics { i.intervalLock.RLock() defer i.intervalLock.RUnlock() - intervals := make([]*IntervalMetrics, len(i.intervals)) - copy(intervals, i.intervals) + n := len(i.intervals) + intervals := make([]*IntervalMetrics, n) + + copy(intervals[:n-1], i.intervals[:n-1]) + current := i.intervals[n-1] + + // make its own copy for current interval + intervals[n-1] = &IntervalMetrics{} + copyCurrent := intervals[n-1] + current.RLock() + *copyCurrent = *current + + copyCurrent.Gauges = make(map[string]GaugeValue, len(current.Gauges)) + for k, v := range current.Gauges { + copyCurrent.Gauges[k] = v + } + // saved values will be not change, just copy its link + copyCurrent.Points = make(map[string][]float32, len(current.Points)) + for k, v := range current.Points { + copyCurrent.Points[k] = v + } + copyCurrent.Counters = make(map[string]SampledValue, len(current.Counters)) + for k, v := range current.Counters { + copyCurrent.Counters[k] = v + } + copyCurrent.Samples = make(map[string]SampledValue, len(current.Samples)) + for k, v := range current.Samples { + copyCurrent.Samples[k] = v + } + current.RUnlock() + return intervals } diff --git a/vendor/github.com/armon/go-metrics/prometheus/prometheus.go b/vendor/github.com/armon/go-metrics/prometheus/prometheus.go new file mode 100644 index 000000000..a5b27d6d3 --- /dev/null +++ b/vendor/github.com/armon/go-metrics/prometheus/prometheus.go @@ -0,0 +1,193 @@ +// +build go1.3 +package prometheus + +import ( + "fmt" + "strings" + "sync" + "time" + + "regexp" + + "github.com/armon/go-metrics" + "github.com/prometheus/client_golang/prometheus" +) + +var ( + // DefaultPrometheusOpts is the default set of options used when creating a + // PrometheusSink. + DefaultPrometheusOpts = PrometheusOpts{ + Expiration: 60 * time.Second, + } +) + +// PrometheusOpts is used to configure the Prometheus Sink +type PrometheusOpts struct { + // Expiration is the duration a metric is valid for, after which it will be + // untracked. If the value is zero, a metric is never expired. + Expiration time.Duration +} + +type PrometheusSink struct { + mu sync.Mutex + gauges map[string]prometheus.Gauge + summaries map[string]prometheus.Summary + counters map[string]prometheus.Counter + updates map[string]time.Time + expiration time.Duration +} + +// NewPrometheusSink creates a new PrometheusSink using the default options. +func NewPrometheusSink() (*PrometheusSink, error) { + return NewPrometheusSinkFrom(DefaultPrometheusOpts) +} + +// NewPrometheusSinkFrom creates a new PrometheusSink using the passed options. +func NewPrometheusSinkFrom(opts PrometheusOpts) (*PrometheusSink, error) { + sink := &PrometheusSink{ + gauges: make(map[string]prometheus.Gauge), + summaries: make(map[string]prometheus.Summary), + counters: make(map[string]prometheus.Counter), + updates: make(map[string]time.Time), + expiration: opts.Expiration, + } + + return sink, prometheus.Register(sink) +} + +// Describe is needed to meet the Collector interface. +func (p *PrometheusSink) Describe(c chan<- *prometheus.Desc) { + // We must emit some description otherwise an error is returned. This + // description isn't shown to the user! + prometheus.NewGauge(prometheus.GaugeOpts{Name: "Dummy", Help: "Dummy"}).Describe(c) +} + +// Collect meets the collection interface and allows us to enforce our expiration +// logic to clean up ephemeral metrics if their value haven't been set for a +// duration exceeding our allowed expiration time. +func (p *PrometheusSink) Collect(c chan<- prometheus.Metric) { + p.mu.Lock() + defer p.mu.Unlock() + + expire := p.expiration != 0 + now := time.Now() + for k, v := range p.gauges { + last := p.updates[k] + if expire && last.Add(p.expiration).Before(now) { + delete(p.updates, k) + delete(p.gauges, k) + } else { + v.Collect(c) + } + } + for k, v := range p.summaries { + last := p.updates[k] + if expire && last.Add(p.expiration).Before(now) { + delete(p.updates, k) + delete(p.summaries, k) + } else { + v.Collect(c) + } + } + for k, v := range p.counters { + last := p.updates[k] + if expire && last.Add(p.expiration).Before(now) { + delete(p.updates, k) + delete(p.counters, k) + } else { + v.Collect(c) + } + } +} + +var forbiddenChars = regexp.MustCompile("[ .=\\-]") + +func (p *PrometheusSink) flattenKey(parts []string, labels []metrics.Label) (string, string) { + key := strings.Join(parts, "_") + key = forbiddenChars.ReplaceAllString(key, "_") + + hash := key + for _, label := range labels { + hash += fmt.Sprintf(";%s=%s", label.Name, label.Value) + } + + return key, hash +} + +func prometheusLabels(labels []metrics.Label) prometheus.Labels { + l := make(prometheus.Labels) + for _, label := range labels { + l[label.Name] = label.Value + } + return l +} + +func (p *PrometheusSink) SetGauge(parts []string, val float32) { + p.SetGaugeWithLabels(parts, val, nil) +} + +func (p *PrometheusSink) SetGaugeWithLabels(parts []string, val float32, labels []metrics.Label) { + p.mu.Lock() + defer p.mu.Unlock() + key, hash := p.flattenKey(parts, labels) + g, ok := p.gauges[hash] + if !ok { + g = prometheus.NewGauge(prometheus.GaugeOpts{ + Name: key, + Help: key, + ConstLabels: prometheusLabels(labels), + }) + p.gauges[hash] = g + } + g.Set(float64(val)) + p.updates[hash] = time.Now() +} + +func (p *PrometheusSink) AddSample(parts []string, val float32) { + p.AddSampleWithLabels(parts, val, nil) +} + +func (p *PrometheusSink) AddSampleWithLabels(parts []string, val float32, labels []metrics.Label) { + p.mu.Lock() + defer p.mu.Unlock() + key, hash := p.flattenKey(parts, labels) + g, ok := p.summaries[hash] + if !ok { + g = prometheus.NewSummary(prometheus.SummaryOpts{ + Name: key, + Help: key, + MaxAge: 10 * time.Second, + ConstLabels: prometheusLabels(labels), + }) + p.summaries[hash] = g + } + g.Observe(float64(val)) + p.updates[hash] = time.Now() +} + +// EmitKey is not implemented. Prometheus doesn’t offer a type for which an +// arbitrary number of values is retained, as Prometheus works with a pull +// model, rather than a push model. +func (p *PrometheusSink) EmitKey(key []string, val float32) { +} + +func (p *PrometheusSink) IncrCounter(parts []string, val float32) { + p.IncrCounterWithLabels(parts, val, nil) +} + +func (p *PrometheusSink) IncrCounterWithLabels(parts []string, val float32, labels []metrics.Label) { + p.mu.Lock() + defer p.mu.Unlock() + key, hash := p.flattenKey(parts, labels) + g, ok := p.counters[hash] + if !ok { + g = prometheus.NewCounter(prometheus.CounterOpts{ + Name: key, + Help: key, + ConstLabels: prometheusLabels(labels), + }) + p.counters[hash] = g + } + g.Add(float64(val)) + p.updates[hash] = time.Now() +} diff --git a/vendor/github.com/armon/go-metrics/start.go b/vendor/github.com/armon/go-metrics/start.go index 46f0c2eb2..dd41861c9 100644 --- a/vendor/github.com/armon/go-metrics/start.go +++ b/vendor/github.com/armon/go-metrics/start.go @@ -11,7 +11,7 @@ import ( // Config is used to configure metrics settings type Config struct { - ServiceName string // Prefixed with keys to seperate services + ServiceName string // Prefixed with keys to separate services HostName string // Hostname to use. If not provided and EnableHostname, it will be os.Hostname EnableHostname bool // Enable prefixing gauge values with hostname EnableHostnameLabel bool // Enable adding hostname to labels diff --git a/vendor/github.com/aws/aws-sdk-go/LICENSE.txt b/vendor/github.com/aws/aws-sdk-go/LICENSE.txt new file mode 100644 index 000000000..d64569567 --- /dev/null +++ b/vendor/github.com/aws/aws-sdk-go/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/aws/aws-sdk-go/NOTICE.txt b/vendor/github.com/aws/aws-sdk-go/NOTICE.txt new file mode 100644 index 000000000..899129ecc --- /dev/null +++ b/vendor/github.com/aws/aws-sdk-go/NOTICE.txt @@ -0,0 +1,3 @@ +AWS SDK for Go +Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2014-2015 Stripe, Inc. diff --git a/vendor/github.com/beorn7/perks/LICENSE b/vendor/github.com/beorn7/perks/LICENSE new file mode 100644 index 000000000..339177be6 --- /dev/null +++ b/vendor/github.com/beorn7/perks/LICENSE @@ -0,0 +1,20 @@ +Copyright (C) 2013 Blake Mizerany + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/vendor/github.com/beorn7/perks/quantile/exampledata.txt b/vendor/github.com/beorn7/perks/quantile/exampledata.txt new file mode 100644 index 000000000..1602287d7 --- /dev/null +++ b/vendor/github.com/beorn7/perks/quantile/exampledata.txt @@ -0,0 +1,2388 @@ +8 +5 +26 +12 +5 +235 +13 +6 +28 +30 +3 +3 +3 +3 +5 +2 +33 +7 +2 +4 +7 +12 +14 +5 +8 +3 +10 +4 +5 +3 +6 +6 +209 +20 +3 +10 +14 +3 +4 +6 +8 +5 +11 +7 +3 +2 +3 +3 +212 +5 +222 +4 +10 +10 +5 +6 +3 +8 +3 +10 +254 +220 +2 +3 +5 +24 +5 +4 +222 +7 +3 +3 +223 +8 +15 +12 +14 +14 +3 +2 +2 +3 +13 +3 +11 +4 +4 +6 +5 +7 +13 +5 +3 +5 +2 +5 +3 +5 +2 +7 +15 +17 +14 +3 +6 +6 +3 +17 +5 +4 +7 +6 +4 +4 +8 +6 +8 +3 +9 +3 +6 +3 +4 +5 +3 +3 +660 +4 +6 +10 +3 +6 +3 +2 +5 +13 +2 +4 +4 +10 +4 +8 +4 +3 +7 +9 +9 +3 +10 +37 +3 +13 +4 +12 +3 +6 +10 +8 +5 +21 +2 +3 +8 +3 +2 +3 +3 +4 +12 +2 +4 +8 +8 +4 +3 +2 +20 +1 +6 +32 +2 +11 +6 +18 +3 +8 +11 +3 +212 +3 +4 +2 +6 +7 +12 +11 +3 +2 +16 +10 +6 +4 +6 +3 +2 +7 +3 +2 +2 +2 +2 +5 +6 +4 +3 +10 +3 +4 +6 +5 +3 +4 +4 +5 +6 +4 +3 +4 +4 +5 +7 +5 +5 +3 +2 +7 +2 +4 +12 +4 +5 +6 +2 +4 +4 +8 +4 +15 +13 +7 +16 +5 +3 +23 +5 +5 +7 +3 +2 +9 +8 +7 +5 +8 +11 +4 +10 +76 +4 +47 +4 +3 +2 +7 +4 +2 +3 +37 +10 +4 +2 +20 +5 +4 +4 +10 +10 +4 +3 +7 +23 +240 +7 +13 +5 +5 +3 +3 +2 +5 +4 +2 +8 +7 +19 +2 +23 +8 +7 +2 +5 +3 +8 +3 +8 +13 +5 +5 +5 +2 +3 +23 +4 +9 +8 +4 +3 +3 +5 +220 +2 +3 +4 +6 +14 +3 +53 +6 +2 +5 +18 +6 +3 +219 +6 +5 +2 +5 +3 +6 +5 +15 +4 +3 +17 +3 +2 +4 +7 +2 +3 +3 +4 +4 +3 +2 +664 +6 +3 +23 +5 +5 +16 +5 +8 +2 +4 +2 +24 +12 +3 +2 +3 +5 +8 +3 +5 +4 +3 +14 +3 +5 +8 +2 +3 +7 +9 +4 +2 +3 +6 +8 +4 +3 +4 +6 +5 +3 +3 +6 +3 +19 +4 +4 +6 +3 +6 +3 +5 +22 +5 +4 +4 +3 +8 +11 +4 +9 +7 +6 +13 +4 +4 +4 +6 +17 +9 +3 +3 +3 +4 +3 +221 +5 +11 +3 +4 +2 +12 +6 +3 +5 +7 +5 +7 +4 +9 +7 +14 +37 +19 +217 +16 +3 +5 +2 +2 +7 +19 +7 +6 +7 +4 +24 +5 +11 +4 +7 +7 +9 +13 +3 +4 +3 +6 +28 +4 +4 +5 +5 +2 +5 +6 +4 +4 +6 +10 +5 +4 +3 +2 +3 +3 +6 +5 +5 +4 +3 +2 +3 +7 +4 +6 +18 +16 +8 +16 +4 +5 +8 +6 +9 +13 +1545 +6 +215 +6 +5 +6 +3 +45 +31 +5 +2 +2 +4 +3 +3 +2 +5 +4 +3 +5 +7 +7 +4 +5 +8 +5 +4 +749 +2 +31 +9 +11 +2 +11 +5 +4 +4 +7 +9 +11 +4 +5 +4 +7 +3 +4 +6 +2 +15 +3 +4 +3 +4 +3 +5 +2 +13 +5 +5 +3 +3 +23 +4 +4 +5 +7 +4 +13 +2 +4 +3 +4 +2 +6 +2 +7 +3 +5 +5 +3 +29 +5 +4 +4 +3 +10 +2 +3 +79 +16 +6 +6 +7 +7 +3 +5 +5 +7 +4 +3 +7 +9 +5 +6 +5 +9 +6 +3 +6 +4 +17 +2 +10 +9 +3 +6 +2 +3 +21 +22 +5 +11 +4 +2 +17 +2 +224 +2 +14 +3 +4 +4 +2 +4 +4 +4 +4 +5 +3 +4 +4 +10 +2 +6 +3 +3 +5 +7 +2 +7 +5 +6 +3 +218 +2 +2 +5 +2 +6 +3 +5 +222 +14 +6 +33 +3 +2 +5 +3 +3 +3 +9 +5 +3 +3 +2 +7 +4 +3 +4 +3 +5 +6 +5 +26 +4 +13 +9 +7 +3 +221 +3 +3 +4 +4 +4 +4 +2 +18 +5 +3 +7 +9 +6 +8 +3 +10 +3 +11 +9 +5 +4 +17 +5 +5 +6 +6 +3 +2 +4 +12 +17 +6 +7 +218 +4 +2 +4 +10 +3 +5 +15 +3 +9 +4 +3 +3 +6 +29 +3 +3 +4 +5 +5 +3 +8 +5 +6 +6 +7 +5 +3 +5 +3 +29 +2 +31 +5 +15 +24 +16 +5 +207 +4 +3 +3 +2 +15 +4 +4 +13 +5 +5 +4 +6 +10 +2 +7 +8 +4 +6 +20 +5 +3 +4 +3 +12 +12 +5 +17 +7 +3 +3 +3 +6 +10 +3 +5 +25 +80 +4 +9 +3 +2 +11 +3 +3 +2 +3 +8 +7 +5 +5 +19 +5 +3 +3 +12 +11 +2 +6 +5 +5 +5 +3 +3 +3 +4 +209 +14 +3 +2 +5 +19 +4 +4 +3 +4 +14 +5 +6 +4 +13 +9 +7 +4 +7 +10 +2 +9 +5 +7 +2 +8 +4 +6 +5 +5 +222 +8 +7 +12 +5 +216 +3 +4 +4 +6 +3 +14 +8 +7 +13 +4 +3 +3 +3 +3 +17 +5 +4 +3 +33 +6 +6 +33 +7 +5 +3 +8 +7 +5 +2 +9 +4 +2 +233 +24 +7 +4 +8 +10 +3 +4 +15 +2 +16 +3 +3 +13 +12 +7 +5 +4 +207 +4 +2 +4 +27 +15 +2 +5 +2 +25 +6 +5 +5 +6 +13 +6 +18 +6 +4 +12 +225 +10 +7 +5 +2 +2 +11 +4 +14 +21 +8 +10 +3 +5 +4 +232 +2 +5 +5 +3 +7 +17 +11 +6 +6 +23 +4 +6 +3 +5 +4 +2 +17 +3 +6 +5 +8 +3 +2 +2 +14 +9 +4 +4 +2 +5 +5 +3 +7 +6 +12 +6 +10 +3 +6 +2 +2 +19 +5 +4 +4 +9 +2 +4 +13 +3 +5 +6 +3 +6 +5 +4 +9 +6 +3 +5 +7 +3 +6 +6 +4 +3 +10 +6 +3 +221 +3 +5 +3 +6 +4 +8 +5 +3 +6 +4 +4 +2 +54 +5 +6 +11 +3 +3 +4 +4 +4 +3 +7 +3 +11 +11 +7 +10 +6 +13 +223 +213 +15 +231 +7 +3 +7 +228 +2 +3 +4 +4 +5 +6 +7 +4 +13 +3 +4 +5 +3 +6 +4 +6 +7 +2 +4 +3 +4 +3 +3 +6 +3 +7 +3 +5 +18 +5 +6 +8 +10 +3 +3 +3 +2 +4 +2 +4 +4 +5 +6 +6 +4 +10 +13 +3 +12 +5 +12 +16 +8 +4 +19 +11 +2 +4 +5 +6 +8 +5 +6 +4 +18 +10 +4 +2 +216 +6 +6 +6 +2 +4 +12 +8 +3 +11 +5 +6 +14 +5 +3 +13 +4 +5 +4 +5 +3 +28 +6 +3 +7 +219 +3 +9 +7 +3 +10 +6 +3 +4 +19 +5 +7 +11 +6 +15 +19 +4 +13 +11 +3 +7 +5 +10 +2 +8 +11 +2 +6 +4 +6 +24 +6 +3 +3 +3 +3 +6 +18 +4 +11 +4 +2 +5 +10 +8 +3 +9 +5 +3 +4 +5 +6 +2 +5 +7 +4 +4 +14 +6 +4 +4 +5 +5 +7 +2 +4 +3 +7 +3 +3 +6 +4 +5 +4 +4 +4 +3 +3 +3 +3 +8 +14 +2 +3 +5 +3 +2 +4 +5 +3 +7 +3 +3 +18 +3 +4 +4 +5 +7 +3 +3 +3 +13 +5 +4 +8 +211 +5 +5 +3 +5 +2 +5 +4 +2 +655 +6 +3 +5 +11 +2 +5 +3 +12 +9 +15 +11 +5 +12 +217 +2 +6 +17 +3 +3 +207 +5 +5 +4 +5 +9 +3 +2 +8 +5 +4 +3 +2 +5 +12 +4 +14 +5 +4 +2 +13 +5 +8 +4 +225 +4 +3 +4 +5 +4 +3 +3 +6 +23 +9 +2 +6 +7 +233 +4 +4 +6 +18 +3 +4 +6 +3 +4 +4 +2 +3 +7 +4 +13 +227 +4 +3 +5 +4 +2 +12 +9 +17 +3 +7 +14 +6 +4 +5 +21 +4 +8 +9 +2 +9 +25 +16 +3 +6 +4 +7 +8 +5 +2 +3 +5 +4 +3 +3 +5 +3 +3 +3 +2 +3 +19 +2 +4 +3 +4 +2 +3 +4 +4 +2 +4 +3 +3 +3 +2 +6 +3 +17 +5 +6 +4 +3 +13 +5 +3 +3 +3 +4 +9 +4 +2 +14 +12 +4 +5 +24 +4 +3 +37 +12 +11 +21 +3 +4 +3 +13 +4 +2 +3 +15 +4 +11 +4 +4 +3 +8 +3 +4 +4 +12 +8 +5 +3 +3 +4 +2 +220 +3 +5 +223 +3 +3 +3 +10 +3 +15 +4 +241 +9 +7 +3 +6 +6 +23 +4 +13 +7 +3 +4 +7 +4 +9 +3 +3 +4 +10 +5 +5 +1 +5 +24 +2 +4 +5 +5 +6 +14 +3 +8 +2 +3 +5 +13 +13 +3 +5 +2 +3 +15 +3 +4 +2 +10 +4 +4 +4 +5 +5 +3 +5 +3 +4 +7 +4 +27 +3 +6 +4 +15 +3 +5 +6 +6 +5 +4 +8 +3 +9 +2 +6 +3 +4 +3 +7 +4 +18 +3 +11 +3 +3 +8 +9 +7 +24 +3 +219 +7 +10 +4 +5 +9 +12 +2 +5 +4 +4 +4 +3 +3 +19 +5 +8 +16 +8 +6 +22 +3 +23 +3 +242 +9 +4 +3 +3 +5 +7 +3 +3 +5 +8 +3 +7 +5 +14 +8 +10 +3 +4 +3 +7 +4 +6 +7 +4 +10 +4 +3 +11 +3 +7 +10 +3 +13 +6 +8 +12 +10 +5 +7 +9 +3 +4 +7 +7 +10 +8 +30 +9 +19 +4 +3 +19 +15 +4 +13 +3 +215 +223 +4 +7 +4 +8 +17 +16 +3 +7 +6 +5 +5 +4 +12 +3 +7 +4 +4 +13 +4 +5 +2 +5 +6 +5 +6 +6 +7 +10 +18 +23 +9 +3 +3 +6 +5 +2 +4 +2 +7 +3 +3 +2 +5 +5 +14 +10 +224 +6 +3 +4 +3 +7 +5 +9 +3 +6 +4 +2 +5 +11 +4 +3 +3 +2 +8 +4 +7 +4 +10 +7 +3 +3 +18 +18 +17 +3 +3 +3 +4 +5 +3 +3 +4 +12 +7 +3 +11 +13 +5 +4 +7 +13 +5 +4 +11 +3 +12 +3 +6 +4 +4 +21 +4 +6 +9 +5 +3 +10 +8 +4 +6 +4 +4 +6 +5 +4 +8 +6 +4 +6 +4 +4 +5 +9 +6 +3 +4 +2 +9 +3 +18 +2 +4 +3 +13 +3 +6 +6 +8 +7 +9 +3 +2 +16 +3 +4 +6 +3 +2 +33 +22 +14 +4 +9 +12 +4 +5 +6 +3 +23 +9 +4 +3 +5 +5 +3 +4 +5 +3 +5 +3 +10 +4 +5 +5 +8 +4 +4 +6 +8 +5 +4 +3 +4 +6 +3 +3 +3 +5 +9 +12 +6 +5 +9 +3 +5 +3 +2 +2 +2 +18 +3 +2 +21 +2 +5 +4 +6 +4 +5 +10 +3 +9 +3 +2 +10 +7 +3 +6 +6 +4 +4 +8 +12 +7 +3 +7 +3 +3 +9 +3 +4 +5 +4 +4 +5 +5 +10 +15 +4 +4 +14 +6 +227 +3 +14 +5 +216 +22 +5 +4 +2 +2 +6 +3 +4 +2 +9 +9 +4 +3 +28 +13 +11 +4 +5 +3 +3 +2 +3 +3 +5 +3 +4 +3 +5 +23 +26 +3 +4 +5 +6 +4 +6 +3 +5 +5 +3 +4 +3 +2 +2 +2 +7 +14 +3 +6 +7 +17 +2 +2 +15 +14 +16 +4 +6 +7 +13 +6 +4 +5 +6 +16 +3 +3 +28 +3 +6 +15 +3 +9 +2 +4 +6 +3 +3 +22 +4 +12 +6 +7 +2 +5 +4 +10 +3 +16 +6 +9 +2 +5 +12 +7 +5 +5 +5 +5 +2 +11 +9 +17 +4 +3 +11 +7 +3 +5 +15 +4 +3 +4 +211 +8 +7 +5 +4 +7 +6 +7 +6 +3 +6 +5 +6 +5 +3 +4 +4 +26 +4 +6 +10 +4 +4 +3 +2 +3 +3 +4 +5 +9 +3 +9 +4 +4 +5 +5 +8 +2 +4 +2 +3 +8 +4 +11 +19 +5 +8 +6 +3 +5 +6 +12 +3 +2 +4 +16 +12 +3 +4 +4 +8 +6 +5 +6 +6 +219 +8 +222 +6 +16 +3 +13 +19 +5 +4 +3 +11 +6 +10 +4 +7 +7 +12 +5 +3 +3 +5 +6 +10 +3 +8 +2 +5 +4 +7 +2 +4 +4 +2 +12 +9 +6 +4 +2 +40 +2 +4 +10 +4 +223 +4 +2 +20 +6 +7 +24 +5 +4 +5 +2 +20 +16 +6 +5 +13 +2 +3 +3 +19 +3 +2 +4 +5 +6 +7 +11 +12 +5 +6 +7 +7 +3 +5 +3 +5 +3 +14 +3 +4 +4 +2 +11 +1 +7 +3 +9 +6 +11 +12 +5 +8 +6 +221 +4 +2 +12 +4 +3 +15 +4 +5 +226 +7 +218 +7 +5 +4 +5 +18 +4 +5 +9 +4 +4 +2 +9 +18 +18 +9 +5 +6 +6 +3 +3 +7 +3 +5 +4 +4 +4 +12 +3 +6 +31 +5 +4 +7 +3 +6 +5 +6 +5 +11 +2 +2 +11 +11 +6 +7 +5 +8 +7 +10 +5 +23 +7 +4 +3 +5 +34 +2 +5 +23 +7 +3 +6 +8 +4 +4 +4 +2 +5 +3 +8 +5 +4 +8 +25 +2 +3 +17 +8 +3 +4 +8 +7 +3 +15 +6 +5 +7 +21 +9 +5 +6 +6 +5 +3 +2 +3 +10 +3 +6 +3 +14 +7 +4 +4 +8 +7 +8 +2 +6 +12 +4 +213 +6 +5 +21 +8 +2 +5 +23 +3 +11 +2 +3 +6 +25 +2 +3 +6 +7 +6 +6 +4 +4 +6 +3 +17 +9 +7 +6 +4 +3 +10 +7 +2 +3 +3 +3 +11 +8 +3 +7 +6 +4 +14 +36 +3 +4 +3 +3 +22 +13 +21 +4 +2 +7 +4 +4 +17 +15 +3 +7 +11 +2 +4 +7 +6 +209 +6 +3 +2 +2 +24 +4 +9 +4 +3 +3 +3 +29 +2 +2 +4 +3 +3 +5 +4 +6 +3 +3 +2 +4 diff --git a/vendor/github.com/beorn7/perks/quantile/stream.go b/vendor/github.com/beorn7/perks/quantile/stream.go new file mode 100644 index 000000000..d7d14f8eb --- /dev/null +++ b/vendor/github.com/beorn7/perks/quantile/stream.go @@ -0,0 +1,316 @@ +// Package quantile computes approximate quantiles over an unbounded data +// stream within low memory and CPU bounds. +// +// A small amount of accuracy is traded to achieve the above properties. +// +// Multiple streams can be merged before calling Query to generate a single set +// of results. This is meaningful when the streams represent the same type of +// data. See Merge and Samples. +// +// For more detailed information about the algorithm used, see: +// +// Effective Computation of Biased Quantiles over Data Streams +// +// http://www.cs.rutgers.edu/~muthu/bquant.pdf +package quantile + +import ( + "math" + "sort" +) + +// Sample holds an observed value and meta information for compression. JSON +// tags have been added for convenience. +type Sample struct { + Value float64 `json:",string"` + Width float64 `json:",string"` + Delta float64 `json:",string"` +} + +// Samples represents a slice of samples. It implements sort.Interface. +type Samples []Sample + +func (a Samples) Len() int { return len(a) } +func (a Samples) Less(i, j int) bool { return a[i].Value < a[j].Value } +func (a Samples) Swap(i, j int) { a[i], a[j] = a[j], a[i] } + +type invariant func(s *stream, r float64) float64 + +// NewLowBiased returns an initialized Stream for low-biased quantiles +// (e.g. 0.01, 0.1, 0.5) where the needed quantiles are not known a priori, but +// error guarantees can still be given even for the lower ranks of the data +// distribution. +// +// The provided epsilon is a relative error, i.e. the true quantile of a value +// returned by a query is guaranteed to be within (1±Epsilon)*Quantile. +// +// See http://www.cs.rutgers.edu/~muthu/bquant.pdf for time, space, and error +// properties. +func NewLowBiased(epsilon float64) *Stream { + ƒ := func(s *stream, r float64) float64 { + return 2 * epsilon * r + } + return newStream(ƒ) +} + +// NewHighBiased returns an initialized Stream for high-biased quantiles +// (e.g. 0.01, 0.1, 0.5) where the needed quantiles are not known a priori, but +// error guarantees can still be given even for the higher ranks of the data +// distribution. +// +// The provided epsilon is a relative error, i.e. the true quantile of a value +// returned by a query is guaranteed to be within 1-(1±Epsilon)*(1-Quantile). +// +// See http://www.cs.rutgers.edu/~muthu/bquant.pdf for time, space, and error +// properties. +func NewHighBiased(epsilon float64) *Stream { + ƒ := func(s *stream, r float64) float64 { + return 2 * epsilon * (s.n - r) + } + return newStream(ƒ) +} + +// NewTargeted returns an initialized Stream concerned with a particular set of +// quantile values that are supplied a priori. Knowing these a priori reduces +// space and computation time. The targets map maps the desired quantiles to +// their absolute errors, i.e. the true quantile of a value returned by a query +// is guaranteed to be within (Quantile±Epsilon). +// +// See http://www.cs.rutgers.edu/~muthu/bquant.pdf for time, space, and error properties. +func NewTargeted(targetMap map[float64]float64) *Stream { + // Convert map to slice to avoid slow iterations on a map. + // ƒ is called on the hot path, so converting the map to a slice + // beforehand results in significant CPU savings. + targets := targetMapToSlice(targetMap) + + ƒ := func(s *stream, r float64) float64 { + var m = math.MaxFloat64 + var f float64 + for _, t := range targets { + if t.quantile*s.n <= r { + f = (2 * t.epsilon * r) / t.quantile + } else { + f = (2 * t.epsilon * (s.n - r)) / (1 - t.quantile) + } + if f < m { + m = f + } + } + return m + } + return newStream(ƒ) +} + +type target struct { + quantile float64 + epsilon float64 +} + +func targetMapToSlice(targetMap map[float64]float64) []target { + targets := make([]target, 0, len(targetMap)) + + for quantile, epsilon := range targetMap { + t := target{ + quantile: quantile, + epsilon: epsilon, + } + targets = append(targets, t) + } + + return targets +} + +// Stream computes quantiles for a stream of float64s. It is not thread-safe by +// design. Take care when using across multiple goroutines. +type Stream struct { + *stream + b Samples + sorted bool +} + +func newStream(ƒ invariant) *Stream { + x := &stream{ƒ: ƒ} + return &Stream{x, make(Samples, 0, 500), true} +} + +// Insert inserts v into the stream. +func (s *Stream) Insert(v float64) { + s.insert(Sample{Value: v, Width: 1}) +} + +func (s *Stream) insert(sample Sample) { + s.b = append(s.b, sample) + s.sorted = false + if len(s.b) == cap(s.b) { + s.flush() + } +} + +// Query returns the computed qth percentiles value. If s was created with +// NewTargeted, and q is not in the set of quantiles provided a priori, Query +// will return an unspecified result. +func (s *Stream) Query(q float64) float64 { + if !s.flushed() { + // Fast path when there hasn't been enough data for a flush; + // this also yields better accuracy for small sets of data. + l := len(s.b) + if l == 0 { + return 0 + } + i := int(math.Ceil(float64(l) * q)) + if i > 0 { + i -= 1 + } + s.maybeSort() + return s.b[i].Value + } + s.flush() + return s.stream.query(q) +} + +// Merge merges samples into the underlying streams samples. This is handy when +// merging multiple streams from separate threads, database shards, etc. +// +// ATTENTION: This method is broken and does not yield correct results. The +// underlying algorithm is not capable of merging streams correctly. +func (s *Stream) Merge(samples Samples) { + sort.Sort(samples) + s.stream.merge(samples) +} + +// Reset reinitializes and clears the list reusing the samples buffer memory. +func (s *Stream) Reset() { + s.stream.reset() + s.b = s.b[:0] +} + +// Samples returns stream samples held by s. +func (s *Stream) Samples() Samples { + if !s.flushed() { + return s.b + } + s.flush() + return s.stream.samples() +} + +// Count returns the total number of samples observed in the stream +// since initialization. +func (s *Stream) Count() int { + return len(s.b) + s.stream.count() +} + +func (s *Stream) flush() { + s.maybeSort() + s.stream.merge(s.b) + s.b = s.b[:0] +} + +func (s *Stream) maybeSort() { + if !s.sorted { + s.sorted = true + sort.Sort(s.b) + } +} + +func (s *Stream) flushed() bool { + return len(s.stream.l) > 0 +} + +type stream struct { + n float64 + l []Sample + ƒ invariant +} + +func (s *stream) reset() { + s.l = s.l[:0] + s.n = 0 +} + +func (s *stream) insert(v float64) { + s.merge(Samples{{v, 1, 0}}) +} + +func (s *stream) merge(samples Samples) { + // TODO(beorn7): This tries to merge not only individual samples, but + // whole summaries. The paper doesn't mention merging summaries at + // all. Unittests show that the merging is inaccurate. Find out how to + // do merges properly. + var r float64 + i := 0 + for _, sample := range samples { + for ; i < len(s.l); i++ { + c := s.l[i] + if c.Value > sample.Value { + // Insert at position i. + s.l = append(s.l, Sample{}) + copy(s.l[i+1:], s.l[i:]) + s.l[i] = Sample{ + sample.Value, + sample.Width, + math.Max(sample.Delta, math.Floor(s.ƒ(s, r))-1), + // TODO(beorn7): How to calculate delta correctly? + } + i++ + goto inserted + } + r += c.Width + } + s.l = append(s.l, Sample{sample.Value, sample.Width, 0}) + i++ + inserted: + s.n += sample.Width + r += sample.Width + } + s.compress() +} + +func (s *stream) count() int { + return int(s.n) +} + +func (s *stream) query(q float64) float64 { + t := math.Ceil(q * s.n) + t += math.Ceil(s.ƒ(s, t) / 2) + p := s.l[0] + var r float64 + for _, c := range s.l[1:] { + r += p.Width + if r+c.Width+c.Delta > t { + return p.Value + } + p = c + } + return p.Value +} + +func (s *stream) compress() { + if len(s.l) < 2 { + return + } + x := s.l[len(s.l)-1] + xi := len(s.l) - 1 + r := s.n - 1 - x.Width + + for i := len(s.l) - 2; i >= 0; i-- { + c := s.l[i] + if c.Width+x.Width+x.Delta <= s.ƒ(s, r) { + x.Width += c.Width + s.l[xi] = x + // Remove element at i. + copy(s.l[i:], s.l[i+1:]) + s.l = s.l[:len(s.l)-1] + xi -= 1 + } else { + x = c + xi = i + } + r -= c.Width + } +} + +func (s *stream) samples() Samples { + samples := make(Samples, len(s.l)) + copy(samples, s.l) + return samples +} diff --git a/vendor/github.com/coredns/coredns/LICENSE b/vendor/github.com/coredns/coredns/LICENSE new file mode 100644 index 000000000..8dada3eda --- /dev/null +++ b/vendor/github.com/coredns/coredns/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/cname.go b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/cname.go new file mode 100644 index 000000000..281e03218 --- /dev/null +++ b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/cname.go @@ -0,0 +1,15 @@ +package dnsutil + +import "github.com/miekg/dns" + +// DuplicateCNAME returns true if r already exists in records. +func DuplicateCNAME(r *dns.CNAME, records []dns.RR) bool { + for _, rec := range records { + if v, ok := rec.(*dns.CNAME); ok { + if v.Target == r.Target { + return true + } + } + } + return false +} diff --git a/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/dedup.go b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/dedup.go new file mode 100644 index 000000000..dae656a01 --- /dev/null +++ b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/dedup.go @@ -0,0 +1,12 @@ +package dnsutil + +import "github.com/miekg/dns" + +// Dedup de-duplicates a message. +func Dedup(m *dns.Msg) *dns.Msg { + // TODO(miek): expensive! + m.Answer = dns.Dedup(m.Answer, nil) + m.Ns = dns.Dedup(m.Ns, nil) + m.Extra = dns.Dedup(m.Extra, nil) + return m +} diff --git a/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/doc.go b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/doc.go new file mode 100644 index 000000000..75d1e8c7a --- /dev/null +++ b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/doc.go @@ -0,0 +1,2 @@ +// Package dnsutil contains DNS related helper functions. +package dnsutil diff --git a/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/host.go b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/host.go new file mode 100644 index 000000000..aaab586e8 --- /dev/null +++ b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/host.go @@ -0,0 +1,82 @@ +package dnsutil + +import ( + "fmt" + "net" + "os" + + "github.com/miekg/dns" +) + +// ParseHostPortOrFile parses the strings in s, each string can either be a address, +// address:port or a filename. The address part is checked and the filename case a +// resolv.conf like file is parsed and the nameserver found are returned. +func ParseHostPortOrFile(s ...string) ([]string, error) { + var servers []string + for _, host := range s { + addr, _, err := net.SplitHostPort(host) + if err != nil { + // Parse didn't work, it is not a addr:port combo + if net.ParseIP(host) == nil { + // Not an IP address. + ss, err := tryFile(host) + if err == nil { + servers = append(servers, ss...) + continue + } + return servers, fmt.Errorf("not an IP address or file: %q", host) + } + ss := net.JoinHostPort(host, "53") + servers = append(servers, ss) + continue + } + + if net.ParseIP(addr) == nil { + // No an IP address. + ss, err := tryFile(host) + if err == nil { + servers = append(servers, ss...) + continue + } + return servers, fmt.Errorf("not an IP address or file: %q", host) + } + servers = append(servers, host) + } + return servers, nil +} + +// Try to open this is a file first. +func tryFile(s string) ([]string, error) { + c, err := dns.ClientConfigFromFile(s) + if err == os.ErrNotExist { + return nil, fmt.Errorf("failed to open file %q: %q", s, err) + } else if err != nil { + return nil, err + } + + servers := []string{} + for _, s := range c.Servers { + servers = append(servers, net.JoinHostPort(s, c.Port)) + } + return servers, nil +} + +// ParseHostPort will check if the host part is a valid IP address, if the +// IP address is valid, but no port is found, defaultPort is added. +func ParseHostPort(s, defaultPort string) (string, error) { + addr, port, err := net.SplitHostPort(s) + if port == "" { + port = defaultPort + } + if err != nil { + if net.ParseIP(s) == nil { + return "", fmt.Errorf("must specify an IP address: `%s'", s) + } + return net.JoinHostPort(s, port), nil + } + + if net.ParseIP(addr) == nil { + return "", fmt.Errorf("must specify an IP address: `%s'", addr) + } + return net.JoinHostPort(addr, port), nil +} diff --git a/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/join.go b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/join.go new file mode 100644 index 000000000..515bf3dad --- /dev/null +++ b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/join.go @@ -0,0 +1,19 @@ +package dnsutil + +import ( + "strings" + + "github.com/miekg/dns" +) + +// Join joins labels to form a fully qualified domain name. If the last label is +// the root label it is ignored. Not other syntax checks are performed. +func Join(labels []string) string { + ll := len(labels) + if labels[ll-1] == "." { + s := strings.Join(labels[:ll-1], ".") + return dns.Fqdn(s) + } + s := strings.Join(labels, ".") + return dns.Fqdn(s) +} diff --git a/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/reverse.go b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/reverse.go new file mode 100644 index 000000000..7bfd23539 --- /dev/null +++ b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/reverse.go @@ -0,0 +1,81 @@ +package dnsutil + +import ( + "net" + "strings" +) + +// ExtractAddressFromReverse turns a standard PTR reverse record name +// into an IP address. This works for ipv4 or ipv6. +// +// 54.119.58.176.in-addr.arpa. becomes 176.58.119.54. If the conversion +// fails the empty string is returned. +func ExtractAddressFromReverse(reverseName string) string { + search := "" + + f := reverse + + switch { + case strings.HasSuffix(reverseName, IP4arpa): + search = strings.TrimSuffix(reverseName, IP4arpa) + case strings.HasSuffix(reverseName, IP6arpa): + search = strings.TrimSuffix(reverseName, IP6arpa) + f = reverse6 + default: + return "" + } + + // Reverse the segments and then combine them. + return f(strings.Split(search, ".")) +} + +// IsReverse returns 0 is name is not in a reverse zone. Anything > 0 indicates +// name is in a reverse zone. The returned integer will be 1 for in-addr.arpa. (IPv4) +// and 2 for ip6.arpa. (IPv6). +func IsReverse(name string) int { + if strings.HasSuffix(name, IP4arpa) { + return 1 + } + if strings.HasSuffix(name, IP6arpa) { + return 2 + } + return 0 +} + +func reverse(slice []string) string { + for i := 0; i < len(slice)/2; i++ { + j := len(slice) - i - 1 + slice[i], slice[j] = slice[j], slice[i] + } + ip := net.ParseIP(strings.Join(slice, ".")).To4() + if ip == nil { + return "" + } + return ip.String() +} + +// reverse6 reverse the segments and combine them according to RFC3596: +// b.a.9.8.7.6.5.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.b.d.0.1.0.0.2 +// is reversed to 2001:db8::567:89ab +func reverse6(slice []string) string { + for i := 0; i < len(slice)/2; i++ { + j := len(slice) - i - 1 + slice[i], slice[j] = slice[j], slice[i] + } + slice6 := []string{} + for i := 0; i < len(slice)/4; i++ { + slice6 = append(slice6, strings.Join(slice[i*4:i*4+4], "")) + } + ip := net.ParseIP(strings.Join(slice6, ":")).To16() + if ip == nil { + return "" + } + return ip.String() +} + +const ( + // IP4arpa is the reverse tree suffix for v4 IP addresses. + IP4arpa = ".in-addr.arpa." + // IP6arpa is the reverse tree suffix for v6 IP addresses. + IP6arpa = ".ip6.arpa." +) diff --git a/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/zone.go b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/zone.go new file mode 100644 index 000000000..579fef1ba --- /dev/null +++ b/vendor/github.com/coredns/coredns/plugin/pkg/dnsutil/zone.go @@ -0,0 +1,20 @@ +package dnsutil + +import ( + "errors" + + "github.com/miekg/dns" +) + +// TrimZone removes the zone component from q. It returns the trimmed +// name or an error is zone is longer then qname. The trimmed name will be returned +// without a trailing dot. +func TrimZone(q string, z string) (string, error) { + zl := dns.CountLabel(z) + i, ok := dns.PrevLabel(q, zl) + if ok || i-1 < 0 { + return "", errors.New("trimzone: overshot qname: " + q + "for zone " + z) + } + // This includes the '.', remove on return + return q[:i-1], nil +} diff --git a/vendor/github.com/denverdino/aliyungo/LICENSE.txt b/vendor/github.com/denverdino/aliyungo/LICENSE.txt new file mode 100644 index 000000000..918297133 --- /dev/null +++ b/vendor/github.com/denverdino/aliyungo/LICENSE.txt @@ -0,0 +1,191 @@ + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright 2015-2015 Li Yi (denverdino@gmail.com). + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/digitalocean/godo/LICENSE.txt b/vendor/github.com/digitalocean/godo/LICENSE.txt new file mode 100644 index 000000000..47f978eac --- /dev/null +++ b/vendor/github.com/digitalocean/godo/LICENSE.txt @@ -0,0 +1,54 @@ +Copyright (c) 2014-2016 The godo AUTHORS. All rights reserved. + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +====================== +Portions of the client are based on code at: +https://github.com/google/go-github/ + +Copyright (c) 2013 The go-github AUTHORS. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/github.com/google/go-querystring/LICENSE b/vendor/github.com/google/go-querystring/LICENSE new file mode 100644 index 000000000..ae121a1e4 --- /dev/null +++ b/vendor/github.com/google/go-querystring/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2013 Google. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/github.com/gophercloud/gophercloud/LICENSE b/vendor/github.com/gophercloud/gophercloud/LICENSE new file mode 100644 index 000000000..5e86b007c --- /dev/null +++ b/vendor/github.com/gophercloud/gophercloud/LICENSE @@ -0,0 +1,189 @@ +Copyright 2012-2013 Rackspace, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use +this file except in compliance with the License. You may obtain a copy of the +License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for the +specific language governing permissions and limitations under the License. + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/vendor/github.com/hashicorp/go-discover/README.md b/vendor/github.com/hashicorp/go-discover/README.md index fb398fc34..5023f75fb 100644 --- a/vendor/github.com/hashicorp/go-discover/README.md +++ b/vendor/github.com/hashicorp/go-discover/README.md @@ -12,7 +12,7 @@ Within a quoted string you can use the backslash to escape double quotes or the backslash itself, e.g. `key=val "some key"="some value"` Duplicate keys are reported as error and the provider is determined through the -`provider` key. +`provider` key. ### Supported Providers @@ -29,6 +29,11 @@ function. * Openstack [Config options](https://github.com/hashicorp/go-discover/blob/master/provider/os/os_discover.go#L23-L38) * Scaleway [Config options](https://github.com/hashicorp/go-discover/blob/master/provider/scaleway/scaleway_discover.go#L14-L22) * SoftLayer [Config options](https://github.com/hashicorp/go-discover/blob/master/provider/softlayer/softlayer_discover.go#L16-L25) + * Triton [Config options](https://github.com/hashicorp/go-discover/blob/master/provider/triton/triton_discover.go#L17-L27) + +HashiCorp maintains acceptance tests that regularly allocate and run tests with +real resources to verify the behavior of several of these providers. Those +currently are: Amazon AWS, Microsoft Azure, Google Cloud, DigitalOcean, and Triton. ### Config Example @@ -57,6 +62,9 @@ provider=scaleway organization=my-org tag_name=consul-server token=... region=.. # SoftLayer provider=softlayer datacenter=dal06 tag_value=consul username=... api_key=... +# Triton +provider=triton account=testaccount url=https://us-sw-1.api.joyentcloud.com key_id=... tag_key=consul-role tag_value=server + ``` ## Command Line Tool Usage @@ -107,4 +115,141 @@ For complete API documentation, see [GoDoc](https://godoc.org/github.com/hashicorp/go-discover). The configuration for the supported providers is documented in the [providers](https://godoc.org/github.com/hashicorp/go-discover/provider) -sub-package. \ No newline at end of file +sub-package. + +## Testing + +Configuration tests can be run with Go: + +``` +$ go test ./... +``` + +By default tests that communicate with providers do not run unless credentials +are set for that provider. To run provider tests you must set the necessary +environment variables. + +**Note: This will make real API calls to the account provided by the credentials.** + +``` +$ AWS_ACCESS_KEY_ID=... AWS_ACCESS_KEY_SECRET=... AWS_REGION=... go test -v ./provider/aws +``` + +This requires resources to exist that match those specified in tests +(eg instance tags in the case of AWS). To create these resources, +there are sets of [Terraform](https://www.terraform.io) configuration +in the `test/tf` directory for supported providers. + +You must use the same account and access credentials above. The same +environment variables should be applicable and read by Terraform. + +``` +$ cd test/tf/aws +$ export AWS_ACCESS_KEY_ID=... AWS_ACCESS_KEY_SECRET=... AWS_REGION=... +$ terraform init +... +$ terraform apply +... +``` + +After Terraform successfully runs, you should be able to successfully +run the tests, assuming you have exported credentials into +your environment: + +``` +$ go test -v ./provider/aws +``` + +To destroy the resources you need to use Terraform again: + +``` +$ cd test/tf/aws +$ terraform destroy +... +``` + +**Note: There should be no requirements to create and test these resources other +than credentials and Terraform. This is to ensure tests can run in development +and CI environments consistently across all providers.** + +## Retrieving Test Credentials + +Below are instructions for retrieving credentials in order to run +tests for some of the providers. + +
    + Google Cloud + +1. Go to https://console.cloud.google.com/ +1. IAM & Admin / Settings: + * Create Project, e.g. `discover` + * Write down the `Project ID`, e.g. `discover-xxx` +1. Billing: Ensure that the project is linked to a billing account +1. API Manager / Dashboard: Enable the following APIs + * Google Compute Engine API +1. IAM & Admin / Service Accounts: Create Service Account + * Service account name: `admin` + * Roles: + * `Project/Service Account Actor` + * `Compute Engine/Compute Instance Admin (v1)` + * `Compute Engine/Compute Security Admin` + * Furnish a new private key: `yes` + * Key type: `JSON` +1. The credentials file `discover-xxx.json` will have been downloaded + automatically to your machine +1. Source the contents of the credentials file into the `GOOGLE_CREDENTIALS` + environment variable + +
    + +
    + Azure +See also the [Terraform provider documentation](https://www.terraform.io/docs/providers/azurerm/index.html#creating-credentials). + +```shell +# Install Azure CLI (https://github.com/Azure/azure-cli) +curl -L https://aka.ms/InstallAzureCli | bash + +# 1. Login +$ az login + +# 2. Get SubscriptionID +$ az account list +[ + { + "cloudName": "AzureCloud", + "id": "subscription_id", + "isDefault": true, + "name": "Gratis versie", + "state": "Enabled", + "tenantId": "tenant_id", + "user": { + "name": "user@email.com", + "type": "user" + } + } +] + +# 3. Switch to subscription +$ az account set --subscription="subscription_id" + +# 4. Create ClientID and Secret +$ az ad sp create-for-rbac --role="Contributor" --scopes="/subscriptions/subscription_id" +{ + "appId": "client_id", + "displayName": "azure-cli-2017-07-18-16-51-43", + "name": "http://azure-cli-2017-07-18-16-51-43", + "password": "client_secret", + "tenant": "tenant_id" +} + +# 5. Export the Credentials for the client +export ARM_CLIENT_ID=client_id +export ARM_CLIENT_SECRET=client_secret +export ARM_TENANT_ID=tenant_id +export ARM_SUBSCRIPTION_ID=subscription_id + +# 6. Test the credentials +$ az vm list-sizes --location 'West Europe' +``` +
    diff --git a/vendor/github.com/hashicorp/go-discover/discover.go b/vendor/github.com/hashicorp/go-discover/discover.go index 15ccb6a02..d00d20f20 100644 --- a/vendor/github.com/hashicorp/go-discover/discover.go +++ b/vendor/github.com/hashicorp/go-discover/discover.go @@ -17,6 +17,7 @@ import ( "github.com/hashicorp/go-discover/provider/os" "github.com/hashicorp/go-discover/provider/scaleway" "github.com/hashicorp/go-discover/provider/softlayer" + "github.com/hashicorp/go-discover/provider/triton" ) // Provider has lookup functions for meta data in a @@ -30,6 +31,13 @@ type Provider interface { Help() string } +// ProviderWithUserAgent is a provider that declares it's user agent. Not all +// providers support this. +type ProviderWithUserAgent interface { + // SetUserAgent sets the user agent on the provider to the provided string. + SetUserAgent(s string) +} + // Providers contains all available providers. var Providers = map[string]Provider{ "aliyun": &aliyun.Provider{}, @@ -40,6 +48,7 @@ var Providers = map[string]Provider{ "os": &os.Provider{}, "scaleway": &scaleway.Provider{}, "softlayer": &softlayer.Provider{}, + "triton": &triton.Provider{}, } // Discover looks up metadata in different cloud environments. @@ -48,10 +57,48 @@ type Discover struct { // If nil, the default list of providers is used. Providers map[string]Provider + // userAgent is the string to use for requests, when supported. + userAgent string + // once is used to initialize the actual list of providers. once sync.Once } +// Option is used as an initialization option/ +type Option func(*Discover) error + +// New creates a new discover client with the given options. +func New(opts ...Option) (*Discover, error) { + d := new(Discover) + + for _, opt := range opts { + if err := opt(d); err != nil { + return nil, err + } + } + + d.once.Do(d.initProviders) + + return d, nil +} + +// WithUserAgent allows specifying a custom user agent option to send with +// requests when the underlying client library supports it. +func WithUserAgent(agent string) Option { + return func(d *Discover) error { + d.userAgent = agent + return nil + } +} + +// WithProviders allows specifying your own set of providers. +func WithProviders(m map[string]Provider) Option { + return func(d *Discover) error { + d.Providers = m + return nil + } +} + // initProviders sets the list of providers to the // default list of providers if none are configured. func (d *Discover) initProviders() { @@ -120,5 +167,10 @@ func (d *Discover) Addrs(cfg string, l *log.Logger) ([]string, error) { } l.Printf("[DEBUG] discover: Using provider %q", name) + if typ, ok := p.(ProviderWithUserAgent); ok { + typ.SetUserAgent(d.userAgent) + return p.Addrs(args, l) + } + return p.Addrs(args, l) } diff --git a/vendor/github.com/hashicorp/go-discover/provider/aliyun/aliyun_discover.go b/vendor/github.com/hashicorp/go-discover/provider/aliyun/aliyun_discover.go index 5cde80758..39d2be4cc 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/aliyun/aliyun_discover.go +++ b/vendor/github.com/hashicorp/go-discover/provider/aliyun/aliyun_discover.go @@ -10,7 +10,13 @@ import ( "github.com/denverdino/aliyungo/ecs" ) -type Provider struct{} +type Provider struct { + userAgent string +} + +func (p *Provider) SetUserAgent(s string) { + p.userAgent = s +} func (p *Provider) Help() string { return `Aliyun(Alibaba Cloud): @@ -57,6 +63,10 @@ func (p *Provider) Addrs(args map[string]string, l *log.Logger) ([]string, error svc := ecs.NewClient(accessKeyID, accessKeySecret) + if p.userAgent != "" { + svc.SetUserAgent(p.userAgent) + } + l.Printf("[INFO] discover-aliyun: Filter instances with %s=%s", tagKey, tagValue) resp, err := svc.DescribeInstancesWithRaw(&ecs.DescribeInstancesArgs{ RegionId: common.Region(region), diff --git a/vendor/github.com/hashicorp/go-discover/provider/aws/aws_discover.go b/vendor/github.com/hashicorp/go-discover/provider/aws/aws_discover.go index c6c469e92..d8ac55fbe 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/aws/aws_discover.go +++ b/vendor/github.com/hashicorp/go-discover/provider/aws/aws_discover.go @@ -27,8 +27,9 @@ func (p *Provider) Help() string { access_key_id: The AWS access key to use secret_access_key: The AWS secret access key to use - The only required IAM permission is 'ec2:DescribeInstances'. It is - recommended you make a dedicated key used only for auto-joining. + The only required IAM permission is 'ec2:DescribeInstances'. If the Consul agent is + running on AWS instance it is recommended you use an IAM role, otherwise it is + recommended you make a dedicated IAM user and access key used only for auto-joining. ` } diff --git a/vendor/github.com/hashicorp/go-discover/provider/aws/vendor/vendor.json b/vendor/github.com/hashicorp/go-discover/provider/aws/vendor/vendor.json index 56fd6bb65..04d1e3fe2 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/aws/vendor/vendor.json +++ b/vendor/github.com/hashicorp/go-discover/provider/aws/vendor/vendor.json @@ -2,33 +2,34 @@ "comment": "", "ignore": "test", "package": [ - {"checksumSHA1":"aJVyZtSrQjYG/HuVHOlthf7Ep7A=","path":"github.com/aws/aws-sdk-go/aws","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"Y9W+4GimK4Fuxq+vyIskVYFRnX4=","path":"github.com/aws/aws-sdk-go/aws/awserr","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"yyYr41HZ1Aq0hWc3J5ijXwYEcac=","path":"github.com/aws/aws-sdk-go/aws/awsutil","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"iThCyNRL/oQFD9CF2SYgBGl+aww=","path":"github.com/aws/aws-sdk-go/aws/client","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"ieAJ+Cvp/PKv1LpUEnUXpc3OI6E=","path":"github.com/aws/aws-sdk-go/aws/client/metadata","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"Fl8vRSCY0MbM04cmiz/0MID+goA=","path":"github.com/aws/aws-sdk-go/aws/corehandlers","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"zu5C95rmCZff6NYZb62lEaT5ibE=","path":"github.com/aws/aws-sdk-go/aws/credentials","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"u3GOAJLmdvbuNUeUEcZSEAOeL/0=","path":"github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"NUJUTWlc1sV8b7WjfiYc4JZbXl0=","path":"github.com/aws/aws-sdk-go/aws/credentials/endpointcreds","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"4Ipx+5xN0gso+cENC2MHMWmQlR4=","path":"github.com/aws/aws-sdk-go/aws/credentials/stscreds","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"lqh3fG7wCochvB4iHAZJuhhEJW0=","path":"github.com/aws/aws-sdk-go/aws/defaults","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"/EXbk/z2TWjWc1Hvb4QYs3Wmhb8=","path":"github.com/aws/aws-sdk-go/aws/ec2metadata","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"JTrzEDPXL3pUUH+dMCixz9T9rLY=","path":"github.com/aws/aws-sdk-go/aws/endpoints","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"M78rTxU55Qagqr3MYj91im2031E=","path":"github.com/aws/aws-sdk-go/aws/request","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"bYywgCKzqJQtFsL+XpuVRELYsgw=","path":"github.com/aws/aws-sdk-go/aws/session","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"0FvPLvkBUpTElfUc/FZtPsJfuV0=","path":"github.com/aws/aws-sdk-go/aws/signer/v4","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"wk7EyvDaHwb5qqoOP/4d3cV0708=","path":"github.com/aws/aws-sdk-go/private/protocol","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"1QmQ3FqV37w0Zi44qv8pA1GeR0A=","path":"github.com/aws/aws-sdk-go/private/protocol/ec2query","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"ZqY5RWavBLWTo6j9xqdyBEaNFRk=","path":"github.com/aws/aws-sdk-go/private/protocol/query","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"hqTEmgtchF9SwVTW0IQId2eLUKM=","path":"github.com/aws/aws-sdk-go/private/protocol/query/queryutil","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"szZSLm3BlYkL3vqlZhNAlYk8iwM=","path":"github.com/aws/aws-sdk-go/private/protocol/rest","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"lZ1z4xAbT8euCzKoAsnEYic60VE=","path":"github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"Eo9yODN5U99BK0pMzoqnBm7PCrY=","path":"github.com/aws/aws-sdk-go/private/waiter","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"MCyzbsgz1wWscxzKT9rOLxgTFJQ=","path":"github.com/aws/aws-sdk-go/service/ec2","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"Knj17ZMPWkGYTm2hZxEgnuboMM4=","path":"github.com/aws/aws-sdk-go/service/sts","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"cVyhKIRI2gQrgpn5qrBeAqErmWM=","path":"github.com/go-ini/ini","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"0ZrwvB6KoGPj2PoDNSEJwxQ6Mog=","path":"github.com/jmespath/go-jmespath","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"} + {"path":"github.com/Azure/azure-sdk-for-go/arm/network","revision":""}, + {"path":"github.com/aws/aws-sdk-go/aws","checksumSHA1":"aJVyZtSrQjYG/HuVHOlthf7Ep7A=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/awserr","checksumSHA1":"Y9W+4GimK4Fuxq+vyIskVYFRnX4=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/awsutil","checksumSHA1":"yyYr41HZ1Aq0hWc3J5ijXwYEcac=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/client","checksumSHA1":"iThCyNRL/oQFD9CF2SYgBGl+aww=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/client/metadata","checksumSHA1":"ieAJ+Cvp/PKv1LpUEnUXpc3OI6E=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/corehandlers","checksumSHA1":"Fl8vRSCY0MbM04cmiz/0MID+goA=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/credentials","checksumSHA1":"zu5C95rmCZff6NYZb62lEaT5ibE=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds","checksumSHA1":"u3GOAJLmdvbuNUeUEcZSEAOeL/0=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/credentials/endpointcreds","checksumSHA1":"NUJUTWlc1sV8b7WjfiYc4JZbXl0=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/credentials/stscreds","checksumSHA1":"4Ipx+5xN0gso+cENC2MHMWmQlR4=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/defaults","checksumSHA1":"lqh3fG7wCochvB4iHAZJuhhEJW0=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/ec2metadata","checksumSHA1":"/EXbk/z2TWjWc1Hvb4QYs3Wmhb8=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/endpoints","checksumSHA1":"JTrzEDPXL3pUUH+dMCixz9T9rLY=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/request","checksumSHA1":"M78rTxU55Qagqr3MYj91im2031E=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/session","checksumSHA1":"bYywgCKzqJQtFsL+XpuVRELYsgw=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/aws/signer/v4","checksumSHA1":"0FvPLvkBUpTElfUc/FZtPsJfuV0=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/private/protocol","checksumSHA1":"wk7EyvDaHwb5qqoOP/4d3cV0708=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/private/protocol/ec2query","checksumSHA1":"1QmQ3FqV37w0Zi44qv8pA1GeR0A=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/private/protocol/query","checksumSHA1":"ZqY5RWavBLWTo6j9xqdyBEaNFRk=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/private/protocol/query/queryutil","checksumSHA1":"hqTEmgtchF9SwVTW0IQId2eLUKM=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/private/protocol/rest","checksumSHA1":"szZSLm3BlYkL3vqlZhNAlYk8iwM=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil","checksumSHA1":"lZ1z4xAbT8euCzKoAsnEYic60VE=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/private/waiter","checksumSHA1":"Eo9yODN5U99BK0pMzoqnBm7PCrY=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/service/ec2","checksumSHA1":"MCyzbsgz1wWscxzKT9rOLxgTFJQ=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/aws/aws-sdk-go/service/sts","checksumSHA1":"Knj17ZMPWkGYTm2hZxEgnuboMM4=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/go-ini/ini","checksumSHA1":"cVyhKIRI2gQrgpn5qrBeAqErmWM=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, + {"path":"github.com/jmespath/go-jmespath","checksumSHA1":"0ZrwvB6KoGPj2PoDNSEJwxQ6Mog=","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"} ], - "rootPath": "github.com/hashicorp/go-discover/aws" -} \ No newline at end of file + "rootPath": "github.com/hashicorp/go-discover/provider/aws" +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/azure_discover.go b/vendor/github.com/hashicorp/go-discover/provider/azure/azure_discover.go index 0d2da4882..7c8b06242 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/azure_discover.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/azure_discover.go @@ -2,16 +2,24 @@ package azure import ( + "context" "fmt" "io/ioutil" "log" - "github.com/Azure/azure-sdk-for-go/arm/network" + "github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network" "github.com/Azure/go-autorest/autorest" + "github.com/Azure/go-autorest/autorest/adal" "github.com/Azure/go-autorest/autorest/azure" ) -type Provider struct{} +type Provider struct { + userAgent string +} + +func (p *Provider) SetUserAgent(s string) { + p.userAgent = s +} func (p *Provider) Help() string { return `Microsoft Azure: @@ -23,19 +31,19 @@ func (p *Provider) Help() string { secret_access_key: The authentication credential Use these configuration parameters when using tags: - + tag_name: The name of the tag to filter on tag_value: The value of the tag to filter on Use these configuration parameters when using Virtual Machine Scale Sets: - + resource_group: The name of the resource group to filter on vm_scale_set: The name of the virtual machine scale set to filter on When using tags the only permission needed is the 'ListAll' method for 'NetworkInterfaces'. When using Virtual Machine Scale Sets the only Role Action needed is 'Microsoft.Compute/virtualMachineScaleSets/*/read'. - + It is recommended you make a dedicated key used only for auto-joining. ` } @@ -63,22 +71,25 @@ func (p *Provider) Addrs(args map[string]string, l *log.Logger) ([]string, error vmScaleSet := args["vm_scale_set"] // Only works for the Azure PublicCLoud for now; no ability to test other Environment - oauthConfig, err := azure.PublicCloud.OAuthConfigForTenant(tenantID) + oauthConfig, err := adal.NewOAuthConfig(azure.PublicCloud.ActiveDirectoryEndpoint, tenantID) if err != nil { return nil, fmt.Errorf("discover-azure: %s", err) } // Get the ServicePrincipalToken for use searching the NetworkInterfaces - sbt, err := azure.NewServicePrincipalToken(*oauthConfig, clientID, secretKey, azure.PublicCloud.ResourceManagerEndpoint) + sbt, err := adal.NewServicePrincipalToken(*oauthConfig, clientID, secretKey, azure.PublicCloud.ResourceManagerEndpoint) if err != nil { return nil, fmt.Errorf("discover-azure: %s", err) } // Setup the client using autorest; followed the structure from Terraform vmnet := network.NewInterfacesClient(subscriptionID) - vmnet.Client.UserAgent = "Hashicorp-Consul" vmnet.Sender = autorest.CreateSender(autorest.WithLogging(l)) - vmnet.Authorizer = sbt + vmnet.Authorizer = autorest.NewBearerAuthorizer(sbt) + + if p.userAgent != "" { + vmnet.Client.UserAgent = p.userAgent + } if tagName != "" && tagValue != "" && resourceGroup == "" && vmScaleSet == "" { l.Printf("[DEBUG] discover-azure: using tag method. tag_name: %s, tag_value: %s", tagName, tagValue) @@ -97,24 +108,32 @@ func (p *Provider) Addrs(args map[string]string, l *log.Logger) ([]string, error func fetchAddrsWithTags(tagName string, tagValue string, vmnet network.InterfacesClient, l *log.Logger) ([]string, error) { // Get all network interfaces across resource groups // unless there is a compelling reason to restrict - netres, err := vmnet.ListAll() + + ctx := context.Background() + netres, err := vmnet.ListAll(ctx) + if err != nil { return nil, fmt.Errorf("discover-azure: %s", err) } - if netres.Value == nil { + if len(netres.Values()) == 0 { return nil, fmt.Errorf("discover-azure: no interfaces") } // Choose any PrivateIPAddress with the matching tag var addrs []string - for _, v := range *netres.Value { - id := *v.ID + for _, v := range netres.Values() { + var id string + if v.ID != nil { + id = *v.ID + } else { + id = "ip address id not found" + } if v.Tags == nil { l.Printf("[DEBUG] discover-azure: Interface %s has no tags", id) continue } - tv := (*v.Tags)[tagName] // *string + tv := v.Tags[tagName] // *string if tv == nil { l.Printf("[DEBUG] discover-azure: Interface %s did not have tag: %s", id, tagName) continue @@ -143,19 +162,25 @@ func fetchAddrsWithTags(tagName string, tagValue string, vmnet network.Interface func fetchAddrsWithVmScaleSet(resourceGroup string, vmScaleSet string, vmnet network.InterfacesClient, l *log.Logger) ([]string, error) { // Get all network interfaces for a specific virtual machine scale set - netres, err := vmnet.ListVirtualMachineScaleSetNetworkInterfaces(resourceGroup, vmScaleSet) + ctx := context.Background() + netres, err := vmnet.ListVirtualMachineScaleSetNetworkInterfaces(ctx, resourceGroup, vmScaleSet) if err != nil { return nil, fmt.Errorf("discover-azure: %s", err) } - if netres.Value == nil { + if len(netres.Values()) == 0 { return nil, fmt.Errorf("discover-azure: no interfaces") } // Get all of PrivateIPAddresses we can. var addrs []string - for _, v := range *netres.Value { - id := *v.ID + for _, v := range netres.Values() { + var id string + if v.ID != nil { + id = *v.ID + } else { + id = "ip address id not found" + } if v.IPConfigurations == nil { l.Printf("[DEBUG] discover-azure: Interface %s had no ip configuration", id) continue diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/NOTICE b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/NOTICE new file mode 100644 index 000000000..2d1d72608 --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/NOTICE @@ -0,0 +1,5 @@ +Microsoft Azure-SDK-for-Go +Copyright 2014-2017 Microsoft + +This product includes software developed at +the Microsoft Corporation (https://www.microsoft.com). diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/applicationgateways.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/applicationgateways.go deleted file mode 100644 index 4610ed52a..000000000 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/applicationgateways.go +++ /dev/null @@ -1,628 +0,0 @@ -package network - -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -import ( - "github.com/Azure/go-autorest/autorest" - "github.com/Azure/go-autorest/autorest/azure" - "github.com/Azure/go-autorest/autorest/validation" - "net/http" -) - -// ApplicationGatewaysClient is the the Microsoft Azure Network management API -// provides a RESTful set of web services that interact with Microsoft Azure -// Networks service to manage your network resources. The API has entities -// that capture the relationship between an end user and the Microsoft Azure -// Networks service. -type ApplicationGatewaysClient struct { - ManagementClient -} - -// NewApplicationGatewaysClient creates an instance of the -// ApplicationGatewaysClient client. -func NewApplicationGatewaysClient(subscriptionID string) ApplicationGatewaysClient { - return NewApplicationGatewaysClientWithBaseURI(DefaultBaseURI, subscriptionID) -} - -// NewApplicationGatewaysClientWithBaseURI creates an instance of the -// ApplicationGatewaysClient client. -func NewApplicationGatewaysClientWithBaseURI(baseURI string, subscriptionID string) ApplicationGatewaysClient { - return ApplicationGatewaysClient{NewWithBaseURI(baseURI, subscriptionID)} -} - -// BackendHealth gets the backend health of the specified application gateway -// in a resource group. This method may poll for completion. Polling can be -// canceled by passing the cancel channel argument. The channel will be used -// to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. applicationGatewayName -// is the name of the application gateway. expand is expands -// BackendAddressPool and BackendHttpSettings referenced in backend health. -func (client ApplicationGatewaysClient) BackendHealth(resourceGroupName string, applicationGatewayName string, expand string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.BackendHealthPreparer(resourceGroupName, applicationGatewayName, expand, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "BackendHealth", nil, "Failure preparing request") - } - - resp, err := client.BackendHealthSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "BackendHealth", resp, "Failure sending request") - } - - result, err = client.BackendHealthResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "BackendHealth", resp, "Failure responding to request") - } - - return -} - -// BackendHealthPreparer prepares the BackendHealth request. -func (client ApplicationGatewaysClient) BackendHealthPreparer(resourceGroupName string, applicationGatewayName string, expand string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "applicationGatewayName": autorest.Encode("path", applicationGatewayName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - if len(expand) > 0 { - queryParameters["$expand"] = autorest.Encode("query", expand) - } - - preparer := autorest.CreatePreparer( - autorest.AsPost(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/backendhealth", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// BackendHealthSender sends the BackendHealth request. The method will close the -// http.Response Body if it receives an error. -func (client ApplicationGatewaysClient) BackendHealthSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// BackendHealthResponder handles the response to the BackendHealth request. The method always -// closes the http.Response Body. -func (client ApplicationGatewaysClient) BackendHealthResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), - autorest.ByClosing()) - result.Response = resp - return -} - -// CreateOrUpdate creates or updates the specified application gateway. This -// method may poll for completion. Polling can be canceled by passing the -// cancel channel argument. The channel will be used to cancel polling and -// any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. applicationGatewayName -// is the name of the application gateway. parameters is parameters supplied -// to the create or update application gateway operation. -func (client ApplicationGatewaysClient) CreateOrUpdate(resourceGroupName string, applicationGatewayName string, parameters ApplicationGateway, cancel <-chan struct{}) (result autorest.Response, err error) { - if err := validation.Validate([]validation.Validation{ - {TargetValue: parameters, - Constraints: []validation.Constraint{{Target: "parameters.ApplicationGatewayPropertiesFormat", Name: validation.Null, Rule: false, - Chain: []validation.Constraint{{Target: "parameters.ApplicationGatewayPropertiesFormat.WebApplicationFirewallConfiguration", Name: validation.Null, Rule: false, - Chain: []validation.Constraint{{Target: "parameters.ApplicationGatewayPropertiesFormat.WebApplicationFirewallConfiguration.Enabled", Name: validation.Null, Rule: true, Chain: nil}}}, - }}}}}); err != nil { - return result, validation.NewErrorWithValidationError(err, "network.ApplicationGatewaysClient", "CreateOrUpdate") - } - - req, err := client.CreateOrUpdatePreparer(resourceGroupName, applicationGatewayName, parameters, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "CreateOrUpdate", nil, "Failure preparing request") - } - - resp, err := client.CreateOrUpdateSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "CreateOrUpdate", resp, "Failure responding to request") - } - - return -} - -// CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client ApplicationGatewaysClient) CreateOrUpdatePreparer(resourceGroupName string, applicationGatewayName string, parameters ApplicationGateway, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "applicationGatewayName": autorest.Encode("path", applicationGatewayName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsJSON(), - autorest.AsPut(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}", pathParameters), - autorest.WithJSON(parameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the -// http.Response Body if it receives an error. -func (client ApplicationGatewaysClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always -// closes the http.Response Body. -func (client ApplicationGatewaysClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusCreated, http.StatusOK), - autorest.ByClosing()) - result.Response = resp - return -} - -// Delete deletes the specified application gateway. This method may poll for -// completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. applicationGatewayName -// is the name of the application gateway. -func (client ApplicationGatewaysClient) Delete(resourceGroupName string, applicationGatewayName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, applicationGatewayName, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Delete", nil, "Failure preparing request") - } - - resp, err := client.DeleteSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Delete", resp, "Failure responding to request") - } - - return -} - -// DeletePreparer prepares the Delete request. -func (client ApplicationGatewaysClient) DeletePreparer(resourceGroupName string, applicationGatewayName string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "applicationGatewayName": autorest.Encode("path", applicationGatewayName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsDelete(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// DeleteSender sends the Delete request. The method will close the -// http.Response Body if it receives an error. -func (client ApplicationGatewaysClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// DeleteResponder handles the response to the Delete request. The method always -// closes the http.Response Body. -func (client ApplicationGatewaysClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusAccepted, http.StatusNoContent, http.StatusOK), - autorest.ByClosing()) - result.Response = resp - return -} - -// Get gets the specified application gateway. -// -// resourceGroupName is the name of the resource group. applicationGatewayName -// is the name of the application gateway. -func (client ApplicationGatewaysClient) Get(resourceGroupName string, applicationGatewayName string) (result ApplicationGateway, err error) { - req, err := client.GetPreparer(resourceGroupName, applicationGatewayName) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Get", nil, "Failure preparing request") - } - - resp, err := client.GetSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Get", resp, "Failure sending request") - } - - result, err = client.GetResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Get", resp, "Failure responding to request") - } - - return -} - -// GetPreparer prepares the Get request. -func (client ApplicationGatewaysClient) GetPreparer(resourceGroupName string, applicationGatewayName string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "applicationGatewayName": autorest.Encode("path", applicationGatewayName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// GetSender sends the Get request. The method will close the -// http.Response Body if it receives an error. -func (client ApplicationGatewaysClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// GetResponder handles the response to the Get request. The method always -// closes the http.Response Body. -func (client ApplicationGatewaysClient) GetResponder(resp *http.Response) (result ApplicationGateway, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// List lists all application gateways in a resource group. -// -// resourceGroupName is the name of the resource group. -func (client ApplicationGatewaysClient) List(resourceGroupName string) (result ApplicationGatewayListResult, err error) { - req, err := client.ListPreparer(resourceGroupName) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "List", nil, "Failure preparing request") - } - - resp, err := client.ListSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "List", resp, "Failure sending request") - } - - result, err = client.ListResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "List", resp, "Failure responding to request") - } - - return -} - -// ListPreparer prepares the List request. -func (client ApplicationGatewaysClient) ListPreparer(resourceGroupName string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// ListSender sends the List request. The method will close the -// http.Response Body if it receives an error. -func (client ApplicationGatewaysClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// ListResponder handles the response to the List request. The method always -// closes the http.Response Body. -func (client ApplicationGatewaysClient) ListResponder(resp *http.Response) (result ApplicationGatewayListResult, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// ListNextResults retrieves the next set of results, if any. -func (client ApplicationGatewaysClient) ListNextResults(lastResults ApplicationGatewayListResult) (result ApplicationGatewayListResult, err error) { - req, err := lastResults.ApplicationGatewayListResultPreparer() - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "List", nil, "Failure preparing next results request") - } - if req == nil { - return - } - - resp, err := client.ListSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "List", resp, "Failure sending next results request") - } - - result, err = client.ListResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "List", resp, "Failure responding to next results request") - } - - return -} - -// ListAll gets all the application gateways in a subscription. -func (client ApplicationGatewaysClient) ListAll() (result ApplicationGatewayListResult, err error) { - req, err := client.ListAllPreparer() - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "ListAll", nil, "Failure preparing request") - } - - resp, err := client.ListAllSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "ListAll", resp, "Failure sending request") - } - - result, err = client.ListAllResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "ListAll", resp, "Failure responding to request") - } - - return -} - -// ListAllPreparer prepares the ListAll request. -func (client ApplicationGatewaysClient) ListAllPreparer() (*http.Request, error) { - pathParameters := map[string]interface{}{ - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGateways", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// ListAllSender sends the ListAll request. The method will close the -// http.Response Body if it receives an error. -func (client ApplicationGatewaysClient) ListAllSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// ListAllResponder handles the response to the ListAll request. The method always -// closes the http.Response Body. -func (client ApplicationGatewaysClient) ListAllResponder(resp *http.Response) (result ApplicationGatewayListResult, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// ListAllNextResults retrieves the next set of results, if any. -func (client ApplicationGatewaysClient) ListAllNextResults(lastResults ApplicationGatewayListResult) (result ApplicationGatewayListResult, err error) { - req, err := lastResults.ApplicationGatewayListResultPreparer() - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "ListAll", nil, "Failure preparing next results request") - } - if req == nil { - return - } - - resp, err := client.ListAllSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "ListAll", resp, "Failure sending next results request") - } - - result, err = client.ListAllResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "ListAll", resp, "Failure responding to next results request") - } - - return -} - -// Start starts the specified application gateway. This method may poll for -// completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. applicationGatewayName -// is the name of the application gateway. -func (client ApplicationGatewaysClient) Start(resourceGroupName string, applicationGatewayName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.StartPreparer(resourceGroupName, applicationGatewayName, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Start", nil, "Failure preparing request") - } - - resp, err := client.StartSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Start", resp, "Failure sending request") - } - - result, err = client.StartResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Start", resp, "Failure responding to request") - } - - return -} - -// StartPreparer prepares the Start request. -func (client ApplicationGatewaysClient) StartPreparer(resourceGroupName string, applicationGatewayName string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "applicationGatewayName": autorest.Encode("path", applicationGatewayName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsPost(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/start", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// StartSender sends the Start request. The method will close the -// http.Response Body if it receives an error. -func (client ApplicationGatewaysClient) StartSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// StartResponder handles the response to the Start request. The method always -// closes the http.Response Body. -func (client ApplicationGatewaysClient) StartResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), - autorest.ByClosing()) - result.Response = resp - return -} - -// Stop stops the specified application gateway in a resource group. This -// method may poll for completion. Polling can be canceled by passing the -// cancel channel argument. The channel will be used to cancel polling and -// any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. applicationGatewayName -// is the name of the application gateway. -func (client ApplicationGatewaysClient) Stop(resourceGroupName string, applicationGatewayName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.StopPreparer(resourceGroupName, applicationGatewayName, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Stop", nil, "Failure preparing request") - } - - resp, err := client.StopSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Stop", resp, "Failure sending request") - } - - result, err = client.StopResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Stop", resp, "Failure responding to request") - } - - return -} - -// StopPreparer prepares the Stop request. -func (client ApplicationGatewaysClient) StopPreparer(resourceGroupName string, applicationGatewayName string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "applicationGatewayName": autorest.Encode("path", applicationGatewayName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsPost(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/stop", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// StopSender sends the Stop request. The method will close the -// http.Response Body if it receives an error. -func (client ApplicationGatewaysClient) StopSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// StopResponder handles the response to the Stop request. The method always -// closes the http.Response Body. -func (client ApplicationGatewaysClient) StopResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), - autorest.ByClosing()) - result.Response = resp - return -} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressroutecircuits.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressroutecircuits.go deleted file mode 100644 index 6572e92b6..000000000 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressroutecircuits.go +++ /dev/null @@ -1,755 +0,0 @@ -package network - -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -import ( - "github.com/Azure/go-autorest/autorest" - "github.com/Azure/go-autorest/autorest/azure" - "net/http" -) - -// ExpressRouteCircuitsClient is the the Microsoft Azure Network management -// API provides a RESTful set of web services that interact with Microsoft -// Azure Networks service to manage your network resources. The API has -// entities that capture the relationship between an end user and the -// Microsoft Azure Networks service. -type ExpressRouteCircuitsClient struct { - ManagementClient -} - -// NewExpressRouteCircuitsClient creates an instance of the -// ExpressRouteCircuitsClient client. -func NewExpressRouteCircuitsClient(subscriptionID string) ExpressRouteCircuitsClient { - return NewExpressRouteCircuitsClientWithBaseURI(DefaultBaseURI, subscriptionID) -} - -// NewExpressRouteCircuitsClientWithBaseURI creates an instance of the -// ExpressRouteCircuitsClient client. -func NewExpressRouteCircuitsClientWithBaseURI(baseURI string, subscriptionID string) ExpressRouteCircuitsClient { - return ExpressRouteCircuitsClient{NewWithBaseURI(baseURI, subscriptionID)} -} - -// CreateOrUpdate creates or updates an express route circuit. This method may -// poll for completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the circuit. parameters is parameters supplied to the create or -// update express route circuit operation. -func (client ExpressRouteCircuitsClient) CreateOrUpdate(resourceGroupName string, circuitName string, parameters ExpressRouteCircuit, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.CreateOrUpdatePreparer(resourceGroupName, circuitName, parameters, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "CreateOrUpdate", nil, "Failure preparing request") - } - - resp, err := client.CreateOrUpdateSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "CreateOrUpdate", resp, "Failure responding to request") - } - - return -} - -// CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client ExpressRouteCircuitsClient) CreateOrUpdatePreparer(resourceGroupName string, circuitName string, parameters ExpressRouteCircuit, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "circuitName": autorest.Encode("path", circuitName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsJSON(), - autorest.AsPut(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}", pathParameters), - autorest.WithJSON(parameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the -// http.Response Body if it receives an error. -func (client ExpressRouteCircuitsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always -// closes the http.Response Body. -func (client ExpressRouteCircuitsClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusCreated, http.StatusOK), - autorest.ByClosing()) - result.Response = resp - return -} - -// Delete deletes the specified express route circuit. This method may poll -// for completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. -func (client ExpressRouteCircuitsClient) Delete(resourceGroupName string, circuitName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, circuitName, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "Delete", nil, "Failure preparing request") - } - - resp, err := client.DeleteSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "Delete", resp, "Failure responding to request") - } - - return -} - -// DeletePreparer prepares the Delete request. -func (client ExpressRouteCircuitsClient) DeletePreparer(resourceGroupName string, circuitName string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "circuitName": autorest.Encode("path", circuitName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsDelete(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// DeleteSender sends the Delete request. The method will close the -// http.Response Body if it receives an error. -func (client ExpressRouteCircuitsClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// DeleteResponder handles the response to the Delete request. The method always -// closes the http.Response Body. -func (client ExpressRouteCircuitsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusNoContent, http.StatusAccepted, http.StatusOK), - autorest.ByClosing()) - result.Response = resp - return -} - -// Get gets information about the specified express route circuit. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of express route circuit. -func (client ExpressRouteCircuitsClient) Get(resourceGroupName string, circuitName string) (result ExpressRouteCircuit, err error) { - req, err := client.GetPreparer(resourceGroupName, circuitName) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "Get", nil, "Failure preparing request") - } - - resp, err := client.GetSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "Get", resp, "Failure sending request") - } - - result, err = client.GetResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "Get", resp, "Failure responding to request") - } - - return -} - -// GetPreparer prepares the Get request. -func (client ExpressRouteCircuitsClient) GetPreparer(resourceGroupName string, circuitName string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "circuitName": autorest.Encode("path", circuitName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// GetSender sends the Get request. The method will close the -// http.Response Body if it receives an error. -func (client ExpressRouteCircuitsClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// GetResponder handles the response to the Get request. The method always -// closes the http.Response Body. -func (client ExpressRouteCircuitsClient) GetResponder(resp *http.Response) (result ExpressRouteCircuit, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// GetPeeringStats gets all stats from an express route circuit in a resource -// group. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. peeringName is the name of the peering. -func (client ExpressRouteCircuitsClient) GetPeeringStats(resourceGroupName string, circuitName string, peeringName string) (result ExpressRouteCircuitStats, err error) { - req, err := client.GetPeeringStatsPreparer(resourceGroupName, circuitName, peeringName) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "GetPeeringStats", nil, "Failure preparing request") - } - - resp, err := client.GetPeeringStatsSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "GetPeeringStats", resp, "Failure sending request") - } - - result, err = client.GetPeeringStatsResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "GetPeeringStats", resp, "Failure responding to request") - } - - return -} - -// GetPeeringStatsPreparer prepares the GetPeeringStats request. -func (client ExpressRouteCircuitsClient) GetPeeringStatsPreparer(resourceGroupName string, circuitName string, peeringName string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "circuitName": autorest.Encode("path", circuitName), - "peeringName": autorest.Encode("path", peeringName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/stats", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// GetPeeringStatsSender sends the GetPeeringStats request. The method will close the -// http.Response Body if it receives an error. -func (client ExpressRouteCircuitsClient) GetPeeringStatsSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// GetPeeringStatsResponder handles the response to the GetPeeringStats request. The method always -// closes the http.Response Body. -func (client ExpressRouteCircuitsClient) GetPeeringStatsResponder(resp *http.Response) (result ExpressRouteCircuitStats, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// GetStats gets all the stats from an express route circuit in a resource -// group. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. -func (client ExpressRouteCircuitsClient) GetStats(resourceGroupName string, circuitName string) (result ExpressRouteCircuitStats, err error) { - req, err := client.GetStatsPreparer(resourceGroupName, circuitName) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "GetStats", nil, "Failure preparing request") - } - - resp, err := client.GetStatsSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "GetStats", resp, "Failure sending request") - } - - result, err = client.GetStatsResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "GetStats", resp, "Failure responding to request") - } - - return -} - -// GetStatsPreparer prepares the GetStats request. -func (client ExpressRouteCircuitsClient) GetStatsPreparer(resourceGroupName string, circuitName string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "circuitName": autorest.Encode("path", circuitName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/stats", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// GetStatsSender sends the GetStats request. The method will close the -// http.Response Body if it receives an error. -func (client ExpressRouteCircuitsClient) GetStatsSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// GetStatsResponder handles the response to the GetStats request. The method always -// closes the http.Response Body. -func (client ExpressRouteCircuitsClient) GetStatsResponder(resp *http.Response) (result ExpressRouteCircuitStats, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// List gets all the express route circuits in a resource group. -// -// resourceGroupName is the name of the resource group. -func (client ExpressRouteCircuitsClient) List(resourceGroupName string) (result ExpressRouteCircuitListResult, err error) { - req, err := client.ListPreparer(resourceGroupName) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "List", nil, "Failure preparing request") - } - - resp, err := client.ListSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "List", resp, "Failure sending request") - } - - result, err = client.ListResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "List", resp, "Failure responding to request") - } - - return -} - -// ListPreparer prepares the List request. -func (client ExpressRouteCircuitsClient) ListPreparer(resourceGroupName string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// ListSender sends the List request. The method will close the -// http.Response Body if it receives an error. -func (client ExpressRouteCircuitsClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// ListResponder handles the response to the List request. The method always -// closes the http.Response Body. -func (client ExpressRouteCircuitsClient) ListResponder(resp *http.Response) (result ExpressRouteCircuitListResult, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// ListNextResults retrieves the next set of results, if any. -func (client ExpressRouteCircuitsClient) ListNextResults(lastResults ExpressRouteCircuitListResult) (result ExpressRouteCircuitListResult, err error) { - req, err := lastResults.ExpressRouteCircuitListResultPreparer() - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "List", nil, "Failure preparing next results request") - } - if req == nil { - return - } - - resp, err := client.ListSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "List", resp, "Failure sending next results request") - } - - result, err = client.ListResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "List", resp, "Failure responding to next results request") - } - - return -} - -// ListAll gets all the express route circuits in a subscription. -func (client ExpressRouteCircuitsClient) ListAll() (result ExpressRouteCircuitListResult, err error) { - req, err := client.ListAllPreparer() - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListAll", nil, "Failure preparing request") - } - - resp, err := client.ListAllSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListAll", resp, "Failure sending request") - } - - result, err = client.ListAllResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListAll", resp, "Failure responding to request") - } - - return -} - -// ListAllPreparer prepares the ListAll request. -func (client ExpressRouteCircuitsClient) ListAllPreparer() (*http.Request, error) { - pathParameters := map[string]interface{}{ - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteCircuits", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// ListAllSender sends the ListAll request. The method will close the -// http.Response Body if it receives an error. -func (client ExpressRouteCircuitsClient) ListAllSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// ListAllResponder handles the response to the ListAll request. The method always -// closes the http.Response Body. -func (client ExpressRouteCircuitsClient) ListAllResponder(resp *http.Response) (result ExpressRouteCircuitListResult, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// ListAllNextResults retrieves the next set of results, if any. -func (client ExpressRouteCircuitsClient) ListAllNextResults(lastResults ExpressRouteCircuitListResult) (result ExpressRouteCircuitListResult, err error) { - req, err := lastResults.ExpressRouteCircuitListResultPreparer() - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListAll", nil, "Failure preparing next results request") - } - if req == nil { - return - } - - resp, err := client.ListAllSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListAll", resp, "Failure sending next results request") - } - - result, err = client.ListAllResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListAll", resp, "Failure responding to next results request") - } - - return -} - -// ListArpTable gets the currently advertised ARP table associated with the -// express route circuit in a resource group. This method may poll for -// completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. peeringName is the name of the peering. -// devicePath is the path of the device. -func (client ExpressRouteCircuitsClient) ListArpTable(resourceGroupName string, circuitName string, peeringName string, devicePath string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.ListArpTablePreparer(resourceGroupName, circuitName, peeringName, devicePath, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListArpTable", nil, "Failure preparing request") - } - - resp, err := client.ListArpTableSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListArpTable", resp, "Failure sending request") - } - - result, err = client.ListArpTableResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListArpTable", resp, "Failure responding to request") - } - - return -} - -// ListArpTablePreparer prepares the ListArpTable request. -func (client ExpressRouteCircuitsClient) ListArpTablePreparer(resourceGroupName string, circuitName string, peeringName string, devicePath string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "circuitName": autorest.Encode("path", circuitName), - "devicePath": autorest.Encode("path", devicePath), - "peeringName": autorest.Encode("path", peeringName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsPost(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/arpTables/{devicePath}", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// ListArpTableSender sends the ListArpTable request. The method will close the -// http.Response Body if it receives an error. -func (client ExpressRouteCircuitsClient) ListArpTableSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// ListArpTableResponder handles the response to the ListArpTable request. The method always -// closes the http.Response Body. -func (client ExpressRouteCircuitsClient) ListArpTableResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), - autorest.ByClosing()) - result.Response = resp - return -} - -// ListRoutesTable gets the currently advertised routes table associated with -// the express route circuit in a resource group. This method may poll for -// completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. peeringName is the name of the peering. -// devicePath is the path of the device. -func (client ExpressRouteCircuitsClient) ListRoutesTable(resourceGroupName string, circuitName string, peeringName string, devicePath string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.ListRoutesTablePreparer(resourceGroupName, circuitName, peeringName, devicePath, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListRoutesTable", nil, "Failure preparing request") - } - - resp, err := client.ListRoutesTableSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListRoutesTable", resp, "Failure sending request") - } - - result, err = client.ListRoutesTableResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListRoutesTable", resp, "Failure responding to request") - } - - return -} - -// ListRoutesTablePreparer prepares the ListRoutesTable request. -func (client ExpressRouteCircuitsClient) ListRoutesTablePreparer(resourceGroupName string, circuitName string, peeringName string, devicePath string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "circuitName": autorest.Encode("path", circuitName), - "devicePath": autorest.Encode("path", devicePath), - "peeringName": autorest.Encode("path", peeringName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsPost(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTables/{devicePath}", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// ListRoutesTableSender sends the ListRoutesTable request. The method will close the -// http.Response Body if it receives an error. -func (client ExpressRouteCircuitsClient) ListRoutesTableSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// ListRoutesTableResponder handles the response to the ListRoutesTable request. The method always -// closes the http.Response Body. -func (client ExpressRouteCircuitsClient) ListRoutesTableResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), - autorest.ByClosing()) - result.Response = resp - return -} - -// ListRoutesTableSummary gets the currently advertised routes table summary -// associated with the express route circuit in a resource group. This method -// may poll for completion. Polling can be canceled by passing the cancel -// channel argument. The channel will be used to cancel polling and any -// outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. peeringName is the name of the peering. -// devicePath is the path of the device. -func (client ExpressRouteCircuitsClient) ListRoutesTableSummary(resourceGroupName string, circuitName string, peeringName string, devicePath string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.ListRoutesTableSummaryPreparer(resourceGroupName, circuitName, peeringName, devicePath, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListRoutesTableSummary", nil, "Failure preparing request") - } - - resp, err := client.ListRoutesTableSummarySender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListRoutesTableSummary", resp, "Failure sending request") - } - - result, err = client.ListRoutesTableSummaryResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListRoutesTableSummary", resp, "Failure responding to request") - } - - return -} - -// ListRoutesTableSummaryPreparer prepares the ListRoutesTableSummary request. -func (client ExpressRouteCircuitsClient) ListRoutesTableSummaryPreparer(resourceGroupName string, circuitName string, peeringName string, devicePath string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "circuitName": autorest.Encode("path", circuitName), - "devicePath": autorest.Encode("path", devicePath), - "peeringName": autorest.Encode("path", peeringName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsPost(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}/routeTablesSummary/{devicePath}", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// ListRoutesTableSummarySender sends the ListRoutesTableSummary request. The method will close the -// http.Response Body if it receives an error. -func (client ExpressRouteCircuitsClient) ListRoutesTableSummarySender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// ListRoutesTableSummaryResponder handles the response to the ListRoutesTableSummary request. The method always -// closes the http.Response Body. -func (client ExpressRouteCircuitsClient) ListRoutesTableSummaryResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), - autorest.ByClosing()) - result.Response = resp - return -} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/models.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/models.go deleted file mode 100644 index bb514f796..000000000 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/models.go +++ /dev/null @@ -1,2158 +0,0 @@ -package network - -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -import ( - "github.com/Azure/go-autorest/autorest" - "github.com/Azure/go-autorest/autorest/to" - "net/http" -) - -// ApplicationGatewayBackendHealthServerHealth enumerates the values for -// application gateway backend health server health. -type ApplicationGatewayBackendHealthServerHealth string - -const ( - // Down specifies the down state for application gateway backend health - // server health. - Down ApplicationGatewayBackendHealthServerHealth = "Down" - // Partial specifies the partial state for application gateway backend - // health server health. - Partial ApplicationGatewayBackendHealthServerHealth = "Partial" - // Unknown specifies the unknown state for application gateway backend - // health server health. - Unknown ApplicationGatewayBackendHealthServerHealth = "Unknown" - // Up specifies the up state for application gateway backend health server - // health. - Up ApplicationGatewayBackendHealthServerHealth = "Up" -) - -// ApplicationGatewayCookieBasedAffinity enumerates the values for application -// gateway cookie based affinity. -type ApplicationGatewayCookieBasedAffinity string - -const ( - // Disabled specifies the disabled state for application gateway cookie - // based affinity. - Disabled ApplicationGatewayCookieBasedAffinity = "Disabled" - // Enabled specifies the enabled state for application gateway cookie - // based affinity. - Enabled ApplicationGatewayCookieBasedAffinity = "Enabled" -) - -// ApplicationGatewayFirewallMode enumerates the values for application -// gateway firewall mode. -type ApplicationGatewayFirewallMode string - -const ( - // Detection specifies the detection state for application gateway - // firewall mode. - Detection ApplicationGatewayFirewallMode = "Detection" - // Prevention specifies the prevention state for application gateway - // firewall mode. - Prevention ApplicationGatewayFirewallMode = "Prevention" -) - -// ApplicationGatewayOperationalState enumerates the values for application -// gateway operational state. -type ApplicationGatewayOperationalState string - -const ( - // Running specifies the running state for application gateway operational - // state. - Running ApplicationGatewayOperationalState = "Running" - // Starting specifies the starting state for application gateway - // operational state. - Starting ApplicationGatewayOperationalState = "Starting" - // Stopped specifies the stopped state for application gateway operational - // state. - Stopped ApplicationGatewayOperationalState = "Stopped" - // Stopping specifies the stopping state for application gateway - // operational state. - Stopping ApplicationGatewayOperationalState = "Stopping" -) - -// ApplicationGatewayProtocol enumerates the values for application gateway -// protocol. -type ApplicationGatewayProtocol string - -const ( - // HTTP specifies the http state for application gateway protocol. - HTTP ApplicationGatewayProtocol = "Http" - // HTTPS specifies the https state for application gateway protocol. - HTTPS ApplicationGatewayProtocol = "Https" -) - -// ApplicationGatewayRequestRoutingRuleType enumerates the values for -// application gateway request routing rule type. -type ApplicationGatewayRequestRoutingRuleType string - -const ( - // Basic specifies the basic state for application gateway request routing - // rule type. - Basic ApplicationGatewayRequestRoutingRuleType = "Basic" - // PathBasedRouting specifies the path based routing state for application - // gateway request routing rule type. - PathBasedRouting ApplicationGatewayRequestRoutingRuleType = "PathBasedRouting" -) - -// ApplicationGatewaySkuName enumerates the values for application gateway sku -// name. -type ApplicationGatewaySkuName string - -const ( - // StandardLarge specifies the standard large state for application - // gateway sku name. - StandardLarge ApplicationGatewaySkuName = "Standard_Large" - // StandardMedium specifies the standard medium state for application - // gateway sku name. - StandardMedium ApplicationGatewaySkuName = "Standard_Medium" - // StandardSmall specifies the standard small state for application - // gateway sku name. - StandardSmall ApplicationGatewaySkuName = "Standard_Small" - // WAFLarge specifies the waf large state for application gateway sku name. - WAFLarge ApplicationGatewaySkuName = "WAF_Large" - // WAFMedium specifies the waf medium state for application gateway sku - // name. - WAFMedium ApplicationGatewaySkuName = "WAF_Medium" -) - -// ApplicationGatewaySslProtocol enumerates the values for application gateway -// ssl protocol. -type ApplicationGatewaySslProtocol string - -const ( - // TLSv10 specifies the tl sv 10 state for application gateway ssl - // protocol. - TLSv10 ApplicationGatewaySslProtocol = "TLSv1_0" - // TLSv11 specifies the tl sv 11 state for application gateway ssl - // protocol. - TLSv11 ApplicationGatewaySslProtocol = "TLSv1_1" - // TLSv12 specifies the tl sv 12 state for application gateway ssl - // protocol. - TLSv12 ApplicationGatewaySslProtocol = "TLSv1_2" -) - -// ApplicationGatewayTier enumerates the values for application gateway tier. -type ApplicationGatewayTier string - -const ( - // Standard specifies the standard state for application gateway tier. - Standard ApplicationGatewayTier = "Standard" - // WAF specifies the waf state for application gateway tier. - WAF ApplicationGatewayTier = "WAF" -) - -// AuthorizationUseStatus enumerates the values for authorization use status. -type AuthorizationUseStatus string - -const ( - // Available specifies the available state for authorization use status. - Available AuthorizationUseStatus = "Available" - // InUse specifies the in use state for authorization use status. - InUse AuthorizationUseStatus = "InUse" -) - -// EffectiveRouteSource enumerates the values for effective route source. -type EffectiveRouteSource string - -const ( - // EffectiveRouteSourceDefault specifies the effective route source - // default state for effective route source. - EffectiveRouteSourceDefault EffectiveRouteSource = "Default" - // EffectiveRouteSourceUnknown specifies the effective route source - // unknown state for effective route source. - EffectiveRouteSourceUnknown EffectiveRouteSource = "Unknown" - // EffectiveRouteSourceUser specifies the effective route source user - // state for effective route source. - EffectiveRouteSourceUser EffectiveRouteSource = "User" - // EffectiveRouteSourceVirtualNetworkGateway specifies the effective route - // source virtual network gateway state for effective route source. - EffectiveRouteSourceVirtualNetworkGateway EffectiveRouteSource = "VirtualNetworkGateway" -) - -// EffectiveRouteState enumerates the values for effective route state. -type EffectiveRouteState string - -const ( - // Active specifies the active state for effective route state. - Active EffectiveRouteState = "Active" - // Invalid specifies the invalid state for effective route state. - Invalid EffectiveRouteState = "Invalid" -) - -// ExpressRouteCircuitPeeringAdvertisedPublicPrefixState enumerates the values -// for express route circuit peering advertised public prefix state. -type ExpressRouteCircuitPeeringAdvertisedPublicPrefixState string - -const ( - // Configured specifies the configured state for express route circuit - // peering advertised public prefix state. - Configured ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "Configured" - // Configuring specifies the configuring state for express route circuit - // peering advertised public prefix state. - Configuring ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "Configuring" - // NotConfigured specifies the not configured state for express route - // circuit peering advertised public prefix state. - NotConfigured ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "NotConfigured" - // ValidationNeeded specifies the validation needed state for express - // route circuit peering advertised public prefix state. - ValidationNeeded ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "ValidationNeeded" -) - -// ExpressRouteCircuitPeeringState enumerates the values for express route -// circuit peering state. -type ExpressRouteCircuitPeeringState string - -const ( - // ExpressRouteCircuitPeeringStateDisabled specifies the express route - // circuit peering state disabled state for express route circuit peering - // state. - ExpressRouteCircuitPeeringStateDisabled ExpressRouteCircuitPeeringState = "Disabled" - // ExpressRouteCircuitPeeringStateEnabled specifies the express route - // circuit peering state enabled state for express route circuit peering - // state. - ExpressRouteCircuitPeeringStateEnabled ExpressRouteCircuitPeeringState = "Enabled" -) - -// ExpressRouteCircuitPeeringType enumerates the values for express route -// circuit peering type. -type ExpressRouteCircuitPeeringType string - -const ( - // AzurePrivatePeering specifies the azure private peering state for - // express route circuit peering type. - AzurePrivatePeering ExpressRouteCircuitPeeringType = "AzurePrivatePeering" - // AzurePublicPeering specifies the azure public peering state for express - // route circuit peering type. - AzurePublicPeering ExpressRouteCircuitPeeringType = "AzurePublicPeering" - // MicrosoftPeering specifies the microsoft peering state for express - // route circuit peering type. - MicrosoftPeering ExpressRouteCircuitPeeringType = "MicrosoftPeering" -) - -// ExpressRouteCircuitSkuFamily enumerates the values for express route -// circuit sku family. -type ExpressRouteCircuitSkuFamily string - -const ( - // MeteredData specifies the metered data state for express route circuit - // sku family. - MeteredData ExpressRouteCircuitSkuFamily = "MeteredData" - // UnlimitedData specifies the unlimited data state for express route - // circuit sku family. - UnlimitedData ExpressRouteCircuitSkuFamily = "UnlimitedData" -) - -// ExpressRouteCircuitSkuTier enumerates the values for express route circuit -// sku tier. -type ExpressRouteCircuitSkuTier string - -const ( - // ExpressRouteCircuitSkuTierPremium specifies the express route circuit - // sku tier premium state for express route circuit sku tier. - ExpressRouteCircuitSkuTierPremium ExpressRouteCircuitSkuTier = "Premium" - // ExpressRouteCircuitSkuTierStandard specifies the express route circuit - // sku tier standard state for express route circuit sku tier. - ExpressRouteCircuitSkuTierStandard ExpressRouteCircuitSkuTier = "Standard" -) - -// IPAllocationMethod enumerates the values for ip allocation method. -type IPAllocationMethod string - -const ( - // Dynamic specifies the dynamic state for ip allocation method. - Dynamic IPAllocationMethod = "Dynamic" - // Static specifies the static state for ip allocation method. - Static IPAllocationMethod = "Static" -) - -// IPVersion enumerates the values for ip version. -type IPVersion string - -const ( - // IPv4 specifies the i pv 4 state for ip version. - IPv4 IPVersion = "IPv4" - // IPv6 specifies the i pv 6 state for ip version. - IPv6 IPVersion = "IPv6" -) - -// LoadDistribution enumerates the values for load distribution. -type LoadDistribution string - -const ( - // Default specifies the default state for load distribution. - Default LoadDistribution = "Default" - // SourceIP specifies the source ip state for load distribution. - SourceIP LoadDistribution = "SourceIP" - // SourceIPProtocol specifies the source ip protocol state for load - // distribution. - SourceIPProtocol LoadDistribution = "SourceIPProtocol" -) - -// OperationStatus enumerates the values for operation status. -type OperationStatus string - -const ( - // Failed specifies the failed state for operation status. - Failed OperationStatus = "Failed" - // InProgress specifies the in progress state for operation status. - InProgress OperationStatus = "InProgress" - // Succeeded specifies the succeeded state for operation status. - Succeeded OperationStatus = "Succeeded" -) - -// ProbeProtocol enumerates the values for probe protocol. -type ProbeProtocol string - -const ( - // ProbeProtocolHTTP specifies the probe protocol http state for probe - // protocol. - ProbeProtocolHTTP ProbeProtocol = "Http" - // ProbeProtocolTCP specifies the probe protocol tcp state for probe - // protocol. - ProbeProtocolTCP ProbeProtocol = "Tcp" -) - -// ProcessorArchitecture enumerates the values for processor architecture. -type ProcessorArchitecture string - -const ( - // Amd64 specifies the amd 64 state for processor architecture. - Amd64 ProcessorArchitecture = "Amd64" - // X86 specifies the x86 state for processor architecture. - X86 ProcessorArchitecture = "X86" -) - -// RouteNextHopType enumerates the values for route next hop type. -type RouteNextHopType string - -const ( - // RouteNextHopTypeInternet specifies the route next hop type internet - // state for route next hop type. - RouteNextHopTypeInternet RouteNextHopType = "Internet" - // RouteNextHopTypeNone specifies the route next hop type none state for - // route next hop type. - RouteNextHopTypeNone RouteNextHopType = "None" - // RouteNextHopTypeVirtualAppliance specifies the route next hop type - // virtual appliance state for route next hop type. - RouteNextHopTypeVirtualAppliance RouteNextHopType = "VirtualAppliance" - // RouteNextHopTypeVirtualNetworkGateway specifies the route next hop type - // virtual network gateway state for route next hop type. - RouteNextHopTypeVirtualNetworkGateway RouteNextHopType = "VirtualNetworkGateway" - // RouteNextHopTypeVnetLocal specifies the route next hop type vnet local - // state for route next hop type. - RouteNextHopTypeVnetLocal RouteNextHopType = "VnetLocal" -) - -// SecurityRuleAccess enumerates the values for security rule access. -type SecurityRuleAccess string - -const ( - // Allow specifies the allow state for security rule access. - Allow SecurityRuleAccess = "Allow" - // Deny specifies the deny state for security rule access. - Deny SecurityRuleAccess = "Deny" -) - -// SecurityRuleDirection enumerates the values for security rule direction. -type SecurityRuleDirection string - -const ( - // Inbound specifies the inbound state for security rule direction. - Inbound SecurityRuleDirection = "Inbound" - // Outbound specifies the outbound state for security rule direction. - Outbound SecurityRuleDirection = "Outbound" -) - -// SecurityRuleProtocol enumerates the values for security rule protocol. -type SecurityRuleProtocol string - -const ( - // Asterisk specifies the asterisk state for security rule protocol. - Asterisk SecurityRuleProtocol = "*" - // TCP specifies the tcp state for security rule protocol. - TCP SecurityRuleProtocol = "Tcp" - // UDP specifies the udp state for security rule protocol. - UDP SecurityRuleProtocol = "Udp" -) - -// ServiceProviderProvisioningState enumerates the values for service provider -// provisioning state. -type ServiceProviderProvisioningState string - -const ( - // Deprovisioning specifies the deprovisioning state for service provider - // provisioning state. - Deprovisioning ServiceProviderProvisioningState = "Deprovisioning" - // NotProvisioned specifies the not provisioned state for service provider - // provisioning state. - NotProvisioned ServiceProviderProvisioningState = "NotProvisioned" - // Provisioned specifies the provisioned state for service provider - // provisioning state. - Provisioned ServiceProviderProvisioningState = "Provisioned" - // Provisioning specifies the provisioning state for service provider - // provisioning state. - Provisioning ServiceProviderProvisioningState = "Provisioning" -) - -// TransportProtocol enumerates the values for transport protocol. -type TransportProtocol string - -const ( - // TransportProtocolTCP specifies the transport protocol tcp state for - // transport protocol. - TransportProtocolTCP TransportProtocol = "Tcp" - // TransportProtocolUDP specifies the transport protocol udp state for - // transport protocol. - TransportProtocolUDP TransportProtocol = "Udp" -) - -// VirtualNetworkGatewayConnectionStatus enumerates the values for virtual -// network gateway connection status. -type VirtualNetworkGatewayConnectionStatus string - -const ( - // VirtualNetworkGatewayConnectionStatusConnected specifies the virtual - // network gateway connection status connected state for virtual network - // gateway connection status. - VirtualNetworkGatewayConnectionStatusConnected VirtualNetworkGatewayConnectionStatus = "Connected" - // VirtualNetworkGatewayConnectionStatusConnecting specifies the virtual - // network gateway connection status connecting state for virtual network - // gateway connection status. - VirtualNetworkGatewayConnectionStatusConnecting VirtualNetworkGatewayConnectionStatus = "Connecting" - // VirtualNetworkGatewayConnectionStatusNotConnected specifies the virtual - // network gateway connection status not connected state for virtual - // network gateway connection status. - VirtualNetworkGatewayConnectionStatusNotConnected VirtualNetworkGatewayConnectionStatus = "NotConnected" - // VirtualNetworkGatewayConnectionStatusUnknown specifies the virtual - // network gateway connection status unknown state for virtual network - // gateway connection status. - VirtualNetworkGatewayConnectionStatusUnknown VirtualNetworkGatewayConnectionStatus = "Unknown" -) - -// VirtualNetworkGatewayConnectionType enumerates the values for virtual -// network gateway connection type. -type VirtualNetworkGatewayConnectionType string - -const ( - // ExpressRoute specifies the express route state for virtual network - // gateway connection type. - ExpressRoute VirtualNetworkGatewayConnectionType = "ExpressRoute" - // IPsec specifies the i psec state for virtual network gateway connection - // type. - IPsec VirtualNetworkGatewayConnectionType = "IPsec" - // Vnet2Vnet specifies the vnet 2 vnet state for virtual network gateway - // connection type. - Vnet2Vnet VirtualNetworkGatewayConnectionType = "Vnet2Vnet" - // VPNClient specifies the vpn client state for virtual network gateway - // connection type. - VPNClient VirtualNetworkGatewayConnectionType = "VPNClient" -) - -// VirtualNetworkGatewaySkuName enumerates the values for virtual network -// gateway sku name. -type VirtualNetworkGatewaySkuName string - -const ( - // VirtualNetworkGatewaySkuNameBasic specifies the virtual network gateway - // sku name basic state for virtual network gateway sku name. - VirtualNetworkGatewaySkuNameBasic VirtualNetworkGatewaySkuName = "Basic" - // VirtualNetworkGatewaySkuNameHighPerformance specifies the virtual - // network gateway sku name high performance state for virtual network - // gateway sku name. - VirtualNetworkGatewaySkuNameHighPerformance VirtualNetworkGatewaySkuName = "HighPerformance" - // VirtualNetworkGatewaySkuNameStandard specifies the virtual network - // gateway sku name standard state for virtual network gateway sku name. - VirtualNetworkGatewaySkuNameStandard VirtualNetworkGatewaySkuName = "Standard" - // VirtualNetworkGatewaySkuNameUltraPerformance specifies the virtual - // network gateway sku name ultra performance state for virtual network - // gateway sku name. - VirtualNetworkGatewaySkuNameUltraPerformance VirtualNetworkGatewaySkuName = "UltraPerformance" -) - -// VirtualNetworkGatewaySkuTier enumerates the values for virtual network -// gateway sku tier. -type VirtualNetworkGatewaySkuTier string - -const ( - // VirtualNetworkGatewaySkuTierBasic specifies the virtual network gateway - // sku tier basic state for virtual network gateway sku tier. - VirtualNetworkGatewaySkuTierBasic VirtualNetworkGatewaySkuTier = "Basic" - // VirtualNetworkGatewaySkuTierHighPerformance specifies the virtual - // network gateway sku tier high performance state for virtual network - // gateway sku tier. - VirtualNetworkGatewaySkuTierHighPerformance VirtualNetworkGatewaySkuTier = "HighPerformance" - // VirtualNetworkGatewaySkuTierStandard specifies the virtual network - // gateway sku tier standard state for virtual network gateway sku tier. - VirtualNetworkGatewaySkuTierStandard VirtualNetworkGatewaySkuTier = "Standard" - // VirtualNetworkGatewaySkuTierUltraPerformance specifies the virtual - // network gateway sku tier ultra performance state for virtual network - // gateway sku tier. - VirtualNetworkGatewaySkuTierUltraPerformance VirtualNetworkGatewaySkuTier = "UltraPerformance" -) - -// VirtualNetworkGatewayType enumerates the values for virtual network gateway -// type. -type VirtualNetworkGatewayType string - -const ( - // VirtualNetworkGatewayTypeExpressRoute specifies the virtual network - // gateway type express route state for virtual network gateway type. - VirtualNetworkGatewayTypeExpressRoute VirtualNetworkGatewayType = "ExpressRoute" - // VirtualNetworkGatewayTypeVpn specifies the virtual network gateway type - // vpn state for virtual network gateway type. - VirtualNetworkGatewayTypeVpn VirtualNetworkGatewayType = "Vpn" -) - -// VirtualNetworkPeeringState enumerates the values for virtual network -// peering state. -type VirtualNetworkPeeringState string - -const ( - // Connected specifies the connected state for virtual network peering - // state. - Connected VirtualNetworkPeeringState = "Connected" - // Disconnected specifies the disconnected state for virtual network - // peering state. - Disconnected VirtualNetworkPeeringState = "Disconnected" - // Initiated specifies the initiated state for virtual network peering - // state. - Initiated VirtualNetworkPeeringState = "Initiated" -) - -// VpnType enumerates the values for vpn type. -type VpnType string - -const ( - // PolicyBased specifies the policy based state for vpn type. - PolicyBased VpnType = "PolicyBased" - // RouteBased specifies the route based state for vpn type. - RouteBased VpnType = "RouteBased" -) - -// AddressSpace is addressSpace contains an array of IP address ranges that -// can be used by subnets of the virtual network. -type AddressSpace struct { - AddressPrefixes *[]string `json:"addressPrefixes,omitempty"` -} - -// ApplicationGateway is application gateway resource -type ApplicationGateway struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - *ApplicationGatewayPropertiesFormat `json:"properties,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayAuthenticationCertificate is authentication certificates -// of an application gateway. -type ApplicationGatewayAuthenticationCertificate struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewayAuthenticationCertificatePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayAuthenticationCertificatePropertiesFormat is -// authentication certificates properties of an application gateway. -type ApplicationGatewayAuthenticationCertificatePropertiesFormat struct { - Data *string `json:"data,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewayBackendAddress is backend address of an application -// gateway. -type ApplicationGatewayBackendAddress struct { - Fqdn *string `json:"fqdn,omitempty"` - IPAddress *string `json:"ipAddress,omitempty"` -} - -// ApplicationGatewayBackendAddressPool is backend Address Pool of an -// application gateway. -type ApplicationGatewayBackendAddressPool struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewayBackendAddressPoolPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayBackendAddressPoolPropertiesFormat is properties of -// Backend Address Pool of an application gateway. -type ApplicationGatewayBackendAddressPoolPropertiesFormat struct { - BackendIPConfigurations *[]InterfaceIPConfiguration `json:"backendIPConfigurations,omitempty"` - BackendAddresses *[]ApplicationGatewayBackendAddress `json:"backendAddresses,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewayBackendHealth is list of -// ApplicationGatewayBackendHealthPool resources. -type ApplicationGatewayBackendHealth struct { - autorest.Response `json:"-"` - BackendAddressPools *[]ApplicationGatewayBackendHealthPool `json:"backendAddressPools,omitempty"` -} - -// ApplicationGatewayBackendHealthHTTPSettings is application gateway -// BackendHealthHttp settings. -type ApplicationGatewayBackendHealthHTTPSettings struct { - BackendHTTPSettings *ApplicationGatewayBackendHTTPSettings `json:"backendHttpSettings,omitempty"` - Servers *[]ApplicationGatewayBackendHealthServer `json:"servers,omitempty"` -} - -// ApplicationGatewayBackendHealthPool is application gateway BackendHealth -// pool. -type ApplicationGatewayBackendHealthPool struct { - BackendAddressPool *ApplicationGatewayBackendAddressPool `json:"backendAddressPool,omitempty"` - BackendHTTPSettingsCollection *[]ApplicationGatewayBackendHealthHTTPSettings `json:"backendHttpSettingsCollection,omitempty"` -} - -// ApplicationGatewayBackendHealthServer is application gateway backendhealth -// http settings. -type ApplicationGatewayBackendHealthServer struct { - Address *string `json:"address,omitempty"` - IPConfiguration *SubResource `json:"ipConfiguration,omitempty"` - Health ApplicationGatewayBackendHealthServerHealth `json:"health,omitempty"` -} - -// ApplicationGatewayBackendHTTPSettings is backend address pool settings of -// an application gateway. -type ApplicationGatewayBackendHTTPSettings struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewayBackendHTTPSettingsPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayBackendHTTPSettingsPropertiesFormat is properties of -// Backend address pool settings of an application gateway. -type ApplicationGatewayBackendHTTPSettingsPropertiesFormat struct { - Port *int32 `json:"port,omitempty"` - Protocol ApplicationGatewayProtocol `json:"protocol,omitempty"` - CookieBasedAffinity ApplicationGatewayCookieBasedAffinity `json:"cookieBasedAffinity,omitempty"` - RequestTimeout *int32 `json:"requestTimeout,omitempty"` - Probe *SubResource `json:"probe,omitempty"` - AuthenticationCertificates *[]SubResource `json:"authenticationCertificates,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewayFrontendIPConfiguration is frontend IP configuration of -// an application gateway. -type ApplicationGatewayFrontendIPConfiguration struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewayFrontendIPConfigurationPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayFrontendIPConfigurationPropertiesFormat is properties of -// Frontend IP configuration of an application gateway. -type ApplicationGatewayFrontendIPConfigurationPropertiesFormat struct { - PrivateIPAddress *string `json:"privateIPAddress,omitempty"` - PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"` - Subnet *SubResource `json:"subnet,omitempty"` - PublicIPAddress *SubResource `json:"publicIPAddress,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewayFrontendPort is frontend port of an application gateway. -type ApplicationGatewayFrontendPort struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewayFrontendPortPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayFrontendPortPropertiesFormat is properties of Frontend -// port of an application gateway. -type ApplicationGatewayFrontendPortPropertiesFormat struct { - Port *int32 `json:"port,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewayHTTPListener is http listener of an application gateway. -type ApplicationGatewayHTTPListener struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewayHTTPListenerPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayHTTPListenerPropertiesFormat is properties of HTTP -// listener of an application gateway. -type ApplicationGatewayHTTPListenerPropertiesFormat struct { - FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"` - FrontendPort *SubResource `json:"frontendPort,omitempty"` - Protocol ApplicationGatewayProtocol `json:"protocol,omitempty"` - HostName *string `json:"hostName,omitempty"` - SslCertificate *SubResource `json:"sslCertificate,omitempty"` - RequireServerNameIndication *bool `json:"requireServerNameIndication,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewayIPConfiguration is iP configuration of an application -// gateway. Currently 1 public and 1 private IP configuration is allowed. -type ApplicationGatewayIPConfiguration struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewayIPConfigurationPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayIPConfigurationPropertiesFormat is properties of IP -// configuration of an application gateway. -type ApplicationGatewayIPConfigurationPropertiesFormat struct { - Subnet *SubResource `json:"subnet,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewayListResult is response for ListApplicationGateways API -// service call. -type ApplicationGatewayListResult struct { - autorest.Response `json:"-"` - Value *[]ApplicationGateway `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// ApplicationGatewayListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client ApplicationGatewayListResult) ApplicationGatewayListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// ApplicationGatewayPathRule is path rule of URL path map of an application -// gateway. -type ApplicationGatewayPathRule struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewayPathRulePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayPathRulePropertiesFormat is properties of probe of an -// application gateway. -type ApplicationGatewayPathRulePropertiesFormat struct { - Paths *[]string `json:"paths,omitempty"` - BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"` - BackendHTTPSettings *SubResource `json:"backendHttpSettings,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewayProbe is probe of the application gateway. -type ApplicationGatewayProbe struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewayProbePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayProbePropertiesFormat is properties of probe of an -// application gateway. -type ApplicationGatewayProbePropertiesFormat struct { - Protocol ApplicationGatewayProtocol `json:"protocol,omitempty"` - Host *string `json:"host,omitempty"` - Path *string `json:"path,omitempty"` - Interval *int32 `json:"interval,omitempty"` - Timeout *int32 `json:"timeout,omitempty"` - UnhealthyThreshold *int32 `json:"unhealthyThreshold,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewayPropertiesFormat is properties of the application gateway. -type ApplicationGatewayPropertiesFormat struct { - Sku *ApplicationGatewaySku `json:"sku,omitempty"` - SslPolicy *ApplicationGatewaySslPolicy `json:"sslPolicy,omitempty"` - OperationalState ApplicationGatewayOperationalState `json:"operationalState,omitempty"` - GatewayIPConfigurations *[]ApplicationGatewayIPConfiguration `json:"gatewayIPConfigurations,omitempty"` - AuthenticationCertificates *[]ApplicationGatewayAuthenticationCertificate `json:"authenticationCertificates,omitempty"` - SslCertificates *[]ApplicationGatewaySslCertificate `json:"sslCertificates,omitempty"` - FrontendIPConfigurations *[]ApplicationGatewayFrontendIPConfiguration `json:"frontendIPConfigurations,omitempty"` - FrontendPorts *[]ApplicationGatewayFrontendPort `json:"frontendPorts,omitempty"` - Probes *[]ApplicationGatewayProbe `json:"probes,omitempty"` - BackendAddressPools *[]ApplicationGatewayBackendAddressPool `json:"backendAddressPools,omitempty"` - BackendHTTPSettingsCollection *[]ApplicationGatewayBackendHTTPSettings `json:"backendHttpSettingsCollection,omitempty"` - HTTPListeners *[]ApplicationGatewayHTTPListener `json:"httpListeners,omitempty"` - URLPathMaps *[]ApplicationGatewayURLPathMap `json:"urlPathMaps,omitempty"` - RequestRoutingRules *[]ApplicationGatewayRequestRoutingRule `json:"requestRoutingRules,omitempty"` - WebApplicationFirewallConfiguration *ApplicationGatewayWebApplicationFirewallConfiguration `json:"webApplicationFirewallConfiguration,omitempty"` - ResourceGUID *string `json:"resourceGuid,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewayRequestRoutingRule is request routing rule of an -// application gateway. -type ApplicationGatewayRequestRoutingRule struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewayRequestRoutingRulePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayRequestRoutingRulePropertiesFormat is properties of -// request routing rule of the application gateway. -type ApplicationGatewayRequestRoutingRulePropertiesFormat struct { - RuleType ApplicationGatewayRequestRoutingRuleType `json:"ruleType,omitempty"` - BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"` - BackendHTTPSettings *SubResource `json:"backendHttpSettings,omitempty"` - HTTPListener *SubResource `json:"httpListener,omitempty"` - URLPathMap *SubResource `json:"urlPathMap,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewaySku is sKU of an application gateway -type ApplicationGatewaySku struct { - Name ApplicationGatewaySkuName `json:"name,omitempty"` - Tier ApplicationGatewayTier `json:"tier,omitempty"` - Capacity *int32 `json:"capacity,omitempty"` -} - -// ApplicationGatewaySslCertificate is sSL certificates of an application -// gateway. -type ApplicationGatewaySslCertificate struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewaySslCertificatePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewaySslCertificatePropertiesFormat is properties of SSL -// certificates of an application gateway. -type ApplicationGatewaySslCertificatePropertiesFormat struct { - Data *string `json:"data,omitempty"` - Password *string `json:"password,omitempty"` - PublicCertData *string `json:"publicCertData,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewaySslPolicy is application gateway SSL policy. -type ApplicationGatewaySslPolicy struct { - DisabledSslProtocols *[]ApplicationGatewaySslProtocol `json:"disabledSslProtocols,omitempty"` -} - -// ApplicationGatewayURLPathMap is urlPathMaps give a url path to the backend -// mapping information for PathBasedRouting. -type ApplicationGatewayURLPathMap struct { - ID *string `json:"id,omitempty"` - *ApplicationGatewayURLPathMapPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ApplicationGatewayURLPathMapPropertiesFormat is properties of UrlPathMap of -// the application gateway. -type ApplicationGatewayURLPathMapPropertiesFormat struct { - DefaultBackendAddressPool *SubResource `json:"defaultBackendAddressPool,omitempty"` - DefaultBackendHTTPSettings *SubResource `json:"defaultBackendHttpSettings,omitempty"` - PathRules *[]ApplicationGatewayPathRule `json:"pathRules,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// ApplicationGatewayWebApplicationFirewallConfiguration is application -// gateway web application firewall configuration. -type ApplicationGatewayWebApplicationFirewallConfiguration struct { - Enabled *bool `json:"enabled,omitempty"` - FirewallMode ApplicationGatewayFirewallMode `json:"firewallMode,omitempty"` -} - -// AuthorizationListResult is response for ListAuthorizations API service call -// retrieves all authorizations that belongs to an ExpressRouteCircuit. -type AuthorizationListResult struct { - autorest.Response `json:"-"` - Value *[]ExpressRouteCircuitAuthorization `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// AuthorizationListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client AuthorizationListResult) AuthorizationListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// AuthorizationPropertiesFormat is -type AuthorizationPropertiesFormat struct { - AuthorizationKey *string `json:"authorizationKey,omitempty"` - AuthorizationUseStatus AuthorizationUseStatus `json:"authorizationUseStatus,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// AzureAsyncOperationResult is the response body contains the status of the -// specified asynchronous operation, indicating whether it has succeeded, is -// in progress, or has failed. Note that this status is distinct from the -// HTTP status code returned for the Get Operation Status operation itself. -// If the asynchronous operation succeeded, the response body includes the -// HTTP status code for the successful request. If the asynchronous operation -// failed, the response body includes the HTTP status code for the failed -// request and error information regarding the failure. -type AzureAsyncOperationResult struct { - Status OperationStatus `json:"status,omitempty"` - Error *Error `json:"error,omitempty"` -} - -// BackendAddressPool is pool of backend IP addresses. -type BackendAddressPool struct { - ID *string `json:"id,omitempty"` - *BackendAddressPoolPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// BackendAddressPoolPropertiesFormat is properties of the backend address -// pool. -type BackendAddressPoolPropertiesFormat struct { - BackendIPConfigurations *[]InterfaceIPConfiguration `json:"backendIPConfigurations,omitempty"` - LoadBalancingRules *[]SubResource `json:"loadBalancingRules,omitempty"` - OutboundNatRule *SubResource `json:"outboundNatRule,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// BgpSettings is -type BgpSettings struct { - Asn *int64 `json:"asn,omitempty"` - BgpPeeringAddress *string `json:"bgpPeeringAddress,omitempty"` - PeerWeight *int32 `json:"peerWeight,omitempty"` -} - -// ConnectionResetSharedKey is -type ConnectionResetSharedKey struct { - autorest.Response `json:"-"` - KeyLength *int32 `json:"keyLength,omitempty"` -} - -// ConnectionSharedKey is response for GetConnectionSharedKey API service call -type ConnectionSharedKey struct { - autorest.Response `json:"-"` - Value *string `json:"value,omitempty"` -} - -// DhcpOptions is dhcpOptions contains an array of DNS servers available to -// VMs deployed in the virtual network. Standard DHCP option for a subnet -// overrides VNET DHCP options. -type DhcpOptions struct { - DNSServers *[]string `json:"dnsServers,omitempty"` -} - -// DNSNameAvailabilityResult is response for the CheckDnsNameAvailability API -// service call. -type DNSNameAvailabilityResult struct { - autorest.Response `json:"-"` - Available *bool `json:"available,omitempty"` -} - -// EffectiveNetworkSecurityGroup is effective network security group. -type EffectiveNetworkSecurityGroup struct { - NetworkSecurityGroup *SubResource `json:"networkSecurityGroup,omitempty"` - Association *EffectiveNetworkSecurityGroupAssociation `json:"association,omitempty"` - EffectiveSecurityRules *[]EffectiveNetworkSecurityRule `json:"effectiveSecurityRules,omitempty"` -} - -// EffectiveNetworkSecurityGroupAssociation is the effective network security -// group association. -type EffectiveNetworkSecurityGroupAssociation struct { - Subnet *SubResource `json:"subnet,omitempty"` - NetworkInterface *SubResource `json:"networkInterface,omitempty"` -} - -// EffectiveNetworkSecurityGroupListResult is response for list effective -// network security groups API service call. -type EffectiveNetworkSecurityGroupListResult struct { - autorest.Response `json:"-"` - Value *[]EffectiveNetworkSecurityGroup `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// EffectiveNetworkSecurityRule is effective network security rules. -type EffectiveNetworkSecurityRule struct { - Name *string `json:"name,omitempty"` - Protocol SecurityRuleProtocol `json:"protocol,omitempty"` - SourcePortRange *string `json:"sourcePortRange,omitempty"` - DestinationPortRange *string `json:"destinationPortRange,omitempty"` - SourceAddressPrefix *string `json:"sourceAddressPrefix,omitempty"` - DestinationAddressPrefix *string `json:"destinationAddressPrefix,omitempty"` - ExpandedSourceAddressPrefix *[]string `json:"expandedSourceAddressPrefix,omitempty"` - ExpandedDestinationAddressPrefix *[]string `json:"expandedDestinationAddressPrefix,omitempty"` - Access SecurityRuleAccess `json:"access,omitempty"` - Priority *int32 `json:"priority,omitempty"` - Direction SecurityRuleDirection `json:"direction,omitempty"` -} - -// EffectiveRoute is effective Route -type EffectiveRoute struct { - Name *string `json:"name,omitempty"` - Source EffectiveRouteSource `json:"source,omitempty"` - State EffectiveRouteState `json:"state,omitempty"` - AddressPrefix *[]string `json:"addressPrefix,omitempty"` - NextHopIPAddress *[]string `json:"nextHopIpAddress,omitempty"` - NextHopType RouteNextHopType `json:"nextHopType,omitempty"` -} - -// EffectiveRouteListResult is response for list effective route API service -// call. -type EffectiveRouteListResult struct { - autorest.Response `json:"-"` - Value *[]EffectiveRoute `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// Error is -type Error struct { - Code *string `json:"code,omitempty"` - Message *string `json:"message,omitempty"` - Target *string `json:"target,omitempty"` - Details *[]ErrorDetails `json:"details,omitempty"` - InnerError *string `json:"innerError,omitempty"` -} - -// ErrorDetails is -type ErrorDetails struct { - Code *string `json:"code,omitempty"` - Target *string `json:"target,omitempty"` - Message *string `json:"message,omitempty"` -} - -// ExpressRouteCircuit is expressRouteCircuit resource -type ExpressRouteCircuit struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - Sku *ExpressRouteCircuitSku `json:"sku,omitempty"` - *ExpressRouteCircuitPropertiesFormat `json:"properties,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ExpressRouteCircuitArpTable is the ARP table associated with the -// ExpressRouteCircuit. -type ExpressRouteCircuitArpTable struct { - Age *int32 `json:"age,omitempty"` - Interface *string `json:"interface,omitempty"` - IPAddress *string `json:"ipAddress,omitempty"` - MacAddress *string `json:"macAddress,omitempty"` -} - -// ExpressRouteCircuitAuthorization is authorization in an ExpressRouteCircuit -// resource. -type ExpressRouteCircuitAuthorization struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - *AuthorizationPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ExpressRouteCircuitListResult is response for ListExpressRouteCircuit API -// service call. -type ExpressRouteCircuitListResult struct { - autorest.Response `json:"-"` - Value *[]ExpressRouteCircuit `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// ExpressRouteCircuitListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client ExpressRouteCircuitListResult) ExpressRouteCircuitListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// ExpressRouteCircuitPeering is peering in an ExpressRouteCircuit resource. -type ExpressRouteCircuitPeering struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - *ExpressRouteCircuitPeeringPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ExpressRouteCircuitPeeringConfig is specifies the peering configuration. -type ExpressRouteCircuitPeeringConfig struct { - AdvertisedPublicPrefixes *[]string `json:"advertisedPublicPrefixes,omitempty"` - AdvertisedPublicPrefixesState ExpressRouteCircuitPeeringAdvertisedPublicPrefixState `json:"advertisedPublicPrefixesState,omitempty"` - CustomerASN *int32 `json:"customerASN,omitempty"` - RoutingRegistryName *string `json:"routingRegistryName,omitempty"` -} - -// ExpressRouteCircuitPeeringListResult is response for ListPeering API -// service call retrieves all peerings that belong to an ExpressRouteCircuit. -type ExpressRouteCircuitPeeringListResult struct { - autorest.Response `json:"-"` - Value *[]ExpressRouteCircuitPeering `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// ExpressRouteCircuitPeeringListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client ExpressRouteCircuitPeeringListResult) ExpressRouteCircuitPeeringListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// ExpressRouteCircuitPeeringPropertiesFormat is -type ExpressRouteCircuitPeeringPropertiesFormat struct { - PeeringType ExpressRouteCircuitPeeringType `json:"peeringType,omitempty"` - State ExpressRouteCircuitPeeringState `json:"state,omitempty"` - AzureASN *int32 `json:"azureASN,omitempty"` - PeerASN *int32 `json:"peerASN,omitempty"` - PrimaryPeerAddressPrefix *string `json:"primaryPeerAddressPrefix,omitempty"` - SecondaryPeerAddressPrefix *string `json:"secondaryPeerAddressPrefix,omitempty"` - PrimaryAzurePort *string `json:"primaryAzurePort,omitempty"` - SecondaryAzurePort *string `json:"secondaryAzurePort,omitempty"` - SharedKey *string `json:"sharedKey,omitempty"` - VlanID *int32 `json:"vlanId,omitempty"` - MicrosoftPeeringConfig *ExpressRouteCircuitPeeringConfig `json:"microsoftPeeringConfig,omitempty"` - Stats *ExpressRouteCircuitStats `json:"stats,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` - GatewayManagerEtag *string `json:"gatewayManagerEtag,omitempty"` - LastModifiedBy *string `json:"lastModifiedBy,omitempty"` -} - -// ExpressRouteCircuitPropertiesFormat is properties of ExpressRouteCircuit. -type ExpressRouteCircuitPropertiesFormat struct { - AllowClassicOperations *bool `json:"allowClassicOperations,omitempty"` - CircuitProvisioningState *string `json:"circuitProvisioningState,omitempty"` - ServiceProviderProvisioningState ServiceProviderProvisioningState `json:"serviceProviderProvisioningState,omitempty"` - Authorizations *[]ExpressRouteCircuitAuthorization `json:"authorizations,omitempty"` - Peerings *[]ExpressRouteCircuitPeering `json:"peerings,omitempty"` - ServiceKey *string `json:"serviceKey,omitempty"` - ServiceProviderNotes *string `json:"serviceProviderNotes,omitempty"` - ServiceProviderProperties *ExpressRouteCircuitServiceProviderProperties `json:"serviceProviderProperties,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` - GatewayManagerEtag *string `json:"gatewayManagerEtag,omitempty"` -} - -// ExpressRouteCircuitRoutesTable is the routes table associated with the -// ExpressRouteCircuit -type ExpressRouteCircuitRoutesTable struct { - Network *string `json:"network,omitempty"` - NextHop *string `json:"nextHop,omitempty"` - LocPrf *string `json:"locPrf,omitempty"` - Weight *int32 `json:"weight,omitempty"` - Path *string `json:"path,omitempty"` -} - -// ExpressRouteCircuitRoutesTableSummary is the routes table associated with -// the ExpressRouteCircuit. -type ExpressRouteCircuitRoutesTableSummary struct { - Neighbor *string `json:"neighbor,omitempty"` - V *int32 `json:"v,omitempty"` - As *int32 `json:"as,omitempty"` - UpDown *string `json:"upDown,omitempty"` - StatePfxRcd *string `json:"statePfxRcd,omitempty"` -} - -// ExpressRouteCircuitsArpTableListResult is response for ListArpTable -// associated with the Express Route Circuits API. -type ExpressRouteCircuitsArpTableListResult struct { - autorest.Response `json:"-"` - Value *[]ExpressRouteCircuitArpTable `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// ExpressRouteCircuitServiceProviderProperties is contains -// ServiceProviderProperties in an ExpressRouteCircuit. -type ExpressRouteCircuitServiceProviderProperties struct { - ServiceProviderName *string `json:"serviceProviderName,omitempty"` - PeeringLocation *string `json:"peeringLocation,omitempty"` - BandwidthInMbps *int32 `json:"bandwidthInMbps,omitempty"` -} - -// ExpressRouteCircuitSku is contains SKU in an ExpressRouteCircuit. -type ExpressRouteCircuitSku struct { - Name *string `json:"name,omitempty"` - Tier ExpressRouteCircuitSkuTier `json:"tier,omitempty"` - Family ExpressRouteCircuitSkuFamily `json:"family,omitempty"` -} - -// ExpressRouteCircuitsRoutesTableListResult is response for ListRoutesTable -// associated with the Express Route Circuits API. -type ExpressRouteCircuitsRoutesTableListResult struct { - autorest.Response `json:"-"` - Value *[]ExpressRouteCircuitRoutesTable `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// ExpressRouteCircuitsRoutesTableSummaryListResult is response for -// ListRoutesTable associated with the Express Route Circuits API. -type ExpressRouteCircuitsRoutesTableSummaryListResult struct { - autorest.Response `json:"-"` - Value *[]ExpressRouteCircuitRoutesTableSummary `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// ExpressRouteCircuitStats is contains stats associated with the peering. -type ExpressRouteCircuitStats struct { - autorest.Response `json:"-"` - PrimarybytesIn *int64 `json:"primarybytesIn,omitempty"` - PrimarybytesOut *int64 `json:"primarybytesOut,omitempty"` - SecondarybytesIn *int64 `json:"secondarybytesIn,omitempty"` - SecondarybytesOut *int64 `json:"secondarybytesOut,omitempty"` -} - -// ExpressRouteServiceProvider is a ExpressRouteResourceProvider object. -type ExpressRouteServiceProvider struct { - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - *ExpressRouteServiceProviderPropertiesFormat `json:"properties,omitempty"` -} - -// ExpressRouteServiceProviderBandwidthsOffered is contains bandwidths offered -// in ExpressRouteServiceProvider resources. -type ExpressRouteServiceProviderBandwidthsOffered struct { - OfferName *string `json:"offerName,omitempty"` - ValueInMbps *int32 `json:"valueInMbps,omitempty"` -} - -// ExpressRouteServiceProviderListResult is response for the -// ListExpressRouteServiceProvider API service call. -type ExpressRouteServiceProviderListResult struct { - autorest.Response `json:"-"` - Value *[]ExpressRouteServiceProvider `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// ExpressRouteServiceProviderListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client ExpressRouteServiceProviderListResult) ExpressRouteServiceProviderListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// ExpressRouteServiceProviderPropertiesFormat is properties of -// ExpressRouteServiceProvider. -type ExpressRouteServiceProviderPropertiesFormat struct { - PeeringLocations *[]string `json:"peeringLocations,omitempty"` - BandwidthsOffered *[]ExpressRouteServiceProviderBandwidthsOffered `json:"bandwidthsOffered,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// FrontendIPConfiguration is frontend IP address of the load balancer. -type FrontendIPConfiguration struct { - ID *string `json:"id,omitempty"` - *FrontendIPConfigurationPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// FrontendIPConfigurationPropertiesFormat is properties of Frontend IP -// Configuration of the load balancer. -type FrontendIPConfigurationPropertiesFormat struct { - InboundNatRules *[]SubResource `json:"inboundNatRules,omitempty"` - InboundNatPools *[]SubResource `json:"inboundNatPools,omitempty"` - OutboundNatRules *[]SubResource `json:"outboundNatRules,omitempty"` - LoadBalancingRules *[]SubResource `json:"loadBalancingRules,omitempty"` - PrivateIPAddress *string `json:"privateIPAddress,omitempty"` - PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"` - Subnet *Subnet `json:"subnet,omitempty"` - PublicIPAddress *PublicIPAddress `json:"publicIPAddress,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// InboundNatPool is inbound NAT pool of the load balancer. -type InboundNatPool struct { - ID *string `json:"id,omitempty"` - *InboundNatPoolPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// InboundNatPoolPropertiesFormat is properties of Inbound NAT pool. -type InboundNatPoolPropertiesFormat struct { - FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"` - Protocol TransportProtocol `json:"protocol,omitempty"` - FrontendPortRangeStart *int32 `json:"frontendPortRangeStart,omitempty"` - FrontendPortRangeEnd *int32 `json:"frontendPortRangeEnd,omitempty"` - BackendPort *int32 `json:"backendPort,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// InboundNatRule is inbound NAT rule of the load balancer. -type InboundNatRule struct { - ID *string `json:"id,omitempty"` - *InboundNatRulePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// InboundNatRulePropertiesFormat is properties of the inbound NAT rule. -type InboundNatRulePropertiesFormat struct { - FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"` - BackendIPConfiguration *InterfaceIPConfiguration `json:"backendIPConfiguration,omitempty"` - Protocol TransportProtocol `json:"protocol,omitempty"` - FrontendPort *int32 `json:"frontendPort,omitempty"` - BackendPort *int32 `json:"backendPort,omitempty"` - IdleTimeoutInMinutes *int32 `json:"idleTimeoutInMinutes,omitempty"` - EnableFloatingIP *bool `json:"enableFloatingIP,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// Interface is a network interface in a resource group. -type Interface struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - *InterfacePropertiesFormat `json:"properties,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// InterfaceDNSSettings is dNS settings of a network interface. -type InterfaceDNSSettings struct { - DNSServers *[]string `json:"dnsServers,omitempty"` - AppliedDNSServers *[]string `json:"appliedDnsServers,omitempty"` - InternalDNSNameLabel *string `json:"internalDnsNameLabel,omitempty"` - InternalFqdn *string `json:"internalFqdn,omitempty"` - InternalDomainNameSuffix *string `json:"internalDomainNameSuffix,omitempty"` -} - -// InterfaceIPConfiguration is iPConfiguration in a network interface. -type InterfaceIPConfiguration struct { - ID *string `json:"id,omitempty"` - *InterfaceIPConfigurationPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// InterfaceIPConfigurationPropertiesFormat is properties of IP configuration. -type InterfaceIPConfigurationPropertiesFormat struct { - ApplicationGatewayBackendAddressPools *[]ApplicationGatewayBackendAddressPool `json:"applicationGatewayBackendAddressPools,omitempty"` - LoadBalancerBackendAddressPools *[]BackendAddressPool `json:"loadBalancerBackendAddressPools,omitempty"` - LoadBalancerInboundNatRules *[]InboundNatRule `json:"loadBalancerInboundNatRules,omitempty"` - PrivateIPAddress *string `json:"privateIPAddress,omitempty"` - PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"` - PrivateIPAddressVersion IPVersion `json:"privateIPAddressVersion,omitempty"` - Subnet *Subnet `json:"subnet,omitempty"` - Primary *bool `json:"primary,omitempty"` - PublicIPAddress *PublicIPAddress `json:"publicIPAddress,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// InterfaceListResult is response for the ListNetworkInterface API service -// call. -type InterfaceListResult struct { - autorest.Response `json:"-"` - Value *[]Interface `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// InterfaceListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client InterfaceListResult) InterfaceListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// InterfacePropertiesFormat is networkInterface properties. -type InterfacePropertiesFormat struct { - VirtualMachine *SubResource `json:"virtualMachine,omitempty"` - NetworkSecurityGroup *SecurityGroup `json:"networkSecurityGroup,omitempty"` - IPConfigurations *[]InterfaceIPConfiguration `json:"ipConfigurations,omitempty"` - DNSSettings *InterfaceDNSSettings `json:"dnsSettings,omitempty"` - MacAddress *string `json:"macAddress,omitempty"` - Primary *bool `json:"primary,omitempty"` - EnableAcceleratedNetworking *bool `json:"enableAcceleratedNetworking,omitempty"` - EnableIPForwarding *bool `json:"enableIPForwarding,omitempty"` - ResourceGUID *string `json:"resourceGuid,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// IPAddressAvailabilityResult is response for CheckIPAddressAvailability API -// service call -type IPAddressAvailabilityResult struct { - autorest.Response `json:"-"` - Available *bool `json:"available,omitempty"` - AvailableIPAddresses *[]string `json:"availableIPAddresses,omitempty"` -} - -// IPConfiguration is iPConfiguration -type IPConfiguration struct { - ID *string `json:"id,omitempty"` - *IPConfigurationPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// IPConfigurationPropertiesFormat is properties of IP configuration. -type IPConfigurationPropertiesFormat struct { - PrivateIPAddress *string `json:"privateIPAddress,omitempty"` - PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"` - Subnet *Subnet `json:"subnet,omitempty"` - PublicIPAddress *PublicIPAddress `json:"publicIPAddress,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// LoadBalancer is loadBalancer resource -type LoadBalancer struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - *LoadBalancerPropertiesFormat `json:"properties,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// LoadBalancerListResult is response for ListLoadBalancers API service call. -type LoadBalancerListResult struct { - autorest.Response `json:"-"` - Value *[]LoadBalancer `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// LoadBalancerListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client LoadBalancerListResult) LoadBalancerListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// LoadBalancerPropertiesFormat is properties of the load balancer. -type LoadBalancerPropertiesFormat struct { - FrontendIPConfigurations *[]FrontendIPConfiguration `json:"frontendIPConfigurations,omitempty"` - BackendAddressPools *[]BackendAddressPool `json:"backendAddressPools,omitempty"` - LoadBalancingRules *[]LoadBalancingRule `json:"loadBalancingRules,omitempty"` - Probes *[]Probe `json:"probes,omitempty"` - InboundNatRules *[]InboundNatRule `json:"inboundNatRules,omitempty"` - InboundNatPools *[]InboundNatPool `json:"inboundNatPools,omitempty"` - OutboundNatRules *[]OutboundNatRule `json:"outboundNatRules,omitempty"` - ResourceGUID *string `json:"resourceGuid,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// LoadBalancingRule is a loag balancing rule for a load balancer. -type LoadBalancingRule struct { - ID *string `json:"id,omitempty"` - *LoadBalancingRulePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// LoadBalancingRulePropertiesFormat is properties of the load balancer. -type LoadBalancingRulePropertiesFormat struct { - FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"` - BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"` - Probe *SubResource `json:"probe,omitempty"` - Protocol TransportProtocol `json:"protocol,omitempty"` - LoadDistribution LoadDistribution `json:"loadDistribution,omitempty"` - FrontendPort *int32 `json:"frontendPort,omitempty"` - BackendPort *int32 `json:"backendPort,omitempty"` - IdleTimeoutInMinutes *int32 `json:"idleTimeoutInMinutes,omitempty"` - EnableFloatingIP *bool `json:"enableFloatingIP,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// LocalNetworkGateway is a common class for general resource information -type LocalNetworkGateway struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - *LocalNetworkGatewayPropertiesFormat `json:"properties,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// LocalNetworkGatewayListResult is response for ListLocalNetworkGateways API -// service call. -type LocalNetworkGatewayListResult struct { - autorest.Response `json:"-"` - Value *[]LocalNetworkGateway `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// LocalNetworkGatewayListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client LocalNetworkGatewayListResult) LocalNetworkGatewayListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// LocalNetworkGatewayPropertiesFormat is localNetworkGateway properties -type LocalNetworkGatewayPropertiesFormat struct { - LocalNetworkAddressSpace *AddressSpace `json:"localNetworkAddressSpace,omitempty"` - GatewayIPAddress *string `json:"gatewayIpAddress,omitempty"` - BgpSettings *BgpSettings `json:"bgpSettings,omitempty"` - ResourceGUID *string `json:"resourceGuid,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// OutboundNatRule is outbound NAT pool of the load balancer. -type OutboundNatRule struct { - ID *string `json:"id,omitempty"` - *OutboundNatRulePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// OutboundNatRulePropertiesFormat is outbound NAT pool of the load balancer. -type OutboundNatRulePropertiesFormat struct { - AllocatedOutboundPorts *int32 `json:"allocatedOutboundPorts,omitempty"` - FrontendIPConfigurations *[]SubResource `json:"frontendIPConfigurations,omitempty"` - BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// Probe is a load balancer probe. -type Probe struct { - ID *string `json:"id,omitempty"` - *ProbePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ProbePropertiesFormat is -type ProbePropertiesFormat struct { - LoadBalancingRules *[]SubResource `json:"loadBalancingRules,omitempty"` - Protocol ProbeProtocol `json:"protocol,omitempty"` - Port *int32 `json:"port,omitempty"` - IntervalInSeconds *int32 `json:"intervalInSeconds,omitempty"` - NumberOfProbes *int32 `json:"numberOfProbes,omitempty"` - RequestPath *string `json:"requestPath,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// PublicIPAddress is public IP address resource. -type PublicIPAddress struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - *PublicIPAddressPropertiesFormat `json:"properties,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// PublicIPAddressDNSSettings is contains the FQDN of the DNS record -// associated with the public IP address. -type PublicIPAddressDNSSettings struct { - DomainNameLabel *string `json:"domainNameLabel,omitempty"` - Fqdn *string `json:"fqdn,omitempty"` - ReverseFqdn *string `json:"reverseFqdn,omitempty"` -} - -// PublicIPAddressListResult is response for ListPublicIpAddresses API service -// call. -type PublicIPAddressListResult struct { - autorest.Response `json:"-"` - Value *[]PublicIPAddress `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// PublicIPAddressListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client PublicIPAddressListResult) PublicIPAddressListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// PublicIPAddressPropertiesFormat is public IP address properties. -type PublicIPAddressPropertiesFormat struct { - PublicIPAllocationMethod IPAllocationMethod `json:"publicIPAllocationMethod,omitempty"` - PublicIPAddressVersion IPVersion `json:"publicIPAddressVersion,omitempty"` - IPConfiguration *IPConfiguration `json:"ipConfiguration,omitempty"` - DNSSettings *PublicIPAddressDNSSettings `json:"dnsSettings,omitempty"` - IPAddress *string `json:"ipAddress,omitempty"` - IdleTimeoutInMinutes *int32 `json:"idleTimeoutInMinutes,omitempty"` - ResourceGUID *string `json:"resourceGuid,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// Resource is -type Resource struct { - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` -} - -// ResourceNavigationLink is resourceNavigationLink resource. -type ResourceNavigationLink struct { - ID *string `json:"id,omitempty"` - *ResourceNavigationLinkFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// ResourceNavigationLinkFormat is properties of ResourceNavigationLink. -type ResourceNavigationLinkFormat struct { - LinkedResourceType *string `json:"linkedResourceType,omitempty"` - Link *string `json:"link,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// Route is route resource -type Route struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - *RoutePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// RouteListResult is response for the ListRoute API service call -type RouteListResult struct { - autorest.Response `json:"-"` - Value *[]Route `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// RouteListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client RouteListResult) RouteListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// RoutePropertiesFormat is route resource -type RoutePropertiesFormat struct { - AddressPrefix *string `json:"addressPrefix,omitempty"` - NextHopType RouteNextHopType `json:"nextHopType,omitempty"` - NextHopIPAddress *string `json:"nextHopIpAddress,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// RouteTable is route table resource. -type RouteTable struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - *RouteTablePropertiesFormat `json:"properties,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// RouteTableListResult is response for the ListRouteTable API service call. -type RouteTableListResult struct { - autorest.Response `json:"-"` - Value *[]RouteTable `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// RouteTableListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client RouteTableListResult) RouteTableListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// RouteTablePropertiesFormat is route Table resource -type RouteTablePropertiesFormat struct { - Routes *[]Route `json:"routes,omitempty"` - Subnets *[]Subnet `json:"subnets,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// SecurityGroup is networkSecurityGroup resource. -type SecurityGroup struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - *SecurityGroupPropertiesFormat `json:"properties,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// SecurityGroupListResult is response for ListNetworkSecurityGroups API -// service call. -type SecurityGroupListResult struct { - autorest.Response `json:"-"` - Value *[]SecurityGroup `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// SecurityGroupListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client SecurityGroupListResult) SecurityGroupListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// SecurityGroupPropertiesFormat is network Security Group resource. -type SecurityGroupPropertiesFormat struct { - SecurityRules *[]SecurityRule `json:"securityRules,omitempty"` - DefaultSecurityRules *[]SecurityRule `json:"defaultSecurityRules,omitempty"` - NetworkInterfaces *[]Interface `json:"networkInterfaces,omitempty"` - Subnets *[]Subnet `json:"subnets,omitempty"` - ResourceGUID *string `json:"resourceGuid,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// SecurityRule is network security rule. -type SecurityRule struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - *SecurityRulePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// SecurityRuleListResult is response for ListSecurityRule API service call. -// Retrieves all security rules that belongs to a network security group. -type SecurityRuleListResult struct { - autorest.Response `json:"-"` - Value *[]SecurityRule `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// SecurityRuleListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client SecurityRuleListResult) SecurityRuleListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// SecurityRulePropertiesFormat is -type SecurityRulePropertiesFormat struct { - Description *string `json:"description,omitempty"` - Protocol SecurityRuleProtocol `json:"protocol,omitempty"` - SourcePortRange *string `json:"sourcePortRange,omitempty"` - DestinationPortRange *string `json:"destinationPortRange,omitempty"` - SourceAddressPrefix *string `json:"sourceAddressPrefix,omitempty"` - DestinationAddressPrefix *string `json:"destinationAddressPrefix,omitempty"` - Access SecurityRuleAccess `json:"access,omitempty"` - Priority *int32 `json:"priority,omitempty"` - Direction SecurityRuleDirection `json:"direction,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// String is -type String struct { - autorest.Response `json:"-"` - Value *string `json:"value,omitempty"` -} - -// Subnet is subnet in a virtual network resource. -type Subnet struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - *SubnetPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// SubnetListResult is response for ListSubnets API service callRetrieves all -// subnet that belongs to a virtual network -type SubnetListResult struct { - autorest.Response `json:"-"` - Value *[]Subnet `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// SubnetListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client SubnetListResult) SubnetListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// SubnetPropertiesFormat is -type SubnetPropertiesFormat struct { - AddressPrefix *string `json:"addressPrefix,omitempty"` - NetworkSecurityGroup *SecurityGroup `json:"networkSecurityGroup,omitempty"` - RouteTable *RouteTable `json:"routeTable,omitempty"` - IPConfigurations *[]IPConfiguration `json:"ipConfigurations,omitempty"` - ResourceNavigationLinks *[]ResourceNavigationLink `json:"resourceNavigationLinks,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// SubResource is -type SubResource struct { - ID *string `json:"id,omitempty"` -} - -// TunnelConnectionHealth is virtualNetworkGatewayConnection properties -type TunnelConnectionHealth struct { - Tunnel *string `json:"tunnel,omitempty"` - ConnectionStatus VirtualNetworkGatewayConnectionStatus `json:"connectionStatus,omitempty"` - IngressBytesTransferred *int64 `json:"ingressBytesTransferred,omitempty"` - EgressBytesTransferred *int64 `json:"egressBytesTransferred,omitempty"` - LastConnectionEstablishedUtcTime *string `json:"lastConnectionEstablishedUtcTime,omitempty"` -} - -// Usage is describes network resource usage. -type Usage struct { - Unit *string `json:"unit,omitempty"` - CurrentValue *int64 `json:"currentValue,omitempty"` - Limit *int64 `json:"limit,omitempty"` - Name *UsageName `json:"name,omitempty"` -} - -// UsageName is the usage names. -type UsageName struct { - Value *string `json:"value,omitempty"` - LocalizedValue *string `json:"localizedValue,omitempty"` -} - -// UsagesListResult is the list usages operation response. -type UsagesListResult struct { - autorest.Response `json:"-"` - Value *[]Usage `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// UsagesListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client UsagesListResult) UsagesListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// VirtualNetwork is virtual Network resource. -type VirtualNetwork struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - *VirtualNetworkPropertiesFormat `json:"properties,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// VirtualNetworkGateway is a common class for general resource information -type VirtualNetworkGateway struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - *VirtualNetworkGatewayPropertiesFormat `json:"properties,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// VirtualNetworkGatewayConnection is a common class for general resource -// information -type VirtualNetworkGatewayConnection struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - Name *string `json:"name,omitempty"` - Type *string `json:"type,omitempty"` - Location *string `json:"location,omitempty"` - Tags *map[string]*string `json:"tags,omitempty"` - *VirtualNetworkGatewayConnectionPropertiesFormat `json:"properties,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// VirtualNetworkGatewayConnectionListResult is response for the -// ListVirtualNetworkGatewayConnections API service call -type VirtualNetworkGatewayConnectionListResult struct { - autorest.Response `json:"-"` - Value *[]VirtualNetworkGatewayConnection `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// VirtualNetworkGatewayConnectionListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client VirtualNetworkGatewayConnectionListResult) VirtualNetworkGatewayConnectionListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// VirtualNetworkGatewayConnectionPropertiesFormat is -// virtualNetworkGatewayConnection properties -type VirtualNetworkGatewayConnectionPropertiesFormat struct { - AuthorizationKey *string `json:"authorizationKey,omitempty"` - VirtualNetworkGateway1 *VirtualNetworkGateway `json:"virtualNetworkGateway1,omitempty"` - VirtualNetworkGateway2 *VirtualNetworkGateway `json:"virtualNetworkGateway2,omitempty"` - LocalNetworkGateway2 *LocalNetworkGateway `json:"localNetworkGateway2,omitempty"` - ConnectionType VirtualNetworkGatewayConnectionType `json:"connectionType,omitempty"` - RoutingWeight *int32 `json:"routingWeight,omitempty"` - SharedKey *string `json:"sharedKey,omitempty"` - ConnectionStatus VirtualNetworkGatewayConnectionStatus `json:"connectionStatus,omitempty"` - TunnelConnectionStatus *[]TunnelConnectionHealth `json:"tunnelConnectionStatus,omitempty"` - EgressBytesTransferred *int64 `json:"egressBytesTransferred,omitempty"` - IngressBytesTransferred *int64 `json:"ingressBytesTransferred,omitempty"` - Peer *SubResource `json:"peer,omitempty"` - EnableBgp *bool `json:"enableBgp,omitempty"` - ResourceGUID *string `json:"resourceGuid,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// VirtualNetworkGatewayIPConfiguration is iP configuration for virtual -// network gateway -type VirtualNetworkGatewayIPConfiguration struct { - ID *string `json:"id,omitempty"` - *VirtualNetworkGatewayIPConfigurationPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// VirtualNetworkGatewayIPConfigurationPropertiesFormat is properties of -// VirtualNetworkGatewayIPConfiguration -type VirtualNetworkGatewayIPConfigurationPropertiesFormat struct { - PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"` - Subnet *SubResource `json:"subnet,omitempty"` - PublicIPAddress *SubResource `json:"publicIPAddress,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// VirtualNetworkGatewayListResult is response for the -// ListVirtualNetworkGateways API service call. -type VirtualNetworkGatewayListResult struct { - autorest.Response `json:"-"` - Value *[]VirtualNetworkGateway `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// VirtualNetworkGatewayListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client VirtualNetworkGatewayListResult) VirtualNetworkGatewayListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// VirtualNetworkGatewayPropertiesFormat is virtualNetworkGateway properties -type VirtualNetworkGatewayPropertiesFormat struct { - IPConfigurations *[]VirtualNetworkGatewayIPConfiguration `json:"ipConfigurations,omitempty"` - GatewayType VirtualNetworkGatewayType `json:"gatewayType,omitempty"` - VpnType VpnType `json:"vpnType,omitempty"` - EnableBgp *bool `json:"enableBgp,omitempty"` - ActiveActive *bool `json:"activeActive,omitempty"` - GatewayDefaultSite *SubResource `json:"gatewayDefaultSite,omitempty"` - Sku *VirtualNetworkGatewaySku `json:"sku,omitempty"` - VpnClientConfiguration *VpnClientConfiguration `json:"vpnClientConfiguration,omitempty"` - BgpSettings *BgpSettings `json:"bgpSettings,omitempty"` - ResourceGUID *string `json:"resourceGuid,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// VirtualNetworkGatewaySku is virtualNetworkGatewaySku details -type VirtualNetworkGatewaySku struct { - Name VirtualNetworkGatewaySkuName `json:"name,omitempty"` - Tier VirtualNetworkGatewaySkuTier `json:"tier,omitempty"` - Capacity *int32 `json:"capacity,omitempty"` -} - -// VirtualNetworkListResult is response for the ListVirtualNetworks API -// service call. -type VirtualNetworkListResult struct { - autorest.Response `json:"-"` - Value *[]VirtualNetwork `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// VirtualNetworkListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client VirtualNetworkListResult) VirtualNetworkListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// VirtualNetworkPeering is peerings in a virtual network resource. -type VirtualNetworkPeering struct { - autorest.Response `json:"-"` - ID *string `json:"id,omitempty"` - *VirtualNetworkPeeringPropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// VirtualNetworkPeeringListResult is response for ListSubnets API service -// call. Retrieves all subnets that belong to a virtual network. -type VirtualNetworkPeeringListResult struct { - autorest.Response `json:"-"` - Value *[]VirtualNetworkPeering `json:"value,omitempty"` - NextLink *string `json:"nextLink,omitempty"` -} - -// VirtualNetworkPeeringListResultPreparer prepares a request to retrieve the next set of results. It returns -// nil if no more results exist. -func (client VirtualNetworkPeeringListResult) VirtualNetworkPeeringListResultPreparer() (*http.Request, error) { - if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 { - return nil, nil - } - return autorest.Prepare(&http.Request{}, - autorest.AsJSON(), - autorest.AsGet(), - autorest.WithBaseURL(to.String(client.NextLink))) -} - -// VirtualNetworkPeeringPropertiesFormat is -type VirtualNetworkPeeringPropertiesFormat struct { - AllowVirtualNetworkAccess *bool `json:"allowVirtualNetworkAccess,omitempty"` - AllowForwardedTraffic *bool `json:"allowForwardedTraffic,omitempty"` - AllowGatewayTransit *bool `json:"allowGatewayTransit,omitempty"` - UseRemoteGateways *bool `json:"useRemoteGateways,omitempty"` - RemoteVirtualNetwork *SubResource `json:"remoteVirtualNetwork,omitempty"` - PeeringState VirtualNetworkPeeringState `json:"peeringState,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// VirtualNetworkPropertiesFormat is -type VirtualNetworkPropertiesFormat struct { - AddressSpace *AddressSpace `json:"addressSpace,omitempty"` - DhcpOptions *DhcpOptions `json:"dhcpOptions,omitempty"` - Subnets *[]Subnet `json:"subnets,omitempty"` - VirtualNetworkPeerings *[]VirtualNetworkPeering `json:"virtualNetworkPeerings,omitempty"` - ResourceGUID *string `json:"resourceGuid,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// VpnClientConfiguration is vpnClientConfiguration for P2S client. -type VpnClientConfiguration struct { - VpnClientAddressPool *AddressSpace `json:"vpnClientAddressPool,omitempty"` - VpnClientRootCertificates *[]VpnClientRootCertificate `json:"vpnClientRootCertificates,omitempty"` - VpnClientRevokedCertificates *[]VpnClientRevokedCertificate `json:"vpnClientRevokedCertificates,omitempty"` -} - -// VpnClientParameters is vpnClientParameters -type VpnClientParameters struct { - ProcessorArchitecture ProcessorArchitecture `json:"ProcessorArchitecture,omitempty"` -} - -// VpnClientRevokedCertificate is vPN client revoked certificate of virtual -// network gateway. -type VpnClientRevokedCertificate struct { - ID *string `json:"id,omitempty"` - *VpnClientRevokedCertificatePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// VpnClientRevokedCertificatePropertiesFormat is properties of the revoked -// VPN client certificate of virtual network gateway. -type VpnClientRevokedCertificatePropertiesFormat struct { - Thumbprint *string `json:"thumbprint,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} - -// VpnClientRootCertificate is vPN client root certificate of virtual network -// gateway -type VpnClientRootCertificate struct { - ID *string `json:"id,omitempty"` - *VpnClientRootCertificatePropertiesFormat `json:"properties,omitempty"` - Name *string `json:"name,omitempty"` - Etag *string `json:"etag,omitempty"` -} - -// VpnClientRootCertificatePropertiesFormat is properties of SSL certificates -// of application gateway -type VpnClientRootCertificatePropertiesFormat struct { - PublicCertData *string `json:"publicCertData,omitempty"` - ProvisioningState *string `json:"provisioningState,omitempty"` -} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworkgatewayconnections.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworkgatewayconnections.go deleted file mode 100644 index 922bd5732..000000000 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworkgatewayconnections.go +++ /dev/null @@ -1,584 +0,0 @@ -package network - -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -import ( - "github.com/Azure/go-autorest/autorest" - "github.com/Azure/go-autorest/autorest/azure" - "github.com/Azure/go-autorest/autorest/validation" - "net/http" -) - -// VirtualNetworkGatewayConnectionsClient is the the Microsoft Azure Network -// management API provides a RESTful set of web services that interact with -// Microsoft Azure Networks service to manage your network resources. The API -// has entities that capture the relationship between an end user and the -// Microsoft Azure Networks service. -type VirtualNetworkGatewayConnectionsClient struct { - ManagementClient -} - -// NewVirtualNetworkGatewayConnectionsClient creates an instance of the -// VirtualNetworkGatewayConnectionsClient client. -func NewVirtualNetworkGatewayConnectionsClient(subscriptionID string) VirtualNetworkGatewayConnectionsClient { - return NewVirtualNetworkGatewayConnectionsClientWithBaseURI(DefaultBaseURI, subscriptionID) -} - -// NewVirtualNetworkGatewayConnectionsClientWithBaseURI creates an instance of -// the VirtualNetworkGatewayConnectionsClient client. -func NewVirtualNetworkGatewayConnectionsClientWithBaseURI(baseURI string, subscriptionID string) VirtualNetworkGatewayConnectionsClient { - return VirtualNetworkGatewayConnectionsClient{NewWithBaseURI(baseURI, subscriptionID)} -} - -// CreateOrUpdate creates or updates a virtual network gateway connection in -// the specified resource group. This method may poll for completion. Polling -// can be canceled by passing the cancel channel argument. The channel will -// be used to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. -// virtualNetworkGatewayConnectionName is the name of the virtual network -// gateway connection. parameters is parameters supplied to the create or -// update virtual network gateway connection operation. -func (client VirtualNetworkGatewayConnectionsClient) CreateOrUpdate(resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters VirtualNetworkGatewayConnection, cancel <-chan struct{}) (result autorest.Response, err error) { - if err := validation.Validate([]validation.Validation{ - {TargetValue: parameters, - Constraints: []validation.Constraint{{Target: "parameters.VirtualNetworkGatewayConnectionPropertiesFormat", Name: validation.Null, Rule: true, - Chain: []validation.Constraint{{Target: "parameters.VirtualNetworkGatewayConnectionPropertiesFormat.VirtualNetworkGateway1", Name: validation.Null, Rule: true, - Chain: []validation.Constraint{{Target: "parameters.VirtualNetworkGatewayConnectionPropertiesFormat.VirtualNetworkGateway1.VirtualNetworkGatewayPropertiesFormat", Name: validation.Null, Rule: true, - Chain: []validation.Constraint{{Target: "parameters.VirtualNetworkGatewayConnectionPropertiesFormat.VirtualNetworkGateway1.VirtualNetworkGatewayPropertiesFormat.IPConfigurations", Name: validation.Null, Rule: true, Chain: nil}}}, - }}, - {Target: "parameters.VirtualNetworkGatewayConnectionPropertiesFormat.VirtualNetworkGateway2", Name: validation.Null, Rule: false, - Chain: []validation.Constraint{{Target: "parameters.VirtualNetworkGatewayConnectionPropertiesFormat.VirtualNetworkGateway2.VirtualNetworkGatewayPropertiesFormat", Name: validation.Null, Rule: true, - Chain: []validation.Constraint{{Target: "parameters.VirtualNetworkGatewayConnectionPropertiesFormat.VirtualNetworkGateway2.VirtualNetworkGatewayPropertiesFormat.IPConfigurations", Name: validation.Null, Rule: true, Chain: nil}}}, - }}, - {Target: "parameters.VirtualNetworkGatewayConnectionPropertiesFormat.LocalNetworkGateway2", Name: validation.Null, Rule: false, - Chain: []validation.Constraint{{Target: "parameters.VirtualNetworkGatewayConnectionPropertiesFormat.LocalNetworkGateway2.LocalNetworkGatewayPropertiesFormat", Name: validation.Null, Rule: true, - Chain: []validation.Constraint{{Target: "parameters.VirtualNetworkGatewayConnectionPropertiesFormat.LocalNetworkGateway2.LocalNetworkGatewayPropertiesFormat.LocalNetworkAddressSpace", Name: validation.Null, Rule: true, Chain: nil}}}, - }}, - }}}}}); err != nil { - return result, validation.NewErrorWithValidationError(err, "network.VirtualNetworkGatewayConnectionsClient", "CreateOrUpdate") - } - - req, err := client.CreateOrUpdatePreparer(resourceGroupName, virtualNetworkGatewayConnectionName, parameters, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "CreateOrUpdate", nil, "Failure preparing request") - } - - resp, err := client.CreateOrUpdateSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "CreateOrUpdate", resp, "Failure responding to request") - } - - return -} - -// CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client VirtualNetworkGatewayConnectionsClient) CreateOrUpdatePreparer(resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters VirtualNetworkGatewayConnection, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - "virtualNetworkGatewayConnectionName": autorest.Encode("path", virtualNetworkGatewayConnectionName), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsJSON(), - autorest.AsPut(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}", pathParameters), - autorest.WithJSON(parameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworkGatewayConnectionsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always -// closes the http.Response Body. -func (client VirtualNetworkGatewayConnectionsClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), - autorest.ByClosing()) - result.Response = resp - return -} - -// Delete deletes the specified virtual network Gateway connection. This -// method may poll for completion. Polling can be canceled by passing the -// cancel channel argument. The channel will be used to cancel polling and -// any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. -// virtualNetworkGatewayConnectionName is the name of the virtual network -// gateway connection. -func (client VirtualNetworkGatewayConnectionsClient) Delete(resourceGroupName string, virtualNetworkGatewayConnectionName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, virtualNetworkGatewayConnectionName, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "Delete", nil, "Failure preparing request") - } - - resp, err := client.DeleteSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "Delete", resp, "Failure responding to request") - } - - return -} - -// DeletePreparer prepares the Delete request. -func (client VirtualNetworkGatewayConnectionsClient) DeletePreparer(resourceGroupName string, virtualNetworkGatewayConnectionName string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - "virtualNetworkGatewayConnectionName": autorest.Encode("path", virtualNetworkGatewayConnectionName), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsDelete(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// DeleteSender sends the Delete request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworkGatewayConnectionsClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// DeleteResponder handles the response to the Delete request. The method always -// closes the http.Response Body. -func (client VirtualNetworkGatewayConnectionsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), - autorest.ByClosing()) - result.Response = resp - return -} - -// Get gets the specified virtual network gateway connection by resource group. -// -// resourceGroupName is the name of the resource group. -// virtualNetworkGatewayConnectionName is the name of the virtual network -// gateway connection. -func (client VirtualNetworkGatewayConnectionsClient) Get(resourceGroupName string, virtualNetworkGatewayConnectionName string) (result VirtualNetworkGatewayConnection, err error) { - req, err := client.GetPreparer(resourceGroupName, virtualNetworkGatewayConnectionName) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "Get", nil, "Failure preparing request") - } - - resp, err := client.GetSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "Get", resp, "Failure sending request") - } - - result, err = client.GetResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "Get", resp, "Failure responding to request") - } - - return -} - -// GetPreparer prepares the Get request. -func (client VirtualNetworkGatewayConnectionsClient) GetPreparer(resourceGroupName string, virtualNetworkGatewayConnectionName string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - "virtualNetworkGatewayConnectionName": autorest.Encode("path", virtualNetworkGatewayConnectionName), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// GetSender sends the Get request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworkGatewayConnectionsClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// GetResponder handles the response to the Get request. The method always -// closes the http.Response Body. -func (client VirtualNetworkGatewayConnectionsClient) GetResponder(resp *http.Response) (result VirtualNetworkGatewayConnection, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// GetSharedKey the Get VirtualNetworkGatewayConnectionSharedKey operation -// retrieves information about the specified virtual network gateway -// connection shared key through Network resource provider. -// -// resourceGroupName is the name of the resource group. -// virtualNetworkGatewayConnectionName is the virtual network gateway -// connection shared key name. -func (client VirtualNetworkGatewayConnectionsClient) GetSharedKey(resourceGroupName string, virtualNetworkGatewayConnectionName string) (result ConnectionSharedKey, err error) { - req, err := client.GetSharedKeyPreparer(resourceGroupName, virtualNetworkGatewayConnectionName) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "GetSharedKey", nil, "Failure preparing request") - } - - resp, err := client.GetSharedKeySender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "GetSharedKey", resp, "Failure sending request") - } - - result, err = client.GetSharedKeyResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "GetSharedKey", resp, "Failure responding to request") - } - - return -} - -// GetSharedKeyPreparer prepares the GetSharedKey request. -func (client VirtualNetworkGatewayConnectionsClient) GetSharedKeyPreparer(resourceGroupName string, virtualNetworkGatewayConnectionName string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - "virtualNetworkGatewayConnectionName": autorest.Encode("path", virtualNetworkGatewayConnectionName), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// GetSharedKeySender sends the GetSharedKey request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworkGatewayConnectionsClient) GetSharedKeySender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// GetSharedKeyResponder handles the response to the GetSharedKey request. The method always -// closes the http.Response Body. -func (client VirtualNetworkGatewayConnectionsClient) GetSharedKeyResponder(resp *http.Response) (result ConnectionSharedKey, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// List the List VirtualNetworkGatewayConnections operation retrieves all the -// virtual network gateways connections created. -// -// resourceGroupName is the name of the resource group. -func (client VirtualNetworkGatewayConnectionsClient) List(resourceGroupName string) (result VirtualNetworkGatewayConnectionListResult, err error) { - req, err := client.ListPreparer(resourceGroupName) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "List", nil, "Failure preparing request") - } - - resp, err := client.ListSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "List", resp, "Failure sending request") - } - - result, err = client.ListResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "List", resp, "Failure responding to request") - } - - return -} - -// ListPreparer prepares the List request. -func (client VirtualNetworkGatewayConnectionsClient) ListPreparer(resourceGroupName string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// ListSender sends the List request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworkGatewayConnectionsClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// ListResponder handles the response to the List request. The method always -// closes the http.Response Body. -func (client VirtualNetworkGatewayConnectionsClient) ListResponder(resp *http.Response) (result VirtualNetworkGatewayConnectionListResult, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// ListNextResults retrieves the next set of results, if any. -func (client VirtualNetworkGatewayConnectionsClient) ListNextResults(lastResults VirtualNetworkGatewayConnectionListResult) (result VirtualNetworkGatewayConnectionListResult, err error) { - req, err := lastResults.VirtualNetworkGatewayConnectionListResultPreparer() - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "List", nil, "Failure preparing next results request") - } - if req == nil { - return - } - - resp, err := client.ListSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "List", resp, "Failure sending next results request") - } - - result, err = client.ListResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "List", resp, "Failure responding to next results request") - } - - return -} - -// ResetSharedKey the VirtualNetworkGatewayConnectionResetSharedKey operation -// resets the virtual network gateway connection shared key for passed -// virtual network gateway connection in the specified resource group through -// Network resource provider. This method may poll for completion. Polling -// can be canceled by passing the cancel channel argument. The channel will -// be used to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. -// virtualNetworkGatewayConnectionName is the virtual network gateway -// connection reset shared key Name. parameters is parameters supplied to the -// begin reset virtual network gateway connection shared key operation -// through network resource provider. -func (client VirtualNetworkGatewayConnectionsClient) ResetSharedKey(resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters ConnectionResetSharedKey, cancel <-chan struct{}) (result autorest.Response, err error) { - if err := validation.Validate([]validation.Validation{ - {TargetValue: parameters, - Constraints: []validation.Constraint{{Target: "parameters.KeyLength", Name: validation.Null, Rule: true, - Chain: []validation.Constraint{{Target: "parameters.KeyLength", Name: validation.InclusiveMaximum, Rule: 128, Chain: nil}, - {Target: "parameters.KeyLength", Name: validation.InclusiveMinimum, Rule: 1, Chain: nil}, - }}}}}); err != nil { - return result, validation.NewErrorWithValidationError(err, "network.VirtualNetworkGatewayConnectionsClient", "ResetSharedKey") - } - - req, err := client.ResetSharedKeyPreparer(resourceGroupName, virtualNetworkGatewayConnectionName, parameters, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "ResetSharedKey", nil, "Failure preparing request") - } - - resp, err := client.ResetSharedKeySender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "ResetSharedKey", resp, "Failure sending request") - } - - result, err = client.ResetSharedKeyResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "ResetSharedKey", resp, "Failure responding to request") - } - - return -} - -// ResetSharedKeyPreparer prepares the ResetSharedKey request. -func (client VirtualNetworkGatewayConnectionsClient) ResetSharedKeyPreparer(resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters ConnectionResetSharedKey, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - "virtualNetworkGatewayConnectionName": autorest.Encode("path", virtualNetworkGatewayConnectionName), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsJSON(), - autorest.AsPost(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey/reset", pathParameters), - autorest.WithJSON(parameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// ResetSharedKeySender sends the ResetSharedKey request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworkGatewayConnectionsClient) ResetSharedKeySender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// ResetSharedKeyResponder handles the response to the ResetSharedKey request. The method always -// closes the http.Response Body. -func (client VirtualNetworkGatewayConnectionsClient) ResetSharedKeyResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), - autorest.ByClosing()) - result.Response = resp - return -} - -// SetSharedKey the Put VirtualNetworkGatewayConnectionSharedKey operation -// sets the virtual network gateway connection shared key for passed virtual -// network gateway connection in the specified resource group through Network -// resource provider. This method may poll for completion. Polling can be -// canceled by passing the cancel channel argument. The channel will be used -// to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. -// virtualNetworkGatewayConnectionName is the virtual network gateway -// connection name. parameters is parameters supplied to the Begin Set -// Virtual Network Gateway connection Shared key operation throughNetwork -// resource provider. -func (client VirtualNetworkGatewayConnectionsClient) SetSharedKey(resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters ConnectionSharedKey, cancel <-chan struct{}) (result autorest.Response, err error) { - if err := validation.Validate([]validation.Validation{ - {TargetValue: parameters, - Constraints: []validation.Constraint{{Target: "parameters.Value", Name: validation.Null, Rule: true, Chain: nil}}}}); err != nil { - return result, validation.NewErrorWithValidationError(err, "network.VirtualNetworkGatewayConnectionsClient", "SetSharedKey") - } - - req, err := client.SetSharedKeyPreparer(resourceGroupName, virtualNetworkGatewayConnectionName, parameters, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "SetSharedKey", nil, "Failure preparing request") - } - - resp, err := client.SetSharedKeySender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "SetSharedKey", resp, "Failure sending request") - } - - result, err = client.SetSharedKeyResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "SetSharedKey", resp, "Failure responding to request") - } - - return -} - -// SetSharedKeyPreparer prepares the SetSharedKey request. -func (client VirtualNetworkGatewayConnectionsClient) SetSharedKeyPreparer(resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters ConnectionSharedKey, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - "virtualNetworkGatewayConnectionName": autorest.Encode("path", virtualNetworkGatewayConnectionName), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsJSON(), - autorest.AsPut(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey", pathParameters), - autorest.WithJSON(parameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// SetSharedKeySender sends the SetSharedKey request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworkGatewayConnectionsClient) SetSharedKeySender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// SetSharedKeyResponder handles the response to the SetSharedKey request. The method always -// closes the http.Response Body. -func (client VirtualNetworkGatewayConnectionsClient) SetSharedKeyResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusCreated, http.StatusOK), - autorest.ByClosing()) - result.Response = resp - return -} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworkpeerings.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworkpeerings.go deleted file mode 100644 index bfed897a3..000000000 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworkpeerings.go +++ /dev/null @@ -1,339 +0,0 @@ -package network - -// Copyright (c) Microsoft and contributors. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// -// See the License for the specific language governing permissions and -// limitations under the License. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -import ( - "github.com/Azure/go-autorest/autorest" - "github.com/Azure/go-autorest/autorest/azure" - "net/http" -) - -// VirtualNetworkPeeringsClient is the the Microsoft Azure Network management -// API provides a RESTful set of web services that interact with Microsoft -// Azure Networks service to manage your network resources. The API has -// entities that capture the relationship between an end user and the -// Microsoft Azure Networks service. -type VirtualNetworkPeeringsClient struct { - ManagementClient -} - -// NewVirtualNetworkPeeringsClient creates an instance of the -// VirtualNetworkPeeringsClient client. -func NewVirtualNetworkPeeringsClient(subscriptionID string) VirtualNetworkPeeringsClient { - return NewVirtualNetworkPeeringsClientWithBaseURI(DefaultBaseURI, subscriptionID) -} - -// NewVirtualNetworkPeeringsClientWithBaseURI creates an instance of the -// VirtualNetworkPeeringsClient client. -func NewVirtualNetworkPeeringsClientWithBaseURI(baseURI string, subscriptionID string) VirtualNetworkPeeringsClient { - return VirtualNetworkPeeringsClient{NewWithBaseURI(baseURI, subscriptionID)} -} - -// CreateOrUpdate creates or updates a peering in the specified virtual -// network. This method may poll for completion. Polling can be canceled by -// passing the cancel channel argument. The channel will be used to cancel -// polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. virtualNetworkPeeringName is the name of -// the peering. virtualNetworkPeeringParameters is parameters supplied to the -// create or update virtual network peering operation. -func (client VirtualNetworkPeeringsClient) CreateOrUpdate(resourceGroupName string, virtualNetworkName string, virtualNetworkPeeringName string, virtualNetworkPeeringParameters VirtualNetworkPeering, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.CreateOrUpdatePreparer(resourceGroupName, virtualNetworkName, virtualNetworkPeeringName, virtualNetworkPeeringParameters, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "CreateOrUpdate", nil, "Failure preparing request") - } - - resp, err := client.CreateOrUpdateSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "CreateOrUpdate", resp, "Failure responding to request") - } - - return -} - -// CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client VirtualNetworkPeeringsClient) CreateOrUpdatePreparer(resourceGroupName string, virtualNetworkName string, virtualNetworkPeeringName string, virtualNetworkPeeringParameters VirtualNetworkPeering, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - "virtualNetworkName": autorest.Encode("path", virtualNetworkName), - "virtualNetworkPeeringName": autorest.Encode("path", virtualNetworkPeeringName), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsJSON(), - autorest.AsPut(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}", pathParameters), - autorest.WithJSON(virtualNetworkPeeringParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworkPeeringsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always -// closes the http.Response Body. -func (client VirtualNetworkPeeringsClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), - autorest.ByClosing()) - result.Response = resp - return -} - -// Delete deletes the specified virtual network peering. This method may poll -// for completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. virtualNetworkPeeringName is the name of -// the virtual network peering. -func (client VirtualNetworkPeeringsClient) Delete(resourceGroupName string, virtualNetworkName string, virtualNetworkPeeringName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, virtualNetworkName, virtualNetworkPeeringName, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "Delete", nil, "Failure preparing request") - } - - resp, err := client.DeleteSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "Delete", resp, "Failure responding to request") - } - - return -} - -// DeletePreparer prepares the Delete request. -func (client VirtualNetworkPeeringsClient) DeletePreparer(resourceGroupName string, virtualNetworkName string, virtualNetworkPeeringName string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - "virtualNetworkName": autorest.Encode("path", virtualNetworkName), - "virtualNetworkPeeringName": autorest.Encode("path", virtualNetworkPeeringName), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsDelete(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// DeleteSender sends the Delete request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworkPeeringsClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// DeleteResponder handles the response to the Delete request. The method always -// closes the http.Response Body. -func (client VirtualNetworkPeeringsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent, http.StatusAccepted), - autorest.ByClosing()) - result.Response = resp - return -} - -// Get gets the specified virtual network peering. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. virtualNetworkPeeringName is the name of -// the virtual network peering. -func (client VirtualNetworkPeeringsClient) Get(resourceGroupName string, virtualNetworkName string, virtualNetworkPeeringName string) (result VirtualNetworkPeering, err error) { - req, err := client.GetPreparer(resourceGroupName, virtualNetworkName, virtualNetworkPeeringName) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "Get", nil, "Failure preparing request") - } - - resp, err := client.GetSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "Get", resp, "Failure sending request") - } - - result, err = client.GetResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "Get", resp, "Failure responding to request") - } - - return -} - -// GetPreparer prepares the Get request. -func (client VirtualNetworkPeeringsClient) GetPreparer(resourceGroupName string, virtualNetworkName string, virtualNetworkPeeringName string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - "virtualNetworkName": autorest.Encode("path", virtualNetworkName), - "virtualNetworkPeeringName": autorest.Encode("path", virtualNetworkPeeringName), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings/{virtualNetworkPeeringName}", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// GetSender sends the Get request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworkPeeringsClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// GetResponder handles the response to the Get request. The method always -// closes the http.Response Body. -func (client VirtualNetworkPeeringsClient) GetResponder(resp *http.Response) (result VirtualNetworkPeering, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// List gets all virtual network peerings in a virtual network. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. -func (client VirtualNetworkPeeringsClient) List(resourceGroupName string, virtualNetworkName string) (result VirtualNetworkPeeringListResult, err error) { - req, err := client.ListPreparer(resourceGroupName, virtualNetworkName) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "List", nil, "Failure preparing request") - } - - resp, err := client.ListSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "List", resp, "Failure sending request") - } - - result, err = client.ListResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "List", resp, "Failure responding to request") - } - - return -} - -// ListPreparer prepares the List request. -func (client VirtualNetworkPeeringsClient) ListPreparer(resourceGroupName string, virtualNetworkName string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - "virtualNetworkName": autorest.Encode("path", virtualNetworkName), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/virtualNetworkPeerings", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// ListSender sends the List request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworkPeeringsClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// ListResponder handles the response to the List request. The method always -// closes the http.Response Body. -func (client VirtualNetworkPeeringsClient) ListResponder(resp *http.Response) (result VirtualNetworkPeeringListResult, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// ListNextResults retrieves the next set of results, if any. -func (client VirtualNetworkPeeringsClient) ListNextResults(lastResults VirtualNetworkPeeringListResult) (result VirtualNetworkPeeringListResult, err error) { - req, err := lastResults.VirtualNetworkPeeringListResultPreparer() - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "List", nil, "Failure preparing next results request") - } - if req == nil { - return - } - - resp, err := client.ListSender(req) - if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "List", resp, "Failure sending next results request") - } - - result, err = client.ListResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkPeeringsClient", "List", resp, "Failure responding to next results request") - } - - return -} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/applicationgateways.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/applicationgateways.go new file mode 100644 index 000000000..dd4757ae8 --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/applicationgateways.go @@ -0,0 +1,566 @@ +package network + +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +import ( + "context" + "github.com/Azure/go-autorest/autorest" + "github.com/Azure/go-autorest/autorest/azure" + "net/http" +) + +// ApplicationGatewaysClient is the network Client +type ApplicationGatewaysClient struct { + BaseClient +} + +// NewApplicationGatewaysClient creates an instance of the ApplicationGatewaysClient client. +func NewApplicationGatewaysClient(subscriptionID string) ApplicationGatewaysClient { + return NewApplicationGatewaysClientWithBaseURI(DefaultBaseURI, subscriptionID) +} + +// NewApplicationGatewaysClientWithBaseURI creates an instance of the ApplicationGatewaysClient client. +func NewApplicationGatewaysClientWithBaseURI(baseURI string, subscriptionID string) ApplicationGatewaysClient { + return ApplicationGatewaysClient{NewWithBaseURI(baseURI, subscriptionID)} +} + +// CreateOrUpdate creates or updates the specified application gateway. +// Parameters: +// resourceGroupName - the name of the resource group. +// applicationGatewayName - the name of the application gateway. +// parameters - parameters supplied to the create or update application gateway operation. +func (client ApplicationGatewaysClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, applicationGatewayName string, parameters ApplicationGateway) (result ApplicationGatewaysCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, applicationGatewayName, parameters) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "CreateOrUpdate", nil, "Failure preparing request") + return + } + + result, err = client.CreateOrUpdateSender(req) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return + } + + return +} + +// CreateOrUpdatePreparer prepares the CreateOrUpdate request. +func (client ApplicationGatewaysClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, applicationGatewayName string, parameters ApplicationGateway) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "applicationGatewayName": autorest.Encode("path", applicationGatewayName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsContentType("application/json; charset=utf-8"), + autorest.AsPut(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}", pathParameters), + autorest.WithJSON(parameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the +// http.Response Body if it receives an error. +func (client ApplicationGatewaysClient) CreateOrUpdateSender(req *http.Request) (future ApplicationGatewaysCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return +} + +// CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always +// closes the http.Response Body. +func (client ApplicationGatewaysClient) CreateOrUpdateResponder(resp *http.Response) (result ApplicationGateway, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// Delete deletes the specified application gateway. +// Parameters: +// resourceGroupName - the name of the resource group. +// applicationGatewayName - the name of the application gateway. +func (client ApplicationGatewaysClient) Delete(ctx context.Context, resourceGroupName string, applicationGatewayName string) (result ApplicationGatewaysDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, applicationGatewayName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Delete", nil, "Failure preparing request") + return + } + + result, err = client.DeleteSender(req) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Delete", result.Response(), "Failure sending request") + return + } + + return +} + +// DeletePreparer prepares the Delete request. +func (client ApplicationGatewaysClient) DeletePreparer(ctx context.Context, resourceGroupName string, applicationGatewayName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "applicationGatewayName": autorest.Encode("path", applicationGatewayName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsDelete(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// DeleteSender sends the Delete request. The method will close the +// http.Response Body if it receives an error. +func (client ApplicationGatewaysClient) DeleteSender(req *http.Request) (future ApplicationGatewaysDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return +} + +// DeleteResponder handles the response to the Delete request. The method always +// closes the http.Response Body. +func (client ApplicationGatewaysClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), + autorest.ByClosing()) + result.Response = resp + return +} + +// Get gets the specified application gateway. +// Parameters: +// resourceGroupName - the name of the resource group. +// applicationGatewayName - the name of the application gateway. +func (client ApplicationGatewaysClient) Get(ctx context.Context, resourceGroupName string, applicationGatewayName string) (result ApplicationGateway, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, applicationGatewayName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Get", nil, "Failure preparing request") + return + } + + resp, err := client.GetSender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Get", resp, "Failure sending request") + return + } + + result, err = client.GetResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Get", resp, "Failure responding to request") + } + + return +} + +// GetPreparer prepares the Get request. +func (client ApplicationGatewaysClient) GetPreparer(ctx context.Context, resourceGroupName string, applicationGatewayName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "applicationGatewayName": autorest.Encode("path", applicationGatewayName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// GetSender sends the Get request. The method will close the +// http.Response Body if it receives an error. +func (client ApplicationGatewaysClient) GetSender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// GetResponder handles the response to the Get request. The method always +// closes the http.Response Body. +func (client ApplicationGatewaysClient) GetResponder(resp *http.Response) (result ApplicationGateway, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// List lists all application gateways in a resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +func (client ApplicationGatewaysClient) List(ctx context.Context, resourceGroupName string) (result ApplicationGatewayListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "List", nil, "Failure preparing request") + return + } + + resp, err := client.ListSender(req) + if err != nil { + result.aglr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "List", resp, "Failure sending request") + return + } + + result.aglr, err = client.ListResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "List", resp, "Failure responding to request") + } + + return +} + +// ListPreparer prepares the List request. +func (client ApplicationGatewaysClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// ListSender sends the List request. The method will close the +// http.Response Body if it receives an error. +func (client ApplicationGatewaysClient) ListSender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// ListResponder handles the response to the List request. The method always +// closes the http.Response Body. +func (client ApplicationGatewaysClient) ListResponder(resp *http.Response) (result ApplicationGatewayListResult, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// listNextResults retrieves the next set of results, if any. +func (client ApplicationGatewaysClient) listNextResults(lastResults ApplicationGatewayListResult) (result ApplicationGatewayListResult, err error) { + req, err := lastResults.applicationGatewayListResultPreparer() + if err != nil { + return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "listNextResults", nil, "Failure preparing next results request") + } + if req == nil { + return + } + resp, err := client.ListSender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "listNextResults", resp, "Failure sending next results request") + } + result, err = client.ListResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "listNextResults", resp, "Failure responding to next results request") + } + return +} + +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client ApplicationGatewaysClient) ListComplete(ctx context.Context, resourceGroupName string) (result ApplicationGatewayListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName) + return +} + +// ListAll gets all the application gateways in a subscription. +func (client ApplicationGatewaysClient) ListAll(ctx context.Context) (result ApplicationGatewayListResultPage, err error) { + result.fn = client.listAllNextResults + req, err := client.ListAllPreparer(ctx) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "ListAll", nil, "Failure preparing request") + return + } + + resp, err := client.ListAllSender(req) + if err != nil { + result.aglr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "ListAll", resp, "Failure sending request") + return + } + + result.aglr, err = client.ListAllResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "ListAll", resp, "Failure responding to request") + } + + return +} + +// ListAllPreparer prepares the ListAll request. +func (client ApplicationGatewaysClient) ListAllPreparer(ctx context.Context) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGateways", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// ListAllSender sends the ListAll request. The method will close the +// http.Response Body if it receives an error. +func (client ApplicationGatewaysClient) ListAllSender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// ListAllResponder handles the response to the ListAll request. The method always +// closes the http.Response Body. +func (client ApplicationGatewaysClient) ListAllResponder(resp *http.Response) (result ApplicationGatewayListResult, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// listAllNextResults retrieves the next set of results, if any. +func (client ApplicationGatewaysClient) listAllNextResults(lastResults ApplicationGatewayListResult) (result ApplicationGatewayListResult, err error) { + req, err := lastResults.applicationGatewayListResultPreparer() + if err != nil { + return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "listAllNextResults", nil, "Failure preparing next results request") + } + if req == nil { + return + } + resp, err := client.ListAllSender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + return result, autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "listAllNextResults", resp, "Failure sending next results request") + } + result, err = client.ListAllResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "listAllNextResults", resp, "Failure responding to next results request") + } + return +} + +// ListAllComplete enumerates all values, automatically crossing page boundaries as required. +func (client ApplicationGatewaysClient) ListAllComplete(ctx context.Context) (result ApplicationGatewayListResultIterator, err error) { + result.page, err = client.ListAll(ctx) + return +} + +// Start starts the specified application gateway. +// Parameters: +// resourceGroupName - the name of the resource group. +// applicationGatewayName - the name of the application gateway. +func (client ApplicationGatewaysClient) Start(ctx context.Context, resourceGroupName string, applicationGatewayName string) (result ApplicationGatewaysStartFuture, err error) { + req, err := client.StartPreparer(ctx, resourceGroupName, applicationGatewayName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Start", nil, "Failure preparing request") + return + } + + result, err = client.StartSender(req) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Start", result.Response(), "Failure sending request") + return + } + + return +} + +// StartPreparer prepares the Start request. +func (client ApplicationGatewaysClient) StartPreparer(ctx context.Context, resourceGroupName string, applicationGatewayName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "applicationGatewayName": autorest.Encode("path", applicationGatewayName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsPost(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/start", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// StartSender sends the Start request. The method will close the +// http.Response Body if it receives an error. +func (client ApplicationGatewaysClient) StartSender(req *http.Request) (future ApplicationGatewaysStartFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted)) + return +} + +// StartResponder handles the response to the Start request. The method always +// closes the http.Response Body. +func (client ApplicationGatewaysClient) StartResponder(resp *http.Response) (result autorest.Response, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), + autorest.ByClosing()) + result.Response = resp + return +} + +// Stop stops the specified application gateway in a resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// applicationGatewayName - the name of the application gateway. +func (client ApplicationGatewaysClient) Stop(ctx context.Context, resourceGroupName string, applicationGatewayName string) (result ApplicationGatewaysStopFuture, err error) { + req, err := client.StopPreparer(ctx, resourceGroupName, applicationGatewayName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Stop", nil, "Failure preparing request") + return + } + + result, err = client.StopSender(req) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysClient", "Stop", result.Response(), "Failure sending request") + return + } + + return +} + +// StopPreparer prepares the Stop request. +func (client ApplicationGatewaysClient) StopPreparer(ctx context.Context, resourceGroupName string, applicationGatewayName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "applicationGatewayName": autorest.Encode("path", applicationGatewayName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsPost(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}/stop", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// StopSender sends the Stop request. The method will close the +// http.Response Body if it receives an error. +func (client ApplicationGatewaysClient) StopSender(req *http.Request) (future ApplicationGatewaysStopFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted)) + return +} + +// StopResponder handles the response to the Stop request. The method always +// closes the http.Response Body. +func (client ApplicationGatewaysClient) StopResponder(resp *http.Response) (result autorest.Response, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), + autorest.ByClosing()) + result.Response = resp + return +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/client.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/client.go similarity index 56% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/client.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/client.go index 74e3d7e49..f487b26a8 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/client.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/client.go @@ -1,10 +1,6 @@ -// Package network implements the Azure ARM Network service API version -// 2016-09-01. +// Package network implements the Azure ARM Network service API version 2015-06-15. // -// The Microsoft Azure Network management API provides a RESTful set of web -// services that interact with Microsoft Azure Networks service to manage -// your network resources. The API has entities that capture the relationship -// between an end user and the Microsoft Azure Networks service. +// Network Client package network // Copyright (c) Microsoft and contributors. All rights reserved. @@ -21,82 +17,79 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "net/http" ) const ( - // APIVersion is the version of the Network - APIVersion = "2016-09-01" - // DefaultBaseURI is the default URI used for the service Network DefaultBaseURI = "https://management.azure.com" ) -// ManagementClient is the base client for Network. -type ManagementClient struct { +// BaseClient is the base client for Network. +type BaseClient struct { autorest.Client BaseURI string - APIVersion string SubscriptionID string } -// New creates an instance of the ManagementClient client. -func New(subscriptionID string) ManagementClient { +// New creates an instance of the BaseClient client. +func New(subscriptionID string) BaseClient { return NewWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewWithBaseURI creates an instance of the ManagementClient client. -func NewWithBaseURI(baseURI string, subscriptionID string) ManagementClient { - return ManagementClient{ +// NewWithBaseURI creates an instance of the BaseClient client. +func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient { + return BaseClient{ Client: autorest.NewClientWithUserAgent(UserAgent()), BaseURI: baseURI, - APIVersion: APIVersion, SubscriptionID: subscriptionID, } } -// CheckDNSNameAvailability checks whether a domain name in the cloudapp.net -// zone is available for use. -// -// location is the location of the domain name. domainNameLabel is the domain -// name to be verified. It must conform to the following regular expression: +// CheckDNSNameAvailability checks whether a domain name in the cloudapp.net zone is available for use. +// Parameters: +// location - the location of the domain name. +// domainNameLabel - the domain name to be verified. It must conform to the following regular expression: // ^[a-z][a-z0-9-]{1,61}[a-z0-9]$. -func (client ManagementClient) CheckDNSNameAvailability(location string, domainNameLabel string) (result DNSNameAvailabilityResult, err error) { - req, err := client.CheckDNSNameAvailabilityPreparer(location, domainNameLabel) +func (client BaseClient) CheckDNSNameAvailability(ctx context.Context, location string, domainNameLabel string) (result DNSNameAvailabilityResult, err error) { + req, err := client.CheckDNSNameAvailabilityPreparer(ctx, location, domainNameLabel) if err != nil { - return result, autorest.NewErrorWithError(err, "network.ManagementClient", "CheckDNSNameAvailability", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.BaseClient", "CheckDNSNameAvailability", nil, "Failure preparing request") + return } resp, err := client.CheckDNSNameAvailabilitySender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ManagementClient", "CheckDNSNameAvailability", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.BaseClient", "CheckDNSNameAvailability", resp, "Failure sending request") + return } result, err = client.CheckDNSNameAvailabilityResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.ManagementClient", "CheckDNSNameAvailability", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.BaseClient", "CheckDNSNameAvailability", resp, "Failure responding to request") } return } // CheckDNSNameAvailabilityPreparer prepares the CheckDNSNameAvailability request. -func (client ManagementClient) CheckDNSNameAvailabilityPreparer(location string, domainNameLabel string) (*http.Request, error) { +func (client BaseClient) CheckDNSNameAvailabilityPreparer(ctx context.Context, location string, domainNameLabel string) (*http.Request, error) { pathParameters := map[string]interface{}{ "location": autorest.Encode("path", location), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } if len(domainNameLabel) > 0 { queryParameters["domainNameLabel"] = autorest.Encode("query", domainNameLabel) @@ -107,18 +100,19 @@ func (client ManagementClient) CheckDNSNameAvailabilityPreparer(location string, autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/CheckDnsNameAvailability", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CheckDNSNameAvailabilitySender sends the CheckDNSNameAvailability request. The method will close the // http.Response Body if it receives an error. -func (client ManagementClient) CheckDNSNameAvailabilitySender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) +func (client BaseClient) CheckDNSNameAvailabilitySender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // CheckDNSNameAvailabilityResponder handles the response to the CheckDNSNameAvailability request. The method always // closes the http.Response Body. -func (client ManagementClient) CheckDNSNameAvailabilityResponder(resp *http.Response) (result DNSNameAvailabilityResult, err error) { +func (client BaseClient) CheckDNSNameAvailabilityResponder(resp *http.Response) (result DNSNameAvailabilityResult, err error) { err = autorest.Respond( resp, client.ByInspecting(), diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressroutecircuitauthorizations.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressroutecircuitauthorizations.go similarity index 56% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressroutecircuitauthorizations.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressroutecircuitauthorizations.go index eb0a2a075..e9b3f1027 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressroutecircuitauthorizations.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressroutecircuitauthorizations.go @@ -14,68 +14,58 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "net/http" ) -// ExpressRouteCircuitAuthorizationsClient is the the Microsoft Azure Network -// management API provides a RESTful set of web services that interact with -// Microsoft Azure Networks service to manage your network resources. The API -// has entities that capture the relationship between an end user and the -// Microsoft Azure Networks service. +// ExpressRouteCircuitAuthorizationsClient is the network Client type ExpressRouteCircuitAuthorizationsClient struct { - ManagementClient + BaseClient } -// NewExpressRouteCircuitAuthorizationsClient creates an instance of the -// ExpressRouteCircuitAuthorizationsClient client. +// NewExpressRouteCircuitAuthorizationsClient creates an instance of the ExpressRouteCircuitAuthorizationsClient +// client. func NewExpressRouteCircuitAuthorizationsClient(subscriptionID string) ExpressRouteCircuitAuthorizationsClient { return NewExpressRouteCircuitAuthorizationsClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewExpressRouteCircuitAuthorizationsClientWithBaseURI creates an instance -// of the ExpressRouteCircuitAuthorizationsClient client. +// NewExpressRouteCircuitAuthorizationsClientWithBaseURI creates an instance of the +// ExpressRouteCircuitAuthorizationsClient client. func NewExpressRouteCircuitAuthorizationsClientWithBaseURI(baseURI string, subscriptionID string) ExpressRouteCircuitAuthorizationsClient { return ExpressRouteCircuitAuthorizationsClient{NewWithBaseURI(baseURI, subscriptionID)} } -// CreateOrUpdate creates or updates an authorization in the specified express -// route circuit. This method may poll for completion. Polling can be -// canceled by passing the cancel channel argument. The channel will be used -// to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. authorizationName is the name of the -// authorization. authorizationParameters is parameters supplied to the -// create or update express route circuit authorization operation. -func (client ExpressRouteCircuitAuthorizationsClient) CreateOrUpdate(resourceGroupName string, circuitName string, authorizationName string, authorizationParameters ExpressRouteCircuitAuthorization, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.CreateOrUpdatePreparer(resourceGroupName, circuitName, authorizationName, authorizationParameters, cancel) +// CreateOrUpdate creates or updates an authorization in the specified express route circuit. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the express route circuit. +// authorizationName - the name of the authorization. +// authorizationParameters - parameters supplied to the create or update express route circuit authorization +// operation. +func (client ExpressRouteCircuitAuthorizationsClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, circuitName string, authorizationName string, authorizationParameters ExpressRouteCircuitAuthorization) (result ExpressRouteCircuitAuthorizationsCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, circuitName, authorizationName, authorizationParameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "CreateOrUpdate", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - resp, err := client.CreateOrUpdateSender(req) + result, err = client.CreateOrUpdateSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client ExpressRouteCircuitAuthorizationsClient) CreateOrUpdatePreparer(resourceGroupName string, circuitName string, authorizationName string, authorizationParameters ExpressRouteCircuitAuthorization, cancel <-chan struct{}) (*http.Request, error) { +func (client ExpressRouteCircuitAuthorizationsClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, circuitName string, authorizationName string, authorizationParameters ExpressRouteCircuitAuthorization) (*http.Request, error) { pathParameters := map[string]interface{}{ "authorizationName": autorest.Encode("path", authorizationName), "circuitName": autorest.Encode("path", circuitName), @@ -83,70 +73,72 @@ func (client ExpressRouteCircuitAuthorizationsClient) CreateOrUpdatePreparer(res "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}", pathParameters), autorest.WithJSON(authorizationParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client ExpressRouteCircuitAuthorizationsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client ExpressRouteCircuitAuthorizationsClient) CreateOrUpdateSender(req *http.Request) (future ExpressRouteCircuitAuthorizationsCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client ExpressRouteCircuitAuthorizationsClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client ExpressRouteCircuitAuthorizationsClient) CreateOrUpdateResponder(resp *http.Response) (result ExpressRouteCircuitAuthorization, err error) { err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusCreated, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified authorization from the specified express route -// circuit. This method may poll for completion. Polling can be canceled by -// passing the cancel channel argument. The channel will be used to cancel -// polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. authorizationName is the name of the -// authorization. -func (client ExpressRouteCircuitAuthorizationsClient) Delete(resourceGroupName string, circuitName string, authorizationName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, circuitName, authorizationName, cancel) +// Delete deletes the specified authorization from the specified express route circuit. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the express route circuit. +// authorizationName - the name of the authorization. +func (client ExpressRouteCircuitAuthorizationsClient) Delete(ctx context.Context, resourceGroupName string, circuitName string, authorizationName string) (result ExpressRouteCircuitAuthorizationsDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, circuitName, authorizationName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client ExpressRouteCircuitAuthorizationsClient) DeletePreparer(resourceGroupName string, circuitName string, authorizationName string, cancel <-chan struct{}) (*http.Request, error) { +func (client ExpressRouteCircuitAuthorizationsClient) DeletePreparer(ctx context.Context, resourceGroupName string, circuitName string, authorizationName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "authorizationName": autorest.Encode("path", authorizationName), "circuitName": autorest.Encode("path", circuitName), @@ -154,8 +146,9 @@ func (client ExpressRouteCircuitAuthorizationsClient) DeletePreparer(resourceGro "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -163,15 +156,22 @@ func (client ExpressRouteCircuitAuthorizationsClient) DeletePreparer(resourceGro autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client ExpressRouteCircuitAuthorizationsClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client ExpressRouteCircuitAuthorizationsClient) DeleteSender(req *http.Request) (future ExpressRouteCircuitAuthorizationsDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -180,28 +180,29 @@ func (client ExpressRouteCircuitAuthorizationsClient) DeleteResponder(resp *http err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusAccepted, http.StatusOK, http.StatusNoContent), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } -// Get gets the specified authorization from the specified express route -// circuit. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. authorizationName is the name of the -// authorization. -func (client ExpressRouteCircuitAuthorizationsClient) Get(resourceGroupName string, circuitName string, authorizationName string) (result ExpressRouteCircuitAuthorization, err error) { - req, err := client.GetPreparer(resourceGroupName, circuitName, authorizationName) +// Get gets the specified authorization from the specified express route circuit. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the express route circuit. +// authorizationName - the name of the authorization. +func (client ExpressRouteCircuitAuthorizationsClient) Get(ctx context.Context, resourceGroupName string, circuitName string, authorizationName string) (result ExpressRouteCircuitAuthorization, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, circuitName, authorizationName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -213,7 +214,7 @@ func (client ExpressRouteCircuitAuthorizationsClient) Get(resourceGroupName stri } // GetPreparer prepares the Get request. -func (client ExpressRouteCircuitAuthorizationsClient) GetPreparer(resourceGroupName string, circuitName string, authorizationName string) (*http.Request, error) { +func (client ExpressRouteCircuitAuthorizationsClient) GetPreparer(ctx context.Context, resourceGroupName string, circuitName string, authorizationName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "authorizationName": autorest.Encode("path", authorizationName), "circuitName": autorest.Encode("path", circuitName), @@ -221,8 +222,9 @@ func (client ExpressRouteCircuitAuthorizationsClient) GetPreparer(resourceGroupN "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -230,13 +232,14 @@ func (client ExpressRouteCircuitAuthorizationsClient) GetPreparer(resourceGroupN autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations/{authorizationName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client ExpressRouteCircuitAuthorizationsClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -253,22 +256,25 @@ func (client ExpressRouteCircuitAuthorizationsClient) GetResponder(resp *http.Re } // List gets all authorizations in an express route circuit. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the circuit. -func (client ExpressRouteCircuitAuthorizationsClient) List(resourceGroupName string, circuitName string) (result AuthorizationListResult, err error) { - req, err := client.ListPreparer(resourceGroupName, circuitName) +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the circuit. +func (client ExpressRouteCircuitAuthorizationsClient) List(ctx context.Context, resourceGroupName string, circuitName string) (result AuthorizationListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName, circuitName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "List", resp, "Failure sending request") + result.alr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.alr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "List", resp, "Failure responding to request") } @@ -277,15 +283,16 @@ func (client ExpressRouteCircuitAuthorizationsClient) List(resourceGroupName str } // ListPreparer prepares the List request. -func (client ExpressRouteCircuitAuthorizationsClient) ListPreparer(resourceGroupName string, circuitName string) (*http.Request, error) { +func (client ExpressRouteCircuitAuthorizationsClient) ListPreparer(ctx context.Context, resourceGroupName string, circuitName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "circuitName": autorest.Encode("path", circuitName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -293,13 +300,14 @@ func (client ExpressRouteCircuitAuthorizationsClient) ListPreparer(resourceGroup autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/authorizations", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client ExpressRouteCircuitAuthorizationsClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -315,26 +323,29 @@ func (client ExpressRouteCircuitAuthorizationsClient) ListResponder(resp *http.R return } -// ListNextResults retrieves the next set of results, if any. -func (client ExpressRouteCircuitAuthorizationsClient) ListNextResults(lastResults AuthorizationListResult) (result AuthorizationListResult, err error) { - req, err := lastResults.AuthorizationListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client ExpressRouteCircuitAuthorizationsClient) listNextResults(lastResults AuthorizationListResult) (result AuthorizationListResult, err error) { + req, err := lastResults.authorizationListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsClient", "listNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client ExpressRouteCircuitAuthorizationsClient) ListComplete(ctx context.Context, resourceGroupName string, circuitName string) (result AuthorizationListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName, circuitName) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressroutecircuitpeerings.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressroutecircuitpeerings.go similarity index 56% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressroutecircuitpeerings.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressroutecircuitpeerings.go index a459574b8..84e7d0b2c 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressroutecircuitpeerings.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressroutecircuitpeerings.go @@ -14,68 +14,55 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "net/http" ) -// ExpressRouteCircuitPeeringsClient is the the Microsoft Azure Network -// management API provides a RESTful set of web services that interact with -// Microsoft Azure Networks service to manage your network resources. The API -// has entities that capture the relationship between an end user and the -// Microsoft Azure Networks service. +// ExpressRouteCircuitPeeringsClient is the network Client type ExpressRouteCircuitPeeringsClient struct { - ManagementClient + BaseClient } -// NewExpressRouteCircuitPeeringsClient creates an instance of the -// ExpressRouteCircuitPeeringsClient client. +// NewExpressRouteCircuitPeeringsClient creates an instance of the ExpressRouteCircuitPeeringsClient client. func NewExpressRouteCircuitPeeringsClient(subscriptionID string) ExpressRouteCircuitPeeringsClient { return NewExpressRouteCircuitPeeringsClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewExpressRouteCircuitPeeringsClientWithBaseURI creates an instance of the -// ExpressRouteCircuitPeeringsClient client. +// NewExpressRouteCircuitPeeringsClientWithBaseURI creates an instance of the ExpressRouteCircuitPeeringsClient client. func NewExpressRouteCircuitPeeringsClientWithBaseURI(baseURI string, subscriptionID string) ExpressRouteCircuitPeeringsClient { return ExpressRouteCircuitPeeringsClient{NewWithBaseURI(baseURI, subscriptionID)} } -// CreateOrUpdate creates or updates a peering in the specified express route -// circuits. This method may poll for completion. Polling can be canceled by -// passing the cancel channel argument. The channel will be used to cancel -// polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. peeringName is the name of the peering. -// peeringParameters is parameters supplied to the create or update express -// route circuit peering operation. -func (client ExpressRouteCircuitPeeringsClient) CreateOrUpdate(resourceGroupName string, circuitName string, peeringName string, peeringParameters ExpressRouteCircuitPeering, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.CreateOrUpdatePreparer(resourceGroupName, circuitName, peeringName, peeringParameters, cancel) +// CreateOrUpdate creates or updates a peering in the specified express route circuits. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the express route circuit. +// peeringName - the name of the peering. +// peeringParameters - parameters supplied to the create or update express route circuit peering operation. +func (client ExpressRouteCircuitPeeringsClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, circuitName string, peeringName string, peeringParameters ExpressRouteCircuitPeering) (result ExpressRouteCircuitPeeringsCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, circuitName, peeringName, peeringParameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "CreateOrUpdate", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - resp, err := client.CreateOrUpdateSender(req) + result, err = client.CreateOrUpdateSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client ExpressRouteCircuitPeeringsClient) CreateOrUpdatePreparer(resourceGroupName string, circuitName string, peeringName string, peeringParameters ExpressRouteCircuitPeering, cancel <-chan struct{}) (*http.Request, error) { +func (client ExpressRouteCircuitPeeringsClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, circuitName string, peeringName string, peeringParameters ExpressRouteCircuitPeering) (*http.Request, error) { pathParameters := map[string]interface{}{ "circuitName": autorest.Encode("path", circuitName), "peeringName": autorest.Encode("path", peeringName), @@ -83,69 +70,72 @@ func (client ExpressRouteCircuitPeeringsClient) CreateOrUpdatePreparer(resourceG "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}", pathParameters), autorest.WithJSON(peeringParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client ExpressRouteCircuitPeeringsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client ExpressRouteCircuitPeeringsClient) CreateOrUpdateSender(req *http.Request) (future ExpressRouteCircuitPeeringsCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client ExpressRouteCircuitPeeringsClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client ExpressRouteCircuitPeeringsClient) CreateOrUpdateResponder(resp *http.Response) (result ExpressRouteCircuitPeering, err error) { err = autorest.Respond( resp, client.ByInspecting(), azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified peering from the specified express route -// circuit. This method may poll for completion. Polling can be canceled by -// passing the cancel channel argument. The channel will be used to cancel -// polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. peeringName is the name of the peering. -func (client ExpressRouteCircuitPeeringsClient) Delete(resourceGroupName string, circuitName string, peeringName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, circuitName, peeringName, cancel) +// Delete deletes the specified peering from the specified express route circuit. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the express route circuit. +// peeringName - the name of the peering. +func (client ExpressRouteCircuitPeeringsClient) Delete(ctx context.Context, resourceGroupName string, circuitName string, peeringName string) (result ExpressRouteCircuitPeeringsDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, circuitName, peeringName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client ExpressRouteCircuitPeeringsClient) DeletePreparer(resourceGroupName string, circuitName string, peeringName string, cancel <-chan struct{}) (*http.Request, error) { +func (client ExpressRouteCircuitPeeringsClient) DeletePreparer(ctx context.Context, resourceGroupName string, circuitName string, peeringName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "circuitName": autorest.Encode("path", circuitName), "peeringName": autorest.Encode("path", peeringName), @@ -153,8 +143,9 @@ func (client ExpressRouteCircuitPeeringsClient) DeletePreparer(resourceGroupName "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -162,15 +153,22 @@ func (client ExpressRouteCircuitPeeringsClient) DeletePreparer(resourceGroupName autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client ExpressRouteCircuitPeeringsClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client ExpressRouteCircuitPeeringsClient) DeleteSender(req *http.Request) (future ExpressRouteCircuitPeeringsDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -185,21 +183,23 @@ func (client ExpressRouteCircuitPeeringsClient) DeleteResponder(resp *http.Respo return } -// Get gets the specified authorization from the specified express route -// circuit. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. peeringName is the name of the peering. -func (client ExpressRouteCircuitPeeringsClient) Get(resourceGroupName string, circuitName string, peeringName string) (result ExpressRouteCircuitPeering, err error) { - req, err := client.GetPreparer(resourceGroupName, circuitName, peeringName) +// Get gets the specified authorization from the specified express route circuit. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the express route circuit. +// peeringName - the name of the peering. +func (client ExpressRouteCircuitPeeringsClient) Get(ctx context.Context, resourceGroupName string, circuitName string, peeringName string) (result ExpressRouteCircuitPeering, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, circuitName, peeringName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -211,7 +211,7 @@ func (client ExpressRouteCircuitPeeringsClient) Get(resourceGroupName string, ci } // GetPreparer prepares the Get request. -func (client ExpressRouteCircuitPeeringsClient) GetPreparer(resourceGroupName string, circuitName string, peeringName string) (*http.Request, error) { +func (client ExpressRouteCircuitPeeringsClient) GetPreparer(ctx context.Context, resourceGroupName string, circuitName string, peeringName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "circuitName": autorest.Encode("path", circuitName), "peeringName": autorest.Encode("path", peeringName), @@ -219,8 +219,9 @@ func (client ExpressRouteCircuitPeeringsClient) GetPreparer(resourceGroupName st "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -228,13 +229,14 @@ func (client ExpressRouteCircuitPeeringsClient) GetPreparer(resourceGroupName st autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings/{peeringName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client ExpressRouteCircuitPeeringsClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -251,22 +253,25 @@ func (client ExpressRouteCircuitPeeringsClient) GetResponder(resp *http.Response } // List gets all peerings in a specified express route circuit. -// -// resourceGroupName is the name of the resource group. circuitName is the -// name of the express route circuit. -func (client ExpressRouteCircuitPeeringsClient) List(resourceGroupName string, circuitName string) (result ExpressRouteCircuitPeeringListResult, err error) { - req, err := client.ListPreparer(resourceGroupName, circuitName) +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the express route circuit. +func (client ExpressRouteCircuitPeeringsClient) List(ctx context.Context, resourceGroupName string, circuitName string) (result ExpressRouteCircuitPeeringListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName, circuitName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "List", resp, "Failure sending request") + result.ercplr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.ercplr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "List", resp, "Failure responding to request") } @@ -275,15 +280,16 @@ func (client ExpressRouteCircuitPeeringsClient) List(resourceGroupName string, c } // ListPreparer prepares the List request. -func (client ExpressRouteCircuitPeeringsClient) ListPreparer(resourceGroupName string, circuitName string) (*http.Request, error) { +func (client ExpressRouteCircuitPeeringsClient) ListPreparer(ctx context.Context, resourceGroupName string, circuitName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "circuitName": autorest.Encode("path", circuitName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -291,13 +297,14 @@ func (client ExpressRouteCircuitPeeringsClient) ListPreparer(resourceGroupName s autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/peerings", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client ExpressRouteCircuitPeeringsClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -313,26 +320,29 @@ func (client ExpressRouteCircuitPeeringsClient) ListResponder(resp *http.Respons return } -// ListNextResults retrieves the next set of results, if any. -func (client ExpressRouteCircuitPeeringsClient) ListNextResults(lastResults ExpressRouteCircuitPeeringListResult) (result ExpressRouteCircuitPeeringListResult, err error) { - req, err := lastResults.ExpressRouteCircuitPeeringListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client ExpressRouteCircuitPeeringsClient) listNextResults(lastResults ExpressRouteCircuitPeeringListResult) (result ExpressRouteCircuitPeeringListResult, err error) { + req, err := lastResults.expressRouteCircuitPeeringListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsClient", "listNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client ExpressRouteCircuitPeeringsClient) ListComplete(ctx context.Context, resourceGroupName string, circuitName string) (result ExpressRouteCircuitPeeringListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName, circuitName) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressroutecircuits.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressroutecircuits.go new file mode 100644 index 000000000..1b6246cad --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressroutecircuits.go @@ -0,0 +1,718 @@ +package network + +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +import ( + "context" + "github.com/Azure/go-autorest/autorest" + "github.com/Azure/go-autorest/autorest/azure" + "net/http" +) + +// ExpressRouteCircuitsClient is the network Client +type ExpressRouteCircuitsClient struct { + BaseClient +} + +// NewExpressRouteCircuitsClient creates an instance of the ExpressRouteCircuitsClient client. +func NewExpressRouteCircuitsClient(subscriptionID string) ExpressRouteCircuitsClient { + return NewExpressRouteCircuitsClientWithBaseURI(DefaultBaseURI, subscriptionID) +} + +// NewExpressRouteCircuitsClientWithBaseURI creates an instance of the ExpressRouteCircuitsClient client. +func NewExpressRouteCircuitsClientWithBaseURI(baseURI string, subscriptionID string) ExpressRouteCircuitsClient { + return ExpressRouteCircuitsClient{NewWithBaseURI(baseURI, subscriptionID)} +} + +// CreateOrUpdate creates or updates an express route circuit. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the circuit. +// parameters - parameters supplied to the create or update express route circuit operation. +func (client ExpressRouteCircuitsClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, circuitName string, parameters ExpressRouteCircuit) (result ExpressRouteCircuitsCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, circuitName, parameters) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "CreateOrUpdate", nil, "Failure preparing request") + return + } + + result, err = client.CreateOrUpdateSender(req) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return + } + + return +} + +// CreateOrUpdatePreparer prepares the CreateOrUpdate request. +func (client ExpressRouteCircuitsClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, circuitName string, parameters ExpressRouteCircuit) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "circuitName": autorest.Encode("path", circuitName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsContentType("application/json; charset=utf-8"), + autorest.AsPut(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}", pathParameters), + autorest.WithJSON(parameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the +// http.Response Body if it receives an error. +func (client ExpressRouteCircuitsClient) CreateOrUpdateSender(req *http.Request) (future ExpressRouteCircuitsCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return +} + +// CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always +// closes the http.Response Body. +func (client ExpressRouteCircuitsClient) CreateOrUpdateResponder(resp *http.Response) (result ExpressRouteCircuit, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// Delete deletes the specified express route circuit. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the express route circuit. +func (client ExpressRouteCircuitsClient) Delete(ctx context.Context, resourceGroupName string, circuitName string) (result ExpressRouteCircuitsDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, circuitName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "Delete", nil, "Failure preparing request") + return + } + + result, err = client.DeleteSender(req) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "Delete", result.Response(), "Failure sending request") + return + } + + return +} + +// DeletePreparer prepares the Delete request. +func (client ExpressRouteCircuitsClient) DeletePreparer(ctx context.Context, resourceGroupName string, circuitName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "circuitName": autorest.Encode("path", circuitName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsDelete(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// DeleteSender sends the Delete request. The method will close the +// http.Response Body if it receives an error. +func (client ExpressRouteCircuitsClient) DeleteSender(req *http.Request) (future ExpressRouteCircuitsDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return +} + +// DeleteResponder handles the response to the Delete request. The method always +// closes the http.Response Body. +func (client ExpressRouteCircuitsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), + autorest.ByClosing()) + result.Response = resp + return +} + +// Get gets information about the specified express route circuit. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of express route circuit. +func (client ExpressRouteCircuitsClient) Get(ctx context.Context, resourceGroupName string, circuitName string) (result ExpressRouteCircuit, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, circuitName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "Get", nil, "Failure preparing request") + return + } + + resp, err := client.GetSender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "Get", resp, "Failure sending request") + return + } + + result, err = client.GetResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "Get", resp, "Failure responding to request") + } + + return +} + +// GetPreparer prepares the Get request. +func (client ExpressRouteCircuitsClient) GetPreparer(ctx context.Context, resourceGroupName string, circuitName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "circuitName": autorest.Encode("path", circuitName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// GetSender sends the Get request. The method will close the +// http.Response Body if it receives an error. +func (client ExpressRouteCircuitsClient) GetSender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// GetResponder handles the response to the Get request. The method always +// closes the http.Response Body. +func (client ExpressRouteCircuitsClient) GetResponder(resp *http.Response) (result ExpressRouteCircuit, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// List gets all the express route circuits in a resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +func (client ExpressRouteCircuitsClient) List(ctx context.Context, resourceGroupName string) (result ExpressRouteCircuitListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "List", nil, "Failure preparing request") + return + } + + resp, err := client.ListSender(req) + if err != nil { + result.erclr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "List", resp, "Failure sending request") + return + } + + result.erclr, err = client.ListResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "List", resp, "Failure responding to request") + } + + return +} + +// ListPreparer prepares the List request. +func (client ExpressRouteCircuitsClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// ListSender sends the List request. The method will close the +// http.Response Body if it receives an error. +func (client ExpressRouteCircuitsClient) ListSender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// ListResponder handles the response to the List request. The method always +// closes the http.Response Body. +func (client ExpressRouteCircuitsClient) ListResponder(resp *http.Response) (result ExpressRouteCircuitListResult, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// listNextResults retrieves the next set of results, if any. +func (client ExpressRouteCircuitsClient) listNextResults(lastResults ExpressRouteCircuitListResult) (result ExpressRouteCircuitListResult, err error) { + req, err := lastResults.expressRouteCircuitListResultPreparer() + if err != nil { + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listNextResults", nil, "Failure preparing next results request") + } + if req == nil { + return + } + resp, err := client.ListSender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listNextResults", resp, "Failure sending next results request") + } + result, err = client.ListResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listNextResults", resp, "Failure responding to next results request") + } + return +} + +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client ExpressRouteCircuitsClient) ListComplete(ctx context.Context, resourceGroupName string) (result ExpressRouteCircuitListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName) + return +} + +// ListAll gets all the express route circuits in a subscription. +func (client ExpressRouteCircuitsClient) ListAll(ctx context.Context) (result ExpressRouteCircuitListResultPage, err error) { + result.fn = client.listAllNextResults + req, err := client.ListAllPreparer(ctx) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListAll", nil, "Failure preparing request") + return + } + + resp, err := client.ListAllSender(req) + if err != nil { + result.erclr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListAll", resp, "Failure sending request") + return + } + + result.erclr, err = client.ListAllResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListAll", resp, "Failure responding to request") + } + + return +} + +// ListAllPreparer prepares the ListAll request. +func (client ExpressRouteCircuitsClient) ListAllPreparer(ctx context.Context) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteCircuits", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// ListAllSender sends the ListAll request. The method will close the +// http.Response Body if it receives an error. +func (client ExpressRouteCircuitsClient) ListAllSender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// ListAllResponder handles the response to the ListAll request. The method always +// closes the http.Response Body. +func (client ExpressRouteCircuitsClient) ListAllResponder(resp *http.Response) (result ExpressRouteCircuitListResult, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// listAllNextResults retrieves the next set of results, if any. +func (client ExpressRouteCircuitsClient) listAllNextResults(lastResults ExpressRouteCircuitListResult) (result ExpressRouteCircuitListResult, err error) { + req, err := lastResults.expressRouteCircuitListResultPreparer() + if err != nil { + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listAllNextResults", nil, "Failure preparing next results request") + } + if req == nil { + return + } + resp, err := client.ListAllSender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listAllNextResults", resp, "Failure sending next results request") + } + result, err = client.ListAllResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listAllNextResults", resp, "Failure responding to next results request") + } + return +} + +// ListAllComplete enumerates all values, automatically crossing page boundaries as required. +func (client ExpressRouteCircuitsClient) ListAllComplete(ctx context.Context) (result ExpressRouteCircuitListResultIterator, err error) { + result.page, err = client.ListAll(ctx) + return +} + +// ListArpTable the ListArpTable from ExpressRouteCircuit opertion retrieves the currently advertised arp table +// associated with the ExpressRouteCircuits in a resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the circuit. +func (client ExpressRouteCircuitsClient) ListArpTable(ctx context.Context, resourceGroupName string, circuitName string) (result ExpressRouteCircuitsArpTableListResultPage, err error) { + result.fn = client.listArpTableNextResults + req, err := client.ListArpTablePreparer(ctx, resourceGroupName, circuitName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListArpTable", nil, "Failure preparing request") + return + } + + resp, err := client.ListArpTableSender(req) + if err != nil { + result.ercatlr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListArpTable", resp, "Failure sending request") + return + } + + result.ercatlr, err = client.ListArpTableResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListArpTable", resp, "Failure responding to request") + } + + return +} + +// ListArpTablePreparer prepares the ListArpTable request. +func (client ExpressRouteCircuitsClient) ListArpTablePreparer(ctx context.Context, resourceGroupName string, circuitName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "circuitName": autorest.Encode("path", circuitName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/arpTable", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// ListArpTableSender sends the ListArpTable request. The method will close the +// http.Response Body if it receives an error. +func (client ExpressRouteCircuitsClient) ListArpTableSender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// ListArpTableResponder handles the response to the ListArpTable request. The method always +// closes the http.Response Body. +func (client ExpressRouteCircuitsClient) ListArpTableResponder(resp *http.Response) (result ExpressRouteCircuitsArpTableListResult, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// listArpTableNextResults retrieves the next set of results, if any. +func (client ExpressRouteCircuitsClient) listArpTableNextResults(lastResults ExpressRouteCircuitsArpTableListResult) (result ExpressRouteCircuitsArpTableListResult, err error) { + req, err := lastResults.expressRouteCircuitsArpTableListResultPreparer() + if err != nil { + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listArpTableNextResults", nil, "Failure preparing next results request") + } + if req == nil { + return + } + resp, err := client.ListArpTableSender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listArpTableNextResults", resp, "Failure sending next results request") + } + result, err = client.ListArpTableResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listArpTableNextResults", resp, "Failure responding to next results request") + } + return +} + +// ListArpTableComplete enumerates all values, automatically crossing page boundaries as required. +func (client ExpressRouteCircuitsClient) ListArpTableComplete(ctx context.Context, resourceGroupName string, circuitName string) (result ExpressRouteCircuitsArpTableListResultIterator, err error) { + result.page, err = client.ListArpTable(ctx, resourceGroupName, circuitName) + return +} + +// ListRoutesTable the ListRoutesTable from ExpressRouteCircuit opertion retrieves the currently advertised routes +// table associated with the ExpressRouteCircuits in a resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the circuit. +func (client ExpressRouteCircuitsClient) ListRoutesTable(ctx context.Context, resourceGroupName string, circuitName string) (result ExpressRouteCircuitsRoutesTableListResultPage, err error) { + result.fn = client.listRoutesTableNextResults + req, err := client.ListRoutesTablePreparer(ctx, resourceGroupName, circuitName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListRoutesTable", nil, "Failure preparing request") + return + } + + resp, err := client.ListRoutesTableSender(req) + if err != nil { + result.ercrtlr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListRoutesTable", resp, "Failure sending request") + return + } + + result.ercrtlr, err = client.ListRoutesTableResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListRoutesTable", resp, "Failure responding to request") + } + + return +} + +// ListRoutesTablePreparer prepares the ListRoutesTable request. +func (client ExpressRouteCircuitsClient) ListRoutesTablePreparer(ctx context.Context, resourceGroupName string, circuitName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "circuitName": autorest.Encode("path", circuitName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/routesTable", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// ListRoutesTableSender sends the ListRoutesTable request. The method will close the +// http.Response Body if it receives an error. +func (client ExpressRouteCircuitsClient) ListRoutesTableSender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// ListRoutesTableResponder handles the response to the ListRoutesTable request. The method always +// closes the http.Response Body. +func (client ExpressRouteCircuitsClient) ListRoutesTableResponder(resp *http.Response) (result ExpressRouteCircuitsRoutesTableListResult, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// listRoutesTableNextResults retrieves the next set of results, if any. +func (client ExpressRouteCircuitsClient) listRoutesTableNextResults(lastResults ExpressRouteCircuitsRoutesTableListResult) (result ExpressRouteCircuitsRoutesTableListResult, err error) { + req, err := lastResults.expressRouteCircuitsRoutesTableListResultPreparer() + if err != nil { + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listRoutesTableNextResults", nil, "Failure preparing next results request") + } + if req == nil { + return + } + resp, err := client.ListRoutesTableSender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listRoutesTableNextResults", resp, "Failure sending next results request") + } + result, err = client.ListRoutesTableResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listRoutesTableNextResults", resp, "Failure responding to next results request") + } + return +} + +// ListRoutesTableComplete enumerates all values, automatically crossing page boundaries as required. +func (client ExpressRouteCircuitsClient) ListRoutesTableComplete(ctx context.Context, resourceGroupName string, circuitName string) (result ExpressRouteCircuitsRoutesTableListResultIterator, err error) { + result.page, err = client.ListRoutesTable(ctx, resourceGroupName, circuitName) + return +} + +// ListStats the Liststats ExpressRouteCircuit opertion retrieves all the stats from a ExpressRouteCircuits in a +// resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// circuitName - the name of the loadBalancer. +func (client ExpressRouteCircuitsClient) ListStats(ctx context.Context, resourceGroupName string, circuitName string) (result ExpressRouteCircuitsStatsListResultPage, err error) { + result.fn = client.listStatsNextResults + req, err := client.ListStatsPreparer(ctx, resourceGroupName, circuitName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListStats", nil, "Failure preparing request") + return + } + + resp, err := client.ListStatsSender(req) + if err != nil { + result.ercslr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListStats", resp, "Failure sending request") + return + } + + result.ercslr, err = client.ListStatsResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "ListStats", resp, "Failure responding to request") + } + + return +} + +// ListStatsPreparer prepares the ListStats request. +func (client ExpressRouteCircuitsClient) ListStatsPreparer(ctx context.Context, resourceGroupName string, circuitName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "circuitName": autorest.Encode("path", circuitName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}/stats", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// ListStatsSender sends the ListStats request. The method will close the +// http.Response Body if it receives an error. +func (client ExpressRouteCircuitsClient) ListStatsSender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// ListStatsResponder handles the response to the ListStats request. The method always +// closes the http.Response Body. +func (client ExpressRouteCircuitsClient) ListStatsResponder(resp *http.Response) (result ExpressRouteCircuitsStatsListResult, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// listStatsNextResults retrieves the next set of results, if any. +func (client ExpressRouteCircuitsClient) listStatsNextResults(lastResults ExpressRouteCircuitsStatsListResult) (result ExpressRouteCircuitsStatsListResult, err error) { + req, err := lastResults.expressRouteCircuitsStatsListResultPreparer() + if err != nil { + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listStatsNextResults", nil, "Failure preparing next results request") + } + if req == nil { + return + } + resp, err := client.ListStatsSender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + return result, autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listStatsNextResults", resp, "Failure sending next results request") + } + result, err = client.ListStatsResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsClient", "listStatsNextResults", resp, "Failure responding to next results request") + } + return +} + +// ListStatsComplete enumerates all values, automatically crossing page boundaries as required. +func (client ExpressRouteCircuitsClient) ListStatsComplete(ctx context.Context, resourceGroupName string, circuitName string) (result ExpressRouteCircuitsStatsListResultIterator, err error) { + result.page, err = client.ListStats(ctx, resourceGroupName, circuitName) + return +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressrouteserviceproviders.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressrouteserviceproviders.go similarity index 63% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressrouteserviceproviders.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressrouteserviceproviders.go index 9d0450ecf..612452ba3 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/expressrouteserviceproviders.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/expressrouteserviceproviders.go @@ -14,51 +14,49 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "net/http" ) -// ExpressRouteServiceProvidersClient is the the Microsoft Azure Network -// management API provides a RESTful set of web services that interact with -// Microsoft Azure Networks service to manage your network resources. The API -// has entities that capture the relationship between an end user and the -// Microsoft Azure Networks service. +// ExpressRouteServiceProvidersClient is the network Client type ExpressRouteServiceProvidersClient struct { - ManagementClient + BaseClient } -// NewExpressRouteServiceProvidersClient creates an instance of the -// ExpressRouteServiceProvidersClient client. +// NewExpressRouteServiceProvidersClient creates an instance of the ExpressRouteServiceProvidersClient client. func NewExpressRouteServiceProvidersClient(subscriptionID string) ExpressRouteServiceProvidersClient { return NewExpressRouteServiceProvidersClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewExpressRouteServiceProvidersClientWithBaseURI creates an instance of the -// ExpressRouteServiceProvidersClient client. +// NewExpressRouteServiceProvidersClientWithBaseURI creates an instance of the ExpressRouteServiceProvidersClient +// client. func NewExpressRouteServiceProvidersClientWithBaseURI(baseURI string, subscriptionID string) ExpressRouteServiceProvidersClient { return ExpressRouteServiceProvidersClient{NewWithBaseURI(baseURI, subscriptionID)} } // List gets all the available express route service providers. -func (client ExpressRouteServiceProvidersClient) List() (result ExpressRouteServiceProviderListResult, err error) { - req, err := client.ListPreparer() +func (client ExpressRouteServiceProvidersClient) List(ctx context.Context) (result ExpressRouteServiceProviderListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx) if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteServiceProvidersClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteServiceProvidersClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteServiceProvidersClient", "List", resp, "Failure sending request") + result.ersplr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.ExpressRouteServiceProvidersClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.ersplr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.ExpressRouteServiceProvidersClient", "List", resp, "Failure responding to request") } @@ -67,13 +65,14 @@ func (client ExpressRouteServiceProvidersClient) List() (result ExpressRouteServ } // ListPreparer prepares the List request. -func (client ExpressRouteServiceProvidersClient) ListPreparer() (*http.Request, error) { +func (client ExpressRouteServiceProvidersClient) ListPreparer(ctx context.Context) (*http.Request, error) { pathParameters := map[string]interface{}{ "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -81,13 +80,14 @@ func (client ExpressRouteServiceProvidersClient) ListPreparer() (*http.Request, autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteServiceProviders", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client ExpressRouteServiceProvidersClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -103,26 +103,29 @@ func (client ExpressRouteServiceProvidersClient) ListResponder(resp *http.Respon return } -// ListNextResults retrieves the next set of results, if any. -func (client ExpressRouteServiceProvidersClient) ListNextResults(lastResults ExpressRouteServiceProviderListResult) (result ExpressRouteServiceProviderListResult, err error) { - req, err := lastResults.ExpressRouteServiceProviderListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client ExpressRouteServiceProvidersClient) listNextResults(lastResults ExpressRouteServiceProviderListResult) (result ExpressRouteServiceProviderListResult, err error) { + req, err := lastResults.expressRouteServiceProviderListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.ExpressRouteServiceProvidersClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.ExpressRouteServiceProvidersClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.ExpressRouteServiceProvidersClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.ExpressRouteServiceProvidersClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.ExpressRouteServiceProvidersClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.ExpressRouteServiceProvidersClient", "listNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client ExpressRouteServiceProvidersClient) ListComplete(ctx context.Context) (result ExpressRouteServiceProviderListResultIterator, err error) { + result.page, err = client.List(ctx) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/interfaces.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/interfaces.go similarity index 53% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/interfaces.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/interfaces.go index 90f0b8e4e..f989d7bc7 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/interfaces.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/interfaces.go @@ -14,23 +14,19 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "net/http" ) -// InterfacesClient is the the Microsoft Azure Network management API provides -// a RESTful set of web services that interact with Microsoft Azure Networks -// service to manage your network resources. The API has entities that -// capture the relationship between an end user and the Microsoft Azure -// Networks service. +// InterfacesClient is the network Client type InterfacesClient struct { - ManagementClient + BaseClient } // NewInterfacesClient creates an instance of the InterfacesClient client. @@ -38,119 +34,114 @@ func NewInterfacesClient(subscriptionID string) InterfacesClient { return NewInterfacesClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewInterfacesClientWithBaseURI creates an instance of the InterfacesClient -// client. +// NewInterfacesClientWithBaseURI creates an instance of the InterfacesClient client. func NewInterfacesClientWithBaseURI(baseURI string, subscriptionID string) InterfacesClient { return InterfacesClient{NewWithBaseURI(baseURI, subscriptionID)} } -// CreateOrUpdate creates or updates a network interface. This method may poll -// for completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. networkInterfaceName -// is the name of the network interface. parameters is parameters supplied to -// the create or update network interface operation. -func (client InterfacesClient) CreateOrUpdate(resourceGroupName string, networkInterfaceName string, parameters Interface, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.CreateOrUpdatePreparer(resourceGroupName, networkInterfaceName, parameters, cancel) +// CreateOrUpdate creates or updates a network interface. +// Parameters: +// resourceGroupName - the name of the resource group. +// networkInterfaceName - the name of the network interface. +// parameters - parameters supplied to the create or update network interface operation. +func (client InterfacesClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, networkInterfaceName string, parameters Interface) (result InterfacesCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, networkInterfaceName, parameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "CreateOrUpdate", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - resp, err := client.CreateOrUpdateSender(req) + result, err = client.CreateOrUpdateSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.InterfacesClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client InterfacesClient) CreateOrUpdatePreparer(resourceGroupName string, networkInterfaceName string, parameters Interface, cancel <-chan struct{}) (*http.Request, error) { +func (client InterfacesClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, networkInterfaceName string, parameters Interface) (*http.Request, error) { pathParameters := map[string]interface{}{ "networkInterfaceName": autorest.Encode("path", networkInterfaceName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}", pathParameters), autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client InterfacesClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client InterfacesClient) CreateOrUpdateSender(req *http.Request) (future InterfacesCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client InterfacesClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client InterfacesClient) CreateOrUpdateResponder(resp *http.Response) (result Interface, err error) { err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusCreated, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified network interface. This method may poll for -// completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. networkInterfaceName -// is the name of the network interface. -func (client InterfacesClient) Delete(resourceGroupName string, networkInterfaceName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, networkInterfaceName, cancel) +// Delete deletes the specified network interface. +// Parameters: +// resourceGroupName - the name of the resource group. +// networkInterfaceName - the name of the network interface. +func (client InterfacesClient) Delete(ctx context.Context, resourceGroupName string, networkInterfaceName string) (result InterfacesDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, networkInterfaceName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.InterfacesClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client InterfacesClient) DeletePreparer(resourceGroupName string, networkInterfaceName string, cancel <-chan struct{}) (*http.Request, error) { +func (client InterfacesClient) DeletePreparer(ctx context.Context, resourceGroupName string, networkInterfaceName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "networkInterfaceName": autorest.Encode("path", networkInterfaceName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -158,15 +149,22 @@ func (client InterfacesClient) DeletePreparer(resourceGroupName string, networkI autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client InterfacesClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client InterfacesClient) DeleteSender(req *http.Request) (future InterfacesDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -175,27 +173,29 @@ func (client InterfacesClient) DeleteResponder(resp *http.Response) (result auto err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusNoContent, http.StatusAccepted, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } // Get gets information about the specified network interface. -// -// resourceGroupName is the name of the resource group. networkInterfaceName -// is the name of the network interface. expand is expands referenced -// resources. -func (client InterfacesClient) Get(resourceGroupName string, networkInterfaceName string, expand string) (result Interface, err error) { - req, err := client.GetPreparer(resourceGroupName, networkInterfaceName, expand) +// Parameters: +// resourceGroupName - the name of the resource group. +// networkInterfaceName - the name of the network interface. +// expand - expands referenced resources. +func (client InterfacesClient) Get(ctx context.Context, resourceGroupName string, networkInterfaceName string, expand string) (result Interface, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, networkInterfaceName, expand) if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -207,15 +207,16 @@ func (client InterfacesClient) Get(resourceGroupName string, networkInterfaceNam } // GetPreparer prepares the Get request. -func (client InterfacesClient) GetPreparer(resourceGroupName string, networkInterfaceName string, expand string) (*http.Request, error) { +func (client InterfacesClient) GetPreparer(ctx context.Context, resourceGroupName string, networkInterfaceName string, expand string) (*http.Request, error) { pathParameters := map[string]interface{}{ "networkInterfaceName": autorest.Encode("path", networkInterfaceName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } if len(expand) > 0 { queryParameters["$expand"] = autorest.Encode("query", expand) @@ -226,13 +227,14 @@ func (client InterfacesClient) GetPreparer(resourceGroupName string, networkInte autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client InterfacesClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -248,90 +250,25 @@ func (client InterfacesClient) GetResponder(resp *http.Response) (result Interfa return } -// GetEffectiveRouteTable gets all route tables applied to a network -// interface. This method may poll for completion. Polling can be canceled by -// passing the cancel channel argument. The channel will be used to cancel -// polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. networkInterfaceName -// is the name of the network interface. -func (client InterfacesClient) GetEffectiveRouteTable(resourceGroupName string, networkInterfaceName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.GetEffectiveRouteTablePreparer(resourceGroupName, networkInterfaceName, cancel) +// GetVirtualMachineScaleSetNetworkInterface get the specified network interface in a virtual machine scale set. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualMachineScaleSetName - the name of the virtual machine scale set. +// virtualmachineIndex - the virtual machine index. +// networkInterfaceName - the name of the network interface. +// expand - expands referenced resources. +func (client InterfacesClient) GetVirtualMachineScaleSetNetworkInterface(ctx context.Context, resourceGroupName string, virtualMachineScaleSetName string, virtualmachineIndex string, networkInterfaceName string, expand string) (result Interface, err error) { + req, err := client.GetVirtualMachineScaleSetNetworkInterfacePreparer(ctx, resourceGroupName, virtualMachineScaleSetName, virtualmachineIndex, networkInterfaceName, expand) if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "GetEffectiveRouteTable", nil, "Failure preparing request") - } - - resp, err := client.GetEffectiveRouteTableSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "GetEffectiveRouteTable", resp, "Failure sending request") - } - - result, err = client.GetEffectiveRouteTableResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.InterfacesClient", "GetEffectiveRouteTable", resp, "Failure responding to request") - } - - return -} - -// GetEffectiveRouteTablePreparer prepares the GetEffectiveRouteTable request. -func (client InterfacesClient) GetEffectiveRouteTablePreparer(resourceGroupName string, networkInterfaceName string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "networkInterfaceName": autorest.Encode("path", networkInterfaceName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsPost(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveRouteTable", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// GetEffectiveRouteTableSender sends the GetEffectiveRouteTable request. The method will close the -// http.Response Body if it receives an error. -func (client InterfacesClient) GetEffectiveRouteTableSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// GetEffectiveRouteTableResponder handles the response to the GetEffectiveRouteTable request. The method always -// closes the http.Response Body. -func (client InterfacesClient) GetEffectiveRouteTableResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), - autorest.ByClosing()) - result.Response = resp - return -} - -// GetVirtualMachineScaleSetNetworkInterface get the specified network -// interface in a virtual machine scale set. -// -// resourceGroupName is the name of the resource group. -// virtualMachineScaleSetName is the name of the virtual machine scale set. -// virtualmachineIndex is the virtual machine index. networkInterfaceName is -// the name of the network interface. expand is expands referenced resources. -func (client InterfacesClient) GetVirtualMachineScaleSetNetworkInterface(resourceGroupName string, virtualMachineScaleSetName string, virtualmachineIndex string, networkInterfaceName string, expand string) (result Interface, err error) { - req, err := client.GetVirtualMachineScaleSetNetworkInterfacePreparer(resourceGroupName, virtualMachineScaleSetName, virtualmachineIndex, networkInterfaceName, expand) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "GetVirtualMachineScaleSetNetworkInterface", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "GetVirtualMachineScaleSetNetworkInterface", nil, "Failure preparing request") + return } resp, err := client.GetVirtualMachineScaleSetNetworkInterfaceSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "GetVirtualMachineScaleSetNetworkInterface", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "GetVirtualMachineScaleSetNetworkInterface", resp, "Failure sending request") + return } result, err = client.GetVirtualMachineScaleSetNetworkInterfaceResponder(resp) @@ -343,7 +280,7 @@ func (client InterfacesClient) GetVirtualMachineScaleSetNetworkInterface(resourc } // GetVirtualMachineScaleSetNetworkInterfacePreparer prepares the GetVirtualMachineScaleSetNetworkInterface request. -func (client InterfacesClient) GetVirtualMachineScaleSetNetworkInterfacePreparer(resourceGroupName string, virtualMachineScaleSetName string, virtualmachineIndex string, networkInterfaceName string, expand string) (*http.Request, error) { +func (client InterfacesClient) GetVirtualMachineScaleSetNetworkInterfacePreparer(ctx context.Context, resourceGroupName string, virtualMachineScaleSetName string, virtualmachineIndex string, networkInterfaceName string, expand string) (*http.Request, error) { pathParameters := map[string]interface{}{ "networkInterfaceName": autorest.Encode("path", networkInterfaceName), "resourceGroupName": autorest.Encode("path", resourceGroupName), @@ -352,8 +289,9 @@ func (client InterfacesClient) GetVirtualMachineScaleSetNetworkInterfacePreparer "virtualMachineScaleSetName": autorest.Encode("path", virtualMachineScaleSetName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } if len(expand) > 0 { queryParameters["$expand"] = autorest.Encode("query", expand) @@ -364,13 +302,14 @@ func (client InterfacesClient) GetVirtualMachineScaleSetNetworkInterfacePreparer autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces/{networkInterfaceName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetVirtualMachineScaleSetNetworkInterfaceSender sends the GetVirtualMachineScaleSetNetworkInterface request. The method will close the // http.Response Body if it receives an error. func (client InterfacesClient) GetVirtualMachineScaleSetNetworkInterfaceSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetVirtualMachineScaleSetNetworkInterfaceResponder handles the response to the GetVirtualMachineScaleSetNetworkInterface request. The method always @@ -387,21 +326,24 @@ func (client InterfacesClient) GetVirtualMachineScaleSetNetworkInterfaceResponde } // List gets all network interfaces in a resource group. -// -// resourceGroupName is the name of the resource group. -func (client InterfacesClient) List(resourceGroupName string) (result InterfaceListResult, err error) { - req, err := client.ListPreparer(resourceGroupName) +// Parameters: +// resourceGroupName - the name of the resource group. +func (client InterfacesClient) List(ctx context.Context, resourceGroupName string) (result InterfaceListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "List", resp, "Failure sending request") + result.ilr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.ilr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.InterfacesClient", "List", resp, "Failure responding to request") } @@ -410,14 +352,15 @@ func (client InterfacesClient) List(resourceGroupName string) (result InterfaceL } // ListPreparer prepares the List request. -func (client InterfacesClient) ListPreparer(resourceGroupName string) (*http.Request, error) { +func (client InterfacesClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -425,13 +368,14 @@ func (client InterfacesClient) ListPreparer(resourceGroupName string) (*http.Req autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client InterfacesClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -447,44 +391,50 @@ func (client InterfacesClient) ListResponder(resp *http.Response) (result Interf return } -// ListNextResults retrieves the next set of results, if any. -func (client InterfacesClient) ListNextResults(lastResults InterfaceListResult) (result InterfaceListResult, err error) { - req, err := lastResults.InterfaceListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client InterfacesClient) listNextResults(lastResults InterfaceListResult) (result InterfaceListResult, err error) { + req, err := lastResults.interfaceListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.InterfacesClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "listNextResults", resp, "Failure responding to next results request") } + return +} +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client InterfacesClient) ListComplete(ctx context.Context, resourceGroupName string) (result InterfaceListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName) return } // ListAll gets all network interfaces in a subscription. -func (client InterfacesClient) ListAll() (result InterfaceListResult, err error) { - req, err := client.ListAllPreparer() +func (client InterfacesClient) ListAll(ctx context.Context) (result InterfaceListResultPage, err error) { + result.fn = client.listAllNextResults + req, err := client.ListAllPreparer(ctx) if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListAll", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListAll", nil, "Failure preparing request") + return } resp, err := client.ListAllSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListAll", resp, "Failure sending request") + result.ilr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListAll", resp, "Failure sending request") + return } - result, err = client.ListAllResponder(resp) + result.ilr, err = client.ListAllResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListAll", resp, "Failure responding to request") } @@ -493,13 +443,14 @@ func (client InterfacesClient) ListAll() (result InterfaceListResult, err error) } // ListAllPreparer prepares the ListAll request. -func (client InterfacesClient) ListAllPreparer() (*http.Request, error) { +func (client InterfacesClient) ListAllPreparer(ctx context.Context) (*http.Request, error) { pathParameters := map[string]interface{}{ "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -507,13 +458,14 @@ func (client InterfacesClient) ListAllPreparer() (*http.Request, error) { autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkInterfaces", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListAllSender sends the ListAll request. The method will close the // http.Response Body if it receives an error. func (client InterfacesClient) ListAllSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListAllResponder handles the response to the ListAll request. The method always @@ -529,115 +481,53 @@ func (client InterfacesClient) ListAllResponder(resp *http.Response) (result Int return } -// ListAllNextResults retrieves the next set of results, if any. -func (client InterfacesClient) ListAllNextResults(lastResults InterfaceListResult) (result InterfaceListResult, err error) { - req, err := lastResults.InterfaceListResultPreparer() +// listAllNextResults retrieves the next set of results, if any. +func (client InterfacesClient) listAllNextResults(lastResults InterfaceListResult) (result InterfaceListResult, err error) { + req, err := lastResults.interfaceListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListAll", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "listAllNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListAllSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListAll", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "listAllNextResults", resp, "Failure sending next results request") } - result, err = client.ListAllResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListAll", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "listAllNextResults", resp, "Failure responding to next results request") } - return } -// ListEffectiveNetworkSecurityGroups gets all network security groups applied -// to a network interface. This method may poll for completion. Polling can -// be canceled by passing the cancel channel argument. The channel will be -// used to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. networkInterfaceName -// is the name of the network interface. -func (client InterfacesClient) ListEffectiveNetworkSecurityGroups(resourceGroupName string, networkInterfaceName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.ListEffectiveNetworkSecurityGroupsPreparer(resourceGroupName, networkInterfaceName, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListEffectiveNetworkSecurityGroups", nil, "Failure preparing request") - } - - resp, err := client.ListEffectiveNetworkSecurityGroupsSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListEffectiveNetworkSecurityGroups", resp, "Failure sending request") - } - - result, err = client.ListEffectiveNetworkSecurityGroupsResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListEffectiveNetworkSecurityGroups", resp, "Failure responding to request") - } - +// ListAllComplete enumerates all values, automatically crossing page boundaries as required. +func (client InterfacesClient) ListAllComplete(ctx context.Context) (result InterfaceListResultIterator, err error) { + result.page, err = client.ListAll(ctx) return } -// ListEffectiveNetworkSecurityGroupsPreparer prepares the ListEffectiveNetworkSecurityGroups request. -func (client InterfacesClient) ListEffectiveNetworkSecurityGroupsPreparer(resourceGroupName string, networkInterfaceName string, cancel <-chan struct{}) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "networkInterfaceName": autorest.Encode("path", networkInterfaceName), - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - - preparer := autorest.CreatePreparer( - autorest.AsPost(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkInterfaces/{networkInterfaceName}/effectiveNetworkSecurityGroups", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) -} - -// ListEffectiveNetworkSecurityGroupsSender sends the ListEffectiveNetworkSecurityGroups request. The method will close the -// http.Response Body if it receives an error. -func (client InterfacesClient) ListEffectiveNetworkSecurityGroupsSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) -} - -// ListEffectiveNetworkSecurityGroupsResponder handles the response to the ListEffectiveNetworkSecurityGroups request. The method always -// closes the http.Response Body. -func (client InterfacesClient) ListEffectiveNetworkSecurityGroupsResponder(resp *http.Response) (result autorest.Response, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), - autorest.ByClosing()) - result.Response = resp - return -} - -// ListVirtualMachineScaleSetNetworkInterfaces gets all network interfaces in -// a virtual machine scale set. -// -// resourceGroupName is the name of the resource group. -// virtualMachineScaleSetName is the name of the virtual machine scale set. -func (client InterfacesClient) ListVirtualMachineScaleSetNetworkInterfaces(resourceGroupName string, virtualMachineScaleSetName string) (result InterfaceListResult, err error) { - req, err := client.ListVirtualMachineScaleSetNetworkInterfacesPreparer(resourceGroupName, virtualMachineScaleSetName) +// ListVirtualMachineScaleSetNetworkInterfaces gets all network interfaces in a virtual machine scale set. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualMachineScaleSetName - the name of the virtual machine scale set. +func (client InterfacesClient) ListVirtualMachineScaleSetNetworkInterfaces(ctx context.Context, resourceGroupName string, virtualMachineScaleSetName string) (result InterfaceListResultPage, err error) { + result.fn = client.listVirtualMachineScaleSetNetworkInterfacesNextResults + req, err := client.ListVirtualMachineScaleSetNetworkInterfacesPreparer(ctx, resourceGroupName, virtualMachineScaleSetName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetNetworkInterfaces", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetNetworkInterfaces", nil, "Failure preparing request") + return } resp, err := client.ListVirtualMachineScaleSetNetworkInterfacesSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetNetworkInterfaces", resp, "Failure sending request") + result.ilr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetNetworkInterfaces", resp, "Failure sending request") + return } - result, err = client.ListVirtualMachineScaleSetNetworkInterfacesResponder(resp) + result.ilr, err = client.ListVirtualMachineScaleSetNetworkInterfacesResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetNetworkInterfaces", resp, "Failure responding to request") } @@ -646,15 +536,16 @@ func (client InterfacesClient) ListVirtualMachineScaleSetNetworkInterfaces(resou } // ListVirtualMachineScaleSetNetworkInterfacesPreparer prepares the ListVirtualMachineScaleSetNetworkInterfaces request. -func (client InterfacesClient) ListVirtualMachineScaleSetNetworkInterfacesPreparer(resourceGroupName string, virtualMachineScaleSetName string) (*http.Request, error) { +func (client InterfacesClient) ListVirtualMachineScaleSetNetworkInterfacesPreparer(ctx context.Context, resourceGroupName string, virtualMachineScaleSetName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), "virtualMachineScaleSetName": autorest.Encode("path", virtualMachineScaleSetName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -662,13 +553,14 @@ func (client InterfacesClient) ListVirtualMachineScaleSetNetworkInterfacesPrepar autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/networkInterfaces", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListVirtualMachineScaleSetNetworkInterfacesSender sends the ListVirtualMachineScaleSetNetworkInterfaces request. The method will close the // http.Response Body if it receives an error. func (client InterfacesClient) ListVirtualMachineScaleSetNetworkInterfacesSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListVirtualMachineScaleSetNetworkInterfacesResponder handles the response to the ListVirtualMachineScaleSetNetworkInterfaces request. The method always @@ -684,49 +576,55 @@ func (client InterfacesClient) ListVirtualMachineScaleSetNetworkInterfacesRespon return } -// ListVirtualMachineScaleSetNetworkInterfacesNextResults retrieves the next set of results, if any. -func (client InterfacesClient) ListVirtualMachineScaleSetNetworkInterfacesNextResults(lastResults InterfaceListResult) (result InterfaceListResult, err error) { - req, err := lastResults.InterfaceListResultPreparer() +// listVirtualMachineScaleSetNetworkInterfacesNextResults retrieves the next set of results, if any. +func (client InterfacesClient) listVirtualMachineScaleSetNetworkInterfacesNextResults(lastResults InterfaceListResult) (result InterfaceListResult, err error) { + req, err := lastResults.interfaceListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetNetworkInterfaces", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "listVirtualMachineScaleSetNetworkInterfacesNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListVirtualMachineScaleSetNetworkInterfacesSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetNetworkInterfaces", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "listVirtualMachineScaleSetNetworkInterfacesNextResults", resp, "Failure sending next results request") } - result, err = client.ListVirtualMachineScaleSetNetworkInterfacesResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetNetworkInterfaces", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "listVirtualMachineScaleSetNetworkInterfacesNextResults", resp, "Failure responding to next results request") } - return } -// ListVirtualMachineScaleSetVMNetworkInterfaces gets information about all -// network interfaces in a virtual machine in a virtual machine scale set. -// -// resourceGroupName is the name of the resource group. -// virtualMachineScaleSetName is the name of the virtual machine scale set. -// virtualmachineIndex is the virtual machine index. -func (client InterfacesClient) ListVirtualMachineScaleSetVMNetworkInterfaces(resourceGroupName string, virtualMachineScaleSetName string, virtualmachineIndex string) (result InterfaceListResult, err error) { - req, err := client.ListVirtualMachineScaleSetVMNetworkInterfacesPreparer(resourceGroupName, virtualMachineScaleSetName, virtualmachineIndex) +// ListVirtualMachineScaleSetNetworkInterfacesComplete enumerates all values, automatically crossing page boundaries as required. +func (client InterfacesClient) ListVirtualMachineScaleSetNetworkInterfacesComplete(ctx context.Context, resourceGroupName string, virtualMachineScaleSetName string) (result InterfaceListResultIterator, err error) { + result.page, err = client.ListVirtualMachineScaleSetNetworkInterfaces(ctx, resourceGroupName, virtualMachineScaleSetName) + return +} + +// ListVirtualMachineScaleSetVMNetworkInterfaces gets information about all network interfaces in a virtual machine in +// a virtual machine scale set. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualMachineScaleSetName - the name of the virtual machine scale set. +// virtualmachineIndex - the virtual machine index. +func (client InterfacesClient) ListVirtualMachineScaleSetVMNetworkInterfaces(ctx context.Context, resourceGroupName string, virtualMachineScaleSetName string, virtualmachineIndex string) (result InterfaceListResultPage, err error) { + result.fn = client.listVirtualMachineScaleSetVMNetworkInterfacesNextResults + req, err := client.ListVirtualMachineScaleSetVMNetworkInterfacesPreparer(ctx, resourceGroupName, virtualMachineScaleSetName, virtualmachineIndex) if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetVMNetworkInterfaces", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetVMNetworkInterfaces", nil, "Failure preparing request") + return } resp, err := client.ListVirtualMachineScaleSetVMNetworkInterfacesSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetVMNetworkInterfaces", resp, "Failure sending request") + result.ilr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetVMNetworkInterfaces", resp, "Failure sending request") + return } - result, err = client.ListVirtualMachineScaleSetVMNetworkInterfacesResponder(resp) + result.ilr, err = client.ListVirtualMachineScaleSetVMNetworkInterfacesResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetVMNetworkInterfaces", resp, "Failure responding to request") } @@ -735,7 +633,7 @@ func (client InterfacesClient) ListVirtualMachineScaleSetVMNetworkInterfaces(res } // ListVirtualMachineScaleSetVMNetworkInterfacesPreparer prepares the ListVirtualMachineScaleSetVMNetworkInterfaces request. -func (client InterfacesClient) ListVirtualMachineScaleSetVMNetworkInterfacesPreparer(resourceGroupName string, virtualMachineScaleSetName string, virtualmachineIndex string) (*http.Request, error) { +func (client InterfacesClient) ListVirtualMachineScaleSetVMNetworkInterfacesPreparer(ctx context.Context, resourceGroupName string, virtualMachineScaleSetName string, virtualmachineIndex string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), @@ -743,8 +641,9 @@ func (client InterfacesClient) ListVirtualMachineScaleSetVMNetworkInterfacesPrep "virtualMachineScaleSetName": autorest.Encode("path", virtualMachineScaleSetName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -752,13 +651,14 @@ func (client InterfacesClient) ListVirtualMachineScaleSetVMNetworkInterfacesPrep autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.Compute/virtualMachineScaleSets/{virtualMachineScaleSetName}/virtualMachines/{virtualmachineIndex}/networkInterfaces", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListVirtualMachineScaleSetVMNetworkInterfacesSender sends the ListVirtualMachineScaleSetVMNetworkInterfaces request. The method will close the // http.Response Body if it receives an error. func (client InterfacesClient) ListVirtualMachineScaleSetVMNetworkInterfacesSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListVirtualMachineScaleSetVMNetworkInterfacesResponder handles the response to the ListVirtualMachineScaleSetVMNetworkInterfaces request. The method always @@ -774,26 +674,29 @@ func (client InterfacesClient) ListVirtualMachineScaleSetVMNetworkInterfacesResp return } -// ListVirtualMachineScaleSetVMNetworkInterfacesNextResults retrieves the next set of results, if any. -func (client InterfacesClient) ListVirtualMachineScaleSetVMNetworkInterfacesNextResults(lastResults InterfaceListResult) (result InterfaceListResult, err error) { - req, err := lastResults.InterfaceListResultPreparer() +// listVirtualMachineScaleSetVMNetworkInterfacesNextResults retrieves the next set of results, if any. +func (client InterfacesClient) listVirtualMachineScaleSetVMNetworkInterfacesNextResults(lastResults InterfaceListResult) (result InterfaceListResult, err error) { + req, err := lastResults.interfaceListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetVMNetworkInterfaces", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "listVirtualMachineScaleSetVMNetworkInterfacesNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListVirtualMachineScaleSetVMNetworkInterfacesSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetVMNetworkInterfaces", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.InterfacesClient", "listVirtualMachineScaleSetVMNetworkInterfacesNextResults", resp, "Failure sending next results request") } - result, err = client.ListVirtualMachineScaleSetVMNetworkInterfacesResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.InterfacesClient", "ListVirtualMachineScaleSetVMNetworkInterfaces", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.InterfacesClient", "listVirtualMachineScaleSetVMNetworkInterfacesNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListVirtualMachineScaleSetVMNetworkInterfacesComplete enumerates all values, automatically crossing page boundaries as required. +func (client InterfacesClient) ListVirtualMachineScaleSetVMNetworkInterfacesComplete(ctx context.Context, resourceGroupName string, virtualMachineScaleSetName string, virtualmachineIndex string) (result InterfaceListResultIterator, err error) { + result.page, err = client.ListVirtualMachineScaleSetVMNetworkInterfaces(ctx, resourceGroupName, virtualMachineScaleSetName, virtualmachineIndex) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/loadbalancers.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/loadbalancers.go similarity index 55% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/loadbalancers.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/loadbalancers.go index 30012ff35..c2f0b9768 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/loadbalancers.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/loadbalancers.go @@ -14,144 +14,134 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "net/http" ) -// LoadBalancersClient is the the Microsoft Azure Network management API -// provides a RESTful set of web services that interact with Microsoft Azure -// Networks service to manage your network resources. The API has entities -// that capture the relationship between an end user and the Microsoft Azure -// Networks service. +// LoadBalancersClient is the network Client type LoadBalancersClient struct { - ManagementClient + BaseClient } -// NewLoadBalancersClient creates an instance of the LoadBalancersClient -// client. +// NewLoadBalancersClient creates an instance of the LoadBalancersClient client. func NewLoadBalancersClient(subscriptionID string) LoadBalancersClient { return NewLoadBalancersClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewLoadBalancersClientWithBaseURI creates an instance of the -// LoadBalancersClient client. +// NewLoadBalancersClientWithBaseURI creates an instance of the LoadBalancersClient client. func NewLoadBalancersClientWithBaseURI(baseURI string, subscriptionID string) LoadBalancersClient { return LoadBalancersClient{NewWithBaseURI(baseURI, subscriptionID)} } -// CreateOrUpdate creates or updates a load balancer. This method may poll for -// completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. loadBalancerName is -// the name of the load balancer. parameters is parameters supplied to the -// create or update load balancer operation. -func (client LoadBalancersClient) CreateOrUpdate(resourceGroupName string, loadBalancerName string, parameters LoadBalancer, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.CreateOrUpdatePreparer(resourceGroupName, loadBalancerName, parameters, cancel) +// CreateOrUpdate creates or updates a load balancer. +// Parameters: +// resourceGroupName - the name of the resource group. +// loadBalancerName - the name of the load balancer. +// parameters - parameters supplied to the create or update load balancer operation. +func (client LoadBalancersClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, loadBalancerName string, parameters LoadBalancer) (result LoadBalancersCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, loadBalancerName, parameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "CreateOrUpdate", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - resp, err := client.CreateOrUpdateSender(req) + result, err = client.CreateOrUpdateSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client LoadBalancersClient) CreateOrUpdatePreparer(resourceGroupName string, loadBalancerName string, parameters LoadBalancer, cancel <-chan struct{}) (*http.Request, error) { +func (client LoadBalancersClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, loadBalancerName string, parameters LoadBalancer) (*http.Request, error) { pathParameters := map[string]interface{}{ "loadBalancerName": autorest.Encode("path", loadBalancerName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}", pathParameters), autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client LoadBalancersClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client LoadBalancersClient) CreateOrUpdateSender(req *http.Request) (future LoadBalancersCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client LoadBalancersClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client LoadBalancersClient) CreateOrUpdateResponder(resp *http.Response) (result LoadBalancer, err error) { err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusCreated, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified load balancer. This method may poll for -// completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. loadBalancerName is -// the name of the load balancer. -func (client LoadBalancersClient) Delete(resourceGroupName string, loadBalancerName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, loadBalancerName, cancel) +// Delete deletes the specified load balancer. +// Parameters: +// resourceGroupName - the name of the resource group. +// loadBalancerName - the name of the load balancer. +func (client LoadBalancersClient) Delete(ctx context.Context, resourceGroupName string, loadBalancerName string) (result LoadBalancersDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, loadBalancerName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client LoadBalancersClient) DeletePreparer(resourceGroupName string, loadBalancerName string, cancel <-chan struct{}) (*http.Request, error) { +func (client LoadBalancersClient) DeletePreparer(ctx context.Context, resourceGroupName string, loadBalancerName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "loadBalancerName": autorest.Encode("path", loadBalancerName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -159,15 +149,22 @@ func (client LoadBalancersClient) DeletePreparer(resourceGroupName string, loadB autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client LoadBalancersClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client LoadBalancersClient) DeleteSender(req *http.Request) (future LoadBalancersDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -176,26 +173,29 @@ func (client LoadBalancersClient) DeleteResponder(resp *http.Response) (result a err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusNoContent, http.StatusAccepted, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } // Get gets the specified load balancer. -// -// resourceGroupName is the name of the resource group. loadBalancerName is -// the name of the load balancer. expand is expands referenced resources. -func (client LoadBalancersClient) Get(resourceGroupName string, loadBalancerName string, expand string) (result LoadBalancer, err error) { - req, err := client.GetPreparer(resourceGroupName, loadBalancerName, expand) +// Parameters: +// resourceGroupName - the name of the resource group. +// loadBalancerName - the name of the load balancer. +// expand - expands referenced resources. +func (client LoadBalancersClient) Get(ctx context.Context, resourceGroupName string, loadBalancerName string, expand string) (result LoadBalancer, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, loadBalancerName, expand) if err != nil { - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -207,15 +207,16 @@ func (client LoadBalancersClient) Get(resourceGroupName string, loadBalancerName } // GetPreparer prepares the Get request. -func (client LoadBalancersClient) GetPreparer(resourceGroupName string, loadBalancerName string, expand string) (*http.Request, error) { +func (client LoadBalancersClient) GetPreparer(ctx context.Context, resourceGroupName string, loadBalancerName string, expand string) (*http.Request, error) { pathParameters := map[string]interface{}{ "loadBalancerName": autorest.Encode("path", loadBalancerName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } if len(expand) > 0 { queryParameters["$expand"] = autorest.Encode("query", expand) @@ -226,13 +227,14 @@ func (client LoadBalancersClient) GetPreparer(resourceGroupName string, loadBala autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client LoadBalancersClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -249,21 +251,24 @@ func (client LoadBalancersClient) GetResponder(resp *http.Response) (result Load } // List gets all the load balancers in a resource group. -// -// resourceGroupName is the name of the resource group. -func (client LoadBalancersClient) List(resourceGroupName string) (result LoadBalancerListResult, err error) { - req, err := client.ListPreparer(resourceGroupName) +// Parameters: +// resourceGroupName - the name of the resource group. +func (client LoadBalancersClient) List(ctx context.Context, resourceGroupName string) (result LoadBalancerListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "List", resp, "Failure sending request") + result.lblr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.lblr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "List", resp, "Failure responding to request") } @@ -272,14 +277,15 @@ func (client LoadBalancersClient) List(resourceGroupName string) (result LoadBal } // ListPreparer prepares the List request. -func (client LoadBalancersClient) ListPreparer(resourceGroupName string) (*http.Request, error) { +func (client LoadBalancersClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -287,13 +293,14 @@ func (client LoadBalancersClient) ListPreparer(resourceGroupName string) (*http. autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client LoadBalancersClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -309,44 +316,50 @@ func (client LoadBalancersClient) ListResponder(resp *http.Response) (result Loa return } -// ListNextResults retrieves the next set of results, if any. -func (client LoadBalancersClient) ListNextResults(lastResults LoadBalancerListResult) (result LoadBalancerListResult, err error) { - req, err := lastResults.LoadBalancerListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client LoadBalancersClient) listNextResults(lastResults LoadBalancerListResult) (result LoadBalancerListResult, err error) { + req, err := lastResults.loadBalancerListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "listNextResults", resp, "Failure responding to next results request") } + return +} +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client LoadBalancersClient) ListComplete(ctx context.Context, resourceGroupName string) (result LoadBalancerListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName) return } // ListAll gets all the load balancers in a subscription. -func (client LoadBalancersClient) ListAll() (result LoadBalancerListResult, err error) { - req, err := client.ListAllPreparer() +func (client LoadBalancersClient) ListAll(ctx context.Context) (result LoadBalancerListResultPage, err error) { + result.fn = client.listAllNextResults + req, err := client.ListAllPreparer(ctx) if err != nil { - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "ListAll", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "ListAll", nil, "Failure preparing request") + return } resp, err := client.ListAllSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "ListAll", resp, "Failure sending request") + result.lblr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "ListAll", resp, "Failure sending request") + return } - result, err = client.ListAllResponder(resp) + result.lblr, err = client.ListAllResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "ListAll", resp, "Failure responding to request") } @@ -355,13 +368,14 @@ func (client LoadBalancersClient) ListAll() (result LoadBalancerListResult, err } // ListAllPreparer prepares the ListAll request. -func (client LoadBalancersClient) ListAllPreparer() (*http.Request, error) { +func (client LoadBalancersClient) ListAllPreparer(ctx context.Context) (*http.Request, error) { pathParameters := map[string]interface{}{ "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -369,13 +383,14 @@ func (client LoadBalancersClient) ListAllPreparer() (*http.Request, error) { autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/loadBalancers", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListAllSender sends the ListAll request. The method will close the // http.Response Body if it receives an error. func (client LoadBalancersClient) ListAllSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListAllResponder handles the response to the ListAll request. The method always @@ -391,26 +406,29 @@ func (client LoadBalancersClient) ListAllResponder(resp *http.Response) (result return } -// ListAllNextResults retrieves the next set of results, if any. -func (client LoadBalancersClient) ListAllNextResults(lastResults LoadBalancerListResult) (result LoadBalancerListResult, err error) { - req, err := lastResults.LoadBalancerListResultPreparer() +// listAllNextResults retrieves the next set of results, if any. +func (client LoadBalancersClient) listAllNextResults(lastResults LoadBalancerListResult) (result LoadBalancerListResult, err error) { + req, err := lastResults.loadBalancerListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "ListAll", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "listAllNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListAllSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "ListAll", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.LoadBalancersClient", "listAllNextResults", resp, "Failure sending next results request") } - result, err = client.ListAllResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "ListAll", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.LoadBalancersClient", "listAllNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListAllComplete enumerates all values, automatically crossing page boundaries as required. +func (client LoadBalancersClient) ListAllComplete(ctx context.Context) (result LoadBalancerListResultIterator, err error) { + result.page, err = client.ListAll(ctx) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/localnetworkgateways.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/localnetworkgateways.go similarity index 55% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/localnetworkgateways.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/localnetworkgateways.go index ff75fa219..4e7d86fcc 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/localnetworkgateways.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/localnetworkgateways.go @@ -14,153 +14,134 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" - "github.com/Azure/go-autorest/autorest/validation" "net/http" ) -// LocalNetworkGatewaysClient is the the Microsoft Azure Network management -// API provides a RESTful set of web services that interact with Microsoft -// Azure Networks service to manage your network resources. The API has -// entities that capture the relationship between an end user and the -// Microsoft Azure Networks service. +// LocalNetworkGatewaysClient is the network Client type LocalNetworkGatewaysClient struct { - ManagementClient + BaseClient } -// NewLocalNetworkGatewaysClient creates an instance of the -// LocalNetworkGatewaysClient client. +// NewLocalNetworkGatewaysClient creates an instance of the LocalNetworkGatewaysClient client. func NewLocalNetworkGatewaysClient(subscriptionID string) LocalNetworkGatewaysClient { return NewLocalNetworkGatewaysClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewLocalNetworkGatewaysClientWithBaseURI creates an instance of the -// LocalNetworkGatewaysClient client. +// NewLocalNetworkGatewaysClientWithBaseURI creates an instance of the LocalNetworkGatewaysClient client. func NewLocalNetworkGatewaysClientWithBaseURI(baseURI string, subscriptionID string) LocalNetworkGatewaysClient { return LocalNetworkGatewaysClient{NewWithBaseURI(baseURI, subscriptionID)} } -// CreateOrUpdate creates or updates a local network gateway in the specified -// resource group. This method may poll for completion. Polling can be -// canceled by passing the cancel channel argument. The channel will be used -// to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. -// localNetworkGatewayName is the name of the local network gateway. -// parameters is parameters supplied to the create or update local network -// gateway operation. -func (client LocalNetworkGatewaysClient) CreateOrUpdate(resourceGroupName string, localNetworkGatewayName string, parameters LocalNetworkGateway, cancel <-chan struct{}) (result autorest.Response, err error) { - if err := validation.Validate([]validation.Validation{ - {TargetValue: parameters, - Constraints: []validation.Constraint{{Target: "parameters.LocalNetworkGatewayPropertiesFormat", Name: validation.Null, Rule: true, - Chain: []validation.Constraint{{Target: "parameters.LocalNetworkGatewayPropertiesFormat.LocalNetworkAddressSpace", Name: validation.Null, Rule: true, Chain: nil}}}}}}); err != nil { - return result, validation.NewErrorWithValidationError(err, "network.LocalNetworkGatewaysClient", "CreateOrUpdate") +// CreateOrUpdate creates or updates a local network gateway in the specified resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// localNetworkGatewayName - the name of the local network gateway. +// parameters - parameters supplied to the create or update local network gateway operation. +func (client LocalNetworkGatewaysClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, localNetworkGatewayName string, parameters LocalNetworkGateway) (result LocalNetworkGatewaysCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, localNetworkGatewayName, parameters) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - req, err := client.CreateOrUpdatePreparer(resourceGroupName, localNetworkGatewayName, parameters, cancel) + result, err = client.CreateOrUpdateSender(req) if err != nil { - return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "CreateOrUpdate", nil, "Failure preparing request") - } - - resp, err := client.CreateOrUpdateSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client LocalNetworkGatewaysClient) CreateOrUpdatePreparer(resourceGroupName string, localNetworkGatewayName string, parameters LocalNetworkGateway, cancel <-chan struct{}) (*http.Request, error) { +func (client LocalNetworkGatewaysClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, localNetworkGatewayName string, parameters LocalNetworkGateway) (*http.Request, error) { pathParameters := map[string]interface{}{ "localNetworkGatewayName": autorest.Encode("path", localNetworkGatewayName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}", pathParameters), autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client LocalNetworkGatewaysClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client LocalNetworkGatewaysClient) CreateOrUpdateSender(req *http.Request) (future LocalNetworkGatewaysCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client LocalNetworkGatewaysClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client LocalNetworkGatewaysClient) CreateOrUpdateResponder(resp *http.Response) (result LocalNetworkGateway, err error) { err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusCreated, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified local network gateway. This method may poll -// for completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. -// localNetworkGatewayName is the name of the local network gateway. -func (client LocalNetworkGatewaysClient) Delete(resourceGroupName string, localNetworkGatewayName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, localNetworkGatewayName, cancel) +// Delete deletes the specified local network gateway. +// Parameters: +// resourceGroupName - the name of the resource group. +// localNetworkGatewayName - the name of the local network gateway. +func (client LocalNetworkGatewaysClient) Delete(ctx context.Context, resourceGroupName string, localNetworkGatewayName string) (result LocalNetworkGatewaysDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, localNetworkGatewayName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client LocalNetworkGatewaysClient) DeletePreparer(resourceGroupName string, localNetworkGatewayName string, cancel <-chan struct{}) (*http.Request, error) { +func (client LocalNetworkGatewaysClient) DeletePreparer(ctx context.Context, resourceGroupName string, localNetworkGatewayName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "localNetworkGatewayName": autorest.Encode("path", localNetworkGatewayName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -168,15 +149,22 @@ func (client LocalNetworkGatewaysClient) DeletePreparer(resourceGroupName string autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client LocalNetworkGatewaysClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client LocalNetworkGatewaysClient) DeleteSender(req *http.Request) (future LocalNetworkGatewaysDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -185,26 +173,28 @@ func (client LocalNetworkGatewaysClient) DeleteResponder(resp *http.Response) (r err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusNoContent, http.StatusOK, http.StatusAccepted), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } // Get gets the specified local network gateway in a resource group. -// -// resourceGroupName is the name of the resource group. -// localNetworkGatewayName is the name of the local network gateway. -func (client LocalNetworkGatewaysClient) Get(resourceGroupName string, localNetworkGatewayName string) (result LocalNetworkGateway, err error) { - req, err := client.GetPreparer(resourceGroupName, localNetworkGatewayName) +// Parameters: +// resourceGroupName - the name of the resource group. +// localNetworkGatewayName - the name of the local network gateway. +func (client LocalNetworkGatewaysClient) Get(ctx context.Context, resourceGroupName string, localNetworkGatewayName string) (result LocalNetworkGateway, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, localNetworkGatewayName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -216,15 +206,16 @@ func (client LocalNetworkGatewaysClient) Get(resourceGroupName string, localNetw } // GetPreparer prepares the Get request. -func (client LocalNetworkGatewaysClient) GetPreparer(resourceGroupName string, localNetworkGatewayName string) (*http.Request, error) { +func (client LocalNetworkGatewaysClient) GetPreparer(ctx context.Context, resourceGroupName string, localNetworkGatewayName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "localNetworkGatewayName": autorest.Encode("path", localNetworkGatewayName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -232,13 +223,14 @@ func (client LocalNetworkGatewaysClient) GetPreparer(resourceGroupName string, l autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways/{localNetworkGatewayName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client LocalNetworkGatewaysClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -255,21 +247,24 @@ func (client LocalNetworkGatewaysClient) GetResponder(resp *http.Response) (resu } // List gets all the local network gateways in a resource group. -// -// resourceGroupName is the name of the resource group. -func (client LocalNetworkGatewaysClient) List(resourceGroupName string) (result LocalNetworkGatewayListResult, err error) { - req, err := client.ListPreparer(resourceGroupName) +// Parameters: +// resourceGroupName - the name of the resource group. +func (client LocalNetworkGatewaysClient) List(ctx context.Context, resourceGroupName string) (result LocalNetworkGatewayListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "List", resp, "Failure sending request") + result.lnglr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.lnglr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "List", resp, "Failure responding to request") } @@ -278,14 +273,15 @@ func (client LocalNetworkGatewaysClient) List(resourceGroupName string) (result } // ListPreparer prepares the List request. -func (client LocalNetworkGatewaysClient) ListPreparer(resourceGroupName string) (*http.Request, error) { +func (client LocalNetworkGatewaysClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -293,13 +289,14 @@ func (client LocalNetworkGatewaysClient) ListPreparer(resourceGroupName string) autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/localNetworkGateways", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client LocalNetworkGatewaysClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -315,26 +312,29 @@ func (client LocalNetworkGatewaysClient) ListResponder(resp *http.Response) (res return } -// ListNextResults retrieves the next set of results, if any. -func (client LocalNetworkGatewaysClient) ListNextResults(lastResults LocalNetworkGatewayListResult) (result LocalNetworkGatewayListResult, err error) { - req, err := lastResults.LocalNetworkGatewayListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client LocalNetworkGatewaysClient) listNextResults(lastResults LocalNetworkGatewayListResult) (result LocalNetworkGatewayListResult, err error) { + req, err := lastResults.localNetworkGatewayListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysClient", "listNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client LocalNetworkGatewaysClient) ListComplete(ctx context.Context, resourceGroupName string) (result LocalNetworkGatewayListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/models.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/models.go new file mode 100644 index 000000000..4efbedb85 --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/models.go @@ -0,0 +1,9113 @@ +package network + +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +import ( + "encoding/json" + "github.com/Azure/go-autorest/autorest" + "github.com/Azure/go-autorest/autorest/azure" + "github.com/Azure/go-autorest/autorest/to" + "net/http" +) + +// ApplicationGatewayCookieBasedAffinity enumerates the values for application gateway cookie based affinity. +type ApplicationGatewayCookieBasedAffinity string + +const ( + // Disabled ... + Disabled ApplicationGatewayCookieBasedAffinity = "Disabled" + // Enabled ... + Enabled ApplicationGatewayCookieBasedAffinity = "Enabled" +) + +// PossibleApplicationGatewayCookieBasedAffinityValues returns an array of possible values for the ApplicationGatewayCookieBasedAffinity const type. +func PossibleApplicationGatewayCookieBasedAffinityValues() []ApplicationGatewayCookieBasedAffinity { + return []ApplicationGatewayCookieBasedAffinity{Disabled, Enabled} +} + +// ApplicationGatewayOperationalState enumerates the values for application gateway operational state. +type ApplicationGatewayOperationalState string + +const ( + // Running ... + Running ApplicationGatewayOperationalState = "Running" + // Starting ... + Starting ApplicationGatewayOperationalState = "Starting" + // Stopped ... + Stopped ApplicationGatewayOperationalState = "Stopped" + // Stopping ... + Stopping ApplicationGatewayOperationalState = "Stopping" +) + +// PossibleApplicationGatewayOperationalStateValues returns an array of possible values for the ApplicationGatewayOperationalState const type. +func PossibleApplicationGatewayOperationalStateValues() []ApplicationGatewayOperationalState { + return []ApplicationGatewayOperationalState{Running, Starting, Stopped, Stopping} +} + +// ApplicationGatewayProtocol enumerates the values for application gateway protocol. +type ApplicationGatewayProtocol string + +const ( + // HTTP ... + HTTP ApplicationGatewayProtocol = "Http" + // HTTPS ... + HTTPS ApplicationGatewayProtocol = "Https" +) + +// PossibleApplicationGatewayProtocolValues returns an array of possible values for the ApplicationGatewayProtocol const type. +func PossibleApplicationGatewayProtocolValues() []ApplicationGatewayProtocol { + return []ApplicationGatewayProtocol{HTTP, HTTPS} +} + +// ApplicationGatewayRequestRoutingRuleType enumerates the values for application gateway request routing rule +// type. +type ApplicationGatewayRequestRoutingRuleType string + +const ( + // Basic ... + Basic ApplicationGatewayRequestRoutingRuleType = "Basic" + // PathBasedRouting ... + PathBasedRouting ApplicationGatewayRequestRoutingRuleType = "PathBasedRouting" +) + +// PossibleApplicationGatewayRequestRoutingRuleTypeValues returns an array of possible values for the ApplicationGatewayRequestRoutingRuleType const type. +func PossibleApplicationGatewayRequestRoutingRuleTypeValues() []ApplicationGatewayRequestRoutingRuleType { + return []ApplicationGatewayRequestRoutingRuleType{Basic, PathBasedRouting} +} + +// ApplicationGatewaySkuName enumerates the values for application gateway sku name. +type ApplicationGatewaySkuName string + +const ( + // StandardLarge ... + StandardLarge ApplicationGatewaySkuName = "Standard_Large" + // StandardMedium ... + StandardMedium ApplicationGatewaySkuName = "Standard_Medium" + // StandardSmall ... + StandardSmall ApplicationGatewaySkuName = "Standard_Small" +) + +// PossibleApplicationGatewaySkuNameValues returns an array of possible values for the ApplicationGatewaySkuName const type. +func PossibleApplicationGatewaySkuNameValues() []ApplicationGatewaySkuName { + return []ApplicationGatewaySkuName{StandardLarge, StandardMedium, StandardSmall} +} + +// ApplicationGatewayTier enumerates the values for application gateway tier. +type ApplicationGatewayTier string + +const ( + // Standard ... + Standard ApplicationGatewayTier = "Standard" +) + +// PossibleApplicationGatewayTierValues returns an array of possible values for the ApplicationGatewayTier const type. +func PossibleApplicationGatewayTierValues() []ApplicationGatewayTier { + return []ApplicationGatewayTier{Standard} +} + +// AuthorizationUseStatus enumerates the values for authorization use status. +type AuthorizationUseStatus string + +const ( + // Available ... + Available AuthorizationUseStatus = "Available" + // InUse ... + InUse AuthorizationUseStatus = "InUse" +) + +// PossibleAuthorizationUseStatusValues returns an array of possible values for the AuthorizationUseStatus const type. +func PossibleAuthorizationUseStatusValues() []AuthorizationUseStatus { + return []AuthorizationUseStatus{Available, InUse} +} + +// ExpressRouteCircuitPeeringAdvertisedPublicPrefixState enumerates the values for express route circuit +// peering advertised public prefix state. +type ExpressRouteCircuitPeeringAdvertisedPublicPrefixState string + +const ( + // Configured ... + Configured ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "Configured" + // Configuring ... + Configuring ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "Configuring" + // NotConfigured ... + NotConfigured ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "NotConfigured" + // ValidationNeeded ... + ValidationNeeded ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = "ValidationNeeded" +) + +// PossibleExpressRouteCircuitPeeringAdvertisedPublicPrefixStateValues returns an array of possible values for the ExpressRouteCircuitPeeringAdvertisedPublicPrefixState const type. +func PossibleExpressRouteCircuitPeeringAdvertisedPublicPrefixStateValues() []ExpressRouteCircuitPeeringAdvertisedPublicPrefixState { + return []ExpressRouteCircuitPeeringAdvertisedPublicPrefixState{Configured, Configuring, NotConfigured, ValidationNeeded} +} + +// ExpressRouteCircuitPeeringState enumerates the values for express route circuit peering state. +type ExpressRouteCircuitPeeringState string + +const ( + // ExpressRouteCircuitPeeringStateDisabled ... + ExpressRouteCircuitPeeringStateDisabled ExpressRouteCircuitPeeringState = "Disabled" + // ExpressRouteCircuitPeeringStateEnabled ... + ExpressRouteCircuitPeeringStateEnabled ExpressRouteCircuitPeeringState = "Enabled" +) + +// PossibleExpressRouteCircuitPeeringStateValues returns an array of possible values for the ExpressRouteCircuitPeeringState const type. +func PossibleExpressRouteCircuitPeeringStateValues() []ExpressRouteCircuitPeeringState { + return []ExpressRouteCircuitPeeringState{ExpressRouteCircuitPeeringStateDisabled, ExpressRouteCircuitPeeringStateEnabled} +} + +// ExpressRouteCircuitPeeringType enumerates the values for express route circuit peering type. +type ExpressRouteCircuitPeeringType string + +const ( + // AzurePrivatePeering ... + AzurePrivatePeering ExpressRouteCircuitPeeringType = "AzurePrivatePeering" + // AzurePublicPeering ... + AzurePublicPeering ExpressRouteCircuitPeeringType = "AzurePublicPeering" + // MicrosoftPeering ... + MicrosoftPeering ExpressRouteCircuitPeeringType = "MicrosoftPeering" +) + +// PossibleExpressRouteCircuitPeeringTypeValues returns an array of possible values for the ExpressRouteCircuitPeeringType const type. +func PossibleExpressRouteCircuitPeeringTypeValues() []ExpressRouteCircuitPeeringType { + return []ExpressRouteCircuitPeeringType{AzurePrivatePeering, AzurePublicPeering, MicrosoftPeering} +} + +// ExpressRouteCircuitSkuFamily enumerates the values for express route circuit sku family. +type ExpressRouteCircuitSkuFamily string + +const ( + // MeteredData ... + MeteredData ExpressRouteCircuitSkuFamily = "MeteredData" + // UnlimitedData ... + UnlimitedData ExpressRouteCircuitSkuFamily = "UnlimitedData" +) + +// PossibleExpressRouteCircuitSkuFamilyValues returns an array of possible values for the ExpressRouteCircuitSkuFamily const type. +func PossibleExpressRouteCircuitSkuFamilyValues() []ExpressRouteCircuitSkuFamily { + return []ExpressRouteCircuitSkuFamily{MeteredData, UnlimitedData} +} + +// ExpressRouteCircuitSkuTier enumerates the values for express route circuit sku tier. +type ExpressRouteCircuitSkuTier string + +const ( + // ExpressRouteCircuitSkuTierPremium ... + ExpressRouteCircuitSkuTierPremium ExpressRouteCircuitSkuTier = "Premium" + // ExpressRouteCircuitSkuTierStandard ... + ExpressRouteCircuitSkuTierStandard ExpressRouteCircuitSkuTier = "Standard" +) + +// PossibleExpressRouteCircuitSkuTierValues returns an array of possible values for the ExpressRouteCircuitSkuTier const type. +func PossibleExpressRouteCircuitSkuTierValues() []ExpressRouteCircuitSkuTier { + return []ExpressRouteCircuitSkuTier{ExpressRouteCircuitSkuTierPremium, ExpressRouteCircuitSkuTierStandard} +} + +// IPAllocationMethod enumerates the values for ip allocation method. +type IPAllocationMethod string + +const ( + // Dynamic ... + Dynamic IPAllocationMethod = "Dynamic" + // Static ... + Static IPAllocationMethod = "Static" +) + +// PossibleIPAllocationMethodValues returns an array of possible values for the IPAllocationMethod const type. +func PossibleIPAllocationMethodValues() []IPAllocationMethod { + return []IPAllocationMethod{Dynamic, Static} +} + +// LoadDistribution enumerates the values for load distribution. +type LoadDistribution string + +const ( + // Default ... + Default LoadDistribution = "Default" + // SourceIP ... + SourceIP LoadDistribution = "SourceIP" + // SourceIPProtocol ... + SourceIPProtocol LoadDistribution = "SourceIPProtocol" +) + +// PossibleLoadDistributionValues returns an array of possible values for the LoadDistribution const type. +func PossibleLoadDistributionValues() []LoadDistribution { + return []LoadDistribution{Default, SourceIP, SourceIPProtocol} +} + +// OperationStatus enumerates the values for operation status. +type OperationStatus string + +const ( + // Failed ... + Failed OperationStatus = "Failed" + // InProgress ... + InProgress OperationStatus = "InProgress" + // Succeeded ... + Succeeded OperationStatus = "Succeeded" +) + +// PossibleOperationStatusValues returns an array of possible values for the OperationStatus const type. +func PossibleOperationStatusValues() []OperationStatus { + return []OperationStatus{Failed, InProgress, Succeeded} +} + +// ProbeProtocol enumerates the values for probe protocol. +type ProbeProtocol string + +const ( + // ProbeProtocolHTTP ... + ProbeProtocolHTTP ProbeProtocol = "Http" + // ProbeProtocolTCP ... + ProbeProtocolTCP ProbeProtocol = "Tcp" +) + +// PossibleProbeProtocolValues returns an array of possible values for the ProbeProtocol const type. +func PossibleProbeProtocolValues() []ProbeProtocol { + return []ProbeProtocol{ProbeProtocolHTTP, ProbeProtocolTCP} +} + +// ProcessorArchitecture enumerates the values for processor architecture. +type ProcessorArchitecture string + +const ( + // Amd64 ... + Amd64 ProcessorArchitecture = "Amd64" + // X86 ... + X86 ProcessorArchitecture = "X86" +) + +// PossibleProcessorArchitectureValues returns an array of possible values for the ProcessorArchitecture const type. +func PossibleProcessorArchitectureValues() []ProcessorArchitecture { + return []ProcessorArchitecture{Amd64, X86} +} + +// RouteNextHopType enumerates the values for route next hop type. +type RouteNextHopType string + +const ( + // RouteNextHopTypeInternet ... + RouteNextHopTypeInternet RouteNextHopType = "Internet" + // RouteNextHopTypeNone ... + RouteNextHopTypeNone RouteNextHopType = "None" + // RouteNextHopTypeVirtualAppliance ... + RouteNextHopTypeVirtualAppliance RouteNextHopType = "VirtualAppliance" + // RouteNextHopTypeVirtualNetworkGateway ... + RouteNextHopTypeVirtualNetworkGateway RouteNextHopType = "VirtualNetworkGateway" + // RouteNextHopTypeVnetLocal ... + RouteNextHopTypeVnetLocal RouteNextHopType = "VnetLocal" +) + +// PossibleRouteNextHopTypeValues returns an array of possible values for the RouteNextHopType const type. +func PossibleRouteNextHopTypeValues() []RouteNextHopType { + return []RouteNextHopType{RouteNextHopTypeInternet, RouteNextHopTypeNone, RouteNextHopTypeVirtualAppliance, RouteNextHopTypeVirtualNetworkGateway, RouteNextHopTypeVnetLocal} +} + +// SecurityRuleAccess enumerates the values for security rule access. +type SecurityRuleAccess string + +const ( + // Allow ... + Allow SecurityRuleAccess = "Allow" + // Deny ... + Deny SecurityRuleAccess = "Deny" +) + +// PossibleSecurityRuleAccessValues returns an array of possible values for the SecurityRuleAccess const type. +func PossibleSecurityRuleAccessValues() []SecurityRuleAccess { + return []SecurityRuleAccess{Allow, Deny} +} + +// SecurityRuleDirection enumerates the values for security rule direction. +type SecurityRuleDirection string + +const ( + // Inbound ... + Inbound SecurityRuleDirection = "Inbound" + // Outbound ... + Outbound SecurityRuleDirection = "Outbound" +) + +// PossibleSecurityRuleDirectionValues returns an array of possible values for the SecurityRuleDirection const type. +func PossibleSecurityRuleDirectionValues() []SecurityRuleDirection { + return []SecurityRuleDirection{Inbound, Outbound} +} + +// SecurityRuleProtocol enumerates the values for security rule protocol. +type SecurityRuleProtocol string + +const ( + // Asterisk ... + Asterisk SecurityRuleProtocol = "*" + // TCP ... + TCP SecurityRuleProtocol = "Tcp" + // UDP ... + UDP SecurityRuleProtocol = "Udp" +) + +// PossibleSecurityRuleProtocolValues returns an array of possible values for the SecurityRuleProtocol const type. +func PossibleSecurityRuleProtocolValues() []SecurityRuleProtocol { + return []SecurityRuleProtocol{Asterisk, TCP, UDP} +} + +// ServiceProviderProvisioningState enumerates the values for service provider provisioning state. +type ServiceProviderProvisioningState string + +const ( + // Deprovisioning ... + Deprovisioning ServiceProviderProvisioningState = "Deprovisioning" + // NotProvisioned ... + NotProvisioned ServiceProviderProvisioningState = "NotProvisioned" + // Provisioned ... + Provisioned ServiceProviderProvisioningState = "Provisioned" + // Provisioning ... + Provisioning ServiceProviderProvisioningState = "Provisioning" +) + +// PossibleServiceProviderProvisioningStateValues returns an array of possible values for the ServiceProviderProvisioningState const type. +func PossibleServiceProviderProvisioningStateValues() []ServiceProviderProvisioningState { + return []ServiceProviderProvisioningState{Deprovisioning, NotProvisioned, Provisioned, Provisioning} +} + +// TransportProtocol enumerates the values for transport protocol. +type TransportProtocol string + +const ( + // TransportProtocolTCP ... + TransportProtocolTCP TransportProtocol = "Tcp" + // TransportProtocolUDP ... + TransportProtocolUDP TransportProtocol = "Udp" +) + +// PossibleTransportProtocolValues returns an array of possible values for the TransportProtocol const type. +func PossibleTransportProtocolValues() []TransportProtocol { + return []TransportProtocol{TransportProtocolTCP, TransportProtocolUDP} +} + +// VirtualNetworkGatewayConnectionStatus enumerates the values for virtual network gateway connection status. +type VirtualNetworkGatewayConnectionStatus string + +const ( + // Connected ... + Connected VirtualNetworkGatewayConnectionStatus = "Connected" + // Connecting ... + Connecting VirtualNetworkGatewayConnectionStatus = "Connecting" + // NotConnected ... + NotConnected VirtualNetworkGatewayConnectionStatus = "NotConnected" + // Unknown ... + Unknown VirtualNetworkGatewayConnectionStatus = "Unknown" +) + +// PossibleVirtualNetworkGatewayConnectionStatusValues returns an array of possible values for the VirtualNetworkGatewayConnectionStatus const type. +func PossibleVirtualNetworkGatewayConnectionStatusValues() []VirtualNetworkGatewayConnectionStatus { + return []VirtualNetworkGatewayConnectionStatus{Connected, Connecting, NotConnected, Unknown} +} + +// VirtualNetworkGatewayConnectionType enumerates the values for virtual network gateway connection type. +type VirtualNetworkGatewayConnectionType string + +const ( + // ExpressRoute ... + ExpressRoute VirtualNetworkGatewayConnectionType = "ExpressRoute" + // IPsec ... + IPsec VirtualNetworkGatewayConnectionType = "IPsec" + // Vnet2Vnet ... + Vnet2Vnet VirtualNetworkGatewayConnectionType = "Vnet2Vnet" + // VPNClient ... + VPNClient VirtualNetworkGatewayConnectionType = "VPNClient" +) + +// PossibleVirtualNetworkGatewayConnectionTypeValues returns an array of possible values for the VirtualNetworkGatewayConnectionType const type. +func PossibleVirtualNetworkGatewayConnectionTypeValues() []VirtualNetworkGatewayConnectionType { + return []VirtualNetworkGatewayConnectionType{ExpressRoute, IPsec, Vnet2Vnet, VPNClient} +} + +// VirtualNetworkGatewaySkuName enumerates the values for virtual network gateway sku name. +type VirtualNetworkGatewaySkuName string + +const ( + // VirtualNetworkGatewaySkuNameBasic ... + VirtualNetworkGatewaySkuNameBasic VirtualNetworkGatewaySkuName = "Basic" + // VirtualNetworkGatewaySkuNameHighPerformance ... + VirtualNetworkGatewaySkuNameHighPerformance VirtualNetworkGatewaySkuName = "HighPerformance" + // VirtualNetworkGatewaySkuNameStandard ... + VirtualNetworkGatewaySkuNameStandard VirtualNetworkGatewaySkuName = "Standard" +) + +// PossibleVirtualNetworkGatewaySkuNameValues returns an array of possible values for the VirtualNetworkGatewaySkuName const type. +func PossibleVirtualNetworkGatewaySkuNameValues() []VirtualNetworkGatewaySkuName { + return []VirtualNetworkGatewaySkuName{VirtualNetworkGatewaySkuNameBasic, VirtualNetworkGatewaySkuNameHighPerformance, VirtualNetworkGatewaySkuNameStandard} +} + +// VirtualNetworkGatewaySkuTier enumerates the values for virtual network gateway sku tier. +type VirtualNetworkGatewaySkuTier string + +const ( + // VirtualNetworkGatewaySkuTierBasic ... + VirtualNetworkGatewaySkuTierBasic VirtualNetworkGatewaySkuTier = "Basic" + // VirtualNetworkGatewaySkuTierHighPerformance ... + VirtualNetworkGatewaySkuTierHighPerformance VirtualNetworkGatewaySkuTier = "HighPerformance" + // VirtualNetworkGatewaySkuTierStandard ... + VirtualNetworkGatewaySkuTierStandard VirtualNetworkGatewaySkuTier = "Standard" +) + +// PossibleVirtualNetworkGatewaySkuTierValues returns an array of possible values for the VirtualNetworkGatewaySkuTier const type. +func PossibleVirtualNetworkGatewaySkuTierValues() []VirtualNetworkGatewaySkuTier { + return []VirtualNetworkGatewaySkuTier{VirtualNetworkGatewaySkuTierBasic, VirtualNetworkGatewaySkuTierHighPerformance, VirtualNetworkGatewaySkuTierStandard} +} + +// VirtualNetworkGatewayType enumerates the values for virtual network gateway type. +type VirtualNetworkGatewayType string + +const ( + // VirtualNetworkGatewayTypeExpressRoute ... + VirtualNetworkGatewayTypeExpressRoute VirtualNetworkGatewayType = "ExpressRoute" + // VirtualNetworkGatewayTypeVpn ... + VirtualNetworkGatewayTypeVpn VirtualNetworkGatewayType = "Vpn" +) + +// PossibleVirtualNetworkGatewayTypeValues returns an array of possible values for the VirtualNetworkGatewayType const type. +func PossibleVirtualNetworkGatewayTypeValues() []VirtualNetworkGatewayType { + return []VirtualNetworkGatewayType{VirtualNetworkGatewayTypeExpressRoute, VirtualNetworkGatewayTypeVpn} +} + +// VpnType enumerates the values for vpn type. +type VpnType string + +const ( + // PolicyBased ... + PolicyBased VpnType = "PolicyBased" + // RouteBased ... + RouteBased VpnType = "RouteBased" +) + +// PossibleVpnTypeValues returns an array of possible values for the VpnType const type. +func PossibleVpnTypeValues() []VpnType { + return []VpnType{PolicyBased, RouteBased} +} + +// AddressSpace addressSpace contains an array of IP address ranges that can be used by subnets of the virtual +// network. +type AddressSpace struct { + // AddressPrefixes - A list of address blocks reserved for this virtual network in CIDR notation. + AddressPrefixes *[]string `json:"addressPrefixes,omitempty"` +} + +// ApplicationGateway application gateway resource +type ApplicationGateway struct { + autorest.Response `json:"-"` + *ApplicationGatewayPropertiesFormat `json:"properties,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for ApplicationGateway. +func (ag ApplicationGateway) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if ag.ApplicationGatewayPropertiesFormat != nil { + objectMap["properties"] = ag.ApplicationGatewayPropertiesFormat + } + if ag.Etag != nil { + objectMap["etag"] = ag.Etag + } + if ag.ID != nil { + objectMap["id"] = ag.ID + } + if ag.Name != nil { + objectMap["name"] = ag.Name + } + if ag.Type != nil { + objectMap["type"] = ag.Type + } + if ag.Location != nil { + objectMap["location"] = ag.Location + } + if ag.Tags != nil { + objectMap["tags"] = ag.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGateway struct. +func (ag *ApplicationGateway) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewayPropertiesFormat ApplicationGatewayPropertiesFormat + err = json.Unmarshal(*v, &applicationGatewayPropertiesFormat) + if err != nil { + return err + } + ag.ApplicationGatewayPropertiesFormat = &applicationGatewayPropertiesFormat + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + ag.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + ag.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + ag.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + ag.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + ag.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + ag.Tags = tags + } + } + } + + return nil +} + +// ApplicationGatewayBackendAddress backend address of an application gateway. +type ApplicationGatewayBackendAddress struct { + // Fqdn - Fully qualified domain name (FQDN). + Fqdn *string `json:"fqdn,omitempty"` + // IPAddress - IP address + IPAddress *string `json:"ipAddress,omitempty"` +} + +// ApplicationGatewayBackendAddressPool backend Address Pool of an application gateway. +type ApplicationGatewayBackendAddressPool struct { + *ApplicationGatewayBackendAddressPoolPropertiesFormat `json:"properties,omitempty"` + // Name - Resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ApplicationGatewayBackendAddressPool. +func (agbap ApplicationGatewayBackendAddressPool) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if agbap.ApplicationGatewayBackendAddressPoolPropertiesFormat != nil { + objectMap["properties"] = agbap.ApplicationGatewayBackendAddressPoolPropertiesFormat + } + if agbap.Name != nil { + objectMap["name"] = agbap.Name + } + if agbap.Etag != nil { + objectMap["etag"] = agbap.Etag + } + if agbap.ID != nil { + objectMap["id"] = agbap.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGatewayBackendAddressPool struct. +func (agbap *ApplicationGatewayBackendAddressPool) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewayBackendAddressPoolPropertiesFormat ApplicationGatewayBackendAddressPoolPropertiesFormat + err = json.Unmarshal(*v, &applicationGatewayBackendAddressPoolPropertiesFormat) + if err != nil { + return err + } + agbap.ApplicationGatewayBackendAddressPoolPropertiesFormat = &applicationGatewayBackendAddressPoolPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + agbap.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + agbap.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + agbap.ID = &ID + } + } + } + + return nil +} + +// ApplicationGatewayBackendAddressPoolPropertiesFormat properties of Backend Address Pool of an application +// gateway. +type ApplicationGatewayBackendAddressPoolPropertiesFormat struct { + // BackendIPConfigurations - Collection of references to IPs defined in network interfaces. + BackendIPConfigurations *[]InterfaceIPConfiguration `json:"backendIPConfigurations,omitempty"` + // BackendAddresses - Backend addresses + BackendAddresses *[]ApplicationGatewayBackendAddress `json:"backendAddresses,omitempty"` + // ProvisioningState - Provisioning state of the backend address pool resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ApplicationGatewayBackendHTTPSettings backend address pool settings of an application gateway. +type ApplicationGatewayBackendHTTPSettings struct { + *ApplicationGatewayBackendHTTPSettingsPropertiesFormat `json:"properties,omitempty"` + // Name - Name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ApplicationGatewayBackendHTTPSettings. +func (agbhs ApplicationGatewayBackendHTTPSettings) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if agbhs.ApplicationGatewayBackendHTTPSettingsPropertiesFormat != nil { + objectMap["properties"] = agbhs.ApplicationGatewayBackendHTTPSettingsPropertiesFormat + } + if agbhs.Name != nil { + objectMap["name"] = agbhs.Name + } + if agbhs.Etag != nil { + objectMap["etag"] = agbhs.Etag + } + if agbhs.ID != nil { + objectMap["id"] = agbhs.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGatewayBackendHTTPSettings struct. +func (agbhs *ApplicationGatewayBackendHTTPSettings) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewayBackendHTTPSettingsPropertiesFormat ApplicationGatewayBackendHTTPSettingsPropertiesFormat + err = json.Unmarshal(*v, &applicationGatewayBackendHTTPSettingsPropertiesFormat) + if err != nil { + return err + } + agbhs.ApplicationGatewayBackendHTTPSettingsPropertiesFormat = &applicationGatewayBackendHTTPSettingsPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + agbhs.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + agbhs.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + agbhs.ID = &ID + } + } + } + + return nil +} + +// ApplicationGatewayBackendHTTPSettingsPropertiesFormat properties of Backend address pool settings of an +// application gateway. +type ApplicationGatewayBackendHTTPSettingsPropertiesFormat struct { + // Port - Port + Port *int32 `json:"port,omitempty"` + // Protocol - Protocol. Possible values are: 'Http' and 'Https'. Possible values include: 'HTTP', 'HTTPS' + Protocol ApplicationGatewayProtocol `json:"protocol,omitempty"` + // CookieBasedAffinity - Cookie based affinity. Possible values are: 'Enabled' and 'Disabled'. Possible values include: 'Enabled', 'Disabled' + CookieBasedAffinity ApplicationGatewayCookieBasedAffinity `json:"cookieBasedAffinity,omitempty"` + // RequestTimeout - Request timeout in seconds. Application Gateway will fail the request if response is not received within RequestTimeout. Acceptable values are from 1 second to 86400 seconds. + RequestTimeout *int32 `json:"requestTimeout,omitempty"` + // Probe - Probe resource of an application gateway. + Probe *SubResource `json:"probe,omitempty"` + // ProvisioningState - Gets or sets Provisioning state of the backend http settings resource Updating/Deleting/Failed + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ApplicationGatewayFrontendIPConfiguration frontend IP configuration of an application gateway. +type ApplicationGatewayFrontendIPConfiguration struct { + *ApplicationGatewayFrontendIPConfigurationPropertiesFormat `json:"properties,omitempty"` + // Name - Name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ApplicationGatewayFrontendIPConfiguration. +func (agfic ApplicationGatewayFrontendIPConfiguration) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if agfic.ApplicationGatewayFrontendIPConfigurationPropertiesFormat != nil { + objectMap["properties"] = agfic.ApplicationGatewayFrontendIPConfigurationPropertiesFormat + } + if agfic.Name != nil { + objectMap["name"] = agfic.Name + } + if agfic.Etag != nil { + objectMap["etag"] = agfic.Etag + } + if agfic.ID != nil { + objectMap["id"] = agfic.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGatewayFrontendIPConfiguration struct. +func (agfic *ApplicationGatewayFrontendIPConfiguration) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewayFrontendIPConfigurationPropertiesFormat ApplicationGatewayFrontendIPConfigurationPropertiesFormat + err = json.Unmarshal(*v, &applicationGatewayFrontendIPConfigurationPropertiesFormat) + if err != nil { + return err + } + agfic.ApplicationGatewayFrontendIPConfigurationPropertiesFormat = &applicationGatewayFrontendIPConfigurationPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + agfic.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + agfic.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + agfic.ID = &ID + } + } + } + + return nil +} + +// ApplicationGatewayFrontendIPConfigurationPropertiesFormat properties of Frontend IP configuration of an +// application gateway. +type ApplicationGatewayFrontendIPConfigurationPropertiesFormat struct { + // PrivateIPAddress - PrivateIPAddress of the network interface IP Configuration. + PrivateIPAddress *string `json:"privateIPAddress,omitempty"` + // PrivateIPAllocationMethod - PrivateIP allocation method. Possible values are: 'Static' and 'Dynamic'. Possible values include: 'Static', 'Dynamic' + PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"` + // Subnet - Reference of the subnet resource. + Subnet *SubResource `json:"subnet,omitempty"` + // PublicIPAddress - Reference of the PublicIP resource. + PublicIPAddress *SubResource `json:"publicIPAddress,omitempty"` + // ProvisioningState - Provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ApplicationGatewayFrontendPort frontend port of an application gateway. +type ApplicationGatewayFrontendPort struct { + *ApplicationGatewayFrontendPortPropertiesFormat `json:"properties,omitempty"` + // Name - Name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ApplicationGatewayFrontendPort. +func (agfp ApplicationGatewayFrontendPort) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if agfp.ApplicationGatewayFrontendPortPropertiesFormat != nil { + objectMap["properties"] = agfp.ApplicationGatewayFrontendPortPropertiesFormat + } + if agfp.Name != nil { + objectMap["name"] = agfp.Name + } + if agfp.Etag != nil { + objectMap["etag"] = agfp.Etag + } + if agfp.ID != nil { + objectMap["id"] = agfp.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGatewayFrontendPort struct. +func (agfp *ApplicationGatewayFrontendPort) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewayFrontendPortPropertiesFormat ApplicationGatewayFrontendPortPropertiesFormat + err = json.Unmarshal(*v, &applicationGatewayFrontendPortPropertiesFormat) + if err != nil { + return err + } + agfp.ApplicationGatewayFrontendPortPropertiesFormat = &applicationGatewayFrontendPortPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + agfp.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + agfp.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + agfp.ID = &ID + } + } + } + + return nil +} + +// ApplicationGatewayFrontendPortPropertiesFormat properties of Frontend port of an application gateway. +type ApplicationGatewayFrontendPortPropertiesFormat struct { + // Port - Frontend port + Port *int32 `json:"port,omitempty"` + // ProvisioningState - Provisioning state of the frontend port resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ApplicationGatewayHTTPListener http listener of an application gateway. +type ApplicationGatewayHTTPListener struct { + *ApplicationGatewayHTTPListenerPropertiesFormat `json:"properties,omitempty"` + // Name - Name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ApplicationGatewayHTTPListener. +func (aghl ApplicationGatewayHTTPListener) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if aghl.ApplicationGatewayHTTPListenerPropertiesFormat != nil { + objectMap["properties"] = aghl.ApplicationGatewayHTTPListenerPropertiesFormat + } + if aghl.Name != nil { + objectMap["name"] = aghl.Name + } + if aghl.Etag != nil { + objectMap["etag"] = aghl.Etag + } + if aghl.ID != nil { + objectMap["id"] = aghl.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGatewayHTTPListener struct. +func (aghl *ApplicationGatewayHTTPListener) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewayHTTPListenerPropertiesFormat ApplicationGatewayHTTPListenerPropertiesFormat + err = json.Unmarshal(*v, &applicationGatewayHTTPListenerPropertiesFormat) + if err != nil { + return err + } + aghl.ApplicationGatewayHTTPListenerPropertiesFormat = &applicationGatewayHTTPListenerPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + aghl.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + aghl.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + aghl.ID = &ID + } + } + } + + return nil +} + +// ApplicationGatewayHTTPListenerPropertiesFormat properties of HTTP listener of an application gateway. +type ApplicationGatewayHTTPListenerPropertiesFormat struct { + // FrontendIPConfiguration - Frontend IP configuration resource of an application gateway. + FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"` + // FrontendPort - Frontend port resource of an application gateway. + FrontendPort *SubResource `json:"frontendPort,omitempty"` + // Protocol - Protocol. Possible values are: 'Http' and 'Https'. Possible values include: 'HTTP', 'HTTPS' + Protocol ApplicationGatewayProtocol `json:"protocol,omitempty"` + // HostName - Host name of HTTP listener. + HostName *string `json:"hostName,omitempty"` + // SslCertificate - SSL certificate resource of an application gateway. + SslCertificate *SubResource `json:"sslCertificate,omitempty"` + // RequireServerNameIndication - Applicable only if protocol is https. Enables SNI for multi-hosting. + RequireServerNameIndication *bool `json:"requireServerNameIndication,omitempty"` + // ProvisioningState - Provisioning state of the HTTP listener resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ApplicationGatewayIPConfiguration IP configuration of an application gateway. Currently 1 public and 1 private +// IP configuration is allowed. +type ApplicationGatewayIPConfiguration struct { + *ApplicationGatewayIPConfigurationPropertiesFormat `json:"properties,omitempty"` + // Name - Name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ApplicationGatewayIPConfiguration. +func (agic ApplicationGatewayIPConfiguration) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if agic.ApplicationGatewayIPConfigurationPropertiesFormat != nil { + objectMap["properties"] = agic.ApplicationGatewayIPConfigurationPropertiesFormat + } + if agic.Name != nil { + objectMap["name"] = agic.Name + } + if agic.Etag != nil { + objectMap["etag"] = agic.Etag + } + if agic.ID != nil { + objectMap["id"] = agic.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGatewayIPConfiguration struct. +func (agic *ApplicationGatewayIPConfiguration) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewayIPConfigurationPropertiesFormat ApplicationGatewayIPConfigurationPropertiesFormat + err = json.Unmarshal(*v, &applicationGatewayIPConfigurationPropertiesFormat) + if err != nil { + return err + } + agic.ApplicationGatewayIPConfigurationPropertiesFormat = &applicationGatewayIPConfigurationPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + agic.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + agic.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + agic.ID = &ID + } + } + } + + return nil +} + +// ApplicationGatewayIPConfigurationPropertiesFormat properties of IP configuration of an application gateway. +type ApplicationGatewayIPConfigurationPropertiesFormat struct { + // Subnet - Reference of the subnet resource. A subnet from where application gateway gets its private address. + Subnet *SubResource `json:"subnet,omitempty"` + // ProvisioningState - Provisioning state of the application gateway subnet resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ApplicationGatewayListResult response for ListApplicationGateways API service call. +type ApplicationGatewayListResult struct { + autorest.Response `json:"-"` + // Value - List of an application gateways in a resource group. + Value *[]ApplicationGateway `json:"value,omitempty"` + // NextLink - URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// ApplicationGatewayListResultIterator provides access to a complete listing of ApplicationGateway values. +type ApplicationGatewayListResultIterator struct { + i int + page ApplicationGatewayListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *ApplicationGatewayListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter ApplicationGatewayListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter ApplicationGatewayListResultIterator) Response() ApplicationGatewayListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter ApplicationGatewayListResultIterator) Value() ApplicationGateway { + if !iter.page.NotDone() { + return ApplicationGateway{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (aglr ApplicationGatewayListResult) IsEmpty() bool { + return aglr.Value == nil || len(*aglr.Value) == 0 +} + +// applicationGatewayListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (aglr ApplicationGatewayListResult) applicationGatewayListResultPreparer() (*http.Request, error) { + if aglr.NextLink == nil || len(to.String(aglr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(aglr.NextLink))) +} + +// ApplicationGatewayListResultPage contains a page of ApplicationGateway values. +type ApplicationGatewayListResultPage struct { + fn func(ApplicationGatewayListResult) (ApplicationGatewayListResult, error) + aglr ApplicationGatewayListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *ApplicationGatewayListResultPage) Next() error { + next, err := page.fn(page.aglr) + if err != nil { + return err + } + page.aglr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page ApplicationGatewayListResultPage) NotDone() bool { + return !page.aglr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page ApplicationGatewayListResultPage) Response() ApplicationGatewayListResult { + return page.aglr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page ApplicationGatewayListResultPage) Values() []ApplicationGateway { + if page.aglr.IsEmpty() { + return nil + } + return *page.aglr.Value +} + +// ApplicationGatewayPathRule path rule of URL path map of an application gateway. +type ApplicationGatewayPathRule struct { + *ApplicationGatewayPathRulePropertiesFormat `json:"properties,omitempty"` + // Name - Name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ApplicationGatewayPathRule. +func (agpr ApplicationGatewayPathRule) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if agpr.ApplicationGatewayPathRulePropertiesFormat != nil { + objectMap["properties"] = agpr.ApplicationGatewayPathRulePropertiesFormat + } + if agpr.Name != nil { + objectMap["name"] = agpr.Name + } + if agpr.Etag != nil { + objectMap["etag"] = agpr.Etag + } + if agpr.ID != nil { + objectMap["id"] = agpr.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGatewayPathRule struct. +func (agpr *ApplicationGatewayPathRule) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewayPathRulePropertiesFormat ApplicationGatewayPathRulePropertiesFormat + err = json.Unmarshal(*v, &applicationGatewayPathRulePropertiesFormat) + if err != nil { + return err + } + agpr.ApplicationGatewayPathRulePropertiesFormat = &applicationGatewayPathRulePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + agpr.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + agpr.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + agpr.ID = &ID + } + } + } + + return nil +} + +// ApplicationGatewayPathRulePropertiesFormat properties of probe of an application gateway. +type ApplicationGatewayPathRulePropertiesFormat struct { + // Paths - Path rules of URL path map. + Paths *[]string `json:"paths,omitempty"` + // BackendAddressPool - Backend address pool resource of URL path map. + BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"` + // BackendHTTPSettings - Backend http settings resource of URL path map. + BackendHTTPSettings *SubResource `json:"backendHttpSettings,omitempty"` + // ProvisioningState - Path rule of URL path map resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ApplicationGatewayProbe probe of the application gateway. +type ApplicationGatewayProbe struct { + *ApplicationGatewayProbePropertiesFormat `json:"properties,omitempty"` + // Name - Name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ApplicationGatewayProbe. +func (agp ApplicationGatewayProbe) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if agp.ApplicationGatewayProbePropertiesFormat != nil { + objectMap["properties"] = agp.ApplicationGatewayProbePropertiesFormat + } + if agp.Name != nil { + objectMap["name"] = agp.Name + } + if agp.Etag != nil { + objectMap["etag"] = agp.Etag + } + if agp.ID != nil { + objectMap["id"] = agp.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGatewayProbe struct. +func (agp *ApplicationGatewayProbe) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewayProbePropertiesFormat ApplicationGatewayProbePropertiesFormat + err = json.Unmarshal(*v, &applicationGatewayProbePropertiesFormat) + if err != nil { + return err + } + agp.ApplicationGatewayProbePropertiesFormat = &applicationGatewayProbePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + agp.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + agp.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + agp.ID = &ID + } + } + } + + return nil +} + +// ApplicationGatewayProbePropertiesFormat properties of probe of an application gateway. +type ApplicationGatewayProbePropertiesFormat struct { + // Protocol - Protocol. Possible values are: 'Http' and 'Https'. Possible values include: 'HTTP', 'HTTPS' + Protocol ApplicationGatewayProtocol `json:"protocol,omitempty"` + // Host - Host name to send the probe to. + Host *string `json:"host,omitempty"` + // Path - Relative path of probe. Valid path starts from '/'. Probe is sent to ://: + Path *string `json:"path,omitempty"` + // Interval - The probing interval in seconds. This is the time interval between two consecutive probes. Acceptable values are from 1 second to 86400 seconds. + Interval *int32 `json:"interval,omitempty"` + // Timeout - the probe timeout in seconds. Probe marked as failed if valid response is not received with this timeout period. Acceptable values are from 1 second to 86400 seconds. + Timeout *int32 `json:"timeout,omitempty"` + // UnhealthyThreshold - The probe retry count. Backend server is marked down after consecutive probe failure count reaches UnhealthyThreshold. Acceptable values are from 1 second to 20. + UnhealthyThreshold *int32 `json:"unhealthyThreshold,omitempty"` + // ProvisioningState - Provisioning state of the backend http settings resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ApplicationGatewayPropertiesFormat properties of the application gateway. +type ApplicationGatewayPropertiesFormat struct { + // Sku - SKU of the application gateway resource. + Sku *ApplicationGatewaySku `json:"sku,omitempty"` + // OperationalState - Operational state of the application gateway resource. Possible values are: 'Stopped', 'Started', 'Running', and 'Stopping'. Possible values include: 'Stopped', 'Starting', 'Running', 'Stopping' + OperationalState ApplicationGatewayOperationalState `json:"operationalState,omitempty"` + // GatewayIPConfigurations - Gets or sets subnets of application gateway resource + GatewayIPConfigurations *[]ApplicationGatewayIPConfiguration `json:"gatewayIPConfigurations,omitempty"` + // SslCertificates - SSL certificates of the application gateway resource. + SslCertificates *[]ApplicationGatewaySslCertificate `json:"sslCertificates,omitempty"` + // FrontendIPConfigurations - Frontend IP addresses of the application gateway resource. + FrontendIPConfigurations *[]ApplicationGatewayFrontendIPConfiguration `json:"frontendIPConfigurations,omitempty"` + // FrontendPorts - Frontend ports of the application gateway resource. + FrontendPorts *[]ApplicationGatewayFrontendPort `json:"frontendPorts,omitempty"` + // Probes - Probes of the application gateway resource. + Probes *[]ApplicationGatewayProbe `json:"probes,omitempty"` + // BackendAddressPools - Backend address pool of the application gateway resource. + BackendAddressPools *[]ApplicationGatewayBackendAddressPool `json:"backendAddressPools,omitempty"` + // BackendHTTPSettingsCollection - Backend http settings of the application gateway resource. + BackendHTTPSettingsCollection *[]ApplicationGatewayBackendHTTPSettings `json:"backendHttpSettingsCollection,omitempty"` + // HTTPListeners - Http listeners of the application gateway resource. + HTTPListeners *[]ApplicationGatewayHTTPListener `json:"httpListeners,omitempty"` + // URLPathMaps - URL path map of the application gateway resource. + URLPathMaps *[]ApplicationGatewayURLPathMap `json:"urlPathMaps,omitempty"` + // RequestRoutingRules - Request routing rules of the application gateway resource. + RequestRoutingRules *[]ApplicationGatewayRequestRoutingRule `json:"requestRoutingRules,omitempty"` + // ResourceGUID - Resource GUID property of the application gateway resource. + ResourceGUID *string `json:"resourceGuid,omitempty"` + // ProvisioningState - Provisioning state of the application gateway resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ApplicationGatewayRequestRoutingRule request routing rule of an application gateway. +type ApplicationGatewayRequestRoutingRule struct { + *ApplicationGatewayRequestRoutingRulePropertiesFormat `json:"properties,omitempty"` + // Name - Name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ApplicationGatewayRequestRoutingRule. +func (agrrr ApplicationGatewayRequestRoutingRule) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if agrrr.ApplicationGatewayRequestRoutingRulePropertiesFormat != nil { + objectMap["properties"] = agrrr.ApplicationGatewayRequestRoutingRulePropertiesFormat + } + if agrrr.Name != nil { + objectMap["name"] = agrrr.Name + } + if agrrr.Etag != nil { + objectMap["etag"] = agrrr.Etag + } + if agrrr.ID != nil { + objectMap["id"] = agrrr.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGatewayRequestRoutingRule struct. +func (agrrr *ApplicationGatewayRequestRoutingRule) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewayRequestRoutingRulePropertiesFormat ApplicationGatewayRequestRoutingRulePropertiesFormat + err = json.Unmarshal(*v, &applicationGatewayRequestRoutingRulePropertiesFormat) + if err != nil { + return err + } + agrrr.ApplicationGatewayRequestRoutingRulePropertiesFormat = &applicationGatewayRequestRoutingRulePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + agrrr.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + agrrr.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + agrrr.ID = &ID + } + } + } + + return nil +} + +// ApplicationGatewayRequestRoutingRulePropertiesFormat properties of request routing rule of the application +// gateway. +type ApplicationGatewayRequestRoutingRulePropertiesFormat struct { + // RuleType - Rule type. Possible values are: 'Basic' and 'PathBasedRouting'. Possible values include: 'Basic', 'PathBasedRouting' + RuleType ApplicationGatewayRequestRoutingRuleType `json:"ruleType,omitempty"` + // BackendAddressPool - Backend address pool resource of the application gateway. + BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"` + // BackendHTTPSettings - Frontend port resource of the application gateway. + BackendHTTPSettings *SubResource `json:"backendHttpSettings,omitempty"` + // HTTPListener - Http listener resource of the application gateway. + HTTPListener *SubResource `json:"httpListener,omitempty"` + // URLPathMap - URL path map resource of the application gateway. + URLPathMap *SubResource `json:"urlPathMap,omitempty"` + // ProvisioningState - Provisioning state of the request routing rule resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ApplicationGatewaysCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a +// long-running operation. +type ApplicationGatewaysCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future ApplicationGatewaysCreateOrUpdateFuture) Result(client ApplicationGatewaysClient) (ag ApplicationGateway, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ag, azure.NewAsyncOpIncompleteError("network.ApplicationGatewaysCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ag, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + ag, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// ApplicationGatewaysDeleteFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type ApplicationGatewaysDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future ApplicationGatewaysDeleteFuture) Result(client ApplicationGatewaysClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.ApplicationGatewaysDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// ApplicationGatewaySku SKU of application gateway +type ApplicationGatewaySku struct { + // Name - Name of an application gateway SKU. Possible values are: 'Standard_Small', 'Standard_Medium', 'Standard_Large', 'WAF_Medium', and 'WAF_Large'. Possible values include: 'StandardSmall', 'StandardMedium', 'StandardLarge' + Name ApplicationGatewaySkuName `json:"name,omitempty"` + // Tier - Tier of an application gateway. Possible values include: 'Standard' + Tier ApplicationGatewayTier `json:"tier,omitempty"` + // Capacity - Capacity (instance count) of an application gateway. + Capacity *int32 `json:"capacity,omitempty"` +} + +// ApplicationGatewaySslCertificate SSL certificates of an application gateway. +type ApplicationGatewaySslCertificate struct { + *ApplicationGatewaySslCertificatePropertiesFormat `json:"properties,omitempty"` + // Name - Name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ApplicationGatewaySslCertificate. +func (agsc ApplicationGatewaySslCertificate) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if agsc.ApplicationGatewaySslCertificatePropertiesFormat != nil { + objectMap["properties"] = agsc.ApplicationGatewaySslCertificatePropertiesFormat + } + if agsc.Name != nil { + objectMap["name"] = agsc.Name + } + if agsc.Etag != nil { + objectMap["etag"] = agsc.Etag + } + if agsc.ID != nil { + objectMap["id"] = agsc.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGatewaySslCertificate struct. +func (agsc *ApplicationGatewaySslCertificate) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewaySslCertificatePropertiesFormat ApplicationGatewaySslCertificatePropertiesFormat + err = json.Unmarshal(*v, &applicationGatewaySslCertificatePropertiesFormat) + if err != nil { + return err + } + agsc.ApplicationGatewaySslCertificatePropertiesFormat = &applicationGatewaySslCertificatePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + agsc.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + agsc.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + agsc.ID = &ID + } + } + } + + return nil +} + +// ApplicationGatewaySslCertificatePropertiesFormat properties of SSL certificates of an application gateway. +type ApplicationGatewaySslCertificatePropertiesFormat struct { + // Data - Base-64 encoded pfx certificate. Only applicable in PUT Request. + Data *string `json:"data,omitempty"` + // Password - Password for the pfx file specified in data. Only applicable in PUT request. + Password *string `json:"password,omitempty"` + // PublicCertData - Base-64 encoded Public cert data corresponding to pfx specified in data. Only applicable in GET request. + PublicCertData *string `json:"publicCertData,omitempty"` + // ProvisioningState - Provisioning state of the SSL certificate resource Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ApplicationGatewaysStartFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type ApplicationGatewaysStartFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future ApplicationGatewaysStartFuture) Result(client ApplicationGatewaysClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysStartFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.ApplicationGatewaysStartFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.StartResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysStartFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysStartFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.StartResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysStartFuture", "Result", resp, "Failure responding to request") + } + return +} + +// ApplicationGatewaysStopFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type ApplicationGatewaysStopFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future ApplicationGatewaysStopFuture) Result(client ApplicationGatewaysClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysStopFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.ApplicationGatewaysStopFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.StopResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysStopFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysStopFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.StopResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ApplicationGatewaysStopFuture", "Result", resp, "Failure responding to request") + } + return +} + +// ApplicationGatewayURLPathMap urlPathMaps give a url path to the backend mapping information for +// PathBasedRouting. +type ApplicationGatewayURLPathMap struct { + *ApplicationGatewayURLPathMapPropertiesFormat `json:"properties,omitempty"` + // Name - Name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ApplicationGatewayURLPathMap. +func (agupm ApplicationGatewayURLPathMap) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if agupm.ApplicationGatewayURLPathMapPropertiesFormat != nil { + objectMap["properties"] = agupm.ApplicationGatewayURLPathMapPropertiesFormat + } + if agupm.Name != nil { + objectMap["name"] = agupm.Name + } + if agupm.Etag != nil { + objectMap["etag"] = agupm.Etag + } + if agupm.ID != nil { + objectMap["id"] = agupm.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ApplicationGatewayURLPathMap struct. +func (agupm *ApplicationGatewayURLPathMap) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var applicationGatewayURLPathMapPropertiesFormat ApplicationGatewayURLPathMapPropertiesFormat + err = json.Unmarshal(*v, &applicationGatewayURLPathMapPropertiesFormat) + if err != nil { + return err + } + agupm.ApplicationGatewayURLPathMapPropertiesFormat = &applicationGatewayURLPathMapPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + agupm.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + agupm.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + agupm.ID = &ID + } + } + } + + return nil +} + +// ApplicationGatewayURLPathMapPropertiesFormat properties of UrlPathMap of the application gateway. +type ApplicationGatewayURLPathMapPropertiesFormat struct { + // DefaultBackendAddressPool - Default backend address pool resource of URL path map. + DefaultBackendAddressPool *SubResource `json:"defaultBackendAddressPool,omitempty"` + // DefaultBackendHTTPSettings - Default backend http settings resource of URL path map. + DefaultBackendHTTPSettings *SubResource `json:"defaultBackendHttpSettings,omitempty"` + // PathRules - Path rule of URL path map resource. + PathRules *[]ApplicationGatewayPathRule `json:"pathRules,omitempty"` + // ProvisioningState - Provisioning state of the backend http settings resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// AuthorizationListResult response for ListAuthorizations API service call retrieves all authorizations that +// belongs to an ExpressRouteCircuit. +type AuthorizationListResult struct { + autorest.Response `json:"-"` + // Value - The authorizations in an ExpressRoute Circuit. + Value *[]ExpressRouteCircuitAuthorization `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// AuthorizationListResultIterator provides access to a complete listing of ExpressRouteCircuitAuthorization +// values. +type AuthorizationListResultIterator struct { + i int + page AuthorizationListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *AuthorizationListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter AuthorizationListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter AuthorizationListResultIterator) Response() AuthorizationListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter AuthorizationListResultIterator) Value() ExpressRouteCircuitAuthorization { + if !iter.page.NotDone() { + return ExpressRouteCircuitAuthorization{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (alr AuthorizationListResult) IsEmpty() bool { + return alr.Value == nil || len(*alr.Value) == 0 +} + +// authorizationListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (alr AuthorizationListResult) authorizationListResultPreparer() (*http.Request, error) { + if alr.NextLink == nil || len(to.String(alr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(alr.NextLink))) +} + +// AuthorizationListResultPage contains a page of ExpressRouteCircuitAuthorization values. +type AuthorizationListResultPage struct { + fn func(AuthorizationListResult) (AuthorizationListResult, error) + alr AuthorizationListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *AuthorizationListResultPage) Next() error { + next, err := page.fn(page.alr) + if err != nil { + return err + } + page.alr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page AuthorizationListResultPage) NotDone() bool { + return !page.alr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page AuthorizationListResultPage) Response() AuthorizationListResult { + return page.alr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page AuthorizationListResultPage) Values() []ExpressRouteCircuitAuthorization { + if page.alr.IsEmpty() { + return nil + } + return *page.alr.Value +} + +// AuthorizationPropertiesFormat ... +type AuthorizationPropertiesFormat struct { + // AuthorizationKey - The authorization key. + AuthorizationKey *string `json:"authorizationKey,omitempty"` + // AuthorizationUseStatus - AuthorizationUseStatus. Possible values are: 'Available' and 'InUse'. Possible values include: 'Available', 'InUse' + AuthorizationUseStatus AuthorizationUseStatus `json:"authorizationUseStatus,omitempty"` + // ProvisioningState - Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// AzureAsyncOperationResult the response body contains the status of the specified asynchronous operation, +// indicating whether it has succeeded, is in progress, or has failed. Note that this status is distinct from the +// HTTP status code returned for the Get Operation Status operation itself. If the asynchronous operation +// succeeded, the response body includes the HTTP status code for the successful request. If the asynchronous +// operation failed, the response body includes the HTTP status code for the failed request and error information +// regarding the failure. +type AzureAsyncOperationResult struct { + // Status - Status of the Azure async operation. Possible values are: 'InProgress', 'Succeeded', and 'Failed'. Possible values include: 'InProgress', 'Succeeded', 'Failed' + Status OperationStatus `json:"status,omitempty"` + Error *Error `json:"error,omitempty"` +} + +// BackendAddressPool pool of backend IP addresses. +type BackendAddressPool struct { + *BackendAddressPoolPropertiesFormat `json:"properties,omitempty"` + // Name - Gets name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for BackendAddressPool. +func (bap BackendAddressPool) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if bap.BackendAddressPoolPropertiesFormat != nil { + objectMap["properties"] = bap.BackendAddressPoolPropertiesFormat + } + if bap.Name != nil { + objectMap["name"] = bap.Name + } + if bap.Etag != nil { + objectMap["etag"] = bap.Etag + } + if bap.ID != nil { + objectMap["id"] = bap.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for BackendAddressPool struct. +func (bap *BackendAddressPool) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var backendAddressPoolPropertiesFormat BackendAddressPoolPropertiesFormat + err = json.Unmarshal(*v, &backendAddressPoolPropertiesFormat) + if err != nil { + return err + } + bap.BackendAddressPoolPropertiesFormat = &backendAddressPoolPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + bap.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + bap.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + bap.ID = &ID + } + } + } + + return nil +} + +// BackendAddressPoolPropertiesFormat properties of the backend address pool. +type BackendAddressPoolPropertiesFormat struct { + // BackendIPConfigurations - Gets collection of references to IP addresses defined in network interfaces. + BackendIPConfigurations *[]InterfaceIPConfiguration `json:"backendIPConfigurations,omitempty"` + // LoadBalancingRules - Gets load balancing rules that use this backend address pool. + LoadBalancingRules *[]SubResource `json:"loadBalancingRules,omitempty"` + // OutboundNatRule - Gets outbound rules that use this backend address pool. + OutboundNatRule *SubResource `json:"outboundNatRule,omitempty"` + // ProvisioningState - Get provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// BgpSettings ... +type BgpSettings struct { + // Asn - Gets or sets this BGP speaker's ASN + Asn *int64 `json:"asn,omitempty"` + // BgpPeeringAddress - Gets or sets the BGP peering address and BGP identifier of this BGP speaker + BgpPeeringAddress *string `json:"bgpPeeringAddress,omitempty"` + // PeerWeight - Gets or sets the weight added to routes learned from this BGP speaker + PeerWeight *int32 `json:"peerWeight,omitempty"` +} + +// ConnectionResetSharedKey ... +type ConnectionResetSharedKey struct { + autorest.Response `json:"-"` + // KeyLength - The virtual network connection reset shared key length + KeyLength *int64 `json:"keyLength,omitempty"` +} + +// ConnectionSharedKey response for GetConnectionSharedKey Api servive call +type ConnectionSharedKey struct { + autorest.Response `json:"-"` + // Value - The virtual network connection shared key value + Value *string `json:"value,omitempty"` +} + +// ConnectionSharedKeyResult response for CheckConnectionSharedKey Api servive call +type ConnectionSharedKeyResult struct { + autorest.Response `json:"-"` + // Value - The virtual network connection shared key value + Value *string `json:"value,omitempty"` +} + +// DhcpOptions dhcpOptions contains an array of DNS servers available to VMs deployed in the virtual network. +// Standard DHCP option for a subnet overrides VNET DHCP options. +type DhcpOptions struct { + // DNSServers - The list of DNS servers IP addresses. + DNSServers *[]string `json:"dnsServers,omitempty"` +} + +// DNSNameAvailabilityResult response for the CheckDnsNameAvailability API service call. +type DNSNameAvailabilityResult struct { + autorest.Response `json:"-"` + // Available - Domain availability (True/False). + Available *bool `json:"available,omitempty"` +} + +// Error error object properties +type Error struct { + Code *string `json:"code,omitempty"` + Message *string `json:"message,omitempty"` + Target *string `json:"target,omitempty"` + Details *[]ErrorDetails `json:"details,omitempty"` + InnerError *string `json:"innerError,omitempty"` +} + +// ErrorDetails error details properties +type ErrorDetails struct { + Code *string `json:"code,omitempty"` + Target *string `json:"target,omitempty"` + Message *string `json:"message,omitempty"` +} + +// ExpressRouteCircuit expressRouteCircuit resource +type ExpressRouteCircuit struct { + autorest.Response `json:"-"` + // Sku - The SKU. + Sku *ExpressRouteCircuitSku `json:"sku,omitempty"` + *ExpressRouteCircuitPropertiesFormat `json:"properties,omitempty"` + // Etag - Gets a unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for ExpressRouteCircuit. +func (erc ExpressRouteCircuit) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if erc.Sku != nil { + objectMap["sku"] = erc.Sku + } + if erc.ExpressRouteCircuitPropertiesFormat != nil { + objectMap["properties"] = erc.ExpressRouteCircuitPropertiesFormat + } + if erc.Etag != nil { + objectMap["etag"] = erc.Etag + } + if erc.ID != nil { + objectMap["id"] = erc.ID + } + if erc.Name != nil { + objectMap["name"] = erc.Name + } + if erc.Type != nil { + objectMap["type"] = erc.Type + } + if erc.Location != nil { + objectMap["location"] = erc.Location + } + if erc.Tags != nil { + objectMap["tags"] = erc.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ExpressRouteCircuit struct. +func (erc *ExpressRouteCircuit) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "sku": + if v != nil { + var sku ExpressRouteCircuitSku + err = json.Unmarshal(*v, &sku) + if err != nil { + return err + } + erc.Sku = &sku + } + case "properties": + if v != nil { + var expressRouteCircuitPropertiesFormat ExpressRouteCircuitPropertiesFormat + err = json.Unmarshal(*v, &expressRouteCircuitPropertiesFormat) + if err != nil { + return err + } + erc.ExpressRouteCircuitPropertiesFormat = &expressRouteCircuitPropertiesFormat + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + erc.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + erc.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + erc.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + erc.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + erc.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + erc.Tags = tags + } + } + } + + return nil +} + +// ExpressRouteCircuitArpTable the ARP table associated with the ExpressRouteCircuit. +type ExpressRouteCircuitArpTable struct { + // IPAddress - The IP address. + IPAddress *string `json:"ipAddress,omitempty"` + // MacAddress - The MAC address. + MacAddress *string `json:"macAddress,omitempty"` +} + +// ExpressRouteCircuitAuthorization authorization in an ExpressRouteCircuit resource. +type ExpressRouteCircuitAuthorization struct { + autorest.Response `json:"-"` + *AuthorizationPropertiesFormat `json:"properties,omitempty"` + // Name - Gets name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ExpressRouteCircuitAuthorization. +func (erca ExpressRouteCircuitAuthorization) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if erca.AuthorizationPropertiesFormat != nil { + objectMap["properties"] = erca.AuthorizationPropertiesFormat + } + if erca.Name != nil { + objectMap["name"] = erca.Name + } + if erca.Etag != nil { + objectMap["etag"] = erca.Etag + } + if erca.ID != nil { + objectMap["id"] = erca.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ExpressRouteCircuitAuthorization struct. +func (erca *ExpressRouteCircuitAuthorization) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var authorizationPropertiesFormat AuthorizationPropertiesFormat + err = json.Unmarshal(*v, &authorizationPropertiesFormat) + if err != nil { + return err + } + erca.AuthorizationPropertiesFormat = &authorizationPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + erca.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + erca.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + erca.ID = &ID + } + } + } + + return nil +} + +// ExpressRouteCircuitAuthorizationsCreateOrUpdateFuture an abstraction for monitoring and retrieving the results +// of a long-running operation. +type ExpressRouteCircuitAuthorizationsCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future ExpressRouteCircuitAuthorizationsCreateOrUpdateFuture) Result(client ExpressRouteCircuitAuthorizationsClient) (erca ExpressRouteCircuitAuthorization, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return erca, azure.NewAsyncOpIncompleteError("network.ExpressRouteCircuitAuthorizationsCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + erca, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + erca, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// ExpressRouteCircuitAuthorizationsDeleteFuture an abstraction for monitoring and retrieving the results of a +// long-running operation. +type ExpressRouteCircuitAuthorizationsDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future ExpressRouteCircuitAuthorizationsDeleteFuture) Result(client ExpressRouteCircuitAuthorizationsClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.ExpressRouteCircuitAuthorizationsDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitAuthorizationsDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// ExpressRouteCircuitListResult response for ListExpressRouteCircuit API service call. +type ExpressRouteCircuitListResult struct { + autorest.Response `json:"-"` + // Value - A list of ExpressRouteCircuits in a resource group. + Value *[]ExpressRouteCircuit `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// ExpressRouteCircuitListResultIterator provides access to a complete listing of ExpressRouteCircuit values. +type ExpressRouteCircuitListResultIterator struct { + i int + page ExpressRouteCircuitListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *ExpressRouteCircuitListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter ExpressRouteCircuitListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter ExpressRouteCircuitListResultIterator) Response() ExpressRouteCircuitListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter ExpressRouteCircuitListResultIterator) Value() ExpressRouteCircuit { + if !iter.page.NotDone() { + return ExpressRouteCircuit{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (erclr ExpressRouteCircuitListResult) IsEmpty() bool { + return erclr.Value == nil || len(*erclr.Value) == 0 +} + +// expressRouteCircuitListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (erclr ExpressRouteCircuitListResult) expressRouteCircuitListResultPreparer() (*http.Request, error) { + if erclr.NextLink == nil || len(to.String(erclr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(erclr.NextLink))) +} + +// ExpressRouteCircuitListResultPage contains a page of ExpressRouteCircuit values. +type ExpressRouteCircuitListResultPage struct { + fn func(ExpressRouteCircuitListResult) (ExpressRouteCircuitListResult, error) + erclr ExpressRouteCircuitListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *ExpressRouteCircuitListResultPage) Next() error { + next, err := page.fn(page.erclr) + if err != nil { + return err + } + page.erclr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page ExpressRouteCircuitListResultPage) NotDone() bool { + return !page.erclr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page ExpressRouteCircuitListResultPage) Response() ExpressRouteCircuitListResult { + return page.erclr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page ExpressRouteCircuitListResultPage) Values() []ExpressRouteCircuit { + if page.erclr.IsEmpty() { + return nil + } + return *page.erclr.Value +} + +// ExpressRouteCircuitPeering peering in an ExpressRouteCircuit resource. +type ExpressRouteCircuitPeering struct { + autorest.Response `json:"-"` + *ExpressRouteCircuitPeeringPropertiesFormat `json:"properties,omitempty"` + // Name - Gets name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for ExpressRouteCircuitPeering. +func (ercp ExpressRouteCircuitPeering) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if ercp.ExpressRouteCircuitPeeringPropertiesFormat != nil { + objectMap["properties"] = ercp.ExpressRouteCircuitPeeringPropertiesFormat + } + if ercp.Name != nil { + objectMap["name"] = ercp.Name + } + if ercp.Etag != nil { + objectMap["etag"] = ercp.Etag + } + if ercp.ID != nil { + objectMap["id"] = ercp.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ExpressRouteCircuitPeering struct. +func (ercp *ExpressRouteCircuitPeering) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var expressRouteCircuitPeeringPropertiesFormat ExpressRouteCircuitPeeringPropertiesFormat + err = json.Unmarshal(*v, &expressRouteCircuitPeeringPropertiesFormat) + if err != nil { + return err + } + ercp.ExpressRouteCircuitPeeringPropertiesFormat = &expressRouteCircuitPeeringPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + ercp.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + ercp.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + ercp.ID = &ID + } + } + } + + return nil +} + +// ExpressRouteCircuitPeeringConfig specifies the peering configuration. +type ExpressRouteCircuitPeeringConfig struct { + // AdvertisedPublicPrefixes - The reference of AdvertisedPublicPrefixes. + AdvertisedPublicPrefixes *[]string `json:"advertisedPublicPrefixes,omitempty"` + // AdvertisedPublicPrefixesState - AdvertisedPublicPrefixState of the Peering resource. Possible values are 'NotConfigured', 'Configuring', 'Configured', and 'ValidationNeeded'. Possible values include: 'NotConfigured', 'Configuring', 'Configured', 'ValidationNeeded' + AdvertisedPublicPrefixesState ExpressRouteCircuitPeeringAdvertisedPublicPrefixState `json:"advertisedPublicPrefixesState,omitempty"` + // CustomerASN - The CustomerASN of the peering. + CustomerASN *int32 `json:"customerASN,omitempty"` + // RoutingRegistryName - The RoutingRegistryName of the configuration. + RoutingRegistryName *string `json:"routingRegistryName,omitempty"` +} + +// ExpressRouteCircuitPeeringListResult response for ListPeering API service call retrieves all peerings that +// belong to an ExpressRouteCircuit. +type ExpressRouteCircuitPeeringListResult struct { + autorest.Response `json:"-"` + // Value - The peerings in an express route circuit. + Value *[]ExpressRouteCircuitPeering `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// ExpressRouteCircuitPeeringListResultIterator provides access to a complete listing of ExpressRouteCircuitPeering +// values. +type ExpressRouteCircuitPeeringListResultIterator struct { + i int + page ExpressRouteCircuitPeeringListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *ExpressRouteCircuitPeeringListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter ExpressRouteCircuitPeeringListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter ExpressRouteCircuitPeeringListResultIterator) Response() ExpressRouteCircuitPeeringListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter ExpressRouteCircuitPeeringListResultIterator) Value() ExpressRouteCircuitPeering { + if !iter.page.NotDone() { + return ExpressRouteCircuitPeering{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (ercplr ExpressRouteCircuitPeeringListResult) IsEmpty() bool { + return ercplr.Value == nil || len(*ercplr.Value) == 0 +} + +// expressRouteCircuitPeeringListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (ercplr ExpressRouteCircuitPeeringListResult) expressRouteCircuitPeeringListResultPreparer() (*http.Request, error) { + if ercplr.NextLink == nil || len(to.String(ercplr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(ercplr.NextLink))) +} + +// ExpressRouteCircuitPeeringListResultPage contains a page of ExpressRouteCircuitPeering values. +type ExpressRouteCircuitPeeringListResultPage struct { + fn func(ExpressRouteCircuitPeeringListResult) (ExpressRouteCircuitPeeringListResult, error) + ercplr ExpressRouteCircuitPeeringListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *ExpressRouteCircuitPeeringListResultPage) Next() error { + next, err := page.fn(page.ercplr) + if err != nil { + return err + } + page.ercplr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page ExpressRouteCircuitPeeringListResultPage) NotDone() bool { + return !page.ercplr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page ExpressRouteCircuitPeeringListResultPage) Response() ExpressRouteCircuitPeeringListResult { + return page.ercplr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page ExpressRouteCircuitPeeringListResultPage) Values() []ExpressRouteCircuitPeering { + if page.ercplr.IsEmpty() { + return nil + } + return *page.ercplr.Value +} + +// ExpressRouteCircuitPeeringPropertiesFormat ... +type ExpressRouteCircuitPeeringPropertiesFormat struct { + // PeeringType - The PeeringType. Possible values are: 'AzurePublicPeering', 'AzurePrivatePeering', and 'MicrosoftPeering'. Possible values include: 'AzurePublicPeering', 'AzurePrivatePeering', 'MicrosoftPeering' + PeeringType ExpressRouteCircuitPeeringType `json:"peeringType,omitempty"` + // State - The state of peering. Possible values are: 'Disabled' and 'Enabled'. Possible values include: 'ExpressRouteCircuitPeeringStateDisabled', 'ExpressRouteCircuitPeeringStateEnabled' + State ExpressRouteCircuitPeeringState `json:"state,omitempty"` + // AzureASN - The Azure ASN. + AzureASN *int32 `json:"azureASN,omitempty"` + // PeerASN - The peer ASN. + PeerASN *int32 `json:"peerASN,omitempty"` + // PrimaryPeerAddressPrefix - The primary address prefix. + PrimaryPeerAddressPrefix *string `json:"primaryPeerAddressPrefix,omitempty"` + // SecondaryPeerAddressPrefix - The secondary address prefix. + SecondaryPeerAddressPrefix *string `json:"secondaryPeerAddressPrefix,omitempty"` + // PrimaryAzurePort - The primary port. + PrimaryAzurePort *string `json:"primaryAzurePort,omitempty"` + // SecondaryAzurePort - The secondary port. + SecondaryAzurePort *string `json:"secondaryAzurePort,omitempty"` + // SharedKey - The shared key. + SharedKey *string `json:"sharedKey,omitempty"` + // VlanID - The VLAN ID. + VlanID *int32 `json:"vlanId,omitempty"` + // MicrosoftPeeringConfig - The Microsoft peering configuration. + MicrosoftPeeringConfig *ExpressRouteCircuitPeeringConfig `json:"microsoftPeeringConfig,omitempty"` + // Stats - Gets peering stats. + Stats *ExpressRouteCircuitStats `json:"stats,omitempty"` + // ProvisioningState - Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ExpressRouteCircuitPeeringsCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a +// long-running operation. +type ExpressRouteCircuitPeeringsCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future ExpressRouteCircuitPeeringsCreateOrUpdateFuture) Result(client ExpressRouteCircuitPeeringsClient) (ercp ExpressRouteCircuitPeering, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ercp, azure.NewAsyncOpIncompleteError("network.ExpressRouteCircuitPeeringsCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ercp, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + ercp, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// ExpressRouteCircuitPeeringsDeleteFuture an abstraction for monitoring and retrieving the results of a +// long-running operation. +type ExpressRouteCircuitPeeringsDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future ExpressRouteCircuitPeeringsDeleteFuture) Result(client ExpressRouteCircuitPeeringsClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.ExpressRouteCircuitPeeringsDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitPeeringsDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// ExpressRouteCircuitPropertiesFormat properties of ExpressRouteCircuit. +type ExpressRouteCircuitPropertiesFormat struct { + // CircuitProvisioningState - The CircuitProvisioningState state of the resource. + CircuitProvisioningState *string `json:"circuitProvisioningState,omitempty"` + // ServiceProviderProvisioningState - The ServiceProviderProvisioningState state of the resource. Possible values are 'NotProvisioned', 'Provisioning', 'Provisioned', and 'Deprovisioning'. Possible values include: 'NotProvisioned', 'Provisioning', 'Provisioned', 'Deprovisioning' + ServiceProviderProvisioningState ServiceProviderProvisioningState `json:"serviceProviderProvisioningState,omitempty"` + // Authorizations - The list of authorizations. + Authorizations *[]ExpressRouteCircuitAuthorization `json:"authorizations,omitempty"` + // Peerings - The list of peerings. + Peerings *[]ExpressRouteCircuitPeering `json:"peerings,omitempty"` + // ServiceKey - The ServiceKey. + ServiceKey *string `json:"serviceKey,omitempty"` + // ServiceProviderNotes - The ServiceProviderNotes. + ServiceProviderNotes *string `json:"serviceProviderNotes,omitempty"` + // ServiceProviderProperties - The ServiceProviderProperties. + ServiceProviderProperties *ExpressRouteCircuitServiceProviderProperties `json:"serviceProviderProperties,omitempty"` + // ProvisioningState - Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// ExpressRouteCircuitRoutesTable the routes table associated with the ExpressRouteCircuit +type ExpressRouteCircuitRoutesTable struct { + // AddressPrefix - Gets AddressPrefix. + AddressPrefix *string `json:"addressPrefix,omitempty"` + // NextHopType - Gets NextHopType. Possible values include: 'RouteNextHopTypeVirtualNetworkGateway', 'RouteNextHopTypeVnetLocal', 'RouteNextHopTypeInternet', 'RouteNextHopTypeVirtualAppliance', 'RouteNextHopTypeNone' + NextHopType RouteNextHopType `json:"nextHopType,omitempty"` + // NextHopIP - Gets NextHopIP. + NextHopIP *string `json:"nextHopIP,omitempty"` + // AsPath - Gets AsPath. + AsPath *string `json:"asPath,omitempty"` +} + +// ExpressRouteCircuitsArpTableListResult response for ListArpTable associated with the Express Route Circuits API. +type ExpressRouteCircuitsArpTableListResult struct { + autorest.Response `json:"-"` + // Value - Gets list of the ARP table. + Value *[]ExpressRouteCircuitArpTable `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// ExpressRouteCircuitsArpTableListResultIterator provides access to a complete listing of +// ExpressRouteCircuitArpTable values. +type ExpressRouteCircuitsArpTableListResultIterator struct { + i int + page ExpressRouteCircuitsArpTableListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *ExpressRouteCircuitsArpTableListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter ExpressRouteCircuitsArpTableListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter ExpressRouteCircuitsArpTableListResultIterator) Response() ExpressRouteCircuitsArpTableListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter ExpressRouteCircuitsArpTableListResultIterator) Value() ExpressRouteCircuitArpTable { + if !iter.page.NotDone() { + return ExpressRouteCircuitArpTable{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (ercatlr ExpressRouteCircuitsArpTableListResult) IsEmpty() bool { + return ercatlr.Value == nil || len(*ercatlr.Value) == 0 +} + +// expressRouteCircuitsArpTableListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (ercatlr ExpressRouteCircuitsArpTableListResult) expressRouteCircuitsArpTableListResultPreparer() (*http.Request, error) { + if ercatlr.NextLink == nil || len(to.String(ercatlr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(ercatlr.NextLink))) +} + +// ExpressRouteCircuitsArpTableListResultPage contains a page of ExpressRouteCircuitArpTable values. +type ExpressRouteCircuitsArpTableListResultPage struct { + fn func(ExpressRouteCircuitsArpTableListResult) (ExpressRouteCircuitsArpTableListResult, error) + ercatlr ExpressRouteCircuitsArpTableListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *ExpressRouteCircuitsArpTableListResultPage) Next() error { + next, err := page.fn(page.ercatlr) + if err != nil { + return err + } + page.ercatlr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page ExpressRouteCircuitsArpTableListResultPage) NotDone() bool { + return !page.ercatlr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page ExpressRouteCircuitsArpTableListResultPage) Response() ExpressRouteCircuitsArpTableListResult { + return page.ercatlr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page ExpressRouteCircuitsArpTableListResultPage) Values() []ExpressRouteCircuitArpTable { + if page.ercatlr.IsEmpty() { + return nil + } + return *page.ercatlr.Value +} + +// ExpressRouteCircuitsCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a +// long-running operation. +type ExpressRouteCircuitsCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future ExpressRouteCircuitsCreateOrUpdateFuture) Result(client ExpressRouteCircuitsClient) (erc ExpressRouteCircuit, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return erc, azure.NewAsyncOpIncompleteError("network.ExpressRouteCircuitsCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + erc, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + erc, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// ExpressRouteCircuitsDeleteFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type ExpressRouteCircuitsDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future ExpressRouteCircuitsDeleteFuture) Result(client ExpressRouteCircuitsClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.ExpressRouteCircuitsDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.ExpressRouteCircuitsDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// ExpressRouteCircuitServiceProviderProperties contains ServiceProviderProperties in an ExpressRouteCircuit. +type ExpressRouteCircuitServiceProviderProperties struct { + // ServiceProviderName - The serviceProviderName. + ServiceProviderName *string `json:"serviceProviderName,omitempty"` + // PeeringLocation - The peering location. + PeeringLocation *string `json:"peeringLocation,omitempty"` + // BandwidthInMbps - The BandwidthInMbps. + BandwidthInMbps *int32 `json:"bandwidthInMbps,omitempty"` +} + +// ExpressRouteCircuitSku contains SKU in an ExpressRouteCircuit. +type ExpressRouteCircuitSku struct { + // Name - The name of the SKU. + Name *string `json:"name,omitempty"` + // Tier - The tier of the SKU. Possible values are 'Standard' and 'Premium'. Possible values include: 'ExpressRouteCircuitSkuTierStandard', 'ExpressRouteCircuitSkuTierPremium' + Tier ExpressRouteCircuitSkuTier `json:"tier,omitempty"` + // Family - The family of the SKU. Possible values are: 'UnlimitedData' and 'MeteredData'. Possible values include: 'UnlimitedData', 'MeteredData' + Family ExpressRouteCircuitSkuFamily `json:"family,omitempty"` +} + +// ExpressRouteCircuitsRoutesTableListResult response for ListRoutesTable associated with the Express Route +// Circuits API. +type ExpressRouteCircuitsRoutesTableListResult struct { + autorest.Response `json:"-"` + // Value - The list of routes table. + Value *[]ExpressRouteCircuitRoutesTable `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// ExpressRouteCircuitsRoutesTableListResultIterator provides access to a complete listing of +// ExpressRouteCircuitRoutesTable values. +type ExpressRouteCircuitsRoutesTableListResultIterator struct { + i int + page ExpressRouteCircuitsRoutesTableListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *ExpressRouteCircuitsRoutesTableListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter ExpressRouteCircuitsRoutesTableListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter ExpressRouteCircuitsRoutesTableListResultIterator) Response() ExpressRouteCircuitsRoutesTableListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter ExpressRouteCircuitsRoutesTableListResultIterator) Value() ExpressRouteCircuitRoutesTable { + if !iter.page.NotDone() { + return ExpressRouteCircuitRoutesTable{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (ercrtlr ExpressRouteCircuitsRoutesTableListResult) IsEmpty() bool { + return ercrtlr.Value == nil || len(*ercrtlr.Value) == 0 +} + +// expressRouteCircuitsRoutesTableListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (ercrtlr ExpressRouteCircuitsRoutesTableListResult) expressRouteCircuitsRoutesTableListResultPreparer() (*http.Request, error) { + if ercrtlr.NextLink == nil || len(to.String(ercrtlr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(ercrtlr.NextLink))) +} + +// ExpressRouteCircuitsRoutesTableListResultPage contains a page of ExpressRouteCircuitRoutesTable values. +type ExpressRouteCircuitsRoutesTableListResultPage struct { + fn func(ExpressRouteCircuitsRoutesTableListResult) (ExpressRouteCircuitsRoutesTableListResult, error) + ercrtlr ExpressRouteCircuitsRoutesTableListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *ExpressRouteCircuitsRoutesTableListResultPage) Next() error { + next, err := page.fn(page.ercrtlr) + if err != nil { + return err + } + page.ercrtlr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page ExpressRouteCircuitsRoutesTableListResultPage) NotDone() bool { + return !page.ercrtlr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page ExpressRouteCircuitsRoutesTableListResultPage) Response() ExpressRouteCircuitsRoutesTableListResult { + return page.ercrtlr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page ExpressRouteCircuitsRoutesTableListResultPage) Values() []ExpressRouteCircuitRoutesTable { + if page.ercrtlr.IsEmpty() { + return nil + } + return *page.ercrtlr.Value +} + +// ExpressRouteCircuitsStatsListResult response for ListStats from Express Route Circuits Api service call +type ExpressRouteCircuitsStatsListResult struct { + autorest.Response `json:"-"` + // Value - Gets List of Stats + Value *[]ExpressRouteCircuitStats `json:"value,omitempty"` + // NextLink - Gets the URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// ExpressRouteCircuitsStatsListResultIterator provides access to a complete listing of ExpressRouteCircuitStats +// values. +type ExpressRouteCircuitsStatsListResultIterator struct { + i int + page ExpressRouteCircuitsStatsListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *ExpressRouteCircuitsStatsListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter ExpressRouteCircuitsStatsListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter ExpressRouteCircuitsStatsListResultIterator) Response() ExpressRouteCircuitsStatsListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter ExpressRouteCircuitsStatsListResultIterator) Value() ExpressRouteCircuitStats { + if !iter.page.NotDone() { + return ExpressRouteCircuitStats{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (ercslr ExpressRouteCircuitsStatsListResult) IsEmpty() bool { + return ercslr.Value == nil || len(*ercslr.Value) == 0 +} + +// expressRouteCircuitsStatsListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (ercslr ExpressRouteCircuitsStatsListResult) expressRouteCircuitsStatsListResultPreparer() (*http.Request, error) { + if ercslr.NextLink == nil || len(to.String(ercslr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(ercslr.NextLink))) +} + +// ExpressRouteCircuitsStatsListResultPage contains a page of ExpressRouteCircuitStats values. +type ExpressRouteCircuitsStatsListResultPage struct { + fn func(ExpressRouteCircuitsStatsListResult) (ExpressRouteCircuitsStatsListResult, error) + ercslr ExpressRouteCircuitsStatsListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *ExpressRouteCircuitsStatsListResultPage) Next() error { + next, err := page.fn(page.ercslr) + if err != nil { + return err + } + page.ercslr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page ExpressRouteCircuitsStatsListResultPage) NotDone() bool { + return !page.ercslr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page ExpressRouteCircuitsStatsListResultPage) Response() ExpressRouteCircuitsStatsListResult { + return page.ercslr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page ExpressRouteCircuitsStatsListResultPage) Values() []ExpressRouteCircuitStats { + if page.ercslr.IsEmpty() { + return nil + } + return *page.ercslr.Value +} + +// ExpressRouteCircuitStats contains stats associated with the peering. +type ExpressRouteCircuitStats struct { + // BytesIn - Gets BytesIn of the peering. + BytesIn *int32 `json:"bytesIn,omitempty"` + // BytesOut - Gets BytesOut of the peering. + BytesOut *int32 `json:"bytesOut,omitempty"` +} + +// ExpressRouteServiceProvider a ExpressRouteResourceProvider object. +type ExpressRouteServiceProvider struct { + *ExpressRouteServiceProviderPropertiesFormat `json:"properties,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for ExpressRouteServiceProvider. +func (ersp ExpressRouteServiceProvider) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if ersp.ExpressRouteServiceProviderPropertiesFormat != nil { + objectMap["properties"] = ersp.ExpressRouteServiceProviderPropertiesFormat + } + if ersp.ID != nil { + objectMap["id"] = ersp.ID + } + if ersp.Name != nil { + objectMap["name"] = ersp.Name + } + if ersp.Type != nil { + objectMap["type"] = ersp.Type + } + if ersp.Location != nil { + objectMap["location"] = ersp.Location + } + if ersp.Tags != nil { + objectMap["tags"] = ersp.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for ExpressRouteServiceProvider struct. +func (ersp *ExpressRouteServiceProvider) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var expressRouteServiceProviderPropertiesFormat ExpressRouteServiceProviderPropertiesFormat + err = json.Unmarshal(*v, &expressRouteServiceProviderPropertiesFormat) + if err != nil { + return err + } + ersp.ExpressRouteServiceProviderPropertiesFormat = &expressRouteServiceProviderPropertiesFormat + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + ersp.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + ersp.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + ersp.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + ersp.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + ersp.Tags = tags + } + } + } + + return nil +} + +// ExpressRouteServiceProviderBandwidthsOffered contains bandwidths offered in ExpressRouteServiceProvider +// resources. +type ExpressRouteServiceProviderBandwidthsOffered struct { + // OfferName - The OfferName. + OfferName *string `json:"offerName,omitempty"` + // ValueInMbps - The ValueInMbps. + ValueInMbps *int32 `json:"valueInMbps,omitempty"` +} + +// ExpressRouteServiceProviderListResult response for the ListExpressRouteServiceProvider API service call. +type ExpressRouteServiceProviderListResult struct { + autorest.Response `json:"-"` + // Value - A list of ExpressRouteResourceProvider resources. + Value *[]ExpressRouteServiceProvider `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// ExpressRouteServiceProviderListResultIterator provides access to a complete listing of +// ExpressRouteServiceProvider values. +type ExpressRouteServiceProviderListResultIterator struct { + i int + page ExpressRouteServiceProviderListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *ExpressRouteServiceProviderListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter ExpressRouteServiceProviderListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter ExpressRouteServiceProviderListResultIterator) Response() ExpressRouteServiceProviderListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter ExpressRouteServiceProviderListResultIterator) Value() ExpressRouteServiceProvider { + if !iter.page.NotDone() { + return ExpressRouteServiceProvider{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (ersplr ExpressRouteServiceProviderListResult) IsEmpty() bool { + return ersplr.Value == nil || len(*ersplr.Value) == 0 +} + +// expressRouteServiceProviderListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (ersplr ExpressRouteServiceProviderListResult) expressRouteServiceProviderListResultPreparer() (*http.Request, error) { + if ersplr.NextLink == nil || len(to.String(ersplr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(ersplr.NextLink))) +} + +// ExpressRouteServiceProviderListResultPage contains a page of ExpressRouteServiceProvider values. +type ExpressRouteServiceProviderListResultPage struct { + fn func(ExpressRouteServiceProviderListResult) (ExpressRouteServiceProviderListResult, error) + ersplr ExpressRouteServiceProviderListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *ExpressRouteServiceProviderListResultPage) Next() error { + next, err := page.fn(page.ersplr) + if err != nil { + return err + } + page.ersplr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page ExpressRouteServiceProviderListResultPage) NotDone() bool { + return !page.ersplr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page ExpressRouteServiceProviderListResultPage) Response() ExpressRouteServiceProviderListResult { + return page.ersplr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page ExpressRouteServiceProviderListResultPage) Values() []ExpressRouteServiceProvider { + if page.ersplr.IsEmpty() { + return nil + } + return *page.ersplr.Value +} + +// ExpressRouteServiceProviderPropertiesFormat properties of ExpressRouteServiceProvider. +type ExpressRouteServiceProviderPropertiesFormat struct { + // PeeringLocations - Get a list of peering locations. + PeeringLocations *[]string `json:"peeringLocations,omitempty"` + // BandwidthsOffered - Gets bandwidths offered. + BandwidthsOffered *[]ExpressRouteServiceProviderBandwidthsOffered `json:"bandwidthsOffered,omitempty"` + // ProvisioningState - Gets the provisioning state of the resource. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// FrontendIPConfiguration frontend IP address of the load balancer. +type FrontendIPConfiguration struct { + *FrontendIPConfigurationPropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for FrontendIPConfiguration. +func (fic FrontendIPConfiguration) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if fic.FrontendIPConfigurationPropertiesFormat != nil { + objectMap["properties"] = fic.FrontendIPConfigurationPropertiesFormat + } + if fic.Name != nil { + objectMap["name"] = fic.Name + } + if fic.Etag != nil { + objectMap["etag"] = fic.Etag + } + if fic.ID != nil { + objectMap["id"] = fic.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for FrontendIPConfiguration struct. +func (fic *FrontendIPConfiguration) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var frontendIPConfigurationPropertiesFormat FrontendIPConfigurationPropertiesFormat + err = json.Unmarshal(*v, &frontendIPConfigurationPropertiesFormat) + if err != nil { + return err + } + fic.FrontendIPConfigurationPropertiesFormat = &frontendIPConfigurationPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + fic.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + fic.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + fic.ID = &ID + } + } + } + + return nil +} + +// FrontendIPConfigurationPropertiesFormat properties of Frontend IP Configuration of the load balancer. +type FrontendIPConfigurationPropertiesFormat struct { + // InboundNatRules - Read only. Inbound rules URIs that use this frontend IP. + InboundNatRules *[]SubResource `json:"inboundNatRules,omitempty"` + // InboundNatPools - Read only. Inbound pools URIs that use this frontend IP. + InboundNatPools *[]SubResource `json:"inboundNatPools,omitempty"` + // OutboundNatRules - Read only. Outbound rules URIs that use this frontend IP. + OutboundNatRules *[]SubResource `json:"outboundNatRules,omitempty"` + // LoadBalancingRules - Gets load balancing rules URIs that use this frontend IP. + LoadBalancingRules *[]SubResource `json:"loadBalancingRules,omitempty"` + // PrivateIPAddress - The private IP address of the IP configuration. + PrivateIPAddress *string `json:"privateIPAddress,omitempty"` + // PrivateIPAllocationMethod - The Private IP allocation method. Possible values are: 'Static' and 'Dynamic'. Possible values include: 'Static', 'Dynamic' + PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"` + // Subnet - The reference of the subnet resource. + Subnet *Subnet `json:"subnet,omitempty"` + // PublicIPAddress - The reference of the Public IP resource. + PublicIPAddress *PublicIPAddress `json:"publicIPAddress,omitempty"` + // ProvisioningState - Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// InboundNatPool inbound NAT pool of the load balancer. +type InboundNatPool struct { + *InboundNatPoolPropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for InboundNatPool. +func (inp InboundNatPool) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if inp.InboundNatPoolPropertiesFormat != nil { + objectMap["properties"] = inp.InboundNatPoolPropertiesFormat + } + if inp.Name != nil { + objectMap["name"] = inp.Name + } + if inp.Etag != nil { + objectMap["etag"] = inp.Etag + } + if inp.ID != nil { + objectMap["id"] = inp.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for InboundNatPool struct. +func (inp *InboundNatPool) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var inboundNatPoolPropertiesFormat InboundNatPoolPropertiesFormat + err = json.Unmarshal(*v, &inboundNatPoolPropertiesFormat) + if err != nil { + return err + } + inp.InboundNatPoolPropertiesFormat = &inboundNatPoolPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + inp.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + inp.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + inp.ID = &ID + } + } + } + + return nil +} + +// InboundNatPoolPropertiesFormat properties of Inbound NAT pool. +type InboundNatPoolPropertiesFormat struct { + // FrontendIPConfiguration - A reference to frontend IP addresses. + FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"` + // Protocol - The transport protocol for the endpoint. Possible values are: 'Udp' or 'Tcp'. Possible values include: 'TransportProtocolUDP', 'TransportProtocolTCP' + Protocol TransportProtocol `json:"protocol,omitempty"` + // FrontendPortRangeStart - The first port number in the range of external ports that will be used to provide Inbound Nat to NICs associated with a load balancer. Acceptable values range between 1 and 65534. + FrontendPortRangeStart *int32 `json:"frontendPortRangeStart,omitempty"` + // FrontendPortRangeEnd - The last port number in the range of external ports that will be used to provide Inbound Nat to NICs associated with a load balancer. Acceptable values range between 1 and 65535. + FrontendPortRangeEnd *int32 `json:"frontendPortRangeEnd,omitempty"` + // BackendPort - The port used for internal connections on the endpoint. Acceptable values are between 1 and 65535. + BackendPort *int32 `json:"backendPort,omitempty"` + // ProvisioningState - Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// InboundNatRule inbound NAT rule of the load balancer. +type InboundNatRule struct { + *InboundNatRulePropertiesFormat `json:"properties,omitempty"` + // Name - Gets name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for InboundNatRule. +func (inr InboundNatRule) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if inr.InboundNatRulePropertiesFormat != nil { + objectMap["properties"] = inr.InboundNatRulePropertiesFormat + } + if inr.Name != nil { + objectMap["name"] = inr.Name + } + if inr.Etag != nil { + objectMap["etag"] = inr.Etag + } + if inr.ID != nil { + objectMap["id"] = inr.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for InboundNatRule struct. +func (inr *InboundNatRule) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var inboundNatRulePropertiesFormat InboundNatRulePropertiesFormat + err = json.Unmarshal(*v, &inboundNatRulePropertiesFormat) + if err != nil { + return err + } + inr.InboundNatRulePropertiesFormat = &inboundNatRulePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + inr.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + inr.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + inr.ID = &ID + } + } + } + + return nil +} + +// InboundNatRulePropertiesFormat properties of the inbound NAT rule. +type InboundNatRulePropertiesFormat struct { + // FrontendIPConfiguration - A reference to frontend IP addresses. + FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"` + // BackendIPConfiguration - A reference to a private IP address defined on a network interface of a VM. Traffic sent to the frontend port of each of the frontend IP configurations is forwarded to the backed IP. + BackendIPConfiguration *InterfaceIPConfiguration `json:"backendIPConfiguration,omitempty"` + // Protocol - The transport protocol for the endpoint. Possible values are: 'Udp' or 'Tcp'. Possible values include: 'TransportProtocolUDP', 'TransportProtocolTCP' + Protocol TransportProtocol `json:"protocol,omitempty"` + // FrontendPort - The port for the external endpoint. Port numbers for each rule must be unique within the Load Balancer. Acceptable values range from 1 to 65534. + FrontendPort *int32 `json:"frontendPort,omitempty"` + // BackendPort - The port used for the internal endpoint. Acceptable values range from 1 to 65535. + BackendPort *int32 `json:"backendPort,omitempty"` + // IdleTimeoutInMinutes - The timeout for the TCP idle connection. The value can be set between 4 and 30 minutes. The default value is 4 minutes. This element is only used when the protocol is set to TCP. + IdleTimeoutInMinutes *int32 `json:"idleTimeoutInMinutes,omitempty"` + // EnableFloatingIP - Configures a virtual machine's endpoint for the floating IP capability required to configure a SQL AlwaysOn Availability Group. This setting is required when using the SQL AlwaysOn Availability Groups in SQL server. This setting can't be changed after you create the endpoint. + EnableFloatingIP *bool `json:"enableFloatingIP,omitempty"` + // ProvisioningState - Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// Interface a network interface in a resource group. +type Interface struct { + autorest.Response `json:"-"` + *InterfacePropertiesFormat `json:"properties,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for Interface. +func (i Interface) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if i.InterfacePropertiesFormat != nil { + objectMap["properties"] = i.InterfacePropertiesFormat + } + if i.Etag != nil { + objectMap["etag"] = i.Etag + } + if i.ID != nil { + objectMap["id"] = i.ID + } + if i.Name != nil { + objectMap["name"] = i.Name + } + if i.Type != nil { + objectMap["type"] = i.Type + } + if i.Location != nil { + objectMap["location"] = i.Location + } + if i.Tags != nil { + objectMap["tags"] = i.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for Interface struct. +func (i *Interface) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var interfacePropertiesFormat InterfacePropertiesFormat + err = json.Unmarshal(*v, &interfacePropertiesFormat) + if err != nil { + return err + } + i.InterfacePropertiesFormat = &interfacePropertiesFormat + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + i.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + i.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + i.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + i.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + i.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + i.Tags = tags + } + } + } + + return nil +} + +// InterfaceDNSSettings DNS settings of a network interface. +type InterfaceDNSSettings struct { + // DNSServers - List of DNS servers IP addresses. Use 'AzureProvidedDNS' to switch to azure provided DNS resolution. 'AzureProvidedDNS' value cannot be combined with other IPs, it must be the only value in dnsServers collection. + DNSServers *[]string `json:"dnsServers,omitempty"` + // AppliedDNSServers - If the VM that uses this NIC is part of an Availability Set, then this list will have the union of all DNS servers from all NICs that are part of the Availability Set. This property is what is configured on each of those VMs. + AppliedDNSServers *[]string `json:"appliedDnsServers,omitempty"` + // InternalDNSNameLabel - Relative DNS name for this NIC used for internal communications between VMs in the same virtual network. + InternalDNSNameLabel *string `json:"internalDnsNameLabel,omitempty"` + // InternalFqdn - Fully qualified DNS name supporting internal communications between VMs in the same virtual network. + InternalFqdn *string `json:"internalFqdn,omitempty"` +} + +// InterfaceIPConfiguration iPConfiguration in a network interface. +type InterfaceIPConfiguration struct { + *InterfaceIPConfigurationPropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for InterfaceIPConfiguration. +func (iic InterfaceIPConfiguration) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if iic.InterfaceIPConfigurationPropertiesFormat != nil { + objectMap["properties"] = iic.InterfaceIPConfigurationPropertiesFormat + } + if iic.Name != nil { + objectMap["name"] = iic.Name + } + if iic.Etag != nil { + objectMap["etag"] = iic.Etag + } + if iic.ID != nil { + objectMap["id"] = iic.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for InterfaceIPConfiguration struct. +func (iic *InterfaceIPConfiguration) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var interfaceIPConfigurationPropertiesFormat InterfaceIPConfigurationPropertiesFormat + err = json.Unmarshal(*v, &interfaceIPConfigurationPropertiesFormat) + if err != nil { + return err + } + iic.InterfaceIPConfigurationPropertiesFormat = &interfaceIPConfigurationPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + iic.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + iic.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + iic.ID = &ID + } + } + } + + return nil +} + +// InterfaceIPConfigurationPropertiesFormat properties of IP configuration. +type InterfaceIPConfigurationPropertiesFormat struct { + // LoadBalancerBackendAddressPools - The reference of LoadBalancerBackendAddressPool resource. + LoadBalancerBackendAddressPools *[]BackendAddressPool `json:"loadBalancerBackendAddressPools,omitempty"` + // LoadBalancerInboundNatRules - A list of references of LoadBalancerInboundNatRules. + LoadBalancerInboundNatRules *[]InboundNatRule `json:"loadBalancerInboundNatRules,omitempty"` + PrivateIPAddress *string `json:"privateIPAddress,omitempty"` + // PrivateIPAllocationMethod - Defines how a private IP address is assigned. Possible values are: 'Static' and 'Dynamic'. Possible values include: 'Static', 'Dynamic' + PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"` + Subnet *Subnet `json:"subnet,omitempty"` + PublicIPAddress *PublicIPAddress `json:"publicIPAddress,omitempty"` + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// InterfaceListResult response for the ListNetworkInterface API service call. +type InterfaceListResult struct { + autorest.Response `json:"-"` + // Value - A list of network interfaces in a resource group. + Value *[]Interface `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// InterfaceListResultIterator provides access to a complete listing of Interface values. +type InterfaceListResultIterator struct { + i int + page InterfaceListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *InterfaceListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter InterfaceListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter InterfaceListResultIterator) Response() InterfaceListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter InterfaceListResultIterator) Value() Interface { + if !iter.page.NotDone() { + return Interface{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (ilr InterfaceListResult) IsEmpty() bool { + return ilr.Value == nil || len(*ilr.Value) == 0 +} + +// interfaceListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (ilr InterfaceListResult) interfaceListResultPreparer() (*http.Request, error) { + if ilr.NextLink == nil || len(to.String(ilr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(ilr.NextLink))) +} + +// InterfaceListResultPage contains a page of Interface values. +type InterfaceListResultPage struct { + fn func(InterfaceListResult) (InterfaceListResult, error) + ilr InterfaceListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *InterfaceListResultPage) Next() error { + next, err := page.fn(page.ilr) + if err != nil { + return err + } + page.ilr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page InterfaceListResultPage) NotDone() bool { + return !page.ilr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page InterfaceListResultPage) Response() InterfaceListResult { + return page.ilr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page InterfaceListResultPage) Values() []Interface { + if page.ilr.IsEmpty() { + return nil + } + return *page.ilr.Value +} + +// InterfacePropertiesFormat networkInterface properties. +type InterfacePropertiesFormat struct { + // VirtualMachine - The reference of a virtual machine. + VirtualMachine *SubResource `json:"virtualMachine,omitempty"` + // NetworkSecurityGroup - The reference of the NetworkSecurityGroup resource. + NetworkSecurityGroup *SecurityGroup `json:"networkSecurityGroup,omitempty"` + // IPConfigurations - A list of IPConfigurations of the network interface. + IPConfigurations *[]InterfaceIPConfiguration `json:"ipConfigurations,omitempty"` + // DNSSettings - The DNS settings in network interface. + DNSSettings *InterfaceDNSSettings `json:"dnsSettings,omitempty"` + // MacAddress - The MAC address of the network interface. + MacAddress *string `json:"macAddress,omitempty"` + // Primary - Gets whether this is a primary network interface on a virtual machine. + Primary *bool `json:"primary,omitempty"` + // EnableIPForwarding - Indicates whether IP forwarding is enabled on this network interface. + EnableIPForwarding *bool `json:"enableIPForwarding,omitempty"` + // ResourceGUID - The resource GUID property of the network interface resource. + ResourceGUID *string `json:"resourceGuid,omitempty"` + // ProvisioningState - The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// InterfacesCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type InterfacesCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future InterfacesCreateOrUpdateFuture) Result(client InterfacesClient) (i Interface, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.InterfacesCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return i, azure.NewAsyncOpIncompleteError("network.InterfacesCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + i, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.InterfacesCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.InterfacesCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + i, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.InterfacesCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// InterfacesDeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation. +type InterfacesDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future InterfacesDeleteFuture) Result(client InterfacesClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.InterfacesDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.InterfacesDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.InterfacesDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.InterfacesDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.InterfacesDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// IPConfiguration iPConfiguration +type IPConfiguration struct { + *IPConfigurationPropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for IPConfiguration. +func (ic IPConfiguration) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if ic.IPConfigurationPropertiesFormat != nil { + objectMap["properties"] = ic.IPConfigurationPropertiesFormat + } + if ic.Name != nil { + objectMap["name"] = ic.Name + } + if ic.Etag != nil { + objectMap["etag"] = ic.Etag + } + if ic.ID != nil { + objectMap["id"] = ic.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for IPConfiguration struct. +func (ic *IPConfiguration) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var IPConfigurationPropertiesFormat IPConfigurationPropertiesFormat + err = json.Unmarshal(*v, &IPConfigurationPropertiesFormat) + if err != nil { + return err + } + ic.IPConfigurationPropertiesFormat = &IPConfigurationPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + ic.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + ic.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + ic.ID = &ID + } + } + } + + return nil +} + +// IPConfigurationPropertiesFormat properties of IP configuration. +type IPConfigurationPropertiesFormat struct { + // PrivateIPAddress - The private IP address of the IP configuration. + PrivateIPAddress *string `json:"privateIPAddress,omitempty"` + // PrivateIPAllocationMethod - The private IP allocation method. Possible values are 'Static' and 'Dynamic'. Possible values include: 'Static', 'Dynamic' + PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"` + // Subnet - The reference of the subnet resource. + Subnet *Subnet `json:"subnet,omitempty"` + // PublicIPAddress - The reference of the public IP resource. + PublicIPAddress *PublicIPAddress `json:"publicIPAddress,omitempty"` + // ProvisioningState - Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// LoadBalancer loadBalancer resource +type LoadBalancer struct { + autorest.Response `json:"-"` + *LoadBalancerPropertiesFormat `json:"properties,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for LoadBalancer. +func (lb LoadBalancer) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if lb.LoadBalancerPropertiesFormat != nil { + objectMap["properties"] = lb.LoadBalancerPropertiesFormat + } + if lb.Etag != nil { + objectMap["etag"] = lb.Etag + } + if lb.ID != nil { + objectMap["id"] = lb.ID + } + if lb.Name != nil { + objectMap["name"] = lb.Name + } + if lb.Type != nil { + objectMap["type"] = lb.Type + } + if lb.Location != nil { + objectMap["location"] = lb.Location + } + if lb.Tags != nil { + objectMap["tags"] = lb.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for LoadBalancer struct. +func (lb *LoadBalancer) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var loadBalancerPropertiesFormat LoadBalancerPropertiesFormat + err = json.Unmarshal(*v, &loadBalancerPropertiesFormat) + if err != nil { + return err + } + lb.LoadBalancerPropertiesFormat = &loadBalancerPropertiesFormat + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + lb.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + lb.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + lb.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + lb.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + lb.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + lb.Tags = tags + } + } + } + + return nil +} + +// LoadBalancerListResult response for ListLoadBalancers API service call. +type LoadBalancerListResult struct { + autorest.Response `json:"-"` + // Value - A list of load balancers in a resource group. + Value *[]LoadBalancer `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// LoadBalancerListResultIterator provides access to a complete listing of LoadBalancer values. +type LoadBalancerListResultIterator struct { + i int + page LoadBalancerListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *LoadBalancerListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter LoadBalancerListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter LoadBalancerListResultIterator) Response() LoadBalancerListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter LoadBalancerListResultIterator) Value() LoadBalancer { + if !iter.page.NotDone() { + return LoadBalancer{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (lblr LoadBalancerListResult) IsEmpty() bool { + return lblr.Value == nil || len(*lblr.Value) == 0 +} + +// loadBalancerListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (lblr LoadBalancerListResult) loadBalancerListResultPreparer() (*http.Request, error) { + if lblr.NextLink == nil || len(to.String(lblr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(lblr.NextLink))) +} + +// LoadBalancerListResultPage contains a page of LoadBalancer values. +type LoadBalancerListResultPage struct { + fn func(LoadBalancerListResult) (LoadBalancerListResult, error) + lblr LoadBalancerListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *LoadBalancerListResultPage) Next() error { + next, err := page.fn(page.lblr) + if err != nil { + return err + } + page.lblr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page LoadBalancerListResultPage) NotDone() bool { + return !page.lblr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page LoadBalancerListResultPage) Response() LoadBalancerListResult { + return page.lblr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page LoadBalancerListResultPage) Values() []LoadBalancer { + if page.lblr.IsEmpty() { + return nil + } + return *page.lblr.Value +} + +// LoadBalancerPropertiesFormat properties of the load balancer. +type LoadBalancerPropertiesFormat struct { + // FrontendIPConfigurations - Object representing the frontend IPs to be used for the load balancer + FrontendIPConfigurations *[]FrontendIPConfiguration `json:"frontendIPConfigurations,omitempty"` + // BackendAddressPools - Collection of backend address pools used by a load balancer + BackendAddressPools *[]BackendAddressPool `json:"backendAddressPools,omitempty"` + // LoadBalancingRules - Object collection representing the load balancing rules Gets the provisioning + LoadBalancingRules *[]LoadBalancingRule `json:"loadBalancingRules,omitempty"` + // Probes - Collection of probe objects used in the load balancer + Probes *[]Probe `json:"probes,omitempty"` + // InboundNatRules - Collection of inbound NAT Rules used by a load balancer. Defining inbound NAT rules on your load balancer is mutually exclusive with defining an inbound NAT pool. Inbound NAT pools are referenced from virtual machine scale sets. NICs that are associated with individual virtual machines cannot reference an Inbound NAT pool. They have to reference individual inbound NAT rules. + InboundNatRules *[]InboundNatRule `json:"inboundNatRules,omitempty"` + // InboundNatPools - Defines an external port range for inbound NAT to a single backend port on NICs associated with a load balancer. Inbound NAT rules are created automatically for each NIC associated with the Load Balancer using an external port from this range. Defining an Inbound NAT pool on your Load Balancer is mutually exclusive with defining inbound Nat rules. Inbound NAT pools are referenced from virtual machine scale sets. NICs that are associated with individual virtual machines cannot reference an inbound NAT pool. They have to reference individual inbound NAT rules. + InboundNatPools *[]InboundNatPool `json:"inboundNatPools,omitempty"` + // OutboundNatRules - The outbound NAT rules. + OutboundNatRules *[]OutboundNatRule `json:"outboundNatRules,omitempty"` + // ResourceGUID - The resource GUID property of the load balancer resource. + ResourceGUID *string `json:"resourceGuid,omitempty"` + // ProvisioningState - Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// LoadBalancersCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type LoadBalancersCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future LoadBalancersCreateOrUpdateFuture) Result(client LoadBalancersClient) (lb LoadBalancer, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LoadBalancersCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return lb, azure.NewAsyncOpIncompleteError("network.LoadBalancersCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + lb, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LoadBalancersCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LoadBalancersCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + lb, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LoadBalancersCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// LoadBalancersDeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation. +type LoadBalancersDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future LoadBalancersDeleteFuture) Result(client LoadBalancersClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LoadBalancersDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.LoadBalancersDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LoadBalancersDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LoadBalancersDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LoadBalancersDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// LoadBalancingRule a loag balancing rule for a load balancer. +type LoadBalancingRule struct { + *LoadBalancingRulePropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for LoadBalancingRule. +func (lbr LoadBalancingRule) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if lbr.LoadBalancingRulePropertiesFormat != nil { + objectMap["properties"] = lbr.LoadBalancingRulePropertiesFormat + } + if lbr.Name != nil { + objectMap["name"] = lbr.Name + } + if lbr.Etag != nil { + objectMap["etag"] = lbr.Etag + } + if lbr.ID != nil { + objectMap["id"] = lbr.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for LoadBalancingRule struct. +func (lbr *LoadBalancingRule) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var loadBalancingRulePropertiesFormat LoadBalancingRulePropertiesFormat + err = json.Unmarshal(*v, &loadBalancingRulePropertiesFormat) + if err != nil { + return err + } + lbr.LoadBalancingRulePropertiesFormat = &loadBalancingRulePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + lbr.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + lbr.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + lbr.ID = &ID + } + } + } + + return nil +} + +// LoadBalancingRulePropertiesFormat properties of the load balancer. +type LoadBalancingRulePropertiesFormat struct { + // FrontendIPConfiguration - A reference to frontend IP addresses. + FrontendIPConfiguration *SubResource `json:"frontendIPConfiguration,omitempty"` + // BackendAddressPool - A reference to a pool of DIPs. Inbound traffic is randomly load balanced across IPs in the backend IPs. + BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"` + // Probe - The reference of the load balancer probe used by the load balancing rule. + Probe *SubResource `json:"probe,omitempty"` + // Protocol - The transport protocol for the external endpoint. Possible values are 'Udp' or 'Tcp'. Possible values include: 'TransportProtocolUDP', 'TransportProtocolTCP' + Protocol TransportProtocol `json:"protocol,omitempty"` + // LoadDistribution - The load distribution policy for this rule. Possible values are 'Default', 'SourceIP', and 'SourceIPProtocol'. Possible values include: 'Default', 'SourceIP', 'SourceIPProtocol' + LoadDistribution LoadDistribution `json:"loadDistribution,omitempty"` + // FrontendPort - The port for the external endpoint. Port numbers for each rule must be unique within the Load Balancer. Acceptable values are between 1 and 65534. + FrontendPort *int32 `json:"frontendPort,omitempty"` + // BackendPort - The port used for internal connections on the endpoint. Acceptable values are between 1 and 65535. + BackendPort *int32 `json:"backendPort,omitempty"` + // IdleTimeoutInMinutes - The timeout for the TCP idle connection. The value can be set between 4 and 30 minutes. The default value is 4 minutes. This element is only used when the protocol is set to TCP. + IdleTimeoutInMinutes *int32 `json:"idleTimeoutInMinutes,omitempty"` + // EnableFloatingIP - Configures a virtual machine's endpoint for the floating IP capability required to configure a SQL AlwaysOn Availability Group. This setting is required when using the SQL AlwaysOn Availability Groups in SQL server. This setting can't be changed after you create the endpoint. + EnableFloatingIP *bool `json:"enableFloatingIP,omitempty"` + // ProvisioningState - Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// LocalNetworkGateway a common class for general resource information +type LocalNetworkGateway struct { + autorest.Response `json:"-"` + *LocalNetworkGatewayPropertiesFormat `json:"properties,omitempty"` + // Etag - Gets a unique read-only string that changes whenever the resource is updated + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for LocalNetworkGateway. +func (lng LocalNetworkGateway) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if lng.LocalNetworkGatewayPropertiesFormat != nil { + objectMap["properties"] = lng.LocalNetworkGatewayPropertiesFormat + } + if lng.Etag != nil { + objectMap["etag"] = lng.Etag + } + if lng.ID != nil { + objectMap["id"] = lng.ID + } + if lng.Name != nil { + objectMap["name"] = lng.Name + } + if lng.Type != nil { + objectMap["type"] = lng.Type + } + if lng.Location != nil { + objectMap["location"] = lng.Location + } + if lng.Tags != nil { + objectMap["tags"] = lng.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for LocalNetworkGateway struct. +func (lng *LocalNetworkGateway) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var localNetworkGatewayPropertiesFormat LocalNetworkGatewayPropertiesFormat + err = json.Unmarshal(*v, &localNetworkGatewayPropertiesFormat) + if err != nil { + return err + } + lng.LocalNetworkGatewayPropertiesFormat = &localNetworkGatewayPropertiesFormat + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + lng.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + lng.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + lng.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + lng.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + lng.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + lng.Tags = tags + } + } + } + + return nil +} + +// LocalNetworkGatewayListResult response for ListLocalNetworkGateways API service call. +type LocalNetworkGatewayListResult struct { + autorest.Response `json:"-"` + // Value - A list of local network gateways that exists in a resource group. + Value *[]LocalNetworkGateway `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// LocalNetworkGatewayListResultIterator provides access to a complete listing of LocalNetworkGateway values. +type LocalNetworkGatewayListResultIterator struct { + i int + page LocalNetworkGatewayListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *LocalNetworkGatewayListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter LocalNetworkGatewayListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter LocalNetworkGatewayListResultIterator) Response() LocalNetworkGatewayListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter LocalNetworkGatewayListResultIterator) Value() LocalNetworkGateway { + if !iter.page.NotDone() { + return LocalNetworkGateway{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (lnglr LocalNetworkGatewayListResult) IsEmpty() bool { + return lnglr.Value == nil || len(*lnglr.Value) == 0 +} + +// localNetworkGatewayListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (lnglr LocalNetworkGatewayListResult) localNetworkGatewayListResultPreparer() (*http.Request, error) { + if lnglr.NextLink == nil || len(to.String(lnglr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(lnglr.NextLink))) +} + +// LocalNetworkGatewayListResultPage contains a page of LocalNetworkGateway values. +type LocalNetworkGatewayListResultPage struct { + fn func(LocalNetworkGatewayListResult) (LocalNetworkGatewayListResult, error) + lnglr LocalNetworkGatewayListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *LocalNetworkGatewayListResultPage) Next() error { + next, err := page.fn(page.lnglr) + if err != nil { + return err + } + page.lnglr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page LocalNetworkGatewayListResultPage) NotDone() bool { + return !page.lnglr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page LocalNetworkGatewayListResultPage) Response() LocalNetworkGatewayListResult { + return page.lnglr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page LocalNetworkGatewayListResultPage) Values() []LocalNetworkGateway { + if page.lnglr.IsEmpty() { + return nil + } + return *page.lnglr.Value +} + +// LocalNetworkGatewayPropertiesFormat localNetworkGateway properties +type LocalNetworkGatewayPropertiesFormat struct { + // LocalNetworkAddressSpace - Local network site address space. + LocalNetworkAddressSpace *AddressSpace `json:"localNetworkAddressSpace,omitempty"` + // GatewayIPAddress - IP address of local network gateway. + GatewayIPAddress *string `json:"gatewayIpAddress,omitempty"` + // BgpSettings - Local network gateway's BGP speaker settings. + BgpSettings *BgpSettings `json:"bgpSettings,omitempty"` + // ResourceGUID - The resource GUID property of the LocalNetworkGateway resource. + ResourceGUID *string `json:"resourceGuid,omitempty"` + // ProvisioningState - Gets or sets Provisioning state of the LocalNetworkGateway resource Updating/Deleting/Failed + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// LocalNetworkGatewaysCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a +// long-running operation. +type LocalNetworkGatewaysCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future LocalNetworkGatewaysCreateOrUpdateFuture) Result(client LocalNetworkGatewaysClient) (lng LocalNetworkGateway, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return lng, azure.NewAsyncOpIncompleteError("network.LocalNetworkGatewaysCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + lng, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + lng, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// LocalNetworkGatewaysDeleteFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type LocalNetworkGatewaysDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future LocalNetworkGatewaysDeleteFuture) Result(client LocalNetworkGatewaysClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.LocalNetworkGatewaysDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.LocalNetworkGatewaysDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// OutboundNatRule outbound NAT pool of the load balancer. +type OutboundNatRule struct { + *OutboundNatRulePropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for OutboundNatRule. +func (onr OutboundNatRule) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if onr.OutboundNatRulePropertiesFormat != nil { + objectMap["properties"] = onr.OutboundNatRulePropertiesFormat + } + if onr.Name != nil { + objectMap["name"] = onr.Name + } + if onr.Etag != nil { + objectMap["etag"] = onr.Etag + } + if onr.ID != nil { + objectMap["id"] = onr.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for OutboundNatRule struct. +func (onr *OutboundNatRule) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var outboundNatRulePropertiesFormat OutboundNatRulePropertiesFormat + err = json.Unmarshal(*v, &outboundNatRulePropertiesFormat) + if err != nil { + return err + } + onr.OutboundNatRulePropertiesFormat = &outboundNatRulePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + onr.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + onr.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + onr.ID = &ID + } + } + } + + return nil +} + +// OutboundNatRulePropertiesFormat outbound NAT pool of the load balancer. +type OutboundNatRulePropertiesFormat struct { + // AllocatedOutboundPorts - The number of outbound ports to be used for NAT. + AllocatedOutboundPorts *int32 `json:"allocatedOutboundPorts,omitempty"` + // FrontendIPConfigurations - The Frontend IP addresses of the load balancer. + FrontendIPConfigurations *[]SubResource `json:"frontendIPConfigurations,omitempty"` + // BackendAddressPool - A reference to a pool of DIPs. Outbound traffic is randomly load balanced across IPs in the backend IPs. + BackendAddressPool *SubResource `json:"backendAddressPool,omitempty"` + // ProvisioningState - Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// Probe a load balancer probe. +type Probe struct { + *ProbePropertiesFormat `json:"properties,omitempty"` + // Name - Gets name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for Probe. +func (p Probe) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if p.ProbePropertiesFormat != nil { + objectMap["properties"] = p.ProbePropertiesFormat + } + if p.Name != nil { + objectMap["name"] = p.Name + } + if p.Etag != nil { + objectMap["etag"] = p.Etag + } + if p.ID != nil { + objectMap["id"] = p.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for Probe struct. +func (p *Probe) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var probePropertiesFormat ProbePropertiesFormat + err = json.Unmarshal(*v, &probePropertiesFormat) + if err != nil { + return err + } + p.ProbePropertiesFormat = &probePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + p.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + p.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + p.ID = &ID + } + } + } + + return nil +} + +// ProbePropertiesFormat ... +type ProbePropertiesFormat struct { + // LoadBalancingRules - The load balancer rules that use this probe. + LoadBalancingRules *[]SubResource `json:"loadBalancingRules,omitempty"` + // Protocol - The protocol of the end point. Possible values are: 'Http' or 'Tcp'. If 'Tcp' is specified, a received ACK is required for the probe to be successful. If 'Http' is specified, a 200 OK response from the specifies URI is required for the probe to be successful. Possible values include: 'ProbeProtocolHTTP', 'ProbeProtocolTCP' + Protocol ProbeProtocol `json:"protocol,omitempty"` + // Port - The port for communicating the probe. Possible values range from 1 to 65535, inclusive. + Port *int32 `json:"port,omitempty"` + // IntervalInSeconds - The interval, in seconds, for how frequently to probe the endpoint for health status. Typically, the interval is slightly less than half the allocated timeout period (in seconds) which allows two full probes before taking the instance out of rotation. The default value is 15, the minimum value is 5. + IntervalInSeconds *int32 `json:"intervalInSeconds,omitempty"` + // NumberOfProbes - The number of probes where if no response, will result in stopping further traffic from being delivered to the endpoint. This values allows endpoints to be taken out of rotation faster or slower than the typical times used in Azure. + NumberOfProbes *int32 `json:"numberOfProbes,omitempty"` + // RequestPath - The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value. + RequestPath *string `json:"requestPath,omitempty"` + // ProvisioningState - Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// PublicIPAddress public IP address resource. +type PublicIPAddress struct { + autorest.Response `json:"-"` + *PublicIPAddressPropertiesFormat `json:"properties,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for PublicIPAddress. +func (pia PublicIPAddress) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if pia.PublicIPAddressPropertiesFormat != nil { + objectMap["properties"] = pia.PublicIPAddressPropertiesFormat + } + if pia.Etag != nil { + objectMap["etag"] = pia.Etag + } + if pia.ID != nil { + objectMap["id"] = pia.ID + } + if pia.Name != nil { + objectMap["name"] = pia.Name + } + if pia.Type != nil { + objectMap["type"] = pia.Type + } + if pia.Location != nil { + objectMap["location"] = pia.Location + } + if pia.Tags != nil { + objectMap["tags"] = pia.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for PublicIPAddress struct. +func (pia *PublicIPAddress) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var publicIPAddressPropertiesFormat PublicIPAddressPropertiesFormat + err = json.Unmarshal(*v, &publicIPAddressPropertiesFormat) + if err != nil { + return err + } + pia.PublicIPAddressPropertiesFormat = &publicIPAddressPropertiesFormat + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + pia.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + pia.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + pia.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + pia.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + pia.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + pia.Tags = tags + } + } + } + + return nil +} + +// PublicIPAddressDNSSettings contains FQDN of the DNS record associated with the public IP address +type PublicIPAddressDNSSettings struct { + // DomainNameLabel - Gets or sets the Domain name label.The concatenation of the domain name label and the regionalized DNS zone make up the fully qualified domain name associated with the public IP address. If a domain name label is specified, an A DNS record is created for the public IP in the Microsoft Azure DNS system. + DomainNameLabel *string `json:"domainNameLabel,omitempty"` + // Fqdn - Gets the FQDN, Fully qualified domain name of the A DNS record associated with the public IP. This is the concatenation of the domainNameLabel and the regionalized DNS zone. + Fqdn *string `json:"fqdn,omitempty"` + // ReverseFqdn - Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. + ReverseFqdn *string `json:"reverseFqdn,omitempty"` +} + +// PublicIPAddressesCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type PublicIPAddressesCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future PublicIPAddressesCreateOrUpdateFuture) Result(client PublicIPAddressesClient) (pia PublicIPAddress, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return pia, azure.NewAsyncOpIncompleteError("network.PublicIPAddressesCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + pia, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + pia, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// PublicIPAddressesDeleteFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type PublicIPAddressesDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future PublicIPAddressesDeleteFuture) Result(client PublicIPAddressesClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.PublicIPAddressesDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// PublicIPAddressListResult response for ListPublicIpAddresses API service call. +type PublicIPAddressListResult struct { + autorest.Response `json:"-"` + // Value - A list of public IP addresses that exists in a resource group. + Value *[]PublicIPAddress `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// PublicIPAddressListResultIterator provides access to a complete listing of PublicIPAddress values. +type PublicIPAddressListResultIterator struct { + i int + page PublicIPAddressListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *PublicIPAddressListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter PublicIPAddressListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter PublicIPAddressListResultIterator) Response() PublicIPAddressListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter PublicIPAddressListResultIterator) Value() PublicIPAddress { + if !iter.page.NotDone() { + return PublicIPAddress{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (pialr PublicIPAddressListResult) IsEmpty() bool { + return pialr.Value == nil || len(*pialr.Value) == 0 +} + +// publicIPAddressListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (pialr PublicIPAddressListResult) publicIPAddressListResultPreparer() (*http.Request, error) { + if pialr.NextLink == nil || len(to.String(pialr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(pialr.NextLink))) +} + +// PublicIPAddressListResultPage contains a page of PublicIPAddress values. +type PublicIPAddressListResultPage struct { + fn func(PublicIPAddressListResult) (PublicIPAddressListResult, error) + pialr PublicIPAddressListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *PublicIPAddressListResultPage) Next() error { + next, err := page.fn(page.pialr) + if err != nil { + return err + } + page.pialr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page PublicIPAddressListResultPage) NotDone() bool { + return !page.pialr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page PublicIPAddressListResultPage) Response() PublicIPAddressListResult { + return page.pialr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page PublicIPAddressListResultPage) Values() []PublicIPAddress { + if page.pialr.IsEmpty() { + return nil + } + return *page.pialr.Value +} + +// PublicIPAddressPropertiesFormat public IP address properties. +type PublicIPAddressPropertiesFormat struct { + // PublicIPAllocationMethod - The public IP allocation method. Possible values are: 'Static' and 'Dynamic'. Possible values include: 'Static', 'Dynamic' + PublicIPAllocationMethod IPAllocationMethod `json:"publicIPAllocationMethod,omitempty"` + IPConfiguration *IPConfiguration `json:"ipConfiguration,omitempty"` + // DNSSettings - The FQDN of the DNS record associated with the public IP address. + DNSSettings *PublicIPAddressDNSSettings `json:"dnsSettings,omitempty"` + IPAddress *string `json:"ipAddress,omitempty"` + // IdleTimeoutInMinutes - The idle timeout of the public IP address. + IdleTimeoutInMinutes *int32 `json:"idleTimeoutInMinutes,omitempty"` + // ResourceGUID - The resource GUID property of the public IP resource. + ResourceGUID *string `json:"resourceGuid,omitempty"` + // ProvisioningState - The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// Resource azure resource manager resource properties. +type Resource struct { + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for Resource. +func (r Resource) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if r.ID != nil { + objectMap["id"] = r.ID + } + if r.Name != nil { + objectMap["name"] = r.Name + } + if r.Type != nil { + objectMap["type"] = r.Type + } + if r.Location != nil { + objectMap["location"] = r.Location + } + if r.Tags != nil { + objectMap["tags"] = r.Tags + } + return json.Marshal(objectMap) +} + +// Route route resource +type Route struct { + autorest.Response `json:"-"` + *RoutePropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for Route. +func (r Route) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if r.RoutePropertiesFormat != nil { + objectMap["properties"] = r.RoutePropertiesFormat + } + if r.Name != nil { + objectMap["name"] = r.Name + } + if r.Etag != nil { + objectMap["etag"] = r.Etag + } + if r.ID != nil { + objectMap["id"] = r.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for Route struct. +func (r *Route) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var routePropertiesFormat RoutePropertiesFormat + err = json.Unmarshal(*v, &routePropertiesFormat) + if err != nil { + return err + } + r.RoutePropertiesFormat = &routePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + r.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + r.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + r.ID = &ID + } + } + } + + return nil +} + +// RouteListResult response for the ListRoute API service call +type RouteListResult struct { + autorest.Response `json:"-"` + // Value - Gets a list of routes in a resource group. + Value *[]Route `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// RouteListResultIterator provides access to a complete listing of Route values. +type RouteListResultIterator struct { + i int + page RouteListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *RouteListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter RouteListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter RouteListResultIterator) Response() RouteListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter RouteListResultIterator) Value() Route { + if !iter.page.NotDone() { + return Route{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (rlr RouteListResult) IsEmpty() bool { + return rlr.Value == nil || len(*rlr.Value) == 0 +} + +// routeListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (rlr RouteListResult) routeListResultPreparer() (*http.Request, error) { + if rlr.NextLink == nil || len(to.String(rlr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(rlr.NextLink))) +} + +// RouteListResultPage contains a page of Route values. +type RouteListResultPage struct { + fn func(RouteListResult) (RouteListResult, error) + rlr RouteListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *RouteListResultPage) Next() error { + next, err := page.fn(page.rlr) + if err != nil { + return err + } + page.rlr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page RouteListResultPage) NotDone() bool { + return !page.rlr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page RouteListResultPage) Response() RouteListResult { + return page.rlr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page RouteListResultPage) Values() []Route { + if page.rlr.IsEmpty() { + return nil + } + return *page.rlr.Value +} + +// RoutePropertiesFormat route resource +type RoutePropertiesFormat struct { + // AddressPrefix - The destination CIDR to which the route applies. + AddressPrefix *string `json:"addressPrefix,omitempty"` + // NextHopType - The type of Azure hop the packet should be sent to. Possible values are: 'VirtualNetworkGateway', 'VnetLocal', 'Internet', 'VirtualAppliance', and 'None'. Possible values include: 'RouteNextHopTypeVirtualNetworkGateway', 'RouteNextHopTypeVnetLocal', 'RouteNextHopTypeInternet', 'RouteNextHopTypeVirtualAppliance', 'RouteNextHopTypeNone' + NextHopType RouteNextHopType `json:"nextHopType,omitempty"` + // NextHopIPAddress - The IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance. + NextHopIPAddress *string `json:"nextHopIpAddress,omitempty"` + // ProvisioningState - The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// RoutesCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running operation. +type RoutesCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future RoutesCreateOrUpdateFuture) Result(client RoutesClient) (r Route, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RoutesCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return r, azure.NewAsyncOpIncompleteError("network.RoutesCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + r, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RoutesCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RoutesCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + r, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RoutesCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// RoutesDeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation. +type RoutesDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future RoutesDeleteFuture) Result(client RoutesClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RoutesDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.RoutesDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RoutesDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RoutesDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RoutesDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// RouteTable route table resource. +type RouteTable struct { + autorest.Response `json:"-"` + *RouteTablePropertiesFormat `json:"properties,omitempty"` + // Etag - Gets a unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for RouteTable. +func (rt RouteTable) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if rt.RouteTablePropertiesFormat != nil { + objectMap["properties"] = rt.RouteTablePropertiesFormat + } + if rt.Etag != nil { + objectMap["etag"] = rt.Etag + } + if rt.ID != nil { + objectMap["id"] = rt.ID + } + if rt.Name != nil { + objectMap["name"] = rt.Name + } + if rt.Type != nil { + objectMap["type"] = rt.Type + } + if rt.Location != nil { + objectMap["location"] = rt.Location + } + if rt.Tags != nil { + objectMap["tags"] = rt.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for RouteTable struct. +func (rt *RouteTable) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var routeTablePropertiesFormat RouteTablePropertiesFormat + err = json.Unmarshal(*v, &routeTablePropertiesFormat) + if err != nil { + return err + } + rt.RouteTablePropertiesFormat = &routeTablePropertiesFormat + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + rt.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + rt.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + rt.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + rt.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + rt.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + rt.Tags = tags + } + } + } + + return nil +} + +// RouteTableListResult response for the ListRouteTable API service call. +type RouteTableListResult struct { + autorest.Response `json:"-"` + // Value - Gets a list of route tables in a resource group. + Value *[]RouteTable `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// RouteTableListResultIterator provides access to a complete listing of RouteTable values. +type RouteTableListResultIterator struct { + i int + page RouteTableListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *RouteTableListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter RouteTableListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter RouteTableListResultIterator) Response() RouteTableListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter RouteTableListResultIterator) Value() RouteTable { + if !iter.page.NotDone() { + return RouteTable{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (rtlr RouteTableListResult) IsEmpty() bool { + return rtlr.Value == nil || len(*rtlr.Value) == 0 +} + +// routeTableListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (rtlr RouteTableListResult) routeTableListResultPreparer() (*http.Request, error) { + if rtlr.NextLink == nil || len(to.String(rtlr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(rtlr.NextLink))) +} + +// RouteTableListResultPage contains a page of RouteTable values. +type RouteTableListResultPage struct { + fn func(RouteTableListResult) (RouteTableListResult, error) + rtlr RouteTableListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *RouteTableListResultPage) Next() error { + next, err := page.fn(page.rtlr) + if err != nil { + return err + } + page.rtlr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page RouteTableListResultPage) NotDone() bool { + return !page.rtlr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page RouteTableListResultPage) Response() RouteTableListResult { + return page.rtlr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page RouteTableListResultPage) Values() []RouteTable { + if page.rtlr.IsEmpty() { + return nil + } + return *page.rtlr.Value +} + +// RouteTablePropertiesFormat route Table resource +type RouteTablePropertiesFormat struct { + // Routes - Collection of routes contained within a route table. + Routes *[]Route `json:"routes,omitempty"` + // Subnets - A collection of references to subnets. + Subnets *[]Subnet `json:"subnets,omitempty"` + // ProvisioningState - The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// RouteTablesCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type RouteTablesCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future RouteTablesCreateOrUpdateFuture) Result(client RouteTablesClient) (rt RouteTable, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RouteTablesCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return rt, azure.NewAsyncOpIncompleteError("network.RouteTablesCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + rt, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RouteTablesCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RouteTablesCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + rt, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RouteTablesCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// RouteTablesDeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation. +type RouteTablesDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future RouteTablesDeleteFuture) Result(client RouteTablesClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RouteTablesDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.RouteTablesDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RouteTablesDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RouteTablesDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.RouteTablesDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// SecurityGroup networkSecurityGroup resource. +type SecurityGroup struct { + autorest.Response `json:"-"` + *SecurityGroupPropertiesFormat `json:"properties,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for SecurityGroup. +func (sg SecurityGroup) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if sg.SecurityGroupPropertiesFormat != nil { + objectMap["properties"] = sg.SecurityGroupPropertiesFormat + } + if sg.Etag != nil { + objectMap["etag"] = sg.Etag + } + if sg.ID != nil { + objectMap["id"] = sg.ID + } + if sg.Name != nil { + objectMap["name"] = sg.Name + } + if sg.Type != nil { + objectMap["type"] = sg.Type + } + if sg.Location != nil { + objectMap["location"] = sg.Location + } + if sg.Tags != nil { + objectMap["tags"] = sg.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for SecurityGroup struct. +func (sg *SecurityGroup) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var securityGroupPropertiesFormat SecurityGroupPropertiesFormat + err = json.Unmarshal(*v, &securityGroupPropertiesFormat) + if err != nil { + return err + } + sg.SecurityGroupPropertiesFormat = &securityGroupPropertiesFormat + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + sg.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + sg.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + sg.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + sg.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + sg.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + sg.Tags = tags + } + } + } + + return nil +} + +// SecurityGroupListResult response for ListNetworkSecurityGroups API service call. +type SecurityGroupListResult struct { + autorest.Response `json:"-"` + // Value - A list of NetworkSecurityGroup resources. + Value *[]SecurityGroup `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// SecurityGroupListResultIterator provides access to a complete listing of SecurityGroup values. +type SecurityGroupListResultIterator struct { + i int + page SecurityGroupListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *SecurityGroupListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter SecurityGroupListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter SecurityGroupListResultIterator) Response() SecurityGroupListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter SecurityGroupListResultIterator) Value() SecurityGroup { + if !iter.page.NotDone() { + return SecurityGroup{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (sglr SecurityGroupListResult) IsEmpty() bool { + return sglr.Value == nil || len(*sglr.Value) == 0 +} + +// securityGroupListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (sglr SecurityGroupListResult) securityGroupListResultPreparer() (*http.Request, error) { + if sglr.NextLink == nil || len(to.String(sglr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(sglr.NextLink))) +} + +// SecurityGroupListResultPage contains a page of SecurityGroup values. +type SecurityGroupListResultPage struct { + fn func(SecurityGroupListResult) (SecurityGroupListResult, error) + sglr SecurityGroupListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *SecurityGroupListResultPage) Next() error { + next, err := page.fn(page.sglr) + if err != nil { + return err + } + page.sglr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page SecurityGroupListResultPage) NotDone() bool { + return !page.sglr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page SecurityGroupListResultPage) Response() SecurityGroupListResult { + return page.sglr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page SecurityGroupListResultPage) Values() []SecurityGroup { + if page.sglr.IsEmpty() { + return nil + } + return *page.sglr.Value +} + +// SecurityGroupPropertiesFormat network Security Group resource. +type SecurityGroupPropertiesFormat struct { + // SecurityRules - A collection of security rules of the network security group. + SecurityRules *[]SecurityRule `json:"securityRules,omitempty"` + // DefaultSecurityRules - The default security rules of network security group. + DefaultSecurityRules *[]SecurityRule `json:"defaultSecurityRules,omitempty"` + // NetworkInterfaces - A collection of references to network interfaces. + NetworkInterfaces *[]Interface `json:"networkInterfaces,omitempty"` + // Subnets - A collection of references to subnets. + Subnets *[]Subnet `json:"subnets,omitempty"` + // ResourceGUID - The resource GUID property of the network security group resource. + ResourceGUID *string `json:"resourceGuid,omitempty"` + // ProvisioningState - The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// SecurityGroupsCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type SecurityGroupsCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future SecurityGroupsCreateOrUpdateFuture) Result(client SecurityGroupsClient) (sg SecurityGroup, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityGroupsCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return sg, azure.NewAsyncOpIncompleteError("network.SecurityGroupsCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + sg, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityGroupsCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityGroupsCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + sg, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityGroupsCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// SecurityGroupsDeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation. +type SecurityGroupsDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future SecurityGroupsDeleteFuture) Result(client SecurityGroupsClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityGroupsDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.SecurityGroupsDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityGroupsDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityGroupsDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityGroupsDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// SecurityRule network security rule. +type SecurityRule struct { + autorest.Response `json:"-"` + *SecurityRulePropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for SecurityRule. +func (sr SecurityRule) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if sr.SecurityRulePropertiesFormat != nil { + objectMap["properties"] = sr.SecurityRulePropertiesFormat + } + if sr.Name != nil { + objectMap["name"] = sr.Name + } + if sr.Etag != nil { + objectMap["etag"] = sr.Etag + } + if sr.ID != nil { + objectMap["id"] = sr.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for SecurityRule struct. +func (sr *SecurityRule) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var securityRulePropertiesFormat SecurityRulePropertiesFormat + err = json.Unmarshal(*v, &securityRulePropertiesFormat) + if err != nil { + return err + } + sr.SecurityRulePropertiesFormat = &securityRulePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + sr.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + sr.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + sr.ID = &ID + } + } + } + + return nil +} + +// SecurityRuleListResult response for ListSecurityRule API service call. Retrieves all security rules that belongs +// to a network security group. +type SecurityRuleListResult struct { + autorest.Response `json:"-"` + // Value - The security rules in a network security group. + Value *[]SecurityRule `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// SecurityRuleListResultIterator provides access to a complete listing of SecurityRule values. +type SecurityRuleListResultIterator struct { + i int + page SecurityRuleListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *SecurityRuleListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter SecurityRuleListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter SecurityRuleListResultIterator) Response() SecurityRuleListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter SecurityRuleListResultIterator) Value() SecurityRule { + if !iter.page.NotDone() { + return SecurityRule{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (srlr SecurityRuleListResult) IsEmpty() bool { + return srlr.Value == nil || len(*srlr.Value) == 0 +} + +// securityRuleListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (srlr SecurityRuleListResult) securityRuleListResultPreparer() (*http.Request, error) { + if srlr.NextLink == nil || len(to.String(srlr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(srlr.NextLink))) +} + +// SecurityRuleListResultPage contains a page of SecurityRule values. +type SecurityRuleListResultPage struct { + fn func(SecurityRuleListResult) (SecurityRuleListResult, error) + srlr SecurityRuleListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *SecurityRuleListResultPage) Next() error { + next, err := page.fn(page.srlr) + if err != nil { + return err + } + page.srlr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page SecurityRuleListResultPage) NotDone() bool { + return !page.srlr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page SecurityRuleListResultPage) Response() SecurityRuleListResult { + return page.srlr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page SecurityRuleListResultPage) Values() []SecurityRule { + if page.srlr.IsEmpty() { + return nil + } + return *page.srlr.Value +} + +// SecurityRulePropertiesFormat ... +type SecurityRulePropertiesFormat struct { + // Description - A description for this rule. Restricted to 140 chars. + Description *string `json:"description,omitempty"` + // Protocol - Network protocol this rule applies to. Possible values are 'Tcp', 'Udp', and '*'. Possible values include: 'TCP', 'UDP', 'Asterisk' + Protocol SecurityRuleProtocol `json:"protocol,omitempty"` + // SourcePortRange - The source port or range. Integer or range between 0 and 65535. Asterix '*' can also be used to match all ports. + SourcePortRange *string `json:"sourcePortRange,omitempty"` + // DestinationPortRange - The destination port or range. Integer or range between 0 and 65535. Asterix '*' can also be used to match all ports. + DestinationPortRange *string `json:"destinationPortRange,omitempty"` + // SourceAddressPrefix - The CIDR or source IP range. Asterix '*' can also be used to match all source IPs. Default tags such as 'VirtualNetwork', 'AzureLoadBalancer' and 'Internet' can also be used. If this is an ingress rule, specifies where network traffic originates from. + SourceAddressPrefix *string `json:"sourceAddressPrefix,omitempty"` + // DestinationAddressPrefix - The destination address prefix. CIDR or source IP range. Asterix '*' can also be used to match all source IPs. Default tags such as 'VirtualNetwork', 'AzureLoadBalancer' and 'Internet' can also be used. + DestinationAddressPrefix *string `json:"destinationAddressPrefix,omitempty"` + // Access - The network traffic is allowed or denied. Possible values are: 'Allow' and 'Deny'. Possible values include: 'Allow', 'Deny' + Access SecurityRuleAccess `json:"access,omitempty"` + // Priority - The priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. + Priority *int32 `json:"priority,omitempty"` + // Direction - The direction of the rule. The direction specifies if rule will be evaluated on incoming or outcoming traffic. Possible values are: 'Inbound' and 'Outbound'. Possible values include: 'Inbound', 'Outbound' + Direction SecurityRuleDirection `json:"direction,omitempty"` + // ProvisioningState - The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// SecurityRulesCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type SecurityRulesCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future SecurityRulesCreateOrUpdateFuture) Result(client SecurityRulesClient) (sr SecurityRule, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityRulesCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return sr, azure.NewAsyncOpIncompleteError("network.SecurityRulesCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + sr, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityRulesCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityRulesCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + sr, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityRulesCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// SecurityRulesDeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation. +type SecurityRulesDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future SecurityRulesDeleteFuture) Result(client SecurityRulesClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityRulesDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.SecurityRulesDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityRulesDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityRulesDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SecurityRulesDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// String ... +type String struct { + autorest.Response `json:"-"` + Value *string `json:"value,omitempty"` +} + +// Subnet subnet in a virtual network resource. +type Subnet struct { + autorest.Response `json:"-"` + *SubnetPropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for Subnet. +func (s Subnet) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if s.SubnetPropertiesFormat != nil { + objectMap["properties"] = s.SubnetPropertiesFormat + } + if s.Name != nil { + objectMap["name"] = s.Name + } + if s.Etag != nil { + objectMap["etag"] = s.Etag + } + if s.ID != nil { + objectMap["id"] = s.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for Subnet struct. +func (s *Subnet) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var subnetPropertiesFormat SubnetPropertiesFormat + err = json.Unmarshal(*v, &subnetPropertiesFormat) + if err != nil { + return err + } + s.SubnetPropertiesFormat = &subnetPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + s.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + s.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + s.ID = &ID + } + } + } + + return nil +} + +// SubnetListResult response for ListSubnets API service callRetrieves all subnet that belongs to a virtual network +type SubnetListResult struct { + autorest.Response `json:"-"` + // Value - The subnets in a virtual network. + Value *[]Subnet `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// SubnetListResultIterator provides access to a complete listing of Subnet values. +type SubnetListResultIterator struct { + i int + page SubnetListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *SubnetListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter SubnetListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter SubnetListResultIterator) Response() SubnetListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter SubnetListResultIterator) Value() Subnet { + if !iter.page.NotDone() { + return Subnet{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (slr SubnetListResult) IsEmpty() bool { + return slr.Value == nil || len(*slr.Value) == 0 +} + +// subnetListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (slr SubnetListResult) subnetListResultPreparer() (*http.Request, error) { + if slr.NextLink == nil || len(to.String(slr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(slr.NextLink))) +} + +// SubnetListResultPage contains a page of Subnet values. +type SubnetListResultPage struct { + fn func(SubnetListResult) (SubnetListResult, error) + slr SubnetListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *SubnetListResultPage) Next() error { + next, err := page.fn(page.slr) + if err != nil { + return err + } + page.slr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page SubnetListResultPage) NotDone() bool { + return !page.slr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page SubnetListResultPage) Response() SubnetListResult { + return page.slr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page SubnetListResultPage) Values() []Subnet { + if page.slr.IsEmpty() { + return nil + } + return *page.slr.Value +} + +// SubnetPropertiesFormat ... +type SubnetPropertiesFormat struct { + // AddressPrefix - The address prefix for the subnet. + AddressPrefix *string `json:"addressPrefix,omitempty"` + // NetworkSecurityGroup - The reference of the NetworkSecurityGroup resource. + NetworkSecurityGroup *SecurityGroup `json:"networkSecurityGroup,omitempty"` + // RouteTable - The reference of the RouteTable resource. + RouteTable *RouteTable `json:"routeTable,omitempty"` + // IPConfigurations - Gets an array of references to the network interface IP configurations using subnet. + IPConfigurations *[]IPConfiguration `json:"ipConfigurations,omitempty"` + // ProvisioningState - The provisioning state of the resource. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// SubnetsCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type SubnetsCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future SubnetsCreateOrUpdateFuture) Result(client SubnetsClient) (s Subnet, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SubnetsCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return s, azure.NewAsyncOpIncompleteError("network.SubnetsCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + s, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SubnetsCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SubnetsCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + s, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SubnetsCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// SubnetsDeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation. +type SubnetsDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future SubnetsDeleteFuture) Result(client SubnetsClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SubnetsDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.SubnetsDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SubnetsDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SubnetsDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.SubnetsDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// SubResource azure resource manager sub resource properties. +type SubResource struct { + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// Usage describes network resource usage. +type Usage struct { + // Unit - An enum describing the unit of measurement. + Unit *string `json:"unit,omitempty"` + // CurrentValue - The current value of the usage. + CurrentValue *int64 `json:"currentValue,omitempty"` + // Limit - The limit of usage. + Limit *int64 `json:"limit,omitempty"` + // Name - The name of the type of usage. + Name *UsageName `json:"name,omitempty"` +} + +// UsageName the usage names. +type UsageName struct { + // Value - A string describing the resource name. + Value *string `json:"value,omitempty"` + // LocalizedValue - A localized string describing the resource name. + LocalizedValue *string `json:"localizedValue,omitempty"` +} + +// UsagesListResult the list usages operation response. +type UsagesListResult struct { + autorest.Response `json:"-"` + // Value - The list network resource usages. + Value *[]Usage `json:"value,omitempty"` + // NextLink - URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// UsagesListResultIterator provides access to a complete listing of Usage values. +type UsagesListResultIterator struct { + i int + page UsagesListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *UsagesListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter UsagesListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter UsagesListResultIterator) Response() UsagesListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter UsagesListResultIterator) Value() Usage { + if !iter.page.NotDone() { + return Usage{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (ulr UsagesListResult) IsEmpty() bool { + return ulr.Value == nil || len(*ulr.Value) == 0 +} + +// usagesListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (ulr UsagesListResult) usagesListResultPreparer() (*http.Request, error) { + if ulr.NextLink == nil || len(to.String(ulr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(ulr.NextLink))) +} + +// UsagesListResultPage contains a page of Usage values. +type UsagesListResultPage struct { + fn func(UsagesListResult) (UsagesListResult, error) + ulr UsagesListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *UsagesListResultPage) Next() error { + next, err := page.fn(page.ulr) + if err != nil { + return err + } + page.ulr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page UsagesListResultPage) NotDone() bool { + return !page.ulr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page UsagesListResultPage) Response() UsagesListResult { + return page.ulr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page UsagesListResultPage) Values() []Usage { + if page.ulr.IsEmpty() { + return nil + } + return *page.ulr.Value +} + +// VirtualNetwork virtual Network resource. +type VirtualNetwork struct { + autorest.Response `json:"-"` + *VirtualNetworkPropertiesFormat `json:"properties,omitempty"` + // Etag - Gets a unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for VirtualNetwork. +func (vn VirtualNetwork) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if vn.VirtualNetworkPropertiesFormat != nil { + objectMap["properties"] = vn.VirtualNetworkPropertiesFormat + } + if vn.Etag != nil { + objectMap["etag"] = vn.Etag + } + if vn.ID != nil { + objectMap["id"] = vn.ID + } + if vn.Name != nil { + objectMap["name"] = vn.Name + } + if vn.Type != nil { + objectMap["type"] = vn.Type + } + if vn.Location != nil { + objectMap["location"] = vn.Location + } + if vn.Tags != nil { + objectMap["tags"] = vn.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for VirtualNetwork struct. +func (vn *VirtualNetwork) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var virtualNetworkPropertiesFormat VirtualNetworkPropertiesFormat + err = json.Unmarshal(*v, &virtualNetworkPropertiesFormat) + if err != nil { + return err + } + vn.VirtualNetworkPropertiesFormat = &virtualNetworkPropertiesFormat + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + vn.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + vn.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + vn.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + vn.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + vn.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + vn.Tags = tags + } + } + } + + return nil +} + +// VirtualNetworkGateway a common class for general resource information +type VirtualNetworkGateway struct { + autorest.Response `json:"-"` + *VirtualNetworkGatewayPropertiesFormat `json:"properties,omitempty"` + // Etag - Gets a unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for VirtualNetworkGateway. +func (vng VirtualNetworkGateway) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if vng.VirtualNetworkGatewayPropertiesFormat != nil { + objectMap["properties"] = vng.VirtualNetworkGatewayPropertiesFormat + } + if vng.Etag != nil { + objectMap["etag"] = vng.Etag + } + if vng.ID != nil { + objectMap["id"] = vng.ID + } + if vng.Name != nil { + objectMap["name"] = vng.Name + } + if vng.Type != nil { + objectMap["type"] = vng.Type + } + if vng.Location != nil { + objectMap["location"] = vng.Location + } + if vng.Tags != nil { + objectMap["tags"] = vng.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for VirtualNetworkGateway struct. +func (vng *VirtualNetworkGateway) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var virtualNetworkGatewayPropertiesFormat VirtualNetworkGatewayPropertiesFormat + err = json.Unmarshal(*v, &virtualNetworkGatewayPropertiesFormat) + if err != nil { + return err + } + vng.VirtualNetworkGatewayPropertiesFormat = &virtualNetworkGatewayPropertiesFormat + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + vng.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + vng.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + vng.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + vng.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + vng.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + vng.Tags = tags + } + } + } + + return nil +} + +// VirtualNetworkGatewayConnection a common class for general resource information +type VirtualNetworkGatewayConnection struct { + autorest.Response `json:"-"` + *VirtualNetworkGatewayConnectionPropertiesFormat `json:"properties,omitempty"` + // Etag - Gets a unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` + // Name - Resource name. + Name *string `json:"name,omitempty"` + // Type - Resource type. + Type *string `json:"type,omitempty"` + // Location - Resource location. + Location *string `json:"location,omitempty"` + // Tags - Resource tags. + Tags map[string]*string `json:"tags"` +} + +// MarshalJSON is the custom marshaler for VirtualNetworkGatewayConnection. +func (vngc VirtualNetworkGatewayConnection) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if vngc.VirtualNetworkGatewayConnectionPropertiesFormat != nil { + objectMap["properties"] = vngc.VirtualNetworkGatewayConnectionPropertiesFormat + } + if vngc.Etag != nil { + objectMap["etag"] = vngc.Etag + } + if vngc.ID != nil { + objectMap["id"] = vngc.ID + } + if vngc.Name != nil { + objectMap["name"] = vngc.Name + } + if vngc.Type != nil { + objectMap["type"] = vngc.Type + } + if vngc.Location != nil { + objectMap["location"] = vngc.Location + } + if vngc.Tags != nil { + objectMap["tags"] = vngc.Tags + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for VirtualNetworkGatewayConnection struct. +func (vngc *VirtualNetworkGatewayConnection) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var virtualNetworkGatewayConnectionPropertiesFormat VirtualNetworkGatewayConnectionPropertiesFormat + err = json.Unmarshal(*v, &virtualNetworkGatewayConnectionPropertiesFormat) + if err != nil { + return err + } + vngc.VirtualNetworkGatewayConnectionPropertiesFormat = &virtualNetworkGatewayConnectionPropertiesFormat + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + vngc.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + vngc.ID = &ID + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + vngc.Name = &name + } + case "type": + if v != nil { + var typeVar string + err = json.Unmarshal(*v, &typeVar) + if err != nil { + return err + } + vngc.Type = &typeVar + } + case "location": + if v != nil { + var location string + err = json.Unmarshal(*v, &location) + if err != nil { + return err + } + vngc.Location = &location + } + case "tags": + if v != nil { + var tags map[string]*string + err = json.Unmarshal(*v, &tags) + if err != nil { + return err + } + vngc.Tags = tags + } + } + } + + return nil +} + +// VirtualNetworkGatewayConnectionListResult response for the ListVirtualNetworkGatewayConnections API service call +type VirtualNetworkGatewayConnectionListResult struct { + autorest.Response `json:"-"` + // Value - Gets a list of VirtualNetworkGatewayConnection resources that exists in a resource group. + Value *[]VirtualNetworkGatewayConnection `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// VirtualNetworkGatewayConnectionListResultIterator provides access to a complete listing of +// VirtualNetworkGatewayConnection values. +type VirtualNetworkGatewayConnectionListResultIterator struct { + i int + page VirtualNetworkGatewayConnectionListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *VirtualNetworkGatewayConnectionListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter VirtualNetworkGatewayConnectionListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter VirtualNetworkGatewayConnectionListResultIterator) Response() VirtualNetworkGatewayConnectionListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter VirtualNetworkGatewayConnectionListResultIterator) Value() VirtualNetworkGatewayConnection { + if !iter.page.NotDone() { + return VirtualNetworkGatewayConnection{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (vngclr VirtualNetworkGatewayConnectionListResult) IsEmpty() bool { + return vngclr.Value == nil || len(*vngclr.Value) == 0 +} + +// virtualNetworkGatewayConnectionListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (vngclr VirtualNetworkGatewayConnectionListResult) virtualNetworkGatewayConnectionListResultPreparer() (*http.Request, error) { + if vngclr.NextLink == nil || len(to.String(vngclr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(vngclr.NextLink))) +} + +// VirtualNetworkGatewayConnectionListResultPage contains a page of VirtualNetworkGatewayConnection values. +type VirtualNetworkGatewayConnectionListResultPage struct { + fn func(VirtualNetworkGatewayConnectionListResult) (VirtualNetworkGatewayConnectionListResult, error) + vngclr VirtualNetworkGatewayConnectionListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *VirtualNetworkGatewayConnectionListResultPage) Next() error { + next, err := page.fn(page.vngclr) + if err != nil { + return err + } + page.vngclr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page VirtualNetworkGatewayConnectionListResultPage) NotDone() bool { + return !page.vngclr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page VirtualNetworkGatewayConnectionListResultPage) Response() VirtualNetworkGatewayConnectionListResult { + return page.vngclr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page VirtualNetworkGatewayConnectionListResultPage) Values() []VirtualNetworkGatewayConnection { + if page.vngclr.IsEmpty() { + return nil + } + return *page.vngclr.Value +} + +// VirtualNetworkGatewayConnectionPropertiesFormat virtualNetworkGatewayConnection properties +type VirtualNetworkGatewayConnectionPropertiesFormat struct { + // AuthorizationKey - The authorizationKey. + AuthorizationKey *string `json:"authorizationKey,omitempty"` + VirtualNetworkGateway1 *VirtualNetworkGateway `json:"virtualNetworkGateway1,omitempty"` + VirtualNetworkGateway2 *VirtualNetworkGateway `json:"virtualNetworkGateway2,omitempty"` + LocalNetworkGateway2 *LocalNetworkGateway `json:"localNetworkGateway2,omitempty"` + // ConnectionType - Gateway connection type. Possible values are: 'Ipsec','Vnet2Vnet','ExpressRoute', and 'VPNClient. Possible values include: 'IPsec', 'Vnet2Vnet', 'ExpressRoute', 'VPNClient' + ConnectionType VirtualNetworkGatewayConnectionType `json:"connectionType,omitempty"` + // RoutingWeight - The routing weight. + RoutingWeight *int32 `json:"routingWeight,omitempty"` + // SharedKey - The IPSec shared key. + SharedKey *string `json:"sharedKey,omitempty"` + // ConnectionStatus - Virtual network Gateway connection status. Possible values are 'Unknown', 'Connecting', 'Connected' and 'NotConnected'. Possible values include: 'Unknown', 'Connecting', 'Connected', 'NotConnected' + ConnectionStatus VirtualNetworkGatewayConnectionStatus `json:"connectionStatus,omitempty"` + // EgressBytesTransferred - The egress bytes transferred in this connection. + EgressBytesTransferred *int64 `json:"egressBytesTransferred,omitempty"` + // IngressBytesTransferred - The ingress bytes transferred in this connection. + IngressBytesTransferred *int64 `json:"ingressBytesTransferred,omitempty"` + // Peer - The reference to peerings resource. + Peer *SubResource `json:"peer,omitempty"` + // EnableBgp - EnableBgp flag + EnableBgp *bool `json:"enableBgp,omitempty"` + // ResourceGUID - The resource GUID property of the VirtualNetworkGatewayConnection resource. + ResourceGUID *string `json:"resourceGuid,omitempty"` + // ProvisioningState - The provisioning state of the VirtualNetworkGatewayConnection resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// VirtualNetworkGatewayConnectionsCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of +// a long-running operation. +type VirtualNetworkGatewayConnectionsCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future VirtualNetworkGatewayConnectionsCreateOrUpdateFuture) Result(client VirtualNetworkGatewayConnectionsClient) (vngc VirtualNetworkGatewayConnection, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return vngc, azure.NewAsyncOpIncompleteError("network.VirtualNetworkGatewayConnectionsCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + vngc, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + vngc, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// VirtualNetworkGatewayConnectionsDeleteFuture an abstraction for monitoring and retrieving the results of a +// long-running operation. +type VirtualNetworkGatewayConnectionsDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future VirtualNetworkGatewayConnectionsDeleteFuture) Result(client VirtualNetworkGatewayConnectionsClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.VirtualNetworkGatewayConnectionsDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// VirtualNetworkGatewayConnectionsResetSharedKeyFuture an abstraction for monitoring and retrieving the results of +// a long-running operation. +type VirtualNetworkGatewayConnectionsResetSharedKeyFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future VirtualNetworkGatewayConnectionsResetSharedKeyFuture) Result(client VirtualNetworkGatewayConnectionsClient) (crsk ConnectionResetSharedKey, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsResetSharedKeyFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return crsk, azure.NewAsyncOpIncompleteError("network.VirtualNetworkGatewayConnectionsResetSharedKeyFuture") + } + if future.PollingMethod() == azure.PollingLocation { + crsk, err = client.ResetSharedKeyResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsResetSharedKeyFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsResetSharedKeyFuture", "Result", resp, "Failure sending request") + return + } + crsk, err = client.ResetSharedKeyResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsResetSharedKeyFuture", "Result", resp, "Failure responding to request") + } + return +} + +// VirtualNetworkGatewayConnectionsSetSharedKeyFuture an abstraction for monitoring and retrieving the results of a +// long-running operation. +type VirtualNetworkGatewayConnectionsSetSharedKeyFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future VirtualNetworkGatewayConnectionsSetSharedKeyFuture) Result(client VirtualNetworkGatewayConnectionsClient) (csk ConnectionSharedKey, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsSetSharedKeyFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return csk, azure.NewAsyncOpIncompleteError("network.VirtualNetworkGatewayConnectionsSetSharedKeyFuture") + } + if future.PollingMethod() == azure.PollingLocation { + csk, err = client.SetSharedKeyResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsSetSharedKeyFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsSetSharedKeyFuture", "Result", resp, "Failure sending request") + return + } + csk, err = client.SetSharedKeyResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsSetSharedKeyFuture", "Result", resp, "Failure responding to request") + } + return +} + +// VirtualNetworkGatewayIPConfiguration IP configuration for virtual network gateway +type VirtualNetworkGatewayIPConfiguration struct { + *VirtualNetworkGatewayIPConfigurationPropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for VirtualNetworkGatewayIPConfiguration. +func (vngic VirtualNetworkGatewayIPConfiguration) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if vngic.VirtualNetworkGatewayIPConfigurationPropertiesFormat != nil { + objectMap["properties"] = vngic.VirtualNetworkGatewayIPConfigurationPropertiesFormat + } + if vngic.Name != nil { + objectMap["name"] = vngic.Name + } + if vngic.Etag != nil { + objectMap["etag"] = vngic.Etag + } + if vngic.ID != nil { + objectMap["id"] = vngic.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for VirtualNetworkGatewayIPConfiguration struct. +func (vngic *VirtualNetworkGatewayIPConfiguration) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var virtualNetworkGatewayIPConfigurationPropertiesFormat VirtualNetworkGatewayIPConfigurationPropertiesFormat + err = json.Unmarshal(*v, &virtualNetworkGatewayIPConfigurationPropertiesFormat) + if err != nil { + return err + } + vngic.VirtualNetworkGatewayIPConfigurationPropertiesFormat = &virtualNetworkGatewayIPConfigurationPropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + vngic.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + vngic.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + vngic.ID = &ID + } + } + } + + return nil +} + +// VirtualNetworkGatewayIPConfigurationPropertiesFormat properties of VirtualNetworkGatewayIPConfiguration +type VirtualNetworkGatewayIPConfigurationPropertiesFormat struct { + // PrivateIPAddress - Gets or sets the privateIPAddress of the IP Configuration + PrivateIPAddress *string `json:"privateIPAddress,omitempty"` + // PrivateIPAllocationMethod - The private IP allocation method. Possible values are: 'Static' and 'Dynamic'. Possible values include: 'Static', 'Dynamic' + PrivateIPAllocationMethod IPAllocationMethod `json:"privateIPAllocationMethod,omitempty"` + // Subnet - The reference of the subnet resource. + Subnet *SubResource `json:"subnet,omitempty"` + // PublicIPAddress - The reference of the public IP resource. + PublicIPAddress *SubResource `json:"publicIPAddress,omitempty"` + // ProvisioningState - The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// VirtualNetworkGatewayListResult response for the ListVirtualNetworkGateways API service call. +type VirtualNetworkGatewayListResult struct { + autorest.Response `json:"-"` + // Value - Gets a list of VirtualNetworkGateway resources that exists in a resource group. + Value *[]VirtualNetworkGateway `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// VirtualNetworkGatewayListResultIterator provides access to a complete listing of VirtualNetworkGateway values. +type VirtualNetworkGatewayListResultIterator struct { + i int + page VirtualNetworkGatewayListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *VirtualNetworkGatewayListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter VirtualNetworkGatewayListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter VirtualNetworkGatewayListResultIterator) Response() VirtualNetworkGatewayListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter VirtualNetworkGatewayListResultIterator) Value() VirtualNetworkGateway { + if !iter.page.NotDone() { + return VirtualNetworkGateway{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (vnglr VirtualNetworkGatewayListResult) IsEmpty() bool { + return vnglr.Value == nil || len(*vnglr.Value) == 0 +} + +// virtualNetworkGatewayListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (vnglr VirtualNetworkGatewayListResult) virtualNetworkGatewayListResultPreparer() (*http.Request, error) { + if vnglr.NextLink == nil || len(to.String(vnglr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(vnglr.NextLink))) +} + +// VirtualNetworkGatewayListResultPage contains a page of VirtualNetworkGateway values. +type VirtualNetworkGatewayListResultPage struct { + fn func(VirtualNetworkGatewayListResult) (VirtualNetworkGatewayListResult, error) + vnglr VirtualNetworkGatewayListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *VirtualNetworkGatewayListResultPage) Next() error { + next, err := page.fn(page.vnglr) + if err != nil { + return err + } + page.vnglr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page VirtualNetworkGatewayListResultPage) NotDone() bool { + return !page.vnglr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page VirtualNetworkGatewayListResultPage) Response() VirtualNetworkGatewayListResult { + return page.vnglr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page VirtualNetworkGatewayListResultPage) Values() []VirtualNetworkGateway { + if page.vnglr.IsEmpty() { + return nil + } + return *page.vnglr.Value +} + +// VirtualNetworkGatewayPropertiesFormat virtualNetworkGateway properties +type VirtualNetworkGatewayPropertiesFormat struct { + // IPConfigurations - IP configurations for virtual network gateway. + IPConfigurations *[]VirtualNetworkGatewayIPConfiguration `json:"ipConfigurations,omitempty"` + // GatewayType - The type of this virtual network gateway. Possible values are: 'Vpn' and 'ExpressRoute'. Possible values include: 'VirtualNetworkGatewayTypeVpn', 'VirtualNetworkGatewayTypeExpressRoute' + GatewayType VirtualNetworkGatewayType `json:"gatewayType,omitempty"` + // VpnType - The type of this virtual network gateway. Possible values are: 'PolicyBased' and 'RouteBased'. Possible values include: 'PolicyBased', 'RouteBased' + VpnType VpnType `json:"vpnType,omitempty"` + // EnableBgp - Whether BGP is enabled for this virtual network gateway or not. + EnableBgp *bool `json:"enableBgp,omitempty"` + // GatewayDefaultSite - The reference of the LocalNetworkGateway resource which represents local network site having default routes. Assign Null value in case of removing existing default site setting. + GatewayDefaultSite *SubResource `json:"gatewayDefaultSite,omitempty"` + // Sku - The reference of the VirtualNetworkGatewaySku resource which represents the SKU selected for Virtual network gateway. + Sku *VirtualNetworkGatewaySku `json:"sku,omitempty"` + // VpnClientConfiguration - The reference of the VpnClientConfiguration resource which represents the P2S VpnClient configurations. + VpnClientConfiguration *VpnClientConfiguration `json:"vpnClientConfiguration,omitempty"` + // BgpSettings - Virtual network gateway's BGP speaker settings. + BgpSettings *BgpSettings `json:"bgpSettings,omitempty"` + // ResourceGUID - The resource GUID property of the VirtualNetworkGateway resource. + ResourceGUID *string `json:"resourceGuid,omitempty"` + // ProvisioningState - The provisioning state of the VirtualNetworkGateway resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// VirtualNetworkGatewaysCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a +// long-running operation. +type VirtualNetworkGatewaysCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future VirtualNetworkGatewaysCreateOrUpdateFuture) Result(client VirtualNetworkGatewaysClient) (vng VirtualNetworkGateway, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return vng, azure.NewAsyncOpIncompleteError("network.VirtualNetworkGatewaysCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + vng, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + vng, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// VirtualNetworkGatewaysDeleteFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type VirtualNetworkGatewaysDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future VirtualNetworkGatewaysDeleteFuture) Result(client VirtualNetworkGatewaysClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.VirtualNetworkGatewaysDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// VirtualNetworkGatewaySku virtualNetworkGatewaySku details +type VirtualNetworkGatewaySku struct { + // Name - Gateway sku name -Basic/HighPerformance/Standard. Possible values include: 'VirtualNetworkGatewaySkuNameBasic', 'VirtualNetworkGatewaySkuNameHighPerformance', 'VirtualNetworkGatewaySkuNameStandard' + Name VirtualNetworkGatewaySkuName `json:"name,omitempty"` + // Tier - Gateway sku tier -Basic/HighPerformance/Standard. Possible values include: 'VirtualNetworkGatewaySkuTierBasic', 'VirtualNetworkGatewaySkuTierHighPerformance', 'VirtualNetworkGatewaySkuTierStandard' + Tier VirtualNetworkGatewaySkuTier `json:"tier,omitempty"` + // Capacity - The capacity + Capacity *int32 `json:"capacity,omitempty"` +} + +// VirtualNetworkGatewaysResetFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type VirtualNetworkGatewaysResetFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future VirtualNetworkGatewaysResetFuture) Result(client VirtualNetworkGatewaysClient) (vng VirtualNetworkGateway, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysResetFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return vng, azure.NewAsyncOpIncompleteError("network.VirtualNetworkGatewaysResetFuture") + } + if future.PollingMethod() == azure.PollingLocation { + vng, err = client.ResetResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysResetFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysResetFuture", "Result", resp, "Failure sending request") + return + } + vng, err = client.ResetResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysResetFuture", "Result", resp, "Failure responding to request") + } + return +} + +// VirtualNetworkListResult response for the ListVirtualNetworks API service call. +type VirtualNetworkListResult struct { + autorest.Response `json:"-"` + // Value - Gets a list of VirtualNetwork resources in a resource group. + Value *[]VirtualNetwork `json:"value,omitempty"` + // NextLink - The URL to get the next set of results. + NextLink *string `json:"nextLink,omitempty"` +} + +// VirtualNetworkListResultIterator provides access to a complete listing of VirtualNetwork values. +type VirtualNetworkListResultIterator struct { + i int + page VirtualNetworkListResultPage +} + +// Next advances to the next value. If there was an error making +// the request the iterator does not advance and the error is returned. +func (iter *VirtualNetworkListResultIterator) Next() error { + iter.i++ + if iter.i < len(iter.page.Values()) { + return nil + } + err := iter.page.Next() + if err != nil { + iter.i-- + return err + } + iter.i = 0 + return nil +} + +// NotDone returns true if the enumeration should be started or is not yet complete. +func (iter VirtualNetworkListResultIterator) NotDone() bool { + return iter.page.NotDone() && iter.i < len(iter.page.Values()) +} + +// Response returns the raw server response from the last page request. +func (iter VirtualNetworkListResultIterator) Response() VirtualNetworkListResult { + return iter.page.Response() +} + +// Value returns the current value or a zero-initialized value if the +// iterator has advanced beyond the end of the collection. +func (iter VirtualNetworkListResultIterator) Value() VirtualNetwork { + if !iter.page.NotDone() { + return VirtualNetwork{} + } + return iter.page.Values()[iter.i] +} + +// IsEmpty returns true if the ListResult contains no values. +func (vnlr VirtualNetworkListResult) IsEmpty() bool { + return vnlr.Value == nil || len(*vnlr.Value) == 0 +} + +// virtualNetworkListResultPreparer prepares a request to retrieve the next set of results. +// It returns nil if no more results exist. +func (vnlr VirtualNetworkListResult) virtualNetworkListResultPreparer() (*http.Request, error) { + if vnlr.NextLink == nil || len(to.String(vnlr.NextLink)) < 1 { + return nil, nil + } + return autorest.Prepare(&http.Request{}, + autorest.AsJSON(), + autorest.AsGet(), + autorest.WithBaseURL(to.String(vnlr.NextLink))) +} + +// VirtualNetworkListResultPage contains a page of VirtualNetwork values. +type VirtualNetworkListResultPage struct { + fn func(VirtualNetworkListResult) (VirtualNetworkListResult, error) + vnlr VirtualNetworkListResult +} + +// Next advances to the next page of values. If there was an error making +// the request the page does not advance and the error is returned. +func (page *VirtualNetworkListResultPage) Next() error { + next, err := page.fn(page.vnlr) + if err != nil { + return err + } + page.vnlr = next + return nil +} + +// NotDone returns true if the page enumeration should be started or is not yet complete. +func (page VirtualNetworkListResultPage) NotDone() bool { + return !page.vnlr.IsEmpty() +} + +// Response returns the raw server response from the last page request. +func (page VirtualNetworkListResultPage) Response() VirtualNetworkListResult { + return page.vnlr +} + +// Values returns the slice of values for the current page or nil if there are no values. +func (page VirtualNetworkListResultPage) Values() []VirtualNetwork { + if page.vnlr.IsEmpty() { + return nil + } + return *page.vnlr.Value +} + +// VirtualNetworkPropertiesFormat ... +type VirtualNetworkPropertiesFormat struct { + // AddressSpace - The AddressSpace that contains an array of IP address ranges that can be used by subnets. + AddressSpace *AddressSpace `json:"addressSpace,omitempty"` + // DhcpOptions - The dhcpOptions that contains an array of DNS servers available to VMs deployed in the virtual network. + DhcpOptions *DhcpOptions `json:"dhcpOptions,omitempty"` + // Subnets - A list of subnets in a Virtual Network. + Subnets *[]Subnet `json:"subnets,omitempty"` + // ResourceGUID - The resourceGuid property of the Virtual Network resource. + ResourceGUID *string `json:"resourceGuid,omitempty"` + // ProvisioningState - The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// VirtualNetworksCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type VirtualNetworksCreateOrUpdateFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future VirtualNetworksCreateOrUpdateFuture) Result(client VirtualNetworksClient) (vn VirtualNetwork, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworksCreateOrUpdateFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return vn, azure.NewAsyncOpIncompleteError("network.VirtualNetworksCreateOrUpdateFuture") + } + if future.PollingMethod() == azure.PollingLocation { + vn, err = client.CreateOrUpdateResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworksCreateOrUpdateFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworksCreateOrUpdateFuture", "Result", resp, "Failure sending request") + return + } + vn, err = client.CreateOrUpdateResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworksCreateOrUpdateFuture", "Result", resp, "Failure responding to request") + } + return +} + +// VirtualNetworksDeleteFuture an abstraction for monitoring and retrieving the results of a long-running +// operation. +type VirtualNetworksDeleteFuture struct { + azure.Future + req *http.Request +} + +// Result returns the result of the asynchronous operation. +// If the operation has not completed it will return an error. +func (future VirtualNetworksDeleteFuture) Result(client VirtualNetworksClient) (ar autorest.Response, err error) { + var done bool + done, err = future.Done(client) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworksDeleteFuture", "Result", future.Response(), "Polling failure") + return + } + if !done { + return ar, azure.NewAsyncOpIncompleteError("network.VirtualNetworksDeleteFuture") + } + if future.PollingMethod() == azure.PollingLocation { + ar, err = client.DeleteResponder(future.Response()) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworksDeleteFuture", "Result", future.Response(), "Failure responding to request") + } + return + } + var req *http.Request + var resp *http.Response + if future.PollingURL() != "" { + req, err = http.NewRequest(http.MethodGet, future.PollingURL(), nil) + if err != nil { + return + } + } else { + req = autorest.ChangeToGet(future.req) + } + resp, err = autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworksDeleteFuture", "Result", resp, "Failure sending request") + return + } + ar, err = client.DeleteResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworksDeleteFuture", "Result", resp, "Failure responding to request") + } + return +} + +// VpnClientConfiguration vpnClientConfiguration for P2S client +type VpnClientConfiguration struct { + // VpnClientAddressPool - Gets or sets the reference of the Address space resource which represents Address space for P2S VpnClient. + VpnClientAddressPool *AddressSpace `json:"vpnClientAddressPool,omitempty"` + // VpnClientRootCertificates - VpnClientRootCertificate for Virtual network gateway. + VpnClientRootCertificates *[]VpnClientRootCertificate `json:"vpnClientRootCertificates,omitempty"` + // VpnClientRevokedCertificates - VpnClientRevokedCertificate for Virtual network gateway. + VpnClientRevokedCertificates *[]VpnClientRevokedCertificate `json:"vpnClientRevokedCertificates,omitempty"` +} + +// VpnClientParameters vpnClientParameters +type VpnClientParameters struct { + // ProcessorArchitecture - VPN client Processor Architecture. Possible values are: 'AMD64' and 'X86'. Possible values include: 'Amd64', 'X86' + ProcessorArchitecture ProcessorArchitecture `json:"ProcessorArchitecture,omitempty"` +} + +// VpnClientRevokedCertificate VPN client revoked certificate of virtual network gateway. +type VpnClientRevokedCertificate struct { + *VpnClientRevokedCertificatePropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for VpnClientRevokedCertificate. +func (vcrc VpnClientRevokedCertificate) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if vcrc.VpnClientRevokedCertificatePropertiesFormat != nil { + objectMap["properties"] = vcrc.VpnClientRevokedCertificatePropertiesFormat + } + if vcrc.Name != nil { + objectMap["name"] = vcrc.Name + } + if vcrc.Etag != nil { + objectMap["etag"] = vcrc.Etag + } + if vcrc.ID != nil { + objectMap["id"] = vcrc.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for VpnClientRevokedCertificate struct. +func (vcrc *VpnClientRevokedCertificate) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var vpnClientRevokedCertificatePropertiesFormat VpnClientRevokedCertificatePropertiesFormat + err = json.Unmarshal(*v, &vpnClientRevokedCertificatePropertiesFormat) + if err != nil { + return err + } + vcrc.VpnClientRevokedCertificatePropertiesFormat = &vpnClientRevokedCertificatePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + vcrc.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + vcrc.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + vcrc.ID = &ID + } + } + } + + return nil +} + +// VpnClientRevokedCertificatePropertiesFormat properties of the revoked VPN client certificate of virtual network +// gateway. +type VpnClientRevokedCertificatePropertiesFormat struct { + // Thumbprint - The revoked VPN client certificate thumbprint. + Thumbprint *string `json:"thumbprint,omitempty"` + // ProvisioningState - The provisioning state of the VPN client revoked certificate resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} + +// VpnClientRootCertificate VPN client root certificate of virtual network gateway +type VpnClientRootCertificate struct { + *VpnClientRootCertificatePropertiesFormat `json:"properties,omitempty"` + // Name - The name of the resource that is unique within a resource group. This name can be used to access the resource. + Name *string `json:"name,omitempty"` + // Etag - A unique read-only string that changes whenever the resource is updated. + Etag *string `json:"etag,omitempty"` + // ID - Resource Identifier. + ID *string `json:"id,omitempty"` +} + +// MarshalJSON is the custom marshaler for VpnClientRootCertificate. +func (vcrc VpnClientRootCertificate) MarshalJSON() ([]byte, error) { + objectMap := make(map[string]interface{}) + if vcrc.VpnClientRootCertificatePropertiesFormat != nil { + objectMap["properties"] = vcrc.VpnClientRootCertificatePropertiesFormat + } + if vcrc.Name != nil { + objectMap["name"] = vcrc.Name + } + if vcrc.Etag != nil { + objectMap["etag"] = vcrc.Etag + } + if vcrc.ID != nil { + objectMap["id"] = vcrc.ID + } + return json.Marshal(objectMap) +} + +// UnmarshalJSON is the custom unmarshaler for VpnClientRootCertificate struct. +func (vcrc *VpnClientRootCertificate) UnmarshalJSON(body []byte) error { + var m map[string]*json.RawMessage + err := json.Unmarshal(body, &m) + if err != nil { + return err + } + for k, v := range m { + switch k { + case "properties": + if v != nil { + var vpnClientRootCertificatePropertiesFormat VpnClientRootCertificatePropertiesFormat + err = json.Unmarshal(*v, &vpnClientRootCertificatePropertiesFormat) + if err != nil { + return err + } + vcrc.VpnClientRootCertificatePropertiesFormat = &vpnClientRootCertificatePropertiesFormat + } + case "name": + if v != nil { + var name string + err = json.Unmarshal(*v, &name) + if err != nil { + return err + } + vcrc.Name = &name + } + case "etag": + if v != nil { + var etag string + err = json.Unmarshal(*v, &etag) + if err != nil { + return err + } + vcrc.Etag = &etag + } + case "id": + if v != nil { + var ID string + err = json.Unmarshal(*v, &ID) + if err != nil { + return err + } + vcrc.ID = &ID + } + } + } + + return nil +} + +// VpnClientRootCertificatePropertiesFormat properties of SSL certificates of application gateway +type VpnClientRootCertificatePropertiesFormat struct { + // PublicCertData - Gets or sets the certificate public data + PublicCertData *string `json:"publicCertData,omitempty"` + // ProvisioningState - The provisioning state of the VPN client root certificate resource. Possible values are: 'Updating', 'Deleting', and 'Failed'. + ProvisioningState *string `json:"provisioningState,omitempty"` +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/publicipaddresses.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/publicipaddresses.go similarity index 57% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/publicipaddresses.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/publicipaddresses.go index a117fedcb..f733de4f0 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/publicipaddresses.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/publicipaddresses.go @@ -14,47 +14,38 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "github.com/Azure/go-autorest/autorest/validation" "net/http" ) -// PublicIPAddressesClient is the the Microsoft Azure Network management API -// provides a RESTful set of web services that interact with Microsoft Azure -// Networks service to manage your network resources. The API has entities -// that capture the relationship between an end user and the Microsoft Azure -// Networks service. +// PublicIPAddressesClient is the network Client type PublicIPAddressesClient struct { - ManagementClient + BaseClient } -// NewPublicIPAddressesClient creates an instance of the -// PublicIPAddressesClient client. +// NewPublicIPAddressesClient creates an instance of the PublicIPAddressesClient client. func NewPublicIPAddressesClient(subscriptionID string) PublicIPAddressesClient { return NewPublicIPAddressesClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewPublicIPAddressesClientWithBaseURI creates an instance of the -// PublicIPAddressesClient client. +// NewPublicIPAddressesClientWithBaseURI creates an instance of the PublicIPAddressesClient client. func NewPublicIPAddressesClientWithBaseURI(baseURI string, subscriptionID string) PublicIPAddressesClient { return PublicIPAddressesClient{NewWithBaseURI(baseURI, subscriptionID)} } // CreateOrUpdate creates or updates a static or dynamic public IP address. -// This method may poll for completion. Polling can be canceled by passing -// the cancel channel argument. The channel will be used to cancel polling -// and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. publicIPAddressName is -// the name of the public IP address. parameters is parameters supplied to -// the create or update public IP address operation. -func (client PublicIPAddressesClient) CreateOrUpdate(resourceGroupName string, publicIPAddressName string, parameters PublicIPAddress, cancel <-chan struct{}) (result autorest.Response, err error) { +// Parameters: +// resourceGroupName - the name of the resource group. +// publicIPAddressName - the name of the public IP address. +// parameters - parameters supplied to the create or update public IP address operation. +func (client PublicIPAddressesClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, publicIPAddressName string, parameters PublicIPAddress) (result PublicIPAddressesCreateOrUpdateFuture, err error) { if err := validation.Validate([]validation.Validation{ {TargetValue: parameters, Constraints: []validation.Constraint{{Target: "parameters.PublicIPAddressPropertiesFormat", Name: validation.Null, Rule: false, @@ -63,107 +54,106 @@ func (client PublicIPAddressesClient) CreateOrUpdate(resourceGroupName string, p Chain: []validation.Constraint{{Target: "parameters.PublicIPAddressPropertiesFormat.IPConfiguration.IPConfigurationPropertiesFormat.PublicIPAddress", Name: validation.Null, Rule: false, Chain: nil}}}, }}, }}}}}); err != nil { - return result, validation.NewErrorWithValidationError(err, "network.PublicIPAddressesClient", "CreateOrUpdate") + return result, validation.NewError("network.PublicIPAddressesClient", "CreateOrUpdate", err.Error()) } - req, err := client.CreateOrUpdatePreparer(resourceGroupName, publicIPAddressName, parameters, cancel) + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, publicIPAddressName, parameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "CreateOrUpdate", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - resp, err := client.CreateOrUpdateSender(req) + result, err = client.CreateOrUpdateSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client PublicIPAddressesClient) CreateOrUpdatePreparer(resourceGroupName string, publicIPAddressName string, parameters PublicIPAddress, cancel <-chan struct{}) (*http.Request, error) { +func (client PublicIPAddressesClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, publicIPAddressName string, parameters PublicIPAddress) (*http.Request, error) { pathParameters := map[string]interface{}{ "publicIpAddressName": autorest.Encode("path", publicIPAddressName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}", pathParameters), autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client PublicIPAddressesClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client PublicIPAddressesClient) CreateOrUpdateSender(req *http.Request) (future PublicIPAddressesCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client PublicIPAddressesClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client PublicIPAddressesClient) CreateOrUpdateResponder(resp *http.Response) (result PublicIPAddress, err error) { err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusCreated, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified public IP address. This method may poll for -// completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. publicIPAddressName is -// the name of the subnet. -func (client PublicIPAddressesClient) Delete(resourceGroupName string, publicIPAddressName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, publicIPAddressName, cancel) +// Delete deletes the specified public IP address. +// Parameters: +// resourceGroupName - the name of the resource group. +// publicIPAddressName - the name of the subnet. +func (client PublicIPAddressesClient) Delete(ctx context.Context, resourceGroupName string, publicIPAddressName string) (result PublicIPAddressesDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, publicIPAddressName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client PublicIPAddressesClient) DeletePreparer(resourceGroupName string, publicIPAddressName string, cancel <-chan struct{}) (*http.Request, error) { +func (client PublicIPAddressesClient) DeletePreparer(ctx context.Context, resourceGroupName string, publicIPAddressName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "publicIpAddressName": autorest.Encode("path", publicIPAddressName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -171,15 +161,22 @@ func (client PublicIPAddressesClient) DeletePreparer(resourceGroupName string, p autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client PublicIPAddressesClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client PublicIPAddressesClient) DeleteSender(req *http.Request) (future PublicIPAddressesDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -188,26 +185,29 @@ func (client PublicIPAddressesClient) DeleteResponder(resp *http.Response) (resu err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusNoContent, http.StatusAccepted, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } // Get gets the specified public IP address in a specified resource group. -// -// resourceGroupName is the name of the resource group. publicIPAddressName is -// the name of the subnet. expand is expands referenced resources. -func (client PublicIPAddressesClient) Get(resourceGroupName string, publicIPAddressName string, expand string) (result PublicIPAddress, err error) { - req, err := client.GetPreparer(resourceGroupName, publicIPAddressName, expand) +// Parameters: +// resourceGroupName - the name of the resource group. +// publicIPAddressName - the name of the subnet. +// expand - expands referenced resources. +func (client PublicIPAddressesClient) Get(ctx context.Context, resourceGroupName string, publicIPAddressName string, expand string) (result PublicIPAddress, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, publicIPAddressName, expand) if err != nil { - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -219,15 +219,16 @@ func (client PublicIPAddressesClient) Get(resourceGroupName string, publicIPAddr } // GetPreparer prepares the Get request. -func (client PublicIPAddressesClient) GetPreparer(resourceGroupName string, publicIPAddressName string, expand string) (*http.Request, error) { +func (client PublicIPAddressesClient) GetPreparer(ctx context.Context, resourceGroupName string, publicIPAddressName string, expand string) (*http.Request, error) { pathParameters := map[string]interface{}{ "publicIpAddressName": autorest.Encode("path", publicIPAddressName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } if len(expand) > 0 { queryParameters["$expand"] = autorest.Encode("query", expand) @@ -238,13 +239,14 @@ func (client PublicIPAddressesClient) GetPreparer(resourceGroupName string, publ autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIpAddressName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client PublicIPAddressesClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -261,21 +263,24 @@ func (client PublicIPAddressesClient) GetResponder(resp *http.Response) (result } // List gets all public IP addresses in a resource group. -// -// resourceGroupName is the name of the resource group. -func (client PublicIPAddressesClient) List(resourceGroupName string) (result PublicIPAddressListResult, err error) { - req, err := client.ListPreparer(resourceGroupName) +// Parameters: +// resourceGroupName - the name of the resource group. +func (client PublicIPAddressesClient) List(ctx context.Context, resourceGroupName string) (result PublicIPAddressListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "List", resp, "Failure sending request") + result.pialr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.pialr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "List", resp, "Failure responding to request") } @@ -284,14 +289,15 @@ func (client PublicIPAddressesClient) List(resourceGroupName string) (result Pub } // ListPreparer prepares the List request. -func (client PublicIPAddressesClient) ListPreparer(resourceGroupName string) (*http.Request, error) { +func (client PublicIPAddressesClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -299,13 +305,14 @@ func (client PublicIPAddressesClient) ListPreparer(resourceGroupName string) (*h autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client PublicIPAddressesClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -321,44 +328,50 @@ func (client PublicIPAddressesClient) ListResponder(resp *http.Response) (result return } -// ListNextResults retrieves the next set of results, if any. -func (client PublicIPAddressesClient) ListNextResults(lastResults PublicIPAddressListResult) (result PublicIPAddressListResult, err error) { - req, err := lastResults.PublicIPAddressListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client PublicIPAddressesClient) listNextResults(lastResults PublicIPAddressListResult) (result PublicIPAddressListResult, err error) { + req, err := lastResults.publicIPAddressListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "listNextResults", resp, "Failure responding to next results request") } + return +} +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client PublicIPAddressesClient) ListComplete(ctx context.Context, resourceGroupName string) (result PublicIPAddressListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName) return } // ListAll gets all the public IP addresses in a subscription. -func (client PublicIPAddressesClient) ListAll() (result PublicIPAddressListResult, err error) { - req, err := client.ListAllPreparer() +func (client PublicIPAddressesClient) ListAll(ctx context.Context) (result PublicIPAddressListResultPage, err error) { + result.fn = client.listAllNextResults + req, err := client.ListAllPreparer(ctx) if err != nil { - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "ListAll", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "ListAll", nil, "Failure preparing request") + return } resp, err := client.ListAllSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "ListAll", resp, "Failure sending request") + result.pialr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "ListAll", resp, "Failure sending request") + return } - result, err = client.ListAllResponder(resp) + result.pialr, err = client.ListAllResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "ListAll", resp, "Failure responding to request") } @@ -367,13 +380,14 @@ func (client PublicIPAddressesClient) ListAll() (result PublicIPAddressListResul } // ListAllPreparer prepares the ListAll request. -func (client PublicIPAddressesClient) ListAllPreparer() (*http.Request, error) { +func (client PublicIPAddressesClient) ListAllPreparer(ctx context.Context) (*http.Request, error) { pathParameters := map[string]interface{}{ "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -381,13 +395,14 @@ func (client PublicIPAddressesClient) ListAllPreparer() (*http.Request, error) { autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/publicIPAddresses", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListAllSender sends the ListAll request. The method will close the // http.Response Body if it receives an error. func (client PublicIPAddressesClient) ListAllSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListAllResponder handles the response to the ListAll request. The method always @@ -403,26 +418,29 @@ func (client PublicIPAddressesClient) ListAllResponder(resp *http.Response) (res return } -// ListAllNextResults retrieves the next set of results, if any. -func (client PublicIPAddressesClient) ListAllNextResults(lastResults PublicIPAddressListResult) (result PublicIPAddressListResult, err error) { - req, err := lastResults.PublicIPAddressListResultPreparer() +// listAllNextResults retrieves the next set of results, if any. +func (client PublicIPAddressesClient) listAllNextResults(lastResults PublicIPAddressListResult) (result PublicIPAddressListResult, err error) { + req, err := lastResults.publicIPAddressListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "ListAll", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "listAllNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListAllSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "ListAll", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "listAllNextResults", resp, "Failure sending next results request") } - result, err = client.ListAllResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "ListAll", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.PublicIPAddressesClient", "listAllNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListAllComplete enumerates all values, automatically crossing page boundaries as required. +func (client PublicIPAddressesClient) ListAllComplete(ctx context.Context) (result PublicIPAddressListResultIterator, err error) { + result.page, err = client.ListAll(ctx) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/routes.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/routes.go similarity index 56% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/routes.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/routes.go index 9aa1cf505..c8c41ea1f 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/routes.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/routes.go @@ -14,23 +14,19 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "net/http" ) -// RoutesClient is the the Microsoft Azure Network management API provides a -// RESTful set of web services that interact with Microsoft Azure Networks -// service to manage your network resources. The API has entities that -// capture the relationship between an end user and the Microsoft Azure -// Networks service. +// RoutesClient is the network Client type RoutesClient struct { - ManagementClient + BaseClient } // NewRoutesClient creates an instance of the RoutesClient client. @@ -44,36 +40,29 @@ func NewRoutesClientWithBaseURI(baseURI string, subscriptionID string) RoutesCli } // CreateOrUpdate creates or updates a route in the specified route table. -// This method may poll for completion. Polling can be canceled by passing -// the cancel channel argument. The channel will be used to cancel polling -// and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. routeTableName is the -// name of the route table. routeName is the name of the route. -// routeParameters is parameters supplied to the create or update route -// operation. -func (client RoutesClient) CreateOrUpdate(resourceGroupName string, routeTableName string, routeName string, routeParameters Route, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.CreateOrUpdatePreparer(resourceGroupName, routeTableName, routeName, routeParameters, cancel) +// Parameters: +// resourceGroupName - the name of the resource group. +// routeTableName - the name of the route table. +// routeName - the name of the route. +// routeParameters - parameters supplied to the create or update route operation. +func (client RoutesClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, routeTableName string, routeName string, routeParameters Route) (result RoutesCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, routeTableName, routeName, routeParameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.RoutesClient", "CreateOrUpdate", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.RoutesClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - resp, err := client.CreateOrUpdateSender(req) + result, err = client.CreateOrUpdateSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.RoutesClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.RoutesClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.RoutesClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client RoutesClient) CreateOrUpdatePreparer(resourceGroupName string, routeTableName string, routeName string, routeParameters Route, cancel <-chan struct{}) (*http.Request, error) { +func (client RoutesClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, routeTableName string, routeName string, routeParameters Route) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "routeName": autorest.Encode("path", routeName), @@ -81,69 +70,72 @@ func (client RoutesClient) CreateOrUpdatePreparer(resourceGroupName string, rout "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}", pathParameters), autorest.WithJSON(routeParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client RoutesClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client RoutesClient) CreateOrUpdateSender(req *http.Request) (future RoutesCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client RoutesClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client RoutesClient) CreateOrUpdateResponder(resp *http.Response) (result Route, err error) { err = autorest.Respond( resp, client.ByInspecting(), azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified route from a route table. This method may poll -// for completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. routeTableName is the -// name of the route table. routeName is the name of the route. -func (client RoutesClient) Delete(resourceGroupName string, routeTableName string, routeName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, routeTableName, routeName, cancel) +// Delete deletes the specified route from a route table. +// Parameters: +// resourceGroupName - the name of the resource group. +// routeTableName - the name of the route table. +// routeName - the name of the route. +func (client RoutesClient) Delete(ctx context.Context, resourceGroupName string, routeTableName string, routeName string) (result RoutesDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, routeTableName, routeName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.RoutesClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.RoutesClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.RoutesClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.RoutesClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.RoutesClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client RoutesClient) DeletePreparer(resourceGroupName string, routeTableName string, routeName string, cancel <-chan struct{}) (*http.Request, error) { +func (client RoutesClient) DeletePreparer(ctx context.Context, resourceGroupName string, routeTableName string, routeName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "routeName": autorest.Encode("path", routeName), @@ -151,8 +143,9 @@ func (client RoutesClient) DeletePreparer(resourceGroupName string, routeTableNa "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -160,15 +153,22 @@ func (client RoutesClient) DeletePreparer(resourceGroupName string, routeTableNa autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client RoutesClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client RoutesClient) DeleteSender(req *http.Request) (future RoutesDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -177,26 +177,29 @@ func (client RoutesClient) DeleteResponder(resp *http.Response) (result autorest err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusAccepted, http.StatusOK, http.StatusNoContent), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } // Get gets the specified route from a route table. -// -// resourceGroupName is the name of the resource group. routeTableName is the -// name of the route table. routeName is the name of the route. -func (client RoutesClient) Get(resourceGroupName string, routeTableName string, routeName string) (result Route, err error) { - req, err := client.GetPreparer(resourceGroupName, routeTableName, routeName) +// Parameters: +// resourceGroupName - the name of the resource group. +// routeTableName - the name of the route table. +// routeName - the name of the route. +func (client RoutesClient) Get(ctx context.Context, resourceGroupName string, routeTableName string, routeName string) (result Route, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, routeTableName, routeName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.RoutesClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.RoutesClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.RoutesClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.RoutesClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -208,7 +211,7 @@ func (client RoutesClient) Get(resourceGroupName string, routeTableName string, } // GetPreparer prepares the Get request. -func (client RoutesClient) GetPreparer(resourceGroupName string, routeTableName string, routeName string) (*http.Request, error) { +func (client RoutesClient) GetPreparer(ctx context.Context, resourceGroupName string, routeTableName string, routeName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "routeName": autorest.Encode("path", routeName), @@ -216,8 +219,9 @@ func (client RoutesClient) GetPreparer(resourceGroupName string, routeTableName "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -225,13 +229,14 @@ func (client RoutesClient) GetPreparer(resourceGroupName string, routeTableName autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes/{routeName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client RoutesClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -248,22 +253,25 @@ func (client RoutesClient) GetResponder(resp *http.Response) (result Route, err } // List gets all routes in a route table. -// -// resourceGroupName is the name of the resource group. routeTableName is the -// name of the route table. -func (client RoutesClient) List(resourceGroupName string, routeTableName string) (result RouteListResult, err error) { - req, err := client.ListPreparer(resourceGroupName, routeTableName) +// Parameters: +// resourceGroupName - the name of the resource group. +// routeTableName - the name of the route table. +func (client RoutesClient) List(ctx context.Context, resourceGroupName string, routeTableName string) (result RouteListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName, routeTableName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.RoutesClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.RoutesClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.RoutesClient", "List", resp, "Failure sending request") + result.rlr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.RoutesClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.rlr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.RoutesClient", "List", resp, "Failure responding to request") } @@ -272,15 +280,16 @@ func (client RoutesClient) List(resourceGroupName string, routeTableName string) } // ListPreparer prepares the List request. -func (client RoutesClient) ListPreparer(resourceGroupName string, routeTableName string) (*http.Request, error) { +func (client RoutesClient) ListPreparer(ctx context.Context, resourceGroupName string, routeTableName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "routeTableName": autorest.Encode("path", routeTableName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -288,13 +297,14 @@ func (client RoutesClient) ListPreparer(resourceGroupName string, routeTableName autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}/routes", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client RoutesClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -310,26 +320,29 @@ func (client RoutesClient) ListResponder(resp *http.Response) (result RouteListR return } -// ListNextResults retrieves the next set of results, if any. -func (client RoutesClient) ListNextResults(lastResults RouteListResult) (result RouteListResult, err error) { - req, err := lastResults.RouteListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client RoutesClient) listNextResults(lastResults RouteListResult) (result RouteListResult, err error) { + req, err := lastResults.routeListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.RoutesClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.RoutesClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.RoutesClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.RoutesClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.RoutesClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.RoutesClient", "listNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client RoutesClient) ListComplete(ctx context.Context, resourceGroupName string, routeTableName string) (result RouteListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName, routeTableName) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/routetables.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/routetables.go similarity index 56% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/routetables.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/routetables.go index 2f3a1be1d..74097ca5b 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/routetables.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/routetables.go @@ -14,23 +14,19 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "net/http" ) -// RouteTablesClient is the the Microsoft Azure Network management API -// provides a RESTful set of web services that interact with Microsoft Azure -// Networks service to manage your network resources. The API has entities -// that capture the relationship between an end user and the Microsoft Azure -// Networks service. +// RouteTablesClient is the network Client type RouteTablesClient struct { - ManagementClient + BaseClient } // NewRouteTablesClient creates an instance of the RouteTablesClient client. @@ -38,119 +34,114 @@ func NewRouteTablesClient(subscriptionID string) RouteTablesClient { return NewRouteTablesClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewRouteTablesClientWithBaseURI creates an instance of the -// RouteTablesClient client. +// NewRouteTablesClientWithBaseURI creates an instance of the RouteTablesClient client. func NewRouteTablesClientWithBaseURI(baseURI string, subscriptionID string) RouteTablesClient { return RouteTablesClient{NewWithBaseURI(baseURI, subscriptionID)} } -// CreateOrUpdate create or updates a route table in a specified resource -// group. This method may poll for completion. Polling can be canceled by -// passing the cancel channel argument. The channel will be used to cancel -// polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. routeTableName is the -// name of the route table. parameters is parameters supplied to the create -// or update route table operation. -func (client RouteTablesClient) CreateOrUpdate(resourceGroupName string, routeTableName string, parameters RouteTable, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.CreateOrUpdatePreparer(resourceGroupName, routeTableName, parameters, cancel) +// CreateOrUpdate create or updates a route table in a specified resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// routeTableName - the name of the route table. +// parameters - parameters supplied to the create or update route table operation. +func (client RouteTablesClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, routeTableName string, parameters RouteTable) (result RouteTablesCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, routeTableName, parameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "CreateOrUpdate", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - resp, err := client.CreateOrUpdateSender(req) + result, err = client.CreateOrUpdateSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client RouteTablesClient) CreateOrUpdatePreparer(resourceGroupName string, routeTableName string, parameters RouteTable, cancel <-chan struct{}) (*http.Request, error) { +func (client RouteTablesClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, routeTableName string, parameters RouteTable) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "routeTableName": autorest.Encode("path", routeTableName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}", pathParameters), autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client RouteTablesClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client RouteTablesClient) CreateOrUpdateSender(req *http.Request) (future RouteTablesCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client RouteTablesClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client RouteTablesClient) CreateOrUpdateResponder(resp *http.Response) (result RouteTable, err error) { err = autorest.Respond( resp, client.ByInspecting(), azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified route table. This method may poll for -// completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. routeTableName is the -// name of the route table. -func (client RouteTablesClient) Delete(resourceGroupName string, routeTableName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, routeTableName, cancel) +// Delete deletes the specified route table. +// Parameters: +// resourceGroupName - the name of the resource group. +// routeTableName - the name of the route table. +func (client RouteTablesClient) Delete(ctx context.Context, resourceGroupName string, routeTableName string) (result RouteTablesDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, routeTableName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client RouteTablesClient) DeletePreparer(resourceGroupName string, routeTableName string, cancel <-chan struct{}) (*http.Request, error) { +func (client RouteTablesClient) DeletePreparer(ctx context.Context, resourceGroupName string, routeTableName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "routeTableName": autorest.Encode("path", routeTableName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -158,15 +149,22 @@ func (client RouteTablesClient) DeletePreparer(resourceGroupName string, routeTa autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client RouteTablesClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client RouteTablesClient) DeleteSender(req *http.Request) (future RouteTablesDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -175,26 +173,29 @@ func (client RouteTablesClient) DeleteResponder(resp *http.Response) (result aut err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusNoContent, http.StatusOK, http.StatusAccepted), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } // Get gets the specified route table. -// -// resourceGroupName is the name of the resource group. routeTableName is the -// name of the route table. expand is expands referenced resources. -func (client RouteTablesClient) Get(resourceGroupName string, routeTableName string, expand string) (result RouteTable, err error) { - req, err := client.GetPreparer(resourceGroupName, routeTableName, expand) +// Parameters: +// resourceGroupName - the name of the resource group. +// routeTableName - the name of the route table. +// expand - expands referenced resources. +func (client RouteTablesClient) Get(ctx context.Context, resourceGroupName string, routeTableName string, expand string) (result RouteTable, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, routeTableName, expand) if err != nil { - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -206,15 +207,16 @@ func (client RouteTablesClient) Get(resourceGroupName string, routeTableName str } // GetPreparer prepares the Get request. -func (client RouteTablesClient) GetPreparer(resourceGroupName string, routeTableName string, expand string) (*http.Request, error) { +func (client RouteTablesClient) GetPreparer(ctx context.Context, resourceGroupName string, routeTableName string, expand string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "routeTableName": autorest.Encode("path", routeTableName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } if len(expand) > 0 { queryParameters["$expand"] = autorest.Encode("query", expand) @@ -225,13 +227,14 @@ func (client RouteTablesClient) GetPreparer(resourceGroupName string, routeTable autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables/{routeTableName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client RouteTablesClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -248,21 +251,24 @@ func (client RouteTablesClient) GetResponder(resp *http.Response) (result RouteT } // List gets all route tables in a resource group. -// -// resourceGroupName is the name of the resource group. -func (client RouteTablesClient) List(resourceGroupName string) (result RouteTableListResult, err error) { - req, err := client.ListPreparer(resourceGroupName) +// Parameters: +// resourceGroupName - the name of the resource group. +func (client RouteTablesClient) List(ctx context.Context, resourceGroupName string) (result RouteTableListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "List", resp, "Failure sending request") + result.rtlr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.rtlr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "List", resp, "Failure responding to request") } @@ -271,14 +277,15 @@ func (client RouteTablesClient) List(resourceGroupName string) (result RouteTabl } // ListPreparer prepares the List request. -func (client RouteTablesClient) ListPreparer(resourceGroupName string) (*http.Request, error) { +func (client RouteTablesClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -286,13 +293,14 @@ func (client RouteTablesClient) ListPreparer(resourceGroupName string) (*http.Re autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeTables", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client RouteTablesClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -308,44 +316,50 @@ func (client RouteTablesClient) ListResponder(resp *http.Response) (result Route return } -// ListNextResults retrieves the next set of results, if any. -func (client RouteTablesClient) ListNextResults(lastResults RouteTableListResult) (result RouteTableListResult, err error) { - req, err := lastResults.RouteTableListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client RouteTablesClient) listNextResults(lastResults RouteTableListResult) (result RouteTableListResult, err error) { + req, err := lastResults.routeTableListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "listNextResults", resp, "Failure responding to next results request") } + return +} +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client RouteTablesClient) ListComplete(ctx context.Context, resourceGroupName string) (result RouteTableListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName) return } // ListAll gets all route tables in a subscription. -func (client RouteTablesClient) ListAll() (result RouteTableListResult, err error) { - req, err := client.ListAllPreparer() +func (client RouteTablesClient) ListAll(ctx context.Context) (result RouteTableListResultPage, err error) { + result.fn = client.listAllNextResults + req, err := client.ListAllPreparer(ctx) if err != nil { - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "ListAll", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "ListAll", nil, "Failure preparing request") + return } resp, err := client.ListAllSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "ListAll", resp, "Failure sending request") + result.rtlr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "ListAll", resp, "Failure sending request") + return } - result, err = client.ListAllResponder(resp) + result.rtlr, err = client.ListAllResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "ListAll", resp, "Failure responding to request") } @@ -354,13 +368,14 @@ func (client RouteTablesClient) ListAll() (result RouteTableListResult, err erro } // ListAllPreparer prepares the ListAll request. -func (client RouteTablesClient) ListAllPreparer() (*http.Request, error) { +func (client RouteTablesClient) ListAllPreparer(ctx context.Context) (*http.Request, error) { pathParameters := map[string]interface{}{ "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -368,13 +383,14 @@ func (client RouteTablesClient) ListAllPreparer() (*http.Request, error) { autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/routeTables", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListAllSender sends the ListAll request. The method will close the // http.Response Body if it receives an error. func (client RouteTablesClient) ListAllSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListAllResponder handles the response to the ListAll request. The method always @@ -390,26 +406,29 @@ func (client RouteTablesClient) ListAllResponder(resp *http.Response) (result Ro return } -// ListAllNextResults retrieves the next set of results, if any. -func (client RouteTablesClient) ListAllNextResults(lastResults RouteTableListResult) (result RouteTableListResult, err error) { - req, err := lastResults.RouteTableListResultPreparer() +// listAllNextResults retrieves the next set of results, if any. +func (client RouteTablesClient) listAllNextResults(lastResults RouteTableListResult) (result RouteTableListResult, err error) { + req, err := lastResults.routeTableListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "ListAll", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "listAllNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListAllSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "ListAll", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.RouteTablesClient", "listAllNextResults", resp, "Failure sending next results request") } - result, err = client.ListAllResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "ListAll", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.RouteTablesClient", "listAllNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListAllComplete enumerates all values, automatically crossing page boundaries as required. +func (client RouteTablesClient) ListAllComplete(ctx context.Context) (result RouteTableListResultIterator, err error) { + result.page, err = client.ListAll(ctx) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/securitygroups.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/securitygroups.go similarity index 56% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/securitygroups.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/securitygroups.go index 4f05c4b23..42dd80275 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/securitygroups.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/securitygroups.go @@ -14,145 +14,134 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "net/http" ) -// SecurityGroupsClient is the the Microsoft Azure Network management API -// provides a RESTful set of web services that interact with Microsoft Azure -// Networks service to manage your network resources. The API has entities -// that capture the relationship between an end user and the Microsoft Azure -// Networks service. +// SecurityGroupsClient is the network Client type SecurityGroupsClient struct { - ManagementClient + BaseClient } -// NewSecurityGroupsClient creates an instance of the SecurityGroupsClient -// client. +// NewSecurityGroupsClient creates an instance of the SecurityGroupsClient client. func NewSecurityGroupsClient(subscriptionID string) SecurityGroupsClient { return NewSecurityGroupsClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewSecurityGroupsClientWithBaseURI creates an instance of the -// SecurityGroupsClient client. +// NewSecurityGroupsClientWithBaseURI creates an instance of the SecurityGroupsClient client. func NewSecurityGroupsClientWithBaseURI(baseURI string, subscriptionID string) SecurityGroupsClient { return SecurityGroupsClient{NewWithBaseURI(baseURI, subscriptionID)} } -// CreateOrUpdate creates or updates a network security group in the specified -// resource group. This method may poll for completion. Polling can be -// canceled by passing the cancel channel argument. The channel will be used -// to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. -// networkSecurityGroupName is the name of the network security group. -// parameters is parameters supplied to the create or update network security -// group operation. -func (client SecurityGroupsClient) CreateOrUpdate(resourceGroupName string, networkSecurityGroupName string, parameters SecurityGroup, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.CreateOrUpdatePreparer(resourceGroupName, networkSecurityGroupName, parameters, cancel) +// CreateOrUpdate creates or updates a network security group in the specified resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// networkSecurityGroupName - the name of the network security group. +// parameters - parameters supplied to the create or update network security group operation. +func (client SecurityGroupsClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, networkSecurityGroupName string, parameters SecurityGroup) (result SecurityGroupsCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, networkSecurityGroupName, parameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "CreateOrUpdate", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - resp, err := client.CreateOrUpdateSender(req) + result, err = client.CreateOrUpdateSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client SecurityGroupsClient) CreateOrUpdatePreparer(resourceGroupName string, networkSecurityGroupName string, parameters SecurityGroup, cancel <-chan struct{}) (*http.Request, error) { +func (client SecurityGroupsClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, networkSecurityGroupName string, parameters SecurityGroup) (*http.Request, error) { pathParameters := map[string]interface{}{ "networkSecurityGroupName": autorest.Encode("path", networkSecurityGroupName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}", pathParameters), autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client SecurityGroupsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client SecurityGroupsClient) CreateOrUpdateSender(req *http.Request) (future SecurityGroupsCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client SecurityGroupsClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client SecurityGroupsClient) CreateOrUpdateResponder(resp *http.Response) (result SecurityGroup, err error) { err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusCreated, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified network security group. This method may poll -// for completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. -// networkSecurityGroupName is the name of the network security group. -func (client SecurityGroupsClient) Delete(resourceGroupName string, networkSecurityGroupName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, networkSecurityGroupName, cancel) +// Delete deletes the specified network security group. +// Parameters: +// resourceGroupName - the name of the resource group. +// networkSecurityGroupName - the name of the network security group. +func (client SecurityGroupsClient) Delete(ctx context.Context, resourceGroupName string, networkSecurityGroupName string) (result SecurityGroupsDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, networkSecurityGroupName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client SecurityGroupsClient) DeletePreparer(resourceGroupName string, networkSecurityGroupName string, cancel <-chan struct{}) (*http.Request, error) { +func (client SecurityGroupsClient) DeletePreparer(ctx context.Context, resourceGroupName string, networkSecurityGroupName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "networkSecurityGroupName": autorest.Encode("path", networkSecurityGroupName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -160,15 +149,22 @@ func (client SecurityGroupsClient) DeletePreparer(resourceGroupName string, netw autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client SecurityGroupsClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client SecurityGroupsClient) DeleteSender(req *http.Request) (future SecurityGroupsDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -177,27 +173,29 @@ func (client SecurityGroupsClient) DeleteResponder(resp *http.Response) (result err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusAccepted, http.StatusOK, http.StatusNoContent), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } // Get gets the specified network security group. -// -// resourceGroupName is the name of the resource group. -// networkSecurityGroupName is the name of the network security group. expand -// is expands referenced resources. -func (client SecurityGroupsClient) Get(resourceGroupName string, networkSecurityGroupName string, expand string) (result SecurityGroup, err error) { - req, err := client.GetPreparer(resourceGroupName, networkSecurityGroupName, expand) +// Parameters: +// resourceGroupName - the name of the resource group. +// networkSecurityGroupName - the name of the network security group. +// expand - expands referenced resources. +func (client SecurityGroupsClient) Get(ctx context.Context, resourceGroupName string, networkSecurityGroupName string, expand string) (result SecurityGroup, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, networkSecurityGroupName, expand) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -209,15 +207,16 @@ func (client SecurityGroupsClient) Get(resourceGroupName string, networkSecurity } // GetPreparer prepares the Get request. -func (client SecurityGroupsClient) GetPreparer(resourceGroupName string, networkSecurityGroupName string, expand string) (*http.Request, error) { +func (client SecurityGroupsClient) GetPreparer(ctx context.Context, resourceGroupName string, networkSecurityGroupName string, expand string) (*http.Request, error) { pathParameters := map[string]interface{}{ "networkSecurityGroupName": autorest.Encode("path", networkSecurityGroupName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } if len(expand) > 0 { queryParameters["$expand"] = autorest.Encode("query", expand) @@ -228,13 +227,14 @@ func (client SecurityGroupsClient) GetPreparer(resourceGroupName string, network autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client SecurityGroupsClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -251,21 +251,24 @@ func (client SecurityGroupsClient) GetResponder(resp *http.Response) (result Sec } // List gets all network security groups in a resource group. -// -// resourceGroupName is the name of the resource group. -func (client SecurityGroupsClient) List(resourceGroupName string) (result SecurityGroupListResult, err error) { - req, err := client.ListPreparer(resourceGroupName) +// Parameters: +// resourceGroupName - the name of the resource group. +func (client SecurityGroupsClient) List(ctx context.Context, resourceGroupName string) (result SecurityGroupListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "List", resp, "Failure sending request") + result.sglr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.sglr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "List", resp, "Failure responding to request") } @@ -274,14 +277,15 @@ func (client SecurityGroupsClient) List(resourceGroupName string) (result Securi } // ListPreparer prepares the List request. -func (client SecurityGroupsClient) ListPreparer(resourceGroupName string) (*http.Request, error) { +func (client SecurityGroupsClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -289,13 +293,14 @@ func (client SecurityGroupsClient) ListPreparer(resourceGroupName string) (*http autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client SecurityGroupsClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -311,44 +316,50 @@ func (client SecurityGroupsClient) ListResponder(resp *http.Response) (result Se return } -// ListNextResults retrieves the next set of results, if any. -func (client SecurityGroupsClient) ListNextResults(lastResults SecurityGroupListResult) (result SecurityGroupListResult, err error) { - req, err := lastResults.SecurityGroupListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client SecurityGroupsClient) listNextResults(lastResults SecurityGroupListResult) (result SecurityGroupListResult, err error) { + req, err := lastResults.securityGroupListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "listNextResults", resp, "Failure responding to next results request") } + return +} +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client SecurityGroupsClient) ListComplete(ctx context.Context, resourceGroupName string) (result SecurityGroupListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName) return } // ListAll gets all network security groups in a subscription. -func (client SecurityGroupsClient) ListAll() (result SecurityGroupListResult, err error) { - req, err := client.ListAllPreparer() +func (client SecurityGroupsClient) ListAll(ctx context.Context) (result SecurityGroupListResultPage, err error) { + result.fn = client.listAllNextResults + req, err := client.ListAllPreparer(ctx) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "ListAll", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "ListAll", nil, "Failure preparing request") + return } resp, err := client.ListAllSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "ListAll", resp, "Failure sending request") + result.sglr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "ListAll", resp, "Failure sending request") + return } - result, err = client.ListAllResponder(resp) + result.sglr, err = client.ListAllResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "ListAll", resp, "Failure responding to request") } @@ -357,13 +368,14 @@ func (client SecurityGroupsClient) ListAll() (result SecurityGroupListResult, er } // ListAllPreparer prepares the ListAll request. -func (client SecurityGroupsClient) ListAllPreparer() (*http.Request, error) { +func (client SecurityGroupsClient) ListAllPreparer(ctx context.Context) (*http.Request, error) { pathParameters := map[string]interface{}{ "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -371,13 +383,14 @@ func (client SecurityGroupsClient) ListAllPreparer() (*http.Request, error) { autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/networkSecurityGroups", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListAllSender sends the ListAll request. The method will close the // http.Response Body if it receives an error. func (client SecurityGroupsClient) ListAllSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListAllResponder handles the response to the ListAll request. The method always @@ -393,26 +406,29 @@ func (client SecurityGroupsClient) ListAllResponder(resp *http.Response) (result return } -// ListAllNextResults retrieves the next set of results, if any. -func (client SecurityGroupsClient) ListAllNextResults(lastResults SecurityGroupListResult) (result SecurityGroupListResult, err error) { - req, err := lastResults.SecurityGroupListResultPreparer() +// listAllNextResults retrieves the next set of results, if any. +func (client SecurityGroupsClient) listAllNextResults(lastResults SecurityGroupListResult) (result SecurityGroupListResult, err error) { + req, err := lastResults.securityGroupListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "ListAll", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "listAllNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListAllSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "ListAll", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "listAllNextResults", resp, "Failure sending next results request") } - result, err = client.ListAllResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "ListAll", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.SecurityGroupsClient", "listAllNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListAllComplete enumerates all values, automatically crossing page boundaries as required. +func (client SecurityGroupsClient) ListAllComplete(ctx context.Context) (result SecurityGroupListResultIterator, err error) { + result.page, err = client.ListAll(ctx) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/securityrules.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/securityrules.go similarity index 56% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/securityrules.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/securityrules.go index 9603c3c1f..1040fe1a3 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/securityrules.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/securityrules.go @@ -14,79 +14,65 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "github.com/Azure/go-autorest/autorest/validation" "net/http" ) -// SecurityRulesClient is the the Microsoft Azure Network management API -// provides a RESTful set of web services that interact with Microsoft Azure -// Networks service to manage your network resources. The API has entities -// that capture the relationship between an end user and the Microsoft Azure -// Networks service. +// SecurityRulesClient is the network Client type SecurityRulesClient struct { - ManagementClient + BaseClient } -// NewSecurityRulesClient creates an instance of the SecurityRulesClient -// client. +// NewSecurityRulesClient creates an instance of the SecurityRulesClient client. func NewSecurityRulesClient(subscriptionID string) SecurityRulesClient { return NewSecurityRulesClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewSecurityRulesClientWithBaseURI creates an instance of the -// SecurityRulesClient client. +// NewSecurityRulesClientWithBaseURI creates an instance of the SecurityRulesClient client. func NewSecurityRulesClientWithBaseURI(baseURI string, subscriptionID string) SecurityRulesClient { return SecurityRulesClient{NewWithBaseURI(baseURI, subscriptionID)} } -// CreateOrUpdate creates or updates a security rule in the specified network -// security group. This method may poll for completion. Polling can be -// canceled by passing the cancel channel argument. The channel will be used -// to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. -// networkSecurityGroupName is the name of the network security group. -// securityRuleName is the name of the security rule. securityRuleParameters -// is parameters supplied to the create or update network security rule -// operation. -func (client SecurityRulesClient) CreateOrUpdate(resourceGroupName string, networkSecurityGroupName string, securityRuleName string, securityRuleParameters SecurityRule, cancel <-chan struct{}) (result autorest.Response, err error) { +// CreateOrUpdate creates or updates a security rule in the specified network security group. +// Parameters: +// resourceGroupName - the name of the resource group. +// networkSecurityGroupName - the name of the network security group. +// securityRuleName - the name of the security rule. +// securityRuleParameters - parameters supplied to the create or update network security rule operation. +func (client SecurityRulesClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, networkSecurityGroupName string, securityRuleName string, securityRuleParameters SecurityRule) (result SecurityRulesCreateOrUpdateFuture, err error) { if err := validation.Validate([]validation.Validation{ {TargetValue: securityRuleParameters, Constraints: []validation.Constraint{{Target: "securityRuleParameters.SecurityRulePropertiesFormat", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "securityRuleParameters.SecurityRulePropertiesFormat.SourceAddressPrefix", Name: validation.Null, Rule: true, Chain: nil}, {Target: "securityRuleParameters.SecurityRulePropertiesFormat.DestinationAddressPrefix", Name: validation.Null, Rule: true, Chain: nil}, }}}}}); err != nil { - return result, validation.NewErrorWithValidationError(err, "network.SecurityRulesClient", "CreateOrUpdate") + return result, validation.NewError("network.SecurityRulesClient", "CreateOrUpdate", err.Error()) } - req, err := client.CreateOrUpdatePreparer(resourceGroupName, networkSecurityGroupName, securityRuleName, securityRuleParameters, cancel) + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, networkSecurityGroupName, securityRuleName, securityRuleParameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "CreateOrUpdate", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - resp, err := client.CreateOrUpdateSender(req) + result, err = client.CreateOrUpdateSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client SecurityRulesClient) CreateOrUpdatePreparer(resourceGroupName string, networkSecurityGroupName string, securityRuleName string, securityRuleParameters SecurityRule, cancel <-chan struct{}) (*http.Request, error) { +func (client SecurityRulesClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, networkSecurityGroupName string, securityRuleName string, securityRuleParameters SecurityRule) (*http.Request, error) { pathParameters := map[string]interface{}{ "networkSecurityGroupName": autorest.Encode("path", networkSecurityGroupName), "resourceGroupName": autorest.Encode("path", resourceGroupName), @@ -94,70 +80,72 @@ func (client SecurityRulesClient) CreateOrUpdatePreparer(resourceGroupName strin "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}", pathParameters), autorest.WithJSON(securityRuleParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client SecurityRulesClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client SecurityRulesClient) CreateOrUpdateSender(req *http.Request) (future SecurityRulesCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client SecurityRulesClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client SecurityRulesClient) CreateOrUpdateResponder(resp *http.Response) (result SecurityRule, err error) { err = autorest.Respond( resp, client.ByInspecting(), azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified network security rule. This method may poll -// for completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. -// networkSecurityGroupName is the name of the network security group. -// securityRuleName is the name of the security rule. -func (client SecurityRulesClient) Delete(resourceGroupName string, networkSecurityGroupName string, securityRuleName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, networkSecurityGroupName, securityRuleName, cancel) +// Delete deletes the specified network security rule. +// Parameters: +// resourceGroupName - the name of the resource group. +// networkSecurityGroupName - the name of the network security group. +// securityRuleName - the name of the security rule. +func (client SecurityRulesClient) Delete(ctx context.Context, resourceGroupName string, networkSecurityGroupName string, securityRuleName string) (result SecurityRulesDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, networkSecurityGroupName, securityRuleName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client SecurityRulesClient) DeletePreparer(resourceGroupName string, networkSecurityGroupName string, securityRuleName string, cancel <-chan struct{}) (*http.Request, error) { +func (client SecurityRulesClient) DeletePreparer(ctx context.Context, resourceGroupName string, networkSecurityGroupName string, securityRuleName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "networkSecurityGroupName": autorest.Encode("path", networkSecurityGroupName), "resourceGroupName": autorest.Encode("path", resourceGroupName), @@ -165,8 +153,9 @@ func (client SecurityRulesClient) DeletePreparer(resourceGroupName string, netwo "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -174,15 +163,22 @@ func (client SecurityRulesClient) DeletePreparer(resourceGroupName string, netwo autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client SecurityRulesClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client SecurityRulesClient) DeleteSender(req *http.Request) (future SecurityRulesDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -191,27 +187,29 @@ func (client SecurityRulesClient) DeleteResponder(resp *http.Response) (result a err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusNoContent, http.StatusAccepted, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } // Get get the specified network security rule. -// -// resourceGroupName is the name of the resource group. -// networkSecurityGroupName is the name of the network security group. -// securityRuleName is the name of the security rule. -func (client SecurityRulesClient) Get(resourceGroupName string, networkSecurityGroupName string, securityRuleName string) (result SecurityRule, err error) { - req, err := client.GetPreparer(resourceGroupName, networkSecurityGroupName, securityRuleName) +// Parameters: +// resourceGroupName - the name of the resource group. +// networkSecurityGroupName - the name of the network security group. +// securityRuleName - the name of the security rule. +func (client SecurityRulesClient) Get(ctx context.Context, resourceGroupName string, networkSecurityGroupName string, securityRuleName string) (result SecurityRule, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, networkSecurityGroupName, securityRuleName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -223,7 +221,7 @@ func (client SecurityRulesClient) Get(resourceGroupName string, networkSecurityG } // GetPreparer prepares the Get request. -func (client SecurityRulesClient) GetPreparer(resourceGroupName string, networkSecurityGroupName string, securityRuleName string) (*http.Request, error) { +func (client SecurityRulesClient) GetPreparer(ctx context.Context, resourceGroupName string, networkSecurityGroupName string, securityRuleName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "networkSecurityGroupName": autorest.Encode("path", networkSecurityGroupName), "resourceGroupName": autorest.Encode("path", resourceGroupName), @@ -231,8 +229,9 @@ func (client SecurityRulesClient) GetPreparer(resourceGroupName string, networkS "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -240,13 +239,14 @@ func (client SecurityRulesClient) GetPreparer(resourceGroupName string, networkS autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules/{securityRuleName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client SecurityRulesClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -263,22 +263,25 @@ func (client SecurityRulesClient) GetResponder(resp *http.Response) (result Secu } // List gets all security rules in a network security group. -// -// resourceGroupName is the name of the resource group. -// networkSecurityGroupName is the name of the network security group. -func (client SecurityRulesClient) List(resourceGroupName string, networkSecurityGroupName string) (result SecurityRuleListResult, err error) { - req, err := client.ListPreparer(resourceGroupName, networkSecurityGroupName) +// Parameters: +// resourceGroupName - the name of the resource group. +// networkSecurityGroupName - the name of the network security group. +func (client SecurityRulesClient) List(ctx context.Context, resourceGroupName string, networkSecurityGroupName string) (result SecurityRuleListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName, networkSecurityGroupName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "List", resp, "Failure sending request") + result.srlr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.srlr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "List", resp, "Failure responding to request") } @@ -287,15 +290,16 @@ func (client SecurityRulesClient) List(resourceGroupName string, networkSecurity } // ListPreparer prepares the List request. -func (client SecurityRulesClient) ListPreparer(resourceGroupName string, networkSecurityGroupName string) (*http.Request, error) { +func (client SecurityRulesClient) ListPreparer(ctx context.Context, resourceGroupName string, networkSecurityGroupName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "networkSecurityGroupName": autorest.Encode("path", networkSecurityGroupName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -303,13 +307,14 @@ func (client SecurityRulesClient) ListPreparer(resourceGroupName string, network autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkSecurityGroups/{networkSecurityGroupName}/securityRules", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client SecurityRulesClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -325,26 +330,29 @@ func (client SecurityRulesClient) ListResponder(resp *http.Response) (result Sec return } -// ListNextResults retrieves the next set of results, if any. -func (client SecurityRulesClient) ListNextResults(lastResults SecurityRuleListResult) (result SecurityRuleListResult, err error) { - req, err := lastResults.SecurityRuleListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client SecurityRulesClient) listNextResults(lastResults SecurityRuleListResult) (result SecurityRuleListResult, err error) { + req, err := lastResults.securityRuleListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.SecurityRulesClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.SecurityRulesClient", "listNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client SecurityRulesClient) ListComplete(ctx context.Context, resourceGroupName string, networkSecurityGroupName string) (result SecurityRuleListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName, networkSecurityGroupName) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/subnets.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/subnets.go similarity index 54% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/subnets.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/subnets.go index 5114817a4..886a65126 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/subnets.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/subnets.go @@ -14,23 +14,19 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "net/http" ) -// SubnetsClient is the the Microsoft Azure Network management API provides a -// RESTful set of web services that interact with Microsoft Azure Networks -// service to manage your network resources. The API has entities that -// capture the relationship between an end user and the Microsoft Azure -// Networks service. +// SubnetsClient is the network Client type SubnetsClient struct { - ManagementClient + BaseClient } // NewSubnetsClient creates an instance of the SubnetsClient client. @@ -43,37 +39,30 @@ func NewSubnetsClientWithBaseURI(baseURI string, subscriptionID string) SubnetsC return SubnetsClient{NewWithBaseURI(baseURI, subscriptionID)} } -// CreateOrUpdate creates or updates a subnet in the specified virtual -// network. This method may poll for completion. Polling can be canceled by -// passing the cancel channel argument. The channel will be used to cancel -// polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. subnetName is the name of the subnet. -// subnetParameters is parameters supplied to the create or update subnet -// operation. -func (client SubnetsClient) CreateOrUpdate(resourceGroupName string, virtualNetworkName string, subnetName string, subnetParameters Subnet, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.CreateOrUpdatePreparer(resourceGroupName, virtualNetworkName, subnetName, subnetParameters, cancel) +// CreateOrUpdate creates or updates a subnet in the specified virtual network. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkName - the name of the virtual network. +// subnetName - the name of the subnet. +// subnetParameters - parameters supplied to the create or update subnet operation. +func (client SubnetsClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, virtualNetworkName string, subnetName string, subnetParameters Subnet) (result SubnetsCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, virtualNetworkName, subnetName, subnetParameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "CreateOrUpdate", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SubnetsClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - resp, err := client.CreateOrUpdateSender(req) + result, err = client.CreateOrUpdateSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.SubnetsClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.SubnetsClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client SubnetsClient) CreateOrUpdatePreparer(resourceGroupName string, virtualNetworkName string, subnetName string, subnetParameters Subnet, cancel <-chan struct{}) (*http.Request, error) { +func (client SubnetsClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, virtualNetworkName string, subnetName string, subnetParameters Subnet) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subnetName": autorest.Encode("path", subnetName), @@ -81,68 +70,72 @@ func (client SubnetsClient) CreateOrUpdatePreparer(resourceGroupName string, vir "virtualNetworkName": autorest.Encode("path", virtualNetworkName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}", pathParameters), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualnetworks/{virtualNetworkName}/subnets/{subnetName}", pathParameters), autorest.WithJSON(subnetParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client SubnetsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client SubnetsClient) CreateOrUpdateSender(req *http.Request) (future SubnetsCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client SubnetsClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client SubnetsClient) CreateOrUpdateResponder(resp *http.Response) (result Subnet, err error) { err = autorest.Respond( resp, client.ByInspecting(), azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified subnet. This method may poll for completion. -// Polling can be canceled by passing the cancel channel argument. The -// channel will be used to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. subnetName is the name of the subnet. -func (client SubnetsClient) Delete(resourceGroupName string, virtualNetworkName string, subnetName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, virtualNetworkName, subnetName, cancel) +// Delete deletes the specified subnet. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkName - the name of the virtual network. +// subnetName - the name of the subnet. +func (client SubnetsClient) Delete(ctx context.Context, resourceGroupName string, virtualNetworkName string, subnetName string) (result SubnetsDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, virtualNetworkName, subnetName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SubnetsClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.SubnetsClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.SubnetsClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client SubnetsClient) DeletePreparer(resourceGroupName string, virtualNetworkName string, subnetName string, cancel <-chan struct{}) (*http.Request, error) { +func (client SubnetsClient) DeletePreparer(ctx context.Context, resourceGroupName string, virtualNetworkName string, subnetName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subnetName": autorest.Encode("path", subnetName), @@ -150,24 +143,32 @@ func (client SubnetsClient) DeletePreparer(resourceGroupName string, virtualNetw "virtualNetworkName": autorest.Encode("path", virtualNetworkName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsDelete(), autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}", pathParameters), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualnetworks/{virtualNetworkName}/subnets/{subnetName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client SubnetsClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client SubnetsClient) DeleteSender(req *http.Request) (future SubnetsDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -176,27 +177,30 @@ func (client SubnetsClient) DeleteResponder(resp *http.Response) (result autores err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent, http.StatusAccepted), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } // Get gets the specified subnet by virtual network and resource group. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. subnetName is the name of the subnet. -// expand is expands referenced resources. -func (client SubnetsClient) Get(resourceGroupName string, virtualNetworkName string, subnetName string, expand string) (result Subnet, err error) { - req, err := client.GetPreparer(resourceGroupName, virtualNetworkName, subnetName, expand) +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkName - the name of the virtual network. +// subnetName - the name of the subnet. +// expand - expands referenced resources. +func (client SubnetsClient) Get(ctx context.Context, resourceGroupName string, virtualNetworkName string, subnetName string, expand string) (result Subnet, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, virtualNetworkName, subnetName, expand) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SubnetsClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.SubnetsClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -208,7 +212,7 @@ func (client SubnetsClient) Get(resourceGroupName string, virtualNetworkName str } // GetPreparer prepares the Get request. -func (client SubnetsClient) GetPreparer(resourceGroupName string, virtualNetworkName string, subnetName string, expand string) (*http.Request, error) { +func (client SubnetsClient) GetPreparer(ctx context.Context, resourceGroupName string, virtualNetworkName string, subnetName string, expand string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subnetName": autorest.Encode("path", subnetName), @@ -216,8 +220,9 @@ func (client SubnetsClient) GetPreparer(resourceGroupName string, virtualNetwork "virtualNetworkName": autorest.Encode("path", virtualNetworkName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } if len(expand) > 0 { queryParameters["$expand"] = autorest.Encode("query", expand) @@ -226,15 +231,16 @@ func (client SubnetsClient) GetPreparer(resourceGroupName string, virtualNetwork preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}", pathParameters), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualnetworks/{virtualNetworkName}/subnets/{subnetName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client SubnetsClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -251,22 +257,25 @@ func (client SubnetsClient) GetResponder(resp *http.Response) (result Subnet, er } // List gets all subnets in a virtual network. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. -func (client SubnetsClient) List(resourceGroupName string, virtualNetworkName string) (result SubnetListResult, err error) { - req, err := client.ListPreparer(resourceGroupName, virtualNetworkName) +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkName - the name of the virtual network. +func (client SubnetsClient) List(ctx context.Context, resourceGroupName string, virtualNetworkName string) (result SubnetListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName, virtualNetworkName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.SubnetsClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "List", resp, "Failure sending request") + result.slr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.SubnetsClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.slr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.SubnetsClient", "List", resp, "Failure responding to request") } @@ -275,29 +284,31 @@ func (client SubnetsClient) List(resourceGroupName string, virtualNetworkName st } // ListPreparer prepares the List request. -func (client SubnetsClient) ListPreparer(resourceGroupName string, virtualNetworkName string) (*http.Request, error) { +func (client SubnetsClient) ListPreparer(ctx context.Context, resourceGroupName string, virtualNetworkName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), "virtualNetworkName": autorest.Encode("path", virtualNetworkName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets", pathParameters), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualnetworks/{virtualNetworkName}/subnets", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client SubnetsClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -313,26 +324,29 @@ func (client SubnetsClient) ListResponder(resp *http.Response) (result SubnetLis return } -// ListNextResults retrieves the next set of results, if any. -func (client SubnetsClient) ListNextResults(lastResults SubnetListResult) (result SubnetListResult, err error) { - req, err := lastResults.SubnetListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client SubnetsClient) listNextResults(lastResults SubnetListResult) (result SubnetListResult, err error) { + req, err := lastResults.subnetListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.SubnetsClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.SubnetsClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.SubnetsClient", "listNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client SubnetsClient) ListComplete(ctx context.Context, resourceGroupName string, virtualNetworkName string) (result SubnetListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName, virtualNetworkName) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/usages.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/usages.go similarity index 65% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/usages.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/usages.go index 016de70e1..0bbb27bbc 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/usages.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/usages.go @@ -14,24 +14,20 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "github.com/Azure/go-autorest/autorest/validation" "net/http" ) -// UsagesClient is the the Microsoft Azure Network management API provides a -// RESTful set of web services that interact with Microsoft Azure Networks -// service to manage your network resources. The API has entities that -// capture the relationship between an end user and the Microsoft Azure -// Networks service. +// UsagesClient is the network Client type UsagesClient struct { - ManagementClient + BaseClient } // NewUsagesClient creates an instance of the UsagesClient client. @@ -45,27 +41,30 @@ func NewUsagesClientWithBaseURI(baseURI string, subscriptionID string) UsagesCli } // List lists compute usages for a subscription. -// -// location is the location where resource usage is queried. -func (client UsagesClient) List(location string) (result UsagesListResult, err error) { +// Parameters: +// location - the location where resource usage is queried. +func (client UsagesClient) List(ctx context.Context, location string) (result UsagesListResultPage, err error) { if err := validation.Validate([]validation.Validation{ {TargetValue: location, Constraints: []validation.Constraint{{Target: "location", Name: validation.Pattern, Rule: `^[-\w\._]+$`, Chain: nil}}}}); err != nil { - return result, validation.NewErrorWithValidationError(err, "network.UsagesClient", "List") + return result, validation.NewError("network.UsagesClient", "List", err.Error()) } - req, err := client.ListPreparer(location) + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, location) if err != nil { - return result, autorest.NewErrorWithError(err, "network.UsagesClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.UsagesClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.UsagesClient", "List", resp, "Failure sending request") + result.ulr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.UsagesClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.ulr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.UsagesClient", "List", resp, "Failure responding to request") } @@ -74,14 +73,15 @@ func (client UsagesClient) List(location string) (result UsagesListResult, err e } // ListPreparer prepares the List request. -func (client UsagesClient) ListPreparer(location string) (*http.Request, error) { +func (client UsagesClient) ListPreparer(ctx context.Context, location string) (*http.Request, error) { pathParameters := map[string]interface{}{ "location": autorest.Encode("path", location), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -89,13 +89,14 @@ func (client UsagesClient) ListPreparer(location string) (*http.Request, error) autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/usages", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client UsagesClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -111,26 +112,29 @@ func (client UsagesClient) ListResponder(resp *http.Response) (result UsagesList return } -// ListNextResults retrieves the next set of results, if any. -func (client UsagesClient) ListNextResults(lastResults UsagesListResult) (result UsagesListResult, err error) { - req, err := lastResults.UsagesListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client UsagesClient) listNextResults(lastResults UsagesListResult) (result UsagesListResult, err error) { + req, err := lastResults.usagesListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.UsagesClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.UsagesClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.UsagesClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.UsagesClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.UsagesClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.UsagesClient", "listNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client UsagesClient) ListComplete(ctx context.Context, location string) (result UsagesListResultIterator, err error) { + result.page, err = client.List(ctx, location) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/version.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/version.go similarity index 53% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/version.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/version.go index 551bd1a70..6890ea03f 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/version.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/version.go @@ -1,5 +1,7 @@ package network +import "github.com/Azure/azure-sdk-for-go/version" + // Copyright (c) Microsoft and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); @@ -14,47 +16,15 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -import ( - "bytes" - "fmt" - "strings" -) - -const ( - major = "8" - minor = "1" - patch = "0" - tag = "beta" - userAgentFormat = "Azure-SDK-For-Go/%s arm-%s/%s" -) - -// cached results of UserAgent and Version to prevent repeated operations. -var ( - userAgent string - version string -) +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. // UserAgent returns the UserAgent string to use when sending http.Requests. func UserAgent() string { - if userAgent == "" { - userAgent = fmt.Sprintf(userAgentFormat, Version(), "network", "2016-09-01") - } - return userAgent + return "Azure-SDK-For-Go/" + version.Number + " network/2015-06-15" } // Version returns the semantic version (see http://semver.org) of the client. func Version() string { - if version == "" { - versionBuilder := bytes.NewBufferString(fmt.Sprintf("%s.%s.%s", major, minor, patch)) - if tag != "" { - versionBuilder.WriteRune('-') - versionBuilder.WriteString(strings.TrimPrefix(tag, "-")) - } - version = string(versionBuilder.Bytes()) - } - return version + return version.Number } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/virtualnetworkgatewayconnections.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/virtualnetworkgatewayconnections.go new file mode 100644 index 000000000..67456bf52 --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/virtualnetworkgatewayconnections.go @@ -0,0 +1,560 @@ +package network + +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +import ( + "context" + "github.com/Azure/go-autorest/autorest" + "github.com/Azure/go-autorest/autorest/azure" + "net/http" +) + +// VirtualNetworkGatewayConnectionsClient is the network Client +type VirtualNetworkGatewayConnectionsClient struct { + BaseClient +} + +// NewVirtualNetworkGatewayConnectionsClient creates an instance of the VirtualNetworkGatewayConnectionsClient client. +func NewVirtualNetworkGatewayConnectionsClient(subscriptionID string) VirtualNetworkGatewayConnectionsClient { + return NewVirtualNetworkGatewayConnectionsClientWithBaseURI(DefaultBaseURI, subscriptionID) +} + +// NewVirtualNetworkGatewayConnectionsClientWithBaseURI creates an instance of the +// VirtualNetworkGatewayConnectionsClient client. +func NewVirtualNetworkGatewayConnectionsClientWithBaseURI(baseURI string, subscriptionID string) VirtualNetworkGatewayConnectionsClient { + return VirtualNetworkGatewayConnectionsClient{NewWithBaseURI(baseURI, subscriptionID)} +} + +// CreateOrUpdate creates or updates a virtual network gateway connection in the specified resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkGatewayConnectionName - the name of the virtual network gateway connection. +// parameters - parameters supplied to the create or update virtual network gateway connection operation. +func (client VirtualNetworkGatewayConnectionsClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters VirtualNetworkGatewayConnection) (result VirtualNetworkGatewayConnectionsCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, virtualNetworkGatewayConnectionName, parameters) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "CreateOrUpdate", nil, "Failure preparing request") + return + } + + result, err = client.CreateOrUpdateSender(req) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return + } + + return +} + +// CreateOrUpdatePreparer prepares the CreateOrUpdate request. +func (client VirtualNetworkGatewayConnectionsClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters VirtualNetworkGatewayConnection) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + "virtualNetworkGatewayConnectionName": autorest.Encode("path", virtualNetworkGatewayConnectionName), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsContentType("application/json; charset=utf-8"), + autorest.AsPut(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}", pathParameters), + autorest.WithJSON(parameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the +// http.Response Body if it receives an error. +func (client VirtualNetworkGatewayConnectionsClient) CreateOrUpdateSender(req *http.Request) (future VirtualNetworkGatewayConnectionsCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return +} + +// CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always +// closes the http.Response Body. +func (client VirtualNetworkGatewayConnectionsClient) CreateOrUpdateResponder(resp *http.Response) (result VirtualNetworkGatewayConnection, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// Delete deletes the specified virtual network Gateway connection. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkGatewayConnectionName - the name of the virtual network gateway connection. +func (client VirtualNetworkGatewayConnectionsClient) Delete(ctx context.Context, resourceGroupName string, virtualNetworkGatewayConnectionName string) (result VirtualNetworkGatewayConnectionsDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, virtualNetworkGatewayConnectionName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "Delete", nil, "Failure preparing request") + return + } + + result, err = client.DeleteSender(req) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "Delete", result.Response(), "Failure sending request") + return + } + + return +} + +// DeletePreparer prepares the Delete request. +func (client VirtualNetworkGatewayConnectionsClient) DeletePreparer(ctx context.Context, resourceGroupName string, virtualNetworkGatewayConnectionName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + "virtualNetworkGatewayConnectionName": autorest.Encode("path", virtualNetworkGatewayConnectionName), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsDelete(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// DeleteSender sends the Delete request. The method will close the +// http.Response Body if it receives an error. +func (client VirtualNetworkGatewayConnectionsClient) DeleteSender(req *http.Request) (future VirtualNetworkGatewayConnectionsDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return +} + +// DeleteResponder handles the response to the Delete request. The method always +// closes the http.Response Body. +func (client VirtualNetworkGatewayConnectionsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), + autorest.ByClosing()) + result.Response = resp + return +} + +// Get gets the specified virtual network gateway connection by resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkGatewayConnectionName - the name of the virtual network gateway connection. +func (client VirtualNetworkGatewayConnectionsClient) Get(ctx context.Context, resourceGroupName string, virtualNetworkGatewayConnectionName string) (result VirtualNetworkGatewayConnection, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, virtualNetworkGatewayConnectionName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "Get", nil, "Failure preparing request") + return + } + + resp, err := client.GetSender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "Get", resp, "Failure sending request") + return + } + + result, err = client.GetResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "Get", resp, "Failure responding to request") + } + + return +} + +// GetPreparer prepares the Get request. +func (client VirtualNetworkGatewayConnectionsClient) GetPreparer(ctx context.Context, resourceGroupName string, virtualNetworkGatewayConnectionName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + "virtualNetworkGatewayConnectionName": autorest.Encode("path", virtualNetworkGatewayConnectionName), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// GetSender sends the Get request. The method will close the +// http.Response Body if it receives an error. +func (client VirtualNetworkGatewayConnectionsClient) GetSender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// GetResponder handles the response to the Get request. The method always +// closes the http.Response Body. +func (client VirtualNetworkGatewayConnectionsClient) GetResponder(resp *http.Response) (result VirtualNetworkGatewayConnection, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// GetSharedKey the Get VirtualNetworkGatewayConnectionSharedKey operation retrieves information about the specified +// virtual network gateway connection shared key through Network resource provider. +// Parameters: +// resourceGroupName - the name of the resource group. +// connectionSharedKeyName - the virtual network gateway connection shared key name. +func (client VirtualNetworkGatewayConnectionsClient) GetSharedKey(ctx context.Context, resourceGroupName string, connectionSharedKeyName string) (result ConnectionSharedKeyResult, err error) { + req, err := client.GetSharedKeyPreparer(ctx, resourceGroupName, connectionSharedKeyName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "GetSharedKey", nil, "Failure preparing request") + return + } + + resp, err := client.GetSharedKeySender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "GetSharedKey", resp, "Failure sending request") + return + } + + result, err = client.GetSharedKeyResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "GetSharedKey", resp, "Failure responding to request") + } + + return +} + +// GetSharedKeyPreparer prepares the GetSharedKey request. +func (client VirtualNetworkGatewayConnectionsClient) GetSharedKeyPreparer(ctx context.Context, resourceGroupName string, connectionSharedKeyName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "connectionSharedKeyName": autorest.Encode("path", connectionSharedKeyName), + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{connectionSharedKeyName}/sharedkey", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// GetSharedKeySender sends the GetSharedKey request. The method will close the +// http.Response Body if it receives an error. +func (client VirtualNetworkGatewayConnectionsClient) GetSharedKeySender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// GetSharedKeyResponder handles the response to the GetSharedKey request. The method always +// closes the http.Response Body. +func (client VirtualNetworkGatewayConnectionsClient) GetSharedKeyResponder(resp *http.Response) (result ConnectionSharedKeyResult, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// List the List VirtualNetworkGatewayConnections operation retrieves all the virtual network gateways connections +// created. +// Parameters: +// resourceGroupName - the name of the resource group. +func (client VirtualNetworkGatewayConnectionsClient) List(ctx context.Context, resourceGroupName string) (result VirtualNetworkGatewayConnectionListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "List", nil, "Failure preparing request") + return + } + + resp, err := client.ListSender(req) + if err != nil { + result.vngclr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "List", resp, "Failure sending request") + return + } + + result.vngclr, err = client.ListResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "List", resp, "Failure responding to request") + } + + return +} + +// ListPreparer prepares the List request. +func (client VirtualNetworkGatewayConnectionsClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections", pathParameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// ListSender sends the List request. The method will close the +// http.Response Body if it receives an error. +func (client VirtualNetworkGatewayConnectionsClient) ListSender(req *http.Request) (*http.Response, error) { + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) +} + +// ListResponder handles the response to the List request. The method always +// closes the http.Response Body. +func (client VirtualNetworkGatewayConnectionsClient) ListResponder(resp *http.Response) (result VirtualNetworkGatewayConnectionListResult, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// listNextResults retrieves the next set of results, if any. +func (client VirtualNetworkGatewayConnectionsClient) listNextResults(lastResults VirtualNetworkGatewayConnectionListResult) (result VirtualNetworkGatewayConnectionListResult, err error) { + req, err := lastResults.virtualNetworkGatewayConnectionListResultPreparer() + if err != nil { + return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "listNextResults", nil, "Failure preparing next results request") + } + if req == nil { + return + } + resp, err := client.ListSender(req) + if err != nil { + result.Response = autorest.Response{Response: resp} + return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "listNextResults", resp, "Failure sending next results request") + } + result, err = client.ListResponder(resp) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "listNextResults", resp, "Failure responding to next results request") + } + return +} + +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client VirtualNetworkGatewayConnectionsClient) ListComplete(ctx context.Context, resourceGroupName string) (result VirtualNetworkGatewayConnectionListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName) + return +} + +// ResetSharedKey the VirtualNetworkGatewayConnectionResetSharedKey operation resets the virtual network gateway +// connection shared key for passed virtual network gateway connection in the specified resource group through Network +// resource provider. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkGatewayConnectionName - the virtual network gateway connection reset shared key Name. +// parameters - parameters supplied to the begin reset virtual network gateway connection shared key operation +// through network resource provider. +func (client VirtualNetworkGatewayConnectionsClient) ResetSharedKey(ctx context.Context, resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters ConnectionResetSharedKey) (result VirtualNetworkGatewayConnectionsResetSharedKeyFuture, err error) { + req, err := client.ResetSharedKeyPreparer(ctx, resourceGroupName, virtualNetworkGatewayConnectionName, parameters) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "ResetSharedKey", nil, "Failure preparing request") + return + } + + result, err = client.ResetSharedKeySender(req) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "ResetSharedKey", result.Response(), "Failure sending request") + return + } + + return +} + +// ResetSharedKeyPreparer prepares the ResetSharedKey request. +func (client VirtualNetworkGatewayConnectionsClient) ResetSharedKeyPreparer(ctx context.Context, resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters ConnectionResetSharedKey) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + "virtualNetworkGatewayConnectionName": autorest.Encode("path", virtualNetworkGatewayConnectionName), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsContentType("application/json; charset=utf-8"), + autorest.AsPost(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey/reset", pathParameters), + autorest.WithJSON(parameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// ResetSharedKeySender sends the ResetSharedKey request. The method will close the +// http.Response Body if it receives an error. +func (client VirtualNetworkGatewayConnectionsClient) ResetSharedKeySender(req *http.Request) (future VirtualNetworkGatewayConnectionsResetSharedKeyFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted)) + return +} + +// ResetSharedKeyResponder handles the response to the ResetSharedKey request. The method always +// closes the http.Response Body. +func (client VirtualNetworkGatewayConnectionsClient) ResetSharedKeyResponder(resp *http.Response) (result ConnectionResetSharedKey, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} + +// SetSharedKey the Put VirtualNetworkGatewayConnectionSharedKey operation sets the virtual network gateway connection +// shared key for passed virtual network gateway connection in the specified resource group through Network resource +// provider. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkGatewayConnectionName - the virtual network gateway connection name. +// parameters - parameters supplied to the Begin Set Virtual Network Gateway conection Shared key operation +// throughNetwork resource provider. +func (client VirtualNetworkGatewayConnectionsClient) SetSharedKey(ctx context.Context, resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters ConnectionSharedKey) (result VirtualNetworkGatewayConnectionsSetSharedKeyFuture, err error) { + req, err := client.SetSharedKeyPreparer(ctx, resourceGroupName, virtualNetworkGatewayConnectionName, parameters) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "SetSharedKey", nil, "Failure preparing request") + return + } + + result, err = client.SetSharedKeySender(req) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewayConnectionsClient", "SetSharedKey", result.Response(), "Failure sending request") + return + } + + return +} + +// SetSharedKeyPreparer prepares the SetSharedKey request. +func (client VirtualNetworkGatewayConnectionsClient) SetSharedKeyPreparer(ctx context.Context, resourceGroupName string, virtualNetworkGatewayConnectionName string, parameters ConnectionSharedKey) (*http.Request, error) { + pathParameters := map[string]interface{}{ + "resourceGroupName": autorest.Encode("path", resourceGroupName), + "subscriptionId": autorest.Encode("path", client.SubscriptionID), + "virtualNetworkGatewayConnectionName": autorest.Encode("path", virtualNetworkGatewayConnectionName), + } + + const APIVersion = "2015-06-15" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsContentType("application/json; charset=utf-8"), + autorest.AsPut(), + autorest.WithBaseURL(client.BaseURI), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/connections/{virtualNetworkGatewayConnectionName}/sharedkey", pathParameters), + autorest.WithJSON(parameters), + autorest.WithQueryParameters(queryParameters)) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) +} + +// SetSharedKeySender sends the SetSharedKey request. The method will close the +// http.Response Body if it receives an error. +func (client VirtualNetworkGatewayConnectionsClient) SetSharedKeySender(req *http.Request) (future VirtualNetworkGatewayConnectionsSetSharedKeyFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return +} + +// SetSharedKeyResponder handles the response to the SetSharedKey request. The method always +// closes the http.Response Body. +func (client VirtualNetworkGatewayConnectionsClient) SetSharedKeyResponder(resp *http.Response) (result ConnectionSharedKey, err error) { + err = autorest.Respond( + resp, + client.ByInspecting(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), + autorest.ByClosing()) + result.Response = autorest.Response{Response: resp} + return +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworkgateways.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/virtualnetworkgateways.go similarity index 55% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworkgateways.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/virtualnetworkgateways.go index 3f128c1fa..191c7e675 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworkgateways.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/virtualnetworkgateways.go @@ -14,153 +14,134 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" - "github.com/Azure/go-autorest/autorest/validation" "net/http" ) -// VirtualNetworkGatewaysClient is the the Microsoft Azure Network management -// API provides a RESTful set of web services that interact with Microsoft -// Azure Networks service to manage your network resources. The API has -// entities that capture the relationship between an end user and the -// Microsoft Azure Networks service. +// VirtualNetworkGatewaysClient is the network Client type VirtualNetworkGatewaysClient struct { - ManagementClient + BaseClient } -// NewVirtualNetworkGatewaysClient creates an instance of the -// VirtualNetworkGatewaysClient client. +// NewVirtualNetworkGatewaysClient creates an instance of the VirtualNetworkGatewaysClient client. func NewVirtualNetworkGatewaysClient(subscriptionID string) VirtualNetworkGatewaysClient { return NewVirtualNetworkGatewaysClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewVirtualNetworkGatewaysClientWithBaseURI creates an instance of the -// VirtualNetworkGatewaysClient client. +// NewVirtualNetworkGatewaysClientWithBaseURI creates an instance of the VirtualNetworkGatewaysClient client. func NewVirtualNetworkGatewaysClientWithBaseURI(baseURI string, subscriptionID string) VirtualNetworkGatewaysClient { return VirtualNetworkGatewaysClient{NewWithBaseURI(baseURI, subscriptionID)} } -// CreateOrUpdate creates or updates a virtual network gateway in the -// specified resource group. This method may poll for completion. Polling can -// be canceled by passing the cancel channel argument. The channel will be -// used to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. -// virtualNetworkGatewayName is the name of the virtual network gateway. -// parameters is parameters supplied to create or update virtual network -// gateway operation. -func (client VirtualNetworkGatewaysClient) CreateOrUpdate(resourceGroupName string, virtualNetworkGatewayName string, parameters VirtualNetworkGateway, cancel <-chan struct{}) (result autorest.Response, err error) { - if err := validation.Validate([]validation.Validation{ - {TargetValue: parameters, - Constraints: []validation.Constraint{{Target: "parameters.VirtualNetworkGatewayPropertiesFormat", Name: validation.Null, Rule: true, - Chain: []validation.Constraint{{Target: "parameters.VirtualNetworkGatewayPropertiesFormat.IPConfigurations", Name: validation.Null, Rule: true, Chain: nil}}}}}}); err != nil { - return result, validation.NewErrorWithValidationError(err, "network.VirtualNetworkGatewaysClient", "CreateOrUpdate") +// CreateOrUpdate creates or updates a virtual network gateway in the specified resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkGatewayName - the name of the virtual network gateway. +// parameters - parameters supplied to create or update virtual network gateway operation. +func (client VirtualNetworkGatewaysClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, virtualNetworkGatewayName string, parameters VirtualNetworkGateway) (result VirtualNetworkGatewaysCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, virtualNetworkGatewayName, parameters) + if err != nil { + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - req, err := client.CreateOrUpdatePreparer(resourceGroupName, virtualNetworkGatewayName, parameters, cancel) + result, err = client.CreateOrUpdateSender(req) if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "CreateOrUpdate", nil, "Failure preparing request") - } - - resp, err := client.CreateOrUpdateSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client VirtualNetworkGatewaysClient) CreateOrUpdatePreparer(resourceGroupName string, virtualNetworkGatewayName string, parameters VirtualNetworkGateway, cancel <-chan struct{}) (*http.Request, error) { +func (client VirtualNetworkGatewaysClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, virtualNetworkGatewayName string, parameters VirtualNetworkGateway) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), "virtualNetworkGatewayName": autorest.Encode("path", virtualNetworkGatewayName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}", pathParameters), autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client VirtualNetworkGatewaysClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client VirtualNetworkGatewaysClient) CreateOrUpdateSender(req *http.Request) (future VirtualNetworkGatewaysCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client VirtualNetworkGatewaysClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client VirtualNetworkGatewaysClient) CreateOrUpdateResponder(resp *http.Response) (result VirtualNetworkGateway, err error) { err = autorest.Respond( resp, client.ByInspecting(), azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified virtual network gateway. This method may poll -// for completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. -// virtualNetworkGatewayName is the name of the virtual network gateway. -func (client VirtualNetworkGatewaysClient) Delete(resourceGroupName string, virtualNetworkGatewayName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, virtualNetworkGatewayName, cancel) +// Delete deletes the specified virtual network gateway. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkGatewayName - the name of the virtual network gateway. +func (client VirtualNetworkGatewaysClient) Delete(ctx context.Context, resourceGroupName string, virtualNetworkGatewayName string) (result VirtualNetworkGatewaysDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, virtualNetworkGatewayName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client VirtualNetworkGatewaysClient) DeletePreparer(resourceGroupName string, virtualNetworkGatewayName string, cancel <-chan struct{}) (*http.Request, error) { +func (client VirtualNetworkGatewaysClient) DeletePreparer(ctx context.Context, resourceGroupName string, virtualNetworkGatewayName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), "virtualNetworkGatewayName": autorest.Encode("path", virtualNetworkGatewayName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -168,15 +149,22 @@ func (client VirtualNetworkGatewaysClient) DeletePreparer(resourceGroupName stri autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client VirtualNetworkGatewaysClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client VirtualNetworkGatewaysClient) DeleteSender(req *http.Request) (future VirtualNetworkGatewaysDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -185,29 +173,30 @@ func (client VirtualNetworkGatewaysClient) DeleteResponder(resp *http.Response) err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusNoContent, http.StatusAccepted, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } -// Generatevpnclientpackage generates VPN client package for P2S client of the -// virtual network gateway in the specified resource group. -// -// resourceGroupName is the name of the resource group. -// virtualNetworkGatewayName is the name of the virtual network gateway. -// parameters is parameters supplied to the generate virtual network gateway -// VPN client package operation. -func (client VirtualNetworkGatewaysClient) Generatevpnclientpackage(resourceGroupName string, virtualNetworkGatewayName string, parameters VpnClientParameters) (result String, err error) { - req, err := client.GeneratevpnclientpackagePreparer(resourceGroupName, virtualNetworkGatewayName, parameters) +// Generatevpnclientpackage generates VPN client package for P2S client of the virtual network gateway in the specified +// resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkGatewayName - the name of the virtual network gateway. +// parameters - parameters supplied to the generate virtual network gateway VPN client package operation. +func (client VirtualNetworkGatewaysClient) Generatevpnclientpackage(ctx context.Context, resourceGroupName string, virtualNetworkGatewayName string, parameters VpnClientParameters) (result String, err error) { + req, err := client.GeneratevpnclientpackagePreparer(ctx, resourceGroupName, virtualNetworkGatewayName, parameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Generatevpnclientpackage", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Generatevpnclientpackage", nil, "Failure preparing request") + return } resp, err := client.GeneratevpnclientpackageSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Generatevpnclientpackage", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Generatevpnclientpackage", resp, "Failure sending request") + return } result, err = client.GeneratevpnclientpackageResponder(resp) @@ -219,31 +208,33 @@ func (client VirtualNetworkGatewaysClient) Generatevpnclientpackage(resourceGrou } // GeneratevpnclientpackagePreparer prepares the Generatevpnclientpackage request. -func (client VirtualNetworkGatewaysClient) GeneratevpnclientpackagePreparer(resourceGroupName string, virtualNetworkGatewayName string, parameters VpnClientParameters) (*http.Request, error) { +func (client VirtualNetworkGatewaysClient) GeneratevpnclientpackagePreparer(ctx context.Context, resourceGroupName string, virtualNetworkGatewayName string, parameters VpnClientParameters) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), "virtualNetworkGatewayName": autorest.Encode("path", virtualNetworkGatewayName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/generatevpnclientpackage", pathParameters), autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GeneratevpnclientpackageSender sends the Generatevpnclientpackage request. The method will close the // http.Response Body if it receives an error. func (client VirtualNetworkGatewaysClient) GeneratevpnclientpackageSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GeneratevpnclientpackageResponder handles the response to the Generatevpnclientpackage request. The method always @@ -260,19 +251,21 @@ func (client VirtualNetworkGatewaysClient) GeneratevpnclientpackageResponder(res } // Get gets the specified virtual network gateway by resource group. -// -// resourceGroupName is the name of the resource group. -// virtualNetworkGatewayName is the name of the virtual network gateway. -func (client VirtualNetworkGatewaysClient) Get(resourceGroupName string, virtualNetworkGatewayName string) (result VirtualNetworkGateway, err error) { - req, err := client.GetPreparer(resourceGroupName, virtualNetworkGatewayName) +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkGatewayName - the name of the virtual network gateway. +func (client VirtualNetworkGatewaysClient) Get(ctx context.Context, resourceGroupName string, virtualNetworkGatewayName string) (result VirtualNetworkGateway, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, virtualNetworkGatewayName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -284,15 +277,16 @@ func (client VirtualNetworkGatewaysClient) Get(resourceGroupName string, virtual } // GetPreparer prepares the Get request. -func (client VirtualNetworkGatewaysClient) GetPreparer(resourceGroupName string, virtualNetworkGatewayName string) (*http.Request, error) { +func (client VirtualNetworkGatewaysClient) GetPreparer(ctx context.Context, resourceGroupName string, virtualNetworkGatewayName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), "virtualNetworkGatewayName": autorest.Encode("path", virtualNetworkGatewayName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -300,13 +294,14 @@ func (client VirtualNetworkGatewaysClient) GetPreparer(resourceGroupName string, autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client VirtualNetworkGatewaysClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -323,21 +318,24 @@ func (client VirtualNetworkGatewaysClient) GetResponder(resp *http.Response) (re } // List gets all virtual network gateways by resource group. -// -// resourceGroupName is the name of the resource group. -func (client VirtualNetworkGatewaysClient) List(resourceGroupName string) (result VirtualNetworkGatewayListResult, err error) { - req, err := client.ListPreparer(resourceGroupName) +// Parameters: +// resourceGroupName - the name of the resource group. +func (client VirtualNetworkGatewaysClient) List(ctx context.Context, resourceGroupName string) (result VirtualNetworkGatewayListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "List", resp, "Failure sending request") + result.vnglr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.vnglr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "List", resp, "Failure responding to request") } @@ -346,14 +344,15 @@ func (client VirtualNetworkGatewaysClient) List(resourceGroupName string) (resul } // ListPreparer prepares the List request. -func (client VirtualNetworkGatewaysClient) ListPreparer(resourceGroupName string) (*http.Request, error) { +func (client VirtualNetworkGatewaysClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -361,13 +360,14 @@ func (client VirtualNetworkGatewaysClient) ListPreparer(resourceGroupName string autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client VirtualNetworkGatewaysClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -383,98 +383,102 @@ func (client VirtualNetworkGatewaysClient) ListResponder(resp *http.Response) (r return } -// ListNextResults retrieves the next set of results, if any. -func (client VirtualNetworkGatewaysClient) ListNextResults(lastResults VirtualNetworkGatewayListResult) (result VirtualNetworkGatewayListResult, err error) { - req, err := lastResults.VirtualNetworkGatewayListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client VirtualNetworkGatewaysClient) listNextResults(lastResults VirtualNetworkGatewayListResult) (result VirtualNetworkGatewayListResult, err error) { + req, err := lastResults.virtualNetworkGatewayListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "listNextResults", resp, "Failure responding to next results request") } - return } -// Reset resets the primary of the virtual network gateway in the specified -// resource group. This method may poll for completion. Polling can be -// canceled by passing the cancel channel argument. The channel will be used -// to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. -// virtualNetworkGatewayName is the name of the virtual network gateway. -// gatewayVip is virtual network gateway vip address supplied to the begin -// reset of the active-active feature enabled gateway. -func (client VirtualNetworkGatewaysClient) Reset(resourceGroupName string, virtualNetworkGatewayName string, gatewayVip string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.ResetPreparer(resourceGroupName, virtualNetworkGatewayName, gatewayVip, cancel) +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client VirtualNetworkGatewaysClient) ListComplete(ctx context.Context, resourceGroupName string) (result VirtualNetworkGatewayListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName) + return +} + +// Reset resets the primary of the virtual network gateway in the specified resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkGatewayName - the name of the virtual network gateway. +// parameters - virtual network gateway vip address supplied to the begin reset of the active-active feature +// enabled gateway. +func (client VirtualNetworkGatewaysClient) Reset(ctx context.Context, resourceGroupName string, virtualNetworkGatewayName string, parameters VirtualNetworkGateway) (result VirtualNetworkGatewaysResetFuture, err error) { + req, err := client.ResetPreparer(ctx, resourceGroupName, virtualNetworkGatewayName, parameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Reset", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Reset", nil, "Failure preparing request") + return } - resp, err := client.ResetSender(req) + result, err = client.ResetSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Reset", resp, "Failure sending request") - } - - result, err = client.ResetResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Reset", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworkGatewaysClient", "Reset", result.Response(), "Failure sending request") + return } return } // ResetPreparer prepares the Reset request. -func (client VirtualNetworkGatewaysClient) ResetPreparer(resourceGroupName string, virtualNetworkGatewayName string, gatewayVip string, cancel <-chan struct{}) (*http.Request, error) { +func (client VirtualNetworkGatewaysClient) ResetPreparer(ctx context.Context, resourceGroupName string, virtualNetworkGatewayName string, parameters VirtualNetworkGateway) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), "virtualNetworkGatewayName": autorest.Encode("path", virtualNetworkGatewayName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - if len(gatewayVip) > 0 { - queryParameters["gatewayVip"] = autorest.Encode("query", gatewayVip) + "api-version": APIVersion, } preparer := autorest.CreatePreparer( + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworkGateways/{virtualNetworkGatewayName}/reset", pathParameters), + autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ResetSender sends the Reset request. The method will close the // http.Response Body if it receives an error. -func (client VirtualNetworkGatewaysClient) ResetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client VirtualNetworkGatewaysClient) ResetSender(req *http.Request) (future VirtualNetworkGatewaysResetFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted)) + return } // ResetResponder handles the response to the Reset request. The method always // closes the http.Response Body. -func (client VirtualNetworkGatewaysClient) ResetResponder(resp *http.Response) (result autorest.Response, err error) { +func (client VirtualNetworkGatewaysClient) ResetResponder(resp *http.Response) (result VirtualNetworkGateway, err error) { err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusAccepted, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworks.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/virtualnetworks.go similarity index 50% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworks.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/virtualnetworks.go index 9046437af..0ad02f2a0 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/arm/network/virtualnetworks.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network/virtualnetworks.go @@ -14,212 +14,134 @@ package network // See the License for the specific language governing permissions and // limitations under the License. // -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( + "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "net/http" ) -// VirtualNetworksClient is the the Microsoft Azure Network management API -// provides a RESTful set of web services that interact with Microsoft Azure -// Networks service to manage your network resources. The API has entities -// that capture the relationship between an end user and the Microsoft Azure -// Networks service. +// VirtualNetworksClient is the network Client type VirtualNetworksClient struct { - ManagementClient + BaseClient } -// NewVirtualNetworksClient creates an instance of the VirtualNetworksClient -// client. +// NewVirtualNetworksClient creates an instance of the VirtualNetworksClient client. func NewVirtualNetworksClient(subscriptionID string) VirtualNetworksClient { return NewVirtualNetworksClientWithBaseURI(DefaultBaseURI, subscriptionID) } -// NewVirtualNetworksClientWithBaseURI creates an instance of the -// VirtualNetworksClient client. +// NewVirtualNetworksClientWithBaseURI creates an instance of the VirtualNetworksClient client. func NewVirtualNetworksClientWithBaseURI(baseURI string, subscriptionID string) VirtualNetworksClient { return VirtualNetworksClient{NewWithBaseURI(baseURI, subscriptionID)} } -// CheckIPAddressAvailability checks whether a private IP address is available -// for use. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. ipAddress is the private IP address to be -// verified. -func (client VirtualNetworksClient) CheckIPAddressAvailability(resourceGroupName string, virtualNetworkName string, ipAddress string) (result IPAddressAvailabilityResult, err error) { - req, err := client.CheckIPAddressAvailabilityPreparer(resourceGroupName, virtualNetworkName, ipAddress) +// CreateOrUpdate creates or updates a virtual network in the specified resource group. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkName - the name of the virtual network. +// parameters - parameters supplied to the create or update virtual network operation +func (client VirtualNetworksClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, virtualNetworkName string, parameters VirtualNetwork) (result VirtualNetworksCreateOrUpdateFuture, err error) { + req, err := client.CreateOrUpdatePreparer(ctx, resourceGroupName, virtualNetworkName, parameters) if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "CheckIPAddressAvailability", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "CreateOrUpdate", nil, "Failure preparing request") + return } - resp, err := client.CheckIPAddressAvailabilitySender(req) + result, err = client.CreateOrUpdateSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "CheckIPAddressAvailability", resp, "Failure sending request") - } - - result, err = client.CheckIPAddressAvailabilityResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "CheckIPAddressAvailability", resp, "Failure responding to request") - } - - return -} - -// CheckIPAddressAvailabilityPreparer prepares the CheckIPAddressAvailability request. -func (client VirtualNetworksClient) CheckIPAddressAvailabilityPreparer(resourceGroupName string, virtualNetworkName string, ipAddress string) (*http.Request, error) { - pathParameters := map[string]interface{}{ - "resourceGroupName": autorest.Encode("path", resourceGroupName), - "subscriptionId": autorest.Encode("path", client.SubscriptionID), - "virtualNetworkName": autorest.Encode("path", virtualNetworkName), - } - - queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, - } - if len(ipAddress) > 0 { - queryParameters["ipAddress"] = autorest.Encode("query", ipAddress) - } - - preparer := autorest.CreatePreparer( - autorest.AsGet(), - autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/CheckIPAddressAvailability", pathParameters), - autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) -} - -// CheckIPAddressAvailabilitySender sends the CheckIPAddressAvailability request. The method will close the -// http.Response Body if it receives an error. -func (client VirtualNetworksClient) CheckIPAddressAvailabilitySender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) -} - -// CheckIPAddressAvailabilityResponder handles the response to the CheckIPAddressAvailability request. The method always -// closes the http.Response Body. -func (client VirtualNetworksClient) CheckIPAddressAvailabilityResponder(resp *http.Response) (result IPAddressAvailabilityResult, err error) { - err = autorest.Respond( - resp, - client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&result), - autorest.ByClosing()) - result.Response = autorest.Response{Response: resp} - return -} - -// CreateOrUpdate creates or updates a virtual network in the specified -// resource group. This method may poll for completion. Polling can be -// canceled by passing the cancel channel argument. The channel will be used -// to cancel polling and any outstanding HTTP requests. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. parameters is parameters supplied to the -// create or update virtual network operation -func (client VirtualNetworksClient) CreateOrUpdate(resourceGroupName string, virtualNetworkName string, parameters VirtualNetwork, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.CreateOrUpdatePreparer(resourceGroupName, virtualNetworkName, parameters, cancel) - if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "CreateOrUpdate", nil, "Failure preparing request") - } - - resp, err := client.CreateOrUpdateSender(req) - if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "CreateOrUpdate", resp, "Failure sending request") - } - - result, err = client.CreateOrUpdateResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "CreateOrUpdate", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "CreateOrUpdate", result.Response(), "Failure sending request") + return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. -func (client VirtualNetworksClient) CreateOrUpdatePreparer(resourceGroupName string, virtualNetworkName string, parameters VirtualNetwork, cancel <-chan struct{}) (*http.Request, error) { +func (client VirtualNetworksClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, virtualNetworkName string, parameters VirtualNetwork) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), "virtualNetworkName": autorest.Encode("path", virtualNetworkName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( - autorest.AsJSON(), + autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}", pathParameters), autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. -func (client VirtualNetworksClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client VirtualNetworksClient) CreateOrUpdateSender(req *http.Request) (future VirtualNetworksCreateOrUpdateFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated)) + return } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. -func (client VirtualNetworksClient) CreateOrUpdateResponder(resp *http.Response) (result autorest.Response, err error) { +func (client VirtualNetworksClient) CreateOrUpdateResponder(resp *http.Response) (result VirtualNetwork, err error) { err = autorest.Respond( resp, client.ByInspecting(), azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), + autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) - result.Response = resp + result.Response = autorest.Response{Response: resp} return } -// Delete deletes the specified virtual network. This method may poll for -// completion. Polling can be canceled by passing the cancel channel -// argument. The channel will be used to cancel polling and any outstanding -// HTTP requests. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. -func (client VirtualNetworksClient) Delete(resourceGroupName string, virtualNetworkName string, cancel <-chan struct{}) (result autorest.Response, err error) { - req, err := client.DeletePreparer(resourceGroupName, virtualNetworkName, cancel) +// Delete deletes the specified virtual network. +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkName - the name of the virtual network. +func (client VirtualNetworksClient) Delete(ctx context.Context, resourceGroupName string, virtualNetworkName string) (result VirtualNetworksDeleteFuture, err error) { + req, err := client.DeletePreparer(ctx, resourceGroupName, virtualNetworkName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "Delete", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "Delete", nil, "Failure preparing request") + return } - resp, err := client.DeleteSender(req) + result, err = client.DeleteSender(req) if err != nil { - result.Response = resp - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "Delete", resp, "Failure sending request") - } - - result, err = client.DeleteResponder(resp) - if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "Delete", resp, "Failure responding to request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "Delete", result.Response(), "Failure sending request") + return } return } // DeletePreparer prepares the Delete request. -func (client VirtualNetworksClient) DeletePreparer(resourceGroupName string, virtualNetworkName string, cancel <-chan struct{}) (*http.Request, error) { +func (client VirtualNetworksClient) DeletePreparer(ctx context.Context, resourceGroupName string, virtualNetworkName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), "virtualNetworkName": autorest.Encode("path", virtualNetworkName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( @@ -227,15 +149,22 @@ func (client VirtualNetworksClient) DeletePreparer(resourceGroupName string, vir autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{Cancel: cancel}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteSender sends the Delete request. The method will close the // http.Response Body if it receives an error. -func (client VirtualNetworksClient) DeleteSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, - req, - azure.DoPollForAsynchronous(client.PollingDelay)) +func (client VirtualNetworksClient) DeleteSender(req *http.Request) (future VirtualNetworksDeleteFuture, err error) { + sender := autorest.DecorateSender(client, azure.DoRetryWithRegistration(client.Client)) + future.Future = azure.NewFuture(req) + future.req = req + _, err = future.Done(sender) + if err != nil { + return + } + err = autorest.Respond(future.Response(), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent)) + return } // DeleteResponder handles the response to the Delete request. The method always @@ -244,26 +173,29 @@ func (client VirtualNetworksClient) DeleteResponder(resp *http.Response) (result err = autorest.Respond( resp, client.ByInspecting(), - azure.WithErrorUnlessStatusCode(http.StatusAccepted, http.StatusNoContent, http.StatusOK), + azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } // Get gets the specified virtual network by resource group. -// -// resourceGroupName is the name of the resource group. virtualNetworkName is -// the name of the virtual network. expand is expands referenced resources. -func (client VirtualNetworksClient) Get(resourceGroupName string, virtualNetworkName string, expand string) (result VirtualNetwork, err error) { - req, err := client.GetPreparer(resourceGroupName, virtualNetworkName, expand) +// Parameters: +// resourceGroupName - the name of the resource group. +// virtualNetworkName - the name of the virtual network. +// expand - expands referenced resources. +func (client VirtualNetworksClient) Get(ctx context.Context, resourceGroupName string, virtualNetworkName string, expand string) (result VirtualNetwork, err error) { + req, err := client.GetPreparer(ctx, resourceGroupName, virtualNetworkName, expand) if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "Get", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "Get", nil, "Failure preparing request") + return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "Get", resp, "Failure sending request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "Get", resp, "Failure sending request") + return } result, err = client.GetResponder(resp) @@ -275,15 +207,16 @@ func (client VirtualNetworksClient) Get(resourceGroupName string, virtualNetwork } // GetPreparer prepares the Get request. -func (client VirtualNetworksClient) GetPreparer(resourceGroupName string, virtualNetworkName string, expand string) (*http.Request, error) { +func (client VirtualNetworksClient) GetPreparer(ctx context.Context, resourceGroupName string, virtualNetworkName string, expand string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), "virtualNetworkName": autorest.Encode("path", virtualNetworkName), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } if len(expand) > 0 { queryParameters["$expand"] = autorest.Encode("query", expand) @@ -294,13 +227,14 @@ func (client VirtualNetworksClient) GetPreparer(resourceGroupName string, virtua autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client VirtualNetworksClient) GetSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always @@ -317,21 +251,24 @@ func (client VirtualNetworksClient) GetResponder(resp *http.Response) (result Vi } // List gets all virtual networks in a resource group. -// -// resourceGroupName is the name of the resource group. -func (client VirtualNetworksClient) List(resourceGroupName string) (result VirtualNetworkListResult, err error) { - req, err := client.ListPreparer(resourceGroupName) +// Parameters: +// resourceGroupName - the name of the resource group. +func (client VirtualNetworksClient) List(ctx context.Context, resourceGroupName string) (result VirtualNetworkListResultPage, err error) { + result.fn = client.listNextResults + req, err := client.ListPreparer(ctx, resourceGroupName) if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "List", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "List", nil, "Failure preparing request") + return } resp, err := client.ListSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "List", resp, "Failure sending request") + result.vnlr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "List", resp, "Failure sending request") + return } - result, err = client.ListResponder(resp) + result.vnlr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "List", resp, "Failure responding to request") } @@ -340,28 +277,30 @@ func (client VirtualNetworksClient) List(resourceGroupName string) (result Virtu } // ListPreparer prepares the List request. -func (client VirtualNetworksClient) ListPreparer(resourceGroupName string) (*http.Request, error) { +func (client VirtualNetworksClient) ListPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks", pathParameters), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualnetworks", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client VirtualNetworksClient) ListSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always @@ -377,44 +316,50 @@ func (client VirtualNetworksClient) ListResponder(resp *http.Response) (result V return } -// ListNextResults retrieves the next set of results, if any. -func (client VirtualNetworksClient) ListNextResults(lastResults VirtualNetworkListResult) (result VirtualNetworkListResult, err error) { - req, err := lastResults.VirtualNetworkListResultPreparer() +// listNextResults retrieves the next set of results, if any. +func (client VirtualNetworksClient) listNextResults(lastResults VirtualNetworkListResult) (result VirtualNetworkListResult, err error) { + req, err := lastResults.virtualNetworkListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "List", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "List", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "listNextResults", resp, "Failure sending next results request") } - result, err = client.ListResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "List", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "listNextResults", resp, "Failure responding to next results request") } + return +} +// ListComplete enumerates all values, automatically crossing page boundaries as required. +func (client VirtualNetworksClient) ListComplete(ctx context.Context, resourceGroupName string) (result VirtualNetworkListResultIterator, err error) { + result.page, err = client.List(ctx, resourceGroupName) return } // ListAll gets all virtual networks in a subscription. -func (client VirtualNetworksClient) ListAll() (result VirtualNetworkListResult, err error) { - req, err := client.ListAllPreparer() +func (client VirtualNetworksClient) ListAll(ctx context.Context) (result VirtualNetworkListResultPage, err error) { + result.fn = client.listAllNextResults + req, err := client.ListAllPreparer(ctx) if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "ListAll", nil, "Failure preparing request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "ListAll", nil, "Failure preparing request") + return } resp, err := client.ListAllSender(req) if err != nil { - result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "ListAll", resp, "Failure sending request") + result.vnlr.Response = autorest.Response{Response: resp} + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "ListAll", resp, "Failure sending request") + return } - result, err = client.ListAllResponder(resp) + result.vnlr, err = client.ListAllResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "ListAll", resp, "Failure responding to request") } @@ -423,27 +368,29 @@ func (client VirtualNetworksClient) ListAll() (result VirtualNetworkListResult, } // ListAllPreparer prepares the ListAll request. -func (client VirtualNetworksClient) ListAllPreparer() (*http.Request, error) { +func (client VirtualNetworksClient) ListAllPreparer(ctx context.Context) (*http.Request, error) { pathParameters := map[string]interface{}{ "subscriptionId": autorest.Encode("path", client.SubscriptionID), } + const APIVersion = "2015-06-15" queryParameters := map[string]interface{}{ - "api-version": client.APIVersion, + "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), - autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualNetworks", pathParameters), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/virtualnetworks", pathParameters), autorest.WithQueryParameters(queryParameters)) - return preparer.Prepare(&http.Request{}) + return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListAllSender sends the ListAll request. The method will close the // http.Response Body if it receives an error. func (client VirtualNetworksClient) ListAllSender(req *http.Request) (*http.Response, error) { - return autorest.SendWithSender(client, req) + return autorest.SendWithSender(client, req, + azure.DoRetryWithRegistration(client.Client)) } // ListAllResponder handles the response to the ListAll request. The method always @@ -459,26 +406,29 @@ func (client VirtualNetworksClient) ListAllResponder(resp *http.Response) (resul return } -// ListAllNextResults retrieves the next set of results, if any. -func (client VirtualNetworksClient) ListAllNextResults(lastResults VirtualNetworkListResult) (result VirtualNetworkListResult, err error) { - req, err := lastResults.VirtualNetworkListResultPreparer() +// listAllNextResults retrieves the next set of results, if any. +func (client VirtualNetworksClient) listAllNextResults(lastResults VirtualNetworkListResult) (result VirtualNetworkListResult, err error) { + req, err := lastResults.virtualNetworkListResultPreparer() if err != nil { - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "ListAll", nil, "Failure preparing next results request") + return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "listAllNextResults", nil, "Failure preparing next results request") } if req == nil { return } - resp, err := client.ListAllSender(req) if err != nil { result.Response = autorest.Response{Response: resp} - return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "ListAll", resp, "Failure sending next results request") + return result, autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "listAllNextResults", resp, "Failure sending next results request") } - result, err = client.ListAllResponder(resp) if err != nil { - err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "ListAll", resp, "Failure responding to next results request") + err = autorest.NewErrorWithError(err, "network.VirtualNetworksClient", "listAllNextResults", resp, "Failure responding to next results request") } - + return +} + +// ListAllComplete enumerates all values, automatically crossing page boundaries as required. +func (client VirtualNetworksClient) ListAllComplete(ctx context.Context) (result VirtualNetworkListResultIterator, err error) { + result.page, err = client.ListAll(ctx) return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/version/version.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/version/version.go new file mode 100644 index 000000000..505f6982b --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/azure-sdk-for-go/version/version.go @@ -0,0 +1,21 @@ +package version + +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +// Number contains the semantic version of this SDK. +const Number = "v16.0.0" diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/README.md b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/README.md new file mode 100644 index 000000000..7b0c4bc4d --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/README.md @@ -0,0 +1,292 @@ +# Azure Active Directory authentication for Go + +This is a standalone package for authenticating with Azure Active +Directory from other Go libraries and applications, in particular the [Azure SDK +for Go](https://github.com/Azure/azure-sdk-for-go). + +Note: Despite the package's name it is not related to other "ADAL" libraries +maintained in the [github.com/AzureAD](https://github.com/AzureAD) org. Issues +should be opened in [this repo's](https://github.com/Azure/go-autorest/issues) +or [the SDK's](https://github.com/Azure/azure-sdk-for-go/issues) issue +trackers. + +## Install + +```bash +go get -u github.com/Azure/go-autorest/autorest/adal +``` + +## Usage + +An Active Directory application is required in order to use this library. An application can be registered in the [Azure Portal](https://portal.azure.com/) by following these [guidelines](https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-integrating-applications) or using the [Azure CLI](https://github.com/Azure/azure-cli). + +### Register an Azure AD Application with secret + + +1. Register a new application with a `secret` credential + + ``` + az ad app create \ + --display-name example-app \ + --homepage https://example-app/home \ + --identifier-uris https://example-app/app \ + --password secret + ``` + +2. Create a service principal using the `Application ID` from previous step + + ``` + az ad sp create --id "Application ID" + ``` + + * Replace `Application ID` with `appId` from step 1. + +### Register an Azure AD Application with certificate + +1. Create a private key + + ``` + openssl genrsa -out "example-app.key" 2048 + ``` + +2. Create the certificate + + ``` + openssl req -new -key "example-app.key" -subj "/CN=example-app" -out "example-app.csr" + openssl x509 -req -in "example-app.csr" -signkey "example-app.key" -out "example-app.crt" -days 10000 + ``` + +3. Create the PKCS12 version of the certificate containing also the private key + + ``` + openssl pkcs12 -export -out "example-app.pfx" -inkey "example-app.key" -in "example-app.crt" -passout pass: + + ``` + +4. Register a new application with the certificate content form `example-app.crt` + + ``` + certificateContents="$(tail -n+2 "example-app.crt" | head -n-1)" + + az ad app create \ + --display-name example-app \ + --homepage https://example-app/home \ + --identifier-uris https://example-app/app \ + --key-usage Verify --end-date 2018-01-01 \ + --key-value "${certificateContents}" + ``` + +5. Create a service principal using the `Application ID` from previous step + + ``` + az ad sp create --id "APPLICATION_ID" + ``` + + * Replace `APPLICATION_ID` with `appId` from step 4. + + +### Grant the necessary permissions + +Azure relies on a Role-Based Access Control (RBAC) model to manage the access to resources at a fine-grained +level. There is a set of [pre-defined roles](https://docs.microsoft.com/en-us/azure/active-directory/role-based-access-built-in-roles) +which can be assigned to a service principal of an Azure AD application depending of your needs. + +``` +az role assignment create --assigner "SERVICE_PRINCIPAL_ID" --role "ROLE_NAME" +``` + +* Replace the `SERVICE_PRINCIPAL_ID` with the `appId` from previous step. +* Replace the `ROLE_NAME` with a role name of your choice. + +It is also possible to define custom role definitions. + +``` +az role definition create --role-definition role-definition.json +``` + +* Check [custom roles](https://docs.microsoft.com/en-us/azure/active-directory/role-based-access-control-custom-roles) for more details regarding the content of `role-definition.json` file. + + +### Acquire Access Token + +The common configuration used by all flows: + +```Go +const activeDirectoryEndpoint = "https://login.microsoftonline.com/" +tenantID := "TENANT_ID" +oauthConfig, err := adal.NewOAuthConfig(activeDirectoryEndpoint, tenantID) + +applicationID := "APPLICATION_ID" + +callback := func(token adal.Token) error { + // This is called after the token is acquired +} + +// The resource for which the token is acquired +resource := "https://management.core.windows.net/" +``` + +* Replace the `TENANT_ID` with your tenant ID. +* Replace the `APPLICATION_ID` with the value from previous section. + +#### Client Credentials + +```Go +applicationSecret := "APPLICATION_SECRET" + +spt, err := adal.NewServicePrincipalToken( + oauthConfig, + appliationID, + applicationSecret, + resource, + callbacks...) +if err != nil { + return nil, err +} + +// Acquire a new access token +err = spt.Refresh() +if (err == nil) { + token := spt.Token +} +``` + +* Replace the `APPLICATION_SECRET` with the `password` value from previous section. + +#### Client Certificate + +```Go +certificatePath := "./example-app.pfx" + +certData, err := ioutil.ReadFile(certificatePath) +if err != nil { + return nil, fmt.Errorf("failed to read the certificate file (%s): %v", certificatePath, err) +} + +// Get the certificate and private key from pfx file +certificate, rsaPrivateKey, err := decodePkcs12(certData, "") +if err != nil { + return nil, fmt.Errorf("failed to decode pkcs12 certificate while creating spt: %v", err) +} + +spt, err := adal.NewServicePrincipalTokenFromCertificate( + oauthConfig, + applicationID, + certificate, + rsaPrivateKey, + resource, + callbacks...) + +// Acquire a new access token +err = spt.Refresh() +if (err == nil) { + token := spt.Token +} +``` + +* Update the certificate path to point to the example-app.pfx file which was created in previous section. + + +#### Device Code + +```Go +oauthClient := &http.Client{} + +// Acquire the device code +deviceCode, err := adal.InitiateDeviceAuth( + oauthClient, + oauthConfig, + applicationID, + resource) +if err != nil { + return nil, fmt.Errorf("Failed to start device auth flow: %s", err) +} + +// Display the authentication message +fmt.Println(*deviceCode.Message) + +// Wait here until the user is authenticated +token, err := adal.WaitForUserCompletion(oauthClient, deviceCode) +if err != nil { + return nil, fmt.Errorf("Failed to finish device auth flow: %s", err) +} + +spt, err := adal.NewServicePrincipalTokenFromManualToken( + oauthConfig, + applicationID, + resource, + *token, + callbacks...) + +if (err == nil) { + token := spt.Token +} +``` + +#### Username password authenticate + +```Go +spt, err := adal.NewServicePrincipalTokenFromUsernamePassword( + oauthConfig, + applicationID, + username, + password, + resource, + callbacks...) + +if (err == nil) { + token := spt.Token +} +``` + +#### Authorization code authenticate + +``` Go +spt, err := adal.NewServicePrincipalTokenFromAuthorizationCode( + oauthConfig, + applicationID, + clientSecret, + authorizationCode, + redirectURI, + resource, + callbacks...) + +err = spt.Refresh() +if (err == nil) { + token := spt.Token +} +``` + +### Command Line Tool + +A command line tool is available in `cmd/adal.go` that can acquire a token for a given resource. It supports all flows mentioned above. + +``` +adal -h + +Usage of ./adal: + -applicationId string + application id + -certificatePath string + path to pk12/PFC application certificate + -mode string + authentication mode (device, secret, cert, refresh) (default "device") + -resource string + resource for which the token is requested + -secret string + application secret + -tenantId string + tenant id + -tokenCachePath string + location of oath token cache (default "/home/cgc/.adal/accessToken.json") +``` + +Example acquire a token for `https://management.core.windows.net/` using device code flow: + +``` +adal -mode device \ + -applicationId "APPLICATION_ID" \ + -tenantId "TENANT_ID" \ + -resource https://management.core.windows.net/ + +``` diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/config.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/config.go new file mode 100644 index 000000000..f570d540a --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/config.go @@ -0,0 +1,81 @@ +package adal + +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +import ( + "fmt" + "net/url" +) + +const ( + activeDirectoryAPIVersion = "1.0" +) + +// OAuthConfig represents the endpoints needed +// in OAuth operations +type OAuthConfig struct { + AuthorityEndpoint url.URL + AuthorizeEndpoint url.URL + TokenEndpoint url.URL + DeviceCodeEndpoint url.URL +} + +// IsZero returns true if the OAuthConfig object is zero-initialized. +func (oac OAuthConfig) IsZero() bool { + return oac == OAuthConfig{} +} + +func validateStringParam(param, name string) error { + if len(param) == 0 { + return fmt.Errorf("parameter '" + name + "' cannot be empty") + } + return nil +} + +// NewOAuthConfig returns an OAuthConfig with tenant specific urls +func NewOAuthConfig(activeDirectoryEndpoint, tenantID string) (*OAuthConfig, error) { + if err := validateStringParam(activeDirectoryEndpoint, "activeDirectoryEndpoint"); err != nil { + return nil, err + } + // it's legal for tenantID to be empty so don't validate it + const activeDirectoryEndpointTemplate = "%s/oauth2/%s?api-version=%s" + u, err := url.Parse(activeDirectoryEndpoint) + if err != nil { + return nil, err + } + authorityURL, err := u.Parse(tenantID) + if err != nil { + return nil, err + } + authorizeURL, err := u.Parse(fmt.Sprintf(activeDirectoryEndpointTemplate, tenantID, "authorize", activeDirectoryAPIVersion)) + if err != nil { + return nil, err + } + tokenURL, err := u.Parse(fmt.Sprintf(activeDirectoryEndpointTemplate, tenantID, "token", activeDirectoryAPIVersion)) + if err != nil { + return nil, err + } + deviceCodeURL, err := u.Parse(fmt.Sprintf(activeDirectoryEndpointTemplate, tenantID, "devicecode", activeDirectoryAPIVersion)) + if err != nil { + return nil, err + } + + return &OAuthConfig{ + AuthorityEndpoint: *authorityURL, + AuthorizeEndpoint: *authorizeURL, + TokenEndpoint: *tokenURL, + DeviceCodeEndpoint: *deviceCodeURL, + }, nil +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/devicetoken.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/devicetoken.go similarity index 59% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/devicetoken.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/devicetoken.go index e1d5498a8..b38f4c245 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/devicetoken.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/devicetoken.go @@ -1,4 +1,18 @@ -package azure +package adal + +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. /* This file is largely based on rjw57/oauth2device's code, with the follow differences: @@ -10,16 +24,17 @@ package azure */ import ( + "encoding/json" "fmt" + "io/ioutil" "net/http" "net/url" + "strings" "time" - - "github.com/Azure/go-autorest/autorest" ) const ( - logPrefix = "autorest/azure/devicetoken:" + logPrefix = "autorest/adal/devicetoken:" ) var ( @@ -38,10 +53,17 @@ var ( // ErrDeviceSlowDown represents the service telling us we're polling too often during device flow ErrDeviceSlowDown = fmt.Errorf("%s Error while retrieving OAuth token: Slow Down", logPrefix) + // ErrDeviceCodeEmpty represents an empty device code from the device endpoint while using device flow + ErrDeviceCodeEmpty = fmt.Errorf("%s Error while retrieving device code: Device Code Empty", logPrefix) + + // ErrOAuthTokenEmpty represents an empty OAuth token from the token endpoint when using device flow + ErrOAuthTokenEmpty = fmt.Errorf("%s Error while retrieving OAuth token: Token Empty", logPrefix) + errCodeSendingFails = "Error occurred while sending request for Device Authorization Code" errCodeHandlingFails = "Error occurred while handling response from the Device Endpoint" errTokenSendingFails = "Error occurred while sending request with device code for a token" errTokenHandlingFails = "Error occurred while handling response from the Token Endpoint (during device flow)" + errStatusNotOK = "Error HTTP status != 200" ) // DeviceCode is the object returned by the device auth endpoint @@ -79,31 +101,45 @@ type deviceToken struct { // InitiateDeviceAuth initiates a device auth flow. It returns a DeviceCode // that can be used with CheckForUserCompletion or WaitForUserCompletion. -func InitiateDeviceAuth(client *autorest.Client, oauthConfig OAuthConfig, clientID, resource string) (*DeviceCode, error) { - req, _ := autorest.Prepare( - &http.Request{}, - autorest.AsPost(), - autorest.AsFormURLEncoded(), - autorest.WithBaseURL(oauthConfig.DeviceCodeEndpoint.String()), - autorest.WithFormData(url.Values{ - "client_id": []string{clientID}, - "resource": []string{resource}, - }), - ) +func InitiateDeviceAuth(sender Sender, oauthConfig OAuthConfig, clientID, resource string) (*DeviceCode, error) { + v := url.Values{ + "client_id": []string{clientID}, + "resource": []string{resource}, + } - resp, err := autorest.SendWithSender(client, req) + s := v.Encode() + body := ioutil.NopCloser(strings.NewReader(s)) + + req, err := http.NewRequest(http.MethodPost, oauthConfig.DeviceCodeEndpoint.String(), body) if err != nil { - return nil, fmt.Errorf("%s %s: %s", logPrefix, errCodeSendingFails, err) + return nil, fmt.Errorf("%s %s: %s", logPrefix, errCodeSendingFails, err.Error()) + } + + req.ContentLength = int64(len(s)) + req.Header.Set(contentType, mimeTypeFormPost) + resp, err := sender.Do(req) + if err != nil { + return nil, fmt.Errorf("%s %s: %s", logPrefix, errCodeSendingFails, err.Error()) + } + defer resp.Body.Close() + + rb, err := ioutil.ReadAll(resp.Body) + if err != nil { + return nil, fmt.Errorf("%s %s: %s", logPrefix, errCodeHandlingFails, err.Error()) + } + + if resp.StatusCode != http.StatusOK { + return nil, fmt.Errorf("%s %s: %s", logPrefix, errCodeHandlingFails, errStatusNotOK) + } + + if len(strings.Trim(string(rb), " ")) == 0 { + return nil, ErrDeviceCodeEmpty } var code DeviceCode - err = autorest.Respond( - resp, - autorest.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&code), - autorest.ByClosing()) + err = json.Unmarshal(rb, &code) if err != nil { - return nil, fmt.Errorf("%s %s: %s", logPrefix, errCodeHandlingFails, err) + return nil, fmt.Errorf("%s %s: %s", logPrefix, errCodeHandlingFails, err.Error()) } code.ClientID = clientID @@ -115,33 +151,46 @@ func InitiateDeviceAuth(client *autorest.Client, oauthConfig OAuthConfig, client // CheckForUserCompletion takes a DeviceCode and checks with the Azure AD OAuth endpoint // to see if the device flow has: been completed, timed out, or otherwise failed -func CheckForUserCompletion(client *autorest.Client, code *DeviceCode) (*Token, error) { - req, _ := autorest.Prepare( - &http.Request{}, - autorest.AsPost(), - autorest.AsFormURLEncoded(), - autorest.WithBaseURL(code.OAuthConfig.TokenEndpoint.String()), - autorest.WithFormData(url.Values{ - "client_id": []string{code.ClientID}, - "code": []string{*code.DeviceCode}, - "grant_type": []string{OAuthGrantTypeDeviceCode}, - "resource": []string{code.Resource}, - }), - ) +func CheckForUserCompletion(sender Sender, code *DeviceCode) (*Token, error) { + v := url.Values{ + "client_id": []string{code.ClientID}, + "code": []string{*code.DeviceCode}, + "grant_type": []string{OAuthGrantTypeDeviceCode}, + "resource": []string{code.Resource}, + } - resp, err := autorest.SendWithSender(client, req) + s := v.Encode() + body := ioutil.NopCloser(strings.NewReader(s)) + + req, err := http.NewRequest(http.MethodPost, code.OAuthConfig.TokenEndpoint.String(), body) if err != nil { - return nil, fmt.Errorf("%s %s: %s", logPrefix, errTokenSendingFails, err) + return nil, fmt.Errorf("%s %s: %s", logPrefix, errTokenSendingFails, err.Error()) + } + + req.ContentLength = int64(len(s)) + req.Header.Set(contentType, mimeTypeFormPost) + resp, err := sender.Do(req) + if err != nil { + return nil, fmt.Errorf("%s %s: %s", logPrefix, errTokenSendingFails, err.Error()) + } + defer resp.Body.Close() + + rb, err := ioutil.ReadAll(resp.Body) + if err != nil { + return nil, fmt.Errorf("%s %s: %s", logPrefix, errTokenHandlingFails, err.Error()) + } + + if resp.StatusCode != http.StatusOK && len(strings.Trim(string(rb), " ")) == 0 { + return nil, fmt.Errorf("%s %s: %s", logPrefix, errTokenHandlingFails, errStatusNotOK) + } + if len(strings.Trim(string(rb), " ")) == 0 { + return nil, ErrOAuthTokenEmpty } var token deviceToken - err = autorest.Respond( - resp, - autorest.WithErrorUnlessStatusCode(http.StatusOK, http.StatusBadRequest), - autorest.ByUnmarshallingJSON(&token), - autorest.ByClosing()) + err = json.Unmarshal(rb, &token) if err != nil { - return nil, fmt.Errorf("%s %s: %s", logPrefix, errTokenHandlingFails, err) + return nil, fmt.Errorf("%s %s: %s", logPrefix, errTokenHandlingFails, err.Error()) } if token.Error == nil { @@ -164,12 +213,12 @@ func CheckForUserCompletion(client *autorest.Client, code *DeviceCode) (*Token, // WaitForUserCompletion calls CheckForUserCompletion repeatedly until a token is granted or an error state occurs. // This prevents the user from looping and checking against 'ErrDeviceAuthorizationPending'. -func WaitForUserCompletion(client *autorest.Client, code *DeviceCode) (*Token, error) { +func WaitForUserCompletion(sender Sender, code *DeviceCode) (*Token, error) { intervalDuration := time.Duration(*code.Interval) * time.Second waitDuration := intervalDuration for { - token, err := CheckForUserCompletion(client, code) + token, err := CheckForUserCompletion(sender, code) if err == nil { return token, nil diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/persist.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/persist.go similarity index 74% rename from vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/persist.go rename to vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/persist.go index d5cf62ddc..9e15f2751 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/persist.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/persist.go @@ -1,4 +1,18 @@ -package azure +package adal + +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. import ( "encoding/json" diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/sender.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/sender.go new file mode 100644 index 000000000..0e5ad14d3 --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/sender.go @@ -0,0 +1,60 @@ +package adal + +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +import ( + "net/http" +) + +const ( + contentType = "Content-Type" + mimeTypeFormPost = "application/x-www-form-urlencoded" +) + +// Sender is the interface that wraps the Do method to send HTTP requests. +// +// The standard http.Client conforms to this interface. +type Sender interface { + Do(*http.Request) (*http.Response, error) +} + +// SenderFunc is a method that implements the Sender interface. +type SenderFunc func(*http.Request) (*http.Response, error) + +// Do implements the Sender interface on SenderFunc. +func (sf SenderFunc) Do(r *http.Request) (*http.Response, error) { + return sf(r) +} + +// SendDecorator takes and possibily decorates, by wrapping, a Sender. Decorators may affect the +// http.Request and pass it along or, first, pass the http.Request along then react to the +// http.Response result. +type SendDecorator func(Sender) Sender + +// CreateSender creates, decorates, and returns, as a Sender, the default http.Client. +func CreateSender(decorators ...SendDecorator) Sender { + return DecorateSender(&http.Client{}, decorators...) +} + +// DecorateSender accepts a Sender and a, possibly empty, set of SendDecorators, which is applies to +// the Sender. Decorators are applied in the order received, but their affect upon the request +// depends on whether they are a pre-decorator (change the http.Request and then pass it along) or a +// post-decorator (pass the http.Request along and react to the results in http.Response). +func DecorateSender(s Sender, decorators ...SendDecorator) Sender { + for _, decorate := range decorators { + s = decorate(s) + } + return s +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/token.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/token.go new file mode 100644 index 000000000..b7d5c6071 --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/adal/token.go @@ -0,0 +1,782 @@ +package adal + +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +import ( + "context" + "crypto/rand" + "crypto/rsa" + "crypto/sha1" + "crypto/x509" + "encoding/base64" + "encoding/json" + "fmt" + "io/ioutil" + "net/http" + "net/url" + "strconv" + "strings" + "sync" + "time" + + "github.com/Azure/go-autorest/autorest/date" + "github.com/dgrijalva/jwt-go" +) + +const ( + defaultRefresh = 5 * time.Minute + + // OAuthGrantTypeDeviceCode is the "grant_type" identifier used in device flow + OAuthGrantTypeDeviceCode = "device_code" + + // OAuthGrantTypeClientCredentials is the "grant_type" identifier used in credential flows + OAuthGrantTypeClientCredentials = "client_credentials" + + // OAuthGrantTypeUserPass is the "grant_type" identifier used in username and password auth flows + OAuthGrantTypeUserPass = "password" + + // OAuthGrantTypeRefreshToken is the "grant_type" identifier used in refresh token flows + OAuthGrantTypeRefreshToken = "refresh_token" + + // OAuthGrantTypeAuthorizationCode is the "grant_type" identifier used in authorization code flows + OAuthGrantTypeAuthorizationCode = "authorization_code" + + // metadataHeader is the header required by MSI extension + metadataHeader = "Metadata" + + // msiEndpoint is the well known endpoint for getting MSI authentications tokens + msiEndpoint = "http://169.254.169.254/metadata/identity/oauth2/token" +) + +// OAuthTokenProvider is an interface which should be implemented by an access token retriever +type OAuthTokenProvider interface { + OAuthToken() string +} + +// TokenRefreshError is an interface used by errors returned during token refresh. +type TokenRefreshError interface { + error + Response() *http.Response +} + +// Refresher is an interface for token refresh functionality +type Refresher interface { + Refresh() error + RefreshExchange(resource string) error + EnsureFresh() error +} + +// RefresherWithContext is an interface for token refresh functionality +type RefresherWithContext interface { + RefreshWithContext(ctx context.Context) error + RefreshExchangeWithContext(ctx context.Context, resource string) error + EnsureFreshWithContext(ctx context.Context) error +} + +// TokenRefreshCallback is the type representing callbacks that will be called after +// a successful token refresh +type TokenRefreshCallback func(Token) error + +// Token encapsulates the access token used to authorize Azure requests. +type Token struct { + AccessToken string `json:"access_token"` + RefreshToken string `json:"refresh_token"` + + ExpiresIn string `json:"expires_in"` + ExpiresOn string `json:"expires_on"` + NotBefore string `json:"not_before"` + + Resource string `json:"resource"` + Type string `json:"token_type"` +} + +// IsZero returns true if the token object is zero-initialized. +func (t Token) IsZero() bool { + return t == Token{} +} + +// Expires returns the time.Time when the Token expires. +func (t Token) Expires() time.Time { + s, err := strconv.Atoi(t.ExpiresOn) + if err != nil { + s = -3600 + } + + expiration := date.NewUnixTimeFromSeconds(float64(s)) + + return time.Time(expiration).UTC() +} + +// IsExpired returns true if the Token is expired, false otherwise. +func (t Token) IsExpired() bool { + return t.WillExpireIn(0) +} + +// WillExpireIn returns true if the Token will expire after the passed time.Duration interval +// from now, false otherwise. +func (t Token) WillExpireIn(d time.Duration) bool { + return !t.Expires().After(time.Now().Add(d)) +} + +//OAuthToken return the current access token +func (t *Token) OAuthToken() string { + return t.AccessToken +} + +// ServicePrincipalNoSecret represents a secret type that contains no secret +// meaning it is not valid for fetching a fresh token. This is used by Manual +type ServicePrincipalNoSecret struct { +} + +// SetAuthenticationValues is a method of the interface ServicePrincipalSecret +// It only returns an error for the ServicePrincipalNoSecret type +func (noSecret *ServicePrincipalNoSecret) SetAuthenticationValues(spt *ServicePrincipalToken, v *url.Values) error { + return fmt.Errorf("Manually created ServicePrincipalToken does not contain secret material to retrieve a new access token") +} + +// ServicePrincipalSecret is an interface that allows various secret mechanism to fill the form +// that is submitted when acquiring an oAuth token. +type ServicePrincipalSecret interface { + SetAuthenticationValues(spt *ServicePrincipalToken, values *url.Values) error +} + +// ServicePrincipalTokenSecret implements ServicePrincipalSecret for client_secret type authorization. +type ServicePrincipalTokenSecret struct { + ClientSecret string +} + +// SetAuthenticationValues is a method of the interface ServicePrincipalSecret. +// It will populate the form submitted during oAuth Token Acquisition using the client_secret. +func (tokenSecret *ServicePrincipalTokenSecret) SetAuthenticationValues(spt *ServicePrincipalToken, v *url.Values) error { + v.Set("client_secret", tokenSecret.ClientSecret) + return nil +} + +// ServicePrincipalCertificateSecret implements ServicePrincipalSecret for generic RSA cert auth with signed JWTs. +type ServicePrincipalCertificateSecret struct { + Certificate *x509.Certificate + PrivateKey *rsa.PrivateKey +} + +// ServicePrincipalMSISecret implements ServicePrincipalSecret for machines running the MSI Extension. +type ServicePrincipalMSISecret struct { +} + +// ServicePrincipalUsernamePasswordSecret implements ServicePrincipalSecret for username and password auth. +type ServicePrincipalUsernamePasswordSecret struct { + Username string + Password string +} + +// ServicePrincipalAuthorizationCodeSecret implements ServicePrincipalSecret for authorization code auth. +type ServicePrincipalAuthorizationCodeSecret struct { + ClientSecret string + AuthorizationCode string + RedirectURI string +} + +// SetAuthenticationValues is a method of the interface ServicePrincipalSecret. +func (secret *ServicePrincipalAuthorizationCodeSecret) SetAuthenticationValues(spt *ServicePrincipalToken, v *url.Values) error { + v.Set("code", secret.AuthorizationCode) + v.Set("client_secret", secret.ClientSecret) + v.Set("redirect_uri", secret.RedirectURI) + return nil +} + +// SetAuthenticationValues is a method of the interface ServicePrincipalSecret. +func (secret *ServicePrincipalUsernamePasswordSecret) SetAuthenticationValues(spt *ServicePrincipalToken, v *url.Values) error { + v.Set("username", secret.Username) + v.Set("password", secret.Password) + return nil +} + +// SetAuthenticationValues is a method of the interface ServicePrincipalSecret. +func (msiSecret *ServicePrincipalMSISecret) SetAuthenticationValues(spt *ServicePrincipalToken, v *url.Values) error { + return nil +} + +// SignJwt returns the JWT signed with the certificate's private key. +func (secret *ServicePrincipalCertificateSecret) SignJwt(spt *ServicePrincipalToken) (string, error) { + hasher := sha1.New() + _, err := hasher.Write(secret.Certificate.Raw) + if err != nil { + return "", err + } + + thumbprint := base64.URLEncoding.EncodeToString(hasher.Sum(nil)) + + // The jti (JWT ID) claim provides a unique identifier for the JWT. + jti := make([]byte, 20) + _, err = rand.Read(jti) + if err != nil { + return "", err + } + + token := jwt.New(jwt.SigningMethodRS256) + token.Header["x5t"] = thumbprint + token.Claims = jwt.MapClaims{ + "aud": spt.oauthConfig.TokenEndpoint.String(), + "iss": spt.clientID, + "sub": spt.clientID, + "jti": base64.URLEncoding.EncodeToString(jti), + "nbf": time.Now().Unix(), + "exp": time.Now().Add(time.Hour * 24).Unix(), + } + + signedString, err := token.SignedString(secret.PrivateKey) + return signedString, err +} + +// SetAuthenticationValues is a method of the interface ServicePrincipalSecret. +// It will populate the form submitted during oAuth Token Acquisition using a JWT signed with a certificate. +func (secret *ServicePrincipalCertificateSecret) SetAuthenticationValues(spt *ServicePrincipalToken, v *url.Values) error { + jwt, err := secret.SignJwt(spt) + if err != nil { + return err + } + + v.Set("client_assertion", jwt) + v.Set("client_assertion_type", "urn:ietf:params:oauth:client-assertion-type:jwt-bearer") + return nil +} + +// ServicePrincipalToken encapsulates a Token created for a Service Principal. +type ServicePrincipalToken struct { + token Token + secret ServicePrincipalSecret + oauthConfig OAuthConfig + clientID string + resource string + autoRefresh bool + refreshLock *sync.RWMutex + refreshWithin time.Duration + sender Sender + + refreshCallbacks []TokenRefreshCallback +} + +func validateOAuthConfig(oac OAuthConfig) error { + if oac.IsZero() { + return fmt.Errorf("parameter 'oauthConfig' cannot be zero-initialized") + } + return nil +} + +// NewServicePrincipalTokenWithSecret create a ServicePrincipalToken using the supplied ServicePrincipalSecret implementation. +func NewServicePrincipalTokenWithSecret(oauthConfig OAuthConfig, id string, resource string, secret ServicePrincipalSecret, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { + if err := validateOAuthConfig(oauthConfig); err != nil { + return nil, err + } + if err := validateStringParam(id, "id"); err != nil { + return nil, err + } + if err := validateStringParam(resource, "resource"); err != nil { + return nil, err + } + if secret == nil { + return nil, fmt.Errorf("parameter 'secret' cannot be nil") + } + spt := &ServicePrincipalToken{ + oauthConfig: oauthConfig, + secret: secret, + clientID: id, + resource: resource, + autoRefresh: true, + refreshLock: &sync.RWMutex{}, + refreshWithin: defaultRefresh, + sender: &http.Client{}, + refreshCallbacks: callbacks, + } + return spt, nil +} + +// NewServicePrincipalTokenFromManualToken creates a ServicePrincipalToken using the supplied token +func NewServicePrincipalTokenFromManualToken(oauthConfig OAuthConfig, clientID string, resource string, token Token, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { + if err := validateOAuthConfig(oauthConfig); err != nil { + return nil, err + } + if err := validateStringParam(clientID, "clientID"); err != nil { + return nil, err + } + if err := validateStringParam(resource, "resource"); err != nil { + return nil, err + } + if token.IsZero() { + return nil, fmt.Errorf("parameter 'token' cannot be zero-initialized") + } + spt, err := NewServicePrincipalTokenWithSecret( + oauthConfig, + clientID, + resource, + &ServicePrincipalNoSecret{}, + callbacks...) + if err != nil { + return nil, err + } + + spt.token = token + + return spt, nil +} + +// NewServicePrincipalToken creates a ServicePrincipalToken from the supplied Service Principal +// credentials scoped to the named resource. +func NewServicePrincipalToken(oauthConfig OAuthConfig, clientID string, secret string, resource string, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { + if err := validateOAuthConfig(oauthConfig); err != nil { + return nil, err + } + if err := validateStringParam(clientID, "clientID"); err != nil { + return nil, err + } + if err := validateStringParam(secret, "secret"); err != nil { + return nil, err + } + if err := validateStringParam(resource, "resource"); err != nil { + return nil, err + } + return NewServicePrincipalTokenWithSecret( + oauthConfig, + clientID, + resource, + &ServicePrincipalTokenSecret{ + ClientSecret: secret, + }, + callbacks..., + ) +} + +// NewServicePrincipalTokenFromCertificate creates a ServicePrincipalToken from the supplied pkcs12 bytes. +func NewServicePrincipalTokenFromCertificate(oauthConfig OAuthConfig, clientID string, certificate *x509.Certificate, privateKey *rsa.PrivateKey, resource string, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { + if err := validateOAuthConfig(oauthConfig); err != nil { + return nil, err + } + if err := validateStringParam(clientID, "clientID"); err != nil { + return nil, err + } + if err := validateStringParam(resource, "resource"); err != nil { + return nil, err + } + if certificate == nil { + return nil, fmt.Errorf("parameter 'certificate' cannot be nil") + } + if privateKey == nil { + return nil, fmt.Errorf("parameter 'privateKey' cannot be nil") + } + return NewServicePrincipalTokenWithSecret( + oauthConfig, + clientID, + resource, + &ServicePrincipalCertificateSecret{ + PrivateKey: privateKey, + Certificate: certificate, + }, + callbacks..., + ) +} + +// NewServicePrincipalTokenFromUsernamePassword creates a ServicePrincipalToken from the username and password. +func NewServicePrincipalTokenFromUsernamePassword(oauthConfig OAuthConfig, clientID string, username string, password string, resource string, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { + if err := validateOAuthConfig(oauthConfig); err != nil { + return nil, err + } + if err := validateStringParam(clientID, "clientID"); err != nil { + return nil, err + } + if err := validateStringParam(username, "username"); err != nil { + return nil, err + } + if err := validateStringParam(password, "password"); err != nil { + return nil, err + } + if err := validateStringParam(resource, "resource"); err != nil { + return nil, err + } + return NewServicePrincipalTokenWithSecret( + oauthConfig, + clientID, + resource, + &ServicePrincipalUsernamePasswordSecret{ + Username: username, + Password: password, + }, + callbacks..., + ) +} + +// NewServicePrincipalTokenFromAuthorizationCode creates a ServicePrincipalToken from the +func NewServicePrincipalTokenFromAuthorizationCode(oauthConfig OAuthConfig, clientID string, clientSecret string, authorizationCode string, redirectURI string, resource string, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { + + if err := validateOAuthConfig(oauthConfig); err != nil { + return nil, err + } + if err := validateStringParam(clientID, "clientID"); err != nil { + return nil, err + } + if err := validateStringParam(clientSecret, "clientSecret"); err != nil { + return nil, err + } + if err := validateStringParam(authorizationCode, "authorizationCode"); err != nil { + return nil, err + } + if err := validateStringParam(redirectURI, "redirectURI"); err != nil { + return nil, err + } + if err := validateStringParam(resource, "resource"); err != nil { + return nil, err + } + + return NewServicePrincipalTokenWithSecret( + oauthConfig, + clientID, + resource, + &ServicePrincipalAuthorizationCodeSecret{ + ClientSecret: clientSecret, + AuthorizationCode: authorizationCode, + RedirectURI: redirectURI, + }, + callbacks..., + ) +} + +// GetMSIVMEndpoint gets the MSI endpoint on Virtual Machines. +func GetMSIVMEndpoint() (string, error) { + return msiEndpoint, nil +} + +// NewServicePrincipalTokenFromMSI creates a ServicePrincipalToken via the MSI VM Extension. +// It will use the system assigned identity when creating the token. +func NewServicePrincipalTokenFromMSI(msiEndpoint, resource string, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { + return newServicePrincipalTokenFromMSI(msiEndpoint, resource, nil, callbacks...) +} + +// NewServicePrincipalTokenFromMSIWithUserAssignedID creates a ServicePrincipalToken via the MSI VM Extension. +// It will use the specified user assigned identity when creating the token. +func NewServicePrincipalTokenFromMSIWithUserAssignedID(msiEndpoint, resource string, userAssignedID string, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { + return newServicePrincipalTokenFromMSI(msiEndpoint, resource, &userAssignedID, callbacks...) +} + +func newServicePrincipalTokenFromMSI(msiEndpoint, resource string, userAssignedID *string, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { + if err := validateStringParam(msiEndpoint, "msiEndpoint"); err != nil { + return nil, err + } + if err := validateStringParam(resource, "resource"); err != nil { + return nil, err + } + if userAssignedID != nil { + if err := validateStringParam(*userAssignedID, "userAssignedID"); err != nil { + return nil, err + } + } + // We set the oauth config token endpoint to be MSI's endpoint + msiEndpointURL, err := url.Parse(msiEndpoint) + if err != nil { + return nil, err + } + + v := url.Values{} + v.Set("resource", resource) + v.Set("api-version", "2018-02-01") + if userAssignedID != nil { + v.Set("client_id", *userAssignedID) + } + msiEndpointURL.RawQuery = v.Encode() + + spt := &ServicePrincipalToken{ + oauthConfig: OAuthConfig{ + TokenEndpoint: *msiEndpointURL, + }, + secret: &ServicePrincipalMSISecret{}, + resource: resource, + autoRefresh: true, + refreshLock: &sync.RWMutex{}, + refreshWithin: defaultRefresh, + sender: &http.Client{}, + refreshCallbacks: callbacks, + } + + if userAssignedID != nil { + spt.clientID = *userAssignedID + } + + return spt, nil +} + +// internal type that implements TokenRefreshError +type tokenRefreshError struct { + message string + resp *http.Response +} + +// Error implements the error interface which is part of the TokenRefreshError interface. +func (tre tokenRefreshError) Error() string { + return tre.message +} + +// Response implements the TokenRefreshError interface, it returns the raw HTTP response from the refresh operation. +func (tre tokenRefreshError) Response() *http.Response { + return tre.resp +} + +func newTokenRefreshError(message string, resp *http.Response) TokenRefreshError { + return tokenRefreshError{message: message, resp: resp} +} + +// EnsureFresh will refresh the token if it will expire within the refresh window (as set by +// RefreshWithin) and autoRefresh flag is on. This method is safe for concurrent use. +func (spt *ServicePrincipalToken) EnsureFresh() error { + return spt.EnsureFreshWithContext(context.Background()) +} + +// EnsureFreshWithContext will refresh the token if it will expire within the refresh window (as set by +// RefreshWithin) and autoRefresh flag is on. This method is safe for concurrent use. +func (spt *ServicePrincipalToken) EnsureFreshWithContext(ctx context.Context) error { + if spt.autoRefresh && spt.token.WillExpireIn(spt.refreshWithin) { + // take the write lock then check to see if the token was already refreshed + spt.refreshLock.Lock() + defer spt.refreshLock.Unlock() + if spt.token.WillExpireIn(spt.refreshWithin) { + return spt.refreshInternal(ctx, spt.resource) + } + } + return nil +} + +// InvokeRefreshCallbacks calls any TokenRefreshCallbacks that were added to the SPT during initialization +func (spt *ServicePrincipalToken) InvokeRefreshCallbacks(token Token) error { + if spt.refreshCallbacks != nil { + for _, callback := range spt.refreshCallbacks { + err := callback(spt.token) + if err != nil { + return fmt.Errorf("adal: TokenRefreshCallback handler failed. Error = '%v'", err) + } + } + } + return nil +} + +// Refresh obtains a fresh token for the Service Principal. +// This method is not safe for concurrent use and should be syncrhonized. +func (spt *ServicePrincipalToken) Refresh() error { + return spt.RefreshWithContext(context.Background()) +} + +// RefreshWithContext obtains a fresh token for the Service Principal. +// This method is not safe for concurrent use and should be syncrhonized. +func (spt *ServicePrincipalToken) RefreshWithContext(ctx context.Context) error { + spt.refreshLock.Lock() + defer spt.refreshLock.Unlock() + return spt.refreshInternal(ctx, spt.resource) +} + +// RefreshExchange refreshes the token, but for a different resource. +// This method is not safe for concurrent use and should be syncrhonized. +func (spt *ServicePrincipalToken) RefreshExchange(resource string) error { + return spt.RefreshExchangeWithContext(context.Background(), resource) +} + +// RefreshExchangeWithContext refreshes the token, but for a different resource. +// This method is not safe for concurrent use and should be syncrhonized. +func (spt *ServicePrincipalToken) RefreshExchangeWithContext(ctx context.Context, resource string) error { + spt.refreshLock.Lock() + defer spt.refreshLock.Unlock() + return spt.refreshInternal(ctx, resource) +} + +func (spt *ServicePrincipalToken) getGrantType() string { + switch spt.secret.(type) { + case *ServicePrincipalUsernamePasswordSecret: + return OAuthGrantTypeUserPass + case *ServicePrincipalAuthorizationCodeSecret: + return OAuthGrantTypeAuthorizationCode + default: + return OAuthGrantTypeClientCredentials + } +} + +func isIMDS(u url.URL) bool { + imds, err := url.Parse(msiEndpoint) + if err != nil { + return false + } + return u.Host == imds.Host && u.Path == imds.Path +} + +func (spt *ServicePrincipalToken) refreshInternal(ctx context.Context, resource string) error { + req, err := http.NewRequest(http.MethodPost, spt.oauthConfig.TokenEndpoint.String(), nil) + if err != nil { + return fmt.Errorf("adal: Failed to build the refresh request. Error = '%v'", err) + } + req = req.WithContext(ctx) + if !isIMDS(spt.oauthConfig.TokenEndpoint) { + v := url.Values{} + v.Set("client_id", spt.clientID) + v.Set("resource", resource) + + if spt.token.RefreshToken != "" { + v.Set("grant_type", OAuthGrantTypeRefreshToken) + v.Set("refresh_token", spt.token.RefreshToken) + } else { + v.Set("grant_type", spt.getGrantType()) + err := spt.secret.SetAuthenticationValues(spt, &v) + if err != nil { + return err + } + } + + s := v.Encode() + body := ioutil.NopCloser(strings.NewReader(s)) + req.ContentLength = int64(len(s)) + req.Header.Set(contentType, mimeTypeFormPost) + req.Body = body + } + + if _, ok := spt.secret.(*ServicePrincipalMSISecret); ok { + req.Method = http.MethodGet + req.Header.Set(metadataHeader, "true") + } + + var resp *http.Response + if isIMDS(spt.oauthConfig.TokenEndpoint) { + resp, err = retry(spt.sender, req) + } else { + resp, err = spt.sender.Do(req) + } + if err != nil { + return fmt.Errorf("adal: Failed to execute the refresh request. Error = '%v'", err) + } + + defer resp.Body.Close() + rb, err := ioutil.ReadAll(resp.Body) + + if resp.StatusCode != http.StatusOK { + if err != nil { + return newTokenRefreshError(fmt.Sprintf("adal: Refresh request failed. Status Code = '%d'. Failed reading response body", resp.StatusCode), resp) + } + return newTokenRefreshError(fmt.Sprintf("adal: Refresh request failed. Status Code = '%d'. Response body: %s", resp.StatusCode, string(rb)), resp) + } + + if err != nil { + return fmt.Errorf("adal: Failed to read a new service principal token during refresh. Error = '%v'", err) + } + if len(strings.Trim(string(rb), " ")) == 0 { + return fmt.Errorf("adal: Empty service principal token received during refresh") + } + var token Token + err = json.Unmarshal(rb, &token) + if err != nil { + return fmt.Errorf("adal: Failed to unmarshal the service principal token during refresh. Error = '%v' JSON = '%s'", err, string(rb)) + } + + spt.token = token + + return spt.InvokeRefreshCallbacks(token) +} + +func retry(sender Sender, req *http.Request) (resp *http.Response, err error) { + retries := []int{ + http.StatusRequestTimeout, // 408 + http.StatusTooManyRequests, // 429 + http.StatusInternalServerError, // 500 + http.StatusBadGateway, // 502 + http.StatusServiceUnavailable, // 503 + http.StatusGatewayTimeout, // 504 + } + // Extra retry status codes requered + retries = append(retries, http.StatusNotFound, + // all remaining 5xx + http.StatusNotImplemented, + http.StatusHTTPVersionNotSupported, + http.StatusVariantAlsoNegotiates, + http.StatusInsufficientStorage, + http.StatusLoopDetected, + http.StatusNotExtended, + http.StatusNetworkAuthenticationRequired) + + attempt := 0 + maxAttempts := 5 + + for attempt < maxAttempts { + resp, err = sender.Do(req) + if err != nil || resp.StatusCode == http.StatusOK || !containsInt(retries, resp.StatusCode) { + return + } + + if !delay(resp, req.Context().Done()) { + select { + case <-time.After(time.Second): + attempt++ + case <-req.Context().Done(): + err = req.Context().Err() + return + } + } + } + return +} + +func containsInt(ints []int, n int) bool { + for _, i := range ints { + if i == n { + return true + } + } + return false +} + +func delay(resp *http.Response, cancel <-chan struct{}) bool { + if resp == nil { + return false + } + retryAfter, _ := strconv.Atoi(resp.Header.Get("Retry-After")) + if resp.StatusCode == http.StatusTooManyRequests && retryAfter > 0 { + select { + case <-time.After(time.Duration(retryAfter) * time.Second): + return true + case <-cancel: + return false + } + } + return false +} + +// SetAutoRefresh enables or disables automatic refreshing of stale tokens. +func (spt *ServicePrincipalToken) SetAutoRefresh(autoRefresh bool) { + spt.autoRefresh = autoRefresh +} + +// SetRefreshWithin sets the interval within which if the token will expire, EnsureFresh will +// refresh the token. +func (spt *ServicePrincipalToken) SetRefreshWithin(d time.Duration) { + spt.refreshWithin = d + return +} + +// SetSender sets the http.Client used when obtaining the Service Principal token. An +// undecorated http.Client is used by default. +func (spt *ServicePrincipalToken) SetSender(s Sender) { spt.sender = s } + +// OAuthToken implements the OAuthTokenProvider interface. It returns the current access token. +func (spt *ServicePrincipalToken) OAuthToken() string { + spt.refreshLock.RLock() + defer spt.refreshLock.RUnlock() + return spt.token.OAuthToken() +} + +// Token returns a copy of the current token. +func (spt *ServicePrincipalToken) Token() Token { + spt.refreshLock.RLock() + defer spt.refreshLock.RUnlock() + return spt.token +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/authorization.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/authorization.go new file mode 100644 index 000000000..77eff45bd --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/authorization.go @@ -0,0 +1,259 @@ +package autorest + +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +import ( + "fmt" + "net/http" + "net/url" + "strings" + + "github.com/Azure/go-autorest/autorest/adal" +) + +const ( + bearerChallengeHeader = "Www-Authenticate" + bearer = "Bearer" + tenantID = "tenantID" + apiKeyAuthorizerHeader = "Ocp-Apim-Subscription-Key" + bingAPISdkHeader = "X-BingApis-SDK-Client" + golangBingAPISdkHeaderValue = "Go-SDK" +) + +// Authorizer is the interface that provides a PrepareDecorator used to supply request +// authorization. Most often, the Authorizer decorator runs last so it has access to the full +// state of the formed HTTP request. +type Authorizer interface { + WithAuthorization() PrepareDecorator +} + +// NullAuthorizer implements a default, "do nothing" Authorizer. +type NullAuthorizer struct{} + +// WithAuthorization returns a PrepareDecorator that does nothing. +func (na NullAuthorizer) WithAuthorization() PrepareDecorator { + return WithNothing() +} + +// APIKeyAuthorizer implements API Key authorization. +type APIKeyAuthorizer struct { + headers map[string]interface{} + queryParameters map[string]interface{} +} + +// NewAPIKeyAuthorizerWithHeaders creates an ApiKeyAuthorizer with headers. +func NewAPIKeyAuthorizerWithHeaders(headers map[string]interface{}) *APIKeyAuthorizer { + return NewAPIKeyAuthorizer(headers, nil) +} + +// NewAPIKeyAuthorizerWithQueryParameters creates an ApiKeyAuthorizer with query parameters. +func NewAPIKeyAuthorizerWithQueryParameters(queryParameters map[string]interface{}) *APIKeyAuthorizer { + return NewAPIKeyAuthorizer(nil, queryParameters) +} + +// NewAPIKeyAuthorizer creates an ApiKeyAuthorizer with headers. +func NewAPIKeyAuthorizer(headers map[string]interface{}, queryParameters map[string]interface{}) *APIKeyAuthorizer { + return &APIKeyAuthorizer{headers: headers, queryParameters: queryParameters} +} + +// WithAuthorization returns a PrepareDecorator that adds an HTTP headers and Query Paramaters +func (aka *APIKeyAuthorizer) WithAuthorization() PrepareDecorator { + return func(p Preparer) Preparer { + return DecoratePreparer(p, WithHeaders(aka.headers), WithQueryParameters(aka.queryParameters)) + } +} + +// CognitiveServicesAuthorizer implements authorization for Cognitive Services. +type CognitiveServicesAuthorizer struct { + subscriptionKey string +} + +// NewCognitiveServicesAuthorizer is +func NewCognitiveServicesAuthorizer(subscriptionKey string) *CognitiveServicesAuthorizer { + return &CognitiveServicesAuthorizer{subscriptionKey: subscriptionKey} +} + +// WithAuthorization is +func (csa *CognitiveServicesAuthorizer) WithAuthorization() PrepareDecorator { + headers := make(map[string]interface{}) + headers[apiKeyAuthorizerHeader] = csa.subscriptionKey + headers[bingAPISdkHeader] = golangBingAPISdkHeaderValue + + return NewAPIKeyAuthorizerWithHeaders(headers).WithAuthorization() +} + +// BearerAuthorizer implements the bearer authorization +type BearerAuthorizer struct { + tokenProvider adal.OAuthTokenProvider +} + +// NewBearerAuthorizer crates a BearerAuthorizer using the given token provider +func NewBearerAuthorizer(tp adal.OAuthTokenProvider) *BearerAuthorizer { + return &BearerAuthorizer{tokenProvider: tp} +} + +// WithAuthorization returns a PrepareDecorator that adds an HTTP Authorization header whose +// value is "Bearer " followed by the token. +// +// By default, the token will be automatically refreshed through the Refresher interface. +func (ba *BearerAuthorizer) WithAuthorization() PrepareDecorator { + return func(p Preparer) Preparer { + return PreparerFunc(func(r *http.Request) (*http.Request, error) { + r, err := p.Prepare(r) + if err == nil { + // the ordering is important here, prefer RefresherWithContext if available + if refresher, ok := ba.tokenProvider.(adal.RefresherWithContext); ok { + err = refresher.EnsureFreshWithContext(r.Context()) + } else if refresher, ok := ba.tokenProvider.(adal.Refresher); ok { + err = refresher.EnsureFresh() + } + if err != nil { + var resp *http.Response + if tokError, ok := err.(adal.TokenRefreshError); ok { + resp = tokError.Response() + } + return r, NewErrorWithError(err, "azure.BearerAuthorizer", "WithAuthorization", resp, + "Failed to refresh the Token for request to %s", r.URL) + } + return Prepare(r, WithHeader(headerAuthorization, fmt.Sprintf("Bearer %s", ba.tokenProvider.OAuthToken()))) + } + return r, err + }) + } +} + +// BearerAuthorizerCallbackFunc is the authentication callback signature. +type BearerAuthorizerCallbackFunc func(tenantID, resource string) (*BearerAuthorizer, error) + +// BearerAuthorizerCallback implements bearer authorization via a callback. +type BearerAuthorizerCallback struct { + sender Sender + callback BearerAuthorizerCallbackFunc +} + +// NewBearerAuthorizerCallback creates a bearer authorization callback. The callback +// is invoked when the HTTP request is submitted. +func NewBearerAuthorizerCallback(sender Sender, callback BearerAuthorizerCallbackFunc) *BearerAuthorizerCallback { + if sender == nil { + sender = &http.Client{} + } + return &BearerAuthorizerCallback{sender: sender, callback: callback} +} + +// WithAuthorization returns a PrepareDecorator that adds an HTTP Authorization header whose value +// is "Bearer " followed by the token. The BearerAuthorizer is obtained via a user-supplied callback. +// +// By default, the token will be automatically refreshed through the Refresher interface. +func (bacb *BearerAuthorizerCallback) WithAuthorization() PrepareDecorator { + return func(p Preparer) Preparer { + return PreparerFunc(func(r *http.Request) (*http.Request, error) { + r, err := p.Prepare(r) + if err == nil { + // make a copy of the request and remove the body as it's not + // required and avoids us having to create a copy of it. + rCopy := *r + removeRequestBody(&rCopy) + + resp, err := bacb.sender.Do(&rCopy) + if err == nil && resp.StatusCode == 401 { + defer resp.Body.Close() + if hasBearerChallenge(resp) { + bc, err := newBearerChallenge(resp) + if err != nil { + return r, err + } + if bacb.callback != nil { + ba, err := bacb.callback(bc.values[tenantID], bc.values["resource"]) + if err != nil { + return r, err + } + return Prepare(r, ba.WithAuthorization()) + } + } + } + } + return r, err + }) + } +} + +// returns true if the HTTP response contains a bearer challenge +func hasBearerChallenge(resp *http.Response) bool { + authHeader := resp.Header.Get(bearerChallengeHeader) + if len(authHeader) == 0 || strings.Index(authHeader, bearer) < 0 { + return false + } + return true +} + +type bearerChallenge struct { + values map[string]string +} + +func newBearerChallenge(resp *http.Response) (bc bearerChallenge, err error) { + challenge := strings.TrimSpace(resp.Header.Get(bearerChallengeHeader)) + trimmedChallenge := challenge[len(bearer)+1:] + + // challenge is a set of key=value pairs that are comma delimited + pairs := strings.Split(trimmedChallenge, ",") + if len(pairs) < 1 { + err = fmt.Errorf("challenge '%s' contains no pairs", challenge) + return bc, err + } + + bc.values = make(map[string]string) + for i := range pairs { + trimmedPair := strings.TrimSpace(pairs[i]) + pair := strings.Split(trimmedPair, "=") + if len(pair) == 2 { + // remove the enclosing quotes + key := strings.Trim(pair[0], "\"") + value := strings.Trim(pair[1], "\"") + + switch key { + case "authorization", "authorization_uri": + // strip the tenant ID from the authorization URL + asURL, err := url.Parse(value) + if err != nil { + return bc, err + } + bc.values[tenantID] = asURL.Path[1:] + default: + bc.values[key] = value + } + } + } + + return bc, err +} + +// EventGridKeyAuthorizer implements authorization for event grid using key authentication. +type EventGridKeyAuthorizer struct { + topicKey string +} + +// NewEventGridKeyAuthorizer creates a new EventGridKeyAuthorizer +// with the specified topic key. +func NewEventGridKeyAuthorizer(topicKey string) EventGridKeyAuthorizer { + return EventGridKeyAuthorizer{topicKey: topicKey} +} + +// WithAuthorization returns a PrepareDecorator that adds the aeg-sas-key authentication header. +func (egta EventGridKeyAuthorizer) WithAuthorization() PrepareDecorator { + headers := map[string]interface{}{ + "aeg-sas-key": egta.topicKey, + } + return NewAPIKeyAuthorizerWithHeaders(headers).WithAuthorization() +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/autorest.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/autorest.go index 51f1c4bbc..aafdf021f 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/autorest.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/autorest.go @@ -57,7 +57,22 @@ generated clients, see the Client described below. */ package autorest +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( + "context" "net/http" "time" ) @@ -73,6 +88,9 @@ const ( // ResponseHasStatusCode returns true if the status code in the HTTP Response is in the passed set // and false otherwise. func ResponseHasStatusCode(resp *http.Response, codes ...int) bool { + if resp == nil { + return false + } return containsInt(codes, resp.StatusCode) } @@ -113,3 +131,20 @@ func NewPollingRequest(resp *http.Response, cancel <-chan struct{}) (*http.Reque return req, nil } + +// NewPollingRequestWithContext allocates and returns a new http.Request with the specified context to poll for the passed response. +func NewPollingRequestWithContext(ctx context.Context, resp *http.Response) (*http.Request, error) { + location := GetLocation(resp) + if location == "" { + return nil, NewErrorWithResponse("autorest", "NewPollingRequestWithContext", resp, "Location header missing from response that requires polling") + } + + req, err := Prepare((&http.Request{}).WithContext(ctx), + AsGet(), + WithBaseURL(location)) + if err != nil { + return nil, NewErrorWithError(err, "autorest", "NewPollingRequestWithContext", nil, "Failure creating poll request to %s", location) + } + + return req, nil +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/async.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/async.go index 6e076981f..a58e5ef3f 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/async.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/async.go @@ -1,7 +1,23 @@ package azure +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "bytes" + "context" + "encoding/json" "fmt" "io/ioutil" "net/http" @@ -17,18 +33,190 @@ const ( ) const ( - methodDelete = "DELETE" - methodPatch = "PATCH" - methodPost = "POST" - methodPut = "PUT" - methodGet = "GET" - operationInProgress string = "InProgress" operationCanceled string = "Canceled" operationFailed string = "Failed" operationSucceeded string = "Succeeded" ) +var pollingCodes = [...]int{http.StatusNoContent, http.StatusAccepted, http.StatusCreated, http.StatusOK} + +// Future provides a mechanism to access the status and results of an asynchronous request. +// Since futures are stateful they should be passed by value to avoid race conditions. +type Future struct { + req *http.Request + resp *http.Response + ps pollingState +} + +// NewFuture returns a new Future object initialized with the specified request. +func NewFuture(req *http.Request) Future { + return Future{req: req} +} + +// Response returns the last HTTP response or nil if there isn't one. +func (f Future) Response() *http.Response { + return f.resp +} + +// Status returns the last status message of the operation. +func (f Future) Status() string { + if f.ps.State == "" { + return "Unknown" + } + return f.ps.State +} + +// PollingMethod returns the method used to monitor the status of the asynchronous operation. +func (f Future) PollingMethod() PollingMethodType { + return f.ps.PollingMethod +} + +// Done queries the service to see if the operation has completed. +func (f *Future) Done(sender autorest.Sender) (bool, error) { + // exit early if this future has terminated + if f.ps.hasTerminated() { + return true, f.errorInfo() + } + resp, err := sender.Do(f.req) + f.resp = resp + if err != nil { + return false, err + } + + if !autorest.ResponseHasStatusCode(resp, pollingCodes[:]...) { + // check response body for error content + if resp.Body != nil { + type respErr struct { + ServiceError ServiceError `json:"error"` + } + re := respErr{} + + defer resp.Body.Close() + b, err := ioutil.ReadAll(resp.Body) + if err != nil { + return false, err + } + err = json.Unmarshal(b, &re) + if err != nil { + return false, err + } + return false, re.ServiceError + } + + // try to return something meaningful + return false, ServiceError{ + Code: fmt.Sprintf("%v", resp.StatusCode), + Message: resp.Status, + } + } + + err = updatePollingState(resp, &f.ps) + if err != nil { + return false, err + } + + if f.ps.hasTerminated() { + return true, f.errorInfo() + } + + f.req, err = newPollingRequest(f.ps) + return false, err +} + +// GetPollingDelay returns a duration the application should wait before checking +// the status of the asynchronous request and true; this value is returned from +// the service via the Retry-After response header. If the header wasn't returned +// then the function returns the zero-value time.Duration and false. +func (f Future) GetPollingDelay() (time.Duration, bool) { + if f.resp == nil { + return 0, false + } + + retry := f.resp.Header.Get(autorest.HeaderRetryAfter) + if retry == "" { + return 0, false + } + + d, err := time.ParseDuration(retry + "s") + if err != nil { + panic(err) + } + + return d, true +} + +// WaitForCompletion will return when one of the following conditions is met: the long +// running operation has completed, the provided context is cancelled, or the client's +// polling duration has been exceeded. It will retry failed polling attempts based on +// the retry value defined in the client up to the maximum retry attempts. +func (f Future) WaitForCompletion(ctx context.Context, client autorest.Client) error { + ctx, cancel := context.WithTimeout(ctx, client.PollingDuration) + defer cancel() + + done, err := f.Done(client) + for attempts := 0; !done; done, err = f.Done(client) { + if attempts >= client.RetryAttempts { + return autorest.NewErrorWithError(err, "azure", "WaitForCompletion", f.resp, "the number of retries has been exceeded") + } + // we want delayAttempt to be zero in the non-error case so + // that DelayForBackoff doesn't perform exponential back-off + var delayAttempt int + var delay time.Duration + if err == nil { + // check for Retry-After delay, if not present use the client's polling delay + var ok bool + delay, ok = f.GetPollingDelay() + if !ok { + delay = client.PollingDelay + } + } else { + // there was an error polling for status so perform exponential + // back-off based on the number of attempts using the client's retry + // duration. update attempts after delayAttempt to avoid off-by-one. + delayAttempt = attempts + delay = client.RetryDuration + attempts++ + } + // wait until the delay elapses or the context is cancelled + delayElapsed := autorest.DelayForBackoff(delay, delayAttempt, ctx.Done()) + if !delayElapsed { + return autorest.NewErrorWithError(ctx.Err(), "azure", "WaitForCompletion", f.resp, "context has been cancelled") + } + } + return err +} + +// if the operation failed the polling state will contain +// error information and implements the error interface +func (f *Future) errorInfo() error { + if !f.ps.hasSucceeded() { + return f.ps + } + return nil +} + +// MarshalJSON implements the json.Marshaler interface. +func (f Future) MarshalJSON() ([]byte, error) { + return json.Marshal(&f.ps) +} + +// UnmarshalJSON implements the json.Unmarshaler interface. +func (f *Future) UnmarshalJSON(data []byte) error { + err := json.Unmarshal(data, &f.ps) + if err != nil { + return err + } + f.req, err = newPollingRequest(f.ps) + return err +} + +// PollingURL returns the URL used for retrieving the status of the long-running operation. +// For LROs that use the Location header the final URL value is used to retrieve the result. +func (f Future) PollingURL() string { + return f.ps.URI +} + // DoPollForAsynchronous returns a SendDecorator that polls if the http.Response is for an Azure // long-running operation. It will delay between requests for the duration specified in the // RetryAfter header or, if the header is absent, the passed delay. Polling may be canceled by @@ -40,8 +228,7 @@ func DoPollForAsynchronous(delay time.Duration) autorest.SendDecorator { if err != nil { return resp, err } - pollingCodes := []int{http.StatusAccepted, http.StatusCreated, http.StatusOK} - if !autorest.ResponseHasStatusCode(resp, pollingCodes...) { + if !autorest.ResponseHasStatusCode(resp, pollingCodes[:]...) { return resp, nil } @@ -58,10 +245,11 @@ func DoPollForAsynchronous(delay time.Duration) autorest.SendDecorator { break } - r, err = newPollingRequest(resp, ps) + r, err = newPollingRequest(ps) if err != nil { return resp, err } + r = r.WithContext(resp.Request.Context()) delay = autorest.GetRetryAfter(resp, delay) resp, err = autorest.SendWithSender(s, r, @@ -78,20 +266,15 @@ func getAsyncOperation(resp *http.Response) string { } func hasSucceeded(state string) bool { - return state == operationSucceeded + return strings.EqualFold(state, operationSucceeded) } func hasTerminated(state string) bool { - switch state { - case operationCanceled, operationFailed, operationSucceeded: - return true - default: - return false - } + return strings.EqualFold(state, operationCanceled) || strings.EqualFold(state, operationFailed) || strings.EqualFold(state, operationSucceeded) } func hasFailed(state string) bool { - return state == operationFailed + return strings.EqualFold(state, operationFailed) } type provisioningTracker interface { @@ -149,39 +332,50 @@ func (ps provisioningStatus) hasTerminated() bool { } func (ps provisioningStatus) hasProvisioningError() bool { - return ps.ProvisioningError != ServiceError{} + // code and message are required fields so only check them + return len(ps.ProvisioningError.Code) > 0 || + len(ps.ProvisioningError.Message) > 0 } -type pollingResponseFormat string +// PollingMethodType defines a type used for enumerating polling mechanisms. +type PollingMethodType string const ( - usesOperationResponse pollingResponseFormat = "OperationResponse" - usesProvisioningStatus pollingResponseFormat = "ProvisioningStatus" - formatIsUnknown pollingResponseFormat = "" + // PollingAsyncOperation indicates the polling method uses the Azure-AsyncOperation header. + PollingAsyncOperation PollingMethodType = "AsyncOperation" + + // PollingLocation indicates the polling method uses the Location header. + PollingLocation PollingMethodType = "Location" + + // PollingUnknown indicates an unknown polling method and is the default value. + PollingUnknown PollingMethodType = "" ) type pollingState struct { - responseFormat pollingResponseFormat - uri string - state string - code string - message string + PollingMethod PollingMethodType `json:"pollingMethod"` + URI string `json:"uri"` + State string `json:"state"` + ServiceError *ServiceError `json:"error,omitempty"` } func (ps pollingState) hasSucceeded() bool { - return hasSucceeded(ps.state) + return hasSucceeded(ps.State) } func (ps pollingState) hasTerminated() bool { - return hasTerminated(ps.state) + return hasTerminated(ps.State) } func (ps pollingState) hasFailed() bool { - return hasFailed(ps.state) + return hasFailed(ps.State) } func (ps pollingState) Error() string { - return fmt.Sprintf("Long running operation terminated with status '%s': Code=%q Message=%q", ps.state, ps.code, ps.message) + s := fmt.Sprintf("Long running operation terminated with status '%s'", ps.State) + if ps.ServiceError != nil { + s = fmt.Sprintf("%s: %+v", s, *ps.ServiceError) + } + return s } // updatePollingState maps the operation status -- retrieved from either a provisioningState @@ -196,7 +390,7 @@ func updatePollingState(resp *http.Response, ps *pollingState) error { // -- The first response will always be a provisioningStatus response; only the polling requests, // depending on the header returned, may be something otherwise. var pt provisioningTracker - if ps.responseFormat == usesOperationResponse { + if ps.PollingMethod == PollingAsyncOperation { pt = &operationResource{} } else { pt = &provisioningStatus{} @@ -204,30 +398,30 @@ func updatePollingState(resp *http.Response, ps *pollingState) error { // If this is the first request (that is, the polling response shape is unknown), determine how // to poll and what to expect - if ps.responseFormat == formatIsUnknown { + if ps.PollingMethod == PollingUnknown { req := resp.Request if req == nil { return autorest.NewError("azure", "updatePollingState", "Azure Polling Error - Original HTTP request is missing") } // Prefer the Azure-AsyncOperation header - ps.uri = getAsyncOperation(resp) - if ps.uri != "" { - ps.responseFormat = usesOperationResponse + ps.URI = getAsyncOperation(resp) + if ps.URI != "" { + ps.PollingMethod = PollingAsyncOperation } else { - ps.responseFormat = usesProvisioningStatus + ps.PollingMethod = PollingLocation } // Else, use the Location header - if ps.uri == "" { - ps.uri = autorest.GetLocation(resp) + if ps.URI == "" { + ps.URI = autorest.GetLocation(resp) } // Lastly, requests against an existing resource, use the last request URI - if ps.uri == "" { + if ps.URI == "" { m := strings.ToUpper(req.Method) - if m == methodPatch || m == methodPut || m == methodGet { - ps.uri = req.URL.String() + if m == http.MethodPatch || m == http.MethodPut || m == http.MethodGet { + ps.URI = req.URL.String() } } } @@ -248,23 +442,23 @@ func updatePollingState(resp *http.Response, ps *pollingState) error { // -- Unknown states are per-service inprogress states // -- Otherwise, infer state from HTTP status code if pt.hasTerminated() { - ps.state = pt.state() + ps.State = pt.state() } else if pt.state() != "" { - ps.state = operationInProgress + ps.State = operationInProgress } else { switch resp.StatusCode { case http.StatusAccepted: - ps.state = operationInProgress + ps.State = operationInProgress case http.StatusNoContent, http.StatusCreated, http.StatusOK: - ps.state = operationSucceeded + ps.State = operationSucceeded default: - ps.state = operationFailed + ps.State = operationFailed } } - if ps.state == operationInProgress && ps.uri == "" { + if strings.EqualFold(ps.State, operationInProgress) && ps.URI == "" { return autorest.NewError("azure", "updatePollingState", "Azure Polling Error - Unable to obtain polling URI for %s %s", resp.Request.Method, resp.Request.URL) } @@ -273,36 +467,45 @@ func updatePollingState(resp *http.Response, ps *pollingState) error { // -- Response // -- Otherwise, Unknown if ps.hasFailed() { - if ps.responseFormat == usesOperationResponse { - or := pt.(*operationResource) - ps.code = or.OperationError.Code - ps.message = or.OperationError.Message + if or, ok := pt.(*operationResource); ok { + ps.ServiceError = &or.OperationError + } else if p, ok := pt.(*provisioningStatus); ok && p.hasProvisioningError() { + ps.ServiceError = &p.ProvisioningError } else { - p := pt.(*provisioningStatus) - if p.hasProvisioningError() { - ps.code = p.ProvisioningError.Code - ps.message = p.ProvisioningError.Message - } else { - ps.code = "Unknown" - ps.message = "None" + ps.ServiceError = &ServiceError{ + Code: "Unknown", + Message: "None", } } } return nil } -func newPollingRequest(resp *http.Response, ps pollingState) (*http.Request, error) { - req := resp.Request - if req == nil { - return nil, autorest.NewError("azure", "newPollingRequest", "Azure Polling Error - Original HTTP request is missing") - } - - reqPoll, err := autorest.Prepare(&http.Request{Cancel: req.Cancel}, +func newPollingRequest(ps pollingState) (*http.Request, error) { + reqPoll, err := autorest.Prepare(&http.Request{}, autorest.AsGet(), - autorest.WithBaseURL(ps.uri)) + autorest.WithBaseURL(ps.URI)) if err != nil { - return nil, autorest.NewErrorWithError(err, "azure", "newPollingRequest", nil, "Failure creating poll request to %s", ps.uri) + return nil, autorest.NewErrorWithError(err, "azure", "newPollingRequest", nil, "Failure creating poll request to %s", ps.URI) } return reqPoll, nil } + +// AsyncOpIncompleteError is the type that's returned from a future that has not completed. +type AsyncOpIncompleteError struct { + // FutureType is the name of the type composed of a azure.Future. + FutureType string +} + +// Error returns an error message including the originating type name of the error. +func (e AsyncOpIncompleteError) Error() string { + return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType) +} + +// NewAsyncOpIncompleteError creates a new AsyncOpIncompleteError with the specified parameters. +func NewAsyncOpIncompleteError(futureType string) AsyncOpIncompleteError { + return AsyncOpIncompleteError{ + FutureType: futureType, + } +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/azure.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/azure.go index 3f4d13421..18d029526 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/azure.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/azure.go @@ -1,16 +1,29 @@ -/* -Package azure provides Azure-specific implementations used with AutoRest. - -See the included examples for more detail. -*/ +// Package azure provides Azure-specific implementations used with AutoRest. +// See the included examples for more detail. package azure +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "encoding/json" "fmt" "io/ioutil" "net/http" + "regexp" "strconv" + "strings" "github.com/Azure/go-autorest/autorest" ) @@ -29,21 +42,88 @@ const ( ) // ServiceError encapsulates the error response from an Azure service. +// It adhears to the OData v4 specification for error responses. type ServiceError struct { - Code string `json:"code"` - Message string `json:"message"` - Details *[]interface{} `json:"details"` + Code string `json:"code"` + Message string `json:"message"` + Target *string `json:"target"` + Details []map[string]interface{} `json:"details"` + InnerError map[string]interface{} `json:"innererror"` } func (se ServiceError) Error() string { - if se.Details != nil { - d, err := json.Marshal(*(se.Details)) - if err != nil { - return fmt.Sprintf("Code=%q Message=%q Details=%v", se.Code, se.Message, *se.Details) - } - return fmt.Sprintf("Code=%q Message=%q Details=%v", se.Code, se.Message, string(d)) + result := fmt.Sprintf("Code=%q Message=%q", se.Code, se.Message) + + if se.Target != nil { + result += fmt.Sprintf(" Target=%q", *se.Target) } - return fmt.Sprintf("Code=%q Message=%q", se.Code, se.Message) + + if se.Details != nil { + d, err := json.Marshal(se.Details) + if err != nil { + result += fmt.Sprintf(" Details=%v", se.Details) + } + result += fmt.Sprintf(" Details=%v", string(d)) + } + + if se.InnerError != nil { + d, err := json.Marshal(se.InnerError) + if err != nil { + result += fmt.Sprintf(" InnerError=%v", se.InnerError) + } + result += fmt.Sprintf(" InnerError=%v", string(d)) + } + + return result +} + +// UnmarshalJSON implements the json.Unmarshaler interface for the ServiceError type. +func (se *ServiceError) UnmarshalJSON(b []byte) error { + // per the OData v4 spec the details field must be an array of JSON objects. + // unfortunately not all services adhear to the spec and just return a single + // object instead of an array with one object. so we have to perform some + // shenanigans to accommodate both cases. + // http://docs.oasis-open.org/odata/odata-json-format/v4.0/os/odata-json-format-v4.0-os.html#_Toc372793091 + + type serviceError1 struct { + Code string `json:"code"` + Message string `json:"message"` + Target *string `json:"target"` + Details []map[string]interface{} `json:"details"` + InnerError map[string]interface{} `json:"innererror"` + } + + type serviceError2 struct { + Code string `json:"code"` + Message string `json:"message"` + Target *string `json:"target"` + Details map[string]interface{} `json:"details"` + InnerError map[string]interface{} `json:"innererror"` + } + + se1 := serviceError1{} + err := json.Unmarshal(b, &se1) + if err == nil { + se.populate(se1.Code, se1.Message, se1.Target, se1.Details, se1.InnerError) + return nil + } + + se2 := serviceError2{} + err = json.Unmarshal(b, &se2) + if err == nil { + se.populate(se2.Code, se2.Message, se2.Target, nil, se2.InnerError) + se.Details = append(se.Details, se2.Details) + return nil + } + return err +} + +func (se *ServiceError) populate(code, message string, target *string, details []map[string]interface{}, inner map[string]interface{}) { + se.Code = code + se.Message = message + se.Target = target + se.Details = details + se.InnerError = inner } // RequestError describes an error response returned by Azure service. @@ -69,6 +149,41 @@ func IsAzureError(e error) bool { return ok } +// Resource contains details about an Azure resource. +type Resource struct { + SubscriptionID string + ResourceGroup string + Provider string + ResourceType string + ResourceName string +} + +// ParseResourceID parses a resource ID into a ResourceDetails struct. +// See https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-template-functions-resource#return-value-4. +func ParseResourceID(resourceID string) (Resource, error) { + + const resourceIDPatternText = `(?i)subscriptions/(.+)/resourceGroups/(.+)/providers/(.+?)/(.+?)/(.+)` + resourceIDPattern := regexp.MustCompile(resourceIDPatternText) + match := resourceIDPattern.FindStringSubmatch(resourceID) + + if len(match) == 0 { + return Resource{}, fmt.Errorf("parsing failed for %s. Invalid resource Id format", resourceID) + } + + v := strings.Split(match[5], "/") + resourceName := v[len(v)-1] + + result := Resource{ + SubscriptionID: match[1], + ResourceGroup: match[2], + Provider: match[3], + ResourceType: match[4], + ResourceName: resourceName, + } + + return result, nil +} + // NewErrorWithError creates a new Error conforming object from the // passed packageType, method, statusCode of the given resp (UndefinedStatusCode // if resp is nil), message, and original error. message is treated as a format @@ -165,7 +280,13 @@ func WithErrorUnlessStatusCode(codes ...int) autorest.RespondDecorator { if decodeErr != nil { return fmt.Errorf("autorest/azure: error response cannot be parsed: %q error: %v", b.String(), decodeErr) } else if e.ServiceError == nil { - e.ServiceError = &ServiceError{Code: "Unknown", Message: "Unknown service error"} + // Check if error is unwrapped ServiceError + if err := json.Unmarshal(b.Bytes(), &e.ServiceError); err != nil || e.ServiceError.Message == "" { + e.ServiceError = &ServiceError{ + Code: "Unknown", + Message: "Unknown service error", + } + } } e.RequestID = ExtractRequestID(resp) diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/config.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/config.go deleted file mode 100644 index bea30b0d6..000000000 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/config.go +++ /dev/null @@ -1,13 +0,0 @@ -package azure - -import ( - "net/url" -) - -// OAuthConfig represents the endpoints needed -// in OAuth operations -type OAuthConfig struct { - AuthorizeEndpoint url.URL - TokenEndpoint url.URL - DeviceCodeEndpoint url.URL -} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/environments.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/environments.go index 4701b4376..7e41f7fd9 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/environments.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/environments.go @@ -1,14 +1,30 @@ package azure +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( + "encoding/json" "fmt" - "net/url" + "io/ioutil" + "os" "strings" ) -const ( - activeDirectoryAPIVersion = "1.0" -) +// EnvironmentFilepathName captures the name of the environment variable containing the path to the file +// to be used while populating the Azure Environment. +const EnvironmentFilepathName = "AZURE_ENVIRONMENT_FILEPATH" var environments = map[string]Environment{ "AZURECHINACLOUD": ChinaCloud, @@ -28,6 +44,8 @@ type Environment struct { GalleryEndpoint string `json:"galleryEndpoint"` KeyVaultEndpoint string `json:"keyVaultEndpoint"` GraphEndpoint string `json:"graphEndpoint"` + ServiceBusEndpoint string `json:"serviceBusEndpoint"` + BatchManagementEndpoint string `json:"batchManagementEndpoint"` StorageEndpointSuffix string `json:"storageEndpointSuffix"` SQLDatabaseDNSSuffix string `json:"sqlDatabaseDNSSuffix"` TrafficManagerDNSSuffix string `json:"trafficManagerDNSSuffix"` @@ -36,6 +54,7 @@ type Environment struct { ServiceManagementVMDNSSuffix string `json:"serviceManagementVMDNSSuffix"` ResourceManagerVMDNSSuffix string `json:"resourceManagerVMDNSSuffix"` ContainerRegistryDNSSuffix string `json:"containerRegistryDNSSuffix"` + TokenAudience string `json:"tokenAudience"` } var ( @@ -50,14 +69,17 @@ var ( GalleryEndpoint: "https://gallery.azure.com/", KeyVaultEndpoint: "https://vault.azure.net/", GraphEndpoint: "https://graph.windows.net/", + ServiceBusEndpoint: "https://servicebus.windows.net/", + BatchManagementEndpoint: "https://batch.core.windows.net/", StorageEndpointSuffix: "core.windows.net", SQLDatabaseDNSSuffix: "database.windows.net", TrafficManagerDNSSuffix: "trafficmanager.net", KeyVaultDNSSuffix: "vault.azure.net", - ServiceBusEndpointSuffix: "servicebus.azure.com", + ServiceBusEndpointSuffix: "servicebus.windows.net", ServiceManagementVMDNSSuffix: "cloudapp.net", ResourceManagerVMDNSSuffix: "cloudapp.azure.com", ContainerRegistryDNSSuffix: "azurecr.io", + TokenAudience: "https://management.azure.com/", } // USGovernmentCloud is the cloud environment for the US Government @@ -67,10 +89,12 @@ var ( PublishSettingsURL: "https://manage.windowsazure.us/publishsettings/index", ServiceManagementEndpoint: "https://management.core.usgovcloudapi.net/", ResourceManagerEndpoint: "https://management.usgovcloudapi.net/", - ActiveDirectoryEndpoint: "https://login.microsoftonline.com/", + ActiveDirectoryEndpoint: "https://login.microsoftonline.us/", GalleryEndpoint: "https://gallery.usgovcloudapi.net/", KeyVaultEndpoint: "https://vault.usgovcloudapi.net/", - GraphEndpoint: "https://graph.usgovcloudapi.net/", + GraphEndpoint: "https://graph.windows.net/", + ServiceBusEndpoint: "https://servicebus.usgovcloudapi.net/", + BatchManagementEndpoint: "https://batch.core.usgovcloudapi.net/", StorageEndpointSuffix: "core.usgovcloudapi.net", SQLDatabaseDNSSuffix: "database.usgovcloudapi.net", TrafficManagerDNSSuffix: "usgovtrafficmanager.net", @@ -79,6 +103,7 @@ var ( ServiceManagementVMDNSSuffix: "usgovcloudapp.net", ResourceManagerVMDNSSuffix: "cloudapp.windowsazure.us", ContainerRegistryDNSSuffix: "azurecr.io", + TokenAudience: "https://management.usgovcloudapi.net/", } // ChinaCloud is the cloud environment operated in China @@ -92,14 +117,17 @@ var ( GalleryEndpoint: "https://gallery.chinacloudapi.cn/", KeyVaultEndpoint: "https://vault.azure.cn/", GraphEndpoint: "https://graph.chinacloudapi.cn/", + ServiceBusEndpoint: "https://servicebus.chinacloudapi.cn/", + BatchManagementEndpoint: "https://batch.chinacloudapi.cn/", StorageEndpointSuffix: "core.chinacloudapi.cn", SQLDatabaseDNSSuffix: "database.chinacloudapi.cn", TrafficManagerDNSSuffix: "trafficmanager.cn", KeyVaultDNSSuffix: "vault.azure.cn", - ServiceBusEndpointSuffix: "servicebus.chinacloudapi.net", + ServiceBusEndpointSuffix: "servicebus.chinacloudapi.cn", ServiceManagementVMDNSSuffix: "chinacloudapp.cn", ResourceManagerVMDNSSuffix: "cloudapp.azure.cn", ContainerRegistryDNSSuffix: "azurecr.io", + TokenAudience: "https://management.chinacloudapi.cn/", } // GermanCloud is the cloud environment operated in Germany @@ -113,6 +141,8 @@ var ( GalleryEndpoint: "https://gallery.cloudapi.de/", KeyVaultEndpoint: "https://vault.microsoftazure.de/", GraphEndpoint: "https://graph.cloudapi.de/", + ServiceBusEndpoint: "https://servicebus.cloudapi.de/", + BatchManagementEndpoint: "https://batch.cloudapi.de/", StorageEndpointSuffix: "core.cloudapi.de", SQLDatabaseDNSSuffix: "database.cloudapi.de", TrafficManagerDNSSuffix: "azuretrafficmanager.de", @@ -121,47 +151,41 @@ var ( ServiceManagementVMDNSSuffix: "azurecloudapp.de", ResourceManagerVMDNSSuffix: "cloudapp.microsoftazure.de", ContainerRegistryDNSSuffix: "azurecr.io", + TokenAudience: "https://management.microsoftazure.de/", } ) -// EnvironmentFromName returns an Environment based on the common name specified +// EnvironmentFromName returns an Environment based on the common name specified. func EnvironmentFromName(name string) (Environment, error) { + // IMPORTANT + // As per @radhikagupta5: + // This is technical debt, fundamentally here because Kubernetes is not currently accepting + // contributions to the providers. Once that is an option, the provider should be updated to + // directly call `EnvironmentFromFile`. Until then, we rely on dispatching Azure Stack environment creation + // from this method based on the name that is provided to us. + if strings.EqualFold(name, "AZURESTACKCLOUD") { + return EnvironmentFromFile(os.Getenv(EnvironmentFilepathName)) + } + name = strings.ToUpper(name) env, ok := environments[name] if !ok { return env, fmt.Errorf("autorest/azure: There is no cloud environment matching the name %q", name) } + return env, nil } -// OAuthConfigForTenant returns an OAuthConfig with tenant specific urls -func (env Environment) OAuthConfigForTenant(tenantID string) (*OAuthConfig, error) { - return OAuthConfigForTenant(env.ActiveDirectoryEndpoint, tenantID) -} - -// OAuthConfigForTenant returns an OAuthConfig with tenant specific urls for target cloud auth endpoint -func OAuthConfigForTenant(activeDirectoryEndpoint, tenantID string) (*OAuthConfig, error) { - template := "%s/oauth2/%s?api-version=%s" - u, err := url.Parse(activeDirectoryEndpoint) +// EnvironmentFromFile loads an Environment from a configuration file available on disk. +// This function is particularly useful in the Hybrid Cloud model, where one must define their own +// endpoints. +func EnvironmentFromFile(location string) (unmarshaled Environment, err error) { + fileContents, err := ioutil.ReadFile(location) if err != nil { - return nil, err - } - authorizeURL, err := u.Parse(fmt.Sprintf(template, tenantID, "authorize", activeDirectoryAPIVersion)) - if err != nil { - return nil, err - } - tokenURL, err := u.Parse(fmt.Sprintf(template, tenantID, "token", activeDirectoryAPIVersion)) - if err != nil { - return nil, err - } - deviceCodeURL, err := u.Parse(fmt.Sprintf(template, tenantID, "devicecode", activeDirectoryAPIVersion)) - if err != nil { - return nil, err + return } - return &OAuthConfig{ - AuthorizeEndpoint: *authorizeURL, - TokenEndpoint: *tokenURL, - DeviceCodeEndpoint: *deviceCodeURL, - }, nil + err = json.Unmarshal(fileContents, &unmarshaled) + + return } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/metadata_environment.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/metadata_environment.go new file mode 100644 index 000000000..507f9e95c --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/metadata_environment.go @@ -0,0 +1,245 @@ +package azure + +import ( + "encoding/json" + "fmt" + "io/ioutil" + "net/http" + "strings" + + "github.com/Azure/go-autorest/autorest" +) + +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +type audience []string + +type authentication struct { + LoginEndpoint string `json:"loginEndpoint"` + Audiences audience `json:"audiences"` +} + +type environmentMetadataInfo struct { + GalleryEndpoint string `json:"galleryEndpoint"` + GraphEndpoint string `json:"graphEndpoint"` + PortalEndpoint string `json:"portalEndpoint"` + Authentication authentication `json:"authentication"` +} + +// EnvironmentProperty represent property names that clients can override +type EnvironmentProperty string + +const ( + // EnvironmentName ... + EnvironmentName EnvironmentProperty = "name" + // EnvironmentManagementPortalURL .. + EnvironmentManagementPortalURL EnvironmentProperty = "managementPortalURL" + // EnvironmentPublishSettingsURL ... + EnvironmentPublishSettingsURL EnvironmentProperty = "publishSettingsURL" + // EnvironmentServiceManagementEndpoint ... + EnvironmentServiceManagementEndpoint EnvironmentProperty = "serviceManagementEndpoint" + // EnvironmentResourceManagerEndpoint ... + EnvironmentResourceManagerEndpoint EnvironmentProperty = "resourceManagerEndpoint" + // EnvironmentActiveDirectoryEndpoint ... + EnvironmentActiveDirectoryEndpoint EnvironmentProperty = "activeDirectoryEndpoint" + // EnvironmentGalleryEndpoint ... + EnvironmentGalleryEndpoint EnvironmentProperty = "galleryEndpoint" + // EnvironmentKeyVaultEndpoint ... + EnvironmentKeyVaultEndpoint EnvironmentProperty = "keyVaultEndpoint" + // EnvironmentGraphEndpoint ... + EnvironmentGraphEndpoint EnvironmentProperty = "graphEndpoint" + // EnvironmentServiceBusEndpoint ... + EnvironmentServiceBusEndpoint EnvironmentProperty = "serviceBusEndpoint" + // EnvironmentBatchManagementEndpoint ... + EnvironmentBatchManagementEndpoint EnvironmentProperty = "batchManagementEndpoint" + // EnvironmentStorageEndpointSuffix ... + EnvironmentStorageEndpointSuffix EnvironmentProperty = "storageEndpointSuffix" + // EnvironmentSQLDatabaseDNSSuffix ... + EnvironmentSQLDatabaseDNSSuffix EnvironmentProperty = "sqlDatabaseDNSSuffix" + // EnvironmentTrafficManagerDNSSuffix ... + EnvironmentTrafficManagerDNSSuffix EnvironmentProperty = "trafficManagerDNSSuffix" + // EnvironmentKeyVaultDNSSuffix ... + EnvironmentKeyVaultDNSSuffix EnvironmentProperty = "keyVaultDNSSuffix" + // EnvironmentServiceBusEndpointSuffix ... + EnvironmentServiceBusEndpointSuffix EnvironmentProperty = "serviceBusEndpointSuffix" + // EnvironmentServiceManagementVMDNSSuffix ... + EnvironmentServiceManagementVMDNSSuffix EnvironmentProperty = "serviceManagementVMDNSSuffix" + // EnvironmentResourceManagerVMDNSSuffix ... + EnvironmentResourceManagerVMDNSSuffix EnvironmentProperty = "resourceManagerVMDNSSuffix" + // EnvironmentContainerRegistryDNSSuffix ... + EnvironmentContainerRegistryDNSSuffix EnvironmentProperty = "containerRegistryDNSSuffix" + // EnvironmentTokenAudience ... + EnvironmentTokenAudience EnvironmentProperty = "tokenAudience" +) + +// OverrideProperty represents property name and value that clients can override +type OverrideProperty struct { + Key EnvironmentProperty + Value string +} + +// EnvironmentFromURL loads an Environment from a URL +// This function is particularly useful in the Hybrid Cloud model, where one may define their own +// endpoints. +func EnvironmentFromURL(resourceManagerEndpoint string, properties ...OverrideProperty) (environment Environment, err error) { + var metadataEnvProperties environmentMetadataInfo + + if resourceManagerEndpoint == "" { + return environment, fmt.Errorf("Metadata resource manager endpoint is empty") + } + + if metadataEnvProperties, err = retrieveMetadataEnvironment(resourceManagerEndpoint); err != nil { + return environment, err + } + + // Give priority to user's override values + overrideProperties(&environment, properties) + + if environment.Name == "" { + environment.Name = "HybridEnvironment" + } + stampDNSSuffix := environment.StorageEndpointSuffix + if stampDNSSuffix == "" { + stampDNSSuffix = strings.TrimSuffix(strings.TrimPrefix(strings.Replace(resourceManagerEndpoint, strings.Split(resourceManagerEndpoint, ".")[0], "", 1), "."), "/") + environment.StorageEndpointSuffix = stampDNSSuffix + } + if environment.KeyVaultDNSSuffix == "" { + environment.KeyVaultDNSSuffix = fmt.Sprintf("%s.%s", "vault", stampDNSSuffix) + } + if environment.KeyVaultEndpoint == "" { + environment.KeyVaultEndpoint = fmt.Sprintf("%s%s", "https://", environment.KeyVaultDNSSuffix) + } + if environment.TokenAudience == "" { + environment.TokenAudience = metadataEnvProperties.Authentication.Audiences[0] + } + if environment.ActiveDirectoryEndpoint == "" { + environment.ActiveDirectoryEndpoint = metadataEnvProperties.Authentication.LoginEndpoint + } + if environment.ResourceManagerEndpoint == "" { + environment.ResourceManagerEndpoint = resourceManagerEndpoint + } + if environment.GalleryEndpoint == "" { + environment.GalleryEndpoint = metadataEnvProperties.GalleryEndpoint + } + if environment.GraphEndpoint == "" { + environment.GraphEndpoint = metadataEnvProperties.GraphEndpoint + } + + return environment, nil +} + +func overrideProperties(environment *Environment, properties []OverrideProperty) { + for _, property := range properties { + switch property.Key { + case EnvironmentName: + { + environment.Name = property.Value + } + case EnvironmentManagementPortalURL: + { + environment.ManagementPortalURL = property.Value + } + case EnvironmentPublishSettingsURL: + { + environment.PublishSettingsURL = property.Value + } + case EnvironmentServiceManagementEndpoint: + { + environment.ServiceManagementEndpoint = property.Value + } + case EnvironmentResourceManagerEndpoint: + { + environment.ResourceManagerEndpoint = property.Value + } + case EnvironmentActiveDirectoryEndpoint: + { + environment.ActiveDirectoryEndpoint = property.Value + } + case EnvironmentGalleryEndpoint: + { + environment.GalleryEndpoint = property.Value + } + case EnvironmentKeyVaultEndpoint: + { + environment.KeyVaultEndpoint = property.Value + } + case EnvironmentGraphEndpoint: + { + environment.GraphEndpoint = property.Value + } + case EnvironmentServiceBusEndpoint: + { + environment.ServiceBusEndpoint = property.Value + } + case EnvironmentBatchManagementEndpoint: + { + environment.BatchManagementEndpoint = property.Value + } + case EnvironmentStorageEndpointSuffix: + { + environment.StorageEndpointSuffix = property.Value + } + case EnvironmentSQLDatabaseDNSSuffix: + { + environment.SQLDatabaseDNSSuffix = property.Value + } + case EnvironmentTrafficManagerDNSSuffix: + { + environment.TrafficManagerDNSSuffix = property.Value + } + case EnvironmentKeyVaultDNSSuffix: + { + environment.KeyVaultDNSSuffix = property.Value + } + case EnvironmentServiceBusEndpointSuffix: + { + environment.ServiceBusEndpointSuffix = property.Value + } + case EnvironmentServiceManagementVMDNSSuffix: + { + environment.ServiceManagementVMDNSSuffix = property.Value + } + case EnvironmentResourceManagerVMDNSSuffix: + { + environment.ResourceManagerVMDNSSuffix = property.Value + } + case EnvironmentContainerRegistryDNSSuffix: + { + environment.ContainerRegistryDNSSuffix = property.Value + } + case EnvironmentTokenAudience: + { + environment.TokenAudience = property.Value + } + } + } +} + +func retrieveMetadataEnvironment(endpoint string) (environment environmentMetadataInfo, err error) { + client := autorest.NewClientWithUserAgent("") + managementEndpoint := fmt.Sprintf("%s%s", strings.TrimSuffix(endpoint, "/"), "/metadata/endpoints?api-version=1.0") + req, _ := http.NewRequest("GET", managementEndpoint, nil) + response, err := client.Do(req) + if err != nil { + return environment, err + } + defer response.Body.Close() + jsonResponse, err := ioutil.ReadAll(response.Body) + if err != nil { + return environment, err + } + err = json.Unmarshal(jsonResponse, &environment) + return environment, err +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/rp.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/rp.go new file mode 100644 index 000000000..65ad0afc8 --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/rp.go @@ -0,0 +1,200 @@ +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package azure + +import ( + "errors" + "fmt" + "net/http" + "net/url" + "strings" + "time" + + "github.com/Azure/go-autorest/autorest" +) + +// DoRetryWithRegistration tries to register the resource provider in case it is unregistered. +// It also handles request retries +func DoRetryWithRegistration(client autorest.Client) autorest.SendDecorator { + return func(s autorest.Sender) autorest.Sender { + return autorest.SenderFunc(func(r *http.Request) (resp *http.Response, err error) { + rr := autorest.NewRetriableRequest(r) + for currentAttempt := 0; currentAttempt < client.RetryAttempts; currentAttempt++ { + err = rr.Prepare() + if err != nil { + return resp, err + } + + resp, err = autorest.SendWithSender(s, rr.Request(), + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...), + ) + if err != nil { + return resp, err + } + + if resp.StatusCode != http.StatusConflict || client.SkipResourceProviderRegistration { + return resp, err + } + var re RequestError + err = autorest.Respond( + resp, + autorest.ByUnmarshallingJSON(&re), + ) + if err != nil { + return resp, err + } + err = re + + if re.ServiceError != nil && re.ServiceError.Code == "MissingSubscriptionRegistration" { + regErr := register(client, r, re) + if regErr != nil { + return resp, fmt.Errorf("failed auto registering Resource Provider: %s. Original error: %s", regErr, err) + } + } + } + return resp, fmt.Errorf("failed request: %s", err) + }) + } +} + +func getProvider(re RequestError) (string, error) { + if re.ServiceError != nil && len(re.ServiceError.Details) > 0 { + return re.ServiceError.Details[0]["target"].(string), nil + } + return "", errors.New("provider was not found in the response") +} + +func register(client autorest.Client, originalReq *http.Request, re RequestError) error { + subID := getSubscription(originalReq.URL.Path) + if subID == "" { + return errors.New("missing parameter subscriptionID to register resource provider") + } + providerName, err := getProvider(re) + if err != nil { + return fmt.Errorf("missing parameter provider to register resource provider: %s", err) + } + newURL := url.URL{ + Scheme: originalReq.URL.Scheme, + Host: originalReq.URL.Host, + } + + // taken from the resources SDK + // with almost identical code, this sections are easier to mantain + // It is also not a good idea to import the SDK here + // https://github.com/Azure/azure-sdk-for-go/blob/9f366792afa3e0ddaecdc860e793ba9d75e76c27/arm/resources/resources/providers.go#L252 + pathParameters := map[string]interface{}{ + "resourceProviderNamespace": autorest.Encode("path", providerName), + "subscriptionId": autorest.Encode("path", subID), + } + + const APIVersion = "2016-09-01" + queryParameters := map[string]interface{}{ + "api-version": APIVersion, + } + + preparer := autorest.CreatePreparer( + autorest.AsPost(), + autorest.WithBaseURL(newURL.String()), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/{resourceProviderNamespace}/register", pathParameters), + autorest.WithQueryParameters(queryParameters), + ) + + req, err := preparer.Prepare(&http.Request{}) + if err != nil { + return err + } + req = req.WithContext(originalReq.Context()) + + resp, err := autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...), + ) + if err != nil { + return err + } + + type Provider struct { + RegistrationState *string `json:"registrationState,omitempty"` + } + var provider Provider + + err = autorest.Respond( + resp, + WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&provider), + autorest.ByClosing(), + ) + if err != nil { + return err + } + + // poll for registered provisioning state + now := time.Now() + for err == nil && time.Since(now) < client.PollingDuration { + // taken from the resources SDK + // https://github.com/Azure/azure-sdk-for-go/blob/9f366792afa3e0ddaecdc860e793ba9d75e76c27/arm/resources/resources/providers.go#L45 + preparer := autorest.CreatePreparer( + autorest.AsGet(), + autorest.WithBaseURL(newURL.String()), + autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/{resourceProviderNamespace}", pathParameters), + autorest.WithQueryParameters(queryParameters), + ) + req, err = preparer.Prepare(&http.Request{}) + if err != nil { + return err + } + req = req.WithContext(originalReq.Context()) + + resp, err := autorest.SendWithSender(client, req, + autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...), + ) + if err != nil { + return err + } + + err = autorest.Respond( + resp, + WithErrorUnlessStatusCode(http.StatusOK), + autorest.ByUnmarshallingJSON(&provider), + autorest.ByClosing(), + ) + if err != nil { + return err + } + + if provider.RegistrationState != nil && + *provider.RegistrationState == "Registered" { + break + } + + delayed := autorest.DelayWithRetryAfter(resp, originalReq.Context().Done()) + if !delayed && !autorest.DelayForBackoff(client.PollingDelay, 0, originalReq.Context().Done()) { + return originalReq.Context().Err() + } + } + if !(time.Since(now) < client.PollingDuration) { + return errors.New("polling for resource provider registration has exceeded the polling duration") + } + return err +} + +func getSubscription(path string) string { + parts := strings.Split(path, "/") + for i, v := range parts { + if v == "subscriptions" && (i+1) < len(parts) { + return parts[i+1] + } + } + return "" +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/token.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/token.go deleted file mode 100644 index cfcd03011..000000000 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/token.go +++ /dev/null @@ -1,363 +0,0 @@ -package azure - -import ( - "crypto/rand" - "crypto/rsa" - "crypto/sha1" - "crypto/x509" - "encoding/base64" - "fmt" - "net/http" - "net/url" - "strconv" - "time" - - "github.com/Azure/go-autorest/autorest" - "github.com/dgrijalva/jwt-go" -) - -const ( - defaultRefresh = 5 * time.Minute - tokenBaseDate = "1970-01-01T00:00:00Z" - - // OAuthGrantTypeDeviceCode is the "grant_type" identifier used in device flow - OAuthGrantTypeDeviceCode = "device_code" - - // OAuthGrantTypeClientCredentials is the "grant_type" identifier used in credential flows - OAuthGrantTypeClientCredentials = "client_credentials" - - // OAuthGrantTypeRefreshToken is the "grant_type" identifier used in refresh token flows - OAuthGrantTypeRefreshToken = "refresh_token" -) - -var expirationBase time.Time - -func init() { - expirationBase, _ = time.Parse(time.RFC3339, tokenBaseDate) -} - -// TokenRefreshCallback is the type representing callbacks that will be called after -// a successful token refresh -type TokenRefreshCallback func(Token) error - -// Token encapsulates the access token used to authorize Azure requests. -type Token struct { - AccessToken string `json:"access_token"` - RefreshToken string `json:"refresh_token"` - - ExpiresIn string `json:"expires_in"` - ExpiresOn string `json:"expires_on"` - NotBefore string `json:"not_before"` - - Resource string `json:"resource"` - Type string `json:"token_type"` -} - -// Expires returns the time.Time when the Token expires. -func (t Token) Expires() time.Time { - s, err := strconv.Atoi(t.ExpiresOn) - if err != nil { - s = -3600 - } - return expirationBase.Add(time.Duration(s) * time.Second).UTC() -} - -// IsExpired returns true if the Token is expired, false otherwise. -func (t Token) IsExpired() bool { - return t.WillExpireIn(0) -} - -// WillExpireIn returns true if the Token will expire after the passed time.Duration interval -// from now, false otherwise. -func (t Token) WillExpireIn(d time.Duration) bool { - return !t.Expires().After(time.Now().Add(d)) -} - -// WithAuthorization returns a PrepareDecorator that adds an HTTP Authorization header whose -// value is "Bearer " followed by the AccessToken of the Token. -func (t *Token) WithAuthorization() autorest.PrepareDecorator { - return func(p autorest.Preparer) autorest.Preparer { - return autorest.PreparerFunc(func(r *http.Request) (*http.Request, error) { - return (autorest.WithBearerAuthorization(t.AccessToken)(p)).Prepare(r) - }) - } -} - -// ServicePrincipalNoSecret represents a secret type that contains no secret -// meaning it is not valid for fetching a fresh token. This is used by Manual -type ServicePrincipalNoSecret struct { -} - -// SetAuthenticationValues is a method of the interface ServicePrincipalSecret -// It only returns an error for the ServicePrincipalNoSecret type -func (noSecret *ServicePrincipalNoSecret) SetAuthenticationValues(spt *ServicePrincipalToken, v *url.Values) error { - return fmt.Errorf("Manually created ServicePrincipalToken does not contain secret material to retrieve a new access token") -} - -// ServicePrincipalSecret is an interface that allows various secret mechanism to fill the form -// that is submitted when acquiring an oAuth token. -type ServicePrincipalSecret interface { - SetAuthenticationValues(spt *ServicePrincipalToken, values *url.Values) error -} - -// ServicePrincipalTokenSecret implements ServicePrincipalSecret for client_secret type authorization. -type ServicePrincipalTokenSecret struct { - ClientSecret string -} - -// SetAuthenticationValues is a method of the interface ServicePrincipalSecret. -// It will populate the form submitted during oAuth Token Acquisition using the client_secret. -func (tokenSecret *ServicePrincipalTokenSecret) SetAuthenticationValues(spt *ServicePrincipalToken, v *url.Values) error { - v.Set("client_secret", tokenSecret.ClientSecret) - return nil -} - -// ServicePrincipalCertificateSecret implements ServicePrincipalSecret for generic RSA cert auth with signed JWTs. -type ServicePrincipalCertificateSecret struct { - Certificate *x509.Certificate - PrivateKey *rsa.PrivateKey -} - -// SignJwt returns the JWT signed with the certificate's private key. -func (secret *ServicePrincipalCertificateSecret) SignJwt(spt *ServicePrincipalToken) (string, error) { - hasher := sha1.New() - _, err := hasher.Write(secret.Certificate.Raw) - if err != nil { - return "", err - } - - thumbprint := base64.URLEncoding.EncodeToString(hasher.Sum(nil)) - - // The jti (JWT ID) claim provides a unique identifier for the JWT. - jti := make([]byte, 20) - _, err = rand.Read(jti) - if err != nil { - return "", err - } - - token := jwt.New(jwt.SigningMethodRS256) - token.Header["x5t"] = thumbprint - token.Claims = jwt.MapClaims{ - "aud": spt.oauthConfig.TokenEndpoint.String(), - "iss": spt.clientID, - "sub": spt.clientID, - "jti": base64.URLEncoding.EncodeToString(jti), - "nbf": time.Now().Unix(), - "exp": time.Now().Add(time.Hour * 24).Unix(), - } - - signedString, err := token.SignedString(secret.PrivateKey) - return signedString, err -} - -// SetAuthenticationValues is a method of the interface ServicePrincipalSecret. -// It will populate the form submitted during oAuth Token Acquisition using a JWT signed with a certificate. -func (secret *ServicePrincipalCertificateSecret) SetAuthenticationValues(spt *ServicePrincipalToken, v *url.Values) error { - jwt, err := secret.SignJwt(spt) - if err != nil { - return err - } - - v.Set("client_assertion", jwt) - v.Set("client_assertion_type", "urn:ietf:params:oauth:client-assertion-type:jwt-bearer") - return nil -} - -// ServicePrincipalToken encapsulates a Token created for a Service Principal. -type ServicePrincipalToken struct { - Token - - secret ServicePrincipalSecret - oauthConfig OAuthConfig - clientID string - resource string - autoRefresh bool - refreshWithin time.Duration - sender autorest.Sender - - refreshCallbacks []TokenRefreshCallback -} - -// NewServicePrincipalTokenWithSecret create a ServicePrincipalToken using the supplied ServicePrincipalSecret implementation. -func NewServicePrincipalTokenWithSecret(oauthConfig OAuthConfig, id string, resource string, secret ServicePrincipalSecret, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { - spt := &ServicePrincipalToken{ - oauthConfig: oauthConfig, - secret: secret, - clientID: id, - resource: resource, - autoRefresh: true, - refreshWithin: defaultRefresh, - sender: &http.Client{}, - refreshCallbacks: callbacks, - } - return spt, nil -} - -// NewServicePrincipalTokenFromManualToken creates a ServicePrincipalToken using the supplied token -func NewServicePrincipalTokenFromManualToken(oauthConfig OAuthConfig, clientID string, resource string, token Token, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { - spt, err := NewServicePrincipalTokenWithSecret( - oauthConfig, - clientID, - resource, - &ServicePrincipalNoSecret{}, - callbacks...) - if err != nil { - return nil, err - } - - spt.Token = token - - return spt, nil -} - -// NewServicePrincipalToken creates a ServicePrincipalToken from the supplied Service Principal -// credentials scoped to the named resource. -func NewServicePrincipalToken(oauthConfig OAuthConfig, clientID string, secret string, resource string, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { - return NewServicePrincipalTokenWithSecret( - oauthConfig, - clientID, - resource, - &ServicePrincipalTokenSecret{ - ClientSecret: secret, - }, - callbacks..., - ) -} - -// NewServicePrincipalTokenFromCertificate create a ServicePrincipalToken from the supplied pkcs12 bytes. -func NewServicePrincipalTokenFromCertificate(oauthConfig OAuthConfig, clientID string, certificate *x509.Certificate, privateKey *rsa.PrivateKey, resource string, callbacks ...TokenRefreshCallback) (*ServicePrincipalToken, error) { - return NewServicePrincipalTokenWithSecret( - oauthConfig, - clientID, - resource, - &ServicePrincipalCertificateSecret{ - PrivateKey: privateKey, - Certificate: certificate, - }, - callbacks..., - ) -} - -// EnsureFresh will refresh the token if it will expire within the refresh window (as set by -// RefreshWithin). -func (spt *ServicePrincipalToken) EnsureFresh() error { - if spt.WillExpireIn(spt.refreshWithin) { - return spt.Refresh() - } - return nil -} - -// InvokeRefreshCallbacks calls any TokenRefreshCallbacks that were added to the SPT during initialization -func (spt *ServicePrincipalToken) InvokeRefreshCallbacks(token Token) error { - if spt.refreshCallbacks != nil { - for _, callback := range spt.refreshCallbacks { - err := callback(spt.Token) - if err != nil { - return autorest.NewErrorWithError(err, - "azure.ServicePrincipalToken", "InvokeRefreshCallbacks", nil, "A TokenRefreshCallback handler returned an error") - } - } - } - return nil -} - -// Refresh obtains a fresh token for the Service Principal. -func (spt *ServicePrincipalToken) Refresh() error { - return spt.refreshInternal(spt.resource) -} - -// RefreshExchange refreshes the token, but for a different resource. -func (spt *ServicePrincipalToken) RefreshExchange(resource string) error { - return spt.refreshInternal(resource) -} - -func (spt *ServicePrincipalToken) refreshInternal(resource string) error { - v := url.Values{} - v.Set("client_id", spt.clientID) - v.Set("resource", resource) - - if spt.RefreshToken != "" { - v.Set("grant_type", OAuthGrantTypeRefreshToken) - v.Set("refresh_token", spt.RefreshToken) - } else { - v.Set("grant_type", OAuthGrantTypeClientCredentials) - err := spt.secret.SetAuthenticationValues(spt, &v) - if err != nil { - return err - } - } - - req, _ := autorest.Prepare(&http.Request{}, - autorest.AsPost(), - autorest.AsFormURLEncoded(), - autorest.WithBaseURL(spt.oauthConfig.TokenEndpoint.String()), - autorest.WithFormData(v)) - - resp, err := autorest.SendWithSender(spt.sender, req) - if err != nil { - return autorest.NewErrorWithError(err, - "azure.ServicePrincipalToken", "Refresh", resp, "Failure sending request for Service Principal %s", - spt.clientID) - } - - var newToken Token - err = autorest.Respond(resp, - autorest.WithErrorUnlessStatusCode(http.StatusOK), - autorest.ByUnmarshallingJSON(&newToken), - autorest.ByClosing()) - if err != nil { - return autorest.NewErrorWithError(err, - "azure.ServicePrincipalToken", "Refresh", resp, "Failure handling response to Service Principal %s request", - spt.clientID) - } - - spt.Token = newToken - - err = spt.InvokeRefreshCallbacks(newToken) - if err != nil { - // its already wrapped inside InvokeRefreshCallbacks - return err - } - - return nil -} - -// SetAutoRefresh enables or disables automatic refreshing of stale tokens. -func (spt *ServicePrincipalToken) SetAutoRefresh(autoRefresh bool) { - spt.autoRefresh = autoRefresh -} - -// SetRefreshWithin sets the interval within which if the token will expire, EnsureFresh will -// refresh the token. -func (spt *ServicePrincipalToken) SetRefreshWithin(d time.Duration) { - spt.refreshWithin = d - return -} - -// SetSender sets the autorest.Sender used when obtaining the Service Principal token. An -// undecorated http.Client is used by default. -func (spt *ServicePrincipalToken) SetSender(s autorest.Sender) { - spt.sender = s -} - -// WithAuthorization returns a PrepareDecorator that adds an HTTP Authorization header whose -// value is "Bearer " followed by the AccessToken of the ServicePrincipalToken. -// -// By default, the token will automatically refresh if nearly expired (as determined by the -// RefreshWithin interval). Use the AutoRefresh method to enable or disable automatically refreshing -// tokens. -func (spt *ServicePrincipalToken) WithAuthorization() autorest.PrepareDecorator { - return func(p autorest.Preparer) autorest.Preparer { - return autorest.PreparerFunc(func(r *http.Request) (*http.Request, error) { - if spt.autoRefresh { - err := spt.EnsureFresh() - if err != nil { - return r, autorest.NewErrorWithError(err, - "azure.ServicePrincipalToken", "WithAuthorization", nil, "Failed to refresh Service Principal Token for request to %s", - r.URL) - } - } - return (autorest.WithBearerAuthorization(spt.AccessToken)(p)).Prepare(r) - }) - } -} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/client.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/client.go index b5f94b5c3..4e92dcad0 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/client.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/client.go @@ -1,5 +1,19 @@ package autorest +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "bytes" "fmt" @@ -21,6 +35,9 @@ const ( // DefaultRetryAttempts is number of attempts for retry status codes (5xx). DefaultRetryAttempts = 3 + + // DefaultRetryDuration is the duration to wait between retries. + DefaultRetryDuration = 30 * time.Second ) var ( @@ -33,8 +50,10 @@ var ( Version(), ) - statusCodesForRetry = []int{ + // StatusCodesForRetry are a defined group of status code for which the client will retry + StatusCodesForRetry = []int{ http.StatusRequestTimeout, // 408 + http.StatusTooManyRequests, // 429 http.StatusInternalServerError, // 500 http.StatusBadGateway, // 502 http.StatusServiceUnavailable, // 503 @@ -147,6 +166,9 @@ type Client struct { UserAgent string Jar http.CookieJar + + // Set to true to skip attempted registration of resource providers (false by default). + SkipResourceProviderRegistration bool } // NewClientWithUserAgent returns an instance of a Client with the UserAgent set to the passed @@ -156,9 +178,10 @@ func NewClientWithUserAgent(ua string) Client { PollingDelay: DefaultPollingDelay, PollingDuration: DefaultPollingDuration, RetryAttempts: DefaultRetryAttempts, - RetryDuration: 30 * time.Second, + RetryDuration: DefaultRetryDuration, UserAgent: defaultUserAgent, } + c.Sender = c.sender() c.AddToUserAgent(ua) return c } @@ -180,16 +203,22 @@ func (c Client) Do(r *http.Request) (*http.Response, error) { r, _ = Prepare(r, WithUserAgent(c.UserAgent)) } + // NOTE: c.WithInspection() must be last in the list so that it can inspect all preceding operations r, err := Prepare(r, - c.WithInspection(), - c.WithAuthorization()) + c.WithAuthorization(), + c.WithInspection()) if err != nil { - return nil, NewErrorWithError(err, "autorest/Client", "Do", nil, "Preparing request failed") + var resp *http.Response + if detErr, ok := err.(DetailedError); ok { + // if the authorization failed (e.g. invalid credentials) there will + // be a response associated with the error, be sure to return it. + resp = detErr.Response + } + return resp, NewErrorWithError(err, "autorest/Client", "Do", nil, "Preparing request failed") } - resp, err := SendWithSender(c.sender(), r, - DoRetryForStatusCodes(c.RetryAttempts, c.RetryDuration, statusCodesForRetry...)) - Respond(resp, - c.ByInspecting()) + + resp, err := SendWithSender(c.sender(), r) + Respond(resp, c.ByInspecting()) return resp, err } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/date.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/date.go index 80ca60e9b..c45710656 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/date.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/date.go @@ -5,6 +5,20 @@ time.Time types. And both convert to time.Time through a ToTime method. */ package date +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "fmt" "time" diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/time.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/time.go index c1af62963..b453fad04 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/time.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/time.go @@ -1,5 +1,19 @@ package date +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "regexp" "time" diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/timerfc1123.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/timerfc1123.go index 11995fb9f..48fb39ba9 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/timerfc1123.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/timerfc1123.go @@ -1,5 +1,19 @@ package date +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "errors" "time" diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/unixtime.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/unixtime.go index 772d3fdb9..7073959b2 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/unixtime.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/unixtime.go @@ -1,5 +1,19 @@ package date +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "bytes" "encoding/binary" @@ -44,7 +58,10 @@ func UnixEpoch() time.Time { func (t UnixTime) MarshalJSON() ([]byte, error) { buffer := &bytes.Buffer{} enc := json.NewEncoder(buffer) - enc.Encode(float64(time.Time(t).UnixNano()) / 1e9) + err := enc.Encode(float64(time.Time(t).UnixNano()) / 1e9) + if err != nil { + return nil, err + } return buffer.Bytes(), nil } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/utility.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/utility.go index 207b1a240..12addf0eb 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/utility.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/date/utility.go @@ -1,5 +1,19 @@ package date +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "strings" "time" diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/error.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/error.go index 4bcb8f27b..f724f3332 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/error.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/error.go @@ -1,5 +1,19 @@ package autorest +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "fmt" "net/http" @@ -31,6 +45,9 @@ type DetailedError struct { // Service Error is the response body of failed API in bytes ServiceError []byte + + // Response is the response object that was returned during failure if applicable. + Response *http.Response } // NewError creates a new Error conforming object from the passed packageType, method, and @@ -67,6 +84,7 @@ func NewErrorWithError(original error, packageType string, method string, resp * Method: method, StatusCode: statusCode, Message: fmt.Sprintf(message, args...), + Response: resp, } } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/preparer.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/preparer.go index c9deb261a..6d67bd733 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/preparer.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/preparer.go @@ -1,5 +1,19 @@ package autorest +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "bytes" "encoding/json" @@ -13,8 +27,9 @@ import ( ) const ( - mimeTypeJSON = "application/json" - mimeTypeFormPost = "application/x-www-form-urlencoded" + mimeTypeJSON = "application/json" + mimeTypeOctetStream = "application/octet-stream" + mimeTypeFormPost = "application/x-www-form-urlencoded" headerAuthorization = "Authorization" headerContentType = "Content-Type" @@ -98,6 +113,28 @@ func WithHeader(header string, value string) PrepareDecorator { } } +// WithHeaders returns a PrepareDecorator that sets the specified HTTP headers of the http.Request to +// the passed value. It canonicalizes the passed headers name (via http.CanonicalHeaderKey) before +// adding them. +func WithHeaders(headers map[string]interface{}) PrepareDecorator { + h := ensureValueStrings(headers) + return func(p Preparer) Preparer { + return PreparerFunc(func(r *http.Request) (*http.Request, error) { + r, err := p.Prepare(r) + if err == nil { + if r.Header == nil { + r.Header = make(http.Header) + } + + for name, value := range h { + r.Header.Set(http.CanonicalHeaderKey(name), value) + } + } + return r, err + }) + } +} + // WithBearerAuthorization returns a PrepareDecorator that adds an HTTP Authorization header whose // value is "Bearer " followed by the supplied token. func WithBearerAuthorization(token string) PrepareDecorator { @@ -128,6 +165,11 @@ func AsJSON() PrepareDecorator { return AsContentType(mimeTypeJSON) } +// AsOctetStream returns a PrepareDecorator that adds the "application/octet-stream" Content-Type header. +func AsOctetStream() PrepareDecorator { + return AsContentType(mimeTypeOctetStream) +} + // WithMethod returns a PrepareDecorator that sets the HTTP method of the passed request. The // decorator does not validate that the passed method string is a known HTTP method. func WithMethod(method string) PrepareDecorator { @@ -201,6 +243,11 @@ func WithFormData(v url.Values) PrepareDecorator { r, err := p.Prepare(r) if err == nil { s := v.Encode() + + if r.Header == nil { + r.Header = make(http.Header) + } + r.Header.Set(http.CanonicalHeaderKey(headerContentType), mimeTypeFormPost) r.ContentLength = int64(len(s)) r.Body = ioutil.NopCloser(strings.NewReader(s)) } @@ -416,28 +463,18 @@ func WithQueryParameters(queryParameters map[string]interface{}) PrepareDecorato if r.URL == nil { return r, NewError("autorest", "WithQueryParameters", "Invoked with a nil URL") } + v := r.URL.Query() for key, value := range parameters { - v.Add(key, value) + d, err := url.QueryUnescape(value) + if err != nil { + return r, err + } + v.Add(key, d) } - r.URL.RawQuery = createQuery(v) + r.URL.RawQuery = v.Encode() } return r, err }) } } - -// Authorizer is the interface that provides a PrepareDecorator used to supply request -// authorization. Most often, the Authorizer decorator runs last so it has access to the full -// state of the formed HTTP request. -type Authorizer interface { - WithAuthorization() PrepareDecorator -} - -// NullAuthorizer implements a default, "do nothing" Authorizer. -type NullAuthorizer struct{} - -// WithAuthorization returns a PrepareDecorator that does nothing. -func (na NullAuthorizer) WithAuthorization() PrepareDecorator { - return WithNothing() -} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/responder.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/responder.go index 87f71e585..a908a0adb 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/responder.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/responder.go @@ -1,5 +1,19 @@ package autorest +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "bytes" "encoding/json" diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/retriablerequest.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/retriablerequest.go new file mode 100644 index 000000000..fa11dbed7 --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/retriablerequest.go @@ -0,0 +1,52 @@ +package autorest + +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +import ( + "bytes" + "io" + "io/ioutil" + "net/http" +) + +// NewRetriableRequest returns a wrapper around an HTTP request that support retry logic. +func NewRetriableRequest(req *http.Request) *RetriableRequest { + return &RetriableRequest{req: req} +} + +// Request returns the wrapped HTTP request. +func (rr *RetriableRequest) Request() *http.Request { + return rr.req +} + +func (rr *RetriableRequest) prepareFromByteReader() (err error) { + // fall back to making a copy (only do this once) + b := []byte{} + if rr.req.ContentLength > 0 { + b = make([]byte, rr.req.ContentLength) + _, err = io.ReadFull(rr.req.Body, b) + if err != nil { + return err + } + } else { + b, err = ioutil.ReadAll(rr.req.Body) + if err != nil { + return err + } + } + rr.br = bytes.NewReader(b) + rr.req.Body = ioutil.NopCloser(rr.br) + return err +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.7.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.7.go new file mode 100644 index 000000000..7143cc61b --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.7.go @@ -0,0 +1,54 @@ +// +build !go1.8 + +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package autorest + +import ( + "bytes" + "io/ioutil" + "net/http" +) + +// RetriableRequest provides facilities for retrying an HTTP request. +type RetriableRequest struct { + req *http.Request + br *bytes.Reader +} + +// Prepare signals that the request is about to be sent. +func (rr *RetriableRequest) Prepare() (err error) { + // preserve the request body; this is to support retry logic as + // the underlying transport will always close the reqeust body + if rr.req.Body != nil { + if rr.br != nil { + _, err = rr.br.Seek(0, 0 /*io.SeekStart*/) + rr.req.Body = ioutil.NopCloser(rr.br) + } + if err != nil { + return err + } + if rr.br == nil { + // fall back to making a copy (only do this once) + err = rr.prepareFromByteReader() + } + } + return err +} + +func removeRequestBody(req *http.Request) { + req.Body = nil + req.ContentLength = 0 +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.8.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.8.go new file mode 100644 index 000000000..ae15c6bf9 --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/retriablerequest_1.8.go @@ -0,0 +1,66 @@ +// +build go1.8 + +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package autorest + +import ( + "bytes" + "io" + "io/ioutil" + "net/http" +) + +// RetriableRequest provides facilities for retrying an HTTP request. +type RetriableRequest struct { + req *http.Request + rc io.ReadCloser + br *bytes.Reader +} + +// Prepare signals that the request is about to be sent. +func (rr *RetriableRequest) Prepare() (err error) { + // preserve the request body; this is to support retry logic as + // the underlying transport will always close the reqeust body + if rr.req.Body != nil { + if rr.rc != nil { + rr.req.Body = rr.rc + } else if rr.br != nil { + _, err = rr.br.Seek(0, io.SeekStart) + rr.req.Body = ioutil.NopCloser(rr.br) + } + if err != nil { + return err + } + if rr.req.GetBody != nil { + // this will allow us to preserve the body without having to + // make a copy. note we need to do this on each iteration + rr.rc, err = rr.req.GetBody() + if err != nil { + return err + } + } else if rr.br == nil { + // fall back to making a copy (only do this once) + err = rr.prepareFromByteReader() + } + } + return err +} + +func removeRequestBody(req *http.Request) { + req.Body = nil + req.GetBody = nil + req.ContentLength = 0 +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/sender.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/sender.go index 9c0697815..b4f762325 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/sender.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/sender.go @@ -1,12 +1,25 @@ package autorest +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( - "bytes" "fmt" - "io/ioutil" "log" "math" "net/http" + "strconv" "time" ) @@ -73,7 +86,7 @@ func SendWithSender(s Sender, r *http.Request, decorators ...SendDecorator) (*ht func AfterDelay(d time.Duration) SendDecorator { return func(s Sender) Sender { return SenderFunc(func(r *http.Request) (*http.Response, error) { - if !DelayForBackoff(d, 0, r.Cancel) { + if !DelayForBackoff(d, 0, r.Context().Done()) { return nil, fmt.Errorf("autorest: AfterDelay canceled before full delay") } return s.Do(r) @@ -152,7 +165,7 @@ func DoPollForStatusCodes(duration time.Duration, delay time.Duration, codes ... resp, err = s.Do(r) if err == nil && ResponseHasStatusCode(resp, codes...) { - r, err = NewPollingRequest(resp, r.Cancel) + r, err = NewPollingRequestWithContext(r.Context(), resp) for err == nil && ResponseHasStatusCode(resp, codes...) { Respond(resp, @@ -175,12 +188,19 @@ func DoPollForStatusCodes(duration time.Duration, delay time.Duration, codes ... func DoRetryForAttempts(attempts int, backoff time.Duration) SendDecorator { return func(s Sender) Sender { return SenderFunc(func(r *http.Request) (resp *http.Response, err error) { + rr := NewRetriableRequest(r) for attempt := 0; attempt < attempts; attempt++ { - resp, err = s.Do(r) + err = rr.Prepare() + if err != nil { + return resp, err + } + resp, err = s.Do(rr.Request()) if err == nil { return resp, err } - DelayForBackoff(backoff, attempt, r.Cancel) + if !DelayForBackoff(backoff, attempt, r.Context().Done()) { + return nil, r.Context().Err() + } } return resp, err }) @@ -194,29 +214,53 @@ func DoRetryForAttempts(attempts int, backoff time.Duration) SendDecorator { func DoRetryForStatusCodes(attempts int, backoff time.Duration, codes ...int) SendDecorator { return func(s Sender) Sender { return SenderFunc(func(r *http.Request) (resp *http.Response, err error) { - b := []byte{} - if r.Body != nil { - b, err = ioutil.ReadAll(r.Body) + rr := NewRetriableRequest(r) + // Increment to add the first call (attempts denotes number of retries) + attempts++ + for attempt := 0; attempt < attempts; { + err = rr.Prepare() if err != nil { return resp, err } - } - - // Increment to add the first call (attempts denotes number of retries) - attempts++ - for attempt := 0; attempt < attempts; attempt++ { - r.Body = ioutil.NopCloser(bytes.NewBuffer(b)) - resp, err = s.Do(r) - if err != nil || !ResponseHasStatusCode(resp, codes...) { + resp, err = s.Do(rr.Request()) + // we want to retry if err is not nil (e.g. transient network failure). note that for failed authentication + // resp and err will both have a value, so in this case we don't want to retry as it will never succeed. + if err == nil && !ResponseHasStatusCode(resp, codes...) || IsTokenRefreshError(err) { return resp, err } - DelayForBackoff(backoff, attempt, r.Cancel) + delayed := DelayWithRetryAfter(resp, r.Context().Done()) + if !delayed && !DelayForBackoff(backoff, attempt, r.Context().Done()) { + return nil, r.Context().Err() + } + // don't count a 429 against the number of attempts + // so that we continue to retry until it succeeds + if resp == nil || resp.StatusCode != http.StatusTooManyRequests { + attempt++ + } } return resp, err }) } } +// DelayWithRetryAfter invokes time.After for the duration specified in the "Retry-After" header in +// responses with status code 429 +func DelayWithRetryAfter(resp *http.Response, cancel <-chan struct{}) bool { + if resp == nil { + return false + } + retryAfter, _ := strconv.Atoi(resp.Header.Get("Retry-After")) + if resp.StatusCode == http.StatusTooManyRequests && retryAfter > 0 { + select { + case <-time.After(time.Duration(retryAfter) * time.Second): + return true + case <-cancel: + return false + } + } + return false +} + // DoRetryForDuration returns a SendDecorator that retries the request until the total time is equal // to or greater than the specified duration, exponentially backing off between requests using the // supplied backoff time.Duration (which may be zero). Retrying may be canceled by closing the @@ -224,13 +268,20 @@ func DoRetryForStatusCodes(attempts int, backoff time.Duration, codes ...int) Se func DoRetryForDuration(d time.Duration, backoff time.Duration) SendDecorator { return func(s Sender) Sender { return SenderFunc(func(r *http.Request) (resp *http.Response, err error) { + rr := NewRetriableRequest(r) end := time.Now().Add(d) for attempt := 0; time.Now().Before(end); attempt++ { - resp, err = s.Do(r) + err = rr.Prepare() + if err != nil { + return resp, err + } + resp, err = s.Do(rr.Request()) if err == nil { return resp, err } - DelayForBackoff(backoff, attempt, r.Cancel) + if !DelayForBackoff(backoff, attempt, r.Context().Done()) { + return nil, r.Context().Err() + } } return resp, err }) diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/to/convert.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/to/convert.go index 7b180b866..fdda2ce1a 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/to/convert.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/to/convert.go @@ -3,6 +3,20 @@ Package to provides helpers to ease working with pointer values of marshalled st */ package to +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + // String returns a string value for the passed string pointer. It returns the empty string if the // pointer is nil. func String(s *string) string { diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/utility.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/utility.go index 78067148b..afb3e4e16 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/utility.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/utility.go @@ -1,15 +1,31 @@ package autorest +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "bytes" "encoding/json" "encoding/xml" "fmt" "io" + "net/http" "net/url" "reflect" - "sort" "strings" + + "github.com/Azure/go-autorest/autorest/adal" ) // EncodedAs is a series of constants specifying various data encodings @@ -123,13 +139,38 @@ func MapToValues(m map[string]interface{}) url.Values { return v } -// String method converts interface v to string. If interface is a list, it -// joins list elements using separator. -func String(v interface{}, sep ...string) string { - if len(sep) > 0 { - return ensureValueString(strings.Join(v.([]string), sep[0])) +// AsStringSlice method converts interface{} to []string. This expects a +//that the parameter passed to be a slice or array of a type that has the underlying +//type a string. +func AsStringSlice(s interface{}) ([]string, error) { + v := reflect.ValueOf(s) + if v.Kind() != reflect.Slice && v.Kind() != reflect.Array { + return nil, NewError("autorest", "AsStringSlice", "the value's type is not an array.") } - return ensureValueString(v) + stringSlice := make([]string, 0, v.Len()) + + for i := 0; i < v.Len(); i++ { + stringSlice = append(stringSlice, v.Index(i).String()) + } + return stringSlice, nil +} + +// String method converts interface v to string. If interface is a list, it +// joins list elements using the seperator. Note that only sep[0] will be used for +// joining if any separator is specified. +func String(v interface{}, sep ...string) string { + if len(sep) == 0 { + return ensureValueString(v) + } + stringSlice, ok := v.([]string) + if ok == false { + var err error + stringSlice, err = AsStringSlice(v) + if err != nil { + panic(fmt.Sprintf("autorest: Couldn't convert value to a string %s.", err)) + } + } + return ensureValueString(strings.Join(stringSlice, sep[0])) } // Encode method encodes url path and query parameters. @@ -153,26 +194,25 @@ func queryEscape(s string) string { return url.QueryEscape(s) } -// This method is same as Encode() method of "net/url" go package, -// except it does not encode the query parameters because they -// already come encoded. It formats values map in query format (bar=foo&a=b). -func createQuery(v url.Values) string { - var buf bytes.Buffer - keys := make([]string, 0, len(v)) - for k := range v { - keys = append(keys, k) - } - sort.Strings(keys) - for _, k := range keys { - vs := v[k] - prefix := url.QueryEscape(k) + "=" - for _, v := range vs { - if buf.Len() > 0 { - buf.WriteByte('&') - } - buf.WriteString(prefix) - buf.WriteString(v) - } - } - return buf.String() +// ChangeToGet turns the specified http.Request into a GET (it assumes it wasn't). +// This is mainly useful for long-running operations that use the Azure-AsyncOperation +// header, so we change the initial PUT into a GET to retrieve the final result. +func ChangeToGet(req *http.Request) *http.Request { + req.Method = "GET" + req.Body = nil + req.ContentLength = 0 + req.Header.Del("Content-Length") + return req +} + +// IsTokenRefreshError returns true if the specified error implements the TokenRefreshError +// interface. If err is a DetailedError it will walk the chain of Original errors. +func IsTokenRefreshError(err error) bool { + if _, ok := err.(adal.TokenRefreshError); ok { + return true + } + if de, ok := err.(DetailedError); ok { + return IsTokenRefreshError(de.Original) + } + return false } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/validation/error.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/validation/error.go new file mode 100644 index 000000000..fed156dbf --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/validation/error.go @@ -0,0 +1,48 @@ +package validation + +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +import ( + "fmt" +) + +// Error is the type that's returned when the validation of an APIs arguments constraints fails. +type Error struct { + // PackageType is the package type of the object emitting the error. For types, the value + // matches that produced the the '%T' format specifier of the fmt package. For other elements, + // such as functions, it is just the package name (e.g., "autorest"). + PackageType string + + // Method is the name of the method raising the error. + Method string + + // Message is the error message. + Message string +} + +// Error returns a string containing the details of the validation failure. +func (e Error) Error() string { + return fmt.Sprintf("%s#%s: Invalid input: %s", e.PackageType, e.Method, e.Message) +} + +// NewError creates a new Error object with the specified parameters. +// message is treated as a format string to which the optional args apply. +func NewError(packageType string, method string, message string, args ...interface{}) Error { + return Error{ + PackageType: packageType, + Method: method, + Message: fmt.Sprintf(message, args...), + } +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/validation/validation.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/validation/validation.go index d7b0eadc5..d886e0b3f 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/validation/validation.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/validation/validation.go @@ -3,6 +3,20 @@ Package validation provides methods for validating parameter value using reflect */ package validation +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import ( "fmt" "reflect" @@ -91,15 +105,12 @@ func validateStruct(x reflect.Value, v Constraint, name ...string) error { return createError(x, v, fmt.Sprintf("field %q doesn't exist", v.Target)) } - if err := Validate([]Validation{ + return Validate([]Validation{ { TargetValue: getInterfaceValue(f), Constraints: []Constraint{v}, }, - }); err != nil { - return err - } - return nil + }) } func validatePtr(x reflect.Value, v Constraint) error { @@ -205,14 +216,14 @@ func validateString(x reflect.Value, v Constraint) error { return createError(x, v, fmt.Sprintf("rule must be integer value for %v constraint; got: %v", v.Name, v.Rule)) } if len(s) > v.Rule.(int) { - return createError(x, v, fmt.Sprintf("value length must be less than %v", v.Rule)) + return createError(x, v, fmt.Sprintf("value length must be less than or equal to %v", v.Rule)) } case MinLength: if _, ok := v.Rule.(int); !ok { return createError(x, v, fmt.Sprintf("rule must be integer value for %v constraint; got: %v", v.Name, v.Rule)) } if len(s) < v.Rule.(int) { - return createError(x, v, fmt.Sprintf("value length must be greater than %v", v.Rule)) + return createError(x, v, fmt.Sprintf("value length must be greater than or equal to %v", v.Rule)) } case ReadOnly: if len(s) > 0 { @@ -273,6 +284,17 @@ func validateArrayMap(x reflect.Value, v Constraint) error { if x.Len() != 0 { return createError(x, v, "readonly parameter; must send as nil or empty in request") } + case Pattern: + reg, err := regexp.Compile(v.Rule.(string)) + if err != nil { + return createError(x, v, err.Error()) + } + keys := x.MapKeys() + for _, k := range keys { + if !reg.MatchString(k.String()) { + return createError(k, v, fmt.Sprintf("map key doesn't match pattern %v", v.Rule)) + } + } default: return createError(x, v, fmt.Sprintf("constraint %v is not applicable to array, slice and map type", v.Name)) } @@ -368,6 +390,8 @@ func createError(x reflect.Value, v Constraint, err string) error { // NewErrorWithValidationError appends package type and method name in // validation error. +// +// Deprecated: Please use validation.NewError() instead. func NewErrorWithValidationError(err error, packageType, method string) error { - return fmt.Errorf("%s#%s: Invalid input: %v", packageType, method, err) + return NewError(packageType, method, err.Error()) } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/version.go b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/version.go index e325f4ce2..efa7d8e12 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/version.go +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/version.go @@ -1,29 +1,20 @@ package autorest -import ( - "fmt" - "strings" - "sync" -) - -const ( - major = 7 - minor = 3 - patch = 1 - tag = "" -) - -var versionLock sync.Once -var version string +// Copyright 2017 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // Version returns the semantic version (see http://semver.org). func Version() string { - versionLock.Do(func() { - version = fmt.Sprintf("v%d.%d.%d", major, minor, patch) - - if trimmed := strings.TrimPrefix(tag, "-"); trimmed != "" { - version = fmt.Sprintf("%s-%s", version, trimmed) - } - }) - return version + return "v10.7.0" } diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/dgrijalva/jwt-go/README.md b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/dgrijalva/jwt-go/README.md index f48365faf..25aec486c 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/dgrijalva/jwt-go/README.md +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/dgrijalva/jwt-go/README.md @@ -4,7 +4,7 @@ A [go](http://www.golang.org) (or 'golang' for search engine friendliness) imple **BREAKING CHANGES:*** Version 3.0.0 is here. It includes _a lot_ of changes including a few that break the API. We've tried to break as few things as possible, so there should just be a few type signature changes. A full list of breaking changes is available in `VERSION_HISTORY.md`. See `MIGRATION_GUIDE.md` for more information on updating your code. -**NOTICE:** A vulnerability in JWT was [recently published](https://auth0.com/blog/2015/03/31/critical-vulnerabilities-in-json-web-token-libraries/). As this library doesn't force users to validate the `alg` is what they expected, it's possible your usage is effected. There will be an update soon to remedy this, and it will likey require backwards-incompatible changes to the API. In the short term, please make sure your implementation verifies the `alg` is what you expect. +**NOTICE:** It's important that you [validate the `alg` presented is what you expect](https://auth0.com/blog/2015/03/31/critical-vulnerabilities-in-json-web-token-libraries/). This library attempts to make it easy to do the right thing by requiring key types match the expected alg, but you should take the extra step to verify it in your usage. See the examples provided. ## What the heck is a JWT? @@ -74,7 +74,7 @@ It's worth mentioning that OAuth and JWT are not the same thing. A JWT token is Without going too far down the rabbit hole, here's a description of the interaction of these technologies: -* OAuth is a protocol for allowing an identity provider to be separate from the service a user is logging in to. For example, whenever you use Facebook to log into a different service (Yelp, Spotify, etc), you are using OAuth. +* OAuth is a protocol for allowing an identity provider to be separate from the service a user is logging in to. For example, whenever you use Facebook to log into a different service (Yelp, Spotify, etc), you are using OAuth. * OAuth defines several options for passing around authentication data. One popular method is called a "bearer token". A bearer token is simply a string that _should_ only be held by an authenticated user. Thus, simply presenting this token proves your identity. You can probably derive from here why a JWT might make a good bearer token. * Because bearer tokens are used for authentication, it's important they're kept secret. This is why transactions that use bearer tokens typically happen over SSL. @@ -82,4 +82,4 @@ Without going too far down the rabbit hole, here's a description of the interact Documentation can be found [on godoc.org](http://godoc.org/github.com/dgrijalva/jwt-go). -The command line utility included in this project (cmd/jwt) provides a straightforward example of token creation and parsing as well as a useful tool for debugging your own integration. You'll also find several implementation examples in to documentation. +The command line utility included in this project (cmd/jwt) provides a straightforward example of token creation and parsing as well as a useful tool for debugging your own integration. You'll also find several implementation examples in the documentation. diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md index b605b4509..c21551f6b 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md @@ -1,5 +1,11 @@ ## `jwt-go` Version History +#### 3.1.0 + +* Improvements to `jwt` command line tool +* Added `SkipClaimsValidation` option to `Parser` +* Documentation updates + #### 3.0.0 * **Compatibility Breaking Changes**: See MIGRATION_GUIDE.md for tips on updating your code diff --git a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/vendor.json b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/vendor.json index faa33c75f..d231155e7 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/vendor.json +++ b/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/vendor.json @@ -2,13 +2,18 @@ "comment": "", "ignore": "test", "package": [ - {"checksumSHA1":"ZT+e2iMSXAsKCuJ3BNYpOzDaSmk=","path":"github.com/Azure/azure-sdk-for-go/arm/network","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"U2+FgaMOPEFg/yHLD5RbiXI1cq4=","path":"github.com/Azure/go-autorest/autorest","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"ghrnc4vZv6q8zzeakZnrS8CGFhE=","path":"github.com/Azure/go-autorest/autorest/azure","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"QapQRLZlewQkaHFgQ3ktePbyh6k=","path":"github.com/Azure/go-autorest/autorest/date","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"Ev8qCsbFjDlMlX0N2tYAhYQFpUc=","path":"github.com/Azure/go-autorest/autorest/to","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"oBixceM+55gdk47iff8DSEIh3po=","path":"github.com/Azure/go-autorest/autorest/validation","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"}, - {"checksumSHA1":"2Fy1Y6Z3lRRX1891WF/+HT4XS2I=","path":"github.com/dgrijalva/jwt-go","revision":"7696a9f8be6a9e03b2074b4c88eee5ed3c4f0599","revisionTime":"2017-06-10T21:46:25Z"} + {"path":"github.com/Azure/azure-sdk-for-go/arm/network","checksumSHA1":"PDMRG1zVjFxDESUXBwR74V+zVHs=","revision":"a49674fdba11173ce3bc934d020634e3366464de","revisionTime":"2017-12-12T18:23:29Z"}, + {"path":"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-05-01-preview/network","checksumSHA1":"TbC3pmqxFGaynGil/kEjLyBt2Ew=","revision":"4b3cf752d4d7bf6bbf3cde9d5c4d1157098726e3","revisionTime":"2018-04-30T22:05:37Z"}, + {"path":"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2015-06-15/network","checksumSHA1":"Fs6Gcl0nhC0FJ6MsB+Ck7r4huYo=","revision":"4b3cf752d4d7bf6bbf3cde9d5c4d1157098726e3","revisionTime":"2018-04-30T22:05:37Z"}, + {"path":"github.com/Azure/azure-sdk-for-go/version","checksumSHA1":"9XPEy8cuc26nu3Sa19xVtO8j6c4=","revision":"4b3cf752d4d7bf6bbf3cde9d5c4d1157098726e3","revisionTime":"2018-04-30T22:05:37Z"}, + {"path":"github.com/Azure/go-autorest/autorest","checksumSHA1":"MlFs4OQ2cCVlZvSeKSgpdUoLKBs=","revision":"5cdef8c5dbd65369ef90f1b8d7ea2b7348ffc862","revisionTime":"2018-04-27T22:46:30Z"}, + {"path":"github.com/Azure/go-autorest/autorest/adal","checksumSHA1":"vMERbrCV9o4TWRw4dC75uaNihSc=","revision":"5cdef8c5dbd65369ef90f1b8d7ea2b7348ffc862","revisionTime":"2018-04-27T22:46:30Z"}, + {"path":"github.com/Azure/go-autorest/autorest/azure","checksumSHA1":"vUHo41PG/G6Qq+vqD65l9KHFxUs=","revision":"5cdef8c5dbd65369ef90f1b8d7ea2b7348ffc862","revisionTime":"2018-04-27T22:46:30Z"}, + {"path":"github.com/Azure/go-autorest/autorest/date","checksumSHA1":"9nXCi9qQsYjxCeajJKWttxgEt0I=","revision":"5cdef8c5dbd65369ef90f1b8d7ea2b7348ffc862","revisionTime":"2018-04-27T22:46:30Z"}, + {"path":"github.com/Azure/go-autorest/autorest/to","checksumSHA1":"SbBb2GcJNm5GjuPKGL2777QywR4=","revision":"5cdef8c5dbd65369ef90f1b8d7ea2b7348ffc862","revisionTime":"2018-04-27T22:46:30Z"}, + {"path":"github.com/Azure/go-autorest/autorest/validation","checksumSHA1":"5UH4IFIB/98iowPCzzVs4M4MXiQ=","revision":"5cdef8c5dbd65369ef90f1b8d7ea2b7348ffc862","revisionTime":"2018-04-27T22:46:30Z"}, + {"path":"github.com/dgrijalva/jwt-go","checksumSHA1":"+TKtBzv23ywvmmqRiGEjUba4YmI=","revision":"dbeaa9332f19a944acb5736b4456cfcc02140e29","revisionTime":"2017-10-19T21:57:19Z"}, + {"path":"github.com/hashicorp/go-discover/provider/azure","checksumSHA1":"F8qQlAbbXZWigahcusD+1FOgXuU=","revision":"c7c0eb3fc6b6f8024c39cb24f3fe254a72595dd4","revisionTime":"2018-04-27T00:43:23Z"}, ], - "rootPath": "github.com/hashicorp/go-discover/azure" -} \ No newline at end of file + "rootPath": "github.com/hashicorp/go-discover/provider/azure" +} diff --git a/vendor/github.com/hashicorp/go-discover/provider/digitalocean/digitalocean_discover.go b/vendor/github.com/hashicorp/go-discover/provider/digitalocean/digitalocean_discover.go index 81b5808d8..fbd077161 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/digitalocean/digitalocean_discover.go +++ b/vendor/github.com/hashicorp/go-discover/provider/digitalocean/digitalocean_discover.go @@ -11,7 +11,13 @@ import ( "golang.org/x/oauth2" ) -type Provider struct{} +type Provider struct { + userAgent string +} + +func (p *Provider) SetUserAgent(s string) { + p.userAgent = s +} func (p *Provider) Help() string { return `DigitalOcean: @@ -86,6 +92,9 @@ func (p *Provider) Addrs(args map[string]string, l *log.Logger) ([]string, error oauthClient := oauth2.NewClient(context.TODO(), tokenSource) client := godo.NewClient(oauthClient) + if p.userAgent != "" { + client.UserAgent = p.userAgent + } droplets, err := listDropletsByTag(client, tagName) if err != nil { diff --git a/vendor/github.com/hashicorp/go-discover/provider/gce/gce_discover.go b/vendor/github.com/hashicorp/go-discover/provider/gce/gce_discover.go index f502dc8a6..2064cb193 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/gce/gce_discover.go +++ b/vendor/github.com/hashicorp/go-discover/provider/gce/gce_discover.go @@ -12,7 +12,13 @@ import ( compute "google.golang.org/api/compute/v1" ) -type Provider struct{} +type Provider struct { + userAgent string +} + +func (p *Provider) SetUserAgent(s string) { + p.userAgent = s +} func (p *Provider) Help() string { return `Google Cloud: @@ -73,6 +79,9 @@ func (p *Provider) Addrs(args map[string]string, l *log.Logger) ([]string, error if err != nil { return nil, fmt.Errorf("discover-gce: %s", err) } + if p.userAgent != "" { + svc.UserAgent = p.userAgent + } // lookup the project zones to look in if zone != "" { diff --git a/vendor/github.com/hashicorp/go-discover/provider/os/os_discover.go b/vendor/github.com/hashicorp/go-discover/provider/os/os_discover.go index 10ba38096..6db860ff5 100644 --- a/vendor/github.com/hashicorp/go-discover/provider/os/os_discover.go +++ b/vendor/github.com/hashicorp/go-discover/provider/os/os_discover.go @@ -18,7 +18,13 @@ import ( "github.com/gophercloud/gophercloud/pagination" ) -type Provider struct{} +type Provider struct { + userAgent string +} + +func (p *Provider) SetUserAgent(s string) { + p.userAgent = s +} func (p *Provider) Help() string { return `Openstack: @@ -67,6 +73,10 @@ func (p *Provider) Addrs(args map[string]string, l *log.Logger) ([]string, error return nil, err } + if p.userAgent != "" { + client.UserAgent.Prepend(p.userAgent) + } + pager := servers.List(client, ListOpts{ListOpts: servers.ListOpts{Status: "ACTIVE"}, ProjectID: projectID}) if err := pager.Err; err != nil { return nil, fmt.Errorf("discover-os: ListServers failed: %s", err) diff --git a/vendor/github.com/hashicorp/go-discover/provider/triton/triton_discover.go b/vendor/github.com/hashicorp/go-discover/provider/triton/triton_discover.go new file mode 100644 index 000000000..c65405a02 --- /dev/null +++ b/vendor/github.com/hashicorp/go-discover/provider/triton/triton_discover.go @@ -0,0 +1,90 @@ +// Package aws provides node discovery for Joyent Triton. +package triton + +import ( + "context" + "fmt" + "io/ioutil" + "log" + + "github.com/joyent/triton-go" + "github.com/joyent/triton-go/authentication" + "github.com/joyent/triton-go/compute" +) + +type Provider struct{} + +func (p *Provider) Help() string { + return `triton: + + provider: "triton" + account: The Triton account name + key_id: The Triton KeyID + url: The Triton URL + tag_key: The tag key to filter on + tag_value: The tag value to filter on +` +} + +func (p *Provider) Addrs(args map[string]string, l *log.Logger) ([]string, error) { + if args["provider"] != "triton" { + return nil, fmt.Errorf("discover-triton: invalid provider " + args["provider"]) + } + + if l == nil { + l = log.New(ioutil.Discard, "", 0) + } + + account := args["account"] + keyID := args["key_id"] + url := args["url"] + tagKey := args["tag_key"] + tagValue := args["tag_value"] + + l.Printf("[INFO] discover-triton: Account is %q", account) + l.Printf("[INFO] discover-triton: URL is %q", url) + + input := authentication.SSHAgentSignerInput{ + KeyID: keyID, + AccountName: account, + } + signer, err := authentication.NewSSHAgentSigner(input) + if err != nil { + return nil, fmt.Errorf("error Creating SSH Agent Signer: %v", err) + } + + config := &triton.ClientConfig{ + TritonURL: url, + AccountName: account, + Signers: []authentication.Signer{signer}, + } + + c, err := compute.NewClient(config) + if err != nil { + return nil, fmt.Errorf("error constructing Compute Client: %v", err) + } + + t := make(map[string]interface{}, 0) + t[tagKey] = tagValue + + listInput := &compute.ListInstancesInput{ + Tags: t, + } + instances, err := c.Instances().List(context.Background(), listInput) + if err != nil { + return nil, fmt.Errorf("error getting instance list: %v", err) + } + var addrs []string + for _, instance := range instances { + l.Printf("[DEBUG] Instance ID: %q", instance.ID) + l.Printf("[DEBUG] Instance PrimaryIP: %q", instance.PrimaryIP) + if instance.PrimaryIP == "" { + l.Printf("[DEBUG] discover-triton: Instance %s has no marked PrimaryIP", instance.ID) + continue + } else { + addrs = append(addrs, instance.PrimaryIP) + } + } + + return addrs, nil +} diff --git a/vendor/github.com/hashicorp/serf/serf/config.go b/vendor/github.com/hashicorp/serf/serf/config.go index ad4f51b18..79f36f57c 100644 --- a/vendor/github.com/hashicorp/serf/serf/config.go +++ b/vendor/github.com/hashicorp/serf/serf/config.go @@ -55,6 +55,13 @@ type Config struct { // set, a timeout of 5 seconds will be set. BroadcastTimeout time.Duration + // LeavePropagateDelay is for our leave (node dead) message to propagate + // through the cluster. In particular, we want to stay up long enough to + // service any probes from other nodes before they learn about us + // leaving and stop probing. Otherwise, we risk getting node failures as + // we leave. + LeavePropagateDelay time.Duration + // The settings below relate to Serf's event coalescence feature. Serf // is able to coalesce multiple events into single events in order to // reduce the amount of noise that is sent along the EventCh. For example @@ -255,6 +262,7 @@ func DefaultConfig() *Config { return &Config{ NodeName: hostname, BroadcastTimeout: 5 * time.Second, + LeavePropagateDelay: 1 * time.Second, EventBuffer: 512, QueryBuffer: 512, LogOutput: os.Stderr, diff --git a/vendor/github.com/hashicorp/serf/serf/delegate.go b/vendor/github.com/hashicorp/serf/serf/delegate.go index 153531502..871b72e50 100644 --- a/vendor/github.com/hashicorp/serf/serf/delegate.go +++ b/vendor/github.com/hashicorp/serf/serf/delegate.go @@ -223,13 +223,16 @@ func (d *delegate) MergeRemoteState(buf []byte, isJoin bool) { d.serf.queryClock.Witness(pp.QueryLTime - 1) } - // Process the left nodes first to avoid the LTimes from being increment - // in the wrong order + // Process the left nodes first to avoid the LTimes from incrementing + // in the wrong order. Note that we don't have the actual Lamport time + // for the leave message, so we go one past the join time, since the + // leave must have been accepted after that to get onto the left members + // list. If we didn't do this then the message would not get processed. leftMap := make(map[string]struct{}, len(pp.LeftMembers)) leave := messageLeave{} for _, name := range pp.LeftMembers { leftMap[name] = struct{}{} - leave.LTime = pp.StatusLTimes[name] + leave.LTime = pp.StatusLTimes[name] + 1 leave.Node = name d.serf.handleNodeLeaveIntent(&leave) } diff --git a/vendor/github.com/hashicorp/serf/serf/serf.go b/vendor/github.com/hashicorp/serf/serf/serf.go index 67440c1a2..548807a9d 100644 --- a/vendor/github.com/hashicorp/serf/serf/serf.go +++ b/vendor/github.com/hashicorp/serf/serf/serf.go @@ -691,6 +691,13 @@ func (s *Serf) Leave() error { return err } + // Wait for the leave to propagate through the cluster. The broadcast + // timeout is how long we wait for the message to go out from our own + // queue, but this wait is for that message to propagate through the + // cluster. In particular, we want to stay up long enough to service + // any probes from other nodes before they learn about us leaving. + time.Sleep(s.config.LeavePropagateDelay) + // Transition to Left only if we not already shutdown s.stateLock.Lock() if s.state != SerfShutdown { @@ -1670,12 +1677,17 @@ func (s *Serf) Stats() map[string]string { return strconv.FormatUint(v, 10) } s.memberLock.RLock() - defer s.memberLock.RUnlock() + members := toString(uint64(len(s.members))) + failed := toString(uint64(len(s.failedMembers))) + left := toString(uint64(len(s.leftMembers))) + health_score := toString(uint64(s.memberlist.GetHealthScore())) + + s.memberLock.RUnlock() stats := map[string]string{ - "members": toString(uint64(len(s.members))), - "failed": toString(uint64(len(s.failedMembers))), - "left": toString(uint64(len(s.leftMembers))), - "health_score": toString(uint64(s.memberlist.GetHealthScore())), + "members": members, + "failed": failed, + "left": left, + "health_score": health_score, "member_time": toString(uint64(s.clock.Time())), "event_time": toString(uint64(s.eventClock.Time())), "query_time": toString(uint64(s.queryClock.Time())), diff --git a/vendor/github.com/hashicorp/yamux/session.go b/vendor/github.com/hashicorp/yamux/session.go index d8446fa65..32ba02e02 100644 --- a/vendor/github.com/hashicorp/yamux/session.go +++ b/vendor/github.com/hashicorp/yamux/session.go @@ -309,8 +309,10 @@ func (s *Session) keepalive() { case <-time.After(s.config.KeepAliveInterval): _, err := s.Ping() if err != nil { - s.logger.Printf("[ERR] yamux: keepalive failed: %v", err) - s.exitErr(ErrKeepAliveTimeout) + if err != ErrSessionShutdown { + s.logger.Printf("[ERR] yamux: keepalive failed: %v", err) + s.exitErr(ErrKeepAliveTimeout) + } return } case <-s.shutdownCh: diff --git a/vendor/github.com/joyent/triton-go/CHANGELOG.md b/vendor/github.com/joyent/triton-go/CHANGELOG.md new file mode 100644 index 000000000..c29688b6a --- /dev/null +++ b/vendor/github.com/joyent/triton-go/CHANGELOG.md @@ -0,0 +1,100 @@ +## Unreleased + +## 1.3.1 (April 27 2018) + +- client: Fixing an issue where private Triton installations were marked as invalid DC [#152] + +## 1.3.0 (April 17 2018) + +- identity/roles: Add support for SetRoleTags [#112] +- Add support for Triton Service Groups endpoint [#148] + +## 1.2.0 (March 20 2018) + +- compute/instance: Instance Deletion status now included in the GET instance response [#138] + +## 1.1.1 (March 13 2018) + +- client: Adding the rbac user support to the SSHAgentSigner [BUG!] + +## 1.1.0 (March 13 2018) + +- client: Add support for Manta RBAC http signatures + +## 1.0.0 (February 28 2018) + +- client: Add support for querystring in client/ExecuteRequestRaw [#121] +- client: Introduce SetHeader for overriding API request header [#125] +- compute/instances: Add support for passing a list of tags to filter List instances [#116] +- compute/instances: Add support for getting a count of current instances from the CloudAPI [#119] +- compute/instances: Add ability to support name-prefix [#129] +- compute/instances: Add support for Instance Deletion Protection [#131] +- identity/user: Add support for ChangeUserPassword [#111] +- expose GetTritonEnv as a root level func [#126] + +## 0.9.0 (January 23 2018) + +**Please Note:** This is a precursor release to marking triton-go as 1.0.0. We are going to wait and fix any bugs that occur from this large set of changes that has happened since 0.5.2 + +- Add support for managing volumes in Triton [#100] +- identity/policies: Add support for managing policies in Triton [#86] +- addition of triton-go errors package to expose unwrapping of internal errors +- Migration from hashicorp/errwrap to pkg/errors +- Using path.Join() for URL structures rather than fmt.Sprintf() + +## 0.5.2 (December 28 2017) + +- Standardise the API SSH Signers input casing and naming + +## 0.5.1 (December 28 2017) + +- Include leading '/' when working with SSH Agent signers + +## 0.5.0 (December 28 2017) + +- Add support for RBAC in triton-go [#82] +This is a breaking change. No longer do we pass individual parameters to the SSH Signer funcs, but we now pass an input Struct. This will guard from from additional parameter changes in the future. +We also now add support for using `SDC_*` and `TRITON_*` env vars when working with the Default agent signer + +## 0.4.2 (December 22 2017) + +- Fixing a panic when the user loses network connectivity when making a GET request to instance [#81] + +## 0.4.1 (December 15 2017) + +- Clean up the handling of directory sanitization. Use abs paths everywhere [#79] + +## 0.4.0 (December 15 2017) + +- Fix an issue where Manta HEAD requests do not return an error resp body [#77] +- Add support for recursively creating child directories [#78] + +## 0.3.0 (December 14 2017) + +- Introduce CloudAPI's ListRulesMachines under networking +- Enable HTTP KeepAlives by default in the client. 15s idle timeout, 2x + connections per host, total of 10x connections per client. +- Expose an optional Headers attribute to clients to allow them to customize + HTTP headers when making Object requests. +- Fix a bug in Directory ListIndex [#69](https://github.com/joyent/issues/69) +- Inputs to Object inputs have been relaxed to `io.Reader` (formerly a + `io.ReadSeeker`) [#73](https://github.com/joyent/issues/73). +- Add support for ForceDelete of all children of a directory [#71](https://github.com/joyent/issues/71) +- storage: Introduce `Objects.GetInfo` and `Objects.IsDir` using HEAD requests [#74](https://github.com/joyent/triton-go/issues/74) + +## 0.2.1 (November 8 2017) + +- Fixing a bug where CreateUser and UpdateUser didn't return the UserID + +## 0.2.0 (November 7 2017) + +- Introduce CloudAPI's Ping under compute +- Introduce CloudAPI's RebootMachine under compute instances +- Introduce CloudAPI's ListUsers, GetUser, CreateUser, UpdateUser and DeleteUser under identity package +- Introduce CloudAPI's ListMachineSnapshots, GetMachineSnapshot, CreateSnapshot, DeleteMachineSnapshot and StartMachineFromSnapshot under compute package +- tools: Introduce unit testing and scripts for linting, etc. +- bug: Fix the `compute.ListMachineRules` endpoint + +## 0.1.0 (November 2 2017) + +- Initial release of a versioned SDK diff --git a/vendor/github.com/joyent/triton-go/GNUmakefile b/vendor/github.com/joyent/triton-go/GNUmakefile new file mode 100644 index 000000000..17ec88350 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/GNUmakefile @@ -0,0 +1,46 @@ +TEST?=$$(go list ./... |grep -Ev 'vendor|examples|testutils') +GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor) + +default: check test + +tools:: ## Download and install all dev/code tools + @echo "==> Installing dev tools" + go get -u github.com/golang/dep/cmd/dep + go get -u github.com/alecthomas/gometalinter + gometalinter --install + +build:: + @govvv build + +install:: + @govvv install + +test:: ## Run unit tests + @echo "==> Running unit test with coverage" + @./scripts/go-test-with-coverage.sh + +testacc:: ## Run acceptance tests + @echo "==> Running acceptance tests" + TRITON_TEST=1 go test $(TEST) -v $(TESTARGS) -run -timeout 120m + +check:: + gometalinter \ + --deadline 10m \ + --vendor \ + --sort="path" \ + --aggregate \ + --enable-gc \ + --disable-all \ + --enable goimports \ + --enable misspell \ + --enable vet \ + --enable deadcode \ + --enable varcheck \ + --enable ineffassign \ + --enable gofmt \ + ./... + +.PHONY: help +help:: ## Display this help message + @echo "GNU make(1) targets:" + @grep -E '^[a-zA-Z_.-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}' diff --git a/vendor/github.com/joyent/triton-go/Gopkg.lock b/vendor/github.com/joyent/triton-go/Gopkg.lock new file mode 100644 index 000000000..96ee4a2a5 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/Gopkg.lock @@ -0,0 +1,230 @@ +# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. + + +[[projects]] + branch = "master" + name = "github.com/abdullin/seq" + packages = ["."] + revision = "d5467c17e7afe8d8f08f556c6c811a50c3feb28d" + +[[projects]] + name = "github.com/cpuguy83/go-md2man" + packages = ["md2man"] + revision = "20f5889cbdc3c73dbd2862796665e7c465ade7d1" + version = "v1.0.8" + +[[projects]] + branch = "master" + name = "github.com/dustin/go-humanize" + packages = ["."] + revision = "bb3d318650d48840a39aa21a027c6630e198e626" + +[[projects]] + name = "github.com/fsnotify/fsnotify" + packages = ["."] + revision = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" + version = "v1.4.7" + +[[projects]] + branch = "master" + name = "github.com/hashicorp/hcl" + packages = [ + ".", + "hcl/ast", + "hcl/parser", + "hcl/printer", + "hcl/scanner", + "hcl/strconv", + "hcl/token", + "json/parser", + "json/scanner", + "json/token" + ] + revision = "23c074d0eceb2b8a5bfdbb271ab780cde70f05a8" + +[[projects]] + name = "github.com/imdario/mergo" + packages = ["."] + revision = "163f41321a19dd09362d4c63cc2489db2015f1f4" + version = "0.3.2" + +[[projects]] + name = "github.com/inconshreveable/mousetrap" + packages = ["."] + revision = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" + version = "v1.0" + +[[projects]] + name = "github.com/jackc/pgx" + packages = [ + ".", + "chunkreader", + "internal/sanitize", + "pgio", + "pgproto3", + "pgtype" + ] + revision = "da3231b0b66e2e74cdb779f1d46c5e958ba8be27" + version = "v3.1.0" + +[[projects]] + name = "github.com/magiconair/properties" + packages = ["."] + revision = "d419a98cdbed11a922bf76f257b7c4be79b50e73" + version = "v1.7.4" + +[[projects]] + branch = "master" + name = "github.com/mattn/go-isatty" + packages = ["."] + revision = "6ca4dbf54d38eea1a992b3c722a76a5d1c4cb25c" + +[[projects]] + name = "github.com/mattn/go-runewidth" + packages = ["."] + revision = "9e777a8366cce605130a531d2cd6363d07ad7317" + version = "v0.0.2" + +[[projects]] + branch = "master" + name = "github.com/mitchellh/mapstructure" + packages = ["."] + revision = "a4e142e9c047c904fa2f1e144d9a84e6133024bc" + +[[projects]] + branch = "master" + name = "github.com/olekukonko/tablewriter" + packages = ["."] + revision = "b8a9be070da40449e501c3c4730a889e42d87a9e" + +[[projects]] + name = "github.com/pelletier/go-toml" + packages = ["."] + revision = "acdc4509485b587f5e675510c4f2c63e90ff68a8" + version = "v1.1.0" + +[[projects]] + branch = "master" + name = "github.com/pkg/errors" + packages = ["."] + revision = "e881fd58d78e04cf6d0de1217f8707c8cc2249bc" + +[[projects]] + name = "github.com/rs/zerolog" + packages = [ + ".", + "internal/json", + "log" + ] + revision = "b53826c57a6a1d8833443ebeacf1cfb62b229c64" + version = "v1.4.0" + +[[projects]] + name = "github.com/russross/blackfriday" + packages = ["."] + revision = "4048872b16cc0fc2c5fd9eacf0ed2c2fedaa0c8c" + version = "v1.5" + +[[projects]] + branch = "master" + name = "github.com/sean-/conswriter" + packages = ["."] + revision = "f5ae3917a627f1aab86eedaac41b153e4097e4e8" + +[[projects]] + branch = "master" + name = "github.com/sean-/pager" + packages = ["."] + revision = "666be9bf53b5257ca07b4a16227df91e104c0519" + +[[projects]] + branch = "master" + name = "github.com/sean-/seed" + packages = ["."] + revision = "e2103e2c35297fb7e17febb81e49b312087a2372" + +[[projects]] + name = "github.com/spf13/afero" + packages = [ + ".", + "mem" + ] + revision = "bb8f1927f2a9d3ab41c9340aa034f6b803f4359c" + version = "v1.0.2" + +[[projects]] + name = "github.com/spf13/cast" + packages = ["."] + revision = "acbeb36b902d72a7a4c18e8f3241075e7ab763e4" + version = "v1.1.0" + +[[projects]] + branch = "master" + name = "github.com/spf13/cobra" + packages = [ + ".", + "doc" + ] + revision = "be77323fc05148ef091e83b3866c0d47c8e74a8b" + +[[projects]] + branch = "master" + name = "github.com/spf13/jwalterweatherman" + packages = ["."] + revision = "7c0cea34c8ece3fbeb2b27ab9b59511d360fb394" + +[[projects]] + name = "github.com/spf13/pflag" + packages = ["."] + revision = "e57e3eeb33f795204c1ca35f56c44f83227c6e66" + version = "v1.0.0" + +[[projects]] + branch = "master" + name = "github.com/spf13/viper" + packages = ["."] + revision = "aafc9e6bc7b7bb53ddaa75a5ef49a17d6e654be5" + +[[projects]] + branch = "master" + name = "golang.org/x/crypto" + packages = [ + "curve25519", + "ed25519", + "ed25519/internal/edwards25519", + "ssh", + "ssh/agent" + ] + revision = "0fcca4842a8d74bfddc2c96a073bd2a4d2a7a2e8" + +[[projects]] + branch = "master" + name = "golang.org/x/sys" + packages = ["unix"] + revision = "37707fdb30a5b38865cfb95e5aab41707daec7fd" + +[[projects]] + branch = "master" + name = "golang.org/x/text" + packages = [ + "internal/gen", + "internal/triegen", + "internal/ucd", + "transform", + "unicode/cldr", + "unicode/norm" + ] + revision = "4e4a3210bb54bb31f6ab2cdca2edcc0b50c420c1" + +[[projects]] + branch = "v2" + name = "gopkg.in/yaml.v2" + packages = ["."] + revision = "d670f9405373e636a5a2765eea47fac0c9bc91a4" + +[solve-meta] + analyzer-name = "dep" + analyzer-version = 1 + inputs-digest = "ce907ec6468492ed7ad937a82043195756a7fd37dc2f62a26cf77dbb1368ac55" + solver-name = "gps-cdcl" + solver-version = 1 diff --git a/vendor/github.com/joyent/triton-go/Gopkg.toml b/vendor/github.com/joyent/triton-go/Gopkg.toml new file mode 100644 index 000000000..24d72dabf --- /dev/null +++ b/vendor/github.com/joyent/triton-go/Gopkg.toml @@ -0,0 +1,74 @@ + +# Gopkg.toml example +# +# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md +# for detailed Gopkg.toml documentation. +# +# required = ["github.com/user/thing/cmd/thing"] +# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] +# +# [[constraint]] +# name = "github.com/user/project" +# version = "1.0.0" +# +# [[constraint]] +# name = "github.com/user/project2" +# branch = "dev" +# source = "github.com/myfork/project2" +# +# [[override]] +# name = "github.com/x/y" +# version = "2.4.0" + + +[[constraint]] + branch = "master" + name = "github.com/abdullin/seq" + +[[constraint]] + branch = "master" + name = "github.com/sean-/seed" + +[[constraint]] + branch = "master" + name = "golang.org/x/crypto" + +[[constraint]] + branch = "master" + name = "github.com/pkg/errors" + +[[constraint]] + branch = "master" + name = "github.com/olekukonko/tablewriter" + +[[constraint]] + name = "github.com/rs/zerolog" + version = "1.4.0" + +[[constraint]] + name = "github.com/spf13/cobra" + branch = "master" + +[[constraint]] + branch = "master" + name = "github.com/spf13/viper" + +[[constraint]] + branch = "master" + name = "github.com/mattn/go-isatty" + +[[constraint]] + branch = "master" + name = "github.com/sean-/conswriter" + +[[constraint]] + branch = "master" + name = "github.com/sean-/pager" + +[[constraint]] + name = "github.com/imdario/mergo" + version = "0.3.2" + +[[constraint]] + name = "github.com/dustin/go-humanize" + branch = "master" diff --git a/vendor/github.com/joyent/triton-go/LICENSE b/vendor/github.com/joyent/triton-go/LICENSE new file mode 100644 index 000000000..14e2f777f --- /dev/null +++ b/vendor/github.com/joyent/triton-go/LICENSE @@ -0,0 +1,373 @@ +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. diff --git a/vendor/github.com/joyent/triton-go/README.md b/vendor/github.com/joyent/triton-go/README.md new file mode 100644 index 000000000..c5191dd93 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/README.md @@ -0,0 +1,248 @@ +# triton-go + +`triton-go` is an idiomatic library exposing a client SDK for Go applications +using Joyent's Triton Compute and Storage (Manta) APIs. + +[![Build Status](https://travis-ci.org/joyent/triton-go.svg?branch=master)](https://travis-ci.org/joyent/triton-go) [![Go Report Card](https://goreportcard.com/badge/github.com/joyent/triton-go)](https://goreportcard.com/report/github.com/joyent/triton-go) + +The Triton Go SDK is used in the following open source projects. + +- [Packer](http://github.com/hashicorp/packer) +- [Vault](http://github.com/hashicorp/vault) +- [Terraform](http://github.com/hashicorp/terraform) +- [Terraform Triton Provider](https://github.com/terraform-providers/terraform-provider-triton) +- [Docker Machine](https://github.com/joyent/docker-machine-driver-triton) +- [Triton Kubernetes](https://github.com/joyent/triton-kubernetes) +- [HashiCorp go-discover](https://github.com/hashicorp/go-discover) + +## Usage + +Triton uses [HTTP Signature][4] to sign the Date header in each HTTP request +made to the Triton API. Currently, requests can be signed using either a private +key file loaded from disk (using an [`authentication.PrivateKeySigner`][5]), or +using a key stored with the local SSH Agent (using an [`SSHAgentSigner`][6]. + +To construct a Signer, use the `New*` range of methods in the `authentication` +package. In the case of `authentication.NewSSHAgentSigner`, the parameters are +the fingerprint of the key with which to sign, and the account name (normally +stored in the `TRITON_ACCOUNT` environment variable). There is also support for +passing in a username, this will allow you to use an account other than the main +Triton account. For example: + +```go +input := authentication.SSHAgentSignerInput{ + KeyID: "a4:c6:f3:75:80:27:e0:03:a9:98:79:ef:c5:0a:06:11", + AccountName: "AccountName", + Username: "Username", +} +sshKeySigner, err := authentication.NewSSHAgentSigner(input) +if err != nil { + log.Fatalf("NewSSHAgentSigner: %s", err) +} +``` + +An appropriate key fingerprint can be generated using `ssh-keygen`. + +``` +ssh-keygen -Emd5 -lf ~/.ssh/id_rsa.pub | cut -d " " -f 2 | sed 's/MD5://' +``` + +Each top level package, `account`, `compute`, `identity`, `network`, all have +their own separate client. In order to initialize a package client, simply pass +the global `triton.ClientConfig` struct into the client's constructor function. + +```go +config := &triton.ClientConfig{ + TritonURL: os.Getenv("TRITON_URL"), + MantaURL: os.Getenv("MANTA_URL"), + AccountName: accountName, + Username: os.Getenv("TRITON_USER"), + Signers: []authentication.Signer{sshKeySigner}, +} + +c, err := compute.NewClient(config) +if err != nil { + log.Fatalf("compute.NewClient: %s", err) +} +``` + +Constructing `compute.Client` returns an interface which exposes `compute` API +resources. The same goes for all other packages. Reference their unique +documentation for more information. + +The same `triton.ClientConfig` will initialize the Manta `storage` client as +well... + +```go +c, err := storage.NewClient(config) +if err != nil { + log.Fatalf("storage.NewClient: %s", err) +} +``` + +## Error Handling + +If an error is returned by the HTTP API, the `error` returned from the function +will contain an instance of `errors.APIError` in the chain. Error wrapping +is performed using the [pkg/errors][7] library. + +## Acceptance Tests + +Acceptance Tests run directly against the Triton API, so you will need either a +local installation of Triton or an account with Joyent's Public Cloud offering +in order to run them. The tests create real resources (and thus cost real +money)! + +In order to run acceptance tests, the following environment variables must be +set: + +- `TRITON_TEST` - must be set to any value in order to indicate desire to create + resources +- `TRITON_URL` - the base endpoint for the Triton API +- `TRITON_ACCOUNT` - the account name for the Triton API +- `TRITON_KEY_ID` - the fingerprint of the SSH key identifying the key + +Additionally, you may set `TRITON_KEY_MATERIAL` to the contents of an unencrypted +private key. If this is set, the PrivateKeySigner (see above) will be used - if +not the SSHAgentSigner will be used. You can also set `TRITON_USER` to run the tests +against an account other than the main Triton account + +### Example Run + +The verbose output has been removed for brevity here. + +``` +$ HTTP_PROXY=http://localhost:8888 \ + TRITON_TEST=1 \ + TRITON_URL=https://us-sw-1.api.joyent.com \ + TRITON_ACCOUNT=AccountName \ + TRITON_KEY_ID=a4:c6:f3:75:80:27:e0:03:a9:98:79:ef:c5:0a:06:11 \ + go test -v -run "TestAccKey" +=== RUN TestAccKey_Create +--- PASS: TestAccKey_Create (12.46s) +=== RUN TestAccKey_Get +--- PASS: TestAccKey_Get (4.30s) +=== RUN TestAccKey_Delete +--- PASS: TestAccKey_Delete (15.08s) +PASS +ok github.com/joyent/triton-go 31.861s +``` + +## Example API + +There's an `examples/` directory available with sample code setup for many of +the APIs within this library. Most of these can be run using `go run` and +referencing your SSH key file use by your active `triton` CLI profile. + +```sh +$ eval "$(triton env us-sw-1)" +$ TRITON_KEY_FILE=~/.ssh/triton-id_rsa go run examples/compute/instances.go +``` + +The following is a complete example of how to initialize the `compute` package +client and list all instances under an account. More detailed usage of this +library follows. + +```go + + +package main + +import ( + "context" + "fmt" + "io/ioutil" + "log" + "os" + "time" + + triton "github.com/joyent/triton-go" + "github.com/joyent/triton-go/authentication" + "github.com/joyent/triton-go/compute" +) + +func main() { + keyID := os.Getenv("TRITON_KEY_ID") + accountName := os.Getenv("TRITON_ACCOUNT") + keyMaterial := os.Getenv("TRITON_KEY_MATERIAL") + userName := os.Getenv("TRITON_USER") + + var signer authentication.Signer + var err error + + if keyMaterial == "" { + input := authentication.SSHAgentSignerInput{ + KeyID: keyID, + AccountName: accountName, + Username: userName, + } + signer, err = authentication.NewSSHAgentSigner(input) + if err != nil { + log.Fatalf("Error Creating SSH Agent Signer: {{err}}", err) + } + } else { + var keyBytes []byte + if _, err = os.Stat(keyMaterial); err == nil { + keyBytes, err = ioutil.ReadFile(keyMaterial) + if err != nil { + log.Fatalf("Error reading key material from %s: %s", + keyMaterial, err) + } + block, _ := pem.Decode(keyBytes) + if block == nil { + log.Fatalf( + "Failed to read key material '%s': no key found", keyMaterial) + } + + if block.Headers["Proc-Type"] == "4,ENCRYPTED" { + log.Fatalf( + "Failed to read key '%s': password protected keys are\n"+ + "not currently supported. Please decrypt the key prior to use.", keyMaterial) + } + + } else { + keyBytes = []byte(keyMaterial) + } + + input := authentication.PrivateKeySignerInput{ + KeyID: keyID, + PrivateKeyMaterial: keyBytes, + AccountName: accountName, + Username: userName, + } + signer, err = authentication.NewPrivateKeySigner(input) + if err != nil { + log.Fatalf("Error Creating SSH Private Key Signer: {{err}}", err) + } + } + + config := &triton.ClientConfig{ + TritonURL: os.Getenv("TRITON_URL"), + AccountName: accountName, + Username: userName, + Signers: []authentication.Signer{signer}, + } + + c, err := compute.NewClient(config) + if err != nil { + log.Fatalf("compute.NewClient: %s", err) + } + + listInput := &compute.ListInstancesInput{} + instances, err := c.Instances().List(context.Background(), listInput) + if err != nil { + log.Fatalf("compute.Instances.List: %v", err) + } + numInstances := 0 + for _, instance := range instances { + numInstances++ + fmt.Println(fmt.Sprintf("-- Instance: %v", instance.Name)) + } +} + +``` + +[4]: https://github.com/joyent/node-http-signature/blob/master/http_signing.md +[5]: https://godoc.org/github.com/joyent/triton-go/authentication +[6]: https://godoc.org/github.com/joyent/triton-go/authentication +[7]: https://github.com/pkg/errors diff --git a/vendor/github.com/joyent/triton-go/authentication/agent_key_identifier.go b/vendor/github.com/joyent/triton-go/authentication/agent_key_identifier.go new file mode 100644 index 000000000..5c316363e --- /dev/null +++ b/vendor/github.com/joyent/triton-go/authentication/agent_key_identifier.go @@ -0,0 +1,25 @@ +package authentication + +import "path" + +type KeyID struct { + UserName string + AccountName string + Fingerprint string + IsManta bool +} + +func (input *KeyID) generate() string { + var keyID string + if input.UserName != "" { + if input.IsManta { + keyID = path.Join("/", input.AccountName, input.UserName, "keys", input.Fingerprint) + } else { + keyID = path.Join("/", input.AccountName, "users", input.UserName, "keys", input.Fingerprint) + } + } else { + keyID = path.Join("/", input.AccountName, "keys", input.Fingerprint) + } + + return keyID +} diff --git a/vendor/github.com/joyent/triton-go/authentication/dummy.go b/vendor/github.com/joyent/triton-go/authentication/dummy.go new file mode 100644 index 000000000..797e0047b --- /dev/null +++ b/vendor/github.com/joyent/triton-go/authentication/dummy.go @@ -0,0 +1,80 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package authentication + +// DON'T USE THIS OUTSIDE TESTING ~ This key was only created to use for +// internal unit testing. It should never be used for acceptance testing either. +// +// This is just a randomly generated key pair. +var Dummy = struct { + Fingerprint string + PrivateKey []byte + PublicKey []byte + Signer Signer +}{ + "9f:d6:65:fc:d6:60:dc:d0:4e:db:2d:75:f7:92:8c:31", + []byte(`-----BEGIN RSA PRIVATE KEY----- +MIIJKAIBAAKCAgEAui9lNjCJahHeFSFC6HXi/CNX588C/L2gJUx65bnNphVC98hW +1wzoRvPXHx5aWnb7lEbpNhP6B0UoCBDTaPgt9hHfD/oNQ+6HT1QpDIGfZmXI91/t +cjGVSBbxN7WaYt/HsPrGjbalwvQPChN53sMVmFkMTEDR5G3zOBOAGrOimlCT80wI +2S5Xg0spd8jjKM5I1swDR0xtuDWnHTR1Ohin+pEQIE6glLTfYq7oQx6nmMXXBNmk ++SaPD1FAyjkF/81im2EHXBygNEwraVrDcAxK2mKlU2XMJiogQKNYWlm3UkbNB6WP +Le12+Ka02rmIVsSqIpc/ZCBraAlCaSWlYCkU+vJ2hH/+ypy5bXNlbaTiWZK+vuI7 +PC87T50yLNeXVuNZAynzDpBCvsjiiHrB/ZFRfVfF6PviV8CV+m7GTzfAwJhVeSbl +rR6nts16K0HTD48v57DU0b0t5VOvC7cWPShs+afdSL3Z8ReL5EWMgU1wfvtycRKe +hiDVGj3Ms2cf83RIANr387G+1LcTQYP7JJuB7Svy5j+R6+HjI0cgu4EMUPdWfCNG +GyrlxwJNtPmUSfasH1xUKpqr7dC+0sN4/gfJw75WTAYrATkPzexoYNaMsGDfhuoh +kYa3Tn2q1g3kqhsX/R0Fd5d8d5qc137qcRCxiZYz9f3bVkXQbhYmO9da3KsCAwEA +AQKCAgAeEAURqOinPddUJhi9nDtYZwSMo3piAORY4W5+pW+1P32esLSE6MqgmkLD +/YytSsT4fjKtzq/yeJIsKztXmasiLmSMGd4Gd/9VKcuu/0cTq5+1gcG/TI5EI6Az +VJlnGacOxo9E1pcRUYMUJ2zoMSvNe6NmtJivf6lkBpIKvbKlpBkfkclj9/2db4d0 +lfVH43cTZ8Gnw4l70v320z+Sb+S/qqil7swy9rmTH5bVL5/0JQ3A9LuUl0tGN+J0 +RJzZXvprCFG958leaGYiDsu7zeBQPtlfC/LYvriSd02O2SmmmVQFxg/GZK9vGsvc +/VQsXnjyOOW9bxaop8YXYELBsiB21ipTHzOwoqHT8wFnjgU9Y/7iZIv7YbZKQsCS +DrwdlZ/Yw90wiif+ldYryIVinWfytt6ERv4Dgezc98+1XPi1Z/WB74/lIaDXFl3M +3ypjtvLYbKew2IkIjeAwjvZJg/QpC/50RrrPtVDgeAI1Ni01ikixUhMYsHJ1kRih +0tqLvLqSPoHmr6luFlaoKdc2eBqb+8U6K/TrXhKtT7BeUFiSbvnVfdbrH9r+AY/2 +zYtG6llzkE5DH8ZR3Qp+dx7QEDtvYhGftWhx9uasd79AN7CuGYnL54YFLKGRrWKN +ylysqfUyOQYiitdWdNCw9PP2vGRx5JAsMMSy+ft18jjTJvNQ0QKCAQEA28M11EE6 +MpnHxfyP00Dl1+3wl2lRyNXZnZ4hgkk1f83EJGpoB2amiMTF8P1qJb7US1fXtf7l +gkJMMk6t6iccexV1/NBh/7tDZHH/v4HPirFTXQFizflaghD8dEADy9DY4BpQYFRe +8zGsv4/4U0txCXkUIfKcENt/FtXv2T9blJT6cDV0yTx9IAyd4Kor7Ly2FIYroSME +uqnOQt5PwB+2qkE+9hdg4xBhFs9sW5dvyBvQvlBfX/xOmMw2ygH6vsaJlNfZ5VPa +EP/wFP/qHyhDlCfbHdL6qF2//wUoM2QM9RgBdZNhcKU7zWuf7Ev199tmlLC5O14J +PkQxUGftMfmWxQKCAQEA2OLKD8dwOzpwGJiPQdBmGpwCamfcCY4nDwqEaCu4vY1R +OJR+rpYdC2hgl5PTXWH7qzJVdT/ZAz2xUQOgB1hD3Ltk7DQ+EZIA8+vJdaicQOme +vfpMPNDxCEX9ee0AXAmAC3aET82B4cMFnjXjl1WXLLTowF/Jp/hMorm6tl2m15A2 +oTyWlB/i/W/cxHl2HFWK7o8uCNoKpKJjheNYn+emEcH1bkwrk8sxQ78cBNmqe/gk +MLgu8qfXQ0LLKIL7wqmIUHeUpkepOod8uXcTmmN2X9saCIwFKx4Jal5hh5v5cy0G +MkyZcUIhhnmzr7lXbepauE5V2Sj5Qp040AfRVjZcrwKCAQANe8OwuzPL6P2F20Ij +zwaLIhEx6QdYkC5i6lHaAY3jwoc3SMQLODQdjh0q9RFvMW8rFD+q7fG89T5hk8w9 +4ppvvthXY52vqBixcAEmCdvnAYxA15XtV1BDTLGAnHDfL3gu/85QqryMpU6ZDkdJ +LQbJcwFWN+F1c1Iv335w0N9YlW9sNQtuUWTH8544K5i4VLfDOJwyrchbf5GlLqir +/AYkGg634KVUKSwbzywxzm/QUkyTcLD5Xayg2V6/NDHjRKEqXbgDxwpJIrrjPvRp +ZvoGfA+Im+o/LElcZz+ZL5lP7GIiiaFf3PN3XhQY1mxIAdEgbFthFhrxFBQGf+ng +uBSVAoIBAHl12K8pg8LHoUtE9MVoziWMxRWOAH4ha+JSg4BLK/SLlbbYAnIHg1CG +LcH1eWNMokJnt9An54KXJBw4qYAzgB23nHdjcncoivwPSg1oVclMjCfcaqGMac+2 +UpPblF32vAyvXL3MWzZxn03Q5Bo2Rqk0zzwc6LP2rARdeyDyJaOHEfEOG03s5ZQE +91/YnbqUdW/QI3m1kkxM3Ot4PIOgmTJMqwQQCD+GhZppBmn49C7k8m+OVkxyjm0O +lPOlFxUXGE3oCgltDGrIwaKj+wh1Ny/LZjLvJ13UPnWhUYE+al6EEnpMx4nT/S5w +LZ71bu8RVajtxcoN1jnmDpECL8vWOeUCggEBAIEuKoY7pVHfs5gr5dXfQeVZEtqy +LnSdsd37/aqQZRlUpVmBrPNl1JBLiEVhk2SL3XJIDU4Er7f0idhtYLY3eE7wqZ4d +38Iaj5tv3zBc/wb1bImPgOgXCH7QrrbW7uTiYMLScuUbMR4uSpfubLaV8Zc9WHT8 +kTJ2pKKtA1GPJ4V7HCIxuTjD2iyOK1CRkaqSC+5VUuq5gHf92CEstv9AIvvy5cWg +gnfBQoS89m3aO035henSfRFKVJkHaEoasj8hB3pwl9FGZUJp1c2JxiKzONqZhyGa +6tcIAM3od0QtAfDJ89tWJ5D31W8KNNysobFSQxZ62WgLUUtXrkN1LGodxGQ= +-----END RSA PRIVATE KEY-----`), + []byte(`ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC6L2U2MIlqEd4VIULodeL8I1fnzwL8vaAlTHrluc2mFUL3yFbXDOhG89cfHlpadvuURuk2E/oHRSgIENNo+C32Ed8P+g1D7odPVCkMgZ9mZcj3X+1yMZVIFvE3tZpi38ew+saNtqXC9A8KE3newxWYWQxMQNHkbfM4E4Aas6KaUJPzTAjZLleDSyl3yOMozkjWzANHTG24NacdNHU6GKf6kRAgTqCUtN9iruhDHqeYxdcE2aT5Jo8PUUDKOQX/zWKbYQdcHKA0TCtpWsNwDEraYqVTZcwmKiBAo1haWbdSRs0HpY8t7Xb4prTauYhWxKoilz9kIGtoCUJpJaVgKRT68naEf/7KnLltc2VtpOJZkr6+4js8LztPnTIs15dW41kDKfMOkEK+yOKIesH9kVF9V8Xo++JXwJX6bsZPN8DAmFV5JuWtHqe2zXorQdMPjy/nsNTRvS3lU68LtxY9KGz5p91IvdnxF4vkRYyBTXB++3JxEp6GINUaPcyzZx/zdEgA2vfzsb7UtxNBg/skm4HtK/LmP5Hr4eMjRyC7gQxQ91Z8I0YbKuXHAk20+ZRJ9qwfXFQqmqvt0L7Sw3j+B8nDvlZMBisBOQ/N7Ghg1oywYN+G6iGRhrdOfarWDeSqGxf9HQV3l3x3mpzXfupxELGJljP1/dtWRdBuFiY711rcqw== test-dummy-20171002140848`), + nil, +} + +func init() { + testSigner, _ := NewTestSigner() + Dummy.Signer = testSigner +} diff --git a/vendor/github.com/joyent/triton-go/authentication/ecdsa_signature.go b/vendor/github.com/joyent/triton-go/authentication/ecdsa_signature.go new file mode 100644 index 000000000..7fb5a5ab8 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/authentication/ecdsa_signature.go @@ -0,0 +1,74 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package authentication + +import ( + "encoding/asn1" + "encoding/base64" + "fmt" + "math/big" + + "github.com/pkg/errors" + "golang.org/x/crypto/ssh" +) + +type ecdsaSignature struct { + hashAlgorithm string + R *big.Int + S *big.Int +} + +func (s *ecdsaSignature) SignatureType() string { + return fmt.Sprintf("ecdsa-%s", s.hashAlgorithm) +} + +func (s *ecdsaSignature) String() string { + toEncode := struct { + R *big.Int + S *big.Int + }{ + R: s.R, + S: s.S, + } + + signatureBytes, err := asn1.Marshal(toEncode) + if err != nil { + panic(fmt.Sprintf("Error marshaling signature: %s", err)) + } + + return base64.StdEncoding.EncodeToString(signatureBytes) +} + +func newECDSASignature(signatureBlob []byte) (*ecdsaSignature, error) { + var ecSig struct { + R *big.Int + S *big.Int + } + + if err := ssh.Unmarshal(signatureBlob, &ecSig); err != nil { + return nil, errors.Wrap(err, "unable to unmarshall signature") + } + + rValue := ecSig.R.Bytes() + var hashAlgorithm string + switch len(rValue) { + case 31, 32: + hashAlgorithm = "sha256" + case 65, 66: + hashAlgorithm = "sha512" + default: + return nil, fmt.Errorf("Unsupported key length: %d", len(rValue)) + } + + return &ecdsaSignature{ + hashAlgorithm: hashAlgorithm, + R: ecSig.R, + S: ecSig.S, + }, nil +} diff --git a/vendor/github.com/joyent/triton-go/authentication/private_key_signer.go b/vendor/github.com/joyent/triton-go/authentication/private_key_signer.go new file mode 100644 index 000000000..9b21d6315 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/authentication/private_key_signer.go @@ -0,0 +1,131 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package authentication + +import ( + "crypto" + "crypto/rand" + "crypto/rsa" + "crypto/x509" + "encoding/base64" + "encoding/pem" + "fmt" + "strings" + + "github.com/pkg/errors" + "golang.org/x/crypto/ssh" +) + +type PrivateKeySigner struct { + formattedKeyFingerprint string + keyFingerprint string + algorithm string + accountName string + userName string + hashFunc crypto.Hash + + privateKey *rsa.PrivateKey +} + +type PrivateKeySignerInput struct { + KeyID string + PrivateKeyMaterial []byte + AccountName string + Username string +} + +func NewPrivateKeySigner(input PrivateKeySignerInput) (*PrivateKeySigner, error) { + keyFingerprintMD5 := strings.Replace(input.KeyID, ":", "", -1) + + block, _ := pem.Decode(input.PrivateKeyMaterial) + if block == nil { + return nil, errors.New("Error PEM-decoding private key material: nil block received") + } + + rsakey, err := x509.ParsePKCS1PrivateKey(block.Bytes) + if err != nil { + return nil, errors.Wrap(err, "unable to parse private key") + } + + sshPublicKey, err := ssh.NewPublicKey(rsakey.Public()) + if err != nil { + return nil, errors.Wrap(err, "unable to parse SSH key from private key") + } + + matchKeyFingerprint := formatPublicKeyFingerprint(sshPublicKey, false) + displayKeyFingerprint := formatPublicKeyFingerprint(sshPublicKey, true) + if matchKeyFingerprint != keyFingerprintMD5 { + return nil, errors.New("Private key file does not match public key fingerprint") + } + + signer := &PrivateKeySigner{ + formattedKeyFingerprint: displayKeyFingerprint, + keyFingerprint: input.KeyID, + accountName: input.AccountName, + + hashFunc: crypto.SHA1, + privateKey: rsakey, + } + + if input.Username != "" { + signer.userName = input.Username + } + + _, algorithm, err := signer.SignRaw("HelloWorld") + if err != nil { + return nil, fmt.Errorf("Cannot sign using ssh agent: %s", err) + } + signer.algorithm = algorithm + + return signer, nil +} + +func (s *PrivateKeySigner) Sign(dateHeader string, isManta bool) (string, error) { + const headerName = "date" + + hash := s.hashFunc.New() + hash.Write([]byte(fmt.Sprintf("%s: %s", headerName, dateHeader))) + digest := hash.Sum(nil) + + signed, err := rsa.SignPKCS1v15(rand.Reader, s.privateKey, s.hashFunc, digest) + if err != nil { + return "", errors.Wrap(err, "unable to sign date header") + } + signedBase64 := base64.StdEncoding.EncodeToString(signed) + + key := &KeyID{ + UserName: s.userName, + AccountName: s.accountName, + Fingerprint: s.formattedKeyFingerprint, + IsManta: isManta, + } + + return fmt.Sprintf(authorizationHeaderFormat, key.generate(), "rsa-sha1", headerName, signedBase64), nil +} + +func (s *PrivateKeySigner) SignRaw(toSign string) (string, string, error) { + hash := s.hashFunc.New() + hash.Write([]byte(toSign)) + digest := hash.Sum(nil) + + signed, err := rsa.SignPKCS1v15(rand.Reader, s.privateKey, s.hashFunc, digest) + if err != nil { + return "", "", errors.Wrap(err, "unable to sign date header") + } + signedBase64 := base64.StdEncoding.EncodeToString(signed) + return signedBase64, "rsa-sha1", nil +} + +func (s *PrivateKeySigner) KeyFingerprint() string { + return s.formattedKeyFingerprint +} + +func (s *PrivateKeySigner) DefaultAlgorithm() string { + return s.algorithm +} diff --git a/vendor/github.com/joyent/triton-go/authentication/rsa_signature.go b/vendor/github.com/joyent/triton-go/authentication/rsa_signature.go new file mode 100644 index 000000000..81b735eb1 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/authentication/rsa_signature.go @@ -0,0 +1,33 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package authentication + +import ( + "encoding/base64" +) + +type rsaSignature struct { + hashAlgorithm string + signature []byte +} + +func (s *rsaSignature) SignatureType() string { + return s.hashAlgorithm +} + +func (s *rsaSignature) String() string { + return base64.StdEncoding.EncodeToString(s.signature) +} + +func newRSASignature(signatureBlob []byte) (*rsaSignature, error) { + return &rsaSignature{ + hashAlgorithm: "rsa-sha1", + signature: signatureBlob, + }, nil +} diff --git a/vendor/github.com/joyent/triton-go/authentication/signature.go b/vendor/github.com/joyent/triton-go/authentication/signature.go new file mode 100644 index 000000000..8cc18d964 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/authentication/signature.go @@ -0,0 +1,35 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package authentication + +import ( + "fmt" + "regexp" +) + +type httpAuthSignature interface { + SignatureType() string + String() string +} + +func keyFormatToKeyType(keyFormat string) (string, error) { + if keyFormat == "ssh-rsa" { + return "rsa", nil + } + + if keyFormat == "ssh-ed25519" { + return "ed25519", nil + } + + if regexp.MustCompile("^ecdsa-sha2-*").Match([]byte(keyFormat)) { + return "ecdsa", nil + } + + return "", fmt.Errorf("Unknown key format: %s", keyFormat) +} diff --git a/vendor/github.com/joyent/triton-go/authentication/signer.go b/vendor/github.com/joyent/triton-go/authentication/signer.go new file mode 100644 index 000000000..40b71d08d --- /dev/null +++ b/vendor/github.com/joyent/triton-go/authentication/signer.go @@ -0,0 +1,18 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package authentication + +const authorizationHeaderFormat = `Signature keyId="%s",algorithm="%s",headers="%s",signature="%s"` + +type Signer interface { + DefaultAlgorithm() string + KeyFingerprint() string + Sign(dateHeader string, isManta bool) (string, error) + SignRaw(toSign string) (string, string, error) +} diff --git a/vendor/github.com/joyent/triton-go/authentication/ssh_agent_signer.go b/vendor/github.com/joyent/triton-go/authentication/ssh_agent_signer.go new file mode 100644 index 000000000..c21218290 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/authentication/ssh_agent_signer.go @@ -0,0 +1,194 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package authentication + +import ( + "crypto/md5" + "crypto/sha256" + "encoding/base64" + "fmt" + "net" + "os" + "strings" + + pkgerrors "github.com/pkg/errors" + "golang.org/x/crypto/ssh" + "golang.org/x/crypto/ssh/agent" +) + +var ( + ErrUnsetEnvVar = pkgerrors.New("environment variable SSH_AUTH_SOCK not set") +) + +type SSHAgentSigner struct { + formattedKeyFingerprint string + keyFingerprint string + algorithm string + accountName string + userName string + keyIdentifier string + + agent agent.Agent + key ssh.PublicKey +} + +type SSHAgentSignerInput struct { + KeyID string + AccountName string + Username string +} + +func NewSSHAgentSigner(input SSHAgentSignerInput) (*SSHAgentSigner, error) { + sshAgentAddress, agentOk := os.LookupEnv("SSH_AUTH_SOCK") + if !agentOk { + return nil, ErrUnsetEnvVar + } + + conn, err := net.Dial("unix", sshAgentAddress) + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to dial SSH agent") + } + + ag := agent.NewClient(conn) + + signer := &SSHAgentSigner{ + keyFingerprint: input.KeyID, + accountName: input.AccountName, + agent: ag, + } + + if input.Username != "" { + signer.userName = input.Username + } + + matchingKey, err := signer.MatchKey() + if err != nil { + return nil, err + } + signer.key = matchingKey + signer.formattedKeyFingerprint = formatPublicKeyFingerprint(signer.key, true) + + _, algorithm, err := signer.SignRaw("HelloWorld") + if err != nil { + return nil, fmt.Errorf("Cannot sign using ssh agent: %s", err) + } + signer.algorithm = algorithm + + return signer, nil +} + +func (s *SSHAgentSigner) MatchKey() (ssh.PublicKey, error) { + keys, err := s.agent.List() + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to list keys in SSH Agent") + } + + keyFingerprintStripped := strings.TrimPrefix(s.keyFingerprint, "MD5:") + keyFingerprintStripped = strings.TrimPrefix(keyFingerprintStripped, "SHA256:") + keyFingerprintStripped = strings.Replace(keyFingerprintStripped, ":", "", -1) + + var matchingKey ssh.PublicKey + for _, key := range keys { + keyMD5 := md5.New() + keyMD5.Write(key.Marshal()) + finalizedMD5 := fmt.Sprintf("%x", keyMD5.Sum(nil)) + + keySHA256 := sha256.New() + keySHA256.Write(key.Marshal()) + finalizedSHA256 := base64.RawStdEncoding.EncodeToString(keySHA256.Sum(nil)) + + if keyFingerprintStripped == finalizedMD5 || keyFingerprintStripped == finalizedSHA256 { + matchingKey = key + } + } + + if matchingKey == nil { + return nil, fmt.Errorf("No key in the SSH Agent matches fingerprint: %s", s.keyFingerprint) + } + + return matchingKey, nil +} + +func (s *SSHAgentSigner) Sign(dateHeader string, isManta bool) (string, error) { + const headerName = "date" + + signature, err := s.agent.Sign(s.key, []byte(fmt.Sprintf("%s: %s", headerName, dateHeader))) + if err != nil { + return "", pkgerrors.Wrap(err, "unable to sign date header") + } + + keyFormat, err := keyFormatToKeyType(signature.Format) + if err != nil { + return "", pkgerrors.Wrap(err, "unable to format signature") + } + + key := &KeyID{ + UserName: s.userName, + AccountName: s.accountName, + Fingerprint: s.formattedKeyFingerprint, + IsManta: isManta, + } + + var authSignature httpAuthSignature + switch keyFormat { + case "rsa": + authSignature, err = newRSASignature(signature.Blob) + if err != nil { + return "", pkgerrors.Wrap(err, "unable to read RSA signature") + } + case "ecdsa": + authSignature, err = newECDSASignature(signature.Blob) + if err != nil { + return "", pkgerrors.Wrap(err, "unable to read ECDSA signature") + } + default: + return "", fmt.Errorf("Unsupported algorithm from SSH agent: %s", signature.Format) + } + + return fmt.Sprintf(authorizationHeaderFormat, key.generate(), + authSignature.SignatureType(), headerName, authSignature.String()), nil +} + +func (s *SSHAgentSigner) SignRaw(toSign string) (string, string, error) { + signature, err := s.agent.Sign(s.key, []byte(toSign)) + if err != nil { + return "", "", pkgerrors.Wrap(err, "unable to sign string") + } + + keyFormat, err := keyFormatToKeyType(signature.Format) + if err != nil { + return "", "", pkgerrors.Wrap(err, "unable to format key") + } + + var authSignature httpAuthSignature + switch keyFormat { + case "rsa": + authSignature, err = newRSASignature(signature.Blob) + if err != nil { + return "", "", pkgerrors.Wrap(err, "unable to read RSA signature") + } + case "ecdsa": + authSignature, err = newECDSASignature(signature.Blob) + if err != nil { + return "", "", pkgerrors.Wrap(err, "unable to read ECDSA signature") + } + default: + return "", "", fmt.Errorf("Unsupported algorithm from SSH agent: %s", signature.Format) + } + + return authSignature.String(), authSignature.SignatureType(), nil +} + +func (s *SSHAgentSigner) KeyFingerprint() string { + return s.formattedKeyFingerprint +} + +func (s *SSHAgentSigner) DefaultAlgorithm() string { + return s.algorithm +} diff --git a/vendor/github.com/joyent/triton-go/authentication/test_signer.go b/vendor/github.com/joyent/triton-go/authentication/test_signer.go new file mode 100644 index 000000000..b34f28bf3 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/authentication/test_signer.go @@ -0,0 +1,35 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package authentication + +// TestSigner represents an authentication key signer which we can use for +// testing purposes only. This will largely be a stub to send through client +// unit tests. +type TestSigner struct{} + +// NewTestSigner constructs a new instance of test signer +func NewTestSigner() (Signer, error) { + return &TestSigner{}, nil +} + +func (s *TestSigner) DefaultAlgorithm() string { + return "" +} + +func (s *TestSigner) KeyFingerprint() string { + return "" +} + +func (s *TestSigner) Sign(dateHeader string, isManta bool) (string, error) { + return "", nil +} + +func (s *TestSigner) SignRaw(toSign string) (string, string, error) { + return "", "", nil +} diff --git a/vendor/github.com/joyent/triton-go/authentication/util.go b/vendor/github.com/joyent/triton-go/authentication/util.go new file mode 100644 index 000000000..95918439f --- /dev/null +++ b/vendor/github.com/joyent/triton-go/authentication/util.go @@ -0,0 +1,37 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package authentication + +import ( + "crypto/md5" + "fmt" + "strings" + + "golang.org/x/crypto/ssh" +) + +// formatPublicKeyFingerprint produces the MD5 fingerprint of the given SSH +// public key. If display is true, the fingerprint is formatted with colons +// between each byte, as per the output of OpenSSL. +func formatPublicKeyFingerprint(key ssh.PublicKey, display bool) string { + publicKeyFingerprint := md5.New() + publicKeyFingerprint.Write(key.Marshal()) + publicKeyFingerprintString := fmt.Sprintf("%x", publicKeyFingerprint.Sum(nil)) + + if !display { + return publicKeyFingerprintString + } + + formatted := "" + for i := 0; i < len(publicKeyFingerprintString); i = i + 2 { + formatted = fmt.Sprintf("%s%s:", formatted, publicKeyFingerprintString[i:i+2]) + } + + return strings.TrimSuffix(formatted, ":") +} diff --git a/vendor/github.com/joyent/triton-go/client/client.go b/vendor/github.com/joyent/triton-go/client/client.go new file mode 100644 index 000000000..1edfbae45 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/client/client.go @@ -0,0 +1,600 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package client + +import ( + "bytes" + "context" + "crypto/tls" + "encoding/json" + "fmt" + "io" + "net" + "net/http" + "net/url" + "regexp" + "strings" + "time" + + triton "github.com/joyent/triton-go" + "github.com/joyent/triton-go/authentication" + "github.com/joyent/triton-go/errors" + pkgerrors "github.com/pkg/errors" +) + +var ( + ErrDefaultAuth = pkgerrors.New("default SSH agent authentication requires SDC_KEY_ID / TRITON_KEY_ID and SSH_AUTH_SOCK") + ErrAccountName = pkgerrors.New("missing account name") + ErrMissingURL = pkgerrors.New("missing API URL") + + InvalidTritonURL = "invalid format of Triton URL" + InvalidMantaURL = "invalid format of Manta URL" + InvalidServicesURL = "invalid format of Triton Service Groups URL" + InvalidDCInURL = "invalid data center in URL" + + knownDCFormats = []string{ + `https?://(.*).api.joyent.com`, + `https?://(.*).api.joyentcloud.com`, + `https?://(.*).api.samsungcloud.io`, + } + + jpcFormatURL = "https://tsg.%s.svc.joyent.zone" + spcFormatURL = "https://tsg.%s.svc.samsungcloud.zone" +) + +// Client represents a connection to the Triton Compute or Object Storage APIs. +type Client struct { + HTTPClient *http.Client + RequestHeader *http.Header + Authorizers []authentication.Signer + TritonURL url.URL + MantaURL url.URL + ServicesURL url.URL + AccountName string + Username string +} + +func isPrivateInstall(url string) bool { + for _, pattern := range knownDCFormats { + re := regexp.MustCompile(pattern) + matches := re.FindStringSubmatch(url) + if len(matches) > 1 { + return false + } + } + + return true +} + +// parseDC parses out the data center commonly found in Triton URLs. Returns an +// error if the Triton URL does not include a known data center name, in which +// case a URL override (TRITON_TSG_URL) must be provided. +func parseDC(url string) (string, bool, error) { + isSamsung := false + if strings.Contains(url, "samsung") { + isSamsung = true + } + + for _, pattern := range knownDCFormats { + re := regexp.MustCompile(pattern) + matches := re.FindStringSubmatch(url) + if len(matches) > 1 { + return matches[1], isSamsung, nil + } + } + + return "", isSamsung, fmt.Errorf("failed to parse datacenter from '%s'", url) +} + +// New is used to construct a Client in order to make API +// requests to the Triton API. +// +// At least one signer must be provided - example signers include +// authentication.PrivateKeySigner and authentication.SSHAgentSigner. +func New(tritonURL string, mantaURL string, accountName string, signers ...authentication.Signer) (*Client, error) { + if accountName == "" { + return nil, ErrAccountName + } + + if tritonURL == "" && mantaURL == "" { + return nil, ErrMissingURL + } + + cloudURL, err := url.Parse(tritonURL) + if err != nil { + return nil, pkgerrors.Wrapf(err, InvalidTritonURL) + } + + storageURL, err := url.Parse(mantaURL) + if err != nil { + return nil, pkgerrors.Wrapf(err, InvalidMantaURL) + } + + // Generate the Services URL (TSG) based on the current datacenter used in + // the Triton URL (if TritonURL is available). If TRITON_TSG_URL environment + // variable is available than override using that value instead. + tsgURL := triton.GetEnv("TSG_URL") + if tsgURL == "" && tritonURL != "" && !isPrivateInstall(tritonURL) { + currentDC, isSamsung, err := parseDC(tritonURL) + if err != nil { + return nil, pkgerrors.Wrapf(err, InvalidDCInURL) + } + + tsgURL = fmt.Sprintf(jpcFormatURL, currentDC) + if isSamsung { + tsgURL = fmt.Sprintf(spcFormatURL, currentDC) + } + } + + servicesURL, err := url.Parse(tsgURL) + if err != nil { + return nil, pkgerrors.Wrapf(err, InvalidServicesURL) + } + + authorizers := make([]authentication.Signer, 0) + for _, key := range signers { + if key != nil { + authorizers = append(authorizers, key) + } + } + + newClient := &Client{ + HTTPClient: &http.Client{ + Transport: httpTransport(false), + CheckRedirect: doNotFollowRedirects, + }, + Authorizers: authorizers, + TritonURL: *cloudURL, + MantaURL: *storageURL, + ServicesURL: *servicesURL, + AccountName: accountName, + } + + // Default to constructing an SSHAgentSigner if there are no other signers + // passed into NewClient and there's an TRITON_KEY_ID and SSH_AUTH_SOCK + // available in the user's environ(7). + if len(newClient.Authorizers) == 0 { + if err := newClient.DefaultAuth(); err != nil { + return nil, err + } + } + + return newClient, nil +} + +// initDefaultAuth provides a default key signer for a client. This should only +// be used internally if the client has no other key signer for authenticating +// with Triton. We first look for both `SDC_KEY_ID` and `SSH_AUTH_SOCK` in the +// user's environ(7). If so we default to the SSH agent key signer. +func (c *Client) DefaultAuth() error { + tritonKeyId := triton.GetEnv("KEY_ID") + if tritonKeyId != "" { + input := authentication.SSHAgentSignerInput{ + KeyID: tritonKeyId, + AccountName: c.AccountName, + Username: c.Username, + } + defaultSigner, err := authentication.NewSSHAgentSigner(input) + if err != nil { + return pkgerrors.Wrapf(err, "unable to initialize NewSSHAgentSigner") + } + c.Authorizers = append(c.Authorizers, defaultSigner) + } + + return ErrDefaultAuth +} + +// InsecureSkipTLSVerify turns off TLS verification for the client connection. This +// allows connection to an endpoint with a certificate which was signed by a non- +// trusted CA, such as self-signed certificates. This can be useful when connecting +// to temporary Triton installations such as Triton Cloud-On-A-Laptop. +func (c *Client) InsecureSkipTLSVerify() { + if c.HTTPClient == nil { + return + } + + c.HTTPClient.Transport = httpTransport(true) +} + +// httpTransport is responsible for setting up our HTTP client's transport +// settings +func httpTransport(insecureSkipTLSVerify bool) *http.Transport { + return &http.Transport{ + Proxy: http.ProxyFromEnvironment, + Dial: (&net.Dialer{ + Timeout: 30 * time.Second, + KeepAlive: 30 * time.Second, + }).Dial, + TLSHandshakeTimeout: 10 * time.Second, + MaxIdleConns: 10, + IdleConnTimeout: 15 * time.Second, + TLSClientConfig: &tls.Config{ + InsecureSkipVerify: insecureSkipTLSVerify, + }, + } +} + +func doNotFollowRedirects(*http.Request, []*http.Request) error { + return http.ErrUseLastResponse +} + +// DecodeError decodes a backend Triton error into a more usable Go error type +func (c *Client) DecodeError(resp *http.Response, requestMethod string) error { + err := &errors.APIError{ + StatusCode: resp.StatusCode, + } + + if requestMethod != http.MethodHead && resp.Body != nil { + errorDecoder := json.NewDecoder(resp.Body) + if err := errorDecoder.Decode(err); err != nil { + return pkgerrors.Wrapf(err, "unable to decode error response") + } + } + + if err.Message == "" { + err.Message = fmt.Sprintf("HTTP response returned status code %d", err.StatusCode) + } + + return err +} + +// overrideHeader overrides the header of the passed in HTTP request +func (c *Client) overrideHeader(req *http.Request) { + if c.RequestHeader != nil { + for k := range *c.RequestHeader { + req.Header.Set(k, c.RequestHeader.Get(k)) + } + } +} + +// resetHeader will reset the struct field that stores custom header +// information +func (c *Client) resetHeader() { + c.RequestHeader = nil +} + +// ----------------------------------------------------------------------------- + +type RequestInput struct { + Method string + Path string + Query *url.Values + Headers *http.Header + Body interface{} +} + +func (c *Client) ExecuteRequestURIParams(ctx context.Context, inputs RequestInput) (io.ReadCloser, error) { + defer c.resetHeader() + + method := inputs.Method + path := inputs.Path + body := inputs.Body + query := inputs.Query + + var requestBody io.Reader + if body != nil { + marshaled, err := json.MarshalIndent(body, "", " ") + if err != nil { + return nil, err + } + requestBody = bytes.NewReader(marshaled) + } + + endpoint := c.TritonURL + endpoint.Path = path + if query != nil { + endpoint.RawQuery = query.Encode() + } + + req, err := http.NewRequest(method, endpoint.String(), requestBody) + if err != nil { + return nil, pkgerrors.Wrapf(err, "unable to construct HTTP request") + } + + dateHeader := time.Now().UTC().Format(time.RFC1123) + req.Header.Set("date", dateHeader) + + // NewClient ensures there's always an authorizer (unless this is called + // outside that constructor). + authHeader, err := c.Authorizers[0].Sign(dateHeader, false) + if err != nil { + return nil, pkgerrors.Wrapf(err, "unable to sign HTTP request") + } + req.Header.Set("Authorization", authHeader) + req.Header.Set("Accept", "application/json") + req.Header.Set("Accept-Version", triton.CloudAPIMajorVersion) + req.Header.Set("User-Agent", triton.UserAgent()) + + if body != nil { + req.Header.Set("Content-Type", "application/json") + } + + c.overrideHeader(req) + + resp, err := c.HTTPClient.Do(req.WithContext(ctx)) + if err != nil { + return nil, pkgerrors.Wrapf(err, "unable to execute HTTP request") + } + + // We will only return a response from the API it is in the HTTP StatusCode + // 2xx range + // StatusMultipleChoices is StatusCode 300 + if resp.StatusCode >= http.StatusOK && + resp.StatusCode < http.StatusMultipleChoices { + return resp.Body, nil + } + + return nil, c.DecodeError(resp, req.Method) +} + +func (c *Client) ExecuteRequest(ctx context.Context, inputs RequestInput) (io.ReadCloser, error) { + return c.ExecuteRequestURIParams(ctx, inputs) +} + +func (c *Client) ExecuteRequestRaw(ctx context.Context, inputs RequestInput) (*http.Response, error) { + defer c.resetHeader() + + method := inputs.Method + path := inputs.Path + body := inputs.Body + query := inputs.Query + + var requestBody io.Reader + if body != nil { + marshaled, err := json.MarshalIndent(body, "", " ") + if err != nil { + return nil, err + } + requestBody = bytes.NewReader(marshaled) + } + + endpoint := c.TritonURL + endpoint.Path = path + if query != nil { + endpoint.RawQuery = query.Encode() + } + + req, err := http.NewRequest(method, endpoint.String(), requestBody) + if err != nil { + return nil, pkgerrors.Wrapf(err, "unable to construct HTTP request") + } + + dateHeader := time.Now().UTC().Format(time.RFC1123) + req.Header.Set("date", dateHeader) + + // NewClient ensures there's always an authorizer (unless this is called + // outside that constructor). + authHeader, err := c.Authorizers[0].Sign(dateHeader, false) + if err != nil { + return nil, pkgerrors.Wrapf(err, "unable to sign HTTP request") + } + req.Header.Set("Authorization", authHeader) + req.Header.Set("Accept", "application/json") + req.Header.Set("Accept-Version", triton.CloudAPIMajorVersion) + req.Header.Set("User-Agent", triton.UserAgent()) + + if body != nil { + req.Header.Set("Content-Type", "application/json") + } + + c.overrideHeader(req) + + resp, err := c.HTTPClient.Do(req.WithContext(ctx)) + if err != nil { + return nil, pkgerrors.Wrapf(err, "unable to execute HTTP request") + } + + // We will only return a response from the API it is in the HTTP StatusCode + // 2xx range + // StatusMultipleChoices is StatusCode 300 + if resp.StatusCode >= http.StatusOK && + resp.StatusCode < http.StatusMultipleChoices { + return resp, nil + } + + return nil, c.DecodeError(resp, req.Method) +} + +func (c *Client) ExecuteRequestStorage(ctx context.Context, inputs RequestInput) (io.ReadCloser, http.Header, error) { + defer c.resetHeader() + + method := inputs.Method + path := inputs.Path + query := inputs.Query + headers := inputs.Headers + body := inputs.Body + + endpoint := c.MantaURL + endpoint.Path = path + + var requestBody io.Reader + if body != nil { + marshaled, err := json.MarshalIndent(body, "", " ") + if err != nil { + return nil, nil, err + } + requestBody = bytes.NewReader(marshaled) + } + + req, err := http.NewRequest(method, endpoint.String(), requestBody) + if err != nil { + return nil, nil, pkgerrors.Wrapf(err, "unable to construct HTTP request") + } + + if body != nil && (headers == nil || headers.Get("Content-Type") == "") { + req.Header.Set("Content-Type", "application/json") + } + if headers != nil { + for key, values := range *headers { + for _, value := range values { + req.Header.Set(key, value) + } + } + } + + dateHeader := time.Now().UTC().Format(time.RFC1123) + req.Header.Set("date", dateHeader) + + authHeader, err := c.Authorizers[0].Sign(dateHeader, true) + if err != nil { + return nil, nil, pkgerrors.Wrapf(err, "unable to sign HTTP request") + } + req.Header.Set("Authorization", authHeader) + req.Header.Set("Accept", "*/*") + req.Header.Set("User-Agent", triton.UserAgent()) + + if query != nil { + req.URL.RawQuery = query.Encode() + } + + c.overrideHeader(req) + + resp, err := c.HTTPClient.Do(req.WithContext(ctx)) + if err != nil { + return nil, nil, pkgerrors.Wrapf(err, "unable to execute HTTP request") + } + + // We will only return a response from the API it is in the HTTP StatusCode + // 2xx range + // StatusMultipleChoices is StatusCode 300 + if resp.StatusCode >= http.StatusOK && + resp.StatusCode < http.StatusMultipleChoices { + return resp.Body, resp.Header, nil + } + + return nil, nil, c.DecodeError(resp, req.Method) +} + +type RequestNoEncodeInput struct { + Method string + Path string + Query *url.Values + Headers *http.Header + Body io.Reader +} + +func (c *Client) ExecuteRequestNoEncode(ctx context.Context, inputs RequestNoEncodeInput) (io.ReadCloser, http.Header, error) { + defer c.resetHeader() + + method := inputs.Method + path := inputs.Path + query := inputs.Query + headers := inputs.Headers + body := inputs.Body + + endpoint := c.MantaURL + endpoint.Path = path + + req, err := http.NewRequest(method, endpoint.String(), body) + if err != nil { + return nil, nil, pkgerrors.Wrapf(err, "unable to construct HTTP request") + } + + if headers != nil { + for key, values := range *headers { + for _, value := range values { + req.Header.Set(key, value) + } + } + } + + dateHeader := time.Now().UTC().Format(time.RFC1123) + req.Header.Set("date", dateHeader) + + authHeader, err := c.Authorizers[0].Sign(dateHeader, true) + if err != nil { + return nil, nil, pkgerrors.Wrapf(err, "unable to sign HTTP request") + } + req.Header.Set("Authorization", authHeader) + req.Header.Set("Accept", "*/*") + req.Header.Set("Accept-Version", triton.CloudAPIMajorVersion) + req.Header.Set("User-Agent", triton.UserAgent()) + + if query != nil { + req.URL.RawQuery = query.Encode() + } + + c.overrideHeader(req) + + resp, err := c.HTTPClient.Do(req.WithContext(ctx)) + if err != nil { + return nil, nil, pkgerrors.Wrapf(err, "unable to execute HTTP request") + } + + // We will only return a response from the API it is in the HTTP StatusCode + // 2xx range + // StatusMultipleChoices is StatusCode 300 + if resp.StatusCode >= http.StatusOK && + resp.StatusCode < http.StatusMultipleChoices { + return resp.Body, resp.Header, nil + } + + return nil, nil, c.DecodeError(resp, req.Method) +} + +func (c *Client) ExecuteRequestTSG(ctx context.Context, inputs RequestInput) (io.ReadCloser, error) { + defer c.resetHeader() + + method := inputs.Method + path := inputs.Path + body := inputs.Body + query := inputs.Query + + var requestBody io.Reader + if body != nil { + marshaled, err := json.MarshalIndent(body, "", " ") + if err != nil { + return nil, err + } + requestBody = bytes.NewReader(marshaled) + } + + endpoint := c.ServicesURL + endpoint.Path = path + if query != nil { + endpoint.RawQuery = query.Encode() + } + + req, err := http.NewRequest(method, endpoint.String(), requestBody) + if err != nil { + return nil, pkgerrors.Wrapf(err, "unable to construct HTTP request") + } + + dateHeader := time.Now().UTC().Format(time.RFC1123) + req.Header.Set("date", dateHeader) + + // NewClient ensures there's always an authorizer (unless this is called + // outside that constructor). + authHeader, err := c.Authorizers[0].Sign(dateHeader, false) + if err != nil { + return nil, pkgerrors.Wrapf(err, "unable to sign HTTP request") + } + req.Header.Set("Authorization", authHeader) + req.Header.Set("Accept", "application/json") + req.Header.Set("Accept-Version", triton.CloudAPIMajorVersion) + req.Header.Set("User-Agent", triton.UserAgent()) + + if body != nil { + req.Header.Set("Content-Type", "application/json") + } + + c.overrideHeader(req) + + resp, err := c.HTTPClient.Do(req.WithContext(ctx)) + if err != nil { + return nil, pkgerrors.Wrapf(err, "unable to execute HTTP request") + } + + if resp.StatusCode >= http.StatusOK && + resp.StatusCode < http.StatusMultipleChoices { + return resp.Body, nil + } + + return nil, fmt.Errorf("could not process backend TSG request") +} diff --git a/vendor/github.com/joyent/triton-go/compute/client.go b/vendor/github.com/joyent/triton-go/compute/client.go new file mode 100644 index 000000000..255dabca2 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/compute/client.go @@ -0,0 +1,90 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package compute + +import ( + "net/http" + + triton "github.com/joyent/triton-go" + "github.com/joyent/triton-go/client" +) + +type ComputeClient struct { + Client *client.Client +} + +func newComputeClient(client *client.Client) *ComputeClient { + return &ComputeClient{ + Client: client, + } +} + +// NewClient returns a new client for working with Compute endpoints and +// resources within CloudAPI +func NewClient(config *triton.ClientConfig) (*ComputeClient, error) { + // TODO: Utilize config interface within the function itself + client, err := client.New( + config.TritonURL, + config.MantaURL, + config.AccountName, + config.Signers..., + ) + if err != nil { + return nil, err + } + return newComputeClient(client), nil +} + +// SetHeaders allows a consumer of the current client to set custom headers for +// the next backend HTTP request sent to CloudAPI +func (c *ComputeClient) SetHeader(header *http.Header) { + c.Client.RequestHeader = header +} + +// Datacenters returns a Compute client used for accessing functions pertaining +// to DataCenter functionality in the Triton API. +func (c *ComputeClient) Datacenters() *DataCentersClient { + return &DataCentersClient{c.Client} +} + +// Images returns a Compute client used for accessing functions pertaining to +// Images functionality in the Triton API. +func (c *ComputeClient) Images() *ImagesClient { + return &ImagesClient{c.Client} +} + +// Machine returns a Compute client used for accessing functions pertaining to +// machine functionality in the Triton API. +func (c *ComputeClient) Instances() *InstancesClient { + return &InstancesClient{c.Client} +} + +// Packages returns a Compute client used for accessing functions pertaining to +// Packages functionality in the Triton API. +func (c *ComputeClient) Packages() *PackagesClient { + return &PackagesClient{c.Client} +} + +// Services returns a Compute client used for accessing functions pertaining to +// Services functionality in the Triton API. +func (c *ComputeClient) Services() *ServicesClient { + return &ServicesClient{c.Client} +} + +// Snapshots returns a Compute client used for accessing functions pertaining to +// Snapshots functionality in the Triton API. +func (c *ComputeClient) Snapshots() *SnapshotsClient { + return &SnapshotsClient{c.Client} +} + +// Snapshots returns a Compute client used for accessing functions pertaining to +// Snapshots functionality in the Triton API. +func (c *ComputeClient) Volumes() *VolumesClient { + return &VolumesClient{c.Client} +} diff --git a/vendor/github.com/joyent/triton-go/compute/datacenters.go b/vendor/github.com/joyent/triton-go/compute/datacenters.go new file mode 100644 index 000000000..9f22cffbb --- /dev/null +++ b/vendor/github.com/joyent/triton-go/compute/datacenters.go @@ -0,0 +1,101 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package compute + +import ( + "context" + "encoding/json" + "fmt" + "net/http" + "path" + "sort" + + "github.com/joyent/triton-go/client" + "github.com/joyent/triton-go/errors" + pkgerrors "github.com/pkg/errors" +) + +type DataCentersClient struct { + client *client.Client +} + +type DataCenter struct { + Name string `json:"name"` + URL string `json:"url"` +} + +type ListDataCentersInput struct{} + +func (c *DataCentersClient) List(ctx context.Context, _ *ListDataCentersInput) ([]*DataCenter, error) { + fullPath := path.Join("/", c.client.AccountName, "datacenters") + + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to list data centers") + } + + var intermediate map[string]string + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&intermediate); err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode list data centers response") + } + + keys := make([]string, len(intermediate)) + i := 0 + for k := range intermediate { + keys[i] = k + i++ + } + sort.Strings(keys) + + result := make([]*DataCenter, len(intermediate)) + i = 0 + for _, key := range keys { + result[i] = &DataCenter{ + Name: key, + URL: intermediate[key], + } + i++ + } + + return result, nil +} + +type GetDataCenterInput struct { + Name string +} + +func (c *DataCentersClient) Get(ctx context.Context, input *GetDataCenterInput) (*DataCenter, error) { + dcs, err := c.List(ctx, &ListDataCentersInput{}) + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to get data center") + } + + for _, dc := range dcs { + if dc.Name == input.Name { + return &DataCenter{ + Name: input.Name, + URL: dc.URL, + }, nil + } + } + + return nil, &errors.APIError{ + StatusCode: http.StatusNotFound, + Code: "ResourceNotFound", + Message: fmt.Sprintf("data center %q not found", input.Name), + } +} diff --git a/vendor/github.com/joyent/triton-go/compute/images.go b/vendor/github.com/joyent/triton-go/compute/images.go new file mode 100644 index 000000000..8dcae0a89 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/compute/images.go @@ -0,0 +1,268 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package compute + +import ( + "context" + "encoding/json" + "net/http" + "net/url" + "path" + "time" + + "github.com/joyent/triton-go/client" + "github.com/pkg/errors" +) + +type ImagesClient struct { + client *client.Client +} + +type ImageFile struct { + Compression string `json:"compression"` + SHA1 string `json:"sha1"` + Size int64 `json:"size"` +} + +type Image struct { + ID string `json:"id"` + Name string `json:"name"` + OS string `json:"os"` + Description string `json:"description"` + Version string `json:"version"` + Type string `json:"type"` + Requirements map[string]interface{} `json:"requirements"` + Homepage string `json:"homepage"` + Files []*ImageFile `json:"files"` + PublishedAt time.Time `json:"published_at"` + Owner string `json:"owner"` + Public bool `json:"public"` + State string `json:"state"` + Tags map[string]string `json:"tags"` + EULA string `json:"eula"` + ACL []string `json:"acl"` +} + +type ListImagesInput struct { + Name string + OS string + Version string + Public bool + State string + Owner string + Type string +} + +func (c *ImagesClient) List(ctx context.Context, input *ListImagesInput) ([]*Image, error) { + fullPath := path.Join("/", c.client.AccountName, "images") + + query := &url.Values{} + if input.Name != "" { + query.Set("name", input.Name) + } + if input.OS != "" { + query.Set("os", input.OS) + } + if input.Version != "" { + query.Set("version", input.Version) + } + if input.Public { + query.Set("public", "true") + } + if input.State != "" { + query.Set("state", input.State) + } + if input.Owner != "" { + query.Set("owner", input.Owner) + } + if input.Type != "" { + query.Set("type", input.Type) + } + + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + Query: query, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to list images") + } + + var result []*Image + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode list images response") + } + + return result, nil +} + +type GetImageInput struct { + ImageID string +} + +func (c *ImagesClient) Get(ctx context.Context, input *GetImageInput) (*Image, error) { + fullPath := path.Join("/", c.client.AccountName, "images", input.ImageID) + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to get image") + } + + var result *Image + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode get image response") + } + + return result, nil +} + +type DeleteImageInput struct { + ImageID string +} + +func (c *ImagesClient) Delete(ctx context.Context, input *DeleteImageInput) error { + fullPath := path.Join("/", c.client.AccountName, "images", input.ImageID) + reqInputs := client.RequestInput{ + Method: http.MethodDelete, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return errors.Wrap(err, "unable to delete image") + } + + return nil +} + +type ExportImageInput struct { + ImageID string + MantaPath string +} + +type MantaLocation struct { + MantaURL string `json:"manta_url"` + ImagePath string `json:"image_path"` + ManifestPath string `json:"manifest_path"` +} + +func (c *ImagesClient) Export(ctx context.Context, input *ExportImageInput) (*MantaLocation, error) { + fullPath := path.Join("/", c.client.AccountName, "images", input.ImageID) + query := &url.Values{} + query.Set("action", "export") + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Query: query, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to export image") + } + + var result *MantaLocation + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode export image response") + } + + return result, nil +} + +type CreateImageFromMachineInput struct { + MachineID string `json:"machine"` + Name string `json:"name"` + Version string `json:"version,omitempty"` + Description string `json:"description,omitempty"` + HomePage string `json:"homepage,omitempty"` + EULA string `json:"eula,omitempty"` + ACL []string `json:"acl,omitempty"` + Tags map[string]string `json:"tags,omitempty"` +} + +func (c *ImagesClient) CreateFromMachine(ctx context.Context, input *CreateImageFromMachineInput) (*Image, error) { + fullPath := path.Join("/", c.client.AccountName, "images") + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Body: input, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to create machine from image") + } + + var result *Image + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode create machine from image response") + } + + return result, nil +} + +type UpdateImageInput struct { + ImageID string `json:"-"` + Name string `json:"name,omitempty"` + Version string `json:"version,omitempty"` + Description string `json:"description,omitempty"` + HomePage string `json:"homepage,omitempty"` + EULA string `json:"eula,omitempty"` + ACL []string `json:"acl,omitempty"` + Tags map[string]string `json:"tags,omitempty"` +} + +func (c *ImagesClient) Update(ctx context.Context, input *UpdateImageInput) (*Image, error) { + fullPath := path.Join("/", c.client.AccountName, "images", input.ImageID) + query := &url.Values{} + query.Set("action", "update") + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Query: query, + Body: input, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to update image") + } + + var result *Image + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode update image response") + } + + return result, nil +} diff --git a/vendor/github.com/joyent/triton-go/compute/instances.go b/vendor/github.com/joyent/triton-go/compute/instances.go new file mode 100644 index 000000000..bab64c834 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/compute/instances.go @@ -0,0 +1,1178 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package compute + +import ( + "context" + "crypto/sha1" + "encoding/hex" + "encoding/json" + "fmt" + "io" + "io/ioutil" + "net/http" + "net/url" + "path" + "strconv" + "strings" + "time" + + "github.com/joyent/triton-go/client" + "github.com/joyent/triton-go/errors" + pkgerrors "github.com/pkg/errors" +) + +type InstancesClient struct { + client *client.Client +} + +const ( + CNSTagDisable = "triton.cns.disable" + CNSTagReversePTR = "triton.cns.reverse_ptr" + CNSTagServices = "triton.cns.services" +) + +// InstanceCNS is a container for the CNS-specific attributes. In the API these +// values are embedded within a Instance's Tags attribute, however they are +// exposed to the caller as their native types. +type InstanceCNS struct { + Disable bool + ReversePTR string + Services []string +} + +type InstanceVolume struct { + Name string `json:"name,omitempty"` + Type string `json:"type,omitempty"` + Mode string `json:"mode,omitempty"` + Mountpoint string `json:"mountpoint,omitempty"` +} + +type Instance struct { + ID string `json:"id"` + Name string `json:"name"` + Type string `json:"type"` + Brand string `json:"brand"` + State string `json:"state"` + Image string `json:"image"` + Memory int `json:"memory"` + Disk int `json:"disk"` + Metadata map[string]string `json:"metadata"` + Tags map[string]interface{} `json:"tags"` + Created time.Time `json:"created"` + Updated time.Time `json:"updated"` + Docker bool `json:"docker"` + IPs []string `json:"ips"` + Networks []string `json:"networks"` + PrimaryIP string `json:"primaryIp"` + FirewallEnabled bool `json:"firewall_enabled"` + ComputeNode string `json:"compute_node"` + Package string `json:"package"` + DomainNames []string `json:"dns_names"` + DeletionProtection bool `json:"deletion_protection"` + CNS InstanceCNS +} + +// _Instance is a private facade over Instance that handles the necessary API +// overrides from VMAPI's machine endpoint(s). +type _Instance struct { + Instance + Tags map[string]interface{} `json:"tags"` +} + +type NIC struct { + IP string `json:"ip"` + MAC string `json:"mac"` + Primary bool `json:"primary"` + Netmask string `json:"netmask"` + Gateway string `json:"gateway"` + State string `json:"state"` + Network string `json:"network"` +} + +type GetInstanceInput struct { + ID string +} + +func (gmi *GetInstanceInput) Validate() error { + if gmi.ID == "" { + return fmt.Errorf("machine ID can not be empty") + } + + return nil +} + +func (c *InstancesClient) Count(ctx context.Context, input *ListInstancesInput) (int, error) { + fullPath := path.Join("/", c.client.AccountName, "machines") + + reqInputs := client.RequestInput{ + Method: http.MethodHead, + Path: fullPath, + Query: buildQueryFilter(input), + } + + response, err := c.client.ExecuteRequestRaw(ctx, reqInputs) + if err != nil { + return -1, pkgerrors.Wrap(err, "unable to get machines count") + } + + if response == nil { + return -1, pkgerrors.New("request to get machines count has empty response") + } + defer response.Body.Close() + + var result int + + if count := response.Header.Get("X-Resource-Count"); count != "" { + value, err := strconv.Atoi(count) + if err != nil { + return -1, pkgerrors.Wrap(err, "unable to decode machines count response") + } + result = value + } + + return result, nil +} + +func (c *InstancesClient) Get(ctx context.Context, input *GetInstanceInput) (*Instance, error) { + if err := input.Validate(); err != nil { + return nil, pkgerrors.Wrap(err, "unable to get machine") + } + + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID) + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + response, err := c.client.ExecuteRequestRaw(ctx, reqInputs) + if response == nil { + return nil, pkgerrors.Wrap(err, "unable to get machine") + } + if response.Body != nil { + defer response.Body.Close() + } + if response.StatusCode == http.StatusNotFound || response.StatusCode == http.StatusGone { + return nil, &errors.APIError{ + StatusCode: response.StatusCode, + Code: "ResourceNotFound", + } + } + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to get machine") + } + + var result *_Instance + decoder := json.NewDecoder(response.Body) + if err = decoder.Decode(&result); err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode get machine response") + } + + native, err := result.toNative() + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode get machine response") + } + + return native, nil +} + +type ListInstancesInput struct { + Brand string + Alias string + Name string + Image string + State string + Memory uint16 + Limit uint16 + Offset uint16 + Tags map[string]interface{} // query by arbitrary tags prefixed with "tag." + Tombstone bool + Docker bool + Credentials bool +} + +func buildQueryFilter(input *ListInstancesInput) *url.Values { + query := &url.Values{} + if input.Brand != "" { + query.Set("brand", input.Brand) + } + if input.Name != "" { + query.Set("name", input.Name) + } + if input.Image != "" { + query.Set("image", input.Image) + } + if input.State != "" { + query.Set("state", input.State) + } + if input.Memory >= 1 { + query.Set("memory", fmt.Sprintf("%d", input.Memory)) + } + if input.Limit >= 1 && input.Limit <= 1000 { + query.Set("limit", fmt.Sprintf("%d", input.Limit)) + } + if input.Offset >= 0 { + query.Set("offset", fmt.Sprintf("%d", input.Offset)) + } + if input.Tombstone { + query.Set("tombstone", "true") + } + if input.Docker { + query.Set("docker", "true") + } + if input.Credentials { + query.Set("credentials", "true") + } + if input.Tags != nil { + for k, v := range input.Tags { + query.Set(fmt.Sprintf("tag.%s", k), v.(string)) + } + } + + return query +} + +func (c *InstancesClient) List(ctx context.Context, input *ListInstancesInput) ([]*Instance, error) { + fullPath := path.Join("/", c.client.AccountName, "machines") + + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + Query: buildQueryFilter(input), + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to list machines") + } + + var results []*_Instance + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&results); err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode list machines response") + } + + machines := make([]*Instance, 0, len(results)) + for _, machineAPI := range results { + native, err := machineAPI.toNative() + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode list machines response") + } + machines = append(machines, native) + } + + return machines, nil +} + +type CreateInstanceInput struct { + Name string + NamePrefix string + Package string + Image string + Networks []string + Affinity []string + LocalityStrict bool + LocalityNear []string + LocalityFar []string + Metadata map[string]string + Tags map[string]string // + FirewallEnabled bool // + CNS InstanceCNS + Volumes []InstanceVolume +} + +func buildInstanceName(namePrefix string) string { + h := sha1.New() + io.WriteString(h, namePrefix+time.Now().UTC().String()) + return fmt.Sprintf("%s%s", namePrefix, hex.EncodeToString(h.Sum(nil))[:8]) +} + +func (input *CreateInstanceInput) toAPI() (map[string]interface{}, error) { + const numExtraParams = 8 + result := make(map[string]interface{}, numExtraParams+len(input.Metadata)+len(input.Tags)) + + result["firewall_enabled"] = input.FirewallEnabled + + if input.Name != "" { + result["name"] = input.Name + } else if input.NamePrefix != "" { + result["name"] = buildInstanceName(input.NamePrefix) + } + + if input.Package != "" { + result["package"] = input.Package + } + + if input.Image != "" { + result["image"] = input.Image + } + + if len(input.Networks) > 0 { + result["networks"] = input.Networks + } + + if len(input.Volumes) > 0 { + result["volumes"] = input.Volumes + } + + // validate that affinity and locality are not included together + hasAffinity := len(input.Affinity) > 0 + hasLocality := len(input.LocalityNear) > 0 || len(input.LocalityFar) > 0 + if hasAffinity && hasLocality { + return nil, fmt.Errorf("Cannot include both Affinity and Locality") + } + + // affinity takes precedence over locality regardless + if len(input.Affinity) > 0 { + result["affinity"] = input.Affinity + } else { + locality := struct { + Strict bool `json:"strict"` + Near []string `json:"near,omitempty"` + Far []string `json:"far,omitempty"` + }{ + Strict: input.LocalityStrict, + Near: input.LocalityNear, + Far: input.LocalityFar, + } + result["locality"] = locality + } + + for key, value := range input.Tags { + result[fmt.Sprintf("tag.%s", key)] = value + } + + // NOTE(justinwr): CNSTagServices needs to be a tag if available. No other + // CNS tags will be handled at this time. + input.CNS.toTags(result) + if val, found := result[CNSTagServices]; found { + result["tag."+CNSTagServices] = val + delete(result, CNSTagServices) + } + + for key, value := range input.Metadata { + result[fmt.Sprintf("metadata.%s", key)] = value + } + + return result, nil +} + +func (c *InstancesClient) Create(ctx context.Context, input *CreateInstanceInput) (*Instance, error) { + fullPath := path.Join("/", c.client.AccountName, "machines") + body, err := input.toAPI() + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to prepare for machine creation") + } + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Body: body, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to create machine") + } + + var result *Instance + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode create machine response") + } + + return result, nil +} + +type DeleteInstanceInput struct { + ID string +} + +func (c *InstancesClient) Delete(ctx context.Context, input *DeleteInstanceInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID) + reqInputs := client.RequestInput{ + Method: http.MethodDelete, + Path: fullPath, + } + response, err := c.client.ExecuteRequestRaw(ctx, reqInputs) + if response == nil { + return pkgerrors.Wrap(err, "unable to delete machine") + } + if response.Body != nil { + defer response.Body.Close() + } + if response.StatusCode == http.StatusNotFound || response.StatusCode == http.StatusGone { + return nil + } + if err != nil { + return pkgerrors.Wrap(err, "unable to decode delete machine response") + } + + return nil +} + +type DeleteTagsInput struct { + ID string +} + +func (c *InstancesClient) DeleteTags(ctx context.Context, input *DeleteTagsInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID, "tags") + reqInputs := client.RequestInput{ + Method: http.MethodDelete, + Path: fullPath, + } + response, err := c.client.ExecuteRequestRaw(ctx, reqInputs) + if err != nil { + return pkgerrors.Wrap(err, "unable to delete tags from machine") + } + if response == nil { + return fmt.Errorf("DeleteTags request has empty response") + } + if response.Body != nil { + defer response.Body.Close() + } + if response.StatusCode == http.StatusNotFound { + return nil + } + + return nil +} + +type DeleteTagInput struct { + ID string + Key string +} + +func (c *InstancesClient) DeleteTag(ctx context.Context, input *DeleteTagInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID, "tags", input.Key) + reqInputs := client.RequestInput{ + Method: http.MethodDelete, + Path: fullPath, + } + response, err := c.client.ExecuteRequestRaw(ctx, reqInputs) + if err != nil { + return pkgerrors.Wrap(err, "unable to delete tag from machine") + } + if response == nil { + return fmt.Errorf("DeleteTag request has empty response") + } + if response.Body != nil { + defer response.Body.Close() + } + if response.StatusCode == http.StatusNotFound { + return nil + } + + return nil +} + +type RenameInstanceInput struct { + ID string + Name string +} + +func (c *InstancesClient) Rename(ctx context.Context, input *RenameInstanceInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID) + + params := &url.Values{} + params.Set("action", "rename") + params.Set("name", input.Name) + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Query: params, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return pkgerrors.Wrap(err, "unable to rename machine") + } + + return nil +} + +type ReplaceTagsInput struct { + ID string + Tags map[string]string + CNS InstanceCNS +} + +// toAPI is used to join Tags and CNS tags into the same JSON object before +// sending an API request to the API gateway. +func (input ReplaceTagsInput) toAPI() map[string]interface{} { + result := map[string]interface{}{} + for key, value := range input.Tags { + result[key] = value + } + input.CNS.toTags(result) + return result +} + +func (c *InstancesClient) ReplaceTags(ctx context.Context, input *ReplaceTagsInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID, "tags") + reqInputs := client.RequestInput{ + Method: http.MethodPut, + Path: fullPath, + Body: input.toAPI(), + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return pkgerrors.Wrap(err, "unable to replace machine tags") + } + + return nil +} + +type AddTagsInput struct { + ID string + Tags map[string]string +} + +func (c *InstancesClient) AddTags(ctx context.Context, input *AddTagsInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID, "tags") + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Body: input.Tags, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return pkgerrors.Wrap(err, "unable to add tags to machine") + } + + return nil +} + +type GetTagInput struct { + ID string + Key string +} + +func (c *InstancesClient) GetTag(ctx context.Context, input *GetTagInput) (string, error) { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID, "tags", input.Key) + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if err != nil { + return "", pkgerrors.Wrap(err, "unable to get tag") + } + if respReader != nil { + defer respReader.Close() + } + + var result string + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return "", pkgerrors.Wrap(err, "unable to decode get tag response") + } + + return result, nil +} + +type ListTagsInput struct { + ID string +} + +func (c *InstancesClient) ListTags(ctx context.Context, input *ListTagsInput) (map[string]interface{}, error) { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID, "tags") + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to list machine tags") + } + + var result map[string]interface{} + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, pkgerrors.Wrap(err, "unable decode list machine tags response") + } + + _, tags := TagsExtractMeta(result) + return tags, nil +} + +type GetMetadataInput struct { + ID string + Key string +} + +// GetMetadata returns a single metadata entry associated with an instance. +func (c *InstancesClient) GetMetadata(ctx context.Context, input *GetMetadataInput) (string, error) { + if input.Key == "" { + return "", fmt.Errorf("Missing metadata Key from input: %s", input.Key) + } + + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID, "metadata", input.Key) + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + response, err := c.client.ExecuteRequestRaw(ctx, reqInputs) + if err != nil { + return "", pkgerrors.Wrap(err, "unable to get machine metadata") + } + if response != nil { + defer response.Body.Close() + } + if response.StatusCode == http.StatusNotFound || response.StatusCode == http.StatusGone { + return "", &errors.APIError{ + StatusCode: response.StatusCode, + Code: "ResourceNotFound", + } + } + + body, err := ioutil.ReadAll(response.Body) + if err != nil { + return "", pkgerrors.Wrap(err, "unable to decode get machine metadata response") + } + + return fmt.Sprintf("%s", body), nil +} + +type ListMetadataInput struct { + ID string + Credentials bool +} + +func (c *InstancesClient) ListMetadata(ctx context.Context, input *ListMetadataInput) (map[string]string, error) { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID, "metadata") + + query := &url.Values{} + if input.Credentials { + query.Set("credentials", "true") + } + + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + Query: query, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to list machine metadata") + } + + var result map[string]string + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode list machine metadata response") + } + + return result, nil +} + +type UpdateMetadataInput struct { + ID string + Metadata map[string]string +} + +func (c *InstancesClient) UpdateMetadata(ctx context.Context, input *UpdateMetadataInput) (map[string]string, error) { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID, "metadata") + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Body: input.Metadata, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to update machine metadata") + } + + var result map[string]string + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode update machine metadata response") + } + + return result, nil +} + +type DeleteMetadataInput struct { + ID string + Key string +} + +// DeleteMetadata deletes a single metadata key from an instance +func (c *InstancesClient) DeleteMetadata(ctx context.Context, input *DeleteMetadataInput) error { + if input.Key == "" { + return fmt.Errorf("Missing metadata Key from input: %s", input.Key) + } + + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID, "metadata", input.Key) + reqInputs := client.RequestInput{ + Method: http.MethodDelete, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if err != nil { + return pkgerrors.Wrap(err, "unable to delete machine metadata") + } + if respReader != nil { + defer respReader.Close() + } + + return nil +} + +type DeleteAllMetadataInput struct { + ID string +} + +// DeleteAllMetadata deletes all metadata keys from this instance +func (c *InstancesClient) DeleteAllMetadata(ctx context.Context, input *DeleteAllMetadataInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID, "metadata") + reqInputs := client.RequestInput{ + Method: http.MethodDelete, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if err != nil { + return pkgerrors.Wrap(err, "unable to delete all machine metadata") + } + if respReader != nil { + defer respReader.Close() + } + + return nil +} + +type ResizeInstanceInput struct { + ID string + Package string +} + +func (c *InstancesClient) Resize(ctx context.Context, input *ResizeInstanceInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID) + + params := &url.Values{} + params.Set("action", "resize") + params.Set("package", input.Package) + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Query: params, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return pkgerrors.Wrap(err, "unable to resize machine") + } + + return nil +} + +type EnableFirewallInput struct { + ID string +} + +func (c *InstancesClient) EnableFirewall(ctx context.Context, input *EnableFirewallInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID) + + params := &url.Values{} + params.Set("action", "enable_firewall") + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Query: params, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return pkgerrors.Wrap(err, "unable to enable machine firewall") + } + + return nil +} + +type DisableFirewallInput struct { + ID string +} + +func (c *InstancesClient) DisableFirewall(ctx context.Context, input *DisableFirewallInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.ID) + + params := &url.Values{} + params.Set("action", "disable_firewall") + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Query: params, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return pkgerrors.Wrap(err, "unable to disable machine firewall") + } + + return nil +} + +type ListNICsInput struct { + InstanceID string +} + +func (c *InstancesClient) ListNICs(ctx context.Context, input *ListNICsInput) ([]*NIC, error) { + fullPath := path.Join("/", c.client.AccountName, "machines", input.InstanceID, "nics") + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to list machine NICs") + } + + var result []*NIC + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode list machine NICs response") + } + + return result, nil +} + +type GetNICInput struct { + InstanceID string + MAC string +} + +func (c *InstancesClient) GetNIC(ctx context.Context, input *GetNICInput) (*NIC, error) { + mac := strings.Replace(input.MAC, ":", "", -1) + fullPath := path.Join("/", c.client.AccountName, "machines", input.InstanceID, "nics", mac) + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + response, err := c.client.ExecuteRequestRaw(ctx, reqInputs) + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to get machine NIC") + } + if response != nil { + defer response.Body.Close() + } + switch response.StatusCode { + case http.StatusNotFound: + return nil, &errors.APIError{ + StatusCode: response.StatusCode, + Code: "ResourceNotFound", + } + } + + var result *NIC + decoder := json.NewDecoder(response.Body) + if err = decoder.Decode(&result); err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode get machine NIC response") + } + + return result, nil +} + +type AddNICInput struct { + InstanceID string `json:"-"` + Network string `json:"network"` +} + +// AddNIC asynchronously adds a NIC to a given instance. If a NIC for a given +// network already exists, a ResourceFound error will be returned. The status +// of the addition of a NIC can be polled by calling GetNIC()'s and testing NIC +// until its state is set to "running". Only one NIC per network may exist. +// Warning: this operation causes the instance to restart. +func (c *InstancesClient) AddNIC(ctx context.Context, input *AddNICInput) (*NIC, error) { + fullPath := path.Join("/", c.client.AccountName, "machines", input.InstanceID, "nics") + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Body: input, + } + response, err := c.client.ExecuteRequestRaw(ctx, reqInputs) + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to add NIC to machine") + } + if response != nil { + defer response.Body.Close() + } + switch response.StatusCode { + case http.StatusFound: + return nil, &errors.APIError{ + StatusCode: response.StatusCode, + Code: "ResourceFound", + Message: response.Header.Get("Location"), + } + } + + var result *NIC + decoder := json.NewDecoder(response.Body) + if err = decoder.Decode(&result); err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode add NIC to machine response") + } + + return result, nil +} + +type RemoveNICInput struct { + InstanceID string + MAC string +} + +// RemoveNIC removes a given NIC from a machine asynchronously. The status of +// the removal can be polled via GetNIC(). When GetNIC() returns a 404, the NIC +// has been removed from the instance. Warning: this operation causes the +// machine to restart. +func (c *InstancesClient) RemoveNIC(ctx context.Context, input *RemoveNICInput) error { + mac := strings.Replace(input.MAC, ":", "", -1) + fullPath := path.Join("/", c.client.AccountName, "machines", input.InstanceID, "nics", mac) + reqInputs := client.RequestInput{ + Method: http.MethodDelete, + Path: fullPath, + } + response, err := c.client.ExecuteRequestRaw(ctx, reqInputs) + if err != nil { + return pkgerrors.Wrap(err, "unable to remove NIC from machine") + } + if response == nil { + return pkgerrors.Wrap(err, "unable to remove NIC from machine") + } + if response.Body != nil { + defer response.Body.Close() + } + switch response.StatusCode { + case http.StatusNotFound: + return &errors.APIError{ + StatusCode: response.StatusCode, + Code: "ResourceNotFound", + } + } + + return nil +} + +type StopInstanceInput struct { + InstanceID string +} + +func (c *InstancesClient) Stop(ctx context.Context, input *StopInstanceInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.InstanceID) + + params := &url.Values{} + params.Set("action", "stop") + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Query: params, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return pkgerrors.Wrap(err, "unable to stop machine") + } + + return nil +} + +type StartInstanceInput struct { + InstanceID string +} + +func (c *InstancesClient) Start(ctx context.Context, input *StartInstanceInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.InstanceID) + + params := &url.Values{} + params.Set("action", "start") + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Query: params, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return pkgerrors.Wrap(err, "unable to start machine") + } + + return nil +} + +type RebootInstanceInput struct { + InstanceID string +} + +func (c *InstancesClient) Reboot(ctx context.Context, input *RebootInstanceInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.InstanceID) + + params := &url.Values{} + params.Set("action", "reboot") + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Query: params, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return pkgerrors.Wrap(err, "unable to reboot machine") + } + + return nil +} + +type EnableDeletionProtectionInput struct { + InstanceID string +} + +func (c *InstancesClient) EnableDeletionProtection(ctx context.Context, input *EnableDeletionProtectionInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.InstanceID) + + params := &url.Values{} + params.Set("action", "enable_deletion_protection") + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Query: params, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return pkgerrors.Wrap(err, "unable to enable deletion protection") + } + + return nil +} + +type DisableDeletionProtectionInput struct { + InstanceID string +} + +func (c *InstancesClient) DisableDeletionProtection(ctx context.Context, input *DisableDeletionProtectionInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.InstanceID) + + params := &url.Values{} + params.Set("action", "disable_deletion_protection") + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Query: params, + } + respReader, err := c.client.ExecuteRequestURIParams(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return pkgerrors.Wrap(err, "unable to disable deletion protection") + } + + return nil +} + +var reservedInstanceCNSTags = map[string]struct{}{ + CNSTagDisable: {}, + CNSTagReversePTR: {}, + CNSTagServices: {}, +} + +// TagsExtractMeta extracts all of the misc parameters from Tags and returns a +// clean CNS and Tags struct. +func TagsExtractMeta(tags map[string]interface{}) (InstanceCNS, map[string]interface{}) { + nativeCNS := InstanceCNS{} + nativeTags := make(map[string]interface{}, len(tags)) + for k, raw := range tags { + if _, found := reservedInstanceCNSTags[k]; found { + switch k { + case CNSTagDisable: + b := raw.(bool) + nativeCNS.Disable = b + case CNSTagReversePTR: + s := raw.(string) + nativeCNS.ReversePTR = s + case CNSTagServices: + nativeCNS.Services = strings.Split(raw.(string), ",") + default: + // TODO(seanc@): should assert, logic fail + } + } else { + nativeTags[k] = raw + } + } + + return nativeCNS, nativeTags +} + +// toNative() exports a given _Instance (API representation) to its native object +// format. +func (api *_Instance) toNative() (*Instance, error) { + m := Instance(api.Instance) + m.CNS, m.Tags = TagsExtractMeta(api.Tags) + return &m, nil +} + +// toTags() injects its state information into a Tags map suitable for use to +// submit an API call to the vmapi machine endpoint +func (cns *InstanceCNS) toTags(m map[string]interface{}) { + if cns.Disable { + // NOTE(justinwr): The JSON encoder and API require the CNSTagDisable + // attribute to be an actual boolean, not a bool string. + m[CNSTagDisable] = cns.Disable + } + if cns.ReversePTR != "" { + m[CNSTagReversePTR] = cns.ReversePTR + } + if len(cns.Services) > 0 { + m[CNSTagServices] = strings.Join(cns.Services, ",") + } +} diff --git a/vendor/github.com/joyent/triton-go/compute/packages.go b/vendor/github.com/joyent/triton-go/compute/packages.go new file mode 100644 index 000000000..495e81747 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/compute/packages.go @@ -0,0 +1,128 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package compute + +import ( + "context" + "encoding/json" + "fmt" + "net/http" + "net/url" + "path" + + "github.com/joyent/triton-go/client" + "github.com/pkg/errors" +) + +type PackagesClient struct { + client *client.Client +} + +type Package struct { + ID string `json:"id"` + Name string `json:"name"` + Memory int64 `json:"memory"` + Disk int64 `json:"disk"` + Swap int64 `json:"swap"` + LWPs int64 `json:"lwps"` + VCPUs int64 `json:"vcpus"` + Version string `json:"version"` + Group string `json:"group"` + Description string `json:"description"` + Default bool `json:"default"` +} + +type ListPackagesInput struct { + Name string `json:"name"` + Memory int64 `json:"memory"` + Disk int64 `json:"disk"` + Swap int64 `json:"swap"` + LWPs int64 `json:"lwps"` + VCPUs int64 `json:"vcpus"` + Version string `json:"version"` + Group string `json:"group"` +} + +func (c *PackagesClient) List(ctx context.Context, input *ListPackagesInput) ([]*Package, error) { + fullPath := path.Join("/", c.client.AccountName, "packages") + + query := &url.Values{} + if input.Name != "" { + query.Set("name", input.Name) + } + if input.Memory != 0 { + query.Set("memory", fmt.Sprintf("%d", input.Memory)) + } + if input.Disk != 0 { + query.Set("disk", fmt.Sprintf("%d", input.Disk)) + } + if input.Swap != 0 { + query.Set("swap", fmt.Sprintf("%d", input.Swap)) + } + if input.LWPs != 0 { + query.Set("lwps", fmt.Sprintf("%d", input.LWPs)) + } + if input.VCPUs != 0 { + query.Set("vcpus", fmt.Sprintf("%d", input.VCPUs)) + } + if input.Version != "" { + query.Set("version", input.Version) + } + if input.Group != "" { + query.Set("group", input.Group) + } + + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + Query: query, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to list packages") + } + + var result []*Package + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode list packages response") + } + + return result, nil +} + +type GetPackageInput struct { + ID string +} + +func (c *PackagesClient) Get(ctx context.Context, input *GetPackageInput) (*Package, error) { + fullPath := path.Join("/", c.client.AccountName, "packages", input.ID) + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to get package") + } + + var result *Package + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode get package response") + } + + return result, nil +} diff --git a/vendor/github.com/joyent/triton-go/compute/ping.go b/vendor/github.com/joyent/triton-go/compute/ping.go new file mode 100644 index 000000000..f346e5c26 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/compute/ping.go @@ -0,0 +1,58 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package compute + +import ( + "context" + "encoding/json" + "net/http" + + "github.com/joyent/triton-go/client" + pkgerrors "github.com/pkg/errors" +) + +const pingEndpoint = "/--ping" + +type CloudAPI struct { + Versions []string `json:"versions"` +} + +type PingOutput struct { + Ping string `json:"ping"` + CloudAPI CloudAPI `json:"cloudapi"` +} + +// Ping sends a request to the '/--ping' endpoint and returns a `pong` as well +// as a list of API version numbers your instance of CloudAPI is presenting. +func (c *ComputeClient) Ping(ctx context.Context) (*PingOutput, error) { + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: pingEndpoint, + } + response, err := c.Client.ExecuteRequestRaw(ctx, reqInputs) + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to ping") + } + if response == nil { + return nil, pkgerrors.Wrap(err, "unable to ping") + } + if response.Body != nil { + defer response.Body.Close() + } + + var result *PingOutput + decoder := json.NewDecoder(response.Body) + if err = decoder.Decode(&result); err != nil { + if err != nil { + return nil, pkgerrors.Wrap(err, "unable to decode ping response") + } + } + + return result, nil +} diff --git a/vendor/github.com/joyent/triton-go/compute/services.go b/vendor/github.com/joyent/triton-go/compute/services.go new file mode 100644 index 000000000..3597da9b1 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/compute/services.go @@ -0,0 +1,72 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package compute + +import ( + "context" + "encoding/json" + "net/http" + "path" + "sort" + + "github.com/joyent/triton-go/client" + "github.com/pkg/errors" +) + +type ServicesClient struct { + client *client.Client +} + +type Service struct { + Name string + Endpoint string +} + +type ListServicesInput struct{} + +func (c *ServicesClient) List(ctx context.Context, _ *ListServicesInput) ([]*Service, error) { + fullPath := path.Join("/", c.client.AccountName, "services") + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to list services") + } + + var intermediate map[string]string + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&intermediate); err != nil { + return nil, errors.Wrap(err, "unable to decode list services response") + } + + keys := make([]string, len(intermediate)) + i := 0 + for k := range intermediate { + keys[i] = k + i++ + } + sort.Strings(keys) + + result := make([]*Service, len(intermediate)) + i = 0 + for _, key := range keys { + result[i] = &Service{ + Name: key, + Endpoint: intermediate[key], + } + i++ + } + + return result, nil +} diff --git a/vendor/github.com/joyent/triton-go/compute/snapshots.go b/vendor/github.com/joyent/triton-go/compute/snapshots.go new file mode 100644 index 000000000..f30d394ba --- /dev/null +++ b/vendor/github.com/joyent/triton-go/compute/snapshots.go @@ -0,0 +1,164 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package compute + +import ( + "context" + "encoding/json" + "net/http" + "path" + "time" + + "github.com/joyent/triton-go/client" + "github.com/pkg/errors" +) + +type SnapshotsClient struct { + client *client.Client +} + +type Snapshot struct { + Name string + State string + Created time.Time + Updated time.Time +} + +type ListSnapshotsInput struct { + MachineID string +} + +func (c *SnapshotsClient) List(ctx context.Context, input *ListSnapshotsInput) ([]*Snapshot, error) { + fullPath := path.Join("/", c.client.AccountName, "machines", input.MachineID, "snapshots") + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to list snapshots") + } + + var result []*Snapshot + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode list snapshots response") + } + + return result, nil +} + +type GetSnapshotInput struct { + MachineID string + Name string +} + +func (c *SnapshotsClient) Get(ctx context.Context, input *GetSnapshotInput) (*Snapshot, error) { + fullPath := path.Join("/", c.client.AccountName, "machines", input.MachineID, "snapshots", input.Name) + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to get snapshot") + } + + var result *Snapshot + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode get snapshot response") + } + + return result, nil +} + +type DeleteSnapshotInput struct { + MachineID string + Name string +} + +func (c *SnapshotsClient) Delete(ctx context.Context, input *DeleteSnapshotInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.MachineID, "snapshots", input.Name) + reqInputs := client.RequestInput{ + Method: http.MethodDelete, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return errors.Wrap(err, "unable to delete snapshot") + } + + return nil +} + +type StartMachineFromSnapshotInput struct { + MachineID string + Name string +} + +func (c *SnapshotsClient) StartMachine(ctx context.Context, input *StartMachineFromSnapshotInput) error { + fullPath := path.Join("/", c.client.AccountName, "machines", input.MachineID, "snapshots", input.Name) + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + } + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return errors.Wrap(err, "unable to start machine") + } + + return nil +} + +type CreateSnapshotInput struct { + MachineID string + Name string +} + +func (c *SnapshotsClient) Create(ctx context.Context, input *CreateSnapshotInput) (*Snapshot, error) { + fullPath := path.Join("/", c.client.AccountName, "machines", input.MachineID, "snapshots") + + data := make(map[string]interface{}) + data["name"] = input.Name + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Body: data, + } + + respReader, err := c.client.ExecuteRequest(ctx, reqInputs) + if respReader != nil { + defer respReader.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to create snapshot") + } + + var result *Snapshot + decoder := json.NewDecoder(respReader) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode create snapshot response") + } + + return result, nil +} diff --git a/vendor/github.com/joyent/triton-go/compute/volumes.go b/vendor/github.com/joyent/triton-go/compute/volumes.go new file mode 100644 index 000000000..af858061f --- /dev/null +++ b/vendor/github.com/joyent/triton-go/compute/volumes.go @@ -0,0 +1,217 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package compute + +import ( + "context" + "encoding/json" + "net/http" + "net/url" + "path" + + "github.com/joyent/triton-go/client" + "github.com/pkg/errors" +) + +type VolumesClient struct { + client *client.Client +} + +type Volume struct { + ID string `json:"id"` + Name string `json:"name"` + Owner string `json:"owner_uuid"` + Type string `json:"type"` + FileSystemPath string `json:"filesystem_path"` + Size int64 `json:"size"` + State string `json:"state"` + Networks []string `json:"networks"` + Refs []string `json:"refs"` +} + +type ListVolumesInput struct { + Name string + Size string + State string + Type string +} + +func (c *VolumesClient) List(ctx context.Context, input *ListVolumesInput) ([]*Volume, error) { + fullPath := path.Join("/", c.client.AccountName, "volumes") + + query := &url.Values{} + if input.Name != "" { + query.Set("name", input.Name) + } + if input.Size != "" { + query.Set("size", input.Size) + } + if input.State != "" { + query.Set("state", input.State) + } + if input.Type != "" { + query.Set("type", input.Type) + } + + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + Query: query, + } + resp, err := c.client.ExecuteRequest(ctx, reqInputs) + if resp != nil { + defer resp.Close() + } + if err != nil { + return nil, errors.Wrap(err, "unable to list volumes") + } + + var result []*Volume + decoder := json.NewDecoder(resp) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode list volumes response") + } + + return result, nil +} + +type CreateVolumeInput struct { + Name string + Size int64 + Networks []string + Type string +} + +func (input *CreateVolumeInput) toAPI() map[string]interface{} { + result := make(map[string]interface{}, 0) + + if input.Name != "" { + result["name"] = input.Name + } + + if input.Size != 0 { + result["size"] = input.Size + } + + if input.Type != "" { + result["type"] = input.Type + } + + if len(input.Networks) > 0 { + result["networks"] = input.Networks + } + + return result +} + +func (c *VolumesClient) Create(ctx context.Context, input *CreateVolumeInput) (*Volume, error) { + fullPath := path.Join("/", c.client.AccountName, "volumes") + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Body: input.toAPI(), + } + resp, err := c.client.ExecuteRequest(ctx, reqInputs) + if err != nil { + return nil, errors.Wrap(err, "unable to create volume") + } + if resp != nil { + defer resp.Close() + } + + var result *Volume + decoder := json.NewDecoder(resp) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode create volume response") + } + + return result, nil +} + +type DeleteVolumeInput struct { + ID string +} + +func (c *VolumesClient) Delete(ctx context.Context, input *DeleteVolumeInput) error { + fullPath := path.Join("/", c.client.AccountName, "volumes", input.ID) + reqInputs := client.RequestInput{ + Method: http.MethodDelete, + Path: fullPath, + } + resp, err := c.client.ExecuteRequestRaw(ctx, reqInputs) + if err != nil { + return errors.Wrap(err, "unable to delete volume") + } + if resp == nil { + return errors.Wrap(err, "unable to delete volume") + } + if resp.Body != nil { + defer resp.Body.Close() + } + if resp.StatusCode == http.StatusNotFound || resp.StatusCode == http.StatusGone { + return nil + } + + return nil +} + +type GetVolumeInput struct { + ID string +} + +func (c *VolumesClient) Get(ctx context.Context, input *GetVolumeInput) (*Volume, error) { + fullPath := path.Join("/", c.client.AccountName, "volumes", input.ID) + reqInputs := client.RequestInput{ + Method: http.MethodGet, + Path: fullPath, + } + resp, err := c.client.ExecuteRequestRaw(ctx, reqInputs) + if err != nil { + return nil, errors.Wrap(err, "unable to get volume") + } + if resp == nil { + return nil, errors.Wrap(err, "unable to get volume") + } + if resp.Body != nil { + defer resp.Body.Close() + } + + var result *Volume + decoder := json.NewDecoder(resp.Body) + if err = decoder.Decode(&result); err != nil { + return nil, errors.Wrap(err, "unable to decode get volume volume") + } + + return result, nil +} + +type UpdateVolumeInput struct { + ID string `json:"-"` + Name string `json:"name"` +} + +func (c *VolumesClient) Update(ctx context.Context, input *UpdateVolumeInput) error { + fullPath := path.Join("/", c.client.AccountName, "volumes", input.ID) + + reqInputs := client.RequestInput{ + Method: http.MethodPost, + Path: fullPath, + Body: input, + } + resp, err := c.client.ExecuteRequest(ctx, reqInputs) + if err != nil { + return errors.Wrap(err, "unable to update volume") + } + if resp != nil { + defer resp.Close() + } + + return nil +} diff --git a/vendor/github.com/joyent/triton-go/errors/errors.go b/vendor/github.com/joyent/triton-go/errors/errors.go new file mode 100644 index 000000000..8f2719738 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/errors/errors.go @@ -0,0 +1,297 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package errors + +import ( + "fmt" + "net/http" + "strings" + + "github.com/pkg/errors" +) + +// APIError represents an error code and message along with +// the status code of the HTTP request which resulted in the error +// message. Error codes used by the Triton API are listed at +// https://apidocs.joyent.com/cloudapi/#cloudapi-http-responses +// Error codes used by the Manta API are listed at +// https://apidocs.joyent.com/manta/api.html#errors +type APIError struct { + StatusCode int + Code string `json:"code"` + Message string `json:"message"` +} + +// Error implements interface Error on the APIError type. +func (e APIError) Error() string { + return strings.Trim(fmt.Sprintf("%+q", e.Code), `"`) + ": " + strings.Trim(fmt.Sprintf("%+q", e.Message), `"`) +} + +// ClientError represents an error code and message returned +// when connecting to the triton-go client +type ClientError struct { + StatusCode int + Code string `json:"code"` + Message string `json:"message"` +} + +// Error implements interface Error on the ClientError type. +func (e ClientError) Error() string { + return strings.Trim(fmt.Sprintf("%+q", e.Code), `"`) + ": " + strings.Trim(fmt.Sprintf("%+q", e.Message), `"`) +} + +func IsAuthSchemeError(err error) bool { + return IsSpecificError(err, "AuthScheme") +} + +func IsAuthorizationError(err error) bool { + return IsSpecificError(err, "Authorization") +} + +func IsBadRequestError(err error) bool { + return IsSpecificError(err, "BadRequest") +} + +func IsChecksumError(err error) bool { + return IsSpecificError(err, "Checksum") +} + +func IsConcurrentRequestError(err error) bool { + return IsSpecificError(err, "ConcurrentRequest") +} + +func IsContentLengthError(err error) bool { + return IsSpecificError(err, "ContentLength") +} + +func IsContentMD5MismatchError(err error) bool { + return IsSpecificError(err, "ContentMD5Mismatch") +} + +func IsEntityExistsError(err error) bool { + return IsSpecificError(err, "EntityExists") +} + +func IsInvalidArgumentError(err error) bool { + return IsSpecificError(err, "InvalidArgument") +} + +func IsInvalidAuthTokenError(err error) bool { + return IsSpecificError(err, "InvalidAuthToken") +} + +func IsInvalidCredentialsError(err error) bool { + return IsSpecificError(err, "InvalidCredentials") +} + +func IsInvalidDurabilityLevelError(err error) bool { + return IsSpecificError(err, "InvalidDurabilityLevel") +} + +func IsInvalidKeyIdError(err error) bool { + return IsSpecificError(err, "InvalidKeyId") +} + +func IsInvalidJobError(err error) bool { + return IsSpecificError(err, "InvalidJob") +} + +func IsInvalidLinkError(err error) bool { + return IsSpecificError(err, "InvalidLink") +} + +func IsInvalidLimitError(err error) bool { + return IsSpecificError(err, "InvalidLimit") +} + +func IsInvalidSignatureError(err error) bool { + return IsSpecificError(err, "InvalidSignature") +} + +func IsInvalidUpdateError(err error) bool { + return IsSpecificError(err, "InvalidUpdate") +} + +func IsDirectoryDoesNotExistError(err error) bool { + return IsSpecificError(err, "DirectoryDoesNotExist") +} + +func IsDirectoryExistsError(err error) bool { + return IsSpecificError(err, "DirectoryExists") +} + +func IsDirectoryNotEmptyError(err error) bool { + return IsSpecificError(err, "DirectoryNotEmpty") +} + +func IsDirectoryOperationError(err error) bool { + return IsSpecificError(err, "DirectoryOperation") +} + +func IsInternalError(err error) bool { + return IsSpecificError(err, "Internal") +} + +func IsJobNotFoundError(err error) bool { + return IsSpecificError(err, "JobNotFound") +} + +func IsJobStateError(err error) bool { + return IsSpecificError(err, "JobState") +} + +func IsKeyDoesNotExistError(err error) bool { + return IsSpecificError(err, "KeyDoesNotExist") +} + +func IsNotAcceptableError(err error) bool { + return IsSpecificError(err, "NotAcceptable") +} + +func IsNotEnoughSpaceError(err error) bool { + return IsSpecificError(err, "NotEnoughSpace") +} + +func IsLinkNotFoundError(err error) bool { + return IsSpecificError(err, "LinkNotFound") +} + +func IsLinkNotObjectError(err error) bool { + return IsSpecificError(err, "LinkNotObject") +} + +func IsLinkRequiredError(err error) bool { + return IsSpecificError(err, "LinkRequired") +} + +func IsParentNotDirectoryError(err error) bool { + return IsSpecificError(err, "ParentNotDirectory") +} + +func IsPreconditionFailedError(err error) bool { + return IsSpecificError(err, "PreconditionFailed") +} + +func IsPreSignedRequestError(err error) bool { + return IsSpecificError(err, "PreSignedRequest") +} + +func IsRequestEntityTooLargeError(err error) bool { + return IsSpecificError(err, "RequestEntityTooLarge") +} + +func IsResourceNotFoundError(err error) bool { + return IsSpecificError(err, "ResourceNotFound") +} + +func IsRootDirectoryError(err error) bool { + return IsSpecificError(err, "RootDirectory") +} + +func IsServiceUnavailableError(err error) bool { + return IsSpecificError(err, "ServiceUnavailable") +} + +func IsSSLRequiredError(err error) bool { + return IsSpecificError(err, "SSLRequired") +} + +func IsUploadTimeoutError(err error) bool { + return IsSpecificError(err, "UploadTimeout") +} + +func IsUserDoesNotExistError(err error) bool { + return IsSpecificError(err, "UserDoesNotExist") +} + +func IsBadRequest(err error) bool { + return IsSpecificError(err, "BadRequest") +} + +func IsInUseError(err error) bool { + return IsSpecificError(err, "InUseError") +} + +func IsInvalidArgument(err error) bool { + return IsSpecificError(err, "InvalidArgument") +} + +func IsInvalidCredentials(err error) bool { + return IsSpecificError(err, "InvalidCredentials") +} + +func IsInvalidHeader(err error) bool { + return IsSpecificError(err, "InvalidHeader") +} + +func IsInvalidVersion(err error) bool { + return IsSpecificError(err, "InvalidVersion") +} + +func IsMissingParameter(err error) bool { + return IsSpecificError(err, "MissingParameter") +} + +func IsNotAuthorized(err error) bool { + return IsSpecificError(err, "NotAuthorized") +} + +func IsRequestThrottled(err error) bool { + return IsSpecificError(err, "RequestThrottled") +} + +func IsRequestTooLarge(err error) bool { + return IsSpecificError(err, "RequestTooLarge") +} + +func IsRequestMoved(err error) bool { + return IsSpecificError(err, "RequestMoved") +} + +func IsResourceFound(err error) bool { + return IsSpecificError(err, "ResourceFound") +} + +func IsResourceNotFound(err error) bool { + return IsSpecificError(err, "ResourceNotFound") +} + +func IsUnknownError(err error) bool { + return IsSpecificError(err, "UnknownError") +} + +func IsEmptyResponse(err error) bool { + return IsSpecificError(err, "EmptyResponse") +} + +func IsStatusNotFoundCode(err error) bool { + return IsSpecificStatusCode(err, http.StatusNotFound) +} + +func IsSpecificError(myError error, errorCode string) bool { + switch err := errors.Cause(myError).(type) { + case *APIError: + if err.Code == errorCode { + return true + } + } + + return false +} + +func IsSpecificStatusCode(myError error, statusCode int) bool { + switch err := errors.Cause(myError).(type) { + case *APIError: + if err.StatusCode == statusCode { + return true + } + } + + return false +} diff --git a/vendor/github.com/joyent/triton-go/triton.go b/vendor/github.com/joyent/triton-go/triton.go new file mode 100644 index 000000000..f499e9a65 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/triton.go @@ -0,0 +1,46 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package triton + +import ( + "os" + + "github.com/joyent/triton-go/authentication" +) + +// Universal package used for defining configuration used across all client +// constructors. + +// ClientConfig is a placeholder/input struct around the behavior of configuring +// a client constructor through the implementation's runtime environment +// (SDC/MANTA env vars). +type ClientConfig struct { + TritonURL string + MantaURL string + AccountName string + Username string + Signers []authentication.Signer +} + +var envPrefixes = []string{"TRITON", "SDC"} + +// GetEnv looks up environment variables using the preferred "TRITON" prefix, +// but falls back to the retired "SDC" prefix. For example, looking up "USER" +// will search for "TRITON_USER" followed by "SDC_USER". If the environment +// variable is not set, an empty string is returned. GetEnv() is used to aid in +// the transition and deprecation of the "SDC_*" environment variables. +func GetEnv(name string) string { + for _, prefix := range envPrefixes { + if val, found := os.LookupEnv(prefix + "_" + name); found { + return val + } + } + + return "" +} diff --git a/vendor/github.com/joyent/triton-go/version.go b/vendor/github.com/joyent/triton-go/version.go new file mode 100644 index 000000000..e3dc026e9 --- /dev/null +++ b/vendor/github.com/joyent/triton-go/version.go @@ -0,0 +1,42 @@ +// +// Copyright (c) 2018, Joyent, Inc. All rights reserved. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +package triton + +import ( + "fmt" + "runtime" +) + +// Version represents main version number of the current release +// of the Triton-go SDK. +const Version = "1.4.0" + +// Prerelease adds a pre-release marker to the version. +// +// If this is "" (empty string) then it means that it is a final release. +// Otherwise, this is a pre-release such as "dev" (in development), "beta", +// "rc1", etc. +var Prerelease = "dev" + +// UserAgent returns a Triton-go characteristic string that allows the +// network protocol peers to identify the version, release and runtime +// of the Triton-go client from which the requests originate. +func UserAgent() string { + if Prerelease != "" { + return fmt.Sprintf("triton-go/%s-%s (%s-%s; %s)", Version, Prerelease, + runtime.GOARCH, runtime.GOOS, runtime.Version()) + } + + return fmt.Sprintf("triton-go/%s (%s-%s; %s)", Version, runtime.GOARCH, + runtime.GOOS, runtime.Version()) +} + +// CloudAPIMajorVersion specifies the CloudAPI version compatibility +// for current release of the Triton-go SDK. +const CloudAPIMajorVersion = "8" diff --git a/vendor/github.com/matttproud/golang_protobuf_extensions/LICENSE b/vendor/github.com/matttproud/golang_protobuf_extensions/LICENSE new file mode 100644 index 000000000..8dada3eda --- /dev/null +++ b/vendor/github.com/matttproud/golang_protobuf_extensions/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/matttproud/golang_protobuf_extensions/NOTICE b/vendor/github.com/matttproud/golang_protobuf_extensions/NOTICE new file mode 100644 index 000000000..5d8cb5b72 --- /dev/null +++ b/vendor/github.com/matttproud/golang_protobuf_extensions/NOTICE @@ -0,0 +1 @@ +Copyright 2012 Matt T. Proud (matt.proud@gmail.com) diff --git a/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/Makefile b/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/Makefile new file mode 100644 index 000000000..81be21437 --- /dev/null +++ b/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/Makefile @@ -0,0 +1,7 @@ +all: + +cover: + go test -cover -v -coverprofile=cover.dat ./... + go tool cover -func cover.dat + +.PHONY: cover diff --git a/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/decode.go b/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/decode.go new file mode 100644 index 000000000..258c0636a --- /dev/null +++ b/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/decode.go @@ -0,0 +1,75 @@ +// Copyright 2013 Matt T. Proud +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package pbutil + +import ( + "encoding/binary" + "errors" + "io" + + "github.com/golang/protobuf/proto" +) + +var errInvalidVarint = errors.New("invalid varint32 encountered") + +// ReadDelimited decodes a message from the provided length-delimited stream, +// where the length is encoded as 32-bit varint prefix to the message body. +// It returns the total number of bytes read and any applicable error. This is +// roughly equivalent to the companion Java API's +// MessageLite#parseDelimitedFrom. As per the reader contract, this function +// calls r.Read repeatedly as required until exactly one message including its +// prefix is read and decoded (or an error has occurred). The function never +// reads more bytes from the stream than required. The function never returns +// an error if a message has been read and decoded correctly, even if the end +// of the stream has been reached in doing so. In that case, any subsequent +// calls return (0, io.EOF). +func ReadDelimited(r io.Reader, m proto.Message) (n int, err error) { + // Per AbstractParser#parsePartialDelimitedFrom with + // CodedInputStream#readRawVarint32. + var headerBuf [binary.MaxVarintLen32]byte + var bytesRead, varIntBytes int + var messageLength uint64 + for varIntBytes == 0 { // i.e. no varint has been decoded yet. + if bytesRead >= len(headerBuf) { + return bytesRead, errInvalidVarint + } + // We have to read byte by byte here to avoid reading more bytes + // than required. Each read byte is appended to what we have + // read before. + newBytesRead, err := r.Read(headerBuf[bytesRead : bytesRead+1]) + if newBytesRead == 0 { + if err != nil { + return bytesRead, err + } + // A Reader should not return (0, nil), but if it does, + // it should be treated as no-op (according to the + // Reader contract). So let's go on... + continue + } + bytesRead += newBytesRead + // Now present everything read so far to the varint decoder and + // see if a varint can be decoded already. + messageLength, varIntBytes = proto.DecodeVarint(headerBuf[:bytesRead]) + } + + messageBuf := make([]byte, messageLength) + newBytesRead, err := io.ReadFull(r, messageBuf) + bytesRead += newBytesRead + if err != nil { + return bytesRead, err + } + + return bytesRead, proto.Unmarshal(messageBuf, m) +} diff --git a/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/doc.go b/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/doc.go new file mode 100644 index 000000000..c318385cb --- /dev/null +++ b/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/doc.go @@ -0,0 +1,16 @@ +// Copyright 2013 Matt T. Proud +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package pbutil provides record length-delimited Protocol Buffer streaming. +package pbutil diff --git a/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/encode.go b/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/encode.go new file mode 100644 index 000000000..8fb59ad22 --- /dev/null +++ b/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/encode.go @@ -0,0 +1,46 @@ +// Copyright 2013 Matt T. Proud +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package pbutil + +import ( + "encoding/binary" + "io" + + "github.com/golang/protobuf/proto" +) + +// WriteDelimited encodes and dumps a message to the provided writer prefixed +// with a 32-bit varint indicating the length of the encoded message, producing +// a length-delimited record stream, which can be used to chain together +// encoded messages of the same type together in a file. It returns the total +// number of bytes written and any applicable error. This is roughly +// equivalent to the companion Java API's MessageLite#writeDelimitedTo. +func WriteDelimited(w io.Writer, m proto.Message) (n int, err error) { + buffer, err := proto.Marshal(m) + if err != nil { + return 0, err + } + + var buf [binary.MaxVarintLen32]byte + encodedLength := binary.PutUvarint(buf[:], uint64(len(buffer))) + + sync, err := w.Write(buf[:encodedLength]) + if err != nil { + return sync, err + } + + n, err = w.Write(buffer) + return n + sync, err +} diff --git a/vendor/github.com/miekg/dns/client.go b/vendor/github.com/miekg/dns/client.go index 856b1698d..6aa4235d1 100644 --- a/vendor/github.com/miekg/dns/client.go +++ b/vendor/github.com/miekg/dns/client.go @@ -7,8 +7,12 @@ import ( "context" "crypto/tls" "encoding/binary" + "fmt" "io" + "io/ioutil" "net" + "net/http" + "net/url" "strings" "time" ) @@ -16,13 +20,13 @@ import ( const dnsTimeout time.Duration = 2 * time.Second const tcpIdleTimeout time.Duration = 8 * time.Second +const dohMimeType = "application/dns-udpwireformat" + // A Conn represents a connection to a DNS server. type Conn struct { net.Conn // a net.Conn holding the connection UDPSize uint16 // minimum receive buffer for UDP messages TsigSecret map[string]string // secret(s) for Tsig map[], zonename must be in canonical form (lowercase, fqdn, see RFC 4034 Section 6.2) - rtt time.Duration - t time.Time tsigRequestMAC string } @@ -39,6 +43,7 @@ type Client struct { DialTimeout time.Duration // net.DialTimeout, defaults to 2 seconds, or net.Dialer.Timeout if expiring earlier - overridden by Timeout when that value is non-zero ReadTimeout time.Duration // net.Conn.SetReadTimeout value for connections, defaults to 2 seconds - overridden by Timeout when that value is non-zero WriteTimeout time.Duration // net.Conn.SetWriteTimeout value for connections, defaults to 2 seconds - overridden by Timeout when that value is non-zero + HTTPClient *http.Client // The http.Client to use for DNS-over-HTTPS TsigSecret map[string]string // secret(s) for Tsig map[], zonename must be in canonical form (lowercase, fqdn, see RFC 4034 Section 6.2) SingleInflight bool // if true suppress multiple outstanding queries for the same Qname, Qtype and Qclass group singleflight @@ -136,6 +141,11 @@ func (c *Client) Dial(address string) (conn *Conn, err error) { // attribute appropriately func (c *Client) Exchange(m *Msg, address string) (r *Msg, rtt time.Duration, err error) { if !c.SingleInflight { + if c.Net == "https" { + // TODO(tmthrgd): pipe timeouts into exchangeDOH + return c.exchangeDOH(context.TODO(), m, address) + } + return c.exchange(m, address) } @@ -148,6 +158,11 @@ func (c *Client) Exchange(m *Msg, address string) (r *Msg, rtt time.Duration, er cl = cl1 } r, rtt, err, shared := c.group.Do(m.Question[0].Name+t+cl, func() (*Msg, time.Duration, error) { + if c.Net == "https" { + // TODO(tmthrgd): pipe timeouts into exchangeDOH + return c.exchangeDOH(context.TODO(), m, address) + } + return c.exchange(m, address) }) if r != nil && shared { @@ -177,8 +192,9 @@ func (c *Client) exchange(m *Msg, a string) (r *Msg, rtt time.Duration, err erro } co.TsigSecret = c.TsigSecret + t := time.Now() // write with the appropriate write timeout - co.SetWriteDeadline(time.Now().Add(c.getTimeoutForRequest(c.writeTimeout()))) + co.SetWriteDeadline(t.Add(c.getTimeoutForRequest(c.writeTimeout()))) if err = co.WriteMsg(m); err != nil { return nil, 0, err } @@ -188,7 +204,79 @@ func (c *Client) exchange(m *Msg, a string) (r *Msg, rtt time.Duration, err erro if err == nil && r.Id != m.Id { err = ErrId } - return r, co.rtt, err + rtt = time.Since(t) + return r, rtt, err +} + +func (c *Client) exchangeDOH(ctx context.Context, m *Msg, a string) (r *Msg, rtt time.Duration, err error) { + p, err := m.Pack() + if err != nil { + return nil, 0, err + } + + // TODO(tmthrgd): Allow the path to be customised? + u := &url.URL{ + Scheme: "https", + Host: a, + Path: "/.well-known/dns-query", + } + if u.Port() == "443" { + u.Host = u.Hostname() + } + + req, err := http.NewRequest(http.MethodPost, u.String(), bytes.NewReader(p)) + if err != nil { + return nil, 0, err + } + + req.Header.Set("Content-Type", dohMimeType) + req.Header.Set("Accept", dohMimeType) + + t := time.Now() + + hc := http.DefaultClient + if c.HTTPClient != nil { + hc = c.HTTPClient + } + + if ctx != context.Background() && ctx != context.TODO() { + req = req.WithContext(ctx) + } + + resp, err := hc.Do(req) + if err != nil { + return nil, 0, err + } + defer closeHTTPBody(resp.Body) + + if resp.StatusCode != http.StatusOK { + return nil, 0, fmt.Errorf("dns: server returned HTTP %d error: %q", resp.StatusCode, resp.Status) + } + + if ct := resp.Header.Get("Content-Type"); ct != dohMimeType { + return nil, 0, fmt.Errorf("dns: unexpected Content-Type %q; expected %q", ct, dohMimeType) + } + + p, err = ioutil.ReadAll(resp.Body) + if err != nil { + return nil, 0, err + } + + rtt = time.Since(t) + + r = new(Msg) + if err := r.Unpack(p); err != nil { + return r, 0, err + } + + // TODO: TSIG? Is it even supported over DoH? + + return r, rtt, nil +} + +func closeHTTPBody(r io.ReadCloser) error { + io.Copy(ioutil.Discard, io.LimitReader(r, 8<<20)) + return r.Close() } // ReadMsg reads a message from the connection co. @@ -240,7 +328,6 @@ func (co *Conn) ReadMsgHeader(hdr *Header) ([]byte, error) { } p = make([]byte, l) n, err = tcpRead(r, p) - co.rtt = time.Since(co.t) default: if co.UDPSize > MinMsgSize { p = make([]byte, co.UDPSize) @@ -248,7 +335,6 @@ func (co *Conn) ReadMsgHeader(hdr *Header) ([]byte, error) { p = make([]byte, MinMsgSize) } n, err = co.Read(p) - co.rtt = time.Since(co.t) } if err != nil { @@ -361,7 +447,6 @@ func (co *Conn) WriteMsg(m *Msg) (err error) { if err != nil { return err } - co.t = time.Now() if _, err = co.Write(out); err != nil { return err } @@ -493,6 +578,10 @@ func DialTimeoutWithTLS(network, address string, tlsConfig *tls.Config, timeout // context, if present. If there is both a context deadline and a configured // timeout on the client, the earliest of the two takes effect. func (c *Client) ExchangeContext(ctx context.Context, m *Msg, a string) (r *Msg, rtt time.Duration, err error) { + if !c.SingleInflight && c.Net == "https" { + return c.exchangeDOH(ctx, m, a) + } + var timeout time.Duration if deadline, ok := ctx.Deadline(); !ok { timeout = 0 @@ -501,6 +590,7 @@ func (c *Client) ExchangeContext(ctx context.Context, m *Msg, a string) (r *Msg, } // not passing the context to the underlying calls, as the API does not support // context. For timeouts you should set up Client.Dialer and call Client.Exchange. + // TODO(tmthrgd): this is a race condition c.Dialer = &net.Dialer{Timeout: timeout} return c.Exchange(m, a) } diff --git a/vendor/github.com/miekg/dns/clientconfig.go b/vendor/github.com/miekg/dns/clientconfig.go index a606ef696..f13cfa30c 100644 --- a/vendor/github.com/miekg/dns/clientconfig.go +++ b/vendor/github.com/miekg/dns/clientconfig.go @@ -91,7 +91,7 @@ func ClientConfigFromReader(resolvconf io.Reader) (*ClientConfig, error) { n = 1 } c.Timeout = n - case len(s) >= 8 && s[:9] == "attempts:": + case len(s) >= 9 && s[:9] == "attempts:": n, _ := strconv.Atoi(s[9:]) if n < 1 { n = 1 diff --git a/vendor/github.com/miekg/dns/compress_generate.go b/vendor/github.com/miekg/dns/compress_generate.go index 87fb36f68..9a136c414 100644 --- a/vendor/github.com/miekg/dns/compress_generate.go +++ b/vendor/github.com/miekg/dns/compress_generate.go @@ -101,7 +101,8 @@ Names: // compressionLenHelperType - all types that have domain-name/cdomain-name can be used for compressing names - fmt.Fprint(b, "func compressionLenHelperType(c map[string]int, r RR) {\n") + fmt.Fprint(b, "func compressionLenHelperType(c map[string]int, r RR, initLen int) int {\n") + fmt.Fprint(b, "currentLen := initLen\n") fmt.Fprint(b, "switch x := r.(type) {\n") for _, name := range domainTypes { o := scope.Lookup(name) @@ -109,7 +110,10 @@ Names: fmt.Fprintf(b, "case *%s:\n", name) for i := 1; i < st.NumFields(); i++ { - out := func(s string) { fmt.Fprintf(b, "compressionLenHelper(c, x.%s)\n", st.Field(i).Name()) } + out := func(s string) { + fmt.Fprintf(b, "currentLen -= len(x.%s) + 1\n", st.Field(i).Name()) + fmt.Fprintf(b, "currentLen += compressionLenHelper(c, x.%s, currentLen)\n", st.Field(i).Name()) + } if _, ok := st.Field(i).Type().(*types.Slice); ok { switch st.Tag(i) { @@ -118,8 +122,12 @@ Names: case `dns:"cdomain-name"`: // For HIP we need to slice over the elements in this slice. fmt.Fprintf(b, `for i := range x.%s { - compressionLenHelper(c, x.%s[i]) - } + currentLen -= len(x.%s[i]) + 1 +} +`, st.Field(i).Name(), st.Field(i).Name()) + fmt.Fprintf(b, `for i := range x.%s { + currentLen += compressionLenHelper(c, x.%s[i], currentLen) +} `, st.Field(i).Name(), st.Field(i).Name()) } continue @@ -133,11 +141,11 @@ Names: } } } - fmt.Fprintln(b, "}\n}\n\n") + fmt.Fprintln(b, "}\nreturn currentLen - initLen\n}\n\n") // compressionLenSearchType - search cdomain-tags types for compressible names. - fmt.Fprint(b, "func compressionLenSearchType(c map[string]int, r RR) (int, bool) {\n") + fmt.Fprint(b, "func compressionLenSearchType(c map[string]int, r RR) (int, bool, int) {\n") fmt.Fprint(b, "switch x := r.(type) {\n") for _, name := range cdomainTypes { o := scope.Lookup(name) @@ -147,7 +155,7 @@ Names: j := 1 for i := 1; i < st.NumFields(); i++ { out := func(s string, j int) { - fmt.Fprintf(b, "k%d, ok%d := compressionLenSearch(c, x.%s)\n", j, j, st.Field(i).Name()) + fmt.Fprintf(b, "k%d, ok%d, sz%d := compressionLenSearch(c, x.%s)\n", j, j, j, st.Field(i).Name()) } // There are no slice types with names that can be compressed. @@ -160,13 +168,15 @@ Names: } k := "k1" ok := "ok1" + sz := "sz1" for i := 2; i < j; i++ { k += fmt.Sprintf(" + k%d", i) ok += fmt.Sprintf(" && ok%d", i) + sz += fmt.Sprintf(" + sz%d", i) } - fmt.Fprintf(b, "return %s, %s\n", k, ok) + fmt.Fprintf(b, "return %s, %s, %s\n", k, ok, sz) } - fmt.Fprintln(b, "}\nreturn 0, false\n}\n\n") + fmt.Fprintln(b, "}\nreturn 0, false, 0\n}\n\n") // gofmt res, err := format.Source(b.Bytes()) diff --git a/vendor/github.com/miekg/dns/dns.go b/vendor/github.com/miekg/dns/dns.go index 5133eac72..e7557f51a 100644 --- a/vendor/github.com/miekg/dns/dns.go +++ b/vendor/github.com/miekg/dns/dns.go @@ -55,16 +55,6 @@ func (h *RR_Header) Header() *RR_Header { return h } // Just to implement the RR interface. func (h *RR_Header) copy() RR { return nil } -func (h *RR_Header) copyHeader() *RR_Header { - r := new(RR_Header) - r.Name = h.Name - r.Rrtype = h.Rrtype - r.Class = h.Class - r.Ttl = h.Ttl - r.Rdlength = h.Rdlength - return r -} - func (h *RR_Header) String() string { var s string diff --git a/vendor/github.com/miekg/dns/dnssec.go b/vendor/github.com/miekg/dns/dnssec.go index ac9fdd45e..478cb1e90 100644 --- a/vendor/github.com/miekg/dns/dnssec.go +++ b/vendor/github.com/miekg/dns/dnssec.go @@ -73,6 +73,7 @@ var StringToAlgorithm = reverseInt8(AlgorithmToString) // AlgorithmToHash is a map of algorithm crypto hash IDs to crypto.Hash's. var AlgorithmToHash = map[uint8]crypto.Hash{ RSAMD5: crypto.MD5, // Deprecated in RFC 6725 + DSA: crypto.SHA1, RSASHA1: crypto.SHA1, RSASHA1NSEC3SHA1: crypto.SHA1, RSASHA256: crypto.SHA256, @@ -239,7 +240,7 @@ func (k *DNSKEY) ToDS(h uint8) *DS { // ToCDNSKEY converts a DNSKEY record to a CDNSKEY record. func (k *DNSKEY) ToCDNSKEY() *CDNSKEY { c := &CDNSKEY{DNSKEY: *k} - c.Hdr = *k.Hdr.copyHeader() + c.Hdr = k.Hdr c.Hdr.Rrtype = TypeCDNSKEY return c } @@ -247,7 +248,7 @@ func (k *DNSKEY) ToCDNSKEY() *CDNSKEY { // ToCDS converts a DS record to a CDS record. func (d *DS) ToCDS() *CDS { c := &CDS{DS: *d} - c.Hdr = *d.Hdr.copyHeader() + c.Hdr = d.Hdr c.Hdr.Rrtype = TypeCDS return c } diff --git a/vendor/github.com/miekg/dns/doc.go b/vendor/github.com/miekg/dns/doc.go index 1d8114744..0389d7248 100644 --- a/vendor/github.com/miekg/dns/doc.go +++ b/vendor/github.com/miekg/dns/doc.go @@ -73,11 +73,11 @@ and port to use for the connection: Port: 12345, Zone: "", } - d := net.Dialer{ + c.Dialer := &net.Dialer{ Timeout: 200 * time.Millisecond, LocalAddr: &laddr, } - in, rtt, err := c.ExchangeWithDialer(&d, m1, "8.8.8.8:53") + in, rtt, err := c.Exchange(m1, "8.8.8.8:53") If these "advanced" features are not needed, a simple UDP query can be sent, with: diff --git a/vendor/github.com/miekg/dns/msg.go b/vendor/github.com/miekg/dns/msg.go index 975dde781..dcd3b6a5e 100644 --- a/vendor/github.com/miekg/dns/msg.go +++ b/vendor/github.com/miekg/dns/msg.go @@ -595,6 +595,13 @@ func UnpackRR(msg []byte, off int) (rr RR, off1 int, err error) { if err != nil { return nil, len(msg), err } + + return UnpackRRWithHeader(h, msg, off) +} + +// UnpackRRWithHeader unpacks the record type specific payload given an existing +// RR_Header. +func UnpackRRWithHeader(h RR_Header, msg []byte, off int) (rr RR, off1 int, err error) { end := off + int(h.Rdlength) if fn, known := typeToUnpack[h.Rrtype]; !known { @@ -684,18 +691,20 @@ func (dns *Msg) Pack() (msg []byte, err error) { return dns.PackBuffer(nil) } -// PackBuffer packs a Msg, using the given buffer buf. If buf is too small -// a new buffer is allocated. +// PackBuffer packs a Msg, using the given buffer buf. If buf is too small a new buffer is allocated. func (dns *Msg) PackBuffer(buf []byte) (msg []byte, err error) { - // We use a similar function in tsig.go's stripTsig. - var ( - dh Header - compression map[string]int - ) - + var compression map[string]int if dns.Compress { - compression = make(map[string]int) // Compression pointer mappings + compression = make(map[string]int) // Compression pointer mappings. } + return dns.packBufferWithCompressionMap(buf, compression) +} + +// packBufferWithCompressionMap packs a Msg, using the given buffer buf. +func (dns *Msg) packBufferWithCompressionMap(buf []byte, compression map[string]int) (msg []byte, err error) { + // We use a similar function in tsig.go's stripTsig. + + var dh Header if dns.Rcode < 0 || dns.Rcode > 0xFFF { return nil, ErrRcode @@ -707,12 +716,11 @@ func (dns *Msg) PackBuffer(buf []byte) (msg []byte, err error) { return nil, ErrExtendedRcode } opt.SetExtendedRcode(uint8(dns.Rcode >> 4)) - dns.Rcode &= 0xF } // Convert convenient Msg into wire-like Header. dh.Id = dns.Id - dh.Bits = uint16(dns.Opcode)<<11 | uint16(dns.Rcode) + dh.Bits = uint16(dns.Opcode)<<11 | uint16(dns.Rcode&0xF) if dns.Response { dh.Bits |= _QR } @@ -915,94 +923,138 @@ func (dns *Msg) String() string { // than packing it, measuring the size and discarding the buffer. func (dns *Msg) Len() int { return compressedLen(dns, dns.Compress) } +func compressedLenWithCompressionMap(dns *Msg, compression map[string]int) int { + l := 12 // Message header is always 12 bytes + for _, r := range dns.Question { + compressionLenHelper(compression, r.Name, l) + l += r.len() + } + l += compressionLenSlice(l, compression, dns.Answer) + l += compressionLenSlice(l, compression, dns.Ns) + l += compressionLenSlice(l, compression, dns.Extra) + return l +} + // compressedLen returns the message length when in compressed wire format // when compress is true, otherwise the uncompressed length is returned. func compressedLen(dns *Msg, compress bool) int { // We always return one more than needed. - l := 12 // Message header is always 12 bytes if compress { compression := map[string]int{} - for _, r := range dns.Question { + return compressedLenWithCompressionMap(dns, compression) + } + l := 12 // Message header is always 12 bytes + + for _, r := range dns.Question { + l += r.len() + } + for _, r := range dns.Answer { + if r != nil { l += r.len() - compressionLenHelper(compression, r.Name) - } - l += compressionLenSlice(compression, dns.Answer) - l += compressionLenSlice(compression, dns.Ns) - l += compressionLenSlice(compression, dns.Extra) - } else { - for _, r := range dns.Question { - l += r.len() - } - for _, r := range dns.Answer { - if r != nil { - l += r.len() - } - } - for _, r := range dns.Ns { - if r != nil { - l += r.len() - } - } - for _, r := range dns.Extra { - if r != nil { - l += r.len() - } } } + for _, r := range dns.Ns { + if r != nil { + l += r.len() + } + } + for _, r := range dns.Extra { + if r != nil { + l += r.len() + } + } + return l } -func compressionLenSlice(c map[string]int, rs []RR) int { - var l int +func compressionLenSlice(lenp int, c map[string]int, rs []RR) int { + initLen := lenp for _, r := range rs { if r == nil { continue } - l += r.len() - k, ok := compressionLenSearch(c, r.Header().Name) + // TmpLen is to track len of record at 14bits boudaries + tmpLen := lenp + + x := r.len() + // track this length, and the global length in len, while taking compression into account for both. + k, ok, _ := compressionLenSearch(c, r.Header().Name) if ok { - l += 1 - k + // Size of x is reduced by k, but we add 1 since k includes the '.' and label descriptor take 2 bytes + // so, basically x:= x - k - 1 + 2 + x += 1 - k } - compressionLenHelper(c, r.Header().Name) - k, ok = compressionLenSearchType(c, r) + + tmpLen += compressionLenHelper(c, r.Header().Name, tmpLen) + k, ok, _ = compressionLenSearchType(c, r) if ok { - l += 1 - k + x += 1 - k } - compressionLenHelperType(c, r) + lenp += x + tmpLen = lenp + tmpLen += compressionLenHelperType(c, r, tmpLen) + } - return l + return lenp - initLen } -// Put the parts of the name in the compression map. -func compressionLenHelper(c map[string]int, s string) { +// Put the parts of the name in the compression map, return the size in bytes added in payload +func compressionLenHelper(c map[string]int, s string, currentLen int) int { + if currentLen > maxCompressionOffset { + // We won't be able to add any label that could be re-used later anyway + return 0 + } + if _, ok := c[s]; ok { + return 0 + } + initLen := currentLen pref := "" + prev := s lbs := Split(s) - for j := len(lbs) - 1; j >= 0; j-- { + for j := 0; j < len(lbs); j++ { pref = s[lbs[j]:] + currentLen += len(prev) - len(pref) + prev = pref if _, ok := c[pref]; !ok { - c[pref] = len(pref) + // If first byte label is within the first 14bits, it might be re-used later + if currentLen < maxCompressionOffset { + c[pref] = currentLen + } + } else { + added := currentLen - initLen + if j > 0 { + // We added a new PTR + added += 2 + } + return added } } + return currentLen - initLen } // Look for each part in the compression map and returns its length, // keep on searching so we get the longest match. -func compressionLenSearch(c map[string]int, s string) (int, bool) { +// Will return the size of compression found, whether a match has been +// found and the size of record if added in payload +func compressionLenSearch(c map[string]int, s string) (int, bool, int) { off := 0 end := false if s == "" { // don't bork on bogus data - return 0, false + return 0, false, 0 } + fullSize := 0 for { if _, ok := c[s[off:]]; ok { - return len(s[off:]), true + return len(s[off:]), true, fullSize + off } if end { break } + // Each label descriptor takes 2 bytes, add it + fullSize += 2 off, end = NextLabel(s, off) } - return 0, false + return 0, false, fullSize + len(s) } // Copy returns a new RR which is a deep-copy of r. diff --git a/vendor/github.com/miekg/dns/privaterr.go b/vendor/github.com/miekg/dns/privaterr.go index 6b08e6e95..41989e7ae 100644 --- a/vendor/github.com/miekg/dns/privaterr.go +++ b/vendor/github.com/miekg/dns/privaterr.go @@ -56,8 +56,7 @@ func (r *PrivateRR) len() int { return r.Hdr.len() + r.Data.Len() } func (r *PrivateRR) copy() RR { // make new RR like this: rr := mkPrivateRR(r.Hdr.Rrtype) - newh := r.Hdr.copyHeader() - rr.Hdr = *newh + rr.Hdr = r.Hdr err := r.Data.Copy(rr.Data) if err != nil { diff --git a/vendor/github.com/miekg/dns/scan_rr.go b/vendor/github.com/miekg/dns/scan_rr.go index f4ccc8424..fb6f95d1d 100644 --- a/vendor/github.com/miekg/dns/scan_rr.go +++ b/vendor/github.com/miekg/dns/scan_rr.go @@ -1255,8 +1255,10 @@ func setNSEC3(h RR_Header, c chan lex, o, f string) (RR, *ParseError, string) { if len(l.token) == 0 || l.err { return nil, &ParseError{f, "bad NSEC3 Salt", l}, "" } - rr.SaltLength = uint8(len(l.token)) / 2 - rr.Salt = l.token + if l.token != "-" { + rr.SaltLength = uint8(len(l.token)) / 2 + rr.Salt = l.token + } <-c l = <-c @@ -1321,8 +1323,10 @@ func setNSEC3PARAM(h RR_Header, c chan lex, o, f string) (RR, *ParseError, strin rr.Iterations = uint16(i) <-c l = <-c - rr.SaltLength = uint8(len(l.token)) - rr.Salt = l.token + if l.token != "-" { + rr.SaltLength = uint8(len(l.token)) + rr.Salt = l.token + } return rr, nil, "" } diff --git a/vendor/github.com/miekg/dns/server.go b/vendor/github.com/miekg/dns/server.go index 685753f43..2d98f1488 100644 --- a/vendor/github.com/miekg/dns/server.go +++ b/vendor/github.com/miekg/dns/server.go @@ -9,12 +9,19 @@ import ( "io" "net" "sync" + "sync/atomic" "time" ) -// Maximum number of TCP queries before we close the socket. +// Default maximum number of TCP queries before we close the socket. const maxTCPQueries = 128 +// Interval for stop worker if no load +const idleWorkerTimeout = 10 * time.Second + +// Maximum number of workers +const maxWorkersCount = 10000 + // Handler is implemented by any value that implements ServeDNS. type Handler interface { ServeDNS(w ResponseWriter, r *Msg) @@ -43,6 +50,7 @@ type ResponseWriter interface { } type response struct { + msg []byte hijacked bool // connection has been hijacked by handler tsigStatus error tsigTimersOnly bool @@ -51,7 +59,6 @@ type response struct { udp *net.UDPConn // i/o connection if UDP was used tcp net.Conn // i/o connection if TCP was used udpSession *SessionUDP // oob data to get egress interface right - remoteAddr net.Addr // address of the client writer Writer // writer to output the raw DNS bits } @@ -296,12 +303,63 @@ type Server struct { DecorateReader DecorateReader // DecorateWriter is optional, allows customization of the process that writes raw DNS messages. DecorateWriter DecorateWriter + // Maximum number of TCP queries before we close the socket. Default is maxTCPQueries (unlimited if -1). + MaxTCPQueries int + // UDP packet or TCP connection queue + queue chan *response + // Workers count + workersCount int32 // Shutdown handling lock sync.RWMutex started bool } +func (srv *Server) worker(w *response) { + srv.serve(w) + + for { + count := atomic.LoadInt32(&srv.workersCount) + if count > maxWorkersCount { + return + } + if atomic.CompareAndSwapInt32(&srv.workersCount, count, count+1) { + break + } + } + + defer atomic.AddInt32(&srv.workersCount, -1) + + inUse := false + timeout := time.NewTimer(idleWorkerTimeout) + defer timeout.Stop() +LOOP: + for { + select { + case w, ok := <-srv.queue: + if !ok { + break LOOP + } + inUse = true + srv.serve(w) + case <-timeout.C: + if !inUse { + break LOOP + } + inUse = false + timeout.Reset(idleWorkerTimeout) + } + } +} + +func (srv *Server) spawnWorker(w *response) { + select { + case srv.queue <- w: + default: + go srv.worker(w) + } +} + // ListenAndServe starts a nameserver on the configured address in *Server. func (srv *Server) ListenAndServe() error { srv.lock.Lock() @@ -309,6 +367,7 @@ func (srv *Server) ListenAndServe() error { if srv.started { return &Error{err: "server already started"} } + addr := srv.Addr if addr == "" { addr = ":domain" @@ -316,6 +375,8 @@ func (srv *Server) ListenAndServe() error { if srv.UDPSize == 0 { srv.UDPSize = MinMsgSize } + srv.queue = make(chan *response) + defer close(srv.queue) switch srv.Net { case "tcp", "tcp4", "tcp6": a, err := net.ResolveTCPAddr(srv.Net, addr) @@ -380,8 +441,11 @@ func (srv *Server) ActivateAndServe() error { if srv.started { return &Error{err: "server already started"} } + pConn := srv.PacketConn l := srv.Listener + srv.queue = make(chan *response) + defer close(srv.queue) if pConn != nil { if srv.UDPSize == 0 { srv.UDPSize = MinMsgSize @@ -439,7 +503,6 @@ func (srv *Server) getReadTimeout() time.Duration { } // serveTCP starts a TCP listener for the server. -// Each request is handled in a separate goroutine. func (srv *Server) serveTCP(l net.Listener) error { defer l.Close() @@ -447,17 +510,6 @@ func (srv *Server) serveTCP(l net.Listener) error { srv.NotifyStartedFunc() } - reader := Reader(&defaultReader{srv}) - if srv.DecorateReader != nil { - reader = srv.DecorateReader(reader) - } - - handler := srv.Handler - if handler == nil { - handler = DefaultServeMux - } - rtimeout := srv.getReadTimeout() - // deadline is not used here for { rw, err := l.Accept() srv.lock.RLock() @@ -472,19 +524,11 @@ func (srv *Server) serveTCP(l net.Listener) error { } return err } - go func() { - m, err := reader.ReadTCP(rw, rtimeout) - if err != nil { - rw.Close() - return - } - srv.serve(rw.RemoteAddr(), handler, m, nil, nil, rw) - }() + srv.spawnWorker(&response{tsigSecret: srv.TsigSecret, tcp: rw}) } } // serveUDP starts a UDP listener for the server. -// Each request is handled in a separate goroutine. func (srv *Server) serveUDP(l *net.UDPConn) error { defer l.Close() @@ -497,10 +541,6 @@ func (srv *Server) serveUDP(l *net.UDPConn) error { reader = srv.DecorateReader(reader) } - handler := srv.Handler - if handler == nil { - handler = DefaultServeMux - } rtimeout := srv.getReadTimeout() // deadline is not used here for { @@ -520,80 +560,98 @@ func (srv *Server) serveUDP(l *net.UDPConn) error { if len(m) < headerSize { continue } - go srv.serve(s.RemoteAddr(), handler, m, l, s, nil) + srv.spawnWorker(&response{msg: m, tsigSecret: srv.TsigSecret, udp: l, udpSession: s}) } } -// Serve a new connection. -func (srv *Server) serve(a net.Addr, h Handler, m []byte, u *net.UDPConn, s *SessionUDP, t net.Conn) { - w := &response{tsigSecret: srv.TsigSecret, udp: u, tcp: t, remoteAddr: a, udpSession: s} +func (srv *Server) serve(w *response) { if srv.DecorateWriter != nil { w.writer = srv.DecorateWriter(w) } else { w.writer = w } - q := 0 // counter for the amount of TCP queries we get + if w.udp != nil { + // serve UDP + srv.serveDNS(w) + return + } reader := Reader(&defaultReader{srv}) if srv.DecorateReader != nil { reader = srv.DecorateReader(reader) } -Redo: + + defer func() { + if !w.hijacked { + w.Close() + } + }() + + idleTimeout := tcpIdleTimeout + if srv.IdleTimeout != nil { + idleTimeout = srv.IdleTimeout() + } + + timeout := srv.getReadTimeout() + + limit := srv.MaxTCPQueries + if limit == 0 { + limit = maxTCPQueries + } + + for q := 0; q < limit || limit == -1; q++ { + var err error + w.msg, err = reader.ReadTCP(w.tcp, timeout) + if err != nil { + // TODO(tmthrgd): handle error + break + } + srv.serveDNS(w) + if w.tcp == nil { + break // Close() was called + } + if w.hijacked { + break // client will call Close() themselves + } + // The first read uses the read timeout, the rest use the + // idle timeout. + timeout = idleTimeout + } +} + +func (srv *Server) serveDNS(w *response) { req := new(Msg) - err := req.Unpack(m) + err := req.Unpack(w.msg) if err != nil { // Send a FormatError back x := new(Msg) x.SetRcodeFormatError(req) w.WriteMsg(x) - goto Exit + return } if !srv.Unsafe && req.Response { - goto Exit + return } w.tsigStatus = nil if w.tsigSecret != nil { if t := req.IsTsig(); t != nil { - secret := t.Hdr.Name - if _, ok := w.tsigSecret[secret]; !ok { - w.tsigStatus = ErrKeyAlg + if secret, ok := w.tsigSecret[t.Hdr.Name]; ok { + w.tsigStatus = TsigVerify(w.msg, secret, "", false) + } else { + w.tsigStatus = ErrSecret } - w.tsigStatus = TsigVerify(m, w.tsigSecret[secret], "", false) w.tsigTimersOnly = false w.tsigRequestMAC = req.Extra[len(req.Extra)-1].(*TSIG).MAC } } - h.ServeDNS(w, req) // Writes back to the client -Exit: - if w.tcp == nil { - return - } - // TODO(miek): make this number configurable? - if q > maxTCPQueries { // close socket after this many queries - w.Close() - return + handler := srv.Handler + if handler == nil { + handler = DefaultServeMux } - if w.hijacked { - return // client calls Close() - } - if u != nil { // UDP, "close" and return - w.Close() - return - } - idleTimeout := tcpIdleTimeout - if srv.IdleTimeout != nil { - idleTimeout = srv.IdleTimeout() - } - m, err = reader.ReadTCP(w.tcp, idleTimeout) - if err == nil { - q++ - goto Redo - } - w.Close() - return + handler.ServeDNS(w, req) // Writes back to the client } func (srv *Server) readTCP(conn net.Conn, timeout time.Duration) ([]byte, error) { @@ -696,7 +754,12 @@ func (w *response) LocalAddr() net.Addr { } // RemoteAddr implements the ResponseWriter.RemoteAddr method. -func (w *response) RemoteAddr() net.Addr { return w.remoteAddr } +func (w *response) RemoteAddr() net.Addr { + if w.tcp != nil { + return w.tcp.RemoteAddr() + } + return w.udpSession.RemoteAddr() +} // TsigStatus implements the ResponseWriter.TsigStatus method. func (w *response) TsigStatus() error { return w.tsigStatus } diff --git a/vendor/github.com/miekg/dns/types_generate.go b/vendor/github.com/miekg/dns/types_generate.go index 8703cce64..b8db4f361 100644 --- a/vendor/github.com/miekg/dns/types_generate.go +++ b/vendor/github.com/miekg/dns/types_generate.go @@ -226,7 +226,7 @@ func main() { continue } fmt.Fprintf(b, "func (rr *%s) copy() RR {\n", name) - fields := []string{"*rr.Hdr.copyHeader()"} + fields := []string{"rr.Hdr"} for i := 1; i < st.NumFields(); i++ { f := st.Field(i).Name() if sl, ok := st.Field(i).Type().(*types.Slice); ok { diff --git a/vendor/github.com/miekg/dns/udp.go b/vendor/github.com/miekg/dns/udp.go index f3f31a7ac..a4826ee2f 100644 --- a/vendor/github.com/miekg/dns/udp.go +++ b/vendor/github.com/miekg/dns/udp.go @@ -9,6 +9,22 @@ import ( "golang.org/x/net/ipv6" ) +// This is the required size of the OOB buffer to pass to ReadMsgUDP. +var udpOOBSize = func() int { + // We can't know whether we'll get an IPv4 control message or an + // IPv6 control message ahead of time. To get around this, we size + // the buffer equal to the largest of the two. + + oob4 := ipv4.NewControlMessage(ipv4.FlagDst | ipv4.FlagInterface) + oob6 := ipv6.NewControlMessage(ipv6.FlagDst | ipv6.FlagInterface) + + if len(oob4) > len(oob6) { + return len(oob4) + } + + return len(oob6) +}() + // SessionUDP holds the remote address and the associated // out-of-band data. type SessionUDP struct { @@ -22,7 +38,7 @@ func (s *SessionUDP) RemoteAddr() net.Addr { return s.raddr } // ReadFromSessionUDP acts just like net.UDPConn.ReadFrom(), but returns a session object instead of a // net.UDPAddr. func ReadFromSessionUDP(conn *net.UDPConn, b []byte) (int, *SessionUDP, error) { - oob := make([]byte, 40) + oob := make([]byte, udpOOBSize) n, oobn, _, raddr, err := conn.ReadMsgUDP(b, oob) if err != nil { return n, nil, err @@ -53,18 +69,15 @@ func parseDstFromOOB(oob []byte) net.IP { // Start with IPv6 and then fallback to IPv4 // TODO(fastest963): Figure out a way to prefer one or the other. Looking at // the lvl of the header for a 0 or 41 isn't cross-platform. - var dst net.IP cm6 := new(ipv6.ControlMessage) - if cm6.Parse(oob) == nil { - dst = cm6.Dst + if cm6.Parse(oob) == nil && cm6.Dst != nil { + return cm6.Dst } - if dst == nil { - cm4 := new(ipv4.ControlMessage) - if cm4.Parse(oob) == nil { - dst = cm4.Dst - } + cm4 := new(ipv4.ControlMessage) + if cm4.Parse(oob) == nil && cm4.Dst != nil { + return cm4.Dst } - return dst + return nil } // correctSource takes oob data and returns new oob data with the Src equal to the Dst diff --git a/vendor/github.com/miekg/dns/version.go b/vendor/github.com/miekg/dns/version.go index e41d2b3ca..4f173d9d2 100644 --- a/vendor/github.com/miekg/dns/version.go +++ b/vendor/github.com/miekg/dns/version.go @@ -3,7 +3,7 @@ package dns import "fmt" // Version is current version of this library. -var Version = V{1, 0, 4} +var Version = V{1, 0, 7} // V holds the version of this library. type V struct { diff --git a/vendor/github.com/miekg/dns/zcompress.go b/vendor/github.com/miekg/dns/zcompress.go index c2503204d..a2c09dd48 100644 --- a/vendor/github.com/miekg/dns/zcompress.go +++ b/vendor/github.com/miekg/dns/zcompress.go @@ -2,117 +2,154 @@ package dns -func compressionLenHelperType(c map[string]int, r RR) { +func compressionLenHelperType(c map[string]int, r RR, initLen int) int { + currentLen := initLen switch x := r.(type) { case *AFSDB: - compressionLenHelper(c, x.Hostname) + currentLen -= len(x.Hostname) + 1 + currentLen += compressionLenHelper(c, x.Hostname, currentLen) case *CNAME: - compressionLenHelper(c, x.Target) + currentLen -= len(x.Target) + 1 + currentLen += compressionLenHelper(c, x.Target, currentLen) case *DNAME: - compressionLenHelper(c, x.Target) + currentLen -= len(x.Target) + 1 + currentLen += compressionLenHelper(c, x.Target, currentLen) case *HIP: for i := range x.RendezvousServers { - compressionLenHelper(c, x.RendezvousServers[i]) + currentLen -= len(x.RendezvousServers[i]) + 1 + } + for i := range x.RendezvousServers { + currentLen += compressionLenHelper(c, x.RendezvousServers[i], currentLen) } case *KX: - compressionLenHelper(c, x.Exchanger) + currentLen -= len(x.Exchanger) + 1 + currentLen += compressionLenHelper(c, x.Exchanger, currentLen) case *LP: - compressionLenHelper(c, x.Fqdn) + currentLen -= len(x.Fqdn) + 1 + currentLen += compressionLenHelper(c, x.Fqdn, currentLen) case *MB: - compressionLenHelper(c, x.Mb) + currentLen -= len(x.Mb) + 1 + currentLen += compressionLenHelper(c, x.Mb, currentLen) case *MD: - compressionLenHelper(c, x.Md) + currentLen -= len(x.Md) + 1 + currentLen += compressionLenHelper(c, x.Md, currentLen) case *MF: - compressionLenHelper(c, x.Mf) + currentLen -= len(x.Mf) + 1 + currentLen += compressionLenHelper(c, x.Mf, currentLen) case *MG: - compressionLenHelper(c, x.Mg) + currentLen -= len(x.Mg) + 1 + currentLen += compressionLenHelper(c, x.Mg, currentLen) case *MINFO: - compressionLenHelper(c, x.Rmail) - compressionLenHelper(c, x.Email) + currentLen -= len(x.Rmail) + 1 + currentLen += compressionLenHelper(c, x.Rmail, currentLen) + currentLen -= len(x.Email) + 1 + currentLen += compressionLenHelper(c, x.Email, currentLen) case *MR: - compressionLenHelper(c, x.Mr) + currentLen -= len(x.Mr) + 1 + currentLen += compressionLenHelper(c, x.Mr, currentLen) case *MX: - compressionLenHelper(c, x.Mx) + currentLen -= len(x.Mx) + 1 + currentLen += compressionLenHelper(c, x.Mx, currentLen) case *NAPTR: - compressionLenHelper(c, x.Replacement) + currentLen -= len(x.Replacement) + 1 + currentLen += compressionLenHelper(c, x.Replacement, currentLen) case *NS: - compressionLenHelper(c, x.Ns) + currentLen -= len(x.Ns) + 1 + currentLen += compressionLenHelper(c, x.Ns, currentLen) case *NSAPPTR: - compressionLenHelper(c, x.Ptr) + currentLen -= len(x.Ptr) + 1 + currentLen += compressionLenHelper(c, x.Ptr, currentLen) case *NSEC: - compressionLenHelper(c, x.NextDomain) + currentLen -= len(x.NextDomain) + 1 + currentLen += compressionLenHelper(c, x.NextDomain, currentLen) case *PTR: - compressionLenHelper(c, x.Ptr) + currentLen -= len(x.Ptr) + 1 + currentLen += compressionLenHelper(c, x.Ptr, currentLen) case *PX: - compressionLenHelper(c, x.Map822) - compressionLenHelper(c, x.Mapx400) + currentLen -= len(x.Map822) + 1 + currentLen += compressionLenHelper(c, x.Map822, currentLen) + currentLen -= len(x.Mapx400) + 1 + currentLen += compressionLenHelper(c, x.Mapx400, currentLen) case *RP: - compressionLenHelper(c, x.Mbox) - compressionLenHelper(c, x.Txt) + currentLen -= len(x.Mbox) + 1 + currentLen += compressionLenHelper(c, x.Mbox, currentLen) + currentLen -= len(x.Txt) + 1 + currentLen += compressionLenHelper(c, x.Txt, currentLen) case *RRSIG: - compressionLenHelper(c, x.SignerName) + currentLen -= len(x.SignerName) + 1 + currentLen += compressionLenHelper(c, x.SignerName, currentLen) case *RT: - compressionLenHelper(c, x.Host) + currentLen -= len(x.Host) + 1 + currentLen += compressionLenHelper(c, x.Host, currentLen) case *SIG: - compressionLenHelper(c, x.SignerName) + currentLen -= len(x.SignerName) + 1 + currentLen += compressionLenHelper(c, x.SignerName, currentLen) case *SOA: - compressionLenHelper(c, x.Ns) - compressionLenHelper(c, x.Mbox) + currentLen -= len(x.Ns) + 1 + currentLen += compressionLenHelper(c, x.Ns, currentLen) + currentLen -= len(x.Mbox) + 1 + currentLen += compressionLenHelper(c, x.Mbox, currentLen) case *SRV: - compressionLenHelper(c, x.Target) + currentLen -= len(x.Target) + 1 + currentLen += compressionLenHelper(c, x.Target, currentLen) case *TALINK: - compressionLenHelper(c, x.PreviousName) - compressionLenHelper(c, x.NextName) + currentLen -= len(x.PreviousName) + 1 + currentLen += compressionLenHelper(c, x.PreviousName, currentLen) + currentLen -= len(x.NextName) + 1 + currentLen += compressionLenHelper(c, x.NextName, currentLen) case *TKEY: - compressionLenHelper(c, x.Algorithm) + currentLen -= len(x.Algorithm) + 1 + currentLen += compressionLenHelper(c, x.Algorithm, currentLen) case *TSIG: - compressionLenHelper(c, x.Algorithm) + currentLen -= len(x.Algorithm) + 1 + currentLen += compressionLenHelper(c, x.Algorithm, currentLen) } + return currentLen - initLen } -func compressionLenSearchType(c map[string]int, r RR) (int, bool) { +func compressionLenSearchType(c map[string]int, r RR) (int, bool, int) { switch x := r.(type) { case *AFSDB: - k1, ok1 := compressionLenSearch(c, x.Hostname) - return k1, ok1 + k1, ok1, sz1 := compressionLenSearch(c, x.Hostname) + return k1, ok1, sz1 case *CNAME: - k1, ok1 := compressionLenSearch(c, x.Target) - return k1, ok1 + k1, ok1, sz1 := compressionLenSearch(c, x.Target) + return k1, ok1, sz1 case *MB: - k1, ok1 := compressionLenSearch(c, x.Mb) - return k1, ok1 + k1, ok1, sz1 := compressionLenSearch(c, x.Mb) + return k1, ok1, sz1 case *MD: - k1, ok1 := compressionLenSearch(c, x.Md) - return k1, ok1 + k1, ok1, sz1 := compressionLenSearch(c, x.Md) + return k1, ok1, sz1 case *MF: - k1, ok1 := compressionLenSearch(c, x.Mf) - return k1, ok1 + k1, ok1, sz1 := compressionLenSearch(c, x.Mf) + return k1, ok1, sz1 case *MG: - k1, ok1 := compressionLenSearch(c, x.Mg) - return k1, ok1 + k1, ok1, sz1 := compressionLenSearch(c, x.Mg) + return k1, ok1, sz1 case *MINFO: - k1, ok1 := compressionLenSearch(c, x.Rmail) - k2, ok2 := compressionLenSearch(c, x.Email) - return k1 + k2, ok1 && ok2 + k1, ok1, sz1 := compressionLenSearch(c, x.Rmail) + k2, ok2, sz2 := compressionLenSearch(c, x.Email) + return k1 + k2, ok1 && ok2, sz1 + sz2 case *MR: - k1, ok1 := compressionLenSearch(c, x.Mr) - return k1, ok1 + k1, ok1, sz1 := compressionLenSearch(c, x.Mr) + return k1, ok1, sz1 case *MX: - k1, ok1 := compressionLenSearch(c, x.Mx) - return k1, ok1 + k1, ok1, sz1 := compressionLenSearch(c, x.Mx) + return k1, ok1, sz1 case *NS: - k1, ok1 := compressionLenSearch(c, x.Ns) - return k1, ok1 + k1, ok1, sz1 := compressionLenSearch(c, x.Ns) + return k1, ok1, sz1 case *PTR: - k1, ok1 := compressionLenSearch(c, x.Ptr) - return k1, ok1 + k1, ok1, sz1 := compressionLenSearch(c, x.Ptr) + return k1, ok1, sz1 case *RT: - k1, ok1 := compressionLenSearch(c, x.Host) - return k1, ok1 + k1, ok1, sz1 := compressionLenSearch(c, x.Host) + return k1, ok1, sz1 case *SOA: - k1, ok1 := compressionLenSearch(c, x.Ns) - k2, ok2 := compressionLenSearch(c, x.Mbox) - return k1 + k2, ok1 && ok2 + k1, ok1, sz1 := compressionLenSearch(c, x.Ns) + k2, ok2, sz2 := compressionLenSearch(c, x.Mbox) + return k1 + k2, ok1 && ok2, sz1 + sz2 } - return 0, false + return 0, false, 0 } diff --git a/vendor/github.com/miekg/dns/ztypes.go b/vendor/github.com/miekg/dns/ztypes.go index abd75dd91..965753b11 100644 --- a/vendor/github.com/miekg/dns/ztypes.go +++ b/vendor/github.com/miekg/dns/ztypes.go @@ -649,215 +649,215 @@ func (rr *X25) len() int { // copy() functions func (rr *A) copy() RR { - return &A{*rr.Hdr.copyHeader(), copyIP(rr.A)} + return &A{rr.Hdr, copyIP(rr.A)} } func (rr *AAAA) copy() RR { - return &AAAA{*rr.Hdr.copyHeader(), copyIP(rr.AAAA)} + return &AAAA{rr.Hdr, copyIP(rr.AAAA)} } func (rr *AFSDB) copy() RR { - return &AFSDB{*rr.Hdr.copyHeader(), rr.Subtype, rr.Hostname} + return &AFSDB{rr.Hdr, rr.Subtype, rr.Hostname} } func (rr *ANY) copy() RR { - return &ANY{*rr.Hdr.copyHeader()} + return &ANY{rr.Hdr} } func (rr *AVC) copy() RR { Txt := make([]string, len(rr.Txt)) copy(Txt, rr.Txt) - return &AVC{*rr.Hdr.copyHeader(), Txt} + return &AVC{rr.Hdr, Txt} } func (rr *CAA) copy() RR { - return &CAA{*rr.Hdr.copyHeader(), rr.Flag, rr.Tag, rr.Value} + return &CAA{rr.Hdr, rr.Flag, rr.Tag, rr.Value} } func (rr *CERT) copy() RR { - return &CERT{*rr.Hdr.copyHeader(), rr.Type, rr.KeyTag, rr.Algorithm, rr.Certificate} + return &CERT{rr.Hdr, rr.Type, rr.KeyTag, rr.Algorithm, rr.Certificate} } func (rr *CNAME) copy() RR { - return &CNAME{*rr.Hdr.copyHeader(), rr.Target} + return &CNAME{rr.Hdr, rr.Target} } func (rr *CSYNC) copy() RR { TypeBitMap := make([]uint16, len(rr.TypeBitMap)) copy(TypeBitMap, rr.TypeBitMap) - return &CSYNC{*rr.Hdr.copyHeader(), rr.Serial, rr.Flags, TypeBitMap} + return &CSYNC{rr.Hdr, rr.Serial, rr.Flags, TypeBitMap} } func (rr *DHCID) copy() RR { - return &DHCID{*rr.Hdr.copyHeader(), rr.Digest} + return &DHCID{rr.Hdr, rr.Digest} } func (rr *DNAME) copy() RR { - return &DNAME{*rr.Hdr.copyHeader(), rr.Target} + return &DNAME{rr.Hdr, rr.Target} } func (rr *DNSKEY) copy() RR { - return &DNSKEY{*rr.Hdr.copyHeader(), rr.Flags, rr.Protocol, rr.Algorithm, rr.PublicKey} + return &DNSKEY{rr.Hdr, rr.Flags, rr.Protocol, rr.Algorithm, rr.PublicKey} } func (rr *DS) copy() RR { - return &DS{*rr.Hdr.copyHeader(), rr.KeyTag, rr.Algorithm, rr.DigestType, rr.Digest} + return &DS{rr.Hdr, rr.KeyTag, rr.Algorithm, rr.DigestType, rr.Digest} } func (rr *EID) copy() RR { - return &EID{*rr.Hdr.copyHeader(), rr.Endpoint} + return &EID{rr.Hdr, rr.Endpoint} } func (rr *EUI48) copy() RR { - return &EUI48{*rr.Hdr.copyHeader(), rr.Address} + return &EUI48{rr.Hdr, rr.Address} } func (rr *EUI64) copy() RR { - return &EUI64{*rr.Hdr.copyHeader(), rr.Address} + return &EUI64{rr.Hdr, rr.Address} } func (rr *GID) copy() RR { - return &GID{*rr.Hdr.copyHeader(), rr.Gid} + return &GID{rr.Hdr, rr.Gid} } func (rr *GPOS) copy() RR { - return &GPOS{*rr.Hdr.copyHeader(), rr.Longitude, rr.Latitude, rr.Altitude} + return &GPOS{rr.Hdr, rr.Longitude, rr.Latitude, rr.Altitude} } func (rr *HINFO) copy() RR { - return &HINFO{*rr.Hdr.copyHeader(), rr.Cpu, rr.Os} + return &HINFO{rr.Hdr, rr.Cpu, rr.Os} } func (rr *HIP) copy() RR { RendezvousServers := make([]string, len(rr.RendezvousServers)) copy(RendezvousServers, rr.RendezvousServers) - return &HIP{*rr.Hdr.copyHeader(), rr.HitLength, rr.PublicKeyAlgorithm, rr.PublicKeyLength, rr.Hit, rr.PublicKey, RendezvousServers} + return &HIP{rr.Hdr, rr.HitLength, rr.PublicKeyAlgorithm, rr.PublicKeyLength, rr.Hit, rr.PublicKey, RendezvousServers} } func (rr *KX) copy() RR { - return &KX{*rr.Hdr.copyHeader(), rr.Preference, rr.Exchanger} + return &KX{rr.Hdr, rr.Preference, rr.Exchanger} } func (rr *L32) copy() RR { - return &L32{*rr.Hdr.copyHeader(), rr.Preference, copyIP(rr.Locator32)} + return &L32{rr.Hdr, rr.Preference, copyIP(rr.Locator32)} } func (rr *L64) copy() RR { - return &L64{*rr.Hdr.copyHeader(), rr.Preference, rr.Locator64} + return &L64{rr.Hdr, rr.Preference, rr.Locator64} } func (rr *LOC) copy() RR { - return &LOC{*rr.Hdr.copyHeader(), rr.Version, rr.Size, rr.HorizPre, rr.VertPre, rr.Latitude, rr.Longitude, rr.Altitude} + return &LOC{rr.Hdr, rr.Version, rr.Size, rr.HorizPre, rr.VertPre, rr.Latitude, rr.Longitude, rr.Altitude} } func (rr *LP) copy() RR { - return &LP{*rr.Hdr.copyHeader(), rr.Preference, rr.Fqdn} + return &LP{rr.Hdr, rr.Preference, rr.Fqdn} } func (rr *MB) copy() RR { - return &MB{*rr.Hdr.copyHeader(), rr.Mb} + return &MB{rr.Hdr, rr.Mb} } func (rr *MD) copy() RR { - return &MD{*rr.Hdr.copyHeader(), rr.Md} + return &MD{rr.Hdr, rr.Md} } func (rr *MF) copy() RR { - return &MF{*rr.Hdr.copyHeader(), rr.Mf} + return &MF{rr.Hdr, rr.Mf} } func (rr *MG) copy() RR { - return &MG{*rr.Hdr.copyHeader(), rr.Mg} + return &MG{rr.Hdr, rr.Mg} } func (rr *MINFO) copy() RR { - return &MINFO{*rr.Hdr.copyHeader(), rr.Rmail, rr.Email} + return &MINFO{rr.Hdr, rr.Rmail, rr.Email} } func (rr *MR) copy() RR { - return &MR{*rr.Hdr.copyHeader(), rr.Mr} + return &MR{rr.Hdr, rr.Mr} } func (rr *MX) copy() RR { - return &MX{*rr.Hdr.copyHeader(), rr.Preference, rr.Mx} + return &MX{rr.Hdr, rr.Preference, rr.Mx} } func (rr *NAPTR) copy() RR { - return &NAPTR{*rr.Hdr.copyHeader(), rr.Order, rr.Preference, rr.Flags, rr.Service, rr.Regexp, rr.Replacement} + return &NAPTR{rr.Hdr, rr.Order, rr.Preference, rr.Flags, rr.Service, rr.Regexp, rr.Replacement} } func (rr *NID) copy() RR { - return &NID{*rr.Hdr.copyHeader(), rr.Preference, rr.NodeID} + return &NID{rr.Hdr, rr.Preference, rr.NodeID} } func (rr *NIMLOC) copy() RR { - return &NIMLOC{*rr.Hdr.copyHeader(), rr.Locator} + return &NIMLOC{rr.Hdr, rr.Locator} } func (rr *NINFO) copy() RR { ZSData := make([]string, len(rr.ZSData)) copy(ZSData, rr.ZSData) - return &NINFO{*rr.Hdr.copyHeader(), ZSData} + return &NINFO{rr.Hdr, ZSData} } func (rr *NS) copy() RR { - return &NS{*rr.Hdr.copyHeader(), rr.Ns} + return &NS{rr.Hdr, rr.Ns} } func (rr *NSAPPTR) copy() RR { - return &NSAPPTR{*rr.Hdr.copyHeader(), rr.Ptr} + return &NSAPPTR{rr.Hdr, rr.Ptr} } func (rr *NSEC) copy() RR { TypeBitMap := make([]uint16, len(rr.TypeBitMap)) copy(TypeBitMap, rr.TypeBitMap) - return &NSEC{*rr.Hdr.copyHeader(), rr.NextDomain, TypeBitMap} + return &NSEC{rr.Hdr, rr.NextDomain, TypeBitMap} } func (rr *NSEC3) copy() RR { TypeBitMap := make([]uint16, len(rr.TypeBitMap)) copy(TypeBitMap, rr.TypeBitMap) - return &NSEC3{*rr.Hdr.copyHeader(), rr.Hash, rr.Flags, rr.Iterations, rr.SaltLength, rr.Salt, rr.HashLength, rr.NextDomain, TypeBitMap} + return &NSEC3{rr.Hdr, rr.Hash, rr.Flags, rr.Iterations, rr.SaltLength, rr.Salt, rr.HashLength, rr.NextDomain, TypeBitMap} } func (rr *NSEC3PARAM) copy() RR { - return &NSEC3PARAM{*rr.Hdr.copyHeader(), rr.Hash, rr.Flags, rr.Iterations, rr.SaltLength, rr.Salt} + return &NSEC3PARAM{rr.Hdr, rr.Hash, rr.Flags, rr.Iterations, rr.SaltLength, rr.Salt} } func (rr *OPENPGPKEY) copy() RR { - return &OPENPGPKEY{*rr.Hdr.copyHeader(), rr.PublicKey} + return &OPENPGPKEY{rr.Hdr, rr.PublicKey} } func (rr *OPT) copy() RR { Option := make([]EDNS0, len(rr.Option)) copy(Option, rr.Option) - return &OPT{*rr.Hdr.copyHeader(), Option} + return &OPT{rr.Hdr, Option} } func (rr *PTR) copy() RR { - return &PTR{*rr.Hdr.copyHeader(), rr.Ptr} + return &PTR{rr.Hdr, rr.Ptr} } func (rr *PX) copy() RR { - return &PX{*rr.Hdr.copyHeader(), rr.Preference, rr.Map822, rr.Mapx400} + return &PX{rr.Hdr, rr.Preference, rr.Map822, rr.Mapx400} } func (rr *RFC3597) copy() RR { - return &RFC3597{*rr.Hdr.copyHeader(), rr.Rdata} + return &RFC3597{rr.Hdr, rr.Rdata} } func (rr *RKEY) copy() RR { - return &RKEY{*rr.Hdr.copyHeader(), rr.Flags, rr.Protocol, rr.Algorithm, rr.PublicKey} + return &RKEY{rr.Hdr, rr.Flags, rr.Protocol, rr.Algorithm, rr.PublicKey} } func (rr *RP) copy() RR { - return &RP{*rr.Hdr.copyHeader(), rr.Mbox, rr.Txt} + return &RP{rr.Hdr, rr.Mbox, rr.Txt} } func (rr *RRSIG) copy() RR { - return &RRSIG{*rr.Hdr.copyHeader(), rr.TypeCovered, rr.Algorithm, rr.Labels, rr.OrigTtl, rr.Expiration, rr.Inception, rr.KeyTag, rr.SignerName, rr.Signature} + return &RRSIG{rr.Hdr, rr.TypeCovered, rr.Algorithm, rr.Labels, rr.OrigTtl, rr.Expiration, rr.Inception, rr.KeyTag, rr.SignerName, rr.Signature} } func (rr *RT) copy() RR { - return &RT{*rr.Hdr.copyHeader(), rr.Preference, rr.Host} + return &RT{rr.Hdr, rr.Preference, rr.Host} } func (rr *SMIMEA) copy() RR { - return &SMIMEA{*rr.Hdr.copyHeader(), rr.Usage, rr.Selector, rr.MatchingType, rr.Certificate} + return &SMIMEA{rr.Hdr, rr.Usage, rr.Selector, rr.MatchingType, rr.Certificate} } func (rr *SOA) copy() RR { - return &SOA{*rr.Hdr.copyHeader(), rr.Ns, rr.Mbox, rr.Serial, rr.Refresh, rr.Retry, rr.Expire, rr.Minttl} + return &SOA{rr.Hdr, rr.Ns, rr.Mbox, rr.Serial, rr.Refresh, rr.Retry, rr.Expire, rr.Minttl} } func (rr *SPF) copy() RR { Txt := make([]string, len(rr.Txt)) copy(Txt, rr.Txt) - return &SPF{*rr.Hdr.copyHeader(), Txt} + return &SPF{rr.Hdr, Txt} } func (rr *SRV) copy() RR { - return &SRV{*rr.Hdr.copyHeader(), rr.Priority, rr.Weight, rr.Port, rr.Target} + return &SRV{rr.Hdr, rr.Priority, rr.Weight, rr.Port, rr.Target} } func (rr *SSHFP) copy() RR { - return &SSHFP{*rr.Hdr.copyHeader(), rr.Algorithm, rr.Type, rr.FingerPrint} + return &SSHFP{rr.Hdr, rr.Algorithm, rr.Type, rr.FingerPrint} } func (rr *TA) copy() RR { - return &TA{*rr.Hdr.copyHeader(), rr.KeyTag, rr.Algorithm, rr.DigestType, rr.Digest} + return &TA{rr.Hdr, rr.KeyTag, rr.Algorithm, rr.DigestType, rr.Digest} } func (rr *TALINK) copy() RR { - return &TALINK{*rr.Hdr.copyHeader(), rr.PreviousName, rr.NextName} + return &TALINK{rr.Hdr, rr.PreviousName, rr.NextName} } func (rr *TKEY) copy() RR { - return &TKEY{*rr.Hdr.copyHeader(), rr.Algorithm, rr.Inception, rr.Expiration, rr.Mode, rr.Error, rr.KeySize, rr.Key, rr.OtherLen, rr.OtherData} + return &TKEY{rr.Hdr, rr.Algorithm, rr.Inception, rr.Expiration, rr.Mode, rr.Error, rr.KeySize, rr.Key, rr.OtherLen, rr.OtherData} } func (rr *TLSA) copy() RR { - return &TLSA{*rr.Hdr.copyHeader(), rr.Usage, rr.Selector, rr.MatchingType, rr.Certificate} + return &TLSA{rr.Hdr, rr.Usage, rr.Selector, rr.MatchingType, rr.Certificate} } func (rr *TSIG) copy() RR { - return &TSIG{*rr.Hdr.copyHeader(), rr.Algorithm, rr.TimeSigned, rr.Fudge, rr.MACSize, rr.MAC, rr.OrigId, rr.Error, rr.OtherLen, rr.OtherData} + return &TSIG{rr.Hdr, rr.Algorithm, rr.TimeSigned, rr.Fudge, rr.MACSize, rr.MAC, rr.OrigId, rr.Error, rr.OtherLen, rr.OtherData} } func (rr *TXT) copy() RR { Txt := make([]string, len(rr.Txt)) copy(Txt, rr.Txt) - return &TXT{*rr.Hdr.copyHeader(), Txt} + return &TXT{rr.Hdr, Txt} } func (rr *UID) copy() RR { - return &UID{*rr.Hdr.copyHeader(), rr.Uid} + return &UID{rr.Hdr, rr.Uid} } func (rr *UINFO) copy() RR { - return &UINFO{*rr.Hdr.copyHeader(), rr.Uinfo} + return &UINFO{rr.Hdr, rr.Uinfo} } func (rr *URI) copy() RR { - return &URI{*rr.Hdr.copyHeader(), rr.Priority, rr.Weight, rr.Target} + return &URI{rr.Hdr, rr.Priority, rr.Weight, rr.Target} } func (rr *X25) copy() RR { - return &X25{*rr.Hdr.copyHeader(), rr.PSDNAddress} + return &X25{rr.Hdr, rr.PSDNAddress} } diff --git a/vendor/github.com/mitchellh/hashstructure/LICENSE b/vendor/github.com/mitchellh/hashstructure/LICENSE new file mode 100644 index 000000000..a3866a291 --- /dev/null +++ b/vendor/github.com/mitchellh/hashstructure/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 Mitchell Hashimoto + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/github.com/mitchellh/hashstructure/README.md b/vendor/github.com/mitchellh/hashstructure/README.md new file mode 100644 index 000000000..28ce45a3e --- /dev/null +++ b/vendor/github.com/mitchellh/hashstructure/README.md @@ -0,0 +1,65 @@ +# hashstructure [![GoDoc](https://godoc.org/github.com/mitchellh/hashstructure?status.svg)](https://godoc.org/github.com/mitchellh/hashstructure) + +hashstructure is a Go library for creating a unique hash value +for arbitrary values in Go. + +This can be used to key values in a hash (for use in a map, set, etc.) +that are complex. The most common use case is comparing two values without +sending data across the network, caching values locally (de-dup), and so on. + +## Features + + * Hash any arbitrary Go value, including complex types. + + * Tag a struct field to ignore it and not affect the hash value. + + * Tag a slice type struct field to treat it as a set where ordering + doesn't affect the hash code but the field itself is still taken into + account to create the hash value. + + * Optionally specify a custom hash function to optimize for speed, collision + avoidance for your data set, etc. + + * Optionally hash the output of `.String()` on structs that implement fmt.Stringer, + allowing effective hashing of time.Time + +## Installation + +Standard `go get`: + +``` +$ go get github.com/mitchellh/hashstructure +``` + +## Usage & Example + +For usage and examples see the [Godoc](http://godoc.org/github.com/mitchellh/hashstructure). + +A quick code example is shown below: + +```go +type ComplexStruct struct { + Name string + Age uint + Metadata map[string]interface{} +} + +v := ComplexStruct{ + Name: "mitchellh", + Age: 64, + Metadata: map[string]interface{}{ + "car": true, + "location": "California", + "siblings": []string{"Bob", "John"}, + }, +} + +hash, err := hashstructure.Hash(v, nil) +if err != nil { + panic(err) +} + +fmt.Printf("%d", hash) +// Output: +// 2307517237273902113 +``` diff --git a/vendor/github.com/mitchellh/hashstructure/hashstructure.go b/vendor/github.com/mitchellh/hashstructure/hashstructure.go new file mode 100644 index 000000000..ea13a1583 --- /dev/null +++ b/vendor/github.com/mitchellh/hashstructure/hashstructure.go @@ -0,0 +1,358 @@ +package hashstructure + +import ( + "encoding/binary" + "fmt" + "hash" + "hash/fnv" + "reflect" +) + +// ErrNotStringer is returned when there's an error with hash:"string" +type ErrNotStringer struct { + Field string +} + +// Error implements error for ErrNotStringer +func (ens *ErrNotStringer) Error() string { + return fmt.Sprintf("hashstructure: %s has hash:\"string\" set, but does not implement fmt.Stringer", ens.Field) +} + +// HashOptions are options that are available for hashing. +type HashOptions struct { + // Hasher is the hash function to use. If this isn't set, it will + // default to FNV. + Hasher hash.Hash64 + + // TagName is the struct tag to look at when hashing the structure. + // By default this is "hash". + TagName string + + // ZeroNil is flag determining if nil pointer should be treated equal + // to a zero value of pointed type. By default this is false. + ZeroNil bool +} + +// Hash returns the hash value of an arbitrary value. +// +// If opts is nil, then default options will be used. See HashOptions +// for the default values. The same *HashOptions value cannot be used +// concurrently. None of the values within a *HashOptions struct are +// safe to read/write while hashing is being done. +// +// Notes on the value: +// +// * Unexported fields on structs are ignored and do not affect the +// hash value. +// +// * Adding an exported field to a struct with the zero value will change +// the hash value. +// +// For structs, the hashing can be controlled using tags. For example: +// +// struct { +// Name string +// UUID string `hash:"ignore"` +// } +// +// The available tag values are: +// +// * "ignore" or "-" - The field will be ignored and not affect the hash code. +// +// * "set" - The field will be treated as a set, where ordering doesn't +// affect the hash code. This only works for slices. +// +// * "string" - The field will be hashed as a string, only works when the +// field implements fmt.Stringer +// +func Hash(v interface{}, opts *HashOptions) (uint64, error) { + // Create default options + if opts == nil { + opts = &HashOptions{} + } + if opts.Hasher == nil { + opts.Hasher = fnv.New64() + } + if opts.TagName == "" { + opts.TagName = "hash" + } + + // Reset the hash + opts.Hasher.Reset() + + // Create our walker and walk the structure + w := &walker{ + h: opts.Hasher, + tag: opts.TagName, + zeronil: opts.ZeroNil, + } + return w.visit(reflect.ValueOf(v), nil) +} + +type walker struct { + h hash.Hash64 + tag string + zeronil bool +} + +type visitOpts struct { + // Flags are a bitmask of flags to affect behavior of this visit + Flags visitFlag + + // Information about the struct containing this field + Struct interface{} + StructField string +} + +func (w *walker) visit(v reflect.Value, opts *visitOpts) (uint64, error) { + t := reflect.TypeOf(0) + + // Loop since these can be wrapped in multiple layers of pointers + // and interfaces. + for { + // If we have an interface, dereference it. We have to do this up + // here because it might be a nil in there and the check below must + // catch that. + if v.Kind() == reflect.Interface { + v = v.Elem() + continue + } + + if v.Kind() == reflect.Ptr { + if w.zeronil { + t = v.Type().Elem() + } + v = reflect.Indirect(v) + continue + } + + break + } + + // If it is nil, treat it like a zero. + if !v.IsValid() { + v = reflect.Zero(t) + } + + // Binary writing can use raw ints, we have to convert to + // a sized-int, we'll choose the largest... + switch v.Kind() { + case reflect.Int: + v = reflect.ValueOf(int64(v.Int())) + case reflect.Uint: + v = reflect.ValueOf(uint64(v.Uint())) + case reflect.Bool: + var tmp int8 + if v.Bool() { + tmp = 1 + } + v = reflect.ValueOf(tmp) + } + + k := v.Kind() + + // We can shortcut numeric values by directly binary writing them + if k >= reflect.Int && k <= reflect.Complex64 { + // A direct hash calculation + w.h.Reset() + err := binary.Write(w.h, binary.LittleEndian, v.Interface()) + return w.h.Sum64(), err + } + + switch k { + case reflect.Array: + var h uint64 + l := v.Len() + for i := 0; i < l; i++ { + current, err := w.visit(v.Index(i), nil) + if err != nil { + return 0, err + } + + h = hashUpdateOrdered(w.h, h, current) + } + + return h, nil + + case reflect.Map: + var includeMap IncludableMap + if opts != nil && opts.Struct != nil { + if v, ok := opts.Struct.(IncludableMap); ok { + includeMap = v + } + } + + // Build the hash for the map. We do this by XOR-ing all the key + // and value hashes. This makes it deterministic despite ordering. + var h uint64 + for _, k := range v.MapKeys() { + v := v.MapIndex(k) + if includeMap != nil { + incl, err := includeMap.HashIncludeMap( + opts.StructField, k.Interface(), v.Interface()) + if err != nil { + return 0, err + } + if !incl { + continue + } + } + + kh, err := w.visit(k, nil) + if err != nil { + return 0, err + } + vh, err := w.visit(v, nil) + if err != nil { + return 0, err + } + + fieldHash := hashUpdateOrdered(w.h, kh, vh) + h = hashUpdateUnordered(h, fieldHash) + } + + return h, nil + + case reflect.Struct: + parent := v.Interface() + var include Includable + if impl, ok := parent.(Includable); ok { + include = impl + } + + t := v.Type() + h, err := w.visit(reflect.ValueOf(t.Name()), nil) + if err != nil { + return 0, err + } + + l := v.NumField() + for i := 0; i < l; i++ { + if innerV := v.Field(i); v.CanSet() || t.Field(i).Name != "_" { + var f visitFlag + fieldType := t.Field(i) + if fieldType.PkgPath != "" { + // Unexported + continue + } + + tag := fieldType.Tag.Get(w.tag) + if tag == "ignore" || tag == "-" { + // Ignore this field + continue + } + + // if string is set, use the string value + if tag == "string" { + if impl, ok := innerV.Interface().(fmt.Stringer); ok { + innerV = reflect.ValueOf(impl.String()) + } else { + return 0, &ErrNotStringer{ + Field: v.Type().Field(i).Name, + } + } + } + + // Check if we implement includable and check it + if include != nil { + incl, err := include.HashInclude(fieldType.Name, innerV) + if err != nil { + return 0, err + } + if !incl { + continue + } + } + + switch tag { + case "set": + f |= visitFlagSet + } + + kh, err := w.visit(reflect.ValueOf(fieldType.Name), nil) + if err != nil { + return 0, err + } + + vh, err := w.visit(innerV, &visitOpts{ + Flags: f, + Struct: parent, + StructField: fieldType.Name, + }) + if err != nil { + return 0, err + } + + fieldHash := hashUpdateOrdered(w.h, kh, vh) + h = hashUpdateUnordered(h, fieldHash) + } + } + + return h, nil + + case reflect.Slice: + // We have two behaviors here. If it isn't a set, then we just + // visit all the elements. If it is a set, then we do a deterministic + // hash code. + var h uint64 + var set bool + if opts != nil { + set = (opts.Flags & visitFlagSet) != 0 + } + l := v.Len() + for i := 0; i < l; i++ { + current, err := w.visit(v.Index(i), nil) + if err != nil { + return 0, err + } + + if set { + h = hashUpdateUnordered(h, current) + } else { + h = hashUpdateOrdered(w.h, h, current) + } + } + + return h, nil + + case reflect.String: + // Directly hash + w.h.Reset() + _, err := w.h.Write([]byte(v.String())) + return w.h.Sum64(), err + + default: + return 0, fmt.Errorf("unknown kind to hash: %s", k) + } + +} + +func hashUpdateOrdered(h hash.Hash64, a, b uint64) uint64 { + // For ordered updates, use a real hash function + h.Reset() + + // We just panic if the binary writes fail because we are writing + // an int64 which should never be fail-able. + e1 := binary.Write(h, binary.LittleEndian, a) + e2 := binary.Write(h, binary.LittleEndian, b) + if e1 != nil { + panic(e1) + } + if e2 != nil { + panic(e2) + } + + return h.Sum64() +} + +func hashUpdateUnordered(a, b uint64) uint64 { + return a ^ b +} + +// visitFlag is used as a bitmask for affecting visit behavior +type visitFlag uint + +const ( + visitFlagInvalid visitFlag = iota + visitFlagSet = iota << 1 +) diff --git a/vendor/github.com/mitchellh/hashstructure/include.go b/vendor/github.com/mitchellh/hashstructure/include.go new file mode 100644 index 000000000..b6289c0be --- /dev/null +++ b/vendor/github.com/mitchellh/hashstructure/include.go @@ -0,0 +1,15 @@ +package hashstructure + +// Includable is an interface that can optionally be implemented by +// a struct. It will be called for each field in the struct to check whether +// it should be included in the hash. +type Includable interface { + HashInclude(field string, v interface{}) (bool, error) +} + +// IncludableMap is an interface that can optionally be implemented by +// a struct. It will be called when a map-type field is found to ask the +// struct if the map item should be included in the hash. +type IncludableMap interface { + HashIncludeMap(field string, k, v interface{}) (bool, error) +} diff --git a/vendor/github.com/nicolai86/scaleway-sdk/LICENSE.md b/vendor/github.com/nicolai86/scaleway-sdk/LICENSE.md new file mode 100644 index 000000000..7503a16ca --- /dev/null +++ b/vendor/github.com/nicolai86/scaleway-sdk/LICENSE.md @@ -0,0 +1,22 @@ +The MIT License +=============== + +Copyright (c) **2014-2016 Scaleway ([@scaleway](https://twitter.com/scaleway))** + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/github.com/prometheus/client_golang/LICENSE b/vendor/github.com/prometheus/client_golang/LICENSE new file mode 100644 index 000000000..261eeb9e9 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/prometheus/client_golang/NOTICE b/vendor/github.com/prometheus/client_golang/NOTICE new file mode 100644 index 000000000..dd878a30e --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/NOTICE @@ -0,0 +1,23 @@ +Prometheus instrumentation library for Go applications +Copyright 2012-2015 The Prometheus Authors + +This product includes software developed at +SoundCloud Ltd. (http://soundcloud.com/). + + +The following components are included in this product: + +perks - a fork of https://github.com/bmizerany/perks +https://github.com/beorn7/perks +Copyright 2013-2015 Blake Mizerany, Björn Rabenstein +See https://github.com/beorn7/perks/blob/master/README.md for license details. + +Go support for Protocol Buffers - Google's data interchange format +http://github.com/golang/protobuf/ +Copyright 2010 The Go Authors +See source code for license details. + +Support for streaming Protocol Buffer messages for the Go language (golang). +https://github.com/matttproud/golang_protobuf_extensions +Copyright 2013 Matt T. Proud +Licensed under the Apache License, Version 2.0 diff --git a/vendor/github.com/prometheus/client_golang/prometheus/README.md b/vendor/github.com/prometheus/client_golang/prometheus/README.md new file mode 100644 index 000000000..44986bff0 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/README.md @@ -0,0 +1 @@ +See [![go-doc](https://godoc.org/github.com/prometheus/client_golang/prometheus?status.svg)](https://godoc.org/github.com/prometheus/client_golang/prometheus). diff --git a/vendor/github.com/prometheus/client_golang/prometheus/collector.go b/vendor/github.com/prometheus/client_golang/prometheus/collector.go new file mode 100644 index 000000000..623d3d83f --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/collector.go @@ -0,0 +1,75 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +// Collector is the interface implemented by anything that can be used by +// Prometheus to collect metrics. A Collector has to be registered for +// collection. See Registerer.Register. +// +// The stock metrics provided by this package (Gauge, Counter, Summary, +// Histogram, Untyped) are also Collectors (which only ever collect one metric, +// namely itself). An implementer of Collector may, however, collect multiple +// metrics in a coordinated fashion and/or create metrics on the fly. Examples +// for collectors already implemented in this library are the metric vectors +// (i.e. collection of multiple instances of the same Metric but with different +// label values) like GaugeVec or SummaryVec, and the ExpvarCollector. +type Collector interface { + // Describe sends the super-set of all possible descriptors of metrics + // collected by this Collector to the provided channel and returns once + // the last descriptor has been sent. The sent descriptors fulfill the + // consistency and uniqueness requirements described in the Desc + // documentation. (It is valid if one and the same Collector sends + // duplicate descriptors. Those duplicates are simply ignored. However, + // two different Collectors must not send duplicate descriptors.) This + // method idempotently sends the same descriptors throughout the + // lifetime of the Collector. If a Collector encounters an error while + // executing this method, it must send an invalid descriptor (created + // with NewInvalidDesc) to signal the error to the registry. + Describe(chan<- *Desc) + // Collect is called by the Prometheus registry when collecting + // metrics. The implementation sends each collected metric via the + // provided channel and returns once the last metric has been sent. The + // descriptor of each sent metric is one of those returned by + // Describe. Returned metrics that share the same descriptor must differ + // in their variable label values. This method may be called + // concurrently and must therefore be implemented in a concurrency safe + // way. Blocking occurs at the expense of total performance of rendering + // all registered metrics. Ideally, Collector implementations support + // concurrent readers. + Collect(chan<- Metric) +} + +// selfCollector implements Collector for a single Metric so that the Metric +// collects itself. Add it as an anonymous field to a struct that implements +// Metric, and call init with the Metric itself as an argument. +type selfCollector struct { + self Metric +} + +// init provides the selfCollector with a reference to the metric it is supposed +// to collect. It is usually called within the factory function to create a +// metric. See example. +func (c *selfCollector) init(self Metric) { + c.self = self +} + +// Describe implements Collector. +func (c *selfCollector) Describe(ch chan<- *Desc) { + ch <- c.self.Desc() +} + +// Collect implements Collector. +func (c *selfCollector) Collect(ch chan<- Metric) { + ch <- c.self +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/counter.go b/vendor/github.com/prometheus/client_golang/prometheus/counter.go new file mode 100644 index 000000000..765e4550c --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/counter.go @@ -0,0 +1,277 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import ( + "errors" + "math" + "sync/atomic" + + dto "github.com/prometheus/client_model/go" +) + +// Counter is a Metric that represents a single numerical value that only ever +// goes up. That implies that it cannot be used to count items whose number can +// also go down, e.g. the number of currently running goroutines. Those +// "counters" are represented by Gauges. +// +// A Counter is typically used to count requests served, tasks completed, errors +// occurred, etc. +// +// To create Counter instances, use NewCounter. +type Counter interface { + Metric + Collector + + // Inc increments the counter by 1. Use Add to increment it by arbitrary + // non-negative values. + Inc() + // Add adds the given value to the counter. It panics if the value is < + // 0. + Add(float64) +} + +// CounterOpts is an alias for Opts. See there for doc comments. +type CounterOpts Opts + +// NewCounter creates a new Counter based on the provided CounterOpts. +// +// The returned implementation tracks the counter value in two separate +// variables, a float64 and a uint64. The latter is used to track calls of the +// Inc method and calls of the Add method with a value that can be represented +// as a uint64. This allows atomic increments of the counter with optimal +// performance. (It is common to have an Inc call in very hot execution paths.) +// Both internal tracking values are added up in the Write method. This has to +// be taken into account when it comes to precision and overflow behavior. +func NewCounter(opts CounterOpts) Counter { + desc := NewDesc( + BuildFQName(opts.Namespace, opts.Subsystem, opts.Name), + opts.Help, + nil, + opts.ConstLabels, + ) + result := &counter{desc: desc, labelPairs: desc.constLabelPairs} + result.init(result) // Init self-collection. + return result +} + +type counter struct { + // valBits contains the bits of the represented float64 value, while + // valInt stores values that are exact integers. Both have to go first + // in the struct to guarantee alignment for atomic operations. + // http://golang.org/pkg/sync/atomic/#pkg-note-BUG + valBits uint64 + valInt uint64 + + selfCollector + desc *Desc + + labelPairs []*dto.LabelPair +} + +func (c *counter) Desc() *Desc { + return c.desc +} + +func (c *counter) Add(v float64) { + if v < 0 { + panic(errors.New("counter cannot decrease in value")) + } + ival := uint64(v) + if float64(ival) == v { + atomic.AddUint64(&c.valInt, ival) + return + } + + for { + oldBits := atomic.LoadUint64(&c.valBits) + newBits := math.Float64bits(math.Float64frombits(oldBits) + v) + if atomic.CompareAndSwapUint64(&c.valBits, oldBits, newBits) { + return + } + } +} + +func (c *counter) Inc() { + atomic.AddUint64(&c.valInt, 1) +} + +func (c *counter) Write(out *dto.Metric) error { + fval := math.Float64frombits(atomic.LoadUint64(&c.valBits)) + ival := atomic.LoadUint64(&c.valInt) + val := fval + float64(ival) + + return populateMetric(CounterValue, val, c.labelPairs, out) +} + +// CounterVec is a Collector that bundles a set of Counters that all share the +// same Desc, but have different values for their variable labels. This is used +// if you want to count the same thing partitioned by various dimensions +// (e.g. number of HTTP requests, partitioned by response code and +// method). Create instances with NewCounterVec. +type CounterVec struct { + *metricVec +} + +// NewCounterVec creates a new CounterVec based on the provided CounterOpts and +// partitioned by the given label names. +func NewCounterVec(opts CounterOpts, labelNames []string) *CounterVec { + desc := NewDesc( + BuildFQName(opts.Namespace, opts.Subsystem, opts.Name), + opts.Help, + labelNames, + opts.ConstLabels, + ) + return &CounterVec{ + metricVec: newMetricVec(desc, func(lvs ...string) Metric { + if len(lvs) != len(desc.variableLabels) { + panic(errInconsistentCardinality) + } + result := &counter{desc: desc, labelPairs: makeLabelPairs(desc, lvs)} + result.init(result) // Init self-collection. + return result + }), + } +} + +// GetMetricWithLabelValues returns the Counter for the given slice of label +// values (same order as the VariableLabels in Desc). If that combination of +// label values is accessed for the first time, a new Counter is created. +// +// It is possible to call this method without using the returned Counter to only +// create the new Counter but leave it at its starting value 0. See also the +// SummaryVec example. +// +// Keeping the Counter for later use is possible (and should be considered if +// performance is critical), but keep in mind that Reset, DeleteLabelValues and +// Delete can be used to delete the Counter from the CounterVec. In that case, +// the Counter will still exist, but it will not be exported anymore, even if a +// Counter with the same label values is created later. +// +// An error is returned if the number of label values is not the same as the +// number of VariableLabels in Desc (minus any curried labels). +// +// Note that for more than one label value, this method is prone to mistakes +// caused by an incorrect order of arguments. Consider GetMetricWith(Labels) as +// an alternative to avoid that type of mistake. For higher label numbers, the +// latter has a much more readable (albeit more verbose) syntax, but it comes +// with a performance overhead (for creating and processing the Labels map). +// See also the GaugeVec example. +func (v *CounterVec) GetMetricWithLabelValues(lvs ...string) (Counter, error) { + metric, err := v.metricVec.getMetricWithLabelValues(lvs...) + if metric != nil { + return metric.(Counter), err + } + return nil, err +} + +// GetMetricWith returns the Counter for the given Labels map (the label names +// must match those of the VariableLabels in Desc). If that label map is +// accessed for the first time, a new Counter is created. Implications of +// creating a Counter without using it and keeping the Counter for later use are +// the same as for GetMetricWithLabelValues. +// +// An error is returned if the number and names of the Labels are inconsistent +// with those of the VariableLabels in Desc (minus any curried labels). +// +// This method is used for the same purpose as +// GetMetricWithLabelValues(...string). See there for pros and cons of the two +// methods. +func (v *CounterVec) GetMetricWith(labels Labels) (Counter, error) { + metric, err := v.metricVec.getMetricWith(labels) + if metric != nil { + return metric.(Counter), err + } + return nil, err +} + +// WithLabelValues works as GetMetricWithLabelValues, but panics where +// GetMetricWithLabelValues would have returned an error. Not returning an +// error allows shortcuts like +// myVec.WithLabelValues("404", "GET").Add(42) +func (v *CounterVec) WithLabelValues(lvs ...string) Counter { + c, err := v.GetMetricWithLabelValues(lvs...) + if err != nil { + panic(err) + } + return c +} + +// With works as GetMetricWith, but panics where GetMetricWithLabels would have +// returned an error. Not returning an error allows shortcuts like +// myVec.With(prometheus.Labels{"code": "404", "method": "GET"}).Add(42) +func (v *CounterVec) With(labels Labels) Counter { + c, err := v.GetMetricWith(labels) + if err != nil { + panic(err) + } + return c +} + +// CurryWith returns a vector curried with the provided labels, i.e. the +// returned vector has those labels pre-set for all labeled operations performed +// on it. The cardinality of the curried vector is reduced accordingly. The +// order of the remaining labels stays the same (just with the curried labels +// taken out of the sequence – which is relevant for the +// (GetMetric)WithLabelValues methods). It is possible to curry a curried +// vector, but only with labels not yet used for currying before. +// +// The metrics contained in the CounterVec are shared between the curried and +// uncurried vectors. They are just accessed differently. Curried and uncurried +// vectors behave identically in terms of collection. Only one must be +// registered with a given registry (usually the uncurried version). The Reset +// method deletes all metrics, even if called on a curried vector. +func (v *CounterVec) CurryWith(labels Labels) (*CounterVec, error) { + vec, err := v.curryWith(labels) + if vec != nil { + return &CounterVec{vec}, err + } + return nil, err +} + +// MustCurryWith works as CurryWith but panics where CurryWith would have +// returned an error. +func (v *CounterVec) MustCurryWith(labels Labels) *CounterVec { + vec, err := v.CurryWith(labels) + if err != nil { + panic(err) + } + return vec +} + +// CounterFunc is a Counter whose value is determined at collect time by calling a +// provided function. +// +// To create CounterFunc instances, use NewCounterFunc. +type CounterFunc interface { + Metric + Collector +} + +// NewCounterFunc creates a new CounterFunc based on the provided +// CounterOpts. The value reported is determined by calling the given function +// from within the Write method. Take into account that metric collection may +// happen concurrently. If that results in concurrent calls to Write, like in +// the case where a CounterFunc is directly registered with Prometheus, the +// provided function must be concurrency-safe. The function should also honor +// the contract for a Counter (values only go up, not down), but compliance will +// not be checked. +func NewCounterFunc(opts CounterOpts, function func() float64) CounterFunc { + return newValueFunc(NewDesc( + BuildFQName(opts.Namespace, opts.Subsystem, opts.Name), + opts.Help, + nil, + opts.ConstLabels, + ), CounterValue, function) +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/desc.go b/vendor/github.com/prometheus/client_golang/prometheus/desc.go new file mode 100644 index 000000000..4a755b0fa --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/desc.go @@ -0,0 +1,188 @@ +// Copyright 2016 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import ( + "errors" + "fmt" + "sort" + "strings" + + "github.com/golang/protobuf/proto" + "github.com/prometheus/common/model" + + dto "github.com/prometheus/client_model/go" +) + +// Desc is the descriptor used by every Prometheus Metric. It is essentially +// the immutable meta-data of a Metric. The normal Metric implementations +// included in this package manage their Desc under the hood. Users only have to +// deal with Desc if they use advanced features like the ExpvarCollector or +// custom Collectors and Metrics. +// +// Descriptors registered with the same registry have to fulfill certain +// consistency and uniqueness criteria if they share the same fully-qualified +// name: They must have the same help string and the same label names (aka label +// dimensions) in each, constLabels and variableLabels, but they must differ in +// the values of the constLabels. +// +// Descriptors that share the same fully-qualified names and the same label +// values of their constLabels are considered equal. +// +// Use NewDesc to create new Desc instances. +type Desc struct { + // fqName has been built from Namespace, Subsystem, and Name. + fqName string + // help provides some helpful information about this metric. + help string + // constLabelPairs contains precalculated DTO label pairs based on + // the constant labels. + constLabelPairs []*dto.LabelPair + // VariableLabels contains names of labels for which the metric + // maintains variable values. + variableLabels []string + // id is a hash of the values of the ConstLabels and fqName. This + // must be unique among all registered descriptors and can therefore be + // used as an identifier of the descriptor. + id uint64 + // dimHash is a hash of the label names (preset and variable) and the + // Help string. Each Desc with the same fqName must have the same + // dimHash. + dimHash uint64 + // err is an error that occurred during construction. It is reported on + // registration time. + err error +} + +// NewDesc allocates and initializes a new Desc. Errors are recorded in the Desc +// and will be reported on registration time. variableLabels and constLabels can +// be nil if no such labels should be set. fqName and help must not be empty. +// +// variableLabels only contain the label names. Their label values are variable +// and therefore not part of the Desc. (They are managed within the Metric.) +// +// For constLabels, the label values are constant. Therefore, they are fully +// specified in the Desc. See the Collector example for a usage pattern. +func NewDesc(fqName, help string, variableLabels []string, constLabels Labels) *Desc { + d := &Desc{ + fqName: fqName, + help: help, + variableLabels: variableLabels, + } + if help == "" { + d.err = errors.New("empty help string") + return d + } + if !model.IsValidMetricName(model.LabelValue(fqName)) { + d.err = fmt.Errorf("%q is not a valid metric name", fqName) + return d + } + // labelValues contains the label values of const labels (in order of + // their sorted label names) plus the fqName (at position 0). + labelValues := make([]string, 1, len(constLabels)+1) + labelValues[0] = fqName + labelNames := make([]string, 0, len(constLabels)+len(variableLabels)) + labelNameSet := map[string]struct{}{} + // First add only the const label names and sort them... + for labelName := range constLabels { + if !checkLabelName(labelName) { + d.err = fmt.Errorf("%q is not a valid label name", labelName) + return d + } + labelNames = append(labelNames, labelName) + labelNameSet[labelName] = struct{}{} + } + sort.Strings(labelNames) + // ... so that we can now add const label values in the order of their names. + for _, labelName := range labelNames { + labelValues = append(labelValues, constLabels[labelName]) + } + // Validate the const label values. They can't have a wrong cardinality, so + // use in len(labelValues) as expectedNumberOfValues. + if err := validateLabelValues(labelValues, len(labelValues)); err != nil { + d.err = err + return d + } + // Now add the variable label names, but prefix them with something that + // cannot be in a regular label name. That prevents matching the label + // dimension with a different mix between preset and variable labels. + for _, labelName := range variableLabels { + if !checkLabelName(labelName) { + d.err = fmt.Errorf("%q is not a valid label name", labelName) + return d + } + labelNames = append(labelNames, "$"+labelName) + labelNameSet[labelName] = struct{}{} + } + if len(labelNames) != len(labelNameSet) { + d.err = errors.New("duplicate label names") + return d + } + + vh := hashNew() + for _, val := range labelValues { + vh = hashAdd(vh, val) + vh = hashAddByte(vh, separatorByte) + } + d.id = vh + // Sort labelNames so that order doesn't matter for the hash. + sort.Strings(labelNames) + // Now hash together (in this order) the help string and the sorted + // label names. + lh := hashNew() + lh = hashAdd(lh, help) + lh = hashAddByte(lh, separatorByte) + for _, labelName := range labelNames { + lh = hashAdd(lh, labelName) + lh = hashAddByte(lh, separatorByte) + } + d.dimHash = lh + + d.constLabelPairs = make([]*dto.LabelPair, 0, len(constLabels)) + for n, v := range constLabels { + d.constLabelPairs = append(d.constLabelPairs, &dto.LabelPair{ + Name: proto.String(n), + Value: proto.String(v), + }) + } + sort.Sort(LabelPairSorter(d.constLabelPairs)) + return d +} + +// NewInvalidDesc returns an invalid descriptor, i.e. a descriptor with the +// provided error set. If a collector returning such a descriptor is registered, +// registration will fail with the provided error. NewInvalidDesc can be used by +// a Collector to signal inability to describe itself. +func NewInvalidDesc(err error) *Desc { + return &Desc{ + err: err, + } +} + +func (d *Desc) String() string { + lpStrings := make([]string, 0, len(d.constLabelPairs)) + for _, lp := range d.constLabelPairs { + lpStrings = append( + lpStrings, + fmt.Sprintf("%s=%q", lp.GetName(), lp.GetValue()), + ) + } + return fmt.Sprintf( + "Desc{fqName: %q, help: %q, constLabels: {%s}, variableLabels: %v}", + d.fqName, + d.help, + strings.Join(lpStrings, ","), + d.variableLabels, + ) +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/doc.go b/vendor/github.com/prometheus/client_golang/prometheus/doc.go new file mode 100644 index 000000000..83c3657d7 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/doc.go @@ -0,0 +1,191 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package prometheus is the core instrumentation package. It provides metrics +// primitives to instrument code for monitoring. It also offers a registry for +// metrics. Sub-packages allow to expose the registered metrics via HTTP +// (package promhttp) or push them to a Pushgateway (package push). There is +// also a sub-package promauto, which provides metrics constructors with +// automatic registration. +// +// All exported functions and methods are safe to be used concurrently unless +// specified otherwise. +// +// A Basic Example +// +// As a starting point, a very basic usage example: +// +// package main +// +// import ( +// "log" +// "net/http" +// +// "github.com/prometheus/client_golang/prometheus" +// "github.com/prometheus/client_golang/prometheus/promhttp" +// ) +// +// var ( +// cpuTemp = prometheus.NewGauge(prometheus.GaugeOpts{ +// Name: "cpu_temperature_celsius", +// Help: "Current temperature of the CPU.", +// }) +// hdFailures = prometheus.NewCounterVec( +// prometheus.CounterOpts{ +// Name: "hd_errors_total", +// Help: "Number of hard-disk errors.", +// }, +// []string{"device"}, +// ) +// ) +// +// func init() { +// // Metrics have to be registered to be exposed: +// prometheus.MustRegister(cpuTemp) +// prometheus.MustRegister(hdFailures) +// } +// +// func main() { +// cpuTemp.Set(65.3) +// hdFailures.With(prometheus.Labels{"device":"/dev/sda"}).Inc() +// +// // The Handler function provides a default handler to expose metrics +// // via an HTTP server. "/metrics" is the usual endpoint for that. +// http.Handle("/metrics", promhttp.Handler()) +// log.Fatal(http.ListenAndServe(":8080", nil)) +// } +// +// +// This is a complete program that exports two metrics, a Gauge and a Counter, +// the latter with a label attached to turn it into a (one-dimensional) vector. +// +// Metrics +// +// The number of exported identifiers in this package might appear a bit +// overwhelming. However, in addition to the basic plumbing shown in the example +// above, you only need to understand the different metric types and their +// vector versions for basic usage. Furthermore, if you are not concerned with +// fine-grained control of when and how to register metrics with the registry, +// have a look at the promauto package, which will effectively allow you to +// ignore registration altogether in simple cases. +// +// Above, you have already touched the Counter and the Gauge. There are two more +// advanced metric types: the Summary and Histogram. A more thorough description +// of those four metric types can be found in the Prometheus docs: +// https://prometheus.io/docs/concepts/metric_types/ +// +// A fifth "type" of metric is Untyped. It behaves like a Gauge, but signals the +// Prometheus server not to assume anything about its type. +// +// In addition to the fundamental metric types Gauge, Counter, Summary, +// Histogram, and Untyped, a very important part of the Prometheus data model is +// the partitioning of samples along dimensions called labels, which results in +// metric vectors. The fundamental types are GaugeVec, CounterVec, SummaryVec, +// HistogramVec, and UntypedVec. +// +// While only the fundamental metric types implement the Metric interface, both +// the metrics and their vector versions implement the Collector interface. A +// Collector manages the collection of a number of Metrics, but for convenience, +// a Metric can also “collect itself”. Note that Gauge, Counter, Summary, +// Histogram, and Untyped are interfaces themselves while GaugeVec, CounterVec, +// SummaryVec, HistogramVec, and UntypedVec are not. +// +// To create instances of Metrics and their vector versions, you need a suitable +// …Opts struct, i.e. GaugeOpts, CounterOpts, SummaryOpts, HistogramOpts, or +// UntypedOpts. +// +// Custom Collectors and constant Metrics +// +// While you could create your own implementations of Metric, most likely you +// will only ever implement the Collector interface on your own. At a first +// glance, a custom Collector seems handy to bundle Metrics for common +// registration (with the prime example of the different metric vectors above, +// which bundle all the metrics of the same name but with different labels). +// +// There is a more involved use case, too: If you already have metrics +// available, created outside of the Prometheus context, you don't need the +// interface of the various Metric types. You essentially want to mirror the +// existing numbers into Prometheus Metrics during collection. An own +// implementation of the Collector interface is perfect for that. You can create +// Metric instances “on the fly” using NewConstMetric, NewConstHistogram, and +// NewConstSummary (and their respective Must… versions). That will happen in +// the Collect method. The Describe method has to return separate Desc +// instances, representative of the “throw-away” metrics to be created later. +// NewDesc comes in handy to create those Desc instances. +// +// The Collector example illustrates the use case. You can also look at the +// source code of the processCollector (mirroring process metrics), the +// goCollector (mirroring Go metrics), or the expvarCollector (mirroring expvar +// metrics) as examples that are used in this package itself. +// +// If you just need to call a function to get a single float value to collect as +// a metric, GaugeFunc, CounterFunc, or UntypedFunc might be interesting +// shortcuts. +// +// Advanced Uses of the Registry +// +// While MustRegister is the by far most common way of registering a Collector, +// sometimes you might want to handle the errors the registration might cause. +// As suggested by the name, MustRegister panics if an error occurs. With the +// Register function, the error is returned and can be handled. +// +// An error is returned if the registered Collector is incompatible or +// inconsistent with already registered metrics. The registry aims for +// consistency of the collected metrics according to the Prometheus data model. +// Inconsistencies are ideally detected at registration time, not at collect +// time. The former will usually be detected at start-up time of a program, +// while the latter will only happen at scrape time, possibly not even on the +// first scrape if the inconsistency only becomes relevant later. That is the +// main reason why a Collector and a Metric have to describe themselves to the +// registry. +// +// So far, everything we did operated on the so-called default registry, as it +// can be found in the global DefaultRegisterer variable. With NewRegistry, you +// can create a custom registry, or you can even implement the Registerer or +// Gatherer interfaces yourself. The methods Register and Unregister work in the +// same way on a custom registry as the global functions Register and Unregister +// on the default registry. +// +// There are a number of uses for custom registries: You can use registries with +// special properties, see NewPedanticRegistry. You can avoid global state, as +// it is imposed by the DefaultRegisterer. You can use multiple registries at +// the same time to expose different metrics in different ways. You can use +// separate registries for testing purposes. +// +// Also note that the DefaultRegisterer comes registered with a Collector for Go +// runtime metrics (via NewGoCollector) and a Collector for process metrics (via +// NewProcessCollector). With a custom registry, you are in control and decide +// yourself about the Collectors to register. +// +// HTTP Exposition +// +// The Registry implements the Gatherer interface. The caller of the Gather +// method can then expose the gathered metrics in some way. Usually, the metrics +// are served via HTTP on the /metrics endpoint. That's happening in the example +// above. The tools to expose metrics via HTTP are in the promhttp sub-package. +// (The top-level functions in the prometheus package are deprecated.) +// +// Pushing to the Pushgateway +// +// Function for pushing to the Pushgateway can be found in the push sub-package. +// +// Graphite Bridge +// +// Functions and examples to push metrics from a Gatherer to Graphite can be +// found in the graphite sub-package. +// +// Other Means of Exposition +// +// More ways of exposing metrics can easily be added by following the approaches +// of the existing implementations. +package prometheus diff --git a/vendor/github.com/prometheus/client_golang/prometheus/expvar_collector.go b/vendor/github.com/prometheus/client_golang/prometheus/expvar_collector.go new file mode 100644 index 000000000..18a99d5fa --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/expvar_collector.go @@ -0,0 +1,119 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import ( + "encoding/json" + "expvar" +) + +type expvarCollector struct { + exports map[string]*Desc +} + +// NewExpvarCollector returns a newly allocated expvar Collector that still has +// to be registered with a Prometheus registry. +// +// An expvar Collector collects metrics from the expvar interface. It provides a +// quick way to expose numeric values that are already exported via expvar as +// Prometheus metrics. Note that the data models of expvar and Prometheus are +// fundamentally different, and that the expvar Collector is inherently slower +// than native Prometheus metrics. Thus, the expvar Collector is probably great +// for experiments and prototying, but you should seriously consider a more +// direct implementation of Prometheus metrics for monitoring production +// systems. +// +// The exports map has the following meaning: +// +// The keys in the map correspond to expvar keys, i.e. for every expvar key you +// want to export as Prometheus metric, you need an entry in the exports +// map. The descriptor mapped to each key describes how to export the expvar +// value. It defines the name and the help string of the Prometheus metric +// proxying the expvar value. The type will always be Untyped. +// +// For descriptors without variable labels, the expvar value must be a number or +// a bool. The number is then directly exported as the Prometheus sample +// value. (For a bool, 'false' translates to 0 and 'true' to 1). Expvar values +// that are not numbers or bools are silently ignored. +// +// If the descriptor has one variable label, the expvar value must be an expvar +// map. The keys in the expvar map become the various values of the one +// Prometheus label. The values in the expvar map must be numbers or bools again +// as above. +// +// For descriptors with more than one variable label, the expvar must be a +// nested expvar map, i.e. where the values of the topmost map are maps again +// etc. until a depth is reached that corresponds to the number of labels. The +// leaves of that structure must be numbers or bools as above to serve as the +// sample values. +// +// Anything that does not fit into the scheme above is silently ignored. +func NewExpvarCollector(exports map[string]*Desc) Collector { + return &expvarCollector{ + exports: exports, + } +} + +// Describe implements Collector. +func (e *expvarCollector) Describe(ch chan<- *Desc) { + for _, desc := range e.exports { + ch <- desc + } +} + +// Collect implements Collector. +func (e *expvarCollector) Collect(ch chan<- Metric) { + for name, desc := range e.exports { + var m Metric + expVar := expvar.Get(name) + if expVar == nil { + continue + } + var v interface{} + labels := make([]string, len(desc.variableLabels)) + if err := json.Unmarshal([]byte(expVar.String()), &v); err != nil { + ch <- NewInvalidMetric(desc, err) + continue + } + var processValue func(v interface{}, i int) + processValue = func(v interface{}, i int) { + if i >= len(labels) { + copiedLabels := append(make([]string, 0, len(labels)), labels...) + switch v := v.(type) { + case float64: + m = MustNewConstMetric(desc, UntypedValue, v, copiedLabels...) + case bool: + if v { + m = MustNewConstMetric(desc, UntypedValue, 1, copiedLabels...) + } else { + m = MustNewConstMetric(desc, UntypedValue, 0, copiedLabels...) + } + default: + return + } + ch <- m + return + } + vm, ok := v.(map[string]interface{}) + if !ok { + return + } + for lv, val := range vm { + labels[i] = lv + processValue(val, i+1) + } + } + processValue(v, 0) + } +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/fnv.go b/vendor/github.com/prometheus/client_golang/prometheus/fnv.go new file mode 100644 index 000000000..e3b67df8a --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/fnv.go @@ -0,0 +1,29 @@ +package prometheus + +// Inline and byte-free variant of hash/fnv's fnv64a. + +const ( + offset64 = 14695981039346656037 + prime64 = 1099511628211 +) + +// hashNew initializies a new fnv64a hash value. +func hashNew() uint64 { + return offset64 +} + +// hashAdd adds a string to a fnv64a hash value, returning the updated hash. +func hashAdd(h uint64, s string) uint64 { + for i := 0; i < len(s); i++ { + h ^= uint64(s[i]) + h *= prime64 + } + return h +} + +// hashAddByte adds a byte to a fnv64a hash value, returning the updated hash. +func hashAddByte(h uint64, b byte) uint64 { + h ^= uint64(b) + h *= prime64 + return h +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/gauge.go b/vendor/github.com/prometheus/client_golang/prometheus/gauge.go new file mode 100644 index 000000000..17c72d7eb --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/gauge.go @@ -0,0 +1,286 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import ( + "math" + "sync/atomic" + "time" + + dto "github.com/prometheus/client_model/go" +) + +// Gauge is a Metric that represents a single numerical value that can +// arbitrarily go up and down. +// +// A Gauge is typically used for measured values like temperatures or current +// memory usage, but also "counts" that can go up and down, like the number of +// running goroutines. +// +// To create Gauge instances, use NewGauge. +type Gauge interface { + Metric + Collector + + // Set sets the Gauge to an arbitrary value. + Set(float64) + // Inc increments the Gauge by 1. Use Add to increment it by arbitrary + // values. + Inc() + // Dec decrements the Gauge by 1. Use Sub to decrement it by arbitrary + // values. + Dec() + // Add adds the given value to the Gauge. (The value can be negative, + // resulting in a decrease of the Gauge.) + Add(float64) + // Sub subtracts the given value from the Gauge. (The value can be + // negative, resulting in an increase of the Gauge.) + Sub(float64) + + // SetToCurrentTime sets the Gauge to the current Unix time in seconds. + SetToCurrentTime() +} + +// GaugeOpts is an alias for Opts. See there for doc comments. +type GaugeOpts Opts + +// NewGauge creates a new Gauge based on the provided GaugeOpts. +// +// The returned implementation is optimized for a fast Set method. If you have a +// choice for managing the value of a Gauge via Set vs. Inc/Dec/Add/Sub, pick +// the former. For example, the Inc method of the returned Gauge is slower than +// the Inc method of a Counter returned by NewCounter. This matches the typical +// scenarios for Gauges and Counters, where the former tends to be Set-heavy and +// the latter Inc-heavy. +func NewGauge(opts GaugeOpts) Gauge { + desc := NewDesc( + BuildFQName(opts.Namespace, opts.Subsystem, opts.Name), + opts.Help, + nil, + opts.ConstLabels, + ) + result := &gauge{desc: desc, labelPairs: desc.constLabelPairs} + result.init(result) // Init self-collection. + return result +} + +type gauge struct { + // valBits contains the bits of the represented float64 value. It has + // to go first in the struct to guarantee alignment for atomic + // operations. http://golang.org/pkg/sync/atomic/#pkg-note-BUG + valBits uint64 + + selfCollector + + desc *Desc + labelPairs []*dto.LabelPair +} + +func (g *gauge) Desc() *Desc { + return g.desc +} + +func (g *gauge) Set(val float64) { + atomic.StoreUint64(&g.valBits, math.Float64bits(val)) +} + +func (g *gauge) SetToCurrentTime() { + g.Set(float64(time.Now().UnixNano()) / 1e9) +} + +func (g *gauge) Inc() { + g.Add(1) +} + +func (g *gauge) Dec() { + g.Add(-1) +} + +func (g *gauge) Add(val float64) { + for { + oldBits := atomic.LoadUint64(&g.valBits) + newBits := math.Float64bits(math.Float64frombits(oldBits) + val) + if atomic.CompareAndSwapUint64(&g.valBits, oldBits, newBits) { + return + } + } +} + +func (g *gauge) Sub(val float64) { + g.Add(val * -1) +} + +func (g *gauge) Write(out *dto.Metric) error { + val := math.Float64frombits(atomic.LoadUint64(&g.valBits)) + return populateMetric(GaugeValue, val, g.labelPairs, out) +} + +// GaugeVec is a Collector that bundles a set of Gauges that all share the same +// Desc, but have different values for their variable labels. This is used if +// you want to count the same thing partitioned by various dimensions +// (e.g. number of operations queued, partitioned by user and operation +// type). Create instances with NewGaugeVec. +type GaugeVec struct { + *metricVec +} + +// NewGaugeVec creates a new GaugeVec based on the provided GaugeOpts and +// partitioned by the given label names. +func NewGaugeVec(opts GaugeOpts, labelNames []string) *GaugeVec { + desc := NewDesc( + BuildFQName(opts.Namespace, opts.Subsystem, opts.Name), + opts.Help, + labelNames, + opts.ConstLabels, + ) + return &GaugeVec{ + metricVec: newMetricVec(desc, func(lvs ...string) Metric { + if len(lvs) != len(desc.variableLabels) { + panic(errInconsistentCardinality) + } + result := &gauge{desc: desc, labelPairs: makeLabelPairs(desc, lvs)} + result.init(result) // Init self-collection. + return result + }), + } +} + +// GetMetricWithLabelValues returns the Gauge for the given slice of label +// values (same order as the VariableLabels in Desc). If that combination of +// label values is accessed for the first time, a new Gauge is created. +// +// It is possible to call this method without using the returned Gauge to only +// create the new Gauge but leave it at its starting value 0. See also the +// SummaryVec example. +// +// Keeping the Gauge for later use is possible (and should be considered if +// performance is critical), but keep in mind that Reset, DeleteLabelValues and +// Delete can be used to delete the Gauge from the GaugeVec. In that case, the +// Gauge will still exist, but it will not be exported anymore, even if a +// Gauge with the same label values is created later. See also the CounterVec +// example. +// +// An error is returned if the number of label values is not the same as the +// number of VariableLabels in Desc (minus any curried labels). +// +// Note that for more than one label value, this method is prone to mistakes +// caused by an incorrect order of arguments. Consider GetMetricWith(Labels) as +// an alternative to avoid that type of mistake. For higher label numbers, the +// latter has a much more readable (albeit more verbose) syntax, but it comes +// with a performance overhead (for creating and processing the Labels map). +func (v *GaugeVec) GetMetricWithLabelValues(lvs ...string) (Gauge, error) { + metric, err := v.metricVec.getMetricWithLabelValues(lvs...) + if metric != nil { + return metric.(Gauge), err + } + return nil, err +} + +// GetMetricWith returns the Gauge for the given Labels map (the label names +// must match those of the VariableLabels in Desc). If that label map is +// accessed for the first time, a new Gauge is created. Implications of +// creating a Gauge without using it and keeping the Gauge for later use are +// the same as for GetMetricWithLabelValues. +// +// An error is returned if the number and names of the Labels are inconsistent +// with those of the VariableLabels in Desc (minus any curried labels). +// +// This method is used for the same purpose as +// GetMetricWithLabelValues(...string). See there for pros and cons of the two +// methods. +func (v *GaugeVec) GetMetricWith(labels Labels) (Gauge, error) { + metric, err := v.metricVec.getMetricWith(labels) + if metric != nil { + return metric.(Gauge), err + } + return nil, err +} + +// WithLabelValues works as GetMetricWithLabelValues, but panics where +// GetMetricWithLabelValues would have returned an error. Not returning an +// error allows shortcuts like +// myVec.WithLabelValues("404", "GET").Add(42) +func (v *GaugeVec) WithLabelValues(lvs ...string) Gauge { + g, err := v.GetMetricWithLabelValues(lvs...) + if err != nil { + panic(err) + } + return g +} + +// With works as GetMetricWith, but panics where GetMetricWithLabels would have +// returned an error. Not returning an error allows shortcuts like +// myVec.With(prometheus.Labels{"code": "404", "method": "GET"}).Add(42) +func (v *GaugeVec) With(labels Labels) Gauge { + g, err := v.GetMetricWith(labels) + if err != nil { + panic(err) + } + return g +} + +// CurryWith returns a vector curried with the provided labels, i.e. the +// returned vector has those labels pre-set for all labeled operations performed +// on it. The cardinality of the curried vector is reduced accordingly. The +// order of the remaining labels stays the same (just with the curried labels +// taken out of the sequence – which is relevant for the +// (GetMetric)WithLabelValues methods). It is possible to curry a curried +// vector, but only with labels not yet used for currying before. +// +// The metrics contained in the GaugeVec are shared between the curried and +// uncurried vectors. They are just accessed differently. Curried and uncurried +// vectors behave identically in terms of collection. Only one must be +// registered with a given registry (usually the uncurried version). The Reset +// method deletes all metrics, even if called on a curried vector. +func (v *GaugeVec) CurryWith(labels Labels) (*GaugeVec, error) { + vec, err := v.curryWith(labels) + if vec != nil { + return &GaugeVec{vec}, err + } + return nil, err +} + +// MustCurryWith works as CurryWith but panics where CurryWith would have +// returned an error. +func (v *GaugeVec) MustCurryWith(labels Labels) *GaugeVec { + vec, err := v.CurryWith(labels) + if err != nil { + panic(err) + } + return vec +} + +// GaugeFunc is a Gauge whose value is determined at collect time by calling a +// provided function. +// +// To create GaugeFunc instances, use NewGaugeFunc. +type GaugeFunc interface { + Metric + Collector +} + +// NewGaugeFunc creates a new GaugeFunc based on the provided GaugeOpts. The +// value reported is determined by calling the given function from within the +// Write method. Take into account that metric collection may happen +// concurrently. If that results in concurrent calls to Write, like in the case +// where a GaugeFunc is directly registered with Prometheus, the provided +// function must be concurrency-safe. +func NewGaugeFunc(opts GaugeOpts, function func() float64) GaugeFunc { + return newValueFunc(NewDesc( + BuildFQName(opts.Namespace, opts.Subsystem, opts.Name), + opts.Help, + nil, + opts.ConstLabels, + ), GaugeValue, function) +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/go_collector.go b/vendor/github.com/prometheus/client_golang/prometheus/go_collector.go new file mode 100644 index 000000000..096454af9 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/go_collector.go @@ -0,0 +1,284 @@ +package prometheus + +import ( + "fmt" + "runtime" + "runtime/debug" + "time" +) + +type goCollector struct { + goroutinesDesc *Desc + threadsDesc *Desc + gcDesc *Desc + goInfoDesc *Desc + + // metrics to describe and collect + metrics memStatsMetrics +} + +// NewGoCollector returns a collector which exports metrics about the current +// go process. +func NewGoCollector() Collector { + return &goCollector{ + goroutinesDesc: NewDesc( + "go_goroutines", + "Number of goroutines that currently exist.", + nil, nil), + threadsDesc: NewDesc( + "go_threads", + "Number of OS threads created.", + nil, nil), + gcDesc: NewDesc( + "go_gc_duration_seconds", + "A summary of the GC invocation durations.", + nil, nil), + goInfoDesc: NewDesc( + "go_info", + "Information about the Go environment.", + nil, Labels{"version": runtime.Version()}), + metrics: memStatsMetrics{ + { + desc: NewDesc( + memstatNamespace("alloc_bytes"), + "Number of bytes allocated and still in use.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.Alloc) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("alloc_bytes_total"), + "Total number of bytes allocated, even if freed.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.TotalAlloc) }, + valType: CounterValue, + }, { + desc: NewDesc( + memstatNamespace("sys_bytes"), + "Number of bytes obtained from system.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.Sys) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("lookups_total"), + "Total number of pointer lookups.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.Lookups) }, + valType: CounterValue, + }, { + desc: NewDesc( + memstatNamespace("mallocs_total"), + "Total number of mallocs.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.Mallocs) }, + valType: CounterValue, + }, { + desc: NewDesc( + memstatNamespace("frees_total"), + "Total number of frees.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.Frees) }, + valType: CounterValue, + }, { + desc: NewDesc( + memstatNamespace("heap_alloc_bytes"), + "Number of heap bytes allocated and still in use.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.HeapAlloc) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("heap_sys_bytes"), + "Number of heap bytes obtained from system.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.HeapSys) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("heap_idle_bytes"), + "Number of heap bytes waiting to be used.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.HeapIdle) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("heap_inuse_bytes"), + "Number of heap bytes that are in use.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.HeapInuse) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("heap_released_bytes"), + "Number of heap bytes released to OS.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.HeapReleased) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("heap_objects"), + "Number of allocated objects.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.HeapObjects) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("stack_inuse_bytes"), + "Number of bytes in use by the stack allocator.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.StackInuse) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("stack_sys_bytes"), + "Number of bytes obtained from system for stack allocator.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.StackSys) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("mspan_inuse_bytes"), + "Number of bytes in use by mspan structures.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.MSpanInuse) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("mspan_sys_bytes"), + "Number of bytes used for mspan structures obtained from system.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.MSpanSys) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("mcache_inuse_bytes"), + "Number of bytes in use by mcache structures.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.MCacheInuse) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("mcache_sys_bytes"), + "Number of bytes used for mcache structures obtained from system.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.MCacheSys) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("buck_hash_sys_bytes"), + "Number of bytes used by the profiling bucket hash table.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.BuckHashSys) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("gc_sys_bytes"), + "Number of bytes used for garbage collection system metadata.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.GCSys) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("other_sys_bytes"), + "Number of bytes used for other system allocations.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.OtherSys) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("next_gc_bytes"), + "Number of heap bytes when next garbage collection will take place.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.NextGC) }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("last_gc_time_seconds"), + "Number of seconds since 1970 of last garbage collection.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return float64(ms.LastGC) / 1e9 }, + valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("gc_cpu_fraction"), + "The fraction of this program's available CPU time used by the GC since the program started.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return ms.GCCPUFraction }, + valType: GaugeValue, + }, + }, + } +} + +func memstatNamespace(s string) string { + return fmt.Sprintf("go_memstats_%s", s) +} + +// Describe returns all descriptions of the collector. +func (c *goCollector) Describe(ch chan<- *Desc) { + ch <- c.goroutinesDesc + ch <- c.threadsDesc + ch <- c.gcDesc + ch <- c.goInfoDesc + for _, i := range c.metrics { + ch <- i.desc + } +} + +// Collect returns the current state of all metrics of the collector. +func (c *goCollector) Collect(ch chan<- Metric) { + ch <- MustNewConstMetric(c.goroutinesDesc, GaugeValue, float64(runtime.NumGoroutine())) + n, _ := runtime.ThreadCreateProfile(nil) + ch <- MustNewConstMetric(c.threadsDesc, GaugeValue, float64(n)) + + var stats debug.GCStats + stats.PauseQuantiles = make([]time.Duration, 5) + debug.ReadGCStats(&stats) + + quantiles := make(map[float64]float64) + for idx, pq := range stats.PauseQuantiles[1:] { + quantiles[float64(idx+1)/float64(len(stats.PauseQuantiles)-1)] = pq.Seconds() + } + quantiles[0.0] = stats.PauseQuantiles[0].Seconds() + ch <- MustNewConstSummary(c.gcDesc, uint64(stats.NumGC), float64(stats.PauseTotal.Seconds()), quantiles) + + ch <- MustNewConstMetric(c.goInfoDesc, GaugeValue, 1) + + ms := &runtime.MemStats{} + runtime.ReadMemStats(ms) + for _, i := range c.metrics { + ch <- MustNewConstMetric(i.desc, i.valType, i.eval(ms)) + } +} + +// memStatsMetrics provide description, value, and value type for memstat metrics. +type memStatsMetrics []struct { + desc *Desc + eval func(*runtime.MemStats) float64 + valType ValueType +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/histogram.go b/vendor/github.com/prometheus/client_golang/prometheus/histogram.go new file mode 100644 index 000000000..331783a75 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/histogram.go @@ -0,0 +1,505 @@ +// Copyright 2015 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import ( + "fmt" + "math" + "sort" + "sync/atomic" + + "github.com/golang/protobuf/proto" + + dto "github.com/prometheus/client_model/go" +) + +// A Histogram counts individual observations from an event or sample stream in +// configurable buckets. Similar to a summary, it also provides a sum of +// observations and an observation count. +// +// On the Prometheus server, quantiles can be calculated from a Histogram using +// the histogram_quantile function in the query language. +// +// Note that Histograms, in contrast to Summaries, can be aggregated with the +// Prometheus query language (see the documentation for detailed +// procedures). However, Histograms require the user to pre-define suitable +// buckets, and they are in general less accurate. The Observe method of a +// Histogram has a very low performance overhead in comparison with the Observe +// method of a Summary. +// +// To create Histogram instances, use NewHistogram. +type Histogram interface { + Metric + Collector + + // Observe adds a single observation to the histogram. + Observe(float64) +} + +// bucketLabel is used for the label that defines the upper bound of a +// bucket of a histogram ("le" -> "less or equal"). +const bucketLabel = "le" + +// DefBuckets are the default Histogram buckets. The default buckets are +// tailored to broadly measure the response time (in seconds) of a network +// service. Most likely, however, you will be required to define buckets +// customized to your use case. +var ( + DefBuckets = []float64{.005, .01, .025, .05, .1, .25, .5, 1, 2.5, 5, 10} + + errBucketLabelNotAllowed = fmt.Errorf( + "%q is not allowed as label name in histograms", bucketLabel, + ) +) + +// LinearBuckets creates 'count' buckets, each 'width' wide, where the lowest +// bucket has an upper bound of 'start'. The final +Inf bucket is not counted +// and not included in the returned slice. The returned slice is meant to be +// used for the Buckets field of HistogramOpts. +// +// The function panics if 'count' is zero or negative. +func LinearBuckets(start, width float64, count int) []float64 { + if count < 1 { + panic("LinearBuckets needs a positive count") + } + buckets := make([]float64, count) + for i := range buckets { + buckets[i] = start + start += width + } + return buckets +} + +// ExponentialBuckets creates 'count' buckets, where the lowest bucket has an +// upper bound of 'start' and each following bucket's upper bound is 'factor' +// times the previous bucket's upper bound. The final +Inf bucket is not counted +// and not included in the returned slice. The returned slice is meant to be +// used for the Buckets field of HistogramOpts. +// +// The function panics if 'count' is 0 or negative, if 'start' is 0 or negative, +// or if 'factor' is less than or equal 1. +func ExponentialBuckets(start, factor float64, count int) []float64 { + if count < 1 { + panic("ExponentialBuckets needs a positive count") + } + if start <= 0 { + panic("ExponentialBuckets needs a positive start value") + } + if factor <= 1 { + panic("ExponentialBuckets needs a factor greater than 1") + } + buckets := make([]float64, count) + for i := range buckets { + buckets[i] = start + start *= factor + } + return buckets +} + +// HistogramOpts bundles the options for creating a Histogram metric. It is +// mandatory to set Name and Help to a non-empty string. All other fields are +// optional and can safely be left at their zero value. +type HistogramOpts struct { + // Namespace, Subsystem, and Name are components of the fully-qualified + // name of the Histogram (created by joining these components with + // "_"). Only Name is mandatory, the others merely help structuring the + // name. Note that the fully-qualified name of the Histogram must be a + // valid Prometheus metric name. + Namespace string + Subsystem string + Name string + + // Help provides information about this Histogram. Mandatory! + // + // Metrics with the same fully-qualified name must have the same Help + // string. + Help string + + // ConstLabels are used to attach fixed labels to this metric. Metrics + // with the same fully-qualified name must have the same label names in + // their ConstLabels. + // + // ConstLabels are only used rarely. In particular, do not use them to + // attach the same labels to all your metrics. Those use cases are + // better covered by target labels set by the scraping Prometheus + // server, or by one specific metric (e.g. a build_info or a + // machine_role metric). See also + // https://prometheus.io/docs/instrumenting/writing_exporters/#target-labels,-not-static-scraped-labels + ConstLabels Labels + + // Buckets defines the buckets into which observations are counted. Each + // element in the slice is the upper inclusive bound of a bucket. The + // values must be sorted in strictly increasing order. There is no need + // to add a highest bucket with +Inf bound, it will be added + // implicitly. The default value is DefBuckets. + Buckets []float64 +} + +// NewHistogram creates a new Histogram based on the provided HistogramOpts. It +// panics if the buckets in HistogramOpts are not in strictly increasing order. +func NewHistogram(opts HistogramOpts) Histogram { + return newHistogram( + NewDesc( + BuildFQName(opts.Namespace, opts.Subsystem, opts.Name), + opts.Help, + nil, + opts.ConstLabels, + ), + opts, + ) +} + +func newHistogram(desc *Desc, opts HistogramOpts, labelValues ...string) Histogram { + if len(desc.variableLabels) != len(labelValues) { + panic(errInconsistentCardinality) + } + + for _, n := range desc.variableLabels { + if n == bucketLabel { + panic(errBucketLabelNotAllowed) + } + } + for _, lp := range desc.constLabelPairs { + if lp.GetName() == bucketLabel { + panic(errBucketLabelNotAllowed) + } + } + + if len(opts.Buckets) == 0 { + opts.Buckets = DefBuckets + } + + h := &histogram{ + desc: desc, + upperBounds: opts.Buckets, + labelPairs: makeLabelPairs(desc, labelValues), + } + for i, upperBound := range h.upperBounds { + if i < len(h.upperBounds)-1 { + if upperBound >= h.upperBounds[i+1] { + panic(fmt.Errorf( + "histogram buckets must be in increasing order: %f >= %f", + upperBound, h.upperBounds[i+1], + )) + } + } else { + if math.IsInf(upperBound, +1) { + // The +Inf bucket is implicit. Remove it here. + h.upperBounds = h.upperBounds[:i] + } + } + } + // Finally we know the final length of h.upperBounds and can make counts. + h.counts = make([]uint64, len(h.upperBounds)) + + h.init(h) // Init self-collection. + return h +} + +type histogram struct { + // sumBits contains the bits of the float64 representing the sum of all + // observations. sumBits and count have to go first in the struct to + // guarantee alignment for atomic operations. + // http://golang.org/pkg/sync/atomic/#pkg-note-BUG + sumBits uint64 + count uint64 + + selfCollector + // Note that there is no mutex required. + + desc *Desc + + upperBounds []float64 + counts []uint64 + + labelPairs []*dto.LabelPair +} + +func (h *histogram) Desc() *Desc { + return h.desc +} + +func (h *histogram) Observe(v float64) { + // TODO(beorn7): For small numbers of buckets (<30), a linear search is + // slightly faster than the binary search. If we really care, we could + // switch from one search strategy to the other depending on the number + // of buckets. + // + // Microbenchmarks (BenchmarkHistogramNoLabels): + // 11 buckets: 38.3 ns/op linear - binary 48.7 ns/op + // 100 buckets: 78.1 ns/op linear - binary 54.9 ns/op + // 300 buckets: 154 ns/op linear - binary 61.6 ns/op + i := sort.SearchFloat64s(h.upperBounds, v) + if i < len(h.counts) { + atomic.AddUint64(&h.counts[i], 1) + } + atomic.AddUint64(&h.count, 1) + for { + oldBits := atomic.LoadUint64(&h.sumBits) + newBits := math.Float64bits(math.Float64frombits(oldBits) + v) + if atomic.CompareAndSwapUint64(&h.sumBits, oldBits, newBits) { + break + } + } +} + +func (h *histogram) Write(out *dto.Metric) error { + his := &dto.Histogram{} + buckets := make([]*dto.Bucket, len(h.upperBounds)) + + his.SampleSum = proto.Float64(math.Float64frombits(atomic.LoadUint64(&h.sumBits))) + his.SampleCount = proto.Uint64(atomic.LoadUint64(&h.count)) + var count uint64 + for i, upperBound := range h.upperBounds { + count += atomic.LoadUint64(&h.counts[i]) + buckets[i] = &dto.Bucket{ + CumulativeCount: proto.Uint64(count), + UpperBound: proto.Float64(upperBound), + } + } + his.Bucket = buckets + out.Histogram = his + out.Label = h.labelPairs + return nil +} + +// HistogramVec is a Collector that bundles a set of Histograms that all share the +// same Desc, but have different values for their variable labels. This is used +// if you want to count the same thing partitioned by various dimensions +// (e.g. HTTP request latencies, partitioned by status code and method). Create +// instances with NewHistogramVec. +type HistogramVec struct { + *metricVec +} + +// NewHistogramVec creates a new HistogramVec based on the provided HistogramOpts and +// partitioned by the given label names. +func NewHistogramVec(opts HistogramOpts, labelNames []string) *HistogramVec { + desc := NewDesc( + BuildFQName(opts.Namespace, opts.Subsystem, opts.Name), + opts.Help, + labelNames, + opts.ConstLabels, + ) + return &HistogramVec{ + metricVec: newMetricVec(desc, func(lvs ...string) Metric { + return newHistogram(desc, opts, lvs...) + }), + } +} + +// GetMetricWithLabelValues returns the Histogram for the given slice of label +// values (same order as the VariableLabels in Desc). If that combination of +// label values is accessed for the first time, a new Histogram is created. +// +// It is possible to call this method without using the returned Histogram to only +// create the new Histogram but leave it at its starting value, a Histogram without +// any observations. +// +// Keeping the Histogram for later use is possible (and should be considered if +// performance is critical), but keep in mind that Reset, DeleteLabelValues and +// Delete can be used to delete the Histogram from the HistogramVec. In that case, the +// Histogram will still exist, but it will not be exported anymore, even if a +// Histogram with the same label values is created later. See also the CounterVec +// example. +// +// An error is returned if the number of label values is not the same as the +// number of VariableLabels in Desc (minus any curried labels). +// +// Note that for more than one label value, this method is prone to mistakes +// caused by an incorrect order of arguments. Consider GetMetricWith(Labels) as +// an alternative to avoid that type of mistake. For higher label numbers, the +// latter has a much more readable (albeit more verbose) syntax, but it comes +// with a performance overhead (for creating and processing the Labels map). +// See also the GaugeVec example. +func (v *HistogramVec) GetMetricWithLabelValues(lvs ...string) (Observer, error) { + metric, err := v.metricVec.getMetricWithLabelValues(lvs...) + if metric != nil { + return metric.(Observer), err + } + return nil, err +} + +// GetMetricWith returns the Histogram for the given Labels map (the label names +// must match those of the VariableLabels in Desc). If that label map is +// accessed for the first time, a new Histogram is created. Implications of +// creating a Histogram without using it and keeping the Histogram for later use +// are the same as for GetMetricWithLabelValues. +// +// An error is returned if the number and names of the Labels are inconsistent +// with those of the VariableLabels in Desc (minus any curried labels). +// +// This method is used for the same purpose as +// GetMetricWithLabelValues(...string). See there for pros and cons of the two +// methods. +func (v *HistogramVec) GetMetricWith(labels Labels) (Observer, error) { + metric, err := v.metricVec.getMetricWith(labels) + if metric != nil { + return metric.(Observer), err + } + return nil, err +} + +// WithLabelValues works as GetMetricWithLabelValues, but panics where +// GetMetricWithLabelValues would have returned an error. Not returning an +// error allows shortcuts like +// myVec.WithLabelValues("404", "GET").Observe(42.21) +func (v *HistogramVec) WithLabelValues(lvs ...string) Observer { + h, err := v.GetMetricWithLabelValues(lvs...) + if err != nil { + panic(err) + } + return h +} + +// With works as GetMetricWith but panics where GetMetricWithLabels would have +// returned an error. Not returning an error allows shortcuts like +// myVec.With(prometheus.Labels{"code": "404", "method": "GET"}).Observe(42.21) +func (v *HistogramVec) With(labels Labels) Observer { + h, err := v.GetMetricWith(labels) + if err != nil { + panic(err) + } + return h +} + +// CurryWith returns a vector curried with the provided labels, i.e. the +// returned vector has those labels pre-set for all labeled operations performed +// on it. The cardinality of the curried vector is reduced accordingly. The +// order of the remaining labels stays the same (just with the curried labels +// taken out of the sequence – which is relevant for the +// (GetMetric)WithLabelValues methods). It is possible to curry a curried +// vector, but only with labels not yet used for currying before. +// +// The metrics contained in the HistogramVec are shared between the curried and +// uncurried vectors. They are just accessed differently. Curried and uncurried +// vectors behave identically in terms of collection. Only one must be +// registered with a given registry (usually the uncurried version). The Reset +// method deletes all metrics, even if called on a curried vector. +func (v *HistogramVec) CurryWith(labels Labels) (ObserverVec, error) { + vec, err := v.curryWith(labels) + if vec != nil { + return &HistogramVec{vec}, err + } + return nil, err +} + +// MustCurryWith works as CurryWith but panics where CurryWith would have +// returned an error. +func (v *HistogramVec) MustCurryWith(labels Labels) ObserverVec { + vec, err := v.CurryWith(labels) + if err != nil { + panic(err) + } + return vec +} + +type constHistogram struct { + desc *Desc + count uint64 + sum float64 + buckets map[float64]uint64 + labelPairs []*dto.LabelPair +} + +func (h *constHistogram) Desc() *Desc { + return h.desc +} + +func (h *constHistogram) Write(out *dto.Metric) error { + his := &dto.Histogram{} + buckets := make([]*dto.Bucket, 0, len(h.buckets)) + + his.SampleCount = proto.Uint64(h.count) + his.SampleSum = proto.Float64(h.sum) + + for upperBound, count := range h.buckets { + buckets = append(buckets, &dto.Bucket{ + CumulativeCount: proto.Uint64(count), + UpperBound: proto.Float64(upperBound), + }) + } + + if len(buckets) > 0 { + sort.Sort(buckSort(buckets)) + } + his.Bucket = buckets + + out.Histogram = his + out.Label = h.labelPairs + + return nil +} + +// NewConstHistogram returns a metric representing a Prometheus histogram with +// fixed values for the count, sum, and bucket counts. As those parameters +// cannot be changed, the returned value does not implement the Histogram +// interface (but only the Metric interface). Users of this package will not +// have much use for it in regular operations. However, when implementing custom +// Collectors, it is useful as a throw-away metric that is generated on the fly +// to send it to Prometheus in the Collect method. +// +// buckets is a map of upper bounds to cumulative counts, excluding the +Inf +// bucket. +// +// NewConstHistogram returns an error if the length of labelValues is not +// consistent with the variable labels in Desc. +func NewConstHistogram( + desc *Desc, + count uint64, + sum float64, + buckets map[float64]uint64, + labelValues ...string, +) (Metric, error) { + if err := validateLabelValues(labelValues, len(desc.variableLabels)); err != nil { + return nil, err + } + return &constHistogram{ + desc: desc, + count: count, + sum: sum, + buckets: buckets, + labelPairs: makeLabelPairs(desc, labelValues), + }, nil +} + +// MustNewConstHistogram is a version of NewConstHistogram that panics where +// NewConstMetric would have returned an error. +func MustNewConstHistogram( + desc *Desc, + count uint64, + sum float64, + buckets map[float64]uint64, + labelValues ...string, +) Metric { + m, err := NewConstHistogram(desc, count, sum, buckets, labelValues...) + if err != nil { + panic(err) + } + return m +} + +type buckSort []*dto.Bucket + +func (s buckSort) Len() int { + return len(s) +} + +func (s buckSort) Swap(i, j int) { + s[i], s[j] = s[j], s[i] +} + +func (s buckSort) Less(i, j int) bool { + return s[i].GetUpperBound() < s[j].GetUpperBound() +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/http.go b/vendor/github.com/prometheus/client_golang/prometheus/http.go new file mode 100644 index 000000000..dd0f8197f --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/http.go @@ -0,0 +1,523 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import ( + "bufio" + "bytes" + "compress/gzip" + "fmt" + "io" + "net" + "net/http" + "strconv" + "strings" + "sync" + "time" + + "github.com/prometheus/common/expfmt" +) + +// TODO(beorn7): Remove this whole file. It is a partial mirror of +// promhttp/http.go (to avoid circular import chains) where everything HTTP +// related should live. The functions here are just for avoiding +// breakage. Everything is deprecated. + +const ( + contentTypeHeader = "Content-Type" + contentLengthHeader = "Content-Length" + contentEncodingHeader = "Content-Encoding" + acceptEncodingHeader = "Accept-Encoding" +) + +var bufPool sync.Pool + +func getBuf() *bytes.Buffer { + buf := bufPool.Get() + if buf == nil { + return &bytes.Buffer{} + } + return buf.(*bytes.Buffer) +} + +func giveBuf(buf *bytes.Buffer) { + buf.Reset() + bufPool.Put(buf) +} + +// Handler returns an HTTP handler for the DefaultGatherer. It is +// already instrumented with InstrumentHandler (using "prometheus" as handler +// name). +// +// Deprecated: Please note the issues described in the doc comment of +// InstrumentHandler. You might want to consider using +// promhttp.InstrumentedHandler instead. +func Handler() http.Handler { + return InstrumentHandler("prometheus", UninstrumentedHandler()) +} + +// UninstrumentedHandler returns an HTTP handler for the DefaultGatherer. +// +// Deprecated: Use promhttp.Handler instead. See there for further documentation. +func UninstrumentedHandler() http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { + mfs, err := DefaultGatherer.Gather() + if err != nil { + http.Error(w, "An error has occurred during metrics collection:\n\n"+err.Error(), http.StatusInternalServerError) + return + } + + contentType := expfmt.Negotiate(req.Header) + buf := getBuf() + defer giveBuf(buf) + writer, encoding := decorateWriter(req, buf) + enc := expfmt.NewEncoder(writer, contentType) + var lastErr error + for _, mf := range mfs { + if err := enc.Encode(mf); err != nil { + lastErr = err + http.Error(w, "An error has occurred during metrics encoding:\n\n"+err.Error(), http.StatusInternalServerError) + return + } + } + if closer, ok := writer.(io.Closer); ok { + closer.Close() + } + if lastErr != nil && buf.Len() == 0 { + http.Error(w, "No metrics encoded, last error:\n\n"+lastErr.Error(), http.StatusInternalServerError) + return + } + header := w.Header() + header.Set(contentTypeHeader, string(contentType)) + header.Set(contentLengthHeader, fmt.Sprint(buf.Len())) + if encoding != "" { + header.Set(contentEncodingHeader, encoding) + } + w.Write(buf.Bytes()) + }) +} + +// decorateWriter wraps a writer to handle gzip compression if requested. It +// returns the decorated writer and the appropriate "Content-Encoding" header +// (which is empty if no compression is enabled). +func decorateWriter(request *http.Request, writer io.Writer) (io.Writer, string) { + header := request.Header.Get(acceptEncodingHeader) + parts := strings.Split(header, ",") + for _, part := range parts { + part := strings.TrimSpace(part) + if part == "gzip" || strings.HasPrefix(part, "gzip;") { + return gzip.NewWriter(writer), "gzip" + } + } + return writer, "" +} + +var instLabels = []string{"method", "code"} + +type nower interface { + Now() time.Time +} + +type nowFunc func() time.Time + +func (n nowFunc) Now() time.Time { + return n() +} + +var now nower = nowFunc(func() time.Time { + return time.Now() +}) + +func nowSeries(t ...time.Time) nower { + return nowFunc(func() time.Time { + defer func() { + t = t[1:] + }() + + return t[0] + }) +} + +// InstrumentHandler wraps the given HTTP handler for instrumentation. It +// registers four metric collectors (if not already done) and reports HTTP +// metrics to the (newly or already) registered collectors: http_requests_total +// (CounterVec), http_request_duration_microseconds (Summary), +// http_request_size_bytes (Summary), http_response_size_bytes (Summary). Each +// has a constant label named "handler" with the provided handlerName as +// value. http_requests_total is a metric vector partitioned by HTTP method +// (label name "method") and HTTP status code (label name "code"). +// +// Deprecated: InstrumentHandler has several issues. Use the tooling provided in +// package promhttp instead. The issues are the following: +// +// - It uses Summaries rather than Histograms. Summaries are not useful if +// aggregation across multiple instances is required. +// +// - It uses microseconds as unit, which is deprecated and should be replaced by +// seconds. +// +// - The size of the request is calculated in a separate goroutine. Since this +// calculator requires access to the request header, it creates a race with +// any writes to the header performed during request handling. +// httputil.ReverseProxy is a prominent example for a handler +// performing such writes. +// +// - It has additional issues with HTTP/2, cf. +// https://github.com/prometheus/client_golang/issues/272. +func InstrumentHandler(handlerName string, handler http.Handler) http.HandlerFunc { + return InstrumentHandlerFunc(handlerName, handler.ServeHTTP) +} + +// InstrumentHandlerFunc wraps the given function for instrumentation. It +// otherwise works in the same way as InstrumentHandler (and shares the same +// issues). +// +// Deprecated: InstrumentHandlerFunc is deprecated for the same reasons as +// InstrumentHandler is. Use the tooling provided in package promhttp instead. +func InstrumentHandlerFunc(handlerName string, handlerFunc func(http.ResponseWriter, *http.Request)) http.HandlerFunc { + return InstrumentHandlerFuncWithOpts( + SummaryOpts{ + Subsystem: "http", + ConstLabels: Labels{"handler": handlerName}, + Objectives: map[float64]float64{0.5: 0.05, 0.9: 0.01, 0.99: 0.001}, + }, + handlerFunc, + ) +} + +// InstrumentHandlerWithOpts works like InstrumentHandler (and shares the same +// issues) but provides more flexibility (at the cost of a more complex call +// syntax). As InstrumentHandler, this function registers four metric +// collectors, but it uses the provided SummaryOpts to create them. However, the +// fields "Name" and "Help" in the SummaryOpts are ignored. "Name" is replaced +// by "requests_total", "request_duration_microseconds", "request_size_bytes", +// and "response_size_bytes", respectively. "Help" is replaced by an appropriate +// help string. The names of the variable labels of the http_requests_total +// CounterVec are "method" (get, post, etc.), and "code" (HTTP status code). +// +// If InstrumentHandlerWithOpts is called as follows, it mimics exactly the +// behavior of InstrumentHandler: +// +// prometheus.InstrumentHandlerWithOpts( +// prometheus.SummaryOpts{ +// Subsystem: "http", +// ConstLabels: prometheus.Labels{"handler": handlerName}, +// }, +// handler, +// ) +// +// Technical detail: "requests_total" is a CounterVec, not a SummaryVec, so it +// cannot use SummaryOpts. Instead, a CounterOpts struct is created internally, +// and all its fields are set to the equally named fields in the provided +// SummaryOpts. +// +// Deprecated: InstrumentHandlerWithOpts is deprecated for the same reasons as +// InstrumentHandler is. Use the tooling provided in package promhttp instead. +func InstrumentHandlerWithOpts(opts SummaryOpts, handler http.Handler) http.HandlerFunc { + return InstrumentHandlerFuncWithOpts(opts, handler.ServeHTTP) +} + +// InstrumentHandlerFuncWithOpts works like InstrumentHandlerFunc (and shares +// the same issues) but provides more flexibility (at the cost of a more complex +// call syntax). See InstrumentHandlerWithOpts for details how the provided +// SummaryOpts are used. +// +// Deprecated: InstrumentHandlerFuncWithOpts is deprecated for the same reasons +// as InstrumentHandler is. Use the tooling provided in package promhttp instead. +func InstrumentHandlerFuncWithOpts(opts SummaryOpts, handlerFunc func(http.ResponseWriter, *http.Request)) http.HandlerFunc { + reqCnt := NewCounterVec( + CounterOpts{ + Namespace: opts.Namespace, + Subsystem: opts.Subsystem, + Name: "requests_total", + Help: "Total number of HTTP requests made.", + ConstLabels: opts.ConstLabels, + }, + instLabels, + ) + if err := Register(reqCnt); err != nil { + if are, ok := err.(AlreadyRegisteredError); ok { + reqCnt = are.ExistingCollector.(*CounterVec) + } else { + panic(err) + } + } + + opts.Name = "request_duration_microseconds" + opts.Help = "The HTTP request latencies in microseconds." + reqDur := NewSummary(opts) + if err := Register(reqDur); err != nil { + if are, ok := err.(AlreadyRegisteredError); ok { + reqDur = are.ExistingCollector.(Summary) + } else { + panic(err) + } + } + + opts.Name = "request_size_bytes" + opts.Help = "The HTTP request sizes in bytes." + reqSz := NewSummary(opts) + if err := Register(reqSz); err != nil { + if are, ok := err.(AlreadyRegisteredError); ok { + reqSz = are.ExistingCollector.(Summary) + } else { + panic(err) + } + } + + opts.Name = "response_size_bytes" + opts.Help = "The HTTP response sizes in bytes." + resSz := NewSummary(opts) + if err := Register(resSz); err != nil { + if are, ok := err.(AlreadyRegisteredError); ok { + resSz = are.ExistingCollector.(Summary) + } else { + panic(err) + } + } + + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + now := time.Now() + + delegate := &responseWriterDelegator{ResponseWriter: w} + out := computeApproximateRequestSize(r) + + _, cn := w.(http.CloseNotifier) + _, fl := w.(http.Flusher) + _, hj := w.(http.Hijacker) + _, rf := w.(io.ReaderFrom) + var rw http.ResponseWriter + if cn && fl && hj && rf { + rw = &fancyResponseWriterDelegator{delegate} + } else { + rw = delegate + } + handlerFunc(rw, r) + + elapsed := float64(time.Since(now)) / float64(time.Microsecond) + + method := sanitizeMethod(r.Method) + code := sanitizeCode(delegate.status) + reqCnt.WithLabelValues(method, code).Inc() + reqDur.Observe(elapsed) + resSz.Observe(float64(delegate.written)) + reqSz.Observe(float64(<-out)) + }) +} + +func computeApproximateRequestSize(r *http.Request) <-chan int { + // Get URL length in current go routine for avoiding a race condition. + // HandlerFunc that runs in parallel may modify the URL. + s := 0 + if r.URL != nil { + s += len(r.URL.String()) + } + + out := make(chan int, 1) + + go func() { + s += len(r.Method) + s += len(r.Proto) + for name, values := range r.Header { + s += len(name) + for _, value := range values { + s += len(value) + } + } + s += len(r.Host) + + // N.B. r.Form and r.MultipartForm are assumed to be included in r.URL. + + if r.ContentLength != -1 { + s += int(r.ContentLength) + } + out <- s + close(out) + }() + + return out +} + +type responseWriterDelegator struct { + http.ResponseWriter + + handler, method string + status int + written int64 + wroteHeader bool +} + +func (r *responseWriterDelegator) WriteHeader(code int) { + r.status = code + r.wroteHeader = true + r.ResponseWriter.WriteHeader(code) +} + +func (r *responseWriterDelegator) Write(b []byte) (int, error) { + if !r.wroteHeader { + r.WriteHeader(http.StatusOK) + } + n, err := r.ResponseWriter.Write(b) + r.written += int64(n) + return n, err +} + +type fancyResponseWriterDelegator struct { + *responseWriterDelegator +} + +func (f *fancyResponseWriterDelegator) CloseNotify() <-chan bool { + return f.ResponseWriter.(http.CloseNotifier).CloseNotify() +} + +func (f *fancyResponseWriterDelegator) Flush() { + f.ResponseWriter.(http.Flusher).Flush() +} + +func (f *fancyResponseWriterDelegator) Hijack() (net.Conn, *bufio.ReadWriter, error) { + return f.ResponseWriter.(http.Hijacker).Hijack() +} + +func (f *fancyResponseWriterDelegator) ReadFrom(r io.Reader) (int64, error) { + if !f.wroteHeader { + f.WriteHeader(http.StatusOK) + } + n, err := f.ResponseWriter.(io.ReaderFrom).ReadFrom(r) + f.written += n + return n, err +} + +func sanitizeMethod(m string) string { + switch m { + case "GET", "get": + return "get" + case "PUT", "put": + return "put" + case "HEAD", "head": + return "head" + case "POST", "post": + return "post" + case "DELETE", "delete": + return "delete" + case "CONNECT", "connect": + return "connect" + case "OPTIONS", "options": + return "options" + case "NOTIFY", "notify": + return "notify" + default: + return strings.ToLower(m) + } +} + +func sanitizeCode(s int) string { + switch s { + case 100: + return "100" + case 101: + return "101" + + case 200: + return "200" + case 201: + return "201" + case 202: + return "202" + case 203: + return "203" + case 204: + return "204" + case 205: + return "205" + case 206: + return "206" + + case 300: + return "300" + case 301: + return "301" + case 302: + return "302" + case 304: + return "304" + case 305: + return "305" + case 307: + return "307" + + case 400: + return "400" + case 401: + return "401" + case 402: + return "402" + case 403: + return "403" + case 404: + return "404" + case 405: + return "405" + case 406: + return "406" + case 407: + return "407" + case 408: + return "408" + case 409: + return "409" + case 410: + return "410" + case 411: + return "411" + case 412: + return "412" + case 413: + return "413" + case 414: + return "414" + case 415: + return "415" + case 416: + return "416" + case 417: + return "417" + case 418: + return "418" + + case 500: + return "500" + case 501: + return "501" + case 502: + return "502" + case 503: + return "503" + case 504: + return "504" + case 505: + return "505" + + case 428: + return "428" + case 429: + return "429" + case 431: + return "431" + case 511: + return "511" + + default: + return strconv.Itoa(s) + } +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/labels.go b/vendor/github.com/prometheus/client_golang/prometheus/labels.go new file mode 100644 index 000000000..2502e3734 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/labels.go @@ -0,0 +1,57 @@ +package prometheus + +import ( + "errors" + "fmt" + "strings" + "unicode/utf8" + + "github.com/prometheus/common/model" +) + +// Labels represents a collection of label name -> value mappings. This type is +// commonly used with the With(Labels) and GetMetricWith(Labels) methods of +// metric vector Collectors, e.g.: +// myVec.With(Labels{"code": "404", "method": "GET"}).Add(42) +// +// The other use-case is the specification of constant label pairs in Opts or to +// create a Desc. +type Labels map[string]string + +// reservedLabelPrefix is a prefix which is not legal in user-supplied +// label names. +const reservedLabelPrefix = "__" + +var errInconsistentCardinality = errors.New("inconsistent label cardinality") + +func validateValuesInLabels(labels Labels, expectedNumberOfValues int) error { + if len(labels) != expectedNumberOfValues { + return errInconsistentCardinality + } + + for name, val := range labels { + if !utf8.ValidString(val) { + return fmt.Errorf("label %s: value %q is not valid UTF-8", name, val) + } + } + + return nil +} + +func validateLabelValues(vals []string, expectedNumberOfValues int) error { + if len(vals) != expectedNumberOfValues { + return errInconsistentCardinality + } + + for _, val := range vals { + if !utf8.ValidString(val) { + return fmt.Errorf("label value %q is not valid UTF-8", val) + } + } + + return nil +} + +func checkLabelName(l string) bool { + return model.LabelName(l).IsValid() && !strings.HasPrefix(l, reservedLabelPrefix) +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/metric.go b/vendor/github.com/prometheus/client_golang/prometheus/metric.go new file mode 100644 index 000000000..6213ee812 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/metric.go @@ -0,0 +1,158 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import ( + "strings" + + dto "github.com/prometheus/client_model/go" +) + +const separatorByte byte = 255 + +// A Metric models a single sample value with its meta data being exported to +// Prometheus. Implementations of Metric in this package are Gauge, Counter, +// Histogram, Summary, and Untyped. +type Metric interface { + // Desc returns the descriptor for the Metric. This method idempotently + // returns the same descriptor throughout the lifetime of the + // Metric. The returned descriptor is immutable by contract. A Metric + // unable to describe itself must return an invalid descriptor (created + // with NewInvalidDesc). + Desc() *Desc + // Write encodes the Metric into a "Metric" Protocol Buffer data + // transmission object. + // + // Metric implementations must observe concurrency safety as reads of + // this metric may occur at any time, and any blocking occurs at the + // expense of total performance of rendering all registered + // metrics. Ideally, Metric implementations should support concurrent + // readers. + // + // While populating dto.Metric, it is the responsibility of the + // implementation to ensure validity of the Metric protobuf (like valid + // UTF-8 strings or syntactically valid metric and label names). It is + // recommended to sort labels lexicographically. (Implementers may find + // LabelPairSorter useful for that.) Callers of Write should still make + // sure of sorting if they depend on it. + Write(*dto.Metric) error + // TODO(beorn7): The original rationale of passing in a pre-allocated + // dto.Metric protobuf to save allocations has disappeared. The + // signature of this method should be changed to "Write() (*dto.Metric, + // error)". +} + +// Opts bundles the options for creating most Metric types. Each metric +// implementation XXX has its own XXXOpts type, but in most cases, it is just be +// an alias of this type (which might change when the requirement arises.) +// +// It is mandatory to set Name and Help to a non-empty string. All other fields +// are optional and can safely be left at their zero value. +type Opts struct { + // Namespace, Subsystem, and Name are components of the fully-qualified + // name of the Metric (created by joining these components with + // "_"). Only Name is mandatory, the others merely help structuring the + // name. Note that the fully-qualified name of the metric must be a + // valid Prometheus metric name. + Namespace string + Subsystem string + Name string + + // Help provides information about this metric. Mandatory! + // + // Metrics with the same fully-qualified name must have the same Help + // string. + Help string + + // ConstLabels are used to attach fixed labels to this metric. Metrics + // with the same fully-qualified name must have the same label names in + // their ConstLabels. + // + // ConstLabels are only used rarely. In particular, do not use them to + // attach the same labels to all your metrics. Those use cases are + // better covered by target labels set by the scraping Prometheus + // server, or by one specific metric (e.g. a build_info or a + // machine_role metric). See also + // https://prometheus.io/docs/instrumenting/writing_exporters/#target-labels,-not-static-scraped-labels + ConstLabels Labels +} + +// BuildFQName joins the given three name components by "_". Empty name +// components are ignored. If the name parameter itself is empty, an empty +// string is returned, no matter what. Metric implementations included in this +// library use this function internally to generate the fully-qualified metric +// name from the name component in their Opts. Users of the library will only +// need this function if they implement their own Metric or instantiate a Desc +// (with NewDesc) directly. +func BuildFQName(namespace, subsystem, name string) string { + if name == "" { + return "" + } + switch { + case namespace != "" && subsystem != "": + return strings.Join([]string{namespace, subsystem, name}, "_") + case namespace != "": + return strings.Join([]string{namespace, name}, "_") + case subsystem != "": + return strings.Join([]string{subsystem, name}, "_") + } + return name +} + +// LabelPairSorter implements sort.Interface. It is used to sort a slice of +// dto.LabelPair pointers. This is useful for implementing the Write method of +// custom metrics. +type LabelPairSorter []*dto.LabelPair + +func (s LabelPairSorter) Len() int { + return len(s) +} + +func (s LabelPairSorter) Swap(i, j int) { + s[i], s[j] = s[j], s[i] +} + +func (s LabelPairSorter) Less(i, j int) bool { + return s[i].GetName() < s[j].GetName() +} + +type hashSorter []uint64 + +func (s hashSorter) Len() int { + return len(s) +} + +func (s hashSorter) Swap(i, j int) { + s[i], s[j] = s[j], s[i] +} + +func (s hashSorter) Less(i, j int) bool { + return s[i] < s[j] +} + +type invalidMetric struct { + desc *Desc + err error +} + +// NewInvalidMetric returns a metric whose Write method always returns the +// provided error. It is useful if a Collector finds itself unable to collect +// a metric and wishes to report an error to the registry. +func NewInvalidMetric(desc *Desc, err error) Metric { + return &invalidMetric{desc, err} +} + +func (m *invalidMetric) Desc() *Desc { return m.desc } + +func (m *invalidMetric) Write(*dto.Metric) error { return m.err } diff --git a/vendor/github.com/prometheus/client_golang/prometheus/observer.go b/vendor/github.com/prometheus/client_golang/prometheus/observer.go new file mode 100644 index 000000000..5806cd09e --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/observer.go @@ -0,0 +1,52 @@ +// Copyright 2017 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +// Observer is the interface that wraps the Observe method, which is used by +// Histogram and Summary to add observations. +type Observer interface { + Observe(float64) +} + +// The ObserverFunc type is an adapter to allow the use of ordinary +// functions as Observers. If f is a function with the appropriate +// signature, ObserverFunc(f) is an Observer that calls f. +// +// This adapter is usually used in connection with the Timer type, and there are +// two general use cases: +// +// The most common one is to use a Gauge as the Observer for a Timer. +// See the "Gauge" Timer example. +// +// The more advanced use case is to create a function that dynamically decides +// which Observer to use for observing the duration. See the "Complex" Timer +// example. +type ObserverFunc func(float64) + +// Observe calls f(value). It implements Observer. +func (f ObserverFunc) Observe(value float64) { + f(value) +} + +// ObserverVec is an interface implemented by `HistogramVec` and `SummaryVec`. +type ObserverVec interface { + GetMetricWith(Labels) (Observer, error) + GetMetricWithLabelValues(lvs ...string) (Observer, error) + With(Labels) Observer + WithLabelValues(...string) Observer + CurryWith(Labels) (ObserverVec, error) + MustCurryWith(Labels) ObserverVec + + Collector +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/process_collector.go b/vendor/github.com/prometheus/client_golang/prometheus/process_collector.go new file mode 100644 index 000000000..32ac74a7f --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/process_collector.go @@ -0,0 +1,140 @@ +// Copyright 2015 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import "github.com/prometheus/procfs" + +type processCollector struct { + pid int + collectFn func(chan<- Metric) + pidFn func() (int, error) + cpuTotal *Desc + openFDs, maxFDs *Desc + vsize, rss *Desc + startTime *Desc +} + +// NewProcessCollector returns a collector which exports the current state of +// process metrics including CPU, memory and file descriptor usage as well as +// the process start time for the given process ID under the given namespace. +// +// Currently, the collector depends on a Linux-style proc filesystem and +// therefore only exports metrics for Linux. +func NewProcessCollector(pid int, namespace string) Collector { + return NewProcessCollectorPIDFn( + func() (int, error) { return pid, nil }, + namespace, + ) +} + +// NewProcessCollectorPIDFn works like NewProcessCollector but the process ID is +// determined on each collect anew by calling the given pidFn function. +func NewProcessCollectorPIDFn( + pidFn func() (int, error), + namespace string, +) Collector { + ns := "" + if len(namespace) > 0 { + ns = namespace + "_" + } + + c := processCollector{ + pidFn: pidFn, + collectFn: func(chan<- Metric) {}, + + cpuTotal: NewDesc( + ns+"process_cpu_seconds_total", + "Total user and system CPU time spent in seconds.", + nil, nil, + ), + openFDs: NewDesc( + ns+"process_open_fds", + "Number of open file descriptors.", + nil, nil, + ), + maxFDs: NewDesc( + ns+"process_max_fds", + "Maximum number of open file descriptors.", + nil, nil, + ), + vsize: NewDesc( + ns+"process_virtual_memory_bytes", + "Virtual memory size in bytes.", + nil, nil, + ), + rss: NewDesc( + ns+"process_resident_memory_bytes", + "Resident memory size in bytes.", + nil, nil, + ), + startTime: NewDesc( + ns+"process_start_time_seconds", + "Start time of the process since unix epoch in seconds.", + nil, nil, + ), + } + + // Set up process metric collection if supported by the runtime. + if _, err := procfs.NewStat(); err == nil { + c.collectFn = c.processCollect + } + + return &c +} + +// Describe returns all descriptions of the collector. +func (c *processCollector) Describe(ch chan<- *Desc) { + ch <- c.cpuTotal + ch <- c.openFDs + ch <- c.maxFDs + ch <- c.vsize + ch <- c.rss + ch <- c.startTime +} + +// Collect returns the current state of all metrics of the collector. +func (c *processCollector) Collect(ch chan<- Metric) { + c.collectFn(ch) +} + +// TODO(ts): Bring back error reporting by reverting 7faf9e7 as soon as the +// client allows users to configure the error behavior. +func (c *processCollector) processCollect(ch chan<- Metric) { + pid, err := c.pidFn() + if err != nil { + return + } + + p, err := procfs.NewProc(pid) + if err != nil { + return + } + + if stat, err := p.NewStat(); err == nil { + ch <- MustNewConstMetric(c.cpuTotal, CounterValue, stat.CPUTime()) + ch <- MustNewConstMetric(c.vsize, GaugeValue, float64(stat.VirtualMemory())) + ch <- MustNewConstMetric(c.rss, GaugeValue, float64(stat.ResidentMemory())) + if startTime, err := stat.StartTime(); err == nil { + ch <- MustNewConstMetric(c.startTime, GaugeValue, startTime) + } + } + + if fds, err := p.FileDescriptorsLen(); err == nil { + ch <- MustNewConstMetric(c.openFDs, GaugeValue, float64(fds)) + } + + if limits, err := p.NewLimits(); err == nil { + ch <- MustNewConstMetric(c.maxFDs, GaugeValue, float64(limits.OpenFiles)) + } +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/promhttp/delegator.go b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/delegator.go new file mode 100644 index 000000000..9c1c66dcc --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/delegator.go @@ -0,0 +1,199 @@ +// Copyright 2017 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package promhttp + +import ( + "bufio" + "io" + "net" + "net/http" +) + +const ( + closeNotifier = 1 << iota + flusher + hijacker + readerFrom + pusher +) + +type delegator interface { + http.ResponseWriter + + Status() int + Written() int64 +} + +type responseWriterDelegator struct { + http.ResponseWriter + + handler, method string + status int + written int64 + wroteHeader bool + observeWriteHeader func(int) +} + +func (r *responseWriterDelegator) Status() int { + return r.status +} + +func (r *responseWriterDelegator) Written() int64 { + return r.written +} + +func (r *responseWriterDelegator) WriteHeader(code int) { + r.status = code + r.wroteHeader = true + r.ResponseWriter.WriteHeader(code) + if r.observeWriteHeader != nil { + r.observeWriteHeader(code) + } +} + +func (r *responseWriterDelegator) Write(b []byte) (int, error) { + if !r.wroteHeader { + r.WriteHeader(http.StatusOK) + } + n, err := r.ResponseWriter.Write(b) + r.written += int64(n) + return n, err +} + +type closeNotifierDelegator struct{ *responseWriterDelegator } +type flusherDelegator struct{ *responseWriterDelegator } +type hijackerDelegator struct{ *responseWriterDelegator } +type readerFromDelegator struct{ *responseWriterDelegator } + +func (d *closeNotifierDelegator) CloseNotify() <-chan bool { + return d.ResponseWriter.(http.CloseNotifier).CloseNotify() +} +func (d *flusherDelegator) Flush() { + d.ResponseWriter.(http.Flusher).Flush() +} +func (d *hijackerDelegator) Hijack() (net.Conn, *bufio.ReadWriter, error) { + return d.ResponseWriter.(http.Hijacker).Hijack() +} +func (d *readerFromDelegator) ReadFrom(re io.Reader) (int64, error) { + if !d.wroteHeader { + d.WriteHeader(http.StatusOK) + } + n, err := d.ResponseWriter.(io.ReaderFrom).ReadFrom(re) + d.written += n + return n, err +} + +var pickDelegator = make([]func(*responseWriterDelegator) delegator, 32) + +func init() { + // TODO(beorn7): Code generation would help here. + pickDelegator[0] = func(d *responseWriterDelegator) delegator { // 0 + return d + } + pickDelegator[closeNotifier] = func(d *responseWriterDelegator) delegator { // 1 + return &closeNotifierDelegator{d} + } + pickDelegator[flusher] = func(d *responseWriterDelegator) delegator { // 2 + return &flusherDelegator{d} + } + pickDelegator[flusher+closeNotifier] = func(d *responseWriterDelegator) delegator { // 3 + return struct { + *responseWriterDelegator + http.Flusher + http.CloseNotifier + }{d, &flusherDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[hijacker] = func(d *responseWriterDelegator) delegator { // 4 + return &hijackerDelegator{d} + } + pickDelegator[hijacker+closeNotifier] = func(d *responseWriterDelegator) delegator { // 5 + return struct { + *responseWriterDelegator + http.Hijacker + http.CloseNotifier + }{d, &hijackerDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[hijacker+flusher] = func(d *responseWriterDelegator) delegator { // 6 + return struct { + *responseWriterDelegator + http.Hijacker + http.Flusher + }{d, &hijackerDelegator{d}, &flusherDelegator{d}} + } + pickDelegator[hijacker+flusher+closeNotifier] = func(d *responseWriterDelegator) delegator { // 7 + return struct { + *responseWriterDelegator + http.Hijacker + http.Flusher + http.CloseNotifier + }{d, &hijackerDelegator{d}, &flusherDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[readerFrom] = func(d *responseWriterDelegator) delegator { // 8 + return readerFromDelegator{d} + } + pickDelegator[readerFrom+closeNotifier] = func(d *responseWriterDelegator) delegator { // 9 + return struct { + *responseWriterDelegator + io.ReaderFrom + http.CloseNotifier + }{d, &readerFromDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[readerFrom+flusher] = func(d *responseWriterDelegator) delegator { // 10 + return struct { + *responseWriterDelegator + io.ReaderFrom + http.Flusher + }{d, &readerFromDelegator{d}, &flusherDelegator{d}} + } + pickDelegator[readerFrom+flusher+closeNotifier] = func(d *responseWriterDelegator) delegator { // 11 + return struct { + *responseWriterDelegator + io.ReaderFrom + http.Flusher + http.CloseNotifier + }{d, &readerFromDelegator{d}, &flusherDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[readerFrom+hijacker] = func(d *responseWriterDelegator) delegator { // 12 + return struct { + *responseWriterDelegator + io.ReaderFrom + http.Hijacker + }{d, &readerFromDelegator{d}, &hijackerDelegator{d}} + } + pickDelegator[readerFrom+hijacker+closeNotifier] = func(d *responseWriterDelegator) delegator { // 13 + return struct { + *responseWriterDelegator + io.ReaderFrom + http.Hijacker + http.CloseNotifier + }{d, &readerFromDelegator{d}, &hijackerDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[readerFrom+hijacker+flusher] = func(d *responseWriterDelegator) delegator { // 14 + return struct { + *responseWriterDelegator + io.ReaderFrom + http.Hijacker + http.Flusher + }{d, &readerFromDelegator{d}, &hijackerDelegator{d}, &flusherDelegator{d}} + } + pickDelegator[readerFrom+hijacker+flusher+closeNotifier] = func(d *responseWriterDelegator) delegator { // 15 + return struct { + *responseWriterDelegator + io.ReaderFrom + http.Hijacker + http.Flusher + http.CloseNotifier + }{d, &readerFromDelegator{d}, &hijackerDelegator{d}, &flusherDelegator{d}, &closeNotifierDelegator{d}} + } +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/promhttp/delegator_1_8.go b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/delegator_1_8.go new file mode 100644 index 000000000..75a905e2f --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/delegator_1_8.go @@ -0,0 +1,181 @@ +// Copyright 2017 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// +build go1.8 + +package promhttp + +import ( + "io" + "net/http" +) + +type pusherDelegator struct{ *responseWriterDelegator } + +func (d *pusherDelegator) Push(target string, opts *http.PushOptions) error { + return d.ResponseWriter.(http.Pusher).Push(target, opts) +} + +func init() { + pickDelegator[pusher] = func(d *responseWriterDelegator) delegator { // 16 + return &pusherDelegator{d} + } + pickDelegator[pusher+closeNotifier] = func(d *responseWriterDelegator) delegator { // 17 + return struct { + *responseWriterDelegator + http.Pusher + http.CloseNotifier + }{d, &pusherDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[pusher+flusher] = func(d *responseWriterDelegator) delegator { // 18 + return struct { + *responseWriterDelegator + http.Pusher + http.Flusher + }{d, &pusherDelegator{d}, &flusherDelegator{d}} + } + pickDelegator[pusher+flusher+closeNotifier] = func(d *responseWriterDelegator) delegator { // 19 + return struct { + *responseWriterDelegator + http.Pusher + http.Flusher + http.CloseNotifier + }{d, &pusherDelegator{d}, &flusherDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[pusher+hijacker] = func(d *responseWriterDelegator) delegator { // 20 + return struct { + *responseWriterDelegator + http.Pusher + http.Hijacker + }{d, &pusherDelegator{d}, &hijackerDelegator{d}} + } + pickDelegator[pusher+hijacker+closeNotifier] = func(d *responseWriterDelegator) delegator { // 21 + return struct { + *responseWriterDelegator + http.Pusher + http.Hijacker + http.CloseNotifier + }{d, &pusherDelegator{d}, &hijackerDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[pusher+hijacker+flusher] = func(d *responseWriterDelegator) delegator { // 22 + return struct { + *responseWriterDelegator + http.Pusher + http.Hijacker + http.Flusher + }{d, &pusherDelegator{d}, &hijackerDelegator{d}, &flusherDelegator{d}} + } + pickDelegator[pusher+hijacker+flusher+closeNotifier] = func(d *responseWriterDelegator) delegator { //23 + return struct { + *responseWriterDelegator + http.Pusher + http.Hijacker + http.Flusher + http.CloseNotifier + }{d, &pusherDelegator{d}, &hijackerDelegator{d}, &flusherDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[pusher+readerFrom] = func(d *responseWriterDelegator) delegator { // 24 + return struct { + *responseWriterDelegator + http.Pusher + io.ReaderFrom + }{d, &pusherDelegator{d}, &readerFromDelegator{d}} + } + pickDelegator[pusher+readerFrom+closeNotifier] = func(d *responseWriterDelegator) delegator { // 25 + return struct { + *responseWriterDelegator + http.Pusher + io.ReaderFrom + http.CloseNotifier + }{d, &pusherDelegator{d}, &readerFromDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[pusher+readerFrom+flusher] = func(d *responseWriterDelegator) delegator { // 26 + return struct { + *responseWriterDelegator + http.Pusher + io.ReaderFrom + http.Flusher + }{d, &pusherDelegator{d}, &readerFromDelegator{d}, &flusherDelegator{d}} + } + pickDelegator[pusher+readerFrom+flusher+closeNotifier] = func(d *responseWriterDelegator) delegator { // 27 + return struct { + *responseWriterDelegator + http.Pusher + io.ReaderFrom + http.Flusher + http.CloseNotifier + }{d, &pusherDelegator{d}, &readerFromDelegator{d}, &flusherDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[pusher+readerFrom+hijacker] = func(d *responseWriterDelegator) delegator { // 28 + return struct { + *responseWriterDelegator + http.Pusher + io.ReaderFrom + http.Hijacker + }{d, &pusherDelegator{d}, &readerFromDelegator{d}, &hijackerDelegator{d}} + } + pickDelegator[pusher+readerFrom+hijacker+closeNotifier] = func(d *responseWriterDelegator) delegator { // 29 + return struct { + *responseWriterDelegator + http.Pusher + io.ReaderFrom + http.Hijacker + http.CloseNotifier + }{d, &pusherDelegator{d}, &readerFromDelegator{d}, &hijackerDelegator{d}, &closeNotifierDelegator{d}} + } + pickDelegator[pusher+readerFrom+hijacker+flusher] = func(d *responseWriterDelegator) delegator { // 30 + return struct { + *responseWriterDelegator + http.Pusher + io.ReaderFrom + http.Hijacker + http.Flusher + }{d, &pusherDelegator{d}, &readerFromDelegator{d}, &hijackerDelegator{d}, &flusherDelegator{d}} + } + pickDelegator[pusher+readerFrom+hijacker+flusher+closeNotifier] = func(d *responseWriterDelegator) delegator { // 31 + return struct { + *responseWriterDelegator + http.Pusher + io.ReaderFrom + http.Hijacker + http.Flusher + http.CloseNotifier + }{d, &pusherDelegator{d}, &readerFromDelegator{d}, &hijackerDelegator{d}, &flusherDelegator{d}, &closeNotifierDelegator{d}} + } +} + +func newDelegator(w http.ResponseWriter, observeWriteHeaderFunc func(int)) delegator { + d := &responseWriterDelegator{ + ResponseWriter: w, + observeWriteHeader: observeWriteHeaderFunc, + } + + id := 0 + if _, ok := w.(http.CloseNotifier); ok { + id += closeNotifier + } + if _, ok := w.(http.Flusher); ok { + id += flusher + } + if _, ok := w.(http.Hijacker); ok { + id += hijacker + } + if _, ok := w.(io.ReaderFrom); ok { + id += readerFrom + } + if _, ok := w.(http.Pusher); ok { + id += pusher + } + + return pickDelegator[id](d) +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/promhttp/delegator_pre_1_8.go b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/delegator_pre_1_8.go new file mode 100644 index 000000000..8bb9b8b68 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/delegator_pre_1_8.go @@ -0,0 +1,44 @@ +// Copyright 2017 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// +build !go1.8 + +package promhttp + +import ( + "io" + "net/http" +) + +func newDelegator(w http.ResponseWriter, observeWriteHeaderFunc func(int)) delegator { + d := &responseWriterDelegator{ + ResponseWriter: w, + observeWriteHeader: observeWriteHeaderFunc, + } + + id := 0 + if _, ok := w.(http.CloseNotifier); ok { + id += closeNotifier + } + if _, ok := w.(http.Flusher); ok { + id += flusher + } + if _, ok := w.(http.Hijacker); ok { + id += hijacker + } + if _, ok := w.(io.ReaderFrom); ok { + id += readerFrom + } + + return pickDelegator[id](d) +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/promhttp/http.go b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/http.go new file mode 100644 index 000000000..8dc260355 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/http.go @@ -0,0 +1,311 @@ +// Copyright 2016 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package promhttp provides tooling around HTTP servers and clients. +// +// First, the package allows the creation of http.Handler instances to expose +// Prometheus metrics via HTTP. promhttp.Handler acts on the +// prometheus.DefaultGatherer. With HandlerFor, you can create a handler for a +// custom registry or anything that implements the Gatherer interface. It also +// allows the creation of handlers that act differently on errors or allow to +// log errors. +// +// Second, the package provides tooling to instrument instances of http.Handler +// via middleware. Middleware wrappers follow the naming scheme +// InstrumentHandlerX, where X describes the intended use of the middleware. +// See each function's doc comment for specific details. +// +// Finally, the package allows for an http.RoundTripper to be instrumented via +// middleware. Middleware wrappers follow the naming scheme +// InstrumentRoundTripperX, where X describes the intended use of the +// middleware. See each function's doc comment for specific details. +package promhttp + +import ( + "bytes" + "compress/gzip" + "fmt" + "io" + "net/http" + "strings" + "sync" + "time" + + "github.com/prometheus/common/expfmt" + + "github.com/prometheus/client_golang/prometheus" +) + +const ( + contentTypeHeader = "Content-Type" + contentLengthHeader = "Content-Length" + contentEncodingHeader = "Content-Encoding" + acceptEncodingHeader = "Accept-Encoding" +) + +var bufPool sync.Pool + +func getBuf() *bytes.Buffer { + buf := bufPool.Get() + if buf == nil { + return &bytes.Buffer{} + } + return buf.(*bytes.Buffer) +} + +func giveBuf(buf *bytes.Buffer) { + buf.Reset() + bufPool.Put(buf) +} + +// Handler returns an http.Handler for the prometheus.DefaultGatherer, using +// default HandlerOpts, i.e. it reports the first error as an HTTP error, it has +// no error logging, and it applies compression if requested by the client. +// +// The returned http.Handler is already instrumented using the +// InstrumentMetricHandler function and the prometheus.DefaultRegisterer. If you +// create multiple http.Handlers by separate calls of the Handler function, the +// metrics used for instrumentation will be shared between them, providing +// global scrape counts. +// +// This function is meant to cover the bulk of basic use cases. If you are doing +// anything that requires more customization (including using a non-default +// Gatherer, different instrumentation, and non-default HandlerOpts), use the +// HandlerFor function. See there for details. +func Handler() http.Handler { + return InstrumentMetricHandler( + prometheus.DefaultRegisterer, HandlerFor(prometheus.DefaultGatherer, HandlerOpts{}), + ) +} + +// HandlerFor returns an uninstrumented http.Handler for the provided +// Gatherer. The behavior of the Handler is defined by the provided +// HandlerOpts. Thus, HandlerFor is useful to create http.Handlers for custom +// Gatherers, with non-default HandlerOpts, and/or with custom (or no) +// instrumentation. Use the InstrumentMetricHandler function to apply the same +// kind of instrumentation as it is used by the Handler function. +func HandlerFor(reg prometheus.Gatherer, opts HandlerOpts) http.Handler { + var inFlightSem chan struct{} + if opts.MaxRequestsInFlight > 0 { + inFlightSem = make(chan struct{}, opts.MaxRequestsInFlight) + } + + h := http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { + if inFlightSem != nil { + select { + case inFlightSem <- struct{}{}: // All good, carry on. + defer func() { <-inFlightSem }() + default: + http.Error(w, fmt.Sprintf( + "Limit of concurrent requests reached (%d), try again later.", opts.MaxRequestsInFlight, + ), http.StatusServiceUnavailable) + return + } + } + + mfs, err := reg.Gather() + if err != nil { + if opts.ErrorLog != nil { + opts.ErrorLog.Println("error gathering metrics:", err) + } + switch opts.ErrorHandling { + case PanicOnError: + panic(err) + case ContinueOnError: + if len(mfs) == 0 { + http.Error(w, "No metrics gathered, last error:\n\n"+err.Error(), http.StatusInternalServerError) + return + } + case HTTPErrorOnError: + http.Error(w, "An error has occurred during metrics gathering:\n\n"+err.Error(), http.StatusInternalServerError) + return + } + } + + contentType := expfmt.Negotiate(req.Header) + buf := getBuf() + defer giveBuf(buf) + writer, encoding := decorateWriter(req, buf, opts.DisableCompression) + enc := expfmt.NewEncoder(writer, contentType) + var lastErr error + for _, mf := range mfs { + if err := enc.Encode(mf); err != nil { + lastErr = err + if opts.ErrorLog != nil { + opts.ErrorLog.Println("error encoding metric family:", err) + } + switch opts.ErrorHandling { + case PanicOnError: + panic(err) + case ContinueOnError: + // Handled later. + case HTTPErrorOnError: + http.Error(w, "An error has occurred during metrics encoding:\n\n"+err.Error(), http.StatusInternalServerError) + return + } + } + } + if closer, ok := writer.(io.Closer); ok { + closer.Close() + } + if lastErr != nil && buf.Len() == 0 { + http.Error(w, "No metrics encoded, last error:\n\n"+lastErr.Error(), http.StatusInternalServerError) + return + } + header := w.Header() + header.Set(contentTypeHeader, string(contentType)) + header.Set(contentLengthHeader, fmt.Sprint(buf.Len())) + if encoding != "" { + header.Set(contentEncodingHeader, encoding) + } + if _, err := w.Write(buf.Bytes()); err != nil && opts.ErrorLog != nil { + opts.ErrorLog.Println("error while sending encoded metrics:", err) + } + // TODO(beorn7): Consider streaming serving of metrics. + }) + + if opts.Timeout <= 0 { + return h + } + return http.TimeoutHandler(h, opts.Timeout, fmt.Sprintf( + "Exceeded configured timeout of %v.\n", + opts.Timeout, + )) +} + +// InstrumentMetricHandler is usually used with an http.Handler returned by the +// HandlerFor function. It instruments the provided http.Handler with two +// metrics: A counter vector "promhttp_metric_handler_requests_total" to count +// scrapes partitioned by HTTP status code, and a gauge +// "promhttp_metric_handler_requests_in_flight" to track the number of +// simultaneous scrapes. This function idempotently registers collectors for +// both metrics with the provided Registerer. It panics if the registration +// fails. The provided metrics are useful to see how many scrapes hit the +// monitored target (which could be from different Prometheus servers or other +// scrapers), and how often they overlap (which would result in more than one +// scrape in flight at the same time). Note that the scrapes-in-flight gauge +// will contain the scrape by which it is exposed, while the scrape counter will +// only get incremented after the scrape is complete (as only then the status +// code is known). For tracking scrape durations, use the +// "scrape_duration_seconds" gauge created by the Prometheus server upon each +// scrape. +func InstrumentMetricHandler(reg prometheus.Registerer, handler http.Handler) http.Handler { + cnt := prometheus.NewCounterVec( + prometheus.CounterOpts{ + Name: "promhttp_metric_handler_requests_total", + Help: "Total number of scrapes by HTTP status code.", + }, + []string{"code"}, + ) + // Initialize the most likely HTTP status codes. + cnt.WithLabelValues("200") + cnt.WithLabelValues("500") + cnt.WithLabelValues("503") + if err := reg.Register(cnt); err != nil { + if are, ok := err.(prometheus.AlreadyRegisteredError); ok { + cnt = are.ExistingCollector.(*prometheus.CounterVec) + } else { + panic(err) + } + } + + gge := prometheus.NewGauge(prometheus.GaugeOpts{ + Name: "promhttp_metric_handler_requests_in_flight", + Help: "Current number of scrapes being served.", + }) + if err := reg.Register(gge); err != nil { + if are, ok := err.(prometheus.AlreadyRegisteredError); ok { + gge = are.ExistingCollector.(prometheus.Gauge) + } else { + panic(err) + } + } + + return InstrumentHandlerCounter(cnt, InstrumentHandlerInFlight(gge, handler)) +} + +// HandlerErrorHandling defines how a Handler serving metrics will handle +// errors. +type HandlerErrorHandling int + +// These constants cause handlers serving metrics to behave as described if +// errors are encountered. +const ( + // Serve an HTTP status code 500 upon the first error + // encountered. Report the error message in the body. + HTTPErrorOnError HandlerErrorHandling = iota + // Ignore errors and try to serve as many metrics as possible. However, + // if no metrics can be served, serve an HTTP status code 500 and the + // last error message in the body. Only use this in deliberate "best + // effort" metrics collection scenarios. It is recommended to at least + // log errors (by providing an ErrorLog in HandlerOpts) to not mask + // errors completely. + ContinueOnError + // Panic upon the first error encountered (useful for "crash only" apps). + PanicOnError +) + +// Logger is the minimal interface HandlerOpts needs for logging. Note that +// log.Logger from the standard library implements this interface, and it is +// easy to implement by custom loggers, if they don't do so already anyway. +type Logger interface { + Println(v ...interface{}) +} + +// HandlerOpts specifies options how to serve metrics via an http.Handler. The +// zero value of HandlerOpts is a reasonable default. +type HandlerOpts struct { + // ErrorLog specifies an optional logger for errors collecting and + // serving metrics. If nil, errors are not logged at all. + ErrorLog Logger + // ErrorHandling defines how errors are handled. Note that errors are + // logged regardless of the configured ErrorHandling provided ErrorLog + // is not nil. + ErrorHandling HandlerErrorHandling + // If DisableCompression is true, the handler will never compress the + // response, even if requested by the client. + DisableCompression bool + // The number of concurrent HTTP requests is limited to + // MaxRequestsInFlight. Additional requests are responded to with 503 + // Service Unavailable and a suitable message in the body. If + // MaxRequestsInFlight is 0 or negative, no limit is applied. + MaxRequestsInFlight int + // If handling a request takes longer than Timeout, it is responded to + // with 503 ServiceUnavailable and a suitable Message. No timeout is + // applied if Timeout is 0 or negative. Note that with the current + // implementation, reaching the timeout simply ends the HTTP requests as + // described above (and even that only if sending of the body hasn't + // started yet), while the bulk work of gathering all the metrics keeps + // running in the background (with the eventual result to be thrown + // away). Until the implementation is improved, it is recommended to + // implement a separate timeout in potentially slow Collectors. + Timeout time.Duration +} + +// decorateWriter wraps a writer to handle gzip compression if requested. It +// returns the decorated writer and the appropriate "Content-Encoding" header +// (which is empty if no compression is enabled). +func decorateWriter(request *http.Request, writer io.Writer, compressionDisabled bool) (io.Writer, string) { + if compressionDisabled { + return writer, "" + } + header := request.Header.Get(acceptEncodingHeader) + parts := strings.Split(header, ",") + for _, part := range parts { + part := strings.TrimSpace(part) + if part == "gzip" || strings.HasPrefix(part, "gzip;") { + return gzip.NewWriter(writer), "gzip" + } + } + return writer, "" +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/promhttp/instrument_client.go b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/instrument_client.go new file mode 100644 index 000000000..86fd56447 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/instrument_client.go @@ -0,0 +1,97 @@ +// Copyright 2017 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package promhttp + +import ( + "net/http" + "time" + + "github.com/prometheus/client_golang/prometheus" +) + +// The RoundTripperFunc type is an adapter to allow the use of ordinary +// functions as RoundTrippers. If f is a function with the appropriate +// signature, RountTripperFunc(f) is a RoundTripper that calls f. +type RoundTripperFunc func(req *http.Request) (*http.Response, error) + +// RoundTrip implements the RoundTripper interface. +func (rt RoundTripperFunc) RoundTrip(r *http.Request) (*http.Response, error) { + return rt(r) +} + +// InstrumentRoundTripperInFlight is a middleware that wraps the provided +// http.RoundTripper. It sets the provided prometheus.Gauge to the number of +// requests currently handled by the wrapped http.RoundTripper. +// +// See the example for ExampleInstrumentRoundTripperDuration for example usage. +func InstrumentRoundTripperInFlight(gauge prometheus.Gauge, next http.RoundTripper) RoundTripperFunc { + return RoundTripperFunc(func(r *http.Request) (*http.Response, error) { + gauge.Inc() + defer gauge.Dec() + return next.RoundTrip(r) + }) +} + +// InstrumentRoundTripperCounter is a middleware that wraps the provided +// http.RoundTripper to observe the request result with the provided CounterVec. +// The CounterVec must have zero, one, or two non-const non-curried labels. For +// those, the only allowed label names are "code" and "method". The function +// panics otherwise. Partitioning of the CounterVec happens by HTTP status code +// and/or HTTP method if the respective instance label names are present in the +// CounterVec. For unpartitioned counting, use a CounterVec with zero labels. +// +// If the wrapped RoundTripper panics or returns a non-nil error, the Counter +// is not incremented. +// +// See the example for ExampleInstrumentRoundTripperDuration for example usage. +func InstrumentRoundTripperCounter(counter *prometheus.CounterVec, next http.RoundTripper) RoundTripperFunc { + code, method := checkLabels(counter) + + return RoundTripperFunc(func(r *http.Request) (*http.Response, error) { + resp, err := next.RoundTrip(r) + if err == nil { + counter.With(labels(code, method, r.Method, resp.StatusCode)).Inc() + } + return resp, err + }) +} + +// InstrumentRoundTripperDuration is a middleware that wraps the provided +// http.RoundTripper to observe the request duration with the provided +// ObserverVec. The ObserverVec must have zero, one, or two non-const +// non-curried labels. For those, the only allowed label names are "code" and +// "method". The function panics otherwise. The Observe method of the Observer +// in the ObserverVec is called with the request duration in +// seconds. Partitioning happens by HTTP status code and/or HTTP method if the +// respective instance label names are present in the ObserverVec. For +// unpartitioned observations, use an ObserverVec with zero labels. Note that +// partitioning of Histograms is expensive and should be used judiciously. +// +// If the wrapped RoundTripper panics or returns a non-nil error, no values are +// reported. +// +// Note that this method is only guaranteed to never observe negative durations +// if used with Go1.9+. +func InstrumentRoundTripperDuration(obs prometheus.ObserverVec, next http.RoundTripper) RoundTripperFunc { + code, method := checkLabels(obs) + + return RoundTripperFunc(func(r *http.Request) (*http.Response, error) { + start := time.Now() + resp, err := next.RoundTrip(r) + if err == nil { + obs.With(labels(code, method, r.Method, resp.StatusCode)).Observe(time.Since(start).Seconds()) + } + return resp, err + }) +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/promhttp/instrument_client_1_8.go b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/instrument_client_1_8.go new file mode 100644 index 000000000..a034d1ec0 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/instrument_client_1_8.go @@ -0,0 +1,144 @@ +// Copyright 2017 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// +build go1.8 + +package promhttp + +import ( + "context" + "crypto/tls" + "net/http" + "net/http/httptrace" + "time" +) + +// InstrumentTrace is used to offer flexibility in instrumenting the available +// httptrace.ClientTrace hook functions. Each function is passed a float64 +// representing the time in seconds since the start of the http request. A user +// may choose to use separately buckets Histograms, or implement custom +// instance labels on a per function basis. +type InstrumentTrace struct { + GotConn func(float64) + PutIdleConn func(float64) + GotFirstResponseByte func(float64) + Got100Continue func(float64) + DNSStart func(float64) + DNSDone func(float64) + ConnectStart func(float64) + ConnectDone func(float64) + TLSHandshakeStart func(float64) + TLSHandshakeDone func(float64) + WroteHeaders func(float64) + Wait100Continue func(float64) + WroteRequest func(float64) +} + +// InstrumentRoundTripperTrace is a middleware that wraps the provided +// RoundTripper and reports times to hook functions provided in the +// InstrumentTrace struct. Hook functions that are not present in the provided +// InstrumentTrace struct are ignored. Times reported to the hook functions are +// time since the start of the request. Only with Go1.9+, those times are +// guaranteed to never be negative. (Earlier Go versions are not using a +// monotonic clock.) Note that partitioning of Histograms is expensive and +// should be used judiciously. +// +// For hook functions that receive an error as an argument, no observations are +// made in the event of a non-nil error value. +// +// See the example for ExampleInstrumentRoundTripperDuration for example usage. +func InstrumentRoundTripperTrace(it *InstrumentTrace, next http.RoundTripper) RoundTripperFunc { + return RoundTripperFunc(func(r *http.Request) (*http.Response, error) { + start := time.Now() + + trace := &httptrace.ClientTrace{ + GotConn: func(_ httptrace.GotConnInfo) { + if it.GotConn != nil { + it.GotConn(time.Since(start).Seconds()) + } + }, + PutIdleConn: func(err error) { + if err != nil { + return + } + if it.PutIdleConn != nil { + it.PutIdleConn(time.Since(start).Seconds()) + } + }, + DNSStart: func(_ httptrace.DNSStartInfo) { + if it.DNSStart != nil { + it.DNSStart(time.Since(start).Seconds()) + } + }, + DNSDone: func(_ httptrace.DNSDoneInfo) { + if it.DNSDone != nil { + it.DNSDone(time.Since(start).Seconds()) + } + }, + ConnectStart: func(_, _ string) { + if it.ConnectStart != nil { + it.ConnectStart(time.Since(start).Seconds()) + } + }, + ConnectDone: func(_, _ string, err error) { + if err != nil { + return + } + if it.ConnectDone != nil { + it.ConnectDone(time.Since(start).Seconds()) + } + }, + GotFirstResponseByte: func() { + if it.GotFirstResponseByte != nil { + it.GotFirstResponseByte(time.Since(start).Seconds()) + } + }, + Got100Continue: func() { + if it.Got100Continue != nil { + it.Got100Continue(time.Since(start).Seconds()) + } + }, + TLSHandshakeStart: func() { + if it.TLSHandshakeStart != nil { + it.TLSHandshakeStart(time.Since(start).Seconds()) + } + }, + TLSHandshakeDone: func(_ tls.ConnectionState, err error) { + if err != nil { + return + } + if it.TLSHandshakeDone != nil { + it.TLSHandshakeDone(time.Since(start).Seconds()) + } + }, + WroteHeaders: func() { + if it.WroteHeaders != nil { + it.WroteHeaders(time.Since(start).Seconds()) + } + }, + Wait100Continue: func() { + if it.Wait100Continue != nil { + it.Wait100Continue(time.Since(start).Seconds()) + } + }, + WroteRequest: func(_ httptrace.WroteRequestInfo) { + if it.WroteRequest != nil { + it.WroteRequest(time.Since(start).Seconds()) + } + }, + } + r = r.WithContext(httptrace.WithClientTrace(context.Background(), trace)) + + return next.RoundTrip(r) + }) +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/promhttp/instrument_server.go b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/instrument_server.go new file mode 100644 index 000000000..9db243805 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/promhttp/instrument_server.go @@ -0,0 +1,447 @@ +// Copyright 2017 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package promhttp + +import ( + "errors" + "net/http" + "strconv" + "strings" + "time" + + dto "github.com/prometheus/client_model/go" + + "github.com/prometheus/client_golang/prometheus" +) + +// magicString is used for the hacky label test in checkLabels. Remove once fixed. +const magicString = "zZgWfBxLqvG8kc8IMv3POi2Bb0tZI3vAnBx+gBaFi9FyPzB/CzKUer1yufDa" + +// InstrumentHandlerInFlight is a middleware that wraps the provided +// http.Handler. It sets the provided prometheus.Gauge to the number of +// requests currently handled by the wrapped http.Handler. +// +// See the example for InstrumentHandlerDuration for example usage. +func InstrumentHandlerInFlight(g prometheus.Gauge, next http.Handler) http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + g.Inc() + defer g.Dec() + next.ServeHTTP(w, r) + }) +} + +// InstrumentHandlerDuration is a middleware that wraps the provided +// http.Handler to observe the request duration with the provided ObserverVec. +// The ObserverVec must have zero, one, or two non-const non-curried labels. For +// those, the only allowed label names are "code" and "method". The function +// panics otherwise. The Observe method of the Observer in the ObserverVec is +// called with the request duration in seconds. Partitioning happens by HTTP +// status code and/or HTTP method if the respective instance label names are +// present in the ObserverVec. For unpartitioned observations, use an +// ObserverVec with zero labels. Note that partitioning of Histograms is +// expensive and should be used judiciously. +// +// If the wrapped Handler does not set a status code, a status code of 200 is assumed. +// +// If the wrapped Handler panics, no values are reported. +// +// Note that this method is only guaranteed to never observe negative durations +// if used with Go1.9+. +func InstrumentHandlerDuration(obs prometheus.ObserverVec, next http.Handler) http.HandlerFunc { + code, method := checkLabels(obs) + + if code { + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + now := time.Now() + d := newDelegator(w, nil) + next.ServeHTTP(d, r) + + obs.With(labels(code, method, r.Method, d.Status())).Observe(time.Since(now).Seconds()) + }) + } + + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + now := time.Now() + next.ServeHTTP(w, r) + obs.With(labels(code, method, r.Method, 0)).Observe(time.Since(now).Seconds()) + }) +} + +// InstrumentHandlerCounter is a middleware that wraps the provided http.Handler +// to observe the request result with the provided CounterVec. The CounterVec +// must have zero, one, or two non-const non-curried labels. For those, the only +// allowed label names are "code" and "method". The function panics +// otherwise. Partitioning of the CounterVec happens by HTTP status code and/or +// HTTP method if the respective instance label names are present in the +// CounterVec. For unpartitioned counting, use a CounterVec with zero labels. +// +// If the wrapped Handler does not set a status code, a status code of 200 is assumed. +// +// If the wrapped Handler panics, the Counter is not incremented. +// +// See the example for InstrumentHandlerDuration for example usage. +func InstrumentHandlerCounter(counter *prometheus.CounterVec, next http.Handler) http.HandlerFunc { + code, method := checkLabels(counter) + + if code { + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + d := newDelegator(w, nil) + next.ServeHTTP(d, r) + counter.With(labels(code, method, r.Method, d.Status())).Inc() + }) + } + + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + next.ServeHTTP(w, r) + counter.With(labels(code, method, r.Method, 0)).Inc() + }) +} + +// InstrumentHandlerTimeToWriteHeader is a middleware that wraps the provided +// http.Handler to observe with the provided ObserverVec the request duration +// until the response headers are written. The ObserverVec must have zero, one, +// or two non-const non-curried labels. For those, the only allowed label names +// are "code" and "method". The function panics otherwise. The Observe method of +// the Observer in the ObserverVec is called with the request duration in +// seconds. Partitioning happens by HTTP status code and/or HTTP method if the +// respective instance label names are present in the ObserverVec. For +// unpartitioned observations, use an ObserverVec with zero labels. Note that +// partitioning of Histograms is expensive and should be used judiciously. +// +// If the wrapped Handler panics before calling WriteHeader, no value is +// reported. +// +// Note that this method is only guaranteed to never observe negative durations +// if used with Go1.9+. +// +// See the example for InstrumentHandlerDuration for example usage. +func InstrumentHandlerTimeToWriteHeader(obs prometheus.ObserverVec, next http.Handler) http.HandlerFunc { + code, method := checkLabels(obs) + + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + now := time.Now() + d := newDelegator(w, func(status int) { + obs.With(labels(code, method, r.Method, status)).Observe(time.Since(now).Seconds()) + }) + next.ServeHTTP(d, r) + }) +} + +// InstrumentHandlerRequestSize is a middleware that wraps the provided +// http.Handler to observe the request size with the provided ObserverVec. The +// ObserverVec must have zero, one, or two non-const non-curried labels. For +// those, the only allowed label names are "code" and "method". The function +// panics otherwise. The Observe method of the Observer in the ObserverVec is +// called with the request size in bytes. Partitioning happens by HTTP status +// code and/or HTTP method if the respective instance label names are present in +// the ObserverVec. For unpartitioned observations, use an ObserverVec with zero +// labels. Note that partitioning of Histograms is expensive and should be used +// judiciously. +// +// If the wrapped Handler does not set a status code, a status code of 200 is assumed. +// +// If the wrapped Handler panics, no values are reported. +// +// See the example for InstrumentHandlerDuration for example usage. +func InstrumentHandlerRequestSize(obs prometheus.ObserverVec, next http.Handler) http.HandlerFunc { + code, method := checkLabels(obs) + + if code { + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + d := newDelegator(w, nil) + next.ServeHTTP(d, r) + size := computeApproximateRequestSize(r) + obs.With(labels(code, method, r.Method, d.Status())).Observe(float64(size)) + }) + } + + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + next.ServeHTTP(w, r) + size := computeApproximateRequestSize(r) + obs.With(labels(code, method, r.Method, 0)).Observe(float64(size)) + }) +} + +// InstrumentHandlerResponseSize is a middleware that wraps the provided +// http.Handler to observe the response size with the provided ObserverVec. The +// ObserverVec must have zero, one, or two non-const non-curried labels. For +// those, the only allowed label names are "code" and "method". The function +// panics otherwise. The Observe method of the Observer in the ObserverVec is +// called with the response size in bytes. Partitioning happens by HTTP status +// code and/or HTTP method if the respective instance label names are present in +// the ObserverVec. For unpartitioned observations, use an ObserverVec with zero +// labels. Note that partitioning of Histograms is expensive and should be used +// judiciously. +// +// If the wrapped Handler does not set a status code, a status code of 200 is assumed. +// +// If the wrapped Handler panics, no values are reported. +// +// See the example for InstrumentHandlerDuration for example usage. +func InstrumentHandlerResponseSize(obs prometheus.ObserverVec, next http.Handler) http.Handler { + code, method := checkLabels(obs) + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + d := newDelegator(w, nil) + next.ServeHTTP(d, r) + obs.With(labels(code, method, r.Method, d.Status())).Observe(float64(d.Written())) + }) +} + +func checkLabels(c prometheus.Collector) (code bool, method bool) { + // TODO(beorn7): Remove this hacky way to check for instance labels + // once Descriptors can have their dimensionality queried. + var ( + desc *prometheus.Desc + m prometheus.Metric + pm dto.Metric + lvs []string + ) + + // Get the Desc from the Collector. + descc := make(chan *prometheus.Desc, 1) + c.Describe(descc) + + select { + case desc = <-descc: + default: + panic("no description provided by collector") + } + select { + case <-descc: + panic("more than one description provided by collector") + default: + } + + close(descc) + + // Create a ConstMetric with the Desc. Since we don't know how many + // variable labels there are, try for as long as it needs. + for err := errors.New("dummy"); err != nil; lvs = append(lvs, magicString) { + m, err = prometheus.NewConstMetric(desc, prometheus.UntypedValue, 0, lvs...) + } + + // Write out the metric into a proto message and look at the labels. + // If the value is not the magicString, it is a constLabel, which doesn't interest us. + // If the label is curried, it doesn't interest us. + // In all other cases, only "code" or "method" is allowed. + if err := m.Write(&pm); err != nil { + panic("error checking metric for labels") + } + for _, label := range pm.Label { + name, value := label.GetName(), label.GetValue() + if value != magicString || isLabelCurried(c, name) { + continue + } + switch name { + case "code": + code = true + case "method": + method = true + default: + panic("metric partitioned with non-supported labels") + } + } + return +} + +func isLabelCurried(c prometheus.Collector, label string) bool { + // This is even hackier than the label test above. + // We essentially try to curry again and see if it works. + // But for that, we need to type-convert to the two + // types we use here, ObserverVec or *CounterVec. + switch v := c.(type) { + case *prometheus.CounterVec: + if _, err := v.CurryWith(prometheus.Labels{label: "dummy"}); err == nil { + return false + } + case prometheus.ObserverVec: + if _, err := v.CurryWith(prometheus.Labels{label: "dummy"}); err == nil { + return false + } + default: + panic("unsupported metric vec type") + } + return true +} + +// emptyLabels is a one-time allocation for non-partitioned metrics to avoid +// unnecessary allocations on each request. +var emptyLabels = prometheus.Labels{} + +func labels(code, method bool, reqMethod string, status int) prometheus.Labels { + if !(code || method) { + return emptyLabels + } + labels := prometheus.Labels{} + + if code { + labels["code"] = sanitizeCode(status) + } + if method { + labels["method"] = sanitizeMethod(reqMethod) + } + + return labels +} + +func computeApproximateRequestSize(r *http.Request) int { + s := 0 + if r.URL != nil { + s += len(r.URL.String()) + } + + s += len(r.Method) + s += len(r.Proto) + for name, values := range r.Header { + s += len(name) + for _, value := range values { + s += len(value) + } + } + s += len(r.Host) + + // N.B. r.Form and r.MultipartForm are assumed to be included in r.URL. + + if r.ContentLength != -1 { + s += int(r.ContentLength) + } + return s +} + +func sanitizeMethod(m string) string { + switch m { + case "GET", "get": + return "get" + case "PUT", "put": + return "put" + case "HEAD", "head": + return "head" + case "POST", "post": + return "post" + case "DELETE", "delete": + return "delete" + case "CONNECT", "connect": + return "connect" + case "OPTIONS", "options": + return "options" + case "NOTIFY", "notify": + return "notify" + default: + return strings.ToLower(m) + } +} + +// If the wrapped http.Handler has not set a status code, i.e. the value is +// currently 0, santizeCode will return 200, for consistency with behavior in +// the stdlib. +func sanitizeCode(s int) string { + switch s { + case 100: + return "100" + case 101: + return "101" + + case 200, 0: + return "200" + case 201: + return "201" + case 202: + return "202" + case 203: + return "203" + case 204: + return "204" + case 205: + return "205" + case 206: + return "206" + + case 300: + return "300" + case 301: + return "301" + case 302: + return "302" + case 304: + return "304" + case 305: + return "305" + case 307: + return "307" + + case 400: + return "400" + case 401: + return "401" + case 402: + return "402" + case 403: + return "403" + case 404: + return "404" + case 405: + return "405" + case 406: + return "406" + case 407: + return "407" + case 408: + return "408" + case 409: + return "409" + case 410: + return "410" + case 411: + return "411" + case 412: + return "412" + case 413: + return "413" + case 414: + return "414" + case 415: + return "415" + case 416: + return "416" + case 417: + return "417" + case 418: + return "418" + + case 500: + return "500" + case 501: + return "501" + case 502: + return "502" + case 503: + return "503" + case 504: + return "504" + case 505: + return "505" + + case 428: + return "428" + case 429: + return "429" + case 431: + return "431" + case 511: + return "511" + + default: + return strconv.Itoa(s) + } +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/registry.go b/vendor/github.com/prometheus/client_golang/prometheus/registry.go new file mode 100644 index 000000000..bee370364 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/registry.go @@ -0,0 +1,807 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import ( + "bytes" + "errors" + "fmt" + "os" + "runtime" + "sort" + "sync" + "unicode/utf8" + + "github.com/golang/protobuf/proto" + + dto "github.com/prometheus/client_model/go" +) + +const ( + // Capacity for the channel to collect metrics and descriptors. + capMetricChan = 1000 + capDescChan = 10 +) + +// DefaultRegisterer and DefaultGatherer are the implementations of the +// Registerer and Gatherer interface a number of convenience functions in this +// package act on. Initially, both variables point to the same Registry, which +// has a process collector (currently on Linux only, see NewProcessCollector) +// and a Go collector (see NewGoCollector) already registered. This approach to +// keep default instances as global state mirrors the approach of other packages +// in the Go standard library. Note that there are caveats. Change the variables +// with caution and only if you understand the consequences. Users who want to +// avoid global state altogether should not use the convenience functions and +// act on custom instances instead. +var ( + defaultRegistry = NewRegistry() + DefaultRegisterer Registerer = defaultRegistry + DefaultGatherer Gatherer = defaultRegistry +) + +func init() { + MustRegister(NewProcessCollector(os.Getpid(), "")) + MustRegister(NewGoCollector()) +} + +// NewRegistry creates a new vanilla Registry without any Collectors +// pre-registered. +func NewRegistry() *Registry { + return &Registry{ + collectorsByID: map[uint64]Collector{}, + descIDs: map[uint64]struct{}{}, + dimHashesByName: map[string]uint64{}, + } +} + +// NewPedanticRegistry returns a registry that checks during collection if each +// collected Metric is consistent with its reported Desc, and if the Desc has +// actually been registered with the registry. +// +// Usually, a Registry will be happy as long as the union of all collected +// Metrics is consistent and valid even if some metrics are not consistent with +// their own Desc or a Desc provided by their registered Collector. Well-behaved +// Collectors and Metrics will only provide consistent Descs. This Registry is +// useful to test the implementation of Collectors and Metrics. +func NewPedanticRegistry() *Registry { + r := NewRegistry() + r.pedanticChecksEnabled = true + return r +} + +// Registerer is the interface for the part of a registry in charge of +// registering and unregistering. Users of custom registries should use +// Registerer as type for registration purposes (rather than the Registry type +// directly). In that way, they are free to use custom Registerer implementation +// (e.g. for testing purposes). +type Registerer interface { + // Register registers a new Collector to be included in metrics + // collection. It returns an error if the descriptors provided by the + // Collector are invalid or if they — in combination with descriptors of + // already registered Collectors — do not fulfill the consistency and + // uniqueness criteria described in the documentation of metric.Desc. + // + // If the provided Collector is equal to a Collector already registered + // (which includes the case of re-registering the same Collector), the + // returned error is an instance of AlreadyRegisteredError, which + // contains the previously registered Collector. + // + // It is in general not safe to register the same Collector multiple + // times concurrently. + Register(Collector) error + // MustRegister works like Register but registers any number of + // Collectors and panics upon the first registration that causes an + // error. + MustRegister(...Collector) + // Unregister unregisters the Collector that equals the Collector passed + // in as an argument. (Two Collectors are considered equal if their + // Describe method yields the same set of descriptors.) The function + // returns whether a Collector was unregistered. + // + // Note that even after unregistering, it will not be possible to + // register a new Collector that is inconsistent with the unregistered + // Collector, e.g. a Collector collecting metrics with the same name but + // a different help string. The rationale here is that the same registry + // instance must only collect consistent metrics throughout its + // lifetime. + Unregister(Collector) bool +} + +// Gatherer is the interface for the part of a registry in charge of gathering +// the collected metrics into a number of MetricFamilies. The Gatherer interface +// comes with the same general implication as described for the Registerer +// interface. +type Gatherer interface { + // Gather calls the Collect method of the registered Collectors and then + // gathers the collected metrics into a lexicographically sorted slice + // of MetricFamily protobufs. Even if an error occurs, Gather attempts + // to gather as many metrics as possible. Hence, if a non-nil error is + // returned, the returned MetricFamily slice could be nil (in case of a + // fatal error that prevented any meaningful metric collection) or + // contain a number of MetricFamily protobufs, some of which might be + // incomplete, and some might be missing altogether. The returned error + // (which might be a MultiError) explains the details. In scenarios + // where complete collection is critical, the returned MetricFamily + // protobufs should be disregarded if the returned error is non-nil. + Gather() ([]*dto.MetricFamily, error) +} + +// Register registers the provided Collector with the DefaultRegisterer. +// +// Register is a shortcut for DefaultRegisterer.Register(c). See there for more +// details. +func Register(c Collector) error { + return DefaultRegisterer.Register(c) +} + +// MustRegister registers the provided Collectors with the DefaultRegisterer and +// panics if any error occurs. +// +// MustRegister is a shortcut for DefaultRegisterer.MustRegister(cs...). See +// there for more details. +func MustRegister(cs ...Collector) { + DefaultRegisterer.MustRegister(cs...) +} + +// Unregister removes the registration of the provided Collector from the +// DefaultRegisterer. +// +// Unregister is a shortcut for DefaultRegisterer.Unregister(c). See there for +// more details. +func Unregister(c Collector) bool { + return DefaultRegisterer.Unregister(c) +} + +// GathererFunc turns a function into a Gatherer. +type GathererFunc func() ([]*dto.MetricFamily, error) + +// Gather implements Gatherer. +func (gf GathererFunc) Gather() ([]*dto.MetricFamily, error) { + return gf() +} + +// AlreadyRegisteredError is returned by the Register method if the Collector to +// be registered has already been registered before, or a different Collector +// that collects the same metrics has been registered before. Registration fails +// in that case, but you can detect from the kind of error what has +// happened. The error contains fields for the existing Collector and the +// (rejected) new Collector that equals the existing one. This can be used to +// find out if an equal Collector has been registered before and switch over to +// using the old one, as demonstrated in the example. +type AlreadyRegisteredError struct { + ExistingCollector, NewCollector Collector +} + +func (err AlreadyRegisteredError) Error() string { + return "duplicate metrics collector registration attempted" +} + +// MultiError is a slice of errors implementing the error interface. It is used +// by a Gatherer to report multiple errors during MetricFamily gathering. +type MultiError []error + +func (errs MultiError) Error() string { + if len(errs) == 0 { + return "" + } + buf := &bytes.Buffer{} + fmt.Fprintf(buf, "%d error(s) occurred:", len(errs)) + for _, err := range errs { + fmt.Fprintf(buf, "\n* %s", err) + } + return buf.String() +} + +// Append appends the provided error if it is not nil. +func (errs *MultiError) Append(err error) { + if err != nil { + *errs = append(*errs, err) + } +} + +// MaybeUnwrap returns nil if len(errs) is 0. It returns the first and only +// contained error as error if len(errs is 1). In all other cases, it returns +// the MultiError directly. This is helpful for returning a MultiError in a way +// that only uses the MultiError if needed. +func (errs MultiError) MaybeUnwrap() error { + switch len(errs) { + case 0: + return nil + case 1: + return errs[0] + default: + return errs + } +} + +// Registry registers Prometheus collectors, collects their metrics, and gathers +// them into MetricFamilies for exposition. It implements both Registerer and +// Gatherer. The zero value is not usable. Create instances with NewRegistry or +// NewPedanticRegistry. +type Registry struct { + mtx sync.RWMutex + collectorsByID map[uint64]Collector // ID is a hash of the descIDs. + descIDs map[uint64]struct{} + dimHashesByName map[string]uint64 + pedanticChecksEnabled bool +} + +// Register implements Registerer. +func (r *Registry) Register(c Collector) error { + var ( + descChan = make(chan *Desc, capDescChan) + newDescIDs = map[uint64]struct{}{} + newDimHashesByName = map[string]uint64{} + collectorID uint64 // Just a sum of all desc IDs. + duplicateDescErr error + ) + go func() { + c.Describe(descChan) + close(descChan) + }() + r.mtx.Lock() + defer r.mtx.Unlock() + // Conduct various tests... + for desc := range descChan { + + // Is the descriptor valid at all? + if desc.err != nil { + return fmt.Errorf("descriptor %s is invalid: %s", desc, desc.err) + } + + // Is the descID unique? + // (In other words: Is the fqName + constLabel combination unique?) + if _, exists := r.descIDs[desc.id]; exists { + duplicateDescErr = fmt.Errorf("descriptor %s already exists with the same fully-qualified name and const label values", desc) + } + // If it is not a duplicate desc in this collector, add it to + // the collectorID. (We allow duplicate descs within the same + // collector, but their existence must be a no-op.) + if _, exists := newDescIDs[desc.id]; !exists { + newDescIDs[desc.id] = struct{}{} + collectorID += desc.id + } + + // Are all the label names and the help string consistent with + // previous descriptors of the same name? + // First check existing descriptors... + if dimHash, exists := r.dimHashesByName[desc.fqName]; exists { + if dimHash != desc.dimHash { + return fmt.Errorf("a previously registered descriptor with the same fully-qualified name as %s has different label names or a different help string", desc) + } + } else { + // ...then check the new descriptors already seen. + if dimHash, exists := newDimHashesByName[desc.fqName]; exists { + if dimHash != desc.dimHash { + return fmt.Errorf("descriptors reported by collector have inconsistent label names or help strings for the same fully-qualified name, offender is %s", desc) + } + } else { + newDimHashesByName[desc.fqName] = desc.dimHash + } + } + } + // Did anything happen at all? + if len(newDescIDs) == 0 { + return errors.New("collector has no descriptors") + } + if existing, exists := r.collectorsByID[collectorID]; exists { + return AlreadyRegisteredError{ + ExistingCollector: existing, + NewCollector: c, + } + } + // If the collectorID is new, but at least one of the descs existed + // before, we are in trouble. + if duplicateDescErr != nil { + return duplicateDescErr + } + + // Only after all tests have passed, actually register. + r.collectorsByID[collectorID] = c + for hash := range newDescIDs { + r.descIDs[hash] = struct{}{} + } + for name, dimHash := range newDimHashesByName { + r.dimHashesByName[name] = dimHash + } + return nil +} + +// Unregister implements Registerer. +func (r *Registry) Unregister(c Collector) bool { + var ( + descChan = make(chan *Desc, capDescChan) + descIDs = map[uint64]struct{}{} + collectorID uint64 // Just a sum of the desc IDs. + ) + go func() { + c.Describe(descChan) + close(descChan) + }() + for desc := range descChan { + if _, exists := descIDs[desc.id]; !exists { + collectorID += desc.id + descIDs[desc.id] = struct{}{} + } + } + + r.mtx.RLock() + if _, exists := r.collectorsByID[collectorID]; !exists { + r.mtx.RUnlock() + return false + } + r.mtx.RUnlock() + + r.mtx.Lock() + defer r.mtx.Unlock() + + delete(r.collectorsByID, collectorID) + for id := range descIDs { + delete(r.descIDs, id) + } + // dimHashesByName is left untouched as those must be consistent + // throughout the lifetime of a program. + return true +} + +// MustRegister implements Registerer. +func (r *Registry) MustRegister(cs ...Collector) { + for _, c := range cs { + if err := r.Register(c); err != nil { + panic(err) + } + } +} + +// Gather implements Gatherer. +func (r *Registry) Gather() ([]*dto.MetricFamily, error) { + var ( + metricChan = make(chan Metric, capMetricChan) + metricHashes = map[uint64]struct{}{} + dimHashes = map[string]uint64{} + wg sync.WaitGroup + errs MultiError // The collected errors to return in the end. + registeredDescIDs map[uint64]struct{} // Only used for pedantic checks + ) + + r.mtx.RLock() + goroutineBudget := len(r.collectorsByID) + metricFamiliesByName := make(map[string]*dto.MetricFamily, len(r.dimHashesByName)) + collectors := make(chan Collector, len(r.collectorsByID)) + for _, collector := range r.collectorsByID { + collectors <- collector + } + // In case pedantic checks are enabled, we have to copy the map before + // giving up the RLock. + if r.pedanticChecksEnabled { + registeredDescIDs = make(map[uint64]struct{}, len(r.descIDs)) + for id := range r.descIDs { + registeredDescIDs[id] = struct{}{} + } + } + r.mtx.RUnlock() + + wg.Add(goroutineBudget) + + collectWorker := func() { + for { + select { + case collector := <-collectors: + collector.Collect(metricChan) + wg.Done() + default: + return + } + } + } + + // Start the first worker now to make sure at least one is running. + go collectWorker() + goroutineBudget-- + + // Close the metricChan once all collectors are collected. + go func() { + wg.Wait() + close(metricChan) + }() + + // Drain metricChan in case of premature return. + defer func() { + for range metricChan { + } + }() + +collectLoop: + for { + select { + case metric, ok := <-metricChan: + if !ok { + // metricChan is closed, we are done. + break collectLoop + } + errs.Append(processMetric( + metric, metricFamiliesByName, + metricHashes, dimHashes, + registeredDescIDs, + )) + default: + if goroutineBudget <= 0 || len(collectors) == 0 { + // All collectors are aleady being worked on or + // we have already as many goroutines started as + // there are collectors. Just process metrics + // from now on. + for metric := range metricChan { + errs.Append(processMetric( + metric, metricFamiliesByName, + metricHashes, dimHashes, + registeredDescIDs, + )) + } + break collectLoop + } + // Start more workers. + go collectWorker() + goroutineBudget-- + runtime.Gosched() + } + } + return normalizeMetricFamilies(metricFamiliesByName), errs.MaybeUnwrap() +} + +// processMetric is an internal helper method only used by the Gather method. +func processMetric( + metric Metric, + metricFamiliesByName map[string]*dto.MetricFamily, + metricHashes map[uint64]struct{}, + dimHashes map[string]uint64, + registeredDescIDs map[uint64]struct{}, +) error { + desc := metric.Desc() + dtoMetric := &dto.Metric{} + if err := metric.Write(dtoMetric); err != nil { + return fmt.Errorf("error collecting metric %v: %s", desc, err) + } + metricFamily, ok := metricFamiliesByName[desc.fqName] + if ok { + if metricFamily.GetHelp() != desc.help { + return fmt.Errorf( + "collected metric %s %s has help %q but should have %q", + desc.fqName, dtoMetric, desc.help, metricFamily.GetHelp(), + ) + } + // TODO(beorn7): Simplify switch once Desc has type. + switch metricFamily.GetType() { + case dto.MetricType_COUNTER: + if dtoMetric.Counter == nil { + return fmt.Errorf( + "collected metric %s %s should be a Counter", + desc.fqName, dtoMetric, + ) + } + case dto.MetricType_GAUGE: + if dtoMetric.Gauge == nil { + return fmt.Errorf( + "collected metric %s %s should be a Gauge", + desc.fqName, dtoMetric, + ) + } + case dto.MetricType_SUMMARY: + if dtoMetric.Summary == nil { + return fmt.Errorf( + "collected metric %s %s should be a Summary", + desc.fqName, dtoMetric, + ) + } + case dto.MetricType_UNTYPED: + if dtoMetric.Untyped == nil { + return fmt.Errorf( + "collected metric %s %s should be Untyped", + desc.fqName, dtoMetric, + ) + } + case dto.MetricType_HISTOGRAM: + if dtoMetric.Histogram == nil { + return fmt.Errorf( + "collected metric %s %s should be a Histogram", + desc.fqName, dtoMetric, + ) + } + default: + panic("encountered MetricFamily with invalid type") + } + } else { + metricFamily = &dto.MetricFamily{} + metricFamily.Name = proto.String(desc.fqName) + metricFamily.Help = proto.String(desc.help) + // TODO(beorn7): Simplify switch once Desc has type. + switch { + case dtoMetric.Gauge != nil: + metricFamily.Type = dto.MetricType_GAUGE.Enum() + case dtoMetric.Counter != nil: + metricFamily.Type = dto.MetricType_COUNTER.Enum() + case dtoMetric.Summary != nil: + metricFamily.Type = dto.MetricType_SUMMARY.Enum() + case dtoMetric.Untyped != nil: + metricFamily.Type = dto.MetricType_UNTYPED.Enum() + case dtoMetric.Histogram != nil: + metricFamily.Type = dto.MetricType_HISTOGRAM.Enum() + default: + return fmt.Errorf("empty metric collected: %s", dtoMetric) + } + metricFamiliesByName[desc.fqName] = metricFamily + } + if err := checkMetricConsistency(metricFamily, dtoMetric, metricHashes, dimHashes); err != nil { + return err + } + if registeredDescIDs != nil { + // Is the desc registered at all? + if _, exist := registeredDescIDs[desc.id]; !exist { + return fmt.Errorf( + "collected metric %s %s with unregistered descriptor %s", + metricFamily.GetName(), dtoMetric, desc, + ) + } + if err := checkDescConsistency(metricFamily, dtoMetric, desc); err != nil { + return err + } + } + metricFamily.Metric = append(metricFamily.Metric, dtoMetric) + return nil +} + +// Gatherers is a slice of Gatherer instances that implements the Gatherer +// interface itself. Its Gather method calls Gather on all Gatherers in the +// slice in order and returns the merged results. Errors returned from the +// Gather calles are all returned in a flattened MultiError. Duplicate and +// inconsistent Metrics are skipped (first occurrence in slice order wins) and +// reported in the returned error. +// +// Gatherers can be used to merge the Gather results from multiple +// Registries. It also provides a way to directly inject existing MetricFamily +// protobufs into the gathering by creating a custom Gatherer with a Gather +// method that simply returns the existing MetricFamily protobufs. Note that no +// registration is involved (in contrast to Collector registration), so +// obviously registration-time checks cannot happen. Any inconsistencies between +// the gathered MetricFamilies are reported as errors by the Gather method, and +// inconsistent Metrics are dropped. Invalid parts of the MetricFamilies +// (e.g. syntactically invalid metric or label names) will go undetected. +type Gatherers []Gatherer + +// Gather implements Gatherer. +func (gs Gatherers) Gather() ([]*dto.MetricFamily, error) { + var ( + metricFamiliesByName = map[string]*dto.MetricFamily{} + metricHashes = map[uint64]struct{}{} + dimHashes = map[string]uint64{} + errs MultiError // The collected errors to return in the end. + ) + + for i, g := range gs { + mfs, err := g.Gather() + if err != nil { + if multiErr, ok := err.(MultiError); ok { + for _, err := range multiErr { + errs = append(errs, fmt.Errorf("[from Gatherer #%d] %s", i+1, err)) + } + } else { + errs = append(errs, fmt.Errorf("[from Gatherer #%d] %s", i+1, err)) + } + } + for _, mf := range mfs { + existingMF, exists := metricFamiliesByName[mf.GetName()] + if exists { + if existingMF.GetHelp() != mf.GetHelp() { + errs = append(errs, fmt.Errorf( + "gathered metric family %s has help %q but should have %q", + mf.GetName(), mf.GetHelp(), existingMF.GetHelp(), + )) + continue + } + if existingMF.GetType() != mf.GetType() { + errs = append(errs, fmt.Errorf( + "gathered metric family %s has type %s but should have %s", + mf.GetName(), mf.GetType(), existingMF.GetType(), + )) + continue + } + } else { + existingMF = &dto.MetricFamily{} + existingMF.Name = mf.Name + existingMF.Help = mf.Help + existingMF.Type = mf.Type + metricFamiliesByName[mf.GetName()] = existingMF + } + for _, m := range mf.Metric { + if err := checkMetricConsistency(existingMF, m, metricHashes, dimHashes); err != nil { + errs = append(errs, err) + continue + } + existingMF.Metric = append(existingMF.Metric, m) + } + } + } + return normalizeMetricFamilies(metricFamiliesByName), errs.MaybeUnwrap() +} + +// metricSorter is a sortable slice of *dto.Metric. +type metricSorter []*dto.Metric + +func (s metricSorter) Len() int { + return len(s) +} + +func (s metricSorter) Swap(i, j int) { + s[i], s[j] = s[j], s[i] +} + +func (s metricSorter) Less(i, j int) bool { + if len(s[i].Label) != len(s[j].Label) { + // This should not happen. The metrics are + // inconsistent. However, we have to deal with the fact, as + // people might use custom collectors or metric family injection + // to create inconsistent metrics. So let's simply compare the + // number of labels in this case. That will still yield + // reproducible sorting. + return len(s[i].Label) < len(s[j].Label) + } + for n, lp := range s[i].Label { + vi := lp.GetValue() + vj := s[j].Label[n].GetValue() + if vi != vj { + return vi < vj + } + } + + // We should never arrive here. Multiple metrics with the same + // label set in the same scrape will lead to undefined ingestion + // behavior. However, as above, we have to provide stable sorting + // here, even for inconsistent metrics. So sort equal metrics + // by their timestamp, with missing timestamps (implying "now") + // coming last. + if s[i].TimestampMs == nil { + return false + } + if s[j].TimestampMs == nil { + return true + } + return s[i].GetTimestampMs() < s[j].GetTimestampMs() +} + +// normalizeMetricFamilies returns a MetricFamily slice with empty +// MetricFamilies pruned and the remaining MetricFamilies sorted by name within +// the slice, with the contained Metrics sorted within each MetricFamily. +func normalizeMetricFamilies(metricFamiliesByName map[string]*dto.MetricFamily) []*dto.MetricFamily { + for _, mf := range metricFamiliesByName { + sort.Sort(metricSorter(mf.Metric)) + } + names := make([]string, 0, len(metricFamiliesByName)) + for name, mf := range metricFamiliesByName { + if len(mf.Metric) > 0 { + names = append(names, name) + } + } + sort.Strings(names) + result := make([]*dto.MetricFamily, 0, len(names)) + for _, name := range names { + result = append(result, metricFamiliesByName[name]) + } + return result +} + +// checkMetricConsistency checks if the provided Metric is consistent with the +// provided MetricFamily. It also hashed the Metric labels and the MetricFamily +// name. If the resulting hash is already in the provided metricHashes, an error +// is returned. If not, it is added to metricHashes. The provided dimHashes maps +// MetricFamily names to their dimHash (hashed sorted label names). If dimHashes +// doesn't yet contain a hash for the provided MetricFamily, it is +// added. Otherwise, an error is returned if the existing dimHashes in not equal +// the calculated dimHash. +func checkMetricConsistency( + metricFamily *dto.MetricFamily, + dtoMetric *dto.Metric, + metricHashes map[uint64]struct{}, + dimHashes map[string]uint64, +) error { + // Type consistency with metric family. + if metricFamily.GetType() == dto.MetricType_GAUGE && dtoMetric.Gauge == nil || + metricFamily.GetType() == dto.MetricType_COUNTER && dtoMetric.Counter == nil || + metricFamily.GetType() == dto.MetricType_SUMMARY && dtoMetric.Summary == nil || + metricFamily.GetType() == dto.MetricType_HISTOGRAM && dtoMetric.Histogram == nil || + metricFamily.GetType() == dto.MetricType_UNTYPED && dtoMetric.Untyped == nil { + return fmt.Errorf( + "collected metric %s %s is not a %s", + metricFamily.GetName(), dtoMetric, metricFamily.GetType(), + ) + } + + for _, labelPair := range dtoMetric.GetLabel() { + if !utf8.ValidString(*labelPair.Value) { + return fmt.Errorf("collected metric's label %s is not utf8: %#v", *labelPair.Name, *labelPair.Value) + } + } + + // Is the metric unique (i.e. no other metric with the same name and the same label values)? + h := hashNew() + h = hashAdd(h, metricFamily.GetName()) + h = hashAddByte(h, separatorByte) + dh := hashNew() + // Make sure label pairs are sorted. We depend on it for the consistency + // check. + sort.Sort(LabelPairSorter(dtoMetric.Label)) + for _, lp := range dtoMetric.Label { + h = hashAdd(h, lp.GetValue()) + h = hashAddByte(h, separatorByte) + dh = hashAdd(dh, lp.GetName()) + dh = hashAddByte(dh, separatorByte) + } + if _, exists := metricHashes[h]; exists { + return fmt.Errorf( + "collected metric %s %s was collected before with the same name and label values", + metricFamily.GetName(), dtoMetric, + ) + } + if dimHash, ok := dimHashes[metricFamily.GetName()]; ok { + if dimHash != dh { + return fmt.Errorf( + "collected metric %s %s has label dimensions inconsistent with previously collected metrics in the same metric family", + metricFamily.GetName(), dtoMetric, + ) + } + } else { + dimHashes[metricFamily.GetName()] = dh + } + metricHashes[h] = struct{}{} + return nil +} + +func checkDescConsistency( + metricFamily *dto.MetricFamily, + dtoMetric *dto.Metric, + desc *Desc, +) error { + // Desc help consistency with metric family help. + if metricFamily.GetHelp() != desc.help { + return fmt.Errorf( + "collected metric %s %s has help %q but should have %q", + metricFamily.GetName(), dtoMetric, metricFamily.GetHelp(), desc.help, + ) + } + + // Is the desc consistent with the content of the metric? + lpsFromDesc := make([]*dto.LabelPair, 0, len(dtoMetric.Label)) + lpsFromDesc = append(lpsFromDesc, desc.constLabelPairs...) + for _, l := range desc.variableLabels { + lpsFromDesc = append(lpsFromDesc, &dto.LabelPair{ + Name: proto.String(l), + }) + } + if len(lpsFromDesc) != len(dtoMetric.Label) { + return fmt.Errorf( + "labels in collected metric %s %s are inconsistent with descriptor %s", + metricFamily.GetName(), dtoMetric, desc, + ) + } + sort.Sort(LabelPairSorter(lpsFromDesc)) + for i, lpFromDesc := range lpsFromDesc { + lpFromMetric := dtoMetric.Label[i] + if lpFromDesc.GetName() != lpFromMetric.GetName() || + lpFromDesc.Value != nil && lpFromDesc.GetValue() != lpFromMetric.GetValue() { + return fmt.Errorf( + "labels in collected metric %s %s are inconsistent with descriptor %s", + metricFamily.GetName(), dtoMetric, desc, + ) + } + } + return nil +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/summary.go b/vendor/github.com/prometheus/client_golang/prometheus/summary.go new file mode 100644 index 000000000..f7dc85b96 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/summary.go @@ -0,0 +1,609 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import ( + "fmt" + "math" + "sort" + "sync" + "time" + + "github.com/beorn7/perks/quantile" + "github.com/golang/protobuf/proto" + + dto "github.com/prometheus/client_model/go" +) + +// quantileLabel is used for the label that defines the quantile in a +// summary. +const quantileLabel = "quantile" + +// A Summary captures individual observations from an event or sample stream and +// summarizes them in a manner similar to traditional summary statistics: 1. sum +// of observations, 2. observation count, 3. rank estimations. +// +// A typical use-case is the observation of request latencies. By default, a +// Summary provides the median, the 90th and the 99th percentile of the latency +// as rank estimations. However, the default behavior will change in the +// upcoming v0.10 of the library. There will be no rank estiamtions at all by +// default. For a sane transition, it is recommended to set the desired rank +// estimations explicitly. +// +// Note that the rank estimations cannot be aggregated in a meaningful way with +// the Prometheus query language (i.e. you cannot average or add them). If you +// need aggregatable quantiles (e.g. you want the 99th percentile latency of all +// queries served across all instances of a service), consider the Histogram +// metric type. See the Prometheus documentation for more details. +// +// To create Summary instances, use NewSummary. +type Summary interface { + Metric + Collector + + // Observe adds a single observation to the summary. + Observe(float64) +} + +// DefObjectives are the default Summary quantile values. +// +// Deprecated: DefObjectives will not be used as the default objectives in +// v0.10 of the library. The default Summary will have no quantiles then. +var ( + DefObjectives = map[float64]float64{0.5: 0.05, 0.9: 0.01, 0.99: 0.001} + + errQuantileLabelNotAllowed = fmt.Errorf( + "%q is not allowed as label name in summaries", quantileLabel, + ) +) + +// Default values for SummaryOpts. +const ( + // DefMaxAge is the default duration for which observations stay + // relevant. + DefMaxAge time.Duration = 10 * time.Minute + // DefAgeBuckets is the default number of buckets used to calculate the + // age of observations. + DefAgeBuckets = 5 + // DefBufCap is the standard buffer size for collecting Summary observations. + DefBufCap = 500 +) + +// SummaryOpts bundles the options for creating a Summary metric. It is +// mandatory to set Name and Help to a non-empty string. While all other fields +// are optional and can safely be left at their zero value, it is recommended to +// explicitly set the Objectives field to the desired value as the default value +// will change in the upcoming v0.10 of the library. +type SummaryOpts struct { + // Namespace, Subsystem, and Name are components of the fully-qualified + // name of the Summary (created by joining these components with + // "_"). Only Name is mandatory, the others merely help structuring the + // name. Note that the fully-qualified name of the Summary must be a + // valid Prometheus metric name. + Namespace string + Subsystem string + Name string + + // Help provides information about this Summary. Mandatory! + // + // Metrics with the same fully-qualified name must have the same Help + // string. + Help string + + // ConstLabels are used to attach fixed labels to this metric. Metrics + // with the same fully-qualified name must have the same label names in + // their ConstLabels. + // + // ConstLabels are only used rarely. In particular, do not use them to + // attach the same labels to all your metrics. Those use cases are + // better covered by target labels set by the scraping Prometheus + // server, or by one specific metric (e.g. a build_info or a + // machine_role metric). See also + // https://prometheus.io/docs/instrumenting/writing_exporters/#target-labels,-not-static-scraped-labels + ConstLabels Labels + + // Objectives defines the quantile rank estimates with their respective + // absolute error. If Objectives[q] = e, then the value reported for q + // will be the φ-quantile value for some φ between q-e and q+e. The + // default value is DefObjectives. It is used if Objectives is left at + // its zero value (i.e. nil). To create a Summary without Objectives, + // set it to an empty map (i.e. map[float64]float64{}). + // + // Deprecated: Note that the current value of DefObjectives is + // deprecated. It will be replaced by an empty map in v0.10 of the + // library. Please explicitly set Objectives to the desired value. + Objectives map[float64]float64 + + // MaxAge defines the duration for which an observation stays relevant + // for the summary. Must be positive. The default value is DefMaxAge. + MaxAge time.Duration + + // AgeBuckets is the number of buckets used to exclude observations that + // are older than MaxAge from the summary. A higher number has a + // resource penalty, so only increase it if the higher resolution is + // really required. For very high observation rates, you might want to + // reduce the number of age buckets. With only one age bucket, you will + // effectively see a complete reset of the summary each time MaxAge has + // passed. The default value is DefAgeBuckets. + AgeBuckets uint32 + + // BufCap defines the default sample stream buffer size. The default + // value of DefBufCap should suffice for most uses. If there is a need + // to increase the value, a multiple of 500 is recommended (because that + // is the internal buffer size of the underlying package + // "github.com/bmizerany/perks/quantile"). + BufCap uint32 +} + +// Great fuck-up with the sliding-window decay algorithm... The Merge method of +// perk/quantile is actually not working as advertised - and it might be +// unfixable, as the underlying algorithm is apparently not capable of merging +// summaries in the first place. To avoid using Merge, we are currently adding +// observations to _each_ age bucket, i.e. the effort to add a sample is +// essentially multiplied by the number of age buckets. When rotating age +// buckets, we empty the previous head stream. On scrape time, we simply take +// the quantiles from the head stream (no merging required). Result: More effort +// on observation time, less effort on scrape time, which is exactly the +// opposite of what we try to accomplish, but at least the results are correct. +// +// The quite elegant previous contraption to merge the age buckets efficiently +// on scrape time (see code up commit 6b9530d72ea715f0ba612c0120e6e09fbf1d49d0) +// can't be used anymore. + +// NewSummary creates a new Summary based on the provided SummaryOpts. +func NewSummary(opts SummaryOpts) Summary { + return newSummary( + NewDesc( + BuildFQName(opts.Namespace, opts.Subsystem, opts.Name), + opts.Help, + nil, + opts.ConstLabels, + ), + opts, + ) +} + +func newSummary(desc *Desc, opts SummaryOpts, labelValues ...string) Summary { + if len(desc.variableLabels) != len(labelValues) { + panic(errInconsistentCardinality) + } + + for _, n := range desc.variableLabels { + if n == quantileLabel { + panic(errQuantileLabelNotAllowed) + } + } + for _, lp := range desc.constLabelPairs { + if lp.GetName() == quantileLabel { + panic(errQuantileLabelNotAllowed) + } + } + + if opts.Objectives == nil { + opts.Objectives = DefObjectives + } + + if opts.MaxAge < 0 { + panic(fmt.Errorf("illegal max age MaxAge=%v", opts.MaxAge)) + } + if opts.MaxAge == 0 { + opts.MaxAge = DefMaxAge + } + + if opts.AgeBuckets == 0 { + opts.AgeBuckets = DefAgeBuckets + } + + if opts.BufCap == 0 { + opts.BufCap = DefBufCap + } + + s := &summary{ + desc: desc, + + objectives: opts.Objectives, + sortedObjectives: make([]float64, 0, len(opts.Objectives)), + + labelPairs: makeLabelPairs(desc, labelValues), + + hotBuf: make([]float64, 0, opts.BufCap), + coldBuf: make([]float64, 0, opts.BufCap), + streamDuration: opts.MaxAge / time.Duration(opts.AgeBuckets), + } + s.headStreamExpTime = time.Now().Add(s.streamDuration) + s.hotBufExpTime = s.headStreamExpTime + + for i := uint32(0); i < opts.AgeBuckets; i++ { + s.streams = append(s.streams, s.newStream()) + } + s.headStream = s.streams[0] + + for qu := range s.objectives { + s.sortedObjectives = append(s.sortedObjectives, qu) + } + sort.Float64s(s.sortedObjectives) + + s.init(s) // Init self-collection. + return s +} + +type summary struct { + selfCollector + + bufMtx sync.Mutex // Protects hotBuf and hotBufExpTime. + mtx sync.Mutex // Protects every other moving part. + // Lock bufMtx before mtx if both are needed. + + desc *Desc + + objectives map[float64]float64 + sortedObjectives []float64 + + labelPairs []*dto.LabelPair + + sum float64 + cnt uint64 + + hotBuf, coldBuf []float64 + + streams []*quantile.Stream + streamDuration time.Duration + headStream *quantile.Stream + headStreamIdx int + headStreamExpTime, hotBufExpTime time.Time +} + +func (s *summary) Desc() *Desc { + return s.desc +} + +func (s *summary) Observe(v float64) { + s.bufMtx.Lock() + defer s.bufMtx.Unlock() + + now := time.Now() + if now.After(s.hotBufExpTime) { + s.asyncFlush(now) + } + s.hotBuf = append(s.hotBuf, v) + if len(s.hotBuf) == cap(s.hotBuf) { + s.asyncFlush(now) + } +} + +func (s *summary) Write(out *dto.Metric) error { + sum := &dto.Summary{} + qs := make([]*dto.Quantile, 0, len(s.objectives)) + + s.bufMtx.Lock() + s.mtx.Lock() + // Swap bufs even if hotBuf is empty to set new hotBufExpTime. + s.swapBufs(time.Now()) + s.bufMtx.Unlock() + + s.flushColdBuf() + sum.SampleCount = proto.Uint64(s.cnt) + sum.SampleSum = proto.Float64(s.sum) + + for _, rank := range s.sortedObjectives { + var q float64 + if s.headStream.Count() == 0 { + q = math.NaN() + } else { + q = s.headStream.Query(rank) + } + qs = append(qs, &dto.Quantile{ + Quantile: proto.Float64(rank), + Value: proto.Float64(q), + }) + } + + s.mtx.Unlock() + + if len(qs) > 0 { + sort.Sort(quantSort(qs)) + } + sum.Quantile = qs + + out.Summary = sum + out.Label = s.labelPairs + return nil +} + +func (s *summary) newStream() *quantile.Stream { + return quantile.NewTargeted(s.objectives) +} + +// asyncFlush needs bufMtx locked. +func (s *summary) asyncFlush(now time.Time) { + s.mtx.Lock() + s.swapBufs(now) + + // Unblock the original goroutine that was responsible for the mutation + // that triggered the compaction. But hold onto the global non-buffer + // state mutex until the operation finishes. + go func() { + s.flushColdBuf() + s.mtx.Unlock() + }() +} + +// rotateStreams needs mtx AND bufMtx locked. +func (s *summary) maybeRotateStreams() { + for !s.hotBufExpTime.Equal(s.headStreamExpTime) { + s.headStream.Reset() + s.headStreamIdx++ + if s.headStreamIdx >= len(s.streams) { + s.headStreamIdx = 0 + } + s.headStream = s.streams[s.headStreamIdx] + s.headStreamExpTime = s.headStreamExpTime.Add(s.streamDuration) + } +} + +// flushColdBuf needs mtx locked. +func (s *summary) flushColdBuf() { + for _, v := range s.coldBuf { + for _, stream := range s.streams { + stream.Insert(v) + } + s.cnt++ + s.sum += v + } + s.coldBuf = s.coldBuf[0:0] + s.maybeRotateStreams() +} + +// swapBufs needs mtx AND bufMtx locked, coldBuf must be empty. +func (s *summary) swapBufs(now time.Time) { + if len(s.coldBuf) != 0 { + panic("coldBuf is not empty") + } + s.hotBuf, s.coldBuf = s.coldBuf, s.hotBuf + // hotBuf is now empty and gets new expiration set. + for now.After(s.hotBufExpTime) { + s.hotBufExpTime = s.hotBufExpTime.Add(s.streamDuration) + } +} + +type quantSort []*dto.Quantile + +func (s quantSort) Len() int { + return len(s) +} + +func (s quantSort) Swap(i, j int) { + s[i], s[j] = s[j], s[i] +} + +func (s quantSort) Less(i, j int) bool { + return s[i].GetQuantile() < s[j].GetQuantile() +} + +// SummaryVec is a Collector that bundles a set of Summaries that all share the +// same Desc, but have different values for their variable labels. This is used +// if you want to count the same thing partitioned by various dimensions +// (e.g. HTTP request latencies, partitioned by status code and method). Create +// instances with NewSummaryVec. +type SummaryVec struct { + *metricVec +} + +// NewSummaryVec creates a new SummaryVec based on the provided SummaryOpts and +// partitioned by the given label names. +func NewSummaryVec(opts SummaryOpts, labelNames []string) *SummaryVec { + desc := NewDesc( + BuildFQName(opts.Namespace, opts.Subsystem, opts.Name), + opts.Help, + labelNames, + opts.ConstLabels, + ) + return &SummaryVec{ + metricVec: newMetricVec(desc, func(lvs ...string) Metric { + return newSummary(desc, opts, lvs...) + }), + } +} + +// GetMetricWithLabelValues returns the Summary for the given slice of label +// values (same order as the VariableLabels in Desc). If that combination of +// label values is accessed for the first time, a new Summary is created. +// +// It is possible to call this method without using the returned Summary to only +// create the new Summary but leave it at its starting value, a Summary without +// any observations. +// +// Keeping the Summary for later use is possible (and should be considered if +// performance is critical), but keep in mind that Reset, DeleteLabelValues and +// Delete can be used to delete the Summary from the SummaryVec. In that case, +// the Summary will still exist, but it will not be exported anymore, even if a +// Summary with the same label values is created later. See also the CounterVec +// example. +// +// An error is returned if the number of label values is not the same as the +// number of VariableLabels in Desc (minus any curried labels). +// +// Note that for more than one label value, this method is prone to mistakes +// caused by an incorrect order of arguments. Consider GetMetricWith(Labels) as +// an alternative to avoid that type of mistake. For higher label numbers, the +// latter has a much more readable (albeit more verbose) syntax, but it comes +// with a performance overhead (for creating and processing the Labels map). +// See also the GaugeVec example. +func (v *SummaryVec) GetMetricWithLabelValues(lvs ...string) (Observer, error) { + metric, err := v.metricVec.getMetricWithLabelValues(lvs...) + if metric != nil { + return metric.(Observer), err + } + return nil, err +} + +// GetMetricWith returns the Summary for the given Labels map (the label names +// must match those of the VariableLabels in Desc). If that label map is +// accessed for the first time, a new Summary is created. Implications of +// creating a Summary without using it and keeping the Summary for later use are +// the same as for GetMetricWithLabelValues. +// +// An error is returned if the number and names of the Labels are inconsistent +// with those of the VariableLabels in Desc (minus any curried labels). +// +// This method is used for the same purpose as +// GetMetricWithLabelValues(...string). See there for pros and cons of the two +// methods. +func (v *SummaryVec) GetMetricWith(labels Labels) (Observer, error) { + metric, err := v.metricVec.getMetricWith(labels) + if metric != nil { + return metric.(Observer), err + } + return nil, err +} + +// WithLabelValues works as GetMetricWithLabelValues, but panics where +// GetMetricWithLabelValues would have returned an error. Not returning an +// error allows shortcuts like +// myVec.WithLabelValues("404", "GET").Observe(42.21) +func (v *SummaryVec) WithLabelValues(lvs ...string) Observer { + s, err := v.GetMetricWithLabelValues(lvs...) + if err != nil { + panic(err) + } + return s +} + +// With works as GetMetricWith, but panics where GetMetricWithLabels would have +// returned an error. Not returning an error allows shortcuts like +// myVec.With(prometheus.Labels{"code": "404", "method": "GET"}).Observe(42.21) +func (v *SummaryVec) With(labels Labels) Observer { + s, err := v.GetMetricWith(labels) + if err != nil { + panic(err) + } + return s +} + +// CurryWith returns a vector curried with the provided labels, i.e. the +// returned vector has those labels pre-set for all labeled operations performed +// on it. The cardinality of the curried vector is reduced accordingly. The +// order of the remaining labels stays the same (just with the curried labels +// taken out of the sequence – which is relevant for the +// (GetMetric)WithLabelValues methods). It is possible to curry a curried +// vector, but only with labels not yet used for currying before. +// +// The metrics contained in the SummaryVec are shared between the curried and +// uncurried vectors. They are just accessed differently. Curried and uncurried +// vectors behave identically in terms of collection. Only one must be +// registered with a given registry (usually the uncurried version). The Reset +// method deletes all metrics, even if called on a curried vector. +func (v *SummaryVec) CurryWith(labels Labels) (ObserverVec, error) { + vec, err := v.curryWith(labels) + if vec != nil { + return &SummaryVec{vec}, err + } + return nil, err +} + +// MustCurryWith works as CurryWith but panics where CurryWith would have +// returned an error. +func (v *SummaryVec) MustCurryWith(labels Labels) ObserverVec { + vec, err := v.CurryWith(labels) + if err != nil { + panic(err) + } + return vec +} + +type constSummary struct { + desc *Desc + count uint64 + sum float64 + quantiles map[float64]float64 + labelPairs []*dto.LabelPair +} + +func (s *constSummary) Desc() *Desc { + return s.desc +} + +func (s *constSummary) Write(out *dto.Metric) error { + sum := &dto.Summary{} + qs := make([]*dto.Quantile, 0, len(s.quantiles)) + + sum.SampleCount = proto.Uint64(s.count) + sum.SampleSum = proto.Float64(s.sum) + + for rank, q := range s.quantiles { + qs = append(qs, &dto.Quantile{ + Quantile: proto.Float64(rank), + Value: proto.Float64(q), + }) + } + + if len(qs) > 0 { + sort.Sort(quantSort(qs)) + } + sum.Quantile = qs + + out.Summary = sum + out.Label = s.labelPairs + + return nil +} + +// NewConstSummary returns a metric representing a Prometheus summary with fixed +// values for the count, sum, and quantiles. As those parameters cannot be +// changed, the returned value does not implement the Summary interface (but +// only the Metric interface). Users of this package will not have much use for +// it in regular operations. However, when implementing custom Collectors, it is +// useful as a throw-away metric that is generated on the fly to send it to +// Prometheus in the Collect method. +// +// quantiles maps ranks to quantile values. For example, a median latency of +// 0.23s and a 99th percentile latency of 0.56s would be expressed as: +// map[float64]float64{0.5: 0.23, 0.99: 0.56} +// +// NewConstSummary returns an error if the length of labelValues is not +// consistent with the variable labels in Desc. +func NewConstSummary( + desc *Desc, + count uint64, + sum float64, + quantiles map[float64]float64, + labelValues ...string, +) (Metric, error) { + if err := validateLabelValues(labelValues, len(desc.variableLabels)); err != nil { + return nil, err + } + return &constSummary{ + desc: desc, + count: count, + sum: sum, + quantiles: quantiles, + labelPairs: makeLabelPairs(desc, labelValues), + }, nil +} + +// MustNewConstSummary is a version of NewConstSummary that panics where +// NewConstMetric would have returned an error. +func MustNewConstSummary( + desc *Desc, + count uint64, + sum float64, + quantiles map[float64]float64, + labelValues ...string, +) Metric { + m, err := NewConstSummary(desc, count, sum, quantiles, labelValues...) + if err != nil { + panic(err) + } + return m +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/timer.go b/vendor/github.com/prometheus/client_golang/prometheus/timer.go new file mode 100644 index 000000000..b8fc5f18c --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/timer.go @@ -0,0 +1,51 @@ +// Copyright 2016 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import "time" + +// Timer is a helper type to time functions. Use NewTimer to create new +// instances. +type Timer struct { + begin time.Time + observer Observer +} + +// NewTimer creates a new Timer. The provided Observer is used to observe a +// duration in seconds. Timer is usually used to time a function call in the +// following way: +// func TimeMe() { +// timer := NewTimer(myHistogram) +// defer timer.ObserveDuration() +// // Do actual work. +// } +func NewTimer(o Observer) *Timer { + return &Timer{ + begin: time.Now(), + observer: o, + } +} + +// ObserveDuration records the duration passed since the Timer was created with +// NewTimer. It calls the Observe method of the Observer provided during +// construction with the duration in seconds as an argument. ObserveDuration is +// usually called with a defer statement. +// +// Note that this method is only guaranteed to never observe negative durations +// if used with Go1.9+. +func (t *Timer) ObserveDuration() { + if t.observer != nil { + t.observer.Observe(time.Since(t.begin).Seconds()) + } +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/untyped.go b/vendor/github.com/prometheus/client_golang/prometheus/untyped.go new file mode 100644 index 000000000..0f9ce63f4 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/untyped.go @@ -0,0 +1,42 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +// UntypedOpts is an alias for Opts. See there for doc comments. +type UntypedOpts Opts + +// UntypedFunc works like GaugeFunc but the collected metric is of type +// "Untyped". UntypedFunc is useful to mirror an external metric of unknown +// type. +// +// To create UntypedFunc instances, use NewUntypedFunc. +type UntypedFunc interface { + Metric + Collector +} + +// NewUntypedFunc creates a new UntypedFunc based on the provided +// UntypedOpts. The value reported is determined by calling the given function +// from within the Write method. Take into account that metric collection may +// happen concurrently. If that results in concurrent calls to Write, like in +// the case where an UntypedFunc is directly registered with Prometheus, the +// provided function must be concurrency-safe. +func NewUntypedFunc(opts UntypedOpts, function func() float64) UntypedFunc { + return newValueFunc(NewDesc( + BuildFQName(opts.Namespace, opts.Subsystem, opts.Name), + opts.Help, + nil, + opts.ConstLabels, + ), UntypedValue, function) +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/value.go b/vendor/github.com/prometheus/client_golang/prometheus/value.go new file mode 100644 index 000000000..543b57c27 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/value.go @@ -0,0 +1,160 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import ( + "fmt" + "sort" + + dto "github.com/prometheus/client_model/go" + + "github.com/golang/protobuf/proto" +) + +// ValueType is an enumeration of metric types that represent a simple value. +type ValueType int + +// Possible values for the ValueType enum. +const ( + _ ValueType = iota + CounterValue + GaugeValue + UntypedValue +) + +// valueFunc is a generic metric for simple values retrieved on collect time +// from a function. It implements Metric and Collector. Its effective type is +// determined by ValueType. This is a low-level building block used by the +// library to back the implementations of CounterFunc, GaugeFunc, and +// UntypedFunc. +type valueFunc struct { + selfCollector + + desc *Desc + valType ValueType + function func() float64 + labelPairs []*dto.LabelPair +} + +// newValueFunc returns a newly allocated valueFunc with the given Desc and +// ValueType. The value reported is determined by calling the given function +// from within the Write method. Take into account that metric collection may +// happen concurrently. If that results in concurrent calls to Write, like in +// the case where a valueFunc is directly registered with Prometheus, the +// provided function must be concurrency-safe. +func newValueFunc(desc *Desc, valueType ValueType, function func() float64) *valueFunc { + result := &valueFunc{ + desc: desc, + valType: valueType, + function: function, + labelPairs: makeLabelPairs(desc, nil), + } + result.init(result) + return result +} + +func (v *valueFunc) Desc() *Desc { + return v.desc +} + +func (v *valueFunc) Write(out *dto.Metric) error { + return populateMetric(v.valType, v.function(), v.labelPairs, out) +} + +// NewConstMetric returns a metric with one fixed value that cannot be +// changed. Users of this package will not have much use for it in regular +// operations. However, when implementing custom Collectors, it is useful as a +// throw-away metric that is generated on the fly to send it to Prometheus in +// the Collect method. NewConstMetric returns an error if the length of +// labelValues is not consistent with the variable labels in Desc. +func NewConstMetric(desc *Desc, valueType ValueType, value float64, labelValues ...string) (Metric, error) { + if err := validateLabelValues(labelValues, len(desc.variableLabels)); err != nil { + return nil, err + } + return &constMetric{ + desc: desc, + valType: valueType, + val: value, + labelPairs: makeLabelPairs(desc, labelValues), + }, nil +} + +// MustNewConstMetric is a version of NewConstMetric that panics where +// NewConstMetric would have returned an error. +func MustNewConstMetric(desc *Desc, valueType ValueType, value float64, labelValues ...string) Metric { + m, err := NewConstMetric(desc, valueType, value, labelValues...) + if err != nil { + panic(err) + } + return m +} + +type constMetric struct { + desc *Desc + valType ValueType + val float64 + labelPairs []*dto.LabelPair +} + +func (m *constMetric) Desc() *Desc { + return m.desc +} + +func (m *constMetric) Write(out *dto.Metric) error { + return populateMetric(m.valType, m.val, m.labelPairs, out) +} + +func populateMetric( + t ValueType, + v float64, + labelPairs []*dto.LabelPair, + m *dto.Metric, +) error { + m.Label = labelPairs + switch t { + case CounterValue: + m.Counter = &dto.Counter{Value: proto.Float64(v)} + case GaugeValue: + m.Gauge = &dto.Gauge{Value: proto.Float64(v)} + case UntypedValue: + m.Untyped = &dto.Untyped{Value: proto.Float64(v)} + default: + return fmt.Errorf("encountered unknown type %v", t) + } + return nil +} + +func makeLabelPairs(desc *Desc, labelValues []string) []*dto.LabelPair { + totalLen := len(desc.variableLabels) + len(desc.constLabelPairs) + if totalLen == 0 { + // Super fast path. + return nil + } + if len(desc.variableLabels) == 0 { + // Moderately fast path. + return desc.constLabelPairs + } + labelPairs := make([]*dto.LabelPair, 0, totalLen) + for i, n := range desc.variableLabels { + labelPairs = append(labelPairs, &dto.LabelPair{ + Name: proto.String(n), + Value: proto.String(labelValues[i]), + }) + } + for _, lp := range desc.constLabelPairs { + labelPairs = append(labelPairs, lp) + } + sort.Sort(LabelPairSorter(labelPairs)) + return labelPairs +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/vec.go b/vendor/github.com/prometheus/client_golang/prometheus/vec.go new file mode 100644 index 000000000..cea158249 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/vec.go @@ -0,0 +1,469 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package prometheus + +import ( + "fmt" + "sync" + + "github.com/prometheus/common/model" +) + +// metricVec is a Collector to bundle metrics of the same name that differ in +// their label values. metricVec is not used directly (and therefore +// unexported). It is used as a building block for implementations of vectors of +// a given metric type, like GaugeVec, CounterVec, SummaryVec, and HistogramVec. +// It also handles label currying. It uses basicMetricVec internally. +type metricVec struct { + *metricMap + + curry []curriedLabelValue + + // hashAdd and hashAddByte can be replaced for testing collision handling. + hashAdd func(h uint64, s string) uint64 + hashAddByte func(h uint64, b byte) uint64 +} + +// newMetricVec returns an initialized metricVec. +func newMetricVec(desc *Desc, newMetric func(lvs ...string) Metric) *metricVec { + return &metricVec{ + metricMap: &metricMap{ + metrics: map[uint64][]metricWithLabelValues{}, + desc: desc, + newMetric: newMetric, + }, + hashAdd: hashAdd, + hashAddByte: hashAddByte, + } +} + +// DeleteLabelValues removes the metric where the variable labels are the same +// as those passed in as labels (same order as the VariableLabels in Desc). It +// returns true if a metric was deleted. +// +// It is not an error if the number of label values is not the same as the +// number of VariableLabels in Desc. However, such inconsistent label count can +// never match an actual metric, so the method will always return false in that +// case. +// +// Note that for more than one label value, this method is prone to mistakes +// caused by an incorrect order of arguments. Consider Delete(Labels) as an +// alternative to avoid that type of mistake. For higher label numbers, the +// latter has a much more readable (albeit more verbose) syntax, but it comes +// with a performance overhead (for creating and processing the Labels map). +// See also the CounterVec example. +func (m *metricVec) DeleteLabelValues(lvs ...string) bool { + h, err := m.hashLabelValues(lvs) + if err != nil { + return false + } + + return m.metricMap.deleteByHashWithLabelValues(h, lvs, m.curry) +} + +// Delete deletes the metric where the variable labels are the same as those +// passed in as labels. It returns true if a metric was deleted. +// +// It is not an error if the number and names of the Labels are inconsistent +// with those of the VariableLabels in Desc. However, such inconsistent Labels +// can never match an actual metric, so the method will always return false in +// that case. +// +// This method is used for the same purpose as DeleteLabelValues(...string). See +// there for pros and cons of the two methods. +func (m *metricVec) Delete(labels Labels) bool { + h, err := m.hashLabels(labels) + if err != nil { + return false + } + + return m.metricMap.deleteByHashWithLabels(h, labels, m.curry) +} + +func (m *metricVec) curryWith(labels Labels) (*metricVec, error) { + var ( + newCurry []curriedLabelValue + oldCurry = m.curry + iCurry int + ) + for i, label := range m.desc.variableLabels { + val, ok := labels[label] + if iCurry < len(oldCurry) && oldCurry[iCurry].index == i { + if ok { + return nil, fmt.Errorf("label name %q is already curried", label) + } + newCurry = append(newCurry, oldCurry[iCurry]) + iCurry++ + } else { + if !ok { + continue // Label stays uncurried. + } + newCurry = append(newCurry, curriedLabelValue{i, val}) + } + } + if l := len(oldCurry) + len(labels) - len(newCurry); l > 0 { + return nil, fmt.Errorf("%d unknown label(s) found during currying", l) + } + + return &metricVec{ + metricMap: m.metricMap, + curry: newCurry, + hashAdd: m.hashAdd, + hashAddByte: m.hashAddByte, + }, nil +} + +func (m *metricVec) getMetricWithLabelValues(lvs ...string) (Metric, error) { + h, err := m.hashLabelValues(lvs) + if err != nil { + return nil, err + } + + return m.metricMap.getOrCreateMetricWithLabelValues(h, lvs, m.curry), nil +} + +func (m *metricVec) getMetricWith(labels Labels) (Metric, error) { + h, err := m.hashLabels(labels) + if err != nil { + return nil, err + } + + return m.metricMap.getOrCreateMetricWithLabels(h, labels, m.curry), nil +} + +func (m *metricVec) hashLabelValues(vals []string) (uint64, error) { + if err := validateLabelValues(vals, len(m.desc.variableLabels)-len(m.curry)); err != nil { + return 0, err + } + + var ( + h = hashNew() + curry = m.curry + iVals, iCurry int + ) + for i := 0; i < len(m.desc.variableLabels); i++ { + if iCurry < len(curry) && curry[iCurry].index == i { + h = m.hashAdd(h, curry[iCurry].value) + iCurry++ + } else { + h = m.hashAdd(h, vals[iVals]) + iVals++ + } + h = m.hashAddByte(h, model.SeparatorByte) + } + return h, nil +} + +func (m *metricVec) hashLabels(labels Labels) (uint64, error) { + if err := validateValuesInLabels(labels, len(m.desc.variableLabels)-len(m.curry)); err != nil { + return 0, err + } + + var ( + h = hashNew() + curry = m.curry + iCurry int + ) + for i, label := range m.desc.variableLabels { + val, ok := labels[label] + if iCurry < len(curry) && curry[iCurry].index == i { + if ok { + return 0, fmt.Errorf("label name %q is already curried", label) + } + h = m.hashAdd(h, curry[iCurry].value) + iCurry++ + } else { + if !ok { + return 0, fmt.Errorf("label name %q missing in label map", label) + } + h = m.hashAdd(h, val) + } + h = m.hashAddByte(h, model.SeparatorByte) + } + return h, nil +} + +// metricWithLabelValues provides the metric and its label values for +// disambiguation on hash collision. +type metricWithLabelValues struct { + values []string + metric Metric +} + +// curriedLabelValue sets the curried value for a label at the given index. +type curriedLabelValue struct { + index int + value string +} + +// metricMap is a helper for metricVec and shared between differently curried +// metricVecs. +type metricMap struct { + mtx sync.RWMutex // Protects metrics. + metrics map[uint64][]metricWithLabelValues + desc *Desc + newMetric func(labelValues ...string) Metric +} + +// Describe implements Collector. It will send exactly one Desc to the provided +// channel. +func (m *metricMap) Describe(ch chan<- *Desc) { + ch <- m.desc +} + +// Collect implements Collector. +func (m *metricMap) Collect(ch chan<- Metric) { + m.mtx.RLock() + defer m.mtx.RUnlock() + + for _, metrics := range m.metrics { + for _, metric := range metrics { + ch <- metric.metric + } + } +} + +// Reset deletes all metrics in this vector. +func (m *metricMap) Reset() { + m.mtx.Lock() + defer m.mtx.Unlock() + + for h := range m.metrics { + delete(m.metrics, h) + } +} + +// deleteByHashWithLabelValues removes the metric from the hash bucket h. If +// there are multiple matches in the bucket, use lvs to select a metric and +// remove only that metric. +func (m *metricMap) deleteByHashWithLabelValues( + h uint64, lvs []string, curry []curriedLabelValue, +) bool { + m.mtx.Lock() + defer m.mtx.Unlock() + + metrics, ok := m.metrics[h] + if !ok { + return false + } + + i := findMetricWithLabelValues(metrics, lvs, curry) + if i >= len(metrics) { + return false + } + + if len(metrics) > 1 { + m.metrics[h] = append(metrics[:i], metrics[i+1:]...) + } else { + delete(m.metrics, h) + } + return true +} + +// deleteByHashWithLabels removes the metric from the hash bucket h. If there +// are multiple matches in the bucket, use lvs to select a metric and remove +// only that metric. +func (m *metricMap) deleteByHashWithLabels( + h uint64, labels Labels, curry []curriedLabelValue, +) bool { + metrics, ok := m.metrics[h] + if !ok { + return false + } + i := findMetricWithLabels(m.desc, metrics, labels, curry) + if i >= len(metrics) { + return false + } + + if len(metrics) > 1 { + m.metrics[h] = append(metrics[:i], metrics[i+1:]...) + } else { + delete(m.metrics, h) + } + return true +} + +// getOrCreateMetricWithLabelValues retrieves the metric by hash and label value +// or creates it and returns the new one. +// +// This function holds the mutex. +func (m *metricMap) getOrCreateMetricWithLabelValues( + hash uint64, lvs []string, curry []curriedLabelValue, +) Metric { + m.mtx.RLock() + metric, ok := m.getMetricWithHashAndLabelValues(hash, lvs, curry) + m.mtx.RUnlock() + if ok { + return metric + } + + m.mtx.Lock() + defer m.mtx.Unlock() + metric, ok = m.getMetricWithHashAndLabelValues(hash, lvs, curry) + if !ok { + inlinedLVs := inlineLabelValues(lvs, curry) + metric = m.newMetric(inlinedLVs...) + m.metrics[hash] = append(m.metrics[hash], metricWithLabelValues{values: inlinedLVs, metric: metric}) + } + return metric +} + +// getOrCreateMetricWithLabelValues retrieves the metric by hash and label value +// or creates it and returns the new one. +// +// This function holds the mutex. +func (m *metricMap) getOrCreateMetricWithLabels( + hash uint64, labels Labels, curry []curriedLabelValue, +) Metric { + m.mtx.RLock() + metric, ok := m.getMetricWithHashAndLabels(hash, labels, curry) + m.mtx.RUnlock() + if ok { + return metric + } + + m.mtx.Lock() + defer m.mtx.Unlock() + metric, ok = m.getMetricWithHashAndLabels(hash, labels, curry) + if !ok { + lvs := extractLabelValues(m.desc, labels, curry) + metric = m.newMetric(lvs...) + m.metrics[hash] = append(m.metrics[hash], metricWithLabelValues{values: lvs, metric: metric}) + } + return metric +} + +// getMetricWithHashAndLabelValues gets a metric while handling possible +// collisions in the hash space. Must be called while holding the read mutex. +func (m *metricMap) getMetricWithHashAndLabelValues( + h uint64, lvs []string, curry []curriedLabelValue, +) (Metric, bool) { + metrics, ok := m.metrics[h] + if ok { + if i := findMetricWithLabelValues(metrics, lvs, curry); i < len(metrics) { + return metrics[i].metric, true + } + } + return nil, false +} + +// getMetricWithHashAndLabels gets a metric while handling possible collisions in +// the hash space. Must be called while holding read mutex. +func (m *metricMap) getMetricWithHashAndLabels( + h uint64, labels Labels, curry []curriedLabelValue, +) (Metric, bool) { + metrics, ok := m.metrics[h] + if ok { + if i := findMetricWithLabels(m.desc, metrics, labels, curry); i < len(metrics) { + return metrics[i].metric, true + } + } + return nil, false +} + +// findMetricWithLabelValues returns the index of the matching metric or +// len(metrics) if not found. +func findMetricWithLabelValues( + metrics []metricWithLabelValues, lvs []string, curry []curriedLabelValue, +) int { + for i, metric := range metrics { + if matchLabelValues(metric.values, lvs, curry) { + return i + } + } + return len(metrics) +} + +// findMetricWithLabels returns the index of the matching metric or len(metrics) +// if not found. +func findMetricWithLabels( + desc *Desc, metrics []metricWithLabelValues, labels Labels, curry []curriedLabelValue, +) int { + for i, metric := range metrics { + if matchLabels(desc, metric.values, labels, curry) { + return i + } + } + return len(metrics) +} + +func matchLabelValues(values []string, lvs []string, curry []curriedLabelValue) bool { + if len(values) != len(lvs)+len(curry) { + return false + } + var iLVs, iCurry int + for i, v := range values { + if iCurry < len(curry) && curry[iCurry].index == i { + if v != curry[iCurry].value { + return false + } + iCurry++ + continue + } + if v != lvs[iLVs] { + return false + } + iLVs++ + } + return true +} + +func matchLabels(desc *Desc, values []string, labels Labels, curry []curriedLabelValue) bool { + if len(values) != len(labels)+len(curry) { + return false + } + iCurry := 0 + for i, k := range desc.variableLabels { + if iCurry < len(curry) && curry[iCurry].index == i { + if values[i] != curry[iCurry].value { + return false + } + iCurry++ + continue + } + if values[i] != labels[k] { + return false + } + } + return true +} + +func extractLabelValues(desc *Desc, labels Labels, curry []curriedLabelValue) []string { + labelValues := make([]string, len(labels)+len(curry)) + iCurry := 0 + for i, k := range desc.variableLabels { + if iCurry < len(curry) && curry[iCurry].index == i { + labelValues[i] = curry[iCurry].value + iCurry++ + continue + } + labelValues[i] = labels[k] + } + return labelValues +} + +func inlineLabelValues(lvs []string, curry []curriedLabelValue) []string { + labelValues := make([]string, len(lvs)+len(curry)) + var iCurry, iLVs int + for i := range labelValues { + if iCurry < len(curry) && curry[iCurry].index == i { + labelValues[i] = curry[iCurry].value + iCurry++ + continue + } + labelValues[i] = lvs[iLVs] + iLVs++ + } + return labelValues +} diff --git a/vendor/github.com/prometheus/client_model/LICENSE b/vendor/github.com/prometheus/client_model/LICENSE new file mode 100644 index 000000000..261eeb9e9 --- /dev/null +++ b/vendor/github.com/prometheus/client_model/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/prometheus/client_model/NOTICE b/vendor/github.com/prometheus/client_model/NOTICE new file mode 100644 index 000000000..20110e410 --- /dev/null +++ b/vendor/github.com/prometheus/client_model/NOTICE @@ -0,0 +1,5 @@ +Data model artifacts for Prometheus. +Copyright 2012-2015 The Prometheus Authors + +This product includes software developed at +SoundCloud Ltd. (http://soundcloud.com/). diff --git a/vendor/github.com/prometheus/client_model/go/metrics.pb.go b/vendor/github.com/prometheus/client_model/go/metrics.pb.go new file mode 100644 index 000000000..b065f8683 --- /dev/null +++ b/vendor/github.com/prometheus/client_model/go/metrics.pb.go @@ -0,0 +1,364 @@ +// Code generated by protoc-gen-go. +// source: metrics.proto +// DO NOT EDIT! + +/* +Package io_prometheus_client is a generated protocol buffer package. + +It is generated from these files: + metrics.proto + +It has these top-level messages: + LabelPair + Gauge + Counter + Quantile + Summary + Untyped + Histogram + Bucket + Metric + MetricFamily +*/ +package io_prometheus_client + +import proto "github.com/golang/protobuf/proto" +import math "math" + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = math.Inf + +type MetricType int32 + +const ( + MetricType_COUNTER MetricType = 0 + MetricType_GAUGE MetricType = 1 + MetricType_SUMMARY MetricType = 2 + MetricType_UNTYPED MetricType = 3 + MetricType_HISTOGRAM MetricType = 4 +) + +var MetricType_name = map[int32]string{ + 0: "COUNTER", + 1: "GAUGE", + 2: "SUMMARY", + 3: "UNTYPED", + 4: "HISTOGRAM", +} +var MetricType_value = map[string]int32{ + "COUNTER": 0, + "GAUGE": 1, + "SUMMARY": 2, + "UNTYPED": 3, + "HISTOGRAM": 4, +} + +func (x MetricType) Enum() *MetricType { + p := new(MetricType) + *p = x + return p +} +func (x MetricType) String() string { + return proto.EnumName(MetricType_name, int32(x)) +} +func (x *MetricType) UnmarshalJSON(data []byte) error { + value, err := proto.UnmarshalJSONEnum(MetricType_value, data, "MetricType") + if err != nil { + return err + } + *x = MetricType(value) + return nil +} + +type LabelPair struct { + Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` + Value *string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *LabelPair) Reset() { *m = LabelPair{} } +func (m *LabelPair) String() string { return proto.CompactTextString(m) } +func (*LabelPair) ProtoMessage() {} + +func (m *LabelPair) GetName() string { + if m != nil && m.Name != nil { + return *m.Name + } + return "" +} + +func (m *LabelPair) GetValue() string { + if m != nil && m.Value != nil { + return *m.Value + } + return "" +} + +type Gauge struct { + Value *float64 `protobuf:"fixed64,1,opt,name=value" json:"value,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *Gauge) Reset() { *m = Gauge{} } +func (m *Gauge) String() string { return proto.CompactTextString(m) } +func (*Gauge) ProtoMessage() {} + +func (m *Gauge) GetValue() float64 { + if m != nil && m.Value != nil { + return *m.Value + } + return 0 +} + +type Counter struct { + Value *float64 `protobuf:"fixed64,1,opt,name=value" json:"value,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *Counter) Reset() { *m = Counter{} } +func (m *Counter) String() string { return proto.CompactTextString(m) } +func (*Counter) ProtoMessage() {} + +func (m *Counter) GetValue() float64 { + if m != nil && m.Value != nil { + return *m.Value + } + return 0 +} + +type Quantile struct { + Quantile *float64 `protobuf:"fixed64,1,opt,name=quantile" json:"quantile,omitempty"` + Value *float64 `protobuf:"fixed64,2,opt,name=value" json:"value,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *Quantile) Reset() { *m = Quantile{} } +func (m *Quantile) String() string { return proto.CompactTextString(m) } +func (*Quantile) ProtoMessage() {} + +func (m *Quantile) GetQuantile() float64 { + if m != nil && m.Quantile != nil { + return *m.Quantile + } + return 0 +} + +func (m *Quantile) GetValue() float64 { + if m != nil && m.Value != nil { + return *m.Value + } + return 0 +} + +type Summary struct { + SampleCount *uint64 `protobuf:"varint,1,opt,name=sample_count" json:"sample_count,omitempty"` + SampleSum *float64 `protobuf:"fixed64,2,opt,name=sample_sum" json:"sample_sum,omitempty"` + Quantile []*Quantile `protobuf:"bytes,3,rep,name=quantile" json:"quantile,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *Summary) Reset() { *m = Summary{} } +func (m *Summary) String() string { return proto.CompactTextString(m) } +func (*Summary) ProtoMessage() {} + +func (m *Summary) GetSampleCount() uint64 { + if m != nil && m.SampleCount != nil { + return *m.SampleCount + } + return 0 +} + +func (m *Summary) GetSampleSum() float64 { + if m != nil && m.SampleSum != nil { + return *m.SampleSum + } + return 0 +} + +func (m *Summary) GetQuantile() []*Quantile { + if m != nil { + return m.Quantile + } + return nil +} + +type Untyped struct { + Value *float64 `protobuf:"fixed64,1,opt,name=value" json:"value,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *Untyped) Reset() { *m = Untyped{} } +func (m *Untyped) String() string { return proto.CompactTextString(m) } +func (*Untyped) ProtoMessage() {} + +func (m *Untyped) GetValue() float64 { + if m != nil && m.Value != nil { + return *m.Value + } + return 0 +} + +type Histogram struct { + SampleCount *uint64 `protobuf:"varint,1,opt,name=sample_count" json:"sample_count,omitempty"` + SampleSum *float64 `protobuf:"fixed64,2,opt,name=sample_sum" json:"sample_sum,omitempty"` + Bucket []*Bucket `protobuf:"bytes,3,rep,name=bucket" json:"bucket,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *Histogram) Reset() { *m = Histogram{} } +func (m *Histogram) String() string { return proto.CompactTextString(m) } +func (*Histogram) ProtoMessage() {} + +func (m *Histogram) GetSampleCount() uint64 { + if m != nil && m.SampleCount != nil { + return *m.SampleCount + } + return 0 +} + +func (m *Histogram) GetSampleSum() float64 { + if m != nil && m.SampleSum != nil { + return *m.SampleSum + } + return 0 +} + +func (m *Histogram) GetBucket() []*Bucket { + if m != nil { + return m.Bucket + } + return nil +} + +type Bucket struct { + CumulativeCount *uint64 `protobuf:"varint,1,opt,name=cumulative_count" json:"cumulative_count,omitempty"` + UpperBound *float64 `protobuf:"fixed64,2,opt,name=upper_bound" json:"upper_bound,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *Bucket) Reset() { *m = Bucket{} } +func (m *Bucket) String() string { return proto.CompactTextString(m) } +func (*Bucket) ProtoMessage() {} + +func (m *Bucket) GetCumulativeCount() uint64 { + if m != nil && m.CumulativeCount != nil { + return *m.CumulativeCount + } + return 0 +} + +func (m *Bucket) GetUpperBound() float64 { + if m != nil && m.UpperBound != nil { + return *m.UpperBound + } + return 0 +} + +type Metric struct { + Label []*LabelPair `protobuf:"bytes,1,rep,name=label" json:"label,omitempty"` + Gauge *Gauge `protobuf:"bytes,2,opt,name=gauge" json:"gauge,omitempty"` + Counter *Counter `protobuf:"bytes,3,opt,name=counter" json:"counter,omitempty"` + Summary *Summary `protobuf:"bytes,4,opt,name=summary" json:"summary,omitempty"` + Untyped *Untyped `protobuf:"bytes,5,opt,name=untyped" json:"untyped,omitempty"` + Histogram *Histogram `protobuf:"bytes,7,opt,name=histogram" json:"histogram,omitempty"` + TimestampMs *int64 `protobuf:"varint,6,opt,name=timestamp_ms" json:"timestamp_ms,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *Metric) Reset() { *m = Metric{} } +func (m *Metric) String() string { return proto.CompactTextString(m) } +func (*Metric) ProtoMessage() {} + +func (m *Metric) GetLabel() []*LabelPair { + if m != nil { + return m.Label + } + return nil +} + +func (m *Metric) GetGauge() *Gauge { + if m != nil { + return m.Gauge + } + return nil +} + +func (m *Metric) GetCounter() *Counter { + if m != nil { + return m.Counter + } + return nil +} + +func (m *Metric) GetSummary() *Summary { + if m != nil { + return m.Summary + } + return nil +} + +func (m *Metric) GetUntyped() *Untyped { + if m != nil { + return m.Untyped + } + return nil +} + +func (m *Metric) GetHistogram() *Histogram { + if m != nil { + return m.Histogram + } + return nil +} + +func (m *Metric) GetTimestampMs() int64 { + if m != nil && m.TimestampMs != nil { + return *m.TimestampMs + } + return 0 +} + +type MetricFamily struct { + Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` + Help *string `protobuf:"bytes,2,opt,name=help" json:"help,omitempty"` + Type *MetricType `protobuf:"varint,3,opt,name=type,enum=io.prometheus.client.MetricType" json:"type,omitempty"` + Metric []*Metric `protobuf:"bytes,4,rep,name=metric" json:"metric,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *MetricFamily) Reset() { *m = MetricFamily{} } +func (m *MetricFamily) String() string { return proto.CompactTextString(m) } +func (*MetricFamily) ProtoMessage() {} + +func (m *MetricFamily) GetName() string { + if m != nil && m.Name != nil { + return *m.Name + } + return "" +} + +func (m *MetricFamily) GetHelp() string { + if m != nil && m.Help != nil { + return *m.Help + } + return "" +} + +func (m *MetricFamily) GetType() MetricType { + if m != nil && m.Type != nil { + return *m.Type + } + return MetricType_COUNTER +} + +func (m *MetricFamily) GetMetric() []*Metric { + if m != nil { + return m.Metric + } + return nil +} + +func init() { + proto.RegisterEnum("io.prometheus.client.MetricType", MetricType_name, MetricType_value) +} diff --git a/vendor/github.com/prometheus/common/LICENSE b/vendor/github.com/prometheus/common/LICENSE new file mode 100644 index 000000000..261eeb9e9 --- /dev/null +++ b/vendor/github.com/prometheus/common/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/prometheus/common/NOTICE b/vendor/github.com/prometheus/common/NOTICE new file mode 100644 index 000000000..636a2c1a5 --- /dev/null +++ b/vendor/github.com/prometheus/common/NOTICE @@ -0,0 +1,5 @@ +Common libraries shared by Prometheus Go components. +Copyright 2015 The Prometheus Authors + +This product includes software developed at +SoundCloud Ltd. (http://soundcloud.com/). diff --git a/vendor/github.com/prometheus/common/expfmt/decode.go b/vendor/github.com/prometheus/common/expfmt/decode.go new file mode 100644 index 000000000..a7a42d5ef --- /dev/null +++ b/vendor/github.com/prometheus/common/expfmt/decode.go @@ -0,0 +1,429 @@ +// Copyright 2015 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package expfmt + +import ( + "fmt" + "io" + "math" + "mime" + "net/http" + + dto "github.com/prometheus/client_model/go" + + "github.com/matttproud/golang_protobuf_extensions/pbutil" + "github.com/prometheus/common/model" +) + +// Decoder types decode an input stream into metric families. +type Decoder interface { + Decode(*dto.MetricFamily) error +} + +// DecodeOptions contains options used by the Decoder and in sample extraction. +type DecodeOptions struct { + // Timestamp is added to each value from the stream that has no explicit timestamp set. + Timestamp model.Time +} + +// ResponseFormat extracts the correct format from a HTTP response header. +// If no matching format can be found FormatUnknown is returned. +func ResponseFormat(h http.Header) Format { + ct := h.Get(hdrContentType) + + mediatype, params, err := mime.ParseMediaType(ct) + if err != nil { + return FmtUnknown + } + + const textType = "text/plain" + + switch mediatype { + case ProtoType: + if p, ok := params["proto"]; ok && p != ProtoProtocol { + return FmtUnknown + } + if e, ok := params["encoding"]; ok && e != "delimited" { + return FmtUnknown + } + return FmtProtoDelim + + case textType: + if v, ok := params["version"]; ok && v != TextVersion { + return FmtUnknown + } + return FmtText + } + + return FmtUnknown +} + +// NewDecoder returns a new decoder based on the given input format. +// If the input format does not imply otherwise, a text format decoder is returned. +func NewDecoder(r io.Reader, format Format) Decoder { + switch format { + case FmtProtoDelim: + return &protoDecoder{r: r} + } + return &textDecoder{r: r} +} + +// protoDecoder implements the Decoder interface for protocol buffers. +type protoDecoder struct { + r io.Reader +} + +// Decode implements the Decoder interface. +func (d *protoDecoder) Decode(v *dto.MetricFamily) error { + _, err := pbutil.ReadDelimited(d.r, v) + if err != nil { + return err + } + if !model.IsValidMetricName(model.LabelValue(v.GetName())) { + return fmt.Errorf("invalid metric name %q", v.GetName()) + } + for _, m := range v.GetMetric() { + if m == nil { + continue + } + for _, l := range m.GetLabel() { + if l == nil { + continue + } + if !model.LabelValue(l.GetValue()).IsValid() { + return fmt.Errorf("invalid label value %q", l.GetValue()) + } + if !model.LabelName(l.GetName()).IsValid() { + return fmt.Errorf("invalid label name %q", l.GetName()) + } + } + } + return nil +} + +// textDecoder implements the Decoder interface for the text protocol. +type textDecoder struct { + r io.Reader + p TextParser + fams []*dto.MetricFamily +} + +// Decode implements the Decoder interface. +func (d *textDecoder) Decode(v *dto.MetricFamily) error { + // TODO(fabxc): Wrap this as a line reader to make streaming safer. + if len(d.fams) == 0 { + // No cached metric families, read everything and parse metrics. + fams, err := d.p.TextToMetricFamilies(d.r) + if err != nil { + return err + } + if len(fams) == 0 { + return io.EOF + } + d.fams = make([]*dto.MetricFamily, 0, len(fams)) + for _, f := range fams { + d.fams = append(d.fams, f) + } + } + + *v = *d.fams[0] + d.fams = d.fams[1:] + + return nil +} + +// SampleDecoder wraps a Decoder to extract samples from the metric families +// decoded by the wrapped Decoder. +type SampleDecoder struct { + Dec Decoder + Opts *DecodeOptions + + f dto.MetricFamily +} + +// Decode calls the Decode method of the wrapped Decoder and then extracts the +// samples from the decoded MetricFamily into the provided model.Vector. +func (sd *SampleDecoder) Decode(s *model.Vector) error { + err := sd.Dec.Decode(&sd.f) + if err != nil { + return err + } + *s, err = extractSamples(&sd.f, sd.Opts) + return err +} + +// ExtractSamples builds a slice of samples from the provided metric +// families. If an error occurs during sample extraction, it continues to +// extract from the remaining metric families. The returned error is the last +// error that has occured. +func ExtractSamples(o *DecodeOptions, fams ...*dto.MetricFamily) (model.Vector, error) { + var ( + all model.Vector + lastErr error + ) + for _, f := range fams { + some, err := extractSamples(f, o) + if err != nil { + lastErr = err + continue + } + all = append(all, some...) + } + return all, lastErr +} + +func extractSamples(f *dto.MetricFamily, o *DecodeOptions) (model.Vector, error) { + switch f.GetType() { + case dto.MetricType_COUNTER: + return extractCounter(o, f), nil + case dto.MetricType_GAUGE: + return extractGauge(o, f), nil + case dto.MetricType_SUMMARY: + return extractSummary(o, f), nil + case dto.MetricType_UNTYPED: + return extractUntyped(o, f), nil + case dto.MetricType_HISTOGRAM: + return extractHistogram(o, f), nil + } + return nil, fmt.Errorf("expfmt.extractSamples: unknown metric family type %v", f.GetType()) +} + +func extractCounter(o *DecodeOptions, f *dto.MetricFamily) model.Vector { + samples := make(model.Vector, 0, len(f.Metric)) + + for _, m := range f.Metric { + if m.Counter == nil { + continue + } + + lset := make(model.LabelSet, len(m.Label)+1) + for _, p := range m.Label { + lset[model.LabelName(p.GetName())] = model.LabelValue(p.GetValue()) + } + lset[model.MetricNameLabel] = model.LabelValue(f.GetName()) + + smpl := &model.Sample{ + Metric: model.Metric(lset), + Value: model.SampleValue(m.Counter.GetValue()), + } + + if m.TimestampMs != nil { + smpl.Timestamp = model.TimeFromUnixNano(*m.TimestampMs * 1000000) + } else { + smpl.Timestamp = o.Timestamp + } + + samples = append(samples, smpl) + } + + return samples +} + +func extractGauge(o *DecodeOptions, f *dto.MetricFamily) model.Vector { + samples := make(model.Vector, 0, len(f.Metric)) + + for _, m := range f.Metric { + if m.Gauge == nil { + continue + } + + lset := make(model.LabelSet, len(m.Label)+1) + for _, p := range m.Label { + lset[model.LabelName(p.GetName())] = model.LabelValue(p.GetValue()) + } + lset[model.MetricNameLabel] = model.LabelValue(f.GetName()) + + smpl := &model.Sample{ + Metric: model.Metric(lset), + Value: model.SampleValue(m.Gauge.GetValue()), + } + + if m.TimestampMs != nil { + smpl.Timestamp = model.TimeFromUnixNano(*m.TimestampMs * 1000000) + } else { + smpl.Timestamp = o.Timestamp + } + + samples = append(samples, smpl) + } + + return samples +} + +func extractUntyped(o *DecodeOptions, f *dto.MetricFamily) model.Vector { + samples := make(model.Vector, 0, len(f.Metric)) + + for _, m := range f.Metric { + if m.Untyped == nil { + continue + } + + lset := make(model.LabelSet, len(m.Label)+1) + for _, p := range m.Label { + lset[model.LabelName(p.GetName())] = model.LabelValue(p.GetValue()) + } + lset[model.MetricNameLabel] = model.LabelValue(f.GetName()) + + smpl := &model.Sample{ + Metric: model.Metric(lset), + Value: model.SampleValue(m.Untyped.GetValue()), + } + + if m.TimestampMs != nil { + smpl.Timestamp = model.TimeFromUnixNano(*m.TimestampMs * 1000000) + } else { + smpl.Timestamp = o.Timestamp + } + + samples = append(samples, smpl) + } + + return samples +} + +func extractSummary(o *DecodeOptions, f *dto.MetricFamily) model.Vector { + samples := make(model.Vector, 0, len(f.Metric)) + + for _, m := range f.Metric { + if m.Summary == nil { + continue + } + + timestamp := o.Timestamp + if m.TimestampMs != nil { + timestamp = model.TimeFromUnixNano(*m.TimestampMs * 1000000) + } + + for _, q := range m.Summary.Quantile { + lset := make(model.LabelSet, len(m.Label)+2) + for _, p := range m.Label { + lset[model.LabelName(p.GetName())] = model.LabelValue(p.GetValue()) + } + // BUG(matt): Update other names to "quantile". + lset[model.LabelName(model.QuantileLabel)] = model.LabelValue(fmt.Sprint(q.GetQuantile())) + lset[model.MetricNameLabel] = model.LabelValue(f.GetName()) + + samples = append(samples, &model.Sample{ + Metric: model.Metric(lset), + Value: model.SampleValue(q.GetValue()), + Timestamp: timestamp, + }) + } + + lset := make(model.LabelSet, len(m.Label)+1) + for _, p := range m.Label { + lset[model.LabelName(p.GetName())] = model.LabelValue(p.GetValue()) + } + lset[model.MetricNameLabel] = model.LabelValue(f.GetName() + "_sum") + + samples = append(samples, &model.Sample{ + Metric: model.Metric(lset), + Value: model.SampleValue(m.Summary.GetSampleSum()), + Timestamp: timestamp, + }) + + lset = make(model.LabelSet, len(m.Label)+1) + for _, p := range m.Label { + lset[model.LabelName(p.GetName())] = model.LabelValue(p.GetValue()) + } + lset[model.MetricNameLabel] = model.LabelValue(f.GetName() + "_count") + + samples = append(samples, &model.Sample{ + Metric: model.Metric(lset), + Value: model.SampleValue(m.Summary.GetSampleCount()), + Timestamp: timestamp, + }) + } + + return samples +} + +func extractHistogram(o *DecodeOptions, f *dto.MetricFamily) model.Vector { + samples := make(model.Vector, 0, len(f.Metric)) + + for _, m := range f.Metric { + if m.Histogram == nil { + continue + } + + timestamp := o.Timestamp + if m.TimestampMs != nil { + timestamp = model.TimeFromUnixNano(*m.TimestampMs * 1000000) + } + + infSeen := false + + for _, q := range m.Histogram.Bucket { + lset := make(model.LabelSet, len(m.Label)+2) + for _, p := range m.Label { + lset[model.LabelName(p.GetName())] = model.LabelValue(p.GetValue()) + } + lset[model.LabelName(model.BucketLabel)] = model.LabelValue(fmt.Sprint(q.GetUpperBound())) + lset[model.MetricNameLabel] = model.LabelValue(f.GetName() + "_bucket") + + if math.IsInf(q.GetUpperBound(), +1) { + infSeen = true + } + + samples = append(samples, &model.Sample{ + Metric: model.Metric(lset), + Value: model.SampleValue(q.GetCumulativeCount()), + Timestamp: timestamp, + }) + } + + lset := make(model.LabelSet, len(m.Label)+1) + for _, p := range m.Label { + lset[model.LabelName(p.GetName())] = model.LabelValue(p.GetValue()) + } + lset[model.MetricNameLabel] = model.LabelValue(f.GetName() + "_sum") + + samples = append(samples, &model.Sample{ + Metric: model.Metric(lset), + Value: model.SampleValue(m.Histogram.GetSampleSum()), + Timestamp: timestamp, + }) + + lset = make(model.LabelSet, len(m.Label)+1) + for _, p := range m.Label { + lset[model.LabelName(p.GetName())] = model.LabelValue(p.GetValue()) + } + lset[model.MetricNameLabel] = model.LabelValue(f.GetName() + "_count") + + count := &model.Sample{ + Metric: model.Metric(lset), + Value: model.SampleValue(m.Histogram.GetSampleCount()), + Timestamp: timestamp, + } + samples = append(samples, count) + + if !infSeen { + // Append an infinity bucket sample. + lset := make(model.LabelSet, len(m.Label)+2) + for _, p := range m.Label { + lset[model.LabelName(p.GetName())] = model.LabelValue(p.GetValue()) + } + lset[model.LabelName(model.BucketLabel)] = model.LabelValue("+Inf") + lset[model.MetricNameLabel] = model.LabelValue(f.GetName() + "_bucket") + + samples = append(samples, &model.Sample{ + Metric: model.Metric(lset), + Value: count.Value, + Timestamp: timestamp, + }) + } + } + + return samples +} diff --git a/vendor/github.com/prometheus/common/expfmt/encode.go b/vendor/github.com/prometheus/common/expfmt/encode.go new file mode 100644 index 000000000..11839ed65 --- /dev/null +++ b/vendor/github.com/prometheus/common/expfmt/encode.go @@ -0,0 +1,88 @@ +// Copyright 2015 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package expfmt + +import ( + "fmt" + "io" + "net/http" + + "github.com/golang/protobuf/proto" + "github.com/matttproud/golang_protobuf_extensions/pbutil" + "github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg" + + dto "github.com/prometheus/client_model/go" +) + +// Encoder types encode metric families into an underlying wire protocol. +type Encoder interface { + Encode(*dto.MetricFamily) error +} + +type encoder func(*dto.MetricFamily) error + +func (e encoder) Encode(v *dto.MetricFamily) error { + return e(v) +} + +// Negotiate returns the Content-Type based on the given Accept header. +// If no appropriate accepted type is found, FmtText is returned. +func Negotiate(h http.Header) Format { + for _, ac := range goautoneg.ParseAccept(h.Get(hdrAccept)) { + // Check for protocol buffer + if ac.Type+"/"+ac.SubType == ProtoType && ac.Params["proto"] == ProtoProtocol { + switch ac.Params["encoding"] { + case "delimited": + return FmtProtoDelim + case "text": + return FmtProtoText + case "compact-text": + return FmtProtoCompact + } + } + // Check for text format. + ver := ac.Params["version"] + if ac.Type == "text" && ac.SubType == "plain" && (ver == TextVersion || ver == "") { + return FmtText + } + } + return FmtText +} + +// NewEncoder returns a new encoder based on content type negotiation. +func NewEncoder(w io.Writer, format Format) Encoder { + switch format { + case FmtProtoDelim: + return encoder(func(v *dto.MetricFamily) error { + _, err := pbutil.WriteDelimited(w, v) + return err + }) + case FmtProtoCompact: + return encoder(func(v *dto.MetricFamily) error { + _, err := fmt.Fprintln(w, v.String()) + return err + }) + case FmtProtoText: + return encoder(func(v *dto.MetricFamily) error { + _, err := fmt.Fprintln(w, proto.MarshalTextString(v)) + return err + }) + case FmtText: + return encoder(func(v *dto.MetricFamily) error { + _, err := MetricFamilyToText(w, v) + return err + }) + } + panic("expfmt.NewEncoder: unknown format") +} diff --git a/vendor/github.com/prometheus/common/expfmt/expfmt.go b/vendor/github.com/prometheus/common/expfmt/expfmt.go new file mode 100644 index 000000000..c71bcb981 --- /dev/null +++ b/vendor/github.com/prometheus/common/expfmt/expfmt.go @@ -0,0 +1,38 @@ +// Copyright 2015 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package expfmt contains tools for reading and writing Prometheus metrics. +package expfmt + +// Format specifies the HTTP content type of the different wire protocols. +type Format string + +// Constants to assemble the Content-Type values for the different wire protocols. +const ( + TextVersion = "0.0.4" + ProtoType = `application/vnd.google.protobuf` + ProtoProtocol = `io.prometheus.client.MetricFamily` + ProtoFmt = ProtoType + "; proto=" + ProtoProtocol + ";" + + // The Content-Type values for the different wire protocols. + FmtUnknown Format = `` + FmtText Format = `text/plain; version=` + TextVersion + `; charset=utf-8` + FmtProtoDelim Format = ProtoFmt + ` encoding=delimited` + FmtProtoText Format = ProtoFmt + ` encoding=text` + FmtProtoCompact Format = ProtoFmt + ` encoding=compact-text` +) + +const ( + hdrContentType = "Content-Type" + hdrAccept = "Accept" +) diff --git a/vendor/github.com/prometheus/common/expfmt/fuzz.go b/vendor/github.com/prometheus/common/expfmt/fuzz.go new file mode 100644 index 000000000..dc2eedeef --- /dev/null +++ b/vendor/github.com/prometheus/common/expfmt/fuzz.go @@ -0,0 +1,36 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Build only when actually fuzzing +// +build gofuzz + +package expfmt + +import "bytes" + +// Fuzz text metric parser with with github.com/dvyukov/go-fuzz: +// +// go-fuzz-build github.com/prometheus/common/expfmt +// go-fuzz -bin expfmt-fuzz.zip -workdir fuzz +// +// Further input samples should go in the folder fuzz/corpus. +func Fuzz(in []byte) int { + parser := TextParser{} + _, err := parser.TextToMetricFamilies(bytes.NewReader(in)) + + if err != nil { + return 0 + } + + return 1 +} diff --git a/vendor/github.com/prometheus/common/expfmt/text_create.go b/vendor/github.com/prometheus/common/expfmt/text_create.go new file mode 100644 index 000000000..f11321cd0 --- /dev/null +++ b/vendor/github.com/prometheus/common/expfmt/text_create.go @@ -0,0 +1,303 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package expfmt + +import ( + "fmt" + "io" + "math" + "strings" + + dto "github.com/prometheus/client_model/go" + "github.com/prometheus/common/model" +) + +// MetricFamilyToText converts a MetricFamily proto message into text format and +// writes the resulting lines to 'out'. It returns the number of bytes written +// and any error encountered. The output will have the same order as the input, +// no further sorting is performed. Furthermore, this function assumes the input +// is already sanitized and does not perform any sanity checks. If the input +// contains duplicate metrics or invalid metric or label names, the conversion +// will result in invalid text format output. +// +// This method fulfills the type 'prometheus.encoder'. +func MetricFamilyToText(out io.Writer, in *dto.MetricFamily) (int, error) { + var written int + + // Fail-fast checks. + if len(in.Metric) == 0 { + return written, fmt.Errorf("MetricFamily has no metrics: %s", in) + } + name := in.GetName() + if name == "" { + return written, fmt.Errorf("MetricFamily has no name: %s", in) + } + + // Comments, first HELP, then TYPE. + if in.Help != nil { + n, err := fmt.Fprintf( + out, "# HELP %s %s\n", + name, escapeString(*in.Help, false), + ) + written += n + if err != nil { + return written, err + } + } + metricType := in.GetType() + n, err := fmt.Fprintf( + out, "# TYPE %s %s\n", + name, strings.ToLower(metricType.String()), + ) + written += n + if err != nil { + return written, err + } + + // Finally the samples, one line for each. + for _, metric := range in.Metric { + switch metricType { + case dto.MetricType_COUNTER: + if metric.Counter == nil { + return written, fmt.Errorf( + "expected counter in metric %s %s", name, metric, + ) + } + n, err = writeSample( + name, metric, "", "", + metric.Counter.GetValue(), + out, + ) + case dto.MetricType_GAUGE: + if metric.Gauge == nil { + return written, fmt.Errorf( + "expected gauge in metric %s %s", name, metric, + ) + } + n, err = writeSample( + name, metric, "", "", + metric.Gauge.GetValue(), + out, + ) + case dto.MetricType_UNTYPED: + if metric.Untyped == nil { + return written, fmt.Errorf( + "expected untyped in metric %s %s", name, metric, + ) + } + n, err = writeSample( + name, metric, "", "", + metric.Untyped.GetValue(), + out, + ) + case dto.MetricType_SUMMARY: + if metric.Summary == nil { + return written, fmt.Errorf( + "expected summary in metric %s %s", name, metric, + ) + } + for _, q := range metric.Summary.Quantile { + n, err = writeSample( + name, metric, + model.QuantileLabel, fmt.Sprint(q.GetQuantile()), + q.GetValue(), + out, + ) + written += n + if err != nil { + return written, err + } + } + n, err = writeSample( + name+"_sum", metric, "", "", + metric.Summary.GetSampleSum(), + out, + ) + if err != nil { + return written, err + } + written += n + n, err = writeSample( + name+"_count", metric, "", "", + float64(metric.Summary.GetSampleCount()), + out, + ) + case dto.MetricType_HISTOGRAM: + if metric.Histogram == nil { + return written, fmt.Errorf( + "expected histogram in metric %s %s", name, metric, + ) + } + infSeen := false + for _, q := range metric.Histogram.Bucket { + n, err = writeSample( + name+"_bucket", metric, + model.BucketLabel, fmt.Sprint(q.GetUpperBound()), + float64(q.GetCumulativeCount()), + out, + ) + written += n + if err != nil { + return written, err + } + if math.IsInf(q.GetUpperBound(), +1) { + infSeen = true + } + } + if !infSeen { + n, err = writeSample( + name+"_bucket", metric, + model.BucketLabel, "+Inf", + float64(metric.Histogram.GetSampleCount()), + out, + ) + if err != nil { + return written, err + } + written += n + } + n, err = writeSample( + name+"_sum", metric, "", "", + metric.Histogram.GetSampleSum(), + out, + ) + if err != nil { + return written, err + } + written += n + n, err = writeSample( + name+"_count", metric, "", "", + float64(metric.Histogram.GetSampleCount()), + out, + ) + default: + return written, fmt.Errorf( + "unexpected type in metric %s %s", name, metric, + ) + } + written += n + if err != nil { + return written, err + } + } + return written, nil +} + +// writeSample writes a single sample in text format to out, given the metric +// name, the metric proto message itself, optionally an additional label name +// and value (use empty strings if not required), and the value. The function +// returns the number of bytes written and any error encountered. +func writeSample( + name string, + metric *dto.Metric, + additionalLabelName, additionalLabelValue string, + value float64, + out io.Writer, +) (int, error) { + var written int + n, err := fmt.Fprint(out, name) + written += n + if err != nil { + return written, err + } + n, err = labelPairsToText( + metric.Label, + additionalLabelName, additionalLabelValue, + out, + ) + written += n + if err != nil { + return written, err + } + n, err = fmt.Fprintf(out, " %v", value) + written += n + if err != nil { + return written, err + } + if metric.TimestampMs != nil { + n, err = fmt.Fprintf(out, " %v", *metric.TimestampMs) + written += n + if err != nil { + return written, err + } + } + n, err = out.Write([]byte{'\n'}) + written += n + if err != nil { + return written, err + } + return written, nil +} + +// labelPairsToText converts a slice of LabelPair proto messages plus the +// explicitly given additional label pair into text formatted as required by the +// text format and writes it to 'out'. An empty slice in combination with an +// empty string 'additionalLabelName' results in nothing being +// written. Otherwise, the label pairs are written, escaped as required by the +// text format, and enclosed in '{...}'. The function returns the number of +// bytes written and any error encountered. +func labelPairsToText( + in []*dto.LabelPair, + additionalLabelName, additionalLabelValue string, + out io.Writer, +) (int, error) { + if len(in) == 0 && additionalLabelName == "" { + return 0, nil + } + var written int + separator := '{' + for _, lp := range in { + n, err := fmt.Fprintf( + out, `%c%s="%s"`, + separator, lp.GetName(), escapeString(lp.GetValue(), true), + ) + written += n + if err != nil { + return written, err + } + separator = ',' + } + if additionalLabelName != "" { + n, err := fmt.Fprintf( + out, `%c%s="%s"`, + separator, additionalLabelName, + escapeString(additionalLabelValue, true), + ) + written += n + if err != nil { + return written, err + } + } + n, err := out.Write([]byte{'}'}) + written += n + if err != nil { + return written, err + } + return written, nil +} + +var ( + escape = strings.NewReplacer("\\", `\\`, "\n", `\n`) + escapeWithDoubleQuote = strings.NewReplacer("\\", `\\`, "\n", `\n`, "\"", `\"`) +) + +// escapeString replaces '\' by '\\', new line character by '\n', and - if +// includeDoubleQuote is true - '"' by '\"'. +func escapeString(v string, includeDoubleQuote bool) string { + if includeDoubleQuote { + return escapeWithDoubleQuote.Replace(v) + } + + return escape.Replace(v) +} diff --git a/vendor/github.com/prometheus/common/expfmt/text_parse.go b/vendor/github.com/prometheus/common/expfmt/text_parse.go new file mode 100644 index 000000000..54bcfde29 --- /dev/null +++ b/vendor/github.com/prometheus/common/expfmt/text_parse.go @@ -0,0 +1,757 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package expfmt + +import ( + "bufio" + "bytes" + "fmt" + "io" + "math" + "strconv" + "strings" + + dto "github.com/prometheus/client_model/go" + + "github.com/golang/protobuf/proto" + "github.com/prometheus/common/model" +) + +// A stateFn is a function that represents a state in a state machine. By +// executing it, the state is progressed to the next state. The stateFn returns +// another stateFn, which represents the new state. The end state is represented +// by nil. +type stateFn func() stateFn + +// ParseError signals errors while parsing the simple and flat text-based +// exchange format. +type ParseError struct { + Line int + Msg string +} + +// Error implements the error interface. +func (e ParseError) Error() string { + return fmt.Sprintf("text format parsing error in line %d: %s", e.Line, e.Msg) +} + +// TextParser is used to parse the simple and flat text-based exchange format. Its +// zero value is ready to use. +type TextParser struct { + metricFamiliesByName map[string]*dto.MetricFamily + buf *bufio.Reader // Where the parsed input is read through. + err error // Most recent error. + lineCount int // Tracks the line count for error messages. + currentByte byte // The most recent byte read. + currentToken bytes.Buffer // Re-used each time a token has to be gathered from multiple bytes. + currentMF *dto.MetricFamily + currentMetric *dto.Metric + currentLabelPair *dto.LabelPair + + // The remaining member variables are only used for summaries/histograms. + currentLabels map[string]string // All labels including '__name__' but excluding 'quantile'/'le' + // Summary specific. + summaries map[uint64]*dto.Metric // Key is created with LabelsToSignature. + currentQuantile float64 + // Histogram specific. + histograms map[uint64]*dto.Metric // Key is created with LabelsToSignature. + currentBucket float64 + // These tell us if the currently processed line ends on '_count' or + // '_sum' respectively and belong to a summary/histogram, representing the sample + // count and sum of that summary/histogram. + currentIsSummaryCount, currentIsSummarySum bool + currentIsHistogramCount, currentIsHistogramSum bool +} + +// TextToMetricFamilies reads 'in' as the simple and flat text-based exchange +// format and creates MetricFamily proto messages. It returns the MetricFamily +// proto messages in a map where the metric names are the keys, along with any +// error encountered. +// +// If the input contains duplicate metrics (i.e. lines with the same metric name +// and exactly the same label set), the resulting MetricFamily will contain +// duplicate Metric proto messages. Similar is true for duplicate label +// names. Checks for duplicates have to be performed separately, if required. +// Also note that neither the metrics within each MetricFamily are sorted nor +// the label pairs within each Metric. Sorting is not required for the most +// frequent use of this method, which is sample ingestion in the Prometheus +// server. However, for presentation purposes, you might want to sort the +// metrics, and in some cases, you must sort the labels, e.g. for consumption by +// the metric family injection hook of the Prometheus registry. +// +// Summaries and histograms are rather special beasts. You would probably not +// use them in the simple text format anyway. This method can deal with +// summaries and histograms if they are presented in exactly the way the +// text.Create function creates them. +// +// This method must not be called concurrently. If you want to parse different +// input concurrently, instantiate a separate Parser for each goroutine. +func (p *TextParser) TextToMetricFamilies(in io.Reader) (map[string]*dto.MetricFamily, error) { + p.reset(in) + for nextState := p.startOfLine; nextState != nil; nextState = nextState() { + // Magic happens here... + } + // Get rid of empty metric families. + for k, mf := range p.metricFamiliesByName { + if len(mf.GetMetric()) == 0 { + delete(p.metricFamiliesByName, k) + } + } + // If p.err is io.EOF now, we have run into a premature end of the input + // stream. Turn this error into something nicer and more + // meaningful. (io.EOF is often used as a signal for the legitimate end + // of an input stream.) + if p.err == io.EOF { + p.parseError("unexpected end of input stream") + } + return p.metricFamiliesByName, p.err +} + +func (p *TextParser) reset(in io.Reader) { + p.metricFamiliesByName = map[string]*dto.MetricFamily{} + if p.buf == nil { + p.buf = bufio.NewReader(in) + } else { + p.buf.Reset(in) + } + p.err = nil + p.lineCount = 0 + if p.summaries == nil || len(p.summaries) > 0 { + p.summaries = map[uint64]*dto.Metric{} + } + if p.histograms == nil || len(p.histograms) > 0 { + p.histograms = map[uint64]*dto.Metric{} + } + p.currentQuantile = math.NaN() + p.currentBucket = math.NaN() +} + +// startOfLine represents the state where the next byte read from p.buf is the +// start of a line (or whitespace leading up to it). +func (p *TextParser) startOfLine() stateFn { + p.lineCount++ + if p.skipBlankTab(); p.err != nil { + // End of input reached. This is the only case where + // that is not an error but a signal that we are done. + p.err = nil + return nil + } + switch p.currentByte { + case '#': + return p.startComment + case '\n': + return p.startOfLine // Empty line, start the next one. + } + return p.readingMetricName +} + +// startComment represents the state where the next byte read from p.buf is the +// start of a comment (or whitespace leading up to it). +func (p *TextParser) startComment() stateFn { + if p.skipBlankTab(); p.err != nil { + return nil // Unexpected end of input. + } + if p.currentByte == '\n' { + return p.startOfLine + } + if p.readTokenUntilWhitespace(); p.err != nil { + return nil // Unexpected end of input. + } + // If we have hit the end of line already, there is nothing left + // to do. This is not considered a syntax error. + if p.currentByte == '\n' { + return p.startOfLine + } + keyword := p.currentToken.String() + if keyword != "HELP" && keyword != "TYPE" { + // Generic comment, ignore by fast forwarding to end of line. + for p.currentByte != '\n' { + if p.currentByte, p.err = p.buf.ReadByte(); p.err != nil { + return nil // Unexpected end of input. + } + } + return p.startOfLine + } + // There is something. Next has to be a metric name. + if p.skipBlankTab(); p.err != nil { + return nil // Unexpected end of input. + } + if p.readTokenAsMetricName(); p.err != nil { + return nil // Unexpected end of input. + } + if p.currentByte == '\n' { + // At the end of the line already. + // Again, this is not considered a syntax error. + return p.startOfLine + } + if !isBlankOrTab(p.currentByte) { + p.parseError("invalid metric name in comment") + return nil + } + p.setOrCreateCurrentMF() + if p.skipBlankTab(); p.err != nil { + return nil // Unexpected end of input. + } + if p.currentByte == '\n' { + // At the end of the line already. + // Again, this is not considered a syntax error. + return p.startOfLine + } + switch keyword { + case "HELP": + return p.readingHelp + case "TYPE": + return p.readingType + } + panic(fmt.Sprintf("code error: unexpected keyword %q", keyword)) +} + +// readingMetricName represents the state where the last byte read (now in +// p.currentByte) is the first byte of a metric name. +func (p *TextParser) readingMetricName() stateFn { + if p.readTokenAsMetricName(); p.err != nil { + return nil + } + if p.currentToken.Len() == 0 { + p.parseError("invalid metric name") + return nil + } + p.setOrCreateCurrentMF() + // Now is the time to fix the type if it hasn't happened yet. + if p.currentMF.Type == nil { + p.currentMF.Type = dto.MetricType_UNTYPED.Enum() + } + p.currentMetric = &dto.Metric{} + // Do not append the newly created currentMetric to + // currentMF.Metric right now. First wait if this is a summary, + // and the metric exists already, which we can only know after + // having read all the labels. + if p.skipBlankTabIfCurrentBlankTab(); p.err != nil { + return nil // Unexpected end of input. + } + return p.readingLabels +} + +// readingLabels represents the state where the last byte read (now in +// p.currentByte) is either the first byte of the label set (i.e. a '{'), or the +// first byte of the value (otherwise). +func (p *TextParser) readingLabels() stateFn { + // Summaries/histograms are special. We have to reset the + // currentLabels map, currentQuantile and currentBucket before starting to + // read labels. + if p.currentMF.GetType() == dto.MetricType_SUMMARY || p.currentMF.GetType() == dto.MetricType_HISTOGRAM { + p.currentLabels = map[string]string{} + p.currentLabels[string(model.MetricNameLabel)] = p.currentMF.GetName() + p.currentQuantile = math.NaN() + p.currentBucket = math.NaN() + } + if p.currentByte != '{' { + return p.readingValue + } + return p.startLabelName +} + +// startLabelName represents the state where the next byte read from p.buf is +// the start of a label name (or whitespace leading up to it). +func (p *TextParser) startLabelName() stateFn { + if p.skipBlankTab(); p.err != nil { + return nil // Unexpected end of input. + } + if p.currentByte == '}' { + if p.skipBlankTab(); p.err != nil { + return nil // Unexpected end of input. + } + return p.readingValue + } + if p.readTokenAsLabelName(); p.err != nil { + return nil // Unexpected end of input. + } + if p.currentToken.Len() == 0 { + p.parseError(fmt.Sprintf("invalid label name for metric %q", p.currentMF.GetName())) + return nil + } + p.currentLabelPair = &dto.LabelPair{Name: proto.String(p.currentToken.String())} + if p.currentLabelPair.GetName() == string(model.MetricNameLabel) { + p.parseError(fmt.Sprintf("label name %q is reserved", model.MetricNameLabel)) + return nil + } + // Special summary/histogram treatment. Don't add 'quantile' and 'le' + // labels to 'real' labels. + if !(p.currentMF.GetType() == dto.MetricType_SUMMARY && p.currentLabelPair.GetName() == model.QuantileLabel) && + !(p.currentMF.GetType() == dto.MetricType_HISTOGRAM && p.currentLabelPair.GetName() == model.BucketLabel) { + p.currentMetric.Label = append(p.currentMetric.Label, p.currentLabelPair) + } + if p.skipBlankTabIfCurrentBlankTab(); p.err != nil { + return nil // Unexpected end of input. + } + if p.currentByte != '=' { + p.parseError(fmt.Sprintf("expected '=' after label name, found %q", p.currentByte)) + return nil + } + return p.startLabelValue +} + +// startLabelValue represents the state where the next byte read from p.buf is +// the start of a (quoted) label value (or whitespace leading up to it). +func (p *TextParser) startLabelValue() stateFn { + if p.skipBlankTab(); p.err != nil { + return nil // Unexpected end of input. + } + if p.currentByte != '"' { + p.parseError(fmt.Sprintf("expected '\"' at start of label value, found %q", p.currentByte)) + return nil + } + if p.readTokenAsLabelValue(); p.err != nil { + return nil + } + if !model.LabelValue(p.currentToken.String()).IsValid() { + p.parseError(fmt.Sprintf("invalid label value %q", p.currentToken.String())) + return nil + } + p.currentLabelPair.Value = proto.String(p.currentToken.String()) + // Special treatment of summaries: + // - Quantile labels are special, will result in dto.Quantile later. + // - Other labels have to be added to currentLabels for signature calculation. + if p.currentMF.GetType() == dto.MetricType_SUMMARY { + if p.currentLabelPair.GetName() == model.QuantileLabel { + if p.currentQuantile, p.err = strconv.ParseFloat(p.currentLabelPair.GetValue(), 64); p.err != nil { + // Create a more helpful error message. + p.parseError(fmt.Sprintf("expected float as value for 'quantile' label, got %q", p.currentLabelPair.GetValue())) + return nil + } + } else { + p.currentLabels[p.currentLabelPair.GetName()] = p.currentLabelPair.GetValue() + } + } + // Similar special treatment of histograms. + if p.currentMF.GetType() == dto.MetricType_HISTOGRAM { + if p.currentLabelPair.GetName() == model.BucketLabel { + if p.currentBucket, p.err = strconv.ParseFloat(p.currentLabelPair.GetValue(), 64); p.err != nil { + // Create a more helpful error message. + p.parseError(fmt.Sprintf("expected float as value for 'le' label, got %q", p.currentLabelPair.GetValue())) + return nil + } + } else { + p.currentLabels[p.currentLabelPair.GetName()] = p.currentLabelPair.GetValue() + } + } + if p.skipBlankTab(); p.err != nil { + return nil // Unexpected end of input. + } + switch p.currentByte { + case ',': + return p.startLabelName + + case '}': + if p.skipBlankTab(); p.err != nil { + return nil // Unexpected end of input. + } + return p.readingValue + default: + p.parseError(fmt.Sprintf("unexpected end of label value %q", p.currentLabelPair.Value)) + return nil + } +} + +// readingValue represents the state where the last byte read (now in +// p.currentByte) is the first byte of the sample value (i.e. a float). +func (p *TextParser) readingValue() stateFn { + // When we are here, we have read all the labels, so for the + // special case of a summary/histogram, we can finally find out + // if the metric already exists. + if p.currentMF.GetType() == dto.MetricType_SUMMARY { + signature := model.LabelsToSignature(p.currentLabels) + if summary := p.summaries[signature]; summary != nil { + p.currentMetric = summary + } else { + p.summaries[signature] = p.currentMetric + p.currentMF.Metric = append(p.currentMF.Metric, p.currentMetric) + } + } else if p.currentMF.GetType() == dto.MetricType_HISTOGRAM { + signature := model.LabelsToSignature(p.currentLabels) + if histogram := p.histograms[signature]; histogram != nil { + p.currentMetric = histogram + } else { + p.histograms[signature] = p.currentMetric + p.currentMF.Metric = append(p.currentMF.Metric, p.currentMetric) + } + } else { + p.currentMF.Metric = append(p.currentMF.Metric, p.currentMetric) + } + if p.readTokenUntilWhitespace(); p.err != nil { + return nil // Unexpected end of input. + } + value, err := strconv.ParseFloat(p.currentToken.String(), 64) + if err != nil { + // Create a more helpful error message. + p.parseError(fmt.Sprintf("expected float as value, got %q", p.currentToken.String())) + return nil + } + switch p.currentMF.GetType() { + case dto.MetricType_COUNTER: + p.currentMetric.Counter = &dto.Counter{Value: proto.Float64(value)} + case dto.MetricType_GAUGE: + p.currentMetric.Gauge = &dto.Gauge{Value: proto.Float64(value)} + case dto.MetricType_UNTYPED: + p.currentMetric.Untyped = &dto.Untyped{Value: proto.Float64(value)} + case dto.MetricType_SUMMARY: + // *sigh* + if p.currentMetric.Summary == nil { + p.currentMetric.Summary = &dto.Summary{} + } + switch { + case p.currentIsSummaryCount: + p.currentMetric.Summary.SampleCount = proto.Uint64(uint64(value)) + case p.currentIsSummarySum: + p.currentMetric.Summary.SampleSum = proto.Float64(value) + case !math.IsNaN(p.currentQuantile): + p.currentMetric.Summary.Quantile = append( + p.currentMetric.Summary.Quantile, + &dto.Quantile{ + Quantile: proto.Float64(p.currentQuantile), + Value: proto.Float64(value), + }, + ) + } + case dto.MetricType_HISTOGRAM: + // *sigh* + if p.currentMetric.Histogram == nil { + p.currentMetric.Histogram = &dto.Histogram{} + } + switch { + case p.currentIsHistogramCount: + p.currentMetric.Histogram.SampleCount = proto.Uint64(uint64(value)) + case p.currentIsHistogramSum: + p.currentMetric.Histogram.SampleSum = proto.Float64(value) + case !math.IsNaN(p.currentBucket): + p.currentMetric.Histogram.Bucket = append( + p.currentMetric.Histogram.Bucket, + &dto.Bucket{ + UpperBound: proto.Float64(p.currentBucket), + CumulativeCount: proto.Uint64(uint64(value)), + }, + ) + } + default: + p.err = fmt.Errorf("unexpected type for metric name %q", p.currentMF.GetName()) + } + if p.currentByte == '\n' { + return p.startOfLine + } + return p.startTimestamp +} + +// startTimestamp represents the state where the next byte read from p.buf is +// the start of the timestamp (or whitespace leading up to it). +func (p *TextParser) startTimestamp() stateFn { + if p.skipBlankTab(); p.err != nil { + return nil // Unexpected end of input. + } + if p.readTokenUntilWhitespace(); p.err != nil { + return nil // Unexpected end of input. + } + timestamp, err := strconv.ParseInt(p.currentToken.String(), 10, 64) + if err != nil { + // Create a more helpful error message. + p.parseError(fmt.Sprintf("expected integer as timestamp, got %q", p.currentToken.String())) + return nil + } + p.currentMetric.TimestampMs = proto.Int64(timestamp) + if p.readTokenUntilNewline(false); p.err != nil { + return nil // Unexpected end of input. + } + if p.currentToken.Len() > 0 { + p.parseError(fmt.Sprintf("spurious string after timestamp: %q", p.currentToken.String())) + return nil + } + return p.startOfLine +} + +// readingHelp represents the state where the last byte read (now in +// p.currentByte) is the first byte of the docstring after 'HELP'. +func (p *TextParser) readingHelp() stateFn { + if p.currentMF.Help != nil { + p.parseError(fmt.Sprintf("second HELP line for metric name %q", p.currentMF.GetName())) + return nil + } + // Rest of line is the docstring. + if p.readTokenUntilNewline(true); p.err != nil { + return nil // Unexpected end of input. + } + p.currentMF.Help = proto.String(p.currentToken.String()) + return p.startOfLine +} + +// readingType represents the state where the last byte read (now in +// p.currentByte) is the first byte of the type hint after 'HELP'. +func (p *TextParser) readingType() stateFn { + if p.currentMF.Type != nil { + p.parseError(fmt.Sprintf("second TYPE line for metric name %q, or TYPE reported after samples", p.currentMF.GetName())) + return nil + } + // Rest of line is the type. + if p.readTokenUntilNewline(false); p.err != nil { + return nil // Unexpected end of input. + } + metricType, ok := dto.MetricType_value[strings.ToUpper(p.currentToken.String())] + if !ok { + p.parseError(fmt.Sprintf("unknown metric type %q", p.currentToken.String())) + return nil + } + p.currentMF.Type = dto.MetricType(metricType).Enum() + return p.startOfLine +} + +// parseError sets p.err to a ParseError at the current line with the given +// message. +func (p *TextParser) parseError(msg string) { + p.err = ParseError{ + Line: p.lineCount, + Msg: msg, + } +} + +// skipBlankTab reads (and discards) bytes from p.buf until it encounters a byte +// that is neither ' ' nor '\t'. That byte is left in p.currentByte. +func (p *TextParser) skipBlankTab() { + for { + if p.currentByte, p.err = p.buf.ReadByte(); p.err != nil || !isBlankOrTab(p.currentByte) { + return + } + } +} + +// skipBlankTabIfCurrentBlankTab works exactly as skipBlankTab but doesn't do +// anything if p.currentByte is neither ' ' nor '\t'. +func (p *TextParser) skipBlankTabIfCurrentBlankTab() { + if isBlankOrTab(p.currentByte) { + p.skipBlankTab() + } +} + +// readTokenUntilWhitespace copies bytes from p.buf into p.currentToken. The +// first byte considered is the byte already read (now in p.currentByte). The +// first whitespace byte encountered is still copied into p.currentByte, but not +// into p.currentToken. +func (p *TextParser) readTokenUntilWhitespace() { + p.currentToken.Reset() + for p.err == nil && !isBlankOrTab(p.currentByte) && p.currentByte != '\n' { + p.currentToken.WriteByte(p.currentByte) + p.currentByte, p.err = p.buf.ReadByte() + } +} + +// readTokenUntilNewline copies bytes from p.buf into p.currentToken. The first +// byte considered is the byte already read (now in p.currentByte). The first +// newline byte encountered is still copied into p.currentByte, but not into +// p.currentToken. If recognizeEscapeSequence is true, two escape sequences are +// recognized: '\\' tranlates into '\', and '\n' into a line-feed character. All +// other escape sequences are invalid and cause an error. +func (p *TextParser) readTokenUntilNewline(recognizeEscapeSequence bool) { + p.currentToken.Reset() + escaped := false + for p.err == nil { + if recognizeEscapeSequence && escaped { + switch p.currentByte { + case '\\': + p.currentToken.WriteByte(p.currentByte) + case 'n': + p.currentToken.WriteByte('\n') + default: + p.parseError(fmt.Sprintf("invalid escape sequence '\\%c'", p.currentByte)) + return + } + escaped = false + } else { + switch p.currentByte { + case '\n': + return + case '\\': + escaped = true + default: + p.currentToken.WriteByte(p.currentByte) + } + } + p.currentByte, p.err = p.buf.ReadByte() + } +} + +// readTokenAsMetricName copies a metric name from p.buf into p.currentToken. +// The first byte considered is the byte already read (now in p.currentByte). +// The first byte not part of a metric name is still copied into p.currentByte, +// but not into p.currentToken. +func (p *TextParser) readTokenAsMetricName() { + p.currentToken.Reset() + if !isValidMetricNameStart(p.currentByte) { + return + } + for { + p.currentToken.WriteByte(p.currentByte) + p.currentByte, p.err = p.buf.ReadByte() + if p.err != nil || !isValidMetricNameContinuation(p.currentByte) { + return + } + } +} + +// readTokenAsLabelName copies a label name from p.buf into p.currentToken. +// The first byte considered is the byte already read (now in p.currentByte). +// The first byte not part of a label name is still copied into p.currentByte, +// but not into p.currentToken. +func (p *TextParser) readTokenAsLabelName() { + p.currentToken.Reset() + if !isValidLabelNameStart(p.currentByte) { + return + } + for { + p.currentToken.WriteByte(p.currentByte) + p.currentByte, p.err = p.buf.ReadByte() + if p.err != nil || !isValidLabelNameContinuation(p.currentByte) { + return + } + } +} + +// readTokenAsLabelValue copies a label value from p.buf into p.currentToken. +// In contrast to the other 'readTokenAs...' functions, which start with the +// last read byte in p.currentByte, this method ignores p.currentByte and starts +// with reading a new byte from p.buf. The first byte not part of a label value +// is still copied into p.currentByte, but not into p.currentToken. +func (p *TextParser) readTokenAsLabelValue() { + p.currentToken.Reset() + escaped := false + for { + if p.currentByte, p.err = p.buf.ReadByte(); p.err != nil { + return + } + if escaped { + switch p.currentByte { + case '"', '\\': + p.currentToken.WriteByte(p.currentByte) + case 'n': + p.currentToken.WriteByte('\n') + default: + p.parseError(fmt.Sprintf("invalid escape sequence '\\%c'", p.currentByte)) + return + } + escaped = false + continue + } + switch p.currentByte { + case '"': + return + case '\n': + p.parseError(fmt.Sprintf("label value %q contains unescaped new-line", p.currentToken.String())) + return + case '\\': + escaped = true + default: + p.currentToken.WriteByte(p.currentByte) + } + } +} + +func (p *TextParser) setOrCreateCurrentMF() { + p.currentIsSummaryCount = false + p.currentIsSummarySum = false + p.currentIsHistogramCount = false + p.currentIsHistogramSum = false + name := p.currentToken.String() + if p.currentMF = p.metricFamiliesByName[name]; p.currentMF != nil { + return + } + // Try out if this is a _sum or _count for a summary/histogram. + summaryName := summaryMetricName(name) + if p.currentMF = p.metricFamiliesByName[summaryName]; p.currentMF != nil { + if p.currentMF.GetType() == dto.MetricType_SUMMARY { + if isCount(name) { + p.currentIsSummaryCount = true + } + if isSum(name) { + p.currentIsSummarySum = true + } + return + } + } + histogramName := histogramMetricName(name) + if p.currentMF = p.metricFamiliesByName[histogramName]; p.currentMF != nil { + if p.currentMF.GetType() == dto.MetricType_HISTOGRAM { + if isCount(name) { + p.currentIsHistogramCount = true + } + if isSum(name) { + p.currentIsHistogramSum = true + } + return + } + } + p.currentMF = &dto.MetricFamily{Name: proto.String(name)} + p.metricFamiliesByName[name] = p.currentMF +} + +func isValidLabelNameStart(b byte) bool { + return (b >= 'a' && b <= 'z') || (b >= 'A' && b <= 'Z') || b == '_' +} + +func isValidLabelNameContinuation(b byte) bool { + return isValidLabelNameStart(b) || (b >= '0' && b <= '9') +} + +func isValidMetricNameStart(b byte) bool { + return isValidLabelNameStart(b) || b == ':' +} + +func isValidMetricNameContinuation(b byte) bool { + return isValidLabelNameContinuation(b) || b == ':' +} + +func isBlankOrTab(b byte) bool { + return b == ' ' || b == '\t' +} + +func isCount(name string) bool { + return len(name) > 6 && name[len(name)-6:] == "_count" +} + +func isSum(name string) bool { + return len(name) > 4 && name[len(name)-4:] == "_sum" +} + +func isBucket(name string) bool { + return len(name) > 7 && name[len(name)-7:] == "_bucket" +} + +func summaryMetricName(name string) string { + switch { + case isCount(name): + return name[:len(name)-6] + case isSum(name): + return name[:len(name)-4] + default: + return name + } +} + +func histogramMetricName(name string) string { + switch { + case isCount(name): + return name[:len(name)-6] + case isSum(name): + return name[:len(name)-4] + case isBucket(name): + return name[:len(name)-7] + default: + return name + } +} diff --git a/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/README.txt b/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/README.txt new file mode 100644 index 000000000..7723656d5 --- /dev/null +++ b/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/README.txt @@ -0,0 +1,67 @@ +PACKAGE + +package goautoneg +import "bitbucket.org/ww/goautoneg" + +HTTP Content-Type Autonegotiation. + +The functions in this package implement the behaviour specified in +http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html + +Copyright (c) 2011, Open Knowledge Foundation Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + Neither the name of the Open Knowledge Foundation Ltd. nor the + names of its contributors may be used to endorse or promote + products derived from this software without specific prior written + permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +FUNCTIONS + +func Negotiate(header string, alternatives []string) (content_type string) +Negotiate the most appropriate content_type given the accept header +and a list of alternatives. + +func ParseAccept(header string) (accept []Accept) +Parse an Accept Header string returning a sorted list +of clauses + + +TYPES + +type Accept struct { + Type, SubType string + Q float32 + Params map[string]string +} +Structure to represent a clause in an HTTP Accept Header + + +SUBDIRECTORIES + + .hg diff --git a/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/autoneg.go b/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/autoneg.go new file mode 100644 index 000000000..648b38cb6 --- /dev/null +++ b/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/autoneg.go @@ -0,0 +1,162 @@ +/* +HTTP Content-Type Autonegotiation. + +The functions in this package implement the behaviour specified in +http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html + +Copyright (c) 2011, Open Knowledge Foundation Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + Neither the name of the Open Knowledge Foundation Ltd. nor the + names of its contributors may be used to endorse or promote + products derived from this software without specific prior written + permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +*/ +package goautoneg + +import ( + "sort" + "strconv" + "strings" +) + +// Structure to represent a clause in an HTTP Accept Header +type Accept struct { + Type, SubType string + Q float64 + Params map[string]string +} + +// For internal use, so that we can use the sort interface +type accept_slice []Accept + +func (accept accept_slice) Len() int { + slice := []Accept(accept) + return len(slice) +} + +func (accept accept_slice) Less(i, j int) bool { + slice := []Accept(accept) + ai, aj := slice[i], slice[j] + if ai.Q > aj.Q { + return true + } + if ai.Type != "*" && aj.Type == "*" { + return true + } + if ai.SubType != "*" && aj.SubType == "*" { + return true + } + return false +} + +func (accept accept_slice) Swap(i, j int) { + slice := []Accept(accept) + slice[i], slice[j] = slice[j], slice[i] +} + +// Parse an Accept Header string returning a sorted list +// of clauses +func ParseAccept(header string) (accept []Accept) { + parts := strings.Split(header, ",") + accept = make([]Accept, 0, len(parts)) + for _, part := range parts { + part := strings.Trim(part, " ") + + a := Accept{} + a.Params = make(map[string]string) + a.Q = 1.0 + + mrp := strings.Split(part, ";") + + media_range := mrp[0] + sp := strings.Split(media_range, "/") + a.Type = strings.Trim(sp[0], " ") + + switch { + case len(sp) == 1 && a.Type == "*": + a.SubType = "*" + case len(sp) == 2: + a.SubType = strings.Trim(sp[1], " ") + default: + continue + } + + if len(mrp) == 1 { + accept = append(accept, a) + continue + } + + for _, param := range mrp[1:] { + sp := strings.SplitN(param, "=", 2) + if len(sp) != 2 { + continue + } + token := strings.Trim(sp[0], " ") + if token == "q" { + a.Q, _ = strconv.ParseFloat(sp[1], 32) + } else { + a.Params[token] = strings.Trim(sp[1], " ") + } + } + + accept = append(accept, a) + } + + slice := accept_slice(accept) + sort.Sort(slice) + + return +} + +// Negotiate the most appropriate content_type given the accept header +// and a list of alternatives. +func Negotiate(header string, alternatives []string) (content_type string) { + asp := make([][]string, 0, len(alternatives)) + for _, ctype := range alternatives { + asp = append(asp, strings.SplitN(ctype, "/", 2)) + } + for _, clause := range ParseAccept(header) { + for i, ctsp := range asp { + if clause.Type == ctsp[0] && clause.SubType == ctsp[1] { + content_type = alternatives[i] + return + } + if clause.Type == ctsp[0] && clause.SubType == "*" { + content_type = alternatives[i] + return + } + if clause.Type == "*" && clause.SubType == "*" { + content_type = alternatives[i] + return + } + } + } + return +} diff --git a/vendor/github.com/prometheus/common/model/alert.go b/vendor/github.com/prometheus/common/model/alert.go new file mode 100644 index 000000000..35e739c7a --- /dev/null +++ b/vendor/github.com/prometheus/common/model/alert.go @@ -0,0 +1,136 @@ +// Copyright 2013 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package model + +import ( + "fmt" + "time" +) + +type AlertStatus string + +const ( + AlertFiring AlertStatus = "firing" + AlertResolved AlertStatus = "resolved" +) + +// Alert is a generic representation of an alert in the Prometheus eco-system. +type Alert struct { + // Label value pairs for purpose of aggregation, matching, and disposition + // dispatching. This must minimally include an "alertname" label. + Labels LabelSet `json:"labels"` + + // Extra key/value information which does not define alert identity. + Annotations LabelSet `json:"annotations"` + + // The known time range for this alert. Both ends are optional. + StartsAt time.Time `json:"startsAt,omitempty"` + EndsAt time.Time `json:"endsAt,omitempty"` + GeneratorURL string `json:"generatorURL"` +} + +// Name returns the name of the alert. It is equivalent to the "alertname" label. +func (a *Alert) Name() string { + return string(a.Labels[AlertNameLabel]) +} + +// Fingerprint returns a unique hash for the alert. It is equivalent to +// the fingerprint of the alert's label set. +func (a *Alert) Fingerprint() Fingerprint { + return a.Labels.Fingerprint() +} + +func (a *Alert) String() string { + s := fmt.Sprintf("%s[%s]", a.Name(), a.Fingerprint().String()[:7]) + if a.Resolved() { + return s + "[resolved]" + } + return s + "[active]" +} + +// Resolved returns true iff the activity interval ended in the past. +func (a *Alert) Resolved() bool { + return a.ResolvedAt(time.Now()) +} + +// ResolvedAt returns true off the activity interval ended before +// the given timestamp. +func (a *Alert) ResolvedAt(ts time.Time) bool { + if a.EndsAt.IsZero() { + return false + } + return !a.EndsAt.After(ts) +} + +// Status returns the status of the alert. +func (a *Alert) Status() AlertStatus { + if a.Resolved() { + return AlertResolved + } + return AlertFiring +} + +// Validate checks whether the alert data is inconsistent. +func (a *Alert) Validate() error { + if a.StartsAt.IsZero() { + return fmt.Errorf("start time missing") + } + if !a.EndsAt.IsZero() && a.EndsAt.Before(a.StartsAt) { + return fmt.Errorf("start time must be before end time") + } + if err := a.Labels.Validate(); err != nil { + return fmt.Errorf("invalid label set: %s", err) + } + if len(a.Labels) == 0 { + return fmt.Errorf("at least one label pair required") + } + if err := a.Annotations.Validate(); err != nil { + return fmt.Errorf("invalid annotations: %s", err) + } + return nil +} + +// Alert is a list of alerts that can be sorted in chronological order. +type Alerts []*Alert + +func (as Alerts) Len() int { return len(as) } +func (as Alerts) Swap(i, j int) { as[i], as[j] = as[j], as[i] } + +func (as Alerts) Less(i, j int) bool { + if as[i].StartsAt.Before(as[j].StartsAt) { + return true + } + if as[i].EndsAt.Before(as[j].EndsAt) { + return true + } + return as[i].Fingerprint() < as[j].Fingerprint() +} + +// HasFiring returns true iff one of the alerts is not resolved. +func (as Alerts) HasFiring() bool { + for _, a := range as { + if !a.Resolved() { + return true + } + } + return false +} + +// Status returns StatusFiring iff at least one of the alerts is firing. +func (as Alerts) Status() AlertStatus { + if as.HasFiring() { + return AlertFiring + } + return AlertResolved +} diff --git a/vendor/github.com/prometheus/common/model/fingerprinting.go b/vendor/github.com/prometheus/common/model/fingerprinting.go new file mode 100644 index 000000000..fc4de4106 --- /dev/null +++ b/vendor/github.com/prometheus/common/model/fingerprinting.go @@ -0,0 +1,105 @@ +// Copyright 2013 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package model + +import ( + "fmt" + "strconv" +) + +// Fingerprint provides a hash-capable representation of a Metric. +// For our purposes, FNV-1A 64-bit is used. +type Fingerprint uint64 + +// FingerprintFromString transforms a string representation into a Fingerprint. +func FingerprintFromString(s string) (Fingerprint, error) { + num, err := strconv.ParseUint(s, 16, 64) + return Fingerprint(num), err +} + +// ParseFingerprint parses the input string into a fingerprint. +func ParseFingerprint(s string) (Fingerprint, error) { + num, err := strconv.ParseUint(s, 16, 64) + if err != nil { + return 0, err + } + return Fingerprint(num), nil +} + +func (f Fingerprint) String() string { + return fmt.Sprintf("%016x", uint64(f)) +} + +// Fingerprints represents a collection of Fingerprint subject to a given +// natural sorting scheme. It implements sort.Interface. +type Fingerprints []Fingerprint + +// Len implements sort.Interface. +func (f Fingerprints) Len() int { + return len(f) +} + +// Less implements sort.Interface. +func (f Fingerprints) Less(i, j int) bool { + return f[i] < f[j] +} + +// Swap implements sort.Interface. +func (f Fingerprints) Swap(i, j int) { + f[i], f[j] = f[j], f[i] +} + +// FingerprintSet is a set of Fingerprints. +type FingerprintSet map[Fingerprint]struct{} + +// Equal returns true if both sets contain the same elements (and not more). +func (s FingerprintSet) Equal(o FingerprintSet) bool { + if len(s) != len(o) { + return false + } + + for k := range s { + if _, ok := o[k]; !ok { + return false + } + } + + return true +} + +// Intersection returns the elements contained in both sets. +func (s FingerprintSet) Intersection(o FingerprintSet) FingerprintSet { + myLength, otherLength := len(s), len(o) + if myLength == 0 || otherLength == 0 { + return FingerprintSet{} + } + + subSet := s + superSet := o + + if otherLength < myLength { + subSet = o + superSet = s + } + + out := FingerprintSet{} + + for k := range subSet { + if _, ok := superSet[k]; ok { + out[k] = struct{}{} + } + } + + return out +} diff --git a/vendor/github.com/prometheus/common/model/fnv.go b/vendor/github.com/prometheus/common/model/fnv.go new file mode 100644 index 000000000..038fc1c90 --- /dev/null +++ b/vendor/github.com/prometheus/common/model/fnv.go @@ -0,0 +1,42 @@ +// Copyright 2015 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package model + +// Inline and byte-free variant of hash/fnv's fnv64a. + +const ( + offset64 = 14695981039346656037 + prime64 = 1099511628211 +) + +// hashNew initializies a new fnv64a hash value. +func hashNew() uint64 { + return offset64 +} + +// hashAdd adds a string to a fnv64a hash value, returning the updated hash. +func hashAdd(h uint64, s string) uint64 { + for i := 0; i < len(s); i++ { + h ^= uint64(s[i]) + h *= prime64 + } + return h +} + +// hashAddByte adds a byte to a fnv64a hash value, returning the updated hash. +func hashAddByte(h uint64, b byte) uint64 { + h ^= uint64(b) + h *= prime64 + return h +} diff --git a/vendor/github.com/prometheus/common/model/labels.go b/vendor/github.com/prometheus/common/model/labels.go new file mode 100644 index 000000000..41051a01a --- /dev/null +++ b/vendor/github.com/prometheus/common/model/labels.go @@ -0,0 +1,210 @@ +// Copyright 2013 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package model + +import ( + "encoding/json" + "fmt" + "regexp" + "strings" + "unicode/utf8" +) + +const ( + // AlertNameLabel is the name of the label containing the an alert's name. + AlertNameLabel = "alertname" + + // ExportedLabelPrefix is the prefix to prepend to the label names present in + // exported metrics if a label of the same name is added by the server. + ExportedLabelPrefix = "exported_" + + // MetricNameLabel is the label name indicating the metric name of a + // timeseries. + MetricNameLabel = "__name__" + + // SchemeLabel is the name of the label that holds the scheme on which to + // scrape a target. + SchemeLabel = "__scheme__" + + // AddressLabel is the name of the label that holds the address of + // a scrape target. + AddressLabel = "__address__" + + // MetricsPathLabel is the name of the label that holds the path on which to + // scrape a target. + MetricsPathLabel = "__metrics_path__" + + // ReservedLabelPrefix is a prefix which is not legal in user-supplied + // label names. + ReservedLabelPrefix = "__" + + // MetaLabelPrefix is a prefix for labels that provide meta information. + // Labels with this prefix are used for intermediate label processing and + // will not be attached to time series. + MetaLabelPrefix = "__meta_" + + // TmpLabelPrefix is a prefix for temporary labels as part of relabelling. + // Labels with this prefix are used for intermediate label processing and + // will not be attached to time series. This is reserved for use in + // Prometheus configuration files by users. + TmpLabelPrefix = "__tmp_" + + // ParamLabelPrefix is a prefix for labels that provide URL parameters + // used to scrape a target. + ParamLabelPrefix = "__param_" + + // JobLabel is the label name indicating the job from which a timeseries + // was scraped. + JobLabel = "job" + + // InstanceLabel is the label name used for the instance label. + InstanceLabel = "instance" + + // BucketLabel is used for the label that defines the upper bound of a + // bucket of a histogram ("le" -> "less or equal"). + BucketLabel = "le" + + // QuantileLabel is used for the label that defines the quantile in a + // summary. + QuantileLabel = "quantile" +) + +// LabelNameRE is a regular expression matching valid label names. Note that the +// IsValid method of LabelName performs the same check but faster than a match +// with this regular expression. +var LabelNameRE = regexp.MustCompile("^[a-zA-Z_][a-zA-Z0-9_]*$") + +// A LabelName is a key for a LabelSet or Metric. It has a value associated +// therewith. +type LabelName string + +// IsValid is true iff the label name matches the pattern of LabelNameRE. This +// method, however, does not use LabelNameRE for the check but a much faster +// hardcoded implementation. +func (ln LabelName) IsValid() bool { + if len(ln) == 0 { + return false + } + for i, b := range ln { + if !((b >= 'a' && b <= 'z') || (b >= 'A' && b <= 'Z') || b == '_' || (b >= '0' && b <= '9' && i > 0)) { + return false + } + } + return true +} + +// UnmarshalYAML implements the yaml.Unmarshaler interface. +func (ln *LabelName) UnmarshalYAML(unmarshal func(interface{}) error) error { + var s string + if err := unmarshal(&s); err != nil { + return err + } + if !LabelName(s).IsValid() { + return fmt.Errorf("%q is not a valid label name", s) + } + *ln = LabelName(s) + return nil +} + +// UnmarshalJSON implements the json.Unmarshaler interface. +func (ln *LabelName) UnmarshalJSON(b []byte) error { + var s string + if err := json.Unmarshal(b, &s); err != nil { + return err + } + if !LabelName(s).IsValid() { + return fmt.Errorf("%q is not a valid label name", s) + } + *ln = LabelName(s) + return nil +} + +// LabelNames is a sortable LabelName slice. In implements sort.Interface. +type LabelNames []LabelName + +func (l LabelNames) Len() int { + return len(l) +} + +func (l LabelNames) Less(i, j int) bool { + return l[i] < l[j] +} + +func (l LabelNames) Swap(i, j int) { + l[i], l[j] = l[j], l[i] +} + +func (l LabelNames) String() string { + labelStrings := make([]string, 0, len(l)) + for _, label := range l { + labelStrings = append(labelStrings, string(label)) + } + return strings.Join(labelStrings, ", ") +} + +// A LabelValue is an associated value for a LabelName. +type LabelValue string + +// IsValid returns true iff the string is a valid UTF8. +func (lv LabelValue) IsValid() bool { + return utf8.ValidString(string(lv)) +} + +// LabelValues is a sortable LabelValue slice. It implements sort.Interface. +type LabelValues []LabelValue + +func (l LabelValues) Len() int { + return len(l) +} + +func (l LabelValues) Less(i, j int) bool { + return string(l[i]) < string(l[j]) +} + +func (l LabelValues) Swap(i, j int) { + l[i], l[j] = l[j], l[i] +} + +// LabelPair pairs a name with a value. +type LabelPair struct { + Name LabelName + Value LabelValue +} + +// LabelPairs is a sortable slice of LabelPair pointers. It implements +// sort.Interface. +type LabelPairs []*LabelPair + +func (l LabelPairs) Len() int { + return len(l) +} + +func (l LabelPairs) Less(i, j int) bool { + switch { + case l[i].Name > l[j].Name: + return false + case l[i].Name < l[j].Name: + return true + case l[i].Value > l[j].Value: + return false + case l[i].Value < l[j].Value: + return true + default: + return false + } +} + +func (l LabelPairs) Swap(i, j int) { + l[i], l[j] = l[j], l[i] +} diff --git a/vendor/github.com/prometheus/common/model/labelset.go b/vendor/github.com/prometheus/common/model/labelset.go new file mode 100644 index 000000000..6eda08a73 --- /dev/null +++ b/vendor/github.com/prometheus/common/model/labelset.go @@ -0,0 +1,169 @@ +// Copyright 2013 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package model + +import ( + "encoding/json" + "fmt" + "sort" + "strings" +) + +// A LabelSet is a collection of LabelName and LabelValue pairs. The LabelSet +// may be fully-qualified down to the point where it may resolve to a single +// Metric in the data store or not. All operations that occur within the realm +// of a LabelSet can emit a vector of Metric entities to which the LabelSet may +// match. +type LabelSet map[LabelName]LabelValue + +// Validate checks whether all names and values in the label set +// are valid. +func (ls LabelSet) Validate() error { + for ln, lv := range ls { + if !ln.IsValid() { + return fmt.Errorf("invalid name %q", ln) + } + if !lv.IsValid() { + return fmt.Errorf("invalid value %q", lv) + } + } + return nil +} + +// Equal returns true iff both label sets have exactly the same key/value pairs. +func (ls LabelSet) Equal(o LabelSet) bool { + if len(ls) != len(o) { + return false + } + for ln, lv := range ls { + olv, ok := o[ln] + if !ok { + return false + } + if olv != lv { + return false + } + } + return true +} + +// Before compares the metrics, using the following criteria: +// +// If m has fewer labels than o, it is before o. If it has more, it is not. +// +// If the number of labels is the same, the superset of all label names is +// sorted alphanumerically. The first differing label pair found in that order +// determines the outcome: If the label does not exist at all in m, then m is +// before o, and vice versa. Otherwise the label value is compared +// alphanumerically. +// +// If m and o are equal, the method returns false. +func (ls LabelSet) Before(o LabelSet) bool { + if len(ls) < len(o) { + return true + } + if len(ls) > len(o) { + return false + } + + lns := make(LabelNames, 0, len(ls)+len(o)) + for ln := range ls { + lns = append(lns, ln) + } + for ln := range o { + lns = append(lns, ln) + } + // It's probably not worth it to de-dup lns. + sort.Sort(lns) + for _, ln := range lns { + mlv, ok := ls[ln] + if !ok { + return true + } + olv, ok := o[ln] + if !ok { + return false + } + if mlv < olv { + return true + } + if mlv > olv { + return false + } + } + return false +} + +// Clone returns a copy of the label set. +func (ls LabelSet) Clone() LabelSet { + lsn := make(LabelSet, len(ls)) + for ln, lv := range ls { + lsn[ln] = lv + } + return lsn +} + +// Merge is a helper function to non-destructively merge two label sets. +func (l LabelSet) Merge(other LabelSet) LabelSet { + result := make(LabelSet, len(l)) + + for k, v := range l { + result[k] = v + } + + for k, v := range other { + result[k] = v + } + + return result +} + +func (l LabelSet) String() string { + lstrs := make([]string, 0, len(l)) + for l, v := range l { + lstrs = append(lstrs, fmt.Sprintf("%s=%q", l, v)) + } + + sort.Strings(lstrs) + return fmt.Sprintf("{%s}", strings.Join(lstrs, ", ")) +} + +// Fingerprint returns the LabelSet's fingerprint. +func (ls LabelSet) Fingerprint() Fingerprint { + return labelSetToFingerprint(ls) +} + +// FastFingerprint returns the LabelSet's Fingerprint calculated by a faster hashing +// algorithm, which is, however, more susceptible to hash collisions. +func (ls LabelSet) FastFingerprint() Fingerprint { + return labelSetToFastFingerprint(ls) +} + +// UnmarshalJSON implements the json.Unmarshaler interface. +func (l *LabelSet) UnmarshalJSON(b []byte) error { + var m map[LabelName]LabelValue + if err := json.Unmarshal(b, &m); err != nil { + return err + } + // encoding/json only unmarshals maps of the form map[string]T. It treats + // LabelName as a string and does not call its UnmarshalJSON method. + // Thus, we have to replicate the behavior here. + for ln := range m { + if !ln.IsValid() { + return fmt.Errorf("%q is not a valid label name", ln) + } + } + *l = LabelSet(m) + return nil +} diff --git a/vendor/github.com/prometheus/common/model/metric.go b/vendor/github.com/prometheus/common/model/metric.go new file mode 100644 index 000000000..f7250909b --- /dev/null +++ b/vendor/github.com/prometheus/common/model/metric.go @@ -0,0 +1,103 @@ +// Copyright 2013 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package model + +import ( + "fmt" + "regexp" + "sort" + "strings" +) + +var ( + separator = []byte{0} + // MetricNameRE is a regular expression matching valid metric + // names. Note that the IsValidMetricName function performs the same + // check but faster than a match with this regular expression. + MetricNameRE = regexp.MustCompile(`^[a-zA-Z_:][a-zA-Z0-9_:]*$`) +) + +// A Metric is similar to a LabelSet, but the key difference is that a Metric is +// a singleton and refers to one and only one stream of samples. +type Metric LabelSet + +// Equal compares the metrics. +func (m Metric) Equal(o Metric) bool { + return LabelSet(m).Equal(LabelSet(o)) +} + +// Before compares the metrics' underlying label sets. +func (m Metric) Before(o Metric) bool { + return LabelSet(m).Before(LabelSet(o)) +} + +// Clone returns a copy of the Metric. +func (m Metric) Clone() Metric { + clone := make(Metric, len(m)) + for k, v := range m { + clone[k] = v + } + return clone +} + +func (m Metric) String() string { + metricName, hasName := m[MetricNameLabel] + numLabels := len(m) - 1 + if !hasName { + numLabels = len(m) + } + labelStrings := make([]string, 0, numLabels) + for label, value := range m { + if label != MetricNameLabel { + labelStrings = append(labelStrings, fmt.Sprintf("%s=%q", label, value)) + } + } + + switch numLabels { + case 0: + if hasName { + return string(metricName) + } + return "{}" + default: + sort.Strings(labelStrings) + return fmt.Sprintf("%s{%s}", metricName, strings.Join(labelStrings, ", ")) + } +} + +// Fingerprint returns a Metric's Fingerprint. +func (m Metric) Fingerprint() Fingerprint { + return LabelSet(m).Fingerprint() +} + +// FastFingerprint returns a Metric's Fingerprint calculated by a faster hashing +// algorithm, which is, however, more susceptible to hash collisions. +func (m Metric) FastFingerprint() Fingerprint { + return LabelSet(m).FastFingerprint() +} + +// IsValidMetricName returns true iff name matches the pattern of MetricNameRE. +// This function, however, does not use MetricNameRE for the check but a much +// faster hardcoded implementation. +func IsValidMetricName(n LabelValue) bool { + if len(n) == 0 { + return false + } + for i, b := range n { + if !((b >= 'a' && b <= 'z') || (b >= 'A' && b <= 'Z') || b == '_' || b == ':' || (b >= '0' && b <= '9' && i > 0)) { + return false + } + } + return true +} diff --git a/vendor/github.com/prometheus/common/model/model.go b/vendor/github.com/prometheus/common/model/model.go new file mode 100644 index 000000000..a7b969170 --- /dev/null +++ b/vendor/github.com/prometheus/common/model/model.go @@ -0,0 +1,16 @@ +// Copyright 2013 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package model contains common data structures that are shared across +// Prometheus components and libraries. +package model diff --git a/vendor/github.com/prometheus/common/model/signature.go b/vendor/github.com/prometheus/common/model/signature.go new file mode 100644 index 000000000..8762b13c6 --- /dev/null +++ b/vendor/github.com/prometheus/common/model/signature.go @@ -0,0 +1,144 @@ +// Copyright 2014 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package model + +import ( + "sort" +) + +// SeparatorByte is a byte that cannot occur in valid UTF-8 sequences and is +// used to separate label names, label values, and other strings from each other +// when calculating their combined hash value (aka signature aka fingerprint). +const SeparatorByte byte = 255 + +var ( + // cache the signature of an empty label set. + emptyLabelSignature = hashNew() +) + +// LabelsToSignature returns a quasi-unique signature (i.e., fingerprint) for a +// given label set. (Collisions are possible but unlikely if the number of label +// sets the function is applied to is small.) +func LabelsToSignature(labels map[string]string) uint64 { + if len(labels) == 0 { + return emptyLabelSignature + } + + labelNames := make([]string, 0, len(labels)) + for labelName := range labels { + labelNames = append(labelNames, labelName) + } + sort.Strings(labelNames) + + sum := hashNew() + for _, labelName := range labelNames { + sum = hashAdd(sum, labelName) + sum = hashAddByte(sum, SeparatorByte) + sum = hashAdd(sum, labels[labelName]) + sum = hashAddByte(sum, SeparatorByte) + } + return sum +} + +// labelSetToFingerprint works exactly as LabelsToSignature but takes a LabelSet as +// parameter (rather than a label map) and returns a Fingerprint. +func labelSetToFingerprint(ls LabelSet) Fingerprint { + if len(ls) == 0 { + return Fingerprint(emptyLabelSignature) + } + + labelNames := make(LabelNames, 0, len(ls)) + for labelName := range ls { + labelNames = append(labelNames, labelName) + } + sort.Sort(labelNames) + + sum := hashNew() + for _, labelName := range labelNames { + sum = hashAdd(sum, string(labelName)) + sum = hashAddByte(sum, SeparatorByte) + sum = hashAdd(sum, string(ls[labelName])) + sum = hashAddByte(sum, SeparatorByte) + } + return Fingerprint(sum) +} + +// labelSetToFastFingerprint works similar to labelSetToFingerprint but uses a +// faster and less allocation-heavy hash function, which is more susceptible to +// create hash collisions. Therefore, collision detection should be applied. +func labelSetToFastFingerprint(ls LabelSet) Fingerprint { + if len(ls) == 0 { + return Fingerprint(emptyLabelSignature) + } + + var result uint64 + for labelName, labelValue := range ls { + sum := hashNew() + sum = hashAdd(sum, string(labelName)) + sum = hashAddByte(sum, SeparatorByte) + sum = hashAdd(sum, string(labelValue)) + result ^= sum + } + return Fingerprint(result) +} + +// SignatureForLabels works like LabelsToSignature but takes a Metric as +// parameter (rather than a label map) and only includes the labels with the +// specified LabelNames into the signature calculation. The labels passed in +// will be sorted by this function. +func SignatureForLabels(m Metric, labels ...LabelName) uint64 { + if len(labels) == 0 { + return emptyLabelSignature + } + + sort.Sort(LabelNames(labels)) + + sum := hashNew() + for _, label := range labels { + sum = hashAdd(sum, string(label)) + sum = hashAddByte(sum, SeparatorByte) + sum = hashAdd(sum, string(m[label])) + sum = hashAddByte(sum, SeparatorByte) + } + return sum +} + +// SignatureWithoutLabels works like LabelsToSignature but takes a Metric as +// parameter (rather than a label map) and excludes the labels with any of the +// specified LabelNames from the signature calculation. +func SignatureWithoutLabels(m Metric, labels map[LabelName]struct{}) uint64 { + if len(m) == 0 { + return emptyLabelSignature + } + + labelNames := make(LabelNames, 0, len(m)) + for labelName := range m { + if _, exclude := labels[labelName]; !exclude { + labelNames = append(labelNames, labelName) + } + } + if len(labelNames) == 0 { + return emptyLabelSignature + } + sort.Sort(labelNames) + + sum := hashNew() + for _, labelName := range labelNames { + sum = hashAdd(sum, string(labelName)) + sum = hashAddByte(sum, SeparatorByte) + sum = hashAdd(sum, string(m[labelName])) + sum = hashAddByte(sum, SeparatorByte) + } + return sum +} diff --git a/vendor/github.com/prometheus/common/model/silence.go b/vendor/github.com/prometheus/common/model/silence.go new file mode 100644 index 000000000..7538e2997 --- /dev/null +++ b/vendor/github.com/prometheus/common/model/silence.go @@ -0,0 +1,106 @@ +// Copyright 2015 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package model + +import ( + "encoding/json" + "fmt" + "regexp" + "time" +) + +// Matcher describes a matches the value of a given label. +type Matcher struct { + Name LabelName `json:"name"` + Value string `json:"value"` + IsRegex bool `json:"isRegex"` +} + +func (m *Matcher) UnmarshalJSON(b []byte) error { + type plain Matcher + if err := json.Unmarshal(b, (*plain)(m)); err != nil { + return err + } + + if len(m.Name) == 0 { + return fmt.Errorf("label name in matcher must not be empty") + } + if m.IsRegex { + if _, err := regexp.Compile(m.Value); err != nil { + return err + } + } + return nil +} + +// Validate returns true iff all fields of the matcher have valid values. +func (m *Matcher) Validate() error { + if !m.Name.IsValid() { + return fmt.Errorf("invalid name %q", m.Name) + } + if m.IsRegex { + if _, err := regexp.Compile(m.Value); err != nil { + return fmt.Errorf("invalid regular expression %q", m.Value) + } + } else if !LabelValue(m.Value).IsValid() || len(m.Value) == 0 { + return fmt.Errorf("invalid value %q", m.Value) + } + return nil +} + +// Silence defines the representation of a silence definiton +// in the Prometheus eco-system. +type Silence struct { + ID uint64 `json:"id,omitempty"` + + Matchers []*Matcher `json:"matchers"` + + StartsAt time.Time `json:"startsAt"` + EndsAt time.Time `json:"endsAt"` + + CreatedAt time.Time `json:"createdAt,omitempty"` + CreatedBy string `json:"createdBy"` + Comment string `json:"comment,omitempty"` +} + +// Validate returns true iff all fields of the silence have valid values. +func (s *Silence) Validate() error { + if len(s.Matchers) == 0 { + return fmt.Errorf("at least one matcher required") + } + for _, m := range s.Matchers { + if err := m.Validate(); err != nil { + return fmt.Errorf("invalid matcher: %s", err) + } + } + if s.StartsAt.IsZero() { + return fmt.Errorf("start time missing") + } + if s.EndsAt.IsZero() { + return fmt.Errorf("end time missing") + } + if s.EndsAt.Before(s.StartsAt) { + return fmt.Errorf("start time must be before end time") + } + if s.CreatedBy == "" { + return fmt.Errorf("creator information missing") + } + if s.Comment == "" { + return fmt.Errorf("comment missing") + } + if s.CreatedAt.IsZero() { + return fmt.Errorf("creation timestamp missing") + } + return nil +} diff --git a/vendor/github.com/prometheus/common/model/time.go b/vendor/github.com/prometheus/common/model/time.go new file mode 100644 index 000000000..74ed5a9f7 --- /dev/null +++ b/vendor/github.com/prometheus/common/model/time.go @@ -0,0 +1,264 @@ +// Copyright 2013 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package model + +import ( + "fmt" + "math" + "regexp" + "strconv" + "strings" + "time" +) + +const ( + // MinimumTick is the minimum supported time resolution. This has to be + // at least time.Second in order for the code below to work. + minimumTick = time.Millisecond + // second is the Time duration equivalent to one second. + second = int64(time.Second / minimumTick) + // The number of nanoseconds per minimum tick. + nanosPerTick = int64(minimumTick / time.Nanosecond) + + // Earliest is the earliest Time representable. Handy for + // initializing a high watermark. + Earliest = Time(math.MinInt64) + // Latest is the latest Time representable. Handy for initializing + // a low watermark. + Latest = Time(math.MaxInt64) +) + +// Time is the number of milliseconds since the epoch +// (1970-01-01 00:00 UTC) excluding leap seconds. +type Time int64 + +// Interval describes and interval between two timestamps. +type Interval struct { + Start, End Time +} + +// Now returns the current time as a Time. +func Now() Time { + return TimeFromUnixNano(time.Now().UnixNano()) +} + +// TimeFromUnix returns the Time equivalent to the Unix Time t +// provided in seconds. +func TimeFromUnix(t int64) Time { + return Time(t * second) +} + +// TimeFromUnixNano returns the Time equivalent to the Unix Time +// t provided in nanoseconds. +func TimeFromUnixNano(t int64) Time { + return Time(t / nanosPerTick) +} + +// Equal reports whether two Times represent the same instant. +func (t Time) Equal(o Time) bool { + return t == o +} + +// Before reports whether the Time t is before o. +func (t Time) Before(o Time) bool { + return t < o +} + +// After reports whether the Time t is after o. +func (t Time) After(o Time) bool { + return t > o +} + +// Add returns the Time t + d. +func (t Time) Add(d time.Duration) Time { + return t + Time(d/minimumTick) +} + +// Sub returns the Duration t - o. +func (t Time) Sub(o Time) time.Duration { + return time.Duration(t-o) * minimumTick +} + +// Time returns the time.Time representation of t. +func (t Time) Time() time.Time { + return time.Unix(int64(t)/second, (int64(t)%second)*nanosPerTick) +} + +// Unix returns t as a Unix time, the number of seconds elapsed +// since January 1, 1970 UTC. +func (t Time) Unix() int64 { + return int64(t) / second +} + +// UnixNano returns t as a Unix time, the number of nanoseconds elapsed +// since January 1, 1970 UTC. +func (t Time) UnixNano() int64 { + return int64(t) * nanosPerTick +} + +// The number of digits after the dot. +var dotPrecision = int(math.Log10(float64(second))) + +// String returns a string representation of the Time. +func (t Time) String() string { + return strconv.FormatFloat(float64(t)/float64(second), 'f', -1, 64) +} + +// MarshalJSON implements the json.Marshaler interface. +func (t Time) MarshalJSON() ([]byte, error) { + return []byte(t.String()), nil +} + +// UnmarshalJSON implements the json.Unmarshaler interface. +func (t *Time) UnmarshalJSON(b []byte) error { + p := strings.Split(string(b), ".") + switch len(p) { + case 1: + v, err := strconv.ParseInt(string(p[0]), 10, 64) + if err != nil { + return err + } + *t = Time(v * second) + + case 2: + v, err := strconv.ParseInt(string(p[0]), 10, 64) + if err != nil { + return err + } + v *= second + + prec := dotPrecision - len(p[1]) + if prec < 0 { + p[1] = p[1][:dotPrecision] + } else if prec > 0 { + p[1] = p[1] + strings.Repeat("0", prec) + } + + va, err := strconv.ParseInt(p[1], 10, 32) + if err != nil { + return err + } + + *t = Time(v + va) + + default: + return fmt.Errorf("invalid time %q", string(b)) + } + return nil +} + +// Duration wraps time.Duration. It is used to parse the custom duration format +// from YAML. +// This type should not propagate beyond the scope of input/output processing. +type Duration time.Duration + +// Set implements pflag/flag.Value +func (d *Duration) Set(s string) error { + var err error + *d, err = ParseDuration(s) + return err +} + +// Type implements pflag.Value +func (d *Duration) Type() string { + return "duration" +} + +var durationRE = regexp.MustCompile("^([0-9]+)(y|w|d|h|m|s|ms)$") + +// ParseDuration parses a string into a time.Duration, assuming that a year +// always has 365d, a week always has 7d, and a day always has 24h. +func ParseDuration(durationStr string) (Duration, error) { + matches := durationRE.FindStringSubmatch(durationStr) + if len(matches) != 3 { + return 0, fmt.Errorf("not a valid duration string: %q", durationStr) + } + var ( + n, _ = strconv.Atoi(matches[1]) + dur = time.Duration(n) * time.Millisecond + ) + switch unit := matches[2]; unit { + case "y": + dur *= 1000 * 60 * 60 * 24 * 365 + case "w": + dur *= 1000 * 60 * 60 * 24 * 7 + case "d": + dur *= 1000 * 60 * 60 * 24 + case "h": + dur *= 1000 * 60 * 60 + case "m": + dur *= 1000 * 60 + case "s": + dur *= 1000 + case "ms": + // Value already correct + default: + return 0, fmt.Errorf("invalid time unit in duration string: %q", unit) + } + return Duration(dur), nil +} + +func (d Duration) String() string { + var ( + ms = int64(time.Duration(d) / time.Millisecond) + unit = "ms" + ) + if ms == 0 { + return "0s" + } + factors := map[string]int64{ + "y": 1000 * 60 * 60 * 24 * 365, + "w": 1000 * 60 * 60 * 24 * 7, + "d": 1000 * 60 * 60 * 24, + "h": 1000 * 60 * 60, + "m": 1000 * 60, + "s": 1000, + "ms": 1, + } + + switch int64(0) { + case ms % factors["y"]: + unit = "y" + case ms % factors["w"]: + unit = "w" + case ms % factors["d"]: + unit = "d" + case ms % factors["h"]: + unit = "h" + case ms % factors["m"]: + unit = "m" + case ms % factors["s"]: + unit = "s" + } + return fmt.Sprintf("%v%v", ms/factors[unit], unit) +} + +// MarshalYAML implements the yaml.Marshaler interface. +func (d Duration) MarshalYAML() (interface{}, error) { + return d.String(), nil +} + +// UnmarshalYAML implements the yaml.Unmarshaler interface. +func (d *Duration) UnmarshalYAML(unmarshal func(interface{}) error) error { + var s string + if err := unmarshal(&s); err != nil { + return err + } + dur, err := ParseDuration(s) + if err != nil { + return err + } + *d = dur + return nil +} diff --git a/vendor/github.com/prometheus/common/model/value.go b/vendor/github.com/prometheus/common/model/value.go new file mode 100644 index 000000000..c9ed3ffd8 --- /dev/null +++ b/vendor/github.com/prometheus/common/model/value.go @@ -0,0 +1,416 @@ +// Copyright 2013 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package model + +import ( + "encoding/json" + "fmt" + "math" + "sort" + "strconv" + "strings" +) + +var ( + // ZeroSamplePair is the pseudo zero-value of SamplePair used to signal a + // non-existing sample pair. It is a SamplePair with timestamp Earliest and + // value 0.0. Note that the natural zero value of SamplePair has a timestamp + // of 0, which is possible to appear in a real SamplePair and thus not + // suitable to signal a non-existing SamplePair. + ZeroSamplePair = SamplePair{Timestamp: Earliest} + + // ZeroSample is the pseudo zero-value of Sample used to signal a + // non-existing sample. It is a Sample with timestamp Earliest, value 0.0, + // and metric nil. Note that the natural zero value of Sample has a timestamp + // of 0, which is possible to appear in a real Sample and thus not suitable + // to signal a non-existing Sample. + ZeroSample = Sample{Timestamp: Earliest} +) + +// A SampleValue is a representation of a value for a given sample at a given +// time. +type SampleValue float64 + +// MarshalJSON implements json.Marshaler. +func (v SampleValue) MarshalJSON() ([]byte, error) { + return json.Marshal(v.String()) +} + +// UnmarshalJSON implements json.Unmarshaler. +func (v *SampleValue) UnmarshalJSON(b []byte) error { + if len(b) < 2 || b[0] != '"' || b[len(b)-1] != '"' { + return fmt.Errorf("sample value must be a quoted string") + } + f, err := strconv.ParseFloat(string(b[1:len(b)-1]), 64) + if err != nil { + return err + } + *v = SampleValue(f) + return nil +} + +// Equal returns true if the value of v and o is equal or if both are NaN. Note +// that v==o is false if both are NaN. If you want the conventional float +// behavior, use == to compare two SampleValues. +func (v SampleValue) Equal(o SampleValue) bool { + if v == o { + return true + } + return math.IsNaN(float64(v)) && math.IsNaN(float64(o)) +} + +func (v SampleValue) String() string { + return strconv.FormatFloat(float64(v), 'f', -1, 64) +} + +// SamplePair pairs a SampleValue with a Timestamp. +type SamplePair struct { + Timestamp Time + Value SampleValue +} + +// MarshalJSON implements json.Marshaler. +func (s SamplePair) MarshalJSON() ([]byte, error) { + t, err := json.Marshal(s.Timestamp) + if err != nil { + return nil, err + } + v, err := json.Marshal(s.Value) + if err != nil { + return nil, err + } + return []byte(fmt.Sprintf("[%s,%s]", t, v)), nil +} + +// UnmarshalJSON implements json.Unmarshaler. +func (s *SamplePair) UnmarshalJSON(b []byte) error { + v := [...]json.Unmarshaler{&s.Timestamp, &s.Value} + return json.Unmarshal(b, &v) +} + +// Equal returns true if this SamplePair and o have equal Values and equal +// Timestamps. The sematics of Value equality is defined by SampleValue.Equal. +func (s *SamplePair) Equal(o *SamplePair) bool { + return s == o || (s.Value.Equal(o.Value) && s.Timestamp.Equal(o.Timestamp)) +} + +func (s SamplePair) String() string { + return fmt.Sprintf("%s @[%s]", s.Value, s.Timestamp) +} + +// Sample is a sample pair associated with a metric. +type Sample struct { + Metric Metric `json:"metric"` + Value SampleValue `json:"value"` + Timestamp Time `json:"timestamp"` +} + +// Equal compares first the metrics, then the timestamp, then the value. The +// sematics of value equality is defined by SampleValue.Equal. +func (s *Sample) Equal(o *Sample) bool { + if s == o { + return true + } + + if !s.Metric.Equal(o.Metric) { + return false + } + if !s.Timestamp.Equal(o.Timestamp) { + return false + } + + return s.Value.Equal(o.Value) +} + +func (s Sample) String() string { + return fmt.Sprintf("%s => %s", s.Metric, SamplePair{ + Timestamp: s.Timestamp, + Value: s.Value, + }) +} + +// MarshalJSON implements json.Marshaler. +func (s Sample) MarshalJSON() ([]byte, error) { + v := struct { + Metric Metric `json:"metric"` + Value SamplePair `json:"value"` + }{ + Metric: s.Metric, + Value: SamplePair{ + Timestamp: s.Timestamp, + Value: s.Value, + }, + } + + return json.Marshal(&v) +} + +// UnmarshalJSON implements json.Unmarshaler. +func (s *Sample) UnmarshalJSON(b []byte) error { + v := struct { + Metric Metric `json:"metric"` + Value SamplePair `json:"value"` + }{ + Metric: s.Metric, + Value: SamplePair{ + Timestamp: s.Timestamp, + Value: s.Value, + }, + } + + if err := json.Unmarshal(b, &v); err != nil { + return err + } + + s.Metric = v.Metric + s.Timestamp = v.Value.Timestamp + s.Value = v.Value.Value + + return nil +} + +// Samples is a sortable Sample slice. It implements sort.Interface. +type Samples []*Sample + +func (s Samples) Len() int { + return len(s) +} + +// Less compares first the metrics, then the timestamp. +func (s Samples) Less(i, j int) bool { + switch { + case s[i].Metric.Before(s[j].Metric): + return true + case s[j].Metric.Before(s[i].Metric): + return false + case s[i].Timestamp.Before(s[j].Timestamp): + return true + default: + return false + } +} + +func (s Samples) Swap(i, j int) { + s[i], s[j] = s[j], s[i] +} + +// Equal compares two sets of samples and returns true if they are equal. +func (s Samples) Equal(o Samples) bool { + if len(s) != len(o) { + return false + } + + for i, sample := range s { + if !sample.Equal(o[i]) { + return false + } + } + return true +} + +// SampleStream is a stream of Values belonging to an attached COWMetric. +type SampleStream struct { + Metric Metric `json:"metric"` + Values []SamplePair `json:"values"` +} + +func (ss SampleStream) String() string { + vals := make([]string, len(ss.Values)) + for i, v := range ss.Values { + vals[i] = v.String() + } + return fmt.Sprintf("%s =>\n%s", ss.Metric, strings.Join(vals, "\n")) +} + +// Value is a generic interface for values resulting from a query evaluation. +type Value interface { + Type() ValueType + String() string +} + +func (Matrix) Type() ValueType { return ValMatrix } +func (Vector) Type() ValueType { return ValVector } +func (*Scalar) Type() ValueType { return ValScalar } +func (*String) Type() ValueType { return ValString } + +type ValueType int + +const ( + ValNone ValueType = iota + ValScalar + ValVector + ValMatrix + ValString +) + +// MarshalJSON implements json.Marshaler. +func (et ValueType) MarshalJSON() ([]byte, error) { + return json.Marshal(et.String()) +} + +func (et *ValueType) UnmarshalJSON(b []byte) error { + var s string + if err := json.Unmarshal(b, &s); err != nil { + return err + } + switch s { + case "": + *et = ValNone + case "scalar": + *et = ValScalar + case "vector": + *et = ValVector + case "matrix": + *et = ValMatrix + case "string": + *et = ValString + default: + return fmt.Errorf("unknown value type %q", s) + } + return nil +} + +func (e ValueType) String() string { + switch e { + case ValNone: + return "" + case ValScalar: + return "scalar" + case ValVector: + return "vector" + case ValMatrix: + return "matrix" + case ValString: + return "string" + } + panic("ValueType.String: unhandled value type") +} + +// Scalar is a scalar value evaluated at the set timestamp. +type Scalar struct { + Value SampleValue `json:"value"` + Timestamp Time `json:"timestamp"` +} + +func (s Scalar) String() string { + return fmt.Sprintf("scalar: %v @[%v]", s.Value, s.Timestamp) +} + +// MarshalJSON implements json.Marshaler. +func (s Scalar) MarshalJSON() ([]byte, error) { + v := strconv.FormatFloat(float64(s.Value), 'f', -1, 64) + return json.Marshal([...]interface{}{s.Timestamp, string(v)}) +} + +// UnmarshalJSON implements json.Unmarshaler. +func (s *Scalar) UnmarshalJSON(b []byte) error { + var f string + v := [...]interface{}{&s.Timestamp, &f} + + if err := json.Unmarshal(b, &v); err != nil { + return err + } + + value, err := strconv.ParseFloat(f, 64) + if err != nil { + return fmt.Errorf("error parsing sample value: %s", err) + } + s.Value = SampleValue(value) + return nil +} + +// String is a string value evaluated at the set timestamp. +type String struct { + Value string `json:"value"` + Timestamp Time `json:"timestamp"` +} + +func (s *String) String() string { + return s.Value +} + +// MarshalJSON implements json.Marshaler. +func (s String) MarshalJSON() ([]byte, error) { + return json.Marshal([]interface{}{s.Timestamp, s.Value}) +} + +// UnmarshalJSON implements json.Unmarshaler. +func (s *String) UnmarshalJSON(b []byte) error { + v := [...]interface{}{&s.Timestamp, &s.Value} + return json.Unmarshal(b, &v) +} + +// Vector is basically only an alias for Samples, but the +// contract is that in a Vector, all Samples have the same timestamp. +type Vector []*Sample + +func (vec Vector) String() string { + entries := make([]string, len(vec)) + for i, s := range vec { + entries[i] = s.String() + } + return strings.Join(entries, "\n") +} + +func (vec Vector) Len() int { return len(vec) } +func (vec Vector) Swap(i, j int) { vec[i], vec[j] = vec[j], vec[i] } + +// Less compares first the metrics, then the timestamp. +func (vec Vector) Less(i, j int) bool { + switch { + case vec[i].Metric.Before(vec[j].Metric): + return true + case vec[j].Metric.Before(vec[i].Metric): + return false + case vec[i].Timestamp.Before(vec[j].Timestamp): + return true + default: + return false + } +} + +// Equal compares two sets of samples and returns true if they are equal. +func (vec Vector) Equal(o Vector) bool { + if len(vec) != len(o) { + return false + } + + for i, sample := range vec { + if !sample.Equal(o[i]) { + return false + } + } + return true +} + +// Matrix is a list of time series. +type Matrix []*SampleStream + +func (m Matrix) Len() int { return len(m) } +func (m Matrix) Less(i, j int) bool { return m[i].Metric.Before(m[j].Metric) } +func (m Matrix) Swap(i, j int) { m[i], m[j] = m[j], m[i] } + +func (mat Matrix) String() string { + matCp := make(Matrix, len(mat)) + copy(matCp, mat) + sort.Sort(matCp) + + strs := make([]string, len(matCp)) + + for i, ss := range matCp { + strs[i] = ss.String() + } + + return strings.Join(strs, "\n") +} diff --git a/vendor/github.com/prometheus/procfs/CONTRIBUTING.md b/vendor/github.com/prometheus/procfs/CONTRIBUTING.md new file mode 100644 index 000000000..40503edbf --- /dev/null +++ b/vendor/github.com/prometheus/procfs/CONTRIBUTING.md @@ -0,0 +1,18 @@ +# Contributing + +Prometheus uses GitHub to manage reviews of pull requests. + +* If you have a trivial fix or improvement, go ahead and create a pull request, + addressing (with `@...`) the maintainer of this repository (see + [MAINTAINERS.md](MAINTAINERS.md)) in the description of the pull request. + +* If you plan to do something more involved, first discuss your ideas + on our [mailing list](https://groups.google.com/forum/?fromgroups#!forum/prometheus-developers). + This will avoid unnecessary work and surely give you and us a good deal + of inspiration. + +* Relevant coding style guidelines are the [Go Code Review + Comments](https://code.google.com/p/go-wiki/wiki/CodeReviewComments) + and the _Formatting and style_ section of Peter Bourgon's [Go: Best + Practices for Production + Environments](http://peter.bourgon.org/go-in-production/#formatting-and-style). diff --git a/vendor/github.com/prometheus/procfs/LICENSE b/vendor/github.com/prometheus/procfs/LICENSE new file mode 100644 index 000000000..261eeb9e9 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/prometheus/procfs/MAINTAINERS.md b/vendor/github.com/prometheus/procfs/MAINTAINERS.md new file mode 100644 index 000000000..35993c41c --- /dev/null +++ b/vendor/github.com/prometheus/procfs/MAINTAINERS.md @@ -0,0 +1 @@ +* Tobias Schmidt diff --git a/vendor/github.com/prometheus/procfs/Makefile b/vendor/github.com/prometheus/procfs/Makefile new file mode 100644 index 000000000..5c8f72625 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/Makefile @@ -0,0 +1,71 @@ +# Copyright 2018 The Prometheus Authors +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Ensure GOBIN is not set during build so that promu is installed to the correct path +unexport GOBIN + +GO ?= go +GOFMT ?= $(GO)fmt +FIRST_GOPATH := $(firstword $(subst :, ,$(shell $(GO) env GOPATH))) +STATICCHECK := $(FIRST_GOPATH)/bin/staticcheck +pkgs = $(shell $(GO) list ./... | grep -v /vendor/) + +PREFIX ?= $(shell pwd) +BIN_DIR ?= $(shell pwd) + +ifdef DEBUG + bindata_flags = -debug +endif + +STATICCHECK_IGNORE = + +all: format staticcheck build test + +style: + @echo ">> checking code style" + @! $(GOFMT) -d $(shell find . -path ./vendor -prune -o -name '*.go' -print) | grep '^' + +check_license: + @echo ">> checking license header" + @./scripts/check_license.sh + +test: fixtures/.unpacked sysfs/fixtures/.unpacked + @echo ">> running all tests" + @$(GO) test -race $(shell $(GO) list ./... | grep -v /vendor/ | grep -v examples) + +format: + @echo ">> formatting code" + @$(GO) fmt $(pkgs) + +vet: + @echo ">> vetting code" + @$(GO) vet $(pkgs) + +staticcheck: $(STATICCHECK) + @echo ">> running staticcheck" + @$(STATICCHECK) -ignore "$(STATICCHECK_IGNORE)" $(pkgs) + +%/.unpacked: %.ttar + ./ttar -C $(dir $*) -x -f $*.ttar + touch $@ + +$(FIRST_GOPATH)/bin/staticcheck: + @GOOS= GOARCH= $(GO) get -u honnef.co/go/tools/cmd/staticcheck + +.PHONY: all style check_license format test vet staticcheck + +# Declaring the binaries at their default locations as PHONY targets is a hack +# to ensure the latest version is downloaded on every make execution. +# If this is not desired, copy/symlink these binaries to a different path and +# set the respective environment variables. +.PHONY: $(GOPATH)/bin/staticcheck diff --git a/vendor/github.com/prometheus/procfs/NOTICE b/vendor/github.com/prometheus/procfs/NOTICE new file mode 100644 index 000000000..53c5e9aa1 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/NOTICE @@ -0,0 +1,7 @@ +procfs provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. + +Copyright 2014-2015 The Prometheus Authors + +This product includes software developed at +SoundCloud Ltd. (http://soundcloud.com/). diff --git a/vendor/github.com/prometheus/procfs/README.md b/vendor/github.com/prometheus/procfs/README.md new file mode 100644 index 000000000..209549471 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/README.md @@ -0,0 +1,11 @@ +# procfs + +This procfs package provides functions to retrieve system, kernel and process +metrics from the pseudo-filesystem proc. + +*WARNING*: This package is a work in progress. Its API may still break in +backwards-incompatible ways without warnings. Use it at your own risk. + +[![GoDoc](https://godoc.org/github.com/prometheus/procfs?status.png)](https://godoc.org/github.com/prometheus/procfs) +[![Build Status](https://travis-ci.org/prometheus/procfs.svg?branch=master)](https://travis-ci.org/prometheus/procfs) +[![Go Report Card](https://goreportcard.com/badge/github.com/prometheus/procfs)](https://goreportcard.com/report/github.com/prometheus/procfs) diff --git a/vendor/github.com/prometheus/procfs/buddyinfo.go b/vendor/github.com/prometheus/procfs/buddyinfo.go new file mode 100644 index 000000000..d3a826807 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/buddyinfo.go @@ -0,0 +1,95 @@ +// Copyright 2017 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "bufio" + "fmt" + "io" + "os" + "strconv" + "strings" +) + +// A BuddyInfo is the details parsed from /proc/buddyinfo. +// The data is comprised of an array of free fragments of each size. +// The sizes are 2^n*PAGE_SIZE, where n is the array index. +type BuddyInfo struct { + Node string + Zone string + Sizes []float64 +} + +// NewBuddyInfo reads the buddyinfo statistics. +func NewBuddyInfo() ([]BuddyInfo, error) { + fs, err := NewFS(DefaultMountPoint) + if err != nil { + return nil, err + } + + return fs.NewBuddyInfo() +} + +// NewBuddyInfo reads the buddyinfo statistics from the specified `proc` filesystem. +func (fs FS) NewBuddyInfo() ([]BuddyInfo, error) { + file, err := os.Open(fs.Path("buddyinfo")) + if err != nil { + return nil, err + } + defer file.Close() + + return parseBuddyInfo(file) +} + +func parseBuddyInfo(r io.Reader) ([]BuddyInfo, error) { + var ( + buddyInfo = []BuddyInfo{} + scanner = bufio.NewScanner(r) + bucketCount = -1 + ) + + for scanner.Scan() { + var err error + line := scanner.Text() + parts := strings.Fields(line) + + if len(parts) < 4 { + return nil, fmt.Errorf("invalid number of fields when parsing buddyinfo") + } + + node := strings.TrimRight(parts[1], ",") + zone := strings.TrimRight(parts[3], ",") + arraySize := len(parts[4:]) + + if bucketCount == -1 { + bucketCount = arraySize + } else { + if bucketCount != arraySize { + return nil, fmt.Errorf("mismatch in number of buddyinfo buckets, previous count %d, new count %d", bucketCount, arraySize) + } + } + + sizes := make([]float64, arraySize) + for i := 0; i < arraySize; i++ { + sizes[i], err = strconv.ParseFloat(parts[i+4], 64) + if err != nil { + return nil, fmt.Errorf("invalid value in buddyinfo: %s", err) + } + } + + buddyInfo = append(buddyInfo, BuddyInfo{node, zone, sizes}) + } + + return buddyInfo, scanner.Err() +} diff --git a/vendor/github.com/prometheus/procfs/doc.go b/vendor/github.com/prometheus/procfs/doc.go new file mode 100644 index 000000000..e2acd6d40 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/doc.go @@ -0,0 +1,45 @@ +// Copyright 2014 Prometheus Team +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package procfs provides functions to retrieve system, kernel and process +// metrics from the pseudo-filesystem proc. +// +// Example: +// +// package main +// +// import ( +// "fmt" +// "log" +// +// "github.com/prometheus/procfs" +// ) +// +// func main() { +// p, err := procfs.Self() +// if err != nil { +// log.Fatalf("could not get process: %s", err) +// } +// +// stat, err := p.NewStat() +// if err != nil { +// log.Fatalf("could not get process stat: %s", err) +// } +// +// fmt.Printf("command: %s\n", stat.Comm) +// fmt.Printf("cpu time: %fs\n", stat.CPUTime()) +// fmt.Printf("vsize: %dB\n", stat.VirtualMemory()) +// fmt.Printf("rss: %dB\n", stat.ResidentMemory()) +// } +// +package procfs diff --git a/vendor/github.com/prometheus/procfs/fixtures.ttar b/vendor/github.com/prometheus/procfs/fixtures.ttar new file mode 100644 index 000000000..3ee8291e8 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/fixtures.ttar @@ -0,0 +1,446 @@ +# Archive created by ttar -c -f fixtures.ttar fixtures/ +Directory: fixtures +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/26231 +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/cmdline +Lines: 1 +vimNULLBYTEtest.goNULLBYTE+10NULLBYTEEOF +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/comm +Lines: 1 +vim +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/exe +SymlinkTo: /usr/bin/vim +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/26231/fd +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/fd/0 +SymlinkTo: ../../symlinktargets/abc +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/fd/1 +SymlinkTo: ../../symlinktargets/def +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/fd/10 +SymlinkTo: ../../symlinktargets/xyz +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/fd/2 +SymlinkTo: ../../symlinktargets/ghi +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/fd/3 +SymlinkTo: ../../symlinktargets/uvw +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/io +Lines: 7 +rchar: 750339 +wchar: 818609 +syscr: 7405 +syscw: 5245 +read_bytes: 1024 +write_bytes: 2048 +cancelled_write_bytes: -1024 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/limits +Lines: 17 +Limit Soft Limit Hard Limit Units +Max cpu time unlimited unlimited seconds +Max file size unlimited unlimited bytes +Max data size unlimited unlimited bytes +Max stack size 8388608 unlimited bytes +Max core file size 0 unlimited bytes +Max resident set unlimited unlimited bytes +Max processes 62898 62898 processes +Max open files 2048 4096 files +Max locked memory 65536 65536 bytes +Max address space 8589934592 unlimited bytes +Max file locks unlimited unlimited locks +Max pending signals 62898 62898 signals +Max msgqueue size 819200 819200 bytes +Max nice priority 0 0 +Max realtime priority 0 0 +Max realtime timeout unlimited unlimited us +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/mountstats +Lines: 19 +device rootfs mounted on / with fstype rootfs +device sysfs mounted on /sys with fstype sysfs +device proc mounted on /proc with fstype proc +device /dev/sda1 mounted on / with fstype ext4 +device 192.168.1.1:/srv/test mounted on /mnt/nfs/test with fstype nfs4 statvers=1.1 + opts: rw,vers=4.0,rsize=1048576,wsize=1048576,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=tcp,port=0,timeo=600,retrans=2,sec=sys,clientaddr=192.168.1.5,local_lock=none + age: 13968 + caps: caps=0xfff7,wtmult=512,dtsize=32768,bsize=0,namlen=255 + nfsv4: bm0=0xfdffafff,bm1=0xf9be3e,bm2=0x0,acl=0x0,pnfs=not configured + sec: flavor=1,pseudoflavor=1 + events: 52 226 0 0 1 13 398 0 0 331 0 47 0 0 77 0 0 77 0 0 0 0 0 0 0 0 0 + bytes: 1207640230 0 0 0 1210214218 0 295483 0 + RPC iostats version: 1.0 p/v: 100003/4 (nfs) + xprt: tcp 832 0 1 0 11 6428 6428 0 12154 0 24 26 5726 + per-op statistics + NULL: 0 0 0 0 0 0 0 0 + READ: 1298 1298 0 207680 1210292152 6 79386 79407 + WRITE: 0 0 0 0 0 0 0 0 + +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/26231/net +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/net/dev +Lines: 4 +Inter-| Receive | Transmit + face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed + lo: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + eth0: 438 5 0 0 0 0 0 0 648 8 0 0 0 0 0 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/26231/ns +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/ns/mnt +SymlinkTo: mnt:[4026531840] +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/ns/net +SymlinkTo: net:[4026531993] +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26231/stat +Lines: 1 +26231 (vim) R 5392 7446 5392 34835 7446 4218880 32533 309516 26 82 1677 44 158 99 20 0 1 0 82375 56274944 1981 18446744073709551615 4194304 6294284 140736914091744 140736914087944 139965136429984 0 0 12288 1870679807 0 0 0 17 0 0 0 31 0 0 8391624 8481048 16420864 140736914093252 140736914093279 140736914093279 140736914096107 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/26232 +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26232/cmdline +Lines: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26232/comm +Lines: 1 +ata_sff +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/26232/fd +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26232/fd/0 +SymlinkTo: ../../symlinktargets/abc +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26232/fd/1 +SymlinkTo: ../../symlinktargets/def +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26232/fd/2 +SymlinkTo: ../../symlinktargets/ghi +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26232/fd/3 +SymlinkTo: ../../symlinktargets/uvw +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26232/fd/4 +SymlinkTo: ../../symlinktargets/xyz +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26232/limits +Lines: 17 +Limit Soft Limit Hard Limit Units +Max cpu time unlimited unlimited seconds +Max file size unlimited unlimited bytes +Max data size unlimited unlimited bytes +Max stack size 8388608 unlimited bytes +Max core file size 0 unlimited bytes +Max resident set unlimited unlimited bytes +Max processes 29436 29436 processes +Max open files 1024 4096 files +Max locked memory 65536 65536 bytes +Max address space unlimited unlimited bytes +Max file locks unlimited unlimited locks +Max pending signals 29436 29436 signals +Max msgqueue size 819200 819200 bytes +Max nice priority 0 0 +Max realtime priority 0 0 +Max realtime timeout unlimited unlimited us +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26232/stat +Lines: 1 +33 (ata_sff) S 2 0 0 0 -1 69238880 0 0 0 0 0 0 0 0 0 -20 1 0 5 0 0 18446744073709551615 0 0 0 0 0 0 0 2147483647 0 18446744073709551615 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/26233 +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/26233/cmdline +Lines: 1 +com.github.uiautomatorNULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTEEOF +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/584 +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/584/stat +Lines: 2 +1020 ((a b ) ( c d) ) R 28378 1020 28378 34842 1020 4218880 286 0 0 0 0 0 0 0 20 0 1 0 10839175 10395648 155 18446744073709551615 4194304 4238788 140736466511168 140736466511168 140609271124624 0 0 0 0 0 0 0 17 5 0 0 0 0 0 6336016 6337300 25579520 140736466515030 140736466515061 140736466515061 140736466518002 0 +#!/bin/cat /proc/self/stat +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/buddyinfo +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/buddyinfo/short +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/buddyinfo/short/buddyinfo +Lines: 3 +Node 0, zone +Node 0, zone +Node 0, zone +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/buddyinfo/sizemismatch +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/buddyinfo/sizemismatch/buddyinfo +Lines: 3 +Node 0, zone DMA 1 0 1 0 2 1 1 0 1 1 3 +Node 0, zone DMA32 759 572 791 475 194 45 12 0 0 0 0 0 +Node 0, zone Normal 4381 1093 185 1530 567 102 4 0 0 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/buddyinfo/valid +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/buddyinfo/valid/buddyinfo +Lines: 3 +Node 0, zone DMA 1 0 1 0 2 1 1 0 1 1 3 +Node 0, zone DMA32 759 572 791 475 194 45 12 0 0 0 0 +Node 0, zone Normal 4381 1093 185 1530 567 102 4 0 0 0 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/fs +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/fs/xfs +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/fs/xfs/stat +Lines: 23 +extent_alloc 92447 97589 92448 93751 +abt 0 0 0 0 +blk_map 1767055 188820 184891 92447 92448 2140766 0 +bmbt 0 0 0 0 +dir 185039 92447 92444 136422 +trans 706 944304 0 +ig 185045 58807 0 126238 0 33637 22 +log 2883 113448 9 17360 739 +push_ail 945014 0 134260 15483 0 3940 464 159985 0 40 +xstrat 92447 0 +rw 107739 94045 +attr 4 0 0 0 +icluster 8677 7849 135802 +vnodes 92601 0 0 0 92444 92444 92444 0 +buf 2666287 7122 2659202 3599 2 7085 0 10297 7085 +abtb2 184941 1277345 13257 13278 0 0 0 0 0 0 0 0 0 0 2746147 +abtc2 345295 2416764 172637 172658 0 0 0 0 0 0 0 0 0 0 21406023 +bmbt2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ibt2 343004 1358467 0 0 0 0 0 0 0 0 0 0 0 0 0 +fibt2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +qm 0 0 0 0 0 0 0 0 +xpc 399724544 92823103 86219234 +debug 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/mdstat +Lines: 26 +Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] [raid4] [raid10] +md3 : active raid6 sda1[8] sdh1[7] sdg1[6] sdf1[5] sde1[11] sdd1[3] sdc1[10] sdb1[9] + 5853468288 blocks super 1.2 level 6, 64k chunk, algorithm 2 [8/8] [UUUUUUUU] + +md127 : active raid1 sdi2[0] sdj2[1] + 312319552 blocks [2/2] [UU] + +md0 : active raid1 sdk[2](S) sdi1[0] sdj1[1] + 248896 blocks [2/2] [UU] + +md4 : inactive raid1 sda3[0] sdb3[1] + 4883648 blocks [2/2] [UU] + +md6 : active raid1 sdb2[2] sda2[0] + 195310144 blocks [2/1] [U_] + [=>...................] recovery = 8.5% (16775552/195310144) finish=17.0min speed=259783K/sec + +md8 : active raid1 sdb1[1] sda1[0] + 195310144 blocks [2/2] [UU] + [=>...................] resync = 8.5% (16775552/195310144) finish=17.0min speed=259783K/sec + +md7 : active raid6 sdb1[0] sde1[3] sdd1[2] sdc1[1] + 7813735424 blocks super 1.2 level 6, 512k chunk, algorithm 2 [4/3] [U_UU] + bitmap: 0/30 pages [0KB], 65536KB chunk + +unused devices: +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/net +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/net/dev +Lines: 6 +Inter-| Receive | Transmit + face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed +vethf345468: 648 8 0 0 0 0 0 0 438 5 0 0 0 0 0 0 + lo: 1664039048 1566805 0 0 0 0 0 0 1664039048 1566805 0 0 0 0 0 0 +docker0: 2568 38 0 0 0 0 0 0 438 5 0 0 0 0 0 0 + eth0: 874354587 1036395 0 0 0 0 0 0 563352563 732147 0 0 0 0 0 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/net/ip_vs +Lines: 21 +IP Virtual Server version 1.2.1 (size=4096) +Prot LocalAddress:Port Scheduler Flags + -> RemoteAddress:Port Forward Weight ActiveConn InActConn +TCP C0A80016:0CEA wlc + -> C0A85216:0CEA Tunnel 100 248 2 + -> C0A85318:0CEA Tunnel 100 248 2 + -> C0A85315:0CEA Tunnel 100 248 1 +TCP C0A80039:0CEA wlc + -> C0A85416:0CEA Tunnel 0 0 0 + -> C0A85215:0CEA Tunnel 100 1499 0 + -> C0A83215:0CEA Tunnel 100 1498 0 +TCP C0A80037:0CEA wlc + -> C0A8321A:0CEA Tunnel 0 0 0 + -> C0A83120:0CEA Tunnel 100 0 0 +TCP [2620:0000:0000:0000:0000:0000:0000:0001]:0050 sh + -> [2620:0000:0000:0000:0000:0000:0000:0002]:0050 Route 1 0 0 + -> [2620:0000:0000:0000:0000:0000:0000:0003]:0050 Route 1 0 0 + -> [2620:0000:0000:0000:0000:0000:0000:0004]:0050 Route 1 1 1 +FWM 10001000 wlc + -> C0A8321A:0CEA Route 0 0 1 + -> C0A83215:0CEA Route 0 0 2 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/net/ip_vs_stats +Lines: 6 + Total Incoming Outgoing Incoming Outgoing + Conns Packets Packets Bytes Bytes + 16AA370 E33656E5 0 51D8C8883AB3 0 + + Conns/s Pkts/s Pkts/s Bytes/s Bytes/s + 4 1FB3C 0 1282A8F 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/net/rpc +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/net/rpc/nfs +Lines: 5 +net 18628 0 18628 6 +rpc 4329785 0 4338291 +proc2 18 2 69 0 0 4410 0 0 0 0 0 0 0 0 0 0 0 99 2 +proc3 22 1 4084749 29200 94754 32580 186 47747 7981 8639 0 6356 0 6962 0 7958 0 0 241 4 4 2 39 +proc4 61 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/net/rpc/nfsd +Lines: 11 +rc 0 6 18622 +fh 0 0 0 0 0 +io 157286400 0 +th 8 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 +ra 32 0 0 0 0 0 0 0 0 0 0 0 +net 18628 0 18628 6 +rpc 18628 0 0 0 0 +proc2 18 2 69 0 0 4410 0 0 0 0 0 0 0 0 0 0 0 99 2 +proc3 22 2 112 0 2719 111 0 0 0 0 0 0 0 0 0 0 0 27 216 0 2 1 0 +proc4 2 2 10853 +proc4ops 72 0 0 0 1098 2 0 0 0 0 8179 5896 0 0 0 0 5900 0 0 2 0 2 0 9609 0 2 150 1272 0 0 0 1236 0 0 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/net/xfrm_stat +Lines: 28 +XfrmInError 1 +XfrmInBufferError 2 +XfrmInHdrError 4 +XfrmInNoStates 3 +XfrmInStateProtoError 40 +XfrmInStateModeError 100 +XfrmInStateSeqError 6000 +XfrmInStateExpired 4 +XfrmInStateMismatch 23451 +XfrmInStateInvalid 55555 +XfrmInTmplMismatch 51 +XfrmInNoPols 65432 +XfrmInPolBlock 100 +XfrmInPolError 10000 +XfrmOutError 1000000 +XfrmOutBundleGenError 43321 +XfrmOutBundleCheckError 555 +XfrmOutNoStates 869 +XfrmOutStateProtoError 4542 +XfrmOutStateModeError 4 +XfrmOutStateSeqError 543 +XfrmOutStateExpired 565 +XfrmOutPolBlock 43456 +XfrmOutPolDead 7656 +XfrmOutPolError 1454 +XfrmFwdHdrError 6654 +XfrmOutStateInvalid 28765 +XfrmAcquireError 24532 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/self +SymlinkTo: 26231 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/stat +Lines: 16 +cpu 301854 612 111922 8979004 3552 2 3944 0 0 0 +cpu0 44490 19 21045 1087069 220 1 3410 0 0 0 +cpu1 47869 23 16474 1110787 591 0 46 0 0 0 +cpu2 46504 36 15916 1112321 441 0 326 0 0 0 +cpu3 47054 102 15683 1113230 533 0 60 0 0 0 +cpu4 28413 25 10776 1140321 217 0 8 0 0 0 +cpu5 29271 101 11586 1136270 672 0 30 0 0 0 +cpu6 29152 36 10276 1139721 319 0 29 0 0 0 +cpu7 29098 268 10164 1139282 555 0 31 0 0 0 +intr 8885917 17 0 0 0 0 0 0 0 1 79281 0 0 0 0 0 0 0 231237 0 0 0 0 250586 103 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223424 190745 13 906 1283803 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ctxt 38014093 +btime 1418183276 +processes 26442 +procs_running 2 +procs_blocked 1 +softirq 5057579 250191 1481983 1647 211099 186066 0 1783454 622196 12499 508444 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Directory: fixtures/symlinktargets +Mode: 755 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/symlinktargets/README +Lines: 2 +This directory contains some empty files that are the symlinks the files in the "fd" directory point to. +They are otherwise ignored by the tests +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/symlinktargets/abc +Lines: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/symlinktargets/def +Lines: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/symlinktargets/ghi +Lines: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/symlinktargets/uvw +Lines: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +Path: fixtures/symlinktargets/xyz +Lines: 0 +Mode: 644 +# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/vendor/github.com/prometheus/procfs/fs.go b/vendor/github.com/prometheus/procfs/fs.go new file mode 100644 index 000000000..b6c6b2ce1 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/fs.go @@ -0,0 +1,82 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "fmt" + "os" + "path" + + "github.com/prometheus/procfs/nfs" + "github.com/prometheus/procfs/xfs" +) + +// FS represents the pseudo-filesystem proc, which provides an interface to +// kernel data structures. +type FS string + +// DefaultMountPoint is the common mount point of the proc filesystem. +const DefaultMountPoint = "/proc" + +// NewFS returns a new FS mounted under the given mountPoint. It will error +// if the mount point can't be read. +func NewFS(mountPoint string) (FS, error) { + info, err := os.Stat(mountPoint) + if err != nil { + return "", fmt.Errorf("could not read %s: %s", mountPoint, err) + } + if !info.IsDir() { + return "", fmt.Errorf("mount point %s is not a directory", mountPoint) + } + + return FS(mountPoint), nil +} + +// Path returns the path of the given subsystem relative to the procfs root. +func (fs FS) Path(p ...string) string { + return path.Join(append([]string{string(fs)}, p...)...) +} + +// XFSStats retrieves XFS filesystem runtime statistics. +func (fs FS) XFSStats() (*xfs.Stats, error) { + f, err := os.Open(fs.Path("fs/xfs/stat")) + if err != nil { + return nil, err + } + defer f.Close() + + return xfs.ParseStats(f) +} + +// NFSClientRPCStats retrieves NFS client RPC statistics. +func (fs FS) NFSClientRPCStats() (*nfs.ClientRPCStats, error) { + f, err := os.Open(fs.Path("net/rpc/nfs")) + if err != nil { + return nil, err + } + defer f.Close() + + return nfs.ParseClientRPCStats(f) +} + +// NFSdServerRPCStats retrieves NFS daemon RPC statistics. +func (fs FS) NFSdServerRPCStats() (*nfs.ServerRPCStats, error) { + f, err := os.Open(fs.Path("net/rpc/nfsd")) + if err != nil { + return nil, err + } + defer f.Close() + + return nfs.ParseServerRPCStats(f) +} diff --git a/vendor/github.com/prometheus/procfs/internal/util/parse.go b/vendor/github.com/prometheus/procfs/internal/util/parse.go new file mode 100644 index 000000000..1ad21c91a --- /dev/null +++ b/vendor/github.com/prometheus/procfs/internal/util/parse.go @@ -0,0 +1,46 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package util + +import "strconv" + +// ParseUint32s parses a slice of strings into a slice of uint32s. +func ParseUint32s(ss []string) ([]uint32, error) { + us := make([]uint32, 0, len(ss)) + for _, s := range ss { + u, err := strconv.ParseUint(s, 10, 32) + if err != nil { + return nil, err + } + + us = append(us, uint32(u)) + } + + return us, nil +} + +// ParseUint64s parses a slice of strings into a slice of uint64s. +func ParseUint64s(ss []string) ([]uint64, error) { + us := make([]uint64, 0, len(ss)) + for _, s := range ss { + u, err := strconv.ParseUint(s, 10, 64) + if err != nil { + return nil, err + } + + us = append(us, u) + } + + return us, nil +} diff --git a/vendor/github.com/prometheus/procfs/ipvs.go b/vendor/github.com/prometheus/procfs/ipvs.go new file mode 100644 index 000000000..e36d4a3bd --- /dev/null +++ b/vendor/github.com/prometheus/procfs/ipvs.go @@ -0,0 +1,259 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "bufio" + "encoding/hex" + "errors" + "fmt" + "io" + "io/ioutil" + "net" + "os" + "strconv" + "strings" +) + +// IPVSStats holds IPVS statistics, as exposed by the kernel in `/proc/net/ip_vs_stats`. +type IPVSStats struct { + // Total count of connections. + Connections uint64 + // Total incoming packages processed. + IncomingPackets uint64 + // Total outgoing packages processed. + OutgoingPackets uint64 + // Total incoming traffic. + IncomingBytes uint64 + // Total outgoing traffic. + OutgoingBytes uint64 +} + +// IPVSBackendStatus holds current metrics of one virtual / real address pair. +type IPVSBackendStatus struct { + // The local (virtual) IP address. + LocalAddress net.IP + // The remote (real) IP address. + RemoteAddress net.IP + // The local (virtual) port. + LocalPort uint16 + // The remote (real) port. + RemotePort uint16 + // The local firewall mark + LocalMark string + // The transport protocol (TCP, UDP). + Proto string + // The current number of active connections for this virtual/real address pair. + ActiveConn uint64 + // The current number of inactive connections for this virtual/real address pair. + InactConn uint64 + // The current weight of this virtual/real address pair. + Weight uint64 +} + +// NewIPVSStats reads the IPVS statistics. +func NewIPVSStats() (IPVSStats, error) { + fs, err := NewFS(DefaultMountPoint) + if err != nil { + return IPVSStats{}, err + } + + return fs.NewIPVSStats() +} + +// NewIPVSStats reads the IPVS statistics from the specified `proc` filesystem. +func (fs FS) NewIPVSStats() (IPVSStats, error) { + file, err := os.Open(fs.Path("net/ip_vs_stats")) + if err != nil { + return IPVSStats{}, err + } + defer file.Close() + + return parseIPVSStats(file) +} + +// parseIPVSStats performs the actual parsing of `ip_vs_stats`. +func parseIPVSStats(file io.Reader) (IPVSStats, error) { + var ( + statContent []byte + statLines []string + statFields []string + stats IPVSStats + ) + + statContent, err := ioutil.ReadAll(file) + if err != nil { + return IPVSStats{}, err + } + + statLines = strings.SplitN(string(statContent), "\n", 4) + if len(statLines) != 4 { + return IPVSStats{}, errors.New("ip_vs_stats corrupt: too short") + } + + statFields = strings.Fields(statLines[2]) + if len(statFields) != 5 { + return IPVSStats{}, errors.New("ip_vs_stats corrupt: unexpected number of fields") + } + + stats.Connections, err = strconv.ParseUint(statFields[0], 16, 64) + if err != nil { + return IPVSStats{}, err + } + stats.IncomingPackets, err = strconv.ParseUint(statFields[1], 16, 64) + if err != nil { + return IPVSStats{}, err + } + stats.OutgoingPackets, err = strconv.ParseUint(statFields[2], 16, 64) + if err != nil { + return IPVSStats{}, err + } + stats.IncomingBytes, err = strconv.ParseUint(statFields[3], 16, 64) + if err != nil { + return IPVSStats{}, err + } + stats.OutgoingBytes, err = strconv.ParseUint(statFields[4], 16, 64) + if err != nil { + return IPVSStats{}, err + } + + return stats, nil +} + +// NewIPVSBackendStatus reads and returns the status of all (virtual,real) server pairs. +func NewIPVSBackendStatus() ([]IPVSBackendStatus, error) { + fs, err := NewFS(DefaultMountPoint) + if err != nil { + return []IPVSBackendStatus{}, err + } + + return fs.NewIPVSBackendStatus() +} + +// NewIPVSBackendStatus reads and returns the status of all (virtual,real) server pairs from the specified `proc` filesystem. +func (fs FS) NewIPVSBackendStatus() ([]IPVSBackendStatus, error) { + file, err := os.Open(fs.Path("net/ip_vs")) + if err != nil { + return nil, err + } + defer file.Close() + + return parseIPVSBackendStatus(file) +} + +func parseIPVSBackendStatus(file io.Reader) ([]IPVSBackendStatus, error) { + var ( + status []IPVSBackendStatus + scanner = bufio.NewScanner(file) + proto string + localMark string + localAddress net.IP + localPort uint16 + err error + ) + + for scanner.Scan() { + fields := strings.Fields(scanner.Text()) + if len(fields) == 0 { + continue + } + switch { + case fields[0] == "IP" || fields[0] == "Prot" || fields[1] == "RemoteAddress:Port": + continue + case fields[0] == "TCP" || fields[0] == "UDP": + if len(fields) < 2 { + continue + } + proto = fields[0] + localMark = "" + localAddress, localPort, err = parseIPPort(fields[1]) + if err != nil { + return nil, err + } + case fields[0] == "FWM": + if len(fields) < 2 { + continue + } + proto = fields[0] + localMark = fields[1] + localAddress = nil + localPort = 0 + case fields[0] == "->": + if len(fields) < 6 { + continue + } + remoteAddress, remotePort, err := parseIPPort(fields[1]) + if err != nil { + return nil, err + } + weight, err := strconv.ParseUint(fields[3], 10, 64) + if err != nil { + return nil, err + } + activeConn, err := strconv.ParseUint(fields[4], 10, 64) + if err != nil { + return nil, err + } + inactConn, err := strconv.ParseUint(fields[5], 10, 64) + if err != nil { + return nil, err + } + status = append(status, IPVSBackendStatus{ + LocalAddress: localAddress, + LocalPort: localPort, + LocalMark: localMark, + RemoteAddress: remoteAddress, + RemotePort: remotePort, + Proto: proto, + Weight: weight, + ActiveConn: activeConn, + InactConn: inactConn, + }) + } + } + return status, nil +} + +func parseIPPort(s string) (net.IP, uint16, error) { + var ( + ip net.IP + err error + ) + + switch len(s) { + case 13: + ip, err = hex.DecodeString(s[0:8]) + if err != nil { + return nil, 0, err + } + case 46: + ip = net.ParseIP(s[1:40]) + if ip == nil { + return nil, 0, fmt.Errorf("invalid IPv6 address: %s", s[1:40]) + } + default: + return nil, 0, fmt.Errorf("unexpected IP:Port: %s", s) + } + + portString := s[len(s)-4:] + if len(portString) != 4 { + return nil, 0, fmt.Errorf("unexpected port string format: %s", portString) + } + port, err := strconv.ParseUint(portString, 16, 16) + if err != nil { + return nil, 0, err + } + + return ip, uint16(port), nil +} diff --git a/vendor/github.com/prometheus/procfs/mdstat.go b/vendor/github.com/prometheus/procfs/mdstat.go new file mode 100644 index 000000000..9dc19583d --- /dev/null +++ b/vendor/github.com/prometheus/procfs/mdstat.go @@ -0,0 +1,151 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "fmt" + "io/ioutil" + "regexp" + "strconv" + "strings" +) + +var ( + statuslineRE = regexp.MustCompile(`(\d+) blocks .*\[(\d+)/(\d+)\] \[[U_]+\]`) + buildlineRE = regexp.MustCompile(`\((\d+)/\d+\)`) +) + +// MDStat holds info parsed from /proc/mdstat. +type MDStat struct { + // Name of the device. + Name string + // activity-state of the device. + ActivityState string + // Number of active disks. + DisksActive int64 + // Total number of disks the device consists of. + DisksTotal int64 + // Number of blocks the device holds. + BlocksTotal int64 + // Number of blocks on the device that are in sync. + BlocksSynced int64 +} + +// ParseMDStat parses an mdstat-file and returns a struct with the relevant infos. +func (fs FS) ParseMDStat() (mdstates []MDStat, err error) { + mdStatusFilePath := fs.Path("mdstat") + content, err := ioutil.ReadFile(mdStatusFilePath) + if err != nil { + return []MDStat{}, fmt.Errorf("error parsing %s: %s", mdStatusFilePath, err) + } + + mdStates := []MDStat{} + lines := strings.Split(string(content), "\n") + for i, l := range lines { + if l == "" { + continue + } + if l[0] == ' ' { + continue + } + if strings.HasPrefix(l, "Personalities") || strings.HasPrefix(l, "unused") { + continue + } + + mainLine := strings.Split(l, " ") + if len(mainLine) < 3 { + return mdStates, fmt.Errorf("error parsing mdline: %s", l) + } + mdName := mainLine[0] + activityState := mainLine[2] + + if len(lines) <= i+3 { + return mdStates, fmt.Errorf( + "error parsing %s: too few lines for md device %s", + mdStatusFilePath, + mdName, + ) + } + + active, total, size, err := evalStatusline(lines[i+1]) + if err != nil { + return mdStates, fmt.Errorf("error parsing %s: %s", mdStatusFilePath, err) + } + + // j is the line number of the syncing-line. + j := i + 2 + if strings.Contains(lines[i+2], "bitmap") { // skip bitmap line + j = i + 3 + } + + // If device is syncing at the moment, get the number of currently + // synced bytes, otherwise that number equals the size of the device. + syncedBlocks := size + if strings.Contains(lines[j], "recovery") || strings.Contains(lines[j], "resync") { + syncedBlocks, err = evalBuildline(lines[j]) + if err != nil { + return mdStates, fmt.Errorf("error parsing %s: %s", mdStatusFilePath, err) + } + } + + mdStates = append(mdStates, MDStat{ + Name: mdName, + ActivityState: activityState, + DisksActive: active, + DisksTotal: total, + BlocksTotal: size, + BlocksSynced: syncedBlocks, + }) + } + + return mdStates, nil +} + +func evalStatusline(statusline string) (active, total, size int64, err error) { + matches := statuslineRE.FindStringSubmatch(statusline) + if len(matches) != 4 { + return 0, 0, 0, fmt.Errorf("unexpected statusline: %s", statusline) + } + + size, err = strconv.ParseInt(matches[1], 10, 64) + if err != nil { + return 0, 0, 0, fmt.Errorf("unexpected statusline %s: %s", statusline, err) + } + + total, err = strconv.ParseInt(matches[2], 10, 64) + if err != nil { + return 0, 0, 0, fmt.Errorf("unexpected statusline %s: %s", statusline, err) + } + + active, err = strconv.ParseInt(matches[3], 10, 64) + if err != nil { + return 0, 0, 0, fmt.Errorf("unexpected statusline %s: %s", statusline, err) + } + + return active, total, size, nil +} + +func evalBuildline(buildline string) (syncedBlocks int64, err error) { + matches := buildlineRE.FindStringSubmatch(buildline) + if len(matches) != 2 { + return 0, fmt.Errorf("unexpected buildline: %s", buildline) + } + + syncedBlocks, err = strconv.ParseInt(matches[1], 10, 64) + if err != nil { + return 0, fmt.Errorf("%s in buildline: %s", err, buildline) + } + + return syncedBlocks, nil +} diff --git a/vendor/github.com/prometheus/procfs/mountstats.go b/vendor/github.com/prometheus/procfs/mountstats.go new file mode 100644 index 000000000..e95ddbc67 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/mountstats.go @@ -0,0 +1,569 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +// While implementing parsing of /proc/[pid]/mountstats, this blog was used +// heavily as a reference: +// https://utcc.utoronto.ca/~cks/space/blog/linux/NFSMountstatsIndex +// +// Special thanks to Chris Siebenmann for all of his posts explaining the +// various statistics available for NFS. + +import ( + "bufio" + "fmt" + "io" + "strconv" + "strings" + "time" +) + +// Constants shared between multiple functions. +const ( + deviceEntryLen = 8 + + fieldBytesLen = 8 + fieldEventsLen = 27 + + statVersion10 = "1.0" + statVersion11 = "1.1" + + fieldTransport10Len = 10 + fieldTransport11Len = 13 +) + +// A Mount is a device mount parsed from /proc/[pid]/mountstats. +type Mount struct { + // Name of the device. + Device string + // The mount point of the device. + Mount string + // The filesystem type used by the device. + Type string + // If available additional statistics related to this Mount. + // Use a type assertion to determine if additional statistics are available. + Stats MountStats +} + +// A MountStats is a type which contains detailed statistics for a specific +// type of Mount. +type MountStats interface { + mountStats() +} + +// A MountStatsNFS is a MountStats implementation for NFSv3 and v4 mounts. +type MountStatsNFS struct { + // The version of statistics provided. + StatVersion string + // The age of the NFS mount. + Age time.Duration + // Statistics related to byte counters for various operations. + Bytes NFSBytesStats + // Statistics related to various NFS event occurrences. + Events NFSEventsStats + // Statistics broken down by filesystem operation. + Operations []NFSOperationStats + // Statistics about the NFS RPC transport. + Transport NFSTransportStats +} + +// mountStats implements MountStats. +func (m MountStatsNFS) mountStats() {} + +// A NFSBytesStats contains statistics about the number of bytes read and written +// by an NFS client to and from an NFS server. +type NFSBytesStats struct { + // Number of bytes read using the read() syscall. + Read uint64 + // Number of bytes written using the write() syscall. + Write uint64 + // Number of bytes read using the read() syscall in O_DIRECT mode. + DirectRead uint64 + // Number of bytes written using the write() syscall in O_DIRECT mode. + DirectWrite uint64 + // Number of bytes read from the NFS server, in total. + ReadTotal uint64 + // Number of bytes written to the NFS server, in total. + WriteTotal uint64 + // Number of pages read directly via mmap()'d files. + ReadPages uint64 + // Number of pages written directly via mmap()'d files. + WritePages uint64 +} + +// A NFSEventsStats contains statistics about NFS event occurrences. +type NFSEventsStats struct { + // Number of times cached inode attributes are re-validated from the server. + InodeRevalidate uint64 + // Number of times cached dentry nodes are re-validated from the server. + DnodeRevalidate uint64 + // Number of times an inode cache is cleared. + DataInvalidate uint64 + // Number of times cached inode attributes are invalidated. + AttributeInvalidate uint64 + // Number of times files or directories have been open()'d. + VFSOpen uint64 + // Number of times a directory lookup has occurred. + VFSLookup uint64 + // Number of times permissions have been checked. + VFSAccess uint64 + // Number of updates (and potential writes) to pages. + VFSUpdatePage uint64 + // Number of pages read directly via mmap()'d files. + VFSReadPage uint64 + // Number of times a group of pages have been read. + VFSReadPages uint64 + // Number of pages written directly via mmap()'d files. + VFSWritePage uint64 + // Number of times a group of pages have been written. + VFSWritePages uint64 + // Number of times directory entries have been read with getdents(). + VFSGetdents uint64 + // Number of times attributes have been set on inodes. + VFSSetattr uint64 + // Number of pending writes that have been forcefully flushed to the server. + VFSFlush uint64 + // Number of times fsync() has been called on directories and files. + VFSFsync uint64 + // Number of times locking has been attempted on a file. + VFSLock uint64 + // Number of times files have been closed and released. + VFSFileRelease uint64 + // Unknown. Possibly unused. + CongestionWait uint64 + // Number of times files have been truncated. + Truncation uint64 + // Number of times a file has been grown due to writes beyond its existing end. + WriteExtension uint64 + // Number of times a file was removed while still open by another process. + SillyRename uint64 + // Number of times the NFS server gave less data than expected while reading. + ShortRead uint64 + // Number of times the NFS server wrote less data than expected while writing. + ShortWrite uint64 + // Number of times the NFS server indicated EJUKEBOX; retrieving data from + // offline storage. + JukeboxDelay uint64 + // Number of NFS v4.1+ pNFS reads. + PNFSRead uint64 + // Number of NFS v4.1+ pNFS writes. + PNFSWrite uint64 +} + +// A NFSOperationStats contains statistics for a single operation. +type NFSOperationStats struct { + // The name of the operation. + Operation string + // Number of requests performed for this operation. + Requests uint64 + // Number of times an actual RPC request has been transmitted for this operation. + Transmissions uint64 + // Number of times a request has had a major timeout. + MajorTimeouts uint64 + // Number of bytes sent for this operation, including RPC headers and payload. + BytesSent uint64 + // Number of bytes received for this operation, including RPC headers and payload. + BytesReceived uint64 + // Duration all requests spent queued for transmission before they were sent. + CumulativeQueueTime time.Duration + // Duration it took to get a reply back after the request was transmitted. + CumulativeTotalResponseTime time.Duration + // Duration from when a request was enqueued to when it was completely handled. + CumulativeTotalRequestTime time.Duration +} + +// A NFSTransportStats contains statistics for the NFS mount RPC requests and +// responses. +type NFSTransportStats struct { + // The local port used for the NFS mount. + Port uint64 + // Number of times the client has had to establish a connection from scratch + // to the NFS server. + Bind uint64 + // Number of times the client has made a TCP connection to the NFS server. + Connect uint64 + // Duration (in jiffies, a kernel internal unit of time) the NFS mount has + // spent waiting for connections to the server to be established. + ConnectIdleTime uint64 + // Duration since the NFS mount last saw any RPC traffic. + IdleTime time.Duration + // Number of RPC requests for this mount sent to the NFS server. + Sends uint64 + // Number of RPC responses for this mount received from the NFS server. + Receives uint64 + // Number of times the NFS server sent a response with a transaction ID + // unknown to this client. + BadTransactionIDs uint64 + // A running counter, incremented on each request as the current difference + // ebetween sends and receives. + CumulativeActiveRequests uint64 + // A running counter, incremented on each request by the current backlog + // queue size. + CumulativeBacklog uint64 + + // Stats below only available with stat version 1.1. + + // Maximum number of simultaneously active RPC requests ever used. + MaximumRPCSlotsUsed uint64 + // A running counter, incremented on each request as the current size of the + // sending queue. + CumulativeSendingQueue uint64 + // A running counter, incremented on each request as the current size of the + // pending queue. + CumulativePendingQueue uint64 +} + +// parseMountStats parses a /proc/[pid]/mountstats file and returns a slice +// of Mount structures containing detailed information about each mount. +// If available, statistics for each mount are parsed as well. +func parseMountStats(r io.Reader) ([]*Mount, error) { + const ( + device = "device" + statVersionPrefix = "statvers=" + + nfs3Type = "nfs" + nfs4Type = "nfs4" + ) + + var mounts []*Mount + + s := bufio.NewScanner(r) + for s.Scan() { + // Only look for device entries in this function + ss := strings.Fields(string(s.Bytes())) + if len(ss) == 0 || ss[0] != device { + continue + } + + m, err := parseMount(ss) + if err != nil { + return nil, err + } + + // Does this mount also possess statistics information? + if len(ss) > deviceEntryLen { + // Only NFSv3 and v4 are supported for parsing statistics + if m.Type != nfs3Type && m.Type != nfs4Type { + return nil, fmt.Errorf("cannot parse MountStats for fstype %q", m.Type) + } + + statVersion := strings.TrimPrefix(ss[8], statVersionPrefix) + + stats, err := parseMountStatsNFS(s, statVersion) + if err != nil { + return nil, err + } + + m.Stats = stats + } + + mounts = append(mounts, m) + } + + return mounts, s.Err() +} + +// parseMount parses an entry in /proc/[pid]/mountstats in the format: +// device [device] mounted on [mount] with fstype [type] +func parseMount(ss []string) (*Mount, error) { + if len(ss) < deviceEntryLen { + return nil, fmt.Errorf("invalid device entry: %v", ss) + } + + // Check for specific words appearing at specific indices to ensure + // the format is consistent with what we expect + format := []struct { + i int + s string + }{ + {i: 0, s: "device"}, + {i: 2, s: "mounted"}, + {i: 3, s: "on"}, + {i: 5, s: "with"}, + {i: 6, s: "fstype"}, + } + + for _, f := range format { + if ss[f.i] != f.s { + return nil, fmt.Errorf("invalid device entry: %v", ss) + } + } + + return &Mount{ + Device: ss[1], + Mount: ss[4], + Type: ss[7], + }, nil +} + +// parseMountStatsNFS parses a MountStatsNFS by scanning additional information +// related to NFS statistics. +func parseMountStatsNFS(s *bufio.Scanner, statVersion string) (*MountStatsNFS, error) { + // Field indicators for parsing specific types of data + const ( + fieldAge = "age:" + fieldBytes = "bytes:" + fieldEvents = "events:" + fieldPerOpStats = "per-op" + fieldTransport = "xprt:" + ) + + stats := &MountStatsNFS{ + StatVersion: statVersion, + } + + for s.Scan() { + ss := strings.Fields(string(s.Bytes())) + if len(ss) == 0 { + break + } + if len(ss) < 2 { + return nil, fmt.Errorf("not enough information for NFS stats: %v", ss) + } + + switch ss[0] { + case fieldAge: + // Age integer is in seconds + d, err := time.ParseDuration(ss[1] + "s") + if err != nil { + return nil, err + } + + stats.Age = d + case fieldBytes: + bstats, err := parseNFSBytesStats(ss[1:]) + if err != nil { + return nil, err + } + + stats.Bytes = *bstats + case fieldEvents: + estats, err := parseNFSEventsStats(ss[1:]) + if err != nil { + return nil, err + } + + stats.Events = *estats + case fieldTransport: + if len(ss) < 3 { + return nil, fmt.Errorf("not enough information for NFS transport stats: %v", ss) + } + + tstats, err := parseNFSTransportStats(ss[2:], statVersion) + if err != nil { + return nil, err + } + + stats.Transport = *tstats + } + + // When encountering "per-operation statistics", we must break this + // loop and parse them separately to ensure we can terminate parsing + // before reaching another device entry; hence why this 'if' statement + // is not just another switch case + if ss[0] == fieldPerOpStats { + break + } + } + + if err := s.Err(); err != nil { + return nil, err + } + + // NFS per-operation stats appear last before the next device entry + perOpStats, err := parseNFSOperationStats(s) + if err != nil { + return nil, err + } + + stats.Operations = perOpStats + + return stats, nil +} + +// parseNFSBytesStats parses a NFSBytesStats line using an input set of +// integer fields. +func parseNFSBytesStats(ss []string) (*NFSBytesStats, error) { + if len(ss) != fieldBytesLen { + return nil, fmt.Errorf("invalid NFS bytes stats: %v", ss) + } + + ns := make([]uint64, 0, fieldBytesLen) + for _, s := range ss { + n, err := strconv.ParseUint(s, 10, 64) + if err != nil { + return nil, err + } + + ns = append(ns, n) + } + + return &NFSBytesStats{ + Read: ns[0], + Write: ns[1], + DirectRead: ns[2], + DirectWrite: ns[3], + ReadTotal: ns[4], + WriteTotal: ns[5], + ReadPages: ns[6], + WritePages: ns[7], + }, nil +} + +// parseNFSEventsStats parses a NFSEventsStats line using an input set of +// integer fields. +func parseNFSEventsStats(ss []string) (*NFSEventsStats, error) { + if len(ss) != fieldEventsLen { + return nil, fmt.Errorf("invalid NFS events stats: %v", ss) + } + + ns := make([]uint64, 0, fieldEventsLen) + for _, s := range ss { + n, err := strconv.ParseUint(s, 10, 64) + if err != nil { + return nil, err + } + + ns = append(ns, n) + } + + return &NFSEventsStats{ + InodeRevalidate: ns[0], + DnodeRevalidate: ns[1], + DataInvalidate: ns[2], + AttributeInvalidate: ns[3], + VFSOpen: ns[4], + VFSLookup: ns[5], + VFSAccess: ns[6], + VFSUpdatePage: ns[7], + VFSReadPage: ns[8], + VFSReadPages: ns[9], + VFSWritePage: ns[10], + VFSWritePages: ns[11], + VFSGetdents: ns[12], + VFSSetattr: ns[13], + VFSFlush: ns[14], + VFSFsync: ns[15], + VFSLock: ns[16], + VFSFileRelease: ns[17], + CongestionWait: ns[18], + Truncation: ns[19], + WriteExtension: ns[20], + SillyRename: ns[21], + ShortRead: ns[22], + ShortWrite: ns[23], + JukeboxDelay: ns[24], + PNFSRead: ns[25], + PNFSWrite: ns[26], + }, nil +} + +// parseNFSOperationStats parses a slice of NFSOperationStats by scanning +// additional information about per-operation statistics until an empty +// line is reached. +func parseNFSOperationStats(s *bufio.Scanner) ([]NFSOperationStats, error) { + const ( + // Number of expected fields in each per-operation statistics set + numFields = 9 + ) + + var ops []NFSOperationStats + + for s.Scan() { + ss := strings.Fields(string(s.Bytes())) + if len(ss) == 0 { + // Must break when reading a blank line after per-operation stats to + // enable top-level function to parse the next device entry + break + } + + if len(ss) != numFields { + return nil, fmt.Errorf("invalid NFS per-operations stats: %v", ss) + } + + // Skip string operation name for integers + ns := make([]uint64, 0, numFields-1) + for _, st := range ss[1:] { + n, err := strconv.ParseUint(st, 10, 64) + if err != nil { + return nil, err + } + + ns = append(ns, n) + } + + ops = append(ops, NFSOperationStats{ + Operation: strings.TrimSuffix(ss[0], ":"), + Requests: ns[0], + Transmissions: ns[1], + MajorTimeouts: ns[2], + BytesSent: ns[3], + BytesReceived: ns[4], + CumulativeQueueTime: time.Duration(ns[5]) * time.Millisecond, + CumulativeTotalResponseTime: time.Duration(ns[6]) * time.Millisecond, + CumulativeTotalRequestTime: time.Duration(ns[7]) * time.Millisecond, + }) + } + + return ops, s.Err() +} + +// parseNFSTransportStats parses a NFSTransportStats line using an input set of +// integer fields matched to a specific stats version. +func parseNFSTransportStats(ss []string, statVersion string) (*NFSTransportStats, error) { + switch statVersion { + case statVersion10: + if len(ss) != fieldTransport10Len { + return nil, fmt.Errorf("invalid NFS transport stats 1.0 statement: %v", ss) + } + case statVersion11: + if len(ss) != fieldTransport11Len { + return nil, fmt.Errorf("invalid NFS transport stats 1.1 statement: %v", ss) + } + default: + return nil, fmt.Errorf("unrecognized NFS transport stats version: %q", statVersion) + } + + // Allocate enough for v1.1 stats since zero value for v1.1 stats will be okay + // in a v1.0 response. + // + // Note: slice length must be set to length of v1.1 stats to avoid a panic when + // only v1.0 stats are present. + // See: https://github.com/prometheus/node_exporter/issues/571. + ns := make([]uint64, fieldTransport11Len) + for i, s := range ss { + n, err := strconv.ParseUint(s, 10, 64) + if err != nil { + return nil, err + } + + ns[i] = n + } + + return &NFSTransportStats{ + Port: ns[0], + Bind: ns[1], + Connect: ns[2], + ConnectIdleTime: ns[3], + IdleTime: time.Duration(ns[4]) * time.Second, + Sends: ns[5], + Receives: ns[6], + BadTransactionIDs: ns[7], + CumulativeActiveRequests: ns[8], + CumulativeBacklog: ns[9], + MaximumRPCSlotsUsed: ns[10], + CumulativeSendingQueue: ns[11], + CumulativePendingQueue: ns[12], + }, nil +} diff --git a/vendor/github.com/prometheus/procfs/net_dev.go b/vendor/github.com/prometheus/procfs/net_dev.go new file mode 100644 index 000000000..6c17affe8 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/net_dev.go @@ -0,0 +1,216 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "bufio" + "errors" + "os" + "sort" + "strconv" + "strings" +) + +// NetDevLine is single line parsed from /proc/net/dev or /proc/[pid]/net/dev. +type NetDevLine struct { + Name string `json:"name"` // The name of the interface. + RxBytes uint64 `json:"rx_bytes"` // Cumulative count of bytes received. + RxPackets uint64 `json:"rx_packets"` // Cumulative count of packets received. + RxErrors uint64 `json:"rx_errors"` // Cumulative count of receive errors encountered. + RxDropped uint64 `json:"rx_dropped"` // Cumulative count of packets dropped while receiving. + RxFIFO uint64 `json:"rx_fifo"` // Cumulative count of FIFO buffer errors. + RxFrame uint64 `json:"rx_frame"` // Cumulative count of packet framing errors. + RxCompressed uint64 `json:"rx_compressed"` // Cumulative count of compressed packets received by the device driver. + RxMulticast uint64 `json:"rx_multicast"` // Cumulative count of multicast frames received by the device driver. + TxBytes uint64 `json:"tx_bytes"` // Cumulative count of bytes transmitted. + TxPackets uint64 `json:"tx_packets"` // Cumulative count of packets transmitted. + TxErrors uint64 `json:"tx_errors"` // Cumulative count of transmit errors encountered. + TxDropped uint64 `json:"tx_dropped"` // Cumulative count of packets dropped while transmitting. + TxFIFO uint64 `json:"tx_fifo"` // Cumulative count of FIFO buffer errors. + TxCollisions uint64 `json:"tx_collisions"` // Cumulative count of collisions detected on the interface. + TxCarrier uint64 `json:"tx_carrier"` // Cumulative count of carrier losses detected by the device driver. + TxCompressed uint64 `json:"tx_compressed"` // Cumulative count of compressed packets transmitted by the device driver. +} + +// NetDev is parsed from /proc/net/dev or /proc/[pid]/net/dev. The map keys +// are interface names. +type NetDev map[string]NetDevLine + +// NewNetDev returns kernel/system statistics read from /proc/net/dev. +func NewNetDev() (NetDev, error) { + fs, err := NewFS(DefaultMountPoint) + if err != nil { + return nil, err + } + + return fs.NewNetDev() +} + +// NewNetDev returns kernel/system statistics read from /proc/net/dev. +func (fs FS) NewNetDev() (NetDev, error) { + return newNetDev(fs.Path("net/dev")) +} + +// NewNetDev returns kernel/system statistics read from /proc/[pid]/net/dev. +func (p Proc) NewNetDev() (NetDev, error) { + return newNetDev(p.path("net/dev")) +} + +// newNetDev creates a new NetDev from the contents of the given file. +func newNetDev(file string) (NetDev, error) { + f, err := os.Open(file) + if err != nil { + return NetDev{}, err + } + defer f.Close() + + nd := NetDev{} + s := bufio.NewScanner(f) + for n := 0; s.Scan(); n++ { + // Skip the 2 header lines. + if n < 2 { + continue + } + + line, err := nd.parseLine(s.Text()) + if err != nil { + return nd, err + } + + nd[line.Name] = *line + } + + return nd, s.Err() +} + +// parseLine parses a single line from the /proc/net/dev file. Header lines +// must be filtered prior to calling this method. +func (nd NetDev) parseLine(rawLine string) (*NetDevLine, error) { + parts := strings.SplitN(rawLine, ":", 2) + if len(parts) != 2 { + return nil, errors.New("invalid net/dev line, missing colon") + } + fields := strings.Fields(strings.TrimSpace(parts[1])) + + var err error + line := &NetDevLine{} + + // Interface Name + line.Name = strings.TrimSpace(parts[0]) + if line.Name == "" { + return nil, errors.New("invalid net/dev line, empty interface name") + } + + // RX + line.RxBytes, err = strconv.ParseUint(fields[0], 10, 64) + if err != nil { + return nil, err + } + line.RxPackets, err = strconv.ParseUint(fields[1], 10, 64) + if err != nil { + return nil, err + } + line.RxErrors, err = strconv.ParseUint(fields[2], 10, 64) + if err != nil { + return nil, err + } + line.RxDropped, err = strconv.ParseUint(fields[3], 10, 64) + if err != nil { + return nil, err + } + line.RxFIFO, err = strconv.ParseUint(fields[4], 10, 64) + if err != nil { + return nil, err + } + line.RxFrame, err = strconv.ParseUint(fields[5], 10, 64) + if err != nil { + return nil, err + } + line.RxCompressed, err = strconv.ParseUint(fields[6], 10, 64) + if err != nil { + return nil, err + } + line.RxMulticast, err = strconv.ParseUint(fields[7], 10, 64) + if err != nil { + return nil, err + } + + // TX + line.TxBytes, err = strconv.ParseUint(fields[8], 10, 64) + if err != nil { + return nil, err + } + line.TxPackets, err = strconv.ParseUint(fields[9], 10, 64) + if err != nil { + return nil, err + } + line.TxErrors, err = strconv.ParseUint(fields[10], 10, 64) + if err != nil { + return nil, err + } + line.TxDropped, err = strconv.ParseUint(fields[11], 10, 64) + if err != nil { + return nil, err + } + line.TxFIFO, err = strconv.ParseUint(fields[12], 10, 64) + if err != nil { + return nil, err + } + line.TxCollisions, err = strconv.ParseUint(fields[13], 10, 64) + if err != nil { + return nil, err + } + line.TxCarrier, err = strconv.ParseUint(fields[14], 10, 64) + if err != nil { + return nil, err + } + line.TxCompressed, err = strconv.ParseUint(fields[15], 10, 64) + if err != nil { + return nil, err + } + + return line, nil +} + +// Total aggregates the values across interfaces and returns a new NetDevLine. +// The Name field will be a sorted comma seperated list of interface names. +func (nd NetDev) Total() NetDevLine { + total := NetDevLine{} + + names := make([]string, 0, len(nd)) + for _, ifc := range nd { + names = append(names, ifc.Name) + total.RxBytes += ifc.RxBytes + total.RxPackets += ifc.RxPackets + total.RxPackets += ifc.RxPackets + total.RxErrors += ifc.RxErrors + total.RxDropped += ifc.RxDropped + total.RxFIFO += ifc.RxFIFO + total.RxFrame += ifc.RxFrame + total.RxCompressed += ifc.RxCompressed + total.RxMulticast += ifc.RxMulticast + total.TxBytes += ifc.TxBytes + total.TxPackets += ifc.TxPackets + total.TxErrors += ifc.TxErrors + total.TxDropped += ifc.TxDropped + total.TxFIFO += ifc.TxFIFO + total.TxCollisions += ifc.TxCollisions + total.TxCarrier += ifc.TxCarrier + total.TxCompressed += ifc.TxCompressed + } + sort.Strings(names) + total.Name = strings.Join(names, ", ") + + return total +} diff --git a/vendor/github.com/prometheus/procfs/nfs/nfs.go b/vendor/github.com/prometheus/procfs/nfs/nfs.go new file mode 100644 index 000000000..651bf6819 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/nfs/nfs.go @@ -0,0 +1,263 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package nfs implements parsing of /proc/net/rpc/nfsd. +// Fields are documented in https://www.svennd.be/nfsd-stats-explained-procnetrpcnfsd/ +package nfs + +// ReplyCache models the "rc" line. +type ReplyCache struct { + Hits uint64 + Misses uint64 + NoCache uint64 +} + +// FileHandles models the "fh" line. +type FileHandles struct { + Stale uint64 + TotalLookups uint64 + AnonLookups uint64 + DirNoCache uint64 + NoDirNoCache uint64 +} + +// InputOutput models the "io" line. +type InputOutput struct { + Read uint64 + Write uint64 +} + +// Threads models the "th" line. +type Threads struct { + Threads uint64 + FullCnt uint64 +} + +// ReadAheadCache models the "ra" line. +type ReadAheadCache struct { + CacheSize uint64 + CacheHistogram []uint64 + NotFound uint64 +} + +// Network models the "net" line. +type Network struct { + NetCount uint64 + UDPCount uint64 + TCPCount uint64 + TCPConnect uint64 +} + +// ClientRPC models the nfs "rpc" line. +type ClientRPC struct { + RPCCount uint64 + Retransmissions uint64 + AuthRefreshes uint64 +} + +// ServerRPC models the nfsd "rpc" line. +type ServerRPC struct { + RPCCount uint64 + BadCnt uint64 + BadFmt uint64 + BadAuth uint64 + BadcInt uint64 +} + +// V2Stats models the "proc2" line. +type V2Stats struct { + Null uint64 + GetAttr uint64 + SetAttr uint64 + Root uint64 + Lookup uint64 + ReadLink uint64 + Read uint64 + WrCache uint64 + Write uint64 + Create uint64 + Remove uint64 + Rename uint64 + Link uint64 + SymLink uint64 + MkDir uint64 + RmDir uint64 + ReadDir uint64 + FsStat uint64 +} + +// V3Stats models the "proc3" line. +type V3Stats struct { + Null uint64 + GetAttr uint64 + SetAttr uint64 + Lookup uint64 + Access uint64 + ReadLink uint64 + Read uint64 + Write uint64 + Create uint64 + MkDir uint64 + SymLink uint64 + MkNod uint64 + Remove uint64 + RmDir uint64 + Rename uint64 + Link uint64 + ReadDir uint64 + ReadDirPlus uint64 + FsStat uint64 + FsInfo uint64 + PathConf uint64 + Commit uint64 +} + +// ClientV4Stats models the nfs "proc4" line. +type ClientV4Stats struct { + Null uint64 + Read uint64 + Write uint64 + Commit uint64 + Open uint64 + OpenConfirm uint64 + OpenNoattr uint64 + OpenDowngrade uint64 + Close uint64 + Setattr uint64 + FsInfo uint64 + Renew uint64 + SetClientID uint64 + SetClientIDConfirm uint64 + Lock uint64 + Lockt uint64 + Locku uint64 + Access uint64 + Getattr uint64 + Lookup uint64 + LookupRoot uint64 + Remove uint64 + Rename uint64 + Link uint64 + Symlink uint64 + Create uint64 + Pathconf uint64 + StatFs uint64 + ReadLink uint64 + ReadDir uint64 + ServerCaps uint64 + DelegReturn uint64 + GetACL uint64 + SetACL uint64 + FsLocations uint64 + ReleaseLockowner uint64 + Secinfo uint64 + FsidPresent uint64 + ExchangeID uint64 + CreateSession uint64 + DestroySession uint64 + Sequence uint64 + GetLeaseTime uint64 + ReclaimComplete uint64 + LayoutGet uint64 + GetDeviceInfo uint64 + LayoutCommit uint64 + LayoutReturn uint64 + SecinfoNoName uint64 + TestStateID uint64 + FreeStateID uint64 + GetDeviceList uint64 + BindConnToSession uint64 + DestroyClientID uint64 + Seek uint64 + Allocate uint64 + DeAllocate uint64 + LayoutStats uint64 + Clone uint64 +} + +// ServerV4Stats models the nfsd "proc4" line. +type ServerV4Stats struct { + Null uint64 + Compound uint64 +} + +// V4Ops models the "proc4ops" line: NFSv4 operations +// Variable list, see: +// v4.0 https://tools.ietf.org/html/rfc3010 (38 operations) +// v4.1 https://tools.ietf.org/html/rfc5661 (58 operations) +// v4.2 https://tools.ietf.org/html/draft-ietf-nfsv4-minorversion2-41 (71 operations) +type V4Ops struct { + //Values uint64 // Variable depending on v4.x sub-version. TODO: Will this always at least include the fields in this struct? + Op0Unused uint64 + Op1Unused uint64 + Op2Future uint64 + Access uint64 + Close uint64 + Commit uint64 + Create uint64 + DelegPurge uint64 + DelegReturn uint64 + GetAttr uint64 + GetFH uint64 + Link uint64 + Lock uint64 + Lockt uint64 + Locku uint64 + Lookup uint64 + LookupRoot uint64 + Nverify uint64 + Open uint64 + OpenAttr uint64 + OpenConfirm uint64 + OpenDgrd uint64 + PutFH uint64 + PutPubFH uint64 + PutRootFH uint64 + Read uint64 + ReadDir uint64 + ReadLink uint64 + Remove uint64 + Rename uint64 + Renew uint64 + RestoreFH uint64 + SaveFH uint64 + SecInfo uint64 + SetAttr uint64 + Verify uint64 + Write uint64 + RelLockOwner uint64 +} + +// ClientRPCStats models all stats from /proc/net/rpc/nfs. +type ClientRPCStats struct { + Network Network + ClientRPC ClientRPC + V2Stats V2Stats + V3Stats V3Stats + ClientV4Stats ClientV4Stats +} + +// ServerRPCStats models all stats from /proc/net/rpc/nfsd. +type ServerRPCStats struct { + ReplyCache ReplyCache + FileHandles FileHandles + InputOutput InputOutput + Threads Threads + ReadAheadCache ReadAheadCache + Network Network + ServerRPC ServerRPC + V2Stats V2Stats + V3Stats V3Stats + ServerV4Stats ServerV4Stats + V4Ops V4Ops +} diff --git a/vendor/github.com/prometheus/procfs/nfs/parse.go b/vendor/github.com/prometheus/procfs/nfs/parse.go new file mode 100644 index 000000000..95a83cc5b --- /dev/null +++ b/vendor/github.com/prometheus/procfs/nfs/parse.go @@ -0,0 +1,317 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package nfs + +import ( + "fmt" +) + +func parseReplyCache(v []uint64) (ReplyCache, error) { + if len(v) != 3 { + return ReplyCache{}, fmt.Errorf("invalid ReplyCache line %q", v) + } + + return ReplyCache{ + Hits: v[0], + Misses: v[1], + NoCache: v[2], + }, nil +} + +func parseFileHandles(v []uint64) (FileHandles, error) { + if len(v) != 5 { + return FileHandles{}, fmt.Errorf("invalid FileHandles, line %q", v) + } + + return FileHandles{ + Stale: v[0], + TotalLookups: v[1], + AnonLookups: v[2], + DirNoCache: v[3], + NoDirNoCache: v[4], + }, nil +} + +func parseInputOutput(v []uint64) (InputOutput, error) { + if len(v) != 2 { + return InputOutput{}, fmt.Errorf("invalid InputOutput line %q", v) + } + + return InputOutput{ + Read: v[0], + Write: v[1], + }, nil +} + +func parseThreads(v []uint64) (Threads, error) { + if len(v) != 2 { + return Threads{}, fmt.Errorf("invalid Threads line %q", v) + } + + return Threads{ + Threads: v[0], + FullCnt: v[1], + }, nil +} + +func parseReadAheadCache(v []uint64) (ReadAheadCache, error) { + if len(v) != 12 { + return ReadAheadCache{}, fmt.Errorf("invalid ReadAheadCache line %q", v) + } + + return ReadAheadCache{ + CacheSize: v[0], + CacheHistogram: v[1:11], + NotFound: v[11], + }, nil +} + +func parseNetwork(v []uint64) (Network, error) { + if len(v) != 4 { + return Network{}, fmt.Errorf("invalid Network line %q", v) + } + + return Network{ + NetCount: v[0], + UDPCount: v[1], + TCPCount: v[2], + TCPConnect: v[3], + }, nil +} + +func parseServerRPC(v []uint64) (ServerRPC, error) { + if len(v) != 5 { + return ServerRPC{}, fmt.Errorf("invalid RPC line %q", v) + } + + return ServerRPC{ + RPCCount: v[0], + BadCnt: v[1], + BadFmt: v[2], + BadAuth: v[3], + BadcInt: v[4], + }, nil +} + +func parseClientRPC(v []uint64) (ClientRPC, error) { + if len(v) != 3 { + return ClientRPC{}, fmt.Errorf("invalid RPC line %q", v) + } + + return ClientRPC{ + RPCCount: v[0], + Retransmissions: v[1], + AuthRefreshes: v[2], + }, nil +} + +func parseV2Stats(v []uint64) (V2Stats, error) { + values := int(v[0]) + if len(v[1:]) != values || values != 18 { + return V2Stats{}, fmt.Errorf("invalid V2Stats line %q", v) + } + + return V2Stats{ + Null: v[1], + GetAttr: v[2], + SetAttr: v[3], + Root: v[4], + Lookup: v[5], + ReadLink: v[6], + Read: v[7], + WrCache: v[8], + Write: v[9], + Create: v[10], + Remove: v[11], + Rename: v[12], + Link: v[13], + SymLink: v[14], + MkDir: v[15], + RmDir: v[16], + ReadDir: v[17], + FsStat: v[18], + }, nil +} + +func parseV3Stats(v []uint64) (V3Stats, error) { + values := int(v[0]) + if len(v[1:]) != values || values != 22 { + return V3Stats{}, fmt.Errorf("invalid V3Stats line %q", v) + } + + return V3Stats{ + Null: v[1], + GetAttr: v[2], + SetAttr: v[3], + Lookup: v[4], + Access: v[5], + ReadLink: v[6], + Read: v[7], + Write: v[8], + Create: v[9], + MkDir: v[10], + SymLink: v[11], + MkNod: v[12], + Remove: v[13], + RmDir: v[14], + Rename: v[15], + Link: v[16], + ReadDir: v[17], + ReadDirPlus: v[18], + FsStat: v[19], + FsInfo: v[20], + PathConf: v[21], + Commit: v[22], + }, nil +} + +func parseClientV4Stats(v []uint64) (ClientV4Stats, error) { + values := int(v[0]) + if len(v[1:]) != values { + return ClientV4Stats{}, fmt.Errorf("invalid ClientV4Stats line %q", v) + } + + // This function currently supports mapping 59 NFS v4 client stats. Older + // kernels may emit fewer stats, so we must detect this and pad out the + // values to match the expected slice size. + if values < 59 { + newValues := make([]uint64, 60) + copy(newValues, v) + v = newValues + } + + return ClientV4Stats{ + Null: v[1], + Read: v[2], + Write: v[3], + Commit: v[4], + Open: v[5], + OpenConfirm: v[6], + OpenNoattr: v[7], + OpenDowngrade: v[8], + Close: v[9], + Setattr: v[10], + FsInfo: v[11], + Renew: v[12], + SetClientID: v[13], + SetClientIDConfirm: v[14], + Lock: v[15], + Lockt: v[16], + Locku: v[17], + Access: v[18], + Getattr: v[19], + Lookup: v[20], + LookupRoot: v[21], + Remove: v[22], + Rename: v[23], + Link: v[24], + Symlink: v[25], + Create: v[26], + Pathconf: v[27], + StatFs: v[28], + ReadLink: v[29], + ReadDir: v[30], + ServerCaps: v[31], + DelegReturn: v[32], + GetACL: v[33], + SetACL: v[34], + FsLocations: v[35], + ReleaseLockowner: v[36], + Secinfo: v[37], + FsidPresent: v[38], + ExchangeID: v[39], + CreateSession: v[40], + DestroySession: v[41], + Sequence: v[42], + GetLeaseTime: v[43], + ReclaimComplete: v[44], + LayoutGet: v[45], + GetDeviceInfo: v[46], + LayoutCommit: v[47], + LayoutReturn: v[48], + SecinfoNoName: v[49], + TestStateID: v[50], + FreeStateID: v[51], + GetDeviceList: v[52], + BindConnToSession: v[53], + DestroyClientID: v[54], + Seek: v[55], + Allocate: v[56], + DeAllocate: v[57], + LayoutStats: v[58], + Clone: v[59], + }, nil +} + +func parseServerV4Stats(v []uint64) (ServerV4Stats, error) { + values := int(v[0]) + if len(v[1:]) != values || values != 2 { + return ServerV4Stats{}, fmt.Errorf("invalid V4Stats line %q", v) + } + + return ServerV4Stats{ + Null: v[1], + Compound: v[2], + }, nil +} + +func parseV4Ops(v []uint64) (V4Ops, error) { + values := int(v[0]) + if len(v[1:]) != values || values < 39 { + return V4Ops{}, fmt.Errorf("invalid V4Ops line %q", v) + } + + stats := V4Ops{ + Op0Unused: v[1], + Op1Unused: v[2], + Op2Future: v[3], + Access: v[4], + Close: v[5], + Commit: v[6], + Create: v[7], + DelegPurge: v[8], + DelegReturn: v[9], + GetAttr: v[10], + GetFH: v[11], + Link: v[12], + Lock: v[13], + Lockt: v[14], + Locku: v[15], + Lookup: v[16], + LookupRoot: v[17], + Nverify: v[18], + Open: v[19], + OpenAttr: v[20], + OpenConfirm: v[21], + OpenDgrd: v[22], + PutFH: v[23], + PutPubFH: v[24], + PutRootFH: v[25], + Read: v[26], + ReadDir: v[27], + ReadLink: v[28], + Remove: v[29], + Rename: v[30], + Renew: v[31], + RestoreFH: v[32], + SaveFH: v[33], + SecInfo: v[34], + SetAttr: v[35], + Verify: v[36], + Write: v[37], + RelLockOwner: v[38], + } + + return stats, nil +} diff --git a/vendor/github.com/prometheus/procfs/nfs/parse_nfs.go b/vendor/github.com/prometheus/procfs/nfs/parse_nfs.go new file mode 100644 index 000000000..c0d3a5ad9 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/nfs/parse_nfs.go @@ -0,0 +1,67 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package nfs + +import ( + "bufio" + "fmt" + "io" + "strings" + + "github.com/prometheus/procfs/internal/util" +) + +// ParseClientRPCStats returns stats read from /proc/net/rpc/nfs +func ParseClientRPCStats(r io.Reader) (*ClientRPCStats, error) { + stats := &ClientRPCStats{} + + scanner := bufio.NewScanner(r) + for scanner.Scan() { + line := scanner.Text() + parts := strings.Fields(scanner.Text()) + // require at least + if len(parts) < 2 { + return nil, fmt.Errorf("invalid NFS metric line %q", line) + } + + values, err := util.ParseUint64s(parts[1:]) + if err != nil { + return nil, fmt.Errorf("error parsing NFS metric line: %s", err) + } + + switch metricLine := parts[0]; metricLine { + case "net": + stats.Network, err = parseNetwork(values) + case "rpc": + stats.ClientRPC, err = parseClientRPC(values) + case "proc2": + stats.V2Stats, err = parseV2Stats(values) + case "proc3": + stats.V3Stats, err = parseV3Stats(values) + case "proc4": + stats.ClientV4Stats, err = parseClientV4Stats(values) + default: + return nil, fmt.Errorf("unknown NFS metric line %q", metricLine) + } + if err != nil { + return nil, fmt.Errorf("errors parsing NFS metric line: %s", err) + } + } + + if err := scanner.Err(); err != nil { + return nil, fmt.Errorf("error scanning NFS file: %s", err) + } + + return stats, nil +} diff --git a/vendor/github.com/prometheus/procfs/nfs/parse_nfsd.go b/vendor/github.com/prometheus/procfs/nfs/parse_nfsd.go new file mode 100644 index 000000000..57bb4a358 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/nfs/parse_nfsd.go @@ -0,0 +1,89 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package nfs + +import ( + "bufio" + "fmt" + "io" + "strings" + + "github.com/prometheus/procfs/internal/util" +) + +// ParseServerRPCStats returns stats read from /proc/net/rpc/nfsd +func ParseServerRPCStats(r io.Reader) (*ServerRPCStats, error) { + stats := &ServerRPCStats{} + + scanner := bufio.NewScanner(r) + for scanner.Scan() { + line := scanner.Text() + parts := strings.Fields(scanner.Text()) + // require at least + if len(parts) < 2 { + return nil, fmt.Errorf("invalid NFSd metric line %q", line) + } + label := parts[0] + + var values []uint64 + var err error + if label == "th" { + if len(parts) < 3 { + return nil, fmt.Errorf("invalid NFSd th metric line %q", line) + } + values, err = util.ParseUint64s(parts[1:3]) + } else { + values, err = util.ParseUint64s(parts[1:]) + } + if err != nil { + return nil, fmt.Errorf("error parsing NFSd metric line: %s", err) + } + + switch metricLine := parts[0]; metricLine { + case "rc": + stats.ReplyCache, err = parseReplyCache(values) + case "fh": + stats.FileHandles, err = parseFileHandles(values) + case "io": + stats.InputOutput, err = parseInputOutput(values) + case "th": + stats.Threads, err = parseThreads(values) + case "ra": + stats.ReadAheadCache, err = parseReadAheadCache(values) + case "net": + stats.Network, err = parseNetwork(values) + case "rpc": + stats.ServerRPC, err = parseServerRPC(values) + case "proc2": + stats.V2Stats, err = parseV2Stats(values) + case "proc3": + stats.V3Stats, err = parseV3Stats(values) + case "proc4": + stats.ServerV4Stats, err = parseServerV4Stats(values) + case "proc4ops": + stats.V4Ops, err = parseV4Ops(values) + default: + return nil, fmt.Errorf("unknown NFSd metric line %q", metricLine) + } + if err != nil { + return nil, fmt.Errorf("errors parsing NFSd metric line: %s", err) + } + } + + if err := scanner.Err(); err != nil { + return nil, fmt.Errorf("error scanning NFSd file: %s", err) + } + + return stats, nil +} diff --git a/vendor/github.com/prometheus/procfs/proc.go b/vendor/github.com/prometheus/procfs/proc.go new file mode 100644 index 000000000..7cf5b8acf --- /dev/null +++ b/vendor/github.com/prometheus/procfs/proc.go @@ -0,0 +1,238 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "bytes" + "fmt" + "io/ioutil" + "os" + "strconv" + "strings" +) + +// Proc provides information about a running process. +type Proc struct { + // The process ID. + PID int + + fs FS +} + +// Procs represents a list of Proc structs. +type Procs []Proc + +func (p Procs) Len() int { return len(p) } +func (p Procs) Swap(i, j int) { p[i], p[j] = p[j], p[i] } +func (p Procs) Less(i, j int) bool { return p[i].PID < p[j].PID } + +// Self returns a process for the current process read via /proc/self. +func Self() (Proc, error) { + fs, err := NewFS(DefaultMountPoint) + if err != nil { + return Proc{}, err + } + return fs.Self() +} + +// NewProc returns a process for the given pid under /proc. +func NewProc(pid int) (Proc, error) { + fs, err := NewFS(DefaultMountPoint) + if err != nil { + return Proc{}, err + } + return fs.NewProc(pid) +} + +// AllProcs returns a list of all currently available processes under /proc. +func AllProcs() (Procs, error) { + fs, err := NewFS(DefaultMountPoint) + if err != nil { + return Procs{}, err + } + return fs.AllProcs() +} + +// Self returns a process for the current process. +func (fs FS) Self() (Proc, error) { + p, err := os.Readlink(fs.Path("self")) + if err != nil { + return Proc{}, err + } + pid, err := strconv.Atoi(strings.Replace(p, string(fs), "", -1)) + if err != nil { + return Proc{}, err + } + return fs.NewProc(pid) +} + +// NewProc returns a process for the given pid. +func (fs FS) NewProc(pid int) (Proc, error) { + if _, err := os.Stat(fs.Path(strconv.Itoa(pid))); err != nil { + return Proc{}, err + } + return Proc{PID: pid, fs: fs}, nil +} + +// AllProcs returns a list of all currently available processes. +func (fs FS) AllProcs() (Procs, error) { + d, err := os.Open(fs.Path()) + if err != nil { + return Procs{}, err + } + defer d.Close() + + names, err := d.Readdirnames(-1) + if err != nil { + return Procs{}, fmt.Errorf("could not read %s: %s", d.Name(), err) + } + + p := Procs{} + for _, n := range names { + pid, err := strconv.ParseInt(n, 10, 64) + if err != nil { + continue + } + p = append(p, Proc{PID: int(pid), fs: fs}) + } + + return p, nil +} + +// CmdLine returns the command line of a process. +func (p Proc) CmdLine() ([]string, error) { + f, err := os.Open(p.path("cmdline")) + if err != nil { + return nil, err + } + defer f.Close() + + data, err := ioutil.ReadAll(f) + if err != nil { + return nil, err + } + + if len(data) < 1 { + return []string{}, nil + } + + return strings.Split(string(bytes.TrimRight(data, string("\x00"))), string(byte(0))), nil +} + +// Comm returns the command name of a process. +func (p Proc) Comm() (string, error) { + f, err := os.Open(p.path("comm")) + if err != nil { + return "", err + } + defer f.Close() + + data, err := ioutil.ReadAll(f) + if err != nil { + return "", err + } + + return strings.TrimSpace(string(data)), nil +} + +// Executable returns the absolute path of the executable command of a process. +func (p Proc) Executable() (string, error) { + exe, err := os.Readlink(p.path("exe")) + if os.IsNotExist(err) { + return "", nil + } + + return exe, err +} + +// FileDescriptors returns the currently open file descriptors of a process. +func (p Proc) FileDescriptors() ([]uintptr, error) { + names, err := p.fileDescriptors() + if err != nil { + return nil, err + } + + fds := make([]uintptr, len(names)) + for i, n := range names { + fd, err := strconv.ParseInt(n, 10, 32) + if err != nil { + return nil, fmt.Errorf("could not parse fd %s: %s", n, err) + } + fds[i] = uintptr(fd) + } + + return fds, nil +} + +// FileDescriptorTargets returns the targets of all file descriptors of a process. +// If a file descriptor is not a symlink to a file (like a socket), that value will be the empty string. +func (p Proc) FileDescriptorTargets() ([]string, error) { + names, err := p.fileDescriptors() + if err != nil { + return nil, err + } + + targets := make([]string, len(names)) + + for i, name := range names { + target, err := os.Readlink(p.path("fd", name)) + if err == nil { + targets[i] = target + } + } + + return targets, nil +} + +// FileDescriptorsLen returns the number of currently open file descriptors of +// a process. +func (p Proc) FileDescriptorsLen() (int, error) { + fds, err := p.fileDescriptors() + if err != nil { + return 0, err + } + + return len(fds), nil +} + +// MountStats retrieves statistics and configuration for mount points in a +// process's namespace. +func (p Proc) MountStats() ([]*Mount, error) { + f, err := os.Open(p.path("mountstats")) + if err != nil { + return nil, err + } + defer f.Close() + + return parseMountStats(f) +} + +func (p Proc) fileDescriptors() ([]string, error) { + d, err := os.Open(p.path("fd")) + if err != nil { + return nil, err + } + defer d.Close() + + names, err := d.Readdirnames(-1) + if err != nil { + return nil, fmt.Errorf("could not read %s: %s", d.Name(), err) + } + + return names, nil +} + +func (p Proc) path(pa ...string) string { + return p.fs.Path(append([]string{strconv.Itoa(p.PID)}, pa...)...) +} diff --git a/vendor/github.com/prometheus/procfs/proc_io.go b/vendor/github.com/prometheus/procfs/proc_io.go new file mode 100644 index 000000000..0251c83bf --- /dev/null +++ b/vendor/github.com/prometheus/procfs/proc_io.go @@ -0,0 +1,65 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "fmt" + "io/ioutil" + "os" +) + +// ProcIO models the content of /proc//io. +type ProcIO struct { + // Chars read. + RChar uint64 + // Chars written. + WChar uint64 + // Read syscalls. + SyscR uint64 + // Write syscalls. + SyscW uint64 + // Bytes read. + ReadBytes uint64 + // Bytes written. + WriteBytes uint64 + // Bytes written, but taking into account truncation. See + // Documentation/filesystems/proc.txt in the kernel sources for + // detailed explanation. + CancelledWriteBytes int64 +} + +// NewIO creates a new ProcIO instance from a given Proc instance. +func (p Proc) NewIO() (ProcIO, error) { + pio := ProcIO{} + + f, err := os.Open(p.path("io")) + if err != nil { + return pio, err + } + defer f.Close() + + data, err := ioutil.ReadAll(f) + if err != nil { + return pio, err + } + + ioFormat := "rchar: %d\nwchar: %d\nsyscr: %d\nsyscw: %d\n" + + "read_bytes: %d\nwrite_bytes: %d\n" + + "cancelled_write_bytes: %d\n" + + _, err = fmt.Sscanf(string(data), ioFormat, &pio.RChar, &pio.WChar, &pio.SyscR, + &pio.SyscW, &pio.ReadBytes, &pio.WriteBytes, &pio.CancelledWriteBytes) + + return pio, err +} diff --git a/vendor/github.com/prometheus/procfs/proc_limits.go b/vendor/github.com/prometheus/procfs/proc_limits.go new file mode 100644 index 000000000..f04ba6fda --- /dev/null +++ b/vendor/github.com/prometheus/procfs/proc_limits.go @@ -0,0 +1,150 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "bufio" + "fmt" + "os" + "regexp" + "strconv" +) + +// ProcLimits represents the soft limits for each of the process's resource +// limits. For more information see getrlimit(2): +// http://man7.org/linux/man-pages/man2/getrlimit.2.html. +type ProcLimits struct { + // CPU time limit in seconds. + CPUTime int64 + // Maximum size of files that the process may create. + FileSize int64 + // Maximum size of the process's data segment (initialized data, + // uninitialized data, and heap). + DataSize int64 + // Maximum size of the process stack in bytes. + StackSize int64 + // Maximum size of a core file. + CoreFileSize int64 + // Limit of the process's resident set in pages. + ResidentSet int64 + // Maximum number of processes that can be created for the real user ID of + // the calling process. + Processes int64 + // Value one greater than the maximum file descriptor number that can be + // opened by this process. + OpenFiles int64 + // Maximum number of bytes of memory that may be locked into RAM. + LockedMemory int64 + // Maximum size of the process's virtual memory address space in bytes. + AddressSpace int64 + // Limit on the combined number of flock(2) locks and fcntl(2) leases that + // this process may establish. + FileLocks int64 + // Limit of signals that may be queued for the real user ID of the calling + // process. + PendingSignals int64 + // Limit on the number of bytes that can be allocated for POSIX message + // queues for the real user ID of the calling process. + MsqqueueSize int64 + // Limit of the nice priority set using setpriority(2) or nice(2). + NicePriority int64 + // Limit of the real-time priority set using sched_setscheduler(2) or + // sched_setparam(2). + RealtimePriority int64 + // Limit (in microseconds) on the amount of CPU time that a process + // scheduled under a real-time scheduling policy may consume without making + // a blocking system call. + RealtimeTimeout int64 +} + +const ( + limitsFields = 3 + limitsUnlimited = "unlimited" +) + +var ( + limitsDelimiter = regexp.MustCompile(" +") +) + +// NewLimits returns the current soft limits of the process. +func (p Proc) NewLimits() (ProcLimits, error) { + f, err := os.Open(p.path("limits")) + if err != nil { + return ProcLimits{}, err + } + defer f.Close() + + var ( + l = ProcLimits{} + s = bufio.NewScanner(f) + ) + for s.Scan() { + fields := limitsDelimiter.Split(s.Text(), limitsFields) + if len(fields) != limitsFields { + return ProcLimits{}, fmt.Errorf( + "couldn't parse %s line %s", f.Name(), s.Text()) + } + + switch fields[0] { + case "Max cpu time": + l.CPUTime, err = parseInt(fields[1]) + case "Max file size": + l.FileSize, err = parseInt(fields[1]) + case "Max data size": + l.DataSize, err = parseInt(fields[1]) + case "Max stack size": + l.StackSize, err = parseInt(fields[1]) + case "Max core file size": + l.CoreFileSize, err = parseInt(fields[1]) + case "Max resident set": + l.ResidentSet, err = parseInt(fields[1]) + case "Max processes": + l.Processes, err = parseInt(fields[1]) + case "Max open files": + l.OpenFiles, err = parseInt(fields[1]) + case "Max locked memory": + l.LockedMemory, err = parseInt(fields[1]) + case "Max address space": + l.AddressSpace, err = parseInt(fields[1]) + case "Max file locks": + l.FileLocks, err = parseInt(fields[1]) + case "Max pending signals": + l.PendingSignals, err = parseInt(fields[1]) + case "Max msgqueue size": + l.MsqqueueSize, err = parseInt(fields[1]) + case "Max nice priority": + l.NicePriority, err = parseInt(fields[1]) + case "Max realtime priority": + l.RealtimePriority, err = parseInt(fields[1]) + case "Max realtime timeout": + l.RealtimeTimeout, err = parseInt(fields[1]) + } + if err != nil { + return ProcLimits{}, err + } + } + + return l, s.Err() +} + +func parseInt(s string) (int64, error) { + if s == limitsUnlimited { + return -1, nil + } + i, err := strconv.ParseInt(s, 10, 64) + if err != nil { + return 0, fmt.Errorf("couldn't parse value %s: %s", s, err) + } + return i, nil +} diff --git a/vendor/github.com/prometheus/procfs/proc_ns.go b/vendor/github.com/prometheus/procfs/proc_ns.go new file mode 100644 index 000000000..d06c26eba --- /dev/null +++ b/vendor/github.com/prometheus/procfs/proc_ns.go @@ -0,0 +1,68 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "fmt" + "os" + "strconv" + "strings" +) + +// Namespace represents a single namespace of a process. +type Namespace struct { + Type string // Namespace type. + Inode uint32 // Inode number of the namespace. If two processes are in the same namespace their inodes will match. +} + +// Namespaces contains all of the namespaces that the process is contained in. +type Namespaces map[string]Namespace + +// NewNamespaces reads from /proc/[pid/ns/* to get the namespaces of which the +// process is a member. +func (p Proc) NewNamespaces() (Namespaces, error) { + d, err := os.Open(p.path("ns")) + if err != nil { + return nil, err + } + defer d.Close() + + names, err := d.Readdirnames(-1) + if err != nil { + return nil, fmt.Errorf("failed to read contents of ns dir: %v", err) + } + + ns := make(Namespaces, len(names)) + for _, name := range names { + target, err := os.Readlink(p.path("ns", name)) + if err != nil { + return nil, err + } + + fields := strings.SplitN(target, ":", 2) + if len(fields) != 2 { + return nil, fmt.Errorf("failed to parse namespace type and inode from '%v'", target) + } + + typ := fields[0] + inode, err := strconv.ParseUint(strings.Trim(fields[1], "[]"), 10, 32) + if err != nil { + return nil, fmt.Errorf("failed to parse inode from '%v': %v", fields[1], err) + } + + ns[name] = Namespace{typ, uint32(inode)} + } + + return ns, nil +} diff --git a/vendor/github.com/prometheus/procfs/proc_stat.go b/vendor/github.com/prometheus/procfs/proc_stat.go new file mode 100644 index 000000000..3cf2a9f18 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/proc_stat.go @@ -0,0 +1,188 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "bytes" + "fmt" + "io/ioutil" + "os" +) + +// Originally, this USER_HZ value was dynamically retrieved via a sysconf call +// which required cgo. However, that caused a lot of problems regarding +// cross-compilation. Alternatives such as running a binary to determine the +// value, or trying to derive it in some other way were all problematic. After +// much research it was determined that USER_HZ is actually hardcoded to 100 on +// all Go-supported platforms as of the time of this writing. This is why we +// decided to hardcode it here as well. It is not impossible that there could +// be systems with exceptions, but they should be very exotic edge cases, and +// in that case, the worst outcome will be two misreported metrics. +// +// See also the following discussions: +// +// - https://github.com/prometheus/node_exporter/issues/52 +// - https://github.com/prometheus/procfs/pull/2 +// - http://stackoverflow.com/questions/17410841/how-does-user-hz-solve-the-jiffy-scaling-issue +const userHZ = 100 + +// ProcStat provides status information about the process, +// read from /proc/[pid]/stat. +type ProcStat struct { + // The process ID. + PID int + // The filename of the executable. + Comm string + // The process state. + State string + // The PID of the parent of this process. + PPID int + // The process group ID of the process. + PGRP int + // The session ID of the process. + Session int + // The controlling terminal of the process. + TTY int + // The ID of the foreground process group of the controlling terminal of + // the process. + TPGID int + // The kernel flags word of the process. + Flags uint + // The number of minor faults the process has made which have not required + // loading a memory page from disk. + MinFlt uint + // The number of minor faults that the process's waited-for children have + // made. + CMinFlt uint + // The number of major faults the process has made which have required + // loading a memory page from disk. + MajFlt uint + // The number of major faults that the process's waited-for children have + // made. + CMajFlt uint + // Amount of time that this process has been scheduled in user mode, + // measured in clock ticks. + UTime uint + // Amount of time that this process has been scheduled in kernel mode, + // measured in clock ticks. + STime uint + // Amount of time that this process's waited-for children have been + // scheduled in user mode, measured in clock ticks. + CUTime uint + // Amount of time that this process's waited-for children have been + // scheduled in kernel mode, measured in clock ticks. + CSTime uint + // For processes running a real-time scheduling policy, this is the negated + // scheduling priority, minus one. + Priority int + // The nice value, a value in the range 19 (low priority) to -20 (high + // priority). + Nice int + // Number of threads in this process. + NumThreads int + // The time the process started after system boot, the value is expressed + // in clock ticks. + Starttime uint64 + // Virtual memory size in bytes. + VSize int + // Resident set size in pages. + RSS int + + fs FS +} + +// NewStat returns the current status information of the process. +func (p Proc) NewStat() (ProcStat, error) { + f, err := os.Open(p.path("stat")) + if err != nil { + return ProcStat{}, err + } + defer f.Close() + + data, err := ioutil.ReadAll(f) + if err != nil { + return ProcStat{}, err + } + + var ( + ignore int + + s = ProcStat{PID: p.PID, fs: p.fs} + l = bytes.Index(data, []byte("(")) + r = bytes.LastIndex(data, []byte(")")) + ) + + if l < 0 || r < 0 { + return ProcStat{}, fmt.Errorf( + "unexpected format, couldn't extract comm: %s", + data, + ) + } + + s.Comm = string(data[l+1 : r]) + _, err = fmt.Fscan( + bytes.NewBuffer(data[r+2:]), + &s.State, + &s.PPID, + &s.PGRP, + &s.Session, + &s.TTY, + &s.TPGID, + &s.Flags, + &s.MinFlt, + &s.CMinFlt, + &s.MajFlt, + &s.CMajFlt, + &s.UTime, + &s.STime, + &s.CUTime, + &s.CSTime, + &s.Priority, + &s.Nice, + &s.NumThreads, + &ignore, + &s.Starttime, + &s.VSize, + &s.RSS, + ) + if err != nil { + return ProcStat{}, err + } + + return s, nil +} + +// VirtualMemory returns the virtual memory size in bytes. +func (s ProcStat) VirtualMemory() int { + return s.VSize +} + +// ResidentMemory returns the resident memory size in bytes. +func (s ProcStat) ResidentMemory() int { + return s.RSS * os.Getpagesize() +} + +// StartTime returns the unix timestamp of the process in seconds. +func (s ProcStat) StartTime() (float64, error) { + stat, err := s.fs.NewStat() + if err != nil { + return 0, err + } + return float64(stat.BootTime) + (float64(s.Starttime) / userHZ), nil +} + +// CPUTime returns the total CPU user and system time in seconds. +func (s ProcStat) CPUTime() float64 { + return float64(s.UTime+s.STime) / userHZ +} diff --git a/vendor/github.com/prometheus/procfs/stat.go b/vendor/github.com/prometheus/procfs/stat.go new file mode 100644 index 000000000..61eb6b0e3 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/stat.go @@ -0,0 +1,232 @@ +// Copyright 2018 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "bufio" + "fmt" + "io" + "os" + "strconv" + "strings" +) + +// CPUStat shows how much time the cpu spend in various stages. +type CPUStat struct { + User float64 + Nice float64 + System float64 + Idle float64 + Iowait float64 + IRQ float64 + SoftIRQ float64 + Steal float64 + Guest float64 + GuestNice float64 +} + +// SoftIRQStat represent the softirq statistics as exported in the procfs stat file. +// A nice introduction can be found at https://0xax.gitbooks.io/linux-insides/content/interrupts/interrupts-9.html +// It is possible to get per-cpu stats by reading /proc/softirqs +type SoftIRQStat struct { + Hi uint64 + Timer uint64 + NetTx uint64 + NetRx uint64 + Block uint64 + BlockIoPoll uint64 + Tasklet uint64 + Sched uint64 + Hrtimer uint64 + Rcu uint64 +} + +// Stat represents kernel/system statistics. +type Stat struct { + // Boot time in seconds since the Epoch. + BootTime uint64 + // Summed up cpu statistics. + CPUTotal CPUStat + // Per-CPU statistics. + CPU []CPUStat + // Number of times interrupts were handled, which contains numbered and unnumbered IRQs. + IRQTotal uint64 + // Number of times a numbered IRQ was triggered. + IRQ []uint64 + // Number of times a context switch happened. + ContextSwitches uint64 + // Number of times a process was created. + ProcessCreated uint64 + // Number of processes currently running. + ProcessesRunning uint64 + // Number of processes currently blocked (waiting for IO). + ProcessesBlocked uint64 + // Number of times a softirq was scheduled. + SoftIRQTotal uint64 + // Detailed softirq statistics. + SoftIRQ SoftIRQStat +} + +// NewStat returns kernel/system statistics read from /proc/stat. +func NewStat() (Stat, error) { + fs, err := NewFS(DefaultMountPoint) + if err != nil { + return Stat{}, err + } + + return fs.NewStat() +} + +// Parse a cpu statistics line and returns the CPUStat struct plus the cpu id (or -1 for the overall sum). +func parseCPUStat(line string) (CPUStat, int64, error) { + cpuStat := CPUStat{} + var cpu string + + count, err := fmt.Sscanf(line, "%s %f %f %f %f %f %f %f %f %f %f", + &cpu, + &cpuStat.User, &cpuStat.Nice, &cpuStat.System, &cpuStat.Idle, + &cpuStat.Iowait, &cpuStat.IRQ, &cpuStat.SoftIRQ, &cpuStat.Steal, + &cpuStat.Guest, &cpuStat.GuestNice) + + if err != nil && err != io.EOF { + return CPUStat{}, -1, fmt.Errorf("couldn't parse %s (cpu): %s", line, err) + } + if count == 0 { + return CPUStat{}, -1, fmt.Errorf("couldn't parse %s (cpu): 0 elements parsed", line) + } + + cpuStat.User /= userHZ + cpuStat.Nice /= userHZ + cpuStat.System /= userHZ + cpuStat.Idle /= userHZ + cpuStat.Iowait /= userHZ + cpuStat.IRQ /= userHZ + cpuStat.SoftIRQ /= userHZ + cpuStat.Steal /= userHZ + cpuStat.Guest /= userHZ + cpuStat.GuestNice /= userHZ + + if cpu == "cpu" { + return cpuStat, -1, nil + } + + cpuID, err := strconv.ParseInt(cpu[3:], 10, 64) + if err != nil { + return CPUStat{}, -1, fmt.Errorf("couldn't parse %s (cpu/cpuid): %s", line, err) + } + + return cpuStat, cpuID, nil +} + +// Parse a softirq line. +func parseSoftIRQStat(line string) (SoftIRQStat, uint64, error) { + softIRQStat := SoftIRQStat{} + var total uint64 + var prefix string + + _, err := fmt.Sscanf(line, "%s %d %d %d %d %d %d %d %d %d %d %d", + &prefix, &total, + &softIRQStat.Hi, &softIRQStat.Timer, &softIRQStat.NetTx, &softIRQStat.NetRx, + &softIRQStat.Block, &softIRQStat.BlockIoPoll, + &softIRQStat.Tasklet, &softIRQStat.Sched, + &softIRQStat.Hrtimer, &softIRQStat.Rcu) + + if err != nil { + return SoftIRQStat{}, 0, fmt.Errorf("couldn't parse %s (softirq): %s", line, err) + } + + return softIRQStat, total, nil +} + +// NewStat returns an information about current kernel/system statistics. +func (fs FS) NewStat() (Stat, error) { + // See https://www.kernel.org/doc/Documentation/filesystems/proc.txt + + f, err := os.Open(fs.Path("stat")) + if err != nil { + return Stat{}, err + } + defer f.Close() + + stat := Stat{} + + scanner := bufio.NewScanner(f) + for scanner.Scan() { + line := scanner.Text() + parts := strings.Fields(scanner.Text()) + // require at least + if len(parts) < 2 { + continue + } + switch { + case parts[0] == "btime": + if stat.BootTime, err = strconv.ParseUint(parts[1], 10, 64); err != nil { + return Stat{}, fmt.Errorf("couldn't parse %s (btime): %s", parts[1], err) + } + case parts[0] == "intr": + if stat.IRQTotal, err = strconv.ParseUint(parts[1], 10, 64); err != nil { + return Stat{}, fmt.Errorf("couldn't parse %s (intr): %s", parts[1], err) + } + numberedIRQs := parts[2:] + stat.IRQ = make([]uint64, len(numberedIRQs)) + for i, count := range numberedIRQs { + if stat.IRQ[i], err = strconv.ParseUint(count, 10, 64); err != nil { + return Stat{}, fmt.Errorf("couldn't parse %s (intr%d): %s", count, i, err) + } + } + case parts[0] == "ctxt": + if stat.ContextSwitches, err = strconv.ParseUint(parts[1], 10, 64); err != nil { + return Stat{}, fmt.Errorf("couldn't parse %s (ctxt): %s", parts[1], err) + } + case parts[0] == "processes": + if stat.ProcessCreated, err = strconv.ParseUint(parts[1], 10, 64); err != nil { + return Stat{}, fmt.Errorf("couldn't parse %s (processes): %s", parts[1], err) + } + case parts[0] == "procs_running": + if stat.ProcessesRunning, err = strconv.ParseUint(parts[1], 10, 64); err != nil { + return Stat{}, fmt.Errorf("couldn't parse %s (procs_running): %s", parts[1], err) + } + case parts[0] == "procs_blocked": + if stat.ProcessesBlocked, err = strconv.ParseUint(parts[1], 10, 64); err != nil { + return Stat{}, fmt.Errorf("couldn't parse %s (procs_blocked): %s", parts[1], err) + } + case parts[0] == "softirq": + softIRQStats, total, err := parseSoftIRQStat(line) + if err != nil { + return Stat{}, err + } + stat.SoftIRQTotal = total + stat.SoftIRQ = softIRQStats + case strings.HasPrefix(parts[0], "cpu"): + cpuStat, cpuID, err := parseCPUStat(line) + if err != nil { + return Stat{}, err + } + if cpuID == -1 { + stat.CPUTotal = cpuStat + } else { + for int64(len(stat.CPU)) <= cpuID { + stat.CPU = append(stat.CPU, CPUStat{}) + } + stat.CPU[cpuID] = cpuStat + } + } + } + + if err := scanner.Err(); err != nil { + return Stat{}, fmt.Errorf("couldn't parse %s: %s", f.Name(), err) + } + + return stat, nil +} diff --git a/vendor/github.com/prometheus/procfs/ttar b/vendor/github.com/prometheus/procfs/ttar new file mode 100755 index 000000000..b0171a12b --- /dev/null +++ b/vendor/github.com/prometheus/procfs/ttar @@ -0,0 +1,389 @@ +#!/usr/bin/env bash + +# Purpose: plain text tar format +# Limitations: - only suitable for text files, directories, and symlinks +# - stores only filename, content, and mode +# - not designed for untrusted input +# +# Note: must work with bash version 3.2 (macOS) + +# Copyright 2017 Roger Luethi +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +set -o errexit -o nounset + +# Sanitize environment (for instance, standard sorting of glob matches) +export LC_ALL=C + +path="" +CMD="" +ARG_STRING="$*" + +#------------------------------------------------------------------------------ +# Not all sed implementations can work on null bytes. In order to make ttar +# work out of the box on macOS, use Python as a stream editor. + +USE_PYTHON=0 + +PYTHON_CREATE_FILTER=$(cat << 'PCF' +#!/usr/bin/env python + +import re +import sys + +for line in sys.stdin: + line = re.sub(r'EOF', r'\EOF', line) + line = re.sub(r'NULLBYTE', r'\NULLBYTE', line) + line = re.sub('\x00', r'NULLBYTE', line) + sys.stdout.write(line) +PCF +) + +PYTHON_EXTRACT_FILTER=$(cat << 'PEF' +#!/usr/bin/env python + +import re +import sys + +for line in sys.stdin: + line = re.sub(r'(?/dev/null; then + echo "ERROR Python not found. Aborting." + exit 2 + fi + USE_PYTHON=1 + fi +} + +#------------------------------------------------------------------------------ + +function usage { + bname=$(basename "$0") + cat << USAGE +Usage: $bname [-C ] -c -f (create archive) + $bname -t -f (list archive contents) + $bname [-C ] -x -f (extract archive) + +Options: + -C (change directory) + -v (verbose) + +Example: Change to sysfs directory, create ttar file from fixtures directory + $bname -C sysfs -c -f sysfs/fixtures.ttar fixtures/ +USAGE +exit "$1" +} + +function vecho { + if [ "${VERBOSE:-}" == "yes" ]; then + echo >&7 "$@" + fi +} + +function set_cmd { + if [ -n "$CMD" ]; then + echo "ERROR: more than one command given" + echo + usage 2 + fi + CMD=$1 +} + +unset VERBOSE + +while getopts :cf:htxvC: opt; do + case $opt in + c) + set_cmd "create" + ;; + f) + ARCHIVE=$OPTARG + ;; + h) + usage 0 + ;; + t) + set_cmd "list" + ;; + x) + set_cmd "extract" + ;; + v) + VERBOSE=yes + exec 7>&1 + ;; + C) + CDIR=$OPTARG + ;; + *) + echo >&2 "ERROR: invalid option -$OPTARG" + echo + usage 1 + ;; + esac +done + +# Remove processed options from arguments +shift $(( OPTIND - 1 )); + +if [ "${CMD:-}" == "" ]; then + echo >&2 "ERROR: no command given" + echo + usage 1 +elif [ "${ARCHIVE:-}" == "" ]; then + echo >&2 "ERROR: no archive name given" + echo + usage 1 +fi + +function list { + local path="" + local size=0 + local line_no=0 + local ttar_file=$1 + if [ -n "${2:-}" ]; then + echo >&2 "ERROR: too many arguments." + echo + usage 1 + fi + if [ ! -e "$ttar_file" ]; then + echo >&2 "ERROR: file not found ($ttar_file)" + echo + usage 1 + fi + while read -r line; do + line_no=$(( line_no + 1 )) + if [ $size -gt 0 ]; then + size=$(( size - 1 )) + continue + fi + if [[ $line =~ ^Path:\ (.*)$ ]]; then + path=${BASH_REMATCH[1]} + elif [[ $line =~ ^Lines:\ (.*)$ ]]; then + size=${BASH_REMATCH[1]} + echo "$path" + elif [[ $line =~ ^Directory:\ (.*)$ ]]; then + path=${BASH_REMATCH[1]} + echo "$path/" + elif [[ $line =~ ^SymlinkTo:\ (.*)$ ]]; then + echo "$path -> ${BASH_REMATCH[1]}" + fi + done < "$ttar_file" +} + +function extract { + local path="" + local size=0 + local line_no=0 + local ttar_file=$1 + if [ -n "${2:-}" ]; then + echo >&2 "ERROR: too many arguments." + echo + usage 1 + fi + if [ ! -e "$ttar_file" ]; then + echo >&2 "ERROR: file not found ($ttar_file)" + echo + usage 1 + fi + while IFS= read -r line; do + line_no=$(( line_no + 1 )) + local eof_without_newline + if [ "$size" -gt 0 ]; then + if [[ "$line" =~ [^\\]EOF ]]; then + # An EOF not preceeded by a backslash indicates that the line + # does not end with a newline + eof_without_newline=1 + else + eof_without_newline=0 + fi + # Replace NULLBYTE with null byte if at beginning of line + # Replace NULLBYTE with null byte unless preceeded by backslash + # Remove one backslash in front of NULLBYTE (if any) + # Remove EOF unless preceeded by backslash + # Remove one backslash in front of EOF + if [ $USE_PYTHON -eq 1 ]; then + echo -n "$line" | python -c "$PYTHON_EXTRACT_FILTER" >> "$path" + else + # The repeated pattern makes up for sed's lack of negative + # lookbehind assertions (for consecutive null bytes). + echo -n "$line" | \ + sed -e 's/^NULLBYTE/\x0/g; + s/\([^\\]\)NULLBYTE/\1\x0/g; + s/\([^\\]\)NULLBYTE/\1\x0/g; + s/\\NULLBYTE/NULLBYTE/g; + s/\([^\\]\)EOF/\1/g; + s/\\EOF/EOF/g; + ' >> "$path" + fi + if [[ "$eof_without_newline" -eq 0 ]]; then + echo >> "$path" + fi + size=$(( size - 1 )) + continue + fi + if [[ $line =~ ^Path:\ (.*)$ ]]; then + path=${BASH_REMATCH[1]} + if [ -e "$path" ] || [ -L "$path" ]; then + rm "$path" + fi + elif [[ $line =~ ^Lines:\ (.*)$ ]]; then + size=${BASH_REMATCH[1]} + # Create file even if it is zero-length. + touch "$path" + vecho " $path" + elif [[ $line =~ ^Mode:\ (.*)$ ]]; then + mode=${BASH_REMATCH[1]} + chmod "$mode" "$path" + vecho "$mode" + elif [[ $line =~ ^Directory:\ (.*)$ ]]; then + path=${BASH_REMATCH[1]} + mkdir -p "$path" + vecho " $path/" + elif [[ $line =~ ^SymlinkTo:\ (.*)$ ]]; then + ln -s "${BASH_REMATCH[1]}" "$path" + vecho " $path -> ${BASH_REMATCH[1]}" + elif [[ $line =~ ^# ]]; then + # Ignore comments between files + continue + else + echo >&2 "ERROR: Unknown keyword on line $line_no: $line" + exit 1 + fi + done < "$ttar_file" +} + +function div { + echo "# ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -" \ + "- - - - - -" +} + +function get_mode { + local mfile=$1 + if [ -z "${STAT_OPTION:-}" ]; then + if stat -c '%a' "$mfile" >/dev/null 2>&1; then + # GNU stat + STAT_OPTION='-c' + STAT_FORMAT='%a' + else + # BSD stat + STAT_OPTION='-f' + # Octal output, user/group/other (omit file type, sticky bit) + STAT_FORMAT='%OLp' + fi + fi + stat "${STAT_OPTION}" "${STAT_FORMAT}" "$mfile" +} + +function _create { + shopt -s nullglob + local mode + local eof_without_newline + while (( "$#" )); do + file=$1 + if [ -L "$file" ]; then + echo "Path: $file" + symlinkTo=$(readlink "$file") + echo "SymlinkTo: $symlinkTo" + vecho " $file -> $symlinkTo" + div + elif [ -d "$file" ]; then + # Strip trailing slash (if there is one) + file=${file%/} + echo "Directory: $file" + mode=$(get_mode "$file") + echo "Mode: $mode" + vecho "$mode $file/" + div + # Find all files and dirs, including hidden/dot files + for x in "$file/"{*,.[^.]*}; do + _create "$x" + done + elif [ -f "$file" ]; then + echo "Path: $file" + lines=$(wc -l "$file"|awk '{print $1}') + eof_without_newline=0 + if [[ "$(wc -c "$file"|awk '{print $1}')" -gt 0 ]] && \ + [[ "$(tail -c 1 "$file" | wc -l)" -eq 0 ]]; then + eof_without_newline=1 + lines=$((lines+1)) + fi + echo "Lines: $lines" + # Add backslash in front of EOF + # Add backslash in front of NULLBYTE + # Replace null byte with NULLBYTE + if [ $USE_PYTHON -eq 1 ]; then + < "$file" python -c "$PYTHON_CREATE_FILTER" + else + < "$file" \ + sed 's/EOF/\\EOF/g; + s/NULLBYTE/\\NULLBYTE/g; + s/\x0/NULLBYTE/g; + ' + fi + if [[ "$eof_without_newline" -eq 1 ]]; then + # Finish line with EOF to indicate that the original line did + # not end with a linefeed + echo "EOF" + fi + mode=$(get_mode "$file") + echo "Mode: $mode" + vecho "$mode $file" + div + else + echo >&2 "ERROR: file not found ($file in $(pwd))" + exit 2 + fi + shift + done +} + +function create { + ttar_file=$1 + shift + if [ -z "${1:-}" ]; then + echo >&2 "ERROR: missing arguments." + echo + usage 1 + fi + if [ -e "$ttar_file" ]; then + rm "$ttar_file" + fi + exec > "$ttar_file" + echo "# Archive created by ttar $ARG_STRING" + _create "$@" +} + +test_environment + +if [ -n "${CDIR:-}" ]; then + if [[ "$ARCHIVE" != /* ]]; then + # Relative path: preserve the archive's location before changing + # directory + ARCHIVE="$(pwd)/$ARCHIVE" + fi + cd "$CDIR" +fi + +"$CMD" "$ARCHIVE" "$@" diff --git a/vendor/github.com/prometheus/procfs/xfrm.go b/vendor/github.com/prometheus/procfs/xfrm.go new file mode 100644 index 000000000..ffe9df50d --- /dev/null +++ b/vendor/github.com/prometheus/procfs/xfrm.go @@ -0,0 +1,187 @@ +// Copyright 2017 Prometheus Team +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package procfs + +import ( + "bufio" + "fmt" + "os" + "strconv" + "strings" +) + +// XfrmStat models the contents of /proc/net/xfrm_stat. +type XfrmStat struct { + // All errors which are not matched by other + XfrmInError int + // No buffer is left + XfrmInBufferError int + // Header Error + XfrmInHdrError int + // No state found + // i.e. either inbound SPI, address, or IPSEC protocol at SA is wrong + XfrmInNoStates int + // Transformation protocol specific error + // e.g. SA Key is wrong + XfrmInStateProtoError int + // Transformation mode specific error + XfrmInStateModeError int + // Sequence error + // e.g. sequence number is out of window + XfrmInStateSeqError int + // State is expired + XfrmInStateExpired int + // State has mismatch option + // e.g. UDP encapsulation type is mismatched + XfrmInStateMismatch int + // State is invalid + XfrmInStateInvalid int + // No matching template for states + // e.g. Inbound SAs are correct but SP rule is wrong + XfrmInTmplMismatch int + // No policy is found for states + // e.g. Inbound SAs are correct but no SP is found + XfrmInNoPols int + // Policy discards + XfrmInPolBlock int + // Policy error + XfrmInPolError int + // All errors which are not matched by others + XfrmOutError int + // Bundle generation error + XfrmOutBundleGenError int + // Bundle check error + XfrmOutBundleCheckError int + // No state was found + XfrmOutNoStates int + // Transformation protocol specific error + XfrmOutStateProtoError int + // Transportation mode specific error + XfrmOutStateModeError int + // Sequence error + // i.e sequence number overflow + XfrmOutStateSeqError int + // State is expired + XfrmOutStateExpired int + // Policy discads + XfrmOutPolBlock int + // Policy is dead + XfrmOutPolDead int + // Policy Error + XfrmOutPolError int + XfrmFwdHdrError int + XfrmOutStateInvalid int + XfrmAcquireError int +} + +// NewXfrmStat reads the xfrm_stat statistics. +func NewXfrmStat() (XfrmStat, error) { + fs, err := NewFS(DefaultMountPoint) + if err != nil { + return XfrmStat{}, err + } + + return fs.NewXfrmStat() +} + +// NewXfrmStat reads the xfrm_stat statistics from the 'proc' filesystem. +func (fs FS) NewXfrmStat() (XfrmStat, error) { + file, err := os.Open(fs.Path("net/xfrm_stat")) + if err != nil { + return XfrmStat{}, err + } + defer file.Close() + + var ( + x = XfrmStat{} + s = bufio.NewScanner(file) + ) + + for s.Scan() { + fields := strings.Fields(s.Text()) + + if len(fields) != 2 { + return XfrmStat{}, fmt.Errorf( + "couldnt parse %s line %s", file.Name(), s.Text()) + } + + name := fields[0] + value, err := strconv.Atoi(fields[1]) + if err != nil { + return XfrmStat{}, err + } + + switch name { + case "XfrmInError": + x.XfrmInError = value + case "XfrmInBufferError": + x.XfrmInBufferError = value + case "XfrmInHdrError": + x.XfrmInHdrError = value + case "XfrmInNoStates": + x.XfrmInNoStates = value + case "XfrmInStateProtoError": + x.XfrmInStateProtoError = value + case "XfrmInStateModeError": + x.XfrmInStateModeError = value + case "XfrmInStateSeqError": + x.XfrmInStateSeqError = value + case "XfrmInStateExpired": + x.XfrmInStateExpired = value + case "XfrmInStateInvalid": + x.XfrmInStateInvalid = value + case "XfrmInTmplMismatch": + x.XfrmInTmplMismatch = value + case "XfrmInNoPols": + x.XfrmInNoPols = value + case "XfrmInPolBlock": + x.XfrmInPolBlock = value + case "XfrmInPolError": + x.XfrmInPolError = value + case "XfrmOutError": + x.XfrmOutError = value + case "XfrmInStateMismatch": + x.XfrmInStateMismatch = value + case "XfrmOutBundleGenError": + x.XfrmOutBundleGenError = value + case "XfrmOutBundleCheckError": + x.XfrmOutBundleCheckError = value + case "XfrmOutNoStates": + x.XfrmOutNoStates = value + case "XfrmOutStateProtoError": + x.XfrmOutStateProtoError = value + case "XfrmOutStateModeError": + x.XfrmOutStateModeError = value + case "XfrmOutStateSeqError": + x.XfrmOutStateSeqError = value + case "XfrmOutStateExpired": + x.XfrmOutStateExpired = value + case "XfrmOutPolBlock": + x.XfrmOutPolBlock = value + case "XfrmOutPolDead": + x.XfrmOutPolDead = value + case "XfrmOutPolError": + x.XfrmOutPolError = value + case "XfrmFwdHdrError": + x.XfrmFwdHdrError = value + case "XfrmOutStateInvalid": + x.XfrmOutStateInvalid = value + case "XfrmAcquireError": + x.XfrmAcquireError = value + } + + } + + return x, s.Err() +} diff --git a/vendor/github.com/prometheus/procfs/xfs/parse.go b/vendor/github.com/prometheus/procfs/xfs/parse.go new file mode 100644 index 000000000..2bc0ef342 --- /dev/null +++ b/vendor/github.com/prometheus/procfs/xfs/parse.go @@ -0,0 +1,330 @@ +// Copyright 2017 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package xfs + +import ( + "bufio" + "fmt" + "io" + "strings" + + "github.com/prometheus/procfs/internal/util" +) + +// ParseStats parses a Stats from an input io.Reader, using the format +// found in /proc/fs/xfs/stat. +func ParseStats(r io.Reader) (*Stats, error) { + const ( + // Fields parsed into stats structures. + fieldExtentAlloc = "extent_alloc" + fieldAbt = "abt" + fieldBlkMap = "blk_map" + fieldBmbt = "bmbt" + fieldDir = "dir" + fieldTrans = "trans" + fieldIg = "ig" + fieldLog = "log" + fieldRw = "rw" + fieldAttr = "attr" + fieldIcluster = "icluster" + fieldVnodes = "vnodes" + fieldBuf = "buf" + fieldXpc = "xpc" + + // Unimplemented at this time due to lack of documentation. + fieldPushAil = "push_ail" + fieldXstrat = "xstrat" + fieldAbtb2 = "abtb2" + fieldAbtc2 = "abtc2" + fieldBmbt2 = "bmbt2" + fieldIbt2 = "ibt2" + fieldFibt2 = "fibt2" + fieldQm = "qm" + fieldDebug = "debug" + ) + + var xfss Stats + + s := bufio.NewScanner(r) + for s.Scan() { + // Expect at least a string label and a single integer value, ex: + // - abt 0 + // - rw 1 2 + ss := strings.Fields(string(s.Bytes())) + if len(ss) < 2 { + continue + } + label := ss[0] + + // Extended precision counters are uint64 values. + if label == fieldXpc { + us, err := util.ParseUint64s(ss[1:]) + if err != nil { + return nil, err + } + + xfss.ExtendedPrecision, err = extendedPrecisionStats(us) + if err != nil { + return nil, err + } + + continue + } + + // All other counters are uint32 values. + us, err := util.ParseUint32s(ss[1:]) + if err != nil { + return nil, err + } + + switch label { + case fieldExtentAlloc: + xfss.ExtentAllocation, err = extentAllocationStats(us) + case fieldAbt: + xfss.AllocationBTree, err = btreeStats(us) + case fieldBlkMap: + xfss.BlockMapping, err = blockMappingStats(us) + case fieldBmbt: + xfss.BlockMapBTree, err = btreeStats(us) + case fieldDir: + xfss.DirectoryOperation, err = directoryOperationStats(us) + case fieldTrans: + xfss.Transaction, err = transactionStats(us) + case fieldIg: + xfss.InodeOperation, err = inodeOperationStats(us) + case fieldLog: + xfss.LogOperation, err = logOperationStats(us) + case fieldRw: + xfss.ReadWrite, err = readWriteStats(us) + case fieldAttr: + xfss.AttributeOperation, err = attributeOperationStats(us) + case fieldIcluster: + xfss.InodeClustering, err = inodeClusteringStats(us) + case fieldVnodes: + xfss.Vnode, err = vnodeStats(us) + case fieldBuf: + xfss.Buffer, err = bufferStats(us) + } + if err != nil { + return nil, err + } + } + + return &xfss, s.Err() +} + +// extentAllocationStats builds an ExtentAllocationStats from a slice of uint32s. +func extentAllocationStats(us []uint32) (ExtentAllocationStats, error) { + if l := len(us); l != 4 { + return ExtentAllocationStats{}, fmt.Errorf("incorrect number of values for XFS extent allocation stats: %d", l) + } + + return ExtentAllocationStats{ + ExtentsAllocated: us[0], + BlocksAllocated: us[1], + ExtentsFreed: us[2], + BlocksFreed: us[3], + }, nil +} + +// btreeStats builds a BTreeStats from a slice of uint32s. +func btreeStats(us []uint32) (BTreeStats, error) { + if l := len(us); l != 4 { + return BTreeStats{}, fmt.Errorf("incorrect number of values for XFS btree stats: %d", l) + } + + return BTreeStats{ + Lookups: us[0], + Compares: us[1], + RecordsInserted: us[2], + RecordsDeleted: us[3], + }, nil +} + +// BlockMappingStat builds a BlockMappingStats from a slice of uint32s. +func blockMappingStats(us []uint32) (BlockMappingStats, error) { + if l := len(us); l != 7 { + return BlockMappingStats{}, fmt.Errorf("incorrect number of values for XFS block mapping stats: %d", l) + } + + return BlockMappingStats{ + Reads: us[0], + Writes: us[1], + Unmaps: us[2], + ExtentListInsertions: us[3], + ExtentListDeletions: us[4], + ExtentListLookups: us[5], + ExtentListCompares: us[6], + }, nil +} + +// DirectoryOperationStats builds a DirectoryOperationStats from a slice of uint32s. +func directoryOperationStats(us []uint32) (DirectoryOperationStats, error) { + if l := len(us); l != 4 { + return DirectoryOperationStats{}, fmt.Errorf("incorrect number of values for XFS directory operation stats: %d", l) + } + + return DirectoryOperationStats{ + Lookups: us[0], + Creates: us[1], + Removes: us[2], + Getdents: us[3], + }, nil +} + +// TransactionStats builds a TransactionStats from a slice of uint32s. +func transactionStats(us []uint32) (TransactionStats, error) { + if l := len(us); l != 3 { + return TransactionStats{}, fmt.Errorf("incorrect number of values for XFS transaction stats: %d", l) + } + + return TransactionStats{ + Sync: us[0], + Async: us[1], + Empty: us[2], + }, nil +} + +// InodeOperationStats builds an InodeOperationStats from a slice of uint32s. +func inodeOperationStats(us []uint32) (InodeOperationStats, error) { + if l := len(us); l != 7 { + return InodeOperationStats{}, fmt.Errorf("incorrect number of values for XFS inode operation stats: %d", l) + } + + return InodeOperationStats{ + Attempts: us[0], + Found: us[1], + Recycle: us[2], + Missed: us[3], + Duplicate: us[4], + Reclaims: us[5], + AttributeChange: us[6], + }, nil +} + +// LogOperationStats builds a LogOperationStats from a slice of uint32s. +func logOperationStats(us []uint32) (LogOperationStats, error) { + if l := len(us); l != 5 { + return LogOperationStats{}, fmt.Errorf("incorrect number of values for XFS log operation stats: %d", l) + } + + return LogOperationStats{ + Writes: us[0], + Blocks: us[1], + NoInternalBuffers: us[2], + Force: us[3], + ForceSleep: us[4], + }, nil +} + +// ReadWriteStats builds a ReadWriteStats from a slice of uint32s. +func readWriteStats(us []uint32) (ReadWriteStats, error) { + if l := len(us); l != 2 { + return ReadWriteStats{}, fmt.Errorf("incorrect number of values for XFS read write stats: %d", l) + } + + return ReadWriteStats{ + Read: us[0], + Write: us[1], + }, nil +} + +// AttributeOperationStats builds an AttributeOperationStats from a slice of uint32s. +func attributeOperationStats(us []uint32) (AttributeOperationStats, error) { + if l := len(us); l != 4 { + return AttributeOperationStats{}, fmt.Errorf("incorrect number of values for XFS attribute operation stats: %d", l) + } + + return AttributeOperationStats{ + Get: us[0], + Set: us[1], + Remove: us[2], + List: us[3], + }, nil +} + +// InodeClusteringStats builds an InodeClusteringStats from a slice of uint32s. +func inodeClusteringStats(us []uint32) (InodeClusteringStats, error) { + if l := len(us); l != 3 { + return InodeClusteringStats{}, fmt.Errorf("incorrect number of values for XFS inode clustering stats: %d", l) + } + + return InodeClusteringStats{ + Iflush: us[0], + Flush: us[1], + FlushInode: us[2], + }, nil +} + +// VnodeStats builds a VnodeStats from a slice of uint32s. +func vnodeStats(us []uint32) (VnodeStats, error) { + // The attribute "Free" appears to not be available on older XFS + // stats versions. Therefore, 7 or 8 elements may appear in + // this slice. + l := len(us) + if l != 7 && l != 8 { + return VnodeStats{}, fmt.Errorf("incorrect number of values for XFS vnode stats: %d", l) + } + + s := VnodeStats{ + Active: us[0], + Allocate: us[1], + Get: us[2], + Hold: us[3], + Release: us[4], + Reclaim: us[5], + Remove: us[6], + } + + // Skip adding free, unless it is present. The zero value will + // be used in place of an actual count. + if l == 7 { + return s, nil + } + + s.Free = us[7] + return s, nil +} + +// BufferStats builds a BufferStats from a slice of uint32s. +func bufferStats(us []uint32) (BufferStats, error) { + if l := len(us); l != 9 { + return BufferStats{}, fmt.Errorf("incorrect number of values for XFS buffer stats: %d", l) + } + + return BufferStats{ + Get: us[0], + Create: us[1], + GetLocked: us[2], + GetLockedWaited: us[3], + BusyLocked: us[4], + MissLocked: us[5], + PageRetries: us[6], + PageFound: us[7], + GetRead: us[8], + }, nil +} + +// ExtendedPrecisionStats builds an ExtendedPrecisionStats from a slice of uint32s. +func extendedPrecisionStats(us []uint64) (ExtendedPrecisionStats, error) { + if l := len(us); l != 3 { + return ExtendedPrecisionStats{}, fmt.Errorf("incorrect number of values for XFS extended precision stats: %d", l) + } + + return ExtendedPrecisionStats{ + FlushBytes: us[0], + WriteBytes: us[1], + ReadBytes: us[2], + }, nil +} diff --git a/vendor/github.com/prometheus/procfs/xfs/xfs.go b/vendor/github.com/prometheus/procfs/xfs/xfs.go new file mode 100644 index 000000000..d86794b7c --- /dev/null +++ b/vendor/github.com/prometheus/procfs/xfs/xfs.go @@ -0,0 +1,163 @@ +// Copyright 2017 The Prometheus Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package xfs provides access to statistics exposed by the XFS filesystem. +package xfs + +// Stats contains XFS filesystem runtime statistics, parsed from +// /proc/fs/xfs/stat. +// +// The names and meanings of each statistic were taken from +// http://xfs.org/index.php/Runtime_Stats and xfs_stats.h in the Linux +// kernel source. Most counters are uint32s (same data types used in +// xfs_stats.h), but some of the "extended precision stats" are uint64s. +type Stats struct { + // The name of the filesystem used to source these statistics. + // If empty, this indicates aggregated statistics for all XFS + // filesystems on the host. + Name string + + ExtentAllocation ExtentAllocationStats + AllocationBTree BTreeStats + BlockMapping BlockMappingStats + BlockMapBTree BTreeStats + DirectoryOperation DirectoryOperationStats + Transaction TransactionStats + InodeOperation InodeOperationStats + LogOperation LogOperationStats + ReadWrite ReadWriteStats + AttributeOperation AttributeOperationStats + InodeClustering InodeClusteringStats + Vnode VnodeStats + Buffer BufferStats + ExtendedPrecision ExtendedPrecisionStats +} + +// ExtentAllocationStats contains statistics regarding XFS extent allocations. +type ExtentAllocationStats struct { + ExtentsAllocated uint32 + BlocksAllocated uint32 + ExtentsFreed uint32 + BlocksFreed uint32 +} + +// BTreeStats contains statistics regarding an XFS internal B-tree. +type BTreeStats struct { + Lookups uint32 + Compares uint32 + RecordsInserted uint32 + RecordsDeleted uint32 +} + +// BlockMappingStats contains statistics regarding XFS block maps. +type BlockMappingStats struct { + Reads uint32 + Writes uint32 + Unmaps uint32 + ExtentListInsertions uint32 + ExtentListDeletions uint32 + ExtentListLookups uint32 + ExtentListCompares uint32 +} + +// DirectoryOperationStats contains statistics regarding XFS directory entries. +type DirectoryOperationStats struct { + Lookups uint32 + Creates uint32 + Removes uint32 + Getdents uint32 +} + +// TransactionStats contains statistics regarding XFS metadata transactions. +type TransactionStats struct { + Sync uint32 + Async uint32 + Empty uint32 +} + +// InodeOperationStats contains statistics regarding XFS inode operations. +type InodeOperationStats struct { + Attempts uint32 + Found uint32 + Recycle uint32 + Missed uint32 + Duplicate uint32 + Reclaims uint32 + AttributeChange uint32 +} + +// LogOperationStats contains statistics regarding the XFS log buffer. +type LogOperationStats struct { + Writes uint32 + Blocks uint32 + NoInternalBuffers uint32 + Force uint32 + ForceSleep uint32 +} + +// ReadWriteStats contains statistics regarding the number of read and write +// system calls for XFS filesystems. +type ReadWriteStats struct { + Read uint32 + Write uint32 +} + +// AttributeOperationStats contains statistics regarding manipulation of +// XFS extended file attributes. +type AttributeOperationStats struct { + Get uint32 + Set uint32 + Remove uint32 + List uint32 +} + +// InodeClusteringStats contains statistics regarding XFS inode clustering +// operations. +type InodeClusteringStats struct { + Iflush uint32 + Flush uint32 + FlushInode uint32 +} + +// VnodeStats contains statistics regarding XFS vnode operations. +type VnodeStats struct { + Active uint32 + Allocate uint32 + Get uint32 + Hold uint32 + Release uint32 + Reclaim uint32 + Remove uint32 + Free uint32 +} + +// BufferStats contains statistics regarding XFS read/write I/O buffers. +type BufferStats struct { + Get uint32 + Create uint32 + GetLocked uint32 + GetLockedWaited uint32 + BusyLocked uint32 + MissLocked uint32 + PageRetries uint32 + PageFound uint32 + GetRead uint32 +} + +// ExtendedPrecisionStats contains high precision counters used to track the +// total number of bytes read, written, or flushed, during XFS operations. +type ExtendedPrecisionStats struct { + FlushBytes uint64 + WriteBytes uint64 + ReadBytes uint64 +} diff --git a/vendor/github.com/softlayer/softlayer-go/LICENSE b/vendor/github.com/softlayer/softlayer-go/LICENSE new file mode 100644 index 000000000..d64569567 --- /dev/null +++ b/vendor/github.com/softlayer/softlayer-go/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/github.com/stretchr/testify/mock/doc.go b/vendor/github.com/stretchr/testify/mock/doc.go new file mode 100644 index 000000000..7324128ef --- /dev/null +++ b/vendor/github.com/stretchr/testify/mock/doc.go @@ -0,0 +1,44 @@ +// Package mock provides a system by which it is possible to mock your objects +// and verify calls are happening as expected. +// +// Example Usage +// +// The mock package provides an object, Mock, that tracks activity on another object. It is usually +// embedded into a test object as shown below: +// +// type MyTestObject struct { +// // add a Mock object instance +// mock.Mock +// +// // other fields go here as normal +// } +// +// When implementing the methods of an interface, you wire your functions up +// to call the Mock.Called(args...) method, and return the appropriate values. +// +// For example, to mock a method that saves the name and age of a person and returns +// the year of their birth or an error, you might write this: +// +// func (o *MyTestObject) SavePersonDetails(firstname, lastname string, age int) (int, error) { +// args := o.Called(firstname, lastname, age) +// return args.Int(0), args.Error(1) +// } +// +// The Int, Error and Bool methods are examples of strongly typed getters that take the argument +// index position. Given this argument list: +// +// (12, true, "Something") +// +// You could read them out strongly typed like this: +// +// args.Int(0) +// args.Bool(1) +// args.String(2) +// +// For objects of your own type, use the generic Arguments.Get(index) method and make a type assertion: +// +// return args.Get(0).(*MyObject), args.Get(1).(*AnotherObjectOfMine) +// +// This may cause a panic if the object you are getting is nil (the type assertion will fail), in those +// cases you should check for nil first. +package mock diff --git a/vendor/github.com/stretchr/testify/mock/mock.go b/vendor/github.com/stretchr/testify/mock/mock.go new file mode 100644 index 000000000..4dde47d89 --- /dev/null +++ b/vendor/github.com/stretchr/testify/mock/mock.go @@ -0,0 +1,880 @@ +package mock + +import ( + "errors" + "fmt" + "reflect" + "regexp" + "runtime" + "strings" + "sync" + "time" + + "github.com/davecgh/go-spew/spew" + "github.com/pmezard/go-difflib/difflib" + "github.com/stretchr/objx" + "github.com/stretchr/testify/assert" +) + +// TestingT is an interface wrapper around *testing.T +type TestingT interface { + Logf(format string, args ...interface{}) + Errorf(format string, args ...interface{}) + FailNow() +} + +/* + Call +*/ + +// Call represents a method call and is used for setting expectations, +// as well as recording activity. +type Call struct { + Parent *Mock + + // The name of the method that was or will be called. + Method string + + // Holds the arguments of the method. + Arguments Arguments + + // Holds the arguments that should be returned when + // this method is called. + ReturnArguments Arguments + + // Holds the caller info for the On() call + callerInfo []string + + // The number of times to return the return arguments when setting + // expectations. 0 means to always return the value. + Repeatability int + + // Amount of times this call has been called + totalCalls int + + // Call to this method can be optional + optional bool + + // Holds a channel that will be used to block the Return until it either + // receives a message or is closed. nil means it returns immediately. + WaitFor <-chan time.Time + + waitTime time.Duration + + // Holds a handler used to manipulate arguments content that are passed by + // reference. It's useful when mocking methods such as unmarshalers or + // decoders. + RunFn func(Arguments) +} + +func newCall(parent *Mock, methodName string, callerInfo []string, methodArguments ...interface{}) *Call { + return &Call{ + Parent: parent, + Method: methodName, + Arguments: methodArguments, + ReturnArguments: make([]interface{}, 0), + callerInfo: callerInfo, + Repeatability: 0, + WaitFor: nil, + RunFn: nil, + } +} + +func (c *Call) lock() { + c.Parent.mutex.Lock() +} + +func (c *Call) unlock() { + c.Parent.mutex.Unlock() +} + +// Return specifies the return arguments for the expectation. +// +// Mock.On("DoSomething").Return(errors.New("failed")) +func (c *Call) Return(returnArguments ...interface{}) *Call { + c.lock() + defer c.unlock() + + c.ReturnArguments = returnArguments + + return c +} + +// Once indicates that that the mock should only return the value once. +// +// Mock.On("MyMethod", arg1, arg2).Return(returnArg1, returnArg2).Once() +func (c *Call) Once() *Call { + return c.Times(1) +} + +// Twice indicates that that the mock should only return the value twice. +// +// Mock.On("MyMethod", arg1, arg2).Return(returnArg1, returnArg2).Twice() +func (c *Call) Twice() *Call { + return c.Times(2) +} + +// Times indicates that that the mock should only return the indicated number +// of times. +// +// Mock.On("MyMethod", arg1, arg2).Return(returnArg1, returnArg2).Times(5) +func (c *Call) Times(i int) *Call { + c.lock() + defer c.unlock() + c.Repeatability = i + return c +} + +// WaitUntil sets the channel that will block the mock's return until its closed +// or a message is received. +// +// Mock.On("MyMethod", arg1, arg2).WaitUntil(time.After(time.Second)) +func (c *Call) WaitUntil(w <-chan time.Time) *Call { + c.lock() + defer c.unlock() + c.WaitFor = w + return c +} + +// After sets how long to block until the call returns +// +// Mock.On("MyMethod", arg1, arg2).After(time.Second) +func (c *Call) After(d time.Duration) *Call { + c.lock() + defer c.unlock() + c.waitTime = d + return c +} + +// Run sets a handler to be called before returning. It can be used when +// mocking a method such as unmarshalers that takes a pointer to a struct and +// sets properties in such struct +// +// Mock.On("Unmarshal", AnythingOfType("*map[string]interface{}").Return().Run(func(args Arguments) { +// arg := args.Get(0).(*map[string]interface{}) +// arg["foo"] = "bar" +// }) +func (c *Call) Run(fn func(args Arguments)) *Call { + c.lock() + defer c.unlock() + c.RunFn = fn + return c +} + +// Maybe allows the method call to be optional. Not calling an optional method +// will not cause an error while asserting expectations +func (c *Call) Maybe() *Call { + c.lock() + defer c.unlock() + c.optional = true + return c +} + +// On chains a new expectation description onto the mocked interface. This +// allows syntax like. +// +// Mock. +// On("MyMethod", 1).Return(nil). +// On("MyOtherMethod", 'a', 'b', 'c').Return(errors.New("Some Error")) +func (c *Call) On(methodName string, arguments ...interface{}) *Call { + return c.Parent.On(methodName, arguments...) +} + +// Mock is the workhorse used to track activity on another object. +// For an example of its usage, refer to the "Example Usage" section at the top +// of this document. +type Mock struct { + // Represents the calls that are expected of + // an object. + ExpectedCalls []*Call + + // Holds the calls that were made to this mocked object. + Calls []Call + + // test is An optional variable that holds the test struct, to be used when an + // invalid mock call was made. + test TestingT + + // TestData holds any data that might be useful for testing. Testify ignores + // this data completely allowing you to do whatever you like with it. + testData objx.Map + + mutex sync.Mutex +} + +// TestData holds any data that might be useful for testing. Testify ignores +// this data completely allowing you to do whatever you like with it. +func (m *Mock) TestData() objx.Map { + + if m.testData == nil { + m.testData = make(objx.Map) + } + + return m.testData +} + +/* + Setting expectations +*/ + +// Test sets the test struct variable of the mock object +func (m *Mock) Test(t TestingT) { + m.mutex.Lock() + defer m.mutex.Unlock() + m.test = t +} + +// fail fails the current test with the given formatted format and args. +// In case that a test was defined, it uses the test APIs for failing a test, +// otherwise it uses panic. +func (m *Mock) fail(format string, args ...interface{}) { + m.mutex.Lock() + defer m.mutex.Unlock() + + if m.test == nil { + panic(fmt.Sprintf(format, args...)) + } + m.test.Errorf(format, args...) + m.test.FailNow() +} + +// On starts a description of an expectation of the specified method +// being called. +// +// Mock.On("MyMethod", arg1, arg2) +func (m *Mock) On(methodName string, arguments ...interface{}) *Call { + for _, arg := range arguments { + if v := reflect.ValueOf(arg); v.Kind() == reflect.Func { + panic(fmt.Sprintf("cannot use Func in expectations. Use mock.AnythingOfType(\"%T\")", arg)) + } + } + + m.mutex.Lock() + defer m.mutex.Unlock() + c := newCall(m, methodName, assert.CallerInfo(), arguments...) + m.ExpectedCalls = append(m.ExpectedCalls, c) + return c +} + +// /* +// Recording and responding to activity +// */ + +func (m *Mock) findExpectedCall(method string, arguments ...interface{}) (int, *Call) { + for i, call := range m.ExpectedCalls { + if call.Method == method && call.Repeatability > -1 { + + _, diffCount := call.Arguments.Diff(arguments) + if diffCount == 0 { + return i, call + } + + } + } + return -1, nil +} + +func (m *Mock) findClosestCall(method string, arguments ...interface{}) (*Call, string) { + var diffCount int + var closestCall *Call + var err string + + for _, call := range m.expectedCalls() { + if call.Method == method { + + errInfo, tempDiffCount := call.Arguments.Diff(arguments) + if tempDiffCount < diffCount || diffCount == 0 { + diffCount = tempDiffCount + closestCall = call + err = errInfo + } + + } + } + + return closestCall, err +} + +func callString(method string, arguments Arguments, includeArgumentValues bool) string { + + var argValsString string + if includeArgumentValues { + var argVals []string + for argIndex, arg := range arguments { + argVals = append(argVals, fmt.Sprintf("%d: %#v", argIndex, arg)) + } + argValsString = fmt.Sprintf("\n\t\t%s", strings.Join(argVals, "\n\t\t")) + } + + return fmt.Sprintf("%s(%s)%s", method, arguments.String(), argValsString) +} + +// Called tells the mock object that a method has been called, and gets an array +// of arguments to return. Panics if the call is unexpected (i.e. not preceded by +// appropriate .On .Return() calls) +// If Call.WaitFor is set, blocks until the channel is closed or receives a message. +func (m *Mock) Called(arguments ...interface{}) Arguments { + // get the calling function's name + pc, _, _, ok := runtime.Caller(1) + if !ok { + panic("Couldn't get the caller information") + } + functionPath := runtime.FuncForPC(pc).Name() + //Next four lines are required to use GCCGO function naming conventions. + //For Ex: github_com_docker_libkv_store_mock.WatchTree.pN39_github_com_docker_libkv_store_mock.Mock + //uses interface information unlike golang github.com/docker/libkv/store/mock.(*Mock).WatchTree + //With GCCGO we need to remove interface information starting from pN
    . + re := regexp.MustCompile("\\.pN\\d+_") + if re.MatchString(functionPath) { + functionPath = re.Split(functionPath, -1)[0] + } + parts := strings.Split(functionPath, ".") + functionName := parts[len(parts)-1] + return m.MethodCalled(functionName, arguments...) +} + +// MethodCalled tells the mock object that the given method has been called, and gets +// an array of arguments to return. Panics if the call is unexpected (i.e. not preceded +// by appropriate .On .Return() calls) +// If Call.WaitFor is set, blocks until the channel is closed or receives a message. +func (m *Mock) MethodCalled(methodName string, arguments ...interface{}) Arguments { + m.mutex.Lock() + //TODO: could combine expected and closes in single loop + found, call := m.findExpectedCall(methodName, arguments...) + + if found < 0 { + // we have to fail here - because we don't know what to do + // as the return arguments. This is because: + // + // a) this is a totally unexpected call to this method, + // b) the arguments are not what was expected, or + // c) the developer has forgotten to add an accompanying On...Return pair. + + closestCall, mismatch := m.findClosestCall(methodName, arguments...) + m.mutex.Unlock() + + if closestCall != nil { + m.fail("\n\nmock: Unexpected Method Call\n-----------------------------\n\n%s\n\nThe closest call I have is: \n\n%s\n\n%s\nDiff: %s", + callString(methodName, arguments, true), + callString(methodName, closestCall.Arguments, true), + diffArguments(closestCall.Arguments, arguments), + strings.TrimSpace(mismatch), + ) + } else { + m.fail("\nassert: mock: I don't know what to return because the method call was unexpected.\n\tEither do Mock.On(\"%s\").Return(...) first, or remove the %s() call.\n\tThis method was unexpected:\n\t\t%s\n\tat: %s", methodName, methodName, callString(methodName, arguments, true), assert.CallerInfo()) + } + } + + if call.Repeatability == 1 { + call.Repeatability = -1 + } else if call.Repeatability > 1 { + call.Repeatability-- + } + call.totalCalls++ + + // add the call + m.Calls = append(m.Calls, *newCall(m, methodName, assert.CallerInfo(), arguments...)) + m.mutex.Unlock() + + // block if specified + if call.WaitFor != nil { + <-call.WaitFor + } else { + time.Sleep(call.waitTime) + } + + m.mutex.Lock() + runFn := call.RunFn + m.mutex.Unlock() + + if runFn != nil { + runFn(arguments) + } + + m.mutex.Lock() + returnArgs := call.ReturnArguments + m.mutex.Unlock() + + return returnArgs +} + +/* + Assertions +*/ + +type assertExpectationser interface { + AssertExpectations(TestingT) bool +} + +// AssertExpectationsForObjects asserts that everything specified with On and Return +// of the specified objects was in fact called as expected. +// +// Calls may have occurred in any order. +func AssertExpectationsForObjects(t TestingT, testObjects ...interface{}) bool { + if h, ok := t.(tHelper); ok { + h.Helper() + } + for _, obj := range testObjects { + if m, ok := obj.(Mock); ok { + t.Logf("Deprecated mock.AssertExpectationsForObjects(myMock.Mock) use mock.AssertExpectationsForObjects(myMock)") + obj = &m + } + m := obj.(assertExpectationser) + if !m.AssertExpectations(t) { + t.Logf("Expectations didn't match for Mock: %+v", reflect.TypeOf(m)) + return false + } + } + return true +} + +// AssertExpectations asserts that everything specified with On and Return was +// in fact called as expected. Calls may have occurred in any order. +func (m *Mock) AssertExpectations(t TestingT) bool { + if h, ok := t.(tHelper); ok { + h.Helper() + } + m.mutex.Lock() + defer m.mutex.Unlock() + var somethingMissing bool + var failedExpectations int + + // iterate through each expectation + expectedCalls := m.expectedCalls() + for _, expectedCall := range expectedCalls { + if !expectedCall.optional && !m.methodWasCalled(expectedCall.Method, expectedCall.Arguments) && expectedCall.totalCalls == 0 { + somethingMissing = true + failedExpectations++ + t.Logf("FAIL:\t%s(%s)\n\t\tat: %s", expectedCall.Method, expectedCall.Arguments.String(), expectedCall.callerInfo) + } else { + if expectedCall.Repeatability > 0 { + somethingMissing = true + failedExpectations++ + t.Logf("FAIL:\t%s(%s)\n\t\tat: %s", expectedCall.Method, expectedCall.Arguments.String(), expectedCall.callerInfo) + } else { + t.Logf("PASS:\t%s(%s)", expectedCall.Method, expectedCall.Arguments.String()) + } + } + } + + if somethingMissing { + t.Errorf("FAIL: %d out of %d expectation(s) were met.\n\tThe code you are testing needs to make %d more call(s).\n\tat: %s", len(expectedCalls)-failedExpectations, len(expectedCalls), failedExpectations, assert.CallerInfo()) + } + + return !somethingMissing +} + +// AssertNumberOfCalls asserts that the method was called expectedCalls times. +func (m *Mock) AssertNumberOfCalls(t TestingT, methodName string, expectedCalls int) bool { + if h, ok := t.(tHelper); ok { + h.Helper() + } + m.mutex.Lock() + defer m.mutex.Unlock() + var actualCalls int + for _, call := range m.calls() { + if call.Method == methodName { + actualCalls++ + } + } + return assert.Equal(t, expectedCalls, actualCalls, fmt.Sprintf("Expected number of calls (%d) does not match the actual number of calls (%d).", expectedCalls, actualCalls)) +} + +// AssertCalled asserts that the method was called. +// It can produce a false result when an argument is a pointer type and the underlying value changed after calling the mocked method. +func (m *Mock) AssertCalled(t TestingT, methodName string, arguments ...interface{}) bool { + if h, ok := t.(tHelper); ok { + h.Helper() + } + m.mutex.Lock() + defer m.mutex.Unlock() + if !m.methodWasCalled(methodName, arguments) { + var calledWithArgs []string + for _, call := range m.calls() { + calledWithArgs = append(calledWithArgs, fmt.Sprintf("%v", call.Arguments)) + } + if len(calledWithArgs) == 0 { + return assert.Fail(t, "Should have called with given arguments", + fmt.Sprintf("Expected %q to have been called with:\n%v\nbut no actual calls happened", methodName, arguments)) + } + return assert.Fail(t, "Should have called with given arguments", + fmt.Sprintf("Expected %q to have been called with:\n%v\nbut actual calls were:\n %v", methodName, arguments, strings.Join(calledWithArgs, "\n"))) + } + return true +} + +// AssertNotCalled asserts that the method was not called. +// It can produce a false result when an argument is a pointer type and the underlying value changed after calling the mocked method. +func (m *Mock) AssertNotCalled(t TestingT, methodName string, arguments ...interface{}) bool { + if h, ok := t.(tHelper); ok { + h.Helper() + } + m.mutex.Lock() + defer m.mutex.Unlock() + if m.methodWasCalled(methodName, arguments) { + return assert.Fail(t, "Should not have called with given arguments", + fmt.Sprintf("Expected %q to not have been called with:\n%v\nbut actually it was.", methodName, arguments)) + } + return true +} + +func (m *Mock) methodWasCalled(methodName string, expected []interface{}) bool { + for _, call := range m.calls() { + if call.Method == methodName { + + _, differences := Arguments(expected).Diff(call.Arguments) + + if differences == 0 { + // found the expected call + return true + } + + } + } + // we didn't find the expected call + return false +} + +func (m *Mock) expectedCalls() []*Call { + return append([]*Call{}, m.ExpectedCalls...) +} + +func (m *Mock) calls() []Call { + return append([]Call{}, m.Calls...) +} + +/* + Arguments +*/ + +// Arguments holds an array of method arguments or return values. +type Arguments []interface{} + +const ( + // Anything is used in Diff and Assert when the argument being tested + // shouldn't be taken into consideration. + Anything = "mock.Anything" +) + +// AnythingOfTypeArgument is a string that contains the type of an argument +// for use when type checking. Used in Diff and Assert. +type AnythingOfTypeArgument string + +// AnythingOfType returns an AnythingOfTypeArgument object containing the +// name of the type to check for. Used in Diff and Assert. +// +// For example: +// Assert(t, AnythingOfType("string"), AnythingOfType("int")) +func AnythingOfType(t string) AnythingOfTypeArgument { + return AnythingOfTypeArgument(t) +} + +// argumentMatcher performs custom argument matching, returning whether or +// not the argument is matched by the expectation fixture function. +type argumentMatcher struct { + // fn is a function which accepts one argument, and returns a bool. + fn reflect.Value +} + +func (f argumentMatcher) Matches(argument interface{}) bool { + expectType := f.fn.Type().In(0) + expectTypeNilSupported := false + switch expectType.Kind() { + case reflect.Interface, reflect.Chan, reflect.Func, reflect.Map, reflect.Slice, reflect.Ptr: + expectTypeNilSupported = true + } + + argType := reflect.TypeOf(argument) + var arg reflect.Value + if argType == nil { + arg = reflect.New(expectType).Elem() + } else { + arg = reflect.ValueOf(argument) + } + + if argType == nil && !expectTypeNilSupported { + panic(errors.New("attempting to call matcher with nil for non-nil expected type")) + } + if argType == nil || argType.AssignableTo(expectType) { + result := f.fn.Call([]reflect.Value{arg}) + return result[0].Bool() + } + return false +} + +func (f argumentMatcher) String() string { + return fmt.Sprintf("func(%s) bool", f.fn.Type().In(0).Name()) +} + +// MatchedBy can be used to match a mock call based on only certain properties +// from a complex struct or some calculation. It takes a function that will be +// evaluated with the called argument and will return true when there's a match +// and false otherwise. +// +// Example: +// m.On("Do", MatchedBy(func(req *http.Request) bool { return req.Host == "example.com" })) +// +// |fn|, must be a function accepting a single argument (of the expected type) +// which returns a bool. If |fn| doesn't match the required signature, +// MatchedBy() panics. +func MatchedBy(fn interface{}) argumentMatcher { + fnType := reflect.TypeOf(fn) + + if fnType.Kind() != reflect.Func { + panic(fmt.Sprintf("assert: arguments: %s is not a func", fn)) + } + if fnType.NumIn() != 1 { + panic(fmt.Sprintf("assert: arguments: %s does not take exactly one argument", fn)) + } + if fnType.NumOut() != 1 || fnType.Out(0).Kind() != reflect.Bool { + panic(fmt.Sprintf("assert: arguments: %s does not return a bool", fn)) + } + + return argumentMatcher{fn: reflect.ValueOf(fn)} +} + +// Get Returns the argument at the specified index. +func (args Arguments) Get(index int) interface{} { + if index+1 > len(args) { + panic(fmt.Sprintf("assert: arguments: Cannot call Get(%d) because there are %d argument(s).", index, len(args))) + } + return args[index] +} + +// Is gets whether the objects match the arguments specified. +func (args Arguments) Is(objects ...interface{}) bool { + for i, obj := range args { + if obj != objects[i] { + return false + } + } + return true +} + +// Diff gets a string describing the differences between the arguments +// and the specified objects. +// +// Returns the diff string and number of differences found. +func (args Arguments) Diff(objects []interface{}) (string, int) { + //TODO: could return string as error and nil for No difference + + var output = "\n" + var differences int + + var maxArgCount = len(args) + if len(objects) > maxArgCount { + maxArgCount = len(objects) + } + + for i := 0; i < maxArgCount; i++ { + var actual, expected interface{} + + if len(objects) <= i { + actual = "(Missing)" + } else { + actual = objects[i] + } + + if len(args) <= i { + expected = "(Missing)" + } else { + expected = args[i] + } + + if matcher, ok := expected.(argumentMatcher); ok { + if matcher.Matches(actual) { + output = fmt.Sprintf("%s\t%d: PASS: %s matched by %s\n", output, i, actual, matcher) + } else { + differences++ + output = fmt.Sprintf("%s\t%d: PASS: %s not matched by %s\n", output, i, actual, matcher) + } + } else if reflect.TypeOf(expected) == reflect.TypeOf((*AnythingOfTypeArgument)(nil)).Elem() { + + // type checking + if reflect.TypeOf(actual).Name() != string(expected.(AnythingOfTypeArgument)) && reflect.TypeOf(actual).String() != string(expected.(AnythingOfTypeArgument)) { + // not match + differences++ + output = fmt.Sprintf("%s\t%d: FAIL: type %s != type %s - %s\n", output, i, expected, reflect.TypeOf(actual).Name(), actual) + } + + } else { + + // normal checking + + if assert.ObjectsAreEqual(expected, Anything) || assert.ObjectsAreEqual(actual, Anything) || assert.ObjectsAreEqual(actual, expected) { + // match + output = fmt.Sprintf("%s\t%d: PASS: %s == %s\n", output, i, actual, expected) + } else { + // not match + differences++ + output = fmt.Sprintf("%s\t%d: FAIL: %s != %s\n", output, i, actual, expected) + } + } + + } + + if differences == 0 { + return "No differences.", differences + } + + return output, differences + +} + +// Assert compares the arguments with the specified objects and fails if +// they do not exactly match. +func (args Arguments) Assert(t TestingT, objects ...interface{}) bool { + if h, ok := t.(tHelper); ok { + h.Helper() + } + + // get the differences + diff, diffCount := args.Diff(objects) + + if diffCount == 0 { + return true + } + + // there are differences... report them... + t.Logf(diff) + t.Errorf("%sArguments do not match.", assert.CallerInfo()) + + return false + +} + +// String gets the argument at the specified index. Panics if there is no argument, or +// if the argument is of the wrong type. +// +// If no index is provided, String() returns a complete string representation +// of the arguments. +func (args Arguments) String(indexOrNil ...int) string { + + if len(indexOrNil) == 0 { + // normal String() method - return a string representation of the args + var argsStr []string + for _, arg := range args { + argsStr = append(argsStr, fmt.Sprintf("%s", reflect.TypeOf(arg))) + } + return strings.Join(argsStr, ",") + } else if len(indexOrNil) == 1 { + // Index has been specified - get the argument at that index + var index = indexOrNil[0] + var s string + var ok bool + if s, ok = args.Get(index).(string); !ok { + panic(fmt.Sprintf("assert: arguments: String(%d) failed because object wasn't correct type: %s", index, args.Get(index))) + } + return s + } + + panic(fmt.Sprintf("assert: arguments: Wrong number of arguments passed to String. Must be 0 or 1, not %d", len(indexOrNil))) + +} + +// Int gets the argument at the specified index. Panics if there is no argument, or +// if the argument is of the wrong type. +func (args Arguments) Int(index int) int { + var s int + var ok bool + if s, ok = args.Get(index).(int); !ok { + panic(fmt.Sprintf("assert: arguments: Int(%d) failed because object wasn't correct type: %v", index, args.Get(index))) + } + return s +} + +// Error gets the argument at the specified index. Panics if there is no argument, or +// if the argument is of the wrong type. +func (args Arguments) Error(index int) error { + obj := args.Get(index) + var s error + var ok bool + if obj == nil { + return nil + } + if s, ok = obj.(error); !ok { + panic(fmt.Sprintf("assert: arguments: Error(%d) failed because object wasn't correct type: %v", index, args.Get(index))) + } + return s +} + +// Bool gets the argument at the specified index. Panics if there is no argument, or +// if the argument is of the wrong type. +func (args Arguments) Bool(index int) bool { + var s bool + var ok bool + if s, ok = args.Get(index).(bool); !ok { + panic(fmt.Sprintf("assert: arguments: Bool(%d) failed because object wasn't correct type: %v", index, args.Get(index))) + } + return s +} + +func typeAndKind(v interface{}) (reflect.Type, reflect.Kind) { + t := reflect.TypeOf(v) + k := t.Kind() + + if k == reflect.Ptr { + t = t.Elem() + k = t.Kind() + } + return t, k +} + +func diffArguments(expected Arguments, actual Arguments) string { + if len(expected) != len(actual) { + return fmt.Sprintf("Provided %v arguments, mocked for %v arguments", len(expected), len(actual)) + } + + for x := range expected { + if diffString := diff(expected[x], actual[x]); diffString != "" { + return fmt.Sprintf("Difference found in argument %v:\n\n%s", x, diffString) + } + } + + return "" +} + +// diff returns a diff of both values as long as both are of the same type and +// are a struct, map, slice or array. Otherwise it returns an empty string. +func diff(expected interface{}, actual interface{}) string { + if expected == nil || actual == nil { + return "" + } + + et, ek := typeAndKind(expected) + at, _ := typeAndKind(actual) + + if et != at { + return "" + } + + if ek != reflect.Struct && ek != reflect.Map && ek != reflect.Slice && ek != reflect.Array { + return "" + } + + e := spewConfig.Sdump(expected) + a := spewConfig.Sdump(actual) + + diff, _ := difflib.GetUnifiedDiffString(difflib.UnifiedDiff{ + A: difflib.SplitLines(e), + B: difflib.SplitLines(a), + FromFile: "Expected", + FromDate: "", + ToFile: "Actual", + ToDate: "", + Context: 1, + }) + + return diff +} + +var spewConfig = spew.ConfigState{ + Indent: " ", + DisablePointerAddresses: true, + DisableCapacities: true, + SortKeys: true, +} + +type tHelper interface { + Helper() +} diff --git a/vendor/golang.org/x/crypto/curve25519/const_amd64.h b/vendor/golang.org/x/crypto/curve25519/const_amd64.h new file mode 100644 index 000000000..b3f74162f --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/const_amd64.h @@ -0,0 +1,8 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html + +#define REDMASK51 0x0007FFFFFFFFFFFF diff --git a/vendor/golang.org/x/crypto/curve25519/const_amd64.s b/vendor/golang.org/x/crypto/curve25519/const_amd64.s new file mode 100644 index 000000000..ee7b4bd5f --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/const_amd64.s @@ -0,0 +1,20 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo,!appengine + +// These constants cannot be encoded in non-MOVQ immediates. +// We access them directly from memory instead. + +DATA ·_121666_213(SB)/8, $996687872 +GLOBL ·_121666_213(SB), 8, $8 + +DATA ·_2P0(SB)/8, $0xFFFFFFFFFFFDA +GLOBL ·_2P0(SB), 8, $8 + +DATA ·_2P1234(SB)/8, $0xFFFFFFFFFFFFE +GLOBL ·_2P1234(SB), 8, $8 diff --git a/vendor/golang.org/x/crypto/curve25519/cswap_amd64.s b/vendor/golang.org/x/crypto/curve25519/cswap_amd64.s new file mode 100644 index 000000000..cd793a5b5 --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/cswap_amd64.s @@ -0,0 +1,65 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64,!gccgo,!appengine + +// func cswap(inout *[4][5]uint64, v uint64) +TEXT ·cswap(SB),7,$0 + MOVQ inout+0(FP),DI + MOVQ v+8(FP),SI + + SUBQ $1, SI + NOTQ SI + MOVQ SI, X15 + PSHUFD $0x44, X15, X15 + + MOVOU 0(DI), X0 + MOVOU 16(DI), X2 + MOVOU 32(DI), X4 + MOVOU 48(DI), X6 + MOVOU 64(DI), X8 + MOVOU 80(DI), X1 + MOVOU 96(DI), X3 + MOVOU 112(DI), X5 + MOVOU 128(DI), X7 + MOVOU 144(DI), X9 + + MOVO X1, X10 + MOVO X3, X11 + MOVO X5, X12 + MOVO X7, X13 + MOVO X9, X14 + + PXOR X0, X10 + PXOR X2, X11 + PXOR X4, X12 + PXOR X6, X13 + PXOR X8, X14 + PAND X15, X10 + PAND X15, X11 + PAND X15, X12 + PAND X15, X13 + PAND X15, X14 + PXOR X10, X0 + PXOR X10, X1 + PXOR X11, X2 + PXOR X11, X3 + PXOR X12, X4 + PXOR X12, X5 + PXOR X13, X6 + PXOR X13, X7 + PXOR X14, X8 + PXOR X14, X9 + + MOVOU X0, 0(DI) + MOVOU X2, 16(DI) + MOVOU X4, 32(DI) + MOVOU X6, 48(DI) + MOVOU X8, 64(DI) + MOVOU X1, 80(DI) + MOVOU X3, 96(DI) + MOVOU X5, 112(DI) + MOVOU X7, 128(DI) + MOVOU X9, 144(DI) + RET diff --git a/vendor/golang.org/x/crypto/curve25519/curve25519.go b/vendor/golang.org/x/crypto/curve25519/curve25519.go new file mode 100644 index 000000000..cb8fbc57b --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/curve25519.go @@ -0,0 +1,834 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// We have an implementation in amd64 assembly so this code is only run on +// non-amd64 platforms. The amd64 assembly does not support gccgo. +// +build !amd64 gccgo appengine + +package curve25519 + +import ( + "encoding/binary" +) + +// This code is a port of the public domain, "ref10" implementation of +// curve25519 from SUPERCOP 20130419 by D. J. Bernstein. + +// fieldElement represents an element of the field GF(2^255 - 19). An element +// t, entries t[0]...t[9], represents the integer t[0]+2^26 t[1]+2^51 t[2]+2^77 +// t[3]+2^102 t[4]+...+2^230 t[9]. Bounds on each t[i] vary depending on +// context. +type fieldElement [10]int32 + +func feZero(fe *fieldElement) { + for i := range fe { + fe[i] = 0 + } +} + +func feOne(fe *fieldElement) { + feZero(fe) + fe[0] = 1 +} + +func feAdd(dst, a, b *fieldElement) { + for i := range dst { + dst[i] = a[i] + b[i] + } +} + +func feSub(dst, a, b *fieldElement) { + for i := range dst { + dst[i] = a[i] - b[i] + } +} + +func feCopy(dst, src *fieldElement) { + for i := range dst { + dst[i] = src[i] + } +} + +// feCSwap replaces (f,g) with (g,f) if b == 1; replaces (f,g) with (f,g) if b == 0. +// +// Preconditions: b in {0,1}. +func feCSwap(f, g *fieldElement, b int32) { + b = -b + for i := range f { + t := b & (f[i] ^ g[i]) + f[i] ^= t + g[i] ^= t + } +} + +// load3 reads a 24-bit, little-endian value from in. +func load3(in []byte) int64 { + var r int64 + r = int64(in[0]) + r |= int64(in[1]) << 8 + r |= int64(in[2]) << 16 + return r +} + +// load4 reads a 32-bit, little-endian value from in. +func load4(in []byte) int64 { + return int64(binary.LittleEndian.Uint32(in)) +} + +func feFromBytes(dst *fieldElement, src *[32]byte) { + h0 := load4(src[:]) + h1 := load3(src[4:]) << 6 + h2 := load3(src[7:]) << 5 + h3 := load3(src[10:]) << 3 + h4 := load3(src[13:]) << 2 + h5 := load4(src[16:]) + h6 := load3(src[20:]) << 7 + h7 := load3(src[23:]) << 5 + h8 := load3(src[26:]) << 4 + h9 := load3(src[29:]) << 2 + + var carry [10]int64 + carry[9] = (h9 + 1<<24) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + carry[1] = (h1 + 1<<24) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[3] = (h3 + 1<<24) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[5] = (h5 + 1<<24) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + carry[7] = (h7 + 1<<24) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + + carry[0] = (h0 + 1<<25) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[2] = (h2 + 1<<25) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[4] = (h4 + 1<<25) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[6] = (h6 + 1<<25) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + carry[8] = (h8 + 1<<25) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + + dst[0] = int32(h0) + dst[1] = int32(h1) + dst[2] = int32(h2) + dst[3] = int32(h3) + dst[4] = int32(h4) + dst[5] = int32(h5) + dst[6] = int32(h6) + dst[7] = int32(h7) + dst[8] = int32(h8) + dst[9] = int32(h9) +} + +// feToBytes marshals h to s. +// Preconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +// +// Write p=2^255-19; q=floor(h/p). +// Basic claim: q = floor(2^(-255)(h + 19 2^(-25)h9 + 2^(-1))). +// +// Proof: +// Have |h|<=p so |q|<=1 so |19^2 2^(-255) q|<1/4. +// Also have |h-2^230 h9|<2^230 so |19 2^(-255)(h-2^230 h9)|<1/4. +// +// Write y=2^(-1)-19^2 2^(-255)q-19 2^(-255)(h-2^230 h9). +// Then 0> 25 + q = (h[0] + q) >> 26 + q = (h[1] + q) >> 25 + q = (h[2] + q) >> 26 + q = (h[3] + q) >> 25 + q = (h[4] + q) >> 26 + q = (h[5] + q) >> 25 + q = (h[6] + q) >> 26 + q = (h[7] + q) >> 25 + q = (h[8] + q) >> 26 + q = (h[9] + q) >> 25 + + // Goal: Output h-(2^255-19)q, which is between 0 and 2^255-20. + h[0] += 19 * q + // Goal: Output h-2^255 q, which is between 0 and 2^255-20. + + carry[0] = h[0] >> 26 + h[1] += carry[0] + h[0] -= carry[0] << 26 + carry[1] = h[1] >> 25 + h[2] += carry[1] + h[1] -= carry[1] << 25 + carry[2] = h[2] >> 26 + h[3] += carry[2] + h[2] -= carry[2] << 26 + carry[3] = h[3] >> 25 + h[4] += carry[3] + h[3] -= carry[3] << 25 + carry[4] = h[4] >> 26 + h[5] += carry[4] + h[4] -= carry[4] << 26 + carry[5] = h[5] >> 25 + h[6] += carry[5] + h[5] -= carry[5] << 25 + carry[6] = h[6] >> 26 + h[7] += carry[6] + h[6] -= carry[6] << 26 + carry[7] = h[7] >> 25 + h[8] += carry[7] + h[7] -= carry[7] << 25 + carry[8] = h[8] >> 26 + h[9] += carry[8] + h[8] -= carry[8] << 26 + carry[9] = h[9] >> 25 + h[9] -= carry[9] << 25 + // h10 = carry9 + + // Goal: Output h[0]+...+2^255 h10-2^255 q, which is between 0 and 2^255-20. + // Have h[0]+...+2^230 h[9] between 0 and 2^255-1; + // evidently 2^255 h10-2^255 q = 0. + // Goal: Output h[0]+...+2^230 h[9]. + + s[0] = byte(h[0] >> 0) + s[1] = byte(h[0] >> 8) + s[2] = byte(h[0] >> 16) + s[3] = byte((h[0] >> 24) | (h[1] << 2)) + s[4] = byte(h[1] >> 6) + s[5] = byte(h[1] >> 14) + s[6] = byte((h[1] >> 22) | (h[2] << 3)) + s[7] = byte(h[2] >> 5) + s[8] = byte(h[2] >> 13) + s[9] = byte((h[2] >> 21) | (h[3] << 5)) + s[10] = byte(h[3] >> 3) + s[11] = byte(h[3] >> 11) + s[12] = byte((h[3] >> 19) | (h[4] << 6)) + s[13] = byte(h[4] >> 2) + s[14] = byte(h[4] >> 10) + s[15] = byte(h[4] >> 18) + s[16] = byte(h[5] >> 0) + s[17] = byte(h[5] >> 8) + s[18] = byte(h[5] >> 16) + s[19] = byte((h[5] >> 24) | (h[6] << 1)) + s[20] = byte(h[6] >> 7) + s[21] = byte(h[6] >> 15) + s[22] = byte((h[6] >> 23) | (h[7] << 3)) + s[23] = byte(h[7] >> 5) + s[24] = byte(h[7] >> 13) + s[25] = byte((h[7] >> 21) | (h[8] << 4)) + s[26] = byte(h[8] >> 4) + s[27] = byte(h[8] >> 12) + s[28] = byte((h[8] >> 20) | (h[9] << 6)) + s[29] = byte(h[9] >> 2) + s[30] = byte(h[9] >> 10) + s[31] = byte(h[9] >> 18) +} + +// feMul calculates h = f * g +// Can overlap h with f or g. +// +// Preconditions: +// |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// |g| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +// +// Notes on implementation strategy: +// +// Using schoolbook multiplication. +// Karatsuba would save a little in some cost models. +// +// Most multiplications by 2 and 19 are 32-bit precomputations; +// cheaper than 64-bit postcomputations. +// +// There is one remaining multiplication by 19 in the carry chain; +// one *19 precomputation can be merged into this, +// but the resulting data flow is considerably less clean. +// +// There are 12 carries below. +// 10 of them are 2-way parallelizable and vectorizable. +// Can get away with 11 carries, but then data flow is much deeper. +// +// With tighter constraints on inputs can squeeze carries into int32. +func feMul(h, f, g *fieldElement) { + f0 := f[0] + f1 := f[1] + f2 := f[2] + f3 := f[3] + f4 := f[4] + f5 := f[5] + f6 := f[6] + f7 := f[7] + f8 := f[8] + f9 := f[9] + g0 := g[0] + g1 := g[1] + g2 := g[2] + g3 := g[3] + g4 := g[4] + g5 := g[5] + g6 := g[6] + g7 := g[7] + g8 := g[8] + g9 := g[9] + g1_19 := 19 * g1 // 1.4*2^29 + g2_19 := 19 * g2 // 1.4*2^30; still ok + g3_19 := 19 * g3 + g4_19 := 19 * g4 + g5_19 := 19 * g5 + g6_19 := 19 * g6 + g7_19 := 19 * g7 + g8_19 := 19 * g8 + g9_19 := 19 * g9 + f1_2 := 2 * f1 + f3_2 := 2 * f3 + f5_2 := 2 * f5 + f7_2 := 2 * f7 + f9_2 := 2 * f9 + f0g0 := int64(f0) * int64(g0) + f0g1 := int64(f0) * int64(g1) + f0g2 := int64(f0) * int64(g2) + f0g3 := int64(f0) * int64(g3) + f0g4 := int64(f0) * int64(g4) + f0g5 := int64(f0) * int64(g5) + f0g6 := int64(f0) * int64(g6) + f0g7 := int64(f0) * int64(g7) + f0g8 := int64(f0) * int64(g8) + f0g9 := int64(f0) * int64(g9) + f1g0 := int64(f1) * int64(g0) + f1g1_2 := int64(f1_2) * int64(g1) + f1g2 := int64(f1) * int64(g2) + f1g3_2 := int64(f1_2) * int64(g3) + f1g4 := int64(f1) * int64(g4) + f1g5_2 := int64(f1_2) * int64(g5) + f1g6 := int64(f1) * int64(g6) + f1g7_2 := int64(f1_2) * int64(g7) + f1g8 := int64(f1) * int64(g8) + f1g9_38 := int64(f1_2) * int64(g9_19) + f2g0 := int64(f2) * int64(g0) + f2g1 := int64(f2) * int64(g1) + f2g2 := int64(f2) * int64(g2) + f2g3 := int64(f2) * int64(g3) + f2g4 := int64(f2) * int64(g4) + f2g5 := int64(f2) * int64(g5) + f2g6 := int64(f2) * int64(g6) + f2g7 := int64(f2) * int64(g7) + f2g8_19 := int64(f2) * int64(g8_19) + f2g9_19 := int64(f2) * int64(g9_19) + f3g0 := int64(f3) * int64(g0) + f3g1_2 := int64(f3_2) * int64(g1) + f3g2 := int64(f3) * int64(g2) + f3g3_2 := int64(f3_2) * int64(g3) + f3g4 := int64(f3) * int64(g4) + f3g5_2 := int64(f3_2) * int64(g5) + f3g6 := int64(f3) * int64(g6) + f3g7_38 := int64(f3_2) * int64(g7_19) + f3g8_19 := int64(f3) * int64(g8_19) + f3g9_38 := int64(f3_2) * int64(g9_19) + f4g0 := int64(f4) * int64(g0) + f4g1 := int64(f4) * int64(g1) + f4g2 := int64(f4) * int64(g2) + f4g3 := int64(f4) * int64(g3) + f4g4 := int64(f4) * int64(g4) + f4g5 := int64(f4) * int64(g5) + f4g6_19 := int64(f4) * int64(g6_19) + f4g7_19 := int64(f4) * int64(g7_19) + f4g8_19 := int64(f4) * int64(g8_19) + f4g9_19 := int64(f4) * int64(g9_19) + f5g0 := int64(f5) * int64(g0) + f5g1_2 := int64(f5_2) * int64(g1) + f5g2 := int64(f5) * int64(g2) + f5g3_2 := int64(f5_2) * int64(g3) + f5g4 := int64(f5) * int64(g4) + f5g5_38 := int64(f5_2) * int64(g5_19) + f5g6_19 := int64(f5) * int64(g6_19) + f5g7_38 := int64(f5_2) * int64(g7_19) + f5g8_19 := int64(f5) * int64(g8_19) + f5g9_38 := int64(f5_2) * int64(g9_19) + f6g0 := int64(f6) * int64(g0) + f6g1 := int64(f6) * int64(g1) + f6g2 := int64(f6) * int64(g2) + f6g3 := int64(f6) * int64(g3) + f6g4_19 := int64(f6) * int64(g4_19) + f6g5_19 := int64(f6) * int64(g5_19) + f6g6_19 := int64(f6) * int64(g6_19) + f6g7_19 := int64(f6) * int64(g7_19) + f6g8_19 := int64(f6) * int64(g8_19) + f6g9_19 := int64(f6) * int64(g9_19) + f7g0 := int64(f7) * int64(g0) + f7g1_2 := int64(f7_2) * int64(g1) + f7g2 := int64(f7) * int64(g2) + f7g3_38 := int64(f7_2) * int64(g3_19) + f7g4_19 := int64(f7) * int64(g4_19) + f7g5_38 := int64(f7_2) * int64(g5_19) + f7g6_19 := int64(f7) * int64(g6_19) + f7g7_38 := int64(f7_2) * int64(g7_19) + f7g8_19 := int64(f7) * int64(g8_19) + f7g9_38 := int64(f7_2) * int64(g9_19) + f8g0 := int64(f8) * int64(g0) + f8g1 := int64(f8) * int64(g1) + f8g2_19 := int64(f8) * int64(g2_19) + f8g3_19 := int64(f8) * int64(g3_19) + f8g4_19 := int64(f8) * int64(g4_19) + f8g5_19 := int64(f8) * int64(g5_19) + f8g6_19 := int64(f8) * int64(g6_19) + f8g7_19 := int64(f8) * int64(g7_19) + f8g8_19 := int64(f8) * int64(g8_19) + f8g9_19 := int64(f8) * int64(g9_19) + f9g0 := int64(f9) * int64(g0) + f9g1_38 := int64(f9_2) * int64(g1_19) + f9g2_19 := int64(f9) * int64(g2_19) + f9g3_38 := int64(f9_2) * int64(g3_19) + f9g4_19 := int64(f9) * int64(g4_19) + f9g5_38 := int64(f9_2) * int64(g5_19) + f9g6_19 := int64(f9) * int64(g6_19) + f9g7_38 := int64(f9_2) * int64(g7_19) + f9g8_19 := int64(f9) * int64(g8_19) + f9g9_38 := int64(f9_2) * int64(g9_19) + h0 := f0g0 + f1g9_38 + f2g8_19 + f3g7_38 + f4g6_19 + f5g5_38 + f6g4_19 + f7g3_38 + f8g2_19 + f9g1_38 + h1 := f0g1 + f1g0 + f2g9_19 + f3g8_19 + f4g7_19 + f5g6_19 + f6g5_19 + f7g4_19 + f8g3_19 + f9g2_19 + h2 := f0g2 + f1g1_2 + f2g0 + f3g9_38 + f4g8_19 + f5g7_38 + f6g6_19 + f7g5_38 + f8g4_19 + f9g3_38 + h3 := f0g3 + f1g2 + f2g1 + f3g0 + f4g9_19 + f5g8_19 + f6g7_19 + f7g6_19 + f8g5_19 + f9g4_19 + h4 := f0g4 + f1g3_2 + f2g2 + f3g1_2 + f4g0 + f5g9_38 + f6g8_19 + f7g7_38 + f8g6_19 + f9g5_38 + h5 := f0g5 + f1g4 + f2g3 + f3g2 + f4g1 + f5g0 + f6g9_19 + f7g8_19 + f8g7_19 + f9g6_19 + h6 := f0g6 + f1g5_2 + f2g4 + f3g3_2 + f4g2 + f5g1_2 + f6g0 + f7g9_38 + f8g8_19 + f9g7_38 + h7 := f0g7 + f1g6 + f2g5 + f3g4 + f4g3 + f5g2 + f6g1 + f7g0 + f8g9_19 + f9g8_19 + h8 := f0g8 + f1g7_2 + f2g6 + f3g5_2 + f4g4 + f5g3_2 + f6g2 + f7g1_2 + f8g0 + f9g9_38 + h9 := f0g9 + f1g8 + f2g7 + f3g6 + f4g5 + f5g4 + f6g3 + f7g2 + f8g1 + f9g0 + var carry [10]int64 + + // |h0| <= (1.1*1.1*2^52*(1+19+19+19+19)+1.1*1.1*2^50*(38+38+38+38+38)) + // i.e. |h0| <= 1.2*2^59; narrower ranges for h2, h4, h6, h8 + // |h1| <= (1.1*1.1*2^51*(1+1+19+19+19+19+19+19+19+19)) + // i.e. |h1| <= 1.5*2^58; narrower ranges for h3, h5, h7, h9 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + // |h0| <= 2^25 + // |h4| <= 2^25 + // |h1| <= 1.51*2^58 + // |h5| <= 1.51*2^58 + + carry[1] = (h1 + (1 << 24)) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[5] = (h5 + (1 << 24)) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + // |h1| <= 2^24; from now on fits into int32 + // |h5| <= 2^24; from now on fits into int32 + // |h2| <= 1.21*2^59 + // |h6| <= 1.21*2^59 + + carry[2] = (h2 + (1 << 25)) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[6] = (h6 + (1 << 25)) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + // |h2| <= 2^25; from now on fits into int32 unchanged + // |h6| <= 2^25; from now on fits into int32 unchanged + // |h3| <= 1.51*2^58 + // |h7| <= 1.51*2^58 + + carry[3] = (h3 + (1 << 24)) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[7] = (h7 + (1 << 24)) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + // |h3| <= 2^24; from now on fits into int32 unchanged + // |h7| <= 2^24; from now on fits into int32 unchanged + // |h4| <= 1.52*2^33 + // |h8| <= 1.52*2^33 + + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[8] = (h8 + (1 << 25)) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + // |h4| <= 2^25; from now on fits into int32 unchanged + // |h8| <= 2^25; from now on fits into int32 unchanged + // |h5| <= 1.01*2^24 + // |h9| <= 1.51*2^58 + + carry[9] = (h9 + (1 << 24)) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + // |h9| <= 2^24; from now on fits into int32 unchanged + // |h0| <= 1.8*2^37 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + // |h0| <= 2^25; from now on fits into int32 unchanged + // |h1| <= 1.01*2^24 + + h[0] = int32(h0) + h[1] = int32(h1) + h[2] = int32(h2) + h[3] = int32(h3) + h[4] = int32(h4) + h[5] = int32(h5) + h[6] = int32(h6) + h[7] = int32(h7) + h[8] = int32(h8) + h[9] = int32(h9) +} + +// feSquare calculates h = f*f. Can overlap h with f. +// +// Preconditions: +// |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +func feSquare(h, f *fieldElement) { + f0 := f[0] + f1 := f[1] + f2 := f[2] + f3 := f[3] + f4 := f[4] + f5 := f[5] + f6 := f[6] + f7 := f[7] + f8 := f[8] + f9 := f[9] + f0_2 := 2 * f0 + f1_2 := 2 * f1 + f2_2 := 2 * f2 + f3_2 := 2 * f3 + f4_2 := 2 * f4 + f5_2 := 2 * f5 + f6_2 := 2 * f6 + f7_2 := 2 * f7 + f5_38 := 38 * f5 // 1.31*2^30 + f6_19 := 19 * f6 // 1.31*2^30 + f7_38 := 38 * f7 // 1.31*2^30 + f8_19 := 19 * f8 // 1.31*2^30 + f9_38 := 38 * f9 // 1.31*2^30 + f0f0 := int64(f0) * int64(f0) + f0f1_2 := int64(f0_2) * int64(f1) + f0f2_2 := int64(f0_2) * int64(f2) + f0f3_2 := int64(f0_2) * int64(f3) + f0f4_2 := int64(f0_2) * int64(f4) + f0f5_2 := int64(f0_2) * int64(f5) + f0f6_2 := int64(f0_2) * int64(f6) + f0f7_2 := int64(f0_2) * int64(f7) + f0f8_2 := int64(f0_2) * int64(f8) + f0f9_2 := int64(f0_2) * int64(f9) + f1f1_2 := int64(f1_2) * int64(f1) + f1f2_2 := int64(f1_2) * int64(f2) + f1f3_4 := int64(f1_2) * int64(f3_2) + f1f4_2 := int64(f1_2) * int64(f4) + f1f5_4 := int64(f1_2) * int64(f5_2) + f1f6_2 := int64(f1_2) * int64(f6) + f1f7_4 := int64(f1_2) * int64(f7_2) + f1f8_2 := int64(f1_2) * int64(f8) + f1f9_76 := int64(f1_2) * int64(f9_38) + f2f2 := int64(f2) * int64(f2) + f2f3_2 := int64(f2_2) * int64(f3) + f2f4_2 := int64(f2_2) * int64(f4) + f2f5_2 := int64(f2_2) * int64(f5) + f2f6_2 := int64(f2_2) * int64(f6) + f2f7_2 := int64(f2_2) * int64(f7) + f2f8_38 := int64(f2_2) * int64(f8_19) + f2f9_38 := int64(f2) * int64(f9_38) + f3f3_2 := int64(f3_2) * int64(f3) + f3f4_2 := int64(f3_2) * int64(f4) + f3f5_4 := int64(f3_2) * int64(f5_2) + f3f6_2 := int64(f3_2) * int64(f6) + f3f7_76 := int64(f3_2) * int64(f7_38) + f3f8_38 := int64(f3_2) * int64(f8_19) + f3f9_76 := int64(f3_2) * int64(f9_38) + f4f4 := int64(f4) * int64(f4) + f4f5_2 := int64(f4_2) * int64(f5) + f4f6_38 := int64(f4_2) * int64(f6_19) + f4f7_38 := int64(f4) * int64(f7_38) + f4f8_38 := int64(f4_2) * int64(f8_19) + f4f9_38 := int64(f4) * int64(f9_38) + f5f5_38 := int64(f5) * int64(f5_38) + f5f6_38 := int64(f5_2) * int64(f6_19) + f5f7_76 := int64(f5_2) * int64(f7_38) + f5f8_38 := int64(f5_2) * int64(f8_19) + f5f9_76 := int64(f5_2) * int64(f9_38) + f6f6_19 := int64(f6) * int64(f6_19) + f6f7_38 := int64(f6) * int64(f7_38) + f6f8_38 := int64(f6_2) * int64(f8_19) + f6f9_38 := int64(f6) * int64(f9_38) + f7f7_38 := int64(f7) * int64(f7_38) + f7f8_38 := int64(f7_2) * int64(f8_19) + f7f9_76 := int64(f7_2) * int64(f9_38) + f8f8_19 := int64(f8) * int64(f8_19) + f8f9_38 := int64(f8) * int64(f9_38) + f9f9_38 := int64(f9) * int64(f9_38) + h0 := f0f0 + f1f9_76 + f2f8_38 + f3f7_76 + f4f6_38 + f5f5_38 + h1 := f0f1_2 + f2f9_38 + f3f8_38 + f4f7_38 + f5f6_38 + h2 := f0f2_2 + f1f1_2 + f3f9_76 + f4f8_38 + f5f7_76 + f6f6_19 + h3 := f0f3_2 + f1f2_2 + f4f9_38 + f5f8_38 + f6f7_38 + h4 := f0f4_2 + f1f3_4 + f2f2 + f5f9_76 + f6f8_38 + f7f7_38 + h5 := f0f5_2 + f1f4_2 + f2f3_2 + f6f9_38 + f7f8_38 + h6 := f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19 + h7 := f0f7_2 + f1f6_2 + f2f5_2 + f3f4_2 + f8f9_38 + h8 := f0f8_2 + f1f7_4 + f2f6_2 + f3f5_4 + f4f4 + f9f9_38 + h9 := f0f9_2 + f1f8_2 + f2f7_2 + f3f6_2 + f4f5_2 + var carry [10]int64 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + + carry[1] = (h1 + (1 << 24)) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[5] = (h5 + (1 << 24)) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + + carry[2] = (h2 + (1 << 25)) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[6] = (h6 + (1 << 25)) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + + carry[3] = (h3 + (1 << 24)) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[7] = (h7 + (1 << 24)) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[8] = (h8 + (1 << 25)) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + + carry[9] = (h9 + (1 << 24)) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + + h[0] = int32(h0) + h[1] = int32(h1) + h[2] = int32(h2) + h[3] = int32(h3) + h[4] = int32(h4) + h[5] = int32(h5) + h[6] = int32(h6) + h[7] = int32(h7) + h[8] = int32(h8) + h[9] = int32(h9) +} + +// feMul121666 calculates h = f * 121666. Can overlap h with f. +// +// Preconditions: +// |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. +// +// Postconditions: +// |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. +func feMul121666(h, f *fieldElement) { + h0 := int64(f[0]) * 121666 + h1 := int64(f[1]) * 121666 + h2 := int64(f[2]) * 121666 + h3 := int64(f[3]) * 121666 + h4 := int64(f[4]) * 121666 + h5 := int64(f[5]) * 121666 + h6 := int64(f[6]) * 121666 + h7 := int64(f[7]) * 121666 + h8 := int64(f[8]) * 121666 + h9 := int64(f[9]) * 121666 + var carry [10]int64 + + carry[9] = (h9 + (1 << 24)) >> 25 + h0 += carry[9] * 19 + h9 -= carry[9] << 25 + carry[1] = (h1 + (1 << 24)) >> 25 + h2 += carry[1] + h1 -= carry[1] << 25 + carry[3] = (h3 + (1 << 24)) >> 25 + h4 += carry[3] + h3 -= carry[3] << 25 + carry[5] = (h5 + (1 << 24)) >> 25 + h6 += carry[5] + h5 -= carry[5] << 25 + carry[7] = (h7 + (1 << 24)) >> 25 + h8 += carry[7] + h7 -= carry[7] << 25 + + carry[0] = (h0 + (1 << 25)) >> 26 + h1 += carry[0] + h0 -= carry[0] << 26 + carry[2] = (h2 + (1 << 25)) >> 26 + h3 += carry[2] + h2 -= carry[2] << 26 + carry[4] = (h4 + (1 << 25)) >> 26 + h5 += carry[4] + h4 -= carry[4] << 26 + carry[6] = (h6 + (1 << 25)) >> 26 + h7 += carry[6] + h6 -= carry[6] << 26 + carry[8] = (h8 + (1 << 25)) >> 26 + h9 += carry[8] + h8 -= carry[8] << 26 + + h[0] = int32(h0) + h[1] = int32(h1) + h[2] = int32(h2) + h[3] = int32(h3) + h[4] = int32(h4) + h[5] = int32(h5) + h[6] = int32(h6) + h[7] = int32(h7) + h[8] = int32(h8) + h[9] = int32(h9) +} + +// feInvert sets out = z^-1. +func feInvert(out, z *fieldElement) { + var t0, t1, t2, t3 fieldElement + var i int + + feSquare(&t0, z) + for i = 1; i < 1; i++ { + feSquare(&t0, &t0) + } + feSquare(&t1, &t0) + for i = 1; i < 2; i++ { + feSquare(&t1, &t1) + } + feMul(&t1, z, &t1) + feMul(&t0, &t0, &t1) + feSquare(&t2, &t0) + for i = 1; i < 1; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t1, &t2) + feSquare(&t2, &t1) + for i = 1; i < 5; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t2, &t1) + feSquare(&t2, &t1) + for i = 1; i < 10; i++ { + feSquare(&t2, &t2) + } + feMul(&t2, &t2, &t1) + feSquare(&t3, &t2) + for i = 1; i < 20; i++ { + feSquare(&t3, &t3) + } + feMul(&t2, &t3, &t2) + feSquare(&t2, &t2) + for i = 1; i < 10; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t2, &t1) + feSquare(&t2, &t1) + for i = 1; i < 50; i++ { + feSquare(&t2, &t2) + } + feMul(&t2, &t2, &t1) + feSquare(&t3, &t2) + for i = 1; i < 100; i++ { + feSquare(&t3, &t3) + } + feMul(&t2, &t3, &t2) + feSquare(&t2, &t2) + for i = 1; i < 50; i++ { + feSquare(&t2, &t2) + } + feMul(&t1, &t2, &t1) + feSquare(&t1, &t1) + for i = 1; i < 5; i++ { + feSquare(&t1, &t1) + } + feMul(out, &t1, &t0) +} + +func scalarMult(out, in, base *[32]byte) { + var e [32]byte + + copy(e[:], in[:]) + e[0] &= 248 + e[31] &= 127 + e[31] |= 64 + + var x1, x2, z2, x3, z3, tmp0, tmp1 fieldElement + feFromBytes(&x1, base) + feOne(&x2) + feCopy(&x3, &x1) + feOne(&z3) + + swap := int32(0) + for pos := 254; pos >= 0; pos-- { + b := e[pos/8] >> uint(pos&7) + b &= 1 + swap ^= int32(b) + feCSwap(&x2, &x3, swap) + feCSwap(&z2, &z3, swap) + swap = int32(b) + + feSub(&tmp0, &x3, &z3) + feSub(&tmp1, &x2, &z2) + feAdd(&x2, &x2, &z2) + feAdd(&z2, &x3, &z3) + feMul(&z3, &tmp0, &x2) + feMul(&z2, &z2, &tmp1) + feSquare(&tmp0, &tmp1) + feSquare(&tmp1, &x2) + feAdd(&x3, &z3, &z2) + feSub(&z2, &z3, &z2) + feMul(&x2, &tmp1, &tmp0) + feSub(&tmp1, &tmp1, &tmp0) + feSquare(&z2, &z2) + feMul121666(&z3, &tmp1) + feSquare(&x3, &x3) + feAdd(&tmp0, &tmp0, &z3) + feMul(&z3, &x1, &z2) + feMul(&z2, &tmp1, &tmp0) + } + + feCSwap(&x2, &x3, swap) + feCSwap(&z2, &z3, swap) + + feInvert(&z2, &z2) + feMul(&x2, &x2, &z2) + feToBytes(out, &x2) +} diff --git a/vendor/golang.org/x/crypto/curve25519/doc.go b/vendor/golang.org/x/crypto/curve25519/doc.go new file mode 100644 index 000000000..da9b10d9c --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/doc.go @@ -0,0 +1,23 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package curve25519 provides an implementation of scalar multiplication on +// the elliptic curve known as curve25519. See https://cr.yp.to/ecdh.html +package curve25519 // import "golang.org/x/crypto/curve25519" + +// basePoint is the x coordinate of the generator of the curve. +var basePoint = [32]byte{9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} + +// ScalarMult sets dst to the product in*base where dst and base are the x +// coordinates of group points and all values are in little-endian form. +func ScalarMult(dst, in, base *[32]byte) { + scalarMult(dst, in, base) +} + +// ScalarBaseMult sets dst to the product in*base where dst and base are the x +// coordinates of group points, base is the standard generator and all values +// are in little-endian form. +func ScalarBaseMult(dst, in *[32]byte) { + ScalarMult(dst, in, &basePoint) +} diff --git a/vendor/golang.org/x/crypto/curve25519/freeze_amd64.s b/vendor/golang.org/x/crypto/curve25519/freeze_amd64.s new file mode 100644 index 000000000..390816106 --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/freeze_amd64.s @@ -0,0 +1,73 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo,!appengine + +#include "const_amd64.h" + +// func freeze(inout *[5]uint64) +TEXT ·freeze(SB),7,$0-8 + MOVQ inout+0(FP), DI + + MOVQ 0(DI),SI + MOVQ 8(DI),DX + MOVQ 16(DI),CX + MOVQ 24(DI),R8 + MOVQ 32(DI),R9 + MOVQ $REDMASK51,AX + MOVQ AX,R10 + SUBQ $18,R10 + MOVQ $3,R11 +REDUCELOOP: + MOVQ SI,R12 + SHRQ $51,R12 + ANDQ AX,SI + ADDQ R12,DX + MOVQ DX,R12 + SHRQ $51,R12 + ANDQ AX,DX + ADDQ R12,CX + MOVQ CX,R12 + SHRQ $51,R12 + ANDQ AX,CX + ADDQ R12,R8 + MOVQ R8,R12 + SHRQ $51,R12 + ANDQ AX,R8 + ADDQ R12,R9 + MOVQ R9,R12 + SHRQ $51,R12 + ANDQ AX,R9 + IMUL3Q $19,R12,R12 + ADDQ R12,SI + SUBQ $1,R11 + JA REDUCELOOP + MOVQ $1,R12 + CMPQ R10,SI + CMOVQLT R11,R12 + CMPQ AX,DX + CMOVQNE R11,R12 + CMPQ AX,CX + CMOVQNE R11,R12 + CMPQ AX,R8 + CMOVQNE R11,R12 + CMPQ AX,R9 + CMOVQNE R11,R12 + NEGQ R12 + ANDQ R12,AX + ANDQ R12,R10 + SUBQ R10,SI + SUBQ AX,DX + SUBQ AX,CX + SUBQ AX,R8 + SUBQ AX,R9 + MOVQ SI,0(DI) + MOVQ DX,8(DI) + MOVQ CX,16(DI) + MOVQ R8,24(DI) + MOVQ R9,32(DI) + RET diff --git a/vendor/golang.org/x/crypto/curve25519/ladderstep_amd64.s b/vendor/golang.org/x/crypto/curve25519/ladderstep_amd64.s new file mode 100644 index 000000000..9e9040b25 --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/ladderstep_amd64.s @@ -0,0 +1,1377 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo,!appengine + +#include "const_amd64.h" + +// func ladderstep(inout *[5][5]uint64) +TEXT ·ladderstep(SB),0,$296-8 + MOVQ inout+0(FP),DI + + MOVQ 40(DI),SI + MOVQ 48(DI),DX + MOVQ 56(DI),CX + MOVQ 64(DI),R8 + MOVQ 72(DI),R9 + MOVQ SI,AX + MOVQ DX,R10 + MOVQ CX,R11 + MOVQ R8,R12 + MOVQ R9,R13 + ADDQ ·_2P0(SB),AX + ADDQ ·_2P1234(SB),R10 + ADDQ ·_2P1234(SB),R11 + ADDQ ·_2P1234(SB),R12 + ADDQ ·_2P1234(SB),R13 + ADDQ 80(DI),SI + ADDQ 88(DI),DX + ADDQ 96(DI),CX + ADDQ 104(DI),R8 + ADDQ 112(DI),R9 + SUBQ 80(DI),AX + SUBQ 88(DI),R10 + SUBQ 96(DI),R11 + SUBQ 104(DI),R12 + SUBQ 112(DI),R13 + MOVQ SI,0(SP) + MOVQ DX,8(SP) + MOVQ CX,16(SP) + MOVQ R8,24(SP) + MOVQ R9,32(SP) + MOVQ AX,40(SP) + MOVQ R10,48(SP) + MOVQ R11,56(SP) + MOVQ R12,64(SP) + MOVQ R13,72(SP) + MOVQ 40(SP),AX + MULQ 40(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 40(SP),AX + SHLQ $1,AX + MULQ 48(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 40(SP),AX + SHLQ $1,AX + MULQ 56(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 40(SP),AX + SHLQ $1,AX + MULQ 64(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 40(SP),AX + SHLQ $1,AX + MULQ 72(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 48(SP),AX + MULQ 48(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 48(SP),AX + SHLQ $1,AX + MULQ 56(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 48(SP),AX + SHLQ $1,AX + MULQ 64(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 48(SP),DX + IMUL3Q $38,DX,AX + MULQ 72(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 56(SP),AX + MULQ 56(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 56(SP),DX + IMUL3Q $38,DX,AX + MULQ 64(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 56(SP),DX + IMUL3Q $38,DX,AX + MULQ 72(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 64(SP),DX + IMUL3Q $19,DX,AX + MULQ 64(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 64(SP),DX + IMUL3Q $38,DX,AX + MULQ 72(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 72(SP),DX + IMUL3Q $19,DX,AX + MULQ 72(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,80(SP) + MOVQ R8,88(SP) + MOVQ R9,96(SP) + MOVQ AX,104(SP) + MOVQ R10,112(SP) + MOVQ 0(SP),AX + MULQ 0(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 0(SP),AX + SHLQ $1,AX + MULQ 8(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 0(SP),AX + SHLQ $1,AX + MULQ 16(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 0(SP),AX + SHLQ $1,AX + MULQ 24(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 0(SP),AX + SHLQ $1,AX + MULQ 32(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 8(SP),AX + MULQ 8(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SP),AX + SHLQ $1,AX + MULQ 16(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 8(SP),AX + SHLQ $1,AX + MULQ 24(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 8(SP),DX + IMUL3Q $38,DX,AX + MULQ 32(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 16(SP),AX + MULQ 16(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 16(SP),DX + IMUL3Q $38,DX,AX + MULQ 24(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 16(SP),DX + IMUL3Q $38,DX,AX + MULQ 32(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 24(SP),DX + IMUL3Q $19,DX,AX + MULQ 24(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 24(SP),DX + IMUL3Q $38,DX,AX + MULQ 32(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 32(SP),DX + IMUL3Q $19,DX,AX + MULQ 32(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,120(SP) + MOVQ R8,128(SP) + MOVQ R9,136(SP) + MOVQ AX,144(SP) + MOVQ R10,152(SP) + MOVQ SI,SI + MOVQ R8,DX + MOVQ R9,CX + MOVQ AX,R8 + MOVQ R10,R9 + ADDQ ·_2P0(SB),SI + ADDQ ·_2P1234(SB),DX + ADDQ ·_2P1234(SB),CX + ADDQ ·_2P1234(SB),R8 + ADDQ ·_2P1234(SB),R9 + SUBQ 80(SP),SI + SUBQ 88(SP),DX + SUBQ 96(SP),CX + SUBQ 104(SP),R8 + SUBQ 112(SP),R9 + MOVQ SI,160(SP) + MOVQ DX,168(SP) + MOVQ CX,176(SP) + MOVQ R8,184(SP) + MOVQ R9,192(SP) + MOVQ 120(DI),SI + MOVQ 128(DI),DX + MOVQ 136(DI),CX + MOVQ 144(DI),R8 + MOVQ 152(DI),R9 + MOVQ SI,AX + MOVQ DX,R10 + MOVQ CX,R11 + MOVQ R8,R12 + MOVQ R9,R13 + ADDQ ·_2P0(SB),AX + ADDQ ·_2P1234(SB),R10 + ADDQ ·_2P1234(SB),R11 + ADDQ ·_2P1234(SB),R12 + ADDQ ·_2P1234(SB),R13 + ADDQ 160(DI),SI + ADDQ 168(DI),DX + ADDQ 176(DI),CX + ADDQ 184(DI),R8 + ADDQ 192(DI),R9 + SUBQ 160(DI),AX + SUBQ 168(DI),R10 + SUBQ 176(DI),R11 + SUBQ 184(DI),R12 + SUBQ 192(DI),R13 + MOVQ SI,200(SP) + MOVQ DX,208(SP) + MOVQ CX,216(SP) + MOVQ R8,224(SP) + MOVQ R9,232(SP) + MOVQ AX,240(SP) + MOVQ R10,248(SP) + MOVQ R11,256(SP) + MOVQ R12,264(SP) + MOVQ R13,272(SP) + MOVQ 224(SP),SI + IMUL3Q $19,SI,AX + MOVQ AX,280(SP) + MULQ 56(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 232(SP),DX + IMUL3Q $19,DX,AX + MOVQ AX,288(SP) + MULQ 48(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 200(SP),AX + MULQ 40(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 200(SP),AX + MULQ 48(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 200(SP),AX + MULQ 56(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 200(SP),AX + MULQ 64(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 200(SP),AX + MULQ 72(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 208(SP),AX + MULQ 40(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 208(SP),AX + MULQ 48(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 208(SP),AX + MULQ 56(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 208(SP),AX + MULQ 64(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 208(SP),DX + IMUL3Q $19,DX,AX + MULQ 72(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 216(SP),AX + MULQ 40(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 216(SP),AX + MULQ 48(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 216(SP),AX + MULQ 56(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 216(SP),DX + IMUL3Q $19,DX,AX + MULQ 64(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 216(SP),DX + IMUL3Q $19,DX,AX + MULQ 72(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 224(SP),AX + MULQ 40(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 224(SP),AX + MULQ 48(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 280(SP),AX + MULQ 64(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 280(SP),AX + MULQ 72(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 232(SP),AX + MULQ 40(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 288(SP),AX + MULQ 56(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 288(SP),AX + MULQ 64(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 288(SP),AX + MULQ 72(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,40(SP) + MOVQ R8,48(SP) + MOVQ R9,56(SP) + MOVQ AX,64(SP) + MOVQ R10,72(SP) + MOVQ 264(SP),SI + IMUL3Q $19,SI,AX + MOVQ AX,200(SP) + MULQ 16(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 272(SP),DX + IMUL3Q $19,DX,AX + MOVQ AX,208(SP) + MULQ 8(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 240(SP),AX + MULQ 0(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 240(SP),AX + MULQ 8(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 240(SP),AX + MULQ 16(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 240(SP),AX + MULQ 24(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 240(SP),AX + MULQ 32(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 248(SP),AX + MULQ 0(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 248(SP),AX + MULQ 8(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 248(SP),AX + MULQ 16(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 248(SP),AX + MULQ 24(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 248(SP),DX + IMUL3Q $19,DX,AX + MULQ 32(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 256(SP),AX + MULQ 0(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 256(SP),AX + MULQ 8(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 256(SP),AX + MULQ 16(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 256(SP),DX + IMUL3Q $19,DX,AX + MULQ 24(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 256(SP),DX + IMUL3Q $19,DX,AX + MULQ 32(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 264(SP),AX + MULQ 0(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 264(SP),AX + MULQ 8(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 200(SP),AX + MULQ 24(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 200(SP),AX + MULQ 32(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 272(SP),AX + MULQ 0(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 208(SP),AX + MULQ 16(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 208(SP),AX + MULQ 24(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 208(SP),AX + MULQ 32(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,DX + MOVQ R8,CX + MOVQ R9,R11 + MOVQ AX,R12 + MOVQ R10,R13 + ADDQ ·_2P0(SB),DX + ADDQ ·_2P1234(SB),CX + ADDQ ·_2P1234(SB),R11 + ADDQ ·_2P1234(SB),R12 + ADDQ ·_2P1234(SB),R13 + ADDQ 40(SP),SI + ADDQ 48(SP),R8 + ADDQ 56(SP),R9 + ADDQ 64(SP),AX + ADDQ 72(SP),R10 + SUBQ 40(SP),DX + SUBQ 48(SP),CX + SUBQ 56(SP),R11 + SUBQ 64(SP),R12 + SUBQ 72(SP),R13 + MOVQ SI,120(DI) + MOVQ R8,128(DI) + MOVQ R9,136(DI) + MOVQ AX,144(DI) + MOVQ R10,152(DI) + MOVQ DX,160(DI) + MOVQ CX,168(DI) + MOVQ R11,176(DI) + MOVQ R12,184(DI) + MOVQ R13,192(DI) + MOVQ 120(DI),AX + MULQ 120(DI) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 128(DI) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 136(DI) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 144(DI) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 120(DI),AX + SHLQ $1,AX + MULQ 152(DI) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 128(DI),AX + MULQ 128(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 128(DI),AX + SHLQ $1,AX + MULQ 136(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 128(DI),AX + SHLQ $1,AX + MULQ 144(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 128(DI),DX + IMUL3Q $38,DX,AX + MULQ 152(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 136(DI),AX + MULQ 136(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 136(DI),DX + IMUL3Q $38,DX,AX + MULQ 144(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 136(DI),DX + IMUL3Q $38,DX,AX + MULQ 152(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 144(DI),DX + IMUL3Q $19,DX,AX + MULQ 144(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 144(DI),DX + IMUL3Q $38,DX,AX + MULQ 152(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 152(DI),DX + IMUL3Q $19,DX,AX + MULQ 152(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,120(DI) + MOVQ R8,128(DI) + MOVQ R9,136(DI) + MOVQ AX,144(DI) + MOVQ R10,152(DI) + MOVQ 160(DI),AX + MULQ 160(DI) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 168(DI) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 176(DI) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 184(DI) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 160(DI),AX + SHLQ $1,AX + MULQ 192(DI) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 168(DI),AX + MULQ 168(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 168(DI),AX + SHLQ $1,AX + MULQ 176(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 168(DI),AX + SHLQ $1,AX + MULQ 184(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 168(DI),DX + IMUL3Q $38,DX,AX + MULQ 192(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),AX + MULQ 176(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 176(DI),DX + IMUL3Q $38,DX,AX + MULQ 184(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),DX + IMUL3Q $38,DX,AX + MULQ 192(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 184(DI),DX + IMUL3Q $19,DX,AX + MULQ 184(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 184(DI),DX + IMUL3Q $38,DX,AX + MULQ 192(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 192(DI),DX + IMUL3Q $19,DX,AX + MULQ 192(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + ANDQ DX,SI + MOVQ CX,R8 + SHRQ $51,CX + ADDQ R10,CX + ANDQ DX,R8 + MOVQ CX,R9 + SHRQ $51,CX + ADDQ R12,CX + ANDQ DX,R9 + MOVQ CX,AX + SHRQ $51,CX + ADDQ R14,CX + ANDQ DX,AX + MOVQ CX,R10 + SHRQ $51,CX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,160(DI) + MOVQ R8,168(DI) + MOVQ R9,176(DI) + MOVQ AX,184(DI) + MOVQ R10,192(DI) + MOVQ 184(DI),SI + IMUL3Q $19,SI,AX + MOVQ AX,0(SP) + MULQ 16(DI) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 192(DI),DX + IMUL3Q $19,DX,AX + MOVQ AX,8(SP) + MULQ 8(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 160(DI),AX + MULQ 0(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 160(DI),AX + MULQ 8(DI) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 160(DI),AX + MULQ 16(DI) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 160(DI),AX + MULQ 24(DI) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 160(DI),AX + MULQ 32(DI) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 168(DI),AX + MULQ 0(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 168(DI),AX + MULQ 8(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 168(DI),AX + MULQ 16(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 168(DI),AX + MULQ 24(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 168(DI),DX + IMUL3Q $19,DX,AX + MULQ 32(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),AX + MULQ 0(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 176(DI),AX + MULQ 8(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 176(DI),AX + MULQ 16(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 176(DI),DX + IMUL3Q $19,DX,AX + MULQ 24(DI) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 176(DI),DX + IMUL3Q $19,DX,AX + MULQ 32(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 184(DI),AX + MULQ 0(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 184(DI),AX + MULQ 8(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 0(SP),AX + MULQ 24(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SP),AX + MULQ 32(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 192(DI),AX + MULQ 0(DI) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 8(SP),AX + MULQ 16(DI) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 8(SP),AX + MULQ 24(DI) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SP),AX + MULQ 32(DI) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,160(DI) + MOVQ R8,168(DI) + MOVQ R9,176(DI) + MOVQ AX,184(DI) + MOVQ R10,192(DI) + MOVQ 144(SP),SI + IMUL3Q $19,SI,AX + MOVQ AX,0(SP) + MULQ 96(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 152(SP),DX + IMUL3Q $19,DX,AX + MOVQ AX,8(SP) + MULQ 88(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 120(SP),AX + MULQ 80(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 120(SP),AX + MULQ 88(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 120(SP),AX + MULQ 96(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 120(SP),AX + MULQ 104(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 120(SP),AX + MULQ 112(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 128(SP),AX + MULQ 80(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 128(SP),AX + MULQ 88(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 128(SP),AX + MULQ 96(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 128(SP),AX + MULQ 104(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 128(SP),DX + IMUL3Q $19,DX,AX + MULQ 112(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 136(SP),AX + MULQ 80(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 136(SP),AX + MULQ 88(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 136(SP),AX + MULQ 96(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 136(SP),DX + IMUL3Q $19,DX,AX + MULQ 104(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 136(SP),DX + IMUL3Q $19,DX,AX + MULQ 112(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 144(SP),AX + MULQ 80(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 144(SP),AX + MULQ 88(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 0(SP),AX + MULQ 104(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SP),AX + MULQ 112(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 152(SP),AX + MULQ 80(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 8(SP),AX + MULQ 96(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 8(SP),AX + MULQ 104(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SP),AX + MULQ 112(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,40(DI) + MOVQ R8,48(DI) + MOVQ R9,56(DI) + MOVQ AX,64(DI) + MOVQ R10,72(DI) + MOVQ 160(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + MOVQ AX,SI + MOVQ DX,CX + MOVQ 168(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,CX + MOVQ DX,R8 + MOVQ 176(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,R8 + MOVQ DX,R9 + MOVQ 184(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,R9 + MOVQ DX,R10 + MOVQ 192(SP),AX + MULQ ·_121666_213(SB) + SHRQ $13,AX + ADDQ AX,R10 + IMUL3Q $19,DX,DX + ADDQ DX,SI + ADDQ 80(SP),SI + ADDQ 88(SP),CX + ADDQ 96(SP),R8 + ADDQ 104(SP),R9 + ADDQ 112(SP),R10 + MOVQ SI,80(DI) + MOVQ CX,88(DI) + MOVQ R8,96(DI) + MOVQ R9,104(DI) + MOVQ R10,112(DI) + MOVQ 104(DI),SI + IMUL3Q $19,SI,AX + MOVQ AX,0(SP) + MULQ 176(SP) + MOVQ AX,SI + MOVQ DX,CX + MOVQ 112(DI),DX + IMUL3Q $19,DX,AX + MOVQ AX,8(SP) + MULQ 168(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 80(DI),AX + MULQ 160(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 80(DI),AX + MULQ 168(SP) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 80(DI),AX + MULQ 176(SP) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 80(DI),AX + MULQ 184(SP) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 80(DI),AX + MULQ 192(SP) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 88(DI),AX + MULQ 160(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 88(DI),AX + MULQ 168(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 88(DI),AX + MULQ 176(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 88(DI),AX + MULQ 184(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 88(DI),DX + IMUL3Q $19,DX,AX + MULQ 192(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 96(DI),AX + MULQ 160(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 96(DI),AX + MULQ 168(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 96(DI),AX + MULQ 176(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 96(DI),DX + IMUL3Q $19,DX,AX + MULQ 184(SP) + ADDQ AX,SI + ADCQ DX,CX + MOVQ 96(DI),DX + IMUL3Q $19,DX,AX + MULQ 192(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 104(DI),AX + MULQ 160(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 104(DI),AX + MULQ 168(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 0(SP),AX + MULQ 184(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SP),AX + MULQ 192(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 112(DI),AX + MULQ 160(SP) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 8(SP),AX + MULQ 176(SP) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 8(SP),AX + MULQ 184(SP) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SP),AX + MULQ 192(SP) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ $REDMASK51,DX + SHLQ $13,CX:SI + ANDQ DX,SI + SHLQ $13,R9:R8 + ANDQ DX,R8 + ADDQ CX,R8 + SHLQ $13,R11:R10 + ANDQ DX,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ DX,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ DX,R14 + ADDQ R13,R14 + IMUL3Q $19,R15,CX + ADDQ CX,SI + MOVQ SI,CX + SHRQ $51,CX + ADDQ R8,CX + MOVQ CX,R8 + SHRQ $51,CX + ANDQ DX,SI + ADDQ R10,CX + MOVQ CX,R9 + SHRQ $51,CX + ANDQ DX,R8 + ADDQ R12,CX + MOVQ CX,AX + SHRQ $51,CX + ANDQ DX,R9 + ADDQ R14,CX + MOVQ CX,R10 + SHRQ $51,CX + ANDQ DX,AX + IMUL3Q $19,CX,CX + ADDQ CX,SI + ANDQ DX,R10 + MOVQ SI,80(DI) + MOVQ R8,88(DI) + MOVQ R9,96(DI) + MOVQ AX,104(DI) + MOVQ R10,112(DI) + RET diff --git a/vendor/golang.org/x/crypto/curve25519/mont25519_amd64.go b/vendor/golang.org/x/crypto/curve25519/mont25519_amd64.go new file mode 100644 index 000000000..5822bd533 --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/mont25519_amd64.go @@ -0,0 +1,240 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64,!gccgo,!appengine + +package curve25519 + +// These functions are implemented in the .s files. The names of the functions +// in the rest of the file are also taken from the SUPERCOP sources to help +// people following along. + +//go:noescape + +func cswap(inout *[5]uint64, v uint64) + +//go:noescape + +func ladderstep(inout *[5][5]uint64) + +//go:noescape + +func freeze(inout *[5]uint64) + +//go:noescape + +func mul(dest, a, b *[5]uint64) + +//go:noescape + +func square(out, in *[5]uint64) + +// mladder uses a Montgomery ladder to calculate (xr/zr) *= s. +func mladder(xr, zr *[5]uint64, s *[32]byte) { + var work [5][5]uint64 + + work[0] = *xr + setint(&work[1], 1) + setint(&work[2], 0) + work[3] = *xr + setint(&work[4], 1) + + j := uint(6) + var prevbit byte + + for i := 31; i >= 0; i-- { + for j < 8 { + bit := ((*s)[i] >> j) & 1 + swap := bit ^ prevbit + prevbit = bit + cswap(&work[1], uint64(swap)) + ladderstep(&work) + j-- + } + j = 7 + } + + *xr = work[1] + *zr = work[2] +} + +func scalarMult(out, in, base *[32]byte) { + var e [32]byte + copy(e[:], (*in)[:]) + e[0] &= 248 + e[31] &= 127 + e[31] |= 64 + + var t, z [5]uint64 + unpack(&t, base) + mladder(&t, &z, &e) + invert(&z, &z) + mul(&t, &t, &z) + pack(out, &t) +} + +func setint(r *[5]uint64, v uint64) { + r[0] = v + r[1] = 0 + r[2] = 0 + r[3] = 0 + r[4] = 0 +} + +// unpack sets r = x where r consists of 5, 51-bit limbs in little-endian +// order. +func unpack(r *[5]uint64, x *[32]byte) { + r[0] = uint64(x[0]) | + uint64(x[1])<<8 | + uint64(x[2])<<16 | + uint64(x[3])<<24 | + uint64(x[4])<<32 | + uint64(x[5])<<40 | + uint64(x[6]&7)<<48 + + r[1] = uint64(x[6])>>3 | + uint64(x[7])<<5 | + uint64(x[8])<<13 | + uint64(x[9])<<21 | + uint64(x[10])<<29 | + uint64(x[11])<<37 | + uint64(x[12]&63)<<45 + + r[2] = uint64(x[12])>>6 | + uint64(x[13])<<2 | + uint64(x[14])<<10 | + uint64(x[15])<<18 | + uint64(x[16])<<26 | + uint64(x[17])<<34 | + uint64(x[18])<<42 | + uint64(x[19]&1)<<50 + + r[3] = uint64(x[19])>>1 | + uint64(x[20])<<7 | + uint64(x[21])<<15 | + uint64(x[22])<<23 | + uint64(x[23])<<31 | + uint64(x[24])<<39 | + uint64(x[25]&15)<<47 + + r[4] = uint64(x[25])>>4 | + uint64(x[26])<<4 | + uint64(x[27])<<12 | + uint64(x[28])<<20 | + uint64(x[29])<<28 | + uint64(x[30])<<36 | + uint64(x[31]&127)<<44 +} + +// pack sets out = x where out is the usual, little-endian form of the 5, +// 51-bit limbs in x. +func pack(out *[32]byte, x *[5]uint64) { + t := *x + freeze(&t) + + out[0] = byte(t[0]) + out[1] = byte(t[0] >> 8) + out[2] = byte(t[0] >> 16) + out[3] = byte(t[0] >> 24) + out[4] = byte(t[0] >> 32) + out[5] = byte(t[0] >> 40) + out[6] = byte(t[0] >> 48) + + out[6] ^= byte(t[1]<<3) & 0xf8 + out[7] = byte(t[1] >> 5) + out[8] = byte(t[1] >> 13) + out[9] = byte(t[1] >> 21) + out[10] = byte(t[1] >> 29) + out[11] = byte(t[1] >> 37) + out[12] = byte(t[1] >> 45) + + out[12] ^= byte(t[2]<<6) & 0xc0 + out[13] = byte(t[2] >> 2) + out[14] = byte(t[2] >> 10) + out[15] = byte(t[2] >> 18) + out[16] = byte(t[2] >> 26) + out[17] = byte(t[2] >> 34) + out[18] = byte(t[2] >> 42) + out[19] = byte(t[2] >> 50) + + out[19] ^= byte(t[3]<<1) & 0xfe + out[20] = byte(t[3] >> 7) + out[21] = byte(t[3] >> 15) + out[22] = byte(t[3] >> 23) + out[23] = byte(t[3] >> 31) + out[24] = byte(t[3] >> 39) + out[25] = byte(t[3] >> 47) + + out[25] ^= byte(t[4]<<4) & 0xf0 + out[26] = byte(t[4] >> 4) + out[27] = byte(t[4] >> 12) + out[28] = byte(t[4] >> 20) + out[29] = byte(t[4] >> 28) + out[30] = byte(t[4] >> 36) + out[31] = byte(t[4] >> 44) +} + +// invert calculates r = x^-1 mod p using Fermat's little theorem. +func invert(r *[5]uint64, x *[5]uint64) { + var z2, z9, z11, z2_5_0, z2_10_0, z2_20_0, z2_50_0, z2_100_0, t [5]uint64 + + square(&z2, x) /* 2 */ + square(&t, &z2) /* 4 */ + square(&t, &t) /* 8 */ + mul(&z9, &t, x) /* 9 */ + mul(&z11, &z9, &z2) /* 11 */ + square(&t, &z11) /* 22 */ + mul(&z2_5_0, &t, &z9) /* 2^5 - 2^0 = 31 */ + + square(&t, &z2_5_0) /* 2^6 - 2^1 */ + for i := 1; i < 5; i++ { /* 2^20 - 2^10 */ + square(&t, &t) + } + mul(&z2_10_0, &t, &z2_5_0) /* 2^10 - 2^0 */ + + square(&t, &z2_10_0) /* 2^11 - 2^1 */ + for i := 1; i < 10; i++ { /* 2^20 - 2^10 */ + square(&t, &t) + } + mul(&z2_20_0, &t, &z2_10_0) /* 2^20 - 2^0 */ + + square(&t, &z2_20_0) /* 2^21 - 2^1 */ + for i := 1; i < 20; i++ { /* 2^40 - 2^20 */ + square(&t, &t) + } + mul(&t, &t, &z2_20_0) /* 2^40 - 2^0 */ + + square(&t, &t) /* 2^41 - 2^1 */ + for i := 1; i < 10; i++ { /* 2^50 - 2^10 */ + square(&t, &t) + } + mul(&z2_50_0, &t, &z2_10_0) /* 2^50 - 2^0 */ + + square(&t, &z2_50_0) /* 2^51 - 2^1 */ + for i := 1; i < 50; i++ { /* 2^100 - 2^50 */ + square(&t, &t) + } + mul(&z2_100_0, &t, &z2_50_0) /* 2^100 - 2^0 */ + + square(&t, &z2_100_0) /* 2^101 - 2^1 */ + for i := 1; i < 100; i++ { /* 2^200 - 2^100 */ + square(&t, &t) + } + mul(&t, &t, &z2_100_0) /* 2^200 - 2^0 */ + + square(&t, &t) /* 2^201 - 2^1 */ + for i := 1; i < 50; i++ { /* 2^250 - 2^50 */ + square(&t, &t) + } + mul(&t, &t, &z2_50_0) /* 2^250 - 2^0 */ + + square(&t, &t) /* 2^251 - 2^1 */ + square(&t, &t) /* 2^252 - 2^2 */ + square(&t, &t) /* 2^253 - 2^3 */ + + square(&t, &t) /* 2^254 - 2^4 */ + + square(&t, &t) /* 2^255 - 2^5 */ + mul(r, &t, &z11) /* 2^255 - 21 */ +} diff --git a/vendor/golang.org/x/crypto/curve25519/mul_amd64.s b/vendor/golang.org/x/crypto/curve25519/mul_amd64.s new file mode 100644 index 000000000..5ce80a2e5 --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/mul_amd64.s @@ -0,0 +1,169 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo,!appengine + +#include "const_amd64.h" + +// func mul(dest, a, b *[5]uint64) +TEXT ·mul(SB),0,$16-24 + MOVQ dest+0(FP), DI + MOVQ a+8(FP), SI + MOVQ b+16(FP), DX + + MOVQ DX,CX + MOVQ 24(SI),DX + IMUL3Q $19,DX,AX + MOVQ AX,0(SP) + MULQ 16(CX) + MOVQ AX,R8 + MOVQ DX,R9 + MOVQ 32(SI),DX + IMUL3Q $19,DX,AX + MOVQ AX,8(SP) + MULQ 8(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SI),AX + MULQ 0(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 0(SI),AX + MULQ 8(CX) + MOVQ AX,R10 + MOVQ DX,R11 + MOVQ 0(SI),AX + MULQ 16(CX) + MOVQ AX,R12 + MOVQ DX,R13 + MOVQ 0(SI),AX + MULQ 24(CX) + MOVQ AX,R14 + MOVQ DX,R15 + MOVQ 0(SI),AX + MULQ 32(CX) + MOVQ AX,BX + MOVQ DX,BP + MOVQ 8(SI),AX + MULQ 0(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SI),AX + MULQ 8(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 8(SI),AX + MULQ 16(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 8(SI),AX + MULQ 24(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 8(SI),DX + IMUL3Q $19,DX,AX + MULQ 32(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 16(SI),AX + MULQ 0(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 16(SI),AX + MULQ 8(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 16(SI),AX + MULQ 16(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 16(SI),DX + IMUL3Q $19,DX,AX + MULQ 24(CX) + ADDQ AX,R8 + ADCQ DX,R9 + MOVQ 16(SI),DX + IMUL3Q $19,DX,AX + MULQ 32(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 24(SI),AX + MULQ 0(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ 24(SI),AX + MULQ 8(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 0(SP),AX + MULQ 24(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 0(SP),AX + MULQ 32(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 32(SI),AX + MULQ 0(CX) + ADDQ AX,BX + ADCQ DX,BP + MOVQ 8(SP),AX + MULQ 16(CX) + ADDQ AX,R10 + ADCQ DX,R11 + MOVQ 8(SP),AX + MULQ 24(CX) + ADDQ AX,R12 + ADCQ DX,R13 + MOVQ 8(SP),AX + MULQ 32(CX) + ADDQ AX,R14 + ADCQ DX,R15 + MOVQ $REDMASK51,SI + SHLQ $13,R9:R8 + ANDQ SI,R8 + SHLQ $13,R11:R10 + ANDQ SI,R10 + ADDQ R9,R10 + SHLQ $13,R13:R12 + ANDQ SI,R12 + ADDQ R11,R12 + SHLQ $13,R15:R14 + ANDQ SI,R14 + ADDQ R13,R14 + SHLQ $13,BP:BX + ANDQ SI,BX + ADDQ R15,BX + IMUL3Q $19,BP,DX + ADDQ DX,R8 + MOVQ R8,DX + SHRQ $51,DX + ADDQ R10,DX + MOVQ DX,CX + SHRQ $51,DX + ANDQ SI,R8 + ADDQ R12,DX + MOVQ DX,R9 + SHRQ $51,DX + ANDQ SI,CX + ADDQ R14,DX + MOVQ DX,AX + SHRQ $51,DX + ANDQ SI,R9 + ADDQ BX,DX + MOVQ DX,R10 + SHRQ $51,DX + ANDQ SI,AX + IMUL3Q $19,DX,DX + ADDQ DX,R8 + ANDQ SI,R10 + MOVQ R8,0(DI) + MOVQ CX,8(DI) + MOVQ R9,16(DI) + MOVQ AX,24(DI) + MOVQ R10,32(DI) + RET diff --git a/vendor/golang.org/x/crypto/curve25519/square_amd64.s b/vendor/golang.org/x/crypto/curve25519/square_amd64.s new file mode 100644 index 000000000..12f73734f --- /dev/null +++ b/vendor/golang.org/x/crypto/curve25519/square_amd64.s @@ -0,0 +1,132 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// This code was translated into a form compatible with 6a from the public +// domain sources in SUPERCOP: https://bench.cr.yp.to/supercop.html + +// +build amd64,!gccgo,!appengine + +#include "const_amd64.h" + +// func square(out, in *[5]uint64) +TEXT ·square(SB),7,$0-16 + MOVQ out+0(FP), DI + MOVQ in+8(FP), SI + + MOVQ 0(SI),AX + MULQ 0(SI) + MOVQ AX,CX + MOVQ DX,R8 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 8(SI) + MOVQ AX,R9 + MOVQ DX,R10 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 16(SI) + MOVQ AX,R11 + MOVQ DX,R12 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 24(SI) + MOVQ AX,R13 + MOVQ DX,R14 + MOVQ 0(SI),AX + SHLQ $1,AX + MULQ 32(SI) + MOVQ AX,R15 + MOVQ DX,BX + MOVQ 8(SI),AX + MULQ 8(SI) + ADDQ AX,R11 + ADCQ DX,R12 + MOVQ 8(SI),AX + SHLQ $1,AX + MULQ 16(SI) + ADDQ AX,R13 + ADCQ DX,R14 + MOVQ 8(SI),AX + SHLQ $1,AX + MULQ 24(SI) + ADDQ AX,R15 + ADCQ DX,BX + MOVQ 8(SI),DX + IMUL3Q $38,DX,AX + MULQ 32(SI) + ADDQ AX,CX + ADCQ DX,R8 + MOVQ 16(SI),AX + MULQ 16(SI) + ADDQ AX,R15 + ADCQ DX,BX + MOVQ 16(SI),DX + IMUL3Q $38,DX,AX + MULQ 24(SI) + ADDQ AX,CX + ADCQ DX,R8 + MOVQ 16(SI),DX + IMUL3Q $38,DX,AX + MULQ 32(SI) + ADDQ AX,R9 + ADCQ DX,R10 + MOVQ 24(SI),DX + IMUL3Q $19,DX,AX + MULQ 24(SI) + ADDQ AX,R9 + ADCQ DX,R10 + MOVQ 24(SI),DX + IMUL3Q $38,DX,AX + MULQ 32(SI) + ADDQ AX,R11 + ADCQ DX,R12 + MOVQ 32(SI),DX + IMUL3Q $19,DX,AX + MULQ 32(SI) + ADDQ AX,R13 + ADCQ DX,R14 + MOVQ $REDMASK51,SI + SHLQ $13,R8:CX + ANDQ SI,CX + SHLQ $13,R10:R9 + ANDQ SI,R9 + ADDQ R8,R9 + SHLQ $13,R12:R11 + ANDQ SI,R11 + ADDQ R10,R11 + SHLQ $13,R14:R13 + ANDQ SI,R13 + ADDQ R12,R13 + SHLQ $13,BX:R15 + ANDQ SI,R15 + ADDQ R14,R15 + IMUL3Q $19,BX,DX + ADDQ DX,CX + MOVQ CX,DX + SHRQ $51,DX + ADDQ R9,DX + ANDQ SI,CX + MOVQ DX,R8 + SHRQ $51,DX + ADDQ R11,DX + ANDQ SI,R8 + MOVQ DX,R9 + SHRQ $51,DX + ADDQ R13,DX + ANDQ SI,R9 + MOVQ DX,AX + SHRQ $51,DX + ADDQ R15,DX + ANDQ SI,AX + MOVQ DX,R10 + SHRQ $51,DX + IMUL3Q $19,DX,DX + ADDQ DX,CX + ANDQ SI,R10 + MOVQ CX,0(DI) + MOVQ R8,8(DI) + MOVQ R9,16(DI) + MOVQ AX,24(DI) + MOVQ R10,32(DI) + RET diff --git a/vendor/golang.org/x/crypto/internal/chacha20/asm_s390x.s b/vendor/golang.org/x/crypto/internal/chacha20/asm_s390x.s new file mode 100644 index 000000000..98427c5e2 --- /dev/null +++ b/vendor/golang.org/x/crypto/internal/chacha20/asm_s390x.s @@ -0,0 +1,283 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build s390x,!gccgo,!appengine + +#include "go_asm.h" +#include "textflag.h" + +// This is an implementation of the ChaCha20 encryption algorithm as +// specified in RFC 7539. It uses vector instructions to compute +// 4 keystream blocks in parallel (256 bytes) which are then XORed +// with the bytes in the input slice. + +GLOBL ·constants<>(SB), RODATA|NOPTR, $32 +// BSWAP: swap bytes in each 4-byte element +DATA ·constants<>+0x00(SB)/4, $0x03020100 +DATA ·constants<>+0x04(SB)/4, $0x07060504 +DATA ·constants<>+0x08(SB)/4, $0x0b0a0908 +DATA ·constants<>+0x0c(SB)/4, $0x0f0e0d0c +// J0: [j0, j1, j2, j3] +DATA ·constants<>+0x10(SB)/4, $0x61707865 +DATA ·constants<>+0x14(SB)/4, $0x3320646e +DATA ·constants<>+0x18(SB)/4, $0x79622d32 +DATA ·constants<>+0x1c(SB)/4, $0x6b206574 + +// EXRL targets: +TEXT ·mvcSrcToBuf(SB), NOFRAME|NOSPLIT, $0 + MVC $1, (R1), (R8) + RET + +TEXT ·mvcBufToDst(SB), NOFRAME|NOSPLIT, $0 + MVC $1, (R8), (R9) + RET + +#define BSWAP V5 +#define J0 V6 +#define KEY0 V7 +#define KEY1 V8 +#define NONCE V9 +#define CTR V10 +#define M0 V11 +#define M1 V12 +#define M2 V13 +#define M3 V14 +#define INC V15 +#define X0 V16 +#define X1 V17 +#define X2 V18 +#define X3 V19 +#define X4 V20 +#define X5 V21 +#define X6 V22 +#define X7 V23 +#define X8 V24 +#define X9 V25 +#define X10 V26 +#define X11 V27 +#define X12 V28 +#define X13 V29 +#define X14 V30 +#define X15 V31 + +#define NUM_ROUNDS 20 + +#define ROUND4(a0, a1, a2, a3, b0, b1, b2, b3, c0, c1, c2, c3, d0, d1, d2, d3) \ + VAF a1, a0, a0 \ + VAF b1, b0, b0 \ + VAF c1, c0, c0 \ + VAF d1, d0, d0 \ + VX a0, a2, a2 \ + VX b0, b2, b2 \ + VX c0, c2, c2 \ + VX d0, d2, d2 \ + VERLLF $16, a2, a2 \ + VERLLF $16, b2, b2 \ + VERLLF $16, c2, c2 \ + VERLLF $16, d2, d2 \ + VAF a2, a3, a3 \ + VAF b2, b3, b3 \ + VAF c2, c3, c3 \ + VAF d2, d3, d3 \ + VX a3, a1, a1 \ + VX b3, b1, b1 \ + VX c3, c1, c1 \ + VX d3, d1, d1 \ + VERLLF $12, a1, a1 \ + VERLLF $12, b1, b1 \ + VERLLF $12, c1, c1 \ + VERLLF $12, d1, d1 \ + VAF a1, a0, a0 \ + VAF b1, b0, b0 \ + VAF c1, c0, c0 \ + VAF d1, d0, d0 \ + VX a0, a2, a2 \ + VX b0, b2, b2 \ + VX c0, c2, c2 \ + VX d0, d2, d2 \ + VERLLF $8, a2, a2 \ + VERLLF $8, b2, b2 \ + VERLLF $8, c2, c2 \ + VERLLF $8, d2, d2 \ + VAF a2, a3, a3 \ + VAF b2, b3, b3 \ + VAF c2, c3, c3 \ + VAF d2, d3, d3 \ + VX a3, a1, a1 \ + VX b3, b1, b1 \ + VX c3, c1, c1 \ + VX d3, d1, d1 \ + VERLLF $7, a1, a1 \ + VERLLF $7, b1, b1 \ + VERLLF $7, c1, c1 \ + VERLLF $7, d1, d1 + +#define PERMUTE(mask, v0, v1, v2, v3) \ + VPERM v0, v0, mask, v0 \ + VPERM v1, v1, mask, v1 \ + VPERM v2, v2, mask, v2 \ + VPERM v3, v3, mask, v3 + +#define ADDV(x, v0, v1, v2, v3) \ + VAF x, v0, v0 \ + VAF x, v1, v1 \ + VAF x, v2, v2 \ + VAF x, v3, v3 + +#define XORV(off, dst, src, v0, v1, v2, v3) \ + VLM off(src), M0, M3 \ + PERMUTE(BSWAP, v0, v1, v2, v3) \ + VX v0, M0, M0 \ + VX v1, M1, M1 \ + VX v2, M2, M2 \ + VX v3, M3, M3 \ + VSTM M0, M3, off(dst) + +#define SHUFFLE(a, b, c, d, t, u, v, w) \ + VMRHF a, c, t \ // t = {a[0], c[0], a[1], c[1]} + VMRHF b, d, u \ // u = {b[0], d[0], b[1], d[1]} + VMRLF a, c, v \ // v = {a[2], c[2], a[3], c[3]} + VMRLF b, d, w \ // w = {b[2], d[2], b[3], d[3]} + VMRHF t, u, a \ // a = {a[0], b[0], c[0], d[0]} + VMRLF t, u, b \ // b = {a[1], b[1], c[1], d[1]} + VMRHF v, w, c \ // c = {a[2], b[2], c[2], d[2]} + VMRLF v, w, d // d = {a[3], b[3], c[3], d[3]} + +// func xorKeyStreamVX(dst, src []byte, key *[8]uint32, nonce *[3]uint32, counter *uint32, buf *[256]byte, len *int) +TEXT ·xorKeyStreamVX(SB), NOSPLIT, $0 + MOVD $·constants<>(SB), R1 + MOVD dst+0(FP), R2 // R2=&dst[0] + LMG src+24(FP), R3, R4 // R3=&src[0] R4=len(src) + MOVD key+48(FP), R5 // R5=key + MOVD nonce+56(FP), R6 // R6=nonce + MOVD counter+64(FP), R7 // R7=counter + MOVD buf+72(FP), R8 // R8=buf + MOVD len+80(FP), R9 // R9=len + + // load BSWAP and J0 + VLM (R1), BSWAP, J0 + + // set up tail buffer + ADD $-1, R4, R12 + MOVBZ R12, R12 + CMPUBEQ R12, $255, aligned + MOVD R4, R1 + AND $~255, R1 + MOVD $(R3)(R1*1), R1 + EXRL $·mvcSrcToBuf(SB), R12 + MOVD $255, R0 + SUB R12, R0 + MOVD R0, (R9) // update len + +aligned: + // setup + MOVD $95, R0 + VLM (R5), KEY0, KEY1 + VLL R0, (R6), NONCE + VZERO M0 + VLEIB $7, $32, M0 + VSRLB M0, NONCE, NONCE + + // initialize counter values + VLREPF (R7), CTR + VZERO INC + VLEIF $1, $1, INC + VLEIF $2, $2, INC + VLEIF $3, $3, INC + VAF INC, CTR, CTR + VREPIF $4, INC + +chacha: + VREPF $0, J0, X0 + VREPF $1, J0, X1 + VREPF $2, J0, X2 + VREPF $3, J0, X3 + VREPF $0, KEY0, X4 + VREPF $1, KEY0, X5 + VREPF $2, KEY0, X6 + VREPF $3, KEY0, X7 + VREPF $0, KEY1, X8 + VREPF $1, KEY1, X9 + VREPF $2, KEY1, X10 + VREPF $3, KEY1, X11 + VLR CTR, X12 + VREPF $1, NONCE, X13 + VREPF $2, NONCE, X14 + VREPF $3, NONCE, X15 + + MOVD $(NUM_ROUNDS/2), R1 + +loop: + ROUND4(X0, X4, X12, X8, X1, X5, X13, X9, X2, X6, X14, X10, X3, X7, X15, X11) + ROUND4(X0, X5, X15, X10, X1, X6, X12, X11, X2, X7, X13, X8, X3, X4, X14, X9) + + ADD $-1, R1 + BNE loop + + // decrement length + ADD $-256, R4 + BLT tail + +continue: + // rearrange vectors + SHUFFLE(X0, X1, X2, X3, M0, M1, M2, M3) + ADDV(J0, X0, X1, X2, X3) + SHUFFLE(X4, X5, X6, X7, M0, M1, M2, M3) + ADDV(KEY0, X4, X5, X6, X7) + SHUFFLE(X8, X9, X10, X11, M0, M1, M2, M3) + ADDV(KEY1, X8, X9, X10, X11) + VAF CTR, X12, X12 + SHUFFLE(X12, X13, X14, X15, M0, M1, M2, M3) + ADDV(NONCE, X12, X13, X14, X15) + + // increment counters + VAF INC, CTR, CTR + + // xor keystream with plaintext + XORV(0*64, R2, R3, X0, X4, X8, X12) + XORV(1*64, R2, R3, X1, X5, X9, X13) + XORV(2*64, R2, R3, X2, X6, X10, X14) + XORV(3*64, R2, R3, X3, X7, X11, X15) + + // increment pointers + MOVD $256(R2), R2 + MOVD $256(R3), R3 + + CMPBNE R4, $0, chacha + CMPUBEQ R12, $255, return + EXRL $·mvcBufToDst(SB), R12 // len was updated during setup + +return: + VSTEF $0, CTR, (R7) + RET + +tail: + MOVD R2, R9 + MOVD R8, R2 + MOVD R8, R3 + MOVD $0, R4 + JMP continue + +// func hasVectorFacility() bool +TEXT ·hasVectorFacility(SB), NOSPLIT, $24-1 + MOVD $x-24(SP), R1 + XC $24, 0(R1), 0(R1) // clear the storage + MOVD $2, R0 // R0 is the number of double words stored -1 + WORD $0xB2B01000 // STFLE 0(R1) + XOR R0, R0 // reset the value of R0 + MOVBZ z-8(SP), R1 + AND $0x40, R1 + BEQ novector + +vectorinstalled: + // check if the vector instruction has been enabled + VLEIB $0, $0xF, V16 + VLGVB $0, V16, R1 + CMPBNE R1, $0xF, novector + MOVB $1, ret+0(FP) // have vx + RET + +novector: + MOVB $0, ret+0(FP) // no vx + RET diff --git a/vendor/golang.org/x/crypto/internal/chacha20/chacha_generic.go b/vendor/golang.org/x/crypto/internal/chacha20/chacha_generic.go new file mode 100644 index 000000000..7ed1cd9b1 --- /dev/null +++ b/vendor/golang.org/x/crypto/internal/chacha20/chacha_generic.go @@ -0,0 +1,227 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package ChaCha20 implements the core ChaCha20 function as specified +// in https://tools.ietf.org/html/rfc7539#section-2.3. +package chacha20 + +import ( + "crypto/cipher" + "encoding/binary" +) + +// assert that *Cipher implements cipher.Stream +var _ cipher.Stream = (*Cipher)(nil) + +// Cipher is a stateful instance of ChaCha20 using a particular key +// and nonce. A *Cipher implements the cipher.Stream interface. +type Cipher struct { + key [8]uint32 + counter uint32 // incremented after each block + nonce [3]uint32 + buf [bufSize]byte // buffer for unused keystream bytes + len int // number of unused keystream bytes at end of buf +} + +// New creates a new ChaCha20 stream cipher with the given key and nonce. +// The initial counter value is set to 0. +func New(key [8]uint32, nonce [3]uint32) *Cipher { + return &Cipher{key: key, nonce: nonce} +} + +// XORKeyStream XORs each byte in the given slice with a byte from the +// cipher's key stream. Dst and src must overlap entirely or not at all. +// +// If len(dst) < len(src), XORKeyStream will panic. It is acceptable +// to pass a dst bigger than src, and in that case, XORKeyStream will +// only update dst[:len(src)] and will not touch the rest of dst. +// +// Multiple calls to XORKeyStream behave as if the concatenation of +// the src buffers was passed in a single run. That is, Cipher +// maintains state and does not reset at each XORKeyStream call. +func (s *Cipher) XORKeyStream(dst, src []byte) { + // xor src with buffered keystream first + if s.len != 0 { + buf := s.buf[len(s.buf)-s.len:] + if len(src) < len(buf) { + buf = buf[:len(src)] + } + td, ts := dst[:len(buf)], src[:len(buf)] // BCE hint + for i, b := range buf { + td[i] = ts[i] ^ b + } + s.len -= len(buf) + if s.len != 0 { + return + } + s.buf = [len(s.buf)]byte{} // zero the empty buffer + src = src[len(buf):] + dst = dst[len(buf):] + } + + if len(src) == 0 { + return + } + if haveAsm { + s.xorKeyStreamAsm(dst, src) + return + } + + // set up a 64-byte buffer to pad out the final block if needed + // (hoisted out of the main loop to avoid spills) + rem := len(src) % 64 // length of final block + fin := len(src) - rem // index of final block + if rem > 0 { + copy(s.buf[len(s.buf)-64:], src[fin:]) + } + + // qr calculates a quarter round + qr := func(a, b, c, d uint32) (uint32, uint32, uint32, uint32) { + a += b + d ^= a + d = (d << 16) | (d >> 16) + c += d + b ^= c + b = (b << 12) | (b >> 20) + a += b + d ^= a + d = (d << 8) | (d >> 24) + c += d + b ^= c + b = (b << 7) | (b >> 25) + return a, b, c, d + } + + // ChaCha20 constants + const ( + j0 = 0x61707865 + j1 = 0x3320646e + j2 = 0x79622d32 + j3 = 0x6b206574 + ) + + // pre-calculate most of the first round + s1, s5, s9, s13 := qr(j1, s.key[1], s.key[5], s.nonce[0]) + s2, s6, s10, s14 := qr(j2, s.key[2], s.key[6], s.nonce[1]) + s3, s7, s11, s15 := qr(j3, s.key[3], s.key[7], s.nonce[2]) + + n := len(src) + src, dst = src[:n:n], dst[:n:n] // BCE hint + for i := 0; i < n; i += 64 { + // calculate the remainder of the first round + s0, s4, s8, s12 := qr(j0, s.key[0], s.key[4], s.counter) + + // execute the second round + x0, x5, x10, x15 := qr(s0, s5, s10, s15) + x1, x6, x11, x12 := qr(s1, s6, s11, s12) + x2, x7, x8, x13 := qr(s2, s7, s8, s13) + x3, x4, x9, x14 := qr(s3, s4, s9, s14) + + // execute the remaining 18 rounds + for i := 0; i < 9; i++ { + x0, x4, x8, x12 = qr(x0, x4, x8, x12) + x1, x5, x9, x13 = qr(x1, x5, x9, x13) + x2, x6, x10, x14 = qr(x2, x6, x10, x14) + x3, x7, x11, x15 = qr(x3, x7, x11, x15) + + x0, x5, x10, x15 = qr(x0, x5, x10, x15) + x1, x6, x11, x12 = qr(x1, x6, x11, x12) + x2, x7, x8, x13 = qr(x2, x7, x8, x13) + x3, x4, x9, x14 = qr(x3, x4, x9, x14) + } + + x0 += j0 + x1 += j1 + x2 += j2 + x3 += j3 + + x4 += s.key[0] + x5 += s.key[1] + x6 += s.key[2] + x7 += s.key[3] + x8 += s.key[4] + x9 += s.key[5] + x10 += s.key[6] + x11 += s.key[7] + + x12 += s.counter + x13 += s.nonce[0] + x14 += s.nonce[1] + x15 += s.nonce[2] + + // increment the counter + s.counter += 1 + if s.counter == 0 { + panic("chacha20: counter overflow") + } + + // pad to 64 bytes if needed + in, out := src[i:], dst[i:] + if i == fin { + // src[fin:] has already been copied into s.buf before + // the main loop + in, out = s.buf[len(s.buf)-64:], s.buf[len(s.buf)-64:] + } + in, out = in[:64], out[:64] // BCE hint + + // XOR the key stream with the source and write out the result + xor(out[0:], in[0:], x0) + xor(out[4:], in[4:], x1) + xor(out[8:], in[8:], x2) + xor(out[12:], in[12:], x3) + xor(out[16:], in[16:], x4) + xor(out[20:], in[20:], x5) + xor(out[24:], in[24:], x6) + xor(out[28:], in[28:], x7) + xor(out[32:], in[32:], x8) + xor(out[36:], in[36:], x9) + xor(out[40:], in[40:], x10) + xor(out[44:], in[44:], x11) + xor(out[48:], in[48:], x12) + xor(out[52:], in[52:], x13) + xor(out[56:], in[56:], x14) + xor(out[60:], in[60:], x15) + } + // copy any trailing bytes out of the buffer and into dst + if rem != 0 { + s.len = 64 - rem + copy(dst[fin:], s.buf[len(s.buf)-64:]) + } +} + +// Advance discards bytes in the key stream until the next 64 byte block +// boundary is reached and updates the counter accordingly. If the key +// stream is already at a block boundary no bytes will be discarded and +// the counter will be unchanged. +func (s *Cipher) Advance() { + s.len -= s.len % 64 + if s.len == 0 { + s.buf = [len(s.buf)]byte{} + } +} + +// XORKeyStream crypts bytes from in to out using the given key and counters. +// In and out must overlap entirely or not at all. Counter contains the raw +// ChaCha20 counter bytes (i.e. block counter followed by nonce). +func XORKeyStream(out, in []byte, counter *[16]byte, key *[32]byte) { + s := Cipher{ + key: [8]uint32{ + binary.LittleEndian.Uint32(key[0:4]), + binary.LittleEndian.Uint32(key[4:8]), + binary.LittleEndian.Uint32(key[8:12]), + binary.LittleEndian.Uint32(key[12:16]), + binary.LittleEndian.Uint32(key[16:20]), + binary.LittleEndian.Uint32(key[20:24]), + binary.LittleEndian.Uint32(key[24:28]), + binary.LittleEndian.Uint32(key[28:32]), + }, + nonce: [3]uint32{ + binary.LittleEndian.Uint32(counter[4:8]), + binary.LittleEndian.Uint32(counter[8:12]), + binary.LittleEndian.Uint32(counter[12:16]), + }, + counter: binary.LittleEndian.Uint32(counter[0:4]), + } + s.XORKeyStream(out, in) +} diff --git a/vendor/golang.org/x/crypto/internal/chacha20/chacha_noasm.go b/vendor/golang.org/x/crypto/internal/chacha20/chacha_noasm.go new file mode 100644 index 000000000..91520d1de --- /dev/null +++ b/vendor/golang.org/x/crypto/internal/chacha20/chacha_noasm.go @@ -0,0 +1,16 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !s390x gccgo appengine + +package chacha20 + +const ( + bufSize = 64 + haveAsm = false +) + +func (*Cipher) xorKeyStreamAsm(dst, src []byte) { + panic("not implemented") +} diff --git a/vendor/golang.org/x/crypto/internal/chacha20/chacha_s390x.go b/vendor/golang.org/x/crypto/internal/chacha20/chacha_s390x.go new file mode 100644 index 000000000..0c1c671c4 --- /dev/null +++ b/vendor/golang.org/x/crypto/internal/chacha20/chacha_s390x.go @@ -0,0 +1,30 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build s390x,!gccgo,!appengine + +package chacha20 + +var haveAsm = hasVectorFacility() + +const bufSize = 256 + +// hasVectorFacility reports whether the machine supports the vector +// facility (vx). +// Implementation in asm_s390x.s. +func hasVectorFacility() bool + +// xorKeyStreamVX is an assembly implementation of XORKeyStream. It must only +// be called when the vector facility is available. +// Implementation in asm_s390x.s. +//go:noescape +func xorKeyStreamVX(dst, src []byte, key *[8]uint32, nonce *[3]uint32, counter *uint32, buf *[256]byte, len *int) + +func (c *Cipher) xorKeyStreamAsm(dst, src []byte) { + xorKeyStreamVX(dst, src, &c.key, &c.nonce, &c.counter, &c.buf, &c.len) +} + +// EXRL targets, DO NOT CALL! +func mvcSrcToBuf() +func mvcBufToDst() diff --git a/vendor/golang.org/x/crypto/internal/chacha20/xor.go b/vendor/golang.org/x/crypto/internal/chacha20/xor.go new file mode 100644 index 000000000..9c5ba0b33 --- /dev/null +++ b/vendor/golang.org/x/crypto/internal/chacha20/xor.go @@ -0,0 +1,43 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found src the LICENSE file. + +package chacha20 + +import ( + "runtime" +) + +// Platforms that have fast unaligned 32-bit little endian accesses. +const unaligned = runtime.GOARCH == "386" || + runtime.GOARCH == "amd64" || + runtime.GOARCH == "arm64" || + runtime.GOARCH == "ppc64le" || + runtime.GOARCH == "s390x" + +// xor reads a little endian uint32 from src, XORs it with u and +// places the result in little endian byte order in dst. +func xor(dst, src []byte, u uint32) { + _, _ = src[3], dst[3] // eliminate bounds checks + if unaligned { + // The compiler should optimize this code into + // 32-bit unaligned little endian loads and stores. + // TODO: delete once the compiler does a reliably + // good job with the generic code below. + // See issue #25111 for more details. + v := uint32(src[0]) + v |= uint32(src[1]) << 8 + v |= uint32(src[2]) << 16 + v |= uint32(src[3]) << 24 + v ^= u + dst[0] = byte(v) + dst[1] = byte(v >> 8) + dst[2] = byte(v >> 16) + dst[3] = byte(v >> 24) + } else { + dst[0] = src[0] ^ byte(u) + dst[1] = src[1] ^ byte(u>>8) + dst[2] = src[2] ^ byte(u>>16) + dst[3] = src[3] ^ byte(u>>24) + } +} diff --git a/vendor/golang.org/x/crypto/poly1305/poly1305.go b/vendor/golang.org/x/crypto/poly1305/poly1305.go new file mode 100644 index 000000000..f562fa571 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/poly1305.go @@ -0,0 +1,33 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package poly1305 implements Poly1305 one-time message authentication code as +specified in https://cr.yp.to/mac/poly1305-20050329.pdf. + +Poly1305 is a fast, one-time authentication function. It is infeasible for an +attacker to generate an authenticator for a message without the key. However, a +key must only be used for a single message. Authenticating two different +messages with the same key allows an attacker to forge authenticators for other +messages with the same key. + +Poly1305 was originally coupled with AES in order to make Poly1305-AES. AES was +used with a fixed key in order to generate one-time keys from an nonce. +However, in this package AES isn't used and the one-time key is specified +directly. +*/ +package poly1305 // import "golang.org/x/crypto/poly1305" + +import "crypto/subtle" + +// TagSize is the size, in bytes, of a poly1305 authenticator. +const TagSize = 16 + +// Verify returns true if mac is a valid authenticator for m with the given +// key. +func Verify(mac *[16]byte, m []byte, key *[32]byte) bool { + var tmp [16]byte + Sum(&tmp, m, key) + return subtle.ConstantTimeCompare(tmp[:], mac[:]) == 1 +} diff --git a/vendor/golang.org/x/crypto/poly1305/sum_amd64.go b/vendor/golang.org/x/crypto/poly1305/sum_amd64.go new file mode 100644 index 000000000..4dd72fe79 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_amd64.go @@ -0,0 +1,22 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64,!gccgo,!appengine + +package poly1305 + +// This function is implemented in sum_amd64.s +//go:noescape +func poly1305(out *[16]byte, m *byte, mlen uint64, key *[32]byte) + +// Sum generates an authenticator for m using a one-time key and puts the +// 16-byte result into out. Authenticating two different messages with the same +// key allows an attacker to forge messages at will. +func Sum(out *[16]byte, m []byte, key *[32]byte) { + var mPtr *byte + if len(m) > 0 { + mPtr = &m[0] + } + poly1305(out, mPtr, uint64(len(m)), key) +} diff --git a/vendor/golang.org/x/crypto/poly1305/sum_amd64.s b/vendor/golang.org/x/crypto/poly1305/sum_amd64.s new file mode 100644 index 000000000..2edae6382 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_amd64.s @@ -0,0 +1,125 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64,!gccgo,!appengine + +#include "textflag.h" + +#define POLY1305_ADD(msg, h0, h1, h2) \ + ADDQ 0(msg), h0; \ + ADCQ 8(msg), h1; \ + ADCQ $1, h2; \ + LEAQ 16(msg), msg + +#define POLY1305_MUL(h0, h1, h2, r0, r1, t0, t1, t2, t3) \ + MOVQ r0, AX; \ + MULQ h0; \ + MOVQ AX, t0; \ + MOVQ DX, t1; \ + MOVQ r0, AX; \ + MULQ h1; \ + ADDQ AX, t1; \ + ADCQ $0, DX; \ + MOVQ r0, t2; \ + IMULQ h2, t2; \ + ADDQ DX, t2; \ + \ + MOVQ r1, AX; \ + MULQ h0; \ + ADDQ AX, t1; \ + ADCQ $0, DX; \ + MOVQ DX, h0; \ + MOVQ r1, t3; \ + IMULQ h2, t3; \ + MOVQ r1, AX; \ + MULQ h1; \ + ADDQ AX, t2; \ + ADCQ DX, t3; \ + ADDQ h0, t2; \ + ADCQ $0, t3; \ + \ + MOVQ t0, h0; \ + MOVQ t1, h1; \ + MOVQ t2, h2; \ + ANDQ $3, h2; \ + MOVQ t2, t0; \ + ANDQ $0xFFFFFFFFFFFFFFFC, t0; \ + ADDQ t0, h0; \ + ADCQ t3, h1; \ + ADCQ $0, h2; \ + SHRQ $2, t3, t2; \ + SHRQ $2, t3; \ + ADDQ t2, h0; \ + ADCQ t3, h1; \ + ADCQ $0, h2 + +DATA ·poly1305Mask<>+0x00(SB)/8, $0x0FFFFFFC0FFFFFFF +DATA ·poly1305Mask<>+0x08(SB)/8, $0x0FFFFFFC0FFFFFFC +GLOBL ·poly1305Mask<>(SB), RODATA, $16 + +// func poly1305(out *[16]byte, m *byte, mlen uint64, key *[32]key) +TEXT ·poly1305(SB), $0-32 + MOVQ out+0(FP), DI + MOVQ m+8(FP), SI + MOVQ mlen+16(FP), R15 + MOVQ key+24(FP), AX + + MOVQ 0(AX), R11 + MOVQ 8(AX), R12 + ANDQ ·poly1305Mask<>(SB), R11 // r0 + ANDQ ·poly1305Mask<>+8(SB), R12 // r1 + XORQ R8, R8 // h0 + XORQ R9, R9 // h1 + XORQ R10, R10 // h2 + + CMPQ R15, $16 + JB bytes_between_0_and_15 + +loop: + POLY1305_ADD(SI, R8, R9, R10) + +multiply: + POLY1305_MUL(R8, R9, R10, R11, R12, BX, CX, R13, R14) + SUBQ $16, R15 + CMPQ R15, $16 + JAE loop + +bytes_between_0_and_15: + TESTQ R15, R15 + JZ done + MOVQ $1, BX + XORQ CX, CX + XORQ R13, R13 + ADDQ R15, SI + +flush_buffer: + SHLQ $8, BX, CX + SHLQ $8, BX + MOVB -1(SI), R13 + XORQ R13, BX + DECQ SI + DECQ R15 + JNZ flush_buffer + + ADDQ BX, R8 + ADCQ CX, R9 + ADCQ $0, R10 + MOVQ $16, R15 + JMP multiply + +done: + MOVQ R8, AX + MOVQ R9, BX + SUBQ $0xFFFFFFFFFFFFFFFB, AX + SBBQ $0xFFFFFFFFFFFFFFFF, BX + SBBQ $3, R10 + CMOVQCS R8, AX + CMOVQCS R9, BX + MOVQ key+24(FP), R8 + ADDQ 16(R8), AX + ADCQ 24(R8), BX + + MOVQ AX, 0(DI) + MOVQ BX, 8(DI) + RET diff --git a/vendor/golang.org/x/crypto/poly1305/sum_arm.go b/vendor/golang.org/x/crypto/poly1305/sum_arm.go new file mode 100644 index 000000000..5dc321c2f --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_arm.go @@ -0,0 +1,22 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build arm,!gccgo,!appengine,!nacl + +package poly1305 + +// This function is implemented in sum_arm.s +//go:noescape +func poly1305_auth_armv6(out *[16]byte, m *byte, mlen uint32, key *[32]byte) + +// Sum generates an authenticator for m using a one-time key and puts the +// 16-byte result into out. Authenticating two different messages with the same +// key allows an attacker to forge messages at will. +func Sum(out *[16]byte, m []byte, key *[32]byte) { + var mPtr *byte + if len(m) > 0 { + mPtr = &m[0] + } + poly1305_auth_armv6(out, mPtr, uint32(len(m)), key) +} diff --git a/vendor/golang.org/x/crypto/poly1305/sum_arm.s b/vendor/golang.org/x/crypto/poly1305/sum_arm.s new file mode 100644 index 000000000..f70b4ac48 --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_arm.s @@ -0,0 +1,427 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build arm,!gccgo,!appengine,!nacl + +#include "textflag.h" + +// This code was translated into a form compatible with 5a from the public +// domain source by Andrew Moon: github.com/floodyberry/poly1305-opt/blob/master/app/extensions/poly1305. + +DATA ·poly1305_init_constants_armv6<>+0x00(SB)/4, $0x3ffffff +DATA ·poly1305_init_constants_armv6<>+0x04(SB)/4, $0x3ffff03 +DATA ·poly1305_init_constants_armv6<>+0x08(SB)/4, $0x3ffc0ff +DATA ·poly1305_init_constants_armv6<>+0x0c(SB)/4, $0x3f03fff +DATA ·poly1305_init_constants_armv6<>+0x10(SB)/4, $0x00fffff +GLOBL ·poly1305_init_constants_armv6<>(SB), 8, $20 + +// Warning: the linker may use R11 to synthesize certain instructions. Please +// take care and verify that no synthetic instructions use it. + +TEXT poly1305_init_ext_armv6<>(SB), NOSPLIT, $0 + // Needs 16 bytes of stack and 64 bytes of space pointed to by R0. (It + // might look like it's only 60 bytes of space but the final four bytes + // will be written by another function.) We need to skip over four + // bytes of stack because that's saving the value of 'g'. + ADD $4, R13, R8 + MOVM.IB [R4-R7], (R8) + MOVM.IA.W (R1), [R2-R5] + MOVW $·poly1305_init_constants_armv6<>(SB), R7 + MOVW R2, R8 + MOVW R2>>26, R9 + MOVW R3>>20, g + MOVW R4>>14, R11 + MOVW R5>>8, R12 + ORR R3<<6, R9, R9 + ORR R4<<12, g, g + ORR R5<<18, R11, R11 + MOVM.IA (R7), [R2-R6] + AND R8, R2, R2 + AND R9, R3, R3 + AND g, R4, R4 + AND R11, R5, R5 + AND R12, R6, R6 + MOVM.IA.W [R2-R6], (R0) + EOR R2, R2, R2 + EOR R3, R3, R3 + EOR R4, R4, R4 + EOR R5, R5, R5 + EOR R6, R6, R6 + MOVM.IA.W [R2-R6], (R0) + MOVM.IA.W (R1), [R2-R5] + MOVM.IA [R2-R6], (R0) + ADD $20, R13, R0 + MOVM.DA (R0), [R4-R7] + RET + +#define MOVW_UNALIGNED(Rsrc, Rdst, Rtmp, offset) \ + MOVBU (offset+0)(Rsrc), Rtmp; \ + MOVBU Rtmp, (offset+0)(Rdst); \ + MOVBU (offset+1)(Rsrc), Rtmp; \ + MOVBU Rtmp, (offset+1)(Rdst); \ + MOVBU (offset+2)(Rsrc), Rtmp; \ + MOVBU Rtmp, (offset+2)(Rdst); \ + MOVBU (offset+3)(Rsrc), Rtmp; \ + MOVBU Rtmp, (offset+3)(Rdst) + +TEXT poly1305_blocks_armv6<>(SB), NOSPLIT, $0 + // Needs 24 bytes of stack for saved registers and then 88 bytes of + // scratch space after that. We assume that 24 bytes at (R13) have + // already been used: four bytes for the link register saved in the + // prelude of poly1305_auth_armv6, four bytes for saving the value of g + // in that function and 16 bytes of scratch space used around + // poly1305_finish_ext_armv6_skip1. + ADD $24, R13, R12 + MOVM.IB [R4-R8, R14], (R12) + MOVW R0, 88(R13) + MOVW R1, 92(R13) + MOVW R2, 96(R13) + MOVW R1, R14 + MOVW R2, R12 + MOVW 56(R0), R8 + WORD $0xe1180008 // TST R8, R8 not working see issue 5921 + EOR R6, R6, R6 + MOVW.EQ $(1<<24), R6 + MOVW R6, 84(R13) + ADD $116, R13, g + MOVM.IA (R0), [R0-R9] + MOVM.IA [R0-R4], (g) + CMP $16, R12 + BLO poly1305_blocks_armv6_done + +poly1305_blocks_armv6_mainloop: + WORD $0xe31e0003 // TST R14, #3 not working see issue 5921 + BEQ poly1305_blocks_armv6_mainloop_aligned + ADD $100, R13, g + MOVW_UNALIGNED(R14, g, R0, 0) + MOVW_UNALIGNED(R14, g, R0, 4) + MOVW_UNALIGNED(R14, g, R0, 8) + MOVW_UNALIGNED(R14, g, R0, 12) + MOVM.IA (g), [R0-R3] + ADD $16, R14 + B poly1305_blocks_armv6_mainloop_loaded + +poly1305_blocks_armv6_mainloop_aligned: + MOVM.IA.W (R14), [R0-R3] + +poly1305_blocks_armv6_mainloop_loaded: + MOVW R0>>26, g + MOVW R1>>20, R11 + MOVW R2>>14, R12 + MOVW R14, 92(R13) + MOVW R3>>8, R4 + ORR R1<<6, g, g + ORR R2<<12, R11, R11 + ORR R3<<18, R12, R12 + BIC $0xfc000000, R0, R0 + BIC $0xfc000000, g, g + MOVW 84(R13), R3 + BIC $0xfc000000, R11, R11 + BIC $0xfc000000, R12, R12 + ADD R0, R5, R5 + ADD g, R6, R6 + ORR R3, R4, R4 + ADD R11, R7, R7 + ADD $116, R13, R14 + ADD R12, R8, R8 + ADD R4, R9, R9 + MOVM.IA (R14), [R0-R4] + MULLU R4, R5, (R11, g) + MULLU R3, R5, (R14, R12) + MULALU R3, R6, (R11, g) + MULALU R2, R6, (R14, R12) + MULALU R2, R7, (R11, g) + MULALU R1, R7, (R14, R12) + ADD R4<<2, R4, R4 + ADD R3<<2, R3, R3 + MULALU R1, R8, (R11, g) + MULALU R0, R8, (R14, R12) + MULALU R0, R9, (R11, g) + MULALU R4, R9, (R14, R12) + MOVW g, 76(R13) + MOVW R11, 80(R13) + MOVW R12, 68(R13) + MOVW R14, 72(R13) + MULLU R2, R5, (R11, g) + MULLU R1, R5, (R14, R12) + MULALU R1, R6, (R11, g) + MULALU R0, R6, (R14, R12) + MULALU R0, R7, (R11, g) + MULALU R4, R7, (R14, R12) + ADD R2<<2, R2, R2 + ADD R1<<2, R1, R1 + MULALU R4, R8, (R11, g) + MULALU R3, R8, (R14, R12) + MULALU R3, R9, (R11, g) + MULALU R2, R9, (R14, R12) + MOVW g, 60(R13) + MOVW R11, 64(R13) + MOVW R12, 52(R13) + MOVW R14, 56(R13) + MULLU R0, R5, (R11, g) + MULALU R4, R6, (R11, g) + MULALU R3, R7, (R11, g) + MULALU R2, R8, (R11, g) + MULALU R1, R9, (R11, g) + ADD $52, R13, R0 + MOVM.IA (R0), [R0-R7] + MOVW g>>26, R12 + MOVW R4>>26, R14 + ORR R11<<6, R12, R12 + ORR R5<<6, R14, R14 + BIC $0xfc000000, g, g + BIC $0xfc000000, R4, R4 + ADD.S R12, R0, R0 + ADC $0, R1, R1 + ADD.S R14, R6, R6 + ADC $0, R7, R7 + MOVW R0>>26, R12 + MOVW R6>>26, R14 + ORR R1<<6, R12, R12 + ORR R7<<6, R14, R14 + BIC $0xfc000000, R0, R0 + BIC $0xfc000000, R6, R6 + ADD R14<<2, R14, R14 + ADD.S R12, R2, R2 + ADC $0, R3, R3 + ADD R14, g, g + MOVW R2>>26, R12 + MOVW g>>26, R14 + ORR R3<<6, R12, R12 + BIC $0xfc000000, g, R5 + BIC $0xfc000000, R2, R7 + ADD R12, R4, R4 + ADD R14, R0, R0 + MOVW R4>>26, R12 + BIC $0xfc000000, R4, R8 + ADD R12, R6, R9 + MOVW 96(R13), R12 + MOVW 92(R13), R14 + MOVW R0, R6 + CMP $32, R12 + SUB $16, R12, R12 + MOVW R12, 96(R13) + BHS poly1305_blocks_armv6_mainloop + +poly1305_blocks_armv6_done: + MOVW 88(R13), R12 + MOVW R5, 20(R12) + MOVW R6, 24(R12) + MOVW R7, 28(R12) + MOVW R8, 32(R12) + MOVW R9, 36(R12) + ADD $48, R13, R0 + MOVM.DA (R0), [R4-R8, R14] + RET + +#define MOVHUP_UNALIGNED(Rsrc, Rdst, Rtmp) \ + MOVBU.P 1(Rsrc), Rtmp; \ + MOVBU.P Rtmp, 1(Rdst); \ + MOVBU.P 1(Rsrc), Rtmp; \ + MOVBU.P Rtmp, 1(Rdst) + +#define MOVWP_UNALIGNED(Rsrc, Rdst, Rtmp) \ + MOVHUP_UNALIGNED(Rsrc, Rdst, Rtmp); \ + MOVHUP_UNALIGNED(Rsrc, Rdst, Rtmp) + +// func poly1305_auth_armv6(out *[16]byte, m *byte, mlen uint32, key *[32]key) +TEXT ·poly1305_auth_armv6(SB), $196-16 + // The value 196, just above, is the sum of 64 (the size of the context + // structure) and 132 (the amount of stack needed). + // + // At this point, the stack pointer (R13) has been moved down. It + // points to the saved link register and there's 196 bytes of free + // space above it. + // + // The stack for this function looks like: + // + // +--------------------- + // | + // | 64 bytes of context structure + // | + // +--------------------- + // | + // | 112 bytes for poly1305_blocks_armv6 + // | + // +--------------------- + // | 16 bytes of final block, constructed at + // | poly1305_finish_ext_armv6_skip8 + // +--------------------- + // | four bytes of saved 'g' + // +--------------------- + // | lr, saved by prelude <- R13 points here + // +--------------------- + MOVW g, 4(R13) + + MOVW out+0(FP), R4 + MOVW m+4(FP), R5 + MOVW mlen+8(FP), R6 + MOVW key+12(FP), R7 + + ADD $136, R13, R0 // 136 = 4 + 4 + 16 + 112 + MOVW R7, R1 + + // poly1305_init_ext_armv6 will write to the stack from R13+4, but + // that's ok because none of the other values have been written yet. + BL poly1305_init_ext_armv6<>(SB) + BIC.S $15, R6, R2 + BEQ poly1305_auth_armv6_noblocks + ADD $136, R13, R0 + MOVW R5, R1 + ADD R2, R5, R5 + SUB R2, R6, R6 + BL poly1305_blocks_armv6<>(SB) + +poly1305_auth_armv6_noblocks: + ADD $136, R13, R0 + MOVW R5, R1 + MOVW R6, R2 + MOVW R4, R3 + + MOVW R0, R5 + MOVW R1, R6 + MOVW R2, R7 + MOVW R3, R8 + AND.S R2, R2, R2 + BEQ poly1305_finish_ext_armv6_noremaining + EOR R0, R0 + ADD $8, R13, R9 // 8 = offset to 16 byte scratch space + MOVW R0, (R9) + MOVW R0, 4(R9) + MOVW R0, 8(R9) + MOVW R0, 12(R9) + WORD $0xe3110003 // TST R1, #3 not working see issue 5921 + BEQ poly1305_finish_ext_armv6_aligned + WORD $0xe3120008 // TST R2, #8 not working see issue 5921 + BEQ poly1305_finish_ext_armv6_skip8 + MOVWP_UNALIGNED(R1, R9, g) + MOVWP_UNALIGNED(R1, R9, g) + +poly1305_finish_ext_armv6_skip8: + WORD $0xe3120004 // TST $4, R2 not working see issue 5921 + BEQ poly1305_finish_ext_armv6_skip4 + MOVWP_UNALIGNED(R1, R9, g) + +poly1305_finish_ext_armv6_skip4: + WORD $0xe3120002 // TST $2, R2 not working see issue 5921 + BEQ poly1305_finish_ext_armv6_skip2 + MOVHUP_UNALIGNED(R1, R9, g) + B poly1305_finish_ext_armv6_skip2 + +poly1305_finish_ext_armv6_aligned: + WORD $0xe3120008 // TST R2, #8 not working see issue 5921 + BEQ poly1305_finish_ext_armv6_skip8_aligned + MOVM.IA.W (R1), [g-R11] + MOVM.IA.W [g-R11], (R9) + +poly1305_finish_ext_armv6_skip8_aligned: + WORD $0xe3120004 // TST $4, R2 not working see issue 5921 + BEQ poly1305_finish_ext_armv6_skip4_aligned + MOVW.P 4(R1), g + MOVW.P g, 4(R9) + +poly1305_finish_ext_armv6_skip4_aligned: + WORD $0xe3120002 // TST $2, R2 not working see issue 5921 + BEQ poly1305_finish_ext_armv6_skip2 + MOVHU.P 2(R1), g + MOVH.P g, 2(R9) + +poly1305_finish_ext_armv6_skip2: + WORD $0xe3120001 // TST $1, R2 not working see issue 5921 + BEQ poly1305_finish_ext_armv6_skip1 + MOVBU.P 1(R1), g + MOVBU.P g, 1(R9) + +poly1305_finish_ext_armv6_skip1: + MOVW $1, R11 + MOVBU R11, 0(R9) + MOVW R11, 56(R5) + MOVW R5, R0 + ADD $8, R13, R1 + MOVW $16, R2 + BL poly1305_blocks_armv6<>(SB) + +poly1305_finish_ext_armv6_noremaining: + MOVW 20(R5), R0 + MOVW 24(R5), R1 + MOVW 28(R5), R2 + MOVW 32(R5), R3 + MOVW 36(R5), R4 + MOVW R4>>26, R12 + BIC $0xfc000000, R4, R4 + ADD R12<<2, R12, R12 + ADD R12, R0, R0 + MOVW R0>>26, R12 + BIC $0xfc000000, R0, R0 + ADD R12, R1, R1 + MOVW R1>>26, R12 + BIC $0xfc000000, R1, R1 + ADD R12, R2, R2 + MOVW R2>>26, R12 + BIC $0xfc000000, R2, R2 + ADD R12, R3, R3 + MOVW R3>>26, R12 + BIC $0xfc000000, R3, R3 + ADD R12, R4, R4 + ADD $5, R0, R6 + MOVW R6>>26, R12 + BIC $0xfc000000, R6, R6 + ADD R12, R1, R7 + MOVW R7>>26, R12 + BIC $0xfc000000, R7, R7 + ADD R12, R2, g + MOVW g>>26, R12 + BIC $0xfc000000, g, g + ADD R12, R3, R11 + MOVW $-(1<<26), R12 + ADD R11>>26, R12, R12 + BIC $0xfc000000, R11, R11 + ADD R12, R4, R9 + MOVW R9>>31, R12 + SUB $1, R12 + AND R12, R6, R6 + AND R12, R7, R7 + AND R12, g, g + AND R12, R11, R11 + AND R12, R9, R9 + MVN R12, R12 + AND R12, R0, R0 + AND R12, R1, R1 + AND R12, R2, R2 + AND R12, R3, R3 + AND R12, R4, R4 + ORR R6, R0, R0 + ORR R7, R1, R1 + ORR g, R2, R2 + ORR R11, R3, R3 + ORR R9, R4, R4 + ORR R1<<26, R0, R0 + MOVW R1>>6, R1 + ORR R2<<20, R1, R1 + MOVW R2>>12, R2 + ORR R3<<14, R2, R2 + MOVW R3>>18, R3 + ORR R4<<8, R3, R3 + MOVW 40(R5), R6 + MOVW 44(R5), R7 + MOVW 48(R5), g + MOVW 52(R5), R11 + ADD.S R6, R0, R0 + ADC.S R7, R1, R1 + ADC.S g, R2, R2 + ADC.S R11, R3, R3 + MOVM.IA [R0-R3], (R8) + MOVW R5, R12 + EOR R0, R0, R0 + EOR R1, R1, R1 + EOR R2, R2, R2 + EOR R3, R3, R3 + EOR R4, R4, R4 + EOR R5, R5, R5 + EOR R6, R6, R6 + EOR R7, R7, R7 + MOVM.IA.W [R0-R7], (R12) + MOVM.IA [R0-R7], (R12) + MOVW 4(R13), g + RET diff --git a/vendor/golang.org/x/crypto/poly1305/sum_ref.go b/vendor/golang.org/x/crypto/poly1305/sum_ref.go new file mode 100644 index 000000000..b2805a5ca --- /dev/null +++ b/vendor/golang.org/x/crypto/poly1305/sum_ref.go @@ -0,0 +1,141 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !amd64,!arm gccgo appengine nacl + +package poly1305 + +import "encoding/binary" + +// Sum generates an authenticator for msg using a one-time key and puts the +// 16-byte result into out. Authenticating two different messages with the same +// key allows an attacker to forge messages at will. +func Sum(out *[TagSize]byte, msg []byte, key *[32]byte) { + var ( + h0, h1, h2, h3, h4 uint32 // the hash accumulators + r0, r1, r2, r3, r4 uint64 // the r part of the key + ) + + r0 = uint64(binary.LittleEndian.Uint32(key[0:]) & 0x3ffffff) + r1 = uint64((binary.LittleEndian.Uint32(key[3:]) >> 2) & 0x3ffff03) + r2 = uint64((binary.LittleEndian.Uint32(key[6:]) >> 4) & 0x3ffc0ff) + r3 = uint64((binary.LittleEndian.Uint32(key[9:]) >> 6) & 0x3f03fff) + r4 = uint64((binary.LittleEndian.Uint32(key[12:]) >> 8) & 0x00fffff) + + R1, R2, R3, R4 := r1*5, r2*5, r3*5, r4*5 + + for len(msg) >= TagSize { + // h += msg + h0 += binary.LittleEndian.Uint32(msg[0:]) & 0x3ffffff + h1 += (binary.LittleEndian.Uint32(msg[3:]) >> 2) & 0x3ffffff + h2 += (binary.LittleEndian.Uint32(msg[6:]) >> 4) & 0x3ffffff + h3 += (binary.LittleEndian.Uint32(msg[9:]) >> 6) & 0x3ffffff + h4 += (binary.LittleEndian.Uint32(msg[12:]) >> 8) | (1 << 24) + + // h *= r + d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) * R1) + d1 := (d0 >> 26) + (uint64(h0) * r1) + (uint64(h1) * r0) + (uint64(h2) * R4) + (uint64(h3) * R3) + (uint64(h4) * R2) + d2 := (d1 >> 26) + (uint64(h0) * r2) + (uint64(h1) * r1) + (uint64(h2) * r0) + (uint64(h3) * R4) + (uint64(h4) * R3) + d3 := (d2 >> 26) + (uint64(h0) * r3) + (uint64(h1) * r2) + (uint64(h2) * r1) + (uint64(h3) * r0) + (uint64(h4) * R4) + d4 := (d3 >> 26) + (uint64(h0) * r4) + (uint64(h1) * r3) + (uint64(h2) * r2) + (uint64(h3) * r1) + (uint64(h4) * r0) + + // h %= p + h0 = uint32(d0) & 0x3ffffff + h1 = uint32(d1) & 0x3ffffff + h2 = uint32(d2) & 0x3ffffff + h3 = uint32(d3) & 0x3ffffff + h4 = uint32(d4) & 0x3ffffff + + h0 += uint32(d4>>26) * 5 + h1 += h0 >> 26 + h0 = h0 & 0x3ffffff + + msg = msg[TagSize:] + } + + if len(msg) > 0 { + var block [TagSize]byte + off := copy(block[:], msg) + block[off] = 0x01 + + // h += msg + h0 += binary.LittleEndian.Uint32(block[0:]) & 0x3ffffff + h1 += (binary.LittleEndian.Uint32(block[3:]) >> 2) & 0x3ffffff + h2 += (binary.LittleEndian.Uint32(block[6:]) >> 4) & 0x3ffffff + h3 += (binary.LittleEndian.Uint32(block[9:]) >> 6) & 0x3ffffff + h4 += (binary.LittleEndian.Uint32(block[12:]) >> 8) + + // h *= r + d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) * R1) + d1 := (d0 >> 26) + (uint64(h0) * r1) + (uint64(h1) * r0) + (uint64(h2) * R4) + (uint64(h3) * R3) + (uint64(h4) * R2) + d2 := (d1 >> 26) + (uint64(h0) * r2) + (uint64(h1) * r1) + (uint64(h2) * r0) + (uint64(h3) * R4) + (uint64(h4) * R3) + d3 := (d2 >> 26) + (uint64(h0) * r3) + (uint64(h1) * r2) + (uint64(h2) * r1) + (uint64(h3) * r0) + (uint64(h4) * R4) + d4 := (d3 >> 26) + (uint64(h0) * r4) + (uint64(h1) * r3) + (uint64(h2) * r2) + (uint64(h3) * r1) + (uint64(h4) * r0) + + // h %= p + h0 = uint32(d0) & 0x3ffffff + h1 = uint32(d1) & 0x3ffffff + h2 = uint32(d2) & 0x3ffffff + h3 = uint32(d3) & 0x3ffffff + h4 = uint32(d4) & 0x3ffffff + + h0 += uint32(d4>>26) * 5 + h1 += h0 >> 26 + h0 = h0 & 0x3ffffff + } + + // h %= p reduction + h2 += h1 >> 26 + h1 &= 0x3ffffff + h3 += h2 >> 26 + h2 &= 0x3ffffff + h4 += h3 >> 26 + h3 &= 0x3ffffff + h0 += 5 * (h4 >> 26) + h4 &= 0x3ffffff + h1 += h0 >> 26 + h0 &= 0x3ffffff + + // h - p + t0 := h0 + 5 + t1 := h1 + (t0 >> 26) + t2 := h2 + (t1 >> 26) + t3 := h3 + (t2 >> 26) + t4 := h4 + (t3 >> 26) - (1 << 26) + t0 &= 0x3ffffff + t1 &= 0x3ffffff + t2 &= 0x3ffffff + t3 &= 0x3ffffff + + // select h if h < p else h - p + t_mask := (t4 >> 31) - 1 + h_mask := ^t_mask + h0 = (h0 & h_mask) | (t0 & t_mask) + h1 = (h1 & h_mask) | (t1 & t_mask) + h2 = (h2 & h_mask) | (t2 & t_mask) + h3 = (h3 & h_mask) | (t3 & t_mask) + h4 = (h4 & h_mask) | (t4 & t_mask) + + // h %= 2^128 + h0 |= h1 << 26 + h1 = ((h1 >> 6) | (h2 << 20)) + h2 = ((h2 >> 12) | (h3 << 14)) + h3 = ((h3 >> 18) | (h4 << 8)) + + // s: the s part of the key + // tag = (h + s) % (2^128) + t := uint64(h0) + uint64(binary.LittleEndian.Uint32(key[16:])) + h0 = uint32(t) + t = uint64(h1) + uint64(binary.LittleEndian.Uint32(key[20:])) + (t >> 32) + h1 = uint32(t) + t = uint64(h2) + uint64(binary.LittleEndian.Uint32(key[24:])) + (t >> 32) + h2 = uint32(t) + t = uint64(h3) + uint64(binary.LittleEndian.Uint32(key[28:])) + (t >> 32) + h3 = uint32(t) + + binary.LittleEndian.PutUint32(out[0:], h0) + binary.LittleEndian.PutUint32(out[4:], h1) + binary.LittleEndian.PutUint32(out[8:], h2) + binary.LittleEndian.PutUint32(out[12:], h3) +} diff --git a/vendor/golang.org/x/crypto/ssh/agent/client.go b/vendor/golang.org/x/crypto/ssh/agent/client.go new file mode 100644 index 000000000..b1808dd26 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/agent/client.go @@ -0,0 +1,683 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package agent implements the ssh-agent protocol, and provides both +// a client and a server. The client can talk to a standard ssh-agent +// that uses UNIX sockets, and one could implement an alternative +// ssh-agent process using the sample server. +// +// References: +// [PROTOCOL.agent]: https://tools.ietf.org/html/draft-miller-ssh-agent-00 +package agent // import "golang.org/x/crypto/ssh/agent" + +import ( + "bytes" + "crypto/dsa" + "crypto/ecdsa" + "crypto/elliptic" + "crypto/rsa" + "encoding/base64" + "encoding/binary" + "errors" + "fmt" + "io" + "math/big" + "sync" + + "golang.org/x/crypto/ed25519" + "golang.org/x/crypto/ssh" +) + +// Agent represents the capabilities of an ssh-agent. +type Agent interface { + // List returns the identities known to the agent. + List() ([]*Key, error) + + // Sign has the agent sign the data using a protocol 2 key as defined + // in [PROTOCOL.agent] section 2.6.2. + Sign(key ssh.PublicKey, data []byte) (*ssh.Signature, error) + + // Add adds a private key to the agent. + Add(key AddedKey) error + + // Remove removes all identities with the given public key. + Remove(key ssh.PublicKey) error + + // RemoveAll removes all identities. + RemoveAll() error + + // Lock locks the agent. Sign and Remove will fail, and List will empty an empty list. + Lock(passphrase []byte) error + + // Unlock undoes the effect of Lock + Unlock(passphrase []byte) error + + // Signers returns signers for all the known keys. + Signers() ([]ssh.Signer, error) +} + +// ConstraintExtension describes an optional constraint defined by users. +type ConstraintExtension struct { + // ExtensionName consist of a UTF-8 string suffixed by the + // implementation domain following the naming scheme defined + // in Section 4.2 of [RFC4251], e.g. "foo@example.com". + ExtensionName string + // ExtensionDetails contains the actual content of the extended + // constraint. + ExtensionDetails []byte +} + +// AddedKey describes an SSH key to be added to an Agent. +type AddedKey struct { + // PrivateKey must be a *rsa.PrivateKey, *dsa.PrivateKey or + // *ecdsa.PrivateKey, which will be inserted into the agent. + PrivateKey interface{} + // Certificate, if not nil, is communicated to the agent and will be + // stored with the key. + Certificate *ssh.Certificate + // Comment is an optional, free-form string. + Comment string + // LifetimeSecs, if not zero, is the number of seconds that the + // agent will store the key for. + LifetimeSecs uint32 + // ConfirmBeforeUse, if true, requests that the agent confirm with the + // user before each use of this key. + ConfirmBeforeUse bool + // ConstraintExtensions are the experimental or private-use constraints + // defined by users. + ConstraintExtensions []ConstraintExtension +} + +// See [PROTOCOL.agent], section 3. +const ( + agentRequestV1Identities = 1 + agentRemoveAllV1Identities = 9 + + // 3.2 Requests from client to agent for protocol 2 key operations + agentAddIdentity = 17 + agentRemoveIdentity = 18 + agentRemoveAllIdentities = 19 + agentAddIDConstrained = 25 + + // 3.3 Key-type independent requests from client to agent + agentAddSmartcardKey = 20 + agentRemoveSmartcardKey = 21 + agentLock = 22 + agentUnlock = 23 + agentAddSmartcardKeyConstrained = 26 + + // 3.7 Key constraint identifiers + agentConstrainLifetime = 1 + agentConstrainConfirm = 2 + agentConstrainExtension = 3 +) + +// maxAgentResponseBytes is the maximum agent reply size that is accepted. This +// is a sanity check, not a limit in the spec. +const maxAgentResponseBytes = 16 << 20 + +// Agent messages: +// These structures mirror the wire format of the corresponding ssh agent +// messages found in [PROTOCOL.agent]. + +// 3.4 Generic replies from agent to client +const agentFailure = 5 + +type failureAgentMsg struct{} + +const agentSuccess = 6 + +type successAgentMsg struct{} + +// See [PROTOCOL.agent], section 2.5.2. +const agentRequestIdentities = 11 + +type requestIdentitiesAgentMsg struct{} + +// See [PROTOCOL.agent], section 2.5.2. +const agentIdentitiesAnswer = 12 + +type identitiesAnswerAgentMsg struct { + NumKeys uint32 `sshtype:"12"` + Keys []byte `ssh:"rest"` +} + +// See [PROTOCOL.agent], section 2.6.2. +const agentSignRequest = 13 + +type signRequestAgentMsg struct { + KeyBlob []byte `sshtype:"13"` + Data []byte + Flags uint32 +} + +// See [PROTOCOL.agent], section 2.6.2. + +// 3.6 Replies from agent to client for protocol 2 key operations +const agentSignResponse = 14 + +type signResponseAgentMsg struct { + SigBlob []byte `sshtype:"14"` +} + +type publicKey struct { + Format string + Rest []byte `ssh:"rest"` +} + +// 3.7 Key constraint identifiers +type constrainLifetimeAgentMsg struct { + LifetimeSecs uint32 `sshtype:"1"` +} + +type constrainExtensionAgentMsg struct { + ExtensionName string `sshtype:"3"` + ExtensionDetails []byte + + // Rest is a field used for parsing, not part of message + Rest []byte `ssh:"rest"` +} + +// Key represents a protocol 2 public key as defined in +// [PROTOCOL.agent], section 2.5.2. +type Key struct { + Format string + Blob []byte + Comment string +} + +func clientErr(err error) error { + return fmt.Errorf("agent: client error: %v", err) +} + +// String returns the storage form of an agent key with the format, base64 +// encoded serialized key, and the comment if it is not empty. +func (k *Key) String() string { + s := string(k.Format) + " " + base64.StdEncoding.EncodeToString(k.Blob) + + if k.Comment != "" { + s += " " + k.Comment + } + + return s +} + +// Type returns the public key type. +func (k *Key) Type() string { + return k.Format +} + +// Marshal returns key blob to satisfy the ssh.PublicKey interface. +func (k *Key) Marshal() []byte { + return k.Blob +} + +// Verify satisfies the ssh.PublicKey interface. +func (k *Key) Verify(data []byte, sig *ssh.Signature) error { + pubKey, err := ssh.ParsePublicKey(k.Blob) + if err != nil { + return fmt.Errorf("agent: bad public key: %v", err) + } + return pubKey.Verify(data, sig) +} + +type wireKey struct { + Format string + Rest []byte `ssh:"rest"` +} + +func parseKey(in []byte) (out *Key, rest []byte, err error) { + var record struct { + Blob []byte + Comment string + Rest []byte `ssh:"rest"` + } + + if err := ssh.Unmarshal(in, &record); err != nil { + return nil, nil, err + } + + var wk wireKey + if err := ssh.Unmarshal(record.Blob, &wk); err != nil { + return nil, nil, err + } + + return &Key{ + Format: wk.Format, + Blob: record.Blob, + Comment: record.Comment, + }, record.Rest, nil +} + +// client is a client for an ssh-agent process. +type client struct { + // conn is typically a *net.UnixConn + conn io.ReadWriter + // mu is used to prevent concurrent access to the agent + mu sync.Mutex +} + +// NewClient returns an Agent that talks to an ssh-agent process over +// the given connection. +func NewClient(rw io.ReadWriter) Agent { + return &client{conn: rw} +} + +// call sends an RPC to the agent. On success, the reply is +// unmarshaled into reply and replyType is set to the first byte of +// the reply, which contains the type of the message. +func (c *client) call(req []byte) (reply interface{}, err error) { + c.mu.Lock() + defer c.mu.Unlock() + + msg := make([]byte, 4+len(req)) + binary.BigEndian.PutUint32(msg, uint32(len(req))) + copy(msg[4:], req) + if _, err = c.conn.Write(msg); err != nil { + return nil, clientErr(err) + } + + var respSizeBuf [4]byte + if _, err = io.ReadFull(c.conn, respSizeBuf[:]); err != nil { + return nil, clientErr(err) + } + respSize := binary.BigEndian.Uint32(respSizeBuf[:]) + if respSize > maxAgentResponseBytes { + return nil, clientErr(err) + } + + buf := make([]byte, respSize) + if _, err = io.ReadFull(c.conn, buf); err != nil { + return nil, clientErr(err) + } + reply, err = unmarshal(buf) + if err != nil { + return nil, clientErr(err) + } + return reply, err +} + +func (c *client) simpleCall(req []byte) error { + resp, err := c.call(req) + if err != nil { + return err + } + if _, ok := resp.(*successAgentMsg); ok { + return nil + } + return errors.New("agent: failure") +} + +func (c *client) RemoveAll() error { + return c.simpleCall([]byte{agentRemoveAllIdentities}) +} + +func (c *client) Remove(key ssh.PublicKey) error { + req := ssh.Marshal(&agentRemoveIdentityMsg{ + KeyBlob: key.Marshal(), + }) + return c.simpleCall(req) +} + +func (c *client) Lock(passphrase []byte) error { + req := ssh.Marshal(&agentLockMsg{ + Passphrase: passphrase, + }) + return c.simpleCall(req) +} + +func (c *client) Unlock(passphrase []byte) error { + req := ssh.Marshal(&agentUnlockMsg{ + Passphrase: passphrase, + }) + return c.simpleCall(req) +} + +// List returns the identities known to the agent. +func (c *client) List() ([]*Key, error) { + // see [PROTOCOL.agent] section 2.5.2. + req := []byte{agentRequestIdentities} + + msg, err := c.call(req) + if err != nil { + return nil, err + } + + switch msg := msg.(type) { + case *identitiesAnswerAgentMsg: + if msg.NumKeys > maxAgentResponseBytes/8 { + return nil, errors.New("agent: too many keys in agent reply") + } + keys := make([]*Key, msg.NumKeys) + data := msg.Keys + for i := uint32(0); i < msg.NumKeys; i++ { + var key *Key + var err error + if key, data, err = parseKey(data); err != nil { + return nil, err + } + keys[i] = key + } + return keys, nil + case *failureAgentMsg: + return nil, errors.New("agent: failed to list keys") + } + panic("unreachable") +} + +// Sign has the agent sign the data using a protocol 2 key as defined +// in [PROTOCOL.agent] section 2.6.2. +func (c *client) Sign(key ssh.PublicKey, data []byte) (*ssh.Signature, error) { + req := ssh.Marshal(signRequestAgentMsg{ + KeyBlob: key.Marshal(), + Data: data, + }) + + msg, err := c.call(req) + if err != nil { + return nil, err + } + + switch msg := msg.(type) { + case *signResponseAgentMsg: + var sig ssh.Signature + if err := ssh.Unmarshal(msg.SigBlob, &sig); err != nil { + return nil, err + } + + return &sig, nil + case *failureAgentMsg: + return nil, errors.New("agent: failed to sign challenge") + } + panic("unreachable") +} + +// unmarshal parses an agent message in packet, returning the parsed +// form and the message type of packet. +func unmarshal(packet []byte) (interface{}, error) { + if len(packet) < 1 { + return nil, errors.New("agent: empty packet") + } + var msg interface{} + switch packet[0] { + case agentFailure: + return new(failureAgentMsg), nil + case agentSuccess: + return new(successAgentMsg), nil + case agentIdentitiesAnswer: + msg = new(identitiesAnswerAgentMsg) + case agentSignResponse: + msg = new(signResponseAgentMsg) + case agentV1IdentitiesAnswer: + msg = new(agentV1IdentityMsg) + default: + return nil, fmt.Errorf("agent: unknown type tag %d", packet[0]) + } + if err := ssh.Unmarshal(packet, msg); err != nil { + return nil, err + } + return msg, nil +} + +type rsaKeyMsg struct { + Type string `sshtype:"17|25"` + N *big.Int + E *big.Int + D *big.Int + Iqmp *big.Int // IQMP = Inverse Q Mod P + P *big.Int + Q *big.Int + Comments string + Constraints []byte `ssh:"rest"` +} + +type dsaKeyMsg struct { + Type string `sshtype:"17|25"` + P *big.Int + Q *big.Int + G *big.Int + Y *big.Int + X *big.Int + Comments string + Constraints []byte `ssh:"rest"` +} + +type ecdsaKeyMsg struct { + Type string `sshtype:"17|25"` + Curve string + KeyBytes []byte + D *big.Int + Comments string + Constraints []byte `ssh:"rest"` +} + +type ed25519KeyMsg struct { + Type string `sshtype:"17|25"` + Pub []byte + Priv []byte + Comments string + Constraints []byte `ssh:"rest"` +} + +// Insert adds a private key to the agent. +func (c *client) insertKey(s interface{}, comment string, constraints []byte) error { + var req []byte + switch k := s.(type) { + case *rsa.PrivateKey: + if len(k.Primes) != 2 { + return fmt.Errorf("agent: unsupported RSA key with %d primes", len(k.Primes)) + } + k.Precompute() + req = ssh.Marshal(rsaKeyMsg{ + Type: ssh.KeyAlgoRSA, + N: k.N, + E: big.NewInt(int64(k.E)), + D: k.D, + Iqmp: k.Precomputed.Qinv, + P: k.Primes[0], + Q: k.Primes[1], + Comments: comment, + Constraints: constraints, + }) + case *dsa.PrivateKey: + req = ssh.Marshal(dsaKeyMsg{ + Type: ssh.KeyAlgoDSA, + P: k.P, + Q: k.Q, + G: k.G, + Y: k.Y, + X: k.X, + Comments: comment, + Constraints: constraints, + }) + case *ecdsa.PrivateKey: + nistID := fmt.Sprintf("nistp%d", k.Params().BitSize) + req = ssh.Marshal(ecdsaKeyMsg{ + Type: "ecdsa-sha2-" + nistID, + Curve: nistID, + KeyBytes: elliptic.Marshal(k.Curve, k.X, k.Y), + D: k.D, + Comments: comment, + Constraints: constraints, + }) + case *ed25519.PrivateKey: + req = ssh.Marshal(ed25519KeyMsg{ + Type: ssh.KeyAlgoED25519, + Pub: []byte(*k)[32:], + Priv: []byte(*k), + Comments: comment, + Constraints: constraints, + }) + default: + return fmt.Errorf("agent: unsupported key type %T", s) + } + + // if constraints are present then the message type needs to be changed. + if len(constraints) != 0 { + req[0] = agentAddIDConstrained + } + + resp, err := c.call(req) + if err != nil { + return err + } + if _, ok := resp.(*successAgentMsg); ok { + return nil + } + return errors.New("agent: failure") +} + +type rsaCertMsg struct { + Type string `sshtype:"17|25"` + CertBytes []byte + D *big.Int + Iqmp *big.Int // IQMP = Inverse Q Mod P + P *big.Int + Q *big.Int + Comments string + Constraints []byte `ssh:"rest"` +} + +type dsaCertMsg struct { + Type string `sshtype:"17|25"` + CertBytes []byte + X *big.Int + Comments string + Constraints []byte `ssh:"rest"` +} + +type ecdsaCertMsg struct { + Type string `sshtype:"17|25"` + CertBytes []byte + D *big.Int + Comments string + Constraints []byte `ssh:"rest"` +} + +type ed25519CertMsg struct { + Type string `sshtype:"17|25"` + CertBytes []byte + Pub []byte + Priv []byte + Comments string + Constraints []byte `ssh:"rest"` +} + +// Add adds a private key to the agent. If a certificate is given, +// that certificate is added instead as public key. +func (c *client) Add(key AddedKey) error { + var constraints []byte + + if secs := key.LifetimeSecs; secs != 0 { + constraints = append(constraints, ssh.Marshal(constrainLifetimeAgentMsg{secs})...) + } + + if key.ConfirmBeforeUse { + constraints = append(constraints, agentConstrainConfirm) + } + + cert := key.Certificate + if cert == nil { + return c.insertKey(key.PrivateKey, key.Comment, constraints) + } + return c.insertCert(key.PrivateKey, cert, key.Comment, constraints) +} + +func (c *client) insertCert(s interface{}, cert *ssh.Certificate, comment string, constraints []byte) error { + var req []byte + switch k := s.(type) { + case *rsa.PrivateKey: + if len(k.Primes) != 2 { + return fmt.Errorf("agent: unsupported RSA key with %d primes", len(k.Primes)) + } + k.Precompute() + req = ssh.Marshal(rsaCertMsg{ + Type: cert.Type(), + CertBytes: cert.Marshal(), + D: k.D, + Iqmp: k.Precomputed.Qinv, + P: k.Primes[0], + Q: k.Primes[1], + Comments: comment, + Constraints: constraints, + }) + case *dsa.PrivateKey: + req = ssh.Marshal(dsaCertMsg{ + Type: cert.Type(), + CertBytes: cert.Marshal(), + X: k.X, + Comments: comment, + Constraints: constraints, + }) + case *ecdsa.PrivateKey: + req = ssh.Marshal(ecdsaCertMsg{ + Type: cert.Type(), + CertBytes: cert.Marshal(), + D: k.D, + Comments: comment, + Constraints: constraints, + }) + case *ed25519.PrivateKey: + req = ssh.Marshal(ed25519CertMsg{ + Type: cert.Type(), + CertBytes: cert.Marshal(), + Pub: []byte(*k)[32:], + Priv: []byte(*k), + Comments: comment, + Constraints: constraints, + }) + default: + return fmt.Errorf("agent: unsupported key type %T", s) + } + + // if constraints are present then the message type needs to be changed. + if len(constraints) != 0 { + req[0] = agentAddIDConstrained + } + + signer, err := ssh.NewSignerFromKey(s) + if err != nil { + return err + } + if bytes.Compare(cert.Key.Marshal(), signer.PublicKey().Marshal()) != 0 { + return errors.New("agent: signer and cert have different public key") + } + + resp, err := c.call(req) + if err != nil { + return err + } + if _, ok := resp.(*successAgentMsg); ok { + return nil + } + return errors.New("agent: failure") +} + +// Signers provides a callback for client authentication. +func (c *client) Signers() ([]ssh.Signer, error) { + keys, err := c.List() + if err != nil { + return nil, err + } + + var result []ssh.Signer + for _, k := range keys { + result = append(result, &agentKeyringSigner{c, k}) + } + return result, nil +} + +type agentKeyringSigner struct { + agent *client + pub ssh.PublicKey +} + +func (s *agentKeyringSigner) PublicKey() ssh.PublicKey { + return s.pub +} + +func (s *agentKeyringSigner) Sign(rand io.Reader, data []byte) (*ssh.Signature, error) { + // The agent has its own entropy source, so the rand argument is ignored. + return s.agent.Sign(s.pub, data) +} diff --git a/vendor/golang.org/x/crypto/ssh/agent/forward.go b/vendor/golang.org/x/crypto/ssh/agent/forward.go new file mode 100644 index 000000000..fd24ba900 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/agent/forward.go @@ -0,0 +1,103 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package agent + +import ( + "errors" + "io" + "net" + "sync" + + "golang.org/x/crypto/ssh" +) + +// RequestAgentForwarding sets up agent forwarding for the session. +// ForwardToAgent or ForwardToRemote should be called to route +// the authentication requests. +func RequestAgentForwarding(session *ssh.Session) error { + ok, err := session.SendRequest("auth-agent-req@openssh.com", true, nil) + if err != nil { + return err + } + if !ok { + return errors.New("forwarding request denied") + } + return nil +} + +// ForwardToAgent routes authentication requests to the given keyring. +func ForwardToAgent(client *ssh.Client, keyring Agent) error { + channels := client.HandleChannelOpen(channelType) + if channels == nil { + return errors.New("agent: already have handler for " + channelType) + } + + go func() { + for ch := range channels { + channel, reqs, err := ch.Accept() + if err != nil { + continue + } + go ssh.DiscardRequests(reqs) + go func() { + ServeAgent(keyring, channel) + channel.Close() + }() + } + }() + return nil +} + +const channelType = "auth-agent@openssh.com" + +// ForwardToRemote routes authentication requests to the ssh-agent +// process serving on the given unix socket. +func ForwardToRemote(client *ssh.Client, addr string) error { + channels := client.HandleChannelOpen(channelType) + if channels == nil { + return errors.New("agent: already have handler for " + channelType) + } + conn, err := net.Dial("unix", addr) + if err != nil { + return err + } + conn.Close() + + go func() { + for ch := range channels { + channel, reqs, err := ch.Accept() + if err != nil { + continue + } + go ssh.DiscardRequests(reqs) + go forwardUnixSocket(channel, addr) + } + }() + return nil +} + +func forwardUnixSocket(channel ssh.Channel, addr string) { + conn, err := net.Dial("unix", addr) + if err != nil { + return + } + + var wg sync.WaitGroup + wg.Add(2) + go func() { + io.Copy(conn, channel) + conn.(*net.UnixConn).CloseWrite() + wg.Done() + }() + go func() { + io.Copy(channel, conn) + channel.CloseWrite() + wg.Done() + }() + + wg.Wait() + conn.Close() + channel.Close() +} diff --git a/vendor/golang.org/x/crypto/ssh/agent/keyring.go b/vendor/golang.org/x/crypto/ssh/agent/keyring.go new file mode 100644 index 000000000..1a5163270 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/agent/keyring.go @@ -0,0 +1,215 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package agent + +import ( + "bytes" + "crypto/rand" + "crypto/subtle" + "errors" + "fmt" + "sync" + "time" + + "golang.org/x/crypto/ssh" +) + +type privKey struct { + signer ssh.Signer + comment string + expire *time.Time +} + +type keyring struct { + mu sync.Mutex + keys []privKey + + locked bool + passphrase []byte +} + +var errLocked = errors.New("agent: locked") + +// NewKeyring returns an Agent that holds keys in memory. It is safe +// for concurrent use by multiple goroutines. +func NewKeyring() Agent { + return &keyring{} +} + +// RemoveAll removes all identities. +func (r *keyring) RemoveAll() error { + r.mu.Lock() + defer r.mu.Unlock() + if r.locked { + return errLocked + } + + r.keys = nil + return nil +} + +// removeLocked does the actual key removal. The caller must already be holding the +// keyring mutex. +func (r *keyring) removeLocked(want []byte) error { + found := false + for i := 0; i < len(r.keys); { + if bytes.Equal(r.keys[i].signer.PublicKey().Marshal(), want) { + found = true + r.keys[i] = r.keys[len(r.keys)-1] + r.keys = r.keys[:len(r.keys)-1] + continue + } else { + i++ + } + } + + if !found { + return errors.New("agent: key not found") + } + return nil +} + +// Remove removes all identities with the given public key. +func (r *keyring) Remove(key ssh.PublicKey) error { + r.mu.Lock() + defer r.mu.Unlock() + if r.locked { + return errLocked + } + + return r.removeLocked(key.Marshal()) +} + +// Lock locks the agent. Sign and Remove will fail, and List will return an empty list. +func (r *keyring) Lock(passphrase []byte) error { + r.mu.Lock() + defer r.mu.Unlock() + if r.locked { + return errLocked + } + + r.locked = true + r.passphrase = passphrase + return nil +} + +// Unlock undoes the effect of Lock +func (r *keyring) Unlock(passphrase []byte) error { + r.mu.Lock() + defer r.mu.Unlock() + if !r.locked { + return errors.New("agent: not locked") + } + if 1 != subtle.ConstantTimeCompare(passphrase, r.passphrase) { + return fmt.Errorf("agent: incorrect passphrase") + } + + r.locked = false + r.passphrase = nil + return nil +} + +// expireKeysLocked removes expired keys from the keyring. If a key was added +// with a lifetimesecs contraint and seconds >= lifetimesecs seconds have +// ellapsed, it is removed. The caller *must* be holding the keyring mutex. +func (r *keyring) expireKeysLocked() { + for _, k := range r.keys { + if k.expire != nil && time.Now().After(*k.expire) { + r.removeLocked(k.signer.PublicKey().Marshal()) + } + } +} + +// List returns the identities known to the agent. +func (r *keyring) List() ([]*Key, error) { + r.mu.Lock() + defer r.mu.Unlock() + if r.locked { + // section 2.7: locked agents return empty. + return nil, nil + } + + r.expireKeysLocked() + var ids []*Key + for _, k := range r.keys { + pub := k.signer.PublicKey() + ids = append(ids, &Key{ + Format: pub.Type(), + Blob: pub.Marshal(), + Comment: k.comment}) + } + return ids, nil +} + +// Insert adds a private key to the keyring. If a certificate +// is given, that certificate is added as public key. Note that +// any constraints given are ignored. +func (r *keyring) Add(key AddedKey) error { + r.mu.Lock() + defer r.mu.Unlock() + if r.locked { + return errLocked + } + signer, err := ssh.NewSignerFromKey(key.PrivateKey) + + if err != nil { + return err + } + + if cert := key.Certificate; cert != nil { + signer, err = ssh.NewCertSigner(cert, signer) + if err != nil { + return err + } + } + + p := privKey{ + signer: signer, + comment: key.Comment, + } + + if key.LifetimeSecs > 0 { + t := time.Now().Add(time.Duration(key.LifetimeSecs) * time.Second) + p.expire = &t + } + + r.keys = append(r.keys, p) + + return nil +} + +// Sign returns a signature for the data. +func (r *keyring) Sign(key ssh.PublicKey, data []byte) (*ssh.Signature, error) { + r.mu.Lock() + defer r.mu.Unlock() + if r.locked { + return nil, errLocked + } + + r.expireKeysLocked() + wanted := key.Marshal() + for _, k := range r.keys { + if bytes.Equal(k.signer.PublicKey().Marshal(), wanted) { + return k.signer.Sign(rand.Reader, data) + } + } + return nil, errors.New("not found") +} + +// Signers returns signers for all the known keys. +func (r *keyring) Signers() ([]ssh.Signer, error) { + r.mu.Lock() + defer r.mu.Unlock() + if r.locked { + return nil, errLocked + } + + r.expireKeysLocked() + s := make([]ssh.Signer, 0, len(r.keys)) + for _, k := range r.keys { + s = append(s, k.signer) + } + return s, nil +} diff --git a/vendor/golang.org/x/crypto/ssh/agent/server.go b/vendor/golang.org/x/crypto/ssh/agent/server.go new file mode 100644 index 000000000..2e4692cbd --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/agent/server.go @@ -0,0 +1,523 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package agent + +import ( + "crypto/dsa" + "crypto/ecdsa" + "crypto/elliptic" + "crypto/rsa" + "encoding/binary" + "errors" + "fmt" + "io" + "log" + "math/big" + + "golang.org/x/crypto/ed25519" + "golang.org/x/crypto/ssh" +) + +// Server wraps an Agent and uses it to implement the agent side of +// the SSH-agent, wire protocol. +type server struct { + agent Agent +} + +func (s *server) processRequestBytes(reqData []byte) []byte { + rep, err := s.processRequest(reqData) + if err != nil { + if err != errLocked { + // TODO(hanwen): provide better logging interface? + log.Printf("agent %d: %v", reqData[0], err) + } + return []byte{agentFailure} + } + + if err == nil && rep == nil { + return []byte{agentSuccess} + } + + return ssh.Marshal(rep) +} + +func marshalKey(k *Key) []byte { + var record struct { + Blob []byte + Comment string + } + record.Blob = k.Marshal() + record.Comment = k.Comment + + return ssh.Marshal(&record) +} + +// See [PROTOCOL.agent], section 2.5.1. +const agentV1IdentitiesAnswer = 2 + +type agentV1IdentityMsg struct { + Numkeys uint32 `sshtype:"2"` +} + +type agentRemoveIdentityMsg struct { + KeyBlob []byte `sshtype:"18"` +} + +type agentLockMsg struct { + Passphrase []byte `sshtype:"22"` +} + +type agentUnlockMsg struct { + Passphrase []byte `sshtype:"23"` +} + +func (s *server) processRequest(data []byte) (interface{}, error) { + switch data[0] { + case agentRequestV1Identities: + return &agentV1IdentityMsg{0}, nil + + case agentRemoveAllV1Identities: + return nil, nil + + case agentRemoveIdentity: + var req agentRemoveIdentityMsg + if err := ssh.Unmarshal(data, &req); err != nil { + return nil, err + } + + var wk wireKey + if err := ssh.Unmarshal(req.KeyBlob, &wk); err != nil { + return nil, err + } + + return nil, s.agent.Remove(&Key{Format: wk.Format, Blob: req.KeyBlob}) + + case agentRemoveAllIdentities: + return nil, s.agent.RemoveAll() + + case agentLock: + var req agentLockMsg + if err := ssh.Unmarshal(data, &req); err != nil { + return nil, err + } + + return nil, s.agent.Lock(req.Passphrase) + + case agentUnlock: + var req agentUnlockMsg + if err := ssh.Unmarshal(data, &req); err != nil { + return nil, err + } + return nil, s.agent.Unlock(req.Passphrase) + + case agentSignRequest: + var req signRequestAgentMsg + if err := ssh.Unmarshal(data, &req); err != nil { + return nil, err + } + + var wk wireKey + if err := ssh.Unmarshal(req.KeyBlob, &wk); err != nil { + return nil, err + } + + k := &Key{ + Format: wk.Format, + Blob: req.KeyBlob, + } + + sig, err := s.agent.Sign(k, req.Data) // TODO(hanwen): flags. + if err != nil { + return nil, err + } + return &signResponseAgentMsg{SigBlob: ssh.Marshal(sig)}, nil + + case agentRequestIdentities: + keys, err := s.agent.List() + if err != nil { + return nil, err + } + + rep := identitiesAnswerAgentMsg{ + NumKeys: uint32(len(keys)), + } + for _, k := range keys { + rep.Keys = append(rep.Keys, marshalKey(k)...) + } + return rep, nil + + case agentAddIDConstrained, agentAddIdentity: + return nil, s.insertIdentity(data) + } + + return nil, fmt.Errorf("unknown opcode %d", data[0]) +} + +func parseConstraints(constraints []byte) (lifetimeSecs uint32, confirmBeforeUse bool, extensions []ConstraintExtension, err error) { + for len(constraints) != 0 { + switch constraints[0] { + case agentConstrainLifetime: + lifetimeSecs = binary.BigEndian.Uint32(constraints[1:5]) + constraints = constraints[5:] + case agentConstrainConfirm: + confirmBeforeUse = true + constraints = constraints[1:] + case agentConstrainExtension: + var msg constrainExtensionAgentMsg + if err = ssh.Unmarshal(constraints, &msg); err != nil { + return 0, false, nil, err + } + extensions = append(extensions, ConstraintExtension{ + ExtensionName: msg.ExtensionName, + ExtensionDetails: msg.ExtensionDetails, + }) + constraints = msg.Rest + default: + return 0, false, nil, fmt.Errorf("unknown constraint type: %d", constraints[0]) + } + } + return +} + +func setConstraints(key *AddedKey, constraintBytes []byte) error { + lifetimeSecs, confirmBeforeUse, constraintExtensions, err := parseConstraints(constraintBytes) + if err != nil { + return err + } + + key.LifetimeSecs = lifetimeSecs + key.ConfirmBeforeUse = confirmBeforeUse + key.ConstraintExtensions = constraintExtensions + return nil +} + +func parseRSAKey(req []byte) (*AddedKey, error) { + var k rsaKeyMsg + if err := ssh.Unmarshal(req, &k); err != nil { + return nil, err + } + if k.E.BitLen() > 30 { + return nil, errors.New("agent: RSA public exponent too large") + } + priv := &rsa.PrivateKey{ + PublicKey: rsa.PublicKey{ + E: int(k.E.Int64()), + N: k.N, + }, + D: k.D, + Primes: []*big.Int{k.P, k.Q}, + } + priv.Precompute() + + addedKey := &AddedKey{PrivateKey: priv, Comment: k.Comments} + if err := setConstraints(addedKey, k.Constraints); err != nil { + return nil, err + } + return addedKey, nil +} + +func parseEd25519Key(req []byte) (*AddedKey, error) { + var k ed25519KeyMsg + if err := ssh.Unmarshal(req, &k); err != nil { + return nil, err + } + priv := ed25519.PrivateKey(k.Priv) + + addedKey := &AddedKey{PrivateKey: &priv, Comment: k.Comments} + if err := setConstraints(addedKey, k.Constraints); err != nil { + return nil, err + } + return addedKey, nil +} + +func parseDSAKey(req []byte) (*AddedKey, error) { + var k dsaKeyMsg + if err := ssh.Unmarshal(req, &k); err != nil { + return nil, err + } + priv := &dsa.PrivateKey{ + PublicKey: dsa.PublicKey{ + Parameters: dsa.Parameters{ + P: k.P, + Q: k.Q, + G: k.G, + }, + Y: k.Y, + }, + X: k.X, + } + + addedKey := &AddedKey{PrivateKey: priv, Comment: k.Comments} + if err := setConstraints(addedKey, k.Constraints); err != nil { + return nil, err + } + return addedKey, nil +} + +func unmarshalECDSA(curveName string, keyBytes []byte, privScalar *big.Int) (priv *ecdsa.PrivateKey, err error) { + priv = &ecdsa.PrivateKey{ + D: privScalar, + } + + switch curveName { + case "nistp256": + priv.Curve = elliptic.P256() + case "nistp384": + priv.Curve = elliptic.P384() + case "nistp521": + priv.Curve = elliptic.P521() + default: + return nil, fmt.Errorf("agent: unknown curve %q", curveName) + } + + priv.X, priv.Y = elliptic.Unmarshal(priv.Curve, keyBytes) + if priv.X == nil || priv.Y == nil { + return nil, errors.New("agent: point not on curve") + } + + return priv, nil +} + +func parseEd25519Cert(req []byte) (*AddedKey, error) { + var k ed25519CertMsg + if err := ssh.Unmarshal(req, &k); err != nil { + return nil, err + } + pubKey, err := ssh.ParsePublicKey(k.CertBytes) + if err != nil { + return nil, err + } + priv := ed25519.PrivateKey(k.Priv) + cert, ok := pubKey.(*ssh.Certificate) + if !ok { + return nil, errors.New("agent: bad ED25519 certificate") + } + + addedKey := &AddedKey{PrivateKey: &priv, Certificate: cert, Comment: k.Comments} + if err := setConstraints(addedKey, k.Constraints); err != nil { + return nil, err + } + return addedKey, nil +} + +func parseECDSAKey(req []byte) (*AddedKey, error) { + var k ecdsaKeyMsg + if err := ssh.Unmarshal(req, &k); err != nil { + return nil, err + } + + priv, err := unmarshalECDSA(k.Curve, k.KeyBytes, k.D) + if err != nil { + return nil, err + } + + addedKey := &AddedKey{PrivateKey: priv, Comment: k.Comments} + if err := setConstraints(addedKey, k.Constraints); err != nil { + return nil, err + } + return addedKey, nil +} + +func parseRSACert(req []byte) (*AddedKey, error) { + var k rsaCertMsg + if err := ssh.Unmarshal(req, &k); err != nil { + return nil, err + } + + pubKey, err := ssh.ParsePublicKey(k.CertBytes) + if err != nil { + return nil, err + } + + cert, ok := pubKey.(*ssh.Certificate) + if !ok { + return nil, errors.New("agent: bad RSA certificate") + } + + // An RSA publickey as marshaled by rsaPublicKey.Marshal() in keys.go + var rsaPub struct { + Name string + E *big.Int + N *big.Int + } + if err := ssh.Unmarshal(cert.Key.Marshal(), &rsaPub); err != nil { + return nil, fmt.Errorf("agent: Unmarshal failed to parse public key: %v", err) + } + + if rsaPub.E.BitLen() > 30 { + return nil, errors.New("agent: RSA public exponent too large") + } + + priv := rsa.PrivateKey{ + PublicKey: rsa.PublicKey{ + E: int(rsaPub.E.Int64()), + N: rsaPub.N, + }, + D: k.D, + Primes: []*big.Int{k.Q, k.P}, + } + priv.Precompute() + + addedKey := &AddedKey{PrivateKey: &priv, Certificate: cert, Comment: k.Comments} + if err := setConstraints(addedKey, k.Constraints); err != nil { + return nil, err + } + return addedKey, nil +} + +func parseDSACert(req []byte) (*AddedKey, error) { + var k dsaCertMsg + if err := ssh.Unmarshal(req, &k); err != nil { + return nil, err + } + pubKey, err := ssh.ParsePublicKey(k.CertBytes) + if err != nil { + return nil, err + } + cert, ok := pubKey.(*ssh.Certificate) + if !ok { + return nil, errors.New("agent: bad DSA certificate") + } + + // A DSA publickey as marshaled by dsaPublicKey.Marshal() in keys.go + var w struct { + Name string + P, Q, G, Y *big.Int + } + if err := ssh.Unmarshal(cert.Key.Marshal(), &w); err != nil { + return nil, fmt.Errorf("agent: Unmarshal failed to parse public key: %v", err) + } + + priv := &dsa.PrivateKey{ + PublicKey: dsa.PublicKey{ + Parameters: dsa.Parameters{ + P: w.P, + Q: w.Q, + G: w.G, + }, + Y: w.Y, + }, + X: k.X, + } + + addedKey := &AddedKey{PrivateKey: priv, Certificate: cert, Comment: k.Comments} + if err := setConstraints(addedKey, k.Constraints); err != nil { + return nil, err + } + return addedKey, nil +} + +func parseECDSACert(req []byte) (*AddedKey, error) { + var k ecdsaCertMsg + if err := ssh.Unmarshal(req, &k); err != nil { + return nil, err + } + + pubKey, err := ssh.ParsePublicKey(k.CertBytes) + if err != nil { + return nil, err + } + cert, ok := pubKey.(*ssh.Certificate) + if !ok { + return nil, errors.New("agent: bad ECDSA certificate") + } + + // An ECDSA publickey as marshaled by ecdsaPublicKey.Marshal() in keys.go + var ecdsaPub struct { + Name string + ID string + Key []byte + } + if err := ssh.Unmarshal(cert.Key.Marshal(), &ecdsaPub); err != nil { + return nil, err + } + + priv, err := unmarshalECDSA(ecdsaPub.ID, ecdsaPub.Key, k.D) + if err != nil { + return nil, err + } + + addedKey := &AddedKey{PrivateKey: priv, Certificate: cert, Comment: k.Comments} + if err := setConstraints(addedKey, k.Constraints); err != nil { + return nil, err + } + return addedKey, nil +} + +func (s *server) insertIdentity(req []byte) error { + var record struct { + Type string `sshtype:"17|25"` + Rest []byte `ssh:"rest"` + } + + if err := ssh.Unmarshal(req, &record); err != nil { + return err + } + + var addedKey *AddedKey + var err error + + switch record.Type { + case ssh.KeyAlgoRSA: + addedKey, err = parseRSAKey(req) + case ssh.KeyAlgoDSA: + addedKey, err = parseDSAKey(req) + case ssh.KeyAlgoECDSA256, ssh.KeyAlgoECDSA384, ssh.KeyAlgoECDSA521: + addedKey, err = parseECDSAKey(req) + case ssh.KeyAlgoED25519: + addedKey, err = parseEd25519Key(req) + case ssh.CertAlgoRSAv01: + addedKey, err = parseRSACert(req) + case ssh.CertAlgoDSAv01: + addedKey, err = parseDSACert(req) + case ssh.CertAlgoECDSA256v01, ssh.CertAlgoECDSA384v01, ssh.CertAlgoECDSA521v01: + addedKey, err = parseECDSACert(req) + case ssh.CertAlgoED25519v01: + addedKey, err = parseEd25519Cert(req) + default: + return fmt.Errorf("agent: not implemented: %q", record.Type) + } + + if err != nil { + return err + } + return s.agent.Add(*addedKey) +} + +// ServeAgent serves the agent protocol on the given connection. It +// returns when an I/O error occurs. +func ServeAgent(agent Agent, c io.ReadWriter) error { + s := &server{agent} + + var length [4]byte + for { + if _, err := io.ReadFull(c, length[:]); err != nil { + return err + } + l := binary.BigEndian.Uint32(length[:]) + if l > maxAgentResponseBytes { + // We also cap requests. + return fmt.Errorf("agent: request too large: %d", l) + } + + req := make([]byte, l) + if _, err := io.ReadFull(c, req); err != nil { + return err + } + + repData := s.processRequestBytes(req) + if len(repData) > maxAgentResponseBytes { + return fmt.Errorf("agent: reply too large: %d bytes", len(repData)) + } + + binary.BigEndian.PutUint32(length[:], uint32(len(repData))) + if _, err := c.Write(length[:]); err != nil { + return err + } + if _, err := c.Write(repData); err != nil { + return err + } + } +} diff --git a/vendor/golang.org/x/crypto/ssh/buffer.go b/vendor/golang.org/x/crypto/ssh/buffer.go new file mode 100644 index 000000000..1ab07d078 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/buffer.go @@ -0,0 +1,97 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "io" + "sync" +) + +// buffer provides a linked list buffer for data exchange +// between producer and consumer. Theoretically the buffer is +// of unlimited capacity as it does no allocation of its own. +type buffer struct { + // protects concurrent access to head, tail and closed + *sync.Cond + + head *element // the buffer that will be read first + tail *element // the buffer that will be read last + + closed bool +} + +// An element represents a single link in a linked list. +type element struct { + buf []byte + next *element +} + +// newBuffer returns an empty buffer that is not closed. +func newBuffer() *buffer { + e := new(element) + b := &buffer{ + Cond: newCond(), + head: e, + tail: e, + } + return b +} + +// write makes buf available for Read to receive. +// buf must not be modified after the call to write. +func (b *buffer) write(buf []byte) { + b.Cond.L.Lock() + e := &element{buf: buf} + b.tail.next = e + b.tail = e + b.Cond.Signal() + b.Cond.L.Unlock() +} + +// eof closes the buffer. Reads from the buffer once all +// the data has been consumed will receive io.EOF. +func (b *buffer) eof() { + b.Cond.L.Lock() + b.closed = true + b.Cond.Signal() + b.Cond.L.Unlock() +} + +// Read reads data from the internal buffer in buf. Reads will block +// if no data is available, or until the buffer is closed. +func (b *buffer) Read(buf []byte) (n int, err error) { + b.Cond.L.Lock() + defer b.Cond.L.Unlock() + + for len(buf) > 0 { + // if there is data in b.head, copy it + if len(b.head.buf) > 0 { + r := copy(buf, b.head.buf) + buf, b.head.buf = buf[r:], b.head.buf[r:] + n += r + continue + } + // if there is a next buffer, make it the head + if len(b.head.buf) == 0 && b.head != b.tail { + b.head = b.head.next + continue + } + + // if at least one byte has been copied, return + if n > 0 { + break + } + + // if nothing was read, and there is nothing outstanding + // check to see if the buffer is closed. + if b.closed { + err = io.EOF + break + } + // out of buffers, wait for producer + b.Cond.Wait() + } + return +} diff --git a/vendor/golang.org/x/crypto/ssh/certs.go b/vendor/golang.org/x/crypto/ssh/certs.go new file mode 100644 index 000000000..42106f3f2 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/certs.go @@ -0,0 +1,521 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "errors" + "fmt" + "io" + "net" + "sort" + "time" +) + +// These constants from [PROTOCOL.certkeys] represent the algorithm names +// for certificate types supported by this package. +const ( + CertAlgoRSAv01 = "ssh-rsa-cert-v01@openssh.com" + CertAlgoDSAv01 = "ssh-dss-cert-v01@openssh.com" + CertAlgoECDSA256v01 = "ecdsa-sha2-nistp256-cert-v01@openssh.com" + CertAlgoECDSA384v01 = "ecdsa-sha2-nistp384-cert-v01@openssh.com" + CertAlgoECDSA521v01 = "ecdsa-sha2-nistp521-cert-v01@openssh.com" + CertAlgoED25519v01 = "ssh-ed25519-cert-v01@openssh.com" +) + +// Certificate types distinguish between host and user +// certificates. The values can be set in the CertType field of +// Certificate. +const ( + UserCert = 1 + HostCert = 2 +) + +// Signature represents a cryptographic signature. +type Signature struct { + Format string + Blob []byte +} + +// CertTimeInfinity can be used for OpenSSHCertV01.ValidBefore to indicate that +// a certificate does not expire. +const CertTimeInfinity = 1<<64 - 1 + +// An Certificate represents an OpenSSH certificate as defined in +// [PROTOCOL.certkeys]?rev=1.8. The Certificate type implements the +// PublicKey interface, so it can be unmarshaled using +// ParsePublicKey. +type Certificate struct { + Nonce []byte + Key PublicKey + Serial uint64 + CertType uint32 + KeyId string + ValidPrincipals []string + ValidAfter uint64 + ValidBefore uint64 + Permissions + Reserved []byte + SignatureKey PublicKey + Signature *Signature +} + +// genericCertData holds the key-independent part of the certificate data. +// Overall, certificates contain an nonce, public key fields and +// key-independent fields. +type genericCertData struct { + Serial uint64 + CertType uint32 + KeyId string + ValidPrincipals []byte + ValidAfter uint64 + ValidBefore uint64 + CriticalOptions []byte + Extensions []byte + Reserved []byte + SignatureKey []byte + Signature []byte +} + +func marshalStringList(namelist []string) []byte { + var to []byte + for _, name := range namelist { + s := struct{ N string }{name} + to = append(to, Marshal(&s)...) + } + return to +} + +type optionsTuple struct { + Key string + Value []byte +} + +type optionsTupleValue struct { + Value string +} + +// serialize a map of critical options or extensions +// issue #10569 - per [PROTOCOL.certkeys] and SSH implementation, +// we need two length prefixes for a non-empty string value +func marshalTuples(tups map[string]string) []byte { + keys := make([]string, 0, len(tups)) + for key := range tups { + keys = append(keys, key) + } + sort.Strings(keys) + + var ret []byte + for _, key := range keys { + s := optionsTuple{Key: key} + if value := tups[key]; len(value) > 0 { + s.Value = Marshal(&optionsTupleValue{value}) + } + ret = append(ret, Marshal(&s)...) + } + return ret +} + +// issue #10569 - per [PROTOCOL.certkeys] and SSH implementation, +// we need two length prefixes for a non-empty option value +func parseTuples(in []byte) (map[string]string, error) { + tups := map[string]string{} + var lastKey string + var haveLastKey bool + + for len(in) > 0 { + var key, val, extra []byte + var ok bool + + if key, in, ok = parseString(in); !ok { + return nil, errShortRead + } + keyStr := string(key) + // according to [PROTOCOL.certkeys], the names must be in + // lexical order. + if haveLastKey && keyStr <= lastKey { + return nil, fmt.Errorf("ssh: certificate options are not in lexical order") + } + lastKey, haveLastKey = keyStr, true + // the next field is a data field, which if non-empty has a string embedded + if val, in, ok = parseString(in); !ok { + return nil, errShortRead + } + if len(val) > 0 { + val, extra, ok = parseString(val) + if !ok { + return nil, errShortRead + } + if len(extra) > 0 { + return nil, fmt.Errorf("ssh: unexpected trailing data after certificate option value") + } + tups[keyStr] = string(val) + } else { + tups[keyStr] = "" + } + } + return tups, nil +} + +func parseCert(in []byte, privAlgo string) (*Certificate, error) { + nonce, rest, ok := parseString(in) + if !ok { + return nil, errShortRead + } + + key, rest, err := parsePubKey(rest, privAlgo) + if err != nil { + return nil, err + } + + var g genericCertData + if err := Unmarshal(rest, &g); err != nil { + return nil, err + } + + c := &Certificate{ + Nonce: nonce, + Key: key, + Serial: g.Serial, + CertType: g.CertType, + KeyId: g.KeyId, + ValidAfter: g.ValidAfter, + ValidBefore: g.ValidBefore, + } + + for principals := g.ValidPrincipals; len(principals) > 0; { + principal, rest, ok := parseString(principals) + if !ok { + return nil, errShortRead + } + c.ValidPrincipals = append(c.ValidPrincipals, string(principal)) + principals = rest + } + + c.CriticalOptions, err = parseTuples(g.CriticalOptions) + if err != nil { + return nil, err + } + c.Extensions, err = parseTuples(g.Extensions) + if err != nil { + return nil, err + } + c.Reserved = g.Reserved + k, err := ParsePublicKey(g.SignatureKey) + if err != nil { + return nil, err + } + + c.SignatureKey = k + c.Signature, rest, ok = parseSignatureBody(g.Signature) + if !ok || len(rest) > 0 { + return nil, errors.New("ssh: signature parse error") + } + + return c, nil +} + +type openSSHCertSigner struct { + pub *Certificate + signer Signer +} + +// NewCertSigner returns a Signer that signs with the given Certificate, whose +// private key is held by signer. It returns an error if the public key in cert +// doesn't match the key used by signer. +func NewCertSigner(cert *Certificate, signer Signer) (Signer, error) { + if bytes.Compare(cert.Key.Marshal(), signer.PublicKey().Marshal()) != 0 { + return nil, errors.New("ssh: signer and cert have different public key") + } + + return &openSSHCertSigner{cert, signer}, nil +} + +func (s *openSSHCertSigner) Sign(rand io.Reader, data []byte) (*Signature, error) { + return s.signer.Sign(rand, data) +} + +func (s *openSSHCertSigner) PublicKey() PublicKey { + return s.pub +} + +const sourceAddressCriticalOption = "source-address" + +// CertChecker does the work of verifying a certificate. Its methods +// can be plugged into ClientConfig.HostKeyCallback and +// ServerConfig.PublicKeyCallback. For the CertChecker to work, +// minimally, the IsAuthority callback should be set. +type CertChecker struct { + // SupportedCriticalOptions lists the CriticalOptions that the + // server application layer understands. These are only used + // for user certificates. + SupportedCriticalOptions []string + + // IsUserAuthority should return true if the key is recognized as an + // authority for the given user certificate. This allows for + // certificates to be signed by other certificates. This must be set + // if this CertChecker will be checking user certificates. + IsUserAuthority func(auth PublicKey) bool + + // IsHostAuthority should report whether the key is recognized as + // an authority for this host. This allows for certificates to be + // signed by other keys, and for those other keys to only be valid + // signers for particular hostnames. This must be set if this + // CertChecker will be checking host certificates. + IsHostAuthority func(auth PublicKey, address string) bool + + // Clock is used for verifying time stamps. If nil, time.Now + // is used. + Clock func() time.Time + + // UserKeyFallback is called when CertChecker.Authenticate encounters a + // public key that is not a certificate. It must implement validation + // of user keys or else, if nil, all such keys are rejected. + UserKeyFallback func(conn ConnMetadata, key PublicKey) (*Permissions, error) + + // HostKeyFallback is called when CertChecker.CheckHostKey encounters a + // public key that is not a certificate. It must implement host key + // validation or else, if nil, all such keys are rejected. + HostKeyFallback HostKeyCallback + + // IsRevoked is called for each certificate so that revocation checking + // can be implemented. It should return true if the given certificate + // is revoked and false otherwise. If nil, no certificates are + // considered to have been revoked. + IsRevoked func(cert *Certificate) bool +} + +// CheckHostKey checks a host key certificate. This method can be +// plugged into ClientConfig.HostKeyCallback. +func (c *CertChecker) CheckHostKey(addr string, remote net.Addr, key PublicKey) error { + cert, ok := key.(*Certificate) + if !ok { + if c.HostKeyFallback != nil { + return c.HostKeyFallback(addr, remote, key) + } + return errors.New("ssh: non-certificate host key") + } + if cert.CertType != HostCert { + return fmt.Errorf("ssh: certificate presented as a host key has type %d", cert.CertType) + } + if !c.IsHostAuthority(cert.SignatureKey, addr) { + return fmt.Errorf("ssh: no authorities for hostname: %v", addr) + } + + hostname, _, err := net.SplitHostPort(addr) + if err != nil { + return err + } + + // Pass hostname only as principal for host certificates (consistent with OpenSSH) + return c.CheckCert(hostname, cert) +} + +// Authenticate checks a user certificate. Authenticate can be used as +// a value for ServerConfig.PublicKeyCallback. +func (c *CertChecker) Authenticate(conn ConnMetadata, pubKey PublicKey) (*Permissions, error) { + cert, ok := pubKey.(*Certificate) + if !ok { + if c.UserKeyFallback != nil { + return c.UserKeyFallback(conn, pubKey) + } + return nil, errors.New("ssh: normal key pairs not accepted") + } + + if cert.CertType != UserCert { + return nil, fmt.Errorf("ssh: cert has type %d", cert.CertType) + } + if !c.IsUserAuthority(cert.SignatureKey) { + return nil, fmt.Errorf("ssh: certificate signed by unrecognized authority") + } + + if err := c.CheckCert(conn.User(), cert); err != nil { + return nil, err + } + + return &cert.Permissions, nil +} + +// CheckCert checks CriticalOptions, ValidPrincipals, revocation, timestamp and +// the signature of the certificate. +func (c *CertChecker) CheckCert(principal string, cert *Certificate) error { + if c.IsRevoked != nil && c.IsRevoked(cert) { + return fmt.Errorf("ssh: certificate serial %d revoked", cert.Serial) + } + + for opt := range cert.CriticalOptions { + // sourceAddressCriticalOption will be enforced by + // serverAuthenticate + if opt == sourceAddressCriticalOption { + continue + } + + found := false + for _, supp := range c.SupportedCriticalOptions { + if supp == opt { + found = true + break + } + } + if !found { + return fmt.Errorf("ssh: unsupported critical option %q in certificate", opt) + } + } + + if len(cert.ValidPrincipals) > 0 { + // By default, certs are valid for all users/hosts. + found := false + for _, p := range cert.ValidPrincipals { + if p == principal { + found = true + break + } + } + if !found { + return fmt.Errorf("ssh: principal %q not in the set of valid principals for given certificate: %q", principal, cert.ValidPrincipals) + } + } + + clock := c.Clock + if clock == nil { + clock = time.Now + } + + unixNow := clock().Unix() + if after := int64(cert.ValidAfter); after < 0 || unixNow < int64(cert.ValidAfter) { + return fmt.Errorf("ssh: cert is not yet valid") + } + if before := int64(cert.ValidBefore); cert.ValidBefore != uint64(CertTimeInfinity) && (unixNow >= before || before < 0) { + return fmt.Errorf("ssh: cert has expired") + } + if err := cert.SignatureKey.Verify(cert.bytesForSigning(), cert.Signature); err != nil { + return fmt.Errorf("ssh: certificate signature does not verify") + } + + return nil +} + +// SignCert sets c.SignatureKey to the authority's public key and stores a +// Signature, by authority, in the certificate. +func (c *Certificate) SignCert(rand io.Reader, authority Signer) error { + c.Nonce = make([]byte, 32) + if _, err := io.ReadFull(rand, c.Nonce); err != nil { + return err + } + c.SignatureKey = authority.PublicKey() + + sig, err := authority.Sign(rand, c.bytesForSigning()) + if err != nil { + return err + } + c.Signature = sig + return nil +} + +var certAlgoNames = map[string]string{ + KeyAlgoRSA: CertAlgoRSAv01, + KeyAlgoDSA: CertAlgoDSAv01, + KeyAlgoECDSA256: CertAlgoECDSA256v01, + KeyAlgoECDSA384: CertAlgoECDSA384v01, + KeyAlgoECDSA521: CertAlgoECDSA521v01, + KeyAlgoED25519: CertAlgoED25519v01, +} + +// certToPrivAlgo returns the underlying algorithm for a certificate algorithm. +// Panics if a non-certificate algorithm is passed. +func certToPrivAlgo(algo string) string { + for privAlgo, pubAlgo := range certAlgoNames { + if pubAlgo == algo { + return privAlgo + } + } + panic("unknown cert algorithm") +} + +func (cert *Certificate) bytesForSigning() []byte { + c2 := *cert + c2.Signature = nil + out := c2.Marshal() + // Drop trailing signature length. + return out[:len(out)-4] +} + +// Marshal serializes c into OpenSSH's wire format. It is part of the +// PublicKey interface. +func (c *Certificate) Marshal() []byte { + generic := genericCertData{ + Serial: c.Serial, + CertType: c.CertType, + KeyId: c.KeyId, + ValidPrincipals: marshalStringList(c.ValidPrincipals), + ValidAfter: uint64(c.ValidAfter), + ValidBefore: uint64(c.ValidBefore), + CriticalOptions: marshalTuples(c.CriticalOptions), + Extensions: marshalTuples(c.Extensions), + Reserved: c.Reserved, + SignatureKey: c.SignatureKey.Marshal(), + } + if c.Signature != nil { + generic.Signature = Marshal(c.Signature) + } + genericBytes := Marshal(&generic) + keyBytes := c.Key.Marshal() + _, keyBytes, _ = parseString(keyBytes) + prefix := Marshal(&struct { + Name string + Nonce []byte + Key []byte `ssh:"rest"` + }{c.Type(), c.Nonce, keyBytes}) + + result := make([]byte, 0, len(prefix)+len(genericBytes)) + result = append(result, prefix...) + result = append(result, genericBytes...) + return result +} + +// Type returns the key name. It is part of the PublicKey interface. +func (c *Certificate) Type() string { + algo, ok := certAlgoNames[c.Key.Type()] + if !ok { + panic("unknown cert key type " + c.Key.Type()) + } + return algo +} + +// Verify verifies a signature against the certificate's public +// key. It is part of the PublicKey interface. +func (c *Certificate) Verify(data []byte, sig *Signature) error { + return c.Key.Verify(data, sig) +} + +func parseSignatureBody(in []byte) (out *Signature, rest []byte, ok bool) { + format, in, ok := parseString(in) + if !ok { + return + } + + out = &Signature{ + Format: string(format), + } + + if out.Blob, in, ok = parseString(in); !ok { + return + } + + return out, in, ok +} + +func parseSignature(in []byte) (out *Signature, rest []byte, ok bool) { + sigBytes, rest, ok := parseString(in) + if !ok { + return + } + + out, trailing, ok := parseSignatureBody(sigBytes) + if !ok || len(trailing) > 0 { + return nil, nil, false + } + return +} diff --git a/vendor/golang.org/x/crypto/ssh/channel.go b/vendor/golang.org/x/crypto/ssh/channel.go new file mode 100644 index 000000000..c0834c00d --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/channel.go @@ -0,0 +1,633 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "encoding/binary" + "errors" + "fmt" + "io" + "log" + "sync" +) + +const ( + minPacketLength = 9 + // channelMaxPacket contains the maximum number of bytes that will be + // sent in a single packet. As per RFC 4253, section 6.1, 32k is also + // the minimum. + channelMaxPacket = 1 << 15 + // We follow OpenSSH here. + channelWindowSize = 64 * channelMaxPacket +) + +// NewChannel represents an incoming request to a channel. It must either be +// accepted for use by calling Accept, or rejected by calling Reject. +type NewChannel interface { + // Accept accepts the channel creation request. It returns the Channel + // and a Go channel containing SSH requests. The Go channel must be + // serviced otherwise the Channel will hang. + Accept() (Channel, <-chan *Request, error) + + // Reject rejects the channel creation request. After calling + // this, no other methods on the Channel may be called. + Reject(reason RejectionReason, message string) error + + // ChannelType returns the type of the channel, as supplied by the + // client. + ChannelType() string + + // ExtraData returns the arbitrary payload for this channel, as supplied + // by the client. This data is specific to the channel type. + ExtraData() []byte +} + +// A Channel is an ordered, reliable, flow-controlled, duplex stream +// that is multiplexed over an SSH connection. +type Channel interface { + // Read reads up to len(data) bytes from the channel. + Read(data []byte) (int, error) + + // Write writes len(data) bytes to the channel. + Write(data []byte) (int, error) + + // Close signals end of channel use. No data may be sent after this + // call. + Close() error + + // CloseWrite signals the end of sending in-band + // data. Requests may still be sent, and the other side may + // still send data + CloseWrite() error + + // SendRequest sends a channel request. If wantReply is true, + // it will wait for a reply and return the result as a + // boolean, otherwise the return value will be false. Channel + // requests are out-of-band messages so they may be sent even + // if the data stream is closed or blocked by flow control. + // If the channel is closed before a reply is returned, io.EOF + // is returned. + SendRequest(name string, wantReply bool, payload []byte) (bool, error) + + // Stderr returns an io.ReadWriter that writes to this channel + // with the extended data type set to stderr. Stderr may + // safely be read and written from a different goroutine than + // Read and Write respectively. + Stderr() io.ReadWriter +} + +// Request is a request sent outside of the normal stream of +// data. Requests can either be specific to an SSH channel, or they +// can be global. +type Request struct { + Type string + WantReply bool + Payload []byte + + ch *channel + mux *mux +} + +// Reply sends a response to a request. It must be called for all requests +// where WantReply is true and is a no-op otherwise. The payload argument is +// ignored for replies to channel-specific requests. +func (r *Request) Reply(ok bool, payload []byte) error { + if !r.WantReply { + return nil + } + + if r.ch == nil { + return r.mux.ackRequest(ok, payload) + } + + return r.ch.ackRequest(ok) +} + +// RejectionReason is an enumeration used when rejecting channel creation +// requests. See RFC 4254, section 5.1. +type RejectionReason uint32 + +const ( + Prohibited RejectionReason = iota + 1 + ConnectionFailed + UnknownChannelType + ResourceShortage +) + +// String converts the rejection reason to human readable form. +func (r RejectionReason) String() string { + switch r { + case Prohibited: + return "administratively prohibited" + case ConnectionFailed: + return "connect failed" + case UnknownChannelType: + return "unknown channel type" + case ResourceShortage: + return "resource shortage" + } + return fmt.Sprintf("unknown reason %d", int(r)) +} + +func min(a uint32, b int) uint32 { + if a < uint32(b) { + return a + } + return uint32(b) +} + +type channelDirection uint8 + +const ( + channelInbound channelDirection = iota + channelOutbound +) + +// channel is an implementation of the Channel interface that works +// with the mux class. +type channel struct { + // R/O after creation + chanType string + extraData []byte + localId, remoteId uint32 + + // maxIncomingPayload and maxRemotePayload are the maximum + // payload sizes of normal and extended data packets for + // receiving and sending, respectively. The wire packet will + // be 9 or 13 bytes larger (excluding encryption overhead). + maxIncomingPayload uint32 + maxRemotePayload uint32 + + mux *mux + + // decided is set to true if an accept or reject message has been sent + // (for outbound channels) or received (for inbound channels). + decided bool + + // direction contains either channelOutbound, for channels created + // locally, or channelInbound, for channels created by the peer. + direction channelDirection + + // Pending internal channel messages. + msg chan interface{} + + // Since requests have no ID, there can be only one request + // with WantReply=true outstanding. This lock is held by a + // goroutine that has such an outgoing request pending. + sentRequestMu sync.Mutex + + incomingRequests chan *Request + + sentEOF bool + + // thread-safe data + remoteWin window + pending *buffer + extPending *buffer + + // windowMu protects myWindow, the flow-control window. + windowMu sync.Mutex + myWindow uint32 + + // writeMu serializes calls to mux.conn.writePacket() and + // protects sentClose and packetPool. This mutex must be + // different from windowMu, as writePacket can block if there + // is a key exchange pending. + writeMu sync.Mutex + sentClose bool + + // packetPool has a buffer for each extended channel ID to + // save allocations during writes. + packetPool map[uint32][]byte +} + +// writePacket sends a packet. If the packet is a channel close, it updates +// sentClose. This method takes the lock c.writeMu. +func (ch *channel) writePacket(packet []byte) error { + ch.writeMu.Lock() + if ch.sentClose { + ch.writeMu.Unlock() + return io.EOF + } + ch.sentClose = (packet[0] == msgChannelClose) + err := ch.mux.conn.writePacket(packet) + ch.writeMu.Unlock() + return err +} + +func (ch *channel) sendMessage(msg interface{}) error { + if debugMux { + log.Printf("send(%d): %#v", ch.mux.chanList.offset, msg) + } + + p := Marshal(msg) + binary.BigEndian.PutUint32(p[1:], ch.remoteId) + return ch.writePacket(p) +} + +// WriteExtended writes data to a specific extended stream. These streams are +// used, for example, for stderr. +func (ch *channel) WriteExtended(data []byte, extendedCode uint32) (n int, err error) { + if ch.sentEOF { + return 0, io.EOF + } + // 1 byte message type, 4 bytes remoteId, 4 bytes data length + opCode := byte(msgChannelData) + headerLength := uint32(9) + if extendedCode > 0 { + headerLength += 4 + opCode = msgChannelExtendedData + } + + ch.writeMu.Lock() + packet := ch.packetPool[extendedCode] + // We don't remove the buffer from packetPool, so + // WriteExtended calls from different goroutines will be + // flagged as errors by the race detector. + ch.writeMu.Unlock() + + for len(data) > 0 { + space := min(ch.maxRemotePayload, len(data)) + if space, err = ch.remoteWin.reserve(space); err != nil { + return n, err + } + if want := headerLength + space; uint32(cap(packet)) < want { + packet = make([]byte, want) + } else { + packet = packet[:want] + } + + todo := data[:space] + + packet[0] = opCode + binary.BigEndian.PutUint32(packet[1:], ch.remoteId) + if extendedCode > 0 { + binary.BigEndian.PutUint32(packet[5:], uint32(extendedCode)) + } + binary.BigEndian.PutUint32(packet[headerLength-4:], uint32(len(todo))) + copy(packet[headerLength:], todo) + if err = ch.writePacket(packet); err != nil { + return n, err + } + + n += len(todo) + data = data[len(todo):] + } + + ch.writeMu.Lock() + ch.packetPool[extendedCode] = packet + ch.writeMu.Unlock() + + return n, err +} + +func (ch *channel) handleData(packet []byte) error { + headerLen := 9 + isExtendedData := packet[0] == msgChannelExtendedData + if isExtendedData { + headerLen = 13 + } + if len(packet) < headerLen { + // malformed data packet + return parseError(packet[0]) + } + + var extended uint32 + if isExtendedData { + extended = binary.BigEndian.Uint32(packet[5:]) + } + + length := binary.BigEndian.Uint32(packet[headerLen-4 : headerLen]) + if length == 0 { + return nil + } + if length > ch.maxIncomingPayload { + // TODO(hanwen): should send Disconnect? + return errors.New("ssh: incoming packet exceeds maximum payload size") + } + + data := packet[headerLen:] + if length != uint32(len(data)) { + return errors.New("ssh: wrong packet length") + } + + ch.windowMu.Lock() + if ch.myWindow < length { + ch.windowMu.Unlock() + // TODO(hanwen): should send Disconnect with reason? + return errors.New("ssh: remote side wrote too much") + } + ch.myWindow -= length + ch.windowMu.Unlock() + + if extended == 1 { + ch.extPending.write(data) + } else if extended > 0 { + // discard other extended data. + } else { + ch.pending.write(data) + } + return nil +} + +func (c *channel) adjustWindow(n uint32) error { + c.windowMu.Lock() + // Since myWindow is managed on our side, and can never exceed + // the initial window setting, we don't worry about overflow. + c.myWindow += uint32(n) + c.windowMu.Unlock() + return c.sendMessage(windowAdjustMsg{ + AdditionalBytes: uint32(n), + }) +} + +func (c *channel) ReadExtended(data []byte, extended uint32) (n int, err error) { + switch extended { + case 1: + n, err = c.extPending.Read(data) + case 0: + n, err = c.pending.Read(data) + default: + return 0, fmt.Errorf("ssh: extended code %d unimplemented", extended) + } + + if n > 0 { + err = c.adjustWindow(uint32(n)) + // sendWindowAdjust can return io.EOF if the remote + // peer has closed the connection, however we want to + // defer forwarding io.EOF to the caller of Read until + // the buffer has been drained. + if n > 0 && err == io.EOF { + err = nil + } + } + + return n, err +} + +func (c *channel) close() { + c.pending.eof() + c.extPending.eof() + close(c.msg) + close(c.incomingRequests) + c.writeMu.Lock() + // This is not necessary for a normal channel teardown, but if + // there was another error, it is. + c.sentClose = true + c.writeMu.Unlock() + // Unblock writers. + c.remoteWin.close() +} + +// responseMessageReceived is called when a success or failure message is +// received on a channel to check that such a message is reasonable for the +// given channel. +func (ch *channel) responseMessageReceived() error { + if ch.direction == channelInbound { + return errors.New("ssh: channel response message received on inbound channel") + } + if ch.decided { + return errors.New("ssh: duplicate response received for channel") + } + ch.decided = true + return nil +} + +func (ch *channel) handlePacket(packet []byte) error { + switch packet[0] { + case msgChannelData, msgChannelExtendedData: + return ch.handleData(packet) + case msgChannelClose: + ch.sendMessage(channelCloseMsg{PeersID: ch.remoteId}) + ch.mux.chanList.remove(ch.localId) + ch.close() + return nil + case msgChannelEOF: + // RFC 4254 is mute on how EOF affects dataExt messages but + // it is logical to signal EOF at the same time. + ch.extPending.eof() + ch.pending.eof() + return nil + } + + decoded, err := decode(packet) + if err != nil { + return err + } + + switch msg := decoded.(type) { + case *channelOpenFailureMsg: + if err := ch.responseMessageReceived(); err != nil { + return err + } + ch.mux.chanList.remove(msg.PeersID) + ch.msg <- msg + case *channelOpenConfirmMsg: + if err := ch.responseMessageReceived(); err != nil { + return err + } + if msg.MaxPacketSize < minPacketLength || msg.MaxPacketSize > 1<<31 { + return fmt.Errorf("ssh: invalid MaxPacketSize %d from peer", msg.MaxPacketSize) + } + ch.remoteId = msg.MyID + ch.maxRemotePayload = msg.MaxPacketSize + ch.remoteWin.add(msg.MyWindow) + ch.msg <- msg + case *windowAdjustMsg: + if !ch.remoteWin.add(msg.AdditionalBytes) { + return fmt.Errorf("ssh: invalid window update for %d bytes", msg.AdditionalBytes) + } + case *channelRequestMsg: + req := Request{ + Type: msg.Request, + WantReply: msg.WantReply, + Payload: msg.RequestSpecificData, + ch: ch, + } + + ch.incomingRequests <- &req + default: + ch.msg <- msg + } + return nil +} + +func (m *mux) newChannel(chanType string, direction channelDirection, extraData []byte) *channel { + ch := &channel{ + remoteWin: window{Cond: newCond()}, + myWindow: channelWindowSize, + pending: newBuffer(), + extPending: newBuffer(), + direction: direction, + incomingRequests: make(chan *Request, chanSize), + msg: make(chan interface{}, chanSize), + chanType: chanType, + extraData: extraData, + mux: m, + packetPool: make(map[uint32][]byte), + } + ch.localId = m.chanList.add(ch) + return ch +} + +var errUndecided = errors.New("ssh: must Accept or Reject channel") +var errDecidedAlready = errors.New("ssh: can call Accept or Reject only once") + +type extChannel struct { + code uint32 + ch *channel +} + +func (e *extChannel) Write(data []byte) (n int, err error) { + return e.ch.WriteExtended(data, e.code) +} + +func (e *extChannel) Read(data []byte) (n int, err error) { + return e.ch.ReadExtended(data, e.code) +} + +func (ch *channel) Accept() (Channel, <-chan *Request, error) { + if ch.decided { + return nil, nil, errDecidedAlready + } + ch.maxIncomingPayload = channelMaxPacket + confirm := channelOpenConfirmMsg{ + PeersID: ch.remoteId, + MyID: ch.localId, + MyWindow: ch.myWindow, + MaxPacketSize: ch.maxIncomingPayload, + } + ch.decided = true + if err := ch.sendMessage(confirm); err != nil { + return nil, nil, err + } + + return ch, ch.incomingRequests, nil +} + +func (ch *channel) Reject(reason RejectionReason, message string) error { + if ch.decided { + return errDecidedAlready + } + reject := channelOpenFailureMsg{ + PeersID: ch.remoteId, + Reason: reason, + Message: message, + Language: "en", + } + ch.decided = true + return ch.sendMessage(reject) +} + +func (ch *channel) Read(data []byte) (int, error) { + if !ch.decided { + return 0, errUndecided + } + return ch.ReadExtended(data, 0) +} + +func (ch *channel) Write(data []byte) (int, error) { + if !ch.decided { + return 0, errUndecided + } + return ch.WriteExtended(data, 0) +} + +func (ch *channel) CloseWrite() error { + if !ch.decided { + return errUndecided + } + ch.sentEOF = true + return ch.sendMessage(channelEOFMsg{ + PeersID: ch.remoteId}) +} + +func (ch *channel) Close() error { + if !ch.decided { + return errUndecided + } + + return ch.sendMessage(channelCloseMsg{ + PeersID: ch.remoteId}) +} + +// Extended returns an io.ReadWriter that sends and receives data on the given, +// SSH extended stream. Such streams are used, for example, for stderr. +func (ch *channel) Extended(code uint32) io.ReadWriter { + if !ch.decided { + return nil + } + return &extChannel{code, ch} +} + +func (ch *channel) Stderr() io.ReadWriter { + return ch.Extended(1) +} + +func (ch *channel) SendRequest(name string, wantReply bool, payload []byte) (bool, error) { + if !ch.decided { + return false, errUndecided + } + + if wantReply { + ch.sentRequestMu.Lock() + defer ch.sentRequestMu.Unlock() + } + + msg := channelRequestMsg{ + PeersID: ch.remoteId, + Request: name, + WantReply: wantReply, + RequestSpecificData: payload, + } + + if err := ch.sendMessage(msg); err != nil { + return false, err + } + + if wantReply { + m, ok := (<-ch.msg) + if !ok { + return false, io.EOF + } + switch m.(type) { + case *channelRequestFailureMsg: + return false, nil + case *channelRequestSuccessMsg: + return true, nil + default: + return false, fmt.Errorf("ssh: unexpected response to channel request: %#v", m) + } + } + + return false, nil +} + +// ackRequest either sends an ack or nack to the channel request. +func (ch *channel) ackRequest(ok bool) error { + if !ch.decided { + return errUndecided + } + + var msg interface{} + if !ok { + msg = channelRequestFailureMsg{ + PeersID: ch.remoteId, + } + } else { + msg = channelRequestSuccessMsg{ + PeersID: ch.remoteId, + } + } + return ch.sendMessage(msg) +} + +func (ch *channel) ChannelType() string { + return ch.chanType +} + +func (ch *channel) ExtraData() []byte { + return ch.extraData +} diff --git a/vendor/golang.org/x/crypto/ssh/cipher.go b/vendor/golang.org/x/crypto/ssh/cipher.go new file mode 100644 index 000000000..67b012610 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/cipher.go @@ -0,0 +1,770 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto/aes" + "crypto/cipher" + "crypto/des" + "crypto/rc4" + "crypto/subtle" + "encoding/binary" + "errors" + "fmt" + "hash" + "io" + "io/ioutil" + "math/bits" + + "golang.org/x/crypto/internal/chacha20" + "golang.org/x/crypto/poly1305" +) + +const ( + packetSizeMultiple = 16 // TODO(huin) this should be determined by the cipher. + + // RFC 4253 section 6.1 defines a minimum packet size of 32768 that implementations + // MUST be able to process (plus a few more kilobytes for padding and mac). The RFC + // indicates implementations SHOULD be able to handle larger packet sizes, but then + // waffles on about reasonable limits. + // + // OpenSSH caps their maxPacket at 256kB so we choose to do + // the same. maxPacket is also used to ensure that uint32 + // length fields do not overflow, so it should remain well + // below 4G. + maxPacket = 256 * 1024 +) + +// noneCipher implements cipher.Stream and provides no encryption. It is used +// by the transport before the first key-exchange. +type noneCipher struct{} + +func (c noneCipher) XORKeyStream(dst, src []byte) { + copy(dst, src) +} + +func newAESCTR(key, iv []byte) (cipher.Stream, error) { + c, err := aes.NewCipher(key) + if err != nil { + return nil, err + } + return cipher.NewCTR(c, iv), nil +} + +func newRC4(key, iv []byte) (cipher.Stream, error) { + return rc4.NewCipher(key) +} + +type cipherMode struct { + keySize int + ivSize int + create func(key, iv []byte, macKey []byte, algs directionAlgorithms) (packetCipher, error) +} + +func streamCipherMode(skip int, createFunc func(key, iv []byte) (cipher.Stream, error)) func(key, iv []byte, macKey []byte, algs directionAlgorithms) (packetCipher, error) { + return func(key, iv, macKey []byte, algs directionAlgorithms) (packetCipher, error) { + stream, err := createFunc(key, iv) + if err != nil { + return nil, err + } + + var streamDump []byte + if skip > 0 { + streamDump = make([]byte, 512) + } + + for remainingToDump := skip; remainingToDump > 0; { + dumpThisTime := remainingToDump + if dumpThisTime > len(streamDump) { + dumpThisTime = len(streamDump) + } + stream.XORKeyStream(streamDump[:dumpThisTime], streamDump[:dumpThisTime]) + remainingToDump -= dumpThisTime + } + + mac := macModes[algs.MAC].new(macKey) + return &streamPacketCipher{ + mac: mac, + etm: macModes[algs.MAC].etm, + macResult: make([]byte, mac.Size()), + cipher: stream, + }, nil + } +} + +// cipherModes documents properties of supported ciphers. Ciphers not included +// are not supported and will not be negotiated, even if explicitly requested in +// ClientConfig.Crypto.Ciphers. +var cipherModes = map[string]*cipherMode{ + // Ciphers from RFC4344, which introduced many CTR-based ciphers. Algorithms + // are defined in the order specified in the RFC. + "aes128-ctr": {16, aes.BlockSize, streamCipherMode(0, newAESCTR)}, + "aes192-ctr": {24, aes.BlockSize, streamCipherMode(0, newAESCTR)}, + "aes256-ctr": {32, aes.BlockSize, streamCipherMode(0, newAESCTR)}, + + // Ciphers from RFC4345, which introduces security-improved arcfour ciphers. + // They are defined in the order specified in the RFC. + "arcfour128": {16, 0, streamCipherMode(1536, newRC4)}, + "arcfour256": {32, 0, streamCipherMode(1536, newRC4)}, + + // Cipher defined in RFC 4253, which describes SSH Transport Layer Protocol. + // Note that this cipher is not safe, as stated in RFC 4253: "Arcfour (and + // RC4) has problems with weak keys, and should be used with caution." + // RFC4345 introduces improved versions of Arcfour. + "arcfour": {16, 0, streamCipherMode(0, newRC4)}, + + // AEAD ciphers + gcmCipherID: {16, 12, newGCMCipher}, + chacha20Poly1305ID: {64, 0, newChaCha20Cipher}, + + // CBC mode is insecure and so is not included in the default config. + // (See http://www.isg.rhul.ac.uk/~kp/SandPfinal.pdf). If absolutely + // needed, it's possible to specify a custom Config to enable it. + // You should expect that an active attacker can recover plaintext if + // you do. + aes128cbcID: {16, aes.BlockSize, newAESCBCCipher}, + + // 3des-cbc is insecure and is not included in the default + // config. + tripledescbcID: {24, des.BlockSize, newTripleDESCBCCipher}, +} + +// prefixLen is the length of the packet prefix that contains the packet length +// and number of padding bytes. +const prefixLen = 5 + +// streamPacketCipher is a packetCipher using a stream cipher. +type streamPacketCipher struct { + mac hash.Hash + cipher cipher.Stream + etm bool + + // The following members are to avoid per-packet allocations. + prefix [prefixLen]byte + seqNumBytes [4]byte + padding [2 * packetSizeMultiple]byte + packetData []byte + macResult []byte +} + +// readPacket reads and decrypt a single packet from the reader argument. +func (s *streamPacketCipher) readPacket(seqNum uint32, r io.Reader) ([]byte, error) { + if _, err := io.ReadFull(r, s.prefix[:]); err != nil { + return nil, err + } + + var encryptedPaddingLength [1]byte + if s.mac != nil && s.etm { + copy(encryptedPaddingLength[:], s.prefix[4:5]) + s.cipher.XORKeyStream(s.prefix[4:5], s.prefix[4:5]) + } else { + s.cipher.XORKeyStream(s.prefix[:], s.prefix[:]) + } + + length := binary.BigEndian.Uint32(s.prefix[0:4]) + paddingLength := uint32(s.prefix[4]) + + var macSize uint32 + if s.mac != nil { + s.mac.Reset() + binary.BigEndian.PutUint32(s.seqNumBytes[:], seqNum) + s.mac.Write(s.seqNumBytes[:]) + if s.etm { + s.mac.Write(s.prefix[:4]) + s.mac.Write(encryptedPaddingLength[:]) + } else { + s.mac.Write(s.prefix[:]) + } + macSize = uint32(s.mac.Size()) + } + + if length <= paddingLength+1 { + return nil, errors.New("ssh: invalid packet length, packet too small") + } + + if length > maxPacket { + return nil, errors.New("ssh: invalid packet length, packet too large") + } + + // the maxPacket check above ensures that length-1+macSize + // does not overflow. + if uint32(cap(s.packetData)) < length-1+macSize { + s.packetData = make([]byte, length-1+macSize) + } else { + s.packetData = s.packetData[:length-1+macSize] + } + + if _, err := io.ReadFull(r, s.packetData); err != nil { + return nil, err + } + mac := s.packetData[length-1:] + data := s.packetData[:length-1] + + if s.mac != nil && s.etm { + s.mac.Write(data) + } + + s.cipher.XORKeyStream(data, data) + + if s.mac != nil { + if !s.etm { + s.mac.Write(data) + } + s.macResult = s.mac.Sum(s.macResult[:0]) + if subtle.ConstantTimeCompare(s.macResult, mac) != 1 { + return nil, errors.New("ssh: MAC failure") + } + } + + return s.packetData[:length-paddingLength-1], nil +} + +// writePacket encrypts and sends a packet of data to the writer argument +func (s *streamPacketCipher) writePacket(seqNum uint32, w io.Writer, rand io.Reader, packet []byte) error { + if len(packet) > maxPacket { + return errors.New("ssh: packet too large") + } + + aadlen := 0 + if s.mac != nil && s.etm { + // packet length is not encrypted for EtM modes + aadlen = 4 + } + + paddingLength := packetSizeMultiple - (prefixLen+len(packet)-aadlen)%packetSizeMultiple + if paddingLength < 4 { + paddingLength += packetSizeMultiple + } + + length := len(packet) + 1 + paddingLength + binary.BigEndian.PutUint32(s.prefix[:], uint32(length)) + s.prefix[4] = byte(paddingLength) + padding := s.padding[:paddingLength] + if _, err := io.ReadFull(rand, padding); err != nil { + return err + } + + if s.mac != nil { + s.mac.Reset() + binary.BigEndian.PutUint32(s.seqNumBytes[:], seqNum) + s.mac.Write(s.seqNumBytes[:]) + + if s.etm { + // For EtM algorithms, the packet length must stay unencrypted, + // but the following data (padding length) must be encrypted + s.cipher.XORKeyStream(s.prefix[4:5], s.prefix[4:5]) + } + + s.mac.Write(s.prefix[:]) + + if !s.etm { + // For non-EtM algorithms, the algorithm is applied on unencrypted data + s.mac.Write(packet) + s.mac.Write(padding) + } + } + + if !(s.mac != nil && s.etm) { + // For EtM algorithms, the padding length has already been encrypted + // and the packet length must remain unencrypted + s.cipher.XORKeyStream(s.prefix[:], s.prefix[:]) + } + + s.cipher.XORKeyStream(packet, packet) + s.cipher.XORKeyStream(padding, padding) + + if s.mac != nil && s.etm { + // For EtM algorithms, packet and padding must be encrypted + s.mac.Write(packet) + s.mac.Write(padding) + } + + if _, err := w.Write(s.prefix[:]); err != nil { + return err + } + if _, err := w.Write(packet); err != nil { + return err + } + if _, err := w.Write(padding); err != nil { + return err + } + + if s.mac != nil { + s.macResult = s.mac.Sum(s.macResult[:0]) + if _, err := w.Write(s.macResult); err != nil { + return err + } + } + + return nil +} + +type gcmCipher struct { + aead cipher.AEAD + prefix [4]byte + iv []byte + buf []byte +} + +func newGCMCipher(key, iv, unusedMacKey []byte, unusedAlgs directionAlgorithms) (packetCipher, error) { + c, err := aes.NewCipher(key) + if err != nil { + return nil, err + } + + aead, err := cipher.NewGCM(c) + if err != nil { + return nil, err + } + + return &gcmCipher{ + aead: aead, + iv: iv, + }, nil +} + +const gcmTagSize = 16 + +func (c *gcmCipher) writePacket(seqNum uint32, w io.Writer, rand io.Reader, packet []byte) error { + // Pad out to multiple of 16 bytes. This is different from the + // stream cipher because that encrypts the length too. + padding := byte(packetSizeMultiple - (1+len(packet))%packetSizeMultiple) + if padding < 4 { + padding += packetSizeMultiple + } + + length := uint32(len(packet) + int(padding) + 1) + binary.BigEndian.PutUint32(c.prefix[:], length) + if _, err := w.Write(c.prefix[:]); err != nil { + return err + } + + if cap(c.buf) < int(length) { + c.buf = make([]byte, length) + } else { + c.buf = c.buf[:length] + } + + c.buf[0] = padding + copy(c.buf[1:], packet) + if _, err := io.ReadFull(rand, c.buf[1+len(packet):]); err != nil { + return err + } + c.buf = c.aead.Seal(c.buf[:0], c.iv, c.buf, c.prefix[:]) + if _, err := w.Write(c.buf); err != nil { + return err + } + c.incIV() + + return nil +} + +func (c *gcmCipher) incIV() { + for i := 4 + 7; i >= 4; i-- { + c.iv[i]++ + if c.iv[i] != 0 { + break + } + } +} + +func (c *gcmCipher) readPacket(seqNum uint32, r io.Reader) ([]byte, error) { + if _, err := io.ReadFull(r, c.prefix[:]); err != nil { + return nil, err + } + length := binary.BigEndian.Uint32(c.prefix[:]) + if length > maxPacket { + return nil, errors.New("ssh: max packet length exceeded") + } + + if cap(c.buf) < int(length+gcmTagSize) { + c.buf = make([]byte, length+gcmTagSize) + } else { + c.buf = c.buf[:length+gcmTagSize] + } + + if _, err := io.ReadFull(r, c.buf); err != nil { + return nil, err + } + + plain, err := c.aead.Open(c.buf[:0], c.iv, c.buf, c.prefix[:]) + if err != nil { + return nil, err + } + c.incIV() + + padding := plain[0] + if padding < 4 { + // padding is a byte, so it automatically satisfies + // the maximum size, which is 255. + return nil, fmt.Errorf("ssh: illegal padding %d", padding) + } + + if int(padding+1) >= len(plain) { + return nil, fmt.Errorf("ssh: padding %d too large", padding) + } + plain = plain[1 : length-uint32(padding)] + return plain, nil +} + +// cbcCipher implements aes128-cbc cipher defined in RFC 4253 section 6.1 +type cbcCipher struct { + mac hash.Hash + macSize uint32 + decrypter cipher.BlockMode + encrypter cipher.BlockMode + + // The following members are to avoid per-packet allocations. + seqNumBytes [4]byte + packetData []byte + macResult []byte + + // Amount of data we should still read to hide which + // verification error triggered. + oracleCamouflage uint32 +} + +func newCBCCipher(c cipher.Block, key, iv, macKey []byte, algs directionAlgorithms) (packetCipher, error) { + cbc := &cbcCipher{ + mac: macModes[algs.MAC].new(macKey), + decrypter: cipher.NewCBCDecrypter(c, iv), + encrypter: cipher.NewCBCEncrypter(c, iv), + packetData: make([]byte, 1024), + } + if cbc.mac != nil { + cbc.macSize = uint32(cbc.mac.Size()) + } + + return cbc, nil +} + +func newAESCBCCipher(key, iv, macKey []byte, algs directionAlgorithms) (packetCipher, error) { + c, err := aes.NewCipher(key) + if err != nil { + return nil, err + } + + cbc, err := newCBCCipher(c, key, iv, macKey, algs) + if err != nil { + return nil, err + } + + return cbc, nil +} + +func newTripleDESCBCCipher(key, iv, macKey []byte, algs directionAlgorithms) (packetCipher, error) { + c, err := des.NewTripleDESCipher(key) + if err != nil { + return nil, err + } + + cbc, err := newCBCCipher(c, key, iv, macKey, algs) + if err != nil { + return nil, err + } + + return cbc, nil +} + +func maxUInt32(a, b int) uint32 { + if a > b { + return uint32(a) + } + return uint32(b) +} + +const ( + cbcMinPacketSizeMultiple = 8 + cbcMinPacketSize = 16 + cbcMinPaddingSize = 4 +) + +// cbcError represents a verification error that may leak information. +type cbcError string + +func (e cbcError) Error() string { return string(e) } + +func (c *cbcCipher) readPacket(seqNum uint32, r io.Reader) ([]byte, error) { + p, err := c.readPacketLeaky(seqNum, r) + if err != nil { + if _, ok := err.(cbcError); ok { + // Verification error: read a fixed amount of + // data, to make distinguishing between + // failing MAC and failing length check more + // difficult. + io.CopyN(ioutil.Discard, r, int64(c.oracleCamouflage)) + } + } + return p, err +} + +func (c *cbcCipher) readPacketLeaky(seqNum uint32, r io.Reader) ([]byte, error) { + blockSize := c.decrypter.BlockSize() + + // Read the header, which will include some of the subsequent data in the + // case of block ciphers - this is copied back to the payload later. + // How many bytes of payload/padding will be read with this first read. + firstBlockLength := uint32((prefixLen + blockSize - 1) / blockSize * blockSize) + firstBlock := c.packetData[:firstBlockLength] + if _, err := io.ReadFull(r, firstBlock); err != nil { + return nil, err + } + + c.oracleCamouflage = maxPacket + 4 + c.macSize - firstBlockLength + + c.decrypter.CryptBlocks(firstBlock, firstBlock) + length := binary.BigEndian.Uint32(firstBlock[:4]) + if length > maxPacket { + return nil, cbcError("ssh: packet too large") + } + if length+4 < maxUInt32(cbcMinPacketSize, blockSize) { + // The minimum size of a packet is 16 (or the cipher block size, whichever + // is larger) bytes. + return nil, cbcError("ssh: packet too small") + } + // The length of the packet (including the length field but not the MAC) must + // be a multiple of the block size or 8, whichever is larger. + if (length+4)%maxUInt32(cbcMinPacketSizeMultiple, blockSize) != 0 { + return nil, cbcError("ssh: invalid packet length multiple") + } + + paddingLength := uint32(firstBlock[4]) + if paddingLength < cbcMinPaddingSize || length <= paddingLength+1 { + return nil, cbcError("ssh: invalid packet length") + } + + // Positions within the c.packetData buffer: + macStart := 4 + length + paddingStart := macStart - paddingLength + + // Entire packet size, starting before length, ending at end of mac. + entirePacketSize := macStart + c.macSize + + // Ensure c.packetData is large enough for the entire packet data. + if uint32(cap(c.packetData)) < entirePacketSize { + // Still need to upsize and copy, but this should be rare at runtime, only + // on upsizing the packetData buffer. + c.packetData = make([]byte, entirePacketSize) + copy(c.packetData, firstBlock) + } else { + c.packetData = c.packetData[:entirePacketSize] + } + + n, err := io.ReadFull(r, c.packetData[firstBlockLength:]) + if err != nil { + return nil, err + } + c.oracleCamouflage -= uint32(n) + + remainingCrypted := c.packetData[firstBlockLength:macStart] + c.decrypter.CryptBlocks(remainingCrypted, remainingCrypted) + + mac := c.packetData[macStart:] + if c.mac != nil { + c.mac.Reset() + binary.BigEndian.PutUint32(c.seqNumBytes[:], seqNum) + c.mac.Write(c.seqNumBytes[:]) + c.mac.Write(c.packetData[:macStart]) + c.macResult = c.mac.Sum(c.macResult[:0]) + if subtle.ConstantTimeCompare(c.macResult, mac) != 1 { + return nil, cbcError("ssh: MAC failure") + } + } + + return c.packetData[prefixLen:paddingStart], nil +} + +func (c *cbcCipher) writePacket(seqNum uint32, w io.Writer, rand io.Reader, packet []byte) error { + effectiveBlockSize := maxUInt32(cbcMinPacketSizeMultiple, c.encrypter.BlockSize()) + + // Length of encrypted portion of the packet (header, payload, padding). + // Enforce minimum padding and packet size. + encLength := maxUInt32(prefixLen+len(packet)+cbcMinPaddingSize, cbcMinPaddingSize) + // Enforce block size. + encLength = (encLength + effectiveBlockSize - 1) / effectiveBlockSize * effectiveBlockSize + + length := encLength - 4 + paddingLength := int(length) - (1 + len(packet)) + + // Overall buffer contains: header, payload, padding, mac. + // Space for the MAC is reserved in the capacity but not the slice length. + bufferSize := encLength + c.macSize + if uint32(cap(c.packetData)) < bufferSize { + c.packetData = make([]byte, encLength, bufferSize) + } else { + c.packetData = c.packetData[:encLength] + } + + p := c.packetData + + // Packet header. + binary.BigEndian.PutUint32(p, length) + p = p[4:] + p[0] = byte(paddingLength) + + // Payload. + p = p[1:] + copy(p, packet) + + // Padding. + p = p[len(packet):] + if _, err := io.ReadFull(rand, p); err != nil { + return err + } + + if c.mac != nil { + c.mac.Reset() + binary.BigEndian.PutUint32(c.seqNumBytes[:], seqNum) + c.mac.Write(c.seqNumBytes[:]) + c.mac.Write(c.packetData) + // The MAC is now appended into the capacity reserved for it earlier. + c.packetData = c.mac.Sum(c.packetData) + } + + c.encrypter.CryptBlocks(c.packetData[:encLength], c.packetData[:encLength]) + + if _, err := w.Write(c.packetData); err != nil { + return err + } + + return nil +} + +const chacha20Poly1305ID = "chacha20-poly1305@openssh.com" + +// chacha20Poly1305Cipher implements the chacha20-poly1305@openssh.com +// AEAD, which is described here: +// +// https://tools.ietf.org/html/draft-josefsson-ssh-chacha20-poly1305-openssh-00 +// +// the methods here also implement padding, which RFC4253 Section 6 +// also requires of stream ciphers. +type chacha20Poly1305Cipher struct { + lengthKey [8]uint32 + contentKey [8]uint32 + buf []byte +} + +func newChaCha20Cipher(key, unusedIV, unusedMACKey []byte, unusedAlgs directionAlgorithms) (packetCipher, error) { + if len(key) != 64 { + panic(len(key)) + } + + c := &chacha20Poly1305Cipher{ + buf: make([]byte, 256), + } + + for i := range c.contentKey { + c.contentKey[i] = binary.LittleEndian.Uint32(key[i*4 : (i+1)*4]) + } + for i := range c.lengthKey { + c.lengthKey[i] = binary.LittleEndian.Uint32(key[(i+8)*4 : (i+9)*4]) + } + return c, nil +} + +func (c *chacha20Poly1305Cipher) readPacket(seqNum uint32, r io.Reader) ([]byte, error) { + nonce := [3]uint32{0, 0, bits.ReverseBytes32(seqNum)} + s := chacha20.New(c.contentKey, nonce) + var polyKey [32]byte + s.XORKeyStream(polyKey[:], polyKey[:]) + s.Advance() // skip next 32 bytes + + encryptedLength := c.buf[:4] + if _, err := io.ReadFull(r, encryptedLength); err != nil { + return nil, err + } + + var lenBytes [4]byte + chacha20.New(c.lengthKey, nonce).XORKeyStream(lenBytes[:], encryptedLength) + + length := binary.BigEndian.Uint32(lenBytes[:]) + if length > maxPacket { + return nil, errors.New("ssh: invalid packet length, packet too large") + } + + contentEnd := 4 + length + packetEnd := contentEnd + poly1305.TagSize + if uint32(cap(c.buf)) < packetEnd { + c.buf = make([]byte, packetEnd) + copy(c.buf[:], encryptedLength) + } else { + c.buf = c.buf[:packetEnd] + } + + if _, err := io.ReadFull(r, c.buf[4:packetEnd]); err != nil { + return nil, err + } + + var mac [poly1305.TagSize]byte + copy(mac[:], c.buf[contentEnd:packetEnd]) + if !poly1305.Verify(&mac, c.buf[:contentEnd], &polyKey) { + return nil, errors.New("ssh: MAC failure") + } + + plain := c.buf[4:contentEnd] + s.XORKeyStream(plain, plain) + + padding := plain[0] + if padding < 4 { + // padding is a byte, so it automatically satisfies + // the maximum size, which is 255. + return nil, fmt.Errorf("ssh: illegal padding %d", padding) + } + + if int(padding)+1 >= len(plain) { + return nil, fmt.Errorf("ssh: padding %d too large", padding) + } + + plain = plain[1 : len(plain)-int(padding)] + + return plain, nil +} + +func (c *chacha20Poly1305Cipher) writePacket(seqNum uint32, w io.Writer, rand io.Reader, payload []byte) error { + nonce := [3]uint32{0, 0, bits.ReverseBytes32(seqNum)} + s := chacha20.New(c.contentKey, nonce) + var polyKey [32]byte + s.XORKeyStream(polyKey[:], polyKey[:]) + s.Advance() // skip next 32 bytes + + // There is no blocksize, so fall back to multiple of 8 byte + // padding, as described in RFC 4253, Sec 6. + const packetSizeMultiple = 8 + + padding := packetSizeMultiple - (1+len(payload))%packetSizeMultiple + if padding < 4 { + padding += packetSizeMultiple + } + + // size (4 bytes), padding (1), payload, padding, tag. + totalLength := 4 + 1 + len(payload) + padding + poly1305.TagSize + if cap(c.buf) < totalLength { + c.buf = make([]byte, totalLength) + } else { + c.buf = c.buf[:totalLength] + } + + binary.BigEndian.PutUint32(c.buf, uint32(1+len(payload)+padding)) + chacha20.New(c.lengthKey, nonce).XORKeyStream(c.buf, c.buf[:4]) + c.buf[4] = byte(padding) + copy(c.buf[5:], payload) + packetEnd := 5 + len(payload) + padding + if _, err := io.ReadFull(rand, c.buf[5+len(payload):packetEnd]); err != nil { + return err + } + + s.XORKeyStream(c.buf[4:], c.buf[4:packetEnd]) + + var mac [poly1305.TagSize]byte + poly1305.Sum(&mac, c.buf[:packetEnd], &polyKey) + + copy(c.buf[packetEnd:], mac[:]) + + if _, err := w.Write(c.buf); err != nil { + return err + } + return nil +} diff --git a/vendor/golang.org/x/crypto/ssh/client.go b/vendor/golang.org/x/crypto/ssh/client.go new file mode 100644 index 000000000..6fd199455 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/client.go @@ -0,0 +1,278 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "errors" + "fmt" + "net" + "os" + "sync" + "time" +) + +// Client implements a traditional SSH client that supports shells, +// subprocesses, TCP port/streamlocal forwarding and tunneled dialing. +type Client struct { + Conn + + forwards forwardList // forwarded tcpip connections from the remote side + mu sync.Mutex + channelHandlers map[string]chan NewChannel +} + +// HandleChannelOpen returns a channel on which NewChannel requests +// for the given type are sent. If the type already is being handled, +// nil is returned. The channel is closed when the connection is closed. +func (c *Client) HandleChannelOpen(channelType string) <-chan NewChannel { + c.mu.Lock() + defer c.mu.Unlock() + if c.channelHandlers == nil { + // The SSH channel has been closed. + c := make(chan NewChannel) + close(c) + return c + } + + ch := c.channelHandlers[channelType] + if ch != nil { + return nil + } + + ch = make(chan NewChannel, chanSize) + c.channelHandlers[channelType] = ch + return ch +} + +// NewClient creates a Client on top of the given connection. +func NewClient(c Conn, chans <-chan NewChannel, reqs <-chan *Request) *Client { + conn := &Client{ + Conn: c, + channelHandlers: make(map[string]chan NewChannel, 1), + } + + go conn.handleGlobalRequests(reqs) + go conn.handleChannelOpens(chans) + go func() { + conn.Wait() + conn.forwards.closeAll() + }() + go conn.forwards.handleChannels(conn.HandleChannelOpen("forwarded-tcpip")) + go conn.forwards.handleChannels(conn.HandleChannelOpen("forwarded-streamlocal@openssh.com")) + return conn +} + +// NewClientConn establishes an authenticated SSH connection using c +// as the underlying transport. The Request and NewChannel channels +// must be serviced or the connection will hang. +func NewClientConn(c net.Conn, addr string, config *ClientConfig) (Conn, <-chan NewChannel, <-chan *Request, error) { + fullConf := *config + fullConf.SetDefaults() + if fullConf.HostKeyCallback == nil { + c.Close() + return nil, nil, nil, errors.New("ssh: must specify HostKeyCallback") + } + + conn := &connection{ + sshConn: sshConn{conn: c}, + } + + if err := conn.clientHandshake(addr, &fullConf); err != nil { + c.Close() + return nil, nil, nil, fmt.Errorf("ssh: handshake failed: %v", err) + } + conn.mux = newMux(conn.transport) + return conn, conn.mux.incomingChannels, conn.mux.incomingRequests, nil +} + +// clientHandshake performs the client side key exchange. See RFC 4253 Section +// 7. +func (c *connection) clientHandshake(dialAddress string, config *ClientConfig) error { + if config.ClientVersion != "" { + c.clientVersion = []byte(config.ClientVersion) + } else { + c.clientVersion = []byte(packageVersion) + } + var err error + c.serverVersion, err = exchangeVersions(c.sshConn.conn, c.clientVersion) + if err != nil { + return err + } + + c.transport = newClientTransport( + newTransport(c.sshConn.conn, config.Rand, true /* is client */), + c.clientVersion, c.serverVersion, config, dialAddress, c.sshConn.RemoteAddr()) + if err := c.transport.waitSession(); err != nil { + return err + } + + c.sessionID = c.transport.getSessionID() + return c.clientAuthenticate(config) +} + +// verifyHostKeySignature verifies the host key obtained in the key +// exchange. +func verifyHostKeySignature(hostKey PublicKey, result *kexResult) error { + sig, rest, ok := parseSignatureBody(result.Signature) + if len(rest) > 0 || !ok { + return errors.New("ssh: signature parse error") + } + + return hostKey.Verify(result.H, sig) +} + +// NewSession opens a new Session for this client. (A session is a remote +// execution of a program.) +func (c *Client) NewSession() (*Session, error) { + ch, in, err := c.OpenChannel("session", nil) + if err != nil { + return nil, err + } + return newSession(ch, in) +} + +func (c *Client) handleGlobalRequests(incoming <-chan *Request) { + for r := range incoming { + // This handles keepalive messages and matches + // the behaviour of OpenSSH. + r.Reply(false, nil) + } +} + +// handleChannelOpens channel open messages from the remote side. +func (c *Client) handleChannelOpens(in <-chan NewChannel) { + for ch := range in { + c.mu.Lock() + handler := c.channelHandlers[ch.ChannelType()] + c.mu.Unlock() + + if handler != nil { + handler <- ch + } else { + ch.Reject(UnknownChannelType, fmt.Sprintf("unknown channel type: %v", ch.ChannelType())) + } + } + + c.mu.Lock() + for _, ch := range c.channelHandlers { + close(ch) + } + c.channelHandlers = nil + c.mu.Unlock() +} + +// Dial starts a client connection to the given SSH server. It is a +// convenience function that connects to the given network address, +// initiates the SSH handshake, and then sets up a Client. For access +// to incoming channels and requests, use net.Dial with NewClientConn +// instead. +func Dial(network, addr string, config *ClientConfig) (*Client, error) { + conn, err := net.DialTimeout(network, addr, config.Timeout) + if err != nil { + return nil, err + } + c, chans, reqs, err := NewClientConn(conn, addr, config) + if err != nil { + return nil, err + } + return NewClient(c, chans, reqs), nil +} + +// HostKeyCallback is the function type used for verifying server +// keys. A HostKeyCallback must return nil if the host key is OK, or +// an error to reject it. It receives the hostname as passed to Dial +// or NewClientConn. The remote address is the RemoteAddr of the +// net.Conn underlying the the SSH connection. +type HostKeyCallback func(hostname string, remote net.Addr, key PublicKey) error + +// BannerCallback is the function type used for treat the banner sent by +// the server. A BannerCallback receives the message sent by the remote server. +type BannerCallback func(message string) error + +// A ClientConfig structure is used to configure a Client. It must not be +// modified after having been passed to an SSH function. +type ClientConfig struct { + // Config contains configuration that is shared between clients and + // servers. + Config + + // User contains the username to authenticate as. + User string + + // Auth contains possible authentication methods to use with the + // server. Only the first instance of a particular RFC 4252 method will + // be used during authentication. + Auth []AuthMethod + + // HostKeyCallback is called during the cryptographic + // handshake to validate the server's host key. The client + // configuration must supply this callback for the connection + // to succeed. The functions InsecureIgnoreHostKey or + // FixedHostKey can be used for simplistic host key checks. + HostKeyCallback HostKeyCallback + + // BannerCallback is called during the SSH dance to display a custom + // server's message. The client configuration can supply this callback to + // handle it as wished. The function BannerDisplayStderr can be used for + // simplistic display on Stderr. + BannerCallback BannerCallback + + // ClientVersion contains the version identification string that will + // be used for the connection. If empty, a reasonable default is used. + ClientVersion string + + // HostKeyAlgorithms lists the key types that the client will + // accept from the server as host key, in order of + // preference. If empty, a reasonable default is used. Any + // string returned from PublicKey.Type method may be used, or + // any of the CertAlgoXxxx and KeyAlgoXxxx constants. + HostKeyAlgorithms []string + + // Timeout is the maximum amount of time for the TCP connection to establish. + // + // A Timeout of zero means no timeout. + Timeout time.Duration +} + +// InsecureIgnoreHostKey returns a function that can be used for +// ClientConfig.HostKeyCallback to accept any host key. It should +// not be used for production code. +func InsecureIgnoreHostKey() HostKeyCallback { + return func(hostname string, remote net.Addr, key PublicKey) error { + return nil + } +} + +type fixedHostKey struct { + key PublicKey +} + +func (f *fixedHostKey) check(hostname string, remote net.Addr, key PublicKey) error { + if f.key == nil { + return fmt.Errorf("ssh: required host key was nil") + } + if !bytes.Equal(key.Marshal(), f.key.Marshal()) { + return fmt.Errorf("ssh: host key mismatch") + } + return nil +} + +// FixedHostKey returns a function for use in +// ClientConfig.HostKeyCallback to accept only a specific host key. +func FixedHostKey(key PublicKey) HostKeyCallback { + hk := &fixedHostKey{key} + return hk.check +} + +// BannerDisplayStderr returns a function that can be used for +// ClientConfig.BannerCallback to display banners on os.Stderr. +func BannerDisplayStderr() BannerCallback { + return func(banner string) error { + _, err := os.Stderr.WriteString(banner) + + return err + } +} diff --git a/vendor/golang.org/x/crypto/ssh/client_auth.go b/vendor/golang.org/x/crypto/ssh/client_auth.go new file mode 100644 index 000000000..5f44b7740 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/client_auth.go @@ -0,0 +1,525 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "errors" + "fmt" + "io" +) + +type authResult int + +const ( + authFailure authResult = iota + authPartialSuccess + authSuccess +) + +// clientAuthenticate authenticates with the remote server. See RFC 4252. +func (c *connection) clientAuthenticate(config *ClientConfig) error { + // initiate user auth session + if err := c.transport.writePacket(Marshal(&serviceRequestMsg{serviceUserAuth})); err != nil { + return err + } + packet, err := c.transport.readPacket() + if err != nil { + return err + } + var serviceAccept serviceAcceptMsg + if err := Unmarshal(packet, &serviceAccept); err != nil { + return err + } + + // during the authentication phase the client first attempts the "none" method + // then any untried methods suggested by the server. + tried := make(map[string]bool) + var lastMethods []string + + sessionID := c.transport.getSessionID() + for auth := AuthMethod(new(noneAuth)); auth != nil; { + ok, methods, err := auth.auth(sessionID, config.User, c.transport, config.Rand) + if err != nil { + return err + } + if ok == authSuccess { + // success + return nil + } else if ok == authFailure { + tried[auth.method()] = true + } + if methods == nil { + methods = lastMethods + } + lastMethods = methods + + auth = nil + + findNext: + for _, a := range config.Auth { + candidateMethod := a.method() + if tried[candidateMethod] { + continue + } + for _, meth := range methods { + if meth == candidateMethod { + auth = a + break findNext + } + } + } + } + return fmt.Errorf("ssh: unable to authenticate, attempted methods %v, no supported methods remain", keys(tried)) +} + +func keys(m map[string]bool) []string { + s := make([]string, 0, len(m)) + + for key := range m { + s = append(s, key) + } + return s +} + +// An AuthMethod represents an instance of an RFC 4252 authentication method. +type AuthMethod interface { + // auth authenticates user over transport t. + // Returns true if authentication is successful. + // If authentication is not successful, a []string of alternative + // method names is returned. If the slice is nil, it will be ignored + // and the previous set of possible methods will be reused. + auth(session []byte, user string, p packetConn, rand io.Reader) (authResult, []string, error) + + // method returns the RFC 4252 method name. + method() string +} + +// "none" authentication, RFC 4252 section 5.2. +type noneAuth int + +func (n *noneAuth) auth(session []byte, user string, c packetConn, rand io.Reader) (authResult, []string, error) { + if err := c.writePacket(Marshal(&userAuthRequestMsg{ + User: user, + Service: serviceSSH, + Method: "none", + })); err != nil { + return authFailure, nil, err + } + + return handleAuthResponse(c) +} + +func (n *noneAuth) method() string { + return "none" +} + +// passwordCallback is an AuthMethod that fetches the password through +// a function call, e.g. by prompting the user. +type passwordCallback func() (password string, err error) + +func (cb passwordCallback) auth(session []byte, user string, c packetConn, rand io.Reader) (authResult, []string, error) { + type passwordAuthMsg struct { + User string `sshtype:"50"` + Service string + Method string + Reply bool + Password string + } + + pw, err := cb() + // REVIEW NOTE: is there a need to support skipping a password attempt? + // The program may only find out that the user doesn't have a password + // when prompting. + if err != nil { + return authFailure, nil, err + } + + if err := c.writePacket(Marshal(&passwordAuthMsg{ + User: user, + Service: serviceSSH, + Method: cb.method(), + Reply: false, + Password: pw, + })); err != nil { + return authFailure, nil, err + } + + return handleAuthResponse(c) +} + +func (cb passwordCallback) method() string { + return "password" +} + +// Password returns an AuthMethod using the given password. +func Password(secret string) AuthMethod { + return passwordCallback(func() (string, error) { return secret, nil }) +} + +// PasswordCallback returns an AuthMethod that uses a callback for +// fetching a password. +func PasswordCallback(prompt func() (secret string, err error)) AuthMethod { + return passwordCallback(prompt) +} + +type publickeyAuthMsg struct { + User string `sshtype:"50"` + Service string + Method string + // HasSig indicates to the receiver packet that the auth request is signed and + // should be used for authentication of the request. + HasSig bool + Algoname string + PubKey []byte + // Sig is tagged with "rest" so Marshal will exclude it during + // validateKey + Sig []byte `ssh:"rest"` +} + +// publicKeyCallback is an AuthMethod that uses a set of key +// pairs for authentication. +type publicKeyCallback func() ([]Signer, error) + +func (cb publicKeyCallback) method() string { + return "publickey" +} + +func (cb publicKeyCallback) auth(session []byte, user string, c packetConn, rand io.Reader) (authResult, []string, error) { + // Authentication is performed by sending an enquiry to test if a key is + // acceptable to the remote. If the key is acceptable, the client will + // attempt to authenticate with the valid key. If not the client will repeat + // the process with the remaining keys. + + signers, err := cb() + if err != nil { + return authFailure, nil, err + } + var methods []string + for _, signer := range signers { + ok, err := validateKey(signer.PublicKey(), user, c) + if err != nil { + return authFailure, nil, err + } + if !ok { + continue + } + + pub := signer.PublicKey() + pubKey := pub.Marshal() + sign, err := signer.Sign(rand, buildDataSignedForAuth(session, userAuthRequestMsg{ + User: user, + Service: serviceSSH, + Method: cb.method(), + }, []byte(pub.Type()), pubKey)) + if err != nil { + return authFailure, nil, err + } + + // manually wrap the serialized signature in a string + s := Marshal(sign) + sig := make([]byte, stringLength(len(s))) + marshalString(sig, s) + msg := publickeyAuthMsg{ + User: user, + Service: serviceSSH, + Method: cb.method(), + HasSig: true, + Algoname: pub.Type(), + PubKey: pubKey, + Sig: sig, + } + p := Marshal(&msg) + if err := c.writePacket(p); err != nil { + return authFailure, nil, err + } + var success authResult + success, methods, err = handleAuthResponse(c) + if err != nil { + return authFailure, nil, err + } + + // If authentication succeeds or the list of available methods does not + // contain the "publickey" method, do not attempt to authenticate with any + // other keys. According to RFC 4252 Section 7, the latter can occur when + // additional authentication methods are required. + if success == authSuccess || !containsMethod(methods, cb.method()) { + return success, methods, err + } + } + + return authFailure, methods, nil +} + +func containsMethod(methods []string, method string) bool { + for _, m := range methods { + if m == method { + return true + } + } + + return false +} + +// validateKey validates the key provided is acceptable to the server. +func validateKey(key PublicKey, user string, c packetConn) (bool, error) { + pubKey := key.Marshal() + msg := publickeyAuthMsg{ + User: user, + Service: serviceSSH, + Method: "publickey", + HasSig: false, + Algoname: key.Type(), + PubKey: pubKey, + } + if err := c.writePacket(Marshal(&msg)); err != nil { + return false, err + } + + return confirmKeyAck(key, c) +} + +func confirmKeyAck(key PublicKey, c packetConn) (bool, error) { + pubKey := key.Marshal() + algoname := key.Type() + + for { + packet, err := c.readPacket() + if err != nil { + return false, err + } + switch packet[0] { + case msgUserAuthBanner: + if err := handleBannerResponse(c, packet); err != nil { + return false, err + } + case msgUserAuthPubKeyOk: + var msg userAuthPubKeyOkMsg + if err := Unmarshal(packet, &msg); err != nil { + return false, err + } + if msg.Algo != algoname || !bytes.Equal(msg.PubKey, pubKey) { + return false, nil + } + return true, nil + case msgUserAuthFailure: + return false, nil + default: + return false, unexpectedMessageError(msgUserAuthSuccess, packet[0]) + } + } +} + +// PublicKeys returns an AuthMethod that uses the given key +// pairs. +func PublicKeys(signers ...Signer) AuthMethod { + return publicKeyCallback(func() ([]Signer, error) { return signers, nil }) +} + +// PublicKeysCallback returns an AuthMethod that runs the given +// function to obtain a list of key pairs. +func PublicKeysCallback(getSigners func() (signers []Signer, err error)) AuthMethod { + return publicKeyCallback(getSigners) +} + +// handleAuthResponse returns whether the preceding authentication request succeeded +// along with a list of remaining authentication methods to try next and +// an error if an unexpected response was received. +func handleAuthResponse(c packetConn) (authResult, []string, error) { + for { + packet, err := c.readPacket() + if err != nil { + return authFailure, nil, err + } + + switch packet[0] { + case msgUserAuthBanner: + if err := handleBannerResponse(c, packet); err != nil { + return authFailure, nil, err + } + case msgUserAuthFailure: + var msg userAuthFailureMsg + if err := Unmarshal(packet, &msg); err != nil { + return authFailure, nil, err + } + if msg.PartialSuccess { + return authPartialSuccess, msg.Methods, nil + } + return authFailure, msg.Methods, nil + case msgUserAuthSuccess: + return authSuccess, nil, nil + default: + return authFailure, nil, unexpectedMessageError(msgUserAuthSuccess, packet[0]) + } + } +} + +func handleBannerResponse(c packetConn, packet []byte) error { + var msg userAuthBannerMsg + if err := Unmarshal(packet, &msg); err != nil { + return err + } + + transport, ok := c.(*handshakeTransport) + if !ok { + return nil + } + + if transport.bannerCallback != nil { + return transport.bannerCallback(msg.Message) + } + + return nil +} + +// KeyboardInteractiveChallenge should print questions, optionally +// disabling echoing (e.g. for passwords), and return all the answers. +// Challenge may be called multiple times in a single session. After +// successful authentication, the server may send a challenge with no +// questions, for which the user and instruction messages should be +// printed. RFC 4256 section 3.3 details how the UI should behave for +// both CLI and GUI environments. +type KeyboardInteractiveChallenge func(user, instruction string, questions []string, echos []bool) (answers []string, err error) + +// KeyboardInteractive returns an AuthMethod using a prompt/response +// sequence controlled by the server. +func KeyboardInteractive(challenge KeyboardInteractiveChallenge) AuthMethod { + return challenge +} + +func (cb KeyboardInteractiveChallenge) method() string { + return "keyboard-interactive" +} + +func (cb KeyboardInteractiveChallenge) auth(session []byte, user string, c packetConn, rand io.Reader) (authResult, []string, error) { + type initiateMsg struct { + User string `sshtype:"50"` + Service string + Method string + Language string + Submethods string + } + + if err := c.writePacket(Marshal(&initiateMsg{ + User: user, + Service: serviceSSH, + Method: "keyboard-interactive", + })); err != nil { + return authFailure, nil, err + } + + for { + packet, err := c.readPacket() + if err != nil { + return authFailure, nil, err + } + + // like handleAuthResponse, but with less options. + switch packet[0] { + case msgUserAuthBanner: + if err := handleBannerResponse(c, packet); err != nil { + return authFailure, nil, err + } + continue + case msgUserAuthInfoRequest: + // OK + case msgUserAuthFailure: + var msg userAuthFailureMsg + if err := Unmarshal(packet, &msg); err != nil { + return authFailure, nil, err + } + if msg.PartialSuccess { + return authPartialSuccess, msg.Methods, nil + } + return authFailure, msg.Methods, nil + case msgUserAuthSuccess: + return authSuccess, nil, nil + default: + return authFailure, nil, unexpectedMessageError(msgUserAuthInfoRequest, packet[0]) + } + + var msg userAuthInfoRequestMsg + if err := Unmarshal(packet, &msg); err != nil { + return authFailure, nil, err + } + + // Manually unpack the prompt/echo pairs. + rest := msg.Prompts + var prompts []string + var echos []bool + for i := 0; i < int(msg.NumPrompts); i++ { + prompt, r, ok := parseString(rest) + if !ok || len(r) == 0 { + return authFailure, nil, errors.New("ssh: prompt format error") + } + prompts = append(prompts, string(prompt)) + echos = append(echos, r[0] != 0) + rest = r[1:] + } + + if len(rest) != 0 { + return authFailure, nil, errors.New("ssh: extra data following keyboard-interactive pairs") + } + + answers, err := cb(msg.User, msg.Instruction, prompts, echos) + if err != nil { + return authFailure, nil, err + } + + if len(answers) != len(prompts) { + return authFailure, nil, errors.New("ssh: not enough answers from keyboard-interactive callback") + } + responseLength := 1 + 4 + for _, a := range answers { + responseLength += stringLength(len(a)) + } + serialized := make([]byte, responseLength) + p := serialized + p[0] = msgUserAuthInfoResponse + p = p[1:] + p = marshalUint32(p, uint32(len(answers))) + for _, a := range answers { + p = marshalString(p, []byte(a)) + } + + if err := c.writePacket(serialized); err != nil { + return authFailure, nil, err + } + } +} + +type retryableAuthMethod struct { + authMethod AuthMethod + maxTries int +} + +func (r *retryableAuthMethod) auth(session []byte, user string, c packetConn, rand io.Reader) (ok authResult, methods []string, err error) { + for i := 0; r.maxTries <= 0 || i < r.maxTries; i++ { + ok, methods, err = r.authMethod.auth(session, user, c, rand) + if ok != authFailure || err != nil { // either success, partial success or error terminate + return ok, methods, err + } + } + return ok, methods, err +} + +func (r *retryableAuthMethod) method() string { + return r.authMethod.method() +} + +// RetryableAuthMethod is a decorator for other auth methods enabling them to +// be retried up to maxTries before considering that AuthMethod itself failed. +// If maxTries is <= 0, will retry indefinitely +// +// This is useful for interactive clients using challenge/response type +// authentication (e.g. Keyboard-Interactive, Password, etc) where the user +// could mistype their response resulting in the server issuing a +// SSH_MSG_USERAUTH_FAILURE (rfc4252 #8 [password] and rfc4256 #3.4 +// [keyboard-interactive]); Without this decorator, the non-retryable +// AuthMethod would be removed from future consideration, and never tried again +// (and so the user would never be able to retry their entry). +func RetryableAuthMethod(auth AuthMethod, maxTries int) AuthMethod { + return &retryableAuthMethod{authMethod: auth, maxTries: maxTries} +} diff --git a/vendor/golang.org/x/crypto/ssh/common.go b/vendor/golang.org/x/crypto/ssh/common.go new file mode 100644 index 000000000..04f3620b3 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/common.go @@ -0,0 +1,383 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto" + "crypto/rand" + "fmt" + "io" + "math" + "sync" + + _ "crypto/sha1" + _ "crypto/sha256" + _ "crypto/sha512" +) + +// These are string constants in the SSH protocol. +const ( + compressionNone = "none" + serviceUserAuth = "ssh-userauth" + serviceSSH = "ssh-connection" +) + +// supportedCiphers lists ciphers we support but might not recommend. +var supportedCiphers = []string{ + "aes128-ctr", "aes192-ctr", "aes256-ctr", + "aes128-gcm@openssh.com", + chacha20Poly1305ID, + "arcfour256", "arcfour128", "arcfour", + aes128cbcID, + tripledescbcID, +} + +// preferredCiphers specifies the default preference for ciphers. +var preferredCiphers = []string{ + "aes128-gcm@openssh.com", + chacha20Poly1305ID, + "aes128-ctr", "aes192-ctr", "aes256-ctr", +} + +// supportedKexAlgos specifies the supported key-exchange algorithms in +// preference order. +var supportedKexAlgos = []string{ + kexAlgoCurve25519SHA256, + // P384 and P521 are not constant-time yet, but since we don't + // reuse ephemeral keys, using them for ECDH should be OK. + kexAlgoECDH256, kexAlgoECDH384, kexAlgoECDH521, + kexAlgoDH14SHA1, kexAlgoDH1SHA1, +} + +// supportedHostKeyAlgos specifies the supported host-key algorithms (i.e. methods +// of authenticating servers) in preference order. +var supportedHostKeyAlgos = []string{ + CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01, + CertAlgoECDSA384v01, CertAlgoECDSA521v01, CertAlgoED25519v01, + + KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521, + KeyAlgoRSA, KeyAlgoDSA, + + KeyAlgoED25519, +} + +// supportedMACs specifies a default set of MAC algorithms in preference order. +// This is based on RFC 4253, section 6.4, but with hmac-md5 variants removed +// because they have reached the end of their useful life. +var supportedMACs = []string{ + "hmac-sha2-256-etm@openssh.com", "hmac-sha2-256", "hmac-sha1", "hmac-sha1-96", +} + +var supportedCompressions = []string{compressionNone} + +// hashFuncs keeps the mapping of supported algorithms to their respective +// hashes needed for signature verification. +var hashFuncs = map[string]crypto.Hash{ + KeyAlgoRSA: crypto.SHA1, + KeyAlgoDSA: crypto.SHA1, + KeyAlgoECDSA256: crypto.SHA256, + KeyAlgoECDSA384: crypto.SHA384, + KeyAlgoECDSA521: crypto.SHA512, + CertAlgoRSAv01: crypto.SHA1, + CertAlgoDSAv01: crypto.SHA1, + CertAlgoECDSA256v01: crypto.SHA256, + CertAlgoECDSA384v01: crypto.SHA384, + CertAlgoECDSA521v01: crypto.SHA512, +} + +// unexpectedMessageError results when the SSH message that we received didn't +// match what we wanted. +func unexpectedMessageError(expected, got uint8) error { + return fmt.Errorf("ssh: unexpected message type %d (expected %d)", got, expected) +} + +// parseError results from a malformed SSH message. +func parseError(tag uint8) error { + return fmt.Errorf("ssh: parse error in message type %d", tag) +} + +func findCommon(what string, client []string, server []string) (common string, err error) { + for _, c := range client { + for _, s := range server { + if c == s { + return c, nil + } + } + } + return "", fmt.Errorf("ssh: no common algorithm for %s; client offered: %v, server offered: %v", what, client, server) +} + +type directionAlgorithms struct { + Cipher string + MAC string + Compression string +} + +// rekeyBytes returns a rekeying intervals in bytes. +func (a *directionAlgorithms) rekeyBytes() int64 { + // According to RFC4344 block ciphers should rekey after + // 2^(BLOCKSIZE/4) blocks. For all AES flavors BLOCKSIZE is + // 128. + switch a.Cipher { + case "aes128-ctr", "aes192-ctr", "aes256-ctr", gcmCipherID, aes128cbcID: + return 16 * (1 << 32) + + } + + // For others, stick with RFC4253 recommendation to rekey after 1 Gb of data. + return 1 << 30 +} + +type algorithms struct { + kex string + hostKey string + w directionAlgorithms + r directionAlgorithms +} + +func findAgreedAlgorithms(clientKexInit, serverKexInit *kexInitMsg) (algs *algorithms, err error) { + result := &algorithms{} + + result.kex, err = findCommon("key exchange", clientKexInit.KexAlgos, serverKexInit.KexAlgos) + if err != nil { + return + } + + result.hostKey, err = findCommon("host key", clientKexInit.ServerHostKeyAlgos, serverKexInit.ServerHostKeyAlgos) + if err != nil { + return + } + + result.w.Cipher, err = findCommon("client to server cipher", clientKexInit.CiphersClientServer, serverKexInit.CiphersClientServer) + if err != nil { + return + } + + result.r.Cipher, err = findCommon("server to client cipher", clientKexInit.CiphersServerClient, serverKexInit.CiphersServerClient) + if err != nil { + return + } + + result.w.MAC, err = findCommon("client to server MAC", clientKexInit.MACsClientServer, serverKexInit.MACsClientServer) + if err != nil { + return + } + + result.r.MAC, err = findCommon("server to client MAC", clientKexInit.MACsServerClient, serverKexInit.MACsServerClient) + if err != nil { + return + } + + result.w.Compression, err = findCommon("client to server compression", clientKexInit.CompressionClientServer, serverKexInit.CompressionClientServer) + if err != nil { + return + } + + result.r.Compression, err = findCommon("server to client compression", clientKexInit.CompressionServerClient, serverKexInit.CompressionServerClient) + if err != nil { + return + } + + return result, nil +} + +// If rekeythreshold is too small, we can't make any progress sending +// stuff. +const minRekeyThreshold uint64 = 256 + +// Config contains configuration data common to both ServerConfig and +// ClientConfig. +type Config struct { + // Rand provides the source of entropy for cryptographic + // primitives. If Rand is nil, the cryptographic random reader + // in package crypto/rand will be used. + Rand io.Reader + + // The maximum number of bytes sent or received after which a + // new key is negotiated. It must be at least 256. If + // unspecified, a size suitable for the chosen cipher is used. + RekeyThreshold uint64 + + // The allowed key exchanges algorithms. If unspecified then a + // default set of algorithms is used. + KeyExchanges []string + + // The allowed cipher algorithms. If unspecified then a sensible + // default is used. + Ciphers []string + + // The allowed MAC algorithms. If unspecified then a sensible default + // is used. + MACs []string +} + +// SetDefaults sets sensible values for unset fields in config. This is +// exported for testing: Configs passed to SSH functions are copied and have +// default values set automatically. +func (c *Config) SetDefaults() { + if c.Rand == nil { + c.Rand = rand.Reader + } + if c.Ciphers == nil { + c.Ciphers = preferredCiphers + } + var ciphers []string + for _, c := range c.Ciphers { + if cipherModes[c] != nil { + // reject the cipher if we have no cipherModes definition + ciphers = append(ciphers, c) + } + } + c.Ciphers = ciphers + + if c.KeyExchanges == nil { + c.KeyExchanges = supportedKexAlgos + } + + if c.MACs == nil { + c.MACs = supportedMACs + } + + if c.RekeyThreshold == 0 { + // cipher specific default + } else if c.RekeyThreshold < minRekeyThreshold { + c.RekeyThreshold = minRekeyThreshold + } else if c.RekeyThreshold >= math.MaxInt64 { + // Avoid weirdness if somebody uses -1 as a threshold. + c.RekeyThreshold = math.MaxInt64 + } +} + +// buildDataSignedForAuth returns the data that is signed in order to prove +// possession of a private key. See RFC 4252, section 7. +func buildDataSignedForAuth(sessionID []byte, req userAuthRequestMsg, algo, pubKey []byte) []byte { + data := struct { + Session []byte + Type byte + User string + Service string + Method string + Sign bool + Algo []byte + PubKey []byte + }{ + sessionID, + msgUserAuthRequest, + req.User, + req.Service, + req.Method, + true, + algo, + pubKey, + } + return Marshal(data) +} + +func appendU16(buf []byte, n uint16) []byte { + return append(buf, byte(n>>8), byte(n)) +} + +func appendU32(buf []byte, n uint32) []byte { + return append(buf, byte(n>>24), byte(n>>16), byte(n>>8), byte(n)) +} + +func appendU64(buf []byte, n uint64) []byte { + return append(buf, + byte(n>>56), byte(n>>48), byte(n>>40), byte(n>>32), + byte(n>>24), byte(n>>16), byte(n>>8), byte(n)) +} + +func appendInt(buf []byte, n int) []byte { + return appendU32(buf, uint32(n)) +} + +func appendString(buf []byte, s string) []byte { + buf = appendU32(buf, uint32(len(s))) + buf = append(buf, s...) + return buf +} + +func appendBool(buf []byte, b bool) []byte { + if b { + return append(buf, 1) + } + return append(buf, 0) +} + +// newCond is a helper to hide the fact that there is no usable zero +// value for sync.Cond. +func newCond() *sync.Cond { return sync.NewCond(new(sync.Mutex)) } + +// window represents the buffer available to clients +// wishing to write to a channel. +type window struct { + *sync.Cond + win uint32 // RFC 4254 5.2 says the window size can grow to 2^32-1 + writeWaiters int + closed bool +} + +// add adds win to the amount of window available +// for consumers. +func (w *window) add(win uint32) bool { + // a zero sized window adjust is a noop. + if win == 0 { + return true + } + w.L.Lock() + if w.win+win < win { + w.L.Unlock() + return false + } + w.win += win + // It is unusual that multiple goroutines would be attempting to reserve + // window space, but not guaranteed. Use broadcast to notify all waiters + // that additional window is available. + w.Broadcast() + w.L.Unlock() + return true +} + +// close sets the window to closed, so all reservations fail +// immediately. +func (w *window) close() { + w.L.Lock() + w.closed = true + w.Broadcast() + w.L.Unlock() +} + +// reserve reserves win from the available window capacity. +// If no capacity remains, reserve will block. reserve may +// return less than requested. +func (w *window) reserve(win uint32) (uint32, error) { + var err error + w.L.Lock() + w.writeWaiters++ + w.Broadcast() + for w.win == 0 && !w.closed { + w.Wait() + } + w.writeWaiters-- + if w.win < win { + win = w.win + } + w.win -= win + if w.closed { + err = io.EOF + } + w.L.Unlock() + return win, err +} + +// waitWriterBlocked waits until some goroutine is blocked for further +// writes. It is used in tests only. +func (w *window) waitWriterBlocked() { + w.Cond.L.Lock() + for w.writeWaiters == 0 { + w.Cond.Wait() + } + w.Cond.L.Unlock() +} diff --git a/vendor/golang.org/x/crypto/ssh/connection.go b/vendor/golang.org/x/crypto/ssh/connection.go new file mode 100644 index 000000000..fd6b0681b --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/connection.go @@ -0,0 +1,143 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "fmt" + "net" +) + +// OpenChannelError is returned if the other side rejects an +// OpenChannel request. +type OpenChannelError struct { + Reason RejectionReason + Message string +} + +func (e *OpenChannelError) Error() string { + return fmt.Sprintf("ssh: rejected: %s (%s)", e.Reason, e.Message) +} + +// ConnMetadata holds metadata for the connection. +type ConnMetadata interface { + // User returns the user ID for this connection. + User() string + + // SessionID returns the session hash, also denoted by H. + SessionID() []byte + + // ClientVersion returns the client's version string as hashed + // into the session ID. + ClientVersion() []byte + + // ServerVersion returns the server's version string as hashed + // into the session ID. + ServerVersion() []byte + + // RemoteAddr returns the remote address for this connection. + RemoteAddr() net.Addr + + // LocalAddr returns the local address for this connection. + LocalAddr() net.Addr +} + +// Conn represents an SSH connection for both server and client roles. +// Conn is the basis for implementing an application layer, such +// as ClientConn, which implements the traditional shell access for +// clients. +type Conn interface { + ConnMetadata + + // SendRequest sends a global request, and returns the + // reply. If wantReply is true, it returns the response status + // and payload. See also RFC4254, section 4. + SendRequest(name string, wantReply bool, payload []byte) (bool, []byte, error) + + // OpenChannel tries to open an channel. If the request is + // rejected, it returns *OpenChannelError. On success it returns + // the SSH Channel and a Go channel for incoming, out-of-band + // requests. The Go channel must be serviced, or the + // connection will hang. + OpenChannel(name string, data []byte) (Channel, <-chan *Request, error) + + // Close closes the underlying network connection + Close() error + + // Wait blocks until the connection has shut down, and returns the + // error causing the shutdown. + Wait() error + + // TODO(hanwen): consider exposing: + // RequestKeyChange + // Disconnect +} + +// DiscardRequests consumes and rejects all requests from the +// passed-in channel. +func DiscardRequests(in <-chan *Request) { + for req := range in { + if req.WantReply { + req.Reply(false, nil) + } + } +} + +// A connection represents an incoming connection. +type connection struct { + transport *handshakeTransport + sshConn + + // The connection protocol. + *mux +} + +func (c *connection) Close() error { + return c.sshConn.conn.Close() +} + +// sshconn provides net.Conn metadata, but disallows direct reads and +// writes. +type sshConn struct { + conn net.Conn + + user string + sessionID []byte + clientVersion []byte + serverVersion []byte +} + +func dup(src []byte) []byte { + dst := make([]byte, len(src)) + copy(dst, src) + return dst +} + +func (c *sshConn) User() string { + return c.user +} + +func (c *sshConn) RemoteAddr() net.Addr { + return c.conn.RemoteAddr() +} + +func (c *sshConn) Close() error { + return c.conn.Close() +} + +func (c *sshConn) LocalAddr() net.Addr { + return c.conn.LocalAddr() +} + +func (c *sshConn) SessionID() []byte { + return dup(c.sessionID) +} + +func (c *sshConn) ClientVersion() []byte { + return dup(c.clientVersion) +} + +func (c *sshConn) ServerVersion() []byte { + return dup(c.serverVersion) +} diff --git a/vendor/golang.org/x/crypto/ssh/doc.go b/vendor/golang.org/x/crypto/ssh/doc.go new file mode 100644 index 000000000..67b7322c0 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/doc.go @@ -0,0 +1,21 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package ssh implements an SSH client and server. + +SSH is a transport security protocol, an authentication protocol and a +family of application protocols. The most typical application level +protocol is a remote shell and this is specifically implemented. However, +the multiplexed nature of SSH is exposed to users that wish to support +others. + +References: + [PROTOCOL.certkeys]: http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/PROTOCOL.certkeys?rev=HEAD + [SSH-PARAMETERS]: http://www.iana.org/assignments/ssh-parameters/ssh-parameters.xml#ssh-parameters-1 + +This package does not fall under the stability promise of the Go language itself, +so its API may be changed when pressing needs arise. +*/ +package ssh // import "golang.org/x/crypto/ssh" diff --git a/vendor/golang.org/x/crypto/ssh/handshake.go b/vendor/golang.org/x/crypto/ssh/handshake.go new file mode 100644 index 000000000..4f7912ecd --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/handshake.go @@ -0,0 +1,646 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto/rand" + "errors" + "fmt" + "io" + "log" + "net" + "sync" +) + +// debugHandshake, if set, prints messages sent and received. Key +// exchange messages are printed as if DH were used, so the debug +// messages are wrong when using ECDH. +const debugHandshake = false + +// chanSize sets the amount of buffering SSH connections. This is +// primarily for testing: setting chanSize=0 uncovers deadlocks more +// quickly. +const chanSize = 16 + +// keyingTransport is a packet based transport that supports key +// changes. It need not be thread-safe. It should pass through +// msgNewKeys in both directions. +type keyingTransport interface { + packetConn + + // prepareKeyChange sets up a key change. The key change for a + // direction will be effected if a msgNewKeys message is sent + // or received. + prepareKeyChange(*algorithms, *kexResult) error +} + +// handshakeTransport implements rekeying on top of a keyingTransport +// and offers a thread-safe writePacket() interface. +type handshakeTransport struct { + conn keyingTransport + config *Config + + serverVersion []byte + clientVersion []byte + + // hostKeys is non-empty if we are the server. In that case, + // it contains all host keys that can be used to sign the + // connection. + hostKeys []Signer + + // hostKeyAlgorithms is non-empty if we are the client. In that case, + // we accept these key types from the server as host key. + hostKeyAlgorithms []string + + // On read error, incoming is closed, and readError is set. + incoming chan []byte + readError error + + mu sync.Mutex + writeError error + sentInitPacket []byte + sentInitMsg *kexInitMsg + pendingPackets [][]byte // Used when a key exchange is in progress. + + // If the read loop wants to schedule a kex, it pings this + // channel, and the write loop will send out a kex + // message. + requestKex chan struct{} + + // If the other side requests or confirms a kex, its kexInit + // packet is sent here for the write loop to find it. + startKex chan *pendingKex + + // data for host key checking + hostKeyCallback HostKeyCallback + dialAddress string + remoteAddr net.Addr + + // bannerCallback is non-empty if we are the client and it has been set in + // ClientConfig. In that case it is called during the user authentication + // dance to handle a custom server's message. + bannerCallback BannerCallback + + // Algorithms agreed in the last key exchange. + algorithms *algorithms + + readPacketsLeft uint32 + readBytesLeft int64 + + writePacketsLeft uint32 + writeBytesLeft int64 + + // The session ID or nil if first kex did not complete yet. + sessionID []byte +} + +type pendingKex struct { + otherInit []byte + done chan error +} + +func newHandshakeTransport(conn keyingTransport, config *Config, clientVersion, serverVersion []byte) *handshakeTransport { + t := &handshakeTransport{ + conn: conn, + serverVersion: serverVersion, + clientVersion: clientVersion, + incoming: make(chan []byte, chanSize), + requestKex: make(chan struct{}, 1), + startKex: make(chan *pendingKex, 1), + + config: config, + } + t.resetReadThresholds() + t.resetWriteThresholds() + + // We always start with a mandatory key exchange. + t.requestKex <- struct{}{} + return t +} + +func newClientTransport(conn keyingTransport, clientVersion, serverVersion []byte, config *ClientConfig, dialAddr string, addr net.Addr) *handshakeTransport { + t := newHandshakeTransport(conn, &config.Config, clientVersion, serverVersion) + t.dialAddress = dialAddr + t.remoteAddr = addr + t.hostKeyCallback = config.HostKeyCallback + t.bannerCallback = config.BannerCallback + if config.HostKeyAlgorithms != nil { + t.hostKeyAlgorithms = config.HostKeyAlgorithms + } else { + t.hostKeyAlgorithms = supportedHostKeyAlgos + } + go t.readLoop() + go t.kexLoop() + return t +} + +func newServerTransport(conn keyingTransport, clientVersion, serverVersion []byte, config *ServerConfig) *handshakeTransport { + t := newHandshakeTransport(conn, &config.Config, clientVersion, serverVersion) + t.hostKeys = config.hostKeys + go t.readLoop() + go t.kexLoop() + return t +} + +func (t *handshakeTransport) getSessionID() []byte { + return t.sessionID +} + +// waitSession waits for the session to be established. This should be +// the first thing to call after instantiating handshakeTransport. +func (t *handshakeTransport) waitSession() error { + p, err := t.readPacket() + if err != nil { + return err + } + if p[0] != msgNewKeys { + return fmt.Errorf("ssh: first packet should be msgNewKeys") + } + + return nil +} + +func (t *handshakeTransport) id() string { + if len(t.hostKeys) > 0 { + return "server" + } + return "client" +} + +func (t *handshakeTransport) printPacket(p []byte, write bool) { + action := "got" + if write { + action = "sent" + } + + if p[0] == msgChannelData || p[0] == msgChannelExtendedData { + log.Printf("%s %s data (packet %d bytes)", t.id(), action, len(p)) + } else { + msg, err := decode(p) + log.Printf("%s %s %T %v (%v)", t.id(), action, msg, msg, err) + } +} + +func (t *handshakeTransport) readPacket() ([]byte, error) { + p, ok := <-t.incoming + if !ok { + return nil, t.readError + } + return p, nil +} + +func (t *handshakeTransport) readLoop() { + first := true + for { + p, err := t.readOnePacket(first) + first = false + if err != nil { + t.readError = err + close(t.incoming) + break + } + if p[0] == msgIgnore || p[0] == msgDebug { + continue + } + t.incoming <- p + } + + // Stop writers too. + t.recordWriteError(t.readError) + + // Unblock the writer should it wait for this. + close(t.startKex) + + // Don't close t.requestKex; it's also written to from writePacket. +} + +func (t *handshakeTransport) pushPacket(p []byte) error { + if debugHandshake { + t.printPacket(p, true) + } + return t.conn.writePacket(p) +} + +func (t *handshakeTransport) getWriteError() error { + t.mu.Lock() + defer t.mu.Unlock() + return t.writeError +} + +func (t *handshakeTransport) recordWriteError(err error) { + t.mu.Lock() + defer t.mu.Unlock() + if t.writeError == nil && err != nil { + t.writeError = err + } +} + +func (t *handshakeTransport) requestKeyExchange() { + select { + case t.requestKex <- struct{}{}: + default: + // something already requested a kex, so do nothing. + } +} + +func (t *handshakeTransport) resetWriteThresholds() { + t.writePacketsLeft = packetRekeyThreshold + if t.config.RekeyThreshold > 0 { + t.writeBytesLeft = int64(t.config.RekeyThreshold) + } else if t.algorithms != nil { + t.writeBytesLeft = t.algorithms.w.rekeyBytes() + } else { + t.writeBytesLeft = 1 << 30 + } +} + +func (t *handshakeTransport) kexLoop() { + +write: + for t.getWriteError() == nil { + var request *pendingKex + var sent bool + + for request == nil || !sent { + var ok bool + select { + case request, ok = <-t.startKex: + if !ok { + break write + } + case <-t.requestKex: + break + } + + if !sent { + if err := t.sendKexInit(); err != nil { + t.recordWriteError(err) + break + } + sent = true + } + } + + if err := t.getWriteError(); err != nil { + if request != nil { + request.done <- err + } + break + } + + // We're not servicing t.requestKex, but that is OK: + // we never block on sending to t.requestKex. + + // We're not servicing t.startKex, but the remote end + // has just sent us a kexInitMsg, so it can't send + // another key change request, until we close the done + // channel on the pendingKex request. + + err := t.enterKeyExchange(request.otherInit) + + t.mu.Lock() + t.writeError = err + t.sentInitPacket = nil + t.sentInitMsg = nil + + t.resetWriteThresholds() + + // we have completed the key exchange. Since the + // reader is still blocked, it is safe to clear out + // the requestKex channel. This avoids the situation + // where: 1) we consumed our own request for the + // initial kex, and 2) the kex from the remote side + // caused another send on the requestKex channel, + clear: + for { + select { + case <-t.requestKex: + // + default: + break clear + } + } + + request.done <- t.writeError + + // kex finished. Push packets that we received while + // the kex was in progress. Don't look at t.startKex + // and don't increment writtenSinceKex: if we trigger + // another kex while we are still busy with the last + // one, things will become very confusing. + for _, p := range t.pendingPackets { + t.writeError = t.pushPacket(p) + if t.writeError != nil { + break + } + } + t.pendingPackets = t.pendingPackets[:0] + t.mu.Unlock() + } + + // drain startKex channel. We don't service t.requestKex + // because nobody does blocking sends there. + go func() { + for init := range t.startKex { + init.done <- t.writeError + } + }() + + // Unblock reader. + t.conn.Close() +} + +// The protocol uses uint32 for packet counters, so we can't let them +// reach 1<<32. We will actually read and write more packets than +// this, though: the other side may send more packets, and after we +// hit this limit on writing we will send a few more packets for the +// key exchange itself. +const packetRekeyThreshold = (1 << 31) + +func (t *handshakeTransport) resetReadThresholds() { + t.readPacketsLeft = packetRekeyThreshold + if t.config.RekeyThreshold > 0 { + t.readBytesLeft = int64(t.config.RekeyThreshold) + } else if t.algorithms != nil { + t.readBytesLeft = t.algorithms.r.rekeyBytes() + } else { + t.readBytesLeft = 1 << 30 + } +} + +func (t *handshakeTransport) readOnePacket(first bool) ([]byte, error) { + p, err := t.conn.readPacket() + if err != nil { + return nil, err + } + + if t.readPacketsLeft > 0 { + t.readPacketsLeft-- + } else { + t.requestKeyExchange() + } + + if t.readBytesLeft > 0 { + t.readBytesLeft -= int64(len(p)) + } else { + t.requestKeyExchange() + } + + if debugHandshake { + t.printPacket(p, false) + } + + if first && p[0] != msgKexInit { + return nil, fmt.Errorf("ssh: first packet should be msgKexInit") + } + + if p[0] != msgKexInit { + return p, nil + } + + firstKex := t.sessionID == nil + + kex := pendingKex{ + done: make(chan error, 1), + otherInit: p, + } + t.startKex <- &kex + err = <-kex.done + + if debugHandshake { + log.Printf("%s exited key exchange (first %v), err %v", t.id(), firstKex, err) + } + + if err != nil { + return nil, err + } + + t.resetReadThresholds() + + // By default, a key exchange is hidden from higher layers by + // translating it into msgIgnore. + successPacket := []byte{msgIgnore} + if firstKex { + // sendKexInit() for the first kex waits for + // msgNewKeys so the authentication process is + // guaranteed to happen over an encrypted transport. + successPacket = []byte{msgNewKeys} + } + + return successPacket, nil +} + +// sendKexInit sends a key change message. +func (t *handshakeTransport) sendKexInit() error { + t.mu.Lock() + defer t.mu.Unlock() + if t.sentInitMsg != nil { + // kexInits may be sent either in response to the other side, + // or because our side wants to initiate a key change, so we + // may have already sent a kexInit. In that case, don't send a + // second kexInit. + return nil + } + + msg := &kexInitMsg{ + KexAlgos: t.config.KeyExchanges, + CiphersClientServer: t.config.Ciphers, + CiphersServerClient: t.config.Ciphers, + MACsClientServer: t.config.MACs, + MACsServerClient: t.config.MACs, + CompressionClientServer: supportedCompressions, + CompressionServerClient: supportedCompressions, + } + io.ReadFull(rand.Reader, msg.Cookie[:]) + + if len(t.hostKeys) > 0 { + for _, k := range t.hostKeys { + msg.ServerHostKeyAlgos = append( + msg.ServerHostKeyAlgos, k.PublicKey().Type()) + } + } else { + msg.ServerHostKeyAlgos = t.hostKeyAlgorithms + } + packet := Marshal(msg) + + // writePacket destroys the contents, so save a copy. + packetCopy := make([]byte, len(packet)) + copy(packetCopy, packet) + + if err := t.pushPacket(packetCopy); err != nil { + return err + } + + t.sentInitMsg = msg + t.sentInitPacket = packet + + return nil +} + +func (t *handshakeTransport) writePacket(p []byte) error { + switch p[0] { + case msgKexInit: + return errors.New("ssh: only handshakeTransport can send kexInit") + case msgNewKeys: + return errors.New("ssh: only handshakeTransport can send newKeys") + } + + t.mu.Lock() + defer t.mu.Unlock() + if t.writeError != nil { + return t.writeError + } + + if t.sentInitMsg != nil { + // Copy the packet so the writer can reuse the buffer. + cp := make([]byte, len(p)) + copy(cp, p) + t.pendingPackets = append(t.pendingPackets, cp) + return nil + } + + if t.writeBytesLeft > 0 { + t.writeBytesLeft -= int64(len(p)) + } else { + t.requestKeyExchange() + } + + if t.writePacketsLeft > 0 { + t.writePacketsLeft-- + } else { + t.requestKeyExchange() + } + + if err := t.pushPacket(p); err != nil { + t.writeError = err + } + + return nil +} + +func (t *handshakeTransport) Close() error { + return t.conn.Close() +} + +func (t *handshakeTransport) enterKeyExchange(otherInitPacket []byte) error { + if debugHandshake { + log.Printf("%s entered key exchange", t.id()) + } + + otherInit := &kexInitMsg{} + if err := Unmarshal(otherInitPacket, otherInit); err != nil { + return err + } + + magics := handshakeMagics{ + clientVersion: t.clientVersion, + serverVersion: t.serverVersion, + clientKexInit: otherInitPacket, + serverKexInit: t.sentInitPacket, + } + + clientInit := otherInit + serverInit := t.sentInitMsg + if len(t.hostKeys) == 0 { + clientInit, serverInit = serverInit, clientInit + + magics.clientKexInit = t.sentInitPacket + magics.serverKexInit = otherInitPacket + } + + var err error + t.algorithms, err = findAgreedAlgorithms(clientInit, serverInit) + if err != nil { + return err + } + + // We don't send FirstKexFollows, but we handle receiving it. + // + // RFC 4253 section 7 defines the kex and the agreement method for + // first_kex_packet_follows. It states that the guessed packet + // should be ignored if the "kex algorithm and/or the host + // key algorithm is guessed wrong (server and client have + // different preferred algorithm), or if any of the other + // algorithms cannot be agreed upon". The other algorithms have + // already been checked above so the kex algorithm and host key + // algorithm are checked here. + if otherInit.FirstKexFollows && (clientInit.KexAlgos[0] != serverInit.KexAlgos[0] || clientInit.ServerHostKeyAlgos[0] != serverInit.ServerHostKeyAlgos[0]) { + // other side sent a kex message for the wrong algorithm, + // which we have to ignore. + if _, err := t.conn.readPacket(); err != nil { + return err + } + } + + kex, ok := kexAlgoMap[t.algorithms.kex] + if !ok { + return fmt.Errorf("ssh: unexpected key exchange algorithm %v", t.algorithms.kex) + } + + var result *kexResult + if len(t.hostKeys) > 0 { + result, err = t.server(kex, t.algorithms, &magics) + } else { + result, err = t.client(kex, t.algorithms, &magics) + } + + if err != nil { + return err + } + + if t.sessionID == nil { + t.sessionID = result.H + } + result.SessionID = t.sessionID + + if err := t.conn.prepareKeyChange(t.algorithms, result); err != nil { + return err + } + if err = t.conn.writePacket([]byte{msgNewKeys}); err != nil { + return err + } + if packet, err := t.conn.readPacket(); err != nil { + return err + } else if packet[0] != msgNewKeys { + return unexpectedMessageError(msgNewKeys, packet[0]) + } + + return nil +} + +func (t *handshakeTransport) server(kex kexAlgorithm, algs *algorithms, magics *handshakeMagics) (*kexResult, error) { + var hostKey Signer + for _, k := range t.hostKeys { + if algs.hostKey == k.PublicKey().Type() { + hostKey = k + } + } + + r, err := kex.Server(t.conn, t.config.Rand, magics, hostKey) + return r, err +} + +func (t *handshakeTransport) client(kex kexAlgorithm, algs *algorithms, magics *handshakeMagics) (*kexResult, error) { + result, err := kex.Client(t.conn, t.config.Rand, magics) + if err != nil { + return nil, err + } + + hostKey, err := ParsePublicKey(result.HostKey) + if err != nil { + return nil, err + } + + if err := verifyHostKeySignature(hostKey, result); err != nil { + return nil, err + } + + err = t.hostKeyCallback(t.dialAddress, t.remoteAddr, hostKey) + if err != nil { + return nil, err + } + + return result, nil +} diff --git a/vendor/golang.org/x/crypto/ssh/kex.go b/vendor/golang.org/x/crypto/ssh/kex.go new file mode 100644 index 000000000..f34bcc013 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/kex.go @@ -0,0 +1,540 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "crypto" + "crypto/ecdsa" + "crypto/elliptic" + "crypto/rand" + "crypto/subtle" + "errors" + "io" + "math/big" + + "golang.org/x/crypto/curve25519" +) + +const ( + kexAlgoDH1SHA1 = "diffie-hellman-group1-sha1" + kexAlgoDH14SHA1 = "diffie-hellman-group14-sha1" + kexAlgoECDH256 = "ecdh-sha2-nistp256" + kexAlgoECDH384 = "ecdh-sha2-nistp384" + kexAlgoECDH521 = "ecdh-sha2-nistp521" + kexAlgoCurve25519SHA256 = "curve25519-sha256@libssh.org" +) + +// kexResult captures the outcome of a key exchange. +type kexResult struct { + // Session hash. See also RFC 4253, section 8. + H []byte + + // Shared secret. See also RFC 4253, section 8. + K []byte + + // Host key as hashed into H. + HostKey []byte + + // Signature of H. + Signature []byte + + // A cryptographic hash function that matches the security + // level of the key exchange algorithm. It is used for + // calculating H, and for deriving keys from H and K. + Hash crypto.Hash + + // The session ID, which is the first H computed. This is used + // to derive key material inside the transport. + SessionID []byte +} + +// handshakeMagics contains data that is always included in the +// session hash. +type handshakeMagics struct { + clientVersion, serverVersion []byte + clientKexInit, serverKexInit []byte +} + +func (m *handshakeMagics) write(w io.Writer) { + writeString(w, m.clientVersion) + writeString(w, m.serverVersion) + writeString(w, m.clientKexInit) + writeString(w, m.serverKexInit) +} + +// kexAlgorithm abstracts different key exchange algorithms. +type kexAlgorithm interface { + // Server runs server-side key agreement, signing the result + // with a hostkey. + Server(p packetConn, rand io.Reader, magics *handshakeMagics, s Signer) (*kexResult, error) + + // Client runs the client-side key agreement. Caller is + // responsible for verifying the host key signature. + Client(p packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) +} + +// dhGroup is a multiplicative group suitable for implementing Diffie-Hellman key agreement. +type dhGroup struct { + g, p, pMinus1 *big.Int +} + +func (group *dhGroup) diffieHellman(theirPublic, myPrivate *big.Int) (*big.Int, error) { + if theirPublic.Cmp(bigOne) <= 0 || theirPublic.Cmp(group.pMinus1) >= 0 { + return nil, errors.New("ssh: DH parameter out of bounds") + } + return new(big.Int).Exp(theirPublic, myPrivate, group.p), nil +} + +func (group *dhGroup) Client(c packetConn, randSource io.Reader, magics *handshakeMagics) (*kexResult, error) { + hashFunc := crypto.SHA1 + + var x *big.Int + for { + var err error + if x, err = rand.Int(randSource, group.pMinus1); err != nil { + return nil, err + } + if x.Sign() > 0 { + break + } + } + + X := new(big.Int).Exp(group.g, x, group.p) + kexDHInit := kexDHInitMsg{ + X: X, + } + if err := c.writePacket(Marshal(&kexDHInit)); err != nil { + return nil, err + } + + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var kexDHReply kexDHReplyMsg + if err = Unmarshal(packet, &kexDHReply); err != nil { + return nil, err + } + + ki, err := group.diffieHellman(kexDHReply.Y, x) + if err != nil { + return nil, err + } + + h := hashFunc.New() + magics.write(h) + writeString(h, kexDHReply.HostKey) + writeInt(h, X) + writeInt(h, kexDHReply.Y) + K := make([]byte, intLength(ki)) + marshalInt(K, ki) + h.Write(K) + + return &kexResult{ + H: h.Sum(nil), + K: K, + HostKey: kexDHReply.HostKey, + Signature: kexDHReply.Signature, + Hash: crypto.SHA1, + }, nil +} + +func (group *dhGroup) Server(c packetConn, randSource io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { + hashFunc := crypto.SHA1 + packet, err := c.readPacket() + if err != nil { + return + } + var kexDHInit kexDHInitMsg + if err = Unmarshal(packet, &kexDHInit); err != nil { + return + } + + var y *big.Int + for { + if y, err = rand.Int(randSource, group.pMinus1); err != nil { + return + } + if y.Sign() > 0 { + break + } + } + + Y := new(big.Int).Exp(group.g, y, group.p) + ki, err := group.diffieHellman(kexDHInit.X, y) + if err != nil { + return nil, err + } + + hostKeyBytes := priv.PublicKey().Marshal() + + h := hashFunc.New() + magics.write(h) + writeString(h, hostKeyBytes) + writeInt(h, kexDHInit.X) + writeInt(h, Y) + + K := make([]byte, intLength(ki)) + marshalInt(K, ki) + h.Write(K) + + H := h.Sum(nil) + + // H is already a hash, but the hostkey signing will apply its + // own key-specific hash algorithm. + sig, err := signAndMarshal(priv, randSource, H) + if err != nil { + return nil, err + } + + kexDHReply := kexDHReplyMsg{ + HostKey: hostKeyBytes, + Y: Y, + Signature: sig, + } + packet = Marshal(&kexDHReply) + + err = c.writePacket(packet) + return &kexResult{ + H: H, + K: K, + HostKey: hostKeyBytes, + Signature: sig, + Hash: crypto.SHA1, + }, nil +} + +// ecdh performs Elliptic Curve Diffie-Hellman key exchange as +// described in RFC 5656, section 4. +type ecdh struct { + curve elliptic.Curve +} + +func (kex *ecdh) Client(c packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) { + ephKey, err := ecdsa.GenerateKey(kex.curve, rand) + if err != nil { + return nil, err + } + + kexInit := kexECDHInitMsg{ + ClientPubKey: elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y), + } + + serialized := Marshal(&kexInit) + if err := c.writePacket(serialized); err != nil { + return nil, err + } + + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var reply kexECDHReplyMsg + if err = Unmarshal(packet, &reply); err != nil { + return nil, err + } + + x, y, err := unmarshalECKey(kex.curve, reply.EphemeralPubKey) + if err != nil { + return nil, err + } + + // generate shared secret + secret, _ := kex.curve.ScalarMult(x, y, ephKey.D.Bytes()) + + h := ecHash(kex.curve).New() + magics.write(h) + writeString(h, reply.HostKey) + writeString(h, kexInit.ClientPubKey) + writeString(h, reply.EphemeralPubKey) + K := make([]byte, intLength(secret)) + marshalInt(K, secret) + h.Write(K) + + return &kexResult{ + H: h.Sum(nil), + K: K, + HostKey: reply.HostKey, + Signature: reply.Signature, + Hash: ecHash(kex.curve), + }, nil +} + +// unmarshalECKey parses and checks an EC key. +func unmarshalECKey(curve elliptic.Curve, pubkey []byte) (x, y *big.Int, err error) { + x, y = elliptic.Unmarshal(curve, pubkey) + if x == nil { + return nil, nil, errors.New("ssh: elliptic.Unmarshal failure") + } + if !validateECPublicKey(curve, x, y) { + return nil, nil, errors.New("ssh: public key not on curve") + } + return x, y, nil +} + +// validateECPublicKey checks that the point is a valid public key for +// the given curve. See [SEC1], 3.2.2 +func validateECPublicKey(curve elliptic.Curve, x, y *big.Int) bool { + if x.Sign() == 0 && y.Sign() == 0 { + return false + } + + if x.Cmp(curve.Params().P) >= 0 { + return false + } + + if y.Cmp(curve.Params().P) >= 0 { + return false + } + + if !curve.IsOnCurve(x, y) { + return false + } + + // We don't check if N * PubKey == 0, since + // + // - the NIST curves have cofactor = 1, so this is implicit. + // (We don't foresee an implementation that supports non NIST + // curves) + // + // - for ephemeral keys, we don't need to worry about small + // subgroup attacks. + return true +} + +func (kex *ecdh) Server(c packetConn, rand io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var kexECDHInit kexECDHInitMsg + if err = Unmarshal(packet, &kexECDHInit); err != nil { + return nil, err + } + + clientX, clientY, err := unmarshalECKey(kex.curve, kexECDHInit.ClientPubKey) + if err != nil { + return nil, err + } + + // We could cache this key across multiple users/multiple + // connection attempts, but the benefit is small. OpenSSH + // generates a new key for each incoming connection. + ephKey, err := ecdsa.GenerateKey(kex.curve, rand) + if err != nil { + return nil, err + } + + hostKeyBytes := priv.PublicKey().Marshal() + + serializedEphKey := elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y) + + // generate shared secret + secret, _ := kex.curve.ScalarMult(clientX, clientY, ephKey.D.Bytes()) + + h := ecHash(kex.curve).New() + magics.write(h) + writeString(h, hostKeyBytes) + writeString(h, kexECDHInit.ClientPubKey) + writeString(h, serializedEphKey) + + K := make([]byte, intLength(secret)) + marshalInt(K, secret) + h.Write(K) + + H := h.Sum(nil) + + // H is already a hash, but the hostkey signing will apply its + // own key-specific hash algorithm. + sig, err := signAndMarshal(priv, rand, H) + if err != nil { + return nil, err + } + + reply := kexECDHReplyMsg{ + EphemeralPubKey: serializedEphKey, + HostKey: hostKeyBytes, + Signature: sig, + } + + serialized := Marshal(&reply) + if err := c.writePacket(serialized); err != nil { + return nil, err + } + + return &kexResult{ + H: H, + K: K, + HostKey: reply.HostKey, + Signature: sig, + Hash: ecHash(kex.curve), + }, nil +} + +var kexAlgoMap = map[string]kexAlgorithm{} + +func init() { + // This is the group called diffie-hellman-group1-sha1 in RFC + // 4253 and Oakley Group 2 in RFC 2409. + p, _ := new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE65381FFFFFFFFFFFFFFFF", 16) + kexAlgoMap[kexAlgoDH1SHA1] = &dhGroup{ + g: new(big.Int).SetInt64(2), + p: p, + pMinus1: new(big.Int).Sub(p, bigOne), + } + + // This is the group called diffie-hellman-group14-sha1 in RFC + // 4253 and Oakley Group 14 in RFC 3526. + p, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3DC2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F83655D23DCA3AD961C62F356208552BB9ED529077096966D670C354E4ABC9804F1746C08CA18217C32905E462E36CE3BE39E772C180E86039B2783A2EC07A28FB5C55DF06F4C52C9DE2BCBF6955817183995497CEA956AE515D2261898FA051015728E5A8AACAA68FFFFFFFFFFFFFFFF", 16) + + kexAlgoMap[kexAlgoDH14SHA1] = &dhGroup{ + g: new(big.Int).SetInt64(2), + p: p, + pMinus1: new(big.Int).Sub(p, bigOne), + } + + kexAlgoMap[kexAlgoECDH521] = &ecdh{elliptic.P521()} + kexAlgoMap[kexAlgoECDH384] = &ecdh{elliptic.P384()} + kexAlgoMap[kexAlgoECDH256] = &ecdh{elliptic.P256()} + kexAlgoMap[kexAlgoCurve25519SHA256] = &curve25519sha256{} +} + +// curve25519sha256 implements the curve25519-sha256@libssh.org key +// agreement protocol, as described in +// https://git.libssh.org/projects/libssh.git/tree/doc/curve25519-sha256@libssh.org.txt +type curve25519sha256 struct{} + +type curve25519KeyPair struct { + priv [32]byte + pub [32]byte +} + +func (kp *curve25519KeyPair) generate(rand io.Reader) error { + if _, err := io.ReadFull(rand, kp.priv[:]); err != nil { + return err + } + curve25519.ScalarBaseMult(&kp.pub, &kp.priv) + return nil +} + +// curve25519Zeros is just an array of 32 zero bytes so that we have something +// convenient to compare against in order to reject curve25519 points with the +// wrong order. +var curve25519Zeros [32]byte + +func (kex *curve25519sha256) Client(c packetConn, rand io.Reader, magics *handshakeMagics) (*kexResult, error) { + var kp curve25519KeyPair + if err := kp.generate(rand); err != nil { + return nil, err + } + if err := c.writePacket(Marshal(&kexECDHInitMsg{kp.pub[:]})); err != nil { + return nil, err + } + + packet, err := c.readPacket() + if err != nil { + return nil, err + } + + var reply kexECDHReplyMsg + if err = Unmarshal(packet, &reply); err != nil { + return nil, err + } + if len(reply.EphemeralPubKey) != 32 { + return nil, errors.New("ssh: peer's curve25519 public value has wrong length") + } + + var servPub, secret [32]byte + copy(servPub[:], reply.EphemeralPubKey) + curve25519.ScalarMult(&secret, &kp.priv, &servPub) + if subtle.ConstantTimeCompare(secret[:], curve25519Zeros[:]) == 1 { + return nil, errors.New("ssh: peer's curve25519 public value has wrong order") + } + + h := crypto.SHA256.New() + magics.write(h) + writeString(h, reply.HostKey) + writeString(h, kp.pub[:]) + writeString(h, reply.EphemeralPubKey) + + ki := new(big.Int).SetBytes(secret[:]) + K := make([]byte, intLength(ki)) + marshalInt(K, ki) + h.Write(K) + + return &kexResult{ + H: h.Sum(nil), + K: K, + HostKey: reply.HostKey, + Signature: reply.Signature, + Hash: crypto.SHA256, + }, nil +} + +func (kex *curve25519sha256) Server(c packetConn, rand io.Reader, magics *handshakeMagics, priv Signer) (result *kexResult, err error) { + packet, err := c.readPacket() + if err != nil { + return + } + var kexInit kexECDHInitMsg + if err = Unmarshal(packet, &kexInit); err != nil { + return + } + + if len(kexInit.ClientPubKey) != 32 { + return nil, errors.New("ssh: peer's curve25519 public value has wrong length") + } + + var kp curve25519KeyPair + if err := kp.generate(rand); err != nil { + return nil, err + } + + var clientPub, secret [32]byte + copy(clientPub[:], kexInit.ClientPubKey) + curve25519.ScalarMult(&secret, &kp.priv, &clientPub) + if subtle.ConstantTimeCompare(secret[:], curve25519Zeros[:]) == 1 { + return nil, errors.New("ssh: peer's curve25519 public value has wrong order") + } + + hostKeyBytes := priv.PublicKey().Marshal() + + h := crypto.SHA256.New() + magics.write(h) + writeString(h, hostKeyBytes) + writeString(h, kexInit.ClientPubKey) + writeString(h, kp.pub[:]) + + ki := new(big.Int).SetBytes(secret[:]) + K := make([]byte, intLength(ki)) + marshalInt(K, ki) + h.Write(K) + + H := h.Sum(nil) + + sig, err := signAndMarshal(priv, rand, H) + if err != nil { + return nil, err + } + + reply := kexECDHReplyMsg{ + EphemeralPubKey: kp.pub[:], + HostKey: hostKeyBytes, + Signature: sig, + } + if err := c.writePacket(Marshal(&reply)); err != nil { + return nil, err + } + return &kexResult{ + H: H, + K: K, + HostKey: hostKeyBytes, + Signature: sig, + Hash: crypto.SHA256, + }, nil +} diff --git a/vendor/golang.org/x/crypto/ssh/keys.go b/vendor/golang.org/x/crypto/ssh/keys.go new file mode 100644 index 000000000..73697deda --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/keys.go @@ -0,0 +1,1032 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "crypto" + "crypto/dsa" + "crypto/ecdsa" + "crypto/elliptic" + "crypto/md5" + "crypto/rsa" + "crypto/sha256" + "crypto/x509" + "encoding/asn1" + "encoding/base64" + "encoding/hex" + "encoding/pem" + "errors" + "fmt" + "io" + "math/big" + "strings" + + "golang.org/x/crypto/ed25519" +) + +// These constants represent the algorithm names for key types supported by this +// package. +const ( + KeyAlgoRSA = "ssh-rsa" + KeyAlgoDSA = "ssh-dss" + KeyAlgoECDSA256 = "ecdsa-sha2-nistp256" + KeyAlgoECDSA384 = "ecdsa-sha2-nistp384" + KeyAlgoECDSA521 = "ecdsa-sha2-nistp521" + KeyAlgoED25519 = "ssh-ed25519" +) + +// parsePubKey parses a public key of the given algorithm. +// Use ParsePublicKey for keys with prepended algorithm. +func parsePubKey(in []byte, algo string) (pubKey PublicKey, rest []byte, err error) { + switch algo { + case KeyAlgoRSA: + return parseRSA(in) + case KeyAlgoDSA: + return parseDSA(in) + case KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521: + return parseECDSA(in) + case KeyAlgoED25519: + return parseED25519(in) + case CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01, CertAlgoECDSA384v01, CertAlgoECDSA521v01, CertAlgoED25519v01: + cert, err := parseCert(in, certToPrivAlgo(algo)) + if err != nil { + return nil, nil, err + } + return cert, nil, nil + } + return nil, nil, fmt.Errorf("ssh: unknown key algorithm: %v", algo) +} + +// parseAuthorizedKey parses a public key in OpenSSH authorized_keys format +// (see sshd(8) manual page) once the options and key type fields have been +// removed. +func parseAuthorizedKey(in []byte) (out PublicKey, comment string, err error) { + in = bytes.TrimSpace(in) + + i := bytes.IndexAny(in, " \t") + if i == -1 { + i = len(in) + } + base64Key := in[:i] + + key := make([]byte, base64.StdEncoding.DecodedLen(len(base64Key))) + n, err := base64.StdEncoding.Decode(key, base64Key) + if err != nil { + return nil, "", err + } + key = key[:n] + out, err = ParsePublicKey(key) + if err != nil { + return nil, "", err + } + comment = string(bytes.TrimSpace(in[i:])) + return out, comment, nil +} + +// ParseKnownHosts parses an entry in the format of the known_hosts file. +// +// The known_hosts format is documented in the sshd(8) manual page. This +// function will parse a single entry from in. On successful return, marker +// will contain the optional marker value (i.e. "cert-authority" or "revoked") +// or else be empty, hosts will contain the hosts that this entry matches, +// pubKey will contain the public key and comment will contain any trailing +// comment at the end of the line. See the sshd(8) manual page for the various +// forms that a host string can take. +// +// The unparsed remainder of the input will be returned in rest. This function +// can be called repeatedly to parse multiple entries. +// +// If no entries were found in the input then err will be io.EOF. Otherwise a +// non-nil err value indicates a parse error. +func ParseKnownHosts(in []byte) (marker string, hosts []string, pubKey PublicKey, comment string, rest []byte, err error) { + for len(in) > 0 { + end := bytes.IndexByte(in, '\n') + if end != -1 { + rest = in[end+1:] + in = in[:end] + } else { + rest = nil + } + + end = bytes.IndexByte(in, '\r') + if end != -1 { + in = in[:end] + } + + in = bytes.TrimSpace(in) + if len(in) == 0 || in[0] == '#' { + in = rest + continue + } + + i := bytes.IndexAny(in, " \t") + if i == -1 { + in = rest + continue + } + + // Strip out the beginning of the known_host key. + // This is either an optional marker or a (set of) hostname(s). + keyFields := bytes.Fields(in) + if len(keyFields) < 3 || len(keyFields) > 5 { + return "", nil, nil, "", nil, errors.New("ssh: invalid entry in known_hosts data") + } + + // keyFields[0] is either "@cert-authority", "@revoked" or a comma separated + // list of hosts + marker := "" + if keyFields[0][0] == '@' { + marker = string(keyFields[0][1:]) + keyFields = keyFields[1:] + } + + hosts := string(keyFields[0]) + // keyFields[1] contains the key type (e.g. “ssh-rsa”). + // However, that information is duplicated inside the + // base64-encoded key and so is ignored here. + + key := bytes.Join(keyFields[2:], []byte(" ")) + if pubKey, comment, err = parseAuthorizedKey(key); err != nil { + return "", nil, nil, "", nil, err + } + + return marker, strings.Split(hosts, ","), pubKey, comment, rest, nil + } + + return "", nil, nil, "", nil, io.EOF +} + +// ParseAuthorizedKeys parses a public key from an authorized_keys +// file used in OpenSSH according to the sshd(8) manual page. +func ParseAuthorizedKey(in []byte) (out PublicKey, comment string, options []string, rest []byte, err error) { + for len(in) > 0 { + end := bytes.IndexByte(in, '\n') + if end != -1 { + rest = in[end+1:] + in = in[:end] + } else { + rest = nil + } + + end = bytes.IndexByte(in, '\r') + if end != -1 { + in = in[:end] + } + + in = bytes.TrimSpace(in) + if len(in) == 0 || in[0] == '#' { + in = rest + continue + } + + i := bytes.IndexAny(in, " \t") + if i == -1 { + in = rest + continue + } + + if out, comment, err = parseAuthorizedKey(in[i:]); err == nil { + return out, comment, options, rest, nil + } + + // No key type recognised. Maybe there's an options field at + // the beginning. + var b byte + inQuote := false + var candidateOptions []string + optionStart := 0 + for i, b = range in { + isEnd := !inQuote && (b == ' ' || b == '\t') + if (b == ',' && !inQuote) || isEnd { + if i-optionStart > 0 { + candidateOptions = append(candidateOptions, string(in[optionStart:i])) + } + optionStart = i + 1 + } + if isEnd { + break + } + if b == '"' && (i == 0 || (i > 0 && in[i-1] != '\\')) { + inQuote = !inQuote + } + } + for i < len(in) && (in[i] == ' ' || in[i] == '\t') { + i++ + } + if i == len(in) { + // Invalid line: unmatched quote + in = rest + continue + } + + in = in[i:] + i = bytes.IndexAny(in, " \t") + if i == -1 { + in = rest + continue + } + + if out, comment, err = parseAuthorizedKey(in[i:]); err == nil { + options = candidateOptions + return out, comment, options, rest, nil + } + + in = rest + continue + } + + return nil, "", nil, nil, errors.New("ssh: no key found") +} + +// ParsePublicKey parses an SSH public key formatted for use in +// the SSH wire protocol according to RFC 4253, section 6.6. +func ParsePublicKey(in []byte) (out PublicKey, err error) { + algo, in, ok := parseString(in) + if !ok { + return nil, errShortRead + } + var rest []byte + out, rest, err = parsePubKey(in, string(algo)) + if len(rest) > 0 { + return nil, errors.New("ssh: trailing junk in public key") + } + + return out, err +} + +// MarshalAuthorizedKey serializes key for inclusion in an OpenSSH +// authorized_keys file. The return value ends with newline. +func MarshalAuthorizedKey(key PublicKey) []byte { + b := &bytes.Buffer{} + b.WriteString(key.Type()) + b.WriteByte(' ') + e := base64.NewEncoder(base64.StdEncoding, b) + e.Write(key.Marshal()) + e.Close() + b.WriteByte('\n') + return b.Bytes() +} + +// PublicKey is an abstraction of different types of public keys. +type PublicKey interface { + // Type returns the key's type, e.g. "ssh-rsa". + Type() string + + // Marshal returns the serialized key data in SSH wire format, + // with the name prefix. To unmarshal the returned data, use + // the ParsePublicKey function. + Marshal() []byte + + // Verify that sig is a signature on the given data using this + // key. This function will hash the data appropriately first. + Verify(data []byte, sig *Signature) error +} + +// CryptoPublicKey, if implemented by a PublicKey, +// returns the underlying crypto.PublicKey form of the key. +type CryptoPublicKey interface { + CryptoPublicKey() crypto.PublicKey +} + +// A Signer can create signatures that verify against a public key. +type Signer interface { + // PublicKey returns an associated PublicKey instance. + PublicKey() PublicKey + + // Sign returns raw signature for the given data. This method + // will apply the hash specified for the keytype to the data. + Sign(rand io.Reader, data []byte) (*Signature, error) +} + +type rsaPublicKey rsa.PublicKey + +func (r *rsaPublicKey) Type() string { + return "ssh-rsa" +} + +// parseRSA parses an RSA key according to RFC 4253, section 6.6. +func parseRSA(in []byte) (out PublicKey, rest []byte, err error) { + var w struct { + E *big.Int + N *big.Int + Rest []byte `ssh:"rest"` + } + if err := Unmarshal(in, &w); err != nil { + return nil, nil, err + } + + if w.E.BitLen() > 24 { + return nil, nil, errors.New("ssh: exponent too large") + } + e := w.E.Int64() + if e < 3 || e&1 == 0 { + return nil, nil, errors.New("ssh: incorrect exponent") + } + + var key rsa.PublicKey + key.E = int(e) + key.N = w.N + return (*rsaPublicKey)(&key), w.Rest, nil +} + +func (r *rsaPublicKey) Marshal() []byte { + e := new(big.Int).SetInt64(int64(r.E)) + // RSA publickey struct layout should match the struct used by + // parseRSACert in the x/crypto/ssh/agent package. + wirekey := struct { + Name string + E *big.Int + N *big.Int + }{ + KeyAlgoRSA, + e, + r.N, + } + return Marshal(&wirekey) +} + +func (r *rsaPublicKey) Verify(data []byte, sig *Signature) error { + if sig.Format != r.Type() { + return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, r.Type()) + } + h := crypto.SHA1.New() + h.Write(data) + digest := h.Sum(nil) + return rsa.VerifyPKCS1v15((*rsa.PublicKey)(r), crypto.SHA1, digest, sig.Blob) +} + +func (r *rsaPublicKey) CryptoPublicKey() crypto.PublicKey { + return (*rsa.PublicKey)(r) +} + +type dsaPublicKey dsa.PublicKey + +func (k *dsaPublicKey) Type() string { + return "ssh-dss" +} + +func checkDSAParams(param *dsa.Parameters) error { + // SSH specifies FIPS 186-2, which only provided a single size + // (1024 bits) DSA key. FIPS 186-3 allows for larger key + // sizes, which would confuse SSH. + if l := param.P.BitLen(); l != 1024 { + return fmt.Errorf("ssh: unsupported DSA key size %d", l) + } + + return nil +} + +// parseDSA parses an DSA key according to RFC 4253, section 6.6. +func parseDSA(in []byte) (out PublicKey, rest []byte, err error) { + var w struct { + P, Q, G, Y *big.Int + Rest []byte `ssh:"rest"` + } + if err := Unmarshal(in, &w); err != nil { + return nil, nil, err + } + + param := dsa.Parameters{ + P: w.P, + Q: w.Q, + G: w.G, + } + if err := checkDSAParams(¶m); err != nil { + return nil, nil, err + } + + key := &dsaPublicKey{ + Parameters: param, + Y: w.Y, + } + return key, w.Rest, nil +} + +func (k *dsaPublicKey) Marshal() []byte { + // DSA publickey struct layout should match the struct used by + // parseDSACert in the x/crypto/ssh/agent package. + w := struct { + Name string + P, Q, G, Y *big.Int + }{ + k.Type(), + k.P, + k.Q, + k.G, + k.Y, + } + + return Marshal(&w) +} + +func (k *dsaPublicKey) Verify(data []byte, sig *Signature) error { + if sig.Format != k.Type() { + return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, k.Type()) + } + h := crypto.SHA1.New() + h.Write(data) + digest := h.Sum(nil) + + // Per RFC 4253, section 6.6, + // The value for 'dss_signature_blob' is encoded as a string containing + // r, followed by s (which are 160-bit integers, without lengths or + // padding, unsigned, and in network byte order). + // For DSS purposes, sig.Blob should be exactly 40 bytes in length. + if len(sig.Blob) != 40 { + return errors.New("ssh: DSA signature parse error") + } + r := new(big.Int).SetBytes(sig.Blob[:20]) + s := new(big.Int).SetBytes(sig.Blob[20:]) + if dsa.Verify((*dsa.PublicKey)(k), digest, r, s) { + return nil + } + return errors.New("ssh: signature did not verify") +} + +func (k *dsaPublicKey) CryptoPublicKey() crypto.PublicKey { + return (*dsa.PublicKey)(k) +} + +type dsaPrivateKey struct { + *dsa.PrivateKey +} + +func (k *dsaPrivateKey) PublicKey() PublicKey { + return (*dsaPublicKey)(&k.PrivateKey.PublicKey) +} + +func (k *dsaPrivateKey) Sign(rand io.Reader, data []byte) (*Signature, error) { + h := crypto.SHA1.New() + h.Write(data) + digest := h.Sum(nil) + r, s, err := dsa.Sign(rand, k.PrivateKey, digest) + if err != nil { + return nil, err + } + + sig := make([]byte, 40) + rb := r.Bytes() + sb := s.Bytes() + + copy(sig[20-len(rb):20], rb) + copy(sig[40-len(sb):], sb) + + return &Signature{ + Format: k.PublicKey().Type(), + Blob: sig, + }, nil +} + +type ecdsaPublicKey ecdsa.PublicKey + +func (k *ecdsaPublicKey) Type() string { + return "ecdsa-sha2-" + k.nistID() +} + +func (k *ecdsaPublicKey) nistID() string { + switch k.Params().BitSize { + case 256: + return "nistp256" + case 384: + return "nistp384" + case 521: + return "nistp521" + } + panic("ssh: unsupported ecdsa key size") +} + +type ed25519PublicKey ed25519.PublicKey + +func (k ed25519PublicKey) Type() string { + return KeyAlgoED25519 +} + +func parseED25519(in []byte) (out PublicKey, rest []byte, err error) { + var w struct { + KeyBytes []byte + Rest []byte `ssh:"rest"` + } + + if err := Unmarshal(in, &w); err != nil { + return nil, nil, err + } + + key := ed25519.PublicKey(w.KeyBytes) + + return (ed25519PublicKey)(key), w.Rest, nil +} + +func (k ed25519PublicKey) Marshal() []byte { + w := struct { + Name string + KeyBytes []byte + }{ + KeyAlgoED25519, + []byte(k), + } + return Marshal(&w) +} + +func (k ed25519PublicKey) Verify(b []byte, sig *Signature) error { + if sig.Format != k.Type() { + return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, k.Type()) + } + + edKey := (ed25519.PublicKey)(k) + if ok := ed25519.Verify(edKey, b, sig.Blob); !ok { + return errors.New("ssh: signature did not verify") + } + + return nil +} + +func (k ed25519PublicKey) CryptoPublicKey() crypto.PublicKey { + return ed25519.PublicKey(k) +} + +func supportedEllipticCurve(curve elliptic.Curve) bool { + return curve == elliptic.P256() || curve == elliptic.P384() || curve == elliptic.P521() +} + +// ecHash returns the hash to match the given elliptic curve, see RFC +// 5656, section 6.2.1 +func ecHash(curve elliptic.Curve) crypto.Hash { + bitSize := curve.Params().BitSize + switch { + case bitSize <= 256: + return crypto.SHA256 + case bitSize <= 384: + return crypto.SHA384 + } + return crypto.SHA512 +} + +// parseECDSA parses an ECDSA key according to RFC 5656, section 3.1. +func parseECDSA(in []byte) (out PublicKey, rest []byte, err error) { + var w struct { + Curve string + KeyBytes []byte + Rest []byte `ssh:"rest"` + } + + if err := Unmarshal(in, &w); err != nil { + return nil, nil, err + } + + key := new(ecdsa.PublicKey) + + switch w.Curve { + case "nistp256": + key.Curve = elliptic.P256() + case "nistp384": + key.Curve = elliptic.P384() + case "nistp521": + key.Curve = elliptic.P521() + default: + return nil, nil, errors.New("ssh: unsupported curve") + } + + key.X, key.Y = elliptic.Unmarshal(key.Curve, w.KeyBytes) + if key.X == nil || key.Y == nil { + return nil, nil, errors.New("ssh: invalid curve point") + } + return (*ecdsaPublicKey)(key), w.Rest, nil +} + +func (k *ecdsaPublicKey) Marshal() []byte { + // See RFC 5656, section 3.1. + keyBytes := elliptic.Marshal(k.Curve, k.X, k.Y) + // ECDSA publickey struct layout should match the struct used by + // parseECDSACert in the x/crypto/ssh/agent package. + w := struct { + Name string + ID string + Key []byte + }{ + k.Type(), + k.nistID(), + keyBytes, + } + + return Marshal(&w) +} + +func (k *ecdsaPublicKey) Verify(data []byte, sig *Signature) error { + if sig.Format != k.Type() { + return fmt.Errorf("ssh: signature type %s for key type %s", sig.Format, k.Type()) + } + + h := ecHash(k.Curve).New() + h.Write(data) + digest := h.Sum(nil) + + // Per RFC 5656, section 3.1.2, + // The ecdsa_signature_blob value has the following specific encoding: + // mpint r + // mpint s + var ecSig struct { + R *big.Int + S *big.Int + } + + if err := Unmarshal(sig.Blob, &ecSig); err != nil { + return err + } + + if ecdsa.Verify((*ecdsa.PublicKey)(k), digest, ecSig.R, ecSig.S) { + return nil + } + return errors.New("ssh: signature did not verify") +} + +func (k *ecdsaPublicKey) CryptoPublicKey() crypto.PublicKey { + return (*ecdsa.PublicKey)(k) +} + +// NewSignerFromKey takes an *rsa.PrivateKey, *dsa.PrivateKey, +// *ecdsa.PrivateKey or any other crypto.Signer and returns a +// corresponding Signer instance. ECDSA keys must use P-256, P-384 or +// P-521. DSA keys must use parameter size L1024N160. +func NewSignerFromKey(key interface{}) (Signer, error) { + switch key := key.(type) { + case crypto.Signer: + return NewSignerFromSigner(key) + case *dsa.PrivateKey: + return newDSAPrivateKey(key) + default: + return nil, fmt.Errorf("ssh: unsupported key type %T", key) + } +} + +func newDSAPrivateKey(key *dsa.PrivateKey) (Signer, error) { + if err := checkDSAParams(&key.PublicKey.Parameters); err != nil { + return nil, err + } + + return &dsaPrivateKey{key}, nil +} + +type wrappedSigner struct { + signer crypto.Signer + pubKey PublicKey +} + +// NewSignerFromSigner takes any crypto.Signer implementation and +// returns a corresponding Signer interface. This can be used, for +// example, with keys kept in hardware modules. +func NewSignerFromSigner(signer crypto.Signer) (Signer, error) { + pubKey, err := NewPublicKey(signer.Public()) + if err != nil { + return nil, err + } + + return &wrappedSigner{signer, pubKey}, nil +} + +func (s *wrappedSigner) PublicKey() PublicKey { + return s.pubKey +} + +func (s *wrappedSigner) Sign(rand io.Reader, data []byte) (*Signature, error) { + var hashFunc crypto.Hash + + switch key := s.pubKey.(type) { + case *rsaPublicKey, *dsaPublicKey: + hashFunc = crypto.SHA1 + case *ecdsaPublicKey: + hashFunc = ecHash(key.Curve) + case ed25519PublicKey: + default: + return nil, fmt.Errorf("ssh: unsupported key type %T", key) + } + + var digest []byte + if hashFunc != 0 { + h := hashFunc.New() + h.Write(data) + digest = h.Sum(nil) + } else { + digest = data + } + + signature, err := s.signer.Sign(rand, digest, hashFunc) + if err != nil { + return nil, err + } + + // crypto.Signer.Sign is expected to return an ASN.1-encoded signature + // for ECDSA and DSA, but that's not the encoding expected by SSH, so + // re-encode. + switch s.pubKey.(type) { + case *ecdsaPublicKey, *dsaPublicKey: + type asn1Signature struct { + R, S *big.Int + } + asn1Sig := new(asn1Signature) + _, err := asn1.Unmarshal(signature, asn1Sig) + if err != nil { + return nil, err + } + + switch s.pubKey.(type) { + case *ecdsaPublicKey: + signature = Marshal(asn1Sig) + + case *dsaPublicKey: + signature = make([]byte, 40) + r := asn1Sig.R.Bytes() + s := asn1Sig.S.Bytes() + copy(signature[20-len(r):20], r) + copy(signature[40-len(s):40], s) + } + } + + return &Signature{ + Format: s.pubKey.Type(), + Blob: signature, + }, nil +} + +// NewPublicKey takes an *rsa.PublicKey, *dsa.PublicKey, *ecdsa.PublicKey, +// or ed25519.PublicKey returns a corresponding PublicKey instance. +// ECDSA keys must use P-256, P-384 or P-521. +func NewPublicKey(key interface{}) (PublicKey, error) { + switch key := key.(type) { + case *rsa.PublicKey: + return (*rsaPublicKey)(key), nil + case *ecdsa.PublicKey: + if !supportedEllipticCurve(key.Curve) { + return nil, errors.New("ssh: only P-256, P-384 and P-521 EC keys are supported") + } + return (*ecdsaPublicKey)(key), nil + case *dsa.PublicKey: + return (*dsaPublicKey)(key), nil + case ed25519.PublicKey: + return (ed25519PublicKey)(key), nil + default: + return nil, fmt.Errorf("ssh: unsupported key type %T", key) + } +} + +// ParsePrivateKey returns a Signer from a PEM encoded private key. It supports +// the same keys as ParseRawPrivateKey. +func ParsePrivateKey(pemBytes []byte) (Signer, error) { + key, err := ParseRawPrivateKey(pemBytes) + if err != nil { + return nil, err + } + + return NewSignerFromKey(key) +} + +// ParsePrivateKeyWithPassphrase returns a Signer from a PEM encoded private +// key and passphrase. It supports the same keys as +// ParseRawPrivateKeyWithPassphrase. +func ParsePrivateKeyWithPassphrase(pemBytes, passPhrase []byte) (Signer, error) { + key, err := ParseRawPrivateKeyWithPassphrase(pemBytes, passPhrase) + if err != nil { + return nil, err + } + + return NewSignerFromKey(key) +} + +// encryptedBlock tells whether a private key is +// encrypted by examining its Proc-Type header +// for a mention of ENCRYPTED +// according to RFC 1421 Section 4.6.1.1. +func encryptedBlock(block *pem.Block) bool { + return strings.Contains(block.Headers["Proc-Type"], "ENCRYPTED") +} + +// ParseRawPrivateKey returns a private key from a PEM encoded private key. It +// supports RSA (PKCS#1), DSA (OpenSSL), and ECDSA private keys. +func ParseRawPrivateKey(pemBytes []byte) (interface{}, error) { + block, _ := pem.Decode(pemBytes) + if block == nil { + return nil, errors.New("ssh: no key found") + } + + if encryptedBlock(block) { + return nil, errors.New("ssh: cannot decode encrypted private keys") + } + + switch block.Type { + case "RSA PRIVATE KEY": + return x509.ParsePKCS1PrivateKey(block.Bytes) + case "EC PRIVATE KEY": + return x509.ParseECPrivateKey(block.Bytes) + case "DSA PRIVATE KEY": + return ParseDSAPrivateKey(block.Bytes) + case "OPENSSH PRIVATE KEY": + return parseOpenSSHPrivateKey(block.Bytes) + default: + return nil, fmt.Errorf("ssh: unsupported key type %q", block.Type) + } +} + +// ParseRawPrivateKeyWithPassphrase returns a private key decrypted with +// passphrase from a PEM encoded private key. If wrong passphrase, return +// x509.IncorrectPasswordError. +func ParseRawPrivateKeyWithPassphrase(pemBytes, passPhrase []byte) (interface{}, error) { + block, _ := pem.Decode(pemBytes) + if block == nil { + return nil, errors.New("ssh: no key found") + } + buf := block.Bytes + + if encryptedBlock(block) { + if x509.IsEncryptedPEMBlock(block) { + var err error + buf, err = x509.DecryptPEMBlock(block, passPhrase) + if err != nil { + if err == x509.IncorrectPasswordError { + return nil, err + } + return nil, fmt.Errorf("ssh: cannot decode encrypted private keys: %v", err) + } + } + } + + switch block.Type { + case "RSA PRIVATE KEY": + return x509.ParsePKCS1PrivateKey(buf) + case "EC PRIVATE KEY": + return x509.ParseECPrivateKey(buf) + case "DSA PRIVATE KEY": + return ParseDSAPrivateKey(buf) + case "OPENSSH PRIVATE KEY": + return parseOpenSSHPrivateKey(buf) + default: + return nil, fmt.Errorf("ssh: unsupported key type %q", block.Type) + } +} + +// ParseDSAPrivateKey returns a DSA private key from its ASN.1 DER encoding, as +// specified by the OpenSSL DSA man page. +func ParseDSAPrivateKey(der []byte) (*dsa.PrivateKey, error) { + var k struct { + Version int + P *big.Int + Q *big.Int + G *big.Int + Pub *big.Int + Priv *big.Int + } + rest, err := asn1.Unmarshal(der, &k) + if err != nil { + return nil, errors.New("ssh: failed to parse DSA key: " + err.Error()) + } + if len(rest) > 0 { + return nil, errors.New("ssh: garbage after DSA key") + } + + return &dsa.PrivateKey{ + PublicKey: dsa.PublicKey{ + Parameters: dsa.Parameters{ + P: k.P, + Q: k.Q, + G: k.G, + }, + Y: k.Pub, + }, + X: k.Priv, + }, nil +} + +// Implemented based on the documentation at +// https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.key +func parseOpenSSHPrivateKey(key []byte) (crypto.PrivateKey, error) { + magic := append([]byte("openssh-key-v1"), 0) + if !bytes.Equal(magic, key[0:len(magic)]) { + return nil, errors.New("ssh: invalid openssh private key format") + } + remaining := key[len(magic):] + + var w struct { + CipherName string + KdfName string + KdfOpts string + NumKeys uint32 + PubKey []byte + PrivKeyBlock []byte + } + + if err := Unmarshal(remaining, &w); err != nil { + return nil, err + } + + if w.KdfName != "none" || w.CipherName != "none" { + return nil, errors.New("ssh: cannot decode encrypted private keys") + } + + pk1 := struct { + Check1 uint32 + Check2 uint32 + Keytype string + Rest []byte `ssh:"rest"` + }{} + + if err := Unmarshal(w.PrivKeyBlock, &pk1); err != nil { + return nil, err + } + + if pk1.Check1 != pk1.Check2 { + return nil, errors.New("ssh: checkint mismatch") + } + + // we only handle ed25519 and rsa keys currently + switch pk1.Keytype { + case KeyAlgoRSA: + // https://github.com/openssh/openssh-portable/blob/master/sshkey.c#L2760-L2773 + key := struct { + N *big.Int + E *big.Int + D *big.Int + Iqmp *big.Int + P *big.Int + Q *big.Int + Comment string + Pad []byte `ssh:"rest"` + }{} + + if err := Unmarshal(pk1.Rest, &key); err != nil { + return nil, err + } + + for i, b := range key.Pad { + if int(b) != i+1 { + return nil, errors.New("ssh: padding not as expected") + } + } + + pk := &rsa.PrivateKey{ + PublicKey: rsa.PublicKey{ + N: key.N, + E: int(key.E.Int64()), + }, + D: key.D, + Primes: []*big.Int{key.P, key.Q}, + } + + if err := pk.Validate(); err != nil { + return nil, err + } + + pk.Precompute() + + return pk, nil + case KeyAlgoED25519: + key := struct { + Pub []byte + Priv []byte + Comment string + Pad []byte `ssh:"rest"` + }{} + + if err := Unmarshal(pk1.Rest, &key); err != nil { + return nil, err + } + + if len(key.Priv) != ed25519.PrivateKeySize { + return nil, errors.New("ssh: private key unexpected length") + } + + for i, b := range key.Pad { + if int(b) != i+1 { + return nil, errors.New("ssh: padding not as expected") + } + } + + pk := ed25519.PrivateKey(make([]byte, ed25519.PrivateKeySize)) + copy(pk, key.Priv) + return &pk, nil + default: + return nil, errors.New("ssh: unhandled key type") + } +} + +// FingerprintLegacyMD5 returns the user presentation of the key's +// fingerprint as described by RFC 4716 section 4. +func FingerprintLegacyMD5(pubKey PublicKey) string { + md5sum := md5.Sum(pubKey.Marshal()) + hexarray := make([]string, len(md5sum)) + for i, c := range md5sum { + hexarray[i] = hex.EncodeToString([]byte{c}) + } + return strings.Join(hexarray, ":") +} + +// FingerprintSHA256 returns the user presentation of the key's +// fingerprint as unpadded base64 encoded sha256 hash. +// This format was introduced from OpenSSH 6.8. +// https://www.openssh.com/txt/release-6.8 +// https://tools.ietf.org/html/rfc4648#section-3.2 (unpadded base64 encoding) +func FingerprintSHA256(pubKey PublicKey) string { + sha256sum := sha256.Sum256(pubKey.Marshal()) + hash := base64.RawStdEncoding.EncodeToString(sha256sum[:]) + return "SHA256:" + hash +} diff --git a/vendor/golang.org/x/crypto/ssh/mac.go b/vendor/golang.org/x/crypto/ssh/mac.go new file mode 100644 index 000000000..c07a06285 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/mac.go @@ -0,0 +1,61 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +// Message authentication support + +import ( + "crypto/hmac" + "crypto/sha1" + "crypto/sha256" + "hash" +) + +type macMode struct { + keySize int + etm bool + new func(key []byte) hash.Hash +} + +// truncatingMAC wraps around a hash.Hash and truncates the output digest to +// a given size. +type truncatingMAC struct { + length int + hmac hash.Hash +} + +func (t truncatingMAC) Write(data []byte) (int, error) { + return t.hmac.Write(data) +} + +func (t truncatingMAC) Sum(in []byte) []byte { + out := t.hmac.Sum(in) + return out[:len(in)+t.length] +} + +func (t truncatingMAC) Reset() { + t.hmac.Reset() +} + +func (t truncatingMAC) Size() int { + return t.length +} + +func (t truncatingMAC) BlockSize() int { return t.hmac.BlockSize() } + +var macModes = map[string]*macMode{ + "hmac-sha2-256-etm@openssh.com": {32, true, func(key []byte) hash.Hash { + return hmac.New(sha256.New, key) + }}, + "hmac-sha2-256": {32, false, func(key []byte) hash.Hash { + return hmac.New(sha256.New, key) + }}, + "hmac-sha1": {20, false, func(key []byte) hash.Hash { + return hmac.New(sha1.New, key) + }}, + "hmac-sha1-96": {20, false, func(key []byte) hash.Hash { + return truncatingMAC{12, hmac.New(sha1.New, key)} + }}, +} diff --git a/vendor/golang.org/x/crypto/ssh/messages.go b/vendor/golang.org/x/crypto/ssh/messages.go new file mode 100644 index 000000000..08d281173 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/messages.go @@ -0,0 +1,766 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "encoding/binary" + "errors" + "fmt" + "io" + "math/big" + "reflect" + "strconv" + "strings" +) + +// These are SSH message type numbers. They are scattered around several +// documents but many were taken from [SSH-PARAMETERS]. +const ( + msgIgnore = 2 + msgUnimplemented = 3 + msgDebug = 4 + msgNewKeys = 21 +) + +// SSH messages: +// +// These structures mirror the wire format of the corresponding SSH messages. +// They are marshaled using reflection with the marshal and unmarshal functions +// in this file. The only wrinkle is that a final member of type []byte with a +// ssh tag of "rest" receives the remainder of a packet when unmarshaling. + +// See RFC 4253, section 11.1. +const msgDisconnect = 1 + +// disconnectMsg is the message that signals a disconnect. It is also +// the error type returned from mux.Wait() +type disconnectMsg struct { + Reason uint32 `sshtype:"1"` + Message string + Language string +} + +func (d *disconnectMsg) Error() string { + return fmt.Sprintf("ssh: disconnect, reason %d: %s", d.Reason, d.Message) +} + +// See RFC 4253, section 7.1. +const msgKexInit = 20 + +type kexInitMsg struct { + Cookie [16]byte `sshtype:"20"` + KexAlgos []string + ServerHostKeyAlgos []string + CiphersClientServer []string + CiphersServerClient []string + MACsClientServer []string + MACsServerClient []string + CompressionClientServer []string + CompressionServerClient []string + LanguagesClientServer []string + LanguagesServerClient []string + FirstKexFollows bool + Reserved uint32 +} + +// See RFC 4253, section 8. + +// Diffie-Helman +const msgKexDHInit = 30 + +type kexDHInitMsg struct { + X *big.Int `sshtype:"30"` +} + +const msgKexECDHInit = 30 + +type kexECDHInitMsg struct { + ClientPubKey []byte `sshtype:"30"` +} + +const msgKexECDHReply = 31 + +type kexECDHReplyMsg struct { + HostKey []byte `sshtype:"31"` + EphemeralPubKey []byte + Signature []byte +} + +const msgKexDHReply = 31 + +type kexDHReplyMsg struct { + HostKey []byte `sshtype:"31"` + Y *big.Int + Signature []byte +} + +// See RFC 4253, section 10. +const msgServiceRequest = 5 + +type serviceRequestMsg struct { + Service string `sshtype:"5"` +} + +// See RFC 4253, section 10. +const msgServiceAccept = 6 + +type serviceAcceptMsg struct { + Service string `sshtype:"6"` +} + +// See RFC 4252, section 5. +const msgUserAuthRequest = 50 + +type userAuthRequestMsg struct { + User string `sshtype:"50"` + Service string + Method string + Payload []byte `ssh:"rest"` +} + +// Used for debug printouts of packets. +type userAuthSuccessMsg struct { +} + +// See RFC 4252, section 5.1 +const msgUserAuthFailure = 51 + +type userAuthFailureMsg struct { + Methods []string `sshtype:"51"` + PartialSuccess bool +} + +// See RFC 4252, section 5.1 +const msgUserAuthSuccess = 52 + +// See RFC 4252, section 5.4 +const msgUserAuthBanner = 53 + +type userAuthBannerMsg struct { + Message string `sshtype:"53"` + // unused, but required to allow message parsing + Language string +} + +// See RFC 4256, section 3.2 +const msgUserAuthInfoRequest = 60 +const msgUserAuthInfoResponse = 61 + +type userAuthInfoRequestMsg struct { + User string `sshtype:"60"` + Instruction string + DeprecatedLanguage string + NumPrompts uint32 + Prompts []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.1. +const msgChannelOpen = 90 + +type channelOpenMsg struct { + ChanType string `sshtype:"90"` + PeersID uint32 + PeersWindow uint32 + MaxPacketSize uint32 + TypeSpecificData []byte `ssh:"rest"` +} + +const msgChannelExtendedData = 95 +const msgChannelData = 94 + +// Used for debug print outs of packets. +type channelDataMsg struct { + PeersID uint32 `sshtype:"94"` + Length uint32 + Rest []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.1. +const msgChannelOpenConfirm = 91 + +type channelOpenConfirmMsg struct { + PeersID uint32 `sshtype:"91"` + MyID uint32 + MyWindow uint32 + MaxPacketSize uint32 + TypeSpecificData []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.1. +const msgChannelOpenFailure = 92 + +type channelOpenFailureMsg struct { + PeersID uint32 `sshtype:"92"` + Reason RejectionReason + Message string + Language string +} + +const msgChannelRequest = 98 + +type channelRequestMsg struct { + PeersID uint32 `sshtype:"98"` + Request string + WantReply bool + RequestSpecificData []byte `ssh:"rest"` +} + +// See RFC 4254, section 5.4. +const msgChannelSuccess = 99 + +type channelRequestSuccessMsg struct { + PeersID uint32 `sshtype:"99"` +} + +// See RFC 4254, section 5.4. +const msgChannelFailure = 100 + +type channelRequestFailureMsg struct { + PeersID uint32 `sshtype:"100"` +} + +// See RFC 4254, section 5.3 +const msgChannelClose = 97 + +type channelCloseMsg struct { + PeersID uint32 `sshtype:"97"` +} + +// See RFC 4254, section 5.3 +const msgChannelEOF = 96 + +type channelEOFMsg struct { + PeersID uint32 `sshtype:"96"` +} + +// See RFC 4254, section 4 +const msgGlobalRequest = 80 + +type globalRequestMsg struct { + Type string `sshtype:"80"` + WantReply bool + Data []byte `ssh:"rest"` +} + +// See RFC 4254, section 4 +const msgRequestSuccess = 81 + +type globalRequestSuccessMsg struct { + Data []byte `ssh:"rest" sshtype:"81"` +} + +// See RFC 4254, section 4 +const msgRequestFailure = 82 + +type globalRequestFailureMsg struct { + Data []byte `ssh:"rest" sshtype:"82"` +} + +// See RFC 4254, section 5.2 +const msgChannelWindowAdjust = 93 + +type windowAdjustMsg struct { + PeersID uint32 `sshtype:"93"` + AdditionalBytes uint32 +} + +// See RFC 4252, section 7 +const msgUserAuthPubKeyOk = 60 + +type userAuthPubKeyOkMsg struct { + Algo string `sshtype:"60"` + PubKey []byte +} + +// typeTags returns the possible type bytes for the given reflect.Type, which +// should be a struct. The possible values are separated by a '|' character. +func typeTags(structType reflect.Type) (tags []byte) { + tagStr := structType.Field(0).Tag.Get("sshtype") + + for _, tag := range strings.Split(tagStr, "|") { + i, err := strconv.Atoi(tag) + if err == nil { + tags = append(tags, byte(i)) + } + } + + return tags +} + +func fieldError(t reflect.Type, field int, problem string) error { + if problem != "" { + problem = ": " + problem + } + return fmt.Errorf("ssh: unmarshal error for field %s of type %s%s", t.Field(field).Name, t.Name(), problem) +} + +var errShortRead = errors.New("ssh: short read") + +// Unmarshal parses data in SSH wire format into a structure. The out +// argument should be a pointer to struct. If the first member of the +// struct has the "sshtype" tag set to a '|'-separated set of numbers +// in decimal, the packet must start with one of those numbers. In +// case of error, Unmarshal returns a ParseError or +// UnexpectedMessageError. +func Unmarshal(data []byte, out interface{}) error { + v := reflect.ValueOf(out).Elem() + structType := v.Type() + expectedTypes := typeTags(structType) + + var expectedType byte + if len(expectedTypes) > 0 { + expectedType = expectedTypes[0] + } + + if len(data) == 0 { + return parseError(expectedType) + } + + if len(expectedTypes) > 0 { + goodType := false + for _, e := range expectedTypes { + if e > 0 && data[0] == e { + goodType = true + break + } + } + if !goodType { + return fmt.Errorf("ssh: unexpected message type %d (expected one of %v)", data[0], expectedTypes) + } + data = data[1:] + } + + var ok bool + for i := 0; i < v.NumField(); i++ { + field := v.Field(i) + t := field.Type() + switch t.Kind() { + case reflect.Bool: + if len(data) < 1 { + return errShortRead + } + field.SetBool(data[0] != 0) + data = data[1:] + case reflect.Array: + if t.Elem().Kind() != reflect.Uint8 { + return fieldError(structType, i, "array of unsupported type") + } + if len(data) < t.Len() { + return errShortRead + } + for j, n := 0, t.Len(); j < n; j++ { + field.Index(j).Set(reflect.ValueOf(data[j])) + } + data = data[t.Len():] + case reflect.Uint64: + var u64 uint64 + if u64, data, ok = parseUint64(data); !ok { + return errShortRead + } + field.SetUint(u64) + case reflect.Uint32: + var u32 uint32 + if u32, data, ok = parseUint32(data); !ok { + return errShortRead + } + field.SetUint(uint64(u32)) + case reflect.Uint8: + if len(data) < 1 { + return errShortRead + } + field.SetUint(uint64(data[0])) + data = data[1:] + case reflect.String: + var s []byte + if s, data, ok = parseString(data); !ok { + return fieldError(structType, i, "") + } + field.SetString(string(s)) + case reflect.Slice: + switch t.Elem().Kind() { + case reflect.Uint8: + if structType.Field(i).Tag.Get("ssh") == "rest" { + field.Set(reflect.ValueOf(data)) + data = nil + } else { + var s []byte + if s, data, ok = parseString(data); !ok { + return errShortRead + } + field.Set(reflect.ValueOf(s)) + } + case reflect.String: + var nl []string + if nl, data, ok = parseNameList(data); !ok { + return errShortRead + } + field.Set(reflect.ValueOf(nl)) + default: + return fieldError(structType, i, "slice of unsupported type") + } + case reflect.Ptr: + if t == bigIntType { + var n *big.Int + if n, data, ok = parseInt(data); !ok { + return errShortRead + } + field.Set(reflect.ValueOf(n)) + } else { + return fieldError(structType, i, "pointer to unsupported type") + } + default: + return fieldError(structType, i, fmt.Sprintf("unsupported type: %v", t)) + } + } + + if len(data) != 0 { + return parseError(expectedType) + } + + return nil +} + +// Marshal serializes the message in msg to SSH wire format. The msg +// argument should be a struct or pointer to struct. If the first +// member has the "sshtype" tag set to a number in decimal, that +// number is prepended to the result. If the last of member has the +// "ssh" tag set to "rest", its contents are appended to the output. +func Marshal(msg interface{}) []byte { + out := make([]byte, 0, 64) + return marshalStruct(out, msg) +} + +func marshalStruct(out []byte, msg interface{}) []byte { + v := reflect.Indirect(reflect.ValueOf(msg)) + msgTypes := typeTags(v.Type()) + if len(msgTypes) > 0 { + out = append(out, msgTypes[0]) + } + + for i, n := 0, v.NumField(); i < n; i++ { + field := v.Field(i) + switch t := field.Type(); t.Kind() { + case reflect.Bool: + var v uint8 + if field.Bool() { + v = 1 + } + out = append(out, v) + case reflect.Array: + if t.Elem().Kind() != reflect.Uint8 { + panic(fmt.Sprintf("array of non-uint8 in field %d: %T", i, field.Interface())) + } + for j, l := 0, t.Len(); j < l; j++ { + out = append(out, uint8(field.Index(j).Uint())) + } + case reflect.Uint32: + out = appendU32(out, uint32(field.Uint())) + case reflect.Uint64: + out = appendU64(out, uint64(field.Uint())) + case reflect.Uint8: + out = append(out, uint8(field.Uint())) + case reflect.String: + s := field.String() + out = appendInt(out, len(s)) + out = append(out, s...) + case reflect.Slice: + switch t.Elem().Kind() { + case reflect.Uint8: + if v.Type().Field(i).Tag.Get("ssh") != "rest" { + out = appendInt(out, field.Len()) + } + out = append(out, field.Bytes()...) + case reflect.String: + offset := len(out) + out = appendU32(out, 0) + if n := field.Len(); n > 0 { + for j := 0; j < n; j++ { + f := field.Index(j) + if j != 0 { + out = append(out, ',') + } + out = append(out, f.String()...) + } + // overwrite length value + binary.BigEndian.PutUint32(out[offset:], uint32(len(out)-offset-4)) + } + default: + panic(fmt.Sprintf("slice of unknown type in field %d: %T", i, field.Interface())) + } + case reflect.Ptr: + if t == bigIntType { + var n *big.Int + nValue := reflect.ValueOf(&n) + nValue.Elem().Set(field) + needed := intLength(n) + oldLength := len(out) + + if cap(out)-len(out) < needed { + newOut := make([]byte, len(out), 2*(len(out)+needed)) + copy(newOut, out) + out = newOut + } + out = out[:oldLength+needed] + marshalInt(out[oldLength:], n) + } else { + panic(fmt.Sprintf("pointer to unknown type in field %d: %T", i, field.Interface())) + } + } + } + + return out +} + +var bigOne = big.NewInt(1) + +func parseString(in []byte) (out, rest []byte, ok bool) { + if len(in) < 4 { + return + } + length := binary.BigEndian.Uint32(in) + in = in[4:] + if uint32(len(in)) < length { + return + } + out = in[:length] + rest = in[length:] + ok = true + return +} + +var ( + comma = []byte{','} + emptyNameList = []string{} +) + +func parseNameList(in []byte) (out []string, rest []byte, ok bool) { + contents, rest, ok := parseString(in) + if !ok { + return + } + if len(contents) == 0 { + out = emptyNameList + return + } + parts := bytes.Split(contents, comma) + out = make([]string, len(parts)) + for i, part := range parts { + out[i] = string(part) + } + return +} + +func parseInt(in []byte) (out *big.Int, rest []byte, ok bool) { + contents, rest, ok := parseString(in) + if !ok { + return + } + out = new(big.Int) + + if len(contents) > 0 && contents[0]&0x80 == 0x80 { + // This is a negative number + notBytes := make([]byte, len(contents)) + for i := range notBytes { + notBytes[i] = ^contents[i] + } + out.SetBytes(notBytes) + out.Add(out, bigOne) + out.Neg(out) + } else { + // Positive number + out.SetBytes(contents) + } + ok = true + return +} + +func parseUint32(in []byte) (uint32, []byte, bool) { + if len(in) < 4 { + return 0, nil, false + } + return binary.BigEndian.Uint32(in), in[4:], true +} + +func parseUint64(in []byte) (uint64, []byte, bool) { + if len(in) < 8 { + return 0, nil, false + } + return binary.BigEndian.Uint64(in), in[8:], true +} + +func intLength(n *big.Int) int { + length := 4 /* length bytes */ + if n.Sign() < 0 { + nMinus1 := new(big.Int).Neg(n) + nMinus1.Sub(nMinus1, bigOne) + bitLen := nMinus1.BitLen() + if bitLen%8 == 0 { + // The number will need 0xff padding + length++ + } + length += (bitLen + 7) / 8 + } else if n.Sign() == 0 { + // A zero is the zero length string + } else { + bitLen := n.BitLen() + if bitLen%8 == 0 { + // The number will need 0x00 padding + length++ + } + length += (bitLen + 7) / 8 + } + + return length +} + +func marshalUint32(to []byte, n uint32) []byte { + binary.BigEndian.PutUint32(to, n) + return to[4:] +} + +func marshalUint64(to []byte, n uint64) []byte { + binary.BigEndian.PutUint64(to, n) + return to[8:] +} + +func marshalInt(to []byte, n *big.Int) []byte { + lengthBytes := to + to = to[4:] + length := 0 + + if n.Sign() < 0 { + // A negative number has to be converted to two's-complement + // form. So we'll subtract 1 and invert. If the + // most-significant-bit isn't set then we'll need to pad the + // beginning with 0xff in order to keep the number negative. + nMinus1 := new(big.Int).Neg(n) + nMinus1.Sub(nMinus1, bigOne) + bytes := nMinus1.Bytes() + for i := range bytes { + bytes[i] ^= 0xff + } + if len(bytes) == 0 || bytes[0]&0x80 == 0 { + to[0] = 0xff + to = to[1:] + length++ + } + nBytes := copy(to, bytes) + to = to[nBytes:] + length += nBytes + } else if n.Sign() == 0 { + // A zero is the zero length string + } else { + bytes := n.Bytes() + if len(bytes) > 0 && bytes[0]&0x80 != 0 { + // We'll have to pad this with a 0x00 in order to + // stop it looking like a negative number. + to[0] = 0 + to = to[1:] + length++ + } + nBytes := copy(to, bytes) + to = to[nBytes:] + length += nBytes + } + + lengthBytes[0] = byte(length >> 24) + lengthBytes[1] = byte(length >> 16) + lengthBytes[2] = byte(length >> 8) + lengthBytes[3] = byte(length) + return to +} + +func writeInt(w io.Writer, n *big.Int) { + length := intLength(n) + buf := make([]byte, length) + marshalInt(buf, n) + w.Write(buf) +} + +func writeString(w io.Writer, s []byte) { + var lengthBytes [4]byte + lengthBytes[0] = byte(len(s) >> 24) + lengthBytes[1] = byte(len(s) >> 16) + lengthBytes[2] = byte(len(s) >> 8) + lengthBytes[3] = byte(len(s)) + w.Write(lengthBytes[:]) + w.Write(s) +} + +func stringLength(n int) int { + return 4 + n +} + +func marshalString(to []byte, s []byte) []byte { + to[0] = byte(len(s) >> 24) + to[1] = byte(len(s) >> 16) + to[2] = byte(len(s) >> 8) + to[3] = byte(len(s)) + to = to[4:] + copy(to, s) + return to[len(s):] +} + +var bigIntType = reflect.TypeOf((*big.Int)(nil)) + +// Decode a packet into its corresponding message. +func decode(packet []byte) (interface{}, error) { + var msg interface{} + switch packet[0] { + case msgDisconnect: + msg = new(disconnectMsg) + case msgServiceRequest: + msg = new(serviceRequestMsg) + case msgServiceAccept: + msg = new(serviceAcceptMsg) + case msgKexInit: + msg = new(kexInitMsg) + case msgKexDHInit: + msg = new(kexDHInitMsg) + case msgKexDHReply: + msg = new(kexDHReplyMsg) + case msgUserAuthRequest: + msg = new(userAuthRequestMsg) + case msgUserAuthSuccess: + return new(userAuthSuccessMsg), nil + case msgUserAuthFailure: + msg = new(userAuthFailureMsg) + case msgUserAuthPubKeyOk: + msg = new(userAuthPubKeyOkMsg) + case msgGlobalRequest: + msg = new(globalRequestMsg) + case msgRequestSuccess: + msg = new(globalRequestSuccessMsg) + case msgRequestFailure: + msg = new(globalRequestFailureMsg) + case msgChannelOpen: + msg = new(channelOpenMsg) + case msgChannelData: + msg = new(channelDataMsg) + case msgChannelOpenConfirm: + msg = new(channelOpenConfirmMsg) + case msgChannelOpenFailure: + msg = new(channelOpenFailureMsg) + case msgChannelWindowAdjust: + msg = new(windowAdjustMsg) + case msgChannelEOF: + msg = new(channelEOFMsg) + case msgChannelClose: + msg = new(channelCloseMsg) + case msgChannelRequest: + msg = new(channelRequestMsg) + case msgChannelSuccess: + msg = new(channelRequestSuccessMsg) + case msgChannelFailure: + msg = new(channelRequestFailureMsg) + default: + return nil, unexpectedMessageError(0, packet[0]) + } + if err := Unmarshal(packet, msg); err != nil { + return nil, err + } + return msg, nil +} diff --git a/vendor/golang.org/x/crypto/ssh/mux.go b/vendor/golang.org/x/crypto/ssh/mux.go new file mode 100644 index 000000000..f19016270 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/mux.go @@ -0,0 +1,330 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "encoding/binary" + "fmt" + "io" + "log" + "sync" + "sync/atomic" +) + +// debugMux, if set, causes messages in the connection protocol to be +// logged. +const debugMux = false + +// chanList is a thread safe channel list. +type chanList struct { + // protects concurrent access to chans + sync.Mutex + + // chans are indexed by the local id of the channel, which the + // other side should send in the PeersId field. + chans []*channel + + // This is a debugging aid: it offsets all IDs by this + // amount. This helps distinguish otherwise identical + // server/client muxes + offset uint32 +} + +// Assigns a channel ID to the given channel. +func (c *chanList) add(ch *channel) uint32 { + c.Lock() + defer c.Unlock() + for i := range c.chans { + if c.chans[i] == nil { + c.chans[i] = ch + return uint32(i) + c.offset + } + } + c.chans = append(c.chans, ch) + return uint32(len(c.chans)-1) + c.offset +} + +// getChan returns the channel for the given ID. +func (c *chanList) getChan(id uint32) *channel { + id -= c.offset + + c.Lock() + defer c.Unlock() + if id < uint32(len(c.chans)) { + return c.chans[id] + } + return nil +} + +func (c *chanList) remove(id uint32) { + id -= c.offset + c.Lock() + if id < uint32(len(c.chans)) { + c.chans[id] = nil + } + c.Unlock() +} + +// dropAll forgets all channels it knows, returning them in a slice. +func (c *chanList) dropAll() []*channel { + c.Lock() + defer c.Unlock() + var r []*channel + + for _, ch := range c.chans { + if ch == nil { + continue + } + r = append(r, ch) + } + c.chans = nil + return r +} + +// mux represents the state for the SSH connection protocol, which +// multiplexes many channels onto a single packet transport. +type mux struct { + conn packetConn + chanList chanList + + incomingChannels chan NewChannel + + globalSentMu sync.Mutex + globalResponses chan interface{} + incomingRequests chan *Request + + errCond *sync.Cond + err error +} + +// When debugging, each new chanList instantiation has a different +// offset. +var globalOff uint32 + +func (m *mux) Wait() error { + m.errCond.L.Lock() + defer m.errCond.L.Unlock() + for m.err == nil { + m.errCond.Wait() + } + return m.err +} + +// newMux returns a mux that runs over the given connection. +func newMux(p packetConn) *mux { + m := &mux{ + conn: p, + incomingChannels: make(chan NewChannel, chanSize), + globalResponses: make(chan interface{}, 1), + incomingRequests: make(chan *Request, chanSize), + errCond: newCond(), + } + if debugMux { + m.chanList.offset = atomic.AddUint32(&globalOff, 1) + } + + go m.loop() + return m +} + +func (m *mux) sendMessage(msg interface{}) error { + p := Marshal(msg) + if debugMux { + log.Printf("send global(%d): %#v", m.chanList.offset, msg) + } + return m.conn.writePacket(p) +} + +func (m *mux) SendRequest(name string, wantReply bool, payload []byte) (bool, []byte, error) { + if wantReply { + m.globalSentMu.Lock() + defer m.globalSentMu.Unlock() + } + + if err := m.sendMessage(globalRequestMsg{ + Type: name, + WantReply: wantReply, + Data: payload, + }); err != nil { + return false, nil, err + } + + if !wantReply { + return false, nil, nil + } + + msg, ok := <-m.globalResponses + if !ok { + return false, nil, io.EOF + } + switch msg := msg.(type) { + case *globalRequestFailureMsg: + return false, msg.Data, nil + case *globalRequestSuccessMsg: + return true, msg.Data, nil + default: + return false, nil, fmt.Errorf("ssh: unexpected response to request: %#v", msg) + } +} + +// ackRequest must be called after processing a global request that +// has WantReply set. +func (m *mux) ackRequest(ok bool, data []byte) error { + if ok { + return m.sendMessage(globalRequestSuccessMsg{Data: data}) + } + return m.sendMessage(globalRequestFailureMsg{Data: data}) +} + +func (m *mux) Close() error { + return m.conn.Close() +} + +// loop runs the connection machine. It will process packets until an +// error is encountered. To synchronize on loop exit, use mux.Wait. +func (m *mux) loop() { + var err error + for err == nil { + err = m.onePacket() + } + + for _, ch := range m.chanList.dropAll() { + ch.close() + } + + close(m.incomingChannels) + close(m.incomingRequests) + close(m.globalResponses) + + m.conn.Close() + + m.errCond.L.Lock() + m.err = err + m.errCond.Broadcast() + m.errCond.L.Unlock() + + if debugMux { + log.Println("loop exit", err) + } +} + +// onePacket reads and processes one packet. +func (m *mux) onePacket() error { + packet, err := m.conn.readPacket() + if err != nil { + return err + } + + if debugMux { + if packet[0] == msgChannelData || packet[0] == msgChannelExtendedData { + log.Printf("decoding(%d): data packet - %d bytes", m.chanList.offset, len(packet)) + } else { + p, _ := decode(packet) + log.Printf("decoding(%d): %d %#v - %d bytes", m.chanList.offset, packet[0], p, len(packet)) + } + } + + switch packet[0] { + case msgChannelOpen: + return m.handleChannelOpen(packet) + case msgGlobalRequest, msgRequestSuccess, msgRequestFailure: + return m.handleGlobalPacket(packet) + } + + // assume a channel packet. + if len(packet) < 5 { + return parseError(packet[0]) + } + id := binary.BigEndian.Uint32(packet[1:]) + ch := m.chanList.getChan(id) + if ch == nil { + return fmt.Errorf("ssh: invalid channel %d", id) + } + + return ch.handlePacket(packet) +} + +func (m *mux) handleGlobalPacket(packet []byte) error { + msg, err := decode(packet) + if err != nil { + return err + } + + switch msg := msg.(type) { + case *globalRequestMsg: + m.incomingRequests <- &Request{ + Type: msg.Type, + WantReply: msg.WantReply, + Payload: msg.Data, + mux: m, + } + case *globalRequestSuccessMsg, *globalRequestFailureMsg: + m.globalResponses <- msg + default: + panic(fmt.Sprintf("not a global message %#v", msg)) + } + + return nil +} + +// handleChannelOpen schedules a channel to be Accept()ed. +func (m *mux) handleChannelOpen(packet []byte) error { + var msg channelOpenMsg + if err := Unmarshal(packet, &msg); err != nil { + return err + } + + if msg.MaxPacketSize < minPacketLength || msg.MaxPacketSize > 1<<31 { + failMsg := channelOpenFailureMsg{ + PeersID: msg.PeersID, + Reason: ConnectionFailed, + Message: "invalid request", + Language: "en_US.UTF-8", + } + return m.sendMessage(failMsg) + } + + c := m.newChannel(msg.ChanType, channelInbound, msg.TypeSpecificData) + c.remoteId = msg.PeersID + c.maxRemotePayload = msg.MaxPacketSize + c.remoteWin.add(msg.PeersWindow) + m.incomingChannels <- c + return nil +} + +func (m *mux) OpenChannel(chanType string, extra []byte) (Channel, <-chan *Request, error) { + ch, err := m.openChannel(chanType, extra) + if err != nil { + return nil, nil, err + } + + return ch, ch.incomingRequests, nil +} + +func (m *mux) openChannel(chanType string, extra []byte) (*channel, error) { + ch := m.newChannel(chanType, channelOutbound, extra) + + ch.maxIncomingPayload = channelMaxPacket + + open := channelOpenMsg{ + ChanType: chanType, + PeersWindow: ch.myWindow, + MaxPacketSize: ch.maxIncomingPayload, + TypeSpecificData: extra, + PeersID: ch.localId, + } + if err := m.sendMessage(open); err != nil { + return nil, err + } + + switch msg := (<-ch.msg).(type) { + case *channelOpenConfirmMsg: + return ch, nil + case *channelOpenFailureMsg: + return nil, &OpenChannelError{msg.Reason, msg.Message} + default: + return nil, fmt.Errorf("ssh: unexpected packet in response to channel open: %T", msg) + } +} diff --git a/vendor/golang.org/x/crypto/ssh/server.go b/vendor/golang.org/x/crypto/ssh/server.go new file mode 100644 index 000000000..d0f482531 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/server.go @@ -0,0 +1,593 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bytes" + "errors" + "fmt" + "io" + "net" + "strings" +) + +// The Permissions type holds fine-grained permissions that are +// specific to a user or a specific authentication method for a user. +// The Permissions value for a successful authentication attempt is +// available in ServerConn, so it can be used to pass information from +// the user-authentication phase to the application layer. +type Permissions struct { + // CriticalOptions indicate restrictions to the default + // permissions, and are typically used in conjunction with + // user certificates. The standard for SSH certificates + // defines "force-command" (only allow the given command to + // execute) and "source-address" (only allow connections from + // the given address). The SSH package currently only enforces + // the "source-address" critical option. It is up to server + // implementations to enforce other critical options, such as + // "force-command", by checking them after the SSH handshake + // is successful. In general, SSH servers should reject + // connections that specify critical options that are unknown + // or not supported. + CriticalOptions map[string]string + + // Extensions are extra functionality that the server may + // offer on authenticated connections. Lack of support for an + // extension does not preclude authenticating a user. Common + // extensions are "permit-agent-forwarding", + // "permit-X11-forwarding". The Go SSH library currently does + // not act on any extension, and it is up to server + // implementations to honor them. Extensions can be used to + // pass data from the authentication callbacks to the server + // application layer. + Extensions map[string]string +} + +// ServerConfig holds server specific configuration data. +type ServerConfig struct { + // Config contains configuration shared between client and server. + Config + + hostKeys []Signer + + // NoClientAuth is true if clients are allowed to connect without + // authenticating. + NoClientAuth bool + + // MaxAuthTries specifies the maximum number of authentication attempts + // permitted per connection. If set to a negative number, the number of + // attempts are unlimited. If set to zero, the number of attempts are limited + // to 6. + MaxAuthTries int + + // PasswordCallback, if non-nil, is called when a user + // attempts to authenticate using a password. + PasswordCallback func(conn ConnMetadata, password []byte) (*Permissions, error) + + // PublicKeyCallback, if non-nil, is called when a client + // offers a public key for authentication. It must return a nil error + // if the given public key can be used to authenticate the + // given user. For example, see CertChecker.Authenticate. A + // call to this function does not guarantee that the key + // offered is in fact used to authenticate. To record any data + // depending on the public key, store it inside a + // Permissions.Extensions entry. + PublicKeyCallback func(conn ConnMetadata, key PublicKey) (*Permissions, error) + + // KeyboardInteractiveCallback, if non-nil, is called when + // keyboard-interactive authentication is selected (RFC + // 4256). The client object's Challenge function should be + // used to query the user. The callback may offer multiple + // Challenge rounds. To avoid information leaks, the client + // should be presented a challenge even if the user is + // unknown. + KeyboardInteractiveCallback func(conn ConnMetadata, client KeyboardInteractiveChallenge) (*Permissions, error) + + // AuthLogCallback, if non-nil, is called to log all authentication + // attempts. + AuthLogCallback func(conn ConnMetadata, method string, err error) + + // ServerVersion is the version identification string to announce in + // the public handshake. + // If empty, a reasonable default is used. + // Note that RFC 4253 section 4.2 requires that this string start with + // "SSH-2.0-". + ServerVersion string + + // BannerCallback, if present, is called and the return string is sent to + // the client after key exchange completed but before authentication. + BannerCallback func(conn ConnMetadata) string +} + +// AddHostKey adds a private key as a host key. If an existing host +// key exists with the same algorithm, it is overwritten. Each server +// config must have at least one host key. +func (s *ServerConfig) AddHostKey(key Signer) { + for i, k := range s.hostKeys { + if k.PublicKey().Type() == key.PublicKey().Type() { + s.hostKeys[i] = key + return + } + } + + s.hostKeys = append(s.hostKeys, key) +} + +// cachedPubKey contains the results of querying whether a public key is +// acceptable for a user. +type cachedPubKey struct { + user string + pubKeyData []byte + result error + perms *Permissions +} + +const maxCachedPubKeys = 16 + +// pubKeyCache caches tests for public keys. Since SSH clients +// will query whether a public key is acceptable before attempting to +// authenticate with it, we end up with duplicate queries for public +// key validity. The cache only applies to a single ServerConn. +type pubKeyCache struct { + keys []cachedPubKey +} + +// get returns the result for a given user/algo/key tuple. +func (c *pubKeyCache) get(user string, pubKeyData []byte) (cachedPubKey, bool) { + for _, k := range c.keys { + if k.user == user && bytes.Equal(k.pubKeyData, pubKeyData) { + return k, true + } + } + return cachedPubKey{}, false +} + +// add adds the given tuple to the cache. +func (c *pubKeyCache) add(candidate cachedPubKey) { + if len(c.keys) < maxCachedPubKeys { + c.keys = append(c.keys, candidate) + } +} + +// ServerConn is an authenticated SSH connection, as seen from the +// server +type ServerConn struct { + Conn + + // If the succeeding authentication callback returned a + // non-nil Permissions pointer, it is stored here. + Permissions *Permissions +} + +// NewServerConn starts a new SSH server with c as the underlying +// transport. It starts with a handshake and, if the handshake is +// unsuccessful, it closes the connection and returns an error. The +// Request and NewChannel channels must be serviced, or the connection +// will hang. +// +// The returned error may be of type *ServerAuthError for +// authentication errors. +func NewServerConn(c net.Conn, config *ServerConfig) (*ServerConn, <-chan NewChannel, <-chan *Request, error) { + fullConf := *config + fullConf.SetDefaults() + if fullConf.MaxAuthTries == 0 { + fullConf.MaxAuthTries = 6 + } + + s := &connection{ + sshConn: sshConn{conn: c}, + } + perms, err := s.serverHandshake(&fullConf) + if err != nil { + c.Close() + return nil, nil, nil, err + } + return &ServerConn{s, perms}, s.mux.incomingChannels, s.mux.incomingRequests, nil +} + +// signAndMarshal signs the data with the appropriate algorithm, +// and serializes the result in SSH wire format. +func signAndMarshal(k Signer, rand io.Reader, data []byte) ([]byte, error) { + sig, err := k.Sign(rand, data) + if err != nil { + return nil, err + } + + return Marshal(sig), nil +} + +// handshake performs key exchange and user authentication. +func (s *connection) serverHandshake(config *ServerConfig) (*Permissions, error) { + if len(config.hostKeys) == 0 { + return nil, errors.New("ssh: server has no host keys") + } + + if !config.NoClientAuth && config.PasswordCallback == nil && config.PublicKeyCallback == nil && config.KeyboardInteractiveCallback == nil { + return nil, errors.New("ssh: no authentication methods configured but NoClientAuth is also false") + } + + if config.ServerVersion != "" { + s.serverVersion = []byte(config.ServerVersion) + } else { + s.serverVersion = []byte(packageVersion) + } + var err error + s.clientVersion, err = exchangeVersions(s.sshConn.conn, s.serverVersion) + if err != nil { + return nil, err + } + + tr := newTransport(s.sshConn.conn, config.Rand, false /* not client */) + s.transport = newServerTransport(tr, s.clientVersion, s.serverVersion, config) + + if err := s.transport.waitSession(); err != nil { + return nil, err + } + + // We just did the key change, so the session ID is established. + s.sessionID = s.transport.getSessionID() + + var packet []byte + if packet, err = s.transport.readPacket(); err != nil { + return nil, err + } + + var serviceRequest serviceRequestMsg + if err = Unmarshal(packet, &serviceRequest); err != nil { + return nil, err + } + if serviceRequest.Service != serviceUserAuth { + return nil, errors.New("ssh: requested service '" + serviceRequest.Service + "' before authenticating") + } + serviceAccept := serviceAcceptMsg{ + Service: serviceUserAuth, + } + if err := s.transport.writePacket(Marshal(&serviceAccept)); err != nil { + return nil, err + } + + perms, err := s.serverAuthenticate(config) + if err != nil { + return nil, err + } + s.mux = newMux(s.transport) + return perms, err +} + +func isAcceptableAlgo(algo string) bool { + switch algo { + case KeyAlgoRSA, KeyAlgoDSA, KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521, KeyAlgoED25519, + CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01, CertAlgoECDSA384v01, CertAlgoECDSA521v01, CertAlgoED25519v01: + return true + } + return false +} + +func checkSourceAddress(addr net.Addr, sourceAddrs string) error { + if addr == nil { + return errors.New("ssh: no address known for client, but source-address match required") + } + + tcpAddr, ok := addr.(*net.TCPAddr) + if !ok { + return fmt.Errorf("ssh: remote address %v is not an TCP address when checking source-address match", addr) + } + + for _, sourceAddr := range strings.Split(sourceAddrs, ",") { + if allowedIP := net.ParseIP(sourceAddr); allowedIP != nil { + if allowedIP.Equal(tcpAddr.IP) { + return nil + } + } else { + _, ipNet, err := net.ParseCIDR(sourceAddr) + if err != nil { + return fmt.Errorf("ssh: error parsing source-address restriction %q: %v", sourceAddr, err) + } + + if ipNet.Contains(tcpAddr.IP) { + return nil + } + } + } + + return fmt.Errorf("ssh: remote address %v is not allowed because of source-address restriction", addr) +} + +// ServerAuthError represents server authentication errors and is +// sometimes returned by NewServerConn. It appends any authentication +// errors that may occur, and is returned if all of the authentication +// methods provided by the user failed to authenticate. +type ServerAuthError struct { + // Errors contains authentication errors returned by the authentication + // callback methods. The first entry is typically ErrNoAuth. + Errors []error +} + +func (l ServerAuthError) Error() string { + var errs []string + for _, err := range l.Errors { + errs = append(errs, err.Error()) + } + return "[" + strings.Join(errs, ", ") + "]" +} + +// ErrNoAuth is the error value returned if no +// authentication method has been passed yet. This happens as a normal +// part of the authentication loop, since the client first tries +// 'none' authentication to discover available methods. +// It is returned in ServerAuthError.Errors from NewServerConn. +var ErrNoAuth = errors.New("ssh: no auth passed yet") + +func (s *connection) serverAuthenticate(config *ServerConfig) (*Permissions, error) { + sessionID := s.transport.getSessionID() + var cache pubKeyCache + var perms *Permissions + + authFailures := 0 + var authErrs []error + var displayedBanner bool + +userAuthLoop: + for { + if authFailures >= config.MaxAuthTries && config.MaxAuthTries > 0 { + discMsg := &disconnectMsg{ + Reason: 2, + Message: "too many authentication failures", + } + + if err := s.transport.writePacket(Marshal(discMsg)); err != nil { + return nil, err + } + + return nil, discMsg + } + + var userAuthReq userAuthRequestMsg + if packet, err := s.transport.readPacket(); err != nil { + if err == io.EOF { + return nil, &ServerAuthError{Errors: authErrs} + } + return nil, err + } else if err = Unmarshal(packet, &userAuthReq); err != nil { + return nil, err + } + + if userAuthReq.Service != serviceSSH { + return nil, errors.New("ssh: client attempted to negotiate for unknown service: " + userAuthReq.Service) + } + + s.user = userAuthReq.User + + if !displayedBanner && config.BannerCallback != nil { + displayedBanner = true + msg := config.BannerCallback(s) + if msg != "" { + bannerMsg := &userAuthBannerMsg{ + Message: msg, + } + if err := s.transport.writePacket(Marshal(bannerMsg)); err != nil { + return nil, err + } + } + } + + perms = nil + authErr := ErrNoAuth + + switch userAuthReq.Method { + case "none": + if config.NoClientAuth { + authErr = nil + } + + // allow initial attempt of 'none' without penalty + if authFailures == 0 { + authFailures-- + } + case "password": + if config.PasswordCallback == nil { + authErr = errors.New("ssh: password auth not configured") + break + } + payload := userAuthReq.Payload + if len(payload) < 1 || payload[0] != 0 { + return nil, parseError(msgUserAuthRequest) + } + payload = payload[1:] + password, payload, ok := parseString(payload) + if !ok || len(payload) > 0 { + return nil, parseError(msgUserAuthRequest) + } + + perms, authErr = config.PasswordCallback(s, password) + case "keyboard-interactive": + if config.KeyboardInteractiveCallback == nil { + authErr = errors.New("ssh: keyboard-interactive auth not configubred") + break + } + + prompter := &sshClientKeyboardInteractive{s} + perms, authErr = config.KeyboardInteractiveCallback(s, prompter.Challenge) + case "publickey": + if config.PublicKeyCallback == nil { + authErr = errors.New("ssh: publickey auth not configured") + break + } + payload := userAuthReq.Payload + if len(payload) < 1 { + return nil, parseError(msgUserAuthRequest) + } + isQuery := payload[0] == 0 + payload = payload[1:] + algoBytes, payload, ok := parseString(payload) + if !ok { + return nil, parseError(msgUserAuthRequest) + } + algo := string(algoBytes) + if !isAcceptableAlgo(algo) { + authErr = fmt.Errorf("ssh: algorithm %q not accepted", algo) + break + } + + pubKeyData, payload, ok := parseString(payload) + if !ok { + return nil, parseError(msgUserAuthRequest) + } + + pubKey, err := ParsePublicKey(pubKeyData) + if err != nil { + return nil, err + } + + candidate, ok := cache.get(s.user, pubKeyData) + if !ok { + candidate.user = s.user + candidate.pubKeyData = pubKeyData + candidate.perms, candidate.result = config.PublicKeyCallback(s, pubKey) + if candidate.result == nil && candidate.perms != nil && candidate.perms.CriticalOptions != nil && candidate.perms.CriticalOptions[sourceAddressCriticalOption] != "" { + candidate.result = checkSourceAddress( + s.RemoteAddr(), + candidate.perms.CriticalOptions[sourceAddressCriticalOption]) + } + cache.add(candidate) + } + + if isQuery { + // The client can query if the given public key + // would be okay. + + if len(payload) > 0 { + return nil, parseError(msgUserAuthRequest) + } + + if candidate.result == nil { + okMsg := userAuthPubKeyOkMsg{ + Algo: algo, + PubKey: pubKeyData, + } + if err = s.transport.writePacket(Marshal(&okMsg)); err != nil { + return nil, err + } + continue userAuthLoop + } + authErr = candidate.result + } else { + sig, payload, ok := parseSignature(payload) + if !ok || len(payload) > 0 { + return nil, parseError(msgUserAuthRequest) + } + // Ensure the public key algo and signature algo + // are supported. Compare the private key + // algorithm name that corresponds to algo with + // sig.Format. This is usually the same, but + // for certs, the names differ. + if !isAcceptableAlgo(sig.Format) { + break + } + signedData := buildDataSignedForAuth(sessionID, userAuthReq, algoBytes, pubKeyData) + + if err := pubKey.Verify(signedData, sig); err != nil { + return nil, err + } + + authErr = candidate.result + perms = candidate.perms + } + default: + authErr = fmt.Errorf("ssh: unknown method %q", userAuthReq.Method) + } + + authErrs = append(authErrs, authErr) + + if config.AuthLogCallback != nil { + config.AuthLogCallback(s, userAuthReq.Method, authErr) + } + + if authErr == nil { + break userAuthLoop + } + + authFailures++ + + var failureMsg userAuthFailureMsg + if config.PasswordCallback != nil { + failureMsg.Methods = append(failureMsg.Methods, "password") + } + if config.PublicKeyCallback != nil { + failureMsg.Methods = append(failureMsg.Methods, "publickey") + } + if config.KeyboardInteractiveCallback != nil { + failureMsg.Methods = append(failureMsg.Methods, "keyboard-interactive") + } + + if len(failureMsg.Methods) == 0 { + return nil, errors.New("ssh: no authentication methods configured but NoClientAuth is also false") + } + + if err := s.transport.writePacket(Marshal(&failureMsg)); err != nil { + return nil, err + } + } + + if err := s.transport.writePacket([]byte{msgUserAuthSuccess}); err != nil { + return nil, err + } + return perms, nil +} + +// sshClientKeyboardInteractive implements a ClientKeyboardInteractive by +// asking the client on the other side of a ServerConn. +type sshClientKeyboardInteractive struct { + *connection +} + +func (c *sshClientKeyboardInteractive) Challenge(user, instruction string, questions []string, echos []bool) (answers []string, err error) { + if len(questions) != len(echos) { + return nil, errors.New("ssh: echos and questions must have equal length") + } + + var prompts []byte + for i := range questions { + prompts = appendString(prompts, questions[i]) + prompts = appendBool(prompts, echos[i]) + } + + if err := c.transport.writePacket(Marshal(&userAuthInfoRequestMsg{ + Instruction: instruction, + NumPrompts: uint32(len(questions)), + Prompts: prompts, + })); err != nil { + return nil, err + } + + packet, err := c.transport.readPacket() + if err != nil { + return nil, err + } + if packet[0] != msgUserAuthInfoResponse { + return nil, unexpectedMessageError(msgUserAuthInfoResponse, packet[0]) + } + packet = packet[1:] + + n, packet, ok := parseUint32(packet) + if !ok || int(n) != len(questions) { + return nil, parseError(msgUserAuthInfoResponse) + } + + for i := uint32(0); i < n; i++ { + ans, rest, ok := parseString(packet) + if !ok { + return nil, parseError(msgUserAuthInfoResponse) + } + + answers = append(answers, string(ans)) + packet = rest + } + if len(packet) != 0 { + return nil, errors.New("ssh: junk at end of message") + } + + return answers, nil +} diff --git a/vendor/golang.org/x/crypto/ssh/session.go b/vendor/golang.org/x/crypto/ssh/session.go new file mode 100644 index 000000000..d3321f6b7 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/session.go @@ -0,0 +1,647 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +// Session implements an interactive session described in +// "RFC 4254, section 6". + +import ( + "bytes" + "encoding/binary" + "errors" + "fmt" + "io" + "io/ioutil" + "sync" +) + +type Signal string + +// POSIX signals as listed in RFC 4254 Section 6.10. +const ( + SIGABRT Signal = "ABRT" + SIGALRM Signal = "ALRM" + SIGFPE Signal = "FPE" + SIGHUP Signal = "HUP" + SIGILL Signal = "ILL" + SIGINT Signal = "INT" + SIGKILL Signal = "KILL" + SIGPIPE Signal = "PIPE" + SIGQUIT Signal = "QUIT" + SIGSEGV Signal = "SEGV" + SIGTERM Signal = "TERM" + SIGUSR1 Signal = "USR1" + SIGUSR2 Signal = "USR2" +) + +var signals = map[Signal]int{ + SIGABRT: 6, + SIGALRM: 14, + SIGFPE: 8, + SIGHUP: 1, + SIGILL: 4, + SIGINT: 2, + SIGKILL: 9, + SIGPIPE: 13, + SIGQUIT: 3, + SIGSEGV: 11, + SIGTERM: 15, +} + +type TerminalModes map[uint8]uint32 + +// POSIX terminal mode flags as listed in RFC 4254 Section 8. +const ( + tty_OP_END = 0 + VINTR = 1 + VQUIT = 2 + VERASE = 3 + VKILL = 4 + VEOF = 5 + VEOL = 6 + VEOL2 = 7 + VSTART = 8 + VSTOP = 9 + VSUSP = 10 + VDSUSP = 11 + VREPRINT = 12 + VWERASE = 13 + VLNEXT = 14 + VFLUSH = 15 + VSWTCH = 16 + VSTATUS = 17 + VDISCARD = 18 + IGNPAR = 30 + PARMRK = 31 + INPCK = 32 + ISTRIP = 33 + INLCR = 34 + IGNCR = 35 + ICRNL = 36 + IUCLC = 37 + IXON = 38 + IXANY = 39 + IXOFF = 40 + IMAXBEL = 41 + ISIG = 50 + ICANON = 51 + XCASE = 52 + ECHO = 53 + ECHOE = 54 + ECHOK = 55 + ECHONL = 56 + NOFLSH = 57 + TOSTOP = 58 + IEXTEN = 59 + ECHOCTL = 60 + ECHOKE = 61 + PENDIN = 62 + OPOST = 70 + OLCUC = 71 + ONLCR = 72 + OCRNL = 73 + ONOCR = 74 + ONLRET = 75 + CS7 = 90 + CS8 = 91 + PARENB = 92 + PARODD = 93 + TTY_OP_ISPEED = 128 + TTY_OP_OSPEED = 129 +) + +// A Session represents a connection to a remote command or shell. +type Session struct { + // Stdin specifies the remote process's standard input. + // If Stdin is nil, the remote process reads from an empty + // bytes.Buffer. + Stdin io.Reader + + // Stdout and Stderr specify the remote process's standard + // output and error. + // + // If either is nil, Run connects the corresponding file + // descriptor to an instance of ioutil.Discard. There is a + // fixed amount of buffering that is shared for the two streams. + // If either blocks it may eventually cause the remote + // command to block. + Stdout io.Writer + Stderr io.Writer + + ch Channel // the channel backing this session + started bool // true once Start, Run or Shell is invoked. + copyFuncs []func() error + errors chan error // one send per copyFunc + + // true if pipe method is active + stdinpipe, stdoutpipe, stderrpipe bool + + // stdinPipeWriter is non-nil if StdinPipe has not been called + // and Stdin was specified by the user; it is the write end of + // a pipe connecting Session.Stdin to the stdin channel. + stdinPipeWriter io.WriteCloser + + exitStatus chan error +} + +// SendRequest sends an out-of-band channel request on the SSH channel +// underlying the session. +func (s *Session) SendRequest(name string, wantReply bool, payload []byte) (bool, error) { + return s.ch.SendRequest(name, wantReply, payload) +} + +func (s *Session) Close() error { + return s.ch.Close() +} + +// RFC 4254 Section 6.4. +type setenvRequest struct { + Name string + Value string +} + +// Setenv sets an environment variable that will be applied to any +// command executed by Shell or Run. +func (s *Session) Setenv(name, value string) error { + msg := setenvRequest{ + Name: name, + Value: value, + } + ok, err := s.ch.SendRequest("env", true, Marshal(&msg)) + if err == nil && !ok { + err = errors.New("ssh: setenv failed") + } + return err +} + +// RFC 4254 Section 6.2. +type ptyRequestMsg struct { + Term string + Columns uint32 + Rows uint32 + Width uint32 + Height uint32 + Modelist string +} + +// RequestPty requests the association of a pty with the session on the remote host. +func (s *Session) RequestPty(term string, h, w int, termmodes TerminalModes) error { + var tm []byte + for k, v := range termmodes { + kv := struct { + Key byte + Val uint32 + }{k, v} + + tm = append(tm, Marshal(&kv)...) + } + tm = append(tm, tty_OP_END) + req := ptyRequestMsg{ + Term: term, + Columns: uint32(w), + Rows: uint32(h), + Width: uint32(w * 8), + Height: uint32(h * 8), + Modelist: string(tm), + } + ok, err := s.ch.SendRequest("pty-req", true, Marshal(&req)) + if err == nil && !ok { + err = errors.New("ssh: pty-req failed") + } + return err +} + +// RFC 4254 Section 6.5. +type subsystemRequestMsg struct { + Subsystem string +} + +// RequestSubsystem requests the association of a subsystem with the session on the remote host. +// A subsystem is a predefined command that runs in the background when the ssh session is initiated +func (s *Session) RequestSubsystem(subsystem string) error { + msg := subsystemRequestMsg{ + Subsystem: subsystem, + } + ok, err := s.ch.SendRequest("subsystem", true, Marshal(&msg)) + if err == nil && !ok { + err = errors.New("ssh: subsystem request failed") + } + return err +} + +// RFC 4254 Section 6.7. +type ptyWindowChangeMsg struct { + Columns uint32 + Rows uint32 + Width uint32 + Height uint32 +} + +// WindowChange informs the remote host about a terminal window dimension change to h rows and w columns. +func (s *Session) WindowChange(h, w int) error { + req := ptyWindowChangeMsg{ + Columns: uint32(w), + Rows: uint32(h), + Width: uint32(w * 8), + Height: uint32(h * 8), + } + _, err := s.ch.SendRequest("window-change", false, Marshal(&req)) + return err +} + +// RFC 4254 Section 6.9. +type signalMsg struct { + Signal string +} + +// Signal sends the given signal to the remote process. +// sig is one of the SIG* constants. +func (s *Session) Signal(sig Signal) error { + msg := signalMsg{ + Signal: string(sig), + } + + _, err := s.ch.SendRequest("signal", false, Marshal(&msg)) + return err +} + +// RFC 4254 Section 6.5. +type execMsg struct { + Command string +} + +// Start runs cmd on the remote host. Typically, the remote +// server passes cmd to the shell for interpretation. +// A Session only accepts one call to Run, Start or Shell. +func (s *Session) Start(cmd string) error { + if s.started { + return errors.New("ssh: session already started") + } + req := execMsg{ + Command: cmd, + } + + ok, err := s.ch.SendRequest("exec", true, Marshal(&req)) + if err == nil && !ok { + err = fmt.Errorf("ssh: command %v failed", cmd) + } + if err != nil { + return err + } + return s.start() +} + +// Run runs cmd on the remote host. Typically, the remote +// server passes cmd to the shell for interpretation. +// A Session only accepts one call to Run, Start, Shell, Output, +// or CombinedOutput. +// +// The returned error is nil if the command runs, has no problems +// copying stdin, stdout, and stderr, and exits with a zero exit +// status. +// +// If the remote server does not send an exit status, an error of type +// *ExitMissingError is returned. If the command completes +// unsuccessfully or is interrupted by a signal, the error is of type +// *ExitError. Other error types may be returned for I/O problems. +func (s *Session) Run(cmd string) error { + err := s.Start(cmd) + if err != nil { + return err + } + return s.Wait() +} + +// Output runs cmd on the remote host and returns its standard output. +func (s *Session) Output(cmd string) ([]byte, error) { + if s.Stdout != nil { + return nil, errors.New("ssh: Stdout already set") + } + var b bytes.Buffer + s.Stdout = &b + err := s.Run(cmd) + return b.Bytes(), err +} + +type singleWriter struct { + b bytes.Buffer + mu sync.Mutex +} + +func (w *singleWriter) Write(p []byte) (int, error) { + w.mu.Lock() + defer w.mu.Unlock() + return w.b.Write(p) +} + +// CombinedOutput runs cmd on the remote host and returns its combined +// standard output and standard error. +func (s *Session) CombinedOutput(cmd string) ([]byte, error) { + if s.Stdout != nil { + return nil, errors.New("ssh: Stdout already set") + } + if s.Stderr != nil { + return nil, errors.New("ssh: Stderr already set") + } + var b singleWriter + s.Stdout = &b + s.Stderr = &b + err := s.Run(cmd) + return b.b.Bytes(), err +} + +// Shell starts a login shell on the remote host. A Session only +// accepts one call to Run, Start, Shell, Output, or CombinedOutput. +func (s *Session) Shell() error { + if s.started { + return errors.New("ssh: session already started") + } + + ok, err := s.ch.SendRequest("shell", true, nil) + if err == nil && !ok { + return errors.New("ssh: could not start shell") + } + if err != nil { + return err + } + return s.start() +} + +func (s *Session) start() error { + s.started = true + + type F func(*Session) + for _, setupFd := range []F{(*Session).stdin, (*Session).stdout, (*Session).stderr} { + setupFd(s) + } + + s.errors = make(chan error, len(s.copyFuncs)) + for _, fn := range s.copyFuncs { + go func(fn func() error) { + s.errors <- fn() + }(fn) + } + return nil +} + +// Wait waits for the remote command to exit. +// +// The returned error is nil if the command runs, has no problems +// copying stdin, stdout, and stderr, and exits with a zero exit +// status. +// +// If the remote server does not send an exit status, an error of type +// *ExitMissingError is returned. If the command completes +// unsuccessfully or is interrupted by a signal, the error is of type +// *ExitError. Other error types may be returned for I/O problems. +func (s *Session) Wait() error { + if !s.started { + return errors.New("ssh: session not started") + } + waitErr := <-s.exitStatus + + if s.stdinPipeWriter != nil { + s.stdinPipeWriter.Close() + } + var copyError error + for range s.copyFuncs { + if err := <-s.errors; err != nil && copyError == nil { + copyError = err + } + } + if waitErr != nil { + return waitErr + } + return copyError +} + +func (s *Session) wait(reqs <-chan *Request) error { + wm := Waitmsg{status: -1} + // Wait for msg channel to be closed before returning. + for msg := range reqs { + switch msg.Type { + case "exit-status": + wm.status = int(binary.BigEndian.Uint32(msg.Payload)) + case "exit-signal": + var sigval struct { + Signal string + CoreDumped bool + Error string + Lang string + } + if err := Unmarshal(msg.Payload, &sigval); err != nil { + return err + } + + // Must sanitize strings? + wm.signal = sigval.Signal + wm.msg = sigval.Error + wm.lang = sigval.Lang + default: + // This handles keepalives and matches + // OpenSSH's behaviour. + if msg.WantReply { + msg.Reply(false, nil) + } + } + } + if wm.status == 0 { + return nil + } + if wm.status == -1 { + // exit-status was never sent from server + if wm.signal == "" { + // signal was not sent either. RFC 4254 + // section 6.10 recommends against this + // behavior, but it is allowed, so we let + // clients handle it. + return &ExitMissingError{} + } + wm.status = 128 + if _, ok := signals[Signal(wm.signal)]; ok { + wm.status += signals[Signal(wm.signal)] + } + } + + return &ExitError{wm} +} + +// ExitMissingError is returned if a session is torn down cleanly, but +// the server sends no confirmation of the exit status. +type ExitMissingError struct{} + +func (e *ExitMissingError) Error() string { + return "wait: remote command exited without exit status or exit signal" +} + +func (s *Session) stdin() { + if s.stdinpipe { + return + } + var stdin io.Reader + if s.Stdin == nil { + stdin = new(bytes.Buffer) + } else { + r, w := io.Pipe() + go func() { + _, err := io.Copy(w, s.Stdin) + w.CloseWithError(err) + }() + stdin, s.stdinPipeWriter = r, w + } + s.copyFuncs = append(s.copyFuncs, func() error { + _, err := io.Copy(s.ch, stdin) + if err1 := s.ch.CloseWrite(); err == nil && err1 != io.EOF { + err = err1 + } + return err + }) +} + +func (s *Session) stdout() { + if s.stdoutpipe { + return + } + if s.Stdout == nil { + s.Stdout = ioutil.Discard + } + s.copyFuncs = append(s.copyFuncs, func() error { + _, err := io.Copy(s.Stdout, s.ch) + return err + }) +} + +func (s *Session) stderr() { + if s.stderrpipe { + return + } + if s.Stderr == nil { + s.Stderr = ioutil.Discard + } + s.copyFuncs = append(s.copyFuncs, func() error { + _, err := io.Copy(s.Stderr, s.ch.Stderr()) + return err + }) +} + +// sessionStdin reroutes Close to CloseWrite. +type sessionStdin struct { + io.Writer + ch Channel +} + +func (s *sessionStdin) Close() error { + return s.ch.CloseWrite() +} + +// StdinPipe returns a pipe that will be connected to the +// remote command's standard input when the command starts. +func (s *Session) StdinPipe() (io.WriteCloser, error) { + if s.Stdin != nil { + return nil, errors.New("ssh: Stdin already set") + } + if s.started { + return nil, errors.New("ssh: StdinPipe after process started") + } + s.stdinpipe = true + return &sessionStdin{s.ch, s.ch}, nil +} + +// StdoutPipe returns a pipe that will be connected to the +// remote command's standard output when the command starts. +// There is a fixed amount of buffering that is shared between +// stdout and stderr streams. If the StdoutPipe reader is +// not serviced fast enough it may eventually cause the +// remote command to block. +func (s *Session) StdoutPipe() (io.Reader, error) { + if s.Stdout != nil { + return nil, errors.New("ssh: Stdout already set") + } + if s.started { + return nil, errors.New("ssh: StdoutPipe after process started") + } + s.stdoutpipe = true + return s.ch, nil +} + +// StderrPipe returns a pipe that will be connected to the +// remote command's standard error when the command starts. +// There is a fixed amount of buffering that is shared between +// stdout and stderr streams. If the StderrPipe reader is +// not serviced fast enough it may eventually cause the +// remote command to block. +func (s *Session) StderrPipe() (io.Reader, error) { + if s.Stderr != nil { + return nil, errors.New("ssh: Stderr already set") + } + if s.started { + return nil, errors.New("ssh: StderrPipe after process started") + } + s.stderrpipe = true + return s.ch.Stderr(), nil +} + +// newSession returns a new interactive session on the remote host. +func newSession(ch Channel, reqs <-chan *Request) (*Session, error) { + s := &Session{ + ch: ch, + } + s.exitStatus = make(chan error, 1) + go func() { + s.exitStatus <- s.wait(reqs) + }() + + return s, nil +} + +// An ExitError reports unsuccessful completion of a remote command. +type ExitError struct { + Waitmsg +} + +func (e *ExitError) Error() string { + return e.Waitmsg.String() +} + +// Waitmsg stores the information about an exited remote command +// as reported by Wait. +type Waitmsg struct { + status int + signal string + msg string + lang string +} + +// ExitStatus returns the exit status of the remote command. +func (w Waitmsg) ExitStatus() int { + return w.status +} + +// Signal returns the exit signal of the remote command if +// it was terminated violently. +func (w Waitmsg) Signal() string { + return w.signal +} + +// Msg returns the exit message given by the remote command +func (w Waitmsg) Msg() string { + return w.msg +} + +// Lang returns the language tag. See RFC 3066 +func (w Waitmsg) Lang() string { + return w.lang +} + +func (w Waitmsg) String() string { + str := fmt.Sprintf("Process exited with status %v", w.status) + if w.signal != "" { + str += fmt.Sprintf(" from signal %v", w.signal) + } + if w.msg != "" { + str += fmt.Sprintf(". Reason was: %v", w.msg) + } + return str +} diff --git a/vendor/golang.org/x/crypto/ssh/streamlocal.go b/vendor/golang.org/x/crypto/ssh/streamlocal.go new file mode 100644 index 000000000..a2dccc64c --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/streamlocal.go @@ -0,0 +1,115 @@ +package ssh + +import ( + "errors" + "io" + "net" +) + +// streamLocalChannelOpenDirectMsg is a struct used for SSH_MSG_CHANNEL_OPEN message +// with "direct-streamlocal@openssh.com" string. +// +// See openssh-portable/PROTOCOL, section 2.4. connection: Unix domain socket forwarding +// https://github.com/openssh/openssh-portable/blob/master/PROTOCOL#L235 +type streamLocalChannelOpenDirectMsg struct { + socketPath string + reserved0 string + reserved1 uint32 +} + +// forwardedStreamLocalPayload is a struct used for SSH_MSG_CHANNEL_OPEN message +// with "forwarded-streamlocal@openssh.com" string. +type forwardedStreamLocalPayload struct { + SocketPath string + Reserved0 string +} + +// streamLocalChannelForwardMsg is a struct used for SSH2_MSG_GLOBAL_REQUEST message +// with "streamlocal-forward@openssh.com"/"cancel-streamlocal-forward@openssh.com" string. +type streamLocalChannelForwardMsg struct { + socketPath string +} + +// ListenUnix is similar to ListenTCP but uses a Unix domain socket. +func (c *Client) ListenUnix(socketPath string) (net.Listener, error) { + m := streamLocalChannelForwardMsg{ + socketPath, + } + // send message + ok, _, err := c.SendRequest("streamlocal-forward@openssh.com", true, Marshal(&m)) + if err != nil { + return nil, err + } + if !ok { + return nil, errors.New("ssh: streamlocal-forward@openssh.com request denied by peer") + } + ch := c.forwards.add(&net.UnixAddr{Name: socketPath, Net: "unix"}) + + return &unixListener{socketPath, c, ch}, nil +} + +func (c *Client) dialStreamLocal(socketPath string) (Channel, error) { + msg := streamLocalChannelOpenDirectMsg{ + socketPath: socketPath, + } + ch, in, err := c.OpenChannel("direct-streamlocal@openssh.com", Marshal(&msg)) + if err != nil { + return nil, err + } + go DiscardRequests(in) + return ch, err +} + +type unixListener struct { + socketPath string + + conn *Client + in <-chan forward +} + +// Accept waits for and returns the next connection to the listener. +func (l *unixListener) Accept() (net.Conn, error) { + s, ok := <-l.in + if !ok { + return nil, io.EOF + } + ch, incoming, err := s.newCh.Accept() + if err != nil { + return nil, err + } + go DiscardRequests(incoming) + + return &chanConn{ + Channel: ch, + laddr: &net.UnixAddr{ + Name: l.socketPath, + Net: "unix", + }, + raddr: &net.UnixAddr{ + Name: "@", + Net: "unix", + }, + }, nil +} + +// Close closes the listener. +func (l *unixListener) Close() error { + // this also closes the listener. + l.conn.forwards.remove(&net.UnixAddr{Name: l.socketPath, Net: "unix"}) + m := streamLocalChannelForwardMsg{ + l.socketPath, + } + ok, _, err := l.conn.SendRequest("cancel-streamlocal-forward@openssh.com", true, Marshal(&m)) + if err == nil && !ok { + err = errors.New("ssh: cancel-streamlocal-forward@openssh.com failed") + } + return err +} + +// Addr returns the listener's network address. +func (l *unixListener) Addr() net.Addr { + return &net.UnixAddr{ + Name: l.socketPath, + Net: "unix", + } +} diff --git a/vendor/golang.org/x/crypto/ssh/tcpip.go b/vendor/golang.org/x/crypto/ssh/tcpip.go new file mode 100644 index 000000000..acf17175d --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/tcpip.go @@ -0,0 +1,465 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "errors" + "fmt" + "io" + "math/rand" + "net" + "strconv" + "strings" + "sync" + "time" +) + +// Listen requests the remote peer open a listening socket on +// addr. Incoming connections will be available by calling Accept on +// the returned net.Listener. The listener must be serviced, or the +// SSH connection may hang. +// N must be "tcp", "tcp4", "tcp6", or "unix". +func (c *Client) Listen(n, addr string) (net.Listener, error) { + switch n { + case "tcp", "tcp4", "tcp6": + laddr, err := net.ResolveTCPAddr(n, addr) + if err != nil { + return nil, err + } + return c.ListenTCP(laddr) + case "unix": + return c.ListenUnix(addr) + default: + return nil, fmt.Errorf("ssh: unsupported protocol: %s", n) + } +} + +// Automatic port allocation is broken with OpenSSH before 6.0. See +// also https://bugzilla.mindrot.org/show_bug.cgi?id=2017. In +// particular, OpenSSH 5.9 sends a channelOpenMsg with port number 0, +// rather than the actual port number. This means you can never open +// two different listeners with auto allocated ports. We work around +// this by trying explicit ports until we succeed. + +const openSSHPrefix = "OpenSSH_" + +var portRandomizer = rand.New(rand.NewSource(time.Now().UnixNano())) + +// isBrokenOpenSSHVersion returns true if the given version string +// specifies a version of OpenSSH that is known to have a bug in port +// forwarding. +func isBrokenOpenSSHVersion(versionStr string) bool { + i := strings.Index(versionStr, openSSHPrefix) + if i < 0 { + return false + } + i += len(openSSHPrefix) + j := i + for ; j < len(versionStr); j++ { + if versionStr[j] < '0' || versionStr[j] > '9' { + break + } + } + version, _ := strconv.Atoi(versionStr[i:j]) + return version < 6 +} + +// autoPortListenWorkaround simulates automatic port allocation by +// trying random ports repeatedly. +func (c *Client) autoPortListenWorkaround(laddr *net.TCPAddr) (net.Listener, error) { + var sshListener net.Listener + var err error + const tries = 10 + for i := 0; i < tries; i++ { + addr := *laddr + addr.Port = 1024 + portRandomizer.Intn(60000) + sshListener, err = c.ListenTCP(&addr) + if err == nil { + laddr.Port = addr.Port + return sshListener, err + } + } + return nil, fmt.Errorf("ssh: listen on random port failed after %d tries: %v", tries, err) +} + +// RFC 4254 7.1 +type channelForwardMsg struct { + addr string + rport uint32 +} + +// ListenTCP requests the remote peer open a listening socket +// on laddr. Incoming connections will be available by calling +// Accept on the returned net.Listener. +func (c *Client) ListenTCP(laddr *net.TCPAddr) (net.Listener, error) { + if laddr.Port == 0 && isBrokenOpenSSHVersion(string(c.ServerVersion())) { + return c.autoPortListenWorkaround(laddr) + } + + m := channelForwardMsg{ + laddr.IP.String(), + uint32(laddr.Port), + } + // send message + ok, resp, err := c.SendRequest("tcpip-forward", true, Marshal(&m)) + if err != nil { + return nil, err + } + if !ok { + return nil, errors.New("ssh: tcpip-forward request denied by peer") + } + + // If the original port was 0, then the remote side will + // supply a real port number in the response. + if laddr.Port == 0 { + var p struct { + Port uint32 + } + if err := Unmarshal(resp, &p); err != nil { + return nil, err + } + laddr.Port = int(p.Port) + } + + // Register this forward, using the port number we obtained. + ch := c.forwards.add(laddr) + + return &tcpListener{laddr, c, ch}, nil +} + +// forwardList stores a mapping between remote +// forward requests and the tcpListeners. +type forwardList struct { + sync.Mutex + entries []forwardEntry +} + +// forwardEntry represents an established mapping of a laddr on a +// remote ssh server to a channel connected to a tcpListener. +type forwardEntry struct { + laddr net.Addr + c chan forward +} + +// forward represents an incoming forwarded tcpip connection. The +// arguments to add/remove/lookup should be address as specified in +// the original forward-request. +type forward struct { + newCh NewChannel // the ssh client channel underlying this forward + raddr net.Addr // the raddr of the incoming connection +} + +func (l *forwardList) add(addr net.Addr) chan forward { + l.Lock() + defer l.Unlock() + f := forwardEntry{ + laddr: addr, + c: make(chan forward, 1), + } + l.entries = append(l.entries, f) + return f.c +} + +// See RFC 4254, section 7.2 +type forwardedTCPPayload struct { + Addr string + Port uint32 + OriginAddr string + OriginPort uint32 +} + +// parseTCPAddr parses the originating address from the remote into a *net.TCPAddr. +func parseTCPAddr(addr string, port uint32) (*net.TCPAddr, error) { + if port == 0 || port > 65535 { + return nil, fmt.Errorf("ssh: port number out of range: %d", port) + } + ip := net.ParseIP(string(addr)) + if ip == nil { + return nil, fmt.Errorf("ssh: cannot parse IP address %q", addr) + } + return &net.TCPAddr{IP: ip, Port: int(port)}, nil +} + +func (l *forwardList) handleChannels(in <-chan NewChannel) { + for ch := range in { + var ( + laddr net.Addr + raddr net.Addr + err error + ) + switch channelType := ch.ChannelType(); channelType { + case "forwarded-tcpip": + var payload forwardedTCPPayload + if err = Unmarshal(ch.ExtraData(), &payload); err != nil { + ch.Reject(ConnectionFailed, "could not parse forwarded-tcpip payload: "+err.Error()) + continue + } + + // RFC 4254 section 7.2 specifies that incoming + // addresses should list the address, in string + // format. It is implied that this should be an IP + // address, as it would be impossible to connect to it + // otherwise. + laddr, err = parseTCPAddr(payload.Addr, payload.Port) + if err != nil { + ch.Reject(ConnectionFailed, err.Error()) + continue + } + raddr, err = parseTCPAddr(payload.OriginAddr, payload.OriginPort) + if err != nil { + ch.Reject(ConnectionFailed, err.Error()) + continue + } + + case "forwarded-streamlocal@openssh.com": + var payload forwardedStreamLocalPayload + if err = Unmarshal(ch.ExtraData(), &payload); err != nil { + ch.Reject(ConnectionFailed, "could not parse forwarded-streamlocal@openssh.com payload: "+err.Error()) + continue + } + laddr = &net.UnixAddr{ + Name: payload.SocketPath, + Net: "unix", + } + raddr = &net.UnixAddr{ + Name: "@", + Net: "unix", + } + default: + panic(fmt.Errorf("ssh: unknown channel type %s", channelType)) + } + if ok := l.forward(laddr, raddr, ch); !ok { + // Section 7.2, implementations MUST reject spurious incoming + // connections. + ch.Reject(Prohibited, "no forward for address") + continue + } + + } +} + +// remove removes the forward entry, and the channel feeding its +// listener. +func (l *forwardList) remove(addr net.Addr) { + l.Lock() + defer l.Unlock() + for i, f := range l.entries { + if addr.Network() == f.laddr.Network() && addr.String() == f.laddr.String() { + l.entries = append(l.entries[:i], l.entries[i+1:]...) + close(f.c) + return + } + } +} + +// closeAll closes and clears all forwards. +func (l *forwardList) closeAll() { + l.Lock() + defer l.Unlock() + for _, f := range l.entries { + close(f.c) + } + l.entries = nil +} + +func (l *forwardList) forward(laddr, raddr net.Addr, ch NewChannel) bool { + l.Lock() + defer l.Unlock() + for _, f := range l.entries { + if laddr.Network() == f.laddr.Network() && laddr.String() == f.laddr.String() { + f.c <- forward{newCh: ch, raddr: raddr} + return true + } + } + return false +} + +type tcpListener struct { + laddr *net.TCPAddr + + conn *Client + in <-chan forward +} + +// Accept waits for and returns the next connection to the listener. +func (l *tcpListener) Accept() (net.Conn, error) { + s, ok := <-l.in + if !ok { + return nil, io.EOF + } + ch, incoming, err := s.newCh.Accept() + if err != nil { + return nil, err + } + go DiscardRequests(incoming) + + return &chanConn{ + Channel: ch, + laddr: l.laddr, + raddr: s.raddr, + }, nil +} + +// Close closes the listener. +func (l *tcpListener) Close() error { + m := channelForwardMsg{ + l.laddr.IP.String(), + uint32(l.laddr.Port), + } + + // this also closes the listener. + l.conn.forwards.remove(l.laddr) + ok, _, err := l.conn.SendRequest("cancel-tcpip-forward", true, Marshal(&m)) + if err == nil && !ok { + err = errors.New("ssh: cancel-tcpip-forward failed") + } + return err +} + +// Addr returns the listener's network address. +func (l *tcpListener) Addr() net.Addr { + return l.laddr +} + +// Dial initiates a connection to the addr from the remote host. +// The resulting connection has a zero LocalAddr() and RemoteAddr(). +func (c *Client) Dial(n, addr string) (net.Conn, error) { + var ch Channel + switch n { + case "tcp", "tcp4", "tcp6": + // Parse the address into host and numeric port. + host, portString, err := net.SplitHostPort(addr) + if err != nil { + return nil, err + } + port, err := strconv.ParseUint(portString, 10, 16) + if err != nil { + return nil, err + } + ch, err = c.dial(net.IPv4zero.String(), 0, host, int(port)) + if err != nil { + return nil, err + } + // Use a zero address for local and remote address. + zeroAddr := &net.TCPAddr{ + IP: net.IPv4zero, + Port: 0, + } + return &chanConn{ + Channel: ch, + laddr: zeroAddr, + raddr: zeroAddr, + }, nil + case "unix": + var err error + ch, err = c.dialStreamLocal(addr) + if err != nil { + return nil, err + } + return &chanConn{ + Channel: ch, + laddr: &net.UnixAddr{ + Name: "@", + Net: "unix", + }, + raddr: &net.UnixAddr{ + Name: addr, + Net: "unix", + }, + }, nil + default: + return nil, fmt.Errorf("ssh: unsupported protocol: %s", n) + } +} + +// DialTCP connects to the remote address raddr on the network net, +// which must be "tcp", "tcp4", or "tcp6". If laddr is not nil, it is used +// as the local address for the connection. +func (c *Client) DialTCP(n string, laddr, raddr *net.TCPAddr) (net.Conn, error) { + if laddr == nil { + laddr = &net.TCPAddr{ + IP: net.IPv4zero, + Port: 0, + } + } + ch, err := c.dial(laddr.IP.String(), laddr.Port, raddr.IP.String(), raddr.Port) + if err != nil { + return nil, err + } + return &chanConn{ + Channel: ch, + laddr: laddr, + raddr: raddr, + }, nil +} + +// RFC 4254 7.2 +type channelOpenDirectMsg struct { + raddr string + rport uint32 + laddr string + lport uint32 +} + +func (c *Client) dial(laddr string, lport int, raddr string, rport int) (Channel, error) { + msg := channelOpenDirectMsg{ + raddr: raddr, + rport: uint32(rport), + laddr: laddr, + lport: uint32(lport), + } + ch, in, err := c.OpenChannel("direct-tcpip", Marshal(&msg)) + if err != nil { + return nil, err + } + go DiscardRequests(in) + return ch, err +} + +type tcpChan struct { + Channel // the backing channel +} + +// chanConn fulfills the net.Conn interface without +// the tcpChan having to hold laddr or raddr directly. +type chanConn struct { + Channel + laddr, raddr net.Addr +} + +// LocalAddr returns the local network address. +func (t *chanConn) LocalAddr() net.Addr { + return t.laddr +} + +// RemoteAddr returns the remote network address. +func (t *chanConn) RemoteAddr() net.Addr { + return t.raddr +} + +// SetDeadline sets the read and write deadlines associated +// with the connection. +func (t *chanConn) SetDeadline(deadline time.Time) error { + if err := t.SetReadDeadline(deadline); err != nil { + return err + } + return t.SetWriteDeadline(deadline) +} + +// SetReadDeadline sets the read deadline. +// A zero value for t means Read will not time out. +// After the deadline, the error from Read will implement net.Error +// with Timeout() == true. +func (t *chanConn) SetReadDeadline(deadline time.Time) error { + // for compatibility with previous version, + // the error message contains "tcpChan" + return errors.New("ssh: tcpChan: deadline not supported") +} + +// SetWriteDeadline exists to satisfy the net.Conn interface +// but is not implemented by this type. It always returns an error. +func (t *chanConn) SetWriteDeadline(deadline time.Time) error { + return errors.New("ssh: tcpChan: deadline not supported") +} diff --git a/vendor/golang.org/x/crypto/ssh/transport.go b/vendor/golang.org/x/crypto/ssh/transport.go new file mode 100644 index 000000000..f6fae1db4 --- /dev/null +++ b/vendor/golang.org/x/crypto/ssh/transport.go @@ -0,0 +1,353 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssh + +import ( + "bufio" + "bytes" + "errors" + "io" + "log" +) + +// debugTransport if set, will print packet types as they go over the +// wire. No message decoding is done, to minimize the impact on timing. +const debugTransport = false + +const ( + gcmCipherID = "aes128-gcm@openssh.com" + aes128cbcID = "aes128-cbc" + tripledescbcID = "3des-cbc" +) + +// packetConn represents a transport that implements packet based +// operations. +type packetConn interface { + // Encrypt and send a packet of data to the remote peer. + writePacket(packet []byte) error + + // Read a packet from the connection. The read is blocking, + // i.e. if error is nil, then the returned byte slice is + // always non-empty. + readPacket() ([]byte, error) + + // Close closes the write-side of the connection. + Close() error +} + +// transport is the keyingTransport that implements the SSH packet +// protocol. +type transport struct { + reader connectionState + writer connectionState + + bufReader *bufio.Reader + bufWriter *bufio.Writer + rand io.Reader + isClient bool + io.Closer +} + +// packetCipher represents a combination of SSH encryption/MAC +// protocol. A single instance should be used for one direction only. +type packetCipher interface { + // writePacket encrypts the packet and writes it to w. The + // contents of the packet are generally scrambled. + writePacket(seqnum uint32, w io.Writer, rand io.Reader, packet []byte) error + + // readPacket reads and decrypts a packet of data. The + // returned packet may be overwritten by future calls of + // readPacket. + readPacket(seqnum uint32, r io.Reader) ([]byte, error) +} + +// connectionState represents one side (read or write) of the +// connection. This is necessary because each direction has its own +// keys, and can even have its own algorithms +type connectionState struct { + packetCipher + seqNum uint32 + dir direction + pendingKeyChange chan packetCipher +} + +// prepareKeyChange sets up key material for a keychange. The key changes in +// both directions are triggered by reading and writing a msgNewKey packet +// respectively. +func (t *transport) prepareKeyChange(algs *algorithms, kexResult *kexResult) error { + ciph, err := newPacketCipher(t.reader.dir, algs.r, kexResult) + if err != nil { + return err + } + t.reader.pendingKeyChange <- ciph + + ciph, err = newPacketCipher(t.writer.dir, algs.w, kexResult) + if err != nil { + return err + } + t.writer.pendingKeyChange <- ciph + + return nil +} + +func (t *transport) printPacket(p []byte, write bool) { + if len(p) == 0 { + return + } + who := "server" + if t.isClient { + who = "client" + } + what := "read" + if write { + what = "write" + } + + log.Println(what, who, p[0]) +} + +// Read and decrypt next packet. +func (t *transport) readPacket() (p []byte, err error) { + for { + p, err = t.reader.readPacket(t.bufReader) + if err != nil { + break + } + if len(p) == 0 || (p[0] != msgIgnore && p[0] != msgDebug) { + break + } + } + if debugTransport { + t.printPacket(p, false) + } + + return p, err +} + +func (s *connectionState) readPacket(r *bufio.Reader) ([]byte, error) { + packet, err := s.packetCipher.readPacket(s.seqNum, r) + s.seqNum++ + if err == nil && len(packet) == 0 { + err = errors.New("ssh: zero length packet") + } + + if len(packet) > 0 { + switch packet[0] { + case msgNewKeys: + select { + case cipher := <-s.pendingKeyChange: + s.packetCipher = cipher + default: + return nil, errors.New("ssh: got bogus newkeys message") + } + + case msgDisconnect: + // Transform a disconnect message into an + // error. Since this is lowest level at which + // we interpret message types, doing it here + // ensures that we don't have to handle it + // elsewhere. + var msg disconnectMsg + if err := Unmarshal(packet, &msg); err != nil { + return nil, err + } + return nil, &msg + } + } + + // The packet may point to an internal buffer, so copy the + // packet out here. + fresh := make([]byte, len(packet)) + copy(fresh, packet) + + return fresh, err +} + +func (t *transport) writePacket(packet []byte) error { + if debugTransport { + t.printPacket(packet, true) + } + return t.writer.writePacket(t.bufWriter, t.rand, packet) +} + +func (s *connectionState) writePacket(w *bufio.Writer, rand io.Reader, packet []byte) error { + changeKeys := len(packet) > 0 && packet[0] == msgNewKeys + + err := s.packetCipher.writePacket(s.seqNum, w, rand, packet) + if err != nil { + return err + } + if err = w.Flush(); err != nil { + return err + } + s.seqNum++ + if changeKeys { + select { + case cipher := <-s.pendingKeyChange: + s.packetCipher = cipher + default: + panic("ssh: no key material for msgNewKeys") + } + } + return err +} + +func newTransport(rwc io.ReadWriteCloser, rand io.Reader, isClient bool) *transport { + t := &transport{ + bufReader: bufio.NewReader(rwc), + bufWriter: bufio.NewWriter(rwc), + rand: rand, + reader: connectionState{ + packetCipher: &streamPacketCipher{cipher: noneCipher{}}, + pendingKeyChange: make(chan packetCipher, 1), + }, + writer: connectionState{ + packetCipher: &streamPacketCipher{cipher: noneCipher{}}, + pendingKeyChange: make(chan packetCipher, 1), + }, + Closer: rwc, + } + t.isClient = isClient + + if isClient { + t.reader.dir = serverKeys + t.writer.dir = clientKeys + } else { + t.reader.dir = clientKeys + t.writer.dir = serverKeys + } + + return t +} + +type direction struct { + ivTag []byte + keyTag []byte + macKeyTag []byte +} + +var ( + serverKeys = direction{[]byte{'B'}, []byte{'D'}, []byte{'F'}} + clientKeys = direction{[]byte{'A'}, []byte{'C'}, []byte{'E'}} +) + +// setupKeys sets the cipher and MAC keys from kex.K, kex.H and sessionId, as +// described in RFC 4253, section 6.4. direction should either be serverKeys +// (to setup server->client keys) or clientKeys (for client->server keys). +func newPacketCipher(d direction, algs directionAlgorithms, kex *kexResult) (packetCipher, error) { + cipherMode := cipherModes[algs.Cipher] + macMode := macModes[algs.MAC] + + iv := make([]byte, cipherMode.ivSize) + key := make([]byte, cipherMode.keySize) + macKey := make([]byte, macMode.keySize) + + generateKeyMaterial(iv, d.ivTag, kex) + generateKeyMaterial(key, d.keyTag, kex) + generateKeyMaterial(macKey, d.macKeyTag, kex) + + return cipherModes[algs.Cipher].create(key, iv, macKey, algs) +} + +// generateKeyMaterial fills out with key material generated from tag, K, H +// and sessionId, as specified in RFC 4253, section 7.2. +func generateKeyMaterial(out, tag []byte, r *kexResult) { + var digestsSoFar []byte + + h := r.Hash.New() + for len(out) > 0 { + h.Reset() + h.Write(r.K) + h.Write(r.H) + + if len(digestsSoFar) == 0 { + h.Write(tag) + h.Write(r.SessionID) + } else { + h.Write(digestsSoFar) + } + + digest := h.Sum(nil) + n := copy(out, digest) + out = out[n:] + if len(out) > 0 { + digestsSoFar = append(digestsSoFar, digest...) + } + } +} + +const packageVersion = "SSH-2.0-Go" + +// Sends and receives a version line. The versionLine string should +// be US ASCII, start with "SSH-2.0-", and should not include a +// newline. exchangeVersions returns the other side's version line. +func exchangeVersions(rw io.ReadWriter, versionLine []byte) (them []byte, err error) { + // Contrary to the RFC, we do not ignore lines that don't + // start with "SSH-2.0-" to make the library usable with + // nonconforming servers. + for _, c := range versionLine { + // The spec disallows non US-ASCII chars, and + // specifically forbids null chars. + if c < 32 { + return nil, errors.New("ssh: junk character in version line") + } + } + if _, err = rw.Write(append(versionLine, '\r', '\n')); err != nil { + return + } + + them, err = readVersion(rw) + return them, err +} + +// maxVersionStringBytes is the maximum number of bytes that we'll +// accept as a version string. RFC 4253 section 4.2 limits this at 255 +// chars +const maxVersionStringBytes = 255 + +// Read version string as specified by RFC 4253, section 4.2. +func readVersion(r io.Reader) ([]byte, error) { + versionString := make([]byte, 0, 64) + var ok bool + var buf [1]byte + + for length := 0; length < maxVersionStringBytes; length++ { + _, err := io.ReadFull(r, buf[:]) + if err != nil { + return nil, err + } + // The RFC says that the version should be terminated with \r\n + // but several SSH servers actually only send a \n. + if buf[0] == '\n' { + if !bytes.HasPrefix(versionString, []byte("SSH-")) { + // RFC 4253 says we need to ignore all version string lines + // except the one containing the SSH version (provided that + // all the lines do not exceed 255 bytes in total). + versionString = versionString[:0] + continue + } + ok = true + break + } + + // non ASCII chars are disallowed, but we are lenient, + // since Go doesn't use null-terminated strings. + + // The RFC allows a comment after a space, however, + // all of it (version and comments) goes into the + // session hash. + versionString = append(versionString, buf[0]) + } + + if !ok { + return nil, errors.New("ssh: overflow reading version string") + } + + // There might be a '\r' on the end which we should remove. + if len(versionString) > 0 && versionString[len(versionString)-1] == '\r' { + versionString = versionString[:len(versionString)-1] + } + return versionString, nil +} diff --git a/vendor/golang.org/x/oauth2/LICENSE b/vendor/golang.org/x/oauth2/LICENSE new file mode 100644 index 000000000..d02f24fd5 --- /dev/null +++ b/vendor/golang.org/x/oauth2/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2009 The oauth2 Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/golang.org/x/sync/LICENSE b/vendor/golang.org/x/sync/LICENSE new file mode 100644 index 000000000..6a66aea5e --- /dev/null +++ b/vendor/golang.org/x/sync/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/golang.org/x/sync/PATENTS b/vendor/golang.org/x/sync/PATENTS new file mode 100644 index 000000000..733099041 --- /dev/null +++ b/vendor/golang.org/x/sync/PATENTS @@ -0,0 +1,22 @@ +Additional IP Rights Grant (Patents) + +"This implementation" means the copyrightable works distributed by +Google as part of the Go project. + +Google hereby grants to You a perpetual, worldwide, non-exclusive, +no-charge, royalty-free, irrevocable (except as stated in this section) +patent license to make, have made, use, offer to sell, sell, import, +transfer and otherwise run, modify and propagate the contents of this +implementation of Go, where such license applies only to those patent +claims, both currently owned or controlled by Google and acquired in +the future, licensable by Google that are necessarily infringed by this +implementation of Go. This grant does not include claims that would be +infringed only as a consequence of further modification of this +implementation. If you or your agent or exclusive licensee institute or +order or agree to the institution of patent litigation against any +entity (including a cross-claim or counterclaim in a lawsuit) alleging +that this implementation of Go or any code incorporated within this +implementation of Go constitutes direct or contributory patent +infringement, or inducement of patent infringement, then any patent +rights granted to you under this License for this implementation of Go +shall terminate as of the date such litigation is filed. diff --git a/vendor/google.golang.org/api/LICENSE b/vendor/google.golang.org/api/LICENSE new file mode 100644 index 000000000..263aa7a0c --- /dev/null +++ b/vendor/google.golang.org/api/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2011 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/google.golang.org/appengine/LICENSE b/vendor/google.golang.org/appengine/LICENSE new file mode 100644 index 000000000..d64569567 --- /dev/null +++ b/vendor/google.golang.org/appengine/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/google.golang.org/grpc/LICENSE b/vendor/google.golang.org/grpc/LICENSE index d64569567..f4988b450 100644 --- a/vendor/google.golang.org/grpc/LICENSE +++ b/vendor/google.golang.org/grpc/LICENSE @@ -1,202 +1,28 @@ +Copyright 2014, Google Inc. +All rights reserved. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/google.golang.org/grpc/PATENTS b/vendor/google.golang.org/grpc/PATENTS new file mode 100644 index 000000000..69b47959f --- /dev/null +++ b/vendor/google.golang.org/grpc/PATENTS @@ -0,0 +1,22 @@ +Additional IP Rights Grant (Patents) + +"This implementation" means the copyrightable works distributed by +Google as part of the gRPC project. + +Google hereby grants to You a perpetual, worldwide, non-exclusive, +no-charge, royalty-free, irrevocable (except as stated in this section) +patent license to make, have made, use, offer to sell, sell, import, +transfer and otherwise run, modify and propagate the contents of this +implementation of gRPC, where such license applies only to those patent +claims, both currently owned or controlled by Google and acquired in +the future, licensable by Google that are necessarily infringed by this +implementation of gRPC. This grant does not include claims that would be +infringed only as a consequence of further modification of this +implementation. If you or your agent or exclusive licensee institute or +order or agree to the institution of patent litigation against any +entity (including a cross-claim or counterclaim in a lawsuit) alleging +that this implementation of gRPC or any code incorporated within this +implementation of gRPC constitutes direct or contributory patent +infringement, or inducement of patent infringement, then any patent +rights granted to you under this License for this implementation of gRPC +shall terminate as of the date such litigation is filed. diff --git a/vendor/vendor.json b/vendor/vendor.json index a6faed82d..897d91b55 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -7,10 +7,12 @@ {"path":"github.com/NYTimes/gziphandler","checksumSHA1":"GM+KgxfAv3HJdtffkEPpegaFxe0=","revision":"2600fb119af974220d3916a5916d6e31176aac1b","revisionTime":"2018-02-20T23:40:21Z","version":"v1.0.1","versionExact":"v1.0.1"}, {"path":"github.com/StackExchange/wmi","checksumSHA1":"9NR0rrcAT5J76C5xMS4AVksS9o0=","revision":"e54cbda6595d7293a7a468ccf9525f6bc8887f99","revisionTime":"2016-08-11T21:45:55Z"}, {"path":"github.com/armon/circbuf","checksumSHA1":"l0iFqayYAaEip6Olaq3/LCOa/Sg=","revision":"bbbad097214e2918d8543d5201d12bfd7bca254d","revisionTime":"2015-08-27T00:49:46Z"}, - {"path":"github.com/armon/go-metrics","checksumSHA1":"0et4hA6AYqZCgYiY+c6Z17t3k3k=","revision":"023a4bbe4bb9bfb23ee7e1afc8d0abad217641f3","revisionTime":"2017-08-09T01:16:44Z"}, - {"path":"github.com/armon/go-metrics/circonus","checksumSHA1":"xCsGGM9TKBogZDfSN536KtQdLko=","revision":"ded85ed431a7aee3f3af79f082b704d948058f64","revisionTime":"2017-08-07T19:17:41Z"}, - {"path":"github.com/armon/go-metrics/datadog","checksumSHA1":"Dt0n1sSivvvdZQdzc4Hu/yOG+T0=","revision":"ded85ed431a7aee3f3af79f082b704d948058f64","revisionTime":"2017-08-07T19:17:41Z"}, + {"path":"github.com/armon/go-metrics","checksumSHA1":"eiRzLoenl7oEVCuoT+Ju/zWBlKg=","revision":"783273d703149aaeb9897cf58613d5af48861c25","revisionTime":"2018-02-21T18:27:44Z"}, + {"path":"github.com/armon/go-metrics/circonus","checksumSHA1":"xCsGGM9TKBogZDfSN536KtQdLko=","revision":"783273d703149aaeb9897cf58613d5af48861c25","revisionTime":"2018-02-21T18:27:44Z"}, + {"path":"github.com/armon/go-metrics/datadog","checksumSHA1":"Dt0n1sSivvvdZQdzc4Hu/yOG+T0=","revision":"783273d703149aaeb9897cf58613d5af48861c25","revisionTime":"2018-02-21T18:27:44Z"}, + {"path":"github.com/armon/go-metrics/prometheus","checksumSHA1":"XfPPXw55zKziOWnZbkEGEJ96O9c=","revision":"783273d703149aaeb9897cf58613d5af48861c25","revisionTime":"2018-02-21T18:27:44Z"}, {"path":"github.com/armon/go-radix","checksumSHA1":"gNO0JNpLzYOdInGeq7HqMZUzx9M=","revision":"4239b77079c7b5d1243b7b4736304ce8ddb6f0f2","revisionTime":"2016-01-15T23:47:25Z"}, + {"path":"github.com/beorn7/perks/quantile","checksumSHA1":"0rido7hYHQtfq3UJzVT5LClLAWc=","revision":"3a771d992973f24aa725d07868b467d1ddfceafb","revisionTime":"2018-03-21T16:47:47Z"}, {"path":"github.com/bgentry/speakeasy","checksumSHA1":"dvd7Su+WNmHRP1+w1HezrPUCDsc=","revision":"e1439544d8ecd0f3e9373a636d447668096a8f81","revisionTime":"2016-05-20T23:26:10Z"}, {"path":"github.com/bgentry/speakeasy/example","checksumSHA1":"twtRfb6484vfr2qqjiFkLThTjcQ=","revision":"e1439544d8ecd0f3e9373a636d447668096a8f81","revisionTime":"2016-05-20T23:26:10Z"}, {"path":"github.com/boltdb/bolt","checksumSHA1":"R1Q34Pfnt197F/nCOO9kG8c+Z90=","revision":"2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8","revisionTime":"2017-07-17T17:11:48Z"}, @@ -18,6 +20,7 @@ {"path":"github.com/circonus-labs/circonus-gometrics/api","checksumSHA1":"WUE6oF152uN5FcLmmq+nO3Yl7pU=","revision":"d17a8420c36e800fcb46bbd4d2a15b93c68605ea","revisionTime":"2016-11-09T19:23:37Z"}, {"path":"github.com/circonus-labs/circonus-gometrics/checkmgr","checksumSHA1":"beRBHHy2+V6Ht4cACIMmZOCnzgg=","revision":"d17a8420c36e800fcb46bbd4d2a15b93c68605ea","revisionTime":"2016-11-09T19:23:37Z"}, {"path":"github.com/circonus-labs/circonusllhist","checksumSHA1":"C4Z7+l5GOpOCW5DcvNYzheGvQRE=","revision":"365d370cc1459bdcaceda3499453668373dea1d0","revisionTime":"2016-11-10T00:26:50Z"}, + {"path":"github.com/coredns/coredns/plugin/pkg/dnsutil","checksumSHA1":"EoOyMf0m3NkVWRxJ4jGUSkVCM8c=","revision":"582f91f3f3aa0b956c152b72ad9c95b8f597a2b0","revisionTime":"2018-04-23T12:44:33Z","version":"v1.1.2","versionExact":"v1.1.2"}, {"path":"github.com/davecgh/go-spew/spew","checksumSHA1":"dvabztWVQX8f6oMLRyv4dLH+TGY=","revision":"346938d642f2ec3594ed81d874461961cd0faa76","revisionTime":"2016-10-29T20:57:26Z"}, {"path":"github.com/docker/go-connections/sockets","checksumSHA1":"jUfDG3VQsA2UZHvvIXncgiddpYA=","revision":"3ede32e2033de7505e6500d6c868c2b9ed9f169d","revisionTime":"2017-06-23T20:36:43Z"}, {"path":"github.com/elazarl/go-bindata-assetfs","checksumSHA1":"5ftkjfUwI9A6xCQ1PwIAd5+qlo0=","revision":"e1a2a7ec64b07d04ac9ebb072404fe8b7b60de1b","revisionTime":"2016-08-03T19:23:04Z"}, @@ -33,15 +36,16 @@ {"path":"github.com/hashicorp/errwrap","checksumSHA1":"cdOCt0Yb+hdErz8NAQqayxPmRsY=","revision":"7554cd9344cec97297fa6649b055a8c98c2a1e55","revisionTime":"2014-10-28T05:47:10Z"}, {"path":"github.com/hashicorp/go-checkpoint","checksumSHA1":"D267IUMW2rcb+vNe3QU+xhfSrgY=","revision":"1545e56e46dec3bba264e41fde2c1e2aa65b5dd4","revisionTime":"2017-10-09T17:35:28Z"}, {"path":"github.com/hashicorp/go-cleanhttp","checksumSHA1":"YAq1rqZIp+M74Q+jMBQkkMKm3VM=","revision":"d5fe4b57a186c716b0e00b8c301cbd9b4182694d","revisionTime":"2017-12-18T14:54:08Z"}, - {"path":"github.com/hashicorp/go-discover","checksumSHA1":"yG6DzmNiB7kOdLcgvI1v9GacoSA=","revision":"4e49190abe2f3801a8653d7745a14bc445381615","revisionTime":"2018-01-20T00:19:59Z"}, - {"path":"github.com/hashicorp/go-discover/provider/aliyun","checksumSHA1":"ZmU/47XUGUQpFP6E8T6Tl8QKszI=","revision":"c98e36ab72ce62b7d8fbc7f7e76f9a60e163cb45","revisionTime":"2017-10-30T10:26:55Z","tree":true}, - {"path":"github.com/hashicorp/go-discover/provider/aws","checksumSHA1":"lyPRg8aZKgGiNkMILk/VKwOqMy4=","revision":"c98e36ab72ce62b7d8fbc7f7e76f9a60e163cb45","revisionTime":"2017-10-30T10:26:55Z","tree":true}, - {"path":"github.com/hashicorp/go-discover/provider/azure","checksumSHA1":"xgO+vNiKIhQlH8cPbkX9TCZXBKQ=","revision":"8f2af0ac44208783caab4dd65462ffb965229c60","revisionTime":"2018-02-08T17:16:50Z","tree":true}, - {"path":"github.com/hashicorp/go-discover/provider/digitalocean","checksumSHA1":"qoy/euk2dwrONYMUsaAPznHHpxQ=","revision":"c98e36ab72ce62b7d8fbc7f7e76f9a60e163cb45","revisionTime":"2017-10-30T10:26:55Z","tree":true}, - {"path":"github.com/hashicorp/go-discover/provider/gce","checksumSHA1":"tnKls5vtzpNQAj7b987N4i81HvY=","revision":"7642001b443a3723e2aba277054f16d1df172d97","revisionTime":"2018-01-03T21:14:29Z","tree":true}, - {"path":"github.com/hashicorp/go-discover/provider/os","checksumSHA1":"LZwn9B00AjulYRCKapmJWFAamoo=","revision":"c98e36ab72ce62b7d8fbc7f7e76f9a60e163cb45","revisionTime":"2017-10-30T10:26:55Z","tree":true}, - {"path":"github.com/hashicorp/go-discover/provider/scaleway","checksumSHA1":"GQ/3AvzdX6T0rtEFeGNYhwt17Zs=","revision":"c98e36ab72ce62b7d8fbc7f7e76f9a60e163cb45","revisionTime":"2017-10-30T10:26:55Z","tree":true}, - {"path":"github.com/hashicorp/go-discover/provider/softlayer","checksumSHA1":"SIyZ44AHIUTBfI336ACpCeybsLg=","revision":"c98e36ab72ce62b7d8fbc7f7e76f9a60e163cb45","revisionTime":"2017-10-30T10:26:55Z","tree":true}, + {"path":"github.com/hashicorp/go-discover","checksumSHA1":"+T8fKow3MG8Fh08DPJvkDpQ609E=","revision":"b55bdf9045538dc6f39482d97b128959e8f089a6","revisionTime":"2018-05-04T18:26:03Z"}, + {"path":"github.com/hashicorp/go-discover/provider/aliyun","checksumSHA1":"Jww5zrDwjMoFF31RqBapilTdi18=","revision":"b55bdf9045538dc6f39482d97b128959e8f089a6","revisionTime":"2018-05-04T18:26:03Z","tree":true}, + {"path":"github.com/hashicorp/go-discover/provider/aws","checksumSHA1":"Vit45xRjrJ6h7IGJndrBjodVUAE=","revision":"b55bdf9045538dc6f39482d97b128959e8f089a6","revisionTime":"2018-05-04T18:26:03Z","tree":true}, + {"path":"github.com/hashicorp/go-discover/provider/azure","checksumSHA1":"FpPWpmKgj6ONMcWL7ebfXd8K6Kw=","revision":"b55bdf9045538dc6f39482d97b128959e8f089a6","revisionTime":"2018-05-04T18:26:03Z","tree":true}, + {"path":"github.com/hashicorp/go-discover/provider/digitalocean","checksumSHA1":"TthiY6qza4DnHPLXBq7re5ngNOY=","revision":"b55bdf9045538dc6f39482d97b128959e8f089a6","revisionTime":"2018-05-04T18:26:03Z","tree":true}, + {"path":"github.com/hashicorp/go-discover/provider/gce","checksumSHA1":"bQHkaF9dUFUYJLQ0MkVLIlCIVaE=","revision":"b55bdf9045538dc6f39482d97b128959e8f089a6","revisionTime":"2018-05-04T18:26:03Z","tree":true}, + {"path":"github.com/hashicorp/go-discover/provider/os","checksumSHA1":"b4K8mZAZZ78/rMiSNIPM9H9MBSI=","revision":"b55bdf9045538dc6f39482d97b128959e8f089a6","revisionTime":"2018-05-04T18:26:03Z","tree":true}, + {"path":"github.com/hashicorp/go-discover/provider/scaleway","checksumSHA1":"GQ/3AvzdX6T0rtEFeGNYhwt17Zs=","revision":"b55bdf9045538dc6f39482d97b128959e8f089a6","revisionTime":"2018-05-04T18:26:03Z","tree":true}, + {"path":"github.com/hashicorp/go-discover/provider/softlayer","checksumSHA1":"SIyZ44AHIUTBfI336ACpCeybsLg=","revision":"b55bdf9045538dc6f39482d97b128959e8f089a6","revisionTime":"2018-05-04T18:26:03Z","tree":true}, + {"path":"github.com/hashicorp/go-discover/provider/triton","checksumSHA1":"OmBrnagVa2akyR9nbQjia28lunE=","revision":"b55bdf9045538dc6f39482d97b128959e8f089a6","revisionTime":"2018-05-04T18:26:03Z"}, {"path":"github.com/hashicorp/go-immutable-radix","checksumSHA1":"Cas2nprG6pWzf05A2F/OlnjUu2Y=","revision":"8aac2701530899b64bdea735a1de8da899815220","revisionTime":"2017-07-25T22:12:15Z"}, {"path":"github.com/hashicorp/go-memdb","checksumSHA1":"T65qvYBTy4rYks7oN+U0muEqtRw=","revision":"2b2d6c35e14e7557ea1003e707d5e179fa315028","revisionTime":"2017-07-25T22:15:03Z"}, {"path":"github.com/hashicorp/go-msgpack/codec","checksumSHA1":"TNlVzNR1OaajcNi3CbQ3bGbaLGU=","revision":"fa3f63826f7c23912c15263591e65d54d080b458","revisionTime":"2015-05-18T23:42:57Z"}, @@ -71,21 +75,36 @@ {"path":"github.com/hashicorp/net-rpc-msgpackrpc","checksumSHA1":"qnlqWJYV81ENr61SZk9c65R1mDo=","revision":"a14192a58a694c123d8fe5481d4a4727d6ae82f3","revisionTime":"2015-11-16T02:03:38Z"}, {"path":"github.com/hashicorp/raft","checksumSHA1":"JjJtGJi1ywWhVhs/PvTXxe4TeD8=","revision":"6d14f0c70869faabd9e60ba7ed88a6cbbd6a661f","revisionTime":"2017-10-03T22:09:13Z","version":"v1.0.0","versionExact":"v1.0.0"}, {"path":"github.com/hashicorp/raft-boltdb","checksumSHA1":"QAxukkv54/iIvLfsUP6IK4R0m/A=","revision":"d1e82c1ec3f15ee991f7cc7ffd5b67ff6f5bbaee","revisionTime":"2015-02-01T20:08:39Z"}, - {"path":"github.com/hashicorp/serf/coordinate","checksumSHA1":"0PeWsO2aI+2PgVYlYlDPKfzCLEQ=","comment":"v0.7.0-66-g6c4672d","revision":"b6017ae61f4420ed0c02d5eeeb9ff3fc02953f14","revisionTime":"2018-01-19T22:43:00Z"}, - {"path":"github.com/hashicorp/serf/serf","checksumSHA1":"QGImnWfhk0ILLZszcf3vRs/Ft7g=","comment":"v0.7.0-66-g6c4672d","revision":"b6017ae61f4420ed0c02d5eeeb9ff3fc02953f14","revisionTime":"2018-01-19T22:43:00Z"}, - {"path":"github.com/hashicorp/yamux","checksumSHA1":"NnWv17i1tpvBNJtpdRRWpE6j4LY=","revision":"2658be15c5f05e76244154714161f17e3e77de2e","revisionTime":"2018-03-14T20:07:45Z"}, + {"path":"github.com/hashicorp/serf/coordinate","checksumSHA1":"0PeWsO2aI+2PgVYlYlDPKfzCLEQ=","revision":"4b67f2c2b2bb5b748d934a6d48221062e43d2274","revisionTime":"2018-05-04T20:06:40Z"}, + {"path":"github.com/hashicorp/serf/serf","checksumSHA1":"QrT+nzyXsD/MmhTjjhcPdnALZ1I=","revision":"4b67f2c2b2bb5b748d934a6d48221062e43d2274","revisionTime":"2018-05-04T20:06:40Z"}, + {"path":"github.com/hashicorp/yamux","checksumSHA1":"jJouEcBeEAO0ejDRJoT67jL8NjQ=","revision":"3520598351bb3500a49ae9563f5539666ae0a27c","revisionTime":"2018-06-04T19:48:46Z"}, + {"path":"github.com/joyent/triton-go","checksumSHA1":"LuvUVcxSYc0KkzpqNJArgiPMtNU=","revision":"7283d1d02f7a297bf2f068178a084c5bd090002c","revisionTime":"2018-04-27T15:22:50Z"}, + {"path":"github.com/joyent/triton-go/authentication","checksumSHA1":"yNrArK8kjkVkU0bunKlemd6dFkE=","revision":"7283d1d02f7a297bf2f068178a084c5bd090002c","revisionTime":"2018-04-27T15:22:50Z"}, + {"path":"github.com/joyent/triton-go/client","checksumSHA1":"nppv6i9E2yqdbQ6qJkahCwELSeI=","revision":"7283d1d02f7a297bf2f068178a084c5bd090002c","revisionTime":"2018-04-27T15:22:50Z"}, + {"path":"github.com/joyent/triton-go/compute","checksumSHA1":"PTwWWEFRC4GzXM91gQj5xBMF3GM=","revision":"7283d1d02f7a297bf2f068178a084c5bd090002c","revisionTime":"2018-04-27T15:22:50Z"}, + {"path":"github.com/joyent/triton-go/errors","checksumSHA1":"d/Py6j/uMgOAFNFGpsQrNnSsO+k=","revision":"7283d1d02f7a297bf2f068178a084c5bd090002c","revisionTime":"2018-04-27T15:22:50Z"}, {"path":"github.com/mattn/go-isatty","checksumSHA1":"xZuhljnmBysJPta/lMyYmJdujCg=","revision":"66b8e73f3f5cda9f96b69efd03dd3d7fc4a5cdb8","revisionTime":"2016-08-06T12:27:52Z"}, - {"path":"github.com/miekg/dns","checksumSHA1":"XTeOihCDhjG6ltUKExoJ2uEzShk=","revision":"5364553f1ee9cddc7ac8b62dce148309c386695b","revisionTime":"2018-01-25T10:38:03Z","version":"v1.0.4","versionExact":"v1.0.4"}, + {"path":"github.com/matttproud/golang_protobuf_extensions/pbutil","checksumSHA1":"bKMZjd2wPw13VwoE7mBeSv5djFA=","revision":"c12348ce28de40eed0136aa2b644d0ee0650e56c","revisionTime":"2016-04-24T11:30:07Z"}, + {"path":"github.com/miekg/dns","checksumSHA1":"ybBd9oDdeJEZj9YmIKGqaBVqZok=","revision":"e57bf427e68187a27e22adceac868350d7a7079b","revisionTime":"2018-05-16T07:59:02Z","version":"v1.0.7","versionExact":"v1.0.7"}, {"path":"github.com/mitchellh/cli","checksumSHA1":"GzfpPGtV2UJH9hFsKwzGjKrhp/A=","revision":"dff723fff508858a44c1f4bd0911f00d73b0202f","revisionTime":"2017-09-05T22:10:09Z"}, {"path":"github.com/mitchellh/copystructure","checksumSHA1":"86nE93o1VIND0Doe8PuhCXnhUx0=","revision":"cdac8253d00f2ecf0a0b19fbff173a9a72de4f82","revisionTime":"2016-08-04T03:23:30Z"}, {"path":"github.com/mitchellh/go-homedir","checksumSHA1":"V/quM7+em2ByJbWBLOsEwnY3j/Q=","revision":"b8bc1bf767474819792c23f32d8286a45736f1c6","revisionTime":"2016-12-03T19:45:07Z"}, {"path":"github.com/mitchellh/go-testing-interface","checksumSHA1":"bDdhmDk8q6utWrccBhEOa6IoGkE=","revision":"a61a99592b77c9ba629d254a693acffaeb4b7e28","revisionTime":"2017-10-04T22:19:16Z"}, + {"path":"github.com/mitchellh/hashstructure","checksumSHA1":"tWUjKyFOGJtYExocPWVYiXBYsfE=","revision":"2bca23e0e452137f789efbc8610126fd8b94f73b","revisionTime":"2017-06-09T04:59:27Z"}, {"path":"github.com/mitchellh/mapstructure","checksumSHA1":"gILp4IL+xwXLH6tJtRLrnZ56F24=","revision":"06020f85339e21b2478f756a78e295255ffa4d6a","revisionTime":"2017-10-17T17:18:08Z"}, {"path":"github.com/mitchellh/reflectwalk","checksumSHA1":"mrqMlK6gqe//WsJSrJ1HgkPM0lM=","revision":"eecf4c70c626c7cfbb95c90195bc34d386c74ac6","revisionTime":"2015-05-27T15:31:53Z"}, {"path":"github.com/pascaldekloe/goe/verify","checksumSHA1":"5h+ERzHw3Rl2G0kFPxoJzxiA9s0=","revision":"07ebd1e2481f616a278ab431cf04cc5cf5ab3ebe","revisionTime":"2017-03-28T18:37:59Z"}, {"path":"github.com/pkg/errors","checksumSHA1":"ynJSWoF6v+3zMnh9R0QmmG6iGV8=","revision":"ff09b135c25aae272398c51a07235b90a75aa4f0","revisionTime":"2017-03-16T20:15:38Z","tree":true}, {"path":"github.com/pmezard/go-difflib/difflib","checksumSHA1":"LuFv4/jlrmFNnDb/5SCSEPAM9vU=","revision":"792786c7400a136282c1664665ae0a8db921c6c2","revisionTime":"2016-01-10T10:55:54Z"}, {"path":"github.com/posener/complete","checksumSHA1":"Nt4Ol6ZM2n0XD5zatxjwEYBpQnw=","revision":"dc2bc5a81accba8782bebea28628224643a8286a","revisionTime":"2017-11-04T09:57:02Z","version":"=v1.1","versionExact":"v1.1"}, + {"path":"github.com/prometheus/client_golang/prometheus","checksumSHA1":"I87tkF1e/hrl4d/XIKFfkPRq1ww=","revision":"f504d69affe11ec1ccb2e5948127f86878c9fd57","revisionTime":"2018-03-28T13:04:30Z"}, + {"path":"github.com/prometheus/client_golang/prometheus/promhttp","checksumSHA1":"BM771aKU6hC+5rap48aqvMXczII=","revision":"f504d69affe11ec1ccb2e5948127f86878c9fd57","revisionTime":"2018-03-28T13:04:30Z"}, + {"path":"github.com/prometheus/client_model/go","checksumSHA1":"DvwvOlPNAgRntBzt3b3OSRMS2N4=","revision":"99fa1f4be8e564e8a6b613da7fa6f46c9edafc6c","revisionTime":"2017-11-17T10:05:41Z"}, + {"path":"github.com/prometheus/common/expfmt","checksumSHA1":"+wZ+Pa6NX+NOxUvayXBXGOcqFe8=","revision":"38c53a9f4bfcd932d1b00bfc65e256a7fba6b37a","revisionTime":"2018-03-26T16:04:09Z"}, + {"path":"github.com/prometheus/common/model","checksumSHA1":"YU+/K48IMawQnToO4ETE6a+hhj4=","revision":"38c53a9f4bfcd932d1b00bfc65e256a7fba6b37a","revisionTime":"2018-03-26T16:04:09Z"}, + {"path":"github.com/prometheus/procfs","checksumSHA1":"Etvt6mgzvD7ARf4Ux03LHfgSlzU=","revision":"780932d4fbbe0e69b84c34c20f5c8d0981e109ea","revisionTime":"2018-03-21T23:08:12Z"}, + {"path":"github.com/prometheus/procfs/nfs","checksumSHA1":"HSP5hVT0CNMRa8+Xtz4z2Ic5U0E=","revision":"8b1c2da0d56deffdbb9e48d4414b4e674bd8083e","revisionTime":"2018-04-08T09:29:02Z"}, + {"path":"github.com/prometheus/procfs/xfs","checksumSHA1":"yItvTQLUVqm/ArLEbvEhqG0T5a0=","revision":"8b1c2da0d56deffdbb9e48d4414b4e674bd8083e","revisionTime":"2018-04-08T09:29:02Z"}, {"path":"github.com/ryanuber/columnize","checksumSHA1":"ExnVEVNT8APpFTm26cUb5T09yR4=","comment":"v2.0.1-8-g983d3a5","revision":"9b3edd62028f107d7cabb19353292afd29311a4e","revisionTime":"2016-07-12T16:32:29Z"}, {"path":"github.com/sean-/seed","checksumSHA1":"A/YUMbGg1LHIeK2+NLZBt+MIAao=","revision":"3c72d44db0c567f7c901f9c5da5fe68392227750","revisionTime":"2017-02-08T16:47:21Z"}, {"path":"github.com/sergi/go-diff/diffmatchpatch","checksumSHA1":"v7C+aJ1D/z3MEeCte6bxvpoGjM4=","revision":"feef008d51ad2b3778f85d387ccf91735543008d","revisionTime":"2017-04-09T07:17:39Z"}, @@ -97,14 +116,27 @@ {"path":"github.com/shirou/gopsutil/process","checksumSHA1":"JX0bRK/BdKVfbm4XOxMducVdY58=","revision":"32b6636de04b303274daac3ca2b10d3b0e4afc35","revisionTime":"2017-02-04T05:36:48Z"}, {"path":"github.com/shirou/w32","checksumSHA1":"Nve7SpDmjsv6+rhkXAkfg/UQx94=","revision":"bb4de0191aa41b5507caa14b0650cdbddcd9280b","revisionTime":"2016-09-30T03:27:40Z"}, {"path":"github.com/stretchr/testify/assert","checksumSHA1":"6LwXZI7kXm1C0h4Ui0Y52p9uQhk=","revision":"c679ae2cc0cb27ec3293fea7e254e47386f05d69","revisionTime":"2018-03-14T08:05:35Z"}, + {"path":"github.com/stretchr/testify/mock","checksumSHA1":"Qloi2PTvZv+D9FDHXM/banCoaFY=","revision":"c679ae2cc0cb27ec3293fea7e254e47386f05d69","revisionTime":"2018-03-14T08:05:35Z"}, {"path":"github.com/stretchr/testify/require","checksumSHA1":"KqYmXUcuGwsvBL6XVsQnXsFb3LI=","revision":"c679ae2cc0cb27ec3293fea7e254e47386f05d69","revisionTime":"2018-03-14T08:05:35Z"}, {"path":"github.com/tonnerre/golang-text","checksumSHA1":"t24KnvC9jRxiANVhpw2pqFpmEu8=","revision":"048ed3d792f7104850acbc8cfc01e5a6070f4c04","revisionTime":"2013-09-25T19:58:46Z"}, + {"path":"golang.org/x/crypto/curve25519","checksumSHA1":"IQkUIOnvlf0tYloFx9mLaXSvXWQ=","revision":"2d027ae1dddd4694d54f7a8b6cbe78dca8720226","revisionTime":"2018-05-09T20:48:04Z"}, + {"path":"golang.org/x/crypto/ed25519","checksumSHA1":"VqyzfAMKyP6SoLnPHcwhkrICBo0=","revision":"2d027ae1dddd4694d54f7a8b6cbe78dca8720226","revisionTime":"2018-05-09T20:48:04Z"}, + {"path":"golang.org/x/crypto/ed25519/internal/edwards25519","checksumSHA1":"0JTAFXPkankmWcZGQJGScLDiaN8=","revision":"2d027ae1dddd4694d54f7a8b6cbe78dca8720226","revisionTime":"2018-05-09T20:48:04Z"}, + {"path":"golang.org/x/crypto/internal/chacha20","checksumSHA1":"SEPNUEkZaGKt3dkO3B13pRAp6ho=","revision":"2d027ae1dddd4694d54f7a8b6cbe78dca8720226","revisionTime":"2018-05-09T20:48:04Z"}, + {"path":"golang.org/x/crypto/poly1305","checksumSHA1":"kVKE0OX1Xdw5mG7XKT86DLLKE2I=","revision":"2d027ae1dddd4694d54f7a8b6cbe78dca8720226","revisionTime":"2018-05-09T20:48:04Z"}, + {"path":"golang.org/x/crypto/ssh","checksumSHA1":"acLRVrKhcyCKY585ZGjamSwx2jQ=","revision":"2d027ae1dddd4694d54f7a8b6cbe78dca8720226","revisionTime":"2018-05-09T20:48:04Z"}, + {"path":"golang.org/x/crypto/ssh/agent","checksumSHA1":"R9VBzgWGaphXv2/b4DLeMAbq9Xg=","revision":"2d027ae1dddd4694d54f7a8b6cbe78dca8720226","revisionTime":"2018-05-09T20:48:04Z"}, + {"path":"golang.org/x/net/bpf","checksumSHA1":"NjyXtXsaf0ulRJn6HQSP1FqGL4A=","revision":"f73e4c9ed3b7ebdd5f699a16a880c2b1994e50dd","revisionTime":"2018-05-08T00:58:03Z"}, {"path":"golang.org/x/net/context","checksumSHA1":"9jjO5GjLa0XF/nfWihF02RoH4qc=","revision":"075e191f18186a8ff2becaf64478e30f4545cdad","revisionTime":"2016-08-05T06:12:51Z"}, {"path":"golang.org/x/net/context/ctxhttp","checksumSHA1":"WHc3uByvGaMcnSoI21fhzYgbOgg=","revision":"075e191f18186a8ff2becaf64478e30f4545cdad","revisionTime":"2016-08-05T06:12:51Z"}, {"path":"golang.org/x/net/http2","checksumSHA1":"aaproqDPgHPV5s7lKzClAdCaDKQ=","revision":"01c190206fbdffa42f334f4b2bf2220f50e64920","revisionTime":"2017-11-02T18:53:09Z"}, {"path":"golang.org/x/net/http2/hpack","checksumSHA1":"ezWhc7n/FtqkLDQKeU2JbW+80tE=","revision":"01c190206fbdffa42f334f4b2bf2220f50e64920","revisionTime":"2017-11-02T18:53:09Z"}, {"path":"golang.org/x/net/idna","checksumSHA1":"RcrB7tgYS/GMW4QrwVdMOTNqIU8=","revision":"01c190206fbdffa42f334f4b2bf2220f50e64920","revisionTime":"2017-11-02T18:53:09Z"}, + {"path":"golang.org/x/net/internal/iana","checksumSHA1":"KZoApXkpu6ucvSiKDep+5bQDNUo=","revision":"f73e4c9ed3b7ebdd5f699a16a880c2b1994e50dd","revisionTime":"2018-05-08T00:58:03Z"}, + {"path":"golang.org/x/net/internal/socket","checksumSHA1":"YsXlbexuTtUXHyhSv927ILOkf6A=","revision":"f73e4c9ed3b7ebdd5f699a16a880c2b1994e50dd","revisionTime":"2018-05-08T00:58:03Z"}, {"path":"golang.org/x/net/internal/timeseries","checksumSHA1":"UxahDzW2v4mf/+aFxruuupaoIwo=","revision":"d866cfc389cec985d6fda2859936a575a55a3ab6","revisionTime":"2017-12-11T20:45:21Z"}, + {"path":"golang.org/x/net/ipv4","checksumSHA1":"ncLr3evob5ZOUHJS528IQoI8CTg=","revision":"f73e4c9ed3b7ebdd5f699a16a880c2b1994e50dd","revisionTime":"2018-05-08T00:58:03Z"}, + {"path":"golang.org/x/net/ipv6","checksumSHA1":"xqt5auCDSuvg5dm07p60loM67/A=","revision":"f73e4c9ed3b7ebdd5f699a16a880c2b1994e50dd","revisionTime":"2018-05-08T00:58:03Z"}, {"path":"golang.org/x/net/lex/httplex","checksumSHA1":"3xyuaSNmClqG4YWC7g0isQIbUTc=","revision":"01c190206fbdffa42f334f4b2bf2220f50e64920","revisionTime":"2017-11-02T18:53:09Z"}, {"path":"golang.org/x/net/proxy","checksumSHA1":"QEm/dePZ0lOnyOs+m22KjXfJ/IU=","revision":"02ac38e2528ff4adea90f184d71a3faa04b4b1b0","revisionTime":"2017-07-18T17:12:47Z"}, {"path":"golang.org/x/net/trace","checksumSHA1":"u/r66lwYfgg682u5hZG7/E7+VCY=","revision":"d866cfc389cec985d6fda2859936a575a55a3ab6","revisionTime":"2017-12-11T20:45:21Z"}, diff --git a/version/version.go b/version/version.go index 6772ae695..5477d0ae3 100644 --- a/version/version.go +++ b/version/version.go @@ -15,7 +15,7 @@ var ( // // Version must conform to the format expected by github.com/hashicorp/go-version // for tests to work. - Version = "1.0.7" + Version = "1.1.0" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release diff --git a/watch/plan.go b/watch/plan.go index 9f470018e..fff9da7c7 100644 --- a/watch/plan.go +++ b/watch/plan.go @@ -19,11 +19,17 @@ const ( maxBackoffTime = 180 * time.Second ) -// Run is used to run a watch plan func (p *Plan) Run(address string) error { + return p.RunWithConfig(address, nil) +} + +// Run is used to run a watch plan +func (p *Plan) RunWithConfig(address string, conf *consulapi.Config) error { // Setup the client p.address = address - conf := consulapi.DefaultConfig() + if conf == nil { + conf = consulapi.DefaultConfig() + } conf.Address = address conf.Datacenter = p.Datacenter conf.Token = p.Token diff --git a/website/Gemfile b/website/Gemfile index d21d35e45..975949205 100644 --- a/website/Gemfile +++ b/website/Gemfile @@ -1,3 +1,3 @@ source "https://rubygems.org" -gem "middleman-hashicorp", "0.3.30" +gem "middleman-hashicorp", "0.3.35" diff --git a/website/Gemfile.lock b/website/Gemfile.lock index 8958e299f..f5f5c577c 100644 --- a/website/Gemfile.lock +++ b/website/Gemfile.lock @@ -1,16 +1,3 @@ -GIT - remote: https://github.com/hashicorp/middleman-hashicorp - revision: 9cd0ee84bfd883d1805a1756ab98e6a54303fd61 - specs: - middleman-hashicorp (0.3.29) - bootstrap-sass (~> 3.3) - builder (~> 3.2) - middleman (~> 3.4) - middleman-livereload (~> 3.4) - middleman-syntax (~> 3.0) - redcarpet (~> 3.3) - turbolinks (~> 5.0) - GEM remote: https://rubygems.org/ specs: @@ -19,7 +6,7 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) - autoprefixer-rails (8.1.0) + autoprefixer-rails (8.2.0) execjs bootstrap-sass (3.3.7) autoprefixer-rails (>= 5.2.1) @@ -91,6 +78,14 @@ GEM rack (>= 1.4.5, < 2.0) thor (>= 0.15.2, < 2.0) tilt (~> 1.4.1, < 2.0) + middleman-hashicorp (0.3.35) + bootstrap-sass (~> 3.3) + builder (~> 3.2) + middleman (~> 3.4) + middleman-livereload (~> 3.4) + middleman-syntax (~> 3.0) + redcarpet (~> 3.3) + turbolinks (~> 5.0) middleman-livereload (3.4.6) em-websocket (~> 0.5.1) middleman-core (>= 3.3) @@ -118,9 +113,9 @@ GEM padrino-support (0.12.9) activesupport (>= 3.1) rack (1.6.9) - rack-livereload (0.3.16) + rack-livereload (0.3.17) rack - rack-test (0.8.3) + rack-test (1.0.0) rack (>= 1.0, < 3) rb-fsevent (0.10.3) rb-inotify (0.9.10) @@ -142,7 +137,7 @@ GEM thor (0.20.0) thread_safe (0.3.6) tilt (1.4.1) - turbolinks (5.1.0) + turbolinks (5.1.1) turbolinks-source (~> 5.1) turbolinks-source (5.1.0) tzinfo (1.2.5) @@ -158,7 +153,7 @@ PLATFORMS ruby DEPENDENCIES - middleman-hashicorp! + middleman-hashicorp (= 0.3.35) BUNDLED WITH 1.16.1 diff --git a/website/Makefile b/website/Makefile index 4d3d361b7..7497725e4 100644 --- a/website/Makefile +++ b/website/Makefile @@ -1,4 +1,4 @@ -VERSION?="0.3.28" +VERSION?="0.3.35" build: @echo "==> Starting build in Docker..." @@ -7,6 +7,7 @@ build: --rm \ --tty \ --volume "$(shell pwd):/website" \ + -e "ENV=production" \ hashicorp/middleman-hashicorp:${VERSION} \ bundle exec middleman build --verbose --clean diff --git a/website/config.rb b/website/config.rb index 74a882852..eca59c546 100644 --- a/website/config.rb +++ b/website/config.rb @@ -2,11 +2,21 @@ set :base_url, "https://www.consul.io/" activate :hashicorp do |h| h.name = "consul" - h.version = "1.0.6" + h.version = "1.1.0" h.github_slug = "hashicorp/consul" end helpers do + # Returns a segment tracking ID such that local development is not + # tracked to production systems. + def segmentId() + if (ENV['ENV'] == 'production') + 'IyzLrqXkox5KJ8XL4fo8vTYNGfiKlTCm' + else + '0EXTgkNx0Ydje2PGXVbRhpKKoe5wtzcE' + end + end + # Returns the FQDN of the image URL. # # @param [String] path @@ -35,7 +45,7 @@ helpers do # # @return [String] def description_for(page) - description = (page.data.description || "") + description = (page.data.description || "Consul by HashiCorp") .gsub('"', '') .gsub(/\n+/, ' ') .squeeze(' ') diff --git a/website/packer.json b/website/packer.json index cbfb5c565..c57fa74ef 100644 --- a/website/packer.json +++ b/website/packer.json @@ -3,12 +3,13 @@ "aws_access_key_id": "{{ env `AWS_ACCESS_KEY_ID` }}", "aws_secret_access_key": "{{ env `AWS_SECRET_ACCESS_KEY` }}", "aws_region": "{{ env `AWS_REGION` }}", + "website_environment": "production", "fastly_api_key": "{{ env `FASTLY_API_KEY` }}" }, "builders": [ { "type": "docker", - "image": "hashicorp/middleman-hashicorp:0.3.29", + "image": "hashicorp/middleman-hashicorp:0.3.35", "discard": "true", "volumes": { "{{ pwd }}": "/website" @@ -22,6 +23,7 @@ "AWS_ACCESS_KEY_ID={{ user `aws_access_key_id` }}", "AWS_SECRET_ACCESS_KEY={{ user `aws_secret_access_key` }}", "AWS_REGION={{ user `aws_region` }}", + "ENV={{ user `website_environment` }}", "FASTLY_API_KEY={{ user `fastly_api_key` }}" ], "inline": [ diff --git a/website/source/api/agent.html.md b/website/source/api/agent.html.md index 0ea8af64e..8bbe80875 100644 --- a/website/source/api/agent.html.md +++ b/website/source/api/agent.html.md @@ -237,14 +237,19 @@ $ curl \ This endpoint returns the configuration and member information of the local agent. -| Method | Path | Produces | -| ------ | ---------------------------- | -------------------------- | -| `GET` | `/agent/metrics` | `application/json` | +| Method | Path | Produces | +| ------ | ---------------------------------- | ------------------------------------------ | +| `GET` | `/agent/metrics` | `application/json` | +| `GET` | `/agent/metrics?format=prometheus` | `text/plain; version=0.0.4; charset=utf-8` | This endpoint will dump the metrics for the most recent finished interval. For more information about metrics, see the [telemetry](/docs/agent/telemetry.html) page. +In order to enable [Prometheus](https://prometheus.io/) support, you need to use the +configuration directive +[`prometheus_retention_time`](/docs/agent/options.html#telemetry-prometheus_retention_time). + | Blocking Queries | Consistency Modes | ACL Required | | ---------------- | ----------------- | ------------ | | `NO` | `none` | `agent:read` | diff --git a/website/source/api/operator/license.html.md b/website/source/api/operator/license.html.md new file mode 100644 index 000000000..c0e046e72 --- /dev/null +++ b/website/source/api/operator/license.html.md @@ -0,0 +1,143 @@ +--- +layout: api +page_title: License - Operator - HTTP API +sidebar_current: api-operator-license +description: |- + The /operator/license endpoints allow for setting and retrieving the Consul + Enterprise License. +--- + +# License - Operator HTTP API + +~> **Enterprise Only!** This API endpoint and functionality only exists in +Consul Enterprise. This is not present in the open source version of Consul. + +The licensing functionality described here is available only in +[Consul Enterprise](https://www.hashicorp.com/products/consul/) version 1.1.0 and later. + +## Getting the Consul License + +This endpoint gets information about the current license. + +| Method | Path | Produces | +| ------ | ---------------------------- | -------------------------- | +| `GET` | `/operator/license` | `application/json` | + +The table below shows this endpoint's support for +[blocking queries](/api/index.html#blocking-queries), +[consistency modes](/api/index.html#consistency-modes), and +[required ACLs](/api/index.html#acls). + +| Blocking Queries | Consistency Modes | ACL Required | +| ---------------- | ----------------- | ---------------- | +| `NO` | `all` | `none` | + +### Parameters + +- `dc` `(string: "")` - Specifies the datacenter whose license should be retrieved. + This will default to the datacenter of the agent serving the HTTP request. + This is specified as a URL query parameter. + +### Sample Request + +```text +$ curl \ + https://consul.rocks/v1/operator/license +``` + +### Sample Response + +```json +{ + "Valid": true, + "License": { + "license_id": "2afbf681-0d1a-0649-cb6c-333ec9f0989c", + "customer_id": "0259271d-8ffc-e85e-0830-c0822c1f5f2b", + "installation_id": "*", + "issue_time": "2018-05-21T20:03:35.911567355Z", + "start_time": "2018-05-21T04:00:00Z", + "expiration_time": "2019-05-22T03:59:59.999Z", + "product": "consul", + "flags": { + "package": "premium" + }, + "features": [ + "Automated Backups", + "Automated Upgrades", + "Enhanced Read Scalability", + "Network Segments", + "Redundancy Zone", + "Advanced Network Federation" + ], + "temporary": false + }, + "Warnings": [] +} +``` + +## Updating the Consul License + +This endpoint updates the Consul license and returns some of the +license contents as well as any warning messages regarding its validity. + +| Method | Path | Produces | +| ------ | ---------------------------- | -------------------------- | +| `PUT` | `/operator/license` | `application/json` | + +The table below shows this endpoint's support for +[blocking queries](/api/index.html#blocking-queries), +[consistency modes](/api/index.html#consistency-modes), and +[required ACLs](/api/index.html#acls). + +| Blocking Queries | Consistency Modes | ACL Required | +| ---------------- | ----------------- | ---------------- | +| `NO` | `none` | `operator:write` | + +### Parameters + +- `dc` `(string: "")` - Specifies the datacenter whose license should be updated. + This will default to the datacenter of the agent serving the HTTP request. + This is specified as a URL query parameter. + +### Sample Payload + +The payload is the raw license blob. + +### Sample Request + +```text +$ curl \ + --request PUT \ + --data @consul.license \ + https://consul.rocks/v1/operator/license +``` + +### Sample Response + +```json +{ + "Valid": true, + "License": { + "license_id": "2afbf681-0d1a-0649-cb6c-333ec9f0989c", + "customer_id": "0259271d-8ffc-e85e-0830-c0822c1f5f2b", + "installation_id": "*", + "issue_time": "2018-05-21T20:03:35.911567355Z", + "start_time": "2018-05-21T04:00:00Z", + "expiration_time": "2019-05-22T03:59:59.999Z", + "product": "consul", + "flags": { + "package": "premium" + }, + "features": [ + "Automated Backups", + "Automated Upgrades", + "Enhanced Read Scalability", + "Network Segments", + "Redundancy Zone", + "Advanced Network Federation" + ], + "temporary": false + }, + "Warnings": [] +} +``` diff --git a/website/source/api/query.html.md b/website/source/api/query.html.md index 586244fcf..1f42aabec 100644 --- a/website/source/api/query.html.md +++ b/website/source/api/query.html.md @@ -25,7 +25,7 @@ section for more details about how prepared queries work with Consul's ACL syste ### Prepared Query Templates Consul 0.6.4 and later support prepared query templates. These are created -similar to static templates, except with some additional fields and features. +similar to static queries, except with some additional fields and features. Here is an example prepared query template: ```json @@ -171,15 +171,6 @@ The table below shows this endpoint's support for to the service being queried. If the client does not supply an ACL Token, the anonymous token will be used. -- `Near` `(string: "")` - Specifies a node to sort near based on distance - sorting using [Network Coordinates](/docs/internals/coordinates.html). The - nearest instance to the specified node will be returned first, and subsequent - nodes in the response will be sorted in ascending order of estimated - round-trip times. If the node given does not exist, the nodes in the response - will be shuffled. Using `_agent` is supported, and will automatically return - results nearest the agent servicing the request. If unspecified, the response - will be shuffled by default. - - `Service` `(Service: )` - Specifies the structure to define the query's behavior. - `Service` `(string: )` - Specifies the name of the service to @@ -206,10 +197,33 @@ The table below shows this endpoint's support for failover, even if it is selected by both `NearestN` and is listed in `Datacenters`. + - `IgnoreCheckIDs` `(array: nil)` - Specifies a list of check IDs that + should be ignored when filtering unhealthy instances. This is mostly useful + in an emergency or as a temporary measure when a health check is found to be + unreliable. Being able to ignore it in centrally-defined queries can be + simpler than de-registering the check as an interim solution until the check + can be fixed. + - `OnlyPassing` `(bool: false)` - Specifies the behavior of the query's health check filtering. If this is set to false, the results will include nodes with checks in the passing as well as the warning states. If this is set to true, only nodes with checks in the passing state will be returned. + + - `Near` `(string: "")` - Specifies a node to sort near based on distance + sorting using [Network Coordinates](/docs/internals/coordinates.html). The + nearest instance to the specified node will be returned first, and subsequent + nodes in the response will be sorted in ascending order of estimated + round-trip times. If the node given does not exist, the nodes in the response + will be shuffled. If unspecified, the response will be shuffled by default. + + - `_agent` - Returns results nearest the agent servicing the request. + - `_ip` - Returns results nearest to the node associated with the source IP + where the query was executed from. For HTTP the source IP is the remote + peer's IP address or the value of the X-Forwarded-For header with the + header taking precedence. For DNS the source IP is the remote peer's IP + address or the value of the ENDS client IP with the EDNS client IP + taking precedence. + - `Tags` `(array: nil)` - Specifies a list of service tags to filter the query results. For a service to pass the tag filter it must have *all* @@ -474,7 +488,9 @@ Token will be used. - `near` `(string: "")` - Specifies to sort the resulting list in ascending order based on the estimated round trip time from that node. Passing - `?near=_agent` will use the agent's node for the sort. If this is not present, + `?near=_agent` will use the agent's node for the sort. Passing `?near=_ip` + will use the source IP of the request or the value of the X-Forwarded-For + header to lookup the node to use for the sort. If this is not present, the default behavior will shuffle the nodes randomly each time the query is executed. diff --git a/website/source/assets/javascripts/analytics.js b/website/source/assets/javascripts/analytics.js new file mode 100644 index 000000000..4098b8b55 --- /dev/null +++ b/website/source/assets/javascripts/analytics.js @@ -0,0 +1,16 @@ +document.addEventListener('turbolinks:load', function() { + analytics.page() + + track('.downloads .download .details li a', function(el) { + var m = el.href.match(/consul_(.*?)_(.*?)_(.*?)\.zip/) + return { + event: 'Download', + category: 'Button', + label: 'Consul | v' + m[1] + ' | ' + m[2] + ' | ' + m[3], + version: m[1], + os: m[2], + architecture: m[3], + product: 'consul' + } + }) +}) diff --git a/website/source/assets/javascripts/application.js b/website/source/assets/javascripts/application.js index ad181b4cc..51c8914f8 100644 --- a/website/source/assets/javascripts/application.js +++ b/website/source/assets/javascripts/application.js @@ -3,3 +3,6 @@ //= require hashicorp/mega-nav //= require hashicorp/sidebar +//= require hashicorp/analytics + +//= require analytics diff --git a/website/source/assets/stylesheets/_global.scss b/website/source/assets/stylesheets/_global.scss index 3b69c05dd..ac806456d 100755 --- a/website/source/assets/stylesheets/_global.scss +++ b/website/source/assets/stylesheets/_global.scss @@ -24,12 +24,3 @@ h1, h2, h3, h4, h5 { h1 { margin-bottom: 24px; } - -// Avoid FOUT -.wf-loading { - visibility: hidden; -} - -.wf-active, .wf-inactive { - visibility: visible; -} diff --git a/website/source/docs/agent/basics.html.md b/website/source/docs/agent/basics.html.md index a03f9f2a5..fadc73b85 100644 --- a/website/source/docs/agent/basics.html.md +++ b/website/source/docs/agent/basics.html.md @@ -25,7 +25,7 @@ of their own. The agent is started with the [`consul agent`](/docs/commands/agent.html) command. This command blocks, running forever or until told to quit. The agent command takes a variety -of configuration options, but most have sane defaults. +of [`configuration options`](/docs/agent/options.html#command-line-options), but most have sane defaults. When running [`consul agent`](/docs/commands/agent.html), you should see output similar to this: diff --git a/website/source/docs/agent/checks.html.md b/website/source/docs/agent/checks.html.md index a612d8a92..a563de577 100644 --- a/website/source/docs/agent/checks.html.md +++ b/website/source/docs/agent/checks.html.md @@ -197,11 +197,6 @@ and the check is embedded within a service definition a unique check id is generated. Otherwise, `id` will be set to `name`. If names might conflict, unique IDs should be provided. --> **Note:** Consul 0.9.3 and before require the optional check ID for a check - that is embedded in a service definition to be configured via the `CheckID` - field. Consul 1.0 accepts both `id` and `CheckID` but the latter is - deprecated and will be removed in Consul 1.1. - The `notes` field is opaque to Consul but can be used to provide a human-readable description of the current state of the check. With a script check, the field is set to any output generated by the script. Similarly, an external process updating @@ -252,11 +247,6 @@ In Consul 0.9.0 and later, the agent must be configured with [`enable_script_checks`](/docs/agent/options.html#_enable_script_checks) set to `true` in order to enable script checks. -Prior to Consul 1.0, checks used a single `script` field to define the command to run, and -would always run in a shell. In Consul 1.0, the `args` array was added so that checks can be -run without a shell. The `script` field is deprecated, and you should include the shell in -the `args` to run under a shell, eg. `"args": ["sh", "-c", "..."]`. - ## Initial Health Check Status By default, when checks are registered against a Consul agent, the state is set diff --git a/website/source/docs/agent/cloud-auto-join.html.md b/website/source/docs/agent/cloud-auto-join.html.md new file mode 100644 index 000000000..8dd4ac18e --- /dev/null +++ b/website/source/docs/agent/cloud-auto-join.html.md @@ -0,0 +1,285 @@ +--- +layout: "docs" +page_title: "Cloud Auto-join" +sidebar_current: "docs-agent-cloud-auto-join" +description: |- + Consul supports automatic cluster joining using cloud metadata on various providers. +--- + +# Cloud Auto-joining + +As of Consul 0.9.1, `retry-join` accepts a unified interface using the +[go-discover](https://github.com/hashicorp/go-discover) library for doing +automatic cluster joining using cloud metadata. To use retry-join with a +supported cloud provider, specify the configuration on the command line or +configuration file as a `key=value key=value ...` string. + +In Consul 0.9.1-0.9.3 the values need to be URL encoded but for most +practical purposes you need to replace spaces with `+` signs. + +As of Consul 1.0 the values are taken literally and must not be URL +encoded. If the values contain spaces, backslashes or double quotes then +they need to be double quoted and the usual escaping rules apply. + +```sh +$ consul agent -retry-join 'provider=my-cloud config=val config2="some other val" ...' +``` + +or via a configuration file: + +```json +{ + "retry_join": ["provider=my-cloud config=val config2=\"some other val\" ..."] +} +``` + +The cloud provider-specific configurations are detailed below. This can be +combined with static IP or DNS addresses or even multiple configurations +for different providers. + +In order to use discovery behind a proxy, you will need to set +`HTTP_PROXY`, `HTTPS_PROXY` and `NO_PROXY` environment variables per +[Golang `net/http` library](https://golang.org/pkg/net/http/#ProxyFromEnvironment). + +The following sections give the options specific to each supported cloud +provider. + +### Amazon EC2 + +This returns the first private IP address of all servers in the given +region which have the given `tag_key` and `tag_value`. + +```sh +$ consul agent -retry-join "provider=aws tag_key=... tag_value=..." +``` + +```json +{ + "retry_join": ["provider=aws tag_key=... tag_value=..."] +} +``` + +- `provider` (required) - the name of the provider ("aws" in this case). +- `tag_key` (required) - the key of the tag to auto-join on. +- `tag_value` (required) - the value of the tag to auto-join on. +- `region` (optional) - the AWS region to authenticate in. +- `addr_type` (optional) - the type of address to discover: `private_v4`, `public_v4`, `public_v6`. Default is `private_v4`. (>= 1.0) +- `access_key_id` (optional) - the AWS access key for authentication (see below for more information about authenticating). +- `secret_access_key` (optional) - the AWS secret access key for authentication (see below for more information about authenticating). + +#### Authentication & Precedence + +- Static credentials `access_key_id=... secret_access_key=...` +- Environment variables (`AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`) +- Shared credentials file (`~/.aws/credentials` or the path specified by `AWS_SHARED_CREDENTIALS_FILE`) +- ECS task role metadata (container-specific). +- EC2 instance role metadata. + +The only required IAM permission is `ec2:DescribeInstances`, and it is +recommended that you make a dedicated key used only for auto-joining. If the +region is omitted it will be discovered through the local instance's [EC2 +metadata +endpoint](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-identity-documents.html). + +### Microsoft Azure + +This returns the first private IP address of all servers in the given region +which have the given `tag_key` and `tag_value` in the tenant and subscription, or in +the given `resource_group` of a `vm_scale_set` for Virtual Machine Scale Sets. + +```sh +$ consul agent -retry-join "provider=azure tag_name=... tag_value=... tenant_id=... client_id=... subscription_id=... secret_access_key=..." +``` + +```json +{ + "retry_join": ["provider=azure tag_name=... tag_value=... tenant_id=... client_id=... subscription_id=... secret_access_key=..."] +} +``` + +- `provider` (required) - the name of the provider ("azure" in this case). +- `tenant_id` (required) - the tenant to join machines in. +- `client_id` (required) - the client to authenticate with. +- `secret_access_key` (required) - the secret client key. + +Use these configuration parameters when using tags: +- `tag_name` - the name of the tag to auto-join on. +- `tag_value` - the value of the tag to auto-join on. + +Use these configuration parameters when using Virtual Machine Scale Sets (Consul 1.0.3 and later): +- `resource_group` - the name of the resource group to filter on. +- `vm_scale_set` - the name of the virtual machine scale set to filter on. + +When using tags the only permission needed is the `ListAll` method for `NetworkInterfaces`. When using +Virtual Machine Scale Sets the only role action needed is `Microsoft.Compute/virtualMachineScaleSets/*/read`. + +### Google Compute Engine + +This returns the first private IP address of all servers in the given +project which have the given `tag_value`. + +```sh +$ consul agent -retry-join "provider=gce project_name=... tag_value=..." +``` + +```json +{ + "retry_join": ["provider=gce project_name=... tag_value=..."] +} +``` + +- `provider` (required) - the name of the provider ("gce" in this case). +- `tag_value` (required) - the value of the tag to auto-join on. +- `project_name` (optional) - the name of the project to auto-join on. Discovered if not set. +- `zone_pattern` (optional) - the list of zones can be restricted through an RE2 compatible regular expression. If omitted, servers in all zones are returned. +- `credentials_file` (optional) - the credentials file for authentication. See below for more information. + +#### Authentication & Precedence + +- Use credentials from `credentials_file`, if provided. +- Use JSON file from `GOOGLE_APPLICATION_CREDENTIALS` environment variable. +- Use JSON file in a location known to the gcloud command-line tool. + - On Windows, this is `%APPDATA%/gcloud/application_default_credentials.json`. + - On other systems, `$HOME/.config/gcloud/application_default_credentials.json`. +- On Google Compute Engine, use credentials from the metadata + server. In this final case any provided scopes are ignored. + +Discovery requires a [GCE Service +Account](https://cloud.google.com/compute/docs/access/service-accounts). +Credentials are searched using the following paths, in order of precedence. + +### IBM SoftLayer + +This returns the first private IP address of all servers for the given +datacenter with the given `tag_value`. + +```sh +$ consul agent -retry-join "provider=softlayer datacenter=... tag_value=... username=... api_key=..." +``` + +```json +{ + "retry_join": ["provider=softlayer datacenter=... tag_value=... username=... api_key=..."] +} +``` + +- `provider` (required) - the name of the provider ("softlayer" in this case). +- datacenter (required) - the name of the datacenter to auto-join in. +- `tag_value` (required) - the value of the tag to auto-join on. +- `username` (required) - the username to use for auth. +- `api_key` (required) - the api key to use for auth. + +### Aliyun (Alibaba Cloud) + +This returns the first private IP address of all servers for the given +`region` with the given `tag_key` and `tag_value`. + +```sh +$ consul agent -retry-join "provider=aliyun region=... tag_key=consul tag_value=... access_key_id=... access_key_secret=..." +``` + +```json +{ + "retry_join": ["provider=aliyun region=... tag_key=consul tag_value=... access_key_id=... access_key_secret=..."] +} +``` + +- `provider` (required) - the name of the provider ("aliyun" in this case). +- `region` (required) - the name of the region. +- `tag_key` (required) - the key of the tag to auto-join on. +- `tag_value` (required) - the value of the tag to auto-join on. +- `access_key_id` (required) -the access key to use for auth. +- `access_key_secret` (required) - the secret key to use for auth. + +The required RAM permission is `ecs:DescribeInstances`. +It is recommended you make a dedicated key used only for auto-joining. + +### Digital Ocean + +This returns the first private IP address of all servers for the given +`region` with the given `tag_name`. + +```sh +$ consul agent -retry-join "provider=digitalocean region=... tag_name=... api_token=..." +``` + +```json +{ + "retry_join": ["provider=digitalocean region=... tag_name=... api_token=..."] +} +``` + +- `provider` (required) - the name of the provider ("digitalocean" in this case). +- `region` (required) - the name of the region. +- `tag_name` (required) - the value of the tag to auto-join on. +- `api_token` (required) -the token to use for auth. + +### Openstack + +This returns the first private IP address of all servers for the given +`region` with the given `tag_key` and `tag_value`. + +```sh +$ consul agent -retry-join "provider=os tag_key=consul tag_value=server username=... password=... auth_url=..." +``` + +```json +{ + "retry_join": ["provider=os tag_key=consul tag_value=server username=... password=... auth_url=..."] +} +``` + +- `provider` (required) - the name of the provider ("os" in this case). +- `tag_key` (required) - the key of the tag to auto-join on. +- `tag_value` (required) - the value of the tag to auto-join on. +- `project_id` (optional) - the id of the project (tenant id). +- `username` (optional) - the username to use for auth. +- `password` (optional) - the password to use for auth. +- `token` (optional) - the token to use for auth. +- `auth_url` (optional) - the identity endpoint to use for auth. +- `insecure` (optional) - indicates whether the API certificate should not be checked. Any value means `true`. + +The configuration can also be provided by environment variables. + +### Scaleway + +This returns the first private IP address of all servers for the given +`region` with the given `tag_name`. + +```sh +$ consul agent -retry-join "provider=scaleway organization=my-org tag_name=consul-server token=... region=..." +``` + +```json +{ + "retry_join": ["provider=scaleway organization=my-org tag_name=consul-server token=... region=..."] +} +``` + +- `provider` (required) - the name of the provider ("scaleway" in this case). +- `region` (required) - the name of the region. +- `tag_name` (required) - the name of the tag to auto-join on. +- `organization` (required) - the organization access key to use for auth (equal to access key). +- `token` (required) - the token to use for auth. + +### Joyent Triton + +This returns the first PrimaryIP addresses for all servers with the given +`tag_key` and `tag_value`. + +```sh +$ consul agent -retry-join "provider=triton account=testaccount url=https://us-sw-1.api.joyentcloud.com key_id=... tag_key=consul-role tag_value=server" +``` + +```json +{ + "retry_join": ["provider=triton account=testaccount url=https://us-sw-1.api.joyentcloud.com key_id=... tag_key=consul-role tag_value=server"] +} +``` + +- `provider` (required) - the name of the provider ("triton" in this case). +- `account` (required) - the name of the account. +- `url` (required) - the URL of the Triton api endpoint to use. +- `key_id` (required) - the key id to use. +- `tag_key` (optional) - the instance tag key to use. +- `tag_value` (optional) - the tag value to use. diff --git a/website/source/docs/agent/options.html.md b/website/source/docs/agent/options.html.md index cc01aef4a..4e0b7cb5a 100644 --- a/website/source/docs/agent/options.html.md +++ b/website/source/docs/agent/options.html.md @@ -43,13 +43,16 @@ configuration reload. The options below are all specified on the command-line. -* `-advertise` - The advertise - address is used to change the address that we - advertise to other nodes in the cluster. By default, the [`-bind`](#_bind) address is - advertised. However, in some cases, there may be a routable address that cannot - be bound. This flag enables gossiping a different address to support this. - If this address is not routable, the node will be in a constant flapping state - as other nodes will treat the non-routability as a failure. +* `-advertise` - The + advertise address is used to change the address that we advertise to other + nodes in the cluster. By default, the [`-bind`](#_bind) address is advertised. + However, in some cases, there may be a routable address that cannot be bound. + This flag enables gossiping a different address to support this. If this + address is not routable, the node will be in a constant flapping state as + other nodes will treat the non-routability as a failure. In Consul 1.0 and + later this can be set to a + [go-sockaddr](https://godoc.org/github.com/hashicorp/go-sockaddr/template) + template. * `-advertise-wan` - The advertise WAN address is used to change the address that we advertise to server nodes @@ -61,7 +64,10 @@ The options below are all specified on the command-line. nodes gossiping through the public network for the WAN while using private VLANs for gossiping to each other and their client agents, and it allows client agents to be reached at this address when being accessed from a remote datacenter if the remote datacenter is configured - with `translate_wan_addrs`. + with `translate_wan_addrs`. In Consul 1.0 and + later this can be set to a + [go-sockaddr](https://godoc.org/github.com/hashicorp/go-sockaddr/template) + template * `-bootstrap` - This flag is used to control if a server is in "bootstrap" mode. It is important that @@ -90,23 +96,38 @@ at startup. If you specify "[::]", Consul will IPv6 address. If there are multiple public IPv6 addresses available, Consul will exit with an error at startup. Consul uses both TCP and UDP and the same port for both. If you - have any firewalls, be sure to allow both protocols. - -* `-serf-wan-bind` - The address that should be bound to for Serf WAN gossip communications. - By default, the value follows the same rules as [`-bind` command-line flag](#_bind), and if this is not specified, the `-bind` option is used. This - is available in Consul 0.7.1 and later. - -* `-serf-lan-bind` - The address that should be bound to for Serf LAN gossip communications. - This is an IP address that should be reachable by all other LAN nodes in the cluster. By default, the value follows the same rules as - [`-bind` command-line flag](#_bind), and if this is not specified, the `-bind` option is used. This is available in Consul 0.7.1 and later. - -* `-client` - The address to which - Consul will bind client interfaces, including the HTTP and DNS servers. By default, - this is "127.0.0.1", allowing only loopback connections. In Consul 1.0 and later + have any firewalls, be sure to allow both protocols. In Consul 1.0 and later this can be set to a space-separated list of addresses to bind to, or a [go-sockaddr](https://godoc.org/github.com/hashicorp/go-sockaddr/template) template that can potentially resolve to multiple addresses. +* `-serf-wan-bind` - + The address that should be bound to for Serf WAN gossip communications. By + default, the value follows the same rules as [`-bind` command-line + flag](#_bind), and if this is not specified, the `-bind` option is used. This + is available in Consul 0.7.1 and later. In Consul 1.0 and later this can be + set to a + [go-sockaddr](https://godoc.org/github.com/hashicorp/go-sockaddr/template) + template + +* `-serf-lan-bind` - + The address that should be bound to for Serf LAN gossip communications. This + is an IP address that should be reachable by all other LAN nodes in the + cluster. By default, the value follows the same rules as [`-bind` command-line + flag](#_bind), and if this is not specified, the `-bind` option is used. This + is available in Consul 0.7.1 and later. In Consul 1.0 and later this can be + set to a + [go-sockaddr](https://godoc.org/github.com/hashicorp/go-sockaddr/template) + template + +* `-client` - The address to which + Consul will bind client interfaces, including the HTTP and DNS servers. By + default, this is "127.0.0.1", allowing only loopback connections. In Consul + 1.0 and later this can be set to a space-separated list of addresses to bind + to, or a + [go-sockaddr](https://godoc.org/github.com/hashicorp/go-sockaddr/template) + template that can potentially resolve to multiple addresses. + * `-config-file` - A configuration file to load. For more information on the format of this file, read the [Configuration Files](#configuration_files) section. @@ -214,17 +235,23 @@ will exit with an error at startup. Note that using `retry_join` could be more appropriate to help mitigate node startup race conditions when automating a Consul cluster - deployment.\ + deployment. + + In Consul 1.1.0 and later this can be set to a + [go-sockaddr](https://godoc.org/github.com/hashicorp/go-sockaddr/template) + template * `-retry-join` - Similar to [`-join`](#_join) but allows retrying a join if the first attempt fails. This is useful for cases where you know the address will - eventually be available. The list can contain IPv4, IPv6, or DNS addresses. If - Consul is running on the non-default Serf LAN port, this must be specified as - well. IPv6 must use the "bracketed" syntax. If multiple values are given, they - are tried and retried in the order listed until the first succeeds. Here are - some examples: + eventually be available. The list can contain IPv4, IPv6, or DNS addresses. In + Consul 1.1.0 and later this can be set to a + [go-sockaddr](https://godoc.org/github.com/hashicorp/go-sockaddr/template) + template. If Consul is running on the non-default Serf LAN port, this must be + specified as well. IPv6 must use the "bracketed" syntax. If multiple values + are given, they are tried and retried in the order listed until the first + succeeds. Here are some examples: ```sh # Using a DNS entry @@ -241,267 +268,18 @@ will exit with an error at startup. $ consul agent -retry-join "[::1]:8301" ``` - ```sh - # Using Cloud Auto-Joining - $ consul agent -retry-join "provider=aws tag_key=..." - ``` - ### Cloud Auto-Joining As of Consul 0.9.1, `retry-join` accepts a unified interface using the [go-discover](https://github.com/hashicorp/go-discover) library for doing - automatic cluster joining using cloud metadata. To use retry-join with a - supported cloud provider, specify the configuration on the command line or - configuration file as a `key=value key=value ...` string. - - In Consul 0.9.1-0.9.3 the values need to be URL encoded but for most - practical purposes you need to replace spaces with `+` signs. - - As of Consul 1.0 the values are taken literally and must not be URL - encoded. If the values contain spaces, backslashes or double quotes then - they need to be double quoted and the usual escaping rules apply. + automatic cluster joining using cloud metadata. For more information, see + the [Cloud Auto-join page](/docs/agent/cloud-auto-join.html). ```sh - $ consul agent -retry-join 'provider=my-cloud config=val config2="some other val" ...' + # Using Cloud Auto-Joining + $ consul agent -retry-join "provider=aws tag_key=..." ``` - or via a configuration file: - - ```json - { - "retry_join": ["provider=my-cloud config=val config2=\"some other val\" ..."] - } - ``` - - The cloud provider-specific configurations are detailed below. This can be - combined with static IP or DNS addresses or even multiple configurations - for different providers. - - In order to use discovery behind a proxy, you will need to set - `HTTP_PROXY`, `HTTPS_PROXY` and `NO_PROXY` environment variables per - [Golang `net/http` library](https://golang.org/pkg/net/http/#ProxyFromEnvironment). - - The following sections give the options specific to each supported cloud - provider. - - ### Amazon EC2 - - This returns the first private IP address of all servers in the given - region which have the given `tag_key` and `tag_value`. - - ```sh - $ consul agent -retry-join "provider=aws tag_key=... tag_value=..." - ``` - - ```json - { - "retry_join": ["provider=aws tag_key=... tag_value=..."] - } - ``` - - - `provider` (required) - the name of the provider ("aws" in this case). - - `tag_key` (required) - the key of the tag to auto-join on. - - `tag_value` (required) - the value of the tag to auto-join on. - - `region` (optional) - the AWS region to authenticate in. - - `addr_type` (optional) - the type of address to discover: `private_v4`, `public_v4`, `public_v6`. Default is `private_v4`. (>= 1.0) - - `access_key_id` (optional) - the AWS access key for authentication (see below for more information about authenticating). - - `secret_access_key` (optional) - the AWS secret access key for authentication (see below for more information about authenticating). - - #### Authentication & Precedence - - - Static credentials `access_key_id=... secret_access_key=...` - - Environment variables (`AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`) - - Shared credentials file (`~/.aws/credentials` or the path specified by `AWS_SHARED_CREDENTIALS_FILE`) - - ECS task role metadata (container-specific). - - EC2 instance role metadata. - - The only required IAM permission is `ec2:DescribeInstances`, and it is - recommended that you make a dedicated key used only for auto-joining. If the - region is omitted it will be discovered through the local instance's [EC2 - metadata - endpoint](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-identity-documents.html). - - ### Microsoft Azure - - This returns the first private IP address of all servers in the given region - which have the given `tag_key` and `tag_value` in the tenant and subscription, or in - the given `resource_group` of a `vm_scale_set` for Virtual Machine Scale Sets. - - ```sh - $ consul agent -retry-join "provider=azure tag_name=... tag_value=... tenant_id=... client_id=... subscription_id=... secret_access_key=..." - ``` - - ```json - { - "retry_join": ["provider=azure tag_name=... tag_value=... tenant_id=... client_id=... subscription_id=... secret_access_key=..."] - } - ``` - - - `provider` (required) - the name of the provider ("azure" in this case). - - `tenant_id` (required) - the tenant to join machines in. - - `client_id` (required) - the client to authenticate with. - - `secret_access_key` (required) - the secret client key. - - Use these configuration parameters when using tags: - - `tag_name` - the name of the tag to auto-join on. - - `tag_value` - the value of the tag to auto-join on. - - Use these configuration parameters when using Virtual Machine Scale Sets (Consul 1.0.3 and later): - - `resource_group` - the name of the resource group to filter on. - - `vm_scale_set` - the name of the virtual machine scale set to filter on. - - When using tags the only permission needed is the `ListAll` method for `NetworkInterfaces`. When using - Virtual Machine Scale Sets the only role action needed is `Microsoft.Compute/virtualMachineScaleSets/*/read`. - - ### Google Compute Engine - - This returns the first private IP address of all servers in the given - project which have the given `tag_value`. - - ```sh - $ consul agent -retry-join "provider=gce project_name=... tag_value=..." - ``` - - ```json - { - "retry_join": ["provider=gce project_name=... tag_value=..."] - } - ``` - - - `provider` (required) - the name of the provider ("gce" in this case). - - `tag_value` (required) - the value of the tag to auto-join on. - - `project_name` (optional) - the name of the project to auto-join on. Discovered if not set. - - `zone_pattern` (optional) - the list of zones can be restricted through an RE2 compatible regular expression. If omitted, servers in all zones are returned. - - `credentials_file` (optional) - the credentials file for authentication. See below for more information. - - #### Authentication & Precedence - - - Use credentials from `credentials_file`, if provided. - - Use JSON file from `GOOGLE_APPLICATION_CREDENTIALS` environment variable. - - Use JSON file in a location known to the gcloud command-line tool. - - On Windows, this is `%APPDATA%/gcloud/application_default_credentials.json`. - - On other systems, `$HOME/.config/gcloud/application_default_credentials.json`. - - On Google Compute Engine, use credentials from the metadata - server. In this final case any provided scopes are ignored. - - Discovery requires a [GCE Service - Account](https://cloud.google.com/compute/docs/access/service-accounts). - Credentials are searched using the following paths, in order of precedence. - - ### IBM SoftLayer - - This returns the first private IP address of all servers for the given - datacenter with the given `tag_value`. - - ```sh - $ consul agent -retry-join "provider=softlayer datacenter=... tag_value=... username=... api_key=..." - ``` - - ```json - { - "retry_join": ["provider=softlayer datacenter=... tag_value=... username=... api_key=..."] - } - ``` - - - `provider` (required) - the name of the provider ("softlayer" in this case). - - datacenter (required) - the name of the datacenter to auto-join in. - - `tag_value` (required) - the value of the tag to auto-join on. - - `username` (required) - the username to use for auth. - - `api_key` (required) - the api key to use for auth. - - ### Aliyun (Alibaba Cloud) - - This returns the first private IP address of all servers for the given - `region` with the given `tag_key` and `tag_value`. - - ```sh - $ consul agent -retry-join "provider=aliyun region=... tag_key=consul tag_value=... access_key_id=... access_key_secret=..." - ``` - - ```json - { - "retry_join": ["provider=aliyun region=... tag_key=consul tag_value=... access_key_id=... access_key_secret=..."] - } - ``` - - - `provider` (required) - the name of the provider ("aliyun" in this case). - - `region` (required) - the name of the region. - - `tag_key` (required) - the key of the tag to auto-join on. - - `tag_value` (required) - the value of the tag to auto-join on. - - `access_key_id` (required) -the access key to use for auth. - - `access_key_secret` (required) - the secret key to use for auth. - - The required RAM permission is `ecs:DescribeInstances`. - It is recommended you make a dedicated key used only for auto-joining. - - ### Digital Ocean - - This returns the first private IP address of all servers for the given - `region` with the given `tag_name`. - - ```sh - $ consul agent -retry-join "provider=digitalocean region=... tag_name=... api_token=..." - ``` - - ```json - { - "retry_join": ["provider=digitalocean region=... tag_name=... api_token=..."] - } - ``` - - - `provider` (required) - the name of the provider ("digitalocean" in this case). - - `region` (required) - the name of the region. - - `tag_name` (required) - the value of the tag to auto-join on. - - `api_token` (required) -the token to use for auth. - - ### Openstack - - This returns the first private IP address of all servers for the given - `region` with the given `tag_key` and `tag_value`. - - ```sh - $ consul agent -retry-join "provider=os tag_key=consul tag_value=server username=... password=... auth_url=..." - ``` - - ```json - { - "retry_join": ["provider=os tag_key=consul tag_value=server username=... password=... auth_url=..."] - } - ``` - - - `provider` (required) - the name of the provider ("os" in this case). - - `tag_key` (required) - the key of the tag to auto-join on. - - `tag_value` (required) - the value of the tag to auto-join on. - - `project_id` (optional) - the id of the project (tenant id). - - `username` (optional) - the username to use for auth. - - `password` (optional) - the password to use for auth. - - `token` (optional) - the token to use for auth. - - `auth_url` (optional) - the identity endpoint to use for auth. - - `insecure` (optional) - indicates whether the API certificate should not be checked. Any value means `true`. - - The configuration can also be provided by environment variables. - - ### Scaleway - - This returns the first private IP address of all servers for the given - `region` with the given `tag_key` and `tag_value`. - - ```sh - $ consul agent -retry-join "provider=scaleway organization=my-org tag_name=consul-server token=... region=..." - ``` - - ```json - { - "retry_join": ["provider=scaleway organization=my-org tag_name=consul-server token=... region=..."] - } - ``` - - - `provider` (required) - the name of the provider ("scaleway" in this case). - - `region` (required) - the name of the region. - - `tag_name` (required) - the name of the tag to auto-join on. - - `organization` (optional) - the organization access key to use for auth. - - `token` (optional) - the token to use for auth. - * `-retry-interval` - Time to wait between join attempts. Defaults to 30s. @@ -510,17 +288,25 @@ will exit with an error at startup. with return code 1. By default, this is set to 0 which is interpreted as infinite retries. -* `-join-wan` - Address of another - wan agent to join upon starting up. This can be - specified multiple times to specify multiple WAN agents to join. If Consul is - unable to join with any of the specified addresses, agent startup will - fail. By default, the agent won't [`-join-wan`](#_join_wan) any nodes when it starts up. +* `-join-wan` - Address of + another wan agent to join upon starting up. This can be specified multiple + times to specify multiple WAN agents to join. If Consul is unable to join with + any of the specified addresses, agent startup will fail. By default, the agent + won't [`-join-wan`](#_join_wan) any nodes when it starts up. + + In Consul 1.1.0 and later this can be set to a + [go-sockaddr](https://godoc.org/github.com/hashicorp/go-sockaddr/template) + template. * `-retry-join-wan` - Similar to [`retry-join`](#_retry_join) but allows retrying a wan join if the first attempt fails. This is useful for cases where we know the address will become available eventually. As of Consul 0.9.3 [Cloud Auto-Joining](#cloud-auto-joining) is supported as well. + In Consul 1.1.0 and later this can be set to a + [go-sockaddr](https://godoc.org/github.com/hashicorp/go-sockaddr/template) + template + * `-retry-interval-wan` - Time to wait between [`-join-wan`](#_join_wan) attempts. Defaults to 30s. @@ -573,6 +359,21 @@ will exit with an error at startup. [Raft Protocol Version Compatibility](/docs/upgrade-specific.html#raft-protocol-version-compatibility) for more details. +* `-raft-snapshot-threshold` - This controls the + minimum number of raft commit entries between snapshots that are saved to disk. This is a low-level parameter that should + rarely need to be changed. Very busy clusters experiencing excessive disk IO may increase this value to reduce disk IO, and minimize + the chances of all servers taking snapshots at the same time. Increasing this trades off disk IO for disk space since the log will + grow much larger and the space in the raft.db file can't be reclaimed till the next snapshot. Servers may take longer to recover from + crashes or failover if this is increased significantly as more logs will need to be replayed. In Consul 1.1.0 and later this + defaults to 16384, and in prior versions it was set to 8192. + +* `-raft-snapshot-interval` - This controls how often servers + check if they need to save a snapshot to disk. his is a low-level parameter that should rarely need to be changed. Very busy clusters + experiencing excessive disk IO may increase this value to reduce disk IO, and minimize the chances of all servers taking snapshots at the same time. + Increasing this trades off disk IO for disk space since the log will grow much larger and the space in the raft.db file can't be reclaimed + till the next snapshot. Servers may take longer to recover from crashes or failover if this is increased significantly as more logs + will need to be replayed. In Consul 1.1.0 and later this defaults to `30s`, and in prior versions it was set to `5s`. + * `-recursor` - Specifies the address of an upstream DNS server. This option may be provided multiple times, and is functionally equivalent to the [`recursors` configuration option](#recursors). @@ -895,6 +696,16 @@ Consul will not enable TLS for the HTTP API unless the `https` port has been ass to the Consul raft log in environments where health checks have volatile output like timestamps, process ids, ... + * `discovery_max_stale` - Enables + stale requests for all service discovery HTTP endpoints. This is equivalent to the + [`max_stale`](#max_stale) configuration for DNS requests. If this value is zero (default), all service + discovery HTTP endpoints are forwarded to the leader. If this value is greater than zero, any Consul server + can handle the service discovery request. If a Consul server is behind the leader by more than `discovery_max_stale`, + the query will be re-evaluated on the leader to get more up-to-date results. Consul agents also add a new + `X-Consul-Effective-Consistency` response header which indicates if the agent did a stale read. `discover-max-stale` + was introduced in Consul 1.0.7 as a way for Consul operators to force stale requests from clients at the agent level, + and defaults to zero which matches default consistency behavior in earlier Consul versions. + * `dns_config` This object allows a number of sub-keys to be set which can tune how DNS queries are serviced. See this guide on [DNS caching](/docs/guides/dns-cache.html) for more detail. @@ -917,17 +728,6 @@ Consul will not enable TLS for the HTTP API unless the `https` port has been ass leader, so this lets Consul continue serving requests in long outage scenarios where no leader can be elected. - * `discovery_max_stale` - Enables - stale requests for all service discovery HTTP endpoints. This is equivalent to the - [`max_stale`](#max_stale) configuration for DNS requests. If this value is zero (default), all service - discovery HTTP endpoints are forwarded to the leader. If this value is greater than zero, any Consul server - can handle the service discovery request. If a Consul server is behind the leader by more than `discovery_max_stale`, - the query will be re-evaluated on the leader to get more up-to-date results. Consul agents also add a new - `X-Consul-Effective-Consistency` response header which indicates if the agent did a stale read. `discover-max-stale` - was introduced in Consul 1.0.7 as a way for Consul operators to force stale requests from clients at the agent level, - and defaults to zero which matches default consistency behavior in earlier Consul versions. - - * `node_ttl` - By default, this is "0s", so all node lookups are served with a 0 TTL value. DNS caching for node lookups can be enabled by setting this value. This should be specified with the "s" suffix for second or "m" for minute. @@ -968,7 +768,7 @@ Consul will not enable TLS for the HTTP API unless the `https` port has been ass When answering a question, Consul will use the complete list of matching hosts, shuffle the list randomly, and then limit the number of answers to `a_record_limit` (default: no limit). This limit does not apply to SRV records. - + In environments where [RFC 3484 Section 6](https://tools.ietf.org/html/rfc3484#section-6) Rule 9 is implemented and enforced (i.e. DNS answers are always sorted and therefore never random), clients may need to set this value to `1` to @@ -1149,6 +949,12 @@ Consul will not enable TLS for the HTTP API unless the `https` port has been ass * `raft_protocol` Equivalent to the [`-raft-protocol` command-line flag](#_raft_protocol). +* `raft_snapshot_threshold` Equivalent to the + [`-raft-snapshot-threshold` command-line flag](#_raft_snapshot_threshold). + +* `raft_snapshot_interval` Equivalent to the + [`-raft-snapshot-interval` command-line flag](#_raft_snapshot_interval). + * `reap` This controls Consul's automatic reaping of child processes, which is useful if Consul is running as PID 1 in a Docker container. If this isn't specified, then Consul will automatically reap child processes if it detects it is running as PID 1. If this is set to true or false, then @@ -1329,9 +1135,16 @@ Consul will not enable TLS for the HTTP API unless the `https` port has been ass is overlap between two rules, the more specific rule will take precedence. Blocking will take priority if the same prefix is listed multiple times. - * `enable_deprecated_names` - Added in Consul 1.0, this enables old metric names of the format `consul.consul...` to be sent alongside - other metrics. Defaults to false. + * prometheus_retention_time + If the value is greater than `0s` (the default), this enables [Prometheus](https://prometheus.io/) export of metrics. + The duration can be expressed using the duration semantics and will aggregates all counters for the duration specified + (it might have an impact on Consul's memory usage). A good value for this parameter is at least 2 times the interval of scrape + of Prometheus, but you might also put a very high retention time such as a few days (for instance 744h to enable retention + to 31 days). + Fetching the metrics using prometheus can then be performed using the `/v1/agent/metrics?format=prometheus` URL or by sending + the Accept header with value `text/plain; version=0.0.4; charset=utf-8` to the `/v1/agent/metrics` (as done by Prometheus). + The format is compatible natively with prometheus. When running in this mode, it is recommended to also enable the option + `disable_hostname` to avoid having prefixed metrics with hostname. * `statsd_address` This provides the address of a statsd instance in the format `host:port`. If provided, Consul will send various telemetry information to that instance for diff --git a/website/source/docs/agent/services.html.md b/website/source/docs/agent/services.html.md index f8875e2bc..bfac46d4d 100644 --- a/website/source/docs/agent/services.html.md +++ b/website/source/docs/agent/services.html.md @@ -25,11 +25,14 @@ A service definition is a script that looks like: "name": "redis", "tags": ["primary"], "address": "", + "meta": { + "meta": "for my service" + } "port": 8000, "enable_tag_override": false, "checks": [ { - "script": "/usr/local/bin/check_redis.py", + "args": ["/usr/local/bin/check_redis.py"], "interval": "10s" } ] @@ -38,14 +41,14 @@ A service definition is a script that looks like: ``` A service definition must include a `name` and may optionally provide an -`id`, `tags`, `address`, `port`, `check`, and `enable_tag_override`. The -`id` is set to the `name` if not provided. It is required that all +`id`, `tags`, `address`, `port`, `check`, `meta` and `enable_tag_override`. +The `id` is set to the `name` if not provided. It is required that all services have a unique ID per node, so if names might conflict then unique IDs should be provided. For Consul 0.9.3 and earlier you need to use `enableTagOverride`. Consul 1.0 supports both `enable_tag_override` and `enableTagOverride` but the latter is -deprecated and will be removed in Consul 1.1. +deprecated and has been removed in Consul 1.1. The `tags` property is a list of values that are opaque to Consul but can be used to distinguish between `primary` or `secondary` nodes, @@ -57,6 +60,14 @@ The `port` field can be used as well to make a service-oriented architecture simpler to configure; this way, the address and port of a service can be discovered. +The `meta` object is a map of max 64 key/values with string semantics. Key can contain +only ASCII chars and no special characters (`A-Z` `a-z` `0-9` `_` and `-`). +For performance and security reasons, values as well as keys are limited to 128 +characters for keys, 512 for values. This object has the same limitations as the node +meta object in node definition. +All those meta data can be retrieved individually per instance of the service +and all the instances of a given service have their own copy of it. + Services may also contain a `token` field to provide an ACL token. This token is used for any interaction with the catalog for the service, including [anti-entropy syncs](/docs/internals/anti-entropy.html) and deregistration. @@ -69,7 +80,7 @@ node has any failing system-level check, the DNS interface will omit that node from any service query. The check must be of the script, HTTP, TCP or TTL type. If it is a script type, -`script` and `interval` must be provided. If it is a HTTP type, `http` and +`args` and `interval` must be provided. If it is a HTTP type, `http` and `interval` must be provided. If it is a TCP type, `tcp` and `interval` must be provided. If it is a TTL type, then only `ttl` must be provided. The check name is automatically generated as `service:`. If there are multiple @@ -79,11 +90,6 @@ from `1`. -> **Note:** There is more information about [checks here](/docs/agent/checks.html). --> **Note:** Consul 0.9.3 and before require the optional check ID for a check - that is embedded in a service definition to be configured via the `CheckID` - field. Consul 1.0 accepts both `id` and `CheckID` but the latter is - deprecated and will be removed in Consul 1.1. - The `enable_tag_override` can optionally be specified to disable the anti-entropy feature for this service. If `enable_tag_override` is set to `TRUE` then external agents can update this service in the @@ -109,7 +115,7 @@ syncs](/docs/internals/anti-entropy.html) for more info. For Consul 0.9.3 and earlier you need to use `enableTagOverride`. Consul 1.0 supports both `enable_tag_override` and `enableTagOverride` but the latter is -deprecated and will be removed in Consul 1.1. +deprecated and has been removed as of Consul 1.1. To configure a service, either provide it as a `-config-file` option to the agent or place it inside the `-config-dir` of the agent. The file @@ -136,7 +142,7 @@ Multiple services definitions can be provided at once using the plural "port": 6000, "checks": [ { - "script": "/bin/check_redis -p 6000", + "args": ["/bin/check_redis", "-p", "6000"], "interval": "5s", "ttl": "20s" } @@ -153,7 +159,7 @@ Multiple services definitions can be provided at once using the plural "port": 7000, "checks": [ { - "script": "/bin/check_redis -p 7000", + "args": ["/bin/check_redis", "-p", "7000"], "interval": "30s", "ttl": "60s" } diff --git a/website/source/docs/agent/telemetry.html.md b/website/source/docs/agent/telemetry.html.md index c0de0644c..d0888d29e 100644 --- a/website/source/docs/agent/telemetry.html.md +++ b/website/source/docs/agent/telemetry.html.md @@ -23,7 +23,8 @@ Additionally, if the [`telemetry` configuration options](/docs/agent/options.htm are provided, the telemetry information will be streamed to a [statsite](http://github.com/armon/statsite) or [statsd](http://github.com/etsy/statsd) server where it can be aggregated and flushed to Graphite or any other metrics store. This -information can also be viewed with the [metrics endpoint](/api/agent.html#view-metrics) +information can also be viewed with the [metrics endpoint](/api/agent.html#view-metrics) in JSON +format or using [Prometheus](https://prometheus.io/) format. Below is sample output of a telemetry dump: @@ -86,6 +87,12 @@ These metrics are used to monitor the health of specific Consul agents. requests counter + + `consul.client.rpc.error.catalog_register.` + This increments whenever a Consul agent receives an RPC error for a catalog register request. + errors + counter + `consul.client.api.catalog_deregister.` This increments whenever a Consul agent receives a catalog de-register request. @@ -98,6 +105,12 @@ These metrics are used to monitor the health of specific Consul agents. requests counter + + `consul.client.rpc.error.catalog_deregister.` + This increments whenever a Consul agent receives an RPC error for a catalog de-register request. + errors + counter + `consul.client.api.catalog_datacenters.` This increments whenever a Consul agent receives a request to list datacenters in the catalog. @@ -110,6 +123,12 @@ These metrics are used to monitor the health of specific Consul agents. requests counter + + `consul.client.rpc.error.catalog_datacenters.` + This increments whenever a Consul agent receives an RPC error for a request to list datacenters. + errors + counter + `consul.client.api.catalog_nodes.` This increments whenever a Consul agent receives a request to list nodes from the catalog. @@ -122,6 +141,12 @@ These metrics are used to monitor the health of specific Consul agents. requests counter + + `consul.client.rpc.error.catalog_nodes.` + This increments whenever a Consul agent receives an RPC error for a request to list nodes. + errors + counter + `consul.client.api.catalog_services.` This increments whenever a Consul agent receives a request to list services from the catalog. @@ -134,6 +159,12 @@ These metrics are used to monitor the health of specific Consul agents. requests counter + + `consul.client.rpc.error.catalog_services.` + This increments whenever a Consul agent receives an RPC error for a request to list services. + errors + counter + `consul.client.api.catalog_service_nodes.` This increments whenever a Consul agent receives a request to list nodes offering a service. @@ -146,6 +177,12 @@ These metrics are used to monitor the health of specific Consul agents. requests counter + + `consul.client.rpc.error.catalog_service_nodes.` + This increments whenever a Consul agent receives an RPC error for a request to list nodes offering a service. + errors + counter + `consul.client.api.catalog_node_services.` This increments whenever a Consul agent receives a request to list services registered in a node. @@ -158,6 +195,12 @@ These metrics are used to monitor the health of specific Consul agents. requests counter + + `consul.client.rpc.error.catalog_node_services.` + This increments whenever a Consul agent receives an RPC error for a request to list services in a service. + errors + counter + `consul.runtime.num_goroutines` This tracks the number of running goroutines and is a general load pressure indicator. This may burst from time to time but should return to a steady state value. @@ -442,7 +485,7 @@ These metrics are used to monitor the health of the Consul servers. timer - `consul.prepared-query.execute` + `consul.prepared-query.execute_remote` This measures the time it takes to process a prepared query execute request that was forwarded to another datacenter. ms timer @@ -471,6 +514,12 @@ These metrics are used to monitor the health of the Consul servers. queries counter + + `consul.rpc.cross-dc` + This increments when a server receives a (potentially blocking) cross datacenter RPC query. + queries + counter + `consul.rpc.consistentRead` This measures the time spent confirming that a consistent read can be performed. diff --git a/website/source/docs/commands/index.html.md b/website/source/docs/commands/index.html.md index 64e081554..68c55a5b1 100644 --- a/website/source/docs/commands/index.html.md +++ b/website/source/docs/commands/index.html.md @@ -23,7 +23,7 @@ no arguments: ```text $ consul -usage: consul [--version] [--help] [] +Usage: consul [--version] [--help] [] Available commands are: agent Runs a Consul agent @@ -37,6 +37,7 @@ Available commands are: keyring Manages gossip layer encryption keys kv Interact with the key-value store leave Gracefully leaves the Consul cluster and shuts down + license Get/Put the Consul Enterprise license (Enterprise-only) lock Execute a command holding a lock maint Controls node or service maintenance mode members Lists the members of a Consul cluster diff --git a/website/source/docs/commands/license.html.markdown.erb b/website/source/docs/commands/license.html.markdown.erb new file mode 100644 index 000000000..b65d171d1 --- /dev/null +++ b/website/source/docs/commands/license.html.markdown.erb @@ -0,0 +1,109 @@ +--- +layout: "docs" +page_title: "Commands: License" +sidebar_current: "docs-commands-license" +description: > + The license command provides datacenter-level management of the Consul Enterprise license. +--- + +# Consul License + +Command: `consul license` + +<%= enterprise_alert :consul %> + +The `license` command provides datacenter-level management of the Consul Enterprise license. This was added in Consul 1.1.0. + +If ACLs are enabled then a token with operator privileges may be required in +order to use this command. Requests are forwarded internally to the leader +if required, so this can be run from any Consul node in a cluster. See the +[ACL Guide](/docs/guides/acl.html#operator) for more information. + + +```text +Usage: consul license [options] [args] + + This command has subcommands for managing the Consul Enterprise license + Here are some simple examples, and more detailed examples are + available in the subcommands or the documentation. + + Install a new license from a file: + + $ consul license put @consul.license + + Install a new license from stdin: + + $ consul license put - + + Install a new license from a string: + + $ consul license put "" + + Retrieve the current license: + + $ consul license get + + For more examples, ask for subcommand help or view the documentation. + +Subcommands: + get Get the current license + put Puts a new license in the datacenter +``` + +## put + +This command sets the Consul Enterprise license. + +Usage: `consul license put [options] LICENSE` + +#### API Options + +<%= partial "docs/commands/http_api_options_client" %> +<%= partial "docs/commands/http_api_options_server" %> + +The output looks like this: + +``` +License is valid +License ID: 2afbf681-0d1a-0649-cb6c-333ec9f0989c +Customer ID: 0259271d-8ffc-e85e-0830-c0822c1f5f2b +Expires At: 2019-05-22 03:59:59.999 +0000 UTC +Datacenter: * +Package: premium +Licensed Features: + Automated Backups + Automated Upgrades + Enhanced Read Scalability + Network Segments + Redundancy Zone + Advanced Network Federation +``` + +## get + +This command gets the Consul Enterprise license. + +Usage: `consul license get [options]` + +#### API Options + +<%= partial "docs/commands/http_api_options_client" %> +<%= partial "docs/commands/http_api_options_server" %> + +The output looks like this: + +``` +License is valid +License ID: 2afbf681-0d1a-0649-cb6c-333ec9f0989c +Customer ID: 0259271d-8ffc-e85e-0830-c0822c1f5f2b +Expires At: 2019-05-22 03:59:59.999 +0000 UTC +Datacenter: * +Package: premium +Licensed Features: + Automated Backups + Automated Upgrades + Enhanced Read Scalability + Network Segments + Redundancy Zone + Advanced Network Federation +``` \ No newline at end of file diff --git a/website/source/docs/enterprise/index.html.md b/website/source/docs/enterprise/index.html.md index f61453a51..9b8227fac 100644 --- a/website/source/docs/enterprise/index.html.md +++ b/website/source/docs/enterprise/index.html.md @@ -23,3 +23,14 @@ increases both scalability and resilience. Features include: These features are part of [Consul Enterprise](https://www.hashicorp.com/consul.html). + +## Licensing + +Licensing capabilities were added to Consul Enterprise v1.1.0. The license is set +once for a datacenter and will automatically propagate to all nodes within the +datacenter over a period of time scaled between 1 and 20 minutes depending on the +number of nodes in the datacenter. The license can be set via the +[API](/api/operator/license.html) or the [CLI](/docs/commands/license.html). When +Consul is first started, a 30 minute temporary license is available to allow for +time to license the datacenter. The license should be set within ten minutes of +starting the first Consul process to allow time for the license to propagate. diff --git a/website/source/docs/faq.html.md b/website/source/docs/faq.html.md index c8ff22641..b45ffcf2a 100644 --- a/website/source/docs/faq.html.md +++ b/website/source/docs/faq.html.md @@ -111,7 +111,7 @@ of any excessive resource utilization before arbitrarily increasing the limits. ## Q: What is the per-key value size limitation for Consul's key/value store? -The limit on a key's value size is 512KB. This is is strictly enforced and an +The limit on a key's value size is 512KB. This is strictly enforced and an HTTP 413 status will be returned to any client that attempts to store more than that limit in a value. It should be noted that the Consul key/value store is not designed to be used as a general purpose database. See diff --git a/website/source/docs/guides/deployment.html.md b/website/source/docs/guides/deployment.html.md new file mode 100644 index 000000000..28c473ed7 --- /dev/null +++ b/website/source/docs/guides/deployment.html.md @@ -0,0 +1,184 @@ +--- +layout: "docs" +page_title: "Production Deployment" +sidebar_current: "docs-guides-deployment" +description: |- + Best practice approaches for Consul production deployments. +--- + +# Consul Production Deployment Guide + +As applications are migrated to dynamically provisioned infrastructure, scaling services and managing the communications between them becomes challenging. Consul’s service discovery capabilities provide the connectivity between dynamic applications. Consul also monitors the health of each node and its applications to ensure that only healthy service instances are discovered. Consul’s distributed runtime configuration store allows updates across global infrastructure. + +The goal of this document is to recommend best practice approaches for Consul production deployments. The guide provides recommendations on system requirements, datacenter design, networking, and performance optimizations for Consul cluster based on the latest Consul (1.0.7) release. + +This document assumes a basic working knowledge of Consul. + +## 1.0 System Requirements + +Consul server agents are responsible for maintaining the cluster state, responding to RPC queries (read operations), and for processing all write operations. Given that Consul server agents do most of the heavy lifting, server sizing is critical for the overall performance efficiency and health of the Consul cluster. + +The following instance configurations are recommended. + +|Size|CPU|Memory|Disk|Typical Cloud Instance Types| +|----|---|------|----|----------------------------| +|Small|2 core|8-16 GB RAM|50 GB|**AWS**: m5.large, m5.xlarge| +|||||**Azure**: Standard\_A4\_v2, Standard\_A8\_v2| +|||||**GCE**: n1-standard-8, n1-standard-16| +|Large|4-8 core|32-64+ GB RAM|100 GB|**AWS**: m5.2xlarge, m5.4xlarge| +|||||**Azure**: Standard\_D4\_v3, Standard\_D5\_v3| +|||||**GCE**: n1-standard-32, n1-standard-64| + +The **small size** instance configuration is appropriate for most initial production deployments, or for development/testing environments. The large size is for production environments where there is a consistently high workload. + +~> **NOTE** For high workloads, ensure that the disks support high IOPS to keep up with the high Raft log update rate. + +## 1.1 Datacenter Design + +A Consul cluster (typically 3 or 5 servers plus client agents) may be deployed in a single physical datacenter or it may span multiple datacenters. For a large cluster with high runtime reads and writes, deploying servers in the same physical location improves performance. In cloud environments, a single datacenter may be deployed across multiple availability zones i.e. each server in a separate availability zone within a single EC2 instance. Consul also supports multi-datacenter deployments via two separate clusters joined by WAN links. In some cases, one may also deploy two or more Consul clusters in the same LAN environment. + +### 1.1.1 Single Datacenter + +A single Consul cluster is recommended for applications deployed in the same datacenter. Consul supports traditional three-tier applications as well as microservices. + +Typically, there must be three or five servers to balance between availability and performance. These servers together run the Raft-driven consistent state store for catalog, session, prepared query, ACL, and KV updates. + +The recommended maximum cluster size for a single datacenter is `5,000` nodes. For a write-heavy and/or a read-heavy cluster, the maximum number of nodes may need to be reduced further, considering the impact of the number and the size of KV pairs and the number of watches. The time taken for gossip to converge increases as more client machines are added. Similarly, the time taken by the new server to join an existing multi-thousand node cluster with a large KV store and update rate may increase as they are replicated to the new server’s log. + +-> **TIP** For write-heavy clusters, consider scaling vertically with larger machine instances and lower latency storage. + +One must take care to use service tags in a way that assists with the kinds of queries that will be run against the cluster. If two services (e.g. blue and green) are running on the same cluster, appropriate service tags must be used to identify between them. If a query is made without tags, nodes running both blue and green services may show up in the results of the query. + +In cases where a full mesh among all agents cannot be established due to network segmentation, Consul’s own [network segments](/docs/enterprise/network-segments/index.html) can be used. Network segments is an Enterprise feature that allows the creation of multiple tenants which share Raft servers in the same cluster. Each tenant has its own gossip pool and doesn’t communicate with the agents outside this pool. The KV store, however, is shared between all tenants. If Consul network segments cannot be used, isolation between agents can be accomplished by creating discrete [Consul datacenters](/docs/guides/datacenters.html). + +### 1.1.2 Multiple Datacenters + +Consul clusters in different datacenters running the same service can be joined by WAN links. The clusters operate independently and only communicate over the WAN on port `8302`. Unless explicitly configured via CLI or API, the Consul server will only return results from the local datacenter. Consul does not replicate data between multiple datacenters. The [consul-replicate](https://github.com/hashicorp/consul-replicate) tool can be used to replicate the KV data periodically. + +-> **TIP** A good practice is to enable TLS server name checking to avoid accidental cross-joining of agents. + +Advanced federation can be achieved with [Network Areas](/api/operator/area.html) (Enterprise). + +A typical use case is where datacenter1 (dc1) hosts share services like LDAP (or ACL datacenter) which are leveraged by all other datacenters. However, due to compliance issues, servers in dc2 must not connect with servers in dc3. This cannot be accomplished with the basic WAN federation. Basic federation requires that all the servers in dc1, dc2 and dc3 are connected in a full mesh and opens both gossip (`8302 tcp/udp`) and RPC (`8300`) ports for communication. + +Network areas allows peering between datacenters to make the services discoverable over WAN. With network areas, servers in dc1 can communicate with those in dc2 and dc3. However, no connectivity needs to be established between dc2 and dc3 which meets the compliance requirement of the organization in this use case. Servers that are part of the network area communicate over RPC only. This removes the overhead of sharing and maintaining the symmetric key used by the gossip protocol across datacenters. It also reduces the attack surface at the gossip ports since they no longer need to be opened in security gateways or firewalls. + +Consul’s [prepared queries](/api/query.html) allow clients to do a datacenter failover for service discovery. For example, if a service `payment` in the local datacenter dc1 goes down, a prepared query lets users define a geographic fallback order to the nearest datacenter to check for healthy instances of the same service. + +~> **NOTE** Consul clusters must be WAN linked for a prepared query to take effect. + +Prepared queries, by default, resolve the query in the local datacenter first. Querying KV store features is not supported by the prepared query. Prepared queries work with ACL. Prepared query config/templates are maintained consistently in Raft and are executed on the servers. + +## 1.2 Network Connectivity + +LAN gossip occurs between all agents in a single datacenter with each agent sending a periodic probe to random agents from its member list. The initial probe is sent over UDP every second. If a node fails to acknowledge within `200ms`, the agent pings over TCP. If the TCP probe fails (10 second timeout), it asks configurable number of random nodes to probe the same node (also known as an indirect probe). If there is no response from the peers regarding the status of the node, that agent is marked as down. + +The agent's status directly affects the service discovery results. If an agent is down, the services it is monitoring will also be marked as down. + +In addition, the agent also periodically performs a full state sync over TCP which gossips each agent’s understanding of the member list around it (node names, IP addresses, and health status). These operations are expensive relative to the standard gossip protocol mentioned above and are synced every 30 seconds. For more details, refer to [Serf Gossip docs](https://www.serf.io/docs/internals/gossip.html) + +Datacenter designs may opt for a layer 2 or a layer 3 network. Consul’s gossip protocol uses UDP probes initially to detect the health of its peers. In layer 2 networks, the ARP request will be forwarded to all the devices. If you are running a fairly large cluster (i.e. multi-thousand node Consul cluster), this may create some congestion as the gossip probe request for the nodes is sent approximately once per second. This can be improved by increasing the host ARP table size and ARP cache expiration timer. + +Layer 3 restricts the ARP requests to a smaller segment of the network. Traffic between the segments typically traverses through a firewall and/or a router. ACL or firewall rules must be updated to allow the following ports: + +|Name|Port|Flag|Description| +|----|----|----|-----------| +|Server RPC|8300||Used by servers to handle incoming requests from other agents. TCP only.| +|Serf LAN|8301||Used to handle gossip in the LAN. Required by all agents. TCP and UDP.| +|Serf WAN|8302|`-1` to disable (available in Consul 1.0.7)|Used by servers to gossip over the LAN and WAN to other servers. TCP and UDP.| +|HTTP API|8500|`-1` to disable|Used by clients to talk to the HTTP API. TCP only.| +|DNS Interface|8600|`-1` to disable|| + +-> **TIP** As mentioned in the [datacenter design section](#1-1-1-single-datacenter), network areas and network segments can be used to prevent opening up firewall ports between different subnets. + +### 1.2.1 RAFT Tuning + +Leader elections can be affected by network communication issues between servers. If the cluster spans multiple zones, the network latency between them must be taken into consideration and the `raft_multiplier` must be adjusted accordingly. + +By default, the recommended value for production environments is `1`. This value must take into account the network latency between the servers and the read/write load on the servers. + +The value of `raft_multiplier` is a scaling factor and directly affects the following parameters: + +|Param|Value|| +|-----|----:|-:| +|HeartbeatTimeout|1000ms|default| +|ElectionTimeout|1000ms|default| +|LeaderLeaseTimeout|500ms|default| + +So a scaling factor of `5` (i.e. `raft_multiplier: 5`) updates the following values: + +|Param|Value|Calculation| +|-----|----:|-:| +|HeartbeatTimeout|5000ms|5 x 1000ms| +|ElectionTimeout|5000ms|5 x 1000ms| +|LeaderLeaseTimeout|2500ms|5 x 500ms| + +~> **NOTE** Wide networks with more latency will perform better with larger values of `raft_multiplier`. + +The trade off is between leader stability and time to recover from an actual leader failure. A short multiplier minimizes failure detection and election time but may be triggered frequently in high latency situations. This can cause constant leadership churn and associated unavailability. A high multiplier reduces the chances that spurious failures will cause leadership churn but it does this at the expense of taking longer to detect real failures and thus takes longer to restore cluster availability. + +Leadership instability can also be caused by under-provisioned CPU resources and is more likely in environments where CPU cycles are shared with other workloads. In order for a server to remain the leader, it must send frequent heartbeat messages to all other servers every few hundred milliseconds. If some number of these are missing or late due to the leader not having sufficient CPU to send them on time, the other servers will detect it as failed and hold a new election. + +## 1.3 Performance Tuning + +Consul is write limited by disk I/O and read limited by CPU. Memory requirements will be dependent on the total size of KV pairs stored and should be sized according to that data (as should the hard drive storage). The limit on a key’s value size is `512KB`. + +-> Consul is write limited by disk I/O and read limited by CPU. + +For **write-heavy** workloads, the total RAM available for overhead must approximately be equal to + + RAM NEEDED = number of keys * average key size * 2-3x + +Since writes must be synced to disk (persistent storage) on a quorum of servers before they are committed, deploying a disk with high write throughput (or an SSD) will enhance performance on the write side. ([Documentation](/docs/agent/options.html#\_data\_dir)) + +For a **read-heavy** workload, configure all Consul server agents with the `allow_stale` DNS option, or query the API with the `stale` [consistency mode](/api/index.html#consistency-modes). By default, all queries made to the server are RPC forwarded to and serviced by the leader. By enabling stale reads, any server will respond to any query, thereby reducing overhead on the leader. Typically, the stale response is `100ms` or less from consistent mode but it drastically improves performance and reduces latency under high load. + +If the leader server is out of memory or the disk is full, the server eventually stops responding, loses its election and cannot move past its last commit time. However, by configuring `max_stale` and setting it to a large value, Consul will continue to respond to queries during such outage scenarios. ([max_stale documentation](/docs/agent/options.html#max_stale)). + +It should be noted that `stale` is not appropriate for coordination where strong consistency is important (i.e. locking or application leader election). For critical cases, the optional `consistent` API query mode is required for true linearizability; the trade off is that this turns a read into a full quorum write so requires more resources and takes longer. + +**Read-heavy** clusters may take advantage of the [enhanced reading](/docs/enterprise/read-scale/index.html) feature (Enterprise) for better scalability. This feature allows additional servers to be introduced as non-voters. Being a non-voter, the server will still participate in data replication, but it will not block the leader from committing log entries. + +Consul’s agents use network sockets for communicating with the other nodes (gossip) and with the server agent. In addition, file descriptors are also opened for watch handlers, health checks, and log files. For a **write heavy** cluster, the `ulimit` size must be increased from the default value (`1024`) to prevent the leader from running out of file descriptors. + +To prevent any CPU spikes from a misconfigured client, RPC requests to the server should be [rate limited](/docs/agent/options.html#limits) + +~> **NOTE** Rate limiting is configured on the client agent only. + +In addition, two [performance indicators](/docs/agent/telemetry.html) — `consul.runtime.alloc_bytes` and `consul.runtime.heap_objects` — can help diagnose if the current sizing is not adequately meeting the load. + +## 1.4 Backups + +Creating server backups is an important step in production deployments. Backups provide a mechanism for the server to recover from an outage (network loss, operator error, or a corrupted data directory). All agents write to the `-data-dir` before commit. This directory persists the local agent’s state and — in the case of servers — it also holds the Raft information. + +Consul provides the [snapshot](/docs/commands/snapshot.html) command which can be run using the CLI command or the API. The `snapshot` command saves the point-in-time snapshot of the state of the Consul servers which includes KV entries, the service catalog, prepared queries, sessions, and ACL. + +With [Consul Enterprise](/docs/commands/snapshot/agent.html), the `snapshot agent` command runs periodically and writes to local or remote storage (such as Amazon S3). + +By default, all snapshots are taken using `consistent` mode where requests are forwarded to the leader which verifies that it is still in power before taking the snapshot. Snapshots will not be saved if the clusted is degraded or if no leader is available. To reduce the burden on the leader, it is possible to [run the snapshot](/docs/commands/snapshot/save.html) on any non-leader server using `stale` consistency mode: + + $ consul snapshot save -stale backup.snap + +This spreads the load across nodes at the possible expense of losing full consistency guarantees. Typically this means that a very small number of recent writes may not be included. The omitted writes are typically limited to data written in the last `100ms` or less from the recovery point. This is usually suitable for disaster recovery. However, the system can’t guarantee how stale this may be if executed against a partitioned server. + +## 1.5 Node Removal + +Failed nodes will be automatically removed after 72 hours. This can happen if a node does not shutdown cleanly or if the process supervisor does not give the agent long enough to gracefully leave the cluster. Until then, Consul periodically tries to reconnect to the failed node. After 72 hours, Consul will reap failed nodes and stop trying to reconnect. + +This sequence can be accelerated with the [`force-leave`](https://www.consul.io/docs/commands/force-leave.html) command. Nodes running as servers will be removed from the Raft quorum. Force-leave may also be used to remove nodes that have accidentally joined the datacenter. Force-leave can only be applied to the nodes in its respective datacenter and cannot be executed on the nodes outside the datacenter. + +Alternately, nodes can also be removed using `remove-peer` if `force-leave` is not effective in removing the nodes. + + $ consul operator raft remove-peer -address=x.x.x.x:8300 + +~> **NOTE** `remove-peer` only works on clusters that still have a leader. + +If the leader is affected by an outage, then [manual recovery](/docs/guides/outage.html#manual-recovery-using-peers-json) needs to be done. + +To remove all agents that accidentally joined the wrong set of servers, clear out the contents of the data directory (`-data-dir`) on both client and server nodes. + +!> **WARNING** Removing data on server nodes will destroy all state in the cluster and can’t be undone. + +The [Autopilot](/docs/guides/autopilot.html) (Enterprise) feature automatically cleans up dead servers instead of waiting 72 hours. Dead servers will periodically be cleaned up and removed from the Raft peer set, to prevent them from interfering with the quorum size and leader elections. + +Removing any server must be done carefully. For a cluster of `N` servers to function properly, `(N/2) + 1` must be available. Before removing an old server from the cluster, the new server must be added in order to make the cluster failure tolerant. The old server can then be removed. diff --git a/website/source/docs/guides/forwarding.html.md b/website/source/docs/guides/forwarding.html.md index 99e50981d..87824a22f 100644 --- a/website/source/docs/guides/forwarding.html.md +++ b/website/source/docs/guides/forwarding.html.md @@ -16,7 +16,8 @@ running on an unprivileged port, from another DNS server or port redirect. In this guide, we will demonstrate forwarding from [BIND](https://www.isc.org/downloads/bind/) as well as [dnsmasq](http://www.thekelleys.org.uk/dnsmasq/doc.html), -[Unbound](https://www.unbound.net/), and [iptables](http://www.netfilter.org/). +[Unbound](https://www.unbound.net/), +[systemd-resolved](https://www.freedesktop.org/wiki/Software/systemd/resolved/), and [iptables](http://www.netfilter.org/). For the sake of simplicity, BIND and Consul are running on the same machine in this example. For iptables the rules must be set on the same host as the Consul instance and relay hosts should not be on the same host or the redirects will @@ -155,6 +156,32 @@ You may have to add the following line to the bottom of your include: "/etc/unbound/unbound.conf.d/*.conf" ``` +### systemd-resolved Setup + +`systemd-resolved` is typically configured with `/etc/systemd/resolved.conf`. +To configure systemd-resolved to send queries for the consul domain to +Consul, configure resolved.conf to contain the following: + +``` +DNS=127.0.0.1 +Domains=~consul +``` + +The main limitation with this configuration is that the DNS field +cannot contain ports. So for this to work either Consul must be +[configured to listen on port 53](https://www.consul.io/docs/agent/options.html#dns_port) +instead of 8600 or you can use iptables to map port 53 to 8600. +The following iptables commands are sufficient to do the port +mapping. + +``` +[root@localhost ~]# iptables -t nat -A OUTPUT -d localhost -p udp -m udp --dport 53 -j REDIRECT --to-ports 8600 +[root@localhost ~]# iptables -t nat -A OUTPUT -d localhost -p tcp -m tcp --dport 53 -j REDIRECT --to-ports 8600 +``` + +Note: With this setup, PTR record queries will still be sent out +to the other configured resolvers in addition to Consul. + ### iptables Setup On Linux systems that support it, incoming requests and requests to diff --git a/website/source/docs/install/index.html.md b/website/source/docs/install/index.html.md index 07dda7b5d..130e2d135 100644 --- a/website/source/docs/install/index.html.md +++ b/website/source/docs/install/index.html.md @@ -50,7 +50,7 @@ a copy of [`git`](https://www.git-scm.com/) in your `PATH`. needed to compile Consul: ```shell - $ make bootstrap + $ make tools ``` 1. Build Consul for your current system and put the binary in `./bin/` diff --git a/website/source/docs/upgrade-specific.html.md b/website/source/docs/upgrade-specific.html.md index 06f2126ab..508c5c563 100644 --- a/website/source/docs/upgrade-specific.html.md +++ b/website/source/docs/upgrade-specific.html.md @@ -14,6 +14,29 @@ details provided for their upgrades as a result of new features or changed behavior. This page is used to document those details separately from the standard upgrade flow. +## Consul 1.1.0 + +#### Removal of Deprecated Features + +The following previously deprecated fields and config options have been removed: + + - `CheckID` has been removed from config file check definitions (use `id` instead). + - `script` has been removed from config file check definitions (use `args` instead). + - `enableTagOverride` is no longer valid in service definitions (use `enable_tag_override` instead). + - The [deprecated set of metric names](/docs/upgrade-specific.html#metric-names-updated) (beginning with `consul.consul.`) has been removed + along with the `enable_deprecated_names` option from the metrics configuration. + +#### New defaults for Raft Snapshot Creation +Consul 1.0.1 (and earlier versions of Consul) checked for raft snapshots every +5 seconds, and created new snapshots for every 8192 writes. These defaults cause +constant disk IO in large busy clusters. Consul 1.1.0 increases these to larger values, +and makes them tunable via the [raft_snapshot_interval](/docs/agent/options.html#_raft_snapshot_interval) and +[raft_snapshot_threshold](/docs/agent/options.html#_raft_snapshot_threshold) parameters. We recommend +keeping the new defaults. However, operators can go back to the old defaults by changing their +config if they prefer more frequent snapshots. See the documentation for [raft_snapshot_interval](/docs/agent/options.html#_raft_snapshot_interval) +and [raft_snapshot_threshold](/docs/agent/options.html#_raft_snapshot_threshold) to understand the trade-offs +when tuning these. + ## Consul 1.0.1 #### Carefully Check and Remove Stale Servers During Rolling Upgrades diff --git a/website/source/downloads_tools.html.erb b/website/source/downloads_tools.html.erb index 4d8e60684..1d7c1a51d 100644 --- a/website/source/downloads_tools.html.erb +++ b/website/source/downloads_tools.html.erb @@ -58,6 +58,12 @@ description: |-
  • consul-do - Do something, such as run HA cronjobs, based on Consul leadership status
  • +
  • + consul-kv-json - Golang helper utility for translating JSON trees into Consul KV pairs, and vice versa +
  • +
  • + consul-templaterb - Ruby gem and executable hi-performance ERB templating to create configuration files, HTML, JSON, XML content from Consul discovery and KV Data. Executable `consul-templaterb` also support reload commands as well as process management. +
  • Consultant - Library for Java services to self register and deregister, fetching configuration, and subscribing to configuration changes.
  • @@ -79,6 +85,9 @@ description: |-
  • git2consul - Mirror the contents of a Git repository into Consul KVs
  • +
  • + Gonsul - A Git to Consul standalone tool made in Go. Updates Consul KV from a repo with multiple strategies. +
  • gradle-consul-plugin - A Consul Gradle plugin
  • diff --git a/website/source/intro/getting-started/ui.html.md b/website/source/intro/getting-started/ui.html.md index cceb7255f..e478bc2bf 100644 --- a/website/source/intro/getting-started/ui.html.md +++ b/website/source/intro/getting-started/ui.html.md @@ -13,10 +13,6 @@ box. UIs can be used for viewing all services and nodes, for viewing all health checks and their current status, and for reading and setting key/value data. The UIs automatically support multi-datacenter. -
    -![Consul Web UI](consul_web_ui.png) -
    - To set up the self-hosted UI, start the Consul agent with the [`-ui` parameter](/docs/agent/options.html#_ui): @@ -31,6 +27,14 @@ By default this is `http://localhost:8500/ui`. You can view a live demo of the Consul Web UI [here](http://demo.consul.io). +## How to Use the New UI + +On May 11, 2018, our redesign of the web UI went into beta. You can use it with +Consul 1.1.0 by setting the environment variable `CONSUL_UI_BETA` to `true`. +Without this environment variable, the web UI will default to the old version. To +use the old UI version, either set `CONSUL_UI_BETA` to false, or don't include +that environment variable at all. + ## Next Steps This concludes our Getting Started guide. See the diff --git a/website/source/layouts/api.erb b/website/source/layouts/api.erb index 98604b12b..72dac9af5 100644 --- a/website/source/layouts/api.erb +++ b/website/source/layouts/api.erb @@ -51,6 +51,9 @@ > Keyring + > + License + > Raft diff --git a/website/source/layouts/docs.erb b/website/source/layouts/docs.erb index 39aaf8ac5..d503bdb5d 100644 --- a/website/source/layouts/docs.erb +++ b/website/source/layouts/docs.erb @@ -115,6 +115,9 @@ > leave + > + license + > lock @@ -192,6 +195,9 @@ > Configuration + > + Cloud Auto-join + > Service Definitions diff --git a/website/source/layouts/layout.erb b/website/source/layouts/layout.erb index 1430680e9..7463d6a9e 100644 --- a/website/source/layouts/layout.erb +++ b/website/source/layouts/layout.erb @@ -26,23 +26,18 @@ <%= title_for(current_page) %> + + <%= stylesheet_link_tag "application" %> - - <%= javascript_include_tag "application" %> + + + <%= javascript_include_tag "application", defer: true %> - - - - - - + + <%= yield_content :head %> @@ -109,6 +104,7 @@
  • Docs
  • API
  • Community
  • +
  • Privacy
  • Security
  • Demo
  • Press Kit
  • @@ -121,17 +117,6 @@ - -